pax_global_header00006660000000000000000000000064136476066160014531gustar00rootroot0000000000000052 comment=65e4285c566323a894d155441e5279ec4a9884f4 lz4-2.5.2/000077500000000000000000000000001364760661600122505ustar00rootroot00000000000000lz4-2.5.2/.gitignore000066400000000000000000000010051364760661600142340ustar00rootroot00000000000000# Created by https://www.gitignore.io/api/macos ### macOS ### *.DS_Store .AppleDouble .LSOverride # Icon must end with two \r Icon # Thumbnails ._* # Files that might appear in the root of a volume .DocumentRevisions-V100 .fseventsd .Spotlight-V100 .TemporaryItems .Trashes .VolumeIcon.icns .com.apple.timemachine.donotpresent # Directories potentially created on remote AFP share .AppleDB .AppleDesktop Network Trash Folder Temporary Items .apdisk # End of https://www.gitignore.io/api/macos cmd/*/*exe .idealz4-2.5.2/.travis.yml000066400000000000000000000004561364760661600143660ustar00rootroot00000000000000language: go env: - GO111MODULE=off go: - 1.9.x - 1.10.x - 1.11.x - 1.12.x - master matrix: fast_finish: true allow_failures: - go: master sudo: false script: - go test -v -cpu=2 - go test -v -cpu=2 -race - go test -v -cpu=2 -tags noasm - go test -v -cpu=2 -race -tags noasm lz4-2.5.2/LICENSE000066400000000000000000000027051364760661600132610ustar00rootroot00000000000000Copyright (c) 2015, Pierre Curto All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of xxHash nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. lz4-2.5.2/README.md000066400000000000000000000046411364760661600135340ustar00rootroot00000000000000# lz4 : LZ4 compression in pure Go [![GoDoc](https://godoc.org/github.com/pierrec/lz4?status.svg)](https://godoc.org/github.com/pierrec/lz4) [![Build Status](https://travis-ci.org/pierrec/lz4.svg?branch=master)](https://travis-ci.org/pierrec/lz4) [![Go Report Card](https://goreportcard.com/badge/github.com/pierrec/lz4)](https://goreportcard.com/report/github.com/pierrec/lz4) [![GitHub tag (latest SemVer)](https://img.shields.io/github/tag/pierrec/lz4.svg?style=social)](https://github.com/pierrec/lz4/tags) ## Overview This package provides a streaming interface to [LZ4 data streams](http://fastcompression.blogspot.fr/2013/04/lz4-streaming-format-final.html) as well as low level compress and uncompress functions for LZ4 data blocks. The implementation is based on the reference C [one](https://github.com/lz4/lz4). ## Install Assuming you have the go toolchain installed: ``` go get github.com/pierrec/lz4 ``` There is a command line interface tool to compress and decompress LZ4 files. ``` go install github.com/pierrec/lz4/cmd/lz4c ``` Usage ``` Usage of lz4c: -version print the program version Subcommands: Compress the given files or from stdin to stdout. compress [arguments] [ ...] -bc enable block checksum -l int compression level (0=fastest) -sc disable stream checksum -size string block max size [64K,256K,1M,4M] (default "4M") Uncompress the given files or from stdin to stdout. uncompress [arguments] [ ...] ``` ## Example ``` // Compress and uncompress an input string. s := "hello world" r := strings.NewReader(s) // The pipe will uncompress the data from the writer. pr, pw := io.Pipe() zw := lz4.NewWriter(pw) zr := lz4.NewReader(pr) go func() { // Compress the input string. _, _ = io.Copy(zw, r) _ = zw.Close() // Make sure the writer is closed _ = pw.Close() // Terminate the pipe }() _, _ = io.Copy(os.Stdout, zr) // Output: // hello world ``` ## Contributing Contributions are very welcome for bug fixing, performance improvements...! - Open an issue with a proper description - Send a pull request with appropriate test case(s) ## Contributors Thanks to all [contributors](https://github.com/pierrec/lz4/graphs/contributors) so far! Special thanks to [@Zariel](https://github.com/Zariel) for his asm implementation of the decoder. Special thanks to [@klauspost](https://github.com/klauspost) for his work on optimizing the code. lz4-2.5.2/bench_test.go000066400000000000000000000101001364760661600147050ustar00rootroot00000000000000package lz4_test import ( "bytes" "io" "io/ioutil" "testing" "github.com/pierrec/lz4" ) func BenchmarkCompress(b *testing.B) { buf := make([]byte, len(pg1661)) b.ReportAllocs() b.ResetTimer() for i := 0; i < b.N; i++ { _, _ = lz4.CompressBlock(pg1661, buf, nil) } } func BenchmarkCompressRandom(b *testing.B) { buf := make([]byte, len(randomLZ4)) b.ReportAllocs() b.SetBytes(int64(len(random))) b.ResetTimer() for i := 0; i < b.N; i++ { _, _ = lz4.CompressBlock(random, buf, nil) } } func BenchmarkCompressHC(b *testing.B) { buf := make([]byte, len(pg1661)) b.ReportAllocs() b.ResetTimer() for i := 0; i < b.N; i++ { _, _ = lz4.CompressBlockHC(pg1661, buf, 16) } } func BenchmarkUncompress(b *testing.B) { buf := make([]byte, len(pg1661)) b.ReportAllocs() b.ResetTimer() for i := 0; i < b.N; i++ { _, _ = lz4.UncompressBlock(pg1661LZ4, buf) } } func mustLoadFile(f string) []byte { b, err := ioutil.ReadFile(f) if err != nil { panic(err) } return b } var ( pg1661 = mustLoadFile("testdata/pg1661.txt") digits = mustLoadFile("testdata/e.txt") twain = mustLoadFile("testdata/Mark.Twain-Tom.Sawyer.txt") random = mustLoadFile("testdata/random.data") pg1661LZ4 = mustLoadFile("testdata/pg1661.txt.lz4") digitsLZ4 = mustLoadFile("testdata/e.txt.lz4") twainLZ4 = mustLoadFile("testdata/Mark.Twain-Tom.Sawyer.txt.lz4") randomLZ4 = mustLoadFile("testdata/random.data.lz4") ) func benchmarkUncompress(b *testing.B, compressed []byte) { r := bytes.NewReader(compressed) zr := lz4.NewReader(r) // Determine the uncompressed size of testfile. uncompressedSize, err := io.Copy(ioutil.Discard, zr) if err != nil { b.Fatal(err) } b.SetBytes(uncompressedSize) b.ReportAllocs() b.ResetTimer() for i := 0; i < b.N; i++ { r.Reset(compressed) zr.Reset(r) _, _ = io.Copy(ioutil.Discard, zr) } } func BenchmarkUncompressPg1661(b *testing.B) { benchmarkUncompress(b, pg1661LZ4) } func BenchmarkUncompressDigits(b *testing.B) { benchmarkUncompress(b, digitsLZ4) } func BenchmarkUncompressTwain(b *testing.B) { benchmarkUncompress(b, twainLZ4) } func BenchmarkUncompressRand(b *testing.B) { benchmarkUncompress(b, randomLZ4) } func benchmarkSkipBytes(b *testing.B, compressed []byte) { r := bytes.NewReader(compressed) zr := lz4.NewReader(r) // Determine the uncompressed size of testfile. uncompressedSize, err := io.Copy(ioutil.Discard, zr) if err != nil { b.Fatal(err) } b.SetBytes(uncompressedSize) b.ReportAllocs() b.ResetTimer() for i := 0; i < b.N; i++ { r.Reset(compressed) zr.Reset(r) zr.Seek(uncompressedSize, io.SeekCurrent) _, _ = io.Copy(ioutil.Discard, zr) } } func BenchmarkSkipBytesPg1661(b *testing.B) { benchmarkSkipBytes(b, pg1661LZ4) } func BenchmarkSkipBytesDigits(b *testing.B) { benchmarkSkipBytes(b, digitsLZ4) } func BenchmarkSkipBytesTwain(b *testing.B) { benchmarkSkipBytes(b, twainLZ4) } func BenchmarkSkipBytesRand(b *testing.B) { benchmarkSkipBytes(b, randomLZ4) } func benchmarkCompress(b *testing.B, uncompressed []byte) { w := bytes.NewBuffer(nil) zw := lz4.NewWriter(w) r := bytes.NewReader(uncompressed) // Determine the compressed size of testfile. compressedSize, err := io.Copy(zw, r) if err != nil { b.Fatal(err) } if err := zw.Close(); err != nil { b.Fatal(err) } b.SetBytes(compressedSize) b.ReportAllocs() b.ResetTimer() for i := 0; i < b.N; i++ { r.Reset(uncompressed) zw.Reset(w) _, _ = io.Copy(zw, r) } } func BenchmarkCompressPg1661(b *testing.B) { benchmarkCompress(b, pg1661) } func BenchmarkCompressDigits(b *testing.B) { benchmarkCompress(b, digits) } func BenchmarkCompressTwain(b *testing.B) { benchmarkCompress(b, twain) } func BenchmarkCompressRand(b *testing.B) { benchmarkCompress(b, random) } // Benchmark to check reallocations upon Reset(). // See issue https://github.com/pierrec/lz4/issues/52. func BenchmarkWriterReset(b *testing.B) { b.ReportAllocs() zw := lz4.NewWriter(nil) src := mustLoadFile("testdata/gettysburg.txt") var buf bytes.Buffer for n := 0; n < b.N; n++ { buf.Reset() zw.Reset(&buf) _, _ = zw.Write(src) _ = zw.Close() } } lz4-2.5.2/block.go000066400000000000000000000247141364760661600137010ustar00rootroot00000000000000package lz4 import ( "encoding/binary" "math/bits" "sync" ) // blockHash hashes the lower 6 bytes into a value < htSize. func blockHash(x uint64) uint32 { const prime6bytes = 227718039650203 return uint32(((x << (64 - 48)) * prime6bytes) >> (64 - hashLog)) } // CompressBlockBound returns the maximum size of a given buffer of size n, when not compressible. func CompressBlockBound(n int) int { return n + n/255 + 16 } // UncompressBlock uncompresses the source buffer into the destination one, // and returns the uncompressed size. // // The destination buffer must be sized appropriately. // // An error is returned if the source data is invalid or the destination buffer is too small. func UncompressBlock(src, dst []byte) (int, error) { if len(src) == 0 { return 0, nil } if di := decodeBlock(dst, src); di >= 0 { return di, nil } return 0, ErrInvalidSourceShortBuffer } // CompressBlock compresses the source buffer into the destination one. // This is the fast version of LZ4 compression and also the default one. // // The argument hashTable is scratch space for a hash table used by the // compressor. If provided, it should have length at least 1<<16. If it is // shorter (or nil), CompressBlock allocates its own hash table. // // The size of the compressed data is returned. // // If the destination buffer size is lower than CompressBlockBound and // the compressed size is 0 and no error, then the data is incompressible. // // An error is returned if the destination buffer is too small. func CompressBlock(src, dst []byte, hashTable []int) (_ int, err error) { defer recoverBlock(&err) // Return 0, nil only if the destination buffer size is < CompressBlockBound. isNotCompressible := len(dst) < CompressBlockBound(len(src)) // adaptSkipLog sets how quickly the compressor begins skipping blocks when data is incompressible. // This significantly speeds up incompressible data and usually has very small impact on compression. // bytes to skip = 1 + (bytes since last match >> adaptSkipLog) const adaptSkipLog = 7 if len(hashTable) < htSize { htIface := htPool.Get() defer htPool.Put(htIface) hashTable = (*(htIface).(*[htSize]int))[:] } // Prove to the compiler the table has at least htSize elements. // The compiler can see that "uint32() >> hashShift" cannot be out of bounds. hashTable = hashTable[:htSize] // si: Current position of the search. // anchor: Position of the current literals. var si, di, anchor int sn := len(src) - mfLimit if sn <= 0 { goto lastLiterals } // Fast scan strategy: the hash table only stores the last 4 bytes sequences. for si < sn { // Hash the next 6 bytes (sequence)... match := binary.LittleEndian.Uint64(src[si:]) h := blockHash(match) h2 := blockHash(match >> 8) // We check a match at s, s+1 and s+2 and pick the first one we get. // Checking 3 only requires us to load the source one. ref := hashTable[h] ref2 := hashTable[h2] hashTable[h] = si hashTable[h2] = si + 1 offset := si - ref // If offset <= 0 we got an old entry in the hash table. if offset <= 0 || offset >= winSize || // Out of window. uint32(match) != binary.LittleEndian.Uint32(src[ref:]) { // Hash collision on different matches. // No match. Start calculating another hash. // The processor can usually do this out-of-order. h = blockHash(match >> 16) ref = hashTable[h] // Check the second match at si+1 si += 1 offset = si - ref2 if offset <= 0 || offset >= winSize || uint32(match>>8) != binary.LittleEndian.Uint32(src[ref2:]) { // No match. Check the third match at si+2 si += 1 offset = si - ref hashTable[h] = si if offset <= 0 || offset >= winSize || uint32(match>>16) != binary.LittleEndian.Uint32(src[ref:]) { // Skip one extra byte (at si+3) before we check 3 matches again. si += 2 + (si-anchor)>>adaptSkipLog continue } } } // Match found. lLen := si - anchor // Literal length. // We already matched 4 bytes. mLen := 4 // Extend backwards if we can, reducing literals. tOff := si - offset - 1 for lLen > 0 && tOff >= 0 && src[si-1] == src[tOff] { si-- tOff-- lLen-- mLen++ } // Add the match length, so we continue search at the end. // Use mLen to store the offset base. si, mLen = si+mLen, si+minMatch // Find the longest match by looking by batches of 8 bytes. for si+8 < sn { x := binary.LittleEndian.Uint64(src[si:]) ^ binary.LittleEndian.Uint64(src[si-offset:]) if x == 0 { si += 8 } else { // Stop is first non-zero byte. si += bits.TrailingZeros64(x) >> 3 break } } mLen = si - mLen if mLen < 0xF { dst[di] = byte(mLen) } else { dst[di] = 0xF } // Encode literals length. if lLen < 0xF { dst[di] |= byte(lLen << 4) } else { dst[di] |= 0xF0 di++ l := lLen - 0xF for ; l >= 0xFF; l -= 0xFF { dst[di] = 0xFF di++ } dst[di] = byte(l) } di++ // Literals. copy(dst[di:di+lLen], src[anchor:anchor+lLen]) di += lLen + 2 anchor = si // Encode offset. _ = dst[di] // Bound check elimination. dst[di-2], dst[di-1] = byte(offset), byte(offset>>8) // Encode match length part 2. if mLen >= 0xF { for mLen -= 0xF; mLen >= 0xFF; mLen -= 0xFF { dst[di] = 0xFF di++ } dst[di] = byte(mLen) di++ } // Check if we can load next values. if si >= sn { break } // Hash match end-2 h = blockHash(binary.LittleEndian.Uint64(src[si-2:])) hashTable[h] = si - 2 } lastLiterals: if isNotCompressible && anchor == 0 { // Incompressible. return 0, nil } // Last literals. lLen := len(src) - anchor if lLen < 0xF { dst[di] = byte(lLen << 4) } else { dst[di] = 0xF0 di++ for lLen -= 0xF; lLen >= 0xFF; lLen -= 0xFF { dst[di] = 0xFF di++ } dst[di] = byte(lLen) } di++ // Write the last literals. if isNotCompressible && di >= anchor { // Incompressible. return 0, nil } di += copy(dst[di:di+len(src)-anchor], src[anchor:]) return di, nil } // Pool of hash tables for CompressBlock. var htPool = sync.Pool{ New: func() interface{} { return new([htSize]int) }, } // blockHash hashes 4 bytes into a value < winSize. func blockHashHC(x uint32) uint32 { const hasher uint32 = 2654435761 // Knuth multiplicative hash. return x * hasher >> (32 - winSizeLog) } // CompressBlockHC compresses the source buffer src into the destination dst // with max search depth (use 0 or negative value for no max). // // CompressBlockHC compression ratio is better than CompressBlock but it is also slower. // // The size of the compressed data is returned. // // If the destination buffer size is lower than CompressBlockBound and // the compressed size is 0 and no error, then the data is incompressible. // // An error is returned if the destination buffer is too small. func CompressBlockHC(src, dst []byte, depth int) (_ int, err error) { defer recoverBlock(&err) // Return 0, nil only if the destination buffer size is < CompressBlockBound. isNotCompressible := len(dst) < CompressBlockBound(len(src)) // adaptSkipLog sets how quickly the compressor begins skipping blocks when data is incompressible. // This significantly speeds up incompressible data and usually has very small impact on compression. // bytes to skip = 1 + (bytes since last match >> adaptSkipLog) const adaptSkipLog = 7 var si, di, anchor int // hashTable: stores the last position found for a given hash // chainTable: stores previous positions for a given hash var hashTable, chainTable [winSize]int if depth <= 0 { depth = winSize } sn := len(src) - mfLimit if sn <= 0 { goto lastLiterals } for si < sn { // Hash the next 4 bytes (sequence). match := binary.LittleEndian.Uint32(src[si:]) h := blockHashHC(match) // Follow the chain until out of window and give the longest match. mLen := 0 offset := 0 for next, try := hashTable[h], depth; try > 0 && next > 0 && si-next < winSize; next = chainTable[next&winMask] { // The first (mLen==0) or next byte (mLen>=minMatch) at current match length // must match to improve on the match length. if src[next+mLen] != src[si+mLen] { continue } ml := 0 // Compare the current position with a previous with the same hash. for ml < sn-si { x := binary.LittleEndian.Uint64(src[next+ml:]) ^ binary.LittleEndian.Uint64(src[si+ml:]) if x == 0 { ml += 8 } else { // Stop is first non-zero byte. ml += bits.TrailingZeros64(x) >> 3 break } } if ml < minMatch || ml <= mLen { // Match too small (>adaptSkipLog continue } // Match found. // Update hash/chain tables with overlapping bytes: // si already hashed, add everything from si+1 up to the match length. winStart := si + 1 if ws := si + mLen - winSize; ws > winStart { winStart = ws } for si, ml := winStart, si+mLen; si < ml; { match >>= 8 match |= uint32(src[si+3]) << 24 h := blockHashHC(match) chainTable[si&winMask] = hashTable[h] hashTable[h] = si si++ } lLen := si - anchor si += mLen mLen -= minMatch // Match length does not include minMatch. if mLen < 0xF { dst[di] = byte(mLen) } else { dst[di] = 0xF } // Encode literals length. if lLen < 0xF { dst[di] |= byte(lLen << 4) } else { dst[di] |= 0xF0 di++ l := lLen - 0xF for ; l >= 0xFF; l -= 0xFF { dst[di] = 0xFF di++ } dst[di] = byte(l) } di++ // Literals. copy(dst[di:di+lLen], src[anchor:anchor+lLen]) di += lLen anchor = si // Encode offset. di += 2 dst[di-2], dst[di-1] = byte(offset), byte(offset>>8) // Encode match length part 2. if mLen >= 0xF { for mLen -= 0xF; mLen >= 0xFF; mLen -= 0xFF { dst[di] = 0xFF di++ } dst[di] = byte(mLen) di++ } } if isNotCompressible && anchor == 0 { // Incompressible. return 0, nil } // Last literals. lastLiterals: lLen := len(src) - anchor if lLen < 0xF { dst[di] = byte(lLen << 4) } else { dst[di] = 0xF0 di++ lLen -= 0xF for ; lLen >= 0xFF; lLen -= 0xFF { dst[di] = 0xFF di++ } dst[di] = byte(lLen) } di++ // Write the last literals. if isNotCompressible && di >= anchor { // Incompressible. return 0, nil } di += copy(dst[di:di+len(src)-anchor], src[anchor:]) return di, nil } lz4-2.5.2/block_test.go000066400000000000000000000077041364760661600147400ustar00rootroot00000000000000//+build go1.9 package lz4_test import ( "bytes" "fmt" "io/ioutil" "testing" "github.com/pierrec/lz4" ) const ( // Should match values in lz4.go hashLog = 16 htSize = 1 << hashLog ) type testcase struct { file string compressible bool src []byte } var rawFiles = []testcase{ // {"testdata/207326ba-36f8-11e7-954a-aca46ba8ca73.png", true, nil}, {"testdata/e.txt", false, nil}, {"testdata/gettysburg.txt", true, nil}, {"testdata/Mark.Twain-Tom.Sawyer.txt", true, nil}, {"testdata/pg1661.txt", true, nil}, {"testdata/pi.txt", false, nil}, {"testdata/random.data", false, nil}, {"testdata/repeat.txt", true, nil}, {"testdata/pg1661.txt", true, nil}, } func TestCompressUncompressBlock(t *testing.T) { type compressor func(s, d []byte) (int, error) run := func(t *testing.T, tc testcase, compress compressor) int { t.Helper() src := tc.src // Compress the data. zbuf := make([]byte, lz4.CompressBlockBound(len(src))) n, err := compress(src, zbuf) if err != nil { t.Error(err) return 0 } zbuf = zbuf[:n] // Make sure that it was actually compressed unless not compressible. if !tc.compressible { return 0 } if n == 0 || n >= len(src) { t.Errorf("data not compressed: %d/%d", n, len(src)) return 0 } // Uncompress the data. buf := make([]byte, len(src)) n, err = lz4.UncompressBlock(zbuf, buf) if err != nil { t.Fatal(err) } else if n < 0 || n > len(buf) { t.Fatalf("returned written bytes > len(buf): n=%d available=%d", n, len(buf)) } else if n != len(src) { t.Errorf("expected to decompress into %d bytes got %d", len(src), n) } buf = buf[:n] if !bytes.Equal(src, buf) { var c int for i, b := range buf { if c > 10 { break } if src[i] != b { t.Errorf("%d: exp(%x) != got(%x)", i, src[i], buf[i]) c++ } } t.Fatal("uncompressed compressed data not matching initial input") return 0 } return len(zbuf) } for _, tc := range rawFiles { src, err := ioutil.ReadFile(tc.file) if err != nil { t.Fatal(err) } tc.src = src var n, nhc int t.Run("", func(t *testing.T) { tc := tc t.Run(tc.file, func(t *testing.T) { // t.Parallel() n = run(t, tc, func(src, dst []byte) (int, error) { var ht [htSize]int return lz4.CompressBlock(src, dst, ht[:]) }) }) t.Run(fmt.Sprintf("%s HC", tc.file), func(t *testing.T) { // t.Parallel() nhc = run(t, tc, func(src, dst []byte) (int, error) { return lz4.CompressBlockHC(src, dst, -1) }) }) }) if !t.Failed() { t.Logf("%-40s: %8d / %8d / %8d\n", tc.file, n, nhc, len(src)) } } } func TestCompressCornerCase_CopyDstUpperBound(t *testing.T) { type compressor func(s, d []byte) (int, error) run := func(src []byte, compress compressor) { t.Helper() // Compress the data. // We provide a destination that is too small to trigger an out-of-bounds, // which makes it return the error we want. zbuf := make([]byte, int(float64(len(src))*0.40)) _, err := compress(src, zbuf) if err != lz4.ErrInvalidSourceShortBuffer { t.Fatal("err should be ErrInvalidSourceShortBuffer, was", err) } } file := "testdata/upperbound.data" src, err := ioutil.ReadFile(file) if err != nil { t.Fatal(err) } t.Run(file, func(t *testing.T) { t.Parallel() run(src, func(src, dst []byte) (int, error) { var ht [htSize]int return lz4.CompressBlock(src, dst, ht[:]) }) }) t.Run(fmt.Sprintf("%s HC", file), func(t *testing.T) { t.Parallel() run(src, func(src, dst []byte) (int, error) { return lz4.CompressBlockHC(src, dst, -1) }) }) } func TestIssue23(t *testing.T) { compressBuf := make([]byte, lz4.CompressBlockBound(1<<16)) for j := 1; j < 16; j++ { var buf [1 << 16]byte var ht [htSize]int for i := 0; i < len(buf); i += j { buf[i] = 1 } n, _ := lz4.CompressBlock(buf[:], compressBuf, ht[:]) if got, want := n, 300; got > want { t.Fatalf("not able to compress repeated data: got %d; want %d", got, want) } } } lz4-2.5.2/cmd/000077500000000000000000000000001364760661600130135ustar00rootroot00000000000000lz4-2.5.2/cmd/lz4c/000077500000000000000000000000001364760661600136675ustar00rootroot00000000000000lz4-2.5.2/cmd/lz4c/compress.go000066400000000000000000000052501364760661600160530ustar00rootroot00000000000000package main import ( "flag" "fmt" "io" "os" "sync/atomic" "code.cloudfoundry.org/bytefmt" "github.com/schollz/progressbar" "github.com/pierrec/cmdflag" "github.com/pierrec/lz4" ) // Compress compresses a set of files or from stdin to stdout. func Compress(fs *flag.FlagSet) cmdflag.Handler { var blockMaxSize string fs.StringVar(&blockMaxSize, "size", "4M", "block max size [64K,256K,1M,4M]") var blockChecksum bool fs.BoolVar(&blockChecksum, "bc", false, "enable block checksum") var streamChecksum bool fs.BoolVar(&streamChecksum, "sc", false, "disable stream checksum") var level int fs.IntVar(&level, "l", 0, "compression level (0=fastest)") var concurrency int fs.IntVar(&concurrency, "c", -1, "concurrency (default=all CPUs") return func(args ...string) (int, error) { sz, err := bytefmt.ToBytes(blockMaxSize) if err != nil { return 0, err } zw := lz4.NewWriter(nil) zw.Header = lz4.Header{ BlockChecksum: blockChecksum, BlockMaxSize: int(sz), NoChecksum: streamChecksum, CompressionLevel: level, } zw.WithConcurrency(concurrency) // Use stdin/stdout if no file provided. if len(args) == 0 { zw.Reset(os.Stdout) _, err := io.Copy(zw, os.Stdin) if err != nil { return 0, err } return 0, zw.Close() } for fidx, filename := range args { // Input file. file, err := os.Open(filename) if err != nil { return fidx, err } finfo, err := file.Stat() if err != nil { return fidx, err } mode := finfo.Mode() // use the same mode for the output file // Accumulate compressed bytes num. var ( zsize int64 size = finfo.Size() ) if size > 0 { // Progress bar setup. numBlocks := int(size) / zw.Header.BlockMaxSize bar := progressbar.NewOptions(numBlocks, // File transfers are usually slow, make sure we display the bar at 0%. progressbar.OptionSetRenderBlankState(true), // Display the filename. progressbar.OptionSetDescription(filename), progressbar.OptionClearOnFinish(), ) zw.OnBlockDone = func(n int) { _ = bar.Add(1) atomic.AddInt64(&zsize, int64(n)) } } // Output file. zfilename := fmt.Sprintf("%s%s", filename, lz4.Extension) zfile, err := os.OpenFile(zfilename, os.O_CREATE|os.O_WRONLY, mode) if err != nil { return fidx, err } zw.Reset(zfile) // Compress. _, err = io.Copy(zw, file) if err != nil { return fidx, err } for _, c := range []io.Closer{zw, zfile} { err := c.Close() if err != nil { return fidx, err } } if size > 0 { fmt.Printf("%s %.02f%%\n", zfilename, float64(zsize)*100/float64(size)) } } return len(args), nil } } lz4-2.5.2/cmd/lz4c/main.go000066400000000000000000000012631364760661600151440ustar00rootroot00000000000000package main import ( "flag" "fmt" "github.com/pierrec/cmdflag" ) func main() { flag.CommandLine.Bool(cmdflag.VersionBoolFlag, false, "print the program version") cli := cmdflag.New(nil) cli.MustAdd(cmdflag.Application{ Name: "compress", Args: "[arguments] [ ...]", Descr: "Compress the given files or from stdin to stdout.", Err: flag.ExitOnError, Init: Compress, }) cli.MustAdd(cmdflag.Application{ Name: "uncompress", Args: "[arguments] [ ...]", Descr: "Uncompress the given files or from stdin to stdout.", Err: flag.ExitOnError, Init: Uncompress, }) if err := cli.Parse(); err != nil { fmt.Println(err) return } } lz4-2.5.2/cmd/lz4c/uncompress.go000066400000000000000000000036111364760661600164150ustar00rootroot00000000000000package main import ( "flag" "fmt" "io" "os" "strings" "github.com/schollz/progressbar" "github.com/pierrec/cmdflag" "github.com/pierrec/lz4" ) // Uncompress uncompresses a set of files or from stdin to stdout. func Uncompress(_ *flag.FlagSet) cmdflag.Handler { return func(args ...string) (int, error) { zr := lz4.NewReader(nil) // Use stdin/stdout if no file provided. if len(args) == 0 { zr.Reset(os.Stdin) _, err := io.Copy(os.Stdout, zr) return 0, err } for fidx, zfilename := range args { // Input file. zfile, err := os.Open(zfilename) if err != nil { return fidx, err } zinfo, err := zfile.Stat() if err != nil { return fidx, err } mode := zinfo.Mode() // use the same mode for the output file // Output file. filename := strings.TrimSuffix(zfilename, lz4.Extension) file, err := os.OpenFile(filename, os.O_CREATE|os.O_WRONLY, mode) if err != nil { return fidx, err } zr.Reset(zfile) zfinfo, err := zfile.Stat() if err != nil { return fidx, err } var ( size int out io.Writer = file zsize = zfinfo.Size() bar *progressbar.ProgressBar ) if zsize > 0 { bar = progressbar.NewOptions64(zsize, // File transfers are usually slow, make sure we display the bar at 0%. progressbar.OptionSetRenderBlankState(true), // Display the filename. progressbar.OptionSetDescription(filename), progressbar.OptionClearOnFinish(), ) out = io.MultiWriter(out, bar) zr.OnBlockDone = func(n int) { size += n } } // Uncompress. _, err = io.Copy(out, zr) if err != nil { return fidx, err } for _, c := range []io.Closer{zfile, file} { err := c.Close() if err != nil { return fidx, err } } if bar != nil { _ = bar.Clear() fmt.Printf("%s %d\n", zfilename, size) } } return len(args), nil } } lz4-2.5.2/debug.go000066400000000000000000000005371364760661600136720ustar00rootroot00000000000000// +build lz4debug package lz4 import ( "fmt" "os" "path/filepath" "runtime" ) const debugFlag = true func debug(args ...interface{}) { _, file, line, _ := runtime.Caller(1) file = filepath.Base(file) f := fmt.Sprintf("LZ4: %s:%d %s", file, line, args[0]) if f[len(f)-1] != '\n' { f += "\n" } fmt.Fprintf(os.Stderr, f, args[1:]...) } lz4-2.5.2/debug_stub.go000066400000000000000000000001361364760661600147220ustar00rootroot00000000000000// +build !lz4debug package lz4 const debugFlag = false func debug(args ...interface{}) {} lz4-2.5.2/decode_amd64.go000066400000000000000000000001651364760661600150170ustar00rootroot00000000000000// +build !appengine // +build gc // +build !noasm package lz4 //go:noescape func decodeBlock(dst, src []byte) int lz4-2.5.2/decode_amd64.s000066400000000000000000000140411364760661600146520ustar00rootroot00000000000000// +build !appengine // +build gc // +build !noasm #include "textflag.h" // AX scratch // BX scratch // CX scratch // DX token // // DI &dst // SI &src // R8 &dst + len(dst) // R9 &src + len(src) // R11 &dst // R12 short output end // R13 short input end // func decodeBlock(dst, src []byte) int // using 50 bytes of stack currently TEXT ·decodeBlock(SB), NOSPLIT, $64-56 MOVQ dst_base+0(FP), DI MOVQ DI, R11 MOVQ dst_len+8(FP), R8 ADDQ DI, R8 MOVQ src_base+24(FP), SI MOVQ src_len+32(FP), R9 ADDQ SI, R9 // shortcut ends // short output end MOVQ R8, R12 SUBQ $32, R12 // short input end MOVQ R9, R13 SUBQ $16, R13 loop: // for si < len(src) CMPQ SI, R9 JGE end // token := uint32(src[si]) MOVBQZX (SI), DX INCQ SI // lit_len = token >> 4 // if lit_len > 0 // CX = lit_len MOVQ DX, CX SHRQ $4, CX // if lit_len != 0xF CMPQ CX, $0xF JEQ lit_len_loop_pre CMPQ DI, R12 JGE lit_len_loop_pre CMPQ SI, R13 JGE lit_len_loop_pre // copy shortcut // A two-stage shortcut for the most common case: // 1) If the literal length is 0..14, and there is enough space, // enter the shortcut and copy 16 bytes on behalf of the literals // (in the fast mode, only 8 bytes can be safely copied this way). // 2) Further if the match length is 4..18, copy 18 bytes in a similar // manner; but we ensure that there's enough space in the output for // those 18 bytes earlier, upon entering the shortcut (in other words, // there is a combined check for both stages). // copy literal MOVOU (SI), X0 MOVOU X0, (DI) ADDQ CX, DI ADDQ CX, SI MOVQ DX, CX ANDQ $0xF, CX // The second stage: prepare for match copying, decode full info. // If it doesn't work out, the info won't be wasted. // offset := uint16(data[:2]) MOVWQZX (SI), DX ADDQ $2, SI MOVQ DI, AX SUBQ DX, AX CMPQ AX, DI JGT err_short_buf // if we can't do the second stage then jump straight to read the // match length, we already have the offset. CMPQ CX, $0xF JEQ match_len_loop_pre CMPQ DX, $8 JLT match_len_loop_pre CMPQ AX, R11 JLT err_short_buf // memcpy(op + 0, match + 0, 8); MOVQ (AX), BX MOVQ BX, (DI) // memcpy(op + 8, match + 8, 8); MOVQ 8(AX), BX MOVQ BX, 8(DI) // memcpy(op +16, match +16, 2); MOVW 16(AX), BX MOVW BX, 16(DI) ADDQ $4, DI // minmatch ADDQ CX, DI // shortcut complete, load next token JMP loop lit_len_loop_pre: // if lit_len > 0 CMPQ CX, $0 JEQ offset CMPQ CX, $0xF JNE copy_literal lit_len_loop: // for src[si] == 0xFF CMPB (SI), $0xFF JNE lit_len_finalise // bounds check src[si+1] MOVQ SI, AX ADDQ $1, AX CMPQ AX, R9 JGT err_short_buf // lit_len += 0xFF ADDQ $0xFF, CX INCQ SI JMP lit_len_loop lit_len_finalise: // lit_len += int(src[si]) // si++ MOVBQZX (SI), AX ADDQ AX, CX INCQ SI copy_literal: // bounds check src and dst MOVQ SI, AX ADDQ CX, AX CMPQ AX, R9 JGT err_short_buf MOVQ DI, AX ADDQ CX, AX CMPQ AX, R8 JGT err_short_buf // whats a good cut off to call memmove? CMPQ CX, $16 JGT memmove_lit // if len(dst[di:]) < 16 MOVQ R8, AX SUBQ DI, AX CMPQ AX, $16 JLT memmove_lit // if len(src[si:]) < 16 MOVQ R9, AX SUBQ SI, AX CMPQ AX, $16 JLT memmove_lit MOVOU (SI), X0 MOVOU X0, (DI) JMP finish_lit_copy memmove_lit: // memmove(to, from, len) MOVQ DI, 0(SP) MOVQ SI, 8(SP) MOVQ CX, 16(SP) // spill MOVQ DI, 24(SP) MOVQ SI, 32(SP) MOVQ CX, 40(SP) // need len to inc SI, DI after MOVB DX, 48(SP) CALL runtime·memmove(SB) // restore registers MOVQ 24(SP), DI MOVQ 32(SP), SI MOVQ 40(SP), CX MOVB 48(SP), DX // recalc initial values MOVQ dst_base+0(FP), R8 MOVQ R8, R11 ADDQ dst_len+8(FP), R8 MOVQ src_base+24(FP), R9 ADDQ src_len+32(FP), R9 MOVQ R8, R12 SUBQ $32, R12 MOVQ R9, R13 SUBQ $16, R13 finish_lit_copy: ADDQ CX, SI ADDQ CX, DI CMPQ SI, R9 JGE end offset: // CX := mLen // free up DX to use for offset MOVQ DX, CX MOVQ SI, AX ADDQ $2, AX CMPQ AX, R9 JGT err_short_buf // offset // DX := int(src[si]) | int(src[si+1])<<8 MOVWQZX (SI), DX ADDQ $2, SI // 0 offset is invalid CMPQ DX, $0 JEQ err_corrupt ANDB $0xF, CX match_len_loop_pre: // if mlen != 0xF CMPB CX, $0xF JNE copy_match match_len_loop: // for src[si] == 0xFF // lit_len += 0xFF CMPB (SI), $0xFF JNE match_len_finalise // bounds check src[si+1] MOVQ SI, AX ADDQ $1, AX CMPQ AX, R9 JGT err_short_buf ADDQ $0xFF, CX INCQ SI JMP match_len_loop match_len_finalise: // lit_len += int(src[si]) // si++ MOVBQZX (SI), AX ADDQ AX, CX INCQ SI copy_match: // mLen += minMatch ADDQ $4, CX // check we have match_len bytes left in dst // di+match_len < len(dst) MOVQ DI, AX ADDQ CX, AX CMPQ AX, R8 JGT err_short_buf // DX = offset // CX = match_len // BX = &dst + (di - offset) MOVQ DI, BX SUBQ DX, BX // check BX is within dst // if BX < &dst CMPQ BX, R11 JLT err_short_buf // if offset + match_len < di MOVQ BX, AX ADDQ CX, AX CMPQ DI, AX JGT copy_interior_match // AX := len(dst[:di]) // MOVQ DI, AX // SUBQ R11, AX // copy 16 bytes at a time // if di-offset < 16 copy 16-(di-offset) bytes to di // then do the remaining copy_match_loop: // for match_len >= 0 // dst[di] = dst[i] // di++ // i++ MOVB (BX), AX MOVB AX, (DI) INCQ DI INCQ BX DECQ CX CMPQ CX, $0 JGT copy_match_loop JMP loop copy_interior_match: CMPQ CX, $16 JGT memmove_match // if len(dst[di:]) < 16 MOVQ R8, AX SUBQ DI, AX CMPQ AX, $16 JLT memmove_match MOVOU (BX), X0 MOVOU X0, (DI) ADDQ CX, DI JMP loop memmove_match: // memmove(to, from, len) MOVQ DI, 0(SP) MOVQ BX, 8(SP) MOVQ CX, 16(SP) // spill MOVQ DI, 24(SP) MOVQ SI, 32(SP) MOVQ CX, 40(SP) // need len to inc SI, DI after CALL runtime·memmove(SB) // restore registers MOVQ 24(SP), DI MOVQ 32(SP), SI MOVQ 40(SP), CX // recalc initial values MOVQ dst_base+0(FP), R8 MOVQ R8, R11 // TODO: make these sensible numbers ADDQ dst_len+8(FP), R8 MOVQ src_base+24(FP), R9 ADDQ src_len+32(FP), R9 MOVQ R8, R12 SUBQ $32, R12 MOVQ R9, R13 SUBQ $16, R13 ADDQ CX, DI JMP loop err_corrupt: MOVQ $-1, ret+48(FP) RET err_short_buf: MOVQ $-2, ret+48(FP) RET end: SUBQ R11, DI MOVQ DI, ret+48(FP) RET lz4-2.5.2/decode_other.go000066400000000000000000000041041364760661600152220ustar00rootroot00000000000000// +build !amd64 appengine !gc noasm package lz4 func decodeBlock(dst, src []byte) (ret int) { const hasError = -2 defer func() { if recover() != nil { ret = hasError } }() var si, di int for { // Literals and match lengths (token). b := int(src[si]) si++ // Literals. if lLen := b >> 4; lLen > 0 { switch { case lLen < 0xF && si+16 < len(src): // Shortcut 1 // if we have enough room in src and dst, and the literals length // is small enough (0..14) then copy all 16 bytes, even if not all // are part of the literals. copy(dst[di:], src[si:si+16]) si += lLen di += lLen if mLen := b & 0xF; mLen < 0xF { // Shortcut 2 // if the match length (4..18) fits within the literals, then copy // all 18 bytes, even if not all are part of the literals. mLen += 4 if offset := int(src[si]) | int(src[si+1])<<8; mLen <= offset { i := di - offset end := i + 18 if end > len(dst) { // The remaining buffer may not hold 18 bytes. // See https://github.com/pierrec/lz4/issues/51. end = len(dst) } copy(dst[di:], dst[i:end]) si += 2 di += mLen continue } } case lLen == 0xF: for src[si] == 0xFF { lLen += 0xFF si++ } lLen += int(src[si]) si++ fallthrough default: copy(dst[di:di+lLen], src[si:si+lLen]) si += lLen di += lLen } } if si >= len(src) { return di } offset := int(src[si]) | int(src[si+1])<<8 if offset == 0 { return hasError } si += 2 // Match. mLen := b & 0xF if mLen == 0xF { for src[si] == 0xFF { mLen += 0xFF si++ } mLen += int(src[si]) si++ } mLen += minMatch // Copy the match. expanded := dst[di-offset:] if mLen > offset { // Efficiently copy the match dst[di-offset:di] into the dst slice. bytesToCopy := offset * (mLen / offset) for n := offset; n <= bytesToCopy+offset; n *= 2 { copy(expanded[n:], expanded[:n]) } di += bytesToCopy mLen -= bytesToCopy } di += copy(dst[di:di+mLen], expanded[:mLen]) } } lz4-2.5.2/decode_test.go000066400000000000000000000045151364760661600150660ustar00rootroot00000000000000package lz4 import ( "bytes" "encoding/base64" "strings" "testing" ) func unbase64(in string) []byte { p, err := base64.StdEncoding.DecodeString(in) if err != nil { panic(err) } return p } func TestBlockDecode(t *testing.T) { appendLen := func(p []byte, size int) []byte { for size > 0xFF { p = append(p, 0xFF) size -= 0xFF } p = append(p, byte(size)) return p } emitSeq := func(lit string, offset uint16, matchLen int) []byte { var b byte litLen := len(lit) if litLen < 15 { b = byte(litLen << 4) litLen = -1 } else { b = 0xF0 litLen -= 15 } if matchLen < 4 || offset == 0 { out := []byte{b} if litLen >= 0 { out = appendLen(out, litLen) } return append(out, lit...) } matchLen -= 4 if matchLen < 15 { b |= byte(matchLen) matchLen = -1 } else { b |= 0x0F matchLen -= 15 } out := []byte{b} if litLen >= 0 { out = appendLen(out, litLen) } if len(lit) > 0 { out = append(out, lit...) } out = append(out, byte(offset), byte(offset>>8)) if matchLen >= 0 { out = appendLen(out, matchLen) } return out } concat := func(in ...[]byte) []byte { var p []byte for _, b := range in { p = append(p, b...) } return p } tests := []struct { name string src []byte exp []byte }{ { "literal_only_short", emitSeq("hello", 0, 0), []byte("hello"), }, { "literal_only_long", emitSeq(strings.Repeat("A", 15+255+255+1), 0, 0), bytes.Repeat([]byte("A"), 15+255+255+1), }, { "literal_only_long_1", emitSeq(strings.Repeat("A", 15), 0, 0), bytes.Repeat([]byte("A"), 15), }, { "repeat_match_len", emitSeq("a", 1, 4), []byte("aaaaa"), }, { "repeat_match_len_2_seq", concat(emitSeq("a", 1, 4), emitSeq("B", 1, 4)), []byte("aaaaaBBBBB"), }, { "long_match", emitSeq("A", 1, 16), bytes.Repeat([]byte("A"), 17), }, { "repeat_match_log_len_2_seq", concat(emitSeq("a", 1, 15), emitSeq("B", 1, 15), emitSeq("end", 0, 0)), []byte(strings.Repeat("a", 16) + strings.Repeat("B", 16) + "end"), }, } for _, test := range tests { t.Run(test.name, func(t *testing.T) { buf := make([]byte, len(test.exp)) n := decodeBlock(buf, test.src) if n <= 0 { t.Log(-n) } if !bytes.Equal(buf, test.exp) { t.Fatalf("expected %q got %q", test.exp, buf) } }) } } lz4-2.5.2/errors.go000066400000000000000000000020221364760661600141070ustar00rootroot00000000000000package lz4 import ( "errors" "fmt" "os" rdebug "runtime/debug" ) var ( // ErrInvalidSourceShortBuffer is returned by UncompressBlock or CompressBLock when a compressed // block is corrupted or the destination buffer is not large enough for the uncompressed data. ErrInvalidSourceShortBuffer = errors.New("lz4: invalid source or destination buffer too short") // ErrInvalid is returned when reading an invalid LZ4 archive. ErrInvalid = errors.New("lz4: bad magic number") // ErrBlockDependency is returned when attempting to decompress an archive created with block dependency. ErrBlockDependency = errors.New("lz4: block dependency not supported") // ErrUnsupportedSeek is returned when attempting to Seek any way but forward from the current position. ErrUnsupportedSeek = errors.New("lz4: can only seek forward from io.SeekCurrent") ) func recoverBlock(e *error) { if r := recover(); r != nil && *e == nil { if debugFlag { fmt.Fprintln(os.Stderr, r) rdebug.PrintStack() } *e = ErrInvalidSourceShortBuffer } } lz4-2.5.2/example_test.go000066400000000000000000000022521364760661600152720ustar00rootroot00000000000000package lz4_test import ( "fmt" "io" "os" "strings" "github.com/pierrec/lz4" ) func Example() { // Compress and uncompress an input string. s := "hello world" r := strings.NewReader(s) // The pipe will uncompress the data from the writer. pr, pw := io.Pipe() zw := lz4.NewWriter(pw) zr := lz4.NewReader(pr) go func() { // Compress the input string. _, _ = io.Copy(zw, r) _ = zw.Close() // Make sure the writer is closed _ = pw.Close() // Terminate the pipe }() _, _ = io.Copy(os.Stdout, zr) // Output: // hello world } func ExampleCompressBlock() { s := "hello world" data := []byte(strings.Repeat(s, 100)) buf := make([]byte, len(data)) ht := make([]int, 64<<10) // buffer for the compression table n, err := lz4.CompressBlock(data, buf, ht) if err != nil { fmt.Println(err) } if n >= len(data) { fmt.Printf("`%s` is not compressible", s) } buf = buf[:n] // compressed data // Allocated a very large buffer for decompression. out := make([]byte, 10*len(data)) n, err = lz4.UncompressBlock(buf, out) if err != nil { fmt.Println(err) } out = out[:n] // uncompressed data fmt.Println(string(out[:len(s)])) // Output: // hello world } lz4-2.5.2/fuzz/000077500000000000000000000000001364760661600132465ustar00rootroot00000000000000lz4-2.5.2/fuzz/corpus/000077500000000000000000000000001364760661600145615ustar00rootroot00000000000000lz4-2.5.2/fuzz/corpus/0fe8d630da208c92ae1a33832403baa1d5e0c8b8000066400000000000000000000207731364760661600222030ustar00rootroot00000000000000 lz4-2.5.2/fuzz/corpus/2c3c06f5c01917e29b1b7677f9c0160ba76cade7000066400000000000000000000020131364760661600221350ustar00rootroot00000000000000abcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstulz4-2.5.2/fuzz/corpus/395df8f7c51f007019cb30201c49e884b46b92fa-1000066400000000000000000000000011364760661600221340ustar00rootroot00000000000000zlz4-2.5.2/fuzz/corpus/3af0d9f28847f713e8f0d6f3d76e883d18350228000066400000000000000000037774721364760661600220110ustar00rootroot00000000000000H)*ֽE4TXiU!"y !0 8V2[*/]οKHoɀh콶H_Rt%xRFuy%[&ˢ&lF_|2RnҦB<4w?o?ܸ }>_^E{km]&Lp 0W*u֝Z 1YȐ]J+O:2-U 5׌ m *fanVa.@ոTda꥚`_}!SdFO% ϖڈMȫk)B_^3ݠdW9OP-#daͮ^ Ӿmw VP8 1D,$#%' ջ o4gvNP#Qc}E#Wv_,cKYt5TVl>D3K$X,:*W}ąG >![F_rRj.s(4vл"D+/$uHkim4r]!;boŧƥE 5bOC1ut^tIh0:״"I8}(ٖ;l6)|}/V[Ӣ;mC㪹ЋK(hۅKb.>@[DЋ32@r hs 5h1̮fsس69MA0NW`'-{ѪT'TGrouڷbQo>^%׵FҋNzKEbҍter M\qTWslJL(ϙ Dm6\žSWSIJE6fpB2&?{~A:UaWP3ILutYO$YB &L,u+~DmK |3Wph1aW/I2?XcYy8/u_1]6b 8! =@C[lD"ƹb`KRJ+"**k/R~ƺ7KI)Bӯ3Q =!,yxׯMk-qo}ɅzS/tFPbJn\;꒼'#郙h( MF:`>e/W0CHs}>c8/R $}r3q?)݂mbJCx'b&< dOG6,R['q"k-*6»#z.Ha N#8ffK8H t<ozFx̵FC2[780m,^ER~}=jl商z;+E5VMZ2?4 #)0@:PlǞ{fg [%4SF*D2k-xNIL[șw'AEF `7#~VYes4Zj<b@B诟2΄: $V^Dz0aξσer.@8v+ﺒY\@@b[+"?I39lv.j`<IENJePʶO&!Y`*%`Ϙ|\ӭ$H`zO%gviO"@M\vSfNy+1UDW;C"z-;\Q ێQka36ʿ1Q:0mIyEZ_ő絯oFPb6!1m PVЭ+Ao4ZLV$"fD}tHFd}!+ opvNWEA3SnYQTeYu,Ⓧ}:Ӓ|7UIϑIhq{E?(3?[;;AQn=:n"AQnڇdjN c9zIDH-C<aPw'hz.f+]TK{^Xze<Ӱ|2᤯ M_wFX(v\ƙ"ԋzӞrŽj}R `!6^Ff'PI^H=OqH4C"N^Ld"rHevbþU\uܷ1%( UH2|:_)<./#ۼ4rA@p֕%LCF ۽ˌgz a嬽51eSXUc]?4KP]7t;y:i/+9VI{E! I@@asI'VmQ[qv+uc_EbOÿ0]"eh^M #B[իvo]B(;Dp쐛E ծuztE̙O8&^j+˟ A zv@Ł$}tH 07`-`{*’>2kƼW> \GA k2˩q  tܑ ]`Y֚Od DL sR`)`Xp2ru0% m >](XXԜe șQƉs zNEQQA[@>?Vd ,|GT9J$-A|Op=A_jg?3|?8 Zr~B~<9NJ*0n4QRI'^SwV>n?;E@'XOYr* \.e^'7 齍ڹU|D?W~҅ TyES/}UDzJ0' #.qLT@%#Iy3o8zGw܅w˕} 8+=0MloKwP[X93'zpw2qn6 # T|Ez5T@f[RPŤGR;H `RTiwyu+;R,,3Cj/3.U| YpxU}{EɨuR  kȬ=|sx6B;+^~'ZIW Nmjt5.΂A>$V6ͳ;s )l[iW#cߝ}pEnRi5Q bZ p!K<8O-0rxE8)hb{\r[#܅p(3:,thOJLU׈ܳw54c024L{&Z&-p1itEgRb2{kųsz۹3Ctj7km wΥN[giE a=;G.-ĮJ1BE_ʳoϲ#ҍ ֔N CR c[V$av #Tүy1p1ۮfRK .~onPADZZ>T+J䬳kI4:gioX\IU*C"3w@Q^juP"Y#}U&|c۟һSqhCSZ"GߩN;bLz`L EgQ_{qlwg/l薋m RDם6do3V( $yw\$Ѵ6KX|()K5IwG9CyCqqWm돱v~31h>-9;a|XosV4; vltZN@w HKwwk䆋˕] BU\@2R݊HHPiemD)v/:w#MH! ;F\DW$ vsUX!P.9Kk`a%t*ZP0< i/ Yw6SY5shjsWAQIwK܄u>^9uFcѧ2v!{7sCgJ3ኩ?)&Z`KKGl. eiҖp'#~)>#.?:jM+Qw+emׅ!})@qiNVQ/]ReBĥ+KKι\ic4֩pp}=գ.=xg CgF| 끑tͿ)8+-DN?\êA2Ӱ](iT© 4XXBŴGi4t"=D6TY,crbbC"nML ڙh%0;[Y|r~_ZK[G { @!᷻$&0U_ \ҙA} 9·DO¬*ܝ9^gӍqv7 ?5f@CH6J_2 (ꢵ<$l ri=<'rۗÕOx&h8մgTdvpBt&6-\<Ѿ)z3 ;wUGg\(O=DWV/~Yf*<1085M~d(s݌/|&/ܾ=s:u.ͣ* oWGUt+ e XQɜ <43gPbO!ص! &R:tsW#J>+]̗n^~ q &!tj ;BZOC8-NW8]Z-EDDfTFw`ƥxlţ~f/ ]6R%Ȱ$?ۃBTWVL<^uGKO͵hLJ%KSi ;1o#밾/X@jUsQxgFdJmVA}(I^W>s'?FsKGޥ |s&zc4$0q38opEĀd&Z70)c";"̑P۫Ƈu$Awd-*q)G-gvwAHdI]2dX=F:=ROPt8 rcX~Jr!c r`^C)P;L>.ݑ>d{b A+6j|N`eR냣l`T2CKI̯IV%,|_0E@x4=i%űQ!v1B sX8_'?nn:dXlv|6=Qh[zSB%u/t⮖.! BtG #_ZQ+ѩD XQ_ڶK.JP۽:6=/G7-JO'>7%߭8c@(ko&h[J0LxӅyx3SpS[,}Ioy#1ʆA)_boAtaVxsW=Pgr D>iRS~0Y< -DA+TcaՏ80|緷j#GVS3Z5^ıf UH4l nU-+;FN pїLaP=Q:dE֏թ]" :top/"# 7Gl#T3f` bh=D):٬%VB Ā`R ,:1R=3z7|Y`u2JO68`7ScQɎd?#壿g1EH9˙y˂Xp[oFvEw#)Aʂ} -ΪH/9ϯ/P1$mHߩneHGFFC@3x+hn7ҍn`F^W|-+)?;}OYeisLm uZlkFU v ɻ,ۂupDRd+MU3XRU+Ny59Sē\,m'ͅeOSΉW͝ voF34ӧ8&:a-fECt5n}w֝7'ǵsl^0GVp vJu,\l\5SS0V̝]k؝)tk*HHTEB6n7UkVէMGiӓKxM;,:?rh,ʹ[j{$XXѲ645xY2H*^6]k-H\+ Icufo9ꛊabwLrgYf:|Do{tAD@ p?~^P@@~SN1w⡜ɔ@N9HM[[W)=LxAou>=2Fs=6s.+cyE<_4}u@.|ts\TrԆS:#?[/@]z~ț7 5(Z~q[ՋN; Ԣެ j`q;uzM9LO0"sִc µr_(»"";(b623qpOY#|㪘~]Vr:|3oV(tvPb?r={do/(: $&,CZur}NX뱥4؛a{>]ʬJ[MnW p,`#lf ㍽&mSr95[{}4Me.4uon̢kD}V2Cz>,ʠZ*]ƻ9~ܱ-UIKK>ƅS{'Q<ΕHHS?/ةYzr:D y@7k9C*/?3"TN\ Z⎻mik 58Z7V*y2:n.*hB%5U})79?%Viܱb|Ⱦ I/[}U "z⎩aqM\5JIcftd;d`a749hv%B~/L3%Xb ER螻Iibʟ!%/FטYz_%!~ou[#p*%)U Iu3M+f"xV4K" ǑRnz|X*jd:ls&N`ˮxӲ,uJ4**՝Cwp.8CJ͈cORʣ-үF0P{ï` Dz[ΚAK{Kn-&旪9E(bh(ppQdS6qE"uk l @?!ӧ[iGa-KfutA F- OaWXHB2Q3kWgq}fkoe9UkA^Dҿ=e{8WMF=eѿ)ETk`.9zI ` 4oLLT6EJm6tD. lg^#pJjƥD]KĐw IN ?+ɥ`_@{/HpUKL!>" M&aap(V1j_MFP KM8w 6>(}9ILO5%tatI]tQL#S("D` '5t` gPL#> ,f [(-d#&< g*eTNzC[4OwBM&Shoa^Fgc|y!Po Iy|Iy Y~|'crMR\+":p|f||Y'P 23rӏ$~>by'TRV7^O87RAԬ CǙ"OJwkJlBb~l ^CDiA o瑹8J*hlUغ!Ԩ}rBP(RMM끑 paZ&ZI;BznnF|<1la 9@LMJIv PP"!r}э7Zt?B BV%t" '< JH-E/룯ˎ(My~l M!|57=dy Ez}pia>DQh ."}٧Q!D8i&z:1+*QC(z!K=%iaQ9`&SUY ֡h. պ<&SɵS&P82=ͥ/˩, AS ]G1W[V1ʀVHi6eLU*tn vLJFpi4%~=cW-HHީΈNM e1a|SI&frB[NT|RCG(erntp'Fmh+R.̸T8n;.EpePTi+*>I/ ~C pj5ŝ"Ħ%4ыxBCQ/6-T!ܔTQozM#5(SM0Mǂ,i*Yd ! (T`495.Ssw݁OO^o:N6r=9^cz.W$DGqlW cƸ>>w p\azO0"a"JWN1OYb$4N;KNVą _ߍSצWf5U&N#EZPwn?!*k=@O߲[=:iǖ"6!aQC\ z$E<;G,ǵ%9C[Fx1-T5U j$u⒪WBf9vZ⻇bv橍)r2 Ef)Z<_lV}[[_ư2DyE;6W;~nDQCpgjw͛-(ðQp/~ZdE0rAYSٲcmSٴBUc^rJܼƢR74?O~]}J^%: ǪROg3 x\ ?.;M3a竉x;7QSblO7R4t-e&E$}[ ?Gn4\(v:y oi2/st 1B _m@D5Y0runhhN -|$ᕌi%"e^ޝS!w!K0c! Ig;\5뻑+-tAX^hb379yfwC0C+`H D}퇛bVFUnPD%$y†ބg͞?JuhWMe3[*%ebȨ.. 7z233:|kXKN2HJAem -2C8Y,[a `"YY6 `aZfJab B0)7l`&X- J:@6"mzQP.ҮDX*ˌgGü 6m#m'?4U1%0 w"8(h _N 鳲=qNhmC0ObmAjEZ!o`\&R]WТB^ wrSoW s>@wO1E\N bT |u&^N@w]ZPQfzG1]R42 5w]r qyAiYqw_Xo;ފcl^csbb5)2CB(:. *K]3< .j c+*=BȆvM"rnگfOCķJdZogԤejynt9 yb_`uleκkگi嵙z) zN1ִ=iw6t0M3r۸۞o24[3wp<|Zd Jp'oio్[46(ԅ ;q ue#"|$-,V }6Yh6vl/ enDsYu"z<yb1+Z3@ ^mzB& ;BT[p.u}Lb}{ ]guN,Jjí (tZZ݂4lAT(AF!̾_1>Lbq"xN΁?Ƌ) c k@Ȓ1buBT\af7HeخO۲wN*Ψuߙ\UKr2ZE"+4=| xENdyɺIͦ-qH N{.Z/Hon-Zw"+a*l:ڤzSX$EdJչf0}6x%g+#oxQf<=CM_كF On"3▎ԽW&'rDMG+ؤh.ᚎ,9pJpNY t $;*،?4,͞wYQ@W}a^Q^vbԋҡa"^3tӴ6dkd$Z|*}ky\(sM7xk\6|u3lZ#Gݪ\XtB!_Tg ҍ?i[/'g2Oإ h«h{}eG FZkQtE>oc4oD |f-I+u)( Šg<"Ćhse1jkf6urrxze̮ mTB0u|Ә<@7eVu6IQhХu} b\;G(l@Ô8[V'pmhB2Pz^B^$PCOkNC\k)SRHϮ #|g0Ld4 Mh (LIʸvAdgW?Y{[iIHM2d#c+qI⩮zslKgH'bó? ʱ7 \0pq}Bs1%4'8_ӓP*I0Ċ߹by- =v2(('._C}C|{Rf(]0\e8J+<)jy1"4 ëFR.3'^wVDwitUT\M,X ֘J#뚍Ed}%:cZQ)mGXS07FC +͐5Ya,3R\1Q4/))VKhKV+U_ ы;+OUԙ$ع8 j(O H ⌉6Uy-&^ٕ+ih V,WLaZ4,U$ՆWgV$Շ/˅,CX¨~EDLGȉv[`r銢l27FB~ytElFVAE;Oz c<^~LGEbyLR8o5ͮ+Bb!WNY}ptqŸĄ=YrBu6~g{>Ja= )"^$1R% K_\ ڇ6˱2\)ֶ+N!FkrY,ÚvBh_mćݪ2u*O &-C} 4|S;ͨcx 4 Ք+Cd6V$du\)!2kUSA$TwkH2AA*Ո PhCAf/2%S mTAF ÓvUJ1%jHw#<ӎ킁y̨5}2DKAG`&F MڢND"RFO¼rFüG½7&UQuIY`1c 4\FzGe{qF~ #3:4B$n ?i%y{EB þ'ߊ oݚzex]82|nPb!E؆bѣlFn1pNkLdLkJqe3L J1O+{5p0lk1j õDJ9"ZˠBBMgiɂcs&Qt>\ A匵2@ CndSs\^&s,8C@αNU2Ql0P Ͱ^R^UZ5r'JN_7O/ fl&I~]w? =q˺9 lA ¬{$ial|"t9?' a&GPQ*/ۑ2-A8_#NsP Z<0ݦC! -gP+Aȇ>jw}Diڡ!&&Suqذ_v#ru%N m-hא9 8"ɲsy>5f|}Lfn8~8zOBA&`e% iyu_pNBО (x^ѯb!Y+|)vΦ'NPgbTm:JL\$a_sD}_ B!3D!s(D.BwSGi>n+~oZ&{:Snos4jktx 7[ZgCOB. !]" }\"b2|Ēfc-GVC=zV9nahr}c36QљaI4#PZ? +Ya%KP#-v[SNl*UҪd\%i(ё e1,dDI'g@Tgct]=F Vyx耉1L 5ipdc |,eO0R3GM )ƍZL'hqʏ3gf{dP֙9 4de6Oe4W8.KW8DRX qLlTWUTqTN%513Yb((FuM- yU/blbE Kkv56 :icD4W;Υ-D]ģZ1^øQk;4Wk*IJ 2T9 Zޢ&TGXGk5[BdN"d*թ@ɻ.IT.=uxHʵc| &r ]mTT0l^)̸4\~Q'vD2f+iNXZ_$4d>Y֮Xy^'}jmRREn"#ST~ egcm=9&dFj[ fCuAt</`P'D7>v~Vp;@]bv'B,_o%ACuyt !}#ò66D6t(e_BN jĩOB&q=EӨ-g K0RB|gr)Ҏ\QA0&`.+gIa-"N~Iz\:Rzq"["<.Uˍ4}GyT$j}f6)v ƈU 1"]GͿ A_*Il@k]?,((|s& +rk kۮ ⚌?'uY#nE ^*]0ƞ$A$x.A/v1#/jY>^ WU!YA?9fhHiҽb|z &؆~@^&irx |Mڵ`ڷS spC@dw!2>RbLo @(vj٥w7 n]!b{+o_p0Xj^iAwo z5Lx nxt[}ynzBzk|w@Io5nfLOv(na^^|vdgEY6y n^T"B~$vm_@{^s!}^cOc?_xfclӀfLV#_2;!"""jƸyE%"Pƪx \l smf jA/#FW ~wޅB6Z~"ps¼„0ҢW/2TTdDJ@S>1I*'s{q=@RؼkyѽulĞ#FCfe+T55iuT |=իULR)I5- \8s)/wIvHKGе/buJ0F_0;.-{;F֕80kO p M}|\cc?,CDJcTZ_)qG CяcJ\Ȱ1Kj q=T l|!gzJ"^֏Ii⩱`ӊڌ{e)}pa-(K+`˘a(rI46D7 ^UG uڔ*n;k~s)іڠ,T/]tZŋgj~َqnbdduMy|/k-Ҝ40r=m0@Ml?xI,ۯۧII65:{4y+FX]."όX ѓ"AmX,ߑ,d xavA C%'ypOBj=9QrH ՎTcYRv"Tj c>Jl8FMSLFVO'Zung~LercN;KI9i]sB;cɎHV+L R:U9#IQV8k -U=  9o| r4*dUH4SR-a`c|E^`:+{B" T5>[Y^iPre1Ϝ}@nɡ!gm{\c6kwnZՒi8%M:MȖ0^FLH&КPma{;\܍|JvּZ=Ԗ@-+KɘZ+fyN(wl$^ŶtQPOj7^ՠ Y; @`G)sa=߹F Eh3gs}E(< @.:L|:I9w.M:y[7^S ;  )} ۊy&zUo[:n(i*K)qnĉߓqyTy<lUK^UWڟWUPY Zx lp3ۧM) {,zR>=on>xMƔ4 _@֘J!g S IJ2#qP(;D4INDK (hh{ҳ3|#L;K -7?S6oV.!KU-.Eܳc [n'ѢK`!YKm.Y hFs)LFA>*'hĘXݐ,фg[#z2L& 4"Η]D GHArCjm5V+^7n^5'>oI*### E6U)1I2gRӘ$|Zy?nRR؆U `xiH`8^I`~TXdK\WI=:|սs3g=d] L/ۮ7/[/=?PʭׂpS<^e/upx:c<ﵪ|B %'J* @2%$8F,DUh-B$1b-EJc ̒-(ڳ3Q*g{VK_1k\˳cht_`O٦[yY'ڨgYKyDr3Dv4Qy⃈Ub7H~ʻFz4`樢cTDMӃ!T1[ sCLtJJa gT.18Gr=yur՛[?#j?F"764;MLe ٕN)A^IL1eyq8/R@iǜ~ F)_2;r _~&r:us}MGr❋5dMKw2MfbSD)c˵9rEt զ˝JR5`xDǮl? Iu[pD浀Sޏ0\lW[<`2F%Bi H͉#GCPYԐ8M j:ȝk1 NpW&n.ra1?]cZb̪N*/ N: !?Kf(ovO0?ϴzB=0hȨXDL^8Ww* r:m{#- Z*0;L™f󐡛D}T$t ;E C"|[-PE /C')AD;tڵ6%W@6XmJ6n r lwm6tN^]'4pCJ%vB@y N @%E*3!f&}O!VdB:FMrx «U x0 D4cx^^~uv_A_: Y?à qupkWbW96ENhH q+jJ41 <_:&(jHE+dpiJ7u쟃6>fӚYtG[>/Gk.1cy'FUtTS J.g(%uWf\ ܡNo+h5`r=_T1$$$.; |'0WB`@DyV!D|i<]Lu+bw16(b` -YGAZ>6Q$X=QnU4X#nHL5@5`ŘǾѪL~#CR7Oi-pȹ #<;0wBZ4CDOeqbls@Ϝ:ˌ)?]Q`냷P@DG|N+i^Z'$wNˣBzkNlљCQcъW|lge,FDCfKB}ZXk'wPɱBj+6"](:lQwsPg6#W~ huI7JL "rNb֤.TZdf8`[#2J_=fbeBJ\M a]9|+G:"9:?JM@ 伲4tJb S|/ ;QTtnpW|%֭u\ UB ;#'7o.ȖvzFW@-ב {/XBl,!wLpR@ ND:*]iY}0YdШW0`5DS;v.+ϛ+RFu!D-p+C&%,f.ޚ?;x(xN2 6ly954Rr,MpwX_ /WQ Z;:a' JˌTB/crUj:1u`7کp)4+b`lpLBljO?1QUN ;Hobtwdd8IN$n:ɶgzѿ'@4 3>WzӞ/AS+(\s ,Ǫ_{9熝@G$^#ݬzo K=`uACɖ Gh yq51!:/~d%0砍1{Q1\\k`)<~IZͮe&92H0͉zN*Z1v+ }sV搤^s.* Y>Rk`{a:?#7$rxL]9]l5k"ZT8_ꉲK$ds=x|Ar BFhk>YF&[V]ЦU֠#@FuiPUʤyK`P0_;8C_XVK( \hnT1%2F?ǨИ`hmOwJ߼Tk@Tnxis.'N[8C9\*ZRsc7eۏvNŘOAl'M-c5;Z[G (_3sNJ ImG? q#1  TZ,ΠoV0'feXnl=kORx.q*U`e@R̸q鞢M1g)iVjf;DRXʍfIk2EΨMYH@Қdžh qHB6@DZ ē]^ˢZ QC!mwIFߥ;StMa$ՃNE*J>Na_:m2d܃K B2),*BCD*Bl=_:P 5K˩o눧y"d+ qoRYV!rǟwH(TyG]h" EZ&Ura0$)2d 4H۽#0h<5މè'*@4硼1u$ށZ *a|3E4*yJ>B3cFKNtf8e 5$S }mI U7̃zȏmn'YBV:r;<{,L%I'IŶN[@y'Xfᅼ Ӡ_*/]\cPZy1 m+'?u~Ey]N5grbxt@yJ5g3)vrEBF=?vU]&QP,rY[Ү])a?ژgBK3 kcfǶ/ _7|]&n̡GJ^ h]E=lF$)2Z"CshЌF\j mN̥8I5CG'}KJi&TVWH;qsvlsŢ2q/!N"B,* J5G2C.)W*ToAlo.鏞ނ%1azY,?5;XKTɓsa'9ZSsܮO@;U;zMe3wM+DR{sj#VdؙLJ7ʋ3ʗ͈r[X~<DP]9`odHRHŁ y½F箋A:/r˕Zp>: ۗ1(՛t*Uͨ9 Ha3\F*&[)Q38;1)/9%gS( ﳓx[Y#H]]Tdw&xLqnηr4`I#6gEC:)]X\y)b锂*Д쵆/)vݑO* bP8A.قeP :< b 0a1 G 9dW OkL!9tuEs/q[/QnR=Do Ӫ-ky"9$CgfІC1F#cWm o SBl߉Hl257#qTHJk duz/ǀU'eIq il|0r{!PV/hny㔌)]Ω[Su}zb0m"hÙg`M{|jv/SQ"U RZV A!P  BxFro,{ ac9jL-$s*˛W:CuYg1vAtdz79;aK1}x Y_hs,/'p=ejSZe5fR$NVyiu7ʭVMu*ؼ ݿɥ2Kz7|C!oS'8 B`.Nub/}_@OX%WܥajaPhl,%mLnHI:u&"@J.QQvvX?/l[-gJ8*~ٜZGq2L!a9ac`œ|29yxck[-5HHq]RU>}U{X7lw:+?d;EV!4iHj[UM)PSvƗ:F=ITY<ͩ0nՊkHWfk9)Xt=&PɝE9Z(T3V姍.|_|n,9O-]$`7~TѺD(%L~d`tqb0B&b^$E.Ɲ 7I\⦙n"*R+]Ak'NL0RJ4P=0T QȦK$3dյ]`Mh#La]\NN/;ٕeTi,MAjLQ`kM M8tq)Q^tp4rdHqFdtimOT2 Z EI Ѳd1anq[$C]XW'8n^WR8@NJ|?GMS@9pV?CsgV{) e -R6Fr9ԸmB.`:^ roVdq)~$(UEE"Kft*FXuHjp8ieB7tFG2M[ @/K}‘"- 1mPz:slեPSI7%E4Д#AYh_\nTZ^w281R6fz9pfytnuፙHрi$#TɃIpsWQZ<bLR2t` a_')TbVxasGe+{ͯ(&_d.1EgDpԨ @lZOeP9p04,tǪ 5VFl2tVajBH}u|ꉞnOadyLnxNס^E~{p1 J(\G7RpW=ۙmpBnx$k0ۓP9'Т;+/PNoaaV5̴&)5R3H+@N3Y8}׺EUDPzzx9D|iʹhaw3t3opVP/:`{'#:Y&&0["ϧ^\ߜP.&e# B@n~J +۴u6K^ Yi"V[))|5d7lY09YPAJcpQix]"{B7RI͎XB^lVpn%%Udaˀ ]J/1fJ>OVcöXbA7pqJє2p:ecC*_Œ|E1:ű*`E.߉ +rKNPN#FFkƸJķ4 N{W(6ЀK2%XόSnR98 YVBZv:q]om bq0PNC= m%Zhz$ K] ϝ,}S,5(ÀʆF$N6Ю1ϑ@ii9q ߜueeZ5UDp%=9lt1]/FQln, 9Aml%v Sܩ)Wm&+EǮU9EeC2GQ2dyF ܑf'+KL;dŘ0">LV>0EM4) y%.),/N&RXv )~%.L%?5bh~T0,5ܮ,S- *)U d[E# 8Q_ȉ1|)%@_YNfp1h ![HȊ]IASb?'Cy!j!T 8LMjYO|c>Q 3:AhC+bMg֥K]<<+|{"G,zBVB@.8[t놥![d8ѮY 7Ctro6(/[ Zʖ P# Y2@ÆZK(`@>Uzls/qyJpG&COM2C\Ms3-SK%I\ FZa&Ok[Tļ-[l1Pb$9]%4 `ܯ("U(ab=lE (#mɦWcFyUFƻexxIsuoL3e~fHL7dp\@H|uvPXgM,H2!@ӯ`jE67٥['mZћ-JN-3doYg 6Or]*Blw߻j./]  ͖mYoRpM K s_U52 ʠ+򵂗Q_ݐm1۲کU`t u;]wS]0wd {˟{MdޭOAh:~κ\^,~= TdOMS Ԛ3ؕ 2 f[ {[b؏^# YK~TňQ%%e^t %6Nzo0P^%Z@gUF>e+%y3رCj@iM YLΈ >f56.b;,x~:PY>ALW2ȾҔiJ佖5;Ȉ# V#`bѯ K z9he//89qG H%O8c25Xv`]]O+7tP@_~8d$/R7uGΉ C-5APt)zF}.`ȱXM.xBRG)Mӑ3AIO [.ZQe)uk)wS />׷G~QHY>cV?&##c.nw$^p0㤪پ.1ʚXBcCiT%IMDVy3rx4D31Bspvۘd6E#X{ Wqx XԢƢo9Yc}=G]q(-5[p?n[w,kM@M .C^m$g.9b'e G)~cB ;Lg'/ݺ,=St*8?Fihae KU'P2K) ErKB\J}K+qwug g'Ch`A?3 ULfU 5sdU45ҽM<9vWcÊ )FrLVrIDص’zushVIObo%N}bן`bKtڒtJ I[]Շ̭7˕vwvgC4k9`zŊ Y\깴$0k[+Vu 4CNܣRMr)`a&*lW)f SC$?e^EeȢeC(A5S.f t?3 һu 0q-l')`Svʮ+7U0*15UB36u#;5Y5Y<3NqJjmn& R&3* J$;Vʔ&Dn42+,;Nļ<'[n9gN=aWT-dž+5FҴQɊVn-4+AF@}spi?0d.):%E +rf6ȚzlaY)2jxCLWfLVP b"$HέtYLUD1bnc? 8E^A":Nu -TگK4\*~ۑ% ͳHC?M`/)u )M>G\'#5ryM2"؏iCi5 V2PJ€6ȿ8QFfK~!ʛ؇n0}A8]i h  =kծ tZdݷa^%J `VGɕ0_5>)_fBf?)ժ:$w> Cw9UT BWwʂP uR'ڹӮI&YEɴxjz5-,VSOGd,RD Uf]]CKC-pZM1n9-@..P`T*!)nyz&kRVUEMYH#6G`-S ڌD&߭p L"G_?iiir[Q;.;ɭ{r˛+u?6~S:UE_k|ӊ,Ji:#Ǹ]3NzNuH`$f}|bcۨM)}b.,?K1pkD}uz(;NzǧS--`6әɅOFM |NJt"h-x:r2bc TsCX4T?:1MLܡJ Z,K7~[ܵg%ƽ`,XVnMگd!Xi?Wdنȧwn&:S/͵73 &Wׅ D)T C/g"%&gWLCJۨ=A,_; ҎP>ZQ^¦SmM;MwFY.g $n+Pꒈ=6Xߟ]5), ? oTҨ3OVeg$jY0?b=@=?8zx 4 W5pLا؛D]VD:!b-,%6 M%қLG_ys?øgOOS}*cenȋm8ϑKe<.VSe`/J[ϗh[t[/O#nZ~>ZZaER*szv -g+`iRhR'.pM&m_J (l^MCWQ m\8H_fg3nQ$筻4m,Yz0Q^h6[JE&x#ܶ";_ +Na4!_س7hhU/W _Ő3[&&( ) QH3b KqG[$HGz`]~qKNH70&N*5?n}ԻQDC j0 W(ˊRhp[ ]~Y4#}גÔt2@O0Ose@k ٬V 6ݞ24"BQ168@veA"A\LN|ORA{Q2ir v]v*@8 l0? %1!g8Òk\BjCllّ.*j͎Q@*ŭud\kQ/k#1J IDkvqZiv8sazt&M%M{nxW n`Wˮ8e3`;p𶵰_fBzOOb$ 5#|Gn1eCTkQ+hHhIt*N7_( H C\UYqUlL捪yh'?y\yoy fZLEPK2ܥjfMʅu"N"L"Om"Fů]:y: pW {"]OQL;ݸu!(~}:cxyݜs~u{M@VbtUCu0!8EP{ހ'끮ͧUė)Mo|6աjnmh#vHI*U"!P4@hp |POF[FxgиHD׺ux>ǝCwfy"wۺA>Y,}R}1 z}j2x x>)[s+||: ˣ?#9ջ-{{f _d|&b|.E{|.m?}皷LJÒ:c~"oD?!;]y*aKg£c rNQ[DH7(Mᘑ@SFaad"%$&VZ1"7:g:Տo-s4rhmP9n u ~+ r#r$s]t]!dȉ_Z McbFLH RthJo0 *c^ĻrlP- d^CG宩ML q46Diʾjlf¥B4F~~ Qkvl $2i[ѨZ-[o߲֡lH2Ȇ; c@olLl^jQ~yx0hqNp|{s$6ohFJ J`c9DG Bp1 gi0t.C3VfvlV P&R5>~'ZK%jjĒM'/B{?=#OY5g%CVRT\0OrgYp7l'l#hY @zcةf5 ,guMTddncAlˏUJ A@qeΣL|fI k"o>C/z56nGtQ;-P %7h67t&Tg=?*u=Ħ :jpͮ (/+Am=}dJY%h˪:6'>仢_G:=tt.U /r_եxy^f{ėi@cv)Z}_[IYL"QGa]VMDApSw1.IY"%ȍN*K%FyLsNzI]E=l 3${*\:V&|\޵biO XS"O5n- Vsm0LX5m}a2QlwxS}}E9l0ЬCf\Jy_\΃tS o _,-Fǯg.yW i[|DNZK!7d]U>Qt6h,u Ӝlf HǦ_Q RѭmW2M3VI]rEnxuXjۿy7Tnf^;yB:% rBsoqo!GZc" 2{)P7ϭ_/XNb^[qS悥ױH# ͵ -pz`+ψ2>]OFQo24Ύ.;2< disَl@> Wim?5.>jYxax ʁ9ȽQ`qbM7GN쫉Tw-8g?q H2\ZL VJ 1PU ?0F;ᗡǛ[0Vdc壷1 ؇~hO:sD"&*] sb`wbX=쏗cÛ0)L^ds4T0!U t,Cr(h+@.d_(㪱mJ^^ϋhfK[r߾qciEJv(+JH͸\KƠЋ8!Owۅہ<2R(k5ֳM3W%-֋ߦ|u7_S֠fRN8,g&V4ҝDQv[(Xg*π/Ɓ+3O?H1111111 11(bt`D EB1$H1rARt&ET(FY5 d^hGVERaB48V.d /.oIjqic:0y@X|7=8%pnw4=I?&}d:ǻ3q%&IVj_rPv:_iq2q(G￯ORS1V4Nr9)( ʾw.j6SVOS//q\(Nxɔp?r8uCcRaB佭t̊^ű0Xee<۰\%irwh,p8֎ܩۡ\,@Ԩ\1ƐI#42WQAaL#fKTSZ蘑( #I!\FKf.pPlށ-#<e IM\!XU$NR\U~ΡA]3ob;sn#ј]^BQe;qcn"5bI_N8%^S$n" f@Pl*n>Q2frA#+1fM]$5*Qi,qPq#ը/t _`ml0 uZXՇ;Weԝ l"^S׈-3ov\kMTGa9qj _X. [ rMF7 ޓ f$]Cv@KZ LMC);b&C9(uCBgg Dn T䇿{w=N'L3tXkgڢYy}u;X^ۃ.$ rbT+vE8gK78e2gRgk=w蔵Xn?.Yc6aG7B7@9Wcm,yc|_\sPHwp`ї^ ptִXbؔ嗖@'xMe {Vk.+,oh4d0gb  C"d0cM#Z*hI sJ!}3}q7BȢLި͑v*Sꐊj zFѿx6;(eMzoQF(ΗK!Qu5hrmX;Ne͕r,fU M<͑;NNu %dHʧQ^ W:^CH=3i ~G3sa+ޡU{,;$٣>ՎAϧgTHW糳EeٕX9~pmeNDCߨը=;mMN5;ojW$ *-51iݽ33-jΛf T6:'S1)':]+5vƏ+4k<ÙV٩1,maRTI3oZ(}ѹoZ;ʼnRHel[^[KQ[׌~?.-7l/TDŽy C7U=@G 72p{ `dO*/B` -{kݨNtiE"yUЩ6g5mq!L8>AhA0}z2.WXX\N ֱLKro6x^3o&'P ܮ]e١f\'rj{bdO>Hp*ccOFT^~%P|9^>@kC>34EA-Eÿn}m_O5/jS=} m{JѓrH|6G;+Š%xɼJM7ɛ[hDȔi a ? 0}9=xHv/˩U!)Vb7pz 2PdN'jtjtbzpnڣR ;2wG 3o\Z<8(wgp9lWЃ;e(u,)­eE6v#zTCʰ.Cǃ Xao;.̜*coK=% 0'HC#<X{)S n)o]S-)mwhDRt逸5<9P :p ېﶰKwwSWNg( PwfKKPwpWfqɛ?vfkL0  "Pb;JgԷR %P#:V={E/UAGWgb/!_ZXЈd(ZPi(YcS(16Cl5B:{zFa31O(;;#[rF}CHat¡_ReŒ_m!) 9MU]ίp,"*.SoL O];㌄sA=WF]*!J/:*J]Yң -`YİdAR|uG|ޔ2|[=|\..~_'h?q>45l4 ` =|&qXzp2#czXMŬR8l,:tD" %xbk`H^\9n<3 G|V6C HےS2舌 F Rfyﶁ({ KRٹGxZbaWaqsIC=R!7?T-khaYDZR9OsZ xEܭb (0ҧE Z䥅 !I\O}8(|&DJH) zaDH6~_p߿hӭl@‘ZS drGO5<R@K g]bPB XHqΆ!]hfcXD%ƫ!]`b\0"o-;wa3}^dP"B@Ůi>YedI:#z|sdZmz,UaIT\MSL[= ;(X2ڃ0]h+Ii0Ő-!Y: p: 8B W,zH#D.-8TU97!Ҽ@!r_h ^P'Kx;P<LH$Ἑ6尜ĆIɂtSK&.=jXbI7 ʼU! b;@R]1^qW5^ho=(<~4dT.vI Q2Qm=adR)Ѷƒ$d%Nxl$#*Epgj3s#92yHFa; ;"u>k-X5,Q!dlYl T*:7q|ı!&5{kjQqFRq>Ho]yK%Tb4Unr(+09j52orG(q9/n롫<4S#PN,Hr-~),XG"!G8||[}c|` -,dqm*IYɍ4idxxSwyNhj̏mjWrJ[BU1|.$x5W?±f&> auc+8Eie$ϜP))>G %O[n▸s!Йs-I/PlGԺb)F@dtyv/R'HW< xn;.>&V^VZ>(gq+י`CCB`yӘ(,gu D_vN|4mA"bQ(?l]b\5}L}ipUh3v÷ P~|]y`HWlDlx.O9']ys2!HQǥmrw0/̰O2{ǵ`r?LGrάT:*^$g}z{b7v V+?ĎnŎڲX<ꞍM怰,Ѱ )H/PBQ:S{%s(qP(,>ľo-")w4 nLܽ ,RC KT!-]{= KF!t#=UɓqR%1rRPfr 406ːAMGqqМΖkbbPq9g"Xn#!BIu2hR xH}0`Pm` 7]o0Fx?_чD1 HȨ`5E9 2ҋ(BtuwwEÛ:$z!<|HR O2fb8EZߴ_zrd%u%P}خl,ef]kln\zru5 }a4ANY[rT9_wr-FSSOg9/s`޴r0:ـPEj0PI׊i T!zs|6)TEiޛݴH[ ,џG `'/Gǐr(Add/> (á6`98J"W0H B tT$!th$^QYp/A-y>`BN] $aE*߀ʱ_ڎ$W`\#CS@QR CvM PMMg@$ K;pi{{k:+OK )-.U\( MĀ')ž|Rx" ?-{\kcs:]t:QҨ]B=(na`4s{!{`yvC;x4$ ;o76!`2|Fa}s!xDQ"{2{â19k|q bhO(WO' Wo-8nDxE9=͛Vv7' خ42YmKa,EF %/m㖌6m%T k珊y̵˲RY2˩俹m1/J"gf BdR%Z2E+2 AWd3>M"H#Zc9,z GP p I f^(qs*7Z#X{QH%fPj# [j\, we,?Uu*z~+> uk$)_ƖO+<$X :f{\>쿉%>J sXp1lJ0n:E`[=A|G݊+ n^/hGKH ϔ] Q1)ʬ)rjE0(.`H,Դqt$Sj9FHYS0ast|޼x߾䊠GQXAD쟠/0, ױcWk*ohm[Z]Tc@ĕNWSU+.-Tv+dVk7"C~jĻUxֵP{ la~lXQӐvRLAKla9V/SǨPvI΄mm&qI?o.rha^Nez3bT|g#H?7;;-KH:RVn0Wt' ]-J&\$w=PU6NqVQw o [SB//Vk,$&RiunmJSC°LpiµȨbujDyC!fhbڤܪiX~\dSf_q]n,)v3l0$ٔGd`HzVȋ($~ap<Ǥ\kp}fiԣkW8LZV@X{\X#\q\i`CZi&_/?ypJcHȣ6%UeZs1a,=Ӆ]s|LؒV:2BLPnN5Lx` =jنB(jTl}3%cN~.+8&6k,=A9~k\wr2c\]]EFno| #Jm=8F 1 ddD5lWSHrwwDë%7;SR\%Zr7Tx E7Eկ,d.gҖH$Gm`һ!J̔_poݽbj1$ͮ!:YER:v}711]_Ү9Dg92&rbG*U/jL*bSZFEf.I sG 7#d6أ|jyE8)w3qr&V7Gͮ(&bC4_~پ+i!Cprh$JAyN_ݤvLH|*A`WOv]RTC&1θ ڬOq〨 9Qv 8YgtD\YYQ!)EwH2D(7?\cqS~6ѥYvvx WF*#./C8&7Y;{̼5,ࡥr֠gUwH%3^hV9Nj*g {A@=--Q/Q1R?!dV哏L&ÏqC4Gm\jV.ڱwTvX0:I GllDRg S☒q~puyձ"s骬D&l(@$?ܭefgH,Cܙ@ R_oJAnCBBo%SC" ̌//'‰L7?NH% V2n,_I?3Ix㈜sz`&';K۷S2^AۓY)oa*7C\u!ox!-gH,g;eU&UrB *c(a7mwYҠT&{1>sPGzVQ!ϩPy "N)d*TQK"eU¼U.]/ " 臆@ܵ9/&'};vGjGjj;j{*;@S7XJ~X5L;ꅾ8H07)Tp";hn}X|5i l}.9LmX{kտ2dcԈ5! ^P Rj/@F XPAŐ/.W#S˹8]aQzU`^,$۪RNib?.QRCYaԫߎi0jD%LG렛˖Z+og{,ZQׯFjZvr#՘z}y݈U§ǤQ܌ _S05ւf?-d\̼-stpLz!La!_N"=:/G}⏉3`KA4,# >#&}eT S0z&C9|}Զ: k~ ct G<#Ԟb S<+ĩ@@|l|nyqearh߳ Y71a>B<$ߕa[\\{]^Ҽt T| ny`{'ȚM`:Wl砨tXz45]y9kʘg|uǺY5/\?HzPy;Dz`>W|;SQ;>[I׫8} ónQ? 1tw(QgKn@{4/Xm-ZF3|qG%Q ,^] AG+A͜c8؄v/GO+fWF*6đs6ӯE:l yx}+Lc jmsZR/y5 Z0E2TQilO0=X㮝"^N`5|`"Ey*ܸ.cZX{3ԈBlԴWf:)g9P`w삔s' ?5n0PWzXc\ʾMv^Sl\4x&Pc=ءx1gxU3Y ҫ$'n*OId֌vk9։Ugz?r\L{&z* v1~Ac`QĿh'X**@w~ëX6eуW[$d=hA4fJ #@4#)aVe'xv##Jw=xd'4w/<ͅȖycIR6eQcF?K5+?,\$-Tk`*^~_Ry)4eŔ*G EDROjG6nW 3i%ejMno]t] ۡhh~M9ߡlmol49<0^4q'n iƒ~)fI 4L;+ҫN.Uai5E2ahE_L.^!-q@&fW^-?ue+bQT^7_xc`Ądd```5^b/g,̃6#L{!\cg%g%ff%dd%ee%`@t)51MR!:AZ4h6p6whϏ?+n= ȳBfq_"sy%u#|O zc} LۆrK:<%z?d-mr mTxGZW.gn:)Ց+_]}Vρhܚn}xK?=?t1:? MCZAe,6!\uݓy3w{uziv۳ٹ)k4o/3W^n1A[vQ}7:KHI(ۄA>_5So cCcI Ԗx~/\]AovqC+ FO}”8+f) ^'Sѵ,=Y]TWpGU=DUzIj9f>xQxT2oer>ӚFH3r^dBD3۬˺(luFy~dƂ~&U¹& 3nϪrzà S#zF>y}}x4Xbh?24 -,xO>%VQ)Z$ )(iwo ;=i3dp<)))8ML h +k*ӎ9G"E2NFMg|(Nd)1R"H1"nkh#aiUeӈgu & ol`oR?^`9t 7mCMI  ʤfU]jB8 4pthR'5k'̠ЈC|z {өql¸L}޷MW&M'](ZF#~Ҫ W-e{^9>׬LCҚ,H1#gH;0>*@0EX;X@Ten(|*)`gA॥!D`+w5\TY,ddiRƥ9*a.FfH$@²Y ؂:)ZcDN~;}O8(b)qc+n(CFX=˿F[XIͰ fe Kƀ'7E@ 'JIaF#0nq6M4sԇ]U7R?5@,h'RqgS@Lh_pA eoocӬHAռQcJz o^O0׌PoM–I. ,>/畯P $vѓdj^]%RMr8RkQRNe=bFY58!>{-&5=</<_[@gIO }P?96)Sq[G{+ɝߚ4>;uk˱2t?sf32 2i`_?`6 22Ǯ"Ȩ|0G¥ F7'<؈):t)sߩ~G\ > !oy2UVئ4zSH#镀S~T*XGG@!m ")bX1&9c-,W!o=h4tB岛R52gTKą,3*̮Zlo 3)Wr0x` fQ3 x|tMC~Ek-J+N(6G)p ?3ȁqoK?Uȶb_p k"P{hoW}WXl:'@eK 3`SYL^SGtv;uD`=& [JE) wY >D[eszk۝TGNP +-bPhUHVY1`HP @Z.Oںe7)N[y&G|F kV؅m$|,f.0†1b!; 'zzX6ɹea9ϴ* {H Zp(-n%;P!Ph`G&Ý>hyA]q[EA_ϲʲ*>o"ƀ [|r|CVAW#37O?p?{>o8Mum{|{!% F_y:c@hO/DysE;G؄C{֬$tQv!ޙ8w56b,O~E.^%~b2NZj_U|*u9^iX |u[x&=4U'xE'!'Q.+G#H⇊an2@<"!yL$'eMODˡkh X]cB &rbQ}+ Xx!08 zmp; BoE6"SL*/biy9 C hKFs׸a|}/y j z rR?bbq)Y3~aҦ[ZҊar_݅|?٪3c c?ܚ$,gO HyQukl{s jȩ*&xV>Fz~tXA0אIJh6TRe=d[W+^{G.ů1iםPUh)F* C.*WoCN[l$QU` }aFcS)}aּ\#([#^\eT SP  R  `H+ | nDA]m+ cr_)R#ZoEĔwFa|/1Ѐg4K'HjĪA{f+*q=FoyqZ.p!YOEЪMA}m)%m“#e$6iM2ۣ7þk? KH2^?;2';_ Hv[l% d$0M20eb.#N`,*H-kG[,ZZVjqgb̚?VCNĖ@1A x[ j;چ/4 | Crrhn jה SSxOӖ;D%C 3[@W^to PeH$sHg)f-tg]č xcVߕ?Sr/SXP< ï1"߄B M?c/q*Sj~\>4366Je ϊjQnrvazhc`~yNbp06k&XZ=\q677X&/4]iV=3]*FSI%Z\1ei{1#h+ej] B:pRipG&A( #{B/*9TMA A((hFٝ `3!B^$9 OvecaԵ-a[Xxg_]E{H iȄRg[P񂗴;a;M" 4H=j?Qo2a=i#Dp¸QoDBݰ'. ڽ<ᤃ@ $:! ` "m-ܓANJ"e0Ak MbYD)6X{})zۚK EF=CNDOb/󓿻'Gş F,eqݔd)zMRlqmL\.fW :,hW?O{H׳6RiU"sFJ,0[R WG.݆dhU$Ag:%XJIJfU@1lq)nEia%5EmQ57?4S gNAjɼƦ-MD *,gj\kY#{W 0V2Ԧ\E,Υ[i\+빉SU,Wx+N|o'u xjpV#yہ?JN77~+r>:Y *#FL"N)S.4n{C!CRa>аH>!({S0}0aE 6|| Fj!$EbIJJF<#E&G;I((ؽ"Z/&QQk}f>YOzߜH,v!c{+t(FO,{`Fj;Jл %sR_Pҽݟj"VM@3F}B"A<Ρ3C8+cíw\p%%Za;ĺNaeyOkfF7D7`F1Zu!:_ί | qdBxR7n)-L$vzӪBKMAMnO81\fǐ-G &^ ^G}]x$/^l-|7Cw_hT[k+?f~y~<4DOAޫ?Q5_w2*GIoY%S$B GADzEcֻr•Z=+H+b;ÀpP)l4>A\:+%6{?7i;2j,qFcjA b|D[?aWc߰27'aQmmTNP^ĺw'c b&4wvre!pKNV$lA4IH̭mKler[,2̶>%ֈ%U\M&:&'2|>d 0y)g0oKIFn`rv1n1}BbR 廛"t>`3۱g|g7Eu7E1e,.t6r' nr\yg}pl6g GZd!N15$YmB=<&ȿ_[OeюIO, ~Bc2 #7-Nwt-x/-ۿ??i3҉XM½DkJ]2:ElKH=oxHE/s}AV?W~o.>:;}o-36χ$ܠW2/Q/l]}5=q=` SaJq]QU&88!H|\79]`g W!aD ds4{CdPqiGĥz Ef{l.|^q,>mu7% 1ݏgշGdcM-xuo@4X|Z{*y*|*FtmD0fN:Uߵۺ||yBt nIe94T*ƔpM4Rj^JVk) WL`H\06j)DͤGML`0~ْbL4b2p׌s_ ̸v88r% &jẅT8BڡIɒ 2rwu|xV骻FLsyep!|M6>0 ԯ_2t( ,A6ƴfEt#ٓYhH wrST:Msz { s6:MxD6ɾ)_pEēYi3*e^YP\5#eԊ2H(DE53N )cvpWAMTOJw;$| dh76 ‘;2gb4BBPOVyߨ[A N>11PHB!;5 _?lH7:[F~7u>;g#'.O-7#~M.^' ;i,dV@~f@}7TJ@"RVEo( @.HIo^8 ]nJ5k]Ȝ1&d{QN >k}JUkWĶhja]ȂFm9 M%Z] Nϳ|dXy)n .s84X`@ heL4z}Xμ )G*/.b;mX@ؐUyx›⁎ ̨^@7)?vj!>XSd^k] OlߏFdfza}ak; `xY + ˏ.J? Ou#[& W^law$4]шP].]?XjzYꞎ,-ȍb{nmm< gb`5 _7ދБNlda"9ٻ5#B2wH/# X"F=6a3p5`N OdkD; 6/L-ə@?8?@?䝼"p(i4%/A9} U>]3jiXP}]'=]W00̢a5+4,;8FR@}|G]u`kRh.p7\U㈉-Bp)"8NΠʂavN-#-ؓF-- Y6i)֭66F/;QzȾ/,;xF@3XebxCf(by\Q%0on[ L@J+ b@l$փ,Q>lAiNloD\%&TX zH\GQZ#-[$ f3Bai*!%,{I$`H wSgV@em m; YP^lQyֲYjaivr͆-dbA J]Y&}T'C")$!M Ƃ~XpHY1}P4f w!şn)C񀻐w+@=QEth "S.M?{Q<~Dl- {<"g5!'$+ُ#,#Y4>ڒ_e[%B].ܑ{r1_GipO^5e{ddh,ec^05aqa!q׼Pxlntڏ$0u^{XpZW}H#òncR~tK֑M,m:JSutVo/M9{>՘Ak)5LNiN8ƻ/TU/zmUz !pLR*PXc*'#,ZJwZ3h5rgV`{SpP"̀n6 BjP&!P;ˉC:*B jO#JrefHW ۷ LϩL5 `V"Պn"<`bHؗ4C8ݶVqP/eMK$+DZ9?=JL \kkd{aCf)JZB~=rWb^֐eduɶ8.Go4WV|-5]ʥ74~z[`Ԝk?]{~,1PGʚjG?7_0;XyC/Be:rWX {j1f {Jpm&8R˪bX^GyGTu+q< {Bf9Lshi=G Ee7fM|(R-Q+&@v^hm %.$gi d)iV|ld#iɴ(mxBF0Љ](-1Nz{ ]3(p!2 DU_;l1tvDwOUJ#F0ђxlalN?KvIW@%% &$|'AJtdviY,\;BQI|<973x{K~Y.EMGcE!7ܴHL))xD?yDv,=h(,~0@Tp< ԝ)#Zz8Y|{Ii՜S(i˗|^V'}v;*ŔG8|+>6)G&gK&5;I|UP.F!P.{+zIגD+ &d͈<>؉\`6Nh/|Hhi Õ65܍fg%Px2 e rdT 6%2|z YDZϙw8C3ӥ)r-k珫i?g`m:n6p:O ة2'K1R2Ӧ".t _la-G-<8ؿ Lcҫ8]խwR2g(TaSu{=,H_{/jwbEr A )̭(=.*IM4/n'!Y҄ZyR甖@*XTx*+Cgg =Og g{rׁ|*jU C8GFI ~fgFèQI`ב..x uCnϒL}a4g #Ё RaQ I,TJ$-/5s(SM"XI)TE11S: G8_~Ri0g0e@L?'s+_ET+s8Np1 Z؄I 7A] N#nnA}5ͽ=ܔn*/Elb tvwPg7~7IdHbA8-LG7O6B[WvHm{fi8S{ȝƞ-kj{kt&d MX$"3)Jȸ3s=40>h3+Zg E?%fF2B֒ixf>4ɝm1t]>BN ղ!P;Skx=r9C>n'=GYOUOggo<e`+ 0MtҘOY\`Rl(9_d(s ;Ҟ:pz mi`m|/jd+^>pPip5_zӔ:CE)_?8J:Ÿ p|%;FõBY2eԥJ䖼tHE+SVi:D:i5eK6y8zKg`\5GUYHa-RL<%rO&Z{ҽWVˏo0 u&1~KDcq  Of% ײ)0 iSh: 16$\4e$l0UP,p<dsp;.Lf+?ͩYHiZ45GT/o"eZ9aOih@`@ C01fXOEq)v蔁 ^lo'~]<nP$)aBJyd2m Jڝ ?I?QB_)[ ]֪(J\>scn^`0}̪_C6\؁)E`]uuwxGwp5_cX{[KO>E0Z X 4̱CM\gÉm pޜd50v2,F)|~]Ǹ{rgZZ)QHIDEű~;GPϚhBF:Cpt-fw pEB)F1@}'HF;W:%^4 ڕc!^D^7o$lvpAvyn6r8~H{8ĎF(Ƭ:sT;^p} m&0YZP܎o֧83;0OaMvx NL{i'h„4uEv`I? =[.S4zd.S45wf#&ܨz0JF| 0@N@hƬZM`y5jhnق@a2Hp[Ҽ)Au5`^j݂Kz>6XS~*p$B$d>6^6ێ8%\c]"kۡp!1A r}"A@mڙn;Pv=e)O5pJnkvR#5 K×Reþ!z_^'ϩ/|bߒ)/ߚ߼o&:t׏ `R=PCg no.VcӲ ^ʦ @҆Iъ8|c:y~Qp;\;6dZŨ=6l FG a_={YmCsz1c?=+?剿&Yt9NOlV9 O7Dm6Wa4A,6lSQUQ~I+2?6|Ĵ(XOc`I?m=\X-o(1f^jsl,3TEPB컫Su0+KTaK[D 7<`q "d'lBS9 Sdlm K\`=NTKv PP )1( BZ(/؋YS@AC7788NA\ 0:D dƱ'et$> `AجU::qCbC\f$rbN\f$2lDF\ ЃF0yDVN00,&HT6' Lp8: NEFu Xn)RL_: c3OLfnYC I*e)KY GIjeg LfK̉ez AvM"W~zBYlsYռ4J7ZNVz:a?:+J1(_@UDg S+UToD 2ȳD"u"Q#EU'ܚ#, &ѠPg1DN(4b2ppܲSߤl|Af5ԢsQ.mV6|1@RIs|}@g~};J5 ߬Շ8sID9Z$Ʉq=m"͖̀}Mţ +HTA TY3Wtj9Kn%(b[up]%^\_lSE){}8eIRhY$ dnJZCcAX:@*V-+, ]jNolW>@ n(F3AqafyXlN"G*('h3݁ڍx/QNם$n9L޲||eCCS?;.Uo.}gZqj׹^wֳN<q鷦0w֧_eܑO:i3~o( 5f*7\4˕'ߧ+>U ߿r(_;/x0b+8Z+u cp*( 꺮⦐xWC0*>No%# ]NYORܘ;PUQv!ɓ"ICV~{>#t1dev_~=>!L3=!"B a{[jB7'e誳:&&V-a;G 7fp4k/G'n5{tqOήfʭ~VEMFH<>nijW,U|X!]Pȁݳ U񇪓hᚪԃiU%cE6=΢T{!ztnRQp^:'h;ӒP"*{0 j2V0\kiKaAƠb/9iHZVZ"{ҽVק꫻5ZcBuδ_r>3'RvݯNS{OB>\jU20 ֚ #> cm;pEjAx~Lu؈WMxhG=ߢWFX8U?~ˆ|G]Gvb,ki D @=r"8Qvo-.T-T*Lg‡Uul[:oFΛ|cInj;'L#c%2I $^AhQNĝ!*:.O;J$ÌR}cb;hGpma@GXMxC61=6^NBT?,o`[;aLBpmB1O#X[>[z"gh~ >iуuX(%X/Ӓ@˖dV1K9{ SQu]L^a#Kx? 3)m/ay4ڿYRٯpdGSPBUQ/NZPpPbyN—%FCQ Ә6Eʞavd#(oF (1clU\G2^LpzJX=PU^ۑ)Gن\FSe˰ԛX4PG>pSƙY)*7XH0߸TSL64f@@Ge9f)hY$0{w)y<8ߧwD<<`-WŁ֥E5EbRr |[>>I -kzİ>휌i;= bEe}n|}_j`\07yZ27E}dwYПlթ%52e#%ae]&Ŏx_XY15,Jx9v.,ٹ:ir5pK\iV9嗴5CMR5tF{mIa:}͡kvȖ<]CM_e- 91>S]1#>9~اWl4e0"‡%$>9,CM6˴\\*evRlYw%dZ Hm"%% xBdeFuI>k֗'$rӤo.(xoŪr*>@wKH բ 3Z+Jl-f}" d1 Gj]$Ǽ3yę2˶x5ў3-ɁNeͱx%]ZV!'P ]0npOHߺdƷKVaS(ʳVtN6KYr|&Gf9~T"nx4LBuvI:R;7M%)} d u8Xxcljg|Yw=V%* ޭ|@U%+ITk ϝOή/lgGuҟ8-,K̓|jX+cޚ n86)BWYr9UBALʜA!?C]5 7I<E|FJ\VUSq3J tũKP*0AbryUZ!DNDRbrNvD07 ޅ'fV?aqd9jͼ`:0=pG2𣊠{>dܓ  ā_ ?xGթx!Q`0q5Ne_c3>yȲ# Yo(sp$~ UYqhռީ t('Vz=A>)?ƞ&YWZ"(E3B]ByjksVyiWCL]M_y$]}Ʒ;d9/_",c{m#^ %<]N*cNkOpPziN1T$ī5bSz&c Km3tZѣݤ_.bYCp=QnHa޾;9|/.+gdgʒĿݸ 0,H|{BH]PhstNfa<&9,afL H\k\AJ",5XS#F1 {E:ʜ P4j>@/s?j! ͮWvPͤ[ +!xhZuQ<6Ġbv,ho%1) &H]Yuy'o+V}}sMF6\Pk86w'oKjg$I{rjxX*ֈKFL`&!fO9TU3=o 8&6,zL-bNTEQ S+?w{O$7odߐHkЁWIя2џX_q+.Ԏ3 p'!&t V'Sts"?u 龹NVz0\ίl% Za#dDf7 f LzsgD!rlex7}}2a昅X ഇ$<5e<7C^M*8gn_(qpk~dht>to4]H}<3- x 'nX{ז~f߸IZ%*&.^ȩIUiR3Xh?ߨ ?gV6W]־1fQo Lc{j?8Y<[,ICaqA#o- <-Z('9:f4 PZpBrz=s:rvޡ+C- a S2OF m1Y=+,BZ.98W ͨﰻ+ĴOgi3eYsjWlQ;~9w%.%_ pj11/>ڪ?G/ގ萺IrY~]M?3ƺ\8s^ASl9`p+ ^Pڇ1pvCj{OsAsoAnP;NӮ7a^gq0_iJaޱe=iX{N v\ou01h\<'obN9)bb4Ve,5c|њ/8,oI^ϴîE<1E2U۵Ws $yrO]%՗t?{3LJyeY4#'v &~C?1 I(NYaUVق#iZUx&)S=+ϓ*`JT*` }áF/ůΌc-66AL 0Έ.Nanɋ'Eaۧ '$$, '$޳c0&,wD>#&t! =z;)̹{l Ljrp@GR7J#D=қ q9V3~+(q-(!V~V$gQ#bB/bw0KhR70˝;Σ;h? b)~Zûv?!BPQzT!aК!q]Hؚ2Gtσ r -&.קAkO:X=wN?X1b{$T#əM+?GPбyR!o*?On')haUZg˞~W,*TO 8\ $n]N҈Y`uZ}O:ӄ#Ң/'g&֯*8Q\Bo-R &yEv`x\cBۋggO9~>fPnCgx\kJ-.]#q} L>tLzsV70Q4PXmmEoF?vo܉ tȜ.fɼZϸcGs8arX11Gӿ:,?r?e82`:o(r ENO4w1 \P_Z6C7 |\)\P T3 2\.G$arJ_D"9fNH\ҋYě׎wߋH**C>OcP4qR47,s sEBȨ8ա6^ n45Ev˗3m Ѿ[VȀOWXmY&O[#gV,%Nt,uZKցևAY+{3{Vɓ=rX|F杞eM=*w] {AsϹEwZGfաMM^ }5az.2s5HzܘDw,ၡ"c[dylgI#?(mhaP ` ^R;]/5t֎7p)YzDeTdJ bV8ǸbYa['QD+'fb"Ŝ1TUE{aMe5ZÑ)b (K(ĮNYB:TVdجp%}ա*X:1>~(~>YuCMaM1 3 7y11~ J'YҠh|_xhfH 6V7czH&Y[xQ]]Q,/ (>!Pw urkғF`FmrJ!z /lQ({3U0(BBEhi=C3BÑ?ϊ+~DIAgɁ"/{>,As̜3hyw>,29c%0k 99DC[5;]h䫳痭~Gcp(SKGGyg|35?NYzmnm/v _=фpD =' 3ζRr}9sѣu1OQ@Y-:3T@Luc#gj\hS)uE- r.{v7c8&>LLLaxSv3ʿ}z ^/`$`b,]dx2JȹCN 8`uG?AuXsϻErNdȉbpYu[%CCtVح냖8p5Vy"v90iMn77ڠ%XE}悮ddH|F, A~cJ[ RpfS2xU:)=-qyx%^9ռzOUZR[q%]ѽ]ʒIeUHU #$cV]k㤀bjO `9fYE*o+ dHx|Ex% ݱxeܒR)e`R~d/ +֎+Zq"?I_++hR:{;΁az}G\vRMJ SRf|SO%9YN6GކLcMu\o%jZ\am[(߽K⊽uZ?1!SIB)JE[*N*;o ѽ5̢},_pSp}6A!&7(U_Z"`߄PѼ9w߅Jq"lYTb (PX) j aGdM!`C/+^hFܵm*(|l沼u֍$~* mF 94$\ ۿHG3}pN# P*?%gq@ Au>Y*ڍ6~m)eFPiCi NI%b}2d;PlX5EvY+P`@Èi`|bFel!, 9mZ ,eTܚw:\Q߾Rb:/ͥ`Z-YL2s"[#:#d ޶p̓xL Gd,+ 2M g ld3mh.Ct@6MheJ wuNJLh3ɛbτLh1~P^Tt'CѣiAAjԃE"ۢ-"ס,KTdgmQS H{kvm3ť,A`Wa,P0쨘1wx˷))RthDņi f>nh|?|淄NM5y D'TK# ĎKoomFa#1ɳ*-[¼mAGؚ+|TLX'*St=&e\( BA##Mq}NdI/uUDsV]xD!:SUGdٞ`q߃5TgxRoA,UγFS])C=/'3rKit`:M @U739trMb̑5kLyٛ\p\FmDBm6+I嘜%,lKٻhfIKSFoZqg)Bw3-f[lC|~}`$s VH/_q ur½hħfYʯ(6dˆ;Y?8s^kSS`]""C7oiڦHu%Lqn 4x>5#ed:a i>ӱbMTί\cwXqNA.(:'d2{tAGuoCOl.?}ϭR"|b$+~IiТ)hHZM6L~GZ*s)D:s}#=5y؛e+znyK3wh2cvo㢥T#Z!iu4 "gޘ1WhtQɉެp4/,$KZB1q_S,VTP>7̖e舄sgk@r$IeAMZ窴4)Ekv\KvѼ;?vM J)6EoaIFb1892=~[^Njc7u+|cVU^^ ^0VUBՈ$AV\QBۦd4vϐSF)&ʽxygmN?-/}#]C} y3#p *Il/٬ ?MX$(۶+><+e%N#!ِ1 B8=ݏnÃig"^ ͢<)/mfaO(Zً͟T:q'cK-*S(Ίd KH %Z ̺jŢeӻ29!H{hI6j )Xqf!*`fii[up{`L&D#wxT.{5~'~6'fkH'5~c&Hh`Ƙ(OY6΍3%?TĆ36a0P]T\7a :_6HWHTMIFmˍSOdU,|#Zc2Zƥ3c&h83mJBK7:P ?LQ@Ao{vSi쿥0gnmgTͳqR %\Ro֔HL %rWTh`91%myHZcƭ<8f|0úϐiJ)>3]f-czn:mskzNMc~7nBHb"!2[AE5}` !{"?VAxi@ak;ŘUd)1EiͱUa_dmһl?n=Y8yZ{5-fA4A7S>y5YdgkXC*xdX(}З娼FPǫmeJsv+?wI,E*tМڳƞMˉ9g!av5 S)pJۇXCi'F屏u::qM!<WO[ҧzܸu]V< ][}7p=Xw 9 ت4nISQ=T=u51qY zV)tܔHayr_~MĢ=&4LH$qX>pE& ;IA:Rī]\(6}*yAݞ&eZz^z.kr OBW sXj"Lk:,f9Qh4YS`)t144S/sX _"a| 'MdՉ M} kzZȝw +ZP $14'T% kI[֤'|1-ʎ1rC HrYHdYVgXVD]E}v Yq-$J6 |`+bCBA (Ŧ;*Iw $IB6p(S;tcx}V}e&9l̃Ov45aYat ^V+Q0PܳSj44 #'4Y$SsC" ~)bf˛!hcUnjlϑ6+|fBPu'zegF%ʁWX>sg_m< 8#s vJE43JFgandE܉)7baD b<W}l:UA du[qw)*눠PЂ2kE`S6*[.mN֎8{(ZG;qYdR;|Ѻ)Gz//2M6ul:,bE\`$:8RnM xg"[[q԰~y" d*B:L63)zu3!%a\s!'dXq5NlV_ îJfRUUVm9>Kn&[Uȱi£ldކaH#+ħDe+D֘*hĬ򠩴PeYh9 A,?1 yUR{k˖M93/ϊʐ;z@$qqNgjI& cMB6yhl71EruJu-f@EO;@ж1a vgl[fyU˲ڕfy WhiZ&`ӂċD?%"K-W^ җHRT)Ǿ1 `,0h@f[w uuH%0fPWAx7F9r*S4v*yTJɫT˸'&3"Gp8ZA{vQLKH'LԀAAf8it94|4[F{R,lSlS:Wf$1g $Wͻ`<ac;]`tNc8( q tIF,!{FݐyKnԩw]:q9u#> @Z9oc5$IN6a0VY{@)oZ }NEAJ {/BCrFo] b {Р $yDe|rR*wϓ r/A?\ ?_IQ9@}kALC J3*MҖXu6jYnN658f9x Mz} )n3+&B5T}uP2Pą0 ;}QR:ѥLqrϕMwcolllĶmv͓ضm۶{{jͷLwSr5YWC-|Nzr¿1ܿ 25 'մr%22 @MXVS v..Y~>vђ ԧߢXB@ӂ:VeRɹ!E{IK;v2_z|}(Y`ne ~fZq]ȊXb&siz+I z6KKf0}NY1iS jUԙ+#RdECv^}: 1zQLh$A9n4)&NNfˣ,62V/t2ҧż\/ѭ]z𭤋-%zn{)w(.{4$rC3Du TXz$RH!Ih,"f]|fe om1Edl*/P}h:fnMl}?Y%} H>2. tB)lZu-:e(~,Ij{XS}"ZJ˭Yp@R|mnՅ d5)Jy'׶#z7'en#b> 5bdBJ*!~ULsm3#avDQx_$MT&s :HrI0W3zDz/h9FA2q]0s]P$^R_@+P-o2|^gJz_9NJ[XFSCwQ;qfTsE&y3q#?} Z_ux+m&ҜykO!Щ)p>F&ƹ4!uRT Aa)І[U8 0: Lfg Z2ѱv~ bP_K&/c_P6]ЉAǞÔc>vY*;#o@%ڱܙFe/Jk@8V^ՠ*C&uqʹ]݄x 5iz )P2a ѧB{l[eWv0 C{&j  ^`($)S- m]F#_(hAV+Ī(yZވ\03Rč-U:zpu~A%Dޖށ.Nt [V/򫼙+2QR/xL_T/);ϾB|Kʍ86^S|;lӑȍ/})ʚO l\/BݚL,4QWƮ?~I]zTjc*Bpgi0C/Lb^/,o[7~doT"E} ##-𧥇 ?fK\ްX*tQqBݑ孷4O vM/TnP{JZdBF GNF Bzyn17aʲߑXnK^3q>{ hwJq/<@"_ r_hRK\ 3Y|Mb~J”uVAM+ǸA No /QKͭ,3l4QɟdHBBZ^$tө0u9F&@ہp~CR_\"_>{;%:Li)Rr|vR@V="~%Ope޻歧6OH0x)lBWʧqSBށ>dS*uޮoNMHom1MPT'NÒI{wխ/ݢKZ@6f4.f6)ybەwn!ѻ#NWCf̔K~k=tMq;QX!\' vdqH'薊TaQњs7S0\O ̙!q.ݛ5nֺ?M!6fU!>t;oGɌ&tƴay[X > ݘ)t( 7sb:$Ӂ lX=.!ɫZgg>\㛿Sh]ڰ6h?2iFȜqKzO *=)JV͎DtkI։]<Usx!&v]M؈%֋BRvfr]Th]c>cp:sPKaݹOipGy:`a_LG7m$,=lR? b9on/R񆽅ղJmV쌨~^rP՛nkmd-<`w>ك#§THՆggk9uW/ksEr-N֣ q}زao l=?u_U ݭ,9btMe5=Hxz9CT@2@b쟕M=7E»dot. >ߦ\קs-gN@ d1Ig%5=̆?OPo+/ʼn/9T)Eˈ/)p{x_z _n'vGX;]1o I.GW2zIZ!'Pv7+L+X@^ *H4q.V߈̅pLF*& Mrmi<ېk9B]RXbn,305-oeL# I9&qƲ,S;@ԨIZ}E?Oĺ^-JF+vǏ\j6rqZ3BBG9Y5}YV}`Q0fmc}Zގo39I0$6G'n1s H0 Lsma"3 1*WFl觰+=TSKTf g >0eJAiU2) m @/p'06sJcmZkLRhaQj9  ޙ+؇ MG cJC;z@em۠se%'_EP*=c*!{ (z5% M{^$@pZ GFjic:pI^9䷾_X%\zLMV <%*~_GoIu 4"ta=BpyezoD vM4sB~de{P3z)0,v!rGCN]ͯV?WզNT2;LI!ZJQQat pIWCZC)?zI#?0JOqjѻ+fkUK)G,gSC^se.E`,Oa:1jkK>-]f`_Yy t =~N1x(Hz\1Ck/;oGTLte/y$kV]s П}aMx~7Fλ=Z@HgW5}Qv= kqaL t^Q8z':<^5TzR)>Q_,V+ߛKHR)R)ogf!(c%@uUqPe ?iMEoO"N-0<ѪY,w2>'J9oWK3 WbxTL_ULK\9[]ƳPz$VM`[Z31ߝ(1yNF$OvbH3\5S>j!Հc(`(/. {_S Ъd-!O%ԋ-KzP?\6%9=WWQA@Om`F&-[QSnj7V+26z.Y(?u__X] pvL{|x|8ThySe:$T]kl`&V1I3MmhKSu+Irjb0J H1~g*K| c6*ȔɡhcL!nV[z)Rm$0{"9 x>Knq `VmEK27`Ih3uB9 fIGf"Fk.Hs8}᝷Ԓї ʵ1rGT3˅?hvΧ -sPVEk8A=z5kȼ1S?l:\G?pd&q('y?wM.?~"*I "c4|k):`nJWՔ̈́p9;y9[X;8X)0g ?=g{nP7]&1%ټ@q9 J2wʂG]ȡ3lF~Ѷ<܌6'oa)$2,!_p \O`Қ~^`qYi~ϊ:ƣkIDz+-#i0pɮ_u"+$h'uƫx˵(j_wo<[7#pPk#xF.-]xak+|YطF|Pz) .|L)9<ؠ%m =G$lKXA2/]iзMS#Z@Pd+̆; "I7(m-Ti鐃,[Ljl WM+&A܍9ȼjbC`%~Ioy2ɼ )JQ8s3e 6eH|^bLKRPaN zM%Y%)L,("EyעnJ>k@!NhfE0L,8Mԕ¤>N•n~>Ϥ5 <Ԥ&jΟf^RBVBUBrԗ@+Ec0Ey7f4Ycma=Fݲs9ci#pVfT41"fԙGc\Xye1\)hU1˺峓ksis MtE# 5%IQG- 65"0Q"\ aPvxK]IܩQ^j]SfsM"BҫoFn[tBX˃$LS{ \wZW_y?A~r(AX3oSkTDj;+PcbVl,H&}%?< hE4DU,2ElϡGB(L)%x}g?j2Kך^OQ0p"E^wxkvWD|_ykpoFj9WQX.{ sv ?XC*IB)J;'6_3BZgVv 8$cTB-=WbQ++N`sd ¾钫^ڡCg.춐궄L%ͫBQ=S ΒnoEکZ̾Cb@Xk^RcUn伜gY\-F!,{gS!7>>%S5ۉdlW$k(%2"Q'VLK nK+͸P{R'*flYƔad RӚ4Á1#jwTaUj<\:2mVN-eAjN6V߿m梁Cwf!UP6݊tۧbfboi5` 2B>#U'H8]X,Mz ѻ$%^v[qnkL.%P[I^1z6aڇ@XP#ESF^9U)jTNRtmF1s btm+ru4rbĕOo3}զ<]'ʰ dyRf5b˸<9=v,ZQi'ދ0ֳٕ,q#b Ͱqk~v?Jq!q2 ?)Ӱٮ]p!CPWi!fm5J}^#*>uSG*Or?X\ 6}(!0\ɰ@7UG&ϣѮ;qkxCʵ4dppWS&1]\M[!#q\ӃV03Q{:]~~ĭB8FY9OUN{|}ivbQ0~}~Ȳ/?WюFoV,b7?uڤYϊS̮t3جYVH]+]tuQ:V7d+ZZր?Ǧ`p?~ԡsXvO]]=R*%]M?`vɂمҁ i*}A dV Ԑ-jٻeV@yb<'CKNLzk]n'߃PVP/-6PP #KHd|t#gdm-ݚۼU= О)r8V܃ Mxo5`7- ,gN_-<_/\m^X-26#OG_xcz#T|C QO_4׬_pmy7XMsAH\BB(A_Qբ=!k0d?B5-ʌ:1@i8V^8I}̣q_3}9`"r>$pFلTI~鶑| ԛ:vL*dX"ʦϨ2}19FePT\ wXnl_\-_Af7 ^q^rg*8!fȸBkR4"1yիp !aԝ' o*rS@V8{zT9ztE dRZ8-'”Kr1 G>|0-y]4 ÔK-V9uQYgW<:}%!K-,굴3*"vBGieE9C@BO .>?'\J]O6em!1gHukUi050}TE0](>bM W[ncؔ )[xmѸj>,=K{ϕ Uh8*Pb6+t>dq'LܝC7*@m6iZ$|G|fjIB .fk`̞Ɯa.#.<$:eqMgk'R7˵C -Uϡ9lA?AC?o+]dUd(f ӼtLk9nn!C9~xbMAmά.Fҥq0S %@qgGy,B*v6j#oqIFLa`aAa`&l1{hۿ 1^|G/5''?܊|8'3+P?v땹P`ٌ:9Ɛg]%w4op2nHxĝ]I*_35waس&j單F klÁ&=uEn6Eg`鐍đ_݊;4fxvIFz,3iVOAjуqot&,7ޠ7:[48ք>=C| F|J/%& ; >' mei{){4RTG҈LV&B7hZ%"1ɟM[D.8O\;rJ\mpCC'/{S ~AzUxƒyZ`[m6͝CGGYєptK >#7B)<8%[\?/;=]o:O w:zl#* 91tz ۡkY2c)feyPt ѮO*n~)Ǹ4XC7H=(DXݗRCDMJ%y[y4$'U+?q> s?a='bXqghqi ԡOw-{aj޷9&@m㋪fr!iu?%[Mb+ߴ|e#7wA17Pk 2)xu0ZȴnE48 Ag 칏ϥoP ,par!y5\(612E9r6K[`A >ޚխ0M()KCga{{}*fUA| d w0*;Nqɥ10o'5 p+/bSMsỎ{7wE=uW1j+}E?JU* Vkf&M-tőgvq^3dN{;#LBv ?t\#?ǪPM%2P)@R-8zau9(KD)G\t䋘9g. q%1qn8!&a9TĖ?7IQhVL?W˿O+=4vIrWG#Qa|B @8%r9GoǸ`^Qs?^ Cij$w!GD#0?~\""tUM/hmCk`D,ͅTU7%N.(_l6I߁k'sNڤJxԟ@Ш>~qe kcڑ37"ޚ$B%x.mR`6{d%`voIQ`e|l(Z+wa zBZĻy!:@X/Уs[rlyk8V:PpT$dr}֚ۇZ)9WfBmqۿF XD&qb` yMw}ϒR7EGkZXQ 933Q -L6ET`vk[߮{{6!/ˮ EcxR"L^_R7vVV$ٸy,( G}cyxܧ1+;|{ȝ$"HHQ,L%,f2QM=vxqxNU(qe,43HvK[ @ndV/(ֱLҏ ""Ze;2# 2ŌEE^vb6KF&%oҿb;ѹG(A<׏WJqBEcd qZ*M]WNaA#Z;KNdJ1Ϊ:k&# >P5}͹#_֢A7røu=*s%G2bfv>oI> }w*g#Yv1C!U Vy7{qVzgu,e&`&ށfϸU2!HWpfMLiz$8]{)v|U&n0C|;n08P檍[9lHiCT`*:` ΀=M0*1߫/G0#S^4CXzPѭTI3Yb-sPѭotk!OL7Ɏ]x&.<4pQk+kS\#V of9'POmY͍X?=f FF̽Js%RyBа_w.Ѽ1( dwSh$bڤ1c <Lӆ%x毶$^>2cOeB EdCRr&U[`tTb6mBNi{`Y\JIԬIR"ԹO.5Q޹O_t}\%9-->@ w:Go5G U$NGoL^MI.ެ=uS\&mIBs{\ ƍ]Xzs^$n [~4<=ډ~`o޾ׁkEγjK٣h'+אwf,ՎȣV"GA pZbD㙣~xfų_ϸstq7aU+[) *'%\-5Fa}Bgb@={y-܌rzzH$ |ax+): iCéBP{`JFýbլ)ϊe"]欚Mb4"!ȴŪ-\V m[^6}YT h|KCtٚ[KrHrW\m^uC{URY3ڙJ`LCO?S ۶m۶m۶m۶mvw^~{N]TTf'{-2.:ZC>4%|$Y)̅MtXnO]r8|@ޏch) T؜Y7Uw2[cѤ = mG\1mMУF$IJfW;u;#3*{ؤ;48 .a_HIe=G/& lsg`k@mҘ==e3>,.xînqp˖!޽#GzD=s:ҴVrSwy yS8d59ɂ.' cb1'%' Yij OPy7|AG6_ P~NC}y|6}8o}PIMxhDRZ|z~=8H?h=Fza v>ȗܘ 9(jo'T>_O&N9~= f"}ͺP"1du'.qd}B9hqj3?,U ֺsc=͍ŭ$): mȎҩC+Ȣ$rU:,U*Ḯ}ŐL-lr@5}a(r{4>g_z0;VR[ڮ);AEۖRA&Ѱ2= MeSfmR Md1 oR9p>?'/ s=p{8||!E,SPB]]CT ~A}x͊a?gؙиHfM ԿkfB:l+.` ȷ8"v,2fi0>Ьzӥa@YjRVBze~SlcL?njcZ9lU88ev@¬@B2] 8C!s8Oes=hboq]P@"[RS(.33MzXЈlm"~-\l~{ I_d.5aCKGoFD Ϗy(̷]M ϣb ᱟ;;?|,^6M̞ -LFm40" ѝ%#RHXf3o>8HGy1WҘbY#y:&'ND-B@HNL*sӲA"_(\' DΉNЉ;{"q>c}` \E; v)!aR/wmNKF [ּfW( 3\䓰N % 80R1~,}0k+w1Joݎ.cWWrOW܋&`v8qMaB]J@{Mu`ԩ3冼bsFƪo@+s8OhBx72Z+O q//VxV\{4="Zz>wߋKCQq3h"np~em) o5S9U.i=7)nאT\q~rWdsjfU%ݑu=>*d-VSN\{#UT*NA.@oY>\|GiUVGqCSpӦl`!/5 򫶚i1([Kd LjyF;{1R0F[uP9]x_? R65R0湯e-\mMUcKS lk喏fC֣Sa0o.0Mq/lEs.⠫ب(ŞEct݀ӝqYW<>})WBG$r#ėp-ߗ<Ѯ5VJ"BWZOzYn/7a><;^m%Kr6컠DmCJJʱ?|)   sVVEZbs\TږjXS ю*%k!)TG}B9ixͽ݋&gL[96)eL4I6a adu>[gqZ'X_YccV6qpYB(D^3wf.BƳm$c6y#K$ZYlid_G 'ԺY=Q'CT^t_Hg¥.xjYE2Q{[AD.x>MB=/_t^ }GRX2lB'84h=$Bg]I g6i͖}b5QZXl uz-7EVkĖܶj0%N6aT嶢t~Bȑ69J2<+szZhIzɄ#3ig {s_>_l<+ * dAia{tbÓ\:$Yr~r,ÜإN)bKYfrS*H-ithʹ$(y?RaCހ.1VyS:f*%L-j-5JR7 S4 MtUKxνp5ʼ~)1,l c4`ޫ?(]X }qcƸ)w Y #jٮ'b-#CF,sS#9#zP HT(|R#Lr*89ÈZ^(mRI Sl^)iOz`>^{Uz>b\ȣaE{X"BXUCp\ Z,m豵C{jq Ud:Pw>.5&w2qMBe2mJ!qLGF& 0s~jho",:s"tg ?B@l4r^30iy]I%Qݱ y1p~%N~ݗߧn?&˩Hs+R`(WD, ].hD2kÄ\k\]0MUku,qYd Z,>ž a}F I!d?ȇ~dEcAEA-sQϞ '~['?jϸn(9$pW-ޱTb!.<~ujH5.ޡVŻA]3ʓګة}Fo;ҩ=Q`>ѱHӯI:NR~J]hh;UD_;>qPco<4 t+%C櫏UTyvI4TM=>ytQ$yF+[zwKi`է>.wpQS4Z5vL`ZbRKtD3얕qϠ} cF#vDүf=VWsVߚW@G&tO0#[?ۄ>AfNu+BNuJfh0ad6^";^ 5fE5C FLܬs&W;Gr`A5s0*VrprǿI9q0H.{wv\1!͑Md'-msR3VT̏ԤB2ėcy*txj-I)5] 9[YTX8KRL||_C \%HS6R$rdeG/Jcr 4 @G4l];z]\7tmA_^Ʊwt߉ɱNF@*Z0XmDtzn!CH*g541unQџZ _XO1ۤLbT˘o`eZ'Y z]|~MG=`ƍ! $s@(gPsSA^5<@{/bvbo>@4f*2L$r[TvF5z0̊V(X!_G!ë`DuU6ffP#qL~o⍵9u7z cU8.dpMj&Sz\Pky*HbXqc߽&Io*erQS ݿ8Z"7GDdK"$c' #9l54ъYSX$2z2_Nfa }\=y{-:qH,q]~AԚ"LTe(kab<$nЩego[-tzbM9T:E4L,{<B;ah72ڏK=[q$-/'}!b Ŭ)ȱΌ V(M(g6 eh@  uӁCC- )CyC $Kݨ$?2QHwȘ`hft&26Y7{߽R@]-U;#QR>VB,EbfD}`A '+:>넿?O.pa?}Hs9kԉt-t#PJG@76Acts~Jͻ1}ûMNcTSBCE5ɮIJEHH(Pţ,7" pa{AM-<<1ce mFӿm~w/RPJNR'M:1ME~K'.L{ln}+\-ʹrAEX11!CWJ]K+,zd="bkΟW v{ۿ' Bч((f ̴T@n} 0'aٷ3q6SeFjir6ĩLnJ e6e!{oD?Fv{kfYғiIYO.y1]mm:xonZO[o˨ظʣֹrnr׮2XG5l 3ZfuO^>v|\kxLG LmT( m ,U}L-Uv+1'½Z݋Mzkڔ_?츋=1ݩT Z-RmVޭ]؋g;Y 3E֫]m[iW%lݲ1Mn6GaXmsB̏>.]ޤ(R&LIΫQ†g[}:Ǚ:jb-I$$9B BBCjC![E7# "0BqJ0!GR0 ʊ1Gn(ȯe/dM۽ȣ3.niD4t8=]WoӔ-僅Ia1. БokEDӠh4Bd&P(Ҩ`L3$=:QY)p Z΁0 wA7X榎¨pie{;p<_A&!Cǂn&PWL #0Q^: 3EFbQ"E2|!ɉ"^>2'%%$?GBxFC[rFJ}Vg&#/ցF3`yICl\Ae0ۥ(?la6 GŴQT~W%5L!@p;"pZ7=M_P!{?tC] vu;ݛR@奇X<uhqu BӦM`#C*n> rcјc63NU%ѰIqixݤvmŢ.]THr4f=Mz@mlV $:ÁJfxȖnk??aab2LhmD{ĺ+ܪfխv-ժKi4Υ-IgL -VH9JY.f/BMܻ{>؅4Z APl_AԹQ_ " ۽EM7Pi?V]=>gpg s+ϒLt B2D h> dV6wTɢ!F.Z„'L/%EW%GrԲ ъ=F1'WE- l6Ix13%gnPʶgXsiQ̇l>:]R,-O/XY7k?̃Lo^J%#FQG7A}ϭ·>60WO2y}r&GI! ȧQփQ>YNISգg98ŤʇԽSmoRv;[g׾t I]{c&#+kvŋ)+2dRț"-w=$)lL VK^ T\{Jc}_XO/LY*4󩿿ZK4ǫN޾fDb%18UmyBa'>S! P쎐UU^;ڐT9$lRTRM&[C?,s?%šMzܑPn20-llQխG{"En'Oa-(?LܮJȌٰ ee(BKeQR*R"F9;IW$c^z<'CbM3FAMCB]^hiϯ700X]aTz&4AqIy_^'z$ſWeǷw=;ưJ6o͕/`%\!9qnn#(1^wʃIY#pk3#z`U^zpKI6 ~9!g8kJ4+n){DHD%[HdL-=bYa_JbFh\k|8W%dkW>Bc"yvS4&%ٲLÀiā&`IM!z6]\TbΧ8(΢(9Tָ/;4#$+P%]1$S_yƟ[cYcg='`kg-OT_2?>qZ{a5%[ޞW3B`TfEFrАkY6 Lzd :p MӺk};wż, s>i3DifBTګbi("gYcFK~ACU*c1KMM"6ϞpLH2}2sl#%+pXjKa2ۘ:uW"}V*{mUÕ8Mf"`ՐWo(^%oL#y--5u)E'EƴrH,&ZSas`}g[6 r %2j̴4V1dk)ek.x|+>{nFIjGQ ɳR4!QVB_pgCΠ.ѯ H5t`@ PĤ ,P{WX^"Z.NKT|?յR_[-S?^}"!LwN!}~`~4#޳ԜC ?xݨȧ%>*V'&Btr^mQ,q7nHp&Yӹb3d",@23?pE5FЌYJqG(OƄ VP,r[`<,ghiOpz ¾@-~w+lz96}ȊN߲!?)7T˶d;R\&04e4blY`̸p2< G@b|?!ɾcNKI^x4ox|B AÇ+FڢФSb#GEH<=+GckKYZWRhv&Q!BNhV5oVXO\g!fW'BiM0k[[ ;[u<),[jBDoRG#ɣHHfJpJ'ZDi9k,E䴫(Y>j6qѐңTsZmf%.JtPBU+>roR]}5j$[YÙ6^war1sX!";@e=>N(\ 0*+$t Pv]A}F DJ 1:,t_Rb,==NC[^M`s3bO0 os`}i^NL>N ]~LƗIGκNh*B7gYx]54/̱YPck 8C,az[ű=b9f'z5)( ɼG1*bcx8 :m}.Xʰ Ï@mnDjW˳ADX]-@]C=Ę1 rvh0հ">A=d>["Q 0B>A6[tp K qVH+%Bqtg ]x?u8 ;Kn!)WpXj/6whC1bԲ⫧( eL;k("&Ȓfmr|Q)f.ƏʌЎ71EWDG[Gv{~pӢ#3 7$O./2qy@Ov=':ko;';+ v7? ?~/;_g?h/eZ{. s r᎘;7̟43$L}{R?aAU~\m(nOUK?'>e04 >zaHEC$YFD32yRO*PaG[ BQaj ͉b4fh ur}ICI 1<ߓUo݋p `_9'\S_ s df9{  xȰ ɮنgF1:Nq42^`!O`;NM6ۓg)IbY⏞#Sbwks(; <9]!f3 rS_ɧv2n\.9tӑ`] pcO5k(Ntv5O%DqgGaQԇ.xx4΀ Ti_alut@K kVl) aKNKbpP[jS@aM|u_0|}qiKqh- FaZ yyt. uFtw9T(kZ%@Kpaj`4] * YҪWڴ5äPn[a-&$eYk bX:@Qh` R MXDZ|ưO i|Zd*S61n6FɶMYb)lrK+$ Es n M' U Jꍷ(v8d"bB-qh6gPGAu|\ĺ2=.Z]`fP [.#ic ~`s@?lDWusAL)*bc9\E=P)̎3dy =Bˣzgàŷc3"M¬bmV;[-6(8vKktCZ s( ѸYd6DE}:llP|#L}sqk 7ձ[LpG lcY:W4} TLam:V󕒱M*͊ %?T睱8cKT8v rD=c͚g?{dMK]]f THp B׸G%B+HqQq| +CTը*R+¬*RlQjpGW IԳcXt'\9 Q5Nyx'~`y!b Bw,l".;Cnb_c牘%i1{A0wIR+|t0 XbNR3yAp,h!'VTdZVo5BoX0D~eZ_$zWJ/TJ/3"+~sIn5$)h n\):-R ď/A%RYD%/y4RQ&\l"W]h6m`:YН(Nc}w|:Ly/jžxH-:62vȿ*'Uz秉mB2l&E68TO?OGT@4cB4hJ*GuRw-\CjvdLYRq8e*6Vk^6b-ucR ,tM8,"/e :_@h!AGAs!R%!r@zh{HLZR9tg<*Y-ϕðыCrޕ;GS ooZX.# +=#n0J6u7~F NJVwx7w2χO1_׉QL ;с}iǂS$;B=J.إoNCW}sO}dE;tSd9p!7$7oehT7?;/~ 33=%ydޟX?e(m(HČ mp 7޻U~ ^A_sIs7,o^}wo]e|}`AFyKa'V"TRxƚ-/|fhM$I.`R=-(_k XpfR, RmA$RSX;,v5}Y|x[ũ^Cg[12"-,Z3ٳ kݖzHmS,DlL/$1Rwm(mC7聅"O:J:kzy$)dĘn3\Հ kQ^mD)46Y F:m0 @Q /%ӜI C`KFЛ9{٘22JטV4[e7BfVg_HݱO;iw#v=>fz="'ILßfw'0r({ ~.\gKNՇ38 .{lq!]B$.w̬k-u*gTӤ -lRgh$v:- 2-hWL[/IIZ 5P9| ouu;=AweV@lLK9zCrE(7sW{W0g1=?NI1 [[O ?A1 -4lLуe:%UD_K^ lV2fG(b%>Ϟs⺍23xv|߸8>.ZavHX7k8B9=NڙLٵM  s 3X€ `RѐhlIOA*0"⚱ e48pW͒5w~RbBSt҈?[(s{tȘ5BRp[}./;d֜)E* QFU^FN8>o梧§;S?g1[z.[` E~|`<15& j FTch5U:1V$,cªc&||fJ 'iz*v hV`Dz8"bWn h!#8zx$1F$(a$t{b ut,Kp1H8!DY{tt^607!Hσp3SjmCyq@o> :X ]Ho0 S-bH:'<=vs| 54!=lI`x˹nl|#8d4cF]=*/*kc},(T]<j=.-*lü -y?xj|VB͈fbˈ|J5 cB* =lWu*W cdyР!XlU!aYD RFA|Dp-fpࣈg d1d#Kޓ}vQ'N4! BTU=}~M6!hattr-ƀm E ;yw"tc}'07gU{P'_pV Cc:;٪}w y~M&¾Ks.`7E>JLԹM/<^ LyS>Jg4|gEC6U`ثmA.jPg[ɷ :#65hRS+Gެ Ғeh̠ifL 0Rx=P)8Ӏ:.=@t<8}eAwK"Xp|jf,t,3[XG@ E _ x=/\ݰI-ӃEU7CKt[\Bd,(EۀP /mgNVuy͂YSR+H1˙@CR-&`6p%IҀr^SmbbҜX)I1ъ[JN}AK^Wm.kXr48GEl` B&G.k8Fm KbF, @>Q w?jI>:92-+r{HC ?ڛPĄ}hW쮈wu" qc=?,4_-\ JP0(*Zm,WZ6o]~>\\[]68]& '0)zfSr!-*9l|5>z@,ZQ\!@XP{ {SN[ș}8D ެAR0 g5b(!#\7>Pęsvgtg Cn/'vQAS#+Em8mc[9vwhS|inY—ӦǞUڂաb8}r`!b)LG+ :37%'#"' fVAQZzh^Ĭtj,qpr̰i)Z& <vz lpo-e)O'YiFIMkьDLkDmYl\ENn.O*ECѩCLu+;aѯ c;E;Ka/rCH ҅Ӈ1:e##$& |z`% ,RƬY3VciSI 6 e{%A)mᎋuw"2i17Qf;GCSVV/jV1ߟ L۸nFf:z?_b^X̐93^tQ99G,ckwJV.Ѯ<~J)1nCHƃ7ʣ$.zdDr"Ǜ{qy{CGݚ0c93;&˽#] bv]A-ew24?"*EIu<ȎܐxmS,`joki阹!+嗕Tf"y 8Wj .v΄)tNc \3Xz*2.B;T7U`vx^΂0Nz>)@Sn #G]t2&.+X#^tSrrH>,2™'BGqX'N?f`C'GN֋v,r/o܊3]G7/I_y*} qWzOaygByyy ym܉ Hoiß_͒OInzOsoV?nbߞd?Ap!Œ9 |Z w~ǟ` ^;J#csD!iU8j' ptԎ0Γ[59. )Bt1'|!pYCYZ-‘^'&6U+ Ya˫GHjidM^|Hhjv8tEFe ~X ̬ Ĵ6k%ꏠJ8H? Pj%"ݽ@'y~ZMR` ,B%qͶ0@+0/FHbQ `PE''BTrNR#}].etQ=IT'p[>/Vʖ_>g??dwøw@w;=X^lv7:]b爫鷰;o4mU0mE8jE!-tଂ eيjsWk a|_-]v/2uWNj7wz];|]k|?}{дykǁ3%83gǴjLn5:n8L+0YPOԍROn-T Z+"`R.:lڇPH"xh>hb `#3XG?_I\s R 5lL6X` x).3c/xp}H"Uǣ#_1s,lohKdKDK:/t+xCzcVjeNyhJs(kq4&W:Q&?RrvY|NĹoXcX#d\#RVCOWCO44Qrx:Z>+rr @0)bdp-U`.x2<AN|.Ug87ǔ401Gc1ɚJ ڭ9佰uZ_wZ3(/^څ7]ޟ{D-B4N3f>*Y/Uj4]HЈʺ)/~ [ǖ?Vأb6mzMx[BTuW{Y?+4YXj'ܨ,C ԵR2QTfB|;)2ɣ'R!J%y ULXΒY wAF-T9GfoPUvb $0e܇@ jCn Z޽˃/íIloa3jljzcb)E5m¨D2yoD! ܜN!u9Lzv!] kS?w8*%ۋXR E<Vq2 k,{+ԗ'^wJ1|CSvLPI@d`ScRqOL[ʴU]f(sKK@5g0hPl1:J)0] Ʌ0Y)76ѥNm4~`0qOidHDAaDfAW7Qqr ǢsYj)'oDi&@;?-p/8 ?,s"Me4X>s'7ᆬ8&YK3/YwpP5MU[lBb]ZV95 A>ô.5%~^HK6k}hs=Rf y5 82sХ<8Ɏ.Ȳs$ͨ|DA}7Xr7 ]]}n=ș~5K`%G.#WX#Zq?lE؉,IAKoIRqf8}qOzp-x&m"/MhtGZ"gτ3ؑ}.Y {_8\7s*OOV޳5.gDc,MKA OL\.x6:NJ7JHfq Pm` [aP(Wuhwu7Ѫ^mJf?L!9G62~rnwug[enmv|^=p<lZW2vd:iAK2&&xHtR9$2¡KK9,5LMCq`$'[br #tdњb=$$EsbBydL|&8|#czGfξ,^mѫ}r"6HP.zzD:8^ӺVz^Dэ|ašT;EaTv7UKbJ5Q]^/zM4Mm6)"AN.$=N;yim=Uaj,J4Nv]I+yPԜgXSX_x ru⢟C"Dh' (`QvYV5lDK~Ivzm.@YT' fd0E!gsM or%zur`q0,B]ğpwaY2Hwa.nC-H!Vw@`^lՈq]t^DCӢ=chw8x_bӴ _GݒLS EMT/%AY6KȣPRsG@8)nCS䈾RxOk?f}g&̏[s2^I RWۮӍtkv*vv4(e&mm 6;d\G o!xَX+|}î1Q>hʭ^?qY|>P:/beƛsV썬CÎ71vaV (el͝IGus3ؓѿ=h @hIVSП1#xf#їE*c8\@/g ;.5ûcHrDƕq5wܣ6&b/{Yen􃉽_*Pl&wEzXc)m}:6 tX3p~d'òZ՗U)k.Zw1ZĒn~>U}~uˎdS?C@5 fpa$E$xfd^e c0 ` ^ 6O4* uNVk>vH [_XfbQ5 a c[Jo=K/]a1O@͠(dp50:g(Zk+BEx/@A^YTa|[c9[:[z3[d1l*Õ)[.`"Dxi?Yj!6cJ2 XQQ-#&d"$>8mhVrQٵX114k,[} L&X$gI3sF'{ʊ0D e [a\,6( =Яk4g渔 rY+į3/W"{w?39=%G)"R `qHSu!9jشE3X̑3c=7阓iw~MS9f2 s ZETMEͅl%LlnÝz8ShЅs-_DqSaŕ@IzY3b\*I% +A}SY}@UPt tp~@,w€+~5\f& 8YAmXgAXyW*Ұ܎- ;{~.xՈ;g~gx-Jg7؊.zp58 nu&Z/j~KمcN iw@]`q~m)8Z=eH=6;DB)(wK]C'UL{ )IVI,y{pq_uCVc]P{AWs^8ݰQv?z(-?Po^aڃ2(3Y mFycܽp?> \PCxt)2[Bpvoj޾΃xE|vEb(ס`[ЕF|Z;NGn/4 1)4T+OT['''k+T,COL[0 ʥ;iK;Սrh}p>9A?8YoDkܟ3բ!UUqp6tY1D_6ryx qayzՍr=>iJ3Bn{pwܞrCs`}tܞr#n,I{nZÎYeJS nJ7O7v;;e76XJRѨD2e-=:$pkX/, dU$euJU%IUm 6G>3aw#aGq{MCx H8O2uO2nU"E+3H*ˏc!)-M MQ 8jԩ qp j8Q^ĒbI<@!OOJ?_L\b&@NR|6Z@]LoJpJ(JcٙyN0 ^S9x9 F=⼬20ԅ KP曔Y77 JK2]"̠",Q~^Q⼄(bYw jK2{2/,/"fv40./-"̌} f_7$yUɳm"Z:;T}ș1 ]o|sA!vzE=ƱOҫ5,?WI `u]sꯗ*v ~L(yh+0Nֈr7p 6Œ0%,_sMH>Ss鞜*j6.lkPΙjP9wiwH3jsz|sn~(:=Ft8A GJf+Dʚ^95>17qDŽ"~E /QeR&O2hC;SbCr:64D9@9"v-A3[.:)﫼Uh*Lzz^|9!M+ %*Qz*ɚrћg^[ X"K.cQb%=&(*6| 69&enEG)\L4!ۯ<Μ2=+clq(2.m>0i"ޛ.)#\ Mkia)iv~Ljlΐ3~<"ɪ線o6>(sF,ƊG9koI bd\+Gq7>^| 1V@xy+Xp ]+U3㙁cF_&uCcsjvsʑ'p8̪}NW[FLmawc]yxF  v0 Ts,&N(}Co8vఇ#K /mV OB81 ́6׏-cxIs|`줓{ 4C"{ u:K .$oM}2iCmڒ`Ci))ro .RW\iC}AE&}cb>h{9p¹ɞv*-*bZWt?Qqt.]ל7Ic,DU|=Who.exp6h٣+-T3[fKzv̓BWWhS`{OQ{v5Qf4[VFZg&W[[}Ibິ~vyzD:|R>_&ݨi)r%M jeEsmqp 5GZh &[4 J vTĜxyNVP'/M[i9QjYIH,L;.=n!!&ҽ/ #1Z6OL=x7m~ cP+3rށP κȦQrS/]``p^upDP>3z22ҳi**^|KV=,__6Z)Ut?Ph!x[a.V[N Xy?ul4J&lH ĘI:neTz 8&D(bbv54K{׸ՖqZ6KQD%Ryy]Iޔu'Cn`ud+r">f㯹! .hY>r"xIJk4}ߋ`nzIB*e%qX-h=ӳ /evfΠN: ҷBF7_öGXR @&YU-;$5؞4``mq)Ma2m?FRQlB8*x-) ߛ󁛒)x)Qnn>m1^۳I<_WOx8CkIbi|#C#p7c ݅oq2Q Hts7BT˞L+ '珅߽ ?)LF fh4! C}S[@p*?r`0jŕ6]:ԲFݨH٨L٨Pg(i9n*̡HG^Raqg-EE, 2Ȑ_q֌:x^8-Ex+ڢ7F nD0H '7S%L,gN"?ohJ&ɡ)qisV-=v^b tn⭬>wVMS=k:9MfHfw#eZԯ:Ţ}QŁDqGV/ү 4|hI9w(A?>I"ȶ6ţeB}pb\6 +>v1@s瘝Ζo;'vB18-15K28dXm"`8Wf&WdoF[Iޕ/jaYV7 ,㜭 + &)ܩv}:īR=`\|6 %4 9 U!h4DzCh =3Y^RTIZ=:uQ@슫O4fmn[2=~^fHþ%Òw#n$Q)Zl<;N\8w{> j3BIfcH<U,{5oR ΥzEt!cz *9fͥJܔQnɚpD#3|+Nbt0E| f dIi8'K3 ҩ-~X:ž)fѢRJ<. LcP$΢Z?H dQJJ"ӓf9nYҐ8{!:[kTQmgJgPM/Ҿ1[ˡJV<32 6r9 QF1V FA d+(C~)PW̓ i*6ez ,_rt)I8_ͮwC  гUp R1+wK$Bv٘֋[8 pb?0X7lӟ;z3jԾ Bc-%tUĿe \M3@kM7e zϼ`뚟2OE߫g 뜼:߼R7 w/' k/\LZO{:Lޤiz`J$`7b&lTpCXiIL](5}B/#H03zVrT iTNJf8;¢n˞!I&^Cp]jXuDۚO 8gl c2ɍ*Hw. Ù<򓸘rovSxvx.8p@C}H} @iZ6֑iBc5$꽣̀ruSB i2Hu!AHD7D ḋF2sCyemdɋ (/-n ^F73*]mm 1&+q'ӉyqM#PVy0r,d XPVyJn<6+c\ʼn9˛>Zv7N={Ġz#]pєĕyn츯})RN蠲#G!e$$|TRsm&M!&Mc~dqd8~5_l7"Rci(}Med{"jRr/4B:vpQB/jw_2A^# 9`*dI}e SR:ušik 6+ z~.z3Gi'19@o5B<arOKS&lGXH(~Z0 [Ulٺt~E ȵU2Z<0bfiQPCRCE% ,ڊoPt8 T7R,6bg^4&ײirmk97(*{.pT{nEky3%Ov9JaKSu0()w) A/TZ,3KeA"JjK)/0(T3(,;t#۠޿WiAzRu0#\e^Uѯ)Cml,^uI`ɔ{ ">Э)~Ù78{.]][tm۶m+,۶m۶mv,w}?`ZzzOFk^KU%͜fEe2V |HҷSKvOy|J]4@$7D%`4)n?[/(5m!cnd FH1>?iWw`= n.M|>oIWbJ\C,qçbO${ː^p~1w_P-̔vpZнLa%`(zKFC9)s(Y?ZT_jͩ㨢 KNJ cKj,dbC"N!c 7hn?+r֮;Ajl꼹^{ڝQ8~vyb1ZAړNXc`;ڵ0W=ip5 $@#Qd$̫6K4R<6'^9Ն57\{}ْKiNW},I!ywQuT怃N`7$olLI)ǹIMLln8Jnՙы׃'  Y,m܋j J"AͫSmYzUhDT@^ ]@/Z1}7r,V5򝎙@3EbZ:c_&)(l&eԱv=ʫ-m 48&6|?*N|,0lA:Z0q~ 0ss~PI<,Dutd]*Yn!k $H:E)#jF*:hѦ6e=R<V>CdTEX\DLtL$I0Hb!aq$YZioϥ%9\Qmk(>/[ՈrSWT1 =6΂~gR5 OH`Y?8 :TB$*4АG)[r&ߨDs 8Xp(Ű%FRd7J`\.[&ZdӫtgH;݊ kbSW^6jd;"ex(O2RHpuv2NUݜʨ  6)MndKryM\O$dZ8Vtqm*!yxcT}x.ĆA2SIdFB}p!ʢj\쁜e!;ڀE\BzԳ9Ňh{[xNZGpF/:KW"78L{i/KçT(5a/Q4Lz{`—}}>+E ?T`%^ꪣ#T@Z[ٌSGkZ.BgǏvv51~ PrYȇh0|xm+p7mܑ-d;gld횟|2TAiBHJ 5ÄSDh5^ vr1ud_c u\mvrmtbfc^ fuYK\g:-ch36a;h%}Ҽ鷺Ljn`hxēxUQNߧO2rS܂eC"┕ɻ.uVt(V@HS*mxQ rdPvI8TVNV(Vc-Ll([:_kTbMU`-YȆU[ߺ/Qzr`&V薐ݼXvm.;jݫ8'GX΢5 Tj+[uf\?P'3Z&]pV64JW[x4T!cЛSjI4~2O]m JI+JR,e*[jgj\PA7(pѶi#8;./\p4YtiҩhJG3>rJnpx$b%b~p1Jb(NCP}Nx!FIc@\XGf@B@Hzh&AM3ʨ*Z~xZm!L\2݄8&q2%r=OfukFf H?X^|ayZɹ_~Ğ+"Y4F=1PJt1.+e_2}"@|CwN;ЧzgfC;>>7K~jqq0K4+U\RgMiUH:pD}:5ǗfQh H#)79`|Y8Mz=ĀbX79B8G:Zs80fZe*.ܬKbܛua B? kۻ.Ml*z.Q9.ާY2hclƀ/,P4le|A\CHHȢrXCm#8ui'͎/l(dV|e@c!o!C/){&J 6Owa& 71.TqPxz L"' Gߏۍ^77 冴IdXɔ[_VFfSpO!e< x] ٸ+Tu4O] wRjU=\!%pS([KERG5$i.Un# @-W֥z0dEF(hڲ NFɪT٩'$n ډ44ؿ ̀eΘsDG!&g2IS}ΫԜȒɒ SݖJ:TNfRƴIiDzY Ĝx*WK W 9ID .o?4&Uq,`iAjx|Y`b??z,;.7)fWɼcVE~΋)Z.N0}:}.sܦIC>$ld$ %Ѳp7n#AѶp!s{Has<丅PF嗇DצuAKЍz# CXVHZtCa َ(lL CC%hUtt(#̥7X}{.3\"`Tx?I/gF8|.OVx{ÃG$*܈ʐ@2|&Uϟ XXk$+Y!'Dz_,ߘ;\yӳ]YCϐFlUӯʘCO"}gTw <=7O`pfƦ J .r27dr+v4aSBώ.MsY&ʪd._sQ+!H&tuq ASi~|aȔiudy\@0[c9k"-'k-0/BSW;xYN ^q@|㸳5rާhH$Ըym>V{̻͑\wׂ*qS: meRi:PWӝNÔCƬ{~WuY%爐džۙߣ-XSS*z-`%#CO'!։#QUrA}KGmlEA5!S2 5`oW7~QU"A@N8詯ٝ*}qD.[)-\r\Ǎe*Q AAі%w)Jaq-/;i:-2(l!OE(!糁X8ۓLiRhwu3|Z1?E>?5^p5"9gb8ݼv~C@5AҸ+B+Rgs:4sбߠRx»HG9a^G1n %d8oK2YbFzG9VG;?鮎=t¹hrtdAg?YJIp{Q +*U)khS^bx^ȡהXpaИP+˨Em$J :g~Xf&f2?6]c:q mb= %e@-s[?ք Rq.h2_4WjIZ]Picn̬m%fsƢUeBt`"s ;G+ѸNw#IULH7}J%shխ湶ܵj(;gjI۲T\WV}JWl{MHN姸VX*p !;] | ?.2z> 3NmBb 32yw VG& !gDԼZSn46 0qUӜئY`GopeLI`ή-$D8d(d99 매ўޠVM_N vXBW?gA4E!<<@Zq8A!j]uex"֫s"cG>`nUdSPK֓ x9:K˃Gq4+ yu|+H(GHwa[ #~d,pTg@?LPNFqxRs5I?!/JW>+嶆J̵L۹0d$:FT[UӖ+#bw߮U :7[yY<X VO9~ |RKssg&j'0 y_0kb42Dn[^9vOY?Ejэ)6䒞S^qغѨUV]>RJQËRiW}m_w\@?r~VGG@tܘ.wl>x2P6u+][ܕ u\r=v1YovT]{sǜFDܔx}e[Mrܲр032r*"/yx(k,#墇d~!!XyXF[BW3NЃ;SQNXŃrh* {?LLHFߵ|:S2CK0r8;t)F˯hҰqm 8O%7f[|cuqr13usj~Ss^M_PmjԘk,S lG8(GLGoD@ח.BLtgyHƓmK&[pGV6U,:y O&F )da{Dh868Xnp=p{0&UkW, FWթd23<]u)5ˈJ˘Nc+qd8Grxog,S")Fz[znlYQm ѥ7G7-b`2PP>_Z"HJc:% JZ=bҊ X{Z0R=_0?RbP.XwKI{L &"O)'/{Oxq )]TDma#Eȵ;+tۧ4 sDص'{FB0)$)oٱ;BPD[:a \jVzND&㫗D^- BDYc%NN gZ?H`ܾ'CkoiD68L 6YVʘZW_wG]FhߪAD(^tߝjؗdmn'QlXlD-ٻ?"nT.o7JF>\fWuA/Оww̞{o6>HVC!-DM6aΣ>PDAQm[~L*_ VYԲi:!_ҭㄠ}8ev0loA3'?!KO?Boc@ڍ&T:A)fZ+ u, Rel'jb2VkǦ9עN B P:"{<5{Wp[d|U ybZ6}АR|aI VFM@~P!+,CKX?颤qg&H?~=M^p@%Tvǧrӯxv5a^N5>PMǵTn) V=]>5Z2{Vkթ}V#q*HAo;x7Ϋ1brrjP­-sol{HCeNI>q)a;bR|[/ ѹRfZK1f51lfըİ9z%KCOͫ6Hyx6ֶC 5ğ?#wpEYDȴTŚXP^p:Ye韭7+!C8yP{z\DNYZDx?1hNS˥ZV/?\-W@y* (%T1"(z֘RWm8O\q8%>eV[)|ѕ!=cσר Bo㙟/V<~KʕJm]Mqyc>`K-ײUAnDoq#:)OA;u,N,^r5=f T+lB< `Oцʫ+dt ce:45㒈zL ,jx@?b#P8ik?g ,HKE&)L/DEp1pe{1~,|"\1C^1^sw?ܗP=~ RI@V7П?mue71[,VUjʅUJJ(:FJGA=+i)@ Xg}|cQ&ŽsOZxɇttcN>ǙPxVlb_p~ 3짠.P^&~n,R X:&(Y2XxjY` ߋYͳe}8d_ЎQQLL!CʩUTUZ[Ij"uEX*KLB<]QU`ci`ӠdD2u1l'h2/%tG|ϛu@- _[G5줇vfj''Ì;;U;j]-5X^mik:mPG+QZXEZ*aRlEE,MW]S]|nmablN},,&DRʥ]GAc@ vz頇z")JJv퀏|nX5<=}<a<38١,Y|ZEJ{d\?Y[MV>?2|Z}#I-K`#G\O6KS}?EF6x'F{T fio0e G5Onvy|NEgv:?NxӋ+7dGOQDF)9_OjQ. ?'^ ']j=Ze}Ok۩Ү7 % Ty3M1fCR(HJn+X.FBj1amV W#ZOT͔bKU: m2t-[Ǎo hZ KB7;"qϏ5ymN߅nxlyhgg{llHnj?@fKn ߻$4o┄7iBʉýBmӿc'EHʹ&Ns 2{%V/ Wgi_{) `'ӗFt3*3!^2gMhI^P.8?rԊLy1&/$vS62E]>(˱/nv6zy̕|[H)xvm2 /hF8̰r,hwZ'w6t/mѻ,eQ$mLjzpzy(E7ذld.C7ny5n:iɎ7v+ʷhE8o9t%M ^Bū^LEpů«c13ח_#\HF]&>op>sVLdYYg؝r4脾 27@Jaw=\fwOe7}!K[ɓw;#a%eM=j|`\Ͻ9E,yTfGzZ+A/FȚr5Ixnw4)m(1ϯ|ѡ0jJDc?x}9kҵBZ/Ѧ󖏫Kfq rސ#s^8VӉ4ܾss~.sf=()j}Ǟ5.u$W$*_]ġ}6D[I줆X$>K+4 izUDE3QMzsOTDCxDg7]5W]|ZW"$4S2ڮo-ԷguoBU< έu`Z(LD'n_ZMAb= P{G ^ _=>|=T ].Y3i@'%cfB1ޡ :]sdLPaqDb0?@PP_Z64؄;aܦ>ݿ܆q~m?7-24x eP⒚$/=a=J]q&*Qc=?tIVf9X]iNeՏGȠ8F>+3W(#HAD&P|,@J+ U^Wp|+6+=P) kvJ#s@cτ.J,F<#WWdoǭOTUDG/ ̳85QVE' lԢ~xmZ|n:| ?tOtw~lʝb?H jytKH?$-l֮*|ohȉ.5/ [TJYw@[:6Q ;$>_%(;{E_9gNw V*0߄qeÙ7lĦ('>0^@lfZj(.rP.9}:m|?E~]pcd 3D& =!mGܶE{;ij@2K<2n*HhZ(5Pꄳ]ZuBp97s(qD& ~?,n/D5_3ΐvƦo-:~Ռ$@A Œ,_!bs={~49 G߅Q<Q5CHg lgdzfǫJ*IIlHG*2.rNm' ׉OhwwqpTA%Swwon:GJ͊[ԬM?hپ|Q+<줜5_p΢rKJg>.2۞ZB$݌*B@2dth26@a[Rdhu`)fV+Hg@YpKDixk?>@7($ HLdG7TVRzMya|ozpU3G6Oc,72`KBϝ-[RHʂ1лMƍ,AsX<p)Qu;ˢ2IXk<Mk^Kv2]RYp8WX?2_;ʄP;zEh~KLX~p0fVV^DIYvD3+%I`cD`@`*X{)1Uq&݂ :NKN¦*v^Wīce_qNy4j OEՈыnqQΎr#Cg&J82/FQ2 gS`v#㉇_T^dD>қbG O6jc4mxx)mc¨9Cw*oc%ȍz''Hy*Kr^ۀbDDaem{6v2R*a!=9h-@PRͨAZ)UJ=\xѽ!;@8>sa* ̤Q*meC#3c}W4HCFJvB\1dwoeϔv_R,nGT= lqbfAQo$Um@J?.=:&j5̂xԑ:_rFl*;rpxmRS0F-4`84Ԛ͟$ق&"$Ft|OZ7)}#f)\4[)Uqa{E;I]{؉%2(5=MQ=_j՛NS}(SzmgaAr>]>9/>іREK+0N#XQ vr` ƷАTRU M=Wx؞C)4T,Tz5% JXA 7vrE#g;-YŽ]b^d e|2#n%~ˬC5N|_ef;dpTvL<#n \igQ"!7{g2g)r(~ipR1;^e{jc6 "NBWO 0hR6XEMI;5Ħ-ݽCU\).9)ɦi;x[M_2ii<,.8'Ditp+eP.O%Ebh%|L;Q5AoUsQD]`Ɯw@N@3z% x)ZէZ6.Soi XH ޵o 1[0\ܨPZt %FmXQl8+^ȪbD_ }XTʦ&*E Y"AOpK twoN)unFZY}wu `E#^?m/l}ͪw]8VT#J{);:폋:%  Y0\ae͋NPmOtb$.X^JSjO7ӏut? [xߝ*Okm=R }ϊ-QՓRD-XY~م%ɷw_Qŀ΅EQPi녳գ;LJIO'%Ӽ&ܥDY]&{Hk> 6pZ@#5X ^#Zx5 .H;3q 1 rUFU,b/qLEn۪Ūo!Ep/)/dx|sќw@=Ver.~h9ܵ~\j8;h `/"w6KJ6+!]_ b^Sv+Sq_D;!+yZy6H?>CFv30tՄRfӖ6zlaTkThQNjJYX'ha\~pt-4o '\~dDbcĂ x&$&"T"TS7'kDd7woL2.ت#X}T: K;ӂq"ؼe>Hna԰*9Tj ߭ZB҃  Q@鄨9h]0FD&Jz{4*XAmLԡU: g9' N M?5_F1ZRu|# 2] q 3;D*L P"bj`J?2B 3?-7 m8ؘ[0 wCeV7yClN|MREwPwQQ9#*fL'p8{Lm;IǶm۶m۶ѱ;cVǶ:oϨkcy5欄PJEg gGbS8d1EhV`x:j/jNkuA!L%/}_Z* ~7 -`(+kVv~ƀ (+ݠkѾX9IRf@Ox/xDGROY4y@}cG&\cM7{pQ2dO[M#0A7%JE?&b' w,1  Bn;`DGm Fbk󤼺" YdSƸLT?<8KJ(* >'ŎTM~z5k1iSRRj+riҟ`tkC5cXvjem+1}2V^ ,Wh,hI Y8qr yL)1rh/TLfx>67;ԖEM$V=2f3~0`F\LJ)%9C\Pj8m{LrR;>?ct'oBMF$}%P4a8YKPj㰚.ꑼAo"-{v ){ȝl:)&,`fT2fᄒ$t*K/*5YGw ib%A]eCgX.ď*Ķ$P *7g.?HDGxz)} I)jٽhY#Y{8">߆@j0:.4da(Zdύc7k({4쑹FwsɕqЋxj/ȗ1 Tp%+ߡń'xDf=[Y7`wpٛ}*ڈGI~Z@zQ -^dF7_s஑tھ#&Dybn#6=?׆C,5!6 ]ZtS[iM <6 V鱭:T@ҷh0.JXe7BU^=qN"g `:3H 7` 3AZ965xBV3( 'PV}T3U ]G ' 'nEMG RG!lKQDeƚ=XJ ϶Z;#MҤ7M`}``)kJN"7h{}`氄DS!(sm#?˶59lS{*=y(4DLKGfA˷ԊCRnCm׈}Tzg.,+QEpD}Dy g2UTg,erLe}#E9*cڸ ))sڮAe fu*xX|(c1<$PT<<:Co~K]2o-p?JQZR_+@Do$`EpFS )i'E'-޻ ^$Wgbk4$~+(~J";_j TLghUaKo*gwE/"nD5mQQU^#s1tĿ*+ׯL'˴&сXJSWd8Jaѧ]y c[يcYcU,7yQ47g*Ԭ䐡Rb|~iP-ɱEG^UYڟ,ڹOׅCek(^]A|b2G{vʦo[cz;%׏}qu(ΙXYͰ-' XGԤ̄E.@)!-[|,g2u9}  X-b!1L:ӔQ;}JP]]s̺^8\.__":qs-2̤G)+M;Rz<'C9|Qk:-iА @]ʳҜ\(""fhr(ʜ CYYzG4RψRqvW^}~Kr3yQ8ZZ,x Uϰ՛ȟr5v%׮e@H4(>K4іIˌnF۷^ fS9 SR`A~-?2x4>_MwHѿsDsC@jرP- % 2YJzN3é "8(텒` (;z'' O%uשݩP@hͶm] ƍL` 6m@&Uace}jL(=t:^,;/~QPֽWu-r+sR!Wσzgc5XPwbE:kV)];W9c.줋DB!_)etcL-jI~(IjHބ]#EO=|O6@D[^T܊')vefIA&gXa&;p~{"~.g}ދLdzg}Oje~mVr}_RvJRl6$w|δ,2}+D6Ʒ]rXvwN>kl\mo >|MK^pXV;l*$A1\/dnZg_20=4#~#A"̊,ֻq?UUJ;L`[+g1 *IHLZr!8MZp&Ujykl04"?DAo5R$3/hu@d'?]Hpjh{ [x @6$JN^!`F5?R3.鵈O`K=5a%dAi/?*0E3H#98a3_O2ESZBxͯ/__;lmpr-H].}W?83!~&0E)H:QgR/B'uX+TJcDRJ}qko%6Q#SesK.qq(YZmN8olXWz 2_MI:be4yW0B6@⭛򷦂 Z8ծfD? O6; @ҳleI΅&zB,P_Ƙ1/Q rӵ宏e׮OP 4ߟY!!vI CZjKSJW|AUVn*9s:Jf5,Еr"mu޹ N"9v0gѮ>O4W`ūXLp#W;g0=_ydCoٮυ Sc2;.mk }A zmZ%?ZƔxZl-=:iܚF=~LiLx{mvmxJOs4Paq%$$$F0bcc%L㦐}| Mų۝eF)5kMӪY+Zb-Շ]$:GLBw@X6Q:/h]82*$>AB'Yab]qY+>@>s_qqr(΃% 3P/ʗF /`hWdн Q(.H LCj*I<5?̑pr+o `_mN/Ѡ+`N(@' *eX)ɖOd]pS"p +KSlms?VMIʞ_ƿw/War~hk(ߵuX ٥a|/E jev)=kQRn ٻRZR["6p%{kBKſ_,w?Nfzxvz !UHEF%c*bb1+I*,v\v-6%Jsfuvz]Z7|PgP9ߩ{jyjrE#A"ǣO3mq$Psû+X.=ߺ['-77f۞;lq wRFЫ3" nCkY;/Zeޕ"bFv ba =щɜ ]iz7_^vؗhƏ>u=# P+?Ǔ*?cv')3Hˮyj ]>+ٜ雈I2D] e pܖ^ɗ WDcrЊljuN6xܛ%L;zm >\x6v :vgHl!f6A ^F➃To_~ HK_-%m.t 挄5ަ)UE޴C}םCN5MPfe:qm瓥0ܻҼ>DVQ h3:D̤wSw[~w-y7fGZ#[kj(p~J-ώKk6sn*QJK}J&^0?뢫9Žnn 4/Lo{$y6auxqwN[FLrZcfDy;[譵> bz^|)q}lz@$!D"KTH/,=,/r(D1,"KE#4u97P>$KX,9Z CiN[β" YII2m3}i'x;K%i?dRp |,Lޞݾبƞ\S{iRR:0( %Ffc*G'_hon=_B^(oQ\iNKulQDXL=_1L}3VLpawd6-`~q_DUYw!j*JJLF)!PEU,IU%+eNpZE:$s93jP"% 'pegqmgpPP'F?,gb`몳eH ~8du=ZtESI3d" sQ2W R)0LߤYnhZ%F)@j46R*d@wHhntđroZCq]'N2C<hh HmƱSD=\ N՝!ȷ`tVGYf7ތI7 Ig,c*x0_p.L33=|D`d4j[]1L vaqyⱅ86'QFU*V>'d`߽ am1\{"hޠj%hF1C|06?wo׊/ĩXH6Hya$#dBYV{kgJ70\=z`E,QB]!gIxSKȣV]ɸﴬmp gbƢ4 ; zh]H?ch#bH5EbSZ'HAKnUYߕv ȿ}&i i * i0, _3$ qO)qKQ4& kTq) t1խ trn7%U\Vb#sS#oYa`.p(1yYryA}Bqpb0MՁ݁- J+ R2 =$f?𢼲 q,t~xR[??oyxJ^Ե0w"LӒZ'K [ub“ES#j - SHR.%iU+`FA?}g(S}_z2ݮyݨ>Oy磂| 5""4l*W8YU:Y;]_ZZ= YÞ d~XlYl,7e)FPpX[2/wl>. j bدqZ4%#i_g;O-($?hbnR/i6>m=_S؇3cݷ]NCcX>@g/Oa2Zoʥ,C}e+CwzcDF[f.P搜D@JPp ̄Ө<⌴ Ms%AktlByoWNiMgz: m_y[oW:dm5m5~ 8CO <\T'椩+hy nXoh5\X:kx! 5kxCz$dv%l_%=bc%ɏ勍&l?&<2%c3H%iȔBT8d$76RT>'ܗtN%i9% 4!0~ UFFQJi!s̑ӺBφ"pD_ h\z}9eQ\R2I;ztT>'7Qӻؓaja;YFw0 rFabf҉´<ή_Ƽ3% ؤ-dHLI)u,oOٖzVv`+mw{P#x68GΧOT2ܙK:dƞY>ž."IB#d!ct42XOa5 Ck bCvCt&E?p;^RGDD`2{ 8L4C R MxFsמn&;.50#0U{wp+6/֠iuEt/ Ɖ$gي=e04wlJbJbAr=,!Nݘ]$b  N*b N%dgF؍h7#O ؿL&mƯd>n%#4voY[ *pxi!XdS/R))P"P5ԑ5v y!WњާKPc!pN0 :X>Zxu[}~4ik9?!Pja. J;Kz>oIKȉqم)Qv'ʗ<cRQsv=3cgx1pCwN6wҧ 1gZON1ӄglDQ2WalI@UX+wN2?nÀѪuѰ^ݐo%(N;8 ?fҧ$, ?p mkL* mG҅Fq\^ S3dWv&g#A!cRuZ?UOsCZ0uDb^hDc/ܔCa (\g.jdn+_WIm͛@V1p kEtǢTw7FSD;pHk*R1dNVԂI,sN,>s]5S;YX —O?l'@-kK\/"OJ%Im6Q3,F:V^ÜL Ƕls{|‹6ڮ2=N*{D|?X|Y0Үg!k~DZ{@2 ~} VN!,~u&Qwd9,b*4Eb bY_uY-AU;֛ȑ#s:#;0ٟpj 3}}KpW5-RC"YGiJ` Rf2b VivSJ'\҄9@qr^fGmN%Ñ ˹ m*@Ki@]c2g @I o٩66}fvim/_5ֻX7iVã;ޠq;^(Ia,,kh 1…6mK\xs U$#M=j\!Q&OͶ NU k72N`%RU9v)GˇşV^iנn~?p/K} +sJ<$2^ ](dNWpCIjC2{M-n旲PgIL6*NTŬۜ۞&0*;|AX% / E|$.Né:S\(uѲO%QZϗbYO#nw|Yt-gejDqk7s-t3*H2_ ƸΓvwru rـܹPMJq͠Z }ғঝ3@|F՛T/߆mgho1tȠW?#~OiU6*4Uem`wu\>ns<>SFЇ(&Ҩs Te}sxJ+ 9L6@m!=`L6AX{pO_Ǚ fP~k&کYɛT;ۉYyTƫ= ,?K4l?SbM7{7݋ZyN3WgسR?/(I{G}}% ſ?D&S=a2}sk~`?e3b @4Sڜz=W/eovn> jt([uI_U, 2sK؛Hs%ܚDžЉt,m,n+,ٳ0n6ǖ&5 V7͋JOENUX`4y-﮾FB t{Moj[M7@DDBW-iPoxˏG7oSbܸ!ȚQm zRM (7K14 %P :33ᩬO(Ŧ i҉NGx8AYpg\h6sDͪy5Zm[ ŏٓ ì_RW{Q@ld&7Ìc^<5LÚS%k79z kGR^rٿ N'1K9)0 dD_پԃp\)TԹ9FUe2ψkB${[~[<={kFD\+oA2:w_:6ԡ̪q &DNVPafQv5v/*Y` ( i+B^۰|z>z'|\< $jn18ZkҌ8'1s1QEp <-;6Jhxuy{I: 6jsHw%Q1q,1oqYei;\^K݅ ymR7ݳKo~8B ugiPr.h |cS^[ S+PŕM7|}^[O~ 1`%U@#'^JTRq;X MY}WчÖSǘ@| mS`L$v&r!&]J 1)8o|5\R0ʥW2}3iR_0Uː#M8.1yNtAMOW_òt?8-W0#6.bmnzKv(z7+-#v$mH'17Rָ˰- +V|j13_9kuLZL{17Ibx۟J ={DsXY6m_:@.Ai攢E7#&" Q[mU&./J /J: ]Fɮ?fwER]K";Ɓyo,:B\H"_M8/&<A #_ l-ei["b؊\—yv1*!1@pϲ"D8&2 Y l= BK3Y 8;Q"Ә#B5@[8"n6~x:"c3%fԃU^ wG]lqL pqpP_{yQ̈a^4? ^A voi|%oE]n"y bueC#.ss8SڙRVWĸ?#BB1/CI#F!FXX—WS@^r^dz!T¬+8BI0e 3Z|irk8Y @pcE [MU˗HPSy7R^p! ~/ -otk~Yd+/,P=5cP_FphoXtҺD6E'aPfH|uWJxPxo>o"E}N9$}7,bhyV)%Ԥh:3(^v^ ~.L$%>b 0sgo:DD;ZzV.F*lwͶx;N+O[-k8p;Ud:VW+MS6A{u5y_C}>g|ΗNQ4uR0.4`nfǜ+AVnaY8iuqu6bsBZN[m :SMީ诐{V" }#iϩMwsxA!4|~GMZ";,r.Z܋$0;}ToH&<[ NSh%o8?YJPoC ~H[燠uCP\_R%m4_q^G2dwD'Y4Y+ԭjdjńeEɓ sŧ=,sӛ滮'7 -+ci~LlOymA.:OJgj%3,JWrŔ%LײXPx~ľi[/GY`ȥRɷBNj$?ɓ987pJ>q'aU5o=j4Ph34lg.QԄ$PK:Ό5ۼGi[mG@OVvB_ll&;WXe14"HBά/\LHcF^at Wq'``Fh}31<$uaػ]SǢc_.AJ!]0Y)k焒 76ǫ(_L:ZI[B%YILsכ=xp)[QMeNbE-4KF0-Q ּꫲV ԉD+ ;?ŊT}"ltEyk Wp|U&l0,`1ozD vÊ撘,bbj>!FH=+oJ3(h2d)>_R--!=X+n Zb:oi[/ZM#W]ꌃGH:(6{)Hr5i6YLU.+Uii%OB5\"3BE;RDU>Nd .G\AES+G| J]it[5c!?ᓽb2)#Օ)QoYA ŸGz,*̿a{^*Xy0J]e + ik?)9l&u"ɵƻIe d|K2[LW10FHA}KodkX>)GO2Dh*ُ[X=Gh.V bZϙ)ZV<l)>ak6ې7a(O:Q ޙӦN_1zyNw (ۙ'93h^ǵDy*ϒ Ūwd##T14\'dOΙ)!;E^$"Y)]n+ 8'z;u>U?Qogch3k$7+'U_KRuAM+5[ 7)+J!\{H ^yE^0 ?lʔ̬?J[JB6/L6,FiW; 0$d/:Vq@ U;4#ċEq2"E<ÃPEa2%T^L8+õ`TH ?ɎL!HKhSog6Q@=k:#'yϹS&/ʼnMn[k]V:UqѮ],eX[p5Cbk͢2L'tԏx LEa^q˕B V:хv7zLk[4ڼ0,1?Ebg5"bzmnS7^J[0X5JR-Z# >i]ؘ˲>a~B xXM \(*d@,\_U׬^<촩>XN5%MJHXdQ:AMCjh!򅒚ֻݎi2s%Mo{"HTTv5hP܃GY郧2EC3ztk@'O\/kX#6 ]{0S Eڴj ୩٠_[|>tbVFU @ܠ/M]~s3KAhNTgO'nD3܄ZD-TX.,Dˍ@ꢜxCj4>^#R;̟"Tv*Y|DW4aO cϲSЕƊBVf&1̃gڻvF{/X\-AtKL+T(vkݙ=@B⊿b6Xi֣6J`R9-ke}"Bƴi5xR1®H%𘎗ϷHW$LP9S1 [~ с69b3١%3.6SK/χkO(%_A!A5# 5N,U|ݘNLCUget*G܁KBFX<:nױ[Z> &mnغ5h/7UU,; ]TeB\2,5!K&0ͼr: 1Jxٻ_v{ ܠAQ637zf>vu0n\OpD%rCLLɺݢ7u 2{谇 ] M}>2\'oթ-2{xJ(S9~5f 9-DEܽO{&3zwgt|gj;߾R?R!:e\SY: \HBcy8g?AHF>- ȯ1x#Ɛ*Mt1qs?xe=/`-RJW =\kį4V-fG;4ة SBdqC_Mܖb}S6sZJu瀎fv=c(4^(܂u/lzhu#q1:'K|cdvN\}GfںZ1ѲL,$ieln)A埈G2k+ijچWDN&QVL|׎Eۖ@иM˖5o*8fܘL;+ca ١<('W.&.ä 1;Zt1Gnk%H1sgCʡȬ0;M'pBܪ^mlSq@p*h 6Ak#/"BsAӯPHF+/+YJll yO~ }m'dX)ĉFt{{X}`B^<=݊SӤYQ1rSqv.-탢 +,zK͡Hp*ɜ_Z.$[Fې8)$q*Bw$Mwָ!RX $^|&ϓ*FzP5UK W/h!y=$ xL;4򃑉tz 'DO\*D~!Pp+y ƣ @C8[Yg<3a^ (*վԶLo-n=A"@=vo}bϾ Mlp\Jpvx}L~Áh qwؕlX\+>3;,t65cu(96v@U!u:?ؼPt_:cQTfBš&MP^ݒAQ@'GudHG0[@ 7 pkmCjYL=u^: 5.l()Kȝ[1J\N@]U-RO]e4j?jny2+u]9?i1oJbj.=aɪqm ͨ\gΝ , .:Pu:Y;mǢ%?Xe}H2@5:Ka;u;ނGOরuyd,v/a@;C6|8xCS$BrBt!'uN` ;ܭ=K]cb෈6~r8@5ڀܛ(fHx.> %j8jL A@-*}Z;V+x5los1⍈e$tZ?W3O/1QZxO|cdPԋD%ʯim.ZF>-7qM+\|AX_ uQlM[_.ʢ[z#~!LdPҼ.!5|k hܞ;J1I> 漪'zj^ se}'h;9s06mauŚ'ݺ sQ %| j'FO^9YFRrmH{ I 3hp)/!c2 M{̆&Upjh8Z%3.pc]m⒲1ّrP&`ѽ[lXx]bt4 q4 r,m=|:B+5B xgj~qᢵg?ޑIC֔l33G uApF \d\^u$Ad''Wܷy͋oJr$a:\}(~6 .u>|PPlA[K¼`AOBAAYH'lCw>o1̃1{@=V`" URX46r3;m7x3a[B_Ʈf$Uϐɂt0TU [1G3(mxmc#F$iF/c'`5XGxI 'He54:2eyG?ҒRzɷ'hcґzhCu$Rh.4m'U ΁Up`8B~ {r?OB=4ɇVCPð悸9|DL~bU2FFW9P݈!²6Spa|Ge {skY=kUxsn^c`Vo|ꏵeцYOzrq AU閰 ψPCâF-($Lf"g%ǤHT$jV۳:2y _Ļ^4tNH' r4ʜv}& o0o{br)b|j1% !je3/mGb݌1qw29R@><(Kh4DF&͔K {hU]'τJ@P:kn 9wXGXcDV7^y../(*pmoDWQZe0K)h6 c$J[ƃL@BJT Й-z̔m驛mmt:m kT3Ipf}z,jY-uB q_W17 =A-t"Cci< xϏJ:[8Mhύzy}Gz)]X2u}j6z "E[p#]!j$%†J5?ʹ0D#@6k6NܿdI\ 7R@I&'&%1nTmpr-e)n, <Juޞ6YiymZѰE! =<:4XpÖ=5 ]I`+NDK |DGۆ1/ifO==dU$eD-{Vͯм`BEޫQ}oZv=:%UB8*|YD- hM>+ow S#NX2V5 SC$sP7 S#٦OEb 7E $ 'ag5U\Ґm ^9DAmᎴ;lB{2jnJxluccOs3#'a !o>7)1`h_Yy} Xʉ2UJKB#wyW旈4!xgُ\k-)%Ll.w6. L\c{~W?Ǵt2]45=lîj:YàlثQײI*bˎ$53d`)y99kNi cl_5z+N9/أ$ ]v yR+myJ>.U cU'3Hْ%mi/>~ok"^$ߒG?h!N5Z5c}~|Rd/X}{c(°X2/s,#S9؝!)fCطo6eq-pF?4ԵGf`^UvV̬ˋ-G`~؅)D-8~[bv#hMۙ]V3"aqZ+Im>aA Vm;ijk5oV_t,Ɠk$ڲz;s֩{6O}Y%&p -m6_wNՎ:e=j\lZ EK&eb {7ӭswĤvC~E]GZf0x!t GO:,nmT+72kV;_6(\?GS=¦\'ۊUT8bV&U#m+ηKV,~ߎEw~.Y_.DƟXCYRQN"wGLv;`'q'ɁoSQ>f/2m>+hրM]2y|Uu#(s'(hGCcC؋ W^ERn YupXEVmy͔ Xl8ۻ !VbtEZ7WX`4HmMnG;?H&SD4 X9VLI0疚3 B$p Ekr =K5~bᗃK-U 'l_$O)`}wsjxEcbהW)@|sP1 fcydGST;c~XWΩ൮,jtkor?m=܅}`P?nO<+ƕA`K"R¡f6"U2F[,EC.  #V!Bա]oҩ=@sHwCbNeMȴ{Z=N󑓣+f[i_>?5g_.֕OC=7z >{ˈzFR~Ga-\)!1-W!`ta{0T&ffB^'hrC 20 /)azf.mŇ'qs_9g_rSԑ֚(NZ9V䷞{"p) Bvbk{ q55=K{e+ޝ~c,'HpIcR:|Ukjܓ:Q3612xlP$ tޠK;Bּ=+e|}v+ќ+*2w͉L e*JC,|SA& I .L=x̌u@~+t3qVScHG'G''{NCd#ZS@Ru9{hBxXs4{_{ ,Jl|Yk'ZaL'_T6UB^ćxU¸//da Ɂ{:e>ТjxZʎľ}$i 0%j3ʏrrbǣΥ' 8Vg`?@TQъ/®7r(]h/v Uz$pL+X kҁ( Ѹ3~,#fܷ-Rjn|e1IY76q|`5\2ʥ-9g"s-ѢOk>EQQM~fŁ|,-,6{¸66KDeEUxe㹭tI3Cs粊۸cjNYY}7q486>q:8T*%IIgK<\Wbp.vҥE!y?Ѹx%biTG˪Z 0K\d0g|leUU@V NnO6&$D f4 ߀cg }}6a 8 30-C| 0w$DB@M`o+w3\}) E] !E 0]~׮Ef;A29{YMo@={g빏B2gA(|*;Ў.D(@Mi'D_KD>Jϓ_?iָ[~eeOBýӛ^pd/^^ fjl_Y4c^72KG4~ XNƭ4GFZ{˕tB.COǼ [ Y$ n.`$#v>{ ji~ k C|6{|xGP)]7dmT7q)YPVN"ۅT+4dҌ eOۋCӵ @ܢںEǑR>mLֲ}kO0]jťD@-=fhuSM̈́?Wd9vr^(Q{lhP VB=Wb@m~JmQԬazIڙ0וmLOVu=ȉ[s2+YR|g0F5uC[:뗍ڗ0nڙ?صseG j]dv,&$YMX4w̮iUҷx$1qX2ӑfKݛ|Nm{* t~< m=g|¤/>QGa뼋)lpqԻo3YVYӐ+")v,2v˂ XцȂ]Rؿ6,6Z [!َeu m7g2dR2 f#NZ゘>g5yk>!sc+Vf>bY?wKh{ kHj`(R6zg^2 Jxw̚;hܷ T7:/SYVyٴ"! w wf'=(j]t 6M rَ}LJ.]:rˏwXL26[~# Ý Gzb/4vׇl<.BǷR.tWBcuw6+!})VƐ5Vzq:z̵~y6~E^4qcu֑];[6!RSsK;[N)nsjTLoh8Kaj]zJ*#=%r\&6n-MTsڂFKTșa}A"?}~ucxa2tv 3?zvx|=!a<=T.\1 2ղ(FBe۬Yy8~WHБLr]&1Yx={8죠7H 19 =|A=}QMK7#.2+e"иT &1`]؄?N"WNF7Fe̫~ײG Ziw<ɣDpwJGI^xIwSn!goVIukV<`da&brbx6dM4Pc{i6oV2Ƞ( O%"u>fj>Xh,,rKhD f\IIhl-7G8G1 J;G{vj$ E AHJ!cݷx@$nU3;Ѣ Y4 ^]"<H;:fA;Uz|Ɋg-{9-:ڙVz?'G0 Y3b`3fu4Ax 6p4"iP[z-̀WV{`Y!ݏd ^.$7eNz]xx N0^5 y51S^r,7 k:v8gXoyx ]g-0ߟk k@7n:B7;XF'e㶐ÏMKX}7:}uW{h&~D25b>U^k4=A' j`$BRQԁ_z`-Si*okv/1Pzr@4"L?[Z i&G.3>@X bYy#H2o:Kp}"ePķX?q£0T!*'rU4,: oݿP":1N9dx`GjH*f0';39N$L<&V%JAO0i:6Y?oIZ~x]RfXc#"QmK*f('/c1uU$V>i'B17gep TJD C iȕ-oS͈Oe>w*>wy==9$VO^~^9>O|_ P^А:r5A+$WVd{$'ȮАؠ6ŕT$6&dD)L 6pQU'NiF]Cd-QmˎoGPT#k.jb. _;ÞÞX_T{ay}v"ĆXý/Glv~eIYCVU@}9Bc1ݸ0S}Fl w@Z=ʀt482 p05VD^u RZip1 n Y`Gz2)Ud* Z hG:.F$Ӛ}=u%4_>f?Wa\hiAw#_%eWOxY0سΠ*Pp@2U:r=/:2CDvQ1ŀ1XxY&PCQִE.8@),r')!wn}c!OjIļpD6lL:90t;n.:93H3& on̨0?_9np>pHubHH"᫤D$DD:BU prJs 6ڊ(eO16O]60ѻWT%P=_[2XLa(dd B1Emi}yd|,, cH#aiG|Z`\ iݺݻ}o;<[`;ol]7!gչܮ$M]Lݢ$2$;ɩ6)]s$/΀Zh݀!jN/qKmS⋏>p'<'hw-Tܮ> cTy/+,i%¨>̤]3^G%[u1Vc"+iiI'GA>$\d^Rse\96MJyR.zж);͸6L+,:';'G {l^ `aq09u>P@zV9v>!!PPBL ,~Hy,u7t "#34Dʅv"_ӟ >h=^lh[$g|z~sf3))%j22voY,+-WW0BJY;NeCS~@DD)aalSE%h*q(_?pVQYz }rPX_ƭ2[~j0_XNlC&#^,|DS66)Bj3ƂHA6ImqY Lʚ+DLCٰ>]uoztx,dlF#RDlbf5`WT#CShKַ j']&ޖ/V+rbD#ףAhI3~R0PF] :Eci2oŜj$(@fHU&]LC; +dIța!S!$f'h!a;t-8 (ơJraDO-,*Fkb7! e2Qɘc+ dJ\ZX+Sn<Z(:ũTQDNxlxb#2^[/[^Jn/߅@AaOfvQn #a:9vق PB|v%6l#l%܍E#ė {lM J4ĵ@NKGI}Y*gD,n]_ fW<`$ yGovp4 0oJڍ`֙P͜uvNdA x]83L8;pny@r΃+b!7C~ rեe@kfo+,) qW Gq/A1zyTT'|^Fϻ4TPfG YmB ~XkU4ɢL[5$#B\ZaC@PP~|#`')]x3#ZX3%yeD W4 H7w mlEW:N6,؞lX0mǺdf,}Tqk ] ZT2py\䂅-S-?k(Jm+h؞H4}YS $$GO5'cR*n%D,ۮZLiII:⩍4^Ķ&2Ȭ*r`~֑)M!Xl8 diGX[$13BL`B q3Bw'Cxd+[Y7}c5n>'ziB,T?Z%KR@_W#I\qstqg{AWW vJYMX) ߃Xpn\(Xu,l|!os$Rb܌ͳzv4qgA&iH@Yfe"'Hb28PvjD, $ӽLd͇R꧿ˣXvFz74G\tQ}uKdS*\J y%fs Ӻ"dT\LP}8:gz3|?ᩐHSMg)Jt *nbUQPv (F-!Q>Q!0C!Syl(0+\wz9IYx\M<) 8Xc|ՑCTX# e} 腌̟D %5o߾SgP\Pv.X;֬e8B 4e?/]3 3ⷒ]0y8"d')u[r1j>uy &r>rܮuэ1ݣgjVYL&&d8w 6SjҔaa^tXEb'qdpHz;X+73)C7*0+O)"c ;fK92&4&RnTiMǭԳsof:HTrkpq:EZcna>BFDT68ۑ2jT\ ã"U;~=avX_ڽFcUlF3=^I#b =:UJ~q(/,3 yrqΉ;&+2ӝsWX\LZ@0d$ibɨ9D"{5Qel*qB{K 388єE{f5 F6m^X&;G#XlBhD19ϣdsk{H%=/ F5K@.nⳡ ?Fi<-tDEGk0 != >8vG H?ǦU5ࢰWğ<M6J8x4Sd8FO {4r4:i%(;,/Dn%k1!O1tYNr\p  "{_~cjO,P0}ie#97Ybb[6[/熒C-BUyYuh%WdG7\p| ~~oms}OOv\w=o Ѽ9bM~UC8{̾[8m۶tlNN:ݱQǶm۶>nU֭kWm~s9{ͱPKnZ}R5͉\(sN/mK4Vi0P5^?)EhK;^E(,ZJ,Hw0e[jmu(Cbʞ'K)Kva}roD;1ݾJDh .{+4)s[2RChvRDhޖ3}C;e2K2.6`fw@ym`g\ Vq@K)ǎ&:Ȏ#sm!=s*DfaU<Ҧ &9>=:(=x[do5Ŗe4` Mj!Κ<XZ-b(l%?ۍcn`nf)O%iU!G֯%+ݮ j1_/edN)O.S̉.t:NcRҔΫ>#JY a08grQnFl[bnA,qҘխ8aM`l'煫Y{Ne`JJI'sp5; ނ #^J4Eb*"A=*+ F=Ҵ))D2Tai׻%)V(C0(Grh5/Ԑ%KvȋHIG !B A"4a犂:H`%{б ~p4]gJKw?3 o! o*Zi=,ø@;l7ȉtaaø7t[Ay;ly.ͧ?A?Di7r~qC$5u{02*m3AL8l#ؔR:IDݦɲꀨNr94yGX (1 ֋ڗp:L4E(qtoV)rMQ%4^cյHIj$ڛt]9u8v27H58k4`> /wCiYqd#5uE2 "{Lb%<|q Ed!1Jp>NQwrޚ5u6E,yLeZ:>z_.il@w|RH/TKIs#_+⻘^ͯۖ0hL ""BGϧL!L& X khɊyԵr? #ԧ{^X!PXd5(Xd IPuƾ/lC䪑YHsY2훜"NRZ Z.;->ڕhImJ?ֿkD쿭_-yb Ё]MZVMWxtA]UT -{_\Mew_ ܬ{3-W yr|P9-j ]4M5m޺Tma"bqV{UE*U*7+FaЩuAGhӉl~_ϓzґДZw|-޵gsӨirBCB[wd}t~ُ&sAaqBn=ǣd(:p~N'НgNH] s/w|Sx.B%tYL܋cK[a o6fs~eT af+ex Q+g|6r*l2)la2lR;lG?>33&窰H&.'没RD̬ӎzҎD!0/1z0TR1z11DA:S{ȬMSḘR"X^1>wRSŭCdhQi6,R,ly!hH1*zpH]r'KXK Wl$H$bc`K71pG g;+[l;3e;20Hs ;r Z yja/Z0db788r +f2EFv,+>6\RasXgdUɊ f|羿`%6 RLkԀ=ۀgEހrUyۀeԀ1u>@@΍рŕUҀ˭3Ӏ͵W*ś ׀{ T⌰p@0;R|-)m2L9@({C/Ƹ7Rc,p7f}2ړ; 5-=PWt ~cwcin#&${j5/]j5=j)7)[r3"O0j73}!7E131g3N<1}5![fgx UH 髗rT 9BzS5g9rJFA}6#$[Ŝ =G$r]8t|jՑe!;ZW&@whBSͻ-k-o^ڑ*9Z}nZ^RcɜWEKwEGfOuD3;$v]Wǵj@ŤbIuvk|ǨjR"O&h*VP]`g[#jNє19CBgV U{,$yܟV Y{lN\V?hkԜ%rVsܶk,vO_ Yobk]c{89[99>H"2?1J6YY=ᨄˊ/0bkuX d?[\cz \9mD`h˒( j]k5Y)b倄Ϣ/I6JZf-)C/鶺_mXeLƝ理M!ZD$M8.jٟɲgD樗{w'V=.TYpx+cr>MJVRxOs~ PNd_1F Mq׫49SesU^)xL-߱m*4N>|/^$ =̿L[733?__Ҷͼ"ڗ}"V5]" OBӭ)Xh^NfhKҬ Rc[Cзp| mj}ka}w] ~*ZhH"HךaLi_ }FNc _Y+v6OU1nî^0w0%heTHdq^pݒ&/Ӟ?Kto,]6FO6tsp!\(=?TO}U`y?ɫ2i1/{.J/ԦQ(FQ blPd=ֿuڔw "ՠ`%)P:Ly_,a~2x6,xDXs ȆIr(F>*_G !r@Bex,C v2።KAcؔF.x\+P bLE1Skig{V/α {'*K ܨ@LTDzBƩ@%ULo/I=dt;rJCCk4ݿ wrȖ:@E:Axߙ/-oSj=.3V**m+ț ;!Gy-YxHacLی 0ő9˲绶 ÷&;%ʙN}Î9rRqiZsDWQ&Hl7\9IU$J''ã @$oz{3M'"*"n&ed2QE@4*Wo W؀pu Wn?{Agw{9~e[~ C/{ +@R6qG]vRoف !R@M[I'b" H35MP>S<`]J7i)J[o݅D"WY9덌5n_x۰40."(D_[{ľqaOvh '$e$?*Qz`dX;1<0zjbaԓdvtN3"Q_5*v<(1LP;=$Nu|ݜ(>#\83XOhZ14KlG[f(L@ADq(8)_obYZ7z+B'ݕL16{cY2[9*޲ ?ZάxEƛdZ`mtU,,\T鴪 0,M]Rh([*y՝<)4!Xm>EI(hAh~ī ,6Ffj.; b͒nǸXMPnˡkѪPH-*U\K RٿY90̥M<+ԩ6>&-5ye="GV3"`ԭDwb2F ةk<\{ ϿZ 㲈4-+ ^!`@߫~ z}K[Pf1ZT3LsN<2Vxҧh~x\Lm:M NH !vxxɔ4\Qx\#\XG@=6+xXpapXOȩDFxDsFnB33upކP L2tRFunyΨ p&+P|as뽗:? @zFzB :Рw3vuF} HO=Pϖ$F™Ks?{-Mw|[c_2@45KsE iϑj& bF~ᓛTCNWu+P\?D"H}DH} G ele~^#&XM >y-@hޓAm_zA`1b=`$cs!W'-Rv#HlJwJΙq PŽ=w J[Fx`I':%!l̩n|q=!ٳ0ߍk3űS~!Gfnj~f}g($ZOEȸ؉N5 ~]R`I\tgRєN. +̓5Hk6}`8=㉠WVW ߫Ake>Gaee*jvC}\hF,Z.ɐ2ʷĚ6ߋK@g!~2P4(~Z*;xXY|2aah3A,"24U%$ EǬ x+y.gHzgMZgCt]dzi:{숑>nҰ;CIqVj ?( Bޠ,-JACb7q9Or+G!Unռ=YӀMwr^cGe<ppQfI+x6?QbVT^?Z;!+fbk@` ] n&-0&w*g%!6`ZT>ֽjY_ KzDUI2)|f"umIaL{pkus1m7A\N)9b굯78U8sB&axjϡqҦ} }:*?MQPgjaybgv+?AoS}^ }RɪA8Gkr8@7|P eN$,E]B"Fu**3!"в#N# / ML6FUٔBpCC] 8ޒ?)PatT⻐E*"M q M7~Sq}Xjn7#)l+xjε̙p_j٧gHEX~,[:嘮7I 𭶟1@4I<1фvI% S{Y']K=Y@ཏ|wY6Mډn s=#faX4mo$+/[78W>]dXbg~FH4 HLY4Kxc/%KGD70/SP `01tIUreI,+l<00`E{#;| cjm<2k}chylg!߮#QOkI^5wET80OʠnAJcHğ(Z4.?(; 7E0BMcoK{rڙ^O9e`7`3pUhK|-!EF]՘ bur/_=7 = /Zhف tv;y7QL77i[=ݖ;Ac{i /~Q;=:?]!͍_h{#l#МhV9H1R^)1 w)+X+BaZ5ԧ81pgyRy1AA A\nw ѷ᪎Rzp]󣖁677z n{amw\{$7p:W&Z@t<# 2UQ!l%ȬսI,TH5[ȃiY~I apff(-$| K~,P8l}ԲQ\+0%]uOPJvPZj%E@¬?\H}'U}[5u8+% 4]C SI5RIX2/c\9SYAon҅e<ȫ 7L7CZ3 ^r1}vAcP X@Z &o!"onAj&&/L(Uv~u : ^.#9 UT_s@  >"ϝ9"lh8Wh8]دG%pѹB;s-xU ) ;YZ:Uv2Ҫ @C- LxAayAig d6:t|@DĠXn@ A^Ae{b-AїTÑVhbyX[{iD`W`asR5Ͽ,ΰ4QtkQC?Q fWJ@AXYuzUr0#Τ)|B,9l|׊}\;%`x8f WHJ X wPe2D6S {W4(SLpb2SDǼ[}2u%k_WҁPrv*4&9fِn.rg}j9OWF\9Y3D'id(/ \ BT+Z v{.-zU܃8~T9W)d[k[2(dϲ֝.nJ-QcEizךO,F6I)39W6QZimB-G.햨nh O8˟.G>݋'2fޝ t!=X̪9ZtZ-uw(Q%)T?T1Ikw6Ӹ_WzH37E =c5xHI pEq &qA h.2ʳayІ H:JF$1SR˲QЍ2+p⏌z1eK&'nN_H"_eYh1r:vи/c=,)},m-~dA15S-1Q3N)U$.l4Do@Jx9Vq@/>o->q0*ХHlZ +,7usRki j}!U`X>XEbΜ:~Qc ŤfUmOW'S ~J4:7FM94XW!tHLBP7#`OI'a ȚyB"(x2^ʈSeR3 wɄ5gm:$~,JâHphz +AXa&X)u;^GrȰe71P_\hD[AE _l>;~x>&{z'#ƪ*G8~ VAm] u`OLבBr@N:*GwZIj\^8'`U@r_'ȓHaԥЧAr@j"gC ߇W<9ܧB5+sDg;T^{ 4"IpVt et c3laC%7z=   8O-7T0HmG L X%X*P*PAtGRtg"~ز3MttxHOUx|~3EQA~>urp KnB!Xx>4S"{қ'0P /X!rSww|?M LE!p(a3vY}'pNZ% R>Y$hv$ʃbmY뤱E{05kfhOsy]EtBK|m =c|r|5>F甖f!iGuq-$x@{K⮁A vMUIՉqwyhP]8Roz$yeh9^eH$-kvX8Z@BuC&>//cM:#}wp$G=Ug/KΓXXnkP+!:望a `(3$XPac}!:F6 tۚr0w8:g yl FOяWi!T1UΫM.[ˑ2O2]Jşr2x!JUE GWZ೟Y+?wQpx^@-˴Vj qj.!>@7fhTUVo4P=uEyUT]ՂqJP])mbNhK`OX _`:͇%~ElAF D#nه\J V3>f[8Gyq& XE-h$F<@0?IA3gV_Q7(7H0t 9$4V^&)z;6MEhFs#ȉmG"1.t &0A~莵Wxw!LIexM hfQm_KI즈Y9ŅIAwmrfݐ=#. qALH;WlJ>)@fv$zöëG$B_TӀX5dTW҄H0#+s "?"12$bB}!NI):;n~J# Mtd6w2#֯l0iHKӓO^WTApdyϮf4μKt[iA\zqZ`/%ؾd0DopD>.XO/W5[3{s'pI@`$J@0 EHT(Y!~SS`bj`aSy3@ҹWKSNLXZ+@  ,) UՄ7@7fT(9̫}Z4f2-2K[k6VN֓qY'SaD%(cf.gyB77rJ!<ɽ9;n|`ޓ.[]#'jPjnSQA38jjH49Xw` a]tv:m+Bd4ttZB@Hz]6v:JPXٿ=nwt윱*h?{KKnڀ ajմC&rYQ9$A$؈[ޗ^~ {䔩׎7h[r|a\uYuB$>r2T/R#T7m~oId ?,1"‘:j6O~E'Lvljwl((B&_ܑL8qa:V1%Ppc> י0t3gsUiۖ>y]ipa=?a|S(G#6>'4yo%=n M(mA!lVo0׺{h0Uˇv>6CFڲhF;n!h9YTY+m1 !Nm%$ oA8'7F3ΦgLM:j'joi Z=T"A1ݹxTcGR^%h 9^AW[guhyx;A-87iM/ ~upYK4)qeVz;kGIHki. ˳f 8g+\ @8ªFi lJ3W~MwYΔAR\S`UoNvMFv~ eqJ YW5US䲕*- Er${3A F:o{3p2FOpj R|ۉǎwzZ)sl2N%[TB9jOr4%Q[EljԜӋ$m.t) WjJw7CgLȌ ;Hs:z5Tmz+f508Xfe fv 3˽JT;+TJpX4+G†t'uq& ;TsCsi8  jt3ň}&tkMh^,#|tk93Stb|˫4E >b.8P h |)#[ Oa汢3y] JC$du誨.K.c瀽e֦ D5m#oh'ŨFKWEA)KL HI}<~SJYx\ jI}j=3|扑We~L_1 b ֌OFGmI|ntG|%Nx]@ҪUlf'P<9ɡL_-qQB%aIQOԯ(ZVyKo1#Bs\;6FsX<GڙC}q|{(ER"d+k}KJ1RY*Jʞ6TJd)$Go<}>~|{{qWkZwϏ}GADRkj|ku6-d?*ݟtL{GFagM܆ ;֪%d']Y+iܧr /<݄K@^Tť*G,]jt){J~V3*b E[`fs=lk9#YGa/mT*g9UjG9QZKsV_mix3v2غ)tIBT\\q{A\죭ުqnleU|/;{\<菶9Nfxo{&PzD@˭ag$( hopZv MVh[ߠ;aqaRyvN垸%/Sk ubFyW%2|8>wuJ+56eKԐۖWE 79o^shEE#ٮcqd}FޚY~hRO~mF.-%.sQN'%Kj=Qf^d5G9rrЏ5n2Ş[e?hc֞5ݡ7"yrN1 ezPdoϙ}ϴ1;GseSI= 4/j{@STdv̪O0bLd62ynsqfw #J"93XO.ݯ9U7墡}Uoj==>S^s~[{a^K$GG}Xrz` 1;B%Zj֍rm yrHp9xC;. .&m!}{'%-Ѱjb?#͆h4|d&-i'z(Uټqp;z?8kf=s(6Lnv~?wPJy9m,)82Vqg qZZ<\bc@Rݹ+" >oU?&.8IU؜Y$)g92Ș=IkjMu jpjp:v»6k+0etnR Ek̗fh>&ͤ27PȽ:C*ӕlUMEsvXާQ#oȚJ"6P-]YqY޽Eoa!U'i6#z 6~%\*GcԺe+9^,,<ڂIt5oWwnnyleO^M%B2n6w;b/VjJŴuƳh&)0٨l\ꚰn@w GXx|8wQ6^[{7%RBjD~ q *䳋}!<(`S5̎Y)T>׵2߼L^r~͚4s¬sWE{㝊/Kxj3uHD'6I<2_1Kȉub&FT]nU򄑶ck2;4_ hdz z%eG^!6LG*+b _3:&Ͳ UdW=8an;c)לTM((wፓ^Kv\Wsw5s~zB+M |-REmYv} O*ص E+oxpRGsDžz|q߫}3"vWj;N,-yKs6 D5lύ:w6X1Lm9vmy%"$ϗn6{\ekcGK78)>k|ͽ{B%T\aSFMƉf%l`>d1˚m!-t@UQFxD1[Gx|$aȖij9WԿ~MrŹ7SQ=2Y]WdJ[H F^<+ŭ(ׄoNF5ȩ=/I>7^xdu26WtP9)Vu^=82/ȴ?4r⪠}E=Ld~⍓c>cKz^Ӎ*h-2$&a; %evcQ_#n捇rcy/ q|;K6^69wmHЋƗ]9lx{Չ-u-|nxgD]企E,"q{} #$<\y\uCwwmwEA~{'zJg5Y ysJV6UzYhoT9$?UQA3xsKնHʴXy\FڣVqybא=J;;J,z# |$]罞&v=TuYс\zD{mZ,>ilo?V7K.pRU{'Z]wWΪk*< w3RjdzQ]ڜ9ʽɜY* i&6yn1DI{9A;\8]ĘobyLgw6q/˽9K p]Y}p+n',V4ԉ+q/̵^nxU[.~YުWsB#dQ C@X6+VP=:TQW޵hG\]uk_|\ݹEe:8y ʅ7Tqν_.A(S_\ }9 əh*U+Jl iwGv]},lBS=8i }" ~ Ege$R[_sp:ϺŽEم]RHf9؋\v:(v/*6Źd2 \]}cns23Rr9V]@33OK?~~U,łXV(\IoAX|?_U! K{﯋si;:`be*|#p}8+cG}y3kE+}k3cG+7: < '\^A lljpB4uh{"v\qX(qHO/xt3>H"P,p_~4?`iE SAz蓟@q#CCBI~xO(7 ֖@8B M}{8^ rv8M yС6Aܯ,O ՂA}=,̿??g}Q`LᾳuPg 4eL8LȂp4Țh /E D]8)b QR6ˀ', S g|!T8IL5џ- fcQބ pԿ0(@-A^J (oZ63XpgCES6[-PW'8@ZUJ1:=NCu׫wG~9mq!P64 @iۧZFn+*d,IK`ZfӀp8@n4W4@&$vŲ tUWZ8ڙ$ң(Og?}`L|g r"I.ĸ8.~hi]P֍۟.eCXz0@Z$N.8D\AyEkf.-LEp Z隋+VZKf!eNHUԻJ;Vk22)đf ?1ŴAid@1gݖ@ $Ny PgxqtMaeL4QI3RNDիc!9* ^+[(8x,L% ο2f 2oÉ0!D`K +cahS0hKg9IPYh8tP qJP )/K*C'f`Dɾ`8,uoƧ=wXTiOhq /§E :F_tЂS&D>B5(ؽe2EnH$(Aᒿddi.0xl^47bg7.^%r P\mtV"^L@&`4Wn{J!{Q0=CL9椓C>NTj.33_(>4ytпbo桦7Ix ܰx*(C?nhd)3,մ`f;8j e2H&[^vPs&R|Vc90i` ̍ĮK_g)ҢgOfRyȨۄP>]nK(*4z` gxH.]}jt s LA w-z ::~ CѐWaf #ʓ3 {D7}חmdcL?Ş]WA"'mzO;&|11s7u ̾wQw,wA>I#px3}VJ3H-B72nP&DПM 9>Z4W!v丟?.΅0Ftu)lCմIl CB^JGU]Ilj\"JA|sm<yp0^u0 e9A 2Iν`2J{ q3#" UOAg3[<:"FF̳"6t=C/ 93],N@D="bL M֢ mE8|%hg|@Go "w胧AVU{pO$!Atqu7<|e j0R>bN/ LyeV6># #`@S(x^tN@\8 5' c`N%+iҝC}g' -W@AJ8@ͫEyBMR*)`O~6<}KNB|{6'sM0ZEDtMs1C'}A'\  6~H;'dzi($0 hMtpsKB^ J  ՅQ<'Otɗ$c,U+) Xd622'a<[%޳3.`0T_,/^ #8HS͠5e}k xh -+='<5>LGׄH"PvqS#5D"Ĉ~]`=7h6xP^F!i'/~>"&ҧ7S@L'?+-DW3gX1%_vxkKoO@W@|T([C\(YHiD 8f = XkP/_X# lD >L *a{f~ D;&Z U}ڴaF8׽pey08y1YXk].laL $P`KrO|GDAyY67s@C:²uϗ'`C\RRc7wmR!R^%2fXcUoyKD $,IJ=Ia[[aj$bqU`NZ{7kđÍ CɢIg ћ5Ad*y`7Q14\C~{n:hr̀^WI#|FEF7pL+B 첡 > <n# El4灣0FIo!wJlTcLɍ>>D)! O BJ27ˠG.x ck` Xh'JZUV<(իl,cS(z+:-{:>N!S(BoWh~c n2FY#!Y'I sbLBsϿ5Xbpa _ͨ#w@GKj'ȇCܐexߩ m婧ovLlcZe}ȤJnB)ޘEaGBֺKkK %bWS.G6cAA]!hA&HC:hs Ւz4t޳+rE~n͚s=/Z?fN!!&uמn?Tρ7=>݁KSڌϭ6l>ozC}8h3Y~1ܼ!-HY .bAE:3\C\AmAHbݾ44 6}otae茄FO?C5\M ;u <`@T_ȉkϣ7F9t>:3bylVx}( Ohq8 p|1z3axqH2ssf6'Nw#aS`%i6/?``:n:{LJ cF8`AeFoFsQT@>R (xU eѹᯃwm_TA맹KpAP ~HO %xo)= Ce0Xx97 ns6ՌRK:], ~>?'FBqiÑ[]pFVs)ƿ6fЌ7[; :,,lh+qP߯0_EA[%gi "&f]93#C%\^ ?Q@4gi&zP{^x\۬;6 $OX6mE&H,kIVM] iĚܦVbbC'6>Dlɇnw}\S&MѱW3S2$S#NlGQefmm Vv0xK@̅\$\tN yff=0⇿7*dGPz2xNncFбp=KɭBdߤy*?txA_6P`&Dj94bc,Sߌ8] O@ߥߧо:Ϗ!T6|H0!=x~◽* 0Q(@T\UiQ LX(WPv,{1xP`BmP#. 1N G^!V鹈ſoѲL0Y(9#JOӉv+dd˵|b;Te"0Y7n /& 3CbFᬣ|,DB_1.[L+iRY dHs0YhEA߬eG,\s@;yqddaֲ$xDTZE,K^{/8Jqj ܰb5YC2,Qj?+M @,xK ~.k`P^FX{$!#|& ,q+hB?;uJ-],3Dk1Y(U5i<h& , {%>9& V c,7_,bI; "B{LJ K5A}Bl@DNVDu1Y(b,}.?p& 9u-V,Rb}^8/& l|󀭕(bbP*Sژ[C;LJlʿq^zACuQX,O B{B.W'B(6/c0.Iϵ1.=,yqÀ8bi8S2& #{I@q1Y^|4fBrEG1YkuNpVqLFobQ0Yat^DOc0ual8>ˆn.D`q=ˆF+vAbQˆzgHw1jp lq9]da\ 5Ѯ;,F%q{"4 Rhda\qza,L9A0!P#L)]=G+ڡ兲p3T jGQ& e?ػUO~Y:0Y(!K&h;O8d쇦ι "|XMeekw'& e?tY576#X1Y(6~w qiqU݉no1YڙY1Y4Ӳ|d݁daׄC5k/& eݞb4 A^a0!r"F/dKaI,f'ayNکlCi1rLD*[G-y:iO6~:wݯbn|v>:ZcٱASZq EL5⺎ݵ:h)mV;OVz96[SCuMVbkx[#B -{(kEHMڿ -N].K{=vP :TQ@ MI*syD[1v#+>)qٺNm#Z`ǵwMXr -c(\sa,C T^gOȫǮ9Qy{ ȫ1U d--Ww{+-WTO嵧#B ՉW%Z Ή=krwj[ͣ-đU&6 Z N1n#MuW&@^1{M%1<Z 7$:Amh/URk}-W|Eq"-WCsޱ|/I~@^5p YDXu:-W__|:2]WhzjGLWf1@^󞗵*K[`uȫϺ?L㶅\)ȫzy^"\ȫiZ$o\ȫgzv Z c겢5}i572桜CK+˿Z c٧OZs^Vȓ89k-sKQpZjE_YT\Vm*Ek"c[lC׵T߂"cXϐ+NRdLv=@AKW*3*2&[?T{͡Bֽo-0ݡȘlq"+]\Wh)2&[ gQRdLlzϹ1ZɖuxPrՊ6ZVðd㐟7KE}+O5L\RdLJm .ZVhgajkDG"c.#R,BK1ZB/-Eds}j -Ed~ejEy"5w2[qh)[FqK\׷qRd925l>'} UMJ"{B^/'g1_ǂHh1z-EbˮG///ѾӠ_l%(Ju-[Ll=5_̭rCKV/2fjZkguՊgCKS;*}n5_l;Ϳ&yR/Bp]N.a"o؂ʾRcr@u>+>[Sy0Scihrh't]D_Z Y~Љn/#k_O{4{rZ E;7zZ W^jYohnnX gjy>#JD z J|͔e4ubQUrdaػ=0Ϧ**X' (Juc8 Tx:L362=v;~'mnc#6\\(M[3 EK/!Y%GHK7<~ K[h{5RE wlmM!f6Ne Ka]NEqg{h<06Zʇǐ[x[-եU"83&1z֍t|+g誹Hߜ˦ IoFG"{$a˰yFQVF0%37N=Dd?SKzs’Bcc57u7 t6=HLOoT Bt6}IlD8I4!- HzetKK݀R!W j[Yͭ{KIvsE5nށ' x%3>(!68b(\A c"}vt[}o;Иj))詄 n^p, Ll Nr3r\ j} P 9xVNd*eOnTPD?ĜVOiD%nZk9V,k y mLz9 d"Zgkiof`oGO,ak^R͒7C?V8:U["~X]cfy=zȳRnaŌ%i5H1Fja; 'Gmv=-Lu9w:Wš?!btTuLX`”o_Ӄ:>㟾k 9ĨpKC;]\vgo+z(dEvU&PP8<)^Jہ0?)“ '/I&(hzao`_Uj1PʰA<ï x*X1>k7&[:?iteS]kszn}wC `2%l ƏeuɦOuUT ެSF/ 7A4j@(!,),="#1 4, ļ횦ӜKV.{|P<)uݧϴ{<̵秏o>MzF:*TBf=Mg!{c7 ۻZF9%gX+SުZK/5;3f7{0mnyI>`-ϭ,:`X J_QNw n\3hP'!,Oc'w]X!ftxNFr8E?>ɳ)%B;dFv :I  <{2w.nfЋ"!AUkeGt[F8W80Gl\) Unᚐeh`p6[W&~UF6ў\$=oA4fM]~ג9l4#@ǽVH2VvDW=OeZHFz֮.ڰDپK~mR <[WwR)*{pDjx% ) 5\WNSqer|]1S52+Z &]R$Bh+сJ>ARUupQ9n+G6W|Y=i$j(͘(iiTs}1^7#ۘjBVt^sV)frxg~_0eӎ+VҐg vz4w`6Hb. ٚ57R,%6qsNpxSɜ9˜+ %[%[555\AF-p^d9gjr)^}P{T=~. ]䶆*_JJ 0 }7!٘]Qs|P:#.<1گ{hWoNE U b%[BP6NvU`:+Q._D}C.}N|4ʏJSQ;kLAt!kT$15z&:i~8[ =RӐ| F=1F>#a1tێ]ƫMܲ쵻Ӻ߁:Y9ma3|0\lF7WqO|5JeՅ!o4coFڂ~YK{Љ؁Vq>5bKΤb(mRo7"HHn37MJDiV(qT\.8 YM%k z%9p@4̻F"۹Co?1fSV! JdF:.PW3R$<и zm.`bZ\`k(Oe˞9ى~pUNNY2 }EA;B+B %ДTY Ҋ%t1F6On%͏52k#l޴,3_!|Lݝ iH.LEdkٲ7=zp'/l{N/K,J7j:۔_=3L:[wq%VZ+o /Eco\5P`/#K59.)-+(RQ9Qj|A'nKG9r4^~&jZ(?-X|_-i4TŽ t̯҆1 2x5]:.Pp̙~KҮ)^Rf5}ߓnl}DTeOJ#eaj`]oDu__?  8 {'$_Z]h] i`o6:>'.:sI&bL:$38_t.`;md{yۅ<~<'m~N2pwiW$ Y g엿繜|\: ?=-s~wb.?}$?oNt O[O]9wu<}n8IIu)EI'?[^@w;IJqtv=w$%՟nb!&/@R;h5PK;`YqjTDS/lib/junit.jarseO֮mUڶm۶J۶JҶm_w};wޱY;cFK@utɈ( HȊ@ _e2"Jʴ22R4R4S L;22.TP'wRtFA :92$؟fbkLhCOQ"Silbdag_:ؘ9Z?fjG[[Gp:YؚۘߓZ Di uD_T ڹ8 [Xۙ3Y89Ha ItHg,,^ (b6 Jne˪咬y߀?3<MqE ɡ(Y[4vI(6 +>ln%U/A*0q#1} Z8aWSˤ1#-qWq 9 eӆ$RiwмVPlwRI,Pr[ JyU`r-d4l;/3ex %u%htPB%旘/Y$o)ũ.<ĚuVcrQuf0s!vaN'| ƣk_Xz0~Vi L+t#cA0T W [4kķ#^-QYDb? "PLG/CmHZ85ܫi`uqFS>尒u6f8ɟPlCUSwC4W.mE5%T?px.%RrE&r xq_!_ 3 Ɨm1ɏN||~,MA%4yM(>!AD i 3K|OAn}v=CVӥF#?oﯧZ(~wW1]Q} w`G﫠:&~*}6 ~w$j&TLz/ |D_xhE8`%%ҙ):WDP?0w8~ƨPM^,Pi2V.n`c]Xr &wLn/% yz"5GVzC i"ˉ,0jʬhs!RB>SԨ-Ћϥe/("J&%W;e3o>|Vu[H(jӯ̞̇%I@w|!OIJ[F)-$dm.Btb;:$JI2僗 4x"IфG|ܝncX2:LGx@N FZ3 z0GPXFlEoB$Ẍ́f04ב,B#D۬S^+R +7*ԥk k E bag)#/[uCUEpga7]KY+Wt`}J=N[\nQ9=Bz)D&߁=M']&f&FN{8C5I=Q3ڑ$3}N"j{uUuk8&+j=586KX[BZOC x.@!^ SB-$t.s=eCϟWT}F @9J[p%9$T bsB9 Q{:!0f 6}ŀ n 0D<J]#"x/r[{Fґ€j 6['^xE6r_0oyPM߂:f?GqCn|ѵ)m ׁ9fqvt}-.,I8C7[F[3X!l8 1!0Gxb$N_{~^:c֬UY|/ש{mo>poͨ:xhn~?+Ual{7Dnx MԝAeb<RL>'%J4A)c"eʼMjv>_Wr-^_*vT\1YJ/ 'uQG!/1G:6<`rp*=gf&jF14dQ+6d6XGU Y(E0iݜ&Q"a )l2@XW 7NRLa%5H>>9ER2)+ҡBnHx!)a iμ/SjbtJˉbl. jkRpSGAb6$kf?hOAVn5eki:=Z'9Mlr2X0a6C;ݰd8 ؂BTSAiXHcuc pivV^Rm+Ći^eB{ATP\T:@٭)7=/C}e  ( ו΄#@+p! ZPZeBZX9nέW+!n"rf7 1JT99,sEB3 RkfdrYV'] F^˼0Vo8U1,DRe \e,*N 8t)s0]ͳ+{,cť6;Ԯ1ʹ -Ko8߻QrIVƠVI৿%d1 u]e.u S>%wͺCZI`-D ;J,CE[nZ +Xh^tPz}G0f_b7S//O(/fe$|yՉi@-q025WLsj( AR9Vbѣ[`1g()sdz(bj/1TR?8K*>2y6u.U$lTlwZj}ga-IrPog\Z[ E_aËrpo]L [)WS\YI좪ldv6Q@E`VZrp 'gTWޛ:| Υ'/S?̥Pe?.xpWb¥l-!p2 Tü6 IҤ$ b0nyc$F]3pa>k`g <agq!'֚K l}ˀwFKԦ b(e0UJvMAY|:XZίJ6_#LLY̸ZGGh}[,|䍵Vcm ΥfX2^$wPٓ.Fx@fE7jLHkӬ@:M"jR81Y*Q>  #svmThdEd/#:Obe/NM(c3(&DݷL-vP}Y-6bpNmTLjQq h 6Rcj#[v\mb;8>ڵSD7N(fǓI1B +x%85A ;c. 2b[4EVl2-D>6^Ox(愂krZ\&N Ze6k2ؒ~bR-M&%_* TI=Uv|ܨ%'60ٶI)52.6jWe(cƄnG5 "nJgT;_~aӰLۧI)\4 @bz0qzqZbxO` G6 T=7?f9v-w Sy!;p!8od"yޯF(5u\|#4ARvߑg3 64u!YXB qX~ͬ4RkE|U_JI%Jm.L9#h7ھspM!.j)q nMi&2, q!;l߬?cGu;|e)/lcDS0L@uo ^Ž$*-~4Vᅊm2"-&AӤO>IPJ&(;?DG6PrP`[ 5@k+[))ԂjDVOz@ ck6o4N e[ Jn,>}dwnH7ܞo:gT#bu( s/.>Jxq~HC4vO4j?Ve^l+1s~Fʄ9C"iXygཱི+$z fe|DzW0~HH~%m_ŗ 뚻v/ ?vc4P•MVrR$ xFpX83lvfƞޔ9Q<U#RAX^ٔߊoܰBleWAH~vc\#G֩]OuH4gy3ؔvuMABe؊\ AT,O Aw0qBA*w6&g4Ch ,TJnFz2jULzbZ-_Ci#A{X%B'MAIW"IC?w7 )4$`uE:DcX)G&'X吵YYGD-:q&=(B䨂94 Z!ΘN>)XmSD:$LWo R-w{~$0O?l AgiՌ4i{ i3fŬx!8 [Ϩ;[:M)* QSKs^Q/#~q`A1U>uad _cpJ 2[Iv8N@RTm$Gc+@*zTE@ɺP1\H $Β^Lռbe% 89T##]vkaZ.{[X g=a k(+Tk\VKTV^m{>}<|1C-k>>腯zЯg[hdn[;ew%H4W_e;|=$[|vR'vS&@NO._bYA0hItnflm ]3T+k\MɐP7.IɲdgkD ]$U7GdV$1B]rOz7nQd(dᑖbM3@NHaK>̹NŶT-|MBE zu ~^fdܶdLabTPuA7ua U0i-֯;9]QNSMU5[Cp&z_S1\?%bK(qhX~YjZ*?X7_>a给z j^ES,(iY_%մ:R6ԺI$>76Z!&Kf Q 7/Qf%KҦSm__{T!mܧ&^IDlj=s#.jY-pv!U(;@"O}Xj%tLVN,ݻi@w.!$+0\z-{ %iD!Bg_7W97`2˵:rBf~15§$*najkʼfE]WNa&1a]MЎTҸDrjy7 *Swvؒ^|H? {h kcJuHCHm6,yiV6gfU gb]e`[Z3 qQ$U@|0 R$a0אynj"d.<(VU`Yan )1xj/ij< 0h646?St1Ulq̘M8ao22s䡎}ɡ66I/>~/KȩIqf)Fak۲|M7Neāooe쟷fn:VfRRN+,+A@X$ *!{^Pe5:MIL UU@N 4#fW/SV5elU9:{4.-BuGhAđr-TH/xTgIx/$G/%_v*#MtЁ!à#eo@R}4,!)-%mxz /- #.)(U|*/LV,FLv T'/76-|$kBji6wN\ ]~-Su T .x|g<&OG)7LvD3lo^OmyYY3:x%3j!o|ud$*t+ZFQpt8E 2}>hgZgQei,/ '/ʋY{-ޖPԿں'2za:b*J"9R}-ఝ^/bRv!ZJ#Xk (;Wa'0w2{i:eO!W熀I'Ϣ7!$68xoqգ#]kVm 7lAZ?EW$0ß@uxir9\dx8(BDTE#e``k `Uj˗ a\T\z¡)J ^. 9  $nY1SrN%cT>;֩Vj7Hz +fX7hS~I(rJU ţ ʮQ4}5J 3ۈȣ;i\wU P2$q(c8+R#_8 pJk,GXf8iD<<3KӀN 3]6l=(YŪGtu IդB&)q75HBi<*)nG\Ѹq -8SZ=˘ud#??Nfcأ7`~:b)ՆI;(5ԏi_))Q'7)cH >,40BΠQt~-Jr+FY Lk*%KC+jgS)ҧc+Ioc> |ms*zT8Ld&%"z>KS R%yh^B43z/cʆ@b8aMW.P'.U XQOF҉{_u~|5yK/T3 +[CL2*d?"Hm"2aq~섗wR(H~1w 6P Xd1)rUN9SYk؉jv3K|="*?)`'gS)+ WP!8Q,fB8=#JŞqZe Le[dkjj21A3#ܝp0t$a MCѺJ#rcqѼe |5=XAg6;ZjEN㜕aøzkd`ϣA4rfRf\˫iVtbP:gaمoCs20 sVE}_}tHGxdlNi(AoTB}=3yrAK`ɳ֗boIoX]z p Q7%v=i yZ7%cCY m\iruH`>SCh  >RjwMqA5$bl=S.ԏ3qQ&Ɯ&~w-ٮa@ n$[+{qf $yi TCGFHQ_SS?LMC~R?'ގvlWC ضKu׷yYxZOl=3y2DПZo-0\y Y#kș'@& PS 3AhEz I-=}n iiKG>5=7./x$g[||_Fee[#AK+.T*)PfPzI;U0C7=pN{sR*%YN(2L)Rؿ'uJ?ۋ#*QT75vQKYu!(c^hwGEˆWOM7BLn'EGL/hb$qnT':I=Y 3N Uœ/BIVIGn1Kn*F c'IVc0]q 2JIǾc$dV Dt{s]ETq"lPvjZ*n}G5692Y; ]B0 TcLBP5;SQ'Gy&9`鿿’N! u%v{lku5a U(A5*0!D=y9-1mEI4CX==XΕD$mWe1ے.)oE]'j齆&auuB)BY\ū5,ڢy @]E¦~AB1]lb7G1'lnY跥jaFw汞 z;M~!hzjڄmGIP.6sTlrAV{ $rq:x6^6l;غ3eCk.15y] nXLz~2̈en^ Ms'b]T@mY !Pބ'D]iwg?1i&b{sz$߅py׮.:]+5c/S+Qf ]-)__MX]fE鏮A-pCx bV1o⛔IwǚCd ֘Y{stKVa 9 YV;\Y[.HR$McVVdo%_ØCwbCnC"2j"o: /j;.wŬ$>i&Q&|&Qu2!׫h(+ r`[T ;/7Qo8䠨lt}S2Ue$s^54''<_I`)?[Rj }𞐺)}v(n2\(?VwңV 9g vc ;UMoA"v^oM# t'/wp?bz =<}{B[O[L,(+tdm`ZkZb%AQqsΔU&*0MM-p,DC " 6D%mTTOƐ=~%X!3tO~r Сf@Z0٪IZ8"Z938(a)f^(rLx ,rkBy* ,dTZvK>о&qk_Q9ICƥQeB]P$`Ҭh B S)|j<6V6ԙ`R)$~zX\tNh =Җ~Mk 6wkD*p!64%?-!(p?`ںpp3l2.+(y,K+9UN2x/RVՈUE~55yԹBsGEJWlH?a$7.zs^3QbgQ>IUU?r"Tx˫Gc|'Fd:a~1#7ll}Zp&)O? Y6RvxéVW"ov _tS&8E[gڅW*Ugc~sIם T7 @' ҉*fx椙t0K's24zfd 9*=Nl$5-mrr|Iw/_&ɳHピFI,7S+hsgi(^n2?vA;>,ڼl/]ҺNf?0 @uv21u٩Eѽ~0{zMTjx{);p_qhljۉӉS7ɥjxB6:i R~7o\L2?KwYM_<s|N1^u=R!O}$~!Z_P\~ #nW~ZG[ 2CrC*b|Sı1{0 u?]B=N5o] uP `5U KAP\Mh- IKfʵTyԭn!j鎙@3ߨ@N.ro;|IuPN1QSbz/_K90끟#@ =IG0B|Gfb#@͎_d{GeE4,<H1<z,99';`_r ^q4M=aS|QȎ;e--+Ѳ{-"k(bTxOQaFԲtCQgLeҎ΍' uLǁE vΥg%s;ǦSKJfp $rVdE zϻUmU`nQ72#.d#&G)Tv5I6&PN3׭+%-/h^mFG]p0 1H`_@mLÊ䡈<ꖌzydžKy }ЇxO)2K^10q__]C:IwׁPy"owO6"}:Ֆ&pʾ6v沢dDOtG|1߽:y˅ ?=tfo kȒU3gcDpk\'}sNH!g<==WŔ ukϨ!hGأ; # ضKDNh/d.d{փjBo'SB؁V[vl._eF#'x%fb=/IpEϧoI9 c1T'Otol3m;L'"Wا*[/ozRpQl/oTr~ Gc:>~;%e"~O/ickeO66G.jWΞ*I|UwH(ط9`(e/'صDsv6/I4tgOi G2tGs# 'bChR97eFg|-!p@39S^Ɩr፲N[,~#t',0+^ H+{֔`Z"Wޛx^rڸ2fg>y4:`(4?cxᴓfBvήcszx;-ļ3r[>&3lJk̽;i6f3PtaݾG#R=*٭7+Z4yȫoMXf{Plxܑmχz/gtb/wLb4l \['Ru/Wbu'+Q"u)DZɓ)dEJV2h/ԍӂ/m蚃f/,("Cct cmX@RF0ϙCeA;SF0(hW3zUVKʨ3$iw:c᫔|y*j_3~(uۉ]xDM3+4=1NW3Iu0Aҥ h*oSNJB[U\jJyՅbH yDA*>kƥJܤZi DrREBⅎ2srN{^aCMƵѻ}7Zu.f8q6NeL_PT,e%¢qYe}j% k:Ky+"o> ֑wukݖuؙm۞m۶mgl'36Z{O?xQ՟TUXY/dlXi㶖^e3.oL_puifST ;sA܃ǎe=\8f{Q Lq"+knw(H.T狯th (|x>$Sauh\'*XH2 $ sg;(ڪ]>pVn,Wl ,㝽K;ڒ87o8E% 't[0QjHCSUNήl_;]Kc]\L^_FX!x JXܧVgn[JU?hw~#3I^ҡ-*ACV\%+-{A4w|,ׅ?-93@'Hߒ?#w >;u(#,1q~ZXGiJ/N~+Y(s`ݿPqS]ciM$lX5mp̵Om\^B%xæ%I m{D>le!Дz1=Cy)%7wNI*'cPx  ɱr1و=AOvG?} 32D0m!{&9l ;({.l~vsBxHYm9z 5GHJx?{@ uyd؄b &5oHl( Ed)K@\99g9_c. jJAfj`/=< 3zUrly$[XF 2EΔajE_ qABНhc$xs5% Y@^%Z ͍{W& /\,-,>bi'Hor$bGzLҤA\ƯfS6@|g\^>iVWWVtݜNAF׏ڨFkf"| O"!(7eM E5{z'lDD 0be%vYaŤA ^u%je8䍩u^jQ1u1 諞$ùBN-sMNz`u"H/OO߲q:v[iqӋ8yȈd-e`{C2uyB T.kE碧3yCdQ=[ lHbHc1(N_1у1={Y/gu3Ͳ%JҀZsX6N~[q7+_1O恸=݃BgK>Eb!{Fpߦ-`4_v/z9#Dbn* 2{ OA_CHr_bT Ro^׿cUߡb-`Pʃr3Q$=60ᤕy;v"/@O *9uIvG:ky~ǿ[Q=cd"X p RHt 9<tTSN josmZ=ImAVEW+z5*Ծm-% Ef&ݵv-SuV˝5[S}ޏjQ>fp"1L> gg T!\y3,{MC&k;t8Bg:xbWن jһk 4g֠Y3St1Hsʔt KO3D$Yv@Z(t<(Rrζ&-_{Պlkul]J@x^ 螲\CGl# >|ERSVư!"A% V@+-~1jp|a3&4?i9i; -Sr}Vt L߶2Rl_%SSCS@ݿ;[ӔjWы ^bȄ/-ew(=/CYlI'C5]S\+.gw[n+lexvY]*7݈ V:ee BToOI񌭥c9 (a^Lӆ5ccJB\(Cw]@Ʃ1a$xWv*ob.!RĦ;U{IVKKDyi=XZ^"~f #uZDŶFMW=\Kl" [ ~kU;2,M %v-V]]N [O0,R0ޤf;cDGP k4ڄtsk8őqƌ lٷ+G24ݮYv ͰѼNiF7.S!h=R._IB-ZL2y+XڹZn :.5q7 Ap s2xbU5$Š=S"8NG^qϭ/>wx"@ݬ'V'# %B7j$mbFD@5> B8Rhx4%Sy4Qrha'vA oA{(=BPPSrͣTC+6N_$F6^WX#G{ݗđ߿(1?0ě|jPW?|b_!O!BB15w2tw]oҖ_\>thD7>=!*$@N v5'LdBC!h{:㉻`hwq3Ä@,G|#~k}:+l:GNELoVGšhB7JV!~.+&0Sk둬I39̧E1.2> Vy֑ktp !HC{ڼTHpu'^_fbHL509*2e"+g8دŃlYggPor=[9 tͯ ){F'č=LxQ ]H7(-3 Hy͓%Ιi(KpkUރ (N{A@Q6 #O ؜3S!WڲA*j wa$ Theofx~7,PO9 g9a}WwXIk11si4g'8^11LJ#ָ7P>V}92 ,- 1. Y7]eP¤聑aT|v缶f Ev_MO} !eCA F244P6JuP[]r RN F82HiS8S+ސqU0q E4)\){D(Ỉ2JI.f{L~5c;}.~("ED@ SԠ, Ȃhi)w)陑T Ġfum0@Q3YZ7\sFOdg yS\x: @V˜' a|^L0 + 4QȠi~tƠ2H,; țzegfk`$Mb@$gi,%gi_ca#y%u}s1ѾߍuH_ly%S{K5 0}-RZy/ #gM;G3?;қͷ39G9 ݑt(k5GOM}? 8Oڱ[`D]0*>uqSpcOHs<5`n(vmYك M‡q$#^O77KID S8s x=:hD]@bڗtDQ[#|6FCMOk"nH:"FoHgbK5Cٝ(mFq/6GC{{YҭFxij~h%T^oxWރ`'OnxФEZ%%S5m7<|8B2ߋ #~)uЂqEԿwyeNN\"*^GM㡼 feN7a8EWi{y¦nWQs!)h^gL=xq=i7ƭ鷞hRuѹ`2dm}da_j0|'iRxJ7d5hj'wmAggStm%L\r`Pa?I1NL&p'R.hd.N B*!풨t-j)1uK ?yfnf7}{Fo\ׯ*{B(:spKK[aqͭ#F6Cpm:d8u046V; T Z|k~4SAEOv{LnpJ?ZRC߃NPei(9^x(=~:R)De&U4pa ]Anݼj~Uy7yI l]ǒڠ̯52\n ȅ?xM׊m~םbiTRJq(< ;{^/'J :ct֪+kαb8\oc튰F]?<_yrXvR%M\/b?uq^v2h:m$~"FA5!aneL3fSOD[n$u8!tA(P3בQOGقHPT|"VXL0{u83hL!.N= 偩LϨR h>JIT}C:gz6Oʤvd[[R&smzMv/Ux-uȴmHR F'yCd àyP74ѮDhXQZَ ?%scv$=~[ƍ0y/lK&H^&m_XEy'fCe nir(<*7ffV^$QC$ ;+0MjqJ4%֑njr5v!)@f*+z3|B1C 3ֽCGp1CW0̪ ɛ4C qpE:JW4«t˜M@h޺Za >ZUzU'\\D~BODWCuݾP52r)hyysxЊx]^@$Kʼ>E]]+[irx䎕7>Lʜͤ!7>i&tOZyrs0kgFL~>~6>!\GhzE[j:W3KYm[ϖz\$Qqҽ  =-gB@ѴfNSWMh֊#06Y &}|? / ]5FpW.?0(Њ<@'jv8:eR`0(Za`+ :7-ٞ)I ׉H 0Q/R/fhicj"be~" ÆP<" `3dlch $VNDBsjgeC>3ڛ=NtpA$&oz1T6ʜ锌ɔK55?,iz$Jh}GՏ\kʪj0El$)#N fVKh-! ](subр*D:)ɡJ{PURwv2&x Qrvx "4{THtňlghZ}"{ߡTGp/ O)m ,N>UG&[aثg'A RHHbWD`\6QtFR7U Tk[+6OA5loot=gy>`åcJj㺳/ȬT<YЫceM-o>V1LwWB lc`K (]:-9uD Mwi*dgHNqN#ڢJ̺*p# h&{dtad])q~i;,4)3P[)B9VF#A{ۃkeHƬfP8GA7+mœ4J$nmcF7f)헻2GyDv΀)ऺ+TWv9H28V|cI 'I5DXmwvۃ$ v9RV _,>tɻ SIHOQ!_]H/ђ;u"5Oc(6)#LSwI? 3Fk`ko 9e$=X4Ӡar,ź1ȹ(֔oH aD!u.ō=ET|>rh TO?'{ScC#'YYAe\P(t47o:|> (⽨ܛ'KJg/XSW_U_㏚NrM RS'@/P4kҙYdF&ؖ肨z/GByO:ꊲ S A޺Ɵ.ױq Э1ZkXeΞYXR=ǠddNJiRf4r [D>Z<$b\IU/2bil,mABغ<Zs=am?n.sT`zx#_`K̚49qݳIsP9OG hj 8^gt%\щL\4VMm92ux].Jǖ1b8ʭ+az n98mX|AgG.SzE4 YB-%cRFO{H~Q3 irWA۠G~y38SZu1Fbs)dC 'iEj6BWֺ0P.d ${H44 vEWՇ  P#%#=d^jEpPb'Vw֠Aknօ`ckA b zy ntm\!7 v"cĝIE_Mj U.o#P7k/'>(\Ԝ5T9TlLyʹ{MxvP`˯z9֮*-;m S}cK6ChXr:Ҧg:Dyi[=q ڿڃ1JX0(=}=WT Y{n!uycz};Uz:i'{jzFT&[/~d峼2xGDT|)@, {OCvE1ݻdyjj0*G=L* @Zij'|۪byOhx``3֭69sv)%~.@swr0?UfoQvRzX+p'/?hkqL}Yf#9?s}UU Kg P(HQ?,y( $|‡뵝hM_={)[LD`ҙ;99}=3yq- 7liG:ёJ-2/^*ˠ*{j|?oFo$kkxBG؀5P3&Iw^Yc gՎ\"K9ήi!OSU'Bm!ͣ_Tw2ۥ$Ów1}/C HŶ." ob^[3ZIӾDa!|yAY@ѠK|%`AE&qedn/3Xo^OD퍔(d XO: =Nps3/r,%t4;_*uxEVGۢ1z?v-fb<JyNyY!Q0NHgr%rId-$ߡ0 N`]Hctgd̐e}ğW1CrwWwX<d+ѳ鑶zNiEd®Qd*b%~vb:8Qۨ+w#к~f: tIO&?";NړZi,$ *b ̟!#9X D\^CdMC硓?Bml#:"oaqnk_d3%=w2E4'cbU &LP#AnuX.ZEk\st?<V  |Mؿ?Id5Q%#ϳi-כE (V ZfCiTU S5'`@cu' ~<(9EW\ c~{]mB #fW0bYPPCg65p-h/#%SgW*h=KND \AODB^hԭ\R/lچF$HguWZTdgD΄Ga1DVPJE^J\[o%}Yv/rSq< sfx1jHBhT y Um=qvgJBd΁*ìl0dfpt-R+\Ϫ {Ewicz|`ױ`1 fy)x?ox0QpLVR@.G)Bu߁]!ϰƵ FUd'x# pO:k;CQs?Ɠ$!g?g#52:;@ECF&T958CDOrэ3)vRLff 2?^0esRGmwu~HGÀLgiϙw{k0MEļɒ䵸61pf$ypaOkqӃHB4j{ IinY28US˞oX"nTu?:ZZkeIS2ξ:In*( ¦@z*S$TŒV*\濬T^.Uk*DU|3Ý\UxrCq2\UXZ7P$jt2ȸW&t/j u=QĎrv6QgqdC3SKaZTE+ xS%~Yh~ z"l-˭ϷSm6da%3EVp[-:vEՠ߯\H[haqNr-w%-8ʇ.!X`-1\Bۉ΃6goy6KX{V19P LwIi.Q44n6rTQ7{-%&k(Y˱ b%q M'T ePoZt5 C*%)'am!C*FGK0sLo nsJLͦBb72^`:#0 WX\!#Nz S K:"6cxtFC~lY|=\S7`~GD JWß; j˹fpJݳp\+)Ojh5&UdH&͛BcVgRl3t%$uKOdǯb1|8]4y$u[DFiN!!.(.?]D |h $@=%qM!eaD1ZՇx K8"a_N,w8j|-\MF7pE(.-|C?xyݿyE +kԦ_]6XպWD* 0TX ΁kYPB`.Y( YS4Ql5@ǛفXti t'#D]rltKE#Qz=E 5H+cDSFЕi|DThRvi&SG _\?c3Ae>rZ!]f"x 6I}zG4szC> z߳}C}F9Ds|!LK6OZf=M]fg5g]ᓟk_NkU;w]%KGv(QXMΦ@$a-‰k5zCL__i~W$6aGff"̫JB'YۺX*v IKq:_:|dAv,6ԫTPalѓPuoa45m.hjJH5I"M9ZwWYT5Q5e͉P+IX!̖}qwp8yGIҜ?DaD}pFI攴]6<t=kShgk!7?D2LNo!f-pp6djjH1 -]k,Ao$о9N/A}|菕މ_ƅ=!Y{'CÇ! F,T#S;IAgS)>=Xe0jt%z?_EH~œFyEHl/xo> Ǒ97XJbJ Is*uaOS7ra_1^°b2qנFaw%[ ҧ,ʖg`Xw8+we&Q/R`\kiyzj*6ËҔmf:lM Q&1V-Pڱ~/B 1"bRtiKȋ-3&Is'z؁!dDkh = ntGp}cZ%-knmr\ɩdaJF3ס^jQXlsx̔E:u^IBb#+hlw 5KdkCTa,kHe H0;O%gHѺ[Dצ]ZTRÒo~lȭ`oӅw nl_)%m’vq+zEckǠ9KAMuPC?(4wBAqS@x --9!D B3b:>t r>yv/Ģsʑ,~x" 1n\ʔ=9`iHY8MaSnH[_JjQE_]q Rc\oG'L/MH]KJ\!s,8jYG.t7D2cTF"jYJ_ uy".GG4ҙM|Vѹlki/[ZLx a;9 41Hryf0yp] qM^G1@BbǎPrk3? yo"Plۥ!*O?g"|h6x2}0 ?웢lۖ-3wڶӶm۶m۶m;wڶmۨsNW]iU?}9ΣB4T6z]^s(]ݔ|`dV W-ܽq `\?[-p)Y;j:YZ H8ӶzkI=5l (0-7^L 7).0-O>ϚIUݯ.@>.p#L(f0sЬqS:dc.]7Npg@({m W6HV3W'*Ium( ze*6ͰfWPٝ 4܂_!hڨ!W Rz]\*\Kd ;HOGUZ2ڵ#X !X/Q!?]lιP--0 0y*)[`^ X;׏8-p~b|"n}I1^p`OD.paG@  $6O01pJς5?MXj'^r-P |PD΋;47(o¶sV.-A5:P:xa3n v,L*\]성4HEu[FfV;VKprtvJVa+>E>܎v,c1[bvAyF7%sg2|M oC5K}Pt/>E>#iVLdwd:&{]:&Wh%mvپ*&/$6L>'0\/[3ٛſ;Ry,bvh!J`d&{οDnJ=qk[vߩ7bv]M+HTdhxUl:Vo|Z*Y>žWs|W> ˜ޜ m@ZR#iwȜs o뗍'Ro3>mEqNɀ8ޖ.èy@DWb˓XLzW7B6Nw>u~+IrΓN9Zyσ?ɟ)|%`<KqHG3vvC2#}@i4_nqδ|dLaF~mrFS EFFs۝kDB 8YјW.էR⾩&YL§1ZC3Wq//D<&T|҃wi" 3*Qv;)a̰gs ;۲u/O #HJ>>~vl~ t[vjfַB ,+3L(֗WK.ܗ5ڭ뒭e__GFsW^4 wRσ}zu2C)vmC5[kW{MDwDJ df~=[Eq{(3Aq >r[:Gxxh6 RwhĽb~Okh`,fl\Y<41܉>2Z=A;]dJsP n=8_}RՑۧZS^1*X6ؘ~yi\ty*4›BJ>&WR0 03R >ĨjYla芆^iRM(<)5zwAUm7sCN᨟I;Y 4,&"o/SXIŦf>7m/-E;JW~aN y4ɴqKZCػFA>o+UlJfCq>No^Z&Ij{ ji&n%^Hٟ\́E;'q[KNec b[*i}4]b"xc.[Jdq 3YwDli(][VVXCm0YE >1 Dg/2fh&v7sgd ԧU?쏼>ܳP@EAZ@3ne1?)ffE\JCe]h 7HF*薺x N/9')L3`| {oq;ԞvIO7v~:N}uq0"B`8?NjZ#2ڈ]za'T‡9}c/`L֖JbN4,s mZEdp*nQ#ۚktˈߘ'>=.C 0bs2 13$ NK)u;m<9f2v=QA7tOcq_izvᙂ+,q|}Wh=M\-l[إ5~cj~f6i`kb4w`B[3Nhả?[k4djrTRi2A1{ >ih"?8F~yϯg}*@)S[z' ?v8]s~&'u^rI4^Th]|GlE F) ĵs'DCuߚV߃! oS'  p`I'N#-@B)oAB\1_D 0uŞ`pjy(6v[}DE}HI(oY'bY>T<l 30_>Ɖ [E[)UɁNΫçϤo@r-_֯ 3LkjJdSAuYOCsTp=u/K|m n;x~ Џg"p1tڲ=BIo'ź= \<93ZyqX؉ܚ.cR* @.+ŵ%~ekqbGb5 u1}5"s(?N_ 9tq7 Z i5!Xt"+ti$blٚF%MKC4wה* þ_RiZjHC:U~M{?ٕ-Nɒy'8ezLDnhB |17&;'ۆ˻`>^Ev#d}GxϷ']}}GI1ML que2}I-a'8q粀_D,Ѥhd &ϛA|)EV]KWw3ǘ. [ hKLa>:#p!Q4;wHmQ{@7 z@ղ9RfB_梥3eT83+9kB -.Dkxt%VTL.Q5Gr lD~ ,} 5Jľ*KN 6]vb5r4'e""nHP >5) tg&dqwvhOaGX4dq#A]Ef2`"?[E|*"V!9}'l X'1F7$.x!@9J'1% )yQj= szyEŦC0_iKU ioPףocеm NJ5reDڕs\֮vGHuqp%6BL^w&˕!lUD٨hW)B&{'|Ct2YDǣB(!C~k̎AţRiӹL21;v8Nd NX #*~:_#^n{Xp9W]C*Dp5ylШRlqSC1q=rGP^7zR׉kRߤnS|aDF)G冱74)}hGo 4Wb%sC&[ޢDmi+Ogd2ϜUĈ6U6sr~J}2{h.B=a:˓*UYyd,@l6~ HѳƔMZϺQ1w>zqר(Iڜ҇/O] '~u~jW;cQꗪ|jK 4HG=lZcV'2M־˕b+&v wWt9U;I:Quhr?7@=_A FqUknbK ߁вFK񛃏1$V=)x^V#,=>фZp5܍QDHQsRytɞXv^hd$J.]N. @uhw OD`ȥMxHE{IlγW^PoMd1J ^Vd xF8oS[@kpZ" 꽎e]ræopBgo&m{VRGStpHSٱ,dH,t,U :W@J oy`CTݘ'~I4&7fPqL0#GL} ꞃ1v;ax*}w9pUlw,%_wDD'XS@,~d:dhSbm_ -S٣S/Lx%l1x^\M(ow" Z̓5i|Wͫ 4" 㐒Eaf\ӳ%x,!ܹ0PƆ0e)'*8 *CRz2"H$My UCYmI)@03W]Uc7C+g#c#;[?3;a項]zSSp^)kAv^>JĒ1I$LbӾ lzYOBH N-tU"g暑E?I["Gpm.i-;BB&cM*Ʈ;k0F H 50;Azuw-nv`{鵃wG?F?ΈH 4}]Sp>?u$\ ~':nqJU>^tDdicٽBtxөfp]Q~|b*^p7ҫ睢X9~a7eR?@&})fjΚ__u;Ȥ5UTb‰ RY+X[VR`GBޱޠN,v{U[]j|ޥ2""'4?/eN|5hV4i\.;tx#U\7AfKtWS*7w ''~yi}.xǠM*Mo"En'}tn*RS)L1Q>kB_aŤ  hѨCVÌk3F^M51R|\=?KTy o`çV|Wv=e8gWki~%%ђgar5q7PՄyiiO|q^Z!X (4r.F 4wݘ[|g7Phju[a#K?o#Oi& RmE_15x(#|^)PtiTش4D jǥiz lxJ l^}|?ys Rjq77`>f:3J?Y^x9#2:>ˋٿh w ?yqiQ }j@c#ݝ4yܾYy2O#pxx8n0y^+Q >-4Γ11izK╴)#URYiד:KNr]_5g4 6KWgL6mݒKCs-0Dr{'?Oy{Gy# 4yv=T -&~eqȾ]pavֆ"rAkPSBG`8=<e/ k蓡/uND#]7l*nt[' Yɬ}hRZjHnX`?(շܹ[L7iWɖJ'-&(Kd]X9%&d 9`[Kp%HjL)pz }}76ByUi7eN1yf$dlVCԅ5h+ϼ( I5̡UO"p&/G'f%TLBOA\T552>C1h ?/,a&{PN/͍)Yjm&׳ߥc| !L#C;/"W/R42OGܨĐ8(.WxS. GPSTb@Ĉt |  v?pFni{M[+dT\]'Vz9j18s_))̍ ,Jxc`W$x2 ZG1 ;N !CiJ(P|ݟ,fYja.Tnq.B1. ۮiY@΄- }4M"_GO.֛P=T{R1I?_M9V`Ys"!P~QB B xZkyi;t(neė"`ջw19RHgP*𫍥o (ap9|@8֡j4]i`E_#(UVoV=^Gk}+WdCx)M@CЅzv;=|gtx?~Ѳ с;Y8n#VױO`m9Aܜ̳P簚,*`:y ,i1.b.+IUDNF2ߋ fv)4om]e8!R^@Հj6&쑨1L}v "!]4(rXĚ% Y{)u__6ڀe5y`L#"LUxY02eԔ]“z/#jHJ}#؆EmIJ7rZxk-?L?Y7Qy9dnZ{+>ɹ&$8$~m >01y prqmv^8F|bWmϫgmGs&;ɼ&v{e|U')F&?en%$9_8~ Yig+5(o)p$VnAK5De~n4;Q{Ucp-\Z!_ć]&*vNܦ'?PIW^qi] S=G4 1omeǝhjul#P f>j\ADK>1Oↀ4^7JcIl6r@QQGyaHQ喼̓kWxj[\Q6>[x5y@@;qY 1Oi *|\{C*l*pr~+[G89](e΂+A_APf⯁Jk9+o(Thۯ*tZE&CuZ"aj^V=me{ƍWْ| Iϧٷ9w6~ؓTaQu˱S',(ZѤK0vN%7009m7DD=kMеkrOj ZqrwcJfg]&2ft?6UԎŵ5 wio3Nvo+i6J2)ap'*Դх ,D[j\ʳP*vmIFrr&ʨ3ξS skQCd*=%BDMѽF,RIjivwɒ% ̘ aṴp7=2dgUJ v^uf^fέj"!oP!q2/2ytSG{wz  晹298lyء/!RԒ0Q=>lrԛsRTQ]Dژ2BO%c4yO hy(7"Tq fÉ"Y.ie2b hΧ(c WxI-E;A_2$bK9]gј? #6ώF5m@`ǚn܄amRNaDU5- xj>c.g̟Et\ٗ--8U;w8p>kdɥo(>9e z]fŁ-^Qen7O@ÐxT(f04iQ>XR?F\'5,.^ :1O.d#EpBН@F71euј3?@}~Thcs<Eq HRLOe(;X’_JSM]b#TRª† |bmv|:byӤ畝{߿xG bZ9Ϳ9s9̌k+jޱN@r D%>!NJ7xGwkeCkd._;$ kֱQBD-'fY~E`uj)@}WŵaG7du5+fYmwnpe0Ʋ܋%WKu7GG0ʀ}[rT2E]V{Hˊ҆]#S}dgB zbKqaV!ڹ[܍h2h:+8 Et+jf7 :egQKE뻑wr(fA9QgA)^gѣDsQNRLBB4qldWj>}g nM( l߾:w{+_7Exz}mI൚q2nkt=YaEf9 O?6 j uyDr|eFHo"F~ )f19%7|;ӌXRkh,Oz?k0?ɣ Q4 x##̿@~6- }ofb"ɥ>2z KOfu{/m,Kꋂ惚UVf 5N<}Mz*-l=4B8:FI&=TLit8̙a#]TE. y71ǢP т˝7fZ ;qdA2eugp['al'dԲc EM;bv:%>ΐ9zفʡz_ƶgtiO}1#՜ F]ȶ'Tegt#Կi'f=8iTaShsP^@u4!]MCf\3B|뻭եwe$zjmё{Q9jcj>p}ItnOR [-_Iѧv-,E =sB7;+;;,ʎߡJ,(DAO8\з;I~ =spvhIJ'DOY;3360t0i~w(#4`4UOtD /q _K3&9PZǀ6w E#^Bn o 9N8`9<*w1,W.2*Sў[*905j|?1YT?LĿLҦjmWVϐݛĄ,uoBJUB&XRi5kMZFϳъdcT]{=g,ۧNϒsn.X&GV ˦cTO>S]eɓ"c2P=O|=I_ވ!@JW]) 7 ^RLn,91k i}ݩDSM]F϶! |ʹ#.S>V]k24OpMpu.Oʊ r^:`&?8E0cwCN*+`'1.K5nɎZc +~jo`|}{ۏoZ0%t]g~VWgN tfECRelufTu|~p<w:T\9:OҞ0OsJU7{vQ-\$Վ`c/f5z)S{fUWЈ?*1 5 ;cWpJfefIS]yW`ƕAF/-eI gS[CSKbmhg%EGbDБZJKxd>h#`Ja͇|17 -aڮY,ʂP\TG>nO9) odGC ~=TdӅ3n;k1ó NxTp _/B3D7J IӺҸ_KdORf1-@"C"qm 7L^?}GBo=9gݻ 'c:甔IIJf4ߵ1 <)3Ȫ)NXf&Po%FϿfSwl ⶩ~Jyȟ y^BQCoX>>`t=^99;TCB`'͹S#XP̒Td_o=hAWIM-Zk OVb&&Au7 ڛ `LhQ*ʈ!_. Cno7B٣nP$<^L0ApB>PVnK{'n0 &*Ғ|މLճKj]*tTsp)mm°VHh!p?]h&=my~oH%t' *iB&*\"N2.~4 ~Br0i@7⺩H0HfQe<!x4g\.\\樟r5ӯi;2B/=?5jxCyh W<\? ݑL'*|,;tJ} YR)xzr]q`rz ^_\mPVə1 Vyк49@c~Q43 Ƕ\d\V/#_lu-+ $S\Zc[ f댊D{aw)>?OY~:IHGsb\UC]! 'cIi6PVXEpmɃ$qծ\jLJ$2ְ+{s>["lRپ,5OyijfHTeehee]eDr$F \BZ^fbN JH!!1?2q顎ntKl>F~2ͫEU4Ӻ9MĹ cRƩ:ı>o0o yFUK/S:ͨV WzLlңcNG_b0ۨU ;W=œu2Ȃ߫N%k`s_{>eS&W G,tTL^-zď5_0$ A YyήY&'o5#cC@,U:m,lgHyvK@ ,206s9}BH`Na'F\F{&ٍ*KaCQp[&C3 etR\F@|LHڗ_nnNL/5ÎU0ъ;jIޥS|N`)^(ƯXrpj㔫X\VA r JxSLx4cr'˩Dw6'Lӆb,Raz@2.lH[o[>Id07qlfQ.)f2B[TSUf,sjC D][,CE9t+m٩XAYSʋE' uʂ vƅB .P=D/.AqBTr_tcaب/B_8} "F,}LqϦe἟ Ψ0Azڏ+8>S~nDyxZml9yŲgфۤVf0bM + -˧o_Z k#E`+LуSJ8poSI̦-Kp>m‚F\rGe8R?#wPglhؖ )v!7Օ efvEMO( ? Kw27\a.C~OXYPίIϔ<ДP AuAh7]K+\".7x=mX<v^BZۆdwLTJ=k@틊 +b2])"Zo\$0ı>'{ }n ґPܜ2O +}`/?n7坊ky(=H$DXPUm?zcsV*" c-rQvwR<]~̸w;d77YFXMq nV=h^Bo\1|ԓ\qlY#z\KR-ꭁ6,,&O }^:~^*oO}Ox烼Oh[!z VOQk֑ 6lx& x#NjSVT/vnNQWDZΚ\GTcbuAُKLIVkChUAɘ!1Ew.[5Ϭ跀p@|8Zʽ8>Đ@CF3ʰSo>C:8Y9?0"v' 혪c *$m 횯MYUQˆ 뇤~tXm?'Rcvtǚ@R54'm))ce 2p.NIQbXm41L;5jA4h sa%Ē -R8YZD1g V%}R4FTxT0e-%Cs6?1ĺ-Xb ;4~1 $Hm"S;%3,Ɔɂ2?NђS;b[8y.[|eYszF] S_x&6/3KV`fԩvy쩙j0FFohf3iA֎YiS=aw!v3wr(Q9 BsS^a[F]li>mAP*'kej cZtV:ՅoPq: 0R #4KO<$m|tD'|$H &H a\QU |g<353P~XWWEfhChAW(EWMnb]R~YԮ(P(ԸBCwUMS^l_|dF!Ą:JCI }Ƨ2$oјg2ΟZr,u-4D^]j-mA1~"Z&BNۤ]-fR9e{)R7xړ sߜD3# 3y?^+oF^x#ݼ-@j> >p +% q%aIYuSI'LY%xaySN}4cݱ*ZO\1y3>"AwVYƾG+̓KqHU^z%QG:)Y[tUrt^9*jQ,Fel\?30.y'; Bi@V*JZH㠁3yhf8=qYŀ\a'kq3C<U\[:uVuSMgT6Vu,K..Ii}dK`S0S֜[\N@r9aI\2"ĤMs !eY W-F?B81I8lٝ;)~6Lo%7?3D"WjrU! \hLj٥/3ܿCթ(6W 6f':9FKHT864INe~Đc|x̀UY50 ΐ D%q$jO9Ab eS>M WEgFסGYKv/{;LZqoŦ.UyL4u@iuz;z8f>P F)a>Ԡ_.zHI*5\n z3lLHleqz1YXKMw3=5 5A6}/J߹Mp9HDlP_@Iتo1m[&r_<V30:0P~"IW=4 (|G-c>ŕjj'i1 5`Ok;퍯P[ԠIxmXhBk@qĪ2+:if .r#^lE. 3,Po,ag:m[H ȓ9WcV'׊:O9?R(= hr>+6QÄWPS;p3@~{"0)p0K.eF+_3n;&++e2(jc |͢nR Y(0\gIf K BhЗWIVI?;(͒6`OGNWK@ߦ Oq#J`^e_"`OD>{ULJ=ۖדQ+g™FU{^K1y%X^'Z2^vZJbF`AX:E 1ECcN3()a\х5Y1f!6=dC RwWq#Lփy=1ӖAr9i3k ";T$# UoÛƹ5%F~C*H}>uݘQuZpmٝ6~WCzhZYoĜxwvа}vыA29G#̀Ib%e2/_94^Y" \'?(aSOqj *ۢ.J@WH i>601psjuE1rrY pa8yA?y{e3nr;[py;Wuzr-z%Pk. yʸrúT h$`Ѽs=7k@@0iJXE[؎OT:Hh@.4V8am ~LPOoHj|d;X*U2U& 7\1:[-һxlƼ~l\.rt/RB/ktPnqK hmZ|<CR_]Cv/-sb9E4FlwXvhE}8I``@nJ۲_.edݽB%H"*t=֊73z IJ-2)8LUn:m"NYY+m*%]9iW܈8CU&PM㪩_nfG>8eN[. +)zrڠٮ4Bl1$pP w6 h`bpA5(MT ,H4ڂŦk7UĹyW!z>}AWQn454[yU ?ZӦf2tG;='P>j]rF:U5x6}bPb]-65uS㬺H*_.{ `ڙ5^v, h"S\!oPfl"R PQeƋ1{2d/ĕC4fgObܓ^r op@988;lWcf&͍~qluaO.M;Erwv'u :.apTXhVMH{!!?M>4VбޕC~0f>?8;v?V0ҙ>otB",AvR0 Gjy e`>1.b66Ry[.\ #~Vļe?SK<u5eO/'JH %V|l N7۹4;Dyl%?0'*l?5/ ::F= a0 ʬ,`z1 U< P@tI_wydSkwZzoy|Ku3\=ƫjLeY Mq@Q8v^IrUMoy J8Rf XbPswP+eU0ۧ䐇gK=^R]eaypYrQ]@t?`I=Q$ K+ɮRbm  ]#H4l3p7?Oe 0&# 7͌qLn!YRķJ1Z f0=\3e^<8'EgwUO3nUru.ѹwdy"rN_8Gr9&c؀dM.\a &0/'%K}(m3 3{*{guM7JPf$rbٜ[Q)̺TاL=Nֺ=ĔQCLj8ϙTNxQr ؕHX$\TTsD,Ü~L9 blp(-$C mGm`Qѡ?-yL=EwҊZt {^,13ZMyiYHW Wj"N";|pXЛ-9.\LI.Y{+ڐၥ*EOYԖqY\VMˮi*A${.D>ےb  D IsX C?ʄᗁƤhXa6))`P^Ņ#Sꞌɝ'F,۲˛,]Όz!a Kb4UCC[L;kZ R!;mŞ} b&[uҔ 2斩V~%S^3ωY5%tϺuMܭsCe\@w)t{!Uv@)@?RvGvGppםسĮ( S`TD[TY4*GC[ 9V8*ޤY^NSS{ΐ-N@9#(FuN^^ 8g|e]~LwiQ\' l q}֮rq3 {8uf%Y ol,Πg -`̂3[\q>?)ɂirgDv' }* :dg>x(h^ZzsxF" ~ǫ}]spUѶ`c zrROlntL7{>#mG :1Jɿ\<*: h(0DfM/Q h%[@yWc@}TGWGA?X lӖMkw?+H@^*q?p/7ΉI@BT-Cct\(p*еxDftXtB{@{({q[]>E [ZEU-;?yCl^Wy4w677ϟ;:: YbFlfbcS'UTTtHUDe ] Ӝ-C%M‹ DiHE(Cei q 4KRB(u#UU&wC; ܂q@ 0i,d5F()+ANZw.)˒ɸLchI5V )lfy[d@yEBg2*J.Y )m"qtS *=3)!a fT4?!&̘M,UlʌuYpŒL?IiAAi .u,t^R ,(cU)>A;WlaG:eoC#RUܮ{}ggǏowavᔋv-(yy 4{~0{7K? ֯wz>)R&l't*ހTX?թ!%%h!($/Q?>uHW }@s޵ۼL\vb/tf}`>oVRRRo\]]ܞL2lѠ#+ڤʋ#{Ed'eIdA΍讑Έ!!$#K5"DJA`4EB8KۈP*X` %ܛ+p!ĹH$n@4g3%@"dl_kIcWd2Վ&g[!'H7l4Ia4*%a,)f=PPS𘖖'<'"Q|_K`8ΠR?OMtd:ŇSf$1asβ*aD[,<Ǥ:Ea+NB<"c/؂ RFw}ǏFqiidU$;hNB^ldeaᤎ˽_/ѯt}7c|o㱯#cxp'8EqE[`h U 8mP!0:/}CY\PGC1?{',@G_6 [jf$(D F˹|p؜ 5$t][stȈ*̙ EEiYпDبW;-C -1DݵcCCY.٘MT2,(BZ2>~ԙ ߁޾!4`5,SX陒jP,IMvjSL+?S#̢JGA>Y39Do$*Ŷ%sv Wψyb3^GAl*ftd>ZTht *j)2ʵ D[ \<:T=ss-ՊPUv6tvq3ۂBv.NvyqǁELht7w)? 9И,k sM{;GSsj#= o%([ ECq oWFY NA Tʧp5Hˀzٱ~:yp\?,|ʐ7ɯe6yy"gGZeLZf6xs֊LRʖƑ0l'NT`,O.,OjE" )s DW.*ef%`n*>\?Q+8/w{gOirʟ(Gb*B)PO}LR ()O"jPmrh:͍A2d! M{e0$oS !ut9 AM$Dx00,(WaډV:ʳ9OR@Ysr' ƗJ@c%R!EO}ĤltH3̲r&2lTdu9y7B2ΰw & ٔeD餁J)ag F#AvpaB^CȣJrAHO] %ۆ!OG7VDh4Gt@ fͧ׽8#v8jk.NВС[#e~C#Չb$3.3[g& ||JĦqVo<09NВ3Hzl8`ZU9Q쁒&1`j+wYZu*׸採V1SPE<lrr+γbZOҢsC6凶j&%Y|;&eq4¨ZKj`DPAIL~gpQ;W&V"F,6VÃU^,!Zp\SVN-$${b ]Ϫ,&W8m1f b KEzԤp/yzR(mIcBlk {# VhtǣKΰgawt|:hiY ˮ<}05%ӄԬj:InZ,MKz?ї{rT޾Jb&{`ٺ_wY?tQB9TA}co5_7G٣\KKo+m!Ym{ImpO\:J-^643G!t&qg,¶>[CĨqf5!rrfgS+}z*u]X&bu3 -g1f#p OO$%'6JA } ѹ/:p&ZJqH<xwjIQ80Ilon*4+zfpDxuob~ ;3ev]LJx@J؇qmN ĈC YRG3r}G%75 7ٚh{`G^U)0E ?`ЏC4e޷%Ѓ4#%U1OπrB)MQ~z?pqI.6g-c]G'mЦٽSo-OG|uJ .Ro*!QBvgSo <A7).1.Qέ-ܻ\ש˴o>6hX_-[\4 9/ia{;gSw.8@A/V!ҹS>B7:VIfw[q[͛ܕ;H`6$fߓ`ᳲGPDj]I,fy;?(G8buNl"rAn鼘`x|>kT1%nbϘTȄSS/P :m<{sGY-!'m㿳QUF%/B P)b(hi[&~ dhlɱV*5;v|)8?Ђ5:ƍi x%ŗޟ&J8)#˫ Ca(֙9=_? óm/j ܼbfp<sq ّNh#S .%JOBiRS mF 6„ 5'+r\!082*IrDzw,kqORiUv;A$I,o4b؀ r5|H6 M7Xt-eYL9dž*]gG9iM$>;Yq<#8GI7\g@to#Pj2lFydg~:| ƒWZ[`J&B Ş*[W5XPh1Wj*! O&/wœ_(\:$['ɚf9 Q-Z=X茍"*F!Zwf?3i 0[P/2bhA*Y*Xd9f<:h"lި[IV#0!Ajy00-})}YdKTJ=7{pv`iUWh3[DNRVֱ}8 KM~2eP"9IOn[sH}H\ =#'Ƶ^5Ŋ&f(L(t&& ȃ;XL XbtS}L-MA⁾3M,CE9f()>;Rp =g6 T#AN /|.ؚ% <%d,7arX|SYyL'<Vʇq^8Eoh&͋Qckrk_Rg~VѳF.KO [ՋO A?P9\5rpqSvdEUpH|Z[n ʾϨ)9^)c/[Sa7ר:fXQIW ?"c0x*B;e H{Lm+N*m6+m۶m۶m'Ol[Z~{txq^:=ٵKT[ Ψ|~Hqw=ƝkOF(D2j{q׋}լ:x\ 5[3^9{vGi g(²Գ߽z:al)A{?_# ÁOLɜn_tP Mq+q,YLj0 HJPX1r'\#5*մ~Bag7",Y+:+06V54D&q!력XϋǬA/ǒm˭|TJp¤Q~gKÑVDp3X %=zɸՙ= NT Tk05/yϊ䬖LJe>яiίb_0eWTtq9'ɘ+4kRZgKꏧt)DrU;8DX+o#0b8c:{`2^NK4@]+pLd'!{7YnR"Hʧ\+?nQPֲЩ\U`bF`fctߎ{ϒwn# 5$D"7[)+^nnJ&w8@vd.,6aFi H%[y OtP0_8͵7 TVI(!ø(DT[@l4 /Վ< 'r\^\#T4*zue>IhAF8knLD9R'`*zj3GDoBq;^`9;mZ]X 暗OGnϋ r*9z-x+fuopwc9'ێkywi!XtO4ebtj GزKWn &UN1(јrYak i,iN e' m_:\M]/U<N>| (A4BgNu)8]3?̨&'CIj۔ gճ9&!QGSzIYn"2+-V*J 2Hf ' ӑv(W1> 1>~ǔX]]s!]*6PڂKPgMXX\{Y:;J5hWBs=\NI=#[2~E$=cDަpY5P*[b*{_Z P }@1\('ʯ t>ZXu.6="ITc)e'H`r0;֙;C#qstZT>+BFw[nM+L}+ÔHlHFwa@8w/i9cpݰX> >Xʿ8Z.МdĄ颬ZkØ~@&b+"m 6C?hH^銇 ^b$(kKj&r/6:Bښw¯MHL郭H!cΟ|6e-L{%* vD1Qhhh,F >ٵoؚ`,11ε`*\W%&w=#,^TTg%v<`AEgшOE6H<&H&yNlL%q…C! > KchZV5>HgMl_s%KiG#:g4ѣ mR2E_![Gt &3SD3ʯ*G{#hY)lk`^@i9$->e\FjE7HA&8W2r P˟Q\\{܅ZU  Lb*_秘5e<3$^%9^nY1/O-#%Z)s!]33"whG*6jiO-}-Z$txT]f)Rr\>ĺ0(,a\Շ63\X8uNܐr6]MX"Mv^l~qDΰn"mr)cDc\ *J^bd:3D;Lt<= xB_#2p)c߫lRA䣜yT4XI} W= &ǝH[}Jt7đ uEe`WePEnR RU޸#SK8OOe2K[n9orNI{yۅJ^Cb]Jk3d4:_Gi||8sGV* $+u^~*hWI !P k YIb'sOuH;')dBn܋JF<;Pntdt%,/Yh`23Ll>\k>8-Fif?:4J]4X}Vs"# D' F[ <_h Qi]3DK> a*[z  \&f˨eC5Dڊ'FQհvYEwʽ$c* Ko)"GVyD\Nv1QE5pJɥh"˓"UK&nmfYYQܙݕa'U~3QlvPݚ"Ȇ7x Tw9cOt 5J;ZG<{2 G$p"AorcO:CBV0įdǬK%R/Aǿl&$+e1LH^ȴȎkDl~D;7/op [KKZ+瘚XhUn J qɏOsapyنJ7[H&Ǹ_:.Eݫ |O*x|%37#uP"eҤڤĔE$ŶN9L8x?t4 `lQ} GM\}0TS'B*vGt=\cb-"붩cy ?!ˀIRԲCl'r)='"!AuN\ujFE$RyMJ#}}|9R# gn޸mTM b{yaۢ㽎 A9k8:4=K7`KVo-P{ix\N-EKSV,AG-<1K!||Ng'._f"u1ͦ(A00DD9k\8@Boz0734{ ,#ZhъZ4 *F:S2ǕY猞"|ׁN1)(xAEQډ\8>Ec[cD 0XӹΑI Di Ede,uN)i{qsk?gÜVy FD]:DɈ|w~#i*FbŨ['!({$1Vz3-Bdx␳$n :N-7VH+sV|i!Wd$io5߿:u]cE4˿'-G|1x%BC_Rᅖ*YAP ަ6*TlFz Ec"o^>/w19ʼt3|  Pމמ]ul@R.>Xި /B3.4XAn2l ̾\IVEȦBr?NakbZɍ kMįBz8p%%8 dCpuDA1e?׫m5'ʎH#YÀm8^PZiW'J(>sIx"57C.-dp^ZGfs\;po?\ 4poFs 'k5 6XD|s 4%)&y(+$ ^+>Pni]{+6O>5Ku ᯭCKdJ!?dj%Zqݡ|E7$4ehڗ`:q(X9%>W>yVk`&HP,ecen^˽D$.5~zFL/p>>drWryu[Ɛl$A :, H+poQR^8hN,}X\e_duFUE@٢.Qζ: RwLXLpυJyIlC#ll YWHD[D~!#9 -DzҟWV@Gv >n3x'wT3գ,dQF]jZHH]vfu4lu7]&aOа&> dbQ˸W:,u"k=yU& L[Ԕ^PDt Aq-fC-nVGUfM$Tv-pq sF=OǶY%tR۝Rx}7HaR1˰W>aվt㰸أT7)՜.+}ǡF[2iYGok*MW dx(^9uY2xidɻi t’E?O%&EYvF!l5wzl7d,8f(S~dz]X`e386 >UdFlROJO|@c4i⋨M)T %PGb"[w b}^HwgqM׍><{#L\_r'Nb[-qI5YEX$ʽz'KW݅a$5{M- $+f P||uZJ"?db7ޚ%ƃW9(xBdWzۋC-@@Sɺ=l'1M cy~zfR`GXNmԄu$4fdJ$R'؉m}a_ˁlV JPPuςr);* ~~EO":ԍD$8YቃCSi]n#jQo]Ā0r]DI˶B(iy+5;0 eG,P}LAU &ӌi&/ Z/U%\⌛֟@0o.].aJ%BwI*}']NYͪ*ሌ=؝Cb ͒S?w$BwRa5!TY::N>Z=`ܡ $dՎ@)!'=m IGVT-^!| / OCicnD^-)VRG?ꥮfTPrzIi`pI8UWu#4eD!)\o)ɴy>ǛZxQ$zǃ#/=#l&tG<{#6OHL)FAZR5݇666xet̕ a툜le+;(ؠB?r9;c}~'Wȭ{!,pHi]:4kv|x ἶk $Li?ӲֻiIܖV4⸮Ț[[' "u.;vlЍq>hGX}"7Y^[`B)0g"a{džÊ寯U`ONIO槙:lkY oOHMB9criDr"|WSDgtPf5~? V,:dX$ĹN.,dNY[2,#O7z̀&/GR!Xa Q^bæS FuLvPM֊."cm}(Sz~;]s*^O;R?X?}*S(ܸ!"pO/Ւ10 UpԵ;}!rov+VpX{ >y7H)2~姰*dqD\[#@Vjv הqO|ahWsxƲB஝YV1/2{ηP X!%3\9LC*k5CЦXI@5뢭uI9?gBVMgy3̻ŵaKNqPHv1|C1XFaGaFŭ#(7SWQg]D@7#?jwxQUkӵ=b^4& XK[h4QV4qb A=Dbi:TVx.18F'Y r sOq&3$>4vycqzq3,*פJ4;G țf{W*UU{ɑ0͠n#HP^u2xE$s3=)WGЬGh"BŃ0[\˚J m)_#ӫUg]7-ꓰIݴo8ErIwp* +X?Z,; xHF@LeF?i i3!iCʛ Ɩb娑}J4_qmR Cd'`8膼S}' h">BP+vNݷzV)d%_Vy[ |?{Hed}GUf@[p!!?)yU_Hb&ߚN/A$=ea5Ī'n\ biqUD78:B z*h8=NV$QB0n >b+?9,i_!$?%в5zXN; 3̢q"g6{UB$#7"i_cPl8YcVoVaG T 4DIQ[LHmQB d筤ZJiRjR<ﲜ'X* Mc,`٭ojpB-V]ԮH[ogLh8_nn!zc>]ouԷ5aׯ$g`T^l2fmĬQ&ƛR*9Jia/t\&8VSwh4ۺ ~{ J0jQ0SPL9^M1D@D*zy)@K)Ք#UjԞsyê=)Wsi,iǩ9[8˨"mkmrt`SHSwAu 5E6tFtLXQ{ȏ!IM'<,5$㟖 )6SZ\cS([rNyDъI7ۑ@jt'+?wͲ)+5XTn)ҙUUfSR@.YL0>#WInT^l-l+S^G1.g U/!?dRW <.J/纰LZ<.LǜRz+z<}Gp*i$_j9pH,i̾\Yx^Ȏ2jrLQ|g+[m="eO;l>:?H UCn6h=xKq`^]:xUnJ)b0zĿV#`=W$ ;`峿3l;u3$E|+#ZI>:Ki'X~#I kQ[׽0a Y-Df\!p7raOua=n\z-5Mc.t #<_ޱNT嬳HȻR=}, 461ssjj5XA”E|`LSFi5>,DlPi^(`UZr:2WoG5e#^^EkU X  Rf%Zȕ8:) DcmײWͧ)?O#1~>sSjAi_tѾ<3ż]t@24sBcU*[Dx-2aC4tʖ+ AXľ"I%K¥+_UXcDEϋE5%hx5$?^?ULU3VHLGD&p鎆 %F6`x_E 2#̛ʖoяߖʭZN2 B* _2rSk k  5޸"DH:Jr3.7–iSeN I6g UT46YbRmvE-tu]J(r9iȣ d3柂6=Z2xR߁.S[D7U{e`TW2DVmd%: d*\/a)t?խ@ч)9hB̒-XRP ]\kypZ} WR8!=l-vrY74HnUL]"\Z)'Z.)5"hdIߕ7՝Rr&M#\*!\J9-„zUnCGЁiQfG䌻ئ`^Ji\1W_Vڂ4f'u6_:%sRS6u9ɳW -$3`z w _srao[h-cRT~mW'5jˢF`Y٧!u㫨 GN>u,بe%pq r9H vx {h=J}mB Z5KCl#ۦ".WrQY%BUiRY4ܶ.j6%-3|1#+ɳV׀M |="ǩ&H{ oAǓHxJ'M1O3t)Gp*rbxRNX Fu֋ņv+jְӀc+Z*?%( \NJ#&7!s1ܺk֖Lb_K#q?*Bny9$dyй^;Ϣz~RyU没T ?c`uac%{6N:ꙫu,ٗK{ʅGw8!Lq@~e=dAK%V{N[ALS\m-KK?Gϵi2j:"aXM)H)`ADFJobzTс-jvF,;:M K@z~flzᘫdV3SdljqF]: xNI\{酛k#uY BΑ &DHRzXCilʁ=+@xXٛ!Dh?`V xjjkx`C=8"C@R 0e-@xr27QYnJb2Bj'az X-ya,6FW0DoI^nJbER:ȇhHi)N0C_c#d rd'9J'=#mΩQáݱMeps5n8OP?WHihNgU `g([CDP>)t,In R]#V儝M8Ra8kYGaiP:5_6+^!9\*Y lPճ3/2Q<\o-訝 L`wj|νhu gВh24yzM&GԊu1TmPTl_ŋ2* ҿ/k'L/l2kSB/g*m)LX0rrX>+*'a)+ 3tY2Tn!+,d7@!+$Rv% )Z}{kց'Wy&<7 7C rJ@J. uSw&T dn92&Q>Q.Ë]6(NVG y9O2N:[oryy)|}'A+v=m!qʃ;zkE#G8W`b"W$w36ݿ 7uUȱ# 'p9ANB<GM+7)T_]J)P[2s TzS&pqzz'HfSSSsFeN%!zBmڇ6EoV&%ZV?(-4WUݡ"a[T%1y9 PŖiZ?(b}t%؁=8kk.+:]&|Jů~stHw{"- ?iU˅]0_z* [fR T~)Z i,tzN^%SĉO9 s1̃~n*Q J|VVZ"KKXO3v V|8O)Ya|;P͞~w']WIt) ~UT "`D!@<@IJP%7;,K<>>dpp?8;ϨOލW`ƪ$&y,L0!:74)-|S6nDͰ\uGMᕴge+3wݰ]T"wCaB, `Kb [8a›}?E`e?ƣ)։&23t2*Q̋9D@TPf14p"sg#Dh4U;:6DLrjda}7)X[\ӶmZӶm^Ӷm۶m۶>q}zΪQ=FfvmoM[5`i/vmJh}@`:uj۔nkPc;q XW`W:0kF9ç1o7DZɺl7x1Q#ϋI넘4eaCK#[9g8aNnlҢraݭXXpjU2s9B3gB;!>&5w&-;{4=_oWo)rag]Ig ZP>tf!@!MޗЊ;k9܈Tr^g7F8R'kM$WL$'~)[% $F~Qo. N?ek}v`#(mٽQ0 Mwu0jp$>\m q1xoP!@SUZ X#酢N*/%nwmDSցE|7-D> Uae^ŶFc>7Y%|m Ŋ9C)YcqʥM_^9c 4~$>{SiDҚފYm1&x-i/,^abmFv7V$bl{(sINUtr]xC1{f2e,SS\iUݚBUT*1)e5_Z嬧 Ͻ8܅^f%Ù5 [0c)üKT>ܬ8F]Զ5TKJYFd=3_&PUadDHsFA^FlY&cjɊUqINq!q/|%TG@`Z:q^.tCK f1#:dr8ρYgy.]Kp ?@2 C%Iڴb/KpPmГ%QRTf?F̙IbKp8GRhKZ_mڒC"`H2{XK!%Q.sf3Kf@:֥Ta 41 b'/B{1ۭh.ǟj7c h9M^]-ےuuш^Mk d^o$ƙlT[5 bnZ?v\+v6SWSG:_k]WE6' &hɺF"y,CvX쨕㞫9㕍ҐM /2ʐ/3s'P;HuT 8Wh\,: 0F6{h*]۵ &-!ЉZWٙ_@>)$BFׂ)#qƬ[~$̌c6!iqdL6a%UD͘e=ٰ!Ε^8Goz<%c3˃ /*wӆqn !M|? t^Spϙ_#VFe,p9AA"꤀ fbG_x8) Q ʠz=G`a'NVLG_49 BWɨ06nQbPеR-K@zt0eg0D%aiZKSecƶ"0v觮eOLubiA"^ »Ka|o[N!/}<@@}k lӲ[lZś|X$pۯ2((s_uA2Ka#h'z%&Ib ll=s#> й2^*Mޞ>Y<1|krFqain_5SũF_ʛOLPC[|m yl iEjMᤲ|?PR0,e jS+ʥmT;dOPI'OIg:o]I* C6Ȳο{/ c|kK)(*a'Iy\ԟ|c6E@g?9ղQQY-1S9Ɲ*@brn =%ɕ4Ws<*Y(dDVzh4K  *׼6':8~CK܈z-} (rYBoVr{vĨJkE #ГD1. \SKTёNUb*QV&K{.35p 6j^O8)E11#AV0cmZŷWC=Nëkp (F9UC*^ÛQ;}x% s},l1#:N$\*p].p&ݰUbKOJNR(H2eB YSLҟe*FtN뀋!B,P-l*$/#Wk,c{ULvdCtR+ '!w~"^N㽦!ʏ+t+ \ߦV(m7zcduP獁N)TB ZC<F{;4G"aeİbTX(D{U.uNZqgm} wa"}W)+Aq6Kwz8벟eqso:c5kHh~~ cO\i`o]+|ګJTzjF2rU!Q3r!wo™ddVZC=:ᠦOy,uOfO?u  T O4x4m@g^o.c͒:C1,25£1) /H\5_!|a賘|>yaj4ӜL^Zv˥.# LG,K![g+cA+sC˿sP[aBfC'w$AV=|k2u)Z w.E٢0_.2 b6v]&iM!^ 8Xp~cNa7I(&>Ie~Q:4%/N[b=6k@}a}Sٟ`9-wpgY]X .k8"t=J tE[q{5sr*bfT׈8qvl0V JW ¶Qpjhzx9C8(5'~_?jseQepbe0r$=*P>JÑßN_dLCg.zRX~R cc::[_au[]x<0 3қ3RAúDCθ,b~Fh}Ynŋ}D`tw6'La !訫R\*=Sv_=זK܁5y),rˀmU +Y%* _l@^ե52rϲ StO&9\?;wȕcF(;)zlr=zf0W+) aZWS XObp8Ϊ'n@X/"\+X aQdq!q5dOcGƂg vsR|pwh5߫10nML?gB RܤK3+#Չ==ǂ RT7/Eu:Ş[yڬXKj;y=2[#= Lr&g+@-ث̀Wq@cJK&٫emkRۍ1E/`/lٙaZ*ie ugZ,.ؕg@֬SE ($s@O H&ÿE+,ؔ-&%[D YCQp# 2 8dx+[w 4xq&CWW[ҍT:';Ypc3G.% Իuz$Nk0%~ԩ x‰cRy|?a efC@hMCW!k>E' gBj6]{ 9PP:LF&PŰF&кOr(VQ0,2S$!K8z=g|k,ӔQFJvScK9EYxN/|1V eY8ƗBNh&%,hTI}T8P'_5K JsPD"?e>Eԃtt Ox#ݏɻt3x3ZCdB#LǾЛ3[A[S걡sycuދ`4f? B9Ȉu/\wĢKwmLf bR&ɨ-tP\X(j96s n swz{ˣΏO͌L~d6ʨS(¾NJF>R_Һeצhjbߩ yRI ?u#Dۻϟ>+-)z[92 %N)fqS8tzW"= UO^Xֺ!S5}ҼAc޿jPnK1I+9ժñz~}F4c"@vWхu*\וF~sޅ0E. UFcgL|LW%mL/93'>/T'fg\uU$ ['umw,2 Lj+Gӻ0VwB\ S$jɒ!&#*.V\<5\V0QnV.8,}G"x9ۭaL%LKBE Z`CUJD-I}C=d0Gngz . piׯJ ši6A-h[ԂObb?M5Q&MQz8%xliR>dvC4~TF[M&ݟ#P~9a'o+ R]07&Pk qC 2 T+b1R7QbdI\I*L'(˼.f214e-3mVb4 *aBkp " { Ъd&ŊG(,\ Gh\OXC)MZ){ _A XRt^uQʹ}T6\1Ε F}w'CFYtի?DD&7`ƺ"`UIj7JD+ f[E-A(9 G8~#PկX_W#Q!Hߎ%U֦\ έG]zc_^.ڣ}e Q\cgW}rz0*?}e|*4Cy(Xh ˼fwt_rUxJ8g=@ ـhSe9 a ADtC/pC6q!JjpdH4cz;:|tРg wkeZeUq[I[u/F3O()G7"yW}t ~e5T:W(yƽ(q(g:̞!kxyk!89yzPJbIb~ 6i ;0H~o>DZRDU1y?~.aGSEuU~ix>vFy:R|-{nx=U5K57a3C@Փ.Z]6{{u)4R+-vpg0EAxI &*b<8 3 "H2Bi.< mvwbz> >r+(ڌJ7,^މ+:)^떽SSXx vK/\~V!8(:_t̚1d^=} c^2V"t^(գ]ceU4^*"Gm*˷QԖaՉ pSk2Enǵ/3n+]7 elօZHOy-$%f*@58uO$ܤa p7B:5bq ۄnD'hitԐ]58Jٕ?@1-d'Ui5HƝ."F/t+)qm@վ9$'vzU>i<&Z ou &H8:rl)\A%c0Uǣ; $ƦXQ"yiO|=-|䙙^3|3;xf9Z^T1NUE^㧸*!LHԑJ!mgkz*I@3L=]>QOe1>N+޺j{a6s)$TE=]Q/>^Q J;J\}Ku,^{O܂ T@d؀x='6_l~kD O"_+:;[GEb-OD}u3'քœ]7]/;?d ~cO75,R>e۵E(3@!+Q4D^0]@s7IXA?φfWڭ?2Xi?s4`' dۺW hAixTL]U m |x9G=DjlQdXej)-˝70#iͻleOm5 ]`JOr+|!R)L)F@v`"?aXc> Bdz 򗐚Ww)r̵<Ѫڣܓ2Y\܅#>p,eNmn[a5P<&K]ٶ0V}GXg*[r:.['(,AFQJltV7s^ʈɐ1],AKuJR zN|bIb(Y JPK̽T$ @zrƯ6ZIzqCʢy:N}*{-_k}vL3P8wчvcăn6$jd4C, Y)q+v> ]$s,'lZ_w<*5'U(5 OmEgԖ}jympPw0Y 8Q ,U'suK1ӚpFt씴OqωZʍRs޻P@_xae=#E~4@W>b?w+F}Sõ.30gO+: oѷIٰۇ+=$H~0y5M|o˄ o>-ŠC44\:RMJ @QElTr06.5]e2X97!i  aЎ ,jP\~dKҁq!P#C%]$?r=ldPE~_WMr($WM?="-͡ܗdZT)hAäDz|: x1dma=ُ*D)qY?7]Lu3Qc)b鰛ДZVgEM1U0toIk7Xڍ~^:HVBTm()rE QZ} A)+GzE'"+w*PSjfZ "> : eYaEL>?zaA*)kJ}"GixC3c*#sG  ?3cGVpt{geQɒ2' yCrO/v5p2@S7y+?㇯Jo";Hc$iH h j~TnL'WPw=n3zCGP'k2LAdױc'I\ڹ[»0:hx"[f)*`78^bqyJA@*ߤD5'؆ D$3 t.}fyEINY蠱 &⸀4 ;?o+I c49Vuؿői|$Ԇ^dP%FC$괆M]Qnt n{jnG_XNZ2p]cpb sQbyFMe^_IԄ?聯-- -oQ2Z3o "V_cD շ3 &Ç}E"4eZcIhϻJ~%.Rx@X'^t>19ᶇXE^<8b] j Сٗ0 wh f2ꈆm,sG?DI؅>YqjB^`܂QKh!G>ɮzPqpUuN^GŸsPz ̳<#>nݛb;n0Uju+/z;8PT]baϯo -fVJ>O *v3O?xZJݬeTS˙FIWIu CQ{$s i՟!8c*ub%KMn x>U<uǺɺkVlԄks7 uCв,#H|rم{rHl|'%Jegp0m_ .jmS:=88i/9!4޺0?c<|Ad@zh2dA[<]Ry쬴C3F y%I$K׆13Vmf tܔfCx*H Gae8\)f:p2 Х4zr4UZKʟ?0q4 *&zN: p -< מr\G6Kcf$ެ=gH 0&0 <Ӌ[8Q~fTfJ*Nl(;o腵W=Zpvll) NGZW W.fM6)#\Nc*K *|^oA zE̢bS^T*O6ےf+tA A;1n!Lly^J-('B<'V [foa{-R_=6B2!Nlf2^}̹ f̈́vm<x6P! 11"+ _8. E..LpzS.Md(G5|}@ϓ񵕻Cx=b&>YKuldm#3Uf֕-$X>F-&yR+ TR6wP_ߛ>s 1Z*,t/ˉ3pjt0O|)9[zw|JזV=>} F{{(ɖD)^, %\8A>z{,aO;a?R\>Կ&x h#H@`9]wANCP:A&ǥ^.&5R+(sFO+Ɋ]uRWS)9Tѭ 3T8.e!s%R%a n][ѰX %zjcnmSro h}qߌ#ҟ qy|wqq_5(S!G Swe!mk;j JWsl?8bj~1AkVzwlw(O|*aA.gb'4˞uf.Y.77&G מr7s{; +љȶmòF# 181%/Ȥ/+ۀ&aɵLRk ,6&>ZyDHEL(DAYb+]afMZh!M<'Su@a{@*ak z(-rP"NΉHKY&F%fT%# QtA|q-nt}Ml@V`2/HYh (1]L5VTP+EMhb׃aRCWBypBu[9{MhmGG8ImǓ,|:h+V*ijU')959t]KlQC&S; anfJz*`g'uqnbZ-T,nF|K}Ki <됚l}?=<>?l|PZqUF#9&@j0!X}9k%Ë%Ay谳I1hp!i!f# Se`>f]9\ΟРB 'h `&sЗJP[tRu"bSdžb#ͭyWq)AI=HrKLHV`fh't$H̔9(9?=HH}ªD~RZ%%n9p//ScK>aжPRXp.kJNED<uJ{SV(RNbVs)kCF75~+I(((:v//R'/ū) ?GvE1S#2Mҗk}I@2 e{&:{)\Z3YyLhw' 5wLYYjJVBdp)ZX^8Zz[)"BFd=2Ln\{J(de+$d%"n}{^^y<{ytKN%nCX.M yc&o ?wPI)r)VwJ[}G A9KK㭼ߑeoSgXxY";Oκ3{yAlj-Ojtf3<3] v y|g sK{ᗪ$_^Ǟ | i)ZH\kX:Xqz7' %ȴ^w3z;uL5\I]/'l.__vbJ)@)`#hCylDAˈC]ӟaLKo}3S{6;Yl?d0y w9BCeC% IyS\o:aÏw7ENJ{|Ǖ_ec!Q~˜b}uĘru댓_Gu?O~>>l^dUrs\O^v΂i#G=jTdN0QQ'ֻܠH7`P E;aNn" Y۪GCq\SSP!s++b)+c-y:9%x$WԏQݱi)lr+};'5J % áNY9Ywt6c{h*H)afzӯQ WWȈ7A+x̎p/s dZ+dƺ :UV-qRsߐY!ZJ25xЀHdpVO848PwnjXْp V}.7xq,UWꮕ%ٵ oԟO>?"L^x3eB\sxhɸ%R"o%6kw5KE9G^ƨ~vShKz%˱xяuK$>z6K7*k!ٳ'_\0>u׷N(uJ @*Eyz^}73V}eG/i茡vzW"#߽"yx>!-˱OO*$BO&bCKc&kX.~amLKS0;,*-Alى}ˤǢY\9MQ=e[Wo^R1ӫwx\Ӷ4k3DO=ewt7\=n [+|eIFiI9^bH8vUɫڒZZ94\>T`,/xrvݵowDloΪ)5`x==Fpp˩gzc9򱱖iF`s\ܣլ! Ϸ\Cfg9_İ6>2CMer2QY8Wrr/:oZ$XX }wV+3N}di~KE?%hgQl0;NT6Uz0dI6t*2?:B]LψmdЉ %H -,x׳||rq֩Ƽqլ`gMFgj8A}ҵ]Yikzt=t3Ӫ~|w7D\绰Z2ktY>RX-0^~WP/7. ٪@3s~Qeo). J~]7$MŒ.di*^1`IKcԥ4b^5߮3sg6v+<$ޜw[g?]O÷r1IO)8D42]7'[;<GgS;kvDo~H/̤ŔN.UVټNTJO2 ҚsA4Ş?5)Y-\BC ?qr0juB/52GޅI6~C[]/Mh0| ]]u3\!Bi0r^ҶNhv跸Kas|^{f ~/H'h1b.pY:2㠥cF*vɖh*Xٰꐴ[LQiD$ȨX~TL'>xXQ\ꤿI,Wzu8'aET /Wom{I mť4n eSH8>|QԭW&Eq/%î+Zf?(ӥqeO2\)[hV\*2l_ :9XM=9{&V/!}`~_\CJ˴׵.OlFDbJwx[r'p>vNd%zm)n4R ƟS1#7,/<~&cuy^3AR_?f3~KR2u6#VndVmFz|7kvHUrLUگ_%w]m>+%m1 Mjtժ=q$Q6Aۺ;JdεtDHmVVe\fbk56nӇL8‚q~G0SczyE@Nb:^".tYkP4D9|aWI"eV>uڬ toyzNΒuHmG%&wllMs CN: 8WyG;mic0;GK Q҉Ѣkj{T('/X0+ F楲A):;Zē,)NA^vbMpl鳋ׯxԺ״]{֛fR{V5JRa&풗px6/5MQVq`3OaXAb k:o=Ӎu>niǞ8f%"V.VX-U+sBsSr/op߽hE,_pۻ3q˶[z$ƽ.N=WA;+,^f"\HD;;r!"s iX{=!5K|Fy6ZL3hT5:5}IWhl'ۧUd?}kѾ<&(hj=t]6l[[WY!t2X2˧1Y_tx&k֚Ƴjv+eK\-S=-095N'sY&,쏴C-[JM ;2nE2{n4F뗽4KN 0o߾ 5" k5ݻ?xh'mYI1NwjVq,i iɧbaj8"r;mfhnz?zjaX9+[7sCםKRe`[V<*sovwJ]82O *kPL~FZџQG gNSe=ͷuAy:@vPQ^<0׃&./Պ|.x?^O-rz@;aH%" ŋ\D4Z!~:S?8˶_ҷʍ._X>䋠VSYv5 !ѝϫ6Fcrjc*78?u.iz;RpbUstaVjߜ=Ÿmy$uG.x=i;,3@""6c"8ӑOb $4HpaR;h:Z1r1UKƴm1;kY.>Pnvbye,I|kޤr;-_C/f⣻B-Mv[su4M6đ]!Pj'0qgүS,"(M1- BJKN]IC2;C9)*͆iߛm_GEJQE\#Hţ!jGDF[K95mU?*_/opOw_Kuᠩ!ځ31؟-@ >.8ob_:Z}<lb}7pOEaf(>ȝ#|1k6P֎<:1wO0&y.DKhFp8!nv#aTꕶ~.z=P5ԚjyT]72OA_Q u~EEE@jFnVA3I =740Z@FCPfW̨A% Bo~ *3 &/p@ zWփ98@M~y"E۽rp88`;i%Sg@QpHGT wFVhsI!Z\A q=0q+aD hiWt]3?]Pukdb(M)k8p{v м`oQ^]_k /wh SF[s]y'ӇQ!"f O4]ൊtrO8 =0uDq) ĥ@ska+8@R;}Oˁ5KZp@ G'2te6X٫8=џ,$E@~`]CPXhrHh@ɣiG,d} 3"k[!xRLKpD'0>>N6 6`\Dkǘ׀J !u(79>Dnalbx޷|`/|pŌp\n$ffd3l{ axeZ 9p]uCaJCx 4nM(*MI"@)@P K?z|;?KRbӱc @'0Zi!VK"tܤa`4z](,t(0a8+|UrPa]BhtmcKw0ܝ-2prqFQnC9ˀ=aQ9w!G:aRG)ؔ@Y0,805>?II8 (k%~T\0qaU~ƍcVra ,!{@a8ɰ房B$a ԝ6.=Q a,`mI KȽ{@k>DqocJ] =Dp"xaD KwĮao m[cw^C 0r`oW螌g%tvró?Ro #u;a!|{a#`l"B_u9ǸɁI־ ɈCưNC1xϤ1jZFMl"hL=?focx}H&B꾋7У_#9O7@a )βw@KqAh}_Nρ8PKgm= jTDS/lib/x64/PKhm=jTDS/lib/x64/SSO/PK;5|EjTDS/lib/x64/SSO/ntlmauth.dll} @UQca&"Ƞ(T Brkx_ ]Zjk?uoՖ[-)[mҮ۾DG537o\<9Ϲw7pB'G7x娷8WRZmrUq +**E*%UK+̶bgRllؾsS/q<ޢiixcoRxc)\]..-*A<}i"x[e/7 KY\H1Ro7XadXPvfނG rr!NHitAwr;A H\?9Itֈq{@fP,$pG'%l`,4 nc|IU,#mc3pvΓvq|βJ(";yo9!GܟY#x,aDCԜfq~}|Oj:.} F7 K UO8 wrK55<8pA>a* n9PTi*J Nӎ;f)݇S7ćxu0:3RG5^r-> 3,c~3|bxO\dVGW$f?HhXWj#u(ȱObnj9vR;nwrEc7_|@ JG#X)eW. c^S2 2)jNOAG]PM{x+zuo̔$fu8x HޡԄ$IU@/E\^RB ML:4":*6 >&D`<;XgРd@{R1%6*य़ЖSf| H0Jek4 ]T=5$ \v$ 0$T/O\]SNVb3w2^lc_Yj>S&=]k!Ue{\"!m-t:~3G$(^zua Am;J_˝b0'1'%CQ}ZJ(tv4"!PXn7W40 5ԏ-CvY$|FLUM;ah2VTLPl@'g=-`x˙Z!ꁙtLT S(fHMr %LN|Y`K>\Gx"*$P CQ+c)?zbS[?fM;z&(gb,TSs?VڢL,QLEhbY&*Ћ96vJ:Ez7NNW fj0@Lc߭G5晕tȸOG&@Jr\QҨ>W,gTjeux ch]("fF&{9JoC> -e 60 _6*[WE*Xfz| ~OFx:_+co!gѹK)3 )jzULb9#6ƗIm{'`{]2ܽ1Pvo 6j$P.P},_!؟3M5%pf=0daO P~T^|X_͵7h'>/Ң@a_,v+eqP zQdE*猏!*iYBWGF*>Y{`ӿ="iե\A["`з3r-NK{oƣ+ǫGnF(kw^H;#z@ P{ӳ߼cKP= 08L=㫤 'Aƿck@qw@l0'QHF>y2Ғh{Qlt!MlhH  t\ A[_Wii-.*@!&jz.ږyzŽ,j.F [40UidQ]W zN|dl?H֓>Ľ)p-gjEIME>M9nt"`<4cʱPq_Va{6]i-nvbW@fMEֳ͢մ+ܫ>w^ACr\]r[sƟ”іkt?N'ޫ >XKI9>7~}ۼѷ` &З}_?ԟ{YH'@J7*T kTJr/P+ +,TBB5, 6 ,𼺙h*?5z/3T BZ`X\r~z=}CxL%7$C~A&zd@ @* @>dkPVVZ@8\‰A1FV=qP~wo( #wJMbS}"޳ q&lW{l&6os=Yf.B7ӔE\_tp, KyEE6FAUfN/g*a`bx*n FzLj;"撚"Yw d)?2!j(J4d6F:cɱ_5: SWʯ3Eel sJ5@6'Pl>,A?ÅuՂOW sMVjjۀѽAO5Z#VE~Mg"P>VoiH'L^+[=AoO9 } 4 kdƦKX'ю0S9.R'/d f*X$8<fqxj ny8I$H #lA L0*^<Rd%z :H먞r kCl͌zcVw)#ڽѲf^R]Pw EvQmִ̮6{d5"DSط>eG{AY lFU'z20 r;dG6v莄ìzuF c!j[#KѪiB.&:NSv9=Z 6,z;`.nI գv5h {ܤ?k|AX{>UC7?TڸU&%#v[RMzBj }0)v>;.i`dmAS3ci.PkUjV ;JHJhI}|'LUC#Ȼ|51 wD_?Ho ϗ)*!r+h&+|t9C%;%U 8KQ(3chljzb.(+:uA ʫ_R]pN?=ñi?<>ƞ;| R[f; پqXf}E j+ۮp}CE. 4y稌,f6 }CΊKW7,^Izdr+GYPoTGp : 0VfQ 7m6HGhjx'2 ۗOY(_յq)kr7bm cuomhe1 k}N9 !)Y_o -kǺӬjX6 4vڐA% 7$SY^~t֣*458\CufYΊ-=z] :GÑn5󧜭杧 l>S[C%^†l;#MȂR 0Nllw8`+CmrǙOϊ#FZ 5 ZKؒ%1&fbɆ}.5Z1`<@' Q] Y#X&4 |VqW'.`#6@HXͲ@' _7ijqC~,XZܒ:.թt=1Gk ZeiD Gt[neN>E-9BÒ<;OTO)%> {޹*m Jp[Z 0k#؁$N6KXUHK?Jl1ocE;zjYs(8b!4S52+ƴkhNSMճa쭑 mO].$<S4SVCaKBu \aְn`%SadP +pCnsϒlN̙f,#)b9gçoi-* BrU.VQ|42B#r<('ui(c!"4PK\,a< HwoO]|L)Xdag=f΂E^5^Fj@k!?p)]Nw}匍9flɡE B oDxʐ DS\1zclo̅o4s."^˓`vefvXo˖Ú9[OUZpȗ @Khtx6fp_Cݻp+). D\&pEeId7oNkg 90YV.2H`=lUNi3Z V#zvt:N]l|Yg i]3WH륹Z4]ԣ]Q.s5/j,&gjÏZ4Fso.ϞU8XjpYօ t"_m 7 9z 3pBZܐisn(Mȼ!bN2=Dd/態|K8-6 3#I ]ػJEEKFcJʴ!{rxnu-|^\V:K9ݰ5oIwfo~uэu8T4c&L~2X\{ťTWY\>89JÐyqַI>`q-l3|Dy`Q;p+lۿ?^-1n{1;vOujvn*?+8< @[n@Ҏag)[u8^Zo@3%=lû&xc7QUqa_hvǠblD^a<1̟h%2na!tN9O5>6oϬ wѴ*o& [SN_ TE=gPڇqJ.K;h(N f)'"T*;,/ٻ =Ɋ[ܮP~Փ O*hb=ecg3*ZtiA7|dFJP[ݗuOP8h/Zs ~_m ŽbxZ' y{/Yg١10Z݇v=)-3f5M7/΄bzB{U1t_jQjtkӝx=t'^G9ڐ0loiW{t_* /@418 7=y ).J7M)kbn4}t8m|ti {v6Vvg*fs-qƬG)o6b*߆ta# jqtoަKszi~4¿1g(}ߦE`0t'} _V` &o$c} Oik:51V=`ѧ?4zsU5)=8&t%r"SMz#@<2Qċraz ӝ>\˃{}CZ̢(uk%-2r;aO+9t5+҃!\³ L/66 iѻ1iH}=le-pA7 ښe }Г';,'1lۅg^kեHK-1f6ڮkͥ0ѰZڃqaZb,m|ҥr'h&ăH܊6-P%[0z6sy0AE`l/=+vT|+xze?ц[tne>5؟AP1>5 "?G h7b\ƙ1.NW0ڷ*X}k/~ 6B^ &7J{1AA?3h>qZ ?.=2Nӿcf #Y5VXISi/U]6XׇE`q v:1ځ.C}O)c=,Pr8fL_U`iCP"ĉ4I5g'n9Xi?iUӶI4o% Cݺ9 ˰`f7%-;fHj*OKDUIHɓlZ=u+czNЭ+]w?(2yfH&w| J06u' ܃ ÔAcϊzDubm |pJ5ŕa3-X(a,Zo^:)&nKAg ]IEJwǠ m@ uz>rr~h5xLTw9 8QRE1\*k<ZϢTP7h >zҸ",*~D_ߡ'9R {|3n\lvJs6yKr]"b D`G%M[Ŭ{tDk췾ʰtɨ2Oer $*_0OE=XD)1A_S?^SߋvGP9zg~# ob~3w2"^nb~3|A=%ֽK_=.IH-1FF1^BOY`މ:tN*_||u\Ek`hZ+Ckd3M]A,9iG,yKgɐLdə, U&߱d K>’3 9&b: ,@@[\S^fh|-Ԫ5;k?3A=Gbcr1 rqw K4")nB[+zj&./.^Qt)`XzhKvtd4OBhO@-vf5>$'!wex #Ǚ:_AM\`~~I5-tUҦ4w/Mko33?o+I=b0V]40{xIOHQ g'(F,%l [2Ȗ %l [^gA`4>'s< ^FK1qg|)!f`1|}.4jvw)L9d+QXHkďXЛ %Q[NW埡vcq!~]DKH>:vƺ=> .-CjA]8O%:>{VojXJa .CCJJ>[qh~֞r^*t kQWwV8AhQb^m%ĆM`u 5N`䔀:)u$ .Nƾbli]!~Y8M& Ѱ[خf=)uMɪi nr2e K9U|sFX fk h/֢ҭlmZ:aVC/h褟!xVh=+ij"F~7kh*ݏ:L!l( cP<0-¡˚nm MjdME4җyɿNU>l8+Ux{)!bVL8Yf6v1zԪLK'G4*4Lw|!zK5tBZiC5n8r~u~JjE3ƝPt./oJvp0cWM IN9+ h(3ȕ+J_tlJ(:;XMܒĘޛmQHEgAy5>ȗ#Y- : |zDUݛ4tJez_C焷ɗO7`N`TԖ@iVy0)S֌Bd8ۛ 䵛T,@ AI/S-Cd?ꝫzTki^gj}=] ׫b;څ6nO`Oz6^{rp$q4&e8: j%|@fkeZVfke`F[}!^z%x?Q=TAT[5a~=a!%}kahvMЫSj"ܗ'K3)g-QWz㭆}`O¾~_>D"oȺELql= 齉7 29,QJ_vRKK@ :zVǿ0}I3 ƍS9Ld}%_l`|}'a K3͒g<,6GҧiKKrT3&*77h$ )xkT8g8s `rwG8T Zݪ*ZeCo-1vOzcwAT&ݑ2ESt|!BbBo뛶 ~*UznU'V|xUUS. `]$ڼ5x&X@aaYTYhˁqѻaJ1v ƷqǷ$dfN>=ϬlX5$O\$]bV ec< T)%"Ȍam+ *"<P`6Cxl#CF=ݼäyX![cPQ{48eHtoJn"=j " 4E4 Azofxgk@9heMPt6:'3iC ĤWjA`fkYJ,02#9(Rx|! ;"x9?pCFD#XWm ,pRwU^zS0ɄG7>AoPVTM];TOﰧWM#~iAaIE,OOU~B1n"U|w# O%'(xhfRs(a_s71/̧뾚O?fZBoOܰf|GH4>c;P?TSi=)zrbQ:W_c_5;#h=VooS;% نo;9촷n3>q֣+8d( uBqX 4,AoJV帱k5 ^0G a8簂Zwpp)pa"?P0p/8l氃/8&q8{9,㰁G8|ý尃O8$00Naç9|SK?`"94eڠz<+bͭ2²\Ptf9 ϑmuIRqhm \-UUUDg1÷pU,VK+J²~ Z]X WVY5ς_Iee j%! YX\Oߘ4}$+W˝啮 "P,XGd._gʵΊ/Y,Iw9EWso]ծrs#җYʪ)s\Ej@P^]Tr:)aNqia/gU, 0%N>9Xk_07(Hl ?HNIb\G'8yTL O|c>ᬨ֔P\V}eK t,W%A+uRayTQyEee4#v]+++[0D?fY}^] b",?瓳Yr'|W.b h1e0 'U'6~3\RX B|Jy1"h ( PF/ܐS,vR/,i 7U *,C]r'3gdeE9?̟z5fOA!_UYZ!⨁T)SZ䪬\-VfN燣tеEC$2B U\_qNjdaafss ' c&]iaWy ""QуbbqCƛ O1r175?2ƛ'<)I&65eܞ:cfڬ;̰δe͙+wd/Xhqnޒ+]YPعzMI}k+*wUҺ5xp[ĔV&n2P,ŹUБ@'(aVWi[_Rt-\uբpsTVIUxБl 3VRA3q`O1<1g<4>;[Y fy+m"g*W~A庐"`G?O*nBhr"Yم^~sKc-ABq">7 .ă -%Wq!3U}0Hje gPDBٕ42WPD̃1 |ǿ 5O~IpX?M!z$rvxNX2!Q7ɍ_ !Ao8OFr@ rͥ@덄4'E@8O UȧǾZ2e,[7 y Әt$nZ4呤8 `>L!dM@kޠxI׌$_<5L༕ӎ> Ohgk8B⒵$)KhaR,tNG>LGy\NWqx@Ahsp0*tl >} iQOniLNXPBf~E^&Iǐy2t4q99q<ɏR ƒ>ly~vO߅in D&L{l, EHvOCb$\FlHY͸H2N4؞i1Dlމq1 /-wIKtf\ġs(o1c;b=Z,,[VBJgY]%|e?[!i =R;֗)\ nxۋ Jc+ + $ *ZԥNWuieEV i5_%5|ӳ+2L3)’yEkT E\a +r>R;lgArP~bqY.9*+JUs-t9S2 Dn?? n?8#{q= } ܸ4F`Te兒XB5ϼ +Pq2(\W)\ENꕒXZ2773JM+GrU.gU˙p1;-+*/*||'g,F'Ԭgx<,p'𰯚u,|$p/?p3'pÉ<<ʇOd<|o<\ÏO𵟇*]!,M>}}Gw}t c ߹?'셰>(> 7 O>Gqm/663]U O}ƍ|{whBK_O?ѣ w?w@ 8y?*2cs-!:^c0Wc~+ g/>;Y{3Էآ}LVS˄ܶDF<.C87:_CB "=QFAAixYpƏyÙ<,.urBi,nF> pn䰆C*K8,0CToh8a zy^ⰇCOrxP&簁8,㰀CTǤ> _~KC@zRP*7@+c_+ۑˀ>Pm4pwf+΁\4_Z\Zn&acy=y"|9\/ T;| X&PB]bx_\z7OAw1 D ^cppBvՅ#|7u ja2ׂKgpX 7|}o-*fWSz| kgPW  f}ς/5f ֱXFnp9oXh# f(P~;+i;'o؁OS^K'x/ v&sY &2M# |faO{8[3)гi[AnZ/× ωϒ`l`ip`/m*~ z0>a8]o4B":e.P2o[\2 ցK;X3db-o,Z0p惜?#aʡgW䚺&p;\>+R!^F5i%/|_x 9LGCf·ģy<@| ځgZIņX Y%v,~׵v-;9-rRRARX8sYM4O2nP& 3!O99!He٤jbͤ`1Ę!^P,*~h)r~K{ eFU4@!<ȅ>7*")"P WCE-uLX}iȧ*H/m]6'~+@٥\P:P6r ВLr?>SivTֲTW eFT_5mg&{hɴG[(B8rH%*PO'WE*lX}j@&Y] >^T\-Ic̴c'(bkI<%KAS-"O_3bdɬ̃r_f*<70_}{zړ 0ݏ<>2!0D/ 9K*Y' ߔTTxMǚ:&3 $>L3%wV?PKgm= jTDS/lib/x86/PKhm=jTDS/lib/x86/SSO/PK;TCjTDS/lib/x86/SSO/ntlmauth.dllZ}tWvFF6%Db@P‰i [xh(13+T:ٜczflN%džm$nۦGR6F _}#@mO}{}, 83=hE;,~p}]-=в}1;-ʣIcwp8 }97mmy ȟ&_ ;_hX~XWkcs-Z[[sm+Z8χN2J >[Y.SO7sstrf5юpt*a[52%8ytw<%C_H{=lzQ(ц@s+awEA٤$q<Eڀ(6(m9u۶r.\X㜫̫~H((eǧKDL)UņJJv-jZz 0!QV k$3&K 5>vo@D9Hd>j(61 ho$cZTz((3@Bz>{p0!ȁ"m)s&)w~I*@ձQeMQ4S#>J ] X=(# !F)q6)aj(^NTrJA 27`Կ4-9ʓzJеKdi*x3K[|6 ,HlK':Ɗ!Wܦ/:`.k G7ʾY@'G8B$"h )P) қ@eHML2B7'쇺UU*`F$+b虯ds&OmTT.Vl69Q/ #dfC-$AQn`j줚s>T\w /Oַ >!0j[ 6(zMU6@GYRQm"5iIb(mTAgT1S͙nolg YTŌaqoI[k ))Fr%zS4Fh` 0m1?jbn즫7f$@8swUlGX 돭ts.2 Q Q'H>M G1Ö|Ò|:'Yk:Oۻܕca樃9N ^;G套3NaX jspmI4 wq-\NV0 G,e>Q±\_IJl̟yȵ<2+v9"tm|^fE|י |gIYüny:flD)+c.7Ǽ(W U͜- |ذ5$Nogychl@-鸃S) MAn8ߜsM۶k2 ^m~\)\#RxPK=LcӉLTWimgԱaO.@l|dn6tvNݟ\+E+[gl13Af:[Z1L3чgU'x*(|qޮ*&{ưy+fK>mH)`pIlٙ8z%"vxq&vLLŠ#ean:w ?y]6Qn{Tީ).x#Sڎ'LѸwo?7Y9Ed,`eF L%֡fÂV~NAgo0nVҕ1i)0;LciY` JZeVY"KKs*PqOPRTYrѮs|*U\.k-D^ ?%r>ԟȪ_hʰaѕa6 Z` ƃ9BeO5M C?~$;a·o")z2v[V[iΛYܬ VcfMb 59s_v<=SQ|ڤ)'xΆkjʠ'Kڷ6nBBHM:ðh6uV&螵zmVQ9m9˫ؔp ]ov![ t{RIC_ 4[̮zA uKOZA;uuBbn0 t=^Է mQ)D& K{u^E!w{zSZS{afv/Lnaބ,A,j̴;HȀ1ƴtżxe@z9;|]e%=5)I #?NVų J"b"Mr7I*|;J騖oaVrǁhQʱ͔ Akȱ1xlnKfo*5"jT O}K픇X꺾.!K: լʺ]!OGթ nO: KA'KacP;)pX g iHg XQL^o*y6t{`"K(RhWiEGv?ŗ&E^ÆEk2'+<ΗkM$NE(@:ߣ\vy8X  |f@8wMqNQZ):{T\$_N6\papICFCebBb2@ CrFtD^-gZ5)"*Lk;ߌ<]0 9(b2qLvXo*UdzM % _bO fdA=)CCb<G:Oi9D b+<<0D^gwZmX(vks&Bz1doqfw'ǂ ؔL5PK4!DˣxHL' G!Wk~/^=%'σm@l6@noGq;@h /`bJų|+y^Xz8bf|4 <{s:Op=ݐfN FG,>uX'ӊO_@%ÿ['1nH&A!-Gɾ(R?kKz:@Q &[Se݂~`yma,| [ K2K31b9 T?Aq#4nj* -Lr;ĠW8W2IP<"pJXo4Ѓ0'Yo.j/AQZ1Q\QE@6ٽ5^h{i$5iڼy֦aDmbӥk Q*p9s‚1M^1ܙ3gf̜9gſb*& lBɮ߽e$+# /C!P55GmRHא`Hbs>@sq,PU}u{q[Iabo$cMҷ— %6} l |{Blb>c_Jޮ}f߫!ZyyJڼ᜼ljHV&{8CҎT)Bɥ9[3! 3O̿4;.@Z=2) OBӆ SWdƊ+)oRvJb팡92\xV2B!bZro^4k7klZ!{TӟŘP"㥂^F(Mj ѪyH' yB(3"ׯ;)h0jaGrTڮ0MZf2C z1#DP@<6f7_l0ln2f#uD257+XEJiQ晻,# A#МSS\\?RHQ,<,(RDgd.Y'I9,jye;GdKgt/hߟ z*J *0/x)|cR)e+=ԏ <""]~($+wUZԐ7&Xi^a ͗I o}vAdpm[Sm1"xjTw{r!?c7Mա\3L.` )D0G -!;+N6X1[>jz2\p9 =TPӐ WdeOx mc 0@O$jC|C2<{bCVULx,ebɀ4 /1 zZXy=mMAZ߆k3=u-22.K"ͤ^򌠙\SH4\4Š0؇@fg GK2U!ic LR#hT( d5]тB$ !jֵޅ՟s~∮U0kE%K4* QDž8imd,z0QUҎh+фèD8&&m檚ʰC.(4de[ƳJ܄ChfVLcUkC6471i PD؋? K?ܝ4c)B^ Y"Krg-̬)+Q( ;IoJ9i4xx圓+Ȥ/NގO@*GߡS2:A=A\jlFЕMŦ.t[ iƜ1P6&m=ZoT-n'008ZjI'b04FYY,p7K/c͹4(,#j˂%:7rEd%]:a 9aƴk7b=oO49)> TŽ2D)c2跰b2[܌c>>-=ʦOe+npR/L_ؽ՟&&.i)a[r2/I1D<`a80IclM5"Cir6_&ߞvzu'؋}S,:Pg34 rq'#=;y/ua, ͘#b57@wȂE-( l3Zs,(O8ܱcKd.&wjHt1憠BA36;/x-yL=uAiFO)UʶA/KbG 97}m5f#؀0>ϠI*kWՋNC !M͍Vx|| Pcd6ZŽ9B:p1r~@Xl3w{|FAb{z<ʘyyY4aFab`PzF*ƐY'L"&p<[ԄyMEeGG\ k>b# +`]hW̖[o7wx&h&+1$ #h@x ȺƇ)V+vJ櫞 ob9n>̝uF3YAO`O[7w qNz1zvJT{۹tXYfF3X,1WiHTؓ=x|s<+^$^ p]4c0D6uQфY_tHC.@ *A`>XBFHo3w)X+=a%@!Mٶ%'iHu)![Fo"GC^2@hO`/B@9īd%% wZ\yeM$U$h޷_$+,{)푧I JJ'uXvm_wqϻ&&}[trRi$)FF9'ѭYl7K d[|"O ra\;|~:զdF6/Cy.= #o\2\K_~?~|0-$Z>aN`dhG.2\:"+ ?i_^}5徜.2I{q]d? {(xflH@Y>Gg#0"i.ϰ]@M,f$2<DO?|#_>>> >=_gFKjytDƍ7pԺ?m%ClEYj?pp<3ǔpRAl9C-S?R"W,3_IV?O 9x帽>G_\k?uwh6\ owR)4Ȇ̇ E󩱕O\F*=LOZkOK/C@z 5 sPqLIcKcgAʫ{>E" _}u>lѫ5@` S6J e\ i&sѧH^ L䗵CG;ۍkǻ2tʙAtdK3; #S@DZ )Sޘ&DqKQQA:L%;APom M7w+-djngKk jٷufr6A4π\x++dб/PEI-`ɋ6J6uت4Mzz KTpCQqB7TWTS% ,NvXNUƀ\(vkQI2a|2&R 0@>hqOハlMnZ[ Y|龍>ub\wc)&sK"گ+%0̍.w)Ce ˞{r4tT16kxf!`[3@x?{gV/\\4 D5~EC@y~XZxK a$qG>iƮ!%;!+}B2X*-P5~. 픽N-v74^ע2MiL},P b'wgPLi3W͒S.ɖ,;xRm@'{h;O{.%wGZ4irXȋ㊊Qs]usx@\FLVѬDTԡ/ }x{+f>Ue'=DD1Ib@ @j돻}-G٧ gD6)aG 7d:W nSҹ\!W UU4rEfNƬf/5l+]VVC*ƆRbR5T}^wW-S=q=MEBt)B3=Mi& } 踖pe#DЦw;7RGmоC۾Cwo }G8!cBʨ0 wҾk-$mC @owk}Gh]J{xK26l]^"#-$Euo ,|wC&3w zXF_} ^ 8D&oeBOӖT㲊4o@e60q*.W^WrP=z- W5$4\/iP {1 ƙ27Ct'B#J=3|1q QXAIRA/n9`8pZCXZC/| u *W G3ڦ=a5vU?,4.ܪQT.pǶw-qjٙ/hi9iSy VAE(6dozɛv@(GE-icH(B=fݑnSPH y&0F',h2죓0hCj+v6VO<ջ8^xJ{9QFǵ{gsα fM {z=HΘ\)GA0ŐR3?_uQi1ds (MRN ~.G?xGaɾNdOQn`?X`};h{p5) pyG@@S)H&S\7=1e顬PSRf^>~`##xvG {pM}?R;9ganb;v9nTĆNU>J>P>Vi nX@* E*Uј|-,aJPeuqhr1^6/^cE:%tAw/}ѱw-} JX]m8p @tEp"T ^8p``b%E%,pT4<78 p `bEa"*/j](w$r {HxǬrH-e^a+˱Zlevk5Ț JhYݑ(2rrk&v䭶ە|T|KnH̚/L8vZSeM%[鬮|ep9|_prWXM{ 0 0X{Keh~O%=W pftM%80/DյP\㦺drWR~~&wv3krTz2MkWގx8h+cvlMiO- X\5[kudL΢.6a-04]: Ny.)J<,qS_^]=Zn!͜"ʘWOU d˖%U^S>8(<ʖOQL&ז\n]P[?^ŠUdž#-㜇U>q]w7\9+5$ }4Ao;Pv'˹˝F*8G+v׸ԇ"N ֐;Nb>G:tD]1NQ+c9VKYk`YM}s9oBk5[A>SQh.ٝaلmXmǰV;̻0C󚼌|BI o~\ie?p?Y4Q4Eհ[[Afiʂܲ5(SOkkzgY-rM.XwU2.m%_6Yܮ:e^z{lK%pIɍlwMٝJJcWz Κȭv=k u&Џq((7 պ"8HkMfpf"7JGTt%<7YQj#ʄ6(gU[ͱͦ--M:<F'J#4Il\F]"]cqLݵ[LEyv ^ďaȉM9:2G|jۤ|G% |X(d?C aj𧁟 @:|[v;lÏ/_>^oC8:7n܍q7ݸwn܍q7ݸwn܍q7ݸwn܍q7ݸvx6W׽ZǤg655ޮ*jjqquV:7.5WӛU:?H>UZ_{WMPMORFؿ{nN/|_Wh|ÿ"/tӈ᜻_3T5*䢌A~K~~pM^xyv=0bWJ1T gI!jH" *$PCJh" RFZTpNqdDl0h)UB,;{/N3Nw緻<}ٳ .kUr`p"0+݀q@dt]GM_|*5מkˣqqKY9ˬ[]wwqi".K9lJ `iuPpGہ>g9;&nɬ!B_S0.I7S I GJC7 )6֣vO(2(c7 ;_똜8xuNvmT6k1 AZ1p @ *2A8P) CL) |2`_a%V4j] mT+Zf P0a_`[ 4W,J@)48JXW@i:d*htjȝ yҊdY̍o V띮# X e!8]䁴@K̯V@u`Kc4hsT ԙRK:XxP?AirѴr-7EPc6z4Hsx0dSoˌU/f|- EoRme2fQPr\k Ȫ4Wx(G@o7>l#As 1A߅zC_ cQw=e'|jYx=iA~nG BȨkb!B"D!B.{v2\x)^kx7>!$d,#+ZK HzӁtO[wX&[ƚ]|`o[Nkuu'cxQ$<@,ψFM\{~~>j۽-ST5:U:wsS=v{|oxOz_x۽S6M{]jv}uޢT_梧E Os+aDL2L"ϒF+$4Τ5t=})byl`+.n_匏|&w u-Y0ak7KەR>f;gs̹Wr*GMPyTW Տ3jڭVuD]P]noۮNqn}= Jx W}w;ⵁwFzsޠ[>}PGqn>B[=qo<?9xaI0$KgcX+c)-g ZAve6Ip"ΣNS9Z+r)qBΖi[*PԇseM m]wGg GNtڇ~2ݨw_V{j4{Co/v@ߠiDyy6t+mt;A;n,%D6i`?eM~v=9wSyy_f&ad&@f.Xb-bxIQȾ~i'Si{l7ٯA?u?}<5)u*O5ZLR "lrlzTDAw&}o}0??}Jח_?n8[x5:\O1|FY) d1' KAi/ڇFb~t. i>ʦ@4԰B$f[n'?y?kzfi큹n_"ClC j3Z{6yN^x]ӽM{'R̳>AvGHD8Kx '%؞q+I; z4 FuHi ѽY!>+.i<Y-r-Ƚ}cyX yJ9RqW *QR}TDWIjŠ`nKS#UR9j&rUfU cNիjjP!B"D!/PKhm=jTDS/lib/x86/XA/PK;#nMjTDS/lib/x86/XA/JtdsXA.dllZTSW! ȳ6*jh:t'Xq %1TAa@sP#5;vqv;3z=gzκ{sv& յUV.r4*{_@c=g{~0ZaXa1j)f2W3?9 ggnsC7o7oټcNFaysɣu22&[b#k_͟=^ |ƽ\{ <;wULv5n>~oA[mKBD+\19S4i *qp5&G'} pj5%&4 H<0ȘrGo-`gE'||j}̠MvNj66yzsL /RŘU|&1rE01_O&k߶2*M'wpL2Q&D(eL2Q&wRbщ2㻻\>pJpUq 1?RUerezz/poEAxdLʆy<ɴm]9_*,,շMg7֮uƻ`Eu86bSY2W6\J,늢ȑFX2#TaCr@"^O7<{(aKV]6;4'/V '&k;yYS6.5YȧcrSvxf.`[ . |?(Vp,0'a٠;а8]{M@DqbHb]ټS~J!`R j*{ v7F#oԘ/PE$y;|!cTCC-t;v쒟(b Bݳfv4rot~8:ëxZA3O Xw<ၶryf>c.,4Zsʽz&$8|H>2ީNXc FlFeh~ dzIg!wU'DZPfPi]mq fQ˖䁡Чi)]97*6 xut1N6:Vд;FUaj*Y q$6篘=쯰a eHŝx.8[,0؂:8gΫ87ƫWOqEZ=|֎AfC۫ydC{$Y[e)QĨun60\Rf&Uyv?f;T9 ['q4q,U^H(NjK5wեjR@;x9!mx+H[8Uj/|4a&,o{l:DeoREE#,e qo -B2(n3ƨ-_'=L\&1F ^8(5k 돳L y(LKpMp9pk \5pkL5 9\5I!\^7^CځSH]"ekiSlq`|Ԭv^z;OtM08Lyh&TR<;ɠ ZǪcaoU,">`'f[[X+v™c^1&L\\8.,6#palZ FX=_4Ťeᗸv&-Ede7%}/SBטнm`;~/ ; 'oL#wMm{PyZ&"}b >mzh*L_҉8MG/`t?t,|[~gڍjw_~|/N88A^Tgw%*qJ?/)~dJ޾nQIEPڸn ;uos/V_mXtG]B޾s۶n6X߰>_sQ|{{׏|öz_=C98% q_kdb|< r sAzNIݔe%gQA,Ld"(9L3e$gSfyRf'Rbn?;{RH|a.dzpO_|0Q\cXaN2Z\;H7D(̜ء3Z1;n}ȉwIt>/ڻ:sƐeTᇭ%[+ *d ̸N\kS"3Qȶ2J[꧍4qU2szN?yg*N xc[lk/qq2D%E;"=ǡ,f11;dgJMnɪ_yӐnIv[@ + vԵW>t&I}*8-X!UZ+ÏijuE/|(dujV2ڔmXrd S'r|vEj g/wz|cE{h, 3ьT3L!?:3=޻p/ #`DeҜ[OPGk*syJڗUv.l=ۨ>ĭmCRHoBp/gV Ս\$eLRp! =ey9& EAVS!4k tYab)(2 C 8FE yA +`:UEyIYd)GЌ+ 4V |O_5OJF˳Y9xv4I=6CmhΚG]h{Lb.UV2{ i>+J1/÷birޑO^-GGCש!i 7֕HoG9|naQ8<]MJV6M?w7b.8x$x¿SFKl7}e~K싞\S IpWcj/ƙznt:@WÞp0wn )u[- i.;dʚ/K:D uŝ@<;49H$g~0ԘzlCjy YE׾kExk2ry4 v"]5O +B%6ϊrT]]Sߓ~A;& ϟC(BqFFlmEТFIS;gε ɺ4yMb\NͫԄaIخ%l+ >.[U{~d|g eVsBRH16f8Bn\x8H]_ L}y0|I(01,@' G ƚLNC~u7h:WGm󜙖ӯLdU*T͊c MZMo}tvCnX/7_K =!9CX58NV/_iD5RE1J9s=J&zܑ8=ƒ$ We!O2*]|g`1iHFs'D!) g$ғﶬ }wR]61Y}rnƕ0wW@!H^L+ w6t2f" .֗A惨.Z:ɲi4_)F#@ '/孩|"4nG>aG[ " Q=?EKb 3PT#B9܃^a0 XHn&B*'d ʐ_$dQ;%#+ᥛurmr  ? C be|FJYEvjKl<"~{o;F O[>E\p<4ēi3Ӎ&V2Yv4&$PTin:VzÛvcLmFJ0}VpUcֳs (/@f_p ?G]yl~jAlDeLAE/v;G{N<|?ʫ<mh|uǫ\ĊEV՟v{ ưڵ =̹-w1Qਢ!"9syÇA靜Wbgej7=0+GΞzݱJY><ML'CX]Uƭ8(nX1&lB6ş ci/ȉ}@Fĩ~3Ocz&˸}V|*-@|LApdg$4w@ Q@J5^9vښG4G}֠VA!Sg+-I43`׭A%%%WϷ%UW-(3o5urZljPk=kvK'F:j8|؎%. |4OPc:bj"ѲUD-KLJ,4T+SGCRަb>e19irma-%x2Pg3kBnlخo| i}S zvTg6eCSm\K)i}(}/ٙ{S4/3H~*pǰ-2IBgοLif~ ſJ B]f%Ukvجދ@i/fTyƷ*W%z:Ey÷Y:uLt ~4|ft3iX"AA6 og'Ie嘎"N >12 JH)Av{ ',+DSyr/s=uAT5`Sdآ2g=/"BS}zH[?v 5 tspUO-Y`hfb`ԅzVy1Ga+e*di⋳&h Ii82Džm(&:5)rTH ^]/aq!~6"BݵU̵X;8 #c]{NO|sF֏ Zlj +}T,2;:i PQk")c^e 㯕EK3LILPBa3 K JI*W0 &h 1j;1J-Ip[ l>0ȝ#>fF(8].>Et])6DD\/[r`O_\ +:e1Dnǒs^|kDb@!4/ٙHqF nQ9T?.:\ FlFy(dž: 'HH˼K)Aspe EGIs3-_CS1g<Ǖ\{ZWǚ۶e?SwK,~ h ጝeίU3sKܑǷIQn~Ĭ mРZ{Cb4Ewڭ`֫J୅o% <|YR$k>y 䢨-q(=݂H]8$оaE6`jd SU*D5-r-lZVvKH'c.4U٩? qr T`gĿ֏J26 rK`̧>?|LEŲ<_9}ϖ s5E !AQ/4lj5zϻ|vz'Zr݁] fwSY3ea܍ vQjeq/ ]'%@JOŏ,ҭ$96=ʵv_!|ckTr|4/;7",R272x3-ƾ~F>8 @>we(T=c+ .F8Z7`"M"yH H矑+Ax9Ui˄nAEUX^tt)@΁ٜ}d_?/HLNJ_WK6w \v+VDYtE+KD1+JzG g"+j'+G>eo:B'JA2;FzL;򡷡dVKC2:1XA@$GCi+'_._EЃz|CGr^&Emq4&L~A 0)xU]AmY.YP%' Qkތ8PU;/\pפa="ba*5^/V̔F Cְ(Ӝ:ń9E)ExyϬNtEO_meibnbBsZݸzH w:"VLmG/a*|o(G#G[ ֛PDRLgVʜi*ޡ(%#h<` ͖GY5 `l?8)gsX4@vkY$s><AqoLU+gF"/pS^Wɬ=ՕYcz)ps T0ԐP0 (cUϥU.n?DC1jC ywovU."JJzS]r%>O*B3*u񤇎X6.LMį U~ T#.KðߡOO7Z2gwqOPol o%. 訐N<[!;X+-쀉0gkxm_e1'Xڠ7/̖}BmFKfh4BV ?Ǣr<ҕFcxm} V;I\ny*JFڟ;hvI`~ucj Q6xkN,->k@W|]Nl=&H;EȊH eBc^ (HO6Efec+Wb4uH  ]oB{6.ˊf1Lj@Hx9hj t>c+2 C=+ $wVʨ<2 D SN1F%y'E Rрwb[*LzU~(Z| @r[AՏJTcWؾ ch8sG$q)=-E@ j5RAY!.,7ݸ,GҲЅCo W`)]xT.q*?- I[&[g-ȯ ي΄)PX#LٲQX3q0όy$>?5OU.ePe@U]P5 xY*ŻYgD[Sއ<=T :*H'噴=l\ƲyRO`]vv݅gzCBȰ̒.m'{@b(`mq<>l9iU'A"3a"4v!P S];C)cemXqS㬷2&B?㪰*[ ;K:AHzj1 kbҮ{P*zb浳{8R0`Z |)p)۵p?3#m2 듚t$4Uj_JrmfkܻurrʹXxbx.ROC: V]$/RsX6ץ;SO)pR~S E^#ϼ^Jn.Y&p['R+N!O1)>'J\*#dSԀEͺ/ 15ה%{b, o6dL {0~Ǩ°Fwv]O>˹XVf*._Iz ni~t*ȮO z;僔W,ӥNpf[)@C$?v{~a{#{5n1uY.& &Ҭs=-M@RU<\ ĺ$$~Ng},ˈ;"s# e/r?AX_t[$DkF-/>\B1?|K6#0QiXGX*Ica)#S*4=\0X]Ә&6IDH 0dPŜKWg t)΢?t "Z5r PKHqMu7 k GdEnT+B95/؜d6ُRpY@dp%d(OoNVٔ&L`*JDL~< =VN|Fga{>U,ZN4%nk*Ku3Uĕ֥9lyG;:9`5 x'jz>1z(j%^ߏ(Bg^ɃxZӊ,ξcvҥ|xsmxBGlGK* ªKW~ą=q&BsV./,yrO!5J}xJ-c |'pbTvPZ dNT![6s1x"SCɟE pܚw҂{xH( A*?FpNpAv"6 ZwˬU&+r]ײ&]%MgϬG6X[:^%G5kg;΄ja/2Γ1IRoҮN!M=yM% Xr!R ̱9fKlz Hcss'n5a Mix8A0R +Ykh^o(ʋUhDҫ6=~yBOgʉ/1+Zu_s^\JFw 3T d:8q'❯LRz@s=8r+͛o/EXlT/oͥc0,w?-久CRXeP@'j9̵6i^X<S-Ĵ$/Ї{'!]Y8x 5( RɌT ٪?".^xAw%~4O~ )s$QRnImJ|eѐkT |&7ZQט\SP4NWSXƇ\oD2 ItC^e={;Di7l9tPbO~@= !ka$qW$Fw ./I5Fv+XR :^%bKFM# ?/,>P 78޸Yr>V:=Ku5w+8H` Sc㽴]0yÊR]kC5oyĩ;?ڝtM8YW0+l@GAxSO&˽yxZJE,kj;c=LU|ysng|^5)4yR #oE٢ bVShGmqrí5k7Qb6CE4g?MB.Qͨ|Pzȯ/?KuWd08%-12\@~+ IʊU·{I}:~ "k,#V=~ ~ tJ96^V G\ O&`yÛ5*hr+j EDoL/EC]gQ O_TGAUcI8s^1&^d&s|oe̍*WI0DZHOoN&#y\cpNj+V{i7Lv`> ±Ro/. /4+tdj$R}U!^fUz9OF{) F[xSeVRE 3bq,ߕAUk m-^AYs.xB>3cA|Һ났vA:jpSz8eH~$W LxtʫPT]n jNd;6}+y&:ǟ;@ mX:wzezsoM̫R"jLI 2BJj_En٘;Xժ.(P򊀯w7m9eycA /tZkJ2v_`̕'(uY/*6hpj(星. zKqyYPl.@3&Ņ/|+4;'t G'T'95"QӍ0_AYe1۩f|z @;ArM`|qScJ尊lnW~U}F>̊>f}_nrt";<(j+v\r2LŠ«S:iS_{TY"{|!`=J53{@GVcyc[&kAס~&+#x8:91`_,_L9Of+Q7oh! JVBh^GWڛhZ Gav̙+gR`Lm#y*W: Mu^Ű#lLћ>KOHaσ(ş9ks5`z$ބVmڎ&V[}i|Eq mgwanW)CץW):,{s%ӱ_)Naʥt-nR%鲱q2^|xoT~hukWI\p%1=$J.n^}cc%$Mģ9Kruu[Jf4@8C2 #~ LS|ySu,#1 #@y kEg%İc" H\ǎ`-p粜.i`_q;p-Y%P'Y+i(G$GB(Zmu*ߊYV=;ei 8ſ KC뛩'O^k% A$lh_$RZ_*:Xܚ?Fs[}>䂌n.UFf @i֌ \O\!^!鍽4#ډs?DµɶdESVpiCwɍĸ N!J.5Z5895#G/ <'R9 !w@XFҪx*wXRtC;K""#qsoDPj5JQ2li'唌=d;X%tZ K]Y@`sf gbӚ4]#ԀK_g'FyT? Ҁ8g5&v[buGV-Hfa5!vEMR_G9`KOr͢OgP'q\,r%d]|'Ql3ISXDz&T{;I(7a B[p5@w.P}}yu7 n5I=WRd2e\0 T $Pv̪ay|4"ZQfXHOC?C}ZzN޷l" ,B"tk+]pdCTӨYN{ pPĵn SǒRū |rf !^m%J<\£Ԏn!3fa 8C; fW7"XU-b@ tWA"e^[\م eP)]KyK[8)RpTq,KU~(uVxCQ LOx܉UWKpueDvUi[8{dW[ iSG{xn|9kv"OVHT8P?27(cahOITeR8-q%?k\Z_'Luozu>xx0KHgt VR^G*`%,S1PjA_UZ xo_tr@'鬓5z8n{ؐ&Pg f%=^RqÅdpn۸ >.EAPKlr\`v]>tY7Spfe VTk&aM5X-[Po¢^,8CtLut$Fh𞄔ӀN~ZTi NTِJPq*OM폑uY#|L`uRfGR993[7nAx:,Wp>`}9?-5-&=ҵ8c`7?h#X ''kgP|DuQ{Ѥ"j,z$GVL}~Mؑ>$opYBYƉ7O=9CG&jX#ӊ]Kax;n`D0wvz==?CzXh;W XVѠF ֫%?VPT9(`԰'~'uvʼn0aK `LH5?ii~qg%8c [pJ<0MS~#+ u31gY |4xʧd(xTڃe6B~]bYOv?j.g`IYu<*N PpfM4eȜi&}OYՂ}S-wWӑ(eH 6쳦_f#;Q!8?&|5+BB ŭ;d1,9O"oZ^W'Hf^A͕^ǩ'ded9Tmv]>'.fI2B Q7yK I* P.g(,mr*#Px`yo0pz#zHIbY1!iqŽ[3/c2[C +׆>VĈp)<|!5S6`OCǰux;<GIA~FDfhThvPDsCa߲uFJ$݇r?A?z赽Mh]b4 o\c0>D.acvųe%B-U{ms$+PkUK^ =ٺ#ڐ`V>qΥSIaެ,더4/gCt4r]g RɋQr=k*ckEF1V\fET.).dtY"̐1\}u:^2њMײsWԬn\4R)HZ|N_2%uޤBټGeM(!Ne.p gJǢgSCt#c,ԖxQS=&'%a<jսzpq=fKWDN'zu;y=&s=>&)M`ӠM>u` XMpD;]WC ;3¾S_ ] .UC _&[ࣧӀls'(jXGe3rR Il4jEJ6Eºz?#a B'V*K,6y=@fv7Jh9ҿʓ3PyUʠM NR ,(y?ZG.stFjQ "il2@#ZDu'M)nKySr!}q'c1 E]9=҂់4bD%NqldO06 <L Ǎ7*-7'E!{O s˃[Jqfm춘*4:Zx+ba?rl`E6%$5 kنP $hEqo w=jj,_$Y\EǶDp681% dg `v/VL.\nD CV65Nt#wﵔ2 lW]ߖd>,4;+̝<{ ynT]To ӱn9ddvkcVTFq"^YIRduYAX5Ѽy}ZR,̧"ySװhTapu3%;+)N@/I'7BrRp-"ّ=BKp ֹ}#a*vG6yW2.0sM9942s,j؈{bXȄHg*zɉR7 ] s.rQ4X36Gf;+!5z+=hcyD !LcxG~|WF-|Ofʞq&xܟHo2ȩKT[I@{^CHrޖ> -fnt!l*;VGsn,}m 3%IZa$̔A:!4R8AXv!X𡝼5]b'̡}} r9Od}h2vV:NVeeR-mjEaK c9IH)&y"ϓYr[O`?-"rZ~>: o,R/oJ¡˟_Ǒ S 1~5VK;ɐ>SG 1u_ù!!N0lĪH?}pN'Cd?pxw*`033T-8Q}_13 ?߲[CgX7YPonI7.{3cT W$>^\jJ36mk3eOWm"Oy ⹒*|՟2:bQQ4HuQ5't) TZ7APNQv|%1 Q<* Ի?Xv7GϢU|{MΖ̨H5[?q#*7p MwgFuTp.9fV E+EȎҲ:"ldj/d; IiI :}t)CBTzp)7{lp#0}k9N&A;-oT ʶ?YеFvՋCoּ nSZ_]%ZS-Zm$WQ3ؓHw Zhnb}TMsgW-C޺OFbݎIѽAjH*ٶ"%(dcuqN\D}-Fī߭V|0뷑a^.>#[WB4NȤ mRVDWWI4&d}.󤻜oDEOEUL x{S D3 u|*=r9IC=f2"ܔ#Y/3GAZ:&bsW`X(|X8Х3.R[˳EGo<_p$n[j_s4AMk<g=Y4ؠwp}.YH"VTmoN4qWmX+Iwh>JhyJINjb b;F(/}di#"lYFd(A"f34uT3lzx âQ+"hInS{*u .{fp'5Ÿ{b :xsdϧ _ gJA!! Iٚ @aqvGIp ?O|![| fw%P*^nA2pڬZ* ! xb\@P5&΍= ҫe]dBeK{[3-G0^LKoyv\2W;os"0FWkGz)w ٱ 8Bbr{<QQ3vq+NEOZԡx^4ǢK$e&`tn5iޭ@Fudŀ-Wt'S.J@{JZGw{V䴦ͽ܍]%Oúnq0·QTp?ܭOuLP>C5DIS֫Pi+CP֢PR:v>?S2R'Gw&TWInHGv1s߸RioMRy!# 4YYNj kCPv/'"RiF2HjO$yx+ǾgœG' NU>+y.Jfl'z,D}P7%ܥ"Szwn$w>-찤{NPjYͭe VU{]*12(V1zPy)3,j26v5Bh!"B_yx JjeHGiu/Ѯ2C uRΏMɟ m:,tes Dbf2ٹxa0Ltq}e&O,JPQSz*ƭys*SC]N;1.l;rLbLS%7 &n(tM""s۪鈞^TKG_"MP vUBw}E=ckE9 9e`&=>#熜%$w)@=aenf[aPp`i)XV{cvdhmC&H w&Yj)w(-vxGue2ar<2 ?dJq*_dF(!@X ?_Fykר?/9fm szJD(IDUب+ٗ2Ii~ v^(3K=bMv.%Q;/ :S\ Zz$ʻ|4.b)X`Rkkix&~}HZ?fALRN/ߘɺ fʁS*W -[hK{~p/nViNa *˒aѺ?-,#Nk'9\;?C0߾1,jQ&XIZbIVpɑPWq)<&FR! rküxy1V>ByWP {49׏%a~i}N -T- aE\=|{KOEYk,bnƧ/˄UMM#FΊǺӤ?Pcoz җmD K#}~ue\nAT 9 /lr`B-Djkm [H}m RH>\{=‚IZxVktlœe:ڎA̖HE(堩4~~?a[= Sx?ir65@Ob*Ϥ IEϟ s hsmQ럒sahX \(Pnl5{W?a6}e a vSE(5; \&т_?_"j6"繌Deq87 aTGbP㼔GM"u<^BӚ=⊧ZŒC3B`-I%pX!- ct/A;kJ7Ɛ.DOSrnkN_:%-7%9 ]]B W⭌Dz,ȈKm\R@g51o?Cg@Ę*P?[rmj>n;mI LN=ӒU§ 6$ץthl[=.;L=W=(k""3|lgBNݼЃʹrO 9m||NK%N=7U( %ܰMVd0SpW ! ݉-[~dkPL H}3Ԃsb_)ݠDެ[ 5{<']l>[$6Pˇ=D!#6*D Xb֒A~UUK]DdDmnu6{3G (bwK} ƷDž >=<]ߟ1Gs ro"Оg3EJK&:?:&IWgO$ PX%#јymC6|L[1H u+J$qNT&,{ l-fӎ)vsP#ơV—+#o[ MK͆ր<8M"m. !5;̌G' P[^Pd)K׆E/':-KT<Xk@&O YgUޔ:3ŗ`P&n|WHau,YƢL_7Ir"ȯ_뗅R5i 1+d?߸wf@ B-hmUុ-<ϻp#L˩7D& ʋ&fl%F&o>ZjP^M,u|BW,9Aоbș J|"ۜ̑oҗ}#\?+m `MX I  7_,YM/~sp 6HR2kiA[4̣aȝ5W_\L'猠k6.yTv<Y|}r:uT?Avcd~NJ9J fQXPO}'X!/~Vq@n\ [ i6kX˹{ O `0L nPy106Çc [M?rn@-KQ {Fd{)<c9SCoP!w=[#X!*rN)gչKt&>,>#x{c#=T5nꆒۇ-^)ds=>NK(}4>$J'< ωQob_wZCTG;m/J(Ԥ!5vcQ3Ō]]E,bOQm=,j-[S ;\e@|mϏ:E|I8 >Spicw2R!_^$l/"8jٺ _9]{UMw&f1nS^=Ktne|P@*l cXcLOlS X{IȵU|p~4h c}doܤ>9}g{ɜ 8#uυ3\LsgT N~m)qOJI NžLD-*|CU;BY[,ˠXAb* SW9Jxl&@QEsdrt͍@ # 5 ΁e%?Ӊ9l/2YJRaEcM0"`%tR^E񙫣ǪD̓NTU\ߋt,Rryv?0pnoҾ'!%B,>f1qīĒ6FXKWG)_&82dֲb!~<^NTc.zx^ig\V}u3y® C0it3310&!3/醅L<w/" 9xueÌ@wrv7giNx);`reSyaK\YY-F@^gPĘ0+)z$~nS^CǪ PgSgrjN#c 7ZĺONw)>_ӹbh`:yeR&Ы2wL=j5p8Z}ƧPXS"i~Gg;Λ}Z7q4qc@%<]@?jL 5d^[w4p{" ]͂R'VN7g)?ݚ>%+:Dךe4g] ␁N2zq r!u wJߟoޱ+Nga:d(L/ k5ctzzUWF)?2t@pNLbT?@8NE\OyP bt`eF3!H18B\u1H; #T}ۊw۴^4_.&'|e%*0O{i3O4xOū\߉&_wgj, P?7cd'7nْDpTZ~ ~\-M|-$O0?O g]SҗݽU>JxOzAS1as_i1^qkZkec@ԙ~<»Y^c~'GTG"n{}:iHe=C=[ 3;8,;\Uw40my ytU7}98HOFQiufe\@=% ~<2{/S̮^u%4n=[|DGNzYSnExEExQZ_JjZm/|ؓrllqHNa1uGL*D>/hA=ǃ/%P9*2@2Q:xb=/ØigSrI'̦XߋGGj^by*V|-zÑw/+j|HmI,4QĶBJXVYyI٤,0e b>R_emrEw}d>ߝm =hԒlkQW6 N{My; JJN |yԷ{jfKVW:0Ib%TH^-\ƁFb1u$Nwk?)ЎD+ l~KGBn֝{]>, '!6ztujxì:㷆bipS[Û3BP? JBI`i}b8Gܺ|2}Te2!#y<0D-"LD:Y*b]+X:ЕE59PS؈s[rS˳Uﮀp/B]%H4ɼw7$`0[;&9_=M=n}L^5a,y܂,wp n74d{zt_.0͡N΀*~(jF,"zHѱ BN_~5x/.mYTdv>-_hkb#폽Rv L='~Q)='?UW_GIFhV~wb}Ǹ?P%Ur~X7I֕crkKJ3 Y.[X@Tk]Իw# (Y{zo22{:z:0XX LKHh]LlCu4,$LaeYƱ*:oE2GT`&ͤ1qʟڼ#ucXhn2eR/A1]"<"*nJ,Nw_[mf8*j5eS06@qTW$Gz(}0I_.\Rf49_ɅkdCK܅?tzɖhc5z/toeai,G-I3'PmJ%L~-#xƂ^ꈘm5+jFD1+r59S Vmƿ&.f$ ꖂJ2kG37HKR\DU/Aʴ0 -Q { ṣ _ċ/]DUUcWa52jn,"(Hh dz{]̊rd\gi :WͻA%`Î']:{r>5xSE= ;+.y8FC5ͭddaS2HTܷo!a=ReydP WzD` qU{:/YVgADŏ+t<(Cyl0t~ ؔP~y9(kͥGxuZ[sU|d8jhOET6PMx VITZiž uu rA6˄3R ք$02L;(_x[s3넕_@2Uby(9?p*dؾ`S.4\UPqCkH[HW:o%fqCk*M/{K}nLfLY~A>ƜAsqaAc÷ƞ^JsTezB$SAQ:K?C44RKX8S+3z+tdJSf`u?dD02M%.M :,y֧6o:?c8^[@j^P0wA02~U~]^mTK^6yMSr5#x'܈Գ,Jt1BEs5Kc]f)áWnQtNE/L͌Ŵ%b&ep5"_!dMYYGC鵽[Z8"MGTWE1J{jO+e _65Mr*rQ%eJ`(h=vgzEjF yxtjt4EmC\L_Ӧd!b DFq.9( Ku<5|U`]̿ՒqG);[C`=O(/V-g]ujT֝`ȎqơePUa N)#8i ˪\&8jFHY7u^?cmCn> ^ GLFA1wc" uU"?X7 5&/%֕OUé6I ǃmdM7~ u~?I`Ohoe  b{_=V|Nmj/WWeO #Vsk_ۉ  {. {C)mv FpMYZk CI< T"?SU!jӦ,U3tck>ĭtkT0t6 Ma~w)5BחncQ:B'^hY;AU܅j5a?{ew{v?V|0"ɍNᗚ g ˴|: QPdR1S׌RqWuJ^sHS53up8cŸ+R6II9bz^hbZeaw$ځ_UB-:v\h LH73Rt?DEoƳ9k8A8.o'YZ]1N#' (v 8-ڊ[ ,)E D2<^5u GkJ?-^$>O ɨWXl"nˤ_e_j%(1@?&w=0ej#ݝ8ޕ_x)Bʍ~]:3E+C"Iasܗ ]3ԗȴ67#xto7X2S#h9|h?bI~*Hڴ(uau3>Z<ᕸI\=0^ayC等g Z=Sx|N *%M˦CkkwX/н9k>d~P#{fCL,Q#{4R ط<$a>8aقc&CRI.PS #]zӪ߂(]$9/-s?.6]{xD*`Di)}b\/y.%u"5-έ;L-?0IDg$i-QDb_gh^OIim5` -P7 LoY}9ʾŖ[ID]Q8LZ }KG!# 51N;*0ũ;*pq. Swt.%w;4:JM]PY |s0CaЪNo3L$gAC c 9ui͋xAka(7$FMJ@bMmcu5xRM)ȜP Oe8O _d_:/`W"(%*׿6ilo;k3#Йu ԏz'^.\>6vFl?.њU*6Roktت=04uc)#õ@*˗N 0GX/B+iS;q.(g1 zL V훚⑩{_.9^v@qt<Ig/b+JK+ӴJ}x2 Ӌ¨,vg\ \Xr7e0gזhHP5ph83mqkR}sU3 bQXɬOVʩ!xfb_hb/+Ӥnm#Iު}=m/8c@<Ņެ;t~֓y U^h1Аz܏&A9o|<ѴL-in^qt1HZLicwkl>DsKzo&@8E!>gj0CіIsh.Xdѭ19x)7ٺ3_.G©W"\K 3ך]j|ؤ8:z^G95 &?{owbi(.; G4y;08B2DZn| bJAvqm2JMH ylKLm:y #y oZr+[{#Fvv*ZuYJ;l3C8u(=F2p(E~],tLY f8QI9A3|Q7|$ U-0q"겮%'8B*WykFۧ!A*l5{CCsi<='d>${}GȌ&x{iG%Ӎ=lp2DܹtW6@ᕥoٮe:"]E1$䗹f$.ݡ6']Q9Ox/Yg`Q+DGcY_ߥ/ Ӷv[N@4|<!=ݵh%m}VA_䪂5&̵ b52gTklUc:T!fTŒHi0??7pwaNi3_J\y[j:wzKW wGCu{ś[\PcVG*&`eID2S%03_hDPwZFy+||o?:@[wDV&6|N,zLj/>ϤL]?:(J]q&{鶌1nw2H&C#cK40eHm`厩\ ӋQjJq 7[mXEԠ7IϛujC\3%6;Rx^=H$Of}RN(rVPXp6nqrBiY><-ظFALgޞ ,PxAkR |G؅ #*‰<Ɲ,\x#.ԠR/ ;=Pv'Rq*ݩYlHTI ٚG[=;NTIG jܼ5s24FBH^'4w>CDw41 g4s:D3rp%ND ]E>cWn<$V׶P0:]~jEݙ?D) Q߮SE^_?Uq韭f0̐~0!hCyP(VYB̈́KrD-7eӚQFc((C5iv@H4R݂* ن Fs o@kdtt.Pl쪸&۵ hҵt.*[֑!+r!= ̉U;5_G8G?+A y9^'8ꆇ/w|)9n*-9K\"d "k1.(o9Ŋ+ Oe[7ipq#X*G#40& "ؾs#GIe7>' şbb4ڹ cM?4{A~[zp▎U*6%}Nx^yw&aa:܀(B츽,Ɣ$Dnwfozg|ܸafs 0MUfdugLT{"5ljy^$18?]geW´h۽M@WP-:=6vX@ 4 $CWoǓ{-=Vf k 'l)2Xޱd~O6qo<' 'qS%,%1 ,>1~^;_0 ]En i GcsO[[4*+;MʓD)3D%>եB#@UE K<`JКx;;<|A"e\l+s@ѭޱiӫ񾲊jƎֲD)XUT+'1yRxI&ƭP,tD<6:@p&T!Ukvf&GkCQ@4H+>e"ӨQ#͜_5hOS皓xԋIvODg /gHهpwWZU0u4FKR bUpSel{SuLYΤp+[P'5b}[Ƀl\oFPwrP9Z"%f@El;7L~̒hkX˜-qAA[)Dzd`6>4g%2g"7x#K=@TSء*02˛yO h |PiY u~k"h܎Wzc!5'ԑ:9T>ƌ&y3zu%[~"%'Bte-#nnzpT0!j`hl6z_C&haTGl(W: }|1\`탠M*^CY_Ɗ[M˘+~bHXu3Cs gv~`=NN RG"I2_Y+XBnp&InЏE%[@+O 3)呄b`Ϣy(|wX>gDRU({YrvH,Kqm~l9ssׄTg9vıUN+1R~tc#+PdH)Ayf"|_0%>%c@aA˳C-[G4LRFQ5}?T_D!, ngF|W@^[#钿뎸~4UZQ!J\ꬷOS)(E]ZKx_ B Yq }pc]JTv7is'ճ0+ٵpSU3odS!_.\Sݓ'dȰlldhz/,ԺaUx '{P,Gz~>j=76n[dtygi9|ScRs̔%a$0|j犋QG ;z|oC<wo@?KQzw˖b>UV3G X0s*S#UBYpuQeIB@*(oq;uN<2dEDpPoJ3$P@S5m0 MNcNZN]t8XAOj(mSm|ˢ,:x>csf2ײ*mOJ yfQ7q*[τWt@= Y%HzcW-]ى!&)tr Jf -j_7͛HrT>("l˨3-poi\ Z\M Q+YRJoGM|xd6z Ф`uS)ѡ9f KyW*"Mb|p=?fR#2̴-p*A#shH<-=ZI!1g*)\3W >,poSQ`8X#EX6xy67ӪW6G˘1gX7Q0' WsogH,JeH1j"t6l z7& qX!Jshc(DA̵bJãQ1z'4ޢtf=҃u:YiqӃmO4jSsF`#/QHVYd]բ]7ކͽ?_!E?>1V'$# ϊcU×Hd˓Q{:7gvH=V݊jBFD; Q*ًQH.4W-yCbS-?cXݭoC~`^OiOP餈Զ@|%R#O;MT}374II&$sU'UW/L@+eD'myA@M4];NQLhkv90͍.'ZHbG.M2WaNqrdG@qgw.zu9Åt[C \4i"v-{nj1:Gu~FC`d4MP !*YO\)A?i,0 n#hYW dU5Hz--S.6såvĖɷR1?0(mډ7>g4м7JEc>m"1ްU\4ŵKB W$'\$XqP`6U[A/?_*&+1hlMSaIQsWA@-WNe"jGj JֿJ` $yU`O^8 @ H Ug:v^-cjV{~mr)5GN0w w1hxd>`#= `R(̟D6saJLχ@x:c>3בX+@$>zFNx&ٛ*Y4:jgډ\|\ǫQɭU zfB:23"Ӎ@IDKD7*~/?-Q ")/Gc̰Yk(=?Nk%^, $JzڨZdF RCziГv# ?c:yR^i66Roʓv2#SRtt$/n-)7 ї!vHhḞ$J]Dn1{7|`+露-sAߚuPYB^5GTgFTx |Żb"C{Xn$hRxla>\[ 8M%Nj'D8fM˟0e-x}H0ti:=DˆDPjo!Gc9M m+Dkf@LGbJggc]zN~7?[Wy]V n!Sa~ 120IX"ƭ3R[bڤeYx|Z %|"FvpY2=SBjt3 S~Ru$L{:/ecwi.ߞ}sW\~#W|#Â"]x\W~7GEt g{[K7/BSm4&ݼXo')UabfB3,7h505U]0O.!\X${˃H f=~>7غv' Ӈ0"38X.`@ 8H&MF' v^ sՇɺ^_ ,)Uj*}2ee= e¥[QC6}<5m2V>4p[eKYЫY"O$e5 =F?6ePs)ڡ 33 ӂ+ۡ( \ݿ,\HϞ磓qRAzGχ'W+@%Vb)_nkH)yTx]rАkV1z=袮=J?XUL `+Lj1c;`e*T]0k0ܥ}2dA OkQ x ='faiTF^y=}̓?ԓ`9V>Os*?_F]' .ǦIh1&G6"|13[*<4΁N;ICcgzn-% U MR,*)O.[܁)W^O| #PJ]+pN/F/lEըNL:_@&m1y?HcAcI˛F%P6YAc/=m)jt{\Ch[_#"nP7送e6j2aMcrszVL bw$UnًeH.P CmFyⴐP.zJŹpjcxifO Td ?z,Ӓ]C vڷS79DjFtsLjsmqZVyލ2R'O_#,A vSĩ Q}ZUTCB A'bT թ>}_D,&[,/zAAB+i~¡A$Cie֑P>QG&Һ;ap!_Uw7*+F;=bQ2N1yg]9wA Gϣ2giEʀDAభP k72Sӣ}лg-l|SZHz/J&t G 9Y*0}b¢0vqdC֏ry v۫r I6njNOr/Lvt3S:EHm9VGe+}RDw}JyJ걵S8xdɂܦ7e (%6< =Y\FkI'{ؚT͛/$&0~Hl3teǟ>KV?%vx/r+>^ds*}ȓєG -p#./+drgS>EWyboΙ2d_ds Q]]Hy}"~cVZ֌ paS:NX![ k.hj8 p nuh2fjIJ#FV$׌^صU`֞:g,˜!өQШt>m]\AEL8r?s|NV!XZ>j=8lҭ2}ۦJ'~z$+С8yW}wuZG*0LDQ| v?2>ؽ-01A%[~M u^UgI<7˲B;*J!$USdk cׂ156l.s />;c6߮t?* ݦxk@ Ԙ|9Ucb_S bM1IFS T79GH-ԍFlIH嘔 13.d}IP[exUDq=d%h=CxF绤?mpwDBsfχȷ2g@ѽqBԛ}zz=pؓ RCqP"MWŽWUg L(G [\HF27K饲n")t?@´6Eq|]+R&!O,~~hۭPBh/ܛ׷Pۣg2ypF^9 qfwd+AL ?mQ' ^TbHà[lәIvHQTc1]Q '95qkVooDq۹(Hn0Z`.W/WD Qp4Zm`#LldTu[{f4fuL$Bp2YYH.Rߕh < e1K58q vx܀C%N})G0}Ɖ7hCnGP\G|SP(L]vI #M8.V8]~_oZ4"\L:9l#HyJ'BY}$FC:_uʑ;se7 %$J<:eس8W>z4)hP_# SRuGlYJI;3J/8@{ҐPwW c}c\JHj *% Rw.+^uz#Uwz@E}Z* p`bi"q qJ>c2YUPy=spF*,!,ƙ/acbI˜mؿ6Iۃe!/'%۱9=] k p̊F?ʨd@7E p̻ h ϶tnrHMjPw~/h[V,xq!Ix3=D+s2{hO`vՑG8ޓ^bfc~qsep|tRj Y7 Փ$&ݱSW)*;nx3("9K]T9 !, xϘ~6Ey C=G߷k9OU5F}8x?L1Z܉WDL- iCGO dQ2;cOtN 6LR6* -sE5I܆x=4CP>sWf8 phhWO16rN\HPHJ]Ln[9}F3E4[nvv4|GJ}P>HY|2x#?o):f1mNkԣYpV/,\,ڄMf=(wD~<_3Z 'DeU7U#I0ka4ځP5op<.QcTK>T7hgu')5#ZP{897u+ܩB?nCߋ?\%L-'\΁D;_ӂd%LA֫uDE|||a"Y EEy ($Ҫ#:Ƈg\rdW¨UX@IHP#^q?o^i?qҋת ۤoDqqtcnC;}ĆY ~BWmfB`Xg 6H ʔQݷ;_˞UP&gH*ysA1mمVw#DQ IyT},uԃ*-N!>4qA]γ/1k낙6mBb5۔Rًxxص If(v#fˏB.Jw87ů쫕N^I"=/to^i06>n*0 u4ΌDXٍƉ&M+5cPs!ĸ1"Vtb벖0IF)_w> Gd5"c OA+Fw&ME:`"4@ǗL$pvIg aTS0 ieQ.xy \+8C>PZG{}bWl]5/T̙j{ⶀ򁋑uzw @џ/8èSZ%v]>BTyM^Ā\#K/Xn`!H9ғ|U,Uaz_ыjNxkgUB8ɖ+j>1|Ck":UdPʓJ6/6?r"8mKC-oHo;eb@-R6p,34:%M3)$\^E~wZ?[4G!kv`̆KN]>RN>UIEScI@u^w["_VXjn-6@AkjD&`g>IfRlh}#ӑ \Q/IВ P=(>{}#ՖL$Q%$B-APD\hu :CĔy. @Y!(IWZXHnpN $/J$²VlL!7*C%wC pP0B$21oNO&ۡдi}>qZU'Oi&hr t9Ray ~y@t91OElK%VR\ ,bOM䄨H2' _&D_$ ,AaJմoyC^MaNJI0؎ 7ZY㞩 V>*Fulm3Z6tn>SIS{:Xxtx)0)_Cp^V94s7@kS\^@#Z ݦT؁WPhXʰ7w$l,= b+{ޅ^lJ嘫=K3T| 9@fڪjGݿ?yV1/iY m i|,6_|G(WY"֕Yk?,sa4b{|G2/ BUl홀2MBեthxrD2ߏn+;VH.LG[M]~3(9_;/wuru?9 YbZ9{ύ5 0niM3W6 ۭe-qsl]u~*FC h)n^)ю&X?73F>^NΘSS%?Q#񘻣'.չWB؆etuмa[u7c@Ob `Y%fmzbiE|yS4U \=u;nf:=gpdr|7]&ᖻ|al5I[gY8L."ޘVڏL4"^ycQۇe%IB L8q/&yOAj)~f mx|]|ɒGއ6ku8؂z?ǩ/Y* ``6}IBV8"8Ur$J. =V)bહY/\)ozYBidj6*2 8hW\d3c`T<)Y{\:58w : ÇƵFM9j$\\.sRb`wI*FZrE 1587.2 XO]%֯V6}_.h]Hٲ2(Y?Fr;E1ۏhfS,e5lAYW+F{WA:1KSZ#xK:kt)iʗ\RlpzzvцHnåOheZoM6B Εx\ot6T٠{?ֺk=0o5HiyJ s :wHDjuJD*/G f*b>8{cljЀ·'KZėj0`}Ve1DʖcgdjT=vѢ2UC ?84jlv[fXG$QB9,!ǝ` :AX<"@ nP2sw4M7@7˩6QfBtIir#  \k>ŸZt-]z/C@?'D=tupkG#g:>gZS#?k1,gEr'6Y*F1#OlVt1 {jJ?<\e}}"kVEñH{䈞F_zQ҉qn87uY=֢SdMf?O R)7<+)- q{&*>ph=nE%~`JZ}RZtX j_sHo=vMP2?lP7`ps,Ӊc|w{Nc2 B'=4tCF(W^Rv@*g?P0k&X($F$- :.\(, !;5tvcyFj%Dhf,,׫n7̫R!uʿMǃɥz3DmLAx;Qڳ {^d }UV09%=SHԖi'ky+QQo+Y9cw?G-WV>B 1e= cE⺟0q?p^7][R$um4Ez\A*cVay:2˷6-~}p̢$vxBw]J#bƩIC'8 v~EH_\!Edl6:7$!4IV|OMUp[/3A?S.|fUץݦ4 Ő 105#J[h\À6B[ޏd„c1G˘.Cu0{@H%tÐݥ <\9\[=nMQ(%.YOoxs6 _))uP7A7Tוn0Zh옷QQhJ=N[8fʯHT<+^+dnAŌ|9|`~WUf)" i0St101yU;[dGFkzyi-ˢ/y=<fv wgPМTzZ4ZJm s)gL5#,LzJO `W2rA/d<$~^80Iw|*MjNvz@0eDa>H^}{(˜ҵA, L%{z+ר-ۆPS}e/tg`*eggٳӮ&!OIV <'*ќcS# Y^K+\0;BL5cPP h{x{N1L:ֻ1RWC/>ľ` 4zRLy9^byfg%Yl[1w#Rl{nѹU>knGdں?9ub23!XWv(q)l#U%x*囌>tn󾊵6+8t*%TVSmJoauۚQ73篥Pr¾X uArG*)ixSh@1lr95K@`{T# xa\Iv]@Pnۍa"J?6IA#A1a<$p3VkW >0Zw;|]黤^h&y$<,vsFyNfX/ Zsp DQls[0QZP4;fhhGSeH(т>=TP( k m~TEBUYu'v_.V_faAMr8]J;G:T1 XzBq۟0pFVT=yX(Mf99+.:O֤`si fρbf[Jag#B^E.(9bKEo3Bx: ~~~gLC({p5ռҡD"UA8 1*<$:A'BN,V8o ,ZzE1txmg#!%QohHuWo"Hcq U|:_4  :>TçYZ'dو wh \p>^NCR' G ?zh KN<- g܎呮JLu`,ldHT~#LH6ceDwұ,"+Ù$R |L F m4) xpdwg%cKa>Ja.cըD~#Ϳz+"nظF&G-hwYr'Q4xIREHkށy%|ȼ0pS[m1##$%w*?R9D$ DbdQhaL Y(5W k"DmJ6u[5$wנWz2 r56WRkԜEH)ЂM:m.ز0gHl49 Kk˳{]CݦJQ}~[tj]ÿ ,ax[S杷Yj&F4 Vu>#)SyceG.9{*  P5-OjT>[`kx`b-&[d"zd1UMŪ. XVA/y`@}=ݽ$V/q,)\ W[J[4ʇaly#<`8'} -Y]g0ۂib6K 3QYΕjB X(#,ۅRh@K/$-%8m_soF~e^شf=ZlZ0C?VFBMIlCr Qg,e&)=tJkSm}9z{4F6ieB/P)KC6ɨa2C,8ҽ2H1ΈY3C_qYE:7 9ؿkOҲJq792=*-ejZOh&K`Zzanv_n7áݥ \^ Y,. >Sn/YrG +3hS4^O_ $[{ (:nxNC< m;/iVVNKGܵN (%$wkGK?+|:ȱUJy?KZb$Q(2c^$./ϲ? }4oF㪇As:ްOOn[#.tn&upg<((e'X ¶ٯW~7DwxΠ64t\0jiCYe8OC>ז4u<whAAa'=G0>3;8!z:~-9}ixA$.]>!D5+F@\u\ 'd~X ayX2?!{qv<9KBuȦS܂GOkCr+iIX&Q#יl=ףL% I^wI,!OꞆ0,e8j"(@?&rZW~ZZ[F~(q?8-m2^r,8SYJ}-/?(S~aU&X#- BT7璁m|=&Y x9sm7S+bSSxUEݯMIU&4lkREd+L4T}p2 mQ "۩ᜲZ%|٤`56tRQ0`܉=ZJ/hMZ/kr]LyIP}S Fޮ MR0-xg"zeÎrvj3w@7)̖⍻#Բf?мn|TdHY [4$@K P;g,#ܡ'՝t揌ŗSNl>sC qUa.3,d_Jf%2Mg~A2M"Pp^1h_7SBӨD 3Ժc?+f9к_,4L+1 2]'Qz!ڑD$"'Q.kG(.MEId 9sODq 9#a' iڳaN԰< ϣd}?P }Z؞k:9}'_ 8ᅨION $E6d Z1:}M|)TN"WuT>Fi]66_l̥Ӱ@\~G(0ɠO68J# 9 hJB4,VԣC H Xυ aE?1auUxe~^GwR%F9O m{ B$A8o\\-#{ X[-i݈p<ٶkƆw ed H,r?DDlm~M,T㸉Քĩ-ZFD%ȘZZ~Qϲ-$q#݆F^3-1[L:Rɽ2 z哯 ~.`A? "{u=K܋#!5Ic t$lzEeIlQɜ?1)҉q :6$Z I&j!yUvuNR@/i_bQ{!$NC$Oe˟6#m3A+m;L&ؗ Ku—Z);$qy9MI&!mХ-U i6Q.p}ULjuijT+_6MC`]d o}rew?6T&Ñ(/'NJ1 KNf85A\߀JG~邲E]z谟8'xI=TCJRxA_ R}84yhum瘯Tޫz쯇;L M,V\Ux D^OlLJd2jXjjiG$Nvٲj@~A^r^8vh"L@:ɤ~2C)Tx?r\-'23j"Pdaa6`5Y>$J*!bFq nԓ- -+Gbf׬tWMkb1.۲4O=P<aTu1{"~ 7^tX?)`%BsI#Qz*`mDA ƈ~ra8uqB9Ąh.=0=Nծ\!^bzJڤ闈uWƧ$S\>C\Tq')`aX!i*207ȕ[jiV )%T(ېAȓ0(BtΝΉ#l3WH}{6pABW#& {ZbFL.` trWx>rӱm-}>v}v:b;[^⬵Ep@Z'=lcPIPA\+Ry+mE\LSLp V=CS0ʸW)pzqFV,bQj8yH8[ذG`Ꞓ/{B +>Q!(?4#!bGLrк2LvI#l] ?%73dYC7e /\s,G@ r9t8W\&R &ɻ\b|`@^o7]T(fɍڽ 䄋W8 S! )3ŬeXF9Iad}Iax 8 =c][LdA$9B>~ϐE;Q471uC;kCfV[u)پc\PG!2l'yẠG>r\)ц_(/sb}Q*[Uc缾Ã0>QULy:XR=v!4LN-\L͐ˀL YR\0i pip)ZJ0%8tI#/!ӡ8}Dhj6ڨqdQ_atfW`PuMۼ+^uyh'sH.h01ahG 3C `՟(GqiO@gsojQ܂e.V7hYxIn}0rŬN1lU ^Z70m󽟪l"ΏF o_p;驟5W\fSY8wQV~kUp<2h;[n86!_3CFL5؝a u6{W[.TZBFhD3TSe6@{iG=6f KS0,쁴6d$tsGu+=132.Oz{%JW\X{Thc] IsL`+x/}޾# rs3wl|*}?=uE"^k{\5]8VNI#9avق'PfNMס$&!̓xz6'h"r-PxM\ sE#uF^8Q&9]JDI>S.sۄvd*ya7hzcP9ʊ=TEG?bA5q&?N"PI *c{l0v51zUtJy[E%Ɗ +CEՍ X]q+1b_/aг5v9(J+DrS+P 8NYK'z(EfyU3THWOq,jyqW/v!'zd:zXMyҫJUZ涛u+W+i\_af͸ hc7Q ;%x{u(>c7&,RֵyT?8\Z?^ ב΢DdND'BOI`/G}X83 AADDC£Uɢh S!A` gD'`T88ՌTw{f)mQ\reY}e?V``c |Ձf߽U8E+RvP45%7#֑CK5܎qHNu_chS,[6C\I*~eV"uLt@ZՅ7d)s U7\peʿ"7Zb_o#2FBay1&E)4ZBO]6=v*C©lAzۄ[_ɚnc(Y]R禴-Y;& Rz~]LO)]g ʫ:CT"^ᣎ8+Yl9x ՕU?@Hct L ]SgZ!bLxȶqyٲIԋ dJ V|#!nO']ڃ>et>kzۼ!r;*soyI*{v{nJVr2wK#G1lr fM14Ex3q[+mUf}2Lqɸd&uK{a~8CAsLJlwr0>Z1oXwY EIoWmf#Ev· 5v9#x OH|  q$dfov1} !ͦ &9y(7 {rT|4tW-e{thj=J2t. O3rE9t =LYU`AVOu! ow{w7 s'zF:Xh"]c taގ7MxzMDj!eS a;]w2Gt#\k˰4[D[vrh֙Ll " ( dMn#{eҥ\9\kƱA!{8}Q88vA~~mNwy%ɦfޅ6 ~pCyX+K o+T -y|F*B({4 l3, ·FHk3E[lb49  1ŊJfn$"oۛ,%2>=$m*[]v&2瘞*E^NZv 3SݏQ Q\0Q$Vf/rl3c)םϩ)d޳ns3R36!XNk?2Abs_yMaXGݻqL )'MqGH2Jd=K4h?wSzgn\w2ri1a8ɷ`WJ*w_i_= }Tɟ/8y4rQ&VeOk b"fL?an0ן:ftd0w3 4 D۞iNB2(?IA䔓pncN8Jx/w#{+`M nnWa:-V禤]%R0 Z`m:[Y Һc(yDD`2x`15-wf?%G2,K=~3hx{4f #JmkL]HgFߺ1ڦXxg?i{]6dW ;άS2evd;0z6Y3s{SLb<́#ZX-_",7+G_q ?%uoT/%Cbgx'ߎS%Fvɵ8SnbAsb)-XzִIsJ _u4{W9r]TOlG"I^'mW^.rsEmA@Az5n#O 6b 3#@Fqr-l ӜfSԽZҾ0+2`[84?n>($#Y㥪I(p/Gl]u^#kaS\7}zh' 2㕑+lL&;wj2̉ VHEBŗ8: KfYԀUB ̫%/koDZuKElgJs˽M^[,E?LQ,zr檸ݶxQ:>e;a]bIcIGjz;VZPH~[tgtsdA7o 6D@ @@jHQqCͯO~m mEcחO 7g@y?#n ~,8@Ք0qPj زZe|f6ll)XphF,Rp@`s B:ֽJ35y2Cw ten852Em 酤V%&fJw^VlАKR]KXKO8 2fI50 ~AI!1l.{-pfRɩ]怺%Ċ 7_v趠RĉUK}5*<TQvyHq^h%XNOwm; r]ScOF,n(#Lp/ә_t֣=E1`6fRژo0 f0]4/U0}Mh30ΖzjՑͱ"sDhD%"Юn:AhөWTZEL\)N0/NvO=62ܚ)B:7*oovu&D¢V7ӫmoU}R{SHpw.7g0!}k ;$ԛ lnTXD +,+jז_.sfX>wqV.aBMڦ]t}kC3YUͅ^wKJD)_!r(Ȥe$bG7*dO*$hP~IٙAk_j_T^.+ߠ[f!fD] \_at%ڗ>gg?> dam_2aj)@Kn A-s\{Db+c}ԈXxP}Ep|Y޵V?ˊeGb}j ? -CQ%Qq!6Ga_`h<+ ܞ;V`BY_lU֕@ASw"`2_J! S[Ne' Tƕ'wrH-SNUf9ۜ4$ ߫AN—٨\enG}bisG #d0߮bQ$ Q9+/vmsByĘϰ}},5A,(0õaz9ab+zKŀTI.M4lM{l~.vMe<i_T됢%@6&RMݕ]ΫHO{3j6t:hM>ݺ۞oCk?GCaߊJ$t:Uv ɪ)yDRڪP]"`R O4&ƇRڞ\WiX䭳te`y9drTiD"I6#+/` jъR rLڃ4dqZ΄ \ѱw_:Qev^"6oUlPp^f>}ryk+4R vN[9O.~-uwX/6n.=Rdи-ّgԹ2~*칋DI b mF4Ol|=@_`ύ^VkaSĿ,>[6YXg>ߝC/LGJ$KW=R-dr?喎\:A^>+YyAB2_j J* 8F=Nv@(-6c#tn*|IA)t3]%q>q *bn v,,@ ID " u.CEO6Rk}qג[n_ӝP>HQ[h%6跻8+8_XqB#&T=KzwQ\L @L `Ѩ*UMIh]U(v쒛{!>H .ttM@4,m. z#3[}C|_6s]4xޟ-pgGoȬ:"]'95_) WRzX wq+p%ׅ:8V^Ԅ!sRFv0/",L?6S2*5&*_̝f"hmy(!'L](%?WPR8>dmr_ cAo09D`p*S*.,H|4#2"3Ƙ6Ij.Fp:F.(ok-2\{߇7}FKYޠBWLϨga ui&;e,K5:$ͺu=.&$G1ce!F2CI&ȸ8/ -&UO|cƫ⾸g[{)l/Bb /eI;%š*Q umh(RFAoƄ(WVH p%g#U(_S4`-HJr4ΰ(<.*RB!J|@k0ZxYjwX?Z!U5Y&T95 ռgX%5 Jvq]|xBG؃]MB45P=Z;\̇Iq.abSZT^T͔#cߌ ן8!jv~ s|5J$Ӛ׵8ͨn##UVRF%c`D L&=бIHخa~C7{S7I(?Ṕ=OieZ(A0wh+Rb7cZgMM"̂F1κ^_#S;cTvޙm) 15L2)`jCt-UO5`FMbAt/֔FCWρFFKlL|rz_i"Et;+VN b>Dف!z:ipin}(̏HU{6}E'dOل2 MN tnu8Sv:yJ@`Li#'' ȹQRI u:(14Xu$s<?-oI5\`%a:Trշrt:RpځIll>g ٫`@@KQmcGMEu@z}I94=Vطr~*['_*ޚ3?1i;u!K̈́ϵ c[訯MUeaΊ3KSyf+k4{,vfMo1)vb W*M֥i<&7W)GϚf'ҳʼ>!}|с~.f~9tF q/ 4(\p -EWPY4Kٙ-R;m5ʷ:dmq,50⽎P!uTI {0H5ݚT_:%z-o\32jSмm 9>wVXy9r pUS~ELNX^ u -Qi ;S5 tc[x[(-"i6\yn18GW.2A]݋͞t3Y$Z0eupz=aD0[M'.w O6biLs +Gp N8;8P=UGxTCw<*/J6~3#ݾ *D<]g1 ]Z;̤.|߯ލCEwHU%5+#ӣ??&Dgq6x {f}LU,r>Bv?CM3OJ ͋ $vHV7"HF d'1Muqګ2~I<^%MZc, R:%<0SW9F*Rt.UT&nf2)9H(@M yjf᭬k8ݶ<.ljyNSIüs Fim뵸^2YDz!,ͨ@<5=tdX@=HC覄 #Q4!\v W둫qkFP|QNS`_L74i@v&Ip4Ńi=CCd^ a4n$~]C/)L/LCM[Tlbi #fe^1a*L/ {,3 YVJXzwTII)o2 yV/VnIQ_տ.CaǓ$N%jx){ HA篐E!w R<&ìƜZG@Ъ8VД"(R{흸PNzUMfR\G8k&M/z,sVx8l)$^9z蚕٢Y=S .)yD IxAawf,C=N)%Iskq4DU:1,_bgGKXWjD+?݄٩fVzf1C D^I1uj[㡗,5G#r+{Y9h/^Lpt&h?'rY*u>X -Q9?7nZLd|\#14ܶ~^k=Bf&=WH5ú9"=21?KiaL[qb3W\ଯPVel}E.h8f$Dh(4uk7HbsS`)Mg8ӷG\W#9|C8"UO&>*"Cuc5 {gh'Lt6FKz^=s{gGI<_^$J? @(Kq:]h@,/& %Q!Bl;j,/]k &L{F[O:͑ǠHj#?+Moݶf&K !+b  VmHbW}B怽P5?It]çJS>ce86y^xYLi8\m^CY,;@zOEDZ(Ѐ =1>TzymdwLFTe@yX\qI a ,GЂcۧQi $LE?Q]ۑ)8#{Hq߹afH+EruZ:R1w/SĬj'wB[)2CB~SPYtkHav !/{YܱNdfa1%}S>_##֫v+!V#^ÿLuu 1<>Qb傢1nCYOr?Vve -hfoܫ;lS $^~h@D8Dt8\I4tg}+'˚L_Ɏ(}EBӦ)y%_ "cXP!1w"1nYԅ,NjPE16|u#lMXޣ99dJ-ƅS Pu),x܏FKCzU:8/fV>e, f$1F:^ƥ hԉPn[shp2ʟ,/K[7$=2qV O`(sJJsi=9>E6װ(E EFr[imNd ,s/ltlIkD55gJg]v;]0=>5WߴGfr׋jvn#eh6Tc+%߳ҎTʢ1/ }Ü* WW2 {z p@ֻӵ 6<2ZZm9UVeʉ A^_e+=:]j{)Vq' Uٓ,fy_!ItM5}1N_` UPVBԳs0j6o@hÕ6ߊ3!h7Wd9MIvW: q6s67v; ߳Rp01+3mEДJ,"bejf%pc 5;r]5oI+m[!%$PE6K}qPv%T? 'dG\ٽN,ܹvKS8$yFn41ju{; Qq7" Ƒgډ螶rh9>P2G톆bm7rw/aKK2=n%}gsD?' b׼s*&poTjk(X|+{)/eK췣ੜPhkH)?*j)Ȼ6Uz8A炬 *>y㘄н[&xXa!^UxW¨cK^!'VC}."-җkS$xE#5? G2q9mD}S(=M%%n}hzwuBz acT9uJ!N(ן{iKҪ 3'WtPa0xMEbakSrcC4Kh7~2\КO[m6)ɡ!ל#ٛ(͙ eMvq(@3޳=|l@M€Ae ga*TL*ϻP4^h 111C'ǝ/6wAı_blF؂in;ᚚho_ gm#ЅhX#JDDS&1G3XxKXfڥ=" KoktoP E~jм{ؒE@Qplw7E,&F׺OHɾ$ZBhpW^x0=`5>`L~staEig|,. ӭh]{$w 6eTQ.N ٥p'SFK >$ܪt#L8{I5rE 4Ѥ (TkG3E %g^sVh$ĄoWJ+/R%| OZsS#!&&D_〯oH ?J߅K05EFsh5i&h%\ ms= Z붏zx<S )GKc=i Aݳ]xI1}#G]P{Zr 0aXp8P{PtmSM"b7ȼXLzyw.P dk*5!'><'5]{FnA_)ʶjg}\z@xR`z ܒt^ KpFIo@Ur=3j6As&>ƽik =a-kb[{?y {2{?;C5M$KĘCG0H]am.xlA[bS"Kylg0AE%رm$f;g1SܚB(>M>̺a?2HuAw+l'eXD1Ud#MWF݂(*IV*QaMũ:\ ǕSX56wMK>#RF&Om+008[5"*=fkS|gc# ƴMQ_e aWHE HnS(ٸxeR`6S YxӞ ?#Ҩ0a7*)TMc1 ng-Wlzf\O;nwP˔/ rDHQ6u, '&!%_cN;0cٻT끳T.ś|x`sPZ@xwo[1HYx>,&I)16_rN1b2E2$TT䏧A`)!uu,T?2PٞlE2F5|l߁kTsM|;Qv߁!E^vr:'hIժ9)bնяZEw/Dd/)m3 ޅoE Msy[:d`qWzD)Huz8X72W6x7gJ-/:^@d-^&GoaޗUG9iv7rl·;_}˂O ܿ4lSEb!,(7RK>#i`H6 Tǖihii$*dEз23K54l J瓴 DK_㓅hqܞes&e]dP]*D.X5ڙQm2΋&lai`|71q&So3xHpd9}qrQήȽJ-7k_atR +9*Fވ. B/&25 nEn,!WNjcR%ʁ>#" a 3$0qć4.Qԭ@ {3SCO9S_,d7]je㐡1CN"X%oC\Q?)& dJ<}]c6 :ܙƳۉ cmBwlӦO,br$hʝf8}\LtF3I=%Sxcr64~uޓ %JՌyn$d3Cn:Ke8Â1@]$77*)洷 QR!B*m_a:ǏHD.g+Ze3R1P,;\{Ϛ4Bd 异>Jw `F-O 0d÷X|(T60- 3"mY]pygIڿ IWV XY-<tӲ7ؾPUںHb!IARmk$m +(I:agLkh lZN}[nzWB kcv]%l @jR& !Th:NI;/2?Y&"`+*f:D ~}TG4.}.+0Fd{HML7Kh`rey?BNMH!6ގ&iIM5' u-Vs9-JL,skR'Z. 7a| Ni(><_ӽ-<n ^QIH`_X0nӟ S"Uwԡr1mb(d`A}a-~!8c֕>& Pef5y'@$6Ua{hFWcIBbUцh'`sX(`+P0NQlYL36 O:+w|{L/ k'ūcpC0+l,ؿ7܉'$źQ8gӓe/!WJ'.>U57$B![\3e+O6M~,Rr]zns,Tx| 8 UT e.n B&;!{đha5U_0<#ѵ;צVU;ֶ~B#Tvq4YKi{M&#%6m6bMNO}Ef>R.ZVkce5w4n2:.y6k7d~Wb6̇ E=gszlfQ!툚Dur"sx|3-&,s9auĄavM7Cw"SLd3 =ι8ujP04e&T; z/8 tȟc*}j65`T.`8CM?px <~zfgV洭 m74SY5VXMZ!ί,Jzиֳh=ȃdfčXsC|}y\g["]OnT 0CQO|B #9)D}g,h3Nr|縏tWOjGa%v"rQƄ\'2\'O/CU邆0X -#>鮋0EXu}*%_{pd^i:ܓ, W[Uհ󫴟]S)쎄kg WVu]|~~Lj-VSWQ6P!г۱M@Np~h /KKzhqe0^N@ƩY @s_ &93\M%Sx )dI0BXGzfLv;mq5KQα4k:4Z p ' a)YSiĬ )` l]FW;FI`5̰XTL&ЮDKzpԮcNo^ښI\4EV4:Ɓ:@+`Vtor-mp8)NFGAHݠ$xF!6Jv;P n]Ao)|Pl!Wk^XJą7us`Fƣ)+Q> Ogh#UzJcY0s;p7W mG6\)&@T6!f2$B%$ ^;~Uz4ѫN_0K d-Ӫaڬ|TSk$G7h?uQD=#a2{EŔ-DHX%SRtQo)>b%FK1W$rQzA.Fd b$ӔhضԂc |MrD1鱎r&A킭:T#řd6F[($Y{\ ~#&"*%]pRi۞*kxEz-(G”ϱWJ !L>R*~ k"7! ^Xt%PnU-1&"N’= lmjXիE|9stDv5#9LE|G89V4wL{FWʁ3LgLa 1;r_Ն^ThWZM,FwYrO9줬Ne`bfŁwmUN4fnT`R 4||dXDx$jFuaPԣ Ȃ>^E,N)mHb]!x%z@Ub{qaxkYgNeb"OU6{fX u=&7xX@E?{C҃OcpGٞo~|k/I= KauIvvxXc(b/i+³gʪT`=#%meANE󲯂5Qы_KY닩;'JJk@fH{: |H?Bڠr=lF.)5Uq6b$9d_92>oZ}7,|+ODb>/D48ߪ%rrA^{A1C~ʲ[;IG=IHO/(۰z> \CBs%0L0l0.)b;+W3n|*@=\\'VJ^Ohj'' 5~d:}o)mcu¾?ꖽiNpPOL\> %ov6YbR8]El ɤUg[Q o.v\K xQ,˄P Ύ!@7xP$k"BQ%[Q Z. i`%T]Zˀa^dby hy2 ]8`ϖr'RDzP| ,Xwk@o!їjnR6cr'eﮨ2.+?Cz7` U^c=NɍlSQ13ꞋN(ܒ{SC!m/ǧ1#$ž8!9y HEM+;«9PUAjr:vAdl FOHwŕ>DʱR&/STv; 5a{ jRmȰ[tBx6T- cL;F78g.F/s@/3a6~wxw@{e^']o5T2vjio&}^gI- ~ $Nϭ5]59f<ڍ<d@w^w)߃XDǮ$r0.N4r' z_nՌfVtD܇?u *[BT9DKB%ew lP6%d =pƾK '6(`mdCR?rw{>8=أH(QS{m|9 ,C9l>8Ob!M'-5U9[޴zIA`#liG4o}'ɟⲮqZpGes E_ʨMRę.KGOt!?@W+׀Oeg3 &0g KC9Z@mBH6vYӸ_ˣ&UYIplT +dw*LHt{#z=(pXƤ:?0V7Vd c9D);ZƨA3>E^{T9 nMQi)1t{) 浟nj 6&MBH٢:zu؆{ CmKA6uftǰ/0^Yv!y+j)=iĒ C¶݋79}zהB Fy0M9 x+mab1}xfw+dƩΓD^g{PbuYݚ ĨJ>Uz_qU}^RI37@֜DnLs~<'֣>ksx6G> 2*<1R7?ܖ]ϑ$fU^CS| $CAИ $8:NRBLoYUH>q/ɻeqZd.78 8 <h;oO//O´*j y*(9A؝j쁻Rb b홻3v"n\;[noP@JToq/%Xnjacljgo} YLq 4J [f&%I7e.TRMC|9*<\rxdVy@mW361rTĄotS'b"P>K.[Ƞš m1su B.ߑ_&ckƛ[;g d8Jd) anxn)z0Pb? i/}l)iMQw?m Gv*BLL$l8I8BQ氆+2,qąDX bfpR: H xq@m8xkjYOȫ{c ʔ◗#*>mEU3ۧ'R?pDcBna7DϽp_'zea"ꁲ0Z{̶Lkgwek$zo%4BS~q.Z}#My+5B֟sh);?)ҫіLI}njy|薣/-Ɖ2lSOTlJ֨ d! E%;.U.ie> 1O0Xo ˟ZÂ&ڶgͶ!y4 PDNvvc)6/{,"<ωo1Yξm¶!m1yF@[6ZB}@#ESM`R.#T*#nx,Aw])SG_-&0k:gS3GDy/@!_pln ~˙:kfPڷKumjp0* R ZPvVّc!^'J|k1 Bpj?,j#(n'.ȷk@44e XM %1S@1v[:Cp1m}9-]GSjirG!%ߒn?G(+5vAD? ' 2~gOp|}΅qX8|E_X,INDp,' ƿ2)d!KϪVכ+aש8S^g ݅4@q56JR. */@wh{ܜ(u>QE,J!kxMMD=\Ѫm 4V Sf+ZY]fIdB5m`PY<J/w ]`n+JCx}@S=[†> tJ+86`!uZsZ. 9l/N>/_*ѡr9ӁtV#䫞+r~p49{,uXA@R/{>mszo7(uREΉH̨!zo09 XboA_@,kδæ,S0i~q^SFd1Wd6Ǔ^˫*>aa%|b%DJEb u]$0ܬ1t;;̅c2}ïtiJp(*񾋋Pdmg𐷵oh]jYu V֌, ț#tL}D72D)(XJ/ilM b iٽ|,82#2qi8JVT0 ]ekS#拷7B*cgu3ZԕCB.$\:n%` n%r~ 18*čB3-luH1D`ʸE,2y.ChhS`uyeҢ-pT*9Q?Af>L/4)Z1]'^0C-}؆h1Ɩtj-Ίp;dT }5tjƮ \ԣew74403k\k2WRE5$Y(q_ƟZ,-glrFhGwdCř,7m7U|O)~gQ5toB)0l!ܔTg|ʲ >K]P6џ68S})xsD:XbCJE'WiC/쇷F༟!wÓlHϴ5pCoӖF!92U2B_tsoqғo/%("R/S0?,Fv^;Ec\R5~>¿q(lB9! *סּ( K[1E|d>_orXdM?`ot[dA(/06Y(w")shwK/E8KG~S$A )qO'oz|eRwL7gRZc;Dp$jGOH7h GtrVTƶ5Ug+jx½+ut7 [Yvqw25SZwsy,NQMa' pm}=4_c4$a1nek&@u$ht &?јjVטDtTI6AfF|ڨUIXST ,]o%;Ho8q;* C8NC2׼䍾_axr@* FcN\J D &6@[X;+Hq@A庒zJ|LF^h⟾uE=ޠ檰HD{ B1䗻e(;:1ZA~Fcfpu+;t kUJKզ+,R'קm@"ڢcQ[J 0{ q+lVIDJ nx4Gw@O[yG\$yq8C)5A!ùDĪ2a eYI>x:m :_\!R dƨepʧ#Ζ呑z ^.XP5pHW&z.]DSSNE8PI@'@ S{>cDBA쨷;s,L5y!܌ yD sgpO̓*fIV_Wu.cNB hlxw(SԢ<|\y됯v8;p Ku ۪T!erXF"[ږkpSһ ֟7fbP:3pMF;!qe~JCbmcFWLt7Pe- y܊I0EŞ0/N󆚳{dicJQbtn.@|+h]47m- Pz}3FnC==abejXǛQ~Ď`3І0E}qmq:5?[K Z;ZkQW_+TŶ`WY"ܰhJ<_*Q(P,ik!fS}h8"IybٗH31 WSoNP9 Wf0`jwyOqU:(S(xHe0mIl4eyt+)"+ &@`"X'&+$5q @ka"^)@[CCWX+|ye`_[pr_k6vZzh( ;߉U@ ` Y&ț-kx|n =V49sqdo>xLMRKo^;T72HԎ-8d< :)=/9Ws_^kzmևT'=>u(g,҃vq,#aL2#ņLjd5BK__=dܨ1P;fyRkUiNx8<ݮDž*ǂ"i 9^f^{gMmPsw]%S+Бȳ}W9v8_IӒXƞ\ @܌_eFX*|'f(0sH/͉:i|J^,2:Ze!o"`wt蘩.oSjt(Eݕ+\` / yαW7[QYm8zs\ܔ ;}j*@.`2J' ƐyɋBp a\zYڤto'| 3 . ҇ [N7C p«i| M֭z si{Պ m)6 &{P"?GѬ")}K}LT!Cİz{X%XqR( 51ԉivR5M'0a6qbX3`%xBe}c fM#vSr7&x6p84m'$Y{cfoNл^6>!% =!-$%@[sM5JVf#:)3TH_ˋ?֖ʖ5 6ud3?LBGLn&sd4v+,7 ÚLȎ[BX2HJjHӥ.r~ZOi"MWu߬ s&97 V*嫣~>/d3嶱jmn2M/NcFY['m;̶}сfׇb,[N|{-bu nyOb}I{M&|ORq z$b O4J s4Y3 W#?BzPh\ZkGxidk[_K DʇȷvN =+]졜dhkKB(GVR]ni)_aq9^WnZ & K0nki9,/m3k $=OZ-s@a7 Bm~XwϻfBIݟi rXo2HK"bqIZ'9͊| ( E)A7瞶C2K7Ka۪tfJ4c>]+ - B~߹r˹AmG+FW[z&iY g tgO0 Pt.7nRf0>H!aC \)qt$"d9VZ\α+N :I[ 4?]sޯS;& `V'# ZOD2f"\aP\*[72Y!Z -3dȵv:4ax582gNcNM)GOF'݊T@hO(Ӣ.&}qcHBEp@(us;'ss jBxY߀W?SBj56eTRR6 <_5驞 t3nsvgс`e" 8LPy;}}JzE#+?d\X)%<)lԳu#DYG$?!LmRSuQzPSA# I0sO٢A>UO)޶b.LcYelq1vn+VM~S}-.ԎpMns. SܺxYGTZlT-7#c6 HBX,dzv+YҙST2GN/Qԣ~7x.'QK- ѐ,LxM$X* MJO EܫgW4ɇ讆yzJ:Q60r @=+B~b\l X<"lڇ<_L& e;㗷=Lұi갠<{8Ѡ'w 8!$7l;#z/kBREf;gw[-NHzdj TmIgqADk^O !$dtBsHb,vG,bLZY;<[þ< [nXE)C(FT,+Te3־ch;:B CV/O"HoQE^5ʕ2dn FhĎ s$)xVkI|vr*+6 .tR*_?b‡\X/gp )-"F%q[̷-gL[1<.N %+5G{ nS$jG,/?[mO+6:ϰ6@~JQKXIwbl~oeA &tzVm%ésMX3.~`1Yl7 cĉo(|r"sH2xx?u ĩ~G17eyj3CRz$5hW\ Netx.(`kQy+S# Äo:ZFb|=cQ~*DSҧс£ 7t%ImhUՠ6pЇ0J!N'fhP=S~3;' 08<6}j=ig h2IA R\[t MYR+n]ȯ#iSnƚ$Aq8o e4T@M`_n×Zpsc5eaDML8یA27@O$J2|W-/˯]34oe[w-SܛZHiʣ3(+mX}ж`B8e7rgs$$;} V, -U3=z#zu]V8 +TuEŢ3?Dd'0z>#J_@{/\#MLPqq,λ5T?3E7bT *^ \v/5M}?"e_}ѱqP裀GKYzK]]~^v.{s^Kcnk {[܏t5A '&GC,7K!7J].2eH&3&h/T2A,@zgM԰m^70`q S^~q@, .{@8ˑu؇81"Dzߥ6'_7c+u a.M Esx9Zofx@51{nHd͏ 1U9<_fd"?./ϵYĞeOB-ڟ/whru&6zQXVzTu1 0981N⎙2M,[ ֪;ch@I)w8J,g'Ru8"fa6DQNcXOVT-TX;*}YqOW@Ι;;jzyZdBu+&Fd ax|w7@qzW{Zj-1G˔s)dڵTҞGQŠ )NPr{VQV yUf\NbݍAIj`M-%wG<!u=u;;rYOoQI4Oد@m,eM?x^_KI@=A3c1@>Bź (wS7s=/Xq.Im]xvv弮Ď- =l(މ@kHЉA_QX6U{MD*`VX`R&[CCoxL3I]x~J2FS2TgLh ,{9™v\i]eVPԓje[2 '@s8ÙoZvV2w`u_W~3t;USIL@~0 f5;w7Q'{L q1g[6iޱYrWżz Q7̺=oi8>[l|d8-!M줳ݝFCUqϡ{o^޿|=EXPD]/sB9lL? D]uU0DXnSͻyyE+\ݔSkf ߌ YA^t{x(,#[iƀR!,>45N>c|Q:Y!aϴqRCa%ێ`Ə5ɯt6Oc((~Kld Cmh ߬c,!Кw@ppnDxj9+N:8:sgp\a_0XYhm'}QkW[_A7L yҰ""xiSksġca &=҄5ϕJȫa_!r9<Ǩl3Bx=ӿD\(F 5-W5Xr[m 6Ѽ<^ROnѝ@WIMĻ)=tC>Ņ;-9!m/ǚAop4&Kzҧ+ $ Ԃ>NSTYШ(ݮ!B .챀w*lz%IXyHғCܩJZ=$M(@+N/0y^u< ֫\@& 2ᥨnpwv+4ԪΉӓ-"x(^y /MoM~'(F𼲍GӼVsS:LC`) .wRPiUY8et(r2@,Bg3T0+BW^-H|]"ER/? j/!y|%{m)(+afWR`;A]<%sҙFuwX  g_N Ь4o}Ҳ 74N`8;j`F_BF RUm/W](.Gd q8~žbn?Y` ]ŢV]DY'Ӕ_t|$g&_f\G;I,xzk.[&{] WIFl Tv3Vb<ѿ+ ld̐<`{aQG#;,V fs TAgH 9F£SXk]ɝJtѾ ɩz"/]V5*^e9$CN:0d$T *OPrI ZH2yz?&j+Hb^N#\ɑ_A:'B&R:Q^`s߇eݜW JخeT_q6/6lƹK%"|֍lxeX\{E!wʚ`fD~#+(%4m'3"T,l*Dx.dgSL'4PB^NY^uH1}F w^r%WaR>)'ȴ}NعM^Y'@*5YZ~h$TZJDUAk6}u H*H;~T/.߉(C{>MDL^0b[5{sY~0UOߢlbNRyZrB6o;6o2W+na# kO~AKt ӆUMP@ 2 p.gPgA.nɿ}_ևCw!Dg:P'RVv;-6QE_dsX4c {0O;d]$1>q֓ka^"7ߦpT|(l0GQ@ (Q6;t38(DSMIY|$Fz ,1Q.yg\po& 6SOz}H(?@3,ԇsԊF_k|.lw6DJs0A|,O[dIOp)Ύ~+ơkՠx 3!3~Yr!:PZoc`1J+dt j T:kHG*hhdak@Cu8~avZc<%-<.F)Q6ʋu&W<O"H~jr拭U%~MbEs[ V`1soHhʿFVɦmڌA5NB;]eLάlw)௷N t=~AԿT ǘ4''7f ׻\WXȥ5VGxySFꪁ|~ mOXڿd;ʟec'> ҈tv/ٰP{,>A⹰OT),i@Ӱ;\T*V54];Nq6 %MG/o+5;wItz'N+bٹ&k>]!fcMc͚|'c\x}`^}se] }H?<]k|XsIU鿻ޭ~= !k߉bқ orxEJ>BJKUQ1Y~0:hv)R sFQI;>pV|tJDw=k( t4HVL2f^~oŝ!e3Z9A嚀19#Zpvq#%'t%!E!z[G&j>u!Y?M^tɞD:!~8}{T>!m0*]&v.=z*D$ N.ή}ƏW"J^ô-_2cIK`=vv2Ϻ/Q16r%t&ǷJ$}?3v∏UJ9͛̌oο+Zʸ>,ͮ78 jʐ$7^9-x]hBp%M~EBL mڭi )yrn(>`gVDUl,Jv8eL8Kf6a8AR(y!(Gsߜ41-:>&7Rǽ?z@ xQ}G©! ;D%h!e{7j>w- b1<27qi^ ƒ%|Ly|)|S8S(?<yb6dSCa R`l w %zDVdAДx5C4Lx[poiո> LMcB*EJ,U\6,c9@_}fMABЩ쐉Hvݘ.XrI4VC*"[DZ -װ)Pg\+fR'B :O A4k{AuMPp6|7 ׿Tg̥{Z%M͠|9G-C}O$ b-sI2%{8j Ԯ0@uaYCP=+LE8{x|Dg;ɫk{Nrv!ڏ_P@cӸaQ*rE6rӈiƣ}ܤ)+}2렸*kJ6u>w~/bQ7^`Ŏzhy:ruT4rf,tfo1gK}.~x2щ`>,]#>{ٗ#O pcz$vs}t7 ~g,"J*6Aג G˸m* j̐fk!U:.*Hv ){cmjJ/5I*pHSM4d-FZ-]\XB  #r5J3i &nMoe #E/·2PQWBM~Bah2$nS$W [k[<Ǵ?NL' $?EW*t J2r[D6-c$!5Q**ϖ|'E\TobM/Ϥ,4{& =~K6~qcF;qAV"$ mwՆno|X -zor˚b[4_1 q, ~2>X3b`ba-7dJ”O) .BkQ"OY'TůzERl3D3령MWq9@ l+#uSH&nWFT/ /u 7"y@qMm(~4dc3,% th  ïngZneBgoO'er՛IɒqBpȠV:aI܌X oO20&pZ5d ۤd\ O%ږE2f7Ak/,# *.[ TK8vd]O^~)5YUg Iy(Vw JjP@>wgI6@gF{maj׍Xb6_oIǏ#_g_ CP@J߄LWdtSR J ȡGT#T Gkd.=)FT3 Nm*,GqN#\~#9u۽hotYԁ8k|GGu)8oCH,-"ׂ5W?SA~=L+zG + <=|d8}h0$҂AGa7nnU3 JM&֩ !7T|{#n^vӥpPRA5*slyN-P dV`SźY,`dyEDm|'԰]).dF2[(-d<[j;:rV̆x{O5Y{OݤQz e/&8\y5"1AP A IBRLZ4&Nuz'WOMQꡃVSi3w?zIY yq+q>%42{Y-n~X\2-  AXgCuc aoY cVg\jܠXWI16@9bH?4iK_'*߀Yxd`?YGnDž+fU&ݎٸ<$b³l,LM:%U*Z=wSf.]}pH)#$v"ݹs|xxB3pC}\$br9egVq1XQF O͊M-`V)Hm[دix:i׻L2qkqY~Ӕ+B"N+EѣVؽsՐaܫGU:`:z}֪ RV5BW, v "=ۜ"&ٷroPQW,}OׯMb3Y|oo [3/Ƙ[xҭ<%xyĩKr⛴x '4=8RmJ&ڮȴȕTCu@TPd19ޛi<.;c /Wg3n|HN1KdK)ה#|s-_ŕ;V|B x7prt4!NT՜G T)<ހ4 piQH{gQMZ xAs]. 1Nƈ"(V?gנE;,.nLŮ79>!-<=Xcp^^5oZf օ b̢7q__^7a7ȠU570GfۧGx3$:nNb1-b1Df ޅs޺CB / "{K{-Z2Ԭ#lj^ #&<#zZR3βi8Q;YU*`) Tc1ucԝp{9V%@}nRܚWZY)y1M*=p((UMs=dYHn2_B4/@YS4ȹx|/: g?`ѸbKrYC.N]Ip- YZçq3E5 U'J}"~K(֙ :,9N]4ɇ ֱ? W~r^E =Oa\G"%'\PjqчXQ)=MY$Ff8;`m4rcaJ[GqC QiAa҅Ka3WoE^SDrv3BZn׆uf?s*W'n:[ `!΅NBPNks톱ZAzR?`@QPЭORC`+V9eͯ HeTݔ d׉V<Y, ?vܲ42vU|.!U?1RtY\ȦvBm(pp[O#V3 { Mv3 F+Wgo8R!GF"2e21E)%Xݖp/A\SԠxFSU^ɡbAON퇹ǛVMA{B &ɠ@$9X p{qFSp|f,tуԊ ݦ{HW<_4ch:- orwd}PVΌY'B-+ȍTT4"YIܛ$pfYafϗEgLau)&Xs@C2iM%qvn NA:Z<q`lx7fDEDu)E皺L oIvHrTyT{L`Q1؂11 n'blI7z;C}buφO%Qi\6iiLN-!6Sw085Detc~+ fUIUJ`PˉL}rnoW?Ōj<'98k+⎤;hvڣc] 8bd* >*,1$Xh=Q[Y <(dž{2*Or^D!crM0AahKZ65Ld.k0ʤ{N[UgE^U-LDve%@ fEq?1d۰8(keĠ( n*HX'u҄;C{;֞!=Z>({5/R볣/.S#[;;7AY97 A[垳@M/|0|ZDK&ئ@I* O\Zr3PWy1Y]Qe!q?k/kH}w'4dfId=:WS fZa!)$Ӥ!\ht [&,Zz4+ ko-ӂ}#,a~{jq!}鰩AF tZNd詃;|Ӣ !,Hvx |VT̨^bUxu3- ^{%9HT"kSzw(S`I9bːw9,g\) uN.uNIFavhW%؞E^χwmgs 3e_$.Wk$3%Imi^ݢgtX%UalX&'.]:@QRP& W؜-#;Ob亾i/UIO'א4LL}M$ ^XU;mfhN35P&|\>%(8_}C݈ị2h~w>#X#?aygjg:=6#Ork62w<Ѭ-  ]kU8D;ӱ?#ZO= $(& <ZH?JG2hաwJGd,e|  | h{c)asL!xqtS{fYg$f$UQT-;$j^/! !YHkm?rAS[ن]2!{6 ISolP{V21cև-6#Z֡7A}b|ORW6{In'aI 'NWP69O2Ԍ5KFG꼁AxLo%6P[NB:JݗT=)x)Qs=i ~ jsCN(jĝ+,cGhd:+W謁~Q]G5)VMQ\ԊY??2xSܵjK B{n,[bt`ɲQg"b' Kuu2|L?zF^Sȩ>I@¡=7(?%M%^{|P1Ԙ,q c.aYdBr:?Wed?NyULJn0HZ^39Fݵ8b++ ;ģÑW4mtK _<^l WS~&^ akd H|x&{Eyse&R8[qIf2Τ^uv lOc=l|-)̕OA [evQCȇQhd/0K^?VZNk\ۚ t:KT/YrVDP>N+'u%gwV}F/XQ|1Q'-`tE1A}D?UOzhoÜq@K,#߇J&Sҳ49àv-h gD+clj_zs-[3l,d),sh>lS8Z%QbW&yMe>&rV'eFʽ'*ZwQ_E bjb}~K/wVQM_vܷ BXI #eGUTsX#YI"?r0t+x޳\F|d#c/xax ̺f8iqTUr[߀Y6ŭnDl!*U>ȡA $=Ix0V߇cA7ԂȊߓ! Vi9$mBD6̫~S Q.T|?FxfS+c$PAǿ%WCfd>7%DO\a:3{X {~_+H> V}*W-U}:IO9N-ZBRC8qnِ!٦ȞQgyc|ZHqggꦒAgR9SN!JKе`$oT څw>DԵl¤!mriG0MRۥ,ڈ_K]e,?7KqMPݺC .H)*i n`CފHಅÂ ~Fڤ@<-]&ǽPE!N@*];8 Jui=tw_rr)YEMJ2xҾeқ00"l;DZts15NsZ Bӟ@^Ȏnf&3d=I3(r:JOԺWwRo`˂˺&:''%%4vf<32FyE`zZf>:Q&yKc2=󹧹4jܥdo?<Ʌ=& x7޻/{VS̏~)mn= 6lCg[Щ@lԓ%kn&,s0=RY9#4cbJ3Y$DpGm"+t]&᫢*cEUyVMܷ_UZi|3Zœ&ӺXҾo[mVD.<<8iɁheIJ($N|_KiȏXm#SH9ͦ/ObL0G@ zq0X Ϯm쨥K-w6,_ܛ}:?YNQ&ID,7>|Y&QklS$=緬 ;1*h;i#;BTn41u[\m5CqQY_׿3sF]{/qHS|ȼ7ҢA{o.﮵yύ4 *3!w攢4kxON"LúysRV&_wc:s3wB TK o\CN\U1qjJ .rM ΢9YWUۦݿ@hO$ Q.J}\_aMzHȔ&f)lmBT 32#7]݄.][*H~F{!!ٶ$o܄ݖb\z?#p+O!Ah6['~|'3b-/p'b$cہZ!&+PH ErqmP9ڨ⴫VYq}d|6|/0f8 XPQP+1_/t0,j(@C~,&1FIi(uDL$1&jrrqU96[Tp 2zN>=6Ay0Ul_c8%_Q[(jKqR3b mn \6fSX ʞm Zܜz(ykcfGo2NcʸC(qTDR1(mzĽ, ;xtƺ%cn)^빂>ZL5&*VM ѺNCXSvˮH5;Юll[ow $Qᓒ |ۇKrv+gOf,c̍hxXN IQzhU $~xYC Ɋ.Rc522j.?fPTCfv{1WI }; lVZP8bxyv^9H<{3޴/Y6>-iv*"űE[G $-|/@%i+hHmDKi{Ycz;9s _y(ܟrQxh[QJ|k 71uS;̍8ހ`=X]DrQ_ &ILhdslYMK (-֖=%ao g\XC'xn>O<᳸cOIyx@-&l}XH3'S!, R[ngDM;xj疧=/4 IMj<᳆p^X9g69dq(2wE1H|pM ܗ !)J\O M{>h0E2;$G`T-O~y|Üvp6K5K1ԥi>:j + lHX@BntG fQI)\`eI }D;զI* z)Fhh]?K̈8 c)#Sxj̖w(HxG(z-i*O>Z^Le@לO5'ȝxW7{ؽoqk'Gf'>a$ąT6vv[¾0 U&ubBbn*SF-aZwm[g  ҫ'H]k:5uFͱڞ/yԝb6;ח;QYmz ([Zv׶!/\$bq cרr¡s,K6o^>&u:]Ub0s=p k2oàAЇ-GڂMEjVaJ-ѹ ~`w YBSbīk 8![G;1/A&7̶?:` (Xfs˜CNdm4ka59yoZ>iۗa{(ڗJ'V|%jS! ,EѴYܣ2cUG fN]@ȑ;|wdu}eWR]Ϭލy,Vl<#<|Hq XZĜ?A bcIRB A ~a=wߺܛƻV ήr{`pp՚:Plڶ FpEc<'؇w_3>↙Y'9QlRbw>PM `-ďOi_c 4<~d(KķUBpO5XT[8GL;{Cۤ|Qtʸ 0ug {)fP{Ys_w^;/$]Ki~^֬|h}J`#@X$M`y!l,ѭA/ ¦_+S60{#mH/f8M>6!u_LF+HR,n]R_kI0(l:jK ^m:A ~5ڤV( uK m"xUS}q[s޹EAq=rZR4AnH}*G+Cp\ͱ*# \BZxM5<֛NqDڛ?6wepZ7C^d?u!-l|Q# s&g^4.CI-iR$)t -cD? щyPU,`;kK(&O0^DU_\W|S/GWX͓\nPiT}zyAzEFK"oh=8_$Se,n`<̱.VjA: <(CV&,{9ʻR Hm}2_7k-AzD/'WLԒ\ \59%Ƥ\τ=.HDa?]IQbP{gn: OWY0,WE VVX_.h=}Cи.Mb{[6; |S v.H#bWJBxG]m\i81t&-8յg7|a \*!kbԯi5;%W5vcoU\ H{BҭpR*tкqa1 [D󥍟dM۠ʁ#R2c[#L]旪 3ĺ)fF7l f;h^ f ibESV`Yni3?sի ofmCnAQZ5,q>ފ*uMJWG K9GMndq|5SOx &~ Ncd|x,J! N6i>*2dЀ#c3.9DϏ| .-">veB)~&S3vY4W˜$ʆڒ'F1ΏzAlC1g@%e8U  ;f>|M!KqS !>T?5`TڀoHn1U3KƢn Bo|seOz'$@(a= #Aܦ]qg){k%v!ҹ^(ʃmr 01zV&*AZxm+}-WJIvGC2{h%e I =v 1{ ;sZ_vYe!ph2rj!.eoLR/[x- x[v_Lw &]mۻD4_gUv"`)Cg:+c☖U.F@Łf2&fAW4s~vsv&=ottv;dAZ )dBAL)UKt3W"8m/^ iU?zkth&R480xӑ1)BлkʖtfZ75cQzz2G@ %8eWv0s^ڱֶ͸*ʃyU 'E L:nnJ݂ @X?ۗ1 n U-g+-{UUrm0 i|pԥ0+En_Rw,U9z(i3f矇#qPX!ĊaT] ٳ.{tJyDEK.^B)qt1W{#n3G6HMiOR.hA@i{ZBZL`o*57am$^P0siO Ӂ"FtBP8`UtJ=ou!+ ~xQiF(Ƈ<ܱ pW1i>((S< -0lRO:1r 2,lP&1Du0zsrj]lin{Dmq̆ }& ͲmCyfd 7{y~,T VQ q}T =|?Q[͂H?ºW0\&$ӆ,her")uP.ۃ$`ݏT`hv?sKЛhԨI&TaCseFSY[D2xgޤDՅPP:U뎨ZٳRVpz>OPa, "0 C гew1pJv0"xaeLgc(#MKR({kCs;y^"}2 V?ѯ&tAKϒF]}M~1 u&yy'W濑4=ƽfe W|wŒh'Gk&ׇ'3m?"I3 ]ז}}jhaCuSNZs\iŪk7ӕ>ɲBl#Ő$#='+hJ L$s{2ڈQoՏ8n~xDYI:L}@tw$AL6mG5'4˾7x\8Q %P%d2 P60k44/^|Yk 3dZ #&թ:{SϹccP$Qt@_዗( !ݬv* faZ™FV^ D zw |l12;ȌAۜ54臐; זJ@LgB:ĹrO+AfEPSF{ vfF`@oL"e=pW#23-S {l3;:)$R[kKQ.a6^dkUYmm^OQؙuLͬUAXсC2L -NZGC6a^ĽN$&鍿0vyoX%o3~oH.h$}-\81։2lЕq#%YSU!@L=g|3 N9>-L2:`-CIi.иq:aR *&r1؜3 |mq B.9,̷n6elBzI{,LKgZ ݁oLX43sr[Yc$>^cN%lM5r=Hi!vPh} :<,ڼAzk. g-E*.+K<SӫceBS?-87e|P֪Q\p'8d^ĹhԇO4>>q."s)-;p?FKw|9zO?oiT/6VJXf|`l-Q5͏:2Q9ϷnӮƔЈ[JC)s$C iRRЖj^p~-yOXTȠX-%$Ey.|'uΜ귭P4kBkwM z#3zbuMj׆)+.х? 0.izzHTk |!6rm*/g.mur|՝gҒ -a%%Gk`Jl^`AjG$GӇ_?145pbhQݲsA_GJe GyR@Ijl<5ݩy\BCIOBxz}fR^},W*@a*vp eN?]QCJA:Cb*hDUaLƇ}7=u$TBr7E:y-NAL2JRiLJ!7^_1ȍ5l|B^!z"=e721!`^4YmZBr\0 B/=w*f?3!HNș?VC2t!$ Y 6|SK#8B+"5_=e2ψS<$ƨG!*_sNO^hmÔ"2~?{_Vz;Tg+$[Ad%&vm(jꝐiaރx'ʖ3W 5@>e1 ށG5J@J.)Jz+vyXAs'/4@HX!'FoHf:p4bR*| wt !:}Sң՚|2stxꚀ[fkrBVogM-B8%W\Y,].rB4v: m0]^%H<GWS2aUzޱ/o=]N4S!Mšڋ'ď%Rw1N;STo٠۱_j͑5.R~Ooq {fonn8+誻t7'įÒF#1/Gv='`/10\MrJU${C+@<Ǫ\ko\sփ?bՉ?WtDb'GH$J1p 4U,r>+,1*5iˬw]pv3UELy%ֲiV>M;,l1ŨFa]>;) p2nlA6_z1Q@G/존-CR$GzdA+jḨCIx}v媕35vGK&:-dY+j&ysɗvF\"0d M9#<`xV)H~4뉘i<-1*cZ针|@Il:'Lo* Dp5 )nn:T)$NJф!xB4<V1TָXר(;[:ospz}A |l3&q,uY9յ\ۇS\-角F/bb-=Oo5LП[<@/C2ZS&nĆ !)gV*x^}9>)GEچOiY%ot5az[xFTnA8|$x%ԛWGu5qeOO9*? LF%K ZN[;buTGOBRh~΂iX5zF 2]w֖1Ře1BW! 2)l{v&*SFm"Oj`9.0ߚ6o-KWC 09FX)zޔGgLB(*q,>*&ďa[>s ~פI H1,#,YgiU^nsB/<MygG|86Xfaj_S-0&6U-ʱ:`0[|%g[pڀ6he=O|"fn:@nN:3 }ة>w|SpiKL?;,JcU:Ld#Ʈ2o#^J \ʐp0S!ZH; ʩ֋E2^ ҅vvËw{4kVD#C3 -<;7n9iۓ+u/- r$:;SL^Nv)Ho}y>ȡ4gRګl0: }I"]*y. 7ttP1 F-_hA=:2aH˰,nNv C6Q&9/er8XmO(!hԩ]+SNH_f@U@>oy&?dTȷ$n99jWbMb=TډryǗ1fJ=3hQnY"9֢o_ql"'' {Ps*8dFbF=.Jz4\*88^"4)+Z/<_Wc*d~$nmnV5AEdɊXH֚E$ 볡\kq*>Ec[Xō|؇n^ǷIfd!r=*k%A*j֩<0#Q' wv vbyae W_3y|rOQC8KJ"$yvqXЩA T&g{䍁;Znd0݂?ojH:,ۙS \`C(D`yEjtXgUӨR8w0FUz$DsZMl)bhl6keۑkb0J]kTKt+,|yxD ͛#ݕvCA|@a?b.+pPjN`PBpw):lgfQJ8P<*\}HurB.5\lI6}ctʡAЦ֑ˈGc⎃]@7<4DToD\d8U'm-@``iWӮ&}7 XɫU(i=OfwU)9l(Ƨ U+)L{Mh HL L5t/ >Q?Xҥ[J4br.WfڴAy ੾J7׽vaM~g^KFHڐȓ@7:zrAy{)QƎuo'5SW;HEJ1%Ż54f f!UwU4Mr%VO:l)6Z(@b$ Tlh{cx̬Cz=@_!^+XtÅ,!삫쒃ٶQJT ÀX#.oi-~k#{X3;f o_BE:@TmGo"σ=ˆ~0[dCOJ5 gna?q.SD7J<1P CuPDEz9`%Gf&a&KWUONmj1WJ,Ma/]䛲 e/rȋX--/.O޼cX\%>g+WM@!!ҏSø09bF|$"\1-XT 2#r#.D)3e#G"(I~!}i/a3:%IRic ; !vckNS3L Y첅cy^*Q#O3\i [ԁ5 6`AC IKj\\S_j)VD.$ գtZK@tӊy8p܆H$\[tazJg?QN+NН8MKfyG;tZ!!4} qă+_œT Ɠ FL(Arm&=%%3:vP/T2_T99`0= 3Զ |LWMMl,yvCI եaV =cW ЅCGW;sݹIn79Y_:"\[zVEMkge4& M,\a\,9_x<:]}pf+ 7Z%BGa* ywB6z W7!1$PH>^+`._aPM7Ha.@O!`Mwvu| 9V\o{ɶFuZ@7UVH/b$5$bp&RyW\)gJڋzR, JR?͎)rLu3IjG=MBV,Z8C}-L.16[Axe(a_ Ws},-)](] -~_龕MAduck-4X9sU#vN6cW>g@91fU![$lB-f4g]u:-|OTu 1*Oy 1v+;¿W 4.چE4@Jiم#Ac|_lNLMYo,v^ A2]o.E[My[ ['pvO[ $p¡=N Ƽ8[',/J=N̚O=5'kE.<+j'Xqtbv.`:%0K+eb0h/Ob&-?doi6`V >OUP19 ')4o/6'|d.=@aAGhi.'}A֫!r)HaPi`$2( GԹ:zT`{kOl/͗c9PI?`C}*mucuz[L(̩ &W  "1Eq3TxcPOT hO{e~, N[?30T%;\K9/PĘlC/|)Su}fOtgU{&)Nc/;VO$\:(>kH ZkkɠP\E<ɫC#1IFP/K (ubj}ƠWq*zM-}ruY]ص9qT#Yrqѧte|%M8BHKB63Hc%bv;'vVT vpG!ur\߮3p9]w=%<T{-r[!_HTXc<::r W4~Ƒ,cycaHћN nqܓe\7R&_қ +AD%c5/ "#158|s ,P HG ;׮DoIkV^v$*Ȉ Z2w4KV*rK*quz,T̞jiMG_INJV0sQD5' m<0\D-,ɷCw[*ع0rcfEncKpid,1l # (t_LBsd?v#9\X_#ϸ͢[?H;:HM8eE{[()Q@Mg#Ղ`.7|+a"@n6k}J5=Gߢ'#GK B[ABZ ̵œcf`z#sHL7H#;|{oX񚀽8d'DVRa:8(JʈtC9]_To#IH_ZT= k~`t^@g JC#0G?n&} )̄ Hf5gVJ45wU˰朿4 |VCKW5B&/aHԕkF> .đcMDEMՖ|8Q`TB _fk R/hIF {H2GS;!?Sf!$HE@Zhkia#Ø09COWT9v/߫}djIn6L|W! ؇TB!=v.yiѬb?*9lEH֟d-e he邭G*U!CX\x) pP.}8ub7u!.C颫RL-`@2}1nBl -؟dı8 *N:Es! uZ oEOw2FTPHB#b~Y%]oj=}\┰.0uB ~`[~M/Nu8W&jֽY(="{=mvWtWADuU4n՗HehV'ڣ`~]`,|`dxE*" "$zW6J=_9*v$R?e=8z\st#UK5sseͷo o\fe+Yc,#iG?Lba/hIXZq4oB*],rʖ%{Q(po.@Dg|NyTMjl܏ Za}SDICipFqsHהDؓN!Z~ 5bZ(QB)Y_% WFh3;&js[q ,I 4`e} ū aH ],T'_T6%^r|uyXi `ہz]m0?-pT~(&FREeRs r-L>Z6`_偙]RR?e-^;A3<ҟ<#ZJ%"7, }= *dǪ6j}zEݟO݉i舿-)y?ሗh?L,i$ŲLyEI2H420V}lM!ʢ׽`4fQOr,X9awzM_5w!p42 ȓt,C1\|$(t!?VGmϦ\!/veC0lf8h56)\Sԇ6O@o b@ pR/-q@/q4hq(jh-d6s//YjٜA,DžӪD7:L߿_䈻_y444bC %dʅMqg٬v$BQ_+^Lo5]Z9liJ ]=|pa.mU)FyZ*RBnEYrtU)zr#;:兠`!),Jo5sӈSh;+08–:qUU?evKeWMyR=a:p·ބ% ]9kr%|V+XI@یWu{+ e)^ ҟ0RzLb²Zg0V"liBl!"p7y5.çQVnOunkJ4; BL9mn9%s˞d}88vE{ͩ&&m` < ^+z$l͋/kwjRS36 |!PӤCgr`e%@LJ 4jlt_bi-Ƥbb"tqƵ`^T,BX~qwKF5HlJ.0NX7gva^^F{HW AE97Q\0΢MCՍ4HԘI Ml%yU]kLy_'"w`~j^M,@rk<бg al[]xeU锃r`p1`McJp?{|2N4iLTH}AD}z":;3 |nJM,Zu:Y*c7a]eP <l`ތ^ q~mvkֳQfs 3)G_. ],Xt8b5[>c4qZ\~CоĕSƦPdnT^ :IyjXdky'ϰ& c Vp`IPDsCϟXf^ Q'\hɳdހ缱Sc;,|f M[CO$ 2p]ܕ] $]7HƅhFː# 4/Y110 ޚ@oAgFd(<'^SJfn,z (#@WMisVq0,%t?YIG*х̑ы^8:)|<7FfL*I!#ýEƢv^M+a}WDs!1%6M<Lp&-|ig'q?y7]ii.Ox<3X҆E)2>S4E̊꒴!䙅%Շyjn-"V@4T>?)V_{ wZ.J2vWfjjDߋ @:ѫYlcBO_[w(R-[LևWqkFj ҪOI~yY&j@5@r^RnŽ>1oR3Hux dP12ݟ׊6EjD{XdR?=#kխ#֣/ɧ4~G-,HGf xc2UJ7Ը@>Xwg-DsO2Ig"N뉮3nQ$7 #.l]*3v 9Ȓ(0[k_ t-D\6&_L"J{VLk{| $L?3UMb j`m&"jrs>iJaТ.*p fT*#7HC{Yg= [re)v'eC)IAT| Pޙ oDܜ h.Yv7X-rKNG< ~s@#R6 ?N87$!OL9Paq&9yE g\\ 7P>.;+P`|1WH&kxyWs>^pU5ƬoX݉rYiYLqɽF`ӅЮ\ag`uc.zD?r8WJoiPod|ZdV;g=up'JCz[BNNSThͦ0?y 2%]a*+nK\-_@X?AU3/FPӺ+|m6,8o$_ᲽBEi;(>iGD! vku- 5Vm{,{p岰R~h}nBx_ qYFg8%˯Ƒ_y_D&pFw}'6aENMFft\Ta#  p|s\ ΝiSp } *«T7Hʫֆ>/Y//Etf?ʷpZŽܦ\ʊ0MҿIUM0HhZh# 2'cC iĐXnRXS)=}-yUҫy޵+Sp"FܓvpxjN0W*{t/hdF'<饝t/ު^3<95iDD}8$|BB*{@Ũ O!0u4)?*VyM)oV!Q4Z|+ mPȊj2"0`\{A+J3Ĵ岻)Wh(ÑuCT70uL}z$<DL&9},szF%"1C/vn##*OQfk`5.(vck;PTu:xE#…T+)u;yaAmQ(3S|+- 1"..{ֶ{>ؗxYsliËb7X~:,nxNdʦ04g{N:`YL44Zn3M,0gޔ )Q~2LI4ىhLT, Lsp5&Md00J0ʏCOkxd׵wHtO!^Jʭ/kR>+?Wݾ cz?59*>Ӧ*;xMR]*K7EQi߯a;6 H| BP^l$L'i@Ӣ8Fz$(;$~<?ŅfۃvWiS07B_U[S8O_ R}cAE[ nuJ]CCUt[Ru_%ay}u~i^@ s`( .3ZV}(nDЛ^ E7ٹpþp͆!TDxt"hM#m9 vff+jץtmҪk~J[>?|2sW tO{DtG%$C,uL}2jXf-Ytp`\b! CZQKVvJS0m\NXJ؍-  oyԑ9nW sqqXQ */I]J7k_|9 r1)܃/ϒAx b o!DE].sv)jѾ l_y?%]ݦhEt^2iA[{~ѥI}c M"A $-"}+eŝG8"]aXG"a f<3Êi~q8H1H)lh`C]:<(rY럥FC:!Q'_ w7A6ܣSAPçZt]$(UTq6Ԣb ߑ^X ؤqQejз(n'@rq\\+2z@Ghk۩cpUa>@TYo| ȁhm}=P )!yZ8/rvw5twEA( Vr Ǟl zS~DH`9d?P?;REq1[[,`xU(rpvY-J;5r!+{M}) ZO`~U>" J0#k6a{U!rm\%lEDC1V ~L3w G}@:=Ek%c;{Jp< 9 agFGI0Cd}-9h""{wHד\~v;;gßyrN,͛o6-i$O#* _g U\ˎ*R1w0TM*f$ _dy˾ ן'VT%XĘjK`lڦK-!to`c M98E'YK`d[Z47{D1}܄[bbE"㭊ӐWūfB%#KE6ȥx6 zM+utFHx|4/7A;MZXsK-S]K+PEm?-!C`ѻ2Gby SByoõ4|N~زJlG)ωo{`K>3bj;T Ih(V|K<܍oS*\s ¡{Lkj]d 4X4SiFT~N"Eih_zB|dšS:je~^LE$&լmKƳV8 :DQ~D+f<,Q*=>OY :\x2XV:*V(z"'iTwT ng,,T1oex7@|)Kp1P58_F]Аg; |Y<,!+.*vcA#X/|3zH \?4fMIVE=c`Mfџ|/׊6|b-;2~XQYP`TBq|q%$ R_Oi7-pf3 0o MT/J͉}XW; "}MsMmI3.DfaD^1&zŚ>5e']G?AW8+|a-jk \I?El*w\pn$w:/GQF苓ܚ? ā_ kfԮ binf]N܈LVul q(|?a*mūX಻B5(#EXq,%־`6qڥfƊ$"rK@Ujѽ%'JpC>{Kh1;2q߸Y[x3%ZV孹"xOv~PVLQAcsɴP Fd[w‘@.T ݒ|M~ f6zAaQ1j|veAX*э8nhX;j-J.}4j#?I|'+xG烊~XSH3U**!bx|LB`%10 jĺp}Ka'0D[p46YuS~ 6,3m? JB][~%; Rw0%ic9\ 0f>j4Br<> 1z zA~J#*>`ΪRH{~iCG~S/oqGzCl)'] 4T\+jf])9_Cu[{ sfE%j 瞖YT^[ND˸>ᥙ܆4#ʞn8ቑysmޘ &ɂ9Ǔa#ևk.K; (VLU\l(j $_C- ~>;R)_?[w {7k]ncAVG;ϘFz-f3;^LUQ||SQ}a k ANGm`#byx07{;82; !3bV4?즁^{P" pNjg3F \2?">{_CۑLCrn\ _J_ hko+{ǰuRw5 ۪uMiCj\;햼0 Q0ˁN#i* )!J}śIe3-g´{~Mڃa˚;DƦXBx,7d`؊ .OH/C@M ic@@iw=T/gw~0"%jWM3;^E ױ9jRw\1g"amj<0EGF$#rAQXNVÿ70bwU|IYOcA`/cv7x6!zj֥KɝwVۢDd'{O*>7z3Vl 7t%K_r(@[ôob-ɴb.%OYj?$6=@p S m"|ZT!{E\w~0.&aޞ( C-:nqs>/`n|ʌ*ud)QMi_&x%o38fѸov۠Cod'>eׅXT>q\C=ymzF(M%aZ634g*Џ9$2QuYQ>w6R.Ø!jٟ/)B[(OZ=5l>G`b@np"h9 [u ϭKTPcb!D(gȰmj37+z!T֊ B;-k2}KdmE (${)*pIer[ҍ%l˃. VGCN0sT ʴUß+7 d*>3H,wД˝Qi/ur2Y=ysX04]/<ڔy- >OM:Ӕ֏Ғ~&VcVssE\Y Ox,OS`NI%%e"ޖ RM֖m N# 24'R;SDZ9'`[cTB_+8J uęӌb /~,w ĖO/v1Lj%U3# / XEo\ _Uɨ,R\Q?g&p!ai.MokD>!(g5 G#-&gp)DݒS˷ll*h4gI_DY]k.ؠ㣶c*(6AԒ~D,/Xh"@ot39-WU[8a*p/)v0d&i6M`28f|z pj03u2as!Q\;R#d/Ϥ$ﺇ)l?D5}ՑNu#/_^ Xٜ[3AJ@73WGM({%Y?Oʊ&(`TD@x+)`5 S2c$_]:?Liѐx.LV\`$ڮ"  **ri: 婀CS7DuyO ј^TYlv6nnYdk޴:h'C!((IC4Bن,+"X%a]L ,sFηc89f$)qs=RUb12V2,d=SL eON4ʨl>IY:Fb/jufdA %ڗYQꖑEr61U'dUFJ7Eաp>Q <|CUJYN;6PY,@S%W:/L i#pvIcI_.L ށ\6f A۴{DbNz%a\Off(z/]r+Y-zȗKPGeFuŬ`;qJ@K%X`n(Fʰ좽 ^Y(0I/%ײs푉GW  V+&5 YM`t)L_$GgkR% W֐2$u<pG7d!G*YuIo3ݵJC_uF{br.V5⎕R[*MA ,"z2dP[Zٽq"G;ޯ 'HbMum4)jc]E`Yq> c? 8jOQtV3lx\~]кM?2w.H6D<9`)! [C1#[c`כ5wC3,)ECHe=*` d6:jPg7 6' < L$)L /x~U$km榈ct;- !1;`amc("]3w(ߥAq|Ʀnj3Ĕr-$.#^Mbl /bVi1Y[쿧9M  ^mM(x@#`w36gS;+_q`㕨s=  YE  {!%W> y,(f|4<~m˶;X}^d ~m?Cx,yvJ35@Q qq& aJ$8~nFiZ\4Li/]h

$xƵei#6wUZ)&A~S@^y^P+'_4=V{ި]Dv=N,h UtNg7}`MYsXʹ϶bbJb)# cBFd^ &ZEdf)TȀ 1r*InW R2x5;@ݣg6~zOCgosA>el$&x4\hgoɸ6#󱨘<[^4BvBURy85U{^ϝ& 'b1]>]&ckix& O?3Sϒ(*KMKbxz&Ծ~dt?^sgN:Pr@`yL:MEVrY5QJ%!b}4 /WXķY&EaM=l Ke<5U2xX rH۶QDs-o2̫jQd!R IbIZ=ѣ_[W?LX] VT4-81բ'vm!m; ύvZh\H1.j!Zy؁}*i8ǍcRXWs6,)"Nrb骁 2?Gw3.o/(6}%cߎ΍""0?津hz1у^gPN}HE$ŵ7s|aRMvb ƢO_B^C5<$*̴L_ÁRUolZ:voB|F@\ iSp[VB: p aG Gr"s\NvaӲnc*' mb.8G1$BF§e1;{@d)P=w1w%B"Fz Di@q3 m{ޮG_*1ԹuV;3R=:MVC[et Bٯ;?I薋CbsG%Ea-jr)*&WHh͒&׷y[w›5R'"oSrt|~sϹkꖌڥW0ݝ  0&\PI^yE6$TB;) F7+'wti2囮e@K@RCU ~h@ b/{{ݺ $B.4ºl:k3=X>򊡇ViooSaAJ&7̙( ߧia6+V5\Q$jev<]i(AŶS0PIRvMR\ ۮ aCD%9<҇Tc*o"jlO+2 W=3ncQ @P Uja!ipxs7NwE;oyy3Gq=mW8ȣ3nٌ3U =iʾ(>@@mфmMv2{i@&CF~]A>hCf3bYڪ90{ wW}mPͦQP#yDR^nk {Y;,.ؑDžԆo>,}hJ1[oeyP=TT%aսP3AS>2I*SaLCWwX$Stի7,@; d Q~i]KH7PG-kI *3ׂoq@6/,8I@aqGAJV˚KjC>4h& ?Ph%^ >e56ه+flR3Ik֌&.IāOĘʌˆyp/"J*sfC}.* :buԛ^{VZ &мBvMC4o$_TaS7x((@ƘpIs=] B2ɴ? Yg!eR,_^&㳡w;EFh+Xcxi&gQzsI \7JJc?g[oWxW4T{fjl u"fށJʨT?)e;~zI9vߺa׶$<Շ 5cE5o#$ !z]\sn@Kd|sޚhߓm~yUȺiMW@m'blG'Dj~Hhs]zs)LC#$6@Ӏ`h}ݙ2'{`8Qت'd< Hanw&⚳VR=)6\ZK)Iwj}X9n/ݜsCCF)Ƴp-)jI TcH wIb0V`jXmp.h3Fbj\%U;mB49b~hљfO"j2tLAcCIc̪AԍL,N?ь)AѿeS#H9+mqœ|Acf=fxcv^-pr"i\i7iSTB TfA$}f|?@8@՞a˖:[0g彰H%je1J:bIB|gҋRJE0' 7洔SE4LĖO3eMN04 ;BV)XEkK^v.52VFIt^6|ΧW K5\>stou0j7=ϴ+7TƷ@\x8ea$ZP1i$g"\iwq+f[1i!nKhqg=fN:9Ǻx'(Jr*KI%:UpZ#o6˟X?ֽxv7>b_^@sm5mɬ^&W}"r l&^',|9! 2!p23(nA&tGqDH=G3qϞ\46TJqoGnsG!Zn2l#S';77)Qi_ͅIY˹S%"5hJ1'd#w)>S<]9VBMH ߭`!b&63 3#vɯ8*93V4Xs\M2V-;u wB#xF5/ s);eqMP4$=QvП,"]o?5՜O;?Dy=(^Lǒ)ry`_}32P+<*L.*HjQ7 #P,гTr< (lM/MyF^eG3mDJqtXv[,ƶԦ.;;Tŕ-5Jۉ `#2lu ez]mT{M&5p`&DwQH,pN&:kV̱"rrϡ` h։[iP#><F0g$UXƎNog [oU9yg(~ՔiV@ENAS*У{|=KT^v',P0 ewym?>Ac04>7bkڥW|<a[\XIBْpWPUĵQ1z=7beGMv837~~04 UNNjHт/ZF /yH`~:B/v~tn5Mڸx:GqIw|]FEK-/hכ1:y[!xn]d[sT?h jH-Gc<;(C ڀgRWiuz7^?e|AY<f9\D"cPgE?]Ro "-ҳ"_#2慵-*ίLz/H$}a%πA|NrSq ̈́*Zd8#0zf$DH%BR"i+>A@\ACSv/ցgP^٤|Zʜ{+~;z^dTB;{ya~_WBa€0`%TFT87/e8|Z2d.nZя3 PtN׍i gMR-gl^R"+Sv%-?aQƽ֝wQ8( _Bx'L|ڽ `((<7ZDcuŠz/h|įj"Q#lR8*3p #(pHۂ9N}Y`h\'lӲ)Q6)xhJƭq 5eOu՛n@/؆+Xͻީ'W%*gj鬧uz@k%|F'-yt ;nzGN 6۵NPzyPG}ZOcqO#.z3/x"L 0;|^jo[+p`C ] U7XL\`gza KQ8 [L/R딖\jP?EL\6}OhлXާy6%ٮTmu0L%8F)5p]'GZDqӷ BPNpͣu n%xfz R4r-&p'zԻ;??يTj4wpZݔ)< EU\x^~L9Y˷Lh C3sB܎,w{c[D`N ?'$>EAtR`+4[!n'S#.+ q/;AvÅg蚾<2Wv~z%LM[-PFI pS BaOP|Yduj-U@D%}5ƔXmYr j!êSЭY3\FJiʖ.ZVbaBȓ̼A1}8\S;$wƴڀL FQ=(W&;[L/g$ ┩A3)'q5kt WN,1}YZ㇉! @fAkqoxش!e_f O?b@+|3S`5<,;PInrWYn4yl3y`GA7⧇;.7  hO.!5WZsj[N+Bo}弐*6~N/ꤋ#y~r(؞_x 'ts-V$|pnOF5 (3dO P4^6[tʩAz6χ{뱙Xٕ-1Ż5$ŝ?pӼ^IҐ/)6:v#hr} HfpdT-Y~54ԥ.ٌhLH~SVI׿Y`U~Cτ!2dN0JcmٻԑAw&DN>Dv'Q!a#`./rHOJGUJٜqݎo# O8MXeԯrfђO_+]\0l'u2pw06{rXgrooX4ph(Srم&B/'43U[_2ϲv_?=gels&EB(]Z\;؞f9Qhe0Ј~d-Nm^I-ɀk|V[6. {e4[c'l8ȃ;JZWB=gDK@:stլ~TK=hFR8\.l|cGU8B`kKѺ\F(|ā7LV|]Z.* k wdľX.c@)R[y- ] r1s- ].w;b_ Xު[=DB#w${:?EyB/8a7'.V,PԁF#̒17cuWmՋQ:v>|`uO"`*f\Dg_*m3YU*`tGZ,W7i-7&a XI ؅"ĥ̚N642[SOоX]Zgs'2HQR+Xvo&ͯ!΄&p_!69l̰C)YbRh&A4—*fvG ӹ&*aZ4k]q\3Rby S.= HedcT &z IzW. 1&XVѪcʮU|uө9?7TF X$ޣSֱ0X"FM#b2e!x^vcskM^ȁ7t=3̎"{^F1ldh0a.\ó O);Zh4r%GEE3P@X. d22H߀!n΁XT%1u=GO"4͝k NоAY 0Z>%AZĹ_eūݳNnϷ/V`V@RSrAqxDáB.V0i Q3a H%WZ ?!F/_\x,̃gKvNQz|Ď(^u)vzn܈أ4c(I\ y mִ}"(W4j :lKa6t#V%(`jWא)7zA=wf 1ʣě_9KW1c 4 J3eWovMCO.5RZEA$ڐ䵝5ZT^QL/Owz똫@ ƸH_$G1PING*d쉽#g0tuS(iɾ/Iaî:hOu/r>e NsxBS9VG9/vN4ݸh<М}Pqq{WTm,6(|c8>9z {^Y+QY/V4y/8ח'b4x~_K.|螦Փ$Д/WۉK:1?{O e /enV]4*k7.? @7NuH!}lCm_c^79N;.6~,'[T*H}kV"+d1\ګ`OI" ԎJ# 99 r!Ӛ|@hO}7ixZTE)7z?Ovc-Z 9ȝQ4 ;uIw^HwSVv.,TI Ni-J?ħё@pa\ƍz- Xjk5çݜL3hţiAͪ>iRK@EnjDx*V]y۱vhH$8HȲY~7 1 V.b~ B?%"%g+@^yFE ä%~;[jlz O`SXWUdS6I-p KF LavTO#?I8,Ĵ=#g嗌J=L AlӭCVhO͘\x7(CKkz9Eص+q[WX=KqSXxO W&zE [зĔ;SK5l!'&x[!82!jb~cT ]!y?bT-oR)Ųa[pO3 *HRT۞$j%1~qA{P1-]0`ɐLUG^\P)I(/+KxEuP4 P[_]>VY gĢ5@K05ʑU87Z,S{;ژP@ʌE,AXhV\xg]3o/"9o$E잁SOc O03k(Tl&KuJwPū捧~vLN@L> >A7g\[/ ͠h:cǯm' a_KĊY ёV㧿*cTtpqz&StgvpyN!:|svK}XfDxxdX2]W$pI-@ftFC $D3z&@fs 91K2e[lw `: R$f$pǟa96L %82țo ۘ.ߧź%Txw8=y^%en㜶F2ل>2+EJ$r~T!Xfe[{鴅$^VramRƸS8*U7u;$  ˸vj4u*Y"1w=0LZ]2$&ywՎvnU "^XչԴ(@k*IB@uDUUo]rM M<6 q$*=I\hꠍC̝w)o,$t#0cw={u,%1fUq{&[L%r͙aSFLVDA+.X^?K^YG ]p -F"n%e Hb'1GFp\ݯOomܽw?QV8g}x{rߐ{ u"Մ,ddOuP}g"˘ by;nGVvZkd|{?͚"ֆ`E31ɾ啢m,D]Zp++7W=0fՈqzc(?l>O@BHr4%9FlOe[JJy ǐoD?_wQI @CGדfAH; '7+7 mE l uؚOLwW qu^3$e"8g>#<6ΐgy۱Z= ߔ/H.7mLД6KS|H\)T̺2Y|`a2. ɡK Dqiq*4D! #h_Ҍ9>ށ:LPXB\ݔPaacgB?7d~G?Q3r Ϡ`[Ej0 ~@ꚠ_ۧ0QK Avf:z'xeA Ӭs?IgGǂ[v `t)y7ã2%Y:?8)W!ڞAPq䑖?ӝAPۅ*N"Kz3#ϾTN1VBsL]tgAyLߓeºB=(mL O?,kL7dzÔ h]71[O3#W%"b]܆i?Pom-W@7[P_H[K\.OER(U1f0vʫ[2YlC~@]f+BCvtF{E7G`%|Jb% VKX+܎ ‘u4V`c?XRn8qj .Qv)^r+Cȕ*|' hkfn%#HyEbd+iXbJplDt?IzkµMKE*GT;3G-[Ęig|&`L> ښD0T^>p\7PTUJTo?$m,h UWq^.o ֥PGNV,}^.'`??PiEXb;R\Bp!sxlRlm"ĥ/:`ȷ2:3" )Ѐ[èD+.;Eķ Q/<@=N%ƿ^+r[MKFA<:{)Wq ElxfEpoixd[^"qDю\bctx:PyV4UOL<Yp?䘋Qn'[j?7QYN-'U2,Qvs',Da+V<}D8@qw ܨ$8-Bot0&dR+2Hn?HıO?.Qۧ=’,`jOaϥDXŰդ ~W2HPR4୬Ko\|R{yrK#H)ar=^HXP3ζţ~.JQ6w<b:;\#!:FwI 6զs,&Oʨs~~!hUk.RY ;`>~v(!;83Bd]R0? Z3hN*/x9uyu)Pޡffύ*^KPk%N0#BTvGȕ>RJ\NXia%"z99eŤ4_<:a Öԛ HU+!w8 J‚\KYF0JC)i7b<8%Y&2s#2(w˽O[7%2vn'S=XGMF9! v8wJpT .]@ˉ%K|v9hC6+^ة(qnھo:G&:?:Δ4eQe%^7eJľ"q@2P Pa{N"sSEқ Ň5-V;ofc$4>g Xm!$6 S=T; gY-dg76qjʉkv\ ~Y+Y~r6Sycqs4q% khn>I1GmƱ 5 YQ`'/})vѯ-0dAN^`J҆z6! :}$'9rQ ›[. A5=͙N^#)x?MLxΩ >2\Νz=qbu+i~qAEՖB3ۖiw1n3*ӫ;9jܫ邴@BJQaClL>gRKx.sU)g ߡgy3%)UDY=$b_ & \tlLW򈎗ZHn@'n{WF^B]8[{Q}KYֳS2>~x{a> j5irQBњHdvngbx]pQ.gg9>QYp~;P W 2SZrp,l|o%jĜޞj{tBh5T;`Ҵu?S_=/O0R7e! Q̵jދ?0&#/+sulM='iaL(|OHu#rzavth+wm"r'}TaR6u0"g_g> HMBBٯhc&WR|Iufc޽h7 Mu΢^x~NeV2eӉ(#ge~S7&~ `6=uJ3 kOj9MNy9>%ԽYb&M0PdQmgvrڑ^) kMg=Ί$p;>0ϳʤʓ$rXӒ\sXt^Ji}Β"Z'A?""!B?hv2{ƩPܦ I%q$D>EIb5?ID{;^?UֈM! E}M[On"N_VYQQAue]xJ>z0;Wjp,h2~F}"|Fj02+aSivKfC?p`f4c:uHT;P?qDzSa)gy(^@n*+9h5Awy!)جo2.&eQj;`,+BXwсKZEChtҥ_Jš=!op?OE[(]|AX+-b~$b[{4 բĮ;6vR,}0MSp&3auy"&5% sP'xgcAn׆NIX.bBZT|jq\]F;ct9eC[耶h;׭rih-prYnG}i 9Uz89Xa#rE)x=|DxHVQ~w%0J?N]#zDDBE x)CoıL[@Vcho揸-<5:cˠOV( d jR(a]q=- 4gvÇ/EhF*(Z79H֊_no(?l/;TS|K[} vFЭ+a&jWadkOc6 ).i4Ŷ3lŘjre\ҭ]W5< kWFt [E]y,{>vxH<^MD&Q?{f&"R"{86FX<ȲP0jgѪq^b-[%9t$olV̫ viRe+bD̺]˚fj%GBoD~Uht ݪlG(Lb)~` XkP0wv FZnD~QV${.#Gܷ`{Ϧ9I#|2׼y?j(VQ#;%%m~tbIu>x`sjKJIk~i6k6f BZ#¾Q sI^/dB8B,mˢ5q"z+VʪnT(m76=`쿇c@Df )_m9$"^gV?͵ϻֆֲ֡[Opc{klv*7?MZѩxxjk;F›@]yjT_rpļajQj=q6t~V*׭i FfTE;Ԛ9_{#Vȋ8jQD .Ws؞$V.B9ҳqcLiaReZ 򺦾VE!_5S t}wVBϳԊ ::<\$4L+]Kq]?!bB@5725ŝu2ZTff ={ዧ7l KXKidG锅L>W)kՠmG gY.fm}:L$n{g2`j- hd'S*vܿ >C۳aSnBMRco HIbf w?FSQc$;#4Z%x)&FS*\$(JxpZ ~WKojF,'pؓP m;|SQ1LZMk)*/|h5H\0I5U<A7aգ y7#qr !>o+d}NF\٬#רuV堲pW4)8y|$N+b`br-ϤlA~Tzp76N ҽTg v*'rC(iL q6CW3X~+=P%CfUd,73MBREG#."?QRH'= Hi8(4AZ@*XƌY. v˒e\x m)rkqEeȕ67Qn0OݓE|rw;E g&O6\1Tgr!I ~*nV3Jӑ!^2ìG!$Mb|P6lZLWPQmhh2⚾4ɿC!,Bd ?dz (qT=2͋j9`l4rf _^>C~)֥|@ǀ]A ~Ua 1kUh {eSbeJbnq}载hn|ǿM ADڱm͛} (}j< j Vɷ.+U7g-b9Y۵ M|FIP4$[`ڬKD~y/"c*?R\eLi=[\#i/hKLJt: NζљTHreZ.\bAeܫ2ʃvNş}/+~PFQkdd?i೾E{I (Ug<1t=IGֆ/mYfht)B!5V`(sIm'/,uB|@$~5ˎV,"KSڊU*q=I^AiUscXTnpU޳|G3EGQ(l>"Qjb(ʩ;),LBL 5c29]{UX3RĶ-ůb1` COˀdͺ "1tl 4V\$/  CeՖ(u^1#/^SK5ah\"]tҲ5%uN'.*.E3~1JbByy4P^%&J$@ͪwy Z ,=H?OGN//6t@j[5Њ/i hIyory5R]PWvл̎D[Jӈ|$f|Ѽ_ oA,SԹC}IW&\ <8#_d1ah~NAУ1灳XW2n­5Fnd $'\o=zfXk! l=R9at0NIuv1bd,*.j6b0-DGnI=@{Rfs\>G*GldPh؃gr3 ,J[MKd{QU#">=H!~r(D+]4!WR'ĪaB~]Uxh;OZCkhK7`2hs^Z&Rfi #@ںZZ^"cw^"H ANkW9`YmfI6#jH>d\ pVE\ cy53,Vy1"|Gʉ1{[#WQ73ZqWb%Kj[>4Z0CtxڗhY^d>Z #]ڈдN;j] }AeCdcy0rY( 4(B`B εxʥ->T-+s-q;%u% M_^:t 3{{TC_* y5q`$_?tf?28*Cmu_S;ϑZ1 q=Pi:GHYxCzV9YZXS>7|1nςЯ%Z*9)@ˬ\)tFfk+ƫI,CmF(J9X[a2( U?A#R!xZmACny̋Hxmnx R7wh,is+_+qƌT.fj?7MfBdoHE oOy%ޝ)4癏zId5z%mdTZ,"b7ZCg֞>\ c6A/& =JQUZpH<E(tRF2 zRfHecB=ؿA`>qMa3pf`EV* nZR'A4-rqԆRP% / =zb}1O z8[5ڿ),~BZJ ;vKNy0'mXcT]Q|\ׇΜvK5TԄ: Ҋ"D"4$/9D>h7R?[43%E$.wSxA?!Q-T]WlC m>NutP`Ν볭3T9,1+E!FS-B_J[sAKD%|04tp.`8 }cng \oZJυ2Aq}mR l|z=t \$՟v6G C=+Ռ宯z}G_ulW R f +mǧ6OhO*baT w!lbܩ:vN?H@gn {wL9eϏJk=4:!^ =7ezFdv]UHA|o򕙷B d*VxUS'A zp3㭩$ h ^%0GUXui,\ph-aKhFkiDnf#h}~`IT`ȗ%RZ ']o$qOK?+ p|enZ@rdxӉnDrf#$qhe$óJwI_KC%a`w#ckJ`Gq{!![`/a]x_TwE{gN%OۥL%BȖ/_ )أ׌TЈ;c`+r~.klv칵+GegunN,ЄZώ._]#`/XՏ_ u>^{`Y^FO~Sj"}kK=H}i5:E浹z2@ dGh1t5N\W幕uq"lYˍbxJ(]t_ɩ.sCϬY)y K&c'0nK{LeRjAY2f\dxz-c^Ɓe@Vnf󓁉с)3n,~l:t" {զ!9J!Hv`*vƎ$EvCWպqً,uFn 1Fjd/w/͑(Sz@J&[<aD1ͦdK@LepmFf-L"BSO'uQz~Pu([C4o*mFV1L1G /E7 yDb\pkj. er8H3i Uiy }&AQKn}b$|l_šRႁf.ɸ׸(m%P>y 3}ͬ+ƇFuy(F}Hy}_bc%iwnhlrmt8ղ)bRI"ؐų_3k=>鿋蒐'Z7\<[=(g,Ϧ eGX}Ŝwe-Շ\t D1%wS徟TM$ׅAt_7ȩǽ >ӀxuIć L[+ߏPs[T bR8ڠ,3 ;ϰ#U M\O1řqn3;dSsC#3R&!Q(@HRLw?Wqcf1v,!S{:Ip] G$Ыi"5S蕘޿@(>3z/."?;1N!ʝ`wqB[ܿgU&~u0jPqlyvL~!LҨGKhD/@ԅ>X^QJ^~>JA/ ]TlQ(UpeqM|aF̤OU܎EvG咪M2RL1S@uk`I#JХzwm!禥? $h>aS-YIo<`)vs-d;* coYFmf_X47o,$eD:+CglijY]'H%쏎@;k S9<4!w9ze*14Sѝg17ra7v)=@_ǵ<3۔3ЀmpJX{CFhw(߆EϛG}֠) N@lm#aBr͸hD8+1{E(SDˉ=)kgbޜ~#hNGJ.+'j ܝl*;!|w) 8sk3i΄87ν|s%ezdEh4@anCk=wgx@cZW=Ozp6*ȗ-ri^ ijώӷATGkxy CS2BLmsSNٚ ^2 zhHNW7J+"gwɵR^4i[JS_ٹA49EfCGXFea5 O7hz 5c:r&j{ ^pQR?>wZZI_8ְLZ/]F"`YK^}zq=\f(fA>dո}XUsP$OkWUw^ʬw,~IbKٱH #uݕP$kU90qu[I仡Ң$\,3m sWp3oJsoI=ߊ r:g`qܤa9+J<""'N8#Eɬ[jBڢ'ы/PtSbA5BMK(i1*]&Sp- + Z"pr>ް'BI_*0rxGeoâzYzZǖ $Jf>6МQqrr8g(Ko <~4HM,L,b gae0\;нq||5r 1 ~VRؑ%pՙmF_EͱJ"niE"n6٨@~}OP T(>':Rf= n;2XTB8\Χ' @_`t27G J(}aYNL*ͮ=6?Wm .E >yMYR3I`ﭿjC;2~=3yZ[&wt0&aO |,ߚL8+K(Id}+˯v³ By_d7Euе9%_gMYH85덤fC7r5sg~ 6 i@`;L\6AxߞZb3G3PQ:9nqom-#oS,=Yn xKR/ PjQZDo޸c*Wc20c\#F}hWꖥyX.cV 19V+*FWję= wAg ܸGE=Z řDo(%(] ּLlzcaP|ES<^B/-OqJY(9u9RnZOj6Uz,XxT CNw̉kBR~xcW>u6h&=*e-tA!ʒb9Ryk E0֧OfNd8B+MHJ[얂!QIT󝢫Zܬ~k}+,FjCUҐY=:ݢK>K$ԋۙކ uIi \PPw!Fhd^W%MO9;С(:ڰBaŃ|ԏk 7AJ'̃Ugg%!-nU0{ U4fyX?$Vil\ /]ðVLܷ26/鲈`Af\UȤVt#W!$=/ ;p< U7؎(Q d$-RE<8Y>ԥ6LV8EYC^9/?p bi.ogA.Ro:?frɒ(t8].Q9O߾@(k+ԨniD ⹕^3q|QЛaK#ݼ_q!h'Z t*Z{:7ܮJ. ;QEΗ\eYs1-ۙW/ضyE^jq4P{eii-6Dc0E9/2C"Z#Q2@BiuHdt5̺"<'\ rv*2f9fSK:=ANrt/ݴIxP%> Go _BF1P*@_d®]4xb|Ngjo~C XCBRahOyթ(A +EӞ% ".쎇?r,Z,o9QD!8s3}5DDWwYPVQjr j 2SXեmĮ w&5ٺ8DI&͙:q)s7C$*"I?kz=<ہ|Tc+&*(6jFĄcY8.Žv3DےM - A@he3[]>/מS帨6|d 'Mޞ? 4GXLAGOH%y[cW(yv?ޝ|K^%ͱ wt6bNjc,2`ɓ~r8Û]l\ ~4|՗vO+VT(XMh7w^z6Θȴȹ==,boSUj8.(D4r_fu̅Fŗ tY'9njIOqlKў-`gkYP! K݅c`u9`lSh~;X!i2)Zk^c~lF2nNd*Dî-=zܸF}P:#Oidi)rl!#\y󴂻1rff}<uk_D_py WrSU-f/`*BRYw,2ê3 Ěɿx^úE/„f?lLjă?L̕QCNQ2%:qwYm/tC%u4%qov(m hj ׊7n :%*mʩܼѴ Ϧ[d[dDcS@t0\\,%*ҢH$f;Xqj|=ێQKC]O5 G7o%aKŪ8SYn2P{$؊`GE(W fw◚fJ_G] B;K  l9،I̩g {(ZqLCPT-B|kP+;VZw}7,S#@ްC%2٭sE2TZ4/m] {2[D]R Z:#+ [э:ߨ4of-aq~[xRPm+)ax@wN -?dguX<K>.+<Xj-#vӵ#e0ӟPf\w4O&,I*Kq6":Kc;cS5sd̉a#!2IX&1n%͂5#ԕڄdơ@&%uf3((Vwonr  6Ϸ.\TA 1 +P27; `30_;"?KG>yi3?eMNP=ǨGG%NtCƒ:MGGР4~^0--y<ht3/1ߟ2!2 $|z(LK@*ra&3HngkǩJxZ |+nNli }oȬ>W*Z%:L5-Ջ{<]WXer"G#TfC*ev;1~ߡ9ztX=`z؜5ٛJ6TxbKř3Q5I21q/eAUŧĕL܋ӒZ ]I#y}&v) /"rk @~Ć>FVH"IGp4^[U$fj ߄f+جȢGZˠ&즱K!$/]ÒX b A2l_;5X #Z9w,L?hpZc.I8咏3<Rh v}4FA&BUϸ;"t|)A|$5zK V!țPM5Y[%YfmV P>/Oj eP1cM[%\o#ƽ`G\㲻!~E}vrMƙprш΄ )9ŁOA4XlSۚ}qz/@] `A[27:O+Q-h=Ώۇ\^Jßq@JOn3R>nAs3Jr,0ť߅ڿ4mI5ȟ&j1ݱѐCvҨrOo&EҺU!Mi%]YH=`/&Ǘ(Iy))[ے­/{`% 1ec\ey]Lc/BvȖdK^wOT #:D$qKn [k0*]x0 Wn`z!f:t~LՒ u$^,w#($ZtRpL ͕%ĿX"YTֽC_OㆰlJd96UlHt 13AYr8 _hG޷iVFe#-x3 T uTh*='Fѡl?ə?9(P,ARfBIfmI%! &2+?WnFlacYwΩXH{z;il2"OgFHfcL 79F 7+x(!g#A 4c)ºWH= * C%>4Od \q=FRV B=Mmc,$/x{a5RMO=n+rsš6:kaN1:(2 lO}- gͶEXjIH1LorA(_CAcn"b䋤q y2LSk`H=9U y@l\6)H`^ޖaL01<)^t*0 Ӆ-:Z`Ce[dv].VCFQx ֋eKO&z$rn2C׼!E7&=x11/9\ۘ5L?7 VFϏdc.\9{"zI󻖎:AFǣ.gG,ςD~4_+\Jq]UwyՙbR|Fz`6^rz"`Ԉl.r<|%,A||}xdli UCEF 6(%QJp9G'2? Yjr\}Q1{v_G*+R! q򴤥%;mUaoWЎsӻG.ވ _(&iD`Hv RhbSnI<~Gޗ*|7>H,?~+_tK(ӬU c,,Yeloh34`IY@*Npk-^3ُ1S:V$A!6A(s/1 I̯8plERI\S.+sɔa^mY3H?<ݮ^eg=zhON+ՋѬ]X`liFB+5>3#DK@,m>BeRC g1 RјՄ:ZHxrpy`- Rg \:3*7XlL7Z6lA|$駛mF$0~Lzߢӗ>BGo2gmMI[lq8`fKSd`W$VS;mz|Px˗ĺzMx9Xn'qgհ9ea`u"k^e|OWѩ_ю0M+w@Qpِ6^VJ@Yn|%vy؏W3S{ɊptU8>@!Vp0y'#e[{V $3\ʍgaF6c1xKZ%)d%ZE#7'~>hvXo2,C.H)ȯi/e5s7y0~ÊٚkݒM m|~23Wp1/w)'@ gm'q5 Y>^Oj-X9ݒ9IMz}P,b֛e5c\뎭7!notllS"At[/Z=68` JCVNJ|ؗm!1c^O}hu(~# $`MidN%w|Qe xʯV.?}HQ|/u2u36Qb@& 5%9LP4=\mKzᠠ~u;gr_w$%V xEF/.NnMff6leЦ>xc(%ɝw-2WoQ<D$̷Ekuܘʜ~9S4mU~6)QA=*)Xa9P7`\޶(n2fD+ݝK ,LYhNJ8n qMzZr9Yt4nRLo MCwAفzx\}y `QI}iP! ڞ$U $vD>y|0֘O5]؂T=}ޅJG}-L5\L&_Y6MR,x̣fev 2V!V]Kx4I>'_˹xގ $x֘}AJdij+H0X\A(GFh*;M虞H&'>RPm-r7Lʼn68=>+9] .䏢Yݝ4miw5̀XP8 ƛCVV ^) -^GFPηp90X s{;vA~tmTL"6D,e`´1\mN8"DyRv|Қ, ް|q΢jX5_dPO- 7@c8< ɸO:nbG[%Uk8nD?w-ޯ[~h u4f_ֹ ~upzYA Km*g{M"FV/x ]ɲ'.qSKKI<hhT_*X&9m8sJLT2Uh/}@xcIFRAL7B_upho OhCS\F HɴQ)x`an\:aOld7 Ʋ#1!{p*mi 1Kl{hB]Bt7c毴~|GbJO#|H0xJOĹe9~[I(UPtF]g1]n)j.SaaYs-2 LmcC5@휑exp)7M ) ,TK7:[-&D5/xi.0leWӿck#YCA6:\7!%Imz l1$2J)Zמ1.+˳!VZ`r)V`-⍂52|!-tkqb̋<0g`wZCbl;3`izk 8RW  wCsjGazH,«n"jݍ _Jң7Ż0Ύzm%@-r+_JQ^s !9)P.F9d#Wx_eqq{fnSeȆ{MG7c̤ ^#"t?uvWY91i`3gۓJ֞Ln /d,,PzYV Al?_VʦoK} |4ӑ+1K6[qltQo{@uk0nAlQu Y`*`Cmد-0$ \p:^}N3BkqKtMҕ@iCQb.mS=(YBvmbB) bC0n]0\@!NwvD䟈nv[wW4Y6-KS˜>'&± ug~5ޓ޸,Ⱦ˭qGD+T>;ƵorǣQu-1ْn!5vs}Ѵ S<xsZ%H4}l&/{oe9aœo˹r(.2њ8k`!$f-JM^m]1WXN؉9Ć9È;m`Rḳ>;n v1ke^y}?) x>SN[Q~eiž 8}>Ab,\iF9v#`хu1uykl9TrÖ E1h' ]ja/:L61{]E`$n(=*?nӂq4aC'@aǔ|cqAb83J ڲm`)ARM񖖏n [ iBΝ -WΑথw ]0aRi3gCO,J `~'vqu^jX.ɥYſlѿ-0ZGOuF(xº\r tSMM[م?5v}AoCJ/cݛp>O1QZ`-;V 4]es-a$J2!kc0%0t` ÛT_U F>R`]9T h-"1&\T6fLTQIم)ft>c!oٞCoQY87+JHVGR `gx-!! w.ZQ9bhCN0XM=R}K{PlU pDqnC"J v!N".!꿉wU̚^-z|sHr?%rx.]T\r<7o[KhLAm].Nn #\@\Sgj,n\ %CktsHlnpz<^28к`*;vY= 9=_!Y`r1N mv@ܢ6%岅 \ˢW qcKI S3j2~lʔ\kDQkߡ+gk2A fΛ$OWD;,@<*iJh [/:6טƂ![\dMSv}7J4-׍ԆQo6-(#kJe9zlᨋ`xY'G"dhPO-E+:NR"  Ǹ. 46@qz2rͫ/1LpxP{Y0fa./k9O-*\đ~/pLrbVQ4վ~2yyM;Q֩NۑԨܸ[E{^\ΗZEMC:As^z&o 9LUrfY:tNw2y1uve&n~ElN&!:,":DghR,3eI*Œ1b&F4yUš^Z6B]M'H/Bơ֝].čB~7Hd)YXyq5#Vgt1h瓼LQ@J(8WKxQ}Qޱ;ٰق{d1:TA(n)]u› C:pkqtb\s7G [s\Exp9Ϥ6ŊP/W L|tL`/=ņYGoR7BA!0#wQ#z[v#4WrCsҁsxOKn)PG%-MssHi@g{)oRJ)M2u(lAC#=%ڟ3K*_€/|7rZwelޙ&9'FK‡{ 7p1'kRcI/a\TpoDnj ALr qR/9# 8zHGX*qukʼn%g1OW!s ͽ-BHCl끉vVap0[ Ev,Edje"VBBũIܔ+Q@.#:S%͗()f92LMQt FF'aܦ+ ٳjR$F NDyZi)LE'193]lip85N^O6]ՉhhaW83 =KYr(3 Hѫq++́JCc}(U{}{ ykJofA\6`,PٰU6͢v-Ğ!? @ns;h⚄(a+2UmBBE! E+d@d=Nӻw9ub0_;;!ZۿxPZc80} <||6P+S'.lSr;axD~6Uð;!p*Ɩ -Yg?b P}In(I;dZ8,;(k{(^ITץZ&b1AH(߯ %. ӌbd+J|{C`>;4VSen7Iϧ y^ Nښi_࣏{gSs䲊tG]bK$gy֋JZ !X|+_t:W1e/'{Ktj ae\F'O^crqo+`60t޴ibRlΖaGut 0f#Q)~8djLr%]ZE. ,2IIBAl1GĀ_J%;U`sM 6;c#g71V,zq2N.*0Z 6M3"^cBՉΦ2TῃQnr<:)ϙ!ﻻh>##@}E*XAA m G>? "Y_zWzV vd ..,1Oh5cZQJV:zq):cıjq5ցr$~voA龸Ĩ%R1قg^F%5y&p?/_f~/|77]_DD9&z9)v´`Tرɭ,6 M8HΛ!Kl#ۛ+7/PX#xvC1[)#_B.F+qnvETI22RpܨoL1;-EAĉvB B r@ZHYm F6md$#t/^8cwʙ̜)_`! }>0 Mtk2SIΈ pgsLiswo@6[:[}:asʿmy2^A$ɋQNR i26 CD >vFEObFB [#dwciFχ=Y:j3d_-О%Uo]ضj[SzY}~5 Ɩwsm;ʭ4hHlGbnN˚ps^5qX)M#=l|8f&8Kc7GC{ ,S%(OLS)ʕN/b nnF:v%=@O_%*7 C1rGk@UpC)+ඛF/Ω9a 'jRR:9d YGSfRnN-Ik1VW("Ql%0=0oE @'5-A)Ie+azzG.Sj! $o?eOʖ R?ofmҾD<}K'npn%nD"my4T18\e8CBQ:z X`5~?܏e~FaCEX-#JLHJ>עgz$h3]kx|j2 tc,V)s短Ϲ`㛻Z/o^}\"I1 va64s ;$g:[0hb:*R1e)}7B(.[n{.] V~rOL@m d+~DgCxKY!,YmFU=z`[, VClS^$5Bb6CGm&:QՠiM@>ҀMɽaJRHsvtPabx>hT&IʚT|\UuF>eaFq\x8a. 9Fot9$*+Fe"eq%;W G8ǰأ_3#=h ,J#h+p 3DUtU;HYZ'(&F0Ըho u gpa%t8NR/'3hS7®z'[e&v˨0VuJCN "n׋C!V%' Ι6۝#[aמ0q}s=W3t@1tR"iXCIQ1z>ꓒ\[wW_n`O(%i` 䞲7-@,/ 'R@k7g+1er&Sg&?R3.aX4QB_h1vѾOG>u**{{`-1'3A" ]J|B[Iٜr d*,U yԵAaXѦ((2lHa+XA'¯li Ƚl gDQn/s^-1ZRcgHi8xt̬>ySi9ng^v>{s w@Ϟy0>=O !' sx9rCGAN" 沁nB_L\jM~#SN+B76]z|2X2[G]z-St]4buQFH ѐJfS%d)zJv y-'wvQV%g*oiD~kaRy+jSRsBΘRG&ݥ^M<#0V":$BdZFkH:[*ܒfo A"_J8K\ @/ү$_To28m R\ QvFyl8XՉ:wd^Gjzk=eW*E1K6&`7ydzgn8'oK&\.͕߷CsZn+ZdV}_Ge {b(嬂^DUǸZ pB¯C˱?9XвVa+%s}KODv JlGgpmaYqϳEwCW1B+fULս6<6B},cC8ƃ)cDFh}B'DHS񁝈UsނT;y{ZLSuwU~tWڲ78uL3+(%g;j',+xA4 ?!TjUG:B߳0+ڼ[Ԍ:8KP4*gwiGEy_i_@\jӮ?HhNi/}螂ph}hH@2ź= ,8x쀏FR .rh(Qwbl Vei e1/S$#+DVUU$YYh7e+NW>n75\!6 6T1'sW 1vhFс f`6ضLMlT @Yl1#gYxp/:WfBpULj:eAY!H 4P.<1v.#VOI઱)"? `7N/mLrph. :jy=]lC`yZgkUq} .:xAJ[ڲ~^?H]U< jZ{ۍ 42k 68ڠ5<5e\ў8x=SDt6wqV?ON%x.a D]'7~'Y& {5c?, rq]Ǘ,}&k{'3٦C|Ƥm6$c IC<['.3tL& erJ<糜o;: ,X3"vDv r`AЉnQBNt{ĈBpĺ8F<%}mo XپLFwrv㍋WŚ>"7noz@s1͊|׶'ݮc#^VauL:ߙ\WoDZoؓTGI1"a{6 7B(Ɏc\U#kg5~t-S%aQ9Co4jy;W8C"\j,sMϧb%v69HXȱ<F ܒdw'&cQ#nGyPJ;r2k}4)z;RVEo ;-D5'V?t%|}h C8A,D9Z̜yz$()&B\٦+q$\!VX-kRhL : l_ک24O/];$pf]b-%ٱ;GP$F mXQIá߆'+&Ijj|F-),(;vxtċQR L+xRDw},k[&>bnRP6P{'! @N?-߻j/dGݭz;1\uud>HJ>^ŔsMNQ_S(-3td7F ~Wy sø}*)mbU;޽)_VBkm3sa@oLaѿ.ؚLUp͟ɵ;^@[B꘾5nxGmNěNh՚dFL"|K>ǏXQßkqw'Hw\瓝uڌ B?il2}PJ9|R-PXH'鸗( ;+2eCo- YL7,1g@q,O'LRE%$-/cǨҐz>R$L.kWlӐI{  $tK!m6æ3{`+lz>_}>6`lLfv3µKa;۠ I)>MZ-7ڸH,F\,2e ԋҤَ4jmb98=?'Ls<4~9J| \*ץЙq~ی7B2zoDT6fҲ,0|KV85|5!KgG`}֓H/ fNy$XD go;xz]1 P(Tf1?_wsd~Uܿf5HK{IA=Ol}qEUON=w-ZH254Y]OX='&6/DB'<u;aa>Dpυ@u8-8v@iqu,84zuQ![aH3$^O$(櫍l~Û#/Ù |^ Ea(44Snxe*!4R1JQD wr/0sL7~;M~p Y5ZK+aDDΈ% xd>k39iD^X~풤[(eC-aܜB1TRwhp۸I]M'Squ#GBc讧*ExMb?qBtQfH]it| ă`gVv\PvT(w tFu\Hz9#^GFWIӓCGbbmqPq4;L qUefeU7-Oꋈ&(zZ%`]3}י36n%}?/@ܵZɢcO凗%D_/ٔ3W A:Xt] Xh}/UEs'zʾz:h!T\gZ ovAѵnJfjV*f.ı54';D]l>%AӮgNu]|`vU6oG7w;Ric.60ԷQژ&% `/8n!(v[~ŨX=+Z0oipvW402*ٸi24ܮ"!VMd]@iw+<]M.ߧ #TJEK r$7ߤF %1YuwNeO(2C'u4Fs rWFb[eHEm\PT >pNuk uOC 1~Vl_Xkє:"AgX#?{4W8iB,=_c$3p$HRQ1M!_WL`+5?n8H0hDQ+vcc5 krTb l/jr>Yx~SUw d1B(iςD}/.'ǒ|6%'V{wA˙s =P +aTp(%cxXӶo]D*FPȻެ~F _Y֭c$En69h^U+L^iRKxنDk4+>?l;s6uE{j[UYecG n ~>WA E'*;g7n>ODGꟇƘ  /1dԃSz.jFrFzH1L)^,x}9 N$v`53b>^ oSv!ޮmQ)lk/Ź&4ə|UЁZg k18Po&|sJ]󗹵nK紡*^s|$"ه#=Fo-D*ZbbV-.AP.͙kYIKHwt_B.fLTKP$AwZ#_; pWn>OCyʲ6 ]Ms0.*ܴ{i Ww/IiT/QԦ"8<]5ٿf}0KM{&;ZYPyPXAO)X&[lCp*Q\/]tŐVkŞc(p*Oq 9Q<F:*QX -ojϦ"A ژ܀tםc]Mqi(RU{=LP-Ƈ,/mc'/4efg݋;Y0L=5G|GL`;Q.#QAeTjMFxֵXxAr$yfb.Ahܕ0/-z`]ryfB,fII p!k3Xj%i}JeY)bWt3_7)—+֞ wɺcM,wq?(/n{VRTs~tZN\73m/ӝBq5A~ )ު8x}fJ=NZa#ʽہa۶GdQH{f7?\ĠL^w07F)CKT~5MN-Ĉ'<{x=PQ Ϲp7l|~EKgJ 0wz='_)UwO/&L})# }_ 24SRUOOޱF9^JPW78Bp7EJt F;w .2cJF#0HX{[AYc1>~Vu% cءƇ6 Nhl`I7%+|b_EZ4(~NjksQqɁ$jWL?S_i2v恁Hį \}b_)n Gmc]$MŐ-w`sUW,ho>%_P?pkٯ.4@\wIf>z??(&GR0._mx[ bTA&X/yEB4E3J3[3tB ])^I 3_Ez`=4EXٍJHYNj}>A|qEj0SVi~(\]w 1e%?jkp`G4 #-{l8p>.=*FhT*qSzʽo~V]ј&tBC+fZ~ $ ?s~S'IFzGs ­S{̅[7PQѢ[ݫd8ޫtϜ~gR0#"Я [_UUqg? PbD:$%`$^i~ێ~9ԙMo A#a-'JjϢ^Z6Wf@}Nf׺umч_I_c9~QNJ-#FKGE.S1V i"eh%v/fYE[gnpji}B̫*5/$ܢF)*5׻| }Idg[ƤHCJJ0]wɱњU(yy:j.U/& 9o]]M$'K+RYLK/K^9lĮ4-ٕ$޹~-j]4ʛ$f/igq0_ =#mS# ss>Ho mO+^Yr%($[5*8N>w>H@Z_CȊւFc%7ɴQTW$gzIJC/5cQi%phЭ y+ȅ~JJ $g|mbw8|Ѳ%\B)C*$ tRAb LYpP^ R.惂h+kw/4PVܲe8GN[m|s-T-< b̗L7(E`hg2܈Eޅh Z+V&YR?Ug '7f]YGHfR? C&u[A" YdಭA|dv̟}t#c{YNLu|MAR@=G.mkĎcdu*Bw>L6=2gns,sa{ƹÅ|ztJ,-gIJà !}o \XQ#Q# Q 1m:?+=5_* sn*8Y!()|u@YFRMb%EwbC~Ph&¡Bq*y0QW%\)b7Ht- rs7VB'w Ӑ8+mť#Ps`c¶Άmlv|)A75z4g0yFxujÍ}RC۞J[V LõjWTM9e?mV K|33@?}6pqblHt:@jOrJJpZ őqӁ!\I 33}_*lK=gT,%Iq Vz:× #I xŲjq)hI5EW/Y (#; xF jK S' :_]3xYpXl?t'<.y`7S&)¶%8&''.iA;R?hEkAt/>FٯNO﹈CˊJCcj -iDK;bdzT'pOFN#w_İV<D ,:XSqtr% UUZKT<%lԚثcp{(CyQ 2tn7Ǧ,t}3f3LˊޜKھ|X!y:PercjE֤EZL}f2jNCҼ £fɩ%hZؒINpfF?M˒TX+"U2Т3FS'g@carXM1@0VA[ *;V#/O 0w\2i=%pNf(1~ӂ\W]|p_' YeF`=Y&Tiw Ay$p)JhxAy~\IqZ.nd. 3$gt5kKI(Qk+UđQjH$(5KvjүRcJ̴m~?nG@r.S f* 2%hE3Jn'(D`AҢcSGަRq]mz$WjdQ@y1t/~4u]OPdW48e=odl-Mտש]Z w }ح9?&ѥ>y+5 |]M̂k݋4 FMg›~ G;B HQWSfcy$RϟLK# yrqbLcv QNQ;} NNlƐudZN8Cl ¨BYqhv='Nb^?̬Aae>BvHXTS*ɉ2КQ^7JOf ^QFw3G  ѿf %W DC(]W >rw 墅qG34yW{γ4Y4K f>`>0>\!*iA(nۨSo?A3tRwTҨčb]_>ڌ6Ugk0H8K' :\_,xgA _93)S;IGP[Cbb$ӏ "XSUNҏ{Zcvqj.3 Dh\ܠҖ{#g@ *r)F<j8#l\pyo]Ne+Ti܊5v ~%ON4Y eo187+R{^vB=Sqq:!fބN蛋7\ikËVƾ5̵x>K x#FB38z.pSS F27^7`jl; (*;s5r ;ȯ"`gF6cp6mҊa?/oG#v4euŐ~a챚q G%S<[7i6RS`dBV0ΆKV?B~.kzC(v =ts N.q9Ǡa'3BdʯK4ҡ8z݂;Y@aT[& R&T|; %pҪ1kD᧺Μaֲ ] +GBpP ?^nij-즯 ;JjKʀڢ]xYCJK|@bz+@cNgKhا .HdK7c4_ ZT(SF:j'c_.b MYL_ʞ\k:5\N8B~2)ɔ'/Bbɟf_O_G@Ǭ#)) ilv)ŃxBX^rfN٨ e-s Hi)ޥ- #5b!!>?oJD4peg!BKvp¶?2?$n Nw F8JDv]W,UByף8mcȜhs 7ܷy"k3[%]qW_'?u6{tZ&b[|V0u|N [F@'=]X!0x}(Y?"p ]VSJh&DtE+O`@*5MzC3n#HYq:(2-e;-cmXYAJk[* Q$u j`GZcb~t>M]*'8o^Ǭ4c.w6l?YəeD {69M7g$w`*w_PZ7w&>3_ _;6CbVt8=PKABy?'grڒ/9=^Ds,b&dV-Kew^V^y7^oO_ߧKN*+j(5,ůgm%["aj^'"'$"{u os(* nuǹF;K%392Qf7v_S/KO Pb%&$q%}z2tekx%\r\U %λ~ ̘2d zcԳڑ_8H LܳD-RE!-G-8{D\e'b_P2΋/sq{Hs9#WˋՒӎjm8LZ[|!`#u*kcyУIQYxg8% Gb|U%t" \kɟ lBDѕkRZ䘫D%HnGSEl Gs6}?T済("[;O JuXkf+~f @ }ԤW`O %ȧ~eO\-KC4/Ih| GYS>Ņzԃ4.4vFKO1#S- WB[]98BVS})o\ # l)m8X,ܶ=ve,D!g7G\o[t3/ "$Uc"#^7 Nzb֒V4hi*B`Flxе܉kudK*7`] j+BlDÇrR@|SVCcNO/z(b~(+d( #2РKbPl*1MN"I{jNYmVH@rpM:+[.>?Rb+8ovU]PWNh3Q`Ma}Mhj)E$1{)ĔjH-PG;ܒ#5c,+`9PR'RA?KC?nN6JӲ/9>i}-`dC@[Ǟwe~ݪGl@pظw" \)~RœϻÍ8_Mc#/-ùB~ L6TeOu {^^ 7`E0"HC:h䫿],C YY&au-} za#qf&"B7{f垢{S V^271 MV,]#Tqjٳ;ݿs8ZedL!M?<-1H&+'% ,OJ;N)gw$Hr&4Wq M7lt?3@>C^@[Y6rbhW ?}N`)wOCQ,90 ;r&DB'9] ̀Ԓ0G _ԓ_hG9 d #KHG/΅3,Y[rgg:PHy`oh!H`lx֋.NJӴRT%sT2|qˏI9|qa2cPA:Ľ𻌛~L͏2䅚N1h(#6Bo("<;#7sY& *%RC+´hڥ2RnDJOm}lT [tBF+qZSd Lyu8A]- &/Pjvkt/y6zLf9*E uV 5+kwj/lT50~&*Bi\G3@q '2ZzWY/0p4htY}WԩHbIL kwoy7MuSG HFQaq rE1mv&"ȹ!?YX 0i>pPEZW* e6dW O Fm,p˷3㏹ 8+{?Q1Mֺ>x┡p5%W]ҚQTU/2V Ww? l+<ѩuكPS2[b` '#uAhD9 bۼpQeZΔG[< 񓍏gUHaSv.*LN!=-vr k ,h|4<ȚKW Js҃\JaWہ%} _"?/QfVC~"' V; U+K;);/{jπJ+q {} `rě8DwxZ`$igvGP5j4vΚWAO+0>od@Merl Z-f]/?\69FI8r.g\SRw']} UX#}5EnGEƭU|6tWwu|>f0t%8{l?#n/4VbLb^ <Ҷ8](Lc;ǿP>>>i#~/[(LUs8=nL` {"mUXST%]7 K;ф79ǂOP/zp!]Ŵ~᪠kʪr^O,>[氄YsOT^ish³fa)܀BN9dO* m*>SŋpI􎦧)`0C:VxVX_#.2 ? HHC= 6EUW6BG=k{#X" ݆]XH[o(ꃷ'IvV|E4 /^>z# 7K􀪝B.,|yXGp LxjOwPT<Z~̧ WSêm"eCEL \o0iz z.;{U웾rDg@Qzά]c=pɻ4_,fEp4w=_s|\VcoC^Txxo85YԉD+n-%=Fإ(F6mt..ViI9' f+2GQS Ƞ-%8L͋^ѹ W ur\)7jYTk#%'W5w_{QQq>5ӌx>xy= xT:I?*ǁQ"قB*Sl 4._ ه)} 2JwY':9$Z\CϜWfEp Cs/k6 :M/ߤE!,ֺhZJ'u0`B!(6JETFKX',}1)yl3;J?.l1,B2.r>s®_N10mh!P y_`oXm!q,a&ƋiBѿF03ԦJlC V,ՃuQDGG.ׅy0sBI &% ]V^6#pG0sf"N,"IifȹѴEEAŚyΝ6c:BFkZZ4hTٙ9aC}w|(;#(R6eѤM$ZV7Hl(![ڐƛX,Ka!/) _bS!c#Ae"O(*dV Իݑ_a T*3܈Vy|V~MBnۗFָuyb;iU˾+ڥ4un :D.+nn s,ͥT$U2A x9{@ì 2|cC cMH;j=pmjURhY:Cѓk@C͝ 0!Ae<(5 l>z&'eRFA:He:ۍ Z24n6jeu,FJMO1n~DQ;#NPU' *?M 'w|)pl'jZrhgsn/D%8cW@\rk̏SA/;J9"9waT{ZmyXVΣ@ͺa" `191ᚭ2w`}Wp|m)Xi'PDΟ|F/%bf_ gRiw0ۺmow%Xo7Қ6IEٽ),Drf^ qa\> 7 wn3/XdhSÜzeZ'5B&P!:b%w}<!ßfyMFϰJi9KME pي^@У$иP?ߤTFӤazxH1y e; &&۵ӅrC܃݆;&=.!WO/XbhyvI,B{KӠRq/WTlםjУfiMˠz aU*ۜݖAH ,7~2 T_KS]lP6.3ҩ7DќZ ~ "DMj'}Q[rOo8mg'6:Ք:vB WqMʁMqf^|w86.˾iXCFUKTTٷԶ-`K G\chR4vV:tñVdf}8?rY y£&MRJn:@1h s`&} TLw xZQP\$I -Y Ozy\3qȅ֜G'w&'a_Ѩۛ{9D;(QݓDJe;cPDͼpJ9 X9*{vk2aV$Xhu$lNo$h8u_ilG-1|kD]Sv=2x|NƤllp5}ᔴ44GFD ѻ&#|)C9hz0_zHC>hiف W65`{YZ$x`!AYت|sWI)BwjJ}v ʗKb,~FLQ, d ao?RB\ܒ+%eb&ot*gߋ'5ȴHt#!;<~&IүcRHp:CETCM{z䀖wD=$;'; k87`l̨K` 1 d8},6UpZo~ K~m/ݜ%Nm@p %/[Nr|75$LŐ6)Ւ*.z.21;_vs2KN` @G6&Q++e jOCI:q+JHt&J=v#ύ6c)mF؊F@G(򛉪ׄǍ'6Q+1V8ØMك]wZW'P?` bZx:TIV/ؠN _sTa@k_`/u IJDv`[~ޞk+1 xrHX{ ^LaI'(z_ fRQxd"}%@, M 5 [j Re,Fr1~߇hن :#l&Kj>1tp{ܯİ'OşT{F+ߧg𩐈`3Յt慌,횩lHI⿻zAdDl[L%,˫fR^TR I!}UZ]s=f)I 0Iw6"` Է!=1Ռ=,̓E(s+$zDu:V{ڟ-Lp9 3zȣ8x tcc{XNs.#تH>[_"JՊzi@lt!:sYDn7F`Mʖ8A7.VHuNkE?餱 }tsm6'R92^rzە$^# ص)p^:KG$<[ ^IK d]| ?_ ;ڕҷަ|(&5cC"Zw+ݻì$YSȣi X!iG!y*)b*}w,X/ =c\y]ߨ|]zA",ʒnQ>uoZKp()rڄ}Ts˃~^{%VEI0p]U헴mD9W'w\IGm>JՏIJD嶰'3~!9­-_{֎e c"op+oC6GQT`ܿdINUagpp?$\ Y;A=)tʾKRDU m5ߟV\AC>NLjv9h,?i;\Vi]!ݗeFm}=&BiK0FQroZD63*<_Gc9!I6ct-uI['Y5㧃ᇅEc>c[T,c-vL -hzqQЇp5ֱ:ʟSЁJ:+su=;4iƁo_ħ}N2_~jϱ:+{&HNʤvf| 1b>a`ߕl[}u6TOq h!X[?r7 ͵a7l<5|C +Um°=T(8YRYa3ٵ$0ۄ˻[>B殏(VBGSe'' e UeWMGqҔo;"QՁEKH 1ic%ͳ ,N$cP2a1 7*:fPKOv0Oc4Slj.@`E%wJ/5Eh!XUI `g/93"+ӓ/dϝ\ky ̆ 9^4EūMРNbwYk1[q+:.MK%%IK>Jrw6aKv,|S0u|ѫyR똣Av5,nĊz=5Bo`fFDYA5ѼzO/ɲO>ܓ{YZ4F(bVUXVfSBl(/jߘ*04J#:.Hoì#g2oĕ{{G7ƽfc7q7⧯)֋֟"Q CQ; mȰ[(V#Jv*sbR=7j:N*fY(XNi1˼(t[C#lO d\g\A[S@Dh7M_IqJFD,eQv62ǸG|.1rw2=Kt&)"m*W3RO'$`I%o'jnX>@Mx8;;'=N+l崴ORi, βy}3"ڋ,NŸEj ;9,mnwϷ'(M9*Akt嬁!j㛶jwQT1$A7Yf6?C5@R2 ͽ _U]>lp5Vu~#HT#,B(wFELr|`\FM~_J~0T?SgQr.cg#Ffi~6 .&0P[ C($|@<5=6@oo m7~n7^c$HƠGH`5*r/[>Vq*Dt`W1Iޞ66+^]Z2#q |yf](Ԕp$Z_ b; Rm5áM/ V)x1MX6W$JOrm=?ipEK샻:7vX/+H }i)Yr!&N OD sY?M\6=twiT,ۃU2=\-D O&n23gpgj{c{HnZN/pV{?NKYUزA9"GTb]˕$;Icݫ7=7Sl`/YxݻgP*d-Ԥx gZ 3sD˒Eg:ۺ& {* CEuQ{/V^u3JM߼t,xvUcW|iJ[YQM9ftD)Pu8s7&rvh ~f /`wa@gPXw|Eы BB]j}얨S~yLȄ^=Wr#QtkdVFӷEb@#&{Q ZO0KғTOaۊzqn;A7mM0NVTԞxۺZ"/ܪ\#%yz\^տA1zճ`&8TΜB֕1ZXcMY[r",;q*0S'_WjJocձ.}]y9 XV6Rc<I;"RN2隌|hRL__ٕJ?ɦFw)D)ȠـuX&Nܧ:<5]ӲV2mM<OTg}P^C~PBE!&Ŭř0+\fV<킺=Ӻ'KxQ8F[<_UwMӬWmx_p!AtmVVIs#!= >?w*2z勵bIU(3 2fuEGd1m8_*\V|Ad'{ឝ ,GKk*[1{$*ܩ)RInLDr^>=vs_bW]f Xb Mszx zTlL3h*R7 KSFclA֯mep4y\CW.VG7P$YEKɑqځV:ƆTHb<biDVUZb^UEus(G[yriy=`X@%d3+'$ NNp͂zhǿ5Ļ ?aV n /sp+){Jrc⫺Fbp1;rFs~E,]=ent-;KKD 7Oڻ^L?`#_rСq&YUN0̯ZSmDz;||6w~IFgq!BUqy#Wf& '{_Ni3|.rk i vx@*HWݔYM{ ;:WXuK P\3ےYUL)ܯ+f H15tv]/X/hzFŵ<e>a}砗u b@k"nNw:p݌ԸTCKKl@n}SF Crv3gbGw\o>kB2 Ir+̍ŵP|%XU_w={A?yw+l ?T%V: xUg<73 [5N⨦+:OC ZRHZ)߷rR]1D9ecIťTAww  N_SO$= q$ (ߚi_b;~3?]=&0{Tg0hn%wr:\CI^ƥikq݉ϸ*Ыu27QsR𤥜c* L,N/ͱJPqif@ȼI`Ս ;wF)X%AKC:f&^&Q Wjr„e%Z:y`';PꏇV$qxuj96Ex5$mu[b#'1bB5e&mʼn [.nG5Sl>k:(`&!ڲsΘʛL?Di ĩTsew#Nd&Ӑ~^R*olMAnSd77(HX #8 gTΧ[4X5Jk|0Hrϗ dl# zkn>ҖdO )z~̛Hj|bzI;<-f#_oNB(qtr'˜~[ n%ϗ)޵^Vnr~ۓ9h@bh Uo޼rֹyG7Ox$ه4?)22Л{V3 e1IT4sLqmOXs ɞE΀%)xaѝ}-Dg9LP;Q$1D0?waSPL^^+d Nʠ^NXGLQgۑ7Hox:NR:Qjvkz|p2vr8[/ܳ )]ΚB] *BVlBUǽيT[tdloB>ǘ \{3ؕclG|`[MuD'2Z}e,%lv)UہyKꬤX:)vxkbGwxAoՕ1pRd!Wl>lF[#ZdTl@VfL.;mQ)bF,˫\`5k/5xqдtg 6/7tPӴM=)}.$<󩞚L0LD&7ĊνR'|G}e$ ڛRxyU%(ݯ,9{h:"8+mMrHMn~:mܑʿzQU%.XHfKFN@<&HrC#!>%8"2;h9~uѮwkegܳ]1z<&9TN+]TpAq<4ߟAX(z84"<7';Ay D6sKq d~b 9Y(ڕ=_F;Mk }9%!}Jj'cm (9PW=U&u256 'IPe]'h$kd\·nv ]\n?g۶ hɔa9 Af;i]y:W=ZΟ1Ť+RZ7HBzʛ[$7 WRutk0[$o4$6b2Su|Z~UoÈ}A>֠!SIv$˯{YPȩ RHu$Ĭ\$&n̉3=#j8\dT7SuCET QiS`Ӹ+=Ud"M.BZH1MZO_l n7wyM%,mȡv\iZZo!MXrhn } !M$X6;sf7%y5 ʐ˖w\UpQ˝SG+,Sh +vC8Ðb >dA{Ғ-dA:kh":TĚ~+bIQ|0 >0ݖ0{D"]p `@ rbT`Ml$d֎Vr{agI:_od53IeÅZQs'S,"2g2V0h6DkajjO7/ fk]0檵ި/Bv5VFuEA_88;X4Ꞙ*M枃kJXlZk}8&o- IQpIz1M$l*MH8T[Ό2 1~- n5륽G h>`.z Si6$H/A[" 7Ҳ 5#gG?sޭn6aR9'oӗtY%aŭernn!J q[MAṠrڼ^}Dω{z`2i=ϓߊqj>茒1ڀv[߾|~7ZlrK%qwkTa:}Vj!\F -W1}UkLIg~uw0OȻ)1v?DnQ[4ݢ"YŒtU//T la~ gp3nᇳER08좊wSǖ8Mgװ{wc6S'hGU%6O DaRz!.Hی7d+d%՚.U.2_Fr7NΤ $0;;vў93=WVHйTjNe==}f$^ȉq1qF<.$jw;VST*+Iճ \%Ru~TJ| ciϹ!CT?2; ` N-Xv/@aĤ`v@4ALҝz@U)PFb^V,OK*Ä4fOiKH:\]wI!-ҵڻ􌁨](ަq6|)!%zI^ %W*#AMZ7dʆ!nZ: 4|]*w한t 1D3J*$%_dRztن[ KPÑwgaS#(ך1gd)ȿ e\^X{w) 7kQ&éW]SfcN'@*w;MQ;3 i 0/zUGvR(!gȺT8]~{@6yW\ְA*|݊뒦;7=e͕j&6oFZ$U7^k$$a$KTKcZ" SUoB/8QrcK޾dɌ$5|콄3Igg9Z=Ɉ[%5o3<'"N澢sDz~NJE ~ڵE\jO7D W2E'mIAȲ"6 g )5-ZܯO8eA9L }+[$2`Vw+t$i%X Z>VTٸFYpDୃ7GtV676!5_CV !՝眄hIypvj) bP>pB ;`PkJQrDOhjW`%x2SqU`T+ 'cA #sa;gE,pKh55MImHz|>A'Lkf6s$"Q 支 "NMwؕ7H:Y'W 4s2ivjq.$ذM.xL; 7 r#_N.o+6(3)6UFTӏVΡȔaG$&pυJ3?|uJ D;y*𤩎;Z™<(A9(K)"눍 Yyw= iwu7T/}YYy:)w[# eР[[qm\,E: 2Tv>Y\.@O6&g4ʯ3Tig]@އw3h~ž ;֧WX]_pT>4JKI)ʧt4}EUJHcc}m"I0tsG|hGhpr9/<o~]˕Af@W~m ͪ}v~x6;/qMLUl撄N+NZ2#x?JNLst65Zlh\;sn&v(0N;>tٳ{[kޅ¯|yhraǭCxFVEo*!7"c[Fٶ<7! Z#F<߷]Ვ/{DCģ{`yV;^&0E7/T}fv(VV~ð!nLo+~b}ɫCԂNazّy;wCjsT,BqyE͝GHRu?80IYoC[ijcOJ ێor gBd^t%Gpjymda;S:vGd9}z(70#>pa-i,n%w]̡-L>N;tA!ò9lv7.$.`TGk{OΨ X~/O'A'c+C'DyN +5b[\؝fnB/\nʆ`WBt{Nrx&+:Uu{= nB4שjJdiwsg>U.w}(h苳x0{uq^FY^w)4tOiO9{twfb'b;X-Jf@(Ktƺ AȆ[@셣;,`Hcfq`vn}4Q]nSء'Y*R2ʭ}k?P.>w a[VDz|tŸ4a}m@RoFTR[8'k!)a1=1<>`DfF V+;D>.4?N/+S vr(m *iCۢo\ʢBfR챢oP "5%mp8L)-4wp/ :<B?*1 ) O޺lI;J_=)F1X4=5Ce# 'E(iIc}r\kwk{f01Φ NinCq QRև@O%owE{&?s_X'@87gJ8}V4dQD4fe }ʯ =uu)X~J՞?~\8id>\4xW6{cdĵbIɿwM%sauuLۨ724`Fc䊪U,N1g`B_K[91YDo[s/{<ùDvƨe#dS}q߀jlQ:xXڟ|6,ϣoǯ1T -jmvC7Ҷ %^l FGƔ \ 0:M8`Ӷ2lkc\:ڬ&8m])$^ PA(>MgG M}AԀv FgBAc;[wbR&Xby@y B?zb_˲8n CBǸŋp2ǜA5(Brq\t's`mJIJE8hxzLՂe @AHS8|lox Orf9Rf''hA4) o1?<("WAMs0=V32:.i@wT'0]ņ4 w>zJT'=΅]ɹPH! 8֎Q{W&|XFBu !g7C#66*;4(!%rc+tx tB]5N$g}En8"dgɌC;>_}+EJ܅Hq q #E=q j1N,-䃮:FWlFscQFQYu5U~`j  ϋ<`i6] ˦L BPmWbNmFU>poz"=qNcFlYBm+JOG)Bb/ūޠ:Vzm"~N# 9󷈞ҢB0T(w{/5Ȳ؏ju{u{d,,L1B)qڜFB9PV? 28JҚW_GHVeyi]g%3CUH@٘!wwFnM_h_t's  vT9/8ĹXFAeyeLj!ܱ4=m L!Q)E7vZ$ߴsWQ}y6 5n\v/mbϺ2:heXf"L.^/[[VQJdC[Ģlu=}?E|EȻ%7g!` 4.;I ԷToRW$F yprD98BMΙ CAε(*&D=XkU5J6Ae+O(v$>w*pj9YggŲg`_8˿YqTдE \x4\)gAB20}it[MA|<)P8]`? ! q YK~#8QX"CۏiQ/ٴ0G*8s Vz3#0dHjMч. ۲W]b#z9BPjf{5xb|1̭-'<v qsS -m`8CQQdjHW@R=6WruU VTe!_/lC#Rx^q_ WTqyz>֢jcV+Y\.󾃣\N$%DFm缧-QW /ɟ-RxA ys[ad=CԊ5-UK˂ox(cc}\H].{ ,yia%嫈$;ea$X~+V*@`pYjW ?Ͳx,bG@_G p!9܄R,ŵr؀rITtT2W,Ժbj@/>ua$[Tiڐr-D@|^nX~B*Qb6s[=hνe []ʮ]:Rm %[[[Yl}k"$^5" z D/,-}=.~9,sNcpD KhR2.߂5aav9{*;`Is#܋y_x>Ca/glFeU#qFv&,r h Tt^A q ! cM|A[%@kS AǹRՉEOyR=}hi䠥$Ηsp0K/W S_ Е؆*0҈EkBp\(L9!q*P4b'Dۃ&(" ~S;9|xLꝷ O]!]Wwp[yDbh|mQ+={R1'- E4il8M;Pwx$';ӎ{g]`|?R8> `b~3<:e1;IlgZ IQ}h !&`KvR1֍QG?;ST Nf}~6 MF )" auꈤpT^.\mo+K&5"tjЋ1 `2:b޹uA\dq鹬O%\ey 3Yʽ{\XDj麳ќ)Nbn8'*yLg:-$H-jOhfOE{&kpʐ tac> ;`s {E$=Ĭ*3=ݭIbZ\!56}֛kZQ|Θe JؑCCT](~ː{RL7/EP8Jo$q>J2#;dZΖũ&d)0˵OG¬L1QVoLݤT"h3GV7 TtcY4nSlK:t姚pt>Fac0%Y1"<>-\T./nw `jQ#ͨ#LU`'CCl3;)ZYf+wuawn/a T =Y_'i sL[ 6,@t”rLftOo퐞$$Ar:w6Fy7QF]yh}&o7Nr濨R#?IK䋲9la9"Ϫ 4B@,\_{ j$|À"}@玏1CO*MEF0@qv}Cg70(P9 #VIQA_l7d魁9.}t*c3_NTj(g"5=rνޚ2ȎXen!O۫dV ?&h;GCr LvؐN.ב;_?zu$Af0E'IVB{4Vf(rM([eaM^ƔZwQt-nW* P ,d?# =D*M_@qռ!}94p`!açG,ҤLISܛ#acLỴ PchOU{:dRcsFg0Z>ۺ!6&𚮶݂%V!3B].jd 5C^lGc|O5.I]Â8{1+7tB,%WsQ $kōwЅ/ć)ouBB]r(KUx#L11֦AT{|3L(p|tp_Mϻn D~%T`nBWql9_|YwU4NgI i22;qH@@H!$VAs?U#6rutt`tSS)La`Y8zM7uSX&L'`aHA/.z3RL`D9kXD!LJ(¢wqGA-;mq 8&Tsڜw'C:bWA=@6shS]!ºkHݦEg߈w*眉+ًs ܿWq_Th l~&+x+0. ~ߨҹTV8UJMS83+*KdDrQθ;dZN8oYr3 X ƫ;}uI%z%;7fEΞ"Ω?o {Bi]^C>s5m4Mx"t;c- M:B[s]T;StLK6L7Y_LɅ&9mL/sHDm(ޠ2EރssEOwْe*cjD|)*%+ !X<-VAcI7ɤh٭ &vF{^7ٜ9Dڣ&GQz_ ^FP=OfQW/k.В5_Xoݖ1ɠpu,f ud| c] Ȫ^aA{f,ۼ*%U -22*turx;˿EV`oOc h| 2S⸡&MWq3՗S:/UgRU9un!]NG'{*J8oZT 5FPEZ 4A"K%Ox+ 12/fG.*wTBF~j%c> W03yjjܪ< ӝ;[#erăM,b, Iݺ+6M,^%&u!9uVRμݮц9oWw!4]v׷0#_)ӎ]T7DޭmUg]PA&no5 4H9''S8AN?A.ZYdrF` ,T.ً0wT:5P]xX*AHgpB +Mx AL#Ï96TY]8ֶ5;mn1fgE'j(87Ya+y&mTt6 }:.+='L[P$HidƁ~_QqY[~絹UOT`MEv{qhx\EY nN!@W@im{)my—`ni$dxUQ~ʎcbNR#jQcn/ m .TEyTaDh>$M: µɘb\}k6L~fq/Y,u~V{3n ΃&y;(3مN!C_yt_`+n9b\Xj]$: d UӐ_ _'iKE +&`v(d >$L?f\=7O_Ҵa}z_U)N .krw$~: U$똺𗿚';}>aIW\W\+Z(gnU|fT\!}Q*'x$ XKN-[dp5AV~0l⢵ʣb{"B9"$3"L.EZ7Pg+#_,g2P^hS2s#y}yIŧw8if$I:^^X;:-_tvf^Jur+?BIHμGqoUMZr]Gs+NvkʙeWό".~e!G%> B- )P ARU ZD[N]T 陉_~x28 -@S*{rCF`Dh B<@q3)4'%+6RI5{ѷ J ZHO*8Z͞ 4AI-M"p6"5MtOD.0tqWVIyr=hkD&be>E4p6\Բv?M: t@%Ye?+ V^*>l ܁-_4/W:یkXھU4.Ɋ_Q,nqeEMa?d?M(svSF]^?I|  53`== n󼍰jM*Z$/_\4/F* A%~ [&7Y !SEj -޺W|lRkc/@ֈv -r낧'UNKE(D#aOm5rL{b7Y@"i= vƇ׭*8Puqˡ ~w=1Y#кb-j/&y&yr{jb3'=E,"c:(.":OSu4@:qu"7U7wzdؔID>1S au ovw򞇆|QA̫ȊZs0RlX,F`JN,9AoՃH.Qץ%Aw +NJ #<WYݾ'^3V ó/y/Z *)#ITKWxW+eLW{wC殈]^%L񜉱Ϧ|t?P}e 9vZ]{N6XVT6A={O=Æd=Qh@߭N E뭄 <06Y^<|/aH#)&:Ȣ{n*~t# XC@`c!i < MoК<\2Z'F{".;|yֳS{7XSe(T+‚ L5$Z˔+;"RK5E qIJ!0`jv3=&cIm͚ ZF'*X5/xKbݷ _oW✖aq :ѣ }{wZrpIiu{ 5&$gs7yoD @w&^ﭗx$l r/ޗ^,ƪ`q|/TvH pvZ.Fԣ UuZRѼ 0Bd#Ru9#Pde sP=aL?2F{I9ɭO=a߯;!z62B{ZKPw=1_qXUpֶ)4{!*z&dE{aȫr;‹՗M| *YuodY* 0!ލ2:vVS 획ku2%\*PePtekh]t^h#>|+`(OE<.!UdIE ޣdТ͒RRB Gb ٤t}0+6e}t{;gm%2k^Y;E~q$e]Kۯ8d~/E46-s+)Æ!*Wr#گmӭW.˹+] ǧ~dB3I}f2Φ;cj8OLXzܮLAmx*ڿwbPA'QC'2܀#.~ wXl@>70؟.b+)` ,M8QlSʿ~EVu-+pRU ٔ29tfٍ(J0fs*2 |xl%~{%Җ\F3{,Ҟ8f8ZwA;}O/}<Rc ľp[0(|o3:&Qm֬sʗ.H Tlc$y$LyW6(le5=3?nvIuNO$6zTc@K-ԕz cj>&ܸտ$eAĔL#hſd0L*-+B~amQwHbqN^9-Uw*j+J3T=ٷv܂N  ̒fFWŴ:as Kpo I"ݟ`pܴeQa10q2`4Oؾl>Hp>IwuxkITSԚ闍ѷީb}$IR`D=3ZXjfK P/bJŢߖ^o`Ot ben7+6-Nh4م%\ r*<͵rayzq.7PLl&r{M7.~j;+,6BX; )\6g, &D2(#vk NS0wFmUi~ _=3M˨|nkgrA/J.ڂ%,U5%1t aFMѺX3@D\1:bXt_cns?YXO$nȇgοbrZNG 5y;dln 6]޶}PTHؗFLuaL0jSu7h:*6)i٩֦EXw߰}G-׭RoM.^ eq=y3@%A댘`Vhl咕 V,l W9AjJ)Iv99߳PDIb)kݟ{|`!=، %篕qR^a3܆[sП^|[Cvg6(*{ZذnYcZ CuIj;:W5ywn_aBERZQnn XK{Yvvv}Fl xn0Q}6zZ>YdMڷى d#Y'(Wve4>qAKOuօkc N>(Ws/P#r&v5& ة򸱢`/_+ۍDAJiHeEm=Q%ga61@J<0[$m |'n![B01B_F#)wЊwK [VȬ_iMav 8Y\Ҙ<D^>ab5ƿEInKVpaS1_Dꪚ vD"}](;e4`h fݦϻhM ]mA Qql mTω*bZ6]hw^!3ij5`fd,ƥ ´T5MTEaN9ynR T:9rGU-Ӌ_ai$s}̲L%)Z+Rۄs VAj> ЁRG}W_YS[|bxD{f*!) ѹXx1ǻ2Tb3 s:T,O/e#[% KѢ y#,ig, ڗ΁WUf%LgDgLuLiyݸ,g ,M!iJt ѩI|0MC}1`v5z̎=_%5kguȅx]Vrߥ|uI麖 ٩ĚӉӚ ufN(}zyh!a}ʵ!<|+݊$^|*.NnpAC@`;5,ϔ'8Bn_ 6 Oqz:J@_B@:റ-xՎ{oޮ/b:Ƨ'珰}4F/*]XUVOgQWF8; E"Vkk\6ۡdhȵ;o/gH]]QRߋ!Ħt.,tͲy_~x=kvVg},ji~TVlwVh͢{tQX-Ⳟ Ss kJ} 18rrtbq*B "֊S Eh|vPNL{+]~DnM NpK.e_yFLJf`>D 4ޙ`zcQvˆhc{O3QDjZC>A|qK%8uD1V%}k.!kg^B@Llvl+ɚT%pPH 3wUHw~Go#CC_iB3Ǭ~0tymq̔)fjf5] 1jn/P\B⠯qHMp?5G[0aB=(Vycep{͈큓 zfwp zwT8$\vjрI1PRF6- DRxe$W`'b"ѱq Ƹw-ceF  "C]PM:Rq]34'\id'w$GyzAq5I8EJ |}x*Ywӧo);թvUJr|B~C-06fӬXnHBx,(=J*?Z*n,^\BOԓ ˺VWʐl2*Y qwpҚPs$[ɺI[Z66cMu7BcSBfd0g=7fRUEZ/( o>Bdd&XySDaVYh!`Gi:*"/*1#O;",gH%S_L+ ! ]|+Q?PȠVGu%wЭ)6G`wsl0ǀvх 0Fϟctqjo`!BK )sl/"|y@!J]8o^aCRJ"V\1@S]m3WL*ĒJbuwQD,ڛTٴZgd\/$*2:W_@]r˃ۑ;hA"!bL 줟>\5/ V\CBFo2>U|jA ˜5AWZǯPE|M@H|I4UܭmN*30)gC* ]})܁+g8UJ&#r6mG~%{-8pD ò%HGorJ IOс{Z!tݖ(!kms:GsBqjjD'eï9pe bM{V"AK Ŀ6 .8y-J:%4alY3n)g0t<"n/{[k}Y[(v(t :ol@]w}8f"˚=Džtɹ\ _N &xήbg&l'6&z*!&J|WXWִizXMosG62 c|Tta!F3 _fatP'_\ BJOw%ۅNV'=wgjF]y^ ,^746H,j:o{k2*IcjMQ^)0HSuaޜ+FCfF WArJ.o`\;FSDT{oz|.euAa0 Xʛ B]^{EԤI/ln|Vca Xg),2r,y߅ N`# .ےAW?\kd'L*W/q2潓4}7<˝ЋiMGkoԷ< 2d7ΈE7>A!h wP^zxqIWcV}l]V4u[[B8)tZP6^LGI< WSvhYp%Ő*fPdrCg>TF+iB :)Ȳ`zye`+TVK $Z1* ~f_DzPv?>匆ufq;WWɀgBW3:֮Lec jY'r^#p rJwpwA`ۿ-Q K-%;"R|v゜|+xu&!ڡx`7֌ewyО7ڳ{ޚC/P|頥8쉬؁>#hb-S;5k_w!uEj4(!q}NB^,4'FȑA~{L2.E&75!nAi͉FoiqWh=,:p9(4eT.-v."{UL2BB0[BXzCy/)fس\~:ˎcW17 Pq3!FS8±6P)9'w@IBG:wHz,|yT"W/-$kؒo>-2Nu 0BÍb0\ҩz {A@Sw8ڲ]nv,=bWPZ`E j6>9U[,R `b(z`OTSoۗq5v앱ktE)2lٯ)({ ˠY\/}I9iԹEAJQE!e;yާs_qeҲ+CԃfjtF ~F1 Qm5|A05-0Z.(`}ePK,ghPoasycЌvAT[WĮ8+tVَT/)#ǿ[JNb KϞu飯%ٵӡ}9K@Cqxi+ֺ5Fm9t)Կ?&Bq~_ވL?P atO-ST1p#1RQKj_-۰b`xU m!"?'CρAEₕ#L=9ѓ ,参VISX?Ux-0L|-f*Eۿ}D^tBU<,uxS`1IS1e`ao1dr{I*"PX+*s?]yc'ƿއ|UO @[lNax6ӈ͂XdEn-~sR[*.ZMn\:`!e(qXi.[ۋ''B3Y}q@C/Cnpjo0V$!j<)|MGDD.F0 Hɷpr1Re 2)\:cb !<{K"lc)X%Eo~k3m8',n{R5zwSA M~xuW`Ӥ} o= qܜt j=Pz!wGl^:Uս)*UԖ׭D]63hid0RuaHAJoJJx`&ىH~*BV֌K|`ޘ۰ڀd8ܓl*(.h"Tm6R1L啴Cܾ`]ͫO ; /s PEYJg2 KΩjWԻ{F ~̫C ,k MɎN1Ruq3kߎe:ܘx OGcZU9WY/"}j@ɿDR݂~t;bt.iIXC*䢞/?HТ({}_;[Ji&gCTIN69`#孧e*2]4&!gTuU M&!3:@IUh|C0|L?@?`Ǔ bKnܸQ%ˆ0 6@[25ẃT1K%>Z@f?5@M4gkJ_*'q 9[*0Q^EY&v?gsMOFz8 wu]oYš~x3uU+5-5&6}|_F2Y[C*[oQzA|jk\mڸ^ژ[Ӿj+&R)nxzC 8K%Da 8:>9#Z$zڻ<5MYseF]x7 vZB͐8ɘ, *%Cz9ZVvrc "v\x-ܩ4W·.H*W~Y=i]T.#թ1M-("~wOPP5;d#. qk4cM X%9JeqdIgܺ?x% +ΕMguPݼ̡4Ny$da7 w]pӞa2 to_|=-"4^̴eYYq 9ko:ڳi+~[V *XM63xQRm e^$p;62T?"MQIku]/IW5;d _E]EܞD{i1nro g*/$^ i )ܛh,~""2}nq_8΋t4ry Tͯi 9rmݢ .R)Qfa}a$i R"\uVuW)>%qkR0?fU{eEX]x 2 z'}(Bm=1)H*Ҍyᩦb8p!9׃zWN*$AFES]tH܏=ַ%X*y:,>-&@Yy+KqQ+xasy8µ>:ߔ,Ex >az Ili? "ō!ϭGG?t$:Q#"H((őf:K l5Xզk]Cp (X|# GLil†0, ?|,xa|ꢨJYԦ.MHSH{k켐6?'kwüW^LH:>T,4[ kE'vĽt7gu#[gK- ;4bI*n'zW [\rI~t4ʲH 0 "L1v_uGk e h'@"Mg ke GMn1P]^p!1# dzKk;ۢěB5 ?I?' l.9ɋc &_@H#߄+zsuu+즣+ק4X%u͈?Gf%B=v>gbK9p+vۨÇpNQjEJ"NB!]*tq-Z`\Fʯ8Q%-3«4;r0A0LOuˆ+  !*!Ax2Ze dL/#JF.Z)\%kv4=yO3NԹbe1J5k^1b bZn[pǵi0ucϨxݾV ;|vM!s/Cܳ}Lsp 2 + M в~m~BAѦջ^!ojn\5I}OƔ27&#&oZf.Is9X޵o (^Dž4>^p׃Ę̼X9u<\u޸瓅$WDuea'-O*tE@;nV#Y j7䕡ԅĮ;t7w׀p]W7(ӛ&">|w8LYEׁ<] s]gCd?-VA-Mp ̴ͭ2Cͨ5 *.8DVOa:P6k}j2(őVÊpH X"%qZ p,Zw䧴3 1ɒ^7vn>Ql*J"ˆ'||{Ϻ8sGv?ݩydQCõ1*f-! Fg yBqg-~t4~+7F؃X=XFUcz >Z/ZJ)ΆJcNWjrwU@֦) 0a)]"#d^Q(qe9@~ZF(Yy,A=VHr"HQa纺TI0%F0XDHl>!z(mzeUjy>MPJvu V #Ϗ(e ȼAVQ902mެ,g@~ll_'}׻nTF1nOJݼbT.֢IGKO( fA|%mgXx#suRNOjc!*ϏQwlIKK2i#BߊW~Lļ&ziK,@o(F|\t|[MkD1-ؤg_]]p3 ue[P7M#" xTgh9]|lR".PWhZ.BhM5کڸH 8v ZײX-zbܽK{\jw-Mb\Y>n;MZMTJFm }e>D˂tJ+iPf{L%89`?kM3hXXog`f%o9#u~Kw!s9hK-i.uR::~Dhb_`3sE,Z21ےl>&e gՎ>ykD 5sWr 88t7|;S{q׆ZYݩFZ8ڄ.Tx/́,8J0ޤV4[}+s=T- $X5"p%;_е&Jӣv}AQ| @=Nء n 6k Nt$&Ey8c` E@.L•%9*g#AkV|m.wHA3&Lnhޙ287]|)j u7V\zM\["k?6+YGrhA\8 GnԮa95odR<D.5癮D SfU`=iP.Hrؠѹjd)o_Kmuj|Jh6cN;Xj6bkLI9c=~ CC&,"ٍ՗+fț,^rSs,[;@٨]d:!⻇U?S 帜/ɽ~K tJxF"M@&n捛Dؚy0e}1" QBݟBKvR'MK$fıZ>*= $z`کn`tUʵ.MSҾLto!L-S6c"Q(\S}^… Ƞ!qz7{mT{]}tmHR 1˩7=4ԬߐDL싆BqAW9iדS?s\_I*\ z:* iPٓ Btdo;4mbs "\$ K\DIƪ81̚e8auo,9!XY䓍ִ8lCZ|`T#1{]CHq!F##/~ 7@}G©K:|I⤒̡;Β3Ýت` b_Wаpqv>T49ps#r؈l%^|W-8k_}jJ^ͫ;SЄL^~~|\Υ ǧӐV6́Iq)KVo%ؿq'TJqlTE۞;?z5c2+p_5+"#recr> ;8e<'C#bАhMtxkk]YÀ@&BbiԴF Fe1.W~д s 9NGsb yߚ*o :ġaM ,zpkl" d/ILkzfKhi?e: MIʞ!J.RV6)/rLZФF&_mMPen Zf?ړoHy>_m<ɧ!#UXm8:<(M<ٞƨ 8B>E9:W)LsA]9)[B-8Qݓ>WoVkc0^\la nQ԰| }{44p(SRC=)$3?Mp Qa_aRXO:Wo<~pL/l~քwQ8U8X*gUNS%uuTwZ2>ڲ;OR m9ZMUk,g_Ⱥ:YYW˯܏ӭ׎a ܲ|]P'/g. 4+E#Y ;$ zjĊǮ`yB2VǪs2rGwY{-?=舗〪j N,ԭj dPHH"M- ,ݮO4Zo`l=WC2{QDW:%+i5FgWlY;2 2 ~OЃZ1Gl- NUEq=Z%`ՐkrJ?voꝜNW[#xUK|۝͗ hԗ n C"3e.ػ5.6_M]pi EH HoZkQjy Hfʪ,QuFOЭMTS_[x?bғ\D!Y.rlB⵳|ί]!~0=MXtF5_E/8z#G]h z( "F4\/ˈk-\ѭ5g&<2D;Uw|܂cDev8S+]N5ju 7J5FMHsexP}a/1 -NW%>zz8$zB\EwؖJHjsMjoB$:sIz ]+ Gf{*Mq!Ej/DE\lLrQMrXinZ{{[~ W٩+S ~)*$oEw“fp)wꆟPՐdWYơO'wڔV m S5ϴ^ Z_i-~1OT Sz]!`aM-UiB'gS!hᒥf ]`Hg<A+_<"R>ۊ K;q!=lͯuÞn0 *}-0ÎyjCeiŕJM&vŗ߰̈́aU2yF9iv9(w nRy; r-` wM]LaI,,)ISyY3vWvǨ$;_+L:G0iw%VYJXھJEY YY+&l([%ilU}6D?3(!L)Xy[\Zr|ٚLS+k ڪiܹC4F^CU\'HqxR59zɃ)3^ "C DxcK{/슦a5F槧ݫa74xO1fQAagʛL5O` |ܤK@xfΏ\O-TiG`kbPA8L ~xQXFaM><"j\]5<ǯ\{)cb`5H ͤ;rj{P٩Ƒ$2!؈#M^ ȗJ7F #]J[h[GtB/|;وI`FI7}gp৚4UIxm6DrN ZIܾ/K[hv81 U߅]Ox SjEM_k4J{Yvb&T>/jWa*Pc|]˱9Ayn䊕PObMj"\Կ8? H.?@xJMx9xƒg-4;_yJN2_VǠ͓8T\fhdUns%Yg̜@ޘr*y<: 6FG `}Xnh{7Mhï 8{v>_JwIQ\3Npݓ"3PHe^ C/?@ jYL3*gA!& .- %90윋,ŰW")fN^`06%hdEۻ21̋+dh R'AbMe=WDN*-DM)/ NhȈъ;O SmmfEC$ڀKF?0D8z@"x3 TGMpJle{bh 3]Tg/83"ΐY*F>j5Ij@㜱FE\"]B-:Om70II)KNB0id;ߕ!}aij8\=1,5'X_o aKHҧBN7(l틗#zR0Ħ(&3Wқ-g #vLs qײַ8ZbE!"p9ҭ'.rhe-y]8Sm~ RU8;X>o΍>Z+7 erK:Zo;(L&i9+`?u$ E |c$ 3hbMZ2֔{o#zC 022 |*>XxC+ 1%Sz`IYj;f2=n]`z%]RVioqXRFXDn~" xoڻuvđGB&c_sM͚+2\'C6 _S+0x:J$EMǡ2N;j\F0Ώ RwCxV_(5jAx]߾B꽆~oh#E OvIyn<Ӻ1saD sTsl(F^Iy2Xuv|DqpX J*Kje?[UFoWy@v*Y,tm]h 7p 8^f8:$& 1If^B Mg ܁aCOC k]L^2egcI;v L*k0V#ItXqO55Rh1- \>Fg}bܶԌzTn tt͓-$X6'xBڼ'I%qk"B`X}*%1χLG%P 3Rd)6NI|}23)D9rdhL.)6My. qHԽ}xD VBK B^.j\$fY0qvEk)4 $!ж=8j|'NF;^DG\.n2?:ʈV0eb:*%AӰYu8MCFA!T½0&ؙU$alU{3@fb@zݧ]W[ ᛳD'`OS\~!-V$lW;:C1!k :*Z6PPjlZGt943?Rmm9q4;z̪h=\f ,i @ȧ@;57OM-bcNa }sI,s,ۼ8e'orixf\-g[6b71eN LȪQ$wR30)*pn?, ƇrJi&#YL1%Vk4:4\zˁN֎PD& '\Uz?]Xh%Yt;C &? ?<}I8"U?,qv}=od'qVrIa l=,!rR\cD'aK7,3teYqNB< 0l!^N`ia_[5` ¯ )%_8LL]:g=''L0) AB{BҶН_їrӊlas.^Iޭ3=^>#G}.2oɖ: [ۻScI頭- .9p0 Bq*zHG>ci@$S<~|T0Tu>`(v!v8հ}ZJO9Z;*ZNn2N~tKo*bO0r-kb;=_߯!= 6\rQw#40V}dwhNܝf_c\JxQ@4HQvi;JϨ(Lw9< 5eȢX /&NT"f-Y̲_$Y]adN%,żéԨr˂]龛+Y2=BW%7>.EވJv qG>iPsh^726r1-2d݂%sP}cH(b:îl+kmqfÝTuP!G+bZC1gm~J$9ѫdh4Co+I $ /ޕaNB{x jF_"a NB?4@RŚi+&isӧ.iTsګdIrTj䡬%֍3r$i܋a<yq!=$ ;,cw3&' {U$LuZQzi'>EN[p·cKS07)IEobMc(; +=AG q,)Bss("Nnzؓ"nD]t?̗O1 M4+Q`a8&ϼ_>fbAmV)Y=<߆B'S'u]onlK4GXr3&Ȫ!KuQO垗{I>^zBRseLG- $(EL2E[ªD~T6ubM/X0(bBL?q(.@ߕz#[xN˹| )SZim4?0c vM:vF;TVX54HxJrOr~(Nu5 ~X׮,/gQ /_]9Ԓ6ĞDu+x{{~ީPZ.A%`)Z̈Y4Ns2Sgh҂| +c~[KpC3 Uu'PKJ C-(x6F*·LaAsW&J?5]`;8v:0!菹 cحzu? _uv%. (䂗t^qZw8neaS%ܴ]"5qLsvfcˉΆaxTK8HfߜԫT`@bawu[܈# im>˿hXsg7r)b>"w)ŧ"e j::u=>?0- aMciRt45 tؔ[Q/3SinB6-:\ĢֱS>ǙN/LG kӺ+63zVJ-nMLEбYgj4zkd9=H :<]賊b T&W#X%baÅnQPVG9> 0Jue' ku*FQwF4q-P]UBĊkx gg(-QLYAq 6:Ҥ+"nn`Bc 8Kmхz_ͧrw2jowp&pɋ [B_ه)H; &ΑТwӝ 4M:xΉPSI:E<&쭜c7zǵ+)l Ao$?a!a3":cll*b"%;\^[:cuV3r W߷_| 5K&a<>(ha)ѯw+QNzxS R^Of 0ZgmeNpuAFh][4e|xֳijws?/P۩7Nm ҿJJW'dp'iLAA!y>_pGN *;"Dc eM 1/v"{^G?~QH gMfz{e Dejn?׋z!lD8I % BzZkI+7 ɈF *ec LpO'H?ӊעOKu'bk?F& C}2NqHo؜PaRHME=)~mRUtkm7¯ <251\ )Y]nP1$n&ڵ޶ϙoI!2 4RV|$3"eAG`HTԛ7@5TDJ{ZמD?UR9!b EֲWԀ<{v徶 kkT-Tӟ bvҠ؞tm V[5(#2m,ZrSn;M7t}/~0ظ[ ~.gʜOK7ExF}GI@t^*GKao-6ëro (Ō\X D* Ȥ?C>dkq tk1Kڊ+%/lZȋ'Nag'H]t\@@ G`4Dnp4~9b2W}.螫-nrQJ'(Ίx^)+nS ny/xupXÓNKYL^P5<+p/[0s^ruP4z)uV7ZI7-C%Gc…A$$!F087eG٠}jv=᪮HXJXD\ 2A29ճxa|D*aȶַ"Vgi'o̦Lk}HأtDl`/{zRӏMtc(<jz) sk>~"^ԘT+|\]wߌB@4!ih_ыDtTxșʞ6P!Ϩk1?{:{"]v7jXe?~<2I4J'L呇qou VZ@@.x2Y|#J˛?''+)75qTDWbI|1])gqZ$T>inɘ溺k+{ȶݜ$u6.7fzKL³Vp.zQOu5s &d2J~jF|MC|ّdJ'')h#HrGɋ NOLE;1e0<9ġ~'yc$Z/jMvO0z%)UF)jj]pF!1yPr)q)wDՍerEͯ0=N S^-vɥdKAm1x$A06%YAmb/(q`e!;KG׼ \1@/22 pEшFpg%'ж[Oag۹bAV'v zb|"X(E#5i.+NFzhxyFn}?oW{J^w-Q3^'(-&S:(١S/bcV|D(PpiJ"6BgMn} !L(rP}G;I^pG0{5_¥~ks}cbWΠ TKOLĖYT3 ˴/ .y(4QX/:]}ܵDغ?l ܅A#"M3„9J{\O_|\z>8_z[uJߛ1IKW2q`VzkG,`f^h\s}j@ M K{X+W{G{d=+LGA]; k/>kxJH]ǁ=/F5Fq ͡x 6+qע1Fp ݇}T{2hG.tOqHC:,tR猞~ ]`X2Q+=8!!"aS-6S5 6zw[`NLVT X9'SKآt1uI]ʾ9^m| 4rdtYi~S_{}q}t]W&-XcrV2H*b![Ubpo091t@lw u> ges JQw GSσ8@'I>WRCW$FыV%6:T$6Rq.uUƀ}@Wcayww'rkFf[t̾`l} %ݸ@}eQpf,&PLl/Z(/$2u\%[b`"DR_lΥ0h VS&7C''_/1 6<oYaD$otbkIe-:䑗}+VkS'͢xX/(7W? /tĝwI:Wq<=߿Rs[Baa ZCigA]Hƈ_mO+y .duiA4Ϋ*RbT0'⥮fC qE?5 ߝ+NfCf` re|QU]8]J̩Z `Z&fui& ,n澯Ep3@#u4`䵒tabS|Ng"0M҂< İrޫОv@>ķ< PUFtS||M os>m Ԍ<3jbJ4кS{bLdR jWk4z 0ۙ9["¶*91}[z:B,c#bcMd2ݲcv6CO!2Vf̲E"0}m 7ٸ{:3C+YRcJ!- ~ȧcq3BJuarMLҸ+9uͤ15{9Y/钯yϾn>:XƎT6#UgrIC#z3uX5?2py $1=?Ϭ1 S:4%AO5{A&OY ǡv3H猄611,h^r>hbN!NޏdkŨs 倱]dEB*֝NQah]*VXx%w} {&\žx!ۊ0a,!IAmyag@+dJTBs6{qafFhyٴf~=CM5쌝hD!T$w` uy(ڢԵLaP0q=(CPQ^pFHOWpH@39n(HL zrz]EB">CB 83R@;Wǜ ]VwشCd@-ݎ͉WI)E2N0JWhC=o[MLJO}qE$9i曚 |#26tx1hzoub-CaF/(þ* ddwuv鈚 co+tH)3jHUT_,PO {fB3SspUJhq<*7$g%DnMG6v^ұ5;$nO魧 ƽ%5]c&qNV^OcOؑzt7 D4`s8;ݨ?ܙEZ']qpMag. :'[]HQ>;Z_@>T1y_ nSGCJ[UӰ,B+BILj F;Ą;*:5WB$Eg}g[G`Z7*`vObjrzp}1ägvceY@2X(ƴF*CѿMb# ;9w`IUw[XͲ Q6ΩX B'7~꣍|nhc*<AYC oa4Pƥ8Py\S0Wh zrXXoֿVxh?J}ˠPчBya,ˆ83i`C}oЎLDZ֘-OVr,7+Ϯ1),:RVw> RY;¦a{[#V]Y2JhfwN]7pmG=ú\Jf<[[.kr F; 4*(7,_#ݡ{z+-E"?d;CD~L-H[nd[VT4]Zϗ7.!Ay YI $CB W`;"*.Ra*@¦rY\wifGj˹VCXM4\1:$3岕8?vL{E`}=n] 9[بw.|?B td< 1$46 ["cР!&M K-esUiGҎ痗0 TQtc~-@ZD%U-ke%8XҡBLt,7oYؠn>i2܇^Ԛ3Պ~7 4dY9Wg [CRj~boE0ZVZo?Sz=1M2.KO]$.`XVݗUﷂ )o5Xdal 9UZ2F/9Q"~)Øve)^VXpdJ;=cFҿg.;-߯FFȻr,e L%Z>ZezeP^M@OH =t;z]JX}i.eѯNio3*]ZfN[ NW]l""l*: .deA抦d+FI՜ G6X4+㝏E6/+ ekT`F7cz8*p Y{ԘqI9}1sJX^P'"F}(eO>=o;F[;Ö$jP8.ۙskp:@| dBG.%XUNH XJw6h} JglP_l-rSmx[rf ,zn_{"W|(m/,Aq*[AX2A , `l×+J}'Jեre)?Rٟt 1T>5ݩɨ ֿFT)K x<3!#}}c] 2t}FE摦ahPUvh܉G *MQ+V6" i#C$/ 禎 )u)2iԂYAXH_S ,V+`5vِa6IփѼ9I-U Q~։0 RїԴCz;Ξk}2TmE_'À6L*֖Dy^* /H e`4=i' ^%xB7߼ Kp0*YmwH@'36[WZ}ډ82!{Α^ $̷K5)/BX^<F R}܂A p!p !MȺ.)c?kF+YrFcӀ5$N,9,g!ETW0%|ю}nR<,ZɶUUDIco.8D4ի{{n*V XB39}s0B1ɺr.& Pu`)\  _b3X&3Ӻvv.\t w3$T&}4xH2vqge0bc44jF^,$H=0mrHĆ,h;cQgz⮌teFk LBխh(Ưd^U?Ca,#T,X<;ۭ0 ݐTfD= Ap)<&t]{9i] :%25I1ŊH /a]w$);*a')6Nm wEy:8U>\} #F|{QlnAtf G(96Ar{&5{U>kmCP#?.C*؞s³I3Ha{c'AKe<6W1awo?FVX4A~s^v[x}hUE;͏ϥحSS2E1%}xWp>ڮ5_Ț~_$NnIh("vpͅ$&']/^@j[ٮ[yEzI fLjrh?p 'lcXŸA0l3ӐuZ}y`l 8FJkzS[9@wL;~OK lqC }8~z~e^O$iдQ$NZYiKge&d="D`JH[}mOw [f4S&欉R o@ LdZ=c|'g4%**K?RZlMT]OFUeRMpLac(w%]{}pD^bF+k˹BC} Kf,o:AC2E5HW=Ws敥'P;O)Hp(+V'&s>|ے\Yߊ䳍Ë1iWpZ_)bj)Sz#/ _@[xXȏZFywDm0r9Չa_|hy}{"fҿy &}ud؍K)=9Dw2(P#>&oc:o2gOU;J`5Z I'?h5Qvl׉ xèG3?U?SקmÎW(FBL9T EuO*aР [lσ936Пc6cZ( <Oz~F^}w[ЭңSA1vYjL15Cak{(:@GCmw8o(u O8QnR\VϏVbZ5QO@]7jeb׵[H>"9B@N1jI@2θ?t'$[C jD;//<\,%Q!PAmAAs~pD[2J;hvvcw? yɦwG $.>G|&Y4vfhMw\ئ8FΩ9KyG,W9!RQIW 9|]`= #B| +[vS#=%/Mƴ:%|b/ ͓J}ޚVmOR܏@ǯ\"ngbsUN~))^\ߜ{`VYH_;R~=~'|Wo;[ޥ:),q i=fԎ4T&e:b8 ChoR+ԧXcUɎ\Pay3jr,Yrk̃ɥҘ*X p{XS H&xB:c Qr3AY.Ezltx 0zPu&6)_Qڍ3t׏-)XԀqf^g֥֠|XZ 3 6넺k,/qI f}dz=Ne[/ޮ|LC粚EoBS T)dLGAk5}ůI'Z9#kܯ1}~/6<0+p3c?OynV%$sppJ 6@ zsm ;bk锝 0NeLȳgР0?R TBU 9-h%EU GU, jY,%+$"''iN׊<HBf\E*_8Զ^EJJ>*x, $EIlSۙxZ.X/@ (դhb /q=lsnpu鮌 6Ko"s$B\?*iDn|"VLT >!,As~MHX'ɧ9X|qGqLU7\Ym3! h f灳Z5M}:}9i_x2SPN( A~I,}aa!0 >.bQj$MƆB|δK)v"dzǔ\Ř`FShlc>ny3b>4 Q1_=M?`q8YQLyFDZ"ZH#q'bn̟д=+4:pqQHcT͎6{fӒ!F~c?ApL,NdvflSѯA[ iIWnOq˫isOPPжRdWqmƂSIgB0IGΒ4WdB @s08 h+GL\ {V(Q [=ASG !D#z ?xϦE5v!R^`" z{x 'cp-i:9λn ՖEy۶+)g+oJ7#~%7F*` lldô"iƺYĂv^eJ$xAy":D!u}ϵ(7VIni7t c.Z>j+$/2;Z`h^7'P͗ _,PPK/}~=uhz"x{8f6NTkDrMaE[Ύ^rߜ^,z U3y;kVQ/r}hFM,%Hs\& dwOEFP+B%޼Bu 6Xr4&!J>&2zзw? 7Oٯ셢xRJ$Lh?y2)m|Izfa)S5T'C Pf&Vs?Ͻ3lאSnD:&_Zd?$?F$?o ih$Feȑsy3N, BYu_k)]wd>jߙ^dSF S+qMO+uhZsh;#2xG_TӈXҚb2ڧǴ&heoc[Tҿ[i$Tgq 9JIR]o=9ͥn>eXL \&٦=fPi+)yl+Ez4qն7r<{OGY~sBQzZ 'ȣDCz3ᱶdV]`CVOlgV_gr]ƓU>}=|@6slz *5A7dpcPAQ!qso7Xį(4W#x6=qfGjeZ'"U4VRiASsAR.7j}aVJ9m*;ē .@*CH/,M{t-,lt`q"i{S@^!OM[,᡾(mԊSF;gtϏ\yo&rX[>,l_ Tb8 `l?Io1rHw~z7Ґ?=`*±Ʉ@5ٕ3ltqANZ;hlRSoF6'?~ˊp+ vP#6C6Z]9~dm%;jkK'"g8'23s?iI#dٰ^@766%5rܘZfreށgWx"G?:ߚR-`|{~%^kݷ&)hl]Rv /x:z#:4aEۘRQS .~Ǣ?Q=t^9@Y . +V$"i}sW=q!!iU QYC9y 0zkUv#p6 [Mv B>K_bdA * vbC.i| @^ TXmzd*U}.}DŘŭ {_iqr$cqx?2?5[$ypaZ S8J4y5$`Jtl@K @ӞԱNW:x\ChJISrV=GKdhe_[⬲2O\HDu89'0c06wT|n^@;}5WȐ g<}ſ(GEv%8r(0yx} 6b1Z`-r`P|_w b>~@!tff]'fosT3>RaGx~K+ HDW2;OXCoj}}5"N6{zV:Ѱ{.DP0E ^M(Eq5T˟Ͷ/uEamu,ʱ׎4鰗;y5w{gM$ bROg1vPy4WŦA<_JGQ޷IK32E; zɸC. m~iP@޻>$TQ3 N 99rYox.]t%W)nlb p9hjBoI )oE: &]3"?iRMa7~./J ;b*=a}ɮ(\}?F|}) YP]rFn⹧}> -wn o-&|3Ԣq7tI7 J.{J߯g'>ϯ?hҪqRI&PDo."s氜fX4-f -FUذZ!+!mcJ_O(;}Pzv J&+Ѣ5U/%~-4`5QԤ GtGoV9^NQEKQJ&vVMߵ**ԥ3Äu@XpT9(]6OR7' š[hxwym0WS٘iΖK7vdQ?RG`G{9|TΡ K͑t/kʮo]0n Y`C:/ǎe"">y"4Of&Jv]_$Z% ”$ Vnؤf{U-Wyu_ WmP/9ڗOONUxMfd! tÃ#'-U.+v3?h6 (-V<"JxP"$ɓUa΃4an,dpOy⦾ARƼ]Åp0e039͆k 熡s#t^\~Y, c d-=NR}kwsgd#[~/y3^Ɔ'Q9@7Eg۶G''dj(Y+۳|>Kt9o$ kْ4.TTG 8ŨPjtT &{?0TPg~py"@ #R7qww5GUMާ} /g*iq b]UG">YjVFI]s;UI #pK\ !@LޝBљ)5~X9H6o?wcj\v nkhD>Qa^O6|ˉ1U%_4QUF:i2[>&'4JU|?R1dFe=U3_e`"JpSJD7#<KYNR٤.Pc ,jdo(>_ |4>G| <~9i෨Uůڿ8oGU t$^(3y%ouˑd`2'Z8i5q3\Mjރ4X0 臤񰹅4bQtD4j;>u׻!%cla1B&̹#׏M\k :_N@[go0#'@ӽ]rqxeM)R;V oWGgr/ D[Zi0Qs@z2y@v<2ɑ|F[WVoX_=pPSʬ,dxJ|W̬tQz+T%v NqTؒDCHi)a}tuw] r+];#{jϼdI#U[YǹI u8zkYٴRnQA%xK\YyOաFqh6ō {yM?Xl`$cK @Y]7?,a'r22 d{)Lg5N"Ff dRu@m,3ֹjb2B6NZV[CKvd`ҼF`u@"tX-zYRo|g䬀Vb4 يhѪƮd*pR`Zi}B1ȣz|0}M[@~*|ݰj ⭣g*D9϶z .gKm{)]-3͡ԶӸTS3xr: }&or]GvگSA5i 5Jzg97vGCEStNHr&i_5fjAJebZ|iUL#PPIMQUH,!2s~'|aJ(a t<l.T 5-m"XVeTcסp5^ =8ԭ/;ll j}5H7Z~mL3ZZHb݁akV{Bz-Ga!ymIYf cޚI|^ws5ZVD~џ5E?X h\Kl Uu&3}Q-8oEP5 9X}ۅ9q;BPGK;nI!܋ k`| X3QS̊tum`7UܨAA!#VD?hWȦK,T@Kp wX~?cpm*k,#MVݱP'VįA27Zlk8n죘+M_Kpa:FD-ۖ>i &Y}8'9J uMSFwy@̾N~=^kA1q=u/4Fk!2Q@."MxUh)Iq@(uV;F>EY?l& ,x-}32".$ִs [ j%jsKP*ähb߱g'\pX#lVMq%! S-[r6ס Sã6QCP} {4Ga~[{ϭ܏0\=8±߃e K sm:jBodmmuOAjKoEbZZ.~ğ{rɿyY=F ]dk j;v\bo[ ~ fofcS|f,/HpaK]Ҡ£V _4mI)yM4]@fu!QjiAgY}@b= K;]@}.gFFYs{ ʈh2J[HE/ /`ZXc\6 \fF5k0\i)5V;s^C׿~@CtŢwTaݔ@v]sv2w! s2.˘\:WU0_{V@y˱RUAϳa9\/林CpD"'`U\eV|'>Hd\r#trxe@G6oRRP! fA≁/Y/ ;`fT"?[h BSn2"}:Kbvˀ$cqMiq"U;[ ١_WA-gK;1Q:,'ZȍqjWMrG0N2ci8Yz]zw㭮@4zJl Z`zwOw*'2;w73I AɅp´ < L "* :0϶CfwhM]5қ@W>=7:!V;)IDpO(9>N1Z៕ná{Zk2 W.;`mXK xE Ur2HgށX=qvr6Ҟhl^ciڑVrb-Zb TNAYǜݤ4ˌ)ʺ(*0P rE+;0; -Tܥu7)!g-exd"?{PY]"9@Jъ 9Ѧjj?)1J4ǵ#G6! w-2b Uz<GF1'qmM06}u=(=Viҩ]Gm[JZA 07-_QsG,_B(sދ!$QLYi'CϮj5+R/<̈GejpG(TTWS&"-$E?nz 7gaïjTL"mqȻnKrscnykOp0$2G ArY!-Ò!@p8"cNL0:U Iw3⦚g*tM]OGRc{Ej'{"N__?g@,MHLlmFvHW@*?7K4C j\KҘJr0{u} J%ؽE [|Bp'.%C}Y#&Ppʤ4&^y Cȭrٸ19Of9Zy +ټ˒嬴gs@ҹ.ؼy3R4j B@82л>,Y8'z 9N:}C?(Bd'g3, 5ɟN8(oF3U7C$1q \_4djdGM&4 @ CtOvxڋAzyP,mJxGY$`4trxhj!iwqD:ir^ΠD ۏg2[լܦڙ2-߶wi%Bc)o\66I2kbAAf{h_U|`m'VbчU~[o"Q܂ ʥ!O-aBPpY%lD4?PPVŋ(c?zjEJ|ͪ/﩯ج- >R6u10/Zw}V́Q$iF.VzHoAIM]ҭƅ= p`|)GD6f:JZx|1㮮*r[hAy^+ܴ>|Y|&>GOϒ3YcD7-b堊]Y3EMqkӺQ fﭑB~˫]tFQ!wGu@X|&lji&56 4$'/_YHjΐqZm=Uue1L 'Ǐ 7?e^8Fwk&E:h*cDDu^;+d5 (imRX]*%13Nh < WhjAH/j)_94l(NEb#7K]5prRORo#z, ukh )[}_3ʕ߸&#ϐMDZL.'kW!(j]%ZQp'@ɕxC)a =6(w~R8 P_og;zy*h#zgV:TtgjD^yw{*09 d /«#ڿzWPô3_ -L^YHRPsɢ`0ffYwt [Y5|ihA@Pע]~{Q4jZW/~uNs6'Y€wD^w8_B1բ@M[˲mcY2<|+gZ|G[4hXхoC7n-ZX=A$ ]?FQdD}:ְу :JW>EIOl6D'm ߤ_G D,At@(xKK` Vu*ao1L:{rƼ-x)ڶտh{3CTD;~Bu`pMj2J/Ɓ(E~6QI肮=wCg ~^w$x`e>fTY%?q*Vħ륛xSDSK/$PD"שNNjTƮ0TH} `tOHN< Z8y >OwW@IoeZB#d乛R\DS j筻NOUń"/VsQFȮL C$oi9Y`]f/"S_]0^ht)CD[N߅SͿt~,0l2 EXAՃUm6PA29D.KfW/7؂U2xj<[]7 'OI\%mp-idq {/LOf~nno3sr_jW0Hk'Z8/6դC;\` vHu ` 0+a=\c'|rVݬ2ء˯S/Cm.c9Kn\h%31MS"Hj]!U {5y (=ozZN-/*-HqZu OP7yy/7D9U25+mAH˗ IU\v⤓=0$|1P~kj\6i1;'EL4#-ujUH5/ɴJC"9-:ٻM 2Pl¶q"˞}a/D+「aQǺQtQ7N".|7xok8<8%k/}Uq/}[I@dI u>`dK-йJ4f3k83B4^9Rvrsє2gFlupj\r∾`WZݦZ,Zt=/JTKQ:yiwcL`esjq52I N %}eI~zK@AKH ',P.w o[u4Zq9 ?gTX SK:9֣?C 9PaJdfy*!$`j X!x`\3â pIrk(mN6T^#:hqd'XgWҤ OIɈw8=qC3stG$&VEWĦ#<pjYKpҒ/xFPX> PDk6]i$ X$y<DG-HchB܍j!q*5H k}͟: oFKlQ'ۻHOĩhԘk,qȬ0mT00uZb={AHӧB`䂈 ЄY G,uspLRO46JIā'#ĕHa,CoYӒ\r˰AP<a/|6CL:ҹAj0p){r?' {yeZV <[-5z4HSx=ӠQMX=>kMs~֭go2xOģZ\Q?~K۶:Nn@DћtR,:RQ&ԭX( P ?IVMgTZ|^P%񚋆^iy~廂o:{uZ4D,Tw=r(弇)7=wzxa79SzLT3 4F v#,tܓ{a_*8BG}\mE"N8n-5M:aèsPsM(j!"(| `w([0MBь "0 D rES)f:Y@Xy!s0JgƇ &Vu:I \1K!{μaE_IIt)E~*RC~`rl1-ږrxu.mRrw[m_u*W ej&"S< 7kbS3|, !!zUu oڀtZ RV44gbG|,9ȴ? lP+ϡ1"[Syz=ȾM/уzSL\ٽ@⡶ؚIiehTT^}=>/g>5&C֘BQ&̔\xcMw2C?mxgײ (>v{8gpD!hˤ{3׹UCĻꕔlaMhLũ"[8WfȘ&&LX^V@ ;mx8,^ẑ]vdžFVC%E-QsˉDqQ}&DOs.$!l793[f#{ad b!![*iG1 kq%nȪv)/V:t@Y@X5mQF4 I543d%JGǻ?΢H okدOR4votTYE4$\JD^9uCt.JK. u'kSBY96+VVj1m]!Z_os뺌BNw総 -1)xl.rnU>"a% XrTâYFMʈLtYv :J$V QT6)m/5{PXaуMf5'䎰R־߲EH!8@@Ūx=KIGCQ U=7 տѽU/i7Zܭ/e09+2nэ,a(7F`T-,,H Kwx sÙMT 9㖧ߥ度"{,Ȍbh:v定 'beXHk jualc~-+[3X5wʳcIt'd*}rá}`68EbKHZ>MZ7#W KYśp9J++]jJ=nY( '(<ohH"֙<Œ]CjyUB ݅XTZǻ5q] d,ۺ(ۡ@ھtoЅǙmb $CL}|aaﹺϣ)?~Zn!)L3Ep#H@/ފtID%g)"3'Ţ@<۰]?&!B"LZGPE䩘iZiAPd*[;{k.+qy+}K]COC\M[[{hC̕zgyʩ=ĚT=xaۂHCT8dv>)px[]p6vyN^?~9Ӷlzl?3HnuQaiš ""⚒";O( ܺcrov&8]B)<\ f};7(C]d4m]FSV7rG ʍbF/0fU2\wdqoPHv X/v:wg57FPѹ$ vw9GěgdrIz.Ӎލģ3dS"q4C {6A_!r0LTog쉕];jSȧm5&u$#F|RB0GOl<$dxTUT.OJCzѯaR!Mxr:d_fOLWI);or~8HL:k,~;0W6L@ֿ%Z5eɢP%4i/ڒ"jY ?N_,L?99[Ke~G 7]$)OYgM<^:ˮIrGCeޕ 5;R |-Jof|R*WY+N5Vf^}l[VUcA}e؊-]GK1֤f,L%t!2Р 82!Rq"i&[!*uVȿN}4'mF+a_U4Z ?NJ!V'oH zT]/>"CP;kL~1z*4.)y^?J>u̟ P)G)X&z.k~2UuD%%qe?;r}ʁ{!?g7e(|%>[h1oQqM;It4ݻ UK_c;߿sogD)@'MD0QѺj97 Yl.)S֣J`[TkyX7eOo}*DT^H`_/_oHd<]Xᲈ%QUdm7$] xg7&vaR)[jV?Bc}i@JhQ޾n\/ѽL~#e_%KFq+>4Ŋ$q>K5^ odcdkdƕ巓;3?\F݌L%sx#_w}щ(dXfE#;ə;UL8[݄E#W$ОCXR%@$-cs訄 [O`D $J}Rk6jCM72 *j7zZtȳA]B9_($W>ԕA6 f Ų#WP%X3LeZ Zm@]aaϮhCNXC6˖}_DIs=~YٮW+F U総n19ôx v&=^*\t\E0tSԾБźk+ǩr+NI90(zu҂.3MҲKz_ؽĤx:Xu! 0Ý =7p+e73 dKpZ PXٓ#Prsf>/AX g rM^εS}sCwl~vJ(r[D7{1|kQBtq|(Xs5?Ou%QVO7?% ;u0R(e%W$Q3YKSetv;%ڿ :aҏip8҉1{m3oW ;@erCRe! DPISZieӹcEuZ]q?[|=~k<ch{ԕiȯ7&T6nqɒFh'C/*>$Re$ @A''SYVyMQtg onapWJOhD+'q8E`D]>g[X+/|w.d<8} 9QI'N\_H8&Ɇq!0?ɿxlǃqc*ո[CcB#a:1g#<7ɕT=Nf-w8f]<$%T#)۟$5~caJkf<3s9\,_/f*5:GhO)b3˽EY5.ݘqv?WCIJ'kE Kb#wV]vӫv*~}%c;E-: f?Z%fI$$oa 7X_*=C@vv>(n~::hmǒD>u3.MMW5[.XJ&ϐSF;k+1y~ k;0yCwEzaJqxn\> G5ȎtuQ% n+AYB8C0crΕ3@F$c+CW[,4m:6BV@[ (q(|ǣ3ـ.a^9܌5]^9/LbpqiN%H%gnj60٩Wٟ W,qGժ)ELƱgH$m鄄U.|%H0wk)?cv^D~uWE':>4Ne Q!RC#u+/yÇu"%2?t]|jZL;I8Tcu FJoT@ϟZh[ `t6=|*x0)Tg?+NÛpt0)-`+vbbct4m#{`,sþ:𽹸a|=`+ˑ>h< Vc.@yO#tߦ0}^&r6oz0kCt G &^bdY0aTsi->(>{QV"C[<"*Bm,ST,~Вrૣa0~X#X z< N Ѽ%3$g~ }<;Mhk .H5P4`w`M,V﷬E,X֊bY_xW+l ؋xɜJRUUQf^S4g#NZ.oF{CDh!k(κr`y`MaŊw[%L[uk$O*xBtg6IHO#i*9r !(*[7X.On8j]$d#퍠{L aEqء'rRq 1ZUfx3z7Yt:Sa.l7͕G{bX9zTc5P)~t IIDJp#vV y+s:ڳ i7`7-"3!Y\U#J̓jnzvUZxǕϼ7 (1oo"*^(˛$dι/08wot6+#Gob4՜eh|Jfo͓/56۟816S׿KBK*Oܖc(THRJ"4'yS:YL@ӐƐ \7dD54Y*hg4"2x6֗l*<]N}@{X4QD ^p~Goz߁u/A][IMcm8\1*לS4DC4HPx)TD:!<#h+k *,v)R%dP`D)!0Q$5Z 0e T,t vnlM3cK╜p;D S-ڞ]ޒFgAj8}Pr1JD5bƖجkԞ}P33|D8l$ T2MT\=I u8%pe.G h[aTPbUu%5,+v4/vȬ&yO0B72$\b'ѓb[^5)ޔ EhV[Pi J&At6ʫ e*n"q))2~O v-%%ۜ@61OD]8c@Уq5GZ()<$;!(|c9|x tz!)MI,tB)%b2{_b@ ~hhaqbx3=V`: IQ;L-;/woJ(aGT 1of*@SBu>W5{+_%&$ sWE>0WA'l\+0i=kYhֈ }ڄC[F vts~d")t.'x R9FZNj+ǷtR|eߨ$!+D0ysQcaѨ-C+w gjyAlU]X}vEA8O6l>ajE$J0>ڣ83VƇll3 ŵF1yzRKNE;֣ړm7U ØMdNPbwC,n?5U=lܕ^ 4j!;x}O3 U1ESVI*d m\^L8ϔ|Ŷ&_\ZQ& /ea qx; eN/cʥ7YMV^-X!">$tiڒ95Ȃd8@K*{b܃bC[d&pR_ߡpORx2,T8FhdA- 5 n~\ L" dڵKj& 0Ʈ6v^t?`WR81iЂrG;ekh=SL}5 Q͔U3!Swjʺ5ʎ[f+$ta|l:hxAHWNvWp~)e,Q<)WsU{(@y/nr7^ԙQ&{@/)XID e嘗9oy?%|Gҷuˏv&!|0—P6pN29֥şOV>8ʉ{- xH3kpϨC5(/ۮNyh r x t755o @-63!4Mn3jHL{+;&\ⴜx.K;1eM\ȖI;ٶqĭⳁO--ǖZ(Զ; !֛a`ӳ*[ jkv{Qq%_bǦ ͕3r{; ?T'ڑwM~/YETf-!y\e;'-uJ5 pHSJ",l}Kb=7v]Z[6hYlW A-=5&L71W QNCUKɆ~ C*޽l<9fY%rD|0vž$ a0tάuiBF}brjW6n vϤ{[30Xە>ŐO?'"(y|E^v/,9`Mx]5pj奉MC&=%{GQ/hYBp|&wF%2ak8i]p5%bO:l ֐mչl]j#$>I@MO0m~:wt&a1;Q55%fl+;Nm̵8Ҥ 1EfV6K/Rq Wp-U+g'1)C8D8b^̮]G.5Q"fڙ(Hל\Frt+EYQ_]LkUe #B@;Ycfp@rvgyt!H'Ȣ;Wa !|>v~AIx޿j;/AN<^u),Ny\AV;ss&3-/s*NWDD'{xӥ4;}g53J)Fʐ)37; /+< 5q2 VuOVӇp 3@Pz=d c `' K3άޅ*ž(é'^i4#eΘ;]X@ SE^.悋6U#83~2cli_ T-ܛ&|55#yi|φ#aӚ һ`7(xF xkvո;s7&3LR;/.P(F!3jC4x3yMgLU^$.,QSe+h9QayI@ʌ qݖ,̈'|\yj+:: &qX<Xpy/f!e:M;ӉЙio!"$S¤f :X R# Y(gk};m6'oZӃ G3 *[!gٻޘjخfNb6sT /eE㽲Hu3[ ICD8nYUES%;|* *hKaʱP 4ŖV17:/Nq美CZPMJgqQP'k/83;qݍ/rf7#_(z`ܲ.bd& L.- 9߮ c+?L3x7-l(wnu;|ǙN3cȗE\ 0{sW8XZʂLIǙeo1;t]HZu0EI{(MᔫƜ _-n( $WLS[k"'3bb-N .EcQ.l+>$`aeYI|ÑtW!8|Լ Yn ;W۾W_̈NJ(GȰ<%}-VbGe)-dqGS7(z_}u[ fxql a^"bns!Lce2Ul`^x1سzcp7#ͿϵŠ{B" R3Gmyи8r9VR:Ա2ƔI!5"!Mpge#?Sg O5жm<V!eE0:t)_=Ũ"LZ- z2;y~J^k4G/)xwk.z$8,s;GTK:~owkGdd:T\n[P| 7!x*_X9Xj"pI($o\yJ8=b7+feo**a50ᐧH%=A1?rTIPP.l~,]p0u=<4.P[^1ӆKzS}5zR]&ȟή$Z+$"k;.#I~Qs~ 0)? g $YX((Y9sqIO6r{: "&Rc%tV}|Zbql*S@gyFRؾ-rW:AAK3 {Y3kEh435Xycɰ,zqyģȩ'xz\",c Kd)'!|s/$l?ig6RxpΥwpGaF_H2CcHnDu&>%‹<NL1q(+߁<%ۍO]0 nc;t#o%ΐ?4:'A(NUWWsQ8L$5y w\bvNh>_|:r>w!](ҡHf_Fe&RaԕG{svSvh Ax$ls2m8mg?ˎFG΢~,Uge;__ 3* ~RB>@fJx0)n: P0@1]΋}6:۹`ei9̤l.h_pŝ)Y {Tی>swvVX0yހ˲CطxXEYd1["l7 4Wm.ua{W宼9KդԤKڊvm>LŒ V#pP~5ͼ]$-!4ABf"Mf{*75Oto3*>'L{~C #ͱطudכ6ީ^0xux) X%\rTME9mOԻx#^%,vv= q6uR@y4 3yq*f#L+kEҥi|y=vLћ9u?JL{(OG%ƇP G Y?Md/9X=WAf0Ovؓ;|$ҷ~wh:E{[z20CL6M>_#*G]HJ/Z=ǎzf(qK,fRJ ;Me%iix3m= 9d?'~֒K{co,m!c)ϱVy} Dk@糢,j ,p26cɍ}4#FZPg~wo:b4NXzbnw Z^j5v*,;ē:+M`g%uV,&wZ_#S\Kq @c}F*E tVӜ r$ZST#DDg kQ A2R"3a{b6AKaZ{-b&ZSa{o.;$ ܿEhmp|n|#:ӿ< v3p%_S=q-X9lVi4GHkJ# S3::56<"Z_?X{+E(6T^,t\ yN@r\[ 'bM[ Rd)"5Oตq1 XXysR7 _xҎ +VmSQyW;Y[JIlH\2?,:ȯIA?l8 T,HsYڌvy؀YBoW8?F(%2g%}cɱ$͗qj Ävy^BbIoCsbB0%>eN%NG%J88G*@I#> +;4{e? R濵̘O+rA f= ہݽ?)*4z 궟46bvF9Y$4Ɂm!wN,^׻}xEIY J:NC1ȅ8f )e)WRDl\㧖zW<20*ƒbXuB"ǹff7>QeNmS-;w ]~ %0k%YiV^GKX%l.aӨ=_|1}dވJT19Aox9{h0PT|[ sŭeo 61Ֆ` 2~w/ $A!mq'' W+@:r,>95-qII2 y@5Zp%FfħJ &F4 / vdY)+(KM[ M{ w)\񫬕8 e!fz+-k8wx@|Všٶ>YLDމa;=G[>B~SkoJ獂[}VɌ3D+;\eG]x]Gӟa>Íᨫk\aF‘{2 !x %]ī1·"sb.6O^QESHFr(c-.:(6|8is]\\!"I枅G^&#W:В5&Ġ|e`Iʢ(4p1L[K+k.he+u2%au;N9PZWG1M㹖*k/ՒPnXDT4xso YEiy1[tIyi)]S>>,!OGStn#*iA!K1[&E>)O@!`UT*.gTѮr$W{kt ) IGTv 鮕ktXb]_׉bWe[MHwUIXԹ֓iĨWEǮg$R  ΄ɞt`zw,a5} vƐI]Gam®I0ek7 @8KY+3;SJ[%1\td#Zg|Q{7@2dskBJf(J*$0 |+6 V{N?(e!0={Y_ ;n/wݛ{^2.F̣ЍhS/W)4Șup*6*I~>(.*Iw4(14)z!-Õe`9X;V}NEnj뙲~>&s,)M4gw" zi" Ubnln+[e8n!}=Puo[o,*W7wc!SIjctyTͣ1+S pa+V CV{n3U{ 8O=X0?ihLßE w3.Ŗwۖ)(]Z\OAu],JWZϭ!Ј=A}t J%ňv9-RnsYrMa;e|'G?{ϝg7ފAE7o5@[a]d %f Fм*M[6*k`,5fbuykSyaڎ\ ̬?Ӎ{Ś"lP/˞Kcƥ|4K&Wxq_^>W[+R)bjWw]lX&ABx'lמ$?l{t<5pjD!&nZt80fOO9lcn;$ul|gD _ݤpA<@9E=Un69l?#F|$Nt_Khў}Q=uҠ%: 8Ab lՆC-3vgp)'P?wAbO1 š8jQAG HϋF^g ͗)H@ 31^(QyTG<#x2Jpg~#&{/̰scpˇ[$;V}zv/+вmPd= d>XԚ׫:kSwt7+HHP>xAv ZZ1|G5ѿcHWBPiR4AuY^aytœ qmGa]RkyZ;"24k#bdI1@cSd !얥* l.Ub}Q<=(wB\ ,X$NW5zpr£H"} oUý%'T2'qK'ڿ5ILn'~C).<]ĤUn)xd*6Z} /~+F R' dIkA`o\kےDNh#1q]PVN̻ЭFiWd jP9FI'}GCnV< 2 ~v\gsd*uA"Ah!ZE~@Ӳ6&[y(RXꕹ&^N(IIT2ԍ$K6]@V'f&;6[_orNJpq[C#Q䟦T):2Lo CBx$GA>B먎C M6}ڠ )+m%E H A蠲7"Q莻@m+cOSf;9({ ͯoaP1(G|?WxK'm.qptP-'(!UϬ3-_ ޞL:pn Z}e xK>ÓyE; q[l k  $6='4n~2Ȧ}YCҕ{g­a#bP遏`GIMwjR>>eݩSTb-r"A`y jCmY ҜD+ D_)Z%bS E rf1-_}T4[TXa>sNz12_N[4cKħdٻ /s}RqZɪaƜJ 9UĽm;]›0WMdLJN TAx 89XPM5#xO;uc)BZ]괞%ܻCZ4t6:fa=*~(ua+cZj$"5y5A7d;QL]TorV Iw6<~Un".nbFSMJ"4>"&X̀&¬78Eߎ'^[~8 |2.P*EpcӝɮP^eV죇`oȊO/+,޾d%C8h=Boq >,#/x4 4gVr^D%(hUN*Efh^oS^?N~-@ 8gja*~{5Ի)NZ|5aX3pdϼifLm=ˈ+Xl` 3%ۉi+Qd7x_ \Vww< پ54C>|"oX0|Od=*Y6ğ0/Ÿe,P?j+vgދhWb] >-* F_<׎LNcvHb9F7}S$Va/j'QQZ~vSqgvO[ מ)a\ ڢTQ]vɔ~JH<.3Yh݄-p4:Zla+g%drAF؃5Q2U37bqݧ rx/*?NT=e'Qɲ'CAIfٿ8s,tirGkX@ɟzo,o;sԤP8P6PڳՔx N Egg~pKIߣ\1x0`~ wlX#dVeQ9w'yiS}2I׎"SgގKA^3Pu-۸"',}Ժ f߿^b#)cbulENRo~xx*q[ ` ŒH?'8D&Rqj{-?iN ^z]*qGZ?G)9`*SX\PKUDu#ISۃeThǸC.1CMn- #Fqa6`h8urdhVnzj:`rhL}ꏺ9"\y2yD.H$|a59V}O=\1Nd"%y |!l۲ G^9L#?0(M;uՠPtAsoBRU\n:{iuBBW JGskC'e=*I_ _Qa;jhNgfAfD|GCwTd˘4_nQ0c$a&;8g|V|;<`GURRI;>UQc6,4Y݂dCMT*$AJ vw_,aj]s-Ќ5ƛ|04)֍ aZ~ ]ntG_^#=wJtOpOgb[X)rX]&+LM“PD[{pД⮟[9TٹWG17Z!UGPPh ux)+@msϪ`ai2,âPT|P#@)^Òc,϶h|~<Pc߬&g1VUc&XoIN I.Y7s|ji` jЬNM쯷M? zM{M4;>9g*̊nx46X a a>n~;x$碕4-oh+^q1aLLKeg:- \^9۽0 Sֲ/w `cAC~`9d[WQ/6;5TFM0c8<*},T)Fѓz MX`, *6L2-S>tbe MZ;i&%\r04ƶ!yp-tf$UzE ڄi;Za"nm`\tEEp9 -B_01uHڥu=n.'VÊ59NS]x΂ۚ.D¹͋FǧW݀nL4.{ϴȎia@V pQ&}0F;xݘw]\T5= lo6=2+JA, 駱:LC.Rq|˪zU0-ū\)GnDV/p@Ȝ̸ˮw%ž&SO>*W7F䧱qr}on[@2[k'<xQӂѨ< i̢E}VG؄=*B*Ş"ebi鬰)#@J-G8țGV_KYҽ=c;Jn+7SEG?iI;_` ̽7^qWxt؎KTjM FFmLeqd!EV]1fނx]MM8@xM tj )_kAʱ5uKKe6e0d'85,ݼj†r 5$q$7JxQ1()t!`(ݦ"t^ҽrmc/AVEFb5CQ@\5N*ҏx1|8xb'z(lع$ceU ,%B”޺DJ[MR,+F!E0zRK\w!ߺ.bMwKb۽f1Za @6ෘX !cS6S _U}b9Q{UB?yP.zgfyd}.1v(t>jS5UMuZrYc/@'#%:/]A <8(2R!Ɂ^|ڋ e!K~mY4|>(Oc X=3͑@[c2U G9WEsmvM(3/Lr|mP/iWN|j:= ʁ\w1b2sMVf>21b6Qj7x(3g܁ XuqYy 2L$Y![ =ov'Y7~ !m"S|苉^E1 mP)qbd%>7,Co=!FY0H %/=RxfQ@X#NtK,+:?R$gn+ c;{Vs<†/MQJuH 0cǕM:H'n Ԑ"y&nˮ,p0F[\@dN ca+]((m.hRGIm8uh<`UdG/}g晇C(@, tJLv'<`] B6zBnK_.m tSKQ;pP a"q񝷅-!]W8{B4xRc XIܞlM! V{F}+JVD5+d7@%7<Ѻ{Y~lh4Q^Qbx(XX_t 4FV|lo3k8e} =nfj5_ڪ:|BD4K0yBrOvU)XQ^R;Y/e̳Yz2ބH%zDۣjn~ϑݽ=ux>mHLxq-~hǣ_L#^( }#DFPBGA0wBqFXLc⒭^+ed+rwR;~]ګo6b-`88;sR*]f8\M5ə^qV ^t]`Z^Weɶ@>Ys)4&">F1.K7(yu=XȹΊhh;<׫z[j@Ji|-K:V/Rzd,zdRެ4 S|OF4}&~~ `: l*P5ղVp`fB۬FkSL4I&2ddm Z|vY}+&Y,W!E U-gKf9hC_No- IbfMMcTh@QnCUKB릦Ŗ^Uy#n7eZc 5#ꯀ1Ky"c+:OIXFi2ufDCw"IܒEB *<@cٍkյ/k{7aSDK@ah"4< /eaF?FhyΑ`c[w=Wcø m( E}w=5V@NHwXkU;1ɯ$%E .rq`4Q<ы_j}Ξqlm&童F^ka2rAW9ZlVn}ZU|pHiCvG2[^-EvEH$rEէ=f?gLc0nHsNS0yή1GނXfs#F]iu/V^fzWxE L;l2Afv0p!i*F4 `Qe*{^=pe/` N㍢mEu15vj3H.9 ϥP.H$92z/UQ۹p!$ntKBR7Z"``U|l4NJf H&x?O(x< SR썰x m<+xFMj7j8][K“{xG^2F"8I 0z.IQO)`'QuI E/> "[c#Ո 2}}q;ȑQT!R{!X-4!o VLt'5l\j[cjb1 G s=Ác\a8f۲ӘOq ߯ȥ22&#2ZHiaz NkvKۥG6[3Wjho:9"Mu}dQ7 Pa ̚ԕ^\KX~^ ˗f!8th:TΎgbR4-U d.Ǒ bQ躋 tL޿s8.Y(mĭhJ%M3C(~\4J5s-AW*+鑽fGqHN >,3(_uE ow]Lb|;"I>vj_Ad%YA_<&Gv0@oBZ7'rՊJ>dzŦh )~||ߌYGԗX8Q%@_BfPO'd`x t"-ڴZQG"{]lMq1_v*r"=rk ݩw;ϰ_x8HV(<VԒ)Sێv{wr0`sz|EHͷ#n'I0gzIaI'- ;ݰsTs>Eh+~X 4WL e ؎ǿN=TYY3ԧ,CYN9sD |T7DJ&bƋ7] W$Ԛu.\DT+tsQƖyK JI2Ge j!:$)1Vlwtn55* jtSZZZN93$T)'q/hۉ16"w2K.%-mVb/v'm f :UHDg\fS#/g&a >bn+ 眈0oxֱ^%T0μrJr -ߴ lAT$#/yLGT*TWk҄R"qI[axKuS ZAO6}eOwHX~y9:GWN$Y3J;Vb J!/jQf"jyVLۄclN&\$H{d{q{ȁJCůr.+ =m >f~~ůf2uj aڙO =s%9i{>HE `>[]pnJYѾa$c  i )>?o .GVQL1S"X[,jGq\ ZvN{X\2 qZ.rM.ɏ;TTPM:niz4t\e"^kBj^)c/kQ-Zȃteedғ $N!s:Da8yc)&I;'xbDl醹=T[cIl\1G@ׯ O V@h~լ}0LK9n z?h\rcR #A,N8mC dWXIڔ:n A @[Buw&dr^ocr]mY8Y Qo]5:9{8%!o3ZaQJrN9-v&*(J , u;I#f Ƈ4Dž LJMw^p@B_0h!YYr^`O[\L#ar4jm^gZMNyԟ\QElF>Ӯ *ldhÓǏ6V͘H),1~_J"99ԮgnbΪ2, /b@5~D(950 .A}'΋ރpK|`Y2\U!£1|+[#/0}=) BȂ@oA/REs9Y#9zVZEz69ei}oI\[}&ݫXů2d-pqeR$1Iϋfk!Hv6Uq&N,VG~!& }^CaqٲETZ}"h o DߊDoIJܶLY osoC H`i|͘Q*sH:x*KgGbEsnEd& 2V)6TKEWl,`n,*X&.0HEoPjU몊h*ZSp-yr@NRatUnQ^h6kߍ/n+"@"VyH-\m\8/ɇ]ԟN6_.JX@AlRڐ% \oK\'CX%y\]-z|LT殚tv@|rxn 1:֤ 1}kْ9蝁Q2 usyF u ZQ8^c +utIAŃ0/R/:k{z4+*ai4R3Ri jw%_imǟVJ,2a\I{2J@{6$4L'>A$FK^>ttAHn",`{#,!3I-L\bɮ58ٶreϯ1.E# t=˔t en\Ӭ6~қܓEډT;fMi O$ m%92 1=.aizD'Wp^ޡc~7=U@R 2'qFhHieUF<L /#GM$*wRAUNU?OFN|`%a3/ERÒhl fQLCŁ s6uT2[$xmլlalFm ,L+9|!E,ధ*_RU40\O?~.|d-6j"@L$b(vm/Z!SCőB =v:InC5p˧y*y+Idj^lUeyvee+GQJǚOD*yb1y2ɘǪѐ EFBEsx3G7{!09.xQuZ& W>m8Ke=7-S }͕Jӿ]yQص3Y.! jlNג 2A4ӶaYMʋIgD[.8]@''EnIO3mhhW9N5ܢ6~ <9PQ࣠(oyy`"><~@P=(g o ׳gтҀn].b{@QgtW&夁AtW ţn\<DUm/$SJ\`Q# ec%TtWVdSɊl8sByJO(23 0aT%BL( WǓt , U-y,4>*8-Q(;'b>9f@v(ײOԃ ԋxvb?ذ'6a5: 7XZڣ8yimhU>L :?@akմC*`ԞCGwJz+:y9Y,ׄ })跈? $j'g CO%7>˩ )MΑL^• V@jXI37DEpJ^[tĜYV-Jeù`vXJ;=:w"ɀAgAΛ*%v_@]j"(Z3;WCs!2T8D΂L8Q?6<@kL]}BSv(՜MQMT[1dXK8v#{촳OdoO_D':SoᒯX(YľkC\ ,Ą/y7cwX( *NO5)}$T$l"BX鯞݁Bp&5q)gN N^;씃1#5Z2+2g> {"^JGU簨 X0֙n vS2=Io0"0lbw>#^Cu.F/rEgދ4uX7> vF=ʂ"CYD:TYo]~xزwo,™ty<0) r͍ozW+bae)m*PQ+RqG&4Zl!_HR R̎C'j&439{xdEXfr4 Y)ᚲD+y9^m4ӗ1ʭǐz~d~UwBfvZ|~%hy Ma[rY^5q4f6~"+ p˄'y|jbkir+=ÑXu%*㛢DxWCf OA#DY?WH2E.?Z"\,o0f1{޽2Tޞ)v}xx{,ܮ8LD }GHȓs jީKt;nyQEcB%F\W$*n-RAiY>i=Т@k1 ;8c{=3^(TJ#|ev%A k (ucIt6)?eʶ0P.l|oGSӞ&HznTu 7Ba5 !;w{3g.󻙥ePN4|q E7}KELZvLYyZL/˲{V i!p LcY?4Y/Ef0wx<r ߯b)õ(7 }J'F2OV3Db=1CFep03g)hojc.fbh iIV[X$뾑K[L%.=h|HL{j8'h[|&H:*}Kj0wl*jI{^{{?'w˃Y-6S`?ekU+R"mLG8hx(6eE/T~+E9;VuK+EF#|} k5V7"I Uagg#/VՊg}1Ƭ.ï`&t-])p ?p&aUiHN=dn3IΐZ/|N9C8 j*OM}fgJ_ݷF"dK5=AG3楊cL_f:8})IHS GŽj$Ǫ̷0zzТo=헯sUe4+|".e_n`~@> ~#uTltcK?c6^\OyߑN3XF^f[߈Q]$n禈Hu4Ag/a/trHdG~SZ.T?͏'~V񒌲U^.<BWzbC&Q ਴YgC8 =|/O94vl҈?46Yz@,j"ZyX&/=j ĭh3?&UC$G7pdAz;CMj⋐"^n7 C3$iJ`N,>MK-z~WOR'ɚrV{ kDqc)``A"~.1Rq.;_*?@2>]V- ګS+. YƩ 相W6(A4 n TS8kkyFgJ+;ՙ[=丄$BCkPKXg*.^Tf{XˎN}aFzAߨKK.QOR 40ZL(`2-VJ\N Dkv.o/?\)hۓ)~fa-5,x&,_G)=NQjMK|靄lu-זx.~Rʹ|^h R܀7%5wl^a (c3E9[ é!GϛV= ә5D6^0,fED"(ɱ$J A_`]کwAO'm`}?u%qGn0:_H72#"kR@!>cC%j1!m$Vh} DMδU aN"]4&?dt':LCYzjt5xc Zn+R';k<*(·PW&=BDm9{z2Z}~[xrdi .Ӿ\q%2W”gKXPc !jH 6Uz[)?1k<.m\aG9 aWg5OhٵV[qsS]n9]Zf^xvL8 eHrsƎ:rBS#zsQ%.OJPn>7Ei|GGc0TS圄i:g^' r 2^9:02j rn c7L; zɰ?K#f| [0N$rw).h8&bO]K쯡񈣑_eBB8U~=ۦ2Cu ||C髅gмŃr=}][!p,).2}8/8t.]LE^QC6\ {םOJ!Hܦ\-M8 TڡM"޶'{r7mKi@醤烻X(aUv|b߅F7. `4no*~DŽVa߀ ] #l$9{-SjZQdHHۯbP ѳ ΑEM{G\xL~"ΐ*>DNUM]r0`Rq.DOyɏIa֌Q&~K Yט)ruf€ͮZU[-C`.[8w7=XLHʴKcOg^ÑlV~U,S^\b <=|o 8rx}M37; xђT_P%T04 `CoƒP 7t6 Tw^e8W6"I _^nD9ymKgı1U\`t4V$G757\S&-%@Fh^&[~ʌvnkGp!2o*z,$[J\s舫OB*UrĖg.,I8C\ 3#^+".tZslkۡ<[CKґ 5K脼!{4@?xߦ K},b0oٔRPY>EL B9nh+LFѱuLEf['\b՝Kvs,a̜\9Hŋɺm> & @\Vf//Em:n Bm3#baYef/iGVID2AJFgsl0ˢYγy!ٍ"ov[tIRr&.y:ОuA! E<Ԟ~-GА l sm|vNSq¦66(`U5TS~KTԷ[M\g𲲏W4Oi-w>-fqKe;FgdGsJK܁(OÖ`I?`UЂOɁiIv>-˯6v56qPV>2 Y3ը.P\d,8kda 1qi-u/!P0R&qĖEo*k%}A;Koݨ6" Xu\8jdȧX)=G J'lr?;shoJ'qyU?V k\HύG^S oC_\.i+P+8ܝ2! CoCd!&*KU~=Q?DQC'6Zk:+kDV)/vT++^抽c?#dYhuPS,ZE3Iyv3؅mLF@LR-ͮ4Dy(#-҄j Z"ke-LH,:l ~޲4&h=כTķr4*N JiwyT! -gp UYt*5dVJU璦CIF J/0sY%M;W&YlUo>cDE d 8iKNV#*Ɔߦ>x ^EP؆%^q +ٞh'ͳd^fqJ\%ɖcŹTG3v:Ǘ"DBjmk܏^E:W.Qp'ea П9޸d2V4qT$(H8ǽkjCeCAQwy3z?:RѼp7 KnPd ȃp51q)r*OY Tg5Lιyqzܨ kX೜Ya:% Kt#ܫIW"L?yN/gb6#A"S9UBwȋzgp)0<$Ӷ2\KU?!f0;v|azp CazmŲ % 1 TYDv zKO8EO/Uwj՟>7>G?l#X%mV-ZH>+xVvq:kH֛]U_kaq=S8311++v|7ڢen@/"x/-DҚ^i'@2dطM+C|"̹x=%Z;JZ!؊uʶaԲUGZ"@Ϧ}]9hwjJ f {(ZO4]!BrcyA!M.F&V,0&YjyQWPC [S}4(nO׷[u[D%rZ<4H'@#p[> > )o̲FGzcD<%tY J&tC^yמL=6g/LZZG=SNCYj[ p*fln$.R{HEC)WMT2TܛCRe=Mwy ް6f-f3Hz1+U4SY)T˃QcթuTpG+tZjEzi'ֳu2&;4= q1?d:B!< ; B:܈V(14Y o=4l7z<'H쑝B)[o'* :<Ctb$ss/ܨ灃 kfI>J qv_1K|V)=P1px 8QN&.=n#/vE=REdw+jʷ{iAD)ykz"NCl+naw$W=4 iY`XT ?.+w:dd1tll9&(CE;–γ ',c%ٱύ@vcV`:1 _ޣv%ڀt-O0]ᥭӜD+5[2slD#LDRNp kGJ}dU3~z?~BD-]Q S6BeP9?|QĢ..]fOBv jt%^By*sյ_7m-#ɞzRSeyblď!XX^CV%M^sϲ&ʧ4JdGcҝ`LFTjE {WYr 6t! k&'Lԭ3P@7NXp5%\H5`"ϕbE)J>IuT + Uie# Ajp/,~_TQ0;> |MUfʦyR[⋣4,nyCjٺ%EA'`oNBzf+t榙'-),Emi@ jJX }yBKLUgk]n}"sENMtO|._6#r9A`*\!n<8􇗮wɤ(/o-Pm)K-]G-#{~ ;^иsFG< Gco{Sr%,FMf\ ?fG9>dTYs?v,g=q:} 9d1txIdꕱ_uNיLJ oM 2V{|}:r?6,R eCo#ǰIGv:H9.,;fa"j*L5ͮH Ƌgߍxej xSe _Wp6 ։M >|Z/H%W '7*'6Zrz cMC6 h?ʽIϦn~-t+ʶgx| ejB.F[B3+ `*un7S?eCi] g#TP%n ժbcIgu{sR]K`vm͋*FDUE}v$ seUlG7@W#@.޹b;PŐߢF&~[gA7Xz[E&w@oPȔHTL_o9 B`E9ۇ<{nat1A?}gDb}F^Y-95ќ8hmS?z}2VXNCv_O8wՆFҔĹo]ķ)\,/ZvRCݝn.ˌOEǡj|.T7\EA, :zaHXh,H3'}YSjAyR}]=*@$BBD\;y6V] F6 GN67bK)+y m64o;d.XA5pu4E6$W|RNP*vwv1Vq-\1u cƆz{]G/Jky9chK gD;P gN/K3θMͯ́-BfeMa7 nq("iL"mD9W M?B̦:&;s@\aTyn4&og2npkޙSL%NacKR3.֓bюli|̳<"%]6!cN< ~)eKU{02.Z\ _7uG^i ;jM7 p妻ڸ̄75 N*E=&r)!|* fx2t;Ԇ_Vm y53߂RG,Dc mpW wۼ h"yH17@OM2Zu$PBK7~4Q|h=$98T< ]9&#%^e|#Dѝuɇ]3~qT7)φ7фc'~  {slY yDz24>2uB!Jg\i\nv Ὦ%q}ha<%)n &*9oH:K,n>;bZd;:_KLԀ5ʹ@1:NFQV%I#]IUK6`b>k&d P]qDIAz G?ThRg"ѧ".k=Ӿ@| *Wl,vVhKo6QQYvtAkGg28^3CO$`>_9,Snj<39DNN5xXɘ$ o:|:<17SL刹Sh; KG x3cC[I7jNACcS"_1XV926l@=gV$(8M=A7>Ӹo'ءwtՅO i^O`\@()v$?_D|O싗~(,v;(”$JHJ%YV ,ڴ̅lX sd_]//zp>ʌJnEOD&\0S_lTN9O⦖K/@aQ 0+FϟpԀ^+MqIW1 |V%ӄ%K raHO!eZEK?I ~.O}oAٸ@058‘yz$JKkslRaz~i  347d+<^7JpuFmfn)OS#ti:Ty2?;)Kc$o ۓ+/ 1oƝwc{]5P H$֊p [\bb+cVWCd$GR-;k^Rd`mxh_]]aƢU;1 Y: Iz6ostk᪱?Q4FX٘(O0w Of$LAگp+6n{ ?)E e̼ V+FWSS,FuRU91+ǻ%IHEX*^H*=Uf"?~Mԁ RYxCFhFjQJ7]Lc>#[{9K dk1a@*wUdKyd]^`AUUlrQ~^Ho!i>1[Ӧ $kV02ByX\/˩,+٣S)73..$1 d3@mS)ok`&"#G|'e L3'cߡW)hjr-1icn dR8-cGsPt@b4POVZ_uE <;?ro狮QW;c~ۙ]P(#AvXYW/\B=`ev"`94#ܚ4͚ (/izezkei\+Z?2ܖq>E;%}U3ܺLcI)>>6]+rv">|u!O_іDO͓ =rܐ:w9ft+r-5~uZbl|<P/RX}OD|5\Y @Wz$Z2/Ibnxԧl#;+|! 0wσe WD^4 ;['p~)lm#! ^ /شLR c2fH 2Iπui^l>( Na{0(f"YM[ m,r| r'g:s^31i+# ,zx2 7si‰!2zrNwuC2۱ǚSjIK`ٳC&Lr Rp0M_NTz+sfwjfSFyᠾ ) lkZh-uu止\BUd>(>uȿ$Ʉ"~a⤐T{Oc1A0o/ep>D^rssf_U_y A>yU5  ?4[?F𡃡o 6&< )rn~9^C#=ָQK(6Ymdl7o|+A]Rv:Gń~vb~J%͞@FN5Zn5A3 m9nB=Lzz7̅[\bno8/}䖚d; = 1$ #5Xfgub+hVf,5,gO:E킫]D[FJQޟ2E#onڌvA26u Y|#z=쓛dPx_x a l+pwx, a :pX}w'v*]ޏN;5zWkxxa:@v}& "-`v F1 y'P4 I``H.ކ3Q*Ow; 7#q\^yffݝWvl >] y/R-7}gJ"6|)9_VBVS L1Nܣ1JΎgd';zxعJ6t(XA8%* TuJsO6_Th@ÈU ]eKL_2 u"T;IVL~{ĝ~ ʠ[4 mlJ@Z1IH֚ʴ^Z[=d YΛT1%ju1G`Ur'6p7#K@#te}2D7%Go9^ y%*缹hE߶:/\ fdTEi]j8̷Tg[t`t˨g@GeJ_i(J$ZyBյ)E ?!3iD+1jvŏ9)/XD1+!#~<^]||e aI ]`9*i~ƫ'Ѣh'2 R>!(P&`_S7,;^ s[#^9eꕴݍʲR$IġlIe\=هk=')Mم'A0]m&RE:;pMbZ޸_&w3egncӾѳOIK:f}*0goKKkdn O׽䭣ZOQP>6!~ױ(^S9d\q'oSE–8}1f[b%N;iEmfSKBBz L~4ص'OAّ OL8F?vVNp{v(eoUD>,(iQ)CõIx=5#< hén'mKGAa/qk3wXĜ\dɹ_j]*V4HkK""X̝'O*@_/7iiEBA?X1F3#,?"l椴JUHgzkOO2ph*L8?ma *7dA ʓ(ܝQ|S;NiNrFFBVDT>Io7,MVXĺHcK&tZ Q OJ+Ă`҈Q Dz^Cyl#aTh#gk?ki z"yh δjFca,}0Q_oW6߬Ft4B+?*ZY]Ǩ:`0:'8k<S$Ty+ ۜCewZLɯx?֙|2n iT\1/$ЉQ8 emZa. f|5bTvJܰ,1XA!.êNa5Ac-,)h`E\~R oncւj\14[B(0XJWQR_[U)5a+3wp:󥉎@RwimhYz?Y.";[;a̜q 3bf3fBOdm.T>.9 IԵbXdZq,%Դ! /kH 0G~u.>7rX":U L&twkR3< R;PZOglEa'лXC(oe>sfvX-Q}#.Y I2i,g#dOO[ũ(V>*C Q5WRM郗.455]ꉪ&؊07kJC쇫igUoފ!|Rg16gE^_Cw3S-JX:8$BX*R?]מZ鬒rJzǔ~Q\ F9nn(Zx ւA G8Jl.W9*E ?dB72Ն!Q(gkq}m")'huCDXn()r$[r}>oUaJ4>Q0dTCvD/2r4P]rۼ@w|p(FF ߟ>?NtLNpa(ɿER 4׊ 4.kJP  6,#ZBD3t߸@3B+҆Xw nIPv ؚm.yG- [+|~gKiKd K:cECta@M&,T WH`Ē p zZ{ĈtEӊJVHu2\#j%ܘ<  fSp*WJx>PX[L$̸ Y#uzC]x|mԝЊ Vz,`r_,a!BCϖ8'~I) -Htf@M@%8Ac-x$s2>/Lq»K ]W$Ѡcشy{1?OU/au>.%5n&SW1<V'X"~ ɬwb= UD!$TxYBdx}:@#Qú,Z' S/Wjd"0]|˴pH(7HÍ3濥-Y共NQ98ҭ]8A3v;.ذl9!F?3l),׃)Ou#_Yk܏[BbvX@^P5xl{UɽpkZ-1,yX$?Buc~ "lMQ3$'80v-G*^-fqGbF&G2e8ɧhކMD E€x~S/;ؑ`t%M']= z6P9A`yC'Y~٣v6A$S:`&#%PƳF eq0Bih' :6JU6ilYhlP<ܰ : 3k* ai0To|^[&䅜ւ5؎Tjm`hiJJyr~BvI#or_m1oM=_G9H{T_ecj&Ѳ):K}L8eoUl#ЎӚ7 bA S2 i0wsɭ|4s3ˊ߶n4Yy啥 9 q2VA晶ڭlC( 5n[r}efbDs3ݎ4 Q{@zEpb#.]$?Qp+ /9RrkR"is: Ǡ=& Cמ}M6+X;d\$冓qB=C6:kXpB=D Rϑs n>Ꮱ.2z^4i [ hsd3PJg {š^tۿ렌‰uKhN(r]UnqR/_+jBeEWv.eU=`!Ltzt{-̩E.!w?(LTTe4ePA5G 0}V'oy8\P1Ž$fqsRNAs6}~QmÌ& mVj +ڇ?xZɠY,2+~5R6N:zs:)Y?C jwuon\+]ղڦkbtTsCl~gt#ZB[m3Օ"ڱO798tyھYgo;#'ȿ{LkP>xDA:=-޾ n~E+zoX j`yexRè5i3`Dg{t 1XSGeWܣ-4gzϒ]ۭ|^ v XfyFOd;-9!C$%8 XI@H~ҎF5 Iq Zzt#:n),qtJIcWFɐ#|u{K Qp<7ƿah$ȑ5!wk g) = M14OH,"kֿ9+d y)4(Ҿ }u \UUЬuk´Ywk 2" pa+u K1[D'FvaoCÂ#r=Kaiӭ" ]0HVefbca-g1DL Ϧfܷ_~[ܾ Fu꟬ke wXq́,D' 3v ;@ߔEqFRf#\t9#ۉB#OhR\\St*ߦ5mR;5W'/:ŴOhIdAoT1x8pI5‰VhI"2d?X”=ag6f-Tl-'QfZ̦rWePThdZULT!aF/[87%yCwSb3^ԛD*}]=j:dCA l5i|ZJ eEeH*cjEi_+= {\*=@I72gs[1jyGO @7_/@WampF᧒"%cadT$>քRV{BGVU.powt#MY#i= @. H+hl"2h$AD3Ss\c=.uV%,n1yTKnWq(&4>oDѴN2ro]rBH-ie)awQ02O`/cq\= ]P [3 G*$\)[ D]iX6i3K%$:NHV}, w|_k[<$ϬƭHrg=rTnCUY[rQ92CZf_38V D^TiEaT쵸rѓ&iGW[U?sWՓ\( iA#oO l EojBLmHM%GMO.j5! },<: 뵒H n ID;] FYz=5pWY#Iυ56 R3g+[or-9@R!Wܣ @ do]E}3w_yYgSg/tʲPgHm@ >A!rpu ȼj@Đ>p<!s`s8$/Iݢ M:h3 /+ʹ+ 1_!3A<GBʊϣcÆ%n7-oZ-' S[n1<<  m:LC p_݌p,b;m&-}ZvMK-rku?u*u[foHQÿT:* Ļ ӖOKTg=<]*A;& :vo>2 Ts*;6ŏ;J'sUj2迶|4E\ aO )Ht:O 2mmy!ž-Fݷ|;c7-4t A=gܹ3Л.W1>mBO9?HGqmN[BUY eߔ]#"Nc`_^Ѫђ?@:](Q?]HdpȒk%Vh{NJ}SVZ|oL,6,Fm`͘U;OGPKm(u4_^ɰJ̙/#$pXAY}͜!r#IC-ya.L;Z|sV3ÕTLFA 6 |,I(8"\,&m>t,zȞʁyQ6ɍkdx3`"G-YV rKdo+ ҄Tg ?[鹔=}u 9)CgodsA̓_Ug}[*FW1D$9'ESO94eC"R*SopAe+(WJrs r&bg;O-2zx#urQ-K+'VYIBw{L_$$/n.sW4E ӏ[[ ^@L!#ַ[s9NaȪ5pѤɾj%߆cmh" Ue?XEKmk>BRQOטNtAw_X! b nAчvwȐQ\J1o'+_TK,44O~B%D.ρ)̶du~ϙprxs@7w5sw>: T;5ΌHؾ!^rpr#-`~]vr wuS0:HFiWBn)jGd4MmB,JXqڝfubTR/>Eo9?QqϹQwcmDs_BRܐ_|-A%xr3ǴŹ3CbmdK`}U%}@vnNu$m쩄2 RNsL-̬Y.s+ Ś[^KA)S7KRm@ս2mu38=w:Pss.!`$:rM2r?ꍧgt/+-$56gҾP>Ҍ |ǧD$VgkS|#}e(h%ܥ5AZ[?U] )ٶXޕ[2DtVGշ}*PF`S )5U):oVk7ǨuC8$ c{GU0 mc/Gd(-4x/fwcqqO8yώv)DMλ1הE,]'J?VZůQLr+4>%| ?J 0 |M^žy(߸8M]9ݣv KtAirix&DjW<ib3>}E|Et";V*# @ܦǟon^<|fUΡ؁//,ӔWO@A{zn:i?j'1i>]W/Չ8]|ӮʓtI϶/ɡ' '"ߌFȗoIp>pmDU= Xw(3 ܧS%}c'ǡzHWCsR[d+܃~x G?= Nig{Gnm k~؞(PriIɗ*rsRݑ'Ȣ!; WS&7(zEl;'o˺I_=)vs|ժ|Ovy 5zu 6P{ ͭKu-B;#ʼn*(z_H~8_/ɰ,k\t&HnM);yAyo@!ŧt{8!w[uNBv2umQ! ud"~<=΂`-Ip7˿MQ}}19o}`.uIi=ݫZ,5'|o R-_w.E K/K ~߸X\M/ 7zQ?[Ce@6|v'47Y*%p%ON?mI2AGH]k2^}m%۸QuA[q#eݛ ׾^suxE{ ª'?UEQ5zyu륑pO*fCn l}`l3h S12!D׿@ Թ#u.℞Mnfbz xa{~7^?G=o\@gd&'4T\`INU" O:D%7?tBLrX nߑvx>=3B/ݷ[gJjǭ{Oj\r{BCi TtP Y\7qV*6Hmla_mKkWǔl!_H>&脪doqLubQAg1Z*FN#R"Zyx2[2KF%L\*e=դ<@Oe40 K:nDGEg6`&cEͤl ~CG@` 1D#G7f>,Q[O$ {൜!2?ZUG\lo{(ؐbx:H {[iL3Mrnn[>NwvW, _)s~UĬPzS,O%H"ݾ:{zs֥0IEI: ;u_gn2R,]Q"Z4 [4??39q2F`7?S&LYTD쭇@\41o*d7Z8 Vh?4:3Zch{,hj8;CJ1QrLaA~>ZesgRK}\:z㴶aKtOl[ .X\:j&S+oj?ڄ,cG퐢7  Oa,+L1D4d#:_3Z8; t6{2n- Rɦ8{*hlԣ@NAđʌ`|\pJ%,D̝zf9RwE<4L%$̣a "OcUx_KQ!@)1%¾m-ۗArG}L]C6v{ eIuN阆GȰ勢[uϥ*,nS*7.M1d\J'U-vM0As}e-iurՎ q_4J 5nz;林П IrC63x7Z}vEFȨp W'红7NP&_I!UH-Pr 7Vr0sƍ˵IΠ2,#zY~H C-blb$ ^Scqu`=GN2@|zQ;x9_`o6 Pqz\opWQ%L/h6Crר0/dII4.:NjaTXk>*=B"˝1='oc)JuG,dh唂C~orדr;CM'lb^<β! > [ݡ8rv' RrdlnV>6WXS{$t͞%}AC ы<^8b IV3*+)[8;!1 \nZ0{Γe)/W!?>&(փ1tr˪)xFw}ދS;}BĥudfS.RU01dFqp%> G$JH#ƊWOdq8s_IcOT80Cc$j߆y3K\rwI |Ub5{^&ky2n1$a]:bH:t<^l<$'V](2/W`XS)pS̰6S+K XhJB)1'!)H}QApÕ/әqb&12N4L'#kMdq̚'Rx`JI wgB؎2?OυxCi$e6тm4$0OD/0@NsĎQoKvۈ2Y'Pjh@ega%g_D h_k06snbٔۖշ+EqSv˘kmr]!ڤt<%]}9Zbbn,^,fW3ǂ F L8`[f>Q& GϦ`AB/" Tbek}pɹ"K7L)~ez7gQ5؇\wAE58 ߀bi;R&.UiFYH;KFZS&k}iVmz'34.)wEO Q\krjZi-1Z"0Ӽ%ʃq.ݦ@g$@TECL,Pp u?8;Сx$AV  kK?a+8\rѱ۞d|Őwan,&|l?jB?a= #sDʥ8t{mrX 9s 4hE0 v銸K:Rͬ&n*fqDlJ;i|n~noh i^ DJ% {`GDK"~x>BU2_>ah-ls0˫^FG.ѕevgz_P{?J"*|߼tFqZ"r•!>^+M9zzϮ } ]Vy11Hp,0_/LPY4r#mtZY;'+^d3:`ضkU opEQERv|~j]*FC oa9y$6JkBuϞ͓M+j{@NR[8տ~P7>5 AM%)L tRAwl~_nH76:7rg2 )W w%9Ānʫ42ac F  -j 1#Q~ kL~̌(dc啪JN=z &v}Y%30@rVx]e' mܩť5M@jΎ.!,]T2w7N7;"sJsyv(0,$V޴}8X&sN5wk #d'/1'yLqĢ&Ha:jX6Ǽr WCYڥ05ФLxg%>k&V!{UCk"vO'Jڍ{| 8j"-DM- !r7/*BΤN|yrIxsȃU%I-XB5Ft&Y1ǯeyXߤ:їR) ~U(>œkyyA(=D Ɩ|f<,dLu%\dE]-5Ìg~OM@kGj|{MLًXqCsc(nI>!۰S)⭻=fKM6úȣ[QːޟnEb I^*.tQ|7PnUNnHDbz^ m dx\$vHMU~/\FJ1g<6B7\7([奴 J91hJi«$'^(,y$Dr"#R+XyZ.f|uwǔqIĊ8-&RJMF:0y"(l1Kgqa2{ eD:j$%ci, Pg$o<2yv5jZ!a}ȡE O}H,E'Y?V o'aMDor_! *EkoY{R5IChOh)qFܵ>^ڡüO7bYcQ DD髆r< `ZR^fjs]@T݁It|5VH)/79 >{]r!aZ=mk= :U,cth:iGL!lzTiVɳ]}>#$3dVp[^nէ}/H#\i &:gK9uA 4eQU% +7]VRɄԔLe^f0%P_pkoJ;> S_{J 3>3<`} L9)YfpOeQ$M$gixD.}6Ce l-OwC]K3J͏~LvW=E@9Ψl`7j%ڒd2HЗ qfE|S5[kw9aѰM),;"0|)뗠_X5.Xʈh6\?kZ)ˏ5}%G$#x)[Yi\(嗾3#h C xǒ%L&j{!#,N )$sO.WUJ2c "04N~&#? RD Is03RyNHL_k02\z'?|! &kwYp',,D*Qe+LQ[=N; L:8x$F|{?e twTU(J%.jÁůcg20vl]C^s# 4-^![٪c _G^G3Gz![Z@J, hj_Jjkق{\ 1նwr`j)Xp97FКBUqBX% wxhuaՃ囮 {~g;w ^?Ώ HY>fS #הsx$aQk'ovXEOϺ'-- ތCYBz ^j-!6zJs[d"q1{+ƀyGw3eͲ]Y@dIjA,~7=m 'ވ5%p'T:6 0P ~8m_) 20L!ŏWB™f^2l U~w~1)Ѹƪ2iG7 ~+mw:{?`O;i," FXFO$Ru4ȉPFŋy{@ުޟУD7:1|\'Je'E"8 tP뾽9.&n1f+mOP#2(7ZS'yKQJ̎:h9Bz#%/iqV*G]mxxL?;'1RBpn~kL ].WW6Omp~h@p@]Zv((#dmv†~d7oe,ATT2,3Y⶘\D!Q?Al %vt#lbd_zH{vccY@EZp#u JzwDUGS\nEP59qֳk9KlKV;Hy- 0ϒ+;jRةpc;PooLzeQn!=a?G8-IgdP>\v] X U+33; tuu]%m#ld_lrE5CUN"X-Wؔ언 2 P(@Fz=0?(!j_Q]eba}^*,(} (qF<";[D:3xb eEэL^V*tmw"4 >k-CoTe׈(`$(PԚ"{z0tye7]u_ Mڠ'/<0Ąz?\2ۯqk&QsSy-CR ttai~=hh iUڦc#8b.kp;'9Q&㤻]E!*aza(B >6\e-ːn`F)sd=詼yf4gWN[}oNsD o]S >%DϐfD^~CI'< {h,#,,F]z.YN!cy!25hoU1 =z7 N+"AxLe\©P -. :` B|/3G O \3` x@"7P: tQ4ł , Ps {1_|D[i}oVEm={2m(*?3qa͛Di$t Z5Cz?/52żNOZ/*uj#N]IN=A=T MS}͓W2k 1_?? WVrraPYnLE5:4n @U,L( 5tמ w|8֚A$ci3[xDcE@/Qu "^q؝*Adv;I`5G,x{;3#û\9ȬᮯΜ%D}3ptKDGκGim+X]!/hk}[>3ҔO+&_O&q)x31z l]tȵWv!|$Q⌧it f\B~O*Ւcȸ?J ò rуb tVR4-+AxhӶPI %q |__K\Džp^{N*.5ሾXLPܗyK rBοHҲHζ[]߲G s/Mw5 3npitd4cE #I\O8 /L %t /N:A 4d4iX9tzf޸I],m_8!#k\<ʴc2M~1}Ôˈ4ԌuU'^~0lf$8ݾaS^`u/l3ІԹH6l!]cbj5o+L"BA M-sܱX&n' tΏN Gqٿ$ ˧p9{-+^H??ma^XOEe!0&G ;=M?"|+[ZSc+}9-',q=#(uӑ^>}@uHJZ+ r݆N`$u9Ib:Kŕ;[8U6_R%f,9%e2 8@O2:qCO2 OS|zz٬҃w"5(#nQBgY YQ]vdRz"fFqM#(^@FhIg=VԽ0X ө4Y b͆K7Թx =C0y$TF__,`,5dlN7d{Mc_MP $NB)Zqk%1mijxzTY78~~.α!!G"Љ2@ )4֑Õ?!HI֜E% >e^` .'|xW}s(\uOmzCY𻨵`L/..tIwaåLdxV4bRZ %W䧦z_bs5giJ#qdP7Z,JQL\=H ON6BN3 1B <+ AHYlm{АD(]7f]S[|:1tGlw4{^P5߆!/5yܷaa_G! KPZ! _2.eum>i)t]S >Aˏ3`*>GmMZa[gO炕Xnb\+F%cQEä_*Ni:țssu >;=5r$+2?̠lu*[mk#CAX(Sh =]h\v>P8͔JHKfsm&(٬N>wRU"FPAg>Rd?fɬP? 5鑇 K/.R G^ix+<Um}m'G>|_`h(5d(sUoC %Ez!+ϋVC։ 'ߤJ^0]qS{n~NZsN p:|D#~۩-I;c1BoR;?b:UhPV \/Z S],.<%DT8-77L&\n ,g5p0_&4amsP^2;V^Vྭ=d2A~-Rܹ:1pT8 ۭ3GqBN- Gy9CbE[ /O/%x"~ K4qMxq2φzzΜ+kaWتWrHE,YSde~r5½5}#>f^G({7Yu:=Ug9b;7M=,3NLf )c7{<jWoӫ4yJ]ݬO|%y;6y6>>jm{mR~[q}GbI ~2 ݔ)gi<b`?;\'#,}läyԋߛ.fglQ-#=aahnKzkh(=hbkg. s1tK9v$N60W"h'_56fumvC. ?EnnixȐŕj5ܾTkyHw+!PƏRΆeW #{X q 2^Vy}~ zT팬:9) Sc ?bϞVxۄdUX;P\D@a:q][)|A2v7TC}U{ C)~=߯?Hjiwn0/ f-1&t[ t /'MP/:/CF=^Nc:.Σ BSvӀ6q`-aNZ1wU=yAr> z_ma?ؠp [LV8iexh17cQy;wL* WP$]ʮPrL߂gigk ,쨭>Fh׾^H^@ʸCkPHVn5BWc8lc^US:D_d%p)Knpo_}F,T(7ۓZu* %I>䄓rV7.;;[*Yet-k7|1IQƉu3v?Q&-+[4*rי,-rL0t؀F` ?g F]<6 z@RS*Q?"&'K&<A6+M6plX|1rS!wI3 @u?TV3/\l+ُt8 2֗qVL)&SO9txO- L~;IgA82~=Lښ&D 87QP^~ySf ax\|<#(~K<sS'&au@(C;Fw(#fEͩE HoC̋ iE+-['>w"!o9hM\Y\+~GFu[IXF,"B"m #ؘ7"yZzj*/.0c7uv>-tXa5QJ곤<dsI $xRlY.U1"p/V.. Øb}!j.fΩGL"wKhՏ+,+G?ufi߭V<ˁ. d JTǥ71pt>>( {J' =Ґ%#_1ѺY,='NvG/g4g̸ =2"BFWcrpy]m[6ȽD&gMB^3:5B$|91s"2xDxy섂VA5i ̚)H8q0sm7)k?~xg%!S]Z@F[i.LO<.Rlwԝ*Q_e ʿ@uK o=Xea/-ຟQi[:B-"grVGv=) gהfq:r4ǂٖ`1Km5h'D@cY,]NS&J_xieG;uISr#g o2r$4t)*Zkq!)?}Ŝ=QZȍL4eqrQVg/\+oLږ _I!(|UHڡ>b#Qћ"{D3R zw Q ]?~1t)N O^eH؛KZpl"nwzmѿr,[@9ouF|LDYjUz,ћ}~oUֲ,_ā0`(ܐjXvS/X$[?{j^FKv//>6wQT(Nam-eS,{`>RBcUs"k5x tuY57^ܿ/i@!a1b׮[.v+=ͽ=5'STwvKl~uD=;w#1Nv} [%:9>|.队B;a|W[{68P~JD v8)l*_#) ;\UmmnGH0$vE;~ǫThL}FeV&;ЇgU nÜZ6j:ť`tϞ~1R D$Exד|=( K37n"d Lp 4zS-ݢ;f+P"ha8pܷ ˘ O:BS qFDbz<Ǣɤ~5F ]aNF[! ֈM[Ӫ .,ixYoK݈{geGLu6y/ˑ>qnNFMj8. :YP#}}k\żgiyj!K~)y.ؕQ{9RgarA_$C*[ : ])J&xp 2E+Qb+1mprҔ| h"m lcx2{1z߀w1Oam|G\&֬~`Y$s^v+3rۋD pZT4Сq''XXo\ abޥ!I"AĜp̅g1QG^MV_\@h ԚӃZ@p7^t 8u6xABŇ)?5Y! WV}Ej?<TR_pwL#*xIB(~#r ng4hG@'͕YWCVL I!' #i{{#]o~wTmxŇ KJ]|n:W`(m&+"M*s#\ ؑNԈuɼY֒.ۯ WGo(^ȀkIgM◎J6QΡ Yeh=qd bGkX_59U``[ը"ߋzz\/z肾Dhbn.izY !ҡgZ3A/Zs$tw0gS7:KXR9X[9JcYh1?3P=PBȶ@oU3 v G{Z,eV%)BG"Lj.і/f~7Cu,k~zK9_n||̡l^>c?:wKYu|jN.0rwW-q+KBpdqtF{V~ $̭Ph}q7KlXr= `ݱAdp?N\Rmz]`jD[] q݀ҎsYhhDHL*SdG6Z(A+YZ*;I4lq8l< v&AK(yݛv}& Rq s)Xd ٸ RlX6I{6q N1zڐF/Ϣ IWzʷ4􀽝aM7拤aWZ_@Gz9OhieN ů#S_oGgK td%@ )z{*z-cm. <Ⲥ2b$78qaL+-!?癵yC j CM]Z/̓S5j^sjΔuI}]'ZeH*%Rh*@;2L~p`Nm=IW%*)?IA@Qׯ!(0[<^=n3ÙWA%L'ਰ½7|L3 Rp(÷1(ŸPU;D6oʯy 2@1D hĵD2  <7L6WUt4/oȡgeGbB.76-l kH\ %&Y%ʉC6.۱6/anMml/bp! Q)L>Q}F$V/4'Uc2"pF34?jXd0p胝E_Ο6ٳy#}֯SH ݳZڔE^`ϵNwU*HJjjL,ܷ:|\k#Q_C⯒Jr- T: M[5lT)} Sn][^&Øu+onM`C@F 1Ր0gRW/ͫㄤ7fD$vPd+Ͻ$Z^ J}\EdiL]Flk`yw.۩8n]oEߘѩ'w'2jKpE(k#eP4x;b#w5Qբudz N"ԸR=jbݬeK ` 0bǜpˊh#)tgmOqOkpoD^EF̑zP/\vy/[F5">h|٬ 3JN$ K1.O{P_@Чxk1R1?BMM֔#TaGZGa{Ik55V٘~\8Q@`lȎk1`t; x#M-쬆t! Xy,VY]Z/URv.S+,㷮K[͹-w?*KuQe{N1J keKqɀ:Z VI–$)a'& MM')Gyj;T޷kJUC t$( xj6@bScTt4=h>l?5VPs6)䆽E([C~6"!yR.}dHp2oAQ {'/v&|T9۴P ȩs/]Aa7h3̍gtۙS1S/>1G!T7^;Ƌ|>l1SU :bß\1%2َ1-޾jظǹf_w2Omb!k6+mVԼWLϾ!ɑҹs C dґ<yj*RC2Q!z{ZG"[K=q+>7;~(kp<'"`'4z>:i|3^Sόeou49^ Vb'iiܶ611ZEm3ZC]RbQ, VZ&{n] !7@P~vrYI<xT`ir}z^\Bh_$hK-Ɵ(Zy~u/0~Xj=wq\i_%P#!M@D]}z1.y2C``fY&z+{'b=d9Ly OLpB41l>'rX.v ФFwڲ=CԞ bADcFӧN#ۆR)ʸ~ #gSyuٕ=.+SK&0 z2Ec|/ pc'5pِqgplұ T ,fOXZ"f$txeA_*QAe]O.E*MCS4~Nc=Kb,zY>Vey=Հ7ǐVU剃i \˶ s.7? GÈ/@ɯFN ǵ>WwLá"зQ\5rhL۸I)!_\t1Ѥ)oyJ҉O`*̷\~`iaHD]F[DYLdq8yZY\ kHmV: :m5w˒*gcp?vINvA``UyP.:JD)iyw "EE_x?TorF4Mer톜.4B)I!r V ~࣬"DΩ?Ό[c'oY[rr9zxU'f(G`1"ZԼԇ2 gKI”+bFe>QNLWY՗S3-@Bd9p$,VϺ]')%tRn_ ޮ;j=CvݖO4!(.ȳT$Ẓ Sli#pGbId6ln];F:zM\6E8kSLWY.0to#dĨ_F'tD@Ǣ.`r8}1U+$LJA W#rԹsq7t3ˮOk,ڦ|o(*%[BֳV2=?1y/TzaBۿ-V@&RW3 Wh<~"_fӽoHP@Z퓁.=XQcpoQw'iηޟVEC]Ng}<66{A_ov1ED7W#QFc?W<;y"/̮ʊ奛Rf=\n16 kT}O6ŀc>+f>(TU#( sW B f??u<|HRѤ<'UN-Z3u 7 [d -CWϻNJc$M\5)^WҾ,[bEWG|/>'DgtӨ𐱶-[r)aǑ1rKgdוSj*"\*mtW5ĦQn>&biݒ?wma7?ϑF`# r,/8lBq-CN4a(vD<vOq:1 kD~r7F %HQM5kigSO>۶@>oBr_ K#C.UQ*C{93 aOl{QgT(U]; _É5 켵/x326RY؊iCJp-z췂*%IR +kbAH܄]vqL<X%t1㋜99:,빵8h~yy}1#wχ0'Hg+mT9^Ҿٶ<>8-,˛L:FC="&ZmiNr?YdE=?[MqHiYڴڒ_0pcٰ Ynu8 b(#цcPjIt*íSv̭nFa")Yb:0/F=.X 3X1pg%O#Y}udlIY'6P-? |w]ҟ+cQLeR{pi1:~#M|P|N<~wgUKlZHz1C.ZqӂzJ) R#jNzP52ċ܊$-8t|}z&B:)5 #mN-uʾ|wHk2=G?cdd0mʨ"{ *l ID^hɅE&Zy-_|Ml X|@coi%xGf_90ɍgRچ}bhS*F1,#ǿ ޗX%;o-f^J*NyO4hc)OO+(I +ֹG'ubag1fe:91<&7p>DocmDFNWdӮkC]QЬq&8Z_~c&?a8 7d4 3>@O qB< {'rKhSAY^hۥ!"q.|V@ m`gՍ ) I$T>[Dj u(^E𻎞j˷9ٌD} uD4KT렗Jw6,Y<?w]tXXDw哀c8֪OanZ/P2 ,6~E׾2bs"V  [پf~1>+e .TL;[kmLF#lZtsaоJG·OpK~GHJaTl.-} 1:]̉}P! e)Ǡ_Ӈ(4q:Zd>4hL`HKt}20IB8}ŋ(h4A䏉b6m/2آ_BGc |y zx|t <ۛcV󤊍u E,t_kDzVc:,4=ၷK"3v{RC=bT20 2­5nP=/MOóKWD5'܈pL!eC@W_b8`󇶝W&_6HQnLqF!vpB5H,`IW  ܽ7vr&yRu{=u|/KA껾^"BDzuw,G]n@SZ/,N^zX!PgQw D+˾6gM%VEu}V6鳫8Ugg!j?n<^`¯j \X:BjYNl}VZ+{%Wo@Կ&ielKUup';A#xA@CߒS; R8w=ʃf1 lgv= 6W(~BJA]->_J[3 0zt2JIV"pj4]=G]KI6* <d"5tTvgғ?BB‘LB:D]rԇBvoy:rXrCCcd Q Qi'~ gI[Ur#c<ffvÚԠ,J\×9#rn=;Rjq<&"j=Plts=Nh"##5 qqDꭄ`{ġAWb&縆r0'IU2r^y .$)wjvP Y"dw~iB-jV0TZQIFznM)"#ݬgZ?}K&\eA1{+>d7nIn L&c2}ws?Gヰڞѫn↔yf g1b"IXDQ "Fb`_bDp!Xʗ)Ez6dRׇ7X6Eiz/:dn䌋I7࣎PY\)vOB "7Gcn{tM~. =g EQZ 9G/碹c=WX 4ͿջwНC)-7#6=G,a}ki£zr夵'`*Ȱƨ7<-Z3Xk6mk^AgY6QjΗ=S7ca|o qwi9yaw7O{ VmŪCA,]ڇ_z:hA+NHSoLJċC`a$֊(ikDiS{ufE(O'8%T0f+EEUpb,_[OkpYy~[~Ao bg2J(" -R ӴbŃ=3~n#Tb=IFh E?;a3%+Д$~hB>4}|Sf*ggz.ZsОaPV ăd;Hd/J DG($-*7ֲKN!N_ä^K?NZRWf@?= }'fp@DVy(;e56;Y5:M(]N7% j[ LwS_.=.2A!QM(p5y/j6,\pL<"ka>JmwS ![_|oXI[ i0Ryac"7oniRL!ifc_l`Rvc0( u}h8fbwNyy f`96D $9 Ruڭ5 wYx"K]xZI+ >r;A(rb*a5%x0L!T ECc#x5>z1|t؛|?ŗ^|wf6&Pg] x &(oR7iDit2̀^#*Ack"a=s`OGlo*(fϒbM~nό^/h2TE hj eʫST@$ODXqHū:[2KExwmBQr`iri{<qR7e 2g^y5?r}D jv,=m/WB`LxRʧ;kxYK ] 0/9CCsP!RV4+-~nq}'X "-xHV†I 9m:?s9(9]oL=>P nVOFĊd8ݠY–"oT+t;4'Br2W!« *5nҜ$'C'.(ri HóTF &/r=ׁkf1F$6UHx|Xu nJc_| >?u$#kBA-` ꪊSߝ㹓X/%Zs8{_mcሄ02Zd f  4foRs 2 T_㿇l2djy(2%>U/I_ =Bc-{Y ./eY]FҸ9WA;a`4hl e ~(eo9^hs@+vXda<//>h#s avW)y< Rx3o/`(]n&T Rp)J;^?uzY/0̗E(B rJ|a[\⩳~ \[ZMPI#pj;ӧ|#"(au&PRB bzu k6quP禭tL3=/=eo|,v~hRQ|SMqvByhDZ޶#b.w><`Wû}^=x#q,P׋$f[W`2Z ;l*+(4 eY9u@ ʸkQȿKGu${ְ8 ""wF#zbQIGA:r}j׷Q}`U;`a 4Mѩт>w}ȍ|b5i۹I#DBff{WL'"=jA{MXF.A搲EȴS<7 {]d` 7K(|h&"βK8%D;ȱ?^4;=!O!&h].+~Fc=9ߦ-Q8|-Wa?㻮dfnI07[zo %z햬wN3*N-uynOdrIA.1!@Oҁb0x Y.#%4%5S-d?t5y6REw-9ҋv>"L= .ztX'I$_Xp{oSUy!"E}aUE*Lj]Mv.A ҅aB\!ʕ6F XsKt3q3 ݽ S: %~aj|L4'quovBdFEjGk)?;'bQ۵نGă*k 2_,]-qw?yJY 90,KvP_vew+QMt2Pg򄚓xf NɎے@vsjК]>8e% 7J1ȎAeRk6 dSO;Y0\ta)Dnmt 9,Wnk6'mHm-dZ|u9K1Q_F66qI[}ْ|ϣS39ڹ*a( beYkQŤ3׋0cYТ0E`z63'ϔhiJNqӇ7x. ѪIFZZ^=JF3`eoI"l#vk=_5aFec f RWy^S s0Nn q,|*&7dM"8~d.J6&fib89֟jA] QX-K/?S qyXy3uSp`# RISb_Y|A!r L3x~Oo&+ ,p:jZnyl.VE O%Ґ1D,L? mld& O(|~}v%_?(OB -.(p`A}Jf)$6bL`:E5 `w_RrZ'ִm FA'f]8@AQQE]7z T{zùbYеZz!G8;^5%NCu^oUCjV@>_߹(|w3 {opl(;z eJS,mt6F)ʟ ;,^VfP DIzN_6PxbD;Bs Zŝ|Yt +Оd͋A7Y]x-B#p,Lbs5X4uҎb$g}rIW|ɁmS?-BUαzH9ǵ]Θb0Ɲk[lvIG6'/66/rexpmꨭB]xw%@C^3TP n nr5t:7s=Ԕv*n-˻kΏJϮlֱP)+ 1~Y"P*s;+Q#d" 󼛻ЗIf&ԉ-Տrz8bR2 E'Q pўqR8~`j&LR0 ޑH}+vo* 'y5!6+ߙ.Oݏj_aT(J1Ck7b~K Ci'>`xI]}/_MbiŒ%S(|&ec$)}onq kbs[ l{WTz h#úm 0&c@k:vIDɈ>۹! F/r5L\v0eMUHTvsve"l8 v eK}lrNy.4"Xu8Ċr:4Ur1Kۿ:5T?d6P=g A߭k g ! fLa&, sVw4fj_BB2r, ҥ.~;S]+FD+bB(Q*[mL-WEO3j#>F;͊kjwL1 LSٷVջdhkvk0$촿T וFw٦g/CG.i.z7yIv\; { qfT3bA9N4QָL9ǽ'ߴQy[0ᲮUaP5 }M֮]C,QNjXRhmi+j3@V20 ]ndѬqĥu Gn&w Ȅ5’^h~92ۻnF'<֔}q}(b9=vYHq F7H}sgi<@g&Ju?BJ8TV@1|#BEZ)GK鎕O=x-aC{~MgzMt=beR6MLb&v,7j<z=K8AJV~w& c@lEU'!bH̆Ji+̍I5-p1꼓)NGWxL\y%?b@m ` &(n"k_]),Sդyc xQpYzQQ˕Iݑ_^z^Sv:鐃"VRfhʆDBB%)ndvu#1TKX;«) 'ne +y7sSw}'p=0Vuq ) xPm>Áw)]NOD"M=-QFjsIFdžUqM_YVxf Ld4~'K iZ;rI ڕmw3R &M]x87;ISia3_ ٭ *[b;L0`g5O?ta~x<}5aKn$O;&  -+fmr"LV}c:ByO^($w_]Ow/ʒ':ꑮXޫ#& BK=~A }Z;R k;Fx }Q8_\c[I>7h+$ u&s@uh7FaVfK-=÷}۲ѿ"yiݫ#V-H+J Pp&O (Ul_3i0 q2D\F<eUs XuU .T RsF߿¸4|83@h:Dq*GOrRƵjn4$Xvd Dͯ1 _ߝ5w,pXz#.(Z%^Q^t&h&#}LH2a~uf^rlR[~E.-d3G-oN>k5"wRmԯ_f S:Wgǰ pj4,ʰwzTo!e9>3t;پ~yڋdjpRPf[eR%iW_u7H[Qg&SPdb/Q Als+c$ىMcjΔ\T8MØg94OV8isezE{ˍ &czgg0ڲȜ,d_M;bHLtºC(ˊ!AԪbU %폵0VWDn%Y*8D$sq.$UE2uF}YBK]|XgDiU #F#5=OMc,IFZ=䛥9wĀWYpDd,פQVl,Y0uoιZI+)^C!\n?C9S)4J;CݗZG[Xgxb4O[19T&uѐġ5.Ӣaޯpe_(3+@; ROX6!Zn0"L<~lO&=mAw+yU~~% Nr[%u`&xG#=eGɹs}AQ}5SiaR:N1)3fRYVgj3hɒ]̦1)Vw =;>] 1(ԭdDd. /ޛ8Qrq'$띮u{;1|˖П[AH[B,o-X-y@, 8&x)05I;V0mybe0\{&ܨD&ġJ6q4kSm܌M91hgTKQ9hԋt9X!+\!ȧRLd vr] \^2@ao?7dY!U;qScT g\|b4ޝ Pk,նUv8$uVI:opmV)*Z X†L$Cc#L9|}n7($}E~-⅘dD-ro|r;R` '~8,0&Vm&ll(q_ ?6̲}CkzN6QV BI5k 6/,d82[>0; gx1g }-]M4=0¾`lAo͕k}[aPT, sk&=l-&KƸnYuG6!%fi'^)Iqp*RVH-W=<[:X~lVaDL[*3TyIT2q]+h8>ϦF{9f|e{"2~A]`W 5`gPK.6[O29: "/1]&W!qzWA (lzZb1x׊ =^{t;;otԲ+ uA79Y42٪qg?N1@P:!aטi\>7z}-sڰ3E[ czM%Ivc5 i)-H&R]fqx?A3K}@t% aS7Բ⣣8op{Yc'nHd!*j=`ܚ,n<Ji )IѩV4:\cyic=qXbm\Irb*4s.17=A? +(Z.{/ʀhc(_(X B4>b`W rL1Q.bgbi^jw\haF+8?'fu!cCFfEay%w"ʬ29XM=ap.`I^PP?~ZWgQis\Ɋ-cͳq`QG%{ov ;R.xa/Ո$ւV1CPb'mn῁xOU<zM\\b>1Exh_>,dopjdؠJ?<`ZD /7o+[1A{XXsXGk]v"F[Gm=9{Ĕ9vQ:T?oXux̶P9btHAQ% 8썔|>U]4zM(:ӄ#!18!5bV ɕs&sv| ^׷4:C*|82ԚmSYk9ndkd+$:N"]S_|qPbAdrD ,AZGl\φxo`7̶v6+"2U1*[BkhFg/{ GTAg^-t!ӳc֞JN ŜZ\<Nt;V^~ONYed*H8?lw՚)NvSVP0i=q\bM6Xt9- !sթ=v'9vµ=* * Ƈ"IE)~遊=閉~7^S8Wm ڦUDy{P?yS5z3x VRFPtS6\3|Yt(aРj_'ao)KNҤҸp%3Kc>_pǬUye΢7Y؏r^16.)vShR%D!aIzi18H/K o؜r=6 r"hf@tVLd)ǚ ^&mF?,]Cs*B3(W!Nii= ٪S`8珯)Kxڕ_7`H=b{dAM\Wi*fChO;3=ٔ1+R f6OQIZ05L͆ź[%wqfR·F~IC pEFd?݊p*['<{[aP%zIN?e߻wfBjnZͷKsHlj )J\@ a`6e8ץRiGh9@:[ߐ2$P򊌥0Erkl$mz!5G|oTl=9%c}tBXq@)):4C52J}]0E &6$gb!J&.筌wn޻N2iΩ|O;=Y_5pp&-:3 {ȚbӞby䖪gWCiIPx3vl?qj9hۧb6ƂfF(6-vեI|˚v1tGG$.5d8h"e--ֳ}la71ZEtWFk)8, VvQ*(P! tKs1V C5aiV|AU 5g`7#( 5꠮^q!ek:KpzI?25CqS9K-cΏ*NnM~L|e" }ۧ54woӰ\6AƮ:\+MJRȌa_3ԒiM)5-fCIncHG`]>>Tꦂ)EmҏW; 3R y-o b_y?bJyP3)3V0eJ"ShOY~mbKH+ӭo\HV_.90:U.FUP U.<ѐ2|qgs̀$ iHqZU/) 49ZO zUY Kkxb"MϼҲ;6tAUw#<6I"#4=g>6yXj2ly٦–K30cwWFD{mg}]*ɿT0펀= rs8K1}٩vl8NATm.8ܔUQںfz\ɮ(X\Fd8@@%FTևAYēc+KzVsK?m~ h9N;ijŞw#1uf4hܮPiz7->Zg3SfDɏ ˴e*eLDɷ N*1A 7 /*Uy(QIȰA+BX喻Rĉ\zmK@4'W. Zgt)ڀ,qO vÞ#*̢n3- aGBKajZM]/ۖQ}Z>DV}\72~,)6t#l0dTF8 bU|NZ;!;HB6TWG;&(g* gp^`Y}7"01QMBb7RV$s/.7b[(FESq5:ypa예GoPKesL+4 O֖ΨԌ/STFGe0dT&Ɗ;N2!`^/E7)oSazs˄[Kd#U= i<LjV4#ݲA N҆%E$`k! I;ן˦i?Ͼ@%3bRLL3\-Kk-TjvuD9IP7hB0=Z(3ų:+E )% d[#Gh&&E ѠHHajS)xA5kH:B4! a"đia񛄒7=Rƶ̄N 'xHߞ1Ǥb+4 dp_W8,. _!8,!2u*٠D=j ?g%?hl4.?_ ^>yp_-^]4[( vSpIe`HiKm'W]4$fn3f# I (+W+8W! h"SFhk{K%2-JLZ/hyN&8Ә"#"ҋ$d5e"^p48vZejU*}# Hw-8Cйⵑ,c!5;4a(VtY v`9 ;$O񋬭&d{48p[,VG/IIP+qVf-h JGg0a20쑇9xur8uM"R5D/g;mcfzd?* =kW'`L # 鏦s`7`_FnA7N&]ZJ4FKy&T8 Qڅ0CMv|YqeRRRY18̓ ğה+i] \)U0>K Pžӿ{%U?^<ÊAq=@PTF1K52n[(KjE2)+Nat r`ޛo"HvZ*uQZR8q 7b_hQ UTۧ h .u$-Yd$m;9XA'Fn>%K龡?rxg,^o='\.M͘f-/ ֓hRV=.cH+R6RLE5,'!bC'L-ܶ+zV_M$݀JVuĀ%-2)POJ4s'Yz,Ik_72CLvt95nP6M_yz!g\O'ġ_Z G]Q"HHv%0{gcEk7&)0c ֢olElzȼ8J# UUDFVѺٵ=p~_dAqa D t:k­TRv_:) )"7M#==vxPaCV\cJԃ ^H$ք 6n g 3ϴI]-P~Yx>IoYL6]$l0^X YF_lJP@1 oHZ_`P 7~#\FB^S,~ B06n rޝb-fB}W"˥***&WBp-k*/j:ima"7뱍riؽ78pY/1$˝ D{,MEN ~0#z nʙyG*IE]r7 IPL <'ڮ0Ne[ @6$0C31)B OC@ $s)Ϣ|DXZR";˓W#zs9D qY?Pd:ֱ|K!0x❂/$q#?#NtFz2u[CȾ\( tLy NWӤJ/ Ǘ,3 :iĶqL͡y5J@Q"@BL2Qm1Vf`qZ-*}Ԕjl ]fgpVI8݅r|:"({GOʌ4vYxHtY'kM"g"*A t€ۗ1!kRQcVxл,,$fcT<%AJ&a>}tWR 4cEzQ*av{\A$Q/{u_VWFR(%*D +qZ/i迻[2{z6REćX_k`@!$ZHH{pJgTRjJs_KL}DdU  (WZ5 B!'w,w+u źB%F& m`7O68MIs8A".gw{&.F³Yo:b3êF;wA3\xErTp^PF5yV99s/Q0WOA\`Z}LzVNrg uw ظ&hܥe誣_m̥x;&zGĢM.sSg$7,MAuIйNw JVYӮ%[`ƞ`m/2(9-EY3sZ#\Tw$Q80mԶ;gKsPFJW"dhqٴDЂB'OƲ~]p4% Pcs6c!N[ @9dչJfO c ǂSx M;QRtvv_V L&A{iQQG^U.uw$4[=<qP+bvA  F[ (8Zl5Fp Vrs_ߘ#GNj?XdP]׊X Ca[㇗'j< 70F6P5;~:{roznVZTY1jV 2Ӫ3w'sHOV[F)'9.rcc֕]ns.GO-THMq$Hb$rb1Zmh~]%U/^˺O~ c F <K3$c.a=iY>S7ɗw [‰MWǎNleihbp WRX0 Wu@A7~2@m8,_b9]ջ^ 4s6=!-oO-{8N#^Fak\cy7`dkVilW^Lu)($+Crku*̬LhiSp1T9њ(p "G~c^S 9N ><}dϪ#u{VF&lg"xwE6zÑQYbYb 3#nn -ŒvìŖƬOg3PFH"g&(Q~Lǖ?aS<*Wi#ӿB!pOP;)`Զ|wֻ 4syFNl1D X<Э419Ó^1;"r'Ş-'~%j8@a2 _֔(% 4(|4 ,dI<Λn[5a|m|]o>2ewEl5kj Xc^DE^]cIw 8, /SaH]xs\tS:5|K#iQ2&D̦et.'<=Ry.t +PȣS4rhg-9Lڵ)F8>f>Ճ HA~a }Ù SJnIKyD^6Bj~v8Ia.|F ݙw]󕕾!,*Aj\ki0kWcrS:pDmlZBXo:*ȩ.۽^w֌FeF!8ZH2wQL/j}*D @Z\o/$̬q[?;/ࡊLSfG,*Gc}$-et:3R0|߃)Ju m9l\G'T~芲K.6e]]ڽ$!؟s7%&ԧ֠Fvoh݀V&…5< 9LT2K8`%P:Xg2>3DdWʠ&"ƁϫLVVvQXPdѓ" bwقgOVi’7C.usX`5 sމxVt`5d~mU]ڧH@ )(i ڋy MщO8`xAG޻*XaeQ0=HT2s13Ϭ0PrW+9ÆTE6 zW,Hr6C+5DnhNXȦkG>Լ=ތVԗpftcR(ȜR簅jJMQ'Q4Aէ+ʢ 7[Fq@rECMPgM |8 |l†Æzeɣb ]$A|GTsaT eI+Г!* @L]'B3D9%Vg|ā@:O$f3͕fkȆ,\/Җyc9|<LX5@z&Hq 6!ՋwI JfS_imޔ4ӄ^%d/Ǻv 9J$'~% 䐼K:<rJqY3gq Uz8H3N{)=n1!!l i'SH{MBMWʚt&v F>gM>JPezp=sftzHT1Q_ŗߣܼ9GJ8hfSN5O*Fa;g\y1H8X3[T;0Iw!SQgK#W6c.\ ?KO'N.wÿ^3jl]4 9Vo"<%̠耗BfCIg(O"#Fc렇z&fm *M?[jq{%dBt) V sԻ_] s]뤰8os) B8;vAVK\AIy0LjUtr w:_-xn2m)P,oS PQVYOm(b+_!vR'VS8gǝ#Hu괔hw<`y]ȩw8*T˔դDsz:La?e>Qm~!֝KFS~)tHӫU0v.9 P#J3xry.%h,SGݓMq +|^6"Vw\Ծa0B6{} l@Y>P-pĸ9]%rNN'sD -֭k{J(CaM֣Pe FOji`oo;Ȫ?fr◺ۼ2R>g8uC4`2 D&S1q!z|鐸MVW3!?KE_0wLsMx)YmF~7rzdЙH!ylBU}hXj<@+ e'76kKJPׯE F3ubr -񟏑2SJU76Z] ]kBPc?wIb-&zV=Q>#ҹ s20p Ė얖5RP:0UI6#hiyp4y0N}5ձ-tͰϔKpq2:V *NjRᆪ$r`(lXH_윪Pڨ` @Oߘv?Q$Z-P窒-ธQp} V؋Y:{Q4GsI?f'٬+ .xý.U%TbMKv(?vVtlQLkX-u d;8+6d*QS4rH"QHKGNg1v-rG"Qơ܉4" -x@}4*4/ 0hZlo}mu~YM#,kiz)TKoAZC!<4Mzn. U u&*x28͞\w&J}WC]{# wԵ2dZov^T.!kyzԥrD~Ijh| F!  ,nKcZs gHf1~`5Tx#j10r"$k<դ9D2d@ݾОmPeI"oWgl Pэ6Ղh5߸WOP*F3 W[94aH40\/ji5YșDVZe_d/Ol2&9[l+_#]b;u~+״nStqFfI%Og%9"ij!VGx8u>$K˱Ly)-01ݍ;8,$|4ROn(j4׫J6{Fk׭ m 9'Y,/ 4EMĸ1Eg/ьQfG*HO`H 咟9%T\3i (HồÄ^={_ڦ8a(RZB%9:pzi]H21]@7ه9 EܰT/rޖ@C ':r+FRW#ӆmS[Kͭ%#^-Q別ЩoXĤ G~?Y|pf)2@$oXG7[Bf OXA־)pbjcwa=f#YFcq4QQ{'Bpd/)6HCzUUH}ѯ?炎7Պ9L`zGmXrr}xsT:x)g@(=:]Mc[PRy)DsK$, MCM??$bCRdL\aI"' ?(M?4d =MgT=( K=Dw2nJJZhe5Mr|=x3k# nq;D%!Qү.~ߥGԒM@3)^w5ݨVv@oLF'L}V@4-w~`Ez$ D*Cac\{VJ1֫m7$dW#5*0HDpo`dq@Tvhr?ul<Ȟ:5^P\m2渘wQG@J& qrhYTq֙ըVl8Z{4akY;e2<IAj.2\j# d[F"yǒR)* 퉶bC'`C1&Re&fNj޵LV fO[NTKkWosmLj"=a[]o[LɌ*+Ѓc"Q,;9١Xr@ѐ“(xi"J0~ܳţ9}󾋄`**fKҜT?o/mS&qN""3K7ica 䓬pt-*,)h4'uhxLjf.Chorbgf3k?{5G`**ի38qU_ &F]~G%;c;>kfFJVSU;-W0s~=DmDa'7MgʉA &W̟?>_]~blW`7[ b79z!.OGqGP&IQp )zTr08uQɘ9+wj)~]%ZДV k[(E;eπ0N+O1$vz8ߓBhrJHR旦뺊,pnްB=@G~ݻ.pH,˘$2&(F %9Lg Ib>B1f1 j[88]_pqb%uck*Y=9:wnnNYtHȧBu'8*yqxl3{1'b|2&/mXEC:_aǶ[ː7[w|e>t8䣀iWmʁZ%qE#?bi]=Tv9B EL1I`ONPdۖ@" Њ[ Rjx ς 4qכuF*Ms5G5sirPM&1dd]DyN$/vj] ^j<@@ ez<M!_, IZm[B'5>eR9%CV%I +zr(ѭsbxL({EVHO,VUBD46=Sq}%"rsR[! a]omWaԴ4zʞ FNHSbwf+;^!ic[67*OڍTt]+DN,=q=< 9x4rx+[RZɥqꥳW6eŏ!L0f@/Jb%!,m5qae&`&0:tB2텿a6K<3> 0ʩlaG楣up,N(\{ cKiMF( СW$ސ˅[34%*,xwpa;M֥5S @%VDs⯘sMGS.sIԷEپaYj^ga!AU BlJxK$S]3joyaEVį[?WvP feI_jd]O}=B{{@lѴ#iZ^#w-~$6VO{ 빯_G5&#@۶ʠKC0r/E{yiR~7scAXqg09<"R^5kCLE UsǗ-p`Df($S-GKp lrN-r2p{>-uSD$%ad+EB?kJR9hUm Uo'! iA,;m,BLyL,<rsޮ7y _l:?]Vu(*% f:HY8\xpC75)LʀlҽDhI(t40"ߏn(:gY ZB%VrA^p}bO*';W3*+`> H;g.t$ Zax{Z2M,Rfhp#>U~Rw r=-] )nB;˓/]X1nZyB/wqXa2,X4klX 2ڎ₥i0ڀ%|$p ih9JCz+XhwIu% ocacP9ọ0vFVH~5 ]dJ!dGye(E:&T,C،ZkCV' \Cg>_Z륔?e'hd";[(˽6SkAC@W%Q)cbz3nŜ$fC\/R;}k7 ,wLzcywSoXsBA+) 0ѪT^Ϩ<26pGLhݕh#7*_#"u0uL_ǹ&Ah4`IsKcH9X-p&RQKvcz-!=/{y @(CrAv0,4I/@`^=[ 4[4 I$r肩͋6b{y'&n%męqɜ1|8֢;o7/e(NYNq*cUlt:6:c Az[(CKy;.%*𹛕Pc@՛ukOHX~m1kiNG| HٕN_q3+vTǓQP0#_9PcePٜ?uh,B ٙkSpXOJmeF˔F e^YA9yMcI[A@ðmÉ dWg;N}d~mQ`3Taș{ҘcX&ߢѸWݝjirlT\Dz<](0Qc!Y_ZgԂҲK6|K(ٗisEF_*Y~g[%$54d5BH+n=Ec{@t7?IU%*ThOՆq@I*QqJ.F[)8HfsG2/]tK$,bt$,*?rXGyc+" ˊt]dRkKc [n)V{]]:gz`RXLWt,0D(I!B796߹fTMAqf83 td/{2k,?ntBT'GA=mc (ۤ<(^j¦cp9b;I1J}1s(Fj;hM_y&҄ B+B|^ʳoILGDcb{ Cg_ 9fʮyfk~f]|!nP,ܧ"0Lq\EB-RpA9.ХLu8_ptӢo ]E0L,T(7׌?Kwv4XcPt$h9+:@6rqZ g^{Ll{wA5lZuRc-v䂃 Ԕ_oζSP:.ϝkĕ(pR|`4K"c7Ʌ?#Y7ymj}:`ȝޒ~K9mKeSZ4G5dm/Dz~$# ,4KERצ^w'T=[qle?m0)(CRK5e[*}P+`v0VV;?5綘[+g?aD"nJ%4FhLg4:5e Dk mbJӖd%Тq S'^SȖJ\hL]mi_W D~εjXrؿ, G2fg<{߈B T^& = |`1=Hj!A:6% JV>" nӉww8uIuӦNxW"K)lGg~\nE*(֨/@ ށXg-u7Yx7 vstn$fZ}]-NS"U]p Ug]1԰x@vP_iN^4&}8OcD B2u3p3$GK)Y)1C4G8V@. {"@SVELف|x6-wkr>,J`;D&unOƽ{7"GC gD5LTŤ:0:9Œ:SCR@ k+u:DХ0pNQUYpXFx9:ߤ"$N5 :~ ו,ljq1Vhn9#GHrE̳ NJ.I{Oq~}s]: WwNAX`sc"K-7 {=6 bDoaN-q /␾r81ojun5eɉ2WݸFwޒB?8yTzCY-z\Ք1lJzM6K? W9-8F I0`@ɻvb縷͡a)Np#gu_vv.8.@Z|'5(e;Vi#1!SJd UA< &V1zY,ϭ-~CU;oa3@k?yh![nA]{ %LU)W;0)BaSD%BȯeόK#s2F!WLC2ގobT~-;M;JXyeܝcPA`} ^C$x~@_u/Zb [wȥ9/dؠr? KDB_—;b7H]Onax{`{OB|%vHKhcqh?38B6N‘h8OtϢK'+tz0@໳&P9LCF*7,D<ݗ-DALO8Ie_;f{}.E^6'5>C)}G: -:LwLي]v) MUAr`K=;MuXDyySu b0-gkS!iS,Zcښ)d#)=S]vʳ* 'O|Gq%D5e򕴒vOX5/3,5 9:Jc( =ea?TNL@Fč䟿e0L]R~仩 '*)7>elZ]|okʎsrD()CҘ(.rXK'GxwVa- ΄4 =DHI^^wn o*w:aRMQ5((Ԛb v6@2 )I3!^-lO+SM\o=C~.3f /md5715ݬΛoe>, $. rҖʍ/Vҙ- y*!L\T!Iw$Sϙr '.o0?Icۑ59p8U.V AE. /M58@U_l' tx5צd!4 POOqw {gT A?HNUI\ZsM.F0ͅhVN<ӛNwmjimiwCfg?HlC_t⫮8vT/bɨ9HkJEbI%U6һtMzd#6jL˰BP*AI ze%klFKm%c?DjFd(~)Wo!J*'{wɐN\n|SL} ެf ?"~(+` Gf9&QI8# *(/jojRu 4ڃ2[~~|ԓJd.;Ynz VnLsOQ-KK>:/.oyoi=WYjW"(ՇM%)0J]xx7K'"W u'Gͪ("5 ђK*҇%ukR{n2cD|Tyi|m%;g=kQۮz9t~E%bPJDN0 s!V+|bo ㍦e=ybeO8Eu,Ai4)$,/_-_YȩoPg)f #OūY˺h&qN.:+2( ŀQ l=|: O&zYU߮$Gxok6}}z.@ZAlҴ..uەГA8IptTDm; qM$[})_y'=W<]h0nm2«m.s22Wګ@,Nu:sYTRA( ԃ{00h҇_|M e0O/'w bFoʘun)rSDkh_߉om3Ԉ+ON[V=6q*KgƘ%s1f0' V H1$|,צg:J⃪ÑPp*EZd:=g "/ 4Y< B}^I+ )"gt}e^Nݷތׯ\F~ Q*΀G9FY6vpէ݋֌>  C} pʫ7Ig!:B51^ޔW%1.A ӁvFgt$E'd5 |ߑ> 74RKUo5~xB5[H-v>{Ŕ~JuƙQEu`܀f'ԍY  hU2_>'iFB#<bO׾GIW9e66'jA^:n=u0O;ZVÿ*`ǐș0=liD*/nϖX| :ݫa5K+%W=Y@.#3iRQ9Gt=nsm˝_VpMqWl'by 4EQoc>9D $ߐ !"k3l=֤6{ Oz}5&عۤm驀> / ņb簮@P6lwd> ?k'>`QzK+ی  %— {)qg) K4J MѤ|\K.G~%O?I[?滛ʘ:]BenBLl6IIF=e+.C4dL *H`.j[\" D1X>0j$ a8jyE4 ذwقzYn x|&TW_i xcKg.HW*!SAږSڮOO}}cA%:pL3d ,q,* FAUzzE"YФEpoL7kv.f!=St|m/<|;1|B eA]*r{GMV2 wi^X4eQ@4T8KR!ﮒq8f׾0+ʈ\{8IWx#"X^y4絝lg_NY2( aQ&_kjϏI5YuyNn)6=X!!+Qr҉!O7  =45]G"$-)1b3ǰ!)+;Bˌl|AED!:W3CEAMEvQHp ڕQ#DaR!GEhdޏ:V%l͌$ =K1GVoY>?GD. XdmoYݿR2hƹ#[L>p*9 K dVQUou*gօ'^+ó{$7`}ϊģAvyoQ$J=BQW_(ؙɟft*h˧ĈljU(ɏ?d"pa7~9c&Lμ*R<젪7m plhTA* B)'Iƒ?IJm-.+Ȣ~-vtn{hRP4nЋ# $Bܷ__awI8 ڒY{VjsRԥLX{g}EGA3C9}OhDnlӦzؖ_Gp {[w\Z{U.N[;J@ TSB1gYW-Av%esmk>%,u~׷ %UaW̌[T#u9,%QD:2 V0 QnJ!BY–j5v}Iʈ_x]mI,ثlc J0ȵL]F:3S[̣z~G NT9$(LT`3nMCu(Qgx)H@8`!v5jfA VP`Lcw?GGO U>+4ߵPΡÂ^w JeUbK/-pO@4eH<Ţo+WV-'4$.c0מ#:#p&>ޝeE8l' Hk_K5ߙ:.Xw4$e_\Ц'1L-7DJLG=S c2$dӢ&otlH'^~mAӄ+bQAS\ ż7Y޿qR;5d^|}k)=L9S_%TaHCH'Xa8G(GGLߺ/]KU"UdH \L\Q<Uؾ@cNGk(v`:lFm }xkMq ع8pX n쀫Uv*/󚠌*0:e#= Ǵ? ^c$1 c3mp!:tF4PxVR9L ZصʲY~K ~y}'y';a X􄐗ե ;Vabb:{<QS^@ DRK^Ro~c?:Iʽ׺gqsYf҉S顟(` 0]UC&yfDryLC򫝡GdYk ]MjdNYoi=N]@;omcSԸ0z":-8XX} Q,1} v%n.tvkq;n)xiTu!XVRKAc!C.L^kyY Ȇ)EeQY%6t+Ьd1>g<Ԥ+۷?Ԃ&vcJcf؇kh,hCqWb_&w5^ L->3(snd_N}m7(*-.7uJlO<.:ו?Q+;C>,]b-Vys EHiBif;l wl`F"s؁ѳtufk c{UWq6]*b09,j [)}QMzy)C~/[N]`Q ~[Ceo֦2Q/Aj"_UMK#>3 bmT~<^Z rέ^X4;CE\*6+hJ.@ڜGZݴz@tJrƵV'lt4]\kFlT+h[ŶÇ(yLh+#Wpp.ɿ^D 0!/I=Q} zk{`1i+dDK$BAT+=Lo~VN%-rk"h67|㝀<̋OvL)E޺\Rq6%d?Ͱ/xsVCγ~O? @` 3k_>Hٸa: ᛩ7s .sl3oZh*"l/K-/+l#`?)/h>5zQk"g/=OMGؚR?ekavڴaur qJmȏ2Sl>q0J;MU ayJJj¾͊N IƔ0tE=~<唝 9xW@%&S6O?ǜϻbt 3}axms6k޻ܤYB}R`  S)N6dȊ%g?#0!}DO De1C%d#{߽N4&Ԍpn d*qk3^pDX?\gS{Jg\ZWr95L5bۜm)SƱ)+7u^!̻ET&A"8< q^t&Hlܘ:)mu+AWiYMb E`FS֎ ԞB>G|aSI(7;tΨOCkIID?ț<8$q"c(GQ%3Џ_b|yfCS!^hLq<⶞: Yj .(Ĺo!0wc)PF?| N*]4mHtãtb_w`:g3qM=;#Y} d,M"A)ᩃrkwn@u 7frb3m;[}Ѷ̹((B÷<9g29c7(QOxb(:CS'čeuU /a]Q$@#0`6Vd<{IĜY&_LbZ8TMg"a`<0f$m wHg WRYGhS+y% +֭^OXWj07Ev)sh~'[)"&a rc>ÞeFv|NeKz`#M.F kFf]B V$̇ >s3ײnCӦ>N0ܩfuAu- o&9 س0ʼI&km;;Q:4EhЫ#UAtƴWFTӾҝ,cDs(C tk%pY& v?kf_g׊\<̾A;dyPM2\qP8#|dׂOjn Dn %u.hGVڵÓǗP7uBU_}ʦ哒 !DUIKF٦#}Gў/8p+NK>.JUƥ GG>BFm]MPc/cITgHȲzqTSkٖo(BƉ*0 D 5a-ۇzrҫasK]9HSk,.28#cۮ!6ɎEQO]T[| -1tcVS"X`gô:fZsX]4Uy&EK<'SRǯJlڀuL ߭ K%6y+&(KCtۿi9W+w5\7i^g򎜌ˆ@I\ȫPAu@`ޝA{/Y; Ňs-˦}n՛_B_1 ,a\V +r<Ȃ4!i]2}Y""nMZ*;^l01?$!U猖5c*"Uv.uwV0bnRxXD 4zm[< [v${ ^(:T.^_ $\஬?Vvs5R2cw*FftGgEzٙ |n=%Ȯ*3R8XW\j,^0s6e33pyʁil_NS$Vj OC2m7יfpsj6Rs,3. 䫠jpSd1j-].1eVմkX:@5 17?o)$t(/Τn9 ]H^sٮxuۄ:,UIbV<[U4~[)gA!wUؕ{9j4PB7}d*yg,/RjP8bы~ѿT‘yG:`c>ٖ0CEP)k[fCXgqi*Ա=Pv2tkP +/0vY3<m"v_)//npT#ƞWnw8YO&є3 \XAsVI ?XFdxoc Cƪatmk(:v'֖yԪsv, 3l/cA?pUyV)Vɾ}Nk>Kh7,ճ<;ām%ҪBY-c>ׇ(fk#s/~^MR!!/ݞ1+8nOM㧵E=q甕Y~BJvIYRYli:X`bH_/e5K*rՔmX)z yGWRU.YQh_gv/nž[w fs@|s7WWFQ(_xT|7Y-KlV!I ^xtJJHhwo3{rd\:e>V6ū(8mv'f5Ͷ,@!_~ V{VNDX?k|=!L%ĭs8M,v:għ;PbCN\3m&e*ͷ9DA ۂh!/)dc+[ w|)}>ESCrj`Lm0O߱dqvѓ s")gճ ׵(I?21r9y;ٯFs6AYC@xS anC9g35d Mpo<=bբi8d&೫:`Ӛ {k$w5l^/Qx2և̂|{y l1} cf񘘫u0`?(7R}>O2ZD\4^li8LK-{gQrijm)fT0?TJεq_gpGgY뉒gJ3ykbie5.~:/=5t3)w|!*Hڳp`FΣu겿o fs{^M>@J]9-NI  DE'<|hC8%-hinJ/t]r/PhH*X+6AǑ8F]) ^YFZeϙN޾=>p\>J0n[#}W㚬4MAp232FxQ`?;>& ~}nC!x:gS y1I^w5{:w~;F0U4AJ4e}1)*y}syI7lZ#Ͻ^F| BRКpuO;4Y8P9copa&T*xt|UꆽWAwJ͐Z,{fE~H>͏ :faL$WqDff6C-Kͦ#sD=붎v&jsl=RHbΜ %]aֶ)3 A#Tr@o;5PPs\;fgC @2 DԷ"N)#s[+sjM=h|Z]>6-zsY[o*oɃ0gnPm꾭=e0Sؿ)t[9\EuW6Ġ}^[6<c=/كZ欿W?yѦC *6z=&M;2a{+3;]UDc7,lImDC&"HYBlAh۲H'uQOwxrP!TV- fw*aXinW ncn,a5~ۉq{D4'3KŦJЀ-2{kkcrYjȪ'};N-N ԟIÄm[#@VL03)LտZ͢r4B;㸭Ss(IL as[.+vv/>AXs 4$qW C8,2d <̴ð7v6~qKHKzf}|-yKcbeڻ/L^+X@"l4[SpԐrsO`LB usQ|XTzDH*3HaxWF8/Kf_c~V'0]9QE~TD\Y24 u蓱$<:\룹I>(Ж&_fhodB UI=T}(qz@>{ȃ0Ȁ'z d4vkNzUa˽f`u#>/z1l {UKoSK])RQ`OvYn lFD8N? ?3snT6L^MB,7:95 `@I db:g$kY@MCW7HU dIIc000vZYQvP#ĿX56Â2+rlz6' u`wwbq * -M(eMXlZGs.k(?0n>Dq=viL|@@LϡgǙۖ$UFw(F[9Y ^7J5kIEi97 n;dw NE[ZBIxOC;j7*&3+1_.gih?'HIeoݐs'>UaIoІ۫? rI H1{4""WiK],tQoE 3U&C./`-m\B)dif/|iOkx(!J5z )0|WJV2${S:#^ub0ZTR`vSJ&eh XsG pu wJ{,}D%d?BN;f&/$zc@Ldl*~+ݹO tj9e &֧3e9lFEpDa>q*R3A^abiZ!sbv'kit28>$\?O9fexT렉0mf I6ie)LiZsjJ5h.pG(z9H4gehceh vݳc)NDmbf!oMnW Bڈ@JLGj=# D8eeikmw$oG_ySn-|V<@\?CAh:7p9_bP!"bJv8q_IGp6D r20FxpC;~f^RF*5ީDz m|yk>N ursW5 EMLw;'e=ake꫅o W݄7^S Өm!4C,ŋGz"ǘkD.!z4Gb~ߧ&ʤJ%Q}-u8.yk׉oW\\ZC: 6+N7C(ɳ} 7U[ ۍ`>yIU#Fmwq$w؍jrig2'M,3R ]Ї޲ܧ<];̓1.tLBj+$ 5K PA3ɱJsFDjQIޜqSS@%Md# s@e۪2#I4:ah5/I\Z̾̂'0o~#pC]Ϡchw~ƌD>&k ?e9_3+{ # "cҴPQ;"9_̨v9hêߋE|c=.*!oܾH fS'R=CAn qeI Ͳ< r1f=") Jj_D^+gDi]*|* /+0qHԵ1,/ m˳USm)8x sMJ`E$Ι s>dʼnGG%!˗kIr y  |FeesWd%T煏&T0 ɉcm] N}x?J ~)V/#}Qyy>4ή0^/]0k$rbX#u`V$9eQ8=@0M֩kz2N6mϬwit‘xER Hsz$Ԑr& DAWϯ2XRⓅIq!v ]J:uj;#́).1Ϧ/ʺAFqp/ԒywQbLtgS$)ivUr3a)yy֋ZeJX6j%ljJS߱\ME_>-HDžHٮoMwd@QmȠVɁ5!6paݨCWDjQe+yw͎@ ke]Vr26#eg3 ~G59G3mWy^?È&*臮TWNYe^X<t;mK 29t{NP6us  \nBN3tΆ"׃*RRks *~9|D!3OeJaCm{%1@dm?5,\YqW!).f567D3>oEz< V\qG=OmBHOU!DٽTgc"sZT/UuªT [ݯe.fb1ƭn*.@_fN{ 2`HwjaY?R|9reD?EbަpLhci-VRSu~1O~|L"_I&ڬ1voM9춘zx󽼩Qʶ3{Z8* 'BK$G-AV&(ӊķqa{hn^}̞o{i^8v[XZc~ձ^1%<:yy,tVjY^.:HO>'1>^Oa̯?y+c89e }ur7do/@G*kk,l#7 S8{ Y- JuM}Y#r]tAقSs}Gm9])G3š]u^#"oæ=IF )P1j9`(-Wu@OY8"g< ?!LD:h 1I˶H bBb4LXGq(<OxQtYӪ;te6?D^*`k`r8+܌acrFd iS}~AhD\{5[a>f%ɯeȓ|Qynﯣi{jB!HGB^E?Feo~RBW BNp%MA_snˎ_;H9?ocjңV4DnB Me3>fkg1Ё!8{JxO5}Q#%}6Hg@jW#W8OCDFb;05k"Wd€$ʻ4TҲT=tApƝ7rzmd_a_D_)V1{:Nmti<[&/6*6NE{F\m3LQ6R8)&FaBPN<:@!Ծ&С;,"pa'ȀtC#K< әDΝ#4 -Tb>2: ªŰß&F~.†GpH. 6n \#F,L~NԾ3''5X/L&S 0Z_\֬#]\-5CJs錐%r_clCvcU?r(uGjs0Hjp=OT t:L+$tRT?zU9\;x-qJN7K]M4D9_xox:H~| t\Myܫe.`.AK2670̎.dw1+Kp]'3@d tYr[e !޿wuZC?i=.Bx,|6<4Ų"Sp]ka+˸&DjVb`Yrאc$3d3Jl!0h*dMۋ_لsfڥ8ݾp"0eYڹeg|r+_~FIG>E8AiA`ȷ;{1mEǨID٘N 6WOH*:B2xޢZojB.-K{y/3% Y*Θu>*GhE` b ~!@'#]x/_$u25@ŏ!1 [Lt+{xOzݬ҈AҮNZvq@WD}íRбopg0F}.( }eɴ Lt^@u.p/tF:^P. w7ʦs"\fI(OsKbo)놰4H7X8<+jEYWz;tsTmT9vȺOA}n+1`nN՘@[XFB8M42;As-0OhG  SOCe+̑;؊,܄D)\ǔJ&|7.)`dL `ȚߣZTkI5=g5`xv _/he`J%SQ~Qko\VCYH*Iֶ}1?e׀'%?V`,uA8X"5.äE~1({]*ilhTu|&Czbxoxu%g a&N^' @bcV 65Ytm+U$>E δݭ9:fG'8ck~+ Na%d߆v$Y\ϮQWaT XtFgU/amaZ*^ r]PslUj8n׌}Zuk[FoI-]C`+M +KD.6WxS(%1"F/Z}rEkEىGECI( NK| f骯q~%Kc6!?FBRz s'ҔtU@Egq3 Y~rQFEZNH'<~;0pE?)xxQi!CkpULǩOYJQ,%!mM-ގS%>P`::ڧd2JSxD/~/G[[o=B@#Q$& Cuu]#fȧZ Aãbn #(\>On݀7/k? e+P1qRHgϕ1MG 9YdgR^$pLNUvFp.v^xKԶ֕8'hinbREoJ,tGs:Ǩv9oMνzѾb|Bk0lZ(ܝ `퇫*\߳wD@V2&Kma{.~p;>5w*|;Ρdf0 D1 \<ˉ: eV{Jpyx x͟ZG)rŸgvE[N%]^)q~zap٠U ۮ8܊ W[avcQJvHheZwxۻ } /BC%o|Hٶ{}XZ``Wt<a#ZhKfwWS\@xܵ*" Wh (IyGؤ~{A HG  9YԸՐrM$f4bHZ"|~切,7)Qz[Zhrc-{zP9$@@Eߎ񔘥byWWkǽ>,zr;!rjSmA;4P [QLTE+-D~T?p`>Qk)8JJ(E$d(Ei2\0[,kLޣ6dy X q ?g?yrZ5Mbėfiſ>}Ryz4vJj|QrM ft|K.e@| '9R5K2%yzm?s? ֈ, eŹ4v1fә^/`O-_ }G ` .m*o;5(&7,~l>񺅡<'cɕ'7sB;2,$PA?mϸyDUI!O'D&⤢nB+}2A\ۻ.RHuGT+D^ B)nuw3!kEl>w?wSē&h7ob Ǹ/u `rvɀ#BFDݧ'M<\-KAU.(]u@ lb7Li/3%uAK !&Ia8GSA@]cB"s`;uoXHJnCΌRMp?55mp*hep҉v2aeIbx ]w_W7d!Ѡmt1D@3b ̢BBoKp2aV9ٖVYb'MF*qh'G{a `I3[L(5O?P"[K,ܩa=۠l̑Ь&ꚫ,g yG,~#U蠎V!5EBHgASd~:L1vy7pM7fܲLX"ńvPhOGPwo1=+w3g/_܊dV,Oo|đ Z zD* G<+`r\juG26h5, !MU?z;GgTvyC!ݼ\0 AeN(<3r躸Y#( D-G _2T`Nts"XXz B~KG?=NrbMz{Ğ%BR{@HES9\=?pCE# AŤ8/jϹ^V"?y#̃%68Xᢪ´a D㒨w E6;_+3̑x\}%oOE*5 VTX1аڇ82S& ԊTIJzpKF.oFYi'X@F{Zd0o{+T9݊x'Bi(W,h>^8J橄m U GLĻe^oU; %S6;0<|ׄ#׈$ )ʈIi&EgxͫM#\X LNdn[暥ŊȮdz?NJE+~I*_Jj v;s40t*@FujG]FkX4PF/2ه]~{CeJXW2Ips ݘ\w!! 8^-3qS?mgp?)]k|ʶEic5^=`ŧa*०ݸ(8Uᕙq:AcqWVQXTi[]Wxb?/ ʠbik"uf_:DED*]I5r}9t%\nr-Cd"^J}* |x.~zmr$&C:\_Y ej *&7yGfe:GqmL(,K\!RnbZƥ*$~y./-rՀ#RtZ*oC1]E '}^> `V]#&G~*%XLIX( ng>|DB =a4sA/L-b^bʊ=T[AON".{ڦ(8MfNp|/"4Y?1gcϱ׏xqj'ͲmDڝvx5L#~60ٛ#΋*Mb˨gdCX!D(MO5!6DWhV^4:i7ԭ\#ʲRvoL1ZuɕȦWm7: &} !iR{\hV81(UPZ1p}>ҟVr[v\ #cш^[B FEٗ'ݒn9W 5s9o9RKoj|@!^wϩb7*~bC#l?UVFSd _=7e!Pa(!Œ|C͵L2F8p ߁Rnx1h-lYt꼙>l0 'BWyysj=8р+8'𴨚Bzk ۆIת䪢T3(<8\k( ύ= A<:ƒC@+[<3 Y'BH̊ȄH{G娧N#$-zXVD3AbY6l{LR]ɈFGcADR6./N%RD,hѱjkγr~T:kua5V mUfc}Sgbb>dRwhQMef#^W8B6=1N{[#Ub'Owf*I>?r!Mz$rnGc,Z  [%_P]e')߻ٗܽ &5j`BtuMo " Y+G@8 ]5@ץ4>rWqO`tPNBNI' C`ErL, ,R/ᨈᏐ`> +pL<3.Hdm{Y)D")6$=\ i]ӉoZӳ ]P>cCBMqswwR$$4M | ;괯nZMl9_(LV 4ɯsTlH*kEWAjwЧ̘Gd6ﮡQ#¸]f0reyLE§#Ҫ&̅O߀39{4JS2T=XS)WyEIbQOt4[x}:eiuZ%3Q\vӲTجb&sKC~"?ПEmWm׆ &0Yzb62ZQ(_ˢ'iߝEG2V<@ / X9m?HB-tK#.JRȁt_;CJ7#z߸"*lMôR9d\n}@yѱLݗV?Z'yQ>"qozLlgOs?PC9az p|r( -g) m`Csj4ԒyHӬQ.pR.3;!1;.nv\؀{M9j6]$c1.+W*tYN'Y;p!)]瘑:qAN*,*6u&]!*##BF@HJ7REn\u{A55覍88Ob,Fn"xnp9ɟ4ogJbAW˟rF(JDv8S.r=R㜄G`=:?ݫ-?ncV.<9v xm\qe1K!Nr{fwO헴XF>s4o} 36\>>oo8,Q Lo!;/3X@3dH{: Lڙ@YHu 4;G3w{ ^a[5 b!`T ~!STo "4aj U2p58X,_'oPtŸ)#{6z ~b.]r~4mG 9|f ۅf&NK~j|џhH|/S{JSja?J3*5vc@.|G}ƞ)[/L[[ "~01s~{7{ȕ7!N5(dO?K;-7 B Y',lgZZ09U܉r'0Ѷ|&)xC0e!{)T Rx#r0w{YMy5>6%i>8Y` KhJn0trAL" ^Z"C8 zP f5(G05NJPHsU˿Bb8.HڧH􇒺T ޟ눪T3l:Owa*i% yOmt`:ҞV(d^ubY!IegY>S!ȏSLlf* ͅLaXg( d l6<[)AEp5 qδey/Y*;-5rBLf/RߢuaA .,Q&=<דNlO[b*x٬{Q[b+T/OtsQw4geY9ږ^!Z EN-Ut[u9$V/ Lחv\qt@Z6_ČD$.@&覉a:kdo)e048+( T!# ϜpqлmwA"\)a#rB<ϟ 2qBExL0~NsgUO- >'a "p(wG#($k<"r$ j0 hӺQm`4yXݲ.+(&MC<4/ӖtPb)oMbӃy~ds{7㬉n"|LVK;p?YwApgV Eϰ~11I>6 ;a H "VExjy|hH44ڽlhz ՠ&z-<;hg b6M:p9=fx>*ظ@ɬY%@uNYLW]ι+1J`#+{ct񱉡Ǐ鉜Y#E~DUϘA J4*)QX_7g[~9{ 1{DO&+SaH^%t=>|JTx]*HJa5O<7w; xO0 -fjaaQg a"]b~|5U"QFHNH'T-X{>N T,,vmH˖̽) hǝW _IcDVIVVDIB)7X 3&I0 VШD_k$ObjhG>N慻ս"|9:<[HQKFT -߀y<7ѿaMk Li?qm䡵-@U(;2(KUv`) ž#Bc=D@[C26[djoCІw/FNFL W%bNۭ$tqH wDw+PݝǢN/VS~\㻫K@]G=_@ +} Pt@AwK-W14pW*`KrJ>5ݒqEzvLCzZ-j CY::puO!.{'0Ugnm7TzC asW5_'1e2x7?$`vI= U Ze]5C3bPi'\_UsN+{_!s8!C[ތ>K~Fh(>l"^3wF8K³3dkL~w©k?Ꮙyޫ/TBVUq5<X /Zl썌T)7 o%/ byN{~!i2KUѯbiݦ]9}<?qȮ/劖9Jiuө$[j./hòc;i!#j[Ƒ!#FZc0T`hT >cNn љ䢟]EI)^AVK.R_R/XRP?oIҭP+YA3kV˶g{iH:iSCH(sRnΊ Zd+5 e?G\.G&, (R]E΋NT)i(_0%k,[cRMy'-5ի\%wPn }7 1o/ߍ}}ZZu,[X%TIc2_[6h[iŶL҅q-tڜ'> ]FKDZ+Aӡͣ.)U]B.ɾTT& H=xxdLI %wNu,h4巩NԮդhHlK2l fKټ5T T\/@W`Q3m{"owaANbrs[;C O+*Z]@%/E q39) ~hatvZMTNAxR$a@S7@"Rh<xujW78z$879vGwK2!nDhs~?Pl &3+i_Qc`s*pxer-yvw~|j5p;8t1X*YPK$LR$ 'hg@|#;綀[ݜ73@-<}2q pqWs/BR!Thgȯ{NKSu+uR=~bO9?3R-s&O݄{ڲʒlQ/(*_mKzT\8<@c.Y.ݽC=6,0-+)G^'C.10d}\eAq=2,Jn#2sO?ŶCy p_\GfâK!bGo:bK?ۑ!:5h*_a (u@0<O(̇opz,?5V*:UŸy²YhfI*;-G HpfHEn3QTúX0b3x4x"q-U`(ST1`Odtt;%=.91k&/@Ҝ$GO"DԜhpt0jђTBwϢΠ|p/$`d4k 9F^0SX 6.6RU\m&1pP-VeZvOb4(/y$q(ftQ̵ăK/#2"~CT1H`OF-+U(nN <iLC1h=v9?@@iOH-Ў^6XDA8k$ llͻΡ=Us̹/Wj#0goucaeSE+JRR.J&TSxe:-oskO@+c=\x!7-$ #T34̍'1AGV$j [1y%osO$je Hև4ϕ T:J@~ rB#%;N16&UIkH@!ۍU'mzi0odelvtWL csZ cGCFz}+R#}SUm,oolAo%4EZ5@?e53)}라fWVŌl'eu;mo'pJ͒8`_x`5eyIbSk%";w[Kk6D&d2$Meu:V-#VdR=Z&/@8R# !!x1oβ0kapQw:!٠3-&ŧPӻuu4.5CMOijTPgg'$]*ع+~xM^;2HL(i{MgPhS\mǰ$yǼ= nj1 s #ep{\Ks;/t SE01v郼O C DCO4O.);Kv4鮉*4y~qS _ IhϿDfNEdr mk0۹=@h))ql>~" $߻?ѹBU"/[JAHB;gl|FI\gKUuZ\]#p:/eԔ`na~΂^`jqm؆ױpRgt8QoB=$<|4s^174WwGn`բjj |IfP6ldAWuM`|k$6C͜Qw4.{?Gpƨe )$0pJn%[TA bQ=v۰) M}5j:|%!=Rn-9IXBP-ֲp3F8.f8&/RRIL]tdkQQ _8?%{7pjE4_r*I6Źũ,nʶ|/ O/@bK.JFVIk6{4Lղ-ҕnbCN lťv@!XHqJ*vV*TYiSrnHg7%߀U-j#_P(63뚄Cvu9n4+4y5[j3i/g:5MW卖t,̍ojYݠ٪2$vZLR!7hCj Sr]T72αNyB[Et9yؠh˩1HPŐ"/\B%W."H$)C4>R @?,;K> ]|T~w֚=-1Ġ۽Գt҇ }NwH.gkq q4ۘv#u>uo\tPͶ2[ϫpUSz5> ҆U !8\BTg/'{-uOe '؎X2oDB/*f,3zX tW7)AO3+@9*dhXJ;74bT°R2կ|fx7Y MghOfVdDdRH/&x\^ =`?RRAvT2sy)l s6wVnA۱jFW' Z$FAӻ t{㔊0v~e!+/{E%Ue6t'~O_UAm]WzZ֍E0en-fHLQw}f|_!瓼KkW^L-AlD8 B'yRnbDŽobߴ1 i`܃EQNUu7g +GdG_f{L IE g\vs˜pDy z-GёK*r/j wCggl,6:] \XtN{H=[ a g=тUvs{nd!ly (!N6@@!?)uf=FadنIdr~g0i_o֒~~m8KrTO N}i:NҗO]ԸD]I9q1F2 M*K5aKe]{*8E5 c2Un>^+9OFuHJ~N6k3d2AZv֑o<1?I׃bIK2@+\+'!ey *eJHj7sKnG L@8ו-j}Yia}'mXZ f䛉]] ;+r&bםo{jPohEy"Ad ^S xjCfv8#OxPT^$T*]T6ev?FH2=DÏܱ:>4KSvl\Q;:oXVI}lNe. ;bw m Sɷ~[AS@. 4_˩B=Tļ,z!bg_M5DyX\)#g >aռX+QfտVtoK a֮d`{+u"+gTrB)7i FSX{_K:leWJ9C\jɽH:ə#4so6М=uw\9EbV3xU?x}Bj ĵfv=E Ɨ? zp& Y~_pL8˺.ܩbSp2[;A&T\BCx79I_Cv|kFB963bOqӨ3 ǘC- #plN\- HFg*1ktl"кrbTRI2@Dq'TBj`@-n.Υ4 ׮1@7Nxt;eU P;k]=aA]d7!`A|+P&U!^yф}ː׿[80(1oٳZu:;Sd_ayNW4qF?g$c$6< 8hI' >k[Lh|R:n\!j1('a6*IVs,dܖ^k.HnDCq`N!5~ csV!x v}mz@5-S+xKabl"9m"УL<`W.n D'SYwYX'@/ DƆc7qpvՓj@$f9Vd]Engxφy&p٪Uش q N^*#B _IC8@nPC\ݛʑuZ=pH)xkA4m}T- V瀼`(GKՄFg q8?o~i^7rv8ҳ/lbRmvWsoЙ|S}ceBQZUog:XyZ[('D,ڶ 55b^Q1yaYcj S V`I|ޓYz3=.1܎W/Qz e2~>4hgјBҩ60G*-x`+Zara F-wQ94?!+]~tƽb6W_55m }ϴˡwH%EP}ݨY#!7 qAT{z,&j7g=ʖĉ.'qyȔ G9RR; #^ 2}e~ 1BS] Ԭn rnb1Yߚgh5\ثQJ$9y~$uX9CaiF3U}gs~62[ SBk0R_]7hֶ*~(>^ˆivXۤ@+S l@Y݅g쌋+/ԸL .y\xaB2龹~8###E,bgzrbMòx&3lOWx< RCP&6UBcɞW=6 1{āW"Y^~7]Jr1Zvb*u~ՙ+,aFC<6Es{r D)n^:NJcܯJ$E|l%?3J0нƮ cujA1-,xo6@B9HF؁ k36Sijd(Q%9WҋRj<<40iw%Xxk3/֮E_v;80 .Z7Nx0u (,[WYd4qb̬~_W&hi/T,~ [l{ȐxWU ,E]'mɌPӨ?d(DOG,]1(I}AM@mG=EY0=Mճԫ LdۚS4}ۙ}Aoxʠ.ii]6U" suWO@s#;[z|| !% uz-Ġ*WiB?H4P̯c d,}ɋţD$y雱,`qaIa::H^f{kNMN*[/)929TWKSje$yulMQEtQiR8ZHNڏaLZ (wTv5{c‰ܩ]nn,I* =^$gϮ!|?'gjĆlu(q!EE DK Vӎ&k,yCXu*&R]1]>dLVtQOta,UJh܃f?R0x>9*ߟ[m34;+enZn Ez1LH"9~ 2O[9m [#&%Ӽ=7)B,ZT4!6w1(/VЄ-9?ϰ,(5(LU`nP[.vmu N4F)H$FקuQMz 8rPn2_XhΣ߸J :x^c{Ri #d%4/ "?Ş < jFu8 >t-t'1V7LV>*֪{/ \(dD9*ۦ$S|# -߼膳q  lTxps:06MF qtϿ{" Z=4[E_#aY&^cWPݘQel(c4rͱLkq rջlq:\5"I\gMAZǚ ;AUލPMО`yzvnKGS[IB A(IND@UYb`noH:N6&pT .x$H 6dERi 5TL!/h,z[1\)5u+{Rn@bŌ*h`=5wx`k<}@bl4DD.O:o]欩w1#XםK:=*h7i|Rj418X(*߮${*6R@?лJψ~}"a33zJ$)'y'$W ι?U}L뎾&Y>ƒTm? z{YRS߻ECzq) d0@le#얹if'Ef#H (s5?">ȟ $Ưr ̻$x̓ꅎƵD+7 ^!S{Ljy+cTRjl[Akm@d@k@}1Gyʋ?z1 an$KbwN>떿 fiٷRW>1# ?eLˏ,l/c{ehD+ RjU(+βUYg,<ǓR3>Ȼcξ"za#{& p|r)x =tƯpqFւX2U ~s㧹쮿elKEա/=MCg%sRTCnܿAIhv˷d\`^Ri.iC+ K\ġ'|_ F @VFٗ!ܹF3|s@[)Fv7`yW"E#~r\:w<]~\ꇖ@W -^OAʿgd Jgr-VQ;ꖦ>&ch}h5_NH;9a$,sΡyvFq^P NJ(,$/crA!7m+/oXuwTX/GA%@wD%G~O N|w-jy?&Mx@KK t{ Pנ۩ߞT͂^ Gθl_ D:l Hu2%םQ6]oA`M4"]*Dfs,WbSPU+'# 0(CSO=U`n9Ȝ"Ȏ+c4 VULU>#'t`F8;孓A_9fV&" 84șDag^LƓPVk{q&{a`ɔZY'|G쟓Ё+44]apNL.MǵBS5mvI$diO]5d!C :fIBwwdj%{>_$DvlW񸲑Z2P䷥Fo rL! `O7WIM'Ϲ \T[Ȅ'BQcPIp_4]~{}1?7%x`Q% 3Fqbq(%WJԛ5 & |' Z ^DMԵ9rDb"*S4ŀ}Hv p!W@whyOSnOW*GUx`WIW^:yd:C d\Of6x3U#m+ # nkx)A#C@Aԭ-QGIPkuJL^[M<2fpJBQ9 M^wz_\a)D6̦W4!&!†!d4;:/6Υ,z#j,1C1Ʊk^Ԅ-9ʘCٓmF,*T7y&{@!}6Hpj(E4:7c P+b]CB>SWbf~sXW \GE]<0Ħo=].ȼ{'x'sbx*>2Ig}0 ]0 ړ]MZʷX5d"j`(!H2$=l2TpJ`+7{]^8$X&Ieq($홿}g̖c}|A/ލ]2!}FB7rX滘I9OlN{(a]f1xx$UWH#!Y(VQ)/,Kg*$X1"~,4A&h/TjI84S-o$N%B>y&7XI*yF]}U ۬ +IeTZnLkXw5%)`X?uQHuid!'}ށvM1~aDғ5M{>{2)isAH]5Vŗ!i _`:X 8+Dk˹0;%A7I ujbIv$y7OVnH'6dpxL)83 [d4Ö3 8mL>A#O}XQl~=:"Mβ.+w94AX\.gNv[TZ 5ڄ-εU/2VQ<xs35j;oVZN.K`ߝ4yi,lpklοHnM!?(4Y0jZeL>`lUc@gJ9lx'zku9]@+Pv']n.^'LSp+\ۉfXz~Ү6(VZ\, dd~^C|)@,|9@t48syub [R5Zxia@;*ц6X_D2z2㋎H`W Mt[ :ϠĽ+WvBG? (nz#0hOS`麟fk1,V* WO݊q7;9 Ա9<@ef=&s4 @N[FEF@}xZIREf:|So^^V쑟иw-7_@%{bOq23,6hOLkE?vcɊ #ݣQMI)tUU٨rӌ:Nz^h4 RYmeزkK'lQIY6XG n*;6)"(Ψ_#Tĝr@ھ&D _ -!D-}^&W H?nZA_ꢎ(81`jYf EueV&3S2|vKy}GWǕ38$(庇iF@E}b[:!xVi3@ ( .fiY0[`VcrP:0w< ZtuDn%w3hzZtҴS-WZA]m=vfLqS#@LE܂- (cYp_/W3&e)A, ئ0y1,gz65h񍶱'viȄ=-|3I&I(i- lJy AT?lls l1D@3M^+ ȀtZ8nLmr ^C4l-|ͤ?cӣ\xn,*0T$3d-hBg/+mu.c":tTɧ@Uv ) $"-e;D="&ʊ@{c JeeG-{OhCQK>1>Bk5_S rȢ~4;Je;Ϥ6Er6$ gMJkR|:ǚtMS:VFϔ ؎Towgx7O ֺ/~:q@D2_$ Xk^ ޱP3"rȒY\Qa81?;|?K*,-F_Y6d4 ,)R*qe}(=;y=AڲT֔5'DЛ<=եjH} 6Sb7J) BJn]qƘm~V}#2> ;iqИ|CtTxh"wFH@=\*vE 5עs],,31&i}R6ͶFMt?z~t2y2KGSb] 0X$|YiM᫩3:h.B MͬN4Gln w Kqjy"FjWKqP]`Tnv fYWH8T7I _`"LD$ZS8M@яLӠ8nGk!y/.~RbIy d=nL`kQT6 ^Rtf`)|v&+.RyyL9tN/&p#FojAplnDs>̹RәY 2gV%sӮ p9^INڠ͵<.brZkray{Ẃ/YNCOrщVp$*(vT㆛l^Q "ޘ!{UC'(^@2x>1]BcfBo?FVKGuG؆m@ bE *#Ɠ"8Hu k::'mp-M*5}0SU[ض{q7HX ]STע'a؇ ?"OX$VGиX9NҺyPϝii T0=b6K*&DD Ȏ5!ȣ%jպ-W ̯:MT'뗃c.\E@ٜ Ua^5WN-D E酇ޑES-'Ͷk-O|L'ϡFbR2bZC7v?'{)8NI7B; <=ɓmLQɱ.Z.v('/(tGϺh#~z0kS߭l-_a]nO3w!cZj<ƂzBa q@_+Vn-ZCl2|'*wXE''ޛ Qt9Xkvh\oҷ@\\v.koi6XAF3܃o8tHlXe_,)T"кVR2ל}۽`^x%aR+l ~;⣲뀄0mq~,2c$޾ID  MK-W˯$Zp! mBB YZ$$0RjkƓ:U M@>K1=FR?U޾\m#p';@C+ P1{:Ԧ12Vqj,;:uj@#AI ?8DY.eX~O]l,ސ ~[(^\j١I`FYt'DŽL{Gi}kHGaAfT!jD!0ݍ e?"emci :'7mXt^vV=^aC A别6Ez}t ZEhB(  hPgL)H<dKh_{w>~t%s6ZbrxHZXj`μ-FQ|8">O/?q6pPdAdrHa-/ţc'OF6e0V2#7ġ]7 6gCP78Œo@ͧai06g4֮EVOh>؞ױs-C?6I˂BN8_xFlƒooF :5m3,k'BSGo#ILߤ7K%ӘM/&Zk$/lհn6,I 7~l [ݒ#b[gNBg: 3Y< ;\#V*@WD_\G}!CFi㰻v]2R]/Ƹ|v(Ӯ'6d@K3s.7<~B itì94%:G ǽBC_i'V·ly "` (F"R݄ڞו̫[q+_3mutGr743u.,Z33|u;EUDӆp^t5snuʎ*D:}|mPQIuZUuK/uK򴅿!ukܚ\FqE_JS\nT! ٺJV/(GZ[h;.ESDb]4"ПkE*>Z57q~FI0E.NWt7 )Tt HMvԧ6F >|'b0Z Uvs7IR]wƸ}1#`%12TX3iq.)4tɆߒ! WgQyEZs`&D#2Ew}E 1ɰ@y!%K1LZ xs.euc RZk8 "LE MaoC-Y^;@oኺ&O ,[eT"e#_F@{1C5mӰw!r 0] Om h\~EqO 9 wSoGjkxdT/vS%X2P~a.icǐb`Cy{DAl+IQzWDbh$*-9bVK)2gв\f^S=_b1$߫"c]02DzI-hJ)b~ݓb|٩ 1' R/^b_`? ( ٥@b`%#eE Wٔ7ax2nㄪX5ZN2iZl+ٔ^mW""F mX}i`ckyv+GkCm ƣ"EJ6{7`c?Vy`i>EX5{4/ZzTzjFe<n1 @(=v ?8 \ְU-Q{<S)-JlF Z9'G#j6bDe|d@zܛ*:-y9 Yh[O6ʅN6v[<:{K70-/L&rW߉3:F~"b@i(o՛ N y2ĝ:X\Xp ۖ9{{Ք}aNL+q%@[N"U$dD$lHw5`UQ\5ڑu\zW(>z,:|90L)(je `vfH>V"sjF43Jr¢E9 `o@fkBvJCz?콽a<1[2āqp>Wﳈ\^Psv+~>^g hSx;a^,ˠ)[:6FC=d#T7ɷ<(Xyp  {-x˟q\θlaCp~]>u$]ރ 9ћ.~VkI9][#wX ~݉zq`zX~(f00{r@E LBw[ p ESx-@wQlcm@H1V[z7`n r`5Px _NH_L1"0u?V ]ӹ} W=$CQP)sXjpN@9n9 ˄z?^PWy8LפRY_ݩCswlPxa٧m s>l<Ȓ+nXYVDbQsGB_dkHW|7 3=D~ NA#}Oji.y1w-%w7ZԈ H?<\ɻ?|Gk$c;ufhN 7qb+SU0 AC h &elɧ0Ԓ3+29#whO}KuaTϕX(5oOj}*`<\V03H到Ӕ4p'320]| j $N^k;- aE\ wS}uWP]UcsT0)@* d;n%(gJoQw٠y`\Qed/ S6o bK YxY1>,?M͘TGQ#y 5Bɻvpi [\ܦO(y&?ZtUbSTO'b"aN:z.\EIL[ݡc ]J"cm<"ؘ&$ lb.TҫиUTDY[mD9о/:UTjSuO:C;&hF+  2 7'Oqep\UiO6;RV> ki0+CDW~:~蘜j">NqqEϼ-#OČH`+Qw;l;^7:~ob;y4`'ޥ*`pSH%~>јX tf2d,\yR 4S1SՍ+P.%5/ /9!<8o4 geim\+E7*ua,zsUD1=YJ/z\mDY.SJ8 _jzK=2Ni32x1]]n:jed6$R0:㙓QH+셡l\8G%#U;B>fTU@#n N>` U逐J;ʆL♏F; 銂 k[w% mK.wg6@M[%Uq)A*j8+¸ ߅ uPtp͖G;>JL.SCemOPXf~d{ 7g%SXo36EJс[|y1Q$NsM|@B3G"J_r7D٧O12mWu5Ghٔ G)f7+hq`ýwB4Hv\04 G{gpHM\?$v5>z_Bt#A]kNp*_3YU\u鬔٠qؚD*OH@,h/= 9wǴi^O%#to0PkEO?H e %H(=b(#< Oɦ;;P+⨺VZJk"3X;J&.uiE[PiQ~HM8yt ͘r:G,$4TneƩQ2.A`0|Nє ,u=T8z YK۴(BQhgrcAA<cs3ʝ|. ]EZ%Y!vaۋOMH( s\A.`Z;uZ$ qUș۠a՗O-0A`\7ynWCL1Hh7O%ub]+u^&+bs>mG<)waZB:8]_u&n6zTJBQҰQYj<+"XBu x?] EQ&|Q+gF [&! Sbfت{BRgGmVKf{v*>&|ϳz1C!O[2݁58sh M9YG$v !P*!MeٞktaNΖwX( @FS1h\5͌#ùSj\gT) '405;vθ)dް(J [ږ[ܯX᎐;j]s H {YW4La]oNjYsj:8(nZe%зBH$Yw>Jd0 j);sTD% ,"Ǽ>+M2pz'a8V Pkk#|Jѧ>$n? T5 'N-wΌ&1Tq>|MiDHyzc{[1I?EaMBJ0[^HA>Q#̗ˇW}ϓ:̯ +u~] 0*'PƙJnGκ揭GIqa.;fE]pXYܐE;.9I U/ktv9O0n ;r`~?%.,!<)^Ojʀj@P Gpvgnvէ-@/Dڽ)n`ͼ#k1O턹0j rR\Az?D]D*z;m~,_q#W5Zcbn3C?ϓp-'?RwGU$?*Tp`T/sEj:4h6ˏ[(NvytLa(sQ{3U*Lq0lk\Pӧ$JK2c.?$FU}_<9uMT1Jtp~Vb2DQΕUnode)r!n̖6y>\>vK/{! Fo:.|/&g!eɤLgՖCtT,#NmW{v,Z43ɭTN/P~> LY!O9_).DGk-9:{0}Ӻ6D?0QCV˥D|ETyh2hsb寸yKBJ)G40r(a~Ht 㨾ŠfV%)}1xTuI!.KeMl54ʲU])az avG̝/ 5 Fk =u$!GL>oS9sL2 u7ʒVr beEWvMN&;klp~S[2_H1v:g13L7> 520Q<3P^Z "7(dL,N.}BzJrzisLueseuWt mGpp_c\p(\x>\9&0)?5V'ol 1 V(7>PC0ԏ@>KV1 }Th0̻d9LE9sEЀWsސO?ϟuк; tj ˾yYJ=u(|FIW%׿=~#W x6w""]6;Y$F->pp钳r~a]^{mrz$Bwq|8(X(|4MSOJ\,E`F}p3s1jPjz.U#їAc__|O~TUÊ-P1t9(&L@dhp ᾈi1<8X'8c B]:Q%&\.ee?f]SjsOO4U"ycy1y8t33(C r vO&oZ6pqz2RO ^dPYKM6D~|o+Rb^b.7ޚSp '}{;amysDw΀e5DH*GdȺ>/!TD:FTNwyj`, A"оKR+asJqB >綎\h8]L9?Zu޿UZ1\˫r2s!!껻&kR1R` f.f +9O^Ȇ}LaA4U\e%*fQh&@ؖxQd/˭ޠ4 JiE),չ.rGMu}w 7i#nb˱ HtB")?xGiH>V cVWq\I:[#qrF],#b!f30y+I{#T`(X ?aȂdAi?Y$Q4*KbO}AWV-fFl}XDϚx1G )=i1Nw}zwmDz߯%s cbbͿu%RM $XT}:ˢӋR_KZN#++蝀%WM%:Lh ~y< NKst{ g^ڷf=U%77vZL1Ý7V㟼Nza-ON>N:X[(1mvK&jAJ\X/L{( ΄4[j/`ͧF=1js8OvT`Iιj5GW'ȺTľx%h d۶PϘ\$15?F$"q) .C/kgҊ+ As~6;l[5dVbs!M/(E C%c3i<]t.)֭JG"!*'Ek%6iqe:(be(>gݣ&<;ҼVmmǍ2g ";wb0lg/C8}tL(Ԓ5?9BvТG!ܥS6"Ҏ2BK۪BC+'ks?tj P.ݱ_lfb+9q6L]cBtrxlh1wb|.=NFf}rUq|1',M1CDŽ$kȓƮai1ۜX$_lԼenmR>Xzx[p硺deKy("!YO9x+Z%@zk+?u pF#‹WRC@tRud$>ck29l㰒a7ԏ`f;8%m`R ZV׋a Uy)/[ΪqtHJF A#d2@쮽 -%4s_d 8)̦MtzMHnGƩraVm5~|:C*ԍB^`G!FԳs=dre(4$ 7=t(ˊ0ӴW%d|Hl7M9cvFljg?i]٨Ktpd*,xEXUޑ{Icw\ףzi^H]%zZ]\Dyb!2.R…Bwr7Py(mCkKF[(]Ps⟴m޿e3إz̈́փ2W3?;r Xah2ϴ.J6mڃ&c}oc+y AgMjXb[Qk~8X${)X#TqП1J2 uQr]ɟatI%i*XH}d,ܶ?GXf~;޸y:jT aJ ! IEm I .V(Fj9*Ӝ]\C 7Trex.ܱ.-cT`WCP(/MEf=$Q6Iqs~nyc;;md*DD ],tCd p=)~-9Y]8gkӯg[tGQLg0bޏaS-X6r~u,\S=~n4=% 9g/"f: Ix+qv94 .!= hq Za9З!Y& Ƃ5ϱ)W23/L(9VKjWhpf`%-^Qb=5HDZ1azrrs $ 1՘Ζz7A_ib/`z#R͕s܌r'cܙ$8T_O+7`%7:U~OE'v񆤈W ( (z:=ؕ#6 ]B!]x3G 5 *tOOKlB~Mx1,קbjWYQDmmws:v9{E&$Z10u{mYtr*"X qN(w߄ivs\Hʨfe-_$)JQ*!XLtrIvp#3DshAy )Iy'æC&Ydy)+ݝVbp#')^h w:,Bq™/Vhtt^SʄC%ϲ ,[1QHZ#WC^yU O[?̳ m#,5rEtXǏD{uSlteg'P9(ȌulY9nθ莝lYLD{}D/YH=`>jI^PmMxG1W exGA?8Ww\"28^ue&i3B)P*zW 2Q³A >þ'>в7ZY?2"jttI!b'W3pR,YَF,u|alVk)%E%oa; Z%e |V= hO4_-xc>)>DDt1v[HMYIz}*S)[h`Z3+c5&_ Vq~Z9H{u'5:bW~X2,,Z/uP3CŐKh JH{3.$肷(ROoSj[S-rcy'V3V25e5#;`Btktbr?bL?`ShF8̷lU_>b&̥JL'PK0qgȲp!=6:dr^; c"vv.KLAI?͝Vf EE8r@K;+O &NT´OU]'1F%O"6ƈj(b9r1+<6&n? K !pz)s]N=44qyhA\ CsT=P5tʤ]|C e=>E'|V{E$ wo4fPnq֗:8]<'@|K}~{E-ˠR;;6|ċHh[)b:934gZʺ$bT$y[(kLuF[hMyW'Ҁ&',0zZdhCHɞ]:ĔGSkm 0"sUc hlBs1*3 ݅{oc,g_<˱4j"c?g0CedN.;+XȚVN(U#G2 &)g*鱠tdEڀj6UGxvx_F~2vSj39}ϤҧzĊƓډy+.^t!盠t|'xևPS׵ҏd#rI$ *)w9]OIQ6 + aXUT/G~.nLP]Q7T/,shGHśO´8un@wIQ)yqI3^`J2_=A4Ru{w|?Ge3Ca@ې{gfDvN,JW_hDkH$K.gGd[^, 5%p?vvwJjv ^ zJcW4m^oh<hh Y%$5m' xwuw+ۃji +-(NMy%v1YL ̼G I"3qYƸ![p4CS[i2oŽuLq'灍wy^wf!jÕƛw>>cKfZhxjA{FpgAt4Gds"j"z[QY 3qe%|zj"Ek;LzE1|oݬPҹKGR JS'#xph2%W_%ZYGO=wb/%-@pX4y"J^C!'j^;Ņ)dho`(*ވwmν$fs.NuT樓Eàn+_ZKpV.5<]?EG\_2Q0ROw"Cp7;W5bXGtR}'ui_L_~ 0s=G~S:XƬr:d+rf_~pPnAqd+s)M!سBIm 39B )P fZA{FͲmDB&Ķg0A((&r~:gd !xsX$.@ni_"a-p?29Nf]@4e`cp BxE Oc1ES*)FD;SΰI47@W~n3p"/(cI^DDWkə4bTUT[|X!ݶZ6<0NUKGrBz7K04(ـa1 SN:X"PM/lһ'%%иeC֯l Xi*~i*cSw~^,fANt]Xܬphޯ 3fl={\Dd71́"pO*2?n0 ᬸw|~+pXO!o;ܟc~RI )-**D$Jj9c& WZ7ǣl,{ʡ< ́ɥoFe q "jہI >"I(S^ Ŋ{ÕMl ̷.%(z2^Zb\ &OBuKuOHn) HM[J)Mش"w蒯kg1Nd( HZҩ[%(C̕q7FNXaRr5"Z7&RsG'SEH;ǁaF#P:HTl/{i~8fc X!a^/1yΕkWPTGuC?~@\]/UEC-*)pzFkmmA>tJt˅ uu#o `x$uݚ80n8{型z hC_Ey3TXs9fBx={'?p[&CPg!'V\`.0vgSǑ*4kTX{cxp$K V* ՠ3 pRY, >p=Y/1nԟxvX:|J`-}x1U"t7Mz%;R(45ݰQkUyakGNσx Դ.kåU)dF4;bFцW"e 9MeYujLk(.*E$ š~v `P8GzvБ }"+aZ{!ә8D=W/9h1t t`,z} rq@z0ɽInAQ6_,%[!dSu(nWu/`28[ߺB&sRHl?RN2Oݡd 3jٯ`gl{^x+%ֱAMjk}r浘lX=w$~$FQV{(\_*X 0)@زͼۇ?hA!VʞBsjTJk?*%~<e?3x.>9j _;0րgy0GFkvߤ~_\6O?gQٞ m0O$Н WHlkz<=2;PZ:mf*F ,^Vt*P5|2"0f2/O=G»5RTo{0N5n*>_Aa& f%=X㎭Y`7vˀNm,aU_mk **bFM`lݨeXB'FM,/ GNQdd!e>T[ c23~ngn'6fٿ˸Dx8yq|s܅1uDw/WՐe)?}^WEك}I&”Ve\4XkW*^28r/Eƽ8 sKژڎxKy XޥwΟۦ4:?S~Eoۀ  ώӸyc!rݰ}Y]mlp̓{SJ^+Ӣ'V"5]$'-j6u L˿[!Õ`4:nNJW+}#5m$-k(n("=ȅ hυQ.aPp~JG->~Ny.R~<6crt~Oʃѭ`,)R_9W|h\ c[(o$xaigƞZؗLcBۉvlvRB 2oWSA/I1ٷ#.Ar𥧹`L!(unUprࣛfL E[Dr˽df*KOeE6|,'eUIlV@hJUW**# Hj`mĉ_>û<(I*ՌBQ?ٛ3 XY}Z@Т ֬L .l CJpE' R轱=gUDsol:=}˶6de1^,9"@ a;yڬ-,;>[KOƛ ^n[R<YLΝxsX\if8.;ajQ>OqƐclC?4έKg!?dIM%K'1A4eVWFwﯳAvpA,l54`LGШVLN~)]Ӕӝ`5@-wL-HXʍ`&ѣks3\Lƕ}D᤺6G|Z-QiJӚw6c\2c2`}2n}&8y=h3ɔ7@e舘|bQ!3' #9т[ǚ7.QW?P[o '@Ŵ3p+2;9l‡1e] +3Zj u|Wiq5,P^ac邼T8gC,4/n _9F,ڛʹr̎I怆Y9xpL 77Z3,+lRUDv'Xݿ,bv(ʔ \E{2ca?kHu?kˢ|VFjh4S1悋b,şNd fZ nm-$,S:܁F}#6<; &S1 m^'L?z=t3, 8BL}C1_zJCCN9Tlx|7=%h9YD1:RvxB?N?7$v3! |ڿN 1ٸ':r-|vh+p(|.:V~iÜd pԅ;`.8O.6 |,>S@< |@E(;HDHGey֌ORK؍r֦- >ޤc-mT13Ԑf)pXL)Қ7t6:1>UV#DcC[LHX'}( gJ) W6blSi4 3)eK9Tu+ n^r:F֒\Lo<᭡( p#R6CPˣo8\aҪ=;q>k)\@cݯ13d^d4͗_+#r'9;ϱ- `ieb#æ?7TdF˹?w6ӡWRK'0 T~2HM=`#]ΛxlWy+ce9)h2cxh$);v {[D?v}Vhs'3AO0M Uj]GT=OwjO[_8*/,xw d):J%rs*[&+o_hjl`7H 8c**6 |=聕A' [rUV ,<76^@JU) ׌#1b>j y?_k2F -| BaԿܧY>z[^Oܱ/ajDZZ~c.fGYQN{8;zm2X: [Sn \Ǻ:̈́(uww^mlͅu0SM7Us#hv@-z,Lr j1o8ӊO+rּg2|eK"#wk?ClG&[ej+ïZoR'BJ=|F& L (}eN BY :ho}i\{X7=H($Pܘ|cnIa[G0ns7;U=)s(^ j/Ԩ.b'3 [T>[+DM`E;Nu5kY%n-bYͻpɺt:XLl2",'qr֝}jw}HhͭvR b;>nL^qd`/]v3PDԺP7Io>ӗ M!rOsa ^O7yU?Nc>R]LYzܱad>!M`lgW +]mJndnCEp$q)v7$MS_L?j\r=OT\ dX'2#Ls^CD>/ZNo򅗭-YtZjJ&C'(I6B2A3z]}1(78ʱᙔlۖz9^p^HO溱YWCj6y ',]9@&1 Mx}<.!@I1!}'qA P5"%::?zwyg򛸣rĨ~B|-UgddrLD._xrĤP{̼k+ЯоǬ0(:XF Hu2m+#{:a,H1Kde[ڜqЀOkto.F6z0 Xt{ړq-vA}F(9Trnlч8/*8IE|b(RSx_Bz?-驇[^HAT"YÞm5(Ő4*i3hch^} : K0sUS?w&x2֖_Qے"* t^P%g۔yG#%9 *(i7rA_Šy-Yt7˿sgC.օu)y ufKG `!ӟge&\lm-is>SkJJb==UH ey+n1T@c-pQx֥݅ P h/dQ)EJį:A[t=q̤s LC:q#֋0 +[$?3n`uꇈ!1Ҳ j(e]D73]XIצRbANzq";Uť^u8<NjX4-y0s_ڗ\=YU`t9sC_O9gz>FponxR:pݯc<-ȱ*CtcP. A+j󃗜Z)nMc9Gڨ%U}ox {O]ӀonPlu/f9T$޼HtbCqtGe#o%L֨}[Л4(J@}"QDҨ1LV@ذ C`x- B29e_ 7JhO2Zn:\bcy_/ﰖ@" N{+,C{&+3E^)8G;Zpjo\3X}r_L 'C F_g>4 g#D}iړ:4$e1L6*&Mi8L1i@xՐ)NBeϢ@x+G@{?Z/['끇 0]\m{Xfz*#Ez*sNM!ދRlH_0[5ڒhd^ ks׏P/˥ 9V#&`pRvvIy <#(f:3D ,=9EC_);4sDl!V}86pa;u1fG+XAca0,߻{37S p}+ҏqYn?&"E\>? GmZod7ƣزٿ(Bnζ aՖD.wb@$v̌0\ y GpƉCyVT3hď6J! f6[g1Rpa_7EzF W{f?YρO**(1|e0 8!7t끕=WBK )A/|ƙ$MH$74?Ru(4FSDe{G)WBH\>!T3"U2&I^&B(Rw nI: ĥ0urIdǢ?(khg~-ئ'!7E7c H YT˰(^jY9EzlΓa $2f9-o[-T`cn< {0 X|eOag:ATR ϴě $;' c6/@n&UׄosΌf.>B\fkg/izf&G1"=N;CGVP>SeT$,2(e|'lrDUlRq%ec.KArslXfԇ/nU\:Fl,ox2e5X5Q[wכЕ#: 1ruP3h *w3 g0 bj.';rKir&>[ ov }\e@*;rE@xbc|%j=5EnɇC5l ^H =(ѓxѓh'0j{Ȕ6 4T)tb 5̹k}3G86ދ gV+Ѹ:[!U'z䄢^5[J ?*\6:{a[I-i^R'LO޷9ݞ;SEPKhVPeAMo$B CDk ޸㭞Xq q"/I7 .)Np$ *(pP2 a-(k~=`)S-cLNl(xMuۄjY{?KE 2/%^%ump!ᯖ4.qcKkN'[dӂl|+ȽT S44NdML(HCӂր$DEZikmbv8ԁu3钤2{!'%òxG54r<~'ʻ8Z 0I3[f@څuV#^߲LY-g25}v؝*y@pw=,*\c4ڠDn҃&͚Mh}IDU? `$^@L2(BCd(9AsM&q[ ]]aqE3:mG3#u z{2f\9n:-AU({)4[m%WpÛ WnhJ1/e~>$'rྵѠvFe(AIvlyN[?? "Pkb/9V@rӐ;0zY25"! @n'80-K˔~:Hyfmࠠ3,եyRnDj)&2 Gd%l$-ZJHlyļ}YHɁK ϯtmyt#Nf LXmS$ɱ[gdi,?Ŭ~gѯXF;k܉:]ݯD\ZY0@&qx0K# }?*1z/"*S+ Xߏxr WQCS? &C^ȸU=v~(awi36'=8τkE٧`nT+u)ps$ O&'_)ͶZAi99Xn HD{"u%ln_Y334[:M; ):g?Iغ1uD{bQD&Ve菿#r yYqhO0s$x]8ؽ%A%̞z)4h#2BF PvϿLpP؄9@=S0r)\gD yҼZJC\507C1gNmy>Aٴ8.sUU99`[`odL8^~/Ғ" eZq:WjK~9 ,#S)NCL¶vt'#`0-ӿDSP(gU6nRiGV5]4#\◌哐I Atnԓ>_2HEs7`,Yvoar`x*eKl}IlQO#n# x[3Y[{L_;kFzbI{qxhQK%Sݼ)`JСBVSFd˯QcŖ(l^{͠uْuA)hZԍKӾ}-``lhɎvJvT@RM$Ne0ŊWV߭v\UcM49XΣ>4} 'by'wrܜ`!Z.8'M=9%{=rwQy^ :ZV<'8cG% *oxT=a栓x@J(%K9sY3+ ½sх\yqWos" oedOΰK39~ 5'G-G8^})v'hVQegeKK>;PNĐs-֩:θ=k>,w80ºV0lTiwZSW:cID0s+ DgDsA9W%ơ&ٝD4^3y켟SGkIMAy%_y6hU2v m#|ʕ&UtG\ĄGpOp-uvaUm@z*S92zhY7<21nwGކ2_i8j")퍠;P\#O5OϺ)49ot0uIXO:Q7 0C#~ ȕ re#Wlԁb H`,lXa]@s"ߺ~EWSg<[}Bp3zY ߶㥀7߻?Oy> ¼g uլTz n5R[2,,$Ue Cuuݍ}k7||!F)$;G& OCDh4NM(kVӴr; +#yNꧬM @mX`&[bL|LiL@QұN3 "*9NZ" 2MZw= !|o_&2VdDyq鉆tIR OC'7#XXK[>%b |V~iv睤бY˖iER60g3*'/_1H_03M)[3;{ue@ P 7$cDea^եp bVE,*pVLPZx嘬=9z|LHg.CDL;1ϊ(*6/O\._r.+q5' doՁC]TbİK$,GB#>䖩Fl W!_3z8}b-q温ö3d]$C?:4IVK:_1tq3XB;"ֺY/̒?<"d2f0DJwKiOvU G@o 觜:jObA &(k_Eh[CWLS{bLfl`7zdI_UI~ip\I1%K˷nycerʶ}#c%X֚4GΥTu_c;a痢I!f@@_s{R8ҹĹ"VAFCA~X\I >:GIC#KU1*a{# G4j8A&o .:hؿv܍Q>Vۼ,n͈zBfsfb ]\o.wpޑ"L! 㺔!{ߍҩ ݋#إu3?A^c w}i ޶1b߂|ƃ?oEd>nhW-#o ;d̓wՉ#tDG{t< wb:ߴ< Tb@1ܢp@T{&DU6}mDװ`Raَe/sKlS4MiML}R>MTi(^~,~t|>Y!uYmm oI{Yu;)5p rC] 32빶>-ѮݭHoXCE!H$r쁌RK4kfYᓮPpxTB$OYպb>g%VAq\\8 !r9{Z])%#NPብ+pv)t N~ǖ+a."]A;Dܹs@w2CRXZ4!@;FyiqP<v7Z͠DWy7_C\inXF˲Ey|aUqυJ+}e1FE'a8i$; 14U9 *q7 UmhA+} kD5D۱vվeJL5(M[~FBp͒$2<]4Xf(f h장V4.5NjSE^Vۈy/'x.*t^~?EH?:'ι?0a%|mVht>sTm:TCNUi'AC6:cMQP 1chs> NeR2w߷e60-M sw(ڈӅ_y3Vgzz>^NQŒñE!2Bˤ#-G|5+ИC.R-+mhe$h}Q'kCF2kH.vO3YSt(RZo~/| aB2Ev8xl4#wB ֆ6n94~#ДsDCuv_p·v&fRA;5ɼo3+L* 'o*G&HEЮA [UaCT:]2V˙dnGK&{h_#Lu~ .Hxө1p/L5ouSi3v3#(KI37uvC/i@7Ew U8^m!d-;`Qx62$XVB 5堆'vΧ}@W`1ڸ緋[?{2\Hm 1 { @?~qw^`|_l1yJr u"d$/y$t +?Y EQZ<_jaM㰣43fK"I b)BR4?35ykޞ f7w,B$5`S D` J|Ii{|X? B9}ݖ5ĩh1~/`iZX2k=x }_Sh;>$_%Qi ˱r& `M!i $"M|t~UN,4But |W9%~Ƌf!n+BH8$BR+23م\JJmb:&W4~{4Ҏ9GB|l$~̭ڏ2ǎ0c烽j%xE(mF~(w"dr*Sο_Tqwfui [$sv* @'wZUl^!?"Z=Q ! ` B k2Z2񞵈{&Ί8y0 )nw2˹٧cyo[<+ vRK!aiRrLmKeɿ#Yག#$f/s $0IvoR Vͳ*56!/ut~Y{{kZ6Q1eۜvyu7Vo8%L=9@uR2n䰪)m|`? 4BF/N@>J.+5PSȲ9Xd0@ S&H , [I9/myySCk~fS&H8?6YzA>*gڼz1BMFbJXNy:vH]ZIaۊ Z5-K͕g.9Bf Vh&$sG%]4 (2 T%j;bxsƁ(ew x豧o5?ٜH2GMpz#Yj9uVkq4 Q7~gVE)w@՜ޘ-C03wo̦␽$Vf}3_)LSpuv =糸A܁H_ ag\:-%؀Y1Aͅ{_g]|=:`$/t?L2Ozhb=dfh  pR=fcGޗb`WMjr6~ ݸOA(0UN GCS |vMu;+FXUjKL"FDW]RӒZ^@d3uȈlɆȨ٦A4(O, ,3za)wv&E/E-m.s۸#!U̬"iBJ=ѮAk4!)Ҭ\nЭG;1cmMCb!4t0ݻz-ܿtbMұh2V xIďH7 h70ONd[`388a9" 2L^^?#cp!MZ[$mJTSq\Oȴ˼*۬%»%f:#թp ufwpj塐_%C1{ ly=CYz}3ZՄv{=-:=9 {%PcG`'^Dn.nx̚391ޟK}P)ƑЧhѶ8X8RȪ$۳XЗQ}_zٿ]GIYWkBo8?&T<| ,0SUg(4;0o+Bq7cpsb  t 1`hw%(LK;Pgzd4KɆ&ot7F6PzME?toH.jRtm†kK-uUNZL 6i9 Ig Xꈦ F | 0tlz"jzCjۑ)_cͭ3i/fs70 +Mw٩/`߄<{+¯P ſƒӴQsGb.$"#sJ&rXwwj9 ~`&\EO#R 0ҌAEpRDa-"ߺ@x⶟@_oMuX,FL-*ΔO B#unӁEJ1ߍn]RJǠapƖ Q؄qdcCF ?J@`p$M~e(/' 'kt〕P[W;\M|vIl)R)_Vt.L@9 f4oQKBMDt?]|*9F>8}o35efOaηbL|QP?bHpBPUQ.P Jٙta%#X泶07HfFz9V\.';gO2߻Z{y|I Bt?~m|ܔt{~*iA|\, \9J}l\a~-,QPRZk8cC!@j'EJ<& jq$w_eѦ5#-ވ%ڠ^moXcK2_ t,lFuxJ3҉k!2MRAUTjהϭEt-QzxӒv6jD *P+Ž~*[yN[Jsn>OYt 䔆v#d'PƤo!nD֡Di3xVVt> 5 #F @dGAX@FKFyS Tv*6E-<7Wc#We =RU4cKu53ϝ[(d㿼+\؜*jua5?´j[w!ӈ eV*e[s ;!|uuɖID1nT_G['` AV98 w@pQ#︂Z>>Gɰ,J.]q4FHMH!׊!ݢ[hu L%y]:62WQ j-\!*ŝ8j6PW-lطՋ BO| u3ws6|J U-#QrgLԍPcݾYN@B9jD #\Q&my?[`kAmIN.ZZ,7x> C ӭvv(%tqƛkDRǣ# Dii<ԅsGuIuAO Lޅ_E#әiD[ Eo6al䲶o˚4PӜE}$=FD"nfR f 4k[kS]F+Uyc>wƁ wAAf_ː_XޢF)l˅ĵ.!a&P?bjtO  g{3xJt& Iɐ\Z$?T"r2סn)H?y,$=xQ 3TQ\U`=h9/]&\d2 jWwrONF ćD4hDGy/:oHO)*{uB9;F++r_=<_#MS >J>8?5}MdWTNNq{ŋR譀#c~vFUd)3 #^G9(3VzɄss_@IԎK#3+Bƥ&Yzq#3,dk/tcw Cd85=cW7u}2IX&WS z%&j\|A6 ˒Su Ywp[q?/ksM[ fhbNJiŽ 3<ťkGI@^Ae}hq8б6 W|cI6fC'e/n0>gc N\'$ZK) `|qDb3 Xk- 3x2/`sʷϚ7RT"lrz9twSl4j 9S/5md!;~Ό!X2W,9A2e[BR|qm%J};W_@c? G+yKWʗ4˶wL@[u1 H7P?G`+WGfiljQ-$g2jj+@a+,8,$ U#y(Ȅ.VI'd@t9R4[ՠjUmQO$3mbX|-A^4%Dw%\3 v,:P悉 I޳kѝX8:#Ȼ;1UηV΁tc76QPm~Hv!zp33bgmSK=Huaڑ搏5t0whN-kdl%B ^픎ivZSq! ] ۫AF'XVn?)6aXt~B̠{pEyk6TqKr|Ju9n( jnBͬ*X3a׮`Z&(MhbuW zw~,sf֬{ i/,6Ws^Bǖ*Wϓ6̒̍eq C[^P KAtxZ=ܮ(:HɼiL6yPX؆t.!ߊ;X:7h!ߒQdn .o^2J9|=C.4X^YQ!G:EYMi~ZB̍1t8^hI5~ow9::,(yWl*dV=_--룽1z[ucC@QRp K( '.& rYHbwW6B+;z`+E#멕T !?YMd1[uC+7''ηk(QQkЄ: 3> R?h& =lt: ,k0t~B.D$zM ǜ2X업~1<AظW)K |nVc]܌ya2#$ΙQa& e4U.MB y~iE@F>MI41qT:Wգۜ4&Ct:Wi?< @S*5ϫ6\94: 3SXuS}Jc*W:毮mh^] S_o`kzߛp #  ԇxf= 394@-zBA}7|]ڃzXOe*A`>-+Uo %j@_?!>1gHn"d]rы1니ب8riWjJ;۝-u"BT2dx+mxNlD/ۻAve&}WJd)Vgy*M}12 xMOqƵje Q\ʏd0ysqZ1J+ o|k%5GL2'4z ߋ34YP/"lo\1C폿UAy#UuZ{fԈEvgKotVMQIJR=TSk(X{q<}1B/w,.~$qŧEU8qciojH?S Pݴ#VbAh1、RKN׳:gܾ+42!~~Nr)2i'zt?'xY_Zͪ"v򗈘e$єQ d֬CƬ8ʪJrrv{gP/[cD{?M@-:ҕ.4FIۙQ]Yi~?S"Q?@X3ɮZ]b!IvU`q\EB@a<8*rTvX$FyDJ NGJV0*a cq͑B("|nzSdH*C5I›ƣ?j8w:yeSɽ/,Ǖj{9+X`B숐\ܢFƐ2%~Ԕ圢Œ;?;4H7m%%p Q'0#z1|>H#y8QTj$_$RږP޼0:߇F׏|ێ#Jղ dF<QGt(ҦiQՉlM0T8 )5A!:{ SQvP4q{)Q Tۨ얩\a~{MtR Vw3|7aoy0͊ ݧRt+4`iîTήpGR%)6)JMIw(?IvYʐ{| dg鶺,1Mn&hcUɲb r TlT3?9bgGDBY}czC(sG#ɐOx?Yo:A*MNkLۮ)׽h4tZj'L7^O%֎u`x'"x>CO{мUҍ,) 5Éνj C\S&z v]"9 A?ڄ,?.P0b)Em5 lyb4XL+YhUMOU]sQh"`K׸{06%#3D11ryh70^fpw1NWoE "#&n{D[b{˂b-@4I`,hk63Vj|OlWA)/Y"mgAZRD]2KuJ9xͯ⎪]ߩpZǼ1^H[Ī]{0l_3z,fz>QryՂbd"wIuЊrN'ˇW}ns1uYY#,ȅLg;X2Y٩zZ{~lXMV[$veeG n3C|#;~ hPR[Nsq$ӥ:PR}D*Cn"k.gYP8lSwo_qQ$6h\Ws^R:\(A (ꌳ硧wAˇ--dY*b#VԸh~3+>!;lbo.ȄbLhbN 5cN9$C_H0N+q_N1u@tT l1 ܒ{F;ͱH~KG{-3 o6ulV""Y[GWvYX:f8Vߠr(u]Ev~/j}Ƿ*8:Z+Yzu[l0 B䷟&LkiitDynqF~rWҨ%Rv=f5HkZ'D8nL2U=3`oՎ=uڮ¡cn$g, {%Hj_ 9cO YffP2re%"Bi=C_0FMxL;ӓ7oaEA +ΣN [+0iAuՌWV뗆 D bfiJ.>yB?[nܠ}QmǷb ЀpC͎Sϝgk ;\W-RK'(7tpi'GV}:V_=~}ФؘR]ER(v&jz]`ZWYM_mF gD8J׵ͨ-҃\!VsyQ.yam@(8|rc;P2ŠökG2g_ @:?s5z; C/EC08qLe uߜuRLyFKNhx|e23E%[g~u+aՠ$-,{_qg'VZhLުV1I\SgpYln,=+F-9K΅a˥Xh>6#;}W'AFPiR!o>8I! hڹ12d_nH'cr U?)?ɓ!})g, ~΄ց goZwާQCj,{tc4eos9i| a7^Ŧޛ6wP R5#̵gɬb1ֶ%&iFQRO:xX5S;ތI:+BnKO,0|zieM5RKt7".1{ 'iu=uX-)1sim;eh]8!m2⧙Xl-EccvBZ EHԧ7%=Nf'fʙCJT۽>TTU _l5?'zpEҝ%,6MUh`'YbC̆!UҎ Zc/$y!vjr8W#Z߳ri*[bhJ;}j1]|=\*}XH|9c5[DJ56-qiK񼑸X!?#րyP>hvgzܦ:x2{ d9B'};HZ!wW_W14$ik[MK] Q ochgb{ǗCR ?sBZKCF-(;;y}>8|76txfeqm Dߐ {ʩwh5Oҿ613CHL]]O)axndYrN$[X 6後rėphH<x*ҏnGyo`GЂh;Kr$ 2[7߸[C>!CGUgD4"v(Lv/ꦦef}67l"^V>НPM +uPjtNKh; #O6oDsCL4'Xtg&a*Ӗ fMt˹6*甋]jL:\3|.Nvp7rpiWsͺ ,yrl5f"P9䞍#urÌQm]=yWK}swBx# 'F 0A޳?>qL@rͨL5ܰ:YvxsG˳{`|-@-{ǬQ˹k]վ¿IptY8TkKT8 Usµjl-'_ptk Z=q=t ׎VqAngaQfHU9 mDD=#cSAFN)9Kߢl Wc06EBesPb& vy< q XHۊ?yAfn %HU'QWvfie>c._0@9>]/2:|^C z0Uyư_3QH}+_14B)-vϳxg4(Rl%oEŚu] ]<~q"ݾ{dFN< 6vޡUo&%F,18Zp^0W0>+XJ3 d{Ĺk߶F2SŗޯIQ^0wLy 4T+{3׵@&EbPd QvCv/z5H}|#Y곉}q| 7Zmv/Ĥ>j)4V9CG,} GfmOHy/1lOJҥ]Mw  s )) nL`u#KBm#qD4BC{65gc hbSlz91;crj3bΙ3NHXV]@ P rP ydO1Ja(!ʊg~=УPB"f0\7(\!cn51;\zu ػ3QȎEG)\EBI7A%bU,L՚4 x`TjYdC fXdÓѫ"aomH$R՝B4X/ #|M\ <{N"/on9 > -xTsch<` g"Fm ] $d)5\w*w?K6~ffši%1݋t$Lq)!2 7g|c}鿶&b#ek.afhg=1'fX9W&W~´t İ[oE Bhbc,a.u~HtR3KNDK:F2(T_6X(X,M<K{!V/eK ?3@ܾ {cj"8B^ S4?B)kî`}^rFVE&UʇiUs;Htip󲾚l>)ij>eSmr3*hZV^x?NأsOE@@Uy\Rڿu/J}R̡OSEN TFQ7c0$MNy-"[Jn?)3n_qԭ%)t_':+YMw*Ǫhd}}Meou?!)ϚP9;JZLNw8]`߼(TJ2Tm[Kf.'6rj/%M'̙ŝᮌ/1k ڮ9 86ծf;gL 7 ቎@F<<1̞nI8rUv%{C%?źTz/ e#u/+SŞeG`zMlY)%ڳ* \B%MU茽ѳϾ;dG}I-ΙaU6Dd`Rg\ } hS8!>{uHC!gNM}w VF H|b+F .< # [Wn %VPEq]zy;bu|V9 _6ȮAPҲϳI%W`{9t"v'"O=U狂.'oepr[cJO/VZr HOYJ眑UaMeg[+7mw&D݉ƸU@!?b7SR?i4cg:[ntqDΜ\mG'td/rs/[Wj+~LvXҞO8ԅ 'S4g;R5Z~ϰVt)* >f`[m"a އqKBw- ,Btdos>=B] 9%V\˓q%(جj0b,{|p.h"h]i16"g!>_X<ۍT^d~IѶր"&lw8;<*L ΂e EtRS0Ek#!q j8h L)6ǧv _ 45}c49/.alP_2v>PSy>rÅ RgCK7+yP4]+wWDw bg8ש"p^:Zjeͳ3q8o]:A}~Ú.]_:YWZ(TŻ"Z"1@$5w,GhтY #3$)eP*:w_Q͉ڭ=X/ .wc^28!’[^%NebMw7Ń =ύ\=nRB ݻ 15T'e\+KLʀ_ܭJdOY+um箃ԝ+YZ(| $Pn3`y/w m#V%E5O+,L)%9P= cgX$BiW#' \L"ik:PuNDtU&97As'~yBDgZ;X$I-3VZS\V|EuP\ngav*.r>QJ(! (mc*Azz8Q7}MdtNj CWt}iYʍQVJ[Xݑ\M>]]žj'߇qiI}+D2c_Z+S7>̺K\`H)FjOεQ)L*6"0O3"IyNm8H} @R0 w-q3oÖJ9uh<0v\bˢvCĚT{Mr4B0|g-1 dB윉i PߡUq=$)rkZj &Ԭְ0bj1c-_ס`nuu0;yrXmŏ!a;P;tE+pS`e7V3⥓fLgf-.2JBgayCDc'S"ܦUe,sH4|"BKC4i {m7J\ZgJeeFoiʇcŚ'0c BeqQ n 7ze,I9'av=ωJ$Gjlf8(I*;f."BY}ku@L2:ЗbȒ(䓬8CƐYc!W՞VkGOY9!K-VK(ܹ45D=Ur[Ip=qF" :3@N}m"+'Z[k=b&7EP<*Vv݉sʸLO7*wU&Ty2pNw w;жa"x\]1N]厒l֘9}>6FAt~ 3f̬ح7_>Έ(fA_,\e]cΡ}^ rc=J ɕ-&W,wBmbI?@K\/`{XtSGϬXD a=Df=3QgX2ÃBJ[SmOskGIN-͈`M{oGGSUGEOV2B 3Ui48:} ?j,%2+$dy ! *b=z.X'pA_ۭBDfrpSAJ$P,I qz9:_]dT >ֆ}>_1Z#8T-dG|ĸ):A4"aƽk_[!t" IlynpMvLo:5J R% f׷7nP`ј ,к ,y9Vs p*I:D8Oe4uo %>rKdX-ڻ1nf m{GΩA;wN0ڇXl:+q_ik62CĨ_~z;j9i.C{ F7P-^d=Iir☚1؎QjО˓0{3{hgXr+pҐh-(o쓗Q;'M1k­mNP$8% ϣY#2K{^8_eE{yZpQc2Džl{TGC1Y|; FS J*#VXН$74x\d]7"c=Uɘ3j8h7㏓Kw чz`OKiVbיeUff~AdHㄯv7q0kmXJ2@rg躼pxU$טPBX%-phy H8RI6&)w|\z)I \A7sʮO ILU=8(9zkQ*X5ZoutM~gn Q EG(u #SCْrv\d?zo^G->y3/v,HN.i4ҵ:'}ZoDBހJtHZ s8+ 7Jf> @w^ >D9YijS c,kn:qt }>ZuIrOyriho0--rNUZ$0T[ktXC_Ω/t/NKb4c; qK`cp"H,>Ge2׫cvf""hEP?*q%1[W7Xڭ z;1PĊ*g .H=Ȍo?Vɺ9VKutzH" Z Y哚e>k&ȿԘJܗ ˌ\%|ElSYOqVr8Au| hRoGTa/ܱj f/Y tk󜨸rBt0UR ץ3YAl<O^ߍ *lп؝>ؖQ 4<zZs"Bx@5WHnV kKpX:J '^0_!/2œVC>r:>-6d7Խ}ԲQ >`%8!"s1>[,ǂRAY(l 3?>0Gw[IxTHxl$JM/pu+,QZW5k b{g@: N$Oda/:wUab{czeL.R]P2mR dsqGԮ.Q˜<6Y/T'䍾ڊQ*,Ҏ'< R`m pYޜt=T3%+im?;JSpMpfOy`8'iGk-BbϽ/8$B>bLl|BmDȉ0{^ni1R?u!¾̢ yً2A(n۸W8Jxe=!͹p "p22I[SxS_# Iew׫61JZyagˡu/^8 "9(=mLq?ZU<#*(ӸΝ&I<"yQr8= .X2ʿ=Xpd- jSeG_oJ.Sҽٽ`-&h~E:1y)TCoxpTݥ/XxMjJ'mr8#xK/xX$: ɤi_ +:!{x_ЎQȯxkoa#|#g=}פF 0}(8m+ K쾪;). Hh;տ킀eoei~}z0zpq"vaݡP JK`;(o=U#.p_[x!6%ݣCa* | 8Kl~i49e_(bxIYtrX6CݢV)VϝD*r%սZ1V8<GzjWː$sWyc8X2yc-yy"@rfq *~Z"]> o^ąg⫪4*$ SI5{ DՕ H^6]0^Aj$5זWɔ]T2 ̀jY2ńUoꟖP3A(''1lL| c"hk)CgeZs",taNR;V&u2K eD/u nI vD5j3>GNv=:H4;t,4'b'b!_WЫfe>'aK~Y[^c"_߻Tmb.9( XTѱ1T8CbbvðfΝ^ԇĊ3u_dBBEQ a0 tLa Xݪ9:O*ihW] Z7vI+.xnN7^pƋ&#mVMyז*Bfӌg Pԙ]hB۳μ`n{3RΑvlrG8RiZJ|q=A'?X.4E$A˰fj r |qOGI#{ÃԺB##MzQqLs>_/CSlrblł!@h+ު`=L}`-wYkV`d($v,=ECә.0чޯ-^lj2@>[j^'b'ˈ\"K8xSq1@=( ;vVdՆuXL-c j}~R?Mu<[]2|,o6!=Oŧ:oሏYp$}Rkn7g4;.)%V},Z" s ʭ3 pw}wz6խdKU>i-Y< @)w^vyzZDca>fՔ`y%$.m}֫YܟQG5 x!t;=yq2u}[LZi._'>'$NO%!pьRIȼw13;SJyqCsɈW1_!W kB]_V],,Vͷ"m[&綵ISCa{/^`6RmvaLT?Aarjѻg%;oTb,”1y}9 bF$r?#ADc]tqrFlze1jN> 6 wb:5_鋻J VPp #lCEr S!! B>ޗNAXZgBk=w#x˴4 wJTDwm>}OG.sn`/9 Gd~^;!}ftrf{_i"imH_j/%~:8ax& W4,k/UQ,h"EbYݤW6}t,"Pc־N3x"`>a(!Hc 3U l!!Gŀd(xMT+#U%z`uf 6ֱkN\$3SjR҈7H[,KС>21{`_~7Yjg-Ts7- @hRɜA VM412`&ȘeYp,}8jE:k-&ЇSjD %rߠ?p^|Їr_ 7BX,æ$f LEldi JF~јLuX!K뺣hc~uYdv"VvON,.NdiFRŽY(VB;4b목x=| ',n]GVll^ $sڝN\Ɖh6bjD]Q?Ŏ;JX(>Djs5UwV尫U4aG2x 3Baqf4z'7P$BBnmۻ{cn(Q'꾺ȰB.۱+WK)g`DG +mnFꄾ#1;r&Zqܕ~ Qmm`GCa'T2g:Q!h֟$ZJiX|?(v@y .-z$pF3"]'_utRZ/b9K::tm@N~ޑ@y1"]NA(l>MUiێtݧ-Zu.W|ȡ.(adӆI}.4`Dks q s2/*{ ";0X#!2UNo ]{fbspm6]|f B@CLDybr*cMm$W6i2ﵠAFWpj>Əľus>Ue'1ӿÂIwg~p//-iWkFVAG)hflM#ټ~Ati)?E{BNU!F}+Cކ̇UȑYݭ ɞBˣA" "w+g CK"4[UOѫNZꚓhBN’4]]R qa w pq.> H&FbԨp*p6GOg^&JZbo0/o]Fdt8ϥкF8bvZlQ)BN,?ڜbDI#i,`p8^rcL_Iݻ%l}HmdNLdJn磄D ==Ƚ'`8zCXP0 <yY9Û9AxC׭L.̳琩:^<.Ny}]KFʈ)=+4Bb,Op_Ȑ3oxmŚ wH^|PM-paʋgP:q39';xJKl*. ؼY2;mW-pN~32^aېLKذ/47Uz0KǻA }5 Ig<,ȫfX]NG!b>umTX7qfc-&)sp`eWn–ץH. bG 8!}(a5JgfԾw̉ܡF9w|&h]OG8,$%K7U<'\vo 7 /r UIڭo9*W{:TjxrĀʄWEĖJٞunpf+W Օ>SWO" {! (NJ5bm{oYh4wPSF)el lievvV \ D}ˋwF&z]\l"~]I6K'+^IhfCy r,ӗJ"3%z'I%>l>ʼC(1ZuZɥ _·N-<|M.[1;|BD)OJudFn\acݐ _n|ilFU3}9e܏ǟ#w8%אʮjx6%uc_lj{]?T.fXYҬ=Q)w,Ə9ZJ@cp{lVdžѫ&>,m%KWb-$5wtpybCXQHϷ>(--ST#U)@w\A. &N+ݤT2S ĤLpg YL9+F) JAKWs\%#QHU@Ȗ,i# @CС=K +SRlШ[DwC#4 {IѽGHb¼,aWѴn֦/L^ ӃE/K&X Bbq]<{UH X :ټ)Iw@-ޏ&f'j}H/pa_tH̀  Ŋ=&o40m"]FԊO=3ˋ7[Dį+uŦK r) NiXɜUx%% ]Fv0 e>5ud6lO_*3l;h&Hut@:BQo! x.R0lɈ7&mhYy8تL U>G W@@Il2D֖2'M&>`0;xa]`r)dcsʝ#|Pq16lF̴e1u14ؾw.`N`K9c!ޜnYY%X,"¾8ⲋ }Bײ͞$_7FSU?u ,7BQ?bXts} Ɵ?=%O{aGB:ۡ,U?w^YXt?ʴ' E%n 98m 'жuBR&@HYb `Ohwz=82> B@*k%e874R1[p5H_W:l4ozT> `iu׬-G`3AMO+07H] i+^; s)"oZ{QJ&[?ȎvFH/q0jVl̯1LIY .U=SBi(:{F Q/mTJpx4pT$̴*-fTw@Y47MzK{@g M1r?M(LcRn%#+C .Wz\*hzxZx3žQZ\Oqt`2^ģӭ& L#Hsl i_PO |o1 b,$XpQ"vv_[)ei*k"Feʰp(˯{bG }zr"/7O\@*nr wU^$&:!I]HBr39d/$tC t8ʛ1mF/=)_c9eFH5Ea$ -:RGo݅b)-nAԚڱ {W|~*s)J](L|knzMV9M 'z2op(g[]*Dsfk!?0:ǁtkM]HKQܫ]$8zFNL\}LJeqx0Ӡ\fˆ̓cKx5ۛ$q0-կ5N6'ȴ(ov 1A@he5B!A~E0m:a{O-&YZ&e ʖzCXwbRn<?Bs"Qk p=rJ.DGU{ݶ!绽u4QC#3|N͓Jc^lf[2&6GߚY&=s}zi&-hľi}/2Y6}LAN)uy:*h[GPmxA-Un?r _5EXMm3g[9vK (p`Jf#m-4 Co[1rS5NEd% RGs9@t[bf/Ӵo\jH7?vP҄k״sr$hBCkɲ]*ef:Z8fM)]S+m-.[\S.Xj?.t-dt/wt.!aun@({a#O%b(+ֱ+XN,F`[ ,Q -rZWt5Sr'ЬЮY\5Y3qM$kQFOyz5v2=g2OܻqpܹG"gԮL\ށ2~IBȋ@̿xn@NXpi+T& k?{@T(TTY`d<`@OO; }l_ȫSލy:y\9O*]V8΂M4[%ֺ[L.0v Ј8##ߔ''B]]١eч{AG!ݛmJ\6kkqSO3^2:+Q[+?ʘO*jNҙ6Ck6u; .EzVws SY M@hqy3+ "h,rp{e(T7+wc$ЃZhy }@!\Z$XfmLxZ~.hȷ\IA-{ނB"Y}~R%CqU.ZlyA s )jD;RbUݾ3PT9@OR^ڐ:!H^ 37]1+ }&-|PI#3!t;ȌAO%1N_qMv̡g p iXK9Zw>"4aPdKip(H(}r)mWN?e9a {b94x|FG-X)^6]RR҅2,^TPxV'7D\%P{=^;?~!-MR~JSa/'+SlsB8t>_?606&K P~dzݬk% c9z,?!Ndtr6㘫?9tqO]&XB4KNCB+S*u ٌeXĿVܘ+÷F%T8ɶ?nu'攲g=p%d@AQfc.ڲ{\Xl,`v`ؙNȮj~ 2o(* }DmjAEcёD!({Q٬t]S;R7n5s/s-UpHj=p? ^\(`ζ]`y3{ ZG L-”'3en]_,juqvC2 ӾLfj4?Q^H`GA2 N3;V}&74Γ*{٭~S'5 GVuUewyekD!Hfg~}Pd,!'P߽~Ӫg{ӓVْYPWRV45+WhX'K|=dOZN2aWP̗)[>j8aƢ- lҫ8}kƔA!sgNM#Qp@o>y3[dߵ[pqF.٥2 )tqUC߭ TTX<ɑ Qv=mdTrf &m^3Şiǿ% E?p\Gc g[Y6(px(<_/FϷj[i&xv t,mCMo bP{@)WPPvZgݻrt"RswqzmMv3PcÖb9g\6UzlXUQq )ݙ2zS9#QdkQWZι' `$tt/Z DbF5:j.+m,vap.]N\amD ܛdn{ j=t*nZlZ{Z6e)Wke"#ֿؓ印(Q-2q̃}Rq &] &[]~E&,Eݧcr0d6i{&HaKW0[R 2ճew\}^}vQeG~D*" mq@'r;Z9e sd~/*?U8!츚=VyC v(؛GCc!3#<[<}PEՖ.*9HԼYWlEcOBO_o[4UzǠ'->"'1=eGrpy # `!Jg V_zhb{\7`lx 9RV#&^:cJq3F˗3&.d.Z:( Ea2O͂¯ST95fߡv_C;mKW~޴C_iEO :Ȩh蘎.Bö~\V6dS:si~H,k褁IԈH+t!MOǀtW9F"R_kLȲ(k}s '@A @`>=QzŪ~)vud a{:K$ V\@Z,e!kMSL2nLXNhLIQBaߢ0,6HP}γiXl@sI ;-#>-#w) I3_M5yS,Vl9<Ș)DUWfɁeVGL#_G& 'Viz$8_W'璽%W~VO0'|#S~8cHYQ_#!NUe\/M(љ}G_Q:!sst>L{KbK2R& 0PώLlw^VvBȌE6IGTp1\fiMzxg49 szPinˡL):E+rXf4g/etgT|l^<}'=Z1/:X7q!R=Mi#X9pPat'in?8¦M8˳CG c1<]U a>knA\Kwc<p'FQ|L}:RUe7pY{Y^bCx +̩Y]u>7kxI^Z=8-0-CCl.F&9Ǝ.ȃ7XsYE \;/T'0N&Ku'߶.wG5Ra5|Zcc5goP"^R2$HEa Yۭo&(N.[$=*qskXߥ4^{5a6քp -N%Ac /bU~w60F N<˵.ߠD״MNwשq2vX{vOrl?[ ) * |6ΛH;ȴԃp9mKo?wgt\K /+X fILvFvW~ Qn\y;m!*gԩTkSY*^6XI6Y`uf~ UOrTmk3+qyHm[amG] VpzcS`j|3Q^e,$ m S;Ǚ'д|Lq7+b$u;kQ?9:D@r X-2VDH9\ke{`F| ұcs>Y&<tJX§5ǃ_Fţ/=\^3t-$AVv!̟x!hB@ŚH.43ELR4 {%K3wPUg%]/~eME^R{_h oI ɧ 6\fs;BQkTfn_".C4rރ'qe!/a?0dKpiaVo]ipi4XRQ{6uPM;4KRU>.}4NҐn~'W$*wP)!%8Q_BWel ISiN_M!5̨;ǁ}k)u`Dv``5 2Kܗ"mEf ғSsRS0DQF~[QxJYJJLUya9xTjiS*'-HoHXY'+iT ofbF[IeX/YR7LT sʝƪe\S½(j&݊23T!;s $j1WO4Itytn\e!7;;W JbM+_l |xixNnVF ,Ab*SlY'c ?; plS]8f'fԾ7 Ą"q{z)c-xvݬW"5jR %R8Wp7Ck$+b7ZEJ卒GﺜG~H6Ntn|J4/' ʊ tHg;$Z=H4sƫ46z,9wEb˜ &cx#UJi(ROȡ,9MytáY ]ta )2W*{reOة&Qu.c oԈ ef_׽QJZYߝIt$@EN~\6-emGw=7,U19˫S|bφC!>jN/ uD{Li&ÀcC$Hѡ sv⽲zߖVGJw4z/q"kDJ%To䑐i(<^=mMw@,-"S*0J_%a0 MV`g2[ 1,p/7YA.d˗qE3f~ism?Z]>*:T 6ϣ9ʘVl$3Yca'-/Nq ݟ܊JY<PI(l:|x3U60,v<؇ʢڦmd+([NQ y6)} ,N^x[}>gOd=? );1xu /!U[ hh^Ihph)oyσMl%+a]P6E{WP&N QS)@.ع1¯lƾrյ{n9go&LSn5'/ͦ#+T|9Irja-WBQL,h. OyQuZI,/]Z v.=R=EU\Vf@?iZH%|4"80ݚAgT})J.@+9#PrE,/9 *"s\YiF{+Zx#n@x9s)NV0}Ŏ'R17 l Ku8Rjn#N1UKʂܺ[^Kה"My]bB# yύx-o#kLnyo&9k=7DJa~nRQYN6"rW>a0'%i(즨i_Õhbss]ϝ0zP. ol.rh&V{a5@Y _+jMR+hc6 B6'4\BXl<"rWb쫡-2p咢` :q-׆?F֝JXrƖsI|-jZi`ŠU~oPM`UA EI{ƾ($SP+M,ٌ}ԺФ0TV`&;'Vk3O?>Z,FC+~_]%3GM a*RZX)Su=~2,shrK/lԣSf-G[HYuyNb~*gN_BqNTb,m/,N@ǚMI>VV, pTNf[571 }+쩳!!y}vHl^H׎PhzBu ҅KhQ/ I&/1+6\;'N3u6 PiMeq,ix顇Euʬ WX Fh2XFGi͙Ѣ?^wxXU $ukQ6Ϩu鈾a b`< qdI(17)l0Z΋ogq)yr64vvmG>BQy}L$<]gdi2JW=لL< Paȥ ^Z n+=`in1aN4G1fC_D}I9 ݘq`lEݘN%CXrKcW&)V%(>B ctF^Z\n}JDkI%'_o`W-&/>nWͷgehuQꩪD'J%McY s\>.?O/5x˥Ĭ_ŷ駍^̉Mͥ;)uk N4'B,٥hJlN+LU|# ALsEWvaA虞FTϒ|wswp&؄ݠ9GzL_#{*vH^r( ]٦Zb4 *˖M~QQkQU//X,?ɨ0= >tBs s| r?O[dGjq8vs]ٳۗg#-z 3|<݋!p@(v^t;^S|e̛.#5^v9^e,s\vFUdd[p)dt4@s1GWRވUڔa\lȵB˜GTqCH˯Af2GVF,v4 +Hwԓ%q3Ň;?t(v-iGĪC!7']EoeHu`rd>5\GAkhQKMh& }9kńv\-B[FT,z*5~=:̱($1d %>(|j0lw܏ch,4MH e>QjE 7t@>/5TGj?EK?1 nZ1 Mv\)x{X(˖"X:7uĢ?[~ <l!=}lN`hUV,pe<%h*ӼC?:]:.1* XM(~VuXޮXџVS fs"zR˨HϼWS2j(4@((&vܳBc$ AFMYNRH {",.t#G>g\ #^7w<䤁|e΂|ҋw#4o.>Z~6;fodx)~`A&k έ N5%9ы뙨PYϏ/_* 窩;ܲ&Ƞ3.W09qK ,{G1 p󱸰QQIrb8_v Ao9T1W`G?ͬ>ĥ3S9#Tj/Twӛ*q0*~W:dAPșcꚣrܜ>l$B|]?+O*?~"^r"2WY@qlR}/@U64р8zǽn IuG;,A#BhHx]]RRݲCeMĪL%?7n59\Ve$GTB}Me3ઊoYq S`ɟ!vL]'KyS.W."3Pke7,15WtT-ioBIH֟E Ե/nc @\[,[l[A*Kzes5v뙽ΥMc\%2'k* @4\EGMV<ؘ$Y n?'߹ܚˈTXY= Q6b O$tRir/-\t9!II/teQz-sm#AszkU"aOKrS qΥv\= E_4/`V*Zu)YLӱ"aX艚 xfق^]ŃعgfYG@|g?;fH"9+H>OG^^IP M#Ҫ5!,KJ1]8=W_\1m?[I,kQfU A~S۱ ᴖ/ .VmdZCϨ1Xklk[FȐ5'[nmAḧ́~wS9ێ_b20Qiab1HmoJ;O2)=rkAS B/lBCHeƣC׷M_,ot]7Z {:qMnljn{T塙w!kj1>8Z5˂))ӜPӇ^b=/?ub[NiGC4X;Rz7I稘ϑg@E+7njgJ^)4ߟTDVb}2H9VG րDصRpdomt{-ft^"y煳 zrr5'Z[xy_sۤȀ`2't r $}l6޾~hkļ|MޫO!d]!5. e( [^mlۉP ER+a9;l'`UuTJdݗ c~t-l6Cxm[@; O`z5|6xu] sX<)k頍TGv~__)ONfbAm$yX̖)kp Z}@"W"ﯪ==Zgq瑽o{ seDe|[I<- hS'0ynvhM`,#sJc28)NQc"8ѼiR\#:PFnY,C~N#wSCBk9ǑÜlhORVpr*HO0u>dhШX4ku)4n( tcfPB(W~G ls ulr>XU۩(-vԈn*R=jqYyLnPN)አ$J49(9z`aMQ̲Z&P-?@.nrxbA!fDh(.۪;Jk6JIIۼ> d|DGSLBa +X{,t g+e~3f'$ )8/=g>?u_HA N3u&{;8_z ڏ}X^$3_ 5ăCL|wkdUHf ,)-#ƕi}UzF׾'?@lʹpܛJZOmO.cF`gvI@MueTV&spUl G9Ѷ:Sy-5J >Lbw2@y'}g&꽳!PL˸7f,1VvrJ*hs^a┧2ryePw.q~ +JP5ÍlqbFݚ{9MbQӽ%|KL[}j6{#]xf?[uZVDʫgX$ EjC rWTЎnP/Ŋ_UOg TYws*mf d ~OMB k9H/C,b&{8Ū2>d@QYB@|mq-!F3}BLZћYrV~8X$bg-2RϓU0U4$AW^dG䴢 k~jqq 44N^ 5n9(mhǸ˿`m랖#Px6 割2As, U/λ g5🵭Q9Ukpv ]/3ŘQ݁3P/ igP}=|= ^? rb&w؇qwhfAZP=q+Z E3*#UA!=8;ʤ{>uGQ=) i49g41dwpa72V=Ë& !^rMf֐]˃p3O&_94Sf3o+ZYO$Mvdts".iJ=~~ ܑ-ʡR0%*'q {=&)\|+,a\p)?r:yfEQJ юyt/ֹ(jj9ߎ[$pfN.XuaX,܈ЉBq)(V==l<F>O?q\az}@LZ'Nnjp_TγgB7!P)C="JIN'7s/|Mja5LJ Z}::S{Yʙ@:gTPJ؂ϩ0k=3('cs҄$#ɫvW+ ]m=&!q#E2TdyI}5s6ؖ ͜kPq, b&OzA$N*XɂX=!i'Ȏg'_wʏ;2e_J+da+Ei\,KZBB7MRlx|"N~~An]aMtA.8LLg~VLF6M`J \EM~(N.*,_0X} E}K/3xAvɔ_! n*IAv#w6wb7=~CcRuy'NaݚhP{u_Im8H@܈ylG)uPeSʭw-^}RLXC?~] ;|[$!:u Sx\FeW$-wc5Y>YNЕTX0)Y\ZĖy aJ6x- "プ-TءIF_<}pk߆zN? sN ͗PP0ժ(>Z XēD:-乫cKGn imwmbTںR6, h.9*DEkoAfBWx:x,*x OG`ʱZGB׶Vǖ]].KLjs`cwAy3BnGJNn]?3 ZQP9BnJEmdfJLl~q(qBhu”;@ҒQ"JׁF6-z;IuZslO Vm`60͓3a{GGɷPݼnަA3(vĮ72 ^k!pXYj%|fQE놐,OBw"bFv52bI5CUsbóȫ*;͆)ź,1F}Ɠ {ۊzoڄQx n5}y&tg^sFϔw4i~Wnk^L\Hߺ&ΔJMƴȢB7֢xa& z0U81,Z9eU_NYNJuϓ2]B|Gu T4"fR*y"=a]2E*'O8U!,!773?S-Z0]:P8h9BpSJ뻐_3 Z 𚇱c2'P{*w1^@]sGS.N}SjAؘ;IO6-an[u%bf$ʛQ| udIfYi8oGCg‘ x.俯*DK$TDִj ÝL95ցRXd~)Yr;f&^zƎ51`Ve a.K3> 7^M5RNT˓@-!/xsS$ֆ}D\QBO E$<;?ϫ@Ҡu KC8ِ:me3Y"oVcƬJ,7Ҝg|%ʖx+d6c":(ehP"y!wyKr"{PiSl(s372Bq j` e%yXעg*~5퍆. Ep5kӀz7DN@ nROA?DK64qlw)&V 0.1v]du"dg[4}zS7V]f*L9[p?Vƨd&}:?`x Î KoRZ{mqJ*>~2X_G?GZ q^,³Yc]+"lD[zkAWl5T{!!?m/aɔQ r:IЀ%MnpވI$A|1DD@[S3^ LxPI2_\ hnΓGgr颇FTR'B:Xs;"~ C.#de, u7O*SPN.餞US42jR>!:mXdS: J+8E ژ~{n|όOdQ:߲9vUs((bbK_x7֍VoQasm<.zUXZh-c4|E"HE@1wP61znp ny:Xku,umYj|BJn vlᱛZVSZ4nQbǡQqXq<žy\r4+5cb{?^bE@gKĞ3qwDaco#hCQc4 wj-E8G Cf]X 6Hj>[.%H;Ӽ xatx˘]#_+-T`[rHs3ߎxeջG2M4 8fp&2~]]olXE^fzbx.xCY ҇Cf Qjk$%/NdƄ<H ­=Gvw50ˏlL*y{G0o #ڨ!OjP,?ۏQ$ZV2ضA7J%C%wj\۠FS9M,AzLHJzNMG{_5W+f ɉJ,-i~~hKTyqW7RO $֕%+VTh m D[qtZ/|)z"Ϥ^s6jn6AöЬPً}<-?JJVl' yXX/1%lTqY,Yt֍h:,'|3]Sy Ạ:dD[4IpzFTs4JymϱBkJÁA5}ླuAtdG稘S:6`Po*g`tuP.[pV]8kX[Kq6 !iGʖBXD?n¼*t)f8rIP`^tgHm'kfvvYcc'aZW6*c`;]4-»q 77Ky{ER2=C%yPDHqrR镋]nVJt[Z4/?jc)bgQeGYV>.:6V4Fŵ9|y]LjB{8 h'ֳ |7 ԑ괶hɜ`3l̈́ 2w6kHwsUwW0F(TŖtx:XT&wq!M<&4^gx'F8k,Y>efy2=brY0v=D5iP_DnH\ҧlۭyT'y9]^S>Ac+BH)[c &nnU>N{mB! [=+R6>lܞF\Lϔ/KNo*g0 -M_bjGp%;/4+ QHyk˚%8ƿEwt5zY *4cmLbC -\t!-<䷗"88C,CS9$RSvE,}ۼ ߜB;-s.1D :yL2 E-rj5ɝ BB{Ԙ+"*tD+(~͸ QXT xA7C^ĦVf*?N#XE:EIeLxBfpeEq:5\y51J7u|IImS&˸5eMoJ^2"-46PfΓp 1N\EuB6\>*\In䅭WHp C63"-Sv+Yqh ?AA\iRw>Fၣ'`e3^ Wյx(BulfhΙwa+aI\1EA ]&M]Jj*W}qUJT[ ,UD&6?Ы>Vg]ąZ\3#0PɏZ41=ZEڕLCM??\8p[-O貍|T[F 3R3"ó]C`6pjބۚm G|%[P"D^"WZ7#7 ,ӗn92nZ&@˕g4Κc+CLv3|UɺmּWW)mOҜ]<{ UMbqhTfG$P?zn$:oS#A-ddGszYY+fTXY P̐S`ozЖY-Cۮ9-G<6fa̱XýW9 7Dx佥u+X땣N`nv"R Eޑedo|n`uZ=*+ДAL%ϰky"?ߒ<j8B lW{N*: 0;zeYټVշHBbny/4{kJ~PJ" On/G>)0ߩ8 Vm~s;yeͫ-af~}+TH~N>h7X!L!pIXXwQ6PFC%C 3&Yg=IStVAWؓ! zc,PG䴬_zVt~tg]! ;tzc`G>nu]]y?~gaNsĥh].%+Nl]Q"䑴b^K̽M(GZŚ\nr?Dbvs[i>VZx wPf)lXX]z Y*ᦺEytgQ T'Bg6=$֍ pwCN Z^VkA3O{l|Ӷ-fX=NlGٕI>J{bQ)եCfN2&@:\{[$䪶$u?p3 HcLKKxdG2\UL P.ゝ&8a*F{W]z (m?P?ӊq緅(+ג?%3mP$uH1 QrǦw4RB9Ay5N+qg{KÚfr-K8d8oS{6FzI>m/0C+N gZ.a1.Ig `);UF=6+b\Y8Z U6`kx/U# +|Qovl9d-.'G.'\*ݷ5aK@9[e $Z =&kVVua)ތaaIF$?rdzq2DoL '꯱;@cr*Aa:0hQR\T#ŢAըicQ*.kCPG }N|R̐1<ۥæ`Qi] A(B{Zbܟ X; NxJ2]"@6wg~&9p+cnW||sPLCIԘT~Hvl5FΪ ʯ)i ߨyR' Wk˫[P5 x&w׽u{DȒmܞ\$V:k!h{0I?\skXLVp[SsǖBk.^$DBҝ-9*I_ROϸK>3Vʇ]7wunRnZ?s?\W[9&B:.3 ɑv VMS1}:| )FbY%>WyOFj#Xֽ*{632UɯA^#~yVم\@il[j@ġ (ڳL:*IR3~D, X eD:!GH|V8hZP(CajqRO}=/"Y<J7者fJJxƕWw!H /qg B"~eMDv3h{-U k4%Fz(?I`r^D݌Rسg}Pxbr4j6C$c>evqi<C> EK׊?,>Zcf5\YxL̎jBךnh].;ics'Om|8IhFjR_0öST6ZNYnGNF $oH~*]:z p,JA[яZ‚ (6HEi{D骬ÐBu1gQbO< {U5֚płN36JDkgl%DxZ:wigB$.hÕmQa+,[e |M3Vr.nBnh^K;e(t֩(oU5_v0X`#KAJU-رHSSa1XIʥ6'OF[2! 2qZ:^A=ڍԫs[3C),ԚߌHv){[7 {B%Qč?20kSۊ}k@-*u\11JRa?fLiKp㮹 uJɬ$J{jSkǾx2,QJ!wjq1{dTlo\ ̜˵]EgĮ[*N~]a:x!Jd׊ AYGS{zSsMC` Eh&x&[K>Wߩw*q?sp]hC4eI1|szf(8`+e51ZWA#@.bRdw^LU)vsƜn7"pnz8h9aol0i盟dGٰro/N*pJ}e.o%2u>p/782n楲?crY Ϳ*rO"Ί{бYƠzsYa_x>xM*2J.kRqQj5%kϏFG:߽ia#[?Pb9 *E7(IU * ](?kAO~_GR6&=ڃGc}8L 6J?zcw]tɉ@,t%1\Uףբt4wHae|;ZTI*'q3NҿHG="r(LO`@;qܭ[AM-D IbĿG>S 65|}/ }W~;Y0c;t)L d"pe<˘T~=gHׯ M>O!fFsz]hX b_o;콾]Q0ˣhUpS.LU^8%8*|  ;A8_x1c3JWjtbA 9xx ;=V6܂&޷zjЧQ2&s /ҟ&ީL CE b!$}\> `\*@ 3 y"A51|، \Tw/)@Z(2loq*\_6CalBk"_ۯ)-+] />&{lrYޭ4=ƅh6 !tk?VV;o^nĠC%8ϖ /c+*:iS{OIuP nqPМcFu!Cc1uKPXٌs8A'/FZ Ǯ=腢$n~߾BC )K?o.d/-sl\DH皡s'FFfx[/X= SRRcDaR:/Xj"{?ӍG;'sI<E)j3!dNZ*]ey;a."X9N*;"Eɗ1RlCIa,RP*̄HrD8L4OHe6zVpبrbW86aǘp܉piq\,r@vrFg8GrD7CF4>\Q- fpKˉ:fQ(SQͿwfˆOsloڌ5.94Gc iDl<j? {FhlWZ" + "tN!;j V抇;;5 !=D4m~<]3\ _ :YL*k?%7p<+R|ޤ! EMT]p;9Oִ܂qځP}y[4^d ˊWn9)A.0I4o:M&kf\0_W>mx1h˴lzM n`nE.v1Қr1Kű[nӟ-mUT6Β {9Z^a91ӉBeDϷ(J3v )'eN:b anjfs&rl;r'^Fׂ+zA ܹ(ɇ7"櫐׎.cW@yJ<[+6iύTOSgUTdLJa)vds:TWތ>gj`5lM{ƾ>A =:Nt!׭/Tfpr7(Kx{^*-,@Bgto6o(AӴ1O ~Y< T7y`#k ?^)Fj%옂=;7 Z3OgTDAKZۂwU!2gK{ۜ웂ioݥꍵ Q/,e?ޢAVTM/U3+ibfxMVG|-2ڼm7;hXb.:B :_$N 8B\M|П>wJNHؤ4Xq)0$|p&p&~J8Q#6-K ,Hزoe*.jPo4bY̊r_UZ'>pVG9Wn,^itMX+]yw@'OF_ds%_s7!f9pE37Wn>Vij: j BE_dm%@6#Nڑ(,LjMe;K%LD8=G! rucpТŃyȜO|Ou"֥rF{$r˥{MS-S m[[GmUƂRMY`*]gNNX.9+ƕ.~ӎ~j%P$%Ge`ϛ%멊q" :!.R^8G_\?!5&1p͵|T-B\ $\&s@?jjs}t jz[2Mg6l45b Di[éDV9Ho ;A^ YzNOtiA:„/RnH+ \s׶>EokEҫza_زR4.݁JYD贎% 1_%Xy*\@mSsxU)Z$ U {Mfqq'?1KG`2o" onY,dySwˀMDQܖpt{q$(2 f1wMB>B٠H1!wY=8{Rm0"eC9ceczm3?UKgn ?Myk:Btf|(_滦MM%" R%&nـqxcA$N l7Yѳ{̽?n5m컩=+PAt0 ߊEoiN~vdNq9H@똁jA"vi-UB#;&fa.9 |V'k>IMƤc)R [3Fjt?O#E+̎bݻABoa6g?L /u׌Ka(6gUQ{~twO S5i\s@@q:fA;NhC>> jKlSUg4cob=?`?WVN-G7*ОA05aqw}JQgU|~0 S?@&] c;R _8'vUސ6Qth㝱vfs"(5A1HM[ Xy"T %EgҴe p_^\IZZ $vX,[nv䅗% 퇝Qh*Y8'w}j[Et>G&i@3U6"44y5K':=^R>\C6SԽ=nr=;Jc0@uu`|9::+x.Kˋw@ o6S_SA`ˎTt 3q%Q6k' u.")-A~bݝ+1O.B)g7zi/'B{W"tp!XPu0gx來pL+sW\ sy%/Fyai#W@ Ds^$+I}8tjF ?g5lRN"Qd_Xl94^(Lzr͖R9HeJI|n3D}>r&B_B#OKJ.hI32LL]S71O_ƘM,'t‚Kb̦rhCCDߪK lB"1OE"ԉSy!gćj}im:(%47VR^a'(Ndr+U,^t䕨Qn6:~>_٥X%L+%X[{M8 ۳7&d fS9:S%)"(򳵚}d($o>C)hsY](bSFmN;GvC9W'ÄՆW.I-G]B ![A.R`]*MBntA\b!inA >ެdC FI^yqmƞd~ZOT6"uuAT +|D[VR6+]08%1{nXY)Se-6ce^gJ%oGYa?7ZIrLZvYnaݵ>}O1laO0&MgA\Q"z:,r-P ^V;fPiOAdA6 #Lb"]쿏A=%39*R]cw&xi]6BY$I֦Cw9oc4+Eag8W;?y%K@N@j̍]}YRN%ibFB:M UN.#[d@aCbzzcf JhfT7kSoYAI?ڊ.#BYc촲1ŴK{}_o? x6Qy!ibfYP+ qkk2Ru癰\B2rVՍ馫\^@C0UkOҏB?4-R:8.5r0Qn i;(,0F]VwC彷@`RE Z#:5>| hpuƗBoQ=!/oSd]Inx;8^6qn'3u"}bjءi0ퟪ$W-d [R&TL(VRQ23ߵNa 2 P~_0;RKݟ;t!֎> Co4|ܡs}I!YU6Q8jH6=1^uR3gJ.R/=,5+9z˩Oa/\iƄt[9oaW)a>ms!~IR~ֶ Kn h &͜],MVmQSxe}Jbg P{ b_+zn2δs^o`0V'+q|)7V.\m-k!^ .V>E"AZzu.w͂c.U~I{nqSfNǬ]R>bd >Ujt<@(p$ ߃'RQy iҰ>Χ M[>jٷ8:wV1Q j:(e5x8v^{G}Hl#OѭUC*,t|A>ѰzSYyΏ:Chj\Kok zlq$mYN,E9#4̉pΎphz):m3PCf3`r!,jwP@U=;OyGu@&.7Zgw)5*a.%,F5&oZDBKq^̖\y3r;?0~do+/8kq_x8' V@mI_uJ/+Cn#'vk4/[9C6:kG71y:z[M+dζ* wS\q`ptmxG8Y.D/}5];B|v~0:@j:&e{iUIHGlN:TRu~F}1ESǯB9xϤ7.u*9?Hm]2w`s.Y<ǍN9wTl{` IN) *0LamP Q)97|]k;ܟWDž 芏=۸ 9 rs#9B3-vo&9/,qv8[?#>a:d# 8!+"Wb}8kw{RߗV3R#$WqNsxCvaU*NPPcrQZ9Sڐ@eaG'O5[4/zցD8d }E06t.vՃw,a3YE3r:Yry]$Z~_IT:V de+lmDJ1vۖtNH٪)r<"?lEr >$haj3F8|ȟZn 2#U!uoKK1Aȫ"'b-yMHxF1g}׹+/*ImJry橴=aUd˯"X;5XYH觠g7ZZ3)|ڶm!j*1Y.Q+8lE0p t?ϞQ 9r-Yu!, MLy3WSu>Q\M,rEw"4xoOz>?.^5j. 1 {+ICS!iy0L~/,+\x Ls@XZ(:&xQ-H\#=8˽+Ysoѱq]$g?DG$"uQ9ÈjS5ہU!Ik#5jld鵂þ[,/ =q7+rk߇Қ /6{f%fn_ӣ;]@g=X`^-Hr7LRFqqj}5nQ0e$)'S129vUq]jQ.p:"lN}֟]0:-Hybڊ ;&;CdTLS2s|Uո\"Dl|ͬR5izU;IyAW$vX82?h.T@Σ#HFm@uJNmYMd*phP׿(9:L>'EexlI pq?:1kC:Re_5]f [I=JQمw T07>4DOi ;%!us:]tS5EnM\C:z%bze\B baPSZƫGŸ bCx 6}92¦vrC[$Bg, ^@p\k$Bz&\ AЦ6_zV@%>ՙU!F;ÈVײVD VP**[<4GƋ2kHb.Xm>hſ_9J'Q ӐBϿT^oVKY@j{f𪮹!@۳&4j;0'S>W2C-_kJFiU' Uz3rs^}Ϸ){X`{<ױ,V6ŠG#H-M;ՐDdQ:,ƿ -G̖؂8v0姻@ǁWCg[pnUP";@lƑrD,lF<"ͬ9ٙh K$k qՌnܮ\n$Hknƕiz/ Osyɺ _'m_&CrTMei= j.'&\Uݞ-5b:/ [SgQY"{T6:> 7Ɇ0uz`f(K{2Ͽ|Q㘌<3[>l_gHjCȐ?mZAqǃ_9RJ, /o7+7l$'{I)հ%Ia6SqʂlIVmیN:D{"go>Rc\VR?m[ ppx_$)T_P4 lueRN,POd G,* B=%XEݳ) |䉵o3)c# [U3UOP1vbbhfJ{t5M TM$ Y<jS*EH S@k=_jjlo;x{ϿHZ(*|_үj#.D.p8Lvo5gډOZz=DIʗ@kWG)Oh)o9AsMƪ& (:|aDgICTvMzߟJ6j{o|I>Iɶagbi*.n?/1|AY`_7eC1czn;_ ħtJWGit]o$a0;%kffA6ƓxGBmķ"KmqxHޱc`Ff5O9onifWo<ėo9GH]l9mϯ;Er$!V5.ٰFC/ ~)E1@_I:4¾nIQxXgHG'Rsjt`e ɖYoj̆3ۖvޜJL1@#ٓpDR7:5Ϟ_:1E|9%"8G',xmk}-^Mư"ԇm{S\;L0V!bk\gj,74ĎˊĐ+Ukњk,~fq1N 6<$q(~@*Vέrj&?Czݖv(Έ.3'qr"p;o{l0\(O9d|c8dfm Xly`$ LU'lB`*:R]6U.' z)gȷYg'W]YW؂K~d8F$40C$KV.ud7IWZ =z]s ˱jw8~23,C=9.E"gH=iC_1!4a* MRpQ15\E-!\ŷu5[͓ Jjؽ΁53+s+TqLK+yaw I?x&/\nK: K {_25ZHw8-E\ qh#.Q=j^}^UkH1)\ g= M" FpԑJ>'$N` Ucr]PǗ% x4`>/}{Q""FՎfF<$ҍ,0aP‘ ,Mstt-};;;cPM cĥJD-BzCx*Cx8{*R!㷦'A &;?"b;6 ֹU8aDl+ᙈ1^;k' 3?2Q4=HtYAEszAܛCbF,@$o$6~y uLU_iєDT*cOt%:;#>n1GrBXT't ry[~\ãP WO\dY’kmH0U=s-H<h}m"K+}ZngW2ٛ'v1bfҖ7/&\7HKoRaAvv· ɒ vXd&vBS7RG>jYI4_cޛDӔj&7wz*ő}En6޳6eAe-#`Х I1"id .1qA2 GX*rfhw6\@6$z 2L]ve$] 8T(ET0LrQehKdO'l1N# )j/x|0i-qjŰ:Q^5X }t;YTliRD{H]^"ʺfԛln_-_N+q~%F'A6f s5&7Szl:v k^̛PU)o12XݟTVwE㠿R  pS|7NEQv RMY*,#ӤpbG$|5n`fٍܷ~Zd>"/r/[yT|D%ݪDz29'&bĔ;BSbYR[ PhkWeߓ4^35Sj7O(c3=\gFiϨḡ"\۟jYɡ~ꑂLͿ1~ ^=#B5~iw#ⷷi*0A4אNzDjR ubYHG<͡Xz L3KrnI~?F = zO'݇>@ޕ[4&wes7Z=Dƛµ ͹ b}aD%wK1F>TXH~JiV [Umwп@96H,47i2bnu*n0*BFv$@N {CeK^lO1…*q!w-BdmY /dԐi˽G.lBIB/V)P0 I^mTKh(Wt8FQ7]<1}\-('&;8)gvK΂1 ͉2[_,cnD;rNkRd]/L58GL5H >sCh7#/ )]F{+ok4R'l+(RJ"Xb[aPqrMg/Ij9L%|Ky. 7@uD$Fgw` r{|W4fj0 ʀyHO0<$[nNB1[wz1PȐ6ąô<Ѱ9g8ԝMMʙšhPwF,lͱ=$VTlf ^mu zeC2ME`%e |z U\Bk &YrV8uw.Zne"u c_2:go3" >ТeEò2|nT@s}ĩR˵9P^R |E?tKSpaT-sr:,Y0b')Fī/'x )#> &W IEҵ UحTĪtitOX|pW^AP Jt͝R͹ȭ GlLQIaw/lg] epJ5/$,7O| &#lHJS;qYd. DTi7w8c幱g,wFVѵVvZ~; |;&T^}h+V{#h+ܴ闋}P\sE^u:M|ȉ~TMET@OdlAeejDTm}򼟓yoDrq)0˸5kS,,uhwJ 5rM[Mz dJfvaO"]X5t _ LOmBVَU`b_oR*u^0tCdG9*x*H ߂{ey%6t -Mɵǒ!Jo%ʡ޴!]P+|}W_\;0vܦӁN*uS%APTJ+.#d3a W^(^AG#8u8y||%$tS+eq}t"Fʹ}ԇM敔IaRNS ?"rBb1UӭVO(zSA;s,~$诸Z)NNnJ0 8 QnS%a*HF (%#$]ohyCI6j=aP4}}A(i)*XF/#*+kP+ht?pK)˫S"QL/ښD_}l1ig d=?tX{*7T(SC*4=sN,=cծ9ZbM[WgL AMYAU~ENruvMp ɯJyi לݜHZ7JqƐ_Os#Y/fmRa,N!4k{ntWM i/ ȪHThs!)`f0M V yb7oܕ9nA*c>INQEW9>7>]oz7cȁJx3&`tàvJNw9/cafGV/cOA b &ȫH=⍇7obHYTDW/w.6\F|!0{|(/! {j %8W =E3Ex]=)*w~?][q96s'9Qܖ$b63ݎ7CW"pg(7H=j,T\0Z DN;q0KXO-,/gFV. NIոpiVƋQgۥք]l*L#"k[ِa/G 5"i!^nYpJ(A^qm8^'_xp\Og| xv4x9&y]_>خj㇚s1Skߘ_ꈕǘv% e@D6}eǼstTdhR hP)$Jj !8l5`|1zshtJ R]^]:rZF8aK.OsJu7`;S?6wvҧ-ʳ>eqV0|YHU=X3O+gRL'za5lRoT]Sߪ!\]כ?ΖO#t&%ĝKUU_]qJKpq_QFC#=;<=\PJf~Sg)EDMUm)~%`gvn"ji^GIJ0M .x|dbX۟@e!(C6.ݩuטX x+d# .*i9s1ΐ-K2ve6|f>uJ]閠Gh&e!$cQDEJL;BSӣjWt69 0 i8ѻ]DrNz-.G*LrΣi!MR{3*.vߞVDKDU7h=\'w3G|)3Ti~<Efu@?&>^3y`\W[޾z1M-"p [HMƌhpD(|OvQ,La&Dy$E B`uoJ9ж`z~\k?m#?iڏSjgR"êOVMCB,P_%ʅ_rUN ? ЌcTĥLxz0j+Jiu1}l8O$.lz= O.fQ,MMsiEuϸ`,,~TJ+5l(tamiQG?(7ܲ!!? tI1in"1#v@~zH=F246y QVQ}&V\V{߯"w|HSwTW9P7t/ XN"sI Oz}7ޜˆ0 CW. GJ'$HJǵW m$_# ~q$\yb*$UЂ=..rQR׏]8` A3ˮ՞+~ k7$G_ y\NHӖABFa/D;zVū߅{XQy-DEXe{E5֖~]K9CZbW_6%?yRveUhYDB 8Tt){3l#jߟŐbU P#X$̤s{*[+VNER'S\K@N\;l/lDd/$#eqg@rKrna@oҤ|ĖjFJb񡱙ߘqltS|J3o.j^ViKvE#*M|jkP<,p齳&FL v3Fmk1';4Q]+Qж6_ځWr6V\% Gq}z~"W1(\ ʤ>#Eu:Ro$- p~W.S¡T9K̛j~$24 ȉڈR0VLp+'#2`Oj̍.!׹c(9tW?  g\,%%?`z]'lbw̐GN'"hga{je%ue/a.!SxiZƍy[vOΊIWRAgG_)ymcƧxqEڎ6eɈ+vֽ1Muh;a+pc+/!lj0Ju+&&Rըd U~E#uk.W`KI =ٽ6lpizxSit{0"TmeҲ8^t±ᗐCpT,=4ȠvaʡvD d==x^3piKuty< (cEWLh6xZR;怳igĨь}K6/8LgHC)ܰ)pY+fYt jwq$Fcp#dw(Qg/z@DJdT/i߸k.uȱnRqP xp(KrX!`nZ\L0Y޷;?N=.>j=plHebn$3 Ym_ 12GФm4˂%\f9OLcjjŝ_S 1N BMgc{Sg>HPeGf]0H$ym.޲< p\@%4ӝ]hF:~ۍOE]9gyn^d%t_p\ft0򟊨ޟ(P/"/aqsMwJvw6Rڞ"b O)18$0 $`=S%܋_#r~Mq&NXB\Q.2w/]3C92>ol2ķN /P[ndԳ=eb}gv="m{hO2o;`y7~bT&*Zke"좵O[7[Ν72{vqG46Wb ڊ ) mz0Ic/r$5LQIv=LŎa.`hcWo_GA,)i ,ofӠNͽzNX7`3JVm\՞K<wuE01W{IvJk]Jo5K%Mrpᜠ9ԝt0ّ+]A [W{341( k]Lr4KP+;)6+SQ1T; yİ-Z!&6`,ɸ4yE=PK L-?xƉvϸTZ~za%ixOU5ڙL[l ٹl0MWrٰq3Xt 8vQ.xANGï- `g(}`_0Lm?'&n{4ߪ^ۮMMa3"@dg eZŗ?qrUE;(ޜے,9J~~q^`x㥃}N~^=_Z"hQa\VdG^_G(lq y&<_ʤf7׊ĵljd shYK~HP|JU}aB[o]FirsR#ę|)?Pk8z*v㪢Enqg7}܄fa @XBH"θAVp ;y xt>iΏ_}/h^`,ە&HEp? Q$B} 0Y|]i"ߴ Lﰬn}=*do\O˹hR}ҮTD:YۤXok.x&Vp9$2|^905 nnk}( &X\$e6dB"s`Fh%e)mͥs=)9Rt_/bOWתWz1dGi)Q/֡Ƙ/ .B舛V8Ugj~]:/uRL4|/)}eJ983M+֪ӆOœY:…\ 2mkR=4+~989vHH#xurvx5*T,F -V47X&<4zevȌ.IpETC@y?|e`D22x(/m_OKz|x2xNBbW͘1B\8~ر9!<`/K(|{&g7%&;hD4(po?Qli*g43VbkhY_OE} ?$:!-LԿ5*4pV5k֨vd=p:Ql5 JuuzK6̳|Vyv?q}>R͡-شQ'J8 //GId~6x;Z FhRlLfĘh%z9[n:tp`ޒOGB3 ')Z$NSv*tN@G2NB?@cs~]K[aB2mwnjι>CcBn҅a>ԗTR}աk7R_C:2Ǻ'zD:? lyNXw?o;d?jMNQc-&,`g(@iKp\j)p\4Beo0݌|Ĕ$2(攛{u}n8SzhBO:u|,M+bUՍ=K>'xL #![4f?zPhx60T㼊''Lˮ&T8VCX[rTܾ@~#3 TxԋO@O=i0zWs۹7ϧa̭xvYO֞*;iC277@HqdǦp8y3@& Kv3mfАdmgv[Cw7ML~~{hΥ݉;=:` xڶ RDQS*M[kR ຾q8lEEtV(O,ґZM̢[*Im.5s$ 8:Ux2Np£=Cv5y1ߠ :rAm'aHKj3^(dgcqLŒ>c:L)Y7r+۬Ñeo A7=!Oo;y~q޴tmB krP9 B !˄ x1z>!2u'ld ZERx;ۤcuF'UpN6xf_1F@-y𵧄{J~@\ C~ИM$]:ٵG)gO Eg5A`'x5ĉFd!P ;{ fi $NT xTb{[䕞)MH R2xK9\EY }Q G(M؈x E,PJp58DI6!LaaG7g҉2K;ҷ O=x }E~ܝe㦿qAb@sYUvdNg,$(Ѧd잔a(8unnRݟʱcRgCuBߟ~9/fsn`KG2;PZ 3(2ns¬4B!4(G\u9rgT}qT$u^y6뙃1^j]!j7%n$.ʖ$^2" Gé{"~?=!:n\(̢gQ͎)H%oIhy[{shBXgIMcQ[h Ib Jfַ?X M8ԳO(!z GyrBHH-"ⱉVDwa7浊5<;ᲙBM%O 8ELj΍Lo??d"TLt P".q鞵Ai `U dT`c"oX xHE0 .O(sIW0Ǡ3]څϝO gp]/TWXGڐ~t>MI ]\|Q,OESu:k4w^Q5?0݆^;R5qGPW:laT~sH~%J|& tQcJz=kẼ @3JiښELG(cK4hӌězh$KZ'0e1MP& M LOU{Z"ƘifEmS{^呋"p͔k_3my.)uL ;"g_dG*S1 CeVKKWI!SLݤy,c-75/27: џ՚ԪC/:51@3nHXFՇ6\UzPA>hT#ƤDBPݿ\&Bevd{Қqt FT,#dDR,5ET TzǁKQRΎHM~gJH cB~y| w7pҷўk1I>òtN-ݪÉG- i2xλ2Q\3"67a,ojz}58EvcDDҗ!J>I6[(J\cOxW6`x2r4z9_K/W"D$i+dNofїT UcKg5Y!d5&E/-} e?>`#@%[auU,^L n Xt'[_B_X޼<6L5@J.3gT@0-*[iD->I ˪bw"VGTJOA!f? @D/ l?߂n$0 ACZ1ڶ_KP5)C$(\U%e_rkΘXf[>k'Խp\ʏ‘rRk/rPDqN$*(S<~ŧtG@V ܰD/F9NO? .n&znucy%kh\F'Du8Y i^kh YK,a-I%fhӃK2LgAT=6@bnז$U&9xY0ɒ }2'Q9hQOۖ2Ȇ9Q~p5[C^ qj4ЭT>zœ8;@X=oYo*_<}Wc'Nޭ--..KjϹ̌@%0* si@q( U6YDvф&$M&J9TX/GԊ)=ͧjV$$[\[1@Rb9I{cx.0( y)faw*N{g𯑀Vn-Q+vۊQ(!#6[Iv^&y/gMǽZ]֒ON4srPޑGMճ9]rWR)ҥT?nf'\л=Te\|O+/ȴ ? igGeL䲮wf,:ױqO&qؔv Ta-iݸëk&[Vk+V&7(6}b4E"$jux}Dccy04"r`{dC\6JFoys\oEdh7A؋?VS-,x?mST95R4؎k2?;= $hG \4\%Z3?%ΥO(kʝV'iM=yB4l]HpBNOS\F&mVfSr" =`h$ļ^1zg9|  +MegM]&KD8CެsPPB[s͹$~j; fX訆'',~XG]@Tb|YiM2Y'o+֫^z '[} }Оp 3/~6WK5 ӵƇMD9pGvW.r0ީnDYt T Pų} ou8`Gw:ޖG ۻo>Stg.P#7E#kLf`TLF\R;~R2kJBx)X3{/ ESU~6^* p.Yݸci KӢf )2?:^Ad&MaaqtKDh K58`h)@A? oD?n4i=EXUh1B6r}Uß(PKPj3 AQvR&'njRDvz8Ɯ6ɲ85 M3bz~8$wG4d|Y$%p"ur@o swUYi-TBb懩{v3[vذC9Yņu\Y@wժn3Ҵt\xSĂNfHG;a|^)5TEȳ+ eԄ'`Ʉ:' Vx27z?KF=Qu;&D*hy+W/˼hW(swړzvlr'/t|֫w^Yh(YG6C}G/a!kI '!y$ޡtYTg }{XGa4M"䂃מ_`ܗ{h6?˜4W3ҥaK:1 bۇaoWtJ;9:$ԉoelJ =Ho}:ҢiAF^]!@xV~*crmWXߖD"xi07Ö=AEwg$1咉38)k73 d`-N&q:g݀Pg{ϬV e,b8(nh,+ǔ]Ip|5oV  ErHZPH@0 R03Rvi_s.#Ud:jM7{:P6bXZN'၅.S|H҉\nlDt O˟03R : f s_>n?Z|Й2/;hvh|L.noNק@Y ]|{y4ny}QQ"(JǍe__jNLJװ8Fy#q U9h7w k ؀t:`ˉuPd+#=R19F<=H*7Mdon<I/W+)#pnnioOyJ)rDR;%ы3P&weQ% klB XB2  :HWAA8wBlbTrC:!$g̙fEqX!X4m9jcQRs_ gH$B!^kicBwx0%Xs$pK-|M}T3 -5Hbo7c:UrcRn=FBCa!Kv ڴ+Vqjj' <[~WW{,ȗL 5(fr]Za`$heh "_ieOB1I~p#9:[h PzKE- cxauRҲT*mv}ID=ȶiV@-O^ ".3 ڝ6.ħo1U<~ҡ#^ؘ<(MLؒ6Qϴ#\YyViV] YŐYm&%ȎOf6kCWģx``YHs # [VakqY\Z;C ){&WT߭i=(%ղ/U[;&E L /^eޭ?[IVmC e޻z|ҏ8E*EJW67N/j,= S-70FVaa ä] BF=V2 k>&14|u˞`e ͅ:J@  O<:*I }Mm @JԷCii~bG*uCs_9Ceu{rCú^#C4@zLTpdδi<_Ȅ h0'CJȹ hr}5Xb eYe*z _ vqYʛ~ HKߥCfe4^gRK>meavȑRZ:>nrx_4 "HiST :|۞r2=fXdF齚e$_ tY/=3=:g;f ;;ߚ9Nն}k fS k=VւzROb$IK ʟ'x4S }Xv䏺Ni ~c%-.>klD4?Jj|gL6 ~k4w]|!y)ɟfІMzDT@Z4<C Pz\wܖQ(i-/?qޫ_Cqސ>_jyKP(!2,mҬ<SZӸ"chugtYafC#F p⭟$g>A 5N7-mޕR^%@t@ǁ,TE-H*(T{75yJm,۶]%y1&VEۯ$le :ͼllțx]|;,M e-Hj@rh*=ͻZ B"8/FBq7_Ia\@FU4LFcp;?fXs^cxbwn<Ϊ?<; xЈ!`Fx*r6ftZ0)T 5ލ4VJS*,>ktRO+X?*I/úD_msK^6 ުƹi9pĨam`,~ 4b,lwӐ" UDr KBе)>jG->lfF_(.zFAXg\߻Sk UיִF*e6Im0vur#QRAD&~?'yb*+>2i'/J$U\s­ ا;]ge3@{ pf,{,KW;tqe޶gYłAKAgv}:]Wn.Nd㹆NJV.V 1>'(Fmh1$Mk/4}!D\*,s-~>k̅ajs(j^w^DCҜd~.+\Sr+%^*Y)ƕBDxHS0>kֵghTm4kZ%VE]> q4A%CK>V!OX_W؂h'f+8k ,946 uePfun'PDVzC>9+B \ss{"Vū{F\ ;ppƗc>.y>YZp 8~. 7b& sgJZ?6"gnA=0%i"wEc;jfox@\=a`Z\Kmĥ=l9j 40ʳԯ Ge.48 {0{{.] @k֌\֟k>N>>3F Wm.>Lן<~rZD̟J*)^g*iqgiO Qw;˻`G~^qJ/}Zu<s@w>7g$)y| *']\q;}NDRTo VM.`] _Z =w,OzYh2\A6= a9ᦾxBTdaݲ l"O)f}@&$rT4M5D!d{76Djp!ʰrǘnᴖDlfwexNS2:]5bW.H `ѸNT @\'ey`qQsY ֳ-iM:Boʿ-yãeݪ ״T+cRriuך2%,oO+vWLkLSƱ~IU(\͵KV7^pUr Kӱ^ޙ(!/(0$?n}cQNdO' P"kT&2C XWXiRqBލ X%_.1JPb P%CM Qʅ|q؇w&OT5T?YE>;>ykط7C6n46;81 m8Jƪ#OGktζLVɈȯ~IqBk~[0"gX49*8cC88dֳQˀw]`6ɹz] BEf^#u} o"W萡־1.oלL{#D(L겳גZD_`|Re}0in#S5>rgLV9F~V%NCi c],7 O:PTsN!5-|#zy:s[(ۦ.V~fY0'kqZ½5s,8Q?)o>jp /m M'z:ˤV/ B[9+k^ !p >| ª'>sE YKON'r 45]tca/Iy%ېc$`I ƎyZ*-R# Ne137͆ݪ|N+ʪ(s˖LxOuοLB;Rh9J_(,NnxZ\@ha &92dMW֧4zGvѯ[+/xC@= mLЎ͘E1W8W;"P=)tKz^ܣ?ɼ~iCM@ߥ:sB8Z/A~hI9:O%Ʋф=jJ }^O$Z쀨_J~ {MpDC̅$48E@{ج\޴!7PI&BT,B<9S^mD7{&i۩e "wϡ PdA''<]XFBctZn*Molx(QH./i>{M47Y̔XofKC0-i]f"W:|P|❞ oFWC[ d%KS~f;sz-M.$˘aB!,Zxs'B=~M_p=WԄsbܝ',񅕾T;ҷ! &~N.C^zkvr!ą'0XKl(pP\KKQC^Yfs?C*uTXxOް[24.Ac8߾QnʕE1wh eEIu囱zil],7!Wkw_R@BmL,I ]<45hoIDN> zYVct蒻|Z0ξPfTV'K~{@ߙXMFǓ[@גAPY6\`CɚH8=͌ Ժ 'd!^X~!0(m*2_ E}ֳ4}S"Fc3ށ$nZ,{Qr@tWXgF˝z("߈s^Kf[b/{$]tm?|BԏGQc;iwY FdU&Q=LL(,mQ/g.o)gӞq⥩ćf5$ru/ %5HT&#٧HoPã6cg@f/%.Y/\_FW8mT &u݋Ps7~>}UQ?^2zTM"ލs0w8Vh/篇I2@!lDrɅqIǭ.u@l'1aMV;De Gl &j Q1ʝUsNv|cӛj Y*>8'p-s;\,J^-%'r:ŬVb4l Vr6 i#_,ȍ'+mS:N@hT`L"g.nܓہ7y:NFt ;ݶu6{%m;=|X)"ti iΏ0w@ǮS9!` 4I `T-EN\&g,wgj@ҿG(!jZe0>&zs\Z\@J0"yo w2_TntrZ]DU4ɹu ^O)8̰7)f7&1 T[U`r'+/)_vLd(.}<HwbR,!̏s .Ů䠶FԤ[pA;NҹMS*uXCNgk笎m~G!tmDVz$j<9Ai-3lHM{1~9tIEݑW2/2::^0,(Y! FC$ ^.6EfVr 0$vL B ]A›[taM@0EtޏeY50tV$bT3L3Ei..Հ,,+:)vԏ0OZ7¯?Z,Cw@%hQiy8C_*ߔc2C׉QA8rfh!?+&J2=td嫲Nh"F4G¢RA襁idbȞ\ -)^2nӎvW*587N֨Xcx|=fI(ovO~N$ˢN,ui@OM r!w: op@ePM0;ɨU-|r·a55/DZ v?7pS [Dp߷8xֻ^ҡI8TZtXh҄}qs`f 89S֝@iEuBZ#|W݀o.y)r?B#JQLdOtKjHJ:Ίt)#"R&q8 QE#9`pT͔bme>BS6]⾖I`GlTIU<1,ed HڌD+cv]?2|d=m ܕݚ%y5使CTY#sϣS0B >w7/؜qs@.l{0|丢sXDEMutDqDU3ހ$Gl9VBQzG?TɁXHsSN{1q]،`;0\Կ-ldҟuY&4|[J, ](TOhBKsDR,`,F}8LFx0_ eYB %.؂*ٯgq,PxӑSFFq]0VK(j]eB\!tK2!^9Mkֿy焐UQuC:+seXsN١շ n ~@~ZVBc#Cmj%m'B"U$jl7Pnt$E#J$„_"f]@2*c> B۠y(Dv>Wd.>췥<t L+6F-Ϩ;2곸 38WB.IEyͭt]E}P$+Vls(} Tu j_HĢ w|OIa-^;ݎ=fXLo'"5v, |xS|߂7ǧ%~.1e ҈jX]1g8o2'lmLx1$z3v{1H :s(&v V#[VD7`U.8՝Yv0wӭ7EY6w9&PT_ؙ·Vq+;Ʌ3*Wru5EkpxSAf@o㙮t[>?eK3R1 GX9jQxJƷ=ު^Ke>\~#5VAk15%҃"6lKeXBë([,vߥ~Q<: jdLQpi .MK VC' -EDmjN6GvkqsېfgJ^< աb#9DN9{)"\a4꒛mgm[ vnc _A\ZzO6;ݡg9ԓZpUxRW(-Bc^hfwȥKl/($+d[WýP!]Zdʞ 3Fd>ۣ,o kEXTRbNwV^{&-fή=rasH ]rT{! b7;p45FZP7 )4 r$-[zYʘ_N,YQ]k?^;ؠj]\qH4jumgZ>.Fќ,&7"\]T#r E;r|Ѳ7 nP1jfJHzwt1S1w}0:'# t49:)JRM< RCu% dԴ#$1D%Sڂ>6rO8B_~ +{Ypx6;6Qgv~(p hIpXBYQH!g휙x]4(VyjM~&M$bꄅ+~~o%aAwՔndYb{bV&*uH:,LFd lP8ZPvH܃h@OiF0w1pm!@LD.|?iVė"~װ _q\zTɦB!R?PSҡrLT~d83׿!fOL c;tľ;$/~Vl]oQwˆRm : VP_"b\6o+u?>bC>,iGhPzm[@&oV]s%ưOQ;{??'xUI3"F,+#6k|+vE'.Ѝ.vR#L%8As2j/nvT,6"%FiXM$)!Qq=yt3aBdڹD{ 9Ja><?OX %͂ZU56ϪGEe7= 4d e#c6qV6P#28RQ'\OD:.G#II_@D=cX'*?ӿ9|o /@urs'_闎cE~caGh6ԓŬG{Ms[a!)L#.H\juaYsq?fa,mud|+xX8+ dZJ;jyNcmHmєVeŠj*mjz&(*ˎ̰d",-EneI%riMP8ʞ!+Y시csUzۇ]{cd mlˊ׋,x%CqګJ8!!!7vnA.^`KT̴(Vq!C`=T8-Bjv[rG59% ^fB1$%v&>7{ySjxc\"0‡Nn ̄JvUBތ) ~9  Ipp"r,) -L1Kdgd]\ӿ!$Գo͓=;GM!F$Qy|O@bZF"$TU;Jp}<͋={$Ad*{z_i c!-C ^' @w^ o??ǖɆM]3,A:}2@rۓ>Dp>xaJ76S:<.+i!,d]"JvBHg@*&a/ڷnԻ/&zВ~|LNQҳd5ET"5K4[A]ZKwgz~L_+jm[6&ESt yx70[V)T FRSs#Bq.B94;` Yi|:sa f W<9 d>[2Ǘw5n)u.[-6B9QÞ+,W{=f8QWiQdM?Azlp3~3ymV˚v7(wυK0{x'l@3iʘuuAw`[Z"%愣M!/⭗9j?T m?mBLGZ5!N `eMoN|7CxxZҟ<0&NGĚZN w,' 1iTY$s6+=)@?_9SiR{joc'xPV śzr,xs%S<D[iRkoيd1`Muls2q ,YzFf6UgFNM@4#BZ'7ŲՀB9jK!8縫^esno׌tE.V%~VɨeL5ٴ)q1خ|JHgϚ_;׊6<rIURxpD"ùJn V~edDϲ H|` ǦmȚΙ1pFVpr&7,#˦ӭx]>bwIv%9E)=`'s dqaR(>ljUWtȯ4jwB6[-C.ӽ@`w~"GX/0ddPu "SY [ITd݋?LԸE.ߞY Y`7ˮ0QjoH{ di*ѻI !qL"pQ?>E\[z̗* g]: :vCi95HtB\ad>`$KҪ:Y XK(Y3Qjb߳e⹧g0X1 vq^YWK'ǘ mkw^J f{hl>gP=mFą\=S,a((G_:an0@K:` %ፊHEX6g>%EB/Xcm|yÅݥcv`qk_U> XJ:⹯{tSؠCK0Hp'-\]=9J4^^"#Ȓ<]Ճ~"Jc;0@0)ȜJhuM'&c=-4awgLH"W8l| 4HFS$ֵSP"q9i8]kg5y H T'#maڞU j$}UMZ!07Q3=P]c_ɦ4c]҄ i-S@ 'QBaٖ&J+2=\'}BE9'iDi #c&p +$a1:۸XuNC29ȴj.i:ody؃ٱ+:a gL+M箩8 0J?q~WXD;Djc,|#dp7Y(iw =p1[ hRKA 1sو@MHEan(+" EN6D*qpeQW:0A*(ثVF0:W!hW4b]}U»_A{⋫4N; VD*Ea/QiN0ͫ \0KeJ̊RyC;^s"7<ʱ*ex#^]cšaddᲳu'NAt0Q)pZ16_0S&c4ӊ_RFU?Fc^Rd$u*yE7~gFw%GAqRhHxpBLGӵ}:z񉓺Z }KZTK{r<}0[nJ qw$PP<8Z#L_p5WxpճF!]-uhjz>fX#!E?'v`+j5āDw ܝ'@stU7|֌ptmIѮTP~US@)C ܢDj+$yE_.*h1Dq=# }T4_چ ay0\)takΌ/,/ö2NT$7&`ej  oqL(`I @:$"JAX ω ź=r.GS<ĻSxa|H,Tw ҳ{\yXᝳ˅&aH?pz8Ayڨn/]5aQhI8L>;<j! ܁zQnf`ZJsFAVh9)vqjg5E-;-aHt[Fޯ/_QA%96*~Be);X6ţre|3AF!<7k yO!%Рzsn[pG8KDlp'O`Wb7& YGM~5L/3byRޔ.[tXYZ<}>B~Ŵ)Sq,&OuX/ 8tQAZeHT:Y$WMc"φ/fm!kw *i0(&I4msc% 97bϤ~rwhhV2 yq5>\:K}AD}?4 vY hFİ%/wnhd-Ĩ1MkbhJ{Pa-!"$݉k[2K9bȖ-"&<TP[KK;^̶Nn@KoUcH7S=s=EA#{LЯ@W2AodPF{!%Ѷ~goաo]nUj+k` vsqΥab-S6jg'f|J~EiQ! ǸCR7nmrn^xLTE]荢MٱXGe9xl 6D/_ H,BL6!_N`Xx:>>Ejz'h.>BR=tg)IHA:q4y7CD a6m."-Dwn@T}Ў:ˑTV0Et՞6G=˦k<J'&>64k:3-3m1QI!=2&,Djf|&'4H%|{3L*gA8 o/1%*[cbL!72I΅utyl@!dž;="?=a8U1mV^lEՆ[BRPXGZ:Y 9Ce}\IKԯ8-Hsjڲ%3 KN?A6%2F27W±)y4үʠ%oݐ&>_`z&!pxw&9:J{ix$~TZDf1?7vwREQғ\G|T:-N2 Jȩuoawi7t'G2tSAی!%KM FN2F󳻶DRG< LQ Dg9 Wx~~pъ~H1'C[kWt /J59?$kHL/I#$&LxJ K\N*d*,NjKrd*_3?qxZל-KM0g785I+Zv{c7#rݹTjHfbS}GJ;R%9hC31gi (g %GU)y HF@Xn 8j?A;|e8,vC6StK<)W e?U1ybajh8Ʒɵρ۸ w}<&uorIKS`uU[Fo"8n}0 A=lL<12ܔ/% bWd\%蜔tY`{\A!(UAcR2 -gY1h3^ƝHH!f"̴m͏1]HWo3heZ/"̽#=v畐1Y!=*"?kqbe9-Ww3 RYbzRݶwň]A18?`{L x`aZɀ\NI~cVij_}l2i\]py%2c+_ EMT;RfhQ^x'.1]܏89zڹS)Z&N8#ԟjm‹t%WW:@c)f{T*"@p ^3Zb%u/E"_SۨgƳ sg-؄Uù-eɣ:SuJhzþqֽ#owr 汑=*a%rdD>|4볾~6ptFGշ3*t-pP+Db>E:_C| MGR*>au8u2P>A:Zg]m3[o;-(b+vjz˞lr4w% 6Ȫ/w9>5@zMW !Sf6bM!n荃[fҽ~gKe7{Wԙ241V&7>Z9l:wP6a<2Q vCnEƆ@?b#R(͞ ܰ|ztťtw#׀O%cqYLEmcENlwy.=Zgrܽ0{Gby2WIeq@چF?dP5Q_}"!3=&F^ɸ'7{O{}m )aC`pүOW34suץKQGmϫ|֖5*KfL6o@ $'C\Rq_Ӏg'S\XY^*s`d)~,4zDA$Þ`6^m˷=2UfllDwP-~Ŀ3F851pCǛiz8HQm|e_6v/ӢT{;q}~*s2^lxYx~ j{6H7 o\&dZbx84z2`l};Ì$y`D޲K(tf+xǎcl$dcdN;_lfH9)TȏʒA/`n^$ì 3 oYM,]G^j0rr֝2D[itOQޡk i8M*;2*ialgOՉvt pqDi< y/9"ro)_exPKռ5Qb, U3iA,j/$o~$Z~P<)j0/5߲pA{$ U~¡(7'8j&R ;x0#2ف)+(5`](y";B/"]z_'28?d&3a4ר>7G ?d P[&HT4W>d6R3a֪q1,kE~ 31Q]`ϖTA*z&m̾p`]<eturF 1>}xFwg?e"7A^Qm6Lb<} 07e_ |<`J/dC4jL z[{c+h970-5E}wӅsR|?‘[m!VYҵM9y_gA/zJxKC)N-dNл{Ȣ{H0iBD7CWi+dga XP*l~pe(t3AF#N'*l;ŷ^}YIP{8BA1!=cchWX][.H_ +<.lsզ3WࣛΛ q `6.u8%n5bltŵg*@rwP5 '{k8J4@ IZ>*BG76IUx%3TċԤ-\Tʩ Eo /(/ Kzb{h,)NiS,Ohi*"'a/ߨC F6{vhwa1j({Nd@qOez0ë9T& i)5S>"}q/%2d ,8-<܉v|.ѢZNu,E,!ɹw}q~n).!\_ѻ|xB(P07-]i7#,+, YTo%J)Ga*XqHԈE(g'"TH?Mf#^ foOG:¾*!#'Q[@Hrc B@R{6{ G${6Ө1|Em P\0Uwr1A1bDgsf` nG } :uNW*t^Zs~UV/+ֲ nc Y65Q~If\1׆'s!+c-PըG]pl:>x$QK8L**ś3펥8>~剿|yѫ֒eQ̪mU)o&к=eO۞>_OuOb-:Ay6$.cEF BdVlЬp-L}ޅy5%]cx Qs>9Bp7wxzycTHDܠ? SW'JEPɞNQ@ LLQJ;ACH6`v,-ZXǤ/1*+8JX߭3=v5Q (gl)H.qxY@X:hAsj搯CЂFQog~jnSV@'Vrj{fP2 z`?M)tT]JuiZW{\a'G%gW&\暥NWE> GKSibCUCh<+Ji'x$8-Z4ݜdaXHlo: rd Hr35Wo$>cqί{'s玙9K|&7+83@95ap#χdEVzU nO.5x.ܲck8m݊z*]6g[УUp<;)+on1uDf0 656Iñ=[Y6b-"iº"6 ]ʓT4LQD4!yN!,OyXbR s4檠4ńS?Tq_g "0|D_B}q'Sz/EUp!d+=^ !G9yDm-&D|QN-EtHюRx y,(3;5ɛࡄ{TGnӿ ÷DILI/Ok{&̪ YAG?b 9_ =W43NKB^E1cxaFSnQ8Pw xfEoܯ}-Y(ϔ1̣X.yގ[/N  >* ش.O_^% "Ԭv&vꥲXd_G"-V{F> < UJPNneȵ66an`{㮿9n5c i=k[X ɅQd4fN؞?Yn&+(FwO\2e~mJ?@-õp=HQHT–zzK>.|&$ja|PڕZZ o)Ma(N;*/\ 6k%nAo҄U{*hU nUKWOV]`d@h^^ ц{U֡t ZSsX(Jߨ;bg/dX/S›b- ܑI-ZwF6-hw^Kz7..(QVI#3.^{H5(@3(Xm ;`POs>eoE.FM_pQi߂*X)q"Gq oIM_i> H:ĄQ-~5@yEj@Iji:씘д?fݜrIC_E5]^+I"Aer;œU[*cs-ĕZxzǡHrVMg{hSbFвMUe @-Lh`/5Ű^ eر"|]ps2 ~3j 6Mg;=C$zÇR̮$HoS'+/#V%5ΞYO@&5&u~~3%6UXs_9fA=ĕ륲ؐ`R3U_\%VG̈́ -<͈z3FBµ$QÈ)DhfR +ĢBdWg5bWߙ!ZA(iZe+☼.޸)I¦` 1 w@^e G?3+N0u6eT'ZO%y-* "hg@.a3XI\Zlo5zbz4+k{ܯfe|~{jX=bL@L2fЛ7 AL^.qi~cC8ÎLؓlS!iP _SqgO#1WQپc_k 6MRsvA6իQ ď! ۔5"RBֈ.Vz󧸤VU2砅turF7dL8JnƢ4\#=W-:}8%ADK|I Gm1z:a\3屚=>)цv7c%y%d `D&8 r6Λ .eN(ۓ-STj7a.Q{ܨë Z[!oos4U_ET\zʼncت+;н–i;!Ш&/6Z2rr F,0ٛ0Sn:oHDxN?|$}s4.ȣr"A1R@m# X"`OV(17,Iڦs"?8j5r̝.bg01/ ꉍAʨ& 21ZChk28 11>1dkw`)7BTɃU,ӂ+s^ Lo>[ҊAHHfĝ3@ERX"jH6Q~gԟ,JNpPJ(BZI^NgōӴpnz跋@&\H'j;N=C]G%mOm*tf Ej pX]^ V?_/LUOɖ$WcP!+%3!'}|uKm3禣9{`'Q8m RzaCQp1'ڿL*p-V塵ӓ{x~|up~.7)h021RW3 )5f }<>oq9"X Dφב\79{t9n9Ffx ;[% kQMUA x-Po! TSvƠ%X|Sx ].[ek}Nm=*l*xGcMP%yfpZ`ijEf!>|Il:g{!o\Id nŌuw!bbf <Z07͐ ؚęDl.[cȉGX}*{[gLCJ~C4l>ݭ܅xh1ZdJ,0"ǔvff2S˜YoI[ZÃaT<{a6 (,\L!CЅzV)ՉpO-;|XģCXA 4'z|";0}sZwT`<`${6JjrA3ܯ6LEeVQJ* R_1]x1ykMɯAt=%[O>(%rBV%p^[Q>򯓰s"$x/qVNjه$@Ki;|\,ꀱc>;K*fYb-,N@#l&AYUgO9t܀µ^L"e8rʽN{qV9Gy`z^s3 $*:aH @5 ͐qY-{Ơ!16@'T| q!TNt4SoD"TȩAJ[ _tzcu(uƔկkk^JSr켰+G:2E|[җڰD"Up5QŅfB;ʇY%7/rQ?qZ`Tqi0/y,;%?ɔZO7tl}L(}"z}9L4,d;Dy!11!k )  iC5˨qMr뽷zւX4y N'Efl+H8'. mH׽ِ8'#.c{Xg)U.ff1j}\CNô@ݍ; ;H0s.d@Y;txvX6W_ݷ;yXxcZ~kj^p(#:7hL[b՞3}دx c>Qލl"GڤۀBE #j?{Xeϳfa<B᩽n NuӘdpsbg_ x"+|L9g4DAK<B4Lg=Āj[Ҿ>wԣbb`4_)Oek\lӷZ]pvi5Sq,]}X;13hu qOgB 4ʊI$b+yŏ85ɵG( wrVi!+* b6:me$x_[#YL|M}_SGLo~@w|dU +rJ8A8h:een 6fl =ڲX}la}+X+Wݐbgʎ9Ȋ'e#*Aj5srR%&?c!I DaIuۙf(E&uiIB ?<]õ@(=6.OJ)HIB \k: 0f ytyG|,])7YRKi9092<h(T)3tۘV~"x4S74Z^X޽k 70 tK)UTP*iE!b,[Nɱ#M"(PDO;}Ă,sJntI-j7GvL*Bnn,WJডINo&P@\ji?Ҳ}X =o8d#.c1Q. 5R5 ʈ$R+ wo9 4rpW8jW6UޔGLͳoV;"W+>7GZ]>|rymȩ E IohZay. I 'PHakY7)҂>Ƌ>sŹfE?,Pb|s5״$u] õK %gy LDl2./VReoP *Wr]Mb 檁9;(HMAf9wH "g!=Ku ‚z@>TnUo@y𡮺F` ̳8p(:}o(x* e0y+csԱzdXt VT!=Gv?fCB/@oxk\N'NV ًr\mq yqH 5 ){o4n%s)J>&?6Fl -}p4v#2<'&3U(XnA 0PmU=; | ш4 1و2D=P^~sgYºI~ܷ[c3} `m;^Q'8F@1jEp߻Vˏ#4HGϮn6y6 W "CpXPҊX@"EONGǿdgZx-\ʛq|43ڟ D`1Tz"@1IкE#?1-j lP }/b(ᅶ{QqWZ~lI*˔)YzWIY˙<EwڀYGٗU)"f֧5곦m>XOJ#dz,bc1̢ |Yw7)!DL3X=G-͚>mJWfdc~4-(Mv7`oN'~2sEC+8de ٽr$o.Z8)t%6᪑* ;t}ၙ{G~㦒I OͮI e`A+V6.CrKI\dzVllլ+gv ⎞3A"Hǰ :3'`!RԪJW)"Jzo?S@).=t(Sjxխ}q'5.HzTQGz6dv0 I+ 5tTmHLf<7,[]ĞtBKue%tj5 , ^kLv-sk"g2M sТ63iŀDɍjNf&6p i&afR/ -pC`ɧ&Fo!8pD tfrJ)d38KՐg 2Sӊ'-JMТ}ZuLtOT}5O:Z#MЪ@ qy'8/؉GQ j*Nv+8d8D @Ky_8_ς0WI.}ߨP _òL;ٯ%1R@Z"t3LhDgf\-UPU[x.8 %GZCRP3r%{7gx!fp#zԎ#/pA#ȡLKh3;#89e'VdVTxfZJC@'%:Y<4zc.d@ {-};ޤ3\nҬo~㥴,nnD49e$) ;,1 0(MܯiSS # :2VY)F j)r~HJGOPݕx%9 3g7_u? sɅ^IY"镻F})*f*$[ֵ'A4B;QbH \@ ]yt-2jqkh"[15O6ga[sĽT  xbT̆Opdvq)tݺ$Ɛ|VMg ?aN}i^nt~z|iy<>S |Xn]ayZ20>ܙ n֠:gNG KH77ćn4 %cP75#nsmɶѝ$q g)2i0KWx@0EFXSD` W568Bך½]J*H<%^@EMZWެVsF~m\hyU;/n$ ɘORC0#ELw(`zc+^l o8IBкgmN$FEΔ)G ސ  Q$sx2LBӷ r܆6ɖz&}y LDxpdE ?v/~lIJX{pI7(-S1jد$VOPxmd|7 `B@MA6 ٙGe&,JC95ry-fFblO(qN4\͓8i je^Mi_W+Y̩'xUЈM<S!L#uN=7#8-㈀E]ytRLJtHN8 D9ۤҹ[Хv</ӭeu9uOZo =v0]'@h:@ ߐ)5^ v^JdQu7^MسT[&(̍@&ÝLLһ2gqyO@A|Bk-3{r+ Eg{\_~=kpE L*"tj#%&m030uӀ8ky I$=q." _"@"d,@F"JS2z~ya=;{3Sor2YJ0pO*oCelX TGm5 Ђr"0dB"|#{ &4ӷ8r]ڸ)@I-Zfǯ6/Wu\{%`PI(%?rz<:rY[ǜ_V=R+/3_#ˬ-贷'p{Y^H ȟMFbEd^&: o}{r> x>C+T^`56{&SZ#ʣTmYPy@Cѭ:Vӊ^P5l|Aɪ'g eΦ82߷q1C&eة4<qB" 2ۅ@"誖:;T?(LzyGO?s˯T 4\-LHGŽRIu>JBGȘafl`\_z[dRzN 5&}n6d/)v#C5x[qIuJp:U>~4̪Iy+q˞['9ő] ,U4tg^s}lKѪNqBW ;&z3@T̢D_3_ }"|u[委S8KH+|}0 5)g g2e'):8m<|u|6ɸR8%+lS5^#zU"BTpqm5A&3-RH?zKڂ^ėt :r(N<^@KYtdR1QFիS`Ci7IXؕ(xbޔv xH/c5kΛ`_C,u$gGP켮ayjlWe7.䂟 M٫֮Z76tu7|<%D'F.U ՝yd C}6!۠,,rP}"'(n)5 Z_Kzsko`brJלvnbb`4bx}~i5U{AmZ;qG0=C/"u(Tߢ@*/x *~I"1':ϸ߆cwbc$r0n{s!fg~}&@@LejebSg`mwU[@MG-]^b_j_`j:8unkypS}-@n|`px9~F:9<_OYWpO\3<- Eg9 %GZ W&{>ivɋ2׼U ^Q4p]ĖjJqvـj}sfʝQrouHGwt1okTuAL,`W/SPD_Rؒz1R}U w鐧TTMҘWD L`}Inn . X]lֿ( o g"a<ε3x]a-@5K8dDY,I-R8RqҊqi&K̟RkV:o2ls6kg0 @})CJ md݋`^sK EK<=d>-'Osd=ff|:I-YfCi QMjτ08|%ӤuØGR٨ DH>l(w+Ij03ۖ5 d7lIWBI!ތV*dE pTpNO2߮ W.e-=zcGQyX7-Pz#[]F+b(%Z(@2L.&3 tR߫KP5yu"O>it\)1 wR^{l:TUP!1/év_\6BFR=8q`ƇÈTuWBpn5U9/S%fX_UIt-H •q-i3biM4HqK! n볢x 4i1DM6 oȼI+ ()_G^V-͚S)1VB˓⺴V5 Eh[)ۢ{g6FNmc^CmzN_*]P\b↤n# q#4#C$ q4',i\G;]O lF{dHæ!i 7bǓp09햧u^>`b+V=Z%*APe(o^0ՈZmq+Z@u{w+&=);2abSEL hٰ{QA)P~{?*-EYji箃晉5}Tѧ^qG5afDѤ>X߈PWՉ.dg{NƮC# eȎ&ҌxwZKҠ&xM䃆}AZ3LPTN#*ygBO?4(\?|̩+NBȇ8Bь펾xBR c>I=kLЕ3)12RQ4#HLnO#GP*!-:B1{Jzh:̸ z PWۊWRYju4NH0sR"} H袴Jݒi.H6lQ)&Oʡg@ޠrolaLJGraʖZ%YJrc?O.TǶt69e3>e1Y$FbW``ij X` ׸ $Ȃ5# y Mvv#IKkzh2"P˴!F rNL]j (uoqt|UYTfvFW 3RJd"?oJс?Hyuб$ԟٰ%:<9kSAp4O92WPO;ԁہ$Ma1hld=w#JW?\5kaC-B\a[ O8esHFmvꑘeDi^q/7y> j¥.➆.  qZ@6\YHBY;c y(`"pܧ<9=#5]yLs?t \FL^W oTٮѹ.MK: #97MJj͈2_yRR]u@Qf W!NH(pT a)G=ӹ^wC:l;*cCeR64:ஔ{0f4!&( O`} (g0QN8 $5-X/O)ۗ:}rMT_ o!jUx'^p &H\ޏ!؜iDqP|>H~ Ʈrn&h3(ٺK= 6ˀwՌpqƴ[BGF-M}Y~Dor/Z`P Dm#[jwopI( r!5~,ޥŷDEodTgIn[cӉ1Mȃ+Nʮ騔62ņCiVKe;π} Sq縕D<`bl8PrK]x QQdx )*Gt -HV{ɁE~~q;BpvI+P}O < 1}7|yn\<Ꙥb7Ij1r{:dqjWOڪJ Xu8C)ea]nub/y nvbD_!Ax paVD[ۓ 4 |Gۃj6t)^ഏ_^.CzYF7e+"V=j㯊S@j'u|u).JayK\zn\-գ<ض{ZS4VxeO{Ta[d`-5go@ 9 a8@|c C hW&Pr ;SJ dUL/ ]&fjgme'Iy/CS雳KMm];1π@2N aD{Z~LfXc{2;\+z1peiMŰ.sxVW>@OLz#ej~f }<@/aFE;%%=/Z? >c-32)ٹYܬI(MCf&<lbrW!`~/cfMI*дs"!oWu9{ ,Qg:zш&>O=^]j#v~RO6pF 9KbY8$?l5 1ˀx12vc<O.Skl7^gC^:lymvei\KKRɗH_Me*T> ٙ?pAhʀBJYOQt_hٽW[&]>u<8ecПآ Wp cO\Ũ9>/1j d[G=kL/ׯ| YzvYozl3F\<\[wZH(&%UxIl4/׻6$G\ CGlGʰ ɋ“0b%Wcc30(-k$rUU<+=xMᠭks`Tp'Xi:T}?Q{yCQ;ǤKd u08V-hIr>c$7wy &پ\Kx8h#ѼYĬOcX8N[C'nՀ*ϾqF&nhPk]2VfdYI#$9 {s&4H83n~Fw: uٶ#.~׭+p!ŋwU oNaƀ'4Z`a&}=y}7$J8"됹PӢn?ZZ3֝Z0ِ,66Μʲ"cV%/`zE4e|pT'H6d}VK/_pD$D6Ҧ "x^jn[~2,51g0ڮBC*p*{ jа8§ j~\ |UYDڥw1/]-ݠ4hUy> GGu* ",G@ `ź8 7Cc:R6C aD r"|$㯹:pcUwQ@8C]sXE,^ Cyu+zADǣ_vfo~ak~E#dw=c}٤pNkOG(5oIDZ,S0mDdusT z@Bڔu)닊"h.;8j ڵ"F3@x$.k1 vD\F9k(cӮW{9U Vl9YEKp帎ReK DQ|Gd2_x0! !ZrڧPf!Kz*J~N, x?Bn3{j+m5AWͽ;4(#]/TUʥ}$!f\wa z ~2aJX;sHY[^L:ZHYz9hᯑu> &c f^3EgyUR &bZNm Yc`Ax#GJo nN[wKpg`ܵnۆֻtaK> X_9(mۣε\; W]3~BMy&cMQ_72|"UJ8wu#fnidX!%Ȑ@F` `AoڌBz~.<AHIZU#&^LQX$G1h!y}f')f4ꭺFØ0-gp#\=Yk5T\A~e'˷'x=0 k[Y%,Ů5i@eFG -8v:,R?-9 փmfO mڛS [eBrf4OYg۟U MR%A/396g"s35_-ofR#!#"HRJ6xLCĬ'PumI1r;g0P`:%``ѩXb^!"Kd&cɡk˝'yv9Pj /z/ ( >:Ad:JH!t%r: ~,ƻz:ZeKmo-r*!|e!#PIJ`%̠c&e(DfҢ׵(0x3xIm9m+Hwr*ѯim.;@yA `%~ L :y"Mw9FϤڇUn &Hdӊv-l`?R\nR-WH(l#j(BJUh +VLn& G >JO_-?F}e>)jr"갯SK.&W%+W0!fO K(4 %+"`O8~-sz">Ɩ7?plZq"KȜ68FYC"o-a ٯ[UI/)r#b{d X,gLx|Wޞ7Z,5c /&~HyPAQ4mrm]pH=xվ:0y^9&?<S^K@G%xL&GR8@JMnfvS:fЖ+P6l N4YsbvV='l1."S󰖰c%Х2T]r ;1a˔)xNfvwM980Җj9Zf܌ŊӿA!uڀ;٧FRTGQ SJuρ b ޡH21#EB__oflHp;FqR%c:Y?J1>M7פ|c]:?'JL@k9Pd@CBrmeYx J,+\ <כ*vc=qo0<uA` 9.3F7=c8Ĵgu$X bi%$fUIuE>>>0鲊 |"Qna:{ꄷ_v&5 уvlSx و"x\={. ƪq/YQw:tZ:ZU|Dۄff ՍU&LPX5HY,-0lee`!Ͳ߇-~mc_8vfͪ-ަpbս;QDc2SzGg$.hwli韇:Wsv@&9P!'ETeꝟn5.s0S9ǎǯ\[[NAku6)ӋI>S^c}R.9̣*j(:f?50Tghde?GF[ݼ {ej9ŻrƦ,P^N󱧍ZA%mO!r& Iÿ6ߓS;",Qʡ"B 5/EUp%ɡ69K_4u>(A0٤xCbbtDE%9C*^O\f ӼӨFKZ,` ^(ay Jƴ% q M6$ sQ& IGϪg}z'zNIoQ-'[PT^3hn&&qs\ MK_3 ܉]}gG.?f/C\{Ep;V+дJXĹD8"5 oomqҜ`o=ę:t\))@K* A/z}P_O6ҼE ^oZxq5#9J=[Z+-S ǧ<|J ˅ǷS5:e1P *i@w DHl)\eo@2şڵЌ1r aX q6m2DО 8GJj+)"Y wT.2Jo5Yaa(vyk0/T8yt0$j3J @ۻ2Sc}:(zs9iSHiKGH Xx/=LzZa_簆R Vy"fyTRahLC3PW,l&!Z+Sjph.nH;kWTXSKA u)DND!q]%Ld_}#jքvdv{v%}qzC~dn8GxnufvG)Ѓ 8tԟ晦/4RL3xgLf,(?wX/Cw&m)2.f{ t}!'PJ)BdjcT>Нc>&tMe񁰾VLɰF?~_XjgAA:9VzZi,4͙MPT.7k-h'3k| [#@"V'0bB vӯocWWwgr%KU T,A 0uN~cq\_[ QVͷBO:I13Fܼ~Ag}K+EĀ3nH|&l '~IĜ׊.?S?% v=7YP=%Oԛn_f.'$-.@d/RU»طUp,'yUxpsSPn_*`v3 @%/8ٌ% ߚ|6-ě?Fm]ly<ŗ{4k]>kZM`hdDz7[Kn梁ax hTXߘ0!Ol>"~9e`ѰF2` 䧪 Kp%+\]"6Vg $0ڸ|nn?l cB/ł33>#'Y3D&UdIC[Cnj*25z4ro fe*} i5kJ=0$ ZAk`"ؖ| GuP-Rlfđɫ# $2Vkf[:PI4gL~t#gj6?hi'A Ttk7>=E{_p4spx ?'Or?͞c`eN^T\/qq)hhlMH $<>d#'Q1U6^O+{5ȣ4;,fa2O!}_ X5^i*ݤ:[ : m96ԆN@DЀOxj 市u];[IM.(9#Tq2MS(ZG]lblQn&WJ|ow1.0;a VH@ܣU{grĒ64&1-: [RȔoĘx3ˤIy Q-Nw%頎&7 @184.0.r+H;f͕xc=(1>=Mvj$:x\|s)=Z'/Dxˇd~/;4 KT'5+hJA-*FÎω?&{Q%p"X-q#|w\ ,pª$# -}ڒ,(Xc_6 w6:j7 +j* ۑvx[~D kx2&ڽjxniZ $2-ULm&qV[G9-τw S'6c &`)dx✴0hqEh6I_ࠓuYy^8jYUIw78+B˒w`K=A TTsIw fZUcگ*w<c|H܇&T/WWF::|ۺdKġY[G'*vQM[io4 >.'nG>i;w-dvj,l9s-K {J)Ss!wl(U/D%,4 lmғ`νUo2`bcD%K6b(-41'®_-Ԁ.ޅl&$&i,U]_hbrnvN\(fhVy2SmxLs0}Oc%7xH/.$j,B9kGJH9|Isq׏~q$S;B2|j-0*R)z FY|:-(SDIXU+sU}B\jY̿:g4R ,ɡ`]BK<#2_;Ѕ[Y{Ic$gTO01`,m"־u&OZ"5Kidj\xsNWE;$рqh#uƵӆMZղ1q+[ET$chοѢS#{~B8_L/i h#16忍eK?mZHj[cg~'2q2fbz*߅>RkϾӉ 4Q.{m"%^%U9))6ζ},Kbz>Fu;2PjlJu.}>DDVYHt_NHiو\yH]hZqTz`Swtr("0k^ ZtrW%L ALN'`{N3I,2ZuB,$lGM$og_*bEH 43cFc"8e@)/'3& ;=8GI}NÌyo(ߑ\Qjgqt$+TW&Q~v s":TK`w6&a%1ed2k~itSȄw-mB=\\Q>{JҐD|]h/˜gdhvt|톄jܙy( %s-Ԃr0 r}pUeʔG T߯) K砦 ʼt dAkG4dbӰۧ ~Nk bzZ3s s+vPeU}m ˭A?^W3zy^:n:Xl %ZS@ЂT!"+J vΦ;AmX p2/yAq.;0ՎC T1B!)+;ۥ֌9i c-LgcՖz!.wPY")|uyt+@`a5VN#y@!{e>S(]i[á4l E><3pk+tI9!^Cgo'浸2_2wC[dM`Zq73cdojӿ*Lζ6,_bbv" <3m`7T1sүCz7j z8izB0[ETqc_Iʯ eH'nK:A\h)ߐN t|P}::5 T&7itO|QKlewp !ض{|<( Z9d*kD/+q7(n bّ6_kfN6s-ުd"1:t I"I@^߇qv"90s!_֌wZ+rkY ;o1§AP 2mzMӏ UL]Aa엝|`~&ᓃZ{23H*.D0Wk2wPS'iGFz N_?@,5D=sJav ĩ*'T?۲#mmv#=ggwn B"[]0s4D(/0K"92Ťs(= .! <"AYGc8S=-՚WBk+ͺWNM=Zc#X[JI;Pz<}%['aZJޓ4;_gQ.͓+ Lq*q3G!֮}x 7ˤvI{>ar(gUv}m՗+Tjc!/7PmA,{*.TBpl'\b[k Ul+`zyO9C2XE#M/Z5mŁB+U%yaΡxH x|c|S_H'RZTwŷ]%7brB85>,>9g1m,2VmJa'-_U] `cqȊ+w8;Xvx|6b30>䞲, M.defcsyʤ,xCZɏYƺSUpW2v^,gt0W5Ltg2Ib LIG ,C<_#XUU%VBJuq*<>L_Mzt[끞0<.v~8çN)/pDyd z1{n' dybOP kgqlʈěxG͕9͛7fj7wy"MHr;T:Pi{JB޺ >Oerv>J|! $btJ;,Iv,%ʉ.~C/pdjJHU , +QxNFrȱd=goOC*%jT $@\}b:vWQ*6A[qg1]Is{i\rПX,E{q^ S6'y&-8D, YAs_xy!JX~V 3SHOW1 = +[ʆ^q-*rAh^7#IL`榶QN Qf}rG&sXua27Xt, Y# xW2NMsikCn;C~L_޲ a7xȾz1}8a25H#E4 C}z,xH16TӬyv[@| C#đjKWNbY ;;D)FLw47Ϙ[MǸ6l~tc4_Wc; 6W NRh٬F } RN+o>)C?l(Z!v iN\&U/J$ 05ߗ^ N,EP,9tlU}JHF(_\nD%U ܏gM/_T\KRm@v~rȉ"Qc'NeTf?3v~ʦȰ^yUQdxaK,t<3ы!%8Z3xhX&G!0 Z)2 ZiRM62s*2:G-ٙp 7 W i]L CR Dv@r©Q+@yA& TEЋ`&nO B< e"]3;ZRaC=>GSBɼ @@mGysip`aI?- б4eKriEz<240~o ߩY#z͋e&t?Aq65,6IB!Ԕ'0 WVϘ? VQOD6[] f+WtO݊֯;"W;]z'#ߜ[s,S;t>rpZH" 0Jʚiq Z?%y|(PH`w%3mlCՊ/9t H$JR>AuVstZ#U[D?E'ڠE9~|b(~pDNyxJ>fxݦzi-AA`1S*|Sux]u=gu㌦z> b}M!㉕rK uorpJeW:<9ߘ kY B9CD}Byr-ܥt5myTJ Ȱo_g -tR Q<Υ<{Ecr O}rsoyypoL@Ҕ gSVWbC# kUUĩUsO$࿙A,9~)yFPkaEWSq]pZO>>x*(YZ)8q`NAX.x*RӤѮTt`3[# fu:5Bƈ_H;)qwO g8h-CEkhxd>[(-СeVx+VT7;́s F)3XE*}Qmwg"{KahH(ĸNVqVePRpZlqB1NݴSfdJϸH=4ի"gf->mj}#hO:6'q /*N6]qU 4MJI_4[y׮e5CL%3}]аXX7%3i^xXIR(|Y@\Q|@δ͵Bv$1Yd{HPs 60t^XFC"Tmch&R3`9ƞvVqF?y.`(jWs+v}R 2N_J @qo1^ 87 i}G1MZ^މg/j>i9H@[ ?7Z { L'y)ԣ.ʆ cRً"#FD}C4ghW:ߡՍtbBL 04UP\> MεlWyn{n˒́X2I!lM5 W8%Lraeڪ1 }u*p(uS̡/K>yE_ꮿR#Bhh 2\_ƹwJ4^ļ:𸗃K`[Y#(9",s ˆ:*9 hjybu ˍexe%co γ͂#mcj̗ wܻs&Y(RR j~0č)sQNy2:jC֞{6Ad-HOUT8~vl2*^/#2*^}C1X~oExV\ jJEYTrAuhK/j̓ưg擕[pHyxeZ}S\=y [NSB>8:qJj?R.oGƺ1ѽ;n E ZZmsuՈ7bJh;BW@Wvu1޻F9g$";g[Ț^x fHLnQVuV([tQ)G<:FvlWJ!},~NQ|sPQ(12=1c`lJ`QK`y *<|1bO-+7>Ɍ26PNx![j_yn8AsN 2ALwyg*,f7+o |bVk19R~ i}]$aBONA-erceDoxX{"X`(EoWjfż$$Բsdn7^`-S"] N5j㬗&y2Sz =]}p#.Yn|1$*pߗ Wu{Z[3T!ݲRIqr~@J.Z&)(v?_9u0+c*`MZ*H.COOaj_+ 690NL8 U"M?pq^q|@*w0L^B'<-:.i&hu, n Ӽ]1KpK'L<ᴋR 0%p+HSX*;0)bȘ-zqtN.n=2Wsp.AABQi3QêC&3)=WAڞ "RQosyAF4 y!*kq&I$(`9(d! (pj)Rä?́]ic j "}Z MRِ$fק8w_|}tyzMH4DuޠZ [B`?BCΛoɿzyFpO7<Ǡճ u&P8g t6ܘۺ"(_e^~TZK^\PCc5-f(b\DUӢ8. XGc&sdQަ{wr9Tv&LlmVp)O08ŠE 6 *'5̲ e$A6bT 9e1;bH OZ&l8BJ,2pw7z`1hzu 6'/;u(a}|(k??4H々ܩ~[FUN Lc^h 2=Ua$+!y!W=" s ] r ^1M RO ῰F@ y/%7+$UOɔb .Ȧj¦w%/U+c":!vJyR 3Y"6f`)eq* ALimHyJO4Xc4lK|8C<6yZ(Az[ErPwK:И<ՠϟPiA-K§eWR}|a۪'sZ.Flūս#l3{wFXˮ0S3tv֒YfSţ[-nq̹լE̡c*>l*=!K% sEJ6R\Hqӄa\|Dꔅ΃%aO MT+̯=3@Nз1 (9_a7,Z"|Rx4gϑ)Uz+MͶ;1h0й%"+z{qI7%*s#TQf"PN5RKէj%ѱg ɥ:%,edk$?>oBO]YwE¹e2￯5_K~KȺ֡;ix4e ʹLmuX4}{~2Cnajv F13qY3sV/UrfǺPk{҃Oeacם4i.=9+4ʶ!]lM1]ktS01X2NiLIbwC 8N(D أ5K_:T,eQ;Z$.&2JklƞXϸc%>O6`k'?$zF-*#s fr56&tR)%ͬi;Pv8\w:"OR-B`bm5wv'U\p~* ]BȽSRRrfQ{솼F&Kh)^*Ui>]FUrlA+T aBp3O]*)'1h/SnK’v9؉lYC|f,4r׷w]T~#0ʷSc $h+ifF['d-J=$n( QpS~|]9f6!). QqaI/);.,'Cͭ<> lxх  I@nolP䏠}Ӄvtǒ̤Fu@KOR|)nMmX%'_HmaMiW{k5cM|r~o"\M[gg&fu3?y<2󋸡kp %~oY~??/ܬb6mUUSI%_uGUq-=?xf퀀b<]fTc>Ի5Zr^Ia;j8k,>>ЖbaE׉0 "tPS̘̍gqosj^N@xsi-W-1}='āF79DOΧJ~Rl=G.2GATnmOK.mll0lW(5cݧ1U~6ZaL=:5ΞJ;m`#S#: Уm]S 62 u&CJs.c%x$C&PdfhEӗcs¨Yb_5Dm=jC{|^&4"mhltѳb.HNv綐r/V_.[zc )8ѿUhj~^PYĤ,Oi0NXhJ,yZnR"֧Xc%c|{bq%I^V&*yRMj.͠ZtEºi29Pcك_C(kDS_<6Cg۴}A盰k}gs?jR,1'CF oH D1J3@$'Or]@:qqwgGS4 |5`R["?2ei}*QqN \V~n>(&^) ?0)6 7 IJ|0d0|?T8G4NDP6fLsr1n'**Xv)Η[eǜOH ?xΘeag^2pJ ":be}țh%!YtLu͠}k`X^1u:+8)WQJ6@9P!5vذ{ MčͱGN"C?(_t=>%G`m]0$v bgFe h]Oۮwv0t\U5xt4kFÀȼF3YK\wݾZSNY lFӃFo(̶U5*g߿RjdnGJ?d]))⍈ )ĉ6o%6I,Rkh߹B iVѵ^!&׮+ ~y+gc?􂑖Űv=$RG9iQGi_䳙a(=P]`4$) FwKtnjd}?}Ft(d VbY.dmD}]79pu#)-D5F%-{+֥<_jܢ:o^Swi>E2@ܓyF^l{盟O/|auGkT9  yxbqo+xqG5-rtfYЄNҖV 4VC>1C<5$x.J^*A-bR8s =:5RYѕ{ly:>3ۂ6{~L9ưW]J\)9x+:}~O֊d|`iu-76T@Eٱ!M/ ^AK۔!Gs Kau|ԝYT'HihMt} Njzas,R;xOijjtS}:e0M0Dn6 _8Ă(3;lm-:YϞe*XΤ=ׂ+ջ7o2z70Rq fQ/!-~^B`n@WP<8 tduEIPls$ojZu#~ڙ6 B8e,n՟q+;t-#x-ovנ Ŋ= Z=OMQvM% r `b \*77ъZv(a/aO4vk>:]%լRhδxqR˂O#g6 taKy03! f`ҧCZʏk]MXG_)!8j(z-'5U9(Ki€y+*r w">*Fz]$VP:7}.U~!b|BsF(6hHTkʬk9 yRA8 ~&Ub3Q=Dr [<sFƱ[;g<V.% +FI1]q&øG~Gɫ~,zɑxPp,d/(y4@p&CE::#x=6*sq^:CaԦ]b{?\ {trQ))AFow=XيGZ.gnQ74#=1gG4 k\>hsI 290t;nd)₋/ŽlpZy @1Ygy+Em I |%n2vD)/D]!вQ"z;U5xS3:>\nbLt.[oOӹaGnSWsuSE!Q T 5K]3+Ɯ}vQOyTSBj@38quy?;ήȄo<Y",_J uf"GP2M;XS&+e"C;tB (r>kDHIAm#6O5tk!s;3 z.Xfgb+f13Rl)iGG*#H0bnQꤒD"AkZ5F4A'%.w`m! SGVPg =v=E"/ģ}jg[Hfq˧LEԍ*{o|ف_h2$ß ]#"4t MNJN띙3򐭀!oc[iNvu,@3LO[D8SE %2՞Tbldzه;.rb}<=MQ ki8?aHhf e ^c k^ʃ3Rk!M*o xDQGȷɹ& ͮ>Ʈo 5%Y;e`myoz4bbvq{ekE*Z\C%:yʿy`\yEM6Yd.rua$G I:o:T, YAbV2, 3QB 4a S(P A|dQh>wLND//p/ -Ggm,QZL) yp(_o`ŁY2Z\=Ƭͬ<$.(>;->‹q^$j z2)E<>cENR >5BG⪚`4|5▟-(H{П:l=mq*o3ɖ x¦VDӟlC!^z~_d˛W JS>dscN"J|Hx5O^_&"rs,q M@,\>wŵxt))ru`8${> IGJ~Rx_([EϿDO.%:Pl q. >c&x.CಬɢEh[bR;> ޟB,_.9]tNNI͑Xt"Qko7`NQZ%7ej}x(F+t@+IQx?p_ʸ޼I/4(\ΤE"RGٻ5%Kҍ( #3Ounn;;Ey6/8>ZvˤJ͈ξjt |zL%mCF$rR!RU!v R$lm~niɌ+Ͼ?k`fKI;F<1TMw9|0"G8!^؁Xe+wy zji[.jRj } ]”u>As%+K#sTXF&(l g;(QXq^X@ \'dW0ث`|>9f-j@$ԇP=qc̅%Nr+/2/f9iTՌ~اvhw:p,JC$Z|Mq/J÷2`t+pg~) #ea , T~%E5 ;#ŏPLYB%DBV[ϔ@ќ1$~Rh7JZ8 6XhCFm#3m(CaSe)Сڊ\et7o+ 3R"1ӭ~vrwQ[@FN@ygmMK?mη; .`hbNQkyx{Z:SAVb7VRx$o b0ИfXVaIw[oWD#CƦ@GLaW^v FS;?g/k 4X9'.፭dsۻi rLQVcJs=O9XRHA:o%&^LӉP !8֐Pt ^6X%3:: W#RWp| Sbq2Ϩ@GV = W>c*B3(l=B{pbzh.1lQO1ߕ±E:7 )A-ߢ% ]Z40G82?Io#20b".̟|i?U f3 䕃H(;P)Cy@sFQ%ʋ3`(žfTE1G4NDm1qS)%W|‰~J%"lMoxa |^e&dŒx6`P5}nl g%( JrXWD>mu_bJڐ)?t;>0x{*{f߃m`a#1җ0vVXAnVC)`ni;H+v՚bMzR2FJ^! BOPڒrvLFe͘y>E"Qh 6TWPSjhܞٰ%X_\ sgp暎 ~qaiZoLX_92BùL ăW8꧘5r$o~4PF xPHmV?nJ0/~oۯ MfKd5xx|BB9]E V(|~梊FV4]j ,oo9{M2 sa7ȇUI|#_{U(ew3J)$W~WIڟ̧PN_\>P m?[CVEQB -v'3#+ pb:~k|9 0eɟE+;ޓϸA#c4x"U+\&0'xb3ZA81e(ZVNx`QN_0{BGO.(5 4&&Z8d{]tv1qEߨD+%d *"=t 96  L:FzLO׭K)?>E2S@ E>0G_7+ELQ`?@HDbV_DlD"Ut@]㤭?Jb*[rp]F,#?VIzW^z}7ĉCx[F>R| Z 2{yt$ N[~=%Z e˜)/L`-: V$'f1;RꂏUDT-ۥtR&D "v݊P.#4B<[䴺-9Gt,Qgefo^ $E!8jڹ5$GI|f-c8SƬOBr-W#,/VB$dE ^qa;xeWcHՖ#MucU~X!S!Pa.SjBRgA])<n H'A~C+< QI銾b/}bf֔q0!4n4}^"~m(8bd eQą@FlpDeꪟ~=E魑XPV'J/gaRnMH<Y}V[{=d0Vs cXɤ)n_#G To܁Xs!? +! p1Z}h4E_#k?1xFP ^|紗߫D: d! ADPӜtE5Qekw ߆&;,8IC7xuwlR{ ue"W1ZO-< j^<^X_xc2rrxWtluo-P0k=5P~ iQ vySy_X2~\ f% VD(P8*?6c,#tGE ǂ)5\p`luPlfN}< 1f_6pni=.dw zՒlrvuN]8"Ou.ɯ%0Gp9'r|^٬91>V `nWDz>7/mpr[C;0;=ٍpծ`@Zk^qbluBg,mM?`i̡t"X+o-_k㹓&`Kvzۅ+^yGVJ)]HppɐM7-"#Hؗ}hP~t)utcG&?IWWC5Fq“~pB@/o:*YD /rGt,7DjK/5y-aȏK3jR/ C ?=ʈ^7VVp6[z DuE'7d_*2lcxS:m3^ qG$ZIg^l_ NlxIIiq$xEmڛpcz3g,G_3x{1+? O Z*5h>ix-FbZK5?H޻f WT%^33L_ޫzZp]ٿ^YTi8ەlEaoM֚n4һVovtF&|~H-sUpũoD/z Ko7JjnQ-Us!\|/l req8Kx|zx$q];gp:%p/ǻ%~w'4%I9c/tzBCaGloU|~} DQq @6 | &K{G*Cn4e=/;xzy0NZ(4f_k+1D鄭Kk墩{`5;NQ#cF{U68m  (YJ#c5HKC\ ( ^K:mOLwExwj@`N;v=5,9Ms/f;1Y=b05upŸvs<¾~VdՑ-<# Q_SߙOB,YyʆܰHYWT t7yGQ&Gl*ƚ #N'x屸*5ha6nj,K\ =X-3V K5 J6W}4L>uTђ~40 wѽE ,qg@ b䲟wj|u7Бs׃RG^BWѥ//#% .tb1¼3GE/ 7<7!4tP?G{3iH1 J^+,m,n h;C~`͎z(_[^/HS@I#Inv&}t H`-7"x6{:'inWy(OI-VIni~kv8W~"Gc6 SpLN|>Ky0o[nBNUsU3_-]  n[EFýu{k\}t![ vr,J1O1gƑn4v%&<-bQl;& o׺@$s}A7UG[ϔ=c"l}!Hjy%ЦGVN"K86jCK?BKU5)Pp5&K2h?IţcON>]Eӵ?w">d@1[B#etd|{0nސjzt1eMMnMPr򛛚}|>^Y?M-qc6#eŸ}nء>%U':VdJos }vX;,~u;͞z/Kc&VDvAv]P^BoѹTlR33Wj8NodTCUӳa̪r~pCCE[t RY~Q(,R3y=u.|2Y/}9=svl.嵰},(S8m;;] ~ Uq~\7ƪ2'ćŹwmY ]R\._ gdR1f+X^Z[(DSXغ7eZ)nO7R+p I,0WT&{ U]{wԀOGe8!bZ-~#hZ>o<-F+5U%(K^U>iYBoWw}Ƽ]>b7x#f➛YZ/-_$PIdGRK֑(m`Q~jN<}ѡ9p0Og5 B<1ΘrqL9\|Ĝ"ǓT^ch:oD"1fh"7@'=5JZgi=7@T5q֏#| Q)CxFo _gXac8:0&>hXO^ ռ{۵eNۆ^\cT AZ6_yk5r{I35q֎y tw ǎas<&%*":Yzރ>[EDCQ1ʍܡ3E'CY ˸|~gwiϼA\GܱS󰦔k7'uL^eYut~u6^.|֗-S4Bٲ0+7CLG:HIb!Z!+&wר$RDkp9a&yO^ 54k$CnιcYPҤ*(a(ƹlj4dԸY7[T2{Ly@?1UT2sZ;?%1ynT iJ=Bvޚ-hլ? DFn-ܳC[7afN:D D=JWۀ룚 m &fO"V)3飑|X~qq/ b>N4{>XByIA=Q&%[%qpyu~7oxI 2mXߡ{=bGT8&l6GS< S gO04e#f_O"2B#{R'@w`:ėA(>,R)%?1_/t6 Y_@`I;u%Dx Ey7 W($I*X*:U@[rn" Lja x??Ls+ht<Ԋ %@w ܣrQӇE"j-:-޲/Z?@p,S5PhjssKVA54+1ϠaIc. qKxJ` 3D /kͱi t]^%c?OUJf=e\-ǢseͰC|' MۻmǣH3l0WVwE¯$' )'GwOuvB[x -=FJ}zV;fM^\Y:]VҺzSĘiT7J tl"_pG_pXj(/+Ⴆ6̿#S83п:7)<1"بxEE) Q:gJ_EXU1y'!9t$c\o FXS}\tEHE;y{fWՐ!q؅+ն/!~P6yY얀/C)uU.M)?jM='4ʹ}14_P6Zi8n\6;HC6;aFۗzw'᭤ʅlJ3)a:,M(9aL rAapl5e@]VcCG1 >62!O[yCX+Y _ҵJJ/zwt',[n(0JMH)г ][@a}p\&&epJ,SyVxt2yuM5,)86U01};/ k5Ölf |,LSX%N?4f?K7[=M v}Ca]a<¼-b2+~?0B\1+Wt1LxH3VVA!!쩕k=\4bOl˂]7l3Q6SMHnqF럮"0D$?ZFN|kdavvM5`vꄙðLz̺>u֖hV@Gbhm/x|tCU ;%3>lb;ʜr :f43Dmx Þtm>qp<?C\A\NZn,ىmzI@DZ:SzȨT"'j1[4İ[̻*RЋ=0|n֝@47[<ך>[ǔQg]I+}«;-*ci㹂]jd[Z=RܻB{dr\Y4)(h4X0۶uk:n%\MzlL#)Ӣ S4|v@VhE@zz n&i=eWߥS@Jbr<,X;z˔|#Zc|cʎJ5ZIt ೂ+k}ZL!ib E$ijNu'#Vvaw%.݄ܹBct-#b듢c +[ksiWF6pp:O0bd3:w/PpCrcUH6|eDPsOp Ĕi!QRx.dc)ѓaxPR|a^=auJ8/|۱)Ү0CUkġ1F_fҳ '<t4ie5ƣ/ŮO (8#*$19%B@K)) :vyu1x&QB6CAnH5+mxkf62[ kBzy^Y0,~P(qCڴE7n$leX#)4`۷07#bb+;qWy=2@.%Vl ^ ia#_'X t/c'9n̺7[T7ZPF $Gl+`o<\H;H&)زTkQI]@|A-fl70e}G#TChJ  vI&)ehd켇+WHF `Bh) r2+\0AD":-!z >R,8YJ" 3N2ضг;+W060ɉNOJn2h/L>%\@l SC]:!QfHjK,rY+>!/[,$Jcbш(RįcFw*μ$%φI^D#YN\ؼf3%ߘO7R򬩞,lK"N+m՝!FSj,6,M`7v.A5HCo[Z׈ZFSa*0Ɩ S)gMpF;rFEeuȜ `悊WP-nin>ٞN8= `(wZ bB4/MWߕ,rsz{M']`,CͧbDJ{E)|7ắeO"(6k4mAuʐG>ߪsGmN9 jy$k^+_^R8XRQC#U֑i'NMJzbuw&r$֓Y0lJx:c1y `Qh./15tX =ņ$ ¤{RAz4JpOT:}}ЛpINO^)#^fh)7c?䜯 wC_]h ((;T%uTi"~ M?39m'XIo˸kS\,4W[Ю5IgSUW|qFFKvI4.^BVhvP4K_hWid@ysMGvC)}TJp &f2>6 EZll ae[IrdkZzjҍʻQ86j|ڸȴ䷌͟SbJ,~7@<)m Y'5 B烳-O5Q/QġzOFW(zEW\0^u˦⍪ɞ`lx}s\;.n׈}{sgWuP4t'[ <T>F+/+b-QaؖhWuBO!.4kԛQ{u:1?ɞ!9,YCl.a!!!uZ9m=J)&mRaM ѡ1ߙnLφ#wނG>jEeve;s'),VVQ׼5~BHE%FHGSwGqՃslZ,^^8KL4->V+7? fZKd~F|`7oQޯh$ԁr4/2)拽WHm_girNWwZ\-_pzUpy*$@;sL o!oQxfVW&֍e, rڻf:mr>ymׅYz` BC'Al68\ISW̑jd}-(0(џ'609~0S bBj y%ݬơx-fLsGRdmW ƫZއiIyϡh9۾N?jorYK]nG6&hFM]:ޞX4wQ`XHMɌީQ "2L+r1'EoQ\ދ8Yv@6^.ڭC#e5V)k_i6jX#/FQ1< D.h3@eI}x?^yb9Rs O0Sp,|1G`#O%Mj 5ܘ A -By*{ \.U?(V\L.e]pnc[-DžEy_pJE,oJ4ցK܎?;a_aɇ򆛯TN2?e ϶'q'  bٷG9qlҩJ2 qNI^[畊:(fzƥO~W{蠆wL,F0MB 3{;YbSN7> gE~s&^]c !Nl(w#X(zͳd aVQ'$C%t@ڜC7p$'cXYh)p7IgoD*+"'Cу7Q< Qfx",,G\\(=)jezJCR7Ml2iMA%>::ncڄqsgӔ [I3.Czڂ# g@FB'=M47%>Z^~YuT&W"eNK+P.f+eć,8p 1*>(OևOućSuY大@|9:zpu+oﮍS#CZW;Oi&XoOƾ &}v{dq(` &HzׄEJ-q~,ZN)v8pSBUq|ף.L΍ڗhd*VN^ţ1kާ>N~^΍}e/Df"BzmȶĜC!kMV)~ Hirׄ2z ÇuU4p:7LCӒk;7/Z+KߺyAn!6S cqNVaONFcC=6U7k֕E NUKQ3m)Ҵfy)0p)' +1td %|!113T۾yS,F[|X8cĈa`ixbAcҥTT4~ȯG%?'q'l|-t@UQFxD1[Gx|$aȖij9WԿ~MrŹ7SQ=2Y]WdJ[H F^<+ŭ(ׄoNF5ȩ=/I>7^xdu26WtP9)Vu^=82/ȴ?4r⪠}E=Ld~⍓c>cKz^Ӎ*h-2$&a; %evcQ_#n捇rcy/ q|;K6^69wmHЋƗ]9lx{Չ-u-|nxgD]企E,"q{} #$<\y\uCwwmwEA~{'zJg5Y ysJV6UzYhoT9$?UQA3xsKնHʴXy\FڣVqybא=J;;J,z# |$]罞&v=TuYс\zD{mZ,>ilo?V7K.pRU{'Z]wWΪk*< w3RjdzQ]ڜ9ʽɜY* i&6yn1DI{9A;\8]ĘobyLgw6q/˽9K p]Y}p+n',V4ԉ+q/̵^nxU[.~YުWsB#dQ C@X6+VP=:TQW޵hG\]uk_|\ݹEe:8y ʅ7Tqν_.A(S_\ }9 əh*U+Jl iwGv]},lBS=8i }" ~ Ege$R[_sp:ϺŽEم]RHf9؋\v:(v/*6Źd2 \]}cns23Rr9V]@33OK?~~U,łXV(\IoAX|?_U! K{﯋si;:`be*|#p}8+cG}y3kE+}k3cG+7: < '\^A lljpB4uh{"v\qX(qHO/xt3>H"P,p_~4?`iE SAz蓟@q#CCBI~xO(7 ֖@8B M}{8^ rv8M yС6Aܯ,O ՂA}=,̿??g}Q`LᾳuPg 4eL8LȂp4Țh /E D]8)b QR6ˀ', S g|!T8IL5џ- fcQބ pԿ0(@-A^J (oZ63XpgCES6[-PW'8@ZUJ1:=NCu׫wG~9mq!P64 @iۧZFn+*d,IK`ZfӀp8@n4W4@&$vŲ tUWZ8ڙ$ң(Og?}`L|g r"I.ĸ8.~hi]P֍۟.eCXz0@Z$N.8D\AyEkf.-LEp Z隋+VZKf!eNHUԻJ;Vk22)đf ?1ŴAid@1gݖ@ $Ny PgxqtMaeL4QI3RNDիc!9* ^+[(8x,L% ο2f 2oÉ0!D`K +cahS0hKg9IPYh8tP qJP )/K*C'f`Dɾ`8,uoƧ=wXTiOhq /§E :F_tЂS&D>B5(ؽe2EnH$(Aᒿddi.0xl^47bg7.^%r P\mtV"^L@&`4Wn{J!{Q0=CL9椓C>NTj.33_(>4ytпbo桦7Ix ܰx*(C?nhd)3,մ`f;8j e2H&[^vPs&R|Vc90i` ̍ĮK_g)ҢgOfRyȨۄP>]nK(*4z` gxH.]}jt s LA w-z ::~ CѐWaf #ʓ3 {D7}חmdcL?Ş]WA"'mzO;&|11s7u ̾wQw,wA>I#px3}VJ3H-B72nP&DПM 9>Z4W!v丟?.΅0Ftu)lCմIl CB^JGU]Ilj\"JA|sm<yp0^u0 e9A 2Iν`2J{ q3#" UOAg3[<:"FF̳"6t=C/ 93],N@D="bL M֢ mE8|%hg|@Go "w胧AVU{pO$!Atqu7<|e j0R>bN/ LyeV6># #`@S(x^tN@\8 5' c`N%+iҝC}g' -W@AJ8@ͫEyBMR*)`O~6<}KNB|{6'sM0ZEDtMs1C'}A'\  6~H;'dzi($0 hMtpsKB^ J  ՅQ<'Otɗ$c,U+) Xd622'a<[%޳3.`0T_,/^ #8HS͠5e}k xh -+='<5>LGׄH"PvqS#5D"Ĉ~]`=7h6xP^F!i'/~>"&ҧ7S@L'?+-DW3gX1%_vxkKoO@W@|T([C\(YHiD 8f = XkP/_X# lD >L *a{f~ D;&Z U}ڴaF8׽pey08y1YXk].laL $P`KrO|GDAyY67s@C:²uϗ'`C\RRc7wmR!R^%2fXcUoyKD $,IJ=Ia[[aj$bqU`NZ{7kđÍ CɢIg ћ5Ad*y`7Q14\C~{n:hr̀^WI#|FEF7pL+B 첡 > <n# El4灣0FIo!wJlTcLɍ>>D)! O BJ27ˠG.x ck` Xh'JZUV<(իl,cS(z+:-{:>N!S(BoWh~c n2FY#!Y'I sbLBsϿ5Xbpa _ͨ#w@GKj'ȇCܐexߩ m婧ovLlcZe}ȤJnB)ޘEaGBֺKkK %bWS.G6cAA]!hA&HC:hs Ւz4t޳+rE~n͚s=/Z?fN!!&uמn?Tρ7=>݁KSڌϭ6l>ozC}8h3Y~1ܼ!-HY .bAE:3\C\AmAHbݾ44 6}otae茄FO?C5\M ;u <`@T_ȉkϣ7F9t>:3bylVx}( Ohq8 p|1z3axqH2ssf6'Nw#aS`%i6/?``:n:{LJ cF8`AeFoFsQT@>R (xU eѹᯃwm_TA맹KpAP ~HO %xo)= Ce0Xx97 ns6ՌRK:], ~>?'FBqiÑ[]pFVs)ƿ6fЌ7[; :,,lh+qP߯0_EA[%gi "&f]93#C%\^ ?Q@4gi&zP{^x\۬;6 $OX6mE&H,kIVM] iĚܦVbbC'6>Dlɇnw}\S&MѱW3S2$S#NlGQefmm Vv0xK@̅\$\tN yff=0⇿7*dGPz2xNncFбp=KɭBdߤy*?txA_6P`&Dj94bc,Sߌ8] O@ߥߧо:Ϗ!T6|H0!=x~◽* 0Q(@T\UiQ LX(WPv,{1xP`BmP#. 1N G^!V鹈ſoѲL0Y(9#JOӉv+dd˵|b;Te"0Y7n /& 3CbFᬣ|,DB_1.[L+iRY dHs0YhEA߬eG,\s@;yqddaֲ$xDTZE,K^{/8Jqj ܰb5YC2,Qj?+M @,xK ~.k`P^FX{$!#|& ,q+hB?;uJ-],3Dk1Y(U5i<h& , {%>9& V c,7_,bI; "B{LJ K5A}Bl@DNVDu1Y(b,}.?p& 9u-V,Rb}^8/& l|󀭕(bbP*Sژ[C;LJlʿq^zACuQX,O B{B.W'B(6/c0.Iϵ1.=,yqÀ8bi8S2& #{I@q1Y^|4fBrEG1YkuNpVqLFobQ0Yat^DOc0ual8>ˆn.D`q=ˆF+vAbQˆzgHw1jp lq9]da\ 5Ѯ;,F%q{"4 Rhda\qza,L9A0!P#L)]=G+ڡ兲p3T jGQ& e?ػUO~Y:0Y(!K&h;O8d쇦ι "|XMeekw'& e?tY576#X1Y(6~w qiqU݉no1YڙY1Y4Ӳ|d݁daׄC5k/& eݞb4 A^a0!r"F/dKaI,f'ayNکlCi1rLD*[G-y:iO6~:wݯbn|v>:ZcٱASZq EL5⺎ݵ:h)mV;OVz96[SCuMVbkx[#B -{(kEHMڿ -N].K{=vP :TQ@ MI*syD[1v#+>)qٺNm#Z`ǵwMXr -c(\sa,C T^gOȫǮ9Qy{ ȫ1U d--Ww{+-WTO嵧#B ՉW%Z Ή=krwj[ͣ-đU&6 Z N1n#MuW&@^1{M%1<Z 7$:Amh/URk}-W|Eq"-WCsޱ|/I~@^5p YDXu:-W__|:2]WhzjGLWf1@^󞗵*K[`uȫϺ?L㶅\)ȫzy^"\ȫiZ$o\ȫgzv Z c겢5}i572桜CK+˿Z c٧OZs^Vȓ89k-sKQpZjE_YT\Vm*Ek"c[lC׵T߂"cXϐ+NRdLv=@AKW*3*2&[?T{͡Bֽo-0ݡȘlq"+]\Wh)2&[ gQRdLlzϹ1ZɖuxPrՊ6ZVðd㐟7KE}+O5L\RdLJm .ZVhgajkDG"c.#R,BK1ZB/-Eds}j -Ed~ejEy"5w2[qh)[FqK\׷qRd925l>'} UMJ"{B^/'g1_ǂHh1z-EbˮG///ѾӠ_l%(Ju-[Ll=5_̭rCKV/2fjZkguՊgCKS;*}n5_l;Ϳ&yR/Bp]N.a"o؂ʾRcr@u>+>[Sy0Scihrh't]D_Z Y~Љn/#k_O{4{rZ E;7zZ W^jYohnnX gjy>#JD z J|͔e4ubQUrdaػ=0Ϧ**X' (Juc8 Tx:L362=v;~'mnc#6\\(M[3 EK/!Y%GHK7<~ K[h{5RE wlmM!f6Ne Ka]NEqg{h<06Zʇǐ[x[-եU"83&1z֍t|+g誹Hߜ˦ IoFG"{$a˰yFQVF0%37N=Dd?SKzs’Bcc57u7 t6=HLOoT Bt6}IlD8I4!- HzetKK݀R!W j[Yͭ{KIvsE5nށ' x%3>(!68b(\A c"}vt[}o;Иj))詄 n^p, Ll Nr3r\ j} P 9xVNd*eOnTPD?ĜVOiD%nZk9V,k y mLz9 d"Zgkiof`oGO,ak^R͒7C?V8:U["~X]cfy=zȳRnaŌ%i5H1Fja; 'Gmv=-Lu9w:Wš?!btTuLX`”o_Ӄ:>㟾k 9ĨpKC;]\vgo+z(dEvU&PP8<)^Jہ0?)“ '/I&(hzao`_Uj1PʰA<ï x*X1>k7&[:?iteS]kszn}wC `2%l ƏeuɦOuUT ެSF/ 7A4j@(!,),="#1 4, ļ횦ӜKV.{|P<)uݧϴ{<̵秏o>MzF:*TBf=Mg!{c7 ۻZF9%gX+SުZK/5;3f7{0mnyI>`-ϭ,:`X J_QNw n\3hP'!,Oc'w]X!ftxNFr8E?>ɳ)%B;dFv :I  <{2w.nfЋ"!AUkeGt[F8W80Gl\) Unᚐeh`p6[W&~UF6ў\$=oA4fM]~ג9l4#@ǽVH2VvDW=OeZHFz֮.ڰDپK~mR <[WwR)*{pDjx% ) 5\WNSqer|]1S52+Z &]R$Bh+сJ>ARUupQ9n+G6W|Y=i$j(͘(iiTs}1^7#ۘjBVt^sV)frxg~_0eӎ+VҐg vz4w`6Hb. ٚ57R,%6qsNpxSɜ9˜+ %[%[555\AF-p^d9gjr)^}P{T=~. ]䶆*_JJ 0 }7!٘]Qs|P:#.<1گ{hWoNE U b%[BP6NvU`:+Q._D}C.}N|4ʏJSQ;kLAt!kT$15z&:i~8[ =RӐ| F=1F>#a1tێ]ƫMܲ쵻Ӻ߁:Y9ma3|0\lF7WqO|5JeՅ!o4coFڂ~YK{Љ؁Vq>5bKΤb(mRo7"HHn37MJDiV(qT\.8 YM%k z%9p@4̻F"۹Co?1fSV! JdF:.PW3R$<и zm.`bZ\`k(Oe˞9ى~pUNNY2 }EA;B+B %ДTY Ҋ%t1F6On%͏52k#l޴,3_!|Lݝ iH.LEdkٲ7=zp'/l{N/K,J7j:۔_=3L:[wq%VZ+o /Eco\5P`/#K59.)-+(RQ9Qj|A'nKG9r4^~&jZ(?-X|_-i4TŽ t̯҆1 2x5]:.Pp̙~KҮ)^Rf5}ߓnl}DTeOJ#eaj`]oDu__?  8 {'$_Z]h] i`o6:>'.:sI&bL:$38_t.`;md{yۅ<~<'m~N2pwiW$ Y g엿繜|\: ?=-s~wb.?}$?oNt O[O]9wu<}n8IIu)EI'?[^@w;IJqtv=w$%՟nb!&/@R;h5PK;`YqjTDS/lib/junit.jarseO֮mUڶm۶J۶JҶm_w};wޱY;cFK@utɈ( HȊ@ _e2"Jʴ22R4R4S L;22.TP'wRtFA :92$؟fbkLhCOQ"Silbdag_:ؘ9Z?fjG[[Gp:YؚۘߓZ Di uD_T ڹ8 [Xۙ3Y89Ha ItHg,,^ (b6 Jne˪咬y߀?3<MqE ɡ(Y[4vI(6 +>ln%U/A*0q#1} Z8aWSˤ1#-qWq 9 eӆ$RiwмVPlwRI,Pr[ JyU`r-d4l;/3ex %u%htPB%旘/Y$o)ũ.<ĚuVcrQuf0s!vaN'| ƣk_Xz0~Vi L+t#cA0T W [4kķ#^-QYDb? "PLG/CmHZ85ܫi`uqFS>尒u6f8ɟPlCUSwC4W.mE5%T?px.%RrE&r xq_!_ 3 Ɨm1ɏN||~,MA%4yM(>!AD i 3K|OAn}v=CVӥF#?oﯧZ(~wW1]Q} w`G﫠:&~*}6 ~w$j&TLz/ |D_xhE8`%%ҙ):WDP?0w8~ƨPM^,Pi2V.n`c]Xr &wLn/% yz"5GVzC i"ˉ,0jʬhs!RB>SԨ-Ћϥe/("J&%W;e3o>|Vu[H(jӯ̞̇%I@w|!OIJ[F)-$dm.Btb;:$JI2僗 4x"IфG|ܝncX2:LGx@N FZ3 z0GPXFlEoB$Ẍ́f04ב,B#D۬S^+R +7*ԥk k E bag)#/[uCUEpga7]KY+Wt`}J=N[\nQ9=Bz)D&߁=M']&f&FN{8C5I=Q3ڑ$3}N"j{uUuk8&+j=586KX[BZOC x.@!^ SB-$t.s=eCϟWT}F @9J[p%9$T bsB9 Q{:!0f 6}ŀ n 0D<J]#"x/r[{Fґ€j 6['^xE6r_0oyPM߂:f?GqCn|ѵ)m ׁ9fqvt}-.,I8C7[F[3X!l8 1!0Gxb$N_{~^:c֬UY|/ש{mo>poͨ:xhn~?+Ual{7Dnx MԝAeb<RL>'%J4A)c"eʼMjv>_Wr-^_*vT\1YJ/ 'uQG!/1G:6<`rp*=gf&jF14dQ+6d6XGU Y(E0iݜ&Q"a )l2@XW 7NRLa%5H>>9ER2)+ҡBnHx!)a iμ/SjbtJˉbl. jkRpSGAb6$kf?hOAVn5eki:=Z'9Mlr2X0a6C;ݰd8 ؂BTSAiXHcuc pivV^Rm+Ći^eB{ATP\T:@٭)7=/C}e  ( ו΄#@+p! ZPZeBZX9nέW+!n"rf7 1JT99,sEB3 RkfdrYV'] F^˼0Vo8U1,DRe \e,*N 8t)s0]ͳ+{,cť6;Ԯ1ʹ -Ko8߻QrIVƠVI৿%d1 u]e.u S>%wͺCZI`-D ;J,CE[nZ +Xh^tPz}G0f_b7S//O(/fe$|yՉi@-q025WLsj( AR9Vbѣ[`1g()sdz(bj/1TR?8K*>2y6u.U$lTlwZj}ga-IrPog\Z[ E_aËrpo]L [)WS\YI좪ldv6Q@E`VZrp 'gTWޛ:| Υ'/S?̥Pe?.xpWb¥l-!p2 Tü6 IҤ$ b0nyc$F]3pa>k`g <agq!'֚K l}ˀwFKԦ b(e0UJvMAY|:XZίJ6_#LLY̸ZGGh}[,|䍵Vcm ΥfX2^$wPٓ.Fx@fE7jLHkӬ@:M"jR81Y*Q>  #svmThdEd/#:Obe/NM(c3(&DݷL-vP}Y-6bpNmTLjQq h 6Rcj#[v\mb;8>ڵSD7N(fǓI1B +x%85A ;c. 2b[4EVl2-D>6^Ox(愂krZ\&N Ze6k2ؒ~bR-M&%_* TI=Uv|ܨ%'60ٶI)52.6jWe(cƄnG5 "nJgT;_~aӰLۧI)\4 @bz0qzqZbxO` G6 T=7?f9v-w Sy!;p!8od"yޯF(5u\|#4ARvߑg3 64u!YXB qX~ͬ4RkE|U_JI%Jm.L9#h7ھspM!.j)q nMi&2, q!;l߬?cGu;|e)/lcDS0L@uo ^Ž$*-~4Vᅊm2"-&AӤO>IPJ&(;?DG6PrP`[ 5@k+[))ԂjDVOz@ ck6o4N e[ Jn,>}dwnH7ܞo:gT#bu( s/.>Jxq~HC4vO4j?Ve^l+1s~Fʄ9C"iXygཱི+$z fe|DzW0~HH~%m_ŗ 뚻v/ ?vc4P•MVrR$ xFpX83lvfƞޔ9Q<U#RAX^ٔߊoܰBleWAH~vc\#G֩]OuH4gy3ؔvuMABe؊\ AT,O Aw0qBA*w6&g4Ch ,TJnFz2jULzbZ-_Ci#A{X%B'MAIW"IC?w7 )4$`uE:DcX)G&'X吵YYGD-:q&=(B䨂94 Z!ΘN>)XmSD:$LWo R-w{~$0O?l AgiՌ4i{ i3fŬx!8 [Ϩ;[:M)* QSKs^Q/#~q`A1U>uad _cpJ 2[Iv8N@RTm$Gc+@*zTE@ɺP1\H $Β^Lռbe% 89T##]vkaZ.{[X g=a k(+Tk\VKTV^m{>}<|1C-k>>腯zЯg[hdn[;ew%H4W_e;|=$[|vR'vS&@NO._bYA0hItnflm ]3T+k\MɐP7.IɲdgkD ]$U7GdV$1B]rOz7nQd(dᑖbM3@NHaK>̹NŶT-|MBE zu ~^fdܶdLabTPuA7ua U0i-֯;9]QNSMU5[Cp&z_S1\?%bK(qhX~YjZ*?X7_>a给z j^ES,(iY_%մ:R6ԺI$>76Z!&Kf Q 7/Qf%KҦSm__{T!mܧ&^IDlj=s#.jY-pv!U(;@"O}Xj%tLVN,ݻi@w.!$+0\z-{ %iD!Bg_7W97`2˵:rBf~15§$*najkʼfE]WNa&1a]MЎTҸDrjy7 *Swvؒ^|H? {h kcJuHCHm6,yiV6gfU gb]e`[Z3 qQ$U@|0 R$a0אynj"d.<(VU`Yan )1xj/ij< 0h646?St1Ulq̘M8ao22s䡎}ɡ66I/>~/KȩIqf)Fak۲|M7Neāooe쟷fn:VfRRN+,+A@X$ *!{^Pe5:MIL UU@N 4#fW/SV5elU9:{4.-BuGhAđr-TH/xTgIx/$G/%_v*#MtЁ!à#eo@R}4,!)-%mxz /- #.)(U|*/LV,FLv T'/76-|$kBji6wN\ ]~-Su T .x|g<&OG)7LvD3lo^OmyYY3:x%3j!o|ud$*t+ZFQpt8E 2}>hgZgQei,/ '/ʋY{-ޖPԿں'2za:b*J"9R}-ఝ^/bRv!ZJ#Xk (;Wa'0w2{i:eO!W熀I'Ϣ7!$68xoqգ#]kVm 7lAZ?EW$0ß@uxir9\dx8(BDTE#e``k `Uj˗ a\T\z¡)J ^. 9  $nY1SrN%cT>;֩Vj7Hz +fX7hS~I(rJU ţ ʮQ4}5J 3ۈȣ;i\wU P2$q(c8+R#_8 pJk,GXf8iD<<3KӀN 3]6l=(YŪGtu IդB&)q75HBi<*)nG\Ѹq -8SZ=˘ud#??Nfcأ7`~:b)ՆI;(5ԏi_))Q'7)cH >,40BΠQt~-Jr+FY Lk*%KC+jgS)ҧc+Ioc> |ms*zT8Ld&%"z>KS R%yh^B43z/cʆ@b8aMW.P'.U XQOF҉{_u~|5yK/T3 +[CL2*d?"Hm"2aq~섗wR(H~1w 6P Xd1)rUN9SYk؉jv3K|="*?)`'gS)+ WP!8Q,fB8=#JŞqZe Le[dkjj21A3#ܝp0t$a MCѺJ#rcqѼe |5=XAg6;ZjEN㜕aøzkd`ϣA4rfRf\˫iVtbP:gaمoCs20 sVE}_}tHGxdlNi(AoTB}=3yrAK`ɳ֗boIoX]z p Q7%v=i yZ7%cCY m\iruH`>SCh  >RjwMqA5$bl=S.ԏ3qQ&Ɯ&~w-ٮa@ n$[+{qf $yi TCGFHQ_SS?LMC~R?'ގvlWC ضKu׷yYxZOl=3y2DПZo-0\y Y#kș'@& PS 3AhEz I-=}n iiKG>5=7./x$g[||_Fee[#AK+.T*)PfPzI;U0C7=pN{sR*%YN(2L)Rؿ'uJ?ۋ#*QT75vQKYu!(c^hwGEˆWOM7BLn'EGL/hb$qnT':I=Y 3N Uœ/BIVIGn1Kn*F c'IVc0]q 2JIǾc$dV Dt{s]ETq"lPvjZ*n}G5692Y; ]B0 TcLBP5;SQ'Gy&9`鿿’N! u%v{lku5a U(A5*0!D=y9-1mEI4CX==XΕD$mWe1ے.)oE]'j齆&auuB)BY\ū5,ڢy @]E¦~AB1]lb7G1'lnY跥jaFw汞 z;M~!hzjڄmGIP.6sTlrAV{ $rq:x6^6l;غ3eCk.15y] nXLz~2̈en^ Ms'b]T@mY !Pބ'D]iwg?1i&b{sz$߅py׮.:]+5c/S+Qf ]-)__MX]fE鏮A-pCx bV1o⛔IwǚCd ֘Y{stKVa 9 YV;\Y[.HR$McVVdo%_ØCwbCnC"2j"o: /j;.wŬ$>i&Q&|&Qu2!׫h(+ r`[T ;/7Qo8䠨lt}S2Ue$s^54''<_I`)?[Rj }𞐺)}v(n2\(?VwңV 9g vc ;UMoA"v^oM# t'/wp?bz =<}{B[O[L,(+tdm`ZkZb%AQqsΔU&*0MM-p,DC " 6D%mTTOƐ=~%X!3tO~r Сf@Z0٪IZ8"Z938(a)f^(rLx ,rkBy* ,dTZvK>о&qk_Q9ICƥQeB]P$`Ҭh B S)|j<6V6ԙ`R)$~zX\tNh =Җ~Mk 6wkD*p!64%?-!(p?`ںpp3l2.+(y,K+9UN2x/RVՈUE~55yԹBsGEJWlH?a$7.zs^3QbgQ>IUU?r"Tx˫Gc|'Fd:a~1#7ll}Zp&)O? Y6RvxéVW"ov _tS&8E[gڅW*Ugc~sIם T7 @' ҉*fx椙t0K's24zfd 9*=Nl$5-mrr|Iw/_&ɳHピFI,7S+hsgi(^n2?vA;>,ڼl/]ҺNf?0 @uv21u٩Eѽ~0{zMTjx{);p_qhljۉӉS7ɥjxB6:i R~7o\L2?KwYM_<s|N1^u=R!O}$~!Z_P\~ #nW~ZG[ 2CrC*b|Sı1{0 u?]B=N5o] uP `5U KAP\Mh- IKfʵTyԭn!j鎙@3ߨ@N.ro;|IuPN1QSbz/_K90끟#@ =IG0B|Gfb#@͎_d{GeE4,<H1<z,99';`_r ^q4M=aS|QȎ;e--+Ѳ{-"k(bTxOQaFԲtCQgLeҎ΍' uLǁE vΥg%s;ǦSKJfp $rVdE zϻUmU`nQ72#.d#&G)Tv5I6&PN3׭+%-/h^mFG]p0 1H`_@mLÊ䡈<ꖌzydžKy }ЇxO)2K^10q__]C:IwׁPy"owO6"}:Ֆ&pʾ6v沢dDOtG|1߽:y˅ ?=tfo kȒU3gcDpk\'}sNH!g<==WŔ ukϨ!hGأ; # ضKDNh/d.d{փjBo'SB؁V[vl._eF#'x%fb=/IpEϧoI9 c1T'Otol3m;L'"Wا*[/ozRpQl/oTr~ Gc:>~;%e"~O/ickeO66G.jWΞ*I|UwH(ط9`(e/'صDsv6/I4tgOi G2tGs# 'bChR97eFg|-!p@39S^Ɩr፲N[,~#t',0+^ H+{֔`Z"Wޛx^rڸ2fg>y4:`(4?cxᴓfBvήcszx;-ļ3r[>&3lJk̽;i6f3PtaݾG#R=*٭7+Z4yȫoMXf{Plxܑmχz/gtb/wLb4l \['Ru/Wbu'+Q"u)DZɓ)dEJV2h/ԍӂ/m蚃f/,("Cct cmX@RF0ϙCeA;SF0(hW3zUVKʨ3$iw:c᫔|y*j_3~(uۉ]xDM3+4=1NW3Iu0Aҥ h*oSNJB[U\jJyՅbH yDA*>kƥJܤZi DrREBⅎ2srN{^aCMƵѻ}7Zu.f8q6NeL_PT,e%¢qYe}j% k:Ky+"o> ֑wukݖuؙm۞m۶mgl'36Z{O?xQ՟TUXY/dlXi㶖^e3.oL_puifST ;sA܃ǎe=\8f{Q Lq"+knw(H.T狯th (|x>$Sauh\'*XH2 $ sg;(ڪ]>pVn,Wl ,㝽K;ڒ87o8E% 't[0QjHCSUNήl_;]Kc]\L^_FX!x JXܧVgn[JU?hw~#3I^ҡ-*ACV\%+-{A4w|,ׅ?-93@'Hߒ?#w >;u(#,1q~ZXGiJ/N~+Y(s`ݿPqS]ciM$lX5mp̵Om\^B%xæ%I m{D>le!Дz1=Cy)%7wNI*'cPx  ɱr1و=AOvG?} 32D0m!{&9l ;({.l~vsBxHYm9z 5GHJx?{@ uyd؄b &5oHl( Ed)K@\99g9_c. jJAfj`/=< 3zUrly$[XF 2EΔajE_ qABНhc$xs5% Y@^%Z ͍{W& /\,-,>bi'Hor$bGzLҤA\ƯfS6@|g\^>iVWWVtݜNAF׏ڨFkf"| O"!(7eM E5{z'lDD 0be%vYaŤA ^u%je8䍩u^jQ1u1 諞$ùBN-sMNz`u"H/OO߲q:v[iqӋ8yȈd-e`{C2uyB T.kE碧3yCdQ=[ lHbHc1(N_1у1={Y/gu3Ͳ%JҀZsX6N~[q7+_1O恸=݃BgK>Eb!{Fpߦ-`4_v/z9#Dbn* 2{ OA_CHr_bT Ro^׿cUߡb-`Pʃr3Q$=60ᤕy;v"/@O *9uIvG:ky~ǿ[Q=cd"X p RHt 9<tTSN josmZ=ImAVEW+z5*Ծm-% Ef&ݵv-SuV˝5[S}ޏjQ>fp"1L> gg T!\y3,{MC&k;t8Bg:xbWن jһk 4g֠Y3St1Hsʔt KO3D$Yv@Z(t<(Rrζ&-_{Պlkul]J@x^ 螲\CGl# >|ERSVư!"A% V@+-~1jp|a3&4?i9i; -Sr}Vt L߶2Rl_%SSCS@ݿ;[ӔjWы ^bȄ/-ew(=/CYlI'C5]S\+.gw[n+lexvY]*7݈ V:ee BToOI񌭥c9 (a^Lӆ5ccJB\(Cw]@Ʃ1a$xWv*ob.!RĦ;U{IVKKDyi=XZ^"~f #uZDŶFMW=\Kl" [ ~kU;2,M %v-V]]N [O0,R0ޤf;cDGP k4ڄtsk8őqƌ lٷ+G24ݮYv ͰѼNiF7.S!h=R._IB-ZL2y+XڹZn :.5q7 Ap s2xbU5$Š=S"8NG^qϭ/>wx"@ݬ'V'# %B7j$mbFD@5> B8Rhx4%Sy4Qrha'vA oA{(=BPPSrͣTC+6N_$F6^WX#G{ݗđ߿(1?0ě|jPW?|b_!O!BB15w2tw]oҖ_\>thD7>=!*$@N v5'LdBC!h{:㉻`hwq3Ä@,G|#~k}:+l:GNELoVGšhB7JV!~.+&0Sk둬I39̧E1.2> Vy֑ktp !HC{ڼTHpu'^_fbHL509*2e"+g8دŃlYggPor=[9 tͯ ){F'č=LxQ ]H7(-3 Hy͓%Ιi(KpkUރ (N{A@Q6 #O ؜3S!WڲA*j wa$ Theofx~7,PO9 g9a}WwXIk11si4g'8^11LJ#ָ7P>V}92 ,- 1. Y7]eP¤聑aT|v缶f Ev_MO} !eCA F244P6JuP[]r RN F82HiS8S+ސqU0q E4)\){D(Ỉ2JI.f{L~5c;}.~("ED@ SԠ, Ȃhi)w)陑T Ġfum0@Q3YZ7\sFOdg yS\x: @V˜' a|^L0 + 4QȠi~tƠ2H,; țzegfk`$Mb@$gi,%gi_ca#y%u}s1ѾߍuH_ly%S{K5 0}-RZy/ #gM;G3?;қͷ39G9 ݑt(k5GOM}? 8Oڱ[`D]0*>uqSpcOHs<5`n(vmYك M‡q$#^O77KID S8s x=:hD]@bڗtDQ[#|6FCMOk"nH:"FoHgbK5Cٝ(mFq/6GC{{YҭFxij~h%T^oxWރ`'OnxФEZ%%S5m7<|8B2ߋ #~)uЂqEԿwyeNN\"*^GM㡼 feN7a8EWi{y¦nWQs!)h^gL=xq=i7ƭ鷞hRuѹ`2dm}da_j0|'iRxJ7d5hj'wmAggStm%L\r`Pa?I1NL&p'R.hd.N B*!풨t-j)1uK ?yfnf7}{Fo\ׯ*{B(:spKK[aqͭ#F6Cpm:d8u046V; T Z|k~4SAEOv{LnpJ?ZRC߃NPei(9^x(=~:R)De&U4pa ]Anݼj~Uy7yI l]ǒڠ̯52\n ȅ?xM׊m~םbiTRJq(< ;{^/'J :ct֪+kαb8\oc튰F]?<_yrXvR%M\/b?uq^v2h:m$~"FA5!aneL3fSOD[n$u8!tA(P3בQOGقHPT|"VXL0{u83hL!.N= 偩LϨR h>JIT}C:gz6Oʤvd[[R&smzMv/Ux-uȴmHR F'yCd àyP74ѮDhXQZَ ?%scv$=~[ƍ0y/lK&H^&m_XEy'fCe nir(<*7ffV^$QC$ ;+0MjqJ4%֑njr5v!)@f*+z3|B1C 3ֽCGp1CW0̪ ɛ4C qpE:JW4«t˜M@h޺Za >ZUzU'\\D~BODWCuݾP52r)hyysxЊx]^@$Kʼ>E]]+[irx䎕7>Lʜͤ!7>i&tOZyrs0kgFL~>~6>!\GhzE[j:W3KYm[ϖz\$Qqҽ  =-gB@ѴfNSWMh֊#06Y &}|? / ]5FpW.?0(Њ<@'jv8:eR`0(Za`+ :7-ٞ)I ׉H 0Q/R/fhicj"be~" ÆP<" `3dlch $VNDBsjgeC>3ڛ=NtpA$&oz1T6ʜ锌ɔK55?,iz$Jh}GՏ\kʪj0El$)#N fVKh-! ](subр*D:)ɡJ{PURwv2&x Qrvx "4{THtňlghZ}"{ߡTGp/ O)m ,N>UG&[aثg'A RHHbWD`\6QtFR7U Tk[+6OA5loot=gy>`åcJj㺳/ȬT<YЫceM-o>V1LwWB lc`K (]:-9uD Mwi*dgHNqN#ڢJ̺*p# h&{dtad])q~i;,4)3P[)B9VF#A{ۃkeHƬfP8GA7+mœ4J$nmcF7f)헻2GyDv΀)ऺ+TWv9H28V|cI 'I5DXmwvۃ$ v9RV _,>tɻ SIHOQ!_]H/ђ;u"5Oc(6)#LSwI? 3Fk`ko 9e$=X4Ӡar,ź1ȹ(֔oH aD!u.ō=ET|>rh TO?'{ScC#'YYAe\P(t47o:|> (⽨ܛ'KJg/XSW_U_㏚NrM RS'@/P4kҙYdF&ؖ肨z/GByO:ꊲ S A޺Ɵ.ױq Э1ZkXeΞYXR=ǠddNJiRf4r [D>Z<$b\IU/2bil,mABغ<Zs=am?n.sT`zx#_`K̚49qݳIsP9OG hj 8^gt%\щL\4VMm92ux].Jǖ1b8ʭ+az n98mX|AgG.SzE4 YB-%cRFO{H~Q3 irWA۠G~y38SZu1Fbs)dC 'iEj6BWֺ0P.d ${H44 vEWՇ  P#%#=d^jEpPb'Vw֠Aknօ`ckA b zy ntm\!7 v"cĝIE_Mj U.o#P7k/'>(\Ԝ5T9TlLyʹ{MxvP`˯z9֮*-;m S}cK6ChXr:Ҧg:Dyi[=q ڿڃ1JX0(=}=WT Y{n!uycz};Uz:i'{jzFT&[/~d峼2xGDT|)@, {OCvE1ݻdyjj0*G=L* @Zij'|۪byOhx``3֭69sv)%~.@swr0?UfoQvRzX+p'/?hkqL}Yf#9?s}UU Kg P(HQ?,y( $|‡뵝hM_={)[LD`ҙ;99}=3yq- 7liG:ёJ-2/^*ˠ*{j|?oFo$kkxBG؀5P3&Iw^Yc gՎ\"K9ήi!OSU'Bm!ͣ_Tw2ۥ$Ów1}/C HŶ." ob^[3ZIӾDa!|yAY@ѠK|%`AE&qedn/3Xo^OD퍔(d XO: =Nps3/r,%t4;_*uxEVGۢ1z?v-fb<JyNyY!Q0NHgr%rId-$ߡ0 N`]Hctgd̐e}ğW1CrwWwX<d+ѳ鑶zNiEd®Qd*b%~vb:8Qۨ+w#к~f: tIO&?";NړZi,$ *b ̟!#9X D\^CdMC硓?Bml#:"oaqnk_d3%=w2E4'cbU &LP#AnuX.ZEk\st?<V  |Mؿ?Id5Q%#ϳi-כE (V ZfCiTU S5'`@cu' ~<(9EW\ c~{]mB #fW0bYPPCg65p-h/#%SgW*h=KND \AODB^hԭ\R/lچF$HguWZTdgD΄Ga1DVPJE^J\[o%}Yv/rSq< sfx1jHBhT y Um=qvgJBd΁*ìl0dfpt-R+\Ϫ {Ewicz|`ױ`1 fy)x?ox0QpLVR@.G)Bu߁]!ϰƵ FUd'x# pO:k;CQs?Ɠ$!g?g#52:;@ECF&T958CDOrэ3)vRLff 2?^0esRGmwu~HGÀLgiϙw{k0MEļɒ䵸61pf$ypaOkqӃHB4j{ IinY28US˞oX"nTu?:ZZkeIS2ξ:In*( ¦@z*S$TŒV*\濬T^.Uk*DU|3Ý\UxrCq2\UXZ7P$jt2ȸW&t/j u=QĎrv6QgqdC3SKaZTE+ xS%~Yh~ z"l-˭ϷSm6da%3EVp[-:vEՠ߯\H[haqNr-w%-8ʇ.!X`-1\Bۉ΃6goy6KX{V19P LwIi.Q44n6rTQ7{-%&k(Y˱ b%q M'T ePoZt5 C*%)'am!C*FGK0sLo nsJLͦBb72^`:#0 WX\!#Nz S K:"6cxtFC~lY|=\S7`~GD JWß; j˹fpJݳp\+)Ojh5&UdH&͛BcVgRl3t%$uKOdǯb1|8]4y$u[DFiN!!.(.?]D |h $@=%qM!eaD1ZՇx K8"a_N,w8j|-\MF7pE(.-|C?xyݿyE +kԦ_]6XպWD* 0TX ΁kYPB`.Y( YS4Ql5@ǛفXti t'#D]rltKE#Qz=E 5H+cDSFЕi|DThRvi&SG _\?c3Ae>rZ!]f"x 6I}zG4szC> z߳}C}F9Ds|!LK6OZf=M]fg5g]ᓟk_NkU;w]%KGv(QXMΦ@$a-‰k5zCL__i~W$6aGff"̫JB'YۺX*v IKq:_:|dAv,6ԫTPalѓPuoa45m.hjJH5I"M9ZwWYT5Q5e͉P+IX!̖}qwp8yGIҜ?DaD}pFI攴]6<t=kShgk!7?D2LNo!f-pp6djjH1 -]k,Ao$о9N/A}|菕މ_ƅ=!Y{'CÇ! F,T#S;IAgS)>=Xe0jt%z?_EH~œFyEHl/xo> Ǒ97XJbJ Is*uaOS7ra_1^°b2qנFaw%[ ҧ,ʖg`Xw8+we&Q/R`\kiyzj*6ËҔmf:lM Q&1V-Pڱ~/B 1"bRtiKȋ-3&Is'z؁!dDkh = ntGp}cZ%-knmr\ɩdaJF3ס^jQXlsx̔E:u^IBb#+hlw 5KdkCTa,kHe H0;O%gHѺ[Dצ]ZTRÒo~lȭ`oӅw nl_)%m’vq+zEckǠ9KAMuPC?(4wBAqS@x --9!D B3b:>t r>yv/Ģsʑ,~x" 1n\ʔ=9`iHY8MaSnH[_JjQE_]q Rc\oG'L/MH]KJ\!s,8jYG.t7D2cTF"jYJ_ uy".GG4ҙM|Vѹlki/[ZLx a;9 41Hryf0yp] qM^G1@BbǎPrk3? yo"Plۥ!*O?g"|h6x2}0 ?웢lۖ-3wڶӶm۶m۶m;wڶmۨsNW]iU?}9ΣB4T6z]^s(]ݔ|`dV W-ܽq `\?[-p)Y;j:YZ H8ӶzkI=5l (0-7^L 7).0-O>ϚIUݯ.@>.p#L(f0sЬqS:dc.]7Npg@({m W6HV3W'*Ium( ze*6ͰfWPٝ 4܂_!hڨ!W Rz]\*\Kd ;HOGUZ2ڵ#X !X/Q!?]lιP--0 0y*)[`^ X;׏8-p~b|"n}I1^p`OD.paG@  $6O01pJς5?MXj'^r-P |PD΋;47(o¶sV.-A5:P:xa3n v,L*\]성4HEu[FfV;VKprtvJVa+>E>܎v,c1[bvAyF7%sg2|M oC5K}Pt/>E>#iVLdwd:&{]:&Wh%mvپ*&/$6L>'0\/[3ٛſ;Ry,bvh!J`d&{οDnJ=qk[vߩ7bv]M+HTdhxUl:Vo|Z*Y>žWs|W> ˜ޜ m@ZR#iwȜs o뗍'Ro3>mEqNɀ8ޖ.èy@DWb˓XLzW7B6Nw>u~+IrΓN9Zyσ?ɟ)|%`<KqHG3vvC2#}@i4_nqδ|dLaF~mrFS EFFs۝kDB 8YјW.էR⾩&YL§1ZC3Wq//D<&T|҃wi" 3*Qv;)a̰gs ;۲u/O #HJ>>~vl~ t[vjfַB ,+3L(֗WK.ܗ5ڭ뒭e__GFsW^4 wRσ}zu2C)vmC5[kW{MDwDJ df~=[Eq{(3Aq >r[:Gxxh6 RwhĽb~Okh`,fl\Y<41܉>2Z=A;]dJsP n=8_}RՑۧZS^1*X6ؘ~yi\ty*4›BJ>&WR0 03R >ĨjYla芆^iRM(<)5zwAUm7sCN᨟I;Y 4,&"o/SXIŦf>7m/-E;JW~aN y4ɴqKZCػFA>o+UlJfCq>No^Z&Ij{ ji&n%^Hٟ\́E;'q[KNec b[*i}4]b"xc.[Jdq 3YwDli(][VVXCm0YE >1 Dg/2fh&v7sgd ԧU?쏼>ܳP@EAZ@3ne1?)ffE\JCe]h 7HF*薺x N/9')L3`| {oq;ԞvIO7v~:N}uq0"B`8?NjZ#2ڈ]za'T‡9}c/`L֖JbN4,s mZEdp*nQ#ۚktˈߘ'>=.C 0bs2 13$ NK)u;m<9f2v=QA7tOcq_izvᙂ+,q|}Wh=M\-l[إ5~cj~f6i`kb4w`B[3Nhả?[k4djrTRi2A1{ >ih"?8F~yϯg}*@)S[z' ?v8]s~&'u^rI4^Th]|GlE F) ĵs'DCuߚV߃! oS'  p`I'N#-@B)oAB\1_D 0uŞ`pjy(6v[}DE}HI(oY'bY>T<l 30_>Ɖ [E[)UɁNΫçϤo@r-_֯ 3LkjJdSAuYOCsTp=u/K|m n;x~ Џg"p1tڲ=BIo'ź= \<93ZyqX؉ܚ.cR* @.+ŵ%~ekqbGb5 u1}5"s(?N_ 9tq7 Z i5!Xt"+ti$blٚF%MKC4wה* þ_RiZjHC:U~M{?ٕ-Nɒy'8ezLDnhB |17&;'ۆ˻`>^Ev#d}GxϷ']}}GI1ML que2}I-a'8q粀_D,Ѥhd &ϛA|)EV]KWw3ǘ. [ hKLa>:#p!Q4;wHmQ{@7 z@ղ9RfB_梥3eT83+9kB -.Dkxt%VTL.Q5Gr lD~ ,} 5Jľ*KN 6]vb5r4'e""nHP >5) tg&dqwvhOaGX4dq#A]Ef2`"?[E|*"V!9}'l X'1F7$.x!@9J'1% )yQj= szyEŦC0_iKU ioPףocеm NJ5reDڕs\֮vGHuqp%6BL^w&˕!lUD٨hW)B&{'|Ct2YDǣB(!C~k̎AţRiӹL21;v8Nd NX #*~:_#^n{Xp9W]C*Dp5ylШRlqSC1q=rGP^7zR׉kRߤnS|aDF)G冱74)}hGo 4Wb%sC&[ޢDmi+Ogd2ϜUĈ6U6sr~J}2{h.B=a:˓*UYyd,@l6~ HѳƔMZϺQ1w>zqר(Iڜ҇/O] '~u~jW;cQꗪ|jK 4HG=lZcV'2M־˕b+&v wWt9U;I:Quhr?7@=_A FqUknbK ߁вFK񛃏1$V=)x^V#,=>фZp5܍QDHQsRytɞXv^hd$J.]N. @uhw OD`ȥMxHE{IlγW^PoMd1J ^Vd xF8oS[@kpZ" 꽎e]ræopBgo&m{VRGStpHSٱ,dH,t,U :W@J oy`CTݘ'~I4&7fPqL0#GL} ꞃ1v;ax*}w9pUlw,%_wDD'XS@,~d:dhSbm_ -S٣S/Lx%l1x^\M(ow" Z̓5i|Wͫ 4" 㐒Eaf\ӳ%x,!ܹ0PƆ0e)'*8 *CRz2"H$My UCYmI)@03W]Uc7C+g#c#;[?3;a項]zSSp^)kAv^>JĒ1I$LbӾ lzYOBH N-tU"g暑E?I["Gpm.i-;BB&cM*Ʈ;k0F H 50;Azuw-nv`{鵃wG?F?ΈH 4}]Sp>?u$\ ~':nqJU>^tDdicٽBtxөfp]Q~|b*^p7ҫ睢X9~a7eR?@&})fjΚ__u;Ȥ5UTb‰ RY+X[VR`GBޱޠN,v{U[]j|ޥ2""'4?/eN|5hV4i\.;tx#U\7AfKtWS*7w ''~yi}.xǠM*Mo"En'}tn*RS)L1Q>kB_aŤ  hѨCVÌk3F^M51R|\=?KTy o`çV|Wv=e8gWki~%%ђgar5q7PՄyiiO|q^Z!X (4r.F 4wݘ[|g7Phju[a#K?o#Oi& RmE_15x(#|^)PtiTش4D jǥiz lxJ l^}|?ys Rjq77`>f:3J?Y^x9#2:>ˋٿh w ?yqiQ }j@c#ݝ4yܾYy2O#pxx8n0y^+Q >-4Γ11izK╴)#URYiד:KNr]_5g4 6KWgL6mݒKCs-0Dr{'?Oy{Gy# 4yv=T -&~eqȾ]pavֆ"rAkPSBG`8=<e/ k蓡/uND#]7l*nt[' Yɬ}hRZjHnX`?(շܹ[L7iWɖJ'-&(Kd]X9%&d 9`[Kp%HjL)pz }}76ByUi7eN1yf$dlVCԅ5h+ϼ( I5̡UO"p&/G'f%TLBOA\T552>C1h ?/,a&{PN/͍)Yjm&׳ߥc| !L#C;/"W/R42OGܨĐ8(.WxS. GPSTb@Ĉt |  v?pFni{M[+dT\]'Vz9j18s_))̍ ,Jxc`W$x2 ZG1 ;N !CiJ(P|ݟ,fYja.Tnq.B1. ۮiY@΄- }4M"_GO.֛P=T{R1I?_M9V`Ys"!P~QB B xZkyi;t(neė"`ջw19RHgP*𫍥o (ap9|@8֡j4]i`E_#(UVoV=^Gk}+WdCx)M@CЅzv;=|gtx?~Ѳ с;Y8n#VױO`m9Aܜ̳P簚,*`:y ,i1.b.+IUDNF2ߋ fv)4om]e8!R^@Հj6&쑨1L}v "!]4(rXĚ% Y{)u__6ڀe5y`L#"LUxY02eԔ]“z/#jHJ}#؆EmIJ7rZxk-?L?Y7Qy9dnZ{+>ɹ&$8$~m >01y prqmv^8F|bWmϫgmGs&;ɼ&v{e|U')F&?en%$9_8~ Yig+5(o)p$VnAK5De~n4;Q{Ucp-\Z!_ć]&*vNܦ'?PIW^qi] S=G4 1omeǝhjul#P f>j\ADK>1Oↀ4^7JcIl6r@QQGyaHQ喼̓kWxj[\Q6>[x5y@@;qY 1Oi *|\{C*l*pr~+[G89](e΂+A_APf⯁Jk9+o(Thۯ*tZE&CuZ"aj^V=me{ƍWْ| Iϧٷ9w6~ؓTaQu˱S',(ZѤK0vN%7009m7DD=kMеkrOj ZqrwcJfg]&2ft?6UԎŵ5 wio3Nvo+i6J2)ap'*Դх ,D[j\ʳP*vmIFrr&ʨ3ξS skQCd*=%BDMѽF,RIjivwɒ% ̘ aṴp7=2dgUJ v^uf^fέj"!oP!q2/2ytSG{wz  晹298lyء/!RԒ0Q=>lrԛsRTQ]Dژ2BO%c4yO hy(7"Tq fÉ"Y.ie2b hΧ(c WxI-E;A_2$bK9]gј? #6ώF5m@`ǚn܄amRNaDU5- xj>c.g̟Et\ٗ--8U;w8p>kdɥo(>9e z]fŁ-^Qen7O@ÐxT(f04iQ>XR?F\'5,.^ :1O.d#EpBН@F71euј3?@}~Thcs<Eq HRLOe(;X’_JSM]b#TRª† |bmv|:byӤ畝{߿xG bZ9Ϳ9s9̌k+jޱN@r D%>!NJ7xGwkeCkd._;$ kֱQBD-'fY~E`uj)@}WŵaG7du5+fYmwnpe0Ʋ܋%WKu7GG0ʀ}[rT2E]V{Hˊ҆]#S}dgB zbKqaV!ڹ[܍h2h:+8 Et+jf7 :egQKE뻑wr(fA9QgA)^gѣDsQNRLBB4qldWj>}g nM( l߾:w{+_7Exz}mI൚q2nkt=YaEf9 O?6 j uyDr|eFHo"F~ )f19%7|;ӌXRkh,Oz?k0?ɣ Q4 x##̿@~6- }ofb"ɥ>2z KOfu{/m,Kꋂ惚UVf 5N<}Mz*-l=4B8:FI&=TLit8̙a#]TE. y71ǢP т˝7fZ ;qdA2eugp['al'dԲc EM;bv:%>ΐ9zفʡz_ƶgtiO}1#՜ F]ȶ'Tegt#Կi'f=8iTaShsP^@u4!]MCf\3B|뻭եwe$zjmё{Q9jcj>p}ItnOR [-_Iѧv-,E =sB7;+;;,ʎߡJ,(DAO8\з;I~ =spvhIJ'DOY;3360t0i~w(#4`4UOtD /q _K3&9PZǀ6w E#^Bn o 9N8`9<*w1,W.2*Sў[*905j|?1YT?LĿLҦjmWVϐݛĄ,uoBJUB&XRi5kMZFϳъdcT]{=g,ۧNϒsn.X&GV ˦cTO>S]eɓ"c2P=O|=I_ވ!@JW]) 7 ^RLn,91k i}ݩDSM]F϶! |ʹ#.S>V]k24OpMpu.Oʊ r^:`&?8E0cwCN*+`'1.K5nɎZc +~jo`|}{ۏoZ0%t]g~VWgN tfECRelufTu|~p<w:T\9:OҞ0OsJU7{vQ-\$Վ`c/f5z)S{fUWЈ?*1 5 ;cWpJfefIS]yW`ƕAF/-eI gS[CSKbmhg%EGbDБZJKxd>h#`Ja͇|17 -aڮY,ʂP\TG>nO9) odGC ~=TdӅ3n;k1ó NxTp _/B3D7J IӺҸ_KdORf1-@"C"qm 7L^?}GBo=9gݻ 'c:甔IIJf4ߵ1 <)3Ȫ)NXf&Po%FϿfSwl ⶩ~Jyȟ y^BQCoX>>`t=^99;TCB`'͹S#XP̒Td_o=hAWIM-Zk OVb&&Au7 ڛ `LhQ*ʈ!_. Cno7B٣nP$<^L0ApB>PVnK{'n0 &*Ғ|މLճKj]*tTsp)mm°VHh!p?]h&=my~oH%t' *iB&*\"N2.~4 ~Br0i@7⺩H0HfQe<!x4g\.\\樟r5ӯi;2B/=?5jxCyh W<\? ݑL'*|,;tJ} YR)xzr]q`rz ^_\mPVə1 Vyк49@c~Q43 Ƕ\d\V/#_lu-+ $S\Zc[ f댊D{aw)>?OY~:IHGsb\UC]! 'cIi6PVXEpmɃ$qծ\jLJ$2ְ+{s>["lRپ,5OyijfHTeehee]eDr$F \BZ^fbN JH!!1?2q顎ntKl>F~2ͫEU4Ӻ9MĹ cRƩ:ı>o0o yFUK/S:ͨV WzLlңcNG_b0ۨU ;W=œu2Ȃ߫N%k`s_{>eS&W G,tTL^-zď5_0$ A YyήY&'o5#cC@,U:m,lgHyvK@ ,206s9}BH`Na'F\F{&ٍ*KaCQp[&C3 etR\F@|LHڗ_nnNL/5ÎU0ъ;jIޥS|N`)^(ƯXrpj㔫X\VA r JxSLx4cr'˩Dw6'Lӆb,Raz@2.lH[o[>Id07qlfQ.)f2B[TSUf,sjC D][,CE9t+m٩XAYSʋE' uʂ vƅB .P=D/.AqBTr_tcaب/B_8} "F,}LqϦe἟ Ψ0Azڏ+8>S~nDyxZml9yŲgфۤVf0bM + -˧o_Z k#E`+LуSJ8poSI̦-Kp>m‚F\rGe8R?#wPglhؖ )v!7Օ efvEMO( ? Kw27\a.C~OXYPίIϔ<ДP AuAh7]K+\".7x=mX<v^BZۆdwLTJ=k@틊 +b2])"Zo\$0ı>'{ }n ґPܜ2O +}`/?n7坊ky(=H$DXPUm?zcsV*" c-rQvwR<]~̸w;d77YFXMq nV=h^Bo\1|ԓ\qlY#z\KR-ꭁ6,,&O }^:~^*oO}Ox烼Oh[!z VOQk֑ 6lx& x#NjSVT/vnNQWDZΚ\GTcbuAُKLIVkChUAɘ!1Ew.[5Ϭ跀p@|8Zʽ8>Đ@CF3ʰSo>C:8Y9?0"v' 혪c *$m 횯MYUQˆ 뇤~tXm?'Rcvtǚ@R54'm))ce 2p.NIQbXm41L;5jA4h sa%Ē -R8YZD1g V%}R4FTxT0e-%Cs6?1ĺ-Xb ;4~1 $Hm"S;%3,Ɔɂ2?NђS;b[8y.[|eYszF] S_x&6/3KV`fԩvy쩙j0FFohf3iA֎YiS=aw!v3wr(Q9 BsS^a[F]li>mAP*'kej cZtV:ՅoPq: 0R #4KO<$m|tD'|$H &H a\QU |g<353P~XWWEfhChAW(EWMnb]R~YԮ(P(ԸBCwUMS^l_|dF!Ą:JCI }Ƨ2$oјg2ΟZr,u-4D^]j-mA1~"Z&BNۤ]-fR9e{)R7xړ sߜD3# 3y?^+oF^x#ݼ-@j> >p +% q%aIYuSI'LY%xaySN}4cݱ*ZO\1y3>"AwVYƾG+̓KqHU^z%QG:)Y[tUrt^9*jQ,Fel\?30.y'; Bi@V*JZH㠁3yhf8=qYŀ\a'kq3C<U\[:uVuSMgT6Vu,K..Ii}dK`S0S֜[\N@r9aI\2"ĤMs !eY W-F?B81I8lٝ;)~6Lo%7?3D"WjrU! \hLj٥/3ܿCթ(6W 6f':9FKHT864INe~Đc|x̀UY50 ΐ D%q$jO9Ab eS>M WEgFסGYKv/{;LZqoŦ.UyL4u@iuz;z8f>P F)a>Ԡ_.zHI*5\n z3lLHleqz1YXKMw3=5 5A6}/J߹Mp9HDlP_@Iتo1m[&r_<V30:0P~"IW=4 (|G-c>ŕjj'i1 5`Ok;퍯P[ԠIxmXhBk@qĪ2+:if .r#^lE. 3,Po,ag:m[H ȓ9WcV'׊:O9?R(= hr>+6QÄWPS;p3@~{"0)p0K.eF+_3n;&++e2(jc |͢nR Y(0\gIf K BhЗWIVI?;(͒6`OGNWK@ߦ Oq#J`^e_"`OD>{ULJ=ۖדQ+g™FU{^K1y%X^'Z2^vZJbF`AX:E 1ECcN3()a\х5Y1f!6=dC RwWq#Lփy=1ӖAr9i3k ";T$# UoÛƹ5%F~C*H}>uݘQuZpmٝ6~WCzhZYoĜxwvа}vыA29G#̀Ib%e2/_94^Y" \'?(aSOqj *ۢ.J@WH i>601psjuE1rrY pa8yA?y{e3nr;[py;Wuzr-z%Pk. yʸrúT h$`Ѽs=7k@@0iJXE[؎OT:Hh@.4V8am ~LPOoHj|d;X*U2U& 7\1:[-һxlƼ~l\.rt/RB/ktPnqK hmZ|<CR_]Cv/-sb9E4FlwXvhE}8I``@nJ۲_.edݽB%H"*t=֊73z IJ-2)8LUn:m"NYY+m*%]9iW܈8CU&PM㪩_nfG>8eN[. +)zrڠٮ4Bl1$pP w6 h`bpA5(MT ,H4ڂŦk7UĹyW!z>}AWQn454[yU ?ZӦf2tG;='P>j]rF:U5x6}bPb]-65uS㬺H*_.{ `ڙ5^v, h"S\!oPfl"R PQeƋ1{2d/ĕC4fgObܓ^r op@988;lWcf&͍~qluaO.M;Erwv'u :.apTXhVMH{!!?M>4VбޕC~0f>?8;v?V0ҙ>otB",AvR0 Gjy e`>1.b66Ry[.\ #~Vļe?SK<u5eO/'JH %V|l N7۹4;Dyl%?0'*l?5/ ::F= a0 ʬ,`z1 U< P@tI_wydSkwZzoy|Ku3\=ƫjLeY Mq@Q8v^IrUMoy J8Rf XbPswP+eU0ۧ䐇gK=^R]eaypYrQ]@t?`I=Q$ K+ɮRbm  ]#H4l3p7?Oe 0&# 7͌qLn!YRķJ1Z f0=\3e^<8'EgwUO3nUru.ѹwdy"rN_8Gr9&c؀dM.\a &0/'%K}(m3 3{*{guM7JPf$rbٜ[Q)̺TاL=Nֺ=ĔQCLj8ϙTNxQr ؕHX$\TTsD,Ü~L9 blp(-$C mGm`Qѡ?-yL=EwҊZt {^,13ZMyiYHW Wj"N";|pXЛ-9.\LI.Y{+ڐၥ*EOYԖqY\VMˮi*A${.D>ےb  D IsX C?ʄᗁƤhXa6))`P^Ņ#Sꞌɝ'F,۲˛,]Όz!a Kb4UCC[L;kZ R!;mŞ} b&[uҔ 2斩V~%S^3ωY5%tϺuMܭsCe\@w)t{!Uv@)@?RvGvGppםسĮ( S`TD[TY4*GC[ 9V8*ޤY^NSS{ΐ-N@9#(FuN^^ 8g|e]~LwiQ\' l q}֮rq3 {8uf%Y ol,Πg -`̂3[\q>?)ɂirgDv' }* :dg>x(h^ZzsxF" ~ǫ}]spUѶ`c zrROlntL7{>#mG :1Jɿ\<*: h(0DfM/Q h%[@yWc@}TGWGA?X lӖMkw?+H@^*q?p/7ΉI@BT-Cct\(p*еxDftXtB{@{({q[]>E [ZEU-;?yCl^Wy4w677ϟ;:: YbFlfbcS'UTTtHUDe ] Ӝ-C%M‹ DiHE(Cei q 4KRB(u#UU&wC; ܂q@ 0i,d5F()+ANZw.)˒ɸLchI5V )lfy[d@yEBg2*J.Y )m"qtS *=3)!a fT4?!&̘M,UlʌuYpŒL?IiAAi .u,t^R ,(cU)>A;WlaG:eoC#RUܮ{}ggǏowavᔋv-(yy 4{~0{7K? ֯wz>)R&l't*ހTX?թ!%%h!($/Q?>uHW }@s޵ۼL\vb/tf}`>oVRRRo\]]ܞL2lѠ#+ڤʋ#{Ed'eIdA΍讑Έ!!$#K5"DJA`4EB8KۈP*X` %ܛ+p!ĹH$n@4g3%@"dl_kIcWd2Վ&g[!'H7l4Ia4*%a,)f=PPS𘖖'<'"Q|_K`8ΠR?OMtd:ŇSf$1asβ*aD[,<Ǥ:Ea+NB<"c/؂ RFw}ǏFqiidU$;hNB^ldeaᤎ˽_/ѯt}7c|o㱯#cxp'8EqE[`h U 8mP!0:/}CY\PGC1?{',@G_6 [jf$(D F˹|p؜ 5$t][stȈ*̙ EEiYпDبW;-C -1DݵcCCY.٘MT2,(BZ2>~ԙ ߁޾!4`5,SX陒jP,IMvjSL+?S#̢JGA>Y39Do$*Ŷ%sv Wψyb3^GAl*ftd>ZTht *j)2ʵ D[ \<:T=ss-ՊPUv6tvq3ۂBv.NvyqǁELht7w)? 9И,k sM{;GSsj#= o%([ ECq oWFY NA Tʧp5Hˀzٱ~:yp\?,|ʐ7ɯe6yy"gGZeLZf6xs֊LRʖƑ0l'NT`,O.,OjE" )s DW.*ef%`n*>\?Q+8/w{gOirʟ(Gb*B)PO}LR ()O"jPmrh:͍A2d! M{e0$oS !ut9 AM$Dx00,(WaډV:ʳ9OR@Ysr' ƗJ@c%R!EO}ĤltH3̲r&2lTdu9y7B2ΰw & ٔeD餁J)ag F#AvpaB^CȣJrAHO] %ۆ!OG7VDh4Gt@ fͧ׽8#v8jk.NВС[#e~C#Չb$3.3[g& ||JĦqVo<09NВ3Hzl8`ZU9Q쁒&1`j+wYZu*׸採V1SPE<lrr+γbZOҢsC6凶j&%Y|;&eq4¨ZKj`DPAIL~gpQ;W&V"F,6VÃU^,!Zp\SVN-$${b ]Ϫ,&W8m1f b KEzԤp/yzR(mIcBlk {# VhtǣKΰgawt|:hiY ˮ<}05%ӄԬj:InZ,MKz?ї{rT޾Jb&{`ٺ_wY?tQB9TA}co5_7G٣\KKo+m!Ym{ImpO\:J-^643G!t&qg,¶>[CĨqf5!rrfgS+}z*u]X&bu3 -g1f#p OO$%'6JA } ѹ/:p&ZJqH<xwjIQ80Ilon*4+zfpDxuob~ ;3ev]LJx@J؇qmN ĈC YRG3r}G%75 7ٚh{`G^U)0E ?`ЏC4e޷%Ѓ4#%U1OπrB)MQ~z?pqI.6g-c]G'mЦٽSo-OG|uJ .Ro*!QBvgSo <A7).1.Qέ-ܻ\ש˴o>6hX_-[\4 9/ia{;gSw.8@A/V!ҹS>B7:VIfw[q[͛ܕ;H`6$fߓ`ᳲGPDj]I,fy;?(G8buNl"rAn鼘`x|>kT1%nbϘTȄSS/P :m<{sGY-!'m㿳QUF%/B P)b(hi[&~ dhlɱV*5;v|)8?Ђ5:ƍi x%ŗޟ&J8)#˫ Ca(֙9=_? óm/j ܼbfp<sq ّNh#S .%JOBiRS mF 6„ 5'+r\!082*IrDzw,kqORiUv;A$I,o4b؀ r5|H6 M7Xt-eYL9dž*]gG9iM$>;Yq<#8GI7\g@to#Pj2lFydg~:| ƒWZ[`J&B Ş*[W5XPh1Wj*! O&/wœ_(\:$['ɚf9 Q-Z=X茍"*F!Zwf?3i 0[P/2bhA*Y*Xd9f<:h"lި[IV#0!Ajy00-})}YdKTJ=7{pv`iUWh3[DNRVֱ}8 KM~2eP"9IOn[sH}H\ =#'Ƶ^5Ŋ&f(L(t&& ȃ;XL XbtS}L-MA⁾3M,CE9f()>;Rp =g6 T#AN /|.ؚ% <%d,7arX|SYyL'<Vʇq^8Eoh&͋Qckrk_Rg~VѳF.KO [ՋO A?P9\5rpqSvdEUpH|Z[n ʾϨ)9^)c/[Sa7ר:fXQIW ?"c0x*B;e H{Lm+N*m6+m۶m۶m'Ol[Z~{txq^:=ٵKT[ Ψ|~Hqw=ƝkOF(D2j{q׋}լ:x\ 5[3^9{vGi g(²Գ߽z:al)A{?_# ÁOLɜn_tP Mq+q,YLj0 HJPX1r'\#5*մ~Bag7",Y+:+06V54D&q!력XϋǬA/ǒm˭|TJp¤Q~gKÑVDp3X %=zɸՙ= NT Tk05/yϊ䬖LJe>яiίb_0eWTtq9'ɘ+4kRZgKꏧt)DrU;8DX+o#0b8c:{`2^NK4@]+pLd'!{7YnR"Hʧ\+?nQPֲЩ\U`bF`fctߎ{ϒwn# 5$D"7[)+^nnJ&w8@vd.,6aFi H%[y OtP0_8͵7 TVI(!ø(DT[@l4 /Վ< 'r\^\#T4*zue>IhAF8knLD9R'`*zj3GDoBq;^`9;mZ]X 暗OGnϋ r*9z-x+fuopwc9'ێkywi!XtO4ebtj GزKWn &UN1(јrYak i,iN e' m_:\M]/U<N>| (A4BgNu)8]3?̨&'CIj۔ gճ9&!QGSzIYn"2+-V*J 2Hf ' ӑv(W1> 1>~ǔX]]s!]*6PڂKPgMXX\{Y:;J5hWBs=\NI=#[2~E$=cDަpY5P*[b*{_Z P }@1\('ʯ t>ZXu.6="ITc)e'H`r0;֙;C#qstZT>+BFw[nM+L}+ÔHlHFwa@8w/i9cpݰX> >Xʿ8Z.МdĄ颬ZkØ~@&b+"m 6C?hH^銇 ^b$(kKj&r/6:Bښw¯MHL郭H!cΟ|6e-L{%* vD1Qhhh,F >ٵoؚ`,11ε`*\W%&w=#,^TTg%v<`AEgшOE6H<&H&yNlL%q…C! > KchZV5>HgMl_s%KiG#:g4ѣ mR2E_![Gt &3SD3ʯ*G{#hY)lk`^@i9$->e\FjE7HA&8W2r P˟Q\\{܅ZU  Lb*_秘5e<3$^%9^nY1/O-#%Z)s!]33"whG*6jiO-}-Z$txT]f)Rr\>ĺ0(,a\Շ63\X8uNܐr6]MX"Mv^l~qDΰn"mr)cDc\ *J^bd:3D;Lt<= xB_#2p)c߫lRA䣜yT4XI} W= &ǝH[}Jt7đ uEe`WePEnR RU޸#SK8OOe2K[n9orNI{yۅJ^Cb]Jk3d4:_Gi||8sGV* $+u^~*hWI !P k YIb'sOuH;')dBn܋JF<;Pntdt%,/Yh`23Ll>\k>8-Fif?:4J]4X}Vs"# D' F[ <_h Qi]3DK> a*[z  \&f˨eC5Dڊ'FQհvYEwʽ$c* Ko)"GVyD\Nv1QE5pJɥh"˓"UK&nmfYYQܙݕa'U~3QlvPݚ"Ȇ7x Tw9cOt 5J;ZG<{2 G$p"AorcO:CBV0įdǬK%R/Aǿl&$+e1LH^ȴȎkDl~D;7/op [KKZ+瘚XhUn J qɏOsapyنJ7[H&Ǹ_:.Eݫ |O*x|%37#uP"eҤڤĔE$ŶN9L8x?t4 `lQ} GM\}0TS'B*vGt=\cb-"붩cy ?!ˀIRԲCl'r)='"!AuN\ujFE$RyMJ#}}|9R# gn޸mTM b{yaۢ㽎 A9k8:4=K7`KVo-P{ix\N-EKSV,AG-<1K!||Ng'._f"u1ͦ(A00DD9k\8@Boz0734{ ,#ZhъZ4 *F:S2ǕY猞"|ׁN1)(xAEQډ\8>Ec[cD 0XӹΑI Di Ede,uN)i{qsk?gÜVy FD]:DɈ|w~#i*FbŨ['!({$1Vz3-Bdx␳$n :N-7VH+sV|i!Wd$io5߿:u]cE4˿'-G|1x%BC_Rᅖ*YAP ަ6*TlFz Ec"o^>/w19ʼt3|  Pމמ]ul@R.>Xި /B3.4XAn2l ̾\IVEȦBr?NakbZɍ kMįBz8p%%8 dCpuDA1e?׫m5'ʎH#YÀm8^PZiW'J(>sIx"57C.-dp^ZGfs\;po?\ 4poFs 'k5 6XD|s 4%)&y(+$ ^+>Pni]{+6O>5Ku ᯭCKdJ!?dj%Zqݡ|E7$4ehڗ`:q(X9%>W>yVk`&HP,ecen^˽D$.5~zFL/p>>drWryu[Ɛl$A :, H+poQR^8hN,}X\e_duFUE@٢.Qζ: RwLXLpυJyIlC#ll YWHD[D~!#9 -DzҟWV@Gv >n3x'wT3գ,dQF]jZHH]vfu4lu7]&aOа&> dbQ˸W:,u"k=yU& L[Ԕ^PDt Aq-fC-nVGUfM$Tv-pq sF=OǶY%tR۝Rx}7HaR1˰W>aվt㰸أT7)՜.+}ǡF[2iYGok*MW dx(^9uY2xidɻi t’E?O%&EYvF!l5wzl7d,8f(S~dz]X`e386 >UdFlROJO|@c4i⋨M)T %PGb"[w b}^HwgqM׍><{#L\_r'Nb[-qI5YEX$ʽz'KW݅a$5{M- $+f P||uZJ"?db7ޚ%ƃW9(xBdWzۋC-@@Sɺ=l'1M cy~zfR`GXNmԄu$4fdJ$R'؉m}a_ˁlV JPPuςr);* ~~EO":ԍD$8YቃCSi]n#jQo]Ā0r]DI˶B(iy+5;0 eG,P}LAU &ӌi&/ Z/U%\⌛֟@0o.].aJ%BwI*}']NYͪ*ሌ=؝Cb ͒S?w$BwRa5!TY::N>Z=`ܡ $dՎ@)!'=m IGVT-^!| / OCicnD^-)VRG?ꥮfTPrzIi`pI8UWu#4eD!)\o)ɴy>ǛZxQ$zǃ#/=#l&tG<{#6OHL)FAZR5݇666xet̕ a툜le+;(ؠB?r9;c}~'Wȭ{!,pHi]:4kv|x ἶk $Li?ӲֻiIܖV4⸮Ț[[' "u.;vlЍq>hGX}"7Y^[`B)0g"a{džÊ寯U`ONIO槙:lkY oOHMB9criDr"|WSDgtPf5~? V,:dX$ĹN.,dNY[2,#O7z̀&/GR!Xa Q^bæS FuLvPM֊."cm}(Sz~;]s*^O;R?X?}*S(ܸ!"pO/Ւ10 UpԵ;}!rov+VpX{ >y7H)2~姰*dqD\[#@Vjv הqO|ahWsxƲB஝YV1/2{ηP X!%3\9LC*k5CЦXI@5뢭uI9?gBVMgy3̻ŵaKNqPHv1|C1XFaGaFŭ#(7SWQg]D@7#?jwxQUkӵ=b^4& XK[h4QV4qb A=Dbi:TVx.18F'Y r sOq&3$>4vycqzq3,*פJ4;G țf{W*UU{ɑ0͠n#HP^u2xE$s3=)WGЬGh"BŃ0[\˚J m)_#ӫUg]7-ꓰIݴo8ErIwp* +X?Z,; xHF@LeF?i i3!iCʛ Ɩb娑}J4_qmR Cd'`8膼S}' h">BP+vNݷzV)d%_Vy[ |?{Hed}GUf@[p!!?)yU_Hb&ߚN/A$=ea5Ī'n\ biqUD78:B z*h8=NV$QB0n >b+?9,i_!$?%в5zXN; 3̢q"g6{UB$#7"i_cPl8YcVoVaG T 4DIQ[LHmQB d筤ZJiRjR<ﲜ'X* Mc,`٭ojpB-V]ԮH[ogLh8_nn!zc>]ouԷ5aׯ$g`T^l2fmĬQ&ƛR*9Jia/t\&8VSwh4ۺ ~{ J0jQ0SPL9^M1D@D*zy)@K)Ք#UjԞsyê=)Wsi,iǩ9[8˨"mkmrt`SHSwAu 5E6tFtLXQ{ȏ!IM'<,5$㟖 )6SZ\cS([rNyDъI7ۑ@jt'+?wͲ)+5XTn)ҙUUfSR@.YL0>#WInT^l-l+S^G1.g U/!?dRW <.J/纰LZ<.LǜRz+z<}Gp*i$_j9pH,i̾\Yx^Ȏ2jrLQ|g+[m="eO;l>:?H UCn6h=xKq`^]:xUnJ)b0zĿV#`=W$ ;`峿3l;u3$E|+#ZI>:Ki'X~#I kQ[׽0a Y-Df\!p7raOua=n\z-5Mc.t #<_ޱNT嬳HȻR=}, 461ssjj5XA”E|`LSFi5>,DlPi^(`UZr:2WoG5e#^^EkU X  Rf%Zȕ8:) DcmײWͧ)?O#1~>sSjAi_tѾ<3ż]t@24sBcU*[Dx-2aC4tʖ+ AXľ"I%K¥+_UXcDEϋE5%hx5$?^?ULU3VHLGD&p鎆 %F6`x_E 2#̛ʖoяߖʭZN2 B* _2rSk k  5޸"DH:Jr3.7–iSeN I6g UT46YbRmvE-tu]J(r9iȣ d3柂6=Z2xR߁.S[D7U{e`TW2DVmd%: d*\/a)t?խ@ч)9hB̒-XRP ]\kypZ} WR8!=l-vrY74HnUL]"\Z)'Z.)5"hdIߕ7՝Rr&M#\*!\J9-„zUnCGЁiQfG䌻ئ`^Ji\1W_Vڂ4f'u6_:%sRS6u9ɳW -$3`z w _srao[h-cRT~mW'5jˢF`Y٧!u㫨 GN>u,بe%pq r9H vx {h=J}mB Z5KCl#ۦ".WrQY%BUiRY4ܶ.j6%-3|1#+ɳV׀M |="ǩ&H{ oAǓHxJ'M1O3t)Gp*rbxRNX Fu֋ņv+jְӀc+Z*?%( \NJ#&7!s1ܺk֖Lb_K#q?*Bny9$dyй^;Ϣz~RyU没T ?c`uac%{6N:ꙫu,ٗK{ʅGw8!Lq@~e=dAK%V{N[ALS\m-KK?Gϵi2j:"aXM)H)`ADFJobzTс-jvF,;:M K@z~flzᘫdV3SdljqF]: xNI\{酛k#uY BΑ &DHRzXCilʁ=+@xXٛ!Dh?`V xjjkx`C=8"C@R 0e-@xr27QYnJb2Bj'az X-ya,6FW0DoI^nJbER:ȇhHi)N0C_c#d rd'9J'=#mΩQáݱMeps5n8OP?WHihNgU `g([CDP>)t,In R]#V儝M8Ra8kYGaiP:5_6+^!9\*Y lPճ3/2Q<\o-訝 L`wj|νhu gВh24yzM&GԊu1TmPTl_ŋ2* ҿ/k'L/l2kSB/g*m)LX0rrX>+*'a)+ 3tY2Tn!+,d7@!+$Rv% )Z}{kց'Wy&<7 7C rJ@J. uSw&T dn92&Q>Q.Ë]6(NVG y9O2N:[oryy)|}'A+v=m!qʃ;zkE#G8W`b"W$w36ݿ 7uUȱ# 'p9ANB<GM+7)T_]J)P[2s TzS&pqzz'HfSSSsFeN%!zBmڇ6EoV&%ZV?(-4WUݡ"a[T%1y9 PŖiZ?(b}t%؁=8kk.+:]&|Jů~stHw{"- ?iU˅]0_z* [fR T~)Z i,tzN^%SĉO9 s1̃~n*Q J|VVZ"KKXO3v V|8O)Ya|;P͞~w']WIt) ~UT "`D!@<@IJP%7;,K<>>dpp?8;ϨOލW`ƪ$&y,L0!:74)-|S6nDͰ\uGMᕴge+3wݰ]T"wCaB, `Kb [8a›}?E`e?ƣ)։&23t2*Q̋9D@TPf14p"sg#Dh4U;:6DLrjda}7)X[\ӶmZӶm^Ӷm۶m۶>q}zΪQ=FfvmoM[5`i/vmJh}@`:uj۔nkPc;q XW`W:0kF9ç1o7DZɺl7x1Q#ϋI넘4eaCK#[9g8aNnlҢraݭXXpjU2s9B3gB;!>&5w&-;{4=_oWo)rag]Ig ZP>tf!@!MޗЊ;k9܈Tr^g7F8R'kM$WL$'~)[% $F~Qo. N?ek}v`#(mٽQ0 Mwu0jp$>\m q1xoP!@SUZ X#酢N*/%nwmDSցE|7-D> Uae^ŶFc>7Y%|m Ŋ9C)YcqʥM_^9c 4~$>{SiDҚފYm1&x-i/,^abmFv7V$bl{(sINUtr]xC1{f2e,SS\iUݚBUT*1)e5_Z嬧 Ͻ8܅^f%Ù5 [0c)üKT>ܬ8F]Զ5TKJYFd=3_&PUadDHsFA^FlY&cjɊUqINq!q/|%TG@`Z:q^.tCK f1#:dr8ρYgy.]Kp ?@2 C%Iڴb/KpPmГ%QRTf?F̙IbKp8GRhKZ_mڒC"`H2{XK!%Q.sf3Kf@:֥Ta 41 b'/B{1ۭh.ǟj7c h9M^]-ےuuш^Mk d^o$ƙlT[5 bnZ?v\+v6SWSG:_k]WE6' &hɺF"y,CvX쨕㞫9㕍ҐM /2ʐ/3s'P;HuT 8Wh\,: 0F6{h*]۵ &-!ЉZWٙ_@>)$BFׂ)#qƬ[~$̌c6!iqdL6a%UD͘e=ٰ!Ε^8Goz<%c3˃ /*wӆqn !M|? t^Spϙ_#VFe,p9AA"꤀ fbG_x8) Q ʠz=G`a'NVLG_49 BWɨ06nQbPеR-K@zt0eg0D%aiZKSecƶ"0v觮eOLubiA"^ »Ka|o[N!/}<@@}k lӲ[lZś|X$pۯ2((s_uA2Ka#h'z%&Ib ll=s#> й2^*Mޞ>Y<1|krFqain_5SũF_ʛOLPC[|m yl iEjMᤲ|?PR0,e jS+ʥmT;dOPI'OIg:o]I* C6Ȳο{/ c|kK)(*a'Iy\ԟ|c6E@g?9ղQQY-1S9Ɲ*@brn =%ɕ4Ws<*Y(dDVzh4K  *׼6':8~CK܈z-} (rYBoVr{vĨJkE #ГD1. \SKTёNUb*QV&K{.35p 6j^O8)E11#AV0cmZŷWC=Nëkp (F9UC*^ÛQ;}x% s},l1#:N$\*p].p&ݰUbKOJNR(H2eB YSLҟe*FtN뀋!B,P-l*$/#Wk,c{ULvdCtR+ '!w~"^N㽦!ʏ+t+ \ߦV(m7zcduP獁N)TB ZC<F{;4G"aeİbTX(D{U.uNZqgm} wa"}W)+Aq6Kwz8벟eqso:c5kHh~~ cO\i`o]+|ګJTzjF2rU!Q3r!wo™ddVZC=:ᠦOy,uOfO?u  T O4x4m@g^o.c͒:C1,25£1) /H\5_!|a賘|>yaj4ӜL^Zv˥.# LG,K![g+cA+sC˿sP[aBfC'w$AV=|k2u)Z w.E٢0_.2 b6v]&iM!^ 8Xp~cNa7I(&>Ie~Q:4%/N[b=6k@}a}Sٟ`9-wpgY]X .k8"t=J tE[q{5sr*bfT׈8qvl0V JW ¶Qpjhzx9C8(5'~_?jseQepbe0r$=*P>JÑßN_dLCg.zRX~R cc::[_au[]x<0 3қ3RAúDCθ,b~Fh}Ynŋ}D`tw6'La !訫R\*=Sv_=זK܁5y),rˀmU +Y%* _l@^ե52rϲ StO&9\?;wȕcF(;)zlr=zf0W+) aZWS XObp8Ϊ'n@X/"\+X aQdq!q5dOcGƂg vsR|pwh5߫10nML?gB RܤK3+#Չ==ǂ RT7/Eu:Ş[yڬXKj;y=2[#= Lr&g+@-ث̀Wq@cJK&٫emkRۍ1E/`/lٙaZ*ie ugZ,.ؕg@֬SE ($s@O H&ÿE+,ؔ-&%[D YCQp# 2 8dx+[w 4xq&CWW[ҍT:';Ypc3G.% Իuz$Nk0%~ԩ x‰cRy|?a efC@hMCW!k>E' gBj6]{ 9PP:LF&PŰF&кOr(VQ0,2S$!K8z=g|k,ӔQFJvScK9EYxN/|1V eY8ƗBNh&%,hTI}T8P'_5K JsPD"?e>Eԃtt Ox#ݏɻt3x3ZCdB#LǾЛ3[A[S걡sycuދ`4f? B9Ȉu/\wĢKwmLf bR&ɨ-tP\X(j96s n swz{ˣΏO͌L~d6ʨS(¾NJF>R_Һeצhjbߩ yRI ?u#Dۻϟ>+-)z[92 %N)fqS8tzW"= UO^Xֺ!S5}ҼAc޿jPnK1I+9ժñz~}F4c"@vWхu*\וF~sޅ0E. UFcgL|LW%mL/93'>/T'fg\uU$ ['umw,2 Lj+Gӻ0VwB\ S$jɒ!&#*.V\<5\V0QnV.8,}G"x9ۭaL%LKBE Z`CUJD-I}C=d0Gngz . piׯJ ši6A-h[ԂObb?M5Q&MQz8%xliR>dvC4~TF[M&ݟ#P~9a'o+ R]07&Pk qC 2 T+b1R7QbdI\I*L'(˼.f214e-3mVb4 *aBkp " { Ъd&ŊG(,\ Gh\OXC)MZ){ _A XRt^uQʹ}T6\1Ε F}w'CFYtի?DD&7`ƺ"`UIj7JD+ f[E-A(9 G8~#PկX_W#Q!Hߎ%U֦\ έG]zc_^.ڣ}e Q\cgW}rz0*?}e|*4Cy(Xh ˼fwt_rUxJ8g=@ ـhSe9 a ADtC/pC6q!JjpdH4cz;:|tРg wkeZeUq[I[u/F3O()G7"yW}t ~e5T:W(yƽ(q(g:̞!kxyk!89yzPJbIb~ 6i ;0H~o>DZRDU1y?~.aGSEuU~ix>vFy:R|-{nx=U5K57a3C@Փ.Z]6{{u)4R+-vpg0EAxI &*b<8 3 "H2Bi.< mvwbz> >r+(ڌJ7,^މ+:)^떽SSXx vK/\~V!8(:_t̚1d^=} c^2V"t^(գ]ceU4^*"Gm*˷QԖaՉ pSk2Enǵ/3n+]7 elօZHOy-$%f*@58uO$ܤa p7B:5bq ۄnD'hitԐ]58Jٕ?@1-d'Ui5HƝ."F/t+)qm@վ9$'vzU>i<&Z ou &H8:rl)\A%c0Uǣ; $ƦXQ"yiO|=-|䙙^3|3;xf9Z^T1NUE^㧸*!LHԑJ!mgkz*I@3L=]>QOe1>N+޺j{a6s)$TE=]Q/>^Q J;J\}Ku,^{O܂ T@d؀x='6_l~kD O"_+:;[GEb-OD}u3'քœ]7]/;?d ~cO75,R>e۵E(3@!+Q4D^0]@s7IXA?φfWڭ?2Xi?s4`' dۺW hAixTL]U m |x9G=DjlQdXej)-˝70#iͻleOm5 ]`JOr+|!R)L)F@v`"?aXc> Bdz 򗐚Ww)r̵<Ѫڣܓ2Y\܅#>p,eNmn[a5P<&K]ٶ0V}GXg*[r:.['(,AFQJltV7s^ʈɐ1],AKuJR zN|bIb(Y JPK̽T$ @zrƯ6ZIzqCʢy:N}*{-_k}vL3P8wчvcăn6$jd4C, Y)q+v> ]$s,'lZ_w<*5'U(5 OmEgԖ}jympPw0Y 8Q ,U'suK1ӚpFt씴OqωZʍRs޻P@_xae=#E~4@W>b?w+F}Sõ.30gO+: oѷIٰۇ+=$H~0y5M|o˄ o>-ŠC44\:RMJ @QElTr06.5]e2X97!i  aЎ ,jP\~dKҁq!P#C%]$?r=ldPE~_WMr($WM?="-͡ܗdZT)hAäDz|: x1dma=ُ*D)qY?7]Lu3Qc)b鰛ДZVgEM1U0toIk7Xڍ~^:HVBTm()rE QZ} A)+GzE'"+w*PSjfZ "> : eYaEL>?zaA*)kJ}"GixC3c*#sG  ?3cGVpt{geQɒ2' yCrO/v5p2@S7y+?㇯Jo";Hc$iH h j~TnL'WPw=n3zCGP'k2LAdױc'I\ڹ[»0:hx"[f)*`78^bqyJA@*ߤD5'؆ D$3 t.}fyEINY蠱 &⸀4 ;?o+I c49Vuؿői|$Ԇ^dP%FC$괆M]Qnt n{jnG_XNZ2p]cpb sQbyFMe^_IԄ?聯-- -oQ2Z3o "V_cD շ3 &Ç}E"4eZcIhϻJ~%.Rx@X'^t>19ᶇXE^<8b] j Сٗ0 wh f2ꈆm,sG?DI؅>YqjB^`܂QKh!G>ɮzPqpUuN^GŸsPz ̳<#>nݛb;n0Uju+/z;8PT]baϯo -fVJ>O *v3O?xZJݬeTS˙FIWIu CQ{$s i՟!8c*ub%KMn x>U<uǺɺkVlԄks7 uCв,#H|rم{rHl|'%Jegp0m_ .jmS:=88i/9!4޺0?c<|Ad@zh2dA[<]Ry쬴C3F y%I$K׆13Vmf tܔfCx*H Gae8\)f:p2 Х4zr4UZKʟ?0q4 *&zN: p -< מr\G6Kcf$ެ=gH 0&0 <Ӌ[8Q~fTfJ*Nl(;o腵W=Zpvll) NGZW W.fM6)#\Nc*K *|^oA zE̢bS^T*O6ےf+tA A;1n!Lly^J-('B<'V [foa{-R_=6B2!Nlf2^}̹ f̈́vm<x6P! 11"+ _8. E..LpzS.Md(G5|}@ϓ񵕻Cx=b&>YKuldm#3Uf֕-$X>F-&yR+ TR6wP_ߛ>s 1Z*,t/ˉ3pjt0O|)9[zw|JזV=>} F{{(ɖD)^, %\8A>z{,aO;a?R\>Կ&x h#H@`9]wANCP:A&ǥ^.&5R+(sFO+Ɋ]uRWS)9Tѭ 3T8.e!s%R%a n][ѰX %zjcnmSro h}qߌ#ҟ qy|wqq_5(S!G Swe!mk;j JWsl?8bj~1AkVzwlw(O|*aA.gb'4˞uf.Y.77&G מr7s{; +љȶmòF# 181%/Ȥ/+ۀ&aɵLRk ,6&>ZyDHEL(DAYb+]afMZh!M<'Su@a{@*ak z(-rP"NΉHKY&F%fT%# QtA|q-nt}Ml@V`2/HYh (1]L5VTP+EMhb׃aRCWBypBu[9{MhmGG8ImǓ,|:h+V*ijU')959t]KlQC&S; anfJz*`g'uqnbZ-T,nF|K}Ki <됚l}?=<>?l|PZqUF#9&@j0!X}9k%Ë%Ay谳I1hp!i!f# Se`>f]9\ΟРB 'h `&sЗJP[tRu"bSdžb#ͭyWq)AI=HrKLHV`fh't$H̔9(9?=HH}ªD~RZ%%n9p//ScK>aжPRXp.kJNED<uJ{SV(RNbVs)kCF75~+I(((:v//R'/ū) ?GvE1S#2Mҗk}I@2 e{&:{)\Z3YyLhw' 5wLYYjJVBdp)ZX^8Zz[)"BFd=2Ln\{J(de+$d%"n}{^^y<{ytKN%nCX.M yc&o ?wPI)r)VwJ[}G A9KK㭼ߑeoSgXxY";Oκ3{yAlj-Ojtf3<3] v y|g sK{ᗪ$_^Ǟ | i)ZH\kX:Xqz7' %ȴ^w3z;uL5\I]/'l.__vbJ)@)`#hCylDAˈC]ӟaLKo}3S{6;Yl?d0y w9BCeC% IyS\o:aÏw7ENJ{|Ǖ_ec!Q~˜b}uĘru댓_Gu?O~>>l^dUrs\O^v΂i#G=jTdN0QQ'ֻܠH7`P E;aNn" Y۪GCq\SSP!s++b)+c-y:9%x$WԏQݱi)lr+};'5J % áNY9Ywt6c{h*H)afzӯQ WWȈ7A+x̎p/s dZ+dƺ :UV-qRsߐY!ZJ25xЀHdpVO848PwnjXْp V}.7xq,UWꮕ%ٵ oԟO>?"L^x3eB\sxhɸ%R"o%6kw5KE9G^ƨ~vShKz%˱xяuK$>z6K7*k!ٳ'_\0>u׷N(uJ @*Eyz^}73V}eG/i茡vzW"#߽"yx>!-˱OO*$BO&bCKc&kX.~amLKS0;,*-Alى}ˤǢY\9MQ=e[Wo^R1ӫwx\Ӷ4k3DO=ewt7\=n [+|eIFiI9^bH8vUɫڒZZ94\>T`,/xrvݵowDloΪ)5`x==Fpp˩gzc9򱱖iF`s\ܣլ! Ϸ\Cfg9_İ6>2CMer2QY8Wrr/:oZ$XX }wV+3N}di~KE?%hgQl0;NT6Uz0dI6t*2?:B]LψmdЉ %H -,x׳||rq֩Ƽqլ`gMFgj8A}ҵ]Yikzt=t3Ӫ~|w7D\绰Z2ktY>RX-0^~WP/7. ٪@3s~Qeo). J~]7$MŒ.di*^1`IKcԥ4b^5߮3sg6v+<$ޜw[g?]O÷r1IO)8D42]7'[;<GgS;kvDo~H/̤ŔN.UVټNTJO2 ҚsA4Ş?5)Y-\BC ?qr0juB/52GޅI6~C[]/Mh0| ]]u3\!Bi0r^ҶNhv跸Kas|^{f ~/H'h1b.pY:2㠥cF*vɖh*Xٰꐴ[LQiD$ȨX~TL'>xXQ\ꤿI,Wzu8'aET /Wom{I mť4n eSH8>|QԭW&Eq/%î+Zf?(ӥqeO2\)[hV\*2l_ :9XM=9{&V/!}`~_\CJ˴׵.OlFDbJwx[r'p>vNd%zm)n4R ƟS1#7,/<~&cuy^3AR_?f3~KR2u6#VndVmFz|7kvHUrLUگ_%w]m>+%m1 Mjtժ=q$Q6Aۺ;JdεtDHmVVe\fbk56nӇL8‚q~G0SczyE@Nb:^".tYkP4D9|aWI"eV>uڬ toyzNΒuHmG%&wllMs CN: 8WyG;mic0;GK Q҉Ѣkj{T('/X0+ F楲A):;Zē,)NA^vbMpl鳋ׯxԺ״]{֛fR{V5JRa&풗px6/5MQVq`3OaXAb k:o=Ӎu>niǞ8f%"V.VX-U+sBsSr/op߽hE,_pۻ3q˶[z$ƽ.N=WA;+,^f"\HD;;r!"s iX{=!5K|Fy6ZL3hT5:5}IWhl'ۧUd?}kѾ<&(hj=t]6l[[WY!t2X2˧1Y_tx&k֚Ƴjv+eK\-S=-095N'sY&,쏴C-[JM ;2nE2{n4F뗽4KN 0o߾ 5" k5ݻ?xh'mYI1NwjVq,i iɧbaj8"r;mfhnz?zjaX9+[7sCםKRe`[V<*sovwJ]82O *kPL~FZџQG gNSe=ͷuAy:@vPQ^<0׃&./Պ|.x?^O-rz@;aH%" ŋ\D4Z!~:S?8˶_ҷʍ._X>䋠VSYv5 !ѝϫ6Fcrjc*78?u.iz;RpbUstaVjߜ=Ÿmy$uG.x=i;,3@""6c"8ӑOb $4HpaR;h:Z1r1UKƴm1;kY.>Pnvbye,I|kޤr;-_C/f⣻B-Mv[su4M6đ]!Pj'0qgүS,"(M1- BJKN]IC2;C9)*͆iߛm_GEJQE\#Hţ!jGDF[K95mU?*_/opOw_Kuᠩ!ځ31؟-@ >.8ob_:Z}<lb}7pOEaf(>ȝ#|1k6P֎<:1wO0&y.DKhFp8!nv#aTꕶ~.z=P5ԚjyT]72OA_Q u~EEE@jFnVA3I =740Z@FCPfW̨A% Bo~ *3 &/p@ zWփ98@M~y"E۽rp88`;i%Sg@QpHGT wFVhsI!Z\A q=0q+aD hiWt]3?]Pukdb(M)k8p{v м`oQ^]_k /wh SF[s]y'ӇQ!"f O4]ൊtrO8 =0uDq) ĥ@ska+8@R;}Oˁ5KZp@ G'2te6X٫8=џ,$E@~`]CPXhrHh@ɣiG,d} 3"k[!xRLKpD'0>>N6 6`\Dkǘ׀J !u(79>Dnalbx޷|`/|pŌp\n$ffd3l{ axeZ 9p]uCaJCx 4nM(*MI"@)@P K?z|;?KRbӱc @'0Zi!VK"tܤa`4z](,t(0a8+|UrPa]BhtmcKw0ܝ-2prqFQnC9ˀ=aQ9w!G:aRG)ؔ@Y0,805>?II8 (k%~T\0qaU~ƍcVra ,!{@a8ɰ房B$a ԝ6.=Q a,`mI KȽ{@k>DqocJ] =Dp"xaD KwĮao m[cw^C 0r`oW螌g%tvró?Ro #u;a!|{a#`l"B_u9ǸɁI־ ɈCưNC1xϤ1jZFMl"hL=?focx}H&B꾋7У_#9O7@a )βw@KqAh}_Nρ8PKgm= jTDS/lib/x64/PKhm=jTDS/lib/x64/SSO/PK;5|EjTDS/lib/x64/SSO/ntlmauth.dll} @UQca&"Ƞ(T Brkx_ ]Zjk?uoՖ[-)[mҮ۾DG537o\<9Ϲw7pB'G7x娷8WRZmrUq +**E*%UK+̶bgRllؾsS/q<ޢiixcoRxc)\]..-*A<}i"x[e/7 KY\H1Ro7XadXPvfނG rr!NHitAwr;A H\?9Itֈq{@fP,$pG'%l`,4 nc|IU,#mc3pvΓvq|βJ(";yo9!GܟY#x,aDCԜfq~}|Oj:.} F7 K UO8 wrK55<8pA>a* n9PTi*J Nӎ;f)݇S7ćxu0:3RG5^r-> 3,c~3|bxO\dVGW$f?HhXWj#u(ȱObnj9vR;nwrEc7_|@ JG#X)eW. c^S2 2)jNOAG]PM{x+zuo̔$fu8x HޡԄ$IU@/E\^RB ML:4":*6 >&D`<;XgРd@{R1%6*य़ЖSf| H0Jek4 ]T=5$ \v$ 0$T/O\]SNVb3w2^lc_Yj>S&=]k!Ue{\"!m-t:~3G$(^zua Am;J_˝b0'1'%CQ}ZJ(tv4"!PXn7W40 5ԏ-CvY$|FLUM;ah2VTLPl@'g=-`x˙Z!ꁙtLT S(fHMr %LN|Y`K>\Gx"*$P CQ+c)?zbS[?fM;z&(gb,TSs?VڢL,QLEhbY&*Ћ96vJ:Ez7NNW fj0@Lc߭G5晕tȸOG&@Jr\QҨ>W,gTjeux ch]("fF&{9JoC> -e 60 _6*[WE*Xfz| ~OFx:_+co!gѹK)3 )jzULb9#6ƗIm{'`{]2ܽ1Pvo 6j$P.P},_!؟3M5%pf=0daO P~T^|X_͵7h'>/Ң@a_,v+eqP zQdE*猏!*iYBWGF*>Y{`ӿ="iե\A["`з3r-NK{oƣ+ǫGnF(kw^H;#z@ P{ӳ߼cKP= 08L=㫤 'Aƿck@qw@l0'QHF>y2Ғh{Qlt!MlhH  t\ A[_Wii-.*@!&jz.ږyzŽ,j.F [40UidQ]W zN|dl?H֓>Ľ)p-gjEIME>M9nt"`<4cʱPq_Va{6]i-nvbW@fMEֳ͢մ+ܫ>w^ACr\]r[sƟ”іkt?N'ޫ >XKI9>7~}ۼѷ` &З}_?ԟ{YH'@J7*T kTJr/P+ +,TBB5, 6 ,𼺙h*?5z/3T BZ`X\r~z=}CxL%7$C~A&zd@ @* @>dkPVVZ@8\‰A1FV=qP~wo( #wJMbS}"޳ q&lW{l&6os=Yf.B7ӔE\_tp, KyEE6FAUfN/g*a`bx*n FzLj;"撚"Yw d)?2!j(J4d6F:cɱ_5: SWʯ3Eel sJ5@6'Pl>,A?ÅuՂOW sMVjjۀѽAO5Z#VE~Mg"P>VoiH'L^+[=AoO9 } 4 kdƦKX'ю0S9.R'/d f*X$8<fqxj ny8I$H #lA L0*^<Rd%z :H먞r kCl͌zcVw)#ڽѲf^R]Pw EvQmִ̮6{d5"DSط>eG{AY lFU'z20 r;dG6v莄ìzuF c!j[#KѪiB.&:NSv9=Z 6,z;`.nI գv5h {ܤ?k|AX{>UC7?TڸU&%#v[RMzBj }0)v>;.i`dmAS3ci.PkUjV ;JHJhI}|'LUC#Ȼ|51 wD_?Ho ϗ)*!r+h&+|t9C%;%U 8KQ(3chljzb.(+:uA ʫ_R]pN?=ñi?<>ƞ;| R[f; پqXf}E j+ۮp}CE. 4y稌,f6 }CΊKW7,^Izdr+GYPoTGp : 0VfQ 7m6HGhjx'2 ۗOY(_յq)kr7bm cuomhe1 k}N9 !)Y_o -kǺӬjX6 4vڐA% 7$SY^~t֣*458\CufYΊ-=z] :GÑn5󧜭杧 l>S[C%^†l;#MȂR 0Nllw8`+CmrǙOϊ#FZ 5 ZKؒ%1&fbɆ}.5Z1`<@' Q] Y#X&4 |VqW'.`#6@HXͲ@' _7ijqC~,XZܒ:.թt=1Gk ZeiD Gt[neN>E-9BÒ<;OTO)%> {޹*m Jp[Z 0k#؁$N6KXUHK?Jl1ocE;zjYs(8b!4S52+ƴkhNSMճa쭑 mO].$<S4SVCaKBu \aְn`%SadP +pCnsϒlN̙f,#)b9gçoi-* BrU.VQ|42B#r<('ui(c!"4PK\,a< HwoO]|L)Xdag=f΂E^5^Fj@k!?p)]Nw}匍9flɡE B oDxʐ DS\1zclo̅o4s."^˓`vefvXo˖Ú9[OUZpȗ @Khtx6fp_Cݻp+). D\&pEeId7oNkg 90YV.2H`=lUNi3Z V#zvt:N]l|Yg i]3WH륹Z4]ԣ]Q.s5/j,&gjÏZ4Fso.ϞU8XjpYօ t"_m 7 9z 3pBZܐisn(Mȼ!bN2=Dd/態|K8-6 3#I ]ػJEEKFcJʴ!{rxnu-|^\V:K9ݰ5oIwfo~uэu8T4c&L~2X\{ťTWY\>89JÐyqַI>`q-l3|Dy`Q;p+lۿ?^-1n{1;vOujvn*?+8< @[n@Ҏag)[u8^Zo@3%=lû&xc7QUqa_hvǠblD^a<1̟h%2na!tN9O5>6oϬ wѴ*o& [SN_ TE=gPڇqJ.K;h(N f)'"T*;,/ٻ =Ɋ[ܮP~Փ O*hb=ecg3*ZtiA7|dFJP[ݗuOP8h/Zs ~_m ŽbxZ' y{/Yg١10Z݇v=)-3f5M7/΄bzB{U1t_jQjtkӝx=t'^G9ڐ0loiW{t_* /@418 7=y ).J7M)kbn4}t8m|ti {v6Vvg*fs-qƬG)o6b*߆ta# jqtoަKszi~4¿1g(}ߦE`0t'} _V` &o$c} Oik:51V=`ѧ?4zsU5)=8&t%r"SMz#@<2Qċraz ӝ>\˃{}CZ̢(uk%-2r;aO+9t5+҃!\³ L/66 iѻ1iH}=le-pA7 ښe }Г';,'1lۅg^kեHK-1f6ڮkͥ0ѰZڃqaZb,m|ҥr'h&ăH܊6-P%[0z6sy0AE`l/=+vT|+xze?ц[tne>5؟AP1>5 "?G h7b\ƙ1.NW0ڷ*X}k/~ 6B^ &7J{1AA?3h>qZ ?.=2Nӿcf #Y5VXISi/U]6XׇE`q v:1ځ.C}O)c=,Pr8fL_U`iCP"ĉ4I5g'n9Xi?iUӶI4o% Cݺ9 ˰`f7%-;fHj*OKDUIHɓlZ=u+czNЭ+]w?(2yfH&w| J06u' ܃ ÔAcϊzDubm |pJ5ŕa3-X(a,Zo^:)&nKAg ]IEJwǠ m@ uz>rr~h5xLTw9 8QRE1\*k<ZϢTP7h >zҸ",*~D_ߡ'9R {|3n\lvJs6yKr]"b D`G%M[Ŭ{tDk췾ʰtɨ2Oer $*_0OE=XD)1A_S?^SߋvGP9zg~# ob~3w2"^nb~3|A=%ֽK_=.IH-1FF1^BOY`މ:tN*_||u\Ek`hZ+Ckd3M]A,9iG,yKgɐLdə, U&߱d K>’3 9&b: ,@@[\S^fh|-Ԫ5;k?3A=Gbcr1 rqw K4")nB[+zj&./.^Qt)`XzhKvtd4OBhO@-vf5>$'!wex #Ǚ:_AM\`~~I5-tUҦ4w/Mko33?o+I=b0V]40{xIOHQ g'(F,%l [2Ȗ %l [^gA`4>'s< ^FK1qg|)!f`1|}.4jvw)L9d+QXHkďXЛ %Q[NW埡vcq!~]DKH>:vƺ=> .-CjA]8O%:>{VojXJa .CCJJ>[qh~֞r^*t kQWwV8AhQb^m%ĆM`u 5N`䔀:)u$ .Nƾbli]!~Y8M& Ѱ[خf=)uMɪi nr2e K9U|sFX fk h/֢ҭlmZ:aVC/h褟!xVh=+ij"F~7kh*ݏ:L!l( cP<0-¡˚nm MjdME4җyɿNU>l8+Ux{)!bVL8Yf6v1zԪLK'G4*4Lw|!zK5tBZiC5n8r~u~JjE3ƝPt./oJvp0cWM IN9+ h(3ȕ+J_tlJ(:;XMܒĘޛmQHEgAy5>ȗ#Y- : |zDUݛ4tJez_C焷ɗO7`N`TԖ@iVy0)S֌Bd8ۛ 䵛T,@ AI/S-Cd?ꝫzTki^gj}=] ׫b;څ6nO`Oz6^{rp$q4&e8: j%|@fkeZVfke`F[}!^z%x?Q=TAT[5a~=a!%}kahvMЫSj"ܗ'K3)g-QWz㭆}`O¾~_>D"oȺELql= 齉7 29,QJ_vRKK@ :zVǿ0}I3 ƍS9Ld}%_l`|}'a K3͒g<,6GҧiKKrT3&*77h$ )xkT8g8s `rwG8T Zݪ*ZeCo-1vOzcwAT&ݑ2ESt|!BbBo뛶 ~*UznU'V|xUUS. `]$ڼ5x&X@aaYTYhˁqѻaJ1v ƷqǷ$dfN>=ϬlX5$O\$]bV ec< T)%"Ȍam+ *"<P`6Cxl#CF=ݼäyX![cPQ{48eHtoJn"=j " 4E4 Azofxgk@9heMPt6:'3iC ĤWjA`fkYJ,02#9(Rx|! ;"x9?pCFD#XWm ,pRwU^zS0ɄG7>AoPVTM];TOﰧWM#~iAaIE,OOU~B1n"U|w# O%'(xhfRs(a_s71/̧뾚O?fZBoOܰf|GH4>c;P?TSi=)zrbQ:W_c_5;#h=VooS;% نo;9촷n3>q֣+8d( uBqX 4,AoJV帱k5 ^0G a8簂Zwpp)pa"?P0p/8l氃/8&q8{9,㰁G8|ý尃O8$00Naç9|SK?`"94eڠz<+bͭ2²\Ptf9 ϑmuIRqhm \-UUUDg1÷pU,VK+J²~ Z]X WVY5ς_Iee j%! YX\Oߘ4}$+W˝啮 "P,XGd._gʵΊ/Y,Iw9EWso]ծrs#җYʪ)s\Ej@P^]Tr:)aNqia/gU, 0%N>9Xk_07(Hl ?HNIb\G'8yTL O|c>ᬨ֔P\V}eK t,W%A+uRayTQyEee4#v]+++[0D?fY}^] b",?瓳Yr'|W.b h1e0 'U'6~3\RX B|Jy1"h ( PF/ܐS,vR/,i 7U *,C]r'3gdeE9?̟z5fOA!_UYZ!⨁T)SZ䪬\-VfN燣tеEC$2B U\_qNjdaafss ' c&]iaWy ""QуbbqCƛ O1r175?2ƛ'<)I&65eܞ:cfڬ;̰δe͙+wd/Xhqnޒ+]YPعzMI}k+*wUҺ5xp[ĔV&n2P,ŹUБ@'(aVWi[_Rt-\uբpsTVIUxБl 3VRA3q`O1<1g<4>;[Y fy+m"g*W~A庐"`G?O*nBhr"Yم^~sKc-ABq">7 .ă -%Wq!3U}0Hje gPDBٕ42WPD̃1 |ǿ 5O~IpX?M!z$rvxNX2!Q7ɍ_ !Ao8OFr@ rͥ@덄4'E@8O UȧǾZ2e,[7 y Әt$nZ4呤8 `>L!dM@kޠxI׌$_<5L༕ӎ> Ohgk8B⒵$)KhaR,tNG>LGy\NWqx@Ahsp0*tl >} iQOniLNXPBf~E^&Iǐy2t4q99q<ɏR ƒ>ly~vO߅in D&L{l, EHvOCb$\FlHY͸H2N4؞i1Dlމq1 /-wIKtf\ġs(o1c;b=Z,,[VBJgY]%|e?[!i =R;֗)\ nxۋ Jc+ + $ *ZԥNWuieEV i5_%5|ӳ+2L3)’yEkT E\a +r>R;lgArP~bqY.9*+JUs-t9S2 Dn?? n?8#{q= } ܸ4F`Te兒XB5ϼ +Pq2(\W)\ENꕒXZ2773JM+GrU.gU˙p1;-+*/*||'g,F'Ԭgx<,p'𰯚u,|$p/?p3'pÉ<<ʇOd<|o<\ÏO𵟇*]!,M>}}Gw}t c ߹?'셰>(> 7 O>Gqm/663]U O}ƍ|{whBK_O?ѣ w?w@ 8y?*2cs-!:^c0Wc~+ g/>;Y{3Էآ}LVS˄ܶDF<.C87:_CB "=QFAAixYpƏyÙ<,.urBi,nF> pn䰆C*K8,0CToh8a zy^ⰇCOrxP&簁8,㰀CTǤ> _~KC@zRP*7@+c_+ۑˀ>Pm4pwf+΁\4_Z\Zn&acy=y"|9\/ T;| X&PB]bx_\z7OAw1 D ^cppBvՅ#|7u ja2ׂKgpX 7|}o-*fWSz| kgPW  f}ς/5f ֱXFnp9oXh# f(P~;+i;'o؁OS^K'x/ v&sY &2M# |faO{8[3)гi[AnZ/× ωϒ`l`ip`/m*~ z0>a8]o4B":e.P2o[\2 ցK;X3db-o,Z0p惜?#aʡgW䚺&p;\>+R!^F5i%/|_x 9LGCf·ģy<@| ځgZIņX Y%v,~׵v-;9-rRRARX8sYM4O2nP& 3!O99!He٤jbͤ`1Ę!^P,*~h)r~K{ eFU4@!<ȅ>7*")"P WCE-uLX}iȧ*H/m]6'~+@٥\P:P6r ВLr?>SivTֲTW eFT_5mg&{hɴG[(B8rH%*PO'WE*lX}j@&Y] >^T\-Ic̴c'(bkI<%KAS-"O_3bdɬ̃r_f*<70_}{zړ 0ݏ<>2!0D/ 9K*Y' ߔTTxMǚ:&3 $>L3%wV?PKgm= jTDS/lib/x86/PKhm=jTDS/lib/x86/SSO/PK;TCjTDS/lib/x86/SSO/ntlmauth.dllZ}tWvFF6%Db@P‰i [xh(13+T:ٜczflN%džm$nۦGR6F _}#@mO}{}, 83=hE;,~p}]-=в}1;-ʣIcwp8 }97mmy ȟ&_ ;_hX~XWkcs-Z[[sm+Z8χN2J >[Y.SO7sstrf5юpt*a[52%8ytw<%C_H{=lzQ(ц@s+awEA٤$q<Eڀ(6(m9u۶r.\X㜫̫~H((eǧKDL)UņJJv-jZz 0!QV k$3&K 5>vo@D9Hd>j(61 ho$cZTz((3@Bz>{p0!ȁ"m)s&)w~I*@ձQeMQ4S#>J ] X=(# !F)q6)aj(^NTrJA 27`Կ4-9ʓzJеKdi*x3K[|6 ,HlK':Ɗ!Wܦ/:`.k G7ʾY@'G8B$"h )P) қ@eHML2B7'쇺UU*`F$+b虯ds&OmTT.Vl69Q/ #dfC-$AQn`j줚s>T\w /Oַ >!0j[ 6(zMU6@GYRQm"5iIb(mTAgT1S͙nolg YTŌaqoI[k ))Fr%zS4Fh` 0m1?jbn즫7f$@8swUlGX 돭ts.2 Q Q'H>M G1Ö|Ò|:'Yk:Oۻܕca樃9N ^;G套3NaX jspmI4 wq-\NV0 G,e>Q±\_IJl̟yȵ<2+v9"tm|^fE|י |gIYüny:flD)+c.7Ǽ(W U͜- |ذ5$Nogychl@-鸃S) MAn8ߜsM۶k2 ^m~\)\#RxPK=LcӉLTWimgԱaO.@l|dn6tvNݟ\+E+[gl13Af:[Z1L3чgU'x*(|qޮ*&{ưy+fK>mH)`pIlٙ8z%"vxq&vLLŠ#ean:w ?y]6Qn{Tީ).x#Sڎ'LѸwo?7Y9Ed,`eF L%֡fÂV~NAgo0nVҕ1i)0;LciY` JZeVY"KKs*PqOPRTYrѮs|*U\.k-D^ ?%r>ԟȪ_hʰaѕa6 Z` ƃ9BeO5M C?~$;a·o")z2v[V[iΛYܬ VcfMb 59s_v<=SQ|ڤ)'xΆkjʠ'Kڷ6nBBHM:ðh6uV&螵zmVQ9m9˫ؔp ]ov![ t{RIC_ 4[̮zA uKOZA;uuBbn0 t=^Է mQ)D& K{u^E!w{zSZS{afv/Lnaބ,A,j̴;HȀ1ƴtżxe@z9;|]e%=5)I #?NVų J"b"Mr7I*|;J騖oaVrǁhQʱ͔ Akȱ1xlnKfo*5"jT O}K픇X꺾.!K: լʺ]!OGթ nO: KA'KacP;)pX g iHg XQL^o*y6t{`"K(RhWiEGv?ŗ&E^ÆEk2'+<ΗkM$NE(@:ߣ\vy8X  |f@8wMqNQZ):{T\$_N6\papICFCebBb2@ CrFtD^-gZ5)"*Lk;ߌ<]0 9(b2qLvXo*UdzM % _bO fdA=)CCb<G:Oi9D b+<<0D^gwZmX(vks&Bz1doqfw'ǂ ؔL5PK4!DˣxHL' G!Wk~/^=%'σm@l6@noGq;@h /`bJų|+y^Xz8bf|4 <{s:Op=ݐfN FG,>uX'ӊO_@%ÿ['1nH&A!-Gɾ(R?kKz:@Q &[Se݂~`yma,| [ K2K31b9 T?Aq#4nj* -Lr;ĠW8W2IP<"pJXo4Ѓ0'Yo.j/AQZ1Q\QE@6ٽ5^h{i$5iڼy֦aDmbӥk Q*p9s‚1M^1ܙ3gf̜9gſb*& lBɮ߽e$+# /C!P55GmRHא`Hbs>@sq,PU}u{q[Iabo$cMҷ— %6} l |{Blb>c_Jޮ}f߫!ZyyJڼ᜼ljHV&{8CҎT)Bɥ9[3! 3O̿4;.@Z=2) OBӆ SWdƊ+)oRvJb팡92\xV2B!bZro^4k7klZ!{TӟŘP"㥂^F(Mj ѪyH' yB(3"ׯ;)h0jaGrTڮ0MZf2C z1#DP@<6f7_l0ln2f#uD257+XEJiQ晻,# A#МSS\\?RHQ,<,(RDgd.Y'I9,jye;GdKgt/hߟ z*J *0/x)|cR)e+=ԏ <""]~($+wUZԐ7&Xi^a ͗I o}vAdpm[Sm1"xjTw{r!?c7Mա\3L.` )D0G -!;+N6X1[>jz2\p9 =TPӐ WdeOx mc 0@O$jC|C2<{bCVULx,ebɀ4 /1 zZXy=mMAZ߆k3=u-22.K"ͤ^򌠙\SH4\4Š0؇@fg GK2U!ic LR#hT( d5]тB$ !jֵޅ՟s~∮U0kE%K4* QDž8imd,z0QUҎh+фèD8&&m檚ʰC.(4de[ƳJ܄ChfVLcUkC6471i PD؋? K?ܝ4c)B^ Y"Krg-̬)+Q( ;IoJ9i4xx圓+Ȥ/NގO@*GߡS2:A=A\jlFЕMŦ.t[ iƜ1P6&m=ZoT-n'008ZjI'b04FYY,p7K/c͹4(,#j˂%:7rEd%]:a 9aƴk7b=oO49)> TŽ2D)c2跰b2[܌c>>-=ʦOe+npR/L_ؽ՟&&.i)a[r2/I1D<`a80IclM5"Cir6_&ߞvzu'؋}S,:Pg34 rq'#=;y/ua, ͘#b57@wȂE-( l3Zs,(O8ܱcKd.&wjHt1憠BA36;/x-yL=uAiFO)UʶA/KbG 97}m5f#؀0>ϠI*kWՋNC !M͍Vx|| Pcd6ZŽ9B:p1r~@Xl3w{|FAb{z<ʘyyY4aFab`PzF*ƐY'L"&p<[ԄyMEeGG\ k>b# +`]hW̖[o7wx&h&+1$ #h@x ȺƇ)V+vJ櫞 ob9n>̝uF3YAO`O[7w qNz1zvJT{۹tXYfF3X,1WiHTؓ=x|s<+^$^ p]4c0D6uQфY_tHC.@ *A`>XBFHo3w)X+=a%@!Mٶ%'iHu)![Fo"GC^2@hO`/B@9īd%% wZ\yeM$U$h޷_$+,{)푧I JJ'uXvm_wqϻ&&}[trRi$)FF9'ѭYl7K d[|"O ra\;|~:զdF6/Cy.= #o\2\K_~?~|0-$Z>aN`dhG.2\:"+ ?i_^}5徜.2I{q]d? {(xflH@Y>Gg#0"i.ϰ]@M,f$2<DO?|#_>>> >=_gFKjytDƍ7pԺ?m%ClEYj?pp<3ǔpRAl9C-S?R"W,3_IV?O 9x帽>G_\k?uwh6\ owR)4Ȇ̇ E󩱕O\F*=LOZkOK/C@z 5 sPqLIcKcgAʫ{>E" _}u>lѫ5@` S6J e\ i&sѧH^ L䗵CG;ۍkǻ2tʙAtdK3; #S@DZ )Sޘ&DqKQQA:L%;APom M7w+-djngKk jٷufr6A4π\x++dб/PEI-`ɋ6J6uت4Mzz KTpCQqB7TWTS% ,NvXNUƀ\(vkQI2a|2&R 0@>hqOハlMnZ[ Y|龍>ub\wc)&sK"گ+%0̍.w)Ce ˞{r4tT16kxf!`[3@x?{gV/\\4 D5~EC@y~XZxK a$qG>iƮ!%;!+}B2X*-P5~. 픽N-v74^ע2MiL},P b'wgPLi3W͒S.ɖ,;xRm@'{h;O{.%wGZ4irXȋ㊊Qs]usx@\FLVѬDTԡ/ }x{+f>Ue'=DD1Ib@ @j돻}-G٧ gD6)aG 7d:W nSҹ\!W UU4rEfNƬf/5l+]VVC*ƆRbR5T}^wW-S=q=MEBt)B3=Mi& } 踖pe#DЦw;7RGmоC۾Cwo }G8!cBʨ0 wҾk-$mC @owk}Gh]J{xK26l]^"#-$Euo ,|wC&3w zXF_} ^ 8D&oeBOӖT㲊4o@e60q*.W^WrP=z- W5$4\/iP {1 ƙ27Ct'B#J=3|1q QXAIRA/n9`8pZCXZC/| u *W G3ڦ=a5vU?,4.ܪQT.pǶw-qjٙ/hi9iSy VAE(6dozɛv@(GE-icH(B=fݑnSPH y&0F',h2죓0hCj+v6VO<ջ8^xJ{9QFǵ{gsα fM {z=HΘ\)GA0ŐR3?_uQi1ds (MRN ~.G?xGaɾNdOQn`?X`};h{p5) pyG@@S)H&S\7=1e顬PSRf^>~`##xvG {pM}?R;9ganb;v9nTĆNU>J>P>Vi nX@* E*Uј|-,aJPeuqhr1^6/^cE:%tAw/}ѱw-} JX]m8p @tEp"T ^8p``b%E%,pT4<78 p `bEa"*/j](w$r {HxǬrH-e^a+˱Zlevk5Ț JhYݑ(2rrk&v䭶ە|T|KnH̚/L8vZSeM%[鬮|ep9|_prWXM{ 0 0X{Keh~O%=W pftM%80/DյP\㦺drWR~~&wv3krTz2MkWގx8h+cvlMiO- X\5[kudL΢.6a-04]: Ny.)J<,qS_^]=Zn!͜"ʘWOU d˖%U^S>8(<ʖOQL&ז\n]P[?^ŠUdž#-㜇U>q]w7\9+5$ }4Ao;Pv'˹˝F*8G+v׸ԇ"N ֐;Nb>G:tD]1NQ+c9VKYk`YM}s9oBk5[A>SQh.ٝaلmXmǰV;̻0C󚼌|BI o~\ie?p?Y4Q4Eհ[[Afiʂܲ5(SOkkzgY-rM.XwU2.m%_6Yܮ:e^z{lK%pIɍlwMٝJJcWz Κȭv=k u&Џq((7 պ"8HkMfpf"7JGTt%<7YQj#ʄ6(gU[ͱͦ--M:<F'J#4Il\F]"]cqLݵ[LEyv ^ďaȉM9:2G|jۤ|G% |X(d?C aj𧁟 @:|[v;lÏ/_>^oC8:7n܍q7ݸwn܍q7ݸwn܍q7ݸwn܍q7ݸvx6W׽ZǤg655ޮ*jjqquV:7.5WӛU:?H>UZ_{WMPMORFؿ{nN/|_Wh|ÿ"/tӈ᜻_3T5*䢌A~K~~pM^xyv=0bWJ1T gI!jH" *$PCJh" RFZTpNqdDl0h)UB,;{/N3Nw緻<}ٳ .kUr`p"0+݀q@dt]GM_|*5מkˣqqKY9ˬ[]wwqi".K9lJ `iuPpGہ>g9;&nɬ!B_S0.I7S I GJC7 )6֣vO(2(c7 ;_똜8xuNvmT6k1 AZ1p @ *2A8P) CL) |2`_a%V4j] mT+Zf P0a_`[ 4W,J@)48JXW@i:d*htjȝ yҊdY̍o V띮# X e!8]䁴@K̯V@u`Kc4hsT ԙRK:XxP?AirѴr-7EPc6z4Hsx0dSoˌU/f|- EoRme2fQPr\k Ȫ4Wx(G@o7>l#As 1A߅zC_ cQw=e'|jYx=iA~nG BȨkb!B"D!B.{v2\x)^kx7>!$d,#+ZK HzӁtO[wX&[ƚ]|`o[Nkuu'cxQ$<@,ψFM\{~~>j۽-ST5:U:wsS=v{|oxOz_x۽S6M{]jv}uޢT_梧E Os+aDL2L"ϒF+$4Τ5t=})byl`+.n_匏|&w u-Y0ak7KەR>f;gs̹Wr*GMPyTW Տ3jڭVuD]P]noۮNqn}= Jx W}w;ⵁwFzsޠ[>}PGqn>B[=qo<?9xaI0$KgcX+c)-g ZAve6Ip"ΣNS9Z+r)qBΖi[*PԇseM m]wGg GNtڇ~2ݨw_V{j4{Co/v@ߠiDyy6t+mt;A;n,%D6i`?eM~v=9wSyy_f&ad&@f.Xb-bxIQȾ~i'Si{l7ٯA?u?}<5)u*O5ZLR "lrlzTDAw&}o}0??}Jח_?n8[x5:\O1|FY) d1' KAi/ڇFb~t. i>ʦ@4԰B$f[n'?y?kzfi큹n_"ClC j3Z{6yN^x]ӽM{'R̳>AvGHD8Kx '%؞q+I; z4 FuHi ѽY!>+.i<Y-r-Ƚ}cyX yJ9RqW *QR}TDWIjŠ`nKS#UR9j&rUfU cNիjjP!B"D!/PKhm=jTDS/lib/x86/XA/PK;#nMjTDS/lib/x86/XA/JtdsXA.dllZTSW! ȳ6*jh:t'Xq %1TAa@sP#5;vqv;3z=gzκ{sv& յUV.r4*{_@c=g{~0ZaXa1j)f2W3?9 ggnsC7o7oټcNFaysɣu22&[b#k_͟=^ |ƽ\{ <;wULv5n>~oA[mKBD+\19S4i *qp5&G'} pj5%&4 H<0ȘrGo-`gE'||j}̠MvNj66yzsL /RŘU|&1rE01_O&k߶2*M'wpL2Q&D(eL2Q&wRbщ2㻻\>pJpUq 1?RUerezz/poEAxdLʆy<ɴm]9_*,,շMg7֮uƻ`Eu86bSY2W6\J,늢ȑFX2#TaCr@"^O7<{(aKV]6;4'/V '&k;yYS6.5YȧcrSvxf.`[ . |?(Vp,0'a٠;а8]{M@DqbHb]ټS~J!`R j*{ v7F#oԘ/PE$y;|!cTCC-t;v쒟(b Bݳfv4rot~8:ëxZA3O Xw<ၶryf>c.,4Zsʽz&$8|H>2ީNXc FlFeh~ dzIg!wU'DZPfPi]mq fQ˖䁡Чi)]97*6 xut1N6:Vд;FUaj*Y q$6篘=쯰a eHŝx.8[,0؂:8gΫ87ƫWOqEZ=|֎AfC۫ydC{$Y[e)QĨun60\Rf&Uyv?f;T9 ['q4q,U^H(NjK5wեjR@;x9!mx+H[8Uj/|4a&,o{l:DeoREE#,e qo -B2(n3ƨ-_'=L\&1F ^8(5k 돳L y(LKpMp9pk \5pkL5 9\5I!\^7^CځSH]"ekiSlq`|Ԭv^z;OtM08Lyh&TR<;ɠ ZǪcaoU,">`'f[[X+v™c^1&L\\8.,6#palZ FX=_4Ťeᗸv&-Ede7%}/SBטнm`;~/ ; 'oL#wMm{PyZ&"}b >mzh*L_҉8MG/`t?t,|[~gڍjw_~|/N88A^Tgw%*qJ?/)~dJ޾nQIEPڸn ;uos/V_mXtG]B޾s۶n6X߰>_sQ|{{׏|öz_=C98% q_kdb|< r sAzNIݔe%gQA,Ld"(9L3e$gSfyRf'Rbn?;{RH|a.dzpO_|0Q\cXaN2Z\;H7D(̜ء3Z1;n}ȉwIt>/ڻ:sƐeTᇭ%[+ *d ̸N\kS"3Qȶ2J[꧍4qU2szN?yg*N xc[lk/qq2D%E;"=ǡ,f11;dgJMnɪ_yӐnIv[@ + vԵW>t&I}*8-X!UZ+ÏijuE/|(dujV2ڔmXrd S'r|vEj g/wz|cE{h, 3ьT3L!?:3=޻p/ #`DeҜ[OPGk*syJڗUv.l=ۨ>ĭmCRHoBp/gV Ս\$eLRp! =ey9& EAVS!4k tYab)(2 C 8FE yA +`:UEyIYd)GЌ+ 4V |O_5OJF˳Y9xv4I=6CmhΚG]h{Lb.UV2{ i>+J1/÷birޑO^-GGCש!i 7֕HoG9|naQ8<]MJV6M?w7b.8x$x¿SFKl7}e~K싞\S IpWcj/ƙznt:@WÞp0wn )u[- i.;dʚ/K:D uŝ@<;49H$g~0ԘzlCjy YE׾kExk2ry4 v"]5O +B%6ϊrT]]Sߓ~A;& ϟC(BqFFlmEТFIS;gε ɺ4yMb\NͫԄaIخ%l+ >.[U{~d|g eVsBRH16f8Bn\x8H]_ L}y0|I(01,@' G ƚLNC~u7h:WGm󜙖ӯLdU*T͊c MZMo}tvCnX/7_K =!9CX58NV/_iD5RE1J9s=J&zܑ8=ƒ$ We!O2*]|g`1iHFs'D!) g$ғﶬ }wR]61Y}rnƕ0wW@!H^L+ w6t2f" .֗A惨.Z:ɲi4_)F#@ '/孩|"4nG>aG[ " Q=?EKb 3PT#B9܃^a0 XHn&B*'d ʐ_$dQ;%#+ᥛurmr  ? C be|FJYEvjKl<"~{o;F O[>E\p<4ēi3Ӎ&V2Yv4&$PTin:VzÛvcLmFJ0}VpUcֳs (/@f_p ?G]yl~jAlDeLAE/v;G{N<|?ʫ<mh|uǫ\ĊEV՟v{ ưڵ =̹-w1Qਢ!"9syÇA靜Wbgej7=0+GΞzݱJY><ML'CX]Uƭ8(nX1&lB6ş ci/ȉ}@Fĩ~3Ocz&˸}V|*-@|LApdg$4w@ Q@J5^9vښG4G}֠VA!Sg+-I43`׭A%%%WϷ%UW-(3o5urZljPk=kvK'F:j8|؎%. |4OPc:bj"ѲUD-KLJ,4T+SGCRަb>e19irma-%x2Pg3kBnlخo| i}S zvTg6eCSm\K)i}(}/ٙ{S4/3H~*pǰ-2IBgοLif~ ſJ B]f%Ukvجދ@i/fTyƷ*W%z:Ey÷Y:uLt ~4|ft3iX"AA6 og'Ie嘎"N >12 JH)Av{ ',+DSyr/s=uAT5`Sdآ2g=/"BS}zH[?v 5 tspUO-Y`hfb`ԅzVy1Ga+e*di⋳&h Ii82Džm(&:5)rTH ^]/aq!~6"BݵU̵X;8 #c]{NO|sF֏ Zlj +}T,2;:i PQk")c^e 㯕EK3LILPBa3 K JI*W0 &h 1j;1J-Ip[ l>0ȝ#>fF(8].>Et])6DD\/[r`O_\ +:e1Dnǒs^|kDb@!4/ٙHqF nQ9T?.:\ FlFy(dž: 'HH˼K)Aspe EGIs3-_CS1g<Ǖ\{ZWǚ۶e?SwK,~ h ጝeίU3sKܑǷIQn~Ĭ mРZ{Cb4Ewڭ`֫J୅o% <|YR$k>y 䢨-q(=݂H]8$оaE6`jd SU*D5-r-lZVvKH'c.4U٩? qr T`gĿ֏J26 rK`̧>?|LEŲ<_9}ϖ s5E !AQ/4lj5zϻ|vz'Zr݁] fwSY3ea܍ vQjeq/ ]'%@JOŏ,ҭ$96=ʵv_!|ckTr|4/;7",R272x3-ƾ~F>8 @>we(T=c+ .F8Z7`"M"yH H矑+Ax9Ui˄nAEUX^tt)@΁ٜ}d_?/HLNJ_WK6w \v+VDYtE+KD1+JzG g"+j'+G>eo:B'JA2;FzL;򡷡dVKC2:1XA@$GCi+'_._EЃz|CGr^&Emq4&L~A 0)xU]AmY.YP%' Qkތ8PU;/\pפa="ba*5^/V̔F Cְ(Ӝ:ń9E)ExyϬNtEO_meibnbBsZݸzH w:"VLmG/a*|o(G#G[ ֛PDRLgVʜi*ޡ(%#h<` ͖GY5 `l?8)gsX4@vkY$s><AqoLU+gF"/pS^Wɬ=ՕYcz)ps T0ԐP0 (cUϥU.n?DC1jC ywovU."JJzS]r%>O*B3*u񤇎X6.LMį U~ T#.KðߡOO7Z2gwqOPol o%. 訐N<[!;X+-쀉0gkxm_e1'Xڠ7/̖}BmFKfh4BV ?Ǣr<ҕFcxm} V;I\ny*JFڟ;hvI`~ucj Q6xkN,->k@W|]Nl=&H;EȊH eBc^ (HO6Efec+Wb4uH  ]oB{6.ˊf1Lj@Hx9hj t>c+2 C=+ $wVʨ<2 D SN1F%y'E Rрwb[*LzU~(Z| @r[AՏJTcWؾ ch8sG$q)=-E@ j5RAY!.,7ݸ,GҲЅCo W`)]xT.q*?- I[&[g-ȯ ي΄)PX#LٲQX3q0όy$>?5OU.ePe@U]P5 xY*ŻYgD[Sއ<=T :*H'噴=l\ƲyRO`]vv݅gzCBȰ̒.m'{@b(`mq<>l9iU'A"3a"4v!P S];C)cemXqS㬷2&B?㪰*[ ;K:AHzj1 kbҮ{P*zb浳{8R0`Z |)p)۵p?3#m2 듚t$4Uj_JrmfkܻurrʹXxbx.ROC: V]$/RsX6ץ;SO)pR~S E^#ϼ^Jn.Y&p['R+N!O1)>'J\*#dSԀEͺ/ 15ה%{b, o6dL {0~Ǩ°Fwv]O>˹XVf*._Iz ni~t*ȮO z;僔W,ӥNpf[)@C$?v{~a{#{5n1uY.& &Ҭs=-M@RU<\ ĺ$$~Ng},ˈ;"s# e/r?AX_t[$DkF-/>\B1?|K6#0QiXGX*Ica)#S*4=\0X]Ә&6IDH 0dPŜKWg t)΢?t "Z5r PKHqMu7 k GdEnT+B95/؜d6ُRpY@dp%d(OoNVٔ&L`*JDL~< =VN|Fga{>U,ZN4%nk*Ku3Uĕ֥9lyG;:9`5 x'jz>1z(j%^ߏ(Bg^ɃxZӊ,ξcvҥ|xsmxBGlGK* ªKW~ą=q&BsV./,yrO!5J}xJ-c |'pbTvPZ dNT![6s1x"SCɟE pܚw҂{xH( A*?FpNpAv"6 ZwˬU&+r]ײ&]%MgϬG6X[:^%G5kg;΄ja/2Γ1IRoҮN!M=yM% Xr!R ̱9fKlz Hcss'n5a Mix8A0R +Ykh^o(ʋUhDҫ6=~yBOgʉ/1+Zu_s^\JFw 3T d:8q'❯LRz@s=8r+͛o/EXlT/oͥc0,w?-久CRXeP@'j9̵6i^X<S-Ĵ$/Ї{'!]Y8x 5( RɌT ٪?".^xAw%~4O~ )s$QRnImJ|eѐkT |&7ZQט\SP4NWSXƇ\oD2 ItC^e={;Di7l9tPbO~@= !ka$qW$Fw ./I5Fv+XR :^%bKFM# ?/,>P 78޸Yr>V:=Ku5w+8H` Sc㽴]0yÊR]kC5oyĩ;?ڝtM8YW0+l@GAxSO&˽yxZJE,kj;c=LU|ysng|^5)4yR #oE٢ bVShGmqrí5k7Qb6CE4g?MB.Qͨ|Pzȯ/?KuWd08%-12\@~+ IʊU·{I}:~ "k,#V=~ ~ tJ96^V G\ O&`yÛ5*hr+j EDoL/EC]gQ O_TGAUcI8s^1&^d&s|oe̍*WI0DZHOoN&#y\cpNj+V{i7Lv`> ±Ro/. /4+tdj$R}U!^fUz9OF{) F[xSeVRE 3bq,ߕAUk m-^AYs.xB>3cA|Һ났vA:jpSz8eH~$W LxtʫPT]n jNd;6}+y&:ǟ;@ mX:wzezsoM̫R"jLI 2BJj_En٘;Xժ.(P򊀯w7m9eycA /tZkJ2v_`̕'(uY/*6hpj(星. zKqyYPl.@3&Ņ/|+4;'t G'T'95"QӍ0_AYe1۩f|z @;ArM`|qScJ尊lnW~U}F>̊>f}_nrt";<(j+v\r2LŠ«S:iS_{TY"{|!`=J53{@GVcyc[&kAס~&+#x8:91`_,_L9Of+Q7oh! JVBh^GWڛhZ Gav̙+gR`Lm#y*W: Mu^Ű#lLћ>KOHaσ(ş9ks5`z$ބVmڎ&V[}i|Eq mgwanW)CץW):,{s%ӱ_)Naʥt-nR%鲱q2^|xoT~hukWI\p%1=$J.n^}cc%$Mģ9Kruu[Jf4@8C2 #~ LS|ySu,#1 #@y kEg%İc" H\ǎ`-p粜.i`_q;p-Y%P'Y+i(G$GB(Zmu*ߊYV=;ei 8ſ KC뛩'O^k% A$lh_$RZ_*:Xܚ?Fs[}>䂌n.UFf @i֌ \O\!^!鍽4#ډs?DµɶdESVpiCwɍĸ N!J.5Z5895#G/ <'R9 !w@XFҪx*wXRtC;K""#qsoDPj5JQ2li'唌=d;X%tZ K]Y@`sf gbӚ4]#ԀK_g'FyT? Ҁ8g5&v[buGV-Hfa5!vEMR_G9`KOr͢OgP'q\,r%d]|'Ql3ISXDz&T{;I(7a B[p5@w.P}}yu7 n5I=WRd2e\0 T $Pv̪ay|4"ZQfXHOC?C}ZzN޷l" ,B"tk+]pdCTӨYN{ pPĵn SǒRū |rf !^m%J<\£Ԏn!3fa 8C; fW7"XU-b@ tWA"e^[\م eP)]KyK[8)RpTq,KU~(uVxCQ LOx܉UWKpueDvUi[8{dW[ iSG{xn|9kv"OVHT8P?27(cahOITeR8-q%?k\Z_'Luozu>xx0KHgt VR^G*`%,S1PjA_UZ xo_tr@'鬓5z8n{ؐ&Pg f%=^RqÅdpn۸ >.EAPKlr\`v]>tY7Spfe VTk&aM5X-[Po¢^,8CtLut$Fh𞄔ӀN~ZTi NTِJPq*OM폑uY#|L`uRfGR993[7nAx:,Wp>`}9?-5-&=ҵ8c`7?h#X ''kgP|DuQ{Ѥ"j,z$GVL}~Mؑ>$opYBYƉ7O=9CG&jX#ӊ]Kax;n`D0wvz==?CzXh;W XVѠF ֫%?VPT9(`԰'~'uvʼn0aK `LH5?ii~qg%8c [pJ<0MS~#+ u31gY |4xʧd(xTڃe6B~]bYOv?j.g`IYu<*N PpfM4eȜi&}OYՂ}S-wWӑ(eH 6쳦_f#;Q!8?&|5+BB ŭ;d1,9O"oZ^W'Hf^A͕^ǩ'ded9Tmv]>'.fI2B Q7yK I* P.g(,mr*#Px`yo0pz#zHIbY1!iqŽ[3/c2[C +׆>VĈp)<|!5S6`OCǰux;<GIA~FDfhThvPDsCa߲uFJ$݇r?A?z赽Mh]b4 o\c0>D.acvųe%B-U{ms$+PkUK^ =ٺ#ڐ`V>qΥSIaެ,더4/gCt4r]g RɋQr=k*ckEF1V\fET.).dtY"̐1\}u:^2њMײsWԬn\4R)HZ|N_2%uޤBټGeM(!Ne.p gJǢgSCt#c,ԖxQS=&'%a<jսzpq=fKWDN'zu;y=&s=>&)M`ӠM>u` XMpD;]WC ;3¾S_ ] .UC _&[ࣧӀls'(jXGe3rR Il4jEJ6Eºz?#a B'V*K,6y=@fv7Jh9ҿʓ3PyUʠM NR ,(y?ZG.stFjQ "il2@#ZDu'M)nKySr!}q'c1 E]9=҂់4bD%NqldO06 <L Ǎ7*-7'E!{O s˃[Jqfm춘*4:Zx+ba?rl`E6%$5 kنP $hEqo w=jj,_$Y\EǶDp681% dg `v/VL.\nD CV65Nt#wﵔ2 lW]ߖd>,4;+̝<{ ynT]To ӱn9ddvkcVTFq"^YIRduYAX5Ѽy}ZR,̧"ySװhTapu3%;+)N@/I'7BrRp-"ّ=BKp ֹ}#a*vG6yW2.0sM9942s,j؈{bXȄHg*zɉR7 ] s.rQ4X36Gf;+!5z+=hcyD !LcxG~|WF-|Ofʞq&xܟHo2ȩKT[I@{^CHrޖ> -fnt!l*;VGsn,}m 3%IZa$̔A:!4R8AXv!X𡝼5]b'̡}} r9Od}h2vV:NVeeR-mjEaK c9IH)&y"ϓYr[O`?-"rZ~>: o,R/oJ¡˟_Ǒ S 1~5VK;ɐ>SG 1u_ù!!N0lĪH?}pN'Cd?pxw*`033T-8Q}_13 ?߲[CgX7YPonI7.{3cT W$>^\jJ36mk3eOWm"Oy ⹒*|՟2:bQQ4HuQ5't) TZ7APNQv|%1 Q<* Ի?Xv7GϢU|{MΖ̨H5[?q#*7p MwgFuTp.9fV E+EȎҲ:"ldj/d; IiI :}t)CBTzp)7{lp#0}k9N&A;-oT ʶ?YеFvՋCoּ nSZ_]%ZS-Zm$WQ3ؓHw Zhnb}TMsgW-C޺OFbݎIѽAjH*ٶ"%(dcuqN\D}-Fī߭V|0뷑a^.>#[WB4NȤ mRVDWWI4&d}.󤻜oDEOEUL x{S D3 u|*=r9IC=f2"ܔ#Y/3GAZ:&bsW`X(|X8Х3.R[˳EGo<_p$n[j_s4AMk<g=Y4ؠwp}.YH"VTmoN4qWmX+Iwh>JhyJINjb b;F(/}di#"lYFd(A"f34uT3lzx âQ+"hInS{*u .{fp'5Ÿ{b :xsdϧ _ gJA!! Iٚ @aqvGIp ?O|![| fw%P*^nA2pڬZ* ! xb\@P5&΍= ҫe]dBeK{[3-G0^LKoyv\2W;os"0FWkGz)w ٱ 8Bbr{<QQ3vq+NEOZԡx^4ǢK$e&`tn5iޭ@Fudŀ-Wt'S.J@{JZGw{V䴦ͽ܍]%Oúnq0·QTp?ܭOuLP>C5DIS֫Pi+CP֢PR:v>?S2R'Gw&TWInHGv1s߸RioMRy!# 4YYNj kCPv/'"RiF2HjO$yx+ǾgœG' NU>+y.Jfl'z,D}P7%ܥ"Szwn$w>-찤{NPjYͭe VU{]*12(V1zPy)3,j26v5Bh!"B_yx JjeHGiu/Ѯ2C uRΏMɟ m:,tes Dbf2ٹxa0Ltq}e&O,JPQSz*ƭys*SC]N;1.l;rLbLS%7 &n(tM""s۪鈞^TKG_"MP vUBw}E=ckE9 9e`&=>#熜%$w)@=aenf[aPp`i)XV{cvdhmC&H w&Yj)w(-vxGue2ar<2 ?dJq*_dF(!@X ?_Fykר?/9fm szJD(IDUب+ٗ2Ii~ v^(3K=bMv.%Q;/ :S\ Zz$ʻ|4.b)X`Rkkix&~}HZ?fALRN/ߘɺ fʁS*W -[hK{~p/nViNa *˒aѺ?-,#Nk'9\;?C0߾1,jQ&XIZbIVpɑPWq)<&FR! rküxy1V>ByWP {49׏%a~i}N -T- aE\=|{KOEYk,bnƧ/˄UMM#FΊǺӤ?Pcoz җmD K#}~ue\nAT 9 /lr`B-Djkm [H}m RH>\{=‚IZxVktlœe:ڎA̖HE(堩4~~?a[= Sx?ir65@Ob*Ϥ IEϟ s hsmQ럒sahX \(Pnl5{W?a6}e a vSE(5; \&т_?_"j6"繌Deq87 aTGbP㼔GM"u<^BӚ=⊧ZŒC3B`-I%pX!- ct/A;kJ7Ɛ.DOSrnkN_:%-7%9 ]]B W⭌Dz,ȈKm\R@g51o?Cg@Ę*P?[rmj>n;mI LN=ӒU§ 6$ץthl[=.;L=W=(k""3|lgBNݼЃʹrO 9m||NK%N=7U( %ܰMVd0SpW ! ݉-[~dkPL H}3Ԃsb_)ݠDެ[ 5{<']l>[$6Pˇ=D!#6*D Xb֒A~UUK]DdDmnu6{3G (bwK} ƷDž >=<]ߟ1Gs ro"Оg3EJK&:?:&IWgO$ PX%#јymC6|L[1H u+J$qNT&,{ l-fӎ)vsP#ơV—+#o[ MK͆ր<8M"m. !5;̌G' P[^Pd)K׆E/':-KT<Xk@&O YgUޔ:3ŗ`P&n|WHau,YƢL_7Ir"ȯ_뗅R5i 1+d?߸wf@ B-hmUុ-<ϻp#L˩7D& ʋ&fl%F&o>ZjP^M,u|BW,9Aоbș J|"ۜ̑oҗ}#\?+m `MX I  7_,YM/~sp 6HR2kiA[4̣aȝ5W_\L'猠k6.yTv<Y|}r:uT?Avcd~NJ9J fQXPO}'X!/~Vq@n\ [ i6kX˹{ O `0L nPy106Çc [M?rn@-KQ {Fd{)<c9SCoP!w=[#X!*rN)gչKt&>,>#x{c#=T5nꆒۇ-^)ds=>NK(}4>$J'< ωQob_wZCTG;m/J(Ԥ!5vcQ3Ō]]E,bOQm=,j-[S ;\e@|mϏ:E|I8 >Spicw2R!_^$l/"8jٺ _9]{UMw&f1nS^=Ktne|P@*l cXcLOlS X{IȵU|p~4h c}doܤ>9}g{ɜ 8#uυ3\LsgT N~m)qOJI NžLD-*|CU;BY[,ˠXAb* SW9Jxl&@QEsdrt͍@ # 5 ΁e%?Ӊ9l/2YJRaEcM0"`%tR^E񙫣ǪD̓NTU\ߋt,Rryv?0pnoҾ'!%B,>f1qīĒ6FXKWG)_&82dֲb!~<^NTc.zx^ig\V}u3y® C0it3310&!3/醅L<w/" 9xueÌ@wrv7giNx);`reSyaK\YY-F@^gPĘ0+)z$~nS^CǪ PgSgrjN#c 7ZĺONw)>_ӹbh`:yeR&Ы2wL=j5p8Z}ƧPXS"i~Gg;Λ}Z7q4qc@%<]@?jL 5d^[w4p{" ]͂R'VN7g)?ݚ>%+:Dךe4g] ␁N2zq r!u wJߟoޱ+Nga:d(L/ k5ctzzUWF)?2t@pNLbT?@8NE\OyP bt`eF3!H18B\u1H; #T}ۊw۴^4_.&'|e%*0O{i3O4xOū\߉&_wgj, P?7cd'7nْDpTZ~ ~\-M|-$O0?O g]SҗݽU>JxOzAS1as_i1^qkZkec@ԙ~<»Y^c~'GTG"n{}:iHe=C=[ 3;8,;\Uw40my ytU7}98HOFQiufe\@=% ~<2{/S̮^u%4n=[|DGNzYSnExEExQZ_JjZm/|ؓrllqHNa1uGL*D>/hA=ǃ/%P9*2@2Q:xb=/ØigSrI'̦XߋGGj^by*V|-zÑw/+j|HmI,4QĶBJXVYyI٤,0e b>R_emrEw}d>ߝm =hԒlkQW6 N{My; JJN |yԷ{jfKVW:0Ib%TH^-\ƁFb1u$Nwk?)ЎD+ l~KGBn֝{]>, '!6ztujxì:㷆bipS[Û3BP? JBI`i}b8Gܺ|2}Te2!#y<0D-"LD:Y*b]+X:ЕE59PS؈s[rS˳Uﮀp/B]%H4ɼw7$`0[;&9_=M=n}L^5a,y܂,wp n74d{zt_.0͡N΀*~(jF,"zHѱ BN_~5x/.mYTdv>-_hkb#폽Rv L='~Q)='?UW_GIFhV~wb}Ǹ?P%Ur~X7I֕crkKJ3 Y.[X@Tk]Իw# (Y{zo22{:z:0XX LKHh]LlCu4,$LaeYƱ*:oE2GT`&ͤ1qʟڼ#ucXhn2eR/A1]"<"*nJ,Nw_[mf8*j5eS06@qTW$Gz(}0I_.\Rf49_ɅkdCK܅?tzɖhc5z/toeai,G-I3'PmJ%L~-#xƂ^ꈘm5+jFD1+r59S Vmƿ&.f$ ꖂJ2kG37HKR\DU/Aʴ0 -Q { ṣ _ċ/]DUUcWa52jn,"(Hh dz{]̊rd\gi :WͻA%`Î']:{r>5xSE= ;+.y8FC5ͭddaS2HTܷo!a=ReydP WzD` qU{:/YVgADŏ+t<(Cyl0t~ ؔP~y9(kͥGxuZ[sU|d8jhOET6PMx VITZiž uu rA6˄3R ք$02L;(_x[s3넕_@2Uby(9?p*dؾ`S.4\UPqCkH[HW:o%fqCk*M/{K}nLfLY~A>ƜAsqaAc÷ƞ^JsTezB$SAQ:K?C44RKX8S+3z+tdJSf`u?dD02M%.M :,y֧6o:?c8^[@j^P0wA02~U~]^mTK^6yMSr5#x'܈Գ,Jt1BEs5Kc]f)áWnQtNE/L͌Ŵ%b&ep5"_!dMYYGC鵽[Z8"MGTWE1J{jO+e _65Mr*rQ%eJ`(h=vgzEjF yxtjt4EmC\L_Ӧd!b DFq.9( Ku<5|U`]̿ՒqG);[C`=O(/V-g]ujT֝`ȎqơePUa N)#8i ˪\&8jFHY7u^?cmCn> ^ GLFA1wc" uU"?X7 5&/%֕OUé6I ǃmdM7~ u~?I`Ohoe  b{_=V|Nmj/WWeO #Vsk_ۉ  {. {C)mv FpMYZk CI< T"?SU!jӦ,U3tck>ĭtkT0t6 Ma~w)5BחncQ:B'^hY;AU܅j5a?{ew{v?V|0"ɍNᗚ g ˴|: QPdR1S׌RqWuJ^sHS53up8cŸ+R6II9bz^hbZeaw$ځ_UB-:v\h LH73Rt?DEoƳ9k8A8.o'YZ]1N#' (v 8-ڊ[ ,)E D2<^5u GkJ?-^$>O ɨWXl"nˤ_e_j%(1@?&w=0ej#ݝ8ޕ_x)Bʍ~]:3E+C"Iasܗ ]3ԗȴ67#xto7X2S#h9|h?bI~*Hڴ(uau3>Z<ᕸI\=0^ayC等g Z=Sx|N *%M˦CkkwX/н9k>d~P#{fCL,Q#{4R ط<$a>8aقc&CRI.PS #]zӪ߂(]$9/-s?.6]{xD*`Di)}b\/y.%u"5-έ;L-?0IDg$i-QDb_gh^OIim5` -P7 LoY}9ʾŖ[ID]Q8LZ }KG!# 51N;*0ũ;*pq. Swt.%w;4:JM]PY |s0CaЪNo3L$gAC c 9ui͋xAka(7$FMJ@bMmcu5xRM)ȜP Oe8O _d_:/`W"(%*׿6ilo;k3#Йu ԏz'^.\>6vFl?.њU*6Roktت=04uc)#õ@*˗N 0GX/B+iS;q.(g1 zL V훚⑩{_.9^v@qt<Ig/b+JK+ӴJ}x2 Ӌ¨,vg\ \Xr7e0gזhHP5ph83mqkR}sU3 bQXɬOVʩ!xfb_hb/+Ӥnm#Iު}=m/8c@<Ņެ;t~֓y U^h1Аz܏&A9o|<ѴL-in^qt1HZLicwkl>DsKzo&@8E!>gj0CіIsh.Xdѭ19x)7ٺ3_.G©W"\K 3ך]j|ؤ8:z^G95 &?{owbi(.; G4y;08B2DZn| bJAvqm2JMH ylKLm:y #y oZr+[{#Fvv*ZuYJ;l3C8u(=F2p(E~],tLY f8QI9A3|Q7|$ U-0q"겮%'8B*WykFۧ!A*l5{CCsi<='d>${}GȌ&x{iG%Ӎ=lp2DܹtW6@ᕥoٮe:"]E1$䗹f$.ݡ6']Q9Ox/Yg`Q+DGcY_ߥ/ Ӷv[N@4|<!=ݵh%m}VA_䪂5&̵ b52gTklUc:T!fTŒHi0??7pwaNi3_J\y[j:wzKW wGCu{ś[\PcVG*&`eID2S%03_hDPwZFy+||o?:@[wDV&6|N,zLj/>ϤL]?:(J]q&{鶌1nw2H&C#cK40eHm`厩\ ӋQjJq 7[mXEԠ7IϛujC\3%6;Rx^=H$Of}RN(rVPXp6nqrBiY><-ظFALgޞ ,PxAkR |G؅ #*‰<Ɲ,\x#.ԠR/ ;=Pv'Rq*ݩYlHTI ٚG[=;NTIG jܼ5s24FBH^'4w>CDw41 g4s:D3rp%ND ]E>cWn<$V׶P0:]~jEݙ?D) Q߮SE^_?Uq韭f0̐~0!hCyP(VYB̈́KrD-7eӚQFc((C5iv@H4R݂* ن Fs o@kdtt.Pl쪸&۵ hҵt.*[֑!+r!= ̉U;5_G8G?+A y9^'8ꆇ/w|)9n*-9K\"d "k1.(o9Ŋ+ Oe[7ipq#X*G#40& "ؾs#GIe7>' şbb4ڹ cM?4{A~[zp▎U*6%}Nx^yw&aa:܀(B츽,Ɣ$Dnwfozg|ܸafs 0MUfdugLT{"5ljy^$18?]geW´h۽M@WP-:=6vX@ 4 $CWoǓ{-=Vf k 'l)2Xޱd~O6qo<' 'qS%,%1 ,>1~^;_0 ]En i GcsO[[4*+;MʓD)3D%>եB#@UE K<`JКx;;<|A"e\l+s@ѭޱiӫ񾲊jƎֲD)XUT+'1yRxI&ƭP,tD<6:@p&T!Ukvf&GkCQ@4H+>e"ӨQ#͜_5hOS皓xԋIvODg /gHهpwWZU0u4FKR bUpSel{SuLYΤp+[P'5b}[Ƀl\oFPwrP9Z"%f@El;7L~̒hkX˜-qAA[)Dzd`6>4g%2g"7x#K=@TSء*02˛yO h |PiY u~k"h܎Wzc!5'ԑ:9T>ƌ&y3zu%[~"%'Bte-#nnzpT0!j`hl6z_C&haTGl(W: }|1\`탠M*^CY_Ɗ[M˘+~bHXu3Cs gv~`=NN RG"I2_Y+XBnp&InЏE%[@+O 3)呄b`Ϣy(|wX>gDRU({YrvH,Kqm~l9ssׄTg9vıUN+1R~tc#+PdH)Ayf"|_0%>%c@aA˳C-[G4LRFQ5}?T_D!, ngF|W@^[#钿뎸~4UZQ!J\ꬷOS)(E]ZKx_ B Yq }pc]JTv7is'ճ0+ٵpSU3odS!_.\Sݓ'dȰlldhz/,ԺaUx '{P,Gz~>j=76n[dtygi9|ScRs̔%a$0|j犋QG ;z|oC<wo@?KQzw˖b>UV3G X0s*S#UBYpuQeIB@*(oq;uN<2dEDpPoJ3$P@S5m0 MNcNZN]t8XAOj(mSm|ˢ,:x>csf2ײ*mOJ yfQ7q*[τWt@= Y%HzcW-]ى!&)tr Jf -j_7͛HrT>("l˨3-poi\ Z\M Q+YRJoGM|xd6z Ф`uS)ѡ9f KyW*"Mb|p=?fR#2̴-p*A#shH<-=ZI!1g*)\3W >,poSQ`8X#EX6xy67ӪW6G˘1gX7Q0' WsogH,JeH1j"t6l z7& qX!Jshc(DA̵bJãQ1z'4ޢtf=҃u:YiqӃmO4jSsF`#/QHVYd]բ]7ކͽ?_!E?>1V'$# ϊcU×Hd˓Q{:7gvH=V݊jBFD; Q*ًQH.4W-yCbS-?cXݭoC~`^OiOP餈Զ@|%R#O;MT}374II&$sU'UW/L@+eD'myA@M4];NQLhkv90͍.'ZHbG.M2WaNqrdG@qgw.zu9Åt[C \4i"v-{nj1:Gu~FC`d4MP !*YO\)A?i,0 n#hYW dU5Hz--S.6såvĖɷR1?0(mډ7>g4м7JEc>m"1ްU\4ŵKB W$'\$XqP`6U[A/?_*&+1hlMSaIQsWA@-WNe"jGj JֿJ` $yU`O^8 @ H Ug:v^-cjV{~mr)5GN0w w1hxd>`#= `R(̟D6saJLχ@x:c>3בX+@$>zFNx&ٛ*Y4:jgډ\|\ǫQɭU zfB:23"Ӎ@IDKD7*~/?-Q ")/Gc̰Yk(=?Nk%^, $JzڨZdF RCziГv# ?c:yR^i66Roʓv2#SRtt$/n-)7 ї!vHhḞ$J]Dn1{7|`+露-sAߚuPYB^5GTgFTx |Żb"C{Xn$hRxla>\[ 8M%Nj'D8fM˟0e-x}H0ti:=DˆDPjo!Gc9M m+Dkf@LGbJggc]zN~7?[Wy]V n!Sa~ 120IX"ƭ3R[bڤeYx|Z %|"FvpY2=SBjt3 S~Ru$L{:/ecwi.ߞ}sW\~#W|#Â"]x\W~7GEt g{[K7/BSm4&ݼXo')UabfB3,7h505U]0O.!\X${˃H f=~>7غv' Ӈ0"38X.`@ 8H&MF' v^ sՇɺ^_ ,)Uj*}2ee= e¥[QC6}<5m2V>4p[eKYЫY"O$e5 =F?6ePs)ڡ 33 ӂ+ۡ( \ݿ,\HϞ磓qRAzGχ'W+@%Vb)_nkH)yTx]rАkV1z=袮=J?XUL `+Lj1c;`e*T]0k0ܥ}2dA OkQ x ='faiTF^y=}̓?ԓ`9V>Os*?_F]' .ǦIh1&G6"|13[*<4΁N;ICcgzn-% U MR,*)O.[܁)W^O| #PJ]+pN/F/lEըNL:_@&m1y?HcAcI˛F%P6YAc/=m)jt{\Ch[_#"nP7送e6j2aMcrszVL bw$UnًeH.P CmFyⴐP.zJŹpjcxifO Td ?z,Ӓ]C vڷS79DjFtsLjsmqZVyލ2R'O_#,A vSĩ Q}ZUTCB A'bT թ>}_D,&[,/zAAB+i~¡A$Cie֑P>QG&Һ;ap!_Uw7*+F;=bQ2N1yg]9wA Gϣ2giEʀDAభP k72Sӣ}лg-l|SZHz/J&t G 9Y*0}b¢0vqdC֏ry v۫r I6njNOr/Lvt3S:EHm9VGe+}RDw}JyJ걵S8xdɂܦ7e (%6< =Y\FkI'{ؚT͛/$&0~Hl3teǟ>KV?%vx/r+>^ds*}ȓєG -p#./+drgS>EWyboΙ2d_ds Q]]Hy}"~cVZ֌ paS:NX![ k.hj8 p nuh2fjIJ#FV$׌^صU`֞:g,˜!өQШt>m]\AEL8r?s|NV!XZ>j=8lҭ2}ۦJ'~z$+С8yW}wuZG*0LDQ| v?2>ؽ-01A%[~M u^UgI<7˲B;*J!$USdk cׂ156l.s />;c6߮t?* ݦxk@ Ԙ|9Ucb_S bM1IFS T79GH-ԍFlIH嘔 13.d}IP[exUDq=d%h=CxF绤?mpwDBsfχȷ2g@ѽqBԛ}zz=pؓ RCqP"MWŽWUg L(G [\HF27K饲n")t?@´6Eq|]+R&!O,~~hۭPBh/ܛ׷Pۣg2ypF^9 qfwd+AL ?mQ' ^TbHà[lәIvHQTc1]Q '95qkVooDq۹(Hn0Z`.W/WD Qp4Zm`#LldTu[{f4fuL$Bp2YYH.Rߕh < e1K58q vx܀C%N})G0}Ɖ7hCnGP\G|SP(L]vI #M8.V8]~_oZ4"\L:9l#HyJ'BY}$FC:_uʑ;se7 %$J<:eس8W>z4)hP_# SRuGlYJI;3J/8@{ҐPwW c}c\JHj *% Rw.+^uz#Uwz@E}Z* p`bi"q qJ>c2YUPy=spF*,!,ƙ/acbI˜mؿ6Iۃe!/'%۱9=] k p̊F?ʨd@7E p̻ h ϶tnrHMjPw~/h[V,xq!Ix3=D+s2{hO`vՑG8ޓ^bfc~qsep|tRj Y7 Փ$&ݱSW)*;nx3("9K]T9 !, xϘ~6Ey C=G߷k9OU5F}8x?L1Z܉WDL- iCGO dQ2;cOtN 6LR6* -sE5I܆x=4CP>sWf8 phhWO16rN\HPHJ]Ln[9}F3E4[nvv4|GJ}P>HY|2x#?o):f1mNkԣYpV/,\,ڄMf=(wD~<_3Z 'DeU7U#I0ka4ځP5op<.QcTK>T7hgu')5#ZP{897u+ܩB?nCߋ?\%L-'\΁D;_ӂd%LA֫uDE|||a"Y EEy ($Ҫ#:Ƈg\rdW¨UX@IHP#^q?o^i?qҋת ۤoDqqtcnC;}ĆY ~BWmfB`Xg 6H ʔQݷ;_˞UP&gH*ysA1mمVw#DQ IyT},uԃ*-N!>4qA]γ/1k낙6mBb5۔Rًxxص If(v#fˏB.Jw87ů쫕N^I"=/to^i06>n*0 u4ΌDXٍƉ&M+5cPs!ĸ1"Vtb벖0IF)_w> Gd5"c OA+Fw&ME:`"4@ǗL$pvIg aTS0 ieQ.xy \+8C>PZG{}bWl]5/T̙j{ⶀ򁋑uzw @џ/8èSZ%v]>BTyM^Ā\#K/Xn`!H9ғ|U,Uaz_ыjNxkgUB8ɖ+j>1|Ck":UdPʓJ6/6?r"8mKC-oHo;eb@-R6p,34:%M3)$\^E~wZ?[4G!kv`̆KN]>RN>UIEScI@u^w["_VXjn-6@AkjD&`g>IfRlh}#ӑ \Q/IВ P=(>{}#ՖL$Q%$B-APD\hu :CĔy. @Y!(IWZXHnpN $/J$²VlL!7*C%wC pP0B$21oNO&ۡдi}>qZU'Oi&hr t9Ray ~y@t91OElK%VR\ ,bOM䄨H2' _&D_$ ,AaJմoyC^MaNJI0؎ 7ZY㞩 V>*Fulm3Z6tn>SIS{:Xxtx)0)_Cp^V94s7@kS\^@#Z ݦT؁WPhXʰ7w$l,= b+{ޅ^lJ嘫=K3T| 9@fڪjGݿ?yV1/iY m i|,6_|G(WY"֕Yk?,sa4b{|G2/ BUl홀2MBեthxrD2ߏn+;VH.LG[M]~3(9_;/wuru?9 YbZ9{ύ5 0niM3W6 ۭe-qsl]u~*FC h)n^)ю&X?73F>^NΘSS%?Q#񘻣'.չWB؆etuмa[u7c@Ob `Y%fmzbiE|yS4U \=u;nf:=gpdr|7]&ᖻ|al5I[gY8L."ޘVڏL4"^ycQۇe%IB L8q/&yOAj)~f mx|]|ɒGއ6ku8؂z?ǩ/Y* ``6}IBV8"8Ur$J. =V)bહY/\)ozYBidj6*2 8hW\d3c`T<)Y{\:58w : ÇƵFM9j$\\.sRb`wI*FZrE 1587.2 XO]%֯V6}_.h]Hٲ2(Y?Fr;E1ۏhfS,e5lAYW+F{WA:1KSZ#xK:kt)iʗ\RlpzzvцHnåOheZoM6B Εx\ot6T٠{?ֺk=0o5HiyJ s :wHDjuJD*/G f*b>8{cljЀ·'KZėj0`}Ve1DʖcgdjT=vѢ2UC ?84jlv[fXG$QB9,!ǝ` :AX<"@ nP2sw4M7@7˩6QfBtIir#  \k>ŸZt-]z/C@?'D=tupkG#g:>gZS#?k1,gEr'6Y*F1#OlVt1 {jJ?<\e}}"kVEñH{䈞F_zQ҉qn87uY=֢SdMf?O R)7<+)- q{&*>ph=nE%~`JZ}RZtX j_sHo=vMP2?lP7`ps,Ӊc|w{Nc2 B'=4tCF(W^Rv@*g?P0k&X($F$- :.\(, !;5tvcyFj%Dhf,,׫n7̫R!uʿMǃɥz3DmLAx;Qڳ {^d }UV09%=SHԖi'ky+QQo+Y9cw?G-WV>B 1e= cE⺟0q?p^7][R$um4Ez\A*cVay:2˷6-~}p̢$vxBw]J#bƩIC'8 v~EH_\!Edl6:7$!4IV|OMUp[/3A?S.|fUץݦ4 Ő 105#J[h\À6B[ޏd„c1G˘.Cu0{@H%tÐݥ <\9\[=nMQ(%.YOoxs6 _))uP7A7Tוn0Zh옷QQhJ=N[8fʯHT<+^+dnAŌ|9|`~WUf)" i0St101yU;[dGFkzyi-ˢ/y=<fv wgPМTzZ4ZJm s)gL5#,LzJO `W2rA/d<$~^80Iw|*MjNvz@0eDa>H^}{(˜ҵA, L%{z+ר-ۆPS}e/tg`*eggٳӮ&!OIV <'*ќcS# Y^K+\0;BL5cPP h{x{N1L:ֻ1RWC/>ľ` 4zRLy9^byfg%Yl[1w#Rl{nѹU>knGdں?9ub23!XWv(q)l#U%x*囌>tn󾊵6+8t*%TVSmJoauۚQ73篥Pr¾X uArG*)ixSh@1lr95K@`{T# xa\Iv]@Pnۍa"J?6IA#A1a<$p3VkW >0Zw;|]黤^h&y$<,vsFyNfX/ Zsp DQls[0QZP4;fhhGSeH(т>=TP( k m~TEBUYu'v_.V_faAMr8]J;G:T1 XzBq۟0pFVT=yX(Mf99+.:O֤`si fρbf[Jag#B^E.(9bKEo3Bx: ~~~gLC({p5ռҡD"UA8 1*<$:A'BN,V8o ,ZzE1txmg#!%QohHuWo"Hcq U|:_4  :>TçYZ'dو wh \p>^NCR' G ?zh KN<- g܎呮JLu`,ldHT~#LH6ceDwұ,"+Ù$R |L F m4) xpdwg%cKa>Ja.cըD~#Ϳz+"nظF&G-hwYr'Q4xIREHkށy%|ȼ0pS[m1##$%w*?R9D$ DbdQhaL Y(5W k"DmJ6u[5$wנWz2 r56WRkԜEH)ЂM:m.ز0gHl49 Kk˳{]CݦJQ}~[tj]ÿ ,ax[S杷Yj&F4 Vu>#)SyceG.9{*  P5-OjT>[`kx`b-&[d"zd1UMŪ. XVA/y`@}=ݽ$V/q,)\ W[J[4ʇaly#<`8'} -Y]g0ۂib6K 3QYΕjB X(#,ۅRh@K/$-%8m_soF~e^شf=ZlZ0C?VFBMIlCr Qg,e&)=tJkSm}9z{4F6ieB/P)KC6ɨa2C,8ҽ2H1ΈY3C_qYE:7 9ؿkOҲJq792=*-ejZOh&K`Zzanv_n7áݥ \^ Y,. >Sn/YrG +3hS4^O_ $[{ (:nxNC< m;/iVVNKGܵN (%$wkGK?+|:ȱUJy?KZb$Q(2c^$./ϲ? }4oF㪇As:ްOOn[#.tn&upg<((e'X ¶ٯW~7DwxΠ64t\0jiCYe8OC>ז4u<whAAa'=G0>3;8!z:~-9}ixA$.]>!D5+F@\u\ 'd~X ayX2?!{qv<9KBuȦS܂GOkCr+iIX&Q#יl=ףL% I^wI,!OꞆ0,e8j"(@?&rZW~ZZ[F~(q?8-m2^r,8SYJ}-/?(S~aU&X#- BT7璁m|=&Y x9sm7S+bSSxUEݯMIU&4lkREd+L4T}p2 mQ "۩ᜲZ%|٤`56tRQ0`܉=ZJ/hMZ/kr]LyIP}S Fޮ MR0-xg"zeÎrvj3w@7)̖⍻#Բf?мn|TdHY [4$@K P;g,#ܡ'՝t揌ŗSNl>sC qUa.3,d_Jf%2Mg~A2M"Pp^1h_7SBӨD 3Ժc?+f9к_,4L+1 2]'Qz!ڑD$"'Q.kG(.MEId 9sODq 9#a' iڳaN԰< ϣd}?P }Z؞k:9}'_ 8ᅨION $E6d Z1:}M|)TN"WuT>Fi]66_l̥Ӱ@\~G(0ɠO68J# 9 hJB4,VԣC H Xυ aE?1auUxe~^GwR%F9O m{ B$A8o\\-#{ X[-i݈p<ٶkƆw ed H,r?DDlm~M,T㸉Քĩ-ZFD%ȘZZ~Qϲ-$q#݆F^3-1[L:Rɽ2 z哯 ~.`A? "{u=K܋#!5Ic t$lzEeIlQɜ?1)҉q :6$Z I&j!yUvuNR@/i_bQ{!$NC$Oe˟6#m3A+m;L&ؗ Ku—Z);$qy9MI&!mХ-U i6Q.p}ULjuijT+_6MC`]d o}rew?6T&Ñ(/'NJ1 KNf85A\߀JG~邲E]z谟8'xI=TCJRxA_ R}84yhum瘯Tޫz쯇;L M,V\Ux D^OlLJd2jXjjiG$Nvٲj@~A^r^8vh"L@:ɤ~2C)Tx?r\-'23j"Pdaa6`5Y>$J*!bFq nԓ- -+Gbf׬tWMkb1.۲4O=P<aTu1{"~ 7^tX?)`%BsI#Qz*`mDA ƈ~ra8uqB9Ąh.=0=Nծ\!^bzJڤ闈uWƧ$S\>C\Tq')`aX!i*207ȕ[jiV )%T(ېAȓ0(BtΝΉ#l3WH}{6pABW#& {ZbFL.` trWx>rӱm-}>v}v:b;[^⬵Ep@Z'=lcPIPA\+Ry+mE\LSLp V=CS0ʸW)pzqFV,bQj8yH8[ذG`Ꞓ/{B +>Q!(?4#!bGLrк2LvI#l] ?%73dYC7e /\s,G@ r9t8W\&R &ɻ\b|`@^o7]T(fɍڽ 䄋W8 S! )3ŬeXF9Iad}Iax 8 =c][LdA$9B>~ϐE;Q471uC;kCfV[u)پc\PG!2l'yẠG>r\)ц_(/sb}Q*[Uc缾Ã0>QULy:XR=v!4LN-\L͐ˀL YR\0i pip)ZJ0%8tI#/!ӡ8}Dhj6ڨqdQ_atfW`PuMۼ+^uyh'sH.h01ahG 3C `՟(GqiO@gsojQ܂e.V7hYxIn}0rŬN1lU ^Z70m󽟪l"ΏF o_p;驟5W\fSY8wQV~kUp<2h;[n86!_3CFL5؝a u6{W[.TZBFhD3TSe6@{iG=6f KS0,쁴6d$tsGu+=132.Oz{%JW\X{Thc] IsL`+x/}޾# rs3wl|*}?=uE"^k{\5]8VNI#9avق'PfNMס$&!̓xz6'h"r-PxM\ sE#uF^8Q&9]JDI>S.sۄvd*ya7hzcP9ʊ=TEG?bA5q&?N"PI *c{l0v51zUtJy[E%Ɗ +CEՍ X]q+1b_/aг5v9(J+DrS+P 8NYK'z(EfyU3THWOq,jyqW/v!'zd:zXMyҫJUZ涛u+W+i\_af͸ hc7Q ;%x{u(>c7&,RֵyT?8\Z?^ ב΢DdND'BOI`/G}X83 AADDC£Uɢh S!A` gD'`T88ՌTw{f)mQ\reY}e?V``c |Ձf߽U8E+RvP45%7#֑CK5܎qHNu_chS,[6C\I*~eV"uLt@ZՅ7d)s U7\peʿ"7Zb_o#2FBay1&E)4ZBO]6=v*C©lAzۄ[_ɚnc(Y]R禴-Y;& Rz~]LO)]g ʫ:CT"^ᣎ8+Yl9x ՕU?@Hct L ]SgZ!bLxȶqyٲIԋ dJ V|#!nO']ڃ>et>kzۼ!r;*soyI*{v{nJVr2wK#G1lr fM14Ex3q[+mUf}2Lqɸd&uK{a~8CAsLJlwr0>Z1oXwY EIoWmf#Ev· 5v9#x OH|  q$dfov1} !ͦ &9y(7 {rT|4tW-e{thj=J2t. O3rE9t =LYU`AVOu! ow{w7 s'zF:Xh"]c taގ7MxzMDj!eS a;]w2Gt#\k˰4[D[vrh֙Ll " ( dMn#{eҥ\9\kƱA!{8}Q88vA~~mNwy%ɦfޅ6 ~pCyX+K o+T -y|F*B({4 l3, ·FHk3E[lb49  1ŊJfn$"oۛ,%2>=$m*[]v&2瘞*E^NZv 3SݏQ Q\0Q$Vf/rl3c)םϩ)d޳ns3R36!XNk?2Abs_yMaXGݻqL )'MqGH2Jd=K4h?wSzgn\w2ri1a8ɷ`WJ*w_i_= }Tɟ/8y4rQ&VeOk b"fL?an0ן:ftd0w3 4 D۞iNB2(?IA䔓pncN8Jx/w#{+`M nnWa:-V禤]%R0 Z`m:[Y Һc(yDD`2x`15-wf?%G2,K=~3hx{4f #JmkL]HgFߺ1ڦXxg?i{]6dW ;άS2evd;0z6Y3s{SLb<́#ZX-_",7+G_q ?%uoT/%Cbgx'ߎS%Fvɵ8SnbAsb)-XzִIsJ _u4{W9r]TOlG"I^'mW^.rsEmA@Az5n#O 6b 3#@Fqr-l ӜfSԽZҾ0+2`[84?n>($#Y㥪I(p/Gl]u^#kaS\7}zh' 2㕑+lL&;wj2̉ VHEBŗ8: KfYԀUB ̫%/koDZuKElgJs˽M^[,E?LQ,zr檸ݶxQ:>e;a]bIcIGjz;VZPH~[tgtsdA7o 6D@ @@jHQqCͯO~m mEcחO 7g@y?#n ~,8@Ք0qPj زZe|f6ll)XphF,Rp@`s B:ֽJ35y2Cw ten852Em 酤V%&fJw^VlАKR]KXKO8 2fI50 ~AI!1l.{-pfRɩ]怺%Ċ 7_v趠RĉUK}5*<TQvyHq^h%XNOwm; r]ScOF,n(#Lp/ә_t֣=E1`6fRژo0 f0]4/U0}Mh30ΖzjՑͱ"sDhD%"Юn:AhөWTZEL\)N0/NvO=62ܚ)B:7*oovu&D¢V7ӫmoU}R{SHpw.7g0!}k ;$ԛ lnTXD +,+jז_.sfX>wqV.aBMڦ]t}kC3YUͅ^wKJD)_!r(Ȥe$bG7*dO*$hP~IٙAk_j_T^.+ߠ[f!fD] \_at%ڗ>gg?> dam_2aj)@Kn A-s\{Db+c}ԈXxP}Ep|Y޵V?ˊeGb}j ? -CQ%Qq!6Ga_`h<+ ܞ;V`BY_lU֕@ASw"`2_J! S[Ne' Tƕ'wrH-SNUf9ۜ4$ ߫AN—٨\enG}bisG #d0߮bQ$ Q9+/vmsByĘϰ}},5A,(0õaz9ab+zKŀTI.M4lM{l~.vMe<i_T됢%@6&RMݕ]ΫHO{3j6t:hM>ݺ۞oCk?GCaߊJ$t:Uv ɪ)yDRڪP]"`R O4&ƇRڞ\WiX䭳te`y9drTiD"I6#+/` jъR rLڃ4dqZ΄ \ѱw_:Qev^"6oUlPp^f>}ryk+4R vN[9O.~-uwX/6n.=Rdи-ّgԹ2~*칋DI b mF4Ol|=@_`ύ^VkaSĿ,>[6YXg>ߝC/LGJ$KW=R-dr?喎\:A^>+YyAB2_j J* 8F=Nv@(-6c#tn*|IA)t3]%q>q *bn v,,@ ID " u.CEO6Rk}qג[n_ӝP>HQ[h%6跻8+8_XqB#&T=KzwQ\L @L `Ѩ*UMIh]U(v쒛{!>H .ttM@4,m. z#3[}C|_6s]4xޟ-pgGoȬ:"]'95_) WRzX wq+p%ׅ:8V^Ԅ!sRFv0/",L?6S2*5&*_̝f"hmy(!'L](%?WPR8>dmr_ cAo09D`p*S*.,H|4#2"3Ƙ6Ij.Fp:F.(ok-2\{߇7}FKYޠBWLϨga ui&;e,K5:$ͺu=.&$G1ce!F2CI&ȸ8/ -&UO|cƫ⾸g[{)l/Bb /eI;%š*Q umh(RFAoƄ(WVH p%g#U(_S4`-HJr4ΰ(<.*RB!J|@k0ZxYjwX?Z!U5Y&T95 ռgX%5 Jvq]|xBG؃]MB45P=Z;\̇Iq.abSZT^T͔#cߌ ן8!jv~ s|5J$Ӛ׵8ͨn##UVRF%c`D L&=бIHخa~C7{S7I(?Ṕ=OieZ(A0wh+Rb7cZgMM"̂F1κ^_#S;cTvޙm) 15L2)`jCt-UO5`FMbAt/֔FCWρFFKlL|rz_i"Et;+VN b>Dف!z:ipin}(̏HU{6}E'dOل2 MN tnu8Sv:yJ@`Li#'' ȹQRI u:(14Xu$s<?-oI5\`%a:Trշrt:RpځIll>g ٫`@@KQmcGMEu@z}I94=Vطr~*['_*ޚ3?1i;u!K̈́ϵ c[訯MUeaΊ3KSyf+k4{,vfMo1)vb W*M֥i<&7W)GϚf'ҳʼ>!}|с~.f~9tF q/ 4(\p -EWPY4Kٙ-R;m5ʷ:dmq,50⽎P!uTI {0H5ݚT_:%z-o\32jSмm 9>wVXy9r pUS~ELNX^ u -Qi ;S5 tc[x[(-"i6\yn18GW.2A]݋͞t3Y$Z0eupz=aD0[M'.w O6biLs +Gp N8;8P=UGxTCw<*/J6~3#ݾ *D<]g1 ]Z;̤.|߯ލCEwHU%5+#ӣ??&Dgq6x {f}LU,r>Bv?CM3OJ ͋ $vHV7"HF d'1Muqګ2~I<^%MZc, R:%<0SW9F*Rt.UT&nf2)9H(@M yjf᭬k8ݶ<.ljyNSIüs Fim뵸^2YDz!,ͨ@<5=tdX@=HC覄 #Q4!\v W둫qkFP|QNS`_L74i@v&Ip4Ńi=CCd^ a4n$~]C/)L/LCM[Tlbi #fe^1a*L/ {,3 YVJXzwTII)o2 yV/VnIQ_տ.CaǓ$N%jx){ HA篐E!w R<&ìƜZG@Ъ8VД"(R{흸PNzUMfR\G8k&M/z,sVx8l)$^9z蚕٢Y=S .)yD IxAawf,C=N)%Iskq4DU:1,_bgGKXWjD+?݄٩fVzf1C D^I1uj[㡗,5G#r+{Y9h/^Lpt&h?'rY*u>X -Q9?7nZLd|\#14ܶ~^k=Bf&=WH5ú9"=21?KiaL[qb3W\ଯPVel}E.h8f$Dh(4uk7HbsS`)Mg8ӷG\W#9|C8"UO&>*"Cuc5 {gh'Lt6FKz^=s{gGI<_^$J? @(Kq:]h@,/& %Q!Bl;j,/]k &L{F[O:͑ǠHj#?+Moݶf&K !+b  VmHbW}B怽P5?It]çJS>ce86y^xYLi8\m^CY,;@zOEDZ(Ѐ =1>TzymdwLFTe@yX\qI a ,GЂcۧQi $LE?Q]ۑ)8#{Hq߹afH+EruZ:R1w/SĬj'wB[)2CB~SPYtkHav !/{YܱNdfa1%}S>_##֫v+!V#^ÿLuu 1<>Qb傢1nCYOr?Vve -hfoܫ;lS $^~h@D8Dt8\I4tg}+'˚L_Ɏ(}EBӦ)y%_ "cXP!1w"1nYԅ,NjPE16|u#lMXޣ99dJ-ƅS Pu),x܏FKCzU:8/fV>e, f$1F:^ƥ hԉPn[shp2ʟ,/K[7$=2qV O`(sJJsi=9>E6װ(E EFr[imNd ,s/ltlIkD55gJg]v;]0=>5WߴGfr׋jvn#eh6Tc+%߳ҎTʢ1/ }Ü* WW2 {z p@ֻӵ 6<2ZZm9UVeʉ A^_e+=:]j{)Vq' Uٓ,fy_!ItM5}1N_` UPVBԳs0j6o@hÕ6ߊ3!h7Wd9MIvW: q6s67v; ߳Rp01+3mEДJ,"bejf%pc 5;r]5oI+m[!%$PE6K}qPv%T? 'dG\ٽN,ܹvKS8$yFn41ju{; Qq7" Ƒgډ螶rh9>P2G톆bm7rw/aKK2=n%}gsD?' b׼s*&poTjk(X|+{)/eK췣ੜPhkH)?*j)Ȼ6Uz8A炬 *>y㘄н[&xXa!^UxW¨cK^!'VC}."-җkS$xE#5? G2q9mD}S(=M%%n}hzwuBz acT9uJ!N(ן{iKҪ 3'WtPa0xMEbakSrcC4Kh7~2\КO[m6)ɡ!ל#ٛ(͙ eMvq(@3޳=|l@M€Ae ga*TL*ϻP4^h 111C'ǝ/6wAı_blF؂in;ᚚho_ gm#ЅhX#JDDS&1G3XxKXfڥ=" KoktoP E~jм{ؒE@Qplw7E,&F׺OHɾ$ZBhpW^x0=`5>`L~staEig|,. ӭh]{$w 6eTQ.N ٥p'SFK >$ܪt#L8{I5rE 4Ѥ (TkG3E %g^sVh$ĄoWJ+/R%| OZsS#!&&D_〯oH ?J߅K05EFsh5i&h%\ ms= Z붏zx<S )GKc=i Aݳ]xI1}#G]P{Zr 0aXp8P{PtmSM"b7ȼXLzyw.P dk*5!'><'5]{FnA_)ʶjg}\z@xR`z ܒt^ KpFIo@Ur=3j6As&>ƽik =a-kb[{?y {2{?;C5M$KĘCG0H]am.xlA[bS"Kylg0AE%رm$f;g1SܚB(>M>̺a?2HuAw+l'eXD1Ud#MWF݂(*IV*QaMũ:\ ǕSX56wMK>#RF&Om+008[5"*=fkS|gc# ƴMQ_e aWHE HnS(ٸxeR`6S YxӞ ?#Ҩ0a7*)TMc1 ng-Wlzf\O;nwP˔/ rDHQ6u, '&!%_cN;0cٻT끳T.ś|x`sPZ@xwo[1HYx>,&I)16_rN1b2E2$TT䏧A`)!uu,T?2PٞlE2F5|l߁kTsM|;Qv߁!E^vr:'hIժ9)bնяZEw/Dd/)m3 ޅoE Msy[:d`qWzD)Huz8X72W6x7gJ-/:^@d-^&GoaޗUG9iv7rl·;_}˂O ܿ4lSEb!,(7RK>#i`H6 Tǖihii$*dEз23K54l J瓴 DK_㓅hqܞes&e]dP]*D.X5ڙQm2΋&lai`|71q&So3xHpd9}qrQήȽJ-7k_atR +9*Fވ. B/&25 nEn,!WNjcR%ʁ>#" a 3$0qć4.Qԭ@ {3SCO9S_,d7]je㐡1CN"X%oC\Q?)& dJ<}]c6 :ܙƳۉ cmBwlӦO,br$hʝf8}\LtF3I=%Sxcr64~uޓ %JՌyn$d3Cn:Ke8Â1@]$77*)洷 QR!B*m_a:ǏHD.g+Ze3R1P,;\{Ϛ4Bd 异>Jw `F-O 0d÷X|(T60- 3"mY]pygIڿ IWV XY-<tӲ7ؾPUںHb!IARmk$m +(I:agLkh lZN}[nzWB kcv]%l @jR& !Th:NI;/2?Y&"`+*f:D ~}TG4.}.+0Fd{HML7Kh`rey?BNMH!6ގ&iIM5' u-Vs9-JL,skR'Z. 7a| Ni(><_ӽ-<n ^QIH`_X0nӟ S"Uwԡr1mb(d`A}a-~!8c֕>& Pef5y'@$6Ua{hFWcIBbUцh'`sX(`+P0NQlYL36 O:+w|{L/ k'ūcpC0+l,ؿ7܉'$źQ8gӓe/!WJ'.>U57$B![\3e+O6M~,Rr]zns,Tx| 8 UT e.n B&;!{đha5U_0<#ѵ;צVU;ֶ~B#Tvq4YKi{M&#%6m6bMNO}Ef>R.ZVkce5w4n2:.y6k7d~Wb6̇ E=gszlfQ!툚Dur"sx|3-&,s9auĄavM7Cw"SLd3 =ι8ujP04e&T; z/8 tȟc*}j65`T.`8CM?px <~zfgV洭 m74SY5VXMZ!ί,Jzиֳh=ȃdfčXsC|}y\g["]OnT 0CQO|B #9)D}g,h3Nr|縏tWOjGa%v"rQƄ\'2\'O/CU邆0X -#>鮋0EXu}*%_{pd^i:ܓ, W[Uհ󫴟]S)쎄kg WVu]|~~Lj-VSWQ6P!г۱M@Np~h /KKzhqe0^N@ƩY @s_ &93\M%Sx )dI0BXGzfLv;mq5KQα4k:4Z p ' a)YSiĬ )` l]FW;FI`5̰XTL&ЮDKzpԮcNo^ښI\4EV4:Ɓ:@+`Vtor-mp8)NFGAHݠ$xF!6Jv;P n]Ao)|Pl!Wk^XJą7us`Fƣ)+Q> Ogh#UzJcY0s;p7W mG6\)&@T6!f2$B%$ ^;~Uz4ѫN_0K d-Ӫaڬ|TSk$G7h?uQD=#a2{EŔ-DHX%SRtQo)>b%FK1W$rQzA.Fd b$ӔhضԂc |MrD1鱎r&A킭:T#řd6F[($Y{\ ~#&"*%]pRi۞*kxEz-(G”ϱWJ !L>R*~ k"7! ^Xt%PnU-1&"N’= lmjXիE|9stDv5#9LE|G89V4wL{FWʁ3LgLa 1;r_Ն^ThWZM,FwYrO9줬Ne`bfŁwmUN4fnT`R 4||dXDx$jFuaPԣ Ȃ>^E,N)mHb]!x%z@Ub{qaxkYgNeb"OU6{fX u=&7xX@E?{C҃OcpGٞo~|k/I= KauIvvxXc(b/i+³gʪT`=#%meANE󲯂5Qы_KY닩;'JJk@fH{: |H?Bڠr=lF.)5Uq6b$9d_92>oZ}7,|+ODb>/D48ߪ%rrA^{A1C~ʲ[;IG=IHO/(۰z> \CBs%0L0l0.)b;+W3n|*@=\\'VJ^Ohj'' 5~d:}o)mcu¾?ꖽiNpPOL\> %ov6YbR8]El ɤUg[Q o.v\K xQ,˄P Ύ!@7xP$k"BQ%[Q Z. i`%T]Zˀa^dby hy2 ]8`ϖr'RDzP| ,Xwk@o!їjnR6cr'eﮨ2.+?Cz7` U^c=NɍlSQ13ꞋN(ܒ{SC!m/ǧ1#$ž8!9y HEM+;«9PUAjr:vAdl FOHwŕ>DʱR&/STv; 5a{ jRmȰ[tBx6T- cL;F78g.F/s@/3a6~wxw@{e^']o5T2vjio&}^gI- ~ $Nϭ5]59f<ڍ<d@w^w)߃XDǮ$r0.N4r' z_nՌfVtD܇?u *[BT9DKB%ew lP6%d =pƾK '6(`mdCR?rw{>8=أH(QS{m|9 ,C9l>8Ob!M'-5U9[޴zIA`#liG4o}'ɟⲮqZpGes E_ʨMRę.KGOt!?@W+׀Oeg3 &0g KC9Z@mBH6vYӸ_ˣ&UYIplT +dw*LHt{#z=(pXƤ:?0V7Vd c9D);ZƨA3>E^{T9 nMQi)1t{) 浟nj 6&MBH٢:zu؆{ CmKA6uftǰ/0^Yv!y+j)=iĒ C¶݋79}zהB Fy0M9 x+mab1}xfw+dƩΓD^g{PbuYݚ ĨJ>Uz_qU}^RI37@֜DnLs~<'֣>ksx6G> 2*<1R7?ܖ]ϑ$fU^CS| $CAИ $8:NRBLoYUH>q/ɻeqZd.78 8 <h;oO//O´*j y*(9A؝j쁻Rb b홻3v"n\;[noP@JToq/%Xnjacljgo} YLq 4J [f&%I7e.TRMC|9*<\rxdVy@mW361rTĄotS'b"P>K.[Ƞš m1su B.ߑ_&ckƛ[;g d8Jd) anxn)z0Pb? i/}l)iMQw?m Gv*BLL$l8I8BQ氆+2,qąDX bfpR: H xq@m8xkjYOȫ{c ʔ◗#*>mEU3ۧ'R?pDcBna7DϽp_'zea"ꁲ0Z{̶Lkgwek$zo%4BS~q.Z}#My+5B֟sh);?)ҫіLI}njy|薣/-Ɖ2lSOTlJ֨ d! E%;.U.ie> 1O0Xo ˟ZÂ&ڶgͶ!y4 PDNvvc)6/{,"<ωo1Yξm¶!m1yF@[6ZB}@#ESM`R.#T*#nx,Aw])SG_-&0k:gS3GDy/@!_pln ~˙:kfPڷKumjp0* R ZPvVّc!^'J|k1 Bpj?,j#(n'.ȷk@44e XM %1S@1v[:Cp1m}9-]GSjirG!%ߒn?G(+5vAD? ' 2~gOp|}΅qX8|E_X,INDp,' ƿ2)d!KϪVכ+aש8S^g ݅4@q56JR. */@wh{ܜ(u>QE,J!kxMMD=\Ѫm 4V Sf+ZY]fIdB5m`PY<J/w ]`n+JCx}@S=[†> tJ+86`!uZsZ. 9l/N>/_*ѡr9ӁtV#䫞+r~p49{,uXA@R/{>mszo7(uREΉH̨!zo09 XboA_@,kδæ,S0i~q^SFd1Wd6Ǔ^˫*>aa%|b%DJEb u]$0ܬ1t;;̅c2}ïtiJp(*񾋋Pdmg𐷵oh]jYu V֌, ț#tL}D72D)(XJ/ilM b iٽ|,82#2qi8JVT0 ]ekS#拷7B*cgu3ZԕCB.$\:n%` n%r~ 18*čB3-luH1D`ʸE,2y.ChhS`uyeҢ-pT*9Q?Af>L/4)Z1]'^0C-}؆h1Ɩtj-Ίp;dT }5tjƮ \ԣew74403k\k2WRE5$Y(q_ƟZ,-glrFhGwdCř,7m7U|O)~gQ5toB)0l!ܔTg|ʲ >K]P6џ68S})xsD:XbCJE'WiC/쇷F༟!wÓlHϴ5pCoӖF!92U2B_tsoqғo/%("R/S0?,Fv^;Ec\R5~>¿q(lB9! *סּ( K[1E|d>_orXdM?`ot[dA(/06Y(w")shwK/E8KG~S$A )qO'oz|eRwL7gRZc;Dp$jGOH7h GtrVTƶ5Ug+jx½+ut7 [Yvqw25SZwsy,NQMa' pm}=4_c4$a1nek&@u$ht &?јjVטDtTI6AfF|ڨUIXST ,]o%;Ho8q;* C8NC2׼䍾_axr@* FcN\J D &6@[X;+Hq@A庒zJ|LF^h⟾uE=ޠ檰HD{ B1䗻e(;:1ZA~Fcfpu+;t kUJKզ+,R'קm@"ڢcQ[J 0{ q+lVIDJ nx4Gw@O[yG\$yq8C)5A!ùDĪ2a eYI>x:m :_\!R dƨepʧ#Ζ呑z ^.XP5pHW&z.]DSSNE8PI@'@ S{>cDBA쨷;s,L5y!܌ yD sgpO̓*fIV_Wu.cNB hlxw(SԢ<|\y됯v8;p Ku ۪T!erXF"[ږkpSһ ֟7fbP:3pMF;!qe~JCbmcFWLt7Pe- y܊I0EŞ0/N󆚳{dicJQbtn.@|+h]47m- Pz}3FnC==abejXǛQ~Ď`3І0E}qmq:5?[K Z;ZkQW_+TŶ`WY"ܰhJ<_*Q(P,ik!fS}h8"IybٗH31 WSoNP9 Wf0`jwyOqU:(S(xHe0mIl4eyt+)"+ &@`"X'&+$5q @ka"^)@[CCWX+|ye`_[pr_k6vZzh( ;߉U@ ` Y&ț-kx|n =V49sqdo>xLMRKo^;T72HԎ-8d< :)=/9Ws_^kzmևT'=>u(g,҃vq,#aL2#ņLjd5BK__=dܨ1P;fyRkUiNx8<ݮDž*ǂ"i 9^f^{gMmPsw]%S+Бȳ}W9v8_IӒXƞ\ @܌_eFX*|'f(0sH/͉:i|J^,2:Ze!o"`wt蘩.oSjt(Eݕ+\` / yαW7[QYm8zs\ܔ ;}j*@.`2J' ƐyɋBp a\zYڤto'| 3 . ҇ [N7C p«i| M֭z si{Պ m)6 &{P"?GѬ")}K}LT!Cİz{X%XqR( 51ԉivR5M'0a6qbX3`%xBe}c fM#vSr7&x6p84m'$Y{cfoNл^6>!% =!-$%@[sM5JVf#:)3TH_ˋ?֖ʖ5 6ud3?LBGLn&sd4v+,7 ÚLȎ[BX2HJjHӥ.r~ZOi"MWu߬ s&97 V*嫣~>/d3嶱jmn2M/NcFY['m;̶}сfׇb,[N|{-bu nyOb}I{M&|ORq z$b O4J s4Y3 W#?BzPh\ZkGxidk[_K DʇȷvN =+]졜dhkKB(GVR]ni)_aq9^WnZ & K0nki9,/m3k $=OZ-s@a7 Bm~XwϻfBIݟi rXo2HK"bqIZ'9͊| ( E)A7瞶C2K7Ka۪tfJ4c>]+ - B~߹r˹AmG+FW[z&iY g tgO0 Pt.7nRf0>H!aC \)qt$"d9VZ\α+N :I[ 4?]sޯS;& `V'# ZOD2f"\aP\*[72Y!Z -3dȵv:4ax582gNcNM)GOF'݊T@hO(Ӣ.&}qcHBEp@(us;'ss jBxY߀W?SBj56eTRR6 <_5驞 t3nsvgс`e" 8LPy;}}JzE#+?d\X)%<)lԳu#DYG$?!LmRSuQzPSA# I0sO٢A>UO)޶b.LcYelq1vn+VM~S}-.ԎpMns. SܺxYGTZlT-7#c6 HBX,dzv+YҙST2GN/Qԣ~7x.'QK- ѐ,LxM$X* MJO EܫgW4ɇ讆yzJ:Q60r @=+B~b\l X<"lڇ<_L& e;㗷=Lұi갠<{8Ѡ'w 8!$7l;#z/kBREf;gw[-NHzdj TmIgqADk^O !$dtBsHb,vG,bLZY;<[þ< [nXE)C(FT,+Te3־ch;:B CV/O"HoQE^5ʕ2dn FhĎ s$)xVkI|vr*+6 .tR*_?b‡\X/gp )-"F%q[̷-gL[1<.N %+5G{ nS$jG,/?[mO+6:ϰ6@~JQKXIwbl~oeA &tzVm%ésMX3.~`1Yl7 cĉo(|r"sH2xx?u ĩ~G17eyj3CRz$5hW\ Netx.(`kQy+S# Äo:ZFb|=cQ~*DSҧс£ 7t%ImhUՠ6pЇ0J!N'fhP=S~3;' 08<6}j=ig h2IA R\[t MYR+n]ȯ#iSnƚ$Aq8o e4T@M`_n×Zpsc5eaDML8یA27@O$J2|W-/˯]34oe[w-SܛZHiʣ3(+mX}ж`B8e7rgs$$;} V, -U3=z#zu]V8 +TuEŢ3?Dd'0z>#J_@{/\#MLPqq,λ5T?3E7bT *^ \v/5M}?"e_}ѱqP裀GKYzK]]~^v.{s^Kcnk {[܏t5A '&GC,7K!7J].2eH&3&h/T2A,@zgM԰m^70`q S^~q@, .{@8ˑu؇81"Dzߥ6'_7c+u a.M Esx9Zofx@51{nHd͏ 1U9<_fd"?./ϵYĞeOB-ڟ/whru&6zQXVzTu1 0981N⎙2M,[ ֪;ch@I)w8J,g'Ru8"fa6DQNcXOVT-TX;*}YqOW@Ι;;jzyZdBu+&Fd ax|w7@qzW{Zj-1G˔s)dڵTҞGQŠ )NPr{VQV yUf\NbݍAIj`M-%wG<!u=u;;rYOoQI4Oد@m,eM?x^_KI@=A3c1@>Bź (wS7s=/Xq.Im]xvv弮Ď- =l(މ@kHЉA_QX6U{MD*`VX`R&[CCoxL3I]x~J2FS2TgLh ,{9™v\i]eVPԓje[2 '@s8ÙoZvV2w`u_W~3t;USIL@~0 f5;w7Q'{L q1g[6iޱYrWżz Q7̺=oi8>[l|d8-!M줳ݝFCUqϡ{o^޿|=EXPD]/sB9lL? D]uU0DXnSͻyyE+\ݔSkf ߌ YA^t{x(,#[iƀR!,>45N>c|Q:Y!aϴqRCa%ێ`Ə5ɯt6Oc((~Kld Cmh ߬c,!Кw@ppnDxj9+N:8:sgp\a_0XYhm'}QkW[_A7L yҰ""xiSksġca &=҄5ϕJȫa_!r9<Ǩl3Bx=ӿD\(F 5-W5Xr[m 6Ѽ<^ROnѝ@WIMĻ)=tC>Ņ;-9!m/ǚAop4&Kzҧ+ $ Ԃ>NSTYШ(ݮ!B .챀w*lz%IXyHғCܩJZ=$M(@+N/0y^u< ֫\@& 2ᥨnpwv+4ԪΉӓ-"x(^y /MoM~'(F𼲍GӼVsS:LC`) .wRPiUY8et(r2@,Bg3T0+BW^-H|]"ER/? j/!y|%{m)(+afWR`;A]<%sҙFuwX  g_N Ь4o}Ҳ 74N`8;j`F_BF RUm/W](.Gd q8~žbn?Y` ]ŢV]DY'Ӕ_t|$g&_f\G;I,xzk.[&{] WIFl Tv3Vb<ѿ+ ld̐<`{aQG#;,V fs TAgH 9F£SXk]ɝJtѾ ɩz"/]V5*^e9$CN:0d$T *OPrI ZH2yz?&j+Hb^N#\ɑ_A:'B&R:Q^`s߇eݜW JخeT_q6/6lƹK%"|֍lxeX\{E!wʚ`fD~#+(%4m'3"T,l*Dx.dgSL'4PB^NY^uH1}F w^r%WaR>)'ȴ}NعM^Y'@*5YZ~h$TZJDUAk6}u H*H;~T/.߉(C{>MDL^0b[5{sY~0UOߢlbNRyZrB6o;6o2W+na# kO~AKt ӆUMP@ 2 p.gPgA.nɿ}_ևCw!Dg:P'RVv;-6QE_dsX4c {0O;d]$1>q֓ka^"7ߦpT|(l0GQ@ (Q6;t38(DSMIY|$Fz ,1Q.yg\po& 6SOz}H(?@3,ԇsԊF_k|.lw6DJs0A|,O[dIOp)Ύ~+ơkՠx 3!3~Yr!:PZoc`1J+dt j T:kHG*hhdak@Cu8~avZc<%-<.F)Q6ʋu&W<O"H~jr拭U%~MbEs[ V`1soHhʿFVɦmڌA5NB;]eLάlw)௷N t=~AԿT ǘ4''7f ׻\WXȥ5VGxySFꪁ|~ mOXڿd;ʟec'> ҈tv/ٰP{,>A⹰OT),i@Ӱ;\T*V54];Nq6 %MG/o+5;wItz'N+bٹ&k>]!fcMc͚|'c\x}`^}se] }H?<]k|XsIU鿻ޭ~= !k߉bқ orxEJ>BJKUQ1Y~0:hv)R sFQI;>pV|tJDw=k( t4HVL2f^~oŝ!e3Z9A嚀19#Zpvq#%'t%!E!z[G&j>u!Y?M^tɞD:!~8}{T>!m0*]&v.=z*D$ N.ή}ƏW"J^ô-_2cIK`=vv2Ϻ/Q16r%t&ǷJ$}?3v∏UJ9͛̌oο+Zʸ>,ͮ78 jʐ$7^9-x]hBp%M~EBL mڭi )yrn(>`gVDUl,Jv8eL8Kf6a8AR(y!(Gsߜ41-:>&7Rǽ?z@ xQ}G©! ;D%h!e{7j>w- b1<27qi^ ƒ%|Ly|)|S8S(?<yb6dSCa R`l w %zDVdAДx5C4Lx[poiո> LMcB*EJ,U\6,c9@_}fMABЩ쐉Hvݘ.XrI4VC*"[DZ -װ)Pg\+fR'B :O A4k{AuMPp6|7 ׿Tg̥{Z%M͠|9G-C}O$ b-sI2%{8j Ԯ0@uaYCP=+LE8{x|Dg;ɫk{Nrv!ڏ_P@cӸaQ*rE6rӈiƣ}ܤ)+}2렸*kJ6u>w~/bQ7^`Ŏzhy:ruT4rf,tfo1gK}.~x2щ`>,]#>{ٗ#O pcz$vs}t7 ~g,"J*6Aג G˸m* j̐fk!U:.*Hv ){cmjJ/5I*pHSM4d-FZ-]\XB  #r5J3i &nMoe #E/·2PQWBM~Bah2$nS$W [k[<Ǵ?NL' $?EW*t J2r[D6-c$!5Q**ϖ|'E\TobM/Ϥ,4{& =~K6~qcF;qAV"$ mwՆno|X -zor˚b[4_1 q, ~2>X3b`ba-7dJ”O) .BkQ"OY'TůzERl3D3령MWq9@ l+#uSH&nWFT/ /u 7"y@qMm(~4dc3,% th  ïngZneBgoO'er՛IɒqBpȠV:aI܌X oO20&pZ5d ۤd\ O%ږE2f7Ak/,# *.[ TK8vd]O^~)5YUg Iy(Vw JjP@>wgI6@gF{maj׍Xb6_oIǏ#_g_ CP@J߄LWdtSR J ȡGT#T Gkd.=)FT3 Nm*,GqN#\~#9u۽hotYԁ8k|GGu)8oCH,-"ׂ5W?SA~=L+zG + <=|d8}h0$҂AGa7nnU3 JM&֩ !7T|{#n^vӥpPRA5*slyN-P dV`SźY,`dyEDm|'԰]).dF2[(-d<[j;:rV̆x{O5Y{OݤQz e/&8\y5"1AP A IBRLZ4&Nuz'WOMQꡃVSi3w?zIY yq+q>%42{Y-n~X\2-  AXgCuc aoY cVg\jܠXWI16@9bH?4iK_'*߀Yxd`?YGnDž+fU&ݎٸ<$b³l,LM:%U*Z=wSf.]}pH)#$v"ݹs|xxB3pC}\$br9egVq1XQF O͊M-`V)Hm[دix:i׻L2qkqY~Ӕ+B"N+EѣVؽsՐaܫGU:`:z}֪ RV5BW, v "=ۜ"&ٷroPQW,}OׯMb3Y|oo [3/Ƙ[xҭ<%xyĩKr⛴x '4=8RmJ&ڮȴȕTCu@TPd19ޛi<.;c /Wg3n|HN1KdK)ה#|s-_ŕ;V|B x7prt4!NT՜G T)<ހ4 piQH{gQMZ xAs]. 1Nƈ"(V?gנE;,.nLŮ79>!-<=Xcp^^5oZf օ b̢7q__^7a7ȠU570GfۧGx3$:nNb1-b1Df ޅs޺CB / "{K{-Z2Ԭ#lj^ #&<#zZR3βi8Q;YU*`) Tc1ucԝp{9V%@}nRܚWZY)y1M*=p((UMs=dYHn2_B4/@YS4ȹx|/: g?`ѸbKrYC.N]Ip- YZçq3E5 U'J}"~K(֙ :,9N]4ɇ ֱ? W~r^E =Oa\G"%'\PjqчXQ)=MY$Ff8;`m4rcaJ[GqC QiAa҅Ka3WoE^SDrv3BZn׆uf?s*W'n:[ `!΅NBPNks톱ZAzR?`@QPЭORC`+V9eͯ HeTݔ d׉V<Y, ?vܲ42vU|.!U?1RtY\ȦvBm(pp[O#V3 { Mv3 F+Wgo8R!GF"2e21E)%Xݖp/A\SԠxFSU^ɡbAON퇹ǛVMA{B &ɠ@$9X p{qFSp|f,tуԊ ݦ{HW<_4ch:- orwd}PVΌY'B-+ȍTT4"YIܛ$pfYafϗEgLau)&Xs@C2iM%qvn NA:Z<q`lx7fDEDu)E皺L oIvHrTyT{L`Q1؂11 n'blI7z;C}buφO%Qi\6iiLN-!6Sw085Detc~+ fUIUJ`PˉL}rnoW?Ōj<'98k+⎤;hvڣc] 8bd* >*,1$Xh=Q[Y <(dž{2*Or^D!crM0AahKZ65Ld.k0ʤ{N[UgE^U-LDve%@ fEq?1d۰8(keĠ( n*HX'u҄;C{;֞!=Z>({5/R볣/.S#[;;7AY97 A[垳@M/|0|ZDK&ئ@I* O\Zr3PWy1Y]Qe!q?k/kH}w'4dfId=:WS fZa!)$Ӥ!\ht [&,Zz4+ ko-ӂ}#,a~{jq!}鰩AF tZNd詃;|Ӣ !,Hvx |VT̨^bUxu3- ^{%9HT"kSzw(S`I9bːw9,g\) uN.uNIFavhW%؞E^χwmgs 3e_$.Wk$3%Imi^ݢgtX%UalX&'.]:@QRP& W؜-#;Ob亾i/UIO'א4LL}M$ ^XU;mfhN35P&|\>%(8_}C݈ị2h~w>#X#?aygjg:=6#Ork62w<Ѭ-  ]kU8D;ӱ?#ZO= $(& <ZH?JG2hաwJGd,e|  | h{c)asL!xqtS{fYg$f$UQT-;$j^/! !YHkm?rAS[ن]2!{6 ISolP{V21cև-6#Z֡7A}b|ORW6{In'aI 'NWP69O2Ԍ5KFG꼁AxLo%6P[NB:JݗT=)x)Qs=i ~ jsCN(jĝ+,cGhd:+W謁~Q]G5)VMQ\ԊY??2xSܵjK B{n,[bt`ɲQg"b' Kuu2|L?zF^Sȩ>I@¡=7(?%M%^{|P1Ԙ,q c.aYdBr:?Wed?NyULJn0HZ^39Fݵ8b++ ;ģÑW4mtK _<^l WS~&^ akd H|x&{Eyse&R8[qIf2Τ^uv lOc=l|-)̕OA [evQCȇQhd/0K^?VZNk\ۚ t:KT/YrVDP>N+'u%gwV}F/XQ|1Q'-`tE1A}D?UOzhoÜq@K,#߇J&Sҳ49àv-h gD+clj_zs-[3l,d),sh>lS8Z%QbW&yMe>&rV'eFʽ'*ZwQ_E bjb}~K/wVQM_vܷ BXI #eGUTsX#YI"?r0t+x޳\F|d#c/xax ̺f8iqTUr[߀Y6ŭnDl!*U>ȡA $=Ix0V߇cA7ԂȊߓ! Vi9$mBD6̫~S Q.T|?FxfS+c$PAǿ%WCfd>7%DO\a:3{X {~_+H> V}*W-U}:IO9N-ZBRC8qnِ!٦ȞQgyc|ZHqggꦒAgR9SN!JKе`$oT څw>DԵl¤!mriG0MRۥ,ڈ_K]e,?7KqMPݺC .H)*i n`CފHಅÂ ~Fڤ@<-]&ǽPE!N@*];8 Jui=tw_rr)YEMJ2xҾeқ00"l;DZts15NsZ Bӟ@^Ȏnf&3d=I3(r:JOԺWwRo`˂˺&:''%%4vf<32FyE`zZf>:Q&yKc2=󹧹4jܥdo?<Ʌ=& x7޻/{VS̏~)mn= 6lCg[Щ@lԓ%kn&,s0=RY9#4cbJ3Y$DpGm"+t]&᫢*cEUyVMܷ_UZi|3Zœ&ӺXҾo[mVD.<<8iɁheIJ($N|_KiȏXm#SH9ͦ/ObL0G@ zq0X Ϯm쨥K-w6,_ܛ}:?YNQ&ID,7>|Y&QklS$=緬 ;1*h;i#;BTn41u[\m5CqQY_׿3sF]{/qHS|ȼ7ҢA{o.﮵yύ4 *3!w攢4kxON"LúysRV&_wc:s3wB TK o\CN\U1qjJ .rM ΢9YWUۦݿ@hO$ Q.J}\_aMzHȔ&f)lmBT 32#7]݄.][*H~F{!!ٶ$o܄ݖb\z?#p+O!Ah6['~|'3b-/p'b$cہZ!&+PH ErqmP9ڨ⴫VYq}d|6|/0f8 XPQP+1_/t0,j(@C~,&1FIi(uDL$1&jrrqU96[Tp 2zN>=6Ay0Ul_c8%_Q[(jKqR3b mn \6fSX ʞm Zܜz(ykcfGo2NcʸC(qTDR1(mzĽ, ;xtƺ%cn)^빂>ZL5&*VM ѺNCXSvˮH5;Юll[ow $Qᓒ |ۇKrv+gOf,c̍hxXN IQzhU $~xYC Ɋ.Rc522j.?fPTCfv{1WI }; lVZP8bxyv^9H<{3޴/Y6>-iv*"űE[G $-|/@%i+hHmDKi{Ycz;9s _y(ܟrQxh[QJ|k 71uS;̍8ހ`=X]DrQ_ &ILhdslYMK (-֖=%ao g\XC'xn>O<᳸cOIyx@-&l}XH3'S!, R[ngDM;xj疧=/4 IMj<᳆p^X9g69dq(2wE1H|pM ܗ !)J\O M{>h0E2;$G`T-O~y|Üvp6K5K1ԥi>:j + lHX@BntG fQI)\`eI }D;զI* z)Fhh]?K̈8 c)#Sxj̖w(HxG(z-i*O>Z^Le@לO5'ȝxW7{ؽoqk'Gf'>a$ąT6vv[¾0 U&ubBbn*SF-aZwm[g  ҫ'H]k:5uFͱڞ/yԝb6;ח;QYmz ([Zv׶!/\$bq cרr¡s,K6o^>&u:]Ub0s=p k2oàAЇ-GڂMEjVaJ-ѹ ~`w YBSbīk 8![G;1/A&7̶?:` (Xfs˜CNdm4ka59yoZ>iۗa{(ڗJ'V|%jS! ,EѴYܣ2cUG fN]@ȑ;|wdu}eWR]Ϭލy,Vl<#<|Hq XZĜ?A bcIRB A ~a=wߺܛƻV ήr{`pp՚:Plڶ FpEc<'؇w_3>↙Y'9QlRbw>PM `-ďOi_c 4<~d(KķUBpO5XT[8GL;{Cۤ|Qtʸ 0ug {)fP{Ys_w^;/$]Ki~^֬|h}J`#@X$M`y!l,ѭA/ ¦_+S60{#mH/f8M>6!u_LF+HR,n]R_kI0(l:jK ^m:A ~5ڤV( uK m"xUS}q[s޹EAq=rZR4AnH}*G+Cp\ͱ*# \BZxM5<֛NqDڛ?6wepZ7C^d?u!-l|Q# s&g^4.CI-iR$)t -cD? щyPU,`;kK(&O0^DU_\W|S/GWX͓\nPiT}zyAzEFK"oh=8_$Se,n`<̱.VjA: <(CV&,{9ʻR Hm}2_7k-AzD/'WLԒ\ \59%Ƥ\τ=.HDa?]IQbP{gn: OWY0,WE VVX_.h=}Cи.Mb{[6; |S v.H#bWJBxG]m\i81t&-8յg7|a \*!kbԯi5;%W5vcoU\ H{BҭpR*tкqa1 [D󥍟dM۠ʁ#R2c[#L]旪 3ĺ)fF7l f;h^ f ibESV`Yni3?sի ofmCnAQZ5,q>ފ*uMJWG K9GMndq|5SOx &~ Ncd|x,J! N6i>*2dЀ#c3.9DϏ| .-">veB)~&S3vY4W˜$ʆڒ'F1ΏzAlC1g@%e8U  ;f>|M!KqS !>T?5`TڀoHn1U3KƢn Bo|seOz'$@(a= #Aܦ]qg){k%v!ҹ^(ʃmr 01zV&*AZxm+}-WJIvGC2{h%e I =v 1{ ;sZ_vYe!ph2rj!.eoLR/[x- x[v_Lw &]mۻD4_gUv"`)Cg:+c☖U.F@Łf2&fAW4s~vsv&=ottv;dAZ )dBAL)UKt3W"8m/^ iU?zkth&R480xӑ1)BлkʖtfZ75cQzz2G@ %8eWv0s^ڱֶ͸*ʃyU 'E L:nnJ݂ @X?ۗ1 n U-g+-{UUrm0 i|pԥ0+En_Rw,U9z(i3f矇#qPX!ĊaT] ٳ.{tJyDEK.^B)qt1W{#n3G6HMiOR.hA@i{ZBZL`o*57am$^P0siO Ӂ"FtBP8`UtJ=ou!+ ~xQiF(Ƈ<ܱ pW1i>((S< -0lRO:1r 2,lP&1Du0zsrj]lin{Dmq̆ }& ͲmCyfd 7{y~,T VQ q}T =|?Q[͂H?ºW0\&$ӆ,her")uP.ۃ$`ݏT`hv?sKЛhԨI&TaCseFSY[D2xgޤDՅPP:U뎨ZٳRVpz>OPa, "0 C гew1pJv0"xaeLgc(#MKR({kCs;y^"}2 V?ѯ&tAKϒF]}M~1 u&yy'W濑4=ƽfe W|wŒh'Gk&ׇ'3m?"I3 ]ז}}jhaCuSNZs\iŪk7ӕ>ɲBl#Ő$#='+hJ L$s{2ڈQoՏ8n~xDYI:L}@tw$AL6mG5'4˾7x\8Q %P%d2 P60k44/^|Yk 3dZ #&թ:{SϹccP$Qt@_዗( !ݬv* faZ™FV^ D zw |l12;ȌAۜ54臐; זJ@LgB:ĹrO+AfEPSF{ vfF`@oL"e=pW#23-S {l3;:)$R[kKQ.a6^dkUYmm^OQؙuLͬUAXсC2L -NZGC6a^ĽN$&鍿0vyoX%o3~oH.h$}-\81։2lЕq#%YSU!@L=g|3 N9>-L2:`-CIi.иq:aR *&r1؜3 |mq B.9,̷n6elBzI{,LKgZ ݁oLX43sr[Yc$>^cN%lM5r=Hi!vPh} :<,ڼAzk. g-E*.+K<SӫceBS?-87e|P֪Q\p'8d^ĹhԇO4>>q."s)-;p?FKw|9zO?oiT/6VJXf|`l-Q5͏:2Q9ϷnӮƔЈ[JC)s$C iRRЖj^p~-yOXTȠX-%$Ey.|'uΜ귭P4kBkwM z#3zbuMj׆)+.х? 0.izzHTk |!6rm*/g.mur|՝gҒ -a%%Gk`Jl^`AjG$GӇ_?145pbhQݲsA_GJe GyR@Ijl<5ݩy\BCIOBxz}fR^},W*@a*vp eN?]QCJA:Cb*hDUaLƇ}7=u$TBr7E:y-NAL2JRiLJ!7^_1ȍ5l|B^!z"=e721!`^4YmZBr\0 B/=w*f?3!HNș?VC2t!$ Y 6|SK#8B+"5_=e2ψS<$ƨG!*_sNO^hmÔ"2~?{_Vz;Tg+$[Ad%&vm(jꝐiaރx'ʖ3W 5@>e1 ށG5J@J.)Jz+vyXAs'/4@HX!'FoHf:p4bR*| wt !:}Sң՚|2stxꚀ[fkrBVogM-B8%W\Y,].rB4v: m0]^%H<GWS2aUzޱ/o=]N4S!Mšڋ'ď%Rw1N;STo٠۱_j͑5.R~Ooq {fonn8+誻t7'įÒF#1/Gv='`/10\MrJU${C+@<Ǫ\ko\sփ?bՉ?WtDb'GH$J1p 4U,r>+,1*5iˬw]pv3UELy%ֲiV>M;,l1ŨFa]>;) p2nlA6_z1Q@G/존-CR$GzdA+jḨCIx}v媕35vGK&:-dY+j&ysɗvF\"0d M9#<`xV)H~4뉘i<-1*cZ针|@Il:'Lo* Dp5 )nn:T)$NJф!xB4<V1TָXר(;[:ospz}A |l3&q,uY9յ\ۇS\-角F/bb-=Oo5LП[<@/C2ZS&nĆ !)gV*x^}9>)GEچOiY%ot5az[xFTnA8|$x%ԛWGu5qeOO9*? LF%K ZN[;buTGOBRh~΂iX5zF 2]w֖1Ře1BW! 2)l{v&*SFm"Oj`9.0ߚ6o-KWC 09FX)zޔGgLB(*q,>*&ďa[>s ~פI H1,#,YgiU^nsB/<MygG|86Xfaj_S-0&6U-ʱ:`0[|%g[pڀ6he=O|"fn:@nN:3 }ة>w|SpiKL?;,JcU:Ld#Ʈ2o#^J \ʐp0S!ZH; ʩ֋E2^ ҅vvËw{4kVD#C3 -<;7n9iۓ+u/- r$:;SL^Nv)Ho}y>ȡ4gRګl0: }I"]*y. 7ttP1 F-_hA=:2aH˰,nNv C6Q&9/er8XmO(!hԩ]+SNH_f@U@>oy&?dTȷ$n99jWbMb=TډryǗ1fJ=3hQnY"9֢o_ql"'' {Ps*8dFbF=.Jz4\*88^"4)+Z/<_Wc*d~$nmnV5AEdɊXH֚E$ 볡\kq*>Ec[Xō|؇n^ǷIfd!r=*k%A*j֩<0#Q' wv vbyae W_3y|rOQC8KJ"$yvqXЩA T&g{䍁;Znd0݂?ojH:,ۙS \`C(D`yEjtXgUӨR8w0FUz$DsZMl)bhl6keۑkb0J]kTKt+,|yxD ͛#ݕvCA|@a?b.+pPjN`PBpw):lgfQJ8P<*\}HurB.5\lI6}ctʡAЦ֑ˈGc⎃]@7<4DToD\d8U'm-@``iWӮ&}7 XɫU(i=OfwU)9l(Ƨ U+)L{Mh HL L5t/ >Q?Xҥ[J4br.WfڴAy ੾J7׽vaM~g^KFHڐȓ@7:zrAy{)QƎuo'5SW;HEJ1%Ż54f f!UwU4Mr%VO:l)6Z(@b$ Tlh{cx̬Cz=@_!^+XtÅ,!삫쒃ٶQJT ÀX#.oi-~k#{X3;f o_BE:@TmGo"σ=ˆ~0[dCOJ5 gna?q.SD7J<1P CuPDEz9`%Gf&a&KWUONmj1WJ,Ma/]䛲 e/rȋX--/.O޼cX\%>g+WM@!!ҏSø09bF|$"\1-XT 2#r#.D)3e#G"(I~!}i/a3:%IRic ; !vckNS3L Y첅cy^*Q#O3\i [ԁ5 6`AC IKj\\S_j)VD.$ գtZK@tӊy8p܆H$\[tazJg?QN+NН8MKfyG;tZ!!4} qă+_œT Ɠ FL(Arm&=%%3:vP/T2_T99`0= 3Զ |LWMMl,yvCI եaV =cW ЅCGW;sݹIn79Y_:"\[zVEMkge4& M,\a\,9_x<:]}pf+ 7Z%BGa* ywB6z W7!1$PH>^+`._aPM7Ha.@O!`Mwvu| 9V\o{ɶFuZ@7UVH/b$5$bp&RyW\)gJڋzR, JR?͎)rLu3IjG=MBV,Z8C}-L.16[Axe(a_ Ws},-)](] -~_龕MAduck-4X9sU#vN6cW>g@91fU![$lB-f4g]u:-|OTu 1*Oy 1v+;¿W 4.چE4@Jiم#Ac|_lNLMYo,v^ A2]o.E[My[ ['pvO[ $p¡=N Ƽ8[',/J=N̚O=5'kE.<+j'Xqtbv.`:%0K+eb0h/Ob&-?doi6`V >OUP19 ')4o/6'|d.=@aAGhi.'}A֫!r)HaPi`$2( GԹ:zT`{kOl/͗c9PI?`C}*mucuz[L(̩ &W  "1Eq3TxcPOT hO{e~, N[?30T%;\K9/PĘlC/|)Su}fOtgU{&)Nc/;VO$\:(>kH ZkkɠP\E<ɫC#1IFP/K (ubj}ƠWq*zM-}ruY]ص9qT#Yrqѧte|%M8BHKB63Hc%bv;'vVT vpG!ur\߮3p9]w=%<T{-r[!_HTXc<::r W4~Ƒ,cycaHћN nqܓe\7R&_қ +AD%c5/ "#158|s ,P HG ;׮DoIkV^v$*Ȉ Z2w4KV*rK*quz,T̞jiMG_INJV0sQD5' m<0\D-,ɷCw[*ع0rcfEncKpid,1l # (t_LBsd?v#9\X_#ϸ͢[?H;:HM8eE{[()Q@Mg#Ղ`.7|+a"@n6k}J5=Gߢ'#GK B[ABZ ̵œcf`z#sHL7H#;|{oX񚀽8d'DVRa:8(JʈtC9]_To#IH_ZT= k~`t^@g JC#0G?n&} )̄ Hf5gVJ45wU˰朿4 |VCKW5B&/aHԕkF> .đcMDEMՖ|8Q`TB _fk R/hIF {H2GS;!?Sf!$HE@Zhkia#Ø09COWT9v/߫}djIn6L|W! ؇TB!=v.yiѬb?*9lEH֟d-e he邭G*U!CX\x) pP.}8ub7u!.C颫RL-`@2}1nBl -؟dı8 *N:Es! uZ oEOw2FTPHB#b~Y%]oj=}\┰.0uB ~`[~M/Nu8W&jֽY(="{=mvWtWADuU4n՗HehV'ڣ`~]`,|`dxE*" "$zW6J=_9*v$R?e=8z\st#UK5sseͷo o\fe+Yc,#iG?Lba/hIXZq4oB*],rʖ%{Q(po.@Dg|NyTMjl܏ Za}SDICipFqsHהDؓN!Z~ 5bZ(QB)Y_% WFh3;&js[q ,I 4`e} ū aH ],T'_T6%^r|uyXi `ہz]m0?-pT~(&FREeRs r-L>Z6`_偙]RR?e-^;A3<ҟ<#ZJ%"7, }= *dǪ6j}zEݟO݉i舿-)y?ሗh?L,i$ŲLyEI2H420V}lM!ʢ׽`4fQOr,X9awzM_5w!p42 ȓt,C1\|$(t!?VGmϦ\!/veC0lf8h56)\Sԇ6O@o b@ pR/-q@/q4hq(jh-d6s//YjٜA,DžӪD7:L߿_䈻_y444bC %dʅMqg٬v$BQ_+^Lo5]Z9liJ ]=|pa.mU)FyZ*RBnEYrtU)zr#;:兠`!),Jo5sӈSh;+08–:qUU?evKeWMyR=a:p·ބ% ]9kr%|V+XI@یWu{+ e)^ ҟ0RzLb²Zg0V"liBl!"p7y5.çQVnOunkJ4; BL9mn9%s˞d}88vE{ͩ&&m` < ^+z$l͋/kwjRS36 |!PӤCgr`e%@LJ 4jlt_bi-Ƥbb"tqƵ`^T,BX~qwKF5HlJ.0NX7gva^^F{HW AE97Q\0΢MCՍ4HԘI Ml%yU]kLy_'"w`~j^M,@rk<бg al[]xeU锃r`p1`McJp?{|2N4iLTH}AD}z":;3 |nJM,Zu:Y*c7a]eP <l`ތ^ q~mvkֳQfs 3)G_. ],Xt8b5[>c4qZ\~CоĕSƦPdnT^ :IyjXdky'ϰ& c Vp`IPDsCϟXf^ Q'\hɳdހ缱Sc;,|f M[CO$ 2p]ܕ] $]7HƅhFː# 4/Y110 ޚ@oAgFd(<'^SJfn,z (#@WMisVq0,%t?YIG*х̑ы^8:)|<7FfL*I!#ýEƢv^M+a}WDs!1%6M<Lp&-|ig'q?y7]ii.Ox<3X҆E)2>S4E̊꒴!䙅%Շyjn-"V@4T>?)V_{ wZ.J2vWfjjDߋ @:ѫYlcBO_[w(R-[LևWqkFj ҪOI~yY&j@5@r^RnŽ>1oR3Hux dP12ݟ׊6EjD{XdR?=#kխ#֣/ɧ4~G-,HGf xc2UJ7Ը@>Xwg-DsO2Ig"N뉮3nQ$7 #.l]*3v 9Ȓ(0[k_ t-D\6&_L"J{VLk{| $L?3UMb j`m&"jrs>iJaТ.*p fT*#7HC{Yg= [re)v'eC)IAT| Pޙ oDܜ h.Yv7X-rKNG< ~s@#R6 ?N87$!OL9Paq&9yE g\\ 7P>.;+P`|1WH&kxyWs>^pU5ƬoX݉rYiYLqɽF`ӅЮ\ag`uc.zD?r8WJoiPod|ZdV;g=up'JCz[BNNSThͦ0?y 2%]a*+nK\-_@X?AU3/FPӺ+|m6,8o$_ᲽBEi;(>iGD! vku- 5Vm{,{p岰R~h}nBx_ qYFg8%˯Ƒ_y_D&pFw}'6aENMFft\Ta#  p|s\ ΝiSp } *«T7Hʫֆ>/Y//Etf?ʷpZŽܦ\ʊ0MҿIUM0HhZh# 2'cC iĐXnRXS)=}-yUҫy޵+Sp"FܓvpxjN0W*{t/hdF'<饝t/ު^3<95iDD}8$|BB*{@Ũ O!0u4)?*VyM)oV!Q4Z|+ mPȊj2"0`\{A+J3Ĵ岻)Wh(ÑuCT70uL}z$<DL&9},szF%"1C/vn##*OQfk`5.(vck;PTu:xE#…T+)u;yaAmQ(3S|+- 1"..{ֶ{>ؗxYsliËb7X~:,nxNdʦ04g{N:`YL44Zn3M,0gޔ )Q~2LI4ىhLT, Lsp5&Md00J0ʏCOkxd׵wHtO!^Jʭ/kR>+?Wݾ cz?59*>Ӧ*;xMR]*K7EQi߯a;6 H| BP^l$L'i@Ӣ8Fz$(;$~<?ŅfۃvWiS07B_U[S8O_ R}cAE[ nuJ]CCUt[Ru_%ay}u~i^@ s`( .3ZV}(nDЛ^ E7ٹpþp͆!TDxt"hM#m9 vff+jץtmҪk~J[>?|2sW tO{DtG%$C,uL}2jXf-Ytp`\b! CZQKVvJS0m\NXJ؍-  oyԑ9nW sqqXQ */I]J7k_|9 r1)܃/ϒAx b o!DE].sv)jѾ l_y?%]ݦhEt^2iA[{~ѥI}c M"A $-"}+eŝG8"]aXG"a f<3Êi~q8H1H)lh`C]:<(rY럥FC:!Q'_ w7A6ܣSAPçZt]$(UTq6Ԣb ߑ^X ؤqQejз(n'@rq\\+2z@Ghk۩cpUa>@TYo| ȁhm}=P )!yZ8/rvw5twEA( Vr Ǟl zS~DH`9d?P?;REq1[[,`xU(rpvY-J;5r!+{M}) ZO`~U>" J0#k6a{U!rm\%lEDC1V ~L3w G}@:=Ek%c;{Jp< 9 agFGI0Cd}-9h""{wHד\~v;;gßyrN,͛o6-i$O#* _g U\ˎ*R1w0TM*f$ _dy˾ ן'VT%XĘjK`lڦK-!to`c M98E'YK`d[Z47{D1}܄[bbE"㭊ӐWūfB%#KE6ȥx6 zM+utFHx|4/7A;MZXsK-S]K+PEm?-!C`ѻ2Gby SByoõ4|N~زJlG)ωo{`K>3bj;T Ih(V|K<܍oS*\s ¡{Lkj]d 4X4SiFT~N"Eih_zB|dšS:je~^LE$&լmKƳV8 :DQ~D+f<,Q*=>OY :\x2XV:*V(z"'iTwT ng,,T1oex7@|)Kp1P58_F]Аg; |Y<,!+.*vcA#X/|3zH \?4fMIVE=c`Mfџ|/׊6|b-;2~XQYP`TBq|q%$ R_Oi7-pf3 0o MT/J͉}XW; "}MsMmI3.DfaD^1&zŚ>5e']G?AW8+|a-jk \I?El*w\pn$w:/GQF苓ܚ? ā_ kfԮ binf]N܈LVul q(|?a*mūX಻B5(#EXq,%־`6qڥfƊ$"rK@Ujѽ%'JpC>{Kh1;2q߸Y[x3%ZV孹"xOv~PVLQAcsɴP Fd[w‘@.T ݒ|M~ f6zAaQ1j|veAX*э8nhX;j-J.}4j#?I|'+xG烊~XSH3U**!bx|LB`%10 jĺp}Ka'0D[p46YuS~ 6,3m? JB][~%; Rw0%ic9\ 0f>j4Br<> 1z zA~J#*>`ΪRH{~iCG~S/oqGzCl)'] 4T\+jf])9_Cu[{ sfE%j 瞖YT^[ND˸>ᥙ܆4#ʞn8ቑysmޘ &ɂ9Ǔa#ևk.K; (VLU\l(j $_C- ~>;R)_?[w {7k]ncAVG;ϘFz-f3;^LUQ||SQ}a k ANGm`#byx07{;82; !3bV4?즁^{P" pNjg3F \2?">{_CۑLCrn\ _J_ hko+{ǰuRw5 ۪uMiCj\;햼0 Q0ˁN#i* )!J}śIe3-g´{~Mڃa˚;DƦXBx,7d`؊ .OH/C@M ic@@iw=T/gw~0"%jWM3;^E ױ9jRw\1g"amj<0EGF$#rAQXNVÿ70bwU|IYOcA`/cv7x6!zj֥KɝwVۢDd'{O*>7z3Vl 7t%K_r(@[ôob-ɴb.%OYj?$6=@p S m"|ZT!{E\w~0.&aޞ( C-:nqs>/`n|ʌ*ud)QMi_&x%o38fѸov۠Cod'>eׅXT>q\C=ymzF(M%aZ634g*Џ9$2QuYQ>w6R.Ø!jٟ/)B[(OZ=5l>G`b@np"h9 [u ϭKTPcb!D(gȰmj37+z!T֊ B;-k2}KdmE (${)*pIer[ҍ%l˃. VGCN0sT ʴUß+7 d*>3H,wД˝Qi/ur2Y=ysX04]/<ڔy- >OM:Ӕ֏Ғ~&VcVssE\Y Ox,OS`NI%%e"ޖ RM֖m N# 24'R;SDZ9'`[cTB_+8J uęӌb /~,w ĖO/v1Lj%U3# / XEo\ _Uɨ,R\Q?g&p!ai.MokD>!(g5 G#-&gp)DݒS˷ll*h4gI_DY]k.ؠ㣶c*(6AԒ~D,/Xh"@ot39-WU[8a*p/)v0d&i6M`28f|z pj03u2as!Q\;R#d/Ϥ$ﺇ)l?D5}ՑNu#/_^ Xٜ[3AJ@73WGM({%Y?Oʊ&(`TD@x+)`5 S2c$_]:?Liѐx.LV\`$ڮ"  **ri: 婀CS7DuyO ј^TYlv6nnYdk޴:h'C!((IC4Bن,+"X%a]L ,sFηc89f$)qs=RUb12V2,d=SL eON4ʨl>IY:Fb/jufdA %ڗYQꖑEr61U'dUFJ7Eաp>Q <|CUJYN;6PY,@S%W:/L i#pvIcI_.L ށ\6f A۴{DbNz%a\Off(z/]r+Y-zȗKPGeFuŬ`;qJ@K%X`n(Fʰ좽 ^Y(0I/%ײs푉GW  V+&5 YM`t)L_$GgkR% W֐2$u<pG7d!G*YuIo3ݵJC_uF{br.V5⎕R[*MA ,"z2dP[Zٽq"G;ޯ 'HbMum4)jc]E`Yq> c? 8jOQtV3lx\~]кM?2w.H6D<9`)! [C1#[c`כ5wC3,)ECHe=*` d6:jPg7 6' < L$)L /x~U$km榈ct;- !1;`amc("]3w(ߥAq|Ʀnj3Ĕr-$.#^Mbl /bVi1Y[쿧9M  ^mM(x@#`w36gS;+_q`㕨s=  YE  {!%W> y,(f|4<~m˶;X}^d ~m?Cx,yvJ35@Q qq& aJ$8~nFiZ\4Li/]h

$xƵei#6wUZ)&A~S@^y^P+'_4=V{ި]Dv=N,h UtNg7}`MYsXʹ϶bbJb)# cBFd^ &ZEdf)TȀ 1r*InW R2x5;@ݣg6~zOCgosA>el$&x4\hgoɸ6#󱨘<[^4BvBURy85U{^ϝ& 'b1]>]&ckix& O?3Sϒ(*KMKbxz&Ծ~dt?^sgN:Pr@`yL:MEVrY5QJ%!b}4 /WXķY&EaM=l Ke<5U2xX rH۶QDs-o2̫jQd!R IbIZ=ѣ_[W?LX] VT4-81բ'vm!m; ύvZh\H1.j!Zy؁}*i8ǍcRXWs6,)"Nrb骁 2?Gw3.o/(6}%cߎ΍""0?津hz1у^gPN}HE$ŵ7s|aRMvb ƢO_B^C5<$*̴L_ÁRUolZ:voB|F@\ iSp[VB: p aG Gr"s\NvaӲnc*' mb.8G1$BF§e1;{@d)P=w1w%B"Fz Di@q3 m{ޮG_*1ԹuV;3R=:MVC[et Bٯ;?I薋CbsG%Ea-jr)*&WHh͒&׷y[w›5R'"oSrt|~sϹkꖌڥW0ݝ  0&\PI^yE6$TB;) F7+'wti2囮e@K@RCU ~h@ b/{{ݺ $B.4ºl:k3=X>򊡇ViooSaAJ&7̙( ߧia6+V5\Q$jev<]i(AŶS0PIRvMR\ ۮ aCD%9<҇Tc*o"jlO+2 W=3ncQ @P Uja!ipxs7NwE;oyy3Gq=mW8ȣ3nٌ3U =iʾ(>@@mфmMv2{i@&CF~]A>hCf3bYڪ90{ wW}mPͦQP#yDR^nk {Y;,.ؑDžԆo>,}hJ1[oeyP=TT%aսP3AS>2I*SaLCWwX$Stի7,@; d Q~i]KH7PG-kI *3ׂoq@6/,8I@aqGAJV˚KjC>4h& ?Ph%^ >e56ه+flR3Ik֌&.IāOĘʌˆyp/"J*sfC}.* :buԛ^{VZ &мBvMC4o$_TaS7x((@ƘpIs=] B2ɴ? Yg!eR,_^&㳡w;EFh+Xcxi&gQzsI \7JJc?g[oWxW4T{fjl u"fށJʨT?)e;~zI9vߺa׶$<Շ 5cE5o#$ !z]\sn@Kd|sޚhߓm~yUȺiMW@m'blG'Dj~Hhs]zs)LC#$6@Ӏ`h}ݙ2'{`8Qت'd< Hanw&⚳VR=)6\ZK)Iwj}X9n/ݜsCCF)Ƴp-)jI TcH wIb0V`jXmp.h3Fbj\%U;mB49b~hљfO"j2tLAcCIc̪AԍL,N?ь)AѿeS#H9+mqœ|Acf=fxcv^-pr"i\i7iSTB TfA$}f|?@8@՞a˖:[0g彰H%je1J:bIB|gҋRJE0' 7洔SE4LĖO3eMN04 ;BV)XEkK^v.52VFIt^6|ΧW K5\>stou0j7=ϴ+7TƷ@\x8ea$ZP1i$g"\iwq+f[1i!nKhqg=fN:9Ǻx'(Jr*KI%:UpZ#o6˟X?ֽxv7>b_^@sm5mɬ^&W}"r l&^',|9! 2!p23(nA&tGqDH=G3qϞ\46TJqoGnsG!Zn2l#S';77)Qi_ͅIY˹S%"5hJ1'd#w)>S<]9VBMH ߭`!b&63 3#vɯ8*93V4Xs\M2V-;u wB#xF5/ s);eqMP4$=QvП,"]o?5՜O;?Dy=(^Lǒ)ry`_}32P+<*L.*HjQ7 #P,гTr< (lM/MyF^eG3mDJqtXv[,ƶԦ.;;Tŕ-5Jۉ `#2lu ez]mT{M&5p`&DwQH,pN&:kV̱"rrϡ` h։[iP#><F0g$UXƎNog [oU9yg(~ՔiV@ENAS*У{|=KT^v',P0 ewym?>Ac04>7bkڥW|<a[\XIBْpWPUĵQ1z=7beGMv837~~04 UNNjHт/ZF /yH`~:B/v~tn5Mڸx:GqIw|]FEK-/hכ1:y[!xn]d[sT?h jH-Gc<;(C ڀgRWiuz7^?e|AY<f9\D"cPgE?]Ro "-ҳ"_#2慵-*ίLz/H$}a%πA|NrSq ̈́*Zd8#0zf$DH%BR"i+>A@\ACSv/ցgP^٤|Zʜ{+~;z^dTB;{ya~_WBa€0`%TFT87/e8|Z2d.nZя3 PtN׍i gMR-gl^R"+Sv%-?aQƽ֝wQ8( _Bx'L|ڽ `((<7ZDcuŠz/h|įj"Q#lR8*3p #(pHۂ9N}Y`h\'lӲ)Q6)xhJƭq 5eOu՛n@/؆+Xͻީ'W%*gj鬧uz@k%|F'-yt ;nzGN 6۵NPzyPG}ZOcqO#.z3/x"L 0;|^jo[+p`C ] U7XL\`gza KQ8 [L/R딖\jP?EL\6}OhлXާy6%ٮTmu0L%8F)5p]'GZDqӷ BPNpͣu n%xfz R4r-&p'zԻ;??يTj4wpZݔ)< EU\x^~L9Y˷Lh C3sB܎,w{c[D`N ?'$>EAtR`+4[!n'S#.+ q/;AvÅg蚾<2Wv~z%LM[-PFI pS BaOP|Yduj-U@D%}5ƔXmYr j!êSЭY3\FJiʖ.ZVbaBȓ̼A1}8\S;$wƴڀL FQ=(W&;[L/g$ ┩A3)'q5kt WN,1}YZ㇉! @fAkqoxش!e_f O?b@+|3S`5<,;PInrWYn4yl3y`GA7⧇;.7  hO.!5WZsj[N+Bo}弐*6~N/ꤋ#y~r(؞_x 'ts-V$|pnOF5 (3dO P4^6[tʩAz6χ{뱙Xٕ-1Ż5$ŝ?pӼ^IҐ/)6:v#hr} HfpdT-Y~54ԥ.ٌhLH~SVI׿Y`U~Cτ!2dN0JcmٻԑAw&DN>Dv'Q!a#`./rHOJGUJٜqݎo# O8MXeԯrfђO_+]\0l'u2pw06{rXgrooX4ph(Srم&B/'43U[_2ϲv_?=gels&EB(]Z\;؞f9Qhe0Ј~d-Nm^I-ɀk|V[6. {e4[c'l8ȃ;JZWB=gDK@:stլ~TK=hFR8\.l|cGU8B`kKѺ\F(|ā7LV|]Z.* k wdľX.c@)R[y- ] r1s- ].w;b_ Xު[=DB#w${:?EyB/8a7'.V,PԁF#̒17cuWmՋQ:v>|`uO"`*f\Dg_*m3YU*`tGZ,W7i-7&a XI ؅"ĥ̚N642[SOоX]Zgs'2HQR+Xvo&ͯ!΄&p_!69l̰C)YbRh&A4—*fvG ӹ&*aZ4k]q\3Rby S.= HedcT &z IzW. 1&XVѪcʮU|uө9?7TF X$ޣSֱ0X"FM#b2e!x^vcskM^ȁ7t=3̎"{^F1ldh0a.\ó O);Zh4r%GEE3P@X. d22H߀!n΁XT%1u=GO"4͝k NоAY 0Z>%AZĹ_eūݳNnϷ/V`V@RSrAqxDáB.V0i Q3a H%WZ ?!F/_\x,̃gKvNQz|Ď(^u)vzn܈أ4c(I\ y mִ}"(W4j :lKa6t#V%(`jWא)7zA=wf 1ʣě_9KW1c 4 J3eWovMCO.5RZEA$ڐ䵝5ZT^QL/Owz똫@ ƸH_$G1PING*d쉽#g0tuS(iɾ/Iaî:hOu/r>e NsxBS9VG9/vN4ݸh<М}Pqq{WTm,6(|c8>9z {^Y+QY/V4y/8ח'b4x~_K.|螦Փ$Д/WۉK:1?{O e /enV]4*k7.? @7NuH!}lCm_c^79N;.6~,'[T*H}kV"+d1\ګ`OI" ԎJ# 99 r!Ӛ|@hO}7ixZTE)7z?Ovc-Z 9ȝQ4 ;uIw^HwSVv.,TI Ni-J?ħё@pa\ƍz- Xjk5çݜL3hţiAͪ>iRK@EnjDx*V]y۱vhH$8HȲY~7 1 V.b~ B?%"%g+@^yFE ä%~;[jlz O`SXWUdS6I-p KF LavTO#?I8,Ĵ=#g嗌J=L AlӭCVhO͘\x7(CKkz9Eص+q[WX=KqSXxO W&zE [зĔ;SK5l!'&x[!82!jb~cT ]!y?bT-oR)Ųa[pO3 *HRT۞$j%1~qA{P1-]0`ɐLUG^\P)I(/+KxEuP4 P[_]>VY gĢ5@K05ʑU87Z,S{;ژP@ʌE,AXhV\xg]3o/"9o$E잁SOc O03k(Tl&KuJwPū捧~vLN@L> >A7g\[/ ͠h:cǯm' a_KĊY ёV㧿*cTtpqz&StgvpyN!:|svK}XfDxxdX2]W$pI-@ftFC $D3z&@fs 91K2e[lw `: R$f$pǟa96L %82țo ۘ.ߧź%Txw8=y^%en㜶F2ل>2+EJ$r~T!Xfe[{鴅$^VramRƸS8*U7u;$  ˸vj4u*Y"1w=0LZ]2$&ywՎvnU "^XչԴ(@k*IB@uDUUo]rM M<6 q$*=I\hꠍC̝w)o,$t#0cw={u,%1fUq{&[L%r͙aSFLVDA+.X^?K^YG ]p -F"n%e Hb'1GFp\ݯOomܽw?QV8g}x{rߐ{ u"Մ,ddOuP}g"˘ by;nGVvZkd|{?͚"ֆ`E31ɾ啢m,D]Zp++7W=0fՈqzc(?l>O@BHr4%9FlOe[JJy ǐoD?_wQI @CGדfAH; '7+7 mE l uؚOLwW qu^3$e"8g>#<6ΐgy۱Z= ߔ/H.7mLД6KS|H\)T̺2Y|`a2. ɡK Dqiq*4D! #h_Ҍ9>ށ:LPXB\ݔPaacgB?7d~G?Q3r Ϡ`[Ej0 ~@ꚠ_ۧ0QK Avf:z'xeA Ӭs?IgGǂ[v `t)y7ã2%Y:?8)W!ڞAPq䑖?ӝAPۅ*N"Kz3#ϾTN1VBsL]tgAyLߓeºB=(mL O?,kL7dzÔ h]71[O3#W%"b]܆i?Pom-W@7[P_H[K\.OER(U1f0vʫ[2YlC~@]f+BCvtF{E7G`%|Jb% VKX+܎ ‘u4V`c?XRn8qj .Qv)^r+Cȕ*|' hkfn%#HyEbd+iXbJplDt?IzkµMKE*GT;3G-[Ęig|&`L> ښD0T^>p\7PTUJTo?$m,h UWq^.o ֥PGNV,}^.'`??PiEXb;R\Bp!sxlRlm"ĥ/:`ȷ2:3" )Ѐ[èD+.;Eķ Q/<@=N%ƿ^+r[MKFA<:{)Wq ElxfEpoixd[^"qDю\bctx:PyV4UOL<Yp?䘋Qn'[j?7QYN-'U2,Qvs',Da+V<}D8@qw ܨ$8-Bot0&dR+2Hn?HıO?.Qۧ=’,`jOaϥDXŰդ ~W2HPR4୬Ko\|R{yrK#H)ar=^HXP3ζţ~.JQ6w<b:;\#!:FwI 6զs,&Oʨs~~!hUk.RY ;`>~v(!;83Bd]R0? Z3hN*/x9uyu)Pޡffύ*^KPk%N0#BTvGȕ>RJ\NXia%"z99eŤ4_<:a Öԛ HU+!w8 J‚\KYF0JC)i7b<8%Y&2s#2(w˽O[7%2vn'S=XGMF9! v8wJpT .]@ˉ%K|v9hC6+^ة(qnھo:G&:?:Δ4eQe%^7eJľ"q@2P Pa{N"sSEқ Ň5-V;ofc$4>g Xm!$6 S=T; gY-dg76qjʉkv\ ~Y+Y~r6Sycqs4q% khn>I1GmƱ 5 YQ`'/})vѯ-0dAN^`J҆z6! :}$'9rQ ›[. A5=͙N^#)x?MLxΩ >2\Νz=qbu+i~qAEՖB3ۖiw1n3*ӫ;9jܫ邴@BJQaClL>gRKx.sU)g ߡgy3%)UDY=$b_ & \tlLW򈎗ZHn@'n{WF^B]8[{Q}KYֳS2>~x{a> j5irQBњHdvngbx]pQ.gg9>QYp~;P W 2SZrp,l|o%jĜޞj{tBh5T;`Ҵu?S_=/O0R7e! Q̵jދ?0&#/+sulM='iaL(|OHu#rzavth+wm"r'}TaR6u0"g_g> HMBBٯhc&WR|Iufc޽h7 Mu΢^x~NeV2eӉ(#ge~S7&~ `6=uJ3 kOj9MNy9>%ԽYb&M0PdQmgvrڑ^) kMg=Ί$p;>0ϳʤʓ$rXӒ\sXt^Ji}Β"Z'A?""!B?hv2{ƩPܦ I%q$D>EIb5?ID{;^?UֈM! E}M[On"N_VYQQAue]xJ>z0;Wjp,h2~F}"|Fj02+aSivKfC?p`f4c:uHT;P?qDzSa)gy(^@n*+9h5Awy!)جo2.&eQj;`,+BXwсKZEChtҥ_Jš=!op?OE[(]|AX+-b~$b[{4 բĮ;6vR,}0MSp&3auy"&5% sP'xgcAn׆NIX.bBZT|jq\]F;ct9eC[耶h;׭rih-prYnG}i 9Uz89Xa#rE)x=|DxHVQ~w%0J?N]#zDDBE x)CoıL[@Vcho揸-<5:cˠOV( d jR(a]q=- 4gvÇ/EhF*(Z79H֊_no(?l/;TS|K[} vFЭ+a&jWadkOc6 ).i4Ŷ3lŘjre\ҭ]W5< kWFt [E]y,{>vxH<^MD&Q?{f&"R"{86FX<ȲP0jgѪq^b-[%9t$olV̫ viRe+bD̺]˚fj%GBoD~Uht ݪlG(Lb)~` XkP0wv FZnD~QV${.#Gܷ`{Ϧ9I#|2׼y?j(VQ#;%%m~tbIu>x`sjKJIk~i6k6f BZ#¾Q sI^/dB8B,mˢ5q"z+VʪnT(m76=`쿇c@Df )_m9$"^gV?͵ϻֆֲ֡[Opc{klv*7?MZѩxxjk;F›@]yjT_rpļajQj=q6t~V*׭i FfTE;Ԛ9_{#Vȋ8jQD .Ws؞$V.B9ҳqcLiaReZ 򺦾VE!_5S t}wVBϳԊ ::<\$4L+]Kq]?!bB@5725ŝu2ZTff ={ዧ7l KXKidG锅L>W)kՠmG gY.fm}:L$n{g2`j- hd'S*vܿ >C۳aSnBMRco HIbf w?FSQc$;#4Z%x)&FS*\$(JxpZ ~WKojF,'pؓP m;|SQ1LZMk)*/|h5H\0I5U<A7aգ y7#qr !>o+d}NF\٬#רuV堲pW4)8y|$N+b`br-ϤlA~Tzp76N ҽTg v*'rC(iL q6CW3X~+=P%CfUd,73MBREG#."?QRH'= Hi8(4AZ@*XƌY. v˒e\x m)rkqEeȕ67Qn0OݓE|rw;E g&O6\1Tgr!I ~*nV3Jӑ!^2ìG!$Mb|P6lZLWPQmhh2⚾4ɿC!,Bd ?dz (qT=2͋j9`l4rf _^>C~)֥|@ǀ]A ~Ua 1kUh {eSbeJbnq}载hn|ǿM ADڱm͛} (}j< j Vɷ.+U7g-b9Y۵ M|FIP4$[`ڬKD~y/"c*?R\eLi=[\#i/hKLJt: NζљTHreZ.\bAeܫ2ʃvNş}/+~PFQkdd?i೾E{I (Ug<1t=IGֆ/mYfht)B!5V`(sIm'/,uB|@$~5ˎV,"KSڊU*q=I^AiUscXTnpU޳|G3EGQ(l>"Qjb(ʩ;),LBL 5c29]{UX3RĶ-ůb1` COˀdͺ "1tl 4V\$/  CeՖ(u^1#/^SK5ah\"]tҲ5%uN'.*.E3~1JbByy4P^%&J$@ͪwy Z ,=H?OGN//6t@j[5Њ/i hIyory5R]PWvл̎D[Jӈ|$f|Ѽ_ oA,SԹC}IW&\ <8#_d1ah~NAУ1灳XW2n­5Fnd $'\o=zfXk! l=R9at0NIuv1bd,*.j6b0-DGnI=@{Rfs\>G*GldPh؃gr3 ,J[MKd{QU#">=H!~r(D+]4!WR'ĪaB~]Uxh;OZCkhK7`2hs^Z&Rfi #@ںZZ^"cw^"H ANkW9`YmfI6#jH>d\ pVE\ cy53,Vy1"|Gʉ1{[#WQ73ZqWb%Kj[>4Z0CtxڗhY^d>Z #]ڈдN;j] }AeCdcy0rY( 4(B`B εxʥ->T-+s-q;%u% M_^:t 3{{TC_* y5q`$_?tf?28*Cmu_S;ϑZ1 q=Pi:GHYxCzV9YZXS>7|1nςЯ%Z*9)@ˬ\)tFfk+ƫI,CmF(J9X[a2( U?A#R!xZmACny̋Hxmnx R7wh,is+_+qƌT.fj?7MfBdoHE oOy%ޝ)4癏zId5z%mdTZ,"b7ZCg֞>\ c6A/& =JQUZpH<E(tRF2 zRfHecB=ؿA`>qMa3pf`EV* nZR'A4-rqԆRP% / =zb}1O z8[5ڿ),~BZJ ;vKNy0'mXcT]Q|\ׇΜvK5TԄ: Ҋ"D"4$/9D>h7R?[43%E$.wSxA?!Q-T]WlC m>NutP`Ν볭3T9,1+E!FS-B_J[sAKD%|04tp.`8 }cng \oZJυ2Aq}mR l|z=t \$՟v6G C=+Ռ宯z}G_ulW R f +mǧ6OhO*baT w!lbܩ:vN?H@gn {wL9eϏJk=4:!^ =7ezFdv]UHA|o򕙷B d*VxUS'A zp3㭩$ h ^%0GUXui,\ph-aKhFkiDnf#h}~`IT`ȗ%RZ ']o$qOK?+ p|enZ@rdxӉnDrf#$qhe$óJwI_KC%a`w#ckJ`Gq{!![`/a]x_TwE{gN%OۥL%BȖ/_ )أ׌TЈ;c`+r~.klv칵+GegunN,ЄZώ._]#`/XՏ_ u>^{`Y^FO~Sj"}kK=H}i5:E浹z2@ dGh1t5N\W幕uq"lYˍbxJ(]t_ɩ.sCϬY)y K&c'0nK{LeRjAY2f\dxz-c^Ɓe@Vnf󓁉с)3n,~l:t" {զ!9J!Hv`*vƎ$EvCWպqً,uFn 1Fjd/w/͑(Sz@J&[<aD1ͦdK@LepmFf-L"BSO'uQz~Pu([C4o*mFV1L1G /E7 yDb\pkj. er8H3i Uiy }&AQKn}b$|l_šRႁf.ɸ׸(m%P>y 3}ͬ+ƇFuy(F}Hy}_bc%iwnhlrmt8ղ)bRI"ؐų_3k=>鿋蒐'Z7\<[=(g,Ϧ eGX}Ŝwe-Շ\t D1%wS徟TM$ׅAt_7ȩǽ >ӀxuIć L[+ߏPs[T bR8ڠ,3 ;ϰ#U M\O1řqn3;dSsC#3R&!Q(@HRLw?Wqcf1v,!S{:Ip] G$Ыi"5S蕘޿@(>3z/."?;1N!ʝ`wqB[ܿgU&~u0jPqlyvL~!LҨGKhD/@ԅ>X^QJ^~>JA/ ]TlQ(UpeqM|aF̤OU܎EvG咪M2RL1S@uk`I#JХzwm!禥? $h>aS-YIo<`)vs-d;* coYFmf_X47o,$eD:+CglijY]'H%쏎@;k S9<4!w9ze*14Sѝg17ra7v)=@_ǵ<3۔3ЀmpJX{CFhw(߆EϛG}֠) N@lm#aBr͸hD8+1{E(SDˉ=)kgbޜ~#hNGJ.+'j ܝl*;!|w) 8sk3i΄87ν|s%ezdEh4@anCk=wgx@cZW=Ozp6*ȗ-ri^ ijώӷATGkxy CS2BLmsSNٚ ^2 zhHNW7J+"gwɵR^4i[JS_ٹA49EfCGXFea5 O7hz 5c:r&j{ ^pQR?>wZZI_8ְLZ/]F"`YK^}zq=\f(fA>dո}XUsP$OkWUw^ʬw,~IbKٱH #uݕP$kU90qu[I仡Ң$\,3m sWp3oJsoI=ߊ r:g`qܤa9+J<""'N8#Eɬ[jBڢ'ы/PtSbA5BMK(i1*]&Sp- + Z"pr>ް'BI_*0rxGeoâzYzZǖ $Jf>6МQqrr8g(Ko <~4HM,L,b gae0\;нq||5r 1 ~VRؑ%pՙmF_EͱJ"niE"n6٨@~}OP T(>':Rf= n;2XTB8\Χ' @_`t27G J(}aYNL*ͮ=6?Wm .E >yMYR3I`ﭿjC;2~=3yZ[&wt0&aO |,ߚL8+K(Id}+˯v³ By_d7Euе9%_gMYH85덤fC7r5sg~ 6 i@`;L\6AxߞZb3G3PQ:9nqom-#oS,=Yn xKR/ PjQZDo޸c*Wc20c\#F}hWꖥyX.cV 19V+*FWję= wAg ܸGE=Z řDo(%(] ּLlzcaP|ES<^B/-OqJY(9u9RnZOj6Uz,XxT CNw̉kBR~xcW>u6h&=*e-tA!ʒb9Ryk E0֧OfNd8B+MHJ[얂!QIT󝢫Zܬ~k}+,FjCUҐY=:ݢK>K$ԋۙކ uIi \PPw!Fhd^W%MO9;С(:ڰBaŃ|ԏk 7AJ'̃Ugg%!-nU0{ U4fyX?$Vil\ /]ðVLܷ26/鲈`Af\UȤVt#W!$=/ ;p< U7؎(Q d$-RE<8Y>ԥ6LV8EYC^9/?p bi.ogA.Ro:?frɒ(t8].Q9O߾@(k+ԨniD ⹕^3q|QЛaK#ݼ_q!h'Z t*Z{:7ܮJ. ;QEΗ\eYs1-ۙW/ضyE^jq4P{eii-6Dc0E9/2C"Z#Q2@BiuHdt5̺"<'\ rv*2f9fSK:=ANrt/ݴIxP%> Go _BF1P*@_d®]4xb|Ngjo~C XCBRahOyթ(A +EӞ% ".쎇?r,Z,o9QD!8s3}5DDWwYPVQjr j 2SXեmĮ w&5ٺ8DI&͙:q)s7C$*"I?kz=<ہ|Tc+&*(6jFĄcY8.Žv3DےM - A@he3[]>/מS帨6|d 'Mޞ? 4GXLAGOH%y[cW(yv?ޝ|K^%ͱ wt6bNjc,2`ɓ~r8Û]l\ ~4|՗vO+VT(XMh7w^z6Θȴȹ==,boSUj8.(D4r_fu̅Fŗ tY'9njIOqlKў-`gkYP! K݅c`u9`lSh~;X!i2)Zk^c~lF2nNd*Dî-=zܸF}P:#Oidi)rl!#\y󴂻1rff}<uk_D_py WrSU-f/`*BRYw,2ê3 Ěɿx^úE/„f?lLjă?L̕QCNQ2%:qwYm/tC%u4%qov(m hj ׊7n :%*mʩܼѴ Ϧ[d[dDcS@t0\\,%*ҢH$f;Xqj|=ێQKC]O5 G7o%aKŪ8SYn2P{$؊`GE(W fw◚fJ_G] B;K  l9،I̩g {(ZqLCPT-B|kP+;VZw}7,S#@ްC%2٭sE2TZ4/m] {2[D]R Z:#+ [э:ߨ4of-aq~[xRPm+)ax@wN -?dguX<K>.+<Xj-#vӵ#e0ӟPf\w4O&,I*Kq6":Kc;cS5sd̉a#!2IX&1n%͂5#ԕڄdơ@&%uf3((Vwonr  6Ϸ.\TA 1 +P27; `30_;"?KG>yi3?eMNP=ǨGG%NtCƒ:MGGР4~^0--y<ht3/1ߟ2!2 $|z(LK@*ra&3HngkǩJxZ |+nNli }oȬ>W*Z%:L5-Ջ{<]WXer"G#TfC*ev;1~ߡ9ztX=`z؜5ٛJ6TxbKř3Q5I21q/eAUŧĕL܋ӒZ ]I#y}&v) /"rk @~Ć>FVH"IGp4^[U$fj ߄f+جȢGZˠ&즱K!$/]ÒX b A2l_;5X #Z9w,L?hpZc.I8咏3<Rh v}4FA&BUϸ;"t|)A|$5zK V!țPM5Y[%YfmV P>/Oj eP1cM[%\o#ƽ`G\㲻!~E}vrMƙprш΄ )9ŁOA4XlSۚ}qz/@] `A[27:O+Q-h=Ώۇ\^Jßq@JOn3R>nAs3Jr,0ť߅ڿ4mI5ȟ&j1ݱѐCvҨrOo&EҺU!Mi%]YH=`/&Ǘ(Iy))[ے­/{`% 1ec\ey]Lc/BvȖdK^wOT #:D$qKn [k0*]x0 Wn`z!f:t~LՒ u$^,w#($ZtRpL ͕%ĿX"YTֽC_OㆰlJd96UlHt 13AYr8 _hG޷iVFe#-x3 T uTh*='Fѡl?ə?9(P,ARfBIfmI%! &2+?WnFlacYwΩXH{z;il2"OgFHfcL 79F 7+x(!g#A 4c)ºWH= * C%>4Od \q=FRV B=Mmc,$/x{a5RMO=n+rsš6:kaN1:(2 lO}- gͶEXjIH1LorA(_CAcn"b䋤q y2LSk`H=9U y@l\6)H`^ޖaL01<)^t*0 Ӆ-:Z`Ce[dv].VCFQx ֋eKO&z$rn2C׼!E7&=x11/9\ۘ5L?7 VFϏdc.\9{"zI󻖎:AFǣ.gG,ςD~4_+\Jq]UwyՙbR|Fz`6^rz"`Ԉl.r<|%,A||}xdli UCEF 6(%QJp9G'2? Yjr\}Q1{v_G*+R! q򴤥%;mUaoWЎsӻG.ވ _(&iD`Hv RhbSnI<~Gޗ*|7>H,?~+_tK(ӬU c,,Yeloh34`IY@*Npk-^3ُ1S:V$A!6A(s/1 I̯8plERI\S.+sɔa^mY3H?<ݮ^eg=zhON+ՋѬ]X`liFB+5>3#DK@,m>BeRC g1 RјՄ:ZHxrpy`- Rg \:3*7XlL7Z6lA|$駛mF$0~Lzߢӗ>BGo2gmMI[lq8`fKSd`W$VS;mz|Px˗ĺzMx9Xn'qgհ9ea`u"k^e|OWѩ_ю0M+w@Qpِ6^VJ@Yn|%vy؏W3S{ɊptU8>@!Vp0y'#e[{V $3\ʍgaF6c1xKZ%)d%ZE#7'~>hvXo2,C.H)ȯi/e5s7y0~ÊٚkݒM m|~23Wp1/w)'@ gm'q5 Y>^Oj-X9ݒ9IMz}P,b֛e5c\뎭7!notllS"At[/Z=68` JCVNJ|ؗm!1c^O}hu(~# $`MidN%w|Qe xʯV.?}HQ|/u2u36Qb@& 5%9LP4=\mKzᠠ~u;gr_w$%V xEF/.NnMff6leЦ>xc(%ɝw-2WoQ<D$̷Ekuܘʜ~9S4mU~6)QA=*)Xa9P7`\޶(n2fD+ݝK ,LYhNJ8n qMzZr9Yt4nRLo MCwAفzx\}y `QI}iP! ڞ$U $vD>y|0֘O5]؂T=}ޅJG}-L5\L&_Y6MR,x̣fev 2V!V]Kx4I>'_˹xގ $x֘}AJdij+H0X\A(GFh*;M虞H&'>RPm-r7Lʼn68=>+9] .䏢Yݝ4miw5̀XP8 ƛCVV ^) -^GFPηp90X s{;vA~tmTL"6D,e`´1\mN8"DyRv|Қ, ް|q΢jX5_dPO- 7@c8< ɸO:nbG[%Uk8nD?w-ޯ[~h u4f_ֹ ~upzYA Km*g{M"FV/x ]ɲ'.qSKKI<hhT_*X&9m8sJLT2Uh/}@xcIFRAL7B_upho OhCS\F HɴQ)x`an\:aOld7 Ʋ#1!{p*mi 1Kl{hB]Bt7c毴~|GbJO#|H0xJOĹe9~[I(UPtF]g1]n)j.SaaYs-2 LmcC5@휑exp)7M ) ,TK7:[-&D5/xi.0leWӿck#YCA6:\7!%Imz l1$2J)Zמ1.+˳!VZ`r)V`-⍂52|!-tkqb̋<0g`wZCbl;3`izk 8RW  wCsjGazH,«n"jݍ _Jң7Ż0Ύzm%@-r+_JQ^s !9)P.F9d#Wx_eqq{fnSeȆ{MG7c̤ ^#"t?uvWY91i`3gۓJ֞Ln /d,,PzYV Al?_VʦoK} |4ӑ+1K6[qltQo{@uk0nAlQu Y`*`Cmد-0$ \p:^}N3BkqKtMҕ@iCQb.mS=(YBvmbB) bC0n]0\@!NwvD䟈nv[wW4Y6-KS˜>'&± ug~5ޓ޸,Ⱦ˭qGD+T>;ƵorǣQu-1ْn!5vs}Ѵ S<xsZ%H4}l&/{oe9aœo˹r(.2њ8k`!$f-JM^m]1WXN؉9Ć9È;m`Rḳ>;n v1ke^y}?) x>SN[Q~eiž 8}>Ab,\iF9v#`хu1uykl9TrÖ E1h' ]ja/:L61{]E`$n(=*?nӂq4aC'@aǔ|cqAb83J ڲm`)ARM񖖏n [ iBΝ -WΑথw ]0aRi3gCO,J `~'vqu^jX.ɥYſlѿ-0ZGOuF(xº\r tSMM[م?5v}AoCJ/cݛp>O1QZ`-;V 4]es-a$J2!kc0%0t` ÛT_U F>R`]9T h-"1&\T6fLTQIم)ft>c!oٞCoQY87+JHVGR `gx-!! w.ZQ9bhCN0XM=R}K{PlU pDqnC"J v!N".!꿉wU̚^-z|sHr?%rx.]T\r<7o[KhLAm].Nn #\@\Sgj,n\ %CktsHlnpz<^28к`*;vY= 9=_!Y`r1N mv@ܢ6%岅 \ˢW qcKI S3j2~lʔ\kDQkߡ+gk2A fΛ$OWD;,@<*iJh [/:6טƂ![\dMSv}7J4-׍ԆQo6-(#kJe9zlᨋ`xY'G"dhPO-E+:NR"  Ǹ. 46@qz2rͫ/1LpxP{Y0fa./k9O-*\đ~/pLrbVQ4վ~2yyM;Q֩NۑԨܸ[E{^\ΗZEMC:As^z&o 9LUrfY:tNw2y1uve&n~ElN&!:,":DghR,3eI*Œ1b&F4yUš^Z6B]M'H/Bơ֝].čB~7Hd)YXyq5#Vgt1h瓼LQ@J(8WKxQ}Qޱ;ٰق{d1:TA(n)]u› C:pkqtb\s7G [s\Exp9Ϥ6ŊP/W L|tL`/=ņYGoR7BA!0#wQ#z[v#4WrCsҁsxOKn)PG%-MssHi@g{)oRJ)M2u(lAC#=%ڟ3K*_€/|7rZwelޙ&9'FK‡{ 7p1'kRcI/a\TpoDnj ALr qR/9# 8zHGX*qukʼn%g1OW!s ͽ-BHCl끉vVap0[ Ev,Edje"VBBũIܔ+Q@.#:S%͗()f92LMQt FF'aܦ+ ٳjR$F NDyZi)LE'193]lip85N^O6]ՉhhaW83 =KYr(3 Hѫq++́JCc}(U{}{ ykJofA\6`,PٰU6͢v-Ğ!? @ns;h⚄(a+2UmBBE! E+d@d=Nӻw9ub0_;;!ZۿxPZc80} <||6P+S'.lSr;axD~6Uð;!p*Ɩ -Yg?b P}In(I;dZ8,;(k{(^ITץZ&b1AH(߯ %. ӌbd+J|{C`>;4VSen7Iϧ y^ Nښi_࣏{gSs䲊tG]bK$gy֋JZ !X|+_t:W1e/'{Ktj ae\F'O^crqo+`60t޴ibRlΖaGut 0f#Q)~8djLr%]ZE. ,2IIBAl1GĀ_J%;U`sM 6;c#g71V,zq2N.*0Z 6M3"^cBՉΦ2TῃQnr<:)ϙ!ﻻh>##@}E*XAA m G>? "Y_zWzV vd ..,1Oh5cZQJV:zq):cıjq5ցr$~voA龸Ĩ%R1قg^F%5y&p?/_f~/|77]_DD9&z9)v´`Tرɭ,6 M8HΛ!Kl#ۛ+7/PX#xvC1[)#_B.F+qnvETI22RpܨoL1;-EAĉvB B r@ZHYm F6md$#t/^8cwʙ̜)_`! }>0 Mtk2SIΈ pgsLiswo@6[:[}:asʿmy2^A$ɋQNR i26 CD >vFEObFB [#dwciFχ=Y:j3d_-О%Uo]ضj[SzY}~5 Ɩwsm;ʭ4hHlGbnN˚ps^5qX)M#=l|8f&8Kc7GC{ ,S%(OLS)ʕN/b nnF:v%=@O_%*7 C1rGk@UpC)+ඛF/Ω9a 'jRR:9d YGSfRnN-Ik1VW("Ql%0=0oE @'5-A)Ie+azzG.Sj! $o?eOʖ R?ofmҾD<}K'npn%nD"my4T18\e8CBQ:z X`5~?܏e~FaCEX-#JLHJ>עgz$h3]kx|j2 tc,V)s短Ϲ`㛻Z/o^}\"I1 va64s ;$g:[0hb:*R1e)}7B(.[n{.] V~rOL@m d+~DgCxKY!,YmFU=z`[, VClS^$5Bb6CGm&:QՠiM@>ҀMɽaJRHsvtPabx>hT&IʚT|\UuF>eaFq\x8a. 9Fot9$*+Fe"eq%;W G8ǰأ_3#=h ,J#h+p 3DUtU;HYZ'(&F0Ըho u gpa%t8NR/'3hS7®z'[e&v˨0VuJCN "n׋C!V%' Ι6۝#[aמ0q}s=W3t@1tR"iXCIQ1z>ꓒ\[wW_n`O(%i` 䞲7-@,/ 'R@k7g+1er&Sg&?R3.aX4QB_h1vѾOG>u**{{`-1'3A" ]J|B[Iٜr d*,U yԵAaXѦ((2lHa+XA'¯li Ƚl gDQn/s^-1ZRcgHi8xt̬>ySi9ng^v>{s w@Ϟy0>=O !' sx9rCGAN" 沁nB_L\jM~#SN+B76]z|2X2[G]z-St]4buQFH ѐJfS%d)zJv y-'wvQV%g*oiD~kaRy+jSRsBΘRG&ݥ^M<#0V":$BdZFkH:[*ܒfo A"_J8K\ @/ү$_To28m R\ QvFyl8XՉ:wd^Gjzk=eW*E1K6&`7ydzgn8'oK&\.͕߷CsZn+ZdV}_Ge {b(嬂^DUǸZ pB¯C˱?9XвVa+%s}KODv JlGgpmaYqϳEwCW1B+fULս6<6B},cC8ƃ)cDFh}B'DHS񁝈UsނT;y{ZLSuwU~tWڲ78uL3+(%g;j',+xA4 ?!TjUG:B߳0+ڼ[Ԍ:8KP4*gwiGEy_i_@\jӮ?HhNi/}螂ph}hH@2ź= ,8x쀏FR .rh(Qwbl Vei e1/S$#+DVUU$YYh7e+NW>n75\!6 6T1'sW 1vhFс f`6ضLMlT @Yl1#gYxp/:WfBpULj:eAY!H 4P.<1v.#VOI઱)"? `7N/mLrph. :jy=]lC`yZgkUq} .:xAJ[ڲ~^?H]U< jZ{ۍ 42k 68ڠ5<5e\ў8x=SDt6wqV?ON%x.a D]'7~'Y& {5c?, rq]Ǘ,}&k{'3٦C|Ƥm6$c IC<['.3tL& erJ<糜o;: ,X3"vDv r`AЉnQBNt{ĈBpĺ8F<%}mo XپLFwrv㍋WŚ>"7noz@s1͊|׶'ݮc#^VauL:ߙ\WoDZoؓTGI1"a{6 7B(Ɏc\U#kg5~t-S%aQ9Co4jy;W8C"\j,sMϧb%v69HXȱ<F ܒdw'&cQ#nGyPJ;r2k}4)z;RVEo ;-D5'V?t%|}h C8A,D9Z̜yz$()&B\٦+q$\!VX-kRhL : l_ک24O/];$pf]b-%ٱ;GP$F mXQIá߆'+&Ijj|F-),(;vxtċQR L+xRDw},k[&>bnRP6P{'! @N?-߻j/dGݭz;1\uud>HJ>^ŔsMNQ_S(-3td7F ~Wy sø}*)mbU;޽)_VBkm3sa@oLaѿ.ؚLUp͟ɵ;^@[B꘾5nxGmNěNh՚dFL"|K>ǏXQßkqw'Hw\瓝uڌ B?il2}PJ9|R-PXH'鸗( ;+2eCo- YL7,1g@q,O'LRE%$-/cǨҐz>R$L.kWlӐI{  $tK!m6æ3{`+lz>_}>6`lLfv3µKa;۠ I)>MZ-7ڸH,F\,2e ԋҤَ4jmb98=?'Ls<4~9J| \*ץЙq~ی7B2zoDT6fҲ,0|KV85|5!KgG`}֓H/ fNy$XD go;xz]1 P(Tf1?_wsd~Uܿf5HK{IA=Ol}qEUON=w-ZH254Y]OX='&6/DB'<u;aa>Dpυ@u8-8v@iqu,84zuQ![aH3$^O$(櫍l~Û#/Ù |^ Ea(44Snxe*!4R1JQD wr/0sL7~;M~p Y5ZK+aDDΈ% xd>k39iD^X~풤[(eC-aܜB1TRwhp۸I]M'Squ#GBc讧*ExMb?qBtQfH]it| ă`gVv\PvT(w tFu\Hz9#^GFWIӓCGbbmqPq4;L qUefeU7-Oꋈ&(zZ%`]3}י36n%}?/@ܵZɢcO凗%D_/ٔ3W A:Xt] Xh}/UEs'zʾz:h!T\gZ ovAѵnJfjV*f.ı54';D]l>%AӮgNu]|`vU6oG7w;Ric.60ԷQژ&% `/8n!(v[~ŨX=+Z0oipvW402*ٸi24ܮ"!VMd]@iw+<]M.ߧ #TJEK r$7ߤF %1YuwNeO(2C'u4Fs rWFb[eHEm\PT >pNuk uOC 1~Vl_Xkє:"AgX#?{4W8iB,=_c$3p$HRQ1M!_WL`+5?n8H0hDQ+vcc5 krTb l/jr>Yx~SUw d1B(iςD}/.'ǒ|6%'V{wA˙s =P +aTp(%cxXӶo]D*FPȻެ~F _Y֭c$En69h^U+L^iRKxنDk4+>?l;s6uE{j[UYecG n ~>WA E'*;g7n>ODGꟇƘ  /1dԃSz.jFrFzH1L)^,x}9 N$v`53b>^ oSv!ޮmQ)lk/Ź&4ə|UЁZg k18Po&|sJ]󗹵nK紡*^s|$"ه#=Fo-D*ZbbV-.AP.͙kYIKHwt_B.fLTKP$AwZ#_; pWn>OCyʲ6 ]Ms0.*ܴ{i Ww/IiT/QԦ"8<]5ٿf}0KM{&;ZYPyPXAO)X&[lCp*Q\/]tŐVkŞc(p*Oq 9Q<F:*QX -ojϦ"A ژ܀tםc]Mqi(RU{=LP-Ƈ,/mc'/4efg݋;Y0L=5G|GL`;Q.#QAeTjMFxֵXxAr$yfb.Ahܕ0/-z`]ryfB,fII p!k3Xj%i}JeY)bWt3_7)—+֞ wɺcM,wq?(/n{VRTs~tZN\73m/ӝBq5A~ )ު8x}fJ=NZa#ʽہa۶GdQH{f7?\ĠL^w07F)CKT~5MN-Ĉ'<{x=PQ Ϲp7l|~EKgJ 0wz='_)UwO/&L})# }_ 24SRUOOޱF9^JPW78Bp7EJt F;w .2cJF#0HX{[AYc1>~Vu% cءƇ6 Nhl`I7%+|b_EZ4(~NjksQqɁ$jWL?S_i2v恁Hį \}b_)n Gmc]$MŐ-w`sUW,ho>%_P?pkٯ.4@\wIf>z??(&GR0._mx[ bTA&X/yEB4E3J3[3tB ])^I 3_Ez`=4EXٍJHYNj}>A|qEj0SVi~(\]w 1e%?jkp`G4 #-{l8p>.=*FhT*qSzʽo~V]ј&tBC+fZ~ $ ?s~S'IFzGs ­S{̅[7PQѢ[ݫd8ޫtϜ~gR0#"Я [_UUqg? PbD:$%`$^i~ێ~9ԙMo A#a-'JjϢ^Z6Wf@}Nf׺umч_I_c9~QNJ-#FKGE.S1V i"eh%v/fYE[gnpji}B̫*5/$ܢF)*5׻| }Idg[ƤHCJJ0]wɱњU(yy:j.U/& 9o]]M$'K+RYLK/K^9lĮ4-ٕ$޹~-j]4ʛ$f/igq0_ =#mS# ss>Ho mO+^Yr%($[5*8N>w>H@Z_CȊւFc%7ɴQTW$gzIJC/5cQi%phЭ y+ȅ~JJ $g|mbw8|Ѳ%\B)C*$ tRAb LYpP^ R.惂h+kw/4PVܲe8GN[m|s-T-< b̗L7(E`hg2܈Eޅh Z+V&YR?Ug '7f]YGHfR? C&u[A" YdಭA|dv̟}t#c{YNLu|MAR@=G.mkĎcdu*Bw>L6=2gns,sa{ƹÅ|ztJ,-gIJà !}o \XQ#Q# Q 1m:?+=5_* sn*8Y!()|u@YFRMb%EwbC~Ph&¡Bq*y0QW%\)b7Ht- rs7VB'w Ӑ8+mť#Ps`c¶Άmlv|)A75z4g0yFxujÍ}RC۞J[V LõjWTM9e?mV K|33@?}6pqblHt:@jOrJJpZ őqӁ!\I 33}_*lK=gT,%Iq Vz:× #I xŲjq)hI5EW/Y (#; xF jK S' :_]3xYpXl?t'<.y`7S&)¶%8&''.iA;R?hEkAt/>FٯNO﹈CˊJCcj -iDK;bdzT'pOFN#w_İV<D ,:XSqtr% UUZKT<%lԚثcp{(CyQ 2tn7Ǧ,t}3f3LˊޜKھ|X!y:PercjE֤EZL}f2jNCҼ £fɩ%hZؒINpfF?M˒TX+"U2Т3FS'g@carXM1@0VA[ *;V#/O 0w\2i=%pNf(1~ӂ\W]|p_' YeF`=Y&Tiw Ay$p)JhxAy~\IqZ.nd. 3$gt5kKI(Qk+UđQjH$(5KvjүRcJ̴m~?nG@r.S f* 2%hE3Jn'(D`AҢcSGަRq]mz$WjdQ@y1t/~4u]OPdW48e=odl-Mտש]Z w }ح9?&ѥ>y+5 |]M̂k݋4 FMg›~ G;B HQWSfcy$RϟLK# yrqbLcv QNQ;} NNlƐudZN8Cl ¨BYqhv='Nb^?̬Aae>BvHXTS*ɉ2КQ^7JOf ^QFw3G  ѿf %W DC(]W >rw 墅qG34yW{γ4Y4K f>`>0>\!*iA(nۨSo?A3tRwTҨčb]_>ڌ6Ugk0H8K' :\_,xgA _93)S;IGP[Cbb$ӏ "XSUNҏ{Zcvqj.3 Dh\ܠҖ{#g@ *r)F<j8#l\pyo]Ne+Ti܊5v ~%ON4Y eo187+R{^vB=Sqq:!fބN蛋7\ikËVƾ5̵x>K x#FB38z.pSS F27^7`jl; (*;s5r ;ȯ"`gF6cp6mҊa?/oG#v4euŐ~a챚q G%S<[7i6RS`dBV0ΆKV?B~.kzC(v =ts N.q9Ǡa'3BdʯK4ҡ8z݂;Y@aT[& R&T|; %pҪ1kD᧺Μaֲ ] +GBpP ?^nij-즯 ;JjKʀڢ]xYCJK|@bz+@cNgKhا .HdK7c4_ ZT(SF:j'c_.b MYL_ʞ\k:5\N8B~2)ɔ'/Bbɟf_O_G@Ǭ#)) ilv)ŃxBX^rfN٨ e-s Hi)ޥ- #5b!!>?oJD4peg!BKvp¶?2?$n Nw F8JDv]W,UByף8mcȜhs 7ܷy"k3[%]qW_'?u6{tZ&b[|V0u|N [F@'=]X!0x}(Y?"p ]VSJh&DtE+O`@*5MzC3n#HYq:(2-e;-cmXYAJk[* Q$u j`GZcb~t>M]*'8o^Ǭ4c.w6l?YəeD {69M7g$w`*w_PZ7w&>3_ _;6CbVt8=PKABy?'grڒ/9=^Ds,b&dV-Kew^V^y7^oO_ߧKN*+j(5,ůgm%["aj^'"'$"{u os(* nuǹF;K%392Qf7v_S/KO Pb%&$q%}z2tekx%\r\U %λ~ ̘2d zcԳڑ_8H LܳD-RE!-G-8{D\e'b_P2΋/sq{Hs9#WˋՒӎjm8LZ[|!`#u*kcyУIQYxg8% Gb|U%t" \kɟ lBDѕkRZ䘫D%HnGSEl Gs6}?T済("[;O JuXkf+~f @ }ԤW`O %ȧ~eO\-KC4/Ih| GYS>Ņzԃ4.4vFKO1#S- WB[]98BVS})o\ # l)m8X,ܶ=ve,D!g7G\o[t3/ "$Uc"#^7 Nzb֒V4hi*B`Flxе܉kudK*7`] j+BlDÇrR@|SVCcNO/z(b~(+d( #2РKbPl*1MN"I{jNYmVH@rpM:+[.>?Rb+8ovU]PWNh3Q`Ma}Mhj)E$1{)ĔjH-PG;ܒ#5c,+`9PR'RA?KC?nN6JӲ/9>i}-`dC@[Ǟwe~ݪGl@pظw" \)~RœϻÍ8_Mc#/-ùB~ L6TeOu {^^ 7`E0"HC:h䫿],C YY&au-} za#qf&"B7{f垢{S V^271 MV,]#Tqjٳ;ݿs8ZedL!M?<-1H&+'% ,OJ;N)gw$Hr&4Wq M7lt?3@>C^@[Y6rbhW ?}N`)wOCQ,90 ;r&DB'9] ̀Ԓ0G _ԓ_hG9 d #KHG/΅3,Y[rgg:PHy`oh!H`lx֋.NJӴRT%sT2|qˏI9|qa2cPA:Ľ𻌛~L͏2䅚N1h(#6Bo("<;#7sY& *%RC+´hڥ2RnDJOm}lT [tBF+qZSd Lyu8A]- &/Pjvkt/y6zLf9*E uV 5+kwj/lT50~&*Bi\G3@q '2ZzWY/0p4htY}WԩHbIL kwoy7MuSG HFQaq rE1mv&"ȹ!?YX 0i>pPEZW* e6dW O Fm,p˷3㏹ 8+{?Q1Mֺ>x┡p5%W]ҚQTU/2V Ww? l+<ѩuكPS2[b` '#uAhD9 bۼpQeZΔG[< 񓍏gUHaSv.*LN!=-vr k ,h|4<ȚKW Js҃\JaWہ%} _"?/QfVC~"' V; U+K;);/{jπJ+q {} `rě8DwxZ`$igvGP5j4vΚWAO+0>od@Merl Z-f]/?\69FI8r.g\SRw']} UX#}5EnGEƭU|6tWwu|>f0t%8{l?#n/4VbLb^ <Ҷ8](Lc;ǿP>>>i#~/[(LUs8=nL` {"mUXST%]7 K;ф79ǂOP/zp!]Ŵ~᪠kʪr^O,>[氄YsOT^ish³fa)܀BN9dO* m*>SŋpI􎦧)`0C:VxVX_#.2 ? HHC= 6EUW6BG=k{#X" ݆]XH[o(ꃷ'IvV|E4 /^>z# 7K􀪝B.,|yXGp LxjOwPT<Z~̧ WSêm"eCEL \o0iz z.;{U웾rDg@Qzά]c=pɻ4_,fEp4w=_s|\VcoC^Txxo85YԉD+n-%=Fإ(F6mt..ViI9' f+2GQS Ƞ-%8L͋^ѹ W ur\)7jYTk#%'W5w_{QQq>5ӌx>xy= xT:I?*ǁQ"قB*Sl 4._ ه)} 2JwY':9$Z\CϜWfEp Cs/k6 :M/ߤE!,ֺhZJ'u0`B!(6JETFKX',}1)yl3;J?.l1,B2.r>s®_N10mh!P y_`oXm!q,a&ƋiBѿF03ԦJlC V,ՃuQDGG.ׅy0sBI &% ]V^6#pG0sf"N,"IifȹѴEEAŚyΝ6c:BFkZZ4hTٙ9aC}w|(;#(R6eѤM$ZV7Hl(![ڐƛX,Ka!/) _bS!c#Ae"O(*dV Իݑ_a T*3܈Vy|V~MBnۗFָuyb;iU˾+ڥ4un :D.+nn s,ͥT$U2A x9{@ì 2|cC cMH;j=pmjURhY:Cѓk@C͝ 0!Ae<(5 l>z&'eRFA:He:ۍ Z24n6jeu,FJMO1n~DQ;#NPU' *?M 'w|)pl'jZrhgsn/D%8cW@\rk̏SA/;J9"9waT{ZmyXVΣ@ͺa" `191ᚭ2w`}Wp|m)Xi'PDΟ|F/%bf_ gRiw0ۺmow%Xo7Қ6IEٽ),Drf^ qa\> 7 wn3/XdhSÜzeZ'5B&P!:b%w}<!ßfyMFϰJi9KME pي^@У$иP?ߤTFӤazxH1y e; &&۵ӅrC܃݆;&=.!WO/XbhyvI,B{KӠRq/WTlםjУfiMˠz aU*ۜݖAH ,7~2 T_KS]lP6.3ҩ7DќZ ~ "DMj'}Q[rOo8mg'6:Ք:vB WqMʁMqf^|w86.˾iXCFUKTTٷԶ-`K G\chR4vV:tñVdf}8?rY y£&MRJn:@1h s`&} TLw xZQP\$I -Y Ozy\3qȅ֜G'w&'a_Ѩۛ{9D;(QݓDJe;cPDͼpJ9 X9*{vk2aV$Xhu$lNo$h8u_ilG-1|kD]Sv=2x|NƤllp5}ᔴ44GFD ѻ&#|)C9hz0_zHC>hiف W65`{YZ$x`!AYت|sWI)BwjJ}v ʗKb,~FLQ, d ao?RB\ܒ+%eb&ot*gߋ'5ȴHt#!;<~&IүcRHp:CETCM{z䀖wD=$;'; k87`l̨K` 1 d8},6UpZo~ K~m/ݜ%Nm@p %/[Nr|75$LŐ6)Ւ*.z.21;_vs2KN` @G6&Q++e jOCI:q+JHt&J=v#ύ6c)mF؊F@G(򛉪ׄǍ'6Q+1V8ØMك]wZW'P?` bZx:TIV/ؠN _sTa@k_`/u IJDv`[~ޞk+1 xrHX{ ^LaI'(z_ fRQxd"}%@, M 5 [j Re,Fr1~߇hن :#l&Kj>1tp{ܯİ'OşT{F+ߧg𩐈`3Յt慌,횩lHI⿻zAdDl[L%,˫fR^TR I!}UZ]s=f)I 0Iw6"` Է!=1Ռ=,̓E(s+$zDu:V{ڟ-Lp9 3zȣ8x tcc{XNs.#تH>[_"JՊzi@lt!:sYDn7F`Mʖ8A7.VHuNkE?餱 }tsm6'R92^rzە$^# ص)p^:KG$<[ ^IK d]| ?_ ;ڕҷަ|(&5cC"Zw+ݻì$YSȣi X!iG!y*)b*}w,X/ =c\y]ߨ|]zA",ʒnQ>uoZKp()rڄ}Ts˃~^{%VEI0p]U헴mD9W'w\IGm>JՏIJD嶰'3~!9­-_{֎e c"op+oC6GQT`ܿdINUagpp?$\ Y;A=)tʾKRDU m5ߟV\AC>NLjv9h,?i;\Vi]!ݗeFm}=&BiK0FQroZD63*<_Gc9!I6ct-uI['Y5㧃ᇅEc>c[T,c-vL -hzqQЇp5ֱ:ʟSЁJ:+su=;4iƁo_ħ}N2_~jϱ:+{&HNʤvf| 1b>a`ߕl[}u6TOq h!X[?r7 ͵a7l<5|C +Um°=T(8YRYa3ٵ$0ۄ˻[>B殏(VBGSe'' e UeWMGqҔo;"QՁEKH 1ic%ͳ ,N$cP2a1 7*:fPKOv0Oc4Slj.@`E%wJ/5Eh!XUI `g/93"+ӓ/dϝ\ky ̆ 9^4EūMРNbwYk1[q+:.MK%%IK>Jrw6aKv,|S0u|ѫyR똣Av5,nĊz=5Bo`fFDYA5ѼzO/ɲO>ܓ{YZ4F(bVUXVfSBl(/jߘ*04J#:.Hoì#g2oĕ{{G7ƽfc7q7⧯)֋֟"Q CQ; mȰ[(V#Jv*sbR=7j:N*fY(XNi1˼(t[C#lO d\g\A[S@Dh7M_IqJFD,eQv62ǸG|.1rw2=Kt&)"m*W3RO'$`I%o'jnX>@Mx8;;'=N+l崴ORi, βy}3"ڋ,NŸEj ;9,mnwϷ'(M9*Akt嬁!j㛶jwQT1$A7Yf6?C5@R2 ͽ _U]>lp5Vu~#HT#,B(wFELr|`\FM~_J~0T?SgQr.cg#Ffi~6 .&0P[ C($|@<5=6@oo m7~n7^c$HƠGH`5*r/[>Vq*Dt`W1Iޞ66+^]Z2#q |yf](Ԕp$Z_ b; Rm5áM/ V)x1MX6W$JOrm=?ipEK샻:7vX/+H }i)Yr!&N OD sY?M\6=twiT,ۃU2=\-D O&n23gpgj{c{HnZN/pV{?NKYUزA9"GTb]˕$;Icݫ7=7Sl`/YxݻgP*d-Ԥx gZ 3sD˒Eg:ۺ& {* CEuQ{/V^u3JM߼t,xvUcW|iJ[YQM9ftD)Pu8s7&rvh ~f /`wa@gPXw|Eы BB]j}얨S~yLȄ^=Wr#QtkdVFӷEb@#&{Q ZO0KғTOaۊzqn;A7mM0NVTԞxۺZ"/ܪ\#%yz\^տA1zճ`&8TΜB֕1ZXcMY[r",;q*0S'_WjJocձ.}]y9 XV6Rc<I;"RN2隌|hRL__ٕJ?ɦFw)D)ȠـuX&Nܧ:<5]ӲV2mM<OTg}P^C~PBE!&Ŭř0+\fV<킺=Ӻ'KxQ8F[<_UwMӬWmx_p!AtmVVIs#!= >?w*2z勵bIU(3 2fuEGd1m8_*\V|Ad'{ឝ ,GKk*[1{$*ܩ)RInLDr^>=vs_bW]f Xb Mszx zTlL3h*R7 KSFclA֯mep4y\CW.VG7P$YEKɑqځV:ƆTHb<biDVUZb^UEus(G[yriy=`X@%d3+'$ NNp͂zhǿ5Ļ ?aV n /sp+){Jrc⫺Fbp1;rFs~E,]=ent-;KKD 7Oڻ^L?`#_rСq&YUN0̯ZSmDz;||6w~IFgq!BUqy#Wf& '{_Ni3|.rk i vx@*HWݔYM{ ;:WXuK P\3ےYUL)ܯ+f H15tv]/X/hzFŵ<e>a}砗u b@k"nNw:p݌ԸTCKKl@n}SF Crv3gbGw\o>kB2 Ir+̍ŵP|%XU_w={A?yw+l ?T%V: xUg<73 [5N⨦+:OC ZRHZ)߷rR]1D9ecIťTAww  N_SO$= q$ (ߚi_b;~3?]=&0{Tg0hn%wr:\CI^ƥikq݉ϸ*Ыu27QsR𤥜c* L,N/ͱJPqif@ȼI`Ս ;wF)X%AKC:f&^&Q Wjr„e%Z:y`';PꏇV$qxuj96Ex5$mu[b#'1bB5e&mʼn [.nG5Sl>k:(`&!ڲsΘʛL?Di ĩTsew#Nd&Ӑ~^R*olMAnSd77(HX #8 gTΧ[4X5Jk|0Hrϗ dl# zkn>ҖdO )z~̛Hj|bzI;<-f#_oNB(qtr'˜~[ n%ϗ)޵^Vnr~ۓ9h@bh Uo޼rֹyG7Ox$ه4?)22Л{V3 e1IT4sLqmOXs ɞE΀%)xaѝ}-Dg9LP;Q$1D0?waSPL^^+d Nʠ^NXGLQgۑ7Hox:NR:Qjvkz|p2vr8[/ܳ )]ΚB] *BVlBUǽيT[tdloB>ǘ \{3ؕclG|`[MuD'2Z}e,%lv)UہyKꬤX:)vxkbGwxAoՕ1pRd!Wl>lF[#ZdTl@VfL.;mQ)bF,˫\`5k/5xqдtg 6/7tPӴM=)}.$<󩞚L0LD&7ĊνR'|G}e$ ڛRxyU%(ݯ,9{h:"8+mMrHMn~:mܑʿzQU%.XHfKFN@<&HrC#!>%8"2;h9~uѮwkegܳ]1z<&9TN+]TpAq<4ߟAX(z84"<7';Ay D6sKq d~b 9Y(ڕ=_F;Mk }9%!}Jj'cm (9PW=U&u256 'IPe]'h$kd\·nv ]\n?g۶ hɔa9 Af;i]y:W=ZΟ1Ť+RZ7HBzʛ[$7 WRutk0[$o4$6b2Su|Z~UoÈ}A>֠!SIv$˯{YPȩ RHu$Ĭ\$&n̉3=#j8\dT7SuCET QiS`Ӹ+=Ud"M.BZH1MZO_l n7wyM%,mȡv\iZZo!MXrhn } !M$X6;sf7%y5 ʐ˖w\UpQ˝SG+,Sh +vC8Ðb >dA{Ғ-dA:kh":TĚ~+bIQ|0 >0ݖ0{D"]p `@ rbT`Ml$d֎Vr{agI:_od53IeÅZQs'S,"2g2V0h6DkajjO7/ fk]0檵ި/Bv5VFuEA_88;X4Ꞙ*M枃kJXlZk}8&o- IQpIz1M$l*MH8T[Ό2 1~- n5륽G h>`.z Si6$H/A[" 7Ҳ 5#gG?sޭn6aR9'oӗtY%aŭernn!J q[MAṠrڼ^}Dω{z`2i=ϓߊqj>茒1ڀv[߾|~7ZlrK%qwkTa:}Vj!\F -W1}UkLIg~uw0OȻ)1v?DnQ[4ݢ"YŒtU//T la~ gp3nᇳER08좊wSǖ8Mgװ{wc6S'hGU%6O DaRz!.Hی7d+d%՚.U.2_Fr7NΤ $0;;vў93=WVHйTjNe==}f$^ȉq1qF<.$jw;VST*+Iճ \%Ru~TJ| ciϹ!CT?2; ` N-Xv/@aĤ`v@4ALҝz@U)PFb^V,OK*Ä4fOiKH:\]wI!-ҵڻ􌁨](ަq6|)!%zI^ %W*#AMZ7dʆ!nZ: 4|]*w한t 1D3J*$%_dRztن[ KPÑwgaS#(ך1gd)ȿ e\^X{w) 7kQ&éW]SfcN'@*w;MQ;3 i 0/zUGvR(!gȺT8]~{@6yW\ְA*|݊뒦;7=e͕j&6oFZ$U7^k$$a$KTKcZ" SUoB/8QrcK޾dɌ$5|콄3Igg9Z=Ɉ[%5o3<'"N澢sDz~NJE ~ڵE\jO7D W2E'mIAȲ"6 g )5-ZܯO8eA9L }+[$2`Vw+t$i%X Z>VTٸFYpDୃ7GtV676!5_CV !՝眄hIypvj) bP>pB ;`PkJQrDOhjW`%x2SqU`T+ 'cA #sa;gE,pKh55MImHz|>A'Lkf6s$"Q 支 "NMwؕ7H:Y'W 4s2ivjq.$ذM.xL; 7 r#_N.o+6(3)6UFTӏVΡȔaG$&pυJ3?|uJ D;y*𤩎;Z™<(A9(K)"눍 Yyw= iwu7T/}YYy:)w[# eР[[qm\,E: 2Tv>Y\.@O6&g4ʯ3Tig]@އw3h~ž ;֧WX]_pT>4JKI)ʧt4}EUJHcc}m"I0tsG|hGhpr9/<o~]˕Af@W~m ͪ}v~x6;/qMLUl撄N+NZ2#x?JNLst65Zlh\;sn&v(0N;>tٳ{[kޅ¯|yhraǭCxFVEo*!7"c[Fٶ<7! Z#F<߷]Ვ/{DCģ{`yV;^&0E7/T}fv(VV~ð!nLo+~b}ɫCԂNazّy;wCjsT,BqyE͝GHRu?80IYoC[ijcOJ ێor gBd^t%Gpjymda;S:vGd9}z(70#>pa-i,n%w]̡-L>N;tA!ò9lv7.$.`TGk{OΨ X~/O'A'c+C'DyN +5b[\؝fnB/\nʆ`WBt{Nrx&+:Uu{= nB4שjJdiwsg>U.w}(h苳x0{uq^FY^w)4tOiO9{twfb'b;X-Jf@(Ktƺ AȆ[@셣;,`Hcfq`vn}4Q]nSء'Y*R2ʭ}k?P.>w a[VDz|tŸ4a}m@RoFTR[8'k!)a1=1<>`DfF V+;D>.4?N/+S vr(m *iCۢo\ʢBfR챢oP "5%mp8L)-4wp/ :<B?*1 ) O޺lI;J_=)F1X4=5Ce# 'E(iIc}r\kwk{f01Φ NinCq QRև@O%owE{&?s_X'@87gJ8}V4dQD4fe }ʯ =uu)X~J՞?~\8id>\4xW6{cdĵbIɿwM%sauuLۨ724`Fc䊪U,N1g`B_K[91YDo[s/{<ùDvƨe#dS}q߀jlQ:xXڟ|6,ϣoǯ1T -jmvC7Ҷ %^l FGƔ \ 0:M8`Ӷ2lkc\:ڬ&8m])$^ PA(>MgG M}AԀv FgBAc;[wbR&Xby@y B?zb_˲8n CBǸŋp2ǜA5(Brq\t's`mJIJE8hxzLՂe @AHS8|lox Orf9Rf''hA4) o1?<("WAMs0=V32:.i@wT'0]ņ4 w>zJT'=΅]ɹPH! 8֎Q{W&|XFBu !g7C#66*;4(!%rc+tx tB]5N$g}En8"dgɌC;>_}+EJ܅Hq q #E=q j1N,-䃮:FWlFscQFQYu5U~`j  ϋ<`i6] ˦L BPmWbNmFU>poz"=qNcFlYBm+JOG)Bb/ūޠ:Vzm"~N# 9󷈞ҢB0T(w{/5Ȳ؏ju{u{d,,L1B)qڜFB9PV? 28JҚW_GHVeyi]g%3CUH@٘!wwFnM_h_t's  vT9/8ĹXFAeyeLj!ܱ4=m L!Q)E7vZ$ߴsWQ}y6 5n\v/mbϺ2:heXf"L.^/[[VQJdC[Ģlu=}?E|EȻ%7g!` 4.;I ԷToRW$F yprD98BMΙ CAε(*&D=XkU5J6Ae+O(v$>w*pj9YggŲg`_8˿YqTдE \x4\)gAB20}it[MA|<)P8]`? ! q YK~#8QX"CۏiQ/ٴ0G*8s Vz3#0dHjMч. ۲W]b#z9BPjf{5xb|1̭-'<v qsS -m`8CQQdjHW@R=6WruU VTe!_/lC#Rx^q_ WTqyz>֢jcV+Y\.󾃣\N$%DFm缧-QW /ɟ-RxA ys[ad=CԊ5-UK˂ox(cc}\H].{ ,yia%嫈$;ea$X~+V*@`pYjW ?Ͳx,bG@_G p!9܄R,ŵr؀rITtT2W,Ժbj@/>ua$[Tiڐr-D@|^nX~B*Qb6s[=hνe []ʮ]:Rm %[[[Yl}k"$^5" z D/,-}=.~9,sNcpD KhR2.߂5aav9{*;`Is#܋y_x>Ca/glFeU#qFv&,r h Tt^A q ! cM|A[%@kS AǹRՉEOyR=}hi䠥$Ηsp0K/W S_ Е؆*0҈EkBp\(L9!q*P4b'Dۃ&(" ~S;9|xLꝷ O]!]Wwp[yDbh|mQ+={R1'- E4il8M;Pwx$';ӎ{g]`|?R8> `b~3<:e1;IlgZ IQ}h !&`KvR1֍QG?;ST Nf}~6 MF )" auꈤpT^.\mo+K&5"tjЋ1 `2:b޹uA\dq鹬O%\ey 3Yʽ{\XDj麳ќ)Nbn8'*yLg:-$H-jOhfOE{&kpʐ tac> ;`s {E$=Ĭ*3=ݭIbZ\!56}֛kZQ|Θe JؑCCT](~ː{RL7/EP8Jo$q>J2#;dZΖũ&d)0˵OG¬L1QVoLݤT"h3GV7 TtcY4nSlK:t姚pt>Fac0%Y1"<>-\T./nw `jQ#ͨ#LU`'CCl3;)ZYf+wuawn/a T =Y_'i sL[ 6,@t”rLftOo퐞$$Ar:w6Fy7QF]yh}&o7Nr濨R#?IK䋲9la9"Ϫ 4B@,\_{ j$|À"}@玏1CO*MEF0@qv}Cg70(P9 #VIQA_l7d魁9.}t*c3_NTj(g"5=rνޚ2ȎXen!O۫dV ?&h;GCr LvؐN.ב;_?zu$Af0E'IVB{4Vf(rM([eaM^ƔZwQt-nW* P ,d?# =D*M_@qռ!}94p`!açG,ҤLISܛ#acLỴ PchOU{:dRcsFg0Z>ۺ!6&𚮶݂%V!3B].jd 5C^lGc|O5.I]Â8{1+7tB,%WsQ $kōwЅ/ć)ouBB]r(KUx#L11֦AT{|3L(p|tp_Mϻn D~%T`nBWql9_|YwU4NgI i22;qH@@H!$VAs?U#6rutt`tSS)La`Y8zM7uSX&L'`aHA/.z3RL`D9kXD!LJ(¢wqGA-;mq 8&Tsڜw'C:bWA=@6shS]!ºkHݦEg߈w*眉+ًs ܿWq_Th l~&+x+0. ~ߨҹTV8UJMS83+*KdDrQθ;dZN8oYr3 X ƫ;}uI%z%;7fEΞ"Ω?o {Bi]^C>s5m4Mx"t;c- M:B[s]T;StLK6L7Y_LɅ&9mL/sHDm(ޠ2EރssEOwْe*cjD|)*%+ !X<-VAcI7ɤh٭ &vF{^7ٜ9Dڣ&GQz_ ^FP=OfQW/k.В5_Xoݖ1ɠpu,f ud| c] Ȫ^aA{f,ۼ*%U -22*turx;˿EV`oOc h| 2S⸡&MWq3՗S:/UgRU9un!]NG'{*J8oZT 5FPEZ 4A"K%Ox+ 12/fG.*wTBF~j%c> W03yjjܪ< ӝ;[#erăM,b, Iݺ+6M,^%&u!9uVRμݮц9oWw!4]v׷0#_)ӎ]T7DޭmUg]PA&no5 4H9''S8AN?A.ZYdrF` ,T.ً0wT:5P]xX*AHgpB +Mx AL#Ï96TY]8ֶ5;mn1fgE'j(87Ya+y&mTt6 }:.+='L[P$HidƁ~_QqY[~絹UOT`MEv{qhx\EY nN!@W@im{)my—`ni$dxUQ~ʎcbNR#jQcn/ m .TEyTaDh>$M: µɘb\}k6L~fq/Y,u~V{3n ΃&y;(3مN!C_yt_`+n9b\Xj]$: d UӐ_ _'iKE +&`v(d >$L?f\=7O_Ҵa}z_U)N .krw$~: U$똺𗿚';}>aIW\W\+Z(gnU|fT\!}Q*'x$ XKN-[dp5AV~0l⢵ʣb{"B9"$3"L.EZ7Pg+#_,g2P^hS2s#y}yIŧw8if$I:^^X;:-_tvf^Jur+?BIHμGqoUMZr]Gs+NvkʙeWό".~e!G%> B- )P ARU ZD[N]T 陉_~x28 -@S*{rCF`Dh B<@q3)4'%+6RI5{ѷ J ZHO*8Z͞ 4AI-M"p6"5MtOD.0tqWVIyr=hkD&be>E4p6\Բv?M: t@%Ye?+ V^*>l ܁-_4/W:یkXھU4.Ɋ_Q,nqeEMa?d?M(svSF]^?I|  53`== n󼍰jM*Z$/_\4/F* A%~ [&7Y !SEj -޺W|lRkc/@ֈv -r낧'UNKE(D#aOm5rL{b7Y@"i= vƇ׭*8Puqˡ ~w=1Y#кb-j/&y&yr{jb3'=E,"c:(.":OSu4@:qu"7U7wzdؔID>1S au ovw򞇆|QA̫ȊZs0RlX,F`JN,9AoՃH.Qץ%Aw +NJ #<WYݾ'^3V ó/y/Z *)#ITKWxW+eLW{wC殈]^%L񜉱Ϧ|t?P}e 9vZ]{N6XVT6A={O=Æd=Qh@߭N E뭄 <06Y^<|/aH#)&:Ȣ{n*~t# XC@`c!i < MoК<\2Z'F{".;|yֳS{7XSe(T+‚ L5$Z˔+;"RK5E qIJ!0`jv3=&cIm͚ ZF'*X5/xKbݷ _oW✖aq :ѣ }{wZrpIiu{ 5&$gs7yoD @w&^ﭗx$l r/ޗ^,ƪ`q|/TvH pvZ.Fԣ UuZRѼ 0Bd#Ru9#Pde sP=aL?2F{I9ɭO=a߯;!z62B{ZKPw=1_qXUpֶ)4{!*z&dE{aȫr;‹՗M| *YuodY* 0!ލ2:vVS 획ku2%\*PePtekh]t^h#>|+`(OE<.!UdIE ޣdТ͒RRB Gb ٤t}0+6e}t{;gm%2k^Y;E~q$e]Kۯ8d~/E46-s+)Æ!*Wr#گmӭW.˹+] ǧ~dB3I}f2Φ;cj8OLXzܮLAmx*ڿwbPA'QC'2܀#.~ wXl@>70؟.b+)` ,M8QlSʿ~EVu-+pRU ٔ29tfٍ(J0fs*2 |xl%~{%Җ\F3{,Ҟ8f8ZwA;}O/}<Rc ľp[0(|o3:&Qm֬sʗ.H Tlc$y$LyW6(le5=3?nvIuNO$6zTc@K-ԕz cj>&ܸտ$eAĔL#hſd0L*-+B~amQwHbqN^9-Uw*j+J3T=ٷv܂N  ̒fFWŴ:as Kpo I"ݟ`pܴeQa10q2`4Oؾl>Hp>IwuxkITSԚ闍ѷީb}$IR`D=3ZXjfK P/bJŢߖ^o`Ot ben7+6-Nh4م%\ r*<͵rayzq.7PLl&r{M7.~j;+,6BX; )\6g, &D2(#vk NS0wFmUi~ _=3M˨|nkgrA/J.ڂ%,U5%1t aFMѺX3@D\1:bXt_cns?YXO$nȇgοbrZNG 5y;dln 6]޶}PTHؗFLuaL0jSu7h:*6)i٩֦EXw߰}G-׭RoM.^ eq=y3@%A댘`Vhl咕 V,l W9AjJ)Iv99߳PDIb)kݟ{|`!=، %篕qR^a3܆[sП^|[Cvg6(*{ZذnYcZ CuIj;:W5ywn_aBERZQnn XK{Yvvv}Fl xn0Q}6zZ>YdMڷى d#Y'(Wve4>qAKOuօkc N>(Ws/P#r&v5& ة򸱢`/_+ۍDAJiHeEm=Q%ga61@J<0[$m |'n![B01B_F#)wЊwK [VȬ_iMav 8Y\Ҙ<D^>ab5ƿEInKVpaS1_Dꪚ vD"}](;e4`h fݦϻhM ]mA Qql mTω*bZ6]hw^!3ij5`fd,ƥ ´T5MTEaN9ynR T:9rGU-Ӌ_ai$s}̲L%)Z+Rۄs VAj> ЁRG}W_YS[|bxD{f*!) ѹXx1ǻ2Tb3 s:T,O/e#[% KѢ y#,ig, ڗ΁WUf%LgDgLuLiyݸ,g ,M!iJt ѩI|0MC}1`v5z̎=_%5kguȅx]Vrߥ|uI麖 ٩ĚӉӚ ufN(}zyh!a}ʵ!<|+݊$^|*.NnpAC@`;5,ϔ'8Bn_ 6 Oqz:J@_B@:റ-xՎ{oޮ/b:Ƨ'珰}4F/*]XUVOgQWF8; E"Vkk\6ۡdhȵ;o/gH]]QRߋ!Ħt.,tͲy_~x=kvVg},ji~TVlwVh͢{tQX-Ⳟ Ss kJ} 18rrtbq*B "֊S Eh|vPNL{+]~DnM NpK.e_yFLJf`>D 4ޙ`zcQvˆhc{O3QDjZC>A|qK%8uD1V%}k.!kg^B@Llvl+ɚT%pPH 3wUHw~Go#CC_iB3Ǭ~0tymq̔)fjf5] 1jn/P\B⠯qHMp?5G[0aB=(Vycep{͈큓 zfwp zwT8$\vjрI1PRF6- DRxe$W`'b"ѱq Ƹw-ceF  "C]PM:Rq]34'\id'w$GyzAq5I8EJ |}x*Ywӧo);թvUJr|B~C-06fӬXnHBx,(=J*?Z*n,^\BOԓ ˺VWʐl2*Y qwpҚPs$[ɺI[Z66cMu7BcSBfd0g=7fRUEZ/( o>Bdd&XySDaVYh!`Gi:*"/*1#O;",gH%S_L+ ! ]|+Q?PȠVGu%wЭ)6G`wsl0ǀvх 0Fϟctqjo`!BK )sl/"|y@!J]8o^aCRJ"V\1@S]m3WL*ĒJbuwQD,ڛTٴZgd\/$*2:W_@]r˃ۑ;hA"!bL 줟>\5/ V\CBFo2>U|jA ˜5AWZǯPE|M@H|I4UܭmN*30)gC* ]})܁+g8UJ&#r6mG~%{-8pD ò%HGorJ IOс{Z!tݖ(!kms:GsBqjjD'eï9pe bM{V"AK Ŀ6 .8y-J:%4alY3n)g0t<"n/{[k}Y[(v(t :ol@]w}8f"˚=Džtɹ\ _N &xήbg&l'6&z*!&J|WXWִizXMosG62 c|Tta!F3 _fatP'_\ BJOw%ۅNV'=wgjF]y^ ,^746H,j:o{k2*IcjMQ^)0HSuaޜ+FCfF WArJ.o`\;FSDT{oz|.euAa0 Xʛ B]^{EԤI/ln|Vca Xg),2r,y߅ N`# .ےAW?\kd'L*W/q2潓4}7<˝ЋiMGkoԷ< 2d7ΈE7>A!h wP^zxqIWcV}l]V4u[[B8)tZP6^LGI< WSvhYp%Ő*fPdrCg>TF+iB :)Ȳ`zye`+TVK $Z1* ~f_DzPv?>匆ufq;WWɀgBW3:֮Lec jY'r^#p rJwpwA`ۿ-Q K-%;"R|v゜|+xu&!ڡx`7֌ewyО7ڳ{ޚC/P|頥8쉬؁>#hb-S;5k_w!uEj4(!q}NB^,4'FȑA~{L2.E&75!nAi͉FoiqWh=,:p9(4eT.-v."{UL2BB0[BXzCy/)fس\~:ˎcW17 Pq3!FS8±6P)9'w@IBG:wHz,|yT"W/-$kؒo>-2Nu 0BÍb0\ҩz {A@Sw8ڲ]nv,=bWPZ`E j6>9U[,R `b(z`OTSoۗq5v앱ktE)2lٯ)({ ˠY\/}I9iԹEAJQE!e;yާs_qeҲ+CԃfjtF ~F1 Qm5|A05-0Z.(`}ePK,ghPoasycЌvAT[WĮ8+tVَT/)#ǿ[JNb KϞu飯%ٵӡ}9K@Cqxi+ֺ5Fm9t)Կ?&Bq~_ވL?P atO-ST1p#1RQKj_-۰b`xU m!"?'CρAEₕ#L=9ѓ ,参VISX?Ux-0L|-f*Eۿ}D^tBU<,uxS`1IS1e`ao1dr{I*"PX+*s?]yc'ƿއ|UO @[lNax6ӈ͂XdEn-~sR[*.ZMn\:`!e(qXi.[ۋ''B3Y}q@C/Cnpjo0V$!j<)|MGDD.F0 Hɷpr1Re 2)\:cb !<{K"lc)X%Eo~k3m8',n{R5zwSA M~xuW`Ӥ} o= qܜt j=Pz!wGl^:Uս)*UԖ׭D]63hid0RuaHAJoJJx`&ىH~*BV֌K|`ޘ۰ڀd8ܓl*(.h"Tm6R1L啴Cܾ`]ͫO ; /s PEYJg2 KΩjWԻ{F ~̫C ,k MɎN1Ruq3kߎe:ܘx OGcZU9WY/"}j@ɿDR݂~t;bt.iIXC*䢞/?HТ({}_;[Ji&gCTIN69`#孧e*2]4&!gTuU M&!3:@IUh|C0|L?@?`Ǔ bKnܸQ%ˆ0 6@[25ẃT1K%>Z@f?5@M4gkJ_*'q 9[*0Q^EY&v?gsMOFz8 wu]oYš~x3uU+5-5&6}|_F2Y[C*[oQzA|jk\mڸ^ژ[Ӿj+&R)nxzC 8K%Da 8:>9#Z$zڻ<5MYseF]x7 vZB͐8ɘ, *%Cz9ZVvrc "v\x-ܩ4W·.H*W~Y=i]T.#թ1M-("~wOPP5;d#. qk4cM X%9JeqdIgܺ?x% +ΕMguPݼ̡4Ny$da7 w]pӞa2 to_|=-"4^̴eYYq 9ko:ڳi+~[V *XM63xQRm e^$p;62T?"MQIku]/IW5;d _E]EܞD{i1nro g*/$^ i )ܛh,~""2}nq_8΋t4ry Tͯi 9rmݢ .R)Qfa}a$i R"\uVuW)>%qkR0?fU{eEX]x 2 z'}(Bm=1)H*Ҍyᩦb8p!9׃zWN*$AFES]tH܏=ַ%X*y:,>-&@Yy+KqQ+xasy8µ>:ߔ,Ex >az Ili? "ō!ϭGG?t$:Q#"H((őf:K l5Xզk]Cp (X|# GLil†0, ?|,xa|ꢨJYԦ.MHSH{k켐6?'kwüW^LH:>T,4[ kE'vĽt7gu#[gK- ;4bI*n'zW [\rI~t4ʲH 0 "L1v_uGk e h'@"Mg ke GMn1P]^p!1# dzKk;ۢěB5 ?I?' l.9ɋc &_@H#߄+zsuu+즣+ק4X%u͈?Gf%B=v>gbK9p+vۨÇpNQjEJ"NB!]*tq-Z`\Fʯ8Q%-3«4;r0A0LOuˆ+  !*!Ax2Ze dL/#JF.Z)\%kv4=yO3NԹbe1J5k^1b bZn[pǵi0ucϨxݾV ;|vM!s/Cܳ}Lsp 2 + M в~m~BAѦջ^!ojn\5I}OƔ27&#&oZf.Is9X޵o (^Dž4>^p׃Ę̼X9u<\u޸瓅$WDuea'-O*tE@;nV#Y j7䕡ԅĮ;t7w׀p]W7(ӛ&">|w8LYEׁ<] s]gCd?-VA-Mp ̴ͭ2Cͨ5 *.8DVOa:P6k}j2(őVÊpH X"%qZ p,Zw䧴3 1ɒ^7vn>Ql*J"ˆ'||{Ϻ8sGv?ݩydQCõ1*f-! Fg yBqg-~t4~+7F؃X=XFUcz >Z/ZJ)ΆJcNWjrwU@֦) 0a)]"#d^Q(qe9@~ZF(Yy,A=VHr"HQa纺TI0%F0XDHl>!z(mzeUjy>MPJvu V #Ϗ(e ȼAVQ902mެ,g@~ll_'}׻nTF1nOJݼbT.֢IGKO( fA|%mgXx#suRNOjc!*ϏQwlIKK2i#BߊW~Lļ&ziK,@o(F|\t|[MkD1-ؤg_]]p3 ue[P7M#" xTgh9]|lR".PWhZ.BhM5کڸH 8v ZײX-zbܽK{\jw-Mb\Y>n;MZMTJFm }e>D˂tJ+iPf{L%89`?kM3hXXog`f%o9#u~Kw!s9hK-i.uR::~Dhb_`3sE,Z21ےl>&e gՎ>ykD 5sWr 88t7|;S{q׆ZYݩFZ8ڄ.Tx/́,8J0ޤV4[}+s=T- $X5"p%;_е&Jӣv}AQ| @=Nء n 6k Nt$&Ey8c` E@.L•%9*g#AkV|m.wHA3&Lnhޙ287]|)j u7V\zM\["k?6+YGrhA\8 GnԮa95odR<D.5癮D SfU`=iP.Hrؠѹjd)o_Kmuj|Jh6cN;Xj6bkLI9c=~ CC&,"ٍ՗+fț,^rSs,[;@٨]d:!⻇U?S 帜/ɽ~K tJxF"M@&n捛Dؚy0e}1" QBݟBKvR'MK$fıZ>*= $z`کn`tUʵ.MSҾLto!L-S6c"Q(\S}^… Ƞ!qz7{mT{]}tmHR 1˩7=4ԬߐDL싆BqAW9iדS?s\_I*\ z:* iPٓ Btdo;4mbs "\$ K\DIƪ81̚e8auo,9!XY䓍ִ8lCZ|`T#1{]CHq!F##/~ 7@}G©K:|I⤒̡;Β3Ýت` b_Wаpqv>T49ps#r؈l%^|W-8k_}jJ^ͫ;SЄL^~~|\Υ ǧӐV6́Iq)KVo%ؿq'TJqlTE۞;?z5c2+p_5+"#recr> ;8e<'C#bАhMtxkk]YÀ@&BbiԴF Fe1.W~д s 9NGsb yߚ*o :ġaM ,zpkl" d/ILkzfKhi?e: MIʞ!J.RV6)/rLZФF&_mMPen Zf?ړoHy>_m<ɧ!#UXm8:<(M<ٞƨ 8B>E9:W)LsA]9)[B-8Qݓ>WoVkc0^\la nQ԰| }{44p(SRC=)$3?Mp Qa_aRXO:Wo<~pL/l~քwQ8U8X*gUNS%uuTwZ2>ڲ;OR m9ZMUk,g_Ⱥ:YYW˯܏ӭ׎a ܲ|]P'/g. 4+E#Y ;$ zjĊǮ`yB2VǪs2rGwY{-?=舗〪j N,ԭj dPHH"M- ,ݮO4Zo`l=WC2{QDW:%+i5FgWlY;2 2 ~OЃZ1Gl- NUEq=Z%`ՐkrJ?voꝜNW[#xUK|۝͗ hԗ n C"3e.ػ5.6_M]pi EH HoZkQjy Hfʪ,QuFOЭMTS_[x?bғ\D!Y.rlB⵳|ί]!~0=MXtF5_E/8z#G]h z( "F4\/ˈk-\ѭ5g&<2D;Uw|܂cDev8S+]N5ju 7J5FMHsexP}a/1 -NW%>zz8$zB\EwؖJHjsMjoB$:sIz ]+ Gf{*Mq!Ej/DE\lLrQMrXinZ{{[~ W٩+S ~)*$oEw“fp)wꆟPՐdWYơO'wڔV m S5ϴ^ Z_i-~1OT Sz]!`aM-UiB'gS!hᒥf ]`Hg<A+_<"R>ۊ K;q!=lͯuÞn0 *}-0ÎyjCeiŕJM&vŗ߰̈́aU2yF9iv9(w nRy; r-` wM]LaI,,)ISyY3vWvǨ$;_+L:G0iw%VYJXھJEY YY+&l([%ilU}6D?3(!L)Xy[\Zr|ٚLS+k ڪiܹC4F^CU\'HqxR59zɃ)3^ "C DxcK{/슦a5F槧ݫa74xO1fQAagʛL5O` |ܤK@xfΏ\O-TiG`kbPA8L ~xQXFaM><"j\]5<ǯ\{)cb`5H ͤ;rj{P٩Ƒ$2!؈#M^ ȗJ7F #]J[h[GtB/|;وI`FI7}gp৚4UIxm6DrN ZIܾ/K[hv81 U߅]Ox SjEM_k4J{Yvb&T>/jWa*Pc|]˱9Ayn䊕PObMj"\Կ8? H.?@xJMx9xƒg-4;_yJN2_VǠ͓8T\fhdUns%Yg̜@ޘr*y<: 6FG `}Xnh{7Mhï 8{v>_JwIQ\3Npݓ"3PHe^ C/?@ jYL3*gA!& .- %90윋,ŰW")fN^`06%hdEۻ21̋+dh R'AbMe=WDN*-DM)/ NhȈъ;O SmmfEC$ڀKF?0D8z@"x3 TGMpJle{bh 3]Tg/83"ΐY*F>j5Ij@㜱FE\"]B-:Om70II)KNB0id;ߕ!}aij8\=1,5'X_o aKHҧBN7(l틗#zR0Ħ(&3Wқ-g #vLs qײַ8ZbE!"p9ҭ'.rhe-y]8Sm~ RU8;X>o΍>Z+7 erK:Zo;(L&i9+`?u$ E |c$ 3hbMZ2֔{o#zC 022 |*>XxC+ 1%Sz`IYj;f2=n]`z%]RVioqXRFXDn~" xoڻuvđGB&c_sM͚+2\'C6 _S+0x:J$EMǡ2N;j\F0Ώ RwCxV_(5jAx]߾B꽆~oh#E OvIyn<Ӻ1saD sTsl(F^Iy2Xuv|DqpX J*Kje?[UFoWy@v*Y,tm]h 7p 8^f8:$& 1If^B Mg ܁aCOC k]L^2egcI;v L*k0V#ItXqO55Rh1- \>Fg}bܶԌzTn tt͓-$X6'xBڼ'I%qk"B`X}*%1χLG%P 3Rd)6NI|}23)D9rdhL.)6My. qHԽ}xD VBK B^.j\$fY0qvEk)4 $!ж=8j|'NF;^DG\.n2?:ʈV0eb:*%AӰYu8MCFA!T½0&ؙU$alU{3@fb@zݧ]W[ ᛳD'`OS\~!-V$lW;:C1!k :*Z6PPjlZGt943?Rmm9q4;z̪h=\f ,i @ȧ@;57OM-bcNa }sI,s,ۼ8e'orixf\-g[6b71eN LȪQ$wR30)*pn?, ƇrJi&#YL1%Vk4:4\zˁN֎PD& '\Uz?]Xh%Yt;C &? ?<}I8"U?,qv}=od'qVrIa l=,!rR\cD'aK7,3teYqNB< 0l!^N`ia_[5` ¯ )%_8LL]:g=''L0) AB{BҶН_їrӊlas.^Iޭ3=^>#G}.2oɖ: [ۻScI頭- .9p0 Bq*zHG>ci@$S<~|T0Tu>`(v!v8հ}ZJO9Z;*ZNn2N~tKo*bO0r-kb;=_߯!= 6\rQw#40V}dwhNܝf_c\JxQ@4HQvi;JϨ(Lw9< 5eȢX /&NT"f-Y̲_$Y]adN%,żéԨr˂]龛+Y2=BW%7>.EވJv qG>iPsh^726r1-2d݂%sP}cH(b:îl+kmqfÝTuP!G+bZC1gm~J$9ѫdh4Co+I $ /ޕaNB{x jF_"a NB?4@RŚi+&isӧ.iTsګdIrTj䡬%֍3r$i܋a<yq!=$ ;,cw3&' {U$LuZQzi'>EN[p·cKS07)IEobMc(; +=AG q,)Bss("Nnzؓ"nD]t?̗O1 M4+Q`a8&ϼ_>fbAmV)Y=<߆B'S'u]onlK4GXr3&Ȫ!KuQO垗{I>^zBRseLG- $(EL2E[ªD~T6ubM/X0(bBL?q(.@ߕz#[xN˹| )SZim4?0c vM:vF;TVX54HxJrOr~(Nu5 ~X׮,/gQ /_]9Ԓ6ĞDu+x{{~ީPZ.A%`)Z̈Y4Ns2Sgh҂| +c~[KpC3 Uu'PKJ C-(x6F*·LaAsW&J?5]`;8v:0!菹 cحzu? _uv%. (䂗t^qZw8neaS%ܴ]"5qLsvfcˉΆaxTK8HfߜԫT`@bawu[܈# im>˿hXsg7r)b>"w)ŧ"e j::u=>?0- aMciRt45 tؔ[Q/3SinB6-:\ĢֱS>ǙN/LG kӺ+63zVJ-nMLEбYgj4zkd9=H :<]賊b T&W#X%baÅnQPVG9> 0Jue' ku*FQwF4q-P]UBĊkx gg(-QLYAq 6:Ҥ+"nn`Bc 8Kmхz_ͧrw2jowp&pɋ [B_ه)H; &ΑТwӝ 4M:xΉPSI:E<&쭜c7zǵ+)l Ao$?a!a3":cll*b"%;\^[:cuV3r W߷_| 5K&a<>(ha)ѯw+QNzxS R^Of 0ZgmeNpuAFh][4e|xֳijws?/P۩7Nm ҿJJW'dp'iLAA!y>_pGN *;"Dc eM 1/v"{^G?~QH gMfz{e Dejn?׋z!lD8I % BzZkI+7 ɈF *ec LpO'H?ӊעOKu'bk?F& C}2NqHo؜PaRHME=)~mRUtkm7¯ <251\ )Y]nP1$n&ڵ޶ϙoI!2 4RV|$3"eAG`HTԛ7@5TDJ{ZמD?UR9!b EֲWԀ<{v徶 kkT-Tӟ bvҠ؞tm V[5(#2m,ZrSn;M7t}/~0ظ[ ~.gʜOK7ExF}GI@t^*GKao-6ëro (Ō\X D* Ȥ?C>dkq tk1Kڊ+%/lZȋ'Nag'H]t\@@ G`4Dnp4~9b2W}.螫-nrQJ'(Ίx^)+nS ny/xupXÓNKYL^P5<+p/[0s^ruP4z)uV7ZI7-C%Gc…A$$!F087eG٠}jv=᪮HXJXD\ 2A29ճxa|D*aȶַ"Vgi'o̦Lk}HأtDl`/{zRӏMtc(<jz) sk>~"^ԘT+|\]wߌB@4!ih_ыDtTxșʞ6P!Ϩk1?{:{"]v7jXe?~<2I4J'L呇qou VZ@@.x2Y|#J˛?''+)75qTDWbI|1])gqZ$T>inɘ溺k+{ȶݜ$u6.7fzKL³Vp.zQOu5s &d2J~jF|MC|ّdJ'')h#HrGɋ NOLE;1e0<9ġ~'yc$Z/jMvO0z%)UF)jj]pF!1yPr)q)wDՍerEͯ0=N S^-vɥdKAm1x$A06%YAmb/(q`e!;KG׼ \1@/22 pEшFpg%'ж[Oag۹bAV'v zb|"X(E#5i.+NFzhxyFn}?oW{J^w-Q3^'(-&S:(١S/bcV|D(PpiJ"6BgMn} !L(rP}G;I^pG0{5_¥~ks}cbWΠ TKOLĖYT3 ˴/ .y(4QX/:]}ܵDغ?l ܅A#"M3„9J{\O_|\z>8_z[uJߛ1IKW2q`VzkG,`f^h\s}j@ M K{X+W{G{d=+LGA]; k/>kxJH]ǁ=/F5Fq ͡x 6+qע1Fp ݇}T{2hG.tOqHC:,tR猞~ ]`X2Q+=8!!"aS-6S5 6zw[`NLVT X9'SKآt1uI]ʾ9^m| 4rdtYi~S_{}q}t]W&-XcrV2H*b![Ubpo091t@lw u> ges JQw GSσ8@'I>WRCW$FыV%6:T$6Rq.uUƀ}@Wcayww'rkFf[t̾`l} %ݸ@}eQpf,&PLl/Z(/$2u\%[b`"DR_lΥ0h VS&7C''_/1 6<oYaD$otbkIe-:䑗}+VkS'͢xX/(7W? /tĝwI:Wq<=߿Rs[Baa ZCigA]Hƈ_mO+y .duiA4Ϋ*RbT0'⥮fC qE?5 ߝ+NfCf` re|QU]8]J̩Z `Z&fui& ,n澯Ep3@#u4`䵒tabS|Ng"0M҂< İrޫОv@>ķ< PUFtS||M os>m Ԍ<3jbJ4кS{bLdR jWk4z 0ۙ9["¶*91}[z:B,c#bcMd2ݲcv6CO!2Vf̲E"0}m 7ٸ{:3C+YRcJ!- ~ȧcq3BJuarMLҸ+9uͤ15{9Y/钯yϾn>:XƎT6#UgrIC#z3uX5?2py $1=?Ϭ1 S:4%AO5{A&OY ǡv3H猄611,h^r>hbN!NޏdkŨs 倱]dEB*֝NQah]*VXx%w} {&\žx!ۊ0a,!IAmyag@+dJTBs6{qafFhyٴf~=CM5쌝hD!T$w` uy(ڢԵLaP0q=(CPQ^pFHOWpH@39n(HL zrz]EB">CB 83R@;Wǜ ]VwشCd@-ݎ͉WI)E2N0JWhC=o[MLJO}qE$9i曚 |#26tx1hzoub-CaF/(þ* ddwuv鈚 co+tH)3jHUT_,PO {fB3SspUJhq<*7$g%DnMG6v^ұ5;$nO魧 ƽ%5]c&qNV^OcOؑzt7 D4`s8;ݨ?ܙEZ']qpMag. :'[]HQ>;Z_@>T1y_ nSGCJ[UӰ,B+BILj F;Ą;*:5WB$Eg}g[G`Z7*`vObjrzp}1ägvceY@2X(ƴF*CѿMb# ;9w`IUw[XͲ Q6ΩX B'7~꣍|nhc*<AYC oa4Pƥ8Py\S0Wh zrXXoֿVxh?J}ˠPчBya,ˆ83i`C}oЎLDZ֘-OVr,7+Ϯ1),:RVw> RY;¦a{[#V]Y2JhfwN]7pmG=ú\Jf<[[.kr F; 4*(7,_#ݡ{z+-E"?d;CD~L-H[nd[VT4]Zϗ7.!Ay YI $CB W`;"*.Ra*@¦rY\wifGj˹VCXM4\1:$3岕8?vL{E`}=n] 9[بw.|?B td< 1$46 ["cР!&M K-esUiGҎ痗0 TQtc~-@ZD%U-ke%8XҡBLt,7oYؠn>i2܇^Ԛ3Պ~7 4dY9Wg [CRj~boE0ZVZo?Sz=1M2.KO]$.`XVݗUﷂ )o5Xdal 9UZ2F/9Q"~)Øve)^VXpdJ;=cFҿg.;-߯FFȻr,e L%Z>ZezeP^M@OH =t;z]JX}i.eѯNio3*]ZfN[ NW]l""l*: .deA抦d+FI՜ G6X4+㝏E6/+ ekT`F7cz8*p Y{ԘqI9}1sJX^P'"F}(eO>=o;F[;Ö$jP8.ۙskp:@| dBG.%XUNH XJw6h} JglP_l-rSmx[rf ,zn_{"W|(m/,Aq*[AX2A , `l×+J}'Jեre)?Rٟt 1T>5ݩɨ ֿFT)K x<3!#}}c] 2t}FE摦ahPUvh܉G *MQ+V6" i#C$/ 禎 )u)2iԂYAXH_S ,V+`5vِa6IփѼ9I-U Q~։0 RїԴCz;Ξk}2TmE_'À6L*֖Dy^* /H e`4=i' ^%xB7߼ Kp0*YmwH@'36[WZ}ډ82!{Α^ $̷K5)/BX^<F R}܂A p!p !MȺ.)c?kF+YrFcӀ5$N,9,g!ETW0%|ю}nR<,ZɶUUDIco.8D4ի{{n*V XB39}s0B1ɺr.& Pu`)\  _b3X&3Ӻvv.\t w3$T&}4xH2vqge0bc44jF^,$H=0mrHĆ,h;cQgz⮌teFk LBխh(Ưd^U?Ca,#T,X<;ۭ0 ݐTfD= Ap)<&t]{9i] :%25I1ŊH /a]w$);*a')6Nm wEy:8U>\} #F|{QlnAtf G(96Ar{&5{U>kmCP#?.C*؞s³I3Ha{c'AKe<6W1awo?FVX4A~s^v[x}hUE;͏ϥحSS2E1%}xWp>ڮ5_Ț~_$NnIh("vpͅ$&']/^@j[ٮ[yEzI fLjrh?p 'lcXŸA0l3ӐuZ}y`l 8FJkzS[9@wL;~OK lqC }8~z~e^O$iдQ$NZYiKge&d="D`JH[}mOw [f4S&欉R o@ LdZ=c|'g4%**K?RZlMT]OFUeRMpLac(w%]{}pD^bF+k˹BC} Kf,o:AC2E5HW=Ws敥'P;O)Hp(+V'&s>|ے\Yߊ䳍Ë1iWpZ_)bj)Sz#/ _@[xXȏZFywDm0r9Չa_|hy}{"fҿy &}ud؍K)=9Dw2(P#>&oc:o2gOU;J`5Z I'?h5Qvl׉ xèG3?U?SקmÎW(FBL9T EuO*aР [lσ936Пc6cZ( <Oz~F^}w[ЭңSA1vYjL15Cak{(:@GCmw8o(u O8QnR\VϏVbZ5QO@]7jeb׵[H>"9B@N1jI@2θ?t'$[C jD;//<\,%Q!PAmAAs~pD[2J;hvvcw? yɦwG $.>G|&Y4vfhMw\ئ8FΩ9KyG,W9!RQIW 9|]`= #B| +[vS#=%/Mƴ:%|b/ ͓J}ޚVmOR܏@ǯ\"ngbsUN~))^\ߜ{`VYH_;R~=~'|Wo;[ޥ:),q i=fԎ4T&e:b8 ChoR+ԧXcUɎ\Pay3jr,Yrk̃ɥҘ*X p{XS H&xB:c Qr3AY.Ezltx 0zPu&6)_Qڍ3t׏-)XԀqf^g֥֠|XZ 3 6넺k,/qI f}dz=Ne[/ޮ|LC粚EoBS T)dLGAk5}ůI'Z9#kܯ1}~/6<0+p3c?OynV%$sppJ 6@ zsm ;bk锝 0NeLȳgР0?R TBU 9-h%EU GU, jY,%+$"''iN׊<HBf\E*_8Զ^EJJ>*x, $EIlSۙxZ.X/@ (դhb /q=lsnpu鮌 6Ko"s$B\?*iDn|"VLT >!,As~MHX'ɧ9X|qGqLU7\Ym3! h f灳Z5M}:}9i_x2SPN( A~I,}aa!0 >.bQj$MƆB|δK)v"dzǔ\Ř`FShlc>ny3b>4 Q1_=M?`q8YQLyFDZ"ZH#q'bn̟д=+4:pqQHcT͎6{fӒ!F~c?ApL,NdvflSѯA[ iIWnOq˫isOPPжRdWqmƂSIgB0IGΒ4WdB @s08 h+GL\ {V(Q [=ASG !D#z ?xϦE5v!R^`" z{x 'cp-i:9λn ՖEy۶+)g+oJ7#~%7F*` lldô"iƺYĂv^eJ$xAy":D!u}ϵ(7VIni7t c.Z>j+$/2;Z`h^7'P͗ _,PPK/}~=uhz"x{8f6NTkDrMaE[Ύ^rߜ^,z U3y;kVQ/r}hFM,%Hs\& dwOEFP+B%޼Bu 6Xr4&!J>&2zзw? 7Oٯ셢xRJ$Lh?y2)m|Izfa)S5T'C Pf&Vs?Ͻ3lאSnD:&_Zd?$?F$?o ih$Feȑsy3N, BYu_k)]wd>jߙ^dSF S+qMO+uhZsh;#2xG_TӈXҚb2ڧǴ&heoc[Tҿ[i$Tgq 9JIR]o=9ͥn>eXL \&٦=fPi+)yl+Ez4qն7r<{OGY~sBQzZ 'ȣDCz3ᱶdV]`CVOlgV_gr]ƓU>}=|@6slz *5A7dpcPAQ!qso7Xį(4W#x6=qfGjeZ'"U4VRiASsAR.7j}aVJ9m*;ē .@*CH/,M{t-,lt`q"i{S@^!OM[,᡾(mԊSF;gtϏ\yo&rX[>,l_ Tb8 `l?Io1rHw~z7Ґ?=`*±Ʉ@5ٕ3ltqANZ;hlRSoF6'?~ˊp+ vP#6C6Z]9~dm%;jkK'"g8'23s?iI#dٰ^@766%5rܘZfreށgWx"G?:ߚR-`|{~%^kݷ&)hl]Rv /x:z#:4aEۘRQS .~Ǣ?Q=t^9@Y . +V$"i}sW=q!!iU QYC9y 0zkUv#p6 [Mv B>K_bdA * vbC.i| @^ TXmzd*U}.}DŘŭ {_iqr$cqx?2?5[$ypaZ S8J4y5$`Jtl@K @ӞԱNW:x\ChJISrV=GKdhe_[⬲2O\HDu89'0c06wT|n^@;}5WȐ g<}ſ(GEv%8r(0yx} 6b1Z`-r`P|_w b>~@!tff]'fosT3>RaGx~K+ HDW2;OXCoj}}5"N6{zV:Ѱ{.DP0E ^M(Eq5T˟Ͷ/uEamu,ʱ׎4鰗;y5w{gM$ bROg1vPy4WŦA<_JGQ޷IK32E; zɸC. m~iP@޻>$TQ3 N 99rYox.]t%W)nlb p9hjBoI )oE: &]3"?iRMa7~./J ;b*=a}ɮ(\}?F|}) YP]rFn⹧}> -wn o-&|3Ԣq7tI7 J.{J߯g'>ϯ?hҪqRI&PDo."s氜fX4-f -FUذZ!+!mcJ_O(;}Pzv J&+Ѣ5U/%~-4`5QԤ GtGoV9^NQEKQJ&vVMߵ**ԥ3Äu@XpT9(]6OR7' š[hxwym0WS٘iΖK7vdQ?RG`G{9|TΡ K͑t/kʮo]0n Y`C:/ǎe"">y"4Of&Jv]_$Z% ”$ Vnؤf{U-Wyu_ WmP/9ڗOONUxMfd! tÃ#'-U.+v3?h6 (-V<"JxP"$ɓUa΃4an,dpOy⦾ARƼ]Åp0e039͆k 熡s#t^\~Y, c d-=NR}kwsgd#[~/y3^Ɔ'Q9@7Eg۶G''dj(Y+۳|>Kt9o$ kْ4.TTG 8ŨPjtT &{?0TPg~py"@ #R7qww5GUMާ} /g*iq b]UG">YjVFI]s;UI #pK\ !@LޝBљ)5~X9H6o?wcj\v nkhD>Qa^O6|ˉ1U%_4QUF:i2[>&'4JU|?R1dFe=U3_e`"JpSJD7#<KYNR٤.Pc ,jdo(>_ |4>G| <~9i෨Uůڿ8oGU t$^(3y%ouˑd`2'Z8i5q3\Mjރ4X0 臤񰹅4bQtD4j;>u׻!%cla1B&̹#׏M\k :_N@[go0#'@ӽ]rqxeM)R;V oWGgr/ D[Zi0Qs@z2y@v<2ɑ|F[WVoX_=pPSʬ,dxJ|W̬tQz+T%v NqTؒDCHi)a}tuw] r+];#{jϼdI#U[YǹI u8zkYٴRnQA%xK\YyOաFqh6ō {yM?Xl`$cK @Y]7?,a'r22 d{)Lg5N"Ff dRu@m,3ֹjb2B6NZV[CKvd`ҼF`u@"tX-zYRo|g䬀Vb4 يhѪƮd*pR`Zi}B1ȣz|0}M[@~*|ݰj ⭣g*D9϶z .gKm{)]-3͡ԶӸTS3xr: }&or]GvگSA5i 5Jzg97vGCEStNHr&i_5fjAJebZ|iUL#PPIMQUH,!2s~'|aJ(a t<l.T 5-m"XVeTcסp5^ =8ԭ/;ll j}5H7Z~mL3ZZHb݁akV{Bz-Ga!ymIYf cޚI|^ws5ZVD~џ5E?X h\Kl Uu&3}Q-8oEP5 9X}ۅ9q;BPGK;nI!܋ k`| X3QS̊tum`7UܨAA!#VD?hWȦK,T@Kp wX~?cpm*k,#MVݱP'VįA27Zlk8n죘+M_Kpa:FD-ۖ>i &Y}8'9J uMSFwy@̾N~=^kA1q=u/4Fk!2Q@."MxUh)Iq@(uV;F>EY?l& ,x-}32".$ִs [ j%jsKP*ähb߱g'\pX#lVMq%! S-[r6ס Sã6QCP} {4Ga~[{ϭ܏0\=8±߃e K sm:jBodmmuOAjKoEbZZ.~ğ{rɿyY=F ]dk j;v\bo[ ~ fofcS|f,/HpaK]Ҡ£V _4mI)yM4]@fu!QjiAgY}@b= K;]@}.gFFYs{ ʈh2J[HE/ /`ZXc\6 \fF5k0\i)5V;s^C׿~@CtŢwTaݔ@v]sv2w! s2.˘\:WU0_{V@y˱RUAϳa9\/林CpD"'`U\eV|'>Hd\r#trxe@G6oRRP! fA≁/Y/ ;`fT"?[h BSn2"}:Kbvˀ$cqMiq"U;[ ١_WA-gK;1Q:,'ZȍqjWMrG0N2ci8Yz]zw㭮@4zJl Z`zwOw*'2;w73I AɅp´ < L "* :0϶CfwhM]5қ@W>=7:!V;)IDpO(9>N1Z៕ná{Zk2 W.;`mXK xE Ur2HgށX=qvr6Ҟhl^ciڑVrb-Zb TNAYǜݤ4ˌ)ʺ(*0P rE+;0; -Tܥu7)!g-exd"?{PY]"9@Jъ 9Ѧjj?)1J4ǵ#G6! w-2b Uz<GF1'qmM06}u=(=Viҩ]Gm[JZA 07-_QsG,_B(sދ!$QLYi'CϮj5+R/<̈GejpG(TTWS&"-$E?nz 7gaïjTL"mqȻnKrscnykOp0$2G ArY!-Ò!@p8"cNL0:U Iw3⦚g*tM]OGRc{Ej'{"N__?g@,MHLlmFvHW@*?7K4C j\KҘJr0{u} J%ؽE [|Bp'.%C}Y#&Ppʤ4&^y Cȭrٸ19Of9Zy +ټ˒嬴gs@ҹ.ؼy3R4j B@82л>,Y8'z 9N:}C?(Bd'g3, 5ɟN8(oF3U7C$1q \_4djdGM&4 @ CtOvxڋAzyP,mJxGY$`4trxhj!iwqD:ir^ΠD ۏg2[լܦڙ2-߶wi%Bc)o\66I2kbAAf{h_U|`m'VbчU~[o"Q܂ ʥ!O-aBPpY%lD4?PPVŋ(c?zjEJ|ͪ/﩯ج- >R6u10/Zw}V́Q$iF.VzHoAIM]ҭƅ= p`|)GD6f:JZx|1㮮*r[hAy^+ܴ>|Y|&>GOϒ3YcD7-b堊]Y3EMqkӺQ fﭑB~˫]tFQ!wGu@X|&lji&56 4$'/_YHjΐqZm=Uue1L 'Ǐ 7?e^8Fwk&E:h*cDDu^;+d5 (imRX]*%13Nh < WhjAH/j)_94l(NEb#7K]5prRORo#z, ukh )[}_3ʕ߸&#ϐMDZL.'kW!(j]%ZQp'@ɕxC)a =6(w~R8 P_og;zy*h#zgV:TtgjD^yw{*09 d /«#ڿzWPô3_ -L^YHRPsɢ`0ffYwt [Y5|ihA@Pע]~{Q4jZW/~uNs6'Y€wD^w8_B1բ@M[˲mcY2<|+gZ|G[4hXхoC7n-ZX=A$ ]?FQdD}:ְу :JW>EIOl6D'm ߤ_G D,At@(xKK` Vu*ao1L:{rƼ-x)ڶտh{3CTD;~Bu`pMj2J/Ɓ(E~6QI肮=wCg ~^w$x`e>fTY%?q*Vħ륛xSDSK/$PD"שNNjTƮ0TH} `tOHN< Z8y >OwW@IoeZB#d乛R\DS j筻NOUń"/VsQFȮL C$oi9Y`]f/"S_]0^ht)CD[N߅SͿt~,0l2 EXAՃUm6PA29D.KfW/7؂U2xj<[]7 'OI\%mp-idq {/LOf~nno3sr_jW0Hk'Z8/6դC;\` vHu ` 0+a=\c'|rVݬ2ء˯S/Cm.c9Kn\h%31MS"Hj]!U {5y (=ozZN-/*-HqZu OP7yy/7D9U25+mAH˗ IU\v⤓=0$|1P~kj\6i1;'EL4#-ujUH5/ɴJC"9-:ٻM 2Pl¶q"˞}a/D+「aQǺQtQ7N".|7xok8<8%k/}Uq/}[I@dI u>`dK-йJ4f3k83B4^9Rvrsє2gFlupj\r∾`WZݦZ,Zt=/JTKQ:yiwcL`esjq52I N %}eI~zK@AKH ',P.w o[u4Zq9 ?gTX SK:9֣?C 9PaJdfy*!$`j X!x`\3â pIrk(mN6T^#:hqd'XgWҤ OIɈw8=qC3stG$&VEWĦ#<pjYKpҒ/xFPX> PDk6]i$ X$y<DG-HchB܍j!q*5H k}͟: oFKlQ'ۻHOĩhԘk,qȬ0mT00uZb={AHӧB`䂈 ЄY G,uspLRO46JIā'#ĕHa,CoYӒ\r˰AP<a/|6CL:ҹAj0p){r?' {yeZV <[-5z4HSx=ӠQMX=>kMs~֭go2xOģZ\Q?~K۶:Nn@DћtR,:RQ&ԭX( P ?IVMgTZ|^P%񚋆^iy~廂o:{uZ4D,Tw=r(弇)7=wzxa79SzLT3 4F v#,tܓ{a_*8BG}\mE"N8n-5M:aèsPsM(j!"(| `w([0MBь "0 D rES)f:Y@Xy!s0JgƇ &Vu:I \1K!{μaE_IIt)E~*RC~`rl1-ږrxu.mRrw[m_u*W ej&"S< 7kbS3|, !!zUu oڀtZ RV44gbG|,9ȴ? lP+ϡ1"[Syz=ȾM/уzSL\ٽ@⡶ؚIiehTT^}=>/g>5&C֘BQ&̔\xcMw2C?mxgײ (>v{8gpD!hˤ{3׹UCĻꕔlaMhLũ"[8WfȘ&&LX^V@ ;mx8,^ẑ]vdžFVC%E-QsˉDqQ}&DOs.$!l793[f#{ad b!![*iG1 kq%nȪv)/V:t@Y@X5mQF4 I543d%JGǻ?΢H okدOR4votTYE4$\JD^9uCt.JK. u'kSBY96+VVj1m]!Z_os뺌BNw総 -1)xl.rnU>"a% XrTâYFMʈLtYv :J$V QT6)m/5{PXaуMf5'䎰R־߲EH!8@@Ūx=KIGCQ U=7 տѽU/i7Zܭ/e09+2nэ,a(7F`T-,,H Kwx sÙMT 9㖧ߥ度"{,Ȍbh:v定 'beXHk jualc~-+[3X5wʳcIt'd*}rá}`68EbKHZ>MZ7#W KYśp9J++]jJ=nY( '(<ohH"֙<Œ]CjyUB ݅XTZǻ5q] d,ۺ(ۡ@ھtoЅǙmb $CL}|aaﹺϣ)?~Zn!)L3Ep#H@/ފtID%g)"3'Ţ@<۰]?&!B"LZGPE䩘iZiAPd*[;{k.+qy+}K]COC\M[[{hC̕zgyʩ=ĚT=xaۂHCT8dv>)px[]p6vyN^?~9Ӷlzl?3HnuQaiš ""⚒";O( ܺcrov&8]B)<\ f};7(C]d4m]FSV7rG ʍbF/0fU2\wdqoPHv X/v:wg57FPѹ$ vw9GěgdrIz.Ӎލģ3dS"q4C {6A_!r0LTog쉕];jSȧm5&u$#F|RB0GOl<$dxTUT.OJCzѯaR!Mxr:d_fOLWI);or~8HL:k,~;0W6L@ֿ%Z5eɢP%4i/ڒ"jY ?N_,L?99[Ke~G 7]$)OYgM<^:ˮIrGCeޕ 5;R |-Jof|R*WY+N5Vf^}l[VUcA}e؊-]GK1֤f,L%t!2Р 82!Rq"i&[!*uVȿN}4'mF+a_U4Z ?NJ!V'oH zT]/>"CP;kL~1z*4.)y^?J>u̟ P)G)X&z.k~2UuD%%qe?;r}ʁ{!?g7e(|%>[h1oQqM;It4ݻ UK_c;߿sogD)@'MD0QѺj97 Yl.)S֣J`[TkyX7eOo}*DT^H`_/_oHd<]Xᲈ%QUdm7$] xg7&vaR)[jV?Bc}i@JhQ޾n\/ѽL~#e_%KFq+>4Ŋ$q>K5^ odcdkdƕ巓;3?\F݌L%sx#_w}щ(dXfE#;ə;UL8[݄E#W$ОCXR%@$-cs訄 [O`D $J}Rk6jCM72 *j7zZtȳA]B9_($W>ԕA6 f Ų#WP%X3LeZ Zm@]aaϮhCNXC6˖}_DIs=~YٮW+F U総n19ôx v&=^*\t\E0tSԾБźk+ǩr+NI90(zu҂.3MҲKz_ؽĤx:Xu! 0Ý =7p+e73 dKpZ PXٓ#Prsf>/AX g rM^εS}sCwl~vJ(r[D7{1|kQBtq|(Xs5?Ou%QVO7?% ;u0R(e%W$Q3YKSetv;%ڿ :aҏip8҉1{m3oW ;@erCRe! DPISZieӹcEuZ]q?[|=~k<ch{ԕiȯ7&T6nqɒFh'C/*>$Re$ @A''SYVyMQtg onapWJOhD+'q8E`D]>g[X+/|w.d<8} 9QI'N\_H8&Ɇq!0?ɿxlǃqc*ո[CcB#a:1g#<7ɕT=Nf-w8f]<$%T#)۟$5~caJkf<3s9\,_/f*5:GhO)b3˽EY5.ݘqv?WCIJ'kE Kb#wV]vӫv*~}%c;E-: f?Z%fI$$oa 7X_*=C@vv>(n~::hmǒD>u3.MMW5[.XJ&ϐSF;k+1y~ k;0yCwEzaJqxn\> G5ȎtuQ% n+AYB8C0crΕ3@F$c+CW[,4m:6BV@[ (q(|ǣ3ـ.a^9܌5]^9/LbpqiN%H%gnj60٩Wٟ W,qGժ)ELƱgH$m鄄U.|%H0wk)?cv^D~uWE':>4Ne Q!RC#u+/yÇu"%2?t]|jZL;I8Tcu FJoT@ϟZh[ `t6=|*x0)Tg?+NÛpt0)-`+vbbct4m#{`,sþ:𽹸a|=`+ˑ>h< Vc.@yO#tߦ0}^&r6oz0kCt G &^bdY0aTsi->(>{QV"C[<"*Bm,ST,~Вrૣa0~X#X z< N Ѽ%3$g~ }<;Mhk .H5P4`w`M,V﷬E,X֊bY_xW+l ؋xɜJRUUQf^S4g#NZ.oF{CDh!k(κr`y`MaŊw[%L[uk$O*xBtg6IHO#i*9r !(*[7X.On8j]$d#퍠{L aEqء'rRq 1ZUfx3z7Yt:Sa.l7͕G{bX9zTc5P)~t IIDJp#vV y+s:ڳ i7`7-"3!Y\U#J̓jnzvUZxǕϼ7 (1oo"*^(˛$dι/08wot6+#Gob4՜eh|Jfo͓/56۟816S׿KBK*Oܖc(THRJ"4'yS:YL@ӐƐ \7dD54Y*hg4"2x6֗l*<]N}@{X4QD ^p~Goz߁u/A][IMcm8\1*לS4DC4HPx)TD:!<#h+k *,v)R%dP`D)!0Q$5Z 0e T,t vnlM3cK╜p;D S-ڞ]ޒFgAj8}Pr1JD5bƖجkԞ}P33|D8l$ T2MT\=I u8%pe.G h[aTPbUu%5,+v4/vȬ&yO0B72$\b'ѓb[^5)ޔ EhV[Pi J&At6ʫ e*n"q))2~O v-%%ۜ@61OD]8c@Уq5GZ()<$;!(|c9|x tz!)MI,tB)%b2{_b@ ~hhaqbx3=V`: IQ;L-;/woJ(aGT 1of*@SBu>W5{+_%&$ sWE>0WA'l\+0i=kYhֈ }ڄC[F vts~d")t.'x R9FZNj+ǷtR|eߨ$!+D0ysQcaѨ-C+w gjyAlU]X}vEA8O6l>ajE$J0>ڣ83VƇll3 ŵF1yzRKNE;֣ړm7U ØMdNPbwC,n?5U=lܕ^ 4j!;x}O3 U1ESVI*d m\^L8ϔ|Ŷ&_\ZQ& /ea qx; eN/cʥ7YMV^-X!">$tiڒ95Ȃd8@K*{b܃bC[d&pR_ߡpORx2,T8FhdA- 5 n~\ L" dڵKj& 0Ʈ6v^t?`WR81iЂrG;ekh=SL}5 Q͔U3!Swjʺ5ʎ[f+$ta|l:hxAHWNvWp~)e,Q<)WsU{(@y/nr7^ԙQ&{@/)XID e嘗9oy?%|Gҷuˏv&!|0—P6pN29֥şOV>8ʉ{- xH3kpϨC5(/ۮNyh r x t755o @-63!4Mn3jHL{+;&\ⴜx.K;1eM\ȖI;ٶqĭⳁO--ǖZ(Զ; !֛a`ӳ*[ jkv{Qq%_bǦ ͕3r{; ?T'ڑwM~/YETf-!y\e;'-uJ5 pHSJ",l}Kb=7v]Z[6hYlW A-=5&L71W QNCUKɆ~ C*޽l<9fY%rD|0vž$ a0tάuiBF}brjW6n vϤ{[30Xە>ŐO?'"(y|E^v/,9`Mx]5pj奉MC&=%{GQ/hYBp|&wF%2ak8i]p5%bO:l ֐mչl]j#$>I@MO0m~:wt&a1;Q55%fl+;Nm̵8Ҥ 1EfV6K/Rq Wp-U+g'1)C8D8b^̮]G.5Q"fڙ(Hל\Frt+EYQ_]LkUe #B@;Ycfp@rvgyt!H'Ȣ;Wa !|>v~AIx޿j;/AN<^u),Ny\AV;ss&3-/s*NWDD'{xӥ4;}g53J)Fʐ)37; /+< 5q2 VuOVӇp 3@Pz=d c `' K3άޅ*ž(é'^i4#eΘ;]X@ SE^.悋6U#83~2cli_ T-ܛ&|55#yi|φ#aӚ һ`7(xF xkvո;s7&3LR;/.P(F!3jC4x3yMgLU^$.,QSe+h9QayI@ʌ qݖ,̈'|\yj+:: &qX<Xpy/f!e:M;ӉЙio!"$S¤f :X R# Y(gk};m6'oZӃ G3 *[!gٻޘjخfNb6sT /eE㽲Hu3[ ICD8nYUES%;|* *hKaʱP 4ŖV17:/Nq美CZPMJgqQP'k/83;qݍ/rf7#_(z`ܲ.bd& L.- 9߮ c+?L3x7-l(wnu;|ǙN3cȗE\ 0{sW8XZʂLIǙeo1;t]HZu0EI{(MᔫƜ _-n( $WLS[k"'3bb-N .EcQ.l+>$`aeYI|ÑtW!8|Լ Yn ;W۾W_̈NJ(GȰ<%}-VbGe)-dqGS7(z_}u[ fxql a^"bns!Lce2Ul`^x1سzcp7#ͿϵŠ{B" R3Gmyи8r9VR:Ա2ƔI!5"!Mpge#?Sg O5жm<V!eE0:t)_=Ũ"LZ- z2;y~J^k4G/)xwk.z$8,s;GTK:~owkGdd:T\n[P| 7!x*_X9Xj"pI($o\yJ8=b7+feo**a50ᐧH%=A1?rTIPP.l~,]p0u=<4.P[^1ӆKzS}5zR]&ȟή$Z+$"k;.#I~Qs~ 0)? g $YX((Y9sqIO6r{: "&Rc%tV}|Zbql*S@gyFRؾ-rW:AAK3 {Y3kEh435Xycɰ,zqyģȩ'xz\",c Kd)'!|s/$l?ig6RxpΥwpGaF_H2CcHnDu&>%‹<NL1q(+߁<%ۍO]0 nc;t#o%ΐ?4:'A(NUWWsQ8L$5y w\bvNh>_|:r>w!](ҡHf_Fe&RaԕG{svSvh Ax$ls2m8mg?ˎFG΢~,Uge;__ 3* ~RB>@fJx0)n: P0@1]΋}6:۹`ei9̤l.h_pŝ)Y {Tی>swvVX0yހ˲CطxXEYd1["l7 4Wm.ua{W宼9KդԤKڊvm>LŒ V#pP~5ͼ]$-!4ABf"Mf{*75Oto3*>'L{~C #ͱطudכ6ީ^0xux) X%\rTME9mOԻx#^%,vv= q6uR@y4 3yq*f#L+kEҥi|y=vLћ9u?JL{(OG%ƇP G Y?Md/9X=WAf0Ovؓ;|$ҷ~wh:E{[z20CL6M>_#*G]HJ/Z=ǎzf(qK,fRJ ;Me%iix3m= 9d?'~֒K{co,m!c)ϱVy} Dk@糢,j ,p26cɍ}4#FZPg~wo:b4NXzbnw Z^j5v*,;ē:+M`g%uV,&wZ_#S\Kq @c}F*E tVӜ r$ZST#DDg kQ A2R"3a{b6AKaZ{-b&ZSa{o.;$ ܿEhmp|n|#:ӿ< v3p%_S=q-X9lVi4GHkJ# S3::56<"Z_?X{+E(6T^,t\ yN@r\[ 'bM[ Rd)"5Oตq1 XXysR7 _xҎ +VmSQyW;Y[JIlH\2?,:ȯIA?l8 T,HsYڌvy؀YBoW8?F(%2g%}cɱ$͗qj Ävy^BbIoCsbB0%>eN%NG%J88G*@I#> +;4{e? R濵̘O+rA f= ہݽ?)*4z 궟46bvF9Y$4Ɂm!wN,^׻}xEIY J:NC1ȅ8f )e)WRDl\㧖zW<20*ƒbXuB"ǹff7>QeNmS-;w ]~ %0k%YiV^GKX%l.aӨ=_|1}dވJT19Aox9{h0PT|[ sŭeo 61Ֆ` 2~w/ $A!mq'' W+@:r,>95-qII2 y@5Zp%FfħJ &F4 / vdY)+(KM[ M{ w)\񫬕8 e!fz+-k8wx@|Všٶ>YLDމa;=G[>B~SkoJ獂[}VɌ3D+;\eG]x]Gӟa>Íᨫk\aF‘{2 !x %]ī1·"sb.6O^QESHFr(c-.:(6|8is]\\!"I枅G^&#W:В5&Ġ|e`Iʢ(4p1L[K+k.he+u2%au;N9PZWG1M㹖*k/ՒPnXDT4xso YEiy1[tIyi)]S>>,!OGStn#*iA!K1[&E>)O@!`UT*.gTѮr$W{kt ) IGTv 鮕ktXb]_׉bWe[MHwUIXԹ֓iĨWEǮg$R  ΄ɞt`zw,a5} vƐI]Gam®I0ek7 @8KY+3;SJ[%1\td#Zg|Q{7@2dskBJf(J*$0 |+6 V{N?(e!0={Y_ ;n/wݛ{^2.F̣ЍhS/W)4Șup*6*I~>(.*Iw4(14)z!-Õe`9X;V}NEnj뙲~>&s,)M4gw" zi" Ubnln+[e8n!}=Puo[o,*W7wc!SIjctyTͣ1+S pa+V CV{n3U{ 8O=X0?ihLßE w3.Ŗwۖ)(]Z\OAu],JWZϭ!Ј=A}t J%ňv9-RnsYrMa;e|'G?{ϝg7ފAE7o5@[a]d %f Fм*M[6*k`,5fbuykSyaڎ\ ̬?Ӎ{Ś"lP/˞Kcƥ|4K&Wxq_^>W[+R)bjWw]lX&ABx'lמ$?l{t<5pjD!&nZt80fOO9lcn;$ul|gD _ݤpA<@9E=Un69l?#F|$Nt_Khў}Q=uҠ%: 8Ab lՆC-3vgp)'P?wAbO1 š8jQAG HϋF^g ͗)H@ 31^(QyTG<#x2Jpg~#&{/̰scpˇ[$;V}zv/+вmPd= d>XԚ׫:kSwt7+HHP>xAv ZZ1|G5ѿcHWBPiR4AuY^aytœ qmGa]RkyZ;"24k#bdI1@cSd !얥* l.Ub}Q<=(wB\ ,X$NW5zpr£H"} oUý%'T2'qK'ڿ5ILn'~C).<]ĤUn)xd*6Z} /~+F R' dIkA`o\kےDNh#1q]PVN̻ЭFiWd jP9FI'}GCnV< 2 ~v\gsd*uA"Ah!ZE~@Ӳ6&[y(RXꕹ&^N(IIT2ԍ$K6]@V'f&;6[_orNJpq[C#Q䟦T):2Lo CBx$GA>B먎C M6}ڠ )+m%E H A蠲7"Q莻@m+cOSf;9({ ͯoaP1(G|?WxK'm.qptP-'(!UϬ3-_ ޞL:pn Z}e xK>ÓyE; q[l k  $6='4n~2Ȧ}YCҕ{g­a#bP遏`GIMwjR>>eݩSTb-r"A`y jCmY ҜD+ D_)Z%bS E rf1-_}T4[TXa>sNz12_N[4cKħdٻ /s}RqZɪaƜJ 9UĽm;]›0WMdLJN TAx 89XPM5#xO;uc)BZ]괞%ܻCZ4t6:fa=*~(ua+cZj$"5y5A7d;QL]TorV Iw6<~Un".nbFSMJ"4>"&X̀&¬78Eߎ'^[~8 |2.P*EpcӝɮP^eV죇`oȊO/+,޾d%C8h=Boq >,#/x4 4gVr^D%(hUN*Efh^oS^?N~-@ 8gja*~{5Ի)NZ|5aX3pdϼifLm=ˈ+Xl` 3%ۉi+Qd7x_ \Vww< پ54C>|"oX0|Od=*Y6ğ0/Ÿe,P?j+vgދhWb] >-* F_<׎LNcvHb9F7}S$Va/j'QQZ~vSqgvO[ מ)a\ ڢTQ]vɔ~JH<.3Yh݄-p4:Zla+g%drAF؃5Q2U37bqݧ rx/*?NT=e'Qɲ'CAIfٿ8s,tirGkX@ɟzo,o;sԤP8P6PڳՔx N Egg~pKIߣ\1x0`~ wlX#dVeQ9w'yiS}2I׎"SgގKA^3Pu-۸"',}Ժ f߿^b#)cbulENRo~xx*q[ ` ŒH?'8D&Rqj{-?iN ^z]*qGZ?G)9`*SX\PKUDu#ISۃeThǸC.1CMn- #Fqa6`h8urdhVnzj:`rhL}ꏺ9"\y2yD.H$|a59V}O=\1Nd"%y |!l۲ G^9L#?0(M;uՠPtAsoBRU\n:{iuBBW JGskC'e=*I_ _Qa;jhNgfAfD|GCwTd˘4_nQ0c$a&;8g|V|;<`GURRI;>UQc6,4Y݂dCMT*$AJ vw_,aj]s-Ќ5ƛ|04)֍ aZ~ ]ntG_^#=wJtOpOgb[X)rX]&+LM“PD[{pД⮟[9TٹWG17Z!UGPPh ux)+@msϪ`ai2,âPT|P#@)^Òc,϶h|~<Pc߬&g1VUc&XoIN I.Y7s|ji` jЬNM쯷M? zM{M4;>9g*̊nx46X a a>n~;x$碕4-oh+^q1aLLKeg:- \^9۽0 Sֲ/w `cAC~`9d[WQ/6;5TFM0c8<*},T)Fѓz MX`, *6L2-S>tbe MZ;i&%\r04ƶ!yp-tf$UzE ڄi;Za"nm`\tEEp9 -B_01uHڥu=n.'VÊ59NS]x΂ۚ.D¹͋FǧW݀nL4.{ϴȎia@V pQ&}0F;xݘw]\T5= lo6=2+JA, 駱:LC.Rq|˪zU0-ū\)GnDV/p@Ȝ̸ˮw%ž&SO>*W7F䧱qr}on[@2[k'<xQӂѨ< i̢E}VG؄=*B*Ş"ebi鬰)#@J-G8țGV_KYҽ=c;Jn+7SEG?iI;_` ̽7^qWxt؎KTjM FFmLeqd!EV]1fނx]MM8@xM tj )_kAʱ5uKKe6e0d'85,ݼj†r 5$q$7JxQ1()t!`(ݦ"t^ҽrmc/AVEFb5CQ@\5N*ҏx1|8xb'z(lع$ceU ,%B”޺DJ[MR,+F!E0zRK\w!ߺ.bMwKb۽f1Za @6ෘX !cS6S _U}b9Q{UB?yP.zgfyd}.1v(t>jS5UMuZrYc/@'#%:/]A <8(2R!Ɂ^|ڋ e!K~mY4|>(Oc X=3͑@[c2U G9WEsmvM(3/Lr|mP/iWN|j:= ʁ\w1b2sMVf>21b6Qj7x(3g܁ XuqYy 2L$Y![ =ov'Y7~ !m"S|苉^E1 mP)qbd%>7,Co=!FY0H %/=RxfQ@X#NtK,+:?R$gn+ c;{Vs<†/MQJuH 0cǕM:H'n Ԑ"y&nˮ,p0F[\@dN ca+]((m.hRGIm8uh<`UdG/}g晇C(@, tJLv'<`] B6zBnK_.m tSKQ;pP a"q񝷅-!]W8{B4xRc XIܞlM! V{F}+JVD5+d7@%7<Ѻ{Y~lh4Q^Qbx(XX_t 4FV|lo3k8e} =nfj5_ڪ:|BD4K0yBrOvU)XQ^R;Y/e̳Yz2ބH%zDۣjn~ϑݽ=ux>mHLxq-~hǣ_L#^( }#DFPBGA0wBqFXLc⒭^+ed+rwR;~]ګo6b-`88;sR*]f8\M5ə^qV ^t]`Z^Weɶ@>Ys)4&">F1.K7(yu=XȹΊhh;<׫z[j@Ji|-K:V/Rzd,zdRެ4 S|OF4}&~~ `: l*P5ղVp`fB۬FkSL4I&2ddm Z|vY}+&Y,W!E U-gKf9hC_No- IbfMMcTh@QnCUKB릦Ŗ^Uy#n7eZc 5#ꯀ1Ky"c+:OIXFi2ufDCw"IܒEB *<@cٍkյ/k{7aSDK@ah"4< /eaF?FhyΑ`c[w=Wcø m( E}w=5V@NHwXkU;1ɯ$%E .rq`4Q<ы_j}Ξqlm&童F^ka2rAW9ZlVn}ZU|pHiCvG2[^-EvEH$rEէ=f?gLc0nHsNS0yή1GނXfs#F]iu/V^fzWxE L;l2Afv0p!i*F4 `Qe*{^=pe/` N㍢mEu15vj3H.9 ϥP.H$92z/UQ۹p!$ntKBR7Z"``U|l4NJf H&x?O(x< SR썰x m<+xFMj7j8][K“{xG^2F"8I 0z.IQO)`'QuI E/> "[c#Ո 2}}q;ȑQT!R{!X-4!o VLt'5l\j[cjb1 G s=Ác\a8f۲ӘOq ߯ȥ22&#2ZHiaz NkvKۥG6[3Wjho:9"Mu}dQ7 Pa ̚ԕ^\KX~^ ˗f!8th:TΎgbR4-U d.Ǒ bQ躋 tL޿s8.Y(mĭhJ%M3C(~\4J5s-AW*+鑽fGqHN >,3(_uE ow]Lb|;"I>vj_Ad%YA_<&Gv0@oBZ7'rՊJ>dzŦh )~||ߌYGԗX8Q%@_BfPO'd`x t"-ڴZQG"{]lMq1_v*r"=rk ݩw;ϰ_x8HV(<VԒ)Sێv{wr0`sz|EHͷ#n'I0gzIaI'- ;ݰsTs>Eh+~X 4WL e ؎ǿN=TYY3ԧ,CYN9sD |T7DJ&bƋ7] W$Ԛu.\DT+tsQƖyK JI2Ge j!:$)1Vlwtn55* jtSZZZN93$T)'q/hۉ16"w2K.%-mVb/v'm f :UHDg\fS#/g&a >bn+ 眈0oxֱ^%T0μrJr -ߴ lAT$#/yLGT*TWk҄R"qI[axKuS ZAO6}eOwHX~y9:GWN$Y3J;Vb J!/jQf"jyVLۄclN&\$H{d{q{ȁJCůr.+ =m >f~~ůf2uj aڙO =s%9i{>HE `>[]pnJYѾa$c  i )>?o .GVQL1S"X[,jGq\ ZvN{X\2 qZ.rM.ɏ;TTPM:niz4t\e"^kBj^)c/kQ-Zȃteedғ $N!s:Da8yc)&I;'xbDl醹=T[cIl\1G@ׯ O V@h~լ}0LK9n z?h\rcR #A,N8mC dWXIڔ:n A @[Buw&dr^ocr]mY8Y Qo]5:9{8%!o3ZaQJrN9-v&*(J , u;I#f Ƈ4Dž LJMw^p@B_0h!YYr^`O[\L#ar4jm^gZMNyԟ\QElF>Ӯ *ldhÓǏ6V͘H),1~_J"99ԮgnbΪ2, /b@5~D(950 .A}'΋ރpK|`Y2\U!£1|+[#/0}=) BȂ@oA/REs9Y#9zVZEz69ei}oI\[}&ݫXů2d-pqeR$1Iϋfk!Hv6Uq&N,VG~!& }^CaqٲETZ}"h o DߊDoIJܶLY osoC H`i|͘Q*sH:x*KgGbEsnEd& 2V)6TKEWl,`n,*X&.0HEoPjU몊h*ZSp-yr@NRatUnQ^h6kߍ/n+"@"VyH-\m\8/ɇ]ԟN6_.JX@AlRڐ% \oK\'CX%y\]-z|LT殚tv@|rxn 1:֤ 1}kْ9蝁Q2 usyF u ZQ8^c +utIAŃ0/R/:k{z4+*ai4R3Ri jw%_imǟVJ,2a\I{2J@{6$4L'>A$FK^>ttAHn",`{#,!3I-L\bɮ58ٶreϯ1.E# t=˔t en\Ӭ6~қܓEډT;fMi O$ m%92 1=.aizD'Wp^ޡc~7=U@R 2'qFhHieUF<L /#GM$*wRAUNU?OFN|`%a3/ERÒhl fQLCŁ s6uT2[$xmլlalFm ,L+9|!E,ధ*_RU40\O?~.|d-6j"@L$b(vm/Z!SCőB =v:InC5p˧y*y+Idj^lUeyvee+GQJǚOD*yb1y2ɘǪѐ EFBEsx3G7{!09.xQuZ& W>m8Ke=7-S }͕Jӿ]yQص3Y.! jlNג 2A4ӶaYMʋIgD[.8]@''EnIO3mhhW9N5ܢ6~ <9PQ࣠(oyy`"><~@P=(g o ׳gтҀn].b{@QgtW&夁AtW ţn\<DUm/$SJ\`Q# ec%TtWVdSɊl8sByJO(23 0aT%BL( WǓt , U-y,4>*8-Q(;'b>9f@v(ײOԃ ԋxvb?ذ'6a5: 7XZڣ8yimhU>L :?@akմC*`ԞCGwJz+:y9Y,ׄ })跈? $j'g CO%7>˩ )MΑL^• V@jXI37DEpJ^[tĜYV-Jeù`vXJ;=:w"ɀAgAΛ*%v_@]j"(Z3;WCs!2T8D΂L8Q?6<@kL]}BSv(՜MQMT[1dXK8v#{촳OdoO_D':SoᒯX(YľkC\ ,Ą/y7cwX( *NO5)}$T$l"BX鯞݁Bp&5q)gN N^;씃1#5Z2+2g> {"^JGU簨 X0֙n vS2=Io0"0lbw>#^Cu.F/rEgދ4uX7> vF=ʂ"CYD:TYo]~xزwo,™ty<0) r͍ozW+bae)m*PQ+RqG&4Zl!_HR R̎C'j&439{xdEXfr4 Y)ᚲD+y9^m4ӗ1ʭǐz~d~UwBfvZ|~%hy Ma[rY^5q4f6~"+ p˄'y|jbkir+=ÑXu%*㛢DxWCf OA#DY?WH2E.?Z"\,o0f1{޽2Tޞ)v}xx{,ܮ8LD }GHȓs jީKt;nyQEcB%F\W$*n-RAiY>i=Т@k1 ;8c{=3^(TJ#|ev%A k (ucIt6)?eʶ0P.l|oGSӞ&HznTu 7Ba5 !;w{3g.󻙥ePN4|q E7}KELZvLYyZL/˲{V i!p LcY?4Y/Ef0wx<r ߯b)õ(7 }J'F2OV3Db=1CFep03g)hojc.fbh iIV[X$뾑K[L%.=h|HL{j8'h[|&H:*}Kj0wl*jI{^{{?'w˃Y-6S`?ekU+R"mLG8hx(6eE/T~+E9;VuK+EF#|} k5V7"I Uagg#/VՊg}1Ƭ.ï`&t-])p ?p&aUiHN=dn3IΐZ/|N9C8 j*OM}fgJ_ݷF"dK5=AG3楊cL_f:8})IHS GŽj$Ǫ̷0zzТo=헯sUe4+|".e_n`~@> ~#uTltcK?c6^\OyߑN3XF^f[߈Q]$n禈Hu4Ag/a/trHdG~SZ.T?͏'~V񒌲U^.<BWzbC&Q ਴YgC8 =|/O94vl҈?46Yz@,j"ZyX&/=j ĭh3?&UC$G7pdAz;CMj⋐"^n7 C3$iJ`N,>MK-z~WOR'ɚrV{ kDqc)``A"~.1Rq.;_*?@2>]V- ګS+. YƩ 相W6(A4 n TS8kkyFgJ+;ՙ[=丄$BCkPKXg*.^Tf{XˎN}aFzAߨKK.QOR 40ZL(`2-VJ\N Dkv.o/?\)hۓ)~fa-5,x&,_G)=NQjMK|靄lu-זx.~Rʹ|^h R܀7%5wl^a (c3E9[ é!GϛV= ә5D6^0,fED"(ɱ$J A_`]کwAO'm`}?u%qGn0:_H72#"kR@!>cC%j1!m$Vh} DMδU aN"]4&?dt':LCYzjt5xc Zn+R';k<*(·PW&=BDm9{z2Z}~[xrdi .Ӿ\q%2W”gKXPc !jH 6Uz[)?1k<.m\aG9 aWg5OhٵV[qsS]n9]Zf^xvL8 eHrsƎ:rBS#zsQ%.OJPn>7Ei|GGc0TS圄i:g^' r 2^9:02j rn c7L; zɰ?K#f| [0N$rw).h8&bO]K쯡񈣑_eBB8U~=ۦ2Cu ||C髅gмŃr=}][!p,).2}8/8t.]LE^QC6\ {םOJ!Hܦ\-M8 TڡM"޶'{r7mKi@醤烻X(aUv|b߅F7. `4no*~DŽVa߀ ] #l$9{-SjZQdHHۯbP ѳ ΑEM{G\xL~"ΐ*>DNUM]r0`Rq.DOyɏIa֌Q&~K Yט)ruf€ͮZU[-C`.[8w7=XLHʴKcOg^ÑlV~U,S^\b <=|o 8rx}M37; xђT_P%T04 `CoƒP 7t6 Tw^e8W6"I _^nD9ymKgı1U\`t4V$G757\S&-%@Fh^&[~ʌvnkGp!2o*z,$[J\s舫OB*UrĖg.,I8C\ 3#^+".tZslkۡ<[CKґ 5K脼!{4@?xߦ K},b0oٔRPY>EL B9nh+LFѱuLEf['\b՝Kvs,a̜\9Hŋɺm> & @\Vf//Em:n Bm3#baYef/iGVID2AJFgsl0ˢYγy!ٍ"ov[tIRr&.y:ОuA! E<Ԟ~-GА l sm|vNSq¦66(`U5TS~KTԷ[M\g𲲏W4Oi-w>-fqKe;FgdGsJK܁(OÖ`I?`UЂOɁiIv>-˯6v56qPV>2 Y3ը.P\d,8kda 1qi-u/!P0R&qĖEo*k%}A;Koݨ6" Xu\8jdȧX)=G J'lr?;shoJ'qyU?V k\HύG^S oC_\.i+P+8ܝ2! CoCd!&*KU~=Q?DQC'6Zk:+kDV)/vT++^抽c?#dYhuPS,ZE3Iyv3؅mLF@LR-ͮ4Dy(#-҄j Z"ke-LH,:l ~޲4&h=כTķr4*N JiwyT! -gp UYt*5dVJU璦CIF J/0sY%M;W&YlUo>cDE d 8iKNV#*Ɔߦ>x ^EP؆%^q +ٞh'ͳd^fqJ\%ɖcŹTG3v:Ǘ"DBjmk܏^E:W.Qp'ea П9޸d2V4qT$(H8ǽkjCeCAQwy3z?:RѼp7 KnPd ȃp51q)r*OY Tg5Lιyqzܨ kX೜Ya:% Kt#ܫIW"L?yN/gb6#A"S9UBwȋzgp)0<$Ӷ2\KU?!f0;v|azp CazmŲ % 1 TYDv zKO8EO/Uwj՟>7>G?l#X%mV-ZH>+xVvq:kH֛]U_kaq=S8311++v|7ڢen@/"x/-DҚ^i'@2dطM+C|"̹x=%Z;JZ!؊uʶaԲUGZ"@Ϧ}]9hwjJ f {(ZO4]!BrcyA!M.F&V,0&YjyQWPC [S}4(nO׷[u[D%rZ<4H'@#p[> > )o̲FGzcD<%tY J&tC^yמL=6g/LZZG=SNCYj[ p*fln$.R{HEC)WMT2TܛCRe=Mwy ް6f-f3Hz1+U4SY)T˃QcթuTpG+tZjEzi'ֳu2&;4= q1?d:B!< ; B:܈V(14Y o=4l7z<'H쑝B)[o'* :<Ctb$ss/ܨ灃 kfI>J qv_1K|V)=P1px 8QN&.=n#/vE=REdw+jʷ{iAD)ykz"NCl+naw$W=4 iY`XT ?.+w:dd1tll9&(CE;–γ ',c%ٱύ@vcV`:1 _ޣv%ڀt-O0]ᥭӜD+5[2slD#LDRNp kGJ}dU3~z?~BD-]Q S6BeP9?|QĢ..]fOBv jt%^By*sյ_7m-#ɞzRSeyblď!XX^CV%M^sϲ&ʧ4JdGcҝ`LFTjE {WYr 6t! k&'Lԭ3P@7NXp5%\H5`"ϕbE)J>IuT + Uie# Ajp/,~_TQ0;> |MUfʦyR[⋣4,nyCjٺ%EA'`oNBzf+t榙'-),Emi@ jJX }yBKLUgk]n}"sENMtO|._6#r9A`*\!n<8􇗮wɤ(/o-Pm)K-]G-#{~ ;^иsFG< Gco{Sr%,FMf\ ?fG9>dTYs?v,g=q:} 9d1txIdꕱ_uNיLJ oM 2V{|}:r?6,R eCo#ǰIGv:H9.,;fa"j*L5ͮH Ƌgߍxej xSe _Wp6 ։M >|Z/H%W '7*'6Zrz cMC6 h?ʽIϦn~-t+ʶgx| ejB.F[B3+ `*un7S?eCi] g#TP%n ժbcIgu{sR]K`vm͋*FDUE}v$ seUlG7@W#@.޹b;PŐߢF&~[gA7Xz[E&w@oPȔHTL_o9 B`E9ۇ<{nat1A?}gDb}F^Y-95ќ8hmS?z}2VXNCv_O8wՆFҔĹo]ķ)\,/ZvRCݝn.ˌOEǡj|.T7\EA, :zaHXh,H3'}YSjAyR}]=*@$BBD\;y6V] F6 GN67bK)+y m64o;d.XA5pu4E6$W|RNP*vwv1Vq-\1u cƆz{]G/Jky9chK gD;P gN/K3θMͯ́-BfeMa7 nq("iL"mD9W M?B̦:&;s@\aTyn4&og2npkޙSL%NacKR3.֓bюli|̳<"%]6!cN< ~)eKU{02.Z\ _7uG^i ;jM7 p妻ڸ̄75 N*E=&r)!|* fx2t;Ԇ_Vm y53߂RG,Dc mpW wۼ h"yH17@OM2Zu$PBK7~4Q|h=$98T< ]9&#%^e|#Dѝuɇ]3~qT7)φ7фc'~  {slY yDz24>2uB!Jg\i\nv Ὦ%q}ha<%)n &*9oH:K,n>;bZd;:_KLԀ5ʹ@1:NFQV%I#]IUK6`b>k&d P]qDIAz G?ThRg"ѧ".k=Ӿ@| *Wl,vVhKo6QQYvtAkGg28^3CO$`>_9,Snj<39DNN5xXɘ$ o:|:<17SL刹Sh; KG x3cC[I7jNACcS"_1XV926l@=gV$(8M=A7>Ӹo'ءwtՅO i^O`\@()v$?_D|O싗~(,v;(”$JHJ%YV ,ڴ̅lX sd_]//zp>ʌJnEOD&\0S_lTN9O⦖K/@aQ 0+FϟpԀ^+MqIW1 |V%ӄ%K raHO!eZEK?I ~.O}oAٸ@058‘yz$JKkslRaz~i  347d+<^7JpuFmfn)OS#ti:Ty2?;)Kc$o ۓ+/ 1oƝwc{]5P H$֊p [\bb+cVWCd$GR-;k^Rd`mxh_]]aƢU;1 Y: Iz6ostk᪱?Q4FX٘(O0w Of$LAگp+6n{ ?)E e̼ V+FWSS,FuRU91+ǻ%IHEX*^H*=Uf"?~Mԁ RYxCFhFjQJ7]Lc>#[{9K dk1a@*wUdKyd]^`AUUlrQ~^Ho!i>1[Ӧ $kV02ByX\/˩,+٣S)73..$1 d3@mS)ok`&"#G|'e L3'cߡW)hjr-1icn dR8-cGsPt@b4POVZ_uE <;?ro狮QW;c~ۙ]P(#AvXYW/\B=`ev"`94#ܚ4͚ (/izezkei\+Z?2ܖq>E;%}U3ܺLcI)>>6]+rv">|u!O_іDO͓ =rܐ:w9ft+r-5~uZbl|<P/RX}OD|5\Y @Wz$Z2/Ibnxԧl#;+|! 0wσe WD^4 ;['p~)lm#! ^ /شLR c2fH 2Iπui^l>( Na{0(f"YM[ m,r| r'g:s^31i+# ,zx2 7si‰!2zrNwuC2۱ǚSjIK`ٳC&Lr Rp0M_NTz+sfwjfSFyᠾ ) lkZh-uu止\BUd>(>uȿ$Ʉ"~a⤐T{Oc1A0o/ep>D^rssf_U_y A>yU5  ?4[?F𡃡o 6&< )rn~9^C#=ָQK(6Ymdl7o|+A]Rv:Gń~vb~J%͞@FN5Zn5A3 m9nB=Lzz7̅[\bno8/}䖚d; = 1$ #5Xfgub+hVf,5,gO:E킫]D[FJQޟ2E#onڌvA26u Y|#z=쓛dPx_x a l+pwx, a :pX}w'v*]ޏN;5zWkxxa:@v}& "-`v F1 y'P4 I``H.ކ3Q*Ow; 7#q\^yffݝWvl >] y/R-7}gJ"6|)9_VBVS L1Nܣ1JΎgd';zxعJ6t(XA8%* TuJsO6_Th@ÈU ]eKL_2 u"T;IVL~{ĝ~ ʠ[4 mlJ@Z1IH֚ʴ^Z[=d YΛT1%ju1G`Ur'6p7#K@#te}2D7%Go9^ y%*缹hE߶:/\ fdTEi]j8̷Tg[t`t˨g@GeJ_i(J$ZyBյ)E ?!3iD+1jvŏ9)/XD1+!#~<^]||e aI ]`9*i~ƫ'Ѣh'2 R>!(P&`_S7,;^ s[#^9eꕴݍʲR$IġlIe\=هk=')Mم'A0]m&RE:;pMbZ޸_&w3egncӾѳOIK:f}*0goKKkdn O׽䭣ZOQP>6!~ױ(^S9d\q'oSE–8}1f[b%N;iEmfSKBBz L~4ص'OAّ OL8F?vVNp{v(eoUD>,(iQ)CõIx=5#< hén'mKGAa/qk3wXĜ\dɹ_j]*V4HkK""X̝'O*@_/7iiEBA?X1F3#,?"l椴JUHgzkOO2ph*L8?ma *7dA ʓ(ܝQ|S;NiNrFFBVDT>Io7,MVXĺHcK&tZ Q OJ+Ă`҈Q Dz^Cyl#aTh#gk?ki z"yh δjFca,}0Q_oW6߬Ft4B+?*ZY]Ǩ:`0:'8k<S$Ty+ ۜCewZLɯx?֙|2n iT\1/$ЉQ8 emZa. f|5bTvJܰ,1XA!.êNa5Ac-,)h`E\~R oncւj\14[B(0XJWQR_[U)5a+3wp:󥉎@RwimhYz?Y.";[;a̜q 3bf3fBOdm.T>.9 IԵbXdZq,%Դ! /kH 0G~u.>7rX":U L&twkR3< R;PZOglEa'лXC(oe>sfvX-Q}#.Y I2i,g#dOO[ũ(V>*C Q5WRM郗.455]ꉪ&؊07kJC쇫igUoފ!|Rg16gE^_Cw3S-JX:8$BX*R?]מZ鬒rJzǔ~Q\ F9nn(Zx ւA G8Jl.W9*E ?dB72Ն!Q(gkq}m")'huCDXn()r$[r}>oUaJ4>Q0dTCvD/2r4P]rۼ@w|p(FF ߟ>?NtLNpa(ɿER 4׊ 4.kJP  6,#ZBD3t߸@3B+҆Xw nIPv ؚm.yG- [+|~gKiKd K:cECta@M&,T WH`Ē p zZ{ĈtEӊJVHu2\#j%ܘ<  fSp*WJx>PX[L$̸ Y#uzC]x|mԝЊ Vz,`r_,a!BCϖ8'~I) -Htf@M@%8Ac-x$s2>/Lq»K ]W$Ѡcشy{1?OU/au>.%5n&SW1<V'X"~ ɬwb= UD!$TxYBdx}:@#Qú,Z' S/Wjd"0]|˴pH(7HÍ3濥-Y共NQ98ҭ]8A3v;.ذl9!F?3l),׃)Ou#_Yk܏[BbvX@^P5xl{UɽpkZ-1,yX$?Buc~ "lMQ3$'80v-G*^-fqGbF&G2e8ɧhކMD E€x~S/;ؑ`t%M']= z6P9A`yC'Y~٣v6A$S:`&#%PƳF eq0Bih' :6JU6ilYhlP<ܰ : 3k* ai0To|^[&䅜ւ5؎Tjm`hiJJyr~BvI#or_m1oM=_G9H{T_ecj&Ѳ):K}L8eoUl#ЎӚ7 bA S2 i0wsɭ|4s3ˊ߶n4Yy啥 9 q2VA晶ڭlC( 5n[r}efbDs3ݎ4 Q{@zEpb#.]$?Qp+ /9RrkR"is: Ǡ=& Cמ}M6+X;d\$冓qB=C6:kXpB=D Rϑs n>Ꮱ.2z^4i [ hsd3PJg {š^tۿ렌‰uKhN(r]UnqR/_+jBeEWv.eU=`!Ltzt{-̩E.!w?(LTTe4ePA5G 0}V'oy8\P1Ž$fqsRNAs6}~QmÌ& mVj +ڇ?xZɠY,2+~5R6N:zs:)Y?C jwuon\+]ղڦkbtTsCl~gt#ZB[m3Օ"ڱO798tyھYgo;#'ȿ{LkP>xDA:=-޾ n~E+zoX j`yexRè5i3`Dg{t 1XSGeWܣ-4gzϒ]ۭ|^ v XfyFOd;-9!C$%8 XI@H~ҎF5 Iq Zzt#:n),qtJIcWFɐ#|u{K Qp<7ƿah$ȑ5!wk g) = M14OH,"kֿ9+d y)4(Ҿ }u \UUЬuk´Ywk 2" pa+u K1[D'FvaoCÂ#r=Kaiӭ" ]0HVefbca-g1DL Ϧfܷ_~[ܾ Fu꟬ke wXq́,D' 3v ;@ߔEqFRf#\t9#ۉB#OhR\\St*ߦ5mR;5W'/:ŴOhIdAoT1x8pI5‰VhI"2d?X”=ag6f-Tl-'QfZ̦rWePThdZULT!aF/[87%yCwSb3^ԛD*}]=j:dCA l5i|ZJ eEeH*cjEi_+= {\*=@I72gs[1jyGO @7_/@WampF᧒"%cadT$>քRV{BGVU.powt#MY#i= @. H+hl"2h$AD3Ss\c=.uV%,n1yTKnWq(&4>oDѴN2ro]rBH-ie)awQ02O`/cq\= ]P [3 G*$\)[ D]iX6i3K%$:NHV}, w|_k[<$ϬƭHrg=rTnCUY[rQ92CZf_38V D^TiEaT쵸rѓ&iGW[U?sWՓ\( iA#oO l EojBLmHM%GMO.j5! },<: 뵒H n ID;] FYz=5pWY#Iυ56 R3g+[or-9@R!Wܣ @ do]E}3w_yYgSg/tʲPgHm@ >A!rpu ȼj@Đ>p<!s`s8$/Iݢ M:h3 /+ʹ+ 1_!3A<GBʊϣcÆ%n7-oZ-' S[n1<<  m:LC p_݌p,b;m&-}ZvMK-rku?u*u[foHQÿT:* Ļ ӖOKTg=<]*A;& :vo>2 Ts*;6ŏ;J'sUj2迶|4E\ aO )Ht:O 2mmy!ž-Fݷ|;c7-4t A=gܹ3Л.W1>mBO9?HGqmN[BUY eߔ]#"Nc`_^Ѫђ?@:](Q?]HdpȒk%Vh{NJ}SVZ|oL,6,Fm`͘U;OGPKm(u4_^ɰJ̙/#$pXAY}͜!r#IC-ya.L;Z|sV3ÕTLFA 6 |,I(8"\,&m>t,zȞʁyQ6ɍkdx3`"G-YV rKdo+ ҄Tg ?[鹔=}u 9)CgodsA̓_Ug}[*FW1D$9'ESO94eC"R*SopAe+(WJrs r&bg;O-2zx#urQ-K+'VYIBw{L_$$/n.sW4E ӏ[[ ^@L!#ַ[s9NaȪ5pѤɾj%߆cmh" Ue?XEKmk>BRQOטNtAw_X! b nAчvwȐQ\J1o'+_TK,44O~B%D.ρ)̶du~ϙprxs@7w5sw>: T;5ΌHؾ!^rpr#-`~]vr wuS0:HFiWBn)jGd4MmB,JXqڝfubTR/>Eo9?QqϹQwcmDs_BRܐ_|-A%xr3ǴŹ3CbmdK`}U%}@vnNu$m쩄2 RNsL-̬Y.s+ Ś[^KA)S7KRm@ս2mu38=w:Pss.!`$:rM2r?ꍧgt/+-$56gҾP>Ҍ |ǧD$VgkS|#}e(h%ܥ5AZ[?U] )ٶXޕ[2DtVGշ}*PF`S )5U):oVk7ǨuC8$ c{GU0 mc/Gd(-4x/fwcqqO8yώv)DMλ1הE,]'J?VZůQLr+4>%| ?J 0 |M^žy(߸8M]9ݣv KtAirix&DjW<ib3>}E|Et";V*# @ܦǟon^<|fUΡ؁//,ӔWO@A{zn:i?j'1i>]W/Չ8]|ӮʓtI϶/ɡ' '"ߌFȗoIp>pmDU= Xw(3 ܧS%}c'ǡzHWCsR[d+܃~x G?= Nig{Gnm k~؞(PriIɗ*rsRݑ'Ȣ!; WS&7(zEl;'o˺I_=)vs|ժ|Ovy 5zu 6P{ ͭKu-B;#ʼn*(z_H~8_/ɰ,k\t&HnM);yAyo@!ŧt{8!w[uNBv2umQ! ud"~<=΂`-Ip7˿MQ}}19o}`.uIi=ݫZ,5'|o R-_w.E K/K ~߸X\M/ 7zQ?[Ce@6|v'47Y*%p%ON?mI2AGH]k2^}m%۸QuA[q#eݛ ׾^suxE{ ª'?UEQ5zyu륑pO*fCn l}`l3h S12!D׿@ Թ#u.℞Mnfbz xa{~7^?G=o\@gd&'4T\`INU" O:D%7?tBLrX nߑvx>=3B/ݷ[gJjǭ{Oj\r{BCi TtP Y\7qV*6Hmla_mKkWǔl!_H>&脪doqLubQAg1Z*FN#R"Zyx2[2KF%L\*e=դ<@Oe40 K:nDGEg6`&cEͤl ~CG@` 1D#G7f>,Q[O$ {൜!2?ZUG\lo{(ؐbx:H {[iL3Mrnn[>NwvW, _)s~UĬPzS,O%H"ݾ:{zs֥0IEI: ;u_gn2R,]Q"Z4 [4??39q2F`7?S&LYTD쭇@\41o*d7Z8 Vh?4:3Zch{,hj8;CJ1QrLaA~>ZesgRK}\:z㴶aKtOl[ .X\:j&S+oj?ڄ,cG퐢7  Oa,+L1D4d#:_3Z8; t6{2n- Rɦ8{*hlԣ@NAđʌ`|\pJ%,D̝zf9RwE<4L%$̣a "OcUx_KQ!@)1%¾m-ۗArG}L]C6v{ eIuN阆GȰ勢[uϥ*,nS*7.M1d\J'U-vM0As}e-iurՎ q_4J 5nz;林П IrC63x7Z}vEFȨp W'红7NP&_I!UH-Pr 7Vr0sƍ˵IΠ2,#zY~H C-blb$ ^Scqu`=GN2@|zQ;x9_`o6 Pqz\opWQ%L/h6Crר0/dII4.:NjaTXk>*=B"˝1='oc)JuG,dh唂C~orדr;CM'lb^<β! > [ݡ8rv' RrdlnV>6WXS{$t͞%}AC ы<^8b IV3*+)[8;!1 \nZ0{Γe)/W!?>&(փ1tr˪)xFw}ދS;}BĥudfS.RU01dFqp%> G$JH#ƊWOdq8s_IcOT80Cc$j߆y3K\rwI |Ub5{^&ky2n1$a]:bH:t<^l<$'V](2/W`XS)pS̰6S+K XhJB)1'!)H}QApÕ/әqb&12N4L'#kMdq̚'Rx`JI wgB؎2?OυxCi$e6тm4$0OD/0@NsĎQoKvۈ2Y'Pjh@ega%g_D h_k06snbٔۖշ+EqSv˘kmr]!ڤt<%]}9Zbbn,^,fW3ǂ F L8`[f>Q& GϦ`AB/" Tbek}pɹ"K7L)~ez7gQ5؇\wAE58 ߀bi;R&.UiFYH;KFZS&k}iVmz'34.)wEO Q\krjZi-1Z"0Ӽ%ʃq.ݦ@g$@TECL,Pp u?8;Сx$AV  kK?a+8\rѱ۞d|Őwan,&|l?jB?a= #sDʥ8t{mrX 9s 4hE0 v銸K:Rͬ&n*fqDlJ;i|n~noh i^ DJ% {`GDK"~x>BU2_>ah-ls0˫^FG.ѕevgz_P{?J"*|߼tFqZ"r•!>^+M9zzϮ } ]Vy11Hp,0_/LPY4r#mtZY;'+^d3:`ضkU opEQERv|~j]*FC oa9y$6JkBuϞ͓M+j{@NR[8տ~P7>5 AM%)L tRAwl~_nH76:7rg2 )W w%9Ānʫ42ac F  -j 1#Q~ kL~̌(dc啪JN=z &v}Y%30@rVx]e' mܩť5M@jΎ.!,]T2w7N7;"sJsyv(0,$V޴}8X&sN5wk #d'/1'yLqĢ&Ha:jX6Ǽr WCYڥ05ФLxg%>k&V!{UCk"vO'Jڍ{| 8j"-DM- !r7/*BΤN|yrIxsȃU%I-XB5Ft&Y1ǯeyXߤ:їR) ~U(>œkyyA(=D Ɩ|f<,dLu%\dE]-5Ìg~OM@kGj|{MLًXqCsc(nI>!۰S)⭻=fKM6úȣ[QːޟnEb I^*.tQ|7PnUNnHDbz^ m dx\$vHMU~/\FJ1g<6B7\7([奴 J91hJi«$'^(,y$Dr"#R+XyZ.f|uwǔqIĊ8-&RJMF:0y"(l1Kgqa2{ eD:j$%ci, Pg$o<2yv5jZ!a}ȡE O}H,E'Y?V o'aMDor_! *EkoY{R5IChOh)qFܵ>^ڡüO7bYcQ DD髆r< `ZR^fjs]@T݁It|5VH)/79 >{]r!aZ=mk= :U,cth:iGL!lzTiVɳ]}>#$3dVp[^nէ}/H#\i &:gK9uA 4eQU% +7]VRɄԔLe^f0%P_pkoJ;> S_{J 3>3<`} L9)YfpOeQ$M$gixD.}6Ce l-OwC]K3J͏~LvW=E@9Ψl`7j%ڒd2HЗ qfE|S5[kw9aѰM),;"0|)뗠_X5.Xʈh6\?kZ)ˏ5}%G$#x)[Yi\(嗾3#h C xǒ%L&j{!#,N )$sO.WUJ2c "04N~&#? RD Is03RyNHL_k02\z'?|! &kwYp',,D*Qe+LQ[=N; L:8x$F|{?e twTU(J%.jÁůcg20vl]C^s# 4-^![٪c _G^G3Gz![Z@J, hj_Jjkق{\ 1նwr`j)Xp97FКBUqBX% wxhuaՃ囮 {~g;w ^?Ώ HY>fS #הsx$aQk'ovXEOϺ'-- ތCYBz ^j-!6zJs[d"q1{+ƀyGw3eͲ]Y@dIjA,~7=m 'ވ5%p'T:6 0P ~8m_) 20L!ŏWB™f^2l U~w~1)Ѹƪ2iG7 ~+mw:{?`O;i," FXFO$Ru4ȉPFŋy{@ުޟУD7:1|\'Je'E"8 tP뾽9.&n1f+mOP#2(7ZS'yKQJ̎:h9Bz#%/iqV*G]mxxL?;'1RBpn~kL ].WW6Omp~h@p@]Zv((#dmv†~d7oe,ATT2,3Y⶘\D!Q?Al %vt#lbd_zH{vccY@EZp#u JzwDUGS\nEP59qֳk9KlKV;Hy- 0ϒ+;jRةpc;PooLzeQn!=a?G8-IgdP>\v] X U+33; tuu]%m#ld_lrE5CUN"X-Wؔ언 2 P(@Fz=0?(!j_Q]eba}^*,(} (qF<";[D:3xb eEэL^V*tmw"4 >k-CoTe׈(`$(PԚ"{z0tye7]u_ Mڠ'/<0Ąz?\2ۯqk&QsSy-CR ttai~=hh iUڦc#8b.kp;'9Q&㤻]E!*aza(B >6\e-ːn`F)sd=詼yf4gWN[}oNsD o]S >%DϐfD^~CI'< {h,#,,F]z.YN!cy!25hoU1 =z7 N+"AxLe\©P -. :` B|/3G O \3` x@"7P: tQ4ł , Ps {1_|D[i}oVEm={2m(*?3qa͛Di$t Z5Cz?/52żNOZ/*uj#N]IN=A=T MS}͓W2k 1_?? WVrraPYnLE5:4n @U,L( 5tמ w|8֚A$ci3[xDcE@/Qu "^q؝*Adv;I`5G,x{;3#û\9ȬᮯΜ%D}3ptKDGκGim+X]!/hk}[>3ҔO+&_O&q)x31z l]tȵWv!|$Q⌧it f\B~O*Ւcȸ?J ò rуb tVR4-+AxhӶPI %q |__K\Džp^{N*.5ሾXLPܗyK rBοHҲHζ[]߲G s/Mw5 3npitd4cE #I\O8 /L %t /N:A 4d4iX9tzf޸I],m_8!#k\<ʴc2M~1}Ôˈ4ԌuU'^~0lf$8ݾaS^`u/l3ІԹH6l!]cbj5o+L"BA M-sܱX&n' tΏN Gqٿ$ ˧p9{-+^H??ma^XOEe!0&G ;=M?"|+[ZSc+}9-',q=#(uӑ^>}@uHJZ+ r݆N`$u9Ib:Kŕ;[8U6_R%f,9%e2 8@O2:qCO2 OS|zz٬҃w"5(#nQBgY YQ]vdRz"fFqM#(^@FhIg=VԽ0X ө4Y b͆K7Թx =C0y$TF__,`,5dlN7d{Mc_MP $NB)Zqk%1mijxzTY78~~.α!!G"Љ2@ )4֑Õ?!HI֜E% >e^` .'|xW}s(\uOmzCY𻨵`L/..tIwaåLdxV4bRZ %W䧦z_bs5giJ#qdP7Z,JQL\=H ON6BN3 1B <+ AHYlm{АD(]7f]S[|:1tGlw4{^P5߆!/5yܷaa_G! KPZ! _2.eum>i)t]S >Aˏ3`*>GmMZa[gO炕Xnb\+F%cQEä_*Ni:țssu >;=5r$+2?̠lu*[mk#CAX(Sh =]h\v>P8͔JHKfsm&(٬N>wRU"FPAg>Rd?fɬP? 5鑇 K/.R G^ix+<Um}m'G>|_`h(5d(sUoC %Ez!+ϋVC։ 'ߤJ^0]qS{n~NZsN p:|D#~۩-I;c1BoR;?b:UhPV \/Z S],.<%DT8-77L&\n ,g5p0_&4amsP^2;V^Vྭ=d2A~-Rܹ:1pT8 ۭ3GqBN- Gy9CbE[ /O/%x"~ K4qMxq2φzzΜ+kaWتWrHE,YSde~r5½5}#>f^G({7Yu:=Ug9b;7M=,3NLf )c7{<jWoӫ4yJ]ݬO|%y;6y6>>jm{mR~[q}GbI ~2 ݔ)gi<b`?;\'#,}läyԋߛ.fglQ-#=aahnKzkh(=hbkg. s1tK9v$N60W"h'_56fumvC. ?EnnixȐŕj5ܾTkyHw+!PƏRΆeW #{X q 2^Vy}~ zT팬:9) Sc ?bϞVxۄdUX;P\D@a:q][)|A2v7TC}U{ C)~=߯?Hjiwn0/ f-1&t[ t /'MP/:/CF=^Nc:.Σ BSvӀ6q`-aNZ1wU=yAr> z_ma?ؠp [LV8iexh17cQy;wL* WP$]ʮPrL߂gigk ,쨭>Fh׾^H^@ʸCkPHVn5BWc8lc^US:D_d%p)Knpo_}F,T(7ۓZu* %I>䄓rV7.;;[*Yet-k7|1IQƉu3v?Q&-+[4*rי,-rL0t؀F` ?g F]<6 z@RS*Q?"&'K&<A6+M6plX|1rS!wI3 @u?TV3/\l+ُt8 2֗qVL)&SO9txO- L~;IgA82~=Lښ&D 87QP^~ySf ax\|<#(~K<sS'&au@(C;Fw(#fEͩE HoC̋ iE+-['>w"!o9hM\Y\+~GFu[IXF,"B"m #ؘ7"yZzj*/.0c7uv>-tXa5QJ곤<dsI $xRlY.U1"p/V.. Øb}!j.fΩGL"wKhՏ+,+G?ufi߭V<ˁ. d JTǥ71pt>>( {J' =Ґ%#_1ѺY,='NvG/g4g̸ =2"BFWcrpy]m[6ȽD&gMB^3:5B$|91s"2xDxy섂VA5i ̚)H8q0sm7)k?~xg%!S]Z@F[i.LO<.Rlwԝ*Q_e ʿ@uK o=Xea/-ຟQi[:B-"grVGv=) gהfq:r4ǂٖ`1Km5h'D@cY,]NS&J_xieG;uISr#g o2r$4t)*Zkq!)?}Ŝ=QZȍL4eqrQVg/\+oLږ _I!(|UHڡ>b#Qћ"{D3R zw Q ]?~1t)N O^eH؛KZpl"nwzmѿr,[@9ouF|LDYjUz,ћ}~oUֲ,_ā0`(ܐjXvS/X$[?{j^FKv//>6wQT(Nam-eS,{`>RBcUs"k5x tuY57^ܿ/i@!a1b׮[.v+=ͽ=5'STwvKl~uD=;w#1Nv} [%:9>|.队B;a|W[{68P~JD v8)l*_#) ;\UmmnGH0$vE;~ǫThL}FeV&;ЇgU nÜZ6j:ť`tϞ~1R D$Exד|=( K37n"d Lp 4zS-ݢ;f+P"ha8pܷ ˘ O:BS qFDbz<Ǣɤ~5F ]aNF[! ֈM[Ӫ .,ixYoK݈{geGLu6y/ˑ>qnNFMj8. :YP#}}k\żgiyj!K~)y.ؕQ{9RgarA_$C*[ : ])J&xp 2E+Qb+1mprҔ| h"m lcx2{1z߀w1Oam|G\&֬~`Y$s^v+3rۋD pZT4Сq''XXo\ abޥ!I"AĜp̅g1QG^MV_\@h ԚӃZ@p7^t 8u6xABŇ)?5Y! WV}Ej?<TR_pwL#*xIB(~#r ng4hG@'͕YWCVL I!' #i{{#]o~wTmxŇ KJ]|n:W`(m&+"M*s#\ ؑNԈuɼY֒.ۯ WGo(^ȀkIgM◎J6QΡ Yeh=qd bGkX_59U``[ը"ߋzz\/z肾Dhbn.izY !ҡgZ3A/Zs$tw0gS7:KXR9X[9JcYh1?3P=PBȶ@oU3 v G{Z,eV%)BG"Lj.і/f~7Cu,k~zK9_n||̡l^>c?:wKYu|jN.0rwW-q+KBpdqtF{V~ $̭Ph}q7KlXr= `ݱAdp?N\Rmz]`jD[] q݀ҎsYhhDHL*SdG6Z(A+YZ*;I4lq8l< v&AK(yݛv}& Rq s)Xd ٸ RlX6I{6q N1zڐF/Ϣ IWzʷ4􀽝aM7拤aWZ_@Gz9OhieN ů#S_oGgK td%@ )z{*z-cm. <Ⲥ2b$78qaL+-!?癵yC j CM]Z/̓S5j^sjΔuI}]'ZeH*%Rh*@;2L~p`Nm=IW%*)?IA@Qׯ!(0[<^=n3ÙWA%L'ਰ½7|L3 Rp(÷1(ŸPU;D6oʯy 2@1D hĵD2  <7L6WUt4/oȡgeGbB.76-l kH\ %&Y%ʉC6.۱6/anMml/bp! Q)L>Q}F$V/4'Uc2"pF34?jXd0p胝E_Ο6ٳy#}֯SH ݳZڔE^`ϵNwU*HJjjL,ܷ:|\k#Q_C⯒Jr- T: M[5lT)} Sn][^&Øu+onM`C@F 1Ր0gRW/ͫㄤ7fD$vPd+Ͻ$Z^ J}\EdiL]Flk`yw.۩8n]oEߘѩ'w'2jKpE(k#eP4x;b#w5Qբudz N"ԸR=jbݬeK ` 0bǜpˊh#)tgmOqOkpoD^EF̑zP/\vy/[F5">h|٬ 3JN$ K1.O{P_@Чxk1R1?BMM֔#TaGZGa{Ik55V٘~\8Q@`lȎk1`t; x#M-쬆t! Xy,VY]Z/URv.S+,㷮K[͹-w?*KuQe{N1J keKqɀ:Z VI–$)a'& MM')Gyj;T޷kJUC t$( xj6@bScTt4=h>l?5VPs6)䆽E([C~6"!yR.}dHp2oAQ {'/v&|T9۴P ȩs/]Aa7h3̍gtۙS1S/>1G!T7^;Ƌ|>l1SU :bß\1%2َ1-޾jظǹf_w2Omb!k6+mVԼWLϾ!ɑҹs C dґ<yj*RC2Q!z{ZG"[K=q+>7;~(kp<'"`'4z>:i|3^Sόeou49^ Vb'iiܶ611ZEm3ZC]RbQ, VZ&{n] !7@P~vrYI<xT`ir}z^\Bh_$hK-Ɵ(Zy~u/0~Xj=wq\i_%P#!M@D]}z1.y2C``fY&z+{'b=d9Ly OLpB41l>'rX.v ФFwڲ=CԞ bADcFӧN#ۆR)ʸ~ #gSyuٕ=.+SK&0 z2Ec|/ pc'5pِqgplұ T ,fOXZ"f$txeA_*QAe]O.E*MCS4~Nc=Kb,zY>Vey=Հ7ǐVU剃i \˶ s.7? GÈ/@ɯFN ǵ>WwLá"зQ\5rhL۸I)!_\t1Ѥ)oyJ҉O`*̷\~`iaHD]F[DYLdq8yZY\ kHmV: :m5w˒*gcp?vINvA``UyP.:JD)iyw "EE_x?TorF4Mer톜.4B)I!r V ~࣬"DΩ?Ό[c'oY[rr9zxU'f(G`1"ZԼԇ2 gKI”+bFe>QNLWY՗S3-@Bd9p$,VϺ]')%tRn_ ޮ;j=CvݖO4!(.ȳT$Ẓ Sli#pGbId6ln];F:zM\6E8kSLWY.0to#dĨ_F'tD@Ǣ.`r8}1U+$LJA W#rԹsq7t3ˮOk,ڦ|o(*%[BֳV2=?1y/TzaBۿ-V@&RW3 Wh<~"_fӽoHP@Z퓁.=XQcpoQw'iηޟVEC]Ng}<66{A_ov1ED7W#QFc?W<;y"/̮ʊ奛Rf=\n16 kT}O6ŀc>+f>(TU#( sW B f??u<|HRѤ<'UN-Z3u 7 [d -CWϻNJc$M\5)^WҾ,[bEWG|/>'DgtӨ𐱶-[r)aǑ1rKgdוSj*"\*mtW5ĦQn>&biݒ?wma7?ϑF`# r,/8lBq-CN4a(vD<vOq:1 kD~r7F %HQM5kigSO>۶@>oBr_ K#C.UQ*C{93 aOl{QgT(U]; _É5 켵/x326RY؊iCJp-z췂*%IR +kbAH܄]vqL<X%t1㋜99:,빵8h~yy}1#wχ0'Hg+mT9^Ҿٶ<>8-,˛L:FC="&ZmiNr?YdE=?[MqHiYڴڒ_0pcٰ Ynu8 b(#цcPjIt*íSv̭nFa")Yb:0/F=.X 3X1pg%O#Y}udlIY'6P-? |w]ҟ+cQLeR{pi1:~#M|P|N<~wgUKlZHz1C.ZqӂzJ) R#jNzP52ċ܊$-8t|}z&B:)5 #mN-uʾ|wHk2=G?cdd0mʨ"{ *l ID^hɅE&Zy-_|Ml X|@coi%xGf_90ɍgRچ}bhS*F1,#ǿ ޗX%;o-f^J*NyO4hc)OO+(I +ֹG'ubag1fe:91<&7p>DocmDFNWdӮkC]QЬq&8Z_~c&?a8 7d4 3>@O qB< {'rKhSAY^hۥ!"q.|V@ m`gՍ ) I$T>[Dj u(^E𻎞j˷9ٌD} uD4KT렗Jw6,Y<?w]tXXDw哀c8֪OanZ/P2 ,6~E׾2bs"V  [پf~1>+e .TL;[kmLF#lZtsaоJG·OpK~GHJaTl.-} 1:]̉}P! e)Ǡ_Ӈ(4q:Zd>4hL`HKt}20IB8}ŋ(h4A䏉b6m/2آ_BGc |y zx|t <ۛcV󤊍u E,t_kDzVc:,4=ၷK"3v{RC=bT20 2­5nP=/MOóKWD5'܈pL!eC@W_b8`󇶝W&_6HQnLqF!vpB5H,`IW  ܽ7vr&yRu{=u|/KA껾^"BDzuw,G]n@SZ/,N^zX!PgQw D+˾6gM%VEu}V6鳫8Ugg!j?n<^`¯j \X:BjYNl}VZ+{%Wo@Կ&ielKUup';A#xA@CߒS; R8w=ʃf1 lgv= 6W(~BJA]->_J[3 0zt2JIV"pj4]=G]KI6* <d"5tTvgғ?BB‘LB:D]rԇBvoy:rXrCCcd Q Qi'~ gI[Ur#c<ffvÚԠ,J\×9#rn=;Rjq<&"j=Plts=Nh"##5 qqDꭄ`{ġAWb&縆r0'IU2r^y .$)wjvP Y"dw~iB-jV0TZQIFznM)"#ݬgZ?}K&\eA1{+>d7nIn L&c2}ws?Gヰڞѫn↔yf g1b"IXDQ "Fb`_bDp!Xʗ)Ez6dRׇ7X6Eiz/:dn䌋I7࣎PY\)vOB "7Gcn{tM~. =g EQZ 9G/碹c=WX 4ͿջwНC)-7#6=G,a}ki£zr夵'`*Ȱƨ7<-Z3Xk6mk^AgY6QjΗ=S7ca|o qwi9yaw7O{ VmŪCA,]ڇ_z:hA+NHSoLJċC`a$֊(ikDiS{ufE(O'8%T0f+EEUpb,_[OkpYy~[~Ao bg2J(" -R ӴbŃ=3~n#Tb=IFh E?;a3%+Д$~hB>4}|Sf*ggz.ZsОaPV ăd;Hd/J DG($-*7ֲKN!N_ä^K?NZRWf@?= }'fp@DVy(;e56;Y5:M(]N7% j[ LwS_.=.2A!QM(p5y/j6,\pL<"ka>JmwS ![_|oXI[ i0Ryac"7oniRL!ifc_l`Rvc0( u}h8fbwNyy f`96D $9 Ruڭ5 wYx"K]xZI+ >r;A(rb*a5%x0L!T ECc#x5>z1|t؛|?ŗ^|wf6&Pg] x &(oR7iDit2̀^#*Ack"a=s`OGlo*(fϒbM~nό^/h2TE hj eʫST@$ODXqHū:[2KExwmBQr`iri{<qR7e 2g^y5?r}D jv,=m/WB`LxRʧ;kxYK ] 0/9CCsP!RV4+-~nq}'X "-xHV†I 9m:?s9(9]oL=>P nVOFĊd8ݠY–"oT+t;4'Br2W!« *5nҜ$'C'.(ri HóTF &/r=ׁkf1F$6UHx|Xu nJc_| >?u$#kBA-` ꪊSߝ㹓X/%Zs8{_mcሄ02Zd f  4foRs 2 T_㿇l2djy(2%>U/I_ =Bc-{Y ./eY]FҸ9WA;a`4hl e ~(eo9^hs@+vXda<//>h#s avW)y< Rx3o/`(]n&T Rp)J;^?uzY/0̗E(B rJ|a[\⩳~ \[ZMPI#pj;ӧ|#"(au&PRB bzu k6quP禭tL3=/=eo|,v~hRQ|SMqvByhDZ޶#b.w><`Wû}^=x#q,P׋$f[W`2Z ;l*+(4 eY9u@ ʸkQȿKGu${ְ8 ""wF#zbQIGA:r}j׷Q}`U;`a 4Mѩт>w}ȍ|b5i۹I#DBff{WL'"=jA{MXF.A搲EȴS<7 {]d` 7K(|h&"βK8%D;ȱ?^4;=!O!&h].+~Fc=9ߦ-Q8|-Wa?㻮dfnI07[zo %z햬wN3*N-uynOdrIA.1!@Oҁb0x Y.#%4%5S-d?t5y6REw-9ҋv>"L= .ztX'I$_Xp{oSUy!"E}aUE*Lj]Mv.A ҅aB\!ʕ6F XsKt3q3 ݽ S: %~aj|L4'quovBdFEjGk)?;'bQ۵نGă*k 2_,]-qw?yJY 90,KvP_vew+QMt2Pg򄚓xf NɎے@vsjК]>8e% 7J1ȎAeRk6 dSO;Y0\ta)Dnmt 9,Wnk6'mHm-dZ|u9K1Q_F66qI[}ْ|ϣS39ڹ*a( beYkQŤ3׋0cYТ0E`z63'ϔhiJNqӇ7x. ѪIFZZ^=JF3`eoI"l#vk=_5aFec f RWy^S s0Nn q,|*&7dM"8~d.J6&fib89֟jA] QX-K/?S qyXy3uSp`# RISb_Y|A!r L3x~Oo&+ ,p:jZnyl.VE O%Ґ1D,L? mld& O(|~}v%_?(OB -.(p`A}Jf)$6bL`:E5 `w_RrZ'ִm FA'f]8@AQQE]7z T{zùbYеZz!G8;^5%NCu^oUCjV@>_߹(|w3 {opl(;z eJS,mt6F)ʟ ;,^VfP DIzN_6PxbD;Bs Zŝ|Yt +Оd͋A7Y]x-B#p,Lbs5X4uҎb$g}rIW|ɁmS?-BUαzH9ǵ]Θb0Ɲk[lvIG6'/66/rexpmꨭB]xw%@C^3TP n nr5t:7s=Ԕv*n-˻kΏJϮlֱP)+ 1~Y"P*s;+Q#d" 󼛻ЗIf&ԉ-Տrz8bR2 E'Q pўqR8~`j&LR0 ޑH}+vo* 'y5!6+ߙ.Oݏj_aT(J1Ck7b~K Ci'>`xI]}/_MbiŒ%S(|&ec$)}onq kbs[ l{WTz h#úm 0&c@k:vIDɈ>۹! F/r5L\v0eMUHTvsve"l8 v eK}lrNy.4"Xu8Ċr:4Ur1Kۿ:5T?d6P=g A߭k g ! fLa&, sVw4fj_BB2r, ҥ.~;S]+FD+bB(Q*[mL-WEO3j#>F;͊kjwL1 LSٷVջdhkvk0$촿T וFw٦g/CG.i.z7yIv\; { qfT3bA9N4QָL9ǽ'ߴQy[0ᲮUaP5 }M֮]C,QNjXRhmi+j3@V20 ]ndѬqĥu Gn&w Ȅ5’^h~92ۻnF'<֔}q}(b9=vYHq F7H}sgi<@g&Ju?BJ8TV@1|#BEZ)GK鎕O=x-aC{~MgzMt=beR6MLb&v,7j<z=K8AJV~w& c@lEU'!bH̆Ji+̍I5-p1꼓)NGWxL\y%?b@m ` &(n"k_]),Sդyc xQpYzQQ˕Iݑ_^z^Sv:鐃"VRfhʆDBB%)ndvu#1TKX;«) 'ne +y7sSw}'p=0Vuq ) xPm>Áw)]NOD"M=-QFjsIFdžUqM_YVxf Ld4~'K iZ;rI ڕmw3R &M]x87;ISia3_ ٭ *[b;L0`g5O?ta~x<}5aKn$O;&  -+fmr"LV}c:ByO^($w_]Ow/ʒ':ꑮXޫ#& BK=~A }Z;R k;Fx }Q8_\c[I>7h+$ u&s@uh7FaVfK-=÷}۲ѿ"yiݫ#V-H+J Pp&O (Ul_3i0 q2D\F<eUs XuU .T RsF߿¸4|83@h:Dq*GOrRƵjn4$Xvd Dͯ1 _ߝ5w,pXz#.(Z%^Q^t&h&#}LH2a~uf^rlR[~E.-d3G-oN>k5"wRmԯ_f S:Wgǰ pj4,ʰwzTo!e9>3t;پ~yڋdjpRPf[eR%iW_u7H[Qg&SPdb/Q Als+c$ىMcjΔ\T8MØg94OV8isezE{ˍ &czgg0ڲȜ,d_M;bHLtºC(ˊ!AԪbU %폵0VWDn%Y*8D$sq.$UE2uF}YBK]|XgDiU #F#5=OMc,IFZ=䛥9wĀWYpDd,פQVl,Y0uoιZI+)^C!\n?C9S)4J;CݗZG[Xgxb4O[19T&uѐġ5.Ӣaޯpe_(3+@; ROX6!Zn0"L<~lO&=mAw+yU~~% Nr[%u`&xG#=eGɹs}AQ}5SiaR:N1)3fRYVgj3hɒ]̦1)Vw =;>] 1(ԭdDd. /ޛ8Qrq'$띮u{;1|˖П[AH[B,o-X-y@, 8&x)05I;V0mybe0\{&ܨD&ġJ6q4kSm܌M91hgTKQ9hԋt9X!+\!ȧRLd vr] \^2@ao?7dY!U;qScT g\|b4ޝ Pk,նUv8$uVI:opmV)*Z X†L$Cc#L9|}n7($}E~-⅘dD-ro|r;R` '~8,0&Vm&ll(q_ ?6̲}CkzN6QV BI5k 6/,d82[>0; gx1g }-]M4=0¾`lAo͕k}[aPT, sk&=l-&KƸnYuG6!%fi'^)Iqp*RVH-W=<[:X~lVaDL[*3TyIT2q]+h8>ϦF{9f|e{"2~A]`W 5`gPK.6[O29: "/1]&W!qzWA (lzZb1x׊ =^{t;;otԲ+ uA79Y42٪qg?N1@P:!aטi\>7z}-sڰ3E[ czM%Ivc5 i)-H&R]fqx?A3K}@t% aS7Բ⣣8op{Yc'nHd!*j=`ܚ,n<Ji )IѩV4:\cyic=qXbm\Irb*4s.17=A? +(Z.{/ʀhc(_(X B4>b`W rL1Q.bgbi^jw\haF+8?'fu!cCFfEay%w"ʬ29XM=ap.`I^PP?~ZWgQis\Ɋ-cͳq`QG%{ov ;R.xa/Ո$ւV1CPb'mn῁xOU<zM\\b>1Exh_>,dopjdؠJ?<`ZD /7o+[1A{XXsXGk]v"F[Gm=9{Ĕ9vQ:T?oXux̶P9btHAQ% 8썔|>U]4zM(:ӄ#!18!5bV ɕs&sv| ^׷4:C*|82ԚmSYk9ndkd+$:N"]S_|qPbAdrD ,AZGl\φxo`7̶v6+"2U1*[BkhFg/{ GTAg^-t!ӳc֞JN ŜZ\<Nt;V^~ONYed*H8?lw՚)NvSVP0i=q\bM6Xt9- !sթ=v'9vµ=* * Ƈ"IE)~遊=閉~7^S8Wm ڦUDy{P?yS5z3x VRFPtS6\3|Yt(aРj_'ao)KNҤҸp%3Kc>_pǬUye΢7Y؏r^16.)vShR%D!aIzi18H/K o؜r=6 r"hf@tVLd)ǚ ^&mF?,]Cs*B3(W!Nii= ٪S`8珯)Kxڕ_7`H=b{dAM\Wi*fChO;3=ٔ1+R f6OQIZ05L͆ź[%wqfR·F~IC pEFd?݊p*['<{[aP%zIN?e߻wfBjnZͷKsHlj )J\@ a`6e8ץRiGh9@:[ߐ2$P򊌥0Erkl$mz!5G|oTl=9%c}tBXq@)):4C52J}]0E &6$gb!J&.筌wn޻N2iΩ|O;=Y_5pp&-:3 {ȚbӞby䖪gWCiIPx3vl?qj9hۧb6ƂfF(6-vեI|˚v1tGG$.5d8h"e--ֳ}la71ZEtWFk)8, VvQ*(P! tKs1V C5aiV|AU 5g`7#( 5꠮^q!ek:KpzI?25CqS9K-cΏ*NnM~L|e" }ۧ54woӰ\6AƮ:\+MJRȌa_3ԒiM)5-fCIncHG`]>>Tꦂ)EmҏW; 3R y-o b_y?bJyP3)3V0eJ"ShOY~mbKH+ӭo\HV_.90:U.FUP U.<ѐ2|qgs̀$ iHqZU/) 49ZO zUY Kkxb"MϼҲ;6tAUw#<6I"#4=g>6yXj2ly٦–K30cwWFD{mg}]*ɿT0펀= rs8K1}٩vl8NATm.8ܔUQںfz\ɮ(X\Fd8@@%FTևAYēc+KzVsK?m~ h9N;ijŞw#1uf4hܮPiz7->Zg3SfDɏ ˴e*eLDɷ N*1A 7 /*Uy(QIȰA+BX喻Rĉ\zmK@4'W. Zgt)ڀ,qO vÞ#*̢n3- aGBKajZM]/ۖQ}Z>DV}\72~,)6t#l0dTF8 bU|NZ;!;HB6TWG;&(g* gp^`Y}7"01QMBb7RV$s/.7b[(FESq5:ypa예GoPKesL+4 O֖ΨԌ/STFGe0dT&Ɗ;N2!`^/E7)oSazs˄[Kd#U= i<LjV4#ݲA N҆%E$`k! I;ן˦i?Ͼ@%3bRLL3\-Kk-TjvuD9IP7hB0=Z(3ų:+E )% d[#Gh&&E ѠHHajS)xA5kH:B4! a"đia񛄒7=Rƶ̄N 'xHߞ1Ǥb+4 dp_W8,. _!8,!2u*٠D=j ?g%?hl4.?_ ^>yp_-^]4[( vSpIe`HiKm'W]4$fn3f# I (+W+8W! h"SFhk{K%2-JLZ/hyN&8Ә"#"ҋ$d5e"^p48vZejU*}# Hw-8Cйⵑ,c!5;4a(VtY v`9 ;$O񋬭&d{48p[,VG/IIP+qVf-h JGg0a20쑇9xur8uM"R5D/g;mcfzd?* =kW'`L # 鏦s`7`_FnA7N&]ZJ4FKy&T8 Qڅ0CMv|YqeRRRY18̓ ğה+i] \)U0>K Pžӿ{%U?^<ÊAq=@PTF1K52n[(KjE2)+Nat r`ޛo"HvZ*uQZR8q 7b_hQ UTۧ h .u$-Yd$m;9XA'Fn>%K龡?rxg,^o='\.M͘f-/ ֓hRV=.cH+R6RLE5,'!bC'L-ܶ+zV_M$݀JVuĀ%-2)POJ4s'Yz,Ik_72CLvt95nP6M_yz!g\O'ġ_Z G]Q"HHv%0{gcEk7&)0c ֢olElzȼ8J# UUDFVѺٵ=p~_dAqa D t:k­TRv_:) )"7M#==vxPaCV\cJԃ ^H$ք 6n g 3ϴI]-P~Yx>IoYL6]$l0^X YF_lJP@1 oHZ_`P 7~#\FB^S,~ B06n rޝb-fB}W"˥***&WBp-k*/j:ima"7뱍riؽ78pY/1$˝ D{,MEN ~0#z nʙyG*IE]r7 IPL <'ڮ0Ne[ @6$0C31)B OC@ $s)Ϣ|DXZR";˓W#zs9D qY?Pd:ֱ|K!0x❂/$q#?#NtFz2u[CȾ\( tLy NWӤJ/ Ǘ,3 :iĶqL͡y5J@Q"@BL2Qm1Vf`qZ-*}Ԕjl ]fgpVI8݅r|:"({GOʌ4vYxHtY'kM"g"*A t€ۗ1!kRQcVxл,,$fcT<%AJ&a>}tWR 4cEzQ*av{\A$Q/{u_VWFR(%*D +qZ/i迻[2{z6REćX_k`@!$ZHH{pJgTRjJs_KL}DdU  (WZ5 B!'w,w+u źB%F& m`7O68MIs8A".gw{&.F³Yo:b3êF;wA3\xErTp^PF5yV99s/Q0WOA\`Z}LzVNrg uw ظ&hܥe誣_m̥x;&zGĢM.sSg$7,MAuIйNw JVYӮ%[`ƞ`m/2(9-EY3sZ#\Tw$Q80mԶ;gKsPFJW"dhqٴDЂB'OƲ~]p4% Pcs6c!N[ @9dչJfO c ǂSx M;QRtvv_V L&A{iQQG^U.uw$4[=<qP+bvA  F[ (8Zl5Fp Vrs_ߘ#GNj?XdP]׊X Ca[㇗'j< 70F6P5;~:{roznVZTY1jV 2Ӫ3w'sHOV[F)'9.rcc֕]ns.GO-THMq$Hb$rb1Zmh~]%U/^˺O~ c F <K3$c.a=iY>S7ɗw [‰MWǎNleihbp WRX0 Wu@A7~2@m8,_b9]ջ^ 4s6=!-oO-{8N#^Fak\cy7`dkVilW^Lu)($+Crku*̬LhiSp1T9њ(p "G~c^S 9N ><}dϪ#u{VF&lg"xwE6zÑQYbYb 3#nn -ŒvìŖƬOg3PFH"g&(Q~Lǖ?aS<*Wi#ӿB!pOP;)`Զ|wֻ 4syFNl1D X<Э419Ó^1;"r'Ş-'~%j8@a2 _֔(% 4(|4 ,dI<Λn[5a|m|]o>2ewEl5kj Xc^DE^]cIw 8, /SaH]xs\tS:5|K#iQ2&D̦et.'<=Ry.t +PȣS4rhg-9Lڵ)F8>f>Ճ HA~a }Ù SJnIKyD^6Bj~v8Ia.|F ݙw]󕕾!,*Aj\ki0kWcrS:pDmlZBXo:*ȩ.۽^w֌FeF!8ZH2wQL/j}*D @Z\o/$̬q[?;/ࡊLSfG,*Gc}$-et:3R0|߃)Ju m9l\G'T~芲K.6e]]ڽ$!؟s7%&ԧ֠Fvoh݀V&…5< 9LT2K8`%P:Xg2>3DdWʠ&"ƁϫLVVvQXPdѓ" bwقgOVi’7C.usX`5 sމxVt`5d~mU]ڧH@ )(i ڋy MщO8`xAG޻*XaeQ0=HT2s13Ϭ0PrW+9ÆTE6 zW,Hr6C+5DnhNXȦkG>Լ=ތVԗpftcR(ȜR簅jJMQ'Q4Aէ+ʢ 7[Fq@rECMPgM |8 |l†Æzeɣb ]$A|GTsaT eI+Г!* @L]'B3D9%Vg|ā@:O$f3͕fkȆ,\/Җyc9|<LX5@z&Hq 6!ՋwI JfS_imޔ4ӄ^%d/Ǻv 9J$'~% 䐼K:<rJqY3gq Uz8H3N{)=n1!!l i'SH{MBMWʚt&v F>gM>JPezp=sftzHT1Q_ŗߣܼ9GJ8hfSN5O*Fa;g\y1H8X3[T;0Iw!SQgK#W6c.\ ?KO'N.wÿ^3jl]4 9Vo"<%̠耗BfCIg(O"#Fc렇z&fm *M?[jq{%dBt) V sԻ_] s]뤰8os) B8;vAVK\AIy0LjUtr w:_-xn2m)P,oS PQVYOm(b+_!vR'VS8gǝ#Hu괔hw<`y]ȩw8*T˔դDsz:La?e>Qm~!֝KFS~)tHӫU0v.9 P#J3xry.%h,SGݓMq +|^6"Vw\Ծa0B6{} l@Y>P-pĸ9]%rNN'sD -֭k{J(CaM֣Pe FOji`oo;Ȫ?fr◺ۼ2R>g8uC4`2 D&S1q!z|鐸MVW3!?KE_0wLsMx)YmF~7rzdЙH!ylBU}hXj<@+ e'76kKJPׯE F3ubr -񟏑2SJU76Z] ]kBPc?wIb-&zV=Q>#ҹ s20p Ė얖5RP:0UI6#hiyp4y0N}5ձ-tͰϔKpq2:V *NjRᆪ$r`(lXH_윪Pڨ` @Oߘv?Q$Z-P窒-ธQp} V؋Y:{Q4GsI?f'٬+ .xý.U%TbMKv(?vVtlQLkX-u d;8+6d*QS4rH"QHKGNg1v-rG"Qơ܉4" -x@}4*4/ 0hZlo}mu~YM#,kiz)TKoAZC!<4Mzn. U u&*x28͞\w&J}WC]{# wԵ2dZov^T.!kyzԥrD~Ijh| F!  ,nKcZs gHf1~`5Tx#j10r"$k<դ9D2d@ݾОmPeI"oWgl Pэ6Ղh5߸WOP*F3 W[94aH40\/ji5YșDVZe_d/Ol2&9[l+_#]b;u~+״nStqFfI%Og%9"ij!VGx8u>$K˱Ly)-01ݍ;8,$|4ROn(j4׫J6{Fk׭ m 9'Y,/ 4EMĸ1Eg/ьQfG*HO`H 咟9%T\3i (HồÄ^={_ڦ8a(RZB%9:pzi]H21]@7ه9 EܰT/rޖ@C ':r+FRW#ӆmS[Kͭ%#^-Q別ЩoXĤ G~?Y|pf)2@$oXG7[Bf OXA־)pbjcwa=f#YFcq4QQ{'Bpd/)6HCzUUH}ѯ?炎7Պ9L`zGmXrr}xsT:x)g@(=:]Mc[PRy)DsK$, MCM??$bCRdL\aI"' ?(M?4d =MgT=( K=Dw2nJJZhe5Mr|=x3k# nq;D%!Qү.~ߥGԒM@3)^w5ݨVv@oLF'L}V@4-w~`Ez$ D*Cac\{VJ1֫m7$dW#5*0HDpo`dq@Tvhr?ul<Ȟ:5^P\m2渘wQG@J& qrhYTq֙ըVl8Z{4akY;e2<IAj.2\j# d[F"yǒR)* 퉶bC'`C1&Re&fNj޵LV fO[NTKkWosmLj"=a[]o[LɌ*+Ѓc"Q,;9١Xr@ѐ“(xi"J0~ܳţ9}󾋄`**fKҜT?o/mS&qN""3K7ica 䓬pt-*,)h4'uhxLjf.Chorbgf3k?{5G`**ի38qU_ &F]~G%;c;>kfFJVSU;-W0s~=DmDa'7MgʉA &W̟?>_]~blW`7[ b79z!.OGqGP&IQp )zTr08uQɘ9+wj)~]%ZДV k[(E;eπ0N+O1$vz8ߓBhrJHR旦뺊,pnްB=@G~ݻ.pH,˘$2&(F %9Lg Ib>B1f1 j[88]_pqb%uck*Y=9:wnnNYtHȧBu'8*yqxl3{1'b|2&/mXEC:_aǶ[ː7[w|e>t8䣀iWmʁZ%qE#?bi]=Tv9B EL1I`ONPdۖ@" Њ[ Rjx ς 4qכuF*Ms5G5sirPM&1dd]DyN$/vj] ^j<@@ ez<M!_, IZm[B'5>eR9%CV%I +zr(ѭsbxL({EVHO,VUBD46=Sq}%"rsR[! a]omWaԴ4zʞ FNHSbwf+;^!ic[67*OڍTt]+DN,=q=< 9x4rx+[RZɥqꥳW6eŏ!L0f@/Jb%!,m5qae&`&0:tB2텿a6K<3> 0ʩlaG楣up,N(\{ cKiMF( СW$ސ˅[34%*,xwpa;M֥5S @%VDs⯘sMGS.sIԷEپaYj^ga!AU BlJxK$S]3joyaEVį[?WvP feI_jd]O}=B{{@lѴ#iZ^#w-~$6VO{ 빯_G5&#@۶ʠKC0r/E{yiR~7scAXqg09<"R^5kCLE UsǗ-p`Df($S-GKp lrN-r2p{>-uSD$%ad+EB?kJR9hUm Uo'! iA,;m,BLyL,<rsޮ7y _l:?]Vu(*% f:HY8\xpC75)LʀlҽDhI(t40"ߏn(:gY ZB%VrA^p}bO*';W3*+`> H;g.t$ Zax{Z2M,Rfhp#>U~Rw r=-] )nB;˓/]X1nZyB/wqXa2,X4klX 2ڎ₥i0ڀ%|$p ih9JCz+XhwIu% ocacP9ọ0vFVH~5 ]dJ!dGye(E:&T,C،ZkCV' \Cg>_Z륔?e'hd";[(˽6SkAC@W%Q)cbz3nŜ$fC\/R;}k7 ,wLzcywSoXsBA+) 0ѪT^Ϩ<26pGLhݕh#7*_#"u0uL_ǹ&Ah4`IsKcH9X-p&RQKvcz-!=/{y @(CrAv0,4I/@`^=[ 4[4 I$r肩͋6b{y'&n%męqɜ1|8֢;o7/e(NYNq*cUlt:6:c Az[(CKy;.%*𹛕Pc@՛ukOHX~m1kiNG| HٕN_q3+vTǓQP0#_9PcePٜ?uh,B ٙkSpXOJmeF˔F e^YA9yMcI[A@ðmÉ dWg;N}d~mQ`3Taș{ҘcX&ߢѸWݝjirlT\Dz<](0Qc!Y_ZgԂҲK6|K(ٗisEF_*Y~g[%$54d5BH+n=Ec{@t7?IU%*ThOՆq@I*QqJ.F[)8HfsG2/]tK$,bt$,*?rXGyc+" ˊt]dRkKc [n)V{]]:gz`RXLWt,0D(I!B796߹fTMAqf83 td/{2k,?ntBT'GA=mc (ۤ<(^j¦cp9b;I1J}1s(Fj;hM_y&҄ B+B|^ʳoILGDcb{ Cg_ 9fʮyfk~f]|!nP,ܧ"0Lq\EB-RpA9.ХLu8_ptӢo ]E0L,T(7׌?Kwv4XcPt$h9+:@6rqZ g^{Ll{wA5lZuRc-v䂃 Ԕ_oζSP:.ϝkĕ(pR|`4K"c7Ʌ?#Y7ymj}:`ȝޒ~K9mKeSZ4G5dm/Dz~$# ,4KERצ^w'T=[qle?m0)(CRK5e[*}P+`v0VV;?5綘[+g?aD"nJ%4FhLg4:5e Dk mbJӖd%Тq S'^SȖJ\hL]mi_W D~εjXrؿ, G2fg<{߈B T^& = |`1=Hj!A:6% JV>" nӉww8uIuӦNxW"K)lGg~\nE*(֨/@ ށXg-u7Yx7 vstn$fZ}]-NS"U]p Ug]1԰x@vP_iN^4&}8OcD B2u3p3$GK)Y)1C4G8V@. {"@SVELف|x6-wkr>,J`;D&unOƽ{7"GC gD5LTŤ:0:9Œ:SCR@ k+u:DХ0pNQUYpXFx9:ߤ"$N5 :~ ו,ljq1Vhn9#GHrE̳ NJ.I{Oq~}s]: WwNAX`sc"K-7 {=6 bDoaN-q /␾r81ojun5eɉ2WݸFwޒB?8yTzCY-z\Ք1lJzM6K? W9-8F I0`@ɻvb縷͡a)Np#gu_vv.8.@Z|'5(e;Vi#1!SJd UA< &V1zY,ϭ-~CU;oa3@k?yh![nA]{ %LU)W;0)BaSD%BȯeόK#s2F!WLC2ގobT~-;M;JXyeܝcPA`} ^C$x~@_u/Zb [wȥ9/dؠr? KDB_—;b7H]Onax{`{OB|%vHKhcqh?38B6N‘h8OtϢK'+tz0@໳&P9LCF*7,D<ݗ-DALO8Ie_;f{}.E^6'5>C)}G: -:LwLي]v) MUAr`K=;MuXDyySu b0-gkS!iS,Zcښ)d#)=S]vʳ* 'O|Gq%D5e򕴒vOX5/3,5 9:Jc( =ea?TNL@Fč䟿e0L]R~仩 '*)7>elZ]|okʎsrD()CҘ(.rXK'GxwVa- ΄4 =DHI^^wn o*w:aRMQ5((Ԛb v6@2 )I3!^-lO+SM\o=C~.3f /md5715ݬΛoe>, $. rҖʍ/Vҙ- y*!L\T!Iw$Sϙr '.o0?Icۑ59p8U.V AE. /M58@U_l' tx5צd!4 POOqw {gT A?HNUI\ZsM.F0ͅhVN<ӛNwmjimiwCfg?HlC_t⫮8vT/bɨ9HkJEbI%U6һtMzd#6jL˰BP*AI ze%klFKm%c?DjFd(~)Wo!J*'{wɐN\n|SL} ެf ?"~(+` Gf9&QI8# *(/jojRu 4ڃ2[~~|ԓJd.;Ynz VnLsOQ-KK>:/.oyoi=WYjW"(ՇM%)0J]xx7K'"W u'Gͪ("5 ђK*҇%ukR{n2cD|Tyi|m%;g=kQۮz9t~E%bPJDN0 s!V+|bo ㍦e=ybeO8Eu,Ai4)$,/_-_YȩoPg)f #OūY˺h&qN.:+2( ŀQ l=|: O&zYU߮$Gxok6}}z.@ZAlҴ..uەГA8IptTDm; qM$[})_y'=W<]h0nm2«m.s22Wګ@,Nu:sYTRA( ԃ{00h҇_|M e0O/'w bFoʘun)rSDkh_߉om3Ԉ+ON[V=6q*KgƘ%s1f0' V H1$|,צg:J⃪ÑPp*EZd:=g "/ 4Y< B}^I+ )"gt}e^Nݷތׯ\F~ Q*΀G9FY6vpէ݋֌>  C} pʫ7Ig!:B51^ޔW%1.A ӁvFgt$E'd5 |ߑ> 74RKUo5~xB5[H-v>{Ŕ~JuƙQEu`܀f'ԍY  hU2_>'iFB#<bO׾GIW9e66'jA^:n=u0O;ZVÿ*`ǐș0=liD*/nϖX| :ݫa5K+%W=Y@.#3iRQ9Gt=nsm˝_VpMqWl'by 4EQoc>9D $ߐ !"k3l=֤6{ Oz}5&عۤm驀> / ņb簮@P6lwd> ?k'>`QzK+ی  %— {)qg) K4J MѤ|\K.G~%O?I[?滛ʘ:]BenBLl6IIF=e+.C4dL *H`.j[\" D1X>0j$ a8jyE4 ذwقzYn x|&TW_i xcKg.HW*!SAږSڮOO}}cA%:pL3d ,q,* FAUzzE"YФEpoL7kv.f!=St|m/<|;1|B eA]*r{GMV2 wi^X4eQ@4T8KR!ﮒq8f׾0+ʈ\{8IWx#"X^y4絝lg_NY2( aQ&_kjϏI5YuyNn)6=X!!+Qr҉!O7  =45]G"$-)1b3ǰ!)+;Bˌl|AED!:W3CEAMEvQHp ڕQ#DaR!GEhdޏ:V%l͌$ =K1GVoY>?GD. XdmoYݿR2hƹ#[L>p*9 K dVQUou*gօ'^+ó{$7`}ϊģAvyoQ$J=BQW_(ؙɟft*h˧ĈljU(ɏ?d"pa7~9c&Lμ*R<젪7m plhTA* B)'Iƒ?IJm-.+Ȣ~-vtn{hRP4nЋ# $Bܷ__awI8 ڒY{VjsRԥLX{g}EGA3C9}OhDnlӦzؖ_Gp {[w\Z{U.N[;J@ TSB1gYW-Av%esmk>%,u~׷ %UaW̌[T#u9,%QD:2 V0 QnJ!BY–j5v}Iʈ_x]mI,ثlc J0ȵL]F:3S[̣z~G NT9$(LT`3nMCu(Qgx)H@8`!v5jfA VP`Lcw?GGO U>+4ߵPΡÂ^w JeUbK/-pO@4eH<Ţo+WV-'4$.c0מ#:#p&>ޝeE8l' Hk_K5ߙ:.Xw4$e_\Ц'1L-7DJLG=S c2$dӢ&otlH'^~mAӄ+bQAS\ ż7Y޿qR;5d^|}k)=L9S_%TaHCH'Xa8G(GGLߺ/]KU"UdH \L\Q<Uؾ@cNGk(v`:lFm }xkMq ع8pX n쀫Uv*/󚠌*0:e#= Ǵ? ^c$1 c3mp!:tF4PxVR9L ZصʲY~K ~y}'y';a X􄐗ե ;Vabb:{<QS^@ DRK^Ro~c?:Iʽ׺gqsYf҉S顟(` 0]UC&yfDryLC򫝡GdYk ]MjdNYoi=N]@;omcSԸ0z":-8XX} Q,1} v%n.tvkq;n)xiTu!XVRKAc!C.L^kyY Ȇ)EeQY%6t+Ьd1>g<Ԥ+۷?Ԃ&vcJcf؇kh,hCqWb_&w5^ L->3(snd_N}m7(*-.7uJlO<.:ו?Q+;C>,]b-Vys EHiBif;l wl`F"s؁ѳtufk c{UWq6]*b09,j [)}QMzy)C~/[N]`Q ~[Ceo֦2Q/Aj"_UMK#>3 bmT~<^Z rέ^X4;CE\*6+hJ.@ڜGZݴz@tJrƵV'lt4]\kFlT+h[ŶÇ(yLh+#Wpp.ɿ^D 0!/I=Q} zk{`1i+dDK$BAT+=Lo~VN%-rk"h67|㝀<̋OvL)E޺\Rq6%d?Ͱ/xsVCγ~O? @` 3k_>Hٸa: ᛩ7s .sl3oZh*"l/K-/+l#`?)/h>5zQk"g/=OMGؚR?ekavڴaur qJmȏ2Sl>q0J;MU ayJJj¾͊N IƔ0tE=~<唝 9xW@%&S6O?ǜϻbt 3}axms6k޻ܤYB}R`  S)N6dȊ%g?#0!}DO De1C%d#{߽N4&Ԍpn d*qk3^pDX?\gS{Jg\ZWr95L5bۜm)SƱ)+7u^!̻ET&A"8< q^t&Hlܘ:)mu+AWiYMb E`FS֎ ԞB>G|aSI(7;tΨOCkIID?ț<8$q"c(GQ%3Џ_b|yfCS!^hLq<⶞: Yj .(Ĺo!0wc)PF?| N*]4mHtãtb_w`:g3qM=;#Y} d,M"A)ᩃrkwn@u 7frb3m;[}Ѷ̹((B÷<9g29c7(QOxb(:CS'čeuU /a]Q$@#0`6Vd<{IĜY&_LbZ8TMg"a`<0f$m wHg WRYGhS+y% +֭^OXWj07Ev)sh~'[)"&a rc>ÞeFv|NeKz`#M.F kFf]B V$̇ >s3ײnCӦ>N0ܩfuAu- o&9 س0ʼI&km;;Q:4EhЫ#UAtƴWFTӾҝ,cDs(C tk%pY& v?kf_g׊\<̾A;dyPM2\qP8#|dׂOjn Dn %u.hGVڵÓǗP7uBU_}ʦ哒 !DUIKF٦#}Gў/8p+NK>.JUƥ GG>BFm]MPc/cITgHȲzqTSkٖo(BƉ*0 D 5a-ۇzrҫasK]9HSk,.28#cۮ!6ɎEQO]T[| -1tcVS"X`gô:fZsX]4Uy&EK<'SRǯJlڀuL ߭ K%6y+&(KCtۿi9W+w5\7i^g򎜌ˆ@I\ȫPAu@`ޝA{/Y; Ňs-˦}n՛_B_1 ,a\V +r<Ȃ4!i]2}Y""nMZ*;^l01?$!U猖5c*"Uv.uwV0bnRxXD 4zm[< [v${ ^(:T.^_ $\஬?Vvs5R2cw*FftGgEzٙ |n=%Ȯ*3R8XW\j,^0s6e33pyʁil_NS$Vj OC2m7יfpsj6Rs,3. 䫠jpSd1j-].1eVմkX:@5 17?o)$t(/Τn9 ]H^sٮxuۄ:,UIbV<[U4~[)gA!wUؕ{9j4PB7}d*yg,/RjP8bы~ѿT‘yG:`c>ٖ0CEP)k[fCXgqi*Ա=Pv2tkP +/0vY3<m"v_)//npT#ƞWnw8YO&є3 \XAsVI ?XFdxoc Cƪatmk(:v'֖yԪsv, 3l/cA?pUyV)Vɾ}Nk>Kh7,ճ<;ām%ҪBY-c>ׇ(fk#s/~^MR!!/ݞ1+8nOM㧵E=q甕Y~BJvIYRYli:X`bH_/e5K*rՔmX)z yGWRU.YQh_gv/nž[w fs@|s7WWFQ(_xT|7Y-KlV!I ^xtJJHhwo3{rd\:e>V6ū(8mv'f5Ͷ,@!_~ V{VNDX?k|=!L%ĭs8M,v:għ;PbCN\3m&e*ͷ9DA ۂh!/)dc+[ w|)}>ESCrj`Lm0O߱dqvѓ s")gճ ׵(I?21r9y;ٯFs6AYC@xS anC9g35d Mpo<=bբi8d&೫:`Ӛ {k$w5l^/Qx2և̂|{y l1} cf񘘫u0`?(7R}>O2ZD\4^li8LK-{gQrijm)fT0?TJεq_gpGgY뉒gJ3ykbie5.~:/=5t3)w|!*Hڳp`FΣu겿o fs{^M>@J]9-NI  DE'<|hC8%-hinJ/t]r/PhH*X+6AǑ8F]) ^YFZeϙN޾=>p\>J0n[#}W㚬4MAp232FxQ`?;>& ~}nC!x:gS y1I^w5{:w~;F0U4AJ4e}1)*y}syI7lZ#Ͻ^F| BRКpuO;4Y8P9copa&T*xt|UꆽWAwJ͐Z,{fE~H>͏ :faL$WqDff6C-Kͦ#sD=붎v&jsl=RHbΜ %]aֶ)3 A#Tr@o;5PPs\;fgC @2 DԷ"N)#s[+sjM=h|Z]>6-zsY[o*oɃ0gnPm꾭=e0Sؿ)t[9\EuW6Ġ}^[6<c=/كZ欿W?yѦC *6z=&M;2a{+3;]UDc7,lImDC&"HYBlAh۲H'uQOwxrP!TV- fw*aXinW ncn,a5~ۉq{D4'3KŦJЀ-2{kkcrYjȪ'};N-N ԟIÄm[#@VL03)LտZ͢r4B;㸭Ss(IL as[.+vv/>AXs 4$qW C8,2d <̴ð7v6~qKHKzf}|-yKcbeڻ/L^+X@"l4[SpԐrsO`LB usQ|XTzDH*3HaxWF8/Kf_c~V'0]9QE~TD\Y24 u蓱$<:\룹I>(Ж&_fhodB UI=T}(qz@>{ȃ0Ȁ'z d4vkNzUa˽f`u#>/z1l {UKoSK])RQ`OvYn lFD8N? ?3snT6L^MB,7:95 `@I db:g$kY@MCW7HU dIIc000vZYQvP#ĿX56Â2+rlz6' u`wwbq * -M(eMXlZGs.k(?0n>Dq=viL|@@LϡgǙۖ$UFw(F[9Y ^7J5kIEi97 n;dw NE[ZBIxOC;j7*&3+1_.gih?'HIeoݐs'>UaIoІ۫? rI H1{4""WiK],tQoE 3U&C./`-m\B)dif/|iOkx(!J5z )0|WJV2${S:#^ub0ZTR`vSJ&eh XsG pu wJ{,}D%d?BN;f&/$zc@Ldl*~+ݹO tj9e &֧3e9lFEpDa>q*R3A^abiZ!sbv'kit28>$\?O9fexT렉0mf I6ie)LiZsjJ5h.pG(z9H4gehceh vݳc)NDmbf!oMnW Bڈ@JLGj=# D8eeikmw$oG_ySn-|V<@\?CAh:7p9_bP!"bJv8q_IGp6D r20FxpC;~f^RF*5ީDz m|yk>N ursW5 EMLw;'e=ake꫅o W݄7^S Өm!4C,ŋGz"ǘkD.!z4Gb~ߧ&ʤJ%Q}-u8.yk׉oW\\ZC: 6+N7C(ɳ} 7U[ ۍ`>yIU#Fmwq$w؍jrig2'M,3R ]Ї޲ܧ<];̓1.tLBj+$ 5K PA3ɱJsFDjQIޜqSS@%Md# s@e۪2#I4:ah5/I\Z̾̂'0o~#pC]Ϡchw~ƌD>&k ?e9_3+{ # "cҴPQ;"9_̨v9hêߋE|c=.*!oܾH fS'R=CAn qeI Ͳ< r1f=") Jj_D^+gDi]*|* /+0qHԵ1,/ m˳USm)8x sMJ`E$Ι s>dʼnGG%!˗kIr y  |FeesWd%T煏&T0 ɉcm] N}x?J ~)V/#}Qyy>4ή0^/]0k$rbX#u`V$9eQ8=@0M֩kz2N6mϬwit‘xER Hsz$Ԑr& DAWϯ2XRⓅIq!v ]J:uj;#́).1Ϧ/ʺAFqp/ԒywQbLtgS$)ivUr3a)yy֋ZeJX6j%ljJS߱\ME_>-HDžHٮoMwd@QmȠVɁ5!6paݨCWDjQe+yw͎@ ke]Vr26#eg3 ~G59G3mWy^?È&*臮TWNYe^X<t;mK 29t{NP6us  \nBN3tΆ"׃*RRks *~9|D!3OeJaCm{%1@dm?5,\YqW!).f567D3>oEz< V\qG=OmBHOU!DٽTgc"sZT/UuªT [ݯe.fb1ƭn*.@_fN{ 2`HwjaY?R|9reD?EbަpLhci-VRSu~1O~|L"_I&ڬ1voM9춘zx󽼩Qʶ3{Z8* 'BK$G-AV&(ӊķqa{hn^}̞o{i^8v[XZc~ձ^1%<:yy,tVjY^.:HO>'1>^Oa̯?y+c89e }ur7do/@G*kk,l#7 S8{ Y- JuM}Y#r]tAقSs}Gm9])G3š]u^#"oæ=IF )P1j9`(-Wu@OY8"g< ?!LD:h 1I˶H bBb4LXGq(<OxQtYӪ;te6?D^*`k`r8+܌acrFd iS}~AhD\{5[a>f%ɯeȓ|Qynﯣi{jB!HGB^E?Feo~RBW BNp%MA_snˎ_;H9?ocjңV4DnB Me3>fkg1Ё!8{JxO5}Q#%}6Hg@jW#W8OCDFb;05k"Wd€$ʻ4TҲT=tApƝ7rzmd_a_D_)V1{:Nmti<[&/6*6NE{F\m3LQ6R8)&FaBPN<:@!Ծ&С;,"pa'ȀtC#K< әDΝ#4 -Tb>2: ªŰß&F~.†GpH. 6n \#F,L~NԾ3''5X/L&S 0Z_\֬#]\-5CJs錐%r_clCvcU?r(uGjs0Hjp=OT t:L+$tRT?zU9\;x-qJN7K]M4D9_xox:H~| t\Myܫe.`.AK2670̎.dw1+Kp]'3@d tYr[e !޿wuZC?i=.Bx,|6<4Ų"Sp]ka+˸&DjVb`Yrאc$3d3Jl!0h*dMۋ_لsfڥ8ݾp"0eYڹeg|r+_~FIG>E8AiA`ȷ;{1mEǨID٘N 6WOH*:B2xޢZojB.-K{y/3% Y*Θu>*GhE` b ~!@'#]x/_$u25@ŏ!1 [Lt+{xOzݬ҈AҮNZvq@WD}íRбopg0F}.( }eɴ Lt^@u.p/tF:^P. w7ʦs"\fI(OsKbo)놰4H7X8<+jEYWz;tsTmT9vȺOA}n+1`nN՘@[XFB8M42;As-0OhG  SOCe+̑;؊,܄D)\ǔJ&|7.)`dL `ȚߣZTkI5=g5`xv _/he`J%SQ~Qko\VCYH*Iֶ}1?e׀'%?V`,uA8X"5.äE~1({]*ilhTu|&Czbxoxu%g a&N^' @bcV 65Ytm+U$>E δݭ9:fG'8ck~+ Na%d߆v$Y\ϮQWaT XtFgU/amaZ*^ r]PslUj8n׌}Zuk[FoI-]C`+M +KD.6WxS(%1"F/Z}rEkEىGECI( NK| f骯q~%Kc6!?FBRz s'ҔtU@Egq3 Y~rQFEZNH'<~;0pE?)xxQi!CkpULǩOYJQ,%!mM-ގS%>P`::ڧd2JSxD/~/G[[o=B@#Q$& Cuu]#fȧZ Aãbn #(\>On݀7/k? e+P1qRHgϕ1MG 9YdgR^$pLNUvFp.v^xKԶ֕8'hinbREoJ,tGs:Ǩv9oMνzѾb|Bk0lZ(ܝ `퇫*\߳wD@V2&Kma{.~p;>5w*|;Ρdf0 D1 \<ˉ: eV{Jpyx x͟ZG)rŸgvE[N%]^)q~zap٠U ۮ8܊ W[avcQJvHheZwxۻ } /BC%o|Hٶ{}XZ``Wt<a#ZhKfwWS\@xܵ*" Wh (IyGؤ~{A HG  9YԸՐrM$f4bHZ"|~切,7)Qz[Zhrc-{zP9$@@Eߎ񔘥byWWkǽ>,zr;!rjSmA;4P [QLTE+-D~T?p`>Qk)8JJ(E$d(Ei2\0[,kLޣ6dy X q ?g?yrZ5Mbėfiſ>}Ryz4vJj|QrM ft|K.e@| '9R5K2%yzm?s? ֈ, eŹ4v1fә^/`O-_ }G ` .m*o;5(&7,~l>񺅡<'cɕ'7sB;2,$PA?mϸyDUI!O'D&⤢nB+}2A\ۻ.RHuGT+D^ B)nuw3!kEl>w?wSē&h7ob Ǹ/u `rvɀ#BFDݧ'M<\-KAU.(]u@ lb7Li/3%uAK !&Ia8GSA@]cB"s`;uoXHJnCΌRMp?55mp*hep҉v2aeIbx ]w_W7d!Ѡmt1D@3b ̢BBoKp2aV9ٖVYb'MF*qh'G{a `I3[L(5O?P"[K,ܩa=۠l̑Ь&ꚫ,g yG,~#U蠎V!5EBHgASd~:L1vy7pM7fܲLX"ńvPhOGPwo1=+w3g/_܊dV,Oo|đ Z zD* G<+`r\juG26h5, !MU?z;GgTvyC!ݼ\0 AeN(<3r躸Y#( D-G _2T`Nts"XXz B~KG?=NrbMz{Ğ%BR{@HES9\=?pCE# AŤ8/jϹ^V"?y#̃%68Xᢪ´a D㒨w E6;_+3̑x\}%oOE*5 VTX1аڇ82S& ԊTIJzpKF.oFYi'X@F{Zd0o{+T9݊x'Bi(W,h>^8J橄m U GLĻe^oU; %S6;0<|ׄ#׈$ )ʈIi&EgxͫM#\X LNdn[暥ŊȮdz?NJE+~I*_Jj v;s40t*@FujG]FkX4PF/2ه]~{CeJXW2Ips ݘ\w!! 8^-3qS?mgp?)]k|ʶEic5^=`ŧa*०ݸ(8Uᕙq:AcqWVQXTi[]Wxb?/ ʠbik"uf_:DED*]I5r}9t%\nr-Cd"^J}* |x.~zmr$&C:\_Y ej *&7yGfe:GqmL(,K\!RnbZƥ*$~y./-rՀ#RtZ*oC1]E '}^> `V]#&G~*%XLIX( ng>|DB =a4sA/L-b^bʊ=T[AON".{ڦ(8MfNp|/"4Y?1gcϱ׏xqj'ͲmDڝvx5L#~60ٛ#΋*Mb˨gdCX!D(MO5!6DWhV^4:i7ԭ\#ʲRvoL1ZuɕȦWm7: &} !iR{\hV81(UPZ1p}>ҟVr[v\ #cш^[B FEٗ'ݒn9W 5s9o9RKoj|@!^wϩb7*~bC#l?UVFSd _=7e!Pa(!Œ|C͵L2F8p ߁Rnx1h-lYt꼙>l0 'BWyysj=8р+8'𴨚Bzk ۆIת䪢T3(<8\k( ύ= A<:ƒC@+[<3 Y'BH̊ȄH{G娧N#$-zXVD3AbY6l{LR]ɈFGcADR6./N%RD,hѱjkγr~T:kua5V mUfc}Sgbb>dRwhQMef#^W8B6=1N{[#Ub'Owf*I>?r!Mz$rnGc,Z  [%_P]e')߻ٗܽ &5j`BtuMo " Y+G@8 ]5@ץ4>rWqO`tPNBNI' C`ErL, ,R/ᨈᏐ`> +pL<3.Hdm{Y)D")6$=\ i]ӉoZӳ ]P>cCBMqswwR$$4M | ;괯nZMl9_(LV 4ɯsTlH*kEWAjwЧ̘Gd6ﮡQ#¸]f0reyLE§#Ҫ&̅O߀39{4JS2T=XS)WyEIbQOt4[x}:eiuZ%3Q\vӲTجb&sKC~"?ПEmWm׆ &0Yzb62ZQ(_ˢ'iߝEG2V<@ / X9m?HB-tK#.JRȁt_;CJ7#z߸"*lMôR9d\n}@yѱLݗV?Z'yQ>"qozLlgOs?PC9az p|r( -g) m`Csj4ԒyHӬQ.pR.3;!1;.nv\؀{M9j6]$c1.+W*tYN'Y;p!)]瘑:qAN*,*6u&]!*##BF@HJ7REn\u{A55覍88Ob,Fn"xnp9ɟ4ogJbAW˟rF(JDv8S.r=R㜄G`=:?ݫ-?ncV.<9v xm\qe1K!Nr{fwO헴XF>s4o} 36\>>oo8,Q Lo!;/3X@3dH{: Lڙ@YHu 4;G3w{ ^a[5 b!`T ~!STo "4aj U2p58X,_'oPtŸ)#{6z ~b.]r~4mG 9|f ۅf&NK~j|џhH|/S{JSja?J3*5vc@.|G}ƞ)[/L[[ "~01s~{7{ȕ7!N5(dO?K;-7 B Y',lgZZ09U܉r'0Ѷ|&)xC0e!{)T Rx#r0w{YMy5>6%i>8Y` KhJn0trAL" ^Z"C8 zP f5(G05NJPHsU˿Bb8.HڧH􇒺T ޟ눪T3l:Owa*i% yOmt`:ҞV(d^ubY!IegY>S!ȏSLlf* ͅLaXg( d l6<[)AEp5 qδey/Y*;-5rBLf/RߢuaA .,Q&=<דNlO[b*x٬{Q[b+T/OtsQw4geY9ږ^!Z EN-Ut[u9$V/ Lחv\qt@Z6_ČD$.@&覉a:kdo)e048+( T!# ϜpqлmwA"\)a#rB<ϟ 2qBExL0~NsgUO- >'a "p(wG#($k<"r$ j0 hӺQm`4yXݲ.+(&MC<4/ӖtPb)oMbӃy~ds{7㬉n"|LVK;p?YwApgV Eϰ~11I>6 ;a H "VExjy|hH44ڽlhz ՠ&z-<;hg b6M:p9=fx>*ظ@ɬY%@uNYLW]ι+1J`#+{ct񱉡Ǐ鉜Y#E~DUϘA J4*)QX_7g[~9{ 1{DO&+SaH^%t=>|JTx]*HJa5O<7w; xO0 -fjaaQg a"]b~|5U"QFHNH'T-X{>N T,,vmH˖̽) hǝW _IcDVIVVDIB)7X 3&I0 VШD_k$ObjhG>N慻ս"|9:<[HQKFT -߀y<7ѿaMk Li?qm䡵-@U(;2(KUv`) ž#Bc=D@[C26[djoCІw/FNFL W%bNۭ$tqH wDw+PݝǢN/VS~\㻫K@]G=_@ +} Pt@AwK-W14pW*`KrJ>5ݒqEzvLCzZ-j CY::puO!.{'0Ugnm7TzC asW5_'1e2x7?$`vI= U Ze]5C3bPi'\_UsN+{_!s8!C[ތ>K~Fh(>l"^3wF8K³3dkL~w©k?Ꮙyޫ/TBVUq5<X /Zl썌T)7 o%/ byN{~!i2KUѯbiݦ]9}<?qȮ/劖9Jiuө$[j./hòc;i!#j[Ƒ!#FZc0T`hT >cNn љ䢟]EI)^AVK.R_R/XRP?oIҭP+YA3kV˶g{iH:iSCH(sRnΊ Zd+5 e?G\.G&, (R]E΋NT)i(_0%k,[cRMy'-5ի\%wPn }7 1o/ߍ}}ZZu,[X%TIc2_[6h[iŶL҅q-tڜ'> ]FKDZ+Aӡͣ.)U]B.ɾTT& H=xxdLI %wNu,h4巩NԮդhHlK2l fKټ5T T\/@W`Q3m{"owaANbrs[;C O+*Z]@%/E q39) ~hatvZMTNAxR$a@S7@"Rh<xujW78z$879vGwK2!nDhs~?Pl &3+i_Qc`s*pxer-yvw~|j5p;8t1X*YPK$LR$ 'hg@|#;綀[ݜ73@-<}2q pqWs/BR!Thgȯ{NKSu+uR=~bO9?3R-s&O݄{ڲʒlQ/(*_mKzT\8<@c.Y.ݽC=6,0-+)G^'C.10d}\eAq=2,Jn#2sO?ŶCy p_\GfâK!bGo:bK?ۑ!:5h*_a (u@0<O(̇opz,?5V*:UŸy²YhfI*;-G HpfHEn3QTúX0b3x4x"q-U`(ST1`Odtt;%=.91k&/@Ҝ$GO"DԜhpt0jђTBwϢΠ|p/$`d4k 9F^0SX 6.6RU\m&1pP-VeZvOb4(/y$q(ftQ̵ăK/#2"~CT1H`OF-+U(nN <iLC1h=v9?@@iOH-Ў^6XDA8k$ llͻΡ=Us̹/Wj#0goucaeSE+JRR.J&TSxe:-oskO@+c=\x!7-$ #T34̍'1AGV$j [1y%osO$je Hև4ϕ T:J@~ rB#%;N16&UIkH@!ۍU'mzi0odelvtWL csZ cGCFz}+R#}SUm,oolAo%4EZ5@?e53)}라fWVŌl'eu;mo'pJ͒8`_x`5eyIbSk%";w[Kk6D&d2$Meu:V-#VdR=Z&/@8R# !!x1oβ0kapQw:!٠3-&ŧPӻuu4.5CMOijTPgg'$]*ع+~xM^;2HL(i{MgPhS\mǰ$yǼ= nj1 s #ep{\Ks;/t SE01v郼O C DCO4O.);Kv4鮉*4y~qS _ IhϿDfNEdr mk0۹=@h))ql>~" $߻?ѹBU"/[JAHB;gl|FI\gKUuZ\]#p:/eԔ`na~΂^`jqm؆ױpRgt8QoB=$<|4s^174WwGn`բjj |IfP6ldAWuM`|k$6C͜Qw4.{?Gpƨe )$0pJn%[TA bQ=v۰) M}5j:|%!=Rn-9IXBP-ֲp3F8.f8&/RRIL]tdkQQ _8?%{7pjE4_r*I6Źũ,nʶ|/ O/@bK.JFVIk6{4Lղ-ҕnbCN lťv@!XHqJ*vV*TYiSrnHg7%߀U-j#_P(63뚄Cvu9n4+4y5[j3i/g:5MW卖t,̍ojYݠ٪2$vZLR!7hCj Sr]T72αNyB[Et9yؠh˩1HPŐ"/\B%W."H$)C4>R @?,;K> ]|T~w֚=-1Ġ۽Գt҇ }NwH.gkq q4ۘv#u>uo\tPͶ2[ϫpUSz5> ҆U !8\BTg/'{-uOe '؎X2oDB/*f,3zX tW7)AO3+@9*dhXJ;74bT°R2կ|fx7Y MghOfVdDdRH/&x\^ =`?RRAvT2sy)l s6wVnA۱jFW' Z$FAӻ t{㔊0v~e!+/{E%Ue6t'~O_UAm]WzZ֍E0en-fHLQw}f|_!瓼KkW^L-AlD8 B'yRnbDŽobߴ1 i`܃EQNUu7g +GdG_f{L IE g\vs˜pDy z-GёK*r/j wCggl,6:] \XtN{H=[ a g=тUvs{nd!ly (!N6@@!?)uf=FadنIdr~g0i_o֒~~m8KrTO N}i:NҗO]ԸD]I9q1F2 M*K5aKe]{*8E5 c2Un>^+9OFuHJ~N6k3d2AZv֑o<1?I׃bIK2@+\+'!ey *eJHj7sKnG L@8ו-j}Yia}'mXZ f䛉]] ;+r&bםo{jPohEy"Ad ^S xjCfv8#OxPT^$T*]T6ev?FH2=DÏܱ:>4KSvl\Q;:oXVI}lNe. ;bw m Sɷ~[AS@. 4_˩B=Tļ,z!bg_M5DyX\)#g >aռX+QfտVtoK a֮d`{+u"+gTrB)7i FSX{_K:leWJ9C\jɽH:ə#4so6М=uw\9EbV3xU?x}Bj ĵfv=E Ɨ? zp& Y~_pL8˺.ܩbSp2[;A&T\BCx79I_Cv|kFB963bOqӨ3 ǘC- #plN\- HFg*1ktl"кrbTRI2@Dq'TBj`@-n.Υ4 ׮1@7Nxt;eU P;k]=aA]d7!`A|+P&U!^yф}ː׿[80(1oٳZu:;Sd_ayNW4qF?g$c$6< 8hI' >k[Lh|R:n\!j1('a6*IVs,dܖ^k.HnDCq`N!5~ csV!x v}mz@5-S+xKabl"9m"УL<`W.n D'SYwYX'@/ DƆc7qpvՓj@$f9Vd]Engxφy&p٪Uش q N^*#B _IC8@nPC\ݛʑuZ=pH)xkA4m}T- V瀼`(GKՄFg q8?o~i^7rv8ҳ/lbRmvWsoЙ|S}ceBQZUog:XyZ[('D,ڶ 55b^Q1yaYcj S V`I|ޓYz3=.1܎W/Qz e2~>4hgјBҩ60G*-x`+Zara F-wQ94?!+]~tƽb6W_55m }ϴˡwH%EP}ݨY#!7 qAT{z,&j7g=ʖĉ.'qyȔ G9RR; #^ 2}e~ 1BS] Ԭn rnb1Yߚgh5\ثQJ$9y~$uX9CaiF3U}gs~62[ SBk0R_]7hֶ*~(>^ˆivXۤ@+S l@Y݅g쌋+/ԸL .y\xaB2龹~8###E,bgzrbMòx&3lOWx< RCP&6UBcɞW=6 1{āW"Y^~7]Jr1Zvb*u~ՙ+,aFC<6Es{r D)n^:NJcܯJ$E|l%?3J0нƮ cujA1-,xo6@B9HF؁ k36Sijd(Q%9WҋRj<<40iw%Xxk3/֮E_v;80 .Z7Nx0u (,[WYd4qb̬~_W&hi/T,~ [l{ȐxWU ,E]'mɌPӨ?d(DOG,]1(I}AM@mG=EY0=Mճԫ LdۚS4}ۙ}Aoxʠ.ii]6U" suWO@s#;[z|| !% uz-Ġ*WiB?H4P̯c d,}ɋţD$y雱,`qaIa::H^f{kNMN*[/)929TWKSje$yulMQEtQiR8ZHNڏaLZ (wTv5{c‰ܩ]nn,I* =^$gϮ!|?'gjĆlu(q!EE DK Vӎ&k,yCXu*&R]1]>dLVtQOta,UJh܃f?R0x>9*ߟ[m34;+enZn Ez1LH"9~ 2O[9m [#&%Ӽ=7)B,ZT4!6w1(/VЄ-9?ϰ,(5(LU`nP[.vmu N4F)H$FקuQMz 8rPn2_XhΣ߸J :x^c{Ri #d%4/ "?Ş < jFu8 >t-t'1V7LV>*֪{/ \(dD9*ۦ$S|# -߼膳q  lTxps:06MF qtϿ{" Z=4[E_#aY&^cWPݘQel(c4rͱLkq rջlq:\5"I\gMAZǚ ;AUލPMО`yzvnKGS[IB A(IND@UYb`noH:N6&pT .x$H 6dERi 5TL!/h,z[1\)5u+{Rn@bŌ*h`=5wx`k<}@bl4DD.O:o]欩w1#XםK:=*h7i|Rj418X(*߮${*6R@?лJψ~}"a33zJ$)'y'$W ι?U}L뎾&Y>ƒTm? z{YRS߻ECzq) d0@le#얹if'Ef#H (s5?">ȟ $Ưr ̻$x̓ꅎƵD+7 ^!S{Ljy+cTRjl[Akm@d@k@}1Gyʋ?z1 an$KbwN>떿 fiٷRW>1# ?eLˏ,l/c{ehD+ RjU(+βUYg,<ǓR3>Ȼcξ"za#{& p|r)x =tƯpqFւX2U ~s㧹쮿elKEա/=MCg%sRTCnܿAIhv˷d\`^Ri.iC+ K\ġ'|_ F @VFٗ!ܹF3|s@[)Fv7`yW"E#~r\:w<]~\ꇖ@W -^OAʿgd Jgr-VQ;ꖦ>&ch}h5_NH;9a$,sΡyvFq^P NJ(,$/crA!7m+/oXuwTX/GA%@wD%G~O N|w-jy?&Mx@KK t{ Pנ۩ߞT͂^ Gθl_ D:l Hu2%םQ6]oA`M4"]*Dfs,WbSPU+'# 0(CSO=U`n9Ȝ"Ȏ+c4 VULU>#'t`F8;孓A_9fV&" 84șDag^LƓPVk{q&{a`ɔZY'|G쟓Ё+44]apNL.MǵBS5mvI$diO]5d!C :fIBwwdj%{>_$DvlW񸲑Z2P䷥Fo rL! `O7WIM'Ϲ \T[Ȅ'BQcPIp_4]~{}1?7%x`Q% 3Fqbq(%WJԛ5 & |' Z ^DMԵ9rDb"*S4ŀ}Hv p!W@whyOSnOW*GUx`WIW^:yd:C d\Of6x3U#m+ # nkx)A#C@Aԭ-QGIPkuJL^[M<2fpJBQ9 M^wz_\a)D6̦W4!&!†!d4;:/6Υ,z#j,1C1Ʊk^Ԅ-9ʘCٓmF,*T7y&{@!}6Hpj(E4:7c P+b]CB>SWbf~sXW \GE]<0Ħo=].ȼ{'x'sbx*>2Ig}0 ]0 ړ]MZʷX5d"j`(!H2$=l2TpJ`+7{]^8$X&Ieq($홿}g̖c}|A/ލ]2!}FB7rX滘I9OlN{(a]f1xx$UWH#!Y(VQ)/,Kg*$X1"~,4A&h/TjI84S-o$N%B>y&7XI*yF]}U ۬ +IeTZnLkXw5%)`X?uQHuid!'}ށvM1~aDғ5M{>{2)isAH]5Vŗ!i _`:X 8+Dk˹0;%A7I ujbIv$y7OVnH'6dpxL)83 [d4Ö3 8mL>A#O}XQl~=:"Mβ.+w94AX\.gNv[TZ 5ڄ-εU/2VQ<xs35j;oVZN.K`ߝ4yi,lpklοHnM!?(4Y0jZeL>`lUc@gJ9lx'zku9]@+Pv']n.^'LSp+\ۉfXz~Ү6(VZ\, dd~^C|)@,|9@t48syub [R5Zxia@;*ц6X_D2z2㋎H`W Mt[ :ϠĽ+WvBG? (nz#0hOS`麟fk1,V* WO݊q7;9 Ա9<@ef=&s4 @N[FEF@}xZIREf:|So^^V쑟иw-7_@%{bOq23,6hOLkE?vcɊ #ݣQMI)tUU٨rӌ:Nz^h4 RYmeزkK'lQIY6XG n*;6)"(Ψ_#Tĝr@ھ&D _ -!D-}^&W H?nZA_ꢎ(81`jYf EueV&3S2|vKy}GWǕ38$(庇iF@E}b[:!xVi3@ ( .fiY0[`VcrP:0w< ZtuDn%w3hzZtҴS-WZA]m=vfLqS#@LE܂- (cYp_/W3&e)A, ئ0y1,gz65h񍶱'viȄ=-|3I&I(i- lJy AT?lls l1D@3M^+ ȀtZ8nLmr ^C4l-|ͤ?cӣ\xn,*0T$3d-hBg/+mu.c":tTɧ@Uv ) $"-e;D="&ʊ@{c JeeG-{OhCQK>1>Bk5_S rȢ~4;Je;Ϥ6Er6$ gMJkR|:ǚtMS:VFϔ ؎Towgx7O ֺ/~:q@D2_$ Xk^ ޱP3"rȒY\Qa81?;|?K*,-F_Y6d4 ,)R*qe}(=;y=AڲT֔5'DЛ<=եjH} 6Sb7J) BJn]qƘm~V}#2> ;iqИ|CtTxh"wFH@=\*vE 5עs],,31&i}R6ͶFMt?z~t2y2KGSb] 0X$|YiM᫩3:h.B MͬN4Gln w Kqjy"FjWKqP]`Tnv fYWH8T7I _`"LD$ZS8M@яLӠ8nGk!y/.~RbIy d=nL`kQT6 ^Rtf`)|v&+.RyyL9tN/&p#FojAplnDs>̹RәY 2gV%sӮ p9^INڠ͵<.brZkray{Ẃ/YNCOrщVp$*(vT㆛l^Q "ޘ!{UC'(^@2x>1]BcfBo?FVKGuG؆m@ bE *#Ɠ"8Hu k::'mp-M*5}0SU[ض{q7HX ]STע'a؇ ?"OX$VGиX9NҺyPϝii T0=b6K*&DD Ȏ5!ȣ%jպ-W ̯:MT'뗃c.\E@ٜ Ua^5WN-D E酇ޑES-'Ͷk-O|L'ϡFbR2bZC7v?'{)8NI7B; <=ɓmLQɱ.Z.v('/(tGϺh#~z0kS߭l-_a]nO3w!cZj<ƂzBa q@_+Vn-ZCl2|'*wXE''ޛ Qt9Xkvh\oҷ@\\v.koi6XAF3܃o8tHlXe_,)T"кVR2ל}۽`^x%aR+l ~;⣲뀄0mq~,2c$޾ID  MK-W˯$Zp! mBB YZ$$0RjkƓ:U M@>K1=FR?U޾\m#p';@C+ P1{:Ԧ12Vqj,;:uj@#AI ?8DY.eX~O]l,ސ ~[(^\j١I`FYt'DŽL{Gi}kHGaAfT!jD!0ݍ e?"emci :'7mXt^vV=^aC A别6Ez}t ZEhB(  hPgL)H<dKh_{w>~t%s6ZbrxHZXj`μ-FQ|8">O/?q6pPdAdrHa-/ţc'OF6e0V2#7ġ]7 6gCP78Œo@ͧai06g4֮EVOh>؞ױs-C?6I˂BN8_xFlƒooF :5m3,k'BSGo#ILߤ7K%ӘM/&Zk$/lհn6,I 7~l [ݒ#b[gNBg: 3Y< ;\#V*@WD_\G}!CFi㰻v]2R]/Ƹ|v(Ӯ'6d@K3s.7<~B itì94%:G ǽBC_i'V·ly "` (F"R݄ڞו̫[q+_3mutGr743u.,Z33|u;EUDӆp^t5snuʎ*D:}|mPQIuZUuK/uK򴅿!ukܚ\FqE_JS\nT! ٺJV/(GZ[h;.ESDb]4"ПkE*>Z57q~FI0E.NWt7 )Tt HMvԧ6F >|'b0Z Uvs7IR]wƸ}1#`%12TX3iq.)4tɆߒ! WgQyEZs`&D#2Ew}E 1ɰ@y!%K1LZ xs.euc RZk8 "LE MaoC-Y^;@oኺ&O ,[eT"e#_F@{1C5mӰw!r 0] Om h\~EqO 9 wSoGjkxdT/vS%X2P~a.icǐb`Cy{DAl+IQzWDbh$*-9bVK)2gв\f^S=_b1$߫"c]02DzI-hJ)b~ݓb|٩ 1' R/^b_`? ( ٥@b`%#eE Wٔ7ax2nㄪX5ZN2iZl+ٔ^mW""F mX}i`ckyv+GkCm ƣ"EJ6{7`c?Vy`i>EX5{4/ZzTzjFe<n1 @(=v ?8 \ְU-Q{<S)-JlF Z9'G#j6bDe|d@zܛ*:-y9 Yh[O6ʅN6v[<:{K70-/L&rW߉3:F~"b@i(o՛ N y2ĝ:X\Xp ۖ9{{Ք}aNL+q%@[N"U$dD$lHw5`UQ\5ڑu\zW(>z,:|90L)(je `vfH>V"sjF43Jr¢E9 `o@fkBvJCz?콽a<1[2āqp>Wﳈ\^Psv+~>^g hSx;a^,ˠ)[:6FC=d#T7ɷ<(Xyp  {-x˟q\θlaCp~]>u$]ރ 9ћ.~VkI9][#wX ~݉zq`zX~(f00{r@E LBw[ p ESx-@wQlcm@H1V[z7`n r`5Px _NH_L1"0u?V ]ӹ} W=$CQP)sXjpN@9n9 ˄z?^PWy8LפRY_ݩCswlPxa٧m s>l<Ȓ+nXYVDbQsGB_dkHW|7 3=D~ NA#}Oji.y1w-%w7ZԈ H?<\ɻ?|Gk$c;ufhN 7qb+SU0 AC h &elɧ0Ԓ3+29#whO}KuaTϕX(5oOj}*`<\V03H到Ӕ4p'320]| j $N^k;- aE\ wS}uWP]UcsT0)@* d;n%(gJoQw٠y`\Qed/ S6o bK YxY1>,?M͘TGQ#y 5Bɻvpi [\ܦO(y&?ZtUbSTO'b"aN:z.\EIL[ݡc ]J"cm<"ؘ&$ lb.TҫиUTDY[mD9о/:UTjSuO:C;&hF+  2 7'Oqep\UiO6;RV> ki0+CDW~:~蘜j">NqqEϼ-#OČH`+Qw;l;^7:~ob;y4`'ޥ*`pSH%~>јX tf2d,\yR 4S1SՍ+P.%5/ /9!<8o4 geim\+E7*ua,zsUD1=YJ/z\mDY.SJ8 _jzK=2Ni32x1]]n:jed6$R0:㙓QH+셡l\8G%#U;B>fTU@#n N>` U逐J;ʆL♏F; 銂 k[w% mK.wg6@M[%Uq)A*j8+¸ ߅ uPtp͖G;>JL.SCemOPXf~d{ 7g%SXo36EJс[|y1Q$NsM|@B3G"J_r7D٧O12mWu5Ghٔ G)f7+hq`ýwB4Hv\04 G{gpHM\?$v5>z_Bt#A]kNp*_3YU\u鬔٠qؚD*OH@,h/= 9wǴi^O%#to0PkEO?H e %H(=b(#< Oɦ;;P+⨺VZJk"3X;J&.uiE[PiQ~HM8yt ͘r:G,$4TneƩQ2.A`0|Nє ,u=T8z YK۴(BQhgrcAA<cs3ʝ|. ]EZ%Y!vaۋOMH( s\A.`Z;uZ$ qUș۠a՗O-0A`\7ynWCL1Hh7O%ub]+u^&+bs>mG<)waZB:8]_u&n6zTJBQҰQYj<+"XBu x?] EQ&|Q+gF [&! Sbfت{BRgGmVKf{v*>&|ϳz1C!O[2݁58sh M9YG$v !P*!MeٞktaNΖwX( @FS1h\5͌#ùSj\gT) '405;vθ)dް(J [ږ[ܯX᎐;j]s H {YW4La]oNjYsj:8(nZe%зBH$Yw>Jd0 j);sTD% ,"Ǽ>+M2pz'a8V Pkk#|Jѧ>$n? T5 'N-wΌ&1Tq>|MiDHyzc{[1I?EaMBJ0[^HA>Q#̗ˇW}ϓ:̯ +u~] 0*'PƙJnGκ揭GIqa.;fE]pXYܐE;.9I U/ktv9O0n ;r`~?%.,!<)^Ojʀj@P Gpvgnvէ-@/Dڽ)n`ͼ#k1O턹0j rR\Az?D]D*z;m~,_q#W5Zcbn3C?ϓp-'?RwGU$?*Tp`T/sEj:4h6ˏ[(NvytLa(sQ{3U*Lq0lk\Pӧ$JK2c.?$FU}_<9uMT1Jtp~Vb2DQΕUnode)r!n̖6y>\>vK/{! Fo:.|/&g!eɤLgՖCtT,#NmW{v,Z43ɭTN/P~> LY!O9_).DGk-9:{0}Ӻ6D?0QCV˥D|ETyh2hsb寸yKBJ)G40r(a~Ht 㨾ŠfV%)}1xTuI!.KeMl54ʲU])az avG̝/ 5 Fk =u$!GL>oS9sL2 u7ʒVr beEWvMN&;klp~S[2_H1v:g13L7> 520Q<3P^Z "7(dL,N.}BzJrzisLueseuWt mGpp_c\p(\x>\9&0)?5V'ol 1 V(7>PC0ԏ@>KV1 }Th0̻d9LE9sEЀWsސO?ϟuк; tj ˾yYJ=u(|FIW%׿=~#W x6w""]6;Y$F->pp钳r~a]^{mrz$Bwq|8(X(|4MSOJ\,E`F}p3s1jPjz.U#їAc__|O~TUÊ-P1t9(&L@dhp ᾈi1<8X'8c B]:Q%&\.ee?f]SjsOO4U"ycy1y8t33(C r vO&oZ6pqz2RO ^dPYKM6D~|o+Rb^b.7ޚSp '}{;amysDw΀e5DH*GdȺ>/!TD:FTNwyj`, A"оKR+asJqB >綎\h8]L9?Zu޿UZ1\˫r2s!!껻&kR1R` f.f +9O^Ȇ}LaA4U\e%*fQh&@ؖxQd/˭ޠ4 JiE),չ.rGMu}w 7i#nb˱ HtB")?xGiH>V cVWq\I:[#qrF],#b!f30y+I{#T`(X ?aȂdAi?Y$Q4*KbO}AWV-fFl}XDϚx1G )=i1Nw}zwmDz߯%s cbbͿu%RM $XT}:ˢӋR_KZN#++蝀%WM%:Lh ~y< NKst{ g^ڷf=U%77vZL1Ý7V㟼Nza-ON>N:X[(1mvK&jAJ\X/L{( ΄4[j/`ͧF=1js8OvT`Iιj5GW'ȺTľx%h d۶PϘ\$15?F$"q) .C/kgҊ+ As~6;l[5dVbs!M/(E C%c3i<]t.)֭JG"!*'Ek%6iqe:(be(>gݣ&<;ҼVmmǍ2g ";wb0lg/C8}tL(Ԓ5?9BvТG!ܥS6"Ҏ2BK۪BC+'ks?tj P.ݱ_lfb+9q6L]cBtrxlh1wb|.=NFf}rUq|1',M1CDŽ$kȓƮai1ۜX$_lԼenmR>Xzx[p硺deKy("!YO9x+Z%@zk+?u pF#‹WRC@tRud$>ck29l㰒a7ԏ`f;8%m`R ZV׋a Uy)/[ΪqtHJF A#d2@쮽 -%4s_d 8)̦MtzMHnGƩraVm5~|:C*ԍB^`G!FԳs=dre(4$ 7=t(ˊ0ӴW%d|Hl7M9cvFljg?i]٨Ktpd*,xEXUޑ{Icw\ףzi^H]%zZ]\Dyb!2.R…Bwr7Py(mCkKF[(]Ps⟴m޿e3إz̈́փ2W3?;r Xah2ϴ.J6mڃ&c}oc+y AgMjXb[Qk~8X${)X#TqП1J2 uQr]ɟatI%i*XH}d,ܶ?GXf~;޸y:jT aJ ! IEm I .V(Fj9*Ӝ]\C 7Trex.ܱ.-cT`WCP(/MEf=$Q6Iqs~nyc;;md*DD ],tCd p=)~-9Y]8gkӯg[tGQLg0bޏaS-X6r~u,\S=~n4=% 9g/"f: Ix+qv94 .!= hq Za9З!Y& Ƃ5ϱ)W23/L(9VKjWhpf`%-^Qb=5HDZ1azrrs $ 1՘Ζz7A_ib/`z#R͕s܌r'cܙ$8T_O+7`%7:U~OE'v񆤈W ( (z:=ؕ#6 ]B!]x3G 5 *tOOKlB~Mx1,קbjWYQDmmws:v9{E&$Z10u{mYtr*"X qN(w߄ivs\Hʨfe-_$)JQ*!XLtrIvp#3DshAy )Iy'æC&Ydy)+ݝVbp#')^h w:,Bq™/Vhtt^SʄC%ϲ ,[1QHZ#WC^yU O[?̳ m#,5rEtXǏD{uSlteg'P9(ȌulY9nθ莝lYLD{}D/YH=`>jI^PmMxG1W exGA?8Ww\"28^ue&i3B)P*zW 2Q³A >þ'>в7ZY?2"jttI!b'W3pR,YَF,u|alVk)%E%oa; Z%e |V= hO4_-xc>)>DDt1v[HMYIz}*S)[h`Z3+c5&_ Vq~Z9H{u'5:bW~X2,,Z/uP3CŐKh JH{3.$肷(ROoSj[S-rcy'V3V25e5#;`Btktbr?bL?`ShF8̷lU_>b&̥JL'PK0qgȲp!=6:dr^; c"vv.KLAI?͝Vf EE8r@K;+O &NT´OU]'1F%O"6ƈj(b9r1+<6&n? K !pz)s]N=44qyhA\ CsT=P5tʤ]|C e=>E'|V{E$ wo4fPnq֗:8]<'@|K}~{E-ˠR;;6|ċHh[)b:934gZʺ$bT$y[(kLuF[hMyW'Ҁ&',0zZdhCHɞ]:ĔGSkm 0"sUc hlBs1*3 ݅{oc,g_<˱4j"c?g0CedN.;+XȚVN(U#G2 &)g*鱠tdEڀj6UGxvx_F~2vSj39}ϤҧzĊƓډy+.^t!盠t|'xևPS׵ҏd#rI$ *)w9]OIQ6 + aXUT/G~.nLP]Q7T/,shGHśO´8un@wIQ)yqI3^`J2_=A4Ru{w|?Ge3Ca@ې{gfDvN,JW_hDkH$K.gGd[^, 5%p?vvwJjv ^ zJcW4m^oh<hh Y%$5m' xwuw+ۃji +-(NMy%v1YL ̼G I"3qYƸ![p4CS[i2oŽuLq'灍wy^wf!jÕƛw>>cKfZhxjA{FpgAt4Gds"j"z[QY 3qe%|zj"Ek;LzE1|oݬPҹKGR JS'#xph2%W_%ZYGO=wb/%-@pX4y"J^C!'j^;Ņ)dho`(*ވwmν$fs.NuT樓Eàn+_ZKpV.5<]?EG\_2Q0ROw"Cp7;W5bXGtR}'ui_L_~ 0s=G~S:XƬr:d+rf_~pPnAqd+s)M!سBIm 39B )P fZA{FͲmDB&Ķg0A((&r~:gd !xsX$.@ni_"a-p?29Nf]@4e`cp BxE Oc1ES*)FD;SΰI47@W~n3p"/(cI^DDWkə4bTUT[|X!ݶZ6<0NUKGrBz7K04(ـa1 SN:X"PM/lһ'%%иeC֯l Xi*~i*cSw~^,fANt]Xܬphޯ 3fl={\Dd71́"pO*2?n0 ᬸw|~+pXO!o;ܟc~RI )-**D$Jj9c& WZ7ǣl,{ʡ< ́ɥoFe q "jہI >"I(S^ Ŋ{ÕMl ̷.%(z2^Zb\ &OBuKuOHn) HM[J)Mش"w蒯kg1Nd( HZҩ[%(C̕q7FNXaRr5"Z7&RsG'SEH;ǁaF#P:HTl/{i~8fc X!a^/1yΕkWPTGuC?~@\]/UEC-*)pzFkmmA>tJt˅ uu#o `x$uݚ80n8{型z hC_Ey3TXs9fBx={'?p[&CPg!'V\`.0vgSǑ*4kTX{cxp$K V* ՠ3 pRY, >p=Y/1nԟxvX:|J`-}x1U"t7Mz%;R(45ݰQkUyakGNσx Դ.kåU)dF4;bFцW"e 9MeYujLk(.*E$ š~v `P8GzvБ }"+aZ{!ә8D=W/9h1t t`,z} rq@z0ɽInAQ6_,%[!dSu(nWu/`28[ߺB&sRHl?RN2Oݡd 3jٯ`gl{^x+%ֱAMjk}r浘lX=w$~$FQV{(\_*X 0)@زͼۇ?hA!VʞBsjTJk?*%~<e?3x.>9j _;0րgy0GFkvߤ~_\6O?gQٞ m0O$Н WHlkz<=2;PZ:mf*F ,^Vt*P5|2"0f2/O=G»5RTo{0N5n*>_Aa& f%=X㎭Y`7vˀNm,aU_mk **bFM`lݨeXB'FM,/ GNQdd!e>T[ c23~ngn'6fٿ˸Dx8yq|s܅1uDw/WՐe)?}^WEك}I&”Ve\4XkW*^28r/Eƽ8 sKژڎxKy XޥwΟۦ4:?S~Eoۀ  ώӸyc!rݰ}Y]mlp̓{SJ^+Ӣ'V"5]$'-j6u L˿[!Õ`4:nNJW+}#5m$-k(n("=ȅ hυQ.aPp~JG->~Ny.R~<6crt~Oʃѭ`,)R_9W|h\ c[(o$xaigƞZؗLcBۉvlvRB 2oWSA/I1ٷ#.Ar𥧹`L!(unUprࣛfL E[Dr˽df*KOeE6|,'eUIlV@hJUW**# Hj`mĉ_>û<(I*ՌBQ?ٛ3 XY}Z@Т ֬L .l CJpE' R轱=gUDsol:=}˶6de1^,9"@ a;yڬ-,;>[KOƛ ^n[R<YLΝxsX\if8.;ajQ>OqƐclC?4έKg!?dIM%K'1A4eVWFwﯳAvpA,l54`LGШVLN~)]Ӕӝ`5@-wL-HXʍ`&ѣks3\Lƕ}D᤺6G|Z-QiJӚw6c\2c2`}2n}&8y=h3ɔ7@e舘|bQ!3' #9т[ǚ7.QW?P[o '@Ŵ3p+2;9l‡1e] +3Zj u|Wiq5,P^ac邼T8gC,4/n _9F,ڛʹr̎I怆Y9xpL 77Z3,+lRUDv'Xݿ,bv(ʔ \E{2ca?kHu?kˢ|VFjh4S1悋b,şNd fZ nm-$,S:܁F}#6<; &S1 m^'L?z=t3, 8BL}C1_zJCCN9Tlx|7=%h9YD1:RvxB?N?7$v3! |ڿN 1ٸ':r-|vh+p(|.:V~iÜd pԅ;`.8O.6 |,>S@< |@E(;HDHGey֌ORK؍r֦- >ޤc-mT13Ԑf)pXL)Қ7t6:1>UV#DcC[LHX'}( gJ) W6blSi4 3)eK9Tu+ n^r:F֒\Lo<᭡( p#R6CPˣo8\aҪ=;q>k)\@cݯ13d^d4͗_+#r'9;ϱ- `ieb#æ?7TdF˹?w6ӡWRK'0 T~2HM=`#]ΛxlWy+ce9)h2cxh$);v {[D?v}Vhs'3AO0M Uj]GT=OwjO[_8*/,xw d):J%rs*[&+o_hjl`7H 8c**6 |=聕A' [rUV ,<76^@JU) ׌#1b>j y?_k2F -| BaԿܧY>z[^Oܱ/ajDZZ~c.fGYQN{8;zm2X: [Sn \Ǻ:̈́(uww^mlͅu0SM7Us#hv@-z,Lr j1o8ӊO+rּg2|eK"#wk?ClG&[ej+ïZoR'BJ=|F& L (}eN BY :ho}i\{X7=H($Pܘ|cnIa[G0ns7;U=)s(^ j/Ԩ.b'3 [T>[+DM`E;Nu5kY%n-bYͻpɺt:XLl2",'qr֝}jw}HhͭvR b;>nL^qd`/]v3PDԺP7Io>ӗ M!rOsa ^O7yU?Nc>R]LYzܱad>!M`lgW +]mJndnCEp$q)v7$MS_L?j\r=OT\ dX'2#Ls^CD>/ZNo򅗭-YtZjJ&C'(I6B2A3z]}1(78ʱᙔlۖz9^p^HO溱YWCj6y ',]9@&1 Mx}<.!@I1!}'qA P5"%::?zwyg򛸣rĨ~B|-UgddrLD._xrĤP{̼k+ЯоǬ0(:XF Hu2m+#{:a,H1Kde[ڜqЀOkto.F6z0 Xt{ړq-vA}F(9Trnlч8/*8IE|b(RSx_Bz?-驇[^HAT"YÞm5(Ő4*i3hch^} : K0sUS?w&x2֖_Qے"* t^P%g۔yG#%9 *(i7rA_Šy-Yt7˿sgC.օu)y ufKG `!ӟge&\lm-is>SkJJb==UH ey+n1T@c-pQx֥݅ P h/dQ)EJį:A[t=q̤s LC:q#֋0 +[$?3n`uꇈ!1Ҳ j(e]D73]XIצRbANzq";Uť^u8<NjX4-y0s_ڗ\=YU`t9sC_O9gz>FponxR:pݯc<-ȱ*CtcP. A+j󃗜Z)nMc9Gڨ%U}ox {O]ӀonPlu/f9T$޼HtbCqtGe#o%L֨}[Л4(J@}"QDҨ1LV@ذ C`x- B29e_ 7JhO2Zn:\bcy_/ﰖ@" N{+,C{&+3E^)8G;Zpjo\3X}r_L 'C F_g>4 g#D}iړ:4$e1L6*&Mi8L1i@xՐ)NBeϢ@x+G@{?Z/['끇 0]\m{Xfz*#Ez*sNM!ދRlH_0[5ڒhd^ ks׏P/˥ 9V#&`pRvvIy <#(f:3D ,=9EC_);4sDl!V}86pa;u1fG+XAca0,߻{37S p}+ҏqYn?&"E\>? GmZod7ƣزٿ(Bnζ aՖD.wb@$v̌0\ y GpƉCyVT3hď6J! f6[g1Rpa_7EzF W{f?YρO**(1|e0 8!7t끕=WBK )A/|ƙ$MH$74?Ru(4FSDe{G)WBH\>!T3"U2&I^&B(Rw nI: ĥ0urIdǢ?(khg~-ئ'!7E7c H YT˰(^jY9EzlΓa $2f9-o[-T`cn< {0 X|eOag:ATR ϴě $;' c6/@n&UׄosΌf.>B\fkg/izf&G1"=N;CGVP>SeT$,2(e|'lrDUlRq%ec.KArslXfԇ/nU\:Fl,ox2e5X5Q[wכЕ#: 1ruP3h *w3 g0 bj.';rKir&>[ ov }\e@*;rE@xbc|%j=5EnɇC5l ^H =(ѓxѓh'0j{Ȕ6 4T)tb 5̹k}3G86ދ gV+Ѹ:[!U'z䄢^5[J ?*\6:{a[I-i^R'LO޷9ݞ;SEPKhVPeAMo$B CDk ޸㭞Xq q"/I7 .)Np$ *(pP2 a-(k~=`)S-cLNl(xMuۄjY{?KE 2/%^%ump!ᯖ4.qcKkN'[dӂl|+ȽT S44NdML(HCӂր$DEZikmbv8ԁu3钤2{!'%òxG54r<~'ʻ8Z 0I3[f@څuV#^߲LY-g25}v؝*y@pw=,*\c4ڠDn҃&͚Mh}IDU? `$^@L2(BCd(9AsM&q[ ]]aqE3:mG3#u z{2f\9n:-AU({)4[m%WpÛ WnhJ1/e~>$'rྵѠvFe(AIvlyN[?? "Pkb/9V@rӐ;0zY25"! @n'80-K˔~:Hyfmࠠ3,եyRnDj)&2 Gd%l$-ZJHlyļ}YHɁK ϯtmyt#Nf LXmS$ɱ[gdi,?Ŭ~gѯXF;k܉:]ݯD\ZY0@&qx0K# }?*1z/"*S+ Xߏxr WQCS? &C^ȸU=v~(awi36'=8τkE٧`nT+u)ps$ O&'_)ͶZAi99Xn HD{"u%ln_Y334[:M; ):g?Iغ1uD{bQD&Ve菿#r yYqhO0s$x]8ؽ%A%̞z)4h#2BF PvϿLpP؄9@=S0r)\gD yҼZJC\507C1gNmy>Aٴ8.sUU99`[`odL8^~/Ғ" eZq:WjK~9 ,#S)NCL¶vt'#`0-ӿDSP(gU6nRiGV5]4#\◌哐I Atnԓ>_2HEs7`,Yvoar`x*eKl}IlQO#n# x[3Y[{L_;kFzbI{qxhQK%Sݼ)`JСBVSFd˯QcŖ(l^{͠uْuA)hZԍKӾ}-``lhɎvJvT@RM$Ne0ŊWV߭v\UcM49XΣ>4} 'by'wrܜ`!Z.8'M=9%{=rwQy^ :ZV<'8cG% *oxT=a栓x@J(%K9sY3+ ½sх\yqWos" oedOΰK39~ 5'G-G8^})v'hVQegeKK>;PNĐs-֩:θ=k>,w80ºV0lTiwZSW:cID0s+ DgDsA9W%ơ&ٝD4^3y켟SGkIMAy%_y6hU2v m#|ʕ&UtG\ĄGpOp-uvaUm@z*S92zhY7<21nwGކ2_i8j")퍠;P\#O5OϺ)49ot0uIXO:Q7 0C#~ ȕ re#Wlԁb H`,lXa]@s"ߺ~EWSg<[}Bp3zY ߶㥀7߻?Oy> ¼g uլTz n5R[2,,$Ue Cuuݍ}k7||!F)$;G& OCDh4NM(kVӴr; +#yNꧬM @mX`&[bL|LiL@QұN3 "*9NZ" 2MZw= !|o_&2VdDyq鉆tIR OC'7#XXK[>%b |V~iv睤бY˖iER60g3*'/_1H_03M)[3;{ue@ P 7$cDea^եp bVE,*pVLPZx嘬=9z|LHg.CDL;1ϊ(*6/O\._r.+q5' doՁC]TbİK$,GB#>䖩Fl W!_3z8}b-q温ö3d]$C?:4IVK:_1tq3XB;"ֺY/̒?<"d2f0DJwKiOvU G@o 觜:jObA &(k_Eh[CWLS{bLfl`7zdI_UI~ip\I1%K˷nycerʶ}#c%X֚4GΥTu_c;a痢I!f@@_s{R8ҹĹ"VAFCA~X\I >:GIC#KU1*a{# G4j8A&o .:hؿv܍Q>Vۼ,n͈zBfsfb ]\o.wpޑ"L! 㺔!{ߍҩ ݋#إu3?A^c w}i ޶1b߂|ƃ?oEd>nhW-#o ;d̓wՉ#tDG{t< wb:ߴ< Tb@1ܢp@T{&DU6}mDװ`Raَe/sKlS4MiML}R>MTi(^~,~t|>Y!uYmm oI{Yu;)5p rC] 32빶>-ѮݭHoXCE!H$r쁌RK4kfYᓮPpxTB$OYպb>g%VAq\\8 !r9{Z])%#NPብ+pv)t N~ǖ+a."]A;Dܹs@w2CRXZ4!@;FyiqP<v7Z͠DWy7_C\inXF˲Ey|aUqυJ+}e1FE'a8i$; 14U9 *q7 UmhA+} kD5D۱vվeJL5(M[~FBp͒$2<]4Xf(f h장V4.5NjSE^Vۈy/'x.*t^~?EH?:'ι?0a%|mVht>sTm:TCNUi'AC6:cMQP 1chs> NeR2w߷e60-M sw(ڈӅ_y3Vgzz>^NQŒñE!2Bˤ#-G|5+ИC.R-+mhe$h}Q'kCF2kH.vO3YSt(RZo~/| aB2Ev8xl4#wB ֆ6n94~#ДsDCuv_p·v&fRA;5ɼo3+L* 'o*G&HEЮA [UaCT:]2V˙dnGK&{h_#Lu~ .Hxө1p/L5ouSi3v3#(KI37uvC/i@7Ew U8^m!d-;`Qx62$XVB 5堆'vΧ}@W`1ڸ緋[?{2\Hm 1 { @?~qw^`|_l1yJr u"d$/y$t +?Y EQZ<_jaM㰣43fK"I b)BR4?35ykޞ f7w,B$5`S D` J|Ii{|X? B9}ݖ5ĩh1~/`iZX2k=x }_Sh;>$_%Qi ˱r& `M!i $"M|t~UN,4But |W9%~Ƌf!n+BH8$BR+23م\JJmb:&W4~{4Ҏ9GB|l$~̭ڏ2ǎ0c烽j%xE(mF~(w"dr*Sο_Tqwfui [$sv* @'wZUl^!?"Z=Q ! ` B k2Z2񞵈{&Ί8y0 )nw2˹٧cyo[<+ vRK!aiRrLmKeɿ#Yག#$f/s $0IvoR Vͳ*56!/ut~Y{{kZ6Q1eۜvyu7Vo8%L=9@uR2n䰪)m|`? 4BF/N@>J.+5PSȲ9Xd0@ S&H , [I9/myySCk~fS&H8?6YzA>*gڼz1BMFbJXNy:vH]ZIaۊ Z5-K͕g.9Bf Vh&$sG%]4 (2 T%j;bxsƁ(ew x豧o5?ٜH2GMpz#Yj9uVkq4 Q7~gVE)w@՜ޘ-C03wo̦␽$Vf}3_)LSpuv =糸A܁H_ ag\:-%؀Y1Aͅ{_g]|=:`$/t?L2Ozhb=dfh  pR=fcGޗb`WMjr6~ ݸOA(0UN GCS |vMu;+FXUjKL"FDW]RӒZ^@d3uȈlɆȨ٦A4(O, ,3za)wv&E/E-m.s۸#!U̬"iBJ=ѮAk4!)Ҭ\nЭG;1cmMCb!4t0ݻz-ܿtbMұh2V xIďH7 h70ONd[`388a9" 2L^^?#cp!MZ[$mJTSq\Oȴ˼*۬%»%f:#թp ufwpj塐_%C1{ ly=CYz}3ZՄv{=-:=9 {%PcG`'^Dn.nx̚391ޟK}P)ƑЧhѶ8X8RȪ$۳XЗQ}_zٿ]GIYWkBo8?&T<| ,0SUg(4;0o+Bq7cpsb  t 1`hw%(LK;Pgzd4KɆ&ot7F6PzME?toH.jRtm†kK-uUNZL 6i9 Ig Xꈦ F | 0tlz"jzCjۑ)_cͭ3i/fs70 +Mw٩/`߄<{+¯P ſƒӴQsGb.$"#sJ&rXwwj9 ~`&\EO#R 0ҌAEpRDa-"ߺ@x⶟@_oMuX,FL-*ΔO B#unӁEJ1ߍn]RJǠapƖ Q؄qdcCF ?J@`p$M~e(/' 'kt〕P[W;\M|vIl)R)_Vt.L@9 f4oQKBMDt?]|*9F>8}o35efOaηbL|QP?bHpBPUQ.P Jٙta%#X泶07HfFz9V\.';gO2߻Z{y|I Bt?~m|ܔt{~*iA|\, \9J}l\a~-,QPRZk8cC!@j'EJ<& jq$w_eѦ5#-ވ%ڠ^moXcK2_ t,lFuxJ3҉k!2MRAUTjהϭEt-QzxӒv6jD *P+Ž~*[yN[Jsn>OYt 䔆v#d'PƤo!nD֡Di3xVVt> 5 #F @dGAX@FKFyS Tv*6E-<7Wc#We =RU4cKu53ϝ[(d㿼+\؜*jua5?´j[w!ӈ eV*e[s ;!|uuɖID1nT_G['` AV98 w@pQ#︂Z>>Gɰ,J.]q4FHMH!׊!ݢ[hu L%y]:62WQ j-\!*ŝ8j6PW-lطՋ BO| u3ws6|J U-#QrgLԍPcݾYN@B9jD #\Q&my?[`kAmIN.ZZ,7x> C ӭvv(%tqƛkDRǣ# Dii<ԅsGuIuAO Lޅ_E#әiD[ Eo6al䲶o˚4PӜE}$=FD"nfR f 4k[kS]F+Uyc>wƁ wAAf_ː_XޢF)l˅ĵ.!a&P?bjtO  g{3xJt& Iɐ\Z$?T"r2סn)H?y,$=xQ 3TQ\U`=h9/]&\d2 jWwrONF ćD4hDGy/:oHO)*{uB9;F++r_=<_#MS >J>8?5}MdWTNNq{ŋR譀#c~vFUd)3 #^G9(3VzɄss_@IԎK#3+Bƥ&Yzq#3,dk/tcw Cd85=cW7u}2IX&WS z%&j\|A6 ˒Su Ywp[q?/ksM[ fhbNJiŽ 3<ťkGI@^Ae}hq8б6 W|cI6fC'e/n0>gc N\'$ZK) `|qDb3 Xk- 3x2/`sʷϚ7RT"lrz9twSl4j 9S/5md!;~Ό!X2W,9A2e[BR|qm%J};W_@c? G+yKWʗ4˶wL@[u1 H7P?G`+WGfiljQ-$g2jj+@a+,8,$ U#y(Ȅ.VI'd@t9R4[ՠjUmQO$3mbX|-A^4%Dw%\3 v,:P悉 I޳kѝX8:#Ȼ;1UηV΁tc76QPm~Hv!zp33bgmSK=Huaڑ搏5t0whN-kdl%B ^픎ivZSq! ] ۫AF'XVn?)6aXt~B̠{pEyk6TqKr|Ju9n( jnBͬ*X3a׮`Z&(MhbuW zw~,sf֬{ i/,6Ws^Bǖ*Wϓ6̒̍eq C[^P KAtxZ=ܮ(:HɼiL6yPX؆t.!ߊ;X:7h!ߒQdn .o^2J9|=C.4X^YQ!G:EYMi~ZB̍1t8^hI5~ow9::,(yWl*dV=_--룽1z[ucC@QRp K( '.& rYHbwW6B+;z`+E#멕T !?YMd1[uC+7''ηk(QQkЄ: 3> R?h& =lt: ,k0t~B.D$zM ǜ2X업~1<AظW)K |nVc]܌ya2#$ΙQa& e4U.MB y~iE@F>MI41qT:Wգۜ4&Ct:Wi?< @S*5ϫ6\94: 3SXuS}Jc*W:毮mh^] S_o`kzߛp #  ԇxf= 394@-zBA}7|]ڃzXOe*A`>-+Uo %j@_?!>1gHn"d]rы1니ب8riWjJ;۝-u"BT2dx+mxNlD/ۻAve&}WJd)Vgy*M}12 xMOqƵje Q\ʏd0ysqZ1J+ o|k%5GL2'4z ߋ34YP/"lo\1C폿UAy#UuZ{fԈEvgKotVMQIJR=TSk(X{q<}1B/w,.~$qŧEU8qciojH?S Pݴ#VbAh1、RKN׳:gܾ+42!~~Nr)2i'zt?'xY_Zͪ"v򗈘e$єQ d֬CƬ8ʪJrrv{gP/[cD{?M@-:ҕ.4FIۙQ]Yi~?S"Q?@X3ɮZ]b!IvU`q\EB@a<8*rTvX$FyDJ NGJV0*a cq͑B("|nzSdH*C5I›ƣ?j8w:yeSɽ/,Ǖj{9+X`B숐\ܢFƐ2%~Ԕ圢Œ;?;4H7m%%p Q'0#z1|>H#y8QTj$_$RږP޼0:߇F׏|ێ#Jղ dF<QGt(ҦiQՉlM0T8 )5A!:{ SQvP4q{)Q Tۨ얩\a~{MtR Vw3|7aoy0͊ ݧRt+4`iîTήpGR%)6)JMIw(?IvYʐ{| dg鶺,1Mn&hcUɲb r TlT3?9bgGDBY}czC(sG#ɐOx?Yo:A*MNkLۮ)׽h4tZj'L7^O%֎u`x'"x>CO{мUҍ,) 5Éνj C\S&z v]"9 A?ڄ,?.P0b)Em5 lyb4XL+YhUMOU]sQh"`K׸{06%#3D11ryh70^fpw1NWoE "#&n{D[b{˂b-@4I`,hk63Vj|OlWA)/Y"mgAZRD]2KuJ9xͯ⎪]ߩpZǼ1^H[Ī]{0l_3z,fz>QryՂbd"wIuЊrN'ˇW}ns1uYY#,ȅLg;X2Y٩zZ{~lXMV[$veeG n3C|#;~ hPR[Nsq$ӥ:PR}D*Cn"k.gYP8lSwo_qQ$6h\Ws^R:\(A (ꌳ硧wAˇ--dY*b#VԸh~3+>!;lbo.ȄbLhbN 5cN9$C_H0N+q_N1u@tT l1 ܒ{F;ͱH~KG{-3 o6ulV""Y[GWvYX:f8Vߠr(u]Ev~/j}Ƿ*8:Z+Yzu[l0 B䷟&LkiitDynqF~rWҨ%Rv=f5HkZ'D8nL2U=3`oՎ=uڮ¡cn$g, {%Hj_ 9cO YffP2re%"Bi=C_0FMxL;ӓ7oaEA +ΣN [+0iAuՌWV뗆 D bfiJ.>yB?[nܠ}QmǷb ЀpC͎Sϝgk ;\W-RK'(7tpi'GV}:V_=~}ФؘR]ER(v&jz]`ZWYM_mF gD8J׵ͨ-҃\!VsyQ.yam@(8|rc;P2ŠökG2g_ @:?s5z; C/EC08qLe uߜuRLyFKNhx|e23E%[g~u+aՠ$-,{_qg'VZhLުV1I\SgpYln,=+F-9K΅a˥Xh>6#;}W'AFPiR!o>8I! hڹ12d_nH'cr U?)?ɓ!})g, ~΄ց goZwާQCj,{tc4eos9i| a7^Ŧޛ6wP R5#̵gɬb1ֶ%&iFQRO:xX5S;ތI:+BnKO,0|zieM5RKt7".1{ 'iu=uX-)1sim;eh]8!m2⧙Xl-EccvBZ EHԧ7%=Nf'fʙCJT۽>TTU _l5?'zpEҝ%,6MUh`'YbC̆!UҎ Zc/$y!vjr8W#Z߳ri*[bhJ;}j1]|=\*}XH|9c5[DJ56-qiK񼑸X!?#րyP>hvgzܦ:x2{ d9B'};HZ!wW_W14$ik[MK] Q ochgb{ǗCR ?sBZKCF-(;;y}>8|76txfeqm Dߐ {ʩwh5Oҿ613CHL]]O)axndYrN$[X 6後rėphH<x*ҏnGyo`GЂh;Kr$ 2[7߸[C>!CGUgD4"v(Lv/ꦦef}67l"^V>НPM +uPjtNKh; #O6oDsCL4'Xtg&a*Ӗ fMt˹6*甋]jL:\3|.Nvp7rpiWsͺ ,yrl5f"P9䞍#urÌQm]=yWK}swBx# 'F 0A޳?>qL@rͨL5ܰ:YvxsG˳{`|-@-{ǬQ˹k]վ¿IptY8TkKT8 Usµjl-'_ptk Z=q=t ׎VqAngaQfHU9 mDD=#cSAFN)9Kߢl Wc06EBesPb& vy< q XHۊ?yAfn %HU'QWvfie>c._0@9>]/2:|^C z0Uyư_3QH}+_14B)-vϳxg4(Rl%oEŚu] ]<~q"ݾ{dFN< 6vޡUo&%F,18Zp^0W0>+XJ3 d{Ĺk߶F2SŗޯIQ^0wLy 4T+{3׵@&EbPd QvCv/z5H}|#Y곉}q| 7Zmv/Ĥ>j)4V9CG,} GfmOHy/1lOJҥ]Mw  s )) nL`u#KBm#qD4BC{65gc hbSlz91;crj3bΙ3NHXV]@ P rP ydO1Ja(!ʊg~=УPB"f0\7(\!cn51;\zu ػ3QȎEG)\EBI7A%bU,L՚4 x`TjYdC fXdÓѫ"aomH$R՝B4X/ #|M\ <{N"/on9 > -xTsch<` g"Fm ] $d)5\w*w?K6~ffši%1݋t$Lq)!2 7g|c}鿶&b#ek.afhg=1'fX9W&W~´t İ[oE Bhbc,a.u~HtR3KNDK:F2(T_6X(X,M<K{!V/eK ?3@ܾ {cj"8B^ S4?B)kî`}^rFVE&UʇiUs;Htip󲾚l>)ij>eSmr3*hZV^x?NأsOE@@Uy\Rڿu/J}R̡OSEN TFQ7c0$MNy-"[Jn?)3n_qԭ%)t_':+YMw*Ǫhd}}Meou?!)ϚP9;JZLNw8]`߼(TJ2Tm[Kf.'6rj/%M'̙ŝᮌ/1k ڮ9 86ծf;gL 7 ቎@F<<1̞nI8rUv%{C%?źTz/ e#u/+SŞeG`zMlY)%ڳ* \B%MU茽ѳϾ;dG}I-ΙaU6Dd`Rg\ } hS8!>{uHC!gNM}w VF H|b+F .< # [Wn %VPEq]zy;bu|V9 _6ȮAPҲϳI%W`{9t"v'"O=U狂.'oepr[cJO/VZr HOYJ眑UaMeg[+7mw&D݉ƸU@!?b7SR?i4cg:[ntqDΜ\mG'td/rs/[Wj+~LvXҞO8ԅ 'S4g;R5Z~ϰVt)* >f`[m"a އqKBw- ,Btdos>=B] 9%V\˓q%(جj0b,{|p.h"h]i16"g!>_X<ۍT^d~IѶր"&lw8;<*L ΂e EtRS0Ek#!q j8h L)6ǧv _ 45}c49/.alP_2v>PSy>rÅ RgCK7+yP4]+wWDw bg8ש"p^:Zjeͳ3q8o]:A}~Ú.]_:YWZ(TŻ"Z"1@$5w,GhтY #3$)eP*:w_Q͉ڭ=X/ .wc^28!’[^%NebMw7Ń =ύ\=nRB ݻ 15T'e\+KLʀ_ܭJdOY+um箃ԝ+YZ(| $Pn3`y/w m#V%E5O+,L)%9P= cgX$BiW#' \L"ik:PuNDtU&97As'~yBDgZ;X$I-3VZS\V|EuP\ngav*.r>QJ(! (mc*Azz8Q7}MdtNj CWt}iYʍQVJ[Xݑ\M>]]žj'߇qiI}+D2c_Z+S7>̺K\`H)FjOεQ)L*6"0O3"IyNm8H} @R0 w-q3oÖJ9uh<0v\bˢvCĚT{Mr4B0|g-1 dB윉i PߡUq=$)rkZj &Ԭְ0bj1c-_ס`nuu0;yrXmŏ!a;P;tE+pS`e7V3⥓fLgf-.2JBgayCDc'S"ܦUe,sH4|"BKC4i {m7J\ZgJeeFoiʇcŚ'0c BeqQ n 7ze,I9'av=ωJ$Gjlf8(I*;f."BY}ku@L2:ЗbȒ(䓬8CƐYc!W՞VkGOY9!K-VK(ܹ45D=Ur[Ip=qF" :3@N}m"+'Z[k=b&7EP<*Vv݉sʸLO7*wU&Ty2pNw w;жa"x\]1N]厒l֘9}>6FAt~ 3f̬ح7_>Έ(fA_,\e]cΡ}^ rc=J ɕ-&W,wBmbI?@K\/`{XtSGϬXD a=Df=3QgX2ÃBJ[SmOskGIN-͈`M{oGGSUGEOV2B 3Ui48:} ?j,%2+$dy ! *b=z.X'pA_ۭBDfrpSAJ$P,I qz9:_]dT >ֆ}>_1Z#8T-dG|ĸ):A4"aƽk_[!t" IlynpMvLo:5J R% f׷7nP`ј ,к ,y9Vs p*I:D8Oe4uo %>rKdX-ڻ1nf m{GΩA;wN0ڇXl:+q_ik62CĨ_~z;j9i.C{ F7P-^d=Iir☚1؎QjО˓0{3{hgXr+pҐh-(o쓗Q;'M1k­mNP$8% ϣY#2K{^8_eE{yZpQc2Džl{TGC1Y|; FS J*#VXН$74x\d]7"c=Uɘ3j8h7㏓Kw чz`OKiVbיeUff~AdHㄯv7q0kmXJ2@rg躼pxU$טPBX%-phy H8RI6&)w|\z)I \A7sʮO ILU=8(9zkQ*X5ZoutM~gn Q EG(u #SCْrv\d?zo^G->y3/v,HN.i4ҵ:'}ZoDBހJtHZ s8+ 7Jf> @w^ >D9YijS c,kn:qt }>ZuIrOyriho0--rNUZ$0T[ktXC_Ω/t/NKb4c; qK`cp"H,>Ge2׫cvf""hEP?*q%1[W7Xڭ z;1PĊ*g .H=Ȍo?Vɺ9VKutzH" Z Y哚e>k&ȿԘJܗ ˌ\%|ElSYOqVr8Au| hRoGTa/ܱj f/Y tk󜨸rBt0UR ץ3YAl<O^ߍ *lп؝>ؖQ 4<zZs"Bx@5WHnV kKpX:J '^0_!/2œVC>r:>-6d7Խ}ԲQ >`%8!"s1>[,ǂRAY(l 3?>0Gw[IxTHxl$JM/pu+,QZW5k b{g@: N$Oda/:wUab{czeL.R]P2mR dsqGԮ.Q˜<6Y/T'䍾ڊQ*,Ҏ'< R`m pYޜt=T3%+im?;JSpMpfOy`8'iGk-BbϽ/8$B>bLl|BmDȉ0{^ni1R?u!¾̢ yً2A(n۸W8Jxe=!͹p "p22I[SxS_# Iew׫61JZyagˡu/^8 "9(=mLq?ZU<#*(ӸΝ&I<"yQr8= .X2ʿ=Xpd- jSeG_oJ.Sҽٽ`-&h~E:1y)TCoxpTݥ/XxMjJ'mr8#xK/xX$: ɤi_ +:!{x_ЎQȯxkoa#|#g=}פF 0}(8m+ K쾪;). Hh;տ킀eoei~}z0zpq"vaݡP JK`;(o=U#.p_[x!6%ݣCa* | 8Kl~i49e_(bxIYtrX6CݢV)VϝD*r%սZ1V8<GzjWː$sWyc8X2yc-yy"@rfq *~Z"]> o^ąg⫪4*$ SI5{ DՕ H^6]0^Aj$5זWɔ]T2 ̀jY2ńUoꟖP3A(''1lL| c"hk)CgeZs",taNR;V&u2K eD/u nI vD5j3>GNv=:H4;t,4'b'b!_WЫfe>'aK~Y[^c"_߻Tmb.9( XTѱ1T8CbbvðfΝ^ԇĊ3u_dBBEQ a0 tLa Xݪ9:O*ihW] Z7vI+.xnN7^pƋ&#mVMyז*Bfӌg Pԙ]hB۳μ`n{3RΑvlrG8RiZJ|q=A'?X.4E$A˰fj r |qOGI#{ÃԺB##MzQqLs>_/CSlrblł!@h+ު`=L}`-wYkV`d($v,=ECә.0чޯ-^lj2@>[j^'b'ˈ\"K8xSq1@=( ;vVdՆuXL-c j}~R?Mu<[]2|,o6!=Oŧ:oሏYp$}Rkn7g4;.)%V},Z" s ʭ3 pw}wz6խdKU>i-Y< @)w^vyzZDca>fՔ`y%$.m}֫YܟQG5 x!t;=yq2u}[LZi._'>'$NO%!pьRIȼw13;SJyqCsɈW1_!W kB]_V],,Vͷ"m[&綵ISCa{/^`6RmvaLT?Aarjѻg%;oTb,”1y}9 bF$r?#ADc]tqrFlze1jN> 6 wb:5_鋻J VPp #lCEr S!! B>ޗNAXZgBk=w#x˴4 wJTDwm>}OG.sn`/9 Gd~^;!}ftrf{_i"imH_j/%~:8ax& W4,k/UQ,h"EbYݤW6}t,"Pc־N3x"`>a(!Hc 3U l!!Gŀd(xMT+#U%z`uf 6ֱkN\$3SjR҈7H[,KС>21{`_~7Yjg-Ts7- @hRɜA VM412`&ȘeYp,}8jE:k-&ЇSjD %rߠ?p^|Їr_ 7BX,æ$f LEldi JF~јLuX!K뺣hc~uYdv"VvON,.NdiFRŽY(VB;4b목x=| ',n]GVll^ $sڝN\Ɖh6bjD]Q?Ŏ;JX(>Djs5UwV尫U4aG2x 3Baqf4z'7P$BBnmۻ{cn(Q'꾺ȰB.۱+WK)g`DG +mnFꄾ#1;r&Zqܕ~ Qmm`GCa'T2g:Q!h֟$ZJiX|?(v@y .-z$pF3"]'_utRZ/b9K::tm@N~ޑ@y1"]NA(l>MUiێtݧ-Zu.W|ȡ.(adӆI}.4`Dks q s2/*{ ";0X#!2UNo ]{fbspm6]|f B@CLDybr*cMm$W6i2ﵠAFWpj>Əľus>Ue'1ӿÂIwg~p//-iWkFVAG)hflM#ټ~Ati)?E{BNU!F}+Cކ̇UȑYݭ ɞBˣA" "w+g CK"4[UOѫNZꚓhBN’4]]R qa w pq.> H&FbԨp*p6GOg^&JZbo0/o]Fdt8ϥкF8bvZlQ)BN,?ڜbDI#i,`p8^rcL_Iݻ%l}HmdNLdJn磄D ==Ƚ'`8zCXP0 <yY9Û9AxC׭L.̳琩:^<.Ny}]KFʈ)=+4Bb,Op_Ȑ3oxmŚ wH^|PM-paʋgP:q39';xJKl*. ؼY2;mW-pN~32^aېLKذ/47Uz0KǻA }5 Ig<,ȫfX]NG!b>umTX7qfc-&)sp`eWn–ץH. bG 8!}(a5JgfԾw̉ܡF9w|&h]OG8,$%K7U<'\vo 7 /r UIڭo9*W{:TjxrĀʄWEĖJٞunpf+W Օ>SWO" {! (NJ5bm{oYh4wPSF)el lievvV \ D}ˋwF&z]\l"~]I6K'+^IhfCy r,ӗJ"3%z'I%>l>ʼC(1ZuZɥ _·N-<|M.[1;|BD)OJudFn\acݐ _n|ilFU3}9e܏ǟ#w8%אʮjx6%uc_lj{]?T.fXYҬ=Q)w,Ə9ZJ@cp{lVdžѫ&>,m%KWb-$5wtpybCXQHϷ>(--ST#U)@w\A. &N+ݤT2S ĤLpg YL9+F) JAKWs\%#QHU@Ȗ,i# @CС=K +SRlШ[DwC#4 {IѽGHb¼,aWѴn֦/L^ ӃE/K&X Bbq]<{UH X :ټ)Iw@-ޏ&f'j}H/pa_tH̀  Ŋ=&o40m"]FԊO=3ˋ7[Dį+uŦK r) NiXɜUx%% ]Fv0 e>5ud6lO_*3l;h&Hut@:BQo! x.R0lɈ7&mhYy8تL U>G W@@Il2D֖2'M&>`0;xa]`r)dcsʝ#|Pq16lF̴e1u14ؾw.`N`K9c!ޜnYY%X,"¾8ⲋ }Bײ͞$_7FSU?u ,7BQ?bXts} Ɵ?=%O{aGB:ۡ,U?w^YXt?ʴ' E%n 98m 'жuBR&@HYb `Ohwz=82> B@*k%e874R1[p5H_W:l4ozT> `iu׬-G`3AMO+07H] i+^; s)"oZ{QJ&[?ȎvFH/q0jVl̯1LIY .U=SBi(:{F Q/mTJpx4pT$̴*-fTw@Y47MzK{@g M1r?M(LcRn%#+C .Wz\*hzxZx3žQZ\Oqt`2^ģӭ& L#Hsl i_PO |o1 b,$XpQ"vv_[)ei*k"Feʰp(˯{bG }zr"/7O\@*nr wU^$&:!I]HBr39d/$tC t8ʛ1mF/=)_c9eFH5Ea$ -:RGo݅b)-nAԚڱ {W|~*s)J](L|knzMV9M 'z2op(g[]*Dsfk!?0:ǁtkM]HKQܫ]$8zFNL\}LJeqx0Ӡ\fˆ̓cKx5ۛ$q0-կ5N6'ȴ(ov 1A@he5B!A~E0m:a{O-&YZ&e ʖzCXwbRn<?Bs"Qk p=rJ.DGU{ݶ!绽u4QC#3|N͓Jc^lf[2&6GߚY&=s}zi&-hľi}/2Y6}LAN)uy:*h[GPmxA-Un?r _5EXMm3g[9vK (p`Jf#m-4 Co[1rS5NEd% RGs9@t[bf/Ӵo\jH7?vP҄k״sr$hBCkɲ]*ef:Z8fM)]S+m-.[\S.Xj?.t-dt/wt.!aun@({a#O%b(+ֱ+XN,F`[ ,Q -rZWt5Sr'ЬЮY\5Y3qM$kQFOyz5v2=g2OܻqpܹG"gԮL\ށ2~IBȋ@̿xn@NXpi+T& k?{@T(TTY`d<`@OO; }l_ȫSލy:y\9O*]V8΂M4[%ֺ[L.0v Ј8##ߔ''B]]١eч{AG!ݛmJ\6kkqSO3^2:+Q[+?ʘO*jNҙ6Ck6u; .EzVws SY M@hqy3+ "h,rp{e(T7+wc$ЃZhy }@!\Z$XfmLxZ~.hȷ\IA-{ނB"Y}~R%CqU.ZlyA s )jD;RbUݾ3PT9@OR^ڐ:!H^ 37]1+ }&-|PI#3!t;ȌAO%1N_qMv̡g p iXK9Zw>"4aPdKip(H(}r)mWN?e9a {b94x|FG-X)^6]RR҅2,^TPxV'7D\%P{=^;?~!-MR~JSa/'+SlsB8t>_?606&K P~dzݬk% c9z,?!Ndtr6㘫?9tqO]&XB4KNCB+S*u ٌeXĿVܘ+÷F%T8ɶ?nu'攲g=p%d@AQfc.ڲ{\Xl,`v`ؙNȮj~ 2o(* }DmjAEcёD!({Q٬t]S;R7n5s/s-UpHj=p? ^\(`ζ]`y3{ ZG L-”'3en]_,juqvC2 ӾLfj4?Q^H`GA2 N3;V}&74Γ*{٭~S'5 GVuUewyekD!Hfg~}Pd,!'P߽~Ӫg{ӓVْYPWRV45+WhX'K|=dOZN2aWP̗)[>j8aƢ- lҫ8}kƔA!sgNM#Qp@o>y3[dߵ[pqF.٥2 )tqUC߭ TTX<ɑ Qv=mdTrf &m^3Şiǿ% E?p\Gc g[Y6(px(<_/FϷj[i&xv t,mCMo bP{@)WPPvZgݻrt"RswqzmMv3PcÖb9g\6UzlXUQq )ݙ2zS9#QdkQWZι' `$tt/Z DbF5:j.+m,vap.]N\amD ܛdn{ j=t*nZlZ{Z6e)Wke"#ֿؓ印(Q-2q̃}Rq &] &[]~E&,Eݧcr0d6i{&HaKW0[R 2ճew\}^}vQeG~D*" mq@'r;Z9e sd~/*?U8!츚=VyC v(؛GCc!3#<[<}PEՖ.*9HԼYWlEcOBO_o[4UzǠ'->"'1=eGrpy # `!Jg V_zhb{\7`lx 9RV#&^:cJq3F˗3&.d.Z:( Ea2O͂¯ST95fߡv_C;mKW~޴C_iEO :Ȩh蘎.Bö~\V6dS:si~H,k褁IԈH+t!MOǀtW9F"R_kLȲ(k}s '@A @`>=QzŪ~)vud a{:K$ V\@Z,e!kMSL2nLXNhLIQBaߢ0,6HP}γiXl@sI ;-#>-#w) I3_M5yS,Vl9<Ș)DUWfɁeVGL#_G& 'Viz$8_W'璽%W~VO0'|#S~8cHYQ_#!NUe\/M(љ}G_Q:!sst>L{KbK2R& 0PώLlw^VvBȌE6IGTp1\fiMzxg49 szPinˡL):E+rXf4g/etgT|l^<}'=Z1/:X7q!R=Mi#X9pPat'in?8¦M8˳CG c1<]U a>knA\Kwc<p'FQ|L}:RUe7pY{Y^bCx +̩Y]u>7kxI^Z=8-0-CCl.F&9Ǝ.ȃ7XsYE \;/T'0N&Ku'߶.wG5Ra5|Zcc5goP"^R2$HEa Yۭo&(N.[$=*qskXߥ4^{5a6քp -N%Ac /bU~w60F N<˵.ߠD״MNwשq2vX{vOrl?[ ) * |6ΛH;ȴԃp9mKo?wgt\K /+X fILvFvW~ Qn\y;m!*gԩTkSY*^6XI6Y`uf~ UOrTmk3+qyHm[amG] VpzcS`j|3Q^e,$ m S;Ǚ'д|Lq7+b$u;kQ?9:D@r X-2VDH9\ke{`F| ұcs>Y&<tJX§5ǃ_Fţ/=\^3t-$AVv!̟x!hB@ŚH.43ELR4 {%K3wPUg%]/~eME^R{_h oI ɧ 6\fs;BQkTfn_".C4rރ'qe!/a?0dKpiaVo]ipi4XRQ{6uPM;4KRU>.}4NҐn~'W$*wP)!%8Q_BWel ISiN_M!5̨;ǁ}k)u`Dv``5 2Kܗ"mEf ғSsRS0DQF~[QxJYJJLUya9xTjiS*'-HoHXY'+iT ofbF[IeX/YR7LT sʝƪe\S½(j&݊23T!;s $j1WO4Itytn\e!7;;W JbM+_l |xixNnVF ,Ab*SlY'c ?; plS]8f'fԾ7 Ą"q{z)c-xvݬW"5jR %R8Wp7Ck$+b7ZEJ卒GﺜG~H6Ntn|J4/' ʊ tHg;$Z=H4sƫ46z,9wEb˜ &cx#UJi(ROȡ,9MytáY ]ta )2W*{reOة&Qu.c oԈ ef_׽QJZYߝIt$@EN~\6-emGw=7,U19˫S|bφC!>jN/ uD{Li&ÀcC$Hѡ sv⽲zߖVGJw4z/q"kDJ%To䑐i(<^=mMw@,-"S*0J_%a0 MV`g2[ 1,p/7YA.d˗qE3f~ism?Z]>*:T 6ϣ9ʘVl$3Yca'-/Nq ݟ܊JY<PI(l:|x3U60,v<؇ʢڦmd+([NQ y6)} ,N^x[}>gOd=? );1xu /!U[ hh^Ihph)oyσMl%+a]P6E{WP&N QS)@.ع1¯lƾrյ{n9go&LSn5'/ͦ#+T|9Irja-WBQL,h. OyQuZI,/]Z v.=R=EU\Vf@?iZH%|4"80ݚAgT})J.@+9#PrE,/9 *"s\YiF{+Zx#n@x9s)NV0}Ŏ'R17 l Ku8Rjn#N1UKʂܺ[^Kה"My]bB# yύx-o#kLnyo&9k=7DJa~nRQYN6"rW>a0'%i(즨i_Õhbss]ϝ0zP. ol.rh&V{a5@Y _+jMR+hc6 B6'4\BXl<"rWb쫡-2p咢` :q-׆?F֝JXrƖsI|-jZi`ŠU~oPM`UA EI{ƾ($SP+M,ٌ}ԺФ0TV`&;'Vk3O?>Z,FC+~_]%3GM a*RZX)Su=~2,shrK/lԣSf-G[HYuyNb~*gN_BqNTb,m/,N@ǚMI>VV, pTNf[571 }+쩳!!y}vHl^H׎PhzBu ҅KhQ/ I&/1+6\;'N3u6 PiMeq,ix顇Euʬ WX Fh2XFGi͙Ѣ?^wxXU $ukQ6Ϩu鈾a b`< qdI(17)l0Z΋ogq)yr64vvmG>BQy}L$<]gdi2JW=لL< Paȥ ^Z n+=`in1aN4G1fC_D}I9 ݘq`lEݘN%CXrKcW&)V%(>B ctF^Z\n}JDkI%'_o`W-&/>nWͷgehuQꩪD'J%McY s\>.?O/5x˥Ĭ_ŷ駍^̉Mͥ;)uk N4'B,٥hJlN+LU|# ALsEWvaA虞FTϒ|wswp&؄ݠ9GzL_#{*vH^r( ]٦Zb4 *˖M~QQkQU//X,?ɨ0= >tBs s| r?O[dGjq8vs]ٳۗg#-z 3|<݋!p@(v^t;^S|e̛.#5^v9^e,s\vFUdd[p)dt4@s1GWRވUڔa\lȵB˜GTqCH˯Af2GVF,v4 +Hwԓ%q3Ň;?t(v-iGĪC!7']EoeHu`rd>5\GAkhQKMh& }9kńv\-B[FT,z*5~=:̱($1d %>(|j0lw܏ch,4MH e>QjE 7t@>/5TGj?EK?1 nZ1 Mv\)x{X(˖"X:7uĢ?[~ <l!=}lN`hUV,pe<%h*ӼC?:]:.1* XM(~VuXޮXџVS fs"zR˨HϼWS2j(4@((&vܳBc$ AFMYNRH {",.t#G>g\ #^7w<䤁|e΂|ҋw#4o.>Z~6;fodx)~`A&k έ N5%9ы뙨PYϏ/_* 窩;ܲ&Ƞ3.W09qK ,{G1 p󱸰QQIrb8_v Ao9T1W`G?ͬ>ĥ3S9#Tj/Twӛ*q0*~W:dAPșcꚣrܜ>l$B|]?+O*?~"^r"2WY@qlR}/@U64р8zǽn IuG;,A#BhHx]]RRݲCeMĪL%?7n59\Ve$GTB}Me3ઊoYq S`ɟ!vL]'KyS.W."3Pke7,15WtT-ioBIH֟E Ե/nc @\[,[l[A*Kzes5v뙽ΥMc\%2'k* @4\EGMV<ؘ$Y n?'߹ܚˈTXY= Q6b O$tRir/-\t9!II/teQz-sm#AszkU"aOKrS qΥv\= E_4/`V*Zu)YLӱ"aX艚 xfق^]ŃعgfYG@|g?;fH"9+H>OG^^IP M#Ҫ5!,KJ1]8=W_\1m?[I,kQfU A~S۱ ᴖ/ .VmdZCϨ1Xklk[FȐ5'[nmAḧ́~wS9ێ_b20Qiab1HmoJ;O2)=rkAS B/lBCHeƣC׷M_,ot]7Z {:qMnljn{T塙w!kj1>8Z5˂))ӜPӇ^b=/?ub[NiGC4X;Rz7I稘ϑg@E+7njgJ^)4ߟTDVb}2H9VG րDصRpdomt{-ft^"y煳 zrr5'Z[xy_sۤȀ`2't r $}l6޾~hkļ|MޫO!d]!5. e( [^mlۉP ER+a9;l'`UuTJdݗ c~t-l6Cxm[@; O`z5|6xu] sX<)k頍TGv~__)ONfbAm$yX̖)kp Z}@"W"ﯪ==Zgq瑽o{ seDe|[I<- hS'0ynvhM`,#sJc28)NQc"8ѼiR\#:PFnY,C~N#wSCBk9ǑÜlhORVpr*HO0u>dhШX4ku)4n( tcfPB(W~G ls ulr>XU۩(-vԈn*R=jqYyLnPN)አ$J49(9z`aMQ̲Z&P-?@.nrxbA!fDh(.۪;Jk6JIIۼ> d|DGSLBa +X{,t g+e~3f'$ )8/=g>?u_HA N3u&{;8_z ڏ}X^$3_ 5ăCL|wkdUHf ,)-#ƕi}UzF׾'?@lʹpܛJZOmO.cF`gvI@MueTV&spUl G9Ѷ:Sy-5J >Lbw2@y'}g&꽳!PL˸7f,1VvrJ*hs^a┧2ryePw.q~ +JP5ÍlqbFݚ{9MbQӽ%|KL[}j6{#]xf?[uZVDʫgX$ EjC rWTЎnP/Ŋ_UOg TYws*mf d ~OMB k9H/C,b&{8Ū2>d@QYB@|mq-!F3}BLZћYrV~8X$bg-2RϓU0U4$AW^dG䴢 k~jqq 44N^ 5n9(mhǸ˿`m랖#Px6 割2As, U/λ g5🵭Q9Ukpv ]/3ŘQ݁3P/ igP}=|= ^? rb&w؇qwhfAZP=q+Z E3*#UA!=8;ʤ{>uGQ=) i49g41dwpa72V=Ë& !^rMf֐]˃p3O&_94Sf3o+ZYO$Mvdts".iJ=~~ ܑ-ʡR0%*'q {=&)\|+,a\p)?r:yfEQJ юyt/ֹ(jj9ߎ[$pfN.XuaX,܈ЉBq)(V==l<F>O?q\az}@LZ'Nnjp_TγgB7!P)C="JIN'7s/|Mja5LJ Z}::S{Yʙ@:gTPJ؂ϩ0k=3('cs҄$#ɫvW+ ]m=&!q#E2TdyI}5s6ؖ ͜kPq, b&OzA$N*XɂX=!i'Ȏg'_wʏ;2e_J+da+Ei\,KZBB7MRlx|"N~~An]aMtA.8LLg~VLF6M`J \EM~(N.*,_0X} E}K/3xAvɔ_! n*IAv#w6wb7=~CcRuy'NaݚhP{u_Im8H@܈ylG)uPeSʭw-^}RLXC?~] ;|[$!:u Sx\FeW$-wc5Y>YNЕTX0)Y\ZĖy aJ6x- "プ-TءIF_<}pk߆zN? sN ͗PP0ժ(>Z XēD:-乫cKGn imwmbTںR6, h.9*DEkoAfBWx:x,*x OG`ʱZGB׶Vǖ]].KLjs`cwAy3BnGJNn]?3 ZQP9BnJEmdfJLl~q(qBhu”;@ҒQ"JׁF6-z;IuZslO Vm`60͓3a{GGɷPݼnަA3(vĮ72 ^k!pXYj%|fQE놐,OBw"bFv52bI5CUsbóȫ*;͆)ź,1F}Ɠ {ۊzoڄQx n5}y&tg^sFϔw4i~Wnk^L\Hߺ&ΔJMƴȢB7֢xa& z0U81,Z9eU_NYNJuϓ2]B|Gu T4"fR*y"=a]2E*'O8U!,!773?S-Z0]:P8h9BpSJ뻐_3 Z 𚇱c2'P{*w1^@]sGS.N}SjAؘ;IO6-an[u%bf$ʛQ| udIfYi8oGCg‘ x.俯*DK$TDִj ÝL95ցRXd~)Yr;f&^zƎ51`Ve a.K3> 7^M5RNT˓@-!/xsS$ֆ}D\QBO E$<;?ϫ@Ҡu KC8ِ:me3Y"oVcƬJ,7Ҝg|%ʖx+d6c":(ehP"y!wyKr"{PiSl(s372Bq j` e%yXעg*~5퍆. Ep5kӀz7DN@ nROA?DK64qlw)&V 0.1v]du"dg[4}zS7V]f*L9[p?Vƨd&}:?`x Î KoRZ{mqJ*>~2X_G?GZ q^,³Yc]+"lD[zkAWl5T{!!?m/aɔQ r:IЀ%MnpވI$A|1DD@[S3^ LxPI2_\ hnΓGgr颇FTR'B:Xs;"~ C.#de, u7O*SPN.餞US42jR>!:mXdS: J+8E ژ~{n|όOdQ:߲9vUs((bbK_x7֍VoQasm<.zUXZh-c4|E"HE@1wP61znp ny:Xku,umYj|BJn vlᱛZVSZ4nQbǡQqXq<žy\r4+5cb{?^bE@gKĞ3qwDaco#hCQc4 wj-E8G Cf]X 6Hj>[.%H;Ӽ xatx˘]#_+-T`[rHs3ߎxeջG2M4 8fp&2~]]olXE^fzbx.xCY ҇Cf Qjk$%/NdƄ<H ­=Gvw50ˏlL*y{G0o #ڨ!OjP,?ۏQ$ZV2ضA7J%C%wj\۠FS9M,AzLHJzNMG{_5W+f ɉJ,-i~~hKTyqW7RO $֕%+VTh m D[qtZ/|)z"Ϥ^s6jn6AöЬPً}<-?JJVl' yXX/1%lTqY,Yt֍h:,'|3]Sy Ạ:dD[4IpzFTs4JymϱBkJÁA5}ླuAtdG稘S:6`Po*g`tuP.[pV]8kX[Kq6 !iGʖBXD?n¼*t)f8rIP`^tgHm'kfvvYcc'aZW6*c`;]4-»q 77Ky{ER2=C%yPDHqrR镋]nVJt[Z4/?jc)bgQeGYV>.:6V4Fŵ9|y]LjB{8 h'ֳ |7 ԑ괶hɜ`3l̈́ 2w6kHwsUwW0F(TŖtx:XT&wq!M<&4^gx'F8k,Y>efy2=brY0v=D5iP_DnH\ҧlۭyT'y9]^S>Ac+BH)[c &nnU>N{mB! [=+R6>lܞF\Lϔ/KNo*g0 -M_bjGp%;/4+ QHyk˚%8ƿEwt5zY *4cmLbC -\t!-<䷗"88C,CS9$RSvE,}ۼ ߜB;-s.1D :yL2 E-rj5ɝ BB{Ԙ+"*tD+(~͸ QXT xA7C^ĦVf*?N#XE:EIeLxBfpeEq:5\y51J7u|IImS&˸5eMoJ^2"-46PfΓp 1N\EuB6\>*\In䅭WHp C63"-Sv+Yqh ?AA\iRw>Fၣ'`e3^ Wյx(BulfhΙwa+aI\1EA ]&M]Jj*W}qUJT[ ,UD&6?Ы>Vg]ąZ\3#0PɏZ41=ZEڕLCM??\8p[-O貍|T[F 3R3"ó]C`6pjބۚm G|%[P"D^"WZ7#7 ,ӗn92nZ&@˕g4Κc+CLv3|UɺmּWW)mOҜ]<{ UMbqhTfG$P?zn$:oS#A-ddGszYY+fTXY P̐S`ozЖY-Cۮ9-G<6fa̱XýW9 7Dx佥u+X땣N`nv"R Eޑedo|n`uZ=*+ДAL%ϰky"?ߒ<j8B lW{N*: 0;zeYټVշHBbny/4{kJ~PJ" On/G>)0ߩ8 Vm~s;yeͫ-af~}+TH~N>h7X!L!pIXXwQ6PFC%C 3&Yg=IStVAWؓ! zc,PG䴬_zVt~tg]! ;tzc`G>nu]]y?~gaNsĥh].%+Nl]Q"䑴b^K̽M(GZŚ\nr?Dbvs[i>VZx wPf)lXX]z Y*ᦺEytgQ T'Bg6=$֍ pwCN Z^VkA3O{l|Ӷ-fX=NlGٕI>J{bQ)եCfN2&@:\{[$䪶$u?p3 HcLKKxdG2\UL P.ゝ&8a*F{W]z (m?P?ӊq緅(+ג?%3mP$uH1 QrǦw4RB9Ay5N+qg{KÚfr-K8d8oS{6FzI>m/0C+N gZ.a1.Ig `);UF=6+b\Y8Z U6`kx/U# +|Qovl9d-.'G.'\*ݷ5aK@9[e $Z =&kVVua)ތaaIF$?rdzq2DoL '꯱;@cr*Aa:0hQR\T#ŢAըicQ*.kCPG }N|R̐1<ۥæ`Qi] A(B{Zbܟ X; NxJ2]"@6wg~&9p+cnW||sPLCIԘT~Hvl5FΪ ʯ)i ߨyR' Wk˫[P5 x&w׽u{DȒmܞ\$V:k!h{0I?\skXLVp[SsǖBk.^$DBҝ-9*I_ROϸK>3Vʇ]7wunRnZ?s?\W[9&B:.3 ɑv VMS1}:| )FbY%>WyOFj#Xֽ*{632UɯA^#~yVم\@il[j@ġ (ڳL:*IR3~D, X eD:!GH|V8hZP(CajqRO}=/"Y<J7者fJJxƕWw!H /qg B"~eMDv3h{-U k4%Fz(?I`r^D݌Rسg}Pxbr4j6C$c>evqi<C> EK׊?,>Zcf5\YxL̎jBךnh].;ics'Om|8IhFjR_0öST6ZNYnGNF $oH~*]:z p,JA[яZ‚ (6HEi{D骬ÐBu1gQbO< {U5֚płN36JDkgl%DxZ:wigB$.hÕmQa+,[e |M3Vr.nBnh^K;e(t֩(oU5_v0X`#KAJU-رHSSa1XIʥ6'OF[2! 2qZ:^A=ڍԫs[3C),ԚߌHv){[7 {B%Qč?20kSۊ}k@-*u\11JRa?fLiKp㮹 uJɬ$J{jSkǾx2,QJ!wjq1{dTlo\ ̜˵]EgĮ[*N~]a:x!Jd׊ AYGS{zSsMC` Eh&x&[K>Wߩw*q?sp]hC4eI1|szf(8`+e51ZWA#@.bRdw^LU)vsƜn7"pnz8h9aol0i盟dGٰro/N*pJ}e.o%2u>p/782n楲?crY Ϳ*rO"Ί{бYƠzsYa_x>xM*2J.kRqQj5%kϏFG:߽ia#[?Pb9 *E7(IU * ](?kAO~_GR6&=ڃGc}8L 6J?zcw]tɉ@,t%1\Uףբt4wHae|;ZTI*'q3NҿHG="r(LO`@;qܭ[AM-D IbĿG>S 65|}/ }W~;Y0c;t)L d"pe<˘T~=gHׯ M>O!fFsz]hX b_o;콾]Q0ˣhUpS.LU^8%8*|  ;A8_x1c3JWjtbA 9xx ;=V6܂&޷zjЧQ2&s /ҟ&ީL CE b!$}\> `\*@ 3 y"A51|، \Tw/)@Z(2loq*\_6CalBk"_ۯ)-+] />&{lrYޭ4=ƅh6 !tk?VV;o^nĠC%8ϖ /c+*:iS{OIuP nqPМcFu!Cc1uKPXٌs8A'/FZ Ǯ=腢$n~߾BC )K?o.d/-sl\DH皡s'FFfx[/X= SRRcDaR:/Xj"{?ӍG;'sI<E)j3!dNZ*]ey;a."X9N*;"Eɗ1RlCIa,RP*̄HrD8L4OHe6zVpبrbW86aǘp܉piq\,r@vrFg8GrD7CF4>\Q- fpKˉ:fQ(SQͿwfˆOsloڌ5.94Gc iDl<j? {FhlWZ" + "tN!;j V抇;;5 !=D4m~<]3\ _ :YL*k?%7p<+R|ޤ! EMT]p;9Oִ܂qځP}y[4^d ˊWn9)A.0I4o:M&kf\0_W>mx1h˴lzM n`nE.v1Қr1Kű[nӟ-mUT6Β {9Z^a91ӉBeDϷ(J3v )'eN:b anjfs&rl;r'^Fׂ+zA ܹ(ɇ7"櫐׎.cW@yJ<[+6iύTOSgUTdLJa)vds:TWތ>gj`5lM{ƾ>A =:Nt!׭/Tfpr7(Kx{^*-,@Bgto6o(AӴ1O ~Y< T7y`#k ?^)Fj%옂=;7 Z3OgTDAKZۂwU!2gK{ۜ웂ioݥꍵ Q/,e?ޢAVTM/U3+ibfxMVG|-2ڼm7;hXb.:B :_$N 8B\M|П>wJNHؤ4Xq)0$|p&p&~J8Q#6-K ,Hزoe*.jPo4bY̊r_UZ'>pVG9Wn,^itMX+]yw@'OF_ds%_s7!f9pE37Wn>Vij: j BE_dm%@6#Nڑ(,LjMe;K%LD8=G! rucpТŃyȜO|Ou"֥rF{$r˥{MS-S m[[GmUƂRMY`*]gNNX.9+ƕ.~ӎ~j%P$%Ge`ϛ%멊q" :!.R^8G_\?!5&1p͵|T-B\ $\&s@?jjs}t jz[2Mg6l45b Di[éDV9Ho ;A^ YzNOtiA:„/RnH+ \s׶>EokEҫza_زR4.݁JYD贎% 1_%Xy*\@mSsxU)Z$ U {Mfqq'?1KG`2o" onY,dySwˀMDQܖpt{q$(2 f1wMB>B٠H1!wY=8{Rm0"eC9ceczm3?UKgn ?Myk:Btf|(_滦MM%" R%&nـqxcA$N l7Yѳ{̽?n5m컩=+PAt0 ߊEoiN~vdNq9H@똁jA"vi-UB#;&fa.9 |V'k>IMƤc)R [3Fjt?O#E+̎bݻABoa6g?L /u׌Ka(6gUQ{~twO S5i\s@@q:fA;NhC>> jKlSUg4cob=?`?WVN-G7*ОA05aqw}JQgU|~0 S?@&] c;R _8'vUސ6Qth㝱vfs"(5A1HM[ Xy"T %EgҴe p_^\IZZ $vX,[nv䅗% 퇝Qh*Y8'w}j[Et>G&i@3U6"44y5K':=^R>\C6SԽ=nr=;Jc0@uu`|9::+x.Kˋw@ o6S_SA`ˎTt 3q%Q6k' u.")-A~bݝ+1O.B)g7zi/'B{W"tp!XPu0gx來pL+sW\ sy%/Fyai#W@ Ds^$+I}8tjF ?g5lRN"Qd_Xl94^(Lzr͖R9HeJI|n3D}>r&B_B#OKJ.hI32LL]S71O_ƘM,'t‚Kb̦rhCCDߪK lB"1OE"ԉSy!gćj}im:(%47VR^a'(Ndr+U,^t䕨Qn6:~>_٥X%L+%X[{M8 ۳7&d fS9:S%)"(򳵚}d($o>C)hsY](bSFmN;GvC9W'ÄՆW.I-G]B ![A.R`]*MBntA\b!inA >ެdC FI^yqmƞd~ZOT6"uuAT +|D[VR6+]08%1{nXY)Se-6ce^gJ%oGYa?7ZIrLZvYnaݵ>}O1laO0&MgA\Q"z:,r-P ^V;fPiOAdA6 #Lb"]쿏A=%39*R]cw&xi]6BY$I֦Cw9oc4+Eag8W;?y%K@N@j̍]}YRN%ibFB:M UN.#[d@aCbzzcf JhfT7kSoYAI?ڊ.#BYc촲1ŴK{}_o? x6Qy!ibfYP+ qkk2Ru癰\B2rVՍ馫\^@C0UkOҏB?4-R:8.5r0Qn i;(,0F]VwC彷@`RE Z#:5>| hpuƗBoQ=!/oSd]Inx;8^6qn'3u"}bjءi0ퟪ$W-d [R&TL(VRQ23ߵNa 2 P~_0;RKݟ;t!֎> Co4|ܡs}I!YU6Q8jH6=1^uR3gJ.R/=,5+9z˩Oa/\iƄt[9oaW)a>ms!~IR~ֶ Kn h &͜],MVmQSxe}Jbg P{ b_+zn2δs^o`0V'+q|)7V.\m-k!^ .V>E"AZzu.w͂c.U~I{nqSfNǬ]R>bd >Ujt<@(p$ ߃'RQy iҰ>Χ M[>jٷ8:wV1Q j:(e5x8v^{G}Hl#OѭUC*,t|A>ѰzSYyΏ:Chj\Kok zlq$mYN,E9#4̉pΎphz):m3PCf3`r!,jwP@U=;OyGu@&.7Zgw)5*a.%,F5&oZDBKq^̖\y3r;?0~do+/8kq_x8' V@mI_uJ/+Cn#'vk4/[9C6:kG71y:z[M+dζ* wS\q`ptmxG8Y.D/}5];B|v~0:@j:&e{iUIHGlN:TRu~F}1ESǯB9xϤ7.u*9?Hm]2w`s.Y<ǍN9wTl{` IN) *0LamP Q)97|]k;ܟWDž 芏=۸ 9 rs#9B3-vo&9/,qv8[?#>a:d# 8!+"Wb}8kw{RߗV3R#$WqNsxCvaU*NPPcrQZ9Sڐ@eaG'O5[4/zցD8d }E06t.vՃw,a3YE3r:Yry]$Z~_IT:V de+lmDJ1vۖtNH٪)r<"?lEr >$haj3F8|ȟZn 2#U!uoKK1Aȫ"'b-yMHxF1g}׹+/*ImJry橴=aUd˯"X;5XYH觠g7ZZ3)|ڶm!j*1Y.Q+8lE0p t?ϞQ 9r-Yu!, MLy3WSu>Q\M,rEw"4xoOz>?.^5j. 1 {+ICS!iy0L~/,+\x Ls@XZ(:&xQ-H\#=8˽+Ysoѱq]$g?DG$"uQ9ÈjS5ہU!Ik#5jld鵂þ[,/ =q7+rk߇Қ /6{f%fn_ӣ;]@g=X`^-Hr7LRFqqj}5nQ0e$)'S129vUq]jQ.p:"lN}֟]0:-Hybڊ ;&;CdTLS2s|Uո\"Dl|ͬR5izU;IyAW$vX82?h.T@Σ#HFm@uJNmYMd*phP׿(9:L>'EexlI pq?:1kC:Re_5]f [I=JQمw T07>4DOi ;%!us:]tS5EnM\C:z%bze\B baPSZƫGŸ bCx 6}92¦vrC[$Bg, ^@p\k$Bz&\ AЦ6_zV@%>ՙU!F;ÈVײVD VP**[<4GƋ2kHb.Xm>hſ_9J'Q ӐBϿT^oVKY@j{f𪮹!@۳&4j;0'S>W2C-_kJFiU' Uz3rs^}Ϸ){X`{<ױ,V6ŠG#H-M;ՐDdQ:,ƿ -G̖؂8v0姻@ǁWCg[pnUP";@lƑrD,lF<"ͬ9ٙh K$k qՌnܮ\n$Hknƕiz/ Osyɺ _'m_&CrTMei= j.'&\Uݞ-5b:/ [SgQY"{T6:> 7Ɇ0uz`f(K{2Ͽ|Q㘌<3[>l_gHjCȐ?mZAqǃ_9RJ, /o7+7l$'{I)հ%Ia6SqʂlIVmیN:D{"go>Rc\VR?m[ ppx_$)T_P4 lueRN,POd G,* B=%XEݳ) |䉵o3)c# [U3UOP1vbbhfJ{t5M TM$ Y<jS*EH S@k=_jjlo;x{ϿHZ(*|_үj#.D.p8Lvo5gډOZz=DIʗ@kWG)Oh)o9AsMƪ& (:|aDgICTvMzߟJ6j{o|I>Iɶagbi*.n?/1|AY`_7eC1czn;_ ħtJWGit]o$a0;%kffA6ƓxGBmķ"KmqxHޱc`Ff5O9onifWo<ėo9GH]l9mϯ;Er$!V5.ٰFC/ ~)E1@_I:4¾nIQxXgHG'Rsjt`e ɖYoj̆3ۖvޜJL1@#ٓpDR7:5Ϟ_:1E|9%"8G',xmk}-^Mư"ԇm{S\;L0V!bk\gj,74ĎˊĐ+Ukњk,~fq1N 6<$q(~@*Vέrj&?Czݖv(Έ.3'qr"p;o{l0\(O9d|c8dfm Xly`$ LU'lB`*:R]6U.' z)gȷYg'W]YW؂K~d8F$40C$KV.ud7IWZ =z]s ˱jw8~23,C=9.E"gH=iC_1!4a* MRpQ15\E-!\ŷu5[͓ Jjؽ΁53+s+TqLK+yaw I?x&/\nK: K {_25ZHw8-E\ qh#.Q=j^}^UkH1)\ g= M" FpԑJ>'$N` Ucr]PǗ% x4`>/}{Q""FՎfF<$ҍ,0aP‘ ,Mstt-};;;cPM cĥJD-BzCx*Cx8{*R!㷦'A &;?"b;6 ֹU8aDl+ᙈ1^;k' 3?2Q4=HtYAEszAܛCbF,@$o$6~y uLU_iєDT*cOt%:;#>n1GrBXT't ry[~\ãP WO\dY’kmH0U=s-H<h}m"K+}ZngW2ٛ'v1bfҖ7/&\7HKoRaAvv· ɒ vXd&vBS7RG>jYI4_cޛDӔj&7wz*ő}En6޳6eAe-#`Х I1"id .1qA2 GX*rfhw6\@6$z 2L]ve$] 8T(ET0LrQehKdO'l1N# )j/x|0i-qjŰ:Q^5X }t;YTliRD{H]^"ʺfԛln_-_N+q~%F'A6f s5&7Szl:v k^̛PU)o12XݟTVwE㠿R  pS|7NEQv RMY*,#ӤpbG$|5n`fٍܷ~Zd>"/r/[yT|D%ݪDz29'&bĔ;BSbYR[ PhkWeߓ4^35Sj7O(c3=\gFiϨḡ"\۟jYɡ~ꑂLͿ1~ ^=#B5~iw#ⷷi*0A4אNzDjR ubYHG<͡Xz L3KrnI~?F = zO'݇>@ޕ[4&wes7Z=Dƛµ ͹ b}aD%wK1F>TXH~JiV [Umwп@96H,47i2bnu*n0*BFv$@N {CeK^lO1…*q!w-BdmY /dԐi˽G.lBIB/V)P0 I^mTKh(Wt8FQ7]<1}\-('&;8)gvK΂1 ͉2[_,cnD;rNkRd]/L58GL5H >sCh7#/ )]F{+ok4R'l+(RJ"Xb[aPqrMg/Ij9L%|Ky. 7@uD$Fgw` r{|W4fj0 ʀyHO0<$[nNB1[wz1PȐ6ąô<Ѱ9g8ԝMMʙšhPwF,lͱ=$VTlf ^mu zeC2ME`%e |z U\Bk &YrV8uw.Zne"u c_2:go3" >ТeEò2|nT@s}ĩR˵9P^R |E?tKSpaT-sr:,Y0b')Fī/'x )#> &W IEҵ UحTĪtitOX|pW^AP Jt͝R͹ȭ GlLQIaw/lg] epJ5/$,7O| &#lHJS;qYd. DTi7w8c幱g,wFVѵVvZ~; |;&T^}h+V{#h+ܴ闋}P\sE^u:M|ȉ~TMET@OdlAeejDTm}򼟓yoDrq)0˸5kS,,uhwJ 5rM[Mz dJfvaO"]X5t _ LOmBVَU`b_oR*u^0tCdG9*x*H ߂{ey%6t -Mɵǒ!Jo%ʡ޴!]P+|}W_\;0vܦӁN*uS%APTJ+.#d3a W^(^AG#8u8y||%$tS+eq}t"Fʹ}ԇM敔IaRNS ?"rBb1UӭVO(zSA;s,~$诸Z)NNnJ0 8 QnS%a*HF (%#$]ohyCI6j=aP4}}A(i)*XF/#*+kP+ht?pK)˫S"QL/ښD_}l1ig d=?tX{*7T(SC*4=sN,=cծ9ZbM[WgL AMYAU~ENruvMp ɯJyi לݜHZ7JqƐ_Os#Y/fmRa,N!4k{ntWM i/ ȪHThs!)`f0M V yb7oܕ9nA*c>INQEW9>7>]oz7cȁJx3&`tàvJNw9/cafGV/cOA b &ȫH=⍇7obHYTDW/w.6\F|!0{|(/! {j %8W =E3Ex]=)*w~?][q96s'9Qܖ$b63ݎ7CW"pg(7H=j,T\0Z DN;q0KXO-,/gFV. NIոpiVƋQgۥք]l*L#"k[ِa/G 5"i!^nYpJ(A^qm8^'_xp\Og| xv4x9&y]_>خj㇚s1Skߘ_ꈕǘv% e@D6}eǼstTdhR hP)$Jj !8l5`|1zshtJ R]^]:rZF8aK.OsJu7`;S?6wvҧ-ʳ>eqV0|YHU=X3O+gRL'za5lRoT]Sߪ!\]כ?ΖO#t&%ĝKUU_]qJKpq_QFC#=;<=\PJf~Sg)EDMUm)~%`gvn"ji^GIJ0M .x|dbX۟@e!(C6.ݩuטX x+d# .*i9s1ΐ-K2ve6|f>uJ]閠Gh&e!$cQDEJL;BSӣjWt69 0 i8ѻ]DrNz-.G*LrΣi!MR{3*.vߞVDKDU7h=\'w3G|)3Ti~<Efu@?&>^3y`\W[޾z1M-"p [HMƌhpD(|OvQ,La&Dy$E B`uoJ9ж`z~\k?m#?iڏSjgR"êOVMCB,P_%ʅ_rUN ? ЌcTĥLxz0j+Jiu1}l8O$.lz= O.fQ,MMsiEuϸ`,,~TJ+5l(tamiQG?(7ܲ!!? tI1in"1#v@~zH=F246y QVQ}&V\V{߯"w|HSwTW9P7t/ XN"sI Oz}7ޜˆ0 CW. GJ'$HJǵW m$_# ~q$\yb*$UЂ=..rQR׏]8` A3ˮ՞+~ k7$G_ y\NHӖABFa/D;zVū߅{XQy-DEXe{E5֖~]K9CZbW_6%?yRveUhYDB 8Tt){3l#jߟŐbU P#X$̤s{*[+VNER'S\K@N\;l/lDd/$#eqg@rKrna@oҤ|ĖjFJb񡱙ߘqltS|J3o.j^ViKvE#*M|jkP<,p齳&FL v3Fmk1';4Q]+Qж6_ځWr6V\% Gq}z~"W1(\ ʤ>#Eu:Ro$- p~W.S¡T9K̛j~$24 ȉڈR0VLp+'#2`Oj̍.!׹c(9tW?  g\,%%?`z]'lbw̐GN'"hga{je%ue/a.!SxiZƍy[vOΊIWRAgG_)ymcƧxqEڎ6eɈ+vֽ1Muh;a+pc+/!lj0Ju+&&Rըd U~E#uk.W`KI =ٽ6lpizxSit{0"TmeҲ8^t±ᗐCpT,=4ȠvaʡvD d==x^3piKuty< (cEWLh6xZR;怳igĨь}K6/8LgHC)ܰ)pY+fYt jwq$Fcp#dw(Qg/z@DJdT/i߸k.uȱnRqP xp(KrX!`nZ\L0Y޷;?N=.>j=plHebn$3 Ym_ 12GФm4˂%\f9OLcjjŝ_S 1N BMgc{Sg>HPeGf]0H$ym.޲< p\@%4ӝ]hF:~ۍOE]9gyn^d%t_p\ft0򟊨ޟ(P/"/aqsMwJvw6Rڞ"b O)18$0 $`=S%܋_#r~Mq&NXB\Q.2w/]3C92>ol2ķN /P[ndԳ=eb}gv="m{hO2o;`y7~bT&*Zke"좵O[7[Ν72{vqG46Wb ڊ ) mz0Ic/r$5LQIv=LŎa.`hcWo_GA,)i ,ofӠNͽzNX7`3JVm\՞K<wuE01W{IvJk]Jo5K%Mrpᜠ9ԝt0ّ+]A [W{341( k]Lr4KP+;)6+SQ1T; yİ-Z!&6`,ɸ4yE=PK L-?xƉvϸTZ~za%ixOU5ڙL[l ٹl0MWrٰq3Xt 8vQ.xANGï- `g(}`_0Lm?'&n{4ߪ^ۮMMa3"@dg eZŗ?qrUE;(ޜے,9J~~q^`x㥃}N~^=_Z"hQa\VdG^_G(lq y&<_ʤf7׊ĵljd shYK~HP|JU}aB[o]FirsR#ę|)?Pk8z*v㪢Enqg7}܄fa @XBH"θAVp ;y xt>iΏ_}/h^`,ە&HEp? Q$B} 0Y|]i"ߴ Lﰬn}=*do\O˹hR}ҮTD:YۤXok.x&Vp9$2|^905 nnk}( &X\$e6dB"s`Fh%e)mͥs=)9Rt_/bOWתWz1dGi)Q/֡Ƙ/ .B舛V8Ugj~]:/uRL4|/)}eJ983M+֪ӆOœY:…\ 2mkR=4+~989vHH#xurvx5*T,F -V47X&<4zevȌ.IpETC@y?|e`D22x(/m_OKz|x2xNBbW͘1B\8~ر9!<`/K(|{&g7%&;hD4(po?Qli*g43VbkhY_OE} ?$:!-LԿ5*4pV5k֨vd=p:Ql5 JuuzK6̳|Vyv?q}>R͡-شQ'J8 //GId~6x;Z FhRlLfĘh%z9[n:tp`ޒOGB3 ')Z$NSv*tN@G2NB?@cs~]K[aB2mwnjι>CcBn҅a>ԗTR}աk7R_C:2Ǻ'zD:? lyNXw?o;d?jMNQc-&,`g(@iKp\j)p\4Beo0݌|Ĕ$2(攛{u}n8SzhBO:u|,M+bUՍ=K>'xL #![4f?zPhx60T㼊''Lˮ&T8VCX[rTܾ@~#3 TxԋO@O=i0zWs۹7ϧa̭xvYO֞*;iC277@HqdǦp8y3@& Kv3mfАdmgv[Cw7ML~~{hΥ݉;=:` xڶ RDQS*M[kR ຾q8lEEtV(O,ґZM̢[*Im.5s$ 8:Ux2Np£=Cv5y1ߠ :rAm'aHKj3^(dgcqLŒ>c:L)Y7r+۬Ñeo A7=!Oo;y~q޴tmB krP9 B !˄ x1z>!2u'ld ZERx;ۤcuF'UpN6xf_1F@-y𵧄{J~@\ C~ИM$]:ٵG)gO Eg5A`'x5ĉFd!P ;{ fi $NT xTb{[䕞)MH R2xK9\EY }Q G(M؈x E,PJp58DI6!LaaG7g҉2K;ҷ O=x }E~ܝe㦿qAb@sYUvdNg,$(Ѧd잔a(8unnRݟʱcRgCuBߟ~9/fsn`KG2;PZ 3(2ns¬4B!4(G\u9rgT}qT$u^y6뙃1^j]!j7%n$.ʖ$^2" Gé{"~?=!:n\(̢gQ͎)H%oIhy[{shBXgIMcQ[h Ib Jfַ?X M8ԳO(!z GyrBHH-"ⱉVDwa7浊5<;ᲙBM%O 8ELj΍Lo??d"TLt P".q鞵Ai `U dT`c"oX xHE0 .O(sIW0Ǡ3]څϝO gp]/TWXGڐ~t>MI ]\|Q,OESu:k4w^Q5?0݆^;R5qGPW:laT~sH~%J|& tQcJz=kẼ @3JiښELG(cK4hӌězh$KZ'0e1MP& M LOU{Z"ƘifEmS{^呋"p͔k_3my.)uL ;"g_dG*S1 CeVKKWI!SLݤy,c-75/27: џ՚ԪC/:51@3nHXFՇ6\UzPA>hT#ƤDBPݿ\&Bevd{Қqt FT,#dDR,5ET TzǁKQRΎHM~gJH cB~y| w7pҷўk1I>òtN-ݪÉG- i2xλ2Q\3"67a,ojz}58EvcDDҗ!J>I6[(J\cOxW6`x2r4z9_K/W"D$i+dNofїT UcKg5Y!d5&E/-} e?>`#@%[auU,^L n Xt'[_B_X޼<6L5@J.3gT@0-*[iD->I ˪bw"VGTJOA!f? @D/ l?߂n$0 ACZ1ڶ_KP5)C$(\U%e_rkΘXf[>k'Խp\ʏ‘rRk/rPDqN$*(S<~ŧtG@V ܰD/F9NO? .n&znucy%kh\F'Du8Y i^kh YK,a-I%fhӃK2LgAT=6@bnז$U&9xY0ɒ }2'Q9hQOۖ2Ȇ9Q~p5[C^ qj4ЭT>zœ8;@X=oYo*_<}Wc'Nޭ--..KjϹ̌@%0* si@q( U6YDvф&$M&J9TX/GԊ)=ͧjV$$[\[1@Rb9I{cx.0( y)faw*N{g𯑀Vn-Q+vۊQ(!#6[Iv^&y/gMǽZ]֒ON4srPޑGMճ9]rWR)ҥT?nf'\л=Te\|O+/ȴ ? igGeL䲮wf,:ױqO&qؔv Ta-iݸëk&[Vk+V&7(6}b4E"$jux}Dccy04"r`{dC\6JFoys\oEdh7A؋?VS-,x?mST95R4؎k2?;= $hG \4\%Z3?%ΥO(kʝV'iM=yB4l]HpBNOS\F&mVfSr" =`h$ļ^1zg9|  +MegM]&KD8CެsPPB[s͹$~j; fX訆'',~XG]@Tb|YiM2Y'o+֫^z '[} }Оp 3/~6WK5 ӵƇMD9pGvW.r0ީnDYt T Pų} ou8`Gw:ޖG ۻo>Stg.P#7E#kLf`TLF\R;~R2kJBx)X3{/ ESU~6^* p.Yݸci KӢf )2?:^Ad&MaaqtKDh K58`h)@A? oD?n4i=EXUh1B6r}Uß(PKPj3 AQvR&'njRDvz8Ɯ6ɲ85 M3bz~8$wG4d|Y$%p"ur@o swUYi-TBb懩{v3[vذC9Yņu\Y@wժn3Ҵt\xSĂNfHG;a|^)5TEȳ+ eԄ'`Ʉ:' Vx27z?KF=Qu;&D*hy+W/˼hW(swړzvlr'/t|֫w^Yh(YG6C}G/a!kI '!y$ޡtYTg }{XGa4M"䂃מ_`ܗ{h6?˜4W3ҥaK:1 bۇaoWtJ;9:$ԉoelJ =Ho}:ҢiAF^]!@xV~*crmWXߖD"xi07Ö=AEwg$1咉38)k73 d`-N&q:g݀Pg{ϬV e,b8(nh,+ǔ]Ip|5oV  ErHZPH@0 R03Rvi_s.#Ud:jM7{:P6bXZN'၅.S|H҉\nlDt O˟03R : f s_>n?Z|Й2/;hvh|L.noNק@Y ]|{y4ny}QQ"(JǍe__jNLJװ8Fy#q U9h7w k ؀t:`ˉuPd+#=R19F<=H*7Mdon<I/W+)#pnnioOyJ)rDR;%ы3P&weQ% klB XB2  :HWAA8wBlbTrC:!$g̙fEqX!X4m9jcQRs_ gH$B!^kicBwx0%Xs$pK-|M}T3 -5Hbo7c:UrcRn=FBCa!Kv ڴ+Vqjj' <[~WW{,ȗL 5(fr]Za`$heh "_ieOB1I~p#9:[h PzKE- cxauRҲT*mv}ID=ȶiV@-O^ ".3 ڝ6.ħo1U<~ҡ#^ؘ<(MLؒ6Qϴ#\YyViV] YŐYm&%ȎOf6kCWģx``YHs # [VakqY\Z;C ){&WT߭i=(%ղ/U[;&E L /^eޭ?[IVmC e޻z|ҏ8E*EJW67N/j,= S-70FVaa ä] BF=V2 k>&14|u˞`e ͅ:J@  O<:*I }Mm @JԷCii~bG*uCs_9Ceu{rCú^#C4@zLTpdδi<_Ȅ h0'CJȹ hr}5Xb eYe*z _ vqYʛ~ HKߥCfe4^gRK>meavȑRZ:>nrx_4 "HiST :|۞r2=fXdF齚e$_ tY/=3=:g;f ;;ߚ9Nն}k fS k=VւzROb$IK ʟ'x4S }Xv䏺Ni ~c%-.>klD4?Jj|gL6 ~k4w]|!y)ɟfІMzDT@Z4<C Pz\wܖQ(i-/?qޫ_Cqސ>_jyKP(!2,mҬ<SZӸ"chugtYafC#F p⭟$g>A 5N7-mޕR^%@t@ǁ,TE-H*(T{75yJm,۶]%y1&VEۯ$le :ͼllțx]|;,M e-Hj@rh*=ͻZ B"8/FBq7_Ia\@FU4LFcp;?fXs^cxbwn<Ϊ?<; xЈ!`Fx*r6ftZ0)T 5ލ4VJS*,>ktRO+X?*I/úD_msK^6 ުƹi9pĨam`,~ 4b,lwӐ" UDr KBе)>jG->lfF_(.zFAXg\߻Sk UיִF*e6Im0vur#QRAD&~?'yb*+>2i'/J$U\s­ ا;]ge3@{ pf,{,KW;tqe޶gYłAKAgv}:]Wn.Nd㹆NJV.V 1>'(Fmh1$Mk/4}!D\*,s-~>k̅ajs(j^w^DCҜd~.+\Sr+%^*Y)ƕBDxHS0>kֵghTm4kZ%VE]> q4A%CK>V!OX_W؂h'f+8k ,946 uePfun'PDVzC>9+B \ss{"Vū{F\ ;ppƗc>.y>YZp 8~. 7b& sgJZ?6"gnA=0%i"wEc;jfox@\=a`Z\Kmĥ=l9j 40ʳԯ Ge.48 {0{{.] @k֌\֟k>N>>3F Wm.>Lן<~rZD̟J*)^g*iqgiO Qw;˻`G~^qJ/}Zu<s@w>7g$)y| *']\q;}NDRTo VM.`] _Z =w,OzYh2\A6= a9ᦾxBTdaݲ l"O)f}@&$rT4M5D!d{76Djp!ʰrǘnᴖDlfwexNS2:]5bW.H `ѸNT @\'ey`qQsY ֳ-iM:Boʿ-yãeݪ ״T+cRriuך2%,oO+vWLkLSƱ~IU(\͵KV7^pUr Kӱ^ޙ(!/(0$?n}cQNdO' P"kT&2C XWXiRqBލ X%_.1JPb P%CM Qʅ|q؇w&OT5T?YE>;>ykط7C6n46;81 m8Jƪ#OGktζLVɈȯ~IqBk~[0"gX49*8cC88dֳQˀw]`6ɹz] BEf^#u} o"W萡־1.oלL{#D(L겳גZD_`|Re}0in#S5>rgLV9F~V%NCi c],7 O:PTsN!5-|#zy:s[(ۦ.V~fY0'kqZ½5s,8Q?)o>jp /m M'z:ˤV/ B[9+k^ !p >| ª'>sE YKON'r 45]tca/Iy%ېc$`I ƎyZ*-R# Ne137͆ݪ|N+ʪ(s˖LxOuοLB;Rh9J_(,NnxZ\@ha &92dMW֧4zGvѯ[+/xC@= mLЎ͘E1W8W;"P=)tKz^ܣ?ɼ~iCM@ߥ:sB8Z/A~hI9:O%Ʋф=jJ }^O$Z쀨_J~ {MpDC̅$48E@{ج\޴!7PI&BT,B<9S^mD7{&i۩e "wϡ PdA''<]XFBctZn*Molx(QH./i>{M47Y̔XofKC0-i]f"W:|P|❞ oFWC[ d%KS~f;sz-M.$˘aB!,Zxs'B=~M_p=WԄsbܝ',񅕾T;ҷ! &~N.C^zkvr!ą'0XKl(pP\KKQC^Yfs?C*uTXxOް[24.Ac8߾QnʕE1wh eEIu囱zil],7!Wkw_R@BmL,I ]<45hoIDN> zYVct蒻|Z0ξPfTV'K~{@ߙXMFǓ[@גAPY6\`CɚH8=͌ Ժ 'd!^X~!0(m*2_ E}ֳ4}S"Fc3ށ$nZ,{Qr@tWXgF˝z("߈s^Kf[b/{$]tm?|BԏGQc;iwY FdU&Q=LL(,mQ/g.o)gӞq⥩ćf5$ru/ %5HT&#٧HoPã6cg@f/%.Y/\_FW8mT &u݋Ps7~>}UQ?^2zTM"ލs0w8Vh/篇I2@!lDrɅqIǭ.u@l'1aMV;De Gl &j Q1ʝUsNv|cӛj Y*>8'p-s;\,J^-%'r:ŬVb4l Vr6 i#_,ȍ'+mS:N@hT`L"g.nܓہ7y:NFt ;ݶu6{%m;=|X)"ti iΏ0w@ǮS9!` 4I `T-EN\&g,wgj@ҿG(!jZe0>&zs\Z\@J0"yo w2_TntrZ]DU4ɹu ^O)8̰7)f7&1 T[U`r'+/)_vLd(.}<HwbR,!̏s .Ů䠶FԤ[pA;NҹMS*uXCNgk笎m~G!tmDVz$j<9Ai-3lHM{1~9tIEݑW2/2::^0,(Y! FC$ ^.6EfVr 0$vL B ]A›[taM@0EtޏeY50tV$bT3L3Ei..Հ,,+:)vԏ0OZ7¯?Z,Cw@%hQiy8C_*ߔc2C׉QA8rfh!?+&J2=td嫲Nh"F4G¢RA襁idbȞ\ -)^2nӎvW*587N֨Xcx|=fI(ovO~N$ˢN,ui@OM r!w: op@ePM0;ɨU-|r·a55/DZ v?7pS [Dp߷8xֻ^ҡI8TZtXh҄}qs`f 89S֝@iEuBZ#|W݀o.y)r?B#JQLdOtKjHJ:Ίt)#"R&q8 QE#9`pT͔bme>BS6]⾖I`GlTIU<1,ed HڌD+cv]?2|d=m ܕݚ%y5使CTY#sϣS0B >w7/؜qs@.l{0|丢sXDEMutDqDU3ހ$Gl9VBQzG?TɁXHsSN{1q]،`;0\Կ-ldҟuY&4|[J, ](TOhBKsDR,`,F}8LFx0_ eYB %.؂*ٯgq,PxӑSFFq]0VK(j]eB\!tK2!^9Mkֿy焐UQuC:+seXsN١շ n ~@~ZVBc#Cmj%m'B"U$jl7Pnt$E#J$„_"f]@2*c> B۠y(Dv>Wd.>췥<t L+6F-Ϩ;2곸 38WB.IEyͭt]E}P$+Vls(} Tu j_HĢ w|OIa-^;ݎ=fXLo'"5v, |xS|߂7ǧ%~.1e ҈jX]1g8o2'lmLx1$z3v{1H :s(&v V#[VD7`U.8՝Yv0wӭ7EY6w9&PT_ؙ·Vq+;Ʌ3*Wru5EkpxSAf@o㙮t[>?eK3R1 GX9jQxJƷ=ު^Ke>\~#5VAk15%҃"6lKeXBë([,vߥ~Q<: jdLQpi .MK VC' -EDmjN6GvkqsېfgJ^< աb#9DN9{)"\a4꒛mgm[ vnc _A\ZzO6;ݡg9ԓZpUxRW(-Bc^hfwȥKl/($+d[WýP!]Zdʞ 3Fd>ۣ,o kEXTRbNwV^{&-fή=rasH ]rT{! b7;p45FZP7 )4 r$-[zYʘ_N,YQ]k?^;ؠj]\qH4jumgZ>.Fќ,&7"\]T#r E;r|Ѳ7 nP1jfJHzwt1S1w}0:'# t49:)JRM< RCu% dԴ#$1D%Sڂ>6rO8B_~ +{Ypx6;6Qgv~(p hIpXBYQH!g휙x]4(VyjM~&M$bꄅ+~~o%aAwՔndYb{bV&*uH:,LFd lP8ZPvH܃h@OiF0w1pm!@LD.|?iVė"~װ _q\zTɦB!R?PSҡrLT~d83׿!fOL c;tľ;$/~Vl]oQwˆRm : VP_"b\6o+u?>bC>,iGhPzm[@&oV]s%ưOQ;{??'xUI3"F,+#6k|+vE'.Ѝ.vR#L%8As2j/nvT,6"%FiXM$)!Qq=yt3aBdڹD{ 9Ja><?OX %͂ZU56ϪGEe7= 4d e#c6qV6P#28RQ'\OD:.G#II_@D=cX'*?ӿ9|o /@urs'_闎cE~caGh6ԓŬG{Ms[a!)L#.H\juaYsq?fa,mud|+xX8+ dZJ;jyNcmHmєVeŠj*mjz&(*ˎ̰d",-EneI%riMP8ʞ!+Y시csUzۇ]{cd mlˊ׋,x%CqګJ8!!!7vnA.^`KT̴(Vq!C`=T8-Bjv[rG59% ^fB1$%v&>7{ySjxc\"0‡Nn ̄JvUBތ) ~9  Ipp"r,) -L1Kdgd]\ӿ!$Գo͓=;GM!F$Qy|O@bZF"$TU;Jp}<͋={$Ad*{z_i c!-C ^' @w^ o??ǖɆM]3,A:}2@rۓ>Dp>xaJ76S:<.+i!,d]"JvBHg@*&a/ڷnԻ/&zВ~|LNQҳd5ET"5K4[A]ZKwgz~L_+jm[6&ESt yx70[V)T FRSs#Bq.B94;` Yi|:sa f W<9 d>[2Ǘw5n)u.[-6B9QÞ+,W{=f8QWiQdM?Azlp3~3ymV˚v7(wυK0{x'l@3iʘuuAw`[Z"%愣M!/⭗9j?T m?mBLGZ5!N `eMoN|7CxxZҟ<0&NGĚZN w,' 1iTY$s6+=)@?_9SiR{joc'xPV śzr,xs%S<D[iRkoيd1`Muls2q ,YzFf6UgFNM@4#BZ'7ŲՀB9jK!8縫^esno׌tE.V%~VɨeL5ٴ)q1خ|JHgϚ_;׊6<rIURxpD"ùJn V~edDϲ H|` ǦmȚΙ1pFVpr&7,#˦ӭx]>bwIv%9E)=`'s dqaR(>ljUWtȯ4jwB6[-C.ӽ@`w~"GX/0ddPu "SY [ITd݋?LԸE.ߞY Y`7ˮ0QjoH{ di*ѻI !qL"pQ?>E\[z̗* g]: :vCi95HtB\ad>`$KҪ:Y XK(Y3Qjb߳e⹧g0X1 vq^YWK'ǘ mkw^J f{hl>gP=mFą\=S,a((G_:an0@K:` %ፊHEX6g>%EB/Xcm|yÅݥcv`qk_U> XJ:⹯{tSؠCK0Hp'-\]=9J4^^"#Ȓ<]Ճ~"Jc;0@0)ȜJhuM'&c=-4awgLH"W8l| 4HFS$ֵSP"q9i8]kg5y H T'#maڞU j$}UMZ!07Q3=P]c_ɦ4c]҄ i-S@ 'QBaٖ&J+2=\'}BE9'iDi #c&p +$a1:۸XuNC29ȴj.i:ody؃ٱ+:a gL+M箩8 0J?q~WXD;Djc,|#dp7Y(iw =p1[ hRKA 1sو@MHEan(+" EN6D*qpeQW:0A*(ثVF0:W!hW4b]}U»_A{⋫4N; VD*Ea/QiN0ͫ \0KeJ̊RyC;^s"7<ʱ*ex#^]cšaddᲳu'NAt0Q)pZ16_0S&c4ӊ_RFU?Fc^Rd$u*yE7~gFw%GAqRhHxpBLGӵ}:z񉓺Z }KZTK{r<}0[nJ qw$PP<8Z#L_p5WxpճF!]-uhjz>fX#!E?'v`+j5āDw ܝ'@stU7|֌ptmIѮTP~US@)C ܢDj+$yE_.*h1Dq=# }T4_چ ay0\)takΌ/,/ö2NT$7&`ej  oqL(`I @:$"JAX ω ź=r.GS<ĻSxa|H,Tw ҳ{\yXᝳ˅&aH?pz8Ayڨn/]5aQhI8L>;<j! ܁zQnf`ZJsFAVh9)vqjg5E-;-aHt[Fޯ/_QA%96*~Be);X6ţre|3AF!<7k yO!%Рzsn[pG8KDlp'O`Wb7& YGM~5L/3byRޔ.[tXYZ<}>B~Ŵ)Sq,&OuX/ 8tQAZeHT:Y$WMc"φ/fm!kw *i0(&I4msc% 97bϤ~rwhhV2 yq5>\:K}AD}?4 vY hFİ%/wnhd-Ĩ1MkbhJ{Pa-!"$݉k[2K9bȖ-"&<TP[KK;^̶Nn@KoUcH7S=s=EA#{LЯ@W2AodPF{!%Ѷ~goաo]nUj+k` vsqΥab-S6jg'f|J~EiQ! ǸCR7nmrn^xLTE]荢MٱXGe9xl 6D/_ H,BL6!_N`Xx:>>Ejz'h.>BR=tg)IHA:q4y7CD a6m."-Dwn@T}Ў:ˑTV0Et՞6G=˦k<J'&>64k:3-3m1QI!=2&,Djf|&'4H%|{3L*gA8 o/1%*[cbL!72I΅utyl@!dž;="?=a8U1mV^lEՆ[BRPXGZ:Y 9Ce}\IKԯ8-Hsjڲ%3 KN?A6%2F27W±)y4үʠ%oݐ&>_`z&!pxw&9:J{ix$~TZDf1?7vwREQғ\G|T:-N2 Jȩuoawi7t'G2tSAی!%KM FN2F󳻶DRG< LQ Dg9 Wx~~pъ~H1'C[kWt /J59?$kHL/I#$&LxJ K\N*d*,NjKrd*_3?qxZל-KM0g785I+Zv{c7#rݹTjHfbS}GJ;R%9hC31gi (g %GU)y HF@Xn 8j?A;|e8,vC6StK<)W e?U1ybajh8Ʒɵρ۸ w}<&uorIKS`uU[Fo"8n}0 A=lL<12ܔ/% bWd\%蜔tY`{\A!(UAcR2 -gY1h3^ƝHH!f"̴m͏1]HWo3heZ/"̽#=v畐1Y!=*"?kqbe9-Ww3 RYbzRݶwň]A18?`{L x`aZɀ\NI~cVij_}l2i\]py%2c+_ EMT;RfhQ^x'.1]܏89zڹS)Z&N8#ԟjm‹t%WW:@c)f{T*"@p ^3Zb%u/E"_SۨgƳ sg-؄Uù-eɣ:SuJhzþqֽ#owr 汑=*a%rdD>|4볾~6ptFGշ3*t-pP+Db>E:_C| MGR*>au8u2P>A:Zg]m3[o;-(b+vjz˞lr4w% 6Ȫ/w9>5@zMW !Sf6bM!n荃[fҽ~gKe7{Wԙ241V&7>Z9l:wP6a<2Q vCnEƆ@?b#R(͞ ܰ|ztťtw#׀O%cqYLEmcENlwy.=Zgrܽ0{Gby2WIeq@چF?dP5Q_}"!3=&F^ɸ'7{O{}m )aC`pүOW34suץKQGmϫ|֖5*KfL6o@ $'C\Rq_Ӏg'S\XY^*s`d)~,4zDA$Þ`6^m˷=2UfllDwP-~Ŀ3F851pCǛiz8HQm|e_6v/ӢT{;q}~*s2^lxYx~ j{6H7 o\&dZbx84z2`l};Ì$y`D޲K(tf+xǎcl$dcdN;_lfH9)TȏʒA/`n^$ì 3 oYM,]G^j0rr֝2D[itOQޡk i8M*;2*ialgOՉvt pqDi< y/9"ro)_exPKռ5Qb, U3iA,j/$o~$Z~P<)j0/5߲pA{$ U~¡(7'8j&R ;x0#2ف)+(5`](y";B/"]z_'28?d&3a4ר>7G ?d P[&HT4W>d6R3a֪q1,kE~ 31Q]`ϖTA*z&m̾p`]<eturF 1>}xFwg?e"7A^Qm6Lb<} 07e_ |<`J/dC4jL z[{c+h970-5E}wӅsR|?‘[m!VYҵM9y_gA/zJxKC)N-dNл{Ȣ{H0iBD7CWi+dga XP*l~pe(t3AF#N'*l;ŷ^}YIP{8BA1!=cchWX][.H_ +<.lsզ3WࣛΛ q `6.u8%n5bltŵg*@rwP5 '{k8J4@ IZ>*BG76IUx%3TċԤ-\Tʩ Eo /(/ Kzb{h,)NiS,Ohi*"'a/ߨC F6{vhwa1j({Nd@qOez0ë9T& i)5S>"}q/%2d ,8-<܉v|.ѢZNu,E,!ɹw}q~n).!\_ѻ|xB(P07-]i7#,+, YTo%J)Ga*XqHԈE(g'"TH?Mf#^ foOG:¾*!#'Q[@Hrc B@R{6{ G${6Ө1|Em P\0Uwr1A1bDgsf` nG } :uNW*t^Zs~UV/+ֲ nc Y65Q~If\1׆'s!+c-PըG]pl:>x$QK8L**ś3펥8>~剿|yѫ֒eQ̪mU)o&к=eO۞>_OuOb-:Ay6$.cEF BdVlЬp-L}ޅy5%]cx Qs>9Bp7wxzycTHDܠ? SW'JEPɞNQ@ LLQJ;ACH6`v,-ZXǤ/1*+8JX߭3=v5Q (gl)H.qxY@X:hAsj搯CЂFQog~jnSV@'Vrj{fP2 z`?M)tT]JuiZW{\a'G%gW&\暥NWE> GKSibCUCh<+Ji'x$8-Z4ݜdaXHlo: rd Hr35Wo$>cqί{'s玙9K|&7+83@95ap#χdEVzU nO.5x.ܲck8m݊z*]6g[УUp<;)+on1uDf0 656Iñ=[Y6b-"iº"6 ]ʓT4LQD4!yN!,OyXbR s4檠4ńS?Tq_g "0|D_B}q'Sz/EUp!d+=^ !G9yDm-&D|QN-EtHюRx y,(3;5ɛࡄ{TGnӿ ÷DILI/Ok{&̪ YAG?b 9_ =W43NKB^E1cxaFSnQ8Pw xfEoܯ}-Y(ϔ1̣X.yގ[/N  >* ش.O_^% "Ԭv&vꥲXd_G"-V{F> < UJPNneȵ66an`{㮿9n5c i=k[X ɅQd4fN؞?Yn&+(FwO\2e~mJ?@-õp=HQHT–zzK>.|&$ja|PڕZZ o)Ma(N;*/\ 6k%nAo҄U{*hU nUKWOV]`d@h^^ ц{U֡t ZSsX(Jߨ;bg/dX/S›b- ܑI-ZwF6-hw^Kz7..(QVI#3.^{H5(@3(Xm ;`POs>eoE.FM_pQi߂*X)q"Gq oIM_i> H:ĄQ-~5@yEj@Iji:씘д?fݜrIC_E5]^+I"Aer;œU[*cs-ĕZxzǡHrVMg{hSbFвMUe @-Lh`/5Ű^ eر"|]ps2 ~3j 6Mg;=C$zÇR̮$HoS'+/#V%5ΞYO@&5&u~~3%6UXs_9fA=ĕ륲ؐ`R3U_\%VG̈́ -<͈z3FBµ$QÈ)DhfR +ĢBdWg5bWߙ!ZA(iZe+☼.޸)I¦` 1 w@^e G?3+N0u6eT'ZO%y-* "hg@.a3XI\Zlo5zbz4+k{ܯfe|~{jX=bL@L2fЛ7 AL^.qi~cC8ÎLؓlS!iP _SqgO#1WQپc_k 6MRsvA6իQ ď! ۔5"RBֈ.Vz󧸤VU2砅turF7dL8JnƢ4\#=W-:}8%ADK|I Gm1z:a\3屚=>)цv7c%y%d `D&8 r6Λ .eN(ۓ-STj7a.Q{ܨë Z[!oos4U_ET\zʼncت+;н–i;!Ш&/6Z2rr F,0ٛ0Sn:oHDxN?|$}s4.ȣr"A1R@m# X"`OV(17,Iڦs"?8j5r̝.bg01/ ꉍAʨ& 21ZChk28 11>1dkw`)7BTɃU,ӂ+s^ Lo>[ҊAHHfĝ3@ERX"jH6Q~gԟ,JNpPJ(BZI^NgōӴpnz跋@&\H'j;N=C]G%mOm*tf Ej pX]^ V?_/LUOɖ$WcP!+%3!'}|uKm3禣9{`'Q8m RzaCQp1'ڿL*p-V塵ӓ{x~|up~.7)h021RW3 )5f }<>oq9"X Dφב\79{t9n9Ffx ;[% kQMUA x-Po! TSvƠ%X|Sx ].[ek}Nm=*l*xGcMP%yfpZ`ijEf!>|Il:g{!o\Id nŌuw!bbf <Z07͐ ؚęDl.[cȉGX}*{[gLCJ~C4l>ݭ܅xh1ZdJ,0"ǔvff2S˜YoI[ZÃaT<{a6 (,\L!CЅzV)ՉpO-;|XģCXA 4'z|";0}sZwT`<`${6JjrA3ܯ6LEeVQJ* R_1]x1ykMɯAt=%[O>(%rBV%p^[Q>򯓰s"$x/qVNjه$@Ki;|\,ꀱc>;K*fYb-,N@#l&AYUgO9t܀µ^L"e8rʽN{qV9Gy`z^s3 $*:aH @5 ͐qY-{Ơ!16@'T| q!TNt4SoD"TȩAJ[ _tzcu(uƔկkk^JSr켰+G:2E|[җڰD"Up5QŅfB;ʇY%7/rQ?qZ`Tqi0/y,;%?ɔZO7tl}L(}"z}9L4,d;Dy!11!k )  iC5˨qMr뽷zւX4y N'Efl+H8'. mH׽ِ8'#.c{Xg)U.ff1j}\CNô@ݍ; ;H0s.d@Y;txvX6W_ݷ;yXxcZ~kj^p(#:7hL[b՞3}دx c>Qލl"GڤۀBE #j?{Xeϳfa<B᩽n NuӘdpsbg_ x"+|L9g4DAK<B4Lg=Āj[Ҿ>wԣbb`4_)Oek\lӷZ]pvi5Sq,]}X;13hu qOgB 4ʊI$b+yŏ85ɵG( wrVi!+* b6:me$x_[#YL|M}_SGLo~@w|dU +rJ8A8h:een 6fl =ڲX}la}+X+Wݐbgʎ9Ȋ'e#*Aj5srR%&?c!I DaIuۙf(E&uiIB ?<]õ@(=6.OJ)HIB \k: 0f ytyG|,])7YRKi9092<h(T)3tۘV~"x4S74Z^X޽k 70 tK)UTP*iE!b,[Nɱ#M"(PDO;}Ă,sJntI-j7GvL*Bnn,WJডINo&P@\ji?Ҳ}X =o8d#.c1Q. 5R5 ʈ$R+ wo9 4rpW8jW6UޔGLͳoV;"W+>7GZ]>|rymȩ E IohZay. I 'PHakY7)҂>Ƌ>sŹfE?,Pb|s5״$u] õK %gy LDl2./VReoP *Wr]Mb 檁9;(HMAf9wH "g!=Ku ‚z@>TnUo@y𡮺F` ̳8p(:}o(x* e0y+csԱzdXt VT!=Gv?fCB/@oxk\N'NV ًr\mq yqH 5 ){o4n%s)J>&?6Fl -}p4v#2<'&3U(XnA 0PmU=; | ш4 1و2D=P^~sgYºI~ܷ[c3} `m;^Q'8F@1jEp߻Vˏ#4HGϮn6y6 W "CpXPҊX@"EONGǿdgZx-\ʛq|43ڟ D`1Tz"@1IкE#?1-j lP }/b(ᅶ{QqWZ~lI*˔)YzWIY˙<EwڀYGٗU)"f֧5곦m>XOJ#dz,bc1̢ |Yw7)!DL3X=G-͚>mJWfdc~4-(Mv7`oN'~2sEC+8de ٽr$o.Z8)t%6᪑* ;t}ၙ{G~㦒I OͮI e`A+V6.CrKI\dzVllլ+gv ⎞3A"Hǰ :3'`!RԪJW)"Jzo?S@).=t(Sjxխ}q'5.HzTQGz6dv0 I+ 5tTmHLf<7,[]ĞtBKue%tj5 , ^kLv-sk"g2M sТ63iŀDɍjNf&6p i&afR/ -pC`ɧ&Fo!8pD tfrJ)d38KՐg 2Sӊ'-JMТ}ZuLtOT}5O:Z#MЪ@ qy'8/؉GQ j*Nv+8d8D @Ky_8_ς0WI.}ߨP _òL;ٯ%1R@Z"t3LhDgf\-UPU[x.8 %GZCRP3r%{7gx!fp#zԎ#/pA#ȡLKh3;#89e'VdVTxfZJC@'%:Y<4zc.d@ {-};ޤ3\nҬo~㥴,nnD49e$) ;,1 0(MܯiSS # :2VY)F j)r~HJGOPݕx%9 3g7_u? sɅ^IY"镻F})*f*$[ֵ'A4B;QbH \@ ]yt-2jqkh"[15O6ga[sĽT  xbT̆Opdvq)tݺ$Ɛ|VMg ?aN}i^nt~z|iy<>S |Xn]ayZ20>ܙ n֠:gNG KH77ćn4 %cP75#nsmɶѝ$q g)2i0KWx@0EFXSD` W568Bך½]J*H<%^@EMZWެVsF~m\hyU;/n$ ɘORC0#ELw(`zc+^l o8IBкgmN$FEΔ)G ސ  Q$sx2LBӷ r܆6ɖz&}y LDxpdE ?v/~lIJX{pI7(-S1jد$VOPxmd|7 `B@MA6 ٙGe&,JC95ry-fFblO(qN4\͓8i je^Mi_W+Y̩'xUЈM<S!L#uN=7#8-㈀E]ytRLJtHN8 D9ۤҹ[Хv</ӭeu9uOZo =v0]'@h:@ ߐ)5^ v^JdQu7^MسT[&(̍@&ÝLLһ2gqyO@A|Bk-3{r+ Eg{\_~=kpE L*"tj#%&m030uӀ8ky I$=q." _"@"d,@F"JS2z~ya=;{3Sor2YJ0pO*oCelX TGm5 Ђr"0dB"|#{ &4ӷ8r]ڸ)@I-Zfǯ6/Wu\{%`PI(%?rz<:rY[ǜ_V=R+/3_#ˬ-贷'p{Y^H ȟMFbEd^&: o}{r> x>C+T^`56{&SZ#ʣTmYPy@Cѭ:Vӊ^P5l|Aɪ'g eΦ82߷q1C&eة4<qB" 2ۅ@"誖:;T?(LzyGO?s˯T 4\-LHGŽRIu>JBGȘafl`\_z[dRzN 5&}n6d/)v#C5x[qIuJp:U>~4̪Iy+q˞['9ő] ,U4tg^s}lKѪNqBW ;&z3@T̢D_3_ }"|u[委S8KH+|}0 5)g g2e'):8m<|u|6ɸR8%+lS5^#zU"BTpqm5A&3-RH?zKڂ^ėt :r(N<^@KYtdR1QFիS`Ci7IXؕ(xbޔv xH/c5kΛ`_C,u$gGP켮ayjlWe7.䂟 M٫֮Z76tu7|<%D'F.U ՝yd C}6!۠,,rP}"'(n)5 Z_Kzsko`brJלvnbb`4bx}~i5U{AmZ;qG0=C/"u(Tߢ@*/x *~I"1':ϸ߆cwbc$r0n{s!fg~}&@@LejebSg`mwU[@MG-]^b_j_`j:8unkypS}-@n|`px9~F:9<_OYWpO\3<- Eg9 %GZ W&{>ivɋ2׼U ^Q4p]ĖjJqvـj}sfʝQrouHGwt1okTuAL,`W/SPD_Rؒz1R}U w鐧TTMҘWD L`}Inn . X]lֿ( o g"a<ε3x]a-@5K8dDY,I-R8RqҊqi&K̟RkV:o2ls6kg0 @})CJ md݋`^sK EK<=d>-'Osd=ff|:I-YfCi QMjτ08|%ӤuØGR٨ DH>l(w+Ij03ۖ5 d7lIWBI!ތV*dE pTpNO2߮ W.e-=zcGQyX7-Pz#[]F+b(%Z(@2L.&3 tR߫KP5yu"O>it\)1 wR^{l:TUP!1/év_\6BFR=8q`ƇÈTuWBpn5U9/S%fX_UIt-H •q-i3biM4HqK! n볢x 4i1DM6 oȼI+ ()_G^V-͚S)1VB˓⺴V5 Eh[)ۢ{g6FNmc^CmzN_*]P\b↤n# q#4#C$ q4',i\G;]O lF{dHæ!i 7bǓp09햧u^>`b+V=Z%*APe(o^0ՈZmq+Z@u{w+&=);2abSEL hٰ{QA)P~{?*-EYji箃晉5}Tѧ^qG5afDѤ>X߈PWՉ.dg{NƮC# eȎ&ҌxwZKҠ&xM䃆}AZ3LPTN#*ygBO?4(\?|̩+NBȇ8Bь펾xBR c>I=kLЕ3)12RQ4#HLnO#GP*!-:B1{Jzh:̸ z PWۊWRYju4NH0sR"} H袴Jݒi.H6lQ)&Oʡg@ޠrolaLJGraʖZ%YJrc?O.TǶt69e3>e1Y$FbW``ij X` ׸ $Ȃ5# y Mvv#IKkzh2"P˴!F rNL]j (uoqt|UYTfvFW 3RJd"?oJс?Hyuб$ԟٰ%:<9kSAp4O92WPO;ԁہ$Ma1hld=w#JW?\5kaC-B\a[ O8esHFmvꑘeDi^q/7y> j¥.➆.  qZ@6\YHBY;c y(`"pܧ<9=#5]yLs?t \FL^W oTٮѹ.MK: #97MJj͈2_yRR]u@Qf W!NH(pT a)G=ӹ^wC:l;*cCeR64:ஔ{0f4!&( O`} (g0QN8 $5-X/O)ۗ:}rMT_ o!jUx'^p &H\ޏ!؜iDqP|>H~ Ʈrn&h3(ٺK= 6ˀwՌpqƴ[BGF-M}Y~Dor/Z`P Dm#[jwopI( r!5~,ޥŷDEodTgIn[cӉ1Mȃ+Nʮ騔62ņCiVKe;π} Sq縕D<`bl8PrK]x QQdx )*Gt -HV{ɁE~~q;BpvI+P}O < 1}7|yn\<Ꙥb7Ij1r{:dqjWOڪJ Xu8C)ea]nub/y nvbD_!Ax paVD[ۓ 4 |Gۃj6t)^ഏ_^.CzYF7e+"V=j㯊S@j'u|u).JayK\zn\-գ<ض{ZS4VxeO{Ta[d`-5go@ 9 a8@|c C hW&Pr ;SJ dUL/ ]&fjgme'Iy/CS雳KMm];1π@2N aD{Z~LfXc{2;\+z1peiMŰ.sxVW>@OLz#ej~f }<@/aFE;%%=/Z? >c-32)ٹYܬI(MCf&<lbrW!`~/cfMI*дs"!oWu9{ ,Qg:zш&>O=^]j#v~RO6pF 9KbY8$?l5 1ˀx12vc<O.Skl7^gC^:lymvei\KKRɗH_Me*T> ٙ?pAhʀBJYOQt_hٽW[&]>u<8ecПآ Wp cO\Ũ9>/1j d[G=kL/ׯ| YzvYozl3F\<\[wZH(&%UxIl4/׻6$G\ CGlGʰ ɋ“0b%Wcc30(-k$rUU<+=xMᠭks`Tp'Xi:T}?Q{yCQ;ǤKd u08V-hIr>c$7wy &پ\Kx8h#ѼYĬOcX8N[C'nՀ*ϾqF&nhPk]2VfdYI#$9 {s&4H83n~Fw: uٶ#.~׭+p!ŋwU oNaƀ'4Z`a&}=y}7$J8"됹PӢn?ZZ3֝Z0ِ,66Μʲ"cV%/`zE4e|pT'H6d}VK/_pD$D6Ҧ "x^jn[~2,51g0ڮBC*p*{ jа8§ j~\ |UYDڥw1/]-ݠ4hUy> GGu* ",G@ `ź8 7Cc:R6C aD r"|$㯹:pcUwQ@8C]sXE,^ Cyu+zADǣ_vfo~ak~E#dw=c}٤pNkOG(5oIDZ,S0mDdusT z@Bڔu)닊"h.;8j ڵ"F3@x$.k1 vD\F9k(cӮW{9U Vl9YEKp帎ReK DQ|Gd2_x0! !ZrڧPf!Kz*J~N, x?Bn3{j+m5AWͽ;4(#]/TUʥ}$!f\wa z ~2aJX;sHY[^L:ZHYz9hᯑu> &c f^3EgyUR &bZNm Yc`Ax#GJo nN[wKpg`ܵnۆֻtaK> X_9(mۣε\; W]3~BMy&cMQ_72|"UJ8wu#fnidX!%Ȑ@F` `AoڌBz~.<AHIZU#&^LQX$G1h!y}f')f4ꭺFØ0-gp#\=Yk5T\A~e'˷'x=0 k[Y%,Ů5i@eFG -8v:,R?-9 փmfO mڛS [eBrf4OYg۟U MR%A/396g"s35_-ofR#!#"HRJ6xLCĬ'PumI1r;g0P`:%``ѩXb^!"Kd&cɡk˝'yv9Pj /z/ ( >:Ad:JH!t%r: ~,ƻz:ZeKmo-r*!|e!#PIJ`%̠c&e(DfҢ׵(0x3xIm9m+Hwr*ѯim.;@yA `%~ L :y"Mw9FϤڇUn &Hdӊv-l`?R\nR-WH(l#j(BJUh +VLn& G >JO_-?F}e>)jr"갯SK.&W%+W0!fO K(4 %+"`O8~-sz">Ɩ7?plZq"KȜ68FYC"o-a ٯ[UI/)r#b{d X,gLx|Wޞ7Z,5c /&~HyPAQ4mrm]pH=xվ:0y^9&?<S^K@G%xL&GR8@JMnfvS:fЖ+P6l N4YsbvV='l1."S󰖰c%Х2T]r ;1a˔)xNfvwM980Җj9Zf܌ŊӿA!uڀ;٧FRTGQ SJuρ b ޡH21#EB__oflHp;FqR%c:Y?J1>M7פ|c]:?'JL@k9Pd@CBrmeYx J,+\ <כ*vc=qo0<uA` 9.3F7=c8Ĵgu$X bi%$fUIuE>>>0鲊 |"Qna:{ꄷ_v&5 уvlSx و"x\={. ƪq/YQw:tZ:ZU|Dۄff ՍU&LPX5HY,-0lee`!Ͳ߇-~mc_8vfͪ-ަpbս;QDc2SzGg$.hwli韇:Wsv@&9P!'ETeꝟn5.s0S9ǎǯ\[[NAku6)ӋI>S^c}R.9̣*j(:f?50Tghde?GF[ݼ {ej9ŻrƦ,P^N󱧍ZA%mO!r& Iÿ6ߓS;",Qʡ"B 5/EUp%ɡ69K_4u>(A0٤xCbbtDE%9C*^O\f ӼӨFKZ,` ^(ay Jƴ% q M6$ sQ& IGϪg}z'zNIoQ-'[PT^3hn&&qs\ MK_3 ܉]}gG.?f/C\{Ep;V+дJXĹD8"5 oomqҜ`o=ę:t\))@K* A/z}P_O6ҼE ^oZxq5#9J=[Z+-S ǧ<|J ˅ǷS5:e1P *i@w DHl)\eo@2şڵЌ1r aX q6m2DО 8GJj+)"Y wT.2Jo5Yaa(vyk0/T8yt0$j3J @ۻ2Sc}:(zs9iSHiKGH Xx/=LzZa_簆R Vy"fyTRahLC3PW,l&!Z+Sjph.nH;kWTXSKA u)DND!q]%Ld_}#jքvdv{v%}qzC~dn8GxnufvG)Ѓ 8tԟ晦/4RL3xgLf,(?wX/Cw&m)2.f{ t}!'PJ)BdjcT>Нc>&tMe񁰾VLɰF?~_XjgAA:9VzZi,4͙MPT.7k-h'3k| [#@"V'0bB vӯocWWwgr%KU T,A 0uN~cq\_[ QVͷBO:I13Fܼ~Ag}K+EĀ3nH|&l '~IĜ׊.?S?% v=7YP=%Oԛn_f.'$-.@d/RU»طUp,'yUxpsSPn_*`v3 @%/8ٌ% ߚ|6-ě?Fm]ly<ŗ{4k]>kZM`hdDz7[Kn梁ax hTXߘ0!Ol>"~9e`ѰF2` 䧪 Kp%+\]"6Vg $0ڸ|nn?l cB/ł33>#'Y3D&UdIC[Cnj*25z4ro fe*} i5kJ=0$ ZAk`"ؖ| GuP-Rlfđɫ# $2Vkf[:PI4gL~t#gj6?hi'A Ttk7>=E{_p4spx ?'Or?͞c`eN^T\/qq)hhlMH $<>d#'Q1U6^O+{5ȣ4;,fa2O!}_ X5^i*ݤ:[ : m96ԆN@DЀOxj 市u];[IM.(9#Tq2MS(ZG]lblQn&WJ|ow1.0;a VH@ܣU{grĒ64&1-: [RȔoĘx3ˤIy Q-Nw%頎&7 @184.0.r+H;f͕xc=(1>=Mvj$:x\|s)=Z'/Dxˇd~/;4 KT'5+hJA-*FÎω?&{Q%p"X-q#|w\ ,pª$# -}ڒ,(Xc_6 w6:j7 +j* ۑvx[~D kx2&ڽjxniZ $2-ULm&qV[G9-τw S'6c &`)dx✴0hqEh6I_ࠓuYy^8jYUIw78+B˒w`K=A TTsIw fZUcگ*w<c|H܇&T/WWF::|ۺdKġY[G'*vQM[io4 >.'nG>i;w-dvj,l9s-K {J)Ss!wl(U/D%,4 lmғ`νUo2`bcD%K6b(-41'®_-Ԁ.ޅl&$&i,U]_hbrnvN\(fhVy2SmxLs0}Oc%7xH/.$j,B9kGJH9|Isq׏~q$S;B2|j-0*R)z FY|:-(SDIXU+sU}B\jY̿:g4R ,ɡ`]BK<#2_;Ѕ[Y{Ic$gTO01`,m"־u&OZ"5Kidj\xsNWE;$рqh#uƵӆMZղ1q+[ET$chοѢS#{~B8_L/i h#16忍eK?mZHj[cg~'2q2fbz*߅>RkϾӉ 4Q.{m"%^%U9))6ζ},Kbz>Fu;2PjlJu.}>DDVYHt_NHiو\yH]hZqTz`Swtr("0k^ ZtrW%L ALN'`{N3I,2ZuB,$lGM$og_*bEH 43cFc"8e@)/'3& ;=8GI}NÌyo(ߑ\Qjgqt$+TW&Q~v s":TK`w6&a%1ed2k~itSȄw-mB=\\Q>{JҐD|]h/˜gdhvt|톄jܙy( %s-Ԃr0 r}pUeʔG T߯) K砦 ʼt dAkG4dbӰۧ ~Nk bzZ3s s+vPeU}m ˭A?^W3zy^:n:Xl %ZS@ЂT!"+J vΦ;AmX p2/yAq.;0ՎC T1B!)+;ۥ֌9i c-LgcՖz!.wPY")|uyt+@`a5VN#y@!{e>S(]i[á4l E><3pk+tI9!^Cgo'浸2_2wC[dM`Zq73cdojӿ*Lζ6,_bbv" <3m`7T1sүCz7j z8izB0[ETqc_Iʯ eH'nK:A\h)ߐN t|P}::5 T&7itO|QKlewp !ض{|<( Z9d*kD/+q7(n bّ6_kfN6s-ުd"1:t I"I@^߇qv"90s!_֌wZ+rkY ;o1§AP 2mzMӏ UL]Aa엝|`~&ᓃZ{23H*.D0Wk2wPS'iGFz N_?@,5D=sJav ĩ*'T?۲#mmv#=ggwn B"[]0s4D(/0K"92Ťs(= .! <"AYGc8S=-՚WBk+ͺWNM=Zc#X[JI;Pz<}%['aZJޓ4;_gQ.͓+ Lq*q3G!֮}x 7ˤvI{>ar(gUv}m՗+Tjc!/7PmA,{*.TBpl'\b[k Ul+`zyO9C2XE#M/Z5mŁB+U%yaΡxH x|c|S_H'RZTwŷ]%7brB85>,>9g1m,2VmJa'-_U] `cqȊ+w8;Xvx|6b30>䞲, M.defcsyʤ,xCZɏYƺSUpW2v^,gt0W5Ltg2Ib LIG ,C<_#XUU%VBJuq*<>L_Mzt[끞0<.v~8çN)/pDyd z1{n' dybOP kgqlʈěxG͕9͛7fj7wy"MHr;T:Pi{JB޺ >Oerv>J|! $btJ;,Iv,%ʉ.~C/pdjJHU , +QxNFrȱd=goOC*%jT $@\}b:vWQ*6A[qg1]Is{i\rПX,E{q^ S6'y&-8D, YAs_xy!JX~V 3SHOW1 = +[ʆ^q-*rAh^7#IL`榶QN Qf}rG&sXua27Xt, Y# xW2NMsikCn;C~L_޲ a7xȾz1}8a25H#E4 C}z,xH16TӬyv[@| C#đjKWNbY ;;D)FLw47Ϙ[MǸ6l~tc4_Wc; 6W NRh٬F } RN+o>)C?l(Z!v iN\&U/J$ 05ߗ^ N,EP,9tlU}JHF(_\nD%U ܏gM/_T\KRm@v~rȉ"Qc'NeTf?3v~ʦȰ^yUQdxaK,t<3ы!%8Z3xhX&G!0 Z)2 ZiRM62s*2:G-ٙp 7 W i]L CR Dv@r©Q+@yA& TEЋ`&nO B< e"]3;ZRaC=>GSBɼ @@mGysip`aI?- б4eKriEz<240~o ߩY#z͋e&t?Aq65,6IB!Ԕ'0 WVϘ? VQOD6[] f+WtO݊֯;"W;]z'#ߜ[s,S;t>rpZH" 0Jʚiq Z?%y|(PH`w%3mlCՊ/9t H$JR>AuVstZ#U[D?E'ڠE9~|b(~pDNyxJ>fxݦzi-AA`1S*|Sux]u=gu㌦z> b}M!㉕rK uorpJeW:<9ߘ kY B9CD}Byr-ܥt5myTJ Ȱo_g -tR Q<Υ<{Ecr O}rsoyypoL@Ҕ gSVWbC# kUUĩUsO$࿙A,9~)yFPkaEWSq]pZO>>x*(YZ)8q`NAX.x*RӤѮTt`3[# fu:5Bƈ_H;)qwO g8h-CEkhxd>[(-СeVx+VT7;́s F)3XE*}Qmwg"{KahH(ĸNVqVePRpZlqB1NݴSfdJϸH=4ի"gf->mj}#hO:6'q /*N6]qU 4MJI_4[y׮e5CL%3}]аXX7%3i^xXIR(|Y@\Q|@δ͵Bv$1Yd{HPs 60t^XFC"Tmch&R3`9ƞvVqF?y.`(jWs+v}R 2N_J @qo1^ 87 i}G1MZ^މg/j>i9H@[ ?7Z { L'y)ԣ.ʆ cRً"#FD}C4ghW:ߡՍtbBL 04UP\> MεlWyn{n˒́X2I!lM5 W8%Lraeڪ1 }u*p(uS̡/K>yE_ꮿR#Bhh 2\_ƹwJ4^ļ:𸗃K`[Y#(9",s ˆ:*9 hjybu ˍexe%co γ͂#mcj̗ wܻs&Y(RR j~0č)sQNy2:jC֞{6Ad-HOUT8~vl2*^/#2*^}C1X~oExV\ jJEYTrAuhK/j̓ưg擕[pHyxeZ}S\=y [NSB>8:qJj?R.oGƺ1ѽ;n E ZZmsuՈ7bJh;BW@Wvu1޻F9g$";g[Ț^x fHLnQVuV([tQ)G<:FvlWJ!},~NQ|sPQ(12=1c`lJ`QK`y *<|1bO-+7>Ɍ26PNx![j_yn8AsN 2ALwyg*,f7+o |bVk19R~ i}]$aBONA-erceDoxX{"X`(EoWjfż$$Բsdn7^`-S"] N5j㬗&y2Sz =]}p#.Yn|1$*pߗ Wu{Z[3T!ݲRIqr~@J.Z&)(v?_9u0+c*`MZ*H.COOaj_+ 690NL8 U"M?pq^q|@*w0L^B'<-:.i&hu, n Ӽ]1KpK'L<ᴋR 0%p+HSX*;0)bȘ-zqtN.n=2Wsp.AABQi3QêC&3)=WAڞ "RQosyAF4 y!*kq&I$(`9(d! (pj)Rä?́]ic j "}Z MRِ$fק8w_|}tyzMH4DuޠZ [B`?BCΛoɿzyFpO7<Ǡճ u&P8g t6ܘۺ"(_e^~TZK^\PCc5-f(b\DUӢ8. XGc&sdQަ{wr9Tv&LlmVp)O08ŠE 6 *'5̲ e$A6bT 9e1;bH OZ&l8BJ,2pw7z`1hzu 6'/;u(a}|(k??4H々ܩ~[FUN Lc^h 2=Ua$+!y!W=" s ] r ^1M RO ῰F@ y/%7+$UOɔb .Ȧj¦w%/U+c":!vJyR 3Y"6f`)eq* ALimHyJO4Xc4lK|8C<6yZ(Az[ErPwK:И<ՠϟPiA-K§eWR}|a۪'sZ.Flūս#l3{wFXˮ0S3tv֒YfSţ[-nq̹լE̡c*>l*=!K% sEJ6R\Hqӄa\|Dꔅ΃%aO MT+̯=3@Nз1 (9_a7,Z"|Rx4gϑ)Uz+MͶ;1h0й%"+z{qI7%*s#TQf"PN5RKէj%ѱg ɥ:%,edk$?>oBO]YwE¹e2￯5_K~KȺ֡;ix4e ʹLmuX4}{~2Cnajv F13qY3sV/UrfǺPk{҃Oeacם4i.=9+4ʶ!]lM1]ktS01X2NiLIbwC 8N(D أ5K_:T,eQ;Z$.&2JklƞXϸc%>O6`k'?$zF-*#s fr56&tR)%ͬi;Pv8\w:"OR-B`bm5wv'U\p~* ]BȽSRRrfQ{솼F&Kh)^*Ui>]FUrlA+T aBp3O]*)'1h/SnK’v9؉lYC|f,4r׷w]T~#0ʷSc $h+ifF['d-J=$n( QpS~|]9f6!). QqaI/);.,'Cͭ<> lxх  I@nolP䏠}Ӄvtǒ̤Fu@KOR|)nMmX%'_HmaMiW{k5cM|r~o"\M[gg&fu3?y<2󋸡kp %~oY~??/ܬb6mUUSI%_uGUq-=?xf퀀b<]fTc>Ի5Zr^Ia;j8k,>>ЖbaE׉0 "tPS̘̍gqosj^N@xsi-W-1}='āF79DOΧJ~Rl=G.2GATnmOK.mll0lW(5cݧ1U~6ZaL=:5ΞJ;m`#S#: Уm]S 62 u&CJs.c%x$C&PdfhEӗcs¨Yb_5Dm=jC{|^&4"mhltѳb.HNv綐r/V_.[zc )8ѿUhj~^PYĤ,Oi0NXhJ,yZnR"֧Xc%c|{bq%I^V&*yRMj.͠ZtEºi29Pcك_C(kDS_<6Cg۴}A盰k}gs?jR,1'CF oH D1J3@$'Or]@:qqwgGS4 |5`R["?2ei}*QqN \V~n>(&^) ?0)6 7 IJ|0d0|?T8G4NDP6fLsr1n'**Xv)Η[eǜOH ?xΘeag^2pJ ":be}țh%!YtLu͠}k`X^1u:+8)WQJ6@9P!5vذ{ MčͱGN"C?(_t=>%G`m]0$v bgFe h]Oۮwv0t\U5xt4kFÀȼF3YK\wݾZSNY lFӃFo(̶U5*g߿RjdnGJ?d]))⍈ )ĉ6o%6I,Rkh߹B iVѵ^!&׮+ ~y+gc?􂑖Űv=$RG9iQGi_䳙a(=P]`4$) FwKtnjd}?}Ft(d VbY.dmD}]79pu#)-D5F%-{+֥<_jܢ:o^Swi>E2@ܓyF^l{盟O/|auGkT9  yxbqo+xqG5-rtfYЄNҖV 4VC>1C<5$x.J^*A-bR8s =:5RYѕ{ly:>3ۂ6{~L9ưW]J\)9x+:}~O֊d|`iu-76T@Eٱ!M/ ^AK۔!Gs Kau|ԝYT'HihMt} Njzas,R;xOijjtS}:e0M0Dn6 _8Ă(3;lm-:YϞe*XΤ=ׂ+ջ7o2z70Rq fQ/!-~^B`n@WP<8 tduEIPls$ojZu#~ڙ6 B8e,n՟q+;t-#x-ovנ Ŋ= Z=OMQvM% r `b \*77ъZv(a/aO4vk>:]%լRhδxqR˂O#g6 taKy03! f`ҧCZʏk]MXG_)!8j(z-'5U9(Ki€y+*r w">*Fz]$VP:7}.U~!b|BsF(6hHTkʬk9 yRA8 ~&Ub3Q=Dr [<sFƱ[;g<V.% +FI1]q&øG~Gɫ~,zɑxPp,d/(y4@p&CE::#x=6*sq^:CaԦ]b{?\ {trQ))AFow=XيGZ.gnQ74#=1gG4 k\>hsI 290t;nd)₋/ŽlpZy @1Ygy+Em I |%n2vD)/D]!вQ"z;U5xS3:>\nbLt.[oOӹaGnSWsuSE!Q T 5K]3+Ɯ}vQOyTSBj@38quy?;ήȄo<Y",_J uf"GP2M;XS&+e"C;tB (r>kDHIAm#6O5tk!s;3 z.Xfgb+f13Rl)iGG*#H0bnQꤒD"AkZ5F4A'%.w`m! SGVPg =v=E"/ģ}jg[Hfq˧LEԍ*{o|ف_h2$ß ]#"4t MNJN띙3򐭀!oc[iNvu,@3LO[D8SE %2՞Tbldzه;.rb}<=MQ ki8?aHhf e ^c k^ʃ3Rk!M*o xDQGȷɹ& ͮ>Ʈo 5%Y;e`myoz4bbvq{ekE*Z\C%:yʿy`\yEM6Yd.rua$G I:o:T, YAbV2, 3QB 4a S(P A|dQh>wLND//p/ -Ggm,QZL) yp(_o`ŁY2Z\=Ƭͬ<$.(>;->‹q^$j z2)E<>cENR >5BG⪚`4|5▟-(H{П:l=mq*o3ɖ x¦VDӟlC!^z~_d˛W JS>dscN"J|Hx5O^_&"rs,q M@,\>wŵxt))ru`8${> IGJ~Rx_([EϿDO.%:Pl q. >c&x.CಬɢEh[bR;> ޟB,_.9]tNNI͑Xt"Qko7`NQZ%7ej}x(F+t@+IQx?p_ʸ޼I/4(\ΤE"RGٻ5%Kҍ( #3Ounn;;Ey6/8>ZvˤJ͈ξjt |zL%mCF$rR!RU!v R$lm~niɌ+Ͼ?k`fKI;F<1TMw9|0"G8!^؁Xe+wy zji[.jRj } ]”u>As%+K#sTXF&(l g;(QXq^X@ \'dW0ث`|>9f-j@$ԇP=qc̅%Nr+/2/f9iTՌ~اvhw:p,JC$Z|Mq/J÷2`t+pg~) #ea , T~%E5 ;#ŏPLYB%DBV[ϔ@ќ1$~Rh7JZ8 6XhCFm#3m(CaSe)Сڊ\et7o+ 3R"1ӭ~vrwQ[@FN@ygmMK?mη; .`hbNQkyx{Z:SAVb7VRx$o b0ИfXVaIw[oWD#CƦ@GLaW^v FS;?g/k 4X9'.፭dsۻi rLQVcJs=O9XRHA:o%&^LӉP !8֐Pt ^6X%3:: W#RWp| Sbq2Ϩ@GV = W>c*B3(l=B{pbzh.1lQO1ߕ±E:7 )A-ߢ% ]Z40G82?Io#20b".̟|i?U f3 䕃H(;P)Cy@sFQ%ʋ3`(žfTE1G4NDm1qS)%W|‰~J%"lMoxa |^e&dŒx6`P5}nl g%( JrXWD>mu_bJڐ)?t;>0x{*{f߃m`a#1җ0vVXAnVC)`ni;H+v՚bMzR2FJ^! BOPڒrvLFe͘y>E"Qh 6TWPSjhܞٰ%X_\ sgp暎 ~qaiZoLX_92BùL ăW8꧘5r$o~4PF xPHmV?nJ0/~oۯ MfKd5xx|BB9]E V(|~梊FV4]j ,oo9{M2 sa7ȇUI|#_{U(ew3J)$W~WIڟ̧PN_\>P m?[CVEQB -v'3#+ pb:~k|9 0eɟE+;ޓϸA#c4x"U+\&0'xb3ZA81e(ZVNx`QN_0{BGO.(5 4&&Z8d{]tv1qEߨD+%d *"=t 96  L:FzLO׭K)?>E2S@ E>0G_7+ELQ`?@HDbV_DlD"Ut@]㤭?Jb*[rp]F,#?VIzW^z}7ĉCx[F>R| Z 2{yt$ N[~=%Z e˜)/L`-: V$'f1;RꂏUDT-ۥtR&D "v݊P.#4B<[䴺-9Gt,Qgefo^ $E!8jڹ5$GI|f-c8SƬOBr-W#,/VB$dE ^qa;xeWcHՖ#MucU~X!S!Pa.SjBRgA])<n H'A~C+< QI銾b/}bf֔q0!4n4}^"~m(8bd eQą@FlpDeꪟ~=E魑XPV'J/gaRnMH<Y}V[{=d0Vs cXɤ)n_#G To܁Xs!? +! p1Z}h4E_#k?1xFP ^|紗߫D: d! ADPӜtE5Qekw ߆&;,8IC7xuwlR{ ue"W1ZO-< j^<^X_xc2rrxWtluo-P0k=5P~ iQ vySy_X2~\ f% VD(P8*?6c,#tGE ǂ)5\p`luPlfN}< 1f_6pni=.dw zՒlrvuN]8"Ou.ɯ%0Gp9'r|^٬91>V `nWDz>7/mpr[C;0;=ٍpծ`@Zk^qbluBg,mM?`i̡t"X+o-_k㹓&`Kvzۅ+^yGVJ)]HppɐM7-"#Hؗ}hP~t)utcG&?IWWC5Fq“~pB@/o:*YD /rGt,7DjK/5y-aȏK3jR/ C ?=ʈ^7VVp6[z DuE'7d_*2lcxS:m3^ qG$ZIg^l_ NlxIIiq$xEmڛpcz3g,G_3x{1+? O Z*5h>ix-FbZK5?H޻f WT%^33L_ޫzZp]ٿ^YTi8ەlEaoM֚n4һVovtF&|~H-sUpũoD/z Ko7JjnQ-Us!\|/l req8Kx|zx$q];gp:%p/ǻ%~w'4%I9c/tzBCaGloU|~} DQq @6 | &K{G*Cn4e=/;xzy0NZ(4f_k+1D鄭Kk墩{`5;NQ#cF{U68m  (YJ#c5HKC\ ( ^K:mOLwExwj@`N;v=5,9Ms/f;1Y=b05upŸvs<¾~VdՑ-<# Q_SߙOB,YyʆܰHYWT t7yGQ&Gl*ƚ #N'x屸*5ha6nj,K\ =X-3V K5 J6W}4L>uTђ~40 wѽE ,qg@ b䲟wj|u7Бs׃RG^BWѥ//#% .tb1¼3GE/ 7<7!4tP?G{3iH1 J^+,m,n h;C~`͎z(_[^/HS@I#Inv&}t H`-7"x6{:'inWy(OI-VIni~kv8W~"Gc6 SpLN|>Ky0o[nBNUsU3_-]  n[EFýu{k\}t![ vr,J1O1gƑn4v%&<-bQl;& o׺@$s}A7UG[ϔ=c"l}!Hjy%ЦGVN"K86jCK?BKU5)Pp5&K2h?IţcON>]Eӵ?w">d@1[B#etd|{0nސjzt1eMMnMPr򛛚}|>^Y?M-qc6#eŸ}nء>%U':VdJos }vX;,~u;͞z/Kc&VDvAv]P^BoѹTlR33Wj8NodTCUӳa̪r~pCCE[t RY~Q(,R3y=u.|2Y/}9=svl.嵰},(S8m;;] ~ Uq~\7ƪ2'ćŹwmY ]R\._ gdR1f+X^Z[(DSXغ7eZ)nO7R+p I,0WT&{ U]{wԀOGe8!bZ-~#hZ>o<-F+5U%(K^U>iYBoWw}Ƽ]>b7x#f➛YZ/-_$PIdGRK֑(m`Q~jN<}ѡ9p0Og5 B<1ΘrqL9\|Ĝ"ǓT^ch:oD"1fh"7@'=5JZgi=7@T5q֏#| Q)CxFo _gXac8:0&>hXO^ ռ{۵eNۆ^\cT AZ6_yk5r{I35q֎y tw ǎas<&%*":Yzރ>[EDCQ1ʍܡ3E'CY ˸|~gwiϼA\GܱS󰦔k7'uL^eYut~u6^.|֗-S4Bٲ0+7CLG:HIb!Z!+&wר$RDkp9a&yO^ 54k$CnιcYPҤ*(a(ƹlj4dԸY7[T2{Ly@?1UT2sZ;?%1ynT iJ=Bvޚ-hլ? DFn-ܳC[7afN:D D=JWۀ룚 m &fO"V)3飑|X~qq/ b>N4{>XByIA=Q&%[%qpyu~7oxI 2mXߡ{=bGT8&l6GS< S gO04e#f_O"2B#{R'@w`:ėA(>,R)%?1_/t6 Y_@`I;u%Dx Ey7 W($I*X*:U@[rn" Lja x??Ls+ht<Ԋ %@w ܣrQӇE"j-:-޲/Z?@p,S5PhjssKVA54+1ϠaIc. qKxJ` 3D /kͱi t]^%c?OUJf=e\-ǢseͰC|' MۻmǣH3l0WVwE¯$' )'GwOuvB[x -=FJ}zV;fM^\Y:]VҺzSĘiT7J tl"_pG_pXj(/+Ⴆ6̿#S83п:7)<1"بxEE) Q:gJ_EXU1y'!9t$c\o FXS}\tEHE;y{fWՐ!q؅+ն/!~P6yY얀/C)uU.M)?jM='4ʹ}14_P6Zi8n\6;HC6;aFۗzw'᭤ʅlJ3)a:,M(9aL rAapl5e@]VcCG1 >62!O[yCX+Y _ҵJJ/zwt',[n(0JMH)г ][@a}p\&&epJ,SyVxt2yuM5,)86U01};/ k5Ölf |,LSX%N?4f?K7[=M v}Ca]a<¼-b2+~?0B\1+Wt1LxH3VVA!!쩕k=\4bOl˂]7l3Q6SMHnqF럮"0D$?ZFN|kdavvM5`vꄙðLz̺>u֖hV@Gbhm/x|tCU ;%3>lb;ʜr :f43Dmx Þtm>qp<?C\A\NZn,ىmzI@DZ:SzȨT"'j1[4İ[̻*RЋ=0|n֝@47[<ך>[ǔQg]I+}«;-*ci㹂]jd[Z=RܻB{dr\Y4)(h4X0۶uk:n%\MzlL#)Ӣ S4|v@VhE@zz n&i=eWߥS@Jbr<,X;z˔|#Zc|cʎJ5ZIt ೂ+k}ZL!ib E$ijNu'#Vvaw%.݄ܹBct-#b듢c +[ksiWF6pp:O0bd3:w/PpCrcUH6|eDPsOp Ĕi!QRx.dc)ѓaxPR|a^=auJ8/|۱)Ү0CUkġ1F_fҳ '<t4ie5ƣ/ŮO (8#*$19%B@K)) :vyu1x&QB6CAnH5+mxkf62[ kBzy^Y0,~P(qCڴE7n$leX#)4`۷07#bb+;qWy=2@.%Vl ^ ia#_'X t/c'9n̺7[T7ZPF $Gl+`o<\H;H&)زTkQI]@|A-fl70e}G#TChJ  vI&)ehd켇+WHF `Bh) r2+\0AD":-!z >R,8YJ" 3N2ضг;+W060ɉNOJn2h/L>%\@l SC]:!QfHjK,rY+>!/[,$Jcbш(RįcFw*μ$%φI^D#YN\ؼf3%ߘO7R򬩞,lK"N+m՝!FSj,6,M`7v.A5HCo[Z׈ZFSa*0Ɩ S)gMpF;rFEeuȜ `悊WP-nin>ٞN8= `(wZ bB4/MWߕ,rsz{M']`,CͧbDJ{E)|7ắeO"(6k4mAuʐG>ߪsGmN9 jy$k^+_^R8XRQC#U֑i'NMJzbuw&r$֓Y0lJx:c1y `Qh./15tX =ņ$ ¤{RAz4JpOT:}}ЛpINO^)#^fh)7c?䜯 wC_]h ((;T%uTi"~ M?39m'XIo˸kS\,4W[Ю5IgSUW|qFFKvI4.^BVhvP4K_hWid@ysMGvC)}TJp &f2>6 EZll ae[IrdkZzjҍʻQ86j|ڸȴ䷌͟SbJ,~7@<)m Y'5 B烳-O5Q/QġzOFW(zEW\0^u˦⍪ɞ`lx}s\;.n׈}{sgWuP4t'[ <T>F+/+b-QaؖhWuBO!.4kԛQ{u:1?ɞ!9,YCl.a!!!uZ9m=J)&mRaM ѡ1ߙnLφ#wނG>jEeve;s'),VVQ׼5~BHE%FHGSwGqՃslZ,^^8KL4->V+7? fZKd~F|`7oQޯh$ԁr4/2)拽WHm_girNWwZ\-_pzUpy*$@;sL o!oQxfVW&֍e, rڻf:mr>ymׅYz` BC'Al68\ISW̑jd}-(0(џ'609~0S bBj y%ݬơx-fLsGRdmW ƫZއiIyϡh9۾N?jorYK]nG6&hFM]:ޞX4wQ`XHMɌީQ "2L+r1'EoQ\ދ8Yv@6^.ڭC#e5V)k_i6jX#/FQ1< D.h3@eI}x?^yb9Rs O0Sp,|1G`#O%Mj 5ܘ A -By*{ \.U?(V\L.e]pnc[-DžEy_pJE,oJ4ցK܎?;a_aɇ򆛯TN2?e ϶'q'  bٷG9qlҩJ2 qNI^[畊:(fzƥO~W{蠆wL,F0MB 3{;YbSN7> gE~s&^]c !Nl(w#X(zͳd aVQ'$C%t@ڜC7p$'cXYh)p7IgoD*+"'Cу7Q< Qfx",,G\\(=)jezJCR7Ml2iMA%>::ncڄqsgӔ [I3.Czڂ# g@FB'=M47%>Z^~YuT&W"eNK+P.f+eć,8p 1*>(OևOućSuY大@|9:zpu+oﮍS#CZW;Oi&XoOƾ &}v{dq(` &HzׄEJ-q~,ZN)v8pSBUq|ף.L΍ڗhd*VN^ţ1kާ>N~^΍}e/Df"BzmȶĜC!kMV)~ Hirׄ2z ÇuU4p:7LCӒk;7/Z+KߺyAn!6S cqNVaONFcC=6U7k֕E NUKQ3m)Ҵfy)0p)' +1td %|!113T۾yS,F[|X8cĈa`ixbAcҥTT4~ȯG%?'q'l|8V"4Jt*(yf[V$3LiaCC@46@ZaZ? +@_ڼI.&*!+c:FC^Nt cċ cu !13Atx@Yk f uzp$={WUl2 kcL d,䫃b,dlGv59Z_*u۫Dob2[JC[SMMkե4d kyד) * *ix]7/TTZGsLT\]g=]h;yͳDU4w&≠eײ @-b;E\5@–Q@`yP{,УˍD]?\5 ^ AePT̾K,2-`^ & PC[GwYgFG"O,]/xJR=aE[?V6 ]e| Ft1Z k2gfBuC.2V{+Ov@)pvAϟ\yWwb߀ɯo}W}v^˽'@4'Q~bf֦ nd{Htk~ Oʫ%/ҫVui6.>D-œG,yUgU.y'?ZC^͠Pc+f!Pt!0F ]7^zઋxMqɌ/'R[SMd4wxt~M/+?hݻ)C!)G8\-]N|Ϋ>]&eIU-֝ `4(4ԻUK$eEU]%s*<@‚0i@Ey!b^ N2$H(()Cb)]4Z0T{ b{˶cYwam~ڱYb2;]'q0Kv>Z%'>tizR&Df.bl( iG~ry/mhrƉLq": h{aN(_ane$<:SSzle#jl)i"[l>P~`kqK18ASOΧZ$ V'w} qV=k S WI8Zݡ²\BAI<14Tf{?mLRs?o L,=xo(+xW%ZS8QI1"S"VGCءo.E&/u'ph+V6. &@Elnγ=.7`b@<$_y-k4H 'q9")VK10G uVLbP/-ːm%̦wz°c?dy=uמUp+ D)2:ZƙHWD% aLnW&N<:GKd~j&]=RA}oϲސJ>_"=fb6sThm)$W3Xls hsd=*"c$8e34"9 (Z랾#%'p,EEd$2A@U18t<]LnW _oǴ6Nxq$}>UIn|EL6I[/K(9A!9TJ %%0}[Pǧ_?#20Pq1 ?fJ]kt} 6 {`_/:k7-Ց#A2' RL% w D#U\=O)җl/{7(v$ fղȿE:b#ThrEn:dqj MKbp\_@\Qx Ԡld*\rkA9@$S 񟊿x>#EvxUɢ I=Ƽ}L9(DEw$h5yb=cyPLlqv_k<`z"bUhS۲80i?dJ,-Hj" CFxp{˶qCkۆ,]K:gdZ&x@Z9~N<%>!&9{q %2lEzfkLw xkD3떝Ͱ a*z1DЅ7pЖ 7m %B ?̓wm}dݺ}F8+tKVѝ |=Y%.@n}S^ lMJTxbUݕX=K% oUTH'V5O\k96h@'"̹6^^rFcJw Vq+8cP3wHm##\?+_;d3e/wjȩkVJrsD(RshXՓ-Q U/rAHq7'K0nxDŽ-~*7]mPWa[Ѕs̨Iqx@ei$m:^-T㋋˹q' qcmcjg;Cns+(gu#Tc8].CNڃ Ys >.Т]3؄iUtu!!i.$I`x\J1c# VBA G ;7u2cDI'6j;+ &AlQdkbgE"t_˯}*J/#ZTaWRBwE,D|J}ɷ0cڤWzB`k8 b̈|F-=Th PԭDuSh-ŭQ3<1f eqwdw@ 2I:W6IW_,ZLۈ\Ia@d 30Θlʥa.aDt юm7N< Qw;v yeq .fҏEr ^\cNXPb9 4A;2m59:cW昶^E_1I|e9؅M94)vl蟤'PPԌivs(.3Ds } )Piء{[jEQ֖E8IQ|#kww69aCBԹʢڋ5hm)o,xBӢ$X Ŋ,(;J/]!Z٣6vzDK\K@/1z,coz؞SWچ%oץwC IrGcv7hiYC1,Y(/@ V0¢ߒjhm9eеF!_5Y49f>UIׂ0YA{8 pvz<ĸՎɢ{CVe'#p*3y5|(a6od̷M-gy\I0 `g\[vLJY\z,aD5HIě>G%fpΈ's$~OĚg_5^dk9iY?ާzcEH,VR>1|Ց ׼"ҷ 7 P8^J` rݎ4df<{q$1rb9L!#{oeR!ëT86綢VGpt$X:)8JZ$esDA{S^\1@^Y?(q<[98mqzZ'D&<۞krR.+<ׅ㬨k!v.O_;¦%| U%:nz ;_)TϤCc9Io󇶖:~7,Ep\D[K'L* S T[Ϣh 2&yq߮fϵ+6ԕm+ գ؜]H(^GB8@ۤcHp Vvjco:9|*=K0'*ƇH)rм |Sr pEk3$^VF+RIAb\{>8hq "NUOdžEaSl8kNꖀW#Nӟㄺňn)~mP u1Y&rLcLJD6\l(s/IaO.FK$x/T^@kqJA2o% 1VdSZeLXnk&Y5p0VmpϭF1~$)7 u4s&:Qu)-%&REX/4@PcN ǍLO q@'ՀUF>tS4Ҫ`sy;(܅QC(u9v.#!Y3dA2\2 {t$EHHP(0'{wY ؝Jvj* 3Ԏ> a'Es?p%gi=6TcD#7/e+%YՎN Twxޔw2; eM"ja&m{}aҩQQZ.UktJlZ$4xʜlqS_`uiHH$;ҟ*};{ϴi3 S7mSVң?2Qdr_Wyd>ql e/ށoR'Z[h@Md%UAGFWkj]w[ZtɄ%ߚ%㯺g⠟i؊|%UR<޿_/goltTPGc D?At,Z%Mg)A.xʀS˱r٥UqJ 暥<C~9/w/{xtX9t-66Mg;" BN~7*UoEv/:dʐ@~fJ m7$(\?#{;®9?^#0@;܃]7,})xh9H"k+ԕ@c_XKJu_J?T~kQ U"|wγό8F93AF%H,|oQʍ>5FQQoe?0fJ2x~`,>ŝcS#L!Cdhƒc̍ZW@qgZCiXQ(p.ueB6GN<] ]9w8 ȓF2sC!D 'LuE']M7 nlZL"Ǿ=/e3GkP" Y&^B+ʁz\=.6S 8bPp?7y8f BCGDcRwqsLtQTUT׫[I 79>c#48'ascJ2qBm(qslsª%-n+7Fs_HNCwaAzjNf-ڙPQ6]ЌdtQx3UAa,k.ֲxWSxzZ0mfsxB%b 6jZś>)!%JΝ ޱxo16YܑId]/=T[̜yE\Zڶ^u҄k,F,wx(yp{)ϟԪhz$,vK#oX5?6  UK_^獱F.r^7X%g=6~K>3?)}\L0 :v/\`n6hGIl^qXffH 4T V6-Ք/AVp|`UZ3 qkFa*/梔~EWYrT>zb3]l=294WNCmSH !`5|,^ã[d[L|kndJE[NNZE7{j1 6I k{|8dI(rq&?wyBߡByc˘9we.X X!`p5Zr#CƆSKj vYKK*߆_jx·9C0 ;F.Q٭}icp89jdiOZ LIRGAMX@5a(g+Ljs^W,{ l]XqݼF_R=Cٺ5+ #RH owS?a3o 6SbH=C@ )H,!ӇרT$~~ф§>,~41)<^e)qp1Qd;7x+}eM%Ƞ5WJh7kZ.~9o%yFf;>VޛaitM1 >pZpÌ agn!>^|HՎP-D:FUb&C3XmϮj-6(^C˷]`=l0b?^|6myƞLxLh޼2dB^7B1$OB+ ^UIԤq9_Ļy|MlH paO 1`Mg\zY|F vh3s"y><B*I-p:`#|H>C:'h P>~V/ɬJ C:dE[`f}]-P)1?AdaǚvG3 ݔa 2е8%SBXCԑV1iۢJ)髱 s^KJ9n(ߒ*PKq-j3S&D{l5s~UEa&G#Μ$?b悱C# j22ͼ]Z<ߘ&o**jwSmЅ s]'ä>SM5SQy5 KAHVo J̝Òړ-g{O .وnWYgP:Ɛ0!ʓN ^((Rx.}D> lIKfNx5K|e Hvuv;}oB! TME{O.`)W3s"AKv&-k0F-:MI(!ve2L&8}% [b͜=l#T'7[bt²ӑYnQlTx=}r(o`)H;wWY|njR&~bѹpc "rt$?yFb9q^/؉$;vG/sh'_slMUyJ+CzfCg0/2Dgg  뒉Sp_h!'LEIڼݻr%ŇcSV7#aXC@5x}&O23eYۓ']cMӤg, +{!wttʫ=?3ɖrFBf .格4+U%[6N%5YuzY*9sǾ#6ɱO6e0RYU ltFw/C(FgʧE[dH?J>F:1ZGbvj"*}+MٕTTj)4z,v$l5guf¥2i\|4% %-l5%[L~^Y26s>p{]7XSPP ƮQN턍7yJ?Rysuu#l:U~3FfRH+5B¹Q-4@'c8Ky͏ Y_΍W2HO65|do.j*/6ۤ lrvtjٴFM#=gc͏q+e/T#K yM\4^H"J2 OY.}@ _mm.jBt"/CCy;dE#= sB|ii34z}9B$Ŧ2¥ߔH/ܪ' n[k،X4n<`}{?9r% FCNE>'9q c+˧n8rE툫v! 33!?X @$ [OuZgm:&Zq"aL;}vJe/g ?{"Geft ;r[YirVPh3\G+P*I\4\|J :%LG4raƓ0Wy`Ķ27T#) (_Pv /c $&mg܏+?u]I ߜ15T9ns*]Ͻ,{) ~oYS%A˓@{UB)RM݀C8hKEK." կXس!I$]|lWSܑ-P3Wn}8X@*h8Jv OhN]yb!zib}-z:oU$AtTfLv$bZ߈1"VNHns{c3l>U#)-s;@Zb: D}?it*]EX/oqm<;mI,>+.,ACgH`˜~xi%$--CwcNTYRFK 0-Y!.(vdb#rpf|24Z|miIH*WuA@T#T"LTwG+ǹ#n6ܚOvя hd΁ @16[wUE=jZo%=ah&[q{VFaD`0(2IUmj#oMCycdptai.C6ae`wGEb~^e(L-ɟ3 @&F2(&b%[!'Z{[R}A%5a $\c$r j|ζDw_P -<nY0qT#XD KCqćV _[l=P_TvD[ŭ^dy6$ WOu*HFR$VhG9C~7**}vstX+5#F"T\L>V-;VΥ< 깝â wt＀v|+BW:&-fʯJt8-Ypc`cz"\ wPC[&fcfR4HL[:L z]v_El_(`]Q^Rd4,I?ZG'W0*c8S6cdϣR"N~CEQqFbRii3h Y0"oδ!wS+&&7FPD͍Jp좜i ,}?Хl#HU;jcegll؋&plGЀ.atzlNư£ g^{@z!!?Q,K=ǭSv'Hȍ (/QX #  ֞Eʢ\ƤlGTstC6j^9=^X=A+Fow81L$,7 ״VZ?:p[+;WǿZZVM*o 5h?M{i6/UMEO3E=Y2OEHBsgQdz1C~`_yodY@IF9m&`]t 3yj%~r9M4!;\1Q1(k99ְ0 =[%9Rus+ay)Vˀv>K(ԷO 3LŔ ɲU<*J+"v5Gn}+!?Aǵ[B @N$]Itdb\rfL8bh$يH<>E3@ 6W"޲<8N tyw &Nգj. $``K_4]C l,MB%^]YPv,F$8oBa!.ѵPl/EJip?=Mcx'ц*Φ$ nVqE]@A/zk3zYk?pj2j aWTG/n'$}S0f1$1WEJ"4X+dtwYfl2K^'/~ A_*7*^!9aD(C\AXvYJ3,JvQr,-aJj(gg&jJc_ z=0*-2k^a$^y\:`sm=02>wt[!fǶ%pXW$ ]0$} ό1~~NW=ڮSͯƂ h_#h/uq@w >o(#,J_Q/~U'PO$ AJ&;sReYp,Lɀb$fy9E3b yy#T(^"D54cY ʟ!** `xK\L=wܛٺJ<2(8>5}i GӒ搸P_#cq %$dȌ  ⣦OۉoEzosv~Mi %j%^>qǗTe8]{!&C*vlȰ0|Y l&+)L=Lօʛ X[⋰Rh3s$p;Ι[;wn2=ibt-ˋ^1X47fyיv>)[QU2E\ ac"ςc#eݣZY< +@ zoPx>o$tǶE(s\NT:Y=^2ӻ|R:t?K*ܾWKFQ-ҕ4'1Kmzl2OsnfNTF1f'|3U arESx?棿¶ń'`yT:x,!!c D##؛-sxےg%Uپ[aۦ؉^e+d龋@|8^#5=TLj4^:v+Ra ӽOds+[5&,u9nm$YⱩR-NaRzRcŚ6Q(nauIw ݏeK B4cuGЧ}$5 xDCȠ%-Ѩu8:cN>JM$VߡPRqHSgjJs-Vd^麃Lt!TGQa|tŢ Ck|P)ְ-:}-W] &Wz ,xu X~@GϖCSBygPy+~ao$^ewq)·e wZCD|t~:fq~CRCgƔyQQ2: t<ͻk遡8hJf0zWsB6$O*ӟ#!CP?2z'9A!eS8%Y?ɖMG# hr#NC"?_@+L1_"}ƭb tLǘGgAVj1Ġx^d>DRzXr]h,5?ϴz*,'y(7(ӑ?xcz~؊}`r{&D` [Y\/iIҷnW7s@sЪ۟ ^ԅ?Tw| /1}_ū8LY{$`jZV)2ppgU{; I`oXRhN[i3^w B(Rٜ辄`KDIbd%+Y%Mϡ,ds!Y!.塔YU@6T|ߌo|~P/ȃln.==*ul(n$pou/*jb*o_L ^bm-h2[ۏrsNgޕi|5MͼЯsi9]5s8%蚗͊YXTGan_k&gZ*֯jxp̑bRɊ5;)u?SPvBh^.afz8v2ߍ/`KqQx85!?4YJwDVA6zn F|Aߞ/&UצtD4X&p~mVIǡ }rCwG1'-r{ߋT eܫtQ[=lzq(Ѷ/.QӳD%{[N}127BƻT/dea&PS|SD]TZ2J܅o \XQ T ilWTyn^hR0O, x-{ WEm_݈5Hi XPzCGҠ_/  _fBp㲖Vv~4۝Wh4-X.o':Z x*kd%FjWm|O2=0j[ȖaٝM^5Aio1"IH:M[fGF{-ւ Vڴv)/&KL6(0^3Z%1*$)Kj_}&eTW> QGT]u([b,A_$bU0#b؄Zc ]xjB5hCh|]XÜ_&1zzzw@Kч2"HؓdP l(zA 83XVƠ-`^[NOJਯrɘ8zƬȺ4˾]|_.6c9#YAb˕aI<{EE#uSI&r~;;eM5a͠.#=W+>P3#&Hc ZOU$/߈n~* I lnmLlU,PTx2!9Ή#@/gKQ; Q#m $eu̖Vr$8)-HaU06MSH%UI:Ci$Ĥpad;&ށ,wCiC\3 ZtH(&JDnΨoWxP*49%BTbP9@x=3H8+Lem$X Z2HCKmtf]ÌMtf\9#[)`ԑYv@4ZnSSv׎idE^@(7Kk*DLcR^Cm($H P9c\Uwpϰ<ޙ QaǼ3R@# CwkLڃkC6힛u .Bǵs@J<GKݓ>GY6BCp@'UڛɠꐜgY||as~qpԙg%2jFb%rq(m X $WFM/Џ/d޶L ~ڏl0_j0ge$O)kXӫL"Uّq.dGa @HE@'6:|%, U} fH.ozroF.fHE$5֯MKI=U(JWӓ-cOQ YQ9|}<<˒9gd/\o?<7jvsWMgswJ%˕*A䱺݈r8?U\ |sd܌7ڟHJ CʒvxQZh4$t˃>p甫Yq_y,2:isø74OEs^86Dpw6pcJ6 1i˜{us}"<[TαDrՄ_=MP \XyXE/V7,\W2ӪCU{#;6;`C!WBN8߷ٸ+# 7b`yU 6DY\_HLjYkmr  =YM!gg>O4-$ӧH"JMFF)\:crG`Vܶw8 CQ%"}<Դ2װALMp-1)멾5PKfU6G:Bڐ18UJ &2Gv>Cjh&m`<\l@kQj;crP숆ZLP05'Q N]-ƔY=FCXg !3j5 +!7݈:%jfbq]*{`2v<|gᇑi5{EOjk% awwt)Ff9[oܑϖឺzc \Uپ>{aSe?AXW4ed1{k3=8<$Ag_-F̳|bȨ+yTO<'^s_[uu~_UJAj 2kT]:ImΩ?tŠG#8!iWZSvy;Ib W%o1$*sP ˆlz}4 SG!IZg1Ő~mZ18"j = T7Wfzks,Wjtx>fGk."n|y_)<}{]QQJ쒚+IA63yg `AM~ 8"˚gls,=H,G7YA? ;(ΰf78<+RW&v~) \<FUFܿ}x.;Plbh;ϓȠPH9&D^L Ǖ3WJ]hQPAs,r; Wk ܜ' ޣ![ӕ^ wC(J/ b_QqZ#YLZ>)@=wUdC Vȕ/+\d/BWrD-~SjQjI*2w9ނvCҼ{9lvc#O|gu72+։S<Al벺̯+H?p0D8 Ґ0w"g§j@^H];+;RptDH6rր{C`CSŲ,>aG6c{zrIm_*w ~b@FzLtQG¥St*ffnF}z1;JQwvO 5[xqEPҤq22Dca;`. ,O\՗ #r.~w]2q~aP £U;Q|o-գ%kBkUc):`d\GPY5s^!z 6JY9N(glY9%yhTYc?LE荪&|5~|gubx٭K7qMA܇."UƛU%7B4v OVs u0U]`Ϡֵpv(zWYKXAda"^;T$(e4&o_t }76jܸۅq&>qu fѷQ$'[6JVE9}yd<:DhHr}EwCʪm2 gP?=}>X//An6t~#+Ham0I9Ԃm~'znZ_Hwa*_i#i-X؁7mƢbK?`7b?SÑP Q.p?֪,>krEw:^yrr:>fgN) !+X xQ2VQk(1ޣw'#0TN$}t1Kx{QŨ/ڳ;tspjBr\/O_n\,]T$Km[wںS'CYHd*/@ yH. WIX.+&te腹JcEv.NvX;TSoF3>p[M)8:]Q6X7_୸'ko;`H5d{P{3gpݚDUa0mu2=45:mlpi\#<ĠZ1*S]@}Ia+ f{bk2w;;-V?1?덳[ c .qXfKkˋ*"w߭ PU52YUYH@zhΙ7}v׈ΙI̼0Eo -(^Q ^b$ Aj?s>c2 sM"/pvӣ/;M4M@"ŎVn.as{V5ÿgz0؋DL{_=qKŏuޙY D)W'<~[b?8:/ýB֘ذ7+{`+xF 64p.6@f O\Gm!f_+?{9';& 1ҫFXNX|XE6qƦcJ @o[ha ͥ6 /<RD:SG7C7ʁhΫՒ*g;!(R>6\+@LTM1d0sSeYTC?:]]$r}5_¦wRok׹7tUV ^GM߯6uD@G&"}p#OH?,\hƜ >9/} ^C_uUu۶Y>2l  % dp;D;PWU\<6d;6V6jlK8TWmls,T5<@vOKCIi1lДT2trEbvqzvwzZo,vf|:ær:x4|mG4NcAV(ǃwR>F2?Qfpvۅ"hGG`D ;a,@K_iYjӔШօ$xh1TX18O0JxsYGP2M2אnɐJBYto,jTMQv#gZ\— -.rgWXql'<1>OL})L>L"aJQtzqM+8VbXD&a Hz(Z4I9PsE4A] bv1~ky\O)${PTeZ)#ڈ̌dӑḥ[{N8ٜ4>G!8TΟ25|J1>v#8o SybGdDژ@MX5ɍlOV X!ӲЧdC؛K@ j6!hey42 R*3Xshv M}޷l] k¥ܗLVLqHU!_PZAҏ\>PI@>*}[M(1xrդ!Sp2ndt 뇷~vo'>CN^ލDɓt#!J(y4م$o(lQMl(A .rYLxfr 5.|ԇȂb%{r}^(K@&~_fiDW/r-{GiEK pGw Yتg֩qzM?T&f:5, Y$ CrCĴtfjKBuXP L ^~P늼L ]o>n~f70T8KԂVB>&4n#߉q]&qb~KMfqP w~;v+//WXxoP]H>&rJhg˻,f," X@*$+jCSR|"+- r%[QdاΏ5HmYELF&76@ ݧ&g3na-e˄ʂG0ݛBű[p-m$ePUJnQ2*4kf~A'\QroI5%Q&$1ҡ$BVBc|vp>dRz>Jɀ4?;7{l=TZMxd"[?^lkA[6ij{?a=3vDAw"3Ͷ<2:唳Mz3àVxô\`PW/[0^%*J*6sF@ |pz6JF \h~_?|x `$7413?y @YC^;lYGFVM;<@NJoaͼK+7B 7(=q1NWRXxN30&IVEB-o#/-4^<:9AO:O, /0CbHorI_;H>g\קW!b߯G;V_%T=ɴ)κbQF!H ~E#2lh=Sqsr!4r#Œ93={⍢q}Q)?{} S C:{Zrϟ\Q "&_K]Ll$BhWi8iLKă Z:~ k 9[j#xU!Φ5Ei&w[q}74W. JՆKt[?9sb/π/ oq vH༑ c睁NS_:Eda #hkXzn"ъ<ҕ9h['׀wډ',x鬶 nϊdX}Me]p}uE2kQT:Y((Ҿ2B2 18'luzxS!_ y|!)=ɑ!oR{iq\CC0% oH7s+d{2Rh|n09triջ琬F@A5}nlN45<$Rcm* KǴ8S"ZeuO*% }Y!Z&# /B<˒Yi>Vl݌CoVW&M?s?:%jO08Ft'Om bsôd)+e`gT8lPhގsI*к ҁ2|l:Pg@>m&7WԑyXG^=%{;HNFbI2"jNP;⨃pq$TIJ bTqΎ6因e,⇹|YX9^Cb5(P7GUc O}!epf̰&j,`wlڝI4\Rp7Ԑaa³|5i[^*IҔyP a~| 2.*]* #;`3O+ch#MMtz (Z'BQr`(W=r*!jƬRǖ#1U莍Pzm7B26fE[M97PwrrEwwDO~#S#M_r|&j-zxЄ;rf()1za 7VE ilqY(uC\KĤayމ@&=Qopz{jQ :/sdJ*U\[Lر@9UC@e= t@m,uΏu>dKsM>iE.϶N///5Y_L-͛ @T5y {nJ&{γ#P5&vn'Ra)M\2RLH)g8<QΞbuMw~LS9 -B5j mұAc N[d c{Dɸ~1 `pl&jˀ4v>M 5/G \i2onp7fo"jg:+8-y|m?Z,J!S4HYX60-/3 Ϯ.)hPN$ybϯ|Wk[m<&&}%IRH\F:˥, =\d %|0_K _N"$D 4e5ҵxN>c y@v޴i 4z8Lٜ_Q~ :nC*>7#4ުҢ}͆_q蟿)M(@T_5j> i]蕯wD ָ}зc[zr6[Nz:EI$0($ jtwT\iAT>sh4wӌ,iT3:O,/Dv\ !#wI(6sQb ]4´}!ЛXnF/1IQ{4=[xb7^aROBPU`|Nֆ,]ۡ6Q/dK6|z`+|`25h +1O4&C iO'C_ay|irp6ΌqyUTR-R&/ FtUEKKC]|aY>`Z`ZfzVG0S1RQo\@f?thBLP36A͚z=8\GFuvy;3<۹- ?cBI(CEeGgZcSGXS;J~d n~g^w5~ VsH_4L\+О1g 잺Z;w\?OA] Jᚕ„f`Qv(W%8 6 !E*>Q6^ j+5nhڮ9銮_"hT{VGWdA@Lzfs1._R ÜbR҉+ jטdm9M|hQQG[t=_ bolIq(kDv󢎕!׳ᯡmSq<Eb@.9h\0F8#SgQ:5 Ld |#ϩP5 @} rud)Yh3>/ \T&W\`k|Cu(t`ZJhM*4A7 ]Ҭp<Ни,>F6oqc#3"y#^bu^T]uU%g:T=;*'}฼11mK&s6=r #K1"u! T$59 hʯVZTo: 'I$fB#ey~͝va>. *R@iQ!tpxd=D|w'L+M"KfL շ屋-My7S6P f] ?PNo!m5|PB$%7gt͋ &BsB)4QtfҊG#'Ω)].ϳɩjw2V[ HPmO04q{Ugh8d>!ʒRHw?{xnױ1Ot&A9& A-1G;{9 jI oJ L;ܑww hyK:QLyE9= 5PC@{*nc(Ǐt$&Q3&w0ZDnilL 2܇^j89Xx9ETh2؋dFMJH}3Z+Z(^ՙ ѲW[j>8DbWs{s!~/Pc: %t(&1RNCyaqhNWFԴŒC$Fn5un<;oFY0P=g\ j,n9֎an/5uJ]fB OBM۸-#0Lh eB9P|KFI}a.\$ b!.XEF&Gl2(i}iއ?s'5Zb&K%󝰺Fh"oO!NWJc2ئYՀ (1H+:fOK/OO e^ K{WblkFEޤApZ>3ϣEF7`pYL=鏓n܃}-!0Ainw 5 KpDЄy0{.Z[V[,cKh> g1) 0j`'{`s̀ evx0d[KEŅ H_bh0S8Ue`߈ZMt!0ȿ3{0oV< OPO|L{w,.c}$S) bM ↷ΪAO~PXtaϰ ؀b#kM)B;YR;zVpqu(@8 R&%\ʱ Ƙp=Q!U ka(y1Tg [V20<ɾ{Љz.y/dEd$ !U늭mZh;9Jf'Ɍiƻiz7,vTg-j厪۞kӣP~B‡8F%y\h.K hxń;;]eGv++/of!d4Q#r0]TA5 ^tV6>s'& Q8A$?FOA}^٭ؽl-]~}#x q!Uf[X IDZ-x&wR^߻~F+L"ܥ2A+Pȣ u 푣6\6jfTq& {3rٰ4݌(& RTQ1Az$ #I#IX㳢ZY=.kĩEA娷)L׭"~؉Ŀ@w\nT ,`$K+T+؍CYpz+ y :gNQ{&g'p+s]Pè__mpv ~-:EcIҍj&xJ[n[Mc iŠx)I:E,?4x )'vU--mp9 Ib9y_9QC;EI sʴ)PvZA]}|6xkFqO mF3LG6֡]gO)*x_(as33{EX*fvΓSkb9_0}k{EDSҖ\6\qR{(CiT+B_O*7`LbiàНwŽ(FO<T8!T!Ϯ,' '/AKo;@p/$<U5rjOr:هMqi/{?-BgŬ>Z8(TUp7X*b|75q;L@uT9;uQX=w>9G/6m@hYD&zFu U1:'F<% X}\5ceIj)a啁)t#F:T;#U|R qNCr c;ұ֊m5U"F'HlMzʲO I**tILoA| nkiEА"!őZj/{_2q ' =\O_%|ф/Zð95yt+L>u |KGOTv\!&͑,(G! ƻY $m"\IMuYEf ł}M/Gw6;xMp+/:[@KR4;f礔rD(N]2c3p{`-suV?\I_#Da',fșb8S~){t sJټBK Z.&ա wشC.*!URI&PgU/lYL?u}p ^@VT*`]Jsia-\jH@ 'HaW{s,S u8޺%fp+,Sw"&e\Chm$0Qrq84Xdz^"^A9mU5v@n*y.+vo. gUhkMe%}],L99QdYPiv QC@'Yjv÷4"5=,ej˼UhݟCo[_7"\mM`5zv[Pؖ.g;KHFbyf{g T^Vn=KSTY zN ꭖ8pPdepmu<(2'>F[su˯eDVnvgMQR,*'gЁ$1cBsQx*7Q(5E7/tV;z?N7:`Ȟhtf Jٳ*c`"P. ތϼ˻+C2CCo`#np0]Q/L4w?p!%KE:#2px3x҄uIbZJY#@:SN[Fm[x /*QH1VBp.@\r9U{[ m\1G_|7?8Sd%1[QjMdDWڄ6#x6} !c`]fp)ѓ/b|QU$K#ݗtu:FUꭩ'0.VH WKhxw12q6 7KX H-8 %⏌pTRڴ)kCu6{JP1 tpĭ[_Sk:f!pŒoLais(GmYߋmKr$SR^V2J_BY^Lsj0RIY?s1̒W]@  8,̱c7% A` fs{19E%,sQf 5wLE_eJHGخ /JpZ-PH`OUhrr{#'A h򯼥%鄘 i8s,)l"7lrvkq>c|K[d&n;n!lWk[yaH9p7vUW$*aQ9P 2sV h1((]-//cFH- p1撥c"xкtL)L?\ɉx01zO"_6,5NƷ sb+`Hrۼ̾,w51c'ўN+OzkӃQ<9K {m aYF;Nxk腰criO/MJ%CuUc2$-\n)_`F>ůYUDdڅ<3ҳSlh{b~x$ajD-\uO{D)k5Lo:*)uxKW7e ]1g OtvW)nIW^&f05Omc(MqhNBLUYv5_[ G20.;;ZPطw,P$2&` "uг BiPğR|fԥG7]~hvi#JXFE 5jJ}=S>8~u^w ֿzܸ{iOn}tiBDO5JA*]u$nLxFByWY%(2{?/CB<1\=ENoH<@3Bf\zr_X917\Öjݬ!<1PG1F 5Փ,z;-oLݲOT1nk5>fs5/IZ9O9$ײїR8ɧ&e"xP MuWzO ufX bvxHpA:j( &*W7ik}323Gq:g^qN4iwQ‰9ZKG Q\ʻ73<:z㫖nK>";Z#P@k-Zb&챱׶:*$PFKKq8=L:D54'1P}w)BQ>JcAzcxK* _+IPm+ W;G}}Xg0"gAOS;{(H'.\| /"GTc"zLVSS? {t09D<ψ?oUӄ2?Y@Z-;h!ZftZ|h8V3p,PY^-f!Q60 Q܀/:'ef2ۍ<'X'ӰDI+%.¹;WQ ZI9A =9EMz7gS)q(>ѐf[}LIh+:G/^vN Q66*"5 ;'Tv#+;kJ0-,- X*(|u9YJ>ɺ`j{,ǃOI#1XA8.1ȸqzi hm2~!;R tlaۓ5ƬDu%u!~M I+w9eD7/AYsI~m7mp& al_,dm甀Nm$}Įy.W bwG j-Px}d|Z9JP6+ 3'58| qrn"\e{#8QRa ' |辜DGKpW$oƃL2;jy)Ӓgaz\iک)w]dMxB3hG<{'eq9q)fXjk3jnĹ%*KO>׮0zuTU=idLcguuLЄyOۛKlOߵ\BœWw+`-~] |FkOʄZjBbbXY`pI=޵4pŘfv_RZ,09?TowN>u@ћ?//p.;yN<`7PQ.9G (%+WC\lv@aϙ  3)5v|8xYCPPk85/'S!/'qB?}p!ݘ ߝyZenN*iB߷S!$\)z f0aҵgYቲ e(uV5'Lc]5d% hD#VwpN¶ Q,f@Cbx֪|o/5c@Xƕ!!BavN{X>f-殎|>6l@,x9-瘊N$[&$3ϤAh`BG Dz9&}Mp;J':QsI?ۓN.KRh7^79GZ\7a焃lokT 4XBG{D`Oe@\e*5!BDV㵵!g5[Grn.i >K٬Rvv#"9fl_o<XUh \v vܗץCnz?9k:|\q4]14(>dYIbXsiit֯@ _;aji0O5٢AuL, W "{vXJ{v[`8ד=|_F6Zs%שXN+7FPf$zRq@n$-~Wr,4gq:fc3Y8/hu/TtKbЎK|K \.n$)jC~cej?WxOՆg f=k>h}oIb( '}ȏ&r58~ )hs׹7 >Ќ +14ȩQL_1vcW_sHByiyT! ._4.:&jcD3(%* qM'6C~Rg]*'ݿ1458b2 =p{na6Tb9[%Һ{ zH ti" lyikZx1BMQt7>,9ߋuG]ˆ \o r pݘ>u!݁t&{!bP*2"x?Cmsk2aCGi\g럛SvR.1e-u P`T)tpٺkmB6ο H{(O\ުZƅÊ.iJ 2 ֈ9T{&,6ѭ0H ߒq'})uA0X^5`?-l̈́G8Kch UP?FI9m \޹D"2+veWR+ B {yDll!]nrvFB'!nZ&sg ͪ&in{r5G7B $b69i{Uumߎ . Ry9T0yK?ۖX3MnƖ:ppy΁uW~=m{Tp󔜠V5Qp;DQ0 D0X2g`^9޽e,l$(:vS?e8j9;9Scsnc4sę nR3ԟ,>ȲFl'̡AG'BkG]3r!S f H8MklR!?.줿5 g.;f Kx9aQD 4THgE#c5~ɺy,iqYkGĭ6#-n,b^L{e\pn< *D$i}K2mu:+ l[VMPeUf]]. >QqMFo@YK3{32fI fģ xpȮ1Z|qL=sA Vc~HBm`_Z QmAnD8U{4)r1$oam:VEpZY W ,C;֎COHt4n']v1nsb(A ٥&W 3Ckۍ|?c@e::o 7S|ᔑ9xZZR4!҄tu⺸t kH2WU'.y%5]wuTK*M n.G$ m Ywx +H{}En5so1$܅s,j;EA \%R޵+x6|b姆[p%K.ieZ|gd⍡(-mth gn0((PLmq=hygG&sM‚g UA)VزN\vNDVz G7㜀mѷjb 4HCŸC2l'SSj}8|5߽kys쩄8: Qk)lE&]@brgN'fMT˘ĴL S\pCNmJa;Π \߹@|+G@!}}nŲ%)MԾ5 c^rh瓍79Z̊+Z34)0Ȏ—[Q#H@豎?0cZi=JFu(eݦ >CDZ³/ŧ=4f7 U{ͳo"Yϙv-n|e'i&$@cӐ,Yvtg!H+`3 7|=s9N c)%5#jH%ǭws"8E{ S|ҙ0!XQ53!V$/ʬJ/&&vQϨ-R:t;;Z3g=o(N$qSl1 %dV;M.(Krc]tGi_J_xxO-`mFJt~p&LU׳kqB,ɣ6$M/alWkm/oϕ 6G o9RU(]Gt'QZRrnв*F3N&fۏMX{"QQ˲/hic o;-ɀfJ(k'٭ YB h; 鞰}4򵌆I"5<)E6fмq ?b|e?οzJ Xqvnr2'(>4\-Fq;л/lCJ p[;y/O憥q ߞ0Un7(`a ݳkqE (T63gF;qC R+}>>eCyP51NșPl06#J})"n]}{|"f=M4TA:qSVM%`- WF:#~{% wO%\GX?uFܵ/ۆ?F$-Gا 簸2957M~Ҥۧ}TV?8 xPKZt\} 3oyHwM>8`  OXk?(4:8+1<enS68Cb9f9՗H=:5v@[-V[E \ cMd}f- ~B.=nV o);Î9@̶ƽo%1Dz#tG< "Җ[! cLI@Y״usYZ A c%f!+nΤOiKoFp+$!}gx1`S } BÃ^r0}1PbCY^*XY{}`E ^"TO_?V>'LfxADZQD^*",)Su)a>1JK}5,]0ߚMƲ)JZԟZ=HPUNzj=Z 78/fe Ux|.I! whK!X [$e=Zc^-|Qw]HNstW]UPjYO']Ow+I !Å?JeՅ޸~ |4y絲\7-t,&r\UÎ.% G>ɗupexąosWp4=| up$ *{6%. dֶ-#0j5)RO |hsN{NH?Mji۳>*S\&1WXKsOHΟ#b; ^z~t;ѐ@ggXP=nWRi}00mBhy8u+/=|,35OFBRhI[[R٩@?(qBNlqE=s:q/AT8W|WYuuXz¿8 vNH>Yc˙P+)]3vj0t4; >?p`s:`NͧiV\c/t~? D@J{6T' Hf`t2bVIiZRM!Z[5'b@=2hp8I>6QDg9 R_tmV 5Mv+m?vbm0.)W9RG_ ۔>4z&ԨSC}ʸ}8U.)nͧɥ6/u`{#0a}0򖣓G_ mr?y(8oˏZAqI Z UoYX6v#&Ipbo?,߁dts1zn!?g1<,xe wd!>8uj,?ۡ-}zs[@'cǕ<ϼ.ƐYMkKyF܍hZ7 s-zX3H% ؒP.-B.eĚ͙פcmW}+{'[& ]m+ޝFs7DYU;]%"%߻>DQ ZCk5R"j 1o[ųC2`La'Ƈ3i_t(ݶ"~8̸0bgQ%`}(:5&jt U_&||SZͼ2ޤ"p+E: 2Z:9=G(E#9JFjΘJAx}-\"{b=(x6pzyA6S8Cv>:1N.FHaY?j!H[θ2q`}W*TsNbLV.{{$=zHKv\Rʊ}-iydz Ҹ޲즀DC܃~Ԃ(V6 jUA.pLQ .?"YJRB8g-VZx!5mF75u z}v룓4?eEi8BvOR&Gj)b 4Llp6TI'LC37gBI7]IV2':#s8f,/!AbF8T=oP%(ق}´0 qYi$@1@(.DӖ5ȣ+.I7ׂH<۝cOl}Gu+S`~ :-v^ӺuWMMDȼcZ^'jДz0z:(ԕ{n%DE2籍%UK<M/"ϚiµpiYYZ@1E'A!mzb0MXc", P&¾2vd">vd"9]@aAx_;SzS aD8a8=XxqTWR) dvٙ}|Y؛&r ֏# Sn}CYd%MwBv~"F %#>՝p=:wN <۝Xͽ,\O%8/bgh  c n@@p;G_aeH* &.mMD^\Y vrPLFY-X >5I1!T> 1֣`X;Z@N^\h?+ h` 00IpwђƬoHvRM@׳`2":Rmѿr=ҕAӪq {W;X VpLX qm8{"sr~d:~{OQ\Vlچ{dS/vL=i5ӷr^Z5)>$дCN:+Ac2YěU1uec QYd~`$Yh|I.jpe: G0Oh߮.^)]|q{eXwm~h^9ҽg(qCi~Up*b DwtPL5 pb"-|kh2s8kr8CG=󌢃`ڎ@%`s]VLq?\d!$.|&f^?=ȁ_|gj^YgU8s:п8}tW_A^*PsIMj,u k~%u B;TNn@:Fs"B(*O{3`υv~C~qϙs17c^v/rsnm_Kd)3X":{v$IſǐKs ޕ]qg8湶<]mody fƓ=z!k1H/7&9o,w, nbA]/ \P]<¼{ }:(E{`h6Q.]6QAᐆzټw?5wKxn@֝Z"_'zeA{9ZOͳ6);'ˉB6ډFZMZ|`~K:㠧& ?BKv͵\h&Ej}lVG Ԝ.Vrs2LW=j |>v @ecbXp;1o. R@( >]̒e0¡L]*hI9jkq,qQ-In}~/6WLA'd!{m8za(sM YIԗQݰ)W1-+;DԀZ)g(LTV;%WAjB Q{jVӡ삓{ BO6i ,`x%'U}Lvr>_GpsMHTf~ ]a8;t~Y9s6!K<2efu&wЀ M@XԅHaĠè[Fpƌ8pH? _r:IRȂqhPi3j4I\Hd3]Uyk\W)3J+ :=͜%g&.6,hlօdP̦A2\7}JHX> P?caNe\nVr^|(؜PwgG-GkUV*c|Ԥ3Y:t-6eUw\ R+ˊWܲKDQI cO(8~*4ƵB9 t׌{gȰ!UNI 6x *R޸1$D]l?zfB1Vq¹*/'h2e>lALgH[$y:HWhN0s(C[q&Fa|۔#Pw{²y@\v߫9V7*]"dCba!Y {4=tTie[;w# #v>򣉟YPDu1Yuy#:zz^V?j(" `NNvWQ}kak({X0X~BЅ"nvql(*eߎH!vdLLo BWIV`Qa.WgbmٴBoH ӳ7Ӕ'SC!H*h$δaWl0P`.ʥ3!z*nb,e挭ñl! ͦDiq7=P$aЧipZi+iB|M&\t\h?wU ݑoJ`L6y]|inhTY5nǨ.ح=Iyj|ŹSXUZ6Q^{(Y 2+m1Eyt0T3_P)ݷ=f\P 3mVexOIaeY'Hf(YE旇56K05u9qB4+gBLx(P,0< k3}f }Qͪ87bfϕX?S|GDr]Mɵ껌4ߴt. Jnݶ}2W38 3ݰZ#m(kkuOW_N9 $+z3HPLwk2z{M\G J7 fev.ALr"1LPhȼSBlr ِz϶>`iE"A*ǀBta(~~W7OgQdStjy.f|(eퟸ( =`'xD,dh\a襷5M$0 c FALU8j-jSG(,Ykѵ37X +x{3i!VZ_@$Bl uNO؉A -Ifl>JBjO>|TAW8c;c(<%f"^|zpSQѐWrIHa䀸8jfm:njWZxn}py1eLN7 "py*{ k5?5)=x[zVt+=6u*d5Wfr2 f:LY<2kQ,E_ |ñR& 8m!` "z)t!`m hV>`ӧvaI^v} 7r+&t듽ep|TbDݤ 5\)]3hhU,Hˬ/A.dc8]!y6Zl\e$y܅-VqLU\<1^-IU HJnmFw>ixW:4~ z2khj<ڽ1#dNpc&;R WfS'쑊AF1 |B'0.eD]`V9ҽSu.ff:) {n3E8.n:"9pegdyS'S@TY6uo[QjHQC Q 2|Yݐ'@-22Sj~?τe/}b {(߈H1#U(]:6)hW܉x<U"T4 F\cmnp810Gs!6aӌCRn}5h$pȊz"Υjn}K 4ɹ.ox 4Ĝ6pG-y,zuEU7X9AaLo+vXwZY!\{Jd/xDwaӘj%S={.f~OF~2녵ΑV&p4h=Fzu& [b+&Q6y{-%.ޜ*[*65季昻#@GmN¿Ơ 間Fk3Mϓ8cpBF c]2~K-[3hl*]-Ed])&eaZHSxWR qZs>Vm:Ҕ繓>V#Is1U?cu={#/a",U^oQ*U? ~Q) {;ʳaİya7L3VBfpQI;4 Qf f*ţO-ǽsKN-cRULeNNxt~B. HΪ_k'+C ɭw\g6IOQIJ&҉"PH긌??~sȨ>oIjAQ:~qZG`d,zл#'{46 lR Z2C?dX#oP9.AIt2 Ҡ/=xgz}w^$νgK f>L^`C8D#vf[R]Ի18Ҝ NGU>h 1{HR*#4 (OY?M2ǵ{@ިRD=nN#Ù x~jo"-= p p G~ߵv]o DFNR䬾n5HmH꘷}ٮHwgǹXy$??-{~dYMAhZMKto :YG1K_;m O15hI;T5^zM?iPRt\Sω 0O}3IH QKK - /9gmMdJX}m/DgٜCZLv E(e a`o܌C7UŘ91|YL==H@{to>Tݥ!b_\5;7K ܧ㇃]UY`29VyNsw6o\uXRՇ$6CQWD~=Pٖd?Ǣ .0lrpV)uȞ/ wghA؛ǪKL\uYAO TEzvcJ?OS1e(;9XOlr-s%Q2y~pLg4!kBfvqSu*jrX:o'D?X; 8]Ŧ_A|3ʟֆnw*m`D8[T$\LL9O'd;`m!Z5NBmK9^ɛݞ}z$nB,s " }Q~9J'PvuRM=_a{p~rF/o-[&R<ʛ'GTddD Y3D|S zgjW*h/F5(^C|slؚ5XXDS8@ ~{yBj;Tt?Y\-ԋV̊m YeًnIEY X@Q&4Sʠ/[)vA𝿌,h3Gۈcш.VLV6S`Xj -ڬyύe^a)ChmQ߬Oݯ:$D!X?>IŰ;nC~^Mjgm#7'UtXCp36cq>01Vѧm,~>~CcnD .F-Rvj]BzeLgЖ8j[FӊM=OA*3 .*X߷XMKj ]ʵkWNwFdR`"^4V[*n_LC`>{rԡ5Bo?i`$t.b?_=2;mݵ9CuvZ'&gF)9H o$ @Gx-E{Pĸݮ] |ߚ\%#4˾&joZLhBdF.+@' *'aBh}Rq3l<6_xo !HRf.312!L2"?'wJURc<FN|a^\vJpf"V$dZx1Їߐ k"UIu[j޶"Tٲ7R[W:lj;+ PXh.CIũL+Ǯ q;ZUpZ\M_*D4[*H> |{@q!OM4]\'pd{v-m]P:py3L);WsDuZ(t+q߭- Yeu K1 PJYҗS`EwxO"\V~y-_1=( Fh\P5{)aWuM)PjgWC:y k?CC|sU@J'O)t^~-)M @n-6V"Y|Ɨh E=L(ǰBUҢ_-]  }©cf[#NiW;m =GG؉U=IGy8HAZ$9Ub솛cbyM>?q10PS # nqI@T'wC9K|.wJ5悛Dd䦗+Kx&ס7:6Ь8@bV[TlW| Ǿ/v+c+11Ndw󗪈33)Ucmv~,0L D^5H 7Bӳ FNL&-wKɉv = ~hKe#!_Q[X}R*.YG VdKkZovK_/Ynޯb$}Ft" K `.1VNcO!sܞzn(p4xꉡRg~9:^Znn3a3tԇ[-DAQ;3A(AGe]I?zt(019("ռi>YGi"ɪ՘y*1vںeD1|i0d/m*wQ+K67…_GﻝЧ(9d~vh-UR ̞2ާNߨGlsaSHj+g%2lY1X" h1Du-Nwnufe̜ŔژѷfAtN+wsdG J wW9y74YQmUT mu u}?h쫵_]J |CaJe5'8l@{\`b͉\ڋ[eDpe~rO{zgD21z-ml9˗ mH_]=96+Wұ~,KlZOmAT e/y|$\QϨN;IΘඍRûC>g{i5X- d`s? 6%C*E8{~Ѣ]dN$aG?_^^v3l_%ǽ (TwkFgiQCyYZ;a{{oEIC1 8?M;\ϖ>\s\ Ooc gdݹ)\{˕N"HpG,]j ` Q V nmއA=<#NaEۻ٪Z.o9/o荞6O]z T݇56?+;wWW{-Gy.`qQជsPtSV5)8|ƨIĢʡI4sl#{)0K=7QxK*xqE=6⦈ш9Gǒ͎dtLIdŬ'PZ!.dqj o6AEMfqUfmQx6"s_ġe)".k ("pXhsMEcnymwkSTKyJvmnS9 Ğ8HF|J)#3G8MMmd% &E)"G8#-0ȉ3RؓƇn: M&pf14CG38H)PWGh}j To"POo8.!>CpO*;-uaT~٭O]B0 ;/O$8|'rUh9p%@M+7Q|Δ:ORrH+Q:E A0!$!i`05Fen[5Xtg5Q飰#eUfM<|{pa ޔ_XmX/tިu^;Tn+Z4rp#ٟ/Q'z x9X8 oeTKxxwv'iٜv!_X2k-H2ev/C12dz EKuZ-7(ߚC;AyFuti$Q˫ŋ]0&blt[}| IRķ p:tH#ChTSQBΰ4xC(ڡQ{ >z? 31k@׈;#S7":8fͩ\UǷ"d㪻T:S$پK?((,fz!mZbzO;gMcn(&T70$^yn"68LQpgJs7F2a@FhvHNItsъ&e3.4CX*~'r{w7?Fq^Dq:N9uS>+`B]rwчJbӛjg¬?OR7wL "I8^ٲ=#p?։-r.n]a!)ժ!ٯ{s [O]ٷIM . }T#PHaxJX4"MBtGEv p2Oi!-.JJH"'>nOL1>Ew 9 5y+S,N|?UwRz|+d e[DIdOz*,wwcAU-YRF|!-F8uF6bfWdYiWTGnWRCsHK:ۅ"̘}]Aܗ#~~<фU^k02YO֭ܽ5[B< )@P[9ŕ@ō| r6k7 M+,} }B$b# Z= G1MI'܃1't+#"ἣc + j;Еg k0SB3څ?= |I: QrV)7;}[xlN|3M{drB BfLDN{bc70i e=M 2|LX y?-X꨺{eimv@ęOi9 B\zO>JߺOkDTb>g\FϦͺc&yyB#Lit/eMo!x+>xZ(0XzBIs\-[Vg1@85K-t;I1oC k俢4Z#L)RVy^CϞ_<\^X`- QύAK\9Cj p}$|R$|Hm |'0*i͜jgwCR kf2^jRh*!i6nO@8 6piF,YUa02Kj2<73 {̧p, bj*SOPŬ៿Rw/$9.6wP,MTDb%^g {: E]]\f . Wv\ždq"P!rqE-QA.ձYac'H4a 'z˭s8u;L]bA@?bF'fÐތj0B›B5TQi%$A[!Qy]ɽx^0QPj4n}btQ mVlg86?Jz'Jd|'|%f< dzV;l4w~I3<0xW{6bWtGDTIb򰝄9/(t?0H}loɑ8i b?l>{З<5=IJr*"EM&5ʖΏ}`D͡ӆMYA#F/ɽ6Z5SRU 1rru[*" ͰG27)3?ǤI^UenV.p%5((_c%C-9+o|[+)@[T`+.W/ cu6+o)q͍)\>;_;\~ !KR]I HNq]~{Wn(|'`]FqS0bhz%%#3'XpWlzAnp1d>a-W2%f)lW= 0i ݄fmY\>hX$ʭ¦wcc-L`CˢΑBvI3滓B7\ϋ )0efj[yKפQZFXE.!JD@SnaDFQ&!Eea^BFB2pEmbîIu)+5Af򼝮HynoFLnX6޷:qaG;amE\|XBC l)wp2ʏ;>Vl1ɕǹˁR?%ʣ\ߩ~ mdH(ʁ(kcQЃ7 7TѴ%eUwmB3eF R[c"Aȏ*ƺ9\q_ӀsEGUn|Ya_PHl-~ԏ'mjFQKTC^FqDT%#PTu]&`$aHWa7U.k&FgoFKR#K4.k$1ЏAoH2/BF3|: '€^"(CittW6U-W3;mIO]ޚx~⭌;VIi\34)3ϠIBuZ~)r~(cƁG2P/<  )Ғf 2zmY񞫀e-X} 0%K_ t 0|LLv`ح[Ůw6fo?DɜAReb~sc|k \զgH 1P0=h֦ #e;{BoY@h G3% :ou Eϥ bUQ%iGubgQ&7>7/\*r䫰t+Mc~ ̴oTe'KG\ )_`>[z(%4i6Bb`ȣo:rXIFӉidxK? :<ዄPIElR*>Zy$p*Ǘ>heZ)Z\uHoBB|9C^Q]-׀@Fᴬ,3E<{jN!"y9Ic0WZ1מǒk{;:.$#U(jހڍQm:TڃypE9$Voˤ]Nj7hSJ(vo vDm%q<N:Y9v@ kh'+OOK ُ+q |X0vkKLQ-KT"4M(?Wwܶ*Z"mJj]2'smkYcTT~5 &P~I*`k/ }!q'尨X~_g~J4{ɓD_G p%j3 3v^0ۥX=mT6U=RSYթX?ؙ c>'Qcu⟯n'RO~& .+F3"ec]L@Ag}O̚x?-TR񤰘.$s'nC(N4FЏY˖r%3GS qčp b+}sy:H]"I~)` #9:3̂xQ~ Je&~<-)xhb ?3#q=$yȮ];*owveXܓ1Y" T`ٴ&@ +mI#!o$t_Wn 5<~[~RA ڜ[>甆Zs޿ј_܃g>LK_xGW.E*`%L sW ΈHh)hB+~P u+G뉈FpQ3M.qgճMI\4zKqNb9LO7/Lv4R,Э*9?!w{܇,ES.rdPxF,OWyƭ^ٱ-=2+bNMj9\f 9Nc(|DK<#͝|?3iB N#qf_)>鑊e#Z8xRJzhlfL`HMIE}MDkk%54Q}8(aQgo@-a9BcSjaLTA6Ϟx}<bɛ34YAQ4_ʊZv=aHv'j!~eóQtS115lڻ/)pʌ}t蛑dF)O Jq9lgM:>6-QJ^קXi+GJqEPp?JIFuNFa`]]y  Ju ]d:L}ecw~998 [(dR ?Fe+E(*뺛{F/w"+ 1.0[P6nC`ć9EZN_h͚n2<[Za/֞u2϶ɠ/ * 5*|xM"d9Ca|3ykGb.'nky (%KGu6,GlI.BxBNю:8P`)tMlw0 fOWT[(­1Fe 0h -'z/}*@D-aɁܓ9nSm!ޖ;\Ek  ԙKAY];vG~]$u?HC8gfN"ӭECjh%E@<8NrpΎ-w|[v@T/ =CxnGwF<(XE#jpv%аGH<\wKtrUXBUR;y4Tzj<j,ES½ QyYK(6 ifΕgR_\e~OT6._)9_[C ZZ&|[$3:,G@R\E3g'nR  {g^;]`~ 8]~6˛KRÆV]cK}wK!L㨉MEL6MqjuCT ~#D陹d`*aYK$3Oz(Jl칥|kAa&r^m!Tw6u\!eIqf-~+I!ђI( ʣi i?VB2wq wXە=Χ/Se nspVhd\~t}Bpz+8lV$͕}D@6Ri5E9E^lAL4vw },cǡՌɤT6mbBs+$8>4YHbl*|ps&\\ [TZIGyca+$6FV{[Z=+BvGNg 7fr':z+"&yg0xQ,C([h]KG03TN.k& &4HWtsEКV^Q+Rcq+" @GWY XL:&Up#MhoD v2 hךc_ȷ[{!ɥw_Qؾqp!x TD}b?o/ &xw`,x = ә1TrǛgmcfN[O|gD{-tc,kLԴ }^%8K'gBz5v)h3LWût;C &ƽ.mL96 P;~[UDNbTj|Pv"5s.b7Ev!΃C+:nIdѡ7wDf_Џ;MU‚ƼyVS\5E[)& }΂\5:Ew#aoPRH/.yxg!Sï[jzk;pu H9?3_^vPVDa~+SOI()^UJʋ:?OW#5*׬9ħ2q@nEص-Ȣ*P..ⒿIЦOr{D1/aQ'C$.%zhH~}˚ss{~BE[8I95mnE~SeJ#+)1vjM,/R^^cjQjSͷ:w>P]mn*2Z9 q "pOͺ7&?r(cS#]{U 2۸/M8v&3l0@#T ]BdEz0jl$yr-\-.Vv[LpStiqP!kze=Y cThCjb/q!ϱT9nI[<NE0)sR h7;,'>%c8`dzΓNoG42n^;ROxk\,Dz!}hSr ݏ! cg ibx\Y+]Ѿpqo\:)hKP3NI$3}0su)rXxzf·Q UHRa95gU9#b S a<;QߵU6qMҷ0Q+\C©m}> W<P%HFn)=ϝp+w0@T2.?' Rޓ  & >0&z@(q @ y4sd4K薃c[>%X\Rb*uwodՃǓ53$ï `v`P H-!m5x_h!l>xY$/8"9海~P7x: [,`w?VВAH {6QjKi{sٱA!ʔ}~[%! CC"!8E}*Wb 1fT)[# Vwuu&% T^W`xhϲ,"`4=W>bjʎTTU*ffJwUJ׺Lm5b1gIꕰJ\u0 ŕ0@2`*0RmЂC! `VSh$f@[+ՁB;lt= tn;ݱF]/DnI3^jXH)wnu@ߛR9҆IjTؓs'}njDwˎ#Myj{f[*]y869jll { jML# ;QZ`j*}< {P\j_?é~DƚDU59rK #E wF/Y'ipWE&<5s}*5]V h$7@D ݉ [PeA`"du{Ԣޡ4IXaVakqϬo#FttփsxXrKW`w̷*Vgz7<׏+ڊ.vvS|XRx/fN]T [5KO6Yf: 9/+9/ָ>:>0QT'"5OX uƪoЊqfgoFnq,pHߚh".(- 9G:;38ϜL3d,髄^H"=.hbñRZA^F T#%HmKubs@\} D"51Vp[++{)Y NʡkO,*ߧb̽[ }piZ)%B`܌|[ێFW2Tq~pD҈ "qMeNqo Iܣ܊ X6w Og~Ù >>iW(-TRW8DD?YaDf4mA1\v=6$ˮ@$}~vKsYv.^u'1pKX[_v#r8\.x#Sw<'i Xȫkm7ZDZq-nnv"N?c܇{&u %r@O3C%Hx̾ 4*+(!ђa gHzeϛ{ؑ, 3W92!Z ]quӥ)?k}\Ç6MҲԓ J%N=,I6[˃M^g]'bpaf/;`$̀W?Ut 9ma5uޙ T>x b"#R)bzQ莮2ݲYM9~v i5A7½j!I#f(!7O 0KtƤàzwO*J #l! t=(] W%sm {!?o :LM ;,LAk*AKT]m{$W!TYc&`דxC$Dڑɕ>ߤ?z Ȅ8u$H_-0U";³æo9\`R߸kdI)r.Zc&(BK v/!]¶-ȾߚHJoKrE˂'gq.&:&6My VN @L{+Rp>L_|x~Ȋ0#tU1bJ Rs`3{1^^ˌ6I?7=htžnP04ןDD/_ /QxF.ŠOX7FF=mp-ȢJml7䦗zwϖhð^ 7Rݵs hJuo+rЪ]aOnџ%tLGdcF~xL9mS8-(UpV#Cɦv`rx.Jr).HHko d,Oq;'}ſY6vHL 6w}m'F~IJ]jmiZ|'!. 1JU!'i +k%hS&;x`"3w9PTB︺Of7sdH)\z=07Fɹhk4@qk4YCM~,@1eMgJy)%o-*3e? cgA+aK$oP2NZ<.!&)k@@mDҌl[mYT)#L[~-< -AL3S/#VwAW uO 9.gMwIlKl]Ϗa葓MM@4%ҁԼN:^:C.LIu: 80\eK 1e 4oJS1iڢQ$BW#^%JcP+4ܚA_%6b\c'T!+{ ш)2%1LϹU?q/(HYriKB,-x_g|/)0#ךLHJkԚ*TLk8zP<ڏ 0TĠ0 Jscm.lΣ]d46D Aw,**KM(7VCAnWO/Eym>q/^E/'9(&<ix6SUyk5d|_S堄y"氩Zw[$Mn?-~{r>-b3$i$\[zOmh gIMLΡ29x^?Xt %b6 s 4)>l+dK0z(iin=)xJ#Yz;\%Psj:i3$a]ALT1ۦ@?z.(t-vOyƱ󇆇7;@%-Xpj֐& ZD4zŇly[=]R?鯷?³y kF<а,f i+Ǥe<-C(.N,7(oye~A'%_?ۮx1擜Kv>f]w.!*sA> {WUHёEHjQ0S-}mboPX,~`vyЁ?b9I/|1Hg0\eI[m\ō7;07PR[׳THM/1s`vY5>gSYg3cñD#|N0QRe],!»䢌?sT(1r?>|[E 4D;4,bWm PFţ0ݔ~0 =lvZ5)wcNa/۽QZˉj{鹏4SJf=&2']"w|rak+͟*p]ݧ6۝Z,+0u[J'@w; Xkc'C5: )mF;'WQ*5-}GRޚz1{?rs/VMqi3'tF`SNW: /Y[/vjN 2H܊}e]w͆>xs@]c&2>R9ՉwC 8s&׿⢦Na_Uߦ 0ds"=F4jp\VZ4ﭕ.oO*6IafT6&dpd:=~C`$ߌMh:O!US# |hA7a"Bvo*oXIv5W+*S} 3y+W eE -3z7Y(p'aBZ6%EpȈtNvl챂S竦-+e.xbeF..)GC9/loSC^sx(=t>=jnZ)^\URw}Z2B:M7jY'Kp*w`3ps |*kKKm 9Jk eJ-MZo &jy>rFGodpYр{6~Œ QxǝP8Z\TO1NVU@9z1%W߇b)d .äv 2G6CQ"h!tR-fdlӒ4C;o+\:-YO+~>eY5d`.JܜF.kJB :ib>/FP.~F3;E0&JH\V4"k\~!0  Mv,=mw+i̥O j%Ұ﷽L-4\(ܖq؃~BfEHY@f>}]yvYюYD9<8~CVkgd} e܌bn_ 27%kpƚv)L]mӱL>x=)fmW`^ൺ`jRҸX _&P|˦˽' :³[pqp_i]^=d$3p7m<9+ zTf&T9Tk[I3VɿʀEmD#S_:UÁC,ϛ)9VؖT҆@6D{gK |7C7 v|ѡw|/@ pS}U.;Y'Z[}ѥoЃ N$"&P*WfF]zgB6FYZm)*Qp@[[4W02~P&-=* ڰb?Fz -icToviO`cld4u%N(FaHO). K;ɍ/eNV8]+1KmK/@'?F@i,4(GIj6즲 o')[M]}9p2YYEՉw?VGkWLgvҴ \3uj`떘~~蔟-qU&Md*{oT|oUoع<ʖǕ x';?v}e’p 3 - Ŕ$!tfWc^3-$f)V~yS*K"`T"W .7/h@ICY-#nW33+vt4riO`|q5whM˲8$k[1a(Bl|Ill-,'Z (\k>hS ٛhqչrWB)TuiTbqza:\K)0x (!I4,6/M8%@c@ veP(5i. 4h50 oe`Oϯ2@:Ep$PL{Xwr'E,k_4"xz=8'%9Ǝqp;yEr+%?XSi2Y}ٕ#,= l :TvFYQُRe4_y[ҰkyT ]Lұ7#4Trzr.$I1r`PvjJ Z_/+-q&Mn(Q!\x[ +['Kԍ@x3g(^Պ' A2J*WP _.Tz]iɛƣyy>NO˽yTmu9{cj@;d=N+GiqZ"ZU7Z.&λƟWQ1}l]n0}xy-vkg?,2ۆƌ̩;my mM^m̃e(\FfV!CX5nIuxN~Jc%<Mjnu\A遐a5:,Ćnu4TEu%@MN[obVc3i |m9>Lg'?ό0cu(A;L4qEY}؆Qigh 9|BhLJ jqت0K qf pQ>x#iosqB3ڹ`z6xvcYϊ.aEa*&r:F՝ -@Y a?% *$ȡ{ <!\9jM˺K{*%ߩ:e}meCƀՔOȡ'ˍwHb.LX)+IX:s?Bj U$Wʹ l}#IcHw~iñҊ?pҲz~z-@$?`NalSDQqG+A̅Iixs2HPzE-;`YP ؄c1lLs I@8ǠH:yEGa Fiw *s/^o`;2,IuDK]^1p NER0yPE\k \Qz3}BtVF~(vc|t7BUG$}ck U漜vvR9KD") (Oqbn1z6I |$3}x*ABLIePw ~6XR8nr*"z,6KNxrQu84&Ebh!0\bv6iZ GZ01'^h+5\Ze2)\{͐'048joPs| 7 $ƕz7%ǞzKB*ӈWd8BMy*6rINSՙzNٱJCY@~rd.,vZF5Ĵ3߅uG>"}8.9͓n|A).c E$( &(N/&@߹`aes+@|VA»}%}{f:-3E,# hqO!U-f;GZf(Vޓ x+Ti7]IFn@h6a^qWy#p`Ud>~ۦGf74}V*vҞk3GU5j;K]]]Y@ -{(j+{/ֽ_Zyh+\7k͊?8

5fU69ppO\M`Dɻtuj.Y* rx\C%!|Q3L4}y\u߷+C\[YRRU?Zq_e"R#Fd\滛{߃=J|ųBG!R,A!6o@}~[hċڣPcؑ.H™ z{DU ֫zH| Z9}`-ᄁ艒InT*7>Ap_\C &:Jp6I2ښG_T|U9z3pB0fg[ɡYYt: :C7e jW VMt¢#]n'،{#횹 ԬZn1 bkA=xfe]e!)`nړ<Ž1:.tzqOIOعVI Hn3o=H#>80Y#Dr<vd{vBB:'A 9y4 ?LgH?l@ K#M܅K) %& DbQ/eH+O3톌P\}Jwdd_edeA($Ffޝ-ī"3C&Оm="W %b :\OҗZ><-|-b š vN,b#;GyITxX`I)Z NtO#}d=@WC$HM'Ө *Ud龬VG<7h"ؕ, ?G†ڌJL31%я~\׽+ώ)J i~`ņ~&} or33<*|\$F/k%CCxS-f?/% e 52z7ƑȱO? /+xl1INͯE!c۲?1j>d' #HD:u;7@LjjKoO7kj|AlwbR;97Z.V]!/NOt:e^"a]k4zmnIS[ĢYH 1)5d=CIT>謧m0`4Rc0bS禪 N}? NK$OVt+&|v0e}*Ty#io֔1 5IxgƜ~fFD8Qj(T5=R);cy ˈR {MOB*P:W+j!5E$dcꙙlY¹qb!G>6.egf2'1_4?_2)fIUHN\]JExE % .B'6*5&/)۰Q:GMsmuHf53=ͧC{QlVD{Q`=9H t!7%$M#'ЇƄ vޯl&Qyn 5b'9+ftH4'rDL||YmX׶Q{=B W.TH׮]}x:to2`hj._,fHSΜ[P6jC/?=ΤX#(!H󝉕rhSx5^aN~(54XJq8iơuw್%F,TdWp8LsL}NfGJTAzsFWV>(8Hz%겮 -/u3Kp̑F[й0-5襌F2G넺~ aW>_@LIֲ{*8b$?B薶k .*{Q7 H䘙RtR vUA7&ZNIomNr{!⧗t$ZVL6ᤦM{Ў5#ܼ-`A2 "%GKl+aKϝ^L:́ $6Y9)˴J/DKj;S? z6J ZEfg}4p7̋k RRHH /Oo+Uo> GJ,2쯞X[).Gk$E ^U; :zK8ZBүnfL<>HHL[{Tۮ7g~`nP41fiHZ|,RbZ2% ݳCfA|$…[̣$Bb'=7UpcՆ:7u><7}K!f̌|l2 &`hS)K)&v[5*im1ZD‚ۨHÌf弮F jg Cub_Mnx#h'kILS5up/Ðp-gwH:n koBh4؀R~7]i=,Ezjn^OHD'z1;.o\{5F7*Z Ƈ89Z0%d8!JV(MOp}D2#G70(y"Q:p_kd:b s9أГj1fUCnWY"r*IlM33 :E2dOr"sNVON3Tua mFwddjg6ux_1@Jbo5Fm)zJhn#$b6iEjRa=񨰬[`Hpڨ=oXF@6p>_j^cE;z ߋ1Pt[X.bM`>*Sd&yю4JL;}ri}mcewikUՃc#|Ȁ]H>d=p+}YJt* J8y!bo$p^|B=6wB\͏ &kHiLn~I `2_yd7&ncV=*_f䥛D ͬz 3xEq<61\E T·F['Gp͚t?+jww,8Ck =ph_Q48'KՆUsW=(KK,Q5wsEU˶&ȫ$_|^B}r9r9[Ψ/dVůpJ,Udx"(bON7/;Hq#_i1I^WZ}L2H.w_ZԺjQ8׌tJZY{Bx10*^2TG $e;6쉃nYt2X,pQ40|n.Y$'wW0Vih,]$#o$_Hvծ-A/˗`K*p( U!8en)[95GH}2q豗1pO1U]}V̀-y0f9dD$uK /;6ը&qajY_&i[;tF|;;Jd< auw :oو]e<: 8X6܋9? xdN / x7^Q uyz e1EG͒0ʡ[ʲRJ1cMc~/}Q #m70#5S̶? 9ip|Z FtcE#ұE /\0 AXR;qo9J(ic7ʒ5̻Vj(T-h,, sL@z׭0 0~ ۥ%0"́> E^r<Y(Gsuu3vB[8!VCj7*h?RÍ2AITvBVVf+9mo^Hp^0DOѤ4zd&R`tp!<6˓]vjh\u:LPu%6K+ a 7 d% R^}؝jK1 w`q{,DG!^n4#9a摷aH9 &4zW7, wN a4Jâ '}SvL- E??\q;py*E˳Xs'@j!k k `js=t:*Ty5ojJHeMٸdrpG͐Acc,c J;R|`{@Z@OʧuXDޑ$b4$B[7ٰ@AL>ن r_eh$)}7QǂCXϝJG-$BF|j]ƨ@DRC2̇m= ʰ#s0[yn4WB׭yYi:n<{i#́-^=R`Etz/=PL,^)Kk)zAq?9;qi! }#E-{j7Mqk,uƇ'Dd}{WnEBA:&Tذ͡8(ԑȭ7^x+NK #qcλq!Oe){ADD~|cwadTQ yjBT(Ǩ4u+Tjw9ZxmB6e Xf~ Gڳ/  {AFT[!El{Y^V=7\Qsb&2JݤӻRpNvхTSCp?lX8xN[:tq ι,cj!!G@Unmk3 CTMDso94NIC9"I$Z`3͆]Dm@h˷P&ʼn]^AR *B6 Z?7_@C"+D?p\i-p&G6#~HdQ8Pa92\ }d" ]/)x0@a5uϯ$Tn@&~?Ӑ GI|;E 0ؖ%3lAx`0HK_eaILg8m\$Bmbr]KL)}N$UƓywWMeH\]Y睌RIfj|QGiB/eLuNB.^AYל_im9{PB c6w 0jKy-wU*ÄeQʬkAȴ 3i%FkG)E|~o H ?-PDp:h(.^?ƥ( ~gdQN!z_"`v'7t>I 5XTojmQ&8pu( Fn A,CE*:6BPT'm?wpө V0fK/tcDRvbߕ"j8(m"'{#mĹ4A$eºkvl%|Ϗ]Iաo7d(&Jf ƲWL>? Gfg{;:QɦCR(I7}+g<@Xs/cAbZghAys}oш\gGcB 8A N;>>&1+x~81 (¦%jnxT >ۇSc; 5+Ƒ,EDqlHA7aahie,7;s`]@d_P,_F of7jgAU3ҶP!uئSx$+0S\wПo ' QC0: AW; ae5Gw,D^x+>řx/~EV(v ?+XAC[;>Ivlx+u#X'M]1J`(_8V~>4*"U Lv*~$6hlS`~9|!7bݕn06<?jz@ipĨ\_uJRN?vfqGT]m-{^["PX1xXuo9fgj7'cq=4ڠs lV7Nɽ-O_;B1#oaAG]o{ t*M`ukz(H^T<r1ܓ4jvĘW5l:6ꡠ&os9Xv3nysDZ!AcZg'4"}7gq!ճxp}T㐀 &yUOOq2I!ޤGw! ?qPXb2&]$X5O!hN:q$'BtnH'R#Vd:m8%$< lCŏ_sEy., #Et6eldGiΎ2@'€;(9LJ/ExCh.X."V9;~E9"eɋW?wKNMusˏeFr~}ֵًl<0U.D>vj+T{<=3UILꌆMz|pNaZ2<7v=9C]Yf 1]u\hzri4c3>,Z_õ:(lBq8RcJΆqvWCG OI4Ġ" M>![r#o< iJg2oOXZl۪2F탫tyBbx fV@Y~<^RH&= hmrFF\_ʥѨ {(2=1(jNRO}lQc'*Ls|Eӝ`kgd)2DUh6نfjC-@6M%8hntcKulHu ُ(7G= ܆,_E ]0zMkUj)@4$&OJ?vK72teFD0=U{c߽E\f)ÍT?a#[jP4ƘCGDePWpjK]N "Kd `UunmүWBT-h/7n\h" o@9?f`ؾG!7Ȳsz-X <̅luM5R-=$=X֨ek_dѝ_pNEo;z1 Y c*%px{ )!G֓5[5Dǝ3Olƞ[6pJCv; h4G.,?\{ޚ7_>?2z? q裈uޑhw(~IږO߭rtL;er[6Y qܥ$X¶ hE$%[=0/QOPiz҈T͈Lk}[A'M}?X(VKC0+,R#FZdŔf̌2pG0;3ͫ w2:vs; ʥg`>-hR8f'lcD"WR' E^J,,Ƴ0rnǕQm;8^lQ`_d?EEY۠֟ڮ\IJ M++HIe"LXvRhC8&1ڳ&A&XX}_[z_6Hp1Z?{EaCЈ{-B/e<ݩķ<;=+=!WSOwvXVW>Y^uM?C?O/)w=?T#p7 J# q~W474,*;H'mx׏P ?cYۄPK Q0؁{;$FĘ?$u  LZE @|b [T}I*C:6ݚZgUvk<mӓ'^x:i@xN7퇨?Ar($M-܁-x*h^uWl{"a:e!e=<<N+ rmi xsQjNs<02[Ow#b4Is&6EM*C? s!rQsœfFAqIѻ ÷kt^%vU)g"yUXuV*; fVϮ$&+H5Ґ^G[kg]1gFֿKj^ՔLiX<8I{qy}ܻYMf"b^?\"s^ san djƒuitS7grV[F0sL #" ༬8 H&B"{6XvgF} >< SaZ/#}!6z 3 mi1Ͼt>X"7BeM 'RAc7hl}UOk>9}"ڇx& #Ey΋u8Ӹ 2v2^A)3G^ƼK\pd UcZ@ ޜD8 aIh]F&0GЎ! 8duW:tᩃioU>J.,i8/ҖyOۏfz(WGv91,3_p|Vݾ!i Sz)m"w4*`۽?so .}̩0 0.]RW:ЈWm Ǥ^%%f ې0h~OdbW~ŷՑZU`5pŰ$xKY2O(ȫm#1~|/aaD2A zBiK^Y ÓԌR xka/`L/no!Oӑ/C^(ZwD/XזnV$͋k\hT>SשO4 J4?0P~f f/lW+'7s$O $X~{$H2`LdQڇ$PS6m W12x;" *, GiY*+ -:-k ϛ-MZ1&IKOiS"d7%A~ʯq0,&6N통;jdpObc]ʰ21w&^-~$IB/8X wm66zF=l>^@nfIe-6_ZU3Djcrҋn; NG f`ȓ$0SD7۱q{rg$]k1<+ L,ڑn+nmguLWG@œu2]=3[BPƓYJ7GOw~p],{ ׺ LPM[Yˁa0\:.ßt'JCcȁ'pymrD5v?ηܕ [/y1 (9sܝ=Ѻτ ʌIGx1N;K8xQ=Xx0Q䄪rS^5r)GqH:*vqJc5DZ$$߈Ɠ" 1z[R1FڭE"?/E[9[s $̓vʚ0ijiEɒ! q:]\a;r*~=WP=$o`ϙ)3S_'J?3Iiž!W.w/xާnBj]n `0}f=-鯋;lK_:N&h4&[,:r>Ej)| *,p1(VGߙY(${ z;;BACž(9r/} ~V&e3kG9muCPgLb2uҊ͇a&>&{>K{{ufܸIωlzGD݋C#r1wLx8屨"2]n}Ğ#MzHeI%* >V<:,BԌbNua6C Ļ\ωhA;T UWg~ g(7 6C?d/C|w`2yZ" *)yDepꆳ3͇* QDYJ=%m k鿅]I&1X7ɕeeMUqXg=0|Ȅ˵ʥ|8JPsaڥy]{ k0BMU 8MT<Wd+Vxb| (3irT\% ,åg]Ay3F?Q.8)4zbT~ɳЮu5Myϳ&gؑ;b\ sSW1v m+t ]t|aCy):G`މjXțDI6KL+8E ڕOJqU+ `[D6v6]}\v#6m':QzCFCN"'|]@gOo1{Z~<[_; c44|?rEz8YNxh~b{_/Éd0?Mm3zx(Mg*ƆNvf _DQ)(8 \xXSO~[?7$N]r򥠯,kjxA|cll~QxXGaL.9:)+dpU/3QT#nØELJ):5,\n%<9uUeVd'@X_"~%0RF%f1o pDL:z sI>2]ٍ&AU!R.nbk{9`H`"YJss.5j3g˾Fzgr΂=Q[DxRLbhfD?-zgM0Bj&HzRxR$cZˆA,w)XIZeb#Oo>oJ?hrD2:k 1Aˆ=9,DP e!979umE3^H}ڤ=b:7cі﹉lmFl^/ x{&Qw܊sZqglnpAfl ^h$[i`vqmN\1酪f+[y<6>@to7.J!Հ/tXZxs^הzUgtO=_-Ea*dDDߧ`JY!M*&^Fnz;5*|Oo6oיc|I- Q(Dy8ߥFlP,(HD@`0^ 0\|1 pi(;T1FQE.j2\ \ '"ԦADQV)fئ ,kЖɂ2Ln9{QjK'u<}`/lk;FsOǸ6J ;8<ɦsȕA o5yF`\ Y v|U@HI+bN~xOBU !-/8:+&vp0Rꋍ q"߱aRu|Fpʕ94z7E@6=46M-+^b{˳afSM ljbO^ŰҶur2nq2 U5ԼMgN]"t1<-ȴ#<|NVkn^Er΄QV&Jz^dPu_ 9Z" =U@pNEvh;o 3]fdEH N^>i8SU'!Eo, R$of,-rFeu-f⠥;S,c }Val^YFC =0RjE+./q΄WBDcQێ\i4ґU4O~t-,iwD_>J5Z (]$f@Q:dTJ.9ɘmN8/'L^$ mL.7r,ԲOO2j|§=*k%|Μ`3fC\:۶&Iۿ&/l28] ?|3ժ j\?_Ӣ%UX"[ġ*[@ecĉ @GNYSJt| UoN-;Iɺ$낀9.(ږEñrJsX=@=&ƟDŅ眷)4+Ž!xΟjF=ib+VͣqPdu_$$=RP8B:EIy"Ju Tz7T05vIyY n]o|e\s_9z"niMnNRNpHnyMJvaM ,wG6GuKpmHIVfs᰼ƫXioFjfߗ 8i荫Ĝ֢Fǒ~hC-"[4!F*Kucb1YiNW7TwNa/5DոZ-tZ ~vrO[9 )kX5T#4TI>T+#) ڸ'<=HMJB2=^xCgwbaԠk}1fEJ7yvln C-N^Hj04<(TKҙ:gdF5y= f:WޘH$`W>87+9uX7FvEl%:t69;(aC.kVk:I:݅cT"V^_Y_7 ░Km'"OM'J#}E~H_`VW*& c׏ =ȠƳC\Ϣ'LJ߱#4~S歍ZМ9%b ebkSntI/̴0S̽b95Z@}oQ s):h>`еods ^Rʹl>VL׬b 6Ӓd[B{{-|Qv*hl߂V080;KTzi=#8 )NZF_Bx(uI( 6],)x6Xbc7Z yFN)j]ٚmY%סtca` ]kxY3cbu nRں׷科m|&ҭB|!;KsĴ]Lѽ[Ƙih:%њf5rڢfs* NB"|hV9dZvXd!&QAdN6eg#^o5^HS| 5ل&6=}\39-m}T0Ӈ>ى>QĽYj x@lԖBlTbdŹ=՘jIuց"93' X+Ga3ai$1,60eG?ǝXHOGS[;` ל#l%=S82qhJ ^:tOJu*Iu羹 lpo (4,oXc-Nh oQMU (L}"G5f Ŀp@r=lkrG fTSrVWJR {ۧc4VTًf?Zyԍ cYw,RoA[x8*>D%ۋ M/1F }~ٲjd~`~fF)[-kweYqbڴ $Ll4QB4y| ^gPN2 ߫ PLeH+`.D[T>ʂżBi;|&:khrwRުDDr0: d9I+3t-iN iI (I#YIцNh^?m;HܽͅXR\o1H؀AUe6ti(UpKHO,;'!ìùؐ kq(2Tiah.M}}[zWI>'Gs,Z7FR`)I0P=HuACT!>#?r7p@gw9Ct|[N"HbP3{e@@Eå/E {gnU+lb@SSmaC!O.,QRMJᄾdgpTbJˏ D-)~xҕƳ ,H&gw5E4dؤ׾#B xFMb!'!T}-x .,.Ḃ pw YQ|Ɩ &F落*MoUJ±"zOFl[ŴN;M?&W15#o'U>(V޲٧,B6v9ΥdG2:Cq#ȼkuQ0flCYuLpjT0<&3^65dUA65JEuׁ[4h: R=(VNbK"U\ *D )&jmQ2}D&u`ccc$Yș;IlHl+ ~xp4[Aj~c[R 4"::!ȝ='Z !}*;inc(OK|0mTu!Y&6Qjs wV)%iȈhUk >l[zlqg=Z}鲰%rQ@69%:Q1pC{9|V墰 ;,?杫秴/&elIagI3{mGPS8d+%rؗܪJ) Xo,`z Vh|@ 8|g@,)Ti-&#vENͬXN >$>(ebKQڤYP!pm\}2 <9Hr$2)cgZѨ_6F|_4O8陯y.JZxiP_Dz`]Td_h!Y"|vADZm|'ؚaآꆱ_T[2RE s &ZN] . ;_cJHɄdIJĖi&CEow6]S?QjKY͔}hffH&|Zl?ߦ"܉S|XH+/QlF@qrWmiʉ.RbRǎNbm7fNѼ>302.xF/5Z2?;G+Ո6Eڼwё:ݺXXm24.?zYqV-RФo9&  Zg:c+ sW- PZ8;*^tLJȹ)qo$^*[+ HPbk2C;T)G[d:tUk [ؠߺ_4Dq٥Gy8"(Kh Yux,231fIoL{Zv$\d3-U2&>QadW?X.ͽџbHˋw^~L#3wWj,SZ'̓=EcqmA]Ĝ_CNFX!ǯ tA"M^XJ;"C%bbD?q3Y"l 'TË6Ihfi:N%Zt[YLVBW1UQ;_N >uw2Qۓ u$!l<Gj}m{yAF{Y׻DXWT7 n2vVZy*IvsS!Zݢ|ܬH~\IG*FRꪪ:(Oq _yeC$xq1Y.JX<{藜QU /kIx2~`/E-(P(GH-X,>2UPj/ܫ[^XD5j00%(XǞq}Ŭ2"2-&dLCCDb>pm34-1J'ک\s7k-K 3H2d>Tmt>_Mc_p̮Hi?]9KVX2 j)mk-*S"UEkX1]f(/0 ǫA, 3CGϜФ<W`U;d;f=)+{)^WUdwh Ø"S. v+v[WU VLxwoѝMUqq0LȒe/#y6uF%ERvtHQfCСA\CR>0g_[pQ}:۝R3܈$߼ *ͮ8ŏQҊZRQD\{l1;eP^WJyeI[y])aY ?)uQAaFU˭W0.ۙ4Mݡ:^BZ-zA? ^x,ȏBl῱SD=<1xNJv̳Z@лpkm:u"jt#eXiԧ`Ee|{"E=3)_}Xwi"I45%硫 LvgΦA~dF/> vO9\1$ڧXþDvdWςګ5]O3ng/ Ao%jr>L"]t"7p-F BC]rgP0D--RU2/_Jλ4N~m*1n?gKAN]? bDYOΔt|B&鼇jn&$CǗx_l~&{}zPLPT+LEqC|lkuo#&'hij}U;pK@,{~^Lym?+ULdxo8&i&K$@śgc@OhN__UWc()vw 5 H ;u` >=Cُ35wiyT+~W r/sCaYm< ac/z j?8S? 5rBG~|DO+OL2 td"\T4eU7Xgp"}gy,MTAu-2=?@z3ܜ7k~ŹJbSğk90[U2[gS U_3*總B_Vg,4uvo"ݶg3n[>1*cún QgK^g&i.@X|!({1ʌDMKo5:jH x`lD%Nha'%?]%oth>~'xoz6O0!%zڗQS"zSY&tzxUЖfAJd[ˑIE$lk+F֩Mٻwij%e ی^K@a Ve9}2e-X)LD[sZ ~E#?^G 'E1p;n oģiQ  ;$OR,m1Y ))=@ڦys`#˂lNݼ*@PRBF5:>/Ua)Ors.8 upZ0t1gtĢ 7 H^F*E(> IY8X[-ꂍ'T]-x%k7$5hlyYR)FD4uրS:v2em4}oD ¨.=#f~zRw{$IK= PA ;WY36x CzPtⸯtĄ KAɎ9-zke0$.P⨱Cm>;6i]ZwuzK؀t W#h-"_><ť0@}srd`a=^, #R]\<4~". ;0cN||YA*YYgQa&Y>;Z"kSGtaCCB9TkOoWN'3Y|P*~-srxs2F1\F+/TC` F MSԜR0h&#{+Ll _N1N;uT#~gѺ@l!_W8}`lhTYz*J" gio{|{;Ew:VnA'PY1q6kl>E~ nGiۢsS:aEO\ E|eY9,WRHLO*ҥuDԳt]ut vO\07)3xWU4 C&j}+NO,C`h@b츍zй@'0b XOQpd XO.h<퀪S[j>*C}kuU=\fX3g5M;\6~UWIȑ׏٨ΑX\ܰ+|S~P| yrϕ QR7򢬊>(\`Cql(1¨ (aӰB-wQx^iOKƳ2C9׹h9rDs*Sx6(tvx- DyKC@2\'<1 (I6骱Ѷ09!x ~؟ni"ŹZB8ݳ,|6}m/1qn =T?ad%0*nsk^ͻš)!$HZLcŧELŒ`Lh8ރZ)Z uiBB <IKr3`2fhtx!KqIر`zd/ڱxVT$ԎJG-+jDғg$ʐ5ǣ{.f܄zD!H ΓF. c@rUsk FNKg݄"SeC,ߞ09fT6xo4rv Zb([ MOQKhTޣ^aB sIGi_*Ы1o,,, (vFߊhtE2E+sߋ׏L!.ʅ fԕCUKֺ~kPj3tQh7jd/s*}G S,"0{~X[-2* ƕTn, fWd*2y`XK]zwI#ߏ{g7$"H-%(~-c< kd%FYB eZ5[ `JC0Bd/3v^%ޒ`W$ӮVNn%ǭlڙ~*X3FF2O[z$]X(ip oYS&P& ([ʑ)Xr)R ǜo2aũ`syX8Nn@>\.Qڕh)E#QYozapב,olu{IY ,O 2'6+xpXvYmNMK?Tn22 725YZf gu:XdЕS-GVdΚ6XU2jY4vo'8L ~ۤP]%'3Q9 .VEa>xkOy 4\ =3 2ag;Nѡˆhw1ݝ/tewl0lWR{N J` Yf`S`ppr\yאޕ^<&)&V;chP%U ,0ViBBsߖ8BÛC3pUœ|걗9b"~1aO|C>)^g;^D.4N'`s7- /_*|AB[=ISS-V{ vۛ{,,ļ\`|̓Ko_~kɂ'iut]ڏWl- i_ -hh.l@uIZO*.dp m#WR9>La儹6^k? }.{ Bϐ&3h5q+؏؅I Ue I8OMTS?ѷIw͜i~d.0!+f/X/"6 c8]rm׿j[0& ^v-r1ѝlW==]i̐;;4?NL~`#i>KcDV.1*س5͓\;*tOfxh.}#"TvUa SBm)ٖwhѺ&7f#ЦNaG-@p~!Q񎸸a]썈`Gy&dè]7P\;em,y@M9 ³=[SGH ÙY+[˺x# foDWsuU}Z"#鹴^$m{,WX@Y~g7 f6v\LyJ*o6;t--%q\TC ˹hyxzx;)WrMb`z66\5v oiYpe 4l^Y@r vUSN RZC(!5̮h$vV!#!_1B,0@!ƥuZJgCQx ScQe;G|X-9DE'K[-B, q3>8,hb7' #2??;BP;;ws'_d%sZ&;ux<,(.x%Ų`sr^ Ѽp_] fhf"vҺy#u]Qb~&~}3:af/fpɽtXeFR_D_EeÚ?Swʋ^$,+9 71aqB {>8^G5z{Ӭ?ཡI5)KovתoKA#מcm{)4pR|"Ms;.gN!wTL e \6}jAZNE }%xGy?EBS0^IEB] 6Ө}4,1Ӏ .k|mZ{k0r81CR~(2{v{ Xb@WLjo @qCǪA-,'$J]B#nӚS_Ahͧ)fn@Ap}"k ;(P#h~IdIDL[vM- h&`Zbt45kD'e9&)+6=(:Uс?wn02'k5 aS|D`y*QX" Ci/*TdU'{Ͳ/_ ,*UAI.Zxo|R4|ސsZxF`]:C!MZ$ 0k$Vk 0^^/"☙#H{+Il60l-\ʴ[P/D)IJDLG,d?k@M}o@N.Hk r =,NZ4[Uh* )g-KA#a Ck^or"˳((LUH QD\ dj Lphhݥʎ\E}K(GwSK>;9Io= ƌl81uI95mPErXS,hbXJn}40NDRnjIvrW ya:Lt錖5qDŚj93vEUvC,dzk{^'#ڵdL3#~ڭwwf.7 1wWy}^bӸu#EF, lgm[F!CaAGI&nENܣɗ$ B|]|1}4yqI'ц^` 1*7G-|ˣ^vwPK 4١쐶p.6;y$m{4}|X5pʽÞ=GǪZ9hL'HjeY&_# ;;'4rH1\/tGVSyD$<8hv L&: .xԅ'*ǩ$Z$7U!E"y~j>[(Ƴz3flnv+<ܻW{e8.2HHM(٠߀l&8ep3*C`{vb!ǒmD_kr'&({LEEs{7󽿐﷯"p:,sOɽ 4@F],ߙwLԯT3 Jd%b`ݻqIeY`ꅗ3ŷ[KK}`TeQYHO> 31N$bwnMGT,Yrg]J'9nE2*?'ToEbD*ia9fc_v$HCDzjR5͎&V_༨iT|VYmZ$Ef$tBJjvcYADYnN@}h6*8hݟӼUSa{}و=|sL[=  [  / ^y dO>+t)g33sLi,+4ϯ$$8!:.]%s!OZKz@m#/F.ÖFƓ<^ts)Dl- H ap`p'G6oс_Kpߢso Ra .'x~͌#*I[ntj#,<}ߎEIh֗Sޣ3d*V0'x+LVDqWѡ-8u%Qncf!JM)>M2ʫ38hp:zl!%i,wUp6m> T A<\e6͘-Fs W͋ ݺZfNN 3_*3r#fh`C( N?vΆw Qn'KDS\ׅp2X1\U&ݙpfCui梘˜ha+/>?ET5{.8] *v3(0YLZ<:Mx;_OJڻg)>\q<,;)Mƶ/G[a`^"s_ l@ּ[wq`9X0&?7ɔY t *j~Б9$ =_ˬdVu^? !N^oh4m~R:a qՔmțUF d׶ErI+`NR QcRLF;HF?~IDr{$![hn-$USO< T/,2^GVI  skA]t0yi-1ljchf*A"grM.!uz億7VgPTd80&_sڴl>t'tӲm⟘s} rhnQKHi2 }M'pX{G .PY W/Kh1u(.}kw6,d/E|9;86c+0?;u5C9N ƚfؔ9Fj3{N U,P(;cҖ%`}y?CWr& 9,Ġh\lTfqh>0 @Lp)LwW`OX PT! 4'Fpø_1(mU%pIIô%b*biUnipڙSg֐1e 5{` t9Nf @Ŵ(/[ rU  Lrq^dX-;TʣG[s+1r^l k&3"ЀaKʙ.=(u}yC&(SA,p53Lcdu/A$Pu;W5HE#>7kMh@NgqK(B=$XMs8-%!;g]m kt&PC5{X$|W9)E%"~vnb!~%" AA0@DUxLܾ8Rxչ\r@8 qйH_a=xbWs.Qa$B%r%WyxڌpV9|&)/T|vKP!CjRbHe]x(c>73h:PE<'%7"Zs o/~1)0X,zӨ;[. \"@aS#8ֱF| @QiEHeM}r٢,<ߓN)\V&>zy 2-k[OuV1I&B+t[|,l . ր٩hdqwۢ6RܲՖ@J&!uu$&n#b,c`Dw_MJ_W0~- >vGQ*ůFR2KH!ϰi JrNy{ȊO?gPz&ﮄh/*7WGHD1 i=z% Ȁ"N}RdYF1(B'6oT=0y%SRۼ/<,pQu'.V%"fX4q典wE"h=R5h1eYPsji^i XQ݀?s߆*졙&JCgpͮ[NZ5AHg/ ɤJˡ/c̎˿X<4Rp*WuttޑйVڄs3SpL& ,s=_7{O)t[*dG]J1FA=!Qfg[bleX?Wh8fd{`XtkP*v,Ƌ`4189-$'CP(da:G){,3RAW9g <Kh8kYJmYy M'8r{J.TtYFL*[O=j/FG%}&ye0n lA剺(J)q6D`z@!X<}iL˵rCF>LuJ杚6,eKZJ^zlzw=m15&y m#㍰KmklBA@KTsfJe3ƹu7I~U#Ɛ}*Ey1Uڣ# Q"_(̋,~D@LqɕF.&,JE^X )W1]+!GMpwFV%ȡݯFP&Зr ߢʩm=@meokv:Z>9J!ecy@ +7pic>`R,t:kP拦D(7A:gC󬀩@9x.Uȗfj5fBf^%'HPyRw $};a;[$l#vd@ \, qOg/,ЮR7gӪX{$ʙ3ɫ)$?oJ3 +/WZ}Zo wW+O7; UM\:6m}!EpȤ.RNߴ1Z'w(Ltyv̨M)s<諔]]K*^_dnN{ oq#b Wƹ2 Zlyyl-'${ lGZp aYy@rёiZ'z$ N?Bap(;G8v">W2_wQvMj||.uq]i)))樂ֿh~Ff߳;py ODtlEpB̊& zr3!Jb\ վ֡vAMByP;G/e} %3YDZFI䕨pyoOAR(G,{S!y7&;8J;d"⡢&fS꼳?g}ލ VG I+Z %t%C8feہ,8Ɠh.fLaT''ms:<.Dn^ned62 JF"c3,$5c\dh0wAQ/QjIt('8[d9sBkv#]DFޑN;<Ԡ!x0-!:Nro^ӤB J,|͊*KESS֤ }ŹC]mcӎLE[\˶iAH6IWp<:{H-L@ŧ )g8M4s8KW:eԛSulQ_lrU2ET)eY5+*1B+I{c!~Z4 iva՝oQo<,zVq؆׸0i[G^`Q]:௷׼ˁʙ`U݆^|ukP6\\:p_HĽ dԡ ϴe8, A\.jSF2ZB7ٰbwD08ȵ8*napP z3ijcʯNڻ7ޫ҅ =cB݊yӥ7L2HgeVy`NS]2rr=0 bH{{k"&@߈Uh=uJ<,F}f8rM4Θ(-Z(/ƾ5TqZBXˆ0qmD7B3} ;~ز%tIߤ=>(ХȆp-e^2t=N3 r;%U=qg q(DOW%oQ=<"T#ZbM±~ȑBϟlVY ʈf'q5G&(/FN(j5Q ݪqq & iVژlءٗPF+:}G?eܔ'p`EknEK'3PVGR\9f=@e &(B/KD]I~VnLO$חd-u``m`V P@[&fG$h9fp-Tv :>T:Wբwuh7uu)wL20Z^6CȃSR̷$BM! L`-unιMAK;Ͷߦ_`G4K,t2֮S9[؃KHP~Yd!뭾gE ~hLO̅}AgҚJ] Glrrn-^5)8KVb:νݬH}:u51JUK{@pg ֦}`I]He)B.5 Y+y ?Zw|L5VO&hV0hs$cĕqw9bg}E@㊦r =@=6ڨFv7++ҮC9{)@<~5B0GcN*UT矠%_粙h3S\փE A*(:붛w1&rk~[` o4[!d?@sj֪ny]<P~Ϡz7Ka>otE}#Z9Ѳnz֒N?:6W<[T\`g}=hs!`SZ |f{8 iv&MAw1s2[1nJP$@^G[ם"T[-ׯScNߊYx =jG6#N3xJaѲ\n.aYZ,SN> QYk/`]8nj5yRgC+{V8_LXZZc. 1 G1kn7im Ӎ"SE _eăx#gu 1+\[׊:S9!^}(B EZBarx Tj׌-NS, w 09(* Q̗64i|~wa۹#_p!,iY*c*v׹D\9a0@h= 5 t.p|ҷ?T޳%$3wFl_G z5 ;ݭ#밴݃Fbpyn%rXnJ.P~N8b3ACHQhMbi?E-s<M6/,F' Mtgf-gLϣQFw97 ʕ+>F2= ;6(ܩ☷U(Y!L\cB {n yXt[q.,~v}2Șxvuj1hBIW$E96]lC"(&8Jbɸ`7&ϏSBVTԷ|ogd̥JP*Y][Dmk.UsQ9`WMuܫI}VCk9ĻNlt +=lUo o}毯q_Se JG [j QOS:tq |lê% Q|0WӶKso 6rr46n_1=f^r zpX; >\-3)WDnU<ƀñݸt8Vo/@V3G62b|9`N=cE!U@`Dոѝ}N> HPP%w>LV4%vt4'̲?+wGց{dIzw9tx^-V_.BF['pm#*p {{BMf+l scxAՄ I֥xW?VK5Xyn@Co} c.5G!ƏYA"ES/^$[4hiESHW S@Xwt5+PaI`ITCquxr SOE&kd U'y7J 8+}99crAY:WDh9 )u[ Gj3C!pS?!m <.LWx]:v/Dmh'%[Pv-51cb2kJ`I ,7d/W3lNn!mV}]-!7DۜT'$rs)3@ 'E6g'd 7Ɓ)=&D•ʟ"JPsEW<n둭HhMnz?a.-i/`Gh1> "q ζӡm|= גT<__&SJ0$Z7!E(,!aϻD:4لOOtfz2zXurXbyu՛#ȈϦ[ZxZ5΁bbGG^陞ԓnhFswJJtpYYpϭ]eBZďZ$$adO>u7sҔPuCiz`_nabj & S&k?$uj+54~8uga'bȵ+Sqx|~Ufek%f?( vK%SHٝ4~vKϛFGkЇz` k֕ƿӍ+VAxqʬО *%I+>aԂ ܛ?Jftiw!`D⒠*AmQOo=f:Ȩf5!)Z 7?1d*cU'h fM{BXhS g:Kw6L:;nyYeew\R"q1v5,N 0)V8¯‚Ǩܩe r94$FG1˂j4 X8+!-&ne ~1"W/N;2>@G!N r~MrWy@3`%.d-K$ Ijst`d1ŽprZX*5hIɾ(2C`!".WeWNrUy M]>=kż-|2c]lCr'Qj] "=tt%9#Ee5@bN&zs qPt8]Ot6JR ,=:0/gW D#9K!pу LO+RkuAOсb6VYO^W^tߚ!d8ݼ9t oRb<IFW ޞqjFҼ҂pZ{J^ c=TnS["H yeU*Uzj3䋙+֏ lQ+3rId18ni~鷴w Hm(aYg 0CS^jћdءtkAu'."rv VUD2ECJ+7ps:rjiF)C6lWMQ\ L"ZJ|fp`&*rWV}jjZt9T Ụ; u?sZ/fOgi.,f_&W_#?"YK]02pms`.;>/G=mIjq7 (D TcK%?2TN%[b[?w27BaW!Ѽ['ש/ɮ$СM ރQF2V.7哎b~M-'-Iֆv $5R \j=&ёuD0p|O \wƬ@˟F٢5һ ?݃¨q)S*0,x^`篚VX F^( 3f3. BvTnM2Ae=C&9~_$$;MXxL겶?3b8hP' ,zgǔ[8vV/;-/-3tӽxzOkZƗ쇏 ""mR_Ƭl{7gSYM_%?5)96cyT4Q1 v5\s QfQP/eLM ZK=slWӝ+>!l:b#Prx}2`ЫOCh-,39 2ُyh$@4PnPJK:nQ>-"FF'AFu.EO+ Cz +>F3I^'S`BM< k H`bY O}l7 ĮlX@[*39m4KNٵARGlʗ6(tINA7ݔ 4c*ѕujgJh D%WBtrit[NG>li!&:`9o@mӤI!&0~d )$D^ PN '& C4/QL_ AK1| 篽TaVO\b;bE>a,a9h;<Ǖ/pi*E4ʁU:2>h@!r/_q R0漕ߙu>u(GQbܮcʓWN~u*C,<:7f `{e-B+2{wL<̊->s3T>#<Ի:{Yc}ZQtxg "Z@eىv;Yr9F~𤍋[[5zjk|`cտue8\ꅫ@._s/gTos4^5f(m2»oc1f%FVgJ ԛfb'ޞ4V]vG䦮(5SFDfLOO=1vCOǔRvpy }Belݚdi k"i.9؟ 4e Tb?$4=qD \ױAR$ԡ͒g?eb)H8߹+znm*Lvg~Lkp=" `ln¿w'#`k!F"5%]}f aLaL3 ?cz_?y:q\l ?*:D39 2m"0 Q>hwOOE@'GLpWj EIPQÁC0+T*3l~,We$1bF[l؃ۃ ^alitl8#?~pJST99xm o\X`XK _tGqHbJ 155dY|HE,jyqIg!nbD{/XV1Sc~a#RQwj^zj-4t11ED-( +cSk%itɁ鑋ѳH:EI^8k*?$Duz;HF-y   myGjeQ f}wBY2~c?^Ǫ?,ރ eOk]tEqpeӲ.&2=C2Vvm/cK ފ\ +aCV}@ƵcIwcm+?;J =0b=cfh'H0dg$67R 3ų `!%ڢui"o7%gh Ǧf>,4JDvlžt%i)qȶZRY4&xbsnyxH! ;uƟY$:F-[$tD) 0&D%kEH/xp qΠU:IZ2pՖGÓ.}ObǤaO1`T)un̹Y.?`yʏ̉N._.GPq͉ۡMDPU̱b`ym5^VHtrH6aLP *Q Eysȧ{AiVКNXF5WоF1ARn znqܯJM:E#*eB{ryF1Yy %ϖrڌj%ˬMPnZ,w: ͽ2л0f- I H 0LLVk/1ZDQe5 xį2Z[ַ)9 37.zK,k8qm]~wn@$>e7ع?v2 7sWT(%j&\6ðz|KoU5{wA-vJm Y4-fb(ys"(hx #uZ]C n`$!T ]/sꋲ@FL2zl?ߒ w:ڬ_?TPeu'7 EhN% )y~\y_.ZwOrτQ{.KxWcQqv흢zU ʭHҝX4y嚡U|Wa}v}rcavcӇe  K93--nʭQ+ Ix,OD]ȫBUE `IOԷG1y`[VYo¢bB͛RF x f '-*䙛d-an7 QH8wKB9B)xY[_lSZi&>p/c6|ȫe26bq| aQqg˔[~t9\Ȥ!vDDzQiar_xp/VL_g8OP̂0 яpZ K]+Ig=PQW];`'1/$~k\H^HeŰ1>r(>205.:U/#PFO6~c \@ Mɱ%v-Y[:V(^oX"7fmߔQ#7r׮JT̩{J>n<_20Y2(È@NH%f;MAY=6vzplB>76 1[kB/"&EM}.\b[]1nY 6c)g{`{Eɟy6W/57 m|)~WC+i=@2$o 8>oRk@olϯ ӭ>I ʚ޵7j:R^b ~Ė$a{^̘8tcILcF7r7Ncs•-%.<.?V6\ǥ/ԑnczAa?7^`bD~ ׵/ R#ZޜdÉ _4OB9Fg0eBGMJ W/VVq ct>!}:cRXmԻCY_ joJۣK7;r;P^e"Y)Dal$r.Kp:]L|oÝ]0sW$5g6{͖#ZZ~,7U'JL4Muؖϧqy}JE59&\;Q€pw[QܷSuf:99އߠSC-9Bto^`Cn%ǮHq>u^%e!0rGx幃8uOx~\hc>EK-5 ~ޕҽE* ʳ%oh?Z{=_Xu}le/n5#&C5kܺG٬E";w/3cmі ./;b0Acq ./!~ ",f>0-jC[չp>r. mL4y^lBmi fy?0TڔݳA!?9*05(6|TF9Ѣ-☖$sO.]:ɿobkǾ5Jͳ"E.<3XI} sUSDDqyl &V!ӣ`xƜy] l ˝ђ-xaqG6ZܹVݬ+i x*-$6 5&23W| 1mSoOlP&:sT0%W@+>Hm@Cw, q }JB a6Ƙ ljNp !@I끪AVu y ?*ic~vc'܌_w$]ۏTN#x3ߛbOtdbRW g빢!U^! z v qEb":񫄔jq i%g0\&mcN @}{Nu9)UboȐ(\rW`\Q3{M}]1 (#A!Z1}.xx*0pЄ;+^8$8R^3e\۞e1zW`X|3\Mӓ׃##1pMFz"cRpP@"_PV .;լ>!E%䢋{>CYj#96SQ^ҿ $+%ROVM:}^f^5K| `\>Rᇄ!lFyį@myMl*JkE]Y',L#DT>lXPJ yWc$P9A8lZ ?vI]g1 .duL AnxsfM@WՎy/[ {#9bU谖w}̀PADT7h)4" 嶑X{U4Z"Mº;cfg{|wc_`N$jP 9':EbmҝCҺhj~ۺkJݫww6u˩.=Y*EYNs6E5%'W6A2vuUkqSi!>Gt~Fpg|J`7֠~tUELְ[ͼYcbCc5~GIU1'zap1- xwmPڂRƅ_uT`}no,AXa,2O6]XKK0a mֱ`o=64Bt|P1TBU||E\F.':E)cё5zrffwh?V6+ܠLP0ݑrN/qsOS=uY q] ;ǻShy%I]sG{Xܗ٨Kk z$d5G"NHR+׳V6xmk%5MBT7 @!(kWz[3A^:9|KU2^y)e!N[aě(<:%I}xè!B4>' _DWWnX':<,g,!m_7ރU~yqyeE*{pVV䨧rMٯ[Rn}EͿZCueE?л(j"/4z6CI~㧖#űJ9=΃OӜm]8H cSX-$mAOu;n9-F5lgp> (*zmQ9%P詰E/(>00h=@-eEo.w-6Wze *nJ(ԅq;BM?4g;M\ .fPV[u'L/U;qw!.c= " WjIwPFa|@pxgrS?1Es|90G5MH;6 ܙj[C|c :qo0 ַe2zbۮېVeexeKf}݁fL8KRbv:d^vezt W_˻JpindNi},JA 3٭]pR<K;sfjQ(Z 2cczI\UK ]9{>rDxTr7O*A{g%Yz$_2KuJx#aA f}Qku _940k)ё9( ВKR=$]A؏޶9ԑuxU k |! Nղ4j[׽d#a(ChѬ W9 G FnR9!Q#,/gc4*EH_c€?gkFrLb%G/u4 LXe $ﺽ^zV.lխH ] WK0K*|XTVRZB"{_,T8d/b<+b<s)(o,'R#ߐvre&n G|@\qРH ^>fvGv,3Gycw!Q]\eV[hA >z_ ~ju#ErxvCgEXwc,PS"NK}IRVAF{"CIZ’6b.&i禶5)1Xpn?+ӉVbj6Z+>Qy(N9\ՠY:2oIVG シԳ(5k8,Zݱ32S$P/Әk.dFEh[k ]|tj0ý֒فio? D.a-U#"e6[Ni/ge8itq- !:1!`|?2Oqrx/.lX,o$F A~Ɗߛ9e[,R6<_6S3םQcWKPIY{fhkN@,3OIg@7לtG/I\VUZ|.OQAGqKgJ+f^'P@zQQ]ZQ9,pwN.)Hx"1uHID mg4#WU)u NS2Ҵiu^ےh!tC8X>ev~?][𛃒ת$%eAMIV jčgC da.oȶ],j"&:hݛ4|tx7ϕ+ftMs]9Lŷ8{!}G HfD"> 趑X Zd$wQ?V&.d^vַf8Bv&csܸ[Zie[d/孙Fc,=uAѽ fXlc 6ϭ̺ӸBtm.;\'{NYiپݾ]9v$pBgiZcO3^8:Jݓ۶2}ӅK7!^B H`>,k&Nz^7EM,@[}m?Ep%#8=~cXܖ~I1?~F){ʑCilȂ2/λrc˩7]JEF8C8#~?0m99"ZhŋS: =eo ]!*'~%g^P$,lu_#w)BӰR15X۽$[;qo @78H <A2cNfun"=]7L"DUN(Ƅ鄋ek3@yBd_7#h4 N]V.6CBQ67_Ǝ! Q!(D"]hktwqqkuB.Xptح=.:v'貝Z]QY5uP̡w`hݸXb,~.K^>F$qfW?OdG4I^DͨU8$w)"58.91rA!tEo>iΞ־k[)&7 KMGX+ҍ|>Y_`J/ńnJ@&0lSac;>y01Hi4.2i:n}Id0w7V$T_i"@"/ )Cq6ܮʑ3RG '?MczoBIRֲci_a aLщCā< +0Ӹ>Q5RT|kV+T9nv28d#䴶u*{< GYurɪ+eS1%*#үt 0X'`޾) Ld4q"fMIq9˕Ŀ,b8qC[9Y~Sm]j~{f*!PmۋyGz:kY_>Q&O]dO8>§RY@{ݝ"`~} y/ A@faߢJG r>DeZ7Q$ߥj]ZycnC$,6Byioh|L0dӅaM]/MhQnaKCtQD\uLOHS)lRC$j ǟmC;VhL*ࣨ؏};)'MBtwfMk6aaM##YAkŧU"4imtL!y? m YQ/dfGd|Yk'KvHh*A o?7nMUeKr FʌdR ]'QI20'ދXkd7LE ;+14ZGΈI\Z]XTxF.\g~Y waJ8BP2'˜zo"d䡃PpQ:l sm&2uSF,~Ͼۇ{Ec@DOZWT ~-'>zi4uܣV[U~#ziQjSZx[ V0~CAZ} @W EFz|Yف4>6B]V0@qMNE* 8%݂1ujvv`'=n'boA~", ]K,`H#\xix8=mJ9pg}#$πƊ͜Vm# |#;#)c1z7Rǃ W-~8K f6fbz;))QU0;C'ELQۉ6ͯa.[$5G  XFTzRlpbڛBm.wxF]㍻꠶Ԉij]eJT fgh ᔵu2˿;ȋү,dґ szQC?9<}XB*sE F eNw?mRB݄ǣ{"[# PlkMQE˓hp`,l'r4wޡ8Sa2!swXUɐrfNtz8s[Qx;] hƳq|X$A`l{N2‹n֟O ZV,U-\^GEȆ_(l֘:úIF߀?U &9'_Df|F$21Ȍoqn05+jTnś|LGcNZ dWa.r"Ј@ ۉKnozq7L@ϧ`BOؒLBh3ˌF^1Lά }ihA2mnL([8XvlP WyÑŵtX@'; >ʇx$ ԟ~9lWB4Hfk_Lg<O1e~%x{ܴ& $.ߒKR#CIo:VG5\kpmFÖڤ[SQ^!T^GӇ+٫U+C W& 3:m_l` ܍$w6'z?2—/m۴]}{y(ӛP;w%)՝'ts7_v8j4{7G1sx 2u\dl2{<=>j:1ߦݎ{eF-SNJ2lNa:;))?KYg/nϠ@=_3nr %t@rdLCv$V'Ռ[86-UC@Pb?ӔGn`0Ɵ}RmqO@S>#[I/';O-xVb$L(g%:*I F  b.X۝9ykiP %$FExs%Fo#$Ѐ_;|ۣ#J&dbaHiQ ,tT)Iᦊ+~0FmcVx_+u[kޙ~-2*Ji4 yEb }U1Ԗ}Jn{RtR. l6@ rv⨈^ g4㏎tn'7JbjTvv9OX1Q<}B!=HAw)ĦSHS"ޜP mˏrVB dqa5(dABznжm8lP|k4,衲,t5KvX=NZuMaa*t[%(hX%}EաP6vgӜ R'PI899gy/dxg!5B3WO{U4jAoݓZTMÓd{e`[Cg%;KVx'+dˀ,i2H" u Qwx8]T}8eke˭^^=ȷ :;6ҽ,`:勀6A[oMgiQ7{caiJ }[M?Ƹ|3-`yGw09pԼ!U4OBqy5kykmIwLD.?}g"_)!oaĒbU 4T,&36qVJTWt"=Rfמ9@d 4F9H?=D4‰ fj>sO 3_Ay< *i aQbi& To7 ʤ8 ߪٺF8T<0]m0y4107 7 *v^Tv5:5E_$|p.&N^)yCXL_7 '#e@i4Hl笃s `A'դrdrŝI0$Ю lI&^RlNq販o=j6ރma٠+(bbXҸF @8\5hmjǤ K|1J]Xb? s6EElfO&bďdd @ 2:bo8|@\ޫ0ʛQ'prqcO* L,7+ޅxE$z L,^s8ZZt{ǎwNl_b9%;ʝ?#8 {6LMF+X\Y6XL W8`p g3~ޒae%^/m~ҘPE*l'fdP?R2렧N?v`ǒ\Y_R/ǟR϶/)))Ew"`hXccqPE F@sXAd2JUR5EτY,wϡT[^/Ӽ.~ EbAYC9e-NtAQjbfJJW{BNv :%]FN|l)X24M| ]@-]Xq 8ł|X~ u|,:b0u$fGH߀/ذ6iբ;ލ!ZKN:v +1GZAK Xΰ줟'Jhxի=R۴ CDG%\kW3pؚ-U׼:|-o](;ag'qUsUґS[A>LTg͘gmԱ4%/]gCg|vyOFDY.d~^޽Y13Otͷ fI+[s@g KY_\iFoӯzyw;>|z %׿4W>n,-gz:"R6+ot7n>GCP ְ)+ҠnGYb!h_Cwr/| i-xɺ`ϷF޴K^EkNv^]ԥT|3)*wm)ۖX V F 2(`ry R?@Hj]3a7P Enu&QTÄ-R|kv.w#MqϠ9s$ǹA1 9SeJچLpH}jl荊s^B1obĚE?2iVq--`!>ַ 8`埻x_ϏAG~\Fe.ݹf@;6U r7Kʫrg/o,MSʣ+XSvO&b#Mw:7jNIaj㶫e5ZD7r@}v*Ϳ s{5zlf}/ idPS._1aUɛV|B:c1ߚ(c<2ָ(l^ #!GK*)=85-{u}oȖ "Yq{Yr $Vb/;lKawF;21PʩaTm٭WW"j!ih cʎؐ5xd /zR:ws.ewiǒ qSS,29=ovRGF^۵=; ڝ962t9Tvj?߶$gX'OtqGq@dձXm'DՔ;Rݶ& 7osnEV9W?+,%BzfaL]Jowm `{,R:޿,w„tUx>htpaՃ WBxHW<6(Gnww Aj0]\e<P2mDW:z&_Ԓ`V l'"7>AFDEܖIU$=/xe!:F&Rt8({x]gI-2M.2`|rYyq3]]"3z)ṟ)*1+@8Ko=ݕ|h2g (9->dךրhDL--wVA!{&M.]s 7a*U1e%%1o8EźQZ׼݆op6 #i/(#aאvNe6R~CGk.ݪXaGKoEc5#z t^*{ HY[ (ɿ#hh3:s&oB F!2ں}4r-gomX}#!ܘfvx1tT/cAqDZrb/h1#0x;N0@#3|v,W s|Ą.#<[ضyog]Ec/oM΅/:qQMB‚KڒN 0ΦtROK1MLA--/Tl1l ]踌F@[8U[9Qһ4c> g%oD6të%SnKmj ޘiHnc~}c"dn3%Ү-0`E#g0\ q=F <7a zs],C fcy?-,NPx/$b2>=R9֪Gӊ# |g:|0%ߡ ,)0/CCE×ߠ/tm*`̪w vmH#f7J¤ rntН <[y ;qS]N l)""MF{G˯q: `HcFȯnǡjY$iT ntâzcKz}#jL*'AC ]+q)D>@ju{4T-Ր(?_wjBm2yfx)Exm7fobp`7y{G_N$$?G&­)4.:Q:<|O $Qtۖ³U#E#Y s6ʢ< bØS.,J%`u<1YBìXSK1ÚܗK s1}S[[ųNP^VȻymCTq)p $B>woŵ u,EQ+$lձz̟p%FWL"Sbm԰rkl1. TQ~X#"Ëܑ&taبMySm!E@k֦Ēל* >᪺x ?%`32 zCWv)W'%0t3;HJ+}V 8<ۯ EfԿ9^0$hҞY{>@'Sb4>H[jH FNOQU|ezxJk;psP6^1;>kcR/ލE=e 8÷Kqw #M]2J"p}R\PmfaӽqL?SIz_㟕|u;=}2׸0tiNtF^#f,'R1[bVRQOds{mSF_""8s`!ڑt!rH~"xNWѥǸo MyTirqLy<Ը}ԉCS9*UlV3j r.]9hwpPG^g+qtQKXcDGESX[Dg@?k=3YIk|?.ŇQiaЁ[ʈa%]~KZ #J {,ilؾdOxX? j.` 4bƁ!u6ѦNL{{ HSf섊kl7/†o4]AD"_bđphoB˧\xwρ\ hKڒX0c?ϗ5\/Q}ed3 &qPfYnX }oE֏DHwBm*Ovg_d 4ݪN{a[<迯0ýY 4ͤ/}ᎮQGs*%eC݃ 9h(mCL1lQ/FsvвW4Z!L*[ aMҌ@Hzp 2shǙE[sѰE2DmfdVfe8/</QCdhόh,\6gb!W|,XbaciIOh/c6Me=;-t cic1زe7VNWL4r&Rqj 틹aPU?aB|{u`,X]oP{*ߋ =[ ;_IFΞxD#С*zP<@TuOXG˞v5sl&H~Cp_{W h]cB{I-%.AhK񪆳 Rf^ 0-qD]j?;Y,B?RķuMsHfC 2ztq,&II!xӈF휰Xz+hI 9|wXNS#~wiX}F@Vsd(q:_<:Hw5QzZT@ @Γx G YVaoKgK6.fHG} `ְC:<) ֥9Cp,P˜)yEUQ7هeƲZNpC'Bm?Q@*7٣.H' Jk<ثV"3Ηƶ1cdoc䷑. ȺF܌p7u\3,&iEvoD_ڗLou5Y/"Rz:R1'0P=" 2b,eJHl+a zG7:g`m^-i C,6AWO_R7\29wQSŠ9^]/FU\}~-JʪL֮Rh~~cn7o▗!OLĥCef}9\|[GA"Wx0̜^(T ~Wl~ C=3#ʓ6!~`P~b|[R NF<:]n`zO }wzHInu6%U: Z? ]:ZKB66Vp)@3Ҭ\D]#+1,a{p:fCO` tyj7=iuIe{٤WWXR[kx\y2vMk[|V:Hi$Duen))6K!2W$HkYM}qY f9pVUNzH1y"e[}TW:*صT@€|}r]/ƂiJ/ 6D u2|Xsjk5=x:7_?c!j)Cu~*{WA6@9YŴh ˦jPp#Gb4WByy.:VpZئ|ncG&?ZGk<,gBVBQ#'9EA9SI2*4}هbև+Ɣ6["huMA :"ei0El`l`BSZSM]͗y8@gw^m8 hAɰo//5d(0^ՋS.9=c{EjI3ץ㢨,(_i;{A %a04<[J\'Mq;HrN0̓-`ϡ 4ܸϮ^ u5a7Zj(\VoS;l4{7I2oc#I[9|,8D+Fԯ $Pym *[k1ZRCa2 Tиd`r)m~b^$" ]}o:}ʖ0;Z5Hpʳcޙ]+&;@H~DzvBd\w bQ)WcxQ†sOKuN+"\l"]wm ᠀/QSzD}N.Yx4CsΆe҄L{90Wİ(U%R3GLmΤ9q![fU| Y)&o(FXs5>ffh>5#eԘB.̽l }rSnA1)Ў3(գ#+bf|~-őW^ Sj]sruʃB8Ved4gٳXOkIR X~r+BۀdUَ992ǝ{yqfT?=_>sXb8+YnmOSNmM O]1VU ; S #Pc,"Y3]i؃ Uv)r)|N^G=9G$>TÃ:΃@m<6&pqC^r7,!#⹖C! 3sNLhCC]5S'tJkAhN i#Y*q*3qQt3R9TˌbDOGPx֐W/UbЮwbaD"Q WGyGd^?+cA/ xvbi}:_uTf1Ľ"1;0}oH-4eH/lB5Cw$vlFtO$0r'H/T?~qrߒ[;i+2fQG4ɞs fPOA 2! cd$8[w-bWޙv3Dz]4u$P0K=HS'nrvJ>ʱxP2>5ߙ >c%Ũ 7`5! -woZIۿK\%MrQ! ~(H"R%3p;;H+uOF8:PXig%|v. {G^ Qe*r\;+(}K?c$Hu)*mqM yp`m %-B([sa@j͔X;nTY` ~S;w_ʜ9(WUG,PM;4ě^98z0tN6&! c`޹I?Bѧ6T²3ĠMk-fj톻 ˴Iz'mʪcZRmy9r2RAOyCIoI_Ք*絘0r 7ͤ˵ tʁ"2Y+T3J9tc ٩(iE(KY{C]8O$qFBi]x |ok9+f79xƘyEDW`.z S %G!ǽ i)ғx]q5Jhj"sIxF֭T*QwBRmS1w>ח)5 lon2ǩQ7[v:A .RӖD-ѳJ2kdD鵮x2<4%[@f'u/#ۂ@w(z?nPܜ "aәO'yYu$S@-o_鎁Gמ_+w!- k"#.."ZO9`eVW1u#kqeh {'i;B E@J}cJ^MN:$O։\ۺ/z?7RUWrvR̕[1=a/Vy%I$ IqzOz&:6g AԞ9Ǖ)w7^!~9o !>],.] MEe67m,I"--M]PmP3/㘛ɌG oM!Hn/j*ϽD(%:c: dn:s'ەJGG~z'`F4(:#Nn;(4SSk[D0Z>TvZ#LXYZta4 >Kt0kFZO}7GVtɬ AũSh9W$ZE 6JweL]xDn5;?,e9!Cj hO^*Y *zmB[)R:^s]jQ&bh;X.[z'6#z K̰%0s'2 ʭuYg-?T<1\ 2ǩcԤސ.y=0.[c_\:h6 y :7QbٗFlVnʣp QD d0,$ n|G!~lR3dI+[1[<$R-C]۹u~Gh*N!G\>5}`mbr~=K POZJ b%Ͷ¦&~tlw$f4C2C^(rӊJ.؜f7gmո1o˓;"Sd!7q, N?[$*Uy^9jl=i@kHcӂg47HDn5ʃ]2jy4{Xqln! jy*a)^{.^/uEljFڏ`+/MҞA?{}/_ݶT7jQkz5 T)86. ?I(Zs`W+K){L+וӾV]p?Za/)VtMHuV:]&x?s3kKI"  ̈́lٺ-k9wXj=]gu Arߪؗ~^dn?U~yk&*:h^]֮.gW$eCUk߉_/lC\6b[cbʣWL[h;H-6CD#Fy.}S\M4Q>xi9VWN_ GwyxfC)Tr [(e0\w%(h pK̔!Ā>=1cpYY:S JD@&`84Fz(keZ( +HRi6!> nVO[4}QvbR#uӂ=L5K54&iU\xo}1= Bb}yrRb7G>&bTl-5v9K'[ސdAǞVOKLtp@QslUa ^@4[X~|5 J w-_M]!RNp󏤃9wc[cNIHor+N,Kj0 CwٞT펕;rmtB+jʻuWf4#M8-w7x#zZPGjrb4묿n0N'+SNc~2uSe̼5']}|?qm+>~|{E sҕ!/&ix爃g)S$S 2^ӻʬHN-Lŭl~jz"B+]),3e/_#:`GxiP17}ŽOC’?1d+vA@m38 5Q^/ztIC8tDWd(Wߑw%iTOϳJny \{hxTihiBG~0{B﷘$nyOF/| Vc<6N\8=ds3Zd#J]0d© QH)HKڈGbx%4L8 0s3Ci>'m\ze*g;;Y#ۧbܺ6kR{pԲzjuZ\uA [B" у)u5 ZE6湫m<½Kw:bH=޲lHw &QD./:^Lf,o?n.*,~'}J-GؖG̒2b3XHѮ2*:rOW:TLi(3RVWCꝄ S?K]'\b{n0).Vk=N_z~1mQR=:1V/VjB%}hH &~ijI 943GpS>Y w>"e>@h:\o|BXB\a5_ACv]8fČbX}ww<$z], |&LnY|y`+7Y6Z2nyk9=۵)7`LAhU_&lM><Ip]|9jt7+俓>6v".^(UZ8j+&RYb7ʸηƎKz%-}ȴ삁FG"nN9tup-q u-:/&7V }) Жc+SG QyyذW{-_34SZ\㐞Yh (铥eWGTEQ>Ȫ? ΄qL@:r_ R<6k}Nr\)3;V_zZܚ ZwJvlp)"~<{ӜZ-m equ6C=' krUG!j:5HyATTpSs^rXZyu"|Xqpd$ɿ*iDŽ! N@!}'n&qG$1+` 7bF wg.G1LDHAiN^~-5 Z_mB-ƣ+sl.Ԗ\;!FF1L6yGX#ܮ % 5Ad/?ѥC/}K ٻ]Ǖ?zh7yP.H9ygB:eB#$WL6={cebD<7:O-4Y2«F?:oSƢ[*-Osgexyl|D8` +#L Jil" vAOOlFz</PڱWI8!Qb^|V&7ٛ֐xà*;<,9+I\_ǰ5+D ۅ V?)HJ%3v:iaɄ}n߭ʃ`ƀ OO4b;"3CoO7e'c'9#!AD.5ePX3JR bOhV 3lH V(˞lL h\aI?UE<߻S]%tt @}֕u^ꕢ_ w 1p fkd#G6*3$<Ĭ?\q2~=O*|`KA6i1M0O>wUsalzXȔ܆%d W$I2 O25q0}A~9V ^V-DfqQ,]u ˚p7`}W&5EC$P2͛n&n^HlXl''3o(#Y7JG'yqRPf%$t+K=un7^N^(![&o," !}hQmnS[MIBnEH br C0Yc|GՓ"DɂۋAN<D3$ oZm0 v9!3V=q.m{Kv;n[mo'9ڕ 쒚| ,Nz¬k$c e# վwsE3͐_mb/۰dfGo_li~x2lFs{\7@ڼ`0˿CIRt>ab@V7qeB,F^mqK-GQF>wi45C t?Z|'jvჿ%q#)dVB1_+qLAꤞER_^ H SՉ(IQkxH,nD&0^EfL9Tִ<X[_3jDdnA8[jeb gpX=~Ư6V+Wjz2:H&a2sŵ9c~7E }bt8+k̯=Eʱen%qY"Z|_LNɭ[=E˽E*T0չZӿ_ ?1yH"5bF}Xiyedī1UƸ8J="C UCDol=Kˍ~\4bI" 1Ha֭Fg57 >АF0c G0~kS( ӶΞz.+vVݹ )BJcfdz܆r[jDQ#e,HMDx<;wPͽ?asB=jmGD}QgK5Z/%;&]&ܟ՟7)34Qi &0'-d<ֆ "LVrQ#k[3)ngDШr,dݚ[''kkFCϕm0\&q@j8igTiU١Q!69$N[r= a 11FaaySD}l '%qh+ \?@Uz6tI~PVSeĕ'8NH٠|~Mcgq.(])8f6X5G˗~Կ!FclKᘺ&wh)yx hFSotLtD5pl9e*HK z X'rn߬vwۡDlR{f_r<?]' od1˹rEG  !#%<·!?ð6ig/e~ZPQ`'rEeb}=\/Svg~ vk2&*-!M1OchQE`[H+xEa̴T $MѻedcrSU#"T|ôjzNEn.tA#d D| u-}^˅ (%abtr'L]KnH,U0*)R#_m%ד;wBYʽd\۩ӽ]yeXt!sL{xNf{s@J 2"Њ4}y_Fkk^/lO3 Ed%wE- -d5X}sfҫ`r"V{BMNjA@P6o,-)p̼˃)Fh*,~.Tv ~;N]cmFmnł#7n! 2khRg91~Ku,Д_2o(jf [}LqLhM)kwP^E֦Z"yd_;;1}RzECdW2mH㒩`̯<*?hMwHI|QW8*a.F!XpmTXZpc $AfhRy ?}a4) Xbk Bmټ ]^ZtoTœG J3a'1`E{{<@JWKScF:`-JBYk4Bv`GxU‚Nֈ'Mihmmk†܂99 ]ӛE@0co{kP̅y3ib.+ioOM7/؇y`Դ{݊厽q28aú:oLGrPǟ>O4%=r]TDb:Fa3njH'je] $M)֖+o".Ev's&q>h '&9q ǭz~}A-T&@p?SYuݘL+*+p)Q!B%D?VO.FCF@!]BHw$/ٹmէ*15xOO+R& /o~#u6tQ=h1KU8;Sq?о4rI4݉2e췂_LyH8b"F27Fg 8j`k a!2l4 ͘0,t81/)yՙ"MVWC [4Go..h;#$\?Eber;볞x&m7ӣaJٽCD[$kO?me|w==Z|rz-|(žrq5x%zPPFT`ɨ6,2Cyt5wZψkNH9x@L9@>xx@r*aby6\Su ;:XU;1Ʈ75 qyg3=zXPlQ0'kZPA"hߞ; _9iP~ƣh3RڵIa H~nAKhڡH px~mqvD\m}'&4}ldoK|DJ&Y}€M,>ŏȫQJ?ߣJRYN?`X.ZVe 6 xw,'0u65C̾龜끊6|&TR\AvKJk3-_Ϫ7)4J7\2:F߶4gx~zî}D@ REF`qH|1_G}?|D Al+Q>P[cʀd DW5@o`ݡn-@ 6VF\o,Z2x@/q߀~ڕ g OǪN1\Ip:Qw}ik@34E*E9JQ#Fhn)mB?P?7/_-TʾdD \e`=MM!QǗ II\bmz8MV\|{n\: &Qt7,*,28-MƾzB_zHmؓFzsc(-}5ꆣ! ")D1-t/c"%Z) Gd ҳT!n#\"sq7)E"% <ߒAylsAnW>nBsƊ$m_ X<؃StN`@6F_2ĩT&9QlZjk̡%upY[*n{ .\y0ھŦw+@486I\F9&4sz b߬3{r|~E_"9}[տuF@V`MFo^Z 4+Ȏͧ/;4%Ͻw=8z6uj[fw qzw?QiB&/H7h['$b&2ReOdy-a=鼼zAvxg=l{GC~MSҿ{F7_*Tj"r/<5yR{"Ld{f̘jX7)i 2H"%j +KǺzW]2jFfF;~5h &AS)( qp1սXdۣl ;gGB BpCۦLo 4Li(ڍkx]r,EkFJpxݤ ][O;ŸlƁ @eС1{_eE ) @z~hM꺯@Cw}yqkc& Q`'n}&<Z7ϋRľ/D{f,9Iz7f+CԹmF OĩIg1J2/܁-c $GʏTA4TqX`rT>(܀ϹtBPeek}3\uf@ʅ7/fAtͺf|.֥-tzt)#O2jY_85KGZj"Ys!F^_߅JT\78H}G'݊5W~pEHm \*S"H~j#tt `ct(ۙ!ZQٸuk26zv*b%(sk^qR &>ؽ@#|R$*3cL -!WBSuju|:c**_PL[_O4NldM:4}sRJ)Չ5c`S`x>}jY!7y m^pURĴ8^F3IcllJUcIҦ_DPgJ!H_QR `}b$bеt'+B-::9`*Ǿw LC_yQԼg*fҾ}!6Q[O*[.S?eyHc҇M~}= M?$؜}|RI@ybߞ[)s^ w)G*'JjY ,,޺CXܦ&u7 DRo؍l+ cac9!/(!C"0dzzږBOŪǩ-X3!13buox\fS<8yOojlhUgd>v܇  מ:6=0! ; &Y y*f"P=o/Ýu""*NXSG|njeȌ5+>! nK@N Dֱ!5k=1v#Ci'/ܐs !x~eTreCn,]yV¥ٻ;J "t5EӾPT@ :-,җR8vh#芉kmj2Lv uSؚzR0 嶺?r3*GfS^>ZcRŔȯeeKe|I;|v>GwH1:/`G,tCm>/qox`3.SIr]~rwWyL~ }&:\47Dҧϡ9I781syY{m!#*BZoX2!;zlMT:!jM`Cy.8UND0 0O#wFcR'<5/.'a&,uv#AX'X_ &"_tKxhoP5~v*˯ lBF[T0MܒqpܞdAùOݧKp-FG}{C+)Ά21Nնj2>p`Eɵ(` N90ovFUvi[D WK\줪pe(w\jD/| obQuArպ];3nk#Wg%QG ɟ6eeݠ(.ZC*zq,(|@9{6C;ʥlg6񍔇ds[DOPmQO\_*!azEZH\\O .Oά{M; X_<I\[9EdΦqzb^{kkԇ=Zu'-hh]4 碁'9aj^ܵҢ#=Q4ic~!3{Vg2%63~XYޗFˌ/1c9%I?Rm<ՉHI 3%KWs/E72fIw'Icqq 7xEEfΠN#+c\gE#h&! k( m! \:@Jk]Aкlhoō0$+nf&a/Y ]!I ͂:⏺-aE $MnR9eK&FL2"?n#RzKe)c=uI o\&?$iGv)P 5"Hih3>`2w*{>\T+(pq%tB>9&ԉ.AU؞39-٠pk~0>>ɝ]=8ǏuNw_QJ&NHb>|vmfBi-oA F-kF7ʭOwĞ Xmؐп4P$|V5Eìpa M)IH "Y{Y;ViKQq4D( "m!ֻj',%Lۀ$m)I:șox0*G;b/,%U[wF B$KLi$5[%l,KŪHnV\jn U/ݰvՍu5 ;[ a;xlbVtƺ]&நrPsl@I.'Qrżt!y̻n(,:̳)Kj̊8@yz뮄ojWk "n!x.o5H|:f<܊ IeƏLt5N<"p'Kg%U̞TA#иZ#?~nL g{[NR2_|{ !%_oi%(_7g[ZfwB]SdN[Ptsڱ|w.,.a3B=GW޻NmH&jL{whzc7&X Rf! ,R*kV S&,单Ahf\NO"&ju mHcB `XC=^.O 8O5Aq],&Q] .~?m%–pjy)J G~h|qY@FcuxuҌ,+q I>B/PuO.`Ɖ 3U N- 9z oӭKb!wZ^<ƐgyJcĊ:ߋCj;Y3>; #A8.9w?=EK`lX(<zy:g[9ʠUp!΢ ]"*~~ir7M sJ"r~ (Cy1OAR_NmsmR@`+a[{|5)Ȟ3q:ʔYn'EpFmQqr)Mb3(`AN]1G_$I]]O]5$V<\ )$Sx~2m>y z5@oyh7,}Ks%M6}B_& H6xM*uJ<(%#o"ףSCW^s&Kcw횋/vm5}P&g m0ˡ'f=KV xȼDFQ*:szc8@Xd =糾(HLӰ$:~f-MxP9PL+jw4?l^S+C$=@4q"/ z-(qad9gkz36K:91BtҵDB1a1]| jGKTg`'9],rzfEWH䣺#4mNx"˻bv\7)\ 苜juRXQF,$sNKr!+dm~԰r&!1Tj|2p]S+B}J>\*fz1љ _x 7J? !NASl P)d/#D;ytXJ.* Bwףh][g?xŹeU"xqm?;O*n^@~<߿ evPL|IP RGލ|e-=Cx2 J.hbŻ︠刎J]I㨐PrU dbݠiL󭞽_^RʩM"E&^eK->c l:~;+Bs P^f,V㬖L|>nNZV~g;ѸKqrj^/cO}Y:\mg PX4'bw}`p?iJyG8́VZgշx5b XaC2-ڮa0ޞvAgB_E.uHfB¿e-ue=)88ۤԡX >&z46a$lѫk9+9,pHY:zq9H=jU6FZBٷkn23*R-vY寜1Khl|,Dž\=czrh^幌[Dpb ԄgՓ#n#_ `"WhX ~/eq]Akゴp%~|nˤ`n(}&:Iƅ1(&u{ f뽔##s1W[hW7$\s9rC!&AeÆ Tj SutWfswv57mڷe3SW!;=D58?Q7]aT"2y JI?ݏEj&wR,֒`)5ڿ=q{ -RgI5!ԉlTx w[I;[5')L 4%zHVn/C3+Sc5n9#W(1 w]뇻y 93,=eZţ)iX&pr^LVv?*u9_Q0,!H(C4!a +RTKHAl! >ȥ nNv2냲3#r~򵱟7d5oC'CmE ˙M|nurmcxBN*zsrUeIWf]^Kv4S* X"fa#5y 85$ ii=ؘi?P`<jzb8U־FIVb۵B>9z!:D |ft[:]q>@cys9Э;Zdje~9 tglSUE?l/VtWڡΊo!fahLj>r{<224/0SL:3]ASn ~r–LPy5ĦxvO˴b U(ݺѨm2 yET0=C"dj+ҳ&?ƃr>,G^CQQcJGj5[6WgpS:.tX`X9pd[41;|m5a%BW KCO{)ڷ,)}ZQ3UJ (Tci~9hE}CJ/r֫Uh z߳K9B4J$Q$\hjçv)ar);/!=%"6Ik}BEnHj{*hjJ]ؘRý8Z ܆(@*G} Cc ^7,- ҈Bۓ{킠 g u}2G.H֌`KlbwP5Gh=1,h?8y0:jnYY)Oڏ[ glrpݺL6Lc^v5,٫DŽ[##ֲύYWKGkĴx߯-&SoˍDoՑ?3>u6.sFG-=Bm<:`CL˞w+-?7a˘O:{qZi_{_ȇpoH<2某Ф-hT!6?F9F*Ƹ"Mjsz TIhJnYNGW뜣gfaj$ٓcaQygs @͑V:uJZ6kQ{A)N] Dx /D$zXl5]Nwo~ Rn\u|tA|f +Esצ4/i{\JNuSs{6ʆ^M:Q#ixWbTk|-4ؓ\ITΆX@H ذקA67DaKD9H+ `r")Ү* ;w v8)o_?^ #nl% kPI+ge!לy%`&1#͟aK=&2 DHG SNpzbhР^N-CX}=9)%]^|٧4{H rq%k.. 2_2JɦQH4P75}(qVCCFMwTWh ƔR7F:P~w5@D<;Iiu.K $Z"qyɥфKKדIHՏn]ƞ@{efzymg\ s\ÞMIٮ|ĹD_;F{/R7N8$3 WqpX~̌&>o5'Ttdj>azrU~Uk^'s9Vn]_~s(qۣlc97"" c'2sq~KZ}]ci[JTBq-p< Q4 khr+݊-_Q(ЏG#>G;s]]>>ϱM5:鼅!\{1̞Ԍ0'Z?SދRƨ?1w=Y<6Њ%ջx6*&.N$"LĈlC—V` ̺/<b嬞:%dcc٠< p`1.X'Ꙃlί=5l4x :gEQ7pn~)"BAD1Tќta}ZlṭdQ(׳R3Li{!NSW%G׼| |%ֱ͸*ؓDRo lÃ;>NZJKF# 4P@\`~ޤ˧5Ұ|=3@M<0 uI hmaY{[h܂0aߣ| HL;yxhrs_OQI0MI,U/ 3iV`jX31;0y(IMih B,XS`tv?sꞗnOvs4~wDw%H}ĝfr7[iZO~=/DHYp7@NOShCT@.@+7;Ӑk6WE(U {c{m.XPQS*ʷh+ 'JB 8AE3KkpMb8 Nɚ kܸ"/蟚 s%5-pL5V7NLY[rK~D@mJrtFRZ\gmpsCRޜ6ZT>PDԸ`ZSНZ&Y=ʹj0עx jiYn}N/*1YBvVJc\oVla73,¬K۞ 1y-GA\ )Aier1 ?q9wlDħJ=hb aN+ɋ67H\9%>H DBi2Κ}, w6/ԳgQ l&)p=JAѦ&^"ITFԶ1u_OL{qخjH{KybŤGck[aMMoze=H8y H*h}]1`4䂜GDnSB ]QvAKĕܣnDAMDSm)OtwP@Ǯ#?$cC ʺ˟Oq m@L8|ϰUշe9!siÁؕx=^?? w.Y}y8#Lb:Spj"_zVv}ADvd08FFl`H[7bƉ<}Us3\8n rxZ\,R`F-!ۻ3 = )fI:z"67~E̗.ÏrcbLlo`X<aM\y9za.iDqnuOUoovglKAr%+>\lvm޲pjoЊ2tPY\!aVcuzB{l+h-mLg5V.i蛭6J %yP;7R9(kAA,!"ꚥDmy77S.=]Y({73ȃ!~58n[>W=8CZt;|ԑS@:j9Mz&ejOT$_`# ]ϭiGBqDq}C,xU,FY`_jarO =dͩЈV[=M%Ѩ^@}v?Wi1DЫYf޼WbGBJʏ> )CO&%NEsM鴲q$$r!* 6mœߐiR]) dG/;R<";9,.#BzOb$؞ݲ՘kJ<~Ό!u$IRa#'JL-Ԫ ZF2cq4]c{kxCO{e)$8uW]`Ss%T1[¨Xg2-rBFw E:طI*N$$o$pX5QXc>fB|;ig}h/%= mi4蹧[!5Dia/ jc}@ 6aRTN޶sxo<e^]ǹcN2Hh#m}Og>P pݰp1 zv2%d&X!jyA; _.ZWD]6xeL EɄT7VjIz$aA=8F)@yi,buX%199׺o>* S[  0=pe2#}⠰c%qկBx~zdm&>ɻE@vZ|"ԟRE6£9o3͉ԼNeDÍ)dȌIy̘#*燊_4\F٤Bujs$uK]nn%lG~wƧdgA5d]UȇNJE&5uvv=l|N*}f_rLG=T:'w6: ? ;HDhEIZ)>QqIXSb~r4 Yc <#}iC5{@>!1q 2B}snvEZNO81fuJ)c85ZwU( B)[ҘɶTB惞< D†95RbK-2z1dX%nj.^llV3[ ZsFs-`S&OrfmY/?'\C|WYXKkP̰ʐ-e+M}LnVeC%YVDzGkTmQ~+[ӣ)Ov%:VPm+F4Ty)z\Kd(<1r Xo. H;c6{Lmˏn(E' l۾'r/EyHŧZt͕'] 'v\,{\z |-Lc "BO2D´P7Ⱥ#^5P# 1h~4 zA"4oC'R^c2L Àİ@p|9H &g~'pU+蟥n:HHDr8YjgRB,r/]-:-%>ꎖU+l2$z~}խ?4[Ն^ OTJ[-rnÞ^c\,\YB|r*,Ka{e8<<,z"Az)]*-kTx:?wb;kNtт'z{ΚiZoGW՝>MB\+^5bn}p1}g@h!Qn}MFYEVpn?q߼L tK9Wh.u ڀNp#7-luݵ/~ G*龚S!Gw3A-MB>n.}&sʫ YR;R.5Q"mTDSo% ϝ xHBe ģ)8$Txi/a|Qɹ= qJh20HMQ8[t׫cnT{r s~5ꉻ%;iXAH!;%jb[d LJ{%~1,/=~OƣP̊-Q}#*`b;91pdG0ybs؇6j+EAt ފ{s/2#,]OVXF$p{I%!yNӳ2,׺nv8qL2#96 H̞yZ7t'h$yL!' $%ǽN}z BDD1-^^hDh`a9 jHȪ۰,[uFyY.uטb b5 i{?M|08!W[ˑ8Qr*?*յ99}V>TGBҶ]f~pIW%l`B. RQ&I@% ߮| ͢2zqn_icN_hZNv{7»OS6,n)uڧ u eǣ@6PUMmX鋸k۫olP,2F?e'V_ܖJJ+H%Xͅۦ_h6{jeS.\® *NO6<7܂4cGkpNo6'&_Xi o@!&{ Ry{ ۟ڔ5aόizM#cx>pѧN.nSAMk`9f>6y?˹8\|ZD冶T ٯSϯEАz+;_3%101E"+^ Ey| _ĺ/x~ʩ M(5` B]s!%$'Q:د~U>$SQPcj^3?,6Ms|DSԆqKCnbm1M>¾ 8Y SҴCߤ8rtn(:žOC"^tUkyע7Og]~Cg(=4){X4I'clɎ<}ޯǤvg0wz)g193P{*$.DGpt^e\r}I [6!-ګ̺#r)pDTeV&l21"/-d=2%#r{CoR$nGY s6Gn,,,3 #np<c\+@oHE8 fUT_e[&ys쨐33@bs]0v`_dM/9ԮMK㋍E+ukR. uB"# ͍)WgpQ9e+os^)x7~_Nd|l;|V?m skn ji՚57c cFP祝xz5{ LJBNgXXVrL/[5coGC\J+݄(ʌIzoٽ㳒BZ@c BD\߷+J-6}7пMGgm3x9'}ڽk-_5nKE|+8uimUTam5sN6tbexI`%CA>$X$IVj9,Kjo/^""NnD6,SKhepPmHp+U]gg_x;/^7!t 'N&ƨrl.A^[qdbXh擈szfM csa/S%/>1l(L,e 3/ʷLk3S`"2϶#[2zhK JvL+صp@5sCa0 aZ~#֥oWkzaweX)ʖGh`ʄrȻŒ$0ٴD߹A6}n]`!X`}u3d% /? (5G/^QNޫ }̠DWǰ [c*#r7$YxB4y\Mt e7H{4Fo9ECFb03HT?v Kٻ }SrF:>S_Wy 2yl3c+̏#Scӓ.-Q"02Y*|:)9HnW*$%Ƃ1ǔ%Ӽ?m413="+PlM0 jI @SW_+ 8h^r/{cքH|f<*u&p0g0rӧ^I6B)GN;?Y%UŧV$@LJF3J.(01 6cZbE)s {8.ľXuLIX? cbky*k6hGJFhs?s4|/Waz?Gh|NAHwAn%n9vMer0j[a@E!3`9-X.̠Vfjm f_(AYo=GjG{ 8HAy4{$JeKU@zc2T盧> 1,h-vveʷ&4р[w%^{O$b6cp6|@@ogCfMC">,&9 BqEI& Q}_-StmQ1bm͇ fKTu:c)ы~"Eƾs0ǽX_ } B6+t3 šmȔz"8N 7WMJؼIZ clBp#`XhD{"0la.] ӅO8.9$@ s^.b[0tƦ@{7LEl6I6xJFe*ΨΓޣGK;N{Nm?%#cEΠ%9zS-sZ:eMȆ:J/8ʼB a9^C3U4#(ԻO]2U TjpB򗦟*>LJ5~F"ZhFeTrX;U_k{5ߞ/H$9Q(SxTKI>~gp[Q_ބܽ>x$1Ι}=,"mї-8mj"##?9Qcܺee *Bd*^oח)onaFJș`ZIs:Lj2Cj<۟pJX1y%5:iWx% ]7* xl&UF_o`}m9|Ü2k`8f^)e3.8C1k3e*"n}HVYhoD;QUY ոegaРn~W{o'w_ VrXy\eXǪ̂a}@xNwbEv%sfpy/hKɴdfT1:d9 q }7 ̼_&}&OK_ZtaA#?J-<H[CX%QHulx볛 E &hv-܋|mM AtKA䅻.g<,XUQ7Gh9 > ˮvY `LSQm@ayK& P:cjWn X2|}-2tn9̐M$^*]UϵZ^EȊ\ݪ`NJ*0{kVR||NP5Iur|u6\ԑTp<ßOtB:,/G1PnqūmUg"B̈́ժZNV`-@řacygdΌߒiڎ ˷ϏozITT)MU'0qcW(D.io)&pNGᚥ U|֣W8a/aZ ,ٞ@;s5R(' duz+:@VZ3GOJ5;$/l[P3l{3'Vt\TC( HSK(\GfJOu =xVzN֚"Oms籣CRA(p %LB]5"C#XJ}FZev+ !M|,yƦ'-ojnAboMcZX::Ҷw]/ V{*C(0MUGU8.K;&Iõ6K0RLiJT_ PLpZ8bs  v`GhG\`0lA rC0 [<*QXJKBҚ8sVzQ>݅G\; wg p"7[9G^ܸR毄LZ)o{::oN:&ɇP|*>'$ƫ 0724r`ǻ! UC%μϢ \nVħIS(`.nU^<]7Jc4b6B7#B̫lc ˟ 䖟ϕG!vfF+aPd ;Ŏm3F3좾+}:֚nBӴ5dbǡ-)Pgy&ͥqu062Ǽ/Sh!Mh L`b d)AIxLe-)V 3Hy- sf\vbP܈ 5%O2\V;ҟx {x{Y9\Mp2҄`p-84R=lC[I_&8f#Ȁ)UlIgW_5 _T}S}j4gLﲠ* "x5onlҫf5ԋmƴ~#cGw<&M8{Do-.F_@ hy0wfk 6@cwHIUsIn;K>T]+-Up~y `;>C՚:I0 mٷ#b<*cA`nD/dSZu~Uh^ Ӯ' Y)+o{>gXО-A$&ځ(tl(s3M"fXN` Ȋ_dx^pRWF']:};cB`|?_ ۬| (-_V@TVw}E֖[V@xC#k"soP(Y?w<.P%a~"qIxV[]Qc00UXUވu_؂[3w?Jr<abTxE*R͔ݟ텙UgK^ϱ@5{JuRqFgض# A#*@{Z6[T<7*amv10BS]eX~W8Y/̍ +@mj6/24(tCxf춉ܿ+H+,xJ-{y2$d٧C6%q{NzW_,ròhyF#sd~ISsjPf%XGoh3&FL|<5 KbMVw6t=J 1ru/+޲b/}}kA_ɹT ;/6:֋?̈yQ4X6.\VǐỖprpU qeJ$pJ9?G k>S7: +l]'s+fʮv,:8|? w;|!f94;m9uP6Q_SZo{$Mz"v׊=BandQo;w3$Q!u~FRDd f'|哢mq[FeP|V :Ǜ'҄߫gZ8RjbX1dd39f@/'xM˜I/0tq=9wvZp $_ j_v5) gF%BW;]NHGy[ҳ@֦.-~KW )ygn"lh_ L9dN.Cւ+$=L&6]&ldAMY؃r%$܈aMbVV6ޙSJ{ S4}K[' Sy^JR[Zgި=0}02̇H}b~FegSk汜eәKI33^.haɯ11E~ղqyP(r-VHÒՈP2\LW)Ng Sܛ-C6w ;٧iXW4~«:Ë$uFw{jI5̺rZB",W ш68sE$GnjiMҩUKrɨ"qƝ]5LMCwOC8*Z`nC{Y+a U۞ߪu :2O"K>I&$ވ4-" q>'@fԏo2f.n38{yf>z$:fVkK~-䡙Qy3: 9N,"|M'wTµun_H1^]hukg&$a6b];ij>ꦝU#T1/3J2M{*႟Bk"gyBA!"Ui&oPՆ:mRh+zDl\[ьn<Ml6UU \Ԩ 0ġe-mqIncSҷ&݁2uin,Q9T-dX .Wc}gs8r>AP W:hYm̏?^5 |[T9,qfbz9-Q͹)]68->>mYL*RE%3YTVrHo8V~gn/m"S'!ҫ^g.KMcpZJ* HĚGh~zz5*#NAP_mުLGvtjS4~VW|8NQP\BU3 DC@Pew.{cFsrMhɐ+3 T' ?zX9 JGg83zIU ] _o19\a`J|KA;hhҺ0GEy$>e |w븹UѰlڝ 54wEɦ|hL.L~StS d!|JKn'/Y Cc~^#+OBG+oq*G;FA]1I Ѐ\()VRKVY6gvaBu8E;Vf&#`F#Z beE P#ƳSg 9A@oFf(L&!1t#r3ACbI']dj(.i?^5j Om2>#~𨩧/<ҭy /}| 932ѐt_:;_/Z ʊȥ1{T1IڳM@Vw9b3/A~1fXY[4Iar , jqLIx) HYF$\ j;&&F"όGkMVP~ngʔYfaF5SEthRមt>WgVjbVwQY,O -sr;Sf瘾])趠VhZ1PcL͕*#t|/:m#iѣ,p@lF/k"0UyvSSs6]͊ Hom%$X=ᔙlb?J-i ℙIEQ\ `#2SV4r+aej t=XX)l#x[>ŁJz D Jk6& iQ8³6USeo4מ #26"v֗L ]PdNy:Up'VR*>(ژw}zm u`1fJ뢐w[6ei_v5uz8Z^W!UUu[~m%~; +јh(CP# #0q^/bB +MbUXyS{6Smx \4r/`# .!r6:N$_loT4*\h݁/ʰeP)-3 Čf~GZ>̻}Avj3i~(r@-H 䚈A!Ǖ!+cd曾bd;0lU"X];š20?k#U5BHĭ~/VN $q(LO# , d=HlBL% 0 4zLaڌS[gֹ o](wWppD~oNŘf$ʫ kbef7H b'c>I cgr2v^_ !3](qCz%lŗ7/O RzjYK+ G$S+|e̵m xEyw^+̻?V og7<(CFaOqM^=-v zKX3-c u\6 HlA!>nd(9Ԇɰ%6ITiPN_ ˰K?`Hѝ .u5~5vœw#Wխ~W;OdXlX](%@RNb6j`at<b xׂZ~& يU2gEdn=GS3VC/(f^k NXF;?1 ;) 5^i"C-M~&B°Mw{e.iz5hPS>bnΧJ~tPHWGNuIWBu>}g=ir Ĭ.E|Jd^<\@]ik4^"be85 !Ud8so¿fmJ39>]+wJ%y4Ȱۑ7I+&nzgpD#Rʨ@)wM1z!PС7$u3̂&Έ_z +p׋֤H)#ٓ~!CƧfZ/22?{lYOX51J(nfm)~x&n_9FUV:~˚\5?vZ}-n!r/NhWr(Wۖ.ҾeiFr8HޥQ[[a 'y\BVy[=KOL?}Egfg]Qİ٭zju Ggbh\yz-)-}1s\aC M{8F=5lZ{*[|@8o1Y3Ka 0uk5OXAz"Q$,Epg M13l4\:IEOGyW"'^7:S@u=a34vxM[4,Gp91@CSeNsz1Y1sj))sӿhhZEaRYS~XJ Sћq_ܤYb̰D@Ca[nwM#}VM ٤$?OxKzli 3JH\Rhh6$xp\{^; Z:RMBcq*#lZaJYdZW# ~\_BNzEHNA/o#"S#n|2xQp.u&zޖ"q:sw9/ֳ"kfkzRv1b8(}Z1 [HP~`I0"DA(ƅ  8?/+vĻD:𽝾hؠ}UASPte[ }Ew܊y\tcփ#pף{nI/LMˏgK`]vkMHrXtO:~/"4 '&RȒB!`LRm Sy_@#ueY1SJeG=3Ds]^/j]uH_MQvAIq=(67(4P1"5!Uª*B+퇹؋jnsNa2"r_n>"uc >z8F{Л(hm;><5{@dxa^XیmS2@q|db.%AAJpd>[?le5-&Jz_=c,ѻ60ԯL](u+WԖ ڢAEQ@~U93iRm| 'g-to_ F\0jHoA~ɑ"E`)-jTu>9߷ Py'z4G+iJ`─{^l*Zt\ޑ +7Hr䥇SiFW>qJEtʽ*._#m6Y.]g0|Ы=L*Gpjh0EѮ#SUz$:ι AXՏQ2 } .#W܆}n$yq%Rv!֊c۩2w(+Ӥ[, 㸌1I[ a`,-wYe+ևCFF,eЪdYjƦ^jjkS>%'恵DXf: yj:"}/?l5"! pΉzc7h:Gs8ȇ\ò۴\ m_SfM:ٺ,ww_{=r/x\yxQIK/_nl[$L(fr[rϟ0!qŃ+p/g10pAҸcj+rGͶ: ܷj»b`︼kȼE9 5d#:{|کE4XαA^=Iuk p%Ma:K[_,ӯ|8MGRxR|8n"Z^h휇[?;MɢK")]|( i\?p\%?&$uvYi8n:) 'R{lQR M '9/75i@1 TziAqA1Y#yi k|WjɌ3#@j<i5.|=ԻI F?oNVsc7+¬ẘbh>7kXb{ Bƃ[tZ*_ENE;_ޯt^I*]Pp%;t#?Ia2~\;F)8NwgvQG0G'&eQ7h[w4M1`߂07nobNB$dTڑ6OqyGq{MpU*6Ǔ\':6ƺwr1T Ъ0p>0D;}UʆN'x:d͊;{ {1xt0޶99tֺޅûgT ^LJNB E^*c!?ϱ7F7aL#zi&2K G"{J?BC_٫n7F ڠ\d@>SOnZZ_p";g5m:ZiUzvD\FeZbzԡAd9 Ar q txDjۤ yJ e# x/]IizOCdϢ# 6|æq-yk7׮AMǏ$:oݪFLތA: LLqV(Y<Ò;ؑAgepf5sE"3ߏ14pe8BY=PR`l+m6h[V!>N69FflDcoxjʜagR=# t2'mҚqC` &-Fs/r̹ˆC ߢ%v>/opw/ȹ5jhQģ EeX&S)5Q!@]5y#JGʆm2tI>^oH|Y*%ĒOYwnKo?g,8v> re&龲'`Cqm{hy>]DPYo:R`waa~К%̅6S$7DiD E;Zp1>GNjRU {"I$.X5 B+ " {㾧|IGEa{DfE?C*c8bu03q&1.B\&so0~3j6 R<*8 70*HJmjMTMTN;nj#4l@ wy[G maB+|Q:`KT)+Lþ鎕)C2:Bw_̳l2=\Q4>]&&3fTxw7 u afHʼugaoV%ՇDP1!)Ɨ qp*08isS'RswWǰ /k?ch }l\+kDtdzS궂Сv;vZV4L\v-̫OG^ z_r rP0Vps\x~]v"0{Q"Ȇp}Gk5W8ٮ6-jw`I$ԎxBWzJ{` \7 ެ2]oL БOfR_cK&7*&pHmK^Edaf0#fvJw/]/Izaq)8wgJ\*PmhfK )aVBsQw~H;ZyĀ Or4UNxZSxG=,7RAsU»zd qOvJW 4;{XmpN&rT ͨnXO̊8Ht.4-(%J|U_bT,vɼ _n&  ztfwݑ\Z#~CPl/Η1mPţjv$2="'ßZ"}bkl&KTGxdlu5li{%%iB~LȋZQlu{[rrrSELw@]YeȁSQgz<*vTX"#~B%ZC|mOdp ߐXM61EzhF!DP* b醕NU=SpNsLw4sA$p|G1Ob\ȨvKU t~!^D~o@׆*SKe1n_ZB"+`X `uičm{3C*g=y[?RLf?UM#Ļ7~׽2lԪ04x֭M쫪YʂE ֈ ܶ1UJSuܓDLSRaAǁmO~J?=]ˮyv+{`8lu !Lgac#dDsV b, 6337o"v5υw3-w^XK\!|u>a$nVLDo6*ɑ@x۲ VjVm,ҷZʹl8rӺ'LpN J쇦PtMc^ ,M]"\b@=Ycq9x$UdddY>eYViiYIʡ. $O<<Ű,>9n₪M)EL!X8cI@ڗ\G/h&P/,Yl}&ˍdw&#i̡dz{C@.ekX%cYj4Ik-ac02Q<4 6k)  rȯy}1g4QR!`76jFK!+>k9ZdRi(Ѣ̅\_Y=@.3B[U_Lr1 l嘞gyvk\ bO\Fc xN?,FHFS3X@^`KŶ?z@s87rqF$^Zwj󌒤OXT!d@Bژdguӣ 1}(DvpVcgr&x,+~Y ZRͽS! de9't?>;g%)zU9rg9!c]@;|!!6u* gCLVJPV'P( >.mxJCG.ar.YĹ~M ls9M[)b'Wz90}Fޖ.y&)m'i}>ꯐ3o@9N LAȐݝ5xBEIK.%Pp؉`"L(fe)8N&.VBN_ֻ/H\toW?g@B/{^(!PۿȄX\s4hmp.v(Z]w1cأsQ{9(J;kwK&Vp= $V?G%XZpa2^5S|I໴"&*CN)Dž Eaf}Mō;pF}34OKP3q; jGǟT8GZYT& pXe2;_8GHEӚz°+dd}&ͪ$9iZ~Z_%Wf uQIt. ]\a/&ՙ]gc˼ A6 Q`hk@Ӵ.B3 Yloj#x&\:^Z-S2Ҷs An|*Y*T=#ZZ+nm{J@3_*4 Ǵ6X], #~*pV: P^Wq=fgt@`90ѐ~xA7j˃›xM`te׭ta'm@Ϳ b%}آ֟hnЉYN5<"DI,ףbF xVD `^tGX e9.3DZ௬^Y: E*Uڇ4)/&Iw]u?@ 0aHy ,nTQ>7 r:gbW{4sa h9nxP%^5yՖ6<ʘ:ⷩ5s<3'x m3}ş97PhC`cIFdfVPA42کsY@Wf g\%%y)-t# x*i2ާR9XrpopLPbcD}": c&3CrFY%+(Nw)IUP}} vN!E%- Œ:a\z09a\G;٤u*XP*;=p8)ŃOܪnwULr2A?F®Ycڳc?s| I(8I )T N%n@ +@2r<h :MQ<"ANG$P-qQֶ)!AZȡ qk@T _vrq k\"?,4G=|7SH.ԫTP U)S\FH}Ap2^9cI] q$Vb=mj 7ϡm|@QT֍;R<1_V"oEڎ:l% 8V8(NNSD(i7SeB7˿; -<6UX4UgN^:Fsꠒ LwH:dߑ=c=/uֵ-kfU1NU+H17rJ^ؗwBKܙ&U׶h5LG6RK&?mVcǛ.j _/QyPېوבo8sNں>WQ/_+aFru'SVFӤ :͔@jRΩ9zRO\ȝK ܽrձTtfNw+BgJ}Y0﨔xPYóPK0xS'!Ϥʜȗ.d7_t^lGg 6C=) ~qS`}t t _k܊4 hG ޔj.Mdq"4(]WߡUAL(ߜ(M( ia^:]_ذwEY}] ^eTUyBGX$Ae|AԷq['9-}iMM>2?ibR qc0rc nh+؞ԊPc{z+Q5z1ͶugĢ~z䟗z{Cy0Y C%+t%0v?~ys0DgԨe 3XΑS)TD8EǐYt*L%yKZdg}b;fݿ B̝o*ߙ.$ 0|kBtTj$|A74H>c;O#؝k g߫ 'O^ 1? N8$FiOXVO|F FҘ/ ǔe;-aSwJCL8ks4#ի ]*O~,'&227G[U*eZK3BMnTs""Zx^%h$k@t!H#KṶ*5@n"ζ0.("R"-AM`pMO܏Z*<96Z 7oܫABapuSO _qo:\o^x-7di}uha 틦48ѣPE9g 968qe8Luk3{Nl(|zM'Ʌ_HXZ`44-LE/D|ʜCט|ʷsr}U ̚2.ꭕgbN@q/up`E?hM^S>2-gV8ݲר T=(NQ0 $y˸OD4 +NJ纷D,Ly-g!rGz5\$N,D\Qrʞ4KSUvp n+&\FJ{Xg9>eߜ(.rԆy>3*4-!n5#b_>+]V#_r̈\׎+^mmT ID)&nјEcUKpϐ{<ضY/sS`@5! lkT~)c[Ա5G$xi\N8ULnd0JF." j<9*p%o찢:p>:Edz#mQN]"H4').lrO{x 52\\:0 nLҦĴ28ϫȀD3ʱ1svp>qRr2*G&fOlfi>RH9fX5;M]ۢ(+Bel }9&ܗ_9 $"jZ)13"cYNK_&=p\6? 12VJtnIyd( FV`h&2}U&F?@> {\TI*{l!_\t`B4TK4kUz޵[W7Z@lGSپ|?ޮv*LH{R e8;n6aG}qvǼN)maȚ*5{Lf^T<7n_+,גּ0]Tumωn y$z2{2'AUfDwrq9:llXXlF3]È˚{3]zٯul01^])D?smߘ駜oNH&"~C;$y8oXJ'fSb%=]ʪP͡+!S*CܳTBB_Lo ^ ;L0h2- "IV}mC`F=|VX\޺bUr3z"C#g!_̆-_f)fUYi2F0Mhn7zu%k 军vq,c׈}-Ps/|G@)lgQv~cBQpSPPMG5瘸DWt|-І-[íIdŸ\;u,sf3HAaDm Jq|j%'y3si>F7-68 sqp:v;XӦ0eh.U9VY-i.V}xvUh!ؕQC!O9 q)tvAMfos]0+Hg` .Yka+ urٝ%ƳOVٞ STUN"+ÞU?[jBf8Pqߗ xC=ȈuDs]րa1]ߗi<2siҘ.ャx`W 8לgڢ*_!X,VܵOXUYcżWoبEگIȕ+X r53f7.-5Sf<:ɍC+&yeyB ZӑEºL~2uDӇD&j(j^ܥ ^] h.B뷊MeTJx[.J a_،]X)V4.t eg x_ԾH7oIt 9޲؟B?~I/pz{#%"#N3]0UZmFvzH]iMa-4NZ[x!KE&+3nnזps^E5 L*$5Nf_C< g1Y?.\ktɷDvUm: Quxm_bC m dnP-,ux`5((+(ߢBrT1=' 4 b`|VC9]RB0k"sm /5Xd3`n !Թn{ ^gh  d ƥ2Y&A ?*iZje}TNKB:}.wQkƋWvXH$")CF$-yF,)D5|6- =ocmJ uga 뎥)IuV;yK)U}P@v~DeD YJyxAQ aוqPw=nJt'Poġ'>*fR%VE<]5[H b@hm+ |% >+1Zmtx'?+$4.mrT6J~4!%CBvTDZpLBXQR4UWn*\GU|oRed^"EԂ-91= Ӡa T7U.&V3'>Sq V.l%" Q40s9+/  oFdft{æ\[fU34L@$?"k;}D!/#a}3] #iѢtACd_!Xz(Qf<`4$CJW~Y#rx#hņ#tcSyT*Pmz*%6hmz &?)J<#Rp\ͮ9?DrYX>df̵ EeY`]) Yss1;?x6Rih4MRwk/9rI4Dtœ8D55PE* VBH/H>V*g$K}t|~EddN3\:֓MOl^aEؒщCVq{xܲHf9o̰q JٍuQ #E ;~pċ~,sz߁mi4GLt_KX<fB֤ T23Rw/|Z}aTm@XRj[V~L),H X#}S]Wz9:.Rڜ,͹Bty @Ed~WW4bQ_;ai CG@1?$:da';ԁYׇHֱ/^;<8};h$bsQY6;~H{χSb=ivYΰ.q+տe{YlL~ 詷 Vĩ@fr35Ųls蹜?Hw&7** ~VĢƥ/-Hvd1 SתskTH b/dE"LL8_Oњu  ?Q5z5]n f7 nwCO;<#>NToddXٲ 1w ?.Wk׎uaCl@KW̗q+ڬ_~֚ۼǯgk{Q+sPToZ_2ĭq7_>!:C1vE!jٯ7?BlnQa9j}?{$ $EMSCEh'J܇&mU$qA4sl-sś鼜,4+yG?TY(idGkDw-8a׀L"D C 5c?VY4[XxTibj3nԯ P$F+3d,C.4[7I=js} ?zȈEJ P's:m#6t7AZ%\~SbzlLߦ~fP_څT<7Y{NQuQPcLA&;7\OPq$ܨbvHTd.릉]=W* Fh_.jXa޿,`/A?tkI鸄dj`(Q&;>"AU#i(AT4WSMDlG!0[* |P iwY}!,Dl n_1fyrA~~)H s' ."V|!-t6+ភkހH#l$B$+c1a5em^oނC~sm`S[ T:Ȅ7? bb yͯkoc*1}U[//͖h{2 rʜyx{+G$kҷMQwN[G@aO!.4#[g2ck 7abş ldF+uDr+chU-`]۪&77%P FɕUw*~ qk$IlcV;5 t#5`q[nz]P3ÂUO0(.?0 Mv+] R/KoO{O:9a9bSwV(pgX롞txE yh9 )qpgoVjZ˵xb 000/{7#>QNԉ6iZ".yke=ve`X^v' eR6Սx~*"kJZ_P743VO`H}LG/V2QEtz, D)8`#9Y9vq17'b *EjI*C 4k`tQG]p{{TFљQx͡ ފgHv&!.3MVN.x5J!,kUx &8Zf-፼E a|fBR7t*Qc!hH8}HHL osp3M% Dd:]P}b,O#uؒ0(֎` wcma3kM/]ql4=a3a.hKP''w(euc$KI18WIӏY)P&pc`n(@}[7_r,v1:$b4^/Nڬ=,.Lf7yTC݅/6Lz<.6|0">TT( jg#.uX-=SKB?hk鳥\1^G1N6%үǏKDlĶt\\wњDH_rqq~0f*@&<*u^VIF{$%f^!(r]ǧ 9z%XqYv/肵$ 1ql= A?rB[f HHe~yRg x۱_w^#A'X9fVL,oDaI'Bu)>o<"QB-WM%KCd[Qő(0y!MZAbb߆"UAjGwꠚ Xcu#Zަ#%\\ztcزt}1Mlb[Jk_;dպS<ߓkʵ_"&eѢTo%P٦krkc v;-Ԥ<-q*y@+ԙtk)08:XΠI腶B7ؗ%lDZ٤'ǯP1ҧ~/Byx_"S:>so4r7%rL>}wJ: .mޅT"]vn}zNU=(^@R[f gCD}>HFp|[ƐN/jc"ySҳɟN?sZPM\"N O(e*@ 8}˚XNw8%>Mکk2~;˸u^ޗ̉k>p 6L le<4@.!Ȁu[(GcgFk˄(Hyڼէs]Kó9K(VG LgY MEy\Y-.B"݂inly. oџ$8h{?uFέ%߽|h{ra`Oղ!p֦qr3PkPd]/mUx3RéQm('~p5T^]3Z6dv#x|bVԕJUqt,yh.l-}uc ēZe9 8Fs%eAK)m*:Scrn7s$u^zلAvP}8gXm @Nh *hf7ec˾I3/"_P K+}'@P/'&>\6r~>r9ZS2aaPӌJt!Ϸ/ōdΡP<h;8+:o xoPQ[)+[W]TήHA2%R1./;xc[0-&(f9-Wί*$[iӸH۫Hڣ@ y%q3T<W\=g/b1!^a6^ίA5 zƺc 8ӂcen߭nbfWY}}qf /z-q/Ľ;P@r]po߇Շp| Sө+~Uʳ]IKsܧOIJ -)%0?ұ-'kmS TlGd;eXE| {DP#*hPBV`pJ@Duu"|XŸ{ORoSo91oF9\UI1֥HX5'E2c6p {B[ x.!H_LzRռ^w(L.wPr؜< AĐX@mTjn/cW`ZGb@ʗCүdMl&61$:p ᳼)[exXO9J|wqYq'R`ƻ:;vc&S B/%Ȃ6w޳gS=`)yĆ2}h΁؂G@a[%yeS24_~XՇV3:+l6xJ ,gmz Q x$)!C}IGE$Lt6߈\be4!(^4sE8,fAQb'mD4O H pw,Z-V^Dl90Nk;Q~(J_xM g.ŔXyQ4(Md) @D"W_oZCT@8Y-E '}`9mELx:UfvoqQ,gvݐ6gbAC 1Ejknz>fYuJ^R]DNXwK}]`jW,D6 zWݺesH\n?E,_J7J:\4:NΛM /Kʗ |Q9,Ԛ˽&ՀD^$h_`N?dUCF [ M '0>=lvl tKNf؉|heaIPjl,.g[oʉh cA=q"b^Sy[x&O?+l!51;Ѱ@Mzlېj;Im_S jh{l`r8Hƣawfu 43E:;ovcnz-ۑÒ"k=wcZe{aIϽ؉G ASyar N74Wʪ5AyjGܐ|whj?aCU H|~nj7Nk+BtO%Cmr:۝6"evҶ]%7c‚\`Vrv"ySA1vDMbH]yGM@M]جa>ЫX`566fW"n_CYG~Ws i}:OB36N{>`k&֭e]^p&`-YyeNG x$VZ &a.?"$_Iz#3S"նX?SWN}&hыL3R'Ρ u~{HA xoᄻbGKL@;jč4c"ce7P9fY$IASU5ɅP G8Z5]9jG3$B BS|KeO+Ղ;@ҬO*aI |AJnti,u7nqSh>wH{:hHeoY4nZLA+޲%n/^UR>Jf8e$!NOF=ͱ7P3xcHnQ3aLqE{YT`{i.} pPOJaSr;gGvqn2B!L~.A.yE%U1K6鉺TTJ@ޑ "ʇCcɱn/rrkVM_XʴwzCJFT$Q34ƸcI, 8z>9!O=kMJYqWkv?ao@+{g(E69F*w~|2ZR\d8BqB.VCsʹ4 Zה6pԱyaiTʜ Wҏ˴g[+FS">#}N-k)21Y!wAeW+$ =K]Z9ey2pD<؃qkOfD䭀m 𴱧ۆ?AIz"B5'1LI;41_ O2(_)r@ilT]=ۛhpmiYEx5Zg+PE$0X(G0]@MD 3=>eI,DTV򎵰/'= -hG{@<)ʢߞzz^Ṱ68 u(QV)fUGo19,_ {HI!hoI?n ?XK)ls{DX$@^upig$Û&t#BA BԀZ>u!h[K:0دL)LfAQ$;mQ?3j+hnF 8+Kݷr<\&\Bi +tq *˨Ƶ( MV'3d%*)4J_ *u_zAr~:ʥ_c8о3t75rH;iE4g, Q0NVm5\ ӣ6W;4cHJ[lʵG C1|ʚ,MpgrB0T2櫣Gg+]֌̓-@‫L*?\[R'zY{We:݅ 6=>1D ?0a(Ng5XJBTU~*(B5yVy?U):g!V{Թyv6Ï 7Ko_~,-pM}s+'/~j򨟛Յ8C+U E/mn8PxNR^jAenٞ\EZǞfBv=S߆M%Xj˟؈#ajՌbDdtI%4*k cwgfU/I]"t^lsLd~{ G+oWו'iK <5lpk"mתG4 "rvۧyH~g5pYaţ5%k'>1 ?#v8o.@ά@ $li?[rO`#@pM_P(i{sAX U~UԠ?{ Ͽ=@ϨI>cD:bHEWڛҶ9Ypz,d{[öXOewKhV5Zd+57D"u6aKZNy"$[)L;gܝQ0~Ձ`YIVX̩I~zll6M/=t[Tn*&E17R!]D_rT8vƽIK/F+҉taw᱓O3RV8ji=[.A {F>uo6/vf%_+\k>.FLYDUvՓOT ޒ+Bmp8iUz5fI)ɑ 6^5oTp_R;b0G7p>qy .U؈] XtgfFU8xx4## C%nyF-|_n)~uNP4fhy2˔zU``DսAFFz˻P4<p<R7Qok\C t2Lt2:Xyzux=\&-2 ~ЇN%#|rT ˞^Ӽ&BQql>}dIjG5I'ϩwT ց3Hs@sx"!^l -"qO]])#=&Jhcc3ԐS}fOb"RHUZLH<$3!(E%H,խ&_е0(6 F@dWxhOqj|\=;H5xKL*EPߪ~ %DtZ&G#yFm{%+ON4Gg˦ #3vx%C{m(j[|IFX.j^@`{bX1!ƹlRي ;jQLam1qw[\g9i΢\;zN)'yasMw36oXr)_KZxG i":)nG?CSfg!/aJ,Ɔ@_ 쐌חn+-Jb[8_H }UT?,'vDgAgKf0ԁ[^tdԒG^1 hG;3n~Q!'/ @,1(qN BiT0-R5 > Slp.ZWZ͇i"^ODT}vCj?̃z1z'EJBpy)"! Po&2t>?J+ ߛX\{Ŗm4h-a0EɅj&[Tpkd ,яS?%{/;)Gi聲S~C Cb{G>-J~ɽ%OZs#d#jn]wڳO+.X*jʙo鱵ot(Ѳb"tAH0~<.pT>sWr Rmŝ;P!Ll"-_cjaމ.3iP;Abfw.BԁUd"rv% Y*SmH5Hi(a9z`ש#zAyO*Tvo=W/dlX[mρpܲPC|Z _t|7]P̣>gYu/|ڝȢ.g^+mgz^+aEO./ . B ډ_ v\.8( H ziyl;ms@3:XlgNTXaa@zP,3}*oA%aKT<(,Gfӱ.? W3 yדB\'4t131RWNUOw*i-z~/Dȕ`B4bbpqĚ,e._!yk) #O0x0IwLRMȪT>81' XwlLgQ DkVxSv!-BI"].?΅)ZG5lVC+7*F>«|to\΋,@.}Z>ppIs?B~xfړqR^p#2]:EQ} 5xQZw`!y!P\5 حȂ8+g>IEڮ1Ԅ :ԒBpMě|cs8 j{hA֯99r*ۊ]ÙϬy_ʲq{Cq-)0N)tX<*S#|W6eAh-%hhIsW5653aB.ozd ?bB\8fQCr0Iq uR F=6Ed"BId@aM0 UTK`>8yUI4#RկN%f%h~U|?Ӳw924[9gw(7X~&.TZw8\_1ghjv6SzI v$X/Ϫ!-oG ays㯣4/T{2-y?`L+|)9bO9[Y_wag#qJQa^UŞ6o"57H^4:8|e5qѻY9$pB/aߛV$7WB3L<>!+,̔_4 ʒX @mW~#@Q|w.T'Ygv tc<.\H3(})}n(2@U3'Z)>s`yN<fA]YOoVfʚ"ԔÎv!pAAg+Ob\aW H]Wnzy/³;S^#2bIBͥz(L\gJeވGvH-exer=]ި;2,Xs܏vz5R.8V Y(VXQ~փv pH4mEil8}E 6hLQtAc.)г9%7(1$GH1gatA&o^)̌eymeLT<[l`ђї#pke2%YM -g&꽋&I[ywk3 TĚRxa@;[V\^/ L8s0,e_Fij[*"/W-ES $aϥ1?VzŁMqc|ҳ`y6'g/[$QLx,΁Q{(=g9hIzF#FLiKX}t4DPa{ޝ }JP@]C䙠#! a7L |#7?;PY\/[6LfP2WRdN;<,8':ӮQ,mԶzTjR~ cb~SN~N)}AGOf*eX:09SZRBG_#5S&s̰j.eֲ)ia+F-ug㑄MT*vrӄLbB+i0r 3c+lvvcB pDH -xʧTrTy3}SEqhnޅR5/Е"S~|=sfM_!̑  WIģr]׾_UҙX3 庘ޡhܾ|؎`zr蛕j-T;]c)U~sAb>\K0*=E2hPo>xɄ# Uƽ8=,^,u]?[ز%eI7+9@ ƆCOa[N3[M);b[;?iLč=cE0Uf(7a.|; j8;~F`N-[`XJq&IȮ{㯓]vQtrP$A 3{e,1%ydz`1J,^`4oH TQQ+ 8 R~I dYhV1>41z63Mlv[&M\n!5c=J?Va> 8iMQU1]lG_LǏ4m7ZhSTl$dRhzR^Ө|4Wr0l,yˎfp(n}? ?C3'($UAe߽Bu%>61e10dnC]\uRkdtb:Vp4@}oŐI&Pr7=h)6i%Tn3<(.,6#/E8Sg|'c/`E٩ʝo^ HGN#Z ^p_> k&h'k jB=5D~wm 7=֎8~aFq 00A7h;lVmdo'VM iYQg冔4_E14{7z-AL"2íE> V%9&ףւK٧, _01󦁲+2qE)yut JV i(%c^.7YѵΞx;2N<@#ӟvLJ+ը!89'TYwJiPenˋ+)wZ7X&FUqz뫄7uor!"ȥpX_ 'nT.׵ :.^`ZfjR0.bWB&y韹J8+d. @,ԚieV딱25nvf~Hǧ!oBz9FC\ 4#ݾ1%(L jv3ٷDUާArU.pU#97ꆫ7ö+}L%?u6q@whнE:X_nt8" S ͗emu*w 7_?nwY0 Q~v}} 'Kn2d Ľ3}"&hQ@bѕEϰ%I<voo2Yr ??I•Xd}4/ldbjy:lV.Q s/4/#B5͏=B>L3Tt$Ӆ}8] *$7͏H;Uw(i++#&NV3/3TY%sXTBHȼWcէc>- ^Z@7ۃãH4 ̈V]3x C,5mAoh b͎ZGۼM-ǐR ja݁ۤPâ7q{p]86;:9A{YCnNcHNn9ܳୠ# jSOߒ:e@tq C̀V^?#OlAa:Nf4rlsU'VnJ[4ơjx@1i*~ H՟qJ<1<ԴSZ ~mJP̓=jHvBYʅ n0;ykHj_]yPW-G'`#(h`9Έy@ 9λ~*9p5,c 0EX+6x ۽3Ĉlo3Uj/%{]@T 4PTzD53xw cEDk'Q# rӝqO%ȯ62?cYUz v]qT_Ds^=Z(A' ]|i4ZHjnͬz~O0W@ Zkm'_|jX_KqF3 z:#~dÂ!P+uBъ* ؛.a_:h9jX$H:Elχt,V(K:+) A)~柩3;XVV>*8]cF8`0a@ԛ)ŰD{(peHV@4b|ՐlYq\5.R"*/xYlmdݢQvE6m[5`?cn[kffAn(__SRRT4 #IgnŚozkؼwH3I3 VOltf!iѧ]7M ?%ҾESWkd<39 cpZS8 5wU1#CeNh)F(MNݺ<;hɴuJἚ7\F{ otI1R,rF4Ί+4w ®211Ba8Kd{Ǻ߯{*ȑWq&W"X[+o7T_CEr$pw WWwUe]/K9#{ 92yD D}޲#MFLW)`|6&(8rn_ݘ"S\[럲p;)KR-ssj@Me3ZT b%7@<&z!*9ɾfmq]#eJE_P3 [_`7b+w [iOƅ pU" tQw^\}(-ջPGoI0TOcȟyJc :8Sz\c#Ί<$JPINqП5 Z !x{S7gϪYݱ[P1kvybzZ~<}%m9+g MLhQd;4lI< T2 L!XăR|NyYWb@B~xĂ/([sP5轆R=5b#Jp.|H4Y#=hĻ*zj+VW}KvgqwglkVy $ =3K; u32 P_b ȥh xz0!hYs)tl^F_oUO3POm g+관2'SjPDE@{LHL ӵ?~ l^..:+W.'z֖9ePzT`%ޠagzQ@wb@Zwl$-#NRHi8Z*XZ>$#frrl땬{V_R@ vQs/fe+m BxPv5ɑ;0y4`ўs !14t0Po3qW8.imZI޷ng_A{RmlcR̫{>WI})/̌G68 h.|Wf<ߜNULIaUgWM?Y{v@JB*hIrh*TH Wd(z{eaFZf@!+*%!C2}7I+{9]`7M"zjtl>N4&Q&UՓib0f;:B>szɝXbwP S܂u Ģv6j*aL=~*p">v.=-EF7Cq_zr)b@"$̆Rg5`ޓؿA z~T2rkvV$Yly6}_~|+$2 i%}3f7AZ _p7eye1Uwٴ[|h>Tk 2~w#e4K "+>9O,5(ZkIc]2zO= ?Pu=cw\<QLJ~~ӭ箽Q{t 5ʆkNͷ ~MnCOխ((CLweNJ\|wL"E` EY45TXu x8fH7ًZ;X 햶j湎 }4s>D(ʸŸyhYxeBat~ uW_8J5 -bJg/< ,BcVyX,6<@C8&B RWnȜ phN_F {Rf~)%5\ jUL]r:+.dȼ>^,  <5C{Nd**&02 FCF<*$R+iCp;yu?PzK&]oLq+;sLHѰh{VSodgA3j`Ů N!`.N|6b17 ؂or\$BX;x" x'OA۷!o,v۔кՉ_۱ASUIy.ȡ(๿“CH{{?D 7iCX4ۯoɎw7gs7{+RouAd!zun\@:3; p~ aީWaUPxW[6&/kZA9(F>ޥC y&s#LCuyrP=f+Z&" c 2fSfܷD&.t4-}<<ħޤq@}lC,s]'tWۈ,"CT)"Uur."P\& l ubuhRtЉ"g|v#F-^-XZ|K Xd ;=>|ٯK.9u_hTlw?rx,7]Y;K*--?iڐzjԱh :4.C@-g4Vb((! #K($ @DHcЅѪM0(.Yy#SAF趉OUD*Y:(%QX (ق@灮1ɼ& Z^N.Ѥ8RA ?y r$-k+D0iPބVk~X G6-xvRJ`b< }HFuάl|Rc~zD[z-q@뮮e&ni UwBʀrGEQ4NR{G5ŕޢ+.Va-F){h,Wp-iylYjbk;(0S49_ru|߭tX͉oT]TD IM(I w%Yd)ĒٌP`k/FzFqdf1/Ge KIn.*LvB/|_xZk>θhq^)H:*(!3U9z6q@PS=SuF+A_JIo4rqN{R .'֡;||ãrf/jrZ›ŻX.2N#?tphcϚ~]Ic="īU^|xUov7^-p805U~9BEl pR.ňSNYw-u 6h&al~qݵ c7*(Ҧm&ƙG3f1I -U:Ix$L Ӕ; (Ad*KۢZD(JJ}|;QȞ]6YgJFMUءW<ކc ݍb 0zm~/p]Ȋ_zi0a*&Gn|\UmxeIdуW G4/٫ȲO.T3Ӊf[ ?_eb.]!r3W'stߡW Ϻ@^^@T1!J=rbU~x)8M|+Q'镧F,!{8712[.('u~pҗ|ͼY^o/Z?˚ sjS ve(A"yl3D-F :k|Fߣ>]0f˪HR} MvLĽ gǺ*6EZ(=5;Y%mM=5m)NNТJ& s(w®CO_vֱS2#ǬiPL>l~@yqĬhTfouiJ|I!PvjΌi>@POmrg^\4(`m41|C5HPX-^&%1r%oDd``at&;೑:OȣHd,e g0mfჴM8b+su{kMz8b^I]w9hpFCwt;` ,Zև_ߊ s{|ҫL% 3oM?WBP2%"bs4Kx䂤淣?OQn$tw?|B0n@D$sSѭ&jߺ-dhҚϥhHqd2 nr@ ؝+^cX HV/#{|`j"TQ{%Сz2y5+{ dT/ >qOA{߯T F:2u D-PQ&ZKhȦRx$Ez՟GV%*H7cӘ&>HX'8eꁞR+P0[u},jX1Oݘy_))Ov$fq&L ^[۲-bŇ԰f R M:?. hI͡U]Nکa/"-[pxEsU`$TrfVÆ$X/|m`X}Kydmii&șw2vK`Bt:ɭ;X?/»BujBί>{I%ac+mH&jC17)/&.OYnМ}9K~g,Fw2nlbce(yC#U 3a%Rj\b-/iVuN nHR'8i4Fmb: Q3w-x ܹ4,su+Lc}2a C>C QhߩMq 6u: })UH賔r/f*bt`%gFbZoHf判}uFb%$2G'ldds›i*z iJKt@r:JG P[`7 g\ s?b]2rpOCA7EhPDN0z:!*Z(S`;?кܛi+(Pm(:% Ap_m揅1KpD@/Ѡ.ŵYcF|r jXFdF2OSB STx!hEGQٽS V+p,G9.ԇ9+1JytrWMHp3>#mJy߀qE{ac#ΈCCVJ<ۋ&v~e>h5@bI#gêx֙ȃHpe/6 Mvv7#*or\h6+]3BǾHmm?'Ė 1V?Br!A<؎>LP.n( Z&]Jx3LH@ u 7?$v` ԃL6=gմtC*´=Q1eēҦmk\` 6ٶjwEfhR h3=u& @zz Y(ax=`%1'$RrPi`a,qNl[D~iCd/bQ}C,vtĞ:?QVS:Lj>|c0IM?fcW} J5I2ԢIԁ7MW"&SzeG8 (P8 }Y{'~rQ{ '́n9|_,Gs!-X:eXfBmU1"x?&g_l[{QXG-8o~wnà l; tb^{Ԍ.ӆa8K6mKxhGl҉0hk >auՏޫ|+R/XՈ}*"wԎ8v"YuMuz!L|dhY}Y|lvz2`EXՍ?#a*NЙL.]\}y@ ~,##GJJ{#{Bd._3+rCԒ }|ppYt6ŀkڐO hai;H -P9}h ۉ]| ֲi`c=W4lԆ Y+(nVGb0{g]i\W?;^iy9ܦPi} [hӁ VMmmu)1Oi#؂7*\@gŴ49uJ#><٢AcB Ic`f&*ݫ>2o8Z T @>WE;C315:GC1&*V`C $+ 7.y 2otPᔼՋD۽T<]=.A䮺F>1Z>Hr[lǨbTI :  jo<|aQQ_e 81zN:pՔOcM%gz?7,JDr|ֈ[.+FC؂l.݄ꈡv0PRdOlDOTY/~YYVhz1txdd8w^vESeˇLk&8zZ1#u$g(P%Q  &XL+QޓvyJC?-b ݝ13E[oS_ߛh6; oy\líU:s?ElakLpmCˣ P"sC11k|nv.D oh"&wmt8)`2U3lTOwcJ~'"OEz?G))*B ]bn3<Qז4Z0wEs8UQׂ쇩 jB;@-`DVЩN4$%"G6\:ln+3B3[lC謞G#60TT6R [qŗQz; zyxzfyd2YukxA^.QS:[OWFfk*n({T`qnEtOхőQ]*鲼u/[G` w'.C)8֚ %M] ˾r+ݙ:)Ј >GUf.Nu"R:5?omEϲ$#Tx͜[ -{3hęnf%6b$!iÇd"{˅!%͵k10r#Pe.) .G =78h#_vG\۬3W9glWl kK+qTh$x-xp5J*G;?Ғo%_)=qB4v7s hM(w q:UK:v%v,3e*B5O6*F?a(2mdO۴Y䝆;[R[?DDWpv>T̃@2.gRdI܂zb!!@•q2>=lb+mzӾHMvq<S c.ߵ~11111}5!;"obl!ЇDvn1n:zY.r{GG9`gQ`9 貓J}тd;W^ DJ"*O>ݞ~D=YJ)*i$_%HeGn-j=]ߑ{׆U?YswF(?cF!O᝛o4j|W'C^ό*@xW8CeSU$MO/$nmVAl2qbkpG" 5zzrɷ \3x͸sfE}T֒B*"QŦNVObk9=#-eH=~-Vg%TC\EڿAhDFS#g JK*2m_<+3Y{!yiD3ԁ@&"[uz;`H]Tss,wCd hHŠPY]8",hFQ꧘z#ѽgY;87ybRuw d*G瘠n+ ]t%%*(77x"+q:l.Shc"isՇ ^X5z­@o\\$-[Y}"Cӣqg30.9cA^Ԥ*XbD)B+)ddenwBHZz}:dXL{ ;pKp `$;ϲ jedH6B1;1umT͘4#S:g[q(6A%hk6%t9{ b(28х拞jM)PpFb _ d9q-_Vyy$\ZOk۷ۅ#:6'EkNݚ{UW:Xl"2/3' 1{ eXD.\Y]# K~"-$陱V|U.=0 tkFX mJRվi޾ DӋE۳xDKQHuO> :ÁiК-6[LAP[+dZ/U;ln Ey܅_@EE՘ҋ)dW:OjԔSj6h /=0:?}qϽ.$#&UEOOGH9s<6 ݷdhpnK[3%MkF0W eвߕmФ4iO 3(PlWVvwY`[{jl(el_]=Qϧ6? 儙[뇹b[:pc*>jp7hS_HwI>#aϴ+$PvY1K D(8M`1ULNDdH3E<%29#@qMtϕKjԬRcw[Se,cbOOѲE)bnKࡎnv!& cXg\lX@R!J=i7!AxT1NX ==pxqM`U֢kXN%gзL(]&ݖI KwlJ"5Jf^hMXָW29o= N˓ LĶ.ԼL}XdCuj Mx juvC8kPCB-_ॐ+V5 ltVQɾbu*oL=E2KB"k c)jY3NQѲWLJsH0SCAQtB$9CE֜nB.KD`trC /broFS=Dw{`&|}*臋eC@GJs38_UTJ{zA̸*od@ԗ/ijC#%ϻ4od4jE1 ĥU I#VdĀ.y745|h %JCC&P7\Y1 cIdydJT{縫h\MNzM7eZ*m.#(nO|g훢SeuWJfDu*CStNh~Q.Afֈ~m5(^aΈ͆cu+HԠ "|yus$/{!]cCWXf~cRzH%Dp-"c$3s)wZ߷l*/':bh~^KesSӺ#nx)t6B-G֥/I|o>3hēfU$RD$FT-c9bVm 不yKu&;R~]ZpYИӇDzjcpDdӵK+L G`hP}ɹm+q7ċ<ґ 0%}yiT:-D/$>I &g2r%G! 4Q3mCI$͙U\=,8+7]u?LVj.@S{u2ZɄM~N8ޢ=US5Ȳ: GEqx} =\Cf e"o0ݚ+F! @7%8k/2[%H苊|Dj:Q[7$a'`V扈C0ɫ+YlM4#A?{Dv6%rg6~#H}ycoR:g˪|T^?)- "֢ZpAnc=nxEoF4# Gtu[P]ۍ5Ndrk& Hjh(~euȏC1'BNtrݢ $ WQ#2 'ܬ"GY݁'x?,,f|8GO?jym&79f%VN\xmQFU @ˏ)U`\F.TR1ЗV3 i͘07(=y1<( >;yg\(1P`u$?0i&Q2quŇެqiEbVhBl=g#aZ sn} $&|$0a zJ7n;5GM{/kj5r{ڇe;xryWDj6IKbui-bQed#q~ :$/ig"U:Sl DL㔦1Aq3kxK61GM@6P ~qJ`S˾R\Y*HAIGT6rj8k  y|d2, a]t&`%EYLy*#>+x"(L~u%9~s!h6Ip6%i> (Κ{_ϯJV:l5gLjxO0F*8_4E2/%cՍ'[ nK@0a}?䰂 wқOf͞B(FU:*"5Xѱ=s) Elh6R?쥲J@IjKSr(=QඊU`cptzCt~[z|{-""kO 'wËw񀊇QR2VY0Fvsx5kxԱo ,pKw$jI0Vlm3tQSi!*18w:EvRUnw ~٣)@F1TXHZz]ʬuw͏oE؆Z|.l}:5.l:aA*ySþϝ ӱ$h[-A{!*~`%xTgoQlonz #T&,&:/Jx̶K-3P**9lz?4;`کpQ^"tm1YdxuJ- Pzjm\UH)[bٴo$*G$ӃB3FL@R!Zإ6.tNoʯq."F^Cn[WK Ȧ?>X'_kܣh m{K^cS })jne( ~| 3"d[;apxjb>]]~OʑhB;sBN+ n | \NXkswMiu"`2z@Uqg0R-0T7S #5|@'d7m\z[^bYJNlȎ:߆LKnҬ)Si,3,_9zg&eU02P~9B̰>dD[@כS|YQ$ƉBz :nVoQ^^1hsTVo+ٓ8L=z3jGGg2oj72ȶA~?yUJ]PWu%9f( EW伂e醗'5{gQ_i/PWI?4jf0DK1PK5ʹt+,E T<:?\lTQy푯e)ʁ,3xR3¶ њ umk@jX:5Uҭ\yhBUjoK3N7YԘS,C?Î=+Aw`DOԕU0j~?5xSUEejߩZS@oyOt/̼<0PZ>B6śD8NJ#ǵrw s?]͆S%7ThtJJ(TC?cYx?>*CZ_XOL {!圩?B oR wɐn.Ӏ+Ā-@7&[@CUjA~IlxA"u0Ú>;i'pit/g:? #U]@߅{(Xbc@1Io2G(G8d#©.2IKwЉoTgO\= q5Dضʈ;Y ̿8F ;HP0˜7;M?xq~`.z+JPw&PJYjVu`X7Ӿ( yoMa]C:!!^hp( `렽8<9 pw"R<,JˬRcjn6t@`GN o@wsZV]9?v4Z! : ʰ1/;7F\||:\3q;"hB\Ux 8㋀ngGP̮_+DI"F}kvypmwu;=FpC@abuAe*_/4,SH|mi;V6$7Ѯ\!{&9auL>7)IzqnW_qv 7Yu{ ҝ|M_oN3Of\i 'k!9B:pcLOfԞo&<>2v8;% c3ks6:¢{gj ɄrNs~[> @mڪf@EIX^PO@@_ZZƁ9P9"*d,!"0Pybs+h)R?LO5`9\IXфuq`< %9:LyUu^z}hrtv 'H[Tdv$͍N.NZKuc) 9@7[1b|YGRr, O"^LxPkoAۗyَ:KO QhД iX'~tgicQ+{>~Oܻ[drI ӽ$>8= HT7Xi&zySUAxc<͵b,0kOH:0ݸn$2X^i4?>]@ND|PS"n'CԸE0I,7If oV8xPZ 84Xrۋ;ywu*fia<>Eja`~ 5O-(^G)oA 5;QrсP q#ORjkic L9z^V_TNܩN5o?0~&^Xw8l2ő~(L[tܡ<\ފ3kǂwp꛱9rBkV&qzLQwi%UiӢHC\'Gx^}hWz^8}Hا"Dk>.ꎙ䂼KXu7 ݞϒn*~5\4MwOo۷պX =RR48)OL ?2~pxn ;@ $][y *dKiҏ#4d(N? 9 ȣEvxMDr|oڡqNաCsܞz?glԸǕ Jc>kR9Wf!#p{̍]#,Nlnշ/ 8v%0=SC[Xg>t)}Wxu@gY\$ V8&}kE`ʰx_mh`iV|B"ž|ZaR3(:f_ǚ w\qis om#/׌yZEvdvquͶ^yyi p\y(%y-ª: 4@C(Oe+ (Tjlx5i 8f M]of7f#&sI9,_lCm77`D26ocBR:(E(EnCOyGaƝ;?TItBӠxE+gfA5DfMEW ޤu~\kez0Q]NL@m&6\,!Ȩ.QjbYK$8x+2bqOrQ/O})-߻Mf׼^YY&Yo1Iz4/ b:Z#kѣ1>D0qlԭ-FOvf2oJܞ$։o8Plqx) 6#α,nKNxeGTpȟ  gtKϡVSXD.*MnuCRŌz!l`?ߺB8 `"҂jtbgѴJEN>qVw<LJ'PZgĬ\<>&KV!J:Ct`BsXF/tSMf%͆n+LU:̦4YI3  K.r x>V|/wz--t<#u1$뵽W07χ-l{1&D>'5)!@Ի&8Gw2Nյ7)bw@=5?<(4NZ>{SP 94Ut$yM-)c*UoNGN&0O_zLHN`YP2:'dus|Y>W?z>݆~.'VpC߶D=m%OjE'<nCQyW*R3Od4X5fR'#]ӡ,KX,AϠCޣkdz5 n aZ5/3Crd1pcq9$?Z0yZ>,]vݝ2ւM\ɠ[[86{{ɴqW\-<_O sϵ5^Ў.aWw{kIZ%,mR}d\(M"y FL2i/@:@!z8Aާk t9{TO*|?&AɎt7-EkJ5IN rfH>o<.8.IY֜\zGa=7tl@#M lT{r&ґIEdq`%+m'\ !zϯK\ cM17jlZyє®mZ|{C q9+€fdaf@^#C_yIYW9{q+=$hM׹yUZԖF~v>ۤy~M+ҴlѝȡTwJir b˲< rF,˦:ȭekS* eAc/N\tP@۪OS&_1X-I8wK2S>i׊*jwr*di#.|2@idw3ٍl׾ƒx&{iuPw 2QD%%H5׷}(bLq>+B0le:4h\:bv[RW(C n;'huY\P~DP]|yGn&ұ=4Zʈ6AՇ,`m0]EYf;re#,JE)ZJL也Rh8/S/xWm/LQr͆5~| L V2԰*J ڱ|~}D%Vʬ(@Pq͡8<S`+  -{FxiM> %qmTݟFm{=:>#E ahkO)( Qm ^!K} 56*O"a `Mysv:z&ҽ~m{jJu?H+i!Qzb| rߌm>npN4U;ÿ7/Eu黟O@Uk:pGhSr\H͓Ak"%֤1I:ʯ`-h)ҴKx_eϱ7YB GD kr!jȐXBPmOq>2d ±Sd1llQDOPiھwKNiM89kDdSSFX;3Ǹr#iK08F˨iqEV2jr'(A6S"RF7}XA_MY\8R` 1gk'bK܌Q2 )ݢk{<>,s|>~xeu_n Hv52 1;F[$bۯVgy.OЙȕ.H6 ,J㨤ԤΝmI r1; {r|8TuG5Di s-ԩqYзkЇEEp+{B6rCYf3$t2N [::8jca^$7E]6T!OY>#Ĵ$ F a^8g4Qny')RҳweoeKgd>k|w)6` QI!Y}Or,ۇi/J C m&v* 6]zbjk,)_fWTt껓~t^,a\R*on+b@4%U~qutPy< nH}LOKSZ4'X*+!ʃC5ys]V<9xGsX|;wT!ƶ~Wi]b1 :qS^6LCex7.9v>,Jx,m#Xӥ>(仲t/O5㬭?|, SF v{埪οR8k%Bw8 iDgnG196%<7*1S>K%N{][4O0;Q#ZܕE*^654j׼LImΞ2 3GUV  x3"x#!5GrH,mAktV O.y:yO/{WC+7@kȆ g4*#%4q\ھo:Grw]|g1ElW|~RR"%>3] PӰٍb4yUMh)ԦpF#DRSW\"SSҡP#dPC˳{mKiMvlc&R-Ybjsl&HʴV SO捡?JRT87J6g%!}:iKԻ /zD^"yNq1yҀlҚ)?Eˣ 2S֠R"Pj|)Jy^hGw𔫧*wBP.Z(>-;MJT-3`D/:*";0cϕ6ʆ71?>1ٌn,+sKa<4I6s$i4~J .s~=+"!X㞻,9n5#-4cpH 6l߉o~ 6j%h&u$#wepk2}̕q)Ew8]ϑM!LU-[$ F>I7,` UiH"v!'0SzVt򑋈!6hɫ,hNY~G_v\|WrW*pXOT.*P|+AMε6"΁tM8Q3*:.V$+Cޢn{5_k4 n|JzkI$O%z|i|M_? Fez. wH|^$%v$\JGuZM9*$K;;~:lSj[UN Gsǭڒ>.&9R`H`ka(zMU ǧG\6MdXz˻c@]=󦦒7dA]vN^D"PpJ2ΝsK1b. X= ԏ^X:z#zu~tM11S`8^0,c&C*Ɔ! ]DqOm$9Acځx|h,4b.FKŽ}: jm UC>r(Z~Y#%\=zB5КRIUg{67ѡj\2} Džw,ԣBntTFk$Z}3Jfͯ ,{q кdC-_:90cVe~q} 76Vfq+ח$ʵÎؘ nȫ+lwtSD.cp{˅9cdvzȗ)G זJ8f#U!˧q~ c =8{IIdn|Y 15ɶ١X<}g[p߇WDQ)k8>}TƸNL1f֝bG\uť,ǃMv(vu0׊I@[^$x(DH=b^BR&_-{Hxi5N0E%i21av"d${#V e睦sqӰ 5/%V~{l;%br^k'YL0jNe83ÁeV**aX4Ri*%yekrC U[Cy/AnoځPfkTԣ#e6ߍncVdFFuЕV[,/4DNȼPW51Z" l8u˄6O2s:5,obvR <ʽs44ٸ0uD .읷Y&A$`䔟 hb7F}+%4l[:(ӏ<8-ۖYO(! yed Q= =!Jg'l%Q%x|D[A7JS1ttͨbc$ytőYp#[Ksl|UclQb(Sb0q){]tdß҅TTngN}7~t(=["R_h>$VCnFf &p nApxGZzڲ%7 ;k)e)sB"&hU|p MB 0x^ȈBvf Bu<{ʹ2'Dj|-⃯Aʂު@Sy]NtҸe,k0ݎϽ q`4Pf)!J񇍤3_t{ѷ7T5C8XuEײ܆qU]<ف:8\fXܧNZdZ<;e ʿ륟@a+[%ZMzt)ɐJYB,.wpDϦM %@vWdq>Ԕ9b2M=b[tlN=ʮx3q;= E0is,mm<^%n|7^?h=(˩aU6VnΑ[Ҙ)8GC^dR\>J1"JtK6H1"Mė\`KiE]a!dxr.p->*IEU{އgjBi7I+-yz`(ε!äF^wZHkz8'ת9X70.{fqsz2_E,.Xy, kₒ!)^mD`i}nDupE>+fµ8ggӌ}LֱB.  & QJJn2 ϒ+ ^Ut7WCNES;6*""i]\ig2>IF ُUhVkS95^wyw"x3+9{v>.{Woo~`\ޗ"e,聙?h0PSjak*4˻5@nCFPI`)1v|rZ.;xbv^Nꢊ5[1, zGStmG#Q tГcg$VQ0_siUO}Pfsr+E DQlw<V ıܱ.Hl_jUEۢe fY1ߩG|2:&Q lXgn9πivug͹z@.m <V_fwʷxo$.Nڭ,Ub8*V3l\ΉrdՃ5Pۤǣײp=oiδE?~f*)[JjX8ûm ߕI`-?hk^teo"؝J9bB awf xfU5]2/<ӏ 5Sm- & ZIΝQ:=nNZ[+~jV-KATd:&b/3EV 6do:)!gVH6>e4DP( {s%hp 'yk N>6m^1JlR* nL]$0@W6rr- `¹>[;{9^YhJϓ^d~G>#bGR3 $e/-EWJ#x̑R {c}^,37D*\ɾ)GWTU) xL9:YUo/])5s5v>ZLb Fr9H|09V?PFDpf j>sGf0zPH4]e)8ZUפ3 blȅ;^kw72qo.V`w} ek̶52c}O#3.N!--P)[:@nH%t3=-bZxK'\ 1%2,jGX?4h0uEhdx&qsn&F,[cd$MmffIodpۍ EH$Cɿ*ǑZt]m 3yK¹M#X㇌Z5OP? 4 +5}[E U`|7{ERn gQQM?-Ra 1| j/rp!qXe(yNSc7ojV*rsvI=@U\&̢YP]̞[sMoC#1q3+RdۢlDNLMogU~O J+Ю=,.Ŕ7(l/(DiTE`puyqRm aw"n(0&ehq>./2XNjA OTʐ#v -q 7p".%|T]!9: }EǍЃ˕7B gin "YW/=RdafcX(E>G/(i [Zi?KyJVr#,no4s CPl(d@2W(C&8H_sX%gE xn{J3n=b @)9 ql$F'><zjN9>NT%{rhv-RC0'U՘x_%8\GMW$m?G.ŘPXS_'ty|[WǥiK6Lu;%If([4lmC hV_J_>kڹӴ[h-[qbS} !2OcmxM n^!drKr>=8CYHÚ:e5.IƄ6>4)Կ(1c_|0y0FuLWѪ}n2s,Lo,IоlV]jZ|jd CMLwE,!N{C':(`m6%;_X0' F Li|tX2(ěd5)8?`^`QtwLk !7FݜZJkW"ŖZƠ`k˃* ;x-k6joӁ! yrDT98hvI.*¨,aE<-2o)e~Q_ij"]oZd9;H.i}!$Q[G8'e3sqc€PJk5ΡJ!Ȉ ?vFIg$n++4-H<ke{DೊDX^z%D_5p:Q]EshH z&X!K"yY}W0\]#!f<3рC3Zo${` t8%[tC|]j |cQ={ͅ9nvn]D[5q逜  YoQ%RoƊG$_ڤ'z,W$<&[P6ጇQ\qAP5LDSc?b26Ān&HN+o,Y; )g+xP6k2먚e`*XM3k R8ChM7u86Qk6$Y1x3_3Y"+ ;~\/t)- G}wHdL'JHՕpp:X;ѴSC#FV1*wq;@xGՠ೾;2-sb駅Yu,cy{#Eab}ul-'$A_; 3KSR1g,W &y㉒xwbΛуTȽ8rwe7Wv=^^:^R)l:v\?`ħ `$scYjy@w4%qvPp*Eej;Ǟ.>``"Z`pDRXK _@lֹ;vNfp1vފrS} A<"U>SǑm}%P^2òX%z%+r9|آwn.`Hƒ" s&K{vckGU4}(΋hͳ!") xrS!UI"MbRi-nHn0 `&?T9wq B2pR(K,L-PIgi>t:',=$jiU* l('^Hr6zN %zs ?]1Ce#O6Lq%AaRߋGkEO@#kR\6.\7F2t\)HvDq~vI[.F jեV 3+'sTկ1PZjg3 ݊Ͽ$>aJq dOJt^_8DPP|g}_;$CI)j妟eu#`[t@\)bGp E8| x@\B}CP5 YL^NH ciVр[Kuc kq*ꖓ wawO Xap2C[O#jxe3LlhR)l}ڱpJyS3(WLА-͋7p$``ڣ4]xvb 6^oMAC }6S/S5dHo~,A= Â߮?ERB#&^"|xH gqQ94a#p~jQLj2]PӜ)o\BJ;uæhLޓ$$<8O@R|zxG8z<?[}I){1y#J_/ $b7FQFt6kw>>֠lN] V&Ojk;>cR6s_ 1|cn}d0ި0L:ǒFmSBu89 ƈ)) >CNq37yB̈q Eq-cW"S'M^t`*[Fwa!uQ7`20Ӊ,6zp<ǟ3|[v&6[]N}{~KWیgw\w|i<],[I.dB@jp0lp2J^|㌈_ q-ќMl+Nlx09Qv7tڄ6pW̱ᗼY󻲳AbE4"guj֏pEkMmO=uho΂?|%K;n g0>sJK331zѿ1Fk!N$Ql~}NVed´DŽoN%t ͖7P&/+Z&u=TzBu 2zr{[$\cE.Kۘ3ڠDœS KS{&[[l{+87x/s3@(LjnϪ(6t& >9K Rw[JZ)5 Kƈ8Iӵ%3dzk|ZkLm뺵-. Y1R;.Ox-nrPІ.-ckMXasa%}NrZe C`/KFtsZ_sh>%>Qu?EVřUN}^'@\q%Cm&^!el05@.2 b0L yBٖ,{qoSR dƷ|#>;-Nԇ! l.90ga4chk,ʚCo0\ W02OKt~ @ OV;XȩʬOj&C񺒜yr>ijHA6d\PK6C}j:>NbU_bu@h!yS9G#R> VdP7 mOUђ6~$lw1_ǔ <Qͷ{L(r#|e(*A11&ݛFLhW aZ9[>C>#~.[zKr(h"1u>A@L9I@і`;|"OungUq{`?(g3)#i 00gP@jʯ)h3?ףUm s3$y ~hO B/k6fmP4\G^~b9' u֤ݰp꣸t1gMB  1+GZV.#PgaRgyi;k5eӰDL, y4o<U|wO +6ll7#,N;yGlM;wźBqH/,"-lwFzO'Q lrˎN{E k^ݥk;fr!>Vde/{c O8U&-ڌW 3K-2߹:迫'?n ~Mk9I(LK4 ݏ^JR?,0hO¤ەIu{O x3o`5Ɉd{ C"(kj5wDȶ/E9UauƄPײFyꝡ`hC/o6cF_m5͘L~H@>]2M|-3 YDKs\] VrO+H}䇶d: :C |]XZ)Me?<סr~vu]VF(׭/B8ä_ |RHfF(K>NSjD}KX!8 2R/k@εu.'Jބuy6GJeZ^_}?cfNje"dtdkY22 856$˯a(ًQ14eK&؅pGg}J5_GPЛ*O 4ڞ5 S ̺#y{ɝʘ(ו/A8bƧ4rn/\pQ֘\6?J$\=!Vh//ZgNyVL}kFFE© ^u4~JaKV7(Faxq;j>9qsq@H5{d/ŌG_1"zTsQTKmfBЂBu[R*@xA;Ȳ0vzҽQ&zm <.^7Glf+:.&MztT8˱~] tKcm,9eXZiG<"8,}f2rQcvaTW,#w+LRXbZm݁qd.x;TxO335S 톨kh9q UFVa/ޗi lk:+H0Ð[\aI9ȉWyQVlPkOt7քɖ_0vc/HM?*)'X":#Р>u^YsƤsVi|61"ġB!c[0joiօ*PPX4lFZڈRY=5%+l-ĸ4tDy`)1*h9dT?)n'DhQk*`#iSD舐h B -/;͋ll,fmZUuP#1dCvpg城ݯyB-)Cc#op֫VDu#6jᩎ"of,Cfzv </F  ?A& fqKn8I?R%n: ҿM˅DOE suKtG>,ˆe2Bfvdž޲rPiO@܂w_ҋ q0c5 B|J=^WA32OrdjF <׃u:MdV DZqڇ\H~dPۭBk! ֢/yAR` ܁~Ȟ\/w"<Bq"t/#MrZ<Tʚ]e brs޳9#/ ZKy )'E4 Esٚ@wTZ/1A xurv=uPɨ8֝WDJHINu1P QYSh(?rU̼~B<)$nƛ jlR%@y{qAM/l$X"p\ IOEAr)pA<ǗI86ESqj_xq?O6ֱCD~BT%}  *8w OoS.d-[^M?;eX= h\&xhrI_"`("/5(jvu >ؤ(Li?^(SM51߁0 w oHf&uF+0̰rٚ/J''lz8g29-JCt@.~ ti@&V㶭.iZfj"*"_4cD~IP\D( zY)Dkpx<^* _s3Yq5`&+y.@2Q VmAb:['X\M/< d#ܯNQmR+Y@Ʈ7WE0hHw#]7V⣭T% pD6J\c'1z&P!aQѦCgCRB2d {hx BYG4/ x,p^g>:!ܥZeߎu֥eULܣm0W7Ed ~Ns2qKw(CUJXO050g{CP<{]"cw%OhZݗrGE.Qhɽs,IҶ/[ I`l. 6Ug.B&夅GEf.uw( "h$qG<17BeßXx7#$I4sn׈IՐ|"ovv; :7sz!fƺ6:=OD'14z{w\X .;<GEW0TAΡ*dpҾSK|X00۽&"1/ff{8KV|JhF }BoƎKӰ6;\hQeMh=/@Xj~+51JWN$65Ҁ\9;9F4͌o45bu6 l< &gd"frKr@|jL5Q7֮N5 qHuxmMIjdPZYU$Ov+ _׼\Ϩn- PZw'a du"sEh"R\*ba&u2^ȶ0yv&<{ו_3kc.B5mЎHcQ ծߺ-AR*ɟ*μ(]XhlL_Z%x'ђiNGx8`Ǘ6NQ׆VמCɟ~]y S?$<õ!-٪ָ6{U܌|<E>ݾВ{}A /[틂PyؼM,s Q yEBX47#Q R+/P}y7RuI)^x dռYEr2٩5|j׊~ 0Z)L]tL"N3F.kܭ5I(狡=!ݝ(eX(TO"]kwHJB8de- \-euY2gj 꺣+O+)qp i<"nlvU~~V|C R x"VwLwn"M`V`Pj C3-]uG2Zۓ.voS|l 3 v` <9Gy͹$E%s}7 R ?|҂?ĔIG#"9ĴOZA .ktա˅ە.AA_#d)!EN'5y,rShԀzbL{em|߼*ܽ+i߽DE٧'0 jwI]*M)^` zя[seDQ(9ݳR]g`+,T7]@g9vFr 6vGD24%1HL p5w, ϪS*OS FHV-A8l&qOa0B0Kn٢"2Qw= Ds13>be}:5;Gbh:gL#;ݢ|y1 Oj{IiB7ս4}iz`))Aq D5˗-7SY+J}(o`EeI&ÙвR` ^[Ɩިv)Y{ |GmZt@6H H܎Ojp D7"f BDѦu'CgD2:n~⸚OBƔ#a6,v/zέ{DJHȿ`i!C(簥cm>ɜcW\(Q^^y/d G흤~Qn18FE b *ڎPR}a3$Ȉ#LڹU1/OrNsS8OJ^C,'@P%E27sA=;VV|)y7]#=u0A";u*G%WmyqwCʉǯxvhxyq;-;Jy1R*\޴b"dhQ?ѕ=hnJ.wΜLۈ.Gk9~R haV@T'k4xlSijj II;1CA8 А8V>bPY7e@gYbKJ*K >KOOu#ߐHU; s7ʼnG=goI 6d|gD?\aY?%SoO"e]b:'\K<Q:Y6aRE0/ n~sj)lF*U`ߒ3x2 $2C-By[ZK&`7(gsǥ YޛfhTۋQE!%zj\nE'`^V;"!sݺjwp*ux9uDZ"$Z幂(G;D 2ԫrStO݆N 4k5&kG~|OSc2=TU=﷓ Hv"9&0/ l :1Ǯ/C<5x{2o# S8`Sd%״9:oɴ?gz"`fF-HTN"yF TYg +či\p1nX,*S@)b= Oj:x-..o6SΗ>Cg9Ju}݀39;TzRTDj'3 _6^[35 pg<,"Gm#,;$2g0lNڛ^i0_hٸښ)N࣒qs)]03*M6ct@Vz#,$u!O s a y @Di6#is-b, Nfero4gw&e@ m'U59 x'r8 *hg̮Pd ;DKUabHqcNN2_*bԑp[ 8܂c4u񏙵kͩ?t/*ӷ)E5i%m0nR=ŗ}t*-OIJ̉1Fa9|{> eF*!4tezĴ9@B6sv8Ɖ)hy!Qm ?ePE]̖2Bk.o cox`yc` jtKBf>c(X+v84}Fjq%*%`[J3>OZs,[hL<@7'eWE8epjS;E,mQs<4)9 r &akȠ8<^9qK訵R? _&4^7ń~b'uYWp۩:vFE'Q+In4y R>~N[֎0Mc{ǩXwF2Y?4KaKI]Up=[ KP)vδ_=& 79EY at} ,%vuRY$7%VǢЗ5ej#}F c^gAj8gt}cLbY{^ƈ]ko4RF85G$`OAUd'[9 d!E@6=UiclgF076-"؜,4kF;:G +i)UQӱM ;osk"rggp"ʫ:>ߙfzIy;3; )gP<)4ps:\PnZF 1&^/R8 A+(_$ۃ&ՙHt,{BwaF2 I{ҾԳ$ $t#.8PJTV,vhw-qG]? 4R?[DB%^hb n'pӔP]]Z`uyQbXa)I\c\*IGmm# VNܺ!CKVKVn KrޘȎ.ƭ H?ՅrD#9ۅ*;kX3W] 8m_zjdr`o)6R|pO1:n[ ZۂUNSHrߎL:f ltd^ٲy#y6ʰdf5v>bb(֘?ejU5&I>!4S׃(LmW919XGOM%:)G.{ 4C88d"7oj?Rb<)e#I#O.Bۖqd#soI vݱi¶] )/ Z:K,o2h5p-HASEv^| \'ńm I^T$( [фy%DŽzB+DKඔȟͣf޲:Hֹ]u ' UЌqT&}h$s{e㣔P %urB9q(x @uZZkNP͜ %Ė(I'#'f];8}Iqi[l !E?; Fhu@ZPDQR8n[%ߔSg2i<8ő\aiD{?C}Crnou2efFpX3S/6X߷?_3Jf#f4NMQ~Y{~݈cZY߻Eݵ^ΧO( PݳTgz> M7c-蝹GmD(/ذ lUm+^z'̘go>ɺ+v~D+ٕGVMdbUv&a *}yc_}Cݜ^J4cP6Ű12tZJD6PHg*dW:mvzfລUMH˚OEa";pO a@sO H\lRx x[H^gw&b)'Is*7 {Z GؔQWgƷJ"㉫1[pz۱cY{FJX pz)Ab'?6A6Ь6ħSy'̎g3C cDzsiCAm-{v `u.W|imC*[6%&/M"`4 F3;Es I1,5H*_pY% fi,5zljQXZrUaCl mB~0V>{z/)wO5>TlBԤ-^hIu){?U)8WbuzœBgS"ډ.O3V(z\D˕l*b1O>gpd}-8=Zhf# DŹPJ$ dKűRSI/>xwbܗRys|[/7AS>0 ]V|Hr2AWLܔ̗E@KQ-* ҭwt>7"pǯX|FgHOw oB@ALy e 5B>xE$UE6l li /ED p u~w#tb6@yA)@`^ Ahs:xݾqy}CeW`|S%[;؋0׀h;zymZڳ_}sd_Hm6WJ{hƺO-6T+VvL{T=Dͤ*`Y]Զ&!6n +XX@\r# fxYQ\FXQˑxٽ+. <(M1;<80jr7Tu^/tKPS"2ʤLz({64{$f6e v^pVD5T.Si񰧦dm|5n92Y"ދܟ=6Đ8?Zq)pZas/'HSb_h!mAXg2 &֍?]V Ke(tuJE68Em l o]7Z5 ge|ŒuMu}\O|_P~MQ>N}E|<ݢ&'mg Ȓd IԁgNwEFJ= CJľfaVۚ3}V~2R\ꥒ˼CɩE끲ΰlJw$'aE YqRP~)#%88F1(0GD+yFcGڠ7+dD9 vU) ޟKE&f54+:4|[jJ]<"d2sP{y fZ0@+T#']3˺`6|eo*`D}='ʢ79 M y .|mꆺ>{VyH2Ap GX|q"1E|GyIaHfg)A\P "T9?;֝ST{xG at}I}NAS7g%spLu$>YS3,\5r;zcL˪dq%4IrZi&ܻH61dzMl5D R3xvLGs)a*MHuYB=,_^ջ$ (*F*wSyhtLqnf(}#yQo(?*>@lzo ofBM{ZX^?J'RMF@K(!EWN~a1'ҵI`ٝ.1HoZD_hO$.?sGҺ'?>կ7N?K;9KrVƏڳ~J9]nv_4ߤbH!: 'P%#Y*1c΀%0Gv;6?ݓ0C"Tr/ήn̹jiA0:z: +VDOGb,\3s{4t5ǺƘlk1X]@(#Ï\W핫 Vs/D{OဥԴ"9t㊻VA XtVr7&&,GZw/[-'ݔ\"gKxO ފW G ?W53&]irpL{x0KVҦle74`,KѿYuïʈtǺF2Y6s s2Qh#4xz8 g@!H["܀^PCD!4|(t;$&?Dh10MG]чUqsO +ܜbJbHeZQS9ӟYRoXW&&{ĄQP"ȃѣi_뢥2G{K+ zpf?VrJ ľ~,8v^﷎/l.2_DwmЏK?KޥΪ|e (0Y"<6|\q`(ߧ.@9BDdCjdPVYwDmnjG@ 0 0sڼjT;"Xgp-^c64AL\F$ &2# - ӣY  2_|WyW 7z~qKCy(s Ab㈃cI DF xg@_#8ٽ-iyXO >E7لO%s2`+<ցfk=0F^& >+DY0d/Obq$5J(vc|䳮!]Y̷ h@YHtYL2JIs0F=N2,V,Z$WZ/v byohQbSenRg+Q00`V.d0.ńgSF}B^8;@JLQT N&|~Z/"%UjWPE9ϐ?!iwMh:2" hF \ޫ4Bab1v(ʸk-ryiGRY\jzP),fH{))) :re&VOh8|/1^e\779XrXƛb@1EO<`e|WW^B1rO=Z۸l՚7ӆ,zTtM(8l4,k3\rw1n^YcN${Ec"f1Nuq~t4H>j ܿT<ΎyHԆGU`xfSŵ+}W:X DMF\lF g}'qbwX‰֯N@-1_IEŌSc)Ɨd1 9C7ʵ(ivEzIBGRAV Vf#-OF.(Ax}X-ׄ)G˼A:uxI3c7l}˓vc]:|`tvJ8`2| m`xRu1Li|+NUWlhzVH BfF}f؋%d A.^T]qnu3&B Vt3 r{ddS9}QWsI\| %\" jˆ^UzXP|imp }KM.SsrMtr-j3>-6|<:tG7$r_wS@vYH0Ox9:>wI*J. ɰ.c_w#過Ǖg>88-UwPq4kMïmܺT&K$,ݰߴ++va.GLsעx2G.DznrG 6Ra/}j\k~`A/CI}xlQ nGFh G^V7>-A2 EΉ7pF ^k9F^{KDu'ymspqFNE)7v|?E^/y}2sKe+mAYnaIK׫=`8JLCo }2uƫ(:s.Z|kzq.\J~Kn(ߤLhf$X8}pƦCR+!߁j9W"j>e4d-VNQy:r\# G}_>yaߧra埑"9`iYf)]`M|́x4npLfPPtf=+F n?#"X"v\FWm 1V3 3mo! S|衢Q#s;z0g+]vl 4Y,COjPB3jWΤpBɽo ~/'WL $Q3#y:f Zʓ)@,d{"{$řuٳK)1̒=k"DmHjQj6pŲd5)D<~Ϗޟ {.r`DÃd;}qdhBfRή)ree*YrLld2eZ]>>)ɫQ?&iߜsl8=:0$ԹR\mt21ĉs| |fWfM_gB%A48ι%cOLiYK]^&8^ 7Vs"&MrNp2_CsT?^kH$lB`Ar_YcMw!b{%u& t~$a՝r٬?[5Gf/G =11z6<23r 8r'%^QĎϛ{z Y_g(o?GZ>=GP%e^-$1X=xxb!x;#(.,t>:0وLiSC>K)!+1w3MI1JP0+D&S\cUa<̊c72M5]L̇,ٸ7Ky5׈ش/Ur"rOG!ю|(CQ; O+ݒ/RXYf\F?~Ѩ4ufY 19smF(bW2 >8\hvkP37SxM,FosVIL(386:4JW9FT27R0v ,`N]qe=Nܠ0ʔ6}pc| Z@p|ǜPWF9A5lE5]5Ȓ"7(1f )6QeNqp--@>Ĭ Jh=gq_w8w[jCƄz*+HpNļiմ;㫟F|o|MXhfl8yC].䐹pbs(?z=Bff<CDP%:˄^C- Pŧ0fsV6-,OV'A#rnNC.R]76"a>% GM|ZyIi.uW!Z噽0C'{Vu1LJE.Dy8uHOI_b\8$ˆ nsUlݵ'CyKA )յ,ͪ¨~BW/Wbriٻm61"X7.!BNږ>$^UU khTDv=,QkX@Pn-uUXABSM `G"NB. =l(-Sɀl'i>$bT}6ȴ]FE}4%w_q]?(W?o&W`\h6bʲ*vyle.a|;\f7BL0@12U9F)w,? Cmy,)RfE}~'qym÷ʌAIʝ2CR_e)*qō%4BxCrn]049][ ܺy>#҅8b(4^ET6@z.f߇5ߗzUH{UKE{NUk6)U'L!)1bTro6¹l,'lN0rc:[^Yt0GZfM IV[XS‹TXm)Ky4j'Aя?2EpooS1Fd(7=nhd=sǯtKͼ:[Nhwf2Hp3u:¨Z}TvI xn"YMB;1(1lxiR˷#`U|R?K]Lu &E._tjwJYM2{xOѼJKxҏg|uYj7˹B2?se3"IZ h1A2ڜrM˔RF9?of`"ԯNDzlʞƑ2r/ ,q>OKj1JbNXJp*2}]hl- Jo߃rr>k;dFgb*9iUiIJRLT0sЕlRNɔ(+̸Q\%tXKl'Qj_ UR{6$Ϝ՛@_q|QJA4ZGuwVi6j0WEx􆬾ՃKts=# V (*yq߇^)oL 5jl Oֳ̟.[kSf٬YND!F_w=]5oyLq_KBKfGe ,Қ`hpGRApfƔ/Mr3ݑwuIrrM_IhpB?z$gRʩ=;RQoj+I&_"?]n⃅-ZÚi.UeA(Ư3yNw՘,,J8} Ӛ:4)Bvj.@b{|5rAπrS&[gG~˪GS" Ĥ nv?,!SF/ Ya+EV|ȡQ\*:yp}L btn˒: -$%`iRG851*,`}@0;&r[RI"vp*dEÂIYNemB8vn9qόl`dh3+4RkQק`\1xT )v٢M2"=P MԿ.ҷJ4PU$sn=.@K_ 0h ]=f+>/ӤܤSb !}[EӜ8I@XN>lk8gɪ"6V]>qfo5PmfGUDc4mF[P3/t\Ҽ֡4R4vq9L9]&X@m)7qk_ϗxVBef>(3mE" f#y NP]gWׇO$&&/) L22*AʬdZ)=I3֧tL|I]X!~Rь۠Vyw\lGMJkS%@i5N^C͑Af_)NMF‘ecgIYB7pnFXVc;%RubX1 y^zuDvRl1 4_qV]gB{Ka,͏ac Pbw/ vRZ'Ȃg ugQ,4^ 4U>%ZY )wB|Z ٮ8܋_A w6D|s;w@Bh8, lL:cȱKFR`E_$? `fpg;, g*?0UuiaȎ[k[l=fk#)^ H#06^ b*4X`L#!fOLư!AҫP (`G:T{[F~JBAAp*XfUM8ScU?ASPUe-^5)w9h3wL('7$+y nܠ O8n9 pM,2Q8㖟bu_ .8wQDBA@O&/ 05V430 $O M.vQy#fKF{/"r3g="?s~Z(;H*t$p!*' XM‘X>^ 7Y{2ɓ(¤ٟQ‫6*59_YRžvfZ?٢^2-b40'r;jg|9l[U c"j!jH+*E|NGRoTwHq%jhHdKLLtk4k5Deǐp62;5nܴMՐQ19*eZxH ?ll7&KC΀.jB}IlSm7[dy;@aB ;hnkB Z8`M[YgG꙯Dmu\F{ ƨw 8M-kL#V; ]gD1{VGR<$ HT\c+rUs(hR~wP<śeՋ9I% Buf%:aWH!ñ‰LWj |qR-L66Dd$⌆p#Rpib`}x-s]2mn %-{i2&i B` glKI2koE<^5ke-8Wg} "u)y')qpoU/͕B%sIťb\`B O%P[47>2 5]_ܚLNfaYs<6ǐ縡rЎ}eN[zbD`̭"1gYNfB(Zt uagŽՋNH6#X{$!L4H1 >D`+_x υV~&x (0 3u铙qDpً{O}CJ%T+LnlW8 ^K$/\hHKw;* I, KT0)ڲA@dl`fM;Wd$clœ?sޖ6̽u3A{OBH*KK7ՇۄIu{sA V{k dJ(g2*Sl9S! o|ew?VJu:#;j?/\xp=ne2y- |u>h,PM`FlB6PM&NZ~UzY}s䀰n_.γ)wsmc=\p^^EJWSD4]' WJE-lU/+Z \ͽ>6@xl#jԻjDG1,s<߲O\Sedo ?0w+I%HQ{5iN }:*7FEjO?{e=^o+F FBbgPE¤.VٔOabK{(K  $)!< 2:9}qNq(NYݳi3o Qce\D ̕^<74>DGZ\<؜Gk$Ru0vȋI*SP7e`sSg5+=2D39~I,)0kv<2J<͕SWMW&6x%9+bc})U:\~@s!$Fe^?N橊;ocXj dPDepU)mL9{*$y]:S&\peHYjT>'݌VMH JhA35m5мЃHK## l9t>Ю/ ""<:޳CBx̲ M|:rxA|wA:{BG6jv;mTBVKk_!" O"t&<O,ۆ#ylڇTŴe҅ duøNGMӚX90|-sb#vh;)_f Bt5 +7yQ3k[K]$zU酊Ob$h}J/@9IM#VMqKX15 u֭L_C ~({[hzjwOg|q a f nWHх|iFW5b@Խ$E"dv&JS$ρ7r#\:IH\)OGg]µ]D0[D@G_Ta:Iv"cjc~sF712ed_˞3[6V9)]nzyZ?׀H#&{N 璣 @vs|ˎ1.􀎚ۑR١"1 0N#8FuG ;’kJS: (ot:71CoQ2E$T<exxqQ3waO7(e!ϧnWf9g8*J]TQCuti&)I*Ó )|Ty{DҝrȰ3b'3Z<~nAQPmbyjʧҭߩ J|l@<ƸPaG UMxcQIUMWeDcV꾅e 珂~ȥLk˥}Mfi}#'cFde7/WOOhS?7`w>?NU<'TҢ`ODv po A־ܖ%tLkQ>0 ^}6c]v+Α}3 $gpQ# ڤ.kp.?ˇ3R\ثeCYVz_|ˋ+mSM"%.[b(jo{Ţ"ʃ{Sb/JT;  t$Eb PB#'g@ nidNg&dL]EĄǘ1[MWjƬ36&)pƅ7߽dRs I XH+i /A˩9טťTIsvƁo+ct0k؀eʡ^L HgszK$݄=S-]{0|VdȄ.ܬR]v7E S ہ tQE&0o=H&gvZwK*F`RP,u>`Ɠ~yK4 @Z5|G7ՁMɇJ*di7˴A".'0JA00λu|aDTE*WĐ"MfAlLeeM9V e9L%l(+>"ױcSi!պ|% NQ: 8 R)x+}ET%0Q$6 &'~OZ=3-+MPx$<v7Iœz^;9Ƒ'~oG`AJQ і6_lZБجK5|q>$Y C Nɡ3~kj7|kQګ-dsۦ{5k0! <q @5n+H+Am"Fq3 eQ`Okn'7)@k?z?'S NkK$O>O3ɚޟts׍=M>eGIYg`AyB4Z1zZ.c}1.%\a( uUlz F]Fdq;G<~1,g'%^/i1't?&EaZ{07,7 R^Bʿ3ݪ { fΡZg 5j~\~1o,yI$#Oecm ~gX0+EϿjA#?N~zOqw8W5*\>->Kp<%f<+=I(cyd rlfaH*Zu r (D]z8oҖ@]k XW{îdɴQpsKaVJ n퀐F 8|epDBHW)eG dC%n[.X{!u3V ̦F9/𐑖n3%4s*ePḘQ7IC>˺p~Ly?_ʣH-]AˤQDg( Xê$iG)!Mtq=%~f0xFi? ; 1-w6 HhiIĒiGM9e ,F9Ag%drΘG7njRGEiT$Vr *Ag+G8@CYݏfE;Xf^bvl,ArHlOruj %)'|[EYYRY7Ѓ9eJh)Q_ӬAQÌ'å)y!52˩{uy ͸2?W]lmY|Y*Z pˏtsLxMqr[Q Yem Pg:p[Ths9Ή`]MkwhJ,2bUQ >k!jJ]=kϠPR/J"i=OHI $\i$ݕt&k˄M./1CjQ $W"Cs'E+ vu:,WS[`*; j hʨ0ƻR? gis}c|_x'3&kˁʮ2^AOZ2=/,T&睐E'NyH ^ XG&^fk5#SpCPyPA߿Z:lַi .\A&yA`oWǓov9S*W,r8`cr'|ӊ <.l Eȵ$m =jkL-\W ϶X\N-oB9 )zMqTa U 6#GB)&NGF,ʼ^f"bװi4:!G7B9yÀqcXP(N: P.8(= !Bd;m,rߴ|ҽI5Z:+O,Ok<eQ`gpr~~kkB:v>TRy%> fȽNx5lh |!jgEIsVϞ eF ӫu .spط6uZ>H;8m )u8kEN'; mL %wۂU l(#[<;wޠxm0}6c5/R6J[[ |//kB yi;]+z>ijqm9~lpq䑩;ꃲ5,I$6wYvXb8BPr5P@XҐ " !}2OvfnNc ⩋Tд\oMPƐ?SњmM# ط (S׾ΏjK̞SaujG'51T!>cĨm3D2e 7O$=1WX͸YkeH!f{1\D4:0uQ<"[>>@{.y7*yX)< *,ZݬoѲF aE0S9|.m.CKR֡1&ˣ..߅)~6d;I7\x2Krh .1eS{ZEl!e5ZU(`̳%R7kn+@9?{Hi T;jNas`$d_>wlkqCы4hs-{bڇp )@`f*7IEIG\7=xNeVbOB| 8NNY+xrfT;NUAb}{,@ek4Yte2RMtt`n3bA ##_V͈$0%_/[}x M) ԬXyLzeDlj~}@%:HkN ~"@KK9n/x.ט#|GJ%ڔgH4 ؞go VxMtMݱ%c覽™@"E%2r:b$-ge៙\GDN:MN~ |2LvH)QU0޿H"{V"_e_kUR.ߞp7ey7gb(< 4gFnJ^f|EÑHڝn''C ~wu `| fzb5r p*ڥ]S yS]Bbd%4-T[LAӸN4T*)"I-yo|Fզ$YKSTCU;E9 ^ "`5<Z֡{-"\GJGޗMاe.A}ePҺqEDIlOsv"{Aֽ\[(om7*0 z[]w"l ?ͨ֡YN#Mi4͉qN<=%a֭fGN N:<`;Y).,qK^Fݨ xn$(xY*%-%ٜآP!w]]+Ҍs,-Wf(m oFr'l*`Af/"XTdnW0O>;0L 8sTQٔk*3LQ@SdslӴ+,l=v*#0jNG ߰(1ڢh-fpIXOY{ |T(PMWjόAˢ X'? Kȋ O Զ8$`m[G!f&5נn jin.l]XPnS.1[?slB]X>MK+R}䂤k0D}q]_Fg1d&6e =hBZh n]5%{M^8~:䂾c+_hX!S2ce~|2"1o1oLz,/;O%Q`\kI%.05ϪmzcJ:l~Oh'&ŔT̃^/@@G,T F"bN=K}b$'ؽ]r2ƧϋCX !onnx+nk2jshz's87_{G:+.1b#c*Z!Yp3E N\[A YͻA'^]& pan}o-] 1a hHPjX ɦ=>\w{baf5P{"+T$iJSPS~o8RȞɕDK}*;A5f5mb݌i>;ig[ľ632 vC\ʏ`^\˺a% +l;` ڤ!:/uRoISBԤM]@Jd]W2ĦP/0RĚ/_2k_1w4҄24 XQվ+l޼'wp]TD'-ھy 7¾qߎs]ISipYt]ph9 o1J~C=Y,W =Qt&0_9Kva̶?Vot23oDI(2|?;EEiE#xMM͎.hX{f6c+ݻfsM1ˢ&&Eݬ\@UX:gqLli0}՞^ S|A;`d$~xW]R5@ ?³]ӥn Ao<C(fS΍DĿx qsPgra'34M,;7e{;H׿߅&#biNHڽSVaK ۠XBv(U8 h+ b h7فنUJ^Ek6$3!YYϟm{S̔;!`XnEm-fQAAh3bfM@Pf&fcR5h<Ϩա?)[ړxY#t&b#RL#}]sGlmCޓw-mR+U6e@HTB89喆F{|;fRf^7(3u7h蛛ϜekHN5ÆxsPZǙjr`t[.܆#!j;ٞr;gwg BjR(/h"̜J;VRh_ZJzjA iǚx0K@뀶E?jm61dRxy2װ?f@-Sx;/G?! y[81WI<1P:jJϼCٱ!]W;{cF:=* WɟNOҠag1H+N af3fl㥾2\5#AM{RUCX)'$H+W@&kRe!6]ߨpIJ|lrEԹJGǤƽ;$ioNoYc5~cg2gy>hS0`GuWaH˙Lǯ hf+w:6a065X [f;X@`^Ѝw/ІIkڣO_aIj=P?fKڹb'.-w"+!&M@GD"$h7p ҾEjWj-6`9NI F/ӸȆEH3n!6M QCΞkE(ygdc䷗\xI;w uf| m9ǂ j]>X5k7O/:]:$ojSn2" ˁוVG+mΆӑ~N lh(0M~6 2%@MZ"2fcuAnX$e\‰NIflu-QZ~*R~,;"g(WWOJzz7lX=h1) qZtg~A]E4 8)*[w VE Ė|'[W"Odq j0nޑ?_y0Z{M ?lC ֆ@x1dzz޼~r*ϕ/8I-̋Sle`Ż> 6f|8!aoBeqgw&hX$( )A N#EhU[ n7(d(p4*/lKc_Vo%A~(B#Hy 3]dYuVUuΣQPѩEVNjbõ]'ZrɱD<Ț%3\xr˓ >FwS'=]eK>xh"쨕##R')p9;(UT! h4^\mӎxz\BܾUxAEj~@l2Jгuw0,5$cFzԁr6ha'nG956U%hܝbryYt8YkQ0:NūPqXHco~Kʡ":FJ wWEAOoraԡ<`lu&؆ 3. W6Kuyp2OYvC!%Bp,i.نOؐm;BL QOtݘ_0GT5x*(>SGZjou-&0@qvO*bSGyFe5Sm3b9rȫ,;E.!#a sJ6_%ĤlM>3i wFo򟗟~RsR`}7MQw*8<@Ŝ6ml p->CnO(TG94hWX3e1 DS%G^ ȍ l/S79~`+Ҫ6$cB"z}su6X,T]JV|EO"&E3_ih%fSDv?N@kxM?\Ei"RLobUm*?ޚ`@>VWTꉵP9CPir'[]9-ZY!S[eAvT3 a !?t25C*Z<`5GT$BE9bYȝg;A}9:$0> ruvsJ d" / V]i< t3Ւu.tKo7P_6 IZBa |SF>t A\ܫv8 LNH֚(4t-Cd<\Iptڑv-1O}p98F[x7co#x1S2i&buwJ?݁ӌ.whN ~X>| .8Y7v>.Pшn_H2T5;#xkOEag쉕]{ >y Lҡ Hzk]Nٴ"#D%LQja3qtO0=m@N/;]k0&7O?X+X(P{q( .bm^V67E 1Vdb1.PZ-K1%KcXcP2QF&Ѧ 0 GkOCB}@i2=B"q qifL}@G>_$A}r6]28'@&pBֽ桕&IAI@"0ph']?X q5jgw5ks j#-Ê;-GNOT Ȋo]C9ըUxf]OZAˏ;rN4]enxs"`f$vގ:fӦ-5Dr<(X^jҨߡdp'VIKe^^gS6&{X_"l %U ":8]~#?Y[}0>PK\ c8x ɂ :Ƨ_Ӵ2n )|M3Lw[kpqH#yXs)w%AI X~` Z`]^kW'<M{$&K,DG3TM͉lkYW2 b ȣXl@V8\~*Ҵн 'Rޓg.5T-" eEf$_A*ǦrJj} 8ݢb<##[r,EEgq &ѵ#0u_Ro]8#8H%7ʗ<3@%+%k C>2܉sɗ^E2]-Sx3;2F"#:$ԅzNWL$dM{L] ňgcɷZ+`{5;{ |ΠT? |JN %cVJ͖_ 4s z}]2FQOGP_5gQ葐XkLׄ ſ-{q3̜[ڴ..P3R`26g`׏%ѽ˷-6,ca^g ֩{G,oJO@'J)0UWqΙ ƅR5N<%.!̶A'zt2\Q[ 4A<ȡx5t߲p+*b7 a P2YzZT腃`PdJ",CE|9҉O?UQ'uXL@PVڽj}*W%zc_p*|"R;Jy=_$E$R_ˍeحBe1Y TE=aJ9R{˭k^B_~^!\D `z v ײREU}:_-wfb ik[IxCZUͷqΤ̻p 1WcUٮ T~&ZI1c-2׭@`ߕ׹ݕFμkǽx-_A7Y:+њ<览-ZK|yDD ?.*."h] oxFs"dm=ЍvrX>YMoOk,]mәw[ S }0h٨82g:iz~{ֶlKن @6!!OAy PI;XX|;Ht{i+ sV.<´qYWFƦ)k*- --O0 Gٷ0=$ZQnT#"*"B:mPgTs*6v|){}7-K1FDdwۦu6(e ODII8^LR%\jgO ΤMd|L^[wz .`ZIYD$pgWkck#B<-yMzULc/&$^_mїR~Z-aBO H^9&iMڨRd%1xy,qp5Tt3K*rCMq~\nl#4[^ rD^Km[ A$*t*zXVRg^B3ppdVOS# kRRY=۽= Aj͙,ʅ h~߮mQj¦鑵t+Sl=V EvF q!KCj#AyAiYW!TBR^7"JFW6R[A,5 <+lKmG)Jg⽞!$6ɩ[Sn}`(nT.[RMd23S4bli`hSWTӮ[oG>LJ0\c=)2MWJϋi+O%C7#~,uRc q sDVG2iBc +:SD=2(_ \VŅȂ cT%]S"'A*a߇pCm3X)QO펙k_mi`{נ'W~Iyu+6ctT=|Huxs\PXd"5BGNqWLUR6Aկ*yȴ6aQ|f Y27˩9)%]d?6 frQW̑<|'sԚh06?MqZٓ3Oq{ze.2̈́:{}`P}5-Tn񢱨ӏhc5[PrSL7H{[7 C64 n2*w5{stdonxE3ҩi6 V6.0e,Te"\ɣ!iK%1`U!2ђO 'dv+=۵b⡫A-/#wŸv`t$YG[L$NAc` Z^5=A0N^6۱kMXe/].ƉH#&Q8g:`iCXw`0 ✯8DK{ɑ[!7w0 FGl|cqs UOCr!B5+ƨ!2yj*am]I;ҟZ, V7MW 2OBZ a_UŮ7F{$cKx3w-?ﭩ56" @:kO!RKraUIB߄u9 TGR8F7QjGX^-RåzuTp]yupL%Ol4 ?ϸp_܊Q ,8B GtwUl͠?o&T=yJQG<4}ғN|u;`E=_X}.OeE5fcMAҊ}0/3P<*veP\;YIe!2cia2x0cH! HQvoR,6yYmr5Nձ ۂ&cTzWv(}߫ P[,z tTeZzWau5 w51rA"ۊTDj^R@WT@v)^8_HfdhE{&\9 VAus? !JRj+xm.  UjgjݎpF`wq\Ix븀,u '΋B5FH%D}\9%sӔiUݬF1kFzyQb`O>g|)f%Ġ^P @`e/s5$-E2Lw{7t&+G"kO'i05NMx<~Om [>VxyFUd[?e-.CeO\^y܊ԍ\8VIҎ(.ἱ*H+Qj0+/TP4j7FOgz%t jX~(8fYFe\MmHghA!B N${us=pb*X9߈d `I4ݡtژW+qy7îo-E̽<&R;D$ޏ!`jgs!k~;$7nt &;u=JO gj9P=U| !sFeh0&𖋺g?w"ۯci,w#N@Q8J*G ch|3nwTDD'4ˍTþ=>3r H&ZSlf HkTтà@6w2DPKuUiAv;-`Nӽ_E#NtBg1ҳi~+ܱ_ˡcЗSusRNsvx2nn̎ k_mH{VnQXM19ozbjǤ68sIGkAwjӈ.тژciܟRX,.^*va=+NtJ Yo#rݮb7bтNѪj⁅z;)Eą(uFj2I-BZnMZw|Q܈>h|3bxBx8{;! A&':m6%rR<(Z)fzg?Ղ;qz)Q(t 'EI󲃦kzk3DZ -GUr+}~!co Q\B<YTdf{B7>˗@c  "y !p %p +4-!,\>=8TŅ#,8jw஗oĄ9VJ=9h@x~ FM^t4Ԧ+~ l[zDxn wNO`XklTEv8rx"IJf31tJR qP0O/t)ɂΣ V['W[kD'o@:X#4 F& za` ,$cq7rLRt-_r#Ě)$b d\Tm=uxOr=B N-V?+G&'0XfC^P:{+ =G9Hq5&z"'g Rq0^__g”G0톤y&mJ[MYA?Vh-o=N8DC5q{QsI%{'1ݰ&f%g^gfӐ(yl{yٝ[`7WQ&jZxr _n/ ih(EN-zi85jYuWЗGꚗWO$y0߻tӛ&VF{۷#I=n ק] :y198Ip,B^HC*\-'¯ӘG+1ƴꇠq!C*A uB޷jˡ缩f"g:yRYf){O'|nrMe'0:(44SY'9·\ t4XDV3;Hh )k AĀ|P=?3+Q ]E9:[ R!IݰDާCo;fsǟwQ(w%+aL"+OO1_ՇA\lQЧ'W#:7MD4™sHsiȦC,aÑpF]M$jYG#ǛH# %\EjWMjx8a__uC .`gׯmuRkޑY`#%Ԇ1oee5q+76wfG2p!4p!u]nDHW[`|P1p 픁Uw|ZKsbXieC_bՑkKVZ9ܞO5*e:OB0T'# 1xg%ydmΔ bSE(4pR)'a?S=Z|މuU:W-bzQ:g`a4xx"Cpk'X}fkZ(X_d̎SzX&tzJuˍfHq,4AدNשUHW7kIz &;Sх>9KK*Aͅ ­f>j?r7W]e{ J5̄{#<w8ɲյ4_f\ѢծZ"g,pʦ_P~=ܔfS% ]gaH ɴ~ȶ2\CĔȿ~ gx;lrwYӻͫ `ʫ\Dbc\@TfT frµ-w[V(),cRmX*$C,丩H:vCD]8Ј>*j=Y &R "e֞v C@Z#mkG˓4/ZQ*פ]P1 >sq89IHXWWxו)jKد& D]Lکik5l9s4]b^b}|ȨT2&*;%%C1AX|Zf̬|$`?s 2v+dc{^po&NIŘ!;(Rq򎽉Td5eQxdҔR'0?#ZY(!JA +-㶨:Det끹8AU^Ya>e2Оy ~9| Xh9WՒZOle= 'Wi1O2F$o B"R5}oV"x+%@8'9Nx50%["tD"(*}"٭ó [|)儳&ͩ?\`uq_H^zZ*aЁ5!!| 02l3*^<_C&LGqTR\u(X:dh\M/*TvZ"i*Z.XLr˷`d̎Mnz$1CF&R:bDJ'|㩆P $pȖ8)a(bhq@O6k t?YtfP _"R_TG5|"hߺxPE7_!OG5[j|[9t lD(w@,T&^I~ 2wpGŠR|ؿ݆<:_\TjխhǏ/Cl7'L\/]5PA pY Wg ,+M33x:pHU gF/ yeI'tϫ,MQuahOzEup \;,tA kgg-o3ѫ3 T4Dp=[GYg,zDo)#Ld0HȲv+ GΞCh܁~I-BaK+)i6?S*sMmq&!Pt#l5B.b݀nq3(F`#2;7vOU=$YOCE2!|' EZm:̟~V}řHIzwitT?VgKۗSO&l!'BFϰyڦi\wg[&/d]ܒj m"X7p =ʁԟ?uPǞ˱Gpe1'98@x6/-h~8u>74~og74,# ESM PzN=jڃ}0,p ߇p BCx}HU/8z^Hѿ`{~2 tȳQVYǀMfwMr AV[{NHήa0G"Nli":B S{;DRjQE=O~HwWLB˘CNuRos%Z$daapVľؚ+?^ki0䃃~NjҠ\;]@ o Iek6RQD;{O|}zwg\H|QсwS"qlq.`W:VAJs@>hx)|/ݡHJN[F^|pms+x9@f f,*ahȥKʀlGB>ADf9XLh=6ʬNBڨ X 9[oz%`=_[2a5 o1 ƌުmFEAIEݐz/"&Ǟ%U`E㖖uFS_R lΎkQ:<Ĭ;OiQ~ϰ^N BqWM'/F~,c|v3(@aWs^)IKa\{*/,pj*G5 "7kQ/[eBp~& }kd詟I /ޅ7 L Fn`_g-TgE5ˎZPa L5[69p3]&8zC>oXD`=iz#"N಴;#Q2G1G}"/eo5bdduNOz ¹"Ӕ?F2u: ̀X'-\+zSnypAhف>kz4UWsbO4Q2F^\':,%_Npv cM|BѭA0xLBB;.^ۺxfajqhP6D[mw+ * 3LNܶ2ďyRᙜP?uCXvP|"1t d ^2wϹ!t<FcqQ)qBJBAqb-6ԧY3OdL31/* M\aV,89L97VW,M1K7w랾̲o[nxˇCq@*ӥ8Ѽ GM֦i' ZC\: aՁ N/(8pa5~8Es>xď$9LpiFZ!S >lL6͍R_$T6cËwL\MIQH<-G>$сC wZ7p5c1% neRaeu+i{ Xu$vf8>?a.k?g\8`WE[MhWD 9DpҡfN[D pY&;36roCŒ9b1m*?f,mu/j>pweERp Snp[Clhq%\2R=~&?r jd B8gU~e_&|> Bb^ŪN&*T *?MPX 67HnuMRV&ć&`:؅xĢ^>H|Aq^{+xbH;EF<:.򒨋KS2L/zBc)lj)sڣ4 _OE=ld~YB =}Pn-w㷥J2w g{6"A?%m/JYNSkLR& #YhQ'BZoqNf#Z,І*j+ߎ(iS p u)C ȳdn?XY }A?9Mtjjc'Eu9Jvn\E˛;_^`MuI*x_ =aqns7v Fgz@/#ᚼs̩Ԉ{&#y-;E#Cڄ'(#vG1oϤUL+>&`MO@:Ql7Z9)&(sj_G|'t4UjfDq%),;{)Fa3UÐ)]Wp#J~̿ KU=eIiC *XuY*軁Iu6g-Y[fZMw7&"s`qA߶Z^+;1M4)z{^לjh wr֧SteYb;@ГDS6Q+8{k-h}fEH>:w()[Lf/pgL%N$j*~_2ۉzBt>-32f@N㼾7,^2,0;'X_*Q]u#Uhf~^-BSLq+e ]6܇4JQipu/%miPkRm\}n~kiY@Oܶ !8=4ɭԕlgz65t?W5 كL(oeXx4c L/5C%їM_np"}CADr=(q,_>}>/خZEOQq/vgR̝ ݑOM.LrWtk`q$M\=5iNBHm⾋LQiP:3~)5C/dy݁7'Lb)OfE ysJ޹Rуdog߳c:m[s36+۸q"gذ3~[8>z r,hq!HDJₒ&s9s)FLۯ*C)l [LX@(y4 (xR eͻ!rmpX$ }2ܯk=쌥ӫ>"Qr& B Dȋb蝊p!^V~P>48H9bXǶˆ 6~賄`7l}W[FQD1ʬ[m8P 4?#b\|À!04};QbRtb#b#%&u(yq/9eW[ PT(N3?z(]*9o,U92-%:OW5ԡn|R)LHR.@dgtfs{1\GYaDwy*$t%WC49.aٻ vls̡?9שL'n릹s94S<,k ~^S q*<N]Rׇ3, ":c˟>a5\g e}ZU,CqtklMSݓzm.wr #>kj=y'NAs|sU1( NOͨ M\伨[Ə_ tY@ӂR>-X+NG .)A_rl{.f $:%aj0łjĦ9 VAi%h=#GfFgwCX-mi1D4}]]wb^\#5"c󷹽%-֌2C ,ʔ2߱mwL&xJ{ uo]m~k4ڦhOzV r}HvV" omM 9";:%iޛR0Y83++AM t<Gx;bs$K71v/Y8Ԧe€Eb33'p|ln?zbföbbP $=-k;+@/(%fnp xxwd ,!l-f(I"l?a~P'M>z>&zf n᫑HyI%d ut?#6(&V7[ON&HH<+So{$@kcui;NjGĕWURWgVɿĆ;Y؄XA3 GOR/ ~DU\*#.,ɍIBe1yϜD-6Sىi_拀htTزeZ#I߬k)w|p*s'MɣzZ/ 3dUvpa \SB":G`9={b .<5nN7? #`;% +J2žkF98q)ȣXaQ@LS:喝ƚFO9 W&??-L:Aeɔz ՜i&YqbxLce΄FE{7E=[@+ &swQ-P V˥e7Q8T pqWk Yc %|I/jӷC-`!Ne'"Aƿ[@QCy@.QWiwI$ [(Y;^ h NKSބ?=͆Z OLb'Ԙ}qI& jt/nRPUYl{.n0'7W@{Dj_HvȫO(1V`WAt];n*FPqxTY90%Ǹ\J5nZ *LkTvc\0:A0>,NPo*&[6vf2gYYQ&_Sc|uijR7HjL"I)4ty_Ӹ}N 쳦zhH3 $@`/(-zAD&i?x]JMkCPrMVyQ Dx&XKd%m0(VD_3T5NiSm@b)s6H .c܌ ϳ>M.PF^iI4%u BsügILe7ĵx !+\ÔޝÁkբ6Wh~Fr*CFVφy-g2Z'z_,ix\"|Y8}reXdY/-[;fTfβ*mtQ_9@VWΠ_GBϕR "1C㯦n}zM2p5ޱ,:<`Q趌7=R[B+O:4\stQ: EZ)P2cƉۡƨ8`k3y1bc P]FS: Nrmdst|>HŬm6e:%WstҼXМ|07ܧHo4T~q%Ok /._2^I6o g'W`h{_' bHJa0/TrB823O > SہBJF8d ձ{~Q4S֢^>xug+tEjj@){ïWj|g K$Qx$=]I6%۞)c`3z<.+Э6h.h+Ϛ(40dO[Ko0KeN ڃݕ]\i&ǹy[pTLQTFH轪n/J;+e?aۤNc~vJ9dUZ5@h1oӇ֜2_9뱀êĀe>KɏC3]8&F3`a$(eo(ͨF:.i%o(\Bͺ:]偨"u,[\8)ū؎lPO1kJ+\iч$㪆J% k9}x pޘ^ O;ʥGQ :ޭ1ǰIዃ F鉖h!0' /=dxbXhBABr:ٗ஻%|y͟u/s?=?P}=[g R$6 OÛ@ uq]jaZ9twx;첱9(OPk2?!QENf# .Jd\o*:RO,}~=fH4:(I@9bBF ֌&FX eFDXvf}әCJ5j9妪z_bLwX0c0zrFdN1JxHXw^DK}Kx,/xe[70 ՙƲ+'NTܽ\s2G7P2/VZ(SEPTlT"u[H ;`lب,aY@ʢCgX5.D=pI{t[V8fT.5JUA7)#"usV7NB\L"ίƉl5{@,T7&s=@'B &KXK) h\__s Ӆ07ts/%Őoo,i픦h4+1gi5K` &@ӔYCq&q.="Som#^"{0u}pқiPKcFngiKfi,fh mʅ ė9d;f#4قlj©I!ޚ@Lj= ]mL8 <Ȍ.X@J7T"#Ԉ9GIsEeK%o>E*EOQwuW= QmH$3a@^ǘl7K>-}طG]qYlf} ZC8lVOaKcU&߫[ǐ Y] 8[+-F:]?s㱕 /^`#ePæ6@LᄗÎgG4LR/{s *R}GrS984;/fjv^ s 7} If*8;F/n[aX&{( QBYbtC5ʹ*? R,8TWS恞FK'lMoa3.ӐoŠ&X>s"=J+tSl&lˉVơ,7^mFٯYks:9\ͧj%HM1Cn9zDߨZTPe[^1#JH9HyVq}s8m(,ҳ8xIL<}z C 8YIi:TgCQQP+aӖ)YL =]d O/}00t&fl*ƾ(:V.2^}usfZ2z:ѱ.7dOe@M8r]./ {U/IM?Oaޟ+\- 3}Ss Τ2RЎ|)aҠkK`W&Mp>D(*}(^vx쎕ˆFHTq+f=#pjnzV^xõoRsLJq!s08f5 8eׂ(T;יF6=DcR`ߘb.}D" ^c۷/g=;5^ XveȍkI=We_&%c޽WxD:/~n|i>}Hm 楙CVv"2jyF|A'@s?0R8]c$71O%Yxz8RU1 s'f~|UJ;yOt,F:gMĹhF/Xzkuw!MDNJ;fI h ,(?~7lݮM]RIH Rèu䭔 ?I|8AQ%ߌkӐ&&l@.هh pÊpOg͉Ժ^tBdT^ִp@-R% 51MKTQ<e4#€]dn|7eI6=H^UJ)c^s# wRC =M!.{|0CXt?T+OQ^!Zh ̆l3on6aVn9n[ÅI{CW5KkR'B`Tj*^=s21:Vwl&@OIv ΄ƱdsV-J_590YfK:BZCp!HgbhO&]R\&cÉZ>d s ώ6cGP.r)o>בBzcj[l1F4# vHYXWe 5YͅA#BԲToyӔޘ"ΪuQ] y]d(k&`ϼd|=ehfYփj|5C")ڈn}ꂅ*C 9R^_Z|$0:Բ}~;饶Ee PI(=C~&.J R ҕ/ tz2I$ؙlk[#ړjeg5]Ptpi`* wdii j\o Kf@IHD z"-S&~(~k-(u x P2ۼCUTr YGIkx%'O$SUNQs7s]T|)jULjH*5^/lIg0I: ȫT3~/ꑠ@ +Kcޚq'X: `Og&^(/o_@l"BDf?BCxGP+AoQ- QqL-Kʻnß( ~tz`rkh =.8?Ǜ؁Rb׬kռ_^joztPX} =TsiPĻr :}"4" K(xl R"ŷz_Bߐ-u|YBXY NΙ.g˾?,)A\& d[H dƵC!F $ #Q]V&~r(({P>ssb r1H'P- !~PNeO Qpse%8CB@ ( cMTWpkVΑAoևPcf$txf`)Sl1%tε 4z, )`qĆFQ -5A 9K {Pzݢ?L ۹|>G&К1ߎK_EZ~p~_Kh'~`w8C^wIâRYk <8X$˱1ȴwxlc;>/hd4zZ癜EfibL H%ջZ  zT\O߅֫35 +$?^$kWQ*n,t@o!P:{|@ 15N"S/c -˕~pz`_$Hqw !] Od&-%8J4zPJY8EvFN6 ܔ8/9X mqhbAdsC~IOmw ;ijBQv,+GĆrˆaڬ U@XuOb0qgL[:0yL3hctuBl t -(PǦxGl=dm|f/5 ufDۗ,t4hF:i-- &>VN!AjQJ@;P~c7#o(a5o2ójlJOIզ[Z+9TFaS.UR3etXwkFueJH:aL֮%^%~b2 E=#uժ43YOhWtp ˘<[lIČdOyܑq_4[SO| X~ɘqM 7O=c|8tH6 .sN4ӈTןKO9.{zlav.oe0CgA>JL/R6bq﵉ЊG؏# 64ɞ4~ 3Y#=}V(|I̍hCL@fZ .f(3e@(SvlWBʴ, >.Ɯ/[h~޵&׮st\3P YЛnIDU[z r}/QFq=6%:ivcNpkBJm nL ^GIjep}Ĕ%{f0D n.,G4]{&60*HGM5B*̵1}/gm:~pbycNFJ) ˩lxQDg T}MdS]<ϰϯ\ 㴽KGwIH_0*yל6˙*6nFǓe5F֏y 8#yL*˚F r~PN4G >hX\X,2M y 8ϤKL7*PP]F9fVv"VEДHE^x2w F\Z1DPk *w0f3'*=2HڍMGvEt u5im_@+MV¹Ag4T+WkEĿWvN(hee BҥB*"{PO0"05ThL8?贴: ' N#ppnAZV>*{ &*\B  S+l0L,~TJLL6gI!"Ʀn!y32Y-KQu=~<=d1uPP\&bx^ty_wI9 T&ŀ-=7G1Jt]Vԓm.*{UB%`Dsbɖ)5ꍴ*Xy'/_ s"@&=5a%3fֹ=Ɗ#R!9D Z@hdCdkl[7!5wNn={r|&suJ$|687NaHA; wezc~32'Te{~Yt r4\R)Kp~WI4Wj ; 󡞜tEl1Q4O1]QΣ}Oѩ ^dJ0ĜuIi74Iј (O zvb6+JH+dޮiM#&;M6腬Ȕ,m_^:81`}j/ԝvΨY1\<-?ⷓV %7{rAfHaZ^,y>US"t60\K|B1n*r$$^n?,! ^-+!& S~u:24YB_ty+2cm6=x3R6Z?@f6h"j}$"I,R *Bw)R63uF貖U =:ȱ¸Pth)q!1μnsЕ tIa΅Pj\)HrInBE'`D&Έ?4՗ ,̉)d[|X?Jg"$AuEŶJ@^"Ήoh`Fm7SE&ryu<aڴym' R~9Vm^bm$˃x&5 ;q@L2Syw!K\ؿei|AN/965͚OIv)D JtDC6H\g״RvW0f)n&"Ƥz<\)`yMRtnqDL4{Eh% J/OtfRuJVEXM%T4xT[=Эϰ@1^S#v7`Nkf^65!tzy`F$$x(i/` vfU)/*ddeL' N&zoޓ9i`HO}V7X^bBr?ҷtfq_ȊgAJP$?3"+W}"ʊ!I|a8 L Q\PLϿRS+/+[B1 0iB)&+=PUq܉DB+|(HQnt{㾌JQt&rK/k-:lNT93q*5 oX3~.rFnRmi/rM):967 /!p(+1 EF`FG-ŊU=y:'F$_G6=CJCzJ1"I9[-Cs0%(}ggXyEp~Յ>]c3K"(:AƂ[gec]9bW,h.sŕju]М:nZ-o4U[n 0vQ&9KYXjGo<<,ruX)}wuBٖB<_(otgѮj/a٩"[6Δ9+lxN fs@ȼO#cG`b)[3|@欳9jK1Pp3uc؄e ܇2;jl >ƻHp6*4 yzNg{ r:nb7>|IoS];0 UhU/5 T&l<[mUurTDԜO>:ID&IۆRZO6ϴ%¨k0ᵿ_[zd4UQ#m2%d9_S%+]4MRWKO_+9 w*iKx,QR ^Y0: 0aJQJ#wgW$(e\tQaJm$% 5 )JVRܳU1i27TWpב|;hVˍoJW-0lz{|V[ZjSz*B~e =)$MS;kΏ"<7@;LE$EĕQ *zo P$ ? D:Sio<2=twj*cB~kgvwi'VU㑭I8\WB?c՚Ǟ Nb6T. Iڷ]hl7.SNokR:k=hФVt -;}h"`Gz$>t7_6޹c=On3/;tO!w g"RwCaijcA6q>B\D^̆j9Gy^ab GΞ39͑x`RaKRhn}P:5J-Kvb(sjEYI =ǐxYJDC 5^+R頸?O9;8zE>Q /!ݐ40ݗ^EgV*|D @}[Ƭ)c%ݶ8RɰSgz yr톕8X$h:t,CDu<9^kLk[54^O@r 4i j+1 e ~\\]Z4~(%@R;%&迁&~Ry4Y` 45D4XI0@6!.DjPÜ-.?:sN͇t@C)_;_1IhS wF p=*чA|ƬcApJ-ۤٳCdjn^>{?gMh@$&_ǣǓi72^%W5b3GNpާݕrdrJ3#\ b4u=XzD %_3#=eIfdkS)@-d+iHVG*}IhU R\mv 5ק01LdiK%OjtIuwV4ZhV]/(t1Be'Xk9D#ՋR_ kxP<S3RXwj'N7x'U6awυc \4+cR `LPQ飣"l{ $O M]U$a-xr&roY C*+<{JHm?N.G<̝ERBp[XJR7S8A*F#p}TLS򚣌ш^l씳7KO~;7{].lپj (KRK9`2PBN(O&e li]3F={KeVpj IiͨRvvnRkG]߶~'(kLy8/6yNT h B 2uI$ۈr!Iy[%.lywM5ܬJѾio(&ߑN%AY>]z>bn~OYr?m妺?Jm @Dfڭ}7yJ5z.i9}x`X뜩.LZKB<^C?A ^&@mkEy@(CᲛz86h5 eR]yݩ-p [ +mw >}6CޡFc.y oFXǿSt=uxOK0 a0o(S-[R\ǯy Bx&ۢٺI:"_cIq90⣝j&fnE#^YGMҝ_l/,(N]ĢzW(1E59C^oŢl-#B+yJJoZ2r?*"%P|1@1r/4)TyT=&|8jVL&L1܀Hn o:oG Olʪ(I05x~'- N*y):}~A! S%bQX#¸}4`>9:ހޱ~Or"Ȩ(VaPنS$!\<;کʍe^EWH0!fF{ _1wpRuqr%cM`)꧒e4k*gMoi y0MBL$b0'ZG\zU'_<$ob@ t? o 뉮ϐ꜌ApaNc, >C) %T$]"6mz=pS >d"Z<#zG;L\x̬^5?MƇD Xex` HUfG9t\2pwui|OKNC@ޫ"fJ;|=?xRy.#<[' xPliJ drp|ҸXd3ehm!-#Š-JO;q%.&< z9@崲"̥&tD='/ŗuIbﮗ7yUd.,Jh zr=Nј^\$:13ci[g\YlZ+ 搮>H ru,s# rKćEڴA~<ڸs{ɧk!Fv/]BTшfC07di]W+3<)\˙ ݕba.(Tѡ NZseFAn AcGkŻ t`+JrXVH)lSji!R+@^t~xh{_`gʎqR/4DYq!>` &D;Y-IO^%+r^o#Y, ƣBJX'Z1Ve\{ƻw+/%꒽ MJS|ɪ҂9s7_[m&V9XDBC9 wT+MRf~v1I@v׷ZB ho)JEҌWu2O'<5>\% 7=;2tq].`uYƤC w6;\C5%7<$ 95I-y&zrF:JOW:zBkp.RVO+[3 c[59AKZUzsv(0oxݳVC59oE@R9lr3h c{$R.Foj=q*8>_:˪ceַ"LHB&iR jN·NӜ%ؒq3|<qvv"f{*z%|%aI{|&G*|A4pLpAfQ3!Lo19 \t""d wgb˫z[;/"Vc [$@krsQ*z@$H9:4j#G '3/;k>G]K~w'fM8֢G:½)JnYs{%mQL)&ոO"t/բnH,_eKӁʥDOp_;6;zUcǰ.Q好8?j}pF7~**v|hm9]t3\Ԯ-5tss59F@!TgY[tR# s{+%]Rk +^WFǦB% 6P!b2-9$`ҩ n_J;4@=!r1EVkm(Ư:rS=y27@| Qkh5|id"wH&93fuxbn/!G)D>+kQVjr!QJ=$rR.\.byĵYJJɺ3Qg5[P_PubMDϷzD1¨nU%6 NEvxb$d>9'xV9vx?yUuAY@xVi?ۢY5( [=wUqZlH6?=zפԥqQ`T\¿9yq#$&PiM4˳0AJuusB|{O HSb$aD5+jw]Y7sɢxxB&Xh e~HXtx}YAt8s`fPn}ʬzo HZ7ȠkՊ&`.F*6>50xt3c?Sy/7AĿ'Ei})!.1s3"|6~A׌;(U8f>im?D'wRO}%j=%QCpAb~+E+|c{ CT$MߏɑY,<3Vƾș!xVɌr7N=u *µi0Pl?X骥lG @bY?"2ᩪڵ[r&uoR}bR:nX#5d/jZ4%h`3 Icؖܯ2RrD"G-U 8tD[o;۹J15i7 nA^7޶$XHc>m}=b%mS>8y. /3g/i6xdq?I#eO,~6 AavlS .Y**㖦2LlPie 1rOß[L;ߊV2(-ZID[ IzZ z>Q.,漵JoK:VY"tG'{!9ki$6f>1p4}^1,NDa D Xsⳓ(nf'NI!ӇEsM3=4bZUuynK3 :)w3au]XsJf%["{SvsvBjsk? >Re9Ҵx<XTohb 5Jx,V!7`US,ah2OyHw}תjp14"[oeCdpW;^n>6~77J)x& JiC__CJoN;3}/([pgRfZp7ydj`7Ukd]Ku lZG J!\oڧԤ )3- НY쑥cT [eROIEUC4&!Ŗ6i_|@jpܿ|=Eƒo #Nz?Mwt,;Ql[vmW|]-.h-<, mMn Xj>ΈNR˼(( IM^~" f$NP.BsqC5M6 EVOs4g'sͭO7CuM* 4(Ҽ+``|v:q5$! Ĉklu/ &]Ē0Ntu4e4= G'zdLpG׿vf$`-GH,^gD 41QFs)>oƫbiL\(;ib9/Wհlҡp24ݨh(}1~'C @ˣ3[M4k6cI~r5j+eIW_y$+wڪDxÝBz;Wb.M!Eu]Yݔ[+/f|ʔtoCdgieUV߃5RωР>ޓP^?t%&&k ׄ,&DVKSh|y>:;7@qpI΃]y$sҌ3Ym銇=ղJ@Cৌ3 SPbw` !ɕSׇ]梮'(VPݻZѴ/[s.ԭsPIB^ė8">k$pRpo``2!] O&T%TN{rc](Ui3Db[j-cRl/6.m蒞lӮ时 =xnʢiI  1" RɥDFMrpsbnPFh3 b=;GBF wgL' yKmJD›Dz{x5fNarCE}v FU[i,y"^ *ۂds =qDusZ5$keҬQn4&LHJ}?yQQ,m?M96_3S¥f[3s>:+ؘhAÜFQ:͕'AfWI\Q%2|K ljMab')cU5j*0VAs3[h/+AF}f>+ݸ@lN πc5yw437%UPL9O t!$d:>i٥'*4^of:πty _٫Fe3U:ʆLW2΋t[:}J AkQW4PM\ 9kZ8k|ħh.;:y3˺e Hh Q|>o*Ԫ9-KL$TMƕh'[&1yp*؆a"5Osbk3Ƿ3G:uj-(nnUt@lCINg(u; YW+h˧,6qyJZZt,nK8TPqكeSRqt]Y!|"N_[9]t_|*ORc 'F7E7ɗƂ'\T|Yo VƴK| Nu1؝u XK-#41 r%|7zsdl 0[J榅Ր3j!b\~`1dQ4Hް԰.LxX+ྷL̈́m$U9=GQj+]24z^?Rp$eJq{x\k6#PD :Qv3TADD_ǖq9y6v^C> 4ǡ银2DŽ&<4#I8HI,/J,+zF _;"  > +؄{%kWLCR˷2܉#oYop挱~lCEI?q4Ly(zIiuo$<0,3Gω{ _rUO+=,Pvd~VO?zUB~PV1ޜ 1] P_&ʔv|ɞǻ),IP[?pR|K )&1M2U.Y+j,+%dSYLN։m"<ډZKv.UG6eSk=vz .p*z-&:Bd/3d A"0so/\`N% YF, o92>|_yq%ʤзgV3'>UIdJhߴՓ{(QYh=jæ8^!%=Iؖ :f"w/+"nQ'GƘvSX.7l2Z?IdP'3-S[/9(#6; ~iO[ KLסBZ*nˤWb PeVF{ HꊝF~\bMY8gywԣxy^.SHB&FHa%iU6#~]$7Zy`#c,ÖzG1/QhwR$$豜.pQʀ4VHӿF*iAK 7+Q"e_u5*Э{B$gV:^J?;ĿGGTQV9,bo6OyMg. X4?7);Q-M GvX>:;(޳%p.s`ӡADD~/%[K|U{AbQUX&Cyq&E.a9f_hU)j/g =k!gDps%QؔAg ~~8,[2f%2[@B*Es_=Qnx$D^3}ӹ/x{Tl=pD߈P: bN: SBs߸vHњ]S~ds҆$ܼIBy#8~>I:Γ{wgBorqb)n#Y;)KZ d['Ň?">B1T%= 1G9*BK*zM]Ӝ*bb60ZٗaT0^ >xɽU5 (zqyѠz+T(ZHГg*e5M)`rLd<EM;Be7B AsqoV2R"_ui8>/mfK>t3)n+"`2Bwk ]ZT !)0I8Xx10-xO3NVP?㡻2gO_hέ@:8)#0%GLjf K2603^umhr5N  9v 牟i<ܘ|_@4i8U<^?w*5@y`u&zpI|)cbN| /4MՑS>%'-q T'jnwiKz{Uas"2p7bwC kc׌'|F]Lt㓶&v^;VVڔ1獵a0^u";+q@; &zhO^*L6`]lS/. ?}Q3R|楒ep>-iU-XbsW%Șhy\{#K @N\SNHnj "\@pK㎽\ma'B~%a#Ll :@0LeP:1NE' ӴgA.H$6%P/$W; :`e>D|FЀpv.jDeX6^bsr_B˒GC5Rî6Z,S5 L}wd`؎cHbc'+[;eK5@gyfPrNStZ'ĕY9b܆k,4)V!jmn :5xbMwe~5(IbTyIB5Jaw*) EFԅƬV !@|$-W3]FKx@:ƪJ..ü,}t:׾kH眒P$k9p^GpulY)&T/iV3 p4Pϩ].8۷Puyg0iı{( Un^oOzɾyߊd[;7aOTakv]ZmNvhm-. ž#Vpi$_˖i7vJ6^~λ׌y>Snbst;>lԗoO \ZMLro=ޭ/W1F!*'l;>a. )u!D(dEṏ'`nZr1 % B*mEbZO)HYAQ\ /nÂDJb9;ǡsdL4/;Zkd%t ,Aڡvl9-u :_pn,6MIъN!Ԅ'6"8 f2 uUE y ȡ4kb$l#` G!AQ=1|Ϯ_ [B`w͙肩d9Yq&k% fSE1<xћE/Ge1A.d*2#mz9/V?ca ^ *GUHNzg6i%وZ_O#WNvsa&fw1G=ZƟEm4 YuNډ}eU8{SV,kS&9˟Z@ڠᯯ`Bdʛ\*>!4 䔏"m?zEr+BBǜ3v,4&1[$͒l7(Va9LQŌ [Ѯ`{SessT0iR iusiQ.\bW:f|בdڑ'p2S2$ʨ|FNJK:vw#Gri K[Sa~RX%p3q׃!lvSxmVuy󭏾-*E`pí/j={% w+Wj P6sr3[R#uR6fd:NظFg*`R|L4].ׯvV `.J;zꤜ6ŋL;uoѕc_wwy-@D F3Qq(IFKfj$z̆J"Im3PL|Ϫ-+ d\WcfRzWlUdpbGGC:x²ۙ=,oMn!_ F!'Ɯ_RJuh$EKˆ8sE 5KUc%X;g*ֲ*\mKK-S)%I#k"S)73Xb{8t!&-f_rUsɤcHWl3NF&)T=gY*;BC*yvtm|vA\LŸ.5"طi}_}yU dlN+=:֣[@v֮frMi-{}7zQNpUT9;W2 j+R@BW-6 \$UOzEh Wvh\SZEԻN~YMòKb3\n7<_qjfOTn{{4wh>Zq+/xP%i(%? Pvx7G^J\\6缄T Jz(^aFjo,L_Le#N-Z]eg֛ :]N4&&gؕofQ :6jA!bVTh/4/]50*4@*)oM jB9 fPZ/s:uV-w7*ڮt3X1>aG:⨠1Ym݌tZ A%Z8HL=4J%Xb3z9G~Mxm;J|XK^wӦС&i "♈lJsYBUG<+KZ  7dn !jB "&mLX Wq:9J9|/H3}kuJ!`cmW5ZQ.1(A2~qѕrw[7j`e)=SiS[#/M}PLVFvk&eCM6LSv;2Ԏei1p=͐6q! ٟI,!4Q+Ǜ\l)RͬUx6E .F3˅*9 Ζ7moyFsy,B>ih(\+2oMUXuE¦*fP!v|\2 a,0-ɹ[1_J]%ϒhIcCno z;4+O8Y1G(S ǯAؽƋTv7g]1F漌iSV5}nZѝݔ(LDdr}KǗI=g.IfN0;E Ϸ~*zbջ.%U]n:3z i/Rקf2IQ1O*sDleKrrM'qTلdb^,}  ltSZ}E7z%u=IwיΣ(qQt<# wr`,8۽bdH٧,`~LSG.@Y.fY57ǍOd?;gXJdww߹X$%33Yޢ'xu K &.&=dB6TMVm_g4\ljst1(:[-r_M9ɻexxAsO눠suʔS<0t(%\7)˯IsԞXUo}'rSz6樶<7IŊejIq2"֭a#:Y8fL*yQysdJ)Xl\z7 6ZQ[ղKnL) u77iq{Y> *()ڀP] \RJ+jH r4tIdM.E⮪ qy=Kp3"%;jY2FѮg%0Ako2ףEa*$ nUM_}l~ yGh &%LHVuvsHo^U7avCq =w'D}-37[~ &TY <2fŕ7RC_0lNma*k;B+TG?lO,]"|3G@A()1G 5u蹰g:~CX}43)peM.N-dDϡ$ML(oX%YdʅVLP='iR7*X`RĮ/R8SHNuyxcty^"vZbrgs+t7eh1`+ֆF KBG4~+@sz}ؕ5@eVu!q/#N_$ 렫uoLNՈC~_7 Β'WiO v-iQoIys nd ;f^܍)X7\keq`!#LOu#G!0cF NSc3a.Ei3&XX<{Ґ!ǯ/B"vü|͍F_ЋZe 􌎐hPአ0  Y aw4_J |gqW H='r\K%ޗ Ϧz\ߛga&nH'*5Z{2Bhtfr\-HɸN) xy5=,RꮩwOy90L=ЖSo @v2ુ?<` ORkUcL\zpNp@#O:cΦ#Nߘ-6O/x-Ob??RԿ'@aYFOodžPF?MI촺1qI␽aYhM4ϸlp \0yٴV`x(=}fFK6;X8&NՉ oQcPɈ¼Ql/4rB31ʈc /o1%ˑY=l2Z'*@j1 ^,?0sh a*Q8̆<ܒ53!;++0$ilJ+JFhGgLA`=g3za4r4iW:yZ3ǦvҎ܅c?R~he[Q7G*-3:f9TS2h;xTl+9vYj%!ce ̸T⡚K3BCF0 x),V\ƹdHʊ S95Du2&,DBxהxHkmtvQ.ۍ_9x#e,Z>#N8:9H)!S ?vJi`ҳ!F`=-Pᨌ`ȾCڊX84-~jH6<#zjYnp+di×!>؏Ю5Ƅ6ѩ`( AT2RiWWny vX4 A{'ywJ6dNDOūfEӡ Z]7C nKH̓7\qA?P K0;g静x_OfBFd)遣褔`kn]Y^`RyJ~u%} z!RRð"F0j;o:rotaew.fjVLNW`2+-nIj( X\e'OD*$UcZatȞ]@2'όusHЬukHlD_มUXPm5hǪɹ|NLlKݬ_fT!g0G e1n| ڬ]]3Ğma.( 3h T\/Bt5pzbq9LqfM;h%" in%T Qsz$>@,J,NDe90!cMo[>jxRww<>G¹#/h1Y%upĘh$vkIr43laB= ]{dhwu܄)im`wyҒ#& u>1h?4ÊN3Vwǵc ATs2=ۆ:*>L ,zbyT/+U5+ڙ3t٬ϩsȱj+yP@ }wqjkKHȲ"sq3x-K$'k*Qǜm{U+F3ufS,YuXq>3_VUyD$D4̰]-d/B@In>9N n143Yd#z;D-\YxON"ZRX2 bOtg?!i{U \]ͪ$Yj`ޝ.?aRHl֣|{ %LdaWvD{tظ*jM7c?K,0ϤshirO4*n ֘=Z5s.c qo>?'TKRLKJFC(ˉg(lWj*bd iY0ċ}Q 9ه$zAClۓ,;m\Jtф(eOlD.h7YV ,%f{xrt6%م]{$dg<47\EuH5:)Hޤ\o{'S%{;T4I= 0.>d$ t1sY9MVB_o)s8#چ4dX/ q}c=@li"&Ys/HIo]FVvŠd5ft#^@UOdJDwUE<T^;m)'d4Ve4OshRQm),-[6N$"tǂi!n΃gu͍=޳Qm‹ŷ_>;=eE'UvWSҒY-G3~Gc| Ey86zj{ 9߇f70bg-_?[?΄UXlR%>9|7בgЈʎ(謽 ܌aXU'SNrR=UJʑvRê7X$T&eW 3qG:Sz|HNMls#$t_+՜kx)Aj7yh~qJ0Bvk GϷЋR"rkr ;sr 4'R^8q]!fޖ=%(ezܚŦ5}K:[|z±1#1vK1` Qi@u8-$JROk9_z/3,H? q˪ HI.d61ȘKLMX0biΪw@U[^z]EP.9Aftǘ} rKͺ:I2v< t"=ÓXqYoA8'Եmh xA}opYfF != LS}‰ 9U02t" [xo &wlHw1͊]lj-zKMJuƓҠ A*<Jkד:ʱ7d8_z^_`Ŧ@=7Eo[! D#ˆly7VnBtKl?Ron+-iwoe'CBLdzeq(c=TF`F5s%rz5>v~_{5jзnm+*_ğ-:g}KcS8rJKs]qC^V|H221pɿW~ZHg6ʱ=~WEa6s|Zf+{22TD#*#8:dό 99{Z?yO aԌx TvSjbMOֻ3:l̤qH8{%;yu;ƂgYZ  iW r]$+4&7zH;@%'%RVJWa\/]]B+Ӗ6f%swqs/!;6S(&5]Xa536F/N~Q[B0GAvNSx{Ckng6Uz`9$T<Ꮱ9$Bl\#b/{]ëf'FNΞx0Ź|']Ȝi܍Tny>G6 BtkٱU7pmx>4LfBح5}gP( K;6i G~ⲝƵpBtR"J\x3:lʹN[Qvo6o(a1*IoOlaUࢋ@ͱ@<\=ph3t HhNX#n`+Q1v m;&ȲߔIo֠ɥP"d\ /BhZa 2~)_:;lq>+Y%Z_ OȼULZ_E%߱w.@ht䮲g,+xGk*(Ъsb;gjɇuʛlmȷ,# ڷY']k*m7L`X&rU(b8l:F((HN1 ߻#/o/@նٹi#/%`nF( ':N|S">ʵ+8#{r 򊿄Tnd\O ZKP)|+|9-n$K k{ ۝/-A;TaN< fUf6܄b{Eঘ2}5BV *v(s*@''2]N:7t)s^|dޘWq~.,uA|VrZ5vKwʮ#kANSYxUt2-$y.&&Q܊O?lV+K9Ԯ WX "980t# ^{qyqVi]Jɞ&?XږW)|9X6~L:b3M4GͣD :Ew5Hc'F2w0q(Q>[*Q)?Q$IoY@,XA?w8ae1u@ mҞן{^J(d I|_*s= -Ae*)Փs:Fت(F1і+brǶtLST'(qʷN*.Є ('{5u}eb5oJsݺ3!v?PQ#MMT+XE=ɒ?TG"^- gaҊL,C!UVJGs9vW\ۧtu@1փJLтiCJ1@Kfiϋ& ݷTq6l/?e4kl-ůC]UExW2|A>d)3z0n^~Ns %h7:=Bmvj[݃.\tBnp噹P:F bK%eǮd 4IA[Ve̊-&`FU#umȄ"ΪY) wS:ZkOa6]CNP?zm]hxέdyMvS%EKAB :ҝ-{-oQVR6W}' yI:xtUnϏqKҶ U?)b'?۶55[3-d#u{UWne'yT2N^јeHSe4S tZ6 epJx4mC/}HMҰ !_ 3I&C>DweI^<޻dYz<*T] t~eRm`twB $̂6M]κ/]2\gc[UiU:@AG:nkWr#Gx#Jل?ƖJ7#=8c7,,AA 'jZgt1͋Y^95_5}@lc2haC <>Tdv4ݘӼPb)l#$' g1xNv[^q_g>e4$l!X_t;B+BuC9GLLƩÝz]P&1zٓ]sKG KG A|5SClIvdܸ+K>녌Fϭ| q8=!&b˦/Oq8.J |zTp%pesd:MJ"MHu;COIۑ1Vz0Rcl˦ ƿ%t!'DV]?N1Dr;v E˙ῧnV%MwwQt p:Tmc;(P$1c.vphE yӐ !ܵ@;y%Ưrg̺2Zbsna5B\g+Ch`i8UAE-zļj 4N tA\7ʛu:sn9;M)͜^$WZI弲D屡b^bO!ü]G| Z zqY_ꌪzS, d)Ս%)\)0{q7Z4؆}`"% PzED Aj5gY# #, SC-F}Ɂq/Д[_;Sgi,Vcc]M okp6㷠5p_&)̓ShnAzVNgg2o~L՜?ۆ9g)z@;ISc\(m!Uy&%ƗY@´/(-]ĩDvU9}}*P" J\ 0Rl SInQȷ;\>B8` r21|s@TA)4 XE n:%.qqrãun~gfy^RX=&.=ZͶl}jF_7VW4KLBo5;>2θh7rO|j|5\•ɹϢ6ɰ(E <<\/=jfUuBkN?;kቯf+8JP7OYqbqd8 e&my.B5y>R;#JZ*ݯv4&xPEچzeV)ZO7W+ n"Tqhq et'.ŘOfUD"xP''!%8e`0[xF_ݛ!7 @}Wk#"K5euQ[Ky僷F(^4k$o0udɦ@|ni!zq<1v}4܅ SqtoZi:Y Tܲq$$HjChEhߴvd0 ݓ82ڛE*k9g(Xu&KloH?zC M/I;JR< C*!>f7D'#B`m9 )}BɎsvjF4]~(y֘f<&dAAgtj=;1#_0dWKaJbW%}ÿ`Y3y&@nOIw,ޮ4E1LoKŻ̋/ިZӤ6y&;~.9>BF5qͿT\mzx^Ŧ=eAntDQs-qntC^0/CheYsK*%C.]^  ?:u( c@&WvrS m *Uh7?T2 tgtXd; P썟MB1>U! :5߭dy/9QkuX*}u'K $ PK ZWX\S_ވDzmoSu5oG.W;.w*,ߥcCs12 eK~HQ )^n.m<=QڡOE="k%m5Oʘ{t5utkOk=E~S`Nxe7zPRp1M{`TuGU7 I22bvf|TC4t Je8Pi{YH4)9iЉkU]Ob/rߚgrgBϻ13}eH؋G?~ n'yq?لdTDyk9zXKYZm+MTfv o\8› xC:ҳ$X{4]՘]꩔ (P(lizReg!k]E̎_eqQy9En \Ψ\U+]^ X\ZN\v//3r%km*aԵBI$I1]Da[%Yjn̰c$1ºifVCՇ*q3AAPևt=Enկ"שMȼq$qx5lX#I׸Ozy]?P ΫoƢ6Z2 /Mrtl?GFS_h}-ՖwMI=g1~uj!/ˋ3]uaK\XCtpnHh>Lm"#m.4o6ŀ4'C*FDJ*ϲoӵś$*LkNςkp#ܺSX;eKY\d~lTĨiO+FحRkԣ5xJH74z T­Ón%ѝ<3@ fŷvSݰ4gÍױͷusBz6&٥eP%8_ǧ(8+miӤyOdښMU޺Lb P>l*fa4 )۱XhQDKY2T)govmȺL u؃3c,+@$]<Db;AdB%8M{d1;y{kmVr,eu#Ey0V p7NHo \G_k8Y[ݝ Mt'd,z{1[]<{.k+We}t01A1`@97#Y[g h;wG|Ɉp2ߺaTtH8;]ƀ~][yyYͲ]xz4PcgbVmųwEZՂ1ǡTm#IbI_|ߩK#g (|בz"0C\p6x+?Ԟ*K~ulk{!מ!*\ѕx# 8q"bk 7@1Y*jL)UN?)A&'chSb dZ)GNFE~4QIrC0DlC]gR$,Vw@(.LѷEb=I'נaQbu#vߚ y*[+˄Hm~<^!9)?QZi^ 3; pW2Ob>YޭoB)w;+QD0Z4 l;G廯>iN#Ts%=,-j\S]X=o)Y܂ CyotBz8!. 6Aɲ=obp:9mz2|+Yu V?/퐭Ȃ-rX/Mj=R%mmF_͐z0:,ܢ)Қ_nUur?L d_8/$ޞf|P>뽶K p냅U QJk:y *Yu0QM^Tx>p`WGCTJ-Xu9 Ad:*ogƦEEZ/ 2eAQ6+r􌿭0/)ZHX ]YI')9"oe E*ޅD}#L;W,{)Z͞'K`0'}X P1zNEz)~7U^ |l̔"NU z#]3͟:Ri8QԎLm(izeG1M$X~$LJͤojhǗbHO#ΖQr+֡siIzq硘SI~̰/_- đbuGu0At,,F7ɬFNu8~NOz5VY/YkRH 3Aw$X%V㠎% lpZJ1i#L$y R4 Зx/8T=0NZ k3y/T̖zn0q`&o:糑Λbӥ3`@đ|!KGPA0g x4wg+ml wͣ`$ ^H g[?)T9rγcP ѤK` ʞi"Z6ڙ;tW1`xZO+tu X-YDj7@9F #Sgi] Mbt|sd,5h19E235tC$JMӮǏx?Ff5ƴj[Y5:dvrZӢV?*}v`!a i Ia Bxzx Dzya\!G܄]ͧ`l+9\/7 S(sۂ; SOf.t'ƶf4',r6sȮByC+'ƻ˒1eU{\.DӔ!63ɧZxtkv]z`b-#ˊ(v0"d߹IS*l^n_0+0FTn"wip*J5Pdl=ZrRqoL¹Sx$R1`(E'Q ϪZLZɔ0CMس*Ę$G&p2Zj ,E}!¨L V2whz]՛o&wL7Wm|Nkc 5l7]O=ѹNvP 665/pwLC볰[ Q[+ ]]?>5H1LM4lw9n)?DR˳v)K X \PiJL6~7Cq="Yer.i/$P?|w3'4X} \*+-{:zoy$J,\3E tUj4c %B019[_B{y0zD k?$) pCvHmJ_=2 > Ád;8~$Q\/߉ɤdn9$$IU,T CWyNvˠCdWËZO/ɦcXAG Gzn&jZ4f)VCdס= 8tU!5+TFmXͅFcc}H`JsbmߖE2P>aCX A=lst*h fCgK8 .X086oiOT4!XMzJ**e+K*F9 y\So%>2TK%]@.B&ԞiEc^Wptl ^0V-D}HIǐc<vbȅ#JB{Ϣ& 0CM< r>f6Ybv g>:5rau}wUެiӷ&sFn ҳ"<֛$M_\JUOJ򦧋و@c+lX2zDG8:uSɪ727/ޙavJ PwlYDwӝOL}eR0 l&G!_J]3 cN/{XC] J&X|5 >)q8'=H9YpA)dgYDAcxcC$u<x.f&巃VCBP_oƧwgƀ'bEPUk>Eނc}mF_ޅQ\0Woʴx L=vevP\'&CU1+ QZAee N Vzr4+$p 2}hȕ/Ԧ(Ǥae#zae:ap~sTQ`8pwbϟwv,@Gk\e-G޷ř͡`GS,l#hAXV ky~]Ʌ4 g3njN|"#xq-_ҝ,9KMU ]bbK(Ѕvf?(#2 Xda/){^5H4(YN|-餅ɆE8ĭ9= ?]®iGu Q;OՐ P<ѵ{5vD~7"Ѥw[q3*_H6>dҥʠWy:mf92 )d/ V>0}°"4jK% `,|79w6KY؈nK+,T[|kEɎul0I1=`AJw? sG"탊1oEX4: 8V%k]L'{qTfϺ೮]4c=Tjq\(NJXd˙+U2*S{hLpж#*2}.#se=2q%4GZ}BEJucIN>'o{ XI_ *Iٴ¼GAN̑B8 M r1`Ouus;pCr=v QFF_w&PBJR{ZJE-HLٝCh\-KT{&׊BI M:ՆD:BO>?~Oj1D["Wx&J]œor+E ub[kR#2Gэ>~?Q/%,hFߩ0[E>BkuJtHng169P%/٩>>~ݚPY4X Ƅ<Ϧ\!t">x,RT>k%{"9ejsq!&y#O ̸ &bn]W:S|tuz3sAc*u7[KBqurGI0|شewY}B--_*ۉTe nLYI@f$;vj jjSϻub}7ODIE.>Fn}!{޺9zOSyԕA[{꺥V}^꯼-ՙQזd& $r걡Դ1n&M0-lv2y1Zʦo2B&˒ar&<V^v}%o׏Ktݴz{Fu(5dJt)zưo['ဆv~ Z#I}zU t?5(F~V_֩U #3#,:3Fz}$`z%ԑ/2ɽK~tnOxb/0"؉B+S̾Q i@|U- y#uHҟK4ܘ{Y7N Õ۪O20DSj؁)D{@> o^=ݚ;$=2#ԑӁoƫRY>^loYD(Ι8Cq)&-I* z7hĵjn3rl]$B=&DNiLI"?v,d@[T%7`8한k[{)7潚%o xPYAY _~G:~ɗEЂw ")|o E=P9rK!|.e?Bc\]r 4?CdN]ۿK{v}C#&]@vGxqzD퉸P>Z2M(pڵSnp%\|q PrEKUs,e>l{%qhܩ h7IMw-9Z"#\(혁`نwcOvTV pRkkU̢oKC VF P䅟 [cEʏ;8z_=q:\fF fwef/!S%E7) ~-*g?"^*>iwmkyXSQѣpqvӟ1~H-FAVPJ"L΅4.yZdۚL+K_'/햆~6DO00&vGW]?P95\9/{I@gj9}@=Ђ|Vΰbߑ}Btk|DN&m`Bur/E=oexZ\ 4آZ@E061I򻲄Ls:̯l{)X+p$6w'!$mZka ӭ$_V%ʯ 75IQlIOw9sNs/?2L{ljFehmgBEV<Ա]$)-C}z3%{vu+4mvll (F( %ʹ<H8ÈOt睝0KȹȜDFLT_b>;ƸxBG 7GH1;}\Fnnc Ħ12-C [ , 9Fc%GZ 3Hp eo-`dWA8kqfS(*W&^"TF^L&3^ B;Bt4ieyJ]{hfz2=Q \iݬd~g y * &2ر6I"V4ٞ ?=.cvVf?C*<2odSuF䩘PZ ¥e(]g_)ijp(D#[ (ȼT+J K5E9]|eޥ-{5̈ 8cX/moۡd_`ٖnZN1_]RtrGMéWL?FZ3pm u'eUF/D <\u{JÖ_zDd7,*,1j#@V_p 7g\|pڵg7^+H}R # H-Aj50T%3KND7Z&/#|>ϸ;łB5O:_QfJ4#"VV>jEG9}g0W_W[G>3aRs( pLFs wI q+q};"\IR[~6yi,>D XeuƻwixR<~\ԥ\|l!dNd_ sw,!82!̛ޟ`T~vI {önذL;` MG2%?=yAr6 T!-".nb{c9=DG5LO Q1Y\rr7G(e:ȚR)~+j+ɌzOʤ{nbK. Y}EW,#JY#[ܕoR 3t 4ܵ> xȇngvןR9le9c5ł5a.u+he> l˷Z3YqD<틭C{3MsbưVl( {'dvH\?#Ko2{06Te]ȃ F>zq ё1˕8\Š]gH2ܗIYu4;/ ,:E &bVN?cB.b*pYlB+> v=Y.dջ\zRVL`3cF'\ y%avkBwxY뱰"]RHYM2[(5%ߘx!Rp{=G|:IӔWBAؗ{v3,?UU쉖EJ_P#yF=n/;V<Լ,]šxr'툼4-J$-'7^X= A]Z9 9-DOWWZLcU[ Oޯ\"U*mήC%\|I 8(<$b DwU)4u*CcXqEF]3ZV\ӣWGlKf*?4Y)O([/4_ %6](>*bΓ%XȯI''v)\l8Msr0asOu[c27HȽB Ɂbmdu8cL"4Ymh򲋔tLŎo m,_0@ȶ&)f#^vO;&Z5z_e)oA>c^nqRӒ/Bretg܀Wn5hwۉ`mԺA^F`nT$1? LutQ{tG1 MK {Շς9;0`ƣٹ21;O!Roy/b4ĢgtzHdJY62a#4 dZp&4 jv>+:@\SMxü^GS8TXYX?x4 VV*-={1soEP,M/d1= je/$3Z\[ToYL秖Ӿ4\JY.|B1(O'OpJP09q7lq\ G6 wHnmw8& x=Q,1 x*Wxth^hkm eSʩaŦ1U+tEzv@n.)2'iwTE%e2KJZu!WI vB\ r EHs@˞ӎ ZzM>,bjIPݫBmM0+eGihH/:)9IQ;C3$obYݜ4 CӲRBIy4uE#w`#Z˒eRI(躶2W׍2A_BL$SW K׷Haۨ P/JJ%v\*-7#4f2gmOUV(JA]^Y:,M-|jWI=O䑝@,>$ZEH "OW.Z!ދShiiKh.<^MC}(?bVU'Y\EXпͣ2\on鲻3C̡Lv_j? /SS( ?W^".66SEZ.0\SO%糦m(m1Ve'藷3 e#R,fEyS O8,,뛢UT"_֏u%eR/t1{@H?S< 6(¥l(sDܴjIlF&^A^dxyp !lrtkgi7߇3bT7P86\@RZϮmkF3f nHms謋}i$:[剆N\2{A mM4Ā" 򒈿kq?O#sk%;ԕĬe2 O4x&rtsOsMR"~Ͷ{AщYl"'4 cʀ+#qPsJRRWd8oU(,U'JUHʶ 6<+ǡW XSO`A6viv`N)i?ie&dj~u-D?Trh@a-D-A3 Vz,YBc ߳BrW G_xٕS*"K)6WQG y#؎nةTPGVpf~/4r%IaE=K~v*'|F;Qa8f[Ϧ0f<  j{ K!@PYdD.OA)QCQJy> Adؓ;J tp\wddž̊-Ap,7R gÞqLX)㒢;s(h0qV&Y͖%^tjGG5|ijne~ʪf)ek_W M/a@%dU/IZt,9%i^1#wDwrTd$#ҝvn1,ÿ!K*)83Mq7h ? Ȳbu8a`ӏ&&lڝ&V+=1p,C։Ry3yl.: ̔ơc'Okţ*gzș^ WK'pQY9f,GOFUPA4:Ku%8?2EL-D@5ڀxPY԰dHJ6)z-eAظ![hݻqεE8QоFhMbIum52#g[IG*S܋2@qXaQ ߢ} Y kVBiԴL~D9RV4ZӮwas2gB-2#SUXoW8/7Ե6=4eF #r?~,\ٛ_D!H]iu "P&Z&Pr H[Y&WXqK᪐1u.t̸֡k@֟)X!t0K\`HWCվnEDx?b"Ae𶏚pkLqb__}kVY GeT}tƏNH4(%,:&2:"-0NȗV? D$s[-)7d='3ܹf)a1̔5pqD _ۏV~O4|2~s] 8WApBƪ/$tO882W`d_d==]U]P=s2v=u\؎Zw(:˓Pi]0j܋R wr92̸3I {Ga[eDChЋeBjf H"Tcc+|̴nq8v ,Zޠ~h%$9ODwG}Fme .Ǎ- cHC,޶-{h\hFwЪ˩x.'& 3 Qyx9Zɒ _uw@t֥G8aBUob8( p6| 0Bp4)1]dENA;7x#-@ǒg)RӚ?!y^zWa;#USK۪s}Aޖ eVzFKm`T+HsLN!{<8TJi@|OZ|oLL[ۚWM)iO~ԶP]FkYSގ.%Rᗓ#'bB8pܹ9{0W/*W(QD x$+PȖiŋj97Q-zHl$H2BHY$Jhx~ ynLkr2{ˬîq[_}=UEBXntȄe@GrxWkX+jYtsDv $^>/M@5Mf!!)45>hܱvS繰;V/ofSZ(iqX|Vp?(FT&hR[mGE_1B!aL`u'8oFrλRVkιC&a8i.ټ--I2\9l%a<*UZBsK9M9,&.:WWbAwh5}'>є݄pZix^/L&ѣ(Zjz&9g0.,m:K ' ”'7|69Ui^%ʝ#'ʒө%8b]#-, 9w}1OaVoic[nywɁKM,{y _> c'S\ʢ, !aqPˋ<|N`x6enaYw\~myӜۮ!>wrB4gͬ!* ɍ=:s3ROיJ "Z-XQ Lw+eRMHˈm3a+/% %3' 4lM KƔmyκ-tE,1&d#F,qfY/2W@湫%ĜÜihÏhI]"HV3Ʈӌ @=8^fQZ@*0*=XJx {":93j.zƢ&/8>J1G5{ae3Jg'|JKFQ{T9?T}Ԥ1Ax3gbqMh}Dۘ l~$P]KcUXdݴ%hX% gr& {cP&C]c.;[P͙|8㱈`GuU~b^R!.=C@.SgԖ"D9Q>$kbT8 ʐN~jv_y*sC+ؗØڎ%7㣧X}vcn\[ ;fsLOt5_gs(OZpLK4־,TY|#S:` ^|B#⹀wJ͊96@dmh+(_k˞b,eO=g]avPiXfNpԤQ8<ۻ$AW.Tb6sg4N"{pHH"l ߍ<,ZD>SG 5A)9DZˬ԰K@VQuD}?TP_YVzp{࿨8kz>? l%W@#ěFVЋ1P7Q`l9> Y +*)Ⱦsԕ m1;)8[jP.ieBS*ˡѯqavM(Ѵ|Baȕ'>ϞtiEw(oᵗفJ[ʢ8ڟ}XX~W-rs1^lnDWwqŸō:qV(~{^˅I8 AS7(,kW)eUU2fF˹tŹVilWR#ڶN1QPTD:8>" uh y#gH_v?ڪ?OmMPazMNP3JWmpúUjԉYp|UvDX5A6P3ckY=΍/OEƊ1Hsx"t% y"ZU9% mue=!Ԏ7cNPDq}]$4]_ɦs>ry-(uG4(U٘v>V *H2Ӫ#< I=+%>`'@ncNm8Rϝa:J'-%_pWlw|:pRpA$9ahܬZ@$EpB ߽c7֏;yn"OeVQ^ fZ?ToUӴ<5E"KאH}78o/!JB ; %@08Ox i:V-?Ӱ1ٰ@JmvCJmҩV%ۯE `Go_"6hF܄asy"V<2Mqikt{fA9l x*U2҇f'0+=)%|rvAky/B;z<]B^Q3z8zyXO#E pyg\x3ӱT}IqlNHX@) fN@cX,}f`$z] .y;1N?,U_>r R?#-V\R%tot4qI2ֹg+Qs29?tz{NGeE.UP;6tp`; _RVVlET!)C ;ٖZjzBVAu7tRyp56 ?m8ۯt[tM/C*n&a5wp}]FD7W݄k.Y=o1* +[Z`HZ>i)uS "%kmc往4K2MZsрͫgap0찂-pT3bbRK 7s"Na>_u%@|#XphF9.&ZQ4*UZAK۵GlP3'[ z:]YkmRȧI'*zL!??jp}O ,AԘy9S؂xL9E},2t_r~tЙP=vk9ΐ|RL$f(y]9:E!BbHnM~$E[ɧC=R_ k{ǿ~Y~Q,Tb$ٞ=MyGջKp[ tWGN2teY^1’^ە:‰~cMP~mZ47٢iKE0_y@ef%„β_ohKd)|=v4n{%+*IN*;VͿWq-2QO׀ږ'Hv|Ne|,ͫdW s[ 1{jFF LvaQj [BY=p@ssL{K Gȁ`λsR{ bH5n/VpT D!$Y&ϣkAo6b+M/T 4,3XQƛ[T)1z?}S>p"ZX~AG\ٰI sP;wtY䂚Uś! VZ֊r{*NH_ q2Fؔ'zq_\zI+ѩ O$l 9ƫR@+Ϯjlb,㜐3WfGUR(!sЪقD#K(c3"++-5YnIJVr i4 r;A\fXV➰jb"`N,mԜhLo7Sd CFBO7(hEQA\*Fc,8>HKC+ z&hSj[I qۛ,HVo0Y%.d n/P 5ķ4% F#?G-7+!Ymͦ1rhOÛw"JicJUm64u$]S燽~onD,%,:ê7՟7*\Uz j{l g"`@@QNM{rpcO-Ϋ<Ғイ()zQv Vb!\ܝ I kJ N|۝t}"^ #QzhP(Oi] MMq_iv!orEUfrjd3SdTXq.4ݴu,%IM0&b( .h CJs ʧq`-WB c >iةd20o K[#z r}%jbС~F*Dˆ 7QR6jk`F2h]m IR(A0lqK;4~)f/vTgiԢG`J܌'y^keo{jс.ReSoa^ū/z%?p8]C:ztE+ / PJ=#SV#W@CeR8ܴ "D)0+V9RJ]/U6C%y엻Ժ]T*v!!a a ,C5TT4%V6؊)v qŹ$?I 9iw~Ұdd+FDϒ} -2xGCzK9yq>Tլu7jquJ0۱Mxv8xa"oWŁ%ͬ0AZLLHGJeYKRaE7p7Wڱ,ud9Kdb?Cc{0rٳ&{ebufBq TBCGgK mn%@}4&||TuV@}b7ni;sU+ RU,TD$$c`QCc_O凩qDsX8Lz-AZg) ܵ˝I2u֦&sfJu)f鑅z߶1,Ƽ ǞVLab7ؚk$.3E9J[b? +N?|[Y2 mWZXGha܌7eA'O1 Ԑ1z>F1Ua';5F|a#x4 `4e-}X\Z ֹs%D2B|SՅ;}Y!Y_-`9ryDz5uCe?tmLxRO]N[sCdCx<¥eZ:%h6Hl.YpU7۞jT3 Q9w--KHtD~Xd!s c f6|9h{_ (λUH+DkqeB{<̧y(O(Vuɮ[j?(*Y 0$m!aI87iU֑J6,P\Hj-HE)D=^}2ԁ85~r hmwFQd>$ f;VG~xɲ⇊%aоn B}DǭqyNW`J2#Қ~["U;i6w2TQc'^kwgnN ٸ$ǃoQ3kqVG!ݴRX𖂠x;V6\vTqhb1 Ҵ42{s\' Qv.3QwC`>.o気cuթ`!`ǼƋ%6hpIj_Yxׁ<n) ^QGY%Kȟi̽ey> -5Aσ(trͿ8`<A:ނLmM/Dć\Q|tMW'$43 H]biw)GXw"N8ycڻ"[+%}&N!/@k}1^~*2  am.+9n~awg|XUxBB.4T7:HHR r@+ZTzHiMF AW$ ְx'4:^ WeIA^um;Mn˪ G1-Ff -}o.bի;ZY0ݼ9F#A:l%6 ,7n#hy \(9˜sVHׂ1ͅaho G{5;2QݭFO:SfcC#i B#TFUm n<+,ܮ>TYhU1%|8y[geb2PO+VED) >n >A9,BHOyL", *A/JRǘ.AgHm.in6# Ћ{UkXD)^p)|=,y3`\VwX6$?fI8\X̤9.vp^=)dY\׬m\Z{z]uB-TJJ@um*,|N:H v8XboG2 ُX[L $uAc }4IUVJ!;5("Ù-u"{mYsCObzoDV!(( *JXTS# /.Zs$K#Y/{g"r!&o. OgJ yvW[t$@orIm:uʿ ϱg'f_kluTTs9#v,;9`$ qͰxR@&x\x&e㝿m4gzCc: Ӑ^59Z[}_%[KAI3b wYԾ+vVUA5*ծTW$Vnhx=L^<QIwq[.tyӪ]s'RFX>?;[a)GVcvA&G􎇑׵s5BDsRGi}IFԨ"]9$ORb(:Y(@pQVu70[9J4=v3mTS՗!v{-&!ǂ.wX$x3Y2tih)ztٹU䆢Zpt$`s3$=? 륀63i KhI票ih9-P@NЃ_C!9Z~|!mJ6X/T?T<*T%dl{:h*(ʄUc>a -ne1BmcA^~):.Ֆ%3plLI"CpSLzN;dQӧMb oѝzK,7=RЦr]27n)0GA$ytWc+eELt`4'j׸2Pd~D '1GR~(t]|vpɡ\֊'_5 \Hԁ=i/IWcS)')ۓ̻KIgp4~MRv8p| m. @1좪KMْ)jY\y!n65_CT)1R}:3 Xf%!~UIAdd7b9ᴪ}* m#{ʏ9v{'T:; COT؂T$ ;|$ '*' F~u)R;͠syA'u2}}es7{gi7z0:%o:d]KwƞS;vլ"`ziR2i3l ~+L[(}>Y"3KúgO2#(K,J];xQI 90!u1qT!s+}C$菒ֺuR~ZT\9Kitǃ-,jXL}ND 8%t`xbQX١-_1.< KE9^4T]g|r~5%&9txy rTm;? hG4U  Sh?٥ʟd.YrZ?k|cv";\vCJ u9U_+vOh^%/j)욷o{JIYV.j܀4ܦ$f-TnZG}d1p5<9N&IbA`!c5sєn1j{rT6A3/׻Utuu{e?g$O6i|r{\+=i4h!1N?9"Ht(T;; NQNVp̊`Y7U1!TN1Cnɚ/:%!Q/ԔMQdt 4g8;HA`Ch"^jp;T^AJǥ; TyԨ >Y{Vvuiky+_18PZ~0FL ;5$V,lp&:aʢ9f6< 2 )6bcika740h;y#_Mvvkma]jmyJ#ԓ_ C5`BqTm*¡ :C ,.~;xhBDs^,g{y8iL@bd:{L; lAW9V jr+:c*6\«p |W[ ̻3 2 2e2Y5Gmuc5Ɏ;|5LИwudISهqg*"hX :{x!XM9I8 %ɰH!G+,ߓK'Pg{V*^}j-^G,)pL!1AB,v?ίu6F*c_ î_#T9[ԪE?G&_\d8Tnk:'KZ^ CJn~7]8I||+Ol= P#y`?dckUktm'3OAUDI ]PVjE|H`vR{O &]nT &u-I1CrqnE.M.NĆ8FRJ) :?+!p?*B_<>6RN CPw_hjMO2$2F*|&2#u_#N 'E&wKrSw,%JQ˪hӰw6If78М#UEN?f`qѤC@+*NwG}flx+6qHhBU! p8$xDZrci\+xdM]ri9k5z'-0 Ajzcu.T'@⽶gr析oRŷV3kxϚf)F{H1hy~'Up3'W"EZ&ZvpЋ ک=^ fk<@@8pӛy!/8mkL㾣ߨNe6-baP=R2ߚ NMػYV18@r` F"WS6-"-2AGsK_z 0TN" \ji,Quc̢q]`}ҁJ~a{!uJР#67L_H!P~ !H|lͼ -O>2(:Y!tj:)*"J ^LZ _.؟w!y+yo(q+"3E.U_7K+2@.qd==t BR$YHiCKVI,ؿ I3!R-! BMƧcq>+Ub'$}WիUAP_ʇQvML^uDz{<;;+):T25{+گY(o>_~l0_)+i(Qb uq 3 s2&UEZ>9e=Ј__}I{ﱸUkqzָc82pQ]3AZWIN.P>f$v3y:+7$h# I_ 86MU޶~ tP3 0i#BS5. r$!nTB䫢3nlStbf[D3S]DWor0z]eD!zEKL]{b"+Z~w}Kv.` |v?c@%d49aQ꼐ޟ`E[s3R^DH uB~ ĈjHoUs~4sG=gnfqKꥒWyݗ|dc&ef[ӻhAFaHDk)'~ko:%Ki2ۧc"16e99܄ 4<32p+ybgz̀υ_3ɼ ԇn1e拘:|ݱb|_ vR^_5AuFjJHa= ?XZk >vWzjU2 !!` O߿^忶{[12 ‹'nvZjjՒ$;$[Aio32dDwbܥn6~&Keb0DW s7FQx~X_魪mȦ?־CN0^e↑nW^v6 P7tb"~vl[_ 9F!6hR0E`K/ H\\O-yO VQҬ;EQ'A(ϟd"?^׊CRԉE_ig̠Rpr(*ݚ)ZT/rta+n*E7V_>ۄ͖ J}<']77 ۋ3u$=\WdȈ(6KOzv`8D÷]l+ƭ]rWW.p}0r.hjjӍ?i"~$e٪tt솄HtX< .R0cb4yhgQ9yKZ{kj_f8l  Iw,K֫BgRzVEDe*,.F܈SCu~Ay'LjLwF|NXYzul.KGf.&hPmHEUGۈ)fֵ$CiR! Qi7>pS$DDX`-b8޴6\/r+|_0X-U/-Ow^4.r8yej"[>ҷ)J]Aq*&. "I+7gb˄5Xo_]7֢ѺfTDY¢?VêmWBG +.\*Ls{~0Ci4=\F} KLb}.<&JXW}ܴwk 겜 L|<&HD3 ]SU4~qx'VRoO.>_qA Em:=wo0{©YٖjV3J6I-o/'!Q_֓QxbIc~Y1{8S虥PnyI0~U xϕvYM+F<9,.Sxl\?"(v$,-M9q-/ed)8;!lhCTJltl%d rHW|U T'-G~m-wD04Xe/bJȟ :/ᕗ223s(2Q}A_[4`W?S~ֳq/nF ?sXg舘}Q8j b`QU0*ݣ7f qjư&#sE@7hz T]OL^Fz(&78JdznxOxڃtz \/vms/fۅeupjv\Ej?,LE~\dD}8`0M8F_ߵpދtڦրe߉xweӰz18bc5K$ xVuwwttp h)W[RӊTł<-f-o+}4F1dWl7}neL:ƸLSQ]]j sVn~e2S1 h0IϾ'H e1gqEA7(J*Kҧh>߅GKҗ&/TXnb 8b!Wж}S*/,O\.=%E4Le7cTc^ZBtӫs+j(`ŵ2o42,߯@/jjQshy`Ec%8bޥ>UQ2ۗ[ khBi#W .nZ~ȦEO9gQ 2Is=h#.&"ڬ^."v^.yB:nt} $\=$=؉8Ega'J*Q9*ƢEߣ\qӀk[^!Wu^B76Ol6wÖ:mS׊^jnͪ\7ӫ^AT t+Pu~ ‘`̍RXWۨ|CeT88M Nܕ`^!5avfhQ/["D]DJH${Qb,2kBuӰ9XŶZ-PK7v P;\(n NZ' Uͮog\N_zc3Qmjw%IO>[y 3WNZA*n+Hz"ҕHlH'(Gv&a)lQ) Z;:2e&}52@V)z/5[~r8KX/I!B 2I[d~"wgT$8ĵSTݮ4fj prb2OٟukmhE%`;^h_9 W L>Xe(DZz#)7frU%FRPz;HQ65>~bCkuڱݟEŴozQMÔ>,^;|Gjԕ {' a b =OIqWʱSMխE(R S$k v:B=@`g@|!Odt|ڀB`\_@ϒ7B/cs\ϸSɦYF#s.;;ni̔4B_ύtq8)]e/!A悙vn#Y13: 7T/Ȅt G"o"8}TaDm?ν._;2.ebݗF*2HԞ%]κnG<" M=0>b +MR}8JǫkXg8o@dZ{95qiB{!']~6~?oW̴ 8Ɯw,en_}]6R'<$c`%V NB5 (@o;d}j_E!RcRiROFm3ə*~)hNKqUĬ0Tw+_n."x`Cc Oꋲ?cP!%_&!;;_7ҙ$6[qKt=o-cu äset6P1s<Em;v ~۪_8[ ɥ-|3{LNKsqնG)MUas9Ps1:sq}-;q{$qNnhwW?Mױr!!eQ+0qzk(ߤRSuYs8 #_oA5 ja'.j£_fiE|.lKSV(NU'n,hJ2s vxaa*uv ڞBR Jf7S㏊O8矛\\LtMz vh׸I/gi4CpgQw(nW>ֽA׋gf⻛aJa*nYEA.:X_=uhXI$~I!ϸ>)wu.&j_,chܑ̅mŖa< '̢/fpȹ‹Q}.SQ䧻aC~%JJ푨ce{ZR1 O잔 iA X좂C6'G$T N+!h*iXWWBxKb ,{bU͞]0b&[ ge9Va*gӢAWr߮]Ak_S=5 ,cC{"m)l穒>1< U՘m`8݇w laZHɏqRaiTo]q^1<#h\zP“Mfv+tpp|2߂8)&|I}XDkITk= ! 6 6w4?DBŦ3z~Pa:i!d<7`&ؿW"\'R2<\H50uP ڶ" b8_ b1ɷX{uWegp4܆MR s֛tF1ơyH& j h-u䎿zjxEP@k:#UN*-osxã&5bߜY\S˚ݻ1}z{0{Qnc\&3Gm ސ&U Zw~ *`vNJ%7CZX ^`D!doUOT^48|4> H|n4Ib{tkܭ&rQByCz{?e QɈK+#S̨ p2{&jS*~$I$L=iTlKZd?*g ז ӄbYqvoK+L2~vR$F9)f/ <IXZ%z$tN,(gˀ2bE18~Q:Jzwm˨5ÒT5}.*baa0ae27v9(u9!$e{O7T㡌N $sYP McˤMfꏂND SDgT$TwS?;Y?5|LѼc#G L"uz: Kn7Yp u߃DvpHFΞȲmwWBBpkݏQuGfES \uŤ7b%A41#4㛤rM9L>&ûP޿PVD!ۺ.bNAY*v d NeSyxYR#)%.ۛө}UpЂf?h 0%JD Lr CpB?e #J0cf[SZ3p1A uG,[=>Ѕfk4|~~":7jΪbݙcC8O;Ɗ-T`N KžR5g^8 l &p("Vy|M@}&`iSM|*$6FBdI-`Cb1OԖ,`N'Tpm*N9撰2;ݻldn+tz4o&huƳČ-AhǞ:ZzMZb[C֘HP1D%=y. X$^ V?%q(֮.dUPPǫ$Ohs& 2=mOD3]FO\!:x0W#F<1MBK&e ԾUxs@s c1 ba6Ӊ %>~BBpiYUQlg>øtؓwHU@0GhҬ@mO{mLx* D0`wfkk $8#XdLW|;//EhȺP%`p 7WBͺCHV0 @S>cN^UI>Z僞\0w5@$7,x Bs8<iγҳ,kCDSS+ _5U"-BWh²^aakdTzDZeSQSr:ب$=ba N&%GHy͝VJKVQU\ݗ@XpsE}*~Tz94V˭[|ak: =ut-asӑc~sԚx κS%cK}lkF7u* S; Qz-衑a6 rw9B+#ޡ(7`j MQٶ1 .փ@t3i{5@L[0<[+!5+ &}F5XmKFDRm4D8IȳvP"K~c93PbŬ`7SӥgDf-.^S_@%B0b=&[mT :j3(J*U-ַHRKz~ákRx/scׁ; *{?3cCdcN巁p?ugL}Dj2 !^]A<-vE_9x1?Pd w=8JX%T fkwvd)M&fA9rAn9i4T;<@vZ:5p[MwEFv,>F!-kJFn}L;f>(3CsD6՟Y-1OA-!7"$B<쳅׿^Ū8~7/.74+s}XuP6 /~$?J lJ4.qs#EJ<[/D`/D[Pa(xQK\/}`q_ 7j)ƕJ\x3\UjI mn DMx/q!dwA&QSң=Q5ku"QW/O&=%AFR9/d7E.UN&-e\΄YⰘi-hhv@;sϦ!,ly 5)1Hr-#R60Ev+T,SR f*G-+fh소#Tk[W[нKD>4*}ڲ _L }5uKN5!ɚRww ?_cfwс/[\Q "kr}lh& M彻k͇͜}j.5 ҅k FYG6 )z޺z#(DY%E,%r$vhzu'`M?'ɦDXw2WH|Gį;,s$m^;7V-rfeO6G(ޥlS$#s7z&dvK|VA'$sd=E"Y~U#mUnMQ=So 903(e!k;O=ppMCaq<}jw6[2Zh"JNҤv.=Q4#9e#7oB |#Y9YQfV|bxa^?]Ұ4Kc/}`SbK܊r~n)Z;j)S˧ehulAUhS6 gs+}=) $_.)I}at8ԥW'\I;Yl{[z~EGu&#ptl#,ё涘zCiEm#ufC@oIWӡҧIĴeh8`Ie~>fVC*q@VmʸQn@g>c-ܡJHʄW+Cv]TT4?r^B.;z/'0{M>,JClOm^ܥYx^'$wk[|ށ  l[`߶ѹ8Lhn8Hy7oUz,Ö=jJzY:fy0`%Z! ?@ fP#!~ta Fq _ 2""'nq9уF3SΐU sFYE 0V#mG)/Kb Lkb1Ӑ/'R_q.O~ *fa?5O] EPsҴKwpq^JQ`AI= JUV[I& rt"pal1_6@.P=QL3*:T>v< OP5eHǩC'OϬIfv+ *$#vOBzQFTiBV`7ép_/{t+*l|4֟XCTƭ4@ҧIІ-@2⣡2' aZ4l.t" 9bliG!;#.V$12?dз@-*- D_t3S:]`F (+eAЯw@]\ m93X{]-lԓ86wn]?:UnU`ˈV&‡#`#k0 ~ӰN^!m@RwEӤ2$t-f]J^~U}sL@+r vFM|=zbhE3I,oR/jxܐ?-n .|iŠ:fږ`ׯZ-S̡rPg%|FT<"Is䈡;A=WJ>MW1:o`I^KvFn)"?OȞ%❾1- Mc/{^c=o9Kỏ"0QjT8s%Σ5hQ$ONA1 w=A!0i V.9;QםO6|6Z2T>M?IW&mkx>oM1kN!!_Wu{)Կ] PviR$/#Ar(4@y=$G:h_aq#dvQy$t\-N;ZÛ;?Q烻d Lyqg~h[lbOD{D,}p^+𿱜6і +lP3ǧm%(+ՓٞI- UbUw?ɡQ4$79M]'O&Ȳ]*يOGTL>!/s; WYJ*VpƏֈg5:TG+DH&n łtփ}6ϯicn4t~G Ⱦ0=ғQlg#kw.l'1%}%ϲ-ssGA*rۏY x5|mS=&4FV1ض_UMɟӾbn ֲ)4G[FjHo1d08NuSi0C)ࠀH Aě:z? kNctqtiE`:8!Bef ol#ut;6[JK%:P(Z_I-!}hRTl1 8~=,oOS%0x:`p"cɈB0 qnp(0{~(p7.{Ukԩ|E<>gFagt zC;cJ>əhL`_ؘ?uX`GOD=#H1Mjz4(< nڰ2n+[>$~例fljݤ_wE@r$+ `b5 A|[lpZ0)b|y|g^7aRJFS;2h# KٺeS]t3oSm_}J_[Q?k1xm񒱀LCSt bvq3.'.Kw)`0): 3,i">w/wύ5G U`8&Þch2vr_GgU ,G+ladt˶:RW2jQ/y/˾vVc# `:k}!1#EEAwV=I+i:.- ":iZwrd(\߶[jaG` (_i;Pb"ǿs Rl4ogGc嚢sCy! 16"^mQGܖPv,L*Q_umL|t7 ;e잿!K<[{iK̎!"V|ed_ʲ.\ɝ[^.$hy2wD9u`cj`?b 劓cԁ:bM#$* W9=g4AruD3 vf˿'۝&~Ɔ1w a~`t⪢8\1n;3R 6YhC[R |۫d[($jH 8,\9M}x+@ =ʴf܌&pI'nȲ71h8ͯ*^B5+7?_J>FѶnE^P"Wi:ޣ=$T{I]Ϯ7G%avs 7srZ1xlL[K ty LQ* K0mDB(Qj7mR&%sw~*tإO\UgKLgq#qyiߏfy&} H CˢN|Χ1k ;-\L6i#'?\yM䇿J)@]Tx]-;Fp=g!Z2z>k&A}ܩ*ݦit%};JQ-j$ϵroϦvd'f<&W}^@eA&™tmGAs(˫[gY;_` +\ i3r/MPhHKS\#YS(fg Ƃv&6 z(&٬Vlj]+cHW\eO3˭H FXR5%jWBLVӖ[ Toji@Cc3f|uVIn`ÀpAUBvuy@$41$/&nuNZ}h@ȆB dUƲ+=]- ;T{FiQ*Qm$EwT\߉ H=,=2rg uxtS3aICT$GQ7:xM+)>-ʄdv<4Y8vK-߯'m[e6Ognٱ&GioT ՗D3ѹ&+!OD+pjRXB-`z#Ar$8"n @ Û:;۩BUV.leF!d9n/;z7EΛ DSohwN zPA+dq]NGKU)AzY[٢]vb]|D ҍ%MьBYV~N yc~Tטՠ\s&&S4@oL%N;T@(J#"H0:uC$P--մ(_9:u|O"G"z䑱;'4S_Iﭜɋ4:;饎xPݧX^I(!l"R\"O9DX}1"g<+ǵBpx୼RI'z_fͯ~:8Vh-Aч1[3U<s9OwvLDcKo-jlﺼ(TyCcV7P*{nF9Zf!pNP v}Lū[6 D%gB zp9ڽxġ'#N\JܜZm]H )DZtKѿ9Fo;ؘ 1izSavJEg ) #+OΝM4؄x<*6Ty⟱1oX*~)PʄX>E}a Q$G#P,J3=c7Hڛi+z*>W[xD+? P}ߔ3_%^ynhh к"Jd5U)cESɠdqDXwgIg." &%C,h58G*18ۃ.~!A˰O⋦F#Y?` 6Qz_sV~],kدr鑉Vt'K z>E_*:o7a#pAjꣅLD buݮ"D>&t[s4w M Qcz)գW{Z1d{RߊGqCf,t:ANAmT 1gɲ̷kŷgڂ1nD5)HE-_._zSW m] Ng䳚3/v {敹~-0B'Z٨Q4=H慔*@#,0`{V8yC}뉅%OdT{ja"| h{_ċ 6E﷏H<$f5i+pk |o7 F(NJ:A+Xrog1r Yk c}) zxn Gtwi3uȍ;brMI d%-€z6.)pziNJD@q~(2 {[sB>'oCz%QEUM.tq~?1ۉѩL]_f 78ZHvK/g )YqL;i?xh]C+aDW W`4,,vr.LDr/O6qX*؜ _ ˧ƽFը À9ۢtSn;Quy~$n\VoLx^2C|I׆J ňA8]t#wV>+O_rС_[x74\DB) WQ}Ai*p^S^#I@9t4@N"*hQ ;M3>"Ϸ"V!ؒ& tTق4vSAyۋו0o+XCDo 4M'zV. Kfu&DhW?[_K%w7b9P :Zy 9Pw%ݤߊ" TFvnGwkիHԅ? 3^V~a[S[ES/{jϳ9|eJ~\6\ GSn3߼wq+V/Zpg@j a*x+<>07r^o܊Knc+J8JlѼpT{ mN,)αeLtU`X5R_(hI`;R30(QNm!-Z@?+%icyq/pbɟA3p!xqICПΡE=6q$ Gohݑ$(Q@˴nVly= +oȋ551%uUa赮pXXCn6䜼zqohyd+&4^桫\1 ַ<:]CK-=lXV/jΕ:6H|q]曤YiFM6vT},@Mz~ҶZGں s bYϾ_' ` j.ϟDHʝ}G6&uv'L(0HFtd>h%ALr_r22@[=\IJSKwq Ea 4AT3DJ1 h3ˉ%Ca8oZz ܨz*M륥)?P턵Lk^ ULzɽaAV}/P=s1bW7v@v&ZRʅ`ѧBҊ~9 SLu!߮/G!$<˧bUAفu6H^U@ :y#d*OCYXl\zs=MEJTyʟO7#C\š~* ƐWh/ K7u(f>e%U'#j!'N(tuB/hפUr&߱.0Z4<][MsToÚ\_F!l&|?-MA{.7GȕIpiMj|iND0 =5}bkc[?UHKVsk_Q"яՍqk⬰ < xsHӨO54o_U7DZ)˻%:tcYaT|qڐeKaxP="HzV^TgjxF a7`4fE5D.py~LE@k׌Y9^}?!Bb8,,H`a ;x; p XNr`/gu 0(]\"C(7*ԢuণƖx0,uDdo{N7%Se@ђɥp0O;e/7SV!,ؼo+ Xn?wkH?G#ɥ}.Or!Vר|LgłX\ZPqFN L*0-kH.j(5U7ds vkJ8 C.nb(N8F"$s C~倥.'L$PjxX-T8aҧVm2_RgxTn?at<.G$g3HO5%ꡠ øҼR0źn/{5k lG:exmBl]8=4v6sK6YV$ggͱ26\AR8UH2@nʼnM|a?Ңzo s.LiiO se9P;РiyI't2;pJ?wl0hW3? HJL)OQ&gJ-/fݚ臲S[M/ee@?So^E$:(4U \o5sCLt) o0 A7WRWgZ1R|cפhp%bJipذ{n_R9LMc1}/ h Vg=|#ۮ)fnŷx[EgԻ]LF+jYo]c#"GϓDHtWح%M(غRMܰYCSp Jf5rq5[}#-7S+(.*b$<T5C4g+逬)E5Fmh5u2DA.Q=:bD_Z6]^-zτZ9TQp:]8`–P ~'Er ii'׹!㫠:>\o.!Ksk+Α}Ոm#P5q@m_%t=X$ֻ%Y]&ca < T R jDz4gVHV4{ Y&2=Q,bџsѴ).-CCT /4P<*N0]6g%G[ p5&(crLXe4 )b۷Zfy PP3M[mBGm ]\xæ#1Y!rDF菑5 r0HY +W3iA -+?GResqK RSqCayʩnJgF e ׊7VhB΋?8u-^\ٛ1*,q!VJsgK0SIOOtOqZq;$fbKQ9z0LgZ W4CfWXjLDt^Wm'ʓH,nBwB"F1]VGgSY g P4ӟ<|ϖ g3#twiSkAW֝'kF;g)8}\*ij'>~mFy֏fM?T9R1i߶7i9Pg.Xwh Fsa#soV4IA7\WZu~$g:o) K\r!X5@s:1TÑuJȏ,J7U9s:#x:YoJFL͡:aa[%SQF tm6q6l/,oxy^u׫;)x9Q I ]8A5{-{%jzyHmg]K?XiNT'TEYtr]6&S(p#ΰ53_m.:$Ǘf{?c @u&9f2 S9!s "FX%l% ttjpg@Z;񓯂ŵ=]HJ,Ȕ&nbwldE'-VEƼ1rֶaPE#S0@H@q2K"=`s^ӳ1/ڏFދ* V48;٩DV|\Mik'RP~;Bq-}naiO~_]'}^Ͷ=^e]@ȗ塝YHˢ9s#D(UA'=={SKhpA`A{A9)ފ>3}6Ғ +A t%vD\7_yzB9)?<1ףicĜh^pʲƨl~\8ؽQ{zZL:f }u-}^1<֔p T3md}H[$y4f3_5h7ݹ;轪j\i$W#~~ӲCH/Sۊ7.CݽRv*QB\_raT$tXbGP %/w`PuҝՅ{ʑMM: cDѸRVYu"fR]\\[O,ż'Vl빀}U6_ 8mhFNKKB2ҹD}4Bo9?gOVS ~CvT.,"k\%ÿ җu:I [+r9Snr orD}I$UJps5nF_'*y(8 *GP25$䆪Hd?oK"Ks7.h%ti/"gC!9k*F,ЗDS_ 6W8ΖI(=lV>&0[ƨI} %Ժ!UX-riU\IP׶ȥgq|ƐKAlJI&>@R8 G$JBwy ZispH(+*utx!\ݿr=627qH$W1̘U|&p /RTry= 7)4Sn5hB&*'e}[Q3ΥwO\?""nO&r B3( eV ߩ!8NNR$!D hl9QF>)y[nqQ+ d U"C=AyY7ZEaiQ;fN}N1;tYg>B]*^LF.3:{Sq.萆%bJ2TOqY ipWCA(Ȅ|Z?BЇp0fȔv] U/V T*Hq]/=k#s?35@fx>D.mLCћM!gn^źj>U4MK=0=xoǒ3FZ7R 1J @9nSY^Dh{yRRux㙍l&eM&՘Y^S'PZhGs`?F"+(F66D35E4ٴtxW$dXw ?ePCERac E^-02&jQ\St4ŞdCcU}0~djRYm |O_K)ߓho 䝂5Lv$'8]vFn{ FjC1׹]>> W)$}RbL{]cϯ+ʴ}8 Nu]giI }-[[c31W*Ls7`X3 S'Xgلa(*f4Ul"0*h d6h]$  ݕ>1G tv"^ *kWYO@fCLh:ԑuUl"D"}j U |Fnͳ]uS @ (ۗM#G0)(t GS * suaKFޕ5"2]p}Z<ˆ_Ȃ*F$ !ذS; 7xFN.SF!FuPLɴY(B`!~smvίP6Q=Qۙޙ/G;< u. ڷ5$"_af"7W.4pCgT<@IYߜ' $3vz$8(Bc vɶY<}ha2ڐ_Bɩy+jkq%a 4W7Bo\4B! 9bC>3bPťPq(,j6(+$~qf;GF[Z0,~v ; q3`lVrVv}r}֜Bl?LE!7<;!}gOSP64Z-/a^hĢ4bu=ԚDBFf;&4Y[ s檞C% 'aJ(^:Ik&ArYcV]NG4TSuT*uDhiU(شU֡9 _ Dhr7Mjf/{Lڔ vjV *KOQ$ %٬ƺ.MDDyLU06 Pc)ޚ^B_5c=4W~7(;Y`U!T fµܓ& )ʦ= )bM}EȾȵSZC=*y*`NqԾ#$>QKPrb /"֝=Uǰrz95B|m@`%|egp 9T>*:k -:w6Hhu(J7iFMѪWo+zZ 8-rp4qO(KcD,uM!Ey2Kh& 7="`-O7F96RA .FG&5+9[# e|{ P\ 82M֟SӨńiJ';>y&tgvG/RD"-i3ۤ*> +hdMLp\/ùM;RMܲj)M v g,կyRiۦY(TѽMg'4ޛt=OC%26iWZ|9p&w./6qA-!C>*ݮ Uǔ4 Fħg'{h1hvF˚٩M6=%1oÝ(D 莺fI/DG%P oطZw6RXO{uG*Vb>12[չPbl _36A:iGdi8EFW ҷcn", V|zm3?y<4ɧH~"ժGdWb+HOP$V<2>KjyusAe= =6TF~f `<78jVZp3[v&X'Bs6?5oR%[ /J#QgT:f,=Lf* u`y[ƞ1x.O zw+E)Ul?F 3j f ny٠O~VNc"z4`1[Ex1ZDZzS`c&ڃ?J :`s@u-vX|HP=)qtcW'GF}'[ !185^>|X9q~ ŽDBWv|-<iѥjViUtgvے۔\3ԦoBz}x{c=U0e".V,Mlslߌ-7A$!0l9ҖcNm𨝻yϏZuY=i{Yv&Qʷ덈4-'%4=Πr2WVY\19ʜeBwnWe_*ܡDMU C"y!`sCdtV?౴<>[-daYՆS*9|c( [Z`8o5Ȗ+İ06Vr)9*Wh5Ā|:6f:~\ếS )RW8FZn^HMfI*ka p&.&Z2Kiۆ d'yw%lYWQM]Resv%t!TIȶjǸCA#m}͘?~} Ւg2W_[ P?e_1&SgDQ`hfX[a*)_E46Mg͉z$:4+7eb,P5Tɠe*BAvJ.v/) Q@A_\ncO zKsoj,TM I6K3cn2\"ϕ;Áu1Z!<+\P]*YFz[쉷l_-Oftw<ҘkL Ȱ2! shx,W}|?YM*E>xUpz,L(F8h8[@ͅw xJ@z.}׎A>92_!ZrH3f$./a 9/(3|E}>5a :}dAX54I&߸p7` j 9NZk:"eN!1ޖ?j{bkI7MhYPQ{X`̉HثjUo1?_oI oGsdϖfJuur](%Bq_4˜qy?h,S#=?mCB]>~rL^^O8;1QZT.))uT|zk!&2 AyBʨ(p}a|k-8b^6M׮h-SUGwx=aI AVmC3O&9Xd]0Ly5ivs+yN6M=-&)ku ׾VyCefOY{"l1 :(KB4BFʡr[`>% ppR_x*MPu>TmMfY8$NI7iBڋb? g5E),֥뿅@=QO$I Mq \JZFMs ԪHx׷|)F.pcD0/t=֦,qw6{.IÑ5ƈg{R>x)~W7Y{~+; yrPh,@h.EOz0YjϘ(Fhc1 2Ub޲Ԧ)J47`4B(zthn|"ZfK)h[V&D:(rM:Xr2z'udzKhr{oHf 5NJ;+v=MA@?s6~و,JV0\(;DeI.ꅴ务yq$gM| 8P)3$bMfu8x5{IdW1l4ZV8dCUzQ@YGIƼumz4^/m+Zxo>|GǶ-6Xf%12,Gڀ&NBHPh*KlxB5gRx!)e"4@ܚ-LC S3dc@3pMmy+O|{d)T4 k&MHP]H~cHuW{DWo ̿f:2F׆D&[wQKm u5=m(m)\5qfOgK"ٙNϒ|q%](3RMŀP؛yO q7Dk^+%?YWiwFt/ 1y[| * Z_{ L!$%(-Ȕ$1&EKߐ%)z@&=gA|&32tCdkeSg`]G`O $5 fAϥ3U*:jiBFҙPIS1UҲ+] .j$qU8aw*=_Jq{('^Ef=3_Ӷg!@FûmΞgnNnH]Au jdY9 }zs޳WP%ȧmBIPgz~Ӛ[/֢̿45.O1id ҎP kO.x&h: c9:AZ2|IO/*;ο,i=<y9̟?UU M*/Cʋ$UrDQNXzN9+;Eƾ0FAƠo4D9݌Uh)y>v}F$Ymb5Xѓ[#(~p&)@QEಹ!h/څV5G1if; " RS|]T+)iyڱ4WgLR:I߽K;` Pi_%S+8-f ; zinb1J/]U9S4+^Fq: vOBи)#-; ohFi@W WD`i]c^(F¨wnNZAƕuָ jDz6oNp:}cqT%#vm**-h6Q X6M+Z"} 1Qa6PӼ|4B\&gޥ~xUwȻ譃ohvu6aETT{[-Kx%گ kY|L4Tg\< ?W.Y>F\-,[ޠbnP2Njw /z i X^JיYM\B.DDXII֨1"8dDӝonXf@1P^%KKM@ t l'ȀSDks밴*$OMx`̪EGˉ.紌4~Ya{OX?l74~@ -Nӊ_t7AΧA;哿˰#miX_n7}YPY̓0*_83a 9&A_g0̂.B=t99'<*ˇ=s3=]ۍqY,1\CS3AH!iL"M?FzWȗHG+z6 M&Yz! Z!IC0"e8S&5h`賭 qUB!qD Ds>H2@~3ʺv+&dfw0P llXuS.Tq&SOiNy@ 77VjL>pU3r=XN(7Sȯz۱rՠF+yڰFʉqIc ԼaU]41կ LK5+N5-7~̹kÒ1.ZH?.Ry1w<hFywLUeyNN6 FmzF 7O{L}{N tdF+*^z E༻ԑ'+%Aq 5^jeY6jK|}Ūy9UY"5Zf~-VꈮFtevLITZH.[-0N*H:)ѤaڶG67'Hy,K-e>j)<@W{h$%E%By''mtYFʡ%S"!麱'uHayA 8s) nêV lmT_ƒF<Ɵ#'cy"k|&TIfuz.8KKv\/<9s=.\QvLd'_n"f݆!z"WG!7i; E X|6sxОʍλ5Aq+HcwnEm4+sn TSH U+Fjڝ: @qɓ`dnUiEsCIF?KcAsAсJ<6 0ߗV,X䨛#ōgO~:cqXȦ8]G5͇fܝҕN\5d>0;,tC\zPtpȪn_+ &âh҈, ;qC5a2 |a(:no67xH]Yt||% 6yy,'֎/:{x}\3XQAxk*a:oP?5L;zgq#<)9v5Wg#^ŋF"'K`I 0 Kwzpd[ÈCfIL`WͷBY|T_M phM?hc󝏣>zFǺМ?˧݄_D NN&͢mnicbN4du1rk?[NIK.&44XFI[oS n8{#BW9pYUg5WaOnܭrN}!@/Q `X ThM@_FKpKU 4hK>EcO*TJOlA y1Rt@s0x] ǧ=ǕEn'T doyVU9;K[ݑG2${7.[1}P< (o@'7xZ*s7~ 5w41}5EŶ=G9 *5L6yJzWS jz HZ}?iǬ#9,#ϵS*$,f~z~8ȧ]XgDpf#un:Ua#"0[(38hFR{W018JCHOpsNDIJ^#Ԫ}6(ER2Δ r}紗 ҫµ@z 5q@[ZDg]#0 2.ρ(wL^1<3 Q*OxX\9HJnxT@5;Oɢt0]^p,8ȮߩVf?MAkB(@7Un2I)WUnxsep;kDP]R-0|1GkSP#²b yPP~R&Qxv28^D,F0ܰKtWC֊URjy<_m$xfaU}hh" :0'%ą hV ܸ[?oF|L/KFK4s2φ1v.U $P'6)2+bsyН#d1e, =yM3 3| U $b3@r&o@/wd0c *s&I:;/#Ew潖?f { !@w \-g߈Ji}'uTQ1Hs$zވ̶f1]&n12`sZs?5kxPdN6}sA(Ud[z@X F$h^+k -T00*2#  J|3C)0 9n-|V̠awuHtjUg' exg w f]pLn!]١1{k"G,D!O+EꓮsL-] ԏ߷ .H@iZ6f N!ܯTW6Bs:J0 AWFg$Cr&£WӿŶ5&`ڨ%nhT 2x(nL)@3, τ3HZofl&,sZ I"wW N0`s!}g9R&;5SZͮY~)g%l5v(%QsՖѸ&ctYq37?ĕ[&}&g)0Tsțu h 3a\Lnc :#:ה`W%ec^ v6V BsS 1(fFVڥMcCwR;|n'Sf?4cDQΠhg+Qewyd]$L}!.A/HmRcsF\ؔ7Ie VT{l,uC6': b!~=DK!m>K GyT3/=Lx^I#kl e )ڸNt /x) ZGD4C YG j:R̨$SvY7+'u5gY4he3IO>/%jȄ[ɹ+⧡zԖE{.QJIaffu2P<V[۲hCUe#Y_ kM>Q,돫'la1UD͓oG{eG1+N8.=lI)R9$0X5Jh~L-^>2/ŧG{PU6;&d5xWzerrMfHFl^<Q:y.;m;uWWi]F4 L[\d(?mu.7P -rm{83azDdrdgXau40B,j,:yg bVLS| X*pDʄF.[OYF.9о Qp:ԛ2x|)ѳ줕LjoB/5KPNqǥz(ēð[&{wu23Țf(jS̢c F-)]sk qF C{_+=irXĂEIe.Xl/fj:]6nYKDg؅eY+[Q,on8.#Е9->N鵌sAbCe0~h^j .hfGC ?@퀗/I!o1z_wܢen!ѝ}K5qӽs~(Q7*9&m 2^!`#3 E;cג(wIE<-x64/mh{uK[{d{amnb٤@؃-H9)|)@:O NjXm{3'^KS嘠e)V-{ד ( /90e:礼'=<O8󸈎~p RWmzSbtNaA,/;hR~ (zhXݧflsEf' I1BoUKҋA^c hcƝ_S%Uȩ/+V6+gD &,u@4H^^ט遞T(u;{ZK]i`@?&&FP}9wQEiJǜY[9l|g%Zlu*:Χo_$fO車vtV5O]:D7!&T+Tq*L&qr}fױȌ{W&!d(J/\ђh构rS`YVuFbg&(ٜ Du5[ ?cyw~3+n> 1ɟ^ ط^r.ue(po-$uZl$vm=_C)GK-<ڽ3Zy[tEEbs(v@uy@G1Sf=8Shw8+ը eŢUQx1+xF[FcMgθ=X^\n\21yh(!$iLF?$@iC;vL<(=|$RQaSd$\a: \\DA.:"v˅}Pv)S LLkWB=c0qξYS|ļyq.o!Wnd4ccaԡ"/pyGl\ᰠe>7yᛜ_w΢nwdZXJF]1:4-i;J3R陒9 tTSZ < (-m9 /%\0J+ %74$}a/udj$:7Ї&<6/Vy͔ndK[ -xUK܅+]ץ}$1yPåVKԠM`Mp e{=4Ղdc8*VB}V,8XG|@ wGŶP81dAtq׮H5NjyR-GulNs[U _byǯX5jfQj% 'άlFn \^9ڿD'i,( v?; Lle'NH;"BKYؗ';Wu$TP-CW.lkHD ו|{ u_WvVA2%U&fED3Df%gj< :Gh09 6XS&&`| 2s$5x= ñx"2`inb'Z)תǺMrs3z!~ 񠽠yji3^wӴF1l:M$q鳵<}}FRfӥD a#H6MjεA tl8caTөb*̸:7 f w6IavY 8SP]5'ORM~ۀx}V 5Qo5~{,k snv?[Pho+Kk9]PaO}KZBA*r ,?Q_; 8C98d]ŌPew!k<֞3L#--ơP5]dZMWb~Ge} W;rp j˺;x9 E^U 6.eW|Ł߆3Sаoߋ28j`͡!D|n MVˑT6V֔k Nf>~wXIbܣ>,]iV(BF/ Ab3c-,HH#*I5 }'QJr``S7d XqhrD2Mn#x0oJe % {ꯛjŮDn@z:sjއk H6UM ~_"~Rv(WlDv|NWk}PE_R1"Lg"#P KhBTtutA ] ^BS*Zjy|fiar<,Gߧ9p)֚ #K5G:V ƴ\ͥUsYҍd~W=uᥥ+W%=Z ($V3 cbd?Yo Mc)b`mqo BWAsY"vaUZ|mOxFdTDrp# }C*A^>oC':}e ~}逽 -#N&[r`7`cb岍5g-EK#7|W@}޳CUni!$ m*~lAG+ܙ70P(q Jp}94)qKyֶY ݈G-h͆ oshI_o`%?nJg`Xwh[wh}Z2$p.SWDE+`(9oiCwM' wavDd,)y0+&0΢.w6/ (Au]-E0|P'Nڀ^>X茤" 1a΍Cwk,ȕ¯/!ٲl968v7`6IHRǯMEp T;`Ol1uBɷ&3. GS DUكXoA+n~9/6bYz3JtOQscpWC) t%D )>8,a 峽:@nhWq`6dL޽zCgPN۰ݷᒴh NofxkOGha$fUh@z=h7TKXqQ&4]2=!X +43iXЕVN^ yk Mm%v6D *?=3Stmű;7+L} aQ^pkΝ{Gs瑐.~LvM{Kd~{ ʹ4lj3]'ﻕp'Gp9R,Rf H> bvE<^Zd`^qYڙrXNI +}dY^9B"\IܣhK>pޫcE!"I]m3Ѕ BNVor__ʂ.B躶HWLl}({FeW.P2~˄yS2[@[7T?|s/hzʼ'bV}y85!4ǟϽN6PP%XI:p[,[Mi[)-哐 (W,!}M5gsL4|fX@ةBU.mP}F鶠 p w[.z˓#QK/BJ N/W@Isk <”>`;7(*bM]6/(Я=Ý 7.!㯳Lㇿ3nVV :sI1^pڻa)| &*[0m$֪ˀ*2haHnZ~dGE@lZ3vGޢ1mdC[Z䴍Ͱ[SVL({k, ')qf g1<$ģ}!ɪ&AU9W.#my0v=\F*ELho$Y9 )*IK`BaAE}6aYo>>@;(Ozs5w>!=\czu.Q߀E5ǰk7_χM.k<i7lv[#b/ߴT<&tá:$$UlR{#G[z$2Hŧ.9=Nwg6ޱU>!!kf45}JNS Bldl $t9Ԟ7\z.oZ(Gɟ/]'SVRv h3=~̕&,>H:U Usxr_5)Spo&; C&,^$%NP; pADeL'A׉Z75]4CyC"P9·21 Þ{ě;Ěvir=@&`) l0^ZávItC\n"; F߳,u|mL$q`2V2Xp42 )`S Vt0> XO2d< rdhN'[i]>hb ]O\z^S3-0:E9̏JE G#9f5}j4:#ɍ,mnk &AꑬXI*]伲$ԡ4Aa^X JadYR[/O?P2?,$\Q*qxW3Ò8tpMBgsBN1ձ* ԑI<?= /VC*8M*~Z&&g MMTkI w x%;wZpGALyUxٰe#WTҜ](p^jLPUV]ɸi3Ii}(~8(.Y\;k8: #^푸 4&(/-g|r˘LτF۫;;Wͧ}{߲7>`^e. R)|t gE 7I-4-`jwSj «9@N7jnQjxPd o?< Ɲ6z%#儭L^/zaVru>Ӧd Υċ%pj3*H][X(crvY_u|͎p&ֵⶏVo737O܎  k 3*ސz듒ׂO8Iӕ:#4diP(au ]1{N o7?jk'?BUΒ[ *9s<'$l Vax8X/;7x$wm~!mJ yl&H u/5ljH~abEY266G@3z%zO9C| GQXkl^$2&895j]~&i֏{䊱wwNͶxm&TnbuVew׍dlӊ^wpth8Stn;hDg hh39:`zF!z+^U5ɿaf8׍fIOXkbU}mT0q'?$wcs=&ʔ{3R"uHh [5=CE?8yHک ĵ0DVQU@툜EyڟF▒|*+˂wu=+Oi|t'WGV=1Oz5iZ44qBflȬtuX͎-]H5;s&.:4;B}xr%Hlָd(eGT܏  3;HZ-oCTޒEӱ/A <IEZt;eQ Vs6`E44P;~ Q&~(@+ѤջUX(XAVʒMY LN"5{*gM}A`>8s ? i=ON4LUX+~ԇ k 4+` KHp/ªفFԪ҈[#E7z0HJC&0dEIMMtS%iE|ļ فw8IaiYƂwJλ`MTi[PpH;We0QWȇmNFc1-Xfb2P\3^ײeBp#٣AJ,D.pWppOpGRBe҇J9ʃ[RV7mf17:@L2%Iq)8oD,D1%a ?{}F?8mG8WM:滶QZJS>L_@b&UD .c<,*(4KƄ;^ Z M+b-~* oc-`r_os#j:Z\myㅸ rf ,kU,B29F"ltE8;䎲mf"3,ቄ WQ.Pk,ta K\+|[СY:02u )l1A5nEKB'/W@TԒ8: wTr-LYn&wׯ|g(ݷfxřG 6SNVXpiqԏ4ǀf&HO{K{{>㍷4ի=22ܾ}\:sPmdQsx)u_'cفd7L̈m04 nE;L[QA86b0RWֳDmmuH7탴 7{]ƚfx[Kc&f] ;Δ0j֯XJ{= w1QR-*Vw "$Й䟀|-trݎZ/OZG_[^5򑵛gQ#͇u`XdN;157vwHH7ȓK_Ā\aK#eKq}һC`W"|'Pn^I%}A1530zʀc$NBCZWbYwOl8U"ua@X-?"Qͱ\Bi w+`Wј8gwFt-ۓfPx0 X>J\k~vJ&v)ߞc%?ECR u5˟i1u Dld 1N<TbE`DS$.ohQE*J[{{^)de%!҂q]Y1P6d$X['r@\R֑zowzb 1W)0|{x' /"IMӽ-V?咱/.1\p.gM ø*ӅbҙW%la$Iln %1tsXN4ti)(ζ4*"#]\3;^UO5 ~"ij!jZo+{ͪJfٌ"[?A|/n[?\KV FpVTL3ȯO|՘${)|#Y\3a  KˤȀ~BFkn7 փ;Øwb; ONb/1Ly-+z>8w\61GDJ"ohA-CÔ97Y-~cOG ;rxk} [oݮ4[81s"r5_H'ivu#00<8.fZmV\d`uSeEa'/Wwh}Uz]"ɞ+LW(IꖎL_vǩh~fT&3}adhܙ$#Vp!xy*ӗl"C] o81R~`7Brg]Xx5VQ }77Nks$-n/2)\3AWVs(`_=IFo9[],VUzg9Gڲ Q;A@TW+ `WkׅoM(_|aEijap] )(DTxCkeO=B|81嬜t<^q{Uf:P {^(j1W֬Bm:=,X㮼5(jVB/ 9hvvz b3ŹibYVwjH?f”3ݝoϛހyDU٠^oyvMݵgbf0 ?*\g#SsmA&wc;/\>Zu)ց =eɣZ(wЋ31jws/Bfզ Fl=H$BCP(c8/RdA#S=J2Ȼu O]"'_x1 GՆ%2% g}Gbyz׭-T=j'8iT߀Z?/XGOB7,!(!SxgÕڡvWvwoaW\[8arJS=RN؂(Sí䬑{O%Kd+A3ˊ7Y{'L9qg?=XTvf}A?7d8|Cb0]ndnCK[dfS {,XvA1,!<&zC\Jx 8NFƈOwb@!$hF /n5{DwY;hJ3E>'+Ó/\,xW|58ۙ{>*-?תpK TR4? = Aӄ1ܸEoMY$w1LSC*$P9b$pgiʮG/K\xoV`iS{z),~x)fCESV/9ߎX!lvJ=5}f&[H)uAh,YpUQvh`#-c]$pvl&N'gє*<1a( ej $ ]~mU1T 冁Ndo,Ϩl鈽"& MA;X 20KQIl'$, ikߨl.Ly-I?Xȸm#S/i ekO^tn'cڤ_@tٲ"u ƕMh42q+5 ;)M` ΞS]K&@q -m=9 ei Ks}&V$<) BƦL.Y$]O\P㦿h (̈Gg2\۰ yTѣc}CVlS }}iDϺ+0av~;r٢Sip8 1p45En uynj``RQ>' t,>B#V hk8*L]ll3G{9*)9/%mj6F1|]t)=i \r|waVI`_}Uk9-J-5 IB_?,s[|oCŠX3y5Zb32@q] ~zm!z )#=cet9#v::닒J.DKFT9ӼcB/ 0!כ5V =Yf+vaq 1`KvU~<&촻ulWAI쟵ks\TCNxPc\$xu.R,zLreR FtWYj¸k!N+Y..$#,Rߎ+!#ų)Lz`Sh"cת񞦄Nޔ^7)aEG(_1h12JTZ$Br4*Kzk0E rLlo2%ԥ^.UfMN1P=S;CYF2ⵠC,ݸ逌˺D.tP엾gM(fce; }o_5qZ/^j^y2;OqqѮ_͹)RzݼYq1KMxa?G|Ncxp+I3R~g [~p*R$CI[Yg cr1C&C(GRCyѭ ׻y[l<ߝ352-E]CZ+F)Pe'낫2˄&l](I˽×L~ (R^/#SyU$ĘIAW}`Ak u}*j 2Ԙ@ `z-com׊ ,>DS|8mt[ ~ovXa@РGM:Z{PUݥ)Svtܦvz'i nctMUX94QjE"ץFlp8BrPE yjЎ[b`e!>rx Ol+bѩӔYo& QO]EnEZ7510`0.[8'VJ q$1BUjabtkdDnxa>F3K5Tۻeo*gv!y"*&ե(pvNke OTykH729o3Y6j! ˅` Bb'8r~}+4]6 e\XldӮ7~{I0$br6v@sI5\ tU-3juPЋ CB"(2HS0;sʠg>$24칅|Q!JoUɴߡI&>ǥ0*sڬ'1pԛcY$-LV!%8~)7"WVc~j.1ئk}2Z)41^]St; -\3Е:h󭄛tI=wPGPY|4ɿs78t1gY8Nbf{7{ I+_Ns*Wn>z+KR^IyRۀ7@Ѿ:J3;xkpeٺk~ES1^1Q u,r<ڝwtJh|MXE31%>Egw=G?r]Wv拁S/t&eH h8" Plhc}>y^™Mn?f' D"[(|&Z1ҫ~fD ,J,(`1;,_Zp 3$Ol_3LѠ,24tI83 V>e.`R Dii%qVȚ{@Jq~aQ֝G~t9pPy>1V|%&3CBI|lYchΏ= Cu IzC(vsZ[n]QFԱ f-z**'ثTAyI&,ȐLy8û.R}Wrw#ET%VvnI i1fC)yjG+bwфeUk)Ab,KmEނ=!-thx>ugޅ GʢAkPғ ۵rlby!XR>]~bQGֶh0i#n~>ZvBN70I 4=`=Z1vr3]jZ8ʼ՝RvLsHMM"{r?A%ˣBR ,{ofėmױC]McB([B2wl~kξNT@JڭA"CD 19 x0&ѫf_Jd剡v+߯82m(B`6y^]Otq۔wB½,[zP<ԡh }]U=0=>&O:w/_̙qCqu!jqSe|m(Y+H&ݹa_cGOB?^\32*A3`Vczg}}\ru n_*@HxtVRaی8u|eyF&KZd?|I3pʨ9!$x7?pEAEnG1mIY@eMħq7ྴ}˫8¿ǝkv4E"β 7ecVRJv"F00cup,iTnj)+je4Br ,7gWj)JvYm3#UT׉ Rl{ /s>Lo&^l`m_CnClZS?Hܼl$ jı@(DyGa0!9Y֢*oɢY7 Ai&2Vg=2ρF})7q9PZ̹`Ssl77ֱG yVۊV|.&f)z-#vU`6մ)$GטwVEITq뙨_2SR~ͧiڴ[2CmMKwhjh jq%B)#XB;r ,4O䘅N{jVX-`/5GQ[e(ӎ313ʾ;qKY(9_pFd"k3dp*FHM*8Pʷ>y{4$JfVEBarfC OϘġ΃f!֦+DhK#V`Ds[kwaw) "@CSVZU_H Q^n9Zjh8f@l.1P/TbEBk|@kjH8ǭlkX ~VLL#Ue:a󝮰D-Ļu$#܊ND*ZHLOm{GW?%$rj0k^QD7NϞ3my+XN ?*\ZM?>yV&JJ`{eNPW$DcÆB:!܄*1B7P΋ӯ/\F) KȨ!xnL& MRJuuC|a~{]2LS Vo pF}xNu>FJݭ7Y|g#sw; O5NԎKnٷl[UW ((AKbR0+?ey~.gur?Η.*xtZ"7r] ͩ} e?)(R&/%Db*n>P bۤI$Uqe2v*T/wYo칝*tg""!~beF1r[ٵl(ǏoA2]a;@YP" )cS%S'嫏`mӜ?3I]Pa ō31Hવ">2_ @5'ZJyI6kH vűape]lb߹)W8,Fa|b|SY}+;b ZeyOI/^7mNkXQi}=vc!aiU\j#Np.-3~~e6 `c\Q1}зOGX  ɼp<0BH8U RH j3>- V&.DOSk0#%.KXCTQwX?Àˆm8L7ܪfC\.-@ZؐelsK3 .WMm&ũƊ2@{j+%e7}! 6%X1i`= 趀 7'Bmoe`zZb^oIN\@;tJV)P&cC#v:U3<C |Hi-j+@yzM~*yΓz+7Aֽf_ƐJbW2Ϥد=z~_S֋z2[Z"iS`w_k52g6 cc(9"mE C;Owh9)~$`b@yU:,=['CNsfC䩚5ȕ}MLK69]GhKU Hğ-]y=R=˰t–!Sۆ%яSad942hM=L K3ÃZy)|%Ѥ]](p&=ph2 JIgTW"S_: Yej+ȸX4daEΞ_cD3[\i?ѳxA@(T ^hO[dתdml(d^W" Ao lm+]6{?& EOKk+Ytس X>PS78TpĒZ]:hZuvvrn[rݴ:伟L5IX @&n!P{%1VE[j\]A# b֪<%5uWu|9yQ#X!|Cc-9Pm?@8f\ġZ۵6&s_I0oL60F/iIQO#7FN wJ19H/B, ceR=Ҟ?vUћ]q3MMkg!)-1v64Gh``WoQ}en q49[_/U@%vVhu%u?"`} wZР2) U[LؼO'r';:|RY ɹP^j|3 "x̐c /u [&A{OGA5Z5,*_aFzJ]aӻtF]e\+d'c,!KKeIQ[ e7dlKdo#\3f- S{ o%GJ& U_3vW>O[2=:56!'9X\q5\^b3LW6h(R;O\wvIV*^ꅮi <޷[VCHG7CKВa5R^PNm']lHHN Rhɠ/05nZra8;w ;P}WZWo43VJޱnKecrN4Qw飗mE\ za {ɥ`g{1=(`Z P=ݟWxzIFQ:llv'vT0OX_C٦ )I{c3>gvوRNupnz#' U# `?"#2/.~Eǂ,1 Sj(QD 3;_5򏑲y0%P]@=C*|zD[0 GM{'LMBX)dъW7o옕@|Kuz ٭2BVwEY9+q0n%5}JT9<ڃ zj:}4V 9nt( Ŝ@/eKhʍIḴż 5YgJ`@.;a?'.$l$}f|ځ"qGYZӢDdZԑiMߟw1s` "=MW8|w]rQ_+^倛Tk/MRo%f86Tirx?hȮZg(+C:q𡌣\3H s5F`AgKEЬY}`}PߤJ "]޴md,`\Vd$X)8"oll1"/fۂX7؏E.Å]].vfNJ5=L/IwLpN+K==,:a*.U3c5ןw*ʞqI^d>+tjkAe ]#qIB] []`TRY>+ v/(憂EgX@/q0xvNDZj"Yni_L 'K1- i']xȓ:NU@Ķ>kGgYC1Mx룉2,VqE5j$>ӊf\6.Fz%Eٻx}e"7"J`1r+K'/:ik`h)Ph$=XӲA{ V'y9~h`$2iP`O c:[^70l afB+nݭk)4e\ͽoiw9tޠbĮ!r4]tQ*8s̯З:}}TG "_Ng4q3`+sV(-1Mt \w7=ZM[76N(>+S$"2![{5.mxc2~YVTivmGqёM#csè2c!Ȳp֟cd%~Pj;Z+bXϸegoeMKqn7UynЌET!h9}kLUa3$hu).Eӏw?jsV`~6xtHg0dE쪮(v-SQv}A6R 5 od96U"ԯ†lި~r; ;%DluySٰL*B~<累}8&ĺ:.%}|pT1ҷmTBf9@sB;2ޢga=]"١8{7v4-_z96Ƈżt"#hA2VK!L=X?j?TJSURzrVYHx&.j$nicFMCJ`@6 W]c>F*T/}ap6 #'}8>e~ܲo8E<[|Z@,1^+*j n]ʌu <-sT.Xa(F&Bmib 0םk {HiR̯-Z%'g&- B,uF驁 MqAk]Dr.8"Cʉ+:8 ζ+8*_adRʓ`AI*xH?NuMpF)paMYWX-U{\n/ g l)#vjCe(g&{DvT"EY.ѝ@0qfG+W]Lf>W^ϛo9 V`.:SC̵u$?mpwΠ U(}@PFfԛdG*"dC}K;r!x^L++'^ Ig.%߉@a!>:j6p9>ɬ DSr\lKxs(; :y:QIpNȞ>`?S4]r:!@(<y#rO(iap (c4`&ld7Gd@\ViY'G .O$hc1~łc"Jr@3Cw.g)0? <&2gH 1K#$\5M87Ԗ!"` >nJn J,7%PL)?MF= "@3$t-1ޙ{fsU ֐t݀JOԩay1_6?ޚPJ$7 r5(]|v#u'[F扛N;0-:ᖟVz8ee1,H1OpN`z).gƾ fI>a HKPItDdA"b:^#;DA&OQHNLܦ ߌ!eB4!g3wA .8G{QI8#ߴE[F;lL9l0gUX}.}5#tjj 9',=!˾J23`<1B2I8_ 6VA2Xf ^`hhh f 0_G)iyq}- <e\%^\½Lv+ki k8l"2sd%F(b6fg"19+C^A3I32rRb<2SXޏ#i\*"i3%sbg'"Rl6ݤ& >#3īN9G{ "!b%ui0=#qAYI/nj}W(H[2irUw^vhщ%{'**Dat{q$n:zf[EAf?!a٫:a oG rp;eN$[Yj63RMH,:ON&凊֓8qbeDXRKPzW}pJE:c/vh![WfHEƀP%LU:=nqSh(&3>Fƹ2qR&yTKΌ\Bv 5GSB~w۩O|:*ڙb[ UpvW4~)oI8ԩ7>Jhw(2w^i.X( ;РL! fԛ$ں((ÄΞ\ W'u?*EA$ vr)ЧsYN} fyڬ8[, 7 0R7^j[vr)?,<;XR]#@d 5&>Jw1BQWsiB23F)WlS`oF#$F%5NDLiՂ8/jyΧ1S3pD(8o yO=\vޕsHUSePw7Bl7٫粨NF\G> 6s =S{diD][<lQ DdϜJ9kbg17"y[vcm~Y|G ŘO~kZ@$ǣNU >mCP?!p7;v!L"yu`!sNQG $FpsoÏдU]M TQ y rLB>nu)a2RwAocw  "#I1 нd$sV2Ӷ"&Y9dW֏:{ IrRROm*'ї[貗ع޷eGP\&nK@ŠXl$35:6D+܈b5dds p4;H4( (tHVjaeMI9؇ /c+=_ˎnFC iμAm\fZ>4;V;UKof5Ԡ!۟rPNEfwJ4R6'8a1sjQ~ц4ٌCd ոpP><Q5nBv-'@"TzyPkVQєey/HU i'/yOQ|-ÚAVJ~uۏ^u$ 8rIù\n9.\Cete/ËK i>@]cN;1`.)Wyr_Zk%fPGsȹ|e}|0S}8Eh5EspV@?ݪ ջ/.ѻ6k鰽h,I@8M3WR4B{goI(pE\*+8ӳ)h,_εҁ/cu =HO/IF=JX3*x:]`Jt|9fXV/|:7{PۺktW_|1mYIM[`h.!дq'3LnyVi'wO6Ś B 9>c%c%/v B:<-e6I>m$RA}j n$sK|g;Mc~R"rEbj%zLj@&)&+뎐V<ю|Z{OqևBT][9a_E,@J |Z5?ޣQfmg 89(>jמ7`SFjp k󸌖r#l 8t,!;k9z*|irm>+>b~*]BM!֫Jp]4- * Z ĨB¥auc)(, 9bYUI95Њ$pO!&(0%-9N/ykWXt_Wy<ϱ[t 'G'7DŽўiڭP ĝhq뇗t:D%@7AwZa5ianY E+'7du-Ker;jv,%edTq%JM 3&qMun&*t .چ; "@G lZmu4Jۡ4f'KDFIT*0䬺ٿCAcn`2̟&& A$m.y66wpA5v QK/gAବ' CFV*Z oj-*%#wl(Ddݝ/j'M @I[liDebg@{(ܶaM.lHcIR-̊3:3os(J+OFW^* 1JjEU3qsxPlszJ_cS҆$0~1`'*vEo%%xD!S8Bi"{_+%a:WhM@] 9T$JZWn#d9PC]`u:"R YTeSOOUslN!" c̶d,YRA=H.> D$]nNw[#V9뚚+ 1FOL5^iK3A|DOf^?γ[cu' | e464#,d 4AU_ĚIY"v\nF(3okLsRtlDDA;Tt1T@ z3aêfkd6׭_ ,hVZ.MZZC TVrR_\[ri`WlЙrv#G: $Ǧ`QJoT.0/eSޕ%G4^}LVY?إ箍v q˨EO$ko=z$hh*!EТTҾCBqM:l+vXnomQ6*2PX_E'ע~A6#2E'}f~_{n!EQ-ť+CTabqg/+F!bn~ Z+ FB!°4OkM \ 'Y9#LǐAOGde}goNq'vd\߷a?ظպhꮢopfHIo's1Zʁ$Qq-q!Vj q._a6ŻV*xLw[EXT!e vvX<[ӿ=i83ΟCNsWv+F؁4#0%ǣVM/W-һE*4] U@$'͍<Լާ"? g`}İɛeه K\G"MKߕF9 I:Xi҉/RۗA A,`4ߥRśZvbLxӟKd]`9.N2^Ӫ4D9bMt}]EY|(M 6-? 3-grb<˙=*ߢW_CY] oh^r0EV` esҩ, WQ 8lŘ`ATF>NR?-KkP8ؿ^0M " \V7tˈL#FJso_dw!E \_8%jo*C ~bO#u 9mm_ʚ1]ZrnQ;Y %民/ -5ΣqQ!AÆst*KDu|(MVQoK}~RfpEYA> qPdB8FAop ?&!J;)i|!0,$+Be$H 4?i1@CҽmƽOEAq[` ['Χ"N6d%uWJ)(2KU'ٱU7o37nbl5Rj L#J5焓魋"/v'*m]^V1$VU2I=8_q`92- pTG7JOGe`~R[?kEvRܬ&f߼Ey#Wt&Γ&.XJ Y;fwgݬCP-tzaWq8+hbkya72̍CjMϣ "D#]YՎ wm]eMIb0 }~B>!.9UqՉؤŢ _-&Ju]&`-bVQgi;?>}79#O|N͟uf]{ʭ+ 55;X˯bB#q=Ec2u<G8!y\)-X,<1 %OL&ג5JSidN]qȔtktKl >ٌ%_ѓ H VR*3rH˷ C8hp٭>? Zp"4ar؞ԎL7b4O}q%'Sj0:4u$2pfZFf`+L޹v)_"U | )$Zʝ{bWN4W^|VB]b$ 9bg_a;1&eK< ]4NP boSe%5R\3:jG?4>A3/C/&~ 7᫄3kcߙ6.8KEB鿎rmvn`~YES8ȝE&[(,7t"nkpg6Aӑ,82h37V)VBUDS$LV÷Rdl}5(<{z'q M=ۧiaaQͼ4($./A@&\x ^ZZ4W< ml sJ0A ѷ8SH>n(c8ZÉ y@%[zNd E^֩<}+=383 3k= l:Lz\O ƣgFo>X7'ټlzIW\;uZ^'6&ܜ)p\rFi*K[Rm#cV.286¸$iTW@"F m\t3Ep_imw;Jr#[z_?<8l9VRxu[p*jY!Px|Q#d [uHhf&j6"Z⹐$C1Vh[V|ً(÷~OV  َW &z*o=ܻx٬dXf%,b ~!k-/qwn\>zٱAu2+Cڻ`>8cW+|cQP3ƹ?:3^Λ$<^ZD]yb~3y:p& thR ɍR#y5L E7>cvq,H%pm ˡH3hy׿OPjVUȕ2mndhM#-Su~NkJk cד[Gd(Jo- Pɛ5.LJD;:7.kZ5+#gԵDH!Su]*ˆ}sվ؏G r hM}*\bHn_7Fi-n+G4 8[W_o4}J(suopMh?f=p3{鉾:il͌WѽDjYfƙyq*W٩qT0V%(ƶ4|Sj7g; 6tTS`&^ccO%g>0XҮB9#er:TDtʛ>Rz#ŮB~[=-f96 F[R2 nu5pRA<4~)#SNxJjȧQK-~fy\A~lMP8A6w oa,QV﷟`M=t]= ݄rE_-=-CAeFw lmʾ@X7!\u U+;A9V˷ Q$1CT^#& WemYf> ji BPTd]o_d6됗0S۸pV -@"6УļK-km*%=igOM.dN#=IB`s\zx+I pLKfGrE]#3?䲤Ԗ9ĄL^p9丁E!-Ő;!ϟHkjWZF8em=V?"qBmPW%EbF.-+$1+J<"_q4@d: k6g|}b:/Ux1O&V6 4O5h{R4А`wCNNg6ɘJ[$\n^[UĹ?@w?¸ƼXeA2](gO!"Pyq}|.r'{3lsS _ 7Ikē@7~g%o^Ixˈ@1~Go*I;tyr|`_ e|Zׅ5 zD{v9O@+דܶߴ4'~@]e G"2({QeҽrwMn@T Z_"A.:}Ġ`~d=#"ʈ`a:[RxyzH,GpN]& ӣC@@4(X>(_2}V6TWG0Ҁ#$\ȷXB4Z X>_iAEp%l6 LX*53fyb"щ{DI4W kK|@6h/j`x_ӵ-‰묮vkgȋys3՘lɎ59/ƥ܌W%ZɼݗKQso@R9Vۙ7V JS gA4ځw;{m.B?L}ƆV}W01{gS-JwoPf9_#Κpȗazqoa0e±y>{㦮[#wWlHVY`/H!}o*vTX']ŎE&;'IOP5R=o< l9J3 `sE͐}u KC !S#7n6G#oJ{cR-tYNQ.[SPqitf0D Dmľlz>@ZӒ\-086f#!]{H(0+Amk" ɿz'`LWD \'}a i捞7xKe"Blrsd g`GI=Քޏb2}_Kͧv1d}UFV+VȎ+]˧Ϭ_u5Zxh*VxHL^!a!I6r+x\@e̸RP~F,"טVHir;к]k(N qTbq)T#Y{Ch4'i*%)`~h.#`IA1HU9Km@\ ?EhBhMmbX7A >]ܸ~pbˈG(qy 1`oNDhf38$VhH53 Q{/%gUCF%zlI!ȓ>i_6Q 033АlMpAr5bbh- 5sgpQ"eK$cl*f5{f_vx.GZ ZJNићYܿ!pB1Ɵ^f8DzQEr_TpVWΑ\xN}k>ĨTuC/#.94GIT?]Je?x5Y?sU$=4Q'Rpk:StP˯(I揼<{t޵(*iR )D=%5'ѻ/EΦ,.SMv1!Ts q(_'tOTx/y/fMz\d1DwŮwW.?F+"*)q/@Œ񋤢'‘Ab^_{'.|<If nࢭڶvoy([SDi{g5عl0 !}]#ɛnud&$wA~K)8ƙF]E̯&ɥhj|4Xn>C1N F{|#gw8!lPP6JiN>PgpeFS*$ i0Q|PJ~2{r%?SxRĒF]@xI!^CB b-*cm }7|!nk8q~T%^=Ŋ)4{l6xPpG˗mlCA@2"""|OM;rжmW9fqq) Y O%3h?L{E O;Pؼ]ď3On +\dj[+q~ GyGW*2AҸFN^K1.qj1Н~-Ҵ!( 1|<*vK}KZO~]7d&ZADj>тآPY 0qGEkgTkDN4^zz\4I+3I<|Oos1[O:`kC*/<K xQ|'F,lIto㐾rfB:;'}kr|olڟvrm}/\@oNڱC@ZS;TkX:z]dSm\`P~t@܊dDT%I]+/8XgmM=Κ"v`,>_#?+A"I2SuJܻv7+[Q]xp^" r)uĤoØ+QK7]sw\C?I,#I㖶H=-za9M+CMC5hEhr" ٗ3A}XbVEFY!q@ ,OiH[9*0/Ȟ_7ۑDvvM[jn]6#MO;ZBHk4{0=}T8$`WK҅ThYWE_u -tav'ob|UwWնbפ$ o>qAx}!)YCoyӏQėZfNTbL(=\#U9Abw/6z8dMB*O@!Ӏ?g@AuYTlWȰ:P[]bEC+4!H}kgw9A!0m9&t}Gn`$iw^;7*ia׫B8}Ii RO[k!i)I;t]=`A)yu~NmͲaNY%6߂{ 0RޑDͮefNJlkq@? _ ] vze#6FZ;7vZ@ɰ3:Pcru+0ULh6 'Rij(S0aNUdO;!j8;:&=ɝv<**DI)QgxROb_qC!?7urVu eErŦo~gh1i fxHtn[>#OtlC?mŋ`}l;]Xc'ߎA7X$SsK/ \ (v r&$;Ϻ ŪPĒ E}]d>/0[P4^~K4Kce͝m3AZv^vgN` !y E`ί/:"wgh5(!Dek{(tq{ {=whﵠi\&lb D]/D5 9{^k } 0>0X^B/Ϥ;Rӫ- 9]kff0`7SH,C:P9ڛr=$3ōtt!*yxP;iȤ8.7[B%mIeO=4)[_hiokd'ۅ4J4TO)=Ds) ?rԁ5^@l0 RXe7,[Ӵ>"P;kkoıǴᚼ7ӯ{B0䛻-,g%[^kL 6 86pbͶ *xI'ш(ՃkK >8qSS ~їXw+*{Ы&Y~owlϣ]`Pͩ iA=Zcu!4y:h6j)6>FqOA< ?09H@Q}06><߈\645)WɲE' ]]10AxdӲ(8+n<[닪(Z" IopM `hߵCĊf&˸ Џ!IvgbB˱;.w]yݿTQ&i%ĥ}f.e̶j2jm56C5)U[?Pƞrۉ`A2qFj)o塚լ¥gȬhR9)p6 zvIa`C%{`{h}*8ܣ h۲7Vcc tp]35E6#KCOȝCf ,N{iYsgv<TzSIʁ0nF7+>0|2@-Ƴ1RgyIk">Z=|h$xsr]"Bр_ q,QYjJXm(I+u8&^Y`CR }yyڎ@ҋ*\Dd3鈌FKŹ;+{G ŝj+H ^@'iFLIql,9۰L4OwK omLx݄ҒtJw7x׻\' sAhBu堏U#jFFBTc'$iA}ڼ2=zYRX~ RtbȤ]Qw}a~SehKgDGk~T4V-C[pF>e&-Vxz wɬ,#ډuނ80_a !G[0GQ1ȓQ 7]9)2µL ƺ!2b.#zvU[&&<]uF_u,=ø_4pIK{1b^_Ow Θ:'iS\;^U*^26½欇eY dc/ 1^dZ髋_1O{{f@Zhk4@Ux3M3ػa/7.axQx*ys0-F)[C}$ATk7D/ݾЎCŀ`MxWi2#-M+̴lRKc\'=B^Eh*K;E[|Nt#9|:I$d=w K¿fe 62x~5$gpF;"N~k7jH^ bF6 W|\%uW0َhfXgPtyʘxcHPq<WƘGtxY]ޚ5cC 9|* m̽6+HE xlycܮ%Q@i3l ԷPMm jkGU3C#eb /#屦GqN3&p~HLW.%S/8(wPWڵ>Tҙm@=5 mou ثZ(ݮiotKq&pl.2qh{ ma A@MWPW)b piΞ j-^ߘ&pzV$DrTŎ[ }ɭ_lvo#U<;^RD Wbed+7hʺ]|)徕rT#Z0#eNSmoZf$:+oYpTk/yE*bGFqhl&:&c㭖,+%[ f?"g3 EeBud5Tq:zFod5 ۉ uOtr{@e0/]~'$g1̀F|RMu 03/GeܗjX8C#৑߹ńha<(Ƣ!4qck GcQ, =s(v$ kW.T=2u c9s"%11 .fUoNܽ,< CCW -2|$7QWǗ+8Y?Xqlmc?ҴhzjlaY{׸l 3R3K+2.c\ e>s_RKNNJ)Ey)[$gUfN`P Ul )GloCa&Njm}iE,mĶOم14} ń1C۵I9+YYqןL{Q}pbob*jwpCB7##՛R;cQm+\%Bw^9#Y?G_7#0[U'\%yt!"/Qvچ*J lM|AB3/]ȩP4`5&쳴_LE#Ri9ɠ5+:>Kxy=ۍat~@ 6DgH5H>1*Cmˀxa|U~um.lSuō},8AtL@EV4._dlFne#Kv=0N^ňo 3ڠQ%e@pWwTڋ5ч,Qʛ3,[&SV}\{"{ 1Hzc<:D1m rQu_2d^MB1«^jz 4U{Zj;9QEi X` Ї}SG䛭) Vb0l85荠rUcS$e| ]2c|?*YF 9=l7K&`,9I+Y!7)ӯЗ;1d1DÙ7tVBcν)N-aVl-~Eu~,J3Z>"`U}b%umv'HM,N3W*$ zZ5rT?cO9*o\\yJvrD_r |H7UYvy0%RDk w{=wվ&Ϣ+s,*~/MA͔5/h.63b#2cIѾcrL =]=Oy\)J`8VOZr8uPD0;\v 0Ox&ߔR<_ne_c_qCW|_ {_?%al2X|JqS6_~WH0M gFGyRuX=]bđ.}sb\@a4-k5 ~)# J0_cϒ'm^橓 Ė:7fXsSʏ٥sʣ\>cB3}ޑ%kfU@$*wvY$$_KGW K䁦?5 OwLDP_HNO(R Yv,pImWre_:2gv?,A׆̦7VPz󹘖JpMm+}C^>)הCZ\/хSe/l)z"\bZ E7a VcR56jxՁƜÄؐC-lp)táBԴ7Q$z0UH\yD:$!6gL3vwʠ dSIsMȵ?U̱3F̲IEgxcys}' =z ;{ƊX[*f3$<54#)=I2]o0Ɲ(xolO$ߏATa6UW׸u<(N(?'LIQΒ>^( Kzv ٟRÌec! dDCq,[̍@*Ji"S:$,.5K^p91 |r^h NEsa*!WssKb3fu8F@C̰;Yމ8CW怉Ώ-ET3\)rLzz> ;zlI2Fz9SUg䥰/ybQ)q?w!_ uh#Uj䡭"9'[y sI~o'ڗuuYJGyKF+=VEȴ1 A%ƶP.72Mh^(LcmZ=ub˞~ wy'*_;R eS٫j4lҿD Y7INppĵ/u:{ 7bZW?^*|5aV?9^>,V|A.`ڻٹ,8C?HjqmAd Kl s.Y`-|K3} '#LPk#dӅ%Q&imꮻ4DR&`լP'IjĶUY8.˦mCGn!}!x4KVTjC` >:̀ ҵ7GZU,ZI|_e{xA?X){AYD;\x L(aOU+,1G2Awأ[߭YfM(w_&Akŏ 2g:Ta.awDTp28ŵlBa&XR]Sab3wK$G)a;߄b \z3a6F-XeoW/NRw@X*qpUhhVmx$ XkDJLiVRdbրiryŤ,~gaj7𥨅s64w[FA~ϽOJ3 u<1<.tϑJ 0ܘ 0RRxwW^=RFf%(FXbF9nI??EF \ +,bx!#""7ԍCn;VlI]Fԫn_hpr b L !gA٩bڶXpS7+0aWŀ_aD}dYݸyu΂3=XCG8W Fkr!CT7Y$:(AqR}S=ϖRr ]JuqVxyMoIO0΅+fxJ"C\|2 S3 t)rՕqLkV(EP1uφcbjW/?qC9Pv;UU7]BcIZ^=/97mDz2 $&Q qsz/e«}G,Ʌ~jm6RdCҺ RbeNV" 1-*DCC?b]%CxHJK VhP"ܾ0=nK[ANBo/ƬžFkm6Z0:XKʹvOm΀'"qRUup|ܺ d[ oml(kրaªv" ύd1 ʬ-b"4Z[;@:+fU"&5~lwm LEw%# (|X ľ<ɇ ?47G&Qfތ9ut'iANp^0K{ׯwTG1Ϛ<ނx{cK$ *) Qد5lBIp- _iX i>$ӧMpo~\`Mx[1-Չnb;Ҫ["5L3~MsbeNYsw@Nbayt, w-aM:Z[Å7}bahGYNJSAc|aoP-x솃bׁKc@T6/XZ]yIki|id Fm=seٞW/D{]{E(V(X> ORs~d,Y&IE֢ISR5<NN N|~y}]it#rNN}U Zc bQҺ5OT˿{6&*!2Ѯb6"$2˱6XY):2 (LvqZdcG3)*bb.z?d#A"?P Tn]_ ;/;L>n X"_CEπd f 24%\j_@Y]Wz\t57r`t*ҸI08 # a.څA0NqUѠpS'bDV ܟ6XOZALt-Y]oM|ΚjU+NdΆ xg,1[TR1 숊kdtx7>9%g_TpO,7Ix T9-9k q7-*ma|*&ԭmd,'_<+ 3ߡe )!<( Ogcb݇8S*r].Qdt́-G|Pea>}]zzU(X8cz 21q Ef~7 pQZ="MX;aŕ WɃD/ >RDԼ3pE (x[߉EdP⌆əB͟M,ds5,"f@ %4Zh^dBq?Uabъ0}{NzA1㈡쫎@m_)ȖVQ"*5kH&ZZH4"R6 uJs|RIt&f+ W5Iq[6K4kD#?ǐJ"HqQeR\~}`|rh[Azw?̃ ٷo(*"U` Kq$'ϡr?[ EnҦqnl=#]<n0y&~W xlD}SSLBRʷ8o1 y"DwB`tL)P@Ԇk\-%3^Q6h?ux@emN%i!6j! yaI|Ow\3TxzdIE^@PM<VhQfb{ 1 >WUҥAzUybv8O!,**9-1)-2+pB7 CWY (e>O7`?6ܟ_`:tw/kpLke;D-@-zYtĉRfn7Y,2 CMޱcbY ?JS7+!4ijF^,QKRccN3xwcH42Ok(|P=K|"Z1 a*)_^uCT󦪐3M`tSZZOR%~3"y8uzhik_2rH. /"*c܍pkB-AzHmZKMzRιҿϼ9=g[n4J~M5!(9ֲ8D?P -f8SR&_!^Rݿ&?A(U8 ý{[lf2먐E9ۜaTWAC)LtZF1L @dW뛧Ӽ >X`QVp?Q{~tpW)U#w$\ 4Sr~|Oz U:muM2?kF_^ÑBYSqT^5*M{2Ѕa}{gU,(OxI.2Pcm7_ TizʘT 'GV/fz ;cvC*Z&֎7n.' d-٥-{ow2{!&Wݫ K\X&HIx#_<]>e7F#dkDcYSUPe<֝u_t;+*w;n0_q~CA>-WC> 7V3(g'] p*lK z # pqn)L1"QPlu6v9pKELI.sfF!qYm,,Qo~<}lZ4mjvM-6u %r_|K)iEed9EZ?1C{ C_Rp•ȷ&aO?/)hEXډU h!~LE o_'mof t$ BB\CŬ=E7{4ʺ|, ^btBJXUtL. uMYFbdl`.^gps,ؔjз4j;VP! kr6TβީN`J(Fw֏T^,N!!m4Mzs1ʚNCnV!H wn$iGs^!qa;]copIv_rffG0fW!kIBv/B'VksGY?w(qb~&2)QjU᭹PG$ΒʭTNt_ ۈ,CfDsYE|1&3DPHPAS\A= JmktZS$_J#Km[1q!qz"cg޷4 Fq75g?Ի% Szsek֬{u?@ɠ,W-\$ #'oxuEZ&|sݴi0$36}<յ)Qi!tnoVE7$EG'!yTUJS]1iF\^T2o(\HhZ#Ze8fqȺD,#yp{dr0Dz8@abvOr(.n$*<}6 't9**QTVf*zH"Q?`{BhpN@dcاNy 0V8ibz{muyp9`Sa@#-$~Ơ ǩ9#I!.!oncGsZ>&7%R x{53&eE|]` SaCpڛVTqߞ_MzEیA騕u7.s?ü7K0CL}0T7ӛ_ o[ yÏt!S:Ŀ+Hɫu(/'#Qۊfhה?K(x^&ZzifPuNtbf@mU;睚K)禥U܁TW ^h@|XbݑG=z%!ROyS1`v'nUה̸|2QsB#R9 J?g h̓U5V 0Uqd>vq#P}WjjM:ĽRmB;@סud597 xCt< T1R$QCe$E͝ .zDఝFLONtyG\pQ!WORb&0=;%CRJu֋K]ܙweBBLUg?1 w'rĘOu q<9[U~ y391yJ=qp :caZernU=ټy| X;~~kuhIeFc)BHu_[+)#ηSjbV]r]$ˆɌCb`@9e<d@AĞA{l+7AyB@@NLJYl?l&{&yŊzP߽nH@!vT/!Ź;{Ra2*Pv*5{։IQµ#39lӓ(>*{XS!Ǫ7ظ-Bq&XdMD[=!54:A'qOl2I%,*+2QEj ƫekh~nmՖg#ƸJ'M˫B CuP斕q wQAއ兜w*Mz嘀E0].6Dv]y+ޭ1B=RHEԏL&zxp } c*l+ޞD}i^ymtxst>s81T^~I`C.b>u\̝&Qy7>mԚdF]fsf)Ѩa̳}9x`9÷lw'QbMoBGq &l uX1C "O@OkI6bs-@ #1CqK]*t2ණ,T^܄%! Ul6灋.k ZJ1q MuO uPX.Npa17%r0k-:{xX9[4vIdAd:t߻t 3 eU>WAsI~o`YWޡ#Q}?4\"t y;R%] 茎DGH)7,KeCViU5z&>ifz͙W8=_m-'bcz}fu?Ip 1b)M" `m֥Ir0I^t-ôC+/Ld_uDYFߕYv[7:6 |^]S;lV@Us^ XJ?ϙȖ5p6KnBB=z˳45 Q&,msOHʉ4 (o[3{|w9:Zxi)y &^Ǖm)mxw]:y)TOǴ&(ŶPAo! zT_|f"mu>1 HE%L~ uO:`Ģ*rR]jA@fBc 4U]l|r׻ է9 :"T,ځ1q M |lHexK^^ @Lt>2l%c߲i|OۂfM|N!f F^ھS'j)Y$led+[2L폁p6ЅN1)g}w.$4||f)t CC9H|M9ݕ(M[ GL (}T,2kԮ><=ZiV&)Myq0ALnNh-ߊհ,xAp>2qWA_OK(G0x@I+>_ޑW놥Z5eB)/F퍲`.REzŨaih9j^ռVsўj!]q{a 1!gjӋ>rnhvo>x*ɆJ㞋<'cU߀!|߻sѹFLRL%C}?{ b mz4>kӄ{%Jir kyΫ+K LXdS}AV]U0L02aV6es0:਩B^4nl'Z5{k*}zz۷$ٮole(n (!IrF9zZޢ$a Q]c4QE[FB֫ݵx: eNT/T>VWʣJk;3C.eƟꗬ{rCirUpٱNf`63J a)HIevf}%K=T5XR_e%+`@QGbIkroOQgG~p2Dq-|}|g]r kV91<0z;W5bL>krKCъVlZ YdE4׷Yj %B~뾌ufuwԄXNȓ-5%k3dXju#9"w'⟠4X2vUE67zy:-bQo-fANpZ?' Upd_E \x8leǺYں_y D(pGETT;څW.DԶdpˁGמ "U.rOEG\k5wt]m PQ 0 o;!~@<ܲ29e\IfO:FQ۽:ǧ#W[ (wt-I@DXv?A6Z@4AC JsH(U>V6D7"٧B{C$W{+F!VZFvY[6:>%H,< *y-*voŗ+JJA2J gw䄍bo=D@:Fo@R׃iV5k 2}ߵ\jic\Na}5L%e=cxZŪ;ޜG.A1HشP5:S6[kH:\Jđϡ5%(P+t'ty;]gju;BhWs'"W)d#b ;0!ěj_@}ahpZMi {1PB4H 1w'iPP=ߠ2)ffmSlzgڑa1a:ߐ.S=XPXVWgnR0T wN.{#Ԕ\>;4%Lv!(Wotj3^ɰx:+曋jrYq06k0zND6}e,߀O-D" ܇.)NkwۊqFf. Zy CϋJ(#Cs:RmY_|9ҰFu)"ԚVKE++bJg%^ZQBB3LP%L@[,'ИZwwj:]SMhFj QVk?Ǧ#g6UZ|e RPFk4)ȵ|H;OYGj3xK2H17=i 4(`O)xV%oӥ;"_2= O E>'*;FB,fEx@@UREFvwTU@%y-q <t gȥ5\E!;nf專񔺽اP"C Po|vÊq`WK"Ђt dъ=֛XPkS|-߇K_B?*-lՑ>f]8izhYAiQ9[?m$LKl9|8ѫy8Bx97\Tq8aPA:[M[;G٣Ho'u')^ѷtwӒ$UlOpOJ;کFTϐxk;N^gVB.,˚{5)ųiƀqY~$?' yJ#̲ZdJJ!IҲ db US1Xt+_ޛ cm YxQK ִ$gƜZ7X΀F_`:j"C]?38x FMy *a=s%uwd<ͧi#q SB"Pw0͒%6%R8M Ua2`68w#*0ǟ3 V%:'7AG;Q9b(Rڅ3lhkE9dA,x~#rM6a|KqK޴yyKkQ=]֤onlQ.r9xSO`^?E:nm2cVއ\&RwΣݙ0` 5_Jq~\\1dH@VG(gٿNXd~+v[ :hJ`{>Hx{00QIş>BabEY5fWž3׀FZ;z@dedũ2}m{S4I%|Vs_iC~,B#վL{bfoM>5ܯ)>#tr>j)T{1<>>h6"MenCrʲp&NUвaCtku%ڸW)(wנ__/.6TÂ\j|p$=ׁg2#\K UfL̶Vz"kLtƶ{D~0?i͘tmpȱcӭ/)r\͍f)߸-+1r(E38hSC(@we'f8s2~e ߖmzG|%6DiLzSiɨ BgmkUs\0~Ùa̪)<9zs+a}RM)k.B6{m-1~$C3Y>m{: Lx%+T?cLuOKu]^r깾ꖋYg>;o Y>aY TT]D~YaU6X.:uG7,^G: Xv {ѵdfeurYu:yyֆ"[kji5L]`յDu}<%UwsTAOA'ZJdoERF%˚ES,+TGQf恵W ҦnxSq~,^8ghЫ#BVI؈6'dgCAsj_\,GK~$duƁ'Ӻ? fJo5*M GG hm4Vo'=ckwIG;ʌߒ"n ۦ: e9`(.ɫNh1H ,*9!S ]oڅ?ו"SYv@R*hEd4$/Fm"a#ն>2S_"eMu6ѐ*.\ .mф,Mq|ֿO}z'VEd^@T:̆57C=J$lN#:v洒 ~Qu}̖d@Bm滛&oK7ManI lvs(y\+9o;вd?^q%TPq)M~4O]u\ip.Yi%TK+8>1Hc!:gv{0h B`?fn iCL>{oND1ΪԪ*]S@bOir4oq#:HYMrD͸SAUt00wvjKv pj HxFѺݿpAwp4@0==*?]w.#N *{a)R q|{(Q-TAe) ӶUNbf|3Ni9ƅb&{<:ZWE•LA7fT8L-{]M[z+2XC5?Z o=SFA_PP5O>@8|m3Ji8Uh fcs8[e,D%"3HfsvbwT0,%e%"gu,p-{SL=#% 8sW!О3Ġ4iLMܠy˔Ql7BVᐮy>]3!/c6+[eAaGK8FëdRGPt0 1[Dݦ%':$X8=k io+3IJ=\1bi(G\4 Hp?}$ږҝ~Z*騰ʯiIt`\"YY@[_> O" @ѷ zeTc-a$PzDqG5z%k?i U^;m2Z6YwHUm-|Ap6dO{:>/`(69 1jfQ /υu1Ȯ!-JZ\s٩Я1&ܤ nL )w&J ;wzn~}G,Tߣw %2_rEv#nx&2xO>;rnq̤=Ld^~<샆&U"ЬΦ Bg6V+O(k3:9ZSwdn#+Xc̶sE^PE̐$Ynj?W.+/HkiE+x"LLKzn|V|&hN(O`rEWt]hE~bd^o, EE@I~S+lW*TT4$ 9nΘ;yvwiMWTtuCjtזv{lܠdiv :9,X([HGQ3>/ݥ %BNH:XQ<꫍fnLTx(ۛERpsAoWDV>V"vY[淉z; %Qƾ#dzT Εu]]]UH|$kR)Hx)b+!K\BW}:] v!_~+0a<_y4y1$LY1}YPąU8|t*e%[Q`fA*9au3z=똾`X FxrQN |x{D$}qmK8MaJHeO)k,-TV֩:tP Cn(GYBFܗʍ9=Vmӄ/Я!0#kn"UHeſB^7x\F=NXwՊq!/<4zJ5,#+*Zn<5Օ/F" ƥ\6򍖗֘=G:phm"^,F}j79:rW%Op؈X2Tߵ%G먘@x$Puو(jg+9 HwQvmS$Tr0#[~K71ubH2u.Da&жc2XP4pp5vmIٯr\] BLȴ'`ـ- ?4kS\rhJ!`(.Pth鋀y׸a>nRm$%MQ@|lx4DGw<@ϤZfy_z5L]:a'7}kah1ׁwxm; )p0G8#X ԑ3rW6&#-x]Cܧ:"q&iakjԇЇ"q9&!1^+uGj> ,*Ipz8x}U$pv<}`"<]"w^C-HZu)\嗡 iŌe#6)Td+cIRy [ܚ͛~Q)V#>rq"uFAPhCs l$nY~4Kdf?@!JYyK0>sE7`@0t c@14K] LHA>(ёo>m?o3x,_߲pDJp_ t#+SPR5͈f_vLR s]+1jٸ1R\-E>uIX bAL^u ܗ%U!]5M3/Wr(~XUJmI&.x\zx}A[w$S5Uեj -onsr&lXx[{st@ -wbDr'OjLxEJp9ʺW`>1">b5A}s>̀\f܂L^|%*|36+][DMvmk^Zs g7,D2砺PC %NsDlq;`xE\q{?6{_Mu;m8`1b55m͛#x9(pQFkҞ͋0AU6젓0~Mڼ&k  -_xaYV(_}]:7ޱJD` ɼLAlک6x0V0խ=)hCsk|@\/L׿O6Pڇݼh}Nr՝3.ip$ߘÞ[a!w/isGח9k+;_TXRV S23>V; W *69 Ӏ]lSHMr-n' I7lȭ|C!Mؕd6|kñoPѯ6Nm_򒨢 ;~Ua2knM c!E(r/t"vgLeV ? JwELݾo9>.va,\3iZu0݉zec"3@٦,+ra+a4,k쟷T*0$[C UNz^HT-͢5):K  '>mq0vL3i[3~r }D/Rj֦`ztyX8z;w#{# yvĪ^i ٫6CKvr^ޓW⣀^_%#13Qrdh(6V1>-??^Fm*TGtV}3Eʹ.zQ9V=V:%Y,=c* &4t`F5K* Ub-},QL'A{Wpftqj=srNZЧ4eWOSMNbq?Y2e*[r%##Coi>gRPьb~ٌf'Bç$:& \rxZkIcg\ӎu2$H|;x I-\%3$s o 2{1_֞8KN*#K'@,C1P6qD q DZ@{`L p%{05od3&(6&T1='zi _y@kC X;[1uˌ.i0~l_v&KɘzoܪfTL'эFDezQ#~\S?R `&22ŝf$?\ųc0?MZ#c2*ncB?")$Ŵ f*UHK5Wuƞ) y!k\eS'q:o&e}dTjIG%;(SV h)yRZrM'<qp_?E(]ƝZCzg.3MuOwlP/\xf1 pٛA?SsUXkL#|$|r^٧Co_w32ऌjo$x_Bx9W+B1vK@NK0z t z ϧ0{r֟B.ƫXxVۥMkX;MKex]åV(}nvbz~TC9!qـou17SX̍>|tq\75Є(Ng63“6v-:3'^,`+C oe !\:"Eof2J]>I(UO*NF48Ğ9T\^ןqdОF૓4iΡzVIeQ:촖f2) )0H6tz2@=~U1e2?1n$;?]i,uYOʞsy)=X<-/(g_s m*سRQPF:#O-$iʗcmwɺjѿ'UTVngݠ^w=Wr3Y5?%uBj c1_KdcFfA*Q3g9<- AL6~_N#D5>c(-*7)Wu?C7H5̮s6Nh30#AܸDWC0&[C2Tg++ jE"湤c߿\L/kˌB PSdNqPё*ZfUN#q̈́?d&NAEM)h1V 2O̲"j"PvhAK+9)Ag`bkdOxSz &]wh+.A85DA"KKN^ay+έJOV$^b]Ѓۤ}B%#abeGr5A̺p1I $ N&FH&i0pWI<">*'4+`/#4,zMO'\Jζ oGccdβ[ 5y uMtóbU*5V-SzailZ~x_sJad b@خlXu߫=/d9PD ytH/A1(k7>jWֲ^ߏA" ~ Nr^*><NSʜyVt#Ԭ0(|n a O z.xP7D_X$^sW bBabTIlc^˂ ,`EiZ YbW !LO}@R̛>b:<]RG5~eu,}Dwxg:yzx6Rײ'O嫦9a~o\ יD(LnjirK޿E__F~rLOq4Ůɜ5y`X<@ВFAuAaix'Q֋EiŹg\/* ԎQyN_C+Ǖo3" JuDw4&;PVMee١J*k#ݑ"x*x8Lnb.Pq )'#Vչw4ZlDBa?]Z{+QCPP4+w4脚Н2>`b r%NqޤX{%&J2 øa t1KgKTR#-BRx@YBgeF!{u$ w-,5|gן_fdɖ$#I@X%$ '"tmx2Vq%|e04_v卵[rf9\BdX 6gÝ;|"7[GN 'ၹcYpn4LchX W͜e{_Nd~|}pY7O-8Q/\xRfޟԵdmBhu /$e :>Fg)Ȍ: ;iOC끖uۉ~[]h+Md7DAN&յx嘿{5i2x 0\T Lss9TLIbgI/vyk1/䐭!Fȁ Ѧa8=@6”"f4ьP6B_R[!J=i7:ثįA&|'|@(1D!^n@ylgar SνE?UnةB.EuY*Z4d GI,D&3C BnY,UY͎w(3#$Y|8N*czA=T^DKA(ܩ?ỈQ) A_I1u$rs[ d6@k9P&lrp†^L&+d*x>ٝXJ\ !E<>\R6@K 6|P1h9%Ag!A6B%.|x_QI.E6Рj%S`Q)1 BlV Q[ɬގW5 ƥDV!Z4\/pр: ڷcPrAG-w1HڑUM2DZc Ad(ZË_UPB'20QDrf?:2A7ŗs_tx2 7"p4o4 :ä8IR+U6 A&s3ZH4'R(`W+1Z7?.MAgf6UzȈN^Ǽ|r-ۗ+ <o v'[gVEGCI'XڐYΈ^(nK8Y*hq9RXO&') xg ZF@kq#tˈz $gnNcN>Qdm6V$Lý"89\؃=b%s>x.vr'u k~$ܷnzx3&qϜN{w4˓Tnw ׷D4ݿ= %l?Y ,Ê-WJDBs"/e6V;:N;&K\DŽJG M褪􍦠V{ksaJƳ/iIn s~CHDQ(T%qNֽ0^&79:H~^PUl%REVFTi5/Eqylm-ٷ_y jÉDY@+(AJ-Ӝ%|5ddSm~Vw?znGzlF]M3QB8(<8NkwۤJBy "#- v^ ӧկ?Q:@`޺ !]Tw&]yh3d3Xcp dCҫ#JQ^)`+q&\RJq)1CrqԪ0>E[&{f ĪJ{&C%[ЇT&!W*NTv6CTM!c^k:BlO#Sf+2Yk+NH\{ Sehwjk/V y؍p>SQ Hb,cdTk\ .P;%+mlU=Bpv9xN'wGକCk#D<Ȁ/b; B܉19GEd4Fg[*;!*uJ*tڨEɏ(u~J]f{TT_7vK Uf ƻ''z5nƠUy<{ή²~$ !~ e+UK@Cv4ɻ˅lKV!wxH2 FǠBҪxU?Y_\T8ŝUGV^I}E3K~ Ode=ۅ,Kli ,[l# y)b]NhvQJdJŘU0tU+1րYY݀ߙfă,2ts$3vO|dmdbhgکo"ryezxGu [sNWczd`׫#"yZfhBKls:\OFRLı5H>t,. |M?!JK`%k݆g)6cY{swа!:[Ƅ"!lEa't)? pFk`goHEHaA}1p@Nz+4 +r0)M@!σ%VuBrѥiv|0{#yw ܊:MyKW<М?VY2Eip4prkg;J Q,! "jS#~k.]GsQ\aY@tu1羖{V㾂>z)( Y +GdCDP0x(d%s)D{Tҟ2gHnĥ3qI87!9.Qf56GO^ke痎!~pV e:Hps4cvKpLrڬ~DE|Ja)F̮7AW/Y6:2C9eeauw˵aux|R&c&`]/Rm].|!D'>WkMhbn{JBo:(sAJ,6 AEV{!A*߲~Iva3ɪRa :9t" fL)PRhI9GFvӱfO\s_YuxrčRȷE59xPvZl()MZK-odNx%|%K%*$姽8z 2Ϊ'=!qF3B|nzmi}/&ʬcd{ 魸^)}rЃw߻gM;KK+Wqeҫ/ZNIbՠv ڈ/e7g4'SТ$0] OhV__rĐ9F"vn~keP&A x%(*`qY>d! pBJւNVs0{2H],NwTm荵p;;.jMf26(s]눠H>R#B'cb.A,ޠoy/aN Z}ȼ\9沴yW*Jld uyai'u+NC ;o(ÊBg@ΤVi'G>G?8e"ܨŽ}{5MNCbѱNms]$zCj;;Rʶ`o.]%j .BU:^$ۻRNt]=`̹7B lhrgSI~jtFfb_|^4 <4x6(b@)#^KQ-@xAP/)<ϙ!C5d1uD1Ủ5a*5_t_mQ-j<\gJ ˈRu[ȟ/ 0u6.o ɡTUƤY 9*QN~'ir~jZ;BP?{y6l, I`2mH-AJզܔ٧Xc^t&Q*ɼlz E0J𶇶O55LFT}.w~\WUsDt$ӭL`+aRI};ȩGjv3kJ.Y+ Ʉx5/c"/u% |3 ytN5If>عu<w8;|y$ϸ5wDi[F"I+͜7Fh"C%cfZI7 5u$izOF׊ϡiS:2hRhXi,=8=IfbeO;ڬ3v dd5}fhjNbxN7T8©hDծv:_ hsĮ~UBO;xF/q|;euLOsq/a:ps-"1>R4eY`xb  O Ś~FTyZglǵB7pҥʞ3 zJDN˻1yoce"z2j9k3ەȰ4ՋjDB:p%E [2zge+S#fE9;T)e_W:X#|W# p ujh%*sB'%ћt3粲6>7€@ho!_-~g"ٯAlwM\ V6f&k?W1p0w9vJI"aY4 z8-3`P'pIv"?P}0bQ~ ɇ/pCS:Hɚ/x!C;9N+栏9PNd.nb`Odz=ک4AX#~@fw<{8"xN a@"&_\-2@ 0zمEB3q}.w=Ly$ Þ,7{eR4oEd7 קW֦msu_]j$@'^tďbP4d@atozl]w NKLł ݤTG5B|G/ 8AKMY MI?NAE/_x} ;=n 7N4 _T)~"" =>+O/ A G`]9RrXI1WeS'33 tgjswkL )óvh ?'r-R@^y}mB.^m5Vx<= =6IH2[VD Jqi[vߵ>Sܸ+nG(m;LmA=f.r]2Q1 I'}Qw7 ‡I.s5dj<>WWQ(l1 ӏG֟߻p,x ݲo&[HFN>>_kV\ Hӥ|J/ݢ((ZkO(Ot*ubIX~/tta=D![½CQW=" z&rahY]xR ##vQ9ou V IB ak@mIaQ(-޾dǗ9 gߐLե8T_g}m#@i.RYQ Kj001mW!\GtE+wV xi6k@HgzQ"Ǐ.}P~ûJei;eYpO4*Bo>`8z?AkxLi+!? x9(V4Y{B+ ë_w>2;ܰo Ceدp.E4Rwh;QxPvN1s5\6`S0vS༐'QXKv9}~yIle ԇ>?sxJ;(4(O.7{R}_&!s=sT~~sşO0̄?xHejKSrd60 bmg/DZ&( !*A{,jWNwkepFvHq*Z?LV9)Ɣ G :l5#9/)Q@}Q.fNjzVf9386Fڿb!ZV=el2؆'"1_79u ȨXu |$'=4bt\R4*Ƴ8:QE,@'J]~S'H@.f9ˠ7~ᅧ꾕NZEW~/LF9Mrd{J-`,gْ  B_8^cԘ.ѕQ3"dx@ ,#UQ,ϱ/ҍ?Z! F4=:pܜ+CUVR1EC|$x&X8㋯RU/O-[KBrZ5_Ɇ d=f6 ʒr4:W28(=9)~Qie^ rD;_N4GcʒuDr"ڟM픥S%H%Y GM _5V0-}_~&Bz& D9~ԳR2lw\w_2䮤F_"-yi9l*sqL b}/{G *i=VjD2q!v/ J Hg>z*tKeyp3 0xDt,jtu rfMq5g nh.:4!7%ۈ>D"=^@[ybv} hiz MǶJihX޶7X+6.-U6PT TJ i|i CٜVh"L72nGr>D>+ !a.[&_[#"۝As@MuʣBb[>sw#|? bFgެ:;y/}J2?uKà&gUV`qM;&7~ ^<<~%e HM܌EZ* ս5k_N_)kxy (Zԕ QJ;@#/ ksR3wH.WT9|U-1\2CsX/WZfQRRGY{/S(#y4ɌI]ZFɆv I, 3xHؔ U ?ϋ*̵w]69Д-ʠ 8\"c0Y(v,J%.A>+c&mLA9=ޥ >{kȬv*9Rt^=b uwB̔y_}D*$HRU\Cq pGT6e#+w$3Ro \jz QŽhp)e;3?V;k([!ʀN?j}/}iEd7N5юE>)"3kqnO>4Jk-Pm-' =ϓ7/t~ k\}e bqfnAqg'ⷂ4fy!uwPӓ8?&3 ^uHDU ĻSJքnC4KέCiY\+ᵿL$G@ K҆qo|[3,KW}Aٓg",9ߐ{$Ѐ "qzXz9U z3oN<`L[.ȼMxM|FOԳk0DK} qׂ0\~7` s%ρyVO#9'E7gc lM}r6yFWX̆>ޔmU8a}D T[Xًw画-qg~Ok;cZbVy١sd]VyHbP|8&=3$f(İn;~ cL$3p/trK <6 3Ҡ;tegc5$Ǭ] Cj * I_^E\@',w?*wa%}rҝݻ+HK)`ӏUe7ރKC )y[۲[ Z7݁ \ UI_](u|9)&u}rRdv܆:{.;=kXFCĎ -#UDz-A?}KK =ܻL'Q Q ($@V(=D3-.ԉWo".D*,Tc3qNJu1Ê(l/CZo gZsʖ϶::H뢫2{|`g#A1o-h 9( hKP=?֛Unsx&k:3$C SƐx=Q漇s~A@ఝ̝M8NNnVT"nmhG-L.1;3yy1`{'0T?ԂP9& G)'DF/ڬo=(#AM@7X º &e`7-(ݠj1m"x " 6Aef^UFR0qP%RC3 6FhvArvĺ x;,]QIu<s"dl6w^'Xm";piirNUu1Qoy YH(x1`O-RD ΄\tO4BgV.X^O捨^W{l\w'b:~~^(l_ [!͗Jfv `u=o2wňq(f>53 l4M\?NTK߀E gJ{ݙ>Qt_hs](e>WxR-\}Pu?QߚZ4sÞkN>?# ? JټxeF $ w4Ւ!hY3>#Xt龏.ɠ<6lc`ϡ9HʵdVp.jnğC?Tt.*ɘ/iP齦, +iWDbDyQl, z=KlA1Lʨ՟Pm`rr<~S5S$ZM@ߺ)|=5ȂZWV]B-c7J\Um 8^/Jنe( ʬe }23j;}-!w ]-EG ԗ[p3Nqc}Xr %N'[=9WDP,@ Pυ8|{b~t԰)+_-muM9dpP1}&'iE1ʶpg䓤ABjo+@yU3qAF4e4+.%눙vZ?/  ajX`[`2`BaLvP:| *pahNgL!MagTFx3y#t=" N>/HWȤD~& E?e >2:K/sSdZ#Fņ4C,߉lՋ3FTmQ"|[q)cVF_9ӦD+l#cv"\jszuu&WxAS KaTw&BDj\WpأKGV#=q=Vi뎭9څ?KɗPC%Iyy֤^2TmSÜYر(M`CWoAT p.cmFZ~7]3eyDK_쇹/0}{=q<-q1jrq~_ڲuHY@X#2*XwQUh9}ZvQWV*e](q(+)2Fi;aob؋X;5IHm bMc[Ӧ_!ʇlUp2B{;U*OZ9_y^nDOA~D~.6簐6af=Y;bRIIFjtCs#*N(iXQJ|sXx>&+lG.@[ß!mpIOGbl,O=<i~ݧKܒ q1Hzp1R:z;3cdءpyӼ=)OdV=5?C|0{ /VظuzZl#|1]qȦRGPĿI8v*GU#M|>K6Y(~cq`46#i|}kI2M&Nt$oUW|SU/tPLv47P6&f(GRΜS!V)hqd{0 j޶N 񓮱}i(JP'xc: >QYI8*3,95eTfTsROsMd-]U[>8H>³қ̊~j7ҷ߳O5`l5y116'F'!#=>ݹl9Γ5]Υ-]ƈtߋK50V?iM][eSJ7՝koi|r0vq{njWD/42?f` `Ĉmk\y~ +mJ߈u C"3vA-b1-o9)2/L .]|9 22'8XuK< w)mKD*`j0+qcf00'HpAh- q`_ ItY+ >S ߞ#5-\0wk&_Ǜ ryޤkz{Fi[J=b 8oZ"Lzx̬w [ãdQaPIJbI2;m:wk)J$ƴXu`,p6HR?os3Eŵ$4Ḹ2 ]s(4:͎@VD'Dݡ >zބQу/3ֶetiƳ§hPez/8m%k(AG{A!uQ,+Mqy˔eTJq1$iJ ).Bziev/3J]=5ʟNU iDe?Y.Mtp&/R{Wd ؉IV+I"\Q  ;[E`bb/Gy5>-'\Fst n V 08J۲g wV4{i>2h*\&iap!UStB,,\)qMp%!g7 ^֠?4csVš{o@|vTF~KR P<6Z3X_Xe2*, jްmW͛6(%vy|) p"? 9ob:̓L<)kz8ynRij 5=d:^d62eU{[ʹ|kIeqZ_F㓭* :jLnCw]&<\|4ra3{ro:ũ:K⺈hL6ߙ&R1 qg 6~DkvS}̣CK`$~R Պ4T>%h[瑱5.R)Yk> *x$o\97)Rrֿyn->)0Z3F^nAV `*0,؃mVL?W_RU}7;\'W|P6=S\hBC ,,roT|VWA|6ymy; <;n zk mLbL D2[X}+q"vuuӳ} WvY!l[ǔ,f 낞85,IUpv(aguķOMg]P4wN,AXM*As2Nt\;`d|nԄec@CػaEC\庿,x7Vw/N~_ &VUm!̠Ϛʻ-"md=y7,+h13ӆ~$ y~tL[礝# JЌKzQbb[do0IgV}jU1=A]KMdÏ#᷃r̊moȦv+Yρ@|? 5=S?~\]CۘJBk ZrlۋHo I#'rӧQڠUMnv)|P8Y,`mͨi1G7ň5a&>zS [塿4\T2]{!UF Pg @F6>u%&4hR\+r! yGeiԺ:lnh_OL@@_fZ]zUPq92[Ygv6q4Cp[}?H[BLL:ٶ:.}L2&c#mz+5Is@ű"iBfhY]T$g^l-(  fua[Jtr@)SHrd `f_Mf޲A?ǭLǛ n$'E:(shyC31r EC*n-eu<$rMGc; B[U,|Gp @{lGa]k5b, E| FU>\j^Ywg/vC@ɭWlkа5زz z;6o 3.YLxn[2*N6+n8\0"CljJf )>2 R}Iƭ_Ǐ!]G[08o4dZx}:~} 7WFY Du<ă'c9e Qa?`0$W(>vp!#LZlY9v>;v"2/iܼpk*x&}pVTww=+9fg-?ΨǁVLރhɁZ};z>s`4UF ]7|._V8wXovL[bU}IӻԳ R)$W?^p0XGѵH>%ü :0:5u͒RO~&CFp‡ jŨww!JNٶQU%R5LvON'G$v`vohW_R|>Rgasf¡^\W}Q*uJ"7ܟ)~.nD ~aA1'+%FO#ԩ8֘2ibL~n;_F0<Y Fc+YEsD~9( 2OmuAQ"-㟘*YŠ3JVTDhAS|T5&KYc^wV<듄 $:ID I5F(^ C¥ ލ}*}.=^ݺq+Z(d U~釪w.dqF6`PV TڕHgϦX-(.; 'JKuo0M Zi §mmǪM4 ]L{h.v+>zDRdNbԏ'KH,N{WUܟ2y4Rӝ.t͕pD)[ Fyl2 Phc{p1<˼#_FhphvjpZB Ӊ=ڰMUbIǠWG99H>7YLٙ3aw8Vz9v\lv MC?*3d$Z:u5Hĥi)~W=JfW,%o-mv\W)pd @T V<1#Y;tu4drK.I3WJ Hlcg#jQeJZ\~WT\8h*3Kla' 3-o$ߊ:!@5GBҚd f8u9%sfMm,\EŸg3&3i?݁ HJ^;ѥ}_^&~CMk]XJ1d7N{*_ Il;]l+]w#t&\/t+ȗ Ma iӄXҺ'S/{OФU0E>_=x d߼qxSFhR@2h & 刮UZYD7h4'?coń0MR۞YzF<щշL=A<2\gzRz;J`N2^ʂUcĒMԜb A,\݂U~?^?D~fŁ,ɂ-¤0ff0#Mw㸡L=2=r 4Rw}%ir_ov{魋4~Bxd}\a7YHТa(0nT {-> j)"܃P{D!PżŽc^q&hWp?.x/NEOri`~+9x|eaTʷ#~0k?Pf~m2(l4| U/xpқ CɴzJJTpY;eU4wJh@^ F30M*Z c5:eDr'%eFh,LYD c9STӁi|EuDZ#r1UjblI,hPꊠŅ=$1CY(?=3]$2o(Dn5%{)FݾYگ s<Ӱ+q7B :ka;_5F\\jG%mQsRW; ٺS e5?w @ H\bXH9j{lzC}@Tf).a6?zo#;xpɉ"m@j8T܈!0wx[-v$\*W6rɫOOOtlU"s7@}{/Oock'}Sz_]؀qL?@fn4K}zGSb%= Eo7Zj3gץ0^#5b- /.hZt{2oLHEQ0'3lБ%d%YġӑڑuqIs-y' x^*]  +4KWN#Q7IbhZRӓ i{:^"@w\zPt™GC;q("9ޯX;J֡U%~8yK1Y&%:*s]SSF̬ Cpʓ}yH'=Vv6  rq|+-7dtMvr fqX9ɵBhVRSz$m=f&dZW4ԙ5sz( t>ه uznITRIu5fL8h9WMt༨w8|".;Kw2Q*BCq IvX?aaHïbTY9Xމ 5u]fPZ|#\<)+ma+͢VS+Wa(>Ec\S^t(A8P+5q)\ۇ&E0ә(Ϋ (#3 bq[<R5]aWƿL9kuB)Ru$ǂo }x5ġ̔~r@Ws4نb35us.48j3AϝŰ.fy3y]vKb襖{ &O2Mri`1Gtn Yl,/QU2_APXHY(AfX5'cGU}) "crdRcxpoxҜhtÓhj93Ev0'i-|ߗ*ɀn4 g.;(КzY&)s+ƽ(UG$1;+29k AOVh,+" ]4rrhݜ=߃l!Twe q=CK} Zi)5/$N8GrV|C)cQ +I:m1u&' Wp/ &bD̽Q?4ibC{VC)xNlVn)(l͞Gpo?Mڵ9z{4U)ΠIChu8tzNlk{<,FṚ5jIJAۖK-Gĕ"ⱚwz470a|ֱcYA6ޓ mX޴< ڔ].Wl.`; m 7-qIfD 4H)EOR!DsG)\X҈DH2 Q*ڋb\g`hi9 IS Y}S 6pKޏ=Žf3;st Jd\|k*f65[ڨI;g/] WK0k ͺqV dՆ7]v|ӻd"I|.I+74WN,IxآXq4 [FjWzr ꬇?  VogJAK#UrhWfjev5CB`8`̚r1Ku=a8A@Ѝ$*x. j^Ћ{bÿ+" Ű\^ f$ΊH?}RJvqkBVgthtE—eK&P,Zt|UqTzgnq0R!wpx¨ ]"Iט_і]\\mi鎵?% ^樾\ (Sj pl /JʚlH(^%[!bp}_T_)% #C_8 &ÚwL2*獥+L ~LV!|jO+5xbi_9t/A+[1kZ#} g牣;JvZ:Pk9)R>7P&n>KՊnqLy":K# A=oߊAi}}bPR!n߸r58 FwkC%Qm(cԇ3IKZ9[*}67:&u$Oh?хyn~tIjËK{I nSύLAA3$׾׻_DYN"pVHO2i5cx8}`_dDʑ 1V#vdrsC3ot%zwKt xbnCUq[2 ^(#sFFPJ .1EQIDZl@,Iƀ}@%2ՂtUl] wHJFwJ#2ԶcUڤ޳,7b&u"뮗툓 h̾3Rh?DPֿS]*BE<| D}"m'@#e[B\;YD8Ss()Y m^;A|uzhl}U1Ts5H$J+3BO0:#&C飘•t]AuJ=hK=!iV( /\< .GzFX|D$:1no"vH1[ wUAƄGZג|>c=V[l5 KhV &:DVױDFIiBQvViuDO8롸J:f=MDȤ"O~Zꟁt/"êP`RіBvG}_I _90fpܩ  .x{kCkd5YLWBEN%[]wI(w3TR5Fq{~P?swM cj8om/Y?DS4+}5|Kt%Up:% 3$fuq۶YX:mֶV`E3(-{$қH {|3/ ~G P)\Iz]*HNH2@ i)R4ChwaD`1t׉Z|PH-FОBs:|!KyX E_,LeV^$"ijIJwk-`$&P㡬)O[}'o32hoȕ\&qGĝ6`{HDuUr(A$:[@jb".^Ie:9݋92[[]T5"ÜNiJBOq;[4l)|iOMiD3JKƿ>2NCĶB<)Vȥ/d6.}Vv:4PuFwBfxׯ? zGk UV\^Mb &AqCjdʮrIn]9),Qu֬t֦63Nq9h%{Ǔ, &׍q} r[/4n9S"܃umysAH{<\3hE7S-!Z]8sWݷQL5[#W("ԬӒ@r<EƓ>ABuǤ'J<V,`득@(KSr=FoH yk1{L[IigFHF|3!/ELϟ|L G$RqlStj gl†SBfvHz?| F; v8󬚽 =QH+p߬ X6y*:$ ?cN+)Fъ‰5.nC_:Q\[bPsPQM(OV=m{Uh jzwT{!xz:L?ڧ^ephXͼvͬq79"gJ{\ŵ3;;m3kGѰ%O֐c:Kf%25}nXP ",I#kL L vCW'  ^Fc]#zHG$a̼\8wК0S7$,[%x«XE)Qeey">;PkZӛ~KE8- MBΙ}7,ERyL>H=tիƿe~UwIm^Eh)3K5qi:m%&Gؿ3 nُgz*g+dTd>MX^,p?ZQǐYd#pDTȌrc'&;3jZ_ `g׺{mV첫mSFT"“Эwwݖ6VMGBkzCC_ Oйi&GEE(0 Ll$I(Իx*yGͣ'6,|GLm5ZVٱimrR.^Li&'A,z@u'`.fHj!wiFy~J?+I\G=?{ω5mtWȚHحr֖puN+3B#s`%ucᯢK [Pk@f$XE~(Qe J+t'v77S_`>ŠjP6!1۟UYR 2!W>u)>`HU)A' 0 6Zu#F0+ v']oSho/5d lttTP8C(TE ?-]!˻Mž|[˖V:@aW픍ĚwŵGs#[ˡ=''l,d5y6jjXCX"0~tW꽚cLFmv/_{rA̾%(*XAg_ܐToW*^6 *<"kgw7z:;_^{!Q阴ONPWN,uS|~$zأ샰o&UD 3)xD3فeiVD#tb#[ƀ,S\R/&&61&#!;2{ d§1j{Wf6@dlB$By`pmx`&&،N,[VN7XQma®qB(dXr r=ih]gr"p7/0 |)Kbmw!踓E焺E rJP`HIH^)#BkB?U )k/ AM@'MVfֳFh'%FH9[{Ld.β6y׫`䕈TRa}Ij1 ]Nro<045 1AM kG*&kq.:xy6X8ޤDASa^0j##獋aQ&/)KЫ Bq  FLb YOqermjݨ9i3LVMk;B ۽3Nm(սb1 SzQ ٞg^^}OuZF#R,v"oE,ݫj6!;]Oe;D<,]KfP~P-9>6"ON$~ NI0pFXkX)vtw,1R3. 0Y[y{]+q$,ʓL WC39u,{1R5ta8K%3-q( @&r5zԡҕ=!mpDɍdl?J?D*"X ިXq-e&6-ww{hн͞ڬi[yҙ Q@ADlw ?RKG \M\y@ؒ #b`5'G;nj IQaOhn.,;Zx)]_ '~Izykdq3ݓj& Ӷ-"ئa#+"B򺸟Ep̳ %ǟ=FR8OҨjQgیt!y'\u !j܁E4?aK IHE5-l6*C>'3'ˡpō)p-o Zna?:QKbO?9WX:^[ͥe5㟼*l8`>+r]=ݦrp`Kh6\|v%H[CJK~gs~AN{77zC9h{t)3x}xH ӥޝ0 n`9?.z+IIkլ(8|;ZTɪksIu~%n|om}DOI6vgcd,UR1̦jb;`ګev&ٕa\fnGHFHf! sD~m/| sk e3! ]_ ^_ja\NDfDh<֢mk9(Gc,]h]ձqJGh|n5m<xj߈ 4harPpc Í4wE G&?ёt=wq䡣ae` 9id/aw}-Gp f W)ǯ[Y| A 2̍kV{ϵrI y[(!)pŇKt84DOyl!+]y|$fqr x˱@V~g zx`570 (T,tX:hS(Mn] 1TH#8j*_e'8~fL[ 9N50۠&S&wa}׉f,E-i{˗1ǿN~ދ_K:{{~*4פa$+\m>M@uQ&چ\Y>gFPTSJ鈇-XV-~qV,R:3"tS`-j~+X .9!tHg!TsD{_J~GWvu:&Gc|Z?RGK}ludh[e#3Dx47aGB^xQc`xo ľ"R1:se'>1qRRO~WNKOl>eX2ucr7^zѷ :_:lS35%NO_5P^:*vAK9dZN'Q> 0(l;.f|NdqLx*˃@J˪eW1ZPg $rͯuX=:2>P`Y B*'s񆯐$剭2z7M~\pߵX=n44'yz㝃z+27,$ +$S,.<^uh߃t{r:#SuO=xY7ˋ>6n39tPZdДPt\R21ʒ_΋8N$}ɵ N\l!Dr=hhy{/V꘩63@.?0%}[a/ٍ񳚺: .LIgkZ9#Pn|ɹ7:8ٳ=;>cRkYIAt_Zڟ9d#tx4:(JeT =.-u^K|daW:-̟Wjʥ#h\+QbB <$cl*ƱVS FA7W/1&G!xGEüL:nDe[53y%Z5OVd荙NaS4:yX7mB)Wn`-ަT c]M6.Udɖ4(F˥zkՖWEJ# J,ۈ[><~Ψ0-88,1@EV\bN1}Kվ}epy$V((y25g|" B׭p*m4^0vXٸ M-.c5Ҋ0A h]z`f!|Hu_:~7j  "w<$V8Ag*h{|;Td7#v3/ m{>~J*pCi&@Z >=a93Yx! l" s娫ܝYj7! 4AxR|<}(+ES'z{cѷ>!l,c(<'rO?oA>.XKfnV%61j 7ҳ FP' =ÝB#9P] ~f=Hz7[Edq#n42oI*ffVKE5J`桉$,.EK#YS!{q/h~Ïdm+ysIe ɮ_| j毈:[!%@4?T+P1$^N=o3g@V(Xgfks8RulemapDH>flidqFO29B.[Ǹ! F&Q@09t_p%tZG])_w]ʨKc-oe͔ Y0eqܬsqnZ9X+?|O=5ۜ3(a{x5`6FetY`\qn9AA )d-qLA-*3 U+ylnR %lFԮs>PL8WE(j}nHgA:]~ixtI+y=K`Pp;SE FU_6IF=tQ700Tցa̋z/gw)0b1"2),p+[Cw$W- 7fTH>G42(VY畷*rb@!:GNb 3lEB-mX}e¿V!`_ܬOf /-3KFEqV X}v̤xk0.MHoL?dyPM(nC_+s_D/ Ow(sb>2ď :ֹEQg!0ny^,O~ Z1AK[5\1>ĴMdr ZҘ̫DO\]↊V3U_@QGd.u,P˿;q$PyܸǨ*9q8o) C9UE |UUSX+`zo [;t Z2 _N/;//Jr%\={ShlŦ{ #Ku,J2CMX$ëcP2Rdj2'rˢulݘDtR#A[ld.&#(U訒uDz]2 ƻ칊tDj#WU/UہFtuG򣩵&}vG0и~FFXXTUQ( OYE:6>O l/[ʤ{ F8GL:U[J3p[4>|y; a 1f[0a [QhcDj'9 ^2jbTTt: `U0PPCRG`tzx?E,n|]D ubwnQٴ)L?~l\UeEPݿ+._ e'h,m3"xėۂT(gQqQXBl`<|pvWrƇچBz/ǶjTazO\PwAb&QyiYaIZ/\y^X°뭾ᇤ_QY>z3_7eC;&=FBVW!2u$!kV0r0D]0W#j %df۱1-\M/$QZxT W(5(YEHk 39U錇tVNKF1iϑn}feH֫<gJ=dL_;9i> *)DԱj)́(|aƤe:eҕ:iq_;[Em3;[}᭧lv,BB!Qc5 6CFͰӦ>>α"}zviӥk=ā;ni )U144+a -}(ZZtL $*)\]bT1|6$^uA)۾a1 ^nN:(97ͷш.Vm=ڦ4p0}DDJe Hӎvf]^0-Oi͏GOnQX\G>'q_Wqu+Q&w#n"KAkw[-z=5a`qP(okI[ZV_eZōweupw3_0 ֶ+R.7^s.ebf+yM L*İ/84.zAZ6TԺ"^(4hf@{v-?viv@KfPt/u^FB.Qh=jHOS.<0lkOruיŹ6d\㡱IWf++V:k ˏw1yD痄_jx7rFݍ; [R0lxg:o m'*v]?>W%Fu b1n2j |tGI_kvr"^ ;m3nxq~䚢R0y'`A `bCwh.QbT47l U _ʅQh~)hoxąey_ x5Cq7V)&ehXVpڱ]3kl![^vJYa&vFbz7Acƥ;*# 4qY( >]zUdle̵* wٸ=O\`o[yk.{QSiʧ^H^ U\5da"`qpV)xR cLyVpG.`#0! -$ {Y6)WPa5` ר8bz8Y!q?5TJHuDP0ev&4 coQyTDžZNM ʁ$QN^Ž%ZMQxSa{(O&rR Lƻƒ& ':^L]ZU19]e$,G*i(86tP6&y!*0d9ZlZ`-hviw6Nlq]fAI,m*tڷ1΀/Ё𷰚uݜ//o Y%&#s mBP$^Ҫp%y.J=&jD*qQV}Q:?tUjfK:i* H MGqFY]߾-I5iUp>#T'smnf#u\C .PC;#l?yniA.u1xQ.RF4k_]+_m ។8pȌ#pxlӁ0d5@F`j祫髦Z40󙮓lUO8tE;=~PÆ׉}c!M]"eTU!\a뇽ߐS\ט( T^Pi)89aPP?1)p|~@8/:aÛ2 "7W+Q1`ڨ*\V zTEA7*.bմ -9!b%\s/Qbhl[@^yxY|H!m7/#9P ZԂ tuDN;nL1F>Aris(K3z`pIhwaDFᆤ*@~(ud\HteP{臷.EIJO_C \"1jg2OX<һkL40͑ܐAH;Qk-hIZu\Ҿ#7K!Pg vc/KioRnhGdxڨ<7{V\u"ԛkqϓ0 8-INW. ǵgU Qx2. -& Nl XϵBhUCq|x n6AK/C^%eMvcӆ9b`dU@ç~U/qD}DRG2Jz(0ʘlf@|.'=ҫ2?V$WԲBaհ{OM7^"SH=ELHnRF' qy& e-BHxN\njtK\a/CñTcP H-&.8ACq`z+ֺB@3kBμA-jmt"N?ҔWȣ8focΪJ_3y،{П[],^+"<Q+jx,L} {n?d}Ks-r?=34<~PT@:׼Ab0sC{p{ 6dy'kmvğ#ve˻5%u3|銻dWF#WY(2G:nqer-3Ʀ$]?*¬7!m릪b%>;4Eԩ:VPj݆%_`vcaTHѿUdOYEu W(O~GH41WI ɊvU~s;_.PRіc:f!姄c5o=^ }A0~wu=?*ƭ* ݗ˽P_(BFMKLcF 5tlvtiD3! n1uM*PU|U^'g-ǮkE`@0blҠ Cޑ{Ȼ_3Cu&13^8Iѥ ;ME<]N{1b)|QoQSt_9߬O !S$ZMuیfL4T:6}/9(!d?Ё?6̡\njbI׽Bjh]AZ29<z~zBДទ^\!k{@op8[kgϗ@WӁ(nF]G< N]\_5gMxO$hfb/-CK}R,M2Wk~#狒cwq޿q~qοW% jUY0JBai1EUw({\k Zo'x4=SxجZMI-e-/Y-y5@nˢқ!$~nxTC!)+%z;/G}#Zx_ٓ]`'i|{(xmiӌ G5\5N#a)U5c&`;DpKrol(qFK^uV[$Y`8d\[+j9kI|iᜏ R{0l oZ7WZ/ǡˉ>`YJ) xϋc3/Zh8],LΑ3}ܼ՘h[+]@) Zc fJ!8v3}*.M &61̈́w'$ٗJ\g~s]!k4k6 ŸM[S maľnцHL 'C_c7gQV=t&Īpkl+ι>HdxZe14fhRB'EkUmߣ"IȖv/V?K5KdeC/C(O_,@!>6tvSv=@AN3 V) i#6,qXUR=7%cZNֽ8}njiX;zJv[Ty2^SA[ƷY)ѥ #3-PynnuLh R 9H6+kaV홌-, X'Ntev/f0N 睏(효WYR O+q~(K=J/飖*P$BeV.'.zCzJ]&JdXds3zx7jUy(`aC_`鿚zqVv8{ĠTY A@Dxr5"So#WZ>#^f_y1}mJYjGoqaP.p|5m@* !a/́w+D|WpZo%Q6b-WgL8 ^hV$r5&.25.q^ YJxUO\H/pwFKAѩA A#/H>S\JNP9R93P@?α:;0q.o8d[uLu|DX^wb<a/FjH.ЗXKO^QyH+FU0W#QzseÖ9i#_K5.^Vp/wSH,Jۃ&JqRl~L svp-4dykQ+Y?F;9:(ռhCs ꛝ}l25-%mB9o]<:c0yM >E圏SCpv7+)8]q9TDDo7Гy?1#J΅khMQϽ͆! kX<πcW";A@#F:8ZF<c\CoOJ-$u8j%6A-r:1m2,[dC)0avOTv9p֊Dd"U3vo$%j#Ixcݱu[d-龮`FpG{BSuG$rБ̨z@oCUo{>8oZH]ߋ > 0Q':vZ. db3vn T{\nWlӣCC -Ƥ9QDTʝQG:I8&-moiWX yrgxg~)./TA${"ӣ`f2B@U?tF["@/".?DA; Մ^X݅23jA(uE )X(HnNo4J ulǼEm7g?}U@m#*R;JDb\}$(JSNZȊRj>r-FխGǰBOplc>4zȎ]h%FM#R# ExQ$Ut)x;<JDV|ۧl׬v!'n#KU~qa>p dt#I*NK5&֕\znrp!yX.hкs]:tjd]H(K{r3xoY`-2Y"2Ȫ^ UASd!Ɵs{H"(* 3JDAXsLBXOKuE}HЧ9UD@ssJG)h1)vD[+/ NDzFAF݂w&5 ^"27!pڅMiN틩X?@JAK\`5yIKPD_Јݙ0^ 7j}Q1,b.)UWf1exʯĝm7"&j٬zaK$79Mrê'Q| Zd-r --N@IUa幩Q$- Ȗdx ՞EΚ7aÐm$z$upUmI]e: d~{;=hdP"-nRa俻ӢGJc5zLtuCrB?nk*v Zdt"g9Cj_|of̌TEU{,GcB$~Eؙh[ֺ  ic12YBd5NY!c$YIcMU.l&?`UElU4D+06x[y ,O8F-N`N*G\X.EiX;tinخ z%sH/EK{ZmT`.pE:8TՂMZD!X?R.?kwyC1&p0-Q`=S&rPP ږ} {&i,pJqѼHQth9P! (re`tuEc]oH5X3S\}V&^"N :D5X|Z'JCS>&h|@xʱ.[]Y^V833..( b|mB6g>K;"IKJ'dm9#DQOc Qe eJVd .wg%{Pn}bm$F<^p< TRG߮ r}\_3/⦖I"dtMcPS]kg~A)/yjB+{%d(~X-! ~ v2>ÿEቮxɥ7dd5Bϸ6 jeϒ6xt@7|1LE&Uՠā-'hy:,pa@ ͢wM5U~hf䚪͌_zȠʍp4ie;M^\ be^4=[>ʗf{i$86 _=F!Adp/*ĝkbo{M$/yc9F>8^ Y~Ճ$srB@9# f^qUӹ >4J:M7׏KZك|C>ɽ'DZr4(K&`ޤla;ymrjk&󡋽evLf#XN0KdQ%D114{M1rF_&S_+U};&qYF @ZFIs θwJ͓-154}UK}.vO]P;aDn{΄xwAFU{4i@)p*U>"?/~ݺ SecYUHUd~Ei%:mWCj-}+ѻoR`Ӭ2ɍg=b{vb@YZQNzpWR\dZ@J 8nnq+#;H45FlzT,SMYZ`YscjH.cNcSmMN& YtBDPl'X%jTn["ϖ>E;'j z㻠(0iZ^9{ xc<`)o"KQJ_[ej֞Zuk-<}aj1Z(܌-H,'Lmλ$a(1*(QdFoݨS̿ZQ/J$;^eA|pKFL#]R+:p,:. sr-(A |f K))zK2[G/N}*hG.aֺ:O xo1~B-Җ {f $Fsc_m& X1>DA:BMCO }Tn}f'*!hNĶclOIS2n;dժ<*a'p+}cOF6\ آ <녍*s$L ?ig'*ْ]~wA}Eu |$[r/{i Ξ* ޸%0GoMq $^~G"?Ԛu}&pTEš?߉]Й;G MT?vyϡtz!mHwG.& 8'^+ԪE"@x7VSuvfm -v.6gRCdV@vǖ%n&M5;NK,ѾCyGdE~OAD<5^~isO'H@?vtTk.Q hcF7'μA2~< Q/&Ba*`bj_$?.v61N,}b+ ][%}ڃ;$dLU4] HQ% |5+>KYxD R#rG?`*1163z\a&I0`rOVYͤU##ڭYۘWti[Ay7l<%m}a!ۨ٪ܔC] YSecĐوvdLDkonQ*r{׀+|W\8[/!5] _x3݀ޤD& V-8ʈf'%`Cz[Gp~5rɳ_@ʪ͌8v }zWgoodL[dp' {N6*#6FzﲯM{зii Y)9{J.6rj] !>/8Ql_;&=M<\6# O #!ۼrU bSMlZ؜R `g!LJhɪPbyu%BP_$AL*yGW6G3#'=f!⥥ۄO/C,S(Sblz*2ign?sh4a{^J^R3 !:S)|W#)P-5/Lr%huƐ#)bˀ.EY{$% i:SThqjwI*S;Iܨa%ѱ{C+sUaVe-? lO=&~{)je1 xvv@(bWO hE=ڴPx13f2i(Lkd_'I Ct5 B7|Ӳ67 'ηs{*"~ņ IFDLy g 1rըP˗0 .n-̓7ӒHlx&8r?lyjz/<\J2̔uT_U˭ٚ2rgL^o<Ͷ *N&If9`{$r4̓Mj*Xd_l0JF}>{B עY5brEܤ`꾍&d&Wu!V-ɢ[[ΐӴ@c,{&TkūޢIm< 9' 8ao7 E8P۾/cL= / "(:A.z^6:ZtS(~ x^I^`۸PQF(&1/ݨ(3)| ڃ_پ -z7jeXq[C'PVj3)]|-MimP"*P,Cl*Y~Hz誵CV4 O~7 G.V᝞/ %.7?up5ao-4Ŵ3edG+s oA3[`n 0!'^Uy^r)%gr|_YP\S]cVݮa}qɤO bTA_V0@%K?]`}Q 􋢓lы#ɧS_Q; ہm -i RL9=%'cˢ(٪}~-Of.ћzBO2mVeַV ̽Uz&'J@a΢mDf1xD N/ ujƀwl)a΢+DX@Y|mrUvSQ` $0eNJ-^ȸ &(oh;r -o~#}rSe*~$w& M]iy*Mfcb[DYCRO!z\}6 uD^`WE)+W'D='54Ǔ12G,;̸Ã5 NN~ &q!N\\x͋ &?D*,STzNh(MŪ1 I m͉Cjw^7DL"VCr.5 A-kݯ1?D19䶔q!jF՞~!@a*3HI)N~|П| '1Cu`i9EYϑ"J0%,u<3d5Z NZԚ\;<N2y?LW RTd= *J—eeˌbcI tzMv=ŕ`2&( (( 1UB-fQ~e3DTy@Y`ݮJOha柯aCBSezn⻙W[5Fc#$2`dZ[IĤ|5Lk'x FST^62̗?ēH 11:ku,Ò;vY Cw[,绲n*5qz^ێmb+}z^@[!|P6:>2< VL$6ů4po[y8jȆ:d[~@!t7LʠŽe5> ܘ d4Js.j(@o\6?,_ >1R6a`˚|v ǯJln".nWKare}VҌڰ%&3i}̓ K,z-P+U.@=(:+<7n k>&YRE&[ܝr~wu9<}t,ݠ0z [F&@Lc?l~d{ f((?ca~h`3SST9X>%Gu?v{/nz<  yS&hÿqIHŤʫv#;_[B=9eܼ)G̩ѓ\hbmb#D@m˩ToqPϷNBOn|E9KUID7g6sH y^OpК5^h826L=2fMdFW!ޫݽ,3s3=cvjN Մ4қybe(̥==ä!$'s&y$QQirIyϗΒD<77mykio٧->8ʺg2cxATՋ\'WS)khr Ss< c;^_G [ I ?,3fyņpٓ(23۳ iQtޯ"ނG2r;ݬPf$^Μ{6=O?eX0Q WkkPƝ8ݑ u"m?IfP݃\r3}=qZ)Q7Qh;l2.ztoByB ݾ v;y}zJ"WA = 6 4`e 3u1~_3vl. @1o35{ d5Bjm!"} p(| c{t$1-g_/ڒ7X p+cG{Xf9# "y>8Ƈ!Ho_jgA%RLT6FBXEwn¯B@[Re5o9ņؔ{ʑ6V?JlKs\ MG[g CɔA3YGFa3'l+fo*oc=Š[ޫ]]S>LAt1 ;?Y`<}u|z>hɺ.!>AI!1,ee紕'#1Z+_Gmb}0=s~N[P/$"\х/ 0a$ix`wI!BK)&X:^"GCW-:|Ch7G8NSOݼ&J/ޖ^n,s/z)ρ@|ٶQ+Γ&]HK_p&087偧C$w$(C\Q;\ 5SR6%b^ _ ce9#Y„ AD1%W_Xn]XFLGכ7VEʯ4cR.zDfgD+M >(Q pվDBٗ(WQd*eurS*( @MxS{1wXT)RI#c5Y5I{v,RR ݌s& L6\e;#I@1!"<ޑvX\7FAg @#8Aņ˘٫. \B@]rB6s1r-"f*||1aҦW` >rmR.xwa"l*3ߞ}}Ip sg#W™)bSUb XYHrqa8p\3G4> o3@30KIx-vR.*pЃ zhl6X(v$Th׊N[ܗ/rИ4S%:LF|tSy\emւ7}tsvUҡAK3=9!Ou@I{}TƑ.m{<ZwMԲdr)T{h+(zO[-d]';?% "C1*K~SG @@{@}_moCQ\lN+oRL!GMyTŝ)}Ċތ_^mk~g[Yo=k0ʭ_T-:q;- H?e-.U;]EҊgu`!+eGx{epsrMlӉɟwkQaKoi$dzrROh-K!cd93LC<5_sBiepєY pJ!fD4n\(DŬ:f#`wNۜH1U-^4n.yE%)*i;n2E:vGQ(Px\rZ'dM5,@TDc?=!ȷ߆qcUt7}r1lrc T_2v&DFҦD~*+) $6.zs,h/2_]TLk ߧC.)uJr:d5*\lx ■ Z_ư6`f{zlk1O襙HG|_RI_1.,Xo|`_iPj,z><ԗS<ӕTINU}_x=2E1E`,x'텬ñ`G ;$Y2Sz&[q@ Me4M[o;dAG6:84k㣲̓Sۮ|] J$X#_+g7Ȧ|kY0GТPwjOv8R͐\C1ϛǽoSr5ÛVc@`#߱v ܱgs`FE+#.IJkcH[*#٣CNjm4Jf~:7eP|`8"{HHܻ.Vi. ;3&-ѷI,H `'3ћOν5, gbмvVjX۪VKXGi:z05"ԧ9Jl-wfYlrpúl_l^zgEqwp8* 1bDMO׿=1bϭGN/`D3?EΡc-vN.Ԋ +(֛]) Sq"U/B|*2}W`;o:}HbBϽSd䓣9tfx+a2t"K.ʝ2j"f@\ZinGfjWSx]aɧ))E:N,D)Yh92ai#:uIŜۛU }ȫQɔ|1(d@e1k׀r5YJSn꧋t(*:F[e?&TbabPʀ2 %J[ 4!!vis/,s\`{$}pd_ݟǗݣ_{Ͻq2Tz`?TԷf+XOYwMS]q7-+~Z'& )dN>A?D8VJb` 8+gQҿ>(}eCk}1{N$tn,b|h)HupOއv+_!Pz5#c%U׵=E$JF*Px68WQ)V[_@cs8X VCSEh .5yu^y04"YWsX5uYa8ͺhZ[٭1M*ZMt0_~v _SRf'ࠈyZGS\Jfג|(ܩpfOܛ9D-&;&1EdB:Z)T`LńOCk)LBttvXNv=RGPL7 Cw,hCpϙ-ϙYIjvgrRˍ_뤋/;ɹ.ᨗI5/s\t C]42CHZaVwoR}bHw+diR}tDR`Ɨ]|ʭv4jV$r[R/-5!+D'Ij#'%zUr)DiVL>zjҤJ)a&ugNeAwIxj-5W)J36+aܬ#4kGQH50ˊ5WN(XxjBTk4ͬ+>O#Qf.hC~SIJ Ê8+b)H<1*O`S4\C*{KErP{ۥVd_@@3京ú^ר]Sg%x0U|5ʂo:g6d-SCF}z([;s R2u?xKx[ -◅l$Shns qx<6E/6)JqԖBis_W7؛k҇`5YS +>GC1z1'juUD=.7Ew-ۋ5չ"a mY['uw%ck=l(Y9ǭ` Jݻt1QAPS~V`P+BdǮ+wD,4 RT}2^):0W"DM.a$U%}QE,I`:] z8oh6 )XϏGZrRPj܎$Nj۹¢ꉄUUJ2'.j2_<'~O39CkE eK s>NGJ@Wɤ"o i99 m8!ǭ$' %ain$MJ,Ec@!]6E˭K)QN kOh=5$MD#ݙvn#hп v[(^!VmTŀ-XfK^FSF1dlP7A 6RaAxv\pjR&Z֔I,A_4mhk&KH,DeYu/^1툾' xgWy՟qeәHk'J'b)%&Ix {JS%B\ޯ $Bhqj"UʺD: c atW%̚l%ٌ%zΘ ™2HCFm. n&tT|ΧeKsR/Bgrx9]G9㸓5PDJkx8ޞ…(=d/Cx*#X= g?tC;e)S`&nygh~46P 6ޗ)PXJ̝(Iu7Xr,ʚ,''amHa>fN1|,<Wqdv9glmAO 3FeF-$>~"Wr 3W/CnLn {O)]<("?w6t966oEA2(9NmK(ȴQބ6dщ\Yo*7 kWX: j頠*0Ѫc ]nou98$qc.Ask+Rw5>V". x7|۝鮭X}ufuM"m6z( ֊MJ*)JDKR ]׫bjXڹ I{o/SGP4+A,(gw䮄-Z!FlRsCcy`n4zaw^) J?ìR`dۉ8llaf N|z|= :,ab_֖( !Htc8;d /bW |{7Mmi LM;gϙ]Q;aM - GDQ w"<[q"6f{!g>坺絾P(<_vy H^6I9<{@ѥP..?1-Jl2 y 1$A|!I E!%bD3g$E]D;фӽJ,'  K KG,_ƮkP` ̻..〧1vuC@[@6Q?Ki~[.T.CwǀZ[%8vf_}#~m7;0Y 9:MvXMʕt'J ?9#OɧMS}}xl䃰y-i? K&ثn;&$񻎓O^_W WG y肌C`f/q=hezHGqI?PGqG/uHO(,\.Bw#ZDU{ mϙȜִu3_, L K<p!}Ef0űNƍTN f2i D>4jY%rZ;A=1f6́܊[j4@Z}Wxub}l%BH~*s#zj/۳ z6uș> G GjN=$C]֦Y2šIЌYS6V٢gH |%nM^.qI^fM5wls%WZtnKQ }&zlBv{OjjA{D%22C1.Yį]SR >^D7#÷`4"eCQv[PЏs܉8k戬Gihv9(%>ϲ7볣&pȄ^Pɇw'X-M|qru}zR? pu_|\ex%?HjJ1ڱ,ISIsKc/AM6 CG}sA[@UGr( X%p4fbVW}\wg\8ݔr#L&?/x:>&|RYQD#M) diRiC3XG,㘲(l s ,Ȅ҈5 O"0ԌZ"OD7#0D'@Elu%8ㇵRˍ8 \Gyv4\ O/L2$Y7̹!>a4{}(glh崬WNB?JFM/A16r㰏_+JF{NMGCw3Հ+*⊸ C#b9[Krm/oMEʶ P=B`මrCn r&T+K -y3@[*;/kw o"$$M| I~6D]U׼$ ٢tYe)lz*)֖¤(W;SѺ>>$ۙ=ٰA6E"Jө%tlH~(!*ejH|)B)M灻»Φ4]h;lF#D~jk ?6' 6VGQ3E˴d:MڙLB,ίbքlAh6Ot4.bK% g ?{Z$O+)7 p,_7++ >筴EAS,6~1Z٣%lFC94L@hu%H^Nٝr5CzՆV F\Uߊ9o#ӝ@"]k^ mk(: =Q KS4%-u0H 9 w9ὲ} Nz(Ƈrh}dqHD06,[haD cp3vNsZULK_$ݴgŨ 'Ȅ944&^:eB!7=aidP3!ɿL^/u-Ϋ[D ~d{&>-cDoHᅵ0}Ϲ3NƝؙ 1~f T4Zd]\=AgsR,eB 8^r\o-%Hbr4l|S y5UV6~PG"3jxC5'I6q̞Q]/ cM #vF7Zr ZoEy(JYsRۻ|9fG@x:k[dֺ١s{/'A:;;Zm:<=@kŲPkqjiup~!&[';ap&vD&:qr8v@pa14F8k54^&/E.jQ^4ײƃV1!t{W_rE'!_ gUFiGh812ZYq?~p@| G b:E5(dU {Bȟſ)x] ct/1ըjOC7*+9W̛)$1zH:h *j0XTD}KNS,L oqp>?1O_*ZNnHc!?,Rv]ği=f/@Fl(%kR52>T[s)_DePy\Hf'ߎNOEy\ko_8I:LEMzl x54H`RW=w $tEcխf3 :Tm4Cy\bQ67I`ç,\߃M&BeEv×FynvW*SA$q1FXfڮNJf1IE􌹾mp,N4~t>xBBSf=~pnjœ.ѝĨH3,oa ecћsge[%=I573+vuW1k-*0}Gwx6v>VE՜g.! ?p-gZ^k"9V7ש!R!H\4#H~ &HLN~uơb5nHpE6hlfvhbEo߼by;Ԍ^xѝe 8hX0~f@I,t>FV7S[{zk[tN"L"H7NQ٨3qL1wh<&8Zw&UiGn^f +}9 N1U0wG&Zg O}^:$3g pK[;=V M~"[ZXmzӗ'ډL? &'a0"GJyQDM=[ˮϱW4 3z <XV,H]勀͎ppf8: F͘Y'bHdugoEcM0|S.+1 ]RPC~M@cH6 {z8Ȁ#~69*gMs_Y [t @ k6f}΢VQyMh}EӛWBR$!1G<:r|R_6_95&c,XSn ΁9?}N(_~xzAřWda|(Z-)*V.jM᫈ !mgիv .~ \~ldʥp[dK])ZdT[2Z;ρux(Jݴ$s6LfUAcHck󲗹 I* PM>mv(I}:Q}I7xRH `v֕wt3նh(70A(DISkC +R-LWKUGs&exO*)~P /wie)rlEXBbgXTQ0B$erLE3L@1 UYE"3|pX'V c^@e0bueaqsD99yPC!q&mAi=_ט 0YLNTT#-QD26ͨke]}%FB~~zweo`.ݰ ERl[ӯp{ӷ媨ȯ>xT=~}4k"!A{1 fd srTl:ğǘ_~zpvEsE&ga} يH-t"'BUᓅ*_d6|= #Z^\_18~.p)va.|q.{0 T{ FaX/B_N$mC8hD>n12F8i2YeMԱ,A&cv[ ߰f|dʣCzЎ,FDAJ!Zz¥?\)"@̌eDi\d_}_w`(|Aj4kb,t o6aI?1#]"dl_6yRLL7kO1Mzua^5?ڒT+1KH^W1i͆KO.CbHE= 02u 8-`OȄU,#r@zJCh0Lȸl֚P<%)~"[rCålym,7=gy| |gxS^-hOC>pاM5=~^ġÏϒzb2.2zr/!gI?Ѽ:Pz>?C]ċMD#K9R%sHbCiG|rDO҄((U[LNy06 wPBY Ovxz7f__x$'.e| fX6 W9WFs'nCt1O3$j=TrQ1Ǔv"2{[m‡AytE ._ H$s#N$F%PU7q!3JC(PgtQ!`m:WLV!〫v\W;ݞP^o  1+wb.kΙ>Vš^fM)7,U$JS C@k6ܸ]"oJW|PdA(*.\w4t.HTW P6i5:lgH TNX_\]M:GB[Eȥ&F⩷΀6Ҷss.yY3A'SC8NsӸھjUF7(*< L- .ӷTxJ俐Z)-&[V~ Y~]N.N\PY? 󑨵8R}<WAem+^ ]-n] EBw/ NSmOhnXkZ'5Ⅱ>tVY/)ѤlMv̰Mc-򪓟,'Wܰᦒ4`m ;D4qVѪΫaE?;FI>5w >m?nf h$ǸiyVa,@se%׹^ ) |!k_w5,C9.?QB݅U.䴢HJ%i'7%GN%`L[˶.jNR2(\ki>,thhriX 9z`IØJ y]P:qX'z0Q+qpِH}0҅cSIzh֖͒b2Nc4"k=EH!'2= &DU*"] nM+xm!f$yc_q\-ɦjd󪍩5^俴L^~@ B y%&ՀɉGµTh5 Ƃâ긟)'` zim)~Ժ zO޽Lxg;1nw@r HQS@|z$"MVkV|pTqJэjyRC_CMzkCke],Y,uRB\E 14|ŋ$(74}a{EN3$ВQuߦ O5LVJ,X3W FsXlEy i<6nO:K%|JnOEb0xn$[lj 6w\Lr0UNtɁ~Y̿U <}.H8)S~#cS>WtrZoe3- jY .8Ӥ^$_{@Ad>z̳} btR ߯Z[{5ڝ dqX)ewıL#@5H)R79bK)/}4##mX3 [ZHO6x04^&fbj<#GXJ Hψ_ Ba.!춚`- &Xqdl9ڦjpC=1PXEc-e] %ԃ?z'/4pU = ~A exF b)Fy⨋^;qv',e\f(iMj[K8$~D-#B)[}5E<ΚNEJg#uv)D=5}aM?@ _@/U+ p'HpXXkX=k<'Œz? _n^-짿vx석o&tj~^HśN̑ ϑ_Žb'x.z)dz*a<(}_l;VB  D.Sx*)#|^^"\ϼ v:5ϲin^ֹ)w^^@$s@?te/O\}d~60UqWHHӵ< ?mhۖ8ȆVd|q@a]q: -rP"ݞ&怆PY"ÉWl; 0:$a>jN|UKr;!YqT[!sdoI)&cs4(6A|>_9>cVe&wW8lRUx,3O^HgCNhAglXdwHh6cIx< j'הۀ PI A~JEѫ X-rJ(yI0 BkT]2&*5 OQX~bvܱHqQ#cX/&@X AƓd{ 17螢RL RRM~w־HZ9ʹݼn x)y8{7^Mq6Z=䡖!"W^(0Y YFRi-Dw=-g*2+jՍiM;[9h2 Aa [Q~-c. :gEB_Z_ys؀[>͞-bEz;J?F('e-t#'8uNJ]x(s<2wn e=^%{t)WP[}r’VlQ-`~PP%&y^( CzHAu8x'\;,S؉<zn9K,'4=lC,W(\y#[Gē>©pga-PX룛jթG#Wc=PA 1MUDFZyPKZLK\EL!-com/sun/java/util/jar/pack/PackageWriter.javaUT anW[anW[ux <s6S ITˌ4b˱zr"!5EҎv nK_~d'rJ»y~?^u(~$2aa(PEy%BA;hz5]c>]>O?g .;_#12 %B0%g#O[Ɍ w}N>t.axTXFP)qB\Oa|b0da RcWk5@ر[JHdEH6m/W0,( !rRȡFU,k%㑌zGpbvc)Y'|]4}^(G1? g,2R0]˃Wf˷v 2N96KO9ǵ xV]vcikBAz|$M1TX DBa \[np*+L(]!/vvܿwSYa%>=IawS+)#ǣ'̸ {2 [b*4:`C(KY:NWI; =Puϔ *IS8s55Oµ`lH0OBVWTgX% UK/rkIVŎlaS8P=" q0lywD?\@#{ј2 x[m | qF"Ơ47Ld%v9fP v£H[ ?\"[0M2E6az7 gQ1i @NA64~506`?wlS{/ECn8!ld-Ѵx^sTM4[;`+hf\pzX06 ~+dr!fh40L fd aS W"8Un׶Q OziaiR6zq~hV9!:lAAFaeks)9Tfun皘A -UW%O#S;= MF;\j4yT-P}0XYK?gRӤO1' x 9r֮x٠7 ڧM uyꐕ?9zJ0@6TUx~?_@ jƑ<\Ɠ:0=.hn "RۨV_mm??OBBQN oQU).8Ĝ`ր]N Bt %ON3yaJFiG%*M;o em H/}g&iƈ]M0{Ap/iP2=4 C$<UPWk.b(%I8?X! l>7dDv4E1$&ȧK}4T/(2QUNp2RJC/H T})@х2 b},'m ]P/Ah=qɢnj(ꁤ=;Ez'n[!]"pw+#) tT\v|~ހNE6X1z]M0<`XN k"Er?r&i{>R:jm|u +nSH3˨ ze ?p@ô+!GF罏ۓ&׽q EvdT/ Gol+)Y.TT볕m@fx3^w5Ȣ/5_ s4m!௅iN$^*1D@iTl0Gg! >>' l\ D+2A e ыyXr|?.nFחɸkϳ=|WÛqe^dmj2;p"' OPVA(e0&&v ttпUG2: IaATpRN hɔ\ ?F`#E{or}ixf,YCNB]t bTl:'Ѹ油?ft2ª 'x8=cwN} @[v*,t )cH*9dr3aA.!{£dYɝ& R)l+!XĵEuZ~fA^YIVW < Xc5`S)*,Bqf'jLkE"@# ¾gk| s?M 34 m\P9j\#c7h-ܘ7tZW?2*H%%aMNN7͢q}᥺lurf[eRr/_j u,5n{Rf2S\0i$L!"amޢ0tmʪ&J5 j14+cz[˱(\WeR:p 0O{AO`d7~p(~40$?)BˬX7)!)"l4JƒS#8*ǭ]nK__FKc]۵M2U%r qI&B"ajΎZ^dWWt}*MKU@`WQK{[#XXQE2[kuDֽR.rXj[!d:<BR,{XVTz AQǷ(=غ~.-ASEVL:NSrŪo_m *$X\jޘm@+DPte/cr1d1|G:ŊkDGkAzy"Ԥ(:vJE$88c3a+3)puMYŴPtU$˚zZ [rOܘ;?n蹔 {::һ`+Li/-M>ACm}e4? me:dCaCݛ;V2X E-nݷ7"ۆCA6޽ݳ[Cɂ]XRgaVc낒OGZ ynHnNA6^8AJ+^J+:`*b6̙ʣcGγff6,Qg"yvw(XneǖЃ]Бp<0쟾FKeΔWwaPp5/ .HJR}W͸͕g溭Ƃ9-KHpEJѶ.K'U)cʀIv0];N7Vhm;*kxԀy; Ǔpr{~>lD9&O%葯0}ܑWl&V#g\V3p tӯj͹" C"M.d|̦yE[$,P]Ji$T܈Q3~+.3G_lk;E)9f}ϮqrA *4)+_jOxė/~кU9Y&2>to\џɪ^6;tQa\1AE2Q$рk,`PIdSqAƊT"wlGЅJ-Lfc‡9ua|~`hyHa3uJ} ncE r;A:s&O!p%gJЛN# ]VcRt#0~r&JeFp@ mSݝ%qNRp'K3s 3\.a:?=;Y!/,xr 6Yl h3fRe̒Iz|@pk(Mb({ ævpB/ 3k@Dlʴ )逰[y <*1f^4oֶH|ʲjoIVL8jul+Ɩjݦ2"~wAs=]2ns]fP E=c<5GM 6wMd&M, =18%!:edhKMߞT6&3ufhmlI>Q>v-8lͭ]A"QYgP:gzNݥԯ~# %aznyO c@-igeׂY3 Qs42t[\̻2bubwm[ŀyX0om'%8V)t=لIE EiIMpӅqu'1Is%qxRLwhYH^$4sxQ*JJ6.bvbn@%F15(3͹y!9U#q2D=nٜ&c&s~Qc[5.5ŦQb-U1ΒJeZ]5[ o'ϻ"ˑz+{\PFd}Zԣ\^ 0E3 mN&qC2W#I/~ڜOISo(8~ٚn7N-(dBte(rV׍[+ů[FiW+ݢhK zٰPm&Y"s^IpnֹxM1-=$pa6y/۠:$䜄'2N%VfOzr1yqduz_-’-BO+_{df&ICKOGOJgBeCY gt:Ex]=(OpH,#pr^R?%׋ṱpo@>hh?#38J kɟՁ9n#+ %|KfLՂ+uvHFQŴ g3RoLI%m;]^ܕ˽e7&'??~!,yL'z = eq4ȫ, өmW?6)E! N,J N*(Z44lϖ Va&!RRYЃzoa8ܕ$dG֣rP`>ށ_>Hs-FJUIMk,.*^Cp5e[dwX^,2bC֢g U0e;#@K mJR7ȯi$C;{ RSZ;z.ghx3E VĆrn8qni^$RN΢lOAP5T {AR&522t'+{!8OW2sza$bSޑϭfO?{BgO']+c(-EM$x-M宝$)<T޻|53c3OFyk v9$͜qbZɐȰ)^lu|ڰթBWV-[xQ7qnEsuxh a%ޑ`dCgVkQ)ҥ1[gRc! q֘W;`r e|)xX)wz:GV𞄖fϝGvgcLr `3pNՉlPլ"%`*Jlÿs-ɯw˺'vNxaԬC3{i6w7Sl/f)VEt_Lҍ>A[<1 ('vĖ #{#ב%H+-w) T! BnnѾ-xÜR R:]M?;x#v;čsTCl 7447܉]_!TX .n,pIL*-$E+K1 K R cs)>裰XbV4(k2;Y☣xz D(zth MPʚ uGUEp<2ãOY~~qVI<<ҮkLbu7OjCא0EhLBW /P;v X`T-jAkQA/ZTlh)KrQIEw~Ϧ44ޙ患,-jT{ցᵜg s6ӷÃק~;:1MN*HB΀I!^O!{_1_2Hf(`6 (>_!w" =G2bKI)) Dr?gV|U'^7 J<~5SPXWb)Gᤢ`p54ToƸނt(0O8_v0:=hZY +2 XEbs4/ݐu\&xJ"nI1uiO q"N;)#J +{#F+qpX"dhdZ3Fzu 2iҙ[)d ]y%&*bf6C84 9̆| quZ2zag68E_Xzbrҋ[m\0,&#u4h9n  >P?4[/&Iq *uRqօDopr4`y 虬"=){m ]XO/J J?2oΥq BpX*^?Ke&8,LS8"!niweG{{A[^L :osxRz4qA&j?Y/ N׼¬ws-Ɲ~֩Kbԝ/[~2%}&X-(){M,'`Dt6l_W"LMܤEpb 2 L"U@S `Q(- +ʃqb}~$m 3WNY #d梲bڳMIɰXDrWcAU8"b݁j[P-"0޶}F Z^œʯ\Ⳙ{Zͼ賄MGql=h+ߍDΤ4͠b}X=%`X9 w ?IOGұCyQ/kep BHSU?ër˹AV=>N4m&]0ԛ=ԏ?NicΦxNqٮb9 ⲅtWEr[r%e?/j辄GQ:cQnG 9_?}go_WcWǹd%VNUX`a)t4QkޡQ6<=jAmMXKa,|6F,cW{;c UWlhw6%#R>~#rV&mf8ӳÃ'G~pK|iQK'/ݟF"sF!饓r0zEʍй8Q`[賑Ujm#-޻\V΋ 13jN##mSImn޴y\SiMp<KD!Q #%QEx '/FN4V Uh(Edel|`45[Mڵa)1wb  {qMBޑLq˥/OVnqN  Ƽ"K=MGPHsnq5MNM?o$&v`BJ\p>J67 ) .{2xE TN2r;&g  TގvU]hRAE :*$<)|o)k.D^dxtd+ӯN^>?MJwe;W▒G%Lk`0ˌ, rehB00(ħpd,gu~hPaWzƋʒ!0 x𲩭ɛnχ% ٮL-&>U ȑ}. A[&xf(Q JSufi6 I"T[ΘSZ4p%0%ENL[O}_L@Y̏ZLZh_B!%clvS@Ow ŴDXHSy?~j^QN7 EUÅh [٘Ah6RY!b$ u {+[ ǣU_/(ZڨFKۨsXAR^v[℅Njh1[;+Am",>uNM|BY]ܻ gϛWrARk۽¬V 0DIRԲ[rWOY@_[zSm \nap>ȗ\cp"el,OŌ>u>Uya%ݢ,Ϭ&Uk&/dA֒IXe=Oetq@·0n9X."]B&Ux6+Gu/"\Ve9bh{v-c(tꉜ[ D,r"9OZ Tk[e0f< u̠ bZN/n7~yRdgA1V]sG/ hYurY[aR#ʌ\9ZDvXnoI0"a9fQ.^o(KeWմq(Nv!l(Z]Bn$v]6-$ ٨ҼxTBE# bNN,ßVUJ1d\FȦuabe`ݽm:b#ˋȉhٲh'u1iιg r`&tF :}bAnN70oOG1D*Ūt4Sã? }[PV7oA\&B!6lqgW>5+󵨂mrzt]Lz`5_tP(JyPۃU GL|NkT>`šC_(i[q'kc `',6JYYEP>?Oa&/:7 ]*ysV{ <AhHn_S#n2K F۟!?X7)R\>3]:B-u2:< ZLBWRwb#+})\ Y A-8 A*K /(i/6m#BtԔD4FTg XY/-4€ #fph`r̥pr@W_,X[EM ˈBJU)C,gb> %HH)ZC|0uqܶMAHjkMZ1d[wsyb1d'/ߞ47jYvJ., } 3eo|\dz^0E<!DݡGi0Ő7 KU':&[jdƛ`^hnT|@ZPaJ@VIu ͫ|~}VsTe [a8lT*iްQ- BGW5he6Cn܅?,yA|˻ i񱀷p:h9vZH,5hli.e`fߣ.Nia.%G:KPAr}*m8_;LS>NNcIoC졽;ʒL1 a?ie"UÅT`(-&#=Z:w{ϺNd8X׭97V|Aɝq#5&7MLn?)4`0$|d/_A,ַF B0!+Ԛ aqp^dCC:]B+*_Fpa]gutP̰<.<9C/m+WKS56%M ;f73h j^f#Edt V*ȃYɐENYL>шv-l&L^/wb  2dli(Kt>L.budd^SH%A81m3˺^j(ʽ!.Cq\ˢFCx/'>G2~W D;s /DiNm?Ych{O o CA0H[&kDX9zbu2y7[ WR[6# 1LVXeAd̢DHKKDD^0nY4 KIFOެSG pGCV*c=f?K^jO/'۲hoUQW5ݍow`K9T𛹝ZqHѦq3L`io̓"ԥ&`VM*V9/{&*G$Hrb>M>~*~9y@&nEF+}N%g6jY΀g7R>dMNqsl9S22L Ŀt#6e{|s6,:dO@֦KgeC! /ޞnS'踨, iDL5+ؠ̱x\Mzq#g˵#9-*o&Sq{&t8E|{i;yL۲hm!C8sNO6F5)$ěp6veY)eum5|VZ0n*񘱊J SxٺPv iu? ޿۴*nǜA$**dJJke[ď\ȥrQ+PUc40z`MXY/+s1`iQj-ƄjJ@`Wzxg_§-m()#a=$Q<}6I8rdʪf+yCJ(@fxJnIZ,ր Z;Wϟgw3aijphH6]?"i>w_t"zWci#͵x|KS{usR/fס5߮A1 ,ߌ'w)N>Û9د-ELdVnQI&ڒ<АFmd0]\Wl^zKPt;7 Rѩs?L17I [2e{H{ Sؗ &:](o|OKQ|Q~x\ڍ*^ˆ{`|/u>oszIDdvmXr5WRZʈڜ9B_4RYi Y\&IgvATpa ߩfI't HzBg*;yem =rlv#CqpSv "ٵ"T3J^JyxX1݌D:WJ&o:z}:{..G:Nv"fqujvP(hٵl?@:YKcB;E#TvfuIFyϲw!gs {nomfю}:lO*O"Z缊Ǟntx@y5O“{doxGuzNLRQ>-/0fB~PKZLCLd*com/sun/java/util/jar/pack/PackerImpl.javaUT anW[anW[ux h$H&w{bfys;;؟SfmĎp~3?M3`?A6JRͮvps0u@8Ѓ%y7N|~ ÉIv_O=xG;6prdH?paJuB) O;3ra'Yht;K~6>=tJ/(=Rsh;& gT7<ҏt,eҘ;Uʻ  y9Ȫ:AOٕ5)!vó(^8Y4}0NņfX#/= JwN xFn@l , S &Wf7 rʢ9}C6]T7g ?'qBL;Ka\?H7%l|.&Q_Q'嶘~apxA)d.,&Q`@X2l)p_IvAf?Z#O CnF$ yBYA4CpL x$r|w%$,O @ }j =ѝ iK sbw4RRr bL%9 ygT@ȧ|D'i Lqk;ꂛL:w"YxK9щǤ*`-nA4.g<=>fa|$oǧ=o3 {w޽ߍW{,̤NXqhSZv:Y*;:nSתuuвO+_Vٲؽs R evUH`<"DevMv XS`{ˍ~2!GWq%~- ]<<`)]atSi ńJhNEj!w4e- eFz!D bs|s @8Wy;IˏAQ/ųn1T|u;f5UoVpgŠLL9-(gP0zACtŏ9G!X&AJlN:- BT>9uȇE)w }R'mŸ>#(5,5Pq45qX;^HId 7."zQA>J0i0π*!g F==6,++f8x7Fv`8E <:D3/HFV\;yǢ47"qE`ʧXUDs^=IC9 x yaOv7;~;k/ rok-@nڝi|:eɫ֥BB$ZA| +069׃wx{;uXU⺣AԞU!rz6 >g^o8 +N"!Keju<^ۭ⨱8T\s?( > Kq FK )q|9a0: .Vc'Dq䅵az@f4aPO 5%li-wPh׹wA_7%_!7m^%d/Bt$_sްdZ]o=:Xsa+ pݺ*zBz[J JykAW= lU`0RKqw#6>3–%=_][Sr3 KPo*l 滬4BߚWe{ΗXKh^a`xqKBp `UoyWn\c6V$\vǽk\849!=*!fom+7߰g%Θ :䅜6󢮰HX w0f5/ZbﮠHcZgrVhaBNMw.a6 Vy騶fp(R'|`5),(?&!CTۉޡȗ] ?mmG(NoԞQUz|wٿ;j+ŃO `ﰌ =~Kt-yQtn/ВU=^GY;d"`\SzkG057yK!K'Nxd#^Io~asYdIޡ@Q/rT6caAKlG|@ .\O)gMrCl8k*b|k~Ѣ1Ì& \8w`mȎXϠJ9V?o!JwZ&M0"9;*4, 6uU.Xo.D":k [r^`K&&f]V 2\?\ {v[-eh?Y{żM*vSO(WZN[qr@U%oMS0ܠp*G舙A*H p D.y`j4$y&1wr%ܒ-Nw؏+:piG$@d:WGzn|m^_$lؑPP谉; Q?y=ė#hKPPB*H?2RYXu}6<%>'r n㥒5|('Kh(ĩ,u?HTMys\ rc]@`)iqXAA9'$Dg3 !! 􌫄Ĕ<-ZC"Ţێ.'"~65ϫJTQaщa AݜJE}PЖdlDΚ [Q" LBMչ4ޢ(GiG=J*zVSb |Ru<8+8jf/cGPu+͊&+zqp @WT2XZl(C`xZ:l&:AClCY=%2 o53 %JGeDb~g` 83H鏜y$ՄǍw0Y3*uyu#f(}7`b,#is>n@bS~QIU'rh Ek]t9 Q"SjO-8^zI BP6ʚݠӵ? x!+ VulWYCﲫ^ xB 4ryD C3:1([8:rIɥva^ _`"h?Ow^u^QxkY 8NuQpX9Le\Wfܸpۇ^_©l6^ /S?Wg㵩)j<5,z0=X|gqsn<0@^G N0ױ䫎M*@)d:bql,+x4_4AQE3*$lT$z*,xW@l?z"z@Kؽ{gpH`UGQU6m b oJՊ8vd᧘6:[]nK} 0zQhK@*Pm-(-\Ƌ}P ʟ__Qu#oZWhľ8 OUG{n%Ee.,J:6aQLYF ~cGtd*O"$Zp[j uZx^Xl]* jlV\iۯ*cWJ& [(v/ۺ 9IMunnی 'G-h Frjs)-1x`A)bekp^B'Xօ[o䟍}sR, [mZ.V,̯z B+o g%?_8 o8mlF $ϒgĸo `~ өpv#_ǓؚqQR@:ON#+M2 7iXV  H3KL3ď> F-Ʊ>Z bd־_|urBrPKZL\UJ0com/sun/java/util/jar/pack/PopulationCoding.javaUT anW[anW[ux ,+v7@ Aw/[uG"Fhf{Nx9^ow8賫{`<\E |eAh^Q,\}]ݰ˫כ?Oqlcv~1>cώ? 1])`22Dm3Oğeh/B$,[ dhI?~r~Hxy{l{"L{IG!( }S#P 6sihb,3粂k ! & O20`#06ei>2Es4y0q"\DB, C5v~Iي/=rn5 >ן!?/jS%Ȼ ؚ?x"h4q?ݮ3>WōXһhCi~sam~1;dC2NR$HXQUC,g=F*;%GV uޗ(m$d`A^,a֬ ѐsq8د"aX{&IVP:d"n0clЕr[p4umSЇjN P6pyaPi]9 ^#Q))XQ,!wo 3tT>[hdKm픔 [COiiyc>U7;)T|A) p{ٴz@Ⱦ1P%mB 5Xiv5;L\vR7ss"[$ }kl~;Dlá,O9Dp陦Dj_Mل2٧n<cf!Fb!hBKYB8c.2FE<1|gߋ:љ* *З: bS}0H}ý8ŏ;i\r *]?st"\͗\?BȦS?۷hk(5m?ju5CVv^63 qp4TOS 8ՓoK]!JBn2;nS%bnWBJg'*uKY_Z`y8/% AƁF 5r~tɟtH9aFz#3qVty_~:ߞUA*lS^P [ؚyr]1@|*.?DDB$P80TjxJ9.{+pM_!Dh V*REL 3'%4BGW#М'8L:js G-3+S?XcqKEQ\7l.,te~ klAG٠#;x=4!ZAr:=uk@iSH,zo$@Aߔ_Lް.7KȆ[cb/a"|$  &~zgO>~f##_—4'P[wl )((GΞ'Iv@tFD,m瑬Ʉ{ك1Ò)?z×P5>}qN X9R"pZg:Wh<[|:GuQSN>5aFBrQ\_QZV-aWeV_H{[c}}n &熗mWČUppqF}&9qEŬjǀW~U6`E`QDW!T.rKo&^r֛\ cnr`JLs?v"x>s0WvTKzV]H#I$R U+R 5cA fw3顅QzꈐK%*Eq㜮OJomƚF7#@Kxg486ДgurʍZ` J5k*Cr`8ejNmH?Z&\JIX[•DcXHoYUgy\$ݴ{3<|e-`ߋ=T7^K;EI 7~Ϧ %#9{hRA`%zH̢Ғ(ג_,HnJBa!rǑNid]"jQ ,cՉO2bj)Hq?%<}g;^9^8J .P~ 5-yvFVT쩗2E {n*6)C͊?yfZ…x=1%R h@ w2&ym)BōE#aJ**fJ"+xkNVGjbkj'}nkBHfY(/;(KI9mKSW=,=O? N#9!<`8if^͘N?hVlq7,AOuz^>'괪%.@-Nwب8XZQWr@ ,SƵ#:/Kݒ+^宰DO3_LGI?&]H }3Ql0.DdIv^󄃯4lYʎAkOe4.J& цqj^|&O V>YRՀY۾GuQ \cIKP-TcD+6q@ruv2,*ZnIr\(l{BdMn!&G1Dxʹ֠O [AF~GgoeX _\B fm~Ovߡ jKW72g4Tt`4[~[J#S2k,+VC.T粋bJQIصQgp0>$VlӲ+,;!St2JSk2z|Syk Ţ6B%Z- ReeۀjԍߑX:D Ī# pMWXgv ; ʋ/R-$; @QlJ{{ ǨXc `@ ? ,5:T,yk>[*iOje2NV} `atpEs TC1;Z-NvuZ9œ+eШ VY H/z@~Gz=Klf.,մ,i{ph&Һz~@xTp-LѹC%[" x,?6$thH]IoI>Oxx)5bQOf)}OqnsjvI͎!6[heiaɆV]oj@ fl|Эwj֥K#?ɠ|[o~#۰a-|"VT?<taLT㉟FauZؾ@#Ea{43wǮW|IQ nuT{e_ȐLQD8Y>$)ꍦe#lr]}:F$ٰ-d84 Lʜ'&,舰|!adAԷdYԭ.oVm)zBn !kliB1imQ|Ϩ[ĎeQC ɳP'BBd_/1[Dh8;%&YmX7;l}} {9?~x60kOE27q k_,oDƾGlcjkwQI< ~wc;ZPֲtitoDC%CzۤځBK<-@j Q"W|^᩽6阥"˷xD+<ild l4M6pD%Y`IɍIGQ gcՊ`zYh0'#W;⯽낸:)!)?';Iy w8>-RuX=7Z$)oxUR_`:fZ?<|u{tٯv:-GqOchfUx ?N_mۧ_l4K4  uzPKZL 5d;'com/sun/java/util/jar/pack/PropMap.javaUT anW[anW[ux ]s۸ݿΤTrqrMǚؒFu:$)BRk{wKC Kbw ϏsrW[6y؁ ;$t6FLڤD͓D0Ěy6pJz7SgLc2vnr1}?\OqLplzݟCޥ3Fc%q ƈhC;%[@e$8(as='=&H`$bb) w edd̈́yH^H.G 41<+hlhcҟ*k,TDTP#(V?܈D\m]T-¾l8n%hCլP`hт.\/W4(er3z _4Սf~`$lsz=" {SؚiTr %Ahu;_?8p#w71ݍGÉ0z(3Ly@SD$(ڢ~\Q!b;QC Y5tA@ } "4\iPpxJ y!თ/irbꇮ!O7W _92hr#W''ݗ'?vOݤ6 \FS{ vQcm8dr#?׈Q ־DGll&۠U 9d0АՖJK-b-fKhEG:G.CWv|6r5s?t:8Deel$pg()^z f zM▮jFH:$&k'~2~-2R h8@QVd.@5wL9 pܬya$8$*Q C F WXeu>q1Ag>:zGP ylBXSe##JkX"cWˆ eڧ b9>&v9ɼa !0Bۋ` "_vRNچ5UT'x- 6+|YϘ_'~Л?9;$f+άsΡ< mН_]VUeR P-xrf|È͙@>ZDFGp )Kww3M'}6kVx)8 %c^ &>T18n۟vHID`dz[p$f]~*gt]p MnƧ;, ZZ_<$6O;_/! a@'Ф:H xӛ: XIE B\^y&"2-| ?{~7aԛLGiqICU 1-Ѓ-Mx8FDaJɵ"dB6a= 1Cm'B~:@0\@a)4]I@9l5IgY y'X'ݯN~6\*LuнKI6#c ]{UL+Hjea U3cᲞVBRza2tqbH5yAZX`yp1XdEȄ7@ ; cevp۷L~ÂoM!I3 Ӝ1UZfu4XTmPٶ\fvZUoex4  Yj>l*l`률!2ɍ{MK3$^K&JTn  `'[$P524 lؑ {Yʗ|؇BkZc+YctKc]DS(- ufT[$̴9ƽ6l`G j_mDSKcɲLajJ} y7pT..th5AE]E^1cH%9VS g.87PA8],-" $GưXjvB#f% R%9{GZ/ˎ&ww#I-XA ϼy|feg~|uϗզ;uW_' ]̮\D0K(WUEz zoi7-j'L~;LgV@wMd6dc;`=J> DK fFꏂɂA7/6f5'i68 k6{=%񌇢S֢Ut S,U$-I;SCw F +iM_fC\@)eɸ;9w3)4J+&>R=@t}~7?,7 /aY^M']%6—YALla/R_Vorߜ=1q"+[΅B=}*qAyy- vIa%LJ &25]" kUZIu[ ]|]RW- ޶,SMTIۭh#QpxFлFxCost~<^ VBFWV [uҾvWV |9`@ G%7Xiʆ7JD+޸;'%P {1)m=3*j{?YEq},qsE[j3Omo_ oqkEoy.m֒t|GPsSlo˝Gjoї:Ci:ȡVϺa5p4HmlV#~NtϷ|Gkե-ޏ*OңF)H=Nt$tJZцV堯?E1kr  6Es-"jyvfM, wd#]dXJ눺 3pZX֥*x4<5#/vPXޑڲ$5,[z Uưtӡ@ָ!c9ܡ{? 39^=溜zh''/Ympg c hig P@<'=sGۖl%ݟ n1W%]"&[A>cMA[fo*n3@W_C=,Ս)}WԺE p^XxS@V _崺Ț&g+jQ ) q5w?e}MD׼J;~ǧUjk|y=j F lѕ>Z hZcPMVeuϠoij fZ8נݥ|Q *GIɎH#՝^pdݧE(=ՎI5e۶(v 7Eu\2Ќ`^ߠBZu6yz:BᕯUς^M-WU"oJ!hne޺m:#OH/uj=[$`hH(ψb]kI-!q/D_n}k_)EU}&,iYJYx^7S{t]Y?lŭ%µF{ǽ緣PKZL%6)com/sun/java/util/jar/pack/TLGlobals.javaUT anW[anW[ux Vmo"7ίSrU!7S>]>PTwR֞yf<}Pƈ]xOj?oX(90=hY`ө9n+P-7+UQs! Mh[kDF3QkӄVaB#=5Sf?F'2A#aġۦԑnppqnq77aD:"rXqcVZM%G0xW)rWC lq+fJ"EaƉ0 k&wfy];d%c\=!%^\6@Hu9ô0B EzgC6NYjᘍ{=>S|&lzٟU]:g1@ӥ4S`w`Fͣ{1۪y;dHgFKXxZox((Ų~Jn6 @^gF`'?LVg;c-lw’M<Jpw/a՟~dJ#tЛ1Utب3f<NzDGv 5hTEe`AŖN Hf GC>[; N[lkH ^1s+OdR?vp|8.@,ib !)4hH.#}B2IA.6[rvMwHM Pѳpxu.yW`Nx>b&&|]ݳD {;j"R>{~NKn<ٳ ?75Ϧr-~Sy ^{ozD 5UCڪyEn}ϖ[ ;porHspH.҇&ڪuvd%՚Í'ogVc\*5E-C6V6t5ㆇ66zx"M.47lzuP'S Kq_@s 7AC 鑓 o[B@]`1? -$T`U h:To(@c'3gJl'"gV,`бOR8yt>8Q2ޝHi%efh6 Z6R .D[gLCfܢ%hcu+j3'rEZr ] x@)U8jdFycY+~ 5otxL&c)b` Wli%-(¨-"Pٜ_^CD VI _y@]RyP6 yˁ*٦]+ Bkl (J0¢56Z BZ Xm@暀Vp΀|qM?t*{6#Og,֭#@Bj>XbAD<#8kzL)C`o]=g Qw޹N׽߆^%9P`k;“0Q&Gę8mn")Z5*YLgӛ)k%54m1[S01EҀ^ !7l6Pө']eV.6"Ng#)#Ur`Ö_bE~V`c[szջtZ3el:޺k z U*^ޫTͽc>Zsׯ#o 8mа_pգ(Slr@٬ e?᪭|;f=7(CM 1ӧ :RoJ&)r?&?’*-7/myKDξĬOr?? d}cV/gn~?}!XFrҬm:ry m޾\ ]1&?$3Leѩrd)'c S[=2t}@n`iˑ!Qdʞ6ن;/ƽɤ9>w^.3ؽik3zmZq,z]d 7EdslJ͵#~Ifce}7r) /jzx?w!T^h7spTY!٬hδw{L%OAxE]Jn)G~jՓZkQNHF4 ?si&{ rg%Mճ{hfj5cQlܒ^h<%^Bfk8?bAݖ*wGfZ1ﷅTn-0S|3ٚH݇ <HGxQG&X`sPKGI @ DjM$6aGXa̰1 ęoxÞv]'C^8 dQ=YSԉRO")YB{OW*06^'_8i~dY+Diz -PuMtG>zePKZL.$ή1%com/sun/java/util/jar/pack/Utils.javaUT anW[anW[ux [[s~ׯ@iCԊr6,EٌːT;h]\.e*spYt:E.swG3eL~hm¿PR?dFNJLyDSD2;pJڗ dpa{nNwcw ]vɻn;FHc"`%cDy|G%;![FiU,,aHGz$_ m{Hݱ̅zNŞC~ 4F*#4SK׾SMhK-~ Ay[WqMOlF/YOr Wck[U<,1*@H!\v H^eYz®Gd\MjHp=Waa (.KiwQcmW֯sG4_c{ 3)|D"CjBӣ=s0.ȓ&#0er".5#~[vʑ/7 =,DamPLhNIN>I </օv;24X5NLt, ܚ/<_;=uK%.Z͛yku}C8wB%& ň n[۲fl xROpH)XUn T=6{J0{ 2Fty鑅|brQv{!9aI WC3x tecvՔn> AI÷`r#'^vq9ԯ!j~XvsSw6L} PJ4ZjU|~HqvYmIoH1jȾx5//ׁ2Tp.=_p((7 e\8Ʉ*MKb%6&Bv)a$%JN T5%.-p CNN{/Ttd;-J˃E7 ˚u1xb[ ~(k7yE* Z,6%CfpV_bSG4.D7Z'Pn2~3XF7;Ŗe4aA]bRG)TT| uA@_#80(g+0qoĿ_`B*\</Ѐf1&MVht5gY;m_\Yy> ##gh)U/'*z} }'lZ פ68}&i6F!qF/bMm9Po8@DhZ|uϺ0qGQːSeHՕx$Gc|ٛI`I+` wc{A/\s *^OKDu(#v{;ʹ jn,PuTls G4 cwr8^J9 V}[1[]78'2kй[B90l?ery:j˗zQXZ'1aB$Y!91n^n zpww9'RQ5qh>S2F%AG@}˘ í'n.=.{ Xh *ԂPe%-қ"C}tx$<eJ\j1.eb{,aA_'+bcԠA jG.6 :p7o8O6w1u(l}KE6v\57\me9e19Nh8U.q"uvUgӶ04&6p!\yr0_*qx\u7d OӝNIBSbbu:o8Q *0=+:ݦ7T&W.6ãMU0C2+ /tvP5z$ڙ#>6Ԫ`JN'п&%gKU1 p,4by Șcڡxv <$t%7~uQ8lU% 0/,NNb7idƉ `o:1Aox#c>p>ưfI@|O'u}` B*aH;RtP,n[G\߿MӋQ.V@^%A?_Yg5&T 1Py3M%M7lj*`˝OVNJ%]#DDztӥq!-9qcX5},T8WP_!ͮߝe}t݊2q,MYNt'W=fdD+snXV9,Gř:XPv>Hz$ .셁4E: A.k\ySK\ɐ]2T#(R#?ܯ0d$s\H5q-R(fDQ+Jx2lDm؈J{}' (WQaH&?{$G"D2w+$KѐWw 7mC_#O#ۮk E_24>7$:!hN9r-ۿ j@ίẤ1ʽ`.*>*W}cdcRa,;*bjXEyđokc[·y:ڷ2m/X9?T9AL% NB o,a2XjjT?}/| GAJokɽŽ7]z},n&-YB'꺍CJiH2h:mp3z8=sOnI܁u*{h?S&Lލ:4Jca-lAN}YQOhDMT Ӄvޠ,}}(Jsu>B~){mDa|/7Jdjҕa1P5-j[X{QU)q*><2EHB{3|͍MäwebyWkIDd LnXZ/0<3ザByXOlF;ϳ0nIPTmvg (E9Jgx`.}`|v=X B "n طwt#xkVgCr դǭo1OpH~%HX֥X'<׭jց5ȏzeg ͟dk#:=3'W(Ӏueߴ(y7:4|g:VVi~Hd ҧ؇΋ŝe 3|S]J>5U|X]")֏s p6CwU j9aiECZtzR& =8W zM|ap&gdZq6ų3)c5S%>hQ 3Ni`G NO<|;_SQM2_E_&H _ ցHPQIU1N(>n\ 3A[f;%Ͽ'XH"DK+.nA4e*R涗\iMͅr`.^tkG~4Y3嵉) R 3ퟂV׾YkJ$h$ )ܼ;S z9B"$8YN?j!{:_02]}fBRrǼJ;#L-U\8<[.lʾ;UA#'iK'lPއ>LDlV<6_D[uG'bYTS^#IeJ~_ +!"z!k՝ ӑ/ <^h DY˛tZ)д|#u݉ ӎtl,i03*Rޗhg@xoM 4R<NۉUP2RoE"kxy>2b| &Zn)~eqVwq( 1{_"<+#hA3A^z+}(_)M2cEP=Fϫ|BD.#(}Z$I!"Z܀qK~w.等i YD%͑ꯣo|TM%"(- W#dE& Dǂ K9&c_9 ؜Jq 2w.se ^Di(aEs$%2P"D%ns㻹SDC/b?|?NF͕ܿ",c0쎱ûTx#?u(",@Pv{0YRR]x}1/ [TF)yOF=q̤-,̱^g/m=XzY=[oo3 ׆5:2ħW(-) mLTA9!&%1WjO]֥}d̹&j)/,E9 "l8ORe'Z5>^U{#8)Ň,O;{|VDv'oG#u&ʴrnm;(Jkj oO̟5:5tg|m*X\xK4\\snv g N[RVu}ex<\k 1o0Q4bHܛ6#6[mA_w[)qIߒ~E\FTl }*zF7V7+oP2Uj4G>T;RJNaZ^Yl m5N"B)u(Nw\R"?|ΎJ}Vh av9 (F{r}_$&E7twutvTT`(*cAۜo'L+%,m},L-ЭIG;:F|+mD~yS.pN7o#B/Y1 uW`Sыrm.XEd2LTyj7蛫X«֞-k&,'ՃThpըJxK7r~iPrU1P9FɧZ&<*ΐ`E,b5RcE)u_OEK0,em!6j5VS?f|Y*>}G1,vb:iaѰb>fLxرMM*SkC%|־'EJ/8wѦD" Z*zh#PwV;T Kd(}fȯ93\\]T&-M=,+ 0vq]HU GH!4t8:.辫4/n7$~'0V[UY/:,I :~W,ZDQk*u>w2"$x;%X\: `܆jun--ya=~ˁrFMR cT Do{gms&9I mZ0#%aÈakƊPš,CU c\Mٸ]^Q*8?G@q#ekA7 "R~Gʂ cR jix۴H/: 9 ȯSξsK]Tq.G#gn@O42PqnH+=:i{\ѫyubfP3!zQzeNv -=ْQw('vAuPSs'.ce+Y [7 ]#w49@)" )Jں̙)45YRՏO?;(ȸӻtg";;\ "`8Φ?(g;sUtܕ Uk4z+`f EsȎJ?9oLCṋ :(U~~g( ΋Iڇ|6?<:|J""szoH5]?PXV4MF}oU h'!y]fs)K0j ا^Y|3!2I5X1V NR {&@?}aUlp粮QO<\bك/2+gYe=0Bkb[\ٴ{bJGMCѯ8$֚r)jNƚ6!le㹳~TJkBy2s9hOY!W?թC#=N''+jŮjưVy1L t~_7>D/S4,]1;E*eGR=*b ‰9A$_O5.n ܽ I/3*3/(kX:gL|; R17}ۀ[Q7HѓuH mũ+=C_M+Lu*=3)PX0!MgNgnKv%%0 ``ǏPlҊF/3Bȗ-HmcZWcMf͍T`Α/Iy9`"iLڍslF[V҉<}#Rȯrcgs2ȱ*,mdTI`Bf9jleiCB;3:G6ޟcu Z{ Ͱ^%hMt_6d.|.!6(:=|7B:XW咱ʈ3%4uC.}1WÔAtg+Z.`C~l`E^qb[MФqN,Z*wp ەM_6x^Z Vv ‹Ġ#BK?k#?q(@ 9 G'='*Qs6S\u3.O)4ꋪ _uLxr,{RF0.t׺jASTkVBU˧o*AVN9M-bێr/ OsayȉBܠlOLf{,4 Ķ/1))4"J8YIr"][Y߭;|.AVNɆ/6O5 JM,QG-QocvReU*0/R@$ ژEبSvKNrIeDIYt;A}(`.uL*iE4|؟.U+0 ]mg\Twc/fEOK\]pc/-uJizIM~oo6*6R:E5l=ސiuν&,_V\nt(PH{w64?9PgiM ZhyI{m;?$'Ds\ ʔZp0i1͢k E_1ٔW <_,HW| ?a= Z V$e[vN\YigQn;k}1Z pVt&sW5*јa.eWj=vb#xzzvא͈ɆЯ* \V3sg# זF}N!ǟ|dV튲0 =4Lyl :jx)B@8-@GWk~T>i$P ٩4W_:?Cm,ᣚ7  Pݲ6erpZXvLa4PbC&(/#ɗ{]+ ZA5kEZݩЃ);EbP7K_"ݧE X4Im; S<)q*POWTEN+Gl{!8H2~̟evK3Tk\m4ݪ*ÉH-r kr]*żp U4)`xX q"-0kp|(z_Ԕ#ĆZOSaH Ң#X֟{훌 SDbzNIn{}T{aiy O~Qע,0b+$ȩneoŻSwZe@dhjr+҈Գ$7%+cvra_  D 7cϛy'& JRryٞ7zy[w\Zy1+Ux n 낋yKDd\a/Ī诊Uu"]mnM>|+YQV\hݰA4Ҥ~-d{,Mh&EP3H^@e+ ; İ'<-̼(@UTx<H=L.;E(!Y :V8kW%`"r*Тzp{bp]\T3ʲylCdgo"d`T!8$GEŠ?c$ 75.;\Fy۫'܎KꃎH՗YK`,_fWv Xeɺ4 q::a6)|gafA|' 8)\wV3}oq76GGd`Ƞ)c3dJILF%VkhJAS{MuxbPȨேٿ)XF}u]OpEF젚H.6,J jc,;iVhIs\H8hPc뒤 I-7IZ߯Q8{^]~B0p X\>=\ᾒԟMSBToV Q"b AENm\nxR01SIUvŚ/1DĊ1ME|֨7@ڋ?|&6 e%T}Tv]+w/zV8D@IoP"LNdG3bZ/_bixs ΌEZF|\Ht}[ i$U|7%Z׼+P^ ⺦FѕɭS1#jH2큔5/la. ݾD2GӺ; \ЛK~єqjYהGe q^ȹM:K ,}-D yTu3.'=M u =F&h\ LE%᳄"lН u벹Mlg#*$} ]#r0Hp\-w dtgڌ0`f?x:jp@8ԛK<=;R4,j&-sOi9KX G l/wmP;sTΦshfrc70.@p;wY6pE( Zc@6$P=0X\a}CH,×[qz˃!|Xz !ɕ"*?bv^g4H *ufW>3 "5Dt uz eXT6t&|n9 ;=)sY}k/]m?Ac8Qqv< , ZɀTm ww~@BW!#_ صU7= f+H7jnqx)Kd&CK ჱow dI1U|0fY}?QكYJr]‘l-Lvx;q1*,#JEhgzɂѢ4׈% +P[E<&i^'x=` `r&J=kirf VN/GR;(;FSO{]$+ojD< re-9/#Ke31a݆URUf߻}4|24 K.LEA2˻Vg{UJ@7GjRf9~OjI'y;y/ j{tt L/s=CIa5".̙q >h(56#C->/ .8hאhC\`PiSƧ0qH[.iB~ _AlA'gYEH;Z R(cFd>+K T`8h~σ3'<{@JNBV, WgG)MEfyuFl;4" v-81rix$nmYGg\/I«e 2J[!&#g E1j|ykZu[\̈́^rs3_Q\1ck <;3za)8ܝSGH7vaI?d*lז6Ո"[ vl @C1NokGk AN8m[Nۨ10F &{7_k/ TY %؁ӣ3U8kJ4Y(.Ny(N/p6ǦU_la$'}w}wQzGi@wxN?\C2.w=hi;7-ApnK򇦳!fA /֭f?߽:`DxU4}umIq~_bSlF UvpuԀui٨tBYXViQ8Dg,sĵ^IXdl$ 3IВoz՛x}7fW)eI%U`xQsWp/Ye/%T۫;1)_mzwzX9zdjPMwc@:z Aڷ LrBV*OY"*k u/>y"6@U*ky(. [qװ(kM52"i0lZ,sf%!JzcE q 1Ѽx[mK@1>,76jtrC6C~KGy\e/'|W IANG%'dMQ6"|%"F6X.̞݃m**ǑVt!-%[ؤ%Bwh&7J<}oݩ!@ L#H\mxxf&")Џ/2;.vH6G4оϦ-5Qk)+ĭa#*a0_aKkpwȠW{aV7r*tTGxhQ"CIYmcVc|~כ1S7M*'Z2ӝ5`ن 6. JW)+b]df[ g QO1qGxB4>$sߊhCP>R|䶑b.kFD-i~ߎ?l1R&4wJ[ X{`QTeV<07/_yWHLM0D*c])v |Iwʌ>1[y:ѭOV?TJ8H,m,71 V17C' p[ImIDHW ulY{6Ptcpʭ쀪 'rm}q:Ƒ4C> [|cB"*'zۺ*`LQ|a/h3)ix_fc$,4\ľkv՜ǻeJզF{|? vm&e9 -b?R-`?6s&mO#~/ LC`TF+wR$Y4It,'%M`a-a}]rC),~DzN97t{(M8vbl?___G0wgN(a'=OD* >j$*inՐė }.6 ٥̲hsUAdx ktmNN& ML* o!ܘXV (}4kf^ /\G|8 &seRQcd& :PU8ς!n(F;lx y>C49?vߏG0^A=/j6oIJyD0}ځl0_tg+/8F -ak-g8[wWT)RFu봈,դG" ZReoϚEu(4UCxcP1~[SI'F`d~ʼw!\9Vૻ =2vF< zp"@}K@ _)3rwffGԱ1^2/*br󲼘G(0ܛoltA d!~7jm:/9͹A {{w HqQ .51ޞ^Kfa %md\2܎ Qcɻ7&Q(@:!.zcͬGG=:|`hx<jOj$ j̛XuaVXGGMd,3yWLp>jt& ,cehqxԫg a=T\Pd$=G\_yﻏWNڟ%D/;$=_sOJC(1qSOH2`t=.zΑadZ, !ڂٷ#A 8w9G)iQ 2 s@BS̓|%K@ch>rdkvX)Nf{t*R91Q=P0wZ)_Q[Nkؓ'(sPhېJmS,qH35}lgxZcP1ݭ-MkyQwH*V\̷>.jbvȉ3C%Y:} eme QƈbpU~pxufuɻk8qGŀƃR$r2 ;Z{SK?(m*i[ضȒ!b~M+c;R6|Bߐ G -yaw+MkqߴOv5$c;s 10AH+e*۞ved=?AÍz“ȟ@.R[^ =?6:6걃۲md|n.b{#u g :/$#v-ps1#"E547Bp)¬c81UgRVd}?5tL<Dy;Qڄd¿KYxڒw}3hwX`.a"G⥳gI.-S`CLОt_*+ERrp ~#TVldwD%s^]Ùrp"+^ѵ1s Ď*9`:M|P">i"Dp| ,,`>YZ6@!fDcқ + )LJs[@з#l(KϞfA"(tMY(! rrOxh{DufRcn$=EߖT4||fs}_JK᡼lXXkE!"O)(;S/OҠ=aC]wn#s`= ԗ U[HD_rn*˂Ci֧x[0<]1.VX^[JHgnrR fȍRCpғ:½"1Ķ-is.!rkٙMQVHXG Uf%}63,תxG^D{{ }qBn䈜_"#ղX׳8#L]3T,Ky+ q9|#LKx {lB 'dD-?`yn̚*:ZBS!{dǚ30eQPo:sg{vRW0c/IUIA&Ã6J=!I[KȷQLP%:`t\X& OCv@3Eh+85ԁDنƇ ɕ, m454=4n g;c2{b0wǟ[4 pFGd"#Vc!xݳPfC1<523v'uHtei  9vL:b'ڸܷ3 vG0y-,d2E:S7qEsM)bm/}XùV`~,wcl2A-)U[t,`:opM_z93c*Sʟ w&fHNfQ|Mm0G[D*熌vgȽaO|x4|4'(Ź-p3SKN[ ز5(b+~CTT SDUyESd9^. eȥgɷH̒zQH֣pD@v$t^Td0 oL>]#W޵5I1s 2N=A& L_7*dI B N 8NdT2dhłAT=Ʊ$bi`!;|+e\[ZPEzSY5Kl %ۤ8-;ZImO!KFuutFmcd`'8K]7J`QO㱲z[N3x8+#4 (o/&K6+_u']NAq2#"#O'M B_ءGݗ1Y}ihԊʯՀ/tܧs7~:_ɑmAQd72:߬m%)`ֵ){?_)wJpg^(YΣ`|D+L^Y]@II7 r&k;u";#b_ *dXCʜL0.7UHR6=r,3%Z3ΰ.o DxIjO;/\.](o9p¢"Mʿ/FSs-G6߶.cH"$0D_Y9pOąޤ !ڲ 3*L;m]'L /6f, ;=YW;zB {ؖH=ܼo4>zi'SRX>I|nE_`NOՈɞyG͌lSׯIu?yA6L¼nM ӟ_6 I]LD2*pg% QZ-z#d` _fq-3#I"%:pk*/ced)/@y V,׭`z堔 &/Ӓ <1 U(kZ1_{hUVK 8D5c%Ξx4#^͹kDP4p/aI;%ysvkG{# Akr/~Uuޘ֗h>\=kfCsz [Vĥ&כ ]US1}Ҥ wW1ZQ ID\LH<FִvZ鶐27 5:Aʃǁ9Üil< c.;{3w3%!R=Idw)I {/U 5@-t|N?A{E{e>h>H*:t-g9?=V S#OiLrгaL,*8(qP?(;>udSم͚sAȯT --z^p@_ݰe2!Oeڶ)"|Yi:cv[=ĀҚs.rp(}41i(5t҈Y[  v)\$% XWHl;n=c&g;Rߣ@1qaR@I¿g|cͶPZGc$"f p؀(B|Xƈz?n'b(Qޘ`J u?6(s(d7rߑ qM >1CnPV·V$ '޸؁A)7,A;="WFQ~4SY*XYҭ|䄕ATmm pȐ%}bPJvIY)G,mڨ õ{L F&s3ƺqyc<Őn=&jp quљrdr qfɿ.z1_A_[7:!CV-=iFW?iu(}'( GV$we%GlS؉Q7š?Kg W \`REcG5u別e҄|=` ~rE))ZlMz'I!"AɗEW6-ÕUw8OXW#I=*,>v"=!DvxLJ/*UbDrK^oafD>;FÔgt׸"^tGMg7j417ؾ$CYjs c9@`&n Z$Z3gK<$~"wd,|_3Dct}۸=G.dL#FƩ -LA@q[lOe65YO nDeRjvtO&haaA/x,>6u Yg~hdȷ̓WiWkCd-^e$#X́%tNj"5TwG*F v~|G,1uZ}+ܗ0[n=(.zn!~E4,:Pd;V(߱T-FoZ.34>3 zzX|Ђ"ܔic1+JgaZlF"[TY 8p4qw[8#p8 щ-8`)9< /4*:ΙddUr:Nz";*h?qA7m-@ ֞'xWkKUV<-'F!fOD-vmWH], <&Ǫ,7|"ɧ4pSBQkD ۯ>MȸK~uCCɪ2`Tߥ⬴5{SЂ_p|$c>U2 v-PY{\m<:v]#cBsOBDxߢ,j=;x~G U5 Uu%53-=H:z28}}@NunWݘ\4|' '#OQsF},ER>JyڤMKge.}* ({DD\+[K/Rf]ީ(%ezq-'vL}8謞R4Q 03lrS,KE'w?h 241-}J_0jiYndA4G0H$1U MH6A1Afk0>͓ `>%ȟE\`##1&bmED1Q4QU{eF@5AJjACGntsH 1(4=RCE0)M.=Dlr_t4TgP{0Կ~Xjifu]!ϙu+8tK %]qA&5tTSםSaC+,j.VWQ@@- g0Jn!Hܠ`ʩ.=\#BvJd{2~E~K&:V´h).T+EUUD (NeqHG焀,>P~x؀ܗ2lL;a5FvAiOD:q-`5> q.%H3- y,0NFeD5ǷmffE +N W;,@TiyW([qPaDx^d\ G^]5ȖkCr:xcǞp%ҢUGfI4xjp,P(~iP*l `&QP$Cf/6oRO$OWW$͸blw׵ :8j4n4u H ~t O=Q MrAac+W(3jY[?eANAonفe2e qeUP"J0gJb2A=NUp vbaWxFe 4l sfX:@F@Ndyv]w}OޟΥcQ3~IAbIPgW𹭢51VR~׾Ccb>#ϻqMl=1zԉє"Wag( )/U\tב?VReMCh5 ],)'=X y踘@g؈hsHhM:jOzp2`dARqgiDIݸ('a~pfR"H.JD)w(ܚh 8u j1d|H6p /T+i6Ġ{?:ɣR_ >^?,(>[Bv:qп8u4l΢ЗY}i E^C|:n_$R|CTS+u ~2+; KǩŘѹ _&GKZV0d5 Fu4D2aDJqSx%hjtX>±l7Jt%.F}Lc,(gDH2IC-3~wt#3S; :&+fki31tB⩉m|ΏvLZ7+L7zo} FXT=3 t<.ҨКãǍdhrdmT[r,-{MX 4sx"-K>! CFulՒԪ";^9S]F^Cá y_ɧ$J0鄙T:^y4g>8l lvuO"*@ nt n5;@mL.ftKD5'jGt'~v]W ʄS!P3c}[D8x m:/hX~zS^n%My?8HOvSZMbRY-!j~W ΛM"ַE+Jt( 0]ɨ+Zdl;j̴+z@ [ߙI!*(gn w%$3n`&!>>Q!&yg% #Mla@,A .!VY$w;0T ݚh.Ȧ֦GEE4xZC֊lHهrғWnD+ÉVgFӄKjyYsU_WE @:>%I`F$#*d?З^C:HFjآ}y=EH x柫JT[D~'Xٓg ͺ!98N6Z7?фr=ʢWgȤze^7YD3HT%a^Թ8 )&Rkh =uy(3\1ދA7\ܞ%`<}C$Z>ɤy6 cTJONL(Xvlz10*2VH8?cgۤ_@l"SE,c\0ϻHY}+E̟Xvhl^Vgs JWf Xʇ]YCF?F56R Y.ʙgAh/LPdbFʄn"|{*g^6G2>(Ue+A5GlŨ32_a4V/tL>W]،,U\ ,K7/;0sM$# 0 0"ގlN&`;'3KٶSS:+v,ضpvxX$GS"mu1|Ƞ ]Ô~\'mˋ +Ai9Oo⛃'?T§Qzm4pq88ch ?& 9-1h'gWKMFNyt75%ӷol_YVe㮉XE/0bOҤ{)ADWװ+Ċ'L9\mEOa 6#>f>9u~:וy #TNnqؠUT93Vn utvqIm0ƴa]Q!hʔ:W̊LGX˷]Χ/cx"u+`#s[D͠\h5F~|~ΒQ4[@S}]0XMxy_ lI@$k|4s{%[n,"_YV/ h+l;gx;lB/t\NPIp <q,>oҫAJ^شce6k`ʟL^991\zBWxcA^iO"TTEa-" @͞@n ƣebX0̭]\EUFv4~B~P(i_hs]Odc[xg {#,%Qޫ+_EOTXz-3eXAc?ݠH8v@w,N'[ OYI*kol00P"*`@34F3N>{i2RpX*n0c6#Wٟʣ$)6"'|KoT'AH0qj_ y1xmba+kB?}/ÜEj7í)?` 6%kJ&ɐ^ycEjm+ #OO0ϤI7VPyߡ'W[˸: S?GEYUyl-bT2dإ7Fg>7ѐhT2"+@"m.Tyvȓi7GҠw;4V̮ոGĸD dwv¡0 6OKl /6Î"KhX$T<,}poxl 4Kql69 ^ y15,,p뷖q ) f5\~엋.?f,=@h-o8o $3@}e[V|?{:l3lIDR $;/_a17clЯ_AM'%Qu$j 62WP0M(Bp<] 2DRիb&D/#w#q7t;ꪭ" 6"WWg~|ІQSs[{V* n MllBԀ"`MA8eUУbpz>@9Ni}$Cy b{EƺR >'MNzʣ ~Nn͈鸲 ş5hp鰤k4^_,$+&֝ڒJy ,ߙ3,P V*j HuBx'JK$4HQW{s4ѫl=V-Gn f}[׈˿! {>;)7(.õ"X1fVFRHU!2 ؒt8,sƎtԩ|]|Fy+W>ޯ{$B7 FSN5d p-"<:cm$\PD^sٻrA1/qYd_wv\@ERap/Ő^@$M y~93).͋g5C8|}nP@DJ'?uY@ ade?A:SZ.SZע)]tNi]4,Z#BnXc_ PWsvfKmOl3[c&W=̪pdȡEI$Kw `&L$Řsφöל!bm$JY+"qhU#6 7#1 zV@-,)| 0~_RCLTL3M^cJ/Lb*MS deןn*<|q|,ZC^&##eK=vMGypǫ.|Vj?:F3bl!(:bw*UF9G3۩\@&F&nH[>elɹџvEf&\E.65)&oӪ]Fr >:Z5X@ vrT7tmn,\e\ijHzXPH/eŻہ\_8}V"Q,tK?0IU4^ czA47TB0Vϋ al!h RZW@ո6T7㳜]0>z8:7v<1oTu./~IL0ԢzvT t*IGP][T3|rpY5CCEN! >;C I5T..vw`yK;7,,v 4X보$6rP*g֨Or5Uh}^t7zu lŨAy_YE#:(zq}E_fzg$rLLz(G X2`e[ڿ(n4,NB8˂S}R+CpL?4&kka ЫGU{~^:9{g㸲}pp`!K zF^x7d  oD"emZzO[, QAŎΦYmB`(#_~Tb զ.l&p {(gOg([¬hf'< X{0W8Oܶ~>b{Nsݛw%4_O!hsk"-dGbGA?6G &O.@ԞZ=Q*üg888yMV=CkzgGy%>ʈp]H@+HaHl)w'? pK!@5%<[rlG@pNDARt֘䁦e,jqW)!wORa =&x7lP c|ߖȮYL9Q3+n&.5zIK?˞/ )DΆ++>•AY yv벧>P?"A,oY3nEF6 57Ʃ^[c(s0_s!DkV?|rْFpv+FzUz5uU` 1il;[Ej?Vv ]"=RT(84p|pS% mIr+ZJNGfcg/jLT}Sì 82G5ՀCq#=\:"۾?WtaũDz| ks}K乔4J5g4t:[YoׄxJ1 a&xY$F,c[ޓQf=}ԯKAj<yrظ҉TѨU^nSx {q4,[b2XFl]Ct"J8FBu $%e|e`u57w殒A~?4_ᩥc (GȔdS 0@ O..P~cP1V#]U&H+-\A=ݡEz% GYeтBxGd:7e3 ?{7cI^f 5hw=K v`a2"k73%{[Lwbw/LN ֘RsR*,WsQ3(l %Ӻ*lZQ"P|̀ @qc#[$ Y>o4 [$ x+DE7OQ$"(^ma 1Dx#sïuYMZj3P˽weqL~˜Z(^^LGjm9 D:J _e[')I6Q~>?JFy3;Cߋ=3ģf(_N>ΓĹ|=FHؚEڶ"FD c v*.~͢aov #4`(> @Zoous_|0ҁ8\6 ڔ} @ˇQ nm&b Z<x7uJ/T7~@{fH =cV S4>2dP2ZwqA7بWm|!vも\ e5r>t9o4-kKTUV7~&'="l쇷ÿvtDsի1 W2 0A"L /0cJ [x=eʋH9*W2K}mUZ{~7 :‚€"T{Ea X5[E07&xW6=8pEK,5!~-E1_(I@RX!cWíh%8nUV0;`P4ys i:W7Jy;멌$oU5߰Ѣ; >! 6qz d[] @lVK$+Zڕ'ULAL r9w؋-!FWF]%%,xV`7nLoPvאjj4~%)[PjSג./I^KƧ\6"RYfҮG5_]R;6 jվy6ߦ6,BG sM<3k7)T#V@Id)C! ~4. *[d3sjIz S3W2m8@oU-xJ{\ZT H8~ h)'"-pq~Ca(t~Vso~ #Vs8($H9؛bd$3'._P{0Oi"9iFb4 wҙ>`}bc42F(y5U2S*ޥtm1`rD:Ĩھ P- CK <- PcW*tn΋pUP ՉJ#2JL BUIo!ܱCL~00q:Fꮍ5RniFhRYjpIxB4Ȯ01~Kܘ>BH',#|Qn0h#xE&r u`.l]'d5snA[ #Vy<2eljT#]C2# p$j&zҘΠd];# 4/Ž+/`X,dִ; KEQfwMC n<^<446+Wm2XmK2ߏ%{Z}eָju@Q!N77(Վǣ{Cq䒺]d1ʚU>=rz 4Ft+:v2ԱApu2n:\֣y`ue ?Uz(/ή Ӿ`Ly<0Ɇ[HH$$vL6OX Z9 ${y)V#5·|/6&8LV†Q fjXruL뭘ZP;(Sjk5udX?J@h'Cn]*sNsb\ڏ^OG/pAwhpmt{Sr:CRM.CDU7-3]hS>5DJs֖üW1>PҺ7!&|0M$2VW]r%8\~ܛÈc,KSX[5;rC\+ ~N0z8l  f jZ\ D}C3Z6Gq>́plHkl p96,_jCAJPMW $+d8w pͣH; BT2n5sx$Y֙K@zQ6DƑ_ ?zZ)I}ϟS7#$ZJs#B !!(Nl| U{P 3y4]Y ::[4&Ws}]EE;(|Q\M.7BMK.hZoج]o 䒥KE)vP݇ț/Z&I0LUP|&LUfq- #UE)kC cwsm$#7lFNJ V*YpYpuIMa7l]O ՠɨ<ΣIĊ<^qK߻x]In >[̕gKts^늮}ZZn?9蜡S,Ͱٔ59- Q^n! t 6Q4t ehƷ (cRn^CZm6;ظTdZln_%`>$R FEy囷 A >ӰtH/oU|?D˚KbԚg&pge؉z|!"8Кx6;ɝ'+.-CtT,Y48q8zaΈdH ;Q 7M9 O5pFs^gصEFН"7'$7[ƼY)>}H/C9Dwv:>=wDRƏZpw*C!|c'yU*YE#~]] gku=$][GejL,^! 'V#JĈXSEm VD [ȕgWbZ;)!D`p?dq_KL n$Y|YG܍shx%yi>Ҝea}(lO1]3=k(Ukv_C0RQxIU_ᙡ&&bm(qсh/0R!yrxQ#/;ZuRX6Eafmx1 y&ῗrOpeYM-S JoE6r2Pׅ,hӭfT_E}4LTo^a^?7=u=HUKz+m8H>r#"՟"7D'Jy .8$Ī}?Y,ٹC{R5%YjPv0aVW{ *㛌o7W9c٥4J';L \ 6iҮo:rE6w@@B +gj c ՓI^^se 89)h6i9RzuB!a0@S0hua٢H 9oOP6,H._X;U?@F׆%v~gHhY FyT4,WƝ`Y~Rr S"v-K%'ș=)IXz:}; Åj6 ի"X`ܶYz#Ő%ss`g }O܋Cy*YPwN“ nc”21noe>;F]<iN@qlv~֛ᕕm)'s|i==oDXz\ gY&qfyL\ːLEnSy g_ ̠d_ vLF_PShRɸ[ݵhSʅ) rr]"ma8ꉾ:c%wg'V_pKaA)2'a+@p.OR+XYe$zT/&GϤ{4 a"h;82C.Q׋,ZM "TY]fT5i*.+GsV9EW(6[⩟db/+`V79'IrWK \HuXkZ׸_mF&mANZрfc*$+;\?s7jm򔛃Iegh7L4T"K'LF[Me- ^tı5MJ@ǧZiHQ*s~L!:QZ8`i0yY:oqdxm' XoЗ/pENPаt%UٺS9-0n蠡`oߡ_ʋ bM@=Rq]:5 W;.H@^їKqs~$*ul!v_%sOvm{ܡŌR&b!$nX3ͨ,ܣ,g[XCO0k5S;aT"-?4n.%܂ߤdP^,`Cka"34~v]ޏ~ᛨ[m 2x(l'vTsTy1&~78`qRu>3W?iTšD9dau6q XB/~,jo{_aKM>3ʼ7Z{JwJ*&x:_6sNF1jVVk",|;ϾTt} ywMmZ7'(%hJqT 4myVO4 K HbcLpOWތp7Dx?T8,} .hೂ@QC'Zj.?jO7 U+ ?8e!۱1q#fکS*W5S Eo.}d]dr@`Uv{%G*pqhST|EF򣛚~˄Ff1[Ưn:;ZnUg0p%:}/Sah HSIg+^q,gLqAL=OS55.60$ VR>/~;LvaY 1GНsnNxd<{t̼6Y \%K{eC{؀ysHĖRh~0VJV+zd2)GE&c9eRҔ|| y^-ap= xFVgC'S2?} ~\ g3}M>$*;_?r5 )FHD}JҴ 8fz!i,,Oږ"s$0PIhUwANt V=d7awqyMCFDz"m4=N)/RR3 riO9뙴 iĶmtFwZtc_%5gnׅU^)&_|!јdC?,WFbډ)9_2ru\J$(OSN*KH±̒ /x-aZ)Ezrjޣ='{MwˊPmg+WQ!p"6ٲ6`S[%Vө9Cv?a R?:Ҵ v$efW-ᯰ~',=/,"@7h6b(Ek ktg>ا5K4VP˹! ["YM1i1bbP¯ʧ6F8:쩨'6(cL"$8w0 ~Qeih3?􏧦 ԝ"  +l9gٽW~64][FR[&gŎԎB/ݶ}{u |by=4%B?sgqL//D># 5o#02-rB=̟z(@)WwAQ$ &L#lYj_c^TGDCoB,9}̌7]QUA_. (x2klF95+ rh3nJ K`^f)頽iEg7B2]4qWfl3W_adJMH[_8!J{ Eʿi 3?NxCQh`Y0hPĽBBL\),[iIq+r'Hr:'vIcm-Q{oAP)>wW/6OSw@+`f7]4%>%m/سɝAbd˭{1с$ \gE>oξ PԒ } {B4uL s-_XnGc>&Z=R_-E2aAF/1ڜC~0Yv5*ꍪ|'$s/rTVBG@RҔ3yBlHzNb$H[Q]FFUѾ笍19#/,DC2,!Zj8d!q($ FUL_>ID1e8 ٳ$u>5}Lػ_~ vӒY{$k!,iW_.ݦNZÞO\ަᇱLʜ圓ƕ(2F +[_5LmDd(XȩJ'եƵieĖ(TA\X-le@]"EԵ+Jّ}Z'nqIɢ9܏) Q/[Rzlm@sq Jni JaTMֱT,[ڪi-;fUYu&j_r]xS~~\dKm/f gR֖QT 0m[0LJqL|;BG~ NPh5ӝݶaYZUp?u2fvJ`S}ɢtjnܭs7+kqUw{xuEe*d,";&/ U̬3HE [:_Hf&*8dZ󙔻v J ~Ie[}ذHV+j,\R[=7.;SpT"ϪWfVׄȟLMe'tթBr]VIr-{9?e@Y`HTP+<&AgUY~iC}CCXthXLPo:Na52e*⸑qҫ6C>fB #DL#䢖ErRu{}](]7ܼ ƶ*Cn{O^zlWBd 5d:gMu0t2ƥBZ r- Q_; s&w m. W-/CS^x~(,ڈpQi/unD0~FNpvg􃜺@j6ThepO9tEjȇ;]R(^9jR*cj~ `s嬹@4H$ULO^e[rD^ьܷ ]ߋjd0\S= ~uOF'⺊\+ԭ:'O+i@1d_Rfm+>Fo{SQHI"ⵜI<-IH托IOu#51%\ZGmGo-o⌮@L"m@5ZyhU{$K# 7YvdlbdPf@+>ʆwqGw?zZiaiY.tDɋ ހ >1oq~:Mvme~nJ)nXƱN>ݠ);*:^Q{L2/Y&/}0utUlBOWդ7j\S@^)ӼwsU`R~^G0針Gşx_/Fmt٧pԢfd_y!P!k.媤wE|x_~6yIMa uϦRpS9x#TsG1$֫\S:Ӄ|t3"Pe%+j) &Fw(С2BWg 3{Ov!;p"G2Cjϐ4RAم΍E2=hAWMXcF0lOdzo׊="'M>yu?:ǃ#rZwy~&$ʘb6x {jNQi"xS2&dN229@Ш|IuJ- IAfhD:$c!I3~#qoY^X!E0e'ovE'gu\Bk=,n[>2Mheai+.vYыѺ$'%< 0 b^zo7GFQ{4Cp\CAif1I5i^1v6< V.²Vo{fU:F&x}_3~zy4cW@y9UU؀/L,yZ/%> BX~3c( JEbRI,*`؊:wh+d  #aQ|h [3O>0XkO *sum9:EwVu XxyA>4vKb z&KXtMUP?} &ַin"pyTV-햟;^+o Yd@IS.Obc]KFXbQN8y_,_1a B߼8S,mEOIİ>[fZaaZ,9r:Iі='F('{<~l_Fj޺ e5T'"ka ԽF:wU:OPHy4=OW.`s=.p:! ` 4{Nl3wH=|_9>XDx{Cd~7鋰k Ɨ4rk 6D/$0K@V8s[ASukE.+t+6%ZCO׀ pt8?0KjV[oc Ev5P}_k umѪaVYI3OP1AH mGj]6T[V[1} !KCiOc=jj(^pGbJ :Ur!ԚB OcF^ V;j-@vGs(a4҅cB~ .ќQ ;;`eijqjDLa/sW 6bm -u;A|'mg1ۙ_rKA^P)@sŘ4#/5iCưՉm17l(+{nBr]߶HKg G/-oy݅){KLq"%"h*ke/S萱Ej֯+2{lB ƻ#)lmu6*-XX5[ծ.ئ>t,Iv @ %Ui\\\t:Kid+==Mdy;+0[M&;?v{zn7" ºPcH)ۅ. Ru|X\ +o5S/(L&nOcXd(JPլ;=!$.?\'nJqsO˜Z!Q?Ob+phF\g2)4->#.ZO!\JtzY=̒DW{2j\묙uLrGsp <OkHp48/aK0+͚2n{Ce J=c/I1ߝSL"J@a(a+oixһS)P,>qFwO<3qX. M&60Qҋ Sωl .jgAQ|'f5îFPx2]\Zcv}~Pa2ZLȓm]ԝOx+ BxT=õma%1W߶0+nnBCM=s[ d>3@ڔ7Z'-k_`}rRW-8^O;@[efNŅaJ `. GBY| VjmW8pč.RAi4|gv]V[PT5vEߡY̏\?dmJIk$}~(z+ND 'r)E"Y֮>]sھT:n͎9{AJy>ed^ug2$NHѦ{gJULip鵭5Pw@I[>XɬML>b6qE-້*nnes!a-\`osZԑO$N~~a{2V<of9XpW{>W^}1)-C6x/R1uwNp x2D(N X"ƅ &N;3mkPB$3H,>ńth\K2;?ikT ܐqޕmJ=!Z0+&(*3pkIIg:X;^t'2xɰJYt6nXHF[iMg:u=&G3z&uv.xaռ\ _{G߫Z,!T 1Vt3w,YHp!b!C$Ŷ&Ɨt\0s!0/c%AA){A0jQ;QPӵYSE' u^w[K`-=HP1Y0_;<Rc݉V&#qq.-շqι:ìw( N˧,顆sIH-e|WxbSٛ^{p܀pvE:̅灖 }.BaqUʩLDgV=9{g(+ĹW@zsu䫧FS$Y0S@\ŽW݄EXx Bgs꜅VkF< !#ORQ(y1P/kBETP[,|47]"b|"YVlՎܿO8A5#%Nv= if@]^rQ' &T׈Q]T\Kv)cf1SOS5 H_ U&c"bL+K/ O_!%0ƿ'OQuN _:x u/@\%LR30(Է cynNsO'9ZŽܳI:Db.E@0gNJP*\(J=Ǫn2vڌ2uFW`FILg/E Nl:Wp '%61~9R3SL$MXGE:eL7I >Kd$H/ʸDx+$Tִ\!#O<YC7f$w C줠|v48:#k`KgdyB|:ez,I&fI=< #r68w8x&})r5/CߕH^@{i؆ \a^z0 \"TVm0i\J SNn -%%6``TN/Ƹ{ F^/:@Z+;$ۆNؤg8p5Aa-Ix'૛Mq}/I78ʛǙ7H^* pryާ41ɄKχ_4tiY"A/# p㹅Ԕ|oMyBq~t/'DCK\.vu3xufh^)aYM"VeŐ +)]` +I4X9 ;@@2\Ct u׽ֺ.Ď x`.ܿ@!9*X'LBYL0N`v5pqksOM47'z)+ aXR 8U,s <[LNrW5p5ػi@Ÿ.Z[aaYlwu VB)BD7b<¯2k>hv<*~N˴d욲;]dLVS3R I@ 2頂]y͌HyԆ<9r_5NOnM+,)Ң:4aIEQx5XHY/(V@iBlGb , -- pOl9 /nsRɚN'׫r֎ i"}rB$z YI- 2[(N8m7dO{`y]"H llu_> ( MkF)/*S;!L8nE;\pb]O/Ƹ(o>lzB>PQK.JTo`QWN@P_~_~#V+xfh{BY%_w .hg08ܳ;9TL>t&rPz6AʪψF#Ig_ߡ&z/1Vg~O"S:VCہX [Lǩ"d΀At'"[#V@1F*MY}XNXH]]Iy(GEe(M4׹()u$n|?0MDڅLy*:xOA5uM2/H [pjL! iܿ\rK_ iP0QX8ᗒ3HT^@5y`^HrZ6gg9s,3Cި~\A뒻Փ" H򱦩!EN#OXx%>nW"u .5C*4-8aCy3P+/( b`ÿĻEcU/N/Yldc.1[:Gx3@G0" kbߪ"@rJŸ oCV٪NGq^IB'k`f Im*{eL:9j%mƤkL9mAL,JG?c?Dz1VyYƝO/rrobH[1ygNZh~G g4\Ϥ1kpDfl ߂k`+49E8FoYD3)l`s.(Jtaw'zUBP6f :XEݚ!Ph`i}*%gk12j༇ 5{q:&yiB ʫ2^z"#3Q;^|ux +OγG^|U:PKY![G8M@3T*B-łZbmlPI' \Q3 g'lӎY6rp_ ty9:+۞Y"{4B(=uT 0p qy#V$^ܮ >cqD |63)1)2pU~{ YMq@({B2,{ vt&$JKOn6wW uoW_rBc"R5Ɂ_A9QSB$ Jvݣģ 㸙/=\rQwhg82g!1'zMq)磾ZH$7:xYK#%HodUbCt۱췏k;NKW->}6Yٸx$Y:ue+]H5&w()4w[0njLpɤz߬T= Sy墙 F_2Gۨkk1Dg!귗רPli"i/?`d[ b_;AŰE8 "GT8q^LmvoH |XgZ ZL:SOcEzIyWok ,y tqqD,4yIF۱ŋ[jdzښ"Mv3+K5eQlivZ2p|V:ׯ'2)DŽteӲύ*N )A?)US*:|f5e!9޷}OnM?̶s\g C1^iEdf&Ry(AUu_;Z"/o)ƙCL=3Av߉6IjSYxmQ7rHi{'wM^-Y f$:5GQh 8,"](1ydMKHnk}t2e/3-e@%QjJAf)|ao6T]@}]g d1&c zt6؀R\ pN^҄U).x{EQV|u)ϓomڼ0`j]w["J aZĚOOz'd&?;-@_\t$nP?IjXjQJ*L&}ōMP# ՚.LK/ 5ic !"-pĴ(5KI)$ZRhrZcf[忻 ]fjј^ b# Lsʰ@)Gd?=xAR>zLX!cס{i5ՑA x9q}[[&l iFZ?My_vt;: O -<{<) H#<=u: yqTyDVŋeZ{U 4vE8EYMN$Qdr۞bK٩L'8(C5r90*h !(!"f> M%Q5 VJT̕o40Է R|XQ]YfJNT**?jS|%rE&ԯ4fu]Z9O'#xZ %^I10{:M.!f*4ʾUiV:)^Sz̯1ѝm$Dd槖At8Eh- 3OrӉE?܃ (xYsc=QsиL_8 wqaZ=lXI~Ocyov>8$pCߕ$ 7Gxw;zLKNs.CPj6q 1=.6XЩ+tHWdv&5@ށiK ِo 3v -6wd?BBOfgϧ^t:vKAӿn\82E)FP$7o֐Ed&kSO-g{ypK\kI@e3Bꠞo%HK_35?Ղs opHIՌC9aL9;LX?{wz-xU7ąqlzkUg ‚*kx S\8aN\ @ыdڶrN8ny4 DQmJ1?;*b9q Pgh`˫$+i%5o<9;_3cZʙh sO2Cv. w$xn$[S6%B$&02#~I^ c˕̀ )WZU@}y"5-ߣtys~ɝ))'.o&}{!yQt&p&. yAN@yf5sVAp;ڸm)q>Z1XSWZahjQ#hߞBj$"[aA]j81R0xGb^n{38/9Pb$no~DxRCsBS3,׽n-/|cP O2.8H͂%p=ƷDWc+qr U}ۡĠ|$j߄LձN8y)`{YrdѥiUV9I&b9e\j!̈l(pyG&P"2W/|hmkVP:)x+GR|'e Tg%6e"K;Kph_Fk _aEhYa)C&Un++Y,;ߦJ4 B)sZgxVʬ_|>nȷT^$6Gϻ1 eǪ*ťt3an:Al;U6^Lz=YޒQ[" x-ji?c֑(xdȻ ;?~)4% i[n00oZlODT9i.ޢ4&x$W| `oQ og%^],;q}f3cbD?+k3}2[~2P %!(sl9oޯu xp؁WI3wZ'9RשJm )qGP# )΃BW@fwVa 5mI'IW8ʔU/]+68N NJ`dזtXhPqj`y:*X|7j!Q{> ࿻rMskUv(ZW LP$zbkM8g)l(%z\6|_o-T6/SgQ\Ht;P)Q'}a۽[YZ_,e6 u7H@t4?'?NJnI8$a w\:{^%5*u:2j[; tԤ p0UItfJ4w]{3 o hFJwrguǓ iRN5w돱qe6cÖ-@"k' h}bS9csjSdWŞ^_4VgB&=c|t/ӣ7tWL \R x9aG}*!3Wh*R9˧H 6;8K1}̀9Ĵ!]ǵ4]}GC{)ˈ}k鱽X("+*װ6zSh''xR#, © ĄQ7WsF"yűTHI(p,4E/̮sQ%#Zs\Bu5^k jp^ ,iye#qd}\F<֝7{ ?D#WBك֬5 |?v/%mϒȵ.ƊSH VL#ltZmq̄R_3D;#-g>bħl(SmG[W!q]OG?ܺ02QzT,e-*ԅ Tpޞiu*G3^c$΂jNV߁М鈋(VHپux2 ~6$u_[Wiڑ>5JGNV8Aοd sڙir{zm);Aw(ۤ'!dQłVjTJɿ(0?ヸ^o/t]CQsB܇n6@,x}3{ćگb]V g+}nh4=%$ mG{`wpPʿ04;QoR-*]V!sh-0 |K,Vɺ F%҅DEډ2}yeIF,&棊 nҞB dlAOnjapp켉k>pY]w9;nCof t>R->OF CwViOЃMVJדܱb SecY|0Q}S!c{%AΈ>=6m˷㶩*N=f*SE突PWåcAUCRL-k1d'FG}*AѪR{dg*¥Lj5 NdV+t/=GU}}t.6r_W|Q'2,@((Š\Czt'"-'Q F#;w *)*Cj=3k:E@aoE661» "v&5XC8e#U : ٫K}$HN[tS<,Xo?+PzJb׀^NP{g4PV\A`= <.iޫ:H_ʒœ~>\q1>r,cmY=-]׭ã8 ˇ֩EqFA4<2Yߒ-bSjGyik'w9:_M^x[ wA}XGKk]Զ8z|GS#rv$ 3D~1Ŀ#X89^[|=cz[”|> J/2;x!cRFY` 2Ilʮ=ne$yf vE;VǑF̭M"G<ѷ-BpXIlLZ8Md^$T< Prћ#rb ҵDXOrP[gt+Nxl˺- ZǞsfP,8o~{H>tIQ?odpךh1! )"$ &7!q\}eנ1Țtt&/Qff N9rd)ŬhC)y!4ưj>0 irm\a< [ەG ]l<7 綱P9d8J};#0N#2L}7`>wf޾quhxȨTpf4%2^X:=56x߱hM%D+nqŚW"zaϚ_\ጷ $`1;ww8bRGO"/;bHƴJN\8oZW(/Sfk0f&-!ti1)"[<Ǖ/ I~FK}Q|f5fS+nN&U:ϳYlBCVoH`NS3.VyL/3J||kT6?tE+kv~USdg~۴$ې9U, fszmԴ氇q sE IV"C]mj?iHVzwNiS99^Y /ZԍpoD%j'sDdoM&ezma7% ͈ I_D7oE dŴ^ԡ9ucEmCx.NTMRMJ @i@WiY#zeDY+é[vx'ڴHR?T@LDxQ@1}.^X8ID znQ"]|ֵ^ezx󤆬ImFax Z(GhOVSTܲT#杓J۰g)~,K׭]v}oU!Q@o$t-oߋ 琳T 0@ӏZVXU\ D6A#Nh:Moqyb.${2s85sLX!Z} 01<Γ?`` DZ]л,X=ngmɽHb (q j1~,p3u *߀"|<ʃ*^l3>L ];ǟk$+rUaۿ| u]rε>EjczyEE>s?l| t{GLlV9T >˕sl Uk᭖dv;ؚ8B%b.P$ZeV$z 2I$_K}-/&s9[MS"(& +n^u@n^wJ\ )sCI/bڡ0 gXweaƾlk>Z;ʍ>ou@̦ܴįkBz^55xkE2? ee ~[~3y\Јywwzv&L *"J`BA?;[3}^?[Cxzwfʋg܇_Q$&viTYnS߳%2n_6:""ʯBpQXs~ݒ:J~V[Pi^D 1]Uuᮐh8D7!xKU坴'i4a>G^eA{'(I⠎ĴѺ$pZU++ 7 Hd,'4>x f, ߥJɕt Xf.E`05sQ!-Cӫ%0BW]r"lyA n'GYBۺaO$FH} խ0YWtUݠ*0m_S'9Qt}J#WG5Q+~oiJPދ'5#(O9a.};6(ɻe7y1 m0! ϭɤP©[8>7y\#_V)& z\2KT8x`t1W"1JQXazh8IX-# g[ʅ2u K|LRyBOed9a*eΗJkb6Ɇhu[ߠa!^.:'Jp!s(9SPr˅YNc(gj^7fqh)沁c{/5D]̹ \-l$ 4TW6k z'pzs} u?跪k|_6 J҄s:'\xcs%!I)#Wj9Sﳈqk8>&ge1r.0+gx(Por4Fx/L-)E91RZ7hц(PO_ݜ؀?4, (r0*3'r?РYa43𬏢fr{'ŅcU{6FwK*pUMq?JKo0%hwN* 9:"РO GFƬ޴3CܺUlJ(+Tu EC_t,(wQ?:5ɦe}OX ~J7,:Q*C2>7(֝ew,!^ ~/.涡슔s_5 (6/ByB>$VF-3sP6]|",y`сBE#EJiwȣ$.O-VoB/t;A #6sSgz-`rW.*`U<u-Rwc,߭ݜ3'ѽi=2'`_ޛ!Fg87z]'yߧȅ4 )f9+>}am_LmNCs}Ժ`y-5ȥj]87Ƞ]/=N`?֌=*ңehTzi!|ꄺ< ZZ7m~QzVxd4Hdžb6ɧj0N2CW. *\.Lf@і2#x^66c߄i])_}I]s,س+|q/5RtuX+.~EpМGs|2ɲԬߵɇӀ0F#ܶ!iVP# "=< )oFgrs%bzWDOT`'" 'afµKt:,fMy[ZBcam5oMY"aY+TWo[1MJGE{y҇ {Y?J̴qCN60QvI<)5:eq"#F:Il'"zM*A0FxIj OsܕT-_82P%f[jȅU@検wGLsP5.i1 :F7bӔyJz'6xH/;̆LiX&Cx25\Ld<4LÜV9_qw7Y}jiS⃱Jy%aoYR1g8:o318_;-1_l<*YXcеA D [b\B~8{<{x㴟ؗgջ7{x a G);ĐKAƱݲ5&y vW:uf8t"Լ{7,Ơ*8-<ڡ{ bv{1iODu;= D9{|\N9I1ɗ d84v~$:Ԑ)!W:\ѱIr8dW\$zm;^J+c*'ߋR'WSCOk Mo k]=|n130w(7 UFN6떊fn>￘7.yOP|:nu#"Иܱ{qi2g>c$ǽW C|rEUsv-BE{ ~,u?2F Nw!3>N-| #Ё8Xʊ,!eГ"FN+>.T2Pps).Yp$˅O DJ}W!]80)mlcg`.ﱯh!1~~8slFxvPC<yC]ȳm{I]h"$Xj^D(6}u=K ʲ ke@skrhLvYS{=߆yd4rv_DfAdY U8qxjJbEMR1 Z#zzRb k!b:/SMg0bcŌmΧ߬YnG}pn㳍tלn\dxv'ЏB HP@b]r_080+f{^p/$C̏.ys8ڜT qM˲"t(}'|:h{ScUP8a1a[^;**. @ϰGoj38斎9Os)LF|/ئ6pE/'*H?ojc?0Dl{lWlE}2fUaÕMfV 滤n%d5{;~[@ *`~oWt "ŦIH-"ˠB9?k-m k)F뻧Bςoo.YSH2kYJR⡪tmZ–DJڈ13Ե]~ ɵI>JgT131cxJTu~tԻk'~WB7;MĈ gURef:/B T"B+}`7@\Nլ@w6jPS~sA#&D8?ݑl8L~h5dUWd@VYsu|FqTȉ \a%ǜD ,FN!hkZvBM]ʹX^Mƃ"lg2\׋( =BVĪ9rL^3D&G]d,cfYGѹ0!0Me. n氅k"2("5HW OAμNj+G1O)2];C /Z[ D MgCC[ʑy9I)oQbVxHPԇrSYNB%>5Of9CyL-ySWÍ(2pRGS_8|𪟱/ۀ;ODc@X㫕Yg禩&\Asmhf#LUC7~J,j[D"ΝQj*9I~`{MOF[u|:i0;8#䷗z]}/I?S/وHe7P5S8(IyF-{UBOWTtlwf#?T+> (BIe4xn7RnXqy@JF ;e0ngCwMDzrRH,CM|p>kmn?0v=9uFb.q?x\+Uc: f4ɍL$JkgҌIi{ß}P͒NA!? dgWb2BcI,W=Qjd=P`B<qF1S aɌnGnQ*H$'jֱ9PY: U^,:s{+MFuv`؀6u%Af]H 18޼0)-c?TI!9N*/]gJhzjb 29G΀#W i|[B2@qR.G,{_t=;נLz:s[:NDM1$x %y!C-[mATu[l=vV2Y%1IţMIE g侞!l絼_pr~ (a碓čN7KJ|H3KN5ZI. 4FbHcc}z.-DT;*JK7>֞HB<"{2A6m,ӤtCV"] Dz@g΋ox &>Ȅfq]kGELZzSb#=2X놣XQOJg#ƹ?ѥTi0ezRvJj+(55z{]R4`G-,+hx-ZB&S+$,b0 \p#ㄚ@Em5≲vq$|G oz:T\顁)xRuѼZ39|!PSO3^ذH\Cg p|Ht=R }=4'%V^Gk5))S8W0$UB`FDꦈ9t /:_g,m]{1Xjkl췙${Tu} [um9"J^rlxu>_R[)y&3N햡'ez|h}Y@{/E. kzə/f4goiVj!C8!0yD̳H5z G Bg _ l0e3jٔRKb?SĖ}2b0ZUv,ЀUrIy0@Z <=2-ts")lpm OvѴmx,<@+s$6Ů{NWo -9&NV%@ "^dqPn*%8OI2'b,i!HCzzI0:k`#QlZَZ_,Bч' MqzK\Z~+Ӈ0mǁntF6@fG"%e`Ta>2 ڍl U ϝ*5u/6%2ߘƣt3P>!Aj <חw!ޅNZyC6cr;Ğfx,y!77ͦx_ގy `F xQ2$jD=XGyP-F,A+u-*:Ubl(_3(yRFlq5\Brjz]J<73kX>+gykxrDFB)ZW84'@rd6#CN[S}6q* ;Tν/]to<ӭ/яRI'U0?WT vŒ_@nm.5zEA w'&El&QwJaSU{siu Yk9Z |0\?b%.@U!unbCC۱rSx7/`eEF1Qmss$H>5,sԜhR@fEFj9VR@V|T~yE"qP#~]x.as&yNWvcYNtS/ҏD.)h"EH)V 'r~{COA@meUueQSR>`Y ڙXu rWnOWhy+tv!%7k(mxg=w`&FOemZ%4$1uh7f7˧Mbshs9I:MT򥡯0 _?"p6NSGJFKpRߋ)՘"taO$U0g^È YMW> ˠ;*lPi2ZX\ %Qa@ULR2@`L@5WWB[Ϲj2n~% ĻkYL^?Z3'`W./',U־{%UB ͵z[>Rã 軇a)KQoGSo,%ZOʳI|-?T/s'2W ʾfQ,=bĭeo. cA)3wzm߲{(Ot+[fQA w!Li_yG ^LMl WAдќeF`/ԣ7-/{#OH7K dkZ n͞YE"2iԅ%PlC@NVMSB^n)wUgQ& s~-LQ!{導nt\.B "c*b &>EmzQ_훘+qq_Kbfu7CZDŽ% TYC7qe5$iC.X Rxa/LM,٥QL1pImw'I7ܔ$?\NLgҘ/m"B0l%"ԛIεFՊ(uާkOjEd*pFwQi^VmWSV\ȣ (ܱZMRЎv8jQ{c_`ʨ(% h@tn~n{3lAzȡxdW$}p?Z(0Gj|1,rg( y7쫖[]g')nlGZo"4ibW"%TRǁ4Vi2֗_#q앪 H0؆GNDwZ%A-iMikTH?xί|mω^Z$)2p#ǽW]7\æLM%uSWh'/FWOiZ^ڋzqת{Q sJ;E$*ѴLmk h V GO6+ QDJOp-|ubV76y١.zmSWaCIH' #Ϗ Tw @M Y Fv@Y$2KI7PcX=ի\h3TLt@|kTS!.˔ e iK_Xz[ b//Jw"̜0~ϊ;OwCֲsm;I}*< <{toN  HA 4ęA'¼J+9 z+;S1>CY O+J%DEVjB8k5 ]XϧףG׈]u0XTC([iڮ?K%9NЛ2%1=k,ˀعJϏ6:Mb;?=3LBԤ3ka3y툟)^6zk2\F C?|ĝ.ON@i()̨9T=@x~xA-smQr$[qV]s}|6Z3/oEtTNo(6z*)mn^KcNh z>GOkqowhq>!*_aKYL$ϩP $n8%e[=5Bs]dzˣ@k<.# ל|*E'F>TEwpnᦝ yId=q?.'A_+u>A p"ҟl-.'sK9Cvbz~l7Ɗ5|ؕm x[ViC-CVwm`#sP)W.Tbc >#/nPaZǚ($3K? ؞pkaKoV1NSy4w@45[W:hhDQpz=8싩o;=LƱ )7΃j;AdL+ mz EW>AEsi bu[`Hn);CM畣=kvl?DSa09!2 XJ9U8I?@UyqUKCx-b7tEY郒G)Z/:U]MSR?ZVY% mi3*grN?}քk[>rB41,d$|$Fp{ (4wiE2󿛧6h:^i@rd;D=V MDTÞNjov'ri|1 oS(UjhI %z #ܺo[4lh:uA@9$|Y\ EԵwOI j4Q/nd;e kf=\]Ps=M"/đSڜ DX@ خIK rq &ˏG  r[܀AS_-Tk8Asv2(?ZpA\86ptRj;) *_|A?WCnn?*i^TlC,4[uF~qH\ZCS^ݴc^.] `c5(ߘ U;0'\D*vs$'`!ipH{;3yL/Q0 : ʌ8eMoYWy>*Eb}޲T gYb.(fQ]žt2֕WVRt>\#MA.g@Ң:G?G;W j~AhW;2T @V̖cG", p541a1ԛS<_C˘`Auيwq•\sdSy 4ǫ+yHY}- [Nj (osHPO2;TUa@"u߫$x%'*-(\g!GjSGd Sb[t2`h}uB}rMS}l]!HY~7ЃPKiyщ$Z vttLPr7|V̫@{2 ?~Zav"hbt-+ k)+b keݱ#}zUx/=UY`U-r# #po|/AH925^~%B |Tl9Q 9; \21TJ7ǨNtWGx㤿bq=p"c]K6qQhC3`+P~ǞYggt;Y^Ij=4VTD^iP!QtRPa Sh[tR'?=b$HboaCg'b ډ &{Os  7lϤIf̀Ҧ]ܟƺe' S:zSN#?ګt?L(Dtč}=3@A>l֍e2pBŗ"2D;.&Sce=Cئ @ΦOb{3_ 79.JTϵus+1Wt $2"3,KEO^>jf ~ܑIջitqKtSh9N~1>ɚT htj$Q;~RD[0ŖhҺt|Q n5ANcc~E<'wsbb;(K:8ĒX6S0_At;w~'pzQٗ%gSDh0;{Tha("x _L$2Mɐ1Hg*;#~`Kݰ{'f FIw##I>/P6@6Ќ$U9Թ. 9y&t:6-nGY <`[4H6Q^E+- :=8k}4t ? 5i yr 6{%P:)*a,\,&In-͍9z\^钛&HΔ_^8|dnq.!5#C+%)lBwl|XJLvE,1%0|R+eyÏ> Iڥ[|IJ&al_z9`u5BDږa'&yeX$aջkX,IhNoy"s˵c:)gфzReqRj DK<А>nZ m7i ~,s[< G)E\lڎ=zC4im>nB; Y`OJ9y.Q|DS^\'ljػizHUP I7o+b8D0%0S3v?dš؎"H.q4z3tě RzH{PH#qAHA8EdV~Mg"z0hz҆XhaOn|5shz%WD4Խd,t2As;̇c`Y‚hlS%(3ZgnBh'ɢѐybBu(D-Y.@`CAGwUa-BdD=ݓBKvxf fP&X% +¥"FL]BٷT9  DEd"88b3^T~LFw[JZE99L4Ǣف.p݂e QZe#,1™5hmw08M_7rE"v0s{L;q؜^2As, kГY "x1 D2$!Yc e~79A0vZJgIl߲o.=㻥Ijؠ[/.$5:^rNq7Uԟ%)GU!8e\1qѵduj 4YzFUs3\LL*4oujIĹ fj RSwF¢Mߚ rU}hZ(A.tBڴmGVM@L'>LD:f[@^čI.dDŽly"le RC xkw Wrв 5Aj*uviI5?ʰ?/6;ۖVY;N(/L֘JVsˬ1)4% oj;# GwK,F=yϾRW,nT0қk.0U 5Ubz‡uKӽ%1% h^= QQ  衅$ۘ}w($eҖw믚1@&`]ywp኷{b+3XdW fKter`/UopGuzPR gE8f$ryP@y:o5'VpZyxwj@v7On ̓Ze2;ɝ( ۜ➩7t PtZ~oR5%Eԛа=HOŧS!H߹}-9*S8LST0"Cc܃&כB.SOYIX}gHQݏk8IJp ėD 0|e{E!]Y͛F77{sA27C9AvEu0Oޓf(!Fʥ*2B 3s]{Na G T5d:Ώ낫o`,!-J)sh* CRR2@^w-=z^ =̜6˧)hr$^St1")>8@A#$704R'r!Vc30 ?OyPHЦQ=LLɿ^\U)!ƫ;,LV"򨡨4Šx,߃k4%.(ԟ.@_#Osc˙.+ yH!Efܣގh,:oM_>94?52_LKKSR`%S.E(}VJn'g;V0}aD@;:zʋ|*S Ƴ3[Bw$Ԕf/y[nd6h%NT.m$)¥-GcCmwhY]FS #?=)ݝxR%`ĴoW ;qS-Hs+RgmDѻQ )|iqEG~`NpyK5VlC䟋4<I360&iS rx 4 ~2=<ьS8 g@E(5>pUu%U84>}\h㡟=v"g+hT٪wîk x?,w9a/~R]_J½.KCI̼齟bY} ;t@FT4u%w?jR3j3 s+hVx[>OjFdw8M3Qqx@s9)oJ ]>HL:g< pX<ʻMQ6N3Jb}Z4S)q#u`mm&4SvP-%[K} Q(?^'@DvMZF 1r:Ɉ% uGӈ%:(68 :CU| D2>=eSҘ7,0=vhbs;]:fofaoawVa7CYȃ_#l mIGK@{~2pDCRH C=|KIco;Oj}{O%T~O'%셯g"SpM)ėȍr)f{s(M@XSZ!:,g=0~aLgVƌ-aeΡE$t9XHV]+B| ,Z\J1M8ݾ1ȚeRp0C9ٌBnp'e `GPt[+ӔM(nnѳW }R`PVhn̄ r1aH>$@^qd_ԛ 8-2KO -fZ\ N{T4'RU/t;_٦RO6AI D\Wv-iR>+jJsψ"""\5HUlE[rq\Z!Dl,.2Oqi[sXKUlz]dij@a-8۾QzFiȗ{h0WX> ;^usQ'Vߠ9^?59>0^jآW'˨$ g[ߧI #c [51qmw6#C͋xDąKò!s~B1'{})UV;#\1c3-)իˑr-7?pЬBg "{tn! "H\$ Ot,$UWjqq>lUqr/ !hW $A3-:؂Ŧ*ȰfQ)_f)}LЫv./fB`m=O"f1 1!tż"1Z$އ\{G쭫M<\[Ir׮wC~LA3vrFE ,;%`,Y (ȇأUSdZ(Me4~GU61 ^֩_\_EeCDy .dug)pFŀVJj%c"jx}lq9]|G&v! T4dm<̶ňmeZ͉05#& A%Ir<`q7)wP44G=‹*fx(LB^so}fUTÌN%&ПpNg#+yC d:ϻ>u ow9Z; ]Z#R؃ɊQ5 z]nAHSQ6 5J(ǞOB,B#朵UQX]\p^KnJE $(ꋻҝҥt5SLuE1U~Тe{w EAaWLwqmʉffO ݨ; u 9 D㋍ៜ)RQs/:6$EN\%>v78%jr 8Z =wpqd\a-k"u; ,:sZ[~*UȮ *tV1ϱEA*[Rt,P6_a1P%Ɔ6#zq7Eb ]Mj̭VVbÀuO8!ovkNK2G7?95#Kwڃr +Z[=鶴+V'eG9[ ǻ|vLoxJC D_m&Y%+\2EUגcfSy9Z ݿD{F JqR ~i w yrj-lm)]ӥh&ٍ-Nٷڿǖr4']j*y@eBB ̩n VU=ujat{U/o[&OVa cs8r~Q>ZnO>[gN`0rL`c5Юuɷ\ ( z͢˶5`n^ՠ޾riJ͹ }.Y/QooF&5 >*`ǀ|@=1%/J60?HA+YEG.)kEVo -$p},HqN*VTHlG.ߋwoVi>Yw| ;ShpaYq(2jP{kIP\ 'ߡgCf1"QL{~# q#5zYּF&-U"m&\=?x \ FRTAy- 7r,r|}|qd+s.3n?%tZEyPPV ڡa&e5J$-iC" V_-lb+-upMFQK(YcX`iD#5WHRz>+kk b)*E9ܯ^2vrskb0];Xq/ev6ch<9,m+CڟC1$M_5_պSbArD)S:Zj縸NAXl15}L)7v&wNSګ38Ąo_6 gcqVym,to %/Ynݹ5[W] M',6&_4WR}AӫP/~ ]Paֻ 1PĐH;7! EWFr!Fnm3dJ`~LK!q !IjZit!ڍr73>X)v};b"MFèsBee JCA* ~1zQom`;%b [|E|5`ih LE,/^ʒ> Oa-%>EM;SQonFxeB,Ts|y2Ö7vI%el?ܝd=c3?N/j%rf.yoZK}Y:3N~Hu~*S4$Y`W,L`dzDAjX9y7^#8 /gqY(}B)'v>^*ZsZ:}NH9$Ai*k̙7O&w|M^_WK. ԡQ* []eP-uv7H KV6K?9R,t{l$bDRpt;oFYlm=/. YH|W^!6l ZbF[͠Ocȼ3sH1^ՈzArTM[!lA67}(HЛh҆}.S! -otz+i牴20 l7Zk m6gB8 3ӠFG)@B,d4 Ad~,yӬPq (c.M,jnc]Vms ؿ(e2{`7M,df2^ϊMl[v|(3+B7{q+ԋ!Ycr$҂'t>Doml+LZ8hK`;6&) lB:T3%BkݔdxmMke dWia˷HqRhfXnEˡuHӳF2G6js uVШ:mZgf Z[iBǣ%F* `#ǦuRQ]ռHh.,"[&nOͅ7h#m^Ke% !`o`pFvUL|yJm\/GN՗ Ks4.ua8д o]V2aIF٥S1#B+0&0 +bL*س翵OM$L !& 01Ox`L!WbBw h~2v>VoǜE3Cu>l20PeVo;>4 %2}}h$R3 Gу^!EvCuf|/zFam|V=;G;qqC`AVqY56lmt|z LI:N0ԟ2 h~9pVb9R#1ern]5' JRZQmϞeg*5cvPSaJ*>nIiuZrU)ZA Kykm2OvTzouʗW@kdS+1byKYK~waZ,).K#9'j” k:_ν2GZWrV4\>gг _ĜIi{(IKF*V H?Ê量"dw5oWv|U}@ҳ}EZ,rԻPߜʋO1ɴ٘ U#JݵGD а(JE?#ɶ W0}7!Μ\1F;_~M/!›ĽN`jqJ@uǦLzbpP{iȠ  k/joU;kIX˵|^Fq)bH~ِr =0U 'K޴G5[MAc(YZVLFPwoYe~MnA " %c-gzhl7adü zf{@D*nPJ1uAz [ȦBPa$jJh)Ц}[XaPRn4!'\_;훥8U2.MG]B&o}{7*߅X8zVZ[ VRs pn`l3Ÿwfzk| ~Evˮgnk nQ%EO$'{͸5 Th('RmW}8TgZD/q?ɔwG5Fސ%7SCg*8}+)LK?B0 ָI #7]yU9pA?ZB*QR2>,i~T8V| grգuFzMCn=YldL<{:7 J`a, >KQH3g◳JOі״]`,иxB )t(u>+*›v$nf^j!O8Gp֤C#G;پ[D:DAьź>L*V|X LXXK6+Fg" K~Z$ĖDSmpT(? SwI[Xdߟ@Y)׶Ry\gxhTCo'zB3uU,y\c_RSk5lTp'MYC,QB!]9n \fc}S4i<0 h7; 0[O! bzKa S^K͜(RB->k um0pr@ˡd6f!z=IeG r9 /BBCp{p|L .; ,/mI]k͕AQ1}DpO{.9+Ijʌx5G9[R.ړG" rAsNq9;7xy> w[w8A 'JT ջH7aBdܢι.`E5Cnoq`Nx}!i~Bk[{Q3fJ?ySڋ5oŒ!2k$[ 諾7?NC5Xe'zd$9Fx1/{A4 FjMa0PS&+pO ΙC a)v~(KnN$k(mi$rF!'mx {*i)TC PF<4졲yD"G-ZnlQl[.ƥO[r?z7ȔoY/#|ƒ3ދФ~\hU DA,_`&s70'0ςSޝm$X )^iҳ<~B7Tլ6w_L2r!_p8~~(K;/ݧuձM9؇mO`\꡽kP2^ˡ5M zsL_,B]h|!)oD)sg ir'UB @2b`l(f*Y ^}T2fup(OdU}mż$y?LXZAkUAgkbl7ŧn fTH U'i]C`I+l;a8|I)f~J`$Jq7;&ts[gj\)Tt≯PF&0}=q؛axz4YjtHXO (ж%L5m实/IWm_ N Ys]yZYu*k%cX L(RN]M;JlYQJ\V{3IRϹ㉼-FiiL=;߂_./ړbZ}(h@ͧgW] 3 Ш5[۸J(@t*Ds 0Dr?H%4:c:#AWKԍ5J:8ES$JIsH;eP"cg`1ې 2NΘT՚I}*3yCX+&C\M9.* W̯ s|kdrUp/EG76\_yϓjh$ph<sx=E-BG|!([Q:NX"8ܢf(mG3I!c/>C @o b^*=/N~Hd |ߎD64k=j6,4s5[iޥq_`6k b d-5"BFº1ЮrD[wTWRv<]\#onjS g{J6PTʐZq2s] 4̐Tqm;*0Qf'ZQğ>m4e_h>%ӡ~fpVxăX6%{( I@Ju e݀e#R0҇}m^CQh}$&> S@\i82k#3i8©Xus u:VCG/:J f+J+n<`JқjJ?.q3(bLA>JR\[O8@? Ƙo֧FAײsSѶ%.a'Dt:h3"5 !H{ I 5o5nۛDQw&ad6oXhɃԽ?C$K eX"u1*骒" 9EQu(ΜF:M(a`5iM n]ށNOHn,%0bm暹$ps^4pK`YE-'gy 2ĨIz巛'rΝ gZ//h!<,>&;EHX-+Eeri}"i͙4O\'0#J /W~7sF߽+I*%C԰gO"+jWvD0"о m ^k`% ‡4Lv9/]0 ڵ*%oc#zI+}Q6ڠ?+G={RǣDn֨œ:ڃBSQB~L" 0QNa 9^J`(AJ`C2 4װ]eKQ!=S$2a\2#BH ϰB^;ah1I*; C(O9@>'/a2 M$h_*"5$h\+] *v4Hdi~8 ~7 ˲+֐/}t6"vlsiY$ȥDN%ֳUq'Z78jd:DU15[LlrQeS 2<}m1g$ q)zmH 1YUٿ6hى-}eiH_q&?yYf.c]-p(+]fy4C1Jܕip7 gw>bS~u+DО3M< )C#?ztzFg^7pMa.uT0fS/CWbpKeՅ9aSWjZ,msDaaig&9ÇU%ȱ2 7+;Fkrf^&:&+0]>nXzOԤKr~stT̶K6ż\M̸Qھ} p+P_!*ZLQS0}g? #G)}k2|j'X{)QBH=6)M@aF/҄B&pMJ2&kuc= ֥qjl2%2 .`KXAXIi-Iz{!FԌ|Ygbc`|n33I}.ǓcEvɌA^3āu$ź ހqԁ}HplK ͱ ["3WP-h ŵ'iP^Y9,=lqxG=@Buh2B/i)wɉc saUҤ8,VxN81gItievޏ%[$LmcQnѢdH 𤋮m>ߡQ]JH1zsƙ]Lf;Lz۵x1kЀd6^͈ԁob¼^+#]hq':+Ԍ1tޅ*U|5_*RJq/=/lo|.am ]IΔ  <t4L EdU*1CDSW/[mKf=O gB8[մ?\C)z|0"0)5Ԓ(זmNà8Cn?tk%<APJT&Ty!A"'F|ٲ7Xqiэ7YW܉-v@\B` n!taV B-]D;'ؗ ?ZS4Se<QԎѾ.QB6UC7tF&4΂ISixúWw4@V5aNMƦx&_2N&;xi=k>6uJ{lφZohKߐζ}j狇&|I/CE V|i# B[@ H<վx>ʳɔ7OZ+Rn0rP"WϏ߶o!୭G k~8+mU[@?8}ýߦ{c\|ǺK:"7j kzS Ƙ),!C %f0Ql+6K\.M9o M( G?𕕉ls,%nNC@)) y82OpA0FsDwsNWMY*hVG>}ʻ/8^#]_ꝟ^5ޚ*Pڻ\ U:yUtuG~\(A;6SÙu_qjU| `h/i_xiFA$0I1+zY5l^}W-.A| ѰBo OlzҜ}K4Yt0xakoʜ, A$_]2Hg]mNdT_c⃮Ͼ*_6,޾ŒڣQ$o:>aPx 6Y $ߕv\JeB1$LE"UI>-Fx ŞE8\إYfX Ci%fS#U>Z_^'t- ?mN^'xzp/e[d(^^Wu}␢:ⷡڧ~NHSxM !v5arb:@l|İ*Qny@jQJh/اMX.V^`_*_ чDu]PRш;.Hhw:foUzlo# 6XdZhPVI\8'Lmj{72d-9!Ȫgrm8؅iyK ilV^$ܪ'!^CⰍv$jtw2f~{, JAxڻ:n1:pB֮[+lSvoJ#,M!4r>C  QӶ1Դ%$/і_iAGn#03h'!O /F%FKKa \G0D^egu#MV)dϙ9pߪ4P ciim=ឌֆ^4!q'pB-.$V47aWn[?v¥|~RiV$r5e}; 0m|a,g\%;ѹ}9ܰI0w<^~ -!;QгxB|)V&i]e_tjZ}|ӋObQh#/l@B!/7+?;Fԩ{VO\z'K)ǓPIMj:8d81 9J2+WgJ{Y|e/B QMMt#L[rh> @x] ފX(a,y|@_>2+Nv5còp/UhuU椙}X)Vݲ7j2";(axeF&,-z/K2,X=V+pnEq[sߒ}]ANFTGџ#ȣT(MoJuPue2ɺm"R [pZBk c@ sWJrcy(@QtYAx0]W4c+`5~ṛ43q΢"UFl\u kCO$GrwN#ՑbR=gׂH xtro!I*3o@{F0f4 k.ڝA C<׵2.݃v~Rdf bz~;>ڳ7Kь[ GGM&  F#.{.C4Y5}_P9K1:Lb^n[0 Cn[ 轍" pŒNR<H8a I&ܝf!pU\gNB@m aM6 z?QU|AX`}[ibH(fZ@%:ꋌfEcQ4-04IZu!XZbPnC쓈Xi|\&i%*1O)ȀP/q r+)O70l|c ˭H:[O:?z+; @xaGum~gѶLr^Кj< Ϸa~X,kbɛ+h-IL<[ 0{0 ԛe5ntm=`DfFf+$@'7bQG)|ְ3w{h0`@yu`̖G'm+bgu/UjK\  )m]|bV"$p<ڹ3HS6)~a6ثn:W!MVG.YZrϕq짍X6C^~aŁ. kH[lIoZĺsTߍ#<#[C>8iHm\Q+R<͠0x-˜D&Pbm*P>Y i1}|:RӶ?]~c2*D |oc-|fE[#@,x+O4q btCLE,k&y̴̤/.#yL(.Sy188a4}W*o-H" 4]ZM u1T̾-F5ES󵖞p du͸NwtBډׄ sLPQjϋSt1t$-tFxLqpxzp Da_K\#G'R6 f1HOܣ c& 6td/HZr! Wكkxs,F诧G=M3p9P{8bv`həŭ 4 E%@~L'׻x[VRcB&L 4X·t: `SǩS_,m+8gJ F ԥ/x- ®,/` <+?"°)'d .M{6+-P_Ru>vZ&lkԾICfw@^^7q? &1Cl!s~g %dž՚m+eRQBS p zwSD CrA A㟚iA)?` FFv(˩oa{~ r?}qs' (mkL\%x2EH}4&WVhEKZ:Py~u.έ.޶>iK68a=G4!ʎyDף+co"VU/ʪ+Op!lEF#eLZp ,$)ehu a߻9Oݠ&^~n|WL;tiJ1%j>H}͕ԁX~lBH_vXQW,jDrHWZ糃&";BĴfv&&L)xn  !|!h׮\F_+9v<[WqEY:2)dN e2v3Qq?ɶcV0șXd{~Gqh ?>fUz".[]:̛7OJqM`߿Jx`K5Nj=sWIN֛12f yBjʮ[|uGĢS܌Z{Sϝd9ni#2JHW&(vIj\t|Q! rMR^P{ic/v rML L^.hPRS&߶xpmPA|1U7=ou>KT5e U᢮ g ˠ{G&[%\lpڴW8S`V`} tp޶VϘbXsk, 7r[O*'3![(h="bds}oWd`i 6(p"H 1Yyԕ/dzY\eXaU.{P6)ˌSılA8(Z<^Kj-(¼{wGcE Kz]|lkG:noO|{ѨZ ~ oR"{̗@قBhH'-,S]!1 EdI:ܖT6{lΓ@&q?5l$m0b L]":،`H[wYX!'7 Ow (BQo,ghklo>Pj_FJ!.~HK:UmXL!^ZRܰ{? ?~-wt0//W6V09K8NMĤaSU/x˰!ߐ%P+3$Bmj@Zk;pin"Q9p*9$./*4<T`JW>ic!PThyWv H^@'7߲VЊh@a8Ć V@;szGM]H lijlǑH(̓l ]_|6LDz\vimxa~1ٓʼ2eM\2^eT'v u\IbƲt+&OĴ XαE*l  DߔnjjC[ D'VtP+R Qxj4KF5;_JB{Fo2(HV4zv;I\;VOcBt `x[C^^wf3ƶ~U cF,v;US.CfW_Kw!|$/H&(E q+!R1qIr{;YEKn+V,0V`#TS["Waj|{a''|?IhLU۪|Eݰ<֐qj]XYO&"@xͩ]P0wXYP.U(C >j9`[Q"-k.oJu7yO^L~gnQzj[afSL6 ߄ s'y Af~O&'|]k-1b "l\%a|t~3G!P-4MyFo=9eyk8-NǏ!ks-V-= >8QZwS|.\;%H\. ~6SԬ;i!)׍g G@*peXq[Jnp鞔(MQbho!م*+VE0Dd3Ǔk!lGH?2}#7iȻp/@԰o \h]Ѯt\d)+ܶyୠ'Q: {tR(S˫s:L {4Gã'tuA 0 lkۮϺ;ls-ÕS1\rKN2GCl,qg A}t OIN_{~hS@-1x+nWZ>BƬb,)ZZѥXdޘV9}ǞlqOƅn.IO"xZFkRS1},AךyV]Sxz0dv`g<4bT&W?:45Ge}'R 9x[U(}dgyĭsME;qQ%,5H.[x_3R*;'tF1#+,9’iץ uű\yq:C rmǾlm2_o?_{Y#_\[#5KBn,( Q պKl'h(eT9L C~jK|R@QU5Dw9EfȜGZX($t&s!*J1OН,,C7d{]LrƗSYMTI;³DtH1 =&r; :WUS <5-"{EPL=#)n fHo pRĹ2}4ECS ?ht,c8Yج2bf9FbV>[pݖ@KH.ƣWOz-!ۍЪ}@ 7RPd0_7uM 7ߡ֨-PԸ#G?dB=P)ju4̠P\Dѩ Sm&UBfES#ϓ%ցM,vɀJ'Y'p$;*_ԁ4N& &M1bI֙F^vh0E Ln:,[E n.< ɊqF3kjvұfw O9(&Twxg8W# VQ{VɰԂkik_l2ۧUQcgƀ(cPL=< r6K+E4gԞmE- "zģM'1 =%rzM'C6T f?}a}Ceu{l]iVӯkG\6?يTgp"/}2*^)Y(L}.+yh߬ީ7|x$z uU2H FK) SWhVlwwq#yOMHYr9V[MIw_2nW#\ #%}J7~1DKXx 8CBX9K?k3M eإ1HmKP"SlRiaUJaa8͖Nb{"A|ߨbF1۽D+J.(r &@sg[ L=`0۟<%6z{Nk2$Jb[R]غӍH\_[ALce&baV7~PCRJȆǔN'#hlZQP$+5=20BDE X4D9:cikHlp^O Ӵͫ(ELDm&0.2n+=_2FOE%6aoz~kҬ0KAw<^@MHX1(ؐ:Hx>7H>e{UC]Ag0ԲguC ̚ Hʺ%Te]oݝ:mU2@`)~U+Lixem3w&2-1$u[܍È2C\7S:*ӺKUN4+OfCQ*hr)XDVE)rs2T" t0}]M;)7{sJ_%X@={豬 L2]c23]ٕBNikbYV5)e<;jPnIGf];3z{X=2Kᡚy0(3,"]/yrP7f2:&4X `(ċ&ɉ6/DY`-%tngɡ0vEoMir+]]xJRh){Jkĺm d^FM_3P{EgHnP4"r#;/Mf[}kO;zk%>: `V`}Xsُ[l6ˋ!\BD~SܒjM@pD&/F 0쮍s^0#b݃SeW$?~S)&aѬh&h~ؔsG~jvagfR4߰7LĂo8#!$0IAŪVhݽ%Iy(>l Iq Q%E2C} HWbFJ*cəi4E\npQQyPnnK~h&U?iR'4!sw?mVy(q*ʦꌍ "6*40;4pt ;D'Lxl2e% wjUDuA3^@x1O1Ik"@,_&NIgF Z}hMpᨃ?`Y*Z y^.(@q;Xg?fӀd2\Vi *z<z^}gOˬ{@ 7I[3qjdǎkl>^kS\,y#n{+G!_ؿh׆kQltuC0n| Fc@bo^R :҉#6T)maW+"̓ԉh۟`M7غщC"l1]M Z"=YGt⌾4)dZ8HTP5=5Ð@7KeՋvsfG9y!B>7DzfT~ \9 5K1d)<ChMN1y5߲c[+- 2'GR^(@Nu/Åspor ÄID;FgjV5|1bea^N'Mg\y d$cRPVZŪdqfmhSlr׼8N;%X`YC~W?<< {h[^^"8`H[3EKsvk+S}/G;f2Ċ }d>$9~eDBpl8 zAQÉjU|毟Sp^6ePθRd|UY>5v] ֣ ^R+sCC~Aƕ4"\jg6yqs8 |yq`6ju%o@+KyAT|HIX:xS +AH ǁf$ x*hԔ=w..!8x +gݘȃ̧Io*P|^q5UxueXI_սsBT1M&QDR+яL5e~'W+;_"igv(m"MIc _!h'h+'k%$ЇAloӤZ*rhYj>E+ tQ(#ej!;2ý/iAHqL.bJ7J+2w2 DTZ+G7p$z gCzTzzwgwVbѠ:W/k="&AK2#_W妷ʙ1+'TP~$S nx0όStT}Lڗ;=x}}dpXNTͩ7&}c*=x )DR&Wѽx(fIbF{IY8~h;{@pI*Nm%~s>R%`;Q s%#1G% ,0Ȕܠac}Zqb6л֚NpP}\^'uXB(.7拡{rɚY|f 'AyGOG7\+lCVzl4ŜKOЬĂJq/۬;6x ) i-pl"Q>bH 4 sD2{ N0})bnr3oNRq4҂xyt=$yT}"ϲL-*L DZQ˿mtwƥRWr>**;#oJ7+9ْ/2=&H~{$stpU< | ʋnb&W(VQ;x"IgQm.`nHVO궥ACfF|;N7΅Ae?orn3m!WŮrʏ)H{3f, mY=[#+$@'WzGkDz>gYRT;F7EYRUF⦑M!̈G!1F%;faa݃-5HO\͘b[O@3@>>Qokj/#d|x"yᴢ}l"*x9 3iT43^-V}ʬej_ YOkTH1K](܄qBDD oWc+#-Datgl2DxoWA~9 _` 1R)Y**.>~/}k#dd\0rǃ΍t}>3|.?IjUIv2WӋ Cg;i]q]6yIYEsl Ձ])TPR+m՝V<& \aCL!s<<nL;L~ ϗ2Y3 n5QUqs@iF O) :E1eWFMą嫤[#;Iwp"o `Mφ_ :Nuꚇ:ߩltz@OyT[ q IF2BoXPȍ3%G7`'B{@l(FhҝRr9,~K3rfezX\e% veD>|]ˬNCh@¢'לEbӰan/+[xsϪ H倃 t@R 8#-/OǪTЁ2H2b7$](H7>\S.?:ipݢw*H5tv˄kNAֈrKL| p)Ľ}GE"d03$#?5RwRݿiO_{e u_t] JXNbiuUP *S;BLUє">flS-vpcf>B$qVl9/wj%j}G;6Ѝ/8dtix'IT5'ae_/{vn[})^Ѓ;>#8=wiro V/iv C pkz4Fe$^?"vBgpǭ\Ek H;/Ĺ(2UN 8VF`6=>36\eb m69- __.k;_fAF}ۘ"!5ǥb!(Wt/rW*5%"5Iu5 nZُ, *H7A6rɓgN4dJJY+ h>>Jh;nO޳>hߌ/CBRjj-nM!rYx%!Oa N׵NP^'@ :~AZ-fe/3x' ՖZVRĎr42 &K]I&osFG8(!n־Nɠx΂"opwh^m_qhϜrT~oo|{緤))x84,¢5r+Xʂ$s10F$I o&ө=6y:~yEeX@+P^?s 0 JTr)J18\pQ|Eoc&rׯpB=6ޓL6w3VH\W*JoCG?9՟'erCN}1(-9TS,mΣ4޼ivDc 0b ,F|E /yrG6p+mn} F$NQzB6jJX@O3lwucxlUGه=͋m1 _'#T!& U~ܖZi} DoE LHT"P"ŽʆzK5>C,߬LۯrLD5Bx^mX^-DFo4W.'- uřC`hI4|\IPH#Rc@S2>Q%(’D xDNNK%&ߊ-up/3tZ5.Rv2iFL:XH{7qC뺙Ȼ`%\ah +[BqQ)]Vp̊(q/ ; Bmb`i }-ȐPՍܡ:ǔPeࣩ CEj)3vmR3h}](gDⵥ4UR!y@ި})&Sz6ؕ D֨&2Džl&mQa7 `T-ڭ@]_˅1FUʼtYS!bep 4x%^l +:ǩF^:Ǚ`c3 0}.Zfd+^8z9EY2-8@cR6#^ sۡ6oH/ҘqqH",/9"|w+pb,q R{ 5&Lem+=mv~} 3=*ؗ1w#sZ_&Duu+[A NE0:* <RR!njvn]k+if;>JS<<%Zu'[2b|H\OCcc󬗐;8`SciE/Μ!(!ɘJaHruj&?ox;ᑓ*=zivRFp fqə]s^]_.0 Ns&›l^(飖bф+x <׽ {].Ce_>G2&[.;3(['^TM*.1NS!{Eb3d {Bp3.P_|RL?Qgu 0s ZߎEۏቕA\4a342ȈN I<=j.-gN#x*. :%?D $΃%1!ȵT8oA}b HEkb]X=* Ƌ,K_oj1utjkaI '?k~) W  WWC6cXDܜ r gVW>7:λfJ i8}$zsbǿ"DBvQd_ 㳄d{G@HA-Kl@[d _ ncRBܯ[ Cp~kU 9C<mYEhsf0BGծrѐW}>XPY7'&j>>L(HxcԛA€> 7PlkfWU}gBoM~@5h`SW-,ÒU!f|r};MB7#Qehy _/܆^w /lI\jǛ/d6X \I>_JDg֫N"A. PQq9 J=|[lk%m\6ੰ{kIVFjm0*n : :xfLMԡg܆6Y T' OyaVkR^&L{u8&y=JN8Ov98S'č\o7Jg#?o qX鸞"Dx,4Z$ӎ˵H*ij<)zy@pX L#'5K{`=0-O i OYA6 T˖OL FśHkyHүbOfS2ܴ6EWt`Q[TL{m c'* ;C%V{DQPW;gfC*c] T3uP&d3 nή!&I?^Dxژg,?g7/tf1 >s–".G棯m?SSbh JJm-fw :ۓ(o7,ム]esG¯__X{q,r#D&|Ei=}٦{s)@F6A+qy\]F y/lmXG^ ktZOL_ծ-H ѻehjj j-)&-]zEPI IWky {=z)VGTR'h^JXaojsאa%].1yP릭-SC҄M6t֎|Ԍ4Cḧ́QTPDž ƻqS!UaAlyشI!o KMIIഝZs}drmAsuY2YIiTjѦ݉Z^umeTn4/`pꗸr}Q瘄^B,J{"Q Ի,TB_jfFqu@գ[ҡUg0a&s&8?D~`^5fIs`-_0OL2B8=Mx~F-,;TգބyjH7EzDrWF"zWƄ! IM"}#01xZ4̦l0+O+;Bý3o~VxQ Vy|{ωtmdIJ} b+f@9eoOCVDpYGce ;Qzx9;0*pEX]T8 wMPFI{|+/'=JM4'[fwo tir!jCfu,ΧݣO'G찟;bdF:WW 0ip K *_p Afө>qyP4kSdɤ.(zL̶qVhҠT.GFF]hs@/gۦkIx>rP]PqYyA8:12?(]7Gw쥎Tw+PX\SY'$!+2`xQH=R}\P kTȮs!72% `n+`HcO蚖`r镊!7C+ݝ=r ) v{8 V:U.F6]@‹̎s-%Xcn4Kt1xGN~" 1+:㈄ŏ,?;S'0ۺz=ݳ Libbo΋aUjy ͊ $Ha8Z/Ε3b q%rQ$N3흴XbF2ZbQ x)VZUmgo,]ϓQi ¾&bDH)cfVjoL M SGBkL*. -,P@}MC=*C*UybWއH00o֛F%4ǹ"ɯģA]rR%9}@D_m#-˕ FN ڲWo q!|5#WI ;1RR̿rȪKGРBcv+Vi3s+ 潻Q<1͜*~3i eGWR%~.6{Cє9b7_X7vwk5CX kxJF0r7/wAuwfȅ@T q"c84}@:+`'6UGU6\tf$ȸF7H`/ pFķOՒ|׶|04sM*e !2T m0W-Z24\+2^2wrdhgW_e+Ӡkqy?tیKQ+bw8;S1AaQc=Nzt#-NG&rx l-̠# Jo{ճ]N5fB"sսvK5^ 85`baN@a]mJYڗX먰_x'’@hW]}z|A9H+$)^.vi5]%xUA[PT$ч|r trUqL\0-i2lBDm3k96(f''e!eHr Tۜ7|]h*ɗƪ9F]:*{މ0v\^YNFcq`Be&W-OJ" l#˴,Rrv"STmCَz'[C1vҾ$:?m8CK˽튩 YLjR _ Ks ? "󾢮| ܴ tg#ǸlNgj4"^F!fHѡg )׽B 3߰[3>J$@N0!.q۟)s.Զ (xa5^Oc4EC`NlƼQ:|XЫ`qQAb=@|؛ex#ųlz^K(f8œlI .}2VW J+jfFzMJ^ooWT sg@æ(vf/u< %%RFG{#yAe[)&amՐxCMB/:eGv$;YtYs9܃reЎٜ 5Z+f6A39j͝4cvrntf.pl:Tm#ip `(\wLCf4~(5@~[)` Zcc"ݹD?pLl'Ӡ`—.[X8kz|Vm͸ Iobj\|v3H,%﯃'̢&x,ቨ2fl/ fXbdaCNr#q?>/ YWZQ>aVF4ja g1i\`Gfīo*J>{WX Q$4ͅ*Yns_&A~y?pJ`s7<oO/c=٠tSNO$㍻&ʻΓz?]TD(ǜOИ>/B vQPz%"S([5+B0~X,}ڋD)ZK/$AƊBqv=F^aKON7)!*{E+ GH}+9j/а-N U D:Ԕ&O'\'1nC #v6vE @j+YC0eX7J޷#4yd 9  4b/PK}}DiQZ.;iuPq%o-5 /Hqc'jv`U(i}48D3:4;6#9ډw/J|O_MnW ?)][t+pNcGҸAq{_go?' ϴ|%D'gy.Hg㇁F?u>ƙ&#f 韁[=!.%^Zq1žY⯞|m{||Yv;+M艐 .6SZ E591 ! R3jCcL{*3&Nj1l16̈́J[atSb|[|s)t+"~[fXXM+!+'dRA } ^Z>zBhcX}yV$LqD Ͻyr9sifq$q)7m@ jݩLvr7}]Ӻ zdx$ K93Q6NX14=My,G]i299p3-A9K>Ey ,[:Dkmhe/wR0r˨F$"m|QR9wr&IA|H5>VD0? @z aMQc2]KH(lih0 i$x O`e.P}/f %YqϳuB˸z0,GINa9[OܔjQ;E r]?jmrVHɎ}K$GlP;Cނa=UZ`W8yⴺϕ/$Ƶo|m8+oêf{XˍR1.ӦsyZ1_} b7Ñ5Y}V9POOT!n6s(c?Ķ cSծ͋2١hҶ;(exe56#oОSx7*F(_fs?ZcRiÌ1bP|Б:,;5YV'p!y!xiGtI4doY|쥸&Qk;b$/k21}rz>ى+.$#:fyq+}+gA]w5+jYdiI +"\G9OmBh$#:xCQ_g9~Db[~=tPcΟ%GSiJ/&ْwhojzHT"y;š'Ie6t&XJasZʃzDވ:sF)mg+kt ΄vsX`HPt} ?efp=ƿe{Kpݠtn,Ş*:#Aʏ҈?Zt{Œrw s@E ѡh~q6uɷGG[6w%xN[u5P$KK+ ϲ)هm@%`8̓@WM[d5,hBy`O̯!PS]oRYtvW.gF({ _;ȀyW߰|kӟHW!7*Z+pՑu)6*MsV@A+z3~4-itʩZ8 U 0  Xy fk@ 5nɧ1 Ppr:-]H{g|/Ҁ-\8aaj(zN8q4NAkښ7w mC&IQ%cY`]Ɯ## $Ǐ֢/h֖#?)YLWD=<uhض̕T r3i{{TW`19;bWi.!ᯘw'`59u&)i[C2ŜXZbmH+hβs1c]ex#DaG֫ZerY))ףtaW& Ο$\97X NW[vw|&qMlpuw9[[&aet">=Nxv~;1@\h+ #τt5smgwY}P! ];b[E@66땏{5 T*}siO^e1wf2{X4›[:Y˻GLUc/"BKMVa8v=Ք ٞUфowgֲ}!b1-M'VpGf.Gs澱ϯIIcU\-yԯ7U)xqnؤ=n̮+R̷K`j% `QjJaXyCPbx `.%i΄"<'z.u$Z=B;|d' vX|c"vp̪qͶYZC^GMPʺYll>B>^{gbI9B kpjzr aN*-O/)GI53?H{0RL`DdOo{8˂CB{d4:" nݵLMTa] Ja 6N1,x1|r.QHpO (cB>ĬGX>1C2ytqC1D!Q }yuBp4crDaD;JH[8F  #+4aL=%b!oS!LdeD8uXU*CDڍ“?3_EE:w_ddZ֧$薑ERmX}U}^uZ%lž;腾KTEڳ |ONJIsc/ug=4(F3Ay|4Ps+}CCڈ3ʗ9䚩2,َ467TV5`>˱948*c9hki&Q8Ӿ"ٮnA]FGoABr_@@&}r"T^[e>l<6uZ~^.=` 2>kt"-SLd._`(CB/B3ݼH)@o~rxLdA/N @ma *'G,FԴ%A*-yW2 iOiOGj!^&2g#*sC=ALiV"=lI.(B+)嗈ip̖+=bcA|_Q[fOB zOM;}qca7i0KTڤ2xGvkpnh ˟lO;*xrd@3s>3 9vdLt9kDT t>SO%Px9sC*^SQĵ^o1ۺ y^R6&VMr7d~Jݏ~ 2\`fw'5̞L%7›OVznQ0T#=Jp!Nɮ)\`т-pgƔ:E9ZK wt'3W92Txzžos'?$Sm[++h#\5 |qw{G,"yao,~Aja'3rD?y-9>C(wB\@|*(h>u [_-IU/G;L~]P#C?%}t4ؕW~6B6.6]]+Fif/(}z4 < 3l97|-_2C׌<9htm۪r&^?%j lx|K3@9 VQ- =T,Wy\ (m tf+}?Gl,ǻ2D:]@(K) Bsi\5s`lhs-q}#v1 3x1`NLII9}pP_~B16NIl{{h"JKvby)jÌe_?x%{T$9'~v,sIpZ"/eؔ-A.v 6 \d9O(MjIBMrDCR{ qjލ4rT 6UNL3 gO`^,Ýi2J"{¤ <8o^d !_M~%$Ϡ#%C u4n6{;D;i!s 6A[UW^S]%v#*MDNQXLhyk#>o5J9HY"T$U*'$JaU,Ϳ@"W' ȳ7cB녴Bcc56hwġU;]fXm]a>$idP!|:ynCZ&]ڲMֶj7b %jb~FyCL|'|N8a3m[C)(s Ok/^cj'cҷw Ub6rV>K>yVM. @eƋ S˩g"Z[٩)Qk8 eZsLQ\L8(d ʾJw< Xqe>}|(rK#[t04#[]So mPd~zb''T@,nxuW+P-qڝqm61?<)QPapw.?rYWS5&1'*+aKgdh2scvQ?qOBb7BK $δtAH=; uJ>q5G44Qwn>W HDv_,s08xRC-! ~6:łB0ò QR?iتn7wH8 *mn.ORNgjZV4CݯC'nb #?I *J3ƥn 2y%Xz~ۈb^B%xc[_2O UTL{EIXbU%Nˣ\o@.)}'R'2\$9Wjd#Z-"jnbЙF]|nT {FfZ}" <*h _E+~}ḁp:)sFT!Ma%ϮíRw3C71ꝥi;I :=if7 &wsrP3Vmbe'WQLşq)ZNq>[D#}YgLo٭ACNŕѓnj {GD0K|IHC&d1+kEXD.W:f_j=X1;HYi19!m6`k]cW+R  epd5}w0x<3(, ;ָLu1ǻw%rdF[5d彷;ȭuܱ,SѱEKMѰM𯪶uf_C *d,G/)Iy2Ű4EucE]&JbS:t1kxOCwJc/GE{*.B.|dl= X}?^#@qH{`2Q÷IMf.PgFgfe=w;”D{71}$ƖZ$zC8V95IɹiiŚߠH bm3SΙ&JV[VD6-dۣ(q9dm>ԣSU{0_`w̼߱n;Bؘ@$0dQ:#ݫy+U5/1$+~ѓ˅~:J!4W B*3q ^9H9Opӻ*nP[D!*O ?P_WzH88p)~)H7ʬ 3< 3Ń/ɝ~qq?J-$q +WieNj>}"A:#WQ99m-l7֒Rïs%7mpuZdJ[ĜU гJC\̾SOֳjWzCR.!+̱gڪ5`BuɚKY^ ?6&B%3#Mu(pSkPe8|])`EXځ ~Q1`M__XLcBQɜ+%n<< ԵױQ%uE^JI5"a&lں^z얝 ,%p( awPpLEj#T)MK<ߊEZw*U3BW"Ff 1E>x|0bT9U ,q `B^zXX/27t91fq(p b|E9=^Iԁ"^ x_n/4x/2l{i*"Q;3GDѬ@c3;-6ї u+n奸(N2$l|(~'܄|FJ @+T\TwDwJvC`Եk~wb ЊwEHQMKK@yuVA= ^JC,,cW'N ֬7q'q_t]JȦv_Ti沟Y”CJ&K3q2:i u$]R蠟=xx((uK1y=bwȌr] 0aB~!l 6b.{W{%6 "!U ma¬)q[V9. ՇG6߹%76?vH%a1%Ң9kAt)TU7V`^EQGv5<1 32V, #D906QsaT8:d4ܼ 2˞- RYjZEk(uY} _g#HMGu#%oW߳RT%dX8-D2I^8bZǹ-!Ş02u "x2ܢ1פiQ`zI9MRm] 77QMf"#zyqirdV)PP/6V<<qhHۅw>e.%7K{9 TyD眈U(aJt`ethNѲͨʹŏ P8-nPmX$"b F",]*hɲi6[".+9L)Xޜ&/GˆO3.enIo⫦*(R};49]lU7@ hMpiUG"v3Vѭf#ɒ׹j=xm"N8T+Mgn+l?^_EoyMs)-_VE{GG[xőG5ץx-!+Ɵ jm5̶ ASMvDRoBED"QH*V0[EVu`t;a`Dpj(k`H_=jkq>~J@ܨѹX&vk\d<7~5xTkPW HԤp>ou>{ˡx 23Cs|oDQ 'l;LR VثDyؽ jzf?wo F`vCSy\>bt;UhaD+R;roMzNWo^$ Z-*|Ћ`ib6HVvZH"e]^IqU"2Cx ke6ԗJzÅ/8 ̡pV^˅7GAu'xԠgcꥥp=STGz+P3:U "Ql: D9Y zB]4.dftgqηr9$z Pl28g)L/Mr㹙n;PN@'a$@j5O5ɧ|~VrLrַD?r,֕_ Aշk QʱTZML;BVjFkՇ9|99p6Ӥ#3+e}^p;M+FrXdPqz9}!K=˽4Or֊1Ŕfy__ $]MW9x$`Δ 48p^D#ə!v; 0.Soya/R~| 2s̕QoX4MxŁA|gq1{sGB>Ju`DB!hfupb y騽\%;_dlXւSD_vb)n:¼8cpK  d8lGûGcjӭ+oQ2Bkkc;& C[-WOz'H/cv*"O`.G^zr6b5WL[ɨƃhe\(żP`ؾ!rrHoMڪzL9k;9u\O}"gl~: Mr|e:V|j /n~6OVG?K|3qQ⼏tlj6H9Wwp>tEt`WK=#ҶnTvx :dlmt$ٍ)~2A8۷#_Eĩ%{e&Q~8@Ԧ-4DVRrooeVFkۣh8|1j< ׽EBm贁NVr/ f2>no+JMA>Έ`,*ւVN?d)rO&j)kVvwsIKS^!:fh  }F=E,\ : k ߈g-|^ 3[X&G1Ag(: 얥iakz1cHU9$;wSelZ$`-Ůyc#JFk 7S{CK$I#GioA q±aU6_A!Ra&A}d?70 m92JSe"3*3HZ##%qS('|m-U"ZJ>mCԠCUm\a ز7:KI88Iʘ"dREG[(M$p> Yҏs&% |{N(-@ B{_M/0%Iƚ{Xt ⡦<4CSJ$[Fz![,2yYHk 0 3Pufo"&ߓ0*; 8ݵhv &7QЭӜiD >B;xiNCR5dksԺ+d7p_z1tDd$m.Y]~--9.2uX.ak`p8Rd9ac7xC/9=R,oeq@]9YU_3,vb,L' ipvsy0\=qTQ$и2L]k豙n\c3f05փ@扪W[kuV1c}uHi/J&@6:58k$Ch,JSOZ\E_?|]7ٿ زFjka\WE>dXA$zpAyl\hks r27EcA-.7@i{5K/"9~akA𹕻/ݶyfk.[Az8KIv_: mTKPE6 K:dE|៫>{1mI\;V|‡NkW{E\ɅDyN@$q0*XN. {^К<]ihTagrpN,6r^obJJu@CG^z!z#̂79+;Wۤ/]qD$T+v?q ~^k lQWvYiȧv7kW)(zynΑQ82ϪWZyUGĨƢyI̯] 50 3-DD7(މD$kTƤM>]]eBiqԼPFm6>[IBThWoNHq+b>fѐ͛Z\lI&#Q`nS.zKz&g av(1lɒfz- [9W2x?}T+o-^f!-a/[FYZ3 /}^ffp'O_4Y? dN١)c[z@ :\D!gumGnݞc8^A").{΅)V@۞ omghqqu$)r0z/ 9`#IdW,7=ɩk[)=hSD4A;mzz9А&JxVa&]yL@m?(X*i(`gO&kJdVjhQ_TɪH*i)#֤c7< 7+aר сs/]ڟ N]Y-Y?M+{tCOTh`G);*Ҋ_3tfX;)2/54nȹ$^܁Lcpt.A7xx#ց> | ixYDTBH6?A8$YXi{3/5x3TXxƱ;VVMLoz!fE 'L:lY0DCF\{50X2dG<)u!qU |Gc5i4lS%qX,*Lf+U_$'O|֏;dv+YW,@&17vq*zK*#+\*\2Ĩ/|5a#)Y X&=۪fka<Vn~b_:.׾N*FR@7/rb`Ϫ4멃ifj6 ju8^,kU Vi+\4&iz21ј> QF߽ΦM ^ӓ_|HZ1>9 cuB*ָH´=AYT"z_*:c,R918Sި<_ 6y 3sKuNƄ~YEĭ>l,a xi\zY *e&0=wQ+K;- hsA ԱeA[AǁP.UdZ.}%N ќr.meE=Er BCA(>"w1x3A6=_xCpG󼠴^ rghċf.ְ)iz|&&{Mc#R.&NwCX[_n/Tye:^~4N9%<'z[]fpܹcSv: B0[>Dgen=jazBi漏mJUnUKƅm>x? Z"㸨'Ho~hX֮?4B8kGHɪ%4F)sE*.FؤEXD듔Rou!b\o!z`G[Yv>ܙZI9ݖND>kN d>O':.`k*$| -ŭ%1bvee6LW*T.&&%e@ktrjUOt`K/ayOɐǧn|9޳ 6~Ce U Y %Q%;2_:~t6(m"fѱw;^2kXA!hJ=إA\: #ꃑB }#[Y{'3i Ľ8ڸg'(ٗaTyc׫$=6m!PE]m*l~zV= cS*4z(||(Ru${+ffD T[hLRBa}rP=J8Yz™ bCӧ^5-SuA n[d#V2QM61iUx㼥j5O=4JS6xə?RT/~\:S3N` ˞`=R,pjұF?I4~Ky@ۨU 8iIYPVEa^R1Ysː]Eq(3;pܭ$kx况Ifm539eh#c^ ;[.g.qv'Zh[I8d A"*C֮j D+SyW/gaIFܻ Ht͒ۆ OE*%HOC2ka`܊MLF= HmJD]WPV߇)Ӱsp+y֜:/GaBTNge3lRbDv,9l֫"Y^}o}@_%;]-?'xE||{mrVkF%8PÍ>Լ80SXب oa\kFkX 0 ~9ÚEFi݂wf9.x!x#cc0'<.9eI)i:)_MCt I%+lӚ gC;Na"5wQh48Èm.~PH!gGeP9!El~Kg}/)"k.0X"< LS, Dh3 ?4\ޕxԙ$lh >:υ2.-YsCAPy :(79>5M5]^5jwD 2IHTLB3,QɽPr`|3iVQa}(&a3W΢XT!Ӎhϥ0.[5Xȍ[RGwKflg\'juG~)M,g(d`:}[#9/`f7kjTm?Os}TQg =rP4\'j+|bneR,\ }˙A.;8I4BLdHKtjI,Pa8i<[DqT5ݸ<0wV1%|[]+|xt[4~3_Ÿ}5œUObdOϥxKf6-J !W Qfz <MA@{tFYϙl`/W:mp&y˽BϣcA/ݚ(z1'RGǚ#k\6)ҰdZ7ٺ(Tʭm||] ̰׉om!’j:oL"'Ir\j2)xd,9rd[m3rP1LqI ,) 5zaƥdVǭaXlul"{[6ױ!1hhUd,A2Ov D G;_uQmnsu7p.Ϸ)xOwp`+'|_Rx>ڂ%mfi*Dae0dt̋V{R̂AS顟9,-)@1B+F<,h́b̥-a>b(~ILtm^`ex?Pv_ l N9eVLlOj?Ag*|6)}@tVYd5`T'gs/"t- "ꅅVjq𕘜rY6${V 'Tc~YS| }Tz QΠU CE8,uwv;;1W{\ nED߂Vys\sۘW()HdsMKbHkc#n+ osg໯=Pfefz9bP\-  s-UϚR+å(e/ꇇ(ғ"c^jt? Fq{)mP {<, HO$ oOY<Z ܝ]T8 DBANvXlFm8c 7?,Sm3OU9r @$I ag7IKnRBA16^z@ņ6 ż2]hv<raˇȝm^!Q׿‚OdEҸnG ̺k\?S(ƌZu(B`K- ]3Ť2Ϯhv @Cܜ<Eܵ&1x8?̍6Ѿ4' ~m|vǿ︁ #M]Pf4ȅSqZ9~z 2,R5,ec*a-bp,?gWF.\īݤ.f;3tsu68rAWwoȸ%;F/P [JeC:f/I,K>EDUS @,ʑ7hcW+gtyxPͥBJ~'w"x0[wɆ f_8&W?h.bpᛪ` 5T~m-[]8Q,lf\0z6~0pfX^<)Ip߻\w@#tz+=烬 ɩjn$NE?m"pg~XE&oa'ÝAytOϧU(I+dD$=$ žN&6`(.<7ū;lf_{{\}9@|*P1Yapg1=I\Ol^fQ_@w5PgH4&DG Ȅls;z|DG7v w]?H*k#qQeu$;}"Vlt[Y5ļMku-SaoTH!G9-v#$Dy YftoV0?qRf Gm b\Da-kSgVA0F@\UTK 8d|F;-8{~lafl]$Q]SH^\n/u$xa0..'Y$U9D%˃fjx52] E+RJkg}0Ao'bF;kmk4jVzMt65>h؝F?ecUU" G7gj)op,rX[XϕNzL4L%jڵ&:̟OpvN1RbF\HJKZO;;&dyM;raO"YSan!~p_@v lBAC*eyU2[Y)I| cWЍ49({7Re KgpqZ8DG >(>;W`|%"ki 2rF[gT$Y]/{V\};:U#@ PY|:%_2Yr+gxa[ml2@ʡRrnVH-ڒMEBXL<f>s=WBg96:[unE7IfDgUK5Y]R8!v28kb ӄK֤TsC_*Wؠ6h1$y0}Nʦ; y _؎M(q)菢\)%T8$ġ~!{5iNo)\Meߞے8mBk#l Tg6F㾬3|1!=e*Xe]Ze)Z^sJF j# Ow_ ^ oW%.[gqCy>X6۝׀a)dcQ _SYMd/U>`}6~Zz; ~In.ђjb, 2-CV 9Qj|,FpbÊؽf(*k=k2`ZBdFX]e~ezȵBUlaHi%%^cd`e]vz'4>e=ZWo|_H_67ӻwQ?Xd}[ք򍼭OAsX+^'MbIsQ>5t"Yr+j0,ĭpwnb{隤 N2*nj4b28[@~5xb|>,^:IΝꈩ+q֥@*A>)ِr&;IE :~X+dq(xwCy& (juwWUPēv4pFШ34ȡ:o5UnݨQYT)O\ )T˻̳Ot;E҅;QKw榌_54 ͘Iw@G:V짮kҐ 2wuj:4zIS:(ӏA)cN$`SlbO`5 ʶ|ʻ)K_4z/9{YwmFDx{Y4~N2o?͖Pm -yvbLFaۏYThj ә͔$<8&e2H6w?? j .' ÷WO k#cζ\2˪*l}EJjz Zqt՘E?j0@q"&8<`W53s<9+E9ַJij_F j*V`ұ֤# VYVa,0 S"oVꑨ>eYM]|b9-@Вv:R+r:&3[Ri>nlSn GX@+'N] 2 jwĪ~.aNCZ(Sj'Қ6P-D_"@!WL'Q͋Q\YOam`3Zi)Cl-Ƙ`Mrؤne,2R֙ݞb)TWLP{ e\R l女5x!_4=>3# Wqp_ y8r8 -JwWkb||},b* mimqQݾE W0lB9N7Ibp:l/vVZi^$(S-XǔV'CD@[R6bG%w)=0쩪u>QlX;/nCvٸYyͲRŏ9!k1_J{kn1 2 Л {JItX&xPCJKO&|2<g z5۫J%yBqhizRU Sk.|+qo#O_TT}MNre4r*"T }ja: *F&!Jq*29m;#c' M&R<=y n־݊FBJIasݞ8*JDOkB+rY\sp279ZV~f}ˁ bLdݣl*VWf &ԈictOr)C̣ 2hÇn?#gypI9aE܆w!mAҫ_PS_\8+}zd'0SP=t c` {=Uɡn>CTƺ˔\7X:ݩww`+wg41/R[Q62Jcf(74kbb5(\AUc*'RNMW'hq2HpqYfu9=l!{(i˻3zmҌE8`gc|k+{$a1y{_D&lj-B爚(jcJOfsqD2>1j3 L f@ Y*$ H 86N!qp~ a8 uF`0خL Baq2xg5#~\EaYa S$O;X˝9;~"bo8(X/O6 O*(T~pqHn ;AlMQF?2d.UtØք1"T)v);S H{kѐO'1,]۬c婈0$8OɏdZ$$Og*F?u@* rBcy-b!@cKaI rf5-',zw_.Oq[ 4 $?"CNqOΐ zGzB~zWȂM7&t^7ʁ<hzsBZ7ޭ|7`{rtDxϛM:MYU9yʸb ubuo%PE\镒.4k`Y8kÞYG !m<b>]puI%RG,s?/]` @o'ղ,q6\#>fÝV_؜ږ᧷Ҿ:#8.lx:K Iix~*'*v-!h< (2I=l8q3J3"un*j|~ _"_SѰ6 O7"6 sIiǥ{m*UA`iEKNX*ZJGo4h\kkRnb2Xyn:MeӋxyN$a\<~]^kOp]M:@vL1v{\+E2&|1HydjBYGNY(EVB|6\jS @jp1A]Հ쥘x %nj?]ݵHmBҖ7?H!#/5kD ?y֥ u$6s7y:KA@B7J$(םw䦀)sDwW9χS=,S<ي܏dv}ELr-c|$BvqQhnƸ/UVrhHPFoUEp\f5DջbПl,#Q' :&%Һi 4DƄJt@dxE`gk7V^,Bf`RԵZ4e2 F#JN dqFX>BnQeߴaxɋgRG$~؄qԹ*PcfĤ*DGqKQj |j&]-?,WB>FR Xl,s;>~v%K8+ _9O5I9@ԽrM!_ e*3sa:$rOGy@-c w'U3@뛹"^w.y|ks+>i&8};B$Y8cC. phfm pjd i4eY~bzqR9G?h}=p6Eq\U^v6[B}/_^"-й0v[#'@2r$ŭp xMQ=C7q=qInqUkOEgFlT._Ό{.߬W5/y+Դ0#KHrJiQHiR|'-)l`xqrA$>L|K6bD my~2Vj#"gJUΤXxd#|}y!gi{RSo` 4eyp}pv*y0[nj|:T|W>̣"'+FWz {a]ջQ7gun}Õ3զuH:f!F>wm&TtMp ̱;j3LȒ,J3;<ႪUNR$'щ]NJFlt yZTm Aiu巗:VjÆT4Z+p!|jc m(@" J!k@yUCoLdfGc ^#h(P\6fE|I{0h[UBd =sʴrlVȴ;k+ o 3 ʍa'q2kUaIAжPt͵3מpy@;X}0I PaF3Kf>2_2=RfR;nBjTv{t %ߣ ~kF&~\Pik[ws4"=I [˴T:Go|ϊ1[#8>x(<7Zm+;@Hdٸ=cnJH2^LX= L'^xܥYmUbCBk[/UJv?\P)8BMmI- ({pCZ&&켅PMz+}:Bc^R[m%"ourFo?<%1o,r= cią_oQ2^tHޤ., &d.% >UVЄ^T0rX6Gi\s9̐jF>'5_#䝡s4 T#`VO޲ŷ7|FrPNwC8Rms-V!:QF&0/ش]y{C2~.0ۙ hDLP<BV&vR_?e6f͵ծΟoKt`EVmC|c3mLn)~ kQcʸ-tC%>jnCS 2W*4)ڏzhFa% KlOF'+H ͪbt 43X A -N^Qݍ5݈lrt0*hX g j9FQlpa\ 5'Je@F#Mk4CRMӘ~ذRe^TMś[a#gSeq1gU+`BP)5@vV5|; {1Ȥpq#AX3Ʉ'Lگg-DͪFRM+nMˍ, ' d MV$?0hڼdyQ%wD~'CW"No\c>,"aaWq p~P0jztW7ReZ}ƈI.CSC[j&|W3UԆ$ؖjN M-Rx%r/8SKF);Wkv|?UyKC>6V%*9k:ħy^0j4w{5c|J[ gO0 bO&f/3{v[df埚ed7rCi`, I-)Jpz3 K;w:IV qr^=MWkg.Y;\1V3`'j!ѢA`BB=[B xc#ʈp y9 S[`HX8tƗ nR46iRAw<q_ c/8٩uJBrSgqv}>t&wJOr`PдEv'\ę xVhԋ7#$Ch2܃Jh0ssŐ t9P"L>i3&lBp#Ft}/J]H~=w+(GΚ(6i2i<ıEӑ: $Y`0oYE͔&̶gx1w|ݚ ^e;@Z0{{ӧYi ڙm2Y+^>c=VDSTUzgc4)I\{A*8b[ktrr++ܣ@U^ksmݞ /ѡ'VTh{F1N[&}q3Ll6aÒ8ޥoA?E _,ᅢ4A}^^Nl(:Rv(Pzlp'%@VJB),ϥ@Sn5p'\zi>|6:C(LxsŗNe@UՋŃMTؔ",V;OQ 7\2Bqw>e֔NP`NȌ:ft!5ZZ ۭgOqގ`Okߘ 蒧%tĄc~#tNJ7 '{ؙ^~ YpE aq .$ynuR1_P!R0ӁRr?9'=Yy"S܍s:>T I~J/0ڭg޵X CcS;SM@Uc7U' պ nh[OU"&!]qȏk FڧsCi[2 @)YVM2wUP$UBZ̿t T*@ N w0g&I/yv'"|,PkC0s$E#sZ{EcT+ʐ(i|A?W3q6tSc*)2DJͽ+SX L-NQY+ַBɫ5seqLNJ4Y3Q&w#)ŞͧhFqD'nBໞ}RB\Y7O~ 46y}/:dwX!ZeO^Mn~ ]t/dYcռH#O A).ңX5m ꃓ7z"VrrkUBvy]!D C"E`o"-iG F AZ-]`|ԟ\@ҟaH+|kh-XRQw7a5 tv/S Lr.Gi93f !Sȟx*TOd١{ngݱpvbj>]G04LW 1H[17ڛ4 % :" #8Y]+}:[ET@c :Z%Iܯ" X(ײ:7؛htY!rH -@g.ѭz䑠cftiTyJyMʓA#*6%|&/h\7Ӈ|Qז/2)B|"h]I>e>#G+d&<9-1 eL>,Cƪ2zsL a)LgQށ4K$`=,k\N@DYƥ7YšS 9woIY7ԹW(4k*Q֢싺g&F]*NrݔWplj50ݍ?r5߫^?Pk")3;yujV=)jn<]SQ̼)x0|i؃.lV2x^${zMe fTQ2UȗG1J4+.,*i[h7b\#3hp^su6yAl dȎc=PH Oz_٠ۮK=-U6`K_.0.1 c~CY]ŷb_y+LGB: o a%( Q}UqeS'2O]Q&wen4FS#;AVT DFoUR0|>$LQ~zld᳀%DiKOUdlv $~ Hy/X% IQ~"ȉW>#3x5#Hю`$*.h&K^M+z?3[;;2Tc(cyYEPuKU_L(RP]ER)`tZ!j<ش{tP+We3| y.r]뮣tJU>Oꆍ;IhT 8K\돘iFiMt҇0US@H..-DROaϘ"pǯtWu)uk2=233D \Ѐ."s2@V,&yx,,/ǝ_Cj>) c#E8uk,P^N\Ce;I28>P}x6\8V Fd}ow$?#%5qk[b6Nq{=x"}l4 K1XZQ)wPvE;ƀ ډ&B.A !ٛwW32X'`+mVlQ,fCM%T؊66a1(<śCAo3xxyETa!5DDvOG 3ESPtC?)08:mźJΙ1<Y`HvEzWm2vNE愗X\0O!ႹyǍ÷\D6^v>%heÑq^m?v ٺDMō :wۃJ 2N/n><2vإJ&o馳e5)|ʏhQIPµNq2%,%nRjO|m:gQ2Ҵ<3%?M/9o}4g(i%@MU]bp(bq'>[dHQ hbYݑ 6?:n( d蟞:_ὺY.k_sv"R :u!.#]}.lw$ B{oO(i.8^[S5E$jkJehdfBl-mu Y1[5^Z ނ ׹̭0| 7eiG% 26B]~էnąK{GR#2=g0qgJZREϤuyF+!P)ŃA; idKGh fzE9JXp:Ͳ*OVr=n6*m)Г\;J0)/ ɣi Ͱ]SAV%ZAW`Ӆi1ޖJWɆ!V uWoIό;1RA,Ĭfoըc#tP5~ X -|r2뮥aR)HxpsWmY*5͞܉.i(7 $AUzhp%c#~G9[DF8&H񆬴G1Q=I(tz2ȣ.؝Aܐk8԰nӤ釙zOyLlG3Ea\_05waIzwnZ6OO FVŶd:=糲` Czё&Y&i^8?y(fmVfF3_(>b[^AGgS_ַkCM)0fGHԜ@.J=AK8,RgdXKi鑖bC%b1:9@3婿D` M~V.T&]JbU#ۃ:ΜwsׄQ UǾEcϱEŕ'<%El6pG c)=:`a|J[Y!'p}g76DHЁy"ev\%AmVӅ)p!|2MZngJD5 2ߐ~z?rn[6@å%ЛFPJ#ԑ6+C`7[C^3Z]6o,sO'p:F\BP583prY(ߌ╛i g.=H72 Gm/Y88]OU5y%~!Y|% Gj⢪Z5ʺe]D0I*aTa:\{*vi2ch!:l Rڕ<'+AkFHEtc[~T[rR^g2(eY\m|v")?q~t'޳| / cq\Ѧhie'~Il (:tP1xCf*95H83GuLP2JUj &d^$!I[ۙ-߆z#F~[K~\ZjK#Ϲ!`,y)(b&4UDfhZ6%Q9"0g ֡ zQe $<%LѶ}tԊi(:12pB_tn$oOlɻQL@򬔁8ZCН3͕^vጟBG~xl Ox^~Ci'Mhh])33L~byp!w\ˢ.^2!4=mA+4rO 1wB0sh t\+ѲL8"ntY7X;h>%%HCќW\N;lM9, BF~U$c4aN^Zdy?M^Y*Cuudc06hIꝓtQubpEZA&mȘ BK{nYBnoɥ5Ai=;%1%-]fIUfW>}n|)*M|evWƅ5L̴Y-=ξ0YwZ+KJQ草|lYD"$|+tBV^S{ͲDON;w@> 0B9 RS>BJқTNn1Ӓj|*~̈́$4Y%vnW`YRcK^ X$̖#A_O޾?G0HшDC$*%y\jLb]OK Ί 0a+)X_l~7X%ua1bgrtKr}Ikj`=oZٸT_g_o?#qqG&-þ '4U[[SqLyAbzŞGW.90"İhє۴D=XR}4M^&ykz274\ 7mRƮ7eJ#@~N l&)*7h&&p]M4\OEZ-Ĉ,T։PUӱMPP$EZs|])`Z]1!5f DPh9je:iZ~+6#B͇=Q77,m^:P-9Xab %u#No58Z+5M^V*k]ӸˣkISS((*W $/՞i[l~ϻ! Q-PTZ$GzcHL7aP GMoa$}vx * Q@6hycq#xR"¾iIqG^WhHY^Gb: (s\FOeoҊK:?t͍0< I\c}/M܍{LAv۠JÄzWkZD|/m 28;G1 z(sѣ)N9[. S՘9/<C8WX>FEAQg*3 fX72p0ss% XhL.2 F es}2G!SXn*~$MܸR/HITڹ[<ѓąP_ ?.hЙCY[v=+鈑7칀sy0t9Y=vN p{ϪcUz"9fXE)D*`INY4r':/,6t]j )_ZΖL +1qr&֌+VY4G~'P+5i7| )zܵɷbp3Z=T~ *E6uz=ֿb:8XZ76Rߢ <+~xzI$ޚSg_S] '~E86ɚb]{w3ݢ,VUݬ0F´F԰u^mb`~7ei>xP^_#{+m뱙ά>\YQx ;[ >5s.;G~Tlr˹6$i 45NiNOkBw=f{9DEeҵ @`,ih&s{OsynÂmjdE N{ 8/Vt d[2pR,}F{*-/lk҇P|)fg:Y8 0 (JurNd/bP}mCP t[LpJ|ULF eT58 >8C-+%R,őW»YLS9Z "IR<}Ǎy@`B4=Ba gyoha\詬V^s/1bY$E;M Yu Bʽ1ؔAD*w<ڨ{om2%гп-Ֆ %EGtMOʏz`%KNZm,fѭ ⱺ 3/_ˀUS?먐J@yaeqEK0}%.,MO(D <^(v>]\XW v=(X,Se]2N| {b2Ô:#X#:FS31n<.V5R1H4hH~hWJg,b9ҌH`ETkjr ")Ğ0sj;B:|D][>XAh7'Mt]4SH6kkUT\%bcIP'2xMldPdcI<=ifƃ.UFw$3 s~[\ﶔ Gvc{C9$_ғin+]No'UCˆxr!q ҍ?  M]Fv xO?vmgH8%3R(y);9SpsFyEWKo AI+Ld1%|.\'N{RFf4)ף83qAWܿ$V^9ί?3RvhJMPro}]\FY2D캧7(Dj@|7;eeA.ukɊ=>/oXςQMM0$g%RKLt>s oȫFZj&CCpg"5O}ĜRtkByvd Y"YR&i&Cx]!qw9YHX qi~$-:As8m)8< Nד$~#ҀF7#^ 0N`, *jcéN\GX &ỻ3 -ZH=t$wvÑ2Bxlbo<ק1 F]EE 7ד`Ԁ#B[,#HJMBӞ/9nrqc:4KE{ʐR_h.Y*priKq={F-QC(0-w8aN^531l{da*dQ|Rn/Vh3Z~㭬vp~~"{ °6QJQ?JXshB sy/֭LPjZŧvi0Ԑ$~2 { ƦT[ĀgI͆9 ޿YT3O (0ػ}˵?60<붴/}d`f/NS.;XOPtvlHH,뱨HH0k0]tO$qdz #텗B򗶜 8,s '!5֠\5B0cF\SP؍Ts(p֯\,9!EכBz<'p(p:7vtW~FyF~6 껧㿇tL21ٜ8ԼZ8gſ]C}6ZBYsc9P/& кAu/{@nNKB0toL-7Q.ÒQ{u39Kh/*%ROl[%-,ĕ-}0+\R^M*fGEgvzO%pH/0z2EX nPïy$u|>N1I4QJ DD~7D}?=mCxJF=>%/+> e0~-c^\V uMgxm?gJ^ԚU;xtfSӄ4@\[1}Xut"i*"N ?]i{YK*Niڸ/>ro##0c.j$4Ӯn h\@"M:@Gg\aկ|Ta5s$E;7_M|ã)|uN|Ώu'y:Q06Jʽ,So*~2䀇q?x(a/a/`d^\:Zu> XM&? IA.!v,UL^8Qv`Rh' $/9\:o{]>48I2SĬ^84<WBc=KJ$EZVJt_:"3^-.lW<޹ԌlI Ł>c!s9nMѲqYWc:Z!d\_H!{Id V/קX_&ObcLj=rLO8 'h~9(ơdթ:7t jIevQi~59 >}IAwaܧ& Kf@^5nY'\&DNLQYk^#+UNjQPK9o.t!-h7NtY?VyTx1=ì"HsA10&<](r _{Y̧HU- s D ?imR8ySBT;2:Wt(|D?ue^vH@ ݙ}˹jGK9#nxq d- TT7(˒iW쒦<&,qZYꢻ٭WgC ~if1KPF#h%33q)1kiyNP吙>jlz %=xusq 9zKG0- BHyܺ`ȝDd5ZY7%6σJQ~ײ$, ܐĖwH7M>?# Үwy6׵]e>([W<M嗼E?U:TKW ԙҘSJd8_~$~k_"{LDT+#@eJ6ES~T O뻤 og4>ugA"tKypm,ߤ>mC9 +m$Tf"ʟLzx6)xWF>hmI_2 cspbuNT7/tδ>9!nSVQ-Jzcg68[ǷY 4ie9( pӮ1l62~&-vКdkJM O2z\O)XtpQHܜ$U/Rš$e1D.^)f]ӭ]voCSG 8{z/vOݏwRgͯI(ALUQʥ$L`}*g49|sY-Z9+'ej9"T1Ia$iڞx/͐/&έY}E^Z(W/ק'ߎ#g'BkM{d 釗)9ŀ!0E֖-DK1350r7 ko~f/@wxHA?/Ln3+HX7dEiҶ*!2CHׄv񤅐UĵLsO Obn^#%7 [h$ӏI\X#qQ { tyٗG!右Ȓ [\q4FH 8ws|׸2^l\lWO09 5tu {M$$L+kty"ꭹ23f䯏jtUȷ.rsAi϶bəfYO'mw9նʅ24)7y:;!d!KC iPh†/ 5˗7݋tN]MScMB!g1ŢYpGj/Y]u@P}[u)͌E/r k>ֶ<9joŅWi#PN1,FlUZe-j\LJeR2A I67幏(cڥB?hD0%K~w^@1: F)udLmŘqNK3g(SſqCoQ}TH}~έBF>G~r=͒7G3ǧCrF@Z˦ ISn8`(QӦ&.ڕp! 45D"nĶQf.M yME'$ &%5ΉDA!Ns~D{Ԣ\.@haxXΊ;&ovS"W [K `5AѱrW08=~)wl8!eRK&nM`hIYxJSl9iI|eA=ul'~ n/,SI+)Ӿ;wAY儩QБ1J Vwl\ZyqKT#"qpe*2}3HQP2`(y&A48pVS6 Ɋ^;?2*RVB.Ch. pF; ^"UHԎ0^HT,a* ,%HxDw }#_N4ێK3jt^ܙ!pfb"YnvXIB 3`tqߩ Y3 ]{%KG"O8,"t1[Q W=!>7z#PfNq`PvNu2qޚ)Ahݜ~ƟSYRm̔74 R`Vz;@CH|l}<T,Dז:K9= 5*G/[QMZ.ۮvH{*1^.)=<~.쳳f+")7M3OMc7ZzE]ɏN2{['Kzf`Ixj.#5j6\[ K88ʳ+ }1:Pl_[h30ָpsE"-D_5Ȋk|gV%h8*Նo=bS82a2=uyS_h;׷Z&ȇAQGdvprUW&Y(d\*'PZFv -SP-O%&]!H{qzc=,ep%'_. S{BC* &f^R=h/Pѕ>eeq*>H{y#% @0phC䴤; 88u5SCxQuR;xҺM('9L)'{$%/9#-u&v i!8LǬs."5E阩/&yQ'gco`݇zfhNy.&, 2B zK/yC^sL, KnhnZ&qX?3Ym\.TK+@`5eQmmŎU {"<Ò'N%CRI"ωTTB֋dޓl8(>IG@H5\nY]K 2n04sd~x'Fmo ч Yˤ5]V?s?ú!jn:*6. 0Z8+ޓMl6ޮƛ"<N]&I3SOeŞc3:[{} Txf <3 H؟ڦ]A B<)=Y'ƟZZ~wf,sKk}$Nw@ aznXHMI%6f?.ϯhKBz(ۤt*^P&GD.*1x;m '^8el`)'fSf[pכCRJp@t Ћ-Tq :,RCvb˅?Ek<8hx]tф]دM*ME:6ޫ2DLgk 2fhLvsiJ#np=ެ#5{I'v^CZ\R(#SqMj@-LAd]\i.G0 ֯ےNHp̥5-c}ЌHh1ryX c( thjϑm1+3ǚhjcMSVrT[~p!²t5Ln%Qo/dVY՘̥r-ŚSUNp ޼5gqZc6|}v vaBވK(DsR_g +m;_]"oaj9Jo*ID?kKmJ`z~0Vf/[2! QZPk:3{!fik$K%(S}#tO%t-׶$h? "#շli+U-(Q]VcE.uM2<8K8OoW|W{λzmf) Ms:,ZgIc'GXpC*ZD#=G]]Ga5W])oZ )$x |gϿV,bhK}*}ӦT$` TObSOZfnsfg:i>PsqbofSQB1WBN0lY @ fc=qA#Q6A6')!ŷ쪐\]KO#\0vfjp϶%3G(>W󈾘256k3#d- ar[RfMh&pb989%~|㦻̞BP'& Up+O g#cPNy $WY? Q Z3jrf7/Om )+a^Qyѽ"Oy'.t>y1ꮽrRr2CtMR?x .7c1T. ~ʇCslݞkuP/B@4sIZC 䖾 YZteKџ2Eӿg0GlP}*IG?#.mO] mExCP|pCJN} H8#v]o/cUq)Բonqx?*C'Ql6hCsmqT]8w4G?vKX⊝cF2ێ)!Os QR {?,P$O~#B[\O} GT!S: wUCJIǃHǚM%({3֩<"(S\(1 )Z覌Ft`~gC.}=,4& ԡHa37$S|a 2OdN C!qHlwQ6bջd@z'L#_ )tC/e?J}xy*wܘb} M?a:"H,E4a4*Jh&L߿ U> sʫp&G m~DeLEҕ.fa!Y:;`SuE/5)S~pfI'1,0*5w`>V%<7@PW׭YC+FJD]Ucκ߆P?Z j5/_qa\w$UByH:>JǗ˿oz%z`Q^/AFPl@['\՞YOkvY[)tRdGʤQݲpɧt(6w|0́ƍ }ep@mO^*¹BNNA9ELs@ӂFiOi,5Ca=Wc TM1g(?%$nFSb2$ԏ5T!v)$ 'i붑X^Y m L>A=].yk%* Bc'BrQQ/Y"~Iq[n AA35bF.0S *<QY3#Uw!ueh.L_hpyTm/v:9֛Thfh?mO[]޵Dj?_ح>S}f1^TA 8aQrDNќ#%T﫦1Ha7FX:giou0!eyOKe@"9<_M[^IJYSD]/ cpŽpr x-6yu;3iL䮟ߧtIkXD%_eU@3ɴ2egj;5y]nQL\iFUF8$Vk5(wA/B^em2 ބn݌ ]+|3V\'Zб18g!C܏Xk=t߱\8JzqzLH$7y:|%X'-q!gxKsar;k {eO" ΊՇ)qfb']?lmI0\ћ[v-0#PDo}rwC+G&LI]Y| 8Pd5ꔭퟺAhb8dnv/=P!ZY$DH@0@QS wzojMKiWr5S75h bF tcLNT&_ 2OEnH#ǐ bTcKmsy=%T,G e4yِU xsSj[7rbng*d}{#NF]a$*SjvfUlAB}lMr[zFL&/\`6.U*;D\jU;g ig2ga9I^83Rri:_/㳲.]`Md;/ -b}9ZHm*D0υ8ie8sQdh ϋaIQ ՑI|͟:)7΢" i,(AJb$e4Kk q aA\{`ed zf 71.JNLİG֤A>Aw )], #VfG1\ 2ޗx|&N) HJ$eR)32/꥕odiQo !D&-HA .#a9?"HQȶc:uc rS/.Om~ws])ٶFI(.u\ӐBMc}}?B6;:zHw*_aDi4&C9 hm|M46z~i '2RȮN [Vˣ9fКm"Pppv-Z40[Ahf ?3|j$AY[GFPou!ܷ7w|fNYHyH([J+DhƙgN[V; da%Qo"tc]q DG_N~6 Vd?2部Ծdyik)G7V ?ٰB;v!(u\:Rf$>{_J<@l?z2gX`i )%evZ6lw/I!r_9=:+|7q6՜EFtU%~2( *ē2kdl 8a`Ƥq!ꮲLqڲ|`rA`T> dG"Andd9M)<_;j8X4iΑaP.p4"-! JGQʣGAi tN(S V'O݋&!sR){qZ_epBl] oyB̴ȟpSzh@GUg2U7šL[``Fwă8w3]A]!l0j%9/jTxlhT_tj){jp/ؑp3`p<5yִأ;ek\w4Ʌ]_UsULJV'0"C}JcBn_Jn,QXiŤmѳAp5%MkTΉ3_CY{a9Ec>|T0 v d3eLWktTjohCH7dzJ}ȡ҇Agʢ 3[KeD?:rʌZJ2޽HT TˬQ/.lIH2œiōB\] [0?,a //d +J aq@'*1+4(o;7Ojb C(;3-δ~A8᭶z@5pOL_m70shVY?l.3/Ʒ$Mnu&Fw0ߨY U6I3uxNZs?SfNKdUϼ|.}Rۨc񞫠vEe}o]@8 o]6u4EZ9 ޲+7DȭX;J\ $8QJ!t 28pA o[7""~RρaQ{a.xi﬏_9ڥa +mT:BTʳȽ> F W{>H?ى&B@ݤinhG+ W ׽uiD * {J&Lf, rHb#O q_$+ X. iZTi## ~SS$UN:X_׼N8FQ\MpBZ-B2A@InRWJ3ʸM*xxcW&䟖ppJË#vޓye/g\恪CzOQY%й ,M~YPP!Vgb7o)e a4 :hSea~rx[<0yx(/; jDiR}|yb>:80!&*-}`F`w@[{2x?&m[ua@?кgW*v>B<G |R[eI;O"ӎ잊J_O$ժm!>N.pt{.1IK5新itl_̽|Ij#afR'e6Gf^bw^5Nא6q㓃 $8UlY}w[ FٌcZ\҈Up oU`=&=K(I6ܤhe]kk&4[);:B(?aO+DgyWA6jP7d1֥mfUcgTETqCK+*"ih /7ސud;T:m/29xe"CX]IctI߰g8j($;ΆFrU8v`esh Bj:vk ]V0pyۍ*j;SOR'2 Rkj&'Ao*o H4kä9 />ղ_'ox'`grpF^Vvx WTf3.Idi*% {[L|Uz`0G_R|ubБ^&o|s3A_m0eu%֑0hh{/ny*iR$ϴ)ɟ=wSۤ6M8Z].ljꄶ P$2c6´W !"=C,H!jsjC`"Cd+ȓt7d^S ĦN OIJM*ʩ_wDԥ㇅ BobfD? =|+t]YJį lzL*䱅'/s0M9˗ -='Sf[ (魲s~C+rPTM9/|mNjǓ54_7_}CIJ~Ғ73S M(CyO#;F++Do=JYϽ3RW6F9D{Z=π=z iT뤇I_i;9avܺM PybKDW <ydďF-SDE AxWa!@a|{, de |eyEaOj6ơh,mS!gYq h kW\(~LxAnZƿ d*j"s[e*4߈uUwa+nzidS3`&0SlXu Wө}"ńEZGwD #VePI Fk ݼ\-)H" 1͆Vny&4R{FDBE˿%4ˎ?7P)EHó@"+""Et Rqx<<0=a:bڌ6uoqbiM%O ~ޗIawնzH!^h5$ț cϴ&|r0q!ekNPIVPXQyCGN0xul]+~ȟݻ%DM ,3xk&xt;™{r;ƿI = N? }S81%9(L'ac!;CWqζcMQCDiݼ ά.7篋gGnVoΟ" /j( XNE )/ko}-!zQ 9,\>8G>yNfIXCjMfdzд)9wNߺ I(hƋ63V:ApPcۯ[gGW=@5ҋcK?ZohdZ4`O`c8ߋF2ɑ5S*B~#9RYߕ-Hw4Qe9z1`}J"r-b.ϼ^ȔI|#LsXP^_JdxP,-.NW"I`Lo%{?qZ>e*)NP QXD+_kW0V,c0\a+#i xxߞ\Z-4+ns'W+Ov-48kB(t;st\>I+>rIB\'_ C 1ʖҶܤsoaZcUH s=,I}SF@9tU XRg9k3_(wa?zSfCZ^HB-7[ H!!} WDL+@`枘.~XBMI/ Bԣә{~͕20>R3YZݔ*`nGh5 .3El}o_}Az54I^ՔdbW b L: !UEv*>Q['a2i!Wg0ZE.5" ;@PF^k;}GaJ(1 Ǔ-?@bS% EoJpo!50K rM8JmC*AIq;W {渉W72[7D+$AK?w3)7/;HuCtAas b xs[`R%Kb: `Hҳ× +R:L@PE׾f8g jx 1ķV*8x\yÑEۂu̎51fJTy"wbZArk?Ɩ`Љ >:(LWԚ>G?zSj~Z~fɿ`D%;}˛{T{_u0TYuI胊iċP|I2 EWR϶9F߳FRx ؐ Rdy/W0cvƜ{4ƱcսBYpU`o R vba 6!WjS4P7n)V|hTtgL*_o2e$u0 `Lja<wOV57iSQ e`8!SL7} \C&Ӫտ]u(="YKW?C0r(g`$4qdC lf)E]`ILanMiDpo2V{]a4 у'fQf+2FL|%xM7!^ 2ˮlnUఙC4T15Ze0m |)HʥR=ޜ;r3? u;_r9s^aJ4 $ dyc\BsehB78W}a+ ws$oߚ$ї7O ^mL6_yK8 hD>dDp?M/A`4IR/bߨ.3%jm_1gyJ#!Ѐ@!DRۉ{T 0gFs/~~n <)oαobpȗu1BAGU"rSゎ" *Nޝj@HPez'Zܔ|Ek$zg"2^p@w2\z]/$  hUE|"<8aF[l%JBdKG۫wnB" L Q6A;7*+؋$N*4rm58O*YFl3 bW%F%#h,FK!@ ll#4vOk\C֕ f 8Uu`";'E1_y3#(/m3h4;XChQ1i"7ԫ ȳOpd}H%،yy4epcK]/ pig\A5qGuߎ*svG0'PY%%95q-,9kyZE;+8O8YF.{} k e f&:&TY6xUvWgWտtu!zCYC\/\ ༻1م; ?%@[Du2ӨşK kV45WN3QlJ::zm?HĦھr%OJ֘n32y|tG̈́r1{,u\ =ϞQ.SAE$B؈X";b xZα7Wja4}%:SQU`&18zs J;Bܙ,E)ttHp3=` 35ranEu+T<*'ɨ48>u\b7T`Մ4fgќ1 CFOOHN=MX1FSjMƃ9P]X"w6R/Җ*ɭ: nW%}}j(>B= q{`:=pdzPc GS+KԾ9>5\I_-uDDlVnOАXݴDӄᱺceaՔB< GXwXxV#<DQ-M{&jOp"%}EDgc`azGu~^SYRJf5 fԪgUGUTN.'@8vE,@6 G]s&2w4^7Y8|NO}Qbݕ@?1L m⪸cֆ XHOW!h,ڂuLa7r(L/7]#W\8 {xs(tMHc3WQ)Y)*]1)ΉrF/CV`nYh VIg;Nۥ,r -Ў88X Ҧ+7)Kv `ݖcN;N_́KSIƕy\)~F0KSco 9U%<55VpZ"HfjY /ȽF^|`j-ۂH_V8T0' #3Ub c "/5IȉB$/a/{8GTK_95*e9l 1 CXaȸ D⾴vqdj=6"9.SJaN//6r >fX_$>ll!:MG[xՇ R KK/5,[=¢bXk&&6}[FDiۉZUPT7j=x 2!q`=7͝UKe廎a㘤| A>c䐆p&IC I)z`ay&zr/a ZPt:>2 8*fبqB7l )\J9+/SIEg^ dnDMnӵ)l%0O7!ͮ3}9C'$;q 67}2! +j*Ƨt,g=ɂ v/$Nnkh LF_|-\OFxƵp胡ni=27CtnZ|p q~3fNv%1JN1{%ʃJdT-!) pk)C:uB c'ͽRKْYYșzXi04H~|5=_-'!U@"Ge$T\RiY .g\HR|`H *0/ ~XVwC=-}-i4"(>(rO;vW@š-hGd w/}#PMHȲM8unT_&IqQ ٻyrbV OgR2z /W<;/0K*ŀI%'($ UxJйpw0÷qYIUOXff:ڢFGDw1ƕVVwv@k"і%Lk;FOh[7Z+56"(E`I^c7Egtfᙣq5ޢU;ڏO{ҰoouY>SBg#P8w( b4Pq90qeV_#ѩ&ƭpn|S7A zWOt BL(L:g-/zq듾T" ߜg9Zh|>;j E֜cE|-L&H6n1fAVnJi+˹'?UrV tT2{0pI/7^ J`&kݚ,W;u#1d&`Fdr^mtt0‘58@c\'T%O. M!%R*MN҅@c'ˁ5 x py}c= v@e?!S}xdG- Yނ?repIMMqϭuMdŅ4pgSbd\8uZԯ^+ ;-Icԏ\`Mw*Q~ה7.qBazu8[ϲЕސXO:~q+=dnkeUߵFBu$DJp8CaoX}0Yc,81S輩,U¥IA1J8ިdU7Tt!hsk*9)ҋ$iE>. #@UI~8E{=C,DE>A߉ЁA`\Q 4suvL Spcvd,@lmwT.}2q[DI)u" 'cV+jqZ>=*B~!+b6W< O5"֖:n;FyXEtW:Ts< =cOT0x4 1~ٛQtKG"L+,S {y#j-̏?_RP,PIMUjuS! (YQo#I9ݿH!0qݧ[/#p3F߅&pI椼$( FK& m1@lLGrL4Nrէ+$l~cvL?t3J(7rki2XTXzj9YAc"A(=xIQ$hhd|:Deb/ƶFuKӗk ^3ފUAXa<%cMީίA6ΖlKjT^mzgobjewѶ^uMP|r~:`A>\獾LH+0~;C˅)KNOᎉFq,}oY ]OhUOϕԍJj{bck}1ŕlooҞ&ͦQVyB*!My>,,Wc¾f&*:?_ dzKo81K2:ݣXY^|è waLeyiƛ1[gL/~{}Q ޮKKvDD!"]Js|p]mds viR^oao-+Yn *o?H%8} pԎ]Phvq:(@WmyJ?uvM@[$K:R h,.نZdkKwPO>k41 zY0у d $Xv4T'E|/SHJieky56iCp,I8nSF+i%'$%AT׺\' CVo MMgIfīH x&3@YJ.L 9yCca*<9ẓ!6Z@d:y~T׭yS᩹"uϿiF6F31خI,k{kM"oXIAi+zXRښ| bL q $JuW"b>sJm/͊='8/j3/p-oѭF]$lkF:m߁I|P3qk5N' XO'f'q=\ڌ-u[ H"?CN iDwS_ /wHj9dx}TW\FRp+)5ŒĨyYN/#T'v+sVلƴpRv晷fM8kȳD Av7:dOE*K f?}LcP1} 5+?8 Bk(uĵ ]}GtDy`:Ȅխ@v/aa*l}fR+g@ DliƅadHc[FD u^`i(ǽ&9Qo@"D/o;T )tJ*OI47?dJI뎍!ZvH'TyH^"1A݄ <)'@iʈMUtbdY1yذ//O}8oY1NǓjzkU}VU_ޫ\m ʿX‹_"SpZ6gA.J.WqIH3nb&+ڽ|->)\|6"?CLA{XQF ݈UFXwc yTR^ӼDe#L8ynrwE<3B/?K$۴x/0'SO-goOsJZcgxexAYiH}ʇ.-xa8 /3j g%V(&?2KCvN?wV>v ܨЍOMʴГ墺Zok`+[@c,]* pn6PU}eѧVS '5%oSns)& L`ҞhPUӚ 9f*DjUI>%Nq+zae((U= 'J3/t_1 =GCG.Sט]U"E4w^ B cohX+fRb'[è9=GenoFܐ [X<Ⱦ?,J giؙxY'M#Eߙv;dhJ;GOj>]]]qzwnfg ߈ZU2eMP LdjFtzlsD b4O%ʐk'Ss:,2m@:;a]8_KgAYHUyc+IODaSsX+vhΉ@W{6'0Ĝ9qf\‘ljmCٔ mE2 rRXsn`E=4 jNZȥ+",*HNZO,"qmݰ0;`$kDY A@ #1?',S^oXbݟ{H`HCMmvC5<_}5U2QvpL - &E[SqeٝjOo {Kٽ [իWGpSfG!V=_t]7l '64@esefF|HGJ>RdyDK傗Iq\F:k?AcU xgl;F +U e!4/AJ\{:YQA!6n/@:j&0 I mY@C0~kٝ8x+ vIbcYO 3B"VQ[A?G%F{FRu8uiɼ=?9E9|/"+ƭюmTۉ mBN zX":zwҦx 20UfVjkg}|r1w\܏B^pߥ` ;T{zd|0nli]}Աڴ(bO5ffUZ7)*+ubiS4ۜVF~s DydTaΛL)' DG_ϙ.=_ #t+iKWTPiHµҜW o4b]}m<R7LOa :ZdsCn+K!W KwR/'ivrC0i3݂a+iSO8|:KjÇq)g^" VwW (,N>OWWL]"3Uy߉- |BS8{;[Oܹ~B`,'kƳba]FﻠS!(Aī~IcZ>^@\3Uևܗ .bV66ulF{وWlsԵIZ]-~I=R;M톓AP}gbt<8e~<1"wʀf`t̼le|zΧf%PXP,+~C0E`R CxA760© C`ŝzލn] !3G{HK"R/;Kok]~'A~4cf6rjx1 #NjV7Tz :%iB!L C2'ӪyAN6!v%Jɋo:W=\̾oiXtdtي45+xU8R'i5fq~qF֎((,2en oJ,Yqhbj5JAӓC]gXDK)/5xsX14nSpj pG|~yP!L4x '@ :ǩK0YDI6 AXyȘX"C*D{Ǝ98Bn$ꗑjnMdpepr]@\ fȒ*Dr;{7[UlWfb^D8ÇZ (6`LHa)ů_[ hao14f"c ;G>N[Gyy͏?,R;<#d1s̷ s9UGO^:1hPs.*w/Ewjlۚ}_;Ӷ-]`Ydc!=&^Ǥ ձ'e#4wk4JQc:xW~+RSTll\jZ+=IG*{3uG[;D ѥ!/[_Z0:az(O w/a_[cp!B@+\_ZcqiҘO8ex~JOUyEiq5/^o9Xgbڧ+ w!>^.}:(`KoAI?B5;8[!v Ihkro2"!gPNa^%1..P! ԧeEHGI>5TgcngN5^%HS]g /j!1k-f]NwW+.շD!+ơOxcouܥ& )167,RHT4 9)M# +hY)uI1ނQC:ܔsHV*lK!zʁ̻ 2^@(,m`}nb` X Se*;8Om)E,|T|q5w/ n ^H`F J27:s88 }Z!W]4 ϒ(%:Qn, Qst-z!e+{QAr VǺ]4NUu%@x従!q^ME-HI-(b,AbR'9t;֢F dd'?l`@acC,u.>"ၗ>u(1e eĻpJ6,c}yD%M1?/[j@$xksaUD孄Dw`D)CBezM mM5yC9N{VՐOfۃIV7*V⡞gߥ4 p;/7!hClPm S A=~MThc]'R)=6ޜ&z'=-v8A]ߑ/ь&,LVBI=U?NCSTQas4p`}2;] :`jƟ݆G&)`lHha\8]ONU8v8΀? %LDvaGUjWAseh<+d' 5 'szu}%@TDrd*+0Yt|0!Y R.Eey|DyTU PП@!KuZRD[o ;.tl5$i=F9M1:!Y& ~sА(JBrXrlʛ<\}Tub)j:Zp>?-|TԀfbU jf5–֞qWD_@yIɾBI-uuAS75Im2uu ^u5"mbL%Ƴ8 s/v =g܌.PZG3h-A7X'VwΔv;]Ȍ;a4KG5172,`pb[X2VUDUt"*(BC4/ͻ tKqNܨ {?=)ci׺dWS{5K: g> ^$0'ƼMR A⅔4S1p h}NX<(iafe fޡ؊=y+,qHÿz3(ً&n@k|| 9[jIX.XE;WVDe)=Қ)" 8Q jCP+c!ll"\p8Ӝ1s͗tSzx-k!jDM1Xpv*g+K_myu{No>`wqVV{ڍ>KEhkG_U9< 8M(AnXc4V8rF97ݱí@lnޤEH(YJmq*`[z}7{Ò'h>c;G]9sܶ cű~,GݵjDUwomaTLD}CHЃnI$G^]PZ.ݎW2fB0K70o[#MXQuP;5'yc'nx40Mv7evodP\IZߖ\ҨzL,FMnMͿF0ڐ};n3 zymz+Bz(w#T'k()dc|junv|C+VIHB;hgY,X%Zȕ~O)8?K M1qGl^"Y 镫o}BDC$6PƏ%O0f\vSF_R7.ْ/CIHؾz68Y/P&J:HomO v~46}, [pU|3kW[3rm m澅Pw| K6ru]tDe:+1P&:`g=Bx հTɋkr'_'d23P疻gE |#qmGQZ6cG#g@nYfZ2$6zsg!h Ҏe#$3v*|QIg`ckMVgC:ۋ\p\dy渞h"[-UP'Zqם6\4@ʱuߗ\ +$(ǖvEҪjhk hG$W;G, Ɇp~ 2%ǀk^V| 5BMK(?o`XGNA2fr|H>VOv̘t,l|mi2}m1p.£(ڼLD7U*ŗz>έ6]xbj$y#ߑl>8˽B 5~7ŞCeSV_vxN#U#`}Nc$C ~li 'vF^Hkj̜iֱ1l (e|j?fcͰSc.Y/{KBIkTG~w =¿7ďf <-SX*NivY0YW;>ԡ^ʬ\n b,EӍ'm VѾaao^*]}ThxtQO*V)Ɠ0tzwpR2*lmG@>'UbomK( q~}%o] K8o;@7f1Wqzv/8GC^5#9,v fi@n&5J}K Pz}]lIz 1Lm8Ȉ4 SȾ_DL8=>"ꆍc4ZF2L3vńLg>qQ1`h7?ig\Ѥ$݁3AXݲYmj(͡D$xЭ #׮G.im%V-Ηp/zi;)-Iy9MGc:zoū_fj/ 0q#fBd]ߵg״[WkP^KiO97ғW?>$>HIƂE ,fç/^U[ ڟ|& qqݥ/C/I1-_sXV x,EZx%6̲lj(!ȫ t(;E'fmXT0F1MQV#G$$vf.>u7,m|Y}|^&I`\< Q9'o1e>E to5I>]VŻa 5HaVDw`Wu| XeN?1AA~tw]9\RIOr3uif\n"`;]X=ݴR-eF!GngHq4I a_]jWHs{szŅzPL +Ξ]:5ϻX` bHj({u 1cQn!w,nGbG%+b6j&?#"Hwd EHJͦm!ڢC-G+v E 2F\"L 7znUˏ- }&V?dq*/) 3JǬ̓na4Ѩl)!.!k;UӘǺ2y0 ;J) 5 ШiJRW[ .c(IJ^[Q"K 1~'|EaK~O".<t$k-ͪBlpa%ٙ7Lw~+k5\ 7H: ?uhKf8ݜ/ud.ԴۧuGA>6ݛ;U8M `z&@OprL%pC2lT8HBdJK'} jB̵s^Pt>#FhE@1,rVļn)oqα"q'mC=9uD<79bb׉/NWKSWH\jۄ8G NӋAiwa uAKit*kG4nѥ[S oq y_l)@^Ի)of$kc6zG\ MXuB'xr-`2Kqg2N!,FhC&>ubS?aqN' 'ͤAkA Tltj%MŠV̩DpAYB64CX8ǟx֛ qR'/r=ًϏI!h@WMܗhƎJϦ;ԳD}_}Cg>E8/MMz6zMgO2tsȗ$؅,J9Oآ,+5睞Y.-!' ǀ%fd&&eYJ])-jXY$OJƼL&nrVb䷷,3N.SKl,IK.ؚWe4;,JfTHSGc0 j 7g/(GضI‚q©ЩDOSW fc3B-)Vs2rlmAg)KqGW9s ~k<)gkkeAY Ivpe˂6`@L"Z\*W9sQ u~n)?KT,^JM?s1!!+ 4Hx"^ۈ-I \)C^ޒFs]g8(,7JH5u p;(K.l 2b'%x P2ܝxMFVb | b!'<q4LoHE@ٝ+az=S\_-6O ;iCX1oc^7~kG6 [æVdPsQD8CKԣmw,hG{M2&zJAƕ0>a֢͓+ԭJW'HD\8Z`mRW,8]b_Žk \=B#GIckh KP2 #Kу}(4w^<`jDº/46=DUB4)v= $X qp_&S]ӫNP i,A3)~fRzphk>% zp=OBqZtJBD`jDcv?f4BRH#Y)wbF9~=ЙYd\b`vA} >jˬ8u$g?E"&$t6劗N%,i|G/%Zo$\Ą|K:[1<mG.ZMms.Bd)T nO-o)(  Ώ6FY.MH4s ^PpvH\5yH._)Ja">kN_R޵4 sYiveHZ?hl??x0Fj&|~ SØ~='P VyLgSk} 7tƔݰH#x/DɍL:q CV8~d5+;ΕMȨ[媒%@4(֧ ]fWыJT'KLl8+G )q(U<3~|]sgxumٯ ՍVcٰ)Haf,狊7mЁ+/EE$8Ɲo^pz}yYrXZ8ܚ,Y ϼv/ͶKY^;FWFEʕ7q]{,Â;-B'Rpi^ԝS$fܫLօPnގ6/'˄2dR*͂dk<z)w3GK>;*"'YUEo2.ň,fGܙX5`۞-expv=e9O*Հt&mE;kΘ[ 2dͅ$B?oi ih'嵡Jv=jG7+l`l{U*:_crWM7'!rr&3"6tL+f~HXj81 Q._Ms{ޡFVDGI,7UGδdLTjgjn1mI"%We+fbݥ6W̠#F[rƂFn&." ;3{I~uԉZ..It,eW2ޡIJ +@_ѕfN|pr̺o=$yO`,9ȫYH %a<^dzc&x>PMH@mi7"n*n70$JisRQI7 J`IuXpRϳ ⟵dVMd&vWMiHe`7x.w%gl}TPeeN9+%ϙn,'9vøDSԢ5N"j͈pe#hZpCwcԜĕ-'KN~qN;W xbldċK"ݛ\i0P޲'}~,ł7jMEƍ!ֻ`{,EjuǍvIX#"g+ C†όKUL6"tVGozx)mm hP^>H9#]g@?7Q+J>\1z\TB0 :qVV*%rԶ#erٶȵqgM`м̙o i{1-#xU>)_/!Eu0p7! &*` ]?Y51b Jj/198,-_ː͓rK?,=3u5Qx8 n (Ͱ4]X*&o)OKm*\^dlɞG@$ޡx8BI t/yͅ4>z^oш`9rR:)ߥyIft3vU1M? ]C}asxz$ߗ 0~9@Zpj,eŷiaZP`>E8OC ]So|\jEMؾ?*U% fu[ɮx3M(}Hd7bP[Љq_AG4}Z~'gCAzy69j/1&΀j)fNkoKuƸHټ^߾N29<wیM 9}2?p#r }5Ų[GP_;t"9j+gZ;t=x6>FCEDo 1NIbX<KQCP>L'Z#B^se<< I{ dϏvCHͷҍ`'"![l%nZ0sZC oD'8e/))=S\\OXhC{xK qXxO1: 1r~rRqtr_)7*nqpSjEh$ʝC4tkfukа)/p4ޱʝhۙŢex;QD&%@nM"ȲJpx:Jy.{橖jM4-H!+R:/^{|% lK>Yr{bbϿvӯ c-Jiaz/h@i% m#End=7-ӁEdR[ex6!+ =5뿢Ei,LcIkY5u59w?8mJX@dA'u\wfɥjދ؊flpgA`#-/Hc WL10վJɇa{q>+~5#˾%enɕ k;#H5q&(S 1_D4g\sge(vE)u_:lPO&Oky"ֵ9[H\#7 ]/G 3B ]k0Qɡb:243V[WܜP ,K!%Vc[֦ɲ˚D;|M#eB?pY %Rj@ e<?]wY((h瞝 E0X͐!2g; =rz+B rH{Zf'.y@*΄}EnM|N@zm"^C&3KM m*0˒IXTBؓY}| tyeO@TA8r8([9/^9a6f'2Sl9āC9B2\iT9Ƴ.Vc,28y?7=~q i.OnwqY&G?`ׯ_bMJPkUGg@ʷyֹIέ%Rr|„;{Z&K Nl-LCDw_li7 Js/sHC"Pz߳xWoO|.Ƥ6g9ԪbL"y·ٵڹRƟgi4N(;aߝPdS}C.Q2|Rx.|d#3|bFxaHV4d-N?V֕SC -=>@ Xq]h$,۪\A@:Tʥ Άpu7Yw~xx"b֜2S%k1!I^bd(QKsKT^3Q03V<·%;@87<{uRcsVw*a?qCbwnDF+%=BS'(Re\n,g=T. )D3c#T@hd.v |9{`[9 +_DAY ;_aF XlbcC^κu~+?W[)+i7VIELEj U)o3)<\ھJmDC'X7o$1+'ec֚qEsF_9Wb 2c@f Ve;wr?ʍŤ%۟`oLBQhV,vgx[;[B~'ͦw [@6TOf:&W6XM 8XI N]l~-Ԅx3 [_At 3=$~Ԟ*>?4 o`Qyi Hߴ_Zɖgͦ_ d( Wď/pEB}q$5&g83 b+$b>o4-T3ŚhhOCx+y9+Ez)Nj-䧡HQ0 F%4Bhڔ.uG۪Vq.ĠJwZV#]ҽAuJ|Qߣ3˸=T‚,qr[cV@HfXH cڣ$>9m f]΀Mv98 #@a|<Rk 5KS#KPUtH6PAO"2ntdq] ;ހ z[HqZxE߸y}͔k"͘8K%{<>ٶf.y}ukMuw\ݒ \V`='R|M$ *VcN嚦Kyhy` ݌8MZOGQ\54g ]On#o:Щîjѩˋ4Et# % 9P`K,ќR.ou@j9A(~ -@_jﶢUUs&Ixe*f o[7* ]Ů3 ogM>9LY΢PUyijV`y>9Wr&9.rJCLq\^Ҟ'cDW%M6I<<բ!Y'g=ӵz]BND@hHzdw/D[=G\'Ai&*cţvց7U1 n1@k}SKFdq4*hUGB췳<6&zp4CbEboE*kVpZqc$"HHxR `{#gìZh c B%'.O 姻QpM("w0K`zlmI3d5 mxH|=]>yv{&%emQ>ܓ1l Md7}( ʕ sʶ)Nآ=l&gp{Xb4y)yq B79rx+occA"?s Qi& ::d1(:.ԥdcoLqMS +mN#PTTתN+J`Y`m5{E [loBȳ:9XvTy.-ƒ]Sg-fg/V?mUĈWMx` Vr;~OtHW8V~ |ADW@'ZThj؂7=US&I'WPB(.N?Hf>gxiYlashTeXMn$I|31Cm9pcdx7,\WtùpO*Pq7C#Mjř);f3GMKx}JĀJMLW ّK;Q>r4;%Ã6y D s/M!UMkRjjH rp<2һ[ɥyζy:"`:tI%]NpJ$G5x`4j\Q\X±Lt"OfD2 CbiQjHdd$TR-ֿהaӞ8ώ,2Jvʥ b,Q.wN9u(K3)yqT$c~oꎘu#4.Wٚ:~6J\ \;=ׁoQT9ӍcJU1'jq6;IQuL6QNCMG:nɓ6e>[#XܻPRz^ri@ɋg9uJJCWnD&};>^kBey`qGVl꿭yVyaL LVnJj'0,ϊ2nl[w%,5iF<?Ԙrv9C&xKIf|H A嫄 *ӣ $ C'SCcHź$B(lVN.Ǚq}6{xix+;,Q (}}ږI8NA߀7Kan)Ɔ0 4g7̃6McYwehaP B_*pC-Ȗlt5tWN/#_ބGCzZ,3|c4Fg畧i :Rm&Ap`ԼW s;pJe{i9ˎq<>кKaushVG$o%V)thM~b <_!Z8X͑4C䌁Hh`]Q| 2zTvOͱWk`2BP.cŬ-em\'I&ԓ s3hz5uN`O랟1htBfLfy "6 eDcl %v=uZ-F<9/ͥ}S|V13k(聇k>ڍr-~u8^cBVCo8ygG~` ͠NJ+R&7:,h9ː-<{0A.0?n6{~qg܌ a6 جܸ?VTL{=ȃ {_,Xˀĭ=QnfE}4. \2+еY>?%V'/J}LUEʽ%io7|2"= `FdB&WzJ8XR%E&j<64<3MHݨT1-{?(fGXvo2z"&T7>++wr,cf_ezkUڊ<Z@엣^:!b;\Gaj7Ns>'pFv9 ?9Dv4BWWBZLG(eK`ń%H,qT_654J"P1kCL NI`\`pY n#R; 09"?tTHPոߎa=8^}>P$LһT\C`e[>yT]5D.uMPIXES(e[?2~Sw HI,SլUHs&š}KAO~1q6j!N?D$[3J K BF;A093pP6%ΰ rK9oez&A1dpf"-?*I6`PCh-+/p:cr|Sb6C6E~(Cvg4ܑL" qY*` : mG#s,4f]lfu֫H2޹nIsj8d:uwF $keز*EAO$$_ ؤ*5?F 7 αȰkˣˢyOBjPg~6RBi[9 lv&hw+ΖB9^L[iL#Wj$7դj'N4鵮YDw^x9'-o!"E _|zꐗzCFQ椻 .pq40/y,a]kSj\O+q2 T%ic01bSCdt~pI50wo&O/ m>Qv\@55xu4LjDd}X˄M~,dI vY`ұ0QϷ qF%m:pv\rqJ!*:?4{sqW)JJI0QYs=)o`,F}Ł_UNJ#_N2til8vnPcUX(O#IJ4|8PLQG_ h#,jI0/~-( +C9˶'x/oZjMzPJ)C94Cӧ5;5>/b^P<[O_&f(߫B{1l"Tb]drTlw֚͊gbmԹU$jToçW 7W{`B,S{x|C ` ^[unuqC! &io(!Ģ]q s :x)Zn{*x"91xߕΎh}:#׏#\#@#֓e*a44bP.-{#i߮KXܙ8]՜+*h2SB 6$:ZT$DL:T}'Z~Tq6/FXklftBl>('s \5<*(S5Z7b|*[P:P98h\u9UI%$,#e?tdw3({ )8. 9aU k߭^Lsyk^o@Bq鯩;Tn3A:#;85V2L43d&ְCu4WBk9 ݮ2N/]:B7],j~5fXFLYN[J.N zui?0G0=NsP2;l5J։>s9KӢ"s;@_1i3rC[bXL?V&εxNY4:,'|RI]>#J=S~]}gUA:bE8OFR1xVp$ܟ S#zbf߈gP8dKzfg\)HzR)lȧ/1؂%>Yvj|/=_9A흑'V,nmܪRBa8xq)ĺ[qlfn$ ıVa,IBGjH)o팷`]|C pڞWۂ{5(0H}Mb{U†3W8*UU)矱_ue@U4ΔJ'ӐG`C1{EhxL^̓v` 88F]'$gg ^ R#Y,n%l[jLsZ3ߎZd)k+#R,b>~kf 4TΘ\";&<텂y4&!Ӟo5|}}.x6U[2:k7v.ud*,Ru _H< X_9Y\~e\{JYZ$:2=70‚ Oػ0g/Dlqp 1D+W1;R/)YZU;IDn1(Q[di\}%g[Hve/(N0Z^DL A氳Hda<,*)fRΰw<9bK|b"B7bܱO6 x`0G^bm&qUO m^pirx'{x㸾C;+W:zɋ/a_r&܉hF(7AQ#a,y o@}&Pi*6oLIk--iۡηt (":𰛅ԣP1 ψ`:+;ӚAV){5L qNlT*YP69 :c1RSȍ9*!EKUK ,ݢ&AMXܩhwÂI? l_VFmDO8q;w쐓|G.mFqA8m(&SM7d: jIo恉r5" YC dYߩ<^S)VˡܫL35sN!OQ˾";EpKu$7.lc\;H!PՄG^v@tCS-`,"ypb;t$͌j3>vAu>1 Ö7Wv a [k7ѻބ? Yn7xh"j~Lÿ>js{\qlX=HlCҚN\Oa4~"meP,]'P2Fw)6=rpsFkB.Ssdoc<8+-!;[]bĻk)qJ,yrcn ]x"EM}#12SL>t6| "gUnp$ۏjZ-(b(7vER :u]aIۻZȤ+b̙= "v81:cЮZC.Ӕ7~d8H:]j$2alڹ]/qyo.9AgZhc% "~Bh_)M?Xr"y_f }U=4^p_K d ɽHsY?kD)G.yU/ HK#~t#h!Hǎm+N\ziEQƔ")RKH&'|P|qtM>87k`&oLNպ^h2Z pulԲrO//%ӹ)*Rjoeg.f4K'fJ@r+&W&kP6/X.xu}QB\6;L%">$DCՄP9] \ ֜&QLptBCJYRc7NF֗qV Ϛ* عj?W2+gc(Ӯ"L5T܇kNdo>ScO&-^T;}sy5c&l}ZRTښl/?N`y.Y&zGkF-yY(%]ƳYI^oLvяd|0T9)2M #KU;ˑƱtw|S_WǣpXs =Z_ `qwpxD%ꘆ\5#@a3M bnMu;˯GL=6I0m{f+6#i*nBIc'"ьP%$o/IHYH2~Ö5OU ߦA%ԤfA <&ڰ[I7jxkr1ݗwXpu3ʥ=)"o2S"-5apқ2v(L9}"\H%`ųYޓc,VW:NtGۊ.jz籿f/Kg2̼,^.Jԙ]u(1^ $H΁JRAI:d_ vjv3 P!ΠNJ䣉&9-[@\tK&Gr,{OE.X,<|쳤o)ˇ]pI5I.^!ϨW2TDDž- 5FATyX 0->C\䥢@Xo'fnPXjQ^Rbo/M=Kw6cQGGuuUpP, ~i(uDIS)qek.ǃG \B]7a1`)SRؤ@DӾ4.IClج$oW'c{T1K7^@dCUPhEf?hC{%+uYf MVy 4whn | l5kuߖxa 5 R,' 9fZb>EMHSF*Ap"x >Vw;0duܞB޺XCx馎^bEYcD ]4PڪGZ^AX04=x~~|& k?%*@Huh3ؤyu;#z)B 4a䋮i {`k"י3EVI3WuBu#$Jiœ!Ļwȓn=^8K Q\Z Ay?g4ˁ`AH,#Hp6 reOėx\S k:T%*h1F0W$5b52q6l+qҚԅKV3m۱G% lŞϳcN& `a~HG6|uJ~ MzLrJ ϙS,t,āZi v/ޞ+ݶ3'=jbxW/8!jh |;O^ʖiV:\]H=g2SkG5> OHεKW1~'δƑsE[sXUm=Y\x ]PY_uINu =AU }ywʚ<wYbT^hB -b=J1$cy>}Jf{pjJWz3`hu0%X$7;41%F ֵ啽 pAw+\0C\U6ph RgxFbA9iyj|E]UoS3>ѥ,H&$!"}T.˘+xky|wG.Pnm9)=(txl:ewQzQER+*Js9kQIyPÝ7 Ɔ˼YǠY]xSRN;C2_bK FLwG5wEK9nD]0%V](#!9bg ?Mg '`?.,v?FCDkSŊ/U}錟k71h5s$TNaA$C#x5U~Mt:|&?i(jOD>"U8˴Y% P,PcF1B_ q~ w|NȉR:Ȏdr‡ CrZFQ WnJe(#} k,FJ+G#{T.O!cmW?8_7<.C,]oS 8 PvCs 8\ʗɤi`[gAB$.Q5Nn҄Oؼ:8WԑP*K 45.5k1TĊg<=M+o`tSPEQI0pY$>81o'}Pp!$xoH'2$qmyg)u&V hn jSZ'|ωGӝӻ!8M\/J-?N#l:[M67+rH6f}nK׼C#E=8V1'̔BZ#gOUj{ta;Ea&m昱Vi=:y?RG.e0QT1'UQj]tʌB V!i9`\..$>)lI :}۠]ŅƿQ<vqxnF' r":)k)mrA jҕ EKFlߺfWTx¯h]Z~f:,),Ύ I ^&==}SPh[WAeľNS۵%j3c+[Ǟq7<GGie͐9:G q6`I7%h]JK J6e!hbT(T"oXsB{\3tZ{D)='grjO 'j>(<>P+gjfHWjsǥy7<4z5x6QO'LT:t7LC@1H.U~V VXcO$O%ԽwG]Յ-θ# z̤pBz @H=o/)l*m@hFq a`s1#m+oCVUb6MmC'*@IF3w9a޽cIikP^c~Hx<<X˹AzMS["WqA`fbAj=tRǬZgn3nu0}~i |c8xpׅhmՋ}g/ar8@QUZ7 !%G*X `̃XBCp5FbH XٟY 09W/G(4Y)h ROd>V(!u+uTЯ+%xK"$F$B={En,¶.fm@6' ۓ4#joǭ** xCblvWbj!D8+5Rb+BgWr(T=J/0<~,t~MIvObT51kx\ RK ԩwRGÕROR>X̤;2 A52;VaHU!=aۨ@;i'<)LLWƶƦvHBi߮1hS#bg$"LKiTaCZhV[ L=LߩweL虓[WWiȎ|WuXR J}wDs 6$҄m >ᗳN"L4t8^ `_ =ÐzcKF6prҔk7J4>Qr5 y癩vVD6ڮGye/ƻm + D^3Je@#Jln/ hHWkqX>BhkuTB_ Q}4~< 2Uz",ˆd y! bU5tvǓ/@ Y$VXw?IZ-~}j)ep**!K%{MkBs9#/WZ-R-`2=v?P!RoL/h7tqe=dM/MzH ,&O]YapyWŏe }L; oT~~hI/i*S\k"TSf @[W\?DBT~:x*FN^p Dq6+r x`>gUԎ/Xҳdӝ~N]W{gPOE=Dб7j'd@hW0ȴ'OoH3kMۮ+uۓ&1D`;HXYmͮ0A AC[#T[qzG~㸲i?E ;[ՈK`^sژDo[菆UFT e:8i_䝈U"TkI=Q'dnoQ-;[ICNmXqzwjj\EFRvXq4$s'H>ԹCٸ ^&G)AO!>@rjn"jN +7SFZ@h8j @ qʴҺW*qtl^̼]$ynIM.`kܙvTqz S#Y"q9/B 0H#?VTnxzKaurQj+S}~q:IiQęn( L}yF6 L#rIԂfN\y6Za d"&B0{d'{(+Lj/Gbښi䠿71tXw&ܑnR@1*`*'3bUB ZS$t俀~y~ j'#˲̬^% 9rWQFyBAQBgzPjH|. I.kQx5R;*GfvdgWieUI9@N<g0U ]0>enux5bdv+KTǓH=|~J윿'o;׸/.=r4DGf@gqGZAh 8q9iT-Ų";Iuv^ђノ)؜!^~hQAzx&k]/ )Qd?UQm< a }V 83đ -Qq"i3˙%+x'|qZ!\1cM%/nIU%%xLO.\z*P[M<8*k1LWIQX`]z`ħ^ ͪcOre5U{J">W5[?5jqu[C_GT7!6WF/V/D) sZZ'3iwVh_xO\f4n後֖6n  TCf,<Iqs;o$b@kӣxO[6\ OYls'XzqN -m:v ٽShiވVBxvVyn_M fm8kJ8͕ٖAK8o(AX=)MGU`G2(~w{{׏nK:}[5C*'qa &QL X1}`\f.b'},▤}q2p߽ ~qikP 2ˡoVGdEz-᪐AS0,vadA{j@#$mW= jeHJ^KaهK'~ &lY CUoc}7]@}ΩE.]%x_ %'C#~H4Y/݃p18"ʖ?5sU\l6ʤ`zb(-L H|0t"aEvjx47i0Ҷha Ut=h</ʁ#(h#am!ŝ_Ľ-WD|ᇐ?׿f%R/#'Vm\V'VDL|&54"'8|G" |Ak:*$YLg/BvRJR22J@ .s\qJ#,/Ui-O2O}&hVZ#}M9ˢA,dC+,v qwrvdŧ%r|mTӯIƔEˌqA{@xnnR9әd_X%pTEx{5ֈOzH׻TLB[H=E)0wR*7] g~ K nv5QG=w?>WeBA8L<Wƀ80Y)껝>$}S&ފvF}8FŠGIjhI\y?$V6 XEF-4iqXXxwsVOXdZVKP-(#Ek"%eSjg>/:yڊв׏~yfqr>u*ƪuȕ>O.%=]S/ngUWzOΩҝ4qؚx|gO 4)ZTehMo ?# %KՕʈv Wx©eɆmm9JA֎|)޲v}0FF >#ɡ()|+yD5dw"V JZt6͟ax|eatH]~80{Ç5{;֥0X !юɩ}|_,QFGnipLڽJOVΙn#\^!<V=+1#vvwS^h @+Y)!N(E i.ӯ\Gy)M<. KW7Fj܀κUXoOS;gW j]:AãR%1CjB0ͣk~6{b w1 %zj.͊E/lplbN2XW٠Q^w%PTη^9`ǽfWD2k#@/o}wG/+_*\9@Q蔣\M?~f l]j7DIFڸZ &(}.Vl3Lc۬ &4ۨqEmBpUV1/k}9gn\cE4yί *څrP'uJ (&{ ߥtV|J(սIIc~Z˳|GC:B掻 Ho>LeY{iZ\f6}c{/:آ%~#aa㊒rWZSg\ָ^-xQ9O=C 'iήЅƚSJ̴YcX*Z >A|/T"Ccb`4bN\}MԡGD [pENEw/ [ɨ?;[5Om 4fp(Sﭭ~o[u_((~=G@LlFy/e-= )#'ƭLKTIMݼ? c3By$YXL(IŲ- <ߐur:Wi# Ʊ4%0'8\ ]~8 RkOEG[ojQ8b)z۹t⋷Z.N9.*U?m=Xf\06ḹL.fnCiN{G7ЌJĠ5(xW틡@¾# ''4̅L)̜z= JsfTȾqcJ?|n UuUX`F?Hsq<OcVپnKI濲/F`ߞ!$WM~NdJ@>xM>6w+!#]{LdA4MPiqdy|~Qw"slRE7(N+Y!jl[KA?^7S|w< v#J~-QONJ.CMRSp B 2YVjIP<ݹ-4‘)h; m6u:KSGK-[m\d̬"ZsYE=Ȫ_΀UKxed={r*%ɦn 7xQ]ZS-Wi`0;=|Gip aM3P/ztsܓbtz߱5 v(VuK%,!O{w7/.bb"YSﻪEae`||v̞w [m'AM.φq:IsrcUTc-q\<|3$qbKfXgw+u2nvLrReUץl.Cʴ%֮d\-?JvkYHU |0 6̬oaw-rcy: 2>6+ 0my8x,a,4 D`vE Bq2P``.t#xJu&f Z I ϰ9or諒yIdCȭV | nq0~7CBt3̕R"WV,F_͋@1e V&wm} QO^@}ehম:F3pL*B4}b.QǼOX7 V_?8V _E16R)ޓr i$/baWTqA.=H|6r8Y@ OԯLh]Z5"?N )>v[:uU !8# AjR ~ʏXA+x,lr7 A|sGoymrB uVHAa!#~dZݽôi%23!Nݭߢ]FrnS tߎ-+|ƚs` 6{X9aR;CqP^`몐;>w5چߺHK&LdĭG]ȴfo票^} DyWܾDi4߻:e*= d6ꈢܚ\654]o)>+{0>ܨGTʽӁ_HᦓoԽ9Rxo]=rE,ˢ*zal%-Yi❥S ]_ψ[ꃖ)V:-e:x{XߋncF,};98(ǃ1AvM`4uV/^k9|bQq*mN_N.MUsoJf{bQauVCZt 25uY?H6'G3EXF,n 是r yai P3,5yGI0xoJ_!x+ћPbbU_Pzlp^`R 1Kje uHPZE/+9kcu9iq~/O$8kcH6]d*fvxy/|7K-b0hd \h%uGvzDcКoKi-G^!w[stRIzD@0dlۨNOm4Rq~ɯZ7eM{AtGߒ&Ť)޽`E@-5/~I j7mjYӽE@}ŮNh-̴^>穌EFEdCDI4Pԓ$EYU6z4{D ߳t\g{zz!25F0Dl|Sc-N"jQZ$a!0XߝSЋ9%ͳ8Od=Ԥ$u.3ơ1fC|d\Iɯ]?Nq TՎ6D*s6+,)XMJRxQX.WP dvT~ aCZ3:Hs@ޑY?W[,J򬗝WA<ϊH0M K2b68+J}N7%#ԋpd71y^H|Y[gA$;6oxMϴRsPn)p@d*BmXw73%.!svۭa\&< 2c5L=fBA6$ ʅsʎ(y D}vk50X4 h|FUFb-a b M4ޛlrR%ѻtB$f !ȗ}={ H #7%i=b!4i&Iިxㆊ;rh=wT=,9!ɳ4}IREH\a+d[;l& 꺂ҫ?/?'o~]y/i#^]J;ZmK!1l/_G$Y"f6b5RyIj#pTN¨$)3WO#d@>4ye0GC"V>/m7}XRGjrq2_pt#eǷ63 NԆwn*X` 5;n@Kt DA E uHI5vgxnƭ}Kj.t `;kߑ夏iHy0{QkBMag3i0C`;ڵvpsL}3pᇘSS0X\_?=]Zg v$m0)?-[*kphlö]f9J>MW#竽5A_k'h>V’ST?jbno}UX[r9=1`XY^_ش.5ۤi1=Uqzʂ' 4 ܪۄDOJunqdj[O[zg=e4\,jw(jɫ+m/fKOAD JS= m.;=]|ȡҋ_57$/rFh qV1IW"E}抙)# "M$=A=4VW=u;_,i=`Ã`gةb6ϪqCru)## |m%(ZrXn!jSB}t-A_T,Ej&pI&F)G%i'4O_E;[?;Ӕ2,՛I*IyKd^h q"zŪ`:, ĮZ4wmC"(9}4sϒ :ۅ@`ރ~@$MUmI *.s2O[A/ܣ1E&Itz{#i1dFOL ?;/(׷[K:QﮌŹNQ 3!@28"a-U90B:H2uȮ&s|wrg9| 8ypԞolY;IJ _G *qFT y{()b\_m-ov/a7`֋hwDo[&`CwNB1 icդɚ[AxkGk0 Ch.V0UޟF .3J{?Kw4UeJrI!kmXJق}ZNݒ.߯8aEzn}_?J.#[V\ ]7->d'6 b/Kwx_W=iUWgWϸaoP>Hs!J!_袙L'.v9*cge'wq ?L 3,/qhί`Bc%+|M|7Vދf*# el 75JVr2[rR앪ʊBigYj#jbDsHsJp]+{1/g0<%U7ުRd .ʹBE(42W[E(tޥPNebJ?]Zhk|c"ĬPI{ߛ;]3O+\l~U3\UVR0U/,K$ .]19WA{U#VܧWv zK~4XhWGQyd54_ֽ#H&{-g!YS= Size45#זM.S7y 2YEY+~,Bŝomv7ւ3T dB=6 4œTH9g{a-FH`2"HO (^˖S)_vall.K4ǚpJ{` wxc=3i;[eV]B\,OZtoK0:p\̴Z6`|4Tn{<æd{04E$J& v)TPt:+2-KȖT{iDEp9e@EQ԰ ̵$0RR߇\荻 -\{OY$)PhN$%Z|:u:m;ufZdqDdW< IB*qbx\ml4k}&eb͙\:Rr[hqKVN3xn_xʪ28ÔQ,Č&'& j ti`jRiE-^(?W2d\cΰ(]!CEpzsՍ/iko6EkcfgC3e ygy8Ɍ)j*z-tH%tKXK$7լ$~8h=d+WYfs$/}gLts@| %PTڮA ^ˆ\_%!]cnY ' fj*Wv?1zx+}7.p?_BRBSγE蒙?\O~Y0Cůu^jViXV0almyQF }ͪۈYF9)X?f"XzB n\#x_7ԛTKq:pۺX+bMBԏ"=6q ~ѧ@zy] gW[wӰAXM1i~1j"GrIv{įkN+xj}N[1BID4gõ>%s'^Goَ.;{[ # F\mEXzi_wJ* C@%@0'W&*wc Z9xsP|o&[`}W0vdM*̥G098==NcZ+Dl/w +RWv'z>蚲`-͙l-؉#}=7_Bdqм!;#Su%)it O#mԈxFv];U:_j0=?] ?Ip,o;}@MfH-ީ6.@\*_0E:| O}]@vhFBI d Z'Rúe*A1u T,f'G.s)ҧ)լ/+| URÒw%{ >dV.\EIxYwI5>-%2\qT䍹S7+aJ7!LBgh0x;QY%?1f%L/Ֆ5x]}Vv F4'yn&9_:z4$n 'TXnhw t |;):g$ \,X-8-f}0/H?P+z/nČɤZG壉ujyl\O L~0f%AѨy4noSU.%ɝ 1`wm//J,tJ,lͺKNe(?DTm ¤c-. fD?wR=[E4Qa|W v!sw=g`Lo3 SXQALI zA$lO?!TO $y ŵԴs8; @5vqp eTO-:Hk|=+;lS)9_# Gq,qT}&D \ fIaܐȴoUlB 'wU[a嶣aoDApf7ȺYF5Nъ@K4M1?.TPԝ+D(͈~ȈC-]K؃xrA(^/p5gPשDiK.C"[b 7 `ԢurJ0!@fU]ҟF!Qփ|F1PHeg' p? lJn+\ =޹q( bAĦrʏ'1==΅d&iWbQ#mVq8 L }(K 7-bMG#}1 4ݦP@v>pU#ً5qMn]DV7#c=UsbuYUfG<s f{k"cnڠ7a`<$ 0 ز)KlN U!x/l+`(>)=2pjJRRj1AKNh$ZJYK龶*4d)+Cxtݿ4!U=ν61;nmxKf7>,"6H&4iIǠsʫSj!^jζ,/ {.ad#yhJ{WO{BIDg]-{!uEc`aA 퀮1ۈ#"^Kwv_?I/8l{d[F!M@cbXE4.]c@QD<J׭%p,G+N pvi0*0I'4 Z:Mk*=7;Jؕhq Tf s]Y, ; Pak@ tH+fpuoh@woB)HCL(WΜH jz5vNL/￙nN{PmuOfa=W/&D+#~&/Fp8_aၕdpP3 XrX>7̂!=瑡 2m<ُ|RXmG-<  3 `ܒ/, 5y7kP$k kҠe|]G22U2,,)©en@mjt `& >rlk.eB YZ,e>?hiMi?v ]7w'ykxԕ Ϝdk^(jM/mqlhE n1z"/:ȅ D9KSC~퉙2"2=٘2ʼ2O$VQDVk`z$bHSo_VQʙQ CXOGg! *RfvI ?k*52 t6\aON'ѫZ< !w"ߜZ?r6I؀&aneǃ< -LeD䣨D2 Ni4!C1:Sx#F]/WxRU.TfΟ,!GG_9o يQ\X&Y^/]4'&"Zc Y+k`zs~ D|ĔuG9%!d)L^=Pr L-?._[%2nx r/J`xAWNŖwB{*WZ W-|Q"R+10{yッKX "gd*lj{b6R9=bHuxe_K۔3bSwCqS# N(FvRdt4)@N:bS>_P v^ۻ5K㑓pllZ0cr ])Rd湐`]htޓ;o_ap۾jfDG e55DI:*"4Q!A$ +o*~K$!Ě4Z1ӉZnip7]ҺڼwXŶJn2JLAd4nN6?H};s g<9߁ќ+6?&/W\B#.!(^@M[r'ݼ)5#}Df!5&VNXS{7˩? q4Y -lSG_XU4x4# KZwHB%] 2S 9D߯H(+q^7iR"ua'G8{-h]+>)Q^E_8Oو%ޮzy~Uߐp<~IƢyPks|sp~g?S!ww[.e??O[v,11ɢ첍o=U9>lHh籃DXi9`b!j$}vwj!I!\ٶt۟ajX؍k}.F YyCvXY egqg*dҸ .eyb"'c8-)GY_8OUj).@ZSeVKc/_;ql]ǵrAƱ=^ __ 4L5r{j/q:hl`keMpd1K6!RU Cfc(oC Hit#(_\1 ojؕgdpTX~A^mr8 B|ظC`Yj"~%njD6z{B9cEo4Ƀ}LE}N`c Ǫߪ 2 Z@2rLv&;1p h>?T]GD59ip1ҭ)>h"A^,n7g#88}?BA9oòs 2~s}!G4X%hNJ~:B׎Q:J ݑe'{ajHIձ+|@`eT1KLPZOa _U5"Qjs4d Wd|bE&#ߘj[,msD@önI8tze}1,|aB)gwڂJ}"iO/]&}m:Acugj44-*nǐ(V\ ,*8zhCa)6ʼv]~OmDᣩȩ @I3ɐ(2;;0++zu-Pp iC){ "5_cFQro#I5t>Y!ܮ)#܎H̓'a=گ'eݏW\Ze4ݱ T339j& l*tS-"Uaݝkpf^tkRF1geA!:pfV]7*,7L4xvaiBy4hu-ۣͫPu lmKrDgaL-LޝYIn)׮45TڑUQ5Nw54:u8"-_BՓefeLTltjڵb=| X#deԔJnuS-&LL3b5ИMU *z*4 ! _E1 c6ToԦg `R`,f)5Vu$(>!}Uu9[P2VFj3kzμDnR;U|ux~f1ViTîjMn"$- $17.;nO:SʧK E\Dz2قKw`oU,ng˼a&BD;K &\Vo/޽my&.(;iF.) >OpdfjOr+ƗY.ɣ:)*c=V,>v;eo}'{CIDSsߓ. f"][QkM=74MI^0sM_ͯ{ ,BI710;AftmrDs8Y:ʗq-8Zrn$',t -8yfU.!jZE{zm1d u6nP}-d@1i@h{~"M%x#G,Q) t?Du\iupx9qoG3fܬNT9%O#Ke9e:s4@N*8lg՛<~HJNċrI]pO5áw/_m/Yxwb u9#ќгcN"\ylXmY>}|EoM0rHu@/t(#AptRTzh2m`ؓzfy+aN 8U},VQ8Ÿnn x!uo^:?i<8OyqTyy+_C} xv)-u1x-Xn‘3Jp{%A,{8jƫ%6h''~H/O)@/C}05_rqAiv| '$: U~BrTmT t}RbKx3bRTYE qC`́@;uӶRUI2tAU7/)샒p! ؞Q$ nrN 6hTv)T j׊ BTCghew_#g$hS9\1x5%#_'+'4vlNx/"$^2~/OmܱR 0wҒ#DpǼ'3q=*EԬhho4YfdpsECYPO12G^/e=[4׸겷SIk]nw2׭%=gUV5܋e vۇ&I)`@vGwTPN{Տhn>Cs3x/q~`G!. J$\X71*Ԧ'! 7nTxJ.^_}]zh%6FTv2ތ3fA^";f1QuX,NVRC52 zqYHpȗlR@ l5'3BθۃtԭX]sfUTY#+s t{X Y#^@( 1[ 3 o^dqҥݻ U P 8tѰ@vR <''DɕE2Cs._s_"(Ejgb >3/)Pd SaT˱eJ_ZI('vgr? ϱm{UevN-,wT1\H* 0fl5񊊉dYw A< =;;{. Ǜ,Ati$ oK7  JqH!gf3"usDB&W9T:w?M+beϤVrȮ+rJ#j6^7j;n¾xWfi`qU; )cWZ=Nm8VMQ3SrH+4UH]o$'4]fKo7Oo@uwat&>C-yqH†hB h7-`ANSj6D&>69 ҖQV7s2n-ə:X9p`ETi8QPId,Xlx[6ڻLjs_k6كog k=Yn -f7vz-$m>H*d3`E^\rMɆ&!epۤO Z3-s.H|MLL\̪-Ggc}ՙ}le Ff0;T1,M `W "S9AGQ]&m$ 0rf;%3KW 53PjLBɵឩ{A,`/%W""" k(OIչ, %7\ېֵ1,vb_N{|~4D(Vߢ%;ʡ"Hz9%"HFZQڹHtHHm˹t &De%<ؤR3:ڶEȌ1x=kkD }I]I0`n}OK~k T,99[:+CRcubd~5{9ޅ Zf, Y C&Z= n0lŏ7%g.(TUô B A ЉzeÄmrST877m|FRF C􊯌_7?u(\եwe24򉵟% SiJ( Y1vziQIh3so#IDWxj!>DH /CH%-!(ː]NU埰[3ZHu:̮f:LxzS)WtŅdH#=7,,V!CV/Uܝ)1L,omZآݢzPaZMf*-z>COT&= aNR>15ݟh.8PXdxn."6*cyef;OPŽV5`p9.1kGkĒ 5w痫ܖ;ʋlnLS.EEgrin{GP?ou^AKs"jV![HYLJ0 0mx<7ת6yS+o;Xh}7dܮ\eϮC0o֠]L=1͈q -}#Qco{ dynG{ŋ-Kr =S F.WzUz.Z2}ɡQKaH,{tA׉hv6Ăc{y!泰B9Ϲq;aa>fn! E@nPh9MJ Gơ'l퐠v;TG[7ܠ̓k3;>wl.W. YK9{UG})ޕE+`@[Ty?sS mͧ\M5>g]F2 YET$7pV֝ xłQ1PCmB.a#M GmU8SJ |aB׬X-^MQ^ü1_ HSw(_R(n_1IDv nTeD P9KpB߯\K& "[Egö^her(4=wKM{~ч =[{*|sn-0\e7igez*D=~i,y 'D"\ZDiI%ϭ"y"ܗ2PbF|w͕4JIXhUBqU=֌m,'=>Ѻ0 EU*]kપL̹̑ DF^ R#oĖ$h+N٠T_NY VPY>M_QR'k!"3-ω4Otq4Ћt9?8jkYA"^W6#a:Hъ1n۰D[5Fm2uTz,؏3?Yy6w:5mr5elf-{nSn9Z!H:Ez`n40ۼ+a+v6q!Xd/&[%BY3/gљHb_<M+~(O _b$h]q/W oRgx.woeE^b V^RR4i*f*XfmդaUEnw>Jk0dvNݑL3Bck8zl:_; ~lh*) ˨NފS$Z'qU;PP l;; $5C c7^a;8& ג"hP̏P"9knz nt]€HJX)g3cGѧ&د^/Şp 4lOErNm/\Ycߗ0o >:p¾5}x#֫fۯHKue=i#,5+ʣhI{͞2Rd; +34uQJȲIθۗ:ذŠ7y4g;Ufºa |B)oNdM\_zȷsԺN_`5huOQ}|5i0op\ID\ݢoЧT? #.";xXkOt'k#ᰎu"]TbqUwkǏ ̢GZoxn0*>'"tbg7,n*ޙ,W 2 f'+$Fi;>S,~AQP)Ob\;1srd@9v_6HE'_aSr2WL,1#,ATy#ǑG{m x"~yЦwt (}QQ.݌j,0x"۸wt'2SWJ!@}@k:rGE/Va[XJi䩼MIQrǍQ1+eraVq1 b'UR&3Xkrه6nDW-Ha+TRC?jRq=6^(oi8ZOEC_c2sv[>NAb9v}.[D˩2Sdš4[Y8+CwEsPyd\b|4Ϣ_$`4 K.JCGlp o5 `LB3[c) &:iǏ"YtG` *VS61µuEs.5:u_GRxK:LwyL;'9*}99e^QPI or$A4qt#$i`͞[s^KnkZEApGQ ؤa}rT\O78kL{a8M#AlšEЗ?2qK!rQY[% h&Q+xrzq}.+Z)kZP3݁4f^.wVM NlH_t,kmPءc{؟+ c M? `r9B]WYT.%}pi)qa"x6U,r EtDL oéuVv]y8X\Ogϧe5ڎo7WmBfYWf[~,AܢM|] Fuyr~[JZ5l1Bvqs!BՂZ&81x9F(4+Oa*4$"4JݟNrX!,.j"{:P3>-QJZ#Y3M`[ʹ UpB T׫ c+~fY"#LlIo)#QFyZ#&PUߗ)T@$\QvMc+ Q@odl%k5>jUԃQ.=hUa"t#&>\߃8Fd8XK×a]WP>In!s%(` ;_tb P+3.B/NhN~cCD^w6܈ @sw]NquyEcoQV&EGXćBE\nl8VV%킠J"hV~^qC5K]6&%k, Ի<&‰xi:"Gb!VXlA2DaDu5Ul)t|UJ? _&m1b \eU7LkR`XWXv{]TWßDn%3LlO2?}EhxMyu#cYY/o ˇRO݅HW94ddŸP>ϲẔ\VIV0S|庴ϲ| v-]z[T,NYI`V+Mr_>vj/d6+*a< ʻB(zX?p*;{ fJg]]a1e ,/w| /W<&KP@-yj+H˨8A^azD4s#T۽V#NH-x5[<9!6%̿Q7_Ir˙s8K #4Eݫck !B6t% R{tf{H pf?VF²tB Y/)<[h?PiP5*cY,N`خKPg CyjN$mm3 5+NN,_v2den_^N,_&Ov`5ijUs:h(\H[{Tl 4aAØB3ZlY3q5Z$D -J+7>Q(ǣ:1!rT 5Wˆi̕D`ښ0+nJo_7JLxu\&hs y@(J{"|V8Up%,~ J!k@:˶ouН -L,'8AGnŭC v La oM^{T M+qʷR.K 0h 0^avw\xśW nNQqF8&76A:G;[+y¡k)o/ RQ'):_`kXii2QшzcOsO.9y}_$;PŽ7aXqAŸrtF4G5w 9( f E^.aV}n?v<۟.ʌsB<v CU+"KCmKEY *[ tz,bb&;w=JZ=VZPL]˒ QϨR&PׯmZ8E0o{ˉMZ_m'4r^a5E ŔSKB` -LܥMP_?=ʒM5m/a1]Hܚ r70bZԢ ?4ߟ1GWl 7.%w|\$b*,Y :H3A;# >J>Y%k qɁ+/m=^{oK{k p}cӷY^nAeu ^Da= q#/#'ޒkz46wy}qXHi ^nZwX/F0ȑ; Y{ LDh7fv~ߠ{0K:@XP57͏તf%UPχdri_1wwV,?BG7˃2DNNϿʟq,Yݾ9Kr; 4KYhv ntMn&Ub$E}F.Pk2m))~LՈO@H c(s3'1PErA_LކIelYa?KY&߿sy+JhU?6ݰ)7YQ-& VA72|P%R ƕ{>lEOIX5愞pnl@|x}?+A't eR=EUܳ`Kj#u-{7E]#9 C>Ol)l5ny33Zs:v̛Cdč⼳pA+J 8L4x-\6pc*0S.k ]qYV庒P2ġ7IZf?;ĬxUi m#* : gr{#_:3:.Dpv,DjG͋C Ϳ]|UP2Wsj!zYo#M ԸAU&q?I,f#zD<+~rnp"DuÝk6%eslWϝ'Fת[rqᬿݮS'cwΙU_52Q`qڋ!k[au\]??jcv|ZgM\HX6xܒWTs4䐭ٸpd۩`az *dft/ QӵU#H orQoxb-Qw ~JՊ-M0"K=a%\Sٌ`UJ\2>|0P6+OzAR)X!|eM ]ݭuPš#X+]- Sk+Y81V`Xgg~vDO}!Y/Z'XS<x6R5!'!46𲀑gY4l̕{F(R't@7htlvOA{o3nƔXbߋCr{CdGh^Z^̯-vtCm o'бOy .Q7D0h6=qb??qDgMjXɺ&&`V䇚]PtqoHq+ sxVT< &M-_̓ [^6d#>s;;xj'wĢ[/6@7IhK}N8ZqJȎ{ԏ(ewŲrkS0kg+meldmnyQ*n)%_fL-wruT>4LH2U_=*"==!>?4 /A Fi>p:n=GV6'n7 yi1*Iڠ(6䀣׮)@${R uA4[i=~JMEhgf狭il =uކ$4E)0`)ѽ}6F #,u]D+ ˓140fT](n,/&?/On+ӵT@H4H!,0@z͍D|[. FϘQuᤠk7b}!,j5_D6@]\ARB|Ŋ\]2Nw2~$`V*ӄS9_EsNF75sk)]SE?29kY]c!(>xkpmRKyV=9KOxB+hC%QB7CL FWޥ<)y\,>GsW)OIsqeϱ@{owɵb2N|ƒ3i.꿸/^try(^LuBBŪxsWSM? S|}]W^G cj67:XJ "ȸ~XccgKE< 0E?5tSn3ZK)?pۜҫH|=8e~4N7z ywCg9ZΚH!ag #g,տ̞Di%$.:iOK`~>AXsHjIb(֭hBw7aAV=fBj+%J:,e{HMV=Wiy:1 Rח 3[}/vװ' 21ug3T¯Gi]0LϧsWD |01?K /d$uOewα۲cgIG<ꟂDc _95(_ -.;c+*m:NDW^p|ƱP<՛Hl9J~j֖q* 4ԤBYXGf(@d~rъKMٌ;dDuك ,qeºȐ"`4˘Em1XL+j:|B]!Ov oGN"~v%kSdoBF< f~|Yq b۷2يqxm7\u)<RE(šBR~UL܆|59xBc&qmtuX~00"U8< (ZcpNd kלX>0j'<0ă-! q<ZB'IbiR٨zN@ҥDJ3$ qOP{< 0[0T99#5])C_~fkz!}Ak}X'vUiIpXbߖ8׶Cܷ4\~ٌgLƣnAMcJp6u~ĜY|yKM S@&&/8\tb~̂F*'%z ҚaFctHvf42Q͍u>#I-6Ia+ciiV4aXh~t?ͦ}[G/Zs5k_uJ[Za"Fdv+<,DcDZ2Ze#Юn^[= "(;uOFU{!Cug2dS"?xaߒvu-V@X|Vcq>*2ۡrb/7|nݪHElvaL&mYJ@잃bW\D\29S#uc6'7՚q|H3+yZ}^krdwn[IU]Ez{87ns ` /O%*Uo$VFG>( e]a`ez-𫠺F<;x<]2C˞'oOpDFMqtCDcl y ,|Nʹplfiƒ}^ kf:|YuePjg.@a|gvkH(ROKyӽ"`MysH+k=7Ԟ:Ht́療<LoNaQNQ.g0߱JuT݃`TcmM!^`벲ҫ䄼Ƈ K9MOIg v֭EvwR_? pa{R;(FiY[.Ђ笴1Pjx۔]fj,EͶ- PXdIuO7Ɔ|%xoFJ}j=Ґc_zI. gzqbgM(iWݼ)(`Uj{y U>M{/VOaDxL7aJ6*h0&KdJn`&4l,$?@tM}d 5&n(jϼ(\fR;U~Ic/1IB"Gwb51Skj @?A˨!PҀOx4|5#rC+~фIetr)󪨉!πab'v,Mjv;0N0cBc6n b-IJFOq?ZB<OIjE1%pkڨk*/yIߪ$[ʠD~z{u39e׻ߗ}|1צaX^T +5@F %)ʃ%V*K)X4@+:Zy5L"%b c9tȑA. Y[)87zW{Ml"oOFi<{z33"yTzIaREILCZ>!2ـE7r9߃0;wس]Njgij5f$䧜gڕJ'gig%I~Z@5shdƪQ ԌI:39ݗh(2N`4/P٥cO'q .b(jCɎbLqq0b>膙ey`o^GWs_O47iXx\:'}QuHXb_5:yD'h3_xߟ/̈LE:6n WfOϞbNՆ/? dZ6e SVǹ4s"`lU>ՆG}|ldBEWH\WV`϶hP -V$T]*b]GpC|I&V% Jq'ب9ȤPKȅv@"Z`t$`ʄ +r*81ӻ- <Wg`C ]w-UN8@XbfDYswì]lӽH$Hx &y6Hazĺ#g362 IŌL8Hju2* $38mjtL(_l U!u%Quu(%e͖?gl!D&h=醏Ȩ4`)0G„O8VeN\ HDnk@1Wxf/~sb sTb~6X b 6H l^&ZRW4} -ta`iizi_k+ji۸E~2y\>\})ltֽ[ ޻H HFЀ5`sa}E={͸ g]Uͬ|!N=[k.n&[AMx𔍹mOz]j&[RLnZ YV&I&,Y1jC𧂧k`{4S33J 9;0*Ԟ45-R2`Fv;ꂒ_Gb[HڪIz%5_L{`u& Q?GQ_,/ڏ>Tr՗vMZ\DDאNg6S7~ Q9^BHT 43זӄ+x=e}s)>:{ K :.q1/*3MR6(Or]LHgB3j0c[J7¬,cD>G`FXvgc:xiQ|4Т̽*l-}F6V $7[E"pd (ɖңgj>qzN鱠˖<v-PF!,[y54c AZ,#vP^Մv8u\דe?_`ũ5`Y.:[@ \QwiWWajsg#B>G!ӺX|o#zym BF«5 !G{ A@^aAG-#f+t}cʀR[϶߸]H!bq!K=eCnYQٟY{94 GQq,!XĿJI?/oq|Rcyz64U4o5N\=ֿя0Nθ%jlOЪ\R[Uv;=Yenl.'9$y_E;^i~uJϯW \Xilz^vGIXW'Y@ 48>lzUn:̗__5PЏ+oP:@5\INd4dmf)0:aɏ@ 9`(rʡd,3<kQN=1Y^>?i>v>!uso7oZz<;Q1wVPd4M`edb RLeOАq90^g򓄭}bC3WCh} '}ӆr䝗ϝa!6J$l7YU#ʜadtۊK@/z QM`ƍ5@=T){fóƱwzBRS(Ո!Qߌ]K09l'pVhYv5M ¼&l⇳Wm&&d3h+tb3 zP t`Ғ adVrKHuG;}ሓ͏Uєʍ5V:uL&@Wx>Ɏ~kzk0N)8S9u&̋U )UO(|H =yXBj'H؛R?nHyVx{]Nm sЭ%}=PCM\B`( _2w+hd#f8G. ]ƺcg3m,_pZm*eyҩ3X YXt&z(-sT b2!0+b+11qL~R6֡Jlx=1/;x0#.VdT2ZIOH;xInQ^U68KN }5B|@@?2+1yZ-<6xJw{(2+sST1ǔ'4s,5ZJ)z=v6=/m"|ZmǘpvŦ1ʢRhVaZMna 4c7O+o8C+¬OVQ͹6_صh:!4v2zh_>ymԨ2,EٽLDPĀDt);`bKn"jC<S# @E @pyc4O U-䍌'_9㣲j쓴Iz &7T 2hjX{}ִXΚ sgWe f@W`#El >4dNԛQdV ؝w?I 0 H^XȀ+H7a[R!8Ř lFc /l>qKϋhXQ_1 7P0 [ ^^;=0'ss%@x. ᣅ͵Fi5լ??cLO`vU?&L;2T0 8~^yi]_j}XݐNUyN*NiB EshEwYj9 HO*XqXxH3ίX0S-_2:A)( rAdnt/ab C=7pWo.Ub,6& 499j4zхw l E.Fcn`:tb];m0S7t套8תKM.zNDm:v\xDYZ)2J'wi= ܅V u2~XTE7S RJgc ,^ kĢ[o??uKV P !rK{U= Nd(0WjxR%.9ώe hGa/ZpWk-tFoKI$&gNvo}aO}y6*G"8HP(6)qm8bv-tyK t )-Z 3iyk>2NpyF{W.#K%lL_{4&S(R %Ydd4b0+޲ԶYx9&;4*kx0<\E ~p햙$` B;zogqth7=81brJk PD>gW~lE\#%|(g0O9P폜h,Mg*@'h+P[^4j |y!foN<?Z)'lKk܀ F/@aSf],&?Ľ>-g.7dxjw8mˬ#8G,ό X4 !-1?G&5 NžXzO"Fm#-pɮ'tVpݮ%F2Mnx[eg9F \;^Ỏ.m*2*ħέjx-gAʖbz}@B|L^++rT Ζ֍G)]2bUhȴ47jDiWv%0na{LV]ux J6+(^m ,E̖ ŲT-?U"pz>`i)a0cHbuS 3R { ` 8 ZoI.zu³EʝB9V֥1nHa:6[2)nN-~eR+0 ^saUow??'=*9 n|k˙d"DOr''tR{|VI騹<1St<`V2o-hgЅC1Ơ=8ChL%V_hb78j)u#9SݗG zU4VᶮI.3[ `Y55 vbռ {u ߤgPNR<9P^.Rl|W[u09af/DLI{Aeu4[s0߃/>1K LGF>n7 Y<:N$# (Zܝ!&}DK;\]Bf4|%aOai):tٯW m`עy\.m4qʁtT\R$#_TBуjˬ-κ#QOcRD>qE(3n*!\z]  FY(XX_#V)rw3N;'pC6=P[st1bӫ4T@d w;v1 ^s7,jnD#bQō!K)+Y@vnHNk%.5wl\ڹ.Ԏ$/i]; v|+*#|y2_~=0a>sE}N/aU#M2'JgTySYαƬ8io̽9D)Ul(26,5χȘekR+/YjUEdY}'j@ԉ~84=]7؜ xZDWr,Ȍ[\EEp\SErT}5:ҜY0>\^L% fBuaԝH&d46(f=ƚ$ӡ+=<*$G탷/tV0|CO; ` ׏ '2+ooǣrs*-b4TJ߷I.e}h ne򋖺=e/(TTQy>N֪_= yUN_8۽JoXc1 7HE''Kub*:߁C FIq7e#ȉ1Qk 01'^^]0դ#7ܟ{D*3߾wX-heP_G4!Ҿg,ɠ`B jP|1z=ģUU-L{l |Yp&{P΁hX9oEĝQS Rn~9)趡SvV\7*G,eQO4)>n4)SAK ,;k޾ث19 pST"tr{ |qdn9=ХpIuD2qPD-d;ΏٕP [%R!a[ˊ8ʌIudBke]pC_~wJA6A:Y;?U70G ήs:./~0\_}IJU$nX}ŇG/)*ǵvRV,װ ܔu 9@> <[Aȅ(ϭpC;~'UDf#}?ڲlECג$Rz30.ޓ4ݸMcNو73;:+1PGȕ]3Ia;?~S& S tM6#Bsf2?Ee <4 ̱&r}ݚS,(2%1(30#JyMQD XҌTŮE ^B,mU*1j)kID?R1vC qTXJ{p;jwӞ61qo+j#?֦#xy!4%?^W?,S=,:ʙQx)/;h[@j@*)DiAOXDj?U`P֊xP06J <xf(<tgtz4A³U*u2zhLHMK.}%^| 3<nȼN7L FQ%x* lyQwԷoK 'e\^72m>CZ@[NpQ>d"|zxFͼ>v)HK] |"6}+x~sD}qp5?")3-)-eR73Bդٽ1c~YXmkaJbGQ1}4CW ,܌*^&p  M~Ld!}8τ8M@18lK)^}k$dntCܠ;W(F FKJ?0 ۜ|T^0GgۻmUY$їU6"B3ڷNkSECT ۨ۹l"b~kSjh\\b@vfȂq#L 鶵yw3{QīEb"e`0u3/86$+z(aR,%tB? -^ڽMdP'Bbwx\hVDhB%۶v9S53)]2C/W8 srT)0@\˯)_2`گWY}(dq \垤;`i]vkYzy}@ ӮOz懞DePg6 aݛɕmC|q$|e䛦 $A쿕`5Ǧ58t.Ӊ^mhi \#8.;bݱ~a*BZ R]dj#Y.EP gC,Rn'N٥ b`W!&2=\)3Fb2čyphÈrgQɈSy|0A}\,PJP. `;x>%9Z9!k6j~ͳe6M" 6 f 55o9 \ s)]JwPs_9YD̼z+Gw[<Ž%#/S7Jhm &0 J `\h dEEj Zc/5(V'  MŤls>啅/y(wyEP`) n}SkxCiJꌨ= JuxG̻/[V~)Oe鍳$uoöVv_L2!J-٘xkVҀI3z QO>y Tr:Nǂ(̎śS21j"Z\S7i[#3hL% F^pDq{=;wCrec srRUnaUע#7om1?J!+`ߺIDX_f]lȣ{H+RV¹3w Ι$Xw@"94/u XWbPq2v6^zXX) mG]q{I:P*} DR.^BsYijP!}ތx`k*!ߺmg8AOH|)Cd(Q="O]ĕ\,&Xe~RT=[0FHW}LKg+Fڛc-R{.gD;f+#X/On mY%I6-t|NhhIހӯ^25oF'Zu;DųL/;xًRucUBx,"ke%^:x `N]Fdi%k2 nfB2l:&(c'ITBXG}a?OkCH\,B4(3n\a$ݓeSUZ=I╲!|.;퉖?&օJsǡ3%fh@|Х:F/:[νv$R "t؏:F?9&|j!ĺ|<`{j>`j%su'D:#^TV2;Q_Ĉ/R8Y-2a ]d)NÅ G%Qpoj@je>Nojv6E7PLEdPɲF㍱I0a`TU*#ؖh IJאO}iɄo-Q$h #V$@9ߵE \>/h$<;W![ccZy]JK=JPNq߱Nejԝ$N<8̞F -vwl(ws۲?qC~1ݏg(0a7T~{#gG30&!J ^R`E=žۄPc_ϭM7wRS#uduWGk  "]AR}֜@-+ IBID%`&S"O0*]Lުl`F/Nؔw~xs `τCZT`_faep_[;x$H=~4^R.ȓJy2ƶg_<ԱAMZ>A .+[ pmƗG خiV4!4SlUhJ_`!{GXNfvUр/" , ޑ ;mNX7ǽsS{ow5 ~1GF?>uԝϽ:?gu᳍3 pjLS)?O&7 |h `z1XQ^ TST݊6CjUdz'y#RG鼝i`8A2Mć R*Z7uGy!3NW4D,:;}_/#J^z]XlS(LQ2uy7F?vFVa拄mKyCo0OŰ& F(](Jlbe `-Β>V|mr Z_ET*(";a6 efP4͞\5 eHix*p}?[GpO]#cUې@# VTA:UH_aw@B~,+~fh*^>rVcHlҹE%5Y9;ryVOmb.WFH[g5C+>ޏ|\~Ce/Y#Jui~(ȕ/zꆜ7<`$/t]l%Gu"p*T;|-&)&|~nS܋q^W"N5^!HTDD7FrqkxQ٣BoE!džuٝp6*83J$$zFdUanܣCIM z izB} YK#H@DKTT45#pUDL$A7<|Sb>r\{5,ZP0jkx۔rC(dHڕ.yU QWe5NBCOg!A%z6䊬5@224lY. P>9)4y,lWEOօӞnl4povbZHW7K9pxCәufmNcK{2VN!y_h<'Y-+MGxeTԭsr`P#Lݾ0%3]SzJS`5mEw@]SHHo|C̥>{9#Y) #+Va}1k0C@W^=~i)nb`y%zpj3U8qjⅮbPoMzJ[6U `,샻g_(*wձ/Geg\yB'g7r FȀ&s-f|̸}n|I.5֗A6&,d!",D7/Vn(^T<9mt=\EyQsͭU[#d<8w![M8j6jb)Ә_z~ޱQbBwJ{eɜdg= ]5.;=AKSTذѡ"7êsIUK$8ZlU>wo+ZF=͒PS!*wdY?{p#kiI6BӞP^¢ş ?*4쀹b;m`,pvP8AozYOr uąsR%Ro C֔a@HzK NzcQؗh8]LIܺkM=M}0f٫`.~}=pI%O5b~|* T{BGC/Ca90N~@̻; [.=1T2iեg ΟY!Iphu.&bk\ 4jN-qM$ /3 s")]:eg+x)lb>ܗEM5 U =*GnG -8 B ꠗUFj%ˆ&MK 7mAQDp^DB z8AKS qEz5DvDC@ѬV-,;~EkϪ` of;,|mmrʛ?*+\9>S6/Zj/<ݭaDʏa4xI"~rꅔJ 2>/9D74#X":W_q;\ :E龼~sd_ڼ,^ Ʉ]/pu# X 9}#d4GgckAxYg?v\.[eQR%.fEBy?[Y b:qxB̔Cgrќ1HpgPA"Y>]f+R@`n.5̝͊q~%X3&[܃K/~L sb:.En"j3U^`YN]َgD3_Ej"ƚ4m*xIcvo:QUlx|=Xg1`Q+5r(n[%/5º6.!oЙbz`?]2/%pG)xごNd' |MxU-+u!ߎ]EBI}f٘OjqAZ@Vۘ߃ zύpn̍+-hK&(:m]2qc*p=y"F {O4W"=굷s AsRw}q$s͟]i<>X>㦆Pm zpR x武~u$5t4HFVBgԕ$W83%E[Vu?剋61g5mK+E $>|$cGU 29|>ɓ+ iʂ4FqϘcdŰ& S2iG0a?5dq DptÇ:xϾKQو\ViKE9F%,uֻ [bإi>7MڂYOqS l\grTĀYYfspwof){̯՘?yQC~׏a]']h*s|^ gCK,:p,Yԫn+mN8VYM6 浐2%cv%6zE}\HcPe':p )*@ 5f<'ӴMA!ξRn]^ D8)҂^gxh;\"cC[ݔ[!-DuWYTN[=<;*YwGYmTH<_9ctNu3zt;_{!ʰ 5VTK4V>s].^ruUNzx~3S:T|*TMGx c֗ErxG0q<Ї) G-@MeCc3 ȿ%eS“5|(lS헙{)vF- с*a{EȚMdi2)kTR@Qo`nKm‚@ckX܋G~rb QއoP羘^ϥ`\qFc<;>-Q7&,zu/WݧVEN;S|RZb;;F2L&F*K_aFŒřťQC נ!|Os7, Qk e/巷 &+(э3Ru8>D} I=>d.^ۨmnyu;ȁ ;;Y< <c-ŭ>;ZL$n&YcWLPa0D~ W1cH UA#",Ha\_3K/R?"Q8x4Bv}09‰Z^eAk98=PMpI>qaz44VBE_tnGsVElya2Ab3'FXhMLj!blYIK_y~ RDR{e哿5TNQg4s͔!8Xʼ |\*wm0'v_9^sdGM<"jcf8LM2cQgV؇Ll.1>F1]Fr,ؾkEmtr(beUhf*wa6?c&c D>Wrm6Oͮ8l,!>VSH9ʳ{H;lŮs3mQdY:Oc  iÜ( AwK)g E&әKrk^k _3-KpY ְʔvԫnL`xWr hmJJ7`|U(YT v/J~Evoԏ{)7\78/+7K p d>˲߯T͎cukmdNy z^9Pq4W)^e&nuI]rgt6cV$gdg|znt^Tx%6 L9, h#\ehZ݅ubt1_4YUyi;Zi ˺)XlDK1  9I2&*A! KCGS= /L%fj:5\nz'֜ V;@~3ӖγʭTjuF/ bEJ-~qkBPN?j ߫ec 7ORHaxuIt!Y]_Z|zr:251߽2HpCeè@QgX{Rz5b+M+? H> /7pe0zFuXb/,e_ou'K>8\?;kZ I˃eͺJI/)A$3a1wp[vs^Ug&ʵN1҆SͫM6"f>' VpFT)vI6'-#MX~.Fu_-g0Z%]ǯf1 ŧzW׺Ub!sPJCǔdsWm)QEؙ9$61%e͸޴{:|U  8j-Seb'-5j/xKJ7\eT!L;ʗIpEƘ20`[1 ˃,t2\ݤ9ROtLJYyZ7'6)OZd(W ̎G5(;}Ԙf. >b2*C(J"aޕf|2O=Ql(-FOj<Ǽ|ݐQ*?'uqɫW$05vHIl;U13{)7EX*gDmYˋ ݀a0*)`@-.c GG죇%wf┹7[`E=HDxv: Ç$#q]^|YZ0*EV,ӓ!li7J`,Uq RΘHdl6udl+ǭAW(kJ 7aY=:&=:*RAY,I:'agLٜ{QȺdFrNi-F x|!j1Qq@YeSڅ8@65WfqNE癯oaUZߺ ccokpw9!fr3\p!;],EEwo ͗ _~Tgz^ i ʡ{p<|+`?v,פ -5z yqj,BwFQϲ)OnLu.ȭ毼wO "vM<$c3u+v/.H(FFljNG`I /Y_@K 8b ȔՉqm:$ + (Q4WHFO}0DTir+AJ\A$̪-EٛFoMAF>Rm_:0VR dT{|׵Ru~tTFe7*$T#.DwA㋎]Q755TrV9a+CzV"IH-x5;2tYe mB?j*y{81򯕜y@`@m0kp'%ρbR{yFo%|OIX/D[M+J|Yn۴ b"n?zxlF^(Hz)=I  >v4Fb%v%3#<@PGDzTVhsЛŸYֆHILrb 2{g *yJ9 _@oꆛ/'U}5(SV+)xܞb~cDz4#۸ iW'TզY>B"(8 ZI%dUhЍ`d!kq5{>F{mߺٜy;Mb,nH796uށdAiKk0-ΞbuL>AmVEWV#ҧjml[|jf+?hSD!}Dy1:QƉF%.~'^kudzV/ nHj4'1 gCM\T&G: 91A]8%IL¦wR.޺a\Ο̪~Xޕ`rU3a `"==OeuXߠr"\HZC_2{eHţN%Wˡ-&[ǔ:^^ UlpOhi!  h@oitsCW=%& !-϶[#juJ$Ac|8 ы vs [V:ƨGK3_ 2g͝`h([\h˶l5fB9sn 1)%vuO죬ix98- ,f`w~6%-h(<; ;{2A_u6#Ew]5asVF?E@ O+켕h{4X:T; Ɋz*)H.ifd"k.svbx3K8M; D Z1H71i]d"s@QV(:VIة2|ϣrޠvT+sX6"Ө|-VӶ%@0Dx r!Dn\.:<7lܯK\sڕepw#l~,i9tW@siS_feVr{;2TEqӷ# ts9c3' zoA kyR{w1Uf(UX,0F%}9W t"&mcQ| `t.h_(fMK[BK5_CCxfok!VK4<>wDFxM>'[m-?=#3h4TR-; ƙ-kŪR4sjjnXO6a3tSG?f\Ob~'iL}1{eb $'!Ghc`ӓr@^' JтZL!^&$ iD{Za!uep;@ߒY tϟMj} ~ܘyxG:6;)"ƍ{Gĝql4rޱ6tPBO%EAJ.s[$_|R >+P%]k8A,[0av<00qor3gX]Ai&]@;WvD>ڟkl8FnzqcHwhfkBbdkR-hMԕoןUՓzr f{.p0u΋r7ߌ$鯦0V2=2\l[so4g|2]Ag :Yb'@i T pQ3eWλA VI?l9$2\ Rix%E+68w*}(L4KK o"']a5r#L˾igT0eT[5$2d&D# 砀qfVqvCᵰ٧8d }̮ v|fA+eOHKw׍Rm0pm-u T' hYX)^O ח!'m)`#@*}P53ꣷv];i %Ą-`xQG5ùBZ.l{+ڼ+@DˬOq e&7Q=9PpksE|}/*ؘ |jdYq^"uDK:p8-?EyYo}(G-/?),?tpa~V1jpW/+ROdB4Yhr,mI-Ӑ,Į+%:?_Gj]-h=bxi#h^**PwqYo"[vXtK$8¹EBqq S ^䑝TR<#!dܴPS[¿T (KIi{GsԡEKfnaKH@CͰK .%:$k~YVhD%o![z˾tqpL,3ڕ8rƢ`qhbzQTHǝbDBP\boBrqSpgTF1Q=2vӓz%E,yS)pr㮀icfEr?`Ʈ\Սd1\^!"9gs֖DuFr\?NЉc9OsQmEO8niAH.v޸G^S#;bήJ}moҴK).շ_qL3@ʌMջ9F#vMYLs qa'<)w񔧊2%UϘR%y O!v_h1|Gm&62$Wր>w?34x5K!(:Ys/fFVvjd[v!8%|u[b)f~'jmmЅRfXR"Pk&ⳤ7[qr(5 vX.RCwy2Ƽf * cD)"ٽ萀g((R%r-Ĉⴞ}LP &Y}6n!ׅn]fukuIZxKxK>d0z4q+>#Z@ ?I}w45GyS.<33_~>]%(3ȥ§`^H@%?ׄܔkW5p1.t~0Y0\Dz#' ggfB`P+!«heh;# +hCЖ1rv#cYsQ1Ort$wp퍘B[t6C\XGR&tа PjXu T3ڝQ +yyL A3 *>cXΎ'50p >G|dWC}L8N k(sL}dAOՎ­2W;zn`W &HF %Hotina:( -yiiB6enm1n .gܦnpX j*ֽBV,5dPןm9TVƟ;!kE@tlTt/cy35)Eľ 06C^%KH._ V9p20FoTrJ5Y>6m.}aߒfXB5 \•~k6yEx8᷋WlW^_t+_@YiRsG&5$@[Gu["DImoBXޠϞgW=ls~>r h` Fw#%ګ,մJ:&Ɲm*q_eX.[]e?MMqP:d Wn%_.j8S.,rSYtG;ѴQԘ"t\Y)xMpH>%1;E!i_͙pwK|Sc6Vr3 #^s ?Ҩ,Gog@)uK?.4|T'4DԖQ5-GWh4Et2p꯶+^,{WNV)[S"V5&!}]ȸm9DQs\OՎ I j%.ynGN9}x!X0+LAWc*܌MRYifg=%TK+М'4fSL&}!'qS)B?-I(Hw,nDYZ±EW.G]Cl *y.-ʒ/MN۬On)+^!Jb/Ոxjya~xz׆K?AqoȾ$R{>᥸4O19:o6]iEvzSefxz([fFs2Ҁ|Yp_uId*N(a\o KX'_~ug$t)oDž[:8vzӑBcU߉ڲɚtjSH]^e עw1HiW"âxǷK5,2^iE $~nWꑭHN36|5H@?a^ZNOVdAnkʊb0XsQJDImevll,sw_?,\oT:Yڨz4|Rx f)jf4Ar% $AkR3Lj07_}Ny2@}P]ci@;ؼwUvR zvpƭ?wZ~gxu7So1r32q9$%nW> z9DL&:N4("-:R_k9I(0] Fp NBnN[0\r5bZ:℥\ϲ7nywwoYLY2qJvy`V}Ge/ru8o*3é?t.6Dp0ɠIlL`ddrAWDlvF$2Ah.1! zl3Sj^PV E/ i@̖Z4xjh9&VE(l.Xarܙbx2u(BC=3LɞZрMZ30H5/]ߋAoMfuOBDeF|l`[79O-OoYKON@hЪXQ;P렺{Tg8,0 U5GUg>E89 "q 4'?K]`2]ba"A}Dg6`>@ O`+Azaԟ^6% +t)ķv-E?r@魺JbbhN47vi\*K8: Yqs!Xw, )6٠0ǂM LE4NƂH0iGs b]Qz΀4͙31Ұ}5۷o=ev6:k@&b;O7d3ܖRj_ȞǘsP52$HIN0۠$U_O@` psoI'QǐH$ >lW{[ӿ_r @Zbݞ[8e .@nk~#(3a EYPav TJ0]jv\£z ;]Ş("O`Cb$vbo+q >=0=ҋ?`D j2E*{Rh=2:b'΢-#?3ǦpiBFXU;%*)d`X&-EQI-:Bդ;S %ͻKʓ1{:O6#ST kc0?a@kH_iɉRjfYR/eHCB.?7fTF'&d ]m)IN\cr(_)e0nrAklEV8ܽ(J WKTP?`kO*=5d& IlIM*w9WJnF33&twMz/js $љ+3g#-bi9d6GF4D^Q SƢP4~ sj  z >9 OΪz|`݁+rM4M I:nL~=ƅӳ]%%쫱!W(ѪKaԙXQ94S%iCC<s#_T>_{7@dӔ)2h=̆2Dz Qƞ?Oyu% hBr7 1W[}V/nJpm<0N̴ϔ`$-٧9\cXl3AΗf$HP$>`'zQ Vmk*߶e'ǧLjp_Ѯ7;fGxߖbU="Dx 0fĐ KV;^t$t9ٝU\+[ zWu|Ak?%WK(rVF~"*ӂ*ZeEpS &YnФ-,:} >JĽ QCؕ_N `hWd$󝔴Zc49bw+5J-+Q3V,'ѷ P2_Z9c ܳ<hd&4$%)E᧐NzE6֌P+*oGge})QrIjvu.6H2X&gHQ?ȇ#On_,Xɷ"w5db|g|˵%[·W!)k*_^z:nCF뾅sDaK=#\ϔS[:U9n%Tf[aIг-tC.G-vAI, iԫxH4xBQf7DpxO!F p-0ajlu4zd Gk/%H\ smu 5TF{y Lx!l qXθOs ɊhB3T7f4k~6i!3ʕ^HGJ(C$ 8)i#I!qlq8+ܐ\pdc(*Εzq&u %jFqJ PA٢o/AfVx[t$DrLLM?HՇO JVGwPMp Z7€R8})(O֠5 {EHu +-L<%}O5[,ab*9-7pM8_I78޿'wC`]Vsn BW=u2sl$wm ݗUO&R4q 0^?ib$v<|~NЁHwcp%7d҉m.~6VZEGdlTMҠ؀dIr]yt7{wE푑ܬ=֦9ԟ;\ő% PPޮ->v&^uM%qW!w#H۵> }Dvd*f^(<{WBtv*d!tHY7zM$177tE ^7zT bgAO700& N$> PLCl/.Nrd*U<:E1RvmS,amNt"]z6(z ;k4o[!{ؐA7Q9VLɰ#ȐM/a,(tm\7$(MtMS <x+.BH9; qjU\Sܝbs![^z2!}?`yr/,.f둈l1_+.j ` ov,~hPGo뷈C*K>ff/hWAJ4eH ?L+$օwn]cL=qʟD.9kdцoKUZ[c)ɹޫ ӝb2*3,N F.uE)䯼I?>ڎ*::9*6M L-mִFsj`⣋UEJap>x"رo%K&T9Ca0Ep!2!EMfO?KX uk_OD;X|'챘Bܒ5S1(pX ;5)OnD`YVXpBj.F+-2/̬7S;dt/0_3ja/La7(PHGǛx~Z?Q|9ݚ=HmaaJ6h/<ίc,.IlVOO.C7nġVyFJ H)ボB56(te.,It/rV4 Px3eU1ޗA0}؆1r|-qy[5'Z8 e_}各Me^|eqNa7QLB!>kJ3 gSST`SfծKH@"'GbMRK|wjYvTRv4`EKQLv4fyw#l4x,#4mMog2*O>{p+bH *ii9V!jfBQ7IO9$O,;81}";O;HD~X r+Xj-܄wK/m ]?NGHKTpI# HhʘGwL:Rax}<guCy#5VD/X>|v P=wW}b"FeA9=+຅ޥ9X3>i 3>1;E1_?%rk 'zz ߫4 (Ti˩e@kh%٫/i`|v sP0@1RRR 5q$o6#'z^;3ϸzlU۲A1Zze-+U"j=wq݄۰m{<0"QEfP(50f煌\sN"w34G d6j 'TA!t MuAIт8`5Iݩ4 Hڛ=efܖԯ=a; -œ#:ýR9Xl,>fv[4hR5;%~GF~9%?` ONJsC)N?jX:ʎiELBЍAlضnѫ,b,.vwUCd*T"K-aW/7k 3wC7B9hp&rUʭ|z)}T w5h>~=zVUcY2hd-m۟DUE|93B,S\DlMKIi;͌j;$45l_n{mܡ1@Eb0jCt|YBYYF5ݑ/yAZW%V~(Vx e~fPSz!J.o_,JADocVQ,*cՓjƅIi1`i肏D06[/ueN'ҟT=eQQQ&DC9hqioj%h ffvyAU:GdA]; [/Y3}t1f[4XX@3NRSo/n;,=B10i*ފߜ%7 c aiw7QXÑF:BkJ_tg?Z&kfZ^,J¡Z 1OA$g31I{)faxZ4fйM0;+xҺѮk6BSTDt?]=3l\|glj9*)VTF>srG/7ְ$рYB'CcV4SmlBs@g] +LVcWsErVY֍U B9NCu=-_ɒp~+#>\=l1dpVRs/,a <⌨_wT,%+r/FGO9[i= &+SV sA:/2 {y.$)4A'mdז 2IolBF!p̺u]3@!&ÈDpRW->,pJ3];oҳ1,z~vGv' DO?(U6pgO+<3ӑeQ%U:zC@Yq7C1~톺oml1jl`e|=Vm6ڐvG=oOsSy? 9L Ev7jp piRsϲlUv*A(w-#_my4r^r۩y#n+B`1Kφ?Ȉ]Pq- Ն*\ڈ^k6^[J,-?ԯo\;fqTxMZbKY$wrB|)L 'G6 lV5.*r[{A<֌1[p>nl4ptPi@KxްDsSDi_Atf4dKѪk'BH;hJz@#n 2MgUS >/<<k31ei VTM%ufn(Ŷ:5=Դ'C'o{Z8'%{6?f v1D[[HPj+? 0kh1uzXKś I{XQA<ᷳ~qV{w_yU pr5lhu>gil'ȩ`idk- 7M1.X_7Ρh_ [wjyS4}V:"4{ЃEfū0pk8-^ ޵hHvj@#n$jYKL 5 22x [|R r0JNf=u<"QHMUۥmR0ad ż5m 9賜U.E܆ x#gOu>=tqiY&kz`qySfJ ɛ}H_I6Nf>L$άU9numdW֙9 ^jnr#ro8یjd\c=ѣB>\+!)ɚ4Bvɫ''L*A}xyR`bQWYpJb=L5BMKڗ!_קs )/1!Ǎ}]>Պ_# ۴J t0w;u$grh6׵UQ ^BB q!& 70P.?{#^PydGoPX^#\dt;A )|45g r, * Zy; ;ⲉ_?b캉 [X?4FTؗ)j'Y7#['7jE=0 Q ʇmo;-uʚTo`IC bW\l=KҭŅ,yxm[-yml‡%<j䆞\é|lp!4Z~={+(}c蔚ǍT K}Bf>ᬱTWpw5/A8[첕έ5\[Qja;%ld \mm5 ޭ7(o\*,%k@@7esʓOq[e9 h KYnLPGAGl$[՘ *³ODc+~a\=Z3uH8 fȡe}L*q*)AO0<,)%a+Ew=vkFȎwơ#O,op Q/ط7350w(7dۇ%Q*蘠uD^l.j6ȩyYhvusjT\6z"'Anۛpm<[͎ph6qpI$Zrl^3=H躼ZG)jxSI%\ ( ?B\ ,q+LF&pf!'MTq49 }{I#aϣ#˂r ~`%wVpU$uQ$by 5#a&0mGlã๓ af_'>{KAS5m_;cH)α9+Y*c#$.T皗G[rDiFm$B?eQh-]{j+ψ/}@&dLKsu, 9f0ܞQ@ r2 ZAkrU:+tcMv$wZVݟ^x/dbx*"* \o h:nz&7E.6W#SB ɪg*8p#KlqMtjŽz\ra)Ff컴v*áCٚYdۯ(!)jA]e ^ y)0VQҩtI-3 ? f|+BՕ韰VjrlAdO?-Yr^@=^6ctʓ{ U2xSR/#~:. ngn=+ > am'Rl.Sݐf~E SLϏXJC-Bo&B"qu| +sa`GW &?X&)I j[pLDY >S[8"fZ)Nn-Zpt2HD KLuO@b6_!|Y䷖\̰ pA͖MŤ$Oz9~>gV|f>VNX@tDK6UK /%[M b4!<H ̂%͒ Ң#BYD\V+]e(|>L(g+nAB/_ MBp6gسR=ްwƴYu{b~ex np]ˉM"\95-.A_[>X~3Ik'0͏FFLޅli[ BC?DuhsU\CkinC|ӫ, 9"hՉ;Im;57x+FpA?qT|8}~9f$ohX>ϙZj(^PUwT BdkbJcOw\nn21QpK:濺{AbL7oKi7 AQ.O~CabT(z=W£&xlc U4;Wnz\,#e}M,tH'jz{Vd^Q4gm(&`׮sӉ KX~2R|F4)ȫ( 45yɧ~lYO){sՋ=Y[&ſo8/8pգbOՂ=wgJUJ8cH `KefL{۪+?s41_<^HpXO;b)ҾUkḚvOÙ;m>sx(C7{ \`&Id#n q[4>~5j(zH7O9z\CgIWuf/z-8d˹Ċ9""7)/^}ƺj-(9BRݶǏ3 pN"2osңQxv14tx eg̓_ʨ#p*SC.K% Ua%u>_0CWaXCkͨb|LK+" 4q{SZqQ-q*!9 v7c&h뉎&C 0ŋ_bb(DWCۍʈBur"k2^drۯOuc֕>#!d@^ 6aR'TN _X>[M %r|*f-FINRA J Xј [7=#Tgh&V$o*Qfrhߛj@k*chijs AAxpdz y4cB[pm+p7aR#*n|d3.Kh@Xi?DXGn6Zd4KuaV5ugJ)K86KC5sh7&A*& z|lR*hOyNcJnza*:`TƄ]v0MC`en䚿?=r\.9m̤DT"usG u2w' cħ*X<=Bg-C2Q,kmn#7=O K>a#=_dNߢ;u4'H]\2JhPxqP%+z[}P0/6$9a놧7͌ӎ].?fQ$Uzе8~zI:-Dyt9jA  avW 'sNRi%U.'jϱ']4I ; uzih{:U=լ{/ޭnMwCtϬq~,'SzǚV\^4:}?h *2 6Ofs3T?fZ1Ct* @<$Z \|87Ȯԍ.a4lP%DovWUQ1fhlNst>x'~ #[5D̔ T\so_H!>ΡX咿2JJ( \Ht.cӍcgzd*tm2Wz[κZiZm˓l>5WB~Vdhҋ{dƱ9A /|; U%ZOiy4*Rם2?t2}ոZ`/NG; g'p` `ZEVjK2咡|*,;2 ?b3S_[6:?ɛ7ByA^/ypd{1%+V^9pKt- F o7ivHü5y*Y0=BXAn;ۼ{R_m:NQkdS$ V倖wXolbtY@k> 9*߮O"Y|SHBa,?nb 2bvghilgcm!rg^Bg;d2Jfǡߑ<^):ĂfGt0^5nnw*UKLsPάqJ] 7znnC\[xVuwh`]o#neCr Y1şEFc) q#ؘC)мao>4o^gDΈP}zm;KkZp{f͛Nƃ'|7,դ hH79C'}@V 79mދ/KhF% vF=ClM ^)30MJqQάJ׾hA۞:-kF;w+S߶q-fd0ӏ \xUirO2U)6oR1 k *qrTeTO Zp <׷{fu:sRb:4ODYq ]ּ(2ݠNCS/5R$l%;@1cPu0NT0q^bipAKoLoVT@v,Udl X*Jٽ&U.ʸH_I瀏kpd\ AyR5g<QA %dvhS ZAi ~ 3]R=;8 Q\ 1)!C!ETwyKcMg=LoyWR@ҍWvK`enkr]~UYF.{d&~HW`2LLb":{=nvˌ)s͌8A0]2|5i{QiW}rIL8f;f˙&ķ1"_%'h^ ׮)~lrZ,72#y]4=.7pS ۪j>X5uɶ2QZGYwߩ`ZWv.yūk*$zg:螊[]ELmb%:^UZ%h['zQb!YEi~hE@2,Sp_J|Y$Zxm''*Kk?E7IR _CP)=_$:Ͼ(BUIN8!v۠{Lc~Nɺ+<[!ϡB"f(Rڢ?9##lV6u rkMd8gS?vF]HV&"۷ sFCU!GaqI7Ś [eH?' >^ 7Z\Tjİ1ɐ̂5逅]ؿA֊~nGBي58^OA  z^^m4KA E ÃۨGv2ucG|5;@8*!}h{WV:uQqZGJ]f7l~q {eAJ]hw  q, ::{C\wݠ|B%EW@ۦŶr, WWuI%V@ rMb**+倜^iz; 4n7rQnpOHsB?CnWFeN =2?rHBI?F4"&%(k+9г<͂Qeӵ%5S*[M Y]P\0{~—Iȉ1!u{!퓘a9 #_d6j|"ZU.딹r6lfϐTJ1#X7gQUzt %lT\N@z).&0%jq%tIJ:NO VnQh7Oa:[Kɧu"|c W{vRmdgQJe9)EEOuQ|Ii#fB".yƕJDn)tsXBo{4Poa$l{e0'_IAЉ[RZ=TE{T5}l /S('6b4|0kp<\cr䉰\N[EviQ+)f]c aALQ`dPw8;betDRdg i/[۞M2zr,G&h~Ӵ #tCnLxTܢl/\m`U4QsEmOVӪ7fh7:ZQ޾BDRXfY+e xU&J @V a?/ѫ |`]|xR^*IIo!"0 `AusEt), M 1.)P vs܄Ҹ~% g;ѯgu g.v<"㨹I ToWp|eׁג$^?j!vOxȡ|E'4B%Ir>Ez >T( am3^+?VNa_99DvR4s}|d(Nfq¥a (AWhr:ܰ;HO%Z6 I1cAȆ!"eM_ׅ)5pf~AQ,XQRxʑZ+)˾a?_4";~3Gk-yHYi47SVFc>sæI%s NȎ0 c&,!ۺd#4Z[1oًOs5_KR>HW]|GGH»7Ͳ &LpIaP|2Ubs!g~].-z[ڋGp^f @Ӹz TY]\zǧhwWLfm;w0J*d}? 4P{(V%<49>tulsqp-?XP] \_ε,=IV0w uwD@ e?( .^WP?lNX>3D{c)k ' `̨LNtz 7U,l6"۞DD"k\نF|0"mM7@B8PKA,$ڌ?:MgF>ӿvl4<2djx"|/Z)G3ifM:_ZsI fnP/u(kTߋF4!Q%4jwȪ~yq?~C1b<|U/ΖFU6ԃ2˫zВ?Ƥh/7~9ug)gG2%(qx~=܃Gcd: $.@U&`",PZR{R#w㎭yiʌ 5A5^h8>\KRN؎uX7cH `86p-6Բ76rGq:_a0[n_!Uլaaqrֺ +_JI Չme:)|VwL>, ]/$O qb1GkƷ ( sT 4ުS]H7K5!Hџ;@uj4W8<M õ&FuoކO-p ")p륝cg7.6nrJdNҏP.q9/rJ%U^*2A쭺ѕ<سD7 R'uu n` \.X(G 2ԷvT>yCUk'5\ٔX~[JN&Ku"rI.%=^ C~[7`k疄 Y(DMiH)TܰVnBQh 59#$[RK#m9 ?0ކ6O""\m!*n";Hӵ_*/ʻruhdN/8({}Oϰ !$i49R1ˀDl|ͫL1}sϒԜaϻ\-jI}oMqfI*^oWɱwCa<\9;['㍦X^Qhf/&)H-6SBzWصexȱN!_[ˉ_FR"sX&~mU8 Cc'WJ;my RzՐlԦ8 !?PJi:6 )-Z#rH*ߏ 447kQ $ x)^ ߧg~wH7ʗ/g 5Cr>Yz?hZ^:nlܴaƳc]†n^[nK]Y#zAQBY^D%4zldrr+` ZT/0Pf$ߕAk]@! 񚂬h:`Ba. 8PI)_D%`` =V6ɟ1I>>̀}q }Աm/a#C:[. HV8fLcuiwY@Y"}KB{ٸj9]|Wb2 r@Ș,˫icKg*u_c &B+gFJUoƆk?A%H TevL7شh~ooahpŠLVLQO)r1q\ H5=.4kN" ǟN\Z(PN6N_{,n1IҢZ x /"Zg%Ju+.Džfkt,c쀘gu1Ƚ 0d!e~vȓ0($  $eF{u'50"HO^༫EYr+>* h a8sEe5%=.,+'7oLAd}|G^d.3Z`Y'w U!6CY|MqRdgU5)gs_۪<1TYc'B!.bcK*+23+(1mIh)NBO]Ehj憝y8)Xؤ@KkrnQ>QSyޡNA~`fVFu\pb[WFTg ^0UӁآ11Ht3&:+s`>ig<>#J }/e{yM4|a' xyۚPndz96J[ Mz~^٥;~]\ Ef4z3|gQ:>9WQK\:<誯 gj;6+Y{lCBķ&gl?l2a _3uC>fX=ZRKpz__/E(+<_O!w|6, K)gJq-1bA?j5 PGz*ў280L9HムM5 iGh#W ~-$"A]02yb!a9T#PbNkjK3"N^|?7ٝBb$%omJuwJMo^ݱI$7_mP>oud4qz3xI7Ҳ=g|7 _]݂95qQ.i hAlLUnUvB@/~pu ;ǃ*Ԍ j;K38X-tԬ~n"YλNy=;0Sws MK:)TdGM=Se!Ate.˖4Rq*}^1;e?p=weu.K1 %i3 bE1>IRU5F1bft-CC'6ЩW|4KPڰf^&XV]2+nOcwz6?wՙ1c zEߡdN6,@n#jkZl&H,F/ r`+FHk5ϊ_59ۜzs`[]r#@ e:|o$t/:{*K}bYX=+-e'^705]mR~Xf^Ⱦfm فRpdY1.$sK+Pf}*8+X%15h<:-aeJ97*k`Mtǻ}kW/S]iQJ=Ŋ9yԊ.Zc.ELb3 &e՜f12eJn>? N8sWHM'@Nпȍ$0RYFfntF~eE9'=xT8``}cn.XZ }ctJ9f_+Ӑ ܏z9CdVgE`(b r8@8Bjwsw(͟緎8\ݵApzZh_'<'ˆH eh҂*n;jN y8g!BOk)XTG3V I1ɶ\\/$1:Sk`&1byȖ؍4CMH1X;>;MI ԠoXz>@-*K1T}˖~`$wϰ@Wèx43`UQEE7&tP'DH!i ;Au|=`3war?MF 4=?:Й\w^`P4Y Ux7w,VMLy{(H3Z B:6—*C-ەA.ᮼe^@~rEû8ܨ"W?(/lJdy)[23x(^V̈FfĂYqJ==5fo,'U{&X7[=<.n(HvCca=c{{)hA:(w̥TnozC+OձϮՏآf.M BZ%OJqeQ-mYG/#zzaۢ!!J2j 4:KaR4ky}fdfL+Lw@`ãKEfU,#?B`]Um[O3>NEHDet dl Y8Jd$GםbD4V'ŻA!6/O}, ȟfUOU1XnHD%*eM!j .sdϾe@(c&¿)eUf\ElT-5 g-HxH+wSD,Xif0V$=$_g9v i>NldEYwpX)&8q܆MoLʝ 5bodH~B:x}d7+JlyX =yoezr.o?DW @66}ǝӈ.T^J_Z0!K *^G ALٯ#hkJ**?w\3}ЧSVv _YRVE tZrO%j|k0֎oUW.}*tgP  W)0zs͎u(@~sb&;"j}(.$7/oN˟ODmR{WtBOhL"!ښޣt ѦUӀ{oH^-pvaQ.|{qzP0\7 U22c]&2(݊*Z J([u`s[`):lWg/XÌNkiy;nL0K ȃ=<wN@cp7Vtܼ9Mr{w;A0fREor]H0I GGƽGkn[Y'ơSOSxa@e/(2FI͟b!򏎓hlG6]xڕ)Yr \5~# +pn.oR;DXd0ȃ뉍~?KX#+XnN'%:vņF82R7FK?NsaV00 mj-X46)J7'}HYAǦƇXlISi^+?"i4PQ(`_<]|\A?üMpm,sƫ+{X_/YB*[#/2КLYa3ZUDk:* SY?YV[ (/~]|U]] T' Lg)ZiQ qUGaS8O}k;pr"NEۋfjµt\x7c{0ߗ?Ud6}1o rކ<BE ӃvՁ${}zDEu-qAI6`7Y+r#YЗoBO4u"(ВP+/V dZgOCj"j 3躪"4g+l;}^GM GB/ZkAnh8ʚ#O(PV]mԈr5;{~5L9Ͼ, ځô=NO;8!H>(yf?w;Z?ga;r)==JY` >8VP9W矘 ,]=0L0٥bXFb#dx# d_u]VN>I1I5KUCǘ5DȘ2E|4}uKl\6>OLP9ĭ &$i"Cˢ͈Yo&=9WQWDT}yU}J25!+3JD)6HvLj@23O%dhKoZH'atM#Re|&zG'2Q'' 2N36M愕/A[8+?S6k^&t[脧CVeaad\x=SA_{nZtH]TF mi\₮N=-QŇE;Sw|[KedȖ?v'/]{G% 0=J$'2 ^(Yq(%Bd R-V =t>/BYV8KcZȑF5w%We*~%~dx@ڧ%8ܔgCٔ$&|%o~e0D`A_Z-fb%_IhYB.8۳hUv̆wdd Wܷܰ,h, vGL\[yNk~kBK҆2;`PG?<@;$eE6GD~쌁R41w_yNn!vp4D2fI%glZ1}-!gPM1:\̣9>Ͱ"kSa Oe{:(q7fSDZs`26um!C\%&?wՙQX|o/pD phaG`?i2zi7 YedVIܤxt(:0jEWCvLvKuM@!$hpʕ˺"2SAVrF-MH|Kr'39KwdPS:Ov"%[ ¢ݭc @ua,uIAt:$ij&wmJ[_=4m=PRX02OR$YTDh.:uE ;?yCó,W' ON;qrBVH:v2 hƓd? 5}VU^>7XGY4i'g=FalȜ-'a1wFӄ+H &dӳ6~ENO O/l l@= /#6n%m'ϗG7{`DuD(%j#+ubqeHM4G8\8+1gG;; ]CP>+R}#yY'li/Gd7O.[G c,WSZunNEj*yR9elzツP=SxR6O|=do&B_BN2Ep\xB7XZw~r۝um e6Z1 y4OuAGRG{wXN~|,o:"ДZj@S;y)#=77#;m0S(zw$7ؕ§o ԹŀqbHyq:n FDMK{SHhu%#)~6ex~m.6O5Ҵ^J4+>D5S˳&^(J}$*6Z;UX+Pii(N(vm^#fʫƒ=@fҚ>ָuWs,]|n@Jݽ:K UO *n4\f ξ }^R=p2at7M5&XQrӚ9ߤ=wNJ-E_zS.Jݩy?RDI, j'y:Ջ8&eYXP8$&?ȣ^n>pgqFϠrQ 6{!vDD՛e`qsYcе+“kuˈ^늊&b7nVҨ.g$PFl/Z%zP"!L;VW~܅IYLVZOs17Zې.BR?i(fOo"Fדqm vjopՀHOQw\O\Ar65MRwI;],bA\aIYY*5uçM#BU$sxYN0ݘ8fHz\jiK_|0"r{8%mn]`ɿrz-f׾^UG`b-Ѫ<ò,]?!/4逩x%4w\6LG=Su!Sh64fi ;Ϡ.Ƭ&+"pl\Kex|,Zynf))C< I_wtfۻkgh8\H87W6KaA Xeo~ھڨ`#NId)A/m筷 W6Ya)!WsL^0gҫͫ24Qq=PhpMU!S<\T)rxda Ҭ]lQgu")gMk m>Pqu%LX N$]$QغՋ_]>zlN@V'ܣG(Ehgqc)v)U5̱Js 43={)jhro^C8mաf\irX]qT(p!HӤ-f@ \lČ?ʅ$K*6$qսm'+י҉kגK " I [3uLX)E[4x_/sijWӶ;,5rz!W l[#ߞNbmZ@3AzO_?ict2sth,XFcе#2eIiՆ_$Fk76)5˽+WL'dvzY,=Km?$wfc BҊ%V7!1ˣ5*ϕv9|eT2XZڷ\z%un*Җ Uիp3qs){_}w& wi7+d^@<t1Min oivN8;X#1Fܜ-9>KofҚK R wJSÖyfG+hޔ=U*|>~_ йw `S^'́ڷIns7ʇC}rY h4?vHs{am6eMpCkn-foRhiϢQ$fx@MB!OTH WI d]'d79GY-bnDl1@_iEPJ0`fnCЃ.:&taS˻Gq0{se$l48Kgf4YEy<$@XIWT}a ?𡳷@RZ@M ƀ J-^Ӳ[2ne<$V? =-(Z7h|g*ݓ &lG1gFL"c IIR%<H )l]䱱I.zH}JgO=(CfmH̖q&z~7f"X]Y ]*aps$m0BsErvuL3Pt%0pvޙ8fUxFF7Aix:O()ڋhKeYʰySBܫ(yҊ%(7S6C.kyj[Q#u[3rr/vF맚*~< Ty1_[שlJO๋e,VãAY=Sy.Vg.Ei7QݺaK~~Sƌݛ=P Q`p,;]>B rN )x,v[VqdվJjr~ʱ~VNЧpgI߾Ⱥ15Rjnn<6S?|WvK:nn)3c[Ē4)G_v78FUą}tjR߭s-wIGwb& Ҙ;PTC acQ[HWXSsH;] s V 'Ttj义ec7A^P86hQZGSF$KwwE?#U6p^Dc3P2"XeNL9Y"LkAݧW%_LGF={΅ón=ѹvn?vN "ӳcu87%j#fXv+09t#/il48э-ӒkFؽ6`5N~O&ގJp5ϟ' >)B4JO৕wFQF')v wEq]\hUlHֱT %;6Mхob""e\?tͨ4៻c7`\ sfV~w@@SYLՙ=kv1˴AebOey`Sǡ__ 5`T:t/"> n71(Mb tU,0`/{gQX{*'#]*!ߨ+t}4ahbf-5;{z6>)*܍fEh85[5sfa1 X FdoecBDJ^,ڰŢbi̓q! F0FѨt5p3Y4617k`Tb>7쫣Ӡ+_78fo& dYևr 4Wx =&ƨg,w_s/hʹJ(^T06z}=3Gu2)TB~I~X؎Z A'zC7QW$pR,%O͗ț<~k5JP2+cyEC^ T7zd'dN6W၄QS&ǧsm҄o:[I {Nn:I;}6"[xx0QDZkaʐg_RCZ~x0re\jop V&D=<0K/CwbE+v۬z-S%Jqׯ'sA y+6Cv Jgj+T'4^pntu~XcOZ)SVNڤ# Ʋ?{e M#!&&yRh`v}Bo `x8'm }Mף  v#EV$ ș{3ˉy{*GO\?{AC$"QGq1-+@q:$W8-r/F,h1J`[bPGI&P̺RDUx{汊iw=[\}YoX1j p1BqΡ BcM :̇XK+2Fz=QGBOxW"t8KN^}+ϕEu°vH1ع{7"My4 cܽX"T̆!Wf85/і8I ^ ҄r.ۡl\@*F?`JLs-S.E/2z72 7mޜ 3=-M 2=~&$xit;:oG:vOggx$=HT ;8R\DO\~o֢+qS~<^n訕^1}V~Bb?!lE]`[reAjx;AF6?U˭E׽b6Ψ VkӛVMYU :cY/lS.R]icY8K4#Al*HGZS|7אtC{1m֙4`0?"tMBb#XsvW|LHNCeITg5}$<[&4H^UptSDl*_5f&Gmu_\!`/On-~34PbeN_rGlUM%KT䝇X5f_ qBIs!rжK)F)6 g΅qӗJѼG$n"A fji̹ NM[=b( sSXuuVsZ%-Za6sn0}3A&I~Գ@}R%[sh]D|?L m:I`~1Zuצ;}MY1 8b-{4|6-Ⱥ=ؐT,ok'MU.eϮ 6ķB,9GO-o0U M3q^bgGIB=U /HkV%z!\;HlOuv9{G& r̉g Cn.F"PⱄrEԎҔ_:K#4ve"q̠XkޔH͔| qh_ك@RѴO¥Kǚ-ˎ֤ NK*&;rփD[&%]s+A Vµ;Zg ĩ*"40iPU-'O0HGlwIa⧚JU-jqGt#VR`&KB3XD')^W X%55(_#ML^;=xaL4zU:u4&zŚ֮zUƜ,bv<Ԍ9M%VX0+WfdBC! xCo%^^| {bKD\ߣ'-:t]۹?Liʒx-Cp~&:|<7 j=V`O8l(n/oOnMs U,~;'/$_2ː?ZJ[:a8&fP;ԍjŪ p+-\@>粻p'ْ&ǚ1v`xg!=}bF5s[eIYص`k&J"'[޲ o9XȑS?_5ex~p1 ,F8qUU .+6V3UAfPC@ݼA/EULhࢷ {Hc“Ⱥ!|/(ܜ2*ՠE2mbIf?,I*cJ9$Z~b:heVs+w*BÆ]ew(ZYǬ&_#e|égK4Hm}p3;|56;̝qճcv PR * ^Hn!(4OI].8^p%`.ɔe/MqG,7z}Gxke/i/{{t̖ҫ5ep,Hސ3Y^{" ;r ^Y$A@\4hڏ[M*1Y^J dw l~ =t%fk|cl1jݺ2٫tJ9fMLd3Uk4@-ᆣ,tSBd@K3 椯ە̽2/QBg>b$riq-5; O 2zpK4R No/”6МPW;_վZ+,0k›@Pzml,{PR^}]q$IK`zH1 tPq ԃ(Cl(-BNMn D8ATnB"VZB|O]m$W2 Ԁﰪl/GKJGRvjk'iiќ"a"&i40\J JYi\{~)(lp1!,N/Yus~ ;g?*X0\\GC[194"' 3PTet$*+(-dF̿y2,EЭi]xn3fjѮ%?eNL^jTև@|$7(Ls: BClgOژ=~?x|ȵ3RɆ ;YS25K5heΧ"6Eød1ع뙕lX6dKh@xfC:/ Gfi0s /oEd>I򄫋F&=@F"a&xͳu/R=L!^;|Glcox'B*Ci],u YĠ=N+LDKrioD:$TXX&ޞe[-W֐~& -vFx"܀EJ/nkjB!O>D@ FUbj%<[(hcLpK>Jhb2PlG С&p1dc!bc6ը<ܙ4IwX)- Rmi ~c}uxVd? L [JKѦ Ȑ,&n20λ7(ƲbbfvrB]yyxAx gQ?(4[sG^5=r`w-3; ju_aM&V:bŒ>>,$Hq-=Ip]~ޟ%px?n qRgjSpd;kpyp>]PUY.iGicں!`ߎ ld038 g2 2@Lz^X7~r~@/zeiZRGO9-+_ Rk_^V8yZjv$#.%FR7]5,YI;Xhv&z<[0X-yk2'؛3mhm0amfRY ;{vvߜPӥ&WZ3!{%iKjWNO88N:Y-Q]T S:EzIQY A^uypt_Zא9 # !T52_ Z6tE 3az9yd,%ܫFGa}sD퀝*\,%ڹF@ 0*o":JOmg]?A~) 6)8֜+4\ azL,1cZt Pw̐!yK*䍵v ޵g2lj1 0b:<>AHa^YdK mSÄ4Y)s[:kJ6Ľ4v][RNN[ yyNGbʛ4 s:Fx9BHuDRc8;iܖt*kw%/T\gSL2 j΀>,շj1A&VVrшa '4 @).d\x%ob?OOr:ٕPkOB[2$(ѣPl|㯫*)|Sb'?{(Br QUKε"g# mHPX[[bfj,5(6!/D0?*\.1VI35|&(z1eRoCۄ'OVbMW0B _u%V~N"dx"b;XL!PpdF(4oԘ^!P}c7AܞWֽ눤_<5Ì/i#jq۷>uƤH6IKFBnlLC0(ąwlɇ4ǔq,*T+?# ?v$]Bۥ=^FOˈ_]4$gK(2h8P_q+3";ål ;lkYI?H-jy;:mN qO C%QҡqvDfP䠟~QVIc,dĻ5(gd ے|I$6^44{UXf6^f=쬚/L4.//hNI"+'Z.S~?c6(!zK\vA;5%e7qi X1}]L+4f+Qગbg)9^xJs+_F!{&RdIN\X'C^<E< }4hA [2,8L_>󍬉,فjhZ$>I r1xg;gw3'=<~l{dbh,`F"AlR=_TEɌq!qV9q蒐BNXMB$N4I,NpWӋ:/a gMʰ1B+VH  +#17KB4QprLԓi~x"1R>9*S<"p!# 0BivX)k;bēdE*qB'<`ҔwU?Q{5a+w\MO^Ϣַ&$DlDdYSI\5sFˇpz96S2 !0Fn' u5,7:9I ~;_p͗ZIF/R.H@"HOSJcQ*Xia'M' CY ho跂UryѝlOظ(yR1nr?x!v^>S`F/ēol|\{ŕAbFhJ^[ >y@&m>CT# D >Ai̹ >"BڌhCrA]a`C Kվ2pSw&d5z!Ai5pE_9j%`4 z]3Nv+"Lj0O1]+ɇ*(@jb0)3Xqj(\ӑ1^&,ا"ҊO:'E:[OЇhtl|ʟ 'Hr*=@T{v{1gwrz[&Dj8/?-'$%7cc NSozS.m^ ?6Bwތ]˕vtwTr0sfG飦 T܋}Eu&顩zu]af0X$®if:qeYC>cb<7i t+0gcPVu>9s?~u]3L,S4vc=pʀ/I1Z}`oYr|E$5m6_TO!++ ٱSW,VB%)G?WQ-y[{} A$O:L]b!BӽM祏Mՙ1!@vFmr*IR4[DR^ain!u]\D^Y%>4˝Y*TM}xEd!I`az#!#x]| hd`۸d8;7G5[>X3) u4/acHD8h3/Fj/FxQ7Dܓ47:ÛcЪ\[ػC*+pPB8qI[BǸXs奮Gl88igŁΗS["N_z`>.ˋs+Xn3yr vFu#9d?FE#ݒQ'2"eԿ8Џ%\.~`$w"'waGe`,C#\C~/X0. 4mgyQP:Gi۷_w.5ab:\3́9'$E;_J)Q5D M,^R2tg2%ɯ5m uDŽ 8!a>@zH%&V׃ M*qŸ`sj8XPDvo"tC'=LaElG=qO"L6߼Scp2%9~)G5"*]&Y9CYXl|~UtFͿdj=PEfCEڞ8` jPra=5Nu[޻k'X,Qɜ΋4r_scpN,H<)Ad@EPΩwȔoو1-jzҡ~0#@w $mAb>{A)}:Nbڲ'McA3af9C\@@ol GW}monQWj=l+}ʐVW{O1 Q c'PɤҀRE Q^U-&Rh,%Zj3q7M?2X=E}{_XKOy;e>ԠRb~v"5~1uڼ`#3kMMV}$MѫJ mc;Y+@Q.v\2r|(I6?!ֆ~71oj@&H0{DrYڞ61n y2+'k,u$(( =-ݜY 43@E3 !qGJ4Bo9B=bgB=n/.RsGAt x`o˒pfI8DҎN>kr|/iw+5=Ljl+o/' r z5ksX`y oI~8eJsB- pD~ <}aE󔱕Ãz3kb`Fj.3eV 19+LP%N N37Qb\A F FCL<_sQUT|̨qЊ{ŏ"*B/Yn+]"{O5h,Vm}~]2B(4:%U8]4)[W/2mU3nG(cVɧ"(NTwڭ:ē<aY["M{!ό@^5 ENn=ϠJoSv(=yfsX4SXL%!K2X d_صm7wπtDyamQHѕ%ub#ϧ|:}-\_Wu܁ r<0Ze}Vlyz'}8wbr8>^)%l1in,-HNKGh/|͓\g_ i7T HuL;s/ӛn^W _|,ʪW#քBq`5XhN mu\i*" SHz~ z`2#=2ſΉ.{41[(? ':9= .5h;w`.tp)>U# %W7kFa`gDr l,(@Z`:4HЉ׊2neLg$Wmی6/ ~$bIo"_]b##Vyx|wjx;2)8 4ː;%^!$8H`.cg[M7aqtlh.YTbYiUTUak?`Tc}l{I|*^$`VG4x mH-UmFV$funr -kF٫cx D/-Bak؆N:Ρ;^ 9v%wns'By093x\;1!G¹)w0(m:~,V{R]}ЮfXEP7Х^l4D ZhZ0 8V{) JR cƛ&2`dw @3Kk^"*o 9Κg(!"h>!^9|4(Jݭͭ1"WhN_/'@ͭ:OT2TcӻNoS. JR(뭜Ŕw^S87L X(B`o4k9)GJUr0c#OԐ^X5Nӆ< R駘DYI1C_v$=&AKs!yR@,6>kk0Db-;jN{W9b`u9xC'1!Ĺmu ۔a,"43bDux='%H.bKFvA}f#-&kfz0h0_,$`vWY`n oxD L\wrİ6ȿA[3X?īG8h h8m Mb4P*Q:ѳ3gZrYhN+5Dɱ $m5/DGDR8W(:7,/]7yI͹`r|S*mϏ@rP2{Q@yF%m @ҏ_mWBJ!Gە_6KMra(D kcLhM~*w;Y<4s@gX%wf)zPK1$nӜlž[#vzHH" &Vorp8O4ǾD_+d1To5Y]gH#͔%SJGSmM ٘%ZMo@<\Q-1f GKZ2.m^8zǢ.Πa3AEZwbL$-[frߥ>QHƾ(]AL ۮj(FU"!P RE|ˆ`?;- \4`] uA KQ\U{_-8AEoCτѧ6=/Q\1KԌ#B%*cdFD=[[ G#<3G۟!վȫN:Fi Q{odD0?mP=f8mwMz-ە?g03EsnFCH&օUpEI-9Zwu΃ ?q -IrL"_65xP~gXV 靷]eHz{Yk;zBU2;A:2W+Z<&឵3O=Og/f5ƿ?}0fZiQQ j~ ;-Aw[Vٞ*Kan|B O9ק G`IX0[\u*] -s>鋬 eB"LX$יj&@5H4%|d/~Ә0IS[AG%{g胴()A\a v)H|c[#h& .ؒf $F?P3?W;nT(=J;! 0I OT_ڶ%[hTӬ+B2Rː+cX"1$k?ԌRʫ`wX0\80[9yxB<ĥH;hL y1pOsQԮnf eJh'Xw/6]D&ݣ]+\d\z1 P{7- {P[c - ՂZߩa8oo#Яn#2$ ,FtT_ /7>6&Rl,4*~}Ҷ 7gV7w8gN.DNU#!{'Mzc} A'Y &f[ DV~x3,gTo9 yyR }շL~F`skpM)'.v\ r{ϛ=OPK2_*(^s 8.~ E f[^Jw-56x^AݎOailD0}7..:`p: |Gƾ [Z-,l|1䒲"T#8E0Wb22Yo &NMrd %Y Zq7Gy}gxFNFyu(=?''QTPa cEp^\/ܲPX0$~ݟq _!`eeM87f]{Z.H%ǚo_Ҽ*ִWBL>Gm\A ~ӡIs֕9ƪ9&~)X1BB`M? G JKb.ri$)R|dc+P4HGZA R.) y7 oK_מ[y %v c 7mZ[Gj"&:wu!哻އWI2UN9yȲO{Μ6YzJACe{f]pfz ?"F'[y3{\XFBFUk -u.5&FZH049D~.Rs{Lp[X߯NfFmu Zqk*Kd>Zkr8&A@/?YYVVoPXW5֘Q3> .$fGǺ-\9ESJoF~|< Ob-sK e`cFx&*mϺg@ɌZ.D]8~)rA9I ojuĕCO:WBϑaCH#9-q%"wVnc(frBGϞ%͢=AS>q_l*J-3TE)x I_`iSzb:gȚҩl'om `+vϣLBmXޖqڙ`۶ jvڞu}^ȂmNO*`mb>4n"HDaT؅m'MJ$gЉ> [|Y53'l[L8fTn˪xp좪O GI+yn8NL.JL}c]V`\%E^vJ;EUc'MhV*Kg3n>hRnVrC-sؿ\u'+6, DEa AOOwnL_dˋ.bpyyŰ t?faO`~T-q+!K`9Ef@Ӏ$ˁZVDyˆDeX͟5Ek' :?+9c,3 mQCGhy{HypX]Ere1ӛcҎۡ i3CyѷO-mWzqbaz ^2/Y`\o S̨J.EeՃs](|1le`e0P<G>V{8ES't)UF4ε?[] P{lQV) ldD(s~&VWtF]g.!KU<pPV;wAe ,[$72bM(8LKM$sƭ%GRG1_Hx(> ?|@ ~sۘ+*u^bIL2N=`AfƋM>/QNl4| ƹ+#%DH>O21Slm$Zk 1Ч>RS-cj;D{eHMZhb0, eκ?^k/-efɗ3lj"( AHa"/aA?MA/ 镀vMÚ2" Y[vJ>FƼ OPS%Gwi*7+CI8ğ쪧|^Lctv˺O\NSiNTfKD />/+ іZbş@Z^B8 d6Var=MCyW[&K?:DvC6VL~1Yt 3})]OgX=fѐUa_zoZ4OB\4O̙z7LJ+ Omθ쓠;.f ZaL/r]LM:W~/ eI}J"[2eM4.7Z\M.fUӟe %6)@5PɳXLlhCa8;QcC:Cjt H E(g鴸Χ@Wv*ˠí>d|֔ȩ>ʘ+r9"\mb u1'NL^cEmMj d /Dj+z2IUӒ1ͷݶ0qblBh,") C h{lo!tV k=Y3 ?] 5yI{ e7!TDA{5 f"L)^w2 A1˚v6D($Q&C_EfbPD@$cFq4z J^*mv{\ۋV\97X3o3`܆NQUQ'4 g5iiۺv $߰Gf>p_Wz~/367H䓉YŤs:y?j@\itfD>h}tx㙿@&64WPED7[ԭ.8 iMB"^h 8 :"x8Ɏaw1AE2ݹewOig,㴴W@l~߬o&,v~QCb,dXJ48nlFE.X@n}خmr<(_&S5-3$FePe (.ƵA}[~o ^&.] {)ZG4N%~pRo)0fqƘ_Y4|bǗ" m(2Jʎ5p. U0E'W~AꃶK;UyH;ܓvؗ %HyuL7 m>: WkyFOc_}u#XD +j #[xf>)YM rOε[N9-xƺI__ִ=Հ, ߨjFyfh⒯sMS^7g3!NH| r)9PDZ[G:UoA60Nf%|-55YU>,МtRTb SI[Gww2/Pr<6&?"i!8o y3+ K(nT\vYS-|H.dd7RX+IגuR[LWQz]2?l3[W0Mq-_}Z@9NETr 9_7p{'ay&ogO>z{[ #\-qxt& ^dҽΌgoP 5}غgq7^+q)rԣgeySuJvԠư*YD3=84.̈VZ]:Q;ͷ$\諂~tx\誺;T8薱egJbY j tOTc|FX[ P j/ #vybJqT tsRؤh%;fO\/kً`'d3qMo-bZ4/&"e%j 7 6w|WB@+솧4W!@Dz& vIQlU7VuEeO%Ȣ T>rcR%e +s/{UI?*QU?03J<* SW")|~pD p-ٱ-g:L`UnN]?U|-IwX'2nP>cAGt? @Ūbj9eJqy۹#7 [r| `y)b蹴eba(uI('@EhLsʲ"[S@)"Q H>f!]/:ihOe:KD_ # ɳ>r" A=&P DwnYo1=<=oÒ&U$0 @~,aI㒗q~ے9ᒳozC;vr5rZQ^|m n|W*:N^"7cv0(Qp KOT ≤eX8NE`vȚ 9edMe %)y"e ?TnݒX؝5 *b>lBWtܖC2Ps̈8\L7MS":e0mR 2KW 4@HyeϕZ qq6bҹg վ-IZ19TA ! \Oz%8NdDFD &Dm+?FAW~K5^T“ڀ5@!!c}5 ?B2:T?D8joFёM% B၈ THH dX4"O٠BBі5o0@97X#xV0ȣH ƤETgp0D0|,>\}4*1S~$KTJ_6Ug&Bt^H摺;/O ܯ?SC.`hLv:us)r̰]2'P$@/nHOkEՀc%rU95u*0ayt`Md{h^E(< QsѴA3!53C&pIx5Z/v9 8$X >tVs科W/V]46 nDcYJzz%,2cRtM)UYc)KhNy82|> _!1#?$WOF׮-?Hu 7αd> 3F7ɗfr)tfrGQz \MK^`b.6u3D_ Em(DTE3ЊȔj0˟g.= tF6Z38*>8髗W1 3f}2-97%:5eDQFadٳ*%a:8728b>QXlES;{\nGaߔge14I]ŃdݹgHZFrj:>7VK"zzкm5f*+M?;Oa%m;r3ZM͖mwbP[ˇ5FםD|-5$̆? eDҬ0+ bI|cGP}8H]_4KM:2B<_"%+omx1xns߀ԎwP&Ƅ_SS6T򎳐򺄺 8S4ƮyB-CbJ~`GjUkfݚ)折|J6hm[~KW`rZTvynAS2bwrq Ԟ?,KOjȖb8"Dݬ5XS#˴V4>g˳Xި9ED| )cgܧe@8)p/kf qñs?b<+z@\K(lޞ8pNX_Ckv2+%m&SM|SIR7Ɩِp{6auEu삷 -_)v!"tbѥ2)0#zdO>tmٞ3Ͽ[HXFYk7oN2aahZUA+CVƝ17 ʑ+SfP,K ݘxET@K !rlFvaKFd/A+!}r߉P@: \?_! sQ`xW>i'ѳJZI~wԸ)f9 9K^8 `e][3gajs$.y)4cM%@Y/v⎈@^n3DC4 +]V? ;V+I \c p7EOz& '{죀J'Fq*64Xs MtSf5bP]ɊȹZ 1+Scw̱dI]3{Bi-~;J_?N! B\&_\lN_o u\*ޔވCX[$&2jTor%fSzLLCa!@7ѻG!ПDw|S8PoqԱqe_Ѝ e.{Cቒf+ nكաg~ ^x:>SҞ\gu}^^GOtc 2u/im7)1T(- ]u%o>.([OdO|d;YGAЧ#@bITLZ՗={Du@IJ2b,|z8g'˾5ɨF2ރtS)7Mnر"-"rUpD;,Ėg TΕg`T'&$"tԮq7D+Q%dWO{m+PFhYK5d4Ͼy|d 0np̕lڕZ]ol6kehu>{ v"eߝWԪl<nE/ pU+LVqQff0 9!G~i%=.X_@ڧj ~a@cP\T[3n0&ݎRmLxr1bGq/>a4T!jbRR|~[|bmjK=$O-~1AEMkP~LI "x@:KvD&Ϲ%r$/]$(.K B"@;_޽X>COo}Τ7jO-L^k5Bih)͍l|1iiOSQjR`,qW,Xx/GZ#'?`'SA$e 3"۪yfI]<.Xekugʰa;A~Iփ`8?rH~Qc =S$%^eS 3p*iff GҒHg^qﮐ-k|`qMB29 f4/y}o" DwΌ#P7GlouޭK}M71.{+SV]9м{;[X=g|E`_-puA=t).;<(wIl6|3NL0֒D+sf/K.-AIK݊Bp;6]!m6|%+#voYҋiqz#0gFGONkD"j=yNvݨGIأU}efWq1 zZ\ mBv$ۺuWIl?G-d|EVm!b-T77ş0GD>]%=1L{~'j{L8F)H'm>R/= `C+ ꚥr#)M8EG \ݫj}lDɲJxys~w݆W1.%<CM;$ A\r ;&ˌjKa6aޒu 3;{5>}Q[ac;<mq7:ѹ |&*?!AUS0$/\!.c%%teqh.+dJRiМᤅZ|r߇KAf^CUuGJeZ!h'=k2;@;x`lC&qAl)Wbg徲+u`g~lfu.j ōcIqOķ)d sgNcjqe/cZK@\'>Uӟɱ*XD_ QS8(k}_2ٶ'&GCID=Lq:\#e@ -3̏~7P?O뭗C\ }Oׅ{FiduQtG?*E ] n5\=lTBn,2k[nE|r րI쟖BS&Qn7 E wߺPUy-/%;gLC&&[ {dpX%h%;`¢6axm&Nmמ=~uaє`sc|~AE ɲN"i+!G 47&+6N%&GPh̿`jYFKʩM$Ru\Xq9o~Ln.F|S,f~#\"WG+C&zOARK{Q* ` {L.]- __ G~,a}fcg-Rމեk6EzR-K } A{6l|_6 DCg5Dh2-:)7%hW6 o[#jo{Imr~)Z+)! D7{3X qMdyzeʵIs~(O s!yN (L+\cWG3/ÓWypoC*(H-Ef#+29]ҐYDQW},&VB--tV_$W~qfy RPkGw@'=C] >S6Z¢x dn]$C@'[?[TD\s'Z%m-7<93+} Yy AR<Ɛ> ( $Yk|2lIDfg: nga3reя".f0ԅt+=7@`oSbiDM C =ci`D6[W;zB-(#jJ680b9:e{d!IfA_z|`8:d*F#fFa4 ȏos BIJlǥD=e1ԟsITIt; "Fe%O $PsS1_q$,iҮD/ &VCxzm9͖+lle܀ƕ4"aBˎW{fv =E2e,qQ_a}r\a<$X g'j͐.=-"Ŷz`NcLZ=E}J "gNZp_kQk cGpс`ͤ)e+t"I:I])< [)F1875L*.9evCMY75}6zRT 'JA&™e\Au02|s[:S3Pkٶ=c'FQ\vQ=&̶7V=T#^)sO| 2`{9fݏ4bv9üYc34mT^)n4tSJ ;-FI1h(p)vIܬ.ĸ(+Y5)Ll趱MWɬ{ZN2T,|k2I(Tg.g=R Yzܭ+Pj{C:u0%pl+~ùq8uy1?24 Ex ctL4 $dƉWuz3G/VY-:] 2, hkԍyt T[\dR^WV5:7=!T{ A?0V[eI~<4lv} @DezV)|g"sA =S,V\Pa!!2WppZiԸs{i2Xu(@UN8RUR kB$!\\eOѪ2󭹊B[CB3V [{[~b_rg(#*:shd8_&UaVT[t]rP(qlN|]0`v[UHFSz=],[ϰ3g}s(`@xYvD>_}S w"7„xJnM4 !}9ߎ7~a*>_JW w><g۲n~מIp˯rf"j=rUy:M xl34j6k"1Ui7$ kY,cߢa#v]l>dq2 [M#>ƍoaHӰ5Y;EؿSjYD7>FvX.iSBY) ]ʟPCx}ruH-oMm:,v;aV'vZ{_?IM[ԭ.lW%[n4 !,wd[l}h$ WFu:#v|HC[8 ZeAFxlD&S5WN:[3E S4V<ˢiZ598r{'- x;cLjE&Utϐ+t5 ?~)֧ #gX]*x nN0a+q#i;)tufwk6ʨ }c,~ZՕƶB"%~KM1ς ޵g9Xeh0&Դ_vfra`a` ԻBablQ+1|MIE0j͏ ^@V{u7閡Rַdz^1.tF8r'!%h<7O-Ѳlb))`|:^Cr͡O4^eQ8a_}xi\klC*L Nmi{Z9JTBHtnŇѯa5Kq@wq]YUB1Gt0DFh_][uZ]t ,@Zɣm]W >ueIG@qzMǬH'(@:JI38ƸXz < m/lzD5<['̤`3ۊ #_\ܽMN6ju#a$;/N妱Ԍ BL{3 !5>~)@I/h9.|~ހWџDU$ӜQP =Jo7Uߟg[Vp>F۹jlYHQDCgTo7ܶK#-%~Rw$~ӿ/BF.7/KW,qn *d%.lx M[8-CΕC0; hrg2{3AD-P; FC")~(!h.N#B(}M.UiK&gM&hr UK߄uz'l*RsxH+#?~/[:bHX?"Z"!x=1o$fUsEe kNz SjgZ @ϷcdE^tB7z厒l)ИM79 j"t$1aƯ\FeFInԙת( GtKhdkDl\[bk&*Xw%?7@Ʃ;6^"3qJϰ`:\w27`jJV D\E훔O({MIT o+ޫZS.1 SJ@?<ᎶbIt_$C3*'TX='ڶ 5)hv:V0#UO|GK #eHn$o>#肅iRMZx 0^B"e]>y:w:ӣ2JyF'GQ@" oTWNqum1_^Jط}!;S4k[u~*t=B&#i4O"QuP醍CC&ީ=2׀:: ]l.Vp]FP[09 흍B_V8Q f|gM<ﻙ5Uƾ%+ϟOSYMpÚ 2kf$$(eFAG!?D0̶eȘ@Ge_mvaxfJ?]?sgjs3ЯkuK~W3uZ'As~f%q 1/՞SȅӷnXEi n3MҔ퇵gTXgX3|$E4]y='!l*(q9nz}0Hl4)pMFb2xG^#Ɠ׻ K I`>k>c'WĆڞtg !n3P-&z8w?P:S#V,)ZSɷ4 ɎB;1^]J*%SrJfavQ i;TJ?zے 3Fzpiq>_wVT,(zzܗb߯;arI~3W)J5/Q@67|NڛuovoRǻin~_]bر'٣ENz~э lK%5 VT x~[.`!Q`m?gV@ׁG^B -d/]P!ླྀu_y 'Ag^50i PAg\PwSRONR}6e0Voi ǤӥiKk@•=*Ѹn̨ ?|Zr2+b S8=Y<^w.`!YՌ© r &fkC ծLk{IǬ?IkU]-X}7ױ,Gzٟ[214[u|8@֘ eTVՈv7P1ÂwGx .!/3ZqC4춇w.|޹y_Ҳ=!@J*RUG ٢K؆<6`y:k )B\7L"ʄd`_j/@V8\$ klM>+T'u1"-f\ԔQdz,Z c7 ?L'C>5Q8NAJJ1ZC(ŒBvs*zܕqo,9DJ 4BARh7XZs"|i+-#b> L9S3s M3#ZG>VH@klY < 4zpFn,Qx4 E?'.2JS3g{Ό9JU~T>8{[σkcer{e[Fb'2*zAƕg&,}.~K["z XQeI%ek3ط/!7;>0@%b`5] ?| In! |V{%(u}]nяUvewW.>$(l3j^_3abʅiac~4T/aakoӧX`"jפomdgTR@WvM(+PbgC)od㌘{HS:}ͬӊ-9_wytriuШ5!X@ chz2$mS生]FpS4XԍˡRL~zy"ͯqwn]" )F[ osq. gO~ǟbz9nyDѫlx:Er/3( 6#e4#q:%%W㨖fk| E갧+TLAף֎MR Ӳl6 I1^ģPw^RNR)`X.=^u{  p'k1jڣTEFkѰ\xE)1Iݧ.~ ՚e=9-$0uI{k飿?W~= 36N.9@9o-T;ZA#v_ 9l$fHSzX4\WGlAJEiIi33CK>sB|BITM5I>_,8 Έ0*z&17qqt)IR{=yrэ$mPf1a>쓣"` αu#N1fJڣϟB6 acו8ȥ/ukfyMƪjXď-XpdbWӸoXxj 2A 7ElJ H-3s!|=(c{ec,/PApynȢXEΟ=C G#Y_RpbNljgWq fv ;i)>AaD8[l\? '"q>姡G# e?7>&9 gXW)5ZO@hAl8 Tŕ7|f݀ (F)-HnpsfTe"I-bsLB S 91H&qy.^g}+?Д]uHA9/"8Eu95["%ݮëI~,nZèL:,E W{M<P"T B^sV@< \ )sr U7pQ`S.Ay_.Z- S v{:RBI?R8~fPD(Dx#ô 3Tӗ}%SIIV,wKQH"iPSk<)M hTQ!m6)ɭo w#Uܰ/eM+&X0OR'a5P%R ÞSo?TV,@تu毨)JPEaHh!A d,6UAۆ L50ڟ/ʫslltm 5_Dj[Ojnp)8;DkX!&f֪yU"xqwVb/d1 g5S*3ι'1>e۰G窶.JVBzsqॽ9SN-#.|>h'ZR~1*:L@5lstң )_@jt/3&e'=ܘԈ0xسgA嘜:tG1&+zhz"=6Tf)C{Pd>X4D]l%"uI4py9ˠ\y*CD?1|Df\'g\)кVX^"?N` ;F_2R'X MUO_{vjxZ@. ةu5@DZ=sx#n`5Vη9,Z@$ȄCsl6HL쿡Cf-^-ޭy{Mv1j`Kq >~ A:= g؊ר(PC\3js:V^ 4+> xwC*fZU\ɜpӦڶ(X X@{j=iPR'Lщ&CLWgƦwz-I;* @e>EnrY[%1L;a5^TYoZ<_4}'e6Q^Nef@5QEWJvE~K9iycڹ+I0ON~`AftHbW1.]9L;pmӐOxX. bd`h %U"3,8/R#NaA\rZS?D_՞gcXDتqXR3qj FA@M !c_ V[<%LCv=y7A={F{uecM5alg ޹|SS`ɼRx{* `| WCE۞Qgl?<5FNܪ>Ksw!"EIB`v^)dzRl6rFO59a],i V^v}S^\t~Ah$̜itse5^d8HoO̟C +fj&ecUxM%V`i[Ly(TM,/@$޷w,ǁGv W"U=J&]윒 ҏZ 'AyMZAQ-lʋq1/DߺaC9P5-DKrѯ -gIv4u;@ +s `>O,3~4ȧVwPx> ' _)}.F@ ؼ{y}"~-_oznecNZcZ~ Lo㜕:-g .2۠YUH- Ђ }5gFai'ݑto%>GTm6,|V1QE5p!(FE١Rd CWu-AEߗ-)$Hu/6mKq+=~P::.0 {$y8mXD+F,TrAͮJv=K\ ]u]]ey,B/k=|$_Ѽ r28pV]`l .c rA9MrQlyam2i瑦dkkr&ZWIȺܩe~>0f04FP$҈|]dv;Guz ;SMOEO;Tp43܃#ib2 1*x1ܑ}A:pO^sh^[!!A*W1G.gO\OY ^CvLݎK>\t $RWoɱd(Q hK KX sAb2@VV4/^jX@e Jn,G;2Dw("H#Ľ^h$ΘZCQ?L'( (6 KDIcқbc2d^UE700?fyg[Ҷ2|ڲms/`2R~0;"r)G`ƋW9 7ԫt :!6OU0ss@ci}.QS1cޡȕf* Z&J)uk|猯Rmž)ڙSQvעm .f~ȶ -GG,\z􌷞 LK`ndh`7F1ןIM tӗzÈ q#ǩ M../9I9c+=5o# ucwԬjhD\2-"QxmE %.a=#XF 1Z,Leks~?r Kak7788oU9^2tPmF Rͨ C|/osWE/IA>k ;&7 2tdIE(h!fwp`Hm*֗UPTZfZFI~ջOl!Ejb)nGCBG)p׳hSh"DB݀>ig=cf3 E^M9uuPÆ$rnwf|@zV C%%k׼zmRx}M-)J,47 v_h'n8^AL2xE|Z^tli\[v#Fv9l˚:WDŎkJk#~r:l/>VZd2 ?0`s7tu?>IB9=y,LqU6XYa4RN!PӔm>V ԞO'%F. ?rz|C^s)ITAQ6aeځ~HyP$r)".Cn$VHWuF {a?(Lkfʶx,L!(w@L@/ L+qzd=fD}sw8yh|FzMKFo6+ip_`p|͐(qײ]s]-Zn2br͵~,K$ ")?$qmǞ\O0j@05+}_ 4i\y׾!eC^]yzI(lā=ή*uz [tH84)nv5JYƞgD,: 8Xo1-k ԩʱ! `Oɩ{q,vkJ I4Ms 4{*o!ƒF" ձ _3\]̾E{u[5Pl*L@v+~"Yxrs !d |ssFGlЗ B6Ccy%\\g:{+\>b/j;)_/HVxLaS td?Jm{XZZ#7U/|DECp S-қԤ Gx|YeoMh`1&R0m|25Ac126ǥM:x.w?g] H#k ̻>h3=och;:O2P铷;+PjEViÏޤ"7 @ (Ԩg7Ĩm}Gd*E)('a #PM_mXLA9}|9l6%V9G }U Gl~ UPIZJ7V w`e7CHX_]8Ifk3 q*%*H J w,.B͵kӴ:H颌=َ=s<%ܧo%gOILgRW_$ v!ܽ7,zJ/q.U'S S+%' y* _3 (9-F.16shPi\rFߑGoĉIT 2Ba+r^-\o6!2(𗴱/N&r{$6>7,!}N Rg$eb*pĠKm9XIؽ#Pܩ%LGxu􂪐ˏ8Ӯ RᎧ5~%*lN%9i0 Y3U1z0"މ?up8AZlПk`,W$L΄i3Xóa=5@&}|}R"qcR^+@)b5H?b /DL[9֓0w@fW u/ u!! ,yGpOӵ[DS2,coMQɟ& "qíf"kd^:p.qn>2ݮń92ouҟ*7k vS>,qg)- -M0knl x9syK(Gmf3a/}5]5ۋ tM:.p90v0EKƅa`Cl^J<%iC'9['c\TЕ !8Toh{,;bo2Mi`:RIQeEZ Q@,ӌ3S@+,D1B!KSX+PLOh0_P-9* aX/ЍBi;?׈7j> A@MY~z cs) C_gق.Fx{iG6-Kk.RǠсŘ50)x˻(A)9vBJ1pnc`;^02) 1^CZvX#%/暌C0툢Twv+ȳgڽH ۵5:KF#C240s& :]B-:(^]AoQs_#^_l`c1U2 V(RFlZ Ua\HthX+H| '7:⯗TƇld\~wJuȔ{P6~![JC{\oNODE3+WC\N>zHu?]}\P9$GS_9:66tiP<צj_K`!V-ө)tr Xh9gq sVݹBٽF64 @}'I!sB%2:&=l?hw~OF/>W4'  kV&X;loU[Oafbyb;*W_6%J%ooqt*fZh6mgXZXU-\t\3JeozR9ȵq!י2p! ၠ$U._h~+y/,~Kș.tU盒 PGBU90dy;>E}s43TZyXo-2]z"ubQen%27Ĵ}?f`}!:I\i"ojw5U.2F71n^ fİcO %P賜kn&Py|'LMP|Sxl)Pʸ0V86^ބ1w*rrG}KM|#TݠLOQ:8h "S=D5F:sŴF푖nQMz=u{s} *kZLrUh0כO6:p] q]WZa>6iUCo=<'..AIx8ΐD`yˆB?R|BC&^¶żQ0@3g o5]9%O}vn۬=xk,nʶfPObն:ՖgtRsnutD^A8Ҏ fj\4cCk?ʞ_kVGkѳp"'KcN-OYl/JgW'W!w,)瓭_JWu<"2@!:|tIH(TRA2$?5r9>꩗ ya?խXG;zN '2='P/QaL0&}[ף=+W{:Ô-9:Y <t#E&;] 7hTUKXOqijzwdC%Yɳ%℔]=Un}]QA-cʟJ5{Ɣ(›$7ut=:ODDP1Z[]|!#yz1BJfX\3|k@޷6 ߬]%@'#=n1 K}?ef/Õ1dd㾽&ZA>֍+>GCg6a[UZNT+ιZz|^׮\0.g3+@$ HXo͍ #]p15.j:?APmMh}\TdЇAV>,,1R栄!~G*- 1ܘ4/]@iHB2`2).0 _?)^`Xz zėn؀c}IelI@7#(]g9T@D\ Y_f!t5r(iKNC_f԰Jn(/P>QV9zYDOQ9G <8BG%XN[mTۀ/-FaK]6;a:A;8]+I-ϿM-C✶W!o<4}kѸW:QJ$vm<*@lU\<ۃFZӛjL>WmERWM vv+T>m8$dDEw„okkfS)OJYyB=]FkKز=Є՜CBӭk؜?*xKEL: &M\݊lb#s|?"L' Aѫ];4zͩC8f6g~71Ħ/-hDQB!RpH)%( ?EPw/ J"#I4GY 6^t /F᚝G"-8JL" &3}z5_g|MGX-J,H9a>颥 ]]~k)Y0qmd|-90\q&0Nbʨ_j{0+Ի5-91BqjeX'sX_ުη +ŭn269B931nq[;hB1 bu`8CYySR׬ߡX=Lj-V̸*Tkf!$艌dSiP !"B^pDr?̓h=|rvL=濬(W+et@HlyCzؗ(Ai ElgWy/nrm5.vgch, ThhtidLԑm2QXnXٜ_@cV+ T6{`@ka)\^Sbe@Uߘd𦯘UWIQ,_h~'_ OU ͶHf3\@59ẗ[Js(WWmsJqr>p´k(#Eu^!a&Ijeپ&;pvʣ$Nb:$yj}Fn"):}nr$WðL9 @,7ohX#gRw` ?ꪧ{>rUt)L ct=a.Cs#`T`W'm^rw*>ҫG|Ȓگm.=BF%#7pu4ޙe#]vtVx ԴRD0{ٶQMP=&2K{Njat`瑒7&:nc̩>pXJT$SE<CnW۶d@\UYSn@Dӫ5 d\=ut`魋_"௴:zOaQV1$G# N !zJm }&~þv/+<*\`ʳ昣<+/P[}; i?[b"܄K#-ә2"EcE ewKy'Ǥ~Bݦ0w=da8\_B@-ysq?곣2yhtWq&["o *&D֢w6p+ޔBxlDlHduhR&2=ENأldc j\/FM88Jbot#{d"Y٣RŜ? 7%B݀; |pQE{gx?Wwgi1"dK\, AiaB6Lw8",fcx R/6yt)|?@+=+td1qp6[^tqeUڠ, zօҳ@IXFVۖi4Ԯ[gzz&1=ԵÔ$(߅d"9{*yYZJta!~:wR3dr'!d1,hɮp "v7/xa`塆:QY*ԠMZ$_%;W>X4G!o\."@CkFzq~GJc18m? Pvh%LZx³ZƥN^ v22%J+'oq!tC,/^,> ZahOq?~=[+g !>']N~aY#"@(M/P CL"f{ IR)τ.a]t>Xzw֣P%W]= _}tj@E/6L`9mB"LӫpUM/؏M" n~mT"-I{MB*[-.5'v nZUdΜJYaYy_u:wTL:#Zך WRKǬ"`tȭ@3N(z?z{NNz'NEoM̨Hkd& q-*\]Ose^n~wkh&j3o+,EXBQך4|Ѵ`nCn㵈ݵ֐<~K}yH0 Xi*':nܥ)$ώjtJZqevu"~X؏ ?VP!`މ.`沘? y1VJ7',alkyۆ85؆Y1ff҇t >H|NR oAѡp'dβ,<_SDzɦPn&;ٺ]k#l\jFӈ*buGᄌ@u=N~bU;4Nbr~4KOꅀQ\gw60],W̉tIUP:k雩y`7H]l&FO$h ⡽4gܢYl6wT_"=x %lFUWXQGS*#f7`t4}B4#97{5Q^ q>Ofdgl8`FUWKJPfИ62raEsz߼6S.X8~! .AAS׵rDR%RCR5@7|Y;U ,^$4E4} lʗ9S_/2=0SV]ЉJƌz[>Y6)LojFd ՘-"? H ykR q%ahL]~ZznTsdgV.)孰ԛ ,居WԶl(8[W;LBR9E}`CrrB6oFsb)2~S8'S'i!?تfJAYhhcXm\ ##Zm]%YO6}b W.p{$Y 1ʣ9m!jTwo/3Dj(ͅXOSWtu3o͒ˮ`v?~,4y8~yYnUlNzS"+9";FL0l_._Rg9^0,nrʺ8B ei H_e$Kf*0fהCc{o6YM EGۜN ȤP?V5twv'QPۓmJA!2ŴyH!0^O}n"4s.d9B wy>ca'3 -F +_gwn=A!e9dTp I:Zm!{ѻCui%O9lϳ7%s~wnT`泥 Q|vF&K?1яV70[Rbv:D}گ$d2Vɜ;[Z0GAUKEū,< NiѵT|\[S4L 3k*iv95Pl.J\8ۣ[2B &/'-/yjYT)` O ΍ۋF,iM PFtTh vN#Q5 {fЋ\'aUlq"v滞\`d3~Q#|\E a*8QGQ2G[}r ~3̬C:W [ej L did%@\eCdc\Yi!- Rop@aDw>oH s 厯^AVbPU+%CpswZO6=Fh)dB.-4u+=7ZS<>8*_K`g6:vHk:P3Jy8}LYt c3؞>s`:_1H*_\!qOw7s$?qlIl#,zP'ЃK" #&ϡ<:Wywvۘ鉌,RfR=ȁBÈVR!K $H|6bl2ܳY/V]U*D X$Ǿz˒E!LTY΀\IZ5`+}{qOgtjx;}Z,`D>QiӠH/W3tt)שT,SOP ߷\D6-"tQ%+Mxs~{u5DŘf `BQV$ם{ye\ kт=יedkItb2]~?,A&}6Ƶ!XJY%Y.ٲDC]Hrj4>1mQ:H#^F4*(Uq 7%r;oԌWY,OZ/ qg|TڍC p{I~+RXs.򟋱;[8ڤ˘qNrr I:зzZИÎ^޵?PdB\$LZ1B:CLEiY5ő\nRt!{܁h˖goYk}\G>C$nry ln@CA2oSp6ڕT %+:I KjBSJXt/)xښ(P'IǺ~KCɪEaQF r}su'FkɀE!7:=gRX+D﫫%+u /W%;odc+|I@\>V7i4fQ{&dO_,_ۺi4oj<73sr@M8ZN&g϶Q 츻AV#>K3LZ 8b?iUZJȄZ`F/L.^|U^y|@>P$J/uaˣwʴ r3>mOG%$bxyo ߪn|rikiL/aI= % NzFHEl1@ym JSNY$Ѽ6+[Pn//`s\UTEP'#H֣ O4H{dUB: :jw pvx7OਂewqjN(nQo>I@l? ?xp ϦP~c3,Md s2v;/XE֗?ユY :lnž+6g5vjNr.n} !#p77NuxZKˠBYuCfƠ,:6i%'?;aZ3kVx\5Q3S(ZǠ^aCZimÞw6${و܃ +yg!SpAcR U[9fqrx`l0~J}PnkXRnɻ虫5.fA{[ ǁ*ʴ2.| GתSE}|kVy9'<.igDMHS|ěJ^ܑؗffܝۋm6ٱGeg,:'pG=2hb?L]1XJ0 p-LJ>[|0ރ`7;6`2,vfp "&o2|'xl6wZ[,kwǍ74[!zm +FcծgښBŋbꦎl4~^bF>b j#$j mqh$p{D߸3%-ţ2w{)xu~ iּ:?Ye+{bS])glL$R\6aez[rxlʟ);]u(mO.P: oHz|K6i:)Æ~wa`UУb-qnC+8r%ld3d$Ӊ.$*(kpfw!Mƾ p՞ZP Bx~0 +S̩c \-Y(tI,Ш>(gOS 3N!QɽӚoc$=a (~BH.(u;4Y؝cqß E ũ쎽M< Ю-^/՗ wK^ S:޽HNhlZ%I0GxRCs1R'OfGQ-]$Z_l0&@w<, lf}C3S>}. ];/Srz7.&ٝVS=.gAW83a4i >іh\8gvBbҳlb:se !MD5d 58gIHvg.` TvN4pzԌLIݯvdzX"BeX#R/~RZ١G-D%FB%5a&֑7Pc֑?0N$+jt9A]-ZG#m`9@\f,3LUi.=Ԉ-Xxu9>a (.nnJ5{\ Df 6y6O 1[ݱk[Y _bm& x)? n+@/\ěN(}g@;#c&[M &0$7aRy8{`vD?sk0) X|xIq1ܯߒ0A=nE8"tTDrhH ž|&Er;`F7ʵ.)7BzNo;:_ _qDأ)3'"ȹXX=M ,y" ]~wδŐuZ(/)+^}ne#m!Qy[bRwѦlMfII?͸.!@z EXXޢՃsȾll<3O+&B;W1$ fPY BhwڀH2)HbDN (|iuqFSnzRkCB!x!  f݆ H2SPuj m Q,M Pg[>}EvY_\;=g c%ٻƇFiCua1C-3ÌN;"aR&.y:}fZ]W!9d8pr_sq6e=^c{?WOof+^X3d{B_zONr4?0̥KM+r[eNKҾ-=\RАڨm*O~&88t95+]5XZWK*Y6{7a(C]Jd6hk*ss~pyJxy\/uvQ Q 1b h+ܱ|_oW"S'UӾׄy[oB2qm=j.6G$O& @=HE=YІTPN31x}Ex:\X(c}j]gʁ/oFת9┠Tl  k?]J#>tG_ miLXEeT ɶ6DAqkuj)QQXgujo<TOoGx,Thp{nbH|<٦~hSZWp[a,V}5~j!=h2Z|PZnAaݖ-QЀYT@wF a9!̈e3Zn<̾Ej64jVoAYG$F6euk/7c˻>sv6J{6ƪ#$.Tq0oOhҡ> o1x ]_1引Y T8n&b-pnύOn UQ0'Pp!ɳ(!n1sXs~xUKH^`}5w 9Q"oWnָx;ȯ^vPMӛz6W8{]-?k'dWi}|3oU"p=ɭ#k\u+p֮4xy.Ms6+J&p1-OT*ǕFt ,aVsiZz\kR*~c[̀*T#Q!.R!+@fH9a'_8_Rp,G:}Xp?3?S&Zضβk[32PROYBq3*~|vm|ndH2ܾ1>wQqdք]{rQ/]Oɚf*U7OMwTtYP&uRǪb>v`EFpSrG~\A ye!a(Y068ə ۹q yb ZB"rPA@e~41z%k+]AI,z$P'5IAd/xqeBpg,ߣ'NZq _NXuTyun F{c6W ؾDԖzC-" /IaeeR$}_iHws51JOoֺL}ۆ"jF23eoy5!#;_c'RfǬjd6+ꙦJc$b䕷vQ_rF؀)/e6w,Io!w]ǞŲ@rVbح=(tE]2o;m(4Pղ3"eR{\Ea@ƶ_Fc>m(Ӿ32I1G:ݍ:"uyT}Mcn|J8JU#!AZn#9ֈŖNxwh=STx3\Ho q%p]ɸB J9G֦%7: X^hureQ)v0RoÇ\]QA4xb7ؿj-]A㻔C𚒙+Z^$f`1.HKQEDIL<=W@.ytBz/Z9C-xMXI׌(7&sk4 p4UhM\ydeκOیؤ܇GZy+q,jkR0nnG&~ڇ;r0ҕ]yWmw?'}9x Y(L1_oE2Sc5b2lZ1_ L] ,Xwў[LC\x\<A:ctcL PdQR6IM41::AYN"^^ȓL]5;@kʘ:WlNb-f:9 a7G݇0??Fb``1+,oʼn7gQQD5OfrH;jƴlaboz$,\KrΗ7 b}a'Ўagm?.٥V| ՞¸0(sqŜlYV:m 3N"^v2IAnVdu#&xȩE zG ]z0s|m_0l-#2%׍icPh횉Ѻ|$s>3M{[K` 36 -DПvOr,5vAT >U`Uf{l)5Ip=&rnu㈧ٽIq+å$e Hffʻ*0\!%9|Mj'+ASفUat7#"zYKv?a4˷]"\y y$4(@2|)pzHV K^j2CzHeu"zjAwJbݽ@nˌ_w[,#4xH$*jHݱKsX".25{t>ڽ}]xšY8\ >VFp*խ@|H([ZeAF=(XM}"$*J:[BNW;mk/%Կh 8Oܭw$Ѡ%%$<~nN:=R%SRvi7ɢYj{.Og@y>?lE0}aoͲ;NaLO8T]^9 vdĂ6Q>u^GS3HԂ3^0xW{,%YWf@\ :g\<&'fbMͯfqoIM\·Sm*W]{4:=Lj՗SX*5ם?jWߣCUȺ\GD;wk\9FW%ch}s{נEiwx[Z'ƒ24pQ4k2!` sQRFDB箁+] '(jv5q3 {;QKvGS;=^T[4W$FYz]T&+ao~9H8WrpGx XbVĒv^#$~ljUG%dK$_er ['ވ#A| ͱݦzdmܜ 9%i"7bq,U ˝$qa~lXsBPZ j g AV↾f<]'!𰜫 &)EkH{ 2,gET{y/ɛKS]7>8S`++|- d^넩< 9YvE&,'(rIZ:ZEDٶyñҕM9DSe#4 ʟ;>2Cijϰ" zi!EbTBYq.m~SOIZx|Ms>Ui)FC Az%-xd՘q\LaEGnA:Q`c̖Yg(AS^X?VACX%jXPѯׄ04jnγf~1UIo}l"RF&wCxTa6&&=9R1L "PFU?y6܍XmKH,¸ TrCMƩd z:Yl`9ȀԺ^p7Rf&@׿1ն+ /7VאuG\7.] (k w;SdF~Ħ@4vǻ֧dk+-r,65 vW~ے_4$"[XbLd1u_蓄Ǖfʕ]s݀ (Ɯ lC_&т}1Ocj?h5¶JQFխ$$Sp FGs-4r['ߊ,m TT;O!lOuq2cpޢ+4*cϷA32s("]ۦۓQbB X+ 6;V'AZi֏UػU!Y&r@5&Ԗ͑5"@{uRrww+M28E_s. c+V3CXpmFrquɞvbqӔVWB7Y  $nrH<ɄmKa3Ы޻A܈ڰ 5-l˅5j+F΀|P3;>VGٷAo @(-V}bb[ }7#?[/" 7$ HP[J # sq#*UoO_T7uXRVOs^r(J ;qS,$lJXxUQ (tAT0R5-AkJ3{M#GS7/~yr6`<*]jQS뽆KqeHj4Ap8ϮtDbkT8&SӦ.d KC{٪, :-Cݹt2K zm#x$o|NJӞ+A^i(7:Vk(ȍ+] ]j\ӥ]Zd^{ *1Wl`Jq {!B~xy߅T89Dk^IPq38xk9)[KK^ro+$9"!%u_ZHQaızKN%gd,k )9&U[Sz7I̟)w[ |D}Cc+wߣYq\ MąTpEfvXQ19Fߎ0~xkju>Wy`n`qOJP7Cyu3JmWQ(sI*^첪N)m3Xw=EqGB[wG`9rij]21:`GSATxA ǥy2~۞ qUF%T*r*?7u#CfyըP$3 PUwib"humCe⛕*3@c^:[6wDŽ1dEV?Q,eX^mr5Vqyb&dd1?ns5&Z1降: 5;vVMK-}}vt8h6"&qM#b9}d; Q8ogmU͸r)>.՜ Ѐ;hЋHe_sWD(64+iAL[ ,!ok[֯p*+(>lr#[Iow5t'XLLϒ4/J*G탭Dи 6DLrA7#}W7ƍjcQu^DF*VT /:S=[rv'6#=ѡ\G~${Ut4P3 rZv)Pd#B4y#HP>^-J 6L\icUUHXd;_e(ָMEz7(ZChq?!ό0ٜJ}|\[D%"Tz-HaH>*Jcu%#}[}"چVDNCwL Ng¡L燂!BaMrD 3y U\]ClVo9.^sQV` *̹M,pYl0 W?Y heO\%Tt{3fK.vb.+MS;ew!o~L* :/Q  JNp4sEĉYV>ZʬwvYSq .1l dLZ/soWAO JRJW1\p{:4.59KV%o~!\oE5G,uּi.cRh!(?^Bgb& .< *i9MI-CER-⠳ZwI iMUA,寰hKA[Ԯ]+ mV{)2p$1ٷCfwV!ߋ9R::)pB ?w%Ό|%v05~xBlIxq|fHBmHgF P{{EP"|#K#6o5cSD~R0SS ٭Spqv~vNt~m:eAZ*, ª\Y啳ZQyh-8 2)QlYf $~O_+hj/jXעpeUlyFf[%[F=e/5% ja'M|Wr:=On师R[i0GyAИܸҌB{:tdߦ n{qetop6;󋣗rUMDMnAL a3WSg͊^+j6LR=iRIݪ=Yp$Hi%U]~yJfyEh)T^7!_(aিQU+XKBTFQx4mw(QLH%#u HJdlZtK}S`ŒQi5Y62/s =b^B?XѥN(Kʞee5ojZpX)BS`sskmF8 ˜E%xgUpn~|ΓhnкgS)q2:<WQK,5%Dw<^TOB@qlMA  $Qi@r<)+t sO} pv>3ɋ97ؽNm47mG$x)S$KB67=g \k%_#M9?.@cYmTI bwdt9qXz>ܶs]IYDx|>T1J "y. UP{o&og- 4>1Ş-G]e++aȢՕ<1f=f bo6ҋM֏Zጧ7rI<&xDoHوE;àG˧W0#8u v{` ۅLÑb/ȢΘé;8>5va~  ,M۲0Dɟӷpzf8\.4KZ@VGҥie2pPbz3{Ob$OVY\eXpm< 1Au [Hp ƼB~~QbYIXMiw6U>r/,QfM+xZ.l0jNf|7J$?̘sM>ZYބzJAE{IH!AҬ͌'wągv mw`^Ѱ#cquA )(W]Ӏ@E*SnWB!݌;Ƙy 3cetȥF}'YӨXZ#Q30q%oo9ޏ iW@pv4KmTh IBj&2o@hz hRcx-׸JIhgxam{elSn'/\B"U5k{o!'ʼۚgfz32yo:jN;uf d6ZűȎՒ!ZQ>S޲b:rJT^ㅞIV: :M"8hMr)I{%Ekibhğ 3v^?4L؄6nUe`%>*IU ktW;|@_29[L%ni*| W-˷lİD K.>2/N1쒃hZCEߏF<bYW,VV?P@za Bus`dA/< ,.֞ΔFH3D@<\ޝkm0T̛WN~pjnAOČѿf U*hȽ)dx|msVT`FakC_hB\?SMm:QeЕH&53`]W [>'L% ;'9n>6}r jWSo/irIL \V c?_;;hA̘lOpBҰ%Zs.5l`uOB/D>PlV 3F{XM1HVXeP0X2v11zrB"'Gj+<&ן6?;QpUtG왢v?a/J$/ȨP0'MVb39\hW)r,DBy/@1dM?uz)ǡ># ;-/&#\)]̀.o'&Ϝ-}r`d(B#:KNRvָxI-1:BPrgj灏:vM$36Oô$xυP:\F䮘 Fjh&bolʼKtf2 /Mc&1IùTp Tz |_Q?pf]ɣyϥ$?dkG-z՞S `O߶=rצH~M|+7˚L >(Jd*޷7$NԤ"i3)rja?~/"`OjfrizJR$U 8ʚ˜wLAV0_(UE6]KkJu<;w9CIFZBWP4DM_Qq +#0F\N 3 *,_Ls) hEP5䠊Go+tʋ\D3L+ "WGiy8z=$lbl(g"W` 4|a^RJ],֨ ζ14W 2 ]gÂMXTfzAdCl6apGq1((zxKؘ!R< lwQ`ўm$w̆8l_EC^~A=K/z,߻؉9ǥ@"0H//_G6n(`#]J"Őxg9/%}x{"Xڄ&[6[" <+@zlCQ )0%҈lҔFͩPf*>4;X(6l5běz-T[($.V8 + :LF:lè* =! Y5͆oGN&ny8>S$ٯF׻C a (R'_gC) ڭ܈s*_ pǏo{OYguNDIawgΰ] -*$p&(#%]g'9ĢDaljUD~GѸgO },Y T-cN\_!#p쎡{0ކ8ǴQ:1z띲3$襻賂$-~8ER2q8QB[ⶌMMiM6 `EbU 5R{ @&dU7G*[U(T:pvF(/%>̩d}iF>dtXtR;%:S=^<ڐR+߭2]K"Oz y*Wky.%q cX?67 4|N `drɰʩgLAs|q̻@b.KFKPwUTL1 Crm7lz mZ0O`g.z4hh'ួT޿Yp`0TKJMzd[BWnygx")f7;CX~xu`/\AjKkZkg6i%i?4zCV:O?Lī/23vHm 8=^㚊kn:@wT k9('jDŽ h!eV (⮣43:vAI"=ЊN>R~P,QZ7HSS}`PHhӾ!Η|W÷|_76|.4PSJ BXkC -kW|Wrm'x,H 2lLf/2iNTIZ(NG Lk <'r;`pǃW1-vv|T/2ҐBONMY`8k,ZIjVas͍6r 1z'Tbtʮa^}1cJ%H9E`.,.YfоnúpGAgzB*`4&:R]kTx]iHc#y TY־i*B|$x{{YoĮR xf{R\83]d<*qo[@QNNpmt8xo?=9m{VL?!~9lc-Q{Bu@LWW A*zy@QȧMd711ZT["{Ե)cW(*]H0ĢzQtk9Be#J |{߭m,Ҷ2^D^N(h=cԉm vr7Nn{Ncpr9+@cjPRZBL߱00}c|cJSoS 5t@S 3 5ZH4nb !9;h#M6,.'<~xt]#&4q?ea`\JJI0B3%z FU&.ȜogkLػ $)P{<ԇAԩ1U/@8#\s}PWxI)Vnm͌vy"pIB`:D i1o*ذȠ%k(ṉ,9 shg0Ģ/4U2CܵN!\_g/d?tp/W@D9\[Pا@8G1~5#CbZb y˛EEgağ?t{b'}I Nq\ 8+*'w9ɧBOBȐIRnwCbNNTԛsԿ\j-}Pʋ>K;^qKτ&Ze3P.F*\kܕl&䡜B9|ug [T~v3֥4W{CrfJq 8>hO hADn9Э9MK=Iod(U4 롬gYGςeh܌ OlQ9 up":ޖ4D7d.5-oQӱ0:tܶICgPbeMBcםja~=?h#<îBjQ¿tLv ʑ0l)EA`S}owV/-`=~,XuTFQ[( ]KpHqC蟇7(FԪ3m;Pnp")e̲yKhOs1^#ST%l@lѕxlMtyJ[*/FE%]ŽgEP{&踚á][ :X[y f-S?ZbǕ_FF/\ qO9Ң@#j(8W%X);I%\,v r;Y+à/b'Di0 r{)NR&8|#~3p7sVjJ-D̀blL9/ Y8W~?vC23) ,h7bBowexDڡ0-F5a#f{6Ie&i /cK , ⬭2ѿr=HN-JvԖmfG"iPJ?R#KhtHWuI{W 1By&L! Fz&KL.Je\Y'$3/8J}ݹئZ|MiZ='JQ@_ gM`MKՑ=K+ד0U@<AOF. F+x[oqxv ,GB*<`-JOz]k ~dCJaJ+aml \I/D͘IȾ/X(Tt i? {̈́%^B6[n9vur=yˆx#LRd)k@%۳n?S(<^CP'nxDXfATCq]OAv !;lWi= 3(y_[|cjR\y :_1jy/q oBFުn#L)'#咁v991OUʓV}^eJmxڄj^ XS9o"^i5N'qudiWx'RX9_%¯A= IяAi.QD;襖8*EtU_D8W[ل^SXw Xq&i;_n4a@Ojۼ),E<ҙ ;RKT-&Ќ=SHnd!z} _c _hډ4nb=ї !zC"̈Mu03I ;Sa1ۇ:8INN!wMSQpJ:cc:Ae9fTJ-{w}6Kk5pHDqLZQ2uU|7xi1ɾ3=)<.f` yM]Y>tq>/qZ9q0~luhq [W6eD+)(3/tj"$x\C s}duR9;(,P&t#678>%])4{5fʄ76b+ *JqS°:ЈxeSh<2osH7qM=:4lc] Bx9'WsQ=HU8[Y#@_b-Sy(7nTZV l;/X & a?e:O\CQj7.zEG`6ަ!ȵ=n"1kf`YxFCu(ןsكlvv*zbBihqĘ1L&7DFc~$v.è6$%l֋ks!}&-Cķ$^t VWLYsekl,S-qZ85m ;;*I= 9Y">HDs )*8L霿}! ˛?r7eOHXv(-·pw&kf!m)"sN6[H?y[SaCw>*Eg2ĴeSI]V73@cHj$k A^ZCbN㚹"8=fK]#_ VFgF Z!;aˮwnZ)֭|p}Y`AjU+=Pc+|1Xv O vɢ RI'?/EH h/y2#Z3fs xŹ?&2jI6)}g*}'Q+l8x|Q!amMbݷwg4g=DN6>VN4/p$+:Q]ӬzGD,Go?]B0Kٽd9ADH77mޕ6\s62M/cV'> -kO ( LՌ OJtqE')$ O[<7,qt([Z>3Z?(M%Q?g8iąRK z?JŒ .Ih&v,l{GԇwQW>e'QIޝ&M(Qj+sJ0tj¹Ypnj(Z'1[n6*OɢНG/~߄N6\%񠫞ewL q} $!)O]Fq4C/ L@?rBsdZA]T=mCP8kТnn=bCre{k-(9:Ѧ.ಝCy 3U‘>{$$]8 6,`u,"q=ײ2*){ZF g>㛺~H;>f>:mpIu )xhkf+NDʐ3Õ(N۪@1%:bltGgg$@=Π6b9R7{K*Z.QCFBN- Zd7ګ?7xifubdB$Hi䩴U年+!'f%xLm@Htds^ AU}SC=:UDՑ)$q2 gLޯl*Xo=KEV A37AZaGC)>,BuT^"\IIՑHeyμW(+?4)hUQDG x$f˸Srߛү y!#8gSL.=G#p8 -]ktG8TQKj"y6.K!{J/`>s3`'}$#Ʉv똹h+TFeY%X(-7ȏ0?A2ҕ^AߜK~ $WpǺ.1EZg1J N3g5O49=fL縘qENd"|1&MNP\q{b n1D=떙_PݎYNxBY/k.1>){/ HN\M0l!T:MEo^ _%?}}K Ka^͘FWbY7 .ϵ?d0*ҚSasg'JGˆw< ?abÉ9_AoL꠴3RDe AI\oE3TUj8~8C€*=Tx|{ݜc/Fd:\ODu3 )A{.d {X!Z/|5 6>:) f 4l˪L>x~k yHw`\׵?v-]8ၺB>aU>;xNͷISjur<7w:}ۆfzMQLwu3Q /qw&m$ 0ڪLI#CL-ĭoP Lug-7ߝLv]g_ڼE崕X+$ІG*IrCqJ6G&4F7jG<.7oAe(`+Gw&1e:gɼZU_Ѷ"dO“A*~dcd"X`~6++rx<GJ6v2N{+4OJ޺LWiQ~L1(up)MK<%~^ZgJYIs|$]GI @d`0d]L! W򮑨1Ptn1 .W 7r鵺q{!+B"yD z:i &L3˜׻7uHb&T1?J+yLN2ٌPW?Yfl$]<2:cqNiT=(k9؎tRK{A7:8C|G{ ΢P/3Bkn7ef9$tuÕLjΘ㥏j`^;,1 "i-3Rf #6 d1m>iMWE|y?1f*F⅕y? N_"cuQ{ &l^gdiWX|^ř㤽6#OA5XdVJ»bUHqVAT䰕?zJG';QEv |V78 [ޱBLc^R,8܂O70z6F(K0א9-q`Lf$0*q}[ƏJ9J8"#4yYCl n0#k&<& +Y0l"NЖZ<6l{;O- \R^fK hi5#HUfM;oGn摆m8<Ơ>Abi dIj^O;3@`,V o)u#=p 8!3/t|Q.W3sY$ph-PQIN =b0Y:9km2YG9swBP2i+6#1x÷EQ" a+6 (ty/]#sN)aDgtj0TF *i0縯.$I峛.ڏ1n)|I+d8zy*Xj@I4 O [|E,_7t53ǟj,A6U%'ixSUz@Y F1dg%ݶ٨>Tn,i:4E![#>ġoSyiAψJǧ΋.Q+0y:[2UdوCqn]R#ܦPuѸw}:,|J. tZ}Xm6PԑS7M1:HE S64c63\T>@mJى#7 .UhZq{akT$kb)ۋH!4-*@5 z+}sږ }$QVIx ]BddzRV{D(~iƄ=WqU҉Gp`d&S1@v AӁj֯%ވn1zd34F`fI@Ҧj(0u7{on $e˅mHYD})s/#q|lbZ.t,i ]PCfC&IЦ}&)OpIOt@wTC>D.ƺ H`Ub=#, bITsP8U]E r׬;buw$fbѻڗ`)1즉:ْ!s&LԘܦ Xj0+(qnS,"fڜGo?^(Tʋ7GTc|2ĞwZH Vr&)4N9\Ok]-OsDWl/RY tf/8ֺyeе9T0(rZ9>*+vYE򃑃40hO@sع=$#kSIc vgM͐କZV5[3/HSesuHev̅R1ٞ]Xe- kVsR n )vL]/"C, .XC `fI"/Ю2H{o8yP-d<#N&v]wLgFT ̳Ĩ>,iټ)?Ez£lx(SaߤͶ 3eY:1Ӂz_ @^!GsLzlO6a2[.z쌃3L!lq%FeO_Yhߴ4Z~J# YW%hncMCsu?2t㉒D0,Uonؔ4]_H}ttLs$dݶoq@H LQso E/Fy!lEce+H$^%? 1%hdVQ\j3cUyʣ?Mx~2O+Le<ů>O;H$~̥Y=EWj3t13֯uxsСV,x}a8 H̛):+?1yPp^tH'oӇ !K >J;8&+yzƉ ~"BT;jo_MY>83q'dT;5CrQz KP:@ӱy+loyצ gyD}mB;e*֪x"-*j#s՟O(K|rn@&"+R-D7Mo3ȿ.EzJߣ 06(Lˍ 4-~ʓ3wj!D"xCM<>Oe=UYf(]<y(I.+Iw_|rQNGgOâ2x8[-QuoVc!, C6"L;H[ŠCl::*Un5sCc<_eU p6MBxd]ln"@e[zJ{MS_ ˝(}ٴ9s ne'"~RW`T{r޷L2:bE)gh7O+í տDeQ"^B9S1y+MV"pvR oz2@Xpnw-F1pxZt8xz27RZ_W Ŕۗ.<ِ;| ]/ 8X[o!oKuGNaA^.<1d+3U3wa;(1O1Zބɡ*Z  Qz"82 be57:]!@Z)![#` ? fYrS&$~i}[?E4>\1Htı&i-ه/`8W5Ǝ+2S bB`*IQ2j&ǙNx}qOW?M]!(b Aq]Ct0'ڹ6wI%hǶGFs2͆a3c%&9Y`z|"5ce^T=`(g6ZwO\Cdrgns r4cAM7oװn.޼#bXdF Rф|"j^&۶W[`  + \]P|*l>~^˭Ǒ0;.3nòQpWvl."J{8'هxSBթ/YQ KjdǨ. ~9f٨*LU/`,(jͼ#e^ck#wAcjϭzMbG[Rm(,.IDPꣃ? 9:#9 |1Ql-إ n7LA!"G)p~- QQ7rY5*3i\U; Q^=',i_>#І <9 G}]y3.ʧ'yt$+Wq|2=gX~g&80ċ2IB2Tm]jmX N2?bH@w˴y<GmE, ]; N\A˫SDj9i`ZƢ-  m ~:EPQeqP辨f)bAyj!tv Hi@ւm"#|Ve }N>ռaܢf OdFf܆HVbyxPq%&UHq;g2˫V@k _rY#ɔaQ׈~}&zJdrQŰJc@F擳nqmD@^ńKH֔1aS!\|# >vz#I>[\ԧmdCSvE?,o jkdYf:S&d] 5F͐$[rJxp {LNC , HO@ƶ$K\ wEBr6X N![Y5^e 0~Lu3 ͇:!@qm>)F}o[[x9`K:wΡ>u]v46 ,Gcgh oӮC>TpN495x0ԱI$TF 钀Hp"FDe/@a/hӐLÊ-lXCA+ty|4A+ @p)`6|T(p8,a uTc"ب)s3gdBhFXD ָʏnn ;ľ8kbXlH F6NQ_) '7>-jUX0WyY |C.(0AZU?_>IGV iRLeojEifڎuU{=T{)b&Oq*RU%J[hH? E>s֋„O8׭ݥW5sѳe;Iw黈zZdx}ef`s7 l>.> -@˖̥+I7 ZTe`yb eXޠO<>v^&%E66"@%#ix.Eݪs v{@m~BЩmQX3fh&!SW0InBbiCwݺ)]?;yci `0nobmܗOwڶkIvBW9)8سZâаlHTus#l̉Fsހdѫ[ $gP9!8P<-Wv?ߔ3|I8EjTwUH~cJXaD^xFZ{NĶ5|4pEU]dKi\iM#j;jU9  U{e]Xh[ݼ<`*O[7d=LM "LUqAb] 3 шwR3-X=:yع7lY>]&m/2NX9B]pTujDŽ2y1wLSyØBo"Z!BdQz$YbLCnުs.}ܭӳ:}r=[`6!B_31Yˤ,ms7Ն gj 0ڡ- j`9u:Pu aٛhlT=^$ 8nO<߁(x*wHD(T=j?a<l@ZpN3Une#'^;&a Ti:1ܐvv @R5PAk2#ςg*0}YF5z2f84[rXn/(s7+q α(գ!V;-;୪xdFVvH ~qH>f:>q*oG+k)Θ0!*-0ϚoyvV@Bנx71Ӹ+7lW]q]z"l|=([ {7_3*5dGu0[Ne{)odb}';V🼶 نSMZnW7.Kް#JFrRQhsnzQ^jwL.$߂;V(9oW:MleZ0t=.QG#呯ޒzAW~ӳ*!m.?3/ȬP35[͙vbQ[("9 ;ENh7e\ce` FYY2 K6w!t 8b1eW}e#Ծ`|7vCӱV ea:~S{JTg,9ߍucb2G'53Ѽcr=oH9a [[I[jWg>>Bn2n3i*1sc9Q;]n17w;{P)eh׸>jh T+vf>KG?Jbo#BtthQ.3r3e^5XlG5VF9{HQN"]s{u׹$~ A&;2|!bs4-`5+V' fvkBbfQBq^;|w_xeaS{vS]ξ.mkS&j"#EisF kKENCA<Ճv3(Ȩ%Hb1tLJ+l6` "ޫY:Fσv 2؀ 8k[Q4YUbX!ݶ6k+[NiX=#ZLj1ˇZƒpMn {qwe/MtJ"'|{EfuYv275Fb ^fף )M7nbpמĒL, ir6{wKv`2=b*J.9>-D-~B)3 jWbF-y/}<=0NMZ]'\g&jNLFr:f}Ѻ_1Vazj*۩k#!6*,0|cd1ϼ9=n8#*y6Øр,CǦ=J|e&s^1@F>08zڌBV_Džg;cS3E%htg _Ýw9 ҽa9TmC /Ei^sKk`d7G@I K9Tcc#tE +br&==kUW-|d$TyNL؃,yڕ"x- E9侮-Jv=1UM,|<%JvKVvqc]X# GW닡߮H|K'Cꄶ ~aJ@Q'-ڢciL´bBKjo/Yo#=Β[a4 j"~C"#.{9zJDË=g$g./FAESzݑ ta/%arz~ =!~@-AUSXfh:bldJ()*%i 8岰dt6O>^c;ć%f/>^ԐD]!?ɓ<^ -UW!?QF*%8iɜ }?Sz'Idz9+j&@(<ǃ~>V7j :Pn$TuH A_4=rhJD|۪mn_Gy>mfkw&ժre;O5BOy(¬h5,l 7Q3|m&NGPOJA/Al>"wj%<&dI9{!E}K~}w$R6Ά2}j;Wn c;:kθB%5(^Z߯mQy8~4 92ϗf2ZՈLo=m8@>>Yo!'=W"?>>$7nRNnB?d1t=L\\eu  ݭw V o|t{JW01)Psa;f!" *%Iz(}:ϟ9`qiQNWWl婣6#|NJ ƒwp!N͙|X /ÄV4\MQ[WbMmjDAS/O'/g.Kb:~/kzVrib ,G#yŁ*3ue\99:P5q}0XU(Z;)h=+ւ[xQsc wv#-=/|7Qi/6ה,.i1Ɵ-Y<.qf9~P$X|2-2%Ab9If!$7ԇ\$eIčِ|,%Ðx>N^y 6 #kK^El TX Rndkjd =$wWn8HI40M0# \̞Ӭ[Rg`yzV| i$%kT^&2Cf~ 3Iotfpg^0ꀣAY;մDtN}N^"#*&⌬'˳zU`P8V{U+T;2i0`đ6\:y%$fQToZG 4_St-B pje$\Ҁa%p oX?XN;祸2!jOp ͎d+M:D`DCaDa'Yb/!^\%LQ rI̡IvbLjb:̅qLſː-?K/`-8=Qr3\`ȣځ gSw!,M/|{iAݿWu{1_g Ț0!$P k>bW ő\vv!dUh"ꀭe F*} XxᩞG ŹlX8{J #'ΐI?=z3ɀLMo':X Y%jnYRCDpeB;ڻ 2ͣLOnLSS)\[HrFê鏨9dɋ_boyʽ>(TFNЭdos#cTUN+{gxkjiPR" +^sPz5 [esF/F\={Dr]wA0oDF04aPxWٽe;Gul tl1aUJoYXlʥ$gjR$[Òwjt_ţ< E/Se!oFn0c ĴK awSrbojvI k^O̡]#-zʏ`zRboRtZ8$ҹIcH1>G kU]vp駛Id" 6 :/CCz;ԾgAItzUzչU,Px^7FOMfh(M{{Ho&`"ӊfZ-잏g+~) #yb`(}!)˷ڪCiJa)h5ԐfD' ?D2s׉f'xq?3*sGK#3LJE#TX6 U=P7 o[|Ԏ֛}ߤd)"l ߳\]ϼsd5~vj@8]ə1`'; E4S{Uq`M F@ڪgEh6yQ]2m f:oCY)nכ }α3EEj#3#=oMdK3j黋ai*jذ[xs_ybMv9uXz}(;w#c-Iݑ06.l5-S.?1 az:m}z[@6.xs'#NTBKLЇrirKOQM0)#em!m;N(R8qGG 9Si-^L#O`Vdz2%'>1~IC4s͛< d0x8.E)w$vT4$/GZl=[7U2T4ʇP7jkJQuj!h["BXӫ.\='{FU%;q+V- APl0I@LN;zkS:Dik~yX^;[S)<ˈ`O=b7 Sv-(c &*\ץBθGÖf'O!Ra;v>_>7=LVgfE_.Iai{`%%-MlזԢzsOJ_FD+#66e+J@ZX 뒉\ b'¨? '*[+] R:snL#H N.CvF^MLDl=t.5*vMBƀGhLm8"emͫ,F=L#wp(@s$Q"l0Thhb FduPG:hb0 5`7Y[3zn Ythm{8Tj G ] "L{vs(S"mx'K,}}Qtf,.2dftR Vqf$zAɥkWxSx>l]%ߦW7nI#81 Kΰ݆~P9! ũ%s#A:ݲmS_݋N ̴sc42f^0Z<`m8NUq5#S~ u+r^r+)Hwll,R&c%>xZ"eenffM"MNz-if_Qf$ s"bv u7pUQx-aο|^onuSHsGmh+xcXi-;?b“x?\V1X@X"WN.$D_׵WQr!}1QcsٚAT=phh bjpRƦθʉƝ@볛ٜ#,oݕ8\&T)BLy| b 6AvEJ@m3{͞zBUq_z5rSKVL?)N- SvIGox o i>ȄYGqI vjW^j W򾇨e zT*믡"\5)V%t =~dVoªU/T*@YpЕCfl2:P"(Aj{: Ʀs>ޭwI Kg=oqeEkXv_2OVN,$h_8o~Ve{W.:Fc3 O*1Ȕl&3zR@R '*+ 3! B-o$m-G]Wż[nDi'Ѣ cikJpqSfX'$6meM'a aws  Zm*×8M}nkO\>n>N1;4ith+5&Zh+Y.]0w2i!\E$lPH@a?¿5=`d=$[n=L52emJe9k+Vo.`^,04xW5X*%-iWpaږn%FVX5G>uNH͠r䂘¢;Ĩ}9 m ޺")v"xxKmo1A }Đ/Kaql%a$Dg]k~e (6/(.d'R ^Rg7I5µ1I/Ƽ?Yx[n) F4^ 3Cj1X_tï:3-U7%pD[,2B.|/f{iѤ݁z(,:PfWN՛Fַ/Qb$72 F;_F046%-a@NIC^}Ek~*dv1)䢼[8_B*zմcIT*:U}G=]d76I^s ikN򱜃oƷҩ[oΥ`r"y΁'|zHCr.m {@΅/g6" 3% p1ǩhI5g sW;~ovsFѸV"3Tmh-=(K$Gu,JʎƂ "" |JeL6g"7üR@ >AMCzZNmwSWT&F~)0i=71q)Գ qǪ01C]^s\WnW0mI\2g+M]BĘj霝a۹YASqD@'3&=t'k]*ͤN (K*8 oUm.%  .[{od2&SɽY(ytKFQ/I)'lw)p/@&mq'|9dƹ??v\! T>ͺ Vąo(vA^/LĜU 5u.#W6. ȶխ!=^ax6b]K4%> Q76G7)T_ݲQjL:Y,*5,Y%T/4G]DmƼy7 [Dw ܇9) ޝ23ш?_&h>Z<&I{ \.ˇ R:FΝ9sCuߊ Z`Ǫ\*s&0zv> 7mkwRfymוE9d?htk;\Q)*"]ۇ)%nue;`Z"Ox pSX>o@kg摺4_JXB7TECQĵTaվ-i 4|= 7١07ZKꁿ> EjekIT0a;܏fH19o&dtt2Y_Dw lߍ{X811pO{#r⒉K@B"u7H18]#Bqlp ٣} o$<']eJUW<2R`f;d5 DUdDDb?##[8RTcSdnGh9ßdN5bcKfdqTQ;]FT 9NQ I!k{ .=΅:bq5m {D2ʊاY;XY@r t ǘ#QX4g|f 27cO5,7 G0Ch2(Ae/~&c7:މ!DZ]Oளs]kX}!6M/i;JBk4D4 WtW9Ϋ07\ٶu7ܓs_T=A%nh+a!1*~xL9m3ڣ%U,`a9,k$yh k: V+“E-g=Ѿ.Swm~I$Ҡ!cxHjlBOҒc'k!ѿi{FDƫÒaã>T'qtҨAS4"k k Xz'E;0D146/=WU4LUCE€-"6ҭY yˍ$0K_{X??Fu#[W _T6Q9A6-]Q*tkԑilh/vGu -oܘ5t PbdO@F% H杤~J\hϰ05Tq Wbp3htpȁf9Tyi }v`IP-Y+-͞u[Fr]Biا o+% VF%VD|WiK\a#5BRՌ!XQh9L wcD)b7onvjVP^-٦)~/Bgj, jT ßV{Dً<~A?8ENϯfZ7ҒÚ 1:HYj|yU\v3 =jDb%^N0YǏ\9vHbҦBqD;xMrê^Y*${ !5=zmo"0 ߁ L0)ApWDv;0n fӷFGx=S,5&>2\+;Ez딓k#eERG^H3Wm^axXw}$ڍգ|Hf>陧2ar͜M=?,`E&|?MS]U9'!H<<<26 F!BLQ2/J}:t+o N釪xH2|r9(q}Je;rrlRTh}\0)\L]7>姚ݖy߰zTe0 CӚB-1(k٨s7cH$~eBTD@D贿̚tBQ3Pȹ:b ĎE^t_HJ3|7s\(@ӵH8 |ZCk%yF)Q[шG`_c,f'q)PĂ1UWwP vUTKq4SKuӨ9x},>du㙕x Q(x&"ZJLCF<9}L=Ƀ#]fc?q| &$9˦v rTMy7WoV # 4>-Hؿe]J'2 $4 ^f79I4#HO=Utz%27sOk"z7 e; gM4oh} zbܕ&Kn}6d mRw=yT FjakO|ITPV'my*vﶢ/μ?rfE筐UnJ#Y]q¿MΊH[w٧;V-K&I y5B2jX:>G/#'%kt ȏ;{j )M+G[||hX^PVL6w)pf/9Fw=:C&/___.ƿѺLWcv ӠJ=[jU9 Arjlu x8Pň,R]KC;"H _r,&4FjiWDOL͚ңm"{nv& K/̀<̃YSЂQr0LBV;f&s\G$O%/b޻^9E/%ǓX? N9}SEa@, ST-xM /DOjQ4Y{a1&؎pEe3Z s]@()hj(wkAaeNwuR:j#^UwrB*o[˼!I8C}XNVJrqf-?blG)3隮H%ػqG>}_Ky\ =43U!A-Ƚ4}ЈDf⿀I  /fjWL}J:$1U3dq-i_kR} r2*UM@rvДCN m^*'*r5+&@H=A*#^>B1\y07k۳]}IUגxņU=]ES3 0ZEfW68|}Ë=ʇ[,#un2|zC.& URsTW{#b7Ok+3jnZ;V~g$Z7[h`~(U($8UMoI*( _-}*j!b=#*Q|E"`'+e-%C%W00Nu޹ӗ9UYR"bM_ ^dSOUu{m7HU>MQF&}bP8$V ThNz<]z&ߌق Fl&,>@-u4TPf\]X71 S˼` R\45ly>MvǕ Nbix68}nk<ɞMa[lTnkB_X*/.*ծgX\Ҕ9K#o;sEVxN@?d腌.eJ4rб3;//KCX9hPb].fHH-t;*x!(+ñ_Qvd ZGOb}ۆƱmNI)W\$\ n#uvBv@ Qo B)ۓP1Cu:xp7quI%`8c644C0bX]d~A1տ7}Do0p#3su7p@' wRLTג~PVV i3M.;R bp| PRx40Գ$|$ W+^%!&RSюbn@ŒݐRo`[rKTĮ;iRkj|V$א\VaUh 9Kd ײV莾,^!+Q%Wσ~KTB$rЯV{xc#O%СKR)A=5fNiߐM!ui5C\Z`iFf{\Led@?oư+z=ny,:4GBx ]dgO@d1?s;HeGRmt+", ge9L:\t̻xΓ.%ʛ fDFWVX S0 'V +\ߔ7{eS:z?0njH";%(7)*1DPkd,QG\ReK)ƺ‰ڀQ4 Or~Du_@lJ~rg)`3`;{D81c4] ؇YmD1f>ȜT ho.v4htO9A En%G{' ')ELGA`L|D6t{[Fɡ⯡8&Zoty;rٞ¡uV9U8(Z1S'}Qҕ&BU)#]CrIubQZhXDTBmM 82%p6MzJH}TnCp@w3pc'Y¾0dk͟id{=Rrv8Eĺx53ꈮX"<$?pt~vySûԲ(~KH n"̋`Hg=WUm@hvW4  gJ6ERo- to~%5g4P[|!8109?%*OzM2.?/Čʆ61V1PT*uɞL[wEAGBg%o8&jꩼ+\{ש{ŕ?{{Fiǂ P lQ nf * ?xuށ'%_o,P*8;:v˜K;$EM:o<2V6e;47c,(AS m*.ٺHpɑ׌=,@`wRph!Lq^.ED<>G =P~>m bQ>aljJ0$)s2ͦ>,)N܇aATn<ߋX6#hKdY) req>5K4VDJFhCڝit@2-%뢞V%\8܊!d@+ԟ7RpUu o5"+1K^< T|<Jm=ʲ'ih!&)Lv1'Yto ?)w$G,YVpy'n{k]gA}RWw ?76܀@PBE׾=UzN٩3$?+f2K#}m<6Úӹ_ex5q\w6t\~Zᘜmp#Dz&c|#1 i |h& {}!3*јReJ4 3CGQzf!sʬR)^~QDxv1#6G>Wg}DYZxC.C±y.NcҍOC7=vܲ_g0KmEʸb4NEhZ@%A;œL1ҵcG *^<4uxK vHqg;WYO2vv, Fw_'$=\"]KVuRgZY5͍f>}&*8R[T'LYt Xюy;6YѼ#Y.-WG߅n}Yx7Ҹ6)j3k-cИEr2K~`Szn6׵ho"roN$ Nfޖl(Vj/s:[W|N4Ĥ@a"Xw:<v?KjjE?m_@45NZ'I ٗ&<*/_56b P"`MHv*$v7 ,@#Qd1%RA)N.mS4f*$h ʉp-OO8,[Okj%;=ge/(yd;b t\8C9YRW~`j@zS02;Dc+f@P< EKy{F:wO#3fl/N#nǒLN^6\;k=4J.Е.iژDYhTz;fr;;QW5|zVQ ~eZix܄*N7@O-!;rk0=:#}޼⊍~uLJC;e T*fn 3C烏٣rT$ݛUkSEr/%OQ*vèӶ#]_@9Un'Bi! wLzD|'P]^8 tu|)zF#\{ QC񈧨$$)ˍyo_Ȁ 価s%rs,"xi nR1n1(N'=I sTu":ՠ8LJc-r YkᬶEX>x]u%î]$/αoRze#rcx~!gOOlU4+ro%B6@v#LZ/LNǍ6qՑz'__ēW-kDž(?&p q tb;yqWsФJ|IQ[9 ;VdW=gtWSh H,ܻX+^`ѳjZ]ܠOPQ{h^}^Zf*~6;/o(q8BJ4Fy~s*>5`#&XO>m؏nhUD:'l{rqZv*ݽuK =f76O#8C\lZi=PS#vĽvffREEFBUNksP s! ]fʢSʐq)Nsr9W9» CD\`h˝*%~S`*u ?:Y*IڠQK޷nE&֨D "OǦk @jOc +epo=K ]O㩴!w&|i+К*gǛ9?QD#$#?sGro\kH}f3"8ۧ.Qk;U18^,]D+W[HwE8 ;3AyBt5wlSٳ3|?aewΊv1ds`yp 9r$G 1[26h(XPewk,k*"q~dSذqi ϛpOL.FPkSs$KO?4s1HHDJC7hk$~R)`E?C~?6?^8mkd:Ŝ| SzK.IcoȧƉQo2Q7jQD=׃&r2A k^JcDwrpGao{g㓉 Cu2zq`RIFs6M4\b UC@u'J xCHR/\~C<"+(|I{-@^ $wAYBg}IxaJ(WH hU> M|^Oj_`KQOUZcBDbUyyQοF|XЮrY#~ 6XvW)N.Y 1{*N7t= l-JUéθnzbE.S}O վOo9] L[>bN{IfD27~~D'$wd|VqrO۷sOU c xq3 KkzlwOأ}&A^7WoB-N Rգ4fǽ2{ꎆgL,a ?B}(y]Agn&mj:Onƥt_!ô:v@7])|'XW'!Z`B61V&l<}HúLSB)5F1cE^iq2ہQ BJk,ܑ+_e&em?ۋj4FY-,':+=᪂s8? t|[ZGTALM+AըMlq}k$ձgvvsObLp ЂK^Bgi&6ئ[hjbl/l( 4BMOzp!93Q}Qy::.uͿS|QGѱ4W%qtL;;D5:~m2GHڔm6qj/6L|!vc ~pm!4ߴ,g%ɉk*#Tb,p{yF! PrTD3XknڣuloZfMzPv̊;:1h/3. [,DxR@;{@=mX"SU,.E1tځ REЧp|A*WQݱD`,s$6(Q1.iozYDFS fYW$5lI =/ nep_lPM8F5Wuxw:D4z{E|B.6BZ(Qn"O,6dh dKl΃*Mu5s)RzC_ ʌԂhMx\*5?ZqE披= T?cvbo![\SӶ8:ǘ$؉(NfY7[R5/K o6JFeC>$w.շ]gReĪxFFբ eegfLk5-<5ԖO[蛅0v*$٭a (\ۧG1.ct -WKECRu"yrʗ85}=?m2 98bAT `GHSO4DTHhjw)!y@:A2VV D"z[T {@R"K]QգOdBW`R?RIwH$-5O~!в8tXܸiͪ^ju5:QPHE /UW' 5ϰN\J kΡ?]|9E ]"sN#_<`v\Iϣ B;񃃤8 -GiOyjf{~-/Ho~rcWLblȀCWPڥ=1)GSfeOU'b}s:BDEphLr6!55p k]Ss̐BepF\f!.le""={W]IL_Ot9|GƠ״2c˾lo]_ưbӊ81f6BP\_׸h}}֒aX0(zfvծlUrƂ,.W.bܧNo.N >"Rj&iImDƀ7>NgV.c֘[ V*` onOr2ME Ngޒt͞"˵̆Vc#IZկ9րȅ]mSEΔhVq~_#LILiZ{ prg_dgؔ? rw<]N };gp$@e͵{!GRv0):e8ac&CА3Lj6YXN{ 0{2ZH U +8"j~1gFj]8oBJ/8ڨ&(dLSԎ."H ;;A%rn,q]Kh1/z9DhH/U|~Mǁ/wBdpzNrK>'5oIثKrI/צ:\= mehS&8*(;U\⢜$u!sЭ#9n ̒ 1Xl$~Ͳ?KuwYy9>˹,tgy}y/ka)=h BfqqSj%մ^GY'&{-5c#>% ~v%Lʖ,.;mIJli]qv]JN;*r7eJ ` cGe83ϋ4kjd!5E&*ŌY-om?P8PxڊM ڞwDqwq\3RTrLsWCpz=e>nS"LQ nfJB##!7"x)ImcWmN :=iP`_-hNS#Ťr\d8 x=[GMPKnj=C%|~|tp+Ut2=.XgE6M*lc n9O^ !\uoZS\zY?cی5N+S#U\uLSJ\r +}b-|x!ni:z#?qr,g M^hwpek 8"^L ?u~7OTD2w$oT= KATCRɶ^ Btktotk~3d9يJSGah Sc 3$yG_Ȍ.<{OLCؒ:5*PHWzW[\/4~]CbK-E:յBɗHv1iJeːD=DbJzjil: Hs'(F[[}Fk*/!?̂)g~md6~loUcVF?Ԥ01Ic( AtɻrX;9HQz% CѻK-+ &=.rSomA1$ȱn;+hf}0dD sOUOx;0ލ<4>DZpxmA253D/Գ?iBy/ֶ''hʺO,p0yH.U[R$+eTL}Bߣr\wfX'hvT "wޡ<h2:8$(^OcMJJ1 >oKU2^)q2{X}n);jd]߻>oi'_q5t Zi'txb`طeb  Yr aEGIxrUƸQ%XqD* h^atQւ<66{?x5vZa泽Q0vrGuWTL]Z$trQlt!.xKWݸ*&^oM02NN.u_ԔF;f~/7,mWj.B}ȵBfn<%F,#*@!W>ISX0},{ahOyt1ne |Ʊσzm&J5Iú45d42n۪#%lq[ gh( pCuMK <34nAURS_w̙ 0e# - BBTS%LbѬ<}%ű6gRRU(ݽ]B[

ik"8軆PKsxKP*ʹ * s>/AcXgVIpk9AXcI +Hq@(3s#Az((,RQkSnpZFvY]}գ[SGq༤ 'Zy4e/$F r7H|/<2 _陮 ]FhzR&RJAS(|΁1"yw]6U&_\RQ[ rYC%AHy 1=+.@B:G/_[Ei1i 1 Gژ?z96Վ.3! p^f&" >R f,r@7}gPGw!("[ob6 0! }.`ڢ5ի^TPIAk6p9}M DCzT,ʃ# ޣXD b..,t)zܔa8ՓJڹ5.^ϽA&`,Ӫ|>*.; irBTJKq&a1YxGe_jy5+ x\掴 XKZq-c¥MeϖW},ɌlL*Ǐf{t}Q;'R`rADlp0 mY1Qk_|g67$CrlN>M|gLOl_{3ݜ8{,8띰X}rֱD{UՇ&ڃV&[~ }[6th@"bxq$ّsyk^T3 2~"D,JU3h e1ˆ7|3"OwT/<';qzbZey6{1I1t9[vt_*A E} oƌY*0wO|2(~B588\BNj*4C66w",0p]a3\SN9䔙[cmWinJ!n7ly5?{Pȑ^_ ;KA @nSgm.}[>mmv8+BF-xUKvχQN/1IuN4nNfXo/eQ|qVO3u+Mj i6n' vHw 'Fwti +ڵ)XAzFxZHY &fhc*%RhT6D03:ށoip>?,IZrNOᘝ 'G=܀ Ş5Ͷ2r乤=eicfV,sT[m]8u'[5iKUbwT|&WMʅ#|HMR7JM$e%Q hOڤdY37+rʭ(Ieh>m'."K#5`TRym]Q"$xFx3*h^3%>&'|bfpC}atghb#vFKBU| xwΒc!-Lil ?gXC9!aX ZgJmnϼ`k--:FP^,3Ƅh)DGU\'gY>[}`TᏼpO4`UYb2+OʄnDE˘JMc֫LĴRGVdSAuhYs*,*a:*w0aY9Vߋ()۾u*{$^YmΏgUӼkR/z^c#rdj[cbNV$>՘ucl@:&dVcj)0vV$OG_o/u--S6;9wR Y~G njYQlL,?KEi ?[O ؇)]\JJq 5 8Sw/wV#E1_M+̥|XS˴i#?,{:W bQ!0h,:հ"쾼ѝ6h3GĺyM;u2l` q&۫ӼEDIcGAZĹk!--@ {ىѕ)x!e9@y? }7sJ-brU%LDMq4, V&P;@n!_}V~!<RViS4(D#VMJֲJcjJ/?6 ;"_$ƃ fϷWr1n"gU hvnYľYvwYz7{JJ1k,|rѐhљrַ 7)X$~(LL An/؆h RsDItj|]!0̟@ ˃B]3Zx_Ar`В ȱuMƷσ9G ~ :\4so:c5{6 ;YK'|(uu@/n1}XZ5Zo:`e< |a|> Yn֎H/SM0GW4٥@aгnk*!ɆBm^\m ɳAgJ:?k&CAg1=oI۽IFSj$p*Whΰ>_W̐w9$ ^T2IV&j:)"J|FΦCOYhQ >C0xf@dh]$I!6'KXz%kzLx& _ΥrnZo\HyxUUi%29N;ЪfoD_9q̞*}S:L8)@+نɥyMiGf2-*ȇkjx=[6r yJƶ}^Fz6yi]/$ƵfsehB!RcvHʨ{JMn-A:2 ќ85ln&wëvB0GsD.[AH>ugӁܹ7VMOT#|`.uGL7':+xC͞Fo-'!Ю4MoG50rĖ^+>|2°#H/*}ƾLpRH\;7rA JP/]߄3ciG i * <{->5tUݮt͇.VE{6hl{R?1p%v*$jf^0**_G/n}m=F.ylLv;#+VNy!tqDpWсڪxooW<m]ɴCQ'.+"(ь}; Ww:ivNoU#|p10`N65pgSH æ 0 ?0G@Pvkć)9uCGa"R[xy8*I%1-h@p!u H a3)Nt bV)@mװ`#7+9-RCLFhKE1Jdk!->LW Za%Vu M ^dW5ߘ,!Son% s@p=?۸tv}'k_>jD-_n{&P#Er3#k3e(c!?oq* p7U%ĂeFߏ.X"*oc'jruM@L&VI]1ē]B]i  τ-%MqdxF1VIPnmưNQ%: #0jЪ#Vq0"fQ<36(ˇRIp  Ȭ2uE!ԛ /UxXHڙhWGQP2L]eo׳/&U)gg8ܱnx}X+'8E'T{77zzbv@Rq1W.GW{vRB:t#% O [UqҊ돨l=sB} "U'MCe_ovcr& {=!Dp_ҩ?1P P#׳ȴ-Cy(?z:5v#0o<"J }x[7h3G_5HBG6Acf廆EUjL{H#<3 JȊh?W0c}}alEdl_}e*҉(XSƶz=R SӻͺxT04ktJ{В.NMj?VX{I @W{hKR~$t!Q-k>aXˀ8:~y }Y c v!X0 $̾Be]%n`2"uotɽup|cHr*tvݙjO`TULPc$|J#.ǣ'z+.Qy@~L=>Sa^a/4JZ,8. QAe >f3Zæ7ZVz1Щ_?|mƋ]ʟغF>#8>&~6isa ?;l QdgoQ揨?0+.ZaȀ=<*X8XC:dYGMDVT9_?#뱤4uf}-2#9"zn̥v>Pn& 8' 8< V.8RhtFC蕤"qkL0J %e4S@_M?$DÚ0pey#Yg.o6JCÉ'p4,=y*`gUÕIT>o*|N"yဣNÇ^Jr6L+v@*<ؠB=Қn/;9C>#\+t.]u"OV8`$6EQZ){I/iqrL6K`,"@R5*\גJLz\=F^gAirzM[(fuk=!Z%lB58A5뮸k{C蜣v;_ħ(8`PQ|Px<`;yaε^d)3C~ԮBx|&%3lw _.Ϥm1&R!#Й |֨"R(Ds9ힿv'TqKa?0@!3"Xc?+ hLWE1 V'TT4GXTp<6T[ Owp9Pf{2~;la@zk0I6%=Zb=WԵ`%?3ytEʁ{qAHU^#lNc_ge&bn.5c4&l$Fe“Q+;߷cwV}UEuF+mX &$ ٢&j`Wsr뭑rA=ZўyZfޞm>^*n.CMYyTuR5\:1*JKyF%6{Dzh|sG4G3 xwoeXUK|cP|ǗS 4,%%'$`42OĢAپ$~S! >682R3cF3B-F3n7*맴b[:GQC[%"L_Īs)xۊ00#F,-,M{ -u\16(=.B r+՚ VcA=ɁƉޱ*4K.'9ǃWŢqeɨX(jgkAV43B SSL wY.1]jRWep HKy'mDZ|j 4L]A/'XVi'qG wx0e4M*͓IBтnXWU*qJb8]mYaG.NobkbԳ"MjP 5,ISkஎE޵;6KM_N~NpQas'XتC.3 6-5Tr8K}|?ߟ'ܤ61 i`ɝ>-vv)]:(d#U5\1;za1qUA t|0kUt4+)Ʒ c~ti|BZ -0^zX=qW@HphRSd4' h=U{.RF /LoC 2֟Oib?l<Bp &FHYGCuG-EUt:?[zDO3Qx'QjD?Yɓ+V,}4$RiuOA2B;H; *a0K7M}~f"ObD^F49p㹨e|CL'OFtkk6!CwM{Ҭ]XZ4q>ޏnKPy줽OaMjMI]7TR>BM+r-տ:r0Y02X+-TиL`JºQ@` B-O8 yJ;UK0v ,(TmR/'Jh[pcD[q;NJi}?tK Gyi24eJݾs۬hvk4@yŷ阜=݈yQģnoP"^9.pp c0Ń,xWX{7; >P=?)V2di tkGYFgLF!޷^"Ru%?-sg#/3v⼳U /stHR˴]' q:3,EդU&v֤M{TOm$r :kBn$qBfæֶ>- 򢩀4zO>Q? !ĕ'뿾fȑ2Uز񆸍yy B?0@Gٟ"G.ψK>J<6[>@/XƉƕx{hͩX[O-\Os෻!"H);*1:H`Vj는ERz]N2 V[jTHF,zσvl NKȐLCPN5T{7Pɒ3!Bl XܩE& )]aWvwre=W 0c+hU׿D p X}0UܴPf)7ҷ~u^jONְ1ו_xE*}k][~릯 F7SC0ϹA/[k`FVc:f*[3 ~;q2ORu۫:XAީҽ2!viT'1'1uB,ge}gJIm?wK@8`MOiJ1HR3$*+?Gano9~},tK'b0LO h?@9dO53̯ 2 !|\HŲƕ}]mffim*&FciH&#ޅ -rnein]ebmˉ:!'d-Y.2vvJunK.&1-c%+s760f8eF[&sD H s4s(ͷ,)-ϕonZ0'Ԯx$.LY{ nָ8BP 4Ŗc`xt'9䚲wk_"X|T $#,htl np \T5X nxQyx2Ue!O} X [PUo&?`ߎdL'`z\ɳQccpoGR8wPhpc@ފv/ ۥ>1ߕI{Trh.lͭm_F{6_Ow! jJ^<_@WHvτOxGZ9eK0?r5r z=߂'&a8l TP l&H8R(hҀ^֖a }fПO@C6 ZEx,7a@]NMԡccrITw_ 3C_qZ_SĹ5Q;2QuwZir _B%v}*.f@Vo;RjPT\%A)X|ϤuuaF BUs+vbzڠOStdOJDw}sR봯@SS; 5lag%`޴B9Wm@MƠÑ: Fg\kMo{?+ e^j NެbK^ [)F%^b* "qVSDfl-d+f^ ,mS œg3:4 뿧[ɟ?U [mrcQ  w>iV,cUڻc{{ϥ]H 9Yήnnx! @H9DZ4M2Ft:nhzY}IFȴ`je}3WAuYULv#2Dj:j:i4FHQl.98#q{^?!|,1/sWe8 &L4V˞r'T99 Ш#vG7:jU5lHJ>;ccs%%nz Wm|7E5:cS34oPp#Hj.Fcֳ&UNm#O@:˜>am7Xx j*)2[u_>-.`M껞DeËWdF*'CNA {*t'/yNJ.ƛb Q S3cbN RS}o`閂aVflTտ(}H_i#NZx$+Fz1@eƒP$?>H<nBbL`hePw\c}6DR@3w&H[v2~j-c?@DmfT!Vh$ٝ ijp f>iѸudZ,氝Y jPLTUiJt!CS)®ؔ3vW:E}Ts(LV ٖ}m!`av;">?ؑ`9+\aԹ0u[A’|_j‡:Ԣ {O߇r(,yl%F3da944}fTg^R'fD8Ɂ`%pp#ZtZJ'm\BȤ#¯7`N݊W*d\Q@ʕ~E`:Eq{>E9$R#>~HM~"Սi=ڧ*U"qqNKUMưEL[Ӯ-~&RzVBi z&jŰ ƒtqYO4I lkcrSDzW;9tzIAqr8bI X_Z>.FNW8O8=k''YMX;D~1_`[' x;HQl_1t/"[P8~k߆؇e{=k.ɷTYrљg0DCPk]ܺ&#Xd.u׉uu3G'~Hv0sg zHo|9yٿi"/n4PG"nN\]|vXK}U0جdMBȽwe0K9+ڂ7obcJ%琹D7Td<4M)-.WQhЌ3g@nI5&;cLkXQ2@aM)*tA`q`KsY  ]cІ/'cQ-?"6šI0E} >RnԢ`AF|'i@Xs]O^թ7#D*75/+s:d@iDZ=4/Csgڅ}tÐ fh3-RAv Xز-P{S-V7`,iTn!Hߡ2SlNBѭ7?`>,gXRzAm,&mp7AiG.'={fXB x5Yzf1iosa13Թq>F?|Z3ݕG̶ ;DWF@z|fzO  ḋ J( d0r=U'"$;̗pXCt@=':SY͖x,`N]p̋ w'*WƘceȅ*G].` !+ -G.u{V$sӆl{3rC 1%qGQ &)bޜ{X @To 6Y.-4M DP߽p0b,|Q W(7:#|N~;p!oyz#̍ U7ݮF)+|jrCKXMDE8Lt_Ev,PqbJ 1'c/GVMcD 26_BI˥^@e B5,xG:V-4 վT,gE<!ْǿ6 ?%c|7џB6SO9 G.laD8 ]#8,nH͊MWi&yB@#OD'q 2"96IBhIoy!3" N`L#|WV;ܝ1>֤!Cr_P9q<4auJiJ y]b4Oa|K\BE3%7U˾+pLM>K bN\Mox<㊸[ Eo(y" q  jFQh '92We_ I|˾Cs& |='^(GIS'C# yXdkN#ĂSTxk+1WpF47(rzUEz*ߪG WKj(萸4ScN[ӈ|~_RE~vW,ȭL4N? {VkS]2S)0LoQD;(uX}b[B G6"wS/xUSɻYv0pl)(GZ[?gR^.5Sbye w$WDI0]VG Ӵ"6#? مiNV.QK=F} o?D|.Or/H5uŵ0,O]QG3jSl t8^=?gh[1lQf~1S"5Rõ3`Y@z\Բv7 hY9uHSC`o_b;QF@d% 8F5P$aE6q:8d W'iHbow-㻵r5)F,y( -IsbS$}Jsoy\>fPE`kЬocT:[|Z8;>Ko!pC -./țXi^;yνApR@%˝bj|i?ʀŸ#D?q0`|N!r!kbꉱ;znj>cP+L}ҊEM8 l$i2iEQ=>U28Et*" oYc3$(Z5 A^|끌jejTAٚ=1}GՁs'܍JsXxDVvE iȕ,Bq^*5!m8-KPoɄZp&eCN^쌕VR7oTV3vAeAPy AnR{ 9Ưw[E'*Fy l5+u)'pn 9ӚC"9gw?[YL&zn-+r$+T qc1;0Oayv4\LP"cRņ\$GŗR8o97/Qv2-Oغ(:&]*:l969AW`iX%b 806)Ti&dsKI;ݓk^S+sWO`]TclL;ז&!uoj1SnK/-ue95%5Nyt2$4BgMz$]C8mC]+&Q^O8!S#s{ܾ{+ Eʷ5}ݐO:-|3pIuIuyf!1̢2٘Fo0X_.nӷCGC -[Df+ʽ07 X#A)Fm5+;05BN곹cV;c(~]W.7s6p;HX?d@Hڙ Oȳ9q2} 3e[ SԁK\#jKg8|r>sT(I%n\@R25$KHgH'a})cYVrtF\IX<5LMZ֊MN4ju!Z\'$s𨮻8B^m)F?LxV&_tĺlMՂ}S/8&Ba!دE{Q0?Qֳk%EaqN;әdOo NzkCRru$vp;[33uz/_ CϫLq|٧˨zwWwCRMA1AN$$(瞣`=ȇy-lWbf;df$f| =ops99_mI_֙p6T[y X9I`t_R zc,[(۴bOjζw9 %z~T$GHf(aËRCw!YsRN[=αοu| Op   e2$@wɼdm\| VVfӅQLR)I>y*H.i;"ɞ>߰]uvavy'=oXGԈ4I/ Q;OP%Ade(d(pnj`(^gU4UsOl]asKfRje2rvSxƧ*pӿѴbQ2luhyŃt=5cZ2&m0ŦD"F _ n\0;$,=T2ʲ_+Os9;1),1[}KJ95LW)uRc**o߳AQ #r 1cqH;f+}C,[o@GpYi}YxN'A>C'c#tyk+d"krUǫ5oy>lSPl'1f"" oѕ#y艀{+Kv j6ws43)PΔWٸ?ؒo{`ި0 ļ\ X uҶ\w7|>M!  #IdJˡ D p%0rkczWu)s?Q6Ĭg"fחGꏍ2 Fo'wf.cSla6-ɤn㲩_@m]>2JB&iߘߥB9ds%fOvZ> հqt?ɟ$a2]v\!pMɥQO m"sZ76gXӦ>G1T.d)LˀRJSv}xo&o )AK: q~~+⫶խE 4'**(Ʒڄ6iW(Ag ˆj_lfKߊ3g&k/uM_mѓD}gwt(y_8;2֦a<k-[f pK˖W,xP`K.pxQ۩e,OD!'zArL+?υjy%2y>SxTKԩ`JV}rg։@_odC,aoٱ_΁WFQ7i [pu?EiaSr!`pa߫KcQ"():nv/3Ya`흍m;>cZnwJXբT ,axwUgZ4qW/jiBcrU$ ީ(pȎTHGEr 97aVSops04Xeǩ-pLI8SdmUD%x:*;|u;ZIixB,]|ny . U{˹ųs9uA# z/FQK3z*G\jU/F}8{3~#$ՇJ7/ϛ,K"& pb6"]BƩs!+7}$7& [Y1k ˷c"Y\hȆ6>4xEI} j؁x`y>]2~]QbȮ-wY#jeYq-usnx ɀ,@^+tEP<9*edBU z`Y0[h%x*^D$!:?'N\kT$% V̾XFϡEWmTVHfn Hje7c˝#ߊxum{Hô̭K}[آ_\Egav 1tO0Ұ=cWT9Btdx渿ۺ}: uܞ#=Oi/Iid8b $dEӎidSҐ#Q{&Z \V ZEdg Ɇw`R3 `L 4'%lR<.]jHoh+<ua`;6{R-8K_hv+&/E0-dxLtf)NqpY6m0F1FЅ [xEHtF5Vt2_\$gV0`\; 1~UYg|[7i5:y3? 6Xzfƒq>G0_yo[6x3IȈUa핔a5AwT-.lr5Fe@v?SSAҧWP>V7)#@bጭTթ"Q|-u_̠z#fC/ZzPj 5Je~W%ۂXczk՜rW"䎛.Vb{8]qzb V.gCq4p_sWtFnӦ1[K᧴gӇ17DR*_ui@a65y>q= TqOs 1td$WQ3z)il)umt Io4;SӿLZPc I4Z?\j@/T = KQ't=ƎC-|k\ZL; hL68^"?h&3[riٔ\;_l՞8]- 80)S8 \3M{K߃xcI#[OԅLb{p 3A@<#Ѹ|IIK|xc5 K7=<k[2IAJvGqVbhrd{o~  2G tDkT.~[P zjf u"`dXbc+ #2D>c{ZjR,UG[)JH]e3s;Y3V?mktibU?Sj7c< e4ڙe8g=7Z:%>eqVVD}g͋Ǎg6 lN>0LT`^pIӿg~q0R޾ыiU?bXU [Wyٙ~9Nyy [@nt& V|{rI-Zo2M #՛FK!0%hG4rXjx $F=oۇNϸN {QmrKty\˹' V r=NYT@'n%/h4?f'H:48:-k&$j ӝ756u5/Kb9\ ƶO ]&L  mWLlx& +>}.)S%[.${ĭӮAW{Y5BM!M7#[PR^o,,C,nFR=o@}fHHlI [gQ6Jx (j($t54ÇaHKN_*+6A+,.c'w$;9ų1jhCA{DaI xɅ0HA KM+P@b./uyoſ`~[ꃱZ:"n(䘞1kA(|dZZο"R|"'׎h D 3 }WȞYxZ.%a !t fZc?!II8]d !%Nu;njnuQ$ȥ @P W3}z)K[J)E8Qs@UZk&si\ZE]<(8yL0֏ځ_56G7!УlB_F!a>4}^y pW/ikft,q' e;,e2_\oNGk9٦k] awG($ _d$ mk*9d m +{@*KrA9Nx9.d=;G%}n9[㥢˝8*",hJWj{>os4Lb=>fc݈(wj~^̺-[/M0Q^7_Yhile(롨v~iĢbyc8(11Baqp 2,K>V†#;a4ޘL!S{eee ڳWL~_$pFk`Y#~ԍ91}Yϣ~JW8ϟJd'-K+hFSvqEDDXvc-O\zt$z:C;t5-OܧZYe? Zf8Gz?v; F鼑B*oWƒ魾:´%aa4 A(RzwB+ɚ>8 6?#U^w+O̎ (y&>U"ƷֽƫgE{_ԌzjO1 CI)oϞ>̕!Ƀd;?W)%v|`FZh91r1aZfT2Z8%VYC_$yb|I3Bz0enh%nQĻj3Ǭ3OgW:kzRDG1V~ o4ñM/V}n9_qBo*<&TxpU X+C* )sdzzwCGz‹6Y|i5NP7;Guy |$Ž 3Wxq QKyR; $ߙͬj$|q d/LZhLJ4~‰0qNטCj<3ZVa!a*i͐T 'g;8dάǴ|ɁsrHWx]O7}Q//{"Tm$"'#PީUp0x!HFmH:Kl4;Fufg# P\Gv̝B_Y,˴a<9pk4Ԇ.}B(7@#HMPE"I5˭r[,.@zyixi+ڠ7榦1%'եpFAmzq*ߵwXez:&0JJ޻ ѵWD4'SxqIVz5UPX5krYPv&pK6Y CnkՇ{qsJ'h?y|IHg?u1MMIۋG l77 e)tۥNEܳU_QT 6o┟nSP-BZyft8@|OvD̋RSF3NTphhL3 U=@Eea4&hhJ59@ΤM/m޽oK!*lP}6͕t% xb;8 ?MYK@"n?g8خ{W&KBoZrp=r:ʣJ~{okzPX3_-`A:7Pyvәg?Hsх6DHgl}k‡cS@lg׈. &X&chll}, Max寍}Vܨ1]6AB-?V':YR8Oe;Mh;?޸ҧRoFT n!pܧ{g/Z z5$ɕGN Y(~AD 8l\%k=aŢ=!ɯLghK,q(K!޿@ܸak-VfK2$0tmV7}^{.`# :} 'øFyGn!H_`?տy<)ᥗ<`1{O%`u*iK<~ â)5=H!=j+ҹ>_=B =#+9Q Ry&r5;"]ʀrmF}B&ʿV%=]h9KDX89r 18 .L=ɔѲ41'ST[jiPr_vVcD7xN0~eF $34ޡ<uh Bo}P%U ɤk$7L$Y2'ہk}P|d?E`lCd<4tܑqȀD?^r"-~yW"}Ϥ[ Dx$0:"D>0;љj#꛹ʼ NMgTgb Wi*FiJi]3 hbK8}H#cج>gfT"XN/@޶w[*)Iֿ֞9X"y ψrYjl6MZ~r-У7]$ɝ=a--q;Y48u{RR3S h1vuU%vg+~ u{+&?%]n79^m?)7$,tmċ:l& -=WZXNM01cR: /g̊O(K/7҃kZnL$yx0ێfKZ^ !wĨ4NJr TRJe۵ciI> &8 _ɚ  MCb/2C8@\YzT[הi:"Ej Uz9q=Q@G~hpocF8;Ag߬ #ڽ_xrB^qh33Bt}ԭYա:Oy6^/rVo KNCjɣKD57]{ onNR yJ~}S̲2tSpJ{j_=Aޔ-(Rs4 I2֧>N&^дV&[6q&,5.䃊Z3,Qt)ќ#gy~&T4Ճ͗2i&HJXL;3b#)`od]hBU6 _L~0A Kinq̼yiYaqFMZ>ؼ~Tm`k8&<=悴ύ G/kMd*8l4 uMXfA y3%4V4̈ȟ#aȞIɻz[LxQu16n0)bUA6NӮRjߊ MOܰHB]4F&,ӊ,|`ݽe)7Ц g1B+V2ru*C̺sحXUZQQczcpxVFs*F*B:ڜ>N]Vd"] 4"Fı\z:Mgď'0 yd>bqla{r 5zA2?q+9|'˔@.)fsSz- ʀ#;]17XՉ[& 4yV!&ǒFM>sM?2쫨J2O)Gw`5źЕ{'_a(g.,3T\\k$JY;{be38 %ru48\ݻqr R.$15kQJ/my u /a#?IeJ?YzH޴TO&ywvǤkq8ue.F?zMNPOT5M]tS~ǔUU[[ j8:S<61X,v c }9_Ϟ|4mPz 8,MJޭK@(nZVJIq H3~LoSeT2șʛ=(܎R>TgNN: UeG3fe' TAnqZ} E0 ayF?^ra$:p}|+O:HU p"~l{5t?ɚJՆGl!4d޿5oFF$=dQŤw3[HLMc472UAXLT>2Sq12鰖a&N9^kY0L*\ `1#F3++b7,&4Y&{KMIFFv$}٫dy&\ cq \'xqj DJ8,jjvm x/ɗڹ$bSP:mDa=O#k.~Sj|R$lrƕZKX(8mLEqi=KS<Kϓw VB;8o:7>m'V2)mjt* KZMZX 8,ٲ_B"P*ϙ' vTݑ27^nNyW4<mݨ0]Z0<L&A1f+ϧPdn"iS"hSQխԕ~&Bec_| a}My\ʲ=Կ5is lq%zݠ<Ri)J,4?Ah-lz0B0LJЯYIiw!u[$cEEr@ _$3[ތOK\"!qw/>H൱?>$@O)  {r>b ?zf?xE [#6x1; &I:7w?rPG]Cj;!c#䥙 r/敎MVA*'df*Fg(4/1>{GA9ħ;=zVGD!$>)}ypvPptqgRS֢Gj g5ܛhhuѡ^1cP%>q({_7˽jk6ZiØ-BJa[ϑs%?AOHJ>/@}c=E9yG!4 ~[-fzš'CĨʬpJAGZJVn~TnmrEuE[JS3h 5 (#A>Z񸲃Es6/pBGh/hb ,P~HVSM|oѱ;7$ȩDPڬ&|1P& !< ?H,ǿB!ezU\@o\Lj_+!ab#VB)S6&ވa8 so?!!ϙ=!0X(r@7Q|; rV1WPTEj.3IU\bLU-nxCK;. ' SI;E(m\8V K`/F~rQ&(Y;jiϕ!÷.^kaoQKI:Bx/FUXZ-9* ѸEaLXS2˔.=贼obki+"2)6fi#T@$(re7TrT474-BxCtS7nR1l~1ruUATՄqi"3ir*]dYXyhmӯR\ ȜE*{G3?W X?I t22oU0*Q:V< -DDƶߠq+O9\mkbH!KWdͿQ^*08ْs85-[} 6Uzq^qN%m~Qg@Z! E3ߔj(ϣAK@i\p- }5ai&z~ \O*C)X*d0PO#Zcda} *1+hEPbzkP+E1]Ι$s=-|&e#;Q@KC*ZmD'ĂJ-$za+ߪ|> v/HލӷM*|iy{Ϋ*6'n{31SmPuEe/3A]aW^@2=q>MA1aJWg1iŧzP}'. e#瘕G&&Sb]x I;aK&9K!EN ^e;kQ&v; Zmh:!ۂdMpfd1HaBiRZ4\؏ɳŠ8@k1A =(;h㯐?6qғ*"Aj@Hd]ϰ# Lm'%Jb64v?kI!q9{Z RKLhm9v!SzB1v FH$*αϰʢu6ס{- WuWsr#XV2T#wgKDqyCaK?l6SuCH O`I.ML-JvQK-MY@ w^lz0:247 [iVvA-9s>QeXVyE3tLBG* |m]6|7.ƣxFVU"+ԓem=n^?50HبtrFZxH*'%(5f*33儸uɻ鹣`TKGmh.YJQ?D+(*b/)Wj7N[Tߚ ;ru}@hxibvc0Tl7@_d$ZQd3&ba7Ehnbё5$ieÆJU=WX7'?f>[~2VIǓXmr~0u6tW-J@,MʯnNT; uYg_%Ye5u~n5$VIpȫ5& -o8Gd,C:̬͐%!g+]I4u6?jû.EKS. f"՝aK fCagg ʋIuк_i2Jx'Xi`Akӆ0aX2oJCҰZʐC4*VNHٖk =GetiTuƮ<(l'w}P(c (^b02=3RsՆnL0rRuY{`],ҟM1lsEe|IU _T exT߯0 * {*#A,WmN>B~ep&bbk*̓ Ev[SV?UGa<R-V)l j*wB)J<%"a[sfEs=֨ ֻ:[I\gB2t'w]Œ"DSO8!`"t"EkQ^Z6iCU"ˠ)7':+@Nc/Em&|fkuQiAv*FuIE6 DNkڡ2e qnDG)Rd !Qո%"'-ex5FIc *U#6inALx[ٯ SķL`ɠ#222K-AƦ`gK:jAN$5!UbCop@,*n `yai'[}5s^hǭ ڤ{Х>[P,ϰt +B+<Ҕ ڻߎ#_S.m;?D9l}.e~/2uҿ_lKiL_NR4}i|Pcq3T .NW"VƓFZ#q1?saq:F4Y"x]!Y2O'Vi`DVfQ(|K|ws֢^W͇GWKӈY.:E~Nj2 zweоG*$_QGWەqCz\#ZBgEI_$YEAT$4K؈aU^}$C73V?= & υgw`&vhɂ/+EnBjHIDZތH': 5 zSpU=1J~4ڟ '.78Kheؼ_Xhэwmeo&R OI\ۇ 2B}&f M3[ n;Dt\tټ:U[gY '!kX ZzCu"* ]Sȯv'>c4(n?%Lw22% ҆|auJ^ Mp7!;-fd0(u0奓ɬeD?TH!ʫ F̚Emq1Pg>QBzpifI*noךUr /j>tŗ/_)uPi.>vմ. 8*{. l{Xv𬩚6%94. ȾN5e达Є+/׫7bobPf~q~2$e A0o@..דu0{j⇍Oe eMrA4#Fqi f]|94UV{x+!{ &3mBem<ٻ;;dEHr;4|@ZAP9]|8qC׮UõqU{B@̀W>*,#%n\pAe1ʉț0s[ ׷lKנKZXvK,Bwv/_>] 4Vjt$.#pk l [4j޿{G}>3yJμcB|#@{oyeP);cUHfcTuRf$9anVgM>]# >9)YVFbYUvJX_AWbwt9_y."n[m#_s\:AF"Y}98Y"bnC{D|Сx #dD~?^r&D=bկݞ26@]8W' 9QX5dوf=+K' rU0yh7-Rd}'` aq@:#bTBoAt~ÆG3vn[r>(W> $]tWؘoq2v""e^!E;%)0?]`Ϛ6=9H:za QD$et[2Fx4dơQkoB7RÒv3Bj%ÜG!h#%Ħⵛdtaz笛D~1!N--a]wLR|KI>xǚc@ 5iPl> ADU^>z=4r0м6DN̢$mǔ Ek}^1*xz3WSHUG^aFО}6=ť!Z}0i3כoIl ,bWr[\ͧ 10:u+u(([YcK>(wlth18as;rF+tQh5o 4Z/ؑ{DRDًl@/DfD,\\)H[:l dK9'|ۨctH{bNÑ8wsaS@ ?qE$8.ؤvVJǼO+ gk!hM,pݞ-R!R[ZtyoQq&"$"SN2\x,$^!"D'DH  ^]N6u$ogZ*!cP|䌹S]]6SAϡND?B`pM-%&VcSn@B\I{X)L͙yx*xѧ$'wr;MvG=4ո lfZ]`pv.Y<;֎[b5WV$Ǒ*Eƪ%s7I]wd5RKxFĖ/Cf;!y4<5B$If;ȏBlNu"($3Z/xݾӾqk܅'0T8Q:CIu|Gx4H*/Hij+-ܽ"8]n#B_8JG&Ú \'I ,@\RYL҃qSp8}@kuD|v!࣌sнhۭe- zD}}yr0'j[%Иy_{tq" AM0IQ8^=p+xc.w1Y}yy_ewÕ_ ,~ s߽C`/[Xnj+Nc +$7U[;,۸o|=u5$*C47h1x {ǣUYѬ'~|xTط 4v=o_}cZ5-! ͊qi-3fŃjī3a6@=UR^kDm@zJ^ !6 !aTWJ>E1jɫL@//;8:7n];{ Eo9nXCB @|(!<B]jbW ?Iv''JB/ï"H=} e*;FBϸ U&.plo"#fؔˣ*,<F GI_hy*f."q>):}υ8[߳6<Ƚ sk|xf>9]!&u6v"?b5qJkaD=uѦa_dgٚy0HWC•T: y(- Li1k+Xkvk7n6Pd'f #o*8cʬ+y|3usl-Qގѐ ȼіvk V˛:ǡ+x@аǖ2ԺG;:T@.!RfǃL Vd" w4_*T84nWɻ8/ g`@^f IO )l߅txZ{-#OӋ[v*>H _+BvhLk\ghFۊvz>Ʋ116zjrˡcj:1ok#кQex՞@9,s-Ұې!E|4y`u]ZhFy2|G| H[/ָ'aƃbkbE(M7Bl'҆j#1q(!TO|$Irw̮  a?m/Vg4vFϦ[.\㔮c: ^pEn0/KhJ.ЮM }FGo}Ke݌t/vxaz[)܂`b .RƑtz[Gh+O: $u| D9א;]*JW>fFq՝z:Yg|kAR'OO_ a;i.8VRT{V$gMR$˱繁ON MRz;tq]q=.ECLDmiY|@ (w0е.<>M$&!J)z-S0CQ wճj1ۃP2"N!%F>b⑇/x n6ҥEn7ZgM}=wJw՛em=#b/%Lib2 RI<# ge2j(Dê u _4X_3V?.7ꗓ[F^I;QC 34hظ֏xlI1Act\GnH넛KwZq컚W  %6DݐպYIN}l߅kd9<_ݶPqK|i4ѷulerpeAD}3)Hc]*ZSc!A8J}tط7KP[;1&z4׽Fd-/ϏTrY PKP Z:[vA",#(4e#(d5Y|ahQ2҇b"E~Z88Bd63]JR/مFS,9N{ lr啗3R /Q}fp+'v8WKSÛ-l:C/Knh.o.Rn㸑N FwI&Ɏ]96: օywB?&AVD:ny{A,/hUE*~RߴgN[#^ r1.6r"P8 nx0Au@kp,ayQs~R7ަIG+œzNA\!!BͰXB\TRQ *wNf>g{ yrW(?/7i:B|L(f:.}z &DF$ZO{R/T@a8G ~zti0ɹ4rB_?5ᐟb[vJڊuHVOTA(.0ց+I"Vl_f[;cmg|IL1薒Qۙt6)Ps1caj^ݣ&@ř F`9$K5=)Z# 1)ScX;禨pVѯU"&t,l_L^ StlH:'``|, {r|ЂmM/[F՜;B{o>GBiz+(b@_n3{ޢP Tʶ 5[1*9-IraU&ǹaҰ dS¨mպPf`rlƉp=@- Y(-Aj5rTjR=OnWI5NP~G%#7,^ܛ<yP栂YL`;m&vi^N(m]Ć=IA8Sv5jE ֩A=َ19 a/`H>=HWZ)k'ecmXϻգv CRF`y1R$EM;M&vɎ)<)Eh.0a w`S&Xۿge}ig}g3:|D> iYJ yP,=< e*& ɋ٩ꗙ6Q u(E4j5:XLMSr{1 +q7IP 䈳b2imC* /h~1yŐb;:L AMF̘5x,a+pT@.ԃ qm4+Uqo_qg Zr.j`$b+Tueًy,xXfz gi< 8YQ @ Wπg3/ H<V&)1p';uIꚑZ vI|t p''/׶T#Vh !|kJIΦ͂]3B99Cyq VcEq5iG 9,?G _*fZ@SVMXD,t[36yݏfYҥ]rk=b{A'OmL]fN w`ǟΚgf 6g ѦyZ#4[nk4D>s/%?lFI`+\K HOM8Re-e3ԧ{Ԏ.cV Ze%*}jz W6.X It\ ]>7on] hF8/u\!KAW(վRF`Y:y`(kY%Hkn1w _ٲx e}upЖa`GS,(>nsph"1|kqX;./ʰ=!ӬŤ""/C_16`a49K_|W)c̚Ɍbn3;8(c=@}<(?0z+mUelNa| .mx.ţ\o&6H`K{N8c6^?v/nEn LgMw&>6n#1g4艥١&ͅ?6$ ^i 'żlO/Ȕv9b9tƠ/ۗL˘T Z-bM%il]\R m-ґVvWjIJ '0y0bdtibO^v>ܦmHbQ5o{S1kbysc?z2o,(eGɦ=2!Rcx= _q"&mٌ(sH.TL)2OrՅ?l8[Cw.7/lypGf)zҵ EٜsX5VZR6TS/rtx^;=ӝ}d-8=FOswT6pAE D"Ʀ[/u6v~%nN#Jp w!$M"LT_9t23Y lbm3(إNl޶ِGAtﮱ˂Ȧ^iCD_Le3`n狭51ꋞI}/U묨F&z7<ԝr1LP ?K@iOvcc%Sz X;V&+kr3TvC ǎ5ҵRdUlwwŧ'4 ς\5"[r8ib7$UDl3_NQ`z35?"e.ϋ~Q /,0h3۾Iq ɵQ8DWE~$h " (h'aՎ߆!-AX@ν;kL%1,R2q%5:ߕbyr5`)q3Tw*YLq@?#*Q9~VT4V_jb8A`@/Ы kw 2ID觟C׬nOQ(c\mW#W.$MJEbj0RS"}ǞOf {!;1TS` IҞYC-ae\"kZq?y$?nD?"4u8V-u%< " n"(vn?[Q\+v=F JOGO[6;[|Dܙt0̭ eP \:j{k dm$C(2V%]!H '.Aq^ m H^-3jM2!G=+'^p2 0ʫ}Y$$:B|h2) c%_r#FwG5 G>b4cN#[g+Cr8tq!YʮM:/8=0>&#sE%?`3zd0?@_SmiM0֡jDG|^ e}{ K QYPc)xbAawI#L2?DukLybd~\$mzwțO?ɯ>!b B_~-dcX#7v4N @9s+iV "7V*is>\I93;$kW{ǧ-m5]kܩ\ˈ5;}@PrD{ @$n*H3%Ȑ{G/ݫYBhVjH#}4 vVb_K>+{_7a8.Y!ݖhW( :{:n(TF33k?Nwyۓ'UWbO_/ MneBnb-nˬW%K}mgAϨߩn{XZ/1pB.(WJGQ}*ZIQ @ ;|PWq q@Dۤ0CH~F_Ķʻ%b.Q^UNKY´.F .c5gu70,zb7hw P! otALHa#gXى^h }9W%Bz1l$oHMTRwĺbWAnß/Om9Ұ-q}bs'w7 w:t>LOWsLfnBmo=j^׼om@OmLP2%o&':ZB`10^1[-N15$"L2d#Hp^_;/q.ŖEݍS6?]'~]cuNN>eMIkxƝv_r5p:/\#fGK'F8YA,ڬ Rf?V;E0F^r5tĸ~b'.!GD!euG;Wj B'}1/:a]Z r8 UvtT0ےFiIĠ"$%B2h CE Nf.{jdr gCX", /jnTU˓72$' gb?=.2_dO 3TABNElF;f6ӦjAT<{ Mtq>[zaI  {g. :TO-qe?9699=% \ld8w43f߆ĿPK#xPFjK) Ok-߹"U)(FBl|M μlHo;pCb+5IE@f7$;g JtNTQ(ḕ7T4O}qFpo7PᱳYJJm~F3gU+='es'3S6-vfRϼ#58GQbQ\Msu 3^yvxxZzl3_J?#gLE @N'Uv)tۚ%OvnI֯s7 2R*eܵ*Itk3(nF+u.TYgS&*J7ܢFS$@dryo.,EuPԳ[Ԃ3o)}ۧ" @(DtrT\@c҅qvB\zѥ64rFN<7=V8Bުjqn*^Rrd5ϩ6f)Z-7n <.p{v0v+_~};3I jڝQZ;\H&7뉧vzN2*,zя(>0o,2#[+_$ہsd,xA%ڱFf6$[?Jl9l,Ӛ>%Ԕ+'%pBsX0a"+4ō-9olhy_(@lPqMKYG? 9='? jA#@%zyO`YZڣ.oNv7T@Z^6q}KZƕ,X"_I7hٴqrQ?O7ulH6QNAKh0pZS`Dh{1+e:!M`tpWA&á9e%j}0'sWf6D@$g7`.dc$|ANn0gdUe0FĬhU4{q_u]>\ ulyIzc-;H*ѽYG)IX5,#u;m0x7I0W[_f;r]L 46hNп[ J8y Gy!Mg%@842ڔnhM5a'=*ܙ'587z B*R חE9K}UT! yWZf :kI 8mocUe[U36 E4/ /ᕚ)cr 5T;@ ARhi nϬ]wX@q [:w/QٝCw-7.h l̚X[JZ 5W%b7fI g@C6B\2;6N}n-cQqmy3d #nF&Ȩ'&!zl@}su6tUE`Rvrv5QwU`g/w]he|_Đ [2KB\]J.`ZY_lpRrBbc!HJCAtV|q+Ү]Ѝ*_#{St7BCH{xZXAHޝN@/hC/dKqL8 bpt1doC^FM {[J,PRô6b&pyV|(9 D]x"Fu\D;0&k?g 0n}Yu[RZkCT1Q0u;ia/,GOOg\ogGWF2.I}NiR0,.9ː4UM/[zT,~:W Ŏ5hU-ݎ1DĔ,ѹ NxŘޚmHj2vAeq?!% 8= RUNI֚\4@{Axw+2YEk80MJwЀkc ܮ Anq5&/z9}򏔭3>T_%#bxyf̌a?VH[ѝ5%9 4f.HhL-BujybC{_px w:H="#Zpf_qrR1{]b]Neס-A EG?}҄oirAK\7XP0&3R5g ~'HVl16P֥S\ÊWI{Jtfj)e} Aw"80f4Sde#.xg" Mր"B&o}Ad+fhI MYojxb 㚵! 5 !n&u5A cؼEE~yR쁝aCTh~lj"mq:t^Ua[=A0l e;gr)NUMI0{:xݬϷ:2ɵZl&DyMқ 8Qi!K81X W\^'1@'lw&/ ڛq~?JJ]nBKh 5ԕR; KcZ]J ZPZ!Q@3ExeHDrV]}9xhUtGhɁm74K]#8ٝ~g:*hYSGun ]6g(1E-_">j!o<G+g!Q@FM,^WuB3$EF[6_7ř^nq'rV%Dtbx[HoX*F w `Aԟe'inoZ?{)~F4%CGXџ~1~"c%z{4:n!@Kȴwhu-B;"ZZ(U_2ZH<֧L5^c$= HDfAy.k"| "Nks:1oF}vmC7*wƆB<^C P1q8cYeK4!KzO(]WX32't^.:˗phAZQ#6-.g [^9+g?g&^5>Hq|v3,uiXvo+% 4܃Ύ76U`4U Hb?pp$B_ϑ$˄A @; ~O"V>2Y?١ܒ2?q QU`4ۀsF-Ȯm&FoOEIXԃkT!V|2"*Ni`S\8F1*yR޷L Ѡ3kggS/ҩc;epj(jAaԤ2]Cɵd!TU0C 酮\i D §΂rė~ PeO'p=xm X /bٲVb!}Fr /jKO[V&d&ݚlF0>Vr@nsfyZGN8㔧ĈdQl7{Ο왳V/פdNez:` GpF*nQ G%w#aCxښywvJOݳ\TK?=ȯϨ8?a+*&h,#}7-PIa#uMrXw*.U^gۚG-,Wx5.Enfi6gɺ[}&$N\"eP5Ԕ%܇6)` aNпl.!Sy:c4>ل%MEcKDXi*s>m[ih'c踅1IQSA ǬM&] 6P:Q3Ce\OQ6T`_HdJŞ,ڶifv^܀^‰?Z ׈ѱcc}0 3Ȣq/J׫Ө| NH& Q"  6,흤qTťc-V* ￱9GM.y3/i!2SI{PĶ'+s@ f-SO:Я0>JύF7|w.n8I&.Lg8IY T+ٕA (Џ'U_ V%icBT5?4% wQDQ<2=bCA_Cc\CG]i2\9O$r{aiz-Zo 7PF5biHKE0 4pATǸjr6VcEl؍\_Z{D9 %o4'ϴ.mpY|'23͇^71-"yURܶonoԜ1\bvE"*hGx6x ,αAA +G>Dd1DSkȫj40 6Y`gG;OH0G^-Ѕ@0a.f&}l^]J#}c~',  dȽqr< ,WI_dp*(@%13eb1?GbyzqKF>/XhM_i\HQS]gcP7|m;+ {%!")>&bٿ x!R.ձHXmG=Z1}2wW]شR5E61U~ oK}-’xyV[/QfBWכU|i_3AȭZ$=fCgיDTI(H&®,箲0*Dr;&d~ʙ:B&G;FqhܭCUo c)GN(IAǮ #46y~2ˤ:k'X3!HAi$(>Bz:v9c$74iχ%9vR@ދY}ofKHc9ꮹT\^ɩYPnB0G (0&QPqrǥ)öyoZWٞYJ7KѦmsk>&R (z g܂ l$+* Z-XF7ru< 'n%X4s!{1FEkp<_`rk"NPö"1(VlEWwJ jDtC4YNhdr(jn fyp*Y|2횶K6XIo _g4&-ZŤ- ϬHH1pgh쐶5[@0WVXKj\+TPHaa7!1pbMtݞU`HCM "H#P,Rn"*1Zz)1s'}6Q P $UDs홙`tH)Lɍ '+w~kcv?x3y>FN*x;u]y+Ƕv# tA=߻v.)CH "eԅFb a- ykgHp<ߦ~J`T CZ8(mWAAgc,1Ŧ\vYF{ETaWqbp H]P nL[4p6|U Z'`X"!C/;$!=կxv_{E% qkIT/,Ey >nh$L/jÁ ߇^$YW?o\zcsqM*}bo]pp.!rg#Y&f`OP[(1X޵YZx{nbyi >-g e fp\SV] UjR'IVKEg2 "ϑ;9L!,zKGN߯SRϰcdB(a/=cO S7(#4ns5_ubOz!yv❈F#T~J@iQHx?[ߚ\:oz?@`hw_[ǠIgy{>"h_TcCR sdA'1qlK]hx2!~nQr8o)8[FRQf(Q#`pS:@Q>.}z~V*PRTtzwVMN g.wb/o#_$zԿ$u9]tTaBJ!Ol`Y/ma?++j&0DHv秊*yjyRlzj kJ gVq&)HDT1UzºK7 ?,HJ_өbGbрe! L/, Em_!D _e(y&mM*;|Bv\`uN~"NA2J'Ԇi_q9p#G鰒86B|f,3iS52wF֪I̅5eCb|^j]wDG?ao RD^5`oVVٔjOU#;~GT Iv\XHmK}@Y56ݶ9~(J\!&E~}п/JsV"Z+!>F[H;=`ҁlMlf/7Mc"υɴ 8gq-gKx&@ &~4Kgv7Lss#!FkA5XxQ/FQ4-=>][z3.) ,,DzN ;m d4<!H4IbkV)O\a߉)Re\fVOaa>)lAUbrWC ]bgb$޼^ 3R%/;DGeŧO5 ڋ@e!D}iH ) S>D@du? Z9^ln(d@֎ Ɲ&>8Yڊ36y]}.7`"w 0hB0T}*<O+p3 fF^4 X*&$,ыqӈbpD+yPQC6d6(1]Q|ܲb1\#!9$?fPwHz;%M"_LmFrmmrR2 ;qhOu(^00H: :UxLya`JV6TV,&(ջ/CASUyIC*Ds_2NcR=mK8 C)!-Chg9 pˎ7}HX3g2nɥjH g;413n&@:aU%;" lhFGQ'@DabApv-Jdˏ*B lm޵9:=?ָA'X\R)N2֝`&ρk$pjd^dRXv!fL,x* E[30H -Hr[<2_Sib1=)+XKf`F7) |'O`W'DWѪ>CK .u h&w˅ڀF) B@R ]]ηE8C&7{MCz@,=ܴ(ĦuuEðe 7~'<ȍ2T͑Mr w&dTՇ$j*Mr֩_vpd~h!AȘƻzQ#4)dC}4}*E"sW>l\@~$8 16V?%,[zDɘyxFeO 0!@h5u'G]nDw̦ܢǁlL$B H+_UuH 7W"vOP~t^)&}aMl&a.Īkܑp S=;$uU* stp+(}.p)bHf Č{d0L8 _:# x+m'T]ޡrBH=,>yEՙ Fdokzcicy |JX| P6pseZi +zf%!ɬLYDhV+|&ںeݶBhsQ0C~/Kw8[5+dc_-R_M_LF!5LL "w1^ 0n8[h㎱]x ude0caDMS&uA 兴[:7a|-f/~t1:QhVen1z1&OÇ:LΡ 6=Vv $aӼq] rvg"xpؕH`$R-$"=?s\ ,CFJUOn)F#urIEuuȗxCE(.o2ۮ2WĹ;ČSTqyY9 1Y|"~o4FKHzq5sđKck}釷ϣ2|[c{1-DEq+=Kp 2_z={#pNO}Yrm Ga% pN=?5jIȅ ŸF5@y'i QTHPE7/1Ix=it:LSA:FZ >`mRҒt59Sю*֚X0!DH+ґf$~=Mk̤4Mʀ4bR *|.Z88:@sr ~HEvksͻ6^y0x/V-eT;fO  e_1>L알- #* BgR hNk;2ԉZL.(tvbT}AT|k_'ڃD)37CN3ZjhiFa&hk\8уXUV& 2; &!){ xI5 q㻑1ckW a?*Q¤} )>J`ASZV̉ssy]g@iŁ(&*RjZs1SI L^Ygip7gze4ڒj\؛Q vIs9 ykg,+3$~[poL}ѝ m+sGHcSbd{JTG*-E^'jWm0D嫟xGd_hَfb~ =~7G'cfUzTXvқ`1 3 dpvj [U{np_&iRqp'p9oy>+/>!-aޙz5*֯V\-OU" {b&Kӏ!O&:WMts~Ź )vU#5N; =ōgIhLL»r &#tC8/`[JRt_نp@kTCÁؘܗSº')ts(_V;W&1<ꍵlUx~mكd>@I $+f5G[| P61+o.\Eb()C~?Y/T-Ɩ(W7zsG^BGێI;Kgtt2'_L$_##BHY?9 Ƃ">Kv̋NQWo)#i,xfMSA;pEmh \(geo'% )M&7qi{FQ{HYɀ:b*VxT~}ib)zS^!s$/ l_;IҏE@4 e>,D}&.i?'T YY)Ϋ kE)VV<<# ;. &?7A*A엧/tB}%\:#=dB;vm&a|pOOH9kT p/2iybҩT1(hѲ@iȝ2jJX`!4^p3 .GnF?ӸUX +Eղt,QM]wϬc2o<w16ZL6acHͩsO$pf2ş7pF#Azr#6~>eo7@:x UzH=7#'oan k57snʵ<_D;7d?|X%n8S#LD)Tj ހ0i $E&DN{E9,8gY18zs!ŇKOVV!bH{ΥQ-cL7[̐S$U{ƌF# \uN84[=/fsCM%6GKwA8R@A~rvBI!-%^MJ8bP0zkK 9IHF=#_/.-ATH@m};wI H!1ۆ&?F`0}I ,(/Ջ`9}9t:enwE7mOE?Mݶ6ҫоM/6!ͺӃNrB=^dUg{M+bEo <-ŤhR 7C{ʋUd7ٻ|:+ZՕ|ÀAtSmҋ+Kl߽fOeЁ5h[AXmE#mueJySjAX=æ|":ǬTb ű_TsX`n:p L |9boUwrݵ]" PbHA¡S ]ǎ}X ;`)YhᴫgؚylcyR{1 bAlJB8Xl-/E76{ۣ)!T P-LJ5_O=|'i#,BI+Bw+1+&Ejb],2)^u9{537Bͺs00IXP@a"m,Cn1޺) g$b ʂjuOnՉo/S!3JtFaEWa hJZ q/f6"k8YDfWmQ/(cqdF> *?ػʕx%"P=?u)m(eW͂qSeQdCW- 8U@Rq?VKo 6-m<%](ɼ,YHw?3hSD3 $2,x>Qi {)PrBXDn1%C>AETe,={xhyOS//g* fʲ3\wNB5uHƇ&vCAsT7Af J+?('J!tԔ]7^z662ķ.~U5(T'XԥE2 =Ӕ!*A6 6NJC8iCZiޚ4*X#)xbw_;{)@ݸ ]6q 뾙$k!X.,Re.-TO<`yQwZPOk_q$*ͨnfMu3eƎD*h'\v⩤ 65-\.C˲lO[$LgJ:¸{g뫽OS,6g:K'f{"b9N!qshϓ5hsK(Aцً44X- !d3qq~pG?W*p-~E'gpsqJ, Rz.ɯ~`~s Օ/,.ԾV?!m:bxtM'me@.ЖAo7CrĶ66Wŧ }E3k[66%Id./G-~SbG.H*\ &{> lr<˂}[H܈l]dtuUQֆ/uEGD4{JqsV)Ф(0ڞz ݃+|>mQOْU-jOׅ=EɑyfLk7LS5eSN4A=fŲhLne1.mT>zNK"i_QieĖkbF㻥keVUJWw377x)zkCl&=^mwxtݵX%&j"}S NB& b᧓gȄZ-"-Bcu[hv9 ]cf(đNw^r2 2W4[pQxYqG*D`llwÓ`3./[俀D$cw+4 r􈭓h[kC),i'ٮЭ,!±1]F>q )o 9 ?RuÀDp#WpDn֝ԣG_(8|D.0"dKsG@3)8[R){Eh-э:mD^aћyw S}Ƴk/!*iP'XJ$`)7dtYFMM7epF= $gSBH,pԺЧ͠32tMH_{i|6(>AH]@O\34XVM".6!fV6DՒY;Y"<sŷx 423F@-S? .'/jt k^\<`vpȖWB-SqezQ7_]3Vo5KQ)4;NZ{Vۄ6o~7J!q㣻vST/ZP>2Yj8,mŧ~PЪ ʣN)[իb2鲞x^!?ږ"VEe,Y5 b`4F*# b%sIx/7P.nNh %moʌy'\,1'Uøu##;NÜ/뫛7UpvNluB0Ed$")}Ni9zS6?]32Kd)NLa< C(q<(#~xCX^ȃrI'bnD 9r@lYd)2Hs0xSٷ5 Wm< yֆ}\NdQkFǯĀU 9YYl|nqB#GuUx)Gx^ "ʲ7ɛdlUƳ!v卜hiBLKHKVԻΦk)O.٥!ɷV? АulI&?Ž˲#hg{()Q˯;^"$C{#%+ưbL /b0*>vܡ$6w˼0G`?"ђ2Ϩg$+ %f]  Za{F>v<&wL*s'7F&RF`W7`TRѢg\ǂڿ;9{JRD Z;`8rb48Tپg>CF@[YgnN*A|['ZhRdkQK"j rX3(첆{DbD4kYJ313<%̷[[wYlDx]x}@9 !yn$Lс9`F;cfP\y[\t_)&]2 l d#c!4єH[\'GOuظ1C.-piSaKn(MWXRiH&%<!aız;ŗ#f') -͸dYڶE5,y5?ؖU‘ IjV`l<觼;nwBз{#3Wy BlW u7mu,is*\?)8"mmu+[FsM5Q58hoI$Uw3o925ؚ2=-GN8=Tja4{ k|۳$` OG$~J]c~&Ac7 zv t{#,0xgܲ,pcT3LB,JIm'r^9Qp|TŒ,=ܿ]Ȓ'4b/JSRgAR?'ӈ>5n1R r1 ;k0{^HXW>X`NP'5vqgV9[[WTOf^>?X oZ,cYo8C#sriz)uA3@f37v@v\6!#:q_G]uk*{Ń죨|HDRz Q{YKlri#K]ۚIiRR#sÈq;c`BE~i>}F'\8Ͽf8m 9WcQ/ZwL[7lR${H#:;7FdB ^/%*fщC4|@Gzob<v'諁˲`Iw`I ^zH84aZGj?; j_Z}t$gA[hq'R #xk Ih5W-dh L5![I+dw$di- $ba].EhI(V~)'!y+pkXPJIt 5 h!J~$Oy$%/B\:VB]ܮ xq{uė_L]Rҏw%J3dt 7xWk&=n9_'˸RO>GȾhiwM86Ԛvi=5isš`!ŊX<_2g@e7\gpaFnMvbiy fp[Q6q}%m.7C`{1Kst|,7+cwe7Ҷ } S% ~"-DvO&Q|h3uCڙ!^d ƺ 45lhu.+\n D]:ul~]!ݲ-+'t=IEvj\-94d8Qgy ޯo `3L3kEf߫콏pgO]Ur|qޠ`½̲f$עhH~Ē*K*MOWw[Xl LJ9Hs5f _^N8=-Z?X^z/lDC3O ֑TkZ43F%׊ $)QǶiH%Uk}8#= \ {74x<0>NAYߛԜpvT%@K+Vn.׆sS*JO >ܫ,3dJͿrx̽JxOg W_@$V:ы,Yyu-Y#qF!oh&KV!ץuWxԬםH%}|PZCC@eC" G"%Pc~V/ :xZo"PY0)Wg06Ҝ?%06= A>ai @x]-@|{L2#[qnucEGJ,uۼ,HE洆| Ezo̬½5wq՞e)NQtBa^W}:I:{c\@ HὯV%&%( m CCjgk7*5\$a&kߐ-q2Syɂy7wX{`tH~fvDu] Q!;r`?5̾5R!bъG 'IbYzp4[yu.6ď `}-8j僾P=gs ķspj0Yn8.2?fVwp~ݷ1߰! `4dkAC x#@g MSM-SHeZ$OVfN>Sx]N{CM)3S:VQa.Ef.rs6ю@nJ#H"WPn&,G6{w -m%zg9v:DE(<31 WmBBz;5n'5d)E< T@N& GD!71bs_|;khj@8>/Ѣ *ʱMg[7}lnLXAn3 In]W @ʳhxA+\}FKR><}m5 SL_ `J "o4g̖0͍8Ŀ&8sr~R;ϑJA HJkQV n4%=}\\h(0iɴϧKm62V]>};(ɹ]0M ׾LަLPCk@cI.AUt6+hI,>bhEը5z=!JjE#$O vb0>A'3W(r!W!dӎB'Ա"Ya:D {?~D+-0OSƿVubQ~WPb޷m-G8e:^LeۄsQ]Wan@k2dݼgS)ϔfʹneN(. Y[BpJڠ&AugPe}3fYTeu!8v^ vN(KTjV|4IPB=9;ZU~mA/79S#$Q_K`1|lo WOۇEReMI\l˒Γ'[IdU>wZwxpw$\^ .|%(y2qQ zrkVFxQ/>]Q&0PHY4\8@q17YݥTtլH[۞."tvuʢvBC1 Ludy νjCÚS1Rұ+o;cJDr^<8>Y򴴞5GV-ʾ$NQ_| wܡ5OM9v'75GH LdR?hrMR6WQ&}D}wQO:DJ#\I\_+"8׳P34?Lb q)Y|wz](npiN^ۉ{M*msT[:!jrMXf[7$-R\VÑ&KO fE0]آ_ ~%͐T1eM%/I'g>(Xwb%Si `+JW`:kbpS):QWX2K.!:]Ydsz0[aa\8v:CG;kہydQ]^)Ty3C/2BhH@h[ u`huqd:ڝ$X>)f.9nbf,aZeH\̻rvV=8򎎎0?mCFp>z7fb_TWϽI$0aHB0_Xt!VN*he>v)]js ҇B KtTL+&K'IF@`[R0̹ ϐ1Z!И7*Gr;8k{5DHeGt p(=NgBOl_b\8'N=_ fˊ95ɂjVdq"cd#ce2.3PmC١Hl"V]Zs>ElAq2V#GDG3p%pu"UDE !*ۧp挒Lh'BSTkdS#TZjq,B_BVTMnT%HǓq4?gsw$1xľ>."î/,qG$R7lەUmL> ͘>\dL׆n7%R2).fZඩ3ۅW٣.OK9ڣmU3&ΔRbHq1̠,΍fFmǫDu퉭 LgX] CsNKPjWwt /, Ѳ$H2qT("b$E\K:罐.FWEt+G2+Ihqf|/,I^G2t@@\=N"sY\gˌdbfHK3nk#4@6nFLB~ۿ}GcC6Q:b]{gy+KiJF'٥\S->jGz&Z]u]Xhyq2**=&xk5Ɇ/l3 a#N'"NbY@:c%`7k!y7 L+jxDޣox dρ6pSd 4౏ Q6I;lhʼO[E:ArH|Ai'%?A#cZ\f^\w['p(};v:sk& 0+ IBU L/J*bl|]ƮHlIyaV̶U,3V*7T(m)$>+=ҹ=r~{:g+fJ( {OtwrjzAt3yhGo 潭#;X>NW\zvB|ԁ|wV;UĤks@:7ICjcGdxk(%"xU #T`ޏÕALzVgMA!ˣ<@4ө%m[dRs1;_*ƘgvpqG.Ee w" fLy@8GiQMb(on92`êMLQ5`ij8@:V|"(EyiO6Qᒼ~$>\Tpt`ŗ8Ӗ+ǐJ7)-\L3?uHNP#v:*ܮ6 h5+TvŴ䚴<'4/ŗ%f_K=u(?SX@#n&e$9e/ׯ4ƚEy#(ئT&QV{x(jiv`;嵳7F H0?FY$khӴ0;~cb ] TmE}+Rox@x(,Ѱ& IQL^5bvrO//Mp ǚ0%f~iC$S+IvIV M,/UT!c-Lb,Lf44.0l," x+UߑU\W*|R4?.Z91D+ oNayWb3d>4+C6 2M|H4#Z&QZq;ZشD{/m*dIfH|h0Z< v}b7E~L w4Чaݿq%pQ`tAXs Wx}?| 8':}+䩫i*zQPɏܨ^PL^'M$~c< Ǘi9H<+_݆.0Uo~^ysV/=<yДFԆxQ 2QIrS :%0!2؃ybH~aUK#_AR={9YNn1LRL c7ɻ߂\bcw)4_8nSN~]7؈8Bo(~Xv*1ђ,:S[zwSUa9 8݌+DHZ#"\:҅ZqdJ^rʇ(l_XVUPJ0g#&gf6q$yД]y> bcB'8!ŶFֺ;4 O"=Ѡ;D/h1!A$L) pE< @͞IkIpzz%&X-_S '7mE_6~A3o18P@ φl|$s0I0u;03UP:j_o#t? j3oZ(7.TFav=:G |_cSΩPM]1ҎrfNا+Njj c'JZ*s+{ :< }$l/h8cw}]a"/onE"5w- uw/' dIL糫t_<۱G`FgTXVEyS_Q;НTVjT9 љsB^zgq2)[Zir}{S_%,gR]t޽"D/?_:,mPsR:2…ux*;Y}ιE4'mgS>cۈZPmëˇޤ4 xc}/M$G$l"'ElLA'VK.~7\3Is٘^/ #|0<[\?54~)W[&3^<-vpeG:b6!8&Yǒ3>z]Ih`e{t6W75׶5F? ={9|9e:kNɡvy?P$kβo N jؕ07+uohYnyO&vJQn*HaVN{yٚκ>zC(+S6F&/*JODay -ALĎ`>Z* SBe dھRRkbZ$75u(t+:oB2} GݥZ2q۷6kQltk/mحln#GAw;)@[&NK"߽nYpdgƁnjDs7A Ύ\1{(bf!Τfy͕.M{DY+Z}!qwd5]5jt)8}ml(_b.dwz.I}8Nmmr3{O\9,=1d)!E[ArU>5޸ܚ"=j6_*qj5c(kktPO^Ub Ir.Ŗ7W]aCDLX0*:X.}Mr-Ti9+p.x NzQt*.HdMZznlhK}/hxm9}+'! Q"޳89(_O/qo1yt5-^F68E镆Wd/+V>.؍2q')ک0 I'cN:*2OüB=RlhC4!VѽF-T+OVn`ЊJ.{E s-X"/z(JD3*\zuL66AOg1j{^+[$T[_ۃp U*yoLq%ωQOUwɳ.|cj&xO2LӔ])S](5R.M "̛Q?Q* o0ZG3/4΢H7ѶC",H f mɎya0Tfcwٳ#2؅kS ZPV4JpwC66 5!5 [$*7zl5NСA^闚z߻ \hg˒=BL-jQx`9َte}=D̎˪ĝ }d.VoԣnuרW`y2jNnNc>e"^hlJW"(51[{O\M.t/zf)jnjJ_rL$\| TDKJvl["]FRg1ʨ13\o;)DAc@Q nQx *#c#,R#xD;h_ ^:N륋OX+&$0e 6g—+Y@$" =‰M,9׊I"Z!4S/1[_YbHA[9WEـr_ܴT%HM iE!춄_`bPj ɍ]$5ɀt_hD*9Fᲂ/5+snl݁4>*ؤ;O 2~KZI 3)O7"ԍ f{?e \RE24d@gUb5jg_y(] ׅ xP;*bHs*FY uy$i$> Is!As3>>#-ar,JfgV^(Iu\^ȐRPUgoDY ƎV0SaS"$M۹g:BxHHAE(G Tw;FQfb}=,d|F7P1^ip[xdK%ClM³(BH;Qa~D2A}OvʇұqMqO5W*B Uě<z0 z!2m*_@|o+2U]kK`I r;vK(bbO3,q]r H#v%4S2/"m C1-˸ft #Q_u-`Z%"mw(2B`VЛHŮ9TT""q 7"& QŭP!o;k/эnsTV8=LwA7m ff4SX>8QΑ@rV 0-Z'Y`bܣP?5}i%];hit.lR. D53qf*ueYwּxXs1QEPAt"Z:=`#2 vxӽloB!۠N̨3T 4gR'ŌlQ~NCĖA6wgQ: i ol3$i9K&]vYA[o #k6-aWN6|be|n#ն N¬$Msݞ!1q_nN|c掮_>I[)EcԞArm7eZ+((8-Y&5L8[t)6]3(X~yqILś:Pgw)d 9tqKu,Ű䉈5# ie @nDghם#ia~_Sb0~:3kG ca/Ǘ+5N,թvDWvF);tz<;Ĵ/v[ίNBpcձ>xf<跓ZRRf vkx}ma_TxpX"cibN Lg'o :aaC`q1=0Jd韐upr8K ⤀umA 9^8ORr'\MQ#0X 3ylE9ݬD~x'U~ǖ5顉}1 *}=Fܟ$?+܄mB~,ϏHKXOV(͘|HL_{ƖZqzPPY}V&˳RUMϮדmhGc4"n~ދǵ\N::"_(5uҴ܀C0Ͼo E&0tp3$۩ײ/Wiu1.?zэ̊׀w>A hA"%#OSm+8L&[oB;Dd[G' WK=pd=t7/)f@g=n+z5")bWe.~h[JQP@?YzOrd3e,=Od7 ; .rMp&xea)Ij ʲ͝p!Ev蛏Ҍ{:EklIV+ې(l}dK)Z$CLz*50Y06ڟ<UYWq:X9ߞpA< zÀ B%*2YJ Rhj YܣAa(9p}IEޕŏ8&u,Y> Jئ\ )9`HM%!>Sl7JGԚb9sas(27B/6Ҁ>JWJ]w̝$$/&*Ѐ Nʁ-ӹ"UZEoag{T%tGM> ?|eIu| BlgsKPYj\P9M~8MTM+a9Wkԭ'_pqdxjynf of hS7/v({7zv`I3U"{AG*sU؇Cz,$e#&zfZGYh ho|`C ZY[tttmOQG%j&Sj+ѺiYf7:ftk"h'`8st|&zjpg]m#ũtOC$䙹[tXXp8UnEd D[:G݄a, r#I_eɦf0Ɲw(Y+H@|/Wo"Fv#X8vi7 nX c9?B!thT`;<9G3I}gd^|OOTaeF+ ǜ@b 4X+˙iYdex|NDn\2Tiyu{P/)Za&kvpL y{Tʀ@h%(q7Ŗ)Ɠ5m-ڈwA:NkW/`1l̔\=ֻ8Y-řBR.ؼ ^0YžWS䶺 E$]vo)!儭A[-/ \Jf俲@'cp6a^HGRJ`[DQ}"ŧyL_#䒱ҫH_駈OaM kmV5͝qd.H}lh%JdSΤK[]KK]>8^qc ~9j * ЌyKV nEoCKnvq-dkfGȃԌA!χ(CAhe!>]s0#`dB{B Ĕ@pY!-:p`P)2? )gJ#좖\ =rI}2-aۿ/z()%rNSbfb<kU@-riwwÛp_>I0}|WUF*l-FlװR3Y'>aZ4FR.-%IQ1+S,i>%EvZȹq$x6^ILT?,#]Xk5-˃X'ɂE^P7'lE;WQ:۰uYF7hm^[&~!4#g)٧(r^*ddg -vJ>խt5I|ief/ G'>w|Qz_tqEo:m5֦Y@k1j <{j,<[A`?WO64ewh'@3hGd}~E߄ڏ*2 NAilMO %'s+LbA Z92Q5>Ni#B Cv)9zϱM"QK|kvXy!R7R2*?U65_Cnr@Ms4/ ^I9.)^LPuo4Krp USOrDn[KbEfBAwLL_'^֟0rt.0>`^pj}ΥE!B &⦭(wSKk-8 ڠWpdD+G~!gyTH*`5"D)>Q8d1C_-M;^y;[ӡMĂ Aˢ0^aƦR ![%ZQd+nc[4"{kFYOl#_C,zkrGDn靠ӑ)'Öc`R|2>(y}OaCtE"IF+cx!qj kܵgAn s|غfZȊ=7^Vἐt k4?@lj]2CHReL~HRI3qqE8KJБWjſk4Qo"@ջqP\)rEʟk_(-82*L_B^v4`8u$nϹp_Mi95;dh0AZDA N͋֞T*q3N[ߚ yVjz~1ޗ2PR&䆣5Z$ߍ^Zn NJ)Y[:ځ"zY74B Ԅ% H[v(2Ȭ= +DzQ,w7V{ЬgN5~Yb[Ǒf,(:JE{e,Kƛ$3VѾk:s;wmY~abpMtn,A#45^q&ޔk͎s#it AC((C+S#>K3}M/nƱ Qɟ)E9cqkmR#Hꃜpޜߌ:VAA[Z{pi?-wZ78^jةt@_x]wu I ?NjO ͕,o*WӒL5V/3oWח3]rqs6HM/WgQ;u-> `“f&tC{EjtŹ8Bv3jJ~Z~;5)~Lýs*x0x,(XnC ϑ N^C]~2B`2y5\-e zit5CGݬ hJcMgtZ(Txp:L-[ӸtO}בޮn|Fߑu`!5J'ƒC?2Jq(,y8-4(a")m9Ӻ 3*gPֱH/mN˵=J5W,|Hj1st׫fqSMwDԹx^ՑlѲz3c 9q 2LvZ;5rdf%`NL13:]<I*Cexg(_VJ®ݱJSiED R8d4 p2J_g$ʻw5b&S 崘IN{ϔ#xA|BIRSc}?zX-nPY8@)2P =o,g{zJM.K2,S׉1h+gќ IMN%͎t+!j:l:,u$!SY_+}ӚL D(n}B+4vp3#.bL`` * OC8'&iv9q4է[ Lj LV /N ƻ+bri_?0W kjEj[")&Cw$4¡Ƈ^sTe,Q-R{t6Q !CS6!UV_S+] L""ӀA !_>ϒy? X:߄; 'XПXhh+xhB2"YjPYh2k ,tGHcK'XD|dȺLhW3 PאB֦8^{΀hBY W^ވG ]ZPFأu -~3"!.o%.1t+{;ͽlZ-)L%hzs0_HNʶ\`( z6.ARMfAc`AB& 6ty l&}=;GE[Ȉl!⦍€^'eVQr+/Yl(t}z۴oޟu]¾D`lhln뒗=jZE&G߁=o{+2MNa/uq>F*2s%9 ;'8ahcp@|Hg_rE/#$x? } %s S?MsRɵ/QWԂtrB;v#K8wL|yieg( pVmJ^:Ul<*̨ g0pL*檚[Ba]|뼧2 RXCHP6;\gyBm!,Lĭݻk .+=*Xy]Uh~!ufYN+@XsfJqpZq4?ŏ-x QEn,Ke.= "h{=4J&iz.$fyw旎Yh**4&nxf4e9W ]12ob˪w#U*QXr=pX6~=.ƮݢL::P,y Wh>|:jRиm^(+|է)r}e*ӫ;Ca[$ĽiU<"T-*0P4:A/W!SՌfal &L4کo' H-TwZgBF~Ȓ}UvƉd'#J2$2s&*&7I5]׷s(Nx]!U, DNU*HT;kBl RhmO LͥCTGf-!^E0q$:_vF"`Epߪty%M#-r*7b= xK$w(_ێɏF-#}+OD)" ;=GĿL0k`..,K@yV>z-Ab?#۪9 me 'y>\zi,vzzRtN2v uwK'=8whG  \̓ MaGt8ځù1 $O&aQyY,Y z#'d  r$*}*}9`'dT oy2e:{pg:#4;8pE ѵ`\ eVp.2:%j/9x׌o J =ҥx.y sHME,N{ /H#LfL$sal_rс wk+QIG"+ׂG,w}:^{eK4fd(l-@dS}XԨ_8>"H %_Q٠-,&{F͋(m(xs(|yH_$d)mM,2YBb~)m};Ѣh80"}DJ 3 h\wABJ~5 te!A,k}e$j[g YPD%qan/ N&tV9ڭمCO59~gPr :b4o \,Ck[:Ϯ!DЖa|+瑲S;cl7g|^26 %7CѶ;J0ݷWg8b *[2j΍45GGW)glнat9𿷢>@SUq\eYl_"M]H k[LDQCԐO``.H\kD@g ob~^ut4Jsy z(#K |ce#D}3<(7kۘ NڮPRi5SkhȢ*3uN+f{}+hF)?T&m4to #*rE|{p:=Nz?Iu#jҲdMgf$ HA~,.[FBf~O@/N(|n 푍9Emw2oggD~5uTe ܅kTPOf@RZkS3^Ͱ % ,Ä l";mG1|zj*"R; w1ڼTtH 8 % 6AGj ]{!,p;˕f9)op7$MK8tSH6s25 Lv$;dm2IF)Aa wꉁ>\{R>81vIZ0>hˇ9ju?ۖWR`#ᢛ7|n=F;ϒcb/K"A*ІJjTStaj;Wax (yնp, DǼtEHtFkZl^ bvh䠁GRrVy&Ml|S bHcy)$2{E 0Y2nhiHQ""N%I (+ o ӾO {| YCL&= FR! 9LA^BT<ҳoiN7́>Z))3DɁ<0m2-7L" J)s1vמ<Ih~wܐu׬ݠ0kBy18(2HR \syh`DU*5M΅`0OgƔg+$ >]*=Ԯ$=8'/Ǵu%).YĩP(Q2n؃h{!3?z0]a_d8]l p걲#lh1 4Ck<wdJ!8 t}ۂFp oi;n8'n5Yaw~d#=o: 5M$G3n]uny2n^e:޻qC뼺[q*D}tϦܥWEb[uz/4Le6O;P3#GC^.jZ^k<'΢{]H{a7n|02@>+/]- ۺtEBi9@d۞(|'N+17䲖Zㄷ,@o&Nnukoc?za=rZ͉e#%uΦx|pGG( j0$}d*pl%:5!m8K'ga*j x\s%TM,כ{fO)d&ߪMqp {]JJA &1VDV 2q_h|^/yF!q< wv^E6}3Kك$VCy`hde+~&ٳ@0@᫘a6a唞YR SdyAXTU< >r:T}SA:(~d":;0 }F֫Wx_Kg-;OEVX!{(qɅq,Ǧ3g +GD<N?oSz\s^~լi~JKp3Wmptu^UBcƳ}NKo+#u) y.giz%=0_O_ {ぺKpʬ;&fm3]kvdPQ9e|*h!F0`\n]mYǼr#K"Hi(/()iz9y${`aCHtkESf\ tj'(@,73-G,Gj0x$I<&HZ,nʚUubJI 5ڛʁ!1)/^﬐31'ꂵ];c=u-/(l3+Hts3~tg%3yy\Hv|!cQ< 殆ǻ3+rxk^\#S-sWG86=)uܞd@HSϒhRc2Gˆ< !Z욟qND=2A #/ {e# 6}" Tj؇XrU1 Li{#4f 8@~v*ed-8䔷Qj`7.L7.~D攋#ԫ}mܬFL6lPF`-R muȷ8:3aV/:?o4$őN8J",6ݸ EnK^Br$(pR) Sks lp 6q -mC ;rE MnD3REœM@[ 4& hU5/\yw`.<&3<9ȃnn-4h)X2LlI-x@e9nJ k.ų&i}H2T0]6ZqGiʸc"Jjr,y%rȐKP4%1ز30)YY_ќ'J16.c,$*Đ@4 x*3W|l|"̃]Py)(#,6v(;Dfڕ#Sq?W+{vG1>4.e;9QUC+@:OQ>9F o!<,Ł {&ɏ| X.<.zs`|Z.#4tsCM?T6O1¾.HNVI[ofS6s잞"^e9RN'^@;ais4r!' Ӳ,98Z/ _"gq˥t>7'd(bf%4LBk?\' 9qs'Kl6G g$Uq(3tͦ7 ņH65L=bdhQɆ܈噂$횎冇zϻnRߎދ;O-Fnc76s$(D`1A nSkqm?1_]=+9@ |0P@zbO|$n0,]B[ LFI*5p߿HL\^^6iA]ߍ vt3&Ox9=x"}Ve+ff5^ d#  z?2&=Jɜb8$c"ΖC,5  SJcAدt(YckMV,3&:-zkEs*~-p_Zuf݇wgsݗ>x%%d \BeGh{3`w((+,}<ި󞱑odz\QtA 9yxrB-!m6 ݠPH\ t2U?5pO s7[~^T6hd4:HuC̣\A]a@cxf{ ~XPU+Q3؃(5iG7,_ &\.9X^YCLk_H-s7E܀Rbj5YZƏ&t2OuT`ZO͚܀VD3 4 i[r{mi퍹\`0Lt{ *$/LK[R.Akaux~J.k=Mf2)NJ+fOUz:"A-+-KPtIW_BA74A)nЮQs"HGZZ egVe޹_|^E0w (lU#IWd츳\+@~<$ЫqGqH}v)Z2Ht̜V.I&5e͒TiPj}LOh`ڄu#:;ۀ͍-oPnsjq0*1-҆q3JjKLr}4k\V(_?tDfⲣ+`X"$pģ醆;%XpJkn~e b@3ȗ r\XzI oԬ̓/qv@ɯ' kմ z+#ܠ` Kd:jL"-E,wΙ]؅Iѧ\ٖB@yI2g;Sq2x#L +'%2 [gb>8Qb(Eo $ sOH07S Q.~vU77'?}>e?u'MAɣ҆$~ׁp7w&ʏ''/ayuiy/bx>!qkdcÍR?=MK^xukh`lo7"wbضft9Hh,a"B-G9+$6*Q OIL54D(7P?PHd8^E<}'!-s%pӟ-j-:p "Eaje{77@X3(OWiE @/9ɅVcFN =0??7ai4X Mbx5o"Gn7G x4f::uCVJU56/WJ֖U);Ea \ueo*1h[(ߴ d.ߕy\>]9ؙׄ,~mt U`&eDd80_g],nyZ_g8M^QQbBm5$ga n-LEgYa@hNU=XD0yʫ|~ k؊ "T/db,宐 OP7RH^7KjlusoBh& 5Ýlqn)PqcU!7͹rc&}QUkfT_jl8}O\%v 8A#ӯ0T$b' ("DèOے|WW6Y(Ȣw8gq>ྴ#`[YIRKvC"b*9ЇzʪFre;wۇ8a4'(xBT1-/T Q)gK:IpFn ʓ5 A թ/~6f;q!CY }8tob)oK3b&a.%"5~0VKt܅Fݞjv(aޘ74aVM&3iAEb>kDL5ﵶmG%܋.&Fԯ9uKK{/hvhDZdp #E.( 4Ո/JaЪQPa@N$x>dI(}d^+8X9Axܷq+jqtMjnI40A;(tf,(c.eCW2, Ų6.sm5-nr5F8''D*(a2\) q,|2,6%T0]Ś4Us 8.8an.uu850F[1_㧖`n~خLԙ&|#B[]~`i*Ž9 z慒wAѩnRj  ÆX*%ԊOX~Q=mtT&ͨ$Ղ=ejA[e3l-ES]Jv] >K.QߪI+ҋ,Et>|&]1BC}g msnWeT pk?1PcTDw V1DS,?0 AIZ3%!ѷ| \Ŋ31J.ˮ4X1 uBm5ʺ%Veȓ@AlTkaUf@ T-m*7һbpݱlc?#+U`,UeAI yVH$^`簛'nlv &@֨L}:}tճˡimpQ=4=ߕ(B#EGEj;5IoQˌղ`{B6Oue`*q1Huq`۴D+?r\% =xm}c1&205לU/Q4 ޿C!u#jn䛏){8x P^κȯGUױ lyۑ&}Qn3T=xGNYVX{!zwBV8;8$9 -f5Ü*4]9sXXKfh?渷OR9.ѹNT ҈-񂆞ϛCS0\EFq.L{| :z)HA?B5Z EEU0XE֚)&#fZ6 ߕ\bm.uB 2Z)UlpB;b*HxI_gQEPɊè*(+M^4`]+RTi,#Ι,R # ܋Vl׵LWDqR<ϱ=}5"úczӑgWî>vGPt( v#\YBqhe"k'$%j:yggbeFVG+9x8|8zwа֞HH^iqV{۷3dՕXЊ]hvQӪkH$A.fV'H1r5l'Fhxw,펉K&Nz9.ĆWKEw+YoڇfqvAЭk*𯞽)a哩Tk[Ϙڻ+=y=S#9c>e@H-y<+)^;oIuAcFuljR4F_؅Pj˓B0)B<}rx8dωW֜jG:*wkd2bm2ۦ5I$U@ MBϿ>v~ay6̃~,/D9d /ezmxle8< nV5lӰ$I ܞ[hSTQݦZ߫hQs|>RG ,ASk>$ƍy?O5fl!a": r [эf.Mg;Ž9'Z5p5}I [1 A!%tqB/ŸeHGvq3g\Xy&.qϋ<Ōsw -=g(2F.*|%]ATgF8ܙgM_auaBeGN~;:eSń{ls%oD?-VF+6?g.,YOyor{oʍ ?ݍ3olMcc:sQ닡\w4ٗ$Џ6F4"t1-*tFz6u2GCr&xa fN$5&=>+7}$,7M.Wp$>Y[֥x) }r`"E dw[͵F\Rǻ:=qs4ۍ_VGHꍟzW0SvqHfv'⡔PԗucY>6[?KQͿf4@s*Qd/$:bّi9: C2p`1.? s$M,+9$j̴f$Ӫt, >z5XIb~}plATW&Ui! a0k \,dm>p5iJ\8_,E> FUm,Jy'n5mC"eZHE{1\2tGFWιlϣcȬA/3;C$Sl~"&I+Oa;WKU19诎m͋:#{b}bJE\/"Rde/~PK?I%UY=uU8//@Yɬk5z#kCT jE}ⅉSLFt{E`̥A--td+8Z_1VLz>Õ*^#a2p VmT]I,nE>ixr3֢ Sy%K\xUIrҲ#Ùˏ _ ^0^ Xj^6y+J'J~dO,EiWcx)м܆f;0!ٷQ>ý-A' 'mt &,Ĉ/kRzE b7-m~u _ZJTv.P䬠ͩւz>)LN>''- 80vY'JNI#e*S Gd?W޳x+ہxZIstݙ^do$lB~6V_CI\ wZ!nbW]_KX%]Cn{ cdovrfʛҬQ x)z.LC 29EpI6\S 30/y; /˯QŴKةߚ3+>U6<fƊZ&(yBcȿ]Ge-];2 0Ɩ{lA>Ү@*a\ѣZc!*MF&3u[~‡`arWBHr7S/^8 ޿>E[0R$2X` aNAC k=_bY[lA@e{yWΤ1YGGbUA4ۥ$_JQ!bMh5_Hh%eXOw n WМ SZqCj3GBXT'r6`Nry?l5Ōǖ3~YIxk ~66Qۀ>Qc>{-L!B^9^z 镴!=7^5XkQ~;_z\vGM$)ԖX*xfVhDƷfn4Ia7^iՃ\ugZO$".ZEq};i)zAN7ng I\,:X%ډ),8yOv]t V .0(o̽%\Vީ3<ڥ# Q6(X< Q!ҞKv\{TS 5bT΄UqËӻ͎LA(H#QN|H$1b)CL,Ӵc@kuF'4T%`qdaƔt~ٳ I._U ,YGqA"D2R2RY|= Y]W5*y/.#οz"RYb6)-\/e1MQgP#:J]:[3M ܳѼd`VF7ypR%'ҷqx?E9篌鳬(/gNq5-T3td]@־'W}2 q2tòHqB~ E6J?ˆal솫Wշu OL20DI\u1Od̡ JS7E=M7d<[P$ri嬛^k ᳦.AB<&{r -^6J6K!z('z^ ~ue$WL,$%/e}9F pb]%_[Jmi*(Q \YΚ/S(,.:p to x0 ?Ei{ OoH:D+}H[O0NT:LJVw1\ngIq9Gfo~ĪڍsS0gmKעY'|s/T)iw%LF+=6b HKW| M: aZMzQF 5OeK'N^u5 re4.ieCx?NE.(doV*HV5#@"t}xN PW2NV;(p2rπB"x0ar99`5U-[(r1MDX^G;jËDb 6wb2'0KoC[ 449ru~{O W&!aGP$KWO"P ֹ&$ˇ-YSK"pQ|{2E˜ީ7'^>p8| 9mJ3@d 3(`RZ'q^r}0jWIwCڠT)I{4` y}ƫ%ɽDu߳tsSuc\ %~<`1>;:/6w $ ؤ6%‘{*q8:Mq<0\*؋na]*h/*-ҐRjA2?a9`-Џ3Jf~ϱo"iZϖwJ]+RMް*誗E9r& `1W摨 pO ?P1o֤4(@Rm(~!zt!R.H0`S+vc*8Y|CoPݍ3ws/@]V_ vhk4$MZT"A}(%0Pu3F#X_!Hz+Nm'^aKv0 Kx7LBVS{{oHOgG1P6jюrH\obNɊwv 2ֽ)bf?;@ka+x%rĮa,w7zSob_ @Ϭ[ x{T(zofh_\?Yp $ JPDǓZ?߷E?'% ?^Wx?,t$NaKӕ0+sXd}N/ƣIF<@q.( ocBCI~=\i:lq<\W =~L tE]@"tde5+ ¾PYA^_% &檙1B۟e_Cͦ9!Ŷg 'BxMsR _ח"蹓!Kx69$Οqq~)7|*gkVפ̞'0ߚMoDxd/D4l9 mpS4^mmU2xa_׺ۭ~Bїsh}@\!V&2^|Ms ';&0>JScĉn\|fQ02r.T!?uL ZB1$;Ȁ5^Qupi! ' ,R$;'} -!Ѝg{*o|o],9HXe=UG8=XX+ct(7=' e3^fGR9S#%l XN^ju4 B'd ki풳ya߬әh]s=!Q 3*埏uISM G 5'F%D!g5ɪQw9ag>gTk"?&bz"hղ/{3V0dGO?;7,6{q $:^e%_uݻ^1%zOJb).=I ,䔩&\t]pwm ΕTF`W$VGAp"ȝz!V0F%X=EVCg)['OX]ڼS=p$~WzN8 `YS3?dҋQ"ŇUVjF2MCN# H̑{-ts_ $t~bw$ M "x^v$+.A?~ɤih㉱t!(beԧn󼝻L CwjT\5z˄f~ nTiޗr@Q YK̐6O+An㴕!6s+:LYx#|^m6W1@4*u"SF7.hgýTTոB/??1!a #Fz@)?of1ww`zh wVpy[N'vƞ^>ѯ$>[ l@$ʁ"9^P+Xh즨7-uȄVj8yE&oMy 4~Ӎ挗AXE) )F__bP[n[tx}ǡ BK}خa#IٽhR ~^iO%Ӧ=YVyI;Eue1 sbAʴZ 6DwzKJ f`z>e_E~|pryby-TbK~YNVA:% |AE-ař :"cP#5N4>[;wK{&5%(uo2{hˢ! jgAuj<^AY He>M~ra^rd̂RoH0SIAęUJJ$IHe6Xv?֗/ Y∬B3&Xsn;)q7븭}̨a9J* ^1jQQ^8=GQڵ&Zؾ4GY@L!V9y%%LdTq|//Ff?4zXvyNAm캃xX3ܮDj/ɸ[*7Qg̈́Qq.0?e ׅ-f&#mA-5ja}K_z"S݀GZiqQ 1B.YJ^h)H׻c6E/C`w$Z  3vq0oiac~sbPY4Ozej )-+ uJj6řMӰ 01$Km` cԆ݆>%`$vE`0˽=zwऄ׼iKuJ~rgsT6pr&/k>-Iyur矃F蹄J>iԪ.qh}C=4ccWbS aWLm_ wt;hoD~>dtroҠ U5\458L@yq˻`kkSkU-e~k_B4Q_ƚk엾>E{eWW'[UU ! NԮ'1a3^'@ וfMś I7McMxMAGXQDB2b3G@"$1tSזac¥0_J7toq3!—L)%Z=*֐q6{e9un{yBtLOYL6Ƙ0&pU!ko aXXa=#J#jh!Gs9 |V~Ki; c.=f}]9]Pȹor .0idzyGzߺ@&/ծt/@ww 6nSê9)S,*2hs)atb-/Ersy5x7@[M4R|9ADHOkY ܛFBn/i%@`鏷ψT7Mؼ)q1aL6Uf= +9a:ZeydW2NWBASs+^3ɅvLN֎mqr4&Oz>Fx"WIyIoEI=cjPG%/Q΅?1PVD(UT.մeN:L5U u *Μh|oRFPH Tћ aAڦN X/$Fٍ!*ЙPܘՠ/W}@!2h2 ǘGA_EO52yQoߝ|X@3f D{NR:QZf!sB_ [A8}7|E_uiYF¤ӏ]Qr3y'S: D?#P ]k-؍HB)yF_A1קp ʌ(6OXJߧYaKr{"&|5~[W).FwuEM'yf.83l/WBbp"=Q79dӯQi1;!:`~Ϩ|>_к0CCTj:d/X@HK- օ4\`<5d0h>#;)o sm7Oo=7!4,B=XsZ/?xIHӿSD])r.vrm g%xТґf;3AbXO.DJɗXĂ`bJٴX= ѿ3-эkb"Gym\kLN E7@2 6$KnK*^eg<(ʢ2<>c\L r4 FXH^ʻaUW Rtvr*%E U牳2Nx"1'Je  %z,Y*&Cs [&{O~oy{Wȼ7=#;q 1{h^L[Ox(N_#^D$3!>Vlv!R]|r{{(SeH:aMod}kڬ^%GS#R0q9J&(@Ay0Z`?d|R/}!y%g uG8G:̅֓HT_ݕWӝNq :A[ƕbvB(i,, W ۚEnjQ/s ˡ?W:PNpH-,QH驖ՒNy%8oo䩈3Um--#(v^Z䖈PA8]+ㇻwtŇ"Q3 T5#K/ee8p.tWfq 'T4%A&;0CWlQ\8hk&OԨ"\@OׇBnn!n`5.J՜(R+L9%8D!p)ePh_E* ROSЋ_̲c_*ꅬFh*cj!KEYy%e-j3?m6B$2n5Gmmjw.Z/. V JDJl OJzmgLzwy" ;hᬃ]j %+:w_X:Ds3ڦl*sdPj@l9=벒A{> Χa`Q"FoH/Y8Gwq%ce&h8r9Eu)~Vgӯ_ w ܀F\Eh*x7dN"ÉP9fK 73ԍ;"xh`rsPr$T|A?zY;-^LHG$Sv? uA)MCe r~7puC4am 0z~-j{$ʜ+f;y߇iSx~+ȶ:+7!pS-)Eq5Q?h~|a$`/Mg'!V^߿`O{jR2l 8\/HqAuq\Phrt+'dr_PqWƩ݀bn#Ⱥ1M|iQў=E&}۸4gXtl 4*sfh\>紆KsRc2z9,ΦN0ux2 9A& EV;vhA^אh78 SE'Pd^5o-F{7x870~Eat,Y GFL}_˩c;F^`M^ ~,dm?_r[J g߹ C%"1x f+  6JyaEt ͝B)+z{n ^(,?B53P}N/^7sкwi j8`^'Đ٥w':!'bl{{%ϖngf =`64ZO+„+>9&I 7}w  yaTi-P<Ͷc4F0Z߭ u&Eqf=;ڊ_s[2GiGz z$sD%YՑDBJmXN‹)W-w^-A76p$}n/8ji6-e e7LkdenחӠCFg_ ]0{Gz٥Hseȍ$jCzA'(E6GC^s?ǤqۺYQ. Zf {=D9!c dH0S>EڽMݎ1/t"*K}„|'XlRD@nhX9SOw/F=qZ¤ga.Cii!vCS?`g@O@D9#0Ay/] UQq q4B?KO÷j! (8!L%T;ZXk0׆`}E;Q(7\ 5QET=(nt@~f+ax$mb㑝+*B'\X̓cB \7փTG=Ԥe4O4*G%YT(-_W ,b|axy$YF:%*u0S5,h39.mL ޺~b,'eזI㝣Yҿ0gO|nTY, sP} ӊͷ_7h*A"ĽAN2_.]Y'jQYWfQqjA?Xsg(D"Bg P aD_zƧ~M`x GW;|Lm i.jM]P/g\ܟf<9e^DUDpoA,g@0 eµ[kگ+} ڄT8Q(!8/^5/ ;О)(ל~"{(ԗϮޛ vx:oՇ8ޏFmt-s1u3!n6.r5r38ӧE}6czYcXd~Tʗ,H&2ia&R{_a%^\CN@:}lDN/VzGۑw ?+=9kᶉfqnqΨ87>|ibN%;w3e3SH2͞w&]ĥ? DPC^^3:n4 -j)tZFRt˫_14/QʭxY Hu,@T$YUʨ6Dv9U=R&ȆMyR#vg?J{ kwIPccc|S~=iEVĤ2w蛥 ~"1(}cWzb7Q)( aTb٘'сiŧ5>n98y ]eVFMJwAf9MGȿ߿Px!C }McjX:g~OX_[eosz~>FF'Yȣ4/1ؔ qFi<)Q_WYQR"D~\xĕ j5&;a;o`xуC9:w݇f!+:XkqdJDqU%yjF_+TJd(gM1vN5KqD;$㝰πjG-E9yEnD ))y5jVF -d] kI%/O[ 'blӵYsq(Bp xiL3֖se.-5? 0!3쨗?- avpK܇w/2:ՒՕiX";JVפ)ְ ]FU*.cmA7 g14b>P{afJ0/pxwqLӘwXq H<I-)Z\?lU jZ+]'jrp )A^PwS2aς[>sBB %0R}:F[4 םy f0vy{ik@3IdlSbqқ%[~/kYzo U ҵ@%Nu엔^~s Co-"OZ:24u5ԈFz; !,X&Dی6< {)%p'fv/o q5}F@\~GOIja {ut%kK"ƩV+[N[Ԙt|@c{tݙYCAL%m WW9m$\^Gͅƒu/@$TEϣE=%[wXWB=\RP7~d@ǫc]tCbktĔ 9cߓ{R~?.<%8@zJ5Rmm1z[i+(D;D74 U{G|b^jCh'd:ؕ2TsʣsPSXMs`s`n}5ʾ>S@#˅ p :HteC2QG58۬:|V!!1TH"ƲEbr7;,P^s=`pt*?tNe7u]L'<玌Ͱ=WHܡS'j\)^甝&6qIcH/Yۇ͇&Ds3%A2%=G5֋[@߾򿴮#Kߛ^"c5t#>7E.3#P3.G wMXߏKEB5` Uޘ.&ZLC7S*sGvQ$q%חཆf r}˾C緡3cRM*`MyO|`@l<R#A!;;mHpFþIL&41Hj]hb|>oXxR4uLvhSMYh* Bn0w]< JjeT8AɋrGF/BQR 8+ѭuw"gt4 QS`.OΔ+3]14 ]OWY2#,Y$k!{oi@p&55u+r?BrvJ^Əe:T7rC~owZ`O12UX!65.)Ӏ([?+o)hwy45c;a';>Kb gc0QcGc4ZԊ/4_[l+n*J42H=iG%x:G pXׄ;IasRTaXB}KxL1]l\|; y"; Q$fJC- T/u0SkQϲY Ip +x&F"e%]I"1);up2 !vMUP_+id#ZT;Qn]DRN:ʀ<> ?j^XFr^iI e^7h6$+%E[8)fM{L).XrW77|zwbEw?jpbLn o1#tPce2K8Kr%؄(56Pڡ vL7DrڊYK|߸_Tcg4"29@O>͒~j$٘\&E2*K{'`R[­|e9+͔A~NhjsX%]aUz>ZhfKCe"Za! !wn4M z"Ŧ7xv+E,܎Wt+YJFۚeoH1(ʥJPBzCE(Tdm^i&^;> .4)ޞF0Wq z(SZi'a6}:iڕ *YR3x>Y{f$Qb)D{/GPW`\ G8WAw1ժy-~؛$y(i䴸pPC~; Ňt 1i,?&f^'Djr& hD;i&*/Y5h{IgA:s#ymDz`3}v fGQj YuH၆ =Ё7k8H\̪%\4W{7[ӔP hܱkT-ŻBY{  n0(65O<8νUMUq[ZY u.?o}ԟӌ"~g &g&7cN)2eADN]h3FP ˭HVDC7vJ3T;`̄ bVLmYA";tl,yAdk9ru%߁ kOxh ^ 1/gDi`?Fd0Κ[yz o"P@n 2JQzi|aaNH~dR>oEPޮrexs?6>5 ഈ\KZA ۉs*C :DҳؘԔh"ǺS(bj (8pF Q,/ւ*6W.]*;$:U-N S#R#l㏊(~ |'ؕ|켲ı77|.bKޱ5[eq#$stze$7$Kt$Ob 2g>}T򇨿pp|TW{ l&fܦ~'z [؝ ífl(=׏d&1ч%6g;ure4Oy2еa *1NS31-.FZtLbꡂ*O)EuLߤ;aG64, i HQMS 78^># k,NzKKpϟ)2;h TVi@l?5%q1C:>҆sl7R0+CneLFt 2J%q#ԆK@JڙHl(7 V„|$'99p7oQGNZZU p|JaDױ#6pPW{u=4MԂYT("~D>^%azhqÂd !`4ǐK)0{uf>J$'Kl͝Ӫ zA5ZڝYSa϶H:Aonz1M},U@p<GTR?-{wZ%(wOϩD9"Mgb/U ma8pNj"+{w_%|>Gg`l-[*Zs F񎧃dI)7Eh #0؞iDK{|BuIL$Qγ1qVk77d+ά(.ڲ/KoF[蜋KXLl &D"q2P_pBv{au!um3Ƌ^*abtRpLCA5@μZE 9\ F /!7jfʸe]e$.'6Cm'KnXbLIe \At!Ӡ'{̀-Aqr m7@|R5)͕kdP%ζZй. :HQ{P;H @ֆRefE$3D:&ix-LXꋧd0AggI88V8cMgg ކ7;q}D{pu%إo:{ @{Z 4m7!J%7q:NBpg(԰()NΉ+ۏd즑An?{R/0jip)3 pF`W2!.1z5L.D}K^a;Z=- @U#RSm˹g$8s 4ósKDΤ +\Q4FkU%J5%|Mkn&K ʢ0U:c N:jܿϦHw?,&$B)dw|ZIJ'7Cȱar`o6o%-_Fa՘@ ~¶E'{ņQ@*zdl_, Si<vsݨ8N 4Si)f#8uܾv;~`Owt%>QaNmxP/4! jaCtMFNSV8+ R#;g*0Wgbw–DUp!\߉+g4Y<ܺv]H2= 0t nƚ:+wEыzJ*}u h)ކ ωVv#!2> `gp9D>G%T:ڰ_0_8FnV)v;' @o7V[zNc"3n]볊Wy8ٓ-B:hMYRUy*ʮc2U 4^a\ܜe }J=)!twDo{ioF;oia܍1>8pfǫS:AKQ!L4usl.xR^8o»:*ݳ'gE?9$$|YƖr}Hk` WoiCh @v:Ƥ^g )?w!PD-觛eY]mU !RoDT}VoQ"ӠO@w;)>.s&?.f{|I5#6;gE%N0lEG{ py3IkRb1j:Tчx2 0@ ϯhՌܔ@>b6w$;q%JQFTwČ1#3R~UaT8.8Jx4襟ZM//=iq=[qh{ ;9%EH(P^"'^2ЂSYIBI}=/P  n?M'밷6W"٬4&c$UǽUQ#U٘kh/\R?g^dͤ ڏ!^NfmB>젟t8\m@0e7">_HKF&Z{oxU,7-I0?Yq1閯-U#E 'ketɗqIϊEGT pze3xR{dn.<3Vo`@jѢ!pPBzal:V}r*$(zaƃ20]|\Zb9YC/_5a`P!Q, #:@g3odRP9gL05m[]~d/gdE l13bB}'y!-.nK$`DxJRS|ȉe ^BU84J{A9Iڠ 6%[RN?s>jz X9Tos66A1YEb22د鷒,O6V0FZoF 0p)ɜ. \Yj?^ zK^J l~2fKI:!uVæfLWTY7wVzwW}f=>?eH$ 'jxqX&~ɲt"?VC"=9(5y "ҝOvc!De+ԛH"K{yjޏ`Ppņ;Vs@(sF1< p$.idV>%|g&:cfj PmkpP>"|ߕ&x<=WTá  l.q_Z2kj4J?*yG*TQXW)ȸJv.v-YW,6;FԺHbco'jWd;邯gpwCu7GيXj9RId&SP.-qZnl{*ڽdx_rTA.}7T _S8SFTAO7ޚSXONZn)bG UJ4 ;dc\XqIk"/jH}j/@4D{S0JvǾBj8P?N?E|mSa}wiRw HToT6/.sHK"k_Yܟ?'Jw(p{wd+I~V9?fxsoGe55rBMiIf~]JI_;%=5 Fk3PK,E<@pʀx$ͳw*,yZϟXg1([c HH#Ls( ItgL7{e1M3 !#? bh8[Iyi/gm#⯡h>,mx>We\>Nsߝ6H4!x/^/*mFTaKă"rXlQw"WܫKC^Pr8ԚEf$ ŤEQ;_M=))a6NRUi5Ïx|p:aN7 )FNI*?t&Fkُ9aoRrív#ҩi8։1U)ބz9l}lт&?+;[<\ex{I=z*SUz!] S.j4\QYF{KK/ɘ(>fQbԛ%ǭ`]P W/Aӏ9z%2]x\!Ra͇D S!~q E.L_Ȅ$棓e͹VmӉxsR!Y :ΰWq$/rp]veUe2۟YuZjcaE}k~7 +L̯!#}b~w>:0B<錶B3DC43E"+V4,881aME834 . HUxvߔ3j49 c97MIΊhsX Mci.!m_,POXA=RV`Аqb#[*XEVFKB^dNJ%cDǽWU7xl@fkw-aڋ duԛ:w#?hC*-wv _#yҏ LDsl O"fXHX {1τ×aM,[`kh>ڊC_XE*y &> T?P[m+[}[(C-}>F7%w l]QdE GpMiu=LKS4VD֤"',eۘr>a1>9+h[/V͕=qA$9<)(k{|C';E7סؼ)^9`Vጀ"ҾfExC4߆(րb}Kd١Պo9eĊR;2HŎ̝LhAڛoO(SV,s.6Lѷp-y@ҫ ^, \ N(nF:|Exk6>4["!#}}uW<Qŵi\{#J Qbg{S7bIuhwֵ ǁj^r9RLO~7Q ]!=Biږ54jsԙR I|oulSi 't!f*|Ըd:B2BNr4`1蝔3TQJ< 16~O\V!9M]VX=嬨bwMA` }\GOlG12:סm+̭]V33ndޠV +w|AHސ<A'qФ9K'q  ȃ]KnYQostm\< X)<irK#h,Äoup;(Xoe;h+s6`=Jjfn1`m_.wԑ~e-vvח,G0Mg(\FOu{bDb!~<m@0LSO6F\7^das-k$!/>c8DU'3!^iz2M^W3m OWY̪谂i0+-l;Jibͅ)-/ kp>+HHNEbor=3FP!wXoN2k]fdzQ(s~6zVxDo7E8exγYT=W)O $.*J)ù@ktgaw`$lJ__bw׋mhW^X=)$iq`.Ij {[imvWqݤ(-"b($F=={ewtC"yz5  K-O-hڮ’&\I9ԇ"|#XVgz&h9,#:bidjB -e ,#ls;v.7(:QƂ3upEr@FFt|6J&1tPM΋QP;~j-!S*/d.b!t:ǿk7 %лF)ea~0&loaz^l!n`\kr yNZ]DR~W_-K2Xb!+E9gp62 萶s*T;{ye*n-]Qp& sޠ6vk!AY;`jNJyʎ%Ѝ }gP#]t +'c2GN0t |Q&f?Y& XRߜHp;|"O,pv x44 L NS0^&/\\n0AC=f e%_Ӧ59h? Nb=ADDAVdR >ߩ' =Rڻ^wJ<ދTG+tjEU-܂zK ^ V4Rߨ&ȴ P3>0 XQ4HULuȟ;\]!71E_7ʺe+|lml-q3A<ٯ %7ل |%2Rpv'?!.w};QHS{^ܳ3/5d ] Tv`/Mwy-UONF_Nt~ ~=ُGIabEǨ$i&VcȒ r"aLGhVl׃ƪqyv||tYO b7]||}ζ3!&]ko~e{ˮ H2XNH% ?gr<ʭEGszZtIȴ"+y dy`^@zAY-Œ*qLU ND :~ ucF&eXUB">tt6Yz ߒ;1?el\Tn&̿#um{ܕ@8 45GiI|PU80H!,L:eXϥr60c ҃^8+O[+$0@"vv`/th Z DSAߐ<# ލ.VTL',AT- $ &M Vͳ ^^ 63wC}D)0.-f<}H7=Σ9*QdGs38y[Ύ2{AzoAzJfw E 8_S73/}cx1n)=,&qn wX63gV1/$grw/VpnKVgsaP%}ej'Wv&qdy:Q55þaWⱄ|ԙYEnd90FG#٩ #9Z"iiUqT46@J]y,zUP =j'KE?Ap'OoHWiA~uq܌zO7AGζf(ä>6o{kgl5[\aG|@7e2O$ԬҤzrp'ș:w8s4`0.2V,}FVv;6geυιpOù[qjoI$vp5К1u:%pu1CMR5JIG,J&@Վ27h> 5ڣA+P r' y\D g ^g"Ru]vA LME`r[,$IӦɦ,P/L(UH$v+ӐEu{dS2P0nW}C&LA"tk`]z³KQ3㾁GӐ c"ۜrL2 tL.6ف38)^-L]nӜ̈́`)C(7M 6YUo];EFp۝E8ʰ4,NP+LMН5&D*U"3!ܚ$;?iOྒu ΥxJR:8*^QK4s<`f.Q =^jRFȯt (RaJBsu-G0hS6,7q#,o^ggJPvaWLjB'^\{+5s([k8^sGXK!`$ධ.ڵj|-j.n, *#G ̸a6tK`#tTٺepJ8/' 4XjӽsȒhtFD\\(OPlDYU]uRk l23~-P&?Ѐ1W6#_ֱv&Ue_qp\WЧ#sk]gyLR Z9V-Rd\O8J؞wYtx0E= F\x,\qv&H"B^U8 eH8ϺbW6T?@gZV`>-u1L'Rؚl[^_*=].ہ&Yun7k:ɋHBGg`ɴ}[sts<$X*q$)w^'q[#~sMXL}Fv*lwQ犫 zp : NB%ٓNb޶˙7 Sl2m>~1ix͛ME^Q~)m/k9!<O FG&PV6p)%(}1gg8vK5]1KRZ}w[QݍEvqZp7SeBC=Z$b~M{XQ ,|!ڕ=o4L2 ,}*1Wd3&@3f qƷCY~ Či<4CdSKLt\]2hF5aeIE/]ؑx\}ʹwtiqC2|v9M/̡rq=u-e } eމ1$$ =&iHE?UfQEGWHݛã=3lkxE1n-v&̥R>O`)>t-_vMi6E:*P|/ዀ^/'xw͌c[lԶP`gVNU~G3ސ 0oSNtmօPgIe6MXL4Q4ɶsJB G#Wt\Pqf>`&ƛ]…FKp}Ir=8!j`A3N29s.4#PܚEW,Н ꩳ'WqʮKhVSJ WH֞wony$/eV*|y#Me>晧jIP#؂ҀuOf\jxƬi3ES|1xގ [Xs+ˁOz @ْ\$0fYMqOD<"0Sl94#f?)>0sl7}P&iL3+T^ݯZyu]+^q68nCprU[fqo^~y `[wr>Q-< IˀkVl-4Ii6L&cNXYl?ؒng^ M"=g169F,"qnVz"#++Z>šCfM˛| pٵ1muJ_hЏWX[FG cAa#a"*w\qm/~;)+4vx[sD~^ N=Go{%(K%wyuCUM% 'ci(*!$OpRCx;z{E`ɛ( ƍP= r *d)';bI6:P뱸"w4 yq~L+#>%hR'dLҺYD_OQT0q_`# |&q%J&(H4/F[Ady2LGY"]4em| o ˏtjB2{hDŴ>GQ0E%l (#{d[C׺s%}XZgz@!".'~O'8૦WHA"a j >vcJ¼ |UdCj2-*W)|Š. l~\3v)HhEI 9(WLҏ $Q6^0ʉyT6 Gԉ-7z( 2'ޖrZQIi)#r0׈}azZB5QMXY\Wa:;ʀtyzCq3WEIb<Άro.F@F.T$bXZ`&٣m~V_N*ȞM)W-0rSPGd,Sa^F*$'WR$5$ 1I्C}†}|XzD)@vl:2Ot~˺jyS)ϸ} 6bAє,fKlꒂVw {v:Nm3AI2zZ{7 YzvVxBp'z#;ܘIJr6? 1G'%#yMLM|C0ٕgg[Ih\.x4:< O7>[ ~_7۔u-u'*Q9ぺƼa޼uAXjZMx_0pZ~F3fBwЅ9$%\j{_M8=1U@)Q[8ЊN*UJ`ux{LY˚V{O{.k35fђeh-"nl&' pbR6kvS$}xA޲LJbbڅRKHQ?0AdK mP5V%ޚa!mf?o"hvȫъ7؃tδHiOX_eB,M^M =Qhzoo&"&z_.3L;B G"kp9ȑ'{SrD~B2۠0: 5&&;9"!2~D᳌j !nWaH-sQ׽aL?.|Bp-m,F M6Gep]-- 7әhwe &⹱5Q5#֥Iaz&4EkYp!֐k@*s r\7gDo{ I%"-l 3iڪlc^/>2SZR|Z-IHa7OL wnZ"HSOYl[7To`9*$]lQ;U˺Nw]PSj;Q˪Rwй-X~ h_8%y=-BrHZp?^]{y~wVf q,?r=!ТZ!SXeS)fxuBn~J8sW,Hh6+ զYma 1|V|)L:o06#Y԰))qݴV-=O&2&>O&k_tqbJ;N'=3gå9V J7k΂XyЏ{";/u|lMݔ#Be'Ys:=tfvvWZ՚Zg>H:(n @ b7vpfz)Wz #AB#x ; J3n 3>Plsb$R7t!BqÇf-n:^ZbٛN=ٸSO uł )BۈgPqB)%X^-)>hn!)i7^D65FuEv},aDmb @sM5B |7Z2vpjM3`!ε}OJۑ?ֳ˶k48J=)?FjN w~_C[-/„$0][v;1$QڡtkN)8!|:<5N aɒ{qa y-$G<_E@{)IJR9חߕt/ ss\efQtQXhSIAd_ \<`NsM7Vm2cX4- %bIȫ UV^(k%c'cszJƳRZ ox"'$@ir'q.9?j_X Iu=s6I3ݳ^ǥoaZ62 Z5>|XCA/$\xܾ2ЋS&B:QKbpA*MQl? `MZI-uYfkhf[nᒩB#0d I-E\2BtnW}F"Dv Tc\CpEuLId1jQ>1sm3CPfw4W'?5sDkȅΨg$ᙠ3ޅslJB9".5mFl'Q{*6CﺘP *zZN;O[ R叢uMe~jRA=iMݳ>e߸rv?0'wV(ZwdL}O.^39-SF(E+c@fr(E_@5o`i9mExX7,bWqNMJwXo|Sy3޻z^Kʿ[,.\uZ(_zw0tyZŕ z RxW|+# h4'6`͵|Q2ú^Zזa&DAپSg.AGtl"^ߌxdir!(!Q򑿥qvEA{u:{G3lJkWN&eb nI*x,% ZnYzfr7BuA:1XΗh^V8ڵ kEeLD~Olq"(qh_-VKs!\k@ du&\Ν& O5pL4s eė"Ѻ ${q3c/f҇}G6@mE!.!P+yqT=8 ٗX_ 'qKJJ+.[!)~ns|P5{ц SN UXJz ̠D6ɟ[ O y'7vDnpLE͐" YR]?fxd gxs>7V#7rFҙ'38qh{TF~XWO `͑uՖWwf䷦Y?at4YkLL"?- Uk23HX[NqYi YK8)X$ep SI"Mw' 'ʔjuE;f0(twtn4S_F]85%&Ch&w]q]DΈRt`=^h9*>=R!8  /+G7u0X87'Y YvmDwM޺i 315Fy*^\HJ&PYd @ e݊iPLI=6&yaIrb.8E7Y2V1Rhq)l@T#mE]v=ĺ,uI)Mu;SRYe*K1a[5WbjQ́S;<H;u/KE{kpb[6"(19r d\y€Sy8}Ùr/&)-?,)I(dwM %kӘKU>f!h!.UW"T^ԌذߧeComM1&D%ljof4_yt31Pn!E>9 ˙.OquSP[gh_ͧk! 'K1d$ ,?%6 f]J\`%,<S(_ԶK '9h!ldk=hl`YDx,@FN 2Do) BX =h?Y-"@uv!G&3b3V2aT0hyd|ƓA˽kwGN" 2\[uiG;3V֑E3?nT;CLp^0ޟ~^k[ s¾^)`._2(Q6`=͠{YU8 ߁ut J߼[w ÿW&A@:`4.:u3)SE= (ɏAԵhr^u]l`. iC#҉ ̻xqpɌGbCnTa!0odqRyW9J`A}uͫ~D-&REwxYvV6OHxDocӽm6KcCop:{. hKv^zah-r(V~-0\d*.(z zJ\pN!9+f\MDž,|Q +<_ʇWT{J͠Un}Up 3}`E%[2A<]d^I?Jr柙o1Y`}+VÅcˑ##$Nu[Bhr[U ٲd20jLP)QȪP\19Tgq z# ?ֶO}PZȝGq Y4GX_܉Skf1ό\ 7GhG0@&NQjkf5#t,W&V|C>g^_9eK[e=a/cd68Ƹ,*#R}5{y:YWZt={^֟?s{f2!zݗFa+!0.[^ܶ B'w]vrk^Bsٚ:0Qw`R8I`yڂ ٶ4mnpB/$]31 Up\Oqai(?'{M#FSzr&gӚWsQ̡@=ӲcF6\$*n+C%ԔBʔk)tߺhdq1@.@;*w/ 0es7ZV#ӗ=tv[aֽ=th^AH.Bo}% }adk<p|z, O66=hv'u v Rvп\FA /{nKf~"NƩdG(8j)?oNyT)QZdOsb=+j̝,N$SG`1ς !P|' .1zh|7| *jc|E:N`cMUZ? Qvڏl+N=Ǒ0M0"Yr4_Yfl!4&1E:tPQT7Y Tþx!QtBd^E41mc+~ wy{NZݰ&°eTi uz\{/5td'mi*nǿfE5IFPp=5 9姿\v+C +I u]KEjhm2Ì̏ʅk_dZk ٸU/G@sh v\T\KDfAZpJ R-զu%{Z%Vr؋| g/-(c)6tbBEL܍1fVq,obdӐKuҙ`ld|8^G KFRs^%m ьe,fϘfTN_]pC?B*nejIJ rv~3}p9j@ap-ȽUEH b/gA8 )􌿗_KdseKc+h|!$5rX8E\n AurlK.?F)Мm@R3,z,kp<%/G]+~7PgZ 1dJijIϒ9,̶mhMo0#N`p /}݇)>oX[XME??Ziծ♊-,𛩍_N |!3HLEY9>EtҸ/a kIZ{#<%Wy͖8(d>>齻ۚ 3%rۣ@5~gԏyTA3UX#6 +i旅L0%IM3eG4ĠVNbpGbӝ+.LH-g>m݇I4 kEb~P+SK[Հ޳,}Uf:ͧ)^apr3'˯<; ?Fev`a^ԋɺ_gI^ێL-YAi|{ק$_)ҼHW$'k?BGdZJ>u{\T}M|0 924>@L& m>Wd!yj+}#W;oUOa3ؿOjÿ1]sճYDNYjbh xL*fУ?¦ņU0<4x K֟r\}zD!ڠAb8eOפpK;"cF3d?@4l/5niCP #įư$r5bOrW 5~֑N^gaR4!_Bc X8rv9xr+//QA"UX^~o<Ǜc}gixf4یAjM1f=_C ^3n X'0fnʙِ@̭  0˫!DwJste4XddSOibd)hQ.}5<Tp~/GEe O`<[Pa9b izka٫KG܃K(c4C@-zܨL$)̚Ӎ`HS C|(d1kWFp% nF|,U&Zx>@k| qs&Y/8 EM֎u1B4/}V>jsW,ɟ˼'fϮEžQ\F7*rП1,4"~^7_g,qo,gw燘6vD_4Ϗ@5xH wxouG^!tH8#ʊ}|dx)gI!*&srNns~zzgT?F=G,e7aTg(qo 7_1^BA9#Q49\';#F. R'w|X7x!6y]  cřVg/.h*dB)ig"J9uMa5AH݀2^qТqκU!Q<4`hA=~cmf5N4BcqEĽ7R3C'K#rz]Ep[x}EFwr\^߯ߠذubk/_* 6K+O])\oϸz{ ~.2QB(B, s`p=Ùn+7' pFenH1a $ Lf v0R6'i?WgQ&ͯ䬖.F (5Q 8I5Sa6YGRy$DYp;+^¡4 ,)EՔqI#ȱxm nyHZcn04up֩k(%"VLjB%.P5kͩdS)\7Px0SHfb\c|l7 sn`nr:<Ә{SW紐~;c#Z@AփUOL]R HN(>G7ꃍg|%"pzf"cOxKpH XgjQ€7gI3\\r1ac{k>D6)T ū䭤F!1 T8JCD܃ mG8pL:(X_RA/X5FLyS=q),ɟE glY0>"4}}lC`P<8 !#V,6F ZE.yWaް"KjbN(*(.&W%OnX^P4vu#U_WI?f8qX͉Cյ:\f蕑SBI774/2#DP[KT3W_=_RI%bz :1Hc.e r%aO?@1E-"}whl%#A҆Dl3km:ʚD0*,}8|"ms](+zSh@e0N";hrFd#kdt/׵VAǶ$]l MF!#M2sUv\dj7&F[y$SE>S˭;AӢ1\?gYO1q s8?5Y1q XJ!^D<҈؇Eil͸8 s@,$ KI_$9F&'ޱò M_NECr>+a~-ȹ$,PBH \#G֜[u3в zGep ǎ7 ,tO//l0bU ‰{s]5cݹFQӢQnae0{37ݵ-J}FbqNj̠B )#yJI9!HK{kw>CsfbB1G/B."hƓje D͝ 4>Rܓ\Z^)%4Ԩ{&o[OdR1 Q8Ztsɲ[+QSZZbڼw#YN@Ui&^Qw%/kcHO"2l˭pGҦɛ:X*F{3vXZ9$ٿqwC=4Ӵ Ѽ}Z2 aO k? :/f.y%*'pTjfxrӅj ԔD##nQb6}%f;ZI9V^1go%ؑuR~BBiQ| rR xMmfQք8.< '=:h6< z-2\ߊ<e UP4<}()E n|'fFU:Z5@Lc-VunFAQsz?E߮4X4 $W$V:]s_Em59/ҫX߉oVpv{ 5}VK\.8i@0ie|x۵Qyk"^δl&5ņbA5vMLT}6 OWE@{#l"_r^- xsLJ=4 ;Oac~r (+WsYśDX_DYlJx+x!jY \pUVI0}}և'@"/w?a̅_=8dd3^8tuV Vr;㿍uUHKOϝY}zo9`ai-N 2/Tv򽆛ghLXƯʘ4ڑJl5Tvœ׶#6llzg/{;0.]u 1;[F^ po u6-^/yЛ鋎vAeC(L~RqׁPuaeEL  ԧǓ(C9١!5{ߋͱ;NsI vo+Z!8#uk. * B~15^j aI[μ{zd ?<~J-ހE^N:?l̴E|2x֟=7oHRg8XB{ o6yH o;o/B:@X=pRe9㛂ד)5hAd/hK7Iv]GTԵ, fw )Ϸá~]2<~DHYP '9=ne|/v_nGU,jNXVt,X$ nRl(8}(uAR]a)Pgg7,B\AuD/Wsj`weLcKD'ĮWDgKn뽌e*,3*(0>on?Hpuf] Xþ^dQ=29m+G}!Sݱu$j&Uϥ*-ny atUc|zq7'4mD[wZhs:'=$ލzp5e##YanYYxy-+- C oqcRnH)Ìwz9`aq-#~ 4\%iLz W#R.;^WCc:9)Wn'y w4IF&tʳhFE]w^%Fs4܎\Lq8i+gij2$`/'o Y:+4_>~TN`ω[2ةJ6~a`9ͱB/}nCL ',/<,gU=` 5P+A59 );sֱ\jƥd՗8v)Cu爒 աK[AݬY ϒk{eN Q)c!ո&G= ?a ݼ']h6)=ؙQ 18q׮?Czd#_PgЊ>8~=sƾ[45F̥+[P7R \%8"k)[~+!`M_qo$̕{/Sx4gv,h.=s|كfo~dʲp IU NK|hy4) +lњN _ |Yk?w,8n%;',Wo,ZKyA/軚. ;I\Nͱ S/LzO;]%?[`wVJw; ;!%-k$ݻ@b+d D4n>/+-:gۡ] {=dG>YL~E,S$)tptXrG~bWѐ`}21nd%"'p @5<\:ϡQLjɕo`\#zv\_Gah$OAlaSyxfZvJ$gf>:(ݗ; 6ВK91,6`sjU[w!nvFBm4C$PzegCcr7ȁ@faKVAA|_+|Q[.tu魐?΁ʼn)E.aٗġ"8lN&8TFbz(2!D u ܜH=3*7:]|>PdVk\ ډ xUhJc3U:<,<4T 儴$56 dc TBն4DZ+d!\P\Wd\:z}yI ׺ï if` 0ނPxK; iV nY5bo41:> &\arKrSg4q<$ t%;S2e+lxg*?xpxN0TѠ5xf+0&g.G9M:brr!h(Clb(\FcE٦ZGfv9 ;sJk=ej3Gכn#ˢ'|f`ʩʮ.v}k d}=g%M):UhaMkPfaWНC3uiF\9Euv ~3NLL&xB-  FɬpDۼ)IkҺ>OAy{k4|" bN^r71݆u_ľ69Lk}Wo (WcYKJe7FQTh P?/Uy][UҿK8:ܧB"bELIy R zB;֞'K4җ<-H;ڰ]VK]%Z6;[(QqJciWn\*]'s]ZSMw0JfႺQv0=]̶oL =<˂BeZB]IehΡ(;9Mਗ_Ŧ(֨\" ?(N 0]o-cJK5i }d/'~QzYx _W뎣 NbK4nVJV%qfA oҁC!3'IZQp{"+%|lx(sUѡa?93εnU "픻6t+-5R bn79 gj~%8l`fNoCwHfccSO H2M2J}9P}mKyD rѥ:Qu'tRmC:"h,`Ek"!$g1-H焞 ! UJ*|u~)mD'9% apIOx 1ֽEeX/?Uu ܬo+R =Mr \fbT]Ϯ۵NǼ[L?7Kfd%}<:uy4Y֊Xd1'V;PM+hiʟbYX#"3rNP+~Zn #cN dU#4:Ki1(UJJY4 6ve-7P⬛G)"2)ao"W 霎?ËzB4r 1zMJ4"C6Qid,Ur#€&'h"FnҧEvlz!.jyשG =|hJЅ>euX߿wʺLjNYQӋhqRNx7#?SȈ+ǩ!Z̟b>0'^&6!5 ܋1BHq)5 fN}]h T9SArȢ{Rw5U(\5jY*2`G[A HP7 U9[NDz^|碤M[\~2rtie\G;3 .Rax 9K-θ'.6XB0Z7g4\/ɭ8,x$dR88E@hlI]~yu;iT>-KkkZEV -%}&8H$fR߬ohĥ6[7:} lH<,YnLn[́ %m{nҙ9I/DR:QyVӟ*-}N HbXk D6;XMu4h:ݽ/ջMvM OY>9` X7BMHz 3W>a4ѝIʞ1Y7rL BXҁ.DןD >JL9^{ I $$c^ZzdE貭b_*2w˼:q MXiBX$AE7_u9`ΣN>Q#Fg_do i%ePMkn*q1uG 8fq v7 eo tx(,i#P{z6#R}gr$ %]B̯!NER62Hi#c).΄`hK7ô]IǹEΩ-~fFU)y?wyn!U,mpx ^)jU$L!l[E_( MOm~SiB Qm;7tp [GCtD QZ{j+V ˔X֠ _* BUh SX㯟DEs6| #q!?3ՁϤkٞ863AFU]cxޠhSP- RX7}^yY)~ ||#%-uҀM% -z)^6EeL,j1xvڌ d!ڜ+b6(#яV鎣4V{,Vs-,XCꪗ K+_K72nIZB<Y qI4ˮ] _ \$Nt')&Cifvw EM-H ԲnRU S|AA*zu~g(6# xd =oXJzcC 2*SD)d=Ep yz98T.Plf =| ^{WfRQ )kҍgi Ԋ"BNߓS׭Bs5 pfd}CABsމ,oC ռgU9e@+j E!W l1+nV k62!prDQ&v.afPﳇ5GDSY|eB~o]vA*fsOzvJӤKEҦM4r>0=J>ܥ "F< $Q w#c5DmBfjN}pbDw-ߥqK귅 C͓譝"DKʱӉja_zLLNu5eWni5QOT)4Z˱ǯ`'E]YԲP=06C adZE.02Ӳv< aꁵu#}ݖ8UtTy"k_7pUa##d 4s5x>j _`KvEVb40T a}i>s 2zZJ fZ q:zPj:;W MW_/N;`ix ܢBh$5xK>ng[|OZXyo y'bIִGqA /%y|q[OBcX.|xRWx!ɗ:_{7몓粅*_q7 _Vl$t0pӈO/P.KɊP8B]Z^Kܑr ,UZE*BC V뭑,$^tĨe} Bܴ?orO[B@%bv >ho@;XSTY -_X/Jlݢ* ZP-]"Q2͝m~үi_|k|\4H|>9_SEɲ؜8,[c%hL:pn]Ϻ7 V>LvfPOpNL<=U|\^߼Wwu6$u9KZ2Vpf:`ky-IJM[J_f_RpqB \mO663oY9j1^#!0J "s2tJ)ֺ5Ȁm= [8݁7Ӽ Hi#'@H;RUK_5ܱJ=k}3KN$cwjZ(ŴT+iS9_zH,! K(R! rr4Pl(˸Qg|kC?i^-u||g-~Ƿi&'f.Ҧbi&/qى5RL@gEii;Jr"0czj0`'4C'-0W 6^HR^Q?a^5t!;71՗SӾ.>S>z ~J `܍s,ӈLqR N1cdфwsN~K\QQʻ@ :=lվfM=SN_Sj*Rw/ cǐ&r`MIcdfE (.Su5wɶ&,XXtY݀Eףws8s/n/'TGMHd=̧v(Gv=% <5?R& '1RfӃZPqRR@Fx7>lAV)+`S0K$ 2Vf9"\G^{.MnI Vc8pD_cA/,xZ/nKӝ/(EE1W0ǫ\`P GؘMgzd3$:8|s3šfֹy 1Ȣ#x% eؓ- SBC<=WI U ԑQlY9%UQ(   T^}:~g3 RF VAnã0x?}f]W|x:u oػε#I*ku.4P Y V97^ ڡ|=Hx7 DRitxs9ZNf Ka+^}MJfj .U& SB` kRWHenSLoYYYM`d*4e}Ųtίl< t{S?-B\ Nӂ,?dVlUT [tz!m聥1HۋfPx~} ZugUfzDKh0TwaΥh|3`5^҉Mz wC.;"^ ˯~X_(2 *VDH^ϝ ѫVô!M" ED4>Jp!jլSsזZh=14]z[Q*v/ȸC$U-ʻ?Hα܅Jy3ӨF_GN ‰4ՈQq"#eFCѵQ: r-j1cN4CHm hU]E;-ܱk^&w6-k!~–x7;TNj,I]d&l=&j_(XM.lhxl}]/G 췾`5)trË٣~80D_VG&T\!9Ȁ2茺lbԧE 7,Odb녧IE#1E %u/<7Zan!>)+ٵgRPlp(H~DU*-՚kϿ[a.|gvt5M_Nd jێCK"GQ5ΥW^.w-nwݱ|x8o\W= 6?9nUd7:\}}zHIa@HzߖG^]3L0;` LNA91CZn%7h `I6#,=u͑F¥=m殖]=\jvV9綩`1Z ]3ugFӅ4 KzN*8{d ulw_v>Hu"zdqhDCY+8*VFk~Tq1e0_ܳECC`6ĥe=Ϫ|=?8+1uzzX D&2[MJ_:&Z[vXl5HTsbLW/a{lRV'7,6S U >&AoR"Wˋx!L'?SMN9HSeĸ~Gzvh | /r?|v` gÏ 'u?͂ p"'rYLK3F2\AVSv&e%I`7Ex{j{#ׂsCWg;J$(7`a,6<Ԡ8YӒ0E3_C{a4f\du {VV:[y^!hG47heo'6Wӂ$JD42>W_a߶y2^;4`)% &Liijy־t/IΘu ^U*!`uFYcVӤPtjr2m+y2!.#n3qx4-'&k*%N pr6n$EyPJ83ՇZr-,mWu;,zgZᵑqїVEPt@ :o0a [P=*FW ZvoR֘ ]pJMUXQ>lE'6Jd}%vbGD2(';>=1P!f 5 }/3~x9,NXb`,KX>>:1*R)sAАYkeO{ C Hut _y*ҏ&11eAfA/7A MB^wLp#CQm_|@%!#8xt*H͖qhҲ 8X0iGbu]tK|(juX楌̑Ujb>M.-]*b!W&.z3 Xj)]bP? V%`/D;U QL)g{`o(^{}bdU{@\n3M14d<;LMrV;eKĬS s:0M8ySӚ_Қ'TL!4- Lߓ$<ɧUc}]̭-XnbLs@HivUKroN0^b&ݩIh6X. t^35 "L,i aWɮ~8̬'BחR|/i@AI 1jl}Mp0 :ar5rl\0nv#NJ6cψqNn@\m>x58}X)zs͛:\W\0^ƃTH5Of ׅ06YE$|@;Zzצ{0v S1/" l3~h1QkKb(iG#z{uaH,1pTZ;7)4_ NyDŽ(+ț4agҗr*)înS6of 젖|l\1W,ַAũ؍"j|h_@PfZ(=EIQmHOtwq癦@2$vQJ,530 ǁ3耢T4ynlШWqk<.q^,CSP9)K4>5׺J«1 e;LtvOfHS^a )<\l?(% o_;C?U|#{=[a/bgw0h%j,gz(Wc[ K;V'լXX4,1w8wD?,+scKT*mAЇC}HҌ]F,$uEg{NF9sRT7cWMؕk&Zq.FuOP3nJ}AդT+Lc\I)mD ._1nT p8irkk|ΪMVqUH1d!}&覺 3͊ezE>6zC>KX|{X9Xk ހ KޚTx^w7(L(OU.(X!aSgZ/}Eէes75GL{]9AKS蹧_Lx.0e[j[|k*֓[+>BsiSs'p00߅m!?*$t6F9ϒ-syA82ԭ2]+Wk=(֪'㧼{85(h x챱e8Pg[~C3@d\PHS )B9hŢĶxQ@=6пc9})w ePŠ?7Ï32kXo@a 6w+D* -%c"QZٕQfPS:]yDEdvA;v4L`!EXs%5תHՊe@O֨#%Bssl~$Y9uJ&7J0;' 4$g:`ћ>Us?b%=6ƈ>C3[^U=nTtRGG]x2|;g zGh̻ƸGRБKVm/CIq ;>,饙Ep 12a"FMQΰr=S^0&63&o&@N۩t_wkPC9)XNy+;}ă!BTs1'gBc䯜As@ N1h}c!JlYcUr9JX)Iۼ˚ZB?'i9pA5ErcTҡi2mP!)5*b gKh3=2 Qfin!<פ^kh2֊;; ] TL^!#e.BN*#:M¦VPt)֣5$ީVjldR :PnDwF} \7x\ΩDr~Qk;I [ -oqi=^6VIjBc#;\'ߤG| F0Vޟ珳&[nA3m{۫c.>PWsʞ]1[:tbmRo^"ϮM %A6WN>H)AU[f p9d{@@9>Č`NJ FE, ZC~ri+Gw\$> LՂ>{%翔RH&#ny|79oH40{Ծ2**}w- 7$0,C<v3.DQW؝ɳYtQx馡xK!\b^0Oܗ{Е TBy~twf"=5F \B [*?~?Ԯr#H7"$=xu6\]X$W}.Wx/X밠@T(U>O]5C^= k3Ԑ,(TL빁ܥ 7'e0Me۽h;x׺+qx/9$0Pnfba~0#b}LN@l?=Kso"700pN9BZa!+X/G,uŧGY`(+|Jl,L}v,i2;e:/ "XK3I~E ;}rYEkEP;QOzaQ>xlF2y@R vA{S-]~`zvx$4ذVk콤y-x7ZsBQ학N9o %虼4~bƢIt_6v2iA!CK׫طФR~M-9B9Є +cKH`-!Fò^|#+`iЄIJrd`+K6`CZe?,Cn+%]X׻%wb)u R У1K/d $ɸ4~Lʳ] ⣛ c& x-4;9 Z#~Wo%p3Nc3_5MŻAwBxM &-Z\]jN@a^?2NI6}MBBi*WPBI_iRhfe&O~TIJퟴv$$DŽ Xkԉ2.\S} Ԟpnݍ y 5)'o-օmh ]J_,ߵҶ}˻qF45(wquVc9c+Q%lh,Ć䧹ť7mwPSzv<рqYVbV~5c_&%+3gTn4_'mDA7ccOœ??5U!7DEOJۿQ*(?*+OV\۪S\wI$ƪn hdeQFdCg՘Kۋt [qP[V]3AvE% E\" Moaf(DQf)W\7S"gmYswfHh[Y nIsaM`>e~vZvC{@X}5@PU(84x%1.67 RLAUȫDY1~=5}OIxU!%x?tb"WJ$ V)6J/"1OlVh:)<ٙT4][}/:gU`i5pg *m֪2gŻ_ |c :+K- )tQPuDtw(Ԗ*lޓ)f4>It^dnI/4$m?E+>kUø7{{JPQ|TuU8LlvPVqYWP\ƦnN=ëyԴa*:sEv CFaֲK%/`ЂϕXl] nr?pkB¨Ȫ?/p@1'D.[5+; >[:Ysbgi*Eeb@o`FwӠ*&]H}a7t]gx9q!2df7 kG7!תtl\˒'@U(5ӽB0Ƣ`c*kj󿪳! O6 =&צ{ 3^#@^"] 5"ڈB~j;qCݶufӷ~Mu[!<43lÏlILPNf[mǎ?{a4 ə\na)ybYH/7]\`edUQWը ;+g73G6hHNO53z'9D$TJTv#}e&:`=>D!J*ћUߙ.9ww#LV2PZl$0Fc3) ySY2ƀ4U I@x9X5P™_v+; +26jN*b`&B]ŇFc:]He8w gt &ZNb?7Ys+ <6甚OIF(rV[A- _@z<W2dz12vb]&h>.K-`0Ay7{uiVz Z㸺e?(wC#4vs@r;v+eȕOv&zh4 E88;!vWr(53G_mHƧ B~ސ$F)=j3~HTlge :'+/ؖgKX&.= LJMY nKNawYkSh{}G̅.o&Ey;%W+>F*%zkxEފ٬҉lL1Zi>l*5*a;omђ|-ЛL=c^FS$tf9]L.2aJIK)]iA灗@VB-+)bCLeX믬=4iG-.V^+t,{DSec%'tϪTJ?#Ic1XgҵS qA'uQF6"B%hiR;'nu_%x3o3eB*P}R"߲C*L՘k50gOE6F|tZX &i┥hy{9,MT ew4CZdpPqxǛ %ߑv7Ab("i" .&r%`95eC&0 qb$GMs^ k9s ؖ(>>`ԍ꣖MgDŽL ٦~ao 1)"Б`i$EK(X)cQ!s m=(UՊ|3y>v8jLƇeiɐy|RUeX, Rđp/wuxcۈ@6677?0='1L/6{pL8bќnqf:Y=G|e]E9IѭR Ox܆[u4"N::9)cijД6kbִ#BV5[k}(7+ U%7 <ovE>?Uy)'ҦpjeV;ie p5 C"vL UV(EЃrb$h{üGu ~9Jwy^a& R8qQʷK2 jhXe14UI!JgvF) fǨl ѭP]AuUSЋʯ:3ܸfاьQz<ݣMH0~x?y f[8d*lcM<<|BǶIs R]s5/y4˴։%4.S^TU]'ڭ3s M׭ޤkCW!3Xd[Bm7JM4 7k_,6y&t4Z{3a& M.Yfsd h'+v!Һ䤐uh NE|Pj1)\gynȓKh|v RXϴƿCV|Uˆh}鐒xrxE4?SR/hyHxWmd?lVhSem2!7[ltvܔNP\NNIC 6@j Nt KjDwrT$Y;T ʮ֭_q`(@kRRԥˈpmdKZ;yè[ P5H70l&)^1FFE&4w*Ã!H6 % @.E KV<[iEC0lM=] ʉE2%i u=mCLɾ9ٞ=X.p/^#@}rp7k/ 5?>o9^j"e@VU>KcI&WHi~L=x.,I7ROEͿBKaH)eKm+`~^IG->ooYik\ *ɁW߉ikj\͡#왱>lTv?k\qyvBYQQFGv*c 9 gn%G\GUkUnvZ ZG1z%oD2ui JډK*$]fP!R u\8eX?z4dc>h{>ͬSX/zn?:A4NɄ)y \Eo~@ Lm *e"Q 41z*R3[چT@:1G $OmPgc˔zS&7|߉Z,"Svor(T@d3 uaqfNn.U79Kڜ-ĴPc٣SFtᅁ>v,"UOHaᔓs\ܐ~tWLjY%oKԃ̟2Ȍ:YcAK}`YHoc#NJS\~YӂTp46piRf92 %w2ZA[;>+6Huon19wH/.huʎt-LdD{)C{,]9AS"Ǩw,@|dZU0He!S׿ |P]UT5)Zb2s`ٟug[7ʤ;|yϖ|K*;Ϩv])G48dF!H|ܰbjzb!{{+.dq!n f=YӔqb6Bl߁ccU?Cj y۠k̪Q#醌A.zߒ}z22!ZG=!"pC]){<-^2E=$ #|Ѡ E0mc@]aeppZ2g j^=RiY]rN@k?`ZA2w(|aGSzbW wi+mˋJnU=WߢtYEiRlU#fyx Rv5_0,VG`2b3'QF_'q*E|EsB#lwXMl#qt `R.k?3s(8ab`}W9=R349?ڝj?8vo (U~QNM=殉g9>:[vfvNcɞikF7|+V:}}Rн"I3%}OT@i^2ѭ#?]iAgջWVu{M"/{7s?\aBy\܉߬뫗*2U+I )q [WAIdSJSm YYO0x<E9b9҃Iph-m3 6׹4URˀ΀,% >>5NQB~p{SvƒH=PW A*[ήï!̸A.4)'@=`'{lB査)\N*{`&՛/^N$/"hFGAg ȃW6©^n7(VTR}[QEp7bZZ1K= Ǟ ƇܺNPjW6pd& ze@SJ0 va]UbSĂZR `G;,1m@9myۖsQq54.9l/I-/brAʩht:V2i[oj",GV4<܇P0<& u^/7?« Jq*m'!a Sgh6xojJo_'^-vݻMEbsCp V5i kC1Y Ȇ#Iz0awr1v33::`9D4}Ym@^E]WluEDJ 7w$wF Yq狣BW ɤ;wa3C{9@L T*?h4>|ć{ uX3q:inC<-VUg= =ֈ+ h"+;ދ2)MqMn64~hhDewv>7.1->1.Nr` aɛ_ɇPS<'~Uτcpc:ˬuJOkE"hzZav%Ȑ!(f.(ِQN4vZd#BBX&I #R%zF[a{ķ*L9֖.C 2{3I [~EuDz?7+^i.]V^؈yn:'EB2q^?Ā4L8Xtj]Ja qOP1/SvrؼMީ G: Jb GdZM? ڙet9̊% wy3Ű-մ3԰dèi0m;Jep&,JuOR0 !?6?uW52::@Ex-^'di>fb^j[Ƴ~5zu'?k@M_1jf7x[˜[0WZ҃x|,r\7pW^R>w-,k<؝d  q$Un|Ugg:LJ^6&*eY>كb+M2lj-9/o}j f|@LO q63Qfڌ].[O|v2 43X<eEQ+R^ ])Fs?%r,\2 JyZ-HT['7.F gYQu$)Ӄ/AN=}!jK'VI@]P6h>h,?{8v~]jELڹݰRӢY{_[i=3TCKXiBҸ tqE~`2 }zӄ^&c&p+̔|ys>c{Tׅ}cKڈk6%| ~Iy\3<$U߇:.7L{*|9Ecl}R.4`yoGRq, P\#ǯW$@/M 뻖Y \m8Uv;uC;2d'ry;ԫ9{4sݘ0UQ?Hd_=$G ts&y2Uvkֳ{{+0a:ZB`K!B .`"tٻڔ,wM!Ҭx*ļ_q jF1;{)ɓ*)>t)6cY5B$8uVN' LYg rTV^"P|DjY;D>ɣw'q`p`K\V"PCaQyzwul^;{ݾl!#@qH=7v0z`⠣&Bb@^K;&dFoY@bTʙ\gߪg].ߘ:)s@ ڤQtתVYڧQwI #6X=DwOJhE.n'˺Q6C)zU$yFWMwLsi2մ& 'ěb|L}e6.~liJKPP0Qǐ&?W~fF3"mc$Wք /}]{JQCA' IM߶aWDItpu) [Yi i=mv Q(JX?Bתhl{뚼7*7#$&d7 2J$R^i&7[OH̴:xٶГT)K#2@ǽ>akTaȽ f͞AF@8Pt=mG)iD'-yr&ZH w{`W3uMF&Q))FD@|g#yZh:ʮjDr ` H`8ڤ -AV+,G.pwU^ܹ5i\\.&)؎})\ǧ{  &:e];]4+73!"OPA֯``Ѳlkpn0_b#⽣)W,eU+L, 8ݩ%j/_=\(ZB^PFLf322}88Q2&1ǦKISzڗ7h7VuD p#aH:0ahSD w|L9-x&0XlϷDԼ:Uc&敹ccGY765EjM-Myjp\|Pശ@$g\34L% hY#aiS'R(īt=slP5E*u֥5uG DIJ !bG1Va: #a,\{.Mt #a+}{trX5no\;f"-~$Qﱾܫ8Q,Or*@\+a ]l4`=y5iP,Re@kj74 %qIʒegsM⓷C\k/vH7x`k7sXFr7d3Y3Ѥe}\Z+Qlc"4LkQ0CsuzGF 3 }*1L&B.L1R^Xwd\AOj>4bg,ʊT&O0;3na|-\\9}#2 @Ny.BWD'J`2vc$;#ٹ ;EjiiGWCH;$w$e+'bL8_P4MYRִms0|`eAe _9_úp f}1D vt}-H}> _\%9_}P -28{u5n^a`ź_C9ǭJɡm͟3oJJX<|(ƌKG=($Q_ TfMݤ)$3GCø/=3W&:aY2IS}N-)G\Ls.hDE-H'_ȚWYvs|()YMҭ(sSP j Ē٠CIi],b5~48DP%*W.j33li@?ay,aY-#%| DB3@qM*XZNEhe SCW'h$f60ߘ# ".GdJ`h~?_ZpQ$)? s wnPͰ\O7-AՅ{ 1_tLoPY`˄Ұ_q4b C h8R^xR䔠'4nu̺"w%9}A%_z=(e~w/a(Wd;j i5*LH)؅=ks#4Z2P=fB .( {RM&`~BKQfӍ^f&+v<]c{rG]쨽: q"0*xrUgנ#Cu5CxA;Q[Mj{Tۖ7JR*tgyv!DmG҂95b^FEVNoe9c?Z[ hfЃJXk0?ox,֯GL6kMRR)"zv];ٯ60E:S#kzln Rɛ/ jh3ww왆6Ӛ^B$[b@ NXux>ߔ[ AzGR-O4]Ǥ\T$N/)>N-0]I"w_sï@j_J|P$308g o3,or)C%ȂַB*CsN㸷𓲬+6kc}nhTqrL&qn,gkZSd2Mq6u#w$/ nxXY=)\]S cNy|n~F4ҏ#L>Nõ; ͈UliqjM7>}ۄ7X䫫L?D;,SOL[ԈwIT$v&&T^W8<v yh>*8%.>,mY*<\ ԅ:a?a9 ]L(NNw]L׎[@] x,kҐ9ҳ 8wD l! "/>L7%L8σUXnU3FN;0RRG{T69g|MJM!OEkY ^~)j[FCd{G}{萁+:c K̒Uip.8`9x\L LW3+RqزYbXrr,a%\b%мixpWREl@1oJ=ôT5 P%Ԑ]RPjO]NX5Q{Sܡa_Gt^.Wˣ%h⣂j9I,.osQm3z -^ܣB;NO[o{tզAfhɛw vZxŠ2\0 6M2? Sx^Oias<|;$8^AN%$0K߅Z~0η9GĴa@թ Ohȯa 6&iw dZP:;V& ܧ锰b>a>:O5o"斂%;Dt~3CQb>*7i~!5vRTJrZVbA 9 + Z" 8z8\&Aw2Z('1T4jN|{E 7Uk`6 #͡K=. ͇uR2Ћm7g&!V0G8Qx%s&s y֎Dd#M_0:Ns{Hi]Ʋh[4Rt:#h2r34yęXZ_S ۦUb0R Ktxw1#P?h _%zQ`˦4YUCj m'4ZOywћy4ަs|= xtM5%=1DWkLx"]3_r)+HA>r,FІM ?=!aXdsc$uEsY6 & Q\;MY8,/$w S _Pp=ropw?F:%E9L6I)E*]I>6 ۦC9*eҟBȞ s=#1ݯs~b 30.i7BK;zQޛt쩤N$LbZi! ?1oa3WJ|nFx$9Ҏ*cDNMs"a2hN|Ki:Vz54`V/iZ0iU. g /9hQ~:"VTPv" N㕍T|[<U98j}4 |$a4:)--ͻ=U}ȿ^PVuh~czzvZ#m0ڜ+ OΚQxhA-\cQHO"32^  `@ .lnYeO nͱtK<86A^{+fb8̔W>EЗ@k׼iްBLb`e֗^ib>(hJQ<,KT\~^0zsV$tjBm P+!S-x= "s3YI9sJx*Ѽ1RK2ؙ95`'+2eiz^l]QIa> 5e\T/?:uY aNV0HB(. pu}h)4P9khoޢ6ۃ?V;Èk_ieskފ2X GPs5MCV&Ƅˎރ^ݥ@`r7ʶ/~}Kgs}@dwTG9QDV^RJ+5GPc,U3vQ+@p8BFRjmn Aɝ/aKtd(pnc1CJ`XyDz2,7/|>$ W4H90=^23(”c)=WZYzBAAU(nJN D.uo],_c~&`m@h[AD)ww++K 2EhB\>׃rקVddqv[;d*z1N#w|FJ#%/ G5j5Mcc*񺪥e j07"nõCWtTbp?t];faoL-u|iXŮOKE"e(YHfG8_2Tk0L']$^gKd誜V &}:E8v8ngXEG/vD$ !-<Sˇ}5d +lB3Wrv 03w,l[v]uZjBׄwtDs^@8ޟO [^bR?lY&UX&ke-aTY$aKox5 Jj~v' tq |Tmf=l_8 =gc*S@ 4{`H_ӏu )I}k,\qv'l[ dirYzan&0kp QfΉxNB U"=/m`H[AW_S4{iH`wvF3bp<ѱ};kM)62K'Yw})9C\>\ 6~n8H_ajCHEmEO&k1ڠ*ۖg ?@~(znGHn=glYU,iF̍5h^C]ͺG/r6]`c/h[P,oRc4&YUxG4R1>*vҭtNS|jbCi@NZ9=?s"I_PpG7#(zS7uET+OmA . #0/J5>23+R7RȞxHO̍89\ߕ.8mf HmT_xgdT:>Ru3$wn uCmhQ#‰6˃FF JIp--lr r @0=J&=E0$nN-%Y_qIeG4a+ؐz1Ødb"劄{]T\a;5 7XPn ">QH߶oZR1JU9nG%8H \+Oi} Lmȓ]q Cc3 8 =JYLyRg`-_Z+I|1W#pMy2cY؄OxONY-"22l9:hF/8@mwJI4 BАz\0RgWJ[w9Gt *PSY_7;`:Ȫmj@Yxia_*9x)hr}&E]wZcm B磻$ SK.`5DacTI+e7)^#TƲK_05^Y'~_ "SRnMdDצ_+/F[|h;O5"-qGgC몤&C);TU^mDU 9X=['T4~af(ih!N;%#~cEo8jQJx6d 7u_3szpp{!7څNd]K #fIQGgF.rl]KYl9WDYΨ#5KȻ&gu.+P_>u+A~3|ǚL/O`3O+5Sm&PvJZwuպTBb7,ъC D[ș,|Ϧʔ讘j# i^nLk0a9WNS7 Zp=-!sJ&PD2?X:C4"u)cT:b0˟])iYHCMYcQ4U.@bX\qh&;y!:UEJ3L >J脹ζ&6zL+aB>ݙ[@2r9O{REj ɁZ,I~a?ܘ&T%*e&eu@J2ipSk]4n-g;#9z<= k©ڶX b]r)LK$FJ ƅԨ՞q'F "fhTb?SưY'{zks2T, $tږ 5VFnK:Au c!3}GT#e[T]1ѥ>Qh iA"NJiZ):WǣZpv|=8){Eaj՚ķWBmmcqI. !c FJ6M bL %( 4TYm\'.Z|g9D?Z흫}DrȰ -&&_n ˺)3I =g0F"] 68tC$FQnWv_aJWJI?I9׫]v0X BﴁXc_ S(rznl /5kyƤ絗AVf`n"/m_4Q8;); M}ue]DQP0ʮ|@LJ6=\#q-tm)ƴ q s1HbA(? zE Ba;o[#rzFL3JG^4}"(] WXTwTTȏjhtSƄBB#ͺJEp7¥\`KEKR[N/[=&$RlU%IV/OU5!:(="#WbA@ 鄈ީ̀,w׳i],_Sn P,(g]4piԦ{+GCrc<&b挈%*6ש0 )F"rbu>|?#x ;0itS;\Ķ69Lmj*{P!Yp r"}ڃiȾ mqMe,`:,)$iG /xF8E~\X=@J Zr N/ԨD #ꐟQUgǩҁ5uGtԹ*4ߤq}{+ aC1SMJb 8?U Wdӈ!odX_|"p(>'Զљ! v"+qW~nTŴdݖjB.eXE{kH}̢=npy[RKz3y(¹gUz*QY6mo&z˷>"ތ-lvlÉ^8kȆβ; ΥG~Y/K J:]R1ilh'&'0U]#Jq̦P.*eN!҃VƲ Av*jy^Hm+@qap6+b{/q- g#m C%N>.eP_[c~Fnݝз)TKJYnr.&r>z~hp 7;V6L/Qހ\}A%=).7ۭ+(E gf O+mSuHjJAxUa1GAڍX7[+/5_'i*Me^A""}ʻZ"*uچ`3'8 AwOX|aTi,T;(ro^=$yY/oƐL?^K#R$=sy[1*L'n7ڰĊ R,7ƆU@μ! ڹ;UK$*.`AE"g O :'؛!^u$d^.*(SFPpz ޠoATeCASqYD&iCŧk)}Ha ˃~}PԷ䊖5iSi*n򼉪>ȖNz_K}qH /jU\κ4pdrcCzߔ*Hx>mTjb8 uHzLC(W:MiS~2 G@um_@H`yu4 G0Yb`f.Bnv|CAWěae3l8CLΰo yGZXOa> _:UQ~>xGnmɴ=A1pz+b;z\Jxi^t7߫ WTغ b}郻V >E\Y޻/Qe]4Qhl24gu<A̰nWRXx:Bew三~Sh+(\j9D*uca\~jV}˩(OskLI.EʁX xKq =iYH\oQPgei1nߒ(q!qaaf9yg_j9pL ;h(:N!?0- <u/j|9ydI*vY51F4kE[wx3,K5nc?_](f[rԻ@6/Ʒz4FgA&_6Mu!Ȩo T1'*y?¬عY~8m[|{Cz>^U-吹؉ XS $NrT1(h~d[HQ϶\B.?cb/x+M$RFiVOW{Ϝ63Ӌ)Mv͢m cvaƚ.$ nW&DIՍʀ}pT3CZS 48~> _ -QoA*1EvD)E huyq$k?=a{"}-0Ɏ @njpB yQho͜Z⿂;RQ)y[D~y|t&c3=`oD`v6uMCdeQA#$~#*+Qtlt8Gcc 4'ֻ2숭@Zj'΅cO&A>xةQr_As)C -qB8/9q&諏"f%>N5J/I8 +ZdZP #cT#] ¹3NhߨUw(OTD= #wJ$ ]AOp q`I7%2}TK*^~dϕʢ=\MOV|!rR%$(cw: FU%VU^$ ?%|1X_;!\MwEO]yw(9I%hWiECN<̕>0s^**Ƅ5}vh)}!>?Y@.I׌L=Q+Wy%-n@X R*!8:<5! @b~>m¸Wq2㥎J6Z,zTuf,E%!_  t_~0eP_@:D5#%l6⩅B]#JɹketEQ`˓o{E//Sm·>1$&biq^hHv=n#~(!U%HmBp]ڃ Q+ <0'Xo{2V2*Nj;dt&dT߈\4VFѓjx*=@Rۊ6ܖyXŠ&wi'2f!ۿ4KA4yD8)Bk2ԊTP[w`DV1=楝}r.̍X7 G er26O^ȶ=۟gGɳ.WdUmTuIW}"W4h*zx!̈́ÙGPhanWG^5{(D"mZ >[8*z6yS<($i+W=?Yg6idoO{&U4^V(1ņbWtyvJɌ Wt% ; e!.6b,@6TC]d'uW߷<wta׍xI9< k-L@A?Oe@ [:sMdz;S).~),-} e"^`۳7M՘sQze BKu<%Ç (PI}~ފl#jA-ٚ"=e|KU%5? 2sꙄIMk ղk:&cT{H|~~{>Ezb٧̏xd+я-ŗ|ah%.!D mcS3X;IOSHgEMh` P#ώʾnv7nz,cS0-lpY4!7sPA-M3rI/߈bw3^Oj Q̫P+v[\H,4m 7mTޱQe2woiu5Y:]vEG㹖qA"sϽYc1җJ[eE`@a& "pLn`=״0TWASIKd>^~ZcYn!#o7eF5S^|y;G0|^ݨ,+oJL. ڙάsq 8&(gw.]7Scem" p] ,[N ໯n%d&&{9'ԟ뺖 $Eˆi|JQawбr_&VZd<ޟ9oO[/bzdãskʻDjtj,4B r2`ڦFÈ|eZ T=)lޠ@6]{ 3r\9;}P4TfNCR($x3kbp!E ,59jBk/Th 1Ի^8hPDϧl#XZH7/CڕBqE# |xF$~SNTY/ ˔YE!Uˆ|v.=*<,^hK_'a4[nX&K ɫ,q}"==%Wo’߮Kܴ9!vxS'ǸwOP'SghkDEP8D$GH úr(iT% OzM?J{ujcKEqNf|>8XFQÙ݌+sCiKU-%( 12@"goRpkXR{w(J]1d&8ͣTK~_ ׇ4ЬBCu  ϒwXqe ?47J%O;,_Fm֮UK?kVC43}l ٨T)~QsWKƻ$B!ZA珖ӧ\eL 0++n%@uP6;'1x&%>#JܖWlsP4օuBȩ!Ώ%׸Ebށ9>evH{N[8S6 X#x x8²%Ui;ĞnG:/DOXU q]bx%{=/`ـҖH9r ^E5@{ӥyh[d ~єii ܺB&ցiX%8JiH*Ԕ_@F9`$7Yd8SIfڼN2ie*RlxAb ?2k"`fC˲hp:QZ>UnYDuG԰dOⷳދ3qJjcj&|xA ̽@?NU≉J"j3EKG4)5wǖkr3CϨ2X6{uhmkz6kz_{^޿an G݇!+p~V'Jg(rq Bsen̄-ɢs zjl5 qa:K)eC"߈^ y6b6IǢTA)2&n [ЯYR B'WƤ @n|j-3m5oFRMj(Oae,R̢ DpOMFjt§szX|X4sdn'#`6"$}e-Z=c"C*4қn-"rhH~F2aCb 3vHJgi|!mOXc4$궶V]ua?= %]](t{]*8#)=cFYܱT/pS~P3O*!]I ѫ:>I 0ti(K7m3S&0!WnKGZct5l<8Iw*e{f!b ϜߩONmDucPj&cᕸ#r=!~3ZXңW]sw6"13#6*靐{3DĽW"VS yPE켮<M0Z/7ULƕr+@T+du<õbђS?TY=ūqDb.(4FeFX0z  ~WnGJ1*)c ne6 XE9I˱.msj 6;4eK'}/Z A0~µSaNl݂ "ۣ{6*@Ya R< xz uaN4P$ܮhO.B,/p)IW=C6g8*|-F\f]2 T$84H.npWj|:Ҍ_ +/1/Г(dPN D Ȯ[R^.{fZi>}Go|! Bb6g&&Lf8@W҃7OG`3Q'ޖȹ+O Zf k +fJ7.9^G`3.$#/m; %-?HmI7 g(J:@prn訒ˠPM!W)?m(~=XVm+&$T@3:vʤ:tKq"aCD !HXJ L]m 虔*~>C ŷ6a껑_TBNd:rCg]%Bs~X,KRMw/P}塴d-&k*!  s2-U Q#W i俆bpd'&vVߧ3{7B-emPs#éYK~nN #qYLb Fu[. Q6_znS O]mXapf.0n^'Oq>qϼDɺA H𴧧jm:dPPj'۶Wƶ"˨vo)2lڞNq-##<xBMup*F >h`4h(YerAU5+6&ř1Sf59,o9Vl&PCE6'Xq,TYϹ~Elj.t.x5 U;vr3R̀w8:(3M*s{OcYtqXq.M|K[Xk]5Of|*] l>{gy=s3i`JLRi5{72$XIHbYzfN®NS't eS./u-T;eDYǸ*cSFdG2-X̪ DKo~_"XY"FAW0+. kcO Z#,ja}|Ą ҈$lJY%F91im<(Ks˽Lfp]"7";G?sO'8ȿisD!%!Zvm~4]`1md fѪ0%%0Xxu&uH I+[kA'ƨFv1֯oܞ4/6J Cd =:PEO|L̜ FrS:52nQ2RǡE24gBm&CԗLU(\ƳUf8:(>#z:#7䘙(CT΃lO*7Kj tB;-$ジSIZi\OQ:IJgLly|8RO,s/CbeVXtgMDkW'y 5O=ʹ@6 "jb6y2eTѲl;̌qQ6' :!82=1:jәUOɐzZe=Xa>~'M6r0T]W$5s*ol7^#/@6h۵sLSfhjցpy?u LrZkߑ } (3mC~5<6] l 4O3 7'm>4_H_]1HIΟcKۊGw`ΐK1 ;@wɐ(R̙?\:Ρ%OIlǬȂ:Ip,!):EM=`Ti jdӢՌvaS;ap"I9E7F$Z,qL%W[  ]Q d;'Lĭ%pJ,$[֚8a 4T3..,8v~Lo&@U=Yۇ }y(% OgtH)l4PdQ#0]p V`\$ ޯl~ڰ;fkҎKv w {ہ8K>G:c2DQ_oHppGt ̬m `ԏN9G3eIep.tdEaøڭSHb:gfIeLwvKaPaحJ0Hu=3 u4~apT3X 3?aXokϼat6%`V(gh1')?;LHj;5e'"VN:Xdv=̃ YVgH`]k_$Ơ lß M8IŅmdBK3'w@)P(l KwqLby{m0?AƏO/ Mߟy90{uG[`.ƩpL<1Zlj@+ie#8eWCa^Vo7#4&"~4R.#%_D,b&@*q @g *_=MUex^w`3:XkUqOZ5hm*Ϛ:rOڮ$&]ו9{q~e6Me&x f\,jPI *]`7TRA6ix]0 +${)&_qz@< ld't5 ș+ /G,v.>(O͢qF(UٽVB[f鵦gw@!‡w82 72w;=cɓO+ACFz\jn+rG75wˍ4)3B6bC4$>\ F%vb(9`EtJXh^?u^u@i-b9b⌥NnO9 N\*P,D:UfyD%:9+-huHa_2 Քkrox'x7LLb;jH/"Koo3?9- 瑷cAeˣZ:{Χk:HLS; ,&4fp WdU?EV-U޾W9~ŌnfBK( 5m x).^,`E'{IS7&c/H~&FlwNWڶivCP([_^{̴ &0zO\lEE`9KV08͗ashdndKIՏk:gcńS#OL~bnsh[R'b]uK]4F\7ߨ[TYR s(5RZSKzV:6$d ]}.l w=P_^X` []0l,\qSTUi81D2tf Ad8pϛa DL hJ>QCԬ=cʬ|αeȰI-s YPH/r5e?,=%A>;үFx'9ۿ.Cb/n[9 \Gһ\F \>w˱H ~F:pϋ6,-~w(zhGbDb8+cС~ToUnET:!q>7/8k\S/AK^9ݎxМW[' yy %]#X;/{: O,j,T*-ZMBFZUtN0)՚3z>S|k>`%F57' ;\w * {_ Ѹ]Yç 澄𧑜Lciz@OXngu$7zT`xmf>7|f5qiSd 67k? ~M2!|+A"dUoAT2AiȇPٜb 2y}O^uYV hh8c,]u* 3v++a͆Y6ϭVVZ=%3="A[녦FzM=B# T{\- W5-m_Ҵ}/~wl'ƊpR)dsnNۖM[+)!Z W}M^ Ol9Hsh]5>6$D3^k+ ^>!Qv: ga͘`MBaiK`˓٢~2}>\p v5|.1dmn#kW92!yUf,%Wpퟎ&}*{VO@4.(T`=?=䀚'0`o9sY}= yq#M*HƫKLW>'K"!BL1Nn$#;7 #.(ւ::3YZȱO F.x8àROh;5;:t$dMک\='&`~yGv{`GM`Hb[I YhV,1#tM;}slO &}~# $ ?6g ((.ՙlK=LJ\Z4_jG<fBjl@)o\ <1,@$tPmO!ړ岷\T*kxjq~> st? l)| V-VY+E"7ȝ?/>^!?$9Okj仵|tⳆ]s@LpI_xx>dW(5&[8[CClቝo2gg ߲Al0Q+I,/69 IRQϒk= zRq=2 *嫿Bh]RZg xΫdr{WvPgBL]J*{. oGc,?z[k!$ωʟZ^mw6k`_XnҨ.I7/G%0hM~(5y MB"s|pJ"-<X ]9掝#X 0FRS2[;pGVed$eSSKZ=phՄ1[%aP <96qz'֤1m$ܴA'z2@VP0N: 4 TCɅ_ pޙ̳:^jU0m/ w@b&Hj5q CXry =5vJ]?I06jf%,^5VA>76ׂݥz Sa  轜Q0; >쓐d ̒; {ixKJǸ ~7`ך+%%@Ppfς;c}V8ab%|!B쮱>eUwW!p[A% ~0:"trM[yb/.LWY[?"7"(/ʆvDm{ 9=*UkIHH>;X=3ѐZ!Bʓ$>]fu]Dӽ.kO3,:h|^i#8=H;T5ωj E~RfC8JI:Vq$^_p<V(#dW0dW{5{:|i]M <ϧL#>#H̴)Rs LK3n<[o g;^IZ'?fP"M讻A;7E\}:jz=$7SPf#aT[vJh"1eêu/X?p\ymH+` '=6";P{X҈2Ҹ=\BYg~2c(^ctج)PqM6O o\a9B3 - 8юڟ'SN~\0槎x(NlkhN#'rJrGD`{H8R+;e t"d+kIxv=6/3mke]m &"ѧ19SxgP:%Z@r_Y,0.숍2p&\)F+Cq3rHO_#-3?$"šuq@@:R8eDf3J4z; Pz ӭq& W+[Ψȑ&P[WWjgf`\d?R4$եtZh.@h[4/F7 DsQr& U5GR}q..׸ksG =ıV"L "o+auDH`~(cUsg]'ŧ3f`c#0Ej0}^0=/K@"0`@qu~кsqLӄ4躦~bD|c j}tSdNRkl Z[)Hts"z삳6;d?{k#]NumҢqdEсR^L12XD/-s?;hdT>tz3%ӽ2u=J\$)4 MD3x0qǨ :1~zn%6DBfd':0-;\'|v`HV;xԛuM{4ϜcRT~+iqQUO~"zT.rUt女Ür\s2'kɳǁu,Q;lUͯLM`8vKky8/5YkFl(kzJ, )VB;P_i7'bTr9L4Lb]d~%2-#=,H'>Bopˣ۸Fw']nN #ƍɤ4Tùɍ6(ޏ˕ܕx.yqxpu/)e &Xq#ݰ\mUzZ߭4o٬֏cn _}WgK[7vpvޯ\FeDg픿vWMO^sDCsaf+$W:h )"Mb}𯚳q4\}=+V { 'x O0-7t^^w96/qv9mx3bJX6*38|[k1, C.7J  7 hS^#;ZA:^?hcT>Fx >-eIHRn5xrv1P N5%jcbQU֔_G+Svy2,FKi;k:7WlV1u LpM+ÊeTZ!}֝X_OΤO382y6/TeOP1Q;br4cE8;WIJMGP3SQ@O`$WFCپЮ`Hhwl4W-KI: q}74>7~iYujxdz(㕥S0ꤜ?l+[y6-'ӭT3M+-$ˀ1{.D[8Иe*PREd䁐EN<?y}J[3~X&9Eǔ!јEZBg y ny&I{Ȁ KP&5jWy5\F w.#gAmӒVIEed|F9mzOd@JKI+4UPo\!Xʊ[zuBz*k0 w%+nN*PރtyQO"㵹8X z0b!< DhN5|%W|KЭh}Uj]c EB"ϛ+ JACt,J/yɭp{Ū"'"0Aά*7$ c%)x): +4Ƌ.CAxSO>mFY] #ɳ׍_!zpl+[(Ǿzr麈kܸNQ*5y泈Em5&@{dFcbAjP?5;+eQj(3aTT*CP ӻ4v?z@*|`= 2E@aa?l\t2+#|7Q\Hi7$)J6賮C⯩z2Cho?1 omr gMdzu+#e, +Xߕ J6vꂼ#(<"ZDqNd)Z'8 [ЄddǍ1fjFͧH׵Zg}.%0[tikQiQ8Ö/5|D&oMEM7ZX?5o@q/6G_n{:Hx̱ƗL!G?_ƥCY~`f!pbe^AxWh 3<vBVZhK|LI۸#evBKB T/qd[@HrA?î3}ާEVNuky"q0<)*7"խ~:ǝеءJ'j(ߍW¼}N3,Skj0ȾsnGp*O>~ΫdF=] nf1mQ{pL{0 j'bfn"iЕmvJɀzrѡ""a[[tjל7Y~{Д6XvCӟYA&ͣ,B+Ȝh3IV񈰭z[;נIh)h}Ѯ!~~SY(b +/o<9tߕ-V,iʼnHSyU< C-P,;!d-QcPnc:TMc ~^ޖ.#"B_0l.jNSUWM) ?Kt1gYdG4t(_WmXMK-r&g BCKVʴE(jy$ΣIMnr*ubLi^Mv?}ǓB5SYY T~kC'跡6X{gQ<.d0_siirE|}*wb$ǣu.E]`b!Xz( C7rKJ:?Bs\475Зi9;B8`V]A`8zc@}{19zi .w[]2~$oPc qmmr;b Pm dSuy'<}Rl\4u5ܳ&w&J#;5,̟k?>EjMxml=fcowx47\bA$_?K`ث'|%RZ[)O2K ?x]GzXs32y_䍪>瀖jWְ.+ X$`F=\*$j"Pu4\ /CqL /^ɪGVEYt4bĤVK"*bPȫS] Ic-Mh^]arxZ7EG0]8/dlG? /RU \9kGn1uT~Et f ` g`Q;#A%外Rݭ8/a/͑ 1[/Q^;mda;X#Qg}Nk(ّ<;hvɁscjO t/ؔ.5t* .)2ιK̍O%SC7bm0{ 3ܡXØ%&i j:\K'Jhѫ:9һd(u#V05uSْU9r}z|G‰0@ٜu I^+L:1Tq6a34ş4 lA9Xv<>%J۔qY=FcW yeGUǾ6^pi,H#yjMq2GQ]03!eB%=D߉?fcl ]5x JI_iQ-oBC%f\-wl)T ݟ {#JΈe;I !l;ddw:)d0~ `vP0{9:#e';G{R'9m [Z|Xc]?O|:v,bUwj("Aj2'{nzb=dV/bHX=PzOt%0 ?!_O4PSqdP$ŷIL@6^8^ۅ $PSh߮K ?l #[C=H.qg-C~:;%9𱁎F,c& qApiC#Dj8H9x_q߰%naL&'|VTsa ~R ssf0֝hw]+ve$.4'qN/B(wK&VȽtn<]Is!$y #OS鈃, u\}+"qanb,'2%,z=_KPE>TRcdQɼ[Kڰ!1Tr d>]Qj; pSTM?c'8IApߜCu7 xu՗-V}D\OGhJ#!914fȟ4,`;wc]|ӠAؿ Qfg)E L'׭jjnX]cmYR 6%doBŋ@7q厲+`T3US PDJ~yYo'){ޞ~"%½T;e5~K&7s{itڣ}gDMɸ-k4''d9 4 d_a/(˭V B0OxNRSȄIݑ+bDHۘ=SY|{nںA}(9`z9Kf%hKU=@J;8&~`E5i T~WX'hw=g u(hYI/wU}}AD: /D6^^(rn6[ˈ#=ܾ-@+a(2œ5NKdN2CJ`z٫?65Ck ^8O'lA"xThV-5GdNB9:Ah_ʚؾvZ+ؘ[ gP})׉Zߵ .tqªwe+ dd[(L?Sth:%q E{fiw~F8 6!*oXґNƜW%cn5{s #X}|ٰ\zL}Sҭ :6)ۅ[Y,Q[W(^oUZ26ڵЧ3 aXS}[o\g[Pv6)gh50q@i~eD e~H:`̢ >r58b:[~$N\J =@5i+7{-j7R^aDtʧhLw&YQ{'Ѡo%dqeS>:9*..(|4T9#O7ͅle@Qq a0ԋL+; -iCO)E+n$2w0OEP \7BG{ڼ5]A5 zfΐuNBOF hzVx"nth_2+$' t9U]^h44;X1* Ny|&)43e+yZ`>G.=M?z= Ac$uCC…euxt~+p9sm&vJ^^cFiwB5yy0o9?r3é?/`ë~(3- ɥl_>Z YvVݮ߯g)4kP5ŷo~26knd6),vCW*\}vc:Nh٠nJՁ @u=|X/H vz^"n3A\ZQG&)iGów'6۸F4#w4R `G `-Y 㙑ǔzX:"eiE{V ;x́e"Hap1N\/<ǹO_lih QdMk,w(A)2g5TBlG>BT )Mo `J,Xne;rnz,bnMI)c7l䦝17]BGaKsHP4X*0*1z~~J}g&G7g]LbȂUM͎՞m:w/&_~/eGK*Xs+5`=s2{*l!mdUp0/!7*y2D)+4t5<65#*J܉0`ê](Xn@׃7#_~Yd*L_ZwNoӗ -}FƐ]̇֙ypMzlhd~vgT˗  )̯J@#uq\,tS`@_AW[zfBa\Tn3b迣3l/H>]$^]na<¶j'#(`cy<*Uw[*D.Qud|k2jakWv*xPyV9Z>U! zVN''c#N)6x-rjsDC*?S"uh֭ .|-$ ګgPn{ .'.Dȳq%i<=AtE9{m|?q,+3]W/K3Ը܋r SLAc'J}cM0_RtQ`q4@ SSj?ik]e0p馁xɮHf%\ȯFk+-٩ s1fY܌ʭ8Y[jH5EO941?G%0 i_6ʸlS³'yUjgxS>swn*v*ÆكbOvhudMcyHB4q UNG_Eҏ^7`E4 /qmJ%99-imgT1k7!o*)^UY3 lF%,}wRpmM.׷>|rt)+޿|%iNMdό%4/AVW=}NADv}vr' 虍;dnV`EkAf'hbfW+r8ǹ.Nu'_@`MBUZ_## j$zo7})+N*NRKhl$ճPYds`Z$"Fu!(qiEq\?#Ǵ;5I%g1C|}) ^q̍I]6b"n9Ԅpblx6֏lt: `+[d7[^uMN͗6,Iz;`{J˴}h17 !F>%#%^$\7|"W7)35#^eĕڝrM[]х)$j fď=(R%ÅGEpLj̄t}_ІXuUf}AK HcTsM,~0KF1i>Z6#ѻ ZեK h( -N%zY)(N'ZlXC ˖#H K!RUb&4RC7 YG},?JVxlWh@߹|hAïV@O %p&bV"+Ҕ yF46d-uNMj|HZ/"ۥ%de wۺ78H!w  "ʝLA+E|AFq5:$;oֲR %! evgeK2s>ch$ Dd%0U7d'&A>A_l]`9XBShiLZ-h?r f=I \gYw oE>@ UD[R!{e\eQ=oԶ=6Q 5 =PcJbNN^PQBXkTa< @cn Z%"8|W"QR~B2.|]p|@z0bjS5Ǔ2LZg%? Xh(gZ)#R;5ž@bI>=_Uu'Ev=2({,O#80knogaT%m S8Xs*3bjIAVcEM*DrCH9MkTX= ymz-&.1+ԁ4NDQ{h9̼~頶,.\9!WHQt~ 7QP-=Bx/Ĥuȶtm9N[SR0ry-ADO%:%Ġð)3()j.=1~{EFvAS7gOvi+R/O1Ç' a}Dn%=Y[3V~'~2ב9J!.| vNg\"gI&r:GQxIۙZ`RS"+:W!ˢ,;6+)6uU gajZgi.)lPg,+VjCM2 瓦 ]Tj; L x\ߒy6"2U+Ji d{4+tHe t65j\ކz1 ^!\spqWuzaYL(i䟂H] :>*`k]身v."Hו> 7`Џ~3Þ7~܊ lk$+l6'LFKa}&>KsEvay7l];j X*ma("MThwq!x Rk=UָO6lʖYNXMW /JP!^l!m4䎚Pb S#,ęLzьɿCGfr4!ys.m?kfb7 i`wVlI:) 5ћ,x _^%/I,J`E| ,FUH -̰W?;X_2,袺†0B$SXV=rj7Ӳ-;큢B$4}9cMЅyE/ Ծ+#8kS"+Hgڜ @Ô|$(;cH@=8'Fq3loC˛3`9@nNZ \};s MFһѴ G=:t)NJ~%q yy4]_'"ՑInMhbUj;{kM-E:(0]ؕ7콑@f+,;įQ=9 &o<3:e&=gG lL{]%F}nd{Mw0eIPy ~8q,/)ٽ1Z2O3AG2ah\.NBLîQm6f2y^Dv]7nIϨ#S0^ZUHP1!(L@N2Nrc*ɏ$)SݔLJqdmmT ols>XJP8; 'H5uFyx9a P]a xUݛUqkSND uA >d렸+(gnDhKp&䳣U LC|XmHj/ECx|G^lItub Z<.3V ZWf6OEH%׊<2 E'8fksaF,J0b:.r#c}QEmfa"M{g )F Q|:WMĹ^0d#S%S)cBvc}c5bX&-OFAAY4 `XvS5M;-B ${y࠮:% T_vyX@*0A,Q`SlMX(#4<7p&io+J}p|WNEL&A!崼`}O #Ep[!&G2gRvxaSPMZ%";_7ԋŎbf(czP@BCs,t2;*yl wha˥V@ ^7;ܩV]; bF)ƠGGI*6Ծ ,k͔:_87H }/&BVsh}*A;+&L۫"=\Rq/3䪜=I]>9Kuk|rW#_Yuym*ZAjLB[OS473wC/B1g&[$\)Q1BzKݜ8?sG?z)fͱ{zZzΪs{* _p߾Wvd70&X3xQW\l)i"dL)j>[*/y<'5 ÆjFʱ}ؕdct|:+؞JjŊHC|ޘ}[LK<]0؟bךw/1&*g4ٙaR1U0hg翻P,VDʱuRcM)Pe~;^ffb(݌d]UqanD>{ҿ+Db(`sm>n)$]IZm9A1GO$oN놚{suI|-‡o'bxM\tSF1G3ԯA4F> |$kp+d=(|/MK[5~=@+p`:o0Vx#ޝm@N) ňbѭg 9Q^<8m;CI߂{p}(Q.`{Qyh&ȬM&X9ɍ(F0\Bo _:RP+b YL*{bA@=&׼֦7F FpI!l+x9nHp6J>U<>ǚNs,'z{v+5vr3IF;( \fz6>oOhu1(\x$#h1D&]i25;? >| u>* c=Wj6_%+ oOTb*ðwx/?nXwN֖<7,1۾?O+ I{5Iuޱ$K(bȌ* d/ap+c{.CNu]j3 J20~tX:} M,1%5c;5T 4,8@b3эIvq+t`( I{@9ĺEM;Dh_2wظ'Nd '!6_V~;t;4C. :> Dlyȁ2tcNK*G:; 73Q94<h#jǥ7%|N+"ƷA z?es"/cJ19_n uRS%t>p#[YhRjw Sxӧ?m%`đ50%?2 :qی+ fQt:)I#fv+ P?6ѹBja$(v:4BD*H){\A;Qzd|Y?r-Tфs'Mo oa=Q#aM [>:0o5#vWiJ|LV;O0D2Vj;68a|WF0,R*V u>WL;BT,t= @H:Uu"M}M]a+}]ۜ#{2I:qkP"\H2wЖlSA ]?NDk5J?‘GJ&u+H?ߞ҅>̙[ (KћTT)R3Zgp5^\HW=GQ[4ڎaSʧ_ڃ<(zԤM/"GBJV(E4(#wxqhĶ;܆*ħ`BfQGbC{\_dA[Klc& /AznuN%sl "{tdZJ[EP9ȹsVmu>i?J_9x._e-ab: ^F\,r(cU%'x#Ʉ#XջH3(z?ݾdd/-|VT<,.m2(>Z#L@5Ao6jS&+ *j &,klm^Az81j_jQ Obk;kcѻ9 ]Zo?=Tq"*MYKu|bK8ZF]EɆ1#G1\r2L!8}s8.o hԗ6/n,X (p*j?tЦAd.栿z4񧸓PF ȫ V\sf0d?|+du{\wJO`iڥ%չ7&B*11bJWro]2jNEcmτKn[{3;QwK{НDb9 C+pO9Ny@މկv˭0^ඡ]q= ܒHL_*㼜dpߠ|k<[APr?\圙sLnʇ{bH!k='Ƀ, %wF<,G͹-ܼoB||v@[Ͼļ-,P~^@h|rSwɏZ;\?Ksҋi^ҵ~ix-.|N%€_ qamEQsoT;y;묋Zt\56a8A>:zwbSw FS6n͊VZNV䜟vm}3BDXK9 4_ 'd{GkcfHO]/9tNif!q{.ZKkDSݍrL9="X_bs6 9i>$ 1ͨb7Vsó~'%:Wk 󬘙(p@V 0(=@kP#y QR+gK{'f z"îp$4[ܺ$>A/Zݠ~`Y(Ԅr!J$.-Y)^3^ιY]>^Lx.-uS>a%"C)RO*Ř4`YxYoc| ou/ӬCq'ے>ET2A/bq+ME=ѹs\,g.po(5k~􇼢i182H {3erR/Sf͡1+޳>3~W^)劀Kh &d'.r`)P %B[PKzR6(g~ H53ٲ ߋ{y͜1-(jQY'X DHoTD.yAwXux:wUʎQ4Ī? k.q`W (E>4'l+So0y/By ba5nHh2IB/Nw{+7(4%e? hW{?ݶh[5;g]뒦~}gϠ!,P6M<`𫐹 x3 .H+f^* }<+/D[5.ᅼQVn*u7ӚW"` 35"E Zhev,%AĘԊy1a h*`y.c[ILɉאn).'sbא^jPch`[J=,1i,?la4O!HVڶDT@-Ӏ%72S$_؍7vYo, Jn ^S<4R򲸨J 3I R5V*v^rbf.l91Z`&q6c%Z͆1Gޏʔ*NcM_1($}L=;2֟1mB{jX{Fѕ#Ym? mGkw?l q0vZ|Fp~°ݟpy\AqkUEq:!wWiqajJ~FejY :]<;`5MyMNנA8 R#*S֐>VWzgۗ |6l2Xӳ4U6c4aY+whȼH%Ņ$:m]D烬Q7_Yo>c @MHgNӡ82u"Қ g 7Xr)5h-$9 w{E~pWL{gC;c٠QQ|5@-A= =,:YޠF+L&9<6L}Fe^Mi}]M9ׇa%d~}((9m^ɿN(T0 C 8ZɌw&:f&X˷uڭvL4#t*q *Ց;軐aF,!t7v/tzdaky. @%tCeユZ5ʧ41# +/i O,gA{ D x~vx*Ӑ7|.%)M)H`0t`t.{&qϷ4II:i4j*7Ɉ^<'0n9n[ j6vAvPm&T$ ׏H9 ?LUE4[=*N/f h<i jpJ=Th ª~pBmVMú0f'1}W/UY)ȊZ4So ݤ7`1ub1Inݹ0Px+U@H뇇=X Gbmw?}$(LK.c,wcQZŐOwEWTg̜o-9d+qkɽ|߄,z$f?p,H#&FنY&ML,i$1P(fr(1O>+̫$sJϞHE"|%i1_! 7 .=74WdgJ?* m8t?V:AAKO~,M< sZqgMPGmh=~DqbO7.xq i\i8$Gq~̙fG;ꤰ0cYjY|dxk}?} @qz\Ѥi}#§`C}T?%S_YrDZB6b/v([Ve#R`׉bExSV(DmJ[Ab >|%K)B,4j']GmRh&HЩ-3z:ZvoAv8pZ2(k&m(7U4U\ ]?\vGA:T? \Ol ̧&WٍI@R0`~l _}HΚQ>ɴÔ,=O[ΧVt̮rQ4o$̸ޥ88+RWlfR( yFL6!ϦuKU#N40kpܗR4S^P"cVu禆8}FXY ˨NGY $z|s}vqsWJT9zaR[ :tA4#MݚQLk3iK=0Nlid[/-2f?1M'Lktiy½\Z_ %:ZU^`Y忧 kS fʊ 0¥i8-LNjXKa2GN1TƊ$+zg\'ޮ?ݨ.'U7?Q8+>\:ċQñ)kN=Fad4h^ {xQ&:U@?pc] >DKkΥ1 xWiL%H:ǂ=ѭtB&8BIRxP0HykRRw66 jif;_Q6Mϧf6V¿VLJC[{se1^.e h'I=ۄ.i&UZqE~~G( ^nw8pkɚD @ 5:bS{ʾzZ@ߪO4= C*AlAIRqx рd!PZʟKdr4Mco;dmMɻNzW1~E-@&Z2`uQX4PzTloQUf:#-t% Ks%Sn[.wG 6*ɆLJ/ܥ[r"ݞ$ k$ޓTMsCFWĘ}' MkxA>gË@̛b*`:nn>0 '@M /T9i8ȭw`({lwa>u/i6#JnwdZJŒy _i tK߈h]uvoL3qA_g/•R?҉ ΐv8akWTiZ~ͧe`]/zNAX!>6: z6. -P2ЫMڼ}ǝnj0ΊOVn"w Ȫ <>t㹲&Vڦ ,NqfRT|E{vAgQLYd>ݒ9q_c(f[5[L?;W_B?Xud򕽢o~ aAvqt.|kxo)}LJ=OMu^nw@i_iDfC+S3.V٪~kǥЀ%vGRGQ#?־*ZAkf`aM1iQP\4s*ed{TjGy+倏Lf֝m{ hW$e$]߻hroCc0ey5Er_Q ]-gba6bge\wCPh[:|w_ف).{n-sq@Jݝ:".c+pQeMz` 筟`ֆ䧝pdG ph)y-~.wi=շ'K#`:(-zdxZ49oý(Q]x@ 1F:'۷oUx\6ExU,.SυfGOWfuK@z]=VuZn ^^%Htc_Hξl; `޲)Ke-ݥ G iPz`~I;#moQ.fW$v-/r0Lh,ׄCvA}v9ElLAw3؜NoGLm vWyfN OI/@[|+49ce&2&L Sn>$q[C2debAZ}f =}b3u&&vRAS'gNģiiڈf$=O2aFs>*.,BLXAx{i0}ەswQ3zc/dXJyC 1V`;lDIC=:x~phj7Sut@%ݢHTĢcrPi2el3 ޴K(kk̅:+ z+Ƙ]ߌl$=í]K Rlc6l{ȢmSII9g:0q+\ I+!qieՉOr0>ʤłɫm&& (;I˞`8c Tt{ͺ&_'r5:æ\H>Yw+;KF1^C(FPSptXP]]ؼŘmF KI kDۧnRYܮxAkw# T@^,&F[b:l, IW U~6ch[V?QX*;lXY蘊NGk@#cN'M:Z0=F llĢxuw;n8oD.I} Ÿp:v˛9qڢ'U7"C\"u O|]oӻ8iPRI|`)k3P/B?4cʄqFtP, lJ P8Dn. Dڍ'/$9JşbT pFKt]stp*&E#7Iϸ+3t*JyoUGdusFya,N{z^I(C%l[@IsOHyj!G8?? WwWs +”3}-i=PL-903q_mFldo4UJ+%0H!A%/S^jS:ʿE (Gs cy}i@Ղ0˃qFHͪU,AŎu.Y>9K i<M=+>.\|*JX:#Lhlg0~ ~p@G͂ 3"n7rYi)#_JF ؐC}#xP? W!ApHd kOW!8 ;IJRi;AN'<: rA42d{CJ*MXRc~j:F)2ҩ6Wsl!Ȑ쨦8%}o3\.8= ,ը7 ^GdH+M {Z5 /j VGrA:AإXA`k~g`-Tjfr8pڦ!'ڒ[nw8)>QԆEb %:צ y__]ʌ: vȷ打tzUӉtbكg@(vCYy2тr|(]/.2>`f D?+g*.0Fr #_՜r@2_︙{Z*nI:sMa@}KG 6$Paz4V\'(}M݄V%~|}z!&s1jE&D{w(HWnZhDn*mdh@R66xL{<˸wP%ne͗ 1>6.!@Z%9-X `'?4- [<-A f@W;/g]!1elz'"]30ŀίFq])H=uqجC}IpҍrgQ3:11s$+0tYqLzbڬ% S^ uX"0c`oQ Cm٨"%Yʔ=S#ͨ@$1oJ^L#COEn4MYIW@pV}q8n6P+>K%2䝦VSŨb5W պcF5!lF`UA$I $2VDmsHnGuSu vh4{`GyTgssMQ(ej,cNEqGU]K+Y%4,n5=(ɨE 5I-2 3d#WBl2ēs, zirc2,,;/=,AZ? :T@tV2V r>r"ntk8g+P 4wdb*Q}И;/x'C<^ '1f𐪀M@+}]"2D`.*Z~}h&_H/A9Dtϊ"Xr5g|G^^ 3-HV9jW194й#cT{V3 M=%f@yH~JOqط[)aLoh6ז hy͞Or\eI,/ᚳCb1>n S ijS{KF CAMoɬTWr5*fn8`I21vIG^8)4g:gYM4~=jt;>ߴnC8qg׮_G/VaLld!^LՄkptObXYh G_o)v[{oQr}=d,yǦ5?ۺY>swR# H'D/ݳ9 B"tZPE B]p1bh?Gypy3!GIC}N_iD\=-]$Qžd% |g!}{ ̶Ke`D V6Bױ]npa3=Mr!K0zHȫ x@=*nV<kP%Æzj"O\OWP>*0ǖnf ØA'偊A#-صhڅ>kP pPӋDu{pӑ9TǷ-g u^\ ͹ܡ0Ib@t"=6 vq!/C !sG}P-/:6c%Ӝ9 Sr|My+a+_P?B'{Of,.BBƶ {J؟D? Qz3!`!!Nio8uV֭kRb23V[=ŗ(+nj6ȠB;s^+!u/VWh= "xᚨ +9N۴+:0B5(,:6W))C\?/7;Yyc>?N EJ@$@9fu}}[LU3qi]b3[+fHdu}t-RSD R?|8a(0zR1o{Pbppea)A8B;7矆PK(q1 lMW=r-4{ 䝼I9ʪ)38 {1owhHأO)mߥ]>: *BQJ8LΠ#">uՏ;rIM{) W7Vt$2y}z"iᗋjUD "4ŐAڑLӢ`uM;WM,vI3`2 Uph"hXe[Ǒ; bkAUߝN4J\IPbu[Zc1Du"7">7 "yOEp##FFH++ O VżÖs]8z+j7!X&|m]>ؽ VJ~3( 'qqp4+q䴬N! 87bWܼY _L$sҤ,Wvw XΌ>ktBf=oG̷lǚ3qKypHl0Ajy~ (ALOyځId48Ͷ_V6F~]J9YFF26ˌ |`oh`7/v~ש|MسiwMn$ex ɕp1Ԓ38ْVj\'7tyH_^-̓ԚnݢJU &xn3|+-__C J)c|="hϯaGO."1{ԨbuxHk/vc]5Nu"A!;M4U_hOĎE!`pSݷN9V;YT;bG5ԃj&¼!)\ 9OFƹqL/[$\F|KZE/3쨨}#AaJR0tkm{SeZ;> ^&Q 3HX_ݔJLpS_B{S0hěmbHvÝlًT5cN]~RWw9R2# 0d>j%t!Q0|2D}U&+`k_ZuDf)g\!ڎ\Atq0E<C >}"QRm&KƮ~!w!7R+'s/8?'?_Ebj)"PKduMIټm2RnOL (+gSR~)  p=,mBؿpXPMP͢=KZY_ZII/|\wm-2ذ@M_8Ŋv] >xV|a 7bHS^9uDWuT+'␥"w"BYj$ 뛝Z)3Qo4}.-r<~FNk?$ή9gx ߋʈ/(&ҟ7u7 aXj ȼYߙhwnÕ1ʤ 0GszFabRje \4ob٥hQ7M^Sksֲ_`>2<2p6@IX)ZR{Pn{>4#a)%2+Z-iya5}&1&$_aw)$ccD-OJ@NK[zwbQٲOz*樸xht)d >EhQ,a?\#1=}4b:qd_)X_xvTiXJp: 7DkiZJ3wUϱ|9Z][$y]b}+d%`7ZSӇYtސ:ZpiNOtV9lxzu(K8`A,m]v}~?]D(=2BIv4/s53-UJ5ozΛHI )U~ޤ5TFԒ`3nM4LiH$Aj͑N]p?OR).虐E7{:QK-bNl$ Z};0t825`x< 23r |kuI45$L3ALMJXpB3@ ܻ%|< J&  1[}QXYCv&#n@a.!S2bh֋X|AQ{SXufߢ'嚋R[-AHRx2n8KUBۃ9kkuy+ܺi|k)FJgW>@tFs6:+x$M)=E6% -i6Udr:;?v Ps~Vn<*$IYÓ:SS>m5Q$N#9+f WA27Ŋk3W ̡h,wqUP0juRv~ 8*_n)ܣ.Gpg[~ }13(48Â./Nk*M f{_qZu0btC ~gam>knu3nT ZH6D"[l̢$G>0J.tvwqP.zCi%?5Mhp-νz:!ʦFS.~׊`te8oZBEf;IWQPb[ljo9pxdI$$ ǫ3MVܹ5o;S /ydB498=yH`5͇L Ҹ5P-V\0 m`Yr;;ۡw/}gFm%6=wd{ZRǒaH?ze~T$=f!vp~mh7d)T 2N ڎ{{ѻڽw!s[~&䪔a/+m7〴v6l)%2PGP cG`:ꄫVAsAd^vp^jR¹*\XwTgPJ~uTd!k $`_P꼗ºB}r[dz̅\ɪ}Y]Ψ=fpw.]-2 B*02һVɈ,.`x9;s qE¸kT#SN5쥆GMS7Nj.9S;s6F/j:eIl;jt[T`Ro!)ή>P2I3n9IRf2Xr D<S3loCms%gϐ`6Xb AHkx9><6#(gpȑ6'cC '8ZF[ȕ싢S:ӡ) gS͟_MyRh^~\ƎрLƇ{?3 09X2hU4ۜº$b-th~@T N+O <4 ۵ipdnHRЗ@^}9Zg 9 e مCc-qprUge;dQKKw[Vb5Q3unqv:O)2/ζ Cv% w];ѽ$"!qfAR#.$ǣ9+N؇j`_?TWCrx̕ҕ)"*8B6sePeg֞VW#A!6 I:#DW܎ NBUc1UKR%˾M7uշo?s-H5=Ũ n~s4P9 ]IqF '̃ &H?Ӵ0bհ>%fv-5`"^b:J@KF\("\Ј$0jy!kGG,G3+irP\j"ͳac{b9W(,Nt& HA?#(M'uYt)G^ ܖ?k0iG#x;s1\aۉ$55k4h_S:d,z/Ҿ)`h}=:2Cp{GoAdȃ.;RҺH<=nXryi1gRH@o"zk9.% V>|ԖJU9V7C5[E//H贑l2zv#8CfZ:o2w<f;B"V`@3B#bYmqZ:nc ʢ^ٙ&kjmV0cbOˣwk=;#w=^3eI<g 4;3FhQmeKls%.137%S6#Jj[Spaedq,Q:e)Tdp#_PŰnc*ّJbfЗ$Wo) 9%͋L*ᅻ@8lgI`TMsZG eۓ[~E:H8`FhK%?I?zF,y= Ύ xD KG œʔjX#$)H"̮Ej#YYQ$+F8g3+ri(piq-*{nS1k3rw ]4>ө.rr]CUQCJLoL7I9ۈ+Gv5 ǡ|CWu4<9 nnx_.ɭwS#ěc G>:I˧ҏܿ&)!C .JpGc{OɒD[AÉ&9Y/hjG h˃{^L8|o r<)4Oze&].t9C%N_ܘMr4o|j":!D@[Y*M@<*Tռ XA;7_Mڅӵȟ"|ws3|V1lr a`Hi4 vR ,Ƒd߯]S-fQawoʍ2^TV'͑`w/ߣyQ"oImȟpʴ@fd>m*na8@wFkIs6QBDn݀7k:.F =h;>Hm%4]ZSuK̢ u!}OQrL\T}’ T/I,J$H퀧@tzhN 't;NBPHLF[̠6ǹQۊQX%-N/Q5_NPM˛q}yy0klwO@yEz XA1L޸a02Zuo{ Z, آj72OÈ-wgYs*5rRe*NҺ/0!,S:^tҺ$ R=qb{1԰Cfۖ`2;~X/A8ƝgM=_6(eˎgHz9AJ ê]GmnO|ҫZ| KfgW`!OOݶv?JZXuK~op6)kb)5AKk9ὓ,8X$mhIEA|+IC(zqF,9a 1f:ԺWVoi)[s\&Px<:BK Etx&ғƟl͋~)T$x#,=26Fީ^L~J=j _mNiU ׷[kyKgM9aYnXm)N6 ._N,mAuab3f _R*A"%NvJpZ-}8DP׭wQȽmlck(NuKM/Y߉E\ 6|mV&îy&a=5q5uΪ|Z<1Vç`kYT.%`*6*C$6ܐ21UWـ] HױuWZZKCdY5Pn90iW`KAR$5VT+g))\R:yWlUPR |ԼMd5Wq'EE=v vbT&(dnl\nW|ٿUػr8X9t0֭s7}3~b|2x)ҫ޳C?Ow\:2r>'?DwM1cPY$r-K|iqjT ڴ"0(''cWAe 0U9S (On0Qs4\' ƌ|t9&|'άJn@ϊisWz?tVSWfiܸ BDOx9&)r?@qALI[^.ܽp>񰏥fz{үZK-IpyuVxI;{אN=_\Qe{[v ԴY֛O-NJpJ*^e7pЄ)[Go^Z7u@䞷'#*!Ewofr=!{ܳix<Bbdj77x]R==Wy(H\ƹ^sR՝!\Il7,!^SIx})(Xe->a6D]+Z;z Hm'NW-p4#^K7#w NL%ɛ*16^bu ~,Mޡ.WN#fBBG^ j**JR RR1\lB_'Ɏ]dD-Dy#B^RGPvJ2lc̟V ,X~.2 MgbF1LT"ri^V)bms@š -lY{ Z2֘yÎ`hJYڋ+g:Ǫ*iz}R:ڀ7J5,-V,*`|An͔Hx3/{~:tc=3:}ϹP\EķҼ?9u2pS |#JE&sz!s4&[h\79 rF1!d 5l;?rV< o){:բbAqk)jV/#v]6PmNvPc2JtP]Ms>.`Rߜdh[X!Z+!JsL-Vj&aSU馵9e q̉:Ul ڑĕ)j]]Ѳ w sc1/!% RLoGJ4 )B4jRz+}k]HCM{})A\]šaئM6c)gZߪP8VGHhJGj3R Y*IJ~,^(@9䘥+j`vt1sDjoR5瀅oܒ|r^mv[N!+&U.$\(%]YFٛșxJo Nz|OvWF@ PV*s~"]N|UX# ѓZ*MjIE7L!8I)6wK^UۡPS[t .NcB$$}(]K9N[+RB`KimO#+ۗShtsjVW& K|\|,VXLS@ogooj\a +0lTE lI 3 ?̸&{r7?[QTVm8'a X0 yC?+G)l;*|HݚA^Pm3 ԋ@v|,AZ(ךK7$<JT1C]Tu>k2DqV]-t$PfsE("~PSC +es K L*8L8f$p3[j!D7%apa[y⑘<n1IMDNމ:š=o,!KɁﮒwЯ(i,Qzd >>tpz%ja`on!*ܩőPxύ{\%T=ߤ[3??3fQg!i4 8C?gA7]rd7`4 '3USF^kS |!rtḙ:& wԞ{y#"wM&nT..^ԑf. o%"! TZ 'CD(׶[faA¿+O9x'=O?'r]꒝cjWqih&q3YF5"|4eqCw LB9xb^'R: z ika!6?Mo8 G~Ԛ5;A[w2~~ÐɆBTY;׫p"_ l{Or6sESfU-$yوKB5Y9ZSߥI JE_n, ;? lPl/ػ@=W戴%ٽ…lHzKO[J>'fgK([=%ſpe \XzRFfNrY.&.䍢&Ν8&D0H{7vG^dtk#[@eZH={0}e>\,J@P3<P w⁘ r+(36I1:xH\kz-Lo`IlT|!1UJ^}iClHD$]8>ɺ;˟^u.vYEOF &цo"_6ﻊ(IVQ3.=q5xc8ꠅ@ZkS?JM#ms2,}u,6W~sAK'zĒ_XVdfӨw99 (Y׽j1Ÿ|w??hhUY' W1B_.ڐ/KGp8q|as %N9b3f2/bft{d@Q M|zi Pd'NH&GJ3/40@qi*rt5*' r+;iߝRHt*ĢѐظǪ%?i^ {K5k51Agȏ9Z}k:]Tf6 ?Y9褥c\g^16^PPP1Ŧג9HyW*`Mb,U-0DB;s Tq|b{)" #jWSt jx+PlXݽ(hSTl Cmb @.48=~wI,Ce@9vn^qt>I?ܗX_5X"S® ܽ5̩[?W-<{|7/ҶTfDGmhEk>'m70_|f#+20\y`܈ۥ郼)w!Rob-7jDфtE4 M-~vyB%!;vKnϿWM=`=%INFDu% YL~Aǔps@<ĸg˔a +VJ$=Nӱ_c/AMv8dIV$]ĚHDЭcWBGr3Tlj͒Ӟ>ѧb$p>xY[alq= EDA;ڊ jSq' B:҅F1Bm2XH-F4s7 RtΪ _@Xec7M\wmG<+-i xiA'ϬYNF[,u .V5}xPɫ%2؃<+\ o"m]YoK| R*נR<]Zcf#K$ ‹2H'  80ML>"Zی)7A̙G3L2NASp\Gq2{YL٨Wôa%]Òᬿ))W3ُm6#s;A2V Ad6?̶^!4\7c֫Ւ 1Iu x&n o8o8l\Tp &*Nh!71>?6w_tbcz9j{(A<X1m09ݮlЉP, x!]O?j:uƙ0Zt{ s}Thr 9|;Aƪ=Rq溎.XD do=rq0MdZyi]Runq\Jx ]}<0.ݩ `nPLL-A>lB )p8q>EdS!/jg=}N2$-E+Hs} 6o )3ܪRjotE|]M\Y:c2WS[-kxaUԮ;J.[, ,V9{FBo 82SB.Do 2kGu\9VW/XI昰/.]wڎ=G]P dS 3  c-#JPw{/aSmⴲvM^IMtJ[t -%A頌YEet\8xe!uz#17ہBZUm1 ◪Q~0%SpTD/ f5U1w;)s0b7Ż%Nj- }V!ðx`wK4VHr6w/lXxmYy'} ^6qW]פZ%Ɣ-SR |dQV]儞Kak%ẻ  ]7+wd<'`h&xq!9$ӎnӒռ cɱW+MbQ곬UV ۯ jğ& H¯^ZQ`s:H(YT* v ;B #vϠ90s"|R|F=fDf|ka&*hR8|b8LEd jmVӍ @x1u9z p*7'!uRכv-~t&kc׿6PHݼ\3X+ Ea_x QK,q4:_-ocgX84ݡiķrM|iDK* & dTx pN $B©&kI$oBA)>0ydt,炸") 1 ( F wg* lh&SNBϠ )ay F&n/ Lqf( H)[QInnrE DW}%GR?R[#i>%F(XU%Wխ5)z|1mӃQϱi!*h",4"aPu Ni84ǻa7E|X!Dg'w&+VΑFʧa+>C{y1J(O 4Ucs)6ħy 6:FV-C)^Ȕ7ĵ!"Q>.vCbM]մV^xGUOAk?=RvҬ}q4=)tĝ0iLKY9ʍZ-gq=wfmj'BBz_ΰu',$k$A4vJV4b,/gp.KZ~mxg%[9," p}=mXA>TqNZ&/4ǫ\8g/& Pa ax˛~0hR@oc`X: 3Bz yHuGr GD>;ځ#W~wjM $f&Xf^ު|DgkeDk'VI%z&UlRm=),|s%_=)̛n¤7Լk+B:Fgnd@R;*-"K\2?5%I?QyܶODβ_v~B CcFřfqۀ:q%ZC%tk6'WRA!<`]:?KM,V .;$!%e o5D6[,x!;OiєƑUmxceh_rLeͧ7do) yݍSQ3]aMbz0}Ko W0͂;mxfXKImdP"bB9( ' 3!M'%\")U"z }Â̚ 3V=-b,.w/TQ~/8k5(#ηjڒJ]O˰km:id@u{W9Xk;Z.Dc֒C=)S[*SXն(+Z*b7هLq2.]h9EꗞOIQ/az-T!(H𧋼;z~ oS N/)diJnrJ}2]}6}R(n X{~n,ї7}3Ղ#c IpO#a#e݉lI{3 ;!n0R2d;NOVב{84ɧ fg*28b2B#U m> [.;PW7ѕymGOf>YȬf(Fm=OΧO?PnUDU2uV4}{_9\4y%V'L/0{"a8.j=LV1h0?9pn '_ HK1Jb^q}wi+T)+А,EȈ,U܏o Nl]LlO@~(65^}7~]n.%NƬDMIl>R)/ms ~bFujB_׃7Mallj"{W)X˼`"J \H`(CYk ȰY(M'0TPs3 Lk}h",9.̤J(џ4 Z'N O[yXi@*^ !?0F|CDIOKfῥ+`ijva&pr)R-}S _T8>1+G8ҲT+B(}Le0I,L 7ſF\y6B$󡬿Z(Ҟc:<bN?{/ DS{$_R)X@Mc0\]Xيj \&͒ytl%Oя\LYk_#i%k͠N Zo$vM-&'`Z]U8(wfH ع/h\[{1HY;aP"QnڐNc/%impK~kMbte^^1N(=EĘUZ/yQVG"QK`ۗ~nҡA[sbφ!,0Oy!gKV J@r)^`̳jDƓ3(8`Q BZaO\4LJEu͙T V;UU/Em76, $`o6$vs7-Ƕ4"KG!QKxKYZ2z. z!ڈ&L r\mؐa $zV-ל(b&+^?dwonC&Yf a0XwB֒l+*@b̆o?7wF!sXX  # hدtɹZ B\l%z]MuD>SI>)D+MKNuŸ̎/`;g/iș\i4#  \˒%RVR 4 ;z"n*j Q(9%Syzgg۟|?)̓g.ckH,;ETijlOBM{KB@Ȕ^KlYAW1,eP ^۶ "9 V C1:/7PP 'IN_ӆ7Rik J^6j6 :kmu(G\;8w%'u,vA4Պ|Ek,i3#Y R{bsv"Q-Z iBp+*ve(Cr#E<P]PM6gcLac'FApoʖ?}FScA8 (P.5`J~_YBrx96o5^{ogG~f9@_P-4e ɟN?)hufၿ=2/xZ6WXk+!&~Py&%H<>x>4<Ҿ/_vu3\;e-Wȑަr=L M(3DrM$}A$}uxI+JQu[齏YК^:|v(I>EPy4@H5ŵ7؁ Ay#tAllpF!Cz42Gq6bй}D1EV.-# q{9-:tq lOГ|=}4kw3fJ"ڜ(*xāS%a;nGYVXD%e (KN%: JЙ ch"ݖ^Q{H챂U12B˨+٣\;wuԂ{`K1̟]?)-m6GEwK?">嵧RU5ZVy1ȯܡ>xUp=~TM6_].cjN=띯hg^Cؠߡ7HFmqn:ʍ=+~n&߫[ƐkhVg{p*3n#[ѽW]OfA$D~A%~\VU(CxR #dOݐ;n}Qnzmۈ1%}pd2Ș?撫*\,VGEW%yEh%Y&WVMJoiHl.;oyOa|؁E$Y C0H}g{˼+C9© ۴iۊ՝JK-ןOخ&Uq7By\}^dLsWbl{Zec4x@rJ# /U|+?L~/=dKyMUVJ a#HW$P4Cv]Qr:a+2 q=e(xGt'y0]30bp :.~g"Š䠏QZPѕT6íwV-sL֍t8/9>ExWg4EM#%_O950Tzt[FTγ1L* RCj'eW_5= V ڎT?Dlb|)y xO&P{q[jf(CXUC.HI̍¥ w>߭bWP2)>c=ui̶eWX>h%x^uɎ ~ZS_d` Ehh ]VE<4_B))@H)0\AQ((h355g8@g/bvL9;x+BDO;wO?8Tҳ%Ұm$> zY5Z(C9ـ1GkTrwv?fgFtZ#QHjg-WqcrB{/BhIA _8jf~bDžCƵ/ᘁti]rk0oS̼ v К9'ƙ !UC).EPۓ=ؙ.&UZjɫ60yJAmtﶁx*ՙcyDyUgI6hp@_(7RؙDx뻇D6p (1@C-;ˀ/_'ch'OFf삶\+jZŸ-7Yvu4?0 r\ @&y=(]aFJi½.SṀۙi YN9coJPy(Bl"o'ou9jDE:Ue]p'=sy^Q2`yBϞ׺ yJu6s\*9N*jm6 Xz/[ <]Twg݁l'!c-RfU eWMw1oҠ;I  CXDrwTAl~nĈ72р8͇ҶH# Z_?rZEkffFb> <G29Da\<+ Fw7aINEZ[SW9*'݇ JAWGjZYc.{b[?xa̘]F_CUj +z<;^1޲o[NCŀH S̊9n^jMxAuVE#⚎旨^#J@wo|'^3s óFw$P'`UR {?2!˖u( we ]H}/J53Ҡ6ObF\_‚;$p^Ϧ#~ 'UÆ%ˎCemݙ#')q6: UezњətSプno.4[ v ɘEX΅|4:陞P. #XXt <j/7:H?,ve{H 0-, Y RSQM"̝\6~GV5|@>ybNLac׷W?~h$Vf҈Y= 1 3鵤j:Vx}He8Ct ;f('<  𪡤4|61Kc}:w(!+Z,$L*fރ5~Y:Qw~y 5B)ۍw"X] 0KtILotT=ߓfɂ |^kJԵF|*yvt,1MѨif/CW:bϭ5*sgd3vl{x%(i@.lGM Et麵K&nlbt;CO!aq7Š6V-Xq!m:ٰ(llmAKwS&qMF8IPL8x@>mc~ff5z[#%^|&{ȿpeӧDcvuodIH!S6xbȔxߦcQ_7c:̣Z)QxtԪX/1LJ|1wr 2:Uo)8[zj\BᆸuAV3d3s)dL>>q?<6̡& <29`FJWv"T"?HLEu]Uc~y9ԯeuMB ޳;2r~;v qgw,(2J})u8IcUa%Kg΀nVB $zc?N^ Z;.Ygbg7WM*>NLk!A96M|FBȹO A{X)@: zHc+*lY/Q9qePsʐVe*csiX;0&vÚ0%.?=F@ NQdfA/#o#3y. Ig%:)]Rxj[FY=zj:c`:޲0Mp?T $n4bd a*#>4W;OQl[bf`b JD?ra} *E,2%>K?Ql{nw_w^=G aBnHP$J9 K'egeS _zЈ`i3S+p t.Ž|GڌnXe%L)AWJqK]:IfA e5#܅|/x:EFo~FXL6yYP`I!},ٸ !FH„н؟Ź ʵOBHU ߗ{"7 sIoJi@7Wƃ3eݡjp@m%Uqո4 +݊3w`i>@C'@-nRy; *tkVH!Cg6} +jIhl!}\ 9h4uFT`AjcK~ArRQPwQAuw˄ U\sۅ*:Oh،)+َ\QžD%W B:sz\V!(',˿)ՠB\soۚ[Cki<ź^8@Ϙ+U6Z6pMܡx2+z!pcH5lZwTC,X'XV-Q+A4ClT ^#om X]\@R2~(cȕYWИ4߂F6eޡ zu SIUR%6m8'14r"^ *1A5WZW8\Q:pl~;c>8ͫO hGy#|(kE4e55&QW/#Q@F0fȋ\[t.iڞVt,ё$0fZH++A#tLL UiɝQh.RQ: W*cp<+ t^^H,)'loa kqGs~Ўz`!l&>}'g%T3C.U"s>ɕ {i?u|*e !gQ7]%&lY{ X03з_ʕ^=e,7vZ>xidq}DZ}MYȄWWLx9 k~Du֫k>S)Hf4M\:q)-sg G5 5 ksPZwVv97Sw` 9ݥyS9Cdb=\HC1Wt,6لEd)$c:n zn g} "4GVKz(JOD`_Jrʌ>3Ab\d]ʾ\(E(4+qC9}SJ5Ug~@Vj3dob1 2y]#!9m?9< 0) jܾi[0LYm:6TkY-jh"}/W 8F4`*4{`^3!B356cB~OjG'ckv=2f0v@&qWh, 2 }f˪G!^lM~3ue`_ɫ#0\BM#({uNMQLk5@Y (ɥ˘%7c;CTкutZ;ߛ())hjޘ:cT2湞׵`n |;⚘f{95ΠMx[?{/g )u hEGF"Y$|8k RHn N5<8 a=?\jk-+C)._5OIDԎ;0זʧ-[!v/G5|@U+VRQkg2ZTYbn\'?$X8Ae=s}bkgOc$7Ex\3g: $2M6SaWKLnk⳿:ⴧuy'nV}{QZHc>.CT<,PKO\+0 6^Hh`Fq&TzLw~]ٻJE_q#v'qR;dlCQ-Lh\bD{(:`3#Y1Ķ8H32C/T͠\/jE7&8t'6oK EP27rO38 }ĥsAUYl"4fwlȚ?rsb],_[@gϔ 2xt0, [ lv{X\]xȠ'CAO7ǮQ7 VT*w }J04$ȿW觛f%YWҧӧAH*Q럄ﺼUD׈ E@f[e 5pY6WXHn%r& ΖLp|WMAR~jD1ûrq^$[Yy-8 qQX^<A+To %Ҧ[z|[N#2Dm6L–+!*_,= ښ˰n@(=w@"ֲgr' ׬dXQW *gX)̠/OI+ܰ.ge<5; A# 5ʄ셞'؏,X8:e` Dv-sU/{%p4Nv*rwwG+;/JZC!ހ`4CV%h,S*Yyh_V$[UٙژK4Ic, Uhϸ C, *P():٫k鷀g Z,ClWP՚WR\Ug=ͼ]jzoFh@LQPZ$Ǫq?+gmA ôc.Z8촕ZQ73r4D(@gHeoA`HgVc[7FȜT`U/k28 qY۶?*$pMH]zNHM)B_\/"Js+q=nR9}d\mhvq~{c3ZV9 ;SQ5+ z#l9[D`trx,hC3rw0{F6:)[>ap+j&z6?.5X -~󰬛wU{б^3,S~^^1h')V|I &E(6^>N8qVr>TOX9KGbaإ8˘G]tvb(jQBDkE2,V?5[5ݐ@񔃍 Vx3V0sЅ*Ioܝ/3N^^pP/sש\8v -Sv0"s@.k] qf=~BZF* Yn|fKRzI "[+kCbTA{ua\}tv#Ϛ&۲L ߅BosЩg{U}oV!۹B!ܨ9`^+K۶۩;mBp;cYx\dPwQ7bDEW}3kS&"H=7|mȧ|{eҴOt: EdP'*ռ k㰢' bVH>z9U/$T\u #K3Ǯ(noI+R# D%,/3}x=ڞe]wОtjviʡ6f!"[p}vV`8[8 P%nҳ"[Jv*Z@K' ( #N9|l82a&w` 8eICe`-" ԁ1QhryeLAmKK']=nŕ `_ fiT\ym"dM6[<1i Z|^#[ulC Z[Uf^'Yn9!_GV6wJd, B;Ef}>xpkYîƩf}:ܳz3 a/ǧi2ݾ5uTgiAxsym(=2+n<a i}0 ƛ+?fĶÏxkaDA_AVd&6*6WE\!C{͉pk_EK\r%)L:g ّt4[r_ Lyrv$]hEȓ]ܛڲdK< TP#2e,_ը2rm2~'<$l:&g@|i 5sJ CI2)]:a&Nѳ-Fjm*gCnE~:_E(bqq@|*)f!GzRgl\ZxnK,O ,NSap6jƽ_I}]?ǓLu1 R3$Qv)`}*gM< VPފ`͔$ﰫ / 'ֵ2sdq0ӞcFJFga,xnYv'7m޼Jrv!}Ue>#q'i;W;9oo%&8&,!5nHFL@58~3<wP$+Iy1_u%7%-e$Ap{ ׍XZzwoX4 [³Pr? W{MY:G=ge)X)EQ GoRT2T ۀ+bl|sFHKyi֮J\6o]2c3g'D?/+!L~7R3G&G!)voqLSJ8\Y6lZVzH \`ؗVK sWb!\{Ժ9ŨCФA֏6p"x޼Z]vgPoyHtY DRKPY( lr>\`\v3GN\ 1P o|̮O>W0/N}ϴsR5cl\;ʟNzNy92ҚK&"K$}qVܴƚP}]'E O_=Zo)Lgȃ!^]'v8uwp0#5 k s&oʴ XИM#J`^Z Ic74"q*).ӹR~(ų2u ( c1$x<R Q˸,=hb&Wp]tgOr Ek/Ȃ]U20BfIST=u YKƓȓny7n #dDm>)ˑۄ}b={50Ҥ~ᷬTX;TuՓgXwTͱw@ϑ"s>t,/[4X`bB;!;x|Ub NldEYPl )5c.ދˠAX=k\6Çmk^:f1y88Wb][D,(鹾7dC 6ݮ'op(2]* i?;/+&,)ېn7>qc]8! =3iXk> $LL𫚆LAҀ^a xcv)#`č*A7;n[w[x6ؤy%z7.C4(QmB%:5:ڥ4Mr9}qο*GfIRu~m$Ba'*]~̦1}氘[]ӗll]G=ɻ]Ww;ƚ,4o-0^>1'W[c Bä\ u!4(&ʩ˙"I[щbyq@XBA<t J] }8嗄p<+h0"BtYKtIP9&,x GGdJzKs]bDstP`v$"& uhaab0 CƜwX?NRǠhl[2l-[j!Ѵ$J$YsΗq&~z a Zʕ,?H{&Q_%T'?:/ 1r }J(]u!QYT\["X!$[FAnE[κWbx [[sBKN<yL\w{7}Gw/@ [dntv1P[7^qA\ԓuP1[4_~7]-᫕Z*v9Tn9&_ A~.ZB3)MWD75ь+m l'4TUe("Ѫ3s}T5/_hnC)A,y >KX*M)hh)~zϢ&BDoaLwXG">"DV ezFČVG -f,eSC K]ಝŀ-9: -?pdjk@F)2.0s6$^k =qϔNSkq%bjgM:_H#ysuY $d@FsE|^3yխ[rt pK % +lYP 9Hx5)G+l&i>WV˰]ը\L|LJ[kL~TRu`.Lmz ~,VV/R~9g7Y!D\rhe16K*zNAAq`DevS'ۛ:r/oeT/99kOdʮO= {D$VŮϬ`K%'ΆS<\ڊ D|S¸a-;>p'}s`f&#);DV +al;?ȇ0?kbo2iT@ĕR묟OQ?-P4  0zI)xk \jYGxU;1144H<-{ĀNSbWEVeڝU wh}K">`Ŋ 1k+9}}_jU4HMIwهoK9 7L_E^+fnR{7%,F\v'/;{޴b 偪p>`{ 4 ߢi/+EO^ܗFib-JSYP 7"`%bHI:qnF |%S(A,T,Nxےa$%V=l3SQLZ@b73}`d\\_tB$}3)js4^}60/LCtGtl躓mhkKB^C{IUsj7u̕q3LV:@if:5V?%Vx3ڦ94p.9N4!s(ontR^owQi[ondt]kY# y3֢+lۍm񬒦~轛 kJy37 I(SwU'cB%fU}񑎦PhV ko:vC\L_x&}ڵqē14k{mgpFZs3eBo,OFg:Hb6<`#|G-FJp.͸Gh̯qT?P0r:KPW m=6; HX\."pO~qg!qcQ!(JF+&#$y;Ƶy钡YIa7u(8\08DK9 O3 C/V#rpC<ڙ"Y}"8&č;sY#)k ?g'E)ݻS-H)cG08vaLWO`zo?a#.7@%9DH._:۪m;j.`48NK&r〨Kjd0/dvy K#OI"E %՝g_-w<})C>h!q\8kMp܍j^圠3|pqJ(>G$+^R*Ii.Z|Ļp9~QMm 6Xr=GhJOsH_)GeͩЛƜ01in,Wp,04!]4қb.9|kLJS@ZQv1ӍwhS0p)tG_QLGek%K^ӠnY+-S10(Pџ hC3G}X irLT@"(O`Z6=ږ&0Wzdk V]9)Tf/Z)+%WY+4ØPVG9}.RЮ/07ʨ#RSQp *h"֐RIcs Pȫ:"V{5QاG;ʮӀ?1|-rMFQ"z5Dʁrn@5T'W(mB'C] {%x .H`Eֽ&R9򿩳Ũjߴa^LF'mDTb;9݋CN pGAe=&V>rԗm mtVbP:ժ{W\F BdʞR>WfU2P7cŨv d(SYZYa}-' }LBo| "7CcjHjo "jLkLwmҙݼha-ysDjl!y&[vSy4-g*p;k&dʯҔ"9aGKP+(`#+03 N3cg V YW|_\M oNvxQU3%x%w }Q]VzU3ơ@(xN}([`VA)wTN\>EhWϦ#![X;'3 _Έv%=~ޏAWiGBp=ʏ/biж#*Ekˬn;|  kaV(qϝѾoM߉O< ڕdPYTYq&f\^ W" f} Y u%|wp7rf1ڂS-1>=gcj0؞_EH͋樍]u`YzTM3( +)iqR¢MƓLREx7m G1tL<2>M_P[ZLLG9LUz4?b؝oaf,i ,UK!cb~ɇ:W".<~*EELpw"P88I&2bHuΕYU{|J69f\Lkk8ZT>T3uc@KA)ግ\]M_ ~zSH6j5rU՘̢T&ѷo 'cpuM=G($D&W,Le5A\R7Ē xqHg^Һikj1fX@^ӿ{<F5Ҡlh. .HZ Y-BE54sB{' KऋMfr/ˌ;^kTk z $UG,er2 ~I /nDXs*{J8'K\pvŮqkzl$}rLK2k5w/1/9ם01-|oP-W9;WE`ֲqs)P5jc izg!;֩8HRtˡҵXTۮ.9@~aXCjI^*d*VDf55ocENXٿ4نd/(q:3]_ iyȭ,<,C5ƵV4CFMqI{ v0@RVܻsXwTvzWDep: g.z>Oy8 ;DWœ7m]Gt\^xy5צD!|ʏIhxHLS?yʿ㛱xa%, ަ/t}vɥIjRU0M }_ٱڷalOZnMK/w A/+OqʮkGxxxͷG :U$BkP`Usʗ7&FQ0GHV5p7oHoݯ>鑜7^zba^YeQtZyl7s9Mމ9A99MXNVT}XNTb/B|u XaA7tGKg$4@)Fe $;i媏쀵탕 *ѷ9d|>1J*UC6EB26'i6X'%2nGsJ~3.'/uE)趍͹zu)+镢)R0|󃒁Cͼ

9Û+Rv+25QAyueͨa]Zm1Un,!-J%'Q}nj&7AG4MalNEr".RLq6*g$ߜZP>% 9ZiS%' d(E[Hg@tRIngԷ_lB>NtJ.g󘎎͢yJZM{ b 0k虳n:I)@}YnL;O<ع R^BhI3ߙI%-L~eCf}NхⱲ(/5{vY~~?;miB+l>Ҷ.e­]xMek"Vd6cӮk8fZ̢ sQq 8{e/pWp_pVY#`lHv1s>EwV ,JxAd2s{·sM, էSY{!]x7wA*>3he%@ׇ>Z60u¹OȠ GMHbIqEhf(9à}7 (KH]+R,\NUH(H=UzXl&2( A,'aWWP%8Tic*2cVOGG F@ Z7 ](I/yRÎ˶.U]}}"`,! !`&WQ95v '3<;Ae1DQoshTYBq U\Y@:q﷘M)dC֐А)e9)&sj01z<9wTȽ|ĬA"'Hǃ}v ju.:A-^YҶy|uM ܰ[_'<&jRaBPdqT%w>DR$}g}QMdEM%Ʊbd-*r~YÄx,a>Q6i5䣁H)lszm^]L*D(<^+!cdϘ$K]eyPh5ȏ?ͻn,Y (,F](N?_LXw7p `.M(]w'^m](?­l`B ݶN"2j~M"4]UΌ=GgU$k4@g)~N|yZȭY`Ci)}%(c|úV(p>^]S^ĩ+] 7AX4գv:1tQ.HGVd })B-Ms8+Tj.* ]C[k+qWcJ4zH7P%q m\,K `&FGm0"P¦ ;_Bߝ:0Σh$\?˪Υ7]6GU\Yw{s~k\`6"h"qhpdR$c+_{Uf:'ZRjvfx5iԂ0~EK8=])U#Γ}n9&Xϳ|jמ]cp^c #KW.D(2Y5bnD6L(Ahu#Ft#O;s@U)$KC+M.Em7[MQc0*OҮ$^wo򲍦_GBؙB|SQ{G_-li١(s)ڡ;bn9lnjKuEߧXl^ gW b#FoH9Il$: B"e|W[_ּOnP4jRv*hT^zJgBz1y*@>?ZE}P/GRο88}-ζD x2vBf̪Iq4[N*U0 Alk+S] :SԪ{qKE;sZma:`y$re VL;ﬢ:]%pxW>yU8ǫe;\Q X3a2J)VB ))O ; ۳zw$;k̙N0F5= e?0"WI^t䬰H5K392n8nWin+A7e\S`7A uaæܪPHȡ ~q(٦uOԯn2 ݷ[E J -nR1֎|頉GrvI..mQVPRa{U[(F7oS<ܺW5! |п%M,錯ہz$:4]ۋhwvu+Qs (} 5uGevK32 ׃xGt1*uEgAk \,􇘩ZH ;y?.!** SӑP*PG:{zX 9O '])}1X+7Xe'gC@0#3h΁SV0 wXEw{ixZrd+2#A9otdPܽ u ɶ q\2 TH2x{hJS{T2 3{x"Te5-ҩI"'QA^;2re\r 7ArHuYGg['b.uI Ƈ,y  J䟅7vÈg^ ξViq>-$ f /HziJd ߗHqȰ,w!c)E;b4&_2䟿j6kd"@LAl~7Ҩ*aJ|vU< =] 6_"NμOJʐλQs;40\$T9lGƘvx~ks3*>MD#@Ut$ܿn{Cr'W.&1tbNӸ\(ݤ-PbdVȪ$jHE4^ccдEw?BOYȊ)!\ƗYתdJ|?x &/">"7ڏ#HqNb3b!>yw?j@Grf#f Cc#5 q&=њ|KTzRljg/V(<,-U^fP࣮NP^;FqqbtK j& h5LlGx)e`ـWΎ(]cW܀|cGh]GFĔ-maOL@9!R l'0aPe70Жp&M+;O͞`D$z㧃T"\12f uuj}l8zhoЈjw,H-@k~8f|s _ XpQ၎o4S!_da&: 3Q9ޓYfe+i %ym}k\ Az9Jeot)OOl `#l9=A)$&`񷎆~F̥2neJ2o?"hW4|pLWF~XpSuNyY`NjR3꺖ǩA2"yDq!+?&/>qp7!W(Oad!{y3j""g_3zyʎi{ ՜S"}]qd Cd}qvUwwfjU@a!z),-IƠfRj_r%d|M0 Cfp.>[A'RZХ'?Kra[ ~jS GpwinadGSnqBVF1!h5YW[ <=U Ra!}iv_7qm3F.u~<-6KaB||-*\Qc 1핆<18u*MkH4z_[>!΁f9qT&LחPx֙ACCF֞^sTwX=fm?,0@9"D Fކ7+L+\F`)BL;3Rn(_'u28ғFLHE+ǏG$`櫪4XVkeR"Qx'$/1]+K|/0m] hCH,p'(oLwgPgumчS&no<Pz{,tF@F 3;9S jm4D}Y\f,ᤳr.Prg`_(|oj ;Q\+;I4uoI%qr&*c!q]W0{po XŦgȳhڑBo7w4x(60K.PڛMsomw_:4c\fӊY)SEnai Sw\huw&tOm::`bJ[p5H.i pL\Par-. h޻>g6#e|zdNB%^53 i(zX?$u XVî f=ꖑ煾c\=߃aP;~^q -M=Y&{Ay%u}ƟIx+E H{Zڷ cRZ=>+C@[yӕ~&RΤt <Ӄ-$M57 ,YFA[iDYԧ:ZikazS}k\@29B5[SFI[/PU_)xmEV4<5M7R*t^ <Ӌ'jjs G$Q%jQL}|b]q<ρ,}ȌM.fNet>~m}_ݐw!4Fl`?\F#ĞA-9掖Jp> s~bHI}1驀=> 5kOn?Yc#b۴ln&XyZ 6<#u,l DoLآ޾شI 9~?z.:oU]#JArD`5u!`q/sX⩀کCۓ=aY q\m.Z (@X J<| ǵ~Gk_Zق~֣83<e!r<]|ٙ4y1[5D63h꤃fOmţ`t[;tXD)-sK1;y;9n7: 3/+뀹+F:0' ,5+.ICTZ"AQޱ!$rPEY)O%2 on?" Kq+=HTX;es/b]N+YXPy2nDlw+ w˗@u% B=;x*JzW'`;" tU'gI_2( zg,@Jwq2~wy|q(.K K[ %o0 r37c-Ԟq}F}[iʎ:VHځjnb2Z6%v80d,4h*4e}^ia]L{ v0~TwX#lDqt!i:)C:NzM1xùvi_haQ/xY%UH\<QQ:ySl6$GfN 1ѳR sS57)eurٶ=vaty2b}C4.jOLH]%d}W5fA#MZ4CPe!$2Mfk!{`6\ߊOSGћV|vQ b;۫ a@( ?ݶx~cn4y{Bf4˓=ĘJ4(BTjӃ< Dy*LZ% {-^gFE(c5$*ZVU'ĢWQ.eo$(vO6lfQ^@!ˎTc $6I0nEZӯ}^Bw)>ƯPVuZJj_T^>#?e aS8w:W3Ŧ:lSEh3pi>>t!N90^1!YayG쯎W MX]g]b+١.6=tztxA%T6JƿA[\ntt ^bIiQ~WJ^a%d" |j(:TVYX+8۷ yQ.x=LRɗӖؕ]:MV+T頶xq:J>9hGUfK0³0shؠ݃ Ъ:5 l"WR0)` uv&7_D2ӗe!GM@xox.{ s{\opHڹĮhhmOpW{tLTpu:HG뫴jE To\kP ϖ4M<G rFCc}>GQ'nAaJxAeou'#@4?ѷ5MOËX:F|f\=0j a+y zH&(GѦ  Ldr6&]! hu:-PA $ˡ)Ļ):O'`-S{ĄIU\ȷ M2Uvrm(ͱ]֥JMߐ ~NdxҪÎ,X?BؓϾ/][z$FLYRȟH8澯f3Px5+"CMqpOBC!F9 F )'a}I*l^-5 Kl)Q V)cC]g`BSzGE9!rz2~ }qXf zg|r pCjNë]5َP*g_? Qʚwh$N,{MEƴyowx ubw4-8W*kc,[xr1ʽL!!K֫?7ͥH|*6F4flXc8jѵ24;%0Ui-RNPk9%$U=g<8.){( x}Nd]գW?vya,^ яz~!e=XM>[/-JeClI qmu1'lюZ}(*tTV-yAvuDD:ʥH +cu"NVdsydj ]i4+{F( $[ -Ɛ897]țOz{D!(b8QZJ㍘*Z(Yl2T!V0/aTڜ7}sn:}>'zb䩾D>Ff3˧Ihe@nPrZB:jpnB؃h3Bl dCwhB'㵉<^F .$:ÄaqDYtDLjG?QQmA P/~ΏZ=85, 0O >+wZR.rHA@ICV ܙN,еӼ $*>'ˋkN*'-%} hsH^FΞJ⦊20L?C]`6?w;KV:,yM~")Y*ũfcZJ5bxFH ^Ou1h$c>kܭB0e3d l^[,Ct.25fOy˚laSd)5mokDs"@YׄJP;R^9\obE!TX {T$ڣ|f;5íq)`9X=vnr;R^vij,ؓ~b'ZQ۹N$~^#cMԵݾ%?`F)o=MKO3$hM&DG? I@X퇛k06CsBf)bkopm|A3[aĺ3ǿ"=$pd2*-x$Aqq,3d!UBl8S: ]Xz*>zu[W)kOkmAaȷ*zk=1 VǶ|o rrSv yaK8Ӌ5 '_rKf<z.Lp4B ,;AE EU;XYPΌGޭ2&+s6q f0/Zi`xHxɚ-N 7 }W"T>30Kty)F['̰̻"N 1"\>rbPLȋ(mDInw;k Pp7?Sl&h.i"k?Y 'DuFJ) @%+'wzaM%{pX8[zBn B쒳Vq2K]%vېח';u'Itҧ wnեT}ʪD@t#RRrzFV{qS;SZ}53Tl/26up\G_7*J|XzmPO֓MNLuA}e;CMU;hx:|˥UL4m*uJd` 6En#+?}'!O-cg9#w2mم>2/2(=Dt2!hC$@aRʼn'NH|}~Bnl(:,H0I`2#jyNl10a$8l͆>N `k(j(4\Z,Zj\0Od*Dk%!i #g+m+}L4gԌy)?<+mxid~Z(R0|1 K`% DXW|wM[=KXxtaR<2egh,Tχ/ c"h(7܄qHJ)iG*8I. móiMsWOQI!~=:uA,5ыȶOUgf/k@{{ыvr<MDv;qv*G7qݎA$sGDL1=<"IݴZ$5TnNVnzO-#ÒW~)wf98zK o/MElEr7aףj Y4$MUSkKIdM;2e~*4KY0JnES02>obNظpOI5 0qb`<}.,9\JXJ:8V5d5g P8M3囝\05E5:.tIN,  áwz#T٬.!6Vw90N" rF WuU^{+)0*R0`}0ώ4[/pxV|x`9-= M-TQ5{M{ "6Upɾw.F\"%Tn'HmTܟ{J$8#xg0]5*hÿ"@HO0GSakr Bmq*4WTz B{Bupia 陓 X{!gM * [̥&/8I "S[mD?g kL!Oa,MҀD"ICu%_y[_9M.-CP VFo'?+EEBX/,pqQ@(T)K[YnJ@yj-p+$)uVĽdsd,D>mY{i4 G 8^ƙ|YНTZYs P]Hb5JK=IF'<` (M 0lp8*8ȼO_6 iomV``f/ﵻIʮ{ A%iv)fWLr$YFew*i|c qRnag J;[U 2#^F${V>Du bޙu,)*:W]k2gÇ`Ab:V}#COjk=C+k8,+ƹU@~h^e]j%%suLHn7xfHF:]ifLaR* ȴECE+v4ȵo]S?o̝#ɼ5á|o!ׂR$V9Xx 4Qȹl~`>šMBh6FyHW\\ӠoɈ74O!-(6BI+TtXÄk[3)8+s?7aDM;g?Tޮr(1tBPAEv7[{ ^Ba$ko`Q1dV {t$׼g\:Esİ<!qXM&, mE^>&NT8Y{s.fՕJ+Ft|cLo?{ۼƽџϠ?X:eT)ksz{Kr{G*VHRk)ԞA(=s G/BKZo:NO`֋ vڙ7[41y KP# 7t#v`ڴ*kc m~/[!Vc!TZ@|Qnm@x{xdb :f`/rD?fEGFxFV5tw}FA+8(5{x6Fw)aeLS)1ۿr,whMI+3Je#rg$%iȅ b\E'u#Oaf-Id)}Ղ@zg 8DsA00di*pPaM*rJًǤ7Lmq#]&KWIDRUUnֆtbńB?u ch#8` G|Y8I^)vj~tvwCâ["fl֋8\c1l;Iqb껍 5G3!HXRNPkz'PbcY̴ApORȍh_p2N@'Mi*Zn|:tOZjCdJ繬|RU5".D}~GOPPN! M 9#aE@$ R\srv{ۃńpK=t7h'K܉Fh#sLHlfv8oϡGMz2qZbѡվNG7K*#Co5QuzΔ",87Miwb2'w d̽KO2eem~tKcLw2Y`LrKu)Tȅr1}fuL)T ;uۦP(?+%Jtֳ[to )c/~%R+!3FB}]Jb OIYRK^m\mH_7 eu u"( l/q/ɝcMub'"@4Fh`66ۛGG}'n^洓}x\G[Y@a֡b2t~{W._dDfe4`WP=sX,DjϝB&/[8C2Q&lJ J9NI.Ę|ey$PBSз6Cy&U9 H_- &bB{=.z;>E&mNCamASiD_}Hc NVI#86!cũn}`iVxy) 45ރDVY7v*K>XXZ,0ȭ{&Ӕ;X&Y* 8qa{lT2ĕQvڞր&0f W古1N KkQ/r0WC/K `G YWF&[nF.ˆ.l-Yz˽4iі<.a< O®Bb zOJ]X%rT_3?Є6Of% ^+9m8 ]qY4_Ę_Sb;F-4TOJ\ ^@QR]P4%s3#v{Ao9;ڴ,U2V2IYB[Q6J[Ïlq\Jڬi1wguf'ZA %oUJdvCk3uowmNS@3mNiNuPcFVә|{33Uo1G߼1֭b//JDm T+cӋ[8Κ1Ū`ʆ^4ZTau%*LW},B%.\x}K"mϵp3)}w{B{-pO~fX4xw ؔT+p>ny.q} ij}Q̲͈y?)ǁ.Ths +Q$D坦cB /еqa"HFO 10Ipz AŦ <՞-$Undˉ;jߴ/=_Dġ>3qtV/ԉdz$DN#iS3Swn2T.ɴLF|W:z-`+ c&2ol:PTeNmkLט> GK\ uCC3ԇAʝ#l/e@3k]+I@!%hg)a3Liv /DBއSҝJY^To]4qQDeߟC`䋅Fo%[ʦvrfx s.pFʔJwJ߿$kfspJhڿaQT!jq# Fc>uF@k/t [m%7&*ܰUoˉ\BO.6K\Hr@z߳m$lS`Tak ȕЉ AH+NOx1K9Ȁ/ 1(d(j/m)m ce1w?iP I&tVEa6>8 {Q S~ ?Ty~GGSX&%N̈r=xBEHr[ 2 SlN"_uYY@)2m:{+PyEC\f`hBk_:R/bDT5gX{N;[À 4HI_0Kqu;,渴Bޤ}~ZS5'?XM*UaQx[a<AMw\4@иwΓ@ҽ "{|~ܕޑ}FXP\,մA$$!_  0fP Heiascrz9Mnzݒp$2p;azlq_c̕o8"g616a:HE ҦlA q9ÜU:lqSԻeN6p-W2a⭘蛸Sw8;A弈##.+ O\LW[zQ I9a xxHmtROx h;֒ƞ2~-l(w,p6' £O@<&͖OsszfVHO#MYɄ{u;|/m{, KA;jOs'?v UMp3}/ty_0Wy(\O5Eec5;!4IX M} xWԽD\!Y?ސg, ǖj7LځCӐqS=fX7>+>T|UCsph^}dPL0U L I$0}6Jv,ӠXka{pnCo)!]E&WC -ҽui28-&%*&3+?2ZtjȸQHdzK)CRYSʯ EF;CXȢYEihw:~-r,BsATUݑ.e. BPܩb;sٳF Qi%#o)aCyɑ T9N3FVm9'2~Q.LoLHϜsؽM̃c˹p/65S[eWǀ).cRx|/j$o.B?tfs3 @xM`n@=\:BJf XN74L܁z 8 O9C"702E0$T- )Z%UgP-3IOn{kGEg>͂EU}ΜN961m[~E{ ~ 7[yĠYA M3` KV5'șǀۻݗN5qB^6:a_@- GM-_khv6NB['z,{!s~{`22lEJA0BaDCq8W- k&aMEF*tCYdߥ:#WP `G[7L .ҡK ,hyRr~5MrTlxB_i}#%:1ʙXNzSv1U+yUWvc.YO e4"/94T0e xY83Y/tϢp98TXPPߢ)AÑD=u#w$ك JQ9;8Ȟ{<ɖcRO/rSDe]#,9/ "#|gRx4kJ1 '=xM'%EԾ_:iˆ#.&|( wy'P'[? 9'ҤTOҼK/\> ŚmPZx+*Ɑ7ϥzDSg3(]_ 5pD$3[Bf5` 2WF3WIC]k`c[ГU#b?ɯRpuya@V{Hzl7@ڍt)0A&EY$-MZ$Lt+M}iw[5P1^{{tELi_۽}7 XfFHP;>&HKT Y7Rn٠{*,m. d(j0a,J :7gw.Q#02/^{ PΘŠ# V8wJc Lf` l;>Ix~]HQ[c}~׸ˌgJe"9iDDŽr4="ѫ4%PCF /I!os)\*|^X ȅFZpZ,lC$W" PPcWu(C/ԉdX PaF+pnm-OiN/%N0&dՙ_o9 գ5uFƅT۳7^gQ.5@ocK@0lD(Z-=nٟGG2{]xZvw6C)GT?fF|`p'my;TFt0a ಶ@E;Dd({L1d0h5@%ĵ=׫@5/\s7ǠhSC*zrhM,)0.oMek~мJX08|#);0p2j3h#;l2µ%8j5$bFUkX/u{ǚ⦔#i7^sySc[I"u)=xvjü1Zo|{.攫9Q#ZgjA qΔn*@^<4 `lKn@z9kt!8ݦ tK,Lk.V,IpfLV]p%#/PÛZ,oHDYe97MqrN#mAaJ3*ƅWx326yvڍ$]^u^ ߺE"t9uaHk):>P&)Zrp ہ;KQ؎ R=`veGMWnM2b,]ij ڠ*|IoO 8IxyXB>2 )`R%6CG.3I8oW57_L~%zPT=Wu[dH'$:~ |{KkLJ6V. a)Qbzr%H#rp`DA$Nvl.JΧp}&Ipmж ds"VX[/-Eb\ݴ|D}{twq~i7/ѷF/+BVTĭlݔľzYT9f )HLr}:d8@/Jtd蒹t6cI$r[8ωI^sKv.gG8ʠ{niQ3d^3OsQ㋤xinsW`%Ӹg~ʄ0xQv: 2\}ug`x*#8 s)y=[W#GzT6C -3QY )TaeR{?bX)W(lj K$,XM'ꂵi9-`-K07~@:ޝR^[Ew~ mCSae'5+[Kq瘟&iYLV{p=!tƔ`DC_!k#Ԁ">]2"+0Q[A$rX7 ANʣh#W1K/Ʀ?D@z IYQ57PiLcK^XYh=T,D:c"~VDޮvi%SŸm$m+&MDRS39hʁW`K Qu gۣۘrbBVdgqJ .WQDv@7k~y LO;Ӭ41iI^LaTݔb@ ([̒=[F8t! ui%A8յ"Ǟ(V:]A/ `?- NfN\R2UpG?n  hhpJ!ng>S )͠BV͍?问+J]w.yp杁;ZW1E Cοr Z"Q35Pڶ]mAp~&-SY9] JIÛiGiEϊynWVk~1X=A $d\C/MX7y٦@6o꥞!VCmRf2V#bgRp}ZC&\N^*!QܮMg*]y!Hzv2;Pj]@V|otJ<{%Ua_:$?yzQ(,_\N];U/#Ζlp`( -r* /]=f[j}b-M[@mAIk]LðH3&f?y&LAsЕ![PWUA(Sz+X9$bޡINwJjB9/!M%~2[[𞦦j5"|&QW^ .<,p0Y_Ak/t i=CDPfe!=DzM  6}vL'w!R1XrsMT8IltEkTb]_>h·eؠ]"CJKh$A!Ubʹ#n<p {n[ ̪:F]fq/իcXl;6#UhUcSj\ Xr4vUf!GM0zϐ:L%IO˖bAfI/8mK8NǿX<]d5Tzbz5yatA1~l$J-'n6$7[\|Y'\A#y*݀؀&9le0}+Qk{\{_0)q/5 ^{sAAaA WЊ\@ȣ]̳v J], r84$;85u$[Uqꊇ:+>sdϣlߨ ]pGQƓz+̄# Tj#Hp'+WvnR >Ve%%%ֿe/;-VٍRϼ<] NL9::*1I)׆ R? -=]}@շUfc؇e;< p gk D!`D/Sbb8O=C%/ C ^H$K\>* SHGxuz(¡&/gARw,?際O$Vn}yo=USZX,^5=>W^]9yҹ-@ @+-&;ND2}d*2UvŶ̖؜ñHZ*jVgʽ.je{ɟj7a0ti[XzZjG3A.ux5)_ĥN!lkGDvn=ᝯ= c|_Q1 EI]hLA8DUQWJwXZxj)\4t^q$# D Xz7$"R]ų̊im.7 A^/O`=uk킻/@)I[6&u>\L :#ak%U>>5뙹|gCWwl!vIipȕ|~ ;TXqUB9sGqʆN dvԶ,3Wp uʿeϿ\MOqaZՌRqe187Jygl2.81n6]?썿؉Bf:v 6ANy귨CdF MFq!ذMoyG뜌Y4ĵ*iMBQi\.pOjV]'-m+tP9P4 FT؆4ਊ쬉TCY;5E6(peNe3AY= %C&=I<4/^İ'l/GX[7ͺSMʞ [ys5`#:-*SoSnW i_q}]<0| ;0HCG_LaĞFo~w"1{K v2ʣOoBoEsR;  uyXBƍQPjv}y&lַGK Cda]v@ ћt#0Xz44 'W|^Wt/w٭6Y Iؾ]dK57+]s۟Xt)MzV>o,pRksp60ʩѼBBʾf?w O,Lge\jc죧%#8`=cI I67_֞БD:6i=ȣ4\j/wkxj=RbIO E'/4Ri_AC-0b8Tڣ/Qb:~ {mN4/X?/_:Hl:-2Z\[G-`vjoG\dSF1Fn*;*xdt<<1afF|_MtFčTz ݙ^,ܴ:^J2s$Lpu W,z}ˍBqqxٙ2j8ӚH qc<(8]%._~UK0qIHu0%4/!dg΋Pzշڛl^#mWwD<6<Ƌe/L.!3ȁZ'c7XQ,r;tF2{h8vsFeOgm_,j=ǕH1픔C36 Zo&y, 3)ɣJ3Yh.ưDzY])6h&$HmFH@ཽ0\S䰅uGr(82=.:'%x<؅=R x9,nW+/`,_ЁzCXz[&Ơo9@iG*oyq"yԷB[L3Z(6F ZV,""_gVQLIbs֞2/ ҰH*rZ51:O(vbSz!hN ^m,VmqKfF p?9gcyԭ<0.uR% wyLŝV)'}1-K%Aq\3B߳<NLr OD7T zXNefz_ǂ`նN dާG1͖yp+YBIIݠ=Ezar!ŁMX\;\_ۻ(bCggv;S|ҁM{0bC0^D Z_7Dm!gC6AJ7v\֛w)rH)eMl_ Z)(ftّF[;hfuZ@܈n.gpقϱ$c?]4;ung%kZ1vVPX&3qSB .[XO%8s98SzavbVRWfm;p[obgEmz ?!`P3sLkۭޜ>:g%} 8&nT~{ne]sȞ(i!תdc(K~J+*_OBN"hēv9KlCH 2i B9mTpܤK(m Tʷ|)"g?Yi,62(}13Z"@~@x4~4w\҆8atPo@`P؍Fع ( P]FN1Nb-Ʉ;SVKuOqɵ;4B.cc0 % :x3픿a`σԖGT1edSHx>ڦ(O6$z냒66ؕE;tJ0uHpw-Cv]P2I^\%z %잲k4>9?4!ud÷9@:b5YVq\)!V>2yE"| 1M?5"qRAa0n%u8+!T;L߷ tx_@LX)& Q{xmr9`ūsUoCM*O Ūts8cLkQPI~vה9y/L|ɞ@)?^=O:33c6w5{nB x`?;+d&V/CX a~v.]U5S4-^9ޮC9wBdYYOXC.J1jۀUm8իϞP2a(*ŁͰe,ݧ}s)-QƌF nb i&'@Zb"G&aEJ>O 3X;f \Yr z7mkzPEibmp}j(L[o6LmSTmz =l_>n-tn{sCV>oN- A;kl>cJ0q1@vGgR/Ŷz߮僖)%zU]\[P֚m[Ye^:%jHؾ74"KvyɌPFۻ.\5`#ND]goF ]b**#7{\a͍鵺u0?,{I}N9qFL&nkbC@~Lq{;6d#ḨH,#גwy;A-3HKcwު\+oŶ&5l/9u`7DΨ~?JffhS%t?6$} #xSxpN UvRZ?H6ѻ}cILH@[ȄBI .Uc',<e%<q.dkNEl'w4#?%د\֕(׃td'-Q2Gra7'Y̓_+u)5iGGk6/+٠%ڠ_y2̐DJm="”JF艄^Tʱu/i,}SKd͑|$\/^2[Bg ; n Zi}a$@>9w8bKHy9c KŸwC͋F/K~ $c{qNJ:(w9tS~?OOxQM}5LYxW~2zA8FX]]4E)>-<4ի[3"pQbi?|{fR&,̜]b'o`u|m@wQP* 䪴QbdM,Ih2H,M{F{NZѵIׇK\?g唂XSgZwd1 o&u[][;nrϦI(MTwe'd*cr$JzhYbLLѠ0;z $ttzjjdJDnoZv|Tя~cTVWJͨaAȔk׶XC 0/otGWWQW t(1.O i,) :wʮBd2 e/3{ >n}lrSJmw2M<-фtmGJNk= XZ=quHQ 's】1[Kڥĸ=;7`W鐸#T*76־d6+LńxZgzIwh|et4FD|w$0eCqM -')S"diZB@ YнfhOȾC5|eя=rMB?ہ϶5I6SYjVaQAɯEmI"W̉/*W0-74gPtPV5Ʀg_Xpv{LRUkj=JS&k #Bebt}au-ŢC"FOQ$*^P3)jlg'}`@WI7vOK`"R Ng{;ktmn0j[`Ki_\jG1_{Ob'a yI!)z]Wǟdgc H1S\@|av"E(%*ęf/#=x3h_i\H ǰkjۮ]NEs\""k-;2c8Za!&f0O2W@.1Pf#067RI14˝:YlZWžq>wOBf,Gk5+jqDI: (>EB'؍\%$ vE{9^9xav?(\bǞ?ASSj;ubA_ӥa3”׬Pf%` -5n%>19 v5R`.0AQHƗQIl#JG\GX݋*᲍_g"spL l bYG` yLzd/ W6CBϧɋOtS׬ >ʁ4_IN}IH7LҨ ?FT.RH^ /(Lh/A-]"BCҟUV2i?,hMQIϬlu*z̩aBvލ@~ӑ=渨 vVm˴(zzNL@d1)n%/uHVhY2+U0KQ7',l.;,Z[!.ב9ɪ֍'OFJr)v*E溋Ѕ4l(o=$/9pF/([2!SkȬ2ݴ q5I gr)d\~qNkYZfkt6w8P%Ku;o}/zȔ0lV_ol|O M OY{oxUncO <-WR,~%=ԬP.Vv̙.@WJ{%u3y׈Wj[>Mt=2Gu;\tk5 6D$X>h-zY*6à $RHmjftw-7:C~Q/ojtv˨[l-Ɗ'hK>e]oE$~~St6[z4hae%%եllz3H$$ I:SWN܈ reB`/;?#w#I유?\V 3RYubDɺ]uifڞ߰иk|G8EӞ T91pl% @qIt}QN,]<2a?]Z^|], ޤ HhO4pP8i>anC0e}瓊r;7D؇G:= #X2Ȏ,}ɨyQX8Y+f/F&/ 42\{@Y׉'Y s@bc{ߤKڒkE|c=`g&.q'{_<:> bw T9yHhгe3 cqh?2y}u _h֋b|3`pԝxvyYȿ3h / /fx:MtlZwjĠn)Y@ Cƻ3W$ t!@apvi&q׾oR>' =Å޷tjؗPՋw"3[UN1ZL th*t'm ?MB$-#U_ yj?Vc3JYL$g0/kD=~!Zr7SBoWAfl!˶<774 Y3p_|KdT`&%oSթgv8S$# PK %.NkyQsxlqY$+)Eěѻ_ђJ,XuktrfMs7bZEP<lVSXooaz"<(OD!Zy)^O}ttc[,^~i4K <=9-Ӵ0|o$/[@`Kk#¹yb]>g>xj'PA<5}"Mc6 _3~~B@{$PI4?DR>Gu'VmOSP"Nj: SC(Z+1fl)DlҒK+&=/]Vf'Fa#kV g+ Ș"-;(';i~[ q}Og9OTdZ|`IwL"]ܱcjB, fCnstn&ԹXsX _P*ꃒz+ #kMYT ҟٙrϼTW"X3F9eנ;CS}Ω QmI 뀭tKODׯpT]6 2n&:*NVgEaJ?nXSQB%A i~0eQ.W0TaA8[P$h&EU@pe7ϧN=ʄ  PG]&$k:p,ф$ .v=c^YM}9Fo+R.= `. u?WYIdTp7Ycp}GDA5lL[:!Dsٸ^ZaqDEr[4\U{m R|p[ T9)z6Ħ2D?>P; G42m``y! }ɢ&F05F,@˳[s~O0rʠd `o<ϻ3lu mցd5f5׾"{JXlʵ3uĎ`\G|fl4i 40F߼QniNI ~t1c?u'd': ^#PljdX),bR'jQ"*/n>lE?՘S`"z%AP '} DQfY Arq$ '?E9x C-+>3c8G%.K Է:M@}Dza0 ^JzAw .Y)ҙ >ӥ(3"`勻tS n@k;Z)o2x?7@G|?1c[&3Sf-[4,.1ފ8wޒ@2WGvR ͓ѡi^ @,΂rQOWu|՝U*_{Y-HO SQGr>P{xkbXYU:wt~4$m:+1{ʒEBnӯLB>hXID wlCJGP~uxFXdk=IbW i 3&+nGKyS|؅ #sڠ!hp8Nub)4 m 12ݺzxbi]zjّ7['eFd\3apyBp{=MâvԆy-yuC0^Xq*P|6Iʛ^aKPД(}yफ़\MRh7Bxsr# Ikǭ tw HG&w;Rlw.#Brs]awLs||$\qMUo"/fu s+uW*&I:W] 7o͎hN'5sȔ䛭.P5ws8sAջfZ([5%pCh@#Xqɺ:FН#9u4J:'c*3%+6@96@ Qݶ9t9ַlR4X8Pɒ Z9o9K@_^Sv >:aFc1Gtd I8 }s_FtRj\aGQ)~ti*G@z^Ka٠Ure">ȏ&y 5JN]Q-JOv7̬fZq AIrP U&zw ؖͥgK5&ԋ5P%-c `KjAتzgD} J?VY^V񊡢LEch?RuV7G6ѾT%-aP;PKNb0QN$wV2W]Tz]r1˲q6\gIX403'2ECC§6$99lni!=#G#,kk,kUZ:kpG/XU.+y*D)#㧐27 ߰Jj}r`$!8` وӅsӕt2s67eį=jw=@5av ܶp#؆«kE[P4hg`(h{Ua*G!?|,ӟ0EeqC:sʖ-[xH"T ?k&ICF"Lum Y\Gib3B&}l:iնԷb?RK,دs6?k)u\N!Ff5*mc8+cmuXz܁#'li!13I'} \ElZdjIB;uGS nonԫ(@OȌv<4Mt&Y4K87[q8V8l{SBdv%~qB_N 1jgcuf@eWqZe!_A,+-q/.ׇwfJgo".\*_5P/RPl utvsO!Paͫ2])*7 4+}fr xj t'>.}EF;c4+$Cᢿcf-#Sҏ4!gqc5/%Ń1 D+CK. 4Gа7gu l*mٵ$cJ(dZXk.$Xȡy*<+f tA=@ܾO&El*r3xBf\`575~jCʹnœV&Z]kՐB"˷"; N.5K󆈉F8BH%T%f̞PH V#'WM ;WI\$y?c՞uU$1qY:)VԱ׏vev,V\{ _nD ~*yA_gHtIaؾl-[G(o`Ꞻ=d"P΁+W@!; tm.3)<U, `2?r1 xQ2HsVϻewНev V Du}5ܛ'L܀yNyժ;d7!(uMD9Q&|r35e+96\6,u>qYct&{Ȥ`_ j$? A=Yٹ7'otU Z&ͱTFL|/Y흍TuWca[LwY=Ygs8t??Ѵ\b] |(ee`sXB^t s`g<Cl|0?w%7z!; sMkKITTUcZqu3q{x=aV)6 DzZc_5ɴ[rۃߌK@a05. hQ y d=+jŒ)`odtF>gKLޥ^VӘHemЖ5ݒ{L Ddڥm&FM/aYHa Kuicod^W4裻+̼0kD`SY:]>`n}=3F'Kﵰ by5ɭG暴5:ҙH.dZ~]QEsWP մ\h|19,KU. Č柂MV+0Pw\O^j"YWݸyVghܐ%i r>XҼ4լGBށ6-YnzCrV"BM:5޺ '\Pu y5=O`2O}$Lp#uZ:{]8hgg?{WxĉW}8.PBPk;/Qj%7dwt*!I U%/ϱQ*Ȑ*],;r: Fp9B:A2WEDC-(^ B3#(*-E;t[[_VQi*0ie''' ܊Xs8$Wh~3TgYS$d̸#;W(a`pHfzIFUh73q<}VO/j[^]QGo8OJYL' gnk=cJ ѧyлd=2Lj`nCM^;7Y,C v& ;=7+] Gf-=ԛjr vSwXGhE܇E%UQ:iْ'«}waLgBɟ%o"^P{])V2!,޵ GV/CZ8j<.i]gyj5PR}z3e`">ĕolO ԤSSn36Q~0f6@@ 1u&1xy8>׃A@pSEpv+p #齂!0{<7Cf۹4 z(KuQB Aмh Y D'1Vÿ́Z17}b6@G ~!thX\BGR-gH%"OFQ[tBFwdWӵIߚ+ﰈ\:OFRȨ ҆ޏȊ3ecmZ EN&Vy p~ȡscQ><mіqиF1zg7ķ)CLjඎaL+N!wgQ~1m$*pa^ ScL<HPܒ*8<,.wRnn}`wf`޵t_(L"2mI4H߰,?pЄؔ$_ )9ݱ+=bh] Y0[O~ρ^Jc] OaNbNB$_Zx#Q0\Z ./l dg t?q ~/g<ܒ$*7M3!^5n|V  =<Ⓕ8Xs_Ռ \UV(AVrI5 ;.lpy %:1-?L`A#:$m]:\uNxC̺xl~OIs\ QIO<,luA+j8" 2LJ+,JKll2d*ɾ3H|"҇F’8Rbac<(A_!mdj҇U@ylq7u~W6oD1ϜOvoAF)>ZNWAosٸ lNB `ō 5(tOTܝ=tU jB+_+9ޟ)ժL#4vDYNRwq3~5 L+eh_1Z ^!$]%䤺̖@rDYl$ )[C ViLZ.n򲌭+p FNaQ٪%-?Tc% {W$Wjr".ZtqA=_1%|[P)2 6jg.Veo.d >B~a`|QҎNxYQ"_E$!)/byU=s a$p;;ìEYV IU7|P̅MGoj'a/3Ih*2B]BKipMd'b9NcƂp8A x!DH`NN|- \0qѨb).qڃ<8iYAȬNE % ~:biFɳ^pdhW!{W5-S`5q?42D+[d,2cjVh |8h2sOF=@bDt&a)GGu(D -tBU+}ýh!q$ize`i'N;J u[\ 5'K88?3z .;Ѯv[ p2H%n{_bN--yLM䛫k"y.ރ6mQ ,iwRCN&.탗{, vHQ&D#w~R.O}4Ln1tb I*\b\*,I PUb6 $nVϥfsMZktT!gWj/bJhaR3A~7G㿉}|AO\w0uٸ?VU+$P@EfgvbF^aȯFgJQsEt=cOҙ>mmc7vrm nE͕Q,< (<:D,T-mâ~N@\GכV{tE6-P02\KP3)<39l_PUZx%%Cfn/5jI/qKIbADS|>ˎsWXŪPe&?ɾO$s 5WF"9,ڌ%DK<`%^)cQ049}/ps/ @y A}@HNoxMq"np[ߪʛCm.`ө01[ -&e6LD8B0b1?y4snlҝ 0I@/bK$;bD 5ʘu>-2/,|Z<FVTI*6wMeGQhhpU)wE)JN^S9 }b|}m?NYggb2Z@ k_lPDmu u#}:U*IU'2I2s(33^`CJve5Ag5s;+_x:%E6.A@ o/|h*Y9fwĖX7z?Ĺ5K+M.Y: #mwݸCkM݈ԗCq5-%<|d:uQE$q]U ,q,~"F -}0stL][z#/W ;e2jZPнy Uj"z8\' A@!Th ܂\y&& (Fz\Gx"-?e4r pt@Vyx=v'seac1*FI{j&#p%uC cxO|LE}3P8L!i(wPZOϪdըDCgkl~?h &Ju TA ":gOK8E0瓗 v?؈FMG:fbu0ddTRc˽aWbW2(G8Bp? ߋߐyʜ{T11=Kh`Yklz]N_2r1R : ȀDշYgnߪu/ x&w0[z,V+aZ%;u`pD(۞(" C_..i.AiE1z"kہq?c)b!YQA|G9Xŀ=VBԝguAwsI} K[J3a0X0y  =](TGE_eǹ6KuX"f\̗$@8*@0O{°D _MxwBrx3䩀-qC0 ?Gg\UTNreKǒef+s#~;37sFO.vg|Y=zp#<=@tUslˆdEy Ӱ 9@M a~v,:;K!p~') toQ 3 o smEϖ$l$V}u,.vaW<6<l3ͮTZ"% B]ue $ KonMzқԥ(`nq ",'2.JRkdžWq/op LA!p@`̌!C,}$s٦I/4H:[X2tAq4+t9E^6"*(# c(́ g 䀽2ɽ;(W;&ɯVǵb :&Xv+,\TqI:c9ͤO O]z:-NĐײHPx =!gtd4#H-Hx(`{_fm 6_: g:?Y3N红 !CIn"C S2|!_)P=opMhYW1~~L<i hy_Gw;d taօߖNln%\IGV=Sn|"S%*e6 7EKug-gH eٵF?~YvJnC%+adp#g_}Zfʢ 72گ.8@WL (jɟx|ٶzp yCݰw0nÙ tDVz*+]R! J4Vb֒0]%/2KxUA55#*Ѽrnxd3!X|i^ivEחt:@۰n=KcO A^<֍1|7n͡ 5Wn߷YuD(v=Mc}xBvl$$Yޅ“y)ޢQ 3i+i&#X;K֡ LJ4]FEs)`:]'`lpc,'^ WwZ@M2]_5ֿ\Tݻ llK3=іC"2)%9^+z 42e=;Q^``Ma#P5s]`Eǎ"`6JE1S{+j6C:fןRt`O%iOgX59Hջy~ Zj3pѝ7񲹄W]p:^Gr? Nv So/=֫tP Z͓?9y88c@:euw]E(PI=~hq3$X}_0)+>6ű}M!ɘcx$T, 4uEIgb8 ]{V {RAs; H8G߉8x'x=& Bvd%2 l~?"c$wc;kW&dq2lqU_P;<5\?nV(eGɖ QeV`pfBd߅m)5-BUj*?5w&, ĩ9;C}1X ˈx>G]BxEmB-vS!'o  Z|Q:ŨBFAzKu`ſJ-$uqht5 q ՃY2w0nPfPr?/ʯK4hy j9gn_vI8;8mLBkǜRn?XN: ^2 0P+"kEUl`\ G|)(?Q;WXEgw-KOWcycב}UAslZ͗o(9 _&Cl75w^/dڶZ<<Es@}(5I*caއkolRU5e3h)F~Vmc#)f)鳖nWd6*hCۂuɈ]DRfD|0K)L'NjG竍e m_^EUy8Qz~E:QC]-Fti-d$qC+$PGiw[Q@]-$q|Cy .R)N:iR-(Ŭ=hrO8&>̽hFhsA .u">`ZA <o%q?̀@`eeh,8h]s#'V8KTrr(Ջ4QOұw}8/o4&LD^AƆ.S:'I| Lث]"RY(C58~ ,`6m>KK s۫ l@ vm3w&|+y ZJOzMnܭoib.|2n2Z jAI[0$KJGQJ0]$~'EGK=j{l:N^xl|RA#1ʱ_)6hbnYx n%'u|j*s\ s`#!?N<7 ;ϗ0nnFf O^!w47Pjlm#U9}~aۨ*M.Ƈ4kmK]ט`2ydgdm&4> I/i:4 ^q #0C GlBYK2fV"H u%\O"rRuGU(]qszvmV\YfTduRz88q*A3nR`A9zóǑB 0(JwM٭#=AS|f?ltR8:ӡb_7{t^X=Q(//[ q5EQ̎N/TQ7$09 ̺^t]d.3a暯ߍ뾲Ǭm#Pf#$X㎵)m/'Hה㭃&&!nJeeD )g1`,ONmc_M˜14_m1䴠:b!zI$,_jiJki/ d=fJdKxZ!LOn_iP)CއhE ߦBҺsf2@4f3/})+;܆gǤ?vJ c}4ER5Ž֜AZGUu#}-ңSz)~|F?yDʘIG"ށUtn[2금)-ܯYdc- M,]&\5Ú[wD}4Lڙ3{ K)T*UC,CG~Ʊ# $6X nCǾ*.}{G#1H$膠뒥'gk S1vU~ųɰxb!mCV D o]M/@em{S_Q% > ٪0 G,Kĺ&^jZ2mN= "_LՄwv4d3Τ,LOw~,ӎ6reڋGCVrqb <2o@ytYYe " 2 >u+/۽j?\U@G^K}&<<#p/o~)ᄇǵf*c4pRUZNO+nj4`/}sI3kZ#ĥ(4Oq^j^ʓ?CLբ91'c޾86c&xs]اM%x$vû_%Wjd)VE܇!5IO0?'Ӂ&uuvPL{E23t#*;n,^B/P^`@JPsy8$" 3d>aUY\ ѵBIH5&8  oy@cz#6{nΚ+h ~PzE݄̠+s l Į scPˀ>5 V}1*!*̅ݹ"-^Ku9ѐ6\+3^To8Um@[AqF8?'TkuR >'R} L+ffx2عC.kЁmn1na YY#ͶCj$jbj-ff dCۋ"Eu-yT }Ө1g ʎʠXAU>S3Ҿph ZAB%RyuuM w:GzXJ{YOKMAv"F@a8#[2-K֍bE6U\Bu3Akx!NƸd{0)!==X9b-@tuP Tת%ÎJF|9qfb[K: thz01_>@|'9+Xwo-L) qF0ꍤjj|~WLed!Ȥ'W+67^;fщ]k165 o@o4(486N9f ?1sh`1;K:an1͂N+  ߨ2%[ b(qL+ӗ [/)s"~^ H=[.3]ml(ŻW \%hLŭfV8U-YbAKvxh]-. p2 LlqؒG$R r }_}A; #D<ҏ?*} .")xa譟܆Pm\3 ui]mc""g*}=M ȮՅ|Z}bT0LPXps[;\z|Q,[cзjT|>et P-{-݅ c&o'(ҷY@+3TM%,XIأ!Y4OãAF@]>Ik<"3@J`]M|`m*&L wOc‡4J,D#,Sj:u.]D_X<2fx=82W*Vz䱇~L嬠FjpsbܹՑ@nx2 Z/QlLϓc{x:3B&Y>` ĕ*57=<>kS R9dLASL4ΥMm#E+]7zS5,|EL7sђ~t 7Ejzq5Nt]N6}?D&2QM=&eOA3xd^)Gq\m7z jON Td ]_Tg.1wЋ}$Ԍ$?k=Np3Q͍Cy6ƞU8P0MŽ VE Ü?)?c)-w~QI e;&n-Ng7P]>t1ޣDi'*bt_%]է"f&K72Ա;Z6jydܮ }{[#X!u~B%w (?@^R `;p.nZ3}Ϊ'^b) ru.wbk/VN2놠OGp<ϲ9Et2'6]yCeR1 G!d/9~eޚ]R%bM/6)gJHۿ ;LIx`8e$VpGO k{MAU TO칺,`U|avgZxZh3}nPNN+MyuMh(-YQQ脚wJkbm#q֌7^8)؇*r#hIrO%R`f6zzvTfrަaVagr!̓<rYQ10s}= J r8&.x8m#jjTlo .-jv:=ֺIK1p 4ލ !V :ܭRKD VbڏX=]耿涵g~_ݛAZMntWJudX.BVc偃"#m H\M ­s7,%bboß{9 *xĄKs3s%ՑI[Gd :+JK 4dRyWvokWY cSFR!kg@W࣓ &И kɣ$X'\RvsSy0K.6T:o/4ڔ`D00<@9G"e1'twkqnC dj5 >f8Lm`&/J*\pDhH\ |Ƭ߻t˝ ͭj '6`cc1csRCm")=R~.fOG/&wIdXJ5?Ppi&(8, N2|ή/rkl\7%:[+ NX{ն @1!e~.fV+-}JXUu4OUJФ F@R<8 W=H,Mv{Dq>Jl.qRc7\V,w*WC\xUo|4ywQ a ˚C @V0]`E%(Yh%z`&\9=3"c}&bӻG$ >*Wio~>zP8]5$WhZd꿀?B<Œk1L쭓?˧ln9%7`q$B9pEmT\;S_~9&?WP_CD<@h֫ZCFͮYox[ZYLZbI.8hZ)B@zw'^HUle3fLwîWHLKz TLs$,3 <%c2ʽop8G5缁 fFaąS'(T/0b Sv%2fvG$sr>K FT7@vTnhN^ը SM@N+[?cS:D( JX_L' ?&<&D;P _횶r{H~{b.V3:F]rx`WT{ctY8d;ek$pu~B&]@u >5<510cw;]㛮Uk%x.i6D Pml0¡7uF$ i (`&2K$G`Lx]X|$Osu6Nӳ8SFP;Բ/s,/FR5<ø!bahR+(Hs!gfm>\I[7Xf9xZ\5K ;SCHPnnmS'3ǀW}ﴶ]nALg]#e& Cn+ߥJ$~9]SSٌk46HβK`a]76DJp:Mؔp\'b BF\E|%rln A U&2K 9bKC2<^WPL qjOߘOA njD? ev{C%<% < aJ})q+=$Lu5; #w@A4Nvd1G}KhO`KJCzStĴ6[1  7@VW3uQ8Cjʣ^:0r _'%2ׁ`g/65@/.;$bŀ ATJT='\[OڀXMKw [adEĄ0{M:쨼[[> Fr_Í8lUX %y-ux2VjW㕳?C˃S&iVnߔc_* # +qk|Ue?P|4S@7 vrti M8hLd63ciPl3҆pe"ZfnJMAD(Z p^?-%3')+-4r3Î>YޱϩtEA΀ ɰ' wN{0';[12}KEβ(iJj-] i1캪 sooeahEw09+^!ԣߞ%kg$,uS-Iݥ,54|k5}[UYt($if_xUL{d)evv6|Gj}hL\4?_֊wu%P(%aǗ''Q\eLR&p`+MC(CĔIvդ: UbY<cbw!|Diг1A>a_q!ZS'=ķ)]pwSO';' u0DaRy\Z17VPű?kNQʞ% (`I0؁գ=G((4}Ӈ'.]K`&[qg M6[Ф uhNwX1}&0t ΁z /T3]=08cO54W%;crWp:ewƲHbmNW!xnSòW0oqj qɡ@9RJ#SV&ʔ?a2vĢ`g? W*Gxˢ6׿|ץ6K\dph|T"`-޶γ]h*%4ԏ )6 z+"^ <ǷT.Lp ŽWŅ38z;xCJo0s;ZPttv饭v#;Z-^e_-V*=Jq;+}-@Q4m.S2y5^P7"܍ ~4з16U}2LfP ́Fg&JeP*Kank;.%V+ۅR F?SM E0D0HCa"7# MRM3<94%2g2T`Tb'0`wjp  O6M.mv~x-jjuS= <=vf-ecRl(;8;@JXݠnW_J ̪Ks{m^hz~׊쭍Nr󬟽a';δLrl 'zӦMp%f]:+{>g,d ^nGjM 4!FAd ކZgM܉_JF^G0%@byDo+swe,t&s֣'(b? 5D'~Q{(SˏoUTGRTL6_q4[԰3/3Ŕb5#ɋHF-f{8wT鎧Cv Xwm~pHpX">L{z?JSkM s+؊Zpy C"cGko>WV+mAVo8 0QX?d3#|וNM x͕A+CrOgad6vMf , DDymْP,ϛN0}vhpZˬwD6$xh̦vtyAJKS$]4 8E6u=Boߣݨ0@tY0W{TFI >?kKtyxf+卬SKr⸳CIuG5܆HkJDc \7Hk8ݧxQlf.:T)%^8<  Qa:77L.5F%7dx/C.LְҮy־m' s+:hY2._^jcb3?KPdY_sjOZqBgJ df>r"?i LHQp2Dzg{D \ڗ4g =,Ozr>fp3!2]g.PyKaxy3-c2F}-b8m̷L%H8yՆiî4 iobWi9Bh1*33"qtj(;*La|'`NjNc%EfN8^>y1;uӹbVRL WFG+2kjs LJjn:ʘm2Uߡ'y m6t)#ƣzyܒ! Ȝ_fy-UtW\J.([_! HDW}%H @@2A6[tcu s̅_XӰQXoC8ow\e]&9VߍzTd>{:ջˑ[ΩdKm+P옸5i+D-­nQF[|`z@ga1ko&qzuL؄>Q5iltax\p`Y_jxNt ]xY9ؿW0&ȹ̪~1`#uOb y$*T813c&KYy28&'DBStͿk團ỏ9,8GHlaCUb(Ư^3ƉmD7 p'5KB+OUۏ[B_μiX}0&6ո{aS߱}}CwOs'<{;7Vtw~hĘ ;DQmWo`sNÑ݋ܰ UoYnj~IL!ML:ߓ{x}M{a 2rܨCS*94m[ϴ 3 Gڑ4{:@ҔTv܆vJ~g5D;pzJ4dU im1bx[cKHF,ٛj .@HHU&)u5tw3ѻ'sa%x_\ fid&Ob$~Rv):mF͝ǚQA0"|Ek w 0v;ٿ}hjc,d讘 nXGek83xB6kZ{7eR'Ӻukqa~U# 'z+Ow`8%P +G헇(;]k}!,׷e of;p(`Љr2;L&R7 T.EtY`Uԉ>yG[ܠPg ̨mJk:ܵS-ګ,!AiF^R;^ [gfRJH Kw .Y/[q[#z^$x#գpUY?2du@?n3=GWS!qgш[$?<4OLJV Z%p$LE49VDVoT~T";Oթ+[I~r#Lm;>,>͝r+<R : F7%{D$]/g֔ގT0؝k۽nԧ&Ge$! ە3(0ހXX"e)eXfgΦJ7)sSmËT@G7Eg4\i^r*840#2 :n8 O}٠5VqRJݐZ(#q{Xc%jYp״GkQRM'qqb !+Ӟ_IcMy/ ͦoQ+XQ[,.o.Bĕ}j~w?O@FCiW./}Vg/мE&]3iM's+ o]UFwGSql5Sѐ7Kd&1RX-k!MmciꓖHsq%>] Z|k/IJ瓟ҋUlקtkٶ^7d#(=2y}8y$ xCSKi)/ /[[ dCz_ЙӰWK9Ml6")X:Yi\+< ku׌IsJ|%h۔G_0Y@:=K2-5gR;eׁCp憯0GfB@|~C)d 9?kN3cܷ}6 vΊ=V(*-&HшGH"H{sVmYPKQ1+2kIFGY%(ڞ |h$Qo4D.'XCLȗPːĺH̎6ۿJqsKeûdb]p2v]YYh۬>6/P8_g+@j4A;[C$ d"K͗[# Z­_ݾ&+x0( V1wJfKo/&V9@2]e*vV>\GΒ'E*9qHo9/y]\DCtR54ɾhŴVq9hhI˨[Iγg^:&bfC'Ys5!&ϠH I3αW 1Ծ ~ԘW?HWH8mzˤAR@Ŷ)ǡ|qdK8$l`F[T~5b M2ct\a TBtJ4Ӵsq. wr'.cvixJji`*n.-kpxn /#nicg7f2^%ϼB?Gq2z]4̋(?ɄuxG6@+5}q;$t-p]5 +vΛ )щq<[7{0PʻAנȥ ;߯ucV10bgNİy+BaPw꽌os9sm KJB-1.M* EG̓/sSaliaվ[(~R!ɻ/8Fe,AHCB d w]*OE4w;}0{VXQ oXxAOys.% Ya\D]43Cq!jJk^ RȽ2Ԗj׀W7w ҿY#s q 3Z苜'Gvc²u"AwJ;ֳSٴ"iȕs:ԋg̋Ƴx~RcZKh r8PkјXןD] ڜ&\ ~sAH*ZY͹ Lq~݋`[/hT0}83y= 21v@#8$ "̚ԂD`9pB CÞG`@ٓ@X{aC L>{Zw罀H7kϓY|b 9CZrJͮpyco2$εܞQHO[>臂&@3L@NLs{ }]XaˁDŽjvz7]Fqb(l_ĩ>,abm&Xi탯 ײ*r|v⍚To$J4NGBv3Tje651g ~ ߬ϫ-s״6(yd J h3 9FbsIcl EW; >y8N2yT_ F`ȧt@O$#Sw+Q" !4_oZAB%[ &Ú%~]QgUP˙׭u@,$-*] IYvح%U+t%>zϳ.ڔ@97{/8F4R߼{@5gB[n)kg31+Tfmk75YE5X~9kgV-0sMS4ҺQ`D./6R[K'{%ưBE@ߠo\3~ M_Ecˮ 0~]"5c7bRUP?3px``@!+v3}ֵQ`ۈ]N[wm?_ӅoX1Ʀ %(7 Xe%6KsFR15?LhGG HikM^49r1#YuT.!99jCF`͍2 H/?M* ,4]$,^?ot,N! [&Wh qSVNk 7"(%HWo W\^ Tc0on٭6} &.YQK*_8I X5Ӹ2'sooG#Pcuu=a9l:\qHpWʄe 7e~Yvlgh6Xny03@+O}c~/{EQWi=.Z4gGqH>t!L 2ݴ.]ȪekaJ9i11rWDukZ|Dv1#pkz@ВJߪ)e e: 5JoԾ)OzͮV́I bV~tݚ$!0я`QDL)EDj:uZ^ZPK%Q1];TOLQˇ~##s1sqc&ik&+ ?B;` pb*6<ۥ(ˤjU՘^uNJ BD$2,)N#hЦ-iۀMA%LʻT*XkڼAT(+Ts-!s'}VKu,f@JZMnZOarN YYOv ,PzF[t{WE?i֮ol_ GZWEBvn{"":{!9Dtݸ(~ʡܸ-]X&1~'fHW\v/bOMo'BHa(f _BMEdEߔ_o3Bx hc~x6e90K-߼{ArWL(@49h a #@ƻ?F,.U/2*z !5<[׳Vӧy=49r~RpVǁV_FAʲ.X~,N_YL1;̮L ][K{&=m9K#kA0I=݊i}N8DŽ1d8Gɴ1;A(Χ}kkm-/d¶WfgH-zK%X;Z q+F&To.Ɯ8Vo~.`:jH")= FN{@阳*KF9̽l7#T xLms3 nC'jbfO\cgsqU6F@qt.RBa͞_]L¹6 K*38d@~OOzOihs\yҕ(U>tj>&dlA30} ;=Ih\BgK-T/J{&]MI\&GbME5mi_)p2cuQu:yS1~P=.t 'QS#>AM3j S"`A|ٖ"uY9sW{kIpsPK2 Y-V1qcvڤJchᄿl0H_Tq;ϭ{䨎@t1НD{y>q;xbE50-t8ja.d0ǧz;p@n\k-j!?iߒeqrX'U><8&U>MMl~I[I=(T/a5Ć_ỗ4qaր{--ESJ:Z ]rd QCL{z2I#ROwi,ꪇgkD`*]yB*^L  q$!1]ߛ,_]$%]ߋ>6̔)Gt=ʗΘ*/ң#(s/a2)G?>>k,h5tʄ#lh?N*6sL^u\VKP nѽ[׆WoO4P<ֻW{Y %t2x( )vÌhx{o1+Xgu ĕu%gd_[jB"s'Nk"UK 1(c:1jbMQve%Gu2\%+4){]/L`v5me8j]=tID1&џZ>,*(*ڝa?+qB,8B]{? rՐey:b3.XǮ5浠S[,R]1nf\u zrcSev aҖ) vO.@YH7/-t(4pG{32vzuQn[wJ<Υ;RLT}$M,& /o\֞&A`Iv9ab`ܑmNY~| (l*;6BbI-Ro b뙥z7-mSTAQ}(3Ӗ׺B_b/d .ğg_3:c$~fUUeZ$k4Pb}Jcc^ ݂-Oj*6DH"T"װ頸@MʭM^ !*WgH:  NOmV_|&(= ZwdAw?r>jj}CL ay(8Ki-h>&݊4-_%K9ѐ}4j ^MxLnp[sfT(xf*ܸn,]Hkt. =ZL,ښj)-;9o$Ǥ)υ(M+~,<9YrdQEZh]$v/ B⺈M={T<$BkɈH-exn7DNqyERhӯD2u N-g !TxH =΍N(CXD%'p!T [tSO [% ^1+ƥv]ukAU#J0Q 뙑ʏrcP>>n{{6r"c7*iX~wH~8C*RtlL u%RJ D;RՌmW[F` azthlc&AN&+ܤM|1"MN!Z0'/ l΃HڄTpWO GX<[T-cUo]7eyK jsLDk)hj+z(nlo|w?2X=6ߣ6Q.P!XߊsU$ d%α *+ wgĞMv: mC Os;.6"V0HIWb á0adR;fj& v O{y`+yfp+8!=ŒJrћ̛- ȱ7;w3p8J0K;PyCq7_q5y;j*A)y DoZ.K; InE7Tfv=htSbDgo08SSR|E4tnP")RVuӦLno71*-)I^<At@^jyR`U>49*'yBe2V&5ӥ=Mt˾ݜ 3l$`LUN)Ȧo;HO %Z4 U8Okqwa GUګE3t)8b0JΎȔ,Tc Er)J`Nr<[7/t#|5a $Eefo_ursSೝnQw'n6!Qd54I.b4OZN+0b4Fy0x$b) @=u% :۠wZa܈gE{Dv3fN5y @Yr sW@c Fܨf#3pbvq:Bir / EH3 P}5bmvn)hUυAjy]cr>=&-K9vv\Yл'pӤp(K&RsI+ƀe=!we|851¯MLn%M", bUi8Pt|+ʆu-z•0If$oog?,kFٟaJEmo{'f/lkHl? Z R0u]hu4΀Wl]9ꜷAz}쒭&skvߊqgTٰ.)mw]*ŏxu](SMpFIMP8FbzCYk1*67L-"݅R2&+S$!s=P9İ)BRW4 %> YxM(r{ڟ7 V+ =1*!2ڻe᜿)>=KV'J@w-lWKNQ蘰cVA6ٲ?J^QƠP ު~at3dD`Y_']q!7Bl7*Y_1tiZYDMBl [.ҋZ ?Xo^'=LDnhve"%㑏 UjN)w 3V>DH[iDˋm$s7s&w>Y.=Ovcb iV/,35fQFOK"&o19O,3 , 00"+2&=LfB^A:#73F6[0VF bCt䕕+kG- [jCaV쿫,aź@4`֊;NZ0raR)~SrⅪ P@#l*9P0oi=hYNu)L(\^T!9 %K.FCv^5M(FU.{ uP/Qk,K6.k&47 Dz=R'; rj.ذh^J 0aZ~*~OբDQ xQFãux†1Vwldv]zЋD5)Ғ͚\-P9oOQDg|ķGA;T02>/K$ˣ[ܠ`/iML"@ %|/Ck\#O oNIKV쩾Gv#`7$lq{|n@NJuɑ ]S\ün(Ng)2d;IJJԿT4XuΝs3=E`eF/8 A@Oz3+݉Ӎ?KP$ʪy#v^HxiI~ZN:xǾ.YSL XrYoo(T(bCb{+_N=sE0-v=!޲rqN3oO!Vhm=:F1+Q#mVɻ/xl<z:Hd2v9U7AHZMAj!Q'wY>SNslfZhkϢ8JO,nsVKkU0£%Y}]i2(bfOz BsafM@nGn R~֩$s~DKAk!T'6|YJ˺^}Tσ&q]O<@PVCeܞ4o X1JceOT7RHZ\ƚƨ9itܼ`,O%`ۺ7Pt%f}XpؙFEڡ&:pp=ąIhN׬_3ֶ0媠aɕɝ4JeIqp*%4> j)_IwMڒ@wo{5JnӒe-Og/8c5p0)X,*@"%t4 i>o║00b5< (IÖp hW2U9{ZR;|:|3jф!eٖ%u' ṟ ܧ(fTf08п>dM"38GnMBT=_Wx_}5}v과/pEczN`P^%4⠉Ȗ`&dկ&L*:˅I /ppVBG8miIl`6C0m=}FIf>^fdDy_r5WsOt {ilȱb… əf!o{P*v /vKiTSxiEަdk АtOOao+IY81v 6J[-wT<Ň`TsK\ Ʈ g>xvw*`B&ow[Һwڼ%{r+fmEYQQq &'a{zg+1~zaLʼngX'=:XO~k{7t2`JX8%~>K6EO]{&dV~Nɧ.̸ǤzNul|0IB-?*֎6-|hЈ6 hu>kVT#Cgr)*›@VǢgwQc5],ntϴ?u yC^S?e@3P-CT7]5V$a*}tK]5J^G%[GodG$WfOɸt%j0/W6J wbKYj'ۙM _H9kRisf#k І%&WpLɜop0Ԫ[7p58zyxl8!]`~[@C~uh7fxn:))-mbRC2r>ߢGQD/tx?w,'km *hP J qٻ߱&OyFҩ}{z}u&DFFN@AZ} 'U꿺0J%EFDJ8s)IZ): )J$rE˒3&WEG:Gi[ragN&bi|!5_؈.Mc,No>W:O `pS;(Q:JpCGDx;Nt(eekb-Q5mmq9"7T eG)SށguL1Z;jpA_+]iUrAx$E]hd{` bWȇPv!#Ǡr웨R~: %<3 Դn rF)EiӺ $<4vQegyd⓮ATn}s‘z>®dብl0N ֶf.5M {<́зh՘O/I  W )ld)ntHXeIHgvx(蟂L?7)]6RZ T[0 ,i@“'əS>fH:„h3XMZcث,D:~=okPoM[8ӈ/F..}(DZUum$ȎZ #.O܊4:vfThXw}e$ԠgۿbLWtVXzڌnO4Eb\sF% `XTOh{a,~SPƋEisb$yx뷿1bo_ĭ{52ji9RD\P%Lʥ+>=-7)+Y@-7xfrPS99*`Dl̾zt6Ý\#]zO jh*u augׯvJ FNkF&:qz܁O'{Tb\A7C-ŭ!@n:>uЊc3%`hv4cց+J : Qrװ^rgf9U$)zɨ7z.8pX Zq̀.R5'3.{?|A'\ug#:2 "g=#D=Z[aY >XOCUl,ILqq`8+ȻiS߀ᝥy8 2c2U!>-#*tz G dE\!FO 1,m]ΌUejfM HՔak9m:6z^7,U$בziA' 5"m/D.:f,i7̟OTD=t 9xR 1kB6}V] vi-CXڿr1fD=_-v^#YGOI$+h>E$X{#|U?ۚb꘻=v8)+|wkC<ʅr?,g?a]TĖp! H<%Wfaq#̀4kYTARcb''m 9Nl_T{E >ڪnd[} K%WZжŢk"dWFS֗KǷ tFlSիy抺R}bBN*#Z6N|B6~fq'ߢa242N9 > ;|L&=|sS+8[\Y*{\شHL}7ƎSXDدp>iCD *#lB| k oɴ/T2ŰxjP`dC !zل6fe'?)@`3Bv ^c,(=Ff͖ژ\7GGk.p{00{1IX !j7fyKf hw6wjRy!u4Ӹiг?qtk}3J}sL8TԔ#C%3_D),emE=Ápmlu*)φ٥I2;q`2ApuE< naF4c(LGO"ZspVޫ8).:QߞI^L#Bf(dQ#.uZQq+w H/]l>NPRB[Em4e &-װ9N'IRg% ~P{ MJ&҄ML9})f\}0z;;I&ď>VW1m޼$8=ހ0OS~ƍ$c:S$,bdcr`6*1]N8]W\,.~ LMNGVoaR*t@)~'Rur1nƦV:mQs~+D]YG<@1'%}Wuaj kT{gתD{XcțYZ'z?][fuRbtDt\65X, PɎ J_(d;)o7=;TeVBhY scy!cw+ʺ $/Hk y WgA}a.a !Md)*bu8#"yE|:eqWI7˲Ah[[1ݝ{XƆr ab5@䍳S_ܛn~xgebk%YowI8lH0-uZ qJ0ܻrWFôn>G 9XJ)b$g'bg]WuSfܵPʅ% պj Uүld.ʋ\7U# "}XIx迠jWb%‰Х1I[[6%Og6.: }bǪTTef3!-$&偧A=vvs@Krmɞ\vQ ƎӮ^ߎ6T,k`8fޘZie -= adY~ 2sbi%͘|0/.vFמk>K7J5ǞtF&:vh#p]>;J>d3 $WQЧJr[~-!x<=`ܽ["fϤ:+K{aY^%X١8Iۯ!MdMNp  o/w0bJ6v]EcTQ=|fb_DK7Hf\#㺥V8c= %.ONu7-rSURc-:ܜEOFLNm$uphcHj=1[K"}Ogq'6^4|. &՟'G|cN P@TTa" $ie @kAXt|$@NiaG٤aӮHvv|KD0ք J`Fִz#*ĵRVT)$n/'5qZ87 iN5asl/i7Cjzq T 2FbtFONwsYE#R=bSf{!ORpLҞA4"\6ž/j/>/=В\8;u¼kY;M'g%\گ9 zBd)(D2][@3cdΰ&I+ #jVe&lZS0U*_/Hxr/vwּ'(/j8S :p6I>b g-oNKs(]N?H0{QX9Ls7.eY xxUj~[Z0\Mu'q=R~oƂNLZLt)l:Jr‡> rihR,V?$aW&ʠ G*W@{]6"jz8: P5&sQX_o>D>-،r[^LO᝹0XӠ?WE}oE P,)\IQXG=2 K*еATёxt9B ? gfLY1I0mG_+ )d*ءWՈv'Yӥ MrtuX!08J$)r^&wSJ4 BR %5G4Zx~:D̢tٍN'cc=$˓< 9vz40/im0E(+jD{ S)U3CRv½vuC.\j=E P&{زֈ?TDZA_[LwrTG334l" gt ߲@1R?t^=UWZj)ZTveydI*ڦPc#Hk0HXv'cſf }͑1Ă7{l4ۄx$#~Z}5rѣa^Se`*aú)OTR=\-|5}Xh_2Z@9D!SvRHTgJY@r`='_J7Z|ֲR=[[Ns<qxz[0jk`x DD[X4 O4/[j/gJ'E*+ڷK[~eU?iǨKO\wFu{qaߥu<3ڪ&B`bPKhe~(j7l$G3/ 8pYY!.SՄe3wG)?OPaLTd=si|8G-]|L5,Cϟ1M|TmM L*hǢji o0!CDK{+/rɳ :F5v l 0𮡙/ dꯛ$pD_\DJb0j┳ fPغ&c,Q\Nv<(Y+ KRYpz~駛?QIdea^E|,cL}"JIK%OP4qgJus<bN%z EK*3U: ''HR|*N H >m@WI l5,"4A>A6(bI*W)ȉ){ӣAm8{2aS)^2v'1ÉK+ӶD+h╨[8XF.43R=?rI.j$ujPQww7Y5}K64XBҏ`[]x=K߇(@~ɀ/}e,sלMA(}N]XCۭ?j) >$5W0 r/:"HS ۰wZ`̹W`G-#B~,ٕ\7}Ĕ#)u Z)Q}3měګiΩL/dZ+mC\Rbb,\!3+@85dmvos:+KLѐ}VXImXJ¤ <guMT8-ol8{]ވ`_?qޚX;,OtX>/CQ`?;NUϾe{$t.j4gO ,tzg&u}nT]ŴOy+R"a b"oC=E0U~×7.K%sb_;#55`Vstcdsb͏$KI^Op$X"Ql EX'})i~"iRdD @*yM3 mtd]4#Fhr+{"8aX컺*b)]G¾зyKnsUECe&4dF,ϭaiHlL97PWuYʞ }-8|ZͤاeHN۫q}4n+>IŌSurwﯼS|)ieW]6KV{ j3xu-8qo{W34 zlgGPeME`9;HlrwWǪ~h5 `sy'VmշWWM:s"}^z (4Wnhqi wޟT*^88ٳG.UЄA}ݑV)GMf ZeiJ=\RD(O'~ИgTvjf-}F`X?I~2hkM0 qh긤$$8`姓nsK.1=dK5lr¯k]@Ǩ@g_K2̟p ܀@)DbWc3&ywJ,=qrZDo{yⰬb)[cqnyWv{7XS2NO_' ye&1FGmh@j-D]iݖ9;oA(oSmYͪY-V1嗁g[u"O24q#Gbe3ӎ& %8hMh( /zㄹâ/+=j0+Y!Ou1.1@G:ޜem Ǩ2g/Q3JnhoܻZ_B۹- 9;} /{y+a$H??^jw~~,pC%-w&8]nʏvP7\/hܞUiRF~&"qQ*["):ʤOd>ދO he/RDrĚ:<%uYxXw)[BaT܃A9@lSAɭk0D; /TOsdžO[cZg?SNd;bXBMV݉q$d晞`=ȑTa (C :@4VPl zQ(PJn͏k?mS"a` q 2`R$l6~;sxk8Q,x`x$璎d"RMa 1du2~K# 47y]{Ռ^턕röqGbZ~Y޷&saE?_Q q(g:޻qhdޕ|eS$~ +H[ԪWlPb-3G((NQ8=DRm93ͷ\ۻ"d r݋_}LQq O}Q]';5rjH*I)cw^b36"tl] ,m}5 j6Gg#,ըTl]u(FZ+ܡ̘uz!>ȱ«KYt}ʍ#b~gs@ժYm_Qe Gq MG/h&G( d9˼Hb޲mrbjx9҅,C-˳޸/ q/ WnS qf5~((i{ ,:6DǏ2寍p+x+si~?@~H$ lkcNX {8C_V.| jn6,΄y baB'b甭;K25d 8z¼8C>Z`ZXr 8/)3#*k?;H(I&xv{$cE(8@2 Y9eŇ C&XiPTRO.ż5(h]Samj%GlHzJ[P zȠLxRh`ܖz cUh~SFϘ^.]Vpmu~G ~Ֆ$rG$iF>/q B5'oySnV[rF-pYe !ҟd > U e;:~%D٣ 4_uAtdrQF*;򍩳<y>@7EշʕIzIL?[1DŽQ}H˶2=kJE@B/+$?HLvm(lJ$b(h߾@7JU2>xa^@ lč]ȯw~Wkq@{2gw!fj6 }䭱C(0CVChungd̜ -kԤ 7F>&֙Uig9yD35dcuf!me'&h:[U0~ K| wwҧ~7@ _'OF8ەa)bRe#O,_Pim qt\P[SgI9sL 't9H(V^.#4t1t) yc#r;XL g>D< h08U8冐f>8`[h5d0+E µ&) T6nid:_ϖCQHMM%O 3_Y [>k#@s2hΥlQ}+|]VYQ8A)oaSYo~ 7 )$gJB,z_>MwyHUߣ| 7ä&!8QQ3йv[CЌtʼn6Gh>xњ^Οj3ʨ̠*iKW-C͈ܰ7zCZ|KHuV0`Snŕd֊݀;^Wu8 ci3y)]H܋uc9ވ7+3磚L"@bٖI,J5r#h8JL0g"BjojU(ɱp$(镴ׄfFI.&$mmKAa֘MC"xu~i3"IymxR^h4) RARH.<vo!pońv[MS2-.xΆ}^K8*0SAK,1iK,c!/&^#%-{5 p}fQZ'߽Jn> ?[\ Xw&>Zf7|-uWdGѥa0W2Y̑3/^}MyuB}q ,`FPKtg|Ih O.7b!6/5Mtղf 3ZT)-&> ʠ=oVNR3'<2wŶ2|91f9*ybgrT3s+;P "8zSȐr{WkV6,yH'FCnT <"2˟dTL8ZyO0H0q1+vFi^J%~W~XUF5lx@`)y>fo#b1WkTwn9H4qQ2~C :uәnr1 I%u4N_-GU*QB @aIU6*Jp ZƃղK:~P8N鼡/\mKf>lu wbh]N IEjeQUNhQsſXQ"dEw_u5q:,qŦN'&^yFUr7hTtUpx<7SѶ2u"3@XbL;NU\){,{3E Y(bM$8?z.G`.*36̓ƀlrD7 Cuod6ޅFJ-fBZViJLDeVZ+&$3>;J[a,0z* u)Sm3`ҝZ,R4guE=[ `#YBb3L׵CW$TSL)YS]>Y-ʻӤ0v}P \K9]qM!d#_n;u.OMODUlU&k>Y${>nH hW>I]Ӄke`ғ\ZqHZMFzX0 InҔg"ql F,{lk$bQiWs JGט{19u:˚)Pr/F>:j'*&,]cb diT 9J`>9Q(͘)*RŪ`n^E sT%8cFhtm M%tݱ:1 .< 5v1itxVqih'JʥY7 *in?΀T_[`˞Sl%APݨ%_8*}wPe`AXs0<ǗS[vvrqOD&N/MkIS;l`{sF DcK_mQ =J1KuICȒѬnq7:k_H2֫L]25;a_!XCV&F9ToG7L \|˥\ϭW2!Gwpxu- )55ޫu+obSg }rJolEύЄ @'D/lLnUs[*dd{_xm9dSLWn2By MP{{&[ܿ4멐z,%o]GlڥmZEe3%82לs3dZr4`kĮ] | 71P5ݴS,wTܚy$к m 0}0}/R'}mַ+?!(D-V^}|LaF`fe Fhb}vxȇ灯\S9խyC|I,ޑuy#us*832)Epb2;Tu<30H42yߴbfnUdͤKˮѠK%⛇$Q^;|x SpZHyB]@kYC;զ&Kf\eRdGt§?t3 rk wnoګHfyn,%l<<` 2@lG̯U7ȁc .o5kmKu^j )" fu6ACd^ۼ D plFK,s땏*{y]Ɏ,Ya(JQq8FPWLV}bNS29ʂAVZ_ <Is~['Ԛshm[/仛[IF>Jō~A}>#ΓBn눇Q>qmd^׉j tLKҠ(a5C";BJil^7}S6g$ulǕ",_mb44X =Xr0ƓWf9BV܌ nNkB.߉L9SaZNzYk剫K>2 i,|K95n"]o3Ed9TA@Q⡇9bb8YxSL!3`<\e$\xSשe)o+H;CakX#RWA?nJoIiƈy(!*gS[9"f?3ڧX=1 sH|'KVk.1F2 GmECEw%@*pΎB# $yt&+5R*Q=_v  t֣ DF1"O)2v{aΞ8X 7n7@DA}K 42czeB(Ʊh=Bx}a3&M&1 -?ӷQ|AgU8E\wm}WEcBY{c$STur0 'GöTE q^ߟnqh}*Bgb-A63qߙc$3 __̡j,MifC4DJc@*>#1PY?w둲ʾ̗ҷڈ`HQrƤC9 26 !!D4OaB#wzYuN B8 ^G0HK)^+4BVΞA#,yɜY=&Tr%̦d|M~-8Q_!VC:nM@չ {TB.JyAZr{#"9]-$8;E.ܡ?Zuۯڜ$Iy75r%PrGi]QH#(`W?w+e' L|c{2xF2|]%[>`Tu1"Fp{ws>P$xIG]"]h6gt)LsgceMa{ *)@Ҷ6w (*8>Jp_r+w%#05Y Xxwk{qs&V;TӳQj`Ѩ?HPmN[*CRvY Y3R}N\x3/Hy'278{,Ihfċ\ɀN]mQF}x^gfl9kGR;׼%5HD6Dْw DVYURᠭojY8b[Jϕ̮@*Q^^fA/Ts&E9{TA$)){52/!31F'R)zc4Jh5U .Ug?@D@lTV>2S73'iy菏~X'Ox"(2\nOah6뀪< Ҋo=JsΥ %yKsw13nbriNu< Si9 #ZIgwGV-pFht@ՎŽo\THƉΪ#b=eǓ=!q]Q.u4=\kv2|Be,5Hٝ,] lk-NvV>=H^%7'"[s|[yUWmn|3p=x貶?=|] ğJM=Xv{ɤY66mj, F!j-l+SF$ a7whce{|%m:dVOQ L'L O@S^1 õ Fگ <?-g+v&@dm =t鴤W^aT;>lXd Z}xX@o!NK2]wE+Ÿf`1{ȝ1GH}-h%qŇ}CT }; TJ#CNb|&[=hzKKcv؂H oR.1*ЋGl4q ++ѯv!R9 — GM] ?=S08Mǜ0!xwZIuekE HH4ṉx+wJ402@2X IH–+!9wc'Gn :mڼGNmѷdZ)@7hF\D1LN:o%XU\Dz^/g!:qN\t:i?"b}<:$psX>t$όQʐxbkp5xĎ$qrǦ 1"qK甗pzT7K❺,,ÖJu%?Әz}xP4QxV6PmQ݀ Yg f_r>֡d[1RxrTT lG:.&N O &Fv 7`/i\`Rw s0Qe?X*iq鐐|U  J|%M oGP\PNU(7q^WHUsf;S)'Mv˲9bɔFUA܇w%Gh@ nФZ \VMq,ŒlX/ -Lz*r?%w2k^qc;?ʞ(OMM0}[]Shr@>2Y>|}>pL 7[s}BbxIV5MMċ3_Ynp6%*tM@yZ84$7)ǩ//:F* !OEf ]맰}4+b^yPd#5LALZ ebSL~]岩b~IHlkq.>5bDIVR4gz3W7UBug Jo#1W튷̀=?JD]mzk߱]+$e̞%y^V7OG:}Ha,5So3Y2\fYXWq2(Z# S|7Oq^<1Ep|B$\ک}dl$"g۲܆k Su +{mՂIΜt'+JZ"&b?LmZB/FFwZmB{scL:r*dq^%`N*+Vly9W\F/OȪK4Pj(G $IUģ.b) Js4ݗf4tاS툲uvR˲h 80(1%2:G{Rb! qj@!Cen*'+W H3C53$F"=^H4!QˮmvyJK.N H cPn׈)5ejPDzuAVv0T1Sӕ7x^8Ms8K΢$*njfAK3]]dB\*:&q.Ќ[sWք|faGBscEr/>dqAƬy$.9R@AxĒ|D8l4vkvFNJCD"h.H^U).KT`-~c N'?{g}2v(:;ӡQwXQT.upjE-۾h q<v\$ڙqn %f=L3un}R 9B"uc'48=֣Sع64y(K2^F$Q&=,w=.AS,M nݴdX" i ^σN?'L6Lʪc\[> +ж:KN> A  hկVDb[PUJm>FJ/A5k3)j HI!%q7F$܊LC_] Hȝj$ G®^g$~RhbQ[ :xtEkKiͿVW]/ mX[D{:&ᆂM 7{ <;잫M.+7co6:IJFզ Tms&_RLJj1zN}ݛj ǣ܆B4VD#H |PB 2L#IRvއ~0 P'`PMֻ3OmVP%<<&-m9\?V1ۂJ#K]R%C27W|,FFhQ&XBCA5 :]+pZht|ù9 "ݩCNeĴ܁_3@.\uI@Zyb&E*kI ô0DWD# =P]A͛%1H@t´,F^Qk'JT3ͩ#YE2|#5fmeʣXH{'RBVi6^Ni1r>vʞzرyʷaFx_8 q`" KPFNGUw ca؞C\ܝv߸ ?M_)j[a(0R|y°nAw/ٹ>i+^GѱǣoW .1b2~]+RHh80yՒd !5B_ rpmʭi7RBhGl btt`ӷ(߁%rgĸ1ǞDRTK-50eaZy:L'WgdM3Z5lћ!w`%qHԜ4$4E: xY@#hj&^4%wwVin[upVҬ ^hœ;o/[}BDZQȪΥ˄&k"N(D4A>ȝ&tȠzD5 ہkVh9:0 z:âMl:Zwjn!6@pz')^+j>+bġĮ AH,V@:Ճi _9?i7B oaYO'n>NÙ`}Y4oNi_)KZ? |eg  0peeII}s9ɿXd{'{,,oJJF,?Z1N4.DLBtIk9Iz<JkH; JF\(V! U8HŒ=(e7(;Ig6D;c1B ]ӿ(e*ب5]7p/7 j%QtB$㏉>@x{erwT4 ? S`n|vEjUtGv)n)Y,  ZrqsfZiWý\>ΰ%7ވݟπO*H3g/,>Ї&"4ЁٓFu}a$UAzp"reʧAgŠS{/us\/`&MrBy.I#1Gd3 #U 6q^"=) )(0Ԅ,3@#AuƚDrf ,M\~xhs*C'2ۇe}#9[as/9ciQ |O(-Y CAR8C,΄"V);x+qb>'f{i+:VH}ckrмkأm.zZGI;1켅 noC7kt]PI+ Cמ@:\#<>y``4dcLg2 [솓KoVAפڊ h9G+4<U-Mv YUH~? :9݀tF9Y7Nu9 Z=-tw1]DQyE} f%UrO#an{ѱ7UkWE"eNy/9ǕSJ}K&/'AL*O!5\XGqCy[$39CTgL,_oFtȁEӨ 8D&Gc [ ƄFF5 k6! r7d`.H.Т[kg\z'PR|>41ubQc&mIW9 F=|X[G3'4W:4DŹo _ @R8)k ?!@}y1x^i#ڄZef׿{sF7wQl0$q{Sܾ/v'`gU QR6.:SG-7nVɺ!ߏ˷W1ʡnHx*9@Bd5r.V:2*R#B [i|9_g'oF ݪj! _;v,hǐPmumKƽjGYj'.ykt:q5ʬW6,![ʪQD/kYPr/)>M.Gp ü۽(B6GSiCQ={zFHn6X+L*F g)sLjD4A :T$8vJ]- |M{ 7[rFHl31Kƙlՠ$w#$;tWjV 8L`ieY6 UqY,N)ާ^|Fݙ:_Q'A+CMTqPmOO[[ȥOBQku9YOJ:xbf[]Hf7gab@9 ?:>,Hya݅(d 'zE\q,=%t_`+e Ml{z.n(?c0s 7bX,/┟BE qu~^qhխ/5].V4~& ӨF7v{s߹\vt?I{=ߓD2:,xFMz~ƫNk "3v\s{dxw#-1:wiۓФfsn){6̚b:!AĤn/u"nw`M=+o@&3,lᯟFp~Cú_|9r3f&qy[]cDX=_NN%?H68$$? -rMh ŚLLiT^iaH#HYK <%ne1B}"L{>蹹>ȯFFG0@AdWWc}*&Zk u|cXX0xtc%ODIc1߲ m:Pm!wސm*ҥA8(43uU,$0񽣆ya[[y mi]1_ٹڄLM ;BgV` R)^(+v[KI/`iZLjcP҃n$E 7iO<C^Ctv 24oXxiJ-FvWFXF4J;s+FUz|-Nd>mJ^mS20#J 4_]rI cn{n{Ƞ:p%:Y2O$] )y=!qBVB'6jd ^BEdaҟǕ)Pd4?00FL=tbVO[y(whI]}˫ hNv&L#-vY:w!Fz{+_oL PQSzU6Ɇ[sŇd0W$zfjQ9s3jBx{Z@^"Yi+SP2QcrK.~#ђ}>eg.$暜f*ҫxZ* %IA8Fe-T@^'Z$<,Gϯ1?N}'JL:&o:x\GfT7_DK*plX*G 9%zd:զ5%j}knX&Y1vI'бm}<@sOd B\NK!ln`4V@=3tkSJMyEiW < ͧj!&_BPoY7J&*B}I$yz{$)RGLx_,$ GƆł~/h@u>{WTh}Q)Y?Nܸl1@zm>c`t3+6{:-%JW`)h\4InlOLNc8a  KhͫЇ{$I Dw<+9|O]:b` 69Ǎ؋8ypM;EďgO-Gy s3{BFT!i?V9/}5'?lf"0We-aooq 6cȆ-q-D9L0@0& X?)h:(e O-VGBȪp8UyM}|OKP3ծH4k.<0=AL4wPZU{l5nA.~ەfH+?ҚQ *8MH",UKfS2Cfb@%Kr/c517'eg_e xWWdu&̠eZݯ9mZ?BuC}֟6_?d#]#j(Y}*chw)XaPԠGkp5:@Cg%r mn}}hךw{6,pR e? ˏ^MjQl][R{HLZR6}Bɣ"0=wtRoCk+zSy X)of!s3]ז!6_[Ru퓽fMf+]@BguDh{ cLcyړP#mca3 7`2`ߠ8*ԁo0¹§O?$ ~9ᦽ,z;ϯ ؆ߤ;>XBBiE5g C5ʮh}'u/J\R럋#K;aR/cGK826 3ZsA!gƦ;Y] ufk(cjÚHn\\cKsV[sƹJ36;/LBƘ1ÚV|ئKԱc3gL?Kk<.1 )<-/k 1I[7 _(D|ç/C *ER*+Pk,Xib(K!?W`VEoɂHؘ!)68=}%D3A5U0Tz.pꀵ7",/V삝ubH7(50,ɽ[ŕ.P!Iwic.c{f, AjsR Y/O/&Q;Px  /g|jY(SEĎsguƌV`P$^"n˚ V.vQvIA ٪57.IQngη<.0Ws"S”vxE,Pa[$pr#Wݸ̟{WRʾnsdXzPP^dx>^J%W*2#{փXh}VkFʛ*r:SBWI8;vdS>+¥jq|PbG'iPɭG \HXpDU-g{/+Yl,ZV(;:_JIth(>8D ,m #mQoW0ngUo(ȟU|65 dayb-=5\J[vlx}iʗRؔ8)ì^mԿ*P(Dkh{(2.,0ؘ6t(BbI1ZG|^Z꣹ s&zvb/cA 5x#Hȑ9TEiNwzKBv u>BXDzI$✨% >\c@^˯C0gd+V5>?uV&h8=4N9#P:ۚnTȩ1\.y6EҖy)ijƂ Rv̍AᏔR~̍E`jkt1|$xDE`']٥\Wϛ5]lӒMUc Jj d0%1^k+'eK>}A0 ueg^ꕠkH!vp8$R lh c?|Tդ$L=-(ձsVTR{p)uY7s oT! y`LB0F^! NASa)8sk |?uk\ jEo 9R}PۖԾ!x,YUh杁;Qe"mr^`my(MY Ժ8 $݅E$D=(gA]j,X9j2g5jUc9ZtpD(r4)_#fվ@[̛B_tۊ"U Qf~ČP ?xW8nGjj#;a`KQ:ۧ){^iHh'بr !] qe`@C({_T[L赓ko!edu%4ȒgX>4M}(?)M~4A??ne>·Kz5ўW#Nͅ 5ذ¶-p+apEȳćb-+N&OmǕCutYСd O< =6T#ܥ磯@><Nü7 Wa8(,HS*tY4Xipk -0g+MMvʋq˟ <1 +*c. LvBg_Q߅]Lc$,Ҝ&_Q-InycsJΨ2xY07 "L k.*{񘣈lBhj^.3 &Oɰ1TɈ#e~ECbs1E_g=c>sVDAb2OZLJL.Wv 4:hv{k^8eakpJhOYJ|/q5:aR2Ċ3gSqUbS$#[h$IIs&Be[F$9iajhEỺ+|0gq͐AKnZ\RkH+'ɶ =aYp{x2J('f|Ѿ|L%W̶ɡ PC(ܮ {Zmoˤ٘@pl"eݢ>/;yU4&ywb8o\Fqm ^iϫx 7(xR\PccD ޲;KG.:9pg,|brˏkV~Ц&4R9D? %ka(Es QԮ:eGD9`IZobw-geG|9:ʝ]`*]E\bZǻh: -\H:usg̜p%.+ۭYgAxV4|҉ˋKƙbfbb(FVʕT|9d]5Wsx*$8;`hėc87g.g%{҇zT hKkC ɉMl1p A)$ p϶;+I?kI#ӥG+(1ɪ d=d1!*WU˂s=Y ̱"Zsװޱ;j|#\cdG br 7I:k#V"(>U}'Kؘһ< gT)ϣ@@Q79evBv Nf7\?b0>exxn .eIÏ7& 3oɭ#b՚waTlKBe&\ 186bùnl¸ \8FaDoSŸ+[S%iy:o^@w6<7 q_bR]󅍵+3e)b#k$vLLsFf[Q ec}\D} w-Q BwP=DD`6k.ɜ$6OB65 z X+nWX,i6Io$O=PߙȐCTκ9U`oɝUɾsRyOx%^h8'cH%TIj~O^Ə3!ݪ6 =8N4}W8wEmYfdDR{=F Y%ݫ>Iq,?.*-kc҇a5>3t >5b_j<+%IbaR1Q[kGfQzd; #e=sGd腓 mB#g);})힌ДO!6Q#/Ҍ'Ȫ P)::DqV֌Ol5}o:WO q"πz-+Cq8 +]ihj$gRőL0̍wtDU&{Kraki/d pwX&9}v ,cLъIKPLccH*HTR9-ݢ/RɿۥCiFڊPBAnxGfnPpKncHzVaq~& baq 8\}-M6{ce~0}|*Iߧ{U:oHןytť3'8JAtˮ[ R4_;'S,a0>}'DRT$mhs:? Ի6'FP;;C4? =(|qA_u-=#PH eB.8\Cv`5edFJm'g߹ '7tV qA(b,@,^:fb)᱒|$ޢ_-TߪT*ք [mm瑇 t6sGO9 92좪e K)95iS9ωwm}صO\3X8], ~N"s5^Mzń@PT! Jn=r9n!qT4z`&vy3|悗*RiIљ44~gPwjCbDưEDZS"w :DjAG"Ұ»';sc=옱4tV{S*wREq+l@Kt;`QFboM8t$sG1чDx a]U+vȸZE xV=⯗Jo ZoSEs+uf{ՠtތtv|( pzz6bW! sסHnS~Mk2fwĨ 2wq&Oڙ81\&:d^wiqF/@ۑuwrdݣQU ܼoivo5sudp5FZ6G[={SEI8^w I9{to)30҆z*s=WLkTr]13uMk4-௻/}nYєNBe8cFww~]Dx+U<aĚP9h5oʒ4h'SL PU't# Sc fsH7!k{%W,:pT!$OA:ca  !i;v$))(u8Sʄ>rn3&/^p(ɧvmV'}s++RXkz`Q: {dkBB3ԸvG<6~ihe$o5-rOw}+j`dLrŎ*2ȉCFx}G,g]šFeGJ|3q!C/tXPpv -jPk&oW($n?qE9R}[,m`WCQ#;DݏGy?ԋP|TO%dO#! ɇ'aBV ӘqQjm-zx~ڽ#: 'ѰuZCku8/0SA6-oכ͛;<~"RvNc֠5Ë.4?-K`V" Qxpaj.gC IZ;JL}<䎆HG ) iQo25}KA\d.eo[dj.w& 0;3qsge|&Xcwv{d-4,0"n,E?ѫY>>,.gLZTS شklk6=t𮒫@!ВL#Eܖb wZ52sBK<T)ŌP$FW:yéU C;T36<<փKѹ9b1yVC J xk]<“mGb+MVtъ@~5٣GT:[7NB{Ԏ§ڑ=х"7Qrʯ辶h7|G&=m;X:'_ٴWbLL%M 0Cao7--0iIRyvrM[D bÈ܂%^z{#˶@uAI׿pLG.MQFQ,d/t?6[Ucr¸c8 Е # SzՙW^mL-Il2hgasN!u˕鋉A7D'tcޟ'OhI2{-|X@:9n;]TCPJTOvfHeQZc*%wi^c%;q["TQ:v?hm1{6?=S:jJ/żk{eg6fhJشfhk#ӹ'bEa)yٵf;g#L~O/f-dOf]Ί0Au@sJ&&Z!I ;0U.ƠaoIp:zUaHeV1#zqQ "Lpt!SI!s4Jig ; Όc.-[A\!C]rGc.(0vh~ӣk1ď7Z4m'" {vkjJˮaY=ZPb9+NN{1bN3ӡ=-vv|'~[Ta/YsV5oHBR45l;;J0.ө{;+>a)R$0;~lť@ylZ ZJ|d•8rK0F\F-c= =r s7U>1a7lZ]:I G<_K*7@omqh&#_~I}ttzL)wI*:8(6_*uNӷᵨdEpzwfDPHuq7Zcl 0 oܛ/_N* AWO`?8ЮѶi0ZM:hJX`{wU7P?Q{ ) R %~85#_W>k%.\D"5Kb\V Q =m([qZ&) h$]y1s#OT??Ytbw=seN5 HW'NB/ weИ u[JsR<05CȖwJihH;Eݛri@> KX;/(sHt] iAw-:ch20q:wƑ#oњ\#,/& ?vl+$(`YzVqR̕|5#sm%~6cMuS8:&yOAb 1L֖426^~S)P 2\s\jj$ҘGS$+ȧ$I )\iy(hr XK4 LjD:w?Eǥ{qPK.\U+ݨua&?ԥ$+; q:MLy;Ɠ$wXbeG11P=?s&j0Q@YHcXSDn1ﳀ$[ޢNVɍ*Dv"6ET(gGNM[%VN\jKOMFksD3B[(MH/ϺKk1ljc'{{ sK"r:.\FP\Et ugDjX0\:aT¸P1>|qu8 O3[4,( gCSӼe nX !zyp_~Uɞ9F9u`_`fhrI g,I{,s 'vôX#ľ޺ AyKgl $w5\G<5oyvyΐ=Acvgzs ';BusqѲlS nw*Wo%@@&G~8O YO/ +Q,;Ť&#nAKrhSUs| vR┛tԕᥡ)'q:h7⤉l"xMT<&7;1b[j&P͗k~P zw JJ2%Wb]铸ೱ0ToHj`d1 ݤ8'7HǬ#ө~ZbR hF@$ٵq#.iVRarP+ s1ӓ6{#$[SU|B^aS+,[nЛF KߛI0ސaIb|;ۧ)gA?J>/-{v4dc[Vlbǀ ڐ6 yuOdb4h2ݺ+-0ˎ:Pwlr|00 A@M3I[m[hu=bt&@);h)gS>_H=K@p'/xMms[~wx8ʡ8TTH_$˘DH "f 'V$$73G"*wgtrYWb4;߷-3CJ((Z ?5]̙ fWRPq)pc k m>rC3,,^G0_E6R6/gw +'#!J?`DM7AWXN1&6Q!.(4Cx+TfV=.3ldh2\,Ċ+7[~RqTM"!䅫őCl2]7T.v}шÄfZ,+vj|4܏؜k.?M38OoDٔ?Ҏۥժo4Wv0ltsRI$s}79XGhqn~;1C }79 >] (fFxϬZa]D"~-"Ot \#[) {'V5+讣|⋊}'Y? zsbǞu\{l7W5j ~Xt/'\>Ws,fII.5L5c)'}@4(adz!<D5vu%SSo(ܙ\$qc;YrMv+4FL7puq_8T=$ ڡR%ߑrQ iA\P6CBf,/xXcY kpʇq)KEF`/AE{p5c:#<~ =t#m֑ϭ3> 8Z]dj?j L&ϓⱍ3"9R sl Av❱JQ:Hw<%#o3zjL#ē9 'v`_^(УاbԤtm gG7G s_,-{Y#w>lo%wlMd;}1ez`L|%k.*RӸUn5 B!<+X_!/}%^j_ `[^WgYI;g^u5MkLv(#8/e;sN )`p$ݲ%m%ȐW@?uO4-&R- iYq9(l?@K6>H©5TeI9ZFsf2JL#4#m+!c1ң]ƒ@HzΝ;C] BG{J(f:>X\eҶppfwxkDKJ} y ^, iaö^`U vȎ0ϢTz?YX4l ִo$c6>- *}3g>|O*+ L:e?fTpW>6_tbp[57|U?m=po4@uR^-iN"4Bz7YBޮ-kM[Ugj.;7P?M@H+p9IB :|O9 :FڃͅLțF A;y-0CwO.I ?" yP7:q)0v@2ҿh횠y%Mo4Y~x@\Y=Ek 0Y;SV{UsIw]U31A+QA stf%K3~[y;.NB+{%? lg@hxh7h>&85NGˬ魭=LuʪaސEj5aaќ!~%m?.{s\Fv+ q_Ona-`)fت g9"㯶z0*-=;.2)h -+lAIR5s)<vGw;%ιuoU&[)ȺLO~C=ԅ ="8@@3ǞıuQ1b5sa9 s9Y<9=ك1<(Βm" [!4#9 rh/߶x\II)"lsN:$@DN!xx*g鰆SL$,=nsW\oI[;<+`,." p`HXEjuz>U,+PޞK e⥃)"[{WV߫W!lq4o#gJ9.+tڰ&vxH/w#?.rdk-YDS3H& /=!O朘k%ONq/{XuG->.FJe:ƺ r^U((/vzQE+vi h gjo== #&{P;xq#V =y=X 5 QKFtmgw & THe_OxVFj>]ݜF &sR j$ V(֏?fWi]h W ;?Re(:@UokH9zP>="X;/u`_/W*$02Tr^xj Y bb豉-^ |)xNp="V|xI4f|bimÞ>S=|\>{;y.HxLҲdIЇa*AY̳+Jބ (3 G*ryA^Y b!HC B Jn#{H秩bhu6 I3"jn,䣰=dc<+/a | k؍>/^Ks7[46% % ~t?iZkq?oPvUeT݇9 R8CH9a#s< rYM*>qMh ę gI^nU!6 V0b L*{$X5MReޒS gE"#h<Ì[خ)s;L 3uLm3"JD'}XHVV2tLX4%D%{\ıUf2T"A*e",-@9Zf׭oJ6+7FXN*ob>#jp%ۺdu0)AȆT5$]c.p@'ȢfްC2c%qȳ2Ժ+HI EG<•\Nr0=(Ǵ"!6M#~|YYAAer'rxqkCA!~mjN},r|sQǍ1) ~UͥA|a/|1)ָ<'Lcd.|k880ǞlLkPlR0!kJhaujM0RItjǷ9ʝސa, b}ynL W] iXK,B:yR2|UGGTju@7/84m\Bs-g9% &J.[ޭqFexɍPSi3>U5>5907[q?"( 56ĺlGϩ-5-zBߞ($>3giL\71-W{_GQ:Y$S_%3D,72yޥ[UbP 3vgV)*I) ;urczS:pwQDe渐s[ r_S Zr֟!9aZJ6`X%i PvD Kyʠ %JbdB$e38 +0Q[Umʩr.irw ]:]$)* *_)SV3Idj 3j/O@qyV_>PUug.*˽GrŠJΦ2 ehzd{YoFCIwsrܦLl kseN;|l]yO%G/G|G̘MJ8 нw_JEa M\W= Y.h=$6J\VY7~%lIM}N#|#MvpFXɉlbXW39N}¯eq@t-zETw|&QR3P8ZzBay[Osm)n3{;{Bg vå ~*!WT**JB} d-⿲<)_&hn`bzCVfe("a 2.VDP~g+; wJU}GPv0,Ԣk -H=wnkg:`ݼTv0&:vf65S$]1%Cbu  ףPSqmĪy =>3 migr!`5E5](1뗥KZR~.je@hErov$)=b\*ٱ( /QfIs9(}SJQ4?NPh"(Nod諠Κ 3EUģkDSe~ke~'uFGB+@}Ğai06Зr&^:=.J6;(O=;}u˽rOO/73r5\ [Ziαd.SrSêkGpB{%C$1Y7Z2 x06TךZĐC,"p̡Xy}Sw8 D=pr6VWG it`h{۸܇A&,-ZԶ<]ϒ¸zaRs܂;5?4~-@1E2 M'ts珔m䬁/iL=Kٮ xe+`.@kn|4mp2n.ŖkM= pmP&1Dj@;цf?o )J0] B f+ÛC7k`;]NxDCdRR`IV2Jk6I-}J*()>a= Ǘ(rnL L1!5Sh8n&'d+:^ZzmتJc*6@jŔd;dk_^@e黥J &Oׅ;.(פp_IsO0proz{bZf 5KJX߉+gx\ zm/}6<&NZxFcG#JVIgo_oߒ'ɡBe];pGߛA} i2 cu;:0n3n2 RơixT˴V$e^eSm`Ste.GSgW T> PgEtk.T% ]n*$J&y/1(*8~&V?N1Sm&LDR^9:dvEw gsWuد]UKx57 z$9#k^O20mnb;<0j; O ONg?v{a{팣J͕m%HCraK4 ۫Gdl-{~cLo}`TGh4Hh)D"TVRB?m/)@ߍ)NBH(~1꽠n2η4He;uJ>j#`6;IOhvsa*yn!M?ڱ,fO[+i6_F^fq!GxKbu`Jq/]W[('NNFzF[<#yW/(1<3gJC׿׵P #Ȉv!lPcYNObV*ҸsK4]X`Yo(Sd_R-+.b+>=)~<>X9ȟ 6LjrVj03dDj" W-1N6N$"&{`1jG5K I 2l_F[):H-O19bC|@*VȻ`7NN$JX NUuL"5!N.Vi~ڊf*z 'ze)Ꮊvv-FeD"MgdeŜe9*;ĸv($Ui`4rŗ-' U=/#hR.(uǍѤucP?osI#nLƦk9#2\w% ~ٲ"`+C/f!3>J$r$?]B *=~츘h5V;9C0C?y)Kڣ\tVV@nD\=wlߨvungXr..kcNDE<4^RK$& yұ{qWT]juu;>KHU]Ĕ[ҩv">hI@mdݫs<󏡔'/IÅsa 7B4l2܇: 檌@Z^)qZ [S G@܆oP16ݺ*N@G,VS pyp怮e)pzڤ)T=걆&8EF;]JON5ٍ[Zc,pt˜Iڧp'璓'˰<gmcMsl LQMΌT#˳|W9=p7ag#\[nƳ7˖ tJPX1 ZߢM**/!e$gk!7Ce|)+)$ik^^NhwFslVU_@p;t:& /(BVrREIgcK+4"toUeeFP_C$Cca wN͵K0<]) h/5z{/S]_iu^ԏlr,5 8Sn#FZSEw9^l_=)>J@I1сZf:o;UAd(~_XP_!%߈]f)J)ie.*PafmR:9͝?=tԊRɆg<ϓ=7`Jl$3:7@x lq>ʾIH/Et[ȉEJoP8|cŽCǐK:3  !}Vg^K&֞q4Se bb% 3(@?OwŞG *IM0Z:Zڬ%T-wh*^ܘ.^%?q7r&r'_k=J@XI]ö},`ZURoM۝sogSeTϕy'8ebR5H( |oNE;S X^PK5Yqe O5ӁQH!_۫_F΢?5W+r ZZb^4y}.*uF=}N9G|c(@ *-O%  lZm :Q{BQ)$O=i;-GYi{X HӥOh@GeAr)Ob ˎY ;rʱϽܶ0ÅYC()$9;ZUOUy_ f[ ֌N - ŞwB{f'̪-_ݚofҪx7GK;PYd &v;T%!bjW+>Sdӝ`CGez.Q/(/(EZ sH1bQAAqi;O| Mٵj5P6>XS KUܷkʛyLyN2Qk6pb{3d2AcQzC ͹"*լ-"B<+Γ!߼Q5J̻ Gz=3(iߍKi%LE{ڡc/Nӏ,X.DL]_MUrmzpw1C:zڝ}1ƜY+qM:ǀ5'Yx" zp1+AZ0]1L$ V{re2sWM&v|oOD PSW.aI NA]Fb%%M4D,̘T֝|α6Y[.hA´|$RQG9Xœ]Anɳڃz"R )Mx ]IWv/LU"k ܃P%Ԛ찅F>xzGÍH r|(8^A$ :*u l}犃x@\_i.?MpMEfcYaiꓤ {n/~/i;$.cWxC;v$@q[Z;(%DQ|=H/&giryj^r _&xDEk,_1"|́^1>V P. lBg 9Z6H Fqz(i6RC<7ba5w|r9b}J ǥ7)[Bs۰95[7C%n<㪋;`6̹8KZ#RGJ@=(Ja_9+ BrJ4Տl֥rQ%#ק=P bL$=4p/T,kAU SK2乳$x@R;Ļā|5'?Na@cwQ+q47=:Ǘ\pDvinE}5~4ݣEy#sv#" #B2v7.}.ҥVla~fc*ۣP05 ?YMZ_-\.0iqc{$J=wO/& ,sfG&ߜɩo Vr=#Ɉݱ~<2)g2q Z..'A<@gwz_[蠃H㟈~#/?_A6>O#$U T'^ͱ*i_|0S9.s#9-AFkjGA;FBQQ,}Q*/`)܎[OVGVX -$t>Ǚ^.Q7O 댸{T&~r!܌"O\buQ8WXw{o8_Gm.(ok ?יN.A2AC=xy)yl}?CƖ"HsyǖzN7\ q]H{{iHCD cg7kl%|ՇuQh̩IX͈YJ(G QV)P (o2pcȁ'iW.}W{"2o&_F-V]Q_[#lx=7"mC*moQ0v}qm7}8SMq{͗Svq,s.|O#3\Vԕ?`gL"~Z{G6H|dNo4,1 -wE/]> fA Ϧ-l>Lca 22ߙDž"&ǖ([ bӪd1U}4Mw<*X,a D?$qK{wK똀!F WGq5" u;CەKCO8NLT9XOiH\ ^2,uf2u{Hѥlk$ݝ:ZB9(B`Ƃ7p;/-{ gA~UEWk|$D̵u^/+Ol*0mQT^剳]BF;U}`) ! 墢e`0D6|ғV5d5ng N|O(i䅳L`\0e{磹7, p*nOSa|8E0xco<TT6kADzoGo.=f *X,ڄMyqRɬfιQ3>7G}`ү5>Mş۠2*])@"/3T\.E;n"%[^jdp6 0ב%z,7CP@QA^K5S,IGrAW[}':n>y$~3.I !)*͌W&HDF@] {Jӛ /֧UBɆ37! 4sVcƻ=K&Au)d|ٖHQn V*vܣn'E/Ĉ%YwtH{a̡t<,zN`CG#̺w֍~+ocNLC/qlt.`-!ኇH ̛ⅇ.9CI]AثgK;K#hc/n>Qg:k`jJ M򔝹^aV+F8 4E"?(|Dho< ƴs>md0#!})q1++?v~j 8*خkmՆ̕?,:1s@O pۅly]k)X 0 &x FeU)7lS&cLj z DtծGÓuɕ:KFF5 ,XԚ`d:o@8c|'ʎh/I ^~Mеbq*|>#̶1W"UTɠ)b!iECOѦ@%_) 7>&E:ay ӬEDK[s 8dێTśs댴?=)}NcI&!Uǰ SH!K=dɖFmpy|ٛs|twYKNz,FSj̟qb`EDYz0h!ԟL[Z1c.oA2"*p] q6 傔1/s9kxUGnW%{ KGrg'ۃ<جIF0 WZq V=L6:חiBD^> v wlS43K-Y㡦5Ց_B)xߨu~ChfO#aZoח/ &^\AA#y {w*Wa_`QK,LmN 'Rltd\ W츸{E߲X ?9BW!amX–֡=DД2ۀ+XҖYUw@](bJf67>]uVPvboG6Pz_w 8#Ɵ]!$N+V,恀M _I '83'0Ty(WLB_/qMOhLѧ3-7iآ:c Da'&Rh8GJ0jM~A2$> F o9;`/ ~>(6]^.Kmz8JW.aNUMVc?ʧGQvH:Dt Nh73̈́ժ0n_7ѱ1[tB86?r5nuEn |4d "۲rĒF ]0aO`i F+HAn/HqhA>@n H9' v0hS@H F!Evsxp:ޮKuߒfӞqJRVT6KQ)|*L-'0^tѵ [LZ*%WfRYQM 2r.W/vé[m;y߷sɡM7r[[L;vof N([6G 䆆O[_N$Y9e g:*3X]c묌!O{SZ_|=(IS㠾Մ}*B?g ݓjLo9- ``-[#\@Q"O#O**#%EXbFmv'F²ei8{VB5Go]LQVBcLl AȽ +;GOm+po.(~pN I/WU-J{+?Ktnͅh(Ix+,zTR v{GCYJѾ5jY#I&䤺e\SrNMh*3[xyuȺ\NXKIHrHOѻ^>Td86uS9n#kЏIFVtѬ(a 4QrTMv>ܩvGؑ6Kg,u#mRܔb^!+a&<ADlN6S=Eŋ'UQ}v?m9G1LZCSr 5Hsiy^gvlKv)  C"RP!NggSKM"pN}|4jr0{fL)m 83'_*0?U2LJ1K@z94}E܍,'Z`~!ԊІHL:Wdک\/"\ 1n~8rY,q$:(TiǁYbPxF+,;3gC`l%^58Ο+m8oxQ\X\c9ܓ8|}X|_1z/=@^PN0oZMkЮoȕJZ+Ĝߥ|}`F3 } 'ɞ1M!` ϵi!I >j5sb"x|B\">'sRbX8SgI$VϽ”㊘EpI'+c w p䓫e_\ hDmY2s˽Q+;dD!u+ @vGN~0/2m?!dvGT!0#J̤/\u>\;A.90;Cٻ.k5Gf]Utd"850|RNo%>_fwpXJ5~n;~˫^j1v9K:`|V+Z&x(RiÅ)DhzG|xoMG*Aق!c3) w3RcZ8N 䨄9>j<f/7ڹV@D[Ǐ,kyҙT[bE0Q&iIRshi|fh#d2g$Ce$b4bG^立hJٔL!0KD'g[ZxiǻvI gD$KMc0\E~;Mm!݆K¯y|z'k5N 3&٘kH\Fk.i&oPN.Zӳlr*T:yyU4/G ?E fr0(Cdf]4VQy!" %D̍5лmպum94q[ʡ<s~g@1YyWG h; `Jp @W1nQD-eςɐ+pc~lJv Ea Dȧˣ_Wqi\n[[7(aB=)_Yc*z Ѽdz7Y/:X.lI\d>C Br;mxHU[a#-Pjgx΍.2b%fpLbn. "X:|3+7%1ȊVXjLo32< xA 81FUk@m>s z-n4΢\k&AD'L5KS.-Q)VFiMŪy'S9M6+ emUvCu KicӤ#!+U`Ӫ Z A^B`y7EheML\3/.B B*H/CDKgBQJ{W~VK+` i28堦~\`T"p"vcDE iۓw9oT0~xq b VY>DU ,׬VW'wZ@k&ނVStHy4ĪKre-pӤtc~}p 6$H0]VdqEq Y 䴼GڍdUO} oZci(o,|#[*'a7;;#VPa+AL쟶ռrʋ@$!֭LjXs>=bi#͇u"gB\Q)/ןtSkv x<ٮu5>_՘! hEu{0n T_] Kv#zߜ7rzUKDBFe|a|gX>Xg+@l(Rspx31x 88cCMYZu m$UL[*l {+Ybua$%a(Fg&crx [ʒW6:[%S= a 2edC 5IzeyC#@Oɇ&@$FGNɮ'S=w}-7o܉#u9UTyAӺ Ѓ/|\il=N)vh~~˫&8 >G;"P3X+ghl8:7Osjj8FߚԘkU,4:J{IY}0'H6˥> ag1&D5ՙ1*6vr=\A۬+?e>̡㉻8*x/[Ko?W}46.ǷB*c }}Gۭ>%8"V~>C"Ph|VxqpdùLHB:۫bi^ #賻X9;oIAr["WĿt{ g|-eyRdeDW%1OIӲQ6k?N3FY-q7R :*\\3j {bOB1pD}Qx0L0E9,v=4LgR]6\[%iWQ!'>_3te#g_Ԓ{>&oy@W-ڜtFOE,R(E5Nb`l6RwlUmE6µFkcgX_σVvQLDhwl ?{2ȘiV`~f`[ .dw4G=r_"w]Csǧ”Ű.m NyKDI`8xUw14 [x&gQ rڇ=*f* ]! sw&n;p1; ?#?OS-j m9-s#6y- ?2(R̨6۫.R!9oMA@և?S #Eg%>"t9ĭ 9Dϣ{EG wyAWNQHدVkrL 8{NȦEFybI+HB{+p\W;E8vP%$$3`_w9$KSq. }`aMpuK]+lywNeYBVu1T=Җ@] 适6lZ09-l[5DD\kڞYTF ge?;^|oy1)ᠶJ^F/4"aXʶ3"k`KoĬ|J 2w ڈjVOճl"#p9 ;o- 03&~BDq|Dmz+j4)m^Pf}c^$o6]6Mc*OQ/@uTdz&W)`W$z\&Ė+֤8RbwHiBвsb67 !OMrj+?ӉI=fa(iJ3nz֮S2x QWxp|b]#2amJj讕BHtI'1[H4Stt(؍ k&p5a_eluu;Z&7ag'|Bl>7pTLﯻ!+?LFzh2*& XtsA_,;o~.+ؖ5c_hfiFLYy\y?}M9iɰU"~"@0\^ESxAEbtO#gM#۳ϙ0DQVYXc[u5cfyd[xdJSb!T7/TDJNk|jC(t/$* wQ% 'RnQG{e b ,n<%wzR0YAC$6d"SȍTm{2WTBz>88pq8Ņ^Ka}7.2m a'3zP3f|l؛ݥͷ:4v6/BvafP;A:<$=-OMLZQXwt>!sw謄UasŜCW_D*JT*ܰțQS1?':FCv8ˆPɿ=kCn~SL^A$o- (%f,o۹<EB^l'~НUnj00Z|1+m:z!jR7Ѳuhʈ*BFTܿ57Q)v+ +Q D+\NN|W,26Gu7zA07M{%ҷ"L8ٵu( T%y쾱Ԩi-8*6X)2EO>“^M= k% FtP.=~"nX7 j.̓Ј2}ي?mFpG _65k"a'˻AQB#(z 77ٿB8gp_!5EuC~¾0nWBN:_sYOXd%YO2{v/޻`*/ihxQD)\?uC[oкK}I+y^#gi9a#qLފ μ[*ZmEFOg{ ^^Jl=ؿWG/#16d'4Ҋt׸e|μ8BjB։V HeZ3h]N!\ek.pn)!<_*>:qYܮKsJ3 jBsrk:cs CDQƺC]_yŷpo&Zט z|86޼f@A@ʱU?F0OnsO.4^mnD$0( YtP sμ3:2a泸Bd$V_rYAʫ" %ZN>mOUrU9tu胑;qe{v#`-/&/5ֳ,̼G}{_z)ϰYzi:BE +{L]X#|]ebe5SQFua:no<]jt{߰{|RhfVü=bа SW:)>58l bn>1R2~~kRY5a+Ly4m]Th9U{ݬG@"\X2_Zր!w$ ;Դ-ls,"hYCi!y;.&֛,ffԖ9efVR 8<ra>KdDѸIX"+UT8x]`^S1Bqw.U`#/{poOjM: 8;).Zl9n㔂P?kWY`"旺m{5?\i0v".L>'h3J& >⤶o!H&&E _)j0N;)" HkpպٺD?( Tbpby42rF] -#vG'5#܀E >yyKLYC>ð8@mLZӊiA)1ݷ":ªy]X}\ ,:cMa%[@XC{qq,蜠A^ n>D̏4bz$รo?А*mГ3큪jhܙtݥ׹~gpC9&?à1=k QĴ.Y$pG/i PV_:sqRk~_yCAD'MsJ[^j+CHU0^ݻ[eHWīHzwNw]X(ȫGxk+ j͡csQt2U, )? b |(O+u/Ao֤ Yw?F2O&XU M}$}<ч!g't[-"֐TYMZ.N? H}wh/gd؏t2eQ m;'!G#s/8&BY)֫w܄[X"E8iQ&ev=&܎8r#%M 5\SњUsloY=8zXtUpME ӂ浒v&d}?.QIՙ^IQs(OuaPE}]Hg.82cxDLT W[is)@E(4-@rkF5*>)u'LjS,ȋØ (*$uU7g_*R#V,𵒉4񜘒Ugϛֿk\4ԕ-%pZUUH ,#3-y/l"JHЪ1/ ;Z*UP(w}.xͭ쒀oس{#A& ' p.䥹M2#Hg~zetq_笮c@P9huu5$GMkN;ߝ -vvgyQ dږ4a6Ge'#=u0F%2qEFu NP兇I*7pdž츈);db熈hW-'? M8[wI^s&v`.:L6bOH:}* ۗ`-;„5l}3D}>!ɛ[.عY(SC|^g4;_ +1ߔ|zT/+c:aYWNJSi 쪷6`3yqsq_r,*E$Lmn2MKOru}S:cǠ'E%Po|P({95xJN63wz`% 4px~'zL鸰u\}3*'|?'̥)Ke?ؿxsJ.cH^,5Uŏ.VTN~DvPA g_n*x: XRq-}k_E0?ƣ`(}>8A~NDo[7)%Hʚ*mf 擀zKcph Kc#tˊ!K{87*'>6(1T?N9Cl}J܏WHQ 1hGVz4 :Pg0:6&mʳY2XI]N静sTc ?:^Z L,6 L^K cgBV2%`}NXs_b `0%~kUkGO( rP2T ;I"8FxƷV4{]Q`Ͳ~rdp;$K 6"xʹ_1ݨѺj4eTofsTK5}ak%Ϣy}іr҆M֧f3 @"4g͞+⴨'hj&0u?O~\2 3j[бmyϜ~kG'E+1 sMMfk$X*qh=oAr!B0݂ݰ_}{kߢd$p*bEG[z9Xz^ZKud8$nKN|kEW܊XwrU4_~ŕ<>E3:zFvA~j]> EKǓFq{(@OՆo .C! (Hқ:F=@HGiR(Ҟi"6X@W׷Ӫα+΁H ƞئxi؂mKnӞXKꞍ,4 iDק`.aO97$Zx! Ј{N 'aaJNl[Vt{NrD?wᜀG°On`aT=D27'7BH K{Y]+y@'Wu&&*f{U,VRiBEtͼ_@dwkoٱq Œ09V(Kn,;;Z[ ^,VɻUU4>S$*P}HˍUEɷmJTSy*i=Z"<YA.ǶE'71UJėIϟo͘Qe"UF4Zӑk[X|Gqyek SHX*58'KQ EO圈m56 w7$졋bV(7cƲg,ڡz'fXԋKR08*Hձ{ռuD>Z'Doz(>βXކ$fh刎ZNdV($l3yv T!:ZO߰ptޝf'wB6 ZNyvi#9mqw_sk`T+`?ӅZXONtf_%:m~ή v ɚDȖfn':R|G0Fڮuo euܜH8$~-^^" Mv/ s oT񊾮M;ABp\mfQzX']{]AGK$1_<;,<O)$ky7Ne+!/X%!q9磥dzh>#d~G^RrQˈzԮӽ,PI'+h&h$;ѾF<;DpMw{c^j,TIę o(9фY姙R1_Wcz4W愬((iqD{۩n 6~7ts|=+Sor{p:I%O3=ݮV\\z% [8]GEɒT`t2 >(w1OY90I&M]YzXq+$m:/@@l|&|%,mznjT;4qͤ1#O?D&}l:w-XdQԞ}ut9]/.Jip.=I$Pq!7Vfm%t~h=rXa 'dثn]k3iTW]%Eݾ!ۖO5V1RtJk#˸%VףG%O{:O]9g|Ѭ;AJ.NxUI417kX7ȥ?[P֞+šcpr 5r$mu!~錓C3N}+ᗡO"ڵDԽQώ?u.&`xFnJYeoƿoh}ZPdglvCmв"{:DGm7f!]Ԟ ),wVbc״{vV:?P\SI!л@c0ٴv2Fdm &#D<5l`ΈO?#BJ/ԉWEF['#mϿɼE+-Ip*_8ga'(jR?TT d c u`J]!;YXn]>ЅkQ,߷Gǧ:m嶖p$;~}XPtJKò3T7K94 K]\H42vd?zy=XPŜd_Bx.94p=;:;hF+m\2kbNFܛBHZwxyb؇܉;Ia.~a@)#Sޱ̕4gܝh9j\jz}$9vW575Uu7  *glAGrAkf%(:RI>47?PA8yfK柎_&iT3ÃX -7a 1? 1H 42FXvR< frgFT٠?,C0`i[;ad "k쵄Ua-E@76'%= 7rM^^fB1hJZg%4xJ,^zkg8iLZȰpUkRwv%Y\~2zʿ$aDiqh+S۶/aw奬 YZ܁WzY9 @ Ygfe4G\^j>(^b6j}Ҥ$ER?;l ti%9bwNP2k.q6&V=dZb payޝ h0u>6eCY)A5O[,>W]e1n!קh*h$(Pzox(E~Zaqw`@kYya ^KRpgZaI :_9 A;qP {Q&_b #A`%xU5`q L0IJe2'Ȥ6xCrg~BԜfѺD}b5چXg| \4\5 (rD-,tw<]{,V ʜ~e>0<0,΁%ȴ8y]Dt4f ޱV#;U it*ڝF由R(\R|HIM!"k&ٜ 0qj-U1)<88oWBnmn {D~wZ_iȚُ JҜ_g=7;eMUv ^H[[50wG 8a;Dp͏5 *"%Bw0cq/=p+3| vT2ήgXH],i/I)S J>[GתA+!6#z[-9fDѨ>Y0E}؁1xODS>+[dʖrĈi|uMeo}Oh Iر}x:%tyc@"C$x@Z`{kJkyXjlypeτ+w0LuCY7!_pe5<5b6\A?b0_ #8˒t.eL xHBE."ZARV^mqtF'lVL3oa~2h{"~[BZcAXKXl$!70>?' )P_PSZP7 "(xiU}AQ?.&0؎j7N=X>p"z.nZdP/Iu+D0Y\ApԈ :6VPTTD ?9v6Ī٩W%ߔ.gJa(6OhVdHzx!۲SP?2:C5U2n]O"JdA BPutкjE |k18ҁkM/{Vc2I0BIM)]}ꪢCލ فe( _⋠wdb}j`c{FH W}ܭ4uLL9ަԟҎdwJ`X<ͻd8ap4G^SZkhW-w^"]&YD.C4B,Z~0))]IӋjI̗uvi .]޶D0?bv"uh'qxED^.[Ŷ,L)&3=Q>|mgLKv3<봔ufA%KRpnf>{ O*u~ a=OcpU ɷrK9ڮ! 4"q!eJzIpus`%,ꐊ+=JSV4hJbQVWgΧ[o*_>/ .'3[ZXuxytFd]XY |'`,zWxh$Ex!sy6N"Ź̬{RG}mᙡbFCL n :Ë;^LU viFՍ{"6uxddVV0oikgI}97%Ŗ6 M)S^,;O>Bwz_YL)8TŜ0<1bf.hD nxJcX Ha1[VK\ĺwOuvo~^Fc{Xc}w_UTH׏ ڊrWFOw^8Cݍ~I7ZwOoиq/])nCgs"Og1\ VI14|<tGm&Y h^g;}Iߟ \Qޯ6UKϸP%$FLݤc Ԡg!0C )>z*EbtLʅ G ᎅs44|h.j't!~A| tO^>"LnY?m9!72\jkaiMچ@іm71h^r?H5ây$矱k7% Tjs5c?A}7ý;UɰÍ% #5߻ukTː6RСe{B!AH8ڢ<-= @ dK\r _< YP=[W{Q3J-}b34rk*!SlJ60 G3D4P`22@f-qm>oX$8pS<Z`nꆙ$=yrMWO%<nSY&4 ~JҬd mU٫w!$+@! rVgvvVAa"YA->υm:׾ e?6$uP˩~+r&>y49_\ir SkZrBHA.o1`i ]^Buix,W>8mcAGdKZT#d2xV\_Ɔ^"K~<Ϝ Y8L=HΙ:­vs=gSF~ Ă[ҡt X+("j@oxA;I&qI& V9+>v&E󂭂 Un~FZV: RVo1 b ':H!uCRPË#}DCC$b g"eJu[N9O߹_]+mê{Q9_-3pvh@]|FѨYkͬg zŸRB{&ốn`*|8G,y sz_^ c93M)#Ou}pSe7@$6D7qH=XZbѲ4S.봯,4zA!2z!կMWM$Jv[剅{Enf!4n~O ^~䒝>FiLi!\6b:kh vﹷ%v& v0_ ()]uH1#hn[ץ՜Lj?GaPlBG.ozAc:ҮJp;kiR}s"I6b b`jUq!ewn &8 o@/ñmV|0 !wQKN1!ss#y[15eh{ xQ; e7mZk?OGZ6wmO=˟²t|0L]HsPR*f jQth\DvRV I=_ Bڂ{ *e Nl ؼnS`v$iik[Ŝ\b펀MԳaZWeM848`T^\\ojW^^ ğa#y߶.ܑ:pzKn[OዿCT-v;tu|k紣r'X,>q<4Xݑ(a0#`'U>al=6RVvmĵr9L tsQqjE_0^vEKW(5# FPY-1Q.$32 LLݣc@N;T/VK\ɢ>դMYMr8<1ՈR(9c=hLNGG,kŝO Mu%d/UƟ;%!mP6!qD6?#k6f~4k"8k~a Eͫ 6(c fmKg.&Z,)H4нl]!۱ѫ38qۇKE>߭x5"ucQm)/Ihr5_oRϔ<:(ՐR!/{ {.cY~|O:@Kg7X_僡(a(Ŧ:`OIhIb{-d9[@~ޢ8+!<3kErbDP7<`\Zk lEzq @@CHw3yʗ2L"(\T8D;\5kZ]y&M**~<#-h9 ]ԓ6J♍gDBE'ԇZsZM}\{zjq,DpyK@Z1{|AzWoo67G!T9"e= -jXtuRN u~ &RAK:j(|}\}9Jg {05c`qnID?0^E{2]`O 75pJ:ǐh4Eeҷw5Q/Z CjrN GT#{cg`SL y@I']8Rvj_EHij,"]ܧҞ۝~t1wn.kY.bS\S oA11ņ@#-έ:Lp `E__J/aKu;$|nV|IJeP榌V;?`gkJe^uD2$uqqrUBs:'4xCgܳ*#)'3cZx}Իf'X;Sy+%xdZ~'=ްүt[_f^WDWMv)?m$NR{ϩO.!Lat4.5ߵ_ISȰ?PHaNK`N*}{`BvfO6k!e 9K 9çIE(sn ْ#P4|S0eZb޺-jg7>^}^0I}L䍼Db828XDXSRo}ZϤ$OOi+TA<<kB'L~G1Fw`gTap-'*KnU˄`L3Wx;U՜̋=Tu`HʱkVX潥P} |pdO+DlH ru+!@l 8}aW||T\^LWNk]vGs '#o@V "x*N".?8w;e j>H4At-&jc==I6.vޡ2J{s6k "jpv0Nl]c) %O7V3#r9ia_$Au/&x^b#Q.1tmFƓnP7(K<ƫ b9U+Zc4Y'I~>dפ_$ <<ѤVX_79A "oH嬬E#s.uO߂7mzT6S]*J;3J;GaLe '@dق<}r'4_#+2k9cg2%Si&T<} $ Y|wN[Ӈs^.TMտV1ТZ͍rqBMG#p!K.wiݑgKf ]mݑm$~oaJ()dZ,C(Bes_.O! #.aMUf5 e1~JGMo|(H Р#9i!F\}ÍKb-bAzLxs3ăd/XR޺P**c:[9rT&wVs`](N33/a%]ʢ% ;cvm]*º?eNqg5n$2*[B0z X'J_'"ْ$ad>}X$ӵsAUd3wE_29vX%b9nA^,B\i8&4G*g5RLecʘ}ѕd.J ͻHoM#!#lq,Y2!!O IkVӹ;@Wj#ĹZܓwD5!:K7Ԥb V5;K_}k^!p4UF!)4&o|0jlݿ+Cl1 O<tdcVވhz:2G,}`[wz?L6ջ,kU)~[ Xڄoj:s)|p3.a5wyoNF|JԷ 0jXYE-I-֒K!YR1iqWnP&lM^q"llM4]1!rg̞»S^373z,E( BGt[UWj<Οt]ueSq&=dm68\/dR$ˇ0@>88 WdV1QPtPl_ҽdgܳr95,[.<)~>6b/FozkKbo`esNuϽCZLǨ^?=|5J+wd Z/ΟlErpwHЅ̎?X/ 63e =%abI{G> ZڞĸqnCtBj:5FE24-Y.iٯ ŅDb'eNPZ K(4$-2L-5F;Y `;VrBx),nt=izkAu@t<="*1]w_4]8)츼W[ w9`myeNՌFzpj},҄`nO'uQů75foBs;ѫHKg> *fcG$ջ%P/%+{P憃4v&zbR R,:H]f8a2 c-"]^¤tdsdld AlÃhK)p>E/ H~yU`YJF eigLx:\T?=A`y&Lԋ6DL :[$D[d5IuRGGXʋsf $n4Jٳ)[ѣGN<Ē1ՖRӣ0Z b1QU_V Y+щg~QB~\bcV\ofD%)DzƦN2P ꧣ)two68!v)8 oQy) *=d} vo9˰"3%4xIM:nyKy$id%UG"wYd(xFn-eڛx5^S&ِwjPҜE@M -nuhTbQǙu=O;nNnի`N)6mϠVF>Y'u$nT,=BW5YG;A,}IR <\4;7⭂%c¬=_'0% !) pC,̚YƵf SIgo7~Puf^DKƕxUyn4St ӌ:t%:ZIJX4ZT+e \ִ<'*M%*y;v;l8$X3JfFWOȎY!d.k:ud/r=K-F0ܸ(ѻ\QyH\P|1Ұ*DehZr]#=t |' 1i(vN 6~$?03'Ȓ x>q[yVB?*_P%bPx4eF |+1b z38J:(\fNLj\AzGA},ҒBl; ނ_jZ+P%)*3Op=Ҽp+FMY>GR`qj͘ɜk{AՏ;Y]s1/+/:Iu$z_F,f@ iԺacb]/tWMuVP43d%^'גꚱGU禍E0{^㔩(KӎW m@+BStFTE6czw2+qi 1>CkGs#c:Xl49jmf(ӕ@7J 4.ۍEs!zS:u ftnt1!֪,l#CC)*?"̧*P0Olu J)F/* iwa-4F/DZ38xkxpOP%f8SB|>sXHtFG<P#YчFuVp%%U0 T)aazn$O!Dy2ٝɪq`XRNŠcc]bF,}mr TNBd"WVC`/>% ܎pT!8J UIźqɖvN(P"Tjn?V*ͪ1(nFBfݷN3ᖐѳC8Dqepb2BQX"Qg(Jw`q`:%Hѩ؍ Ds5K9G`!Ӏ|2܎bS2!6yˆ]a4p=YWEGLJ%։(A)dy倆;̌gi +_N_CTi$e<Rnna;Xۮ{= -T}f6jFtV'm =SY!࿤ᶸ\Ƃ2Bp7jlan!=myi2G=<_gYo?O%׿Ol1IJc_/I;dY/Pj_]I[cM95wՏt.E`vj=E0_Jt<]C?\yylp _$: Ja@Ѹ&j,P J}z֎69ZH~;'CgLGC? Yȭ_O9$k|IJZ$z׋cVf1OP]ebIg.5ޅ:\əIb sxʟk'¢>7HMHLWi~EʹFm4OYDXXOW NU3z5kzqڅozX TX\ºv`qo'F8 jK$zдs-*ꖒunȗh,{6v z<~#tN[ڵ-`F7~0c؀M|"d(tJk[[H^mg$C>/Z7EheG ?ÿK*DR_rZYC9;VjKOpAp/c"و.!̌rdCܶGZ]R(ff ;]e%,Ne&VtEB&v\( O{e8plbΧ[;gv" jč'rg?OZ hGFCX *E\,Kb=|2^iE}L@ƥb !k1s~oGT(Beo4}_- ?\N- A*aI,"wE*-܃z)p֑!KdԂ]]"E QI7ؕ RF G >Ƒ~)2uq\<9>ꤴo$8ccEƠ M ٣†Tg #_8m x3HfN)kH:Hv;Z'A%/Zl #o'铩Lkqj|mгCNrPˮARYH1c-SKo-< 8bP TfKVpa#trfֶH:v5L 3uy9>i.<֖gX4DrfZ}$b"^$$w* C!R#}2'),L $ܐ4m5Ӌx+߱cͿol}[E^Lb 3=Q3a{,o@vw_"羓0HӲxlR?TTX~~1Fkc"ëfNmjSy7ڈP:㝟jaC^$y,2bPfKtC;BFxE쐊=b4Hn;`E1H9~oTZjpܖY3#8ԩyvwxaBhGݝ=$fn=cr ǃ*Oۮ: x8}["Q4-~m%Y7"pdϨZ(/slm孆O6 :1˫GZp[`\?ޛ'q'6 !*1H:>.&v{)9eލԆbzӑq?-.Ҩ X4MU잁Ì+U!D EØ`R01c9o_kD|t~rI S0r agk" ]\@ZK}W#CpD~nz@.cd#̱#QC;k|>mS wVd"1pKg3||?*&+bCbZbcV*Wi*ONl@U ~BȦӠ6l?Dގu ޶DiH%9rB8LJl+oCt a+:lƢzkIs%pz]*5)H.Ni($b)iJD|oYITQ :5 ɛF YvgagMl)fmJeaN7az.(OZ(ᖚ˹zq}5ʊ~M(mA ϯf.c`Z2̪* I>Vl\'FG] vF@^2/ YVXK~⌕ft'lKٛ@xvĹrKs ,)2|CVe\xK κ6^%:ӫנ%{[妝a:3dUEjdA!U?j;ҤOOV6mc Ͳ2j*%"NJ:¡IIY+.u<wg}cWs=xEKTANP~ `-V-fCTms@ASR pzVh;B)_úDL/qJzɓYv8kkGluϙo|Y~a)sLb%Q܃!WOq 10TT4#ݬ5fw浴*Vе^P';^θۯA-'9|:h^qcW74{N Ÿt!Km oܥAp cQ; P4ݼʢ}V.b+d GQ݀)31` -N~T+Nx_\s2fS,U"+js+tH71|G s[j@;N-YT BMڌ *Kl`ԣ晎E$--@CaCa>Q]mGQxB޴b1FSȑFM CRe¦_|OJ+P.$X5uZguG&c=nVŋsӿiIo~].Fr"VxKXVZI?]RF2pŅi6(Wݲ'? MvDD˖"Kqnf^E /$ΓuU։<ԻB" fgwnJЄf7I4If8'~$>* WJB"3eK]iRF^='j K/Y}f{^B/$--q\iɉN"I]JS#  Te1 ٜf %YX{s~#h"0kjG3CzJ9c )Fi/Jw*lvL;ؒ䝉7YJ!qon~^]Z> [f3- oί;­|mGƁ@XO5 2XHR{svx.nx7uUZ?NQ)*36d<\@Mnj,R56𐍝 O;7=;U2HsJ-boΩa<VWNGۓYҋt؊<$(JbņiY`g>Ϝ-LoI$;e*K&kZO^3g?.ythAKƍwiw ;2T闠ԥ-Ki]cT~4 /Ifzl9$|.xәvVY vNn$|5%hl2/!{]1NGЎw]|M+$ Rխ7!N3ͳ5{Q+PWM[:lT.#ȩO"A2B4DPnH FHMNJ#=*(x1@ĉvtOsPCpIB38pk.L h:h;T}48lUArrIQk]>7L sOSE{.ʳl_~vgD"}l#Yx# dDώ.K{A:k et:Եyō_aCk\'IfkQb^ ;jrB9@! Φ{YFN/lP'L%"/l)z}yNP?a{>}0K'-;[}61ussY/RRʀ8'){}`!:r7+$iuz r9{ K=21tZRA٫^fg^^ǵSlxNsBl%"NEA̘1y<ˆMUL&G)Ǡݐ'(:ac 7! / \*Jh>SB3vN C~t#ߍ JL4Q@$RrYj%p-Q#kAqVCǪ/_b; ;[.&qTA1 NzfEQ12 F@ۤj?ΰ%i3<rcXp9Y+h"= >`mDmX(-GOJn<趟`|Ή_Y1'`.iH-||7r}lD3gBڼLR྿7 N`󌔻IenzS^G36룂 NG%iv۷T/#h`8^*#[%Aʌ4"qбS>sV>1T֒h(^8x:w&wIxPSpUpM^7Gz jɳn+*e_32%(Ѡe_&LcA:۬tRF*H~V/ayP-Xk\q~<ͬXǖqN5|}g{77%wʤ?e@{3\ qjZ =žO!^S%Gr99z]#vT"G]1VQ(Sg GvVYay!p؅1dY's2oJ>依R){n\:8ԥ] t-_"YqhH/kY# 8vΛ`At|M< %=4mPw3=YGVNv ?JoH>)G&6? R0U8Rva4kU*6gz_߶gG̬߽N s(eUcp6$AƱdu//4i $>+I?c 鮣Ffi@؅\K-Ӟyχm#}Z @${!ΜSGVSr$w\*iڰ.qO>l-%;ofm]G8Ds+>>u:C7GVMIJ5h\S`>=e5s gYy:#`ǛYi/ğITUiVO gQl OJke[D.O:+V9#ILpKm}Py2u8 J EQh,du:{NWN? KWRtf-V( IVa4wwִoӀ6^[*}TL ?ދ V=Xi7#5؈X8![:~_f<9., %72cz}ȈC~t}j5[UJ#= z_>:ԃUե(rx n7/p06_SФGY5s=uJ 6X|)J7uk=׿F~mœ&Rt޾U֏ p'ћ93&! ;xq|v`F]~:rZ"@!%`]̕| 9.;QV™g 8 mʩ&a|u;Jze_m$5LF"mp:=hZذJn5"XŐ= Ip{y@oZ.ܗa1P 1PW]|n`8\-&pSdibZX'v>&6GÎ~-k1ȣ8dS8Xf0DbD^j1a5:i,ZЎ8*'5 7Q1vύVH9ZtF[Jݙw|U-"lG\Wh0ZZґ=lӞP cIA` >[[W.`F]g P PٹV#xֶz#&ȱ3&AXsG05Oʘ}K3mu2`z}Ka^}l"_12iD@=W"X5ʬD{i#i\?-ֹ"+=Xk֬)EL%6pYw<<Ɉ(u.օczs:+P~Xssq05YJni; @F+s7Za<-RR$@BHa'hވ<.ӹ!_lKm칤sĥniʾm@߭f Ϙև;)1)DW;Ť2䢯 ^.:aC?;sr1:2#3̓9O#$q[אWㆤ@^qV(]<9uPN ~b RnN^ rK-'dߒ[B\wMpUp1f!Q 'm+LuI~Y%MZ xTv);p* k+@ m=TӞ09u}c#m=}kKIXl ѼL.\qc+;JДe$)~*i*hx |\$Z6̉ 6)?+NRCo$nIMqFe/7[C{ΓÄT攥`A1/>R/M<'\'iɾ K5rjJl-N/YJ M#VB|8bc=ʂ9LBw+fThXXÝ-.7bklNoBS7P K̦x>cR,X3ݶ^49U ,vHt >sB] tr%T>Gu,[o~u I2Wd%P V}J<4,_Jϧr?lψÑukOG@TobnkXZ'91׫/3&A(77}?'IljsĿEy14&w@Vݐx67%!òOB+E\i:uL.m (F/śv+ܐ\}鈵O S] Ǵ@5Q?QDD Âic¼׸WP b-9۪4"ǎqyǹIn1f]m O}֭,_X07m{vj]$5j#q_}דtJͽp@#`hK5%C0{=`[ϙrU>*SB1}/[' wf g! Eg]&:5Do$>!2q<1SGdTm0N#qiWոs:>1U4Ehc`5¼,="P"/!wվчYiǪ8+&56]z lh0l?ig0?KK͜bKY5]ayZMu{CS~=˩7٬4P7I aJIԶĐy7E4]9 ۙ$0. ʽCt{dMŖwHG QhÈoP쇫Ν)grT 7EpG7)-2;Hje>԰Alk-+A782|d{4dMdAb[vMi7Ig~& ,C($/;YY_TF^ i#Hp+gh$[ܖjK`XJQ5f{ypl4%At ޡlbuAYCm MYb|Χ(*X-gNGӛuxlGXʈL@e.^GLGml%A~F)Bd%уN< 떦읦x -xu|u&ͭ4_qKz02 ٹE`dY6:|[,ń3mъO9HxJiZc:|} )Z{997BF74)zrz|LdYXUăWj6+;#1ݥ'H4Eta5""U2) $},T}F_郡4P =J;)߁.+\c DY =ޱ7igʯIQ-jbOـzΚOTڸqMWpA> ? (mhƍ|8#WK};,ڟr]6!s\(UU+y=QQߌKCLrзK0~0n|'߿ |\VfX:Y:לb;O;Y3nzp'+-2qjjҜ:m[|]/?@^;0U1`rznosa!q--X4]o-8=bLNxL8HҰUJ`K @ouQEa֏ g; @.!yS%C4dqKVFu}O/$W0 v5Vs;A*PAp7!X%P0w11sw:* ʓ(}l kpbeݶPvPf-NۍٙNgL{~@gx2aR%(DL %X]l$gˏH/ in4؎,_FkO2}{ PiQ?K# e94"5 L:xvP n5WpTBkF#RC`7*Yq4ֱ42u.f*ծH~uo.~JtfrqJt)KdgJK[#=g5."*``Ƿ}Уs'u}m2p=r`'׀;LV: wa JxCh ungwEJfVTcxi`<`rcrh].Qw-5U\\"C瓣Cb`۹}h#2VeMa;Y0z`&qƯXBs"bq9BJyl=i"lsj"lwD\@;) owl wv;3>nqYwVxlGƥxQ2~72-un1Q/NU"F͍ L*>ha;{&=Sk߻;Hޘ !nYyM>@t;9MnJDf֞)R4Fɏ"nhʕjD6D[0zM b_`2xS!oOtB aeVo,Hц8"} dUm݉P7kXQ30Z+I,ǿ5;jz&[oߪ,?=[x/=.$vFk ?b͛ cܵ1GFS9OQ^+ /4akW$ ~p(.|XH,8{?`c`aC>Y'VC@Ne@M4=Βk^|G)NQc/nϪq?8z)q~FD-ԋ$Xc;Lh/;&HbE <3vto6VC+l6),ew{q[8o(!-JxW&G4Z%Jk׃ 6X)Zr:B_K3HM;1<$ +&Yn;="9[˜` Y4%)nCqWޫ/Ӧ$u~6;PYy?9"ALO標jد~xڝY1F` dQhLW7K u!=|ɪH3dω2ǖB:ul1,/_!IF)HE*Q pUUC2Q -=֋=*g ˊ݇2BZc]=5,'74\ )whDNxısEp瓢Ox_U熻sT̿i1B.=#!6WW PtYҰ?)6e#>m/ɳ%g@\̥6MVfcLF(Mrm 9&G&e1`xq{fw*븢%X3mтfRqǸ|_uҠdJi YCsz?,z=v>^)i\]رDs KeK/\ZqPSW/&%2<~J t.?M(*Bd]ﲎu*Σ櫪 .BfT[#uQP1s4c7]qpxQHcJ1s5plr܎#l2]a>±iy-0v'sL*XF\n"!-@+FA$QAJ7v7Oڡr.08 Y6p2h=U(g2hiʠ-Z˷2:nJb#K"JXZpSbL0pdS}:a I˴FYswK nRIP{tϜ2A!|6KS'*j{イW$@JI> ˆa4^e i[> μ)iuV3eq!Ul% G?qL Ew.XRrNh[gqF"dz e)Tܐi+YHN7U 85]=FCQCui19?EEJv>uݭećQrG~_o.@aAR݅(:2P8ύtfYMP,ˏO(,@hoh"55%Qh iGce.--#rS]#RwVYm{t#YSr8g'HUV]*cϠJs8|2`qڐ|27B9m>6z_+O7:75s8EKHԮw䔶Pn\dL s(lC!*+jmN/7BbWe`тAm:Ƈ*_!K^C&S^`*k܊~8BJ{.~Ͻ~Hl4zBV銸.)Auq>o.љ/: OuC2G 7f[ZJl/96WCgx#o* ٙ+s16{љl 5IJl7hQ!eAL2ɫ.aih=)*h^bG]@f'݆ \3 &$ʇt d+Է,1l a{AR&a@dK.f_6gUI?BQ:tWdK?]awjuL."]’נww @cZf ` 7ɗƼ)ѹRsG} @Qndr7i jşKN-6[? " Q1>[e12}#Mz辭0E- W!7H9741)IYFrV+TЂh8:+/ez֦9M ll2h^fYT_ҰM O pfIf{Ir PՃ-kSVʕ~LUcK.'w8?;b,IVJaG*LJ;Y/:kh/GLEiO'7o$ W6oǘ )7/DU2A"8h育q[j>c O 9ֵȄv6~. Z';`լ#raĜiF9|M'}fmyc^ѝ rT@Tn ۿ7[`v@6 ²- r[N-VӍ 'b/$H/@%o"X6 T4 ;$w'1S:O'#b|.ȣ1hd{b(DQqXpA}4.6@hcW0$V%w~wih|=R0jqU r`LlK;jBqi'W4Ffӻ/uV7^aI”:㿼ËD$BE6Yy[qoUb_ʦ<ժYD.*Ў(˖DZl=HlGiӸa(mKSܿAܴOS,lQVkg*Q Ilp T%T#㛧E2(4)Bi kmFj N1^o]<S]-NV0Jn;Bæ #k#1xwNCrF|lڸJw@/ )6Iv*޷X 7odifZW\~8 _>?6ԦνA#[޸с{&Q[K'R쮊jcw yܒJm3n_zMPWjqTw.jGLO`=O^kXg^vE Vp^Ip-I ͹mUo?A7ntK&B9ܵ=]9񱅔s6V\1-h33ݚmz뇁+ __k ól f1GYdxxKt)9Nr :l2?/=,\ο‹8Z|U#M]h~ =R-{c#8o,>"o{:Mz9K>ؽ:†("&%u2 |R ^)>~4O?'R!YNCG(X9juعZv@r@]9%r QH( d O=bv-4qdqHw4glӶb #  K%4P֒ Nɴxi{$]~q+FܟU)IHzP,fޔ {VvzRȹ?P#Ƨ(!QUާlCJ85[DlCgAoh=tRb\@=w*7}"\6ߌyi1dtZ^rZh3 G-]g6ϭa֫ռr5r)#\f[Q7EkTMKZi=٨w ^rp8 SyD0 Zp Rq@;fCSW{/#,.VuV_Fd4Ikm.\Y~OM9Av͛=nXka!wvd ߧ{86 ڑ,Xx4xC^[@oCE+MM/!5D}H<1&$̈́kx5u ]M=ٳ*Jsٟ8/x/:@E/CXMI} xѩUy]] ;TsLxWJsl )(ޒ(./(A5,K.B#OٶkܟPQTL!h)ou̟ bD섩 uo{ a;y}Y'R? ; 9X%l6A˲v}Y;(RUXJH2~;ևn 7{5! YW75[X`Fv&1݅AJBzn\dz )ąpN-cKEK{WW|ڇ ] )wNf|y7w={qk #9*~r#mQ`@8WKDVEnG`_5*:#}J?1urʚ)Q_fasUpɑ{S_|ۧꉋD*p1va@vPqhk[% NrJ Jαø) &Y4+J]xj5R"܅M( d3iq2Dk (d`@j.(M|祈P՛3yf\`l&8M%,g?Jۉ@nSxG8גFO xnlMaN41-$&,\P926D̤D,v0!Vt yiI[K[u۹ZW%"Z,< L f}Y;B;O-\x(j< N#Ec9i*YIƑ4GE^bNkM%0~|k5=Ch:9UgM2: #˯4s4#P!fj_)/ ;W׼q/uhyId>y_kI3\{69q,&LZ  ۼ}F1}$:o#Dq`L S<(ANw#C\yD^bcPh]n]|E'Io5Ϧ$%D[!~upY)wkGDvE^U!=-HCTڸ"5V@"74F4TL\-, p/%cS)E)wBo- $"8{I%1M\* 0y%nPX3 7#i+ ULS~ Y7pYE9 *v-b῀o$K[cA0s"@ȭ@04E~q(qB )yH2|UuB < T㞉ߥ}3?]y+~'pK+f8S*túrOٞ?1o=vq1sz1 /Gs"Sa!=1#04=q[< xH80jx9lD)R WPG^CCHc쌗 RBt&' MڟH)96-v.lRɚrP>޿_~gT'NJ^ᮠԇzyw<%A`c_]rͲ*]Or;ؘ)uV߯;wQ{. YM'p`*f_;A{(T|vb͓bׯ&?A20M|soj,x37fq  3XDʳHs:0y9k9f>+BAs= 6snq^gO>vMƑ &".46x njУ5ɜI:yno'be#g~޾q?vGJ̡.IZA,*)N8 yo&me,w"װ&y`Y*1#c9ŞI5.};pvLX M®W/P\ A/e6mY^QʌIpSwר5 Fw-ANvde vAàua6~O鋸 :C9 8smRv/i^_wOϵd)w3kJaU* \p:(Q2\(f-Q D+՛sqMٻH]ukjsgUةU$)܌`@'9V#hc25v3x.ji+m #kS¶@xZYr?*//? - n Ǜ5"OՌ24tF[Vč?1fv>\H᧳d?/Hk~ׅ΍ΐ5OeeUBݨĔ-o͕D9uu^.(VK؎ɹfdl/ t-H1 6ʪftt}ytUSг򏹬/?h>NYW/[<\/y &f$NXm4j?FLMNHb9 ,FG\'vܜ2qM08%еk ziNؔT6*t|C{1a$ѓ49 oY{\`;u9b8-WiccOؚr"VFmJv,,4{6֖#%)y8|G c"J j0DgNgĺl>MNISZ~uoxr*Lȴ3ͥB ݐ1pU;I`. غfwxR 5;v"E埵L]l8Zgn+3ƼuOGnF(kx]@`|dקrP̅+l'g C;]a7{ >fm]bׅʁz7"M/bQrH%_Ci(gACbI`N1a36rnsQ wOMtc}gɤfl[^х_%s%h^:Vnq65b}K( uɦx?>Y{XhwyNcxˎ"eBH41ӀC/}NT .sL"IȦؾ (Dc/]/32+{Oj̀ce!&ZIyhˬK~ƏC_f/ݭuX94r4>5k37<ņ_P홻ئ>j7H?y\X  ]8dz&C!?~!J{Oma81%9^=1Z}(Jr[ @J;]u28_)ߡVSooN8ћ8?Gɗr[byքSs`J"⺾ZA \DQP!"Y_"-[`_̐(IIp٥M߬KIh9o=|%7zZ7'׿V Et0v3-+,H*4VRx(|gD;t{ 'I~,)+N #.2+0[b ::XU4!54 y1;1G `dEpC` 3\d hKVOX^b$J{8i{i8;슶 6!Wh(jrpݙCU.ASzփ\Lb-nm t%ؾ%m"sxӯceen"0Y2EhCF*k5*,7#-Dgie/wڨ> ~̈P)q ֧,V"\Ё4 oA>[sz Ey\.a矜uBc ,&JȴW`n`1 \s>!JB[?zg޳c C{30 l5%5df M"-!Bg:>W`M Mx)Q, næ}?u}KK\tU(r.2)}̡u(5!o9a({]CC9_IG"5P(UݿD"gK|bp΋*0u-$c ޹Av>Et(PAec&Ƴdf khi +``z#ɹgP5P3zm^Ai766cx aƫꂍ.qVn;>Ii&0&|JDGbmG?)vs jae jO(HexYdk 튊6u멳#ZrdYu+ —Skk('0MXNadynzV^3B9˹W)$ Amiު[HM}-C!mUGjw`~6EܜeEڗ|`{)SM4GJݑXj؇_ެvO'2s`,x-)V\&j4=۾&2U1{ ض`u-:[k kި7te" K{V\c+f5I ʂ Q֏s}8n/B=b])-}< mP&~4"j1sc['/xxv^{캐 m.}ؘ$K@i 8![l'q.k^J z]/iPϾJΤ(^%KI]ũ5(ƫ +`YL@lM[{05MFu形^G"0opCFD@ g23W5% VZ>L%z,tP׆#AqeCIJ "|,[|H$fPg`С ZLBV8gN7)^2ӺYk7ew2?_"saau!\Ε̷z7|+P`|yn)p|䀔DG,/<aJ0n|*bg+@|{ aY>P@XE!\CEWx5QRHuugrތbNqhPq hs+ TiLTb(D̥<#pxD{x2 i-k=!]= Z KZ1= 2XAmDP#&QjYu|N% ncw"kHY`5N;52uԱe^r>s>?@Zȡ Bf lkB>_' ]*r襖eQAuS8Ӂ:4^DԦ#!䬱t˃C qWIhpY 3SvX?%~+tN fe4kUHBKg4hdƘ,, KQ=Up"6ʊ, fΘ](RHJ"ֻL"ɜ<'~'.DN芜3b91R{`MSQikvF&*Ʊ2/B|Di[9חȁF,-hP aIG+l_s׾'aX"”ףK0_$[pT4Eйg9RoZ'Z5tR9A&6mݍHѶ^P% 팹86^?ZSFo@'| 앦<ȣ&>AܔrjԚE_#R4Z  De+<|5{#߆5@'n3ǫ|G=ܑ}  1&idI9'ꈍBL Z*cQ䃰SbƱ/GsL j<cCjbwRzzKۊEc^tHTd6fOm"KKY;)),`NݾgQAu˷tސvLP 7g+3sjN@:$sԶPx3ܸw~7]C҂O;cH@0J#)qGo6ox8,4RWХ;d4x.r? F:J6Bͨw `=YE\ͤ5x|a%NSxxb TBN|baҖ@h)7#*?LVߊV&"eue'_IB9{Am}vj".~)m!Mq!ߌ'2}Nf'~8x*LKmJ&So=6hEJ!l#*Jr eĹn4kb*Skm?XwXfǻEmKi6a`ͭvI^̯K>܊P[s3v⣕g'i Hd~2_i7AFǘ\y!CmΣ@f>J/dݯQLXP3-UVWDbo \j>.c< x(1>Qr-ȉ !Pq4Ҵ wۍuB7un*{EPM"5VW)P(;4"T+a9_=x#!!6%F| 6 nPOYHgl9џ@\JB^L}@Ăew /DRT ֩A_Nl'Y_s7+P+ξ97k~˴k(5"FKB=~*p*LKH8NcBՂ0[}-t حC%G|J䦮pw=\)R,"?ad8y~qqy֡{\:c!ڦ5RcP\Kt@V뭞n1T8 Hv*;:0;DtmyxV Ǹy K*ig b4{kI<)!3& 'g_ͦbl;K#3%ҵj.{Xrxnj[?D$'5Fxg_:ofwI!g#/&rXS!?gLڲӆ bIBR{e[I ,#ٍ򳔺#iS=LH^Ȕ-uHA )UMs Kv҅o߼GfN%Yc(&]z- 6( p O:yZrZ]xZl".2*zR3]>Ә̅j-f_AA!OH WͭwPfs=J~bSPOÛbNm߶ bLŒ^"PR+ڷ;>!|*"($>Ry4af]!/B.FCFtÑDwi22|{ĂJQ^#~y5C6R5&D&ǥ CLMf5Izj@I<.rȧҮ$zwՓ&͹3:I^PոMWr6 h|#ΐ[i@U}+/dF*;!K\L?JwZ3=%O٨o&0kK[f/E@ԇ{PaQ`gYf3,?V qLCr9TYsyHo?vkIr* $)UQZc#o(2j1*WkyR2Hz҂_?#iv8]U9ó_M01f9X{ЙueYFhxDQ6,ҟbġ YCL~d]x}z"zʹ#-ڴÆs2yz׹Kn\K#tϚ^Tv=Mx[$ yƁR>)rjRRй[;1+omPp~Ս(^Uw"&?Z5n8E4F58Ο(befW+7Z8[uMSsh-Gӂ#8~;a)G92U3!h9{"܄墎apII,;6oԫ4nmOKVuG}d>Ɩɏ?ڶ԰l =3 lveE8wz?MAw ^|]н*T #"} "׽4GFrM>@ڡVAKZѡ YvFAIA8r{6zC$D npbW#BQbݰG|ȟ"٩♙ź0):0]EbC@!3KG7E7̋n!i!:j}HЅdX=_V aeH *-&S}JSxyZLRTٺ 90HW"I`} B0' ýښ AL+drQmxvH*}NTzj6'تӟGY9әi4\+}"%dgdӪs^[#}m2*by /OnՉ#!ex 0^Vx[Vcs;aTaYx1,qY.l٢ k"FQv0m!q)T_F\1 ouq,z׏5fAVS'coisdF҇veu#kx*izv11@TRBL.61;Qpˑt)ˈ6[7[(-ZI0ވ}*JR% :QvR Sa*Xly3E,5m8<&l2x>CW:h┎t]*i e'JL/U%|\2آ hQsAc6XǪ?5V[U[XaZ sus^Fmܵ倞PZL§r"wSXÌc rQ*|\T"2A=myR4Y#ꪤwF~ߢg?E/@lEhp]_O#CMAt*_\lL9~9Ms sr=J X+4?FVZ;zG%{=3ïqnNDn#OjߞL>В>-<[bq]}+R AJ5i-V9v',Pxw&WT(^ iv_@h$qHp@G1(ʯ*E@pZRٺDr9>mS˂;I3\*vtO={Evssq׍bi~*i(5V\*Cn;P/Yq%w_#3Wq͢>"vE>qOQ/Ƶ0/e|dS/1Wf(6h^ N;-GnZsr\0^V<\;apȳo4L*Ii=l+gUwt_LפR®7*292ZC;*v>NYQMq9;)zGd'&1>&484^N<@@8d djƩ ]mfo_y1>ܝgS+=Ͻȧ~ZR{VFE{$;I\ńjo~fxH`i OI:ǖJt}a_+sBk?c(u4EX{*ތN֘,pm6bZp#[$u_T #bNj~2=h[ ,{n隶Mf0 ?9{b% UTɘx\c?{PCickd̪3BCo{Lt|c/#NMm#i Ό5XҮgx0TWH8ߺ\!amm#|4Ә N#[S`*,ezWAߓExl{ro, m2*o}ouGve>Z@z.Xbz[L7;w2uSiO=Q)6^;lY? a,Na 'obrI RF޽+)\qPycp2HyS1:A ih0 b dwKbt8hly-tWa 3MJr6Q+Dn.[-3|ET-N$/kj;mE8yۊXW?xt2W8M/¸pmC\{78>v|7M!U3:jӨ-cI#-pTz]{`Hh$3KBQ ,/J|*KO^_Fq`g#0/wNW 8-q3.ZXid*P*7F 龊 hd#El[CB: 1FQ}֛Z8i`u⹴n\&ɼZS1Ӹ\d}* O3~cXܞ&pzGB ԺP׾yW6K0&_LǪm䀟n"ECo:ݰkw-Mq&ۆ475[uBo:Ar{бݼ_TR+xL8I POZ­32JW(} x6>C<}Sfx+#V0Tv" l2;Sy/H imM)嘗%'QYpq-֣;_ THרpz!zЄbLplt~g2cOA Rvɷ)MRT=ԓ=3}:xJ6>=o-Wq#Pm 4'Curd9C;Mpvk؇:}i&U Ȅܝu}?GC}kPi.,$+ X Z@vqj3: joM]=Sj9N ?B5?"F񗄅zB$uY/3Q&Y:G84dYYEd> )쑚'Q f!NqaюSh*L;gӕ.Χ3_%ʩhcZԉyqӟv޼%}$WQMv1惨&,a XXeFz-G`r WHy Q3'(h Lp`ܶw!$N"Uf?c/HJ"uکYr@*fFɷ{>r]gfnBNšj!ikA).&.#T~sYsv}j]0sl+!+ 5i/ bLuc CM|[-*QPdjz0Cm9=թL7x+_2U7;I:0km8EGojw Ξ 뒪c(bkuga4|³M \j8 2]K؋>e,n|&13ak {EYpEV aDٵ9%+q^`ڝ/g;% PI4H^!⽸:lcYM")*mhߢrA`V!9p)\&$%G`!ϽnT>v8~ܛ=ɫX,A% ?NdBj^T&n bAPykOn"j>50 ToYlOd < <3F3Xƕ+ 8VR3c@%e s[&> C(:O"OӃ.acϙɫBAU~غnk??=(9K)pۙ j qGq<zdnw *ƒeQg2Kؽ_ʝNs p mz#ywզb2#r‡>]ǭ ՒGbtZ)A"%NVϿ's*EB~^ <ҪۣcN _(\4aܐ/dHΕFQohd!pNy}Sp^зXP&JɭTP8/=y\L䓯7jj3Rv,B"딑}ķykɊ&&pgC9–Fbed)\A)#O; f/r@}M0`m#sٔV"9/)]R+3dhP5H֜΄9v#^g?ixZnf,"IJحEk&[Ie))7(SƜa3{[ t2wg2qx!^t ֣H˝Z-qlV5rNNgdNCs&egV9K3_C;]}2&pVޤssњ')}_svftp$^{1"˳l.3w)(כ]k 3S#]11VVFUֲ- b?1eӁyC p֗CUr&_]:!oʇb,^xelB$cjF%ɗ CT6 vs>2bn fL J|#">$hQ5(%ݙ 1S#\„z"+T̖3>;) 5Yy B#5f޺ˡ0Ąeel" gZo"ڝ_,JSSҌaQ=LFuxmp,*ˆEcܷ3,OW<֥T+.e?gSjC ,tڭS|Z 䟁cûbiPtv'M-tN*նK6YVʒVhŽct~fJ:)xYI,EO q dy-2f2r2-j_d@A1S ա#H$frUra`>I@kz_鐴En"9[bصl11a|JGVbZQ&74pVdK}.:}[t݁k$t$2BzãpL8\-hGl^Tɭen',q ,f#pWQ*q>':{4Ce1p䌎V*p){ǐzPp#ҵfidA`J֩ kި( yd8^\rcQJu+:2(q͈$]ۑ{v4M)+J%1"/?&ϵKNzi,3[98ZlRmf?\nO!b|x<.]i{h"!=-dL0|ԧM6lՏwGG;~+OZ."v.7˵ʭ< ,{Ew%Obmvύi}~6Xpa/`Qث}vޔ'e68μ<(T=QPP2B*TԶX;K@|r$S%y# . v&=|랂ء6v|1"ea$ ngWEc ՐzP?XY_rq+ d?$ӥ{U쾩" k1z )eţBia i5h_Ƚ^-6@39r:#ǪFZX".Heƺ"UE qN TU牭]BU;s׬\?PPa勞HtK (2OѢ, x[d h%P!YGB@v,YO u2fI-65Xk8e p"! 1O!U+2VO 2vڹZ[6!>Pk6!@S(^ xYɗ׫AB> yjc7ub-U)3u"y?`#J>DW?/eպ- 6f;`'hd=W8%e΢P̾KAg4t'O u gs)3}cWQ7W3 D{zqݛ LḶP;t/eDžbObM/ !@X_d1fI<`ٯg$"|rξ$:LwQ.*E{FLi-$9\zEf<^n|,C!\njpm?-A#–/ 3E[EDf+=Dz}>f 5vVNB.&<,g2 83 ~e<ĝ #ů g^/mUJ=paY2 sh3(ufn&c7h8YOُRlZ.ף03ui6= B|mT3U9W.Cs7`"S6~5KcM2I'f-8Q=2N(Wi;n vc%xc<пY63(ːrɀQ2ɚ3MB CKIlEϖIn?g0ơ9ȕ֟hԔՔyv'.{s"8֣Pc Gl YK;I )Rc# T'Ok`D M-~JTToٴu6Eȧp0I AJ˜ (2bm Kށ/'qZ_~J8г<_<%5Fv )3 n;ƻ2ȽnޢycB.%ȄGqɒY?@xv9qϤpB &1LFtBr&Ut-Gn6< 0B|Nfp'ðTH} ?K+;LF06 ʫQ:LGllj|BǸ<($*Nb?L cX~Rs/)WllvIJ^rXuw8Y'\菋ac41Ē꡿%[ 3E}- XޢU݂=aa}Ī^!zo?yg-N sS|$cFa%]@~SaħA~>߂=(<"ҵ7Y'EߵA[?.6z[/ (AW~V@K4^bbȍi(͓IHD!Zn*d vp5=J]YaBB,\#|pGuifzJw?MJ^ . MtI!&3zx8DTQnLSaíbPKG0قs'Gշ`:%t);_@ULBcvDž-yNżla1OrSE|<ߐ>(mrF\JT{a>o}f=Eȶ(;{#dhvz˚M6Wr߱J*rZ`-v=e^(oK]@ @˄xs W ,#'4j &3ml $ߡªYѥa9-OPoNhq~HhKҐb&aOJ?GcX=iDV~n Q}7Z !I=1ԇH"Rj訸y!Qh)JY6 Nix[ +D |b4]ì6._-SdrlrmH$,o!mp4;f &+ajlI8!XB&2ǁU{Z=_j9oJq&2$3Q͡/Y.xCҠG2=2{+F"z'Y7fsvi]}HB!Us^cO,͠s!DLw>=fe2;nl- O DL]J].3d}>{&/cy ˫;OBnE#q[ 4`W~K)= $s45j&<&iyR;eA)Wَ|f+rWVN]vvcqJFteF|T"h,^oH F?W5_Fr9GڪZG zo8b*dp̱y7U4K~ ) ,Zw+\jViK)e=ʋ`=0f9e.~MT݆Q JQ ?A؛$uNWo46-bN~C/o@m%+ؖl3ldB6]ut$ğpBլkŨczS`z½ S~LuθeG3R:(&Is2DhF%Ե7Nw9e, HXh7VnW)O!'7Sՙj7F.ND;5{? Ɛ1?8Tw/plU걑Zt򓽮mlF(%E˟PqkV<%> (z;mGZ:G_GFGxcvU% _`X*:6 m^Y1X7 jdeJaqE]"ĸ*à֐y8:؋s)χ$NO HF#cd3 TѲ?bb? o.@q<_O-񆢓]Xå`&~EXG֛hs^Pۗ8jy86e.żs& BJo ;X"W h^fbBRQiJwx %ޮVpt ږbRE寝c7"@B @b|kLzA5$&GoT '9ơI{k V[1cq8Fʕ<2p#{&~,iݶ$Ò^ޖ.nD_RґJu@ )pw%Xiɶ#DܭˈQqk2:nFw>ѲxgY o<}8N)k$ %ۚiDsL]^D մM(,XM6CU)d3* *7'G&`~.xz?%/x|~ eR!?pT \ LiN{C %'6yk8Y{ANX;}UEDz4yꑧR\>#C{ֳ, k3H 4:`xcx\$3AQ2k!N B55Yxx*J[,H'CWA1A̒\Vﻅ5\k.:\m.^NxvOg{GN/~eb@O|a@#+a!ȏ>܇;k:$QuR"IWP,׹p@(\AI!~:9Q &\Ѧ1u(ҍL+uHk_ ;$=vuH]08fY˜6Ђuу7&S#IH'N=5yK e1g?U"2wq#kYx'##$xf&B$%oO\ {p,Ls*.#u;)IezfvB;eӾҭކ,r#F\xU~j lhɹk eBV!`o[tԂG|.I6TdLAU@*30p_u}ZUFuEB;LQZg̀Q>1s7 )-,P` H$@cE mY&^+!KV$g4Mm|ќ8]=I/, `դI Ph|%jMҩ0W{0lͽ14I9_PςF#j|rV0n0÷CKi33OCSy:.垁W2lN T97NbWW B$RUfZ8o?ɶ$ZqKVqZirӒY&Ic"|ہ8 dI+hB}M:$jk8{{Kl? qZ `7PlN+xnֱ]aȏu )!t/GչЬ?XkL+JAbkVHcÿoШP)MwU* gbPk K!!<ϨQO 4(L:IBGϰݔ[ $-6&7.SNUiT'vc}|JB1R9:8T^MۤB)ʆ~#U)~M&@,Z@kϦ~ yp8ZV}'s$Q(Mcܪ*T>mwۏc߲#&~赤̪Bg;BLXFC]:BP.MI|ń; /́"La(J4cA%!W>X#{MZ֋GZ6 gt.`9ep'onAZ'崗F7a5l#@Ps3ظYKTNG;BQi!!|xxYW08·(C/EްǏrTlȟ X*$6f "EԌGTJӡ%aq M_7XUҒ&*熏Ogk^wE]OPb%!\X_)Be?.ZDZ8i&`oXj|d$ N s!`H.sMO%N0?94X  'M%:yA8+/MkY $ltC,6Ձ>Kq(v7_۶&xqOu2=>=HBC&CeC)M Y߯>פK j7Z [۫KِQ7<" G\7 ~*N0M|BF!q$ Ds^RB1mjUPN{?DcQԊyeҠ#[7BA\!m&TFLVH]4AR1E Ғr.-^HWT6d]ӊ;$?pToKdCdy(D3ݳAՐ3(or ݜf8|`2B MM#sɽd ?} fڗ⨌VYvʕ#yxD#rm4׎NүADGW>G<41/H/.ёO?ٚ/J~?I3Fse9ſFW3OEyx dK7/T6\j4Xxg>dz+S::!-r!ݦLyi<'exnD{5/ <*t}isq/Ɗ *}?n1Ra:mVfEN/ᄚz@j.1Zp<,"lqOSg?={N_|yZ{j~ %* Y [p3@őfN-6>v`z1QOPA,,?|A%S2~1 ȸr=9Hgt)3/{{ϵF,p'FjwǼf=`FzԷI)SQI]_acGN%,\D"Z$ 0(* t7?ő@˨kB^ٍNЈAR/~2saR{uS e0Mxo8E9f`ox+,_ 'ή2e+*^)o4.8GtH{ P5W0z~J, LکOr8b $%!$ 8>^C7AÓȏI"*zިI6WAg}l5otz $jLqV˴,[yШ )`=f+6C7,whƒF; v*^tߺu?E5kD#u`ԥTg|$}!ha_)*dMcXj-i֊umUw@wS^}ROC)u$h2J b#Uԣ4#RU1Uʢ%gKTU$8Y̝^Fo% %oJLJ /PCBZ —T>cz=;lXI3(h>4#My+̟O퉟HvLm>S<ޘ?LQ-֟FyKQ }ox-gXƉy ٯ,aO֓وHƁ 7tUר_>ګ p_"z #%>"Fvn =:GqD2~13+MN MB7| #m%H*c뺹k01 $2=5BEJŗY @mK|v b dՍCk?mFvҞWrɎW%tL(wF6ث\>FkXqS6LD[K-w´V<׻*[ #{GKHi~=H=P]T+ zڊ~I,S,W ѳK"UwIv#zy74+8x@-VX֬ٴ0H 2Yw9c&&#>գӝA ^|4v$˝M 9I(\P^ =GhرG VaIu5 ~-5Wm ˾Ru _F3=A%q/'7")X}is&S|!~.mߧ ӭ{֣d'`Q*Uoj!d 1eT`ۯ՛I&#IfCCOvU7őa^ ayM{@xW&*.j;K'!_(7e0zC뱡))ZC F#E*Hhq&1D2i 3 @{&% ˾וйEa <-aVwIՂ z2f܀[TU?xE~mɴ#+?wY72\f.*ZbE9lW\aa Ȩi:M}A2O;^ :5CW ]V< bK: TmThIMe+AQ "<O OlіeD(=t_1~1igV8+rYת(b%d-iA`gGk]L{~w՜atz2Ҝ)'2D\D#S3rt=sb4 ZI.1+nHde-gi}dwW(m)q毂W{c[gM!+7Vtb~@nI@W+SA-bKc;1kbϿu+;´b/ΐl:q4Ҝ/c ws5ٮ;aɯJb+W4g?Mz{n9%|aa9]:vTŰ/u e6^4Z66A Bhl@<[D6J5-cj+){T|#BD!+FYW.%hM_.݆+:eSGdf%\ bho/N'dlT؜H&0V D8Ij 3jSGQ,Bqw_eBYNO|Ѫ(l{%igx< vv]}usUg ô:cqK fot'[l um#UUo 0ka̐iFµGGRS޾X7E7+Xv)9 h* {A/+bTr>jD~ 'H m,8D=Wr:Կzo4iP߽+JfULc9ɪd&%bGG! JikaRX ? P'cգ#܇ͺc > ^]'yW~lq^#eP_z*M`[tDDx7ZCġcBcD@ i$t໒Xُ&w@<\M^ 9~Pc AiddE⩑ĈUZ*6<> *J״`ʧ)?\O yR>)Z*&[͡mB`8Q;#F{U TI8k yM-?kMehJ-0dId6n4w鶐:o9{il>v`CfڟG #=|Hyn0=QY mkנMscG/>~5|}Wȅ PU 7,ͭZ*U$,񀧝I9?eTj_l DNBMԘ0h-N/dUij(8jHH"puv3AE<׶ @Ъk_,h>E$˞$ꉥWr}@qL+jyk5R3<-l5mx1[-m"Un`J! Vf%&kdRj*,7UgZ M>G`$&:tgI݂cTpLS{xC(AO`!}O Q±bS\(-xT@;/= qe0Hmq8]DkEDĎ8b285LJw \%h1ԂQd, ?_D?=D2N> |zsKD6cs% *N̬ۏg#c䲵Okؙo498D)zL}m$^8` ޕn]HWo=5z)w|:H`|)֡isJn o' (^Kņ9<'#uۺRe g[ Uu8p\?Xl:iPFs'mҥ[#fNEmQD)b`M8ڝ"loXrQjBsH2vx_ؐ045Jc/.?[ i~|{eYgok>n۩A67 Q=uKRV"8G Ȳ*Uih/[ᄩӗpZNeyH*ڽJp_qiAסNW(QA{>\3Bu%"i |EFE9 fi[^*H)&p57ڑ-kpzW<##42pLX~]] @' LA)_W_Xclb8T ;{U( s M{=B2,VcV~dwBq1Il0:"@4iF*O.j`brc}=T< =3I D HCVi]A<YXl1\}O4zQ=el`;{@eL7+˻Ѯ]VC~w{'Pj)u5S3lhT"e1dS׎ݴʂ"ɹ㮺`Ih' J16p~wAo֤8q'06-?2,(c]is۞BZ;wI#&vvN>^] I.fW1iܤ]btgƔ;܍~BOT_j8&L )BG~iRtt *J{SOeiZ~"{,M M՜t JG;0 /B52tK7>ěܟo/Y2P]v:w1@id3|eTlV'ˍvo&(%纙 _dD;wJkytb$I!~"dLs](amf+WG14z&̎*r.7ΧY}®0u0ڳuᒸ տi0-/Mxʎ0']x ymWh vtulga1"ShyYnFJh%VNCt-ч=S$ʨTɀcT1$^ QRq,A ,IR+\ʢ>Y 54gN-b蟿e(уd8^7!a\z?% 7Dr`E 5cCU. #})rN뉕J jte>hwKBw܆x|Bjbp?;$͎ֈtQ2mY;:_7 =&scqyh?i?Mg-@AX TJ]k"F@&\z "ˊ6,Lߠey⬬4^GJQa\}{iW`P /\7ݹDZ7v֓-=,p?a&y]>6Ο3H+y kO5Ϡ 2 0S˕Eu^oc8D+^ɐO[ TT8F 0zV l|jTd/k+ v.bn\Z:6iڇe'W+2Cš`{̭jDCn>،iҦ 6p?p:ȁNQGNFJ_4rɪ7FY t}$Q j ?[eoivWavzT TKZxL-l%[!'e'%zb8y 6=OmgU"@j*#cV;]LX52#BɌaT'dO+՘亂KwVjyU)IqIAiаQRmWܳ<^z#AWUwϏĴLh ñx7y3&X@0I2 |;48>hMۥC pt]{by; IZReO.XyqI|f2kOOHW[l(MC\ =q+X$/塺h: ckvD?*/4q.Ld|c`FXT_V$^\>֟@I g>?:Cs"!gygwY/- mQ>FX0vK#002֫L?afVgͪWJ(K&]]N3#;Ӡ= B 0gmR Iތ/!xvql , *C;,:DنY6m5<ft%)kiq輻V+]7Æ8=PX&}L4"cLL:Z͛ @␭{BoXvhGSw;H/lj@DCKIv&4~S$Fԇ- Oˍ#PD؍wv_f2|.=-1ႍ RU7vyH1=\""JOJ c] -O&7qM c҄;k@?1ndC:!ZBXc=4E d5P; [;?z{I;PpMSBeWI2S ?a`;dNhڢժn*/6r4 LtD O{̶MGZ|ߛ<_GwU/G_LB1bTԔGoC\m!DYg=,KE]!C{Ů0L33#@F$Lb\@K֮Gf2هS~2R5S𤴅 s:bXr^!Oy-H+l)E[^A6s& 4bIQ+ h<,GlCϸT#+u# ?!@KaE;mrx#L?o)lxD W"d*] xV)LB_=y k&-QQm+ц&ȱde/窷:M?fŎ,Oz-L鼍 p bH )0$ [!?SS(&*q{53s6{T(nZZSTɀŌIx Cb`Gv@ 9syWuBFH;OyªW2ozSٹ}33؞ v\3UD3 [X1c(dDū;3E!r7ZM%|{0!~:?|"X/XdԼ >8Bt9GHhhb p&^ ĥuy.hAo\*9tK贕^w GJh.:Z}%\2||lh`Ye ٰꀔF[ / }VF1_6."ʛnV'k#<n/oUT/`ROqd4G٨Rҍ'q0k}a}#㦸$p? !ntvJi@ٕWLrdM65GP^SWMmO0y=u}nQ@^?TJ $/^)Q䷁[SdXpR f,61ima b M֧wv7p8{oH1/ZP wM֕e˒PF61mIyg`Z#ok\nth^P%f$$9t W-$G3On`[=f dY F%Ał03y~xg.~j_ю3@i ՓRq=cy3[k*.CqfG"lE){woFFpal7X6P9N\0'.Dܝa67Ï~Ŭظ2T/w{e m3= ,WЮ k0"2bS߫<!4~O 2$3?Ȭ<#.+0bTY~xw.Cˀ ML 'H{P̢x1P+6z3 -bB{i-n <=Jn|U(naB6Miy]ÉC:7"n+,pUm6\D7ih:O+jG6ZqFc) 88 )}>V{:h6mUc͈=Ʃ%KBh cyC@9WPi̬Ō,>/]EX`UC@'ZO z@lS݀?[?<:^)ѿCT5 O z' Zre%GzJז窮Q#ڵnE_I ?/F\mÕ&ԲlVv//{!΂2^J R@ϨU|b ) u0l:^LA#λz4R2 !kЈG(av!KƎ7QɵtXC8{K%f->M m-kI'  vv{>A+wo5 #?&u;7g[AG7-Z^y#zYwmH/҆FA AEY.2# T_V˰'(S<3&,X'Cp6FOsfomaBP& B -.OwȤ[P."=QE6@x~׳GOCeiȢ {)V*(/%\µc?w9iٍIvOb1&=&);$T@hOؿ*G~!! )Vw`}mlM߮{vLhL$ߨ6Y >85s{:wꅟmn Y!{"#Hz*EF<[ޙ_0 q,s(IߗY*TK3 )d®#:VҴ*piy gT _"OV 5x,%kHjҀ?އ{ Y{Y@{v"d⫂' Bz)|+wF% lJ-%rdxtX_Zp~ UQhOLK+"/R$ rUW=|^pd%9Pz/%`;`>^ ocAw\1;(\p@MKۯ'%S\;NeZO沠Yv7NC4#X۩} KN8Oew]ĴbZ5K;xMuky$$l;:\mC-9}0LjlῘN+eIz6 dBF4l<&u.ZYƪ_vLsx t)A  O+'&9KB?4ަ>R>^)1+O2/`0Bא{ʱ};q ƍ4ATju#m-Q!e8ä˵&x$sy|Zt:-76]mNFX@oolR8M?A'T䝁Eqܡ`\6s sfWa5WX3Aƒ GtVŕw++5ԳdRUe <:AQ?Ϋ[Oh= _l콤wM@HF;ŝe? ޛg,*DkbqȺ~N687x"+pq.eكl0OZ{uZ8a;}M݌ԊjsO\B΍^vLè=Kkd]R^vTgxQujQT>lJg,:LMܓ,E%Zڰ^Tgy1 <054!eeNZ/J݂erMkxrpImr+֪XD rԵضATȋ)Rt` ܟ<04]ySئ,wY>9IyQBӌVcJ]Qm6e\o!P3%ů{hQۯvZMzxCijCu?izq{f6ŒgNWmEsco=x"?7YP/^Rb}4O30e!6&_Ro2BAɛ[̤a2\"Kt6SdK{)˻EYçM\oY` 54T>p?=O&@xF)YTPI(KH))S1c^Qu}V =1W|O k771a >$S{V [ 'aCS[; qɢ긵R2&e+ FbXmR1b'%mV.|#[HU(6a.p."` 86`;'27ᩈa,}<τqT>H[;%`ˆ*wFer$1 ny\Nc0./NG8LGLar L{yt[ gI:<~^eۘz(qZNK5 .f5#=@ŵ1U1qI"B׷ S(]BW+@W uX:v~zL2A<9JjЧtFpc=VRBRtoWH/%P2SL'̈@8 (Kzq )j5u=K hx6 iDÛȞ9ʺ*'Dt4oacd"ZC l68[-`bBcu4b^]˩45pm+Bd"SwqcnL*m)ڽJa|$3]̇UW1+Ni?*܋RMJNL\~@:Vԭ%G>lcaZˑ4XI/ A'HuR* xGfT!P8Z9f[ kkF$Bׄ[ @2{K,򹐵$XaVR[f\= ! I |Ų8 ~ `ؗ_+! Vނɹp Fk3πqXaQaq|& W|?O5l|SL9<MRrRv*JI km_ 4M6۽}ݭ0_;ӰQ .YIL-mfEn9Jr.qvڵ (gnuXjEH m]>꧛*C M$& 7S͜bLwȠzrJaVR~.[\4>oQـfAU*pQ[sGa (Bv9whL/]YHm}%o5h'PWG(}KT|߁OQk0 h+a6 ?vv 7Gi#WV{or0҆8O\/oL`HN v Elî3ÇI{pkCJ1&vtܰW᧿2<DuͼͳA߾ ϶A6Qla54x%$F0TSQؙҕ`#Npe5ZbРRщNDdox>||z?k#c12|B>[bU3U3qWPF`Ш;]m܎\,?eHLW׃ѹ4?eF[~AyG(ZARbUw}!\+c %#5qhwMWPBsd]ی*h$c-ђG?kBA Tp: [OQO؛=.-D4H_̥{J: dU5SI`Jow׽8'EɣOF,m>&ZiA-C#R<+`nP}GkVhv{E' !%qhPlvDr ˈK[sBX l KF Wa?rgM6`++mJ g3@[e[m| &zi76]ѶC-e I6hdСQguHq- 0E}\^ 9QG ts-1f PQ_!eP9]k;3"6cݨXW!P#HDŒzh! t0:?M5>ԧ_z8f1-!f_g2bkg>7*$i9 K퓆*Mvx^Tᠸˍ.D%1NC۠x 붼njvG gsZ]A,$q27Wm|}wb}c=B#kZR\ɼpj"ZE> AGoY~MCpԎ9t`Σf^/y-$M7'׻đ! '-] WM ̤5jۮ{kv_ B[I[fɇfB3oٝڛde0M;H[7]zޚf ׉'׾ݒ?(yk\jXdoq,]3Z 9-L)K7IiFdT # tfc9RY$Nw$Sm}%aAi[#l`'DM/{C 7p!:w * 6) zX뮦n.7LޮUɠ4c{sG٠N4"wF!Wԕ mw+.EvLUؘ/o#bUu9i>[mr\Vւ^kuiyLiu[n$.%Պ[`Zm(4rlx:|>HeFޔ"|vLN$]~䪁P9o-Ȣ@ǧsՖseȣi8mO]x!73 .W|gxCh">>!nr1lJ(o%>*CNH+fi9V$_竸EP:3!؅RF_Ǥڑr TBiP [F*?lt_xQYqUK&F?zsaI}N6Ҽ$m?E%Sj9$$pzO&͔mO[fcJ:mС'ԏ!́%sUf8;ltwztE3Sni`RDm ^.f^1hC4N5_xAqX>)v"]O^Jv=:*Ǖ"O_~gT'ʳjYc{noI(rZf3s3OV>).F:N{RS7STrFfNn~`.B.~h /a97=a @KK'$̈SM!lN ca88N&{Jəad--G9y*ȜL qcGI 4ɬ6Mxmp6:ֶoV6[gu!%a^r"[:+ƥSFZ9ѐusZDJWZHWeU%$)cޭj,zr=&qW|&9gG$O, $&b s̗>SVU RV:$^w9jrP$璧ʀPb9X nOE6!`_B\0DV+yzC>M?Ē)yM@aCuGbJ0^!JAo(QfssëK! 7tQ=V۬_p rql(i}JI \\%d*lsd|# ()=j9s/ Ք-&sExn+L 2%Ûo}2YV`K(n Emu`Z JZ܀8w]V8 So3aA^I2,i'׻T0Zs5O(ߠ;˾=@T1(Ul;nޚ}RdS{>q n+Ԯ%us$4XT12UM2O:le%I\FhIBx4(cٓp v腏KEY=dEqf7ڝ)piu A94č23lBZ$M#QV^a~ m0"#%ْGȈF~\Ċ쌲ҝ(i@,lEq5::#Ah.үQ}pqV7##ƳD_kԍJAB`bU7߆tEQ{[)UmoZa-,RN!]G %yφ7݆!-Wva{ ?~ʭ,XB^bUݩJT{vLrTF_%Я']%No< ѭ4iV uwO4w_ 0"W#{#FJd&0uE9 p{`/Xȇ nảJyF􂵻˰D#% ga3[lYnL2k#sR~i"'_ꬌ @pMra\"k~[4{(/hoxoLvU+p7Aaw(׹ק $?:mg2y~1 Y/ .D&DkK|LQhU/ʦ(~Hgt Y^. xjڴ\\H2[)!r7E1H3D .6i=fc8֛]{ŇaDٲl|HlxZhw~3}N%(p'VF#I\^.NH탤Zo{>rV"2`4?C=YB+ahg N9|P`7!s Y#QL0L܎Fk&^6E1#KTtq\aSX-x8Q,pƊKG7">gޤv_\[ &[00pb}Ufe,CjOV?r);2 ϞqI氄*i`ZR;l&dl/-9 j5un~ %#ǨodsTgܭ+ぐ@ӄ+Vmr&Hɇ7N VSm2*wNS[I 45ʞk+LDX(!mp$:$s'ϢtnGqcBX/tpwX2zVP/3E%eb=wXmE' D|!.[$& }3Q?@7>Rtآtuzg .Eԗ(Fl9Z4ad+9 dICt-ec[Gw[i1ʊpfͿ>2oOx/JgD{[5˥׊ n]?>!2 V^|B]9\ĠU#Yr;?8V}/dF -JxȢt2/󡱞]#՞# は؛]vgUAZtUe, f!e| DxF#@цS4n"S陈eN`3^֓Vw. 1&NTx҂ 35B2T`y Ch64X wv;ɋFx7auodQF_&mv9O[@ V  o`TTZ֬J3w-R'.+!7ȉ(JV/X8cb x-E=Ze(Q#{9L,&ق4~#4NoiAKg.I6R ] |/yGi芲VjײO^6-\֪Qsڐ(17 ,X]l sXcL,ʡi-Lfe.^8blwņ'8x`H >j35PI#+D#.kJ/-Ac|୳*wۂS`򾄙X2ոIn72Xa{f|SIܩ I%#Ǵ2u Κ4t}KFIxBD *_u{lʨ%դ׭J!26Zd?vhB|~.qppĺ[ҠEjLjk4 зsk kOǽK3_YS`HǷO1Lk}BG: #IpPSnyc~~#KP\LQqQ@D NlCT2d_,, L*JH|uHv8k v@:9PA{D:•lJ_`) 4t ` p.5{6HAQ?c~G3XxdbM846 U!!],0g£a' Bӎ7,]H6SԖI!(/^l miNäS4EP(lP,2;qU[4&Woz!@?boy@thNjŨֻ@lT u;;%/*yLq,݊2F `lsY˘}8zy/#۷NSכNJJHwխFa ^uDG dNSt!_0@5V5!O^H1״+iIrc7h2EH ]]ߜ\K?Fu,[9J)6РБ9 IX܄QIBa$sh2ȌV@&XL PW|jatS[1stjmЪĀk\n^X _YeT[B/+Ccd,'SI NmC f+a dnvKnB[%FǼ{`VA@F[!^aWv/֨~b߲ély^ꈟId0 >>64W;̤- ]RFS>Nҳɀg;{ٜ>SlNhyz'^wv0_PJ^|*Z,Zwez%NSș(g@z2B|r@'IP@F6m"FlNc3iqu8Ň?ci>%RZYIt]nwb܌NEidP/BUJ^_P 8?IJ ND<2^;=`.|4G2ϰh3T -!%hOj`1V/4@)~S t;QHmdD+Vk{Q΁an;7!;|Q NdT|ABsww C՝-cxXfO_ԁ6jg{s@y)agٔ™=x3xV isQ)l-[C:?(0h9ְFC??>8x4z&#j*Qρa+{>zqfh%FjM%+j],J|L+.rL4 x-KF*`36-*:Pkyә'F IGئ=a3dHW=@ɫE厀4 "JeTqd̠/ܺT&{MT&U]J٧?ҷ7tSg+dG+,=cinۍ`}ٟ+8ʡtvú`[ NQ3;e_D:rJ}IRӂ,e2y 3m򀎊dA3gc L'q8cë3 Q@8:hl~NB;P?*@.[+LOS v'zKtf䤎\o# DY2m|oԮk~o+x=g̦GRB_S53 rMT[ gL!%ٮ:xN m/ Y EX^./ɚ(8%S)@7|=D4Jnj<:<_ `hX m <<AXVjL[͕-oVO⫤ەަjΞmʼY*ur7&2f`y]tM·CVc=x+W(;i[ C$YC* ysa5%! +:uMvBzNrò(v_p6"̼ϱCʯ+&68r1hb_<ӳ4 HN۪c_˾k9p RLDi Mz| 'HPe8S \k*&` Ai"½kcXRڬD#:-}B'~z6 _aaP ,<+ 78"aGü?Q77 CXVj쩗>\lbEW X4tcjܳY{ᦎNWA`M)eTZPbKYh>Cl|z'ۊ)(|GeMk0piΉ/cȩBI3@bs[.J InLycdHx+)SvuW%5i*_12iw3򦭖nX^$%U:uG # ǔ_0M0ĺ`hq^^ qؖ[ AyRj_unMa׊$.o# 4a}̻) [rcW edZMb›5gڞ£<1Ҏc-u* v-~-("6PHql3yt]uA~xr[ b] > AՏmzy\HVh@urŭj=gyn Hp-2fcri6QLp:5<+#=ϵl W! 86aMF0#_{j ҵW`#0үnM\=nڍ4Ꞁ ] |ܞ0']VnkT։"t0*^ &OAmeuTђ+qƚ`bxԍI>P0 [?Rz&I6CZSX{ kVfcY(,3 -Z9iu2#K$<40'PnU Sy4zGnj蝆53B'R[г 5DSmצqd<ͧ+(`w\m 뢿߬0fN)WErtɂ\@&dm ZB~Sj)涵,*uĵT9܈ۆ3w=k:܍Hn 3}ÝRBIȊhH؀00P:9Ѡ3W[ـ#, *5ZtWu=K/u ̫4%ٹ~jx⟉D@tG7}ظ[D3|Giԛ9gJ"C\sW_ja:P~& 1|ɔBQtF/  az3^QhH&Wq|BɞQ^{,Q2a :Xлo8ރɓS6sIHDN`5Džho OvW~I "r+y ΏƃL[3q0{;ڋqBŲ^u ^g| \aµ0g9n<]ʴiԿzYiDIR4#p,LEPKYtᾛX'x I Z&fyհ /M(5zyrl3I3 ѨOrQB뻰[_\S)WI n[ =_TJ[߄|0mdQW^R2<(#KzѐmzZd-2MpZNؑum>G\gVQՠ0gm_Y  Lafwޢrg~wP=; Rp.*gYӗfJjZ/t3#)s!~@z|`u bL }@9!˶C[/~O|c S+vQ}fzT?X]j)YNbee?Q%aAiBK)w}Q+nkX\l_Qo!fp_E;uQ^򵤪lzι=TJ6ތP>;Gi;\pՄ5@O YST9 + =YC ׋v?X;W +akhI`7.g)Ķl^ ͈t 9/if[M*n)m!yzT&'m w:EO-kiҍH+6S0vO)UO%8^4EZ_!u~t]plZdUwǍy8-~;nӑz0&s2 7NFMl,xigzΣZMft]I*RrZvUp^@^1 CڃHʌ?`F쟮d^ 0#:^e /^Jm0V36h$FKkjv|31\dXmvS˷9jufe>'%}3JRY^a_b )Xwe #źһ ܭܷ"  Wq[j5.1&`69;,b̢}.-Rr4AVU'I.Z/\~0Y}[MeLbqƇgC:‰/*g }8ޡFP.IbC1Ww`x i鑐@Üӷ`܏OE*A / (Cٟ%\Ωk)/- &1}BC06 CDCޟCe71r]=rq3Y?POmYV]zm]++I#2Z:lY}KZ@,J^Lv#d;!imNy Ϋ бj=v<,Ż.50\Xvo>:] t ͌F;@XqBx D,}6@䐢!S}9HlnoFRWҴW~lWE :sHYY+{#Fe7j ފÿckwx& ;7Ic eg^H` F3q\`=o5,j1ʨ'Oꦵ|A1ESܦoxaVꕴQhU?\"6[xŀ.*G;w+uޓf7i}'M7 4V@p=W,14,g eE+$Q,0#NvcJbCB:HԤFB/}$;[;bJiyŧ.d"쏚u0!9R7C0 h̫̓nVؕ>rLGKP>_cW)a]FR^Lޓ:pt2bUPQk'/Iyɣ[UlڃT<~h}I܅~6##2 wæD.BZ z02,| 7Y{ȏQٌݳF-May=Y] 禀57z ico<-IBSLKUa*pZ'>-?,n,IOҡ"G,Xn]{UC뜈#ֽ ~MTXtDF8+'";f1ā+p gΗt#{{{ -*oM{f6CJJua 2oIմ!D x'}S#t\SheR}&+9Ul~6K/m7흌Fl٩_.E0 8 FIg-\e C]o7儴 {%p=DI }-t0ËVrD#jwQ dimrNe6ۉcٰmKw_m܊x@.% m#SI 2mo&Xi U_3˃-W\jMK#fE٨dApZ-SU3P!ÏC~x*%Әd>=ߥD5\ZZU, ﻌY^]њԴÁz΂$4Cc<4'q-9$D4ZE}ϵ̥Z;$1)`xŽU#ܨ`&Q07̥lLH9AX;g(@Cv͒8zQJ9-djw=]7.`HQ+#,w~ ?)MRyi]X?YM,Wйys~Y}5Ls/6eL1%^(r]>~mhl+ݿLP2)1nSz0$dqmܽcj]j޺}{0(3{Љ<8ؓ6q )O۵I-g5(zD@崟%JV҃%і+{ j.g%gl/UÁ|O:H?k>/$_ilTVBTۍ٫dQ-vɾ |D-R/HvwCΗ?z[&Z[zau~l6kU2S]fG.c]:](kۖ3\);zWdvsi=A<0QbIE o\/B5>LV"!QC^ِucb(0KJIs-PSP,I%p߫9F7x݈)oVjD/P)5:^dw1%_f;a&y,%!8dBiG\< 3e˳%l@XƖp| q°<')ŏ]R?_[K __AhK!-C ..@B~M {cF5ԯs~۟Ƹ| .pCqM'~FU}vW{盙˙D؅}ad=bp!7*yNF't1L2E&+tgSl2h!a=ѬHbMܛ±Z[2t% {&9̟2 *-ӧtv8sh[L@ˠKa;]ॴcMӂ"0w%F Lk =AoYo? SJLGDji2Sx\纠G S2ŅD<.3ܹRX&JYCa5Me/3+3C%3ux 'ЪdfqO6u)&iz!02VO9~ܨyj?nтCx?$B1+H!eq`=MP~BUZ{6UT3;EK!ԫJԟW. Y($Q(y2NW;xlq0Vz8R#5|tg0ڴVC`5Y=')M˞[hF8/4D օ[IRgÅ6(4rc>˺@n5'be3+h/%wI"? *+Bh{E?c_5k\H롪}Oت 970C 2RrQp[q~&/FxH MY*K(dٯ݁$nORcIy ub@Er X:5 +txk#8h2Dd %   PPË ]:HoBxN2WY6:3:f ܻ bvx!䠙Fئ|4&9!jwѼ<dGqH!DlWE-L• sӻR<@UF/G*;7ht&ֆ;sIH;mSPڂS[{,ц-صߏ䪢pja X|{-&'v g" dY\+" -.dӌ URQ/:*B?MTLVۗS;ـS{9$CИX6v>^GRj5OS3W~x E:iD&+bؑLi j/C}|JL-@~A!D9bOD_aRJzසgf'P!rp*4[ EU$zPvp5K3ZqM%=<`%\vAs^Foz NAC/g{GM{KW56^rR<NđX`6+$"m5NjJiHcK`}>;581)nB~ i]4NƫH-Ҿ^' E'dT,EV;)ۧF0`A <%sPͲm OgI)w+*au9mf V##ZL)kM ذZ0ԚҽJ8~>TF;‚}Njs@(dgҰAH=CkuW PfI̻UO1:E x<. D/&"$ג̥L/v~1qp_rd̈́ՙmw>!f:'᧎J)HdB-,#)'({ X£L˿ps;An?cUR ~̨A>ҕ6'JZ3DW:ߑ|dnZ'㟰fl7ž=e>W,41\`xچ ǢNV>vL˄xz _KVZyQ각[mLhߎU޵F0kɩ~([lt*XZ V0Ȧf`"JKsWypz;D;eH g$2=Яl~aa'5\ޮY |}-f$ b`9s+teGc`eKGl>H$Hvጉ{nGU{~Xi^-4? |i#Y0i<۬ t]34QKY<р%4@8CCcSSLpDqI}-KoIA =u[i=e29?w aQ0BCva}2O,r[/T1:FG} &s"Āmކ$!o7b xO%%kŌhxiˡ%nl:+}PsNdit9ڐSuG9x*"6vIxOvHo~zyc-rolFeka?Y>ǨK(sa_5m(ϞaU%jiqpNCr~/@Td85̬[`6h:69'tFB 0a&JRBЉMt Cy7̍_#&O*JUw!áz8ϊZʚ'om!8Rd0!Jb&yQ^/ $:՛g&p-W@CHLX*Z #u3R\QJc*c#c3"%2n6upƞjqꦥhXͥxj'ATǟwUq#R.>/>ThE P",էP#D asl&ĵ"$CD!̎H'@K^ΰE'.kxCG7m ɮ.H PdHZӝ\FuDTgK|7SitHpy)0"`ptUBC|d 1k%B|/T) ^]5KkHeF1# ᡧoe $}VJpEshiOW@`'Z K9odsR8T+ͺ[,5}b Jt0:W \*J5_=c&,le&*) Ѧ ۢH?=I܁3D&b4ҡQS510LIsGҥ~'ʾ5w<')G:?$!MɸC> ۈhky0~I82b{6 y[fn-uZF=EpgPO'eOb}ؤ0-3ʂy $ +H9cYERz)kG|$"(:5^)l}۠ W i~F,7Xto  nl߱=;1or0j7mGE9D\+D2v8VY\Cbj\-p)a!{ˆ2[1 "5`ȬUgr6pBԅͼ?TvfRnLPEXOR<7w l9sVW:jY ZTگGJs)Vo טDvp*QeCLt,;OQ ql1Ba=bRf v=} vWoj9TE8QiPG&dXk7B3(M;Ze _Fg2ALNL:eU%81*ԏlblu\#W#$ &pA>_&/em`SH$|qtИ[x"!-qx0nXj;-umt-+l3^3*JW7%ab@h%LL#v.cx*@q^F]h*a꿽>;*Jc&>gwX{("z9QBEx9Fߕ6T:4 @%uyd dOڧTJ,JfD4wrZl:HOqݶJNUrB5j뎎z.^BIWLޏTz4Ԡ4ʨF !I\R-ܑMߐt)}թ/oVۓj=DrC<S zUdzH?>}>7@ܫ* jPn4G͚ Lz߄ų0-s4f\`?H^ NaHߣa;B,WzhǂR0jdASrB-:׎ΡVq XʁC:"vj:D~o3݌O65DaRU7|%NL#@3f3*Ϟ$>p-0e9whRA 0oS9ގU3=_c?w}Sxd)G\ߤ;(ԮFE2fJg)z~pçjIpoޕXVm_1r\PIj+̔e]DX<}W3 JkF!-k?dr0T@UmNAmTbbUoHop1X:d !:MC Itfrnhs_M5y0=|٩a & udS]deiu-Qr{^'~=" Ci":X6!Ǿ0r`B-Cb}s,4HVxFC)$'K2ǡV:ťEǃ)Ĩ~ԨW, xO-`u6cىbxL.5_S%g6ȧɗu8". nWowQqZ$ -G '^mIңILB /10W-.:#Mg#/f !=Czn"Ge7r^{PH}U@VMw9wPm5EdД YʃmJ{r~3-:T5 <*!-'Ը t"*V~ʔQ*}!ƹ'^ɱg`go!#y~8&ŭs3J'5[dgL>q󔛺#/IxG TaLJT;WuB;8F,S ̧\kA>< iÇ:CqHL1'g!b, vۨ:pfuF}@ScU;<5rC4 4Pȇ7f9?Qӊ=Pb+A<iР&v|ACQ ^x"YbnsSh_ |DN]|i/ggn[{H C !;Eol7W=i#Oȑ*EԐP]y6v1DIn:<5{AžmFqjGV qs#(U#FUT@7!L<303"ac붭 Λ!PI.QP,Q8Gh*L7Uل 5?[5p=(+pe<=h'ފ )UNXPW^|:ٲ n{!AWJdYF$dA>3nF3٠xu(m&,Me)@id}W@5HJ ~ w:&[<{^1Is_0`Nl3'DUfM+R=rpD67k:mM2X$ OizGV?h(귃j|tW\J.梮s`)}M0ð ?)7#z/{DT EX:ɑ? 9V2"T@hn"۱&Nߪ5@2M#+'=rUJo(VuP>K-,$(aʹ3J^H}+CsEl-D)\kn#be}]˧(K#p+!r< )uLEU' ΡUƾ{y#=|| Si!G(W\C "i ϝc%Di!믅^dLV*xk6 رkt-`ЗYYCP,yxh a^g_l^oT1o?\+ w8Oo.p:>(ؒ0a piPlXxr0XYʀSpQ-;w@^x#&?48΢VPtw^zYVCMX HXL+0_!3!aRFٿ=c?BB9ҕG|Q8$98#[B<4qTC]FшZg:L,LnlUH^#Ȅ XV= Ɲ}RQ⟄l' 1zE2b{|y8 |zF"BEN|Ky߲wU&X/Q+^/wj(ʠ*06?~?Boy@14 . QPu` ^f"~[|L~ v(l"bt- Y H.{&YjdUzVxE0@:!:Mof};,^&<S JRAzCzVR"Z@y5~%y[fϟpj}e 1r}9lvآ hRcz +4$ _9>5|eC5 )|2'o{&Oa3"V9Q2hX4 /$?ky 8sh[ ;. |OӀrwN/2hjbh%~8y"Kܪ|%䞿`. RbGB&qs0_g>E父Y 'Q M=/,[\ :F0.kG~2~j!h>:0 ҽ&g}3Q{ $!GGŐ5 o҅,8m h$!Fì^2Y7$pb5f~!U!+Dֲ;>W(3X eb^ ZHS2J44#BN+ ܢ`&~o/9աZ&3k{1B}Sk",wj) _yXzjB؎ N>>-PW9v2#}]2-T7*'KsxqJo9Z*B]K+sÞ㦊ŖqC12),Iˢn#*i1#"zMALM-Gi /׭!yw[ ]lIb9sid Y#n%]PTQR$ajr<4}FBU7ϖ=WXbn+٫0ɓH2T"K\2 #"NCrL`{XV D`KSsI/wYMulת>ϼDrJ-AWۓ Q\mj*b8(Bx6! z7-m{yRjԿד}]7 Iq(k: w&4C/dU8/q}Y]E,\ }Ei7JTUuR};c"BTsfZc%Of!c !ۘ>r53+Z\)g S 1U(;ڢf_a|* CIX 1(CG8u_fd8 t4>q^v5Vz6' {۞q7u}E)n9I~LiTE4e*բvJy 14( :|tHi()owrXmUM_d] b x/T\j`L̑.WOBRk_l- A:0*LG t\ɖ}X\|''*E٦_k!];}`G:?hL#͏A99reH?ۧ| p]wm{?,'?iHe@F[]+9@k|㛎 Ԥs+//ΘoijiX}YҚwԥFH_l ,8,M[,LNXqq 3@(DU<&@ G~7Z%.͌-@딫l3~3*D^)ð1s(Pb5?Wc}/1glBZ ˷ e8>6yF`6=߳:tX @\1ӒUuݴ:NH|&A#a ۽RlLP]d:e}tMTqS5X[ *lKTX0gP}w'X񩘶Qi?c*Z=ejrה71ٮu}^A5SppTJPgoQKok[_pEḂ4|bIg#X;}@Ҥ}/] n TҧiKev:ysҚ]+XJG1?ި2b{5zlWRyO*ENu+)իdJVCH^rC0c-?k@&;a '@NN<tOFHNJk8A.ZhVֶ8khp*',zJfB%!, "ѿu*S{PP-a MU:& 6~:UFEuBlM!4\T-p T_ Godpnh ƉsoR$Ay (YNpaiH27/2R@^ N|eb=V>*[F2K¯Sın(IBQ;K]oowۂǗ]n;j@t@}YU+K=fbMb$UozG7rx r`B*)4qS'J.^,LJ b 24۠`+D~E3QΔjTڜkuET Rٟ?2|z=S֜aѲpԯM% ԙɀ3 o46۰x yr{O `؜s /:h-# ˽-~p"/L^"h߈Z/Ay4ec=݀[RF0|gO{u ACI=Jr5A Da;6){9b;`U(6N좊ŎBloԏ JHwƒj! Fg(p1XoFio`ćy-27V;KF9[>+hPԊWKٜKŲmչJՇ&9j!گ.9P9׳Z]PqSR=3NWL_QǏ( כF&P\(m-p&畐F`bx BNS=lpXq)Z|/^`bOu:c3 E<=uk:u\$ &ڤ3I"=5"[GRr*?ӍH5 =QϻOx4hfvG~w&KkP([v_lCk 0ʲqj2fJOL]Mf [o{P,k$nOѤ*NP47kv ݸ[n/tόn(!N9l`Kov<$ʃKui'` iW@ c 6zt07]IR ] w%0i6Q*:Bҗ͢c pP!&OS @ޓݜDzEZ-;( &2!Ch|&sޙ'ږ m2k<1d&J7{.ђÀ^cv08p2k%j;"=%9'"{Pd8x-TݚDbɁG>D@=(Cl&??j8ƅ#nxӂҐ%4N  FOdz.XδY1zx *$H(G?8Ǩ..L8HNlYC©uyE1(:۸8^P ktXr\cN-@&[KȄXj :CBxȩASKb5`HS;Dzi(/5J^M[-@_Bf`㣛H`uԂg$JCw͎h CuR#jɾ!S08UNd)pBX7/7tS'SUsR4tmA K<5$>/`3p1ν* sQf4^@f$Pn>CSYwj dMŶWnwɵJ:ba{}-RIɞKqPY|Y 5믦՚bXHe,p#u;O!GFԥs< 8p#>NߪbVW׏@HŮYSy'@D!1$x/ѝ/œ/t${y'kPzN1I<&$!boohNQ.uVT M(?$_l'P`As.}?;3#^ NgT[:IkD6R f({&6e=5a+v6S"n гR5 Ony8%ѽ5EԿ\c^G)l夣TU}B \mOzPD1\쿘zOBv+"`7@Q?Tz.rqR#"?kS ;gG6s$֣첚g`f:=. n kC?o#B͂YeSzWb9&9gyͮ>Mkໞ {pLίMӔ@++T]8XH |Z|)66J/-5µo欹#VURM9+5вyn_~@e\EޞÿKz-2B̓CFf^lSkL!q?䌻>lOp𾠟љI|Je9pĭ2BP<9նI-f]?n;ƿW\}+rTR k;} v>y-8NGYttG&_n]1G!͉Lص֤6-cn?S!,3 Y,&斠@yq\7|_BzEj;ӓ}\d;p0Ad>@\]щh"xu"5yS`EM^A~%UԈD]ֆ\ ,)2UuO.!YUSgC`pgmّhmkg&v hӎ0/[I#$${~pC-f J&Ar3NP4u2u ȴE:ZJ9Aư|Zh8ܿ|ʽ-WB>Dpؽi+KB["X/s.k׳NBd-:= ,QJ,Elu'7"vf8EqD<'rEC"UšpВ`{8*S~p?8LeUd)M9}z2UoTŧM{ vaGs`Ai[Q ,#Rwd=xDIEUjʍU(PA@Q>TsB N A_;fM5X/"WH7z s{&1 zt2^R2Hy"<x+` ;y(\tSdc>D<,[i1FS: xhnvjlqe9_&n__Mb{d7t3}ij٢iDʚ:% Ob i zC5{N2aHK}= 9^2Y͟,[ƠHul&^?De*ɐP@M]=̓8hϓ',x;awdt%5}_SGAgV?¡w֚Z5ie-Q=٭Qt,q|k 7L5=P 5 >DHU# ;I"4wE^D`Hkh񪙅[yq`\Pqv1%,"^i봣㹂V]@ښrǴϦywaXs9yt`C=Йs'-<]PTM[[9m#֚ |Ȏ*6?FSAt4$\8{ L :*#ha{pAwYS *{_X _!#4QYn-fQO 9->&=X/١RV=83^4Yr /H"0)v(r" PXeuSOn/S%ֹe4x4[.L~Ww@(=yLZ[׵SIܻetՀw@t$D .YS*V2*?OB-I,PU3RawDHD#N=Al5)>RRdc5YqSBڢ.[}*]KA_|&@l6hՏ8JVIfppoJHz-&|@wTRjrNKH՜ΙWYUˣ%C9 "ߗRS0$9|3D|ka^OL K=xbYA`"knXZ7VChQAF}qgZRˠ]1T\Bmʘfb[{tCc"=9ϛ1/($ Ȅ^:Bq23 ;Qtt[3>l΢"U`.l8hb6j;7VԡyGB ێmLu-Aΰsz/(GRc+RsPLcpƯjC8M Bƌ2%ގORCIP* eTx%2LeiR= L܏X wV/ꌱf8``;$M@.=HI:H̫P cY0 Xp QՒ! w;z&Qƙ0?#)It2aoW>J&/r\x޳>HcJζg ;\;=^BG]zX<\0ݱ;po`Ks)LiMHgr1H UG/N*]*1o3maX?hB0r*nh";GLހٌ EL)\s-:B:nW&dW,د>1"..q&^4f(;VGsWV$@`M ?CSJA*Cit+d!< sõ֯Թ&ۈaa1hcK]֧8_r##iUкh{_-Z ũG/6'7iȜǃɽObW8+o FX{q뻱FmWi8hƅ ^*N)tFY*ϧ0RizVnMMn S1#_禡5Z vXTAA;eͭDv%IeH8֙{}1Y"WTBh:9@=6M|&Eg=4vTj0# M)u˄>+"I|ʆhRޭcC:m]pr(L<]hM=;l9%3w;- ekQdQ.EL` #̦ؾߑsiYF[ ~X۶ bFȍZS-!YJ|i`_<[Hz`/,Pǒ4mfwMÉ- Uы.'Tj(}vvG}[^(Ij89~o4xd)%=EېT!7%nQwtfh@eA&I"&66(T4 )O6K~{QDs;p|mj'` krZ7)puZ3<~cv1fy49yb0NԐj~& gkE^ s6_ ܎Iɇ|씮M>>D)ح(Өj횋ÖSʇW h$yifD!SwY</YXJ8ȂVVK5.J̊[xN Ly-;Db%xj uВ5FRj6DMz)-tcqԸ#a8X5=:ڗ+. :HѐHKHy1-E)۴RmYۃηSM >f>R[xߕݽ-<#Xz85'x*tpr`v$dBQD|Xl2be@L;*WY7xbPF% K^jҵ ¥ k:Z<,qnhQT Qfi?(,fԹ#h%`}uvr7O !-+x|sJDJ C4-R^j$˥\"|bLtL$L}3]9wC*)Qy: zr œiJe5O&y .\N$k@!M,F>'i bNbV?e#Ŧ/ycBK͘?@ {DRknT4خtp³(*D*vU1/S{u2-lӏVh<ԱH o:{Q#`a~oTi 1+ؽN(Bh1Օ"c/91ru\ ,]y*_"cJS]ߏ]v{~8+|HaܱmѳZLRAmrp&~ŷV"Z8|q䨾4dn ³:8/=Q#@#sXBS d5 2VK1>b{`5hߙ+Ɨ IlB<Mhu6m$3&5?~Zߔs:[VS^p79J/ǫ#,cܥ[DzcEu'\H6C 7wO}ŘXn…"0dy.tK"Fb.2 1sB2’@>!X'qdWOqv؇k3'[T\{VPOIߜH xݰK*::&/ʷI 9.8?ɔLTt/`Q˟L+Y=ܯ;o3>tCPgѴSKyLACI/e| v׍:ila0D:M5{Z<2+~pWeK_e%uΤƓS"/: @Uni |7 'Bo~xZ K,H`a S\J6ׁ?o,Am- qJ.t/T_Ռ+(8z엙BL0i؞yҍ,_*yㅥ` +rt\pt&`y-L=!k7&?c (#+(_GYma.E lX[W{! qN/xE"QXx8%jGZPׇl{fmw07B2B`ў:{}jQL9\fTwyI`X&&+=]! oNk/!D_;G1i-fd2kdOZ>\Vy>\-;)d #uĮ+vҒa& ,DuMFzμvAJK҈mӔՊp10tE+X2 E=%ϭ8g%+줸X`Ҕdp!ۤS8 }V&/"o)3.,켩q;K!32ڜTj$}X;__%aE0j]?% L/4ֻ07$(^$9g$ԓAFh,I!p]~+$!1ȵ9O;;/39>>F%$"g, ݩX8"$켋5+*e;A<ߜ*^ݷϦ^w ycΣEvuQm;4| n +fN@S)7e7Q lFaq: uKAŅy+Nv?:M1}K.qGےO;a 0y@欝S3oړʵ6Ep'Rt[a5,2o9z߬ ʒٶ~LAxiv~R*^\,z*p _<ˤ(_'%;^ <&sHNL:\+@4VqΪǓ~xS##`7o9^f H|Ȅü$ ZҠRhjnErV TX(}(Xt]dmT B՝cD <*Zs vϴ̹DlN]>ᥪ+c=luZd<+CkIJ"_+3dq;FᩨߕC2=2{_T *\v2E|/AC~ԲX zE{>[IѪ&, ͟ŎÒ`$36-:T46pE akHnz$_4V&D# A5Y5uKs~^p;[(Q4md !A&gnd4fGH!,>[`'BeSs| {2dALs;Up+i Fq^ȼU3rcXHQ+MS{犢buJ qf:Œ_6jY?2j$*JW~ccB){ã+ڒTUFlVl7 ,LȖf&=;-uW~6MP:E鮧a>_gWvvٺSx/C^^qZ{=`T?AíE/8_s~r`YfqSOش9Cw 4HР]i\$XvBA26Md@<}*OMD 8B֩DYZI .oApSӤx&9Z]ܶq㵺]}#NOI2h2,)c<9 M3&Š^-VW""q!W(^?]rd_2K"5tvq.1w%~>]Ju$DXFt!( x+/߽Ry".v݉[+}hVL]vnR*ZG`)Cmk "G<-A# I>s_C9L?Z:Y1Ѹd9sCx"Ȫw~Ej,}ߠaQ0|dVuʾqt=>zt+(߸|mQUv*eQӆv9,&DɏL$y0mI\)aT~XL $` <US:PHu`PU2df1);)A7 lT%SL08<=bQnUoāF5gLMɸX n*]TA(OmFⵣʥ13LIѴkԙ15qd }/<=uNyA;@Ӊ5+2Y0Hb7'X}fSWߖ%b2{6~%faa`{sH4|.wf2DkmWp"& XEO砹G|T^Y7O.o˝\u{]%%V0 ^O}V;S> '.g=v,;R&=z& ө.+Ny m"R.p|:#c"n TRO|gMښ`a3cQx|j) ]}3p׬7>`APcWDm!Ҏ Q'N&;V%P#*>w b`B@ RD> mY9el")l]&*8.q?mQ:-X<˯]O%val /.aPkyktER)`EpQי$'O֐$+S kBQcDFfFhVT(> jۀʱ!DٷC;0FޒS\^.-^IyEn @c"8y&1ókLbQ%~*4Ln! qCD;g"nP;S8ܦZ*>P Mh('c9?]qhEy{жڄ`Iyvb05A>  Ɏ3|Q1GeSI*͖ȧc*JP`Yfn}j_GJgL:hl?Mp _P4Ǿ 'ej>QGk~NOϤ-kJRƓs"p1=t_s Ԧ|~`zp~uy۴㬀ո' TXS5Q:|}˥þF 8EP6M~dk'w— }ҹ^@F4;Ç«Пn8,K9 lķ\b8$Jx1#bdxA=T 3?B0\4&K.ؚ6QPp-h(%*$E[G}\wQEKҭX"[jӥA; e/,c ,̎0[ u8`aKnW9Џdv=o=]PR\Ź =PN:=$|K$m2et/2&ͤMd>k~(]1I[%- ]ȴ'OYv<D 71g>͖)p>ͣ.e3vKܒpGJ1Et2od,q}e4"0ߎM4^$[Kl_LO)?He&#&E2' CyV6&*!8E9J{{T!rm07ܑ q68H%uOcC֢?fxYܵ-](bzm>⁣kyXCTh^]k؄fh^r[`$]]{8۔{?ZfI 9ǯY]QCgFݲSZ;L/1@akHB Woq+,ܩqzsB 3ud0&)AmC"SYS\%.)iF.UUf٣6aoDKG?jM^ԾH-s x |`f*ƺ&mEWߣW‡zp [z"%R  1΂xD" *SdY{x1&2vdc'C &[tE>E:N$KjVE' PN}K=OėR"wg n8:QcCb 8!uXz7IB(H Lgj`|N9jB|4tV OéOQ2<*pc\mK|ߥVw^rRx\ĵl-hqz8*Zu`X7Իq>q`CI}1 3фm>uOWm\rWQzU&P8e\fj9^Z90h/Cŕˁ^\9wƠ^j04H 2)mH*j1҄@q+(~Y2šFE\ ̻!I`ˠ&N`va !¡40A9lOspMG팦4Mkm:@# SE7V;0}O`G8}#XUoډۈ*d~f E`rkF`[xi)JO`9l0"JN (}es:Ia,}-[|0oYbOQcɽM,YBC{;[OܕcҶ/WEyޠl(qߺAc* /x s"]&It3;1ץfΠh4 -‘"[6GQ`+U}[)/jj.XОѻ6WzJna^keE:rlDz-KۧPF]w #Cpm:ERV8a"x3`T~Z>Y #V]8`SFɗd-&Ò/6*R:!gsX<Zi8rZL`\*ɦI|Ta. jMO1Nǰ΃J)$*{nD*mۻU56Bwt@APİ\ڨI!/rvM%Bl iQ@)%јu~zOSiZ,:#x=@Pzͬ:nᒺC~S`#Np2 Ҝ+S0轘{-tR<|Y+LM?.S æٚ{K)*tJ.*L҄u>G4]+CrQ7MƎ[ &x)uLQTJJ3'tHߘ5[Ftc>)>n;n12' sL~z_vx^c=((\= a@|Ӽt{zDՑAMyB9epC?bbBw4J| QiQ"_tvh)Uڟ@2CwV82c97yvj ߶T \`U2u_L0\ovoςseFJ$P1V9J_%[oOڇuZҖru25}7VV?- T K+@WM}6к`y[>ַ Zr;'i'fn&@&YVz&$p{;ySiHR.ⷁn m萌[T[ }4n)QBnv|XC{[usf1"SFux$6՗jD"MjYw^(yUcCaO1;L,^GlPImiWǐ#zK Zrْ+iNf0S4fq@T<}*v8`Ԓf=y-ڟ ?#U{ %=qxaJۏ*q涃д}3K5`m%@GW7oYBy;>K)7'"E?C%|Y7eUKJ jU%d5XhM4H\ yV<~d 8X&ڥXUR޴8\mVZB 9>ų{O+[b s?V5e @l$E59nJo%Bou0pnp1>NW44<D\NEL' -Z!z-`t$/S׿b"0Ly!=k]>{iCMNbtZ-j -E*Wn{K@ r52]|p N ړ=͕5mzA$ioEJ*~(~ȋCgc\RGy8~O^ F{5O\%PZ}._Ιdς2eq*bnt~|5[e{RM%"QJ%s!&Jޭ`Ӻ:mDl70GU/Z Qnc o*+}@{23S?b-!z ˫2rV[ڥ^Vةu+j$ n}OmUD]e t,9bb ߯M iUjl;zI۠k8=NZ n됽_,'o\#|Ҿڮܢ y *!|dj ň[/xyNid!6Itt-Q2H &_ m]Wv^tT̎3ܰ_EJ7C/ 룸 8E G~xg1 Sq(D$Q z8弆QصrG]( V(#`f/=t[\sbIwWsdPbCOFzmAAdL9+0*{coyMiZH0r-+1?\B0,KԁIKۀS=I>"_#gj7sQ蹠f/;!OC2qZOi쐻n\r .^Ur!'8(ւ(46@L!}vhrf1>w a-(Dh= = {Sm}! HiFmc3 ud߲`fmձ9#{Pטhz Ky/qbQGZR) ;g=fJ l@<,vM9@ _L_x-Lu:|{FU} 4 ~Bj@D*'<o)?3n7A|~.qE_#; 7a4k᲼5,cV06t辻YL)A mpK=P0Y}Aڂ %FZ|uIg) kd37`pΕXD/FĢMRk>wgPwvԷ85pv?A~wU*nD()T+!a? y@sȵܨe-p*c Y8I EttKWr,|w Eذ=)QVT0' xH!>BT3Zd Dk Ѧ)9UT$;}@S:h{[7n<-VjWfU?cOt(Hs/5 ?O)Q-d.r=:/*qftXb?B:zDb՝N%AB:a_V >Ko%#@fYXN }ȣXv{@7PcI"h<)h)s(d5.ӌj3-%J_Ͽ)5.qq o];>}{Ysѳ3!cӵ~ mW1֯AuO-7k&PejΪΙL7[ /S]dallWi^ €zX<j& =t6k$/R^pY]Lkqi7Ґ/-b0L8Þ lGti;j|v ?W@͖>F$C"w6~>!~n6b6aݔ$QuW+9ډX~[0rm#:|Y<}^Nϟd s rTwD77A(=J9h؍1GY] 36$~5, 0Sj F]($C/T?SďvRg+=9Yds^3diB+`:;L!:L GE{%[R389񶛴Ntp17>8hOptr'o]f[_ 0aB,Q FCS+b7>VfnM^Ĭ~?Txr^Z!5z.]7ŶY0};} !7I_V m"6KA!2 2hФsStbCp%7 ldsK7[u*9>S~eO%rr+m]xy*H:o+{BD7TzY%1|K0X%ˆjtG$L4Tx݃$xqe!DD\Y\V08>Sߢq>!c| #Y;+B%-BO3#.z6*1aS\8zRQ&ƺXC^l;֟T -X"0Ɠm|/Ol+B4h/S>?˱$&)RTf(@Zj g-H eA ўINVUZ9:&''hBe&KuE#WWqHtPWHغ 7ႱwuRDĆ*MBa49lN^#Ͽ;~LZ|#+ &L}!yOެVp@W^b۲RUf{ 𖠍:~c  Jl-:$^)c[-gv-)+lcR-^j[hJ™ -"_<Gt$ˀʷj`'Q\ z Hu]*<0QIC+fRc>0) TMJ{4& یW㻍}^|0 J.>W2)iƒ,{K!)a$N|q+ҏ]*Ĝ\̾br yiO_TZ̛C<4|'rX24`EdX?wK7Wn]Ϧ:!SqH~S% bUI~!"3H,C6X, yVG+brDitZ !j "7/@`Ұ np0`OIbl~0q)e .Y0NʜZ (j4W!0 Ĝ6[*Lhpn<4P\sc!Ѽ0'MƐ-6PDD*1 _ u^RC:$L@v`)WvVa|HnKflGmwX&0x`ېQe a%JEJm:\*}/\S'˴b/07LT/]0ދV PnXfoyxw?T>[2}gfAz)kcXc'7`sljŀmy{y5 %&MjNfg:~$E=^D;ܦdnmB9s"-]]Wl1Qy2${HMVv*@JXJ!ꂂ1,v eKv=Q&_ iłd=BVnCͱ~?r=a/M|Pńi>0xXx59:a.u+uK:.S fNt\leXL=$z&eWo9kg*M>7)JU=E.O迊r EneMCQyw'4Ѻiթ{YCNv>UXΟNw-r:Du*5wY;n.gŶdg{|k992:Qtp&'*k9/16RS? xݾˁ^)_yu-hL S291l^<5 R}ܙCϭ+Duj?lke\iB 飼QyOHW_H%-F\ň/ #n\4Htn^l^sY9po%gI=4!Ʋ[o?raȃ(ʑTHMVeb}x: }7%2O/'&ѽǟd );ыDiNXXr'<7Lz2Nzx?ڠM N LG3KA_JȄWւ2/4V2842 +"na|xV(9E5~7]m1ԥ8ݵ y|z 4ۚj!FyFL^xgۋ?Eb2 OM3ebPf 10)O޷ }L9`NLjg-X`9ࠠ =:D"Uǫ#/HId3Zqe`̊OAaQ#nԾ*M@tϝz1Qq:&^Rd'k99L,!!BDsV$Nŏe:?I8ίh{.~_ }&W C3w>DuS.vMlNݧ'I$oR9`&s gw,vأI,_z킩,4̾Rh#"Q8VjƑt '˷ -#HF;|o9q I~?<`w@A RƑlCsX_J.OY ?p{?Bvc/R[xޝIuV> 7R"y`9}Z[ vqYLFJ[vI8! X U٣1V֫7d+t<yҕP^j*qihSa1?Zr02پtU<f`:q GTw#P\sxS5 S?SrhEefjq#tp K&r̆,m&FUXq(x\MSi޶jnD ߚ0M<pΆ5QiPNm3 jRt%h79w*' T~fT%]ٓG[=G!kngŔWLnJ%Q=xJO$Wɱ*[8ݗmMͫ\d&y < l/ %(_q̵Q>4m>cgmۖ%{Vp<+rDŽ [r $ /sDnA?~u\9t(D(#Rf0_SyFݟVXtsNҙv,1(uɳ(xĬUj#⢡lK[go8͋ H!!T1B_tٔUMkvɴ>&}aZ܉ %nmB~al?[zysWWy_8־v::Xqظͦg+UptKh{%aᢊf% Y .#. JwZ<".LE.fXgoّ}oaaGx_l.lA=. >ꛮ/Aɛ&l~K4>D⸫@ӯN7uo`Ӧx`]H.kͳQv\ 3sgFQTxpsAk>C!r@-g s<}ɂPyqVƃ.lmhJ (.w9#ChS(i)wDENE"]H" \(S}o# ! M(} )"ȡF.v \fD,͞EybIгM02+yS)_Pdj s"TVXh=9nKޝK+ѲNέ f=9q|5WEIfr<ߗ:z-;*I,^"xsA?ރ<%5h2   Э薺b"o׊o? WsHys_la@ꅗPk!66z~9kb Jm1EH?;r!Sx8Ekc4+UM*yz!:K4=P?Kռ-?u# )(ƥHlpmN &:bAZ}>VX#I@Օf ښ&h=1+5n3#f[ț *Bfk-k{~ ne~ѕ'l.dO2? a R]GxTS9|TE9b.>=Dn½n?5*<.1E8BUX*7@T8-X(;R{U5pRGfUf# m?bɻ[H+x>tl='qlO)\a5_ۧ{k NQș RLef(9~>)mL|\4qFMzw)6 g&G`E*dtX1I-9+J_QIe&#=P~C]LW#<~U|z7^.zb{<^I(#TAHcMF)QhC$ЊGd Q쮞jKd*gY' f•hxƍEeDџ})"Pk6-Q,0YS9X:=n=X#NO>W1%qqh,1O]9zD[ ,uC*7UQʈިOrQ!0? JiQ9ibXA! ߩǭ ^\ GND2'bbGj+n{S"BR΋Bd~vד^M{G^:)CY' @x:KEy=&>ZX@3ߛP8?҆ ɛ!.l:ʍU  R3@!fX&AFg}=;3U^o NqDжiX BIΉ-*jLٙ .=?e} EX@? "QwKM('?Q~/zT Rnr` ݱTWd Ih`^n*A`/}oQ Wx$]|8[?4:$Rwg0HiTķfQa+ zj =I@?#;$`x1+[H^#9 a|Wzx< ]@rCƿy@:I@TME G6 Խ'-$7QDFQ3m'897m/vQ }JOn̕3nļs)޴t<hG}q݆q_;Ȱ4zt]q +卶34`) =C l4f[e;R^^sGvކr]QAE,0{Cs p0䎘7Wyw[T+[es4vG=EzNfO{"1h),L- MʾLdqn$C, q&b==@نQ4:GQa3i|it âa`=̵XK` Fg&'ò:LI\2#%"LZK9N-V<5AYl"bpjF*Goz%My߈8~)WQn~WlVp@-K,~RLTފ *eun)m7ZeiiGPZg3E$0|@׮m\ʉTS3; q]},ߌ;.z;Q}OTVF^?F685NŘi HSe_6zG\C\W0Bg )Ip&kwPϘz+uANC 7;z 2>:OမOƿ`42 vw']x& WzLwPpc awV8$SD5KL- otr!ΜG%_.mR(:D8g3;{?i< Oy"=*8{%i ,+vffy']}"I0647/a+1j>/oSv4K)w{czę")N'/р. J Z9/,>u:@˦zբMq' A0LXձeRiq]RHj4}>Olhaת`BQȮ<*j+">S 83vSZ:Jyl#ɷJ6;-r;N'92v&xԁj7Le[UEغ aٟ3?meu7+(Ykvj+^Bz^8g\xOܬ2$(8l|Y%4ND7x_d./ڴ/K5 ӽhh `ywb,gwg ıurZvFY2 ]bz!Ӟ_7E ]k6zH=+zf~x+lhpe?,C /2 |U/B^fSt|ylaDg#v {ڒMoZ>1c9Y) XPW0FМg y=Rycg/LqZ$SewlRvH2pR:KxmH" ]^8sl`R6Z2ѿƒ6) Ez,!^REv"l>TDv1( tA;e+RdU<,; k[H̩RJ\Nq'7[=@<c$%DKw_d/BZJIӪXyO6^YЇ ׉]\PVUUcd("l꟫!lO }0/E9}ryLkF+ȡh4mĀa#2itza%3 yЊB ge Dk.%JwrVg/NeSN$É_h{eᣐaօHGSi:?P@-uisbC t#{~#{UZu`alRc?v  x =Ex&+b#7$>rXŬ<8r|~wgiA &+P=a~D+qdnA>9j =-p̻Bb#x$ %r,v/ gssiZd=E_xWyQ7O#٣H\ _hc*#;9I׋|5avM^{:E[K<{4X; AMzդ=yW/yJͽՎ/$m@gjsd\-,Ak*cPnqAj׽R.Cgڌ7} ș>=Z P ?$Et7Ƕ@r{241,u6j'wҬAED1ZyO2Χ +9jBޅoA -~|絘B_ԼOVcU wDIt݌_B #piEe6- \2(&^j L+ 8=eΉS{ ↙Ieq233%oed:vw#6sR‡?̅pD *גW PÁ>޺GQ|'<)~uǟvP5ΰ§/}CFH\1|?#* AN"YW!MG9m j?S |/yA(WG%S{%[qُC2)QGҿ;].е _)W"ݞ\^߿?)U/T򕞢Sr68.l/EOZe5*p.V*\Uv?bOJC5qxih4NhJ㓬]ʍ&kR}=qziD| ӷiCn@EWN z;͞ޕ/6.Ot\A&&. 1t݃=赪ޕ qG|vveJ ܂Nmv-דbmGUԔHZ) :itmᑁ+*4&yF2@ס`"|#j$5[bQy"b:主.D.@ii_ _n,k*% %#rƵk A('m?T4~L?Zj<ʹ{+[o؄9e fe^1mKQ|7H4ed '^Y|) ̎>SJZ0t}PJ En/h=h:5㷘jXB)Uu $Wep׿SZ aS4rBOJxNxr L7F&E+nm6bڤXI1n)Vr6 qq|o8+EX($S/>mwq6:#/;Z 5(Vvgiw`̽'6ޠNY刎Prh"̺^ޗQ q eOFhcu6[S@6pHW>ޅyvDȽ]p*]?rY!h"*b4# b1͓=@QMD"㲛Nf!qlKTTThNJ3ȎqjĆxrdP=gSf1Ms4y]3T,6\$ =Z3JԴzDGaNX{)cW_΄9E:_iH[koaFhӓ&_SSM# OT9ZT8x] AAzuo,$w$[3Grk psn$˷!JV2r6PU7@WaXݸ}sM[L,VJ(K> dm7\AX1\ϴ#?A~(c ~PK@TOXH.]ah.Zne 9IpdBl Jӯ9>o[7l úqxyxB|Gh&}@VaMf SWC+ɣ']lJ[Ba^q2sv,ӯn/$8GS^Jac94:s]YV% @Vڬ/@2H-XQnrg>[]7:kIGշ3C/$ WA8Ǹ%:K I8n,Ǧ7o%q/M.g>!W .AMeO'7`@7CuF#;H#F!"7ΤGs]Gky*!w&H"3tFBXMk'iK_We2o^J=h^~.JJӽ)sޖ#AwP2?wqhBM[nPQ@|cpG~`U0-X'31C02D1.N֚yi c$O'X{!i2hp*0WtPa9[?$]nlJ럙Ѳ1t|3hҰ9o>K (-Gel1rXLo2bvu{cޣ\VՔV j8ՀWT9(bƵ\дE\|xADYk=&z?%sn"F|1߀h[bއsELL[Н?'C/4UWzL{~3+4Nc$)v'a<~1G`rV݅0Vi'&>D0ga䎇^|˿ȡt`]bkFbOA-Bu/s@ \DF&?/ P-1#;h Yk̭zٔpL7eg{9.>#"紧b7 e=h0/n"F+yً{XFocPRpy6_ a xPI{q['D<l_O2w!K(M_}PTMupO9'Br r]I0*t:JX[˵Ŭnx=K֧zmdQ1gvt6*cy9{ RXUH&Й9{`vTo1}LCsD;VktHxSphF23P#ɂ3B`ߝaqul[PHm@6d?_e籕YC&{ yC/4kv^BS-*]~5] %QߘƆ9F[`~{gяŽEHv`JNAW!l/m0>ٿ}Bs`E SV;`."[stU(T #1Áj m^|X ;ҊJIIty15!ލ=$?j$jK{y\ڞF>Mp^(aI&J? 'fҶVXa牮X̬/yoqv%!|w2/X!9!3Gy< j#gGh\5)_Q_2l @jT;/g͏Vy#ZP-cnF/rfZumoOC^_̀Bms^4ڸˊ=;KbRaNhA*$$o+n$ݼHT^耢Χ2ytE:5*t:y~ZpUfOVԋ V}gh7lQђT:P2}>t3B 7%Sv|˽'qykr)C3r_4ЍMMF|/GZKDϿ|9#K\h T&׀^N&oh`Ƙwg"`<4NM;c%Nc;p'5=Y\%SSZm|lJ'mAh/C ]fE_O\dwљ+ӏ/UZH-՗դJI -#%QNzN>mCPib>q3d3/b`ýaA(V H$`e"Nces^Zҋ.dܩ|.pS(0z`ቅk\ly_o{hzܲ-!\1G|7i:#%۪e)r(܃hrZ ftviW:&.*d!W a<$qm0C)0Eej~OiS0OrxR_9SQj&$+GP#sN ؞yk-/sdTH;]PuxFD0X5TmA؆wg":7cNږ;JE2} 6Lj@%rwI+Ȝ@ i`` X7Zob(!SS5r oUka|Oh ALi{ɑ01qcŎ1|_(}*K 9j$ccf#l2G$ 98"as>E{bc8g W9&d Qbfv߭PK~gQDtK5pM'ENޡ3(k@a2*V88ڸ1?O./}$Rp94Mq7*o Mu䅇7V;mNǢfp?j$H3}j|)[%>"Tdxhsw+2#{ȴ1:DV{Dꌆu>lxVfAi\D\%}CT!y7q5  PɪWB{7j4Xl0[ox,S.9G}XWf\K?⪦K-(yîɺʢpbYqwfgW}"6oMצXN3P$5D3#kHKb5C 1kIywiUorf4ERM-Y . Ab$†,׺i[Yfs xq ^]zLcq~H4Ftf 6!]7^}}붇c8=(ݬ..klZz>sJ^J#^ i*sv{|S-lT8O:0V_k-˦nNaCh1nI>I58/`l[.3F[?*QTH2#U#(|Pގ~~iΰWY(Ո^&*D#Dmhf)OYDBQ`gQZFYs+,A5}Bٵ(# g27x"l] |N/[gBF` ՂS'ґ#:^9{R´%twaV+7uک6| ,NB h0r)R3w% 0^ m! ",9(0BO$%e7W5SDw22n:=TY{Y;*.t9L]4l d51ړdb[7~r={{|u~3l -wn?8Q ޜ艐MD_8ԺS_& =G=q kRػ|+gE%?rr'"?cYuń7?uc7^gHjvrXԪFh_sH1=2W#Pde5Y\T4lUgtmܲ!#F@ch'i~?+DVgel 0m'E-ր7ll8<}||!7:5O}fe5a*dK? r탦*ꉂɲJ]E3:8kVː3eXUk`X0ු ~";y{ #V@Po8s|~ۚ  D&7$#`Jq]4Jm5YƋ󰙇sJD x5D2¨eLT?H/ǯؙ]n?WӸ; +pP A~椱]/\:D2ҿVhǫD^~v hQxNYgq"-kѪejq T)V+L4om #Zl-(G>l>30*OaOSM<ڈ}*lgA.IDP)1@C_+ϞeH+)ՀWI0MԆ!"KNBЛ[9* Z%WghSA"EnoLEicgu<4W/̙Ô5'|) yE i[Ih\JRT})<NW?4'q=X4mLա` 6)`Cң-O,{xeZ5N.Pxag>JVL$^ԾxrpZ!DžUHkE-~1t(yU~'^ Kbm^䉹\+:(3}Q%V'O"sH:_d,=%+_R?; 7 %dIڦ`oVF´҃9k^k' j"o2Tݴ"Mے^Y.[T· usZkSsUb4Wc5DXtk6<6C q7~N@`otKm6P ^i|1ႏ ?-_"WGd1A0/ԒN>5qm;-}l0ڰm_WX\"1Eaq_]*AN<ټS(\@Geyϩh&5⦥€ @[Oq>"Ⓘ_.ᬝ6A~b1TR;Wt (YCV}Ns9իHdkjey QHCJm/$a-p:gBui)[j@ey=er=D.; zR}p(ߘpq<./\ԮdNk:}$ى׿FXm^S-OjW:G&eY 7$u@duR߇wȅ¬)}o2GW[7Sy9rNN>'8}TnQ@w|4HeqSzţQ`8)9uEh=꧘T6&< ylt;vR2C_)nYDe鏖^Ftxpo/e%ue)j9ybJ7K@xd^ZImgס/8@b&/)AfB_B2q]5t1-ďg.oMcac/1he}]?)*]|ݙT1T '˽W7X;]H972Pd*}roøgG>D) j|ű͟&lGѸ$qBBLnPͺ,/,YNK؛wj y#Ƹ`_ջq8_rn t.I}P nC1&Hiq^넘pbb + 2]~@6`س@=jaTWէn)$!{y jˠd^3(YC.SeR"jrIuR\5?ZtQ'PUUhdScfaV|sNsDj E.#؂ؕ*O#jEsZ8zSpl UmRpX'ߥurL4SvG%UxV,̂A6!*OsEV2J#,˻+R`S~5kuSݹ+ S*C ʈB D؉`deM4ၘ8QOs=D zȕڌuN  z*g?b^r ꁡu.`P7Bg~uc!N9[)Nb2usOB,v'!ɲ6'@8BcZmRf+z[{۰NY$ D=HDq?]ڪ)7=߻*vh!3 0(/Qꑡ>͛>g\ݑSrE*) \ΣD=qqT aF^Ġگ5>w:8PNZfu@?+۟aԘF'Kt8xv$' (2zn./BC'VN __Gۤ-_lZ_ !lrbJ\Q|oeIe| #r#|y,{3楴!XLHazpwaMiqi;iӖ4E7bus[ŏ"tuH# Ӫ0A0nnB{Ux[t=kzC|cO Ӈ_K2ZH #KkBKoZ7d![)6Bq1z*{BU;clEqQ66ЄzQ)ѷZYXtNIhZ,wWNp{+{X,V^ 7{pQ؞ ?i; }rFjy;t]dٍz-xāHBq+otg6LCoͷ Ng`tOf} \\p1T񠀻I)d5_,\oJ ie/"EohBh𕛝#pa΃wHg5LXvwL#ߎ^#(fzlU^dr$ksP!TqK IOi1LȎUVˌ"`Lw™xVn& ļkd)jB{qfP ]ie\5JS1B%V:.n=sM){F?sr'Y5tVwJT :Ǫi+ c0fB~.v a b-h`Y)%/#}Vn^?92TBF…o! 7wcP+A$J6B[h'N?ۢfHɣ28#?\hS꽽FIqǯbIg6d6|ZHCUaX驜Eli7 AYw82sRjg5Ĩ54kIg#zOϲO(/faQ8esH=m5m'(! | g1lkD֚ >nE]y4Hř:?s )u`fl6&8E`5nJǺ8–\DXM-]HȬ6f-ͣVg^wmk0x/`cB<,c̃[XǬ= EG\Cܴ ߆]'pa-Qsn3$Kۖٯ& (-٦4hS?;ꄒ1_x_yF ZXqSLfZЌ̓eBoX[^;cn~3_ lzJwX_hL%䫼#KfWJ1 X-v)0ؘBT (r %=NߍRspԈ"61(S7;h"&.DAֶ=r$A]e,ޕtt3H與NY)Vi%9B6sUoqiU^wd9Zƕ2+o2xZL)Lx.^vćJW!Ƽ@ 0m5\ce8PX#Yŷ,&H"8&Ter:1I JpcZqoۈ>d[ ۤ#w* ?G"4$]Ug_@A(KV)w?oڛcu༕ԓHf#lۻ@qBw U{VL'~>nl§Z=t_"SFǛ *S_7<`wpR.7_̬/[Jf1ˮ:v:|##Ggyp vmpsZN`]?#*.69T-&/yI/I Q&qZ<ȂvWKfC~g^q-urDZa~A㞝s(h{&}H$Lhߣ9ەC/ Djyzo:j"h Sב}h1j`f˽M]xSd.Y֟GWo dzU :$*~QT1˹(\`/e Pm;}1_m =ހL9 ]1j|{yiAͲ 7ç/gE O<jO2NmPczm~g!dId2qOgڈ x>D3F Ik H9go {5$pfW)tWQNJ {KHq&g;c'ʻLȽoÅ,>79d2[5C<~ U,;Ә0=7+Xc#XLc)Txێ xgJ',B01#.n~_PzAiT3sRB6UT~BjӪz̺I9TA9Ϸ(w\m,3QafP؊= iŽpOhuk h!2Gda+E1F=xyg^McM0r1reɈ; d?TG[ie6*j:קj*X T'g*.γ T/󈬴ON-YG R8 җre>mJzt,MIjgNfX@[S<y G(G!(h@bOB7k[ kYҞ[ C?*٫ 1%M>WRÛQu%xR.uwy,ʏsu?dxK6sڞMDзxWLuAÃ)u9+ᴻ.F7\L5ɖ + {5L!rO6 |Y7Hkbp5At_!EڄLd^jEMldT-nӏ ``>}y*Lr\f?^r2?ˤӽh kBnb_dx9=_ :7\L_ 5o4OpB-FiIC@G#>=?@09Ͱ P E\djr [".M%3@ƴ(cJY=hH0EFS_,mp6gͬԝmVy@ ΢E*B(p>Wɷ/e @npSx&orTE2RuoL`&^/tO|iSb>y}#_ޡ7.tu/gvƮen8UJJl+{AN@AlZ7z4.މ<\ Μ+ͺeQbuci&/غ@}Yasts"RDu;PS-bMg]X&bt|3w7 Lr9Z#4)HAQu yWߤKF><:ˠi)ҙW* %v~wrQN1o[K#_BTWyDGmlšqފ8uW)jnIQVmkZM1Ǧ9r:W _DSs'0flY}su*,ݞ2/Dr* Aʪț;.h).T]f;(t7/D+ SY k{Gȇ"{5o :&>4RG bJr$'Lk*܆m.7&qu6?ɱiT8 ;f^+UH.4cq۝bwV_1vYH$憛VoDnBa)gi-P{;i*=(iv E?f ZbʹfFሊ-"GZ*y k}cԂɊ;v$W1Vݒ_`_ 8 E5[jΗX)-,'0#sN^lxG&lû=OG^?nb.wMS`n6~N }eC{Ⱂ)iS:2 KPB^ oi,`'C>1=@yiFϔn,{z}7=d82 iIdӀ:RY:~~ro R9P/rt`/Gr 'Ü%j6-7Kz=b.X/nˈ(7o ~5t8i%|Z\ŀSKSJ@n\W>̾]VBܧ&=k;p鮕 6ȑ/Ҁ$pI󶢹ia˪K ŝp.ljL6Mh#\8;XC@XY+>KF\ЃT<_`gJ7;v1 D8jDf4= m1 ډ Sޥ;+gK+b\`A;_GH7vce, D9iMzE@r)efK% ?Jn1|M<|GC1۩cZ,ǣ35 mf躃c PNЖZ/f!mS:8l7"=ӺD$$4 m_fۧsX%~W;_ s%w5!ވPD? $]X ̉H^IҪJ?>ULSזx`ҧoyEn,'hf"vWhiePK47i.oþ+蹞j < צ$ȸ HYoO #Yu)0ڂ˸oC?<:&:pPc4qڦ ߣ.{/6d٣J_Jg  >vxN#:au2V {B/Ƶol>G`iΠS=N9 ámGT#T>Ӎ,VE4tow^F8riKQ}R%t-m#V"j mdWRWDuq` "ŚKKB{loO܈؛E5y W;K4>n[j?AB[|C>59FX|}."ȞC _ېH yW5vf~EܽquXCJA\zUwLoyydRM&1 IԝU $qT6"(ׯ` ~xU9)j=xٵ\<Vz15@\ ΍^ΐE,P]+xu˝R_,ABW2e )6D kJ,A(LkClR(VSc~2-Mc2X (d XKE3CVh$AY.\guCk=p8!c?ft!i rxr5 zjJ4;o\ӇH(hM߲@!6Xn ry4(aِdOΰup*KMN .0Xµ+hqqӦ ^#ul mڥ&)U *E\]wIgILJG!~::l5c> I#LmL 4@<e}f'Ѫ{f}Yc>vg)!V}]2Z"58Gx W/~Tj#͍5$gv2n\} nڑNay@pu=@/)Eͥ4]@|ݫgcl`MGVP[Lg*jp bG Xlz\'(s/>:Pd{C\3-- ^̓m "؃wsaVqDMDo=_'b|ZUŜk\Gxbzry-S0 p:Zq?>Oʩ2j}ުd}1>fsJ ,]oΪ> ̑F}%?K@bU[uݼ=uЖoP61?.h>ZiB(`x*DUJd|9hĐ่~U0(ߴP|VQI B#x!{5pܙ[&QMmz ^% [l,ؓ\iN8)MT$ɱ4O$7y'1O}Yc{TU7.0 Nސ2*Dc-%ܕB.ԻlWb'29DGJ~-z;!${^w2[Ⱥ5)dC0ШpL^LJ8 U%`i8ngR5pk8h喰jU16fˬXPRlOI$ސz]ͭnAeOؠ_*1J^o+n|ÚА)=B G#qNZ[0S#.?nL|(5OO?Ё"Vv=q&#VWsJ4Xn+H3=p&qv~کuUQM 8ɱ*@iLi%Hp3@[eZV?]|=qAs3IEpLHQ["Qx5o bxZ>3 depwiLOyQbCj wYHؗʅ"F mSSҌ c]"Mn6(3fCJ1G2=O?(ibwXXW|Mgb^N`j]CTVKC;7E r$ u ĉH˾IcSFfMk[`h(GO^=a7=h.ptؠf9!Pos\Duo oQi# ܕE":qIj|=$47E$u΍ N\`1jb [E4^]5`ܶ{V"\ P)Nj2"j5(3\%8-S\;`^r6D+ڪ-Ş1Ȃas,`  z;75iӈ -7vaaF`Wܼ|}sZ g$(5=17v)WxhV`' o0-&ӨX/HZc Q7EdsCI0곡b.dCvmdDO..]]7WRƂL3By=?ͤ|WZ=aڶ\/nG%mmc,~Q'"g?@7(L`+ӟȷm͌ZRp*D' 9 ltc5% ޔ )zޥ-.ĬeI@%>t{)!CKytPitw@+#_utVRoigy?QkO{(fw1 1̉%/밐ٺBKAP֯$/m HV5wmg >MayY!ƒrQ|-CRqq5 `zPVr('FO?+ Ϩ;WlThJ\AE a/*c*& -Qp< r\c;k)EJU +(Xj;OύSw5$_SmMm򩭠MQ)ÿrsu!,?t*8H*B[u\ hVMRYb7SMa@=(z(w/ihR#k55+G3P\ΛA$ ˕U9ΐճ;=o'+(ݖJmpԝCI%k" 9@.$;Oxgה)Xl^=tѫg݀Ҭ,vIkIuP@=[nXidI T 6g<n(FsiFGYfy[aѵ?Ll{{INH{^g Q['!SҹQ@#w}1ُU겤&kM(sccf`6gXÊwep܌ܯLpjԧʠ3pMl_i&j EnR"`{{bK Jiя,ěl6j}]+ (SVfS/Q{6!S D#<ڪ$[Bm&!BUMst]"Ɏ*1(oɬ':]Gb 5͑>Ai~!لf}F2x|aV\.C0(];KF]>/\dO29k&tG:?sʷؑQ;{`nz,;y\# nmZD۱rۃb;襫ZMP(w׹NF'_m#xtU:H¥<Ǹ;"sp GjJd54kaBe@j Vԫv{VM} eD,j `fN|6_JQ74YM+coNKR\iM=]u.4ۘɀ@-K|*O,miQb&iʉE0!b;7*6A :ubǎGW'@52/0gmb+SDIp)Иx.'2G>+Qʡz-Rȹ,5B/NyGQe%vfGl֙o wVhN& OJhC*^' F%fx*B[%]' Z3%nTP8X4d M;aX݅ͻmOvӿ "({ ^u RQ\W)b/:HHZJ:PC&I7]8.޽ 㢓FYE@s5ѓ\1JU;FAϏ{#c ?"Mb$,s<gRgN2&GRG@r nj٭BWkki:`Bf(U%e!о+| -\[n |NT癩fsB_Rw ))2t_]D}3VpUp9Ki$6VXlqPxs/T96@R81^/u>B%їytKV7`v%R<$X) D_D dl7=FLZSVY[Ȍ0ᱨWLiBVo.X/udհbʾ8xE0A߻B Tdv/!W rȀ?tNo_N6sTm8S (ҋsE&F̽2"=! I3J5v ?}~ʡ)ZbH*7& 誂a`n |Y؞ !i+zq~aK&X;BzɃ~qRX#,(-Ac5z9_7H/T* y@<#}lmU/ !ƄKV2Ѐѿo^79_DwyNJKP z~jXi^:h.F:޷\-R${̒]䟟]@[ɽ%V!Hlki~r AsX}3cvNBpuB6m# g?/ߐ|Bqs$zNaٚfE-tIƥ2ѻzlSy%twfJo3;:Z44H22NRdf wYo`D=x}iNSN7Õ-z UHRۧԧ Qd= FVZԎ[H[5^$UW]Hų<9-&͵,B`kg˄m*0ѭ\[,*N}F7z{Iu(?UMo,B~ɔ#"q'uS1ct>4澤w;/^Fq`&NȐ K@smtXCrQ χV]QYWhI&?6碈KJ^͛.Ndeif %Z2^ەyNã6UҿK^Ut3wDܽ ZnOA GwE3Ve06wѕl=!5k<ons k]LoJ$j>ɜ}6]Uit& ,9oFV`"L9ĢXΡ3H:,Y# :/f3ՉSbҞR4ɮ 4ݱ+ ya%IC@{k)-ɓr| ~zCiK; o 2<~JW rVB'"!@iQ SyQXFIϟv;02^M/@w ]`ݶJv&d\!!xbWgBs[9g &-J~["Jp@M pDzC:p ef!*R }YqLѼG=Ga{H,4ޝ2&k-)ۇ嶍OYݞϥCclvXfQG)R/"dT&͗92iG0Y.޾D,`m IAd*%fkˢc#A}9gv97c q;Z`bڠIM{@ _AYߪZL>/'TRuJc)!{* 2SL/AdToMU]Щ_fƄS>dtu T\-ڡk0_:njtAaD@!D=W+$JJ-x]W2ܛM)OBjp}U]1ccKѹX !pkQRQr|Sk|5p8(=qPv;[SY<+f99bs2axN%~;!msNQFU,!Pߩ\mݞ,D$E=ys(\rSY#Vzd 9mf㷙ـ!8# 3N K3\l&0E"n5_ BǼՍ9@H0 .3ެֆ7:uz8!V*iCb!e#Ҕ|- MByHdzF h(li& o:#WWIYx8:pH4GhzVJgx> F`kc3!-?Gc+k;ظ2#y#Opd֮ѻ'a!flwgN 0)WTrpzU?ͽWļ^L ŋWC O^pc%D fkrM@5~+vU9¸o~~x*VAc#~j 8b\N=uJͬylD6*On6T~L-yӻ ?jx2 #kK^Rt^#gYՓDAcd_ JvyM0m7dvF2^RWaAe据mq/{fJ'@SS:R~\^4m?@)ipbvAo*/K۔&s.OY_J]ng l3Z%ЏJT6}+}'P 1JUJP=7<1[[C ~pאy4oB8ʥ@Im1aқkۈ(su:".gsIX?|jמ+l^9: _LI,[4 _s)Hxǹ '_fx'q1cZdݤ*E#׹Öe-|x9 %~r  %rZcE /:&-xWxNN$(]ZƩ7nه(: pA+j61`4~z-_pgq^g{ao)Yqaˡ\_$es u) M{/Bԓx/{3s oV &P[ `ZwC ⲗ~}c.'i+>]np(s׮=~>"YѠ`-j T[:G)>G:T˅y^ЗUZBv"Nv5ӑѠ4 Czvw^Y,'csYGuj~U(N2hing 7 =Gqyf/ l?Mq (YL%g9;2M7}XVZ\y2u7iZ/sFcJPB 'ѷЄzҗBbC'G9zJhV89,k0COg*_l'Wtf}zWNBS$FM6ʦ\uA"'Iz;v jqir8 Rgu|SU5"l;X =]1PԜm:P7.¡f9IK QqV8ШȠmڌդc?0.ߦ_b$vT:^py%`A jRC9"M?P2D'ɀUGdL8J3`lu EtVYo+%Pek)ML#HZ ϻ ь5NC/3MAJ†^*Ȅ➨M-!O{Ԟ_rU"(baOQ2!\ fSB+RڐaJ׬Z$7|qi;dUV&)$*I4id=rr,i3W'LɊZRCfB}qE01MU NpLGXܲǰ0Jel>mѢFbe!L5TYEl RYD7d=@1_kXL܀MzB5 ' i,HyQIRD]IJMZ"`]]ٌSKdSYYc, R/!MiPuJpA_5w}cWV# ,NEZmJ*)#nJ.sLRnbwE-RVֿm/2;76nІsf>ABiiԟ^J$ڰ "@dwyx*ԓ]\X<UҨ"B4C]VQ,q/L<@zI:m~P,ʵp;à?= 1lth̞NۤŇBã@(t@Y+e ;,"&r"vk\ә(b-@܈C'mh^#-v(*wƍ:R?jvY^`++ČDO_[.H VmN/* p{1241;4ZDI Y7|>^10߷|eLݏMH^E`& tQ0w(#DVpa^' x.QCхԶB9 F*妪ˀ*vT>c `܅ k"dť9Тz/tYXJ(*ܑd1eȯjCS^*e[ONrzV c3=Q5+;R:*ё=~{bRfˬƇ`[Y!e">%Z!Ih/Q- h[C`Ǽs^u%^䙧wHu'W+G@-t gM8逗Fa>/ѰV2)uK'VHZEh;'Ѽ9T:t I.'\2FC3TQ@M s5."2aZ̽= ?cr#wu|w볏? _ v缜@pZTǿAW@ ;jm()/nlUǸ"8*.fC,E~N7\XNԩ_)CF= N/{2%⓪#j1RZ9n +T%¨$`"͐س9Z/ONQXr9,X9fNgGZSlTpAY Д|fSqX; _ ?Xω+(Fű({U(9}5^ <ӌz\LnG,u3Po2&4o_bdJA U(CE.v2aeM )8ևٷĭ5IA?)'tLiXI%ɓ626䉃\$y\.r;ɯ$K<+Er 㳒)nS;srplUM ik) u|K]BM(Qޣ52}L=t@ۈ=0!kZ1Q%Ҵ ^3ns:? @ t D©x- Jh_e%KKzoRiA_SmW +@@nt֝1,h mEeO#fk1䲛hB=Bdjcsj}F'4|Y0ѥ\uc1X3u)Z[1% "!= tr( Fue-"{~ӱZU-k:0wa%wY5U$lq. h0 Qi^# ~D'Mـ`$|+7P=(\̙#+'%. DNNzzHQCJyYJ~v [cOANuj]oF`#FZIŠdv͓|GN#E:e_)RBq!KI8Ε#Kq;b_n$&TQ:PU;Îiȵ6ZbYP/"DjT2`tЊQ81j蟂NfTpkξi)*%Idž?__ͦC)a0z+E֦ߓ ]e*i2Y5!l:;ф4tn"ୂpċ~:۟o2a_5Av~ijȜ vbF([s H䒍B1"څ>Vwh^ݚ/[ ܳƻs3@cAߌgp2N'b7붶w`  ځ Vz2'+#v#nPH ;'mOwd87F8{͖}>aۅ9C zfJRwdKwojsƟwR1:b5RL2>OM}{G]!)C&_UTE;A뗸Qc3x,#h[q ["A缗}_-7*.&nI`2[.ԒGZsT)Aetvcb*p<_S:7*=iLZaʀ]*F% <27,B~ӏ[B>i|5`yW*~Vv?=$OJa{>{M"(QvmN"*TMD/IIޏ ؖA*YWNx :HBp/0㔈vx!vP(e_}Ϳ:{/vՄF5C2H/4R/3e۞w-@;$Lc,z$PZx"ԫ q!/J&:[M/[!&b7,n/{ݳ\Mǔ 'ADkihte,JI-1d) )5/=T@!4>GƋ;` Jųl06$CwWdבQH:aZS7˕yJo.WK+o˕ɚ 1] & /ejk IC!w\ӭu2JFeϹcmgJy^F)6#d*wgGgMA)/:*3؛ćhMN vn \ߐj)B7_@-ĶTH lqNc Z>;yR:Vkqhs cRn򜠷]J ~uo4)w7<r_D$%unȭLўw k>t*(:K<vH:M8^(y$ؽNbbH8O<0͏)DZ_5I)]:5 7]8s '@VN!zK\wnHAK z#'Y3(.F/>>뮘ckXd?fv(ϰ] ﲘb(Sԑ喙"FȔ;I۞*{x@"H;_D֫axխkU$aXdowjd0ӘwS$f(3*턯11~8zh xMa\K'  :/mIl |ēȝZ^?P lАNpEb6ªxcwB;#Pqj arUxB'Ғ7l p#0؟b>Bkke-F$HRZZ-?iń'xiT\%iƪo8GY ʅѥ 1L9cS{;qI(~ؓ˃)M=pF&%,rJ ~`E]`+:Lp 0YFZsD& =+H۔]dZs'nu6{Y"l7ֲyEM4OJc74q<ٓ?c}߼InHgt)*= VgP7gg3ThMw7g@GyիJiNz\Isbf\'JL~H9(W:0?N=.jE3e Úλ_&Q{lOh xna!ǂk7Jbqo>E,n NzQSj - (NQ~}:+ P;Y!d/ ‡ցSܲn ({CXw$}Kn'b'P\1TT[8]ehwl 2/~qko>yJ7HԐ Wf4oP=W>Ѻxlzw=`NPڄ]<O𴞴=c~Y>dGrGi!R/Œ/f%]zl/xJu  H6D(`(BDZ7Rb9%mB<Ô' |e4=y$Z;blsze[:_++RBBe۟4IC6*$|sI8 ϥn|$YΓe5]ʿHfR%he5qHae:6`= [;ģ(B=al:"b2`i:(RA{&|;+%WY/8q]xKΤf\w\f{Ϟmf̻9OP[&Wen[`BY{BC݄#0]c6}hC]jȌzg=~FiEyE~E> ,`|D]rw V`} Kp.Ms2R-p^|ypרYɶ&og/wO X.ĩUSeO8Yҁ}CI5-_kCt$l$k Բ}Ê[xmE7Qb1_$טۄeհ.i4T\ymA[t AɈw- K<#w_ؘ_fsjV $tL泜K_4Q`IN=Ypրً͍7 f݄C6pя|5r(SUL8G T<) -](ܰzx9`ִlbdBU@$XtaC<`s邏0zs~GĢF ;a_[NŬF1K \gxΝ׃a0\2O¸vX}r!m>EQb*LǹQ(\^Q^ ӌٍ0N31=懀&am|W""1SRZ #,bf(dz{qg} S.1 ?M[(`^^=_Ѵ.{ ~N̏x*7D^ÓzL]'(S?g1Yl:0VVɂE)iۋ Ztyp0 O79$szQD'&EΌ鯝"*IZu-R36퉏jɶkc>B\&@˚c)L(وf}ʒ a#afb>UKHƮڗCM펪pYs- %Ft ?EaQ *d@ &՚9Kr2p龋uh؀IBxZKRKX>FqmS&าC,cEmJAw\=6?*0A NݽHECQ 5vޏl=ĿU!VlIr#28+I%ꧽrIqC/gIIfq! $" 8d:mW dbVy"dqU3[ˊ@ x:0ſ&Q<-0hhTw]pޑ{ۭ>huDLi#C.hl$1TᆈF! Y$2->o&0RNhW+Fܞ\x~/O{MN; Y oXkhushl*̚k#L§uIP2?;Bnҏ鄸6M60?Ϫ{ꣻS816H!ipgzm̸-ҞsO Hxo,t t`q ¡ [}x|] (;e(v{`#'0Ps| V!̈́U-bv\LRI |;T?0H@H ^Noִ{~hܪicFGf{WՐ[waH$+j9`Ư(ZA_iJ-$*C b`Kkk_+! N" Y.͜DoHL6Z7`QC6e V]Kt,Pn*n}72Z;K %߶Pp@ 8x:(C?-H73?~^#u=򹇿ޓ$U7`Sx 5k!&\B~6v:s&-|qZ92@=2g|K:J0&};Cg@:a܈VJQwY37%bj.,J>$0Ͼ槩IڠGʝXo^9L|0*cyQ/%c hOn+%x=q AJٌbUk=wIBO,!'NQӵO%͸C$~Պ#C ǚ9HP `~T 1-i.r.vBkt[qT X?8$ h$ %X^/ַ;Qa"|H% ABڇG-:#\] /jTƹyLq fZîsj!lFOj XꙍQ0kY [ߥ,JKmw|;Vy"~~]XaI5Oyӯ/,Y6hhqOK*Kn>|1.! w!3$§Ev9r 2Kgkĭȝfv*aZf;|d@gUatR@rH!'ajfb̟?eZ]nDKQ[Bb-1Ṫ͙Djam ci2k(fzLZِHS}JH\V S )G)^gh: Cـu$~ %7O] !8qǚo(j OЉ< _]؂bvhDu$Ļ+ {ĖCzq`3XBzBNצTֽזIjUx{்R;Y%-aU7Uʰ~Jv{,+(3d-.B8X%~jJ)zR*[qYn;vH\(2ׇaqi4xp 4OS#֕l 5 沲]oVG@S)y1dgY9嚓ć2E5>S5}A=)6FxUt[a:d+e8t|$Pb, m֐t21{a*]tJU: X1x~^n/hœ-]0, "5 c>i@59XѰҼ֚I7#U4!-?uqgfo탕r5O!N-.}B0VnWA^g{hے($xM!D0wJbY1vʅ%Ƿ+ΧNKu7d?v#yXT#KکR: A+GBH^&NR*;':[;_- ԥ5,yyvl ѡR 2`snKZ@4]^`E󩈂w*1LxJsd,v{H2;e!;ڔWJCfބڍ ȚF{f :Sklmi]YHίJtXQ,uJCG6z!Kes MYNۦY} ݒJz ;6Z%5:Sk-NR=AcH ; = .q7GWG/B 6BV< ym{ݓ-'ʌN mt&ea=&>#;)|BU]rZ9e :$PGPHU  1NQY+Zv[|HDAҸ)x,( ژ TkMm)==$WŤh*p{MCƝNjCNu 4Ao&qkgDkv\#fHp5E>Jlǻ}-;qui%!IoL12wtTu8hmŘAY7Xqc.#CxPS>|,?zЈ>1xR(ST40ﮊ`> Ѕ=Lח4ER+[Z`"48Ѳ}X E5,WYמ\p18` c '4PFA]['r~I1]֡]R|Ə`kqz(ܤ9pH&-6,zth; c*+!h97 -5 ݃)f!a9ºh/.|6u8;?/ģo!Н~L&'x~c@`~: >PS/DA^n\4{Qĵtz<,̰0+V gy]\K*@<twQQ%T0 #>6JՉIb$06!(: ܍`4r1<:U'M9s/r f4I8x0(Bd㨄=`kDƒ[g9(]\NlUmVB5{e'p/~ȧ&XWxw9{pěu+ܿg?31OHs᧌|UTA(gUXL:**?}TopCwS@dYc6g&n f 8W#0TQ!4QWӡb- uMr o0ם|W!]&RlKî$Uhg|A7ZWMՊb@P'qL.9\VPXvnVR@';D Q94)ufؘ|6**' F_`!r{T’TAYI%+QW>QLYĹl`#7Lyg7c $0$ײ#FEޏ&qDY;\.YȖd1t3݌2ű`ݲ#E6G6ߕ/jAo Lk$Z!Z!*qI$zzKBnalGh6 MfLߝQ*&a=&ϟ+ç kwֽ*6;+n^N.9Ar͡~1mtE y҃"q JRX:J!ؗCCZPtgfxjWLRVǚ&m-&[P {G|,PDKf?h9$\i&`_7U:Ut@ Xj~ӿ:!AtM950<-R(*uAD)ߧnU݃2Kg/1kXUHo>;ꌀœ)r],_2!X>e~(Xػ}ޜȗ4xc^2Z΁*sSNaZYKT=PYgGp!$Bpf?wd,揪EjBF\- Xt_}kb: _ZDJ NV);M:SdAΧ3Ly|ĤZZD^l&6MqH/R\ [kp]aXCʊ} N;l4t5FE1ƘbeEQూhBo b':ho-$XcX5yvQY':ynvXrxq*VAn#4#&u[elJJ 2xkx!*1%)Y9Z"ZCsgӘڠ`/q .O( עr}m3t TdPrJ[ɁJ}UYMwk lk\dJߤu$-Ӗ}(ɼ[dfdڥ\>oli>|˒וZ\3 {` SB CDz' Y!:6fnВ|2o./U@JM/Ta=s߁-gB=-:l,[,F9aɨ7m?D2 ʨiEswFH5rFFSϊ`z9 QZl=R!<&@ eZj$4ټ7+ZuѪʃEmIxܥ*X6?}؏]2[la?eߞC5k|K;XLm'Q9??/*OJt.H*.ys =O[u7Ω5?\pjMٰgcviN3 (Ē>b`y Ruo'") ?f灾o}}Ton\SQ(kA^ 4긱bW%v2[mB;7CړsA :YVCMxv[fz2ɷAM!8`URy-Ƽx@H{kp ]nlC 5ܭsPIDoǶ(n/?@ q^ciB+#3:${&[v9;ƬU3c@ғҿC,]4y-%J\uB9šlI}L'K0g{Cg<Ȁ4A(r,R}E5 xx<&V0bܔhDj:9Ud&nn@#r˃g5xj'Jx70 K eNh4Bx+r@W<^)rMB͜xn?Γ*>h`uɋb#i~halYAf=.M>fL-ǜ^g܃R43>\CV6 X@n5AsX_Ce_%s%щԁH_>:IW1PtF3,fa2IeO߱##͵A_S-)f&E-a_/|_qA HW~pLw}M=YZvkθ2lzLT6 lຌ ¿A*_t+M43onlºL9Z]"jջy892QObS{\\$J^=osϲ$[@)qbh8uhH[a)c ):AgxmeQ:tjܕ .=.e'~Yv)7Ek.AXUQj!黬ٖ\'ڨ'ajlpaiH>#"X َɣ{yq,b+5"MZ ;>Ɯ[e qizu➓.daJپx&ی'eϹ0x3Q74YgW/T~QrZf}vm2C*kNR.-K=.338 Hx5*|UЂNSy@˱oAP)sޘs / MNP>nD5`Su,6oza.64񧯰[(j[0PѠZru(㞐=)=]s7-_zF1zN멱W`? 6U5ƈP_|T*_^xpKp6 lWMMerrN0O!hR /"Ed}=&ӭ[vs->'6/L ^@,)]ӷlbuw7NRzd#6q5}J~@i5oD{Iلv>+V}y;O,.vF:d~@0z{jzɑGnkd;AB|Bnavi bra ldtQTATw8KL%"Cq_7u<؜cCJmn%Fv}v۝,[ajD_7N> A8ga;kKJbUe:Ekab>@GMтvݳxO&&6M;FcV%U d6xth!:dhOD!/9kc$ؽ`Xǐ\ޏD30kA:-t_Џ(Zcz@flHq 20GӭXܗ"GPQb4dDv`lQ&PT稭3FgK>'gsO>ƝdzkH-񻃽Ta1oK.gJ"39Y7ej̶?irZNF9Sn_YϘJ̣aƖtPҳ x%4Xʵ;-"=+  ;WU̶K*ڒ:(XD?MFGH {x,2ΡZ1k&C͠WlGzqc1K3SwZc]Ըo` V–+I(AJco7#gg"_StoR@0\eW`r~ ԋh{LkƐVIqMp V#J E`%3{TFVbhSvL}YfVuScak]BV M`%nsL Lu"b"h59:;}%qjdPK4KFH,*| Rvuu]oX㩬_ƺmI| Jxi;v5ф_zaEYv#w'UpEُ\LRe>wXKۺ&>%c2G6_l(IcfIhFĞj .be9O+IуV: 1_7g &3㸌{&F1\I|p~dOPzGUr!$~cU~hYS;2,j >Õia)p3>voGE˒fx,lAyͣd5MoS)%l⯯%>7 ac+E;ӤyN6,Gl MAR8'7{&PA&lGV)BIKhCf^#u^wq.Ms4jy]^^riKE? Թa%{6`ӶHs=]7빻_f>CynfDnv?+D)C3#NՊ3eڡ,EV%T mM< iwim L>&}ss:lzU$117̘=lE:U)DA=ZSa'|zϐY4O>Xa+~1'g]q?OXH[~Y5akvxǤ6$tP&hgrДZQtA!yl5o~-ptdb*! BncD.R+PZ3͚Rn(H ag(.",x#'(|X2)_'X] "$Yu9?0 (0 ʻ6˒x" X)T{'9' WjVbK; LI4g:*t'OhxMBo\"@B)Nп[Gx<+ z#pyvu`u,]R`;"<]$' $=4_+ !F[D`qR $>gMQ.w=Dp%BH= G`L0QCN<͌Yc0X;DԚ(BIJ^7]Yն$g"|6|MTW׼O9 ̎l?cث`XD"e\qTo* [$"D hS88+VnaP9( O@Xi1pFztMoU*"a}:c2n 2݁Ƌףd['QMH[ u=B0)F]ht,O_p zzÕQrҼBboTiVj6= &\dlgncgHxtnM,oVķ*1[ wZyv&I( _dlc# [t^MbvAҰVNF 잎vc?I7oF1ǿӱ}bQr 6( ֪BY}, 1% &g\M@?8n c nT2uQ Yذ ñ"b҆i55:hLF1#$]|Ǻ֧4H B?舺fuTT5>2k v^, .Ki 5=0-Ig _ɁhS3M(GQqh--Y&eK!PWu:фB@鼙jfVvn97w n3CT ܏Z#"1Qu9%vd.[M!(,5i)vx2Z `5MVcƫ}#$k73AKYIΝ׷el/΃1;ZڤOf9| ti9ofԾCaAe點HFd-窐*|%?zzv?;ŭ!A9m=itI7ϊz,";>g#g#?B # +XC]g3}Rg`ɯ.j]壜;) pl9Tv<F"PAe,L4SqD y*6R.?u)1@v b1 1A? ˩aC &}q"tcA-kZ&!pYL&! h jywxCJф *z ֡,H歀(h_ g"bq%'h$[0rڬ6f֭<ފ$([d[0?96et jQޝjtFES6.]Q4>Itv<$zW*&}^^=-W'Qq;`՝b8t~f!~2sdgzM#b¢~^f5X%@@.OK=[du ׎Ŋ8_809mJeTXB9x9rlMBiQ3Rc3SJmj7D{RI x"uǓeYh=| G?qjBV=x|z@1V`\9tLԇ%1ߖj[ER9xY)OΤXw3auHixXCѡe!|Ԋ qP}=eL|@ eμ,XO 4)~O щ_w┾Og))r'`ˁkH1֬+,w&\:#^xAU @(zޣckSgĄqb3o?8).T>{^!yI<2ެŠ5.a"۔J2bத;$HV.wGT}mfQ%Z8ykE=PVLk:m*~a3~ۆ6Li,[fC%K6E(BH) e"gU!7X $a[l*ʉiSs0N@/#a'"[%Gѫ:, Ot;n\.0e'l0hs5w@"Ddrd ސ(}y[$q7!. ft|D']+3f] rTc*!!vu#'n6 X7 >ho1s&ݤHigJ sEu>9x{2ED+JL+X@QjKrqAZ'"`'-Ժ+jl@ci+$b ݶOXxnњj w"&>3t'Al9B0m;MdDPp]2a+z9qC&Fܓ}tPǫ\I׷uGw3hS}(wM;fh:{EiCT1rzʐt({Z$a𴭓 5CFi)p#_QQiS@”!*jR<8'.)$2 9Å/;e_``5oݹ=٠Pաș H-Ş1˔>ᨄzeu--m8) ;qϠBE}~  1?1Z &Imt#ٌ;MO$+^, N[LȎ?-C rp;Q/{ƪd-PwʇAz0P&AGO˓ PKX.(5˵bgRV^(V ˗4Iv9oTٯFVfx|`oj4S"$牁R|+t[8KsXVӵ-̬( ں IGckq;Fw*P-纤u8<Jڰ|Z)$qa :q4YEWeʮ ںl =Dkд+> ֗^qC rw?y召%F Ad0$8%³UcEV10",U]4۾J Q#/-".qGmXr%QZ6{g{#a&?;c4H6L$3ryg =ڂ_З@Zv:f>z ݠiy m2DzIFXVHFgpGq[l$0טS |" Qeh(/`QĽPSNk\/ >+PW90N,@PwSqu·S~^B+B2 HKʱϕ@2NhEmy[=|W`4B hb|g|Viɶ)z1m/Wʭih jTW&g9y-)N- cqibOC6$('儴3 ر{8՘-U}AWYDP,|uMj~^޳,&aɓaڃ~ @^.(\mf?ChqbVȬ`(˞({ď >) f7@sCy=Yzs6R S([e]A0$KRɮ'4p*'ף=C{{A `0g>0(g:ódEPn@R~^~)Tuqk!={OHPM8A|J%/sP޵'vp}Tf{={[OkP p.E 6.Ob@q2WJ| XOgPϧ6h/@P& Y-Y)tЛ@J0#BQRC\8F|sowEH?l)3#,尛*4|5×"Wm26P8%!#|MY5tmaE+NߕƯgxPbj”HR*֠͝4S m5&>^b*\9aV [{oVݓ"ipD 2HiFR,p$89HhuIBFD|(gzSi.Kj'm @VxxRwI&s! U/%uxH]ϻKO]Tr-wJw5vOA/&`Tneco)QMEZ!ufD6k!6(Ed_1I6&6#xdӉ;G ѻ,9T!53njlaGBL:*ao71yA]K{>W 咽HYx֝Rl'C I] ܄9D~R1%#Q O,'0i>ܱ gr ~y]JG9LݬEzPqtC*7lCtZK Rc $wɤZw,/~4䟪&ܩY]q L.=ð$$]PD6vǣEj섂*d ܎fεMл*nFԂ3♠Â_w*!Ӵie*Ӂ q9K:4w`FwGt ` 0o,(|$Argzc\f5ďϹ0,=nŸ`1l,EXU M(2PsB$uQp|T i- L? vE!gTwxlC(<7I@KApA1E0B[ҚFw?mBHWv>R Im\\ (C܀}Q&?7D d'Aоg4r>@wlQ6@M4RV0G;>~,07 7^pycq_sD"b+L_<2g|䩆 Ǘhd^Uw0 Orelʧ'$=7c=&d]z~vyԻ ~_>y$`|Z&缈}.{xNhsqjN>@9PGHҮO [gCgM r?E>Z}o!.;ń}gtt+L%'%o hW^>):rN`Dyx<4U~s0Etgr. 4;?=~ ;F;FQ;x~hI3ncZU̎D(WE,70tM5ɴN9O\f=k(1ˉJ+lp}YYN]V񎘧֭+oЬPi}Z+ow >6ˬm>?ڙ1aMFڕ@!WTUw&3Cr:5)2d1ÀmrydP (>O]1Yv[%-OkUѠ,R rgOg,m!l&>3MRGۢñhPKkuհk+.>2-5 Uk+_r?. boc~q _!n>HbVJdaťai~^M 6oOHL;OA7 w@0[ zlkXFL;Rv w.Q]WЖ~/3n3sz:J楅51x {V@5U29A*rr|JQ@cyFE^y?+2FމGnڬw%1VB_t4_ek9[ץs,՞DDz0/LaRP8=S8Ԙ%RŲ0LӸ  LeJ8 v78=ZKg1sXm*&;^+ /$am $!f~ 팼{&h໡#(vȑl{_mu6 Rdf cP9,~43Ӝ=EΝ $ $KDeWYa0v +Zp' ߟ C\ܥ]SRbT|bjCl9oRTكEW x5>E˿,@M4vU8]^{-eEY{"O9[6I]C1V/C IndxUB"Tpe!r0* ۸=Cɡ7r'PآFĴSV7 /aK ]fīRPE׃F8$ aj@bfц"mXvbH&np̕V &^et)  =H ٶUkL:Qv51tI<pK) \1+]6cգQh%߿Dl+ Nh%hKmkf]`oPM?$LE͎[wQs1!qewH^70E@V>#Q0n=qV>L$ .oڰs)" X \y񛷼a Ʊu"^k@6 j5A%}zIe^nb!Ww>'E-{fm3%y2`B_Mh@7l@ S;2s;'>y붻?~J cZoR>^0xGuU.؋?G:A~0Qz8~h =yl[vd2\+\:tu>M>]Z2iFUQʵF:IՈPԎmjƧ4r r-yՕ`#<6y X3Ji_̀2e0-ES2z=D DdI}{@mWjڶKd7} < ecVPD/YU%K1X :h@{u&ûFui^`kHxz~kZoQ`S?Y2/~(>{LJ/BJ}T&K530%g܌B\)\Rvjy4WAKԸ&IC62\WN?nBZWL{mJ6[!#EN$n'g"JfD5 8|?B_㘽I 2F똆$uԒ~gCTܑqG;*_@u')T{Bd1`=]aXBN*ϸ>MK0\y-KrtdO  ɿ ;;z#uMLn3 #ftkO?9x';\B(2v6M=T5iUF}^W#ٻC'7pAb*ett$D?R޳8mA}w o@ &/8ؒ" X2FónII?>Xk\2hs Zhz(X$U#5~IPnضGSK xt" av0!fcA4'QG%!H~]Q0=lQ%* }~ Ȼ$=C.o>{kbWgzٹJ*aIO]kSy.Eq'q~t+'ҜU4;6i? 8ɱsF`g8pdZ ⛆er#=˦] E]&bv}atZ6>^eTqU+jVըI5Ȥ9*:;&i5?ҟ¬5h $ܦ ԼHbX8p")HUkˣ`KOdSϧ=j].Ouػ?Ŕ뚣S (Hϻ7>ቖ0.~QrT1)9"}/~SXMYV&S5bE.V>SW|Pvd& %⠱+Pȋrv`!Y9|edȾOSS=%78ĒY@nhi= %5ȥǰxTWjwrF?LG+^J'h_^#G?[L%Kn;ς8)-J R*M&qM5DO5= S~5e aZu  ff& b++z*ІS_"~yx&]-N7iTmcI_BzY?~%\?=h4v 3hl˝8w^+xwKr+ΏM< iP[ٞa+:I^6^Lm]$0?rqzc{RdcI \uxhx\*6@mMXf#j_{0TWoN2uhvCiWwWνi/5)Gɏz֦r[!,),35{U~&?C\ Fg#?q;?j"F[$]!˧ i `K96a#iN@.29p@LALƛ7 t[/9i[DYz!jDRt N_΀3dԱUGǝke(ҔT6Y>1̓X6JJ|x8Q.2uNވCqJ'i.EA %Nͩ3 -:5껴##krHi攘C猗sLiLʷ`<>yݾ⟒*)-Ⱦ_Zb'3(X~ /m]`'2QqŶUg\e>W֛oIxQju}%,xm" 67N= &lPy ?NOX41 [m}yΤ!.>"_C'8_P]#6II}raY]d'@լPLss@3W L7IF\m[[_T;q9*H6na;Cc*h[Ioh`0_1o3Yz&t!Ж(N6pK@p=hѰ_Y)m9ł{Uu@;?o^v']ה:?Bd'Tus-z& KzËkW kb3s5Z Cj*nD;1lbK8 f&~e*(o 5-]?.[nքp_[@lQYs7hk=FʝMth`ĿAzek5/ ,QV:mƬo/8Ֆ-FDl،` w*4V㒔ӎmjmG͝7j| DeRbJ I< "QԱfrbZ QQF.Q1s'"m?B(f;9*)G+Q놲vKFZ]*|rTxJCcӼY%ckTpwc >d<y!⚭]߇*q.Uٔ4Yfw Tyoxg K̤rF8p0'W %70gX6P E&ͬ"fS*8Xѣ\! Q4vϤOҹT^ +NMNbo.A٫8p7OIAV~3+f66/E5z9Kn]`^r-)E@_~cfGp H; ςδe~} :x0Ě]Sǻ[9Xj^Fv/wNs?*`AD2 0}O4JD v9 ;{tY8{|:0£4GayT$ݳzjH5PT* FVNF2[N7J#?isOKm`Tl2NTEOVrScV}~f ]?uZ^ȧʹӘ1@"0]٩O2^Morxl:.3A/5-ԄtHʄD6uE,A\觜'Jrtꇆ lw(_I\Ҵ$ KeJ,3=F>FDxG95 3F$ |P$f8d륿ڲ}،'׏'u*]r!.!FyS5J`Uʯ HĽ7DMaYI"aXf)"<]&Ajg;ٷk:#oIl]UX+o_}2i Tg%ަ0hgH:sG~Յ _w'| ؽƘUgIdȚ]HefD~Az_@Cs 80p1YCNsPN6mÎw6j׿WR~x[?jX%2[.Ee໳|7V3@.2*R9j/$ivZ=_$Eb{[I2c!<J}bDh>Jm~ -/IU>w[-a]'ܨv;Wũo;@bPݾT $'-Im)5}9Adl6QC2A,#(-gwv=*1qb D ~k vӃV{7`r ץq.ھT `ddTI)|9{5N=˚ӄ 0/΁"iYBgZ.Wq" 9I8Dsi rbЇ XA8yXH/0L-̐S{=:9t<.:5qp8ui7Gat@:Դh%Y@^JN DF{|͎rf}V+qF sj4QK9/$?=EU? #C +[;6+ĕEAfb T k;IUD44'Hm_X p ;ITr8s}EpB,/1 R)*Az,,DTQ#ɛ]"Uh r,>z^]/vQ\}3s:YiP*`B˿m¾ .{,TzgTY:y@ζgcLPp M*Dm5m̍zD%27ђ {;0?!=:rCsKiaPn/J_74ѧ**`:MfNWF0x=*Ѻ" ;B$b!@xl뱒u y $lAAz,`e\jqm6#U>2 _D?6.U؏s'U_,[A-`!dY؛ρJ^@% TQdAEׁn~#"3mD p ߎsTdoi'8谋 lðpFԕcd,YԬhr'A8]!TteB +|%;~n`< /'T;ʿ;859ފD7$ s&O?Ńۑ ria4["i C?ZB0;h롡%s}6P%9SK Ghrd;ɆZsPT*GiAz8c/rJze ݋W+% 6Yp9~1l͸xrƼV$11 Z,;硿G*ZMDyVc LnN*.H罆quѺ=oHt2ptTGSU>Lf0K9lל"s?,En4́P*=(1敿, K#yϠؙQVB ][Q`r4+Rxsx WĚkt~$|qY^"S1FaĩLU^7*ƚte8Զ* >xovѫ4lXp ĀZB~\ j8S Lw9(iƉw>rka[šk89Ip3g> c~?DO[##ͬQ~A9Y?t2\Khb͌YP+c+U3}Gnx2P,1`sNeAeC61?ɮY*UI #JK8W'ɒe`iޞE5c,9(�f7ɯ柲=𐖆;[N<!ݜ{x`uxs[Ko}AܧMp>B UPEYTj3Oh8$DWlJ6ok 'BP<U FADJi`.HI5w(G ږ*=}yt\ Jh>m N[K-L'VQ8Huh\MA߹r^ tXR'q 3q+`Ztsh'^5njЛ<,syބDpj5gj?@AzN&B> 3yk7=/2aCu#I*EĔPmWC=z7e5} ^S Xͺ]m߿& =&G .Rvmǝo8Fr?^@5S1jӢDm Q~Z~aP%*(#g"h8* @ faF=xn~!b>@|3䶌~4=pe LWؙPo(X~U~ {P*4,&8ŋ@#YVk'2@*ƒgs$94i[ս_`M"爧e44bW!yrr y% Bm,-?'3;Pqͺw*Ee^ID*6;}5EP%MvUx[41 =?Sl c[W,uCbfPB-5E +}vi}V:NUF 'VT_e=0GxCNU~QB \iühH54 9/v-z3:Ҟ ]ZMݵ Od iD9(X8`%R/dfωEhۤ%2Hck{K?>+1yf@g~p**fÌ-IYL%th#ʲSۛFeʹA;oAux>W8IaI-\̛v/$Ixd#+͍Ccm.@b3I|{%SpÙv iAIg!ݩHe#XhdzUXxQ'|Bmk79yʔx/o,0BtW4ɸVZ;~v0}吪NP,e컹.'Eaz1WnP=мFEt-#!U`{Mr^owWImw:Cpvi /"&Wp~#Ѥhn: iJX4j3l4gҪő#Ӗ"1 3ό@,J<`<-4zRC4}\T7/F]csQvky<{ 8ww4.N ذz-j58J.%+V!,)?n|PmF HϗPUݰPF)Տ"KDŒtC5#iQOqO n3y"7[#OŘ )', h$|p<ַw :yH RGY6ҋSVZ5zNP#f$#{nfЕKxKxX"d!  YeT`kn0c[|mYTu3U3`OC-K!.R~I[ 85$BeD0_vw#$zl$F"6Ҵ +]`S|/NXxNj}>sWԧ9< [1[2AI)²P406RWԱ1{ "uFr/ j̺pdG@Nɀ;6zˢֱ\WꞽX>|IS-ޘe?rUȉ4gԑOawLu-"NFz2#?7+ o!y3%^Ք=6#4g9r&' fJ[.Ǚݫ APf:Jb@~WY4rj=YÊv:p00Ҫ#o*)oXLyn b)V2kCNCxZ,s|7T,=τ>ṔAep7`i5}nkj'0M+g2iMH k8W\<1DA.c tL چHuI*D`bȩ98I N^E ]uV:"8q|S|蕛8Җӆ¤`!`:* Į,3ƍ*k:M]d.妓0 auP!dw?맦{[]P'L=*Muܤ('-omJbgP :h]"$ `qjT.PnuE~w+!DEeeL;qZPd{CfM QԀ)ο_%4hϟEBOe>:{S# wxt;!Z{n"zW\~WR'Y}| ;nrBb|VI?A{.Bc|ip%:"֍ۢTG>% |S7(; 'gr( E|0WS𱘐9{8Z 3;JXbJ}@7ԽkvըA f,]9t77:ul?n&}+D151Nȇ" 'tAM o>'{14ERYe'Ŏ5!9!a6.Qxn??ld*UÝӰvUXVPg9HztH] JD2"<<#Dc˷,P6vbὰYntn\!U7]pKuE!ݜ*Sֿݦ#7a%Fj(*0B`1bx/f[oڝ.&&Z7>e ? nfEiv׍oeYk•AZ( Zеΰ6L:0Sj WpSQ7 dq4-]#=*v0|EjqĿFCY1!7V|PğKs9`[:h譁SzJ/[(̞nPЬ-k, › p?]}dtw74XZKR ]XȂRRJJ leΧ52]'>$CuvmL~~7.ZD>כ{ 4<~E>I\F2Cn_݌H3hsDaϢD](2xr㖬hYp2cF /*Q[S6GD:0 >nyo#G@Nhӎy Bh}|'HL>‰N{I_*zԜ_i{Awi c$A)rٸv;#"-f]cYŢJ^V"077wK //L3JlMa}IP pS;Mbab5 @iBtfg[[r ],_*B@o Wn?"XL]֜T.&1--3I'Ucdjos^>02z!8Y9.[4}Xa[fvSjs$) 3rtKUUʂ9Uv``BtH+ q<LS3?AgLiv8ŋtIuw|ZD#IK$I0l/>}ݯx ҈]!ǃe$2lO1 aA䓲8۾1;%781 `]KpA[LGosjgר`)A C.WV~1<>0"P5 "2dfH8m`I3^qGҞkVQf+$yGuy40l;W*s7W fM%9:lbb̞PpYYy3U:ul?fsh8XmHpWQԬ]F?tVr]UGl؅KW#zO4|^];/-t=+jJ'g6 MrK}z7BA"k dT]WYG"-dS{;{a|Ma(dH:hBҽR6*w@Ŏ `VL23}m|&֨iC!;|/)nǰ"Sw1Ep"6fQgfJkA :pz&B.4rDSe; :)T>,g苪]Y 5nĔjc :7gfIKS^=֝"͎CBűUDò8T`1kư-ܬ2!bF0'X~8o)}* |u{־֮k_vG o̫D~r׊9~>@c[90X:@7ۋVӆ@}U] }RqFe}  {G`-EV$;qQ咑 UZb*DZ7ٚ;:Xu]ǃ r[ hS{A&u<30bm9ɋSVF*ʫ}Q 86qAٽ%2ZLV~M+wcByEgqWWOu))Xـx [jsOc<53L /=7뷦Pr͵=:|Y z=So&Z<7P=."/>ix[Mbb C&v u6?_LҶfd@>soX/6}$ijaHc' />}7eg Bc^ 0/TAcPb҉}Xa<"YA'`{6@Zm&'zs1)^ձ| ]{Fj8s7gբ5D%cuN"t92$#ƲC2S,YhΆUkUx; NMҗ")|l}֭- } bŐ$4fD #t@gpU*Lڬ Lr@h%NvyG̉|cV5OTݙWWgW+? w+E'IL^$G-9wP-2nm)9K?mmUVn t!: Eo-gMdX.N|bͱBc?ݟK/"ޏau>/p` ؇_5ǰ k$4)rOʹDLtׅ(;i9"*/"'Ɉ%D Ü&j0L#g<Q^W<\WFt.RO~=Z[kwo̴(>~'Zz!-3jljb4ω2ϔm2/SI+5l+|A,0gtCP/[w?Lgrį,[.`[9*w^'fWwfov? ԕGAbXPɟQ<-? "QhG!oGYO41c2%x F轟]90C \T-Iʵ?JUb!oXsj&YQ)EeY+MB-t`dm7 Sܔ:$s3]xRPEBO6e<@_@"O7Jk""X_ JZT^  9iCP=;U)Mf h9aic闪U3m̊.PbnCiNZOÝb7Ak5sĔE.$vj_xD`rF :FldgiN#kbY ^)j}JN/@&m&/ 34Rջc NWኸ[+eg?tuEN@"RQ;r0( 'lُ^QG 8T{;*C<)`?B( x! $H*독hx:,NseX/\+4te{9ʟ;D6edþѤlz^hͨ;2FJ#@!؏Пn&sZފbLv hV0| k|-C`\,Q9AS;<(wl`q9d\a1}R# vD SK:/z6X `NL܀vEglL5=LI^fJD`H]Q5AXA{]pT5„ɤos(εyB,Zb^SgO_SfEzBaHЫqI(S}ZT3?MNJ^ßN AoVW)Vylэ)%iwa.!_ۣFzDlR]I$eN ?}jJUk7wWD;^B-' V:,D `e#Op@wREn Pސ5Ot6;`.;=itG8qߥO+c쬝խ1g5 1lk!Pm^vnjGsr0!{ąӳz1Wڕ otǽlwJ*4Zz@;p1+T"B;rq?S!Z73yP`$?/+L?IDsVFRMFWNlz[O(Y']Q xݶ>i~[ I~b#+C@|I^zAp{ bfuR ]2*D6)f7JARJIHl5_ʓۊJ6,̙D *sNjeptx>^ш&+ J=b H&M pmt;kTY̫Z`N{;#[l NUN@>@9P~G/v}P!u+5O iiT|,2-ۗS2d5H>`ԴUύv!.h۰~V߅i`bygZ G,3̏{R!8k}ouRN/o{A@DmꏸO KOJƼ^hV6dҷ]D\O/4ucʪS 8ha7[bD. KAAu!q+ ˍy4xߛ:/Wc9$;K7BJq66P$ Üp' 4 N^m3ʈ /jU 3PY9d"#c8)0Ju9ɿj-uvYq k\ wկҺ:^zʨ-/˓'ɩ /Kq2̤ i8sWl2I%]{\$/0kX (gN-36 RHnXתڊ_2ėZ,R/$'&¬6|bOw+S[2mKe7JÊ 4Y !I"+l^ٱK2Ý R.s&hvd5g35ْHi<4(<1'<؅^fv8 6XQ%%KzHUJ+"āݞ#BTOMWڟs@򝵦AM=DAs+sqaqiNj/ێNY:ǠbҜKx}tY Sh֣鰊,vRAC % N2zQ ̑dS,BGd3=KߥMj3ZPϤ|NJw)! HG= 7>Sg<9;!HUf#?`f]䣪 d{?9aCBK%}z9jZx-G_CQjF%GNYx _1 *\_}D>G,Q>%|KAI ;je=nPE/yF/q w+'J| \V"0$_A2wg'Y`ᰪ oą,nhN%Iy ^\dA#T~ɿGo1CLjqɦZIZ>Zd{hG2À M>r' ,P40JRoE5||WJr+4 4vR$qJmF}5 ]%_arig%?w!z1&,͎ )@9ÖK=X"$9XBPMܖK G~77f;جϵPH ǪtMDE'%^/c#OQWy47*!tRO}y/.5Hv4dlQ4fQ݂:LL7\vWLZR5 @OGOpdQ1p*f>Q7xU*ʑuHQ7 (,gϧ)O%yɋ*u잏c ;mTُKV8\ʻ_|tprUnz <' ?qVJΣNC;-)j~`QJ+ GipFSr &+WIȣ4+Y'^uH~,͉bΨ-ґwA9ɭV@{Åޫу@$5⿨&+Jw֦7}S⠌udU-Fm-x;Ny|9Y|yzt pF5KSܮc[̖pwz G'"3mi3:1b-E -z#sDnΩR %H54QPX>o9`p3B2Y[De/)ȍ]v(͓0@&Ks ΃laIK xr>oxj1Fyk[C^:ڴJ:ɾY!&Ɋ>H:HvzE&4F2a2[\L>A3Nn# H310ar%P'i%/9l|b̒ƒ5Zzl@KiGCpZ q-K gwcW+P G*3sFwj?T`jU̝~@sfZ{f[3Y/XFEVBE:`GC)w$3>\p& ,_NcG<]REo b3QuZaY52ҬUA`j8 QǙr4^9IU(/(Rh/U/S䋀]/'dq%A9>a6}"E^"?9;Ak y7|B!KeGpp `& M_]F:&դ,}ͪΜKƸsQa yta)}h3fYܦhHD^ ;". pRH ѫ9;h;`Xwχ/m sIS% $tM''+"'Yd"foR!NWuW7R܆;9R q1X{Ci]Ӿ!d?gtH%4g!J޾1;Bjw;L쫣^h^:YpbYS/nS`t|憧9gBg# >.~s]ɲ 8y)Lyg:(TR"/Չ%Yf1 55=,PȫkW >|ԧ(G)$Ir'i >c KngA?iFa8W'uq8/hsfӜ$Gjke0k+q@()#y栲Fَh3e'rUtDAF`2$; sd#^KJH0tof+XqF1bTGTGiig(08O9,ffMzi(0/q xW aTPUoɵ591 X 4 扜F gʺ1(]$e|<#]e=b$ɺzJzXωyAFJlRRyC"i6 >`>4<8"rz_tYBKKϑ/}lN){߂$탪?˴fԈ|sws+W}^ϭl?1P7[cŪ5~o%Uh% ]5 `X-Q`sz*-9q#R^UN-kPRĚҔh^kI-[m%KeIz?;~fs>.q܅Sܓf}r-TdgDͯ]` ݄#4rcF;|ha*mΗK@ \ 3t r4VlPbPv>jLȶ%̸lĽSx^j@^Cx7hbÍ( 9:i>_MSǮ( +;Ul)0Aǥ+-sV"&ߚ d؟MȜROKҊc," Y/D7 Y]u6o{rZ^/#0h A2dA| yk~Q1a9uif&ʑ(3벀}3*r}}h,VWCӍ(2y@v >xz=3Ε3sx7 %#!M@xطX8VV}އXOvdfCbGݮB;M?z#ņ9@Lÿ02&1\lsɭDnM6> K!aԦa T@X #’UHBZ n/]8Ɖ3F@0_5ٻ~tz%lwŢY/<̋=B8 x<&?)FoS%D0-8F=OdܠPkPߵ?fNȅui$݄Wl|SZӇULƃ$"=Mg&e1(2Z/"m~khi?STyBMP~B%Y[9B*͞\dw]GtN_g8(uͭjNqeN'5KNo뙀5D(:>!YӭPc1"NUhĩ9i8Vִ@:a#`Wr=~Ph)]Gr'>$j/rbbt0l&| q} WÜuE܈f.A#yi0/Rg#eڰe~sozs VPp'r2T{xs1$.f(}`NcM: Eϓ< Zf,w,!&h갯{[>7# u6X>VF?Z!-'5NZYAYYox [xԔ\K !uΪT|\'wţt = wϘ B1Q TuxսBد=NbOS Uݜ:SOy##z 2Mɬ܀CCޜN2ЅT*lG΀ z/pO+o3ۄ7/M20s[/y̠Gpqːc7r᫜ -cDoaRɀMgo ~}@-fJOA "iNAT}Շ%(9W8t:㽣1aBx\vs$LYH'_WC8$hVxtaYJhBw8!Vr]51x7AxIa3lfe MڒGZxY]ṳ'~jTIY~:r ֕g-B29TǙa)O߉\ޜ7\FxЌ9K}@xFߠ2jQ?K5MfZ!z?hF㢺2 )s(E{"(8@hPir$jڊg Eo(_߄"h {<R(ͦ|Ym”tg;18gQJFsjtk#uh?{zxn66Z\&39c2E!>0wtF#[EYFU}fmH—IRfpk,ϩNL> xH 5&X2^#4HGU81+f(wBkg:%X??h#Eߙ׸a$zyh.\VEn;篽6DBe6|:|4,U6֘ /an\>' Om6mֈk#&h0XzB5!J^SmعTEas *V|+?;<\2]8"O)]T8SeJ"8&<9h'Rg г=B*?fWX`0Sa$*KMU#?|09:p$<~EaW;%<% I%[E@#'{ёKfwdj^MxATbNyNkl~JIcRwS?`Bl={=bVҶqDbgA>r)>Mb#L]pҩI28TD -&И9g0P6lxo}>kߕ+1+?xNz5u/* :NВf<~Ͳ6VlV;bzHoW^j1S-)?:5gg!D,M)}>Oj>v|5@K Vsjql T$%g8r]C")>?RC][vG/e/b K$;Pq_TȈߒiME&y!=DT돊_s[e 5l[4llJ&5MP~f@\ SL=ه˔EG +c`ykP$z#[--<嘬\':Tlj-`ht8qtE+M3Ό-J6HFG7N?JRd iVLVXe^ E9z*ZyjJndo\_A%W(/dKe +A`"oŒ,S:`.'B@6 Y9fnhl ZQxQ*g/ *;'TѰ;~y͚cm Jv P}_5ޠv=t2)'l:&L*3R(rྶcL~2L4ʠ|9&:3eX9$GkZL:;hqh\2{~f[K>cN«B2YZ-{cV|T+cpoZD! "F W$TD7)^sv3=%X\KѵÐ֗aޞVw)~ic?Ř?_RgFLxkXQfκ9s`v7YNp_]>KW$Ɏ<-qOݨjya?^ą E\4 T@:]•c@%&R^ǭv)oD ÞٔA  IELcd+QDZ~}K3lrXNC=Q=K$ЛؾjfV(hqDԼL5AUrLYs=H>Ao’`N _ا;xQ} %Ci?Fpux3IWE"3RxQX흁5GFSg@ $ b.2aK' v[bﵵvjQ_rNX[yA-:+Vbo^nGp~QN)f?Vh|g5aLrCB \(C=#`5n(`r^LH$%A=YwElQK'5$!-zR^ǔCG׉*tU-tztXOy={k{S}K)'Q`FK8"^P0K^oC P^tD3?H ~/UNb QDXKnJJPj3&CÄMBep3#3N$ : ꉌ~aKce /jM+ f$.#`a z2V?dicg';CD'XM@PAC̚%ye%6H^ZaQMʅ[v"疤Php&J]l :"FeNvx[FO C?̿rʾ<ء;LT'RHs>|~{3RcDL.ЦSwTȍ=dj渱WEWw"r=ṝqW;iJԖ$:qO4wtpAap?\ŕ1]lRHT}fR' E]B#IU(^% EPoQ1l|Y>coxgĩl>Wu +. vO >ŖS63͍ɨopQTQat!ko !ZN}Nu.t|VCH~1vwg !HZP?\umL.19_S9hlQ+JrLFzdA]y |n}g '.ebvc}yX2-[z*-vG$UׇY(@K+ ;bjE2Sn6hp _"Zuߒ85`f^PiPht0 wX6=𲤉^j,Uy e3KSSw%S7Bt!WD|qT k-c87&u$; uP57-XGQe:8;2CCofYV: e-d }- @c̴pXRhXtpJv==F8^-%R=Q| -H7>#aթrUxeQh9`G`iY`-csϞrr컂 yPrA"uP@P(&a u(ݮ[sD+ xbTej#>BR\/\.,h yF@]<|]|hi*r+8aC!Fm}.f/W=#ºnB^\c܅b0Qn yD3x[ugWPsy-#kjwND6.}p/̷cIt7IQ-rq|2SVʢ 3͌@VhϛG8"1+Ҫ=? ͻKCUF4FMbs^}=7'"Pg`[S{ j!ŐMWQg_?Ǔ7@]56:1|Y(?ʡQp rϤ=jJo((2I%/`*md=Q-ܢ]WfwbPU2"U$pHpX&N*~XV"‚?Ks  rBS&Aa)]0_Sv]n'o*Vp:="IU"'Oq#|Q/G6R\1V o6KFۃm5O=ĕHvs^3]!u՗p^įKQB|3ࠫuyS6kŧY*!'1kw<~ތwQ+` @ts19!q M[0G%tY L-OPNZvAIFC;хG|{{=bN\{[r"#+L$c ]PT\]+Fh[h RO-F'N28]G Au^#Y_15dvB:֘`ca%q|;E4&R҃3";VΔ]$7Vms(:NOF"Q.̯Y4X- NuR$U} yڔZEyc 0?hܭ|~t fw>S1ٿn.C< :.Bq5B7U>+e]hÃe^ԬTe5qSix9LvʿŽoƵQ.hNUt՜1ZI3kE1UPZz+rCp8< ĝyaJc׭:LqĈP nGB$ܵxsXtCg X-&O=yax*}iw>z-q1T.A]{|"5ުZDeYMr_9?YMAS,X*0ʩ~'mM{@EQ)OZ2'[2zK>eir?EFO3{M/Q,H;P#ڲ]R\p;:sPFU `Ϭ^uw8s )ikU,Ww'ı ^ 9By.($>{ıWFt t. 3=zqƙ@Y#qdٚ$I+_:>#w׻r?A-I-d4Ɵ"&^"B0=M|9 y(/yF Â!hNgx2_XRwЋvG4}]\ 7#w0i*HvWDŽuܔeI1QfO9Y{aepk됎$ NZPf$rC=]<Bu~-{x@GBlD{,~N@np8Z9۝27Жng)]> Q_&/M"҂r헹5xS.\y$)+t=dJSb!dyvMܵz~DP 4E]@at]s0E@8-p%[`?n3퓧+ϝ\p3=~n]yb @͠yU_'icMC8CW ;v.H2sY^Rشyj/J>yshMPa4{}=pя\[6@lPi<fLC@m?Q~$<8];KD=NqLWEIp.FJ {m1[EXs Z\&?{p4Um:sw\i}Q;[Q\["nCg=fsĄq=?1xQbW)vt ;QY=c sQe;Gs2O/Gbf3m%6z$W iOr2L!qJ"=QH6fܑG KG\ xP`u{:b_bU;V_21SgU>φVm-IDW=6]5wz\p5&e6Xʀ.FA5jؘ3,΢ ؤY:vFH; EH~ϐq(ʯnJvV u u ٹڊsY'⫐2qU=)m f!"9Gk_^!fCWy؋7.}ǔCYvtKWbOy\%tj#(l Va ,vDR ֿ壊ܬ A- MUhWPʐAgs޲K5!D'en1n$5[2Bæ`_PF+9"q )XBtXΙ/ @2Dj5, A ;H@gpe/M h7;֛:z$!E=("ք;*Ȩsd7(yߜi_I3a]OԺז=3q>%<ܚ 8B*'fV;5E_ ǡv-сH+h.hY8tr8PÏL0} uLz[kmkĥjtx^!>*>V ,W':o jT&d?`J܇$5UBBsie$)qVI4#ƺiԻ'¶ 'Ȥr>go!r.$cuُ-U0U&8W'g |*6$L3C7rYw 69xQ{ ]) SxN '85!h:$ֶb~5d t2uO+H!|K^k TΥ.;Of5dԠ'& sTae;sS M3 Kfj~_ ]  Ll܍+BAH9Lv)ҧsb`n(˭ܹQ =_)D10  j*DTͩHWkL$uDE.~7\GR2D M*(X-,CŀJ%4`#,'oGjBqy|0٨ro3캽cn,[䒃J БWӑL$ )B=L-n5- ]~޿ <$I8AˋzIYPX-[`w+F;op tB_C{׶I|?^{_7kd+8 3P:ٺͥ:1F9YO`ZJ2琫$<$AC72]c.^c 4mlQH)=J̜-uTَd;~$ԙ'TdhXn2ArBie g8-r52ec!p;oԬ qώ vh WvO0Ġpgzs(sDhw/'2ܱhvS29|E_kp샐+Az9s}AZhJЩ'񤈉m9& "OA5!iP^"Kk_ic3[40SP,o;x[-EW#g?{?&T߳ @7\$$\5O=K?%|-ݛ^(U09ss PQݐZ |aD͐!$Xp Mt*(@(& n¿vnu!jDFDiqe>+a),^m<20,h>xElsO&KP۞`E@wri߫MGWA1gxtfkA7DGpfy=:lÜ |;mSD)Q~ĒRK,h~ib65(CŌǃWrg- Dp;^p)__" v:~ p6] tL"͊L)6*iٺ c"NRx $G}=#R(qqWr #&da҄]C(j>>Fr )e'=^")鿽b2y,QA0CW^ȷeyȉq$[3}$2r= Y`f6Yr *u:Nt'!Z}ITBnwv9ewZubHT @JH)v;L͡{<@8^D'iqAE< Q`*47[q+Gui8f Ib L{J:ΙFȕ/\HZ[ @/#/6zx<;/VK>eD&āDm :2*2H%T/xKb ,p:H8J>bvŕ㚟 jttxtn%P9~mXI†(܊Nʶ-HDu?:$wAc\TSvD*: YW$(WzꖛFhקk *Skis]NZ;y"S;{-aN2YlqF[Pa # sh~6 yr:RǻIмIp}ɯp!!j%po!j>%91F*_N PWnM0@KɉSA't<~\%\>A]a+8S]{:6/K˥'Cʜ窥,N|Fخ%Z~UD|y u̩M{;Ko4qK#!ѸkNQg"N2r ӃοfȽ:L]ZNz{k #΂\cǎe3퀣GN ڳszTzO,aX@#$=\n\0Mt[⏉ 3E\:n~Ia]uZ\*d@=M ~Mw ٱ.ʛW9_kkC$_6˩z@k Z҅ls3r?ho> z$A۝T[RA"8Vq:T].75}c&CN_ VI`x~֣te1&C&H+sSHߺf(]uE(ҥmp>3Qӱk(LXuXem)JL{ȓ3 C?:#gPࢡ2U |չjSE<| r´~cDwWN3IE_ef|x/{H OmmټM8{ x`R]9/SՓ50Eu˫lZ~:j}-och3ꢨ}n!Z(NՌVk3:#ډ\$艎d;> ,RtURgE|&=8ƸB!|ƪd{̵ H{.pN^?q@Q'Qvނ1 ~dytA?ᤚo|⢬Xl!.ѐd%i>Жɩ2o] 8XݓJnƫ( +9tND`ׯ]GdW-xnVj\46Eƣ:<7EO-^ޓ-A`D+FX5M!ۋic+(g)Op0Lo*J6p2WAuVH#g)[j\սQJtGN7RMҤMf ZZF8HUD 1f3ذfZijѱ+6kJOeqNc{8>c]+ӜƏ̸iɶ` h ,~AT:u";dϷ@,{;"l6y<|,M~ VO)F {Xji7yh9;i er8cӫ~GZCp1VdWxI1 ,h'ީ{_V|B֣"b|p:@61Ol]O/5ثp̜Z.\WxCeU c?gxy|7I6|3H4:eiEÎ}a[R#0eϓ,`Cꚡfۆoگ} 5F3Z'S02fm\tFț!xK}dWys9'N@-}xfHo Mʜ&,^MPwydB9ge n?":yߡ5?r` aK]rI:'Gt Te~iW]Ok- ~;>k}8rɼٵpanL"k(;WjdL&N]ZΧb;Jޮ4]qqBj` jsP*ܬE''U !$CCGpg9 ԀX'aFьw1Ye/MsyX&W?;`r!iER :rRut]Ov{@KQMQH>mJ׻JTonh?kpPy?K}Ya~A@jd"7}.Nnz^ҧJXe:Hq؄aXr 9Ɨv[sQ{eY0nSмP۠=|c8'>J\tKiUF&Y_fX'jF&I|3G=P Fģ~r~*l*?JJZKa{!z5uL~W^hrwYF`+β\,䉂P=G)38{1yܝcn/*S%1zHNb5Il+| M vIk65?8\q<)xpxZB\3;ZruU0πk*Pwy]j)=.ุᩫSMRHQ|7"2ݓ6M9u/NuX|@c7ˍƪ2:!21Ϝ%->56vFO/|MD>E~XA2gĕ9 b FOU>7]e%zz䒭揍i*lJ0bV:pv:7Iz^|fX.!u R *+m╖"9E_a֘ u qh2䳋NK^U' QR=RÆTNWIՏʝQټl~MDPFǴ헃 [ud>e]{IaDIh/1CGn-Uv(;]?Qj,d  BGAGWir%2U#.SJ_qhL/'C"V3f؄ m -I8gMҝQqP,9|}1l$r< 6ĢY+O] ~w/k aj\Ƌv^W㧔Ck[j89 RB,S%M}` oFleﵪ:g28gNEb(樹%QvV?4L#"ve4h+*:+(m``+8*p\ 3AE%4PNA@ڳtdPY!=%8n(RYmKJ-F7i#rH[Z\uz| #]>h- p})lFr̖JEV_/J.~xdX.rnaUS&K;'Ɗn9:D!^ рF96 (lEl[!,"s{!C!DW f FpdR1: v4.U + E*CZQKN9AYR>3?B`9S[crv}'!oXl!W:NFP~ȼغVITKZz]Yϖx2[56ǂw$lP L FR=gEE`3-*`b*ޞitݑޖVX,ިT, eⒾQkؼԾQI(,ŀֲ/~X/]uG8w [VMzsGPfZy@m*(޾p[K0E(FkG!2!/d$88!Dq'ELX"THˑ}o;t %C*9qEwM8s =.U)d_1BsE[q*6r1/xU ܭ2󰋼?Jdi51jkѠ15aoket LZy cd!4俱V{sDIkUL.ӷ 9׸ʸ9]XX.D;U1Ɋn}C'xDgݗ [ Z`!yT}|,e<^eCkv2cqMSGW/r$A; ܐqlf"YKڮ 9V Qr}/L័SⲿB*;ȧRqUy sn?*pJ"g kx~rK7;ˡ{|>=U&iD2łԊ D+Tq[!:fo) V Fe|;yQA@edJ46(_O@X_LDmЅK2 ʂFQ*79V P'z;xE2֔i ͼl(.xR goӋX;+z@L*%:7U`,pNMSFT6~EwM֪&ĕ9H .,i ! DSގ) [_um=L*v.զ&ꆊلz."$.MnT 1wJWP2F Ԯh3fxEή gLE;/5ƮtNhMZoXT_c춿4a7FGPb.N}Hqs>f!5t9{*d7:NN}}q6tz;]Qߟ;Ͳu2MsdEy"Љ: yLZ\E/#ɕa4fa[9$,j:x+i&mWut2LWG]!e5oGyT`)GkA:@D'ϖ&jnQM<1D9Zkthcb+Yݘ,ӰI;ǮHZ2|Iْ[o qXq@U:k+|K0!wt)U*}6JUz8[qm'*¤nA9fhQd)pg|총QlvqV?$[kujiٶ!5a yo[0qK9XzHp%%fB&Pr(ͣ}MLo9; e:;gy>* s>!ߌB,Y$ )PP/(hΐ2kBtPn6ԋHS{h݂0(#\]vVT*ҊiMQU(:KN6!/ .r2677r1Zwb- R3y5XU0V/a{YĶӰJ?{_A@uK>f%?K8Em;a .&e#Z<b„"Eb{t!jZWvklMiNx$͠kQo>ݻO'0YE?3ɼ]WJҫ1wSi<^B0'Ze8ܾ+݊JchF̷)"nc} yc5)Bnd_V`Y9,maޢo/.؆_ X'ޔ$`ĚG߸ =Z3g)LU\(ma:V־wOjp)_M5nw7әnhf3:LYd2]\I@`Xb=fU MRҤW$%7,qE}t WЋ9*w\ B M6uOaA3+Pڱ'Ɖ{t6cACgw&<9z)P˩MlZ7lp2f]@r%ZcǵvX6b`nq=#˲oR$ߡ~KϦ+X= Lbꩊg笈W ` ֙v=n ~8sTAb9L mX~Qrؘuo]/ZfGC3$fU6a61[52߱mዂ])RWߐ[5&n/p`g~Lt\Nެ*Vq0ȲK[O`ܺvm^JmU=&CzgwXXMH$jerE_GTHÚ"~2n Cde.rL& .θw qߴmP2GO笖@|_󔅴LvdGQ_<CJh\ƾ*v|*r^*\x]1>%2[xa6l6m˭a-J8=9Slk~] rJQiO"~U\L,ˋyta¤ ]3漇6TI'n=]r]fzw&i;~Pmm} z'$k:w\AwT*7*O. D7,l~pƀo1qN;HPgn/->H aPAj oVP҇їUQv 3UTG   SILbfPƉZW􂜆ϑN|+'h{9aj`0{ũ" 5f--6@+\ Xlz r".<7 ]FU$𝪇g4 qA?׭iC^'co(hq_[{)ܾJgb wΊ1o&qn~jNh/Qg0ڢ_xd <%uP3 DTlF sm٥Fu]&πi*%&(IZմ=K8Vz+}cIYSX@aX}ea(LX 7Q 6ViF)YQia!'gbgu$/AVxih=h}V]in,k_Z $򙓇8SFoZM19JACI,SG  ,՜8ͬ!?=: a̿` 5MD,jEcW+4x`*v'~p=mڨ[jk (hC"mI ;fxS}d;¦GS!_פǵGV hs!C3X^eJ">"M6 /Gu%^ >&nafaTO{KÙzb=+EAd1RXcّIyd+7p{*Sj# J.4p0 :oܶu'z~5B@!I` /Ǭi6D\P^Sq 3' :~Y%eo8-csKzCJc{ujn^^K2(8LhWqH`uE^QTnOj`S- tE\P3_; O9xJ(ѩ*=\y}X*ɹz7dl5Ȗp"Ts(n:S߹,9"+rdZ1_,cn( ArA [  BJiV_ˊY.:)T(oIN"Pz A~to]ͣeܒ<g>m̲l=6f}QNIro)~>sX)8]_DE$̭a:rjMLjG }$?·4]1O篪Ku,Hqtp8Z@'1GyMUJD'T˜fvNYE֓k~+U{8MՋc}NSbR kCAMm &n_ُbnshnI>طu8?:-ŪBa =`y~!JilNG8Kb5#1[PN 87oxas3D~rUեIU ILEby@-0PE<"cnK+ɕPQK9d"&-)9cbRs&H EW2QlU &&Ow z$Z'Mt_ߨF}jo4ֲjţA؝ű z`/HmB໌c6|[j ^nТ>}d|o>N˄;Ä[)CD\Rq0 *3&G%ͱت5_:Wĸ[Gv&V@Ep 3[ ([GH1C1*#f1[1K?_ 7}YMYN]ÐĎu6%BWT\k (c,}Oly;`?BlQosĭLWc8?ub#٫'w69QM[q3ؗAsdj#q>[R{  qS8jiOnqc#aX\:`Ѝ>A0cT̆|Պ=}U@, (+ڂh ǥK h[9T} OEjҿ qR(bO4gQ)OʋM߇ jqiBڐ +w0>}ָHO(jD~1_?3dl?IoZ>C2l UTLdJ̀7wZX` `pxz}teNa"N@Z9A]9;5tZ䐓Gb?%FukXh k$Ʉ2y& w Ax ^Q8P{z™;#;9M҃ K[m[DJvҒF]Q'-3gOOvJ.<^rAHnIw?lk+#;fSheA3BW*G$Q^rԞ :!>q8CL&O& ;Mu>xJ/xQXձ9&(.EFl4 FtdSOl X{u$A|E*LӅn2%\Sa.cȢ^DBS7׆{ZE ԪE1yx xV%[%i~ւ Ē= Cx"7$4@YZ`>s1 mKbaR]$y N>82 LTg{=%[ɘr84ˎ)1L7 cRM |@r Hx͞&yLь Q(T*d(/cڡS4|ryֶ~ +N{(wQ3ܠw,NF+=(D6TK[LI zyӕAD6JQ0r +~FftTl3kR83S0K! S7OAϊƹI*%M|g%_4W(i%ʉ;ЖFn}a)ny(^(Olz9=!ܜwQ#ϪeꚀ/M*ku8})J8AaV.@]}iEhn4Dzgs9H{Z3ȅǒh~7+>k iű7YL#r{ˆ;%+UYe}:P| 救7.V錨Se+J)@<.s{Ɣhwcf^#Ơ&p" Yuzޟ O9T ŢMO>@[Fl6=?.eW;N/||_H-r8Y*X='o=$mD 1+3RJK^ {\'W_J[0] g91D7< ,7Х~P-XyC5.Ict@F4űHVb>J Tu 2Z%ؽiC_uTEA80b3j|jREjGoI-N9BWhh׉^T홉c+*9q2BKJa9S AX8^CVfNl1gGPn^&c(@/SvҜtS| [t6KE_:U~@nZie$%zWzv3/ V\"#`oQP9dߊԢvod"1=+kݤL&h\42ة̽z z@ Ow 2XR||vq%E!0?[JT$ׅ=Ojb/QNN)TMsܺϫF: ۆ9b1\KaGt5&\k8.L`ᲸQ?_(2y*~ e LV.C*)tjV|:Y ,To)LHX IrS dҾ6R|j$^g>,E/s;){(~(;jw\{68o[B#NBXTЎIOcPlu Z>cU%9彴%sg1Yq R R;NXn_$oi^=  M+|LMJ7[i>m}qٷta&pe& #L7):yUԈ hZm>.Sȇ#2" 4xkNX>}=/Mni\ƙacutX9#7ŤҦ6t@X{ ȶY\T{AuÔ),s? D$ƛ}Nia?e'f"K96Ev&򐟳lxF bTUiaC|t6AH?;v)y\C4&NJ$)jKW -v $[\*`1 P6﷐Ÿ99j$G;ǤSMi p4 ޝD(y9#ȎKnЧ}3L[iBZ B."K˼#,zyEoz) DS5&klC 8C#R߼{F`y卝YJ(oJ&Ux=4Q\;/홗޷q$PQB}E}uv5z<cr--qLtwXSܹS_=:,cK Fb ӓaf"-ʑKxen%Gd,@j*wz^{=v#w HIsvs$ Ve{(y(7k .v+N=4ev)nP,uffrvt.ƫsc_Of3 ..Uֵ T$@!E͟MLpŁdpVu#S N&7`ʜ H0/,SiVҚ)^k +ևiS aOuc<8s# $( 7} >Z.|rZ*Bx]aMgJ,=孤A_P6kM҆<&u B*#<X2QͶr/fK:XY4,f@?CTᨕL>G M2.Ȥ"SO_U2)RIO>KR4++K(!r=)hYh}<{ `*F!Uk6:QgL+U>vCMyW ^4u%g"//}&I7 l AsD܆-J}~!|nU?:l|MxS G ,j\"]h`# Nu(*:j>7U͑IBo%-QEyp\#[U=Ю8>*V`J踎reȜ4kK8Mcs¿B65ī2cE[?1Ghl ܾ-áY$uc+T ]Yާ o0HFZ<OW 7HLAnu~f-92il\$k'\ǹrTFʔAr!qdGˬ ;;kxJxe"_ )},u8z^Q^15RF\^}xX-܇ܒJ$sRf0tG12irRb@&MKAo^슔GnQ9ZBEݫN j|؈{ݮ3*ݻH*" ^iZLo͐iwD!v&W|J]Lclo$ImzG;%PA el] Kx?{Fٖ.37$ Ɓ S { *tdS,~n]ErY& 5BAˠ//$ ;@?4Nt2-yJWd_}lqIQCP ) sz"$fC$T*Fpkq_\ ^(tU# < XWG-^=i5w4`Og7* ^͞9O)ɔ׼yLj]ߋj\QCa}Ϳ̝`BV[ie̻8Y=D.%jn!!/ЏwBFc&I3lc;tn{`3-MB\\ؤ6 :0!M{Τ# j O+8 w­ `r!{Ct0qyXF^4yseN (J,—~G;,l Y,ǫVXW<&‹>(u^ *hxfl.㔆Y@ 6tO}䲞-nCȂ\ȁ!J'i_eU(2@X(`*`Yc*x*g;KԦ 2$dlf;!i}Ȏ֞gHD8AΔ_{9m; /m.dQ56l`n@xUfDB 6e4IeQ1c7:h(B3Aql1כ0-.A4}ɱ&W{#30}b&!@L+`TTYTW5(,p/>pͺݬ+.:h$fb,}gd뵧qm[` M?U*1HFL2c&JUl":aܸe2+O@\UNB.SAn*-1[0m?MQ/)dv!xvxC5 <\}SM3)`h_B/F;2Qr mc!2y`[tcs8]=xr27l >z;o( !j3Hqw5ڝ ŏ}v-f]y>ι /(%IDaSeӈ"ҙAN"^Cp飢2RN^,*nB7ZpFkR1߸_xA  nԀc'}|Qa_fa.bsM=16Doc8e D KzCV폕wQ&!FR4&7YRUj&A+ ͔]%||.C5P@A%ɟDm|3jq}^R0PqsxE;Zy?n(a&ϯ׺~>Rtץ[䣟{fcAY":սaMD2_WZ*g5ai4mQ\բiqo&+nٴ]}SrQ2Ni]XiE[*Fxy$fL&xMMv8CDc2ku7l c= v#6J+YDs[̩|~BM5#Sw2N5Ø$'=Q+^)|'a"8ՙDՖF***-fy7[gf ʔ8{,@\PCdR7i9RƥXPmatO.1/ e`@G9,78G; ;g+9 F(/l86D:|>!΍h;a-gg+eL^T%˒='qo[*i}#AE ttOq/-#9G0Hdȯx+<6_1EhEWqm(6n{XOKx@H<GåP%4̴/CX!pWoi06}?ō|KvHeOU6H¦^ }:X؟MQI`Tn7mQd|Y̾!{R#Ag1'^bȎmMl$; Y"_'OqatJWN 9Ѻ iMqv۬gDjyLl!MuLg'}= te[y)6JOVl);7z2?lV`{gt%WW>Hq0D(c e/~sBb 8Gn WH9eFG@|A1%:,yheV+Fnڟ_NePT<V`ĭɦ2pA dPI"Z%0xӟS$0>F@fφ>ŶȜ#$0?:)%`d8~׷K?xڃٟFW-kU9pSƆF tKG5*fVZ9_-hQۋn Dc +( @`sS``{׷mG7$S8~.[*R ԴtVtܿf9)܉:Āq/$"#or U)DB6yd-QBlD/nvq~:vbtZ)GG+qrEÑHUh2;\b)Hs!J[HL$/@(>5aYpAkyүb5ACMCӕʔqP9D/ jOÚ& /ӨKB]|53 [8VH]4P#50"^}po-91xU>;BzOYEgw(Xvc1!/mv|٭1F  $c[~ v깴H8} ۣCz!-[X[jM,::PGbɢ+?\-1_y*@V*SY4K3³hrM,Wd1}X6VPdhIOZG5TALq4Y%hD] %4nh|[.ild);R6>L#"=ዾKL)gWxx>jGkWw|<h[vu~>hvtk?RJ*SelB[z -b[0ڝ0Q7 exj)_.P]wȌqåQZijW8́ y~`Uj{Jrn߮,W,R=`ӭޗ&ЅGۮuR#U8_2,2\8*6ݞ@0(J11:jDH;:i*ܠf2z&;qXEŴ c_7II:ڮ2:b:1tVˌ 8Hv|lK} x~aTu5CNX$:\DQT@hsQTt.[ {ی\9GwgLtZ[v=ޖaFRNTvSeQ/BEX j#p 4c"x icV႖2[,jD_4=I)J (իMIr0d!+Ku;ʶVӿ\BitW߷zk⢾%;96 d+exۋ{w 鿖Vc'Yb P|?ϕ-{ vQ*0ķ5iS^lG/˻IE\L7SoCZW4>dyleFw$x ܭr ycev;IvR .K_|hbqHIȆ c\+SNinpoڒ*1vȞ.IL80PRbM~rI>D\Åػ6:eHoKے;0dLKס,N(>b.}AvXϟrr5Rzk}ic^7diď:b%M$.CW0Oqe|<[O=`;&?3ΕTOj. b 2M9oӧvТ߭[0CE(i-L/w4gBm 7wž16wF/-:Tq> MuZ~'[kU/"Di$٢EUm~4$R՟ `*|y UЏ]8 =ju E8KX%F_mhIl0Jܗ# :L7XAMyGEom:T4P=d{wv&pvאiv(:kqJ5c3 Ӄ&^eI?o`k=ܡıEkMn汲RY ~TM͛VB@>BY ݁6爖ːNjl;yEG՚5y [Nfՙ^ #և~b@FQVթ^aC8nh{jEZO[ FQ#ݑ=s>X/ErB[c^*ʯ/uƓbb=wY@ubtc`pÿ曫/Z1c, ŗ+Px + 9YR&FʎRtQ -, xLal IH|\*=20ia-ˇP vm` PZ6( 2妷XZ!RmbK>u`9O͋09:/\Mhy"֠8H439O?oÞ;F<LEVeU8cr)WsŘ!@`#k6D˄ K2Owg:0Ct<9mj<ͱ2r~w0}2}D4 MwNXvSTqn%`ӨB i!v^gϖ;[?޵:wVL/פntva rm'6lǝRnbR\^5QʇW|9${IRU N,os+d |=-> X( aiR]JhOqH{ŁO6e;3E9oEP)~(n$EUdP5WH8ey6M,W^hU͆츶92B%]<#RUkC$K*T׏韆_@tڌ~ (|-V~Vnp矏dw˟Ӑn\sUوiٍWakpo46I%ɣ">{,W~ ^-BܱC̠?|UuVneYqO5 dz_Ⱦ'>#B׀)xB́VEݵLv@RQ>F؜Q!7O9{QSqi;ξ4…vE'Zn=]A#X7!v#Fvz'~jiKf{G_сPcKWlMw-^xf -.p`{46@XR%ۀЄnE~V` , cWN%N9"3N DDsiFB;.@B+b0GƘk{\Uނ=?B;X 7coNǀDI#4T~oYZaJrwn#?Ec@; +g{()@œ8}  , [5ͯ{ K2UA/qF/@^L^\hC½8u¨(9_bߪcuHf~/Q1:?N a NXcI&/f9;m7puj:HQ-w!~mryl5\P*Vȳ kicA(=M;$AYWo1vg!SJ5$y)J)| Z"㢁('DC<WٽQ[gW<7M/!;.F KUxZ8p**^. BꡲPHUl)CDc^`Auf@e2GsyəL'd#'dzɘod6_08^F %kv򳖹όEgNZZ_boުiYN&M`UE( &=^F{QI폞o&l 5c^8)>}[jp;)_rqϻ8wy9䅵mRAVp^-l!q3`'ϕܭyU9 vL{(ڤl73;ײ;TХmno@" yp=s|L}› Wڪ] VͯkG (~e[(,I? "@9v;a'p4Z@MhQ%fKWC'5Z~CSDLCb hW<{ 6>/t^Ƚ:MZworm2uXFfMF.:b[h#D3C\Y`#ͷm!ς)q@ux} ŷ`1m,5E? dx~P'.cVwLم YRt0)Q#$g'JJ/_x%tFEpk h!(1Q4|Ih6[똱ON/X^# sܵďpg6pcoN §)H{+P,ߎ‰ ` /zX+!p%9 LD]AųssIG&wia(QdO+W&LS|/b.M=Qe|VpEӄF7EcG􄢕1̥]v1'&2xn>sX9 P4ㆺjlr'sUids裎I{֕Tw._a6tD.i4{#[č[V|zůWK_u= F/Ylͬ妜+@A˷RVSnKiYƑ1zZ?KƧ!P6rVLa~IjqȜŕ13a)vz7=TAx%&\l]EN(Dm=, %/rmmH(lX_:ܰD`zAW‰-`_GB~Z2IO4n=#n$A%8)3v"S@L‚.d#gvY+e5.Utaqu'uJj[mS Kя0 zUH;QiЉtdy#!8qqj/ ̥>2zR̊h֝/7$iOVH䩸ߛC>IQ_aщں?Qr\sYƏcE"1!15>[(Za5ɉú,0{~^-]slk~jN>d8/L1tՓ>S ~USF0ڂY*A%F \.2'P6ZFVExi;T&nϫX?;szy9zWcH>2/-"bhPҟx?'|ZVMH$[}{=F9>ڍDtZ3Ǧޣak䬦F%2o}^9ҩ}ډ4ͼ XSVhaʛfz2 dƄ7suRiڥ°}b^ 6 ،Jlw-PRW0*4uݬA P~Uپvu y: E( (ݻhovG,ʑ^Szsi8eJ) L3YA! s0w/^2OŇB?;e71ŝMkN7 02B{dj:_fz1֝09#unV[a$=n-ZBm߱,# 8 eiV|5k<R9 ?Y@D@C۷/3c¬# ⎺yV=2{GD{[!3~)>N )Fh^" .zuǙ-bB7c9ޒ/q"XNrW#N^?tIRx׍X-.ma_(昦9QЎ!$̷e5<+Vgvu4wym{0qސH-r8`' z(#Xh@Ue ^\6nbG)d#`NYNfH$V$e $&09%҃j/B $8M)KUcL,yv \0 4#xz$#F|I֬g=)GmP:=FyifL&nCHti8ZLB;ؙ|bPe^xJ h5cdf֑ȧK<)vthLSROyvjzXHPTS'xWnjl%~)?"R;q tr?U~qTC댯 7Ec"\@1=CסUIșˋ]SdRԤW~FωXź5-`" U#V#śIA7mk"ǣ6k9Xf9Oոĥ|N}Qp!K+鰝@P+Ucu['Rkj"})o$ ŕ]m?lfB! }~gЦMg0Yˆ'-8n[|tt'IfQdLnJY72ʺPfhۂ"#o oCٺҵ~>92R]o|W9=V8 6'CL|jyYo7/_2]%{0] C=a".(#>NrĦqe V3Yc\tRQT|?srMKaboޅsIqWْ tb R=(9Qf"J$D XD]j bS*6yx`4T0}4/oFTfUY87X 7ϒjgL9 &Q-hjX]9+N jE'vw$dEZbmz@NQbaX隒ODB"rN5i\ӻY]u>wҧ"&Z^W ȣ" 9`{Liw2@]_Vjg|GO'H%-gN=ڵdΪZױڶ}( u;ɧG;wlO hgfyc!Y쵃m&TE,/.' Ӑ?UR`Ii1L/Xt{aIbx ,N L0ִkZ'4|H(9/MB,tuE7L1yVo"{i}g yJ-m&oӌ(_1!d/1:]NSL, %+7)lxkM ;N/I/C؞AHB Sν;SaQb,?YT-!Y>.К3s2јCi| 3z1Cnh^9ZF1JIB /zK[q R5oa of*KvȮ eiQ0Qm6X~zMC^c5 AA3@ \>4QK**|P(ZGGSRLT!@Tl]C]qOHk .m|8Ȝr9:;M!2,o+IQRzZJ8H|S%)# u2'`G >-lP\LD]Sþ]/t%u:[cQJ%tf^hoXI{Xs]#ulq.I%G5hYҰ;2ĎEED?h`*w/h7- Ks t'J:]deZd:УSbr05 T6F7cqz_VJH: l]z7ID&pg8k,?9DHŎJM!$ +A=LBiG@q n]rlׄ&SDMsͿg' r+Fg^W}-8Ѕw1qAVl^jrJ4Cբ>e:n}69с[+>9"%gZ`w1&4kg!:FޕYA@i\XH{o?TL >#/yoږ!V}ו ,;Z=acfBt{ܮ %$?`Φ"U$+U͐.h@^d`Rde`_MH?]#Jq<8<+\ #Yb#eSd(A޹Q|lLiT 3Өw |pE*Ңq*ρ/KMK*(u:Hb [8A{bTŸsQr"E{N?CV"GkZ e%wu@S%8+ޯw`H1vʟM؂t/)I8\}kMv[uI{.־GrAWtFGV`mI72PW܀i]!"[2mӊR|^AqXyŮp'X77SKe efѝPCZ!AFVOYY+GWC43{),<Q? ^͋ ! /6gɷ*^Jsg@,X*O)!y rHKH.*o!~M 璾 5"v 8%&EA328\m ۼu0(N',ċE@]3O[˨ED= w)=JfYǔ[t2}CL*4 G'Em.Rg/ͬF Kmn-a8¡ٳPHO$(;(UwϼkL0UC$Qz ELp I@rIF=]^S3ǹB i5X{:hJJ)5T |ǼgĄg(QWY"R>Quz?6테Tipѷs/mV\'O,Gh,f+{Y<"'Ni8>Pߨ<{-7j"9]gR<%v]1\4kb&A."KjAu0 &Oؖ`!J8uK[ Nw,Ӭm0Pyi&~鑻囊1Ӓ[?6)QX 386FFz/'Rz Sj;M^?4Z6Ɵʩڣ]7Ju+kY~|`FLJ%W@f!]CɃFApp^.ֱ"?ǡ]U;1[aޞB,K( T=q[v[L1* eAZiǘ-f"~M#jtrvYX[6x0QJ>kCl fB YWo|4UwiudԒ︠I-Ҋ78 ֹ ]?=w?M*+`LDfGk/T/=(Zs` EBkGhQ]u !P70VQeY< ܮZ܌P1{V]:zC#̾Ԗ>aرbQ T&mՃpvcBzwO(D[ OTK񰠛h]6dLZWn3˯zHRjF2ٖM>۫D.>&$n`^s^64_R}rуEP}_ϩ (X_a2Z3$g$Nٹ$ֲ!.mykpo0M1n _Dls dw9ReGo¯e672 bwivߋ2{Xk]lLGBMgKT1((Sgs@| 2t 3q'ʬnG'̶4{QgU!K4D vҡVU]\ TqTZS!ѦVGXo=*!lGH3M})A7y,*PNĭG ## #Z둳cgL9_T(-l}<6XVǯT ]x#Ǧ^~4beJAJηTHc"b.^}A gKtC#e杕-p1&F{{ůM hhyM4pyk:EF+^tp.@yLMC-_)Kp0!ӮdyW(:I7)TIRC5mY̻hX͙S F- L%<20f_M-Wi:l ׽ ^"xGtj8%g 69tk Վ mY>3Q^ ,:=ȷ(t J@=AHl OgG|Z?A'>l6ƞ8jJE1΅VrV5aK䠌 pӝu̟fuBh 8W!k N$ ^H4;.0IfD#l}nqJUycpuB,Hq-yeBt4LWWL#rq}>C$/u,P LT=nzS nQ1^$sqjC r"$&Y+5Sw"9πKEb#;v ۞4mB?yڄpTD m/ v3No  9 ISa;'OawD얥9 /wH)"<Zӆ i`m]} 7 >TLnʇfP+W3=|d9Fg(+h*75+#*}Oi7f: rTjpR{tr`?k|k|{!Y0=yd,I8} cՊ]*KQ+h0%^ODSN绖.%7֍ڀC\{=B!/ʠ }Ϥ2~+Z EdVA( ݙ?,3ml+F,qPD*%h`Z8?7*r{'Ikw}"uO$R)ML/ׅ/V MLQ.H߷G \hkM;aZV{;O6~$2zfOӟ#ƒ+,7CX:| qMWL5-5b0(ޱ,~5)f?O= ănI8JxbQ8VOԈshkz鶐^|jҽgE}WJ+E˩a wA[fߪi#mpJԹу@J`Y* .хKXɘm~@`0wBh+׏C?S_1Ю9^MX~\ubDmsΒ^s`^6^${t`׹F6. ˹4iysUJH[em  WP@ǾBtxrzS4dW6ƻ~1N&о!W-uXVI~lTCrVb X7U)[f絵<bwk |!3N_x{~C.v=y @ڇ#rV'NM/Kjp܄#noݡpvݕMWȤ F to)~`iЊbG[3fA^  fB3~"ʶ}ͥpUD|խ3kepaл1Oy RB pTUkk4z[1 Nc;EY|/ȏ+2uwolZlʑU&zdM`^^⯂!o:_kc'՘V d]e~D?EqUlOGg': cscnjd@-$j?؝ \Pa*f4-!4l9?懄nF2eOv;˫{7*2ϡbC~,S ᚯ^lC+'vwӞ ׂE$y4 ڀgq[((z]|ur-~hRQ~@٭c-qHUU "p|Z$1-S5+IBTǢJ|^ nT/|R=̾bٽTJ8; 2H92+[}6xXGWF~n F>ogG 1Xz˼VՌ@2F)26!GZ,n\YgA$P I>PinL׍a.2YⲠ@8'!o<+P/B|Tene4SُW,ǡJNs9965X}?Ag@zucFOA)LN'RM9ޞ\+h0%pMu,|\K4r #YZ"\Z{m\/itf%}BGN`:Aͦdz 1$疎~ACTȒ!nKUT"ޘ1+3$ /mk^SmST A(pNmU( / Bv06Jdko/ ڸeM<V(,a<~\LKA8p1*^X°C)j{P%nh^Tc7֖ cUW;XpwH RX]ݹj*{̠2}:xďQz0pzwoׯiڰBPaz]4Dj.lƸZYB~Yׁ^U[h+G(aS͆gZ:׸څXU @mfνD(sV&Q`=8i&Q+YaЖ8+Vm 0xWO"Ari֋޼@h}m!|r cGb9]E™c'JfKLՖ8cs2$]rw~!]p3\jf:La>669 {p|Qu1--l=Dٶ/Lb4ʤm]Bxx9\澅?l9lh3xol@CCx6KnC)Ϙ>PYsbe1E@N'a*!Zvﶗ4Ny8v k_Z -R`ʿgӭv(_D\ -F:2U 2Δ\Nɑ{Q4WԚE(<OvsR =2mgĩ 9(RtR^(p㿬uF=FnI! ˩N]@] #uP4j]X((7|ʦ:9liuohc8AV47yykk!T 7jݷ;"x0,(u^tW 4S)햇MukTvTrB`i+*K'# RL Mݷǘ,2 VF/qe7dhmmڟsHHfvzD9/ZÁQUMPQwHF/?2ctކZڒ{F^vUo.D-v܂Hh)ˈ:s& |ٛ]s}iw' RztNcQoS|f`^qm*RFrÕkB).{^{z^7c濔색Lg $5u7s'^vL*?9JuɻՖf(jjbfRྍk|Z *r!qfȔ@5{iӷRrUu$4#FhT,tZt  KI (Oo՛νI>Muay&0.J2#KA"J)GqF @չ Ք +7Ep-C(&捓t[}/n8\ZONElU0{os@b(b,Z9nq~'!-80eGP^+u ʽC˰976gV͠[]k!X?Ke:.?|ͨz5XRzp*! ߓܪ}j\rx4vtZ)˩waGjj wM8|}əjuWkqVغם=kf 7nEt45ٟ<ɿ%ZWX/o)<Bk*Iw߭7[\ P>Q+*qY=mft\qMyAbk8Ӝ 3jvu@ wCn8+:Dx]ٗ5`:?c'e!'77&/BMQW(/J\U0ފ⏅O¼њrtΝ ҟuoޒ(d2hur+xQ"~-L fr$Ӝ)?d^I+m"L/)mgXGLc㊈OʆQ;Lagm(B@H@ =zM*st/WUxӯV"srn%-ddS9(.B**xf|_WP|U;ovET&]q0.CZ;hݝ8@^O%s1dO9Y"hbۢ&Ccg6M7gu1܆kI^V{&\~!w"ݿDд**$_ 2 n(ox]#e'Kw7K v߷5ݚxЖu.o! c{ۆWq%U L]"- 4@26&mD+-/,n@R @1ǔ4^i3>7߹:n`߶^:Y ƞy<lP_Z\{>S~tuAT!${>I4GmiQ}M)WHRguc&LMbP/'3ёxD`^L\d Ǹ'}f`w &7ƈFewB:?@JnT@D?`]A-Rv+K~cfsfΏA_ز8 ׳j+< U,B::7I&`EG JˆMsoVq͹ o7Av#]az!W+aQfJ Qw$ϹU{"Qfrʻs3wCgMHnPIxGZk|VE)j,*C 7[8#Tҫݺ5+{C-7ek~PM^Q4gWq[Zk y]}xIMXeYrkʩtkJ$Mf, ВfG̈́?:yxyz~ >M+&SƨîxӉv8)$hu@O$_Jpŋҩ;>c=y̻/n5C&Hd) dxo2'z7YNY1.6 rذᒮ_/47@+=9\>ݤƘ̹/sK0D1khCq80EcGwS;!MQR~3ȯc[-OQgyd]JKEGā)h$e3X=KYfRTѡi+RyzVSw}D2pQhxq$˅|(IY!$z@6 1$}g9GT{IXbH_˚`k 0gɂl, Gk|9J s$U{5VCQSY]~!1yLjmv> *`6W96n,T(Q%+ꏅNKd ,dCåh^Nl({z(9^46.\ BġtDPAr7#n[]dh)᪾9Q%q)#g-L'8a $R@)*V$`mUI_B֖ۿ5QUtIא_piY>B'@޽ S7xK6wӦݳgCNf8&DqvJqY9ST_:|:D9"Ȕv"o Qԓ9Z)m)ҡ1!mZӗ%XZ}kJ9XHV;G)F2i?al֒ -.?| (M'BTNyMn@'fh g E?Ǚׅ mK]bϱs{e& ҈wj~gT7p)K.RN6>IrO_LYi 9.~o&%@@̃^(^G <:xD>j"y:a/ &]3 rs?ebYXu'@t؎Fecb2|).FQSֈբ]|#ݷ&3GEGv2Nkm;<9g-ReW1d*3؞;EnX< ?2s]m򛥁*` NqGbHRfƵ$5Z5es&[M%Wc,عb4T'b @żnhMaum?36vQTIf-q uco&pc(nOJfBS0Ԫ0kħ2F]@iOPӳxfY/`J4Z?%G )g'T{lFb5B;܇O9hZj\윗f|O(QǛ+;$ GYp 2%',yj;JIQN?iYʱg\| YA̱j? |ͻHj-y{(ܢ_*\Vp("kmn?)$ /wp >d0̬-ꁹ\;]r0ԇm'Lc`hLJxA9qK ;֞v;Ud~hs V]or|p{0q*`v~XUXظi5Z/kx\P^b_%_6/_^S9)T` 9k+I*kSX4^r ): [jOw3`TZ#EN|D H3у/j ӱ)Jmc8.4pq*~4x86.Q'Q&+/g,Ӟwlqs?O:̗׸3n}iAVuX~>/GP "mz?vƟ'6 >mc=AiyIlQ˾}i:(':ŏA&Z㫓vxB>ini ͇š(C5pVLA\Au5?zz}m'qx%j J9),9cAz2KBko)$Qh0Z[ЦR Na'ٹzc@QӨnl,Xl>Wt5Xf RoOn*Rr:@5L^^4WsG.%0iZy-ӹapMF p߀0dNѽ-G$X;F4AY4i(w3@_oevg\{]Œ'x FR,!]}4>tA8zNHImUR.i 1O ؚ;SU#C"sE%@ 6S!ɨ$[X\17iZT $! I8i뷰h۷=I`4fy~s>Ċ4]qD]i{!QR.boWqc!WkX$ұ!2ոX2ђ`AH88x -bHWĥu\s?(Qxnm)Y|(q hs?EO8`ڙG&gIVHK,IS =,ǜ# U -/9+eb$+d,fj8`z"^s1\^a0 \WZ2=ru[Ƅs@y¤%Ԯ拗51~c4Cbr~)x0]7gD ˮBcs1%|(}Fi;yIR3M8H?RĿ-S{VTRpB-I܌ McH9EAo[nR] uol_Er\ϣIF.]dj C-LshY`8/GMTZ%%FEh51 dL$> {B|ĹJ,#xt&ԇK ɲUfw%4cǖW䮳,$b彯x)@ɿCs$(Wo;ZS,V@I?jԎ2\<{L ϸ!EL呎Tef pu[ _*~hya1c_p(?焁K`U Kaa8(or;d ;kòPS,NӯQ`֡F$V;iU/Ȳ&8ơV3(nQ b&W@gEϊ¶M?8pSOԊw|+g]gs94u1d\ QCo!}\ ]XrTG윊),烰0mwlg}A |Nn R,ae },_w-N_HM1LJOA5 mMM W]Dއ|c~(fQGPS)R6G׏x]8lgv=7tKot5rW #GأL k'e!$JtXtC_!:UBPH5O*<GwtQW_B%*9_P/lF5ˌlbȍ=z6 !a|XѝܫJ=mCWMm}{cr'AtC /};OɣMJ='HI1?Kk DARY}0N|%$a֋T3HX4Q`qUZKh 4&vr@sҍ6'WsK6:"f&?j51\8EoEY zsE;q;qnF}v][ ϛ.Ȝ=gD_3țϹj `e׎KS?EU2KG\AR}hXZhEJZh%WFhjSs{ph֊+wVv›2l3v+b1.n7,~1"7zP Y7ݕ^ &Srmvq/26,讂!K>^VQ^;6!<,, 0 E '*F&OH.Olӱ_Ax(5]eǵCL(S.t ݡok65'x$$n;!E.Rc(h]-q" 5;Au;b< }뵘,XNUx)abx{rfLLfxYv|w%.Mp@sMG6AtT\]>?kTİe">_hwvPԛ7!:6vFHgg2Ⱥ܃7 =7,1eQč<śNSo\7Ξ^['Oa ;k' h{:Op[i`ӧ5V!#=ilQGm7 htl餱yb$]%!TD9?chKIJ`F͝<KNbݿhS'\e.վ&,Jb;Z~f^İp1ݓ-VAhg>zƅ_^CDߓd`Wk?8-j>Ĵ[$DG׈]{@wȆC ."'H,f@YT_tnd??$A'e;_ LAjY<ؑZq;D:Ua84'xݐ.0NAd{?oӈK\oT`Z ڭ_2=5k{f%?~}Y~}fsӥ-:B z>vP !Ǥq8g?M ;⯝ɗkMŹj\h3sytpxtZ[>3k^+\Kh h 促=*$?Uq>^f1]Vw8Yr}y^/WiH`{Y1a=xWz%B(fR+qG' g;jces;TZYN l!LnMx%^d~D EJWE0z :Oǧ{l>;PKr0kb&o<۰pryOϞ-Y-?ZKk–wtHbdFtdO']sA~NthLWwO8aE_wpo A13u\6G|`W"a^pylmѰaǺzZB؟ `ŴEY2jcؚɇCUM.񙏳*>_ QN THO39: kLߩm ܢRt RI|mJ.e3ΈQ ` Kiw" 0{2x01?mGQt ΎaHl&K iLiR=(j$!hǞG> '..u W`9 8<:=faUZH!n"%o͐\rl'1A' cÌIs4ONQ>Zj+X2Rw˜ XRn;y&wަzHVuŗ8Gz=0ض}:ycS*"tJR7-s1/gT@DNiYR,䋯[爜YC+@U$4;3=!J8u5JO>[FgKw%~,_/+9Q^|׉% Jv1ară 8B[k7QͼՆFbABLOsSʸN^[jx&.^$|V2Acx5°7JQ~3w]ь8Ițܗs-K8Cu \^].9;E(\J4L'(Pa/poFWRm^w @؞K9Zc%Vݻ4pW'6k}d/rݱs̶pf/1!L27}+D{="Bnq~~Y1Xļj~-;XKRobf3yVNx79G\0̺D:+D>hGa_ .8QqQ@i?O=|C _cUqpΞ[#^˸5T7-Bks[ׂc}}:RXWG:0CZn$Se'd`^Bp ‚%Nt;m)֧f/ 4gQ`l9|2n >_3j)3 yBV1{ 7Ŗ.ԗ2Mt:w'=7y[GAYKv;hoL->FzɳTlىk)v).pY,Py.[qRR{Y܂yn$mBlV=Q_YN' ;15QoyktdV]<4!UVa$8SHs!v[&O#Mߩ}Lfs(KPJ,vW6k=Q+>H5iJ"5O| |'H@6/Z[鿐6ǫx#?~\r'\!bW P @}'dդ7)[#$7L(¦1gUL!o+‡Wr˪m*w{Gѯ BArDlqzC)=Ԕ}z!6JM7`ȰluEG0}*/WF ݇U`PS2kUA=R$AHj7i;RoYyu7/މQL+窽H$4$1p"zKc`"s@<4jnR2g [e}~^-n;<7,:4r.A71rjaJ1CSNuycERYa  wƀ? .{M]SM )mS Nu;:=⭐ۘf劔= OJou,Aas`t/>/QɴS0|ٹoXS_K`Xڙڲ(mp!@^ĠF A[ Zm)P н߼sɒEfs>ur7Z"N0rgWQ!2,aBa-:hAߟW4sKǽun,?XT F 9|j[pj*xhI_z] 615K2s 愿L<ؽF|:=:nj5vyЩEM\#h0~4 ׸ʈRPҟ۴8jBƑ@n1"ҷOƓ ٷ6j%F`.'"m\q<ŁHwL;u `V"C8l RVŭ@fs.%Y6wqb 3.G(u3i78&`Om| W2Lo'(q>qGpK^TEy -Z4W ֲM_[ DX{0Ǡ<$6x'tw)#$^5ӟC$m,0~O,O-ɔf_)3C\0 J`T"s `g:}_ Tpa=ZV2xpm~ω蜘-H))V}~;-/== 1HA?%5!N%|h[ɝ!wG@2#y./ۏ5r-x&?B0ͺG=6GR!̤@ SγƉ؅ h sV`:_үBtV笩Wi&Ea%3E'Z &YHr@7?Pq ~fe-D$J2a[)D2[W<&#^ 㐶[׷ߖU|`("RMڗRma GZᰵ&'WuP(lЀ!u$!Am1 ETC]S]{.NO>[I.[lU4~ލNzHýoY yGgd0эh}=gնJ3k yLGgӻx&:*_0ҏ-hֈ^r=0F7=lAғ`_%|g-Zs"dۇ\엺o %u>?({yӂZt:.μ0!\Y Վu>b~;|KIBՠi~~|ȑmI{ƚV^tM< # X?ZaE?Sp٫NkX~`X^@s{DYiu?,Gh~u3iT; J>6$5Pxتke*S:H;YDyvتLC~:5''lQ Q$k\{ #c#(I$Hy]MQOq#?wF]islICC`n94Drw*_U&.= nQLHf[vj\4 l!ʷ!3nĮµX5,*Cߊea'){|+ʄb %(,~^cⅳza.IJ' ٬ UA|1(Q6BH/mӟҘ](Ck{DwjRD>U;ycT %01%,=&nݝ9E"C&WP`4pxh!9F4] o3Q)f_%0;ľ 7˯[VoDS2Rչ4<9pבq̟h4|ݏo0i z Z0AjZԒ[ov˚!!>]"V>DG)ͦ{+ \heHœu2%g @2JI^0f8lH$M dZi.yib߈3ۮWvG7|i<_ ,ÝN~ Y}mhZTG {JxyԼN5}>riI{O4_Saki6<_/ 1~Cm!$OJVNSGbE(ǂ-1`O 12D,yq&!V bWgYN~Pn?\;u g-P$ټ5 N'\@0$*URZo& ;zdGg+`Z 46 ƓxtҮZ>hSQƳ=pp )ֈF.3ek-~K ĝ`1g);IH uiwDOyӵ4aѩEMF di8 ] +zȹAǂ)әC9_H!7e@Ia[j<2QmO9Mm?ʥ3󡦛g(Pćd3V-uΞIS5M8ÏUЬEtOמ(YI(Ѝzhìz8kZdQQZ5u=khO&;[ϫwҐV4Jw7L/NC0 =]샶g=k'3.1nAxMaaԫОo%eU.~6rNuJPL oիZK l[FBՕP?XwYI/8/k4&l'l%";9+j1~%Q3JW:>xhJD颽)Iq .]|vvawjpvYGtyo❱ ؇=oUlB?eu7}%ؓw̎)9/APt'`4n6_ڛc-Y`iЛD.~V&s^lM* nb4GvQDz_"9ڪYcj梅}'?ܩZt8*@N#6TV: wiB%M9B#ZlI'avЙh;»`%sJRDhvT6j}z`Pe"$:25$zr&1!Hd=j-WbAg}Q' UgJ,O}|O|~Qt8$m|v3z| bytywGJp: on 37[;#ӟX>D_Yo5O6x9 9CKr!$O F7'V (@5 w7u<1b6ym/+bHīse#W||]_GK[m)8FY!T.$V2jjYqWַy`$*޾ڹډBbRĪMG,=>T5+p)Q%.T1y8^sST,>HUau$l_ *~]kGe8}Yn KxGܼ$'bx3 BOzT}h pN>Țu7,שqTgim. EXH#Y.x=D8Yb Dwf<# hW SŹz="NeBn\ ^iͤ4PBds-$!|?=H`(ˬ:( \_50uR1m_C R w7ke:Q^T=xsfԞ#GLJf0WyS= n0aKn>: VlJxXVd+f%Z0LM{t LHv{GیW,ʸg:Kߑ|1K N`-Z q0D lSbc*VIbL- m>mBZYe"Ꮃ=j_J2 j-&Zl=«:Qe}dB:WXƕ̒&O)~-EN>3 ehxAk[8C[@ r G8{<9DI]Q޸|FU"La *&aZVFwR*+֏NPho 6qՒ`, OrAnW름CFfA_Y~MX ptp6z_s]g~B,`E ` p$>e Iih)FSD#mlc<}#;I똗 ?= ;}*]u_>c]ys`kߣ=R9EppvVs0WPVwcBNMHӇX >A;^K4ut'Z.}@ ]WWd/t$d4Y>%MKf"t(/?/ZS4-zf)Vˀ#fמ*ǹ O Tj(R%_=@]Jb+U"ϰ|¯x Lx/#jD9^:ųr8)-료}62-xA?Bp\U(-9h`u.lCG}7P]pu} +*;4nP hծc=y*>͟:5_\X7Ot)JBIZneVT~a{x^:JNF/W66$IRX0*㮊)rtE*DV-$WE-@9$KhAOTRX*0|/:- 066MHE=`sg,N""ٗV-<#$p'ÒFD6Jq~hꩉ6Wykɘ`X/aŮ|IwXⴹ| P UŸZKC+(&FV1 j0 Jג`Df$[ơN% *؏N񿾵G7ƕqEeDUeX+Xw훠be]zУ5To++dZŬ3uhydٜq\:5g)Ge{DE뒏j @=8h܃+1~aZ0J`rKrD\syonN!eA#}(Ddm4"S8$S?Rwyd?۸27G\tK&nN%ȏrPldoj&B/)Du)e?EQ^АU Z.M=Bra6fObD)Mr1RjõP֠BQO=[[7tnW,dVzݐ[·|0Jw`@{V6g4 ƄhL3c8]~>Sh_ {P#Y=dzK-Ǚ @̱4["GM*o=] fRH17z9R9mܯt2|87uy%Υ|o&ъyed'}1pB- FibLWWC6{>VZ8$>p̮ʏ`84 %5Dk`vI%o!YsyaSkFMYyljc2E ԟ+U,=t;}[?9n40QeG7Uߙ#ZtZ#CwwMC;(~ 3n'L~ՂyC%2@, ,Nd4(Қ ̗#{X^ħp4ahWKv(LП6LktؕZH,4mNx4иF6D&9NaHA:5%<ISz=[T JXnǡV;aHi?%] Xla94pE1-eطLZݿy]H3g/Mt, & Ӌ_"Z(6?-@?=+52=?YgP]n`[H e4#,8ZWK/1MtV\me|&aM3JgdMGkDWn$~bDgOyXpL04$m#mRqO5ˆ]1Rڀ@{=G/K;oXvo<,ءӛ|HV3횐= )n &杒VQwٗ^դ#sfQʀYuJ&xλEWѓflCTyլϐ3\)D~E")dXD}"͗-HDͥ8G|xN涫_=.^"ȁ]0uس( \kcPZB35a)m+vzqiXGw’EGu}-ϜVqi]3'VRu;6W=nl(ijYc<)v,oft,o5{I mJO  6SV^WX(|t0=',Pj_^*,PG^3K\:[I3J-a/1 '_,  I"5<]S0w VNYioȔygg FRfÊ?!Ǻv&Nq7n(ev5߰vRVK88d(3g/Oh1>bEuS#${ѳ& Hh9 0>3X IrM- (.+ SM8xW>~ ԚXn?8xS8e( 9"pUcWr]BY@ViV4\%+h/dA5$J_<I.|a9t|&u@ ߡ,K Ѣ4h<}+c^Kړw< [!UHi e,k.XҝPB}k0`ת;.Y J|iZ7ǰpHVAx!: ߕ^z+uʂP&r a="GoDEяEF09)J-O1.2{VEzYV?@P49eǿB%fL ў.yT/ӨdH}jMɥ5[۵O4>x[ȓuv'&T?ҔeQ/ǁJSMjj.z/|\Mq8SqYpr.\h)v/S]  n$~dž zdQ}SHjNaA nRx :82;R$E$>BP\PS[ ݼUS<X&*O ~Oې+#~5S xMDA&*WxZ3@ΚMaYmÈ#ձFg{d1!WE0~2ogD9 e[,AZ*¡͏bspwP_ñګNLЉP~'#9<Ơ+ uߋ0s= *3 9kO~MSbO qgcIwHH?v~:XuQdߺY.(=3K."UrcKM>(5D+7H9BݫA<;?,bu~JTe4& 1ۍCGs<@C/iN+짿C-]gK5{2+ HfN𐴮S° ƪqP֑%aD Ǿ#Mwy:$<ئgꆐ,$AW+gGU/8ɦYeWn٘'O㌊e笮 S(`\Df<=C@ m qVt̮ 6 WeR oF9`KR+ifmݙ]-*3 h; Ә̡:Yxd\hZ!^Y^2qvCP ,E@t=KrܳU 䰞BbAM9 ]1%mϨ >j #?*B4fJx90†&i5< 3m]@,1֡s]2]pnr',D?'OwBNDVG_ Yg}0c2Heu==ӽ#1wvຓ#y4S#x4L o%yQuԆH}9{g#G3X I%|fWS+-VΏ%- '++"XV۱v|Ț2}r/B"$Kzs*.`}/˞;uf?Qe1(%T*]?ͯ+rTfhX۔Ђwhp4Tt^GE[4aEJTeE bcuܭ%P5>b!Q8:V@7m `{Z:6R)7ס  oI$n3 Bs'>0sqwmKA[;x;@ ɸ*dˑ6 |{υWalRHj+(!S+@G)#<(90x-'0&4ܚN1GWR5=v zb%^uX7HRfK0i;/9L'3K+yFECWw?ѭ.XmuT~x)=[ =r}A'GAK1cMԫ3 J\YHX;k+c}JGكHWw wh(=al{R lѴۧڍ1!}ztaָ:7o80J;Nh@vǟ3ۙHk/]jEZP|#C0=.%BLFVѲ[E4)9,.K VSW gDjTm׹3gfaAƍ ֩3j=fvh9mkHwГTV=oy^FWx5ft'l$~()UsM(v 7\`[σ;P ,S,A LNjBѶ;>B urc|U$1g {5 t7 [KkΎP.#|^i PVN{Ԟ%CiS]>.|DB 5a֟0 YJV σ){lcH^ɂ8Z8py%X$hX]Crb3v^&vlD_U;i;  ;,gxmId OQv=o IĚ,Nt Z1%)֯ '3pjvi;"bQq4HOH2 9ưd$+ :9 8ϕ5ޏ+/ŽGAa1YNvdVDS6nvIm150\ME{BnLRI.H-:%}6y  )z^_;AOxL\VGUL*c Pk GCLgh0.O1sZJ&+Y)F`3ƟJlSX'Rv=S"#ϓ7k6P|ٝz>d[^| kV_ȟrnxHTؙ$~(_ Mz2/_, >1`F:bmd='I" $~7ao鰶hBVY[19%%[p%D@]-:]cdd7Qo=4%: ou,%- Y Yx+҄VYl8H |hR;Β~nWI@maVˣC? s4s n.ź'+&v8c>U"[!sjC;e k#̹GяGV?lcnءSp=d2e2dV5 l ]?T Z^ӛ}es oR a|-hQ6+JBQ) 9 ermoE&kf rqBw*Â>"egLXtu`rJHhqen=t 4}%IQN~{/Nu6a|*߆ͶjۚF{"Ij`oWD9Mи nȡ _Q-\(A]CBQ6}mT s&=ÏC2JM!9-=Ϫ0dS{pmc9Dd쯌ɄnőRQd+89f$.@S,8cxkIΉ$<L<ۡeml|DN@d[h_JS4#^%s0o8ESXv(黎g[dN?GU"Ysc Jb@""Mܨ1ұt Ch]Sڨ,;m>wT~Ym`Hރg1I|?~L<:z31ݻLӛϋ@ Ak=]E{J.2\ImQR_;V, mX9A^~˵zUn锤?FܼHp)uJݒ$ QkPe`Up1Q ( kՇ U*[;:Sx(L#Ja_ul4}* Gߍ0 |~0瑈YE{=K(<@zGgmqb==:XwZYaD%jmOKLs5bnmt|'Bb0ZmKHEUt[gtQ)*xnƯ5JIKvβ%3ZS)RS`1JU.g_L)J*K'vK|~>dNr64N͹,Lr6cE!Қ%R@q2@M^T rl-4}8<ބVun0?8Oʇidj~/sMvxo%A'@!|؉yƞ5Ȓʧ~1!_Db!(3;>qll/JcxM\h./wܒţ~/@Ʋ?&lF:_%C{qBXm.^CQ1ѼxIggfS)d}^@R7Xܖ$ OLQլ/Ϩ2ʾ`SarޤP'Z^:zq%<"0gߧҮ˾SVjl~;$\seٚ{=t\=BrB6hvd2@p<M9!q[[\SڐĻL~!&?[` KCasIz޸(/H$1wKES3B#G maĀ>ά dŋ>vo- Ml$ p<۫ C*~Em NxJ_%bu,Sg90.H k=Hu9G`}sP\sv8D1 P8HJ(:z},#E'7$Mc"@mG*a( D O~а=hcdQr0(d5Gbs;+c;ki&ṗ=̯D%N=ON ]4|#גHF)#c%gDTP= [6Yκis_Ot/> 5ᲬfQI囷Rpamhte-K|-֫=ZLv.%5A== B`/)fMb\^hJ{pDݶmځRH{:(=GWugA{%S{YW&c{:HUq@3Нj>it]͐"Bt0 S=[qo?)TS>䭲b ZϹD;҆a4#/*M-B]KEdxQI(BiFc5Ȯ@s+N__i;laSX> u# xAx\I?hߞ0A"0,۸V#}[$c֥%jF g#̢Ek -뀝)JxQ+%BqnDwetT'$=3isJlRb#Us+9)7{D <{R=S2[5V#\.:RD]AL}&>!=v9ՒnNяhT_oCZY vFu#~/tf}L[J;NHvy!Fq7IDzpbeW>WG9DlNE% f/EC6qA/A֗RΓkn;ʜ?:EPI@N>zui~??ͣO*{edB'h$շ`ᕆU ^Q;// @nrsf#;ND s'LNo3øZNIߦ:: ܷ.깱)j̝X8jO_N[+K=(4GAVj=[2L>Yl9ZȲiRVD Cx[9 5NViMaޖytUj|q¡ )d& ܷ<rUk`&1vPs3EdYXthAFu-|ٜƵG BanvggK-0!_gyv-LH1ak[0WMPZ\j͜m:_Z̍q=뉡@G{f2DP'!"''cзs:R  3*O׸]D鲶q8mCjL=HvCQ5E6/%yt!H27D'Y'W-UO$J{jfZ1vg,!UH_%G~6i6Ɂ1:Øͱ>连^>KOC4jL6z,,|@v 9;`9F j}gQXI6 w G6EN)X9XHW?\-Gǟ-5@ҏ2,.!׵m}dC% w{Ǒ k 9K^G#NPjC?t-UĂv pˡyÊ>>2m&&j4 A'Z Dյǒ(ht."r::H2=RW#4x#^D[|DmMI90᫉; \ )vښ7bwds a^1kCxEH>ikl |r)h{ 2qF 6:@0pxub/8X\bJwo#5b7ro:;F(hԕ@$\D"gp@cDa\ۥ%gߩ\q12cy?(=(iyh:e%W^ۻ^v̛֬_#uxEfﴥoɯx(Kc-G4rqH:d{{!Kؾ\ĤSiq2n`nJg&eҪW>B%o2gOpEPÐRhC7-vQ<۳M^}NJԮ|wojI57_:ǥTY!K 5ɮO.dCj)jdۓ80~,]13p0) d b[ >46\ JλKW=Cx8aʭFnAP]\szsgHNXF6"g +&%a%g^@ p_ 삠QCT W"iS!xc,MŐxƶ&$73Hw`2* A *6f}csZ vxH;˷MLܰtuvEvY8%4+w[AF5G;y^<iXMǼ/0hحȿxu>$j?^O99(7Ȉ\PL.0ފ5AW(( mn<+0#>LnN}#X b@ľ(mz }o'],dQUE0?6fˠ6Lu.} KfV8aF(Aqn(`;OxґZoQۻ4W4v`G63 a}>Bijg>px`xX@80?ԛ]D^?&Cí@F fL{u}WG(Uaѷ^>Wr-K41pa&}~8蟊ODr_%beR215,ouy ΚxL[ ^*rFV=-n8OJ`Vv2@dLKd6ȭ2o>Y>t?ܱ ]!~v{&z1q/KCF7*F Y!50ٿ، U1-䞰_XmWO)}1)S DP#oKXIz_1!C9GV/5 mkuwgҭu O?|-՘s J@X]# wU<# v;\3_NĖraKMc5DG5ۉ7I-NQ<*ZIE)> +d i$V }w~]*VʱMPXO LI J:6l5~ uy0T| *^s%f6q*T"Eprt;g)y1 <%^s={2ga$΍#mGpb_!Dg/vs2P;7&h*@@"#,Ȣ9L6;c'n13y.\'s]9fh)Na HLY\.ʺ9OUMPM3+cL ةKmΚܢR|uA:-IE) ނs8i-Ҽ.ŽKǗM>(TYhPMCQovĽ/e0WXwēgN~,5JQcg}I!a4>jϩ]DĄ!b2~.C%U z[7 Ę=ғG^C+r MJޔWfT; V+vWܬTTeiAs2J#aϊO/T!GTfƞ0y$Cmxw9Q!]03EMaRm-eQkqC*-?@YC^e8e _}x=4U6};rTV2ͣ}@iBVA\ b4%ȴ̈́3[n+[I?=ao%4 YyX){U{IQPxoEaI+Q~3#%mؐeu.ĿylJVH:#\R# 꽐$4HR clZT}gG`1hqE Z9݃љJjogҌO0ՉS,D\Z,Awbr%Ml.FfK٫ЇMC&-_ݤ1gs8//F>Uɮb4;a)?$SBU޿@ zajȍ׭6yeɁ:7 2hmx|qʖ؈ 6["EɁcMyORN 4a:5*AV5Igdr^3ꍻ?*l|oepXQ,SlxRf hXwpܔvZ^,JXx"p+Ʈ7ǿl(yq}EboUۈv%ݎ(*&X<%a%П ] I#ϡ6D2_5Ÿu4c /><h/W$ ^f\~ɛ<>m,?0ȡ3CE*ƙM iܯZxbuA] #Fj *v1iĒmv{:]p.tbM5%AQ |geXho^{7N QyH!,+^r)7`-SQ:sKwhN8{LQo@o͛.4@6k-}GEn}4!m{}Pީv A}ҸiNtt֭}6Buu{M#z/w@tzN>J՞lF 3"x%o8~nhΔuSSԿ!cWgBYmك9݌̫4WV- ɀEyt?[/ */r<`ik tQUq+ȂDu!Q+ȜBy4K)ڈ0 $YIy'vٓQLFTWy6~E6G)L[bdzn=Ȋ0Ck|'}Z1t$LEwa0I Ǻ+|1#O}Pt=~QWMI/eW6+sln0m8"NǔtfX'3y43#f 5E̎&`0(ySk~\vZa'HsJnK-x}GJv N+{0|*[ zu>vw w,/AtXQ@75#̘1-6M7>i,N=Wcl 5ߧD(&[K> I`\P_U'[Vf}$I5™,]:hUwnX6ei` س ^t1J(_$kFqFtTj(˖pf(R sd;tY0k0 -]wLDq1:=<7Me%5r-K/A-{ خ,al@+Bu V* e2_}p%Rp=X>{ǹ4)2lQ~YЏ\.@m'n\:~T8>x"X2D@6_Y,.\JaU6OXw+dzȔAL&,|xFYF_Y 9ҟe ȗc 3ԭX)tP$2 F+7ԧQ (ɷmD; N V]~D4,xݞuaKc M68AUz6 d#g,鬡: =~4v"d=`"^P7A-qdH]˘OuMK;) ɸ43@gxۋ8{+/pt~SՔIwS(1j(Ic4D7϶΍oNu#7 sy)J_Թ}?v!C ip,]l*} HXn̪U~yƁN㬯3]E$=9KA14r>#Fo`s11!:`dtu(QԪdpQOton6=k82pciH"l-PO|Ex`_.ME[u.+-p,r[Y.ѝbiIЇh9YPnGb^nENbT^n_Eh1O,E^ \eƴYYXL=)/pEL #6$SH6ܚO_ 76(B' ͵C'b<>aegyJ*W{}gPG#ג3̉3@NF>0zd 0u8R] 4AM̭o0N΍1+s%fAa[t~F*PYPcٷ{)]"̑B[#сwU'zgKF+#uVf]a* ̴Ϊf2Ц$H ^;>Ø X=sil`a*VL!H£ȉ7\:~{{Wg~@oJwR q*נ5HH _a{Y.? w\ Y$̼"3{TB%1#`?\W00P&a,:U]+u >nH% 䕂ˍ(@y2plj!qAץUO V%nJyPqlok]DsPNJkݳJLIր=yEea"C+hFxuE@QTf@)-|$V_%+wm#Yscܷr\@ŕ2q ŸP/r]Ww3'Ƽ$צY{~_Xe!Cl>)r@ٚA#^?F}I ynZ%;B `ژV:+lzlDk6bz,欐bΟ&R /ؼEM I:lO¢`1]y+ ӀNjؿrrvQUcIT"q1$[m۩p`kz+cjV.[$uoMl0Rnuf/$׷.V G5*@{56@v߈Y|Xi޲wǜH6)n>8Up*.TsySe0C2a[OLq?2O[a &MUUG 6TaT˲ky Oާ.`慕Cp]tlޖ&* vc[53̎"lȧoP}5& ƃVFkH뛷*dpAbΨK0nS MPrmhgosuLCC'UsyX;73Nχo HOc krr^aEӤx.D/Zy9rɗvvˑ9:AD䈫PY'_8Uਸ਼.`.'d8+>K Dn u1ĭG7Zv#zP6B cy!aɼÛQ%3}[}]W֖݃r F/X[FLĬV At۠ +[T.Cxwtx< cCPhJrLPlsίWՃ&$U#&3x8Q6pFZ}kϯ6.0.M,7 {k0֙yܗb{ϣX4-tiA4/5>i E9y;Vq /4lnqGrϸҍNZ-%=nNpY3܂8'̥ }7EAX5|Τ%D:t*Aj]Q:?9TW$!i[6s(}PX`t啅u\6jJ 9㌘^=gCƌΡFK Dh()_Qq]o$a.]|ݦJҒNCqq.$&uߖc/w tZc,E` LY SSg6Jy k&8 MM\[h%6kxFnP{Y͌o#ߞ4r$re-`m>tN}|(S mSaE0WBm a\'I֋䤪0IR;~SSXyj|JQXn>sv}2۞(1|3qL1 j 3H󼊺f;%9yIdzi!sP&Tܿ_^~娺>}-\bYv{C!$Q gFHߌ)=tOu24:IjNzn༱L.\i2_8h^AuO-ǢS0b.d|y |H2˸T>poibw V8޷hW}^8˄T\(']U@ ]QW{ .Ƭxi2y؍Y<4fJ?izԒ*~p=@\H6|vrym-qI>ĭO-.y27-L&oAxm4(_B7d`ROpoYvjŽ$ !p=(Q9L;A 5LaH$%/,# 8Wo\,2OG:Z1[\6 CS{1YR-*pïELfs1B-2)6fg+x UqjmP,;YTz yR1VBS * ~[N$Hs⭍o81e8@SLp`S#~ei>Yql0HbOq16SPoԐ ?`ٳgˡ30e:$!Oun D&*gIP'IO&$N^6oG& xZ6bAvk!s/\1!+ \U&rj$Js})mU3")?6sp),p [;r .ԋa{ +˜bEFc8̋GŚ[yA`R0;<pr%|SG+V^[5wm25tA~EOCank\ *,V|X%|yjCh Nbm[UuuZQ8}|i׆P~ w!Hg߷&;puEK%;nJyStqn)M ޅGyCǻB'  /(O/pC¾FؖQRL^ucҠFމYT5Oܰc'Є RYXk(8G.>3ڪv,Q]E5c]l`ͷi3۴wZ75۶";[-IŎxӒ#VRܙ"w;jGeRtVA #qnYXrT e!m6Pų,$m82䴭!h۴,AsHJ~eoveq,q&-.U12Z&mfwK+*CL/Cǚ@psf%oD 1?ߚcJ#Ӭd1'L^[Tƌc! Ʉ%[W2ch4lI|XS]?3,5|]DeZ~8 oT>1=Ao}<&ȿ!1 6a%\8ϵOe(YM]67@o-Wq0IgfWMVH:O]UɁx}y{ߠN}%bsԡ[mu#d= .UK"H:Oq뾥='4<'AC`sѕ4+0kC*t7g}]@WK~z*9UˠK EMtkGD)gXqw mxS2kMUN k֠PYlcm/BQbWr\Roa z 21ƚwa}֯0 Qkw=oN's"c:&$0AQ:e: Ծ4.4HyISFBSn*/r2/B\hH%! oO"҄eQZoI%pgDz"Od}uT:J5{ۆyշD,9Su \y{B`t].J:TVDb,?e=d]fS +G :zIY $c 8)@vxu4mn)AKkT#o1g&@׏f tV^ȷ99E5ShC#D~00O2wEԴ%߭^jX^O+"ܫ v(--M?Չ##R0v<`I+[,{=Yq!5߶Ip0vaӗk21F{(oGAPBv򍚹[f$CޯE( ;) meRia͖2 9xV U[M"#Yg1H5ѥ$\|LY Sˍ~{8%ˉPM *F@rpӜ|^G_艣Rik/չAKc>.:jn?JzаTߩ,Ύhݚm}ՆΓ@3BL3ysVScq q$68C׬<"Ax{y<ǭ7x?o=ڒjN6 Zތ^5O؀i3'7#W ΥĘ2T_ǖxߙ(=X[z^Du"NfuӍgf|>A9uxݓ -.e!~Pq}߻;^v?R8`[sI!/}@Hb@tOQbOoǯ!>*Ar/@W;` T4K[nEL he.|7F/9Ȥ]MD9ЂX TJLD xăc\rzk)8/u9v5* є̤j+D`&}cX t7zvbTE҂J>pZ_v"a鍔[`X#P+$Ǥm\8?g]yC.7z*9 Nj.^zx><.QE!02pQu;\>14jF 4}`lU$N +rK"T<ҙC `Wg3Y ;L CD`T+%#G ժk{aVJl2AcO/J\T*v|ofz8Vh'4c// 8LO J✋xJݓՖF5NebiIky>SA$=R4C ^5>֡@XcJX g &ݫ94]c>C bha4Vl對vג҆$}99/J9x4.uS,E}`Yl{Iz}= N*j D')1I편#j>RBNջ0\$3ٌ5O]{[[ yO)0*_ |bXk+VB aVR? :6YCo˳ilcdKDUkLPK%vyW;fae▁g̋^Apr6"]=e)@;?,"9&A㏷4P= `M A~EL (x?uz 4&S%nAUn)h!iԎw)J֏ٻw6+n, *TSPcqI\ =<9Ѯ'L,bl/]s3*^),ٿt7;#Zd^4ai/Ld=,tYTޯ {Thִq8ǐq<%m`־*jǪO.Őu(ʱ ogl(_U΍sncb8iȌ-2L/솑M~BxSs'U#'(b%Z,0˨s?py {ҵpn,WsjҲ!<Yz?Wpҧ 'mlja ;>FQPI򁻯jSq<"S3(Ļae􂄴#TVnp5-&3r['$ۼ̪ ҵ (V&BeK荲l_AC|FgM$|HG$D3)6 j…mR_.H='l?BN/inȽaJ5;dր Z=4 dj~$Hc YXT ҅*fF0` :AWȄ[Pű2.P)7ʍwP9btDzܚt>ߛp]2OS3cbX&87KWZuٷҺX (?Pf;z/2.MXͩ3AXl7;R^= J=Q#f}TRXܒz;H4 .Gn(T;;qHPBµX\PXFKi2hg+4Q37t 3kpuC VdO[tO0G'%KIe]FPbBJWs So$zl$ON&@$ .N*_gk?U³& <7co3 #FtcA &uӘf ]64Kǝ4BKk60ͯyACm 忣Dlr;XNՇBZa(>vͤD!Z14te80 Kq!29Bbe'˝+B*{$s깭R`;TQ4սREЇhD_Dv5fLy~xi14 ތWb@wЀ꟢,v8=w;qշeȎB:׃v MhbdFHXg| F kS{{VNzqkt~ʽwq}jfX"  \cu+5E(tL@ j)#8Fph (Z$]q˘>{'?P J7',3n}ڞ*gc|7((Σ{h$:#cn}G*qfJء,kk/e7Nd^Q$#ݤcf>O H6ІpzǶCε4` dX@C_0#b1 O=8X(Fh 8&WXTvċA/2*-h?"ѧKu$7l"]$kTFZCB؀  nK X`DDVb31nJZ 0Ձsu:Ö1Ui40҅S SijѵG9  ռ `UeIob ]eG ^5I6VHtة॑@ qp4صg@d$ѦO}4l /ASkX8ȴmFrM˕7agCx8Ԅٹ$w_zI6IdD(]7TJረv$ *T G혹wp&]JpAb~v5v_QlM@c ˧bC20ԥ{)q}ld,Q : 9,*" Bx}+s36 D҅,6ZYq15i3_zpP[`BW1J7kn‡"C #B,K/`Ts>]G q5zHz5{?C?*;ixN1 ?礅f*iSͻ&/9M:8.Z6LR/HKp(zKOLA/xl!0Y1_=@5#۞<7ȼC㋾ {IUslbD%OyD=z-Ӭ^ bB:TC&fqT([>Ƅo_uy.!X10yU\Wnʪzl%H94;&7?FqE'EE~1ټad14Bwm0k X%{g 4eW~3orwp4"|#)J^7pIz:ф~=%Lށ7 e_Fc6lIܢe5X]eϳ~^ph{9\^Ab 򤇝@Wr)wykMl},(pem3=E oIF9 ؘMԾF ɶ}&-F*Z4Vw c'7LFUp='?!A>ШM:`)%`8$oq\YyVJd`-,$T -))=|фut6[~,!wirDfF36Zkv$vMAMbMx~Q*d,?]\$q6'q8n-3a7n:sB2c=헪3fџ=İ~c_lQ՛TN_0E54b' 3hnTho3~ª90QR|D4^\LR"r;%C[ $r4_iT`Y_JZ_a 2.{ixӘg񉩬?bjljN5Cľo{r"6Z?3$/6=-]o$5 )P⮥Ovn 8̢0/LZ񿋰"ђ( @C11澥rt8j_!^^b`&U5{bQ2Ud_/>v\n,L&^Jg33;]Z~mG7E zJ!kM-M.Cb䅦ov Ц(VMhpHeoࢪIx Ot:uj1i! Rps܊D?=0.TPL֗joGCQ |M7SD}'/ڹXlEIJk2Yؿ` ]σrb$'1m¢m/'\aݚu6wG>s2yk1̪L]8"J<2#V|@egVp&Ӵ.js!YPeUxQd-m@GIh?w~&pH ^,cu({f5ߌ ॿ]0Di.i $cף4NUlc;٨igtgxx#(Hx9tp apqߚǴw Cy6y!nFk8ÊyWlބT)fy$o#ck!EHd5/_0  3#k-kB`'la;jHiD~Wo/{Yq-kɘiŌs\EbxS[xXݩCWHKƆqC}A':ތա⥮ZwkUaQ:=GIb uhaA#+ե?'>JqܤW"E|qp7X!u/BNedL xnoрPђ+MϲW u ʍ^^]rUG[^G|"&h}UHSI iy3wFh~Tkg1R?͵E,qM `1op1!|t{7w ㆙s}92B,?@ʍELX=uBU3EPotcr!$:d~4?Kc02d3LzaX3oJH=Oʧwcq:0:$jkԄl@ 8;o瞪>Q Viӭ M`y[TVCt[Rq@zF?gdo]S!Kq!m|K 84u1{ p[$1Z%:Ka" *͸.vh!uWKM*ͨ@;XLd窪eőH>P<*[-]J`I͇[T.yzJJ73ҘDN vE+ҦL?)=YYa4)o<yUC\YP:VgXɯtUr&hf-PnVh7H|Ӏlm ՙQ?vK\Ƶl8'}@2;`eIKWBLp ƀhvd8S}7 Qr;WF8Tϐ7R7M3/cG#N|s#‘q?%n\F'>)JUo_>ZR7QmcFUNlEqx`JaͷoIH:h@A*c2uv5ex#% &^osV&~8A;q;.׳!ȶs@pr}ז*Q$ߖSȕAڔGT&* H;x*^P0R0E E_RStS+g o\`RaS`,ۘn0ZYyn99ɀ)VˆNYiLY,54cr8e.K`{@r(]7AU`0"΅.ۮ3w:_Z.uǙH*=%氩'C{=g6QJ:Xu 0hmKLCN~?[Qhe!kvsʈjJP#q9t]Hޢv4*_l55i{-/GPbIZpH7|#0pb;Wm8u}AƲ1*VVmЎw[,NL'raDyS~q*Ns3u[5~cpX\M'fՕ3c?c`0eff_똣OGH36V@\JLnRMRW70N+ӁȮ,KQ?bGA_(eKzEP f]}kJ]M>:׆\M#]Gf|Nd̽;ꂢ61/_gq_m9$Z|_4t` 86DO #I t925|XND2 Ĺ`%Q ts)J c&|͆&#~PBVjG,O{ ZFy$obI'jArPW`ㄿWq*\₮n"}1MdѪ59dT&uD Y9Gj[5]īGǒS!}HJϋIضf8ihz|DGQ}h=ܚ$ S T8 c:-Eq)x63p$BȦH=yL)M`D}=-Hї~E;l W?d*2)wp ]zyꆡ@oq]$$QV]f | aUdco6~he߄4gV>1HuHYowldL!(N$ac ;ܬU>g-v=*,>cO7:Cw0a S;m|O>b)86"MzTrWP?rK 3C Y> nk -F7 ȳ 2Ή{i~@5Rf9(2ߤ<:JU]HMiσR2w=YT޼v[TL)z& lzd5רoޙ9gH;]3A%`/)],8\^&]Mٴ/6ڢ ?y  V24_Ѓn񧟦=G/<7$YzE|H;Kv_qk2/' j jm3o҇6 ({Ct#,'^8e% h1ܣd7\:ϵy{ua"߂RJa(w9Ҧ.o2Q:g7G,vC1WtU`'Z? ltk*j8fT!b/H~7Y+~VnBfWQO[rH"7nЂKx{h̀1!o[{PPIM:ƺvI!W*$A{8d/=MQ4*ʹC'U8*g{ e]"X3DZ? u~n2%L~1uR4Ä_N{7NrB6tSZ1RcN*%x$"qvC7sьmK 7A:o1lZzjS?bٴ*:N=gntϷ (x:FIR \_go ?Y:#F{- F a2bAL>u|bT5hɽp&;}P@^ʳEkM;B\Cm\@;xjrkaA->lɅHzI4y^ο!@C? pߚ+qn%p]T8dm&f#$,m&Qc ħ6@3kD|a)'?[ %Mp7BFսx\lƞ e)?Xuvi_xe/Ra048%;~+9 [V` @um6m{܈]68.gYr7ِth ̼ N5|JɯK=-zaMRVIsGNǛs|866UC7Q%ʿ9*AG4M0ԟweTiMڦn19z_d~ۧdRzVkv1$x_(~^Ms}TG\&  'ה 'mP"x Gʴ!om ˪(${==B޸NRICTNQnc*`$<"Psv̑ݺsE 5 (D‰_=j-& ;gd`r$(GG1niV8 (FOlx9d{նĝa]nws歹ޡ1 bfC La.oy+Q$/x_8y"PzfPƌyƤJ>Tݲ'#.[J3 lS]~Ee@]7U榌`֭JN]mPh-]N,5[^19h}3̖%:wl?é5c}U0#2O"Ar - رsXJw)1Ua*xV_iVE:|ue&F 6iK/LqhE9|xO"DJ,aMPWsx󒃄/En6 "~wgN{NfH7r@ѻUG2=C©$E$dK5:árHuJمۋC)Q V̞5*)B^uЏR]\{Ws̓dbTWrt2 qUAab5W xxn!nA@_P]uF,ܐWk+.CD.s їфprw Md3r UcdAr[$ċ"[uLA8O~6"{3Cnh7rE:c94JA2:́S19>D!'p}7 ,](l!"j ǖ y[2;"v)?K]ϦmkIuğei.V<in,,o S-3! L,`ɢñ*Nuʴ.w&rڶ/#^5HvL2 ^Hn.r|/៌,l~O$-h$X,[ny;2:..H3ƟTwzX~k)n#p|L䤛.:pGJ2^L2SɸaIAfc.BkF޹7L ~ /~ӧh%}5.4fdNY4-^f.?HЀXS?~nVdnƀ{+˟Ԓ IBM"? ~p Vʊ70B;y8})/̺$ry_Ei`ֱA*)ʎ{XuRB-̵ !܋|+Ts1⣍f)X/mx`eO;M%_2Ï߰k"@'rlP&wsȀ qV( M3fFmKA0P9ٍ,+4ʅۯU{f$h\ON4quijْd~:6'̥3X 祌'a=Cn*.†2  }"LjI1 f_Zxq(},y{oN_'$JE>ٖ5:| AfQOMms@}9zz!BDlX-+Mz&kIWSa:e\L`:30ljmW9Ig߯7 bvj!BuQ. uK5c&|(*S=^γBQ!7n4tOfJJ|Gh=]˪r]w&:%!SHgs^#LȆ󰣪n ޅ#BЄEֵ;r&m^z:[]p)H'*Eny.ҎN.T9mV1G(pK)7HnTe1R9R )UHw&')Qa(H'k>{%bm6W*,o,1߰&DAK)S=SRAzםR0[ԏlyHAxďHAjwdIمnOXvпC]2&eK=Fy3#1, YCfkY֯{MDUYEJYxƄd\PhLȽǀ Q&v{HQɢTkآcS7ʬA-deajk! qorN]!L 93 :i5Hd *ȁŷVXևnw;Y('J5,EדC#@=*=g^'G8QēuE^*$6kX6K;!R_jk$QR ;dvVoդAAfvƔÏjMGi_k`̍6G ֑[ɗkӌGm&WGj͏B:QrsY" |0ts=x ǶSj*ܚ$G` GϹhI6#[-OjL\*y}"e!j|5nB*6F>+xmFڴ):EO<caOҜldF+a]'ʊl¢KF1O .5UZtU]71*v3g&2Vܾg0" Iph#i ]^0g6T c VK#m+8ޝ}WsJF5%Ot$3D`R%q &R,p&YX nI_y,ٵkTzS$뙕',Rlei2Ŵ%!Mc 1#%BߢP=Hw|Q4g qDpIFiSA0~>A^ F~ hj@`9Ǎ[3c2\ 'ГnL\Vkϗr%?,6R<J_ҩ6?ѰBAz7S]r$c?4x>/K2EQ^[&^fȗuqkЧvϨD%\Z=KCr+pB,)uULM 7N̦ zDI*5jHzsݷOVga؛&!ۅ[ejFI\]wk釮ôi Z>DSB^͐c}>>5rT VH@h=tosFxYP[7c:`'m,/M'F9pgit .+Ոc-T$=@0/&26rbyX5;LE1>awֱk`=T/z8n'n} WI|rj4r]TDST?%҇02 !oPʇ1{\7(Pi+u-=u^*e!<ձwMUna) 3"2r8ڽFv'm*s#AJ4 c5cuD}efQc>qf? p,?>g֦XGȏazagI!y|u=1cw'bIJrD-&MOR{+ht5![qv|њ_{VC.Ű- r` n/RF-I£3B6k0&Oka1 ],L @)p>nsJnc,l^\c?j"޵#ny\MagNQ,_C6-fD@X~oM=+}5\q&̙EKQF[#:M7%lW%X34%}[ĐH*)s;YrF(R4A[F>+% Vx\U: ;y^?;{Z}宣LÙ:DS1JX4Itcjx,NEfݴ* leY`Ɣ ĶTF%E.xoNW֬&xݡ |מ 9xt;Is_/Ѧ$0SK8eY n}Ďhb*w[4Cq+򐱇@=c+RS#IFҬgzȷ >T'a S\ù뮲.ϜZ|ZQew谩$F+H nIhf&#fNLT;7&.aMOt/|fđ7!S|(#j o1_\p1Ed5[4 &ח@.8ɷ&%K Ȍώ^ n=(Vq$DdkoIT@ˤj+NfP@<xXψSxj\B8 5$`}7)1?`nˇ KsltJJYptKlQ #kѣ>zuT]nᔹaRjƲު$%_"kzXnmh (Pm05zTuPg(Uҷ0VJ}Le/@/Rl?)N!ϕz#jrыgRJ.s"9|s]pxۂ" zw2mNnJZj( *q]-]M}eU=B+i.̏V$[OY yi1R˭ yE WN%?OfB{\Pn;wk`Q0 dA.T[P]< Oֆ1=aE@GpΌ;E(I#8f/{ϻ}vxd^lh/j~: 46>k{~^N>ۄPY3r׿iq *fE+P ^ԍ1_No!U?-nd,8O!$u+"bB'VTɺe skX2u2ꍗaHd'8, C/N2! ~˃R!u~Ѱ:[UXŬ5e0Ë́+Ő#HG n-7oeW^:dEh—{)8"GѠ;j m4W>躥T>wN89f72ENu8\T<-f\b%E6KjOmtż,-rG_[#=\Ul"blw/(1'sB3B~axIO7|a h,&ci:!`0ym( ,(Co\^[AQHN= y橺즐0!E2s4ozMn9W23RTUjWxٟa_67 ~.׼wN;4:lvUɧ>XHѳN|$5)Ns!< qF?-"n5SgGu|6ˌy[4/(\e\b X:Sk\fv\uUO tl?NE^'$2)X>q(@+\q-fQ.cq"۠C{jyif-sq@{\>8KW_r㶺:ӂ8tQu*Ngh;!HXg9/JtvO:kV?ʼ3&M|EW: ؗW6 7K9?a ,Fab J- Wi!{`LR|@cs~ j-悰hc˹*ϼa@zh8zMah@ -gyyC"/'3|_nٔ-aYWKגfNhf:ŷ[[VT4'|Mޜéfv\ʵmn7X/XT|&#u`w ē'o3Oe~0XH,tb #˝s[n- U?O`àFm,ƩUբ}o>J<:7m NBCަc&x6 Of 2$kF#71#O 3de%bLAH6M$ ޶{ s"TL2AK7 Q]&Nqm|V9nw[!.-m퐧}0?[Re=&lNapjۊDZ$F\ǮӇ-UA 5{xfaۻ'f%Gq"}Y˕5Qu2zF5QJEy3\#הHf@fxȆV ׷1cjlȁ:@n~`n zq>JFqt8n(sVb2B(A:1$OUfFTM:%Q0e-j-8k4lx0*HNP7:UیGu;0]Ȋl*Y:⎎u]t֌Ɍ"J)GEIn6c#Ff™";S^ ,|(u-\mp2#T ]R@m!;^/մṲSk'B\ED ]{.#j ʶ)DvQs7#&|+psլm|kN J'fWug9$:0<p8ЃOu Wn8\-(㫥JON%!86N`@ Ƅ=x+i~*{he00@`ʮ%d v*6HdK?gKv4xb>Ҵ9!V㮑;P/%J/*;v1Pa}GBYV,qJٛs.@H)%$ƾtjPWP$$9pJe% @ -WyFZʟќV\ySB=pu bD:TMnY@mBG#d sxH#V\p*cr-8hKlT3{oM bu8Oj{͊u¬~1dG ACv\ZΪqLogSBn{^>!fj^{Ȕ ]57د0ߏ΀6UٰI/Wy_ $ >6-"Yx["+a uǓ\π(`H9l<5jB會iAV;D:P`/NjY)=I޿G+Gv];R*aP-x+8,J`uVg~׶&BrԎH.^C},zMA X'Fwȍ[b;g0ҦxTlժ C+@u/5ͼ?\#͗v>AuTslgDuPø:(3!v ry!UEM,*E[xDR60%/y[̀j_q|fbGe /w#UX')Vǧܑ>9Pvd'|ϟcz6)AƁ$eyT:4+7VD~LJROTȻys5<+y/KNf V.7W IrJn fptNT뱊1][ {u^Gʰ/kXo2L:A Ԣ;Y'q/1UQ+!:4u_֌ w6+-v E"biCS6ܤփo"O03նy& A_jwM \H~PM!.<,'ѻ+]0e@nw83*~KCW/&WcGW L}tcMU  }:27=gB;g96k}&H(Qa4g7 :GR|41sKzx㟣CyRU^c`k+A1Jt`+nw%8x9SfyBKvYA],~/?8\rk=fCx69=Z#4툠Q!1_|t8Cp>.B{5{GjQn& !J>tSdmMd"~A?L=<~WJt uq|5W _ Dz0x_x][Q*O @BhT.f Pe`ԟNM <Ƭ{;#8ai%F .z,;h+8S@rU)n8_0~}=6fV-~4V|8m ǰw'Pjۊx 7Tg FlJ(xtԼH_-5pXیIigU U)O^č8Ҽi8k'ZֻR4=v->?"SHt&l~|(&1ST`r[C=r~7}'%dvKEF}Y ,&KV"s۫\%s%A!v6}E5mu,qҹI9."_æ KH)1hv0޺zT 2qe? =3]*< @wV16ZإE@kQږ7P|" O.qyVA5[PA+/2LN ^J"WUOvLI>!~1d.M.V$EL4K"JWͲ(y̖! HNgX` 8g869G*d[%4<vSH MKY*_>9ܸ#~M|ODo7{ '=qT<#Z~%AO!"*~b8LUJ!!e.)cgCي]qD?^M} "(| Sz )(1l= +tNڄry#C-s,2 :A;АRWD2+S@ϧ}riM=a#@(}:N_d%-QX%m`n)jrYW8 nrOY?]cxQ4˕|iBZ1! kzuƞU@I~[<dma:b(~ͫzmt \k1.CNbe{ɵLN]4j!;rXT7""J`.<'cהQߎ!Ǟ҂ϬvAp++ϟBT{UbU!<ƅI~>e$6AF9G#f FH7u>zUYeȭj.5fSP甛g1Wg5BлU YeX,cƒ,Bԣ5#̑eWNd UD[{Ou٩n+e<87}ݣB0JV}̓w8 Jqȯ-:>FWP?/~T1%Z ?J#2TuxP )NR(K92DW{w%Dh>xwaݬ#'J)!V7wqČE"8dX]<8& JT|?x " ZeS67{ߑevCjޢHdGC0M&. VNgU@m!fM\r^mfs zfU a6Jء;Oi8>'i?Lgg|3U\#JK,E+S="1/~_F^.Vu\i]5TJI'W>ЍR߶.O"guVD9Z7suB聖Sctzsn)}4ڦ :s<\eVG|G ̡HONkVu=X'Uz?N<5v6JsFEs}Ϩ~ɛ0.o}J Lv(~+pŌ]}3;el27n<]F)ܼȱ124J輼@H&1x>֣7O YMqJ3ߏ蕔)ũA"1ln#3dQf:  H$^Y&B[g l+%Tp3"OAAM;'ft}r'IP4)nXYfgf&+?,*``> "فv4-F~CB.0tK]kCu(@yqk܆qkxqRc,s.h'SmOĆ . v-xL CQwVp_6l1PHY :?VȷdwuC \OßZ7$Ity`I(U6V~n~^X\" HG<˦=^Z{Od”dmcYw?O;2NZ3BF/U.y~AU{ƅRZt-ߡlkٖW"1b?W+4Qf! L >}CI0"[1)۸NYH^#+aV|T0n2jV}J\ʈ  y$GaqRPEd{QH6䥨/0AJ1;'*]=Vq,Gj{@6, 945on3zQ[Ȧ˶x?2&VtY޴! &tH7ng 1rNvsy8rۢ@>|8÷|t`E5 [OyX+d#\b_춷8a $:3#=o4zܱ9P8n\J"<&y%ݳpS4rIujRburRK]WL?BZ+"*:pzb5b?;]4ǯ e{ܰM0RU͊h Pezu$(-2X X(f=gZ{tC9; Sxw+ ZbA*75TAԯ#Xi%;ןomXK[ EsX|nt CѴN0P ,5՚hޠٻOmWD~սbGNl\yRQrA'Xn eD}&>OPGΩ9z2$,9#g~p\@5~˔m A3,MVZ 3śБ +ӵ 1B,m|Aag_2JV) /Nxk s[~ >Bbz1dpsk]ң"Yh۽4BKNo Id!\%W]Ɯ1CYH&D>DŮtdҀyDrxFyC[ؒkQ I[LmZ҉C 4g$@ jh^20'3ca( H7ZT;v<t*hXl$}hGʷ n2e (R SU t嵩 XuZE͋(AXƄCGR'Ϫx:#Il T/21vɒrr8!~}T$ɗtY0N1l85#YcCt5WʫE-R <ڃm$vؙRg>U RC%20Um7&PNmy/ Vr"2@U|3:.lD5Mqט7MU5@(jU!D\g6m)͔)-muNuL7p|qyMggW4BW"۔|qf,*iA~*LB`A3X>$5pCu"ԏ-Xd\eJA\ ׯ\@X}ZCKq d&DWRyid$-\a6 nA!Uhb&5 lyU:)g=9IJahfb+-"QZh S1PO847&ύsmfDDC^,@C{[+8R[]2]%s)UA=5'CCذc9A T@/*7VWZYυu"V6&_DbA0r!^^$Qfy;[1Onmt`: u_)År}|ۈrjKLJ)<|h%EίNfOVf2_; kxOJeZ,'iAPu膁 u;ſ^P<D⚮IQ6h hNmYɬVϗ[Oˍ_  =w7.~zl'c1Tb'9^+I^j4;XѭR?% /e|@s_fZE7oƃcFx-(/Gv=!-<޾g8baJ(q8mKEdtv_K[1GCPcہ4Y\1MpZ7K|>H[Z2DHe3cTvjGN-e;u0c֠KymKOf:DyKg;x*SYJM; BysV (}rkeNnV JK{wWPڳX.g>󹧿 hYVXF#iCKGb90b#1 G_*C2:k$=Glh :  fB Ӆ%ڥz%vW7z_ĻrL'Q{rH ,XTv$cެP+{}5P$K)x+OqxG[EeZnߞ*`cX][;xVV!h`v-ڐ*R<{5ݴXx4&~h'NcE{X:kV rW+NU9c&-8|9]2ׄW ǎ= 4׀`TJ6@Wk$4CO*f3lڿlN-eIm'F2., ylJ1g 22$ tl}i)2orZ` (.CDY 1\GHKUt/xhCU tq {6=|?fi7}[9n,Q!^mg5"֩ඈ;-aFX&SͿaA V'Ӈn@t6V|%;GB'$5[R\Eȗ%Ջq8bo҄GVŖjb.K)H骷_@jasNz/ 2e!1͗! _T)Psu 1κTy~V ˲qjR/xzEfɈX{ Z,g y S<6®Q%$ a m)R0@#GpA;.DHkxB@b ( &+Z^ ߬_4aOO#_4Kvm=Un ^3R/;v_#n@Ǣ]j&%a`lz4!.Cpf6( ĦDKX*AB1ΣYz"qexAo3PwRҁ}w'j$ ғ5[(\*>c]<+$+RY̓,l Q{DZֲ^!ۡF]M61o!]yDsVlxk ySKESZFr Z$=T-Lu.^9~j2>=TQVni}bM̱[+68GZG̀L{F+uJuxBiyRfK9A~3 0U)UV^Х\Wb 2 SzT~DD2]X)EӉRJt]zMI.GT;e3~D~ʛ/!j9p Bv]JTćk01l l}#`sñY%`o> *B]١6hfn^}rf^5q-ϹZt CTW^hiJz氂\~ά*4&HpQU˫=M<~ "l5ٚeF闪t<|W?T%B{QoY/{2ְUQg#\7sz1Ai}Mc]E8un2 zkղGzSxV9C d(4:(_7<D{..ݥJO|YTY m u]\5fX߿ pC| #tSQԓ Ͷ^!鿴9,d0//S %FnνRa6.}shtnPJG3rx5\IR g?Q]|-|4-?/znZr~. Uwz@@O\"$%nIA9˿nb(\F⚶f42-HRZ=yRDZǶ񪶞 P0׃W|T" RY< b=mְ@r: h],3'ׅ.K/:l[ou$_ _{kmHZDuQԹCeNK/  ޕwMVOuk{Z2bMڥ mK\(ݮ䉸C:]uIQ ''b)B_wE b=4J!01Yg]!>bj^{"S&Aq*f'znˈʍgqB*.N-=Үxh'J5g]T[ o#fpZ8&i`1[Eƫe\)qȝ$.eNz/Zٖ fe}#uV#+(JkE-(SoNtl>{XwW6*JJ((|5dԞ&:J&V#za Y}ʎ&kk=נ7;q`vocG ʐh"G1xGȲMoDZ*۫2{v_L^-. ?^4XI M_z`8\5NAwĔ-FTn0I OMCtmܻs'gvdd?#Pmr'r=AI^AK (\F_){J!G6'h9)_<4^ɯфR`sG|X7s6# $Ҽ딺7axK75p\M Y@K>qHX/|16nG jWZ*{qgt ߿FPZW!;$TSS"6~*Eg^efoCg jvy3!eXb]}GόHxQ86nX∤a^10-YUk=SRڮHi03k>\@CٹeSo[GBɝSͣSz7U{ p ,NJ;"mؘN3YvkArR&aR4sKҞ+{I8xF Ǥצwe&i|RO!kr>l1FjTj=By2^~Ma(\gTEO2> _/SOv MuBSb_0~~&W8$04'Ṱz\+$CجSLv fLN@?@&jif鴗M|ii~vD7pp+ϘIL;Wg8JA&yNKɻn*ܪؓ:~Bp -3T㠝>i.q6GoA1 w)[w^7U ИEuF Ⱥr@)Pe% ĴdG!?"A=3}'@BjQcu]It;ܐt.A}_c͎{$6fOp18F[$Kxφ`#c+LX Dċ-ZT=ct/I v;0 n>Dnf!ۃ`[Tgy\Sle $7Ə3~.~Ϯ&bσe`,4!-Qr#}vWmyzÂWMD (]� MF^#Cη 5c|`́b?ԑU[ۇ.~ ۥ+*.. ~ܑU;<|~R^DLY\S jJwwvh^-Sr&&lͦ_#.Ŧd=0v:+$#0ZD4Z|N=@k ^Pig"Gř `!osO]byzGׅ}dMb8@5"؀&Fv?aNPmp$w)Ɣ&L Wi[Op&| ǷY5gGKX1&bU2ӵ CȢw"k.MBqb$|:q9@n9魉gܶ*>7Bxzp2@^0%Úˁ?cBF eɝEh +JX; e'UhzR5jyG^4"8/zNfCRQ&} Z_Q o_d՝o1CFB2)LVEXg$Z*zt$F:< H $_N4Aݐ.¿8WӶ&K+[j: S2vYGGJ;Ǩ͌970L$^R$uI+ ڵH^ٙ2 $`Bv鴥"oX 'j&^f;aZq$މ~o3e L_?sIr!W0uvlq/pkI̓wht̪S`e ~0Yj4RͰttv`V[jX0IF*ӇS=zKMKuvLG gxeEzORIEjrAQ a;aNfC- a OÝXu d˱u[d1=O>RE7EY0޴_(ˡMBqF^ W l9c }ι5OWw5S~rl G;`e[;4$Wt@f$%0+bHHTd 15$=v!ٝdB$Xz,Kgb}+t]you-cffZZ6} 0 .s 8uN A< 1E[j@1Ӷg]8جzYoL#PdrŶ'EX%xiiQ-9x8&-J"([xB봘7E?OéT80!0¯+!{non o=s,hi5.q;;@b)ϹS7ttm`Vcb4EBĤ>Ul}|:_5T&ązE15ɶ Qs|}ڎ~dcRW \M"cׅdf2t0&ѭacS.?] wraZ )*J +3,Lw+؟HVpT|d/^> ģ>ŖS#m\6e7=}yQ -+'|:PhDz5r=vi=U{d+pJ*ifH骚"q>]ADOaU&@"yA^%rD`ԞiuҗZ{9fAcۨSh$jr`W-lۚ`KFl b^wz$*y燇"rl8tq2D"LJCxkuoƴv 0RXw[bUdW#C/?[ Tk^z_^RjnoC8:%]x[YO授2|硪$=Z 0#G'*S~8\.ruBH}CD¿*d 9S D5:ޮ]&QZ#y6[ I4׫N{]& j0(POxSG 0SMSgg=[B1%Sֶ$[^ MQ 3u/|)|6d%"v&&+*LX#Ԗ]Sэ7 S Pչ(Ay-wOO%vP4Z7i?"D^Hel/{/)D+յ)Cbbɾ&V/y2~e+`I/w|VT*" PA++ShQ!55Tx3؄-`Rc?awhR#Q2..Siȧ^AWijm2Y]VTșI4LQGjbnض*ZWic0adˢeˉ-sWO!^D+1nɱ.59簼DGԙzx'3jRԈs*r%Gۣ%v!M!۩,έ|`mKW^L*6IH|<#fAnP-[*[r=2<Ϳ:hׯrU,.;*jGΈE esݑ~VK:$!'4RFSc&Sq!SY†F{S2/U; ,#12K3wbCgb4*j*k08 Nf;1yU|F2[RG~wEdY \ |#<·y*0A^1SYoϸ(I8dwCǹ~φة:Oa~dC;}O ER?Omleûy/_HL7Rq D"gES&aRm2-Qs3|@X nj ~bofD&!:|;$%9[9|Q~&Wp.x:tQrZ6g3!pY^Xux"\7>[>?-R+:~z]ϺZ,ĘXϓJ@f'|,xhCJ)&]r֥ 4u`rbh֓yX(Ȧ]u^&n+\Yfږ{D0p:;_|O =>K]Mϐ'6MJpB T⤪na_]Ta82@M Yq^VpJxAD5 MGS. G䝴y>B;V665IfwAxtD*ZB1B5n9ǠNXO|z;`D2z;V+g!ɹ5FzZRFc%(!5ݷm^VVd);/fx+Rߏ|:-wgcU3'MA0ɒEVQ}2n^:Ѝ#iKZM*o&:?^`$SWv԰ϊ@D䉢ؗd".t'^K %iӄ#w+{$+toSewH)V?^,Q@:#\^gԊtq6p3?ZldU"ZYqt`Jw3JE,_Lx#<.4,D qGa^Џ791zW2^e5>fy`ШMK5M[|+ٸ n~ڬ14=XN130 kF9 Bt xӅp*8edi;?!{7#ͿE\R*ݾ g˦Kh*JTri/$14%q0j-79Cd U"%{(KTQF6Et z z.~ߖ#@(wgTy¼e`[cԗ?@wڮ С]Q,[rjWwfor޵Z>_i? êURWwu5!< uޭ{۝k@vi>d'dugdYqi/foѢ*80v3 *&{a_Y6P}1Iu~f!ᨏ1ed:<)\n*4hE]t||Cfp, {Ž!俞p fm.hc%UQ96or@9ʬ=z"Ųv`됱U渾nm|=7/aah1|Iςcn҉DOZ Y$qh N|rS"1$<2rZ/nlAF)>(/)^,V2[%5E$ne_ٴ1*ֿqJD@}uWBs(pCؒzsд!9Kse" B#25'?k;ga-:Kt>K2]ᙳ޹#AM>Lb$[\4[]s⁘\Tn˲ODwN.ejLbz=[󄶞 fg;s{٠m#7kv6j *]jm!iGiL䙥_oYSq4'rڗ,j\me1fNwf0qG]W C07Zm E!u @jbM\Bjp@ Z)mFcSDS; Rf0H1S?G߇5+|>~!!cɘQ?AȍHCFVxeP1orǫDe15y݂竼Uj04i4{*&%v0ZpM(*1bɪvZZpP)ʥЛb\⺱<7XV!KgNY7&l$J uf9of [9aK!nM;/Bh;]SS M(bM =*%<N͐.lQֱ{ 0C FeҠL9">kulPc(4#{źv`!^'pz/~i|XQ~8)^D|]8"K{i@̞_{p/GQZP$+n4 d5ںySx: mu_ᮕjRaڼn VkPs#rֿ3y<;#_4=Mn3Kv ~{zIu9ILTSh0O_ܾyll r.ME'4ŔABrP Ho*n@L5r=D 79JR #Cb]ULT﷦m_ˬG/ZR5"q+6Ώfan={DzE>|3b38]_ˠ.uce'(K ǮŜa,64AJkЈa-QIzgrIz^[%{#A3QNNͲrB'?ADV\TNDh4xY~_/:ٮt2s[wS(;GVҭcE<*v`Nc!!QwvoN{;]O[ @y;$G-AVT[vGVJ P XnEG2 քrgiЇtd)v$ u5}'x ፟Eim:ON'Wj~{ E)_|+!6(2k"N`o-$4kdħ>OP`8҃~e_6l,r&OfZb6:%TeZI¿p S3QS5xA@8ĮѴhZz2r}E@)-exKf`N̵:~*xaeļ(:qd/] OEif|54oH1+ip u}NTLxsnxֵ9fガ4~T bhq 5p/f" BuOq(ȚT?/PPlJّ i -$+-I@ks-V0_?Kj,qN;e?;kp 7pm+oW Z0xZC68sJ(#Il'ItRk%alZ*r+A,3zra(PKiDl"'ݛ28{k5&HjXLP͉ĪR%,D}Xv455CgԤ4NVf( xܼD8Fx)7 ^;dNL+ Ք[3Y ngDN`P)wLjA`eG鶠pZӯ(,&ә ) `pΗ۳$>+}Q#<@Qg*~78 #򹞱̲-W?O ,7hògyBߴQ\ԬiHm܌Q^j3 Yc*{W\/kBũ@ɡZPƲ?[bSё!FUI=Wt#*a<&%5(ٙd*̆M?`]bR֭ŨϘ8vhTo⨎5[/1kPExX< {4Ri84ZIAZO5oqFPvW%}jѢ)z^ͮ8-!@ƀ%1ED;lAGQ &%'`{j*LŗzB&޴DmfrJ7L'}<).P*&w <$2|l´NVto :h0Yv0+'8D] o4=Qb3w5E$<>9KE9@ W8Wz++3j9 _~)I+K.52'xpǜu P &3׵za?v?(jE>1?G:h(ÆbJeTXtx/o-aGF %-AiMJ^訂 - ǂordG"!+qog+sX PlEZ6߾ϥv2czc#cTl lU/îJg^l2d}56aRȁ-XQK%'101q ;׵xr$… UGzO]QDo&A4BdJ=]@WlQՀ ACx ߍNJH#6-=44/υEh]o57st)XZ:D3bH$BE*!/Aǩ @:&*Ea>t$.Zfk^P ~hCD}{2iSHZTB7M hMԕ>M"oM)rmo4ޒjZ片ً?G^<8>߁ iE.ߤR5Nl]xh'kLG#˵qR;X5qFA7Gg2!`4X|,@|˜TVpM^Mm$G7IsY~=YƲ®{ m)n![v&`1_3Y-h Yҿ@-#;s(ZEEU/I.@"=xمG81 _Dn$S "Z<>r:B0w 9.a IKGEKlQx+vuwX ;罈ELw5bk}.fਪ_'W^wvŦuD`/7${vk $Ve(&p Hʅ^( ɗb[?ij8{CzZ<]Zзc3&0wtM-\+ zH '%[âZiiž=cvpN6=jXWf tBs>ۭjbڻZ ns=>r4$\|Q ev9I~ð_JwDxH!#0$o*@s@ _+!8; {67v%|k_$lypAtl1;fʊaT=NiuA<m[m\iqj}~Y~xyAC\ %bī& HtڠfQB:I Nc)$7ewGwf!?Adkp AS [<~QdJ\wp7zusq16ؿZKŰ0VjCuGyl(U|.V8-*P%?Vz+ZРndr氵`@DJsyERLPZĝz )hlG.lQ]˚lnl،LA:ࢡ5쌺f`zLsT7q^| űe=Ā]ɵ;gdt- |<فK=ۅ+9&TX"~C/3p,>~m@::gƩЎހ 3bjqG SںѻeKBX ׷ jZ FҾ} .rJ}=*h0$7XXy35;6{Q9G9P.MEg,DrFlJ> )AU.j3|PڎZUrUS` zK/'D)MH-8&H]d¸L':^M|6emz} IԻk0jkFX٭bu `kU0cŎݻHqt٢ ~qzJ5w{7UP˨{V}"P*}Ah&n= jt .!9SF0BE2iFbe2/ FSKv U1p*90VUA۫=#cQ&rW08oߪz׺(HXMຠFyD7Wg84"Ck 9r%HFy?&S@wMT8os3H>8K(\Aוc̹%``:l¼氞y.r96M:_S1ccJ;'G{(WnYlb1݈qgm 7#{# %m>Pz2ʹ ɪȺ!uu6~; e~tl𶭀/Za {`64(C)WD,ޭ{:W9Oѐ|ؗ^q#kCx7}D^˶b6ϱ]`| N|NDor[u0h/0nO.@ÆBMg8Hʄc >|,^lJ14+3dO6*-q_jb}d.`"hLږtׅUDYE ۜ`HFhy5oо eyϐ$PF =Y"HP.ѾyAjTN[oEPw|KW;Ir{Vx c2M/(q{Bһ'RNn9UB}y#֋<#g(%Twt%1Ы񩩶Fۅq1U#g]3h39jOd=#;==C˖4#xSI7'[ eTJd78$hY*jR*'fhl晫(,]\"MkP3Y os+}Gz9eچ~[|-m3WoÁbka%(72~ wM 9\"35  ZԛvѰ<z4fO2,V]q!uYc.G@ڞ2={RwsmIެ)7KU@ ,cM1 xz$F?62oY{nמ1ÎX Qe+#/c6`Cʵu_hr-Wx#ьID+/8fw -& ӖQN+ՁrJA[ ;#,)bE Ǽn 4Ds. eU4\CGknjaaT=N̥TB:x= $^2͝7*Qﳅ͌yT9In CGHcKnI@`lw"*$UFʑ!͊$u{U@C0?j墬]ٟ"zU4k}D!d!I@6*H X\8 Y>G*ǦdQ`K@<ֶtvkl֥u}D~moPK)cKU f"JH T]P刑_S}`˵1:kU4QAG;ϐ9yWC)ih,]p[ *_vsL B%y֯vA^;ï=1R_5ߐk⊝0j"y̱v`W+Nxi,]J?0ՈJ\G4~9ANJTzތ@ 9|AڑD!4G}}Z{{HRm^[sNAX 22ʮ⁖k9IL?/ _55HJq-m~<滱䲭~(Ag ]w*@;^h?8J9gBEu&د * GHpՕ,7o%Efƻ8.VD"̇C=ܧFgt@ޡ{"j2i0{F2oP;d<6ɔ? WȀ`pp ;lhJk0(_)m>:5sӄJPDx]g)v5VƎr%s_v0BO>K2Hxa"aCׯH_R8%c@d3EpO`k,>ג$Vw){`[SZw\@(GĺT VdC0/7#+OpdE f=(l3pVuy'(eQi*@rpNCxl!z/uuPϠQgtu%j"Vs>ׇx*طe?,f˹H ~!55d \ySe n/S2T*\杆JC ^E& )q8h#fQl{,cirBM4pq'oKDxB nMp-)NuuİP?c`76BHQZz##Kt?nfR${v`)ls':5=ҀjTϦ%T"ut$ Ɵ.%KTEVFh~n)^Q ~JgT S4$D-B6ϫ9U溥Uc. 2Nb1;bGjS+ZtCyӚ @Q~қy$9cOMTi"%. ʮ۽(OMuYIɮ|Ps̆Z7IgLkπ^q",TW Hy VdnDKCkNxXSOq0Jw;2ɗ|uc'q%tGcbS%[?Zn$69L)4ݙ"~C@*$+u wA:4)>JVU+vV$ [ʹ*sn覸q*ZFGF衦] +ji*4nop'!JƤc98wVe! K9]3<4L 5-t)# ˤ9'' o֠K'7lG1@cr GƯhO 8?=ɍ6878@A8mT ,n NV0K- LIK^2R Q *h(q.hω yӎ#x(^* p iB#/OۿY70˭k}(x%up4#Y>cإfZ?HK?1%aØVՊIE1mR׵OޢzyU>v2y#u=2ѡ"=zpח~팃_###l,.D12APctuK("g'pp>eb&aDƏ>&֢$PgנB^fdrj[jl,s۞_^)_ CΦSL`M_61:@ bIl%xq&pmY6/4y@, _aƓxDZ\س~9 [IE kG Z:C)ӭi^אΒ50ŒźЩ̳%nћS+ e ;HE qvz,lBѽ&Bƥ(F6B%=&=Wi yq[#0NM6aH8=s'a$ olMg 4օo3ՋvA Oixe4K?Pa$yLM& A]ثQp.jc\L$o-=[57c!m} =2q6?3'3 {c)tAjQyx",KǢ7M`qD*=gz.k%IyGה KϝI |H{61Oj9瓰xm$rܤ_,MdƣT5XgdJDIަڽ5~Ap/"۵^%i)[PP[*#lRThFpF+vH 9Nes$Zl.HR#03Pk4a5]!Ӝ1DZ&y*e N}UZҤKi Q$ɔ&ETo-y|lv#r@KN~~,ԕ.A`FWhgM?PGdV7iiyW%sQɫT oefueȔ?feOE&*RQX>So/^%,g? ؤZ ndDP o+XI %)pvG[{.h/C&7KlzˉnVV>L8xg>3"w3-v{L52]ֺj)U$pFS]U 9jd%Zmk)Mo0EL."4Fm١܁`n57^t:=VrX L@ ~,!.L`L6ǢO[<c'IP;zu,@iJ*pp1y, QUe6d-f]K*aKK¬>:7!A8V.N)giVgE"`}k۴(XSQ"Y_2Fk!fy)@tV8V{')M Qd5{BBE |+G[N3'7&`M39A,3'>1?ӆkB/Ȇ+MX. JU߂UHT!6?y3Gs4/oH&ʳ.zǵw[g¹Rs<&͘Q-v0|b=-dڼQfv?Gt?3d{e Ύ1X@%64X69V9Xِ@af& #cDϺe v7_D<%CP\ϲ/}8U;H^RE/^gikz56>-Wj[~ n I~Fn|iTp;K7BCbS XIh$>\ p>/-/ʂ8n8_+#twÿ&0|hV14UU0<2`E{Gۆٙ#b[ 17!_!8[m|J˔+xⴑcQFBɴI5(0QCo"Bd!|V[J&&vFl b*Gj,Up9\3>uV$0 QBKw>Kz*}7S;XeۘAh }H1?T(ML>pPx⠈kg?mCw /J ׶Y _]m u\a=3 j,G}waCnc]߼+3 }k3#FoEAC=ZFf(3[{(.PjqIMg9sr"Tގթ (ʁ>^/-懳k$bD;BBy,5"omEV] E|bpݵKJJKEx${ B8F(*HTÆۅ}iTQN-5}ǚWL8rԙ2gREyTn v|pg8P"e=v/WoZEGP_utPBnEs;TZ3MO}Y@F{Xa0xq$(᾿_c]8t`qG.y"] }',0ᕅ~J<]E:Du]%0ìll;)eJ8"i6*]ZL|c~rB/{nc[RB\ܫ3Կej>ɶH7d0N {սް*yeJ m4`Fz^Pi -< k˕^b[XWO=N&jY~[ndIgtjbK3ć~}q38L]ہc'P5ay;^6nYQw*|n# 5AdA]n(,rx?$4dBw-y u_G ~91s)@ }QU]ѿ\KA"*aEYlt'bYR퉅| L*8יd_yI;4kX|uR@O*jQwؔmCc? uH{siR-VT{c2sNBxl!*/b!`,E8D~xJ Sk&C2OKɧfDQ+‹?̮b|$v>L ;oI[߾G 8 tKgKj?O@nPكۮ-V 9jr%`NU=&lѫ]tUيiPL$xר6?<%rKP@:yP$>UOSۄho}C4›n^^7ƜD-Z#Ff $衁C g!-9x^LhHbdtXJLNeܷt}z߰y]Ҭ#H1ԜrWmvⴍ>@ t 1]y"_~Q=V$3R0e҄qόUzeYz\ "iBU-2Џ_hB[Pd"D,\ՠvwa24oߘO'6(O !(-5F"o|lguG?TMSDhB;7zGn|_O5,KZ IcbrfH]:WqS:_s%\Oz]#ph~䰐hDoWy;TpmI6 WлëU-POYg#[Wo/==~3 Zn bQe\U*Au}~_bRRD B])]:6_ 3l&]ZJ ;ULLb  QT]c&k~YlBy5+%Sؾ 1h'J*#tp`T5Sm~0lН HIk1{$1k !ۯpG~v4m-,bdړJL6l AtRwkXQ@ TKwEJu&:2%GCBԓ40]=|kveĴ ɪ;`eI &nD|ʎ뼼 j͇c%dl3ސC\$E\Jp4Y˃p*\FW5gGf-^g3gK|,EtY3NjUÞ  m:8(9gԘ _W>[J*!!=3B]6@a-f\S.Df*/oZ1wPcG3b VFPOwk?%-%fFފphkC@26zx^:XȾ &~s}" DXqA1BhQ0tE hdD?IB!~π6hjXxz'!j#懅p|tnGQ[}1DEs6 ʜlֵj659z]o 얀}u6k3YmҘ=M7!umi>yS,<&4i݊yQn;L âiu.Q`5v"Owuql{dS{;&x-DujRcVn8!EwnH)t$ː=g<u ZCjݞ8*jU?+1Sn` X?,e?CB-֛>dʀ!1ǂC hx{get.xoyBZ^`(cG yȹic9mn3}6*0FY4TȺ[X@92<5 JlW^* \A-aѩ ?ZDu1 fec~΢62@]l ?kuTBs2"y;Kݡ<Qyti?k'At&b3iHG8O>mj 3Y6@AgEwHnUt,x58,'G]4VNẅ́fHMژ@~f Egej"R7^FA@q@(y^YMW/-|⚩+Nο7![jAgXB`y&ujc=6Ԏ Wo|\4GI\cw6W;mrE^^Z\Ў([k8H;`!XT) rF(wb\ m :4Rj͜c7|%ͽ% MLyvGTkey֖fW.QUlGtҬ*䘏7m:pm .j_֛vG~Wk|SŜ<.8ZL$ʟePݷ0|A1neC?:rqt~kČOWJ%+nƵ\H_#:U7=\Pj )Q\ W>? IPD.T 1JkSID2UFҸ)0Z|E|hs*w^}cLd|jő ?>(h)Og#zI; ic~;ñ/@P + )冠*hȥ']tAK }b}}NiH/:Ԓ8MVjd)L&%bý-) =τv;ޢ_keSSSߕNgOBvltaK@!dT:fОjE5c}"M͗A zc)lB7ڄ5\VF*v)1әo_Fr8.'f&DhOa%h(h [S&SYRqC,'}>= { v*3|e4H1r 7ګnLS3UJ3cKd#K{󂹅z#bk`aEVP(~>\Q[mx)fDjV\ @/v Z.\x2E˞Z#Du0AvqȲ[5it2<"Gl Ũ|ZiT<{ ⁹gp꼕>pK>8NmI)YUfs6>fgQ͌%F`5$@f Izt0}0#V<`FU$  x,ꦓR0‡F3b%Y26)?Tg$ڗIH +Tq嵜\Q?*\ LUS}{o|e/s2\ތe =9KRZH! !i1hlK gϖ4h ػdV{a}MRt{XAjnvJ4Bw8颖dݝMvJS/SZ> {9>20K`]>>?XǥyPu]IRWH#~tzxH:CLuI3cS޽wϐ9H % 6KiYy3#(Z_#i4 [rg {͑WMql&hrA$omF'u ffJP5H;U2:i/DR`2*30)̔K2k[uR0'v%%&e@w?S[*.wH.g#kb\{ʇb0dSCe^)4C<m̳ѬIeT "U}YϞ/"# TA,v)( }CYlVJxn>:_&ӏr;Eۭ^aWyγ/f蓽}JKd']\w!y=x ϡȷr?3 :{dɢ3aR62(<8s$Gѻtfx2tM;% i a (=wi=J77YmN+qmɵ5dVoLsOt:P\dȍ{) ­gxU]Ʊ>j<Wh[q6wjlYɻ\Sz[ʲ^" x?C,z8Ruk S8>dYHI&}W;yԄV$ejne;,x_sv[q+'?e[tsd% }t{ȇϢʡr;.iNgך2z-kV{l,o˽\w`߸CBu>Kɂaz=ץ@:8 G q7eQij׺}?ŚWf^և0d,' -CGΟ?ލ'`bgj82%}%L}V3U(x9tO8EI2~P%\('(72' 8+Xt4])36HQ3ka|oy|\Uŧ}OC/h_XZ?X ˽+`3Ib5!=1c_a-iovvNK^58rl= X\;'9Jl𐋞Uuu%Jŗ! N ȣ ڇLr+d_Upl8A%=4C҄/u?쇂+ŶGR J 4H>ƥ!-}pEVz+?h6&5i5c扦6%xJY~y|e:ƻ"f袯'D-xun>Z 6e9A*_ `؊N"!~I?L/PBg"Sx=+EQ/J]r_QX"Y<ںD8 d( 5T_ugZN;k g}t8th*>F:nzNLŔ70H8ʹ}0ed:7 Xc H_ܷ3^Pl/TW౦Ḧ́ce9X)\A5=cuL?sJ7G2^.m1o{?}`ơY : ;PR=Y-O|!򓔏/^'"!Q`gnqxsuug9$X9 _Xl]6g8(HV}&ONz^"% fP2IR3&""ܯ$0kDi 0s[[ *Ƴn~ 9._f2 V5_#IskÒ%'dK5kIM8ˮRYq/{fbB7.06BWP,27aVXK?.JK"/)K\:6[3M_(rf4aٹeL7vZĸQ.eS-={ːa];{{?2O5r tG|| @)@̱wN=$ lbL/Lo q?[~Sg:üs55wY #߾SŋDZ7/U;epEuBƦ ~Ab|d8$ G:@@#'FSե}~7)A0jaEuY|z_13rIҡuȩM;K)oh|{HC׸~\ԟ^!b3?,J]o_Qr[ZBrDy`+`ZqбC"oXx'~KH tG0k+笽KPfu/fpZBQ'Q S;2e[+21zS ҃S>-j?v,x\h%GV ~׈b$A\dv"zgxA'<ܐĤdr&f$OTHi FR}*DGrLïLޖ펟^F,٘M˭-\qDĸY3-ibtGT>oS'i`H)IC!&5Y8b+6m9dB68s'EW^ssH`&i%LReńwIpH3s'[61CjyunoDn,z~FL5HV4g+F\gB,k%wIG=͠Sjfz| c#2 ֜OO?,UR.܁ؤ0 źiѣ¹ɠZ&ll1\߻?^߂0Y# k AL$U]-捇Rw3c=/cCzO&п4d5!L[OqzBU4 O %ۍNi'?%I LKȞ(^16Sq'v.3{I/~y_DYER,eq^ ľ^b;3ss6~+F$nR2"yi'PKB/h-<nINS7wId#`JZT 7i:팬S x[[n݁͘(]%"L%+ClΒd,n\@Z0k;ŶZpw4TCO/:Ũmӊ HN ;"GPS$DzYIA h3ԧsIfnN E :(R~U^֮" X`ŋ0&lG~ӗD.bX5is VSJGYn#HJ1Rya nB#4㞁si4+9pX)==G ՁDvI ::'l X^b6#MS:ɍ:{(h_ zLrݑ(y7ϋG9\>==m=c}̚_ ><vE\vHa[+ĵ-'A 1~~/%.O=NxM zs9u#-BL<۰|sH:wqOT0l,V[0/Pw$8^OpP] H ^aQ '|!XEvU=U띔S9$bɲɏ+ 8]KweQHxOvF--`}$0 Oh/}YGzPB))yt_Lq8-cwkKBnjݯaC{ەٮGfБ\;ơޟ<01/,pLN[٦Ah73}#'vr+Lִ=Y ,C<9'[S7ؼ)M,TSG뱝*}V8i$ ;)3ҷX-Pt(S KAYg2VB3VB6HZTa'*%rV– n DЇ}Rog!p$Kp=^p{ A0Lo;Fˈ L_Uqg#lҪri2>m$;,ֻFvHɌtkm`ut2n4ᆇ ay2F$ᥖوks. 1壈 l~;~20bUBK/, N{!ܞT ֐߆mHo{+cAQms@2)kH?ӟ קN"3(iY9' r) NwZ[@͑zIX¿Ph'2G4qU*yr{!_Uw4X-@tzA`;ZްM hnVcuЂ~21y޻aroCKv}c9؅5&./ x $lZ4rsgc>6H~jf)R3BQ 猦Z濒!|=ih<נ! H0W}zB~UyA-{  P [Jq=1{Q jZ#E|y2P-ryKhL,u4*bVzWja՝(X2O/D\ "P&̱,8!u LkY4TE <ҟo0 Jhu2/.=ê NHA4@ڡ+%ADNR'<܎3zrj> Zb꣤7 e*HeܳLy2FjGV~`h8}G]C澆G%0轱tݲúuK^)_>-O2:?sV++0Ù4";:)"е_ʂHueK%a՘p 0b R^zZl9kKɆ" ;ETwC< 7\T/az75W<1, W`keaCB5%_ izu Ւgtت`j.^\ӛB/YsVSZ#:< (I^;bxʆ 'ubŏc[lJizPPZ( zis|Y7E?Lefj7X)Eف \B|&/aIR<UO0/ j>P$9ݨX.;-U7Y|\24p.@.j*-u< # C%A_4Qz#Y.vEz4ҶDhV;L߫+6n^["//{ eB ekө0,>5 Ѹez; $کgIfwfBBM  yQ)nwj}+b⹞\Cb7ĥkR>"ck]c|_/)Λy\ `{ OG 9'\֘6u݆؝^Srə10ކv6ُS 1~:QQhDSK-^gxaܦޫ@ƬUlKE!]0%BXhVNV,E(4~r6;x>9ge&1u>;fWrXdYJ\ِq I]"tf+%aa:`򡸌iׇQ" |xo~d}+yDPP4 %l:y۵XYPyDO*R)eon5і'o'ۛjm e?Wl#D5~NAhf"5ً[9b=:;]U".0f!bKJt;pE.:0g  Xp(MF`rb _m wG5ѷh״fV/"pSiDʞ%:aeo%I۴c vx)@x٨d\bxp:WaV3o&Ɋ3S/=׶r: 8fj67]9~A0 #0e-& I>r*:S=Xo7`WTC?M>Ivy·LQĕISSkL>:0db7> 5uC_Vd"цUQ <79#gO:~zh]ެ\'@8лđ8z\lscqj/-WWͫgtK/ON}eW"IΏG&gJ!:2z.h;i: ydIkҼnOqټZc4y:)$TjJF& _e #쿔0St[>v޹s,}myvѕ/}:mfM+I^?6- _k41"Vo?@֑.k #n^rdV$3Yݧ0JRxH;T4bu7-JyX&8eт&W> %Ժ,V "~EA/Y@dn 5غT%J?lݾE*\&Sx֙TRZf3!P>EujA_);Ug36 rQbSAt6}굋!ZK?ce;3L$ @ k/S\v$R ]0s|NP.k^9{I %*c1GC|Nꒇע}Au+ 1qZ+H&u1H;5m&R=,-"K:cO#ՅgN^ܳVW @Z7N;qu!1- |Cp|mSێX[tnmdE3KЀUh#~T|9/튝ψ/ѱüMWA3b5;/|0 :b{X۩#;^bs;r% w;T^̈y8`޷kΦ< .A[JrdP~[ue;C7e i>:jQXʖOOW }PcPhD6od[#azy!gW)i!\q8K-qs%\ܣ'G!+G*6;qQ,N2 c.jZaΝp֝!Xa`adP9we7,AR.%''" Ѫ&B@7HmwjPY\pPD)@6.9gO_ x^+"/ 0C#uXwbjQj/-fWG>1Y|x*]Y|cٳ,&9hs=d99@BwMѫDD킟Cr6CTR??EC$T\~3#e$k6Eͽڞ= P5|0-/}q OqcF*@QZ Wa 0ӝ׍"Db_33 wե Vx2#jRqkȠ=R6LkDԂYmSQ۫,+$dc@F9azciHO@ .M5$]3^DEq/XEx_)5i*9=vnLO'}~+]B>&V\1s ǔLa$SJ)z]v, :n'Z6:(BP N]Qڰ GQp҉8mk1:|}aU~ |86^ о;,8L[gC`v /7|>3s^=V7f%ù`@oُ h#fJaP EVwwa`dCteqLR^-lT_V.j^v6ӼXuUS%}q4J^t;!z4v?SZ8s`rf+a gxT#~- Ai?-HV \EC oy3SC0c0HD|-#ky:,/`ҷVjtD-b+/H owx]l=Lǥ1Êî=(sIl'u'i|mloI)L;6>-74[(_&W$E\p{k(8ȈBFW7I5zr#`RVc  KPD d#cY&(qL &SYM"+Md}VPO-T7ӨN0k WݺxMM)IG:Mt uLT qnpiecw8E?l24I ܯy}\u R^N!d,\~.Įg25}BPx`]JXo\X3p*B[60Kp:Iiz\;KI5sy_|RF3 C,(gԲ-,o5h&Ҟ?]L?Gml˟|y{-Dq_ U@k}1zQ7:w^xlnV]79PQFn*wvidTzORhOY<%JYGNxxKpc Ý 5xeCH2gV ~^eO^FF bf3V }`tkf;ް- d;r)$x1[Q{9KadnnkL `^mݓ\s rEO41S7d$L?{NGJbrnYp|>&uxKt.vȀnߏE{*ǑU|[``kc@ܫ͝7r/%9 ᭈM`9a!TX70Ǜ"oK<|"LgJoͭkh?%**3k1 v8 i%+,[6b7[ uJޠ>DgpHl&[Rv;EVsZ{^tTaj4>zYέ;3oeX\\kC Y2`{8`aX&ss) Wjȉt:9jŬH2X9ʼމr.K犥qK`e@HV> إpYv3]c>&At (v"0M3/OОxg*^9"4"mg{eCm?I !% Uf3lF8#iyhgB̈́?zڅ$HtcワIRM}L$'~1G X( C 8?,Tu*U6Zv84j,+Pf闡b>ƥr6. #``%Fhwc6i[bh6,Cω*( ^;2hmձW+Db̸& 'V "d 0{Y΍S +͜?4|j.\/%9o<"k ~ˀEH}*}"%K)%?#־o47*ux{텱K=Őu"'{r5$+:?2YSqqJ};OuhevUEyor]2:D[wnY|Kd |IJpWZ7c۞1G[&D\xc)*3;hCp?zE SDU@#EP^Q|"`_X`؜keGw? _]pyaFv 'a4qn!R$LGѬ8 ٺtLT%*-2D/$[1׳껵*s_)FNڲ{|*b8 ُZLngV|WZBs8%;M.O3p[7b[#=AMSs|?hVoM'v }>ɃVnwv^:cmP9$ghMC[-J5`\=QkZ~*U3QesxzIw 3/>=Eo ] ٜUhn=eN|"DZn- WըMgX,&(fd:l#>n0kLz X|/b|߾kΎa֡pM;:_qEǺMNˉ4•slQ0TMJH &Q@3R=+op%%| fY hŕS84uTrJjcg2 oDv3yI~t=ʼn0UsC\﷉/員'e!0_u!qQYC+^Z0SM])rHK?FƔ9LhVI{j۟DHzg婥 %TKZ%`>/#ٗ3m$ I]o%τ(݌Nt(Y%?(N ?dd:1=ܑs0:za7k-d|tjyS=7 SN4ۚO:"W2O aUJOm"UQ/vnIz_G0fs1;2]YDԨ'd_sy,!uXMvkǥ3g*DZgQ1;㧻D_,t2n9MAy!a39qQ_$rt@r=8tk$wyCm iAL{~.%cΕ%x+&Enʂ*Vaz왭ϭtأ:-Y'񔭮.씓e‹#Ɩ3=; C3n,4ɁCXsNųD;$?vO/٨R5aȫuu~Җd՘Mp{{~*N&aL$[RwjKi;jWP]ݸaײY(pp ];P[Y,˾1.(] Iũ}k[*KǶj{WvpYz.1.za,oPu?Vb]nM cscE}l),5tPRzfXGvgnjax(qgAB7A:N:1Y`ݕ195 <[af[V1lд]y9{܋4ʰ[wgǶn[wd[ ʫ,%g%ʣyQ#^ESL{ʤ+b /@wVىojӑu+ۑ6{ jectm39:"%g!̏}wyʝ8v~r%lb /sٍwCNb8XnW.!#qPfvdʺ>{&_Kd@XtrTô\f]uMӵ-ovSk [WdOsEuYua'D.C'S3#gpwH=rJi ۥC_SJX/6 V 156P^I, V܈Xy5cQk bLm{Bzx~\/"7iwlVVd'WRaW$Y)ڵh3fA4 d"6嶺;[m<aʬ H̕};Ȩz]"aGvSJ6 r=iG2kqZ!4xnt{yo( ݎx>yh($G*k_^YJQrgKVjm"-TBP" y]V(ߦ>ޜhfob \I7aʄ<^\sO9ߦ*C~yh=!B<ſ =$V9^22JԧAiO N$fI$#YtEgwPeYj.Q$[ԧ>ыpnV( ?ڸ)aC6z,0lIw* Y8AMu%uJ; Dրr +3Cd RK-K,!+*9ٵaTr:Z,O5jk(NU*3Cob6K '_0fXwT86pIH{]ޟ21NV/ܩ&TȝV=H$/AJ멪j#cL5HU&Ѝׇ9=\]ydo}ajn9C\ )$Ii 9hޗ|!gt5"1f*V^;97do֠j4!OʚJ עuQ9| @sC϶ɬ!>;R@]ŋ=&ʞjalJ1p; Dʥ hNKa?!piȦnOC#8;JjF|]85@a72 ҙ1D)D|f4J=]1}Q{ỲFǦmx`_ 4M7Z[_Nn`%.OӺA>JAꛩCO7z3n l`ӫ$TB >*<\VR(0bChtߞ?ݝy 7izIPc@̠sZ QFTDw#46 Xy}Kqd"ȮGG"S)S^Hy ׏[x`S]{8.@Ōkn"gUit͖#hξz+(`O9||C+XV m3 }IX6ޱgݬ)Ƥ1.TW^\Hy<eS¡h(-,,7|k`k3³VOe D7( =28X㞖`:kᙒqjE&<5X!a$>ND†z%7eiZd_Rȓ)>#5Ju HJ dn! YܘT(1 u(`D'%OQa)َ?aa36ҔYֿEE/vNYIх& x}ãQ>B*1wf21,&q~b@.7_a:BTՃ[ INFfd˜&8"eY ?aلX^{IQgNۈ'l8E[~mMy }GErw.c,k+g}(.5f0Y6v|0#ҐV!3>[GV/PNQ2tmͧBHyxώ~3/xagԱC6_˶GRܪ+ԙi^#fe. Pt1,vV*EP BwOCWtBRDqD+:V4s'ŔB@b4 @mb+,teJ=LDo\fܸcM|@L L LMH[q߂3v㜶ƾ` -q=i̓{oX7g塆%fWd.f L zgG/W' Rˇ{K]Y3'j,Ώn9qn3Cxodt--Twv $pit&EVcQ_OԇLO` ROLQ&z~!I,M[8itQH9GO#r]4fғEAg+l(7ұcyN*T ni[%lgnX_YFPG\~ȅRK\s}:^!To9^47:H*ŕީ+ny$4#Z>zq`=B}iIgWy%0BG fFn!-Vxi&0G~3:G%M̒jb럲qJ߫s~[Qys( Tk$ d!{iTDn)J#' :BO## ^mSDI P')He# OQe5{+(i,rD!fpq>Qʓ,ra0TElQ ׽V]5# [,#9:Nv3x>&RN!9Zz]5@MQY?d?b ҆i2RkfwaNhSQpImDZk#QB#a[̶4JCVx5[n2VB hM\M 6(w`+Ͱb?WDm~u0+>pPܞҘ{z=&v/k>h7MR&: U^3eX)!Cٜ0v˿c!u<`[l 7n( oыON/ĕD10^jBxZ%Yt"H_9zf8܅(Y!D,1ҙr,.䈒t DƦ,'&'k tn$RxPY+'zϢstʚ+;pc?V0\+9kO|g^XD D^Oh9>ijU6SKͷ(܄ak=*k7^#Ws [뚫Vl$IHiY_O47&oI%eGjY6g.>ʻ=f>T[Ee;>L~G˸# yxD-2l"kG%Ob*gHF#>,$D|=)f0M_ʀED~pVsz^ԞZ4 N,-D;:\X#8e0mttT7hdX)$X<3{2إ /yQir"uՖԙ3?iyN6hkra/D) y@CE'.<71ǵx;x2" I"`@E!9cl_-P%|*71z`>5[ISe%%fXP!O8%8 &# !i9%4*Ԏ 2$. V\r&~ğ2:7[7ލ*#̥wmUϞ3ץɈ Fa`,k0ї/cuӔNJFzY#bT p˧V OA:P+t_?g]4ǯs2d5N&THYn >@.7l ¾x;R&sޭVYK 0GcYtPHJ2} bN1'#td5+yH8t>@˄,uG`[ѳ,Jgh8}$>1Lx$h< [.)H+(l2 kNz+y刵GI^JrjS|ScB`+ZV2ռ2yFy}7H0ϔE-=θ*Xz|{&Ѝ1kp+r`g\d'-숀S0~hz'J1"2̴Ff8j9H- q #e)s2TܾP"+#|._liEsXZ7TMѮ6  h`?-l1UlyRv+R=0ޔN?)6DkȪϕT?O6C4tv)DL@=}Wz?D;. Xّ x}G+MI36tA(T(7:$g+u\,䃡[T՞.7@@KlqɚPvЏP1┧ݟ9`E*T IF~!nF-a+"oVFZapRx^266}vn1F6ϊ-WRv@\%8Ysy@;T*c!#mw?%S\pƞWf` >.]-lvNDHgrȕnGn(Pko'{?U)FܱKs"ngt,#Ɋa.l ;MMٖM79:OMos ų;5&"fc6 5"=ѕ6Y_YNbN2UBv]ۓ@ K4ky4KoH6A/Uσɘ%e!e3o*G&yX[j[ؐUs'y7ԯ׸|mn{w}ބ :bW[~z] 3E]^uT KGF?UVXY(:)96F%"ޮ52o|eyY =F]dvCӛj g"Y2`=X;ja\%Kkuﺪ#hɨ噑g|,ToO͍oVGӻ!m4^9tzYo3{p`[ST6"gJr0? AO6O=DW9,RUQhy(JǴWaAuRw, IFm| ~?&Z^ɉ{5hcx9W-գk#qgo9l "wÇihp43t9p[.U ·4`W 6΅2^D8j홎(~ 8+x:Rd9%Ť_7-2T .T؅8#.,֟ig+ ?oA>H:d o ODUԘkblߪ3gg/ %ݶ7K0'Jb,e[8݇`.'A8Mbp?%p\/hhJ/Mpׁ_-jfOC(ӛ|`:l&2Y}R]Z(]^xDg{LxQ/Eb=F9qS ΡbUY%ћn0| gEײ)A ?-z,oWK;ݴa *jU(Mh7QP*L_0owB+larEWKOU/`(x̹^o8\3+!JyvΒIri⽟Ѓ޼Ϭ/ a1Ev.7N;8 '4`NhÞ)x>0_ T{a͠(-Ԍ} R Hߐ;P2-`IKl|7ˀ0\ $_o:TG'CΎ11,F%9F WH4uB"5)e,(SHPY>WJGVNqKrOYaGfaK4 ADw'%}Ͳsi'3Q4WK dI$aqx$ \ck\|[v{"Υ^;$LWDݳ2C>+lpT:S{Ryo6yʗּ,{ dո- pJfD57wH5o*"3GؤDd/k"S/T'i~Mg*IT/7+]Vl+= f?v\xM8,E3 1Z9z` >BAn7 . ܊=^*b?XJx,>vk}j<T\*^k /)hRT[ts"\T6b* 7n({I%)> D1d 1q5_NFƵK)u=Z3HM Q,L ,?~\ϲLZ ΀^ -FeaktW`uk߅ 6 җ$סmr I EXީl.!Ig%kv9 B{ͭL{nd\!k6Q=hh㊤#/3~e*d\#F˰w 6Gcƺ )F4)Vci["Yd8ut~]Y1y9xNzN{#r~kw/ 1'(|%{7S̜y;].QĬԔ}Lr)gfjR]i珗;G9K@%wX{ vϳē5Do9a@"M vLrIʣ!ӁǠ9IўaIN}y/soҟA `4Y)HkOe_,F"]w7i|˴^ʜ`vHssTjgʯ jbeTPkB 赏 BV'vNuD#WI"U-J 5qnS?E^Ü/Ce_r-)ݓ_cLrq,aXbFa>O˃ A aC{vو-!A8'-M zSp5]xHy_mU@~J9h^O 1&_Cǭ:^pCjd^Q&SxpCϲ!\؍*IqsnۜdS247cy|zuRT\!س~o%CX cM9.#J$f!kel⒖'>|5 ynRC&jr>LGQ4H.IKI5)6TjMM/di*Gv@׊[ 畇E~D|/rАvb<OLAҸmFUZ~⤰$ }iz2{,?hļ]8 ȋ3)f*EYEC<c*=M=5rzCDnvO0DzUa&Rie=>7T~=hzر|45(ު{Wи{"93K7ȝwWTbܳ9/! (nMcX9-|yW]&$xf^S9[=^K QxAL'/70L}~ `;+HL◲ A8rb߈럗.KY;G(%pJ\1ؕ{Px4U Dby]=?Z&uOˌsY""DV'Q6 H8͈dO:W5&WSf4Z⡝ ,%@KaZ+}H91M8UVגJc~?lw:1וqk <9z[G% Ax`-mr~J;ēR=X ai^!hQ'#cl-UƧuƘϰ9ELeu~H?K ?Qq[cy. zz$Qq<#(3i}.?uJ?Zkf@}lIqT@ =.+؃p'I"rḶ: >N7j+7L5" i Dm/aA `}c-:%p:Ҍ\;(>H[MMA׫=k؀ʲ|hAlꎲ,Qh槐nj:ȠyM:Ź m~"մ`K5&WgCnh݂@{NVu[핓qAY VB{̺!6סXl>J0C}gxsH;"Y1kC6TlXB6=DvAZ/īHia"XG+P`!덺&jYP.o,j!&sZi  bdr`^c2T2yA󜕊 2 t8*@wl$X*zaPQqZ/Ǘo+UU6eBSvizϮb# bF-iaR!\ؗ`N*ǧIYyHJd  GĘ% ޸=) `6;NR]CIm g!jI8ޣ]TQ$B@A*4!%ӌ]WUhf;-_DQJJ}f-eDnkQ ij[HYnV|e Cz:.dJ1:Rm~;p6/hWau00,2zC\_ !mfaI[_5|SAK+:ܥ$ޛLX9 ҇Al<6ZX {MdtQĒCl\Bx#IF w9m1L~〕@]qL-T)=2P L DjbG)EZQqMcd~Abٔfq=, 톩&GU-,b{Ԕ+=pPrVOݔT_ܵO*! N?fyOt­WU< {M7&>dA5 ,[u8#/B02iZZD#Ǯ)NH)cH^F*)m (ػjF!Y+c`nflKhn zc҈-8f1_i}Ԏ ''(neb@ѽf~ u+T&8~n[ #n6ܺ0sFuh6\Yfa#<=((:YHOavKQ[OցBtD0[1s7Ȳ#?n>]I|ʆ94E!p/akr˰GB ?Rm5> ē]SC!2ANgL.UK&9Cj##{+ٕ=,a8?ԝhvɳNh]1 ;JnL ާRQk8c:\< ucOPaHo xbagNj|qgu+u8V4T=K336Ufl9鰇},2>9yкi+NwexӼFv`ߠ_ [%9ױ2*dR=iQ&}MbQ [4x{|~`6vLY$*Eo65Ba抺dkWB=&OZn; (\|XX"{ r '܍Q@`sNIkq Fv70ՠlλ84/ q:"~ëԘ^plfY4<#b46 KudzNj,BBke>)tM \kTQ,W9U<|5y)p[14"ff FHzX TmPرE=^P3 KUX3x a:YH<h:y j<~B@TwlHQ2q)g>1h}M&+z?Ӓ*)T WmYި۱1/z~ʠ59[1HP ѡ^Qmy) /aHՓ=3; O='0_ٞFUɝi4t ,u`Wk wיpMEgr.0XA!P:bK80yY=Ҽ-s9i&ȩL`̞_ivU7bx:/ _Ne~A]f]QT+^M)R9eJvrbnAG(U)?/X+<zd)4zTsJQJ.HwECC#RљqjiVݰi9#nγse"]rs'mm#Z}AzBk'᥍6IbA+=0k-\fR_R VV1R ېfҒ~ds+G,~n_Y)v3m18.p'@;l7x;> #p`}oڀI/>\kpn3^ m{ƁŽOnMY ېU2d^5!sMNr+o'~k`G-~ 1*P%`\'w؄9<`.ypZ8J1zQu_EASg6c) uM[ؽj=];Ƶ"-f5N?=v%vWٲҸ>? 5_Ԙ0T8(Zߜ~KAig)-zݭa9нU0 LdsI 8@Ӆ=OVH)0GELjBJ $ E|ǟj{Ӂf&>h -~Q0|&H@Y ap/^yVq} &O v(Vn KW;)T!/VWc-Xo& z]8P@ 4"7v;%q:%)@jݮҾ{`*#Swu \W5xK"E4U)u /u3pW ϹZfG `\3x ׭u L0* &n}<Ǿ~QβAzaP+eQ[AY5ߩEm1Z]n<e"n!T`+a%̀~%ϬujݗK!BkC%՚Oz_i՚ɓ[<Ҕ~G )Π,zn:MF .HʘEvt zNDŽ˓WzόRO&]B 4B&D^bB-#' @s!VEd]`tЀ+6\k!?;~xs=D/q8fc.(h 9xitP[P_ Ga<Q=G5+;pZFt򬎦?87cp. :C>r놮'$nL{FR gLRM؝!OOUDlˁf/?ӗSX2=)-]O56GeK)'ا$ <3E^*֓ O.v|Bms#Yrk~yyqИwod9xfn@YӇs9@xBA/b ݽ)ԳO\oH8]yw2dCIChڅժ{m<&L&2=r߰F&oٕgW'% V?V{6?SBd EeLe "Ymt<…z zYJ1+8/(-_ISK[y*4^SyD^@{U4<%ne6K/,mx0ħز< Hnỷ.p͘MqHîw.kԖ*^9f 5+3O{de3S$H'=.R:lJQpjB0YVE +a&O"7"BxrnjJyaʹLC5QLH'Ϲ7A,.̺CŻWicU䯀c:SjΒ{xDSo敓 *[@H:^_4&rQ(fqoꂯ,eI$:vzxwyD廖I5 9]Y ]zm8'ǬT| bhytn6!d1rT/)W3g S35kϱ9Qx̗DüsVU+%?6hL,QN G!o`:EɤO4~l5I)x3 &ʍ;{["%;Y1kr3wsS6!-[jC Ll&$ҭI f7n; >3u8_N1r?G8+^%S ,[<#]aNB#sYkc; uKfP-{L6sxQyR~r ED׬ R E',\f/[ r!{ߐM8{T/ \e/3H7%8C͇"%0edz-E¹ꡨƕߙmL bvBgˠH͟ħؽ1T:?~eL9xq jQwR n>vdZ% tõNhL4>[گt] )m TtPrYfʫy *.!U3/x񗨠>Pr(!菡Q>uu">mkp |pxKP^Ä6l.Qj{?:XV.DJ\Tbc&_1_Mp+g4s+ tݢrz4V uIQc%W+s!Qk{f ۏ/^ӎ5 at@ N* 7Gw˅oJ3ߘi3'&[p$iOt^WDX Mh:-w= PeqwS[x +OCVJmU[H ZǑ-  茐 yާ@)uWM5k9 ʹfr{8YHt+hD`-p@}xDuFz"gmT•z¥gA9@3(Rp awzG,^X7 r5ښlFEox;#Dn}~.+[Bdk|_I}ݻM8Qkq`I{I%oWaȂ9,ݑL >}taf5!no.~-dtsRq5b~AsjQEk?y7UD`vZn%lK`}Y}rA^~bp`v{fI*ѯQ_p8)+n.K](~B)Tyg>?AsL]Xc %6§nm|D;~=yaV:])r^jmc>f+sGOPtBӱ(<6\] K/5O,=y"J$,S#qwn.!=nV)ߢ*R9#dB,o$NiY%j ,m8J\GO 73$"T Hy120evT_t9+f4#61XQ0_\\ۋD?n|DN=I=oƛB5Wy[;? z2im)Stq3|uE+-YtkMBpDTB2Qn/3QFKbꓕZ+'X)qG',Dl_2Y.eHtOAKE !ȕ{p g̥ucʬ~Pj@.M3̾-hDrw{CWY1GD"tUTAM?vIn9W}D,.Iݱk!^EaXD:/Y`Γ1y@cMeQ[ 9n3#4yUM;fL(D6}L^o $UHt16}:{~I`K5wñ` @tR: ;ǴԤ%!u^LA1Ф FiI\ͯ }e?[JL 6ŕQl:jժ!qb;v(~)m@cO DBMF @*ۦ=~怛 a͂E“FaƬjZB(yZW(87z!j00<ůZr|Nȴ w2[x0OAd~7 E_]su) ّVK^.Q\=JHXY XhfV܍Go&AG!3'uW):cvaE+ztKϸ}+ |ѳ0)_PH59@L@؏1NPPImk\$Wl~ JdZ9v9. bPP@(R b~O{q\gYR$Ĝ מn7`PqZ<@]V|?DJ5?2}3$$K4isbTbTuSNIbl~kiiJ[{ +*n-7>cH5L 4_R }mg]4?iFt& bQ[Dkk ٕl !,bMaT| +B߇}㹫{wa*;d]\Oϙ$!5 vԯ=4҆ 656LOǑaz! W`^!?pI8ϒ\SCf@շPkg{w`Xc};"Jg]3>ـ R_B0Zѵžq.yfx-9Ԧȕzr=F|I~yiWk#"x=6X Q鋓^}{ߵb:Y NgBɏP%< )b77w[7mVsJ+ g]bO:Z~6=GvVd%U6~:UY}؜,0ҦRܜXz1u\LM3 ^wd9h1Nnp(H6gTcia!&Pɽn ]EQg3V +j:K)^w,%3+@r*;)_ϤR"GioNJgw[٭#JD 9h湁t ۬O9nl:f/Sx$3 [Ig2rRP o ]+dI_5k0Yԉ{q.p/7o/vɇ!'mEぱݗ+&wY]@fڙ9_p*ϪC>-g9ZsvtN 4nqE4lZ| 6^L?h */p $4ȿC*ߓBJ ]KkS*ϔaؖ+rt [m\D8ⓨ9Z'Yj+S[PMSjT f}0(,D#rb"V>lrIcUc=n*,F4?߿i{'ⰫSN(G (,v5XhO^0D@j,FuJPf5n`>QiWVA??&АچME(/`%'m09D);4A=9R:m{_qrg0 4#s׳bJńmIx#XIʥ(@S-}5Z]%!|؏CVa,`e =8ciiǟQIoKGlͯ-0j k4R9ފ F뉙v%z-ֈgy֙M^!M;Co0U4K#ehB4J:8ViM7%{9cpǥ7Ҏ&!ʼn/}Jk}->]F4`7]k5S7 { V;w50nlӑ H8+GDofŭxIkgWF j&ye?EMnQ\aRZhLBۮGǃEq~ dowءyZ-ǃRob͆my]RU42|uŴ!#(:"G@xNRWH`ix-ѹ'6$~MqX zNEM5D޲K=iA.q0/L=vaDEm|"8M (#k2["7IH~}Y`&sSX '1݂ W_q3=qc*y -[|*Դn wa}qItOGN]{rkB`a8Y46^w43Cg0\PD-U8̑'|_."y~f6u9ӜGzRF>H}TߞZ,^Ųg/ig=OQ׆%T""̫=V(3RfL2T~uCZ+fZ|+~hkSymd+#'Aj[~#ʪ濄ڃֵ.kghiI 6KP>I7e;z9x4qE91Ǣr Phfh$1)C:qäQASވ׷njjmVq6e=eU7 7+3F~&"|^UV+́zOi} (df@msqɺ { ۽"!^;t8O=R&BzB=E;մ"0才 %H% Ge4旃mFBoֵ4QJ?Ǥ'!rPaa&AbFuzTn]TԾ8;&O&ypb_oW!-2&ujiq B/.^Oo԰slӝB}vH/okD/PL:$k֞˝Rh#)dP5W94+IGT+py ހ6ETd92 Z-u2UX^(*^1P)m:[BhH 5fs\, DiÚ -G}$vsv"oY:btrj:c'϶͠^e10l>]5%t̥%)ձjbFh*y#825\Qv)^<і+o :d8/rarBT x/st{X)>8]1?ƥ}y<bu4$Ǡ IOfaO ~j3|>P6¦dX t.۲ Eg qLs,B4Y$VLy̟J$u}3yªJ[arTOj{u$@-g$.;؉W"1`F]cѽmipx7CGz┟m=ZpFDc4rU{D[㋉Pًpj1ew޶VZwOIu*-͂ЅpCWjC$ .Vw樱M7%pQP3Sg{Y?P)40k$O5 'k0na%4'˶qK?cS7 /4eR%s'% zh֩UgDncUՌO3n wyST! T#(I{y dI],B"fY鍝CN6hB6LثfZȀR4ik<6A&/ȥ4\0sp-i@;>R@z\YP鼒Q>Bq4ø9"UZ%.7Q k)>[2Ф &}TGrM8K5N ^nᬦEh-5hZ~~"0s_R1t܌r 9ՑM)4@")ۜtT؈a93Ӗ"hO㎖ }fa#^EH%?iq&Nw2^[dksI~LA WNZ1Tu/,bqFjQrJd `= 6;4N"R$X3kv:o]hB;i0I6(M "ARܢY Or&MH$H*kDՌ~z;obU}tQR;od!\/괡(&8ldûu5wE]l>?7 K~8gÍ9;&Lsd36L.+ЅA+/)X؀z +| TOXEhk萲`>*0Ax7}GkCIvkaqH*,]'|0Sq P'a0@'t4^%^H%S@FZNUk[fIl|@.B$&4b@P!quzn wr% j}qaۗ+ǤjZA-*,^n3B뒰K)a!hy 'A;5J=6h̺rUOr}c;92FR`*Z!JַFl̍=)O >^~(/M34pU Feߚax`Wi69 >mW4xqۗ<% J >ȷuJ) XDp]wup&{ -:, `ll% '|S]HEn1 ,}evZF"'K.~,֗ϪoXQIb)9Z4e܁*Q',pUFGLz~ c736% mQ:56,Jr*)q]0Zx\G"daaѵ_rg׫|Tw95\Pnj&#Y/ ./bWDg54D6/]}l`>˓r0Dcr5pQFߩמԖx &0Eoms~>>Y?UXAvB=X%=od}Ham1}$Qϵȵ}ˋP6.0dolGrd=MSD6m%Nj7,÷a#Åu 9?䥣sR( G3 M_싣Π (ɒ@NJc)t,XJ #\}"m@jR0jlׂ5Py]vx?)NmWA `yρxV"p"# ίVe>DG]{lkϘZN ++_,r 9fЍ¡tiĎdǩrwyeK^*K9H9_la(1{O 얈bQkaIB9s*+#ނFs(4wxiWhf%Y č$["wf}5~CڮZ߿РDiEJk@Dy WڣC;(fuо7=>N|f`6}x yς]V0</NTf}q&ZX;}mw֫}%QUse`7ݰ/r6j$iqPQ~!}ҢZ^Z!$(M/vxp`WO٘Y3p}x{>BvW!dt]gW槄5Hc,]3&5+46=%^;"Oqg0*@-4aVcwҚ}1"%JM4MiLc`` M ؿ19 n|8=T;%gY`VYXI,Mig(#!?72dj:}w ͕!*pUflda]hL(XTw AnAHs :f?N#Fsult9LEQ z/_ "_CؙJvė;a}ԁӭIA~eˉbmLB ꒔ۡsY)yW-읣kĵ4岕6kMRz>k3a#o7FOEz!n9+P8sӐu8 au;.u@/X'ljc K=8fPg&Ҡve,TnOė9UKotsa?F*a O*R7KQ W8Pm/_k#7]d0:fiQ6ZC `=['C;@iI [oaScDH- khfmbb"k3OMi7U8NhȒΌUy"ndF3Cy0x:~|v^v7%Cn1~t4"^W]㩷]Ɓl)|5Gc";6.!-NJ[ ]e@VTصL]YJz2_еBW2Q݂䃚)Y9@ RR(2:Ųct1%nI9TIzA`L|Xjg|rCN[$3jgҎ=w2!>oڃrxaNh:gz3D,-L֪Y5|8?@LVG`br]Qc 90R fG u]éMn򼽐vp#10V˸[@G h˕vQ駑? eK0"Iҵhȇ1Ȏח!zpx2#k\ȕPwX |%6iT$As&. sK^F.kkʀ Ozc`x}$~C+tݜceNE/la g@ =2RH)#C&)=7?f,q~xMEK \dXz # W/ѻBtwk فy韆5GU D^9%,V ):.ތ 4pvPo IAl.3HP|I5 RXWoU!leX e,|؅x C.\,kD3b%nHAed4V8: JG$fsh)A3ѝFHz|(Ir2[ە3^m/FUH=|T̰:>t6ijx-J)y m,CfVouŇ=9: <*0%|:!u!ȦîP kYg8} |o3m(kpB-1ᜫ"͵5z Q8j>K΁~vܾ4]ɗ?Qrg@bKE3wn52g"_5D覈vސ֝.4O1g:S?BU"T#(W ,RϰERI)Ǿǂ2Q鬰W7S0W6.=˨g`I.~IOHnL9ͅ 9q1w:o+NK=,XbRZXCkHAUc(/pV hzѬ`@+` Rry:a"%{&J\4]ouJxW69K|9@RBэv oTu9lv&uAvD3 w[ _2,+&9ɡbN_e `R88kv& r C q$hn J|"hoV})DDQ=V.#@oaM4k\@CELsZ%ʹ tNAvZN>NȨF,~ztτdz9roX+$Jq "rk$L=* UhdCm~](@YSDڳR;u&t#K[]3cvh)j1<-QF  [Lo#ȇ,b9F}˫& (Yԯ0ɚ5^|Ϣ<r*_k>x#v4)+!bݩ7LDyK/UA׌Mr:.+_)"{_6*!@3#u7sWͬ"9KJU8gCF3df쁬?(i a |z"ȴh+|HR/TEg ?[/rn>Q7hM|Q =i{kz##)w\*6ޛA:Ⱦ%&ajG18e!t_lZ2dx0[ i6Y6#u!KA d,۫&꾔xpFhN4MLcfߘ)Zk%9Z觷]_\Ep޿WyنbݽVl4J(\s(ZR̃T*4N1F u`QTxvp&0B?BUoy^pltGفں2]84duV'ʚ쾽<ABܳܶYQTnF^tL \bqp9f*yF$CU  0Uk?ؽ\ R ڲI2XB?{c'¬MjL`&^C^J# B[>`,aCts;Vz?_1IsMv5'r#+[0Ÿ#=#Cqo|\'(BC瑵>M| 86F_oi'(r>7t#GGL+9'\~CQHV$PilzEI7&"uR kc `^ ,R`O)@!P(KM-`IS*3]hJW1`Q!#^2}ie ٣aS7zp$օYjgӅ)e)aO%8`L粒2nnGZw aK؞ٷ)"Xr`w+UYDX8`Q%#ds\3[R< u+$8>b_o-`]:=wvuLʋۘrvS;bj_. :ںq@.c~FUcI> m}頳痋̯zM2 @Ы,2R[r%u8)(V x5SNZ2Ϡ<"כg“yqQ)U~&^~GήRJpWuj:2Z> kR)ΕډrAxFr}geJ0ٙvXd` tYHk6SאHRqF,ez?^ygYGu -0L?xY[Ո#\]'1(?5\~ ]nPFor 5*M][~3+tI/7֕Ts5R&W~#H.w,9+`FӢq B) D2. <(U:'TIC_oruSSq;P .UYvyRo',eNbd_ ;jnG_ NOoCIPϏwMFFFuP}4\OԀItZ\v^b˚sʹv$׵FAR_>{\MHזQ*oc, {`~/w d]a}q'k; 7'cA MH=).fm"-Iq tUƛt_B@%GE%F<^tЉ 8-+Įڵg^Z ` AY86YS4LOcu6n& ϋCDpͣMHINSE$[e7yí QtaP"M%N#K&|<0(*~)M^Ӌ'@ * Z1QSҧ;*~B]G x@@SW60@0Ҋ웕EX2Fq$] 'JA' 8RK6%QR("c{~S}5ND}5 UN VzJϙ24fEqfNTAq7[~!F1U6s_J)ngi1V}a|;=$+0zA-%)G}&6Zs@W! 5uV^4P;a^4@91UtE Y k֕KS7N^00ޣg*\S~_74r0Et|IÌ_9&qaL}:[>͓V6bzcDS& Lآ_Kp7r<^!W9 r6J{]5ƒHe_ HmeZQWL(X44h/$ m6q5/)Y0J4NW]L" PAU?PHkdsXf_c[΂A #:5bLw?yob먨*Sٿƪo-iήl%~2i ;) zۦ@ݔh0:` N g-%}9$NAL >w1aMhKCq~~X28{_)2?,\z՞)ZyrY?M[{E=KLOTU7GcYfs g2Ȍ.]p;~W > ˔zYs,|7rvѠ/)f& B5;sW]KC/)RQG Zh(Rdwo+ lȎ7 t?\_>{ڮ,t4S8J5 ?N3eVqv}b7C6 R BL !l'Jl٭؛֥* dD>&_ը WKuKg@ɾNLRu%M@=b[WX#gIvaD#$"E've95Sz~c.:YII(\?$0_DcD:8;)+*2v!>gad3nqbl{>PB#w*b\ iW"ѭHʳ3 ‡&F> hPD{GҢj~YMĹڇOt l,*\r*1*-$hbS; vo, unw`fۚP.P'jYHņB[{=%A&ݧo[t}S=$k8 ΥZ3zKbUOTIx=&=̮R%łˆs֯dIq8#N>T^Ң\Am"?.SoMѤV8Wc[If k"g;gI9&0qw28շI9Q8EI@T÷_=gM{"y;q^y/(\Ezeݍ#J wvz@k((DU`XȩoTk **/8C/dbZO%2XZاJKmO9Uͦ p>SI. -#L`ln|9hnb_ZA˾( yc{:(pPMV Ҙ6Ҥ% SnE7uПku,9KA\ㆎvAuc -c#rOZGBi<*?=Le_nu[ B)*ľ8g^8>r舘rRbv(~Z x,a;b6_7wEKg{X nl/؛_UCh r>FǘVOC2t| PRE@<]tGi^o毉!$StjTm/6XBGOb1d1wųcGS$V~0'7c%Xuv9Plעea2QT04/F%^m?x;hiG߂G"~:oJG'G N)XGDm&[ .n[-&_<<w |3Fժ`qX"48vsLKlSXO&y)@(VbUQ`vgsȞ<=е_a+)9v:f;t 2qWDc(?X p*䀜N = 5l:b'@;=tG}Xc۹wTGeL!Nt9ao' RǷp7/3yz5K޽0-6qJS{G@2ݩ(`9GdE}?Cxf̓Er} `|cCn]d}7NUT1&첓r?4 l-M3!h-bzzd+8ds1jw `YٺRBp\,]v>Z>##XGDX3Zb4j_B{"U- @^b6o)$j1jO{SVt;FЌr %Dt~!ߓ;uND{{E]eN{ūjKr}eϛE_<{?_k~DGv qWr4 Vz#5F#%uZr/yWRF7U:/TzI]c;O45DtsuX4qF2z^ɯa[Ng'Cc L\n& P8;aQH~`~Lk5уt]2dA$u~B%SEvct!*001{/YR*V 3n c k2bGWzMs-I ~վYx!޼dO:A."Oo}G{Tտ(V!z((c4(F^4-TՓC! >o%{6d#1>hf$Gz9>d:C%[E<]viCFY)8I751"N,d4GcrI~IZ2}ImX A 6ﵸ4V )JϏc[_ [$fӓ G;A̼`5uCCգn ٓf;u`tuSkڰiŚXM&J5wCst¸E 9T),;320c4s9 ̫hw3!É!54yjq RS>_Ǜڝ Ow]`ԫ`9x{o=PT3)2lw>=4SE}s=xzE/(ݚ2T֓TԴo?/A]L;.Sh=gt-.pIe+Q9WɌXa U p2*^~[h|{|$}Weu.S1 #ƥ8cs!Q%ejF2/mTƮ Cf=$& 뤛8sRuhڪ+9yhvt_NK; UN.>@JE>4pe]鉥C3{x,M {; 8gd(yRͧԅ1NGSWߙ*<&jM%+4)\" '~}d0CD҉k;Rsaj /]Trm4A3M\xrME#uɾfS3 ŎyFW>?)D$w9 8Y-4= =BB|jYP@\d}%y)י ޏk!,, ƺszK"]zxa(l|٘@#FrGqEE;#UʹnV-ܨ{~g-/Ţ/F\7Pd7'fbmMǜNy&5iP6u<rXͭDyf]UkkzLT ճyE>1uVE(.(p%G,C]@w2iR]5EEul,"<@u҈MG0)3.,ʸ!,Cm5RRq2vb$yLO`_$Uz029I0 }זυ WZ&k d,[^Ftkɞ]an}'P(T1~RR{ԅV! y!ːBگ9bk7 l[p.ucxʼns%gپ^D3A"+H"q];"jcuԂ1­.܅v(I^)RѬWgwJyzAF ƒ߶;s7$c2n){ffc:E2!E/."$Fj{)ȥmj*c+lj =U 5w7XO=Ky&.,gi8ux$u n-kNXvC.nJ!ꙝפPBYߏܿ*fCJ߽eݴR^ ]uz?jf:a,R wg@ȳ408fްґVN4#|+s»ߗ[&v|6n2;78ShsB+o|}AQ!&r#~Pymaֈ$g7m;?ר4UkbMCՌEP6ªe?{›fHY仱Xgy3OP@PsNDh2Nq%8oO\ 6.)]VjzQءC6 "RphѴ/6#}y,⪄߻\ ҩ%g1| "PŃ:c Ibx}2t5 ;+-M^=8kO 9w]x gxɫzE*ArHU"҅U3,1k XĎ FdfjUߡ,U16>nA%0͕=i&>eQq5ˉԳp^ʧޯD!"?^{g^D74VU6)ϰi4%*e@{b˗"Zݨb4ǎ;I^6@u|D!V  h2E 'h{(#Sto.CJ4P(GY,`Ab-l6-*]6Jheû흋SzS6Fo8*'뛥ja&y4D*g M#i/G?4M8 + lhs{&2f}ICuET! ^KSKζXBMHIўD!ϱM 8h@ a&斔 ?~^ w@+S &&,K -SN6lԯ`mLJ\;4\j5QzkdXga=ܝ\ZUHsJ^̷tQKdsZ|/CɶyX[ &j&SsR2.J,VޓKs W=pqCbUv/&nC wqC_[;S:3Le{f?f $(GB*`尖٢ ɆeX#\r>AדAyvaXli-]O(.j t\#hQIcb.RouZ(f/}Rȧ*`?'b@Nѷg#bTڬZ)>j'É'A FtH^#vkh{/crEp`⾼ APG,XOSc'Ò & 7tĦ.n*fGne6d&ٶ-`⎼:ˬXn+ysanП+ D;nj }eؤ.2:$hK<Խk{V/+qhZ%wpcZ&+#ypuVŒX]{3jXBEqqU(G#OI0S6)Մ3 N"[?K2Fs(Lmpya)@Q\S@*FZ A>jST,3/픸8c4̙ cͅn>s'-a;w W9ե wh(`:sUee tTˍ-A*˿sWM BIC*~G8:_죴Q|Ӽ4V\&;]c)͏v6mHCJQC; 2a{&>lZ7T<{ A: ں"P;@րGy-22Č/#< _7sPy%^C0 z4܏' @ ce1``.R3Jsv5_e9嘹6L ȯo {¢Hq0d>i#d4`?ADZi'm#&j ɱT 0/Y@m DC̬HX`6nd3E"mxb]9a$}FbT7R׵ U eƢUocnOC! i3qSP jr{Q..J9FhwfG*`śE;+_uMy@0ɦAv,r T6'R/8dN=$CU;ar^$wY"vJfdRN/{uUs1a1}8(m\gB:~6'VsC}|ξ~It[ h%r/;dKZWo>K߮p:jsIc怏fx Z Q?s+{sap$7!Ȟ4APyrbT$|jd_\ 4Uvʡ ^oc :^0E?m EYq(,aGa sIv%,?eS'~˕ǜ`ya[ˑlN"a"3u71G4zfHNO@tAEE -yi}Enܓ0`Q'B xG FWۉ6ԕ7"Oy}Yy+26WwG*~e#:T"gEY nJ7%RvDi_ՆY(9|R%6 x5/t0 [Yj r'y feAeц x+8`mòhʾv%5PhڡdV7rl` ȩ%"6=J~ 6:`8{H5bc*?kseP&[wlSq3KEvTI* T'4@cN}6 1s ]q/: )p4#)9%«FlѪ %NڰdÓiF"=o sIL6M3@9Ixg"w8B1yo3xdLɚ>}j␢6tC)oA;6 WA=)( b[qyR&_eS)<sg2Mte$fTa'Ңr;: f~b%Ī(*~ې,Y*XxK}|%#ҔS8;ӱ\( X7tJuп(Ysऩ[X9@O>6`e%ے(8ӟتP@/ߔLhv7è"6$OAi98}9e&+A;5r$%]y5ć]Y^z`|\/ZQ1Ww>%PM=6yΖ08li #jLsY\#w2-pJozXf'ͻ-Q!#U Lе w勉G(9䕯;Yd)/AGV y+x 0D(wx\-dK>BgͻES a`'ЪXHO߽ _uZl4m(ޏgjml,j_*v˰p~/ua4:GZ}FR'-O+IpT!S$JY-p-+y_wiX WŹc'hя~ƞ-ۤ3Qb$HB)NԄ0ve -TԗIFHQ9zftzĚM .fw 2I 9 Q%h2TUh7ru5&yza=s@cOt]!4 psB5pKh!SsjghD."J3ץw(Gn=>\` Ǝ>hazNMzܐU5 eDR) +smU4Byay5˳h 7:t#$Z5F.2oYc@?4gi •!Sr F.lxǢ=jP%xU(޵MtXm jd֯ 9_Ց¶V҄+'̲;QK5Md*"hdwH*b^䵃t5؂ZI3MfO>C^\Մr0h¾ jfC"aZW"Vmh#YnciGdzƇ"g T\aL!OAVrG&H}*"@y9b@$H{mEdZ40Ӓ2zOˮyTw3Ee8,3Z(@Gg qKy] L,UWa͝@&;%O+&sw`xlw96Za3c5{Em!%q +HƠ& w niK)SiNCCBS]߉]JDZIoudu,pRoDa9Vl~ #-ץcBLe=Ⅳ^Kuέd}uVZ|#=DN.ccln+'Z$5ŒVKxX/^үThԱ$½ P\4yTiHf(a5)'.K== 7rY5{- cU_W_{~KJSVVL݂`sO\/9>KcUz H we<Ѩa*WAq1!CctYzyyq1V?l v|o]O:$hq$ere7q?-= 6*[ƯTk!o$HVk;sdpkNQf{Q(f? \> ߍ~ȁYr 1~k'(|5}V}]z%4yb!ݘ/淾 ZV%Vgg͂岿aAתLB^-DG([LmItol0æ̑NhNRz9:N.N̯Ut`Sz3iեӥOC#a >@t7J^P+U0:cPzo1aCVSr4>;54KUa jl*KH sVj:-ְ}\>;K[ o*Ox8dxGe܊B_CԊ'g#ٰ,y},B\\9B(i[gaH/PT!V:#Ɓ,rAuևU]ŗ`q;G@FP'.rպmękgУV39UijAǤcB7*8@}=Կn+|[d;T,*(?qŕODzyDKOSBqMM'یISJO[A:WMj^0Z~C>9#?< -AC񳻁M ӛ ’s'F;{3'~ߔ0č2ʈ%('o 7CwŲSdכ?r~ɉLz(RJMmxg`:dukH?0x^ѱoCjTvḢAln=ð2+rO슉v]DL2}0 Tir\絆 )'ZHo[U"6&']+! 5_`%G"1Ad7?-CApGȍDh@1l2SN T,].6 q*{tv~V4Wv_C@-^ $aX-I-1Ӷ*0o&3'&IF~_n6xݣX|.R %Aۏ{wy΅(Q mQDyYWk0g-Id3UVrBח_" LbyP uٵ,Qʝ{;=b*&47nzӳcKJoXтăNV(k׏XnZMggBD ۚvϠwޖvLXNPv\xHz4}\z/.p+V*69,_7&q(R׳Yj(򕠾Hb $$ٓMe_ Z߉g(+ q@cB j5t~_?/[SpL5Has\^-1yp[#%ʧ\|jyV-w~*NrrW|ȭ-`-ʇ.n 6*`p^T<\\?R&ӯX'|s_ ;9ʗ7pEBeDHzg@u`q$No<˚Ohz9bߚ\:u ؍ftC{6="X>mgV"\} 6)_DWL@[am!;N]Oל"rM4Wړ`&k)ʸ7Nt_7Hc%]yr~꧕w"PyƭY9wWn(#W :"j=*#s]T!0CȦ304Ak^|=Ӌ$Og!F4ld>aџvno7qCeg?9KA^@BI[BeU#F3x,z#Qː_QC/& ĺHNt. ߘ\dxX=P:a_.2*nnX_i⋟4 Dmԧ,"D.fVΎ.U ojuE As:e7u'qFM CMx5b-2yC3f}½*䪽K=oA/}ʹtBbV{>kTxF31qܪ/W"j q̯>_4 +|fIVKD$$P'ܺ3.-`m>{*q=ZYN@`σkL Nr;Dg }=%Xeɱe6kWVy nPJ2 [C븯+1u\qGN'JYCƧ}ў^]Zh:lN83|h;b| LڅuaC* "ݾ'l5E~W ;zs CBk\M9$DWU—0 >r?M =:FD H-Hw)NhU|Z&l(KD&ZrdٿF̺oSPj~ 9YaCDP|lQG+1q|f5*Q6߯i Q@UOi95I"&Nzڪ>Raw8cw&C^ o+WIM*wT_F{⍈F/AlcwJn 1çt2o x<7iJϝg ϥ)+f V45s"\xȕ @8 HL+K`!n'-Cf8=8d gYB3(u~KtLYdXMo${({sxhl/Zfo C+"aYTBݕF Tqk?E1jTVh.4j<_%1Ant%)pZrRT&觬dpӎ.hż3JHjZP-K6(ˏ o%?EbU⨼ uc|Y{( E[A?$lN[#xRej^uW1jiƑA1⴬odp"SBKh' @[0E|N163ŔU+ gi]rfݛtnM < kÚm o;>ç4xVj!ZJx.u0%L8Hh~' jlfmɯ*;3J_9uC:" G P2x,9E;WYrֵS4_Ly3{ʉ!L-QLq멳=ۜwשA)W;&թp2 PQ[]h4TL&#Y mX.w$9a§X#˽ y%Ylqt xW .Vׅ5^-ӫݘ1%e*ɭ5 A7{LC?A\p$||ur GHwvJOQ A4 ;SC,>4^k2 ve5=aiNu( k3mScH/9 EE[n w'pkLi0,IGe4&yi C{z4;˳4&6JߑpԬTo-YVo w3'>$3ϮDjA*s֟ݖwmىBF4))aGz;wkQk!~Y=OVZ.mZ#;Js%Ma{FFh.U{#voB`F]@_šzRw2<15٠չߋ3x\|c->͖Z#mtry֠2ɥn1pNޱ|L\\[|I(DC6u00R Fm-kLU7@[⨎D[vy5?YOpwٓLjl8TnHj*^ට*Ƽ߿$rų D nTC-L3ἃ%lo5t2jT 3"pV|Q_l}"_Wsk_0$*֢LDxd!%Ѕt,.W} uzZ>.ZHf*0OH @@i>RŸ4QOfZ;zMV +'9):ݘ~VK;B " "usZF& v-$;Q _t3 :TY>Ls|2T)l$ ݰdAP^| hPۣ@Ew80s1d)LSںUZԏEBJ(LSLm BCHt)&hTUV(ԗ#7c?mK (u%A~4==рy׋*(PLDlоqVV:üR F<9vY@B {ϦJtFMƤsud XtԽ;F((8%H ,뱫wbcgӂ?)=@bG\H5- ]B#\ln q!orG 0T4jO?4}|f(E֙)_{<[K!cH?qmoEvK9HN"ēj>_RԚ;BE<ʅs\OBQVI0NjzV\>v%!]ޯ( FցBij߰Η'HGj"/l_7%[QY]Ua/p.tUiy3{-/&=yU{nG,U394gq]4/f[-`=x[ҵXls E jxkdՔqFY?,~c!b0p0 a5>sҜ2҉iqurp;#d^e_ḳ{~~efXB6p 9pʱ7?&8iT^z9$™$:7cCGS|}/^A-+8}D ס}5]Q֨ yU Z$;b~..ȡKnƭj,kh0Cc NkR\+#Y%hXd>`^m&u !%+NQ3my&"; _އR^8#)+% V]8R?sH3۰!E5;)ue)U1c8o|TU+1M(\ݕ{B5}?qldcr^$,kզ麘^.p&% ǭvu" e'ø?OUxawUKxVp*9O2lYKLy@q(-VM3wʼn4Gȫu<>tnh1`G:W<[csVYUL7ZerŵiJǪ#d+ yR`!9yԬ`$I! h~1%H-(Pd_gK{!m긙m2LIk\ď$I*" \v+n'"|Ti'x_V,EOV0s[9_H,51aeS<݌MbSp[>>RzT32^&i+MԦМE+/KVnktMsJkI,oa=cMu{yDC{H U*jNfyŒkJf_{D/| N)ޘ4ȲaoM쏐eKl 78Fߥ Ă+]9M`A*ݹNҶ#(+>-AZZ!YH |A*Jx#LՋц}gOuaQ;jlo 7۴FDHGGJqe7Qy5L+X. (nͣ,kv!%,=N'OGot\s0D;[`SŸ<ܱ`G鱹aKZ0bǗ>vmm̱Ts\3ъ#`b8z^F^QrQsn.pLZx|9 ̦ר~<ž )'DLdVNuv<~L)t] NV:ĝB}m&VB>."Ŝ]S[ȫ0 !;_1rq굇X3(KT~`s*;b gbԹ4+9bՇsvsD$0{O}.{Ӯi8qb^͌x6u05]Ό"*x5}DheUi]'?E$L@K*= yFԦr ؐ }1 7|+j AoVHno@EWxta Ug&F'[52s̑+6dBƫ;hn⅌N-{f߁΁qB$$ +*tN:AQ2Ƃ KtD~P4dK.ה j>PdkZUctm`AsVu#cNp_#u&NcCꦛHNSYJmX $)WRya`[1 >W4J(v;'Ig(=\()@짳ʐb1sP RCnPZ؋G-^MX|p'?寞 ,Hzw$œG}0\2pvWJ`ML[@[U[]˝-W _axpx[LxQQ% W]@by<-%nou$]5x?K*7Qc=ՔNs>+K ԑH锲LZ&|+}u/$- ^ss{ dɾFu[kN?ݦ)%x^?3J_0 +4r50MiِN!$7 ѩҲڞL25y_9YK-Rs3:_/G]*TmQe&{ζvpeȌw%S$Cs.ӽ[թzr`)6ۢTu[zW7}-x.QWpH2Iy_$Sr C45N4$x_tpfSKhjƮb{(VѝY0B a*'Jc0(b"55⥾CztUlStT%4]HYˣHzt.och j,Ŭ~jt1rpg(a&[IV@N~̚8:NRfV![g&f:-la0?{tE14er̄úv7<A,{]̴֭[@H(w ḥ,칳D+y`RۓSP$x&9(/=vv&Z'aD_q,e!o{goH';-OixDFm䫺5ߜ0^l 5h.$2BT.x#e5G"0 J^'׳xnΤzE"yqbZgsRTęgDd[8c:}Wܳyx<,JLI<K*^Țy)<Ͽp ?O&e/vΡNۙNT`{qu#Z)bTQ8y[\z22Z5퐅O!= ,u(<<3!}pJsEOdڜ\' rd kC<#M!\ZYOs#}Vv ,BP~x&ȉ{/i.׶.Z|/(%J~nmx z^)7`PPEgg\ALYgYczAHhOQXi^D="eAt%t['6.^ / $PLl؛31BH %K *(\NIJ 0ѹρ ڗG &ӌE<\'iŽw`=3)V7k*@ARC3"+bW 8vɠeUq3ۉ,\|{ Nx$F㛹l< lNYNH /i6$$Wsw'kOT),!&5]P':fP~xcQ0U{Se3z#GZc|˳?T\)v#㤐` wrհ̡w"&ɷP:ǾmsZ%zb[Fœ4k!pEZo&n$Bx>̷~$UJoBr %"* ~H_`l1#A189^|}pHBJ{&^53TS%b7 hBSbS:OU<ٰFa~ϴ[ -rAPHY"Nja\7U!ԭXRvCNml _$jiAo;mn*N[x7`)3;T(FRi@#[7R9x0H)Ia2DvQ0$ t2 Jwcuǃ+6v[UYAfy<:}Vw`&.~:98\~p[?yAn7<=>AL- ;NDCw?8>G0Dqx<:;wG3ma$KJhzO]J1,7ߔV0Ka#o&ݩeEaR.8| *fEz=JqKy1&0>xԖ'3J! iu{ƻɻ +v\PGv-cs:K ȡŽ|Rʱ <`5RˮEC$ {I8n ,(Jh*VVSrTeu@M`f2`^T!A^oxN;u'(MF/ɎvH#hRPcz<KJ8cX&M`"F~AGkj}˔3 g@[,"N:91%A+=LJ vb88ɪ#S'CƳi]b/HBmZꚟSw沚E.pN&d2qTKoםSa|P> >c39R}.`|}}Fw< C̼$6XܡGΝ}-E] $+zl ''"➮s.#(Yششգ1LIl0J Gas:/Vv,<Ҝ?o/(F ۨ2Nx½ꄲ[P`\&)V)ۃ_)&Jʮ:"=6ܚGtۂH5MHyQFK0ٜ1W zDحĞ=+rzg|Nцq2P lkj&f65>7 D)mlזn<ΤyW}\ěVuih1D,RTRBfRMf!E^έvBFDڥ|1YB.D > 蓉Ƽ#(j*f$ٷLȣqjz-zhɃ{xuwYI̷PfۦɪjShrw6HCeɧ1 MxLr!U H^˵O0Ik:0t!y3I]!L0| c.ߧl6]<&]k[yԉ P"= ~ D&>Ȫ$N~=+nD׼HDZt,>ev >lqJQMZ1MĪuumiʭ>٪DQʕq@"IӰ[ZtL @ f#xbjB"rӊ2 JgJk=%vFNz3t[g" *rZ7Gp,4MD~x4J !(dx+^3/T * Yo,)F$8ћxpVV :?ksGZB 2# .uSLb|+Jv0aYЮSin͏U@NuT;s8DYk/H2ڟe  S4ͫɾF&W^?@d;*|A*<i^;UU.$ma#_rt=@IiMje "nz$Ibs \Nj6!z}uHElB2ωxK@D/|Daʸ czU,پ]2\'{H\_n-/VOۈL 6=.2$bW~sڼ,m)"NGltJ@ -?j=>Ubͩu]Xt9`'؎|Dsi|*I\n0Z5.r N,Iݑ:nYI6'!P`.O9ȵAy$hA!$ʻAwM׳&b9>!7RJޏh(AJh&+ FUUSP*5&jSyҹFǺ {_/kObܣ ޚa{Fm/(w-Ld8PeZ/O#NB,uwHw-LďFbZF&[/ lucv!XxN =W(d>툅o|ǨErUSv"mq)+G'ÝnEc:lw.[dVkڪ԰~&VwtaL""SvX>N"DH[wΎYD #Eϐ@[S}]iÝ9B[_oeꮿ#ϭ{Oӷ 1sAehqgA'Iijv f$e1Ғ4ЍH+(Е?_lL1mt`j +@ęlk +$2 =Sz[یj}\^J <:!3乖q[g 1?R}(\żL{GuBX]Q+ȞRDD@~),GMnsYpTUxx$]kY2 A]q׈^7 יS+h0ۡ8R;[XzSΦ K $y/E:l)߃@+6MH+K^D=_2?ٖpkӷe',)P3sqnޘl"9VlL4\`Nf oX)L@e;\#ݯXqx]XAc[I{i 7V,mi?E#?# oi OQȿ~{岳TQw1K}Yd?(s`HxWsZ@8H8Ᲊ.74CN8;|i1R3;ґߋ.}VX1c-]%DѬFTA#O3YnK? *M#}jJ"Su=ׁ4S‘7/87b-耒y|hҍ&YBj&Nfތ/* +qW#6kuy[,/(+Ҫ޻wG,3 FJ~e78 ŃS]^VU>Bj^! ƫ3TV Q4-K 2 ]XG^ԩۻl}?PC }h_7x5d mO{I@ю,ӱQ*: hY`b1 2QdyJv%o?Lɭs7OɂrHvٷ`k]ha59Q>-t3_se  |%V>(`jF⍏5ZҀz[06=OadD'Os'$ bt=׺w7s/a3 yJ,cG*§T LY%*\괱F޹B|]T,ҧ-kx)8EUÙTu{yr}w\ a9 ꬊyÇPZD:; m0Cs7x1R^q !sYAFOϼhṫm7"Ҍyhз# Hw[V7kN ]*\PzR-R^˹Xh^xoڅ_Ҩ[c/\NL!q;"thS McK95%t-KL׻uRD E)fURtXCu"i374|<-#DGGg1RQb+y"@bTSUjM$ }tu~D67Ǩ'3FUA3 *$nǣac"L- j86t]$|A)B{kȅP01yM p_щSP A \2+IoP6K1Du5,l"PR_^8ZFa1f:Zc /1-/*{K u<p:\aӋ%P:Yt'{Biad"W3S8+8UBz9,E9ybͬX&MR!rs-StX8Q^1 iK==i`R|yf.m/~֖:A=GQ H$"A}z@$ րxgb"ޓ56< ՞Cѡyғ.Ƭjtu)l+7LǷ"@ѵ l4d'v,T|79nR6SpA%,naU_@ӵF?`}H|D|fheUQ.QP 2XVP[%p0pSN@#F/M9W-&xq}4%QwM4ŘY0"ׄ=7+檒 fʇ>S-7d wI^XxA*X|œի+F&,5we DN6 PB R8L&,xFd0cNv0ǁ@Ѳ<8~q{}i2JXSTUK HvqĎ.\$N-e44 o5XC-,Ӑ+C B22׹[NC{)dE]:Ob,jPu&96E_a$3lE``0SS+pX[7p^Hw0Mhk)^a+T Q+ FeC0ы}{#?w TbVȮ)+`?߾sk mhwNk8DžmUqo.(tKT1$]11\L\M=P#& &gv3|KvM)`9:V[rtY.!X&y׍~uH!(=*輷9p}BX= R?} YѮ65H}w_3NRgvbހ$[H139m &f擃]uJi 8:o&s7`7/p{'[zTB{,`q 8,5>ij*Ցgρ:\,Ve?&Ea"~%-$o Uf8{G.v"2&iqL g܅cΕL+ZV8V XTԉ)FB>9+Sҫ^U1,̾$@=! ='"(/תǤSO} t]dUvb1jbޛScv.{Յ.96Ljw R` Rm0al -sE0oi1?5)) Ľ(;b4N0d +1G& ?0/Y0\ՖRsxJ.ұ|:4$uQG$\NFDN88 -QӅA+PVܸ/QiZ`maL4-uNpO$~N5%ځ-!nU:P̬Q~ZhT:AsP q79gQ8O|3 *9Ѳ.]4gZ"=01)bRX+ i³\ 'v $R~`I4;=NdX[Jd3ȭl:"yM¿&qqR8pTj\?5SyHWڋ$bc[);B*|@AMeؿ`ۘY|%%L84jپ@h \^?h|ͷҼ6fmf:A5z:zUd]qکncn!zw\5_^t $wB>g2Qeڿ|6;sѺXKgn 4ֺ7e%XQB{6Dzۑl ueCG^@ฏԪoiEϯ%i@,Ċ[KA$cEЀ uT74N*^`?:0|ea/ps9pcJu6CzB:jZWkDI"g%T0s/1hrBc+!HzcU\t]4o` 5PP3T1n.4RZ>8- z #'m JKR2ؗV}5U2 X,\Rep14-%St[z'}w}~@(V|?j+ qfc᛾OgJ`jEzřq_~n?W%+ؐ%]OSYNќGf2ξy 0N,:=Gʧ7[;*Rs?l٩1wt4!lL葨 \$jZjևqE74—l4ٶ#;aޗ~{ms5󿾑1vUl)g\ 0D#́ћﲣ:cN/ʅ$D\Inu|3,S sO7ęƷkM{HY}`8޴Z郷ofa"&&0dG iɶb \YG$S}0Ld +9Z~L2_ƚEP>P\k>t<#k6 x膇F,-]٘]߆ +%eAL9>??G2_٦( Bw]Y-ѷFztOZɱmb@ǐxw_^Wi1ti.xy|_K(oŔ]BNnz9 sK#9#-!C (: /Q[-s~byݱ8**;(82:fyVbQciثf܊0y}|![ls^7nAR+-4^ao+ ? u,7.#Dz#gh1g%`6yq' v4ٰtkt.hOZOؒYcx3'ɝ?n ~5faOjL/A_)!^xX%R̈HZTXY B/i0rW[s -.!# 'Ñ~(wz7 }TTdbDppuNؑ=՞}8@C[Ʒ?r€kݽsU RRNࢅ„`}(,WlvZ $80'dm1"gzoam=fJpm"KOZ ºx2Y%S08\\U ֬+1'\}iAH>Oo db~ٲăOnɖg\d>]AzIO&eޤ͙q7dݿb/GS\xYNN&eN|*-VxB*Mlue6n<=z&VK)iYQ.](1uxcV`#inE6Ƕ:7 )++V*'ur>|PNP734xpkzJxdG.mOs[k) O6-$ouKDA=w#] N8ɜ-YV8;ܪqJeP(.o0~.DI@0i <0Ȗe#7?:A2ZJ[MMءgeٮ’S 7\ze,6RNš2%%s4U3R핦` lnG7$齻JEhWBl2w~f_C.aaw|SξI _TysYs&Ui1OせdrJP15LNrHǖ: (JwNSD[M*M80FKc'{a&8q/~Z&4c *Cʞ>g5"{I%)Fi[Fgđ>}8j#7b/0RnUˤGΖp9YFO!9#\m9\1[PIRwyXٸii E k~!Y3ì*;>TAES,>3WURWtc@M{y>8aĔA_V)Uk@#͏ W**A,Ih ض=XtivM=}!w~d97oZ%@*zN Fc uMAD}xTßdvrzy-Q0}?//zo;E;4Tnm8@\]MN(>(q%lEh!|-lc+gڒ.o]7Hbƴ%)$<ˎ0H,`k"CXV~޿OYq5dUKb{PHwܐlWv퐳I84H^L7e1-)>qi1C $_`nմrbo hvcfH5.I qfMsre^7tkϴsӤ@560&׮4:k2j(%9`uU8J8ԟpIU9s Yr#jj.sږ_#-+Wލ{xOJwY1|{,f\tv/hx^4IѾMc4R.BW+V{xŹ A 9u WK[nop/ouͶw2܏o?b̴f *f{*lbb~@;(v[@01{~2csU.^|H9NhLdOX {L}qMZSS|Ep8eSzsSe$;j*+&TZxDα7E'3hmd7)R#GbIiі2##ő#Ϋ'v=Ư {U8< ~fGk#;+,sfdW40@^hrq`}P89tΏah 0z**i>C~ZDљe5U,<6PEi .⾓,iN<]:6 \R"#O4Aw%dyծ_XX:%{v-EF5mgcDD2J* צ՚J9JHW$fl>k )7zrP~9Um"J-1ts2: yTM_v/Pt ZiKV#9a'  @vJKuh j%~O _mFZDb=de玔E֫O4/up4+;Cw|`y'#UAY4< N;*q}&7+ea?υ8Zɯn8ʋ;lTjyVGb*w5<3H(N[-Y9:,+2cUofІ "ۃBz:XyFXpLT7]P߀=bSS1{ОY#"?5(IH?YoyH܉ʱDS}>~,,^o48&L%'+ SZ Lrn|#-9tdZshPt.na=a4@&d)TD]_!n² 5-(c;{P+g?L훀ys_!)PyvDg4y>7uZ^%NщƿmU܁8Π_H.|$F\i&]I)WnId<+ℏcu0Ap6`8Dp4=vO*YX/5K6A,w\ hBB.FMڞMIk".!M 9^-p޽oKH>;R]kɳN9c(sW¼ $J\[H9˲:>.,ch_y&u4~yWrMpARWMSN2d0Ywo]o0">,\*XG2 +o\]]t4 v $'4a.2B2s)(S-h0X S @jROyMJ]hf"A'ry3 4-v,CQC66=F cEO# \JFHoo?>f9 1:IhZ5|[q8Cp8bn"=Kܵreƃ⦼\e%Ggzl\O<"jX뿜M _cP/PtYۆ+f1xw&ͯSY!ǹhJ&B5,QD|2$ΐ'߮: ~'K OblԌbGᆰ{O`'٢CR>7URO1q,:T zrL 4O'8C՛n0SU'Fwm Ozb"B4)Ư|0KG- B/zJ=((}6uEB>Zi쵇#h_Rd z| kKnz3.5DEgU"_Y<߅a>  8|F^T q{2Y3r/J&{3Gd\QFk.k^c&7;;b8%λP{8 {1JM rI;<[p5r{!t,OA+tDq9+:Ypc7I^*|6xr,ҕ&dHx$,I jwa3:l&FL3nbEz$0]r k~Jd^P%uhkޯe(ZmK-*ՏC1'V˼tnl Stg;gBʈ{OVpL'4f MMd,XÇx|M y|`_\ z%N?r ՉaFzRky!n,6F^*$L[/6˴M5nH`wDd@y"q"="RocAgx~OV,ZzBu:jٔTc)W4ŀ(SK lgG,o>:@>XB*/pP {}j׫|tl΍(ԗD%EĖEN<ޗ͠coތz{QQdi\X<șdgre6vuṅ*|6hheZ/ #/ѡ`|Xyb[w9\`Nω վx"ӧ엦/fdzXL-4(Xđq[<es&;ݶpo{;,ڋ̪ c;-uzD,!:P6tjPNJpnU肫 ZpĆ'j=ou ʆHq͋r,O9=FGSو"дR9ISNb6A)Qõc%HD H+6"L$16Ny#\c8+MrIIO*؏F D | hW}_GjyNQv}>Kz,>('X.Dz z$+ڎϡ;mXOYF; cʓIh2D@4'œ%Z)fˆиZW2 aTRٴݓ[/`n%YqFG݌#g`-ɡy,<P^VePLDp×-^"BڭBrK9&qch%^U_ߔF1W7|M@WX.`@܏OJi2 0kcYz |XA^8Mv8nq!7mrkgRS+i޷PkDh;1໱hw!jV "F>_P.ƳY;~3A߱,72f&d`sԹ_Иq_1E3NLs].>3ts /?&z Az  쒴jKH9ޭw#[ tu0@[(sivy2uoפ!'g^ V֙_`߂~4xAMתJ/R2|I^٬ v[ګ\!'nj8tG MYr;0fH 1TOc&:պ`CM),"^0SD$]FʶXYc;_8b?υYB[k=BǡUcm1kV7ƪOXo"H?MB`cJOfv c&7~p%R$@aۋ{D>wֶaE^܁밡OAl<,$/9ңӋ8B*|ͧuRiQPn,*I<8@k #If|v:EsŁ-aNb y{{-;GIҏ̤~'NiArQ%[<ׂچQ)M.!̳"扼wFVO$5D<ĕXEBm/I$PxЗ,Ai]Qoݸ=*Hzfo)=snZ !km<l>~k zyhQ:W\ 7!Vk--ؿ`7`Gݼd~?~]1CAT*ׂPv B߶HyA mW{Afo3 MxdID*$m;8sZ>uZbt^Gۇ3w3<N;!2"ʐ].6Eǿa#/eL@2;d\om:mx͘?ш|1.%Sǽ#3̅O! }.{mɪS3vfstXX}\HLƇ[px!Jl ZۑaX pIdЄEv.IH*Z\^ɽ8S\+_ˇB r-Vn4>,LwQy21 z9zod5RX5eM=1(6rHφ]y>cqզD7S3ǝW `IY{ 5Ga~'-?Dg5͑V0eЈ:^ M@?Lx%ϰdRRf׫@N@\!x-#ʱbüGiFSF*f "Oֹ(.DC#Pc})*|̐|z%Xf!G9EpF^1dߚFafϝ|#93w4-M,h#R#YJ( @jFS 7/˹O'N8~LDv6o;JZ"+X4UC{ĕ?#,)ؔm cLhػ^89e)8*3ew71ZE|M1Js*0u.{}v:qIރ EX#JN}ʱm6np 55(q58GbG8BF^'NsTSFLB-]$.10꧇*7yYaJwULa_xTr!9bČI|ü]=aӰ̵-"9 RʵE-wu0!Q~Mjl9sS Ng$\bmZvAD[gOS.[豗ԦU:@| ?`$m"w~3ДU ,AYY 9t_*0t3 tV wtsi5nfL~] ;?\-HiIBSN\Lj,ˑC]KmcYP˜.^J|} J2$ 5C{(3*7V/ڭѧe7ʑAI":"AR5b _&7zSVb#.:`hjsz Pf댡* T<zƬIX LOdwAD`EjS:Xo8NJ:ZMt!7'!QKJl)ebl`~qǓ+HE`0j'V>6@-hλߦ 7 O3ՙEl66 kۻŷW^ڃ`hح#=҉ lN̾񷽰K2 lK(U?oْ1[/E| xS[@p(?cv8-Q 4 >_f!/`ZIIҶ,+[>'kؖvdAy,W" APvu /DUbh2nb%x<,}`@W[ VGyo(31:0Mx2| wT~T7XV ў{6G}SXNaE$ܨ0FS?oR%7 RY>0rg$~w %"6F!*OoLCcADq*g |wGQKiaNn1'4GU"QQ>"ʆaN}HRUt2ѯsˬf'DYp=ۧzZU5=??_LgT'[=[6:!#,Aم"P IgA0ef fƛ)l qnέopo[,yj^KI YE*@/r7Vy;>,'<@ q(^#Z-Za{ 2~ȊTF^ *{6od1_=N"n  :Ȣ3|a @ZʣtD_gwq:ilDC| C0J%-k9(r6=YuGh@k`k18Ӻ̷.X|<[jAi(⚨ 2ˣPꀱ02ȓyԽJ:JKbr`'@']2[TmquΧ'2ArŃu,")8^6yw)RȺeh}G :PT䞙RՎ /-qB)j2L,׻ȧEH s!7nE-j ]BKj)~6WP'X\83] D6j2]){/Ʒ*!w.r-}ITy`R-{XRqiMg,׶WM;ֽAToH11u>a]t2 Y48@+L[)*R+v0je"=z,c ql\ypE涗[ܿΦ-O׊ߊQ-&;nW$5Rk*QE; ) / }Y,fU]y$ȸ+tXopNӯW// 3 ĠqA\b]9sb x9t'Uw>TcmcJ$x j/Xb*)$Soj*!' l~Ѭ]LTX(nJz198`MK15 /zmd%8˦9t -/5LHta=IHE:-)ɳ+@C)gm~b~xqg3KM-d۴%yt)5#^HP|H"|gF1$4h\'ERz4%C۵7N" U^[8bGe:GӍkg8(=f.T{s~+Iܖq>}|T0ޣ0p"k~#쫞<tv}s66zlq{R\,kD ƕ 8B~lI5%O &=sV[- f;~'o;iX-vfmc {n^X% գP|Mmil?,%bq.Y:x FuuPavu&kU8`8E ##68sbߠ1X@<zvGYm8|XvZ=Hi Eu"նSɥ64͵W֮٪kh#LIG' #Pd=I2QM;<5YF j p,I4-z;I&(ejF.pW\?m]fp?3(զ?("f虮|)G7A_IA=T ZΝ+ǰ a7Mٳ t xkQ1!gRx :\IU6`%)͑/O>B:0(*'&Uw9J) io7 V,țٳH`YB+6 ZL qJ< A2WC*3!.;:N $nTgDXQY*sx73l %^wlLHյrҗbŇG5Z(oAz?vA3]zRyۣ$gv놌$ۂЋ7ϵcr; թRߴ=N]QH!8BObAg#º_6rؽ߫ `Qys +׍?+Vmeh}˘r^yʳ i/dr|!|X_6sQBMqfʋ׶N4kK*TM4Qpq]*P07KM?bIC2*٣;f(d*noc$k\}icɂl~Q",:LYDYaqL#B{CXH=2(R/ Bqɷ[I >F%`Zu6!r#d;4߸\8J5㣵fV>u.(Bme\3IdJڴCn焯:w5M$,PI"oґgZ|ϕ,_df w }{s6hw`HE.Kl zmW!X@i#]E<4Ũs `ϢZA49=H#P5Ȧ_Ն:dr*B7-ٰ6ƎCcc ʚ( (3Zndb_KDg*.ldAxtd=:\uihʴ?ӭLll3ҳ[Q6 +X&TGI-G:Ug23ń?7hPj{~Y rTyB'i;g7(AB&BdznY=E6I6EM.Zj]sō*[xjp$\FhCORFѤS0H DoH)r∔ɸ' h, T^.8ʅzl%ms8{|%n)Z&jK8;]t_Bߓ릒"aƈ2n6V-.- _gW`0IJ˺C7\[`Hu\y}%xe(d?)UtȬŜ,䒋 g+q7rYוG"Y$ؚSfb=/q] h`m_揖`[+9tqT&æX wiI3w$Gsq ҋvo=c.}!bRm']FQ<Gb*wU{1NStKrT{sS]ч]{WI^:Rmm :Y<P{ 鉟)"&+(?.0?sUE)va{"A/V  <_c  7!8t##M=yf2j |}NJR$ziZy)_2.&ͷK=MLاMSvx#Qh*5I,k}S"ۈZ+AAw9 ֔qQ>OѢRhtjϏeQpA2&_oy:qD B-6 X PoRVݘDP|*w1a"جN_bko TkNKNFyQi3Q"Qwk[4W4qv G6@!U9"(mڠC~޷.Cds 6+攻 P!'=34g,7qM 1;ApXTu\vqkkė/`N l69"*G7Ps]Y)&֕U^`{S f =9CPnuhB;z6ݐI*{m/.. @x1*`sSHn`ObIi '52g"އ֞! mhV k?>ǔ4J':3޺I 4pνAԑH(O=F#9MsE̤?q2$PVl;Rw6NLJa@Z@3OGpY3C79نF7aG3 '@*xkj FEEDwJ2ã)|,br#Oݵo`K؟bKk PmA>.Q\`?1 eH}H.X]Ü8uص}哜f pb rI*qVgc<擇;ie!5-Y&s?|(TҎVULMP] fHݫ~[$nbrĂ|"ooK\F\0s (3O2MNbHjIFߢ<^aR?eUYUwj&84pLCS²Jņ%!*V7kz8,=8M )"<쳢\r@JGՁvzk{PcHxcJ}Iu TJ\-4 PskCP] v yqoZDpzp:S= )ɀm}m~OYߺM CIV'q ;,jSɆ]Ϳ99`Ptb&@RC:oFH=X*U%7fF Ʃ8<(|&:Y$#981x4.F <>$~~M.L!o{Gl,Nwջל, mUWUK QT"3b t-v/n0N K[ ڲX>U9ufRMmCәt$:m 3oq>2F\͕hmn8]ꏏURޥJmz׺e(袦+Zь8el.!W:&f쓊u4Z-h6%T}WO>WzqkY<ў G $&J&)\Dc+RZpZUw+ 0эqGғ> 2`-|L%|Ǣ/τ+^lAhg Yp%,7Z?>m-lL{߻GM#YH|MӮMu&< $,Z5y nӼsA7 }OqI>?] GGɷ73d3:^!"8V'  _K&GDE[J:3b.!M&+~$|W%֍x9@n\0]z)s8NUɿV(>SŠo"@:+E)?6UJ`)e) Z4m|Ig%/#c'RH+@m_aK +o& j? ZXygx2zA}H "aQ=Mvd% $$쯝~tZQt0 Vw_<'熯KGX Z X;PH_Æ|;B@LmQK.H':Y%ֳTŝ}^.BUЌ_1R$wQc4%1p hi>څ>K!7cLhq5:5D\S>֚x[d\g[½4dBt #J0q¦;9RL>& կcO9ѥYCʹ8ن?^.{y7\xgDB h͏#sp6!ttw?x{^Ǥ`<[şL$>Ĺs :)lkwqa6 k.DEQhB$fu_)q" ƯJuw McY[Hl?LOweu.$~))݅%lA,OSFMS恡RY7*d{Qv_IHs ДMn`)QK8+hCyۛt~A)o?g`7 2st.'笅 E ^Lpa>op)q_㑟x+'} 138ٌwix-M3[D#`fsa'rqeÏeYDz̮|q~й$Mk8&.}]OlBe?=Z VVZSu\۽eՓ?ҟy:`+KUv2X;xtBa$ܗUqqq4TYQ#W~m8ORƷpN 3~Ee XꖙxsPDҾY.y+{ؠMYGʌeQޫ* u>XF3}*V,+\ϪPEOF \+b+d_F7Rk`ndbއVo Qޱ*G ]ݿDeT$`a:}<*-L 0|>2Q2R ^EB+D~]P3C޻5_TM$l,ХL+I>~4i?7=2]h!|7+5hV I*i짅"Е?z9j[ ?ñg915Cju#pPD : zΛ%86%61".QІA9ɑqRbL2|ͳ_9^ƞRç׆s*_;zçqI?7lWtk /yk{Hu>J}ctH6-ҟѣa{ )Cy9]&it୩(tMa3/kq}m=)HK0{GNf/%cgtf۝ 4T{a Um O&A7 SjoQ@͚K/v-mo"~t3Xs T|F6]U_N/a-*X "qW7}/F|"vwD lN fS\%{z{qmgug'?G翎@`>u }iOבi.:/Xn"^Ԉg3hFWgU`7{Vhmmr C\[l9 Tq4Krt$/D \NpeYk5wtZi`ãy WLU/a*;TǏ6M -^㞻zM&Qbϟ4s]!-<,,ϿW;WGLu*8ԷAпDc#`ly6們/dǾT 3Gr)0#su:^r}S "y2πc&inDxL86P'I8M]?pR_OHT zbwk!]ޥ@fjqpHG΀.#iXj}U]hԄEwPVI F2o1~>az0&8c^ VzʠZ d. e%-(QnvoAacfTe$1a\E 3ӄ!PJhv+Ӯ'DέrdM?K*DC鹑6rw&kKGr;IhQ\5r#(yfz佾|UVH##XQĉA DD~k8ѻ< pQP>L ^a \T>s][xҍ.DD.F![4GegT] h]2Tm,Dܓˌ$ ((oЙ*MMZ|@Un0H}5|> Ab3D!j[N2rB>~eoc 8}:Nl4qܼ~_}'+_ ZC"a}|غUe2*V}6Pes1w$fSt,g#%l`ټ *R>f`AcO8qDpN. ;zw:lesh ?Ҹ"~ؓ3 08mxZ&TS'qM*CjyPPH@ڪ|D;c )pP .DŽV,.8`ih؈2un̆Bw))O3<׍oz2}jU0C˹Rjv,2ȅM!l~=-v2 Ƃ'8]MDNJ6x(11gda(_yu׍zrJQwxVOfyW^DiIݜȊP3,s+0"oe*yG|y$2;74e&i~GGLzB1LW(\>2Me'QNBruN} N[2^ (n|(=4Q{)kc eƸ>/sQZPp9`S` ȴ[:ki: Wg00IҞ}}tNޗF "f9)߳%lX-`onU4I&UQ X)1Ko;E9+u}qy9 ml:f[HM$ ~ Q":q՞B 6e$@|;[Bżݞkۧ"ʑkHWaV}?И攎Ad6Aa)z;v\PݐL hih~rsc^^dBC&iW#vEd>IN A%[2lЙpG|Y!vbQHM_~xՆ#I1c̔Ώc-}[) ]FԵ+<Se O~BAhu i{a;ס39bWgq pBγt}L:3I4&;eW`!u>v\ ֪k^yзth瘀\2L2 K $һH?ibƧxڅlYB7 ]:vOg{,',3gm23,3Lɇ2aTSA؝k0( sVv] uj?` ID..q;lVԿQRx.A}nz2t4{WM7; ^QK^5(Ɗ>,B#_LQ?" "Smd&JtVSs$ cɓ[c}Ѹ/u2sϣ@;S%|uW4S1 _Xiw|d0BK jToeխ_ !vBh5em‘3u)q`Ѵhذ|@)}1X8fau$TӐRytn9դoHtr2Ex6pI6q?wGсCd&N)AX610np 2.oP8DeW5 U!qͩWiZI@  ٿbtxҡn+H~唟@EU/5<ɬ%a4(*Rl,M2-AʪO[j0Dž&Þ N^xI(BXKN /Hh38*ء~$DsϻRv܉p8X'ȟPr5hեtndw @6<}W)s>\bP:a eDSeB/ʉأT$К&l׶,"$>`4x":tb E x eb䦊M.YWtMiTZ[(Zw=.qv(U7lo(N*p@TPFx的 _Fe`ճ*Jvv=U20%" H(u2|%Gvɚ)O}SKCӼ0zBmAۃvh?Qوh;h>I&9G]aFz15d'p$:\✸?\?t:WeD%}d^ܷ iac߹lu}#-P&JLC}DE$i-I#)|WrH9W'5X])[V6\rPgGQ#JǼN_?ruΙh_jg4q=oX8WTUX l-񷍰8_:" 3(_IT(&4gj\BKJ[>?cgF21ѬuzE ޡǪ|:b\dv)|LfFiɭMė!nXX3p`[&-*n(&`Scz0ɌH1i%YkcUeDU!@5e  ɽ eQa0o4+J 98zu'.KM$"Et΃и~AaYZ{=eWKLICGPC)}ThE.:o8%k !<)38r"iq(vP2It_fx**ZK"~*dzlj0)Oa֪j䡤K iHWJ"M!-í1+y1y8ܡkٿc@ꡥu~Ox$w>Q D>8ù >_R N3uW 4ugC {w?,@FD-ERe]T.,eg@[~_4u cwBXMUi)yȈ2-,$.Uߵ]?3z¤-\^roZ/;1Y+S' / }!`Dz@Ś€aKVs xZ܃[i5s*˳apM'G]r+5k!ʹN*BG~~w2|d %~}ف|$Vʂw"v,a9Yn|a'c_6s}ZtT KGH9N}]j*hP*-0lMH>3:⏃OMJ ok5UNj69?z8/bvJBIyu(Ȥ10M zwe@-RZ#~۪XA3()LͭJgV7/NcwUD:c񪒐B*RБ8i@NB5 t'syɤvgeKS/KfUk-`O_v#DN'>8ܖ !VX)N7kmb6H m2\,%Dn]卄Hr""UbS5PK_L{&ϳ@jU^ۜ˿~}K8حTJUO]v!u1-2ZMA49igMvsIhum@Ce1:>(u9JGKb7k\hKhZh]Hn (B) v)?c<)}Io*{.e_:{DZp &.~>j9e2wVQqjĩ-jOV2a2rL$`z1Nɴd6bnR^!9 l|)ZyU?4 ޠ,\[TKizR:85Y*TMGpu@TGb=ȭ5!pɻ0RMeo[G`;7 myQ%R()#o,I}:n? 2ʿ?Szgp۫rR艢$,o(G+Qf:>>)$ Gkdrȫ#u!؜ 7 b19zXZGcV}0 M`U"$ы`J'>n4&wo]IT;`v _á\cփ,7C4I;vҗs߳Wԥ-;2 `=~dڒhÈZ 1KA io2eΛ櫯(J+։ lk"C3ޜcބڼ\m=*nȴoT%"-mCy_TӀO_>+layT[BF>}&q,x~NV3EOK+*_laT% 9.__܄nT2 h3IdrZv ~A٩?xUD *v.rndq]>ĹX*,M&6&PxmLHLd@c$!SNQڧeN9QYLvmTdƵsӊ *j=7CQIP6ĔTy:Uř RV ղ {9g+M=Y Vϳ׾r+5>Jn @ qԨ-)H%WaU#D| M7}$5s;Ӂͯ/Md/4TCHPAp"A]iS״A}s +"^DK(5\D41 I#،r_IٽP3ړk~$*U]`ԙKS\D, b p$mEjeHJ^/)zq[O;K$Hб=@lǕj:5pmEHnnx]ai+52˜ۏ![%ĆXu~Q\< vjur0aZcgTܢ@>cb?ڠ#s&Ug*BPV g!PpGuAnCݩ4QdpМ t,sal ephnG;MVHc'K0B#V5QсENacjn3NH|MR~-!.nv6HsR9 _=5kG we ]0PUTe5;^# Dž^J݈n`پV77­D$#Hom\+y"kݤ#Mٙ9Kؓ vtSAj(4%GFU>to yİUq3`r2Wٔo0ܴ}54%lE]dݖD%$6lrfطv7Ҭ%P+hHv*4@U 2lw#'e:x $uҦ띘~+Z8/گrm.Xj@91366Qs>6͌?jBGHK[¸GNݥ}\;+Tg~o[aߕb,;XWF4DEG5WM4bU0K5' ]:t-Kǹܓ,I^\NilxrrEC8+jSho^M[N4%_z֔vOr 4deҝ=Bܬ̔y+\)D=+S4?=)]|;ܫ' )/h*6E.) p_ `sj zVʇkYQ뼟'"9 }(e #jAwL]<.Zm}|3P(klGq6Yy9^}壡`Vxq[Haмz#*;(KipSwOTŽ9ct #L0Xc{l9ʆ}H%0庅}㩏gkhuPk͜ c:Za݆g/ F0c4|>eo캙Kq˷S,<Y7A}xF_s^aX"\PJ!>]6aʆ†ssqQ>p-G6Š%l"C.F-sںI'/=q]?^oϒnW!`j;f{fČƓ jBJoӌPdO\ X1]5a W~X?3޵8l{3xU 𵐃5RүJz=Te“"/W?ڞlkaZ %x5'IZ"G5.,/ Z\ WH(*e=p?T 鱴zz%ځO;gԚrs`O'qKy;>:F8 F`GnxPڻ\LD^ 9l=]ѤGDeWHbw:ϑoK0TLu#9`mʅ?qOYtP9ax2X{GueL͍x@]:|$dMB#[ed)/RTt`jN}G5CVjHy0Wͮ vkUJ@_iR]oR ;~ -b_c-{/ &o[TAӏ5};nBA(xX3Ω牘`}/ 7^12~@U{_֤iv \)k$vcMNTF= UVD^= DSңDxAe\ڶՕ4i I$BV6uKw=XLGoXw(L` 9 EmEyL5Fz 'v ;TPi4 0:(G&Jh`f(_v=\". >蠒@Q m`/O] L)VnadS"|)- *|U?I -#O}&iuV C=K?٤MkpQPz8lr+mgW-?7Ӥ &67KNN5VZ H),uPDDY@"'JCOiYy6a[Hdn4|懟G]Z*Lq1L>MU_X.M %;_{ }g9R!rT7EzI[U-6zw_SX7s݋_}ik!^%=\5ƕ˧4iL6IkomэݮMWr,f}Z/)v. (m<(`˃imp륓N.W`{e}%\ ;SK%gqCwp?"]?OhNc~o_ts:`=AP_'# g)x~_LqLYX5GP)NwTS\=&20κ~I < ]Lh}= );co>$q؟6,H/{뢹(,Qug[sOh*#wp]c!'i#AQePtl E&[V$=ryUCW&'o53Q zQs35^RaD P?gJs DxoU $˨]3/WL&(M۱G,iTpcQk)fZa ez[d!̫flJ/=lSDw>XV/N LO<afsJ)=?hT3Yȅzhͨ^Mv눾x{]n6b f~.$[@_Aeo/aё 9\1B8TߐS})V{xK 2_4 sDu˜DhYhh*E<3f[A4hX;C>/큛ڋy{kS*;^3{PuA{{bѩ & Uҗ˲YQ2Vt#0+, $aNsvK"~SAVIqSM^!67JIHޓVFܦv@c%zzmʲx.DDF%4'II@& n{H䣞Kd?[T #2?w/I(}=)|E4hh*2L\6@nYS<%'5p˸WJypo s,)4B+683P~p֯E:KM8M1U(H Ws^Du3We]Ve\8;[|g;׿7%-X,o—H$Bp~y6~Z{cUypˀ*`ӭGivfFT(/!q:XɅ}Y;wbv-cq}_i X.s H݈7-#Ei ؿ|J*p8u>D bt r"Ubnei6~,,Fِ%C'\be: e8Kͯ?9X t AxV9Gl$c؁o~yh:Ҭh5XTmO%PL"p4г"CFtc)1wtpۑ:'ʹfJ1rxe@ oYCӞq: xbA]Fv&nx׮y e{w͋> tDcΎ IS3kS~0Oҿ^CM^b?$ˆ$2 6JtφR ;B%Z1d!nq@~DO؍CP] ][Q2kQ>甎-=B!cjsN.%4 LK(dG0\mRH9w$gmjM9:w.vrDOD3$`49J6K9gY<_מxXW,5)g>񑋌8ږF(uwcdHVaDu)Me^h'ۇDB n6aG^dFJ.QU_}?֯(|˅+È)Rg¶p܂wVIxcJxA׭Hp@lv-Ғx}@kvXϞ?Bu"QVcw( PdY0B+WuͶ²)`CV@bILWÎJV-1智.zab'Bu:SL*Fk,W]{ n73;J Ԃ#f7ynӀ:p>^1ZF@"71"@I#Рt&҉dRYf9~[~[۽kͦ'RtI6&lNküũiɰa~hEB•בWϟTI )Ǵ bB fRkX6c@<54j@-}VR۶(sTOzmVR~ Oբ85ZQD t}\ls6C~jJ/Ôt"l wJrXI-TjF(Ü;l,><vňϣ;RL}{Y ck=CFD#[bS`d'Jb?罐`s\@{Q3@s0BX0]"i9-\}2~]DT$i;z2٪Zŧ ~(SeW0GD5`txCKKcRr*_y`1F/`q1J։QRⵖ7鰰75L׾'bXpqd7[ڲFńдœ|Ck}gM\ GՖw4:Y`M#~eFޗ.hݚK_] e̮Lbh~P#ŪΜQ|l`/Żh;vSVV7Ea+Z(\gC}OL)2Nbn8gg"Ş'v ~ʈ7h4cc0Z SFl,*819ӣB#/$K=Yot^v)|(TO"N]7 !g׌ +tMڻ.GX~gTT6+%zqg*qZL!TZBc؍:MO_7:-=Zj5hc4 4' l" 4$Y ̏Ĩj҉. U7-U]P^Me}QYxC.پN f 0 t $o#@h,+'~s=)X1=tE;6j49+4yi`6f*&rҡ~6So5!M^MYOX_evZEc^78Oʆwq&7pRcR՗W"݂nJܵe&nzwPreY~#+ ?!=wsg!ozL1bh_*L^q3,CT]V@~EWIgQ\v>NCWfOzHm0\Z$j/la G7QR?Ap Bcd.R8tcy2eF1.Ch,, {)@*$"&L8i>@Gys_=5i}\%!7 PP2@*cαJ45e y;VCR9c0M$nL@Yͻ1ݤ27 ʰj͒5:ύQܚmHh8EfOx[o<`^1L0iO(J^|uZt&O7kHsV?D-|FkptC]*B9 "{FZ>:niEbŬ6MD+g|EVɵxÅNpTc͊<`&ɿu&7#GrOj" ރ$&O>prKY07Ⱦo!\QMGL\+XMCuOXI -~*;94531FIii$QqbjԠ 7b)Xݵ~<nG%=uN-AđUj{Pt(,~$E9rB5y0O@U~u]u~a84e]d5l[#zV Ek ˽oU=]ɜ3FvJy$zÂ*hyfcjh,. g KOTqrXv<:)hԍ_ GxU@*z ɝ8lAkbl1cs_|QF-vͭLrHaּtzz"DR[rtUƳg锴oKىNdαbke:BB6 #}qiL NIN F+R2}l;[|ýo򂿏B#H]$d;˚DIfۼ0o΢pCֆ}08fwe@sq{YjG~80- a)ooCg>H[6[}%:4 mP0AWi588_lˋTB2kcalg(6h>[{v.ΨRRj3+dS8-48r+!gJyw<-8=`6=N8!.N{/pi;r{_ 6M4ɈTW%ή&3?VeryQ&:3F+zī]=c2pvCĊ/ELV+]C 3U@e A2 q.3I6`gc&ޘzVc4S)gӺ]+=pӫQHv&eGY^A+ O*gP( CPq[h'=n -)>plUԀ8 _s-2K }lh)ȣLXD8:g^=Ђԙ7CBnB FehYt}m'R5z/.l 9ޕM(sCFe_ u3 ŷʶ # xAV.}?FO/C 7a@ IVsgiFo&ͽ1ޱAo-Ųpk?B3[@&2x%ս.1pFko ^>0^ qD}B}j8 |J=1tK|ã6ԧЇ Vf>L06Lm* $c wLXx1=GG (4-^#:f84 k9tm[+0jNֱ[:,SF@ӟPi T>¼wcm3"EU$BJ;qrܲ 9Zïcv+\I~AaPeW^|[ʃ+?C(;G>C㉁%ȣ4Zl)?6134V~Al|I`'9h1Է"VJ-/M>,s K$7!P.~:*u6AmchIU m3&)Hq<$(2Yc_5)zi_9N-DG V+{bxvOU&! N;H bG153r5I.nH\"7Q5m}vn;G~4'uLChE{|Oo.6ј2^T ԡljn"TX@;Zɦъ86t)Mtiȓ\g$t^,JL$3 Ny^y;-z9G*d 1k+m6$ٗ1oX$# zzj\BAzE|7Fe6ʽ N?Av1P|~[K 6bA^?HJ!zwz@ ͪF""UOac7-ȄHUr).N} њ-J9Pn!$c=yywehӞ҃>)57s#ZXC;xD0RJ9O(uwLzFLß֥jSDfl"`p!2V4^bbL%_R c GkNZ#`KOIg`"v2揀_XIDI|j~jdPڳ!"CQ*?ٽ~Z—u,!N ŀ_LP0ET&\sI$C N³m\fs__nㅼRk;W-HnF<^d %W@]Ao|4R^xGtKmf):-Aک3wm;X1ąXJ IsNU[*8wGE1f -M.'Mk!W%6'wRp(QaZ߰_7jCNFD՜k*#}*Vr7DbU/T%EjY,qz\Ɏ$c Y }I$ 0$HYOUuLE X, !톉X* g]kY$}M,*^+"H%ӠG[ ROuNyK/Wo= dRQ vͼ˄Bp8_6.9udY@PseƹCOv" wG - =@NðTz#v]eƥK8pLW< /ˈxxڞ{gKzWb #N*ǿbgA@PS,}3A:T+S>\U0K)4)Uf 2_E ߶5mǛ\S D>tJ׳@lb % 6])UMaUF{&o!1O{3ex%?FbfP9Y9f3 5]+̽m`sF7 ]BPOL"U:S_! RN r ,!o'?Kekk\¹c h~&\/P;4 ~&HNvS-JN˿VQi |as[O'l"V 8؛MbwOz[k($y:5}LS'C:j^+Q_  Zzfb!m5.75._n9aM窷LfV#ηi)nYu` Ua o9U pv}瓺0k4Yz4zS80X{+bקaV2|Rl)։m_6pHr+1$qPnRO7|]6e^7 ڭGya Hxs}cxQ,yWep1&{#7R:fΆ<6U\6l U51kTNxqkJN$޽n 8bBH֍N%h!7\Na7H946%21r(Xl 2KQAoD`d wI$rtD70N>ow4g==ZN(AkXn(Ӿe'Uxl$к 3TQyT~WTzC)4M 쓩''%/)sP6HQ`qBض\.RT@m~xȚBjɊ# t3{^ïkZp8fa?xv4W~!z޹7̜"4?4׀JjfHBӱ)WpwxBU+2XmMbv: ܓ:m8)oIW߫MSLRԣ =+i3hց|tw'_T7ׄ!ڰ ĺHb<(?"KnaQ4jM|eHJ!Tb59E/*Ŀ #hFQ[|>gF[o="HTZ@x(@?MH.JQUsՅMfK{jhbR yÓzZݑszKاߠx\V=CC$ u dLFn'=bSl]()H^8$[ZN!K!8 :ח֥<"Ndʭ /o3A=^We6ldw66GX_8L \5_Dw'L%Mvɧ> A_^C<ʊ[~k4ޭ%l i  1`!L{ G3.h- "aP^dFLbkX^z]>Zx,x~-1@99Ь 4& ye57(9k]H+ Xk<+[*]3jjNg D4c:#Ta Oٰ{xk2!ɤ_7:)Ϯy2yӫ2Nuꚙ;bZ2AlI䁡a{[; MNiRy&Nsj$v`ysoqw*Q'P%>ubϭy TJ@ǻnsg}9CsV8sHg2ޖ42N:M }|v% X]=4Ԗc/hdևmqWB ),;9{x~$4,G=cfs tK*kשڃzJCL}J|JËp#e^PzبH' jRS3*3a'S#f0RSFCF DǓ{ў}={i-ܑW}Bͤba碘_jJ RV@ǧ!\fCAn8"w h7&cC{.R2I$cTrJ ܌s_rF-c_>._0)at@sQ3<}eS| 4b@KQj e9*f1Lcˎ?CGiI;R.rioeSWnL_ / +x#):X$J{̘>I*V+nb^f-dHrcn#}In7%F[Ht?O)]_`HuoU|A7N Hl7 @-i_h7p¬S' r5`5Tv(rM{Iq;_ x ]K(޻nkevPO_츈A2CrX [y!B^ڔfOMuP_;!:2"PwQgHLSLr)o̘ '92EZ&̮!R%\z~)W8j̙Kk9+(X\񟛼#t̹|˷ڌB7ZdݭT=i`!2.fc{LP?ۗ: ٪nqUk3$ Ct:&f7y*;F˱e, 2=Y* 6a^%yİ˗)_ L9[srP5NU0=ffDYTYCA`Wo.&m:?$S S,gͷZ"Z8^Vuex@_;ZJ9ASg8;c2'j%tQ5l/Ӄ0Y寙ppzZ'?F }!{Ro,jO\Q ~˱E:fh%!eږg#/{SL=Xz YgP D$HDZ-=Nu tYX^wfw. ?6enyҋ~ܗ7Κ U8@<m9cx{n7_7U-=,]fcݶ`S3GM3)uŋh @km~t&RME #٫*Kz*~7eΏ(i.z'j Ru&QrOMIU7QA˝וrAg$w+}DBmQݺ-شkcU%UP^-GC}x 6? mNC6_!??ɛQ{+G;;uq{ @ w8{Jw0+)}Pu /JWl쀟.TF>5oTIU GCCCGZMWZALͱ]C7+lLtI ]&%D~E"Fk(JXJPmujor/;1F־ O L8D\V%qM/)G NEU=+NXޞ %ry%&EUV }vƃ8'oՐIu::I訹 "jrf+ɾ"QxnV0. okL ?2 2s #r=Ni|vշx_kY)o#21_Pb/kHeI.ZW8#?v* a&dQJBds?yjŬht"B켖(̻.+9TUʥK|1cJV5|!5U9 l]-6ZUڹv<L;p)a cfᎈE ؞9oJߪrK )e[wIkV`쬐>hV<#QpuT]gD5ÝPڲN D 0e{y3-@MCTY238sޟgxa M5"PWF($*48!IVִ$_ !.٭KNJgŢY}qZ!ʭ;|Zq0BDGd 0GpYR Đf~=uUA#2EA+^DCg]r1_f45Ѵɀ0U{R}{>Vo'NLt Bc38Q5!Q#kVZ Ry JK~ȫgw.O?iKK㵸^1+u MQ6+q=ъ 5SPm@2^!Z^Ni;+!{qծ >j8'Bw?^S(W`5/v㠐vIQiv=18/5 8WKZ\^f cR1P] ЈA(dM@#c?۫iIHEE6"yӼ4sj-Lg'M't=-)fR޺Nuw7F18DS֛PD'Uq]yU\/۶K(>pi&>E 7S,VRJVn; ҕsVnu6u[]!by+̔tBbx>8t &!bU_3K  ,[%VXObmڙNݓj8Hx5"ҳ)BT:COM.>(uʁ.|QLgvlm&w'@ޚn%RL|k)Q1L QI$-AL~zєڟ0g5x80cqruڔׇip+sSB4`&>?=hJX1swNy"߷+0'lEQ!a)חgی706Uիr󂓚C4HLevҔsPګH%L9wWGON "B8q(Ssu* ߤ|!tRª׶!mx@"Ai#c9JQ0Zm;=Ђu=ؾS La8c|?t{yFTjބd0tM.)>KFWa̹8c~AXzv %sМ*w}"-Nu4@}pL$thΫ_APPS"2D\Yz:_ȶQG3eRVчiC}f6tBM Hxq'>v pV$ﭻ9Lg(,GjTݽ-4 $iew=gx0: BۮcVbfg&[TDg%DeSy5" InV_~c!E5;| qK$vdAlbyo)&YM*R_ux9QL:3tA#SNHY6]U ʒ ;>aju+kHR>_dUޕ7SPTcd TcNs/6`fV95odn;`)7bc0S b;.`oId{YFEklJS]ʸ7S6+ {-]^@\[p9Z)0c78PDR^2W 2''w|Jum^uwuT$ܿ(F.jom+S"yk֩O,1R5*j٨ ΃[,,Š呯\da>Er:P2@yfr/n?<V)AZ0NAֆuy+H$:ḻZVnt[mE"LÆ'QRlO'mf)]PB.7Ѥ+ځH3 o7G>Bv;3~OAbMrcKNY䗍5!4:& }H^).W1_`DA3 | mJp_~t  '/]SQ] )]Ѵvx_oP!y948cN,vk͌4H A3j ٮR@Սd4Q;ob$t;Q?AsCb|Fw\ŋ9B2sJLni݋JRns@')nD|=NL˰0{{n3cR ]MN&pX7^,f5Clf0N17=!El~xbs]~ܕ91ao4{=ZJ^={3B i)+'H\IK`r[qO%z\eD%4%{ uJ-uvц!J'ۆs5AfPEnnCG ]o[Ǡd. ?#5U E,{΁~#@1 MՀ!m5шAR 4[-قg#7D0ypahʸqh]d@3zo$FN;Snc=]qZ)5!bWZy "k S9@Pw?6uTJβjD`ᢅ=+LY!:%5#uRR[ 2Nz(N(=2iY4^\jTE8ך1ƃͳb'C1ޕ q?d%A@,u1K!2iW6/3WxDTSSPXaOaMAxf`x$Pc5A8 σY8f S3v9w ?}{&qI;]ܪ~םËӼSodx>+40Yf߮i|p-W۬I1j"o9Z?CGuK=ndfA@$saY} ,wI>iw{kBۣ2`h3d(Or65,S۠|47|չG,tmZp9f;Ȕ"(p¼f"[&0 N*N f GߥR:$]HbmG5qK?FH!ӮuaJ=H32`|Dmx?o>nW1Ho0-r?~g !r"~Fi.N<ݮ~2X3ؼGeWT0mعxz'隃NV;Bϕ.ŁO kgXG7!wQFip| oI6@4z9=a5/"'eWj~0$PAzĸz/FeUd6_W]/vl JrΔ%U/aO؁6lN:-0j7lPV,2`FۋXk.ozF ixpy:(''$al'x1#qNKrgHr#܅Ƥȧ{S @$M|t:Q q4NHAɓb 4}ڈq"Rl sO;tGYs#0/%ph&Vܥ!MuRU/37ܵ%lLo)xa }GPA&:^EugHgnn ! B0w,J:r~aRE`eu5v:aSugypicYݽx2Xwy͡``uޞ"3znPBJhJ ,䫗lbv}bWkSRjƨ'L<\si|'I - 7 RIRO|%?E`~P&RF;qFYƀD,"E<ۨ4@ajM~Q¯k-ePU)[s\aZ8ƌG4uϣ4,jJ@GI㹺&O>%ˏrc#H8vf]zh# }u \[VkQ'fwXeVa) >8%x@IވeRւn+Xch~7 b0: U5J,U!'^_:An`0ͯ~dX׍Ak5Ը3cgUsϞ{XR7!YA&H[^ OD+t"u]~?I~Lw+o/NZEO13-6{DM1טvZ[p/X5hs:maVG4- kϰ"m&]4q('bm1X,d72=R$qi>1NNQmXd4Wa|Uﶍ!d9UR4\oyL 86Se7(ob M1+CBhX&`]8Y BCGA2XQTh>ާMYalMR]Zә0}Eer0 JsLe.cۄN;,Y꓉S+Sd1l突3>^% .(Kc̓]^8ujJ '>YB:u\SWP~g(pIq~ + ߣa}<^>U]^7kQv4T3M>!ةWޖ{jl:y'E.!l  o `PIaxXeCyW*S cUJ[Hc!lED4vq$lt!ȷo-+t=ˀrqP*&`G{NXXg|/kѷ,ʍ L4GȌ%lfTJ-]!p0Ɩzj]NA< vvN2 K{BS*h 2[\0tmuWZ.Cq]T. `iM, 6d;=BFљ1T9_c-E?^Vd X8dͯ- 42{ YP p-DHtJlOݣ +tp^䞫Œ@˝I[o>zʿm92KGgu HViRO^tŗ(Ҝ 'g0Gׇg.u[ǖ(c̷sS,TfDαa^ˆi{R+ða- ,Aq]`"ɯcs2H5)i`Qp/ 2u=Gf1cPGvhDJ?kA$x~,V{}zB2Ԛ 7lTX1135^ž8dvND n]dzj:q"0 g>/J !`ƊZOz W`3vUrYfnk(nWHL:3=kzRCWSKpf<ڭc\7Pznp@eթ1 Hqvw1 @A·x~c&NCaV˭Μ,/&"P]u&eD^KH`joN&iڦdƳb f[P wmeikAV-CyS/ ~ϕm҉}d$d1G5/ݾM'q j\7vYe*geºدg~+f9^" Yޛ+ˣMET?54pP!K'|J כЉp[:-n8E;~@6&b.9CQaƀmuZ#/함#a=N;X¤>J[aZr?c+^KИ%ה 7i[Y:Hg1pZ{?+ߊׁ0KBq9 f`W(/H=YV 0_Ո0*F'ɟ ]QnR%ꈑ~ڐ|߬m+O,WbN iQa ?]5ԉ.j%!  SLV,K]Lhʏ'hZWw8Mc-"v+dR>@PsF2XE!b-Ȧ-O3&cY@E@Pvb*M`W ֶ&oԕi#~b%׿]$' '}*Jv3aPY6w^yLHǂ -O*7o]7RJÁ›-b?FGC7 tרuguf>< M_CS Gq$} g 0}h3o;xC&1t, = :Jn]zn/!3ݤz-\~f\# @H"CHNSįJut Q`U5mV U_Hu.ac%sQLwu mJ܅eK W<9u0AlPbxilVqHR[%aW)wL%UCs[Aulj(C F'mf':!M/3n]]XKծpIЭ2E )kJb{O5hySs+Ӎ]ɵQr+Bnz*|Ee.#TwzFm@!#6fhWD,eIwoE `Q/09kamArmXKh\'O⇂\#|pVkk/ C2/" `iKTVXsm B, >Rx8˛oQF.nBU&OeʥrbbڄDcTZ{ŀq.A kQ5t]gkZ=_R "hf.TvȺ ̨]i2n 7/.5[uP*h}0kWƌ}Efa"#{Z1wGH 1Uq@=$ɨtJ?55Хzx'x0Z\ G>hj4b*UMS0,`qB-9]w&*mk8Y] l%5\l&qiOC(O¯5-BEXJeqe} sST}3QVz Ke'Y5pp*bylpJbVf&W*3ԢMl#C/rBޮy([qJ˗ZBd=~n6U[6 l1Ƙ s1<X2r~T]4T#աA(!qȚ2$d' :D} vZ}2]1vhs ǁFbx͢=!zy⬔e Z;.+{Cv ,Q*Qj=ܺ9<`T9r~ߥ,)h;>̓D'i.NA$ҁQ4ֆT "lǝ}~iiu%/%mtʒ[u0M7Pwȩ & I0L~\6DxU_@Z-KZv]\UܤTD F^ 1A{ B-@DdytQ~Vb `_Q" +T>ֺ`zK"pg%Zfڞ8+Y*Zr`Y`{ }zD` ͜E?Hh?>Bm]^PUBR>Pr57dq(yK.kӮV 眨 amq; ='guWn6^{AOO=I&0 { LV< +~>~pɥX`TH"kD.Q^ctqs {j360>a=z=#2.;65ĉG1qNLK߰[Ӗ(2ٿ9GO/PʌzC2GeOؒ6{3SŽ ŚI՛菞UV0~Y5fZڸ}IM]"{ts:U#TLeɩR:.o>}%Tp隼U%):}ź!RE%Kم ox4t`{`1c 4ڜ hS0.emݿщ b1)tC5yfLp/|:F?F ;Hb[TyQe1o#X~L1J9={_j*/$ nRBLNt"qo:!VEzYAHL|:D sR(9)?IxF޼%_7kHTZ-s1|DiuYSǏ5wFhek(pA-9:]CZ^xHE톜]3![ Jy^Ïr)m0mi{ad$躝l>j܏g, JQ{i医]ɜ1q 'nCҸK(ֱfm$FAZwKw_WqTMw6ыC{QOvC&x֘6YPa "209o^Uʪ0.6w黟G2bڮ rJ*:"FFPtƘo÷/g?$=hRh\99z!'D=8n\+ȀJ#g$F/ldv'rq뺞}C`w_%X$vϋ͈tԥz\T8`=Ӻ!b2 g92TQ7̹?g˩=yz| s uJf)։=Ԗ[tzZJa#A$kJMB{ %fE~71T` XtfWɯQǰ'B@SQ $LZY$1Ǟ~g4VoW4'$׎CHw䋝_Y&"RޣI .bH7!3r=Kҩ-֠>a p&Įlsɜ?ŝkzU=RS2j^{@8ĪZ r.}*2*E X1}Zg_Hڬ]E_x&a&VGl6B v+*ذes1OKRPϙ\)W{$څ#\__ ]Nn17j񃪇X~ ak~\!Rs;aF`G;%ߚ|v$}Y@~J XbTsGB]a(زP*d(ΘZta:aU0{;^+hJ#ݩzROm70ҿ_z^#: LC͑0PZІ<[Th[@1"ױ=Jq]S7%Ga]CP'Y$2IBVxޅ)nq.L­*9_G{|Р&u\M;]ȟ,100ܕ{A$=u/ظ!O4mjn2TM@ QN, %oVJK3\'~!G"ESzG ңQ:!z+\B*QBVEEü8 _t;3{칽ܑ k-s<IJF! 5^Ym߱3̀͵:l <]wCd&GN80MS  O?_5"iJ-}ԯ!kx@[_2!tDLd{cبL̨j7|? Y%3 Z>);LQÄ}Hf2J`1,I&SqMׯ&6?i88Um~?H1HF&V`KA=v7aivpŘm:R㧫\{q8Ak+lHD\8l: ؁%:o9}Jn-K;̧85~fp`p(UJ Mw,`d~Z +.B™ZNa 2xo],0Aupbۀ죝IUrTjhk]Nִ[}Q4vZ'IH&bjֺcTTP?Uʶz!m0{/3l5vQ~ jg:ѝ?Ţva%fΰm$ӇIGJHWATY~|u6*%S0dRٞ|_&H FH/ɌI :OxM|7RN22Dp$xVjG.9i@dARgڴh%ow.>{TɚˆZ_ΠuǴ!zEB:﫜C*ŭxXC'm2`VC7<@s<(]gS 4 SO #1R.+3n;(#Uӭ Z$c@ t 6u&;NU8P)rBe^z#ڶ18JOi1 ʊ #U]8*(yYS 2!+Ic.3-m\|O:i%7Cs(̀ NSpX##WX*™{d%dj$=Ĉ%J#;L_ 8WQNd~oJt[uC Wa*iZEn˲2h{؛M̮X!kcU`t-0H5S_cM/fl)]''KUe9Kl]ʅ7BքJmHb۵e,1Ry8'˚k.߽ CTbsYKvJXw 5?rBBޢU}p= *S!zb/M&c1ܢmbi0̩"q#Y _%y}!.6⪻CY5BOO@PqH\~hϲV5Qc̅l##~oD43*.Q6zpڕgUoG>h{f7ᡴ׸?8r2*ޙQ X)@&[#Yy跭IQU`d^.^@)\)B²? ~Y St!4EP/{}sa',2ބBv8GsX-MWSʫ!=Wgd'جZ}bf#f.52T&=딽@UC)Nu. ƑBeOD2V 5Z6@X}6:',@̄r|UtSٖu^:WŘ8a+4Wõ_^H:MGn9AGt3MTf[t^l:ykqâ7N8Е\FaS+pEV!bX098+r 8Qo ݋D sGUaT S;J"ӻ炅)0: t)uܞ_ ՝9ƛ}P{w.Xu"8w. TRjE`|Gq;1oG#cp/v FYE땃uMdIK;7f 3b'Ӈn@ qw:% C('qE!~6?0J`RAjo{(mAW x9]9-d֠G"I`RM Igw$5â՗%]6UY'4;-LV %NWy( ߕw_ӱYE_GMP}t) ;f|.v, Ǐ=pʞK=!w%`_t#BҲx L­[UgOօVU-aRb)cew)1@, *Z&*>΄<{~,&0Ip;*o]JW\3V=wVʾ:yN7ʦFԕ\vȈ:Q{64) 4Cl*M3H]e+M.̤FTpCZBPP̄D9(pZWnǿiOvŗJ[׎or69Z!_3.?5Cꮁ.D&Tw V/9kr;\p*ǎxjBvu.)a|w.҂7EǹWqh>o_`kH=Pp8沯x˻ >豻 f1U`_1#W;zw5qdF<*.\#択_xͭ *C'P߼_-O`JgTA~0Ad&M ]&y٫80Do~R42rЄ"?U.KaaAF-RO+5/'KOD#I@uY.(5~@^d] N>#d*V? ~2('dm$65IB_=ʣo}%L>fBsE+!: 쵵r;Vܞ_=782肉Ql7yVs4nAfHzH1XD9W@Gg)滿n3QYm\[32ϒ2;f=jøbv=Ty-ԑH}1:t{> fN댓)ZkC* }&:Si;PZod,[Ʉ97l/0tVӱ Kv9uodŢ n7^t81!YC "FИKHɄȄm { W>fMg}Щ1O ]IVa]? +l9S_&l)\{3 };ٖ6d;^hzc{|0!6FR-~yHq[󕆫Us#xe8|a/ֆsz75Z=Y&AFU|*'fp)?BWxmH ;yMzRbX[ϭTÖo hbIEIFŭs8=m+`VJvd_*')9&/eS ;-@v@X~6#7ҡw:hɕx焦іP\Bn3h|#&6Ү!6dx%|HFv畾AzG$ b ]QzcX%BuAN/p `޳!(|MykSJDid1z@QS&Fg' Їmq4]b/a+ Ǝ}哲:W:tA8z>@!Ӵ )-UE SepСDJ0r+dg(nr9)<W9UgYн14Y[Fe46QBxj*,pm_DyҦ]O87cD Ȼ׍꺛l/6 ub9p&iNUW75\fITAݞ  >Y!F`0 ll0F5#qX~yd;%2Y@{%ᫀgpz)ZuU/lRYWq2P[[T媉i|g dr֡;zlrw_OԞYTb+n7Ojz$bS0&Zps8 % j) ZѵmSw1m 1wy7pfTc#L $8u'ya3/Vr}{¶NX+x젭1wx܂{A0$ dB_N0n<̾ hjg0uU,S-EPZh8iW}d!u/=='f8[)?G K|v\au]c' 1~po8\VpO{wRzuoN$ΞpAm{0`ӫNd#B̻pˌlM*^ b K@_u0I&b*MRP4LZw] sݡF˂3$c}p| 5n7|:aM׫QJ&Go4³]{k~6^L2Uhw֭y6SO0[;mҞ^=(Xt-GE3俶f 1{ۧ>u~*yT#Hq٥Rx&P`浢)7ͼ`4P :h(qH]ɔ"i:E{Iq\]C ]<X~@CX5/R>ZP`X!3|a @f֍&I@gOlm pfx_ĭ?K/9@H^Γl2e?ٛV5נjȂNk #hp˙+w+OcgccȸUJdkt0^ˏHw%  +KXP_Hm}K)S-d\b.3OA89U;{x =))k"RP~DŽ*/šޕϪh:n&^lP%f,HHyΗ[<̺I3jk&BKJ񖄳L;SgdL 9b6v}{W(;FJ8N9?&1x24Liæf(rߘQtG=K,(UnP'NWr3?oC쇗!p'Sșg4$6t;r_9YD҈?1`]BՑOV-2濽Kxtf4vZHmA]Ɍl6h"tp`L$}HrWDOJF8TOPȠہ,/L8]rm6W{"T٭ܿSCg!Ekq쇉5_}UPn* g]Aihcǧ|MwF.MM6>{;Ǹ*f{m%1}4(kmUv`}IV ~'#.$-xI{8S>Y@SXvO4ùL'z1v*6d%D #Z s($؁ݟQ"#m&N; -'ڼoace|O("^NL~?URqX^ \ ZV̱ q_\li3@EZH?zG6!J[ӱ/Np' WM[r҉ufCB=C͵QP|j>aУJN.PSpXUh{$(ᷰMsv*eS\Pfo̒WC7fT ZȦ I6QKh]JCEr+x"Mb~ξEu$-+(CSZ(4'{$w9~e߭84+ O]+ꙁm gݤ a=Rj4mӲk|Á덩ٍk1dտX@l/ &p*D/ s*̪NyANg`4Bƒ}$XO}""qĜ})tGqJeyM7ExR1?쫄p~pg\Z#x_W"Q& EĔ`x;HPDFiqU~fIkǏ<K3/狸D~VyzICkBhlEy6~E-طr_7u\ WȷXhVs⨣ռe$sZ"X8/FȹCI*w3)#&<^X0QVB\0oh(~՟p.R:-ܹz"i5lof` .I, J̯{t"6%JRG@Λ0޷D~Ot0)%n??ߤ>Ho0+d.@ea[ނ#a/늧teƴU0̰ѫNj.5scH,yKț[P;*v# I  ։P$݌N3^#8nU-^ ~#t*Q531fWad7#2L$c OETx,SJ'Oo(g٧( MS֍x "9(/b'TOU4`ӡHi4TpܧLU%7j{*h*з蠂 w WVTvw CnV۹W#|wM0I ,&Gad/č6{P|F`;ʕ0嗮OJjĈ۶wo⌑+j6 tg,e*+3vg*g |4DOҸ %@@^]z4t7,M56zC FhͥFh#Pry tŜ['S63񋣆+#c!P&ۋ dۀFM_R|G'~ `hF' r`tt980%WFޤXG8h"g ԡNI\'o5 V4]%L6Vb5 b \[MKGĔqKFSARf4Eqff"nL"PY ;M2 \_߼+Dȶ_u跺UTEn))t?GFg=X/ffE_-6z@*,U}tQߡWZQEGx I\QQSM++$$Dv?:xV=ws;ѣ+5;ؕۃ{(|v|;eԶXmܥdT1J5lf7NZe = :1߰, P D"G w)A_qaV  Jd*[sHʚ:-)(F^Eֳ\,:bnĄ+iCE&&P!tnea!KzA~,7 LOΖD`\E9 -b420i{4.K >z~PFl24`wΤC%!}K& Q^l] nn#ie+SƮ;8ODr$|' p0ʤzA =pCHsiqMQWl|-Nl$㜞v$ MHp*9y0  7$2> 10O^e%{$qRD\]-_wB~[1u\MI`r5;p*3S Vq9ƃC(kSs0":wˁ+՛(28wpT.ה[f[R2-~˩㽷W:[ok%MIg~5D!kGgcf~" vπx2GӾc{)cUB>a Y--YMmY@m5K9Qm5YiOyxH'М28Y6ݽsO0/o/ oՅ x]έj%y0P0ܒ&U >i* зZ7)h# -8g fA7 U҃qF r4+'q/˄7 ~8rbr m$ QQL8FQ#2UӀ~ʢ x}ο˚u񈉈zwQHCǫuq`ُRT_  ?vN v‘oې2n]b CjILDB҉gca0Xݴ{_VLPD:-ti%=)^IO_ɯpn^HrՑḁW4Gʕ6w#;UɆ|Iĝ"e)2ėrB);Nr@(@.3ŋL+y?0?Ȁ% %TjND?@zbh+p ٦A:_!VQc9V Zn'?}yࠉ$jQg D.BCw(xQ\¹h8#-|pyBeIV6e(s-xz)@8e⢴\)#,B* -7;$$9iN^Ne$+dxX@0H^M(QeDKߐ-aGJ)D eɜ#K(* apw_+OgEjX(PbwڅRMBaSv1IĞnPd /lTspPqx՟WJnZ _JEv(-T{ɘ#Z<螲@QNP)c%.oJ09MN~fPd Ih@ T_ԎSm.Z3[ƜTk\i,Y6+_%+GLFKv'.Ѵ̝y̛"\ a^ jV#}Y'BVh{NKtbЏxƪ> Kg =j T;%`=ۮ=wǮ+&>f$3oE ${F|/_|qnm;.(fkvw`Ia6y!z<x &K% \ _J-n]uR H Ebީ2N _M)G92xȈBbAocfF3Ɛ޺DR(R tn)r '=pפֿa{n[$YTݪIdE1E7xձEGE @-&{8zRC[3~$s7zggۈs>1`ݧ;g]~ . s%akmڵ뭘p!p [!A٠,lQo-(-^$\K2j'B&l?z(bF,]N^GK@TS=7"k#= !Kt׋4fo QfauZ@ `C̈ ݺWIU+uDC?cFUZ7!pQgʊX\@o)l{;1|FLw$N+RԎ(}vW~[9I0^7qE~Lk??2|m0ȸR[pVoiڍe0̍erGe* hM^EJƥ$/A z* F3[%(˹Vx dɿĊ[d<J޶iG*᧍ 4cbqg<|21Z-EGb鿺f*SvBYk̈8{UAP!Tc$ +\?%h#`%vk}[ eԩ.T;ڽ܍&a4L%N7c!]51qhx\~ өJ)Zj;IVHeGsH AT0˶{I濜\5̐Tv4_="X=fhy, HP׽M{"0w_ jqsUpCI"EEX!Ǽ2i IU_P(HnGg.H1|o{Ԓ)3Q7gWume3ZlB#n9ᑑu(^ꎆq*/a0 e,Jpu%3B=PqȐ:@"l( ;8>S ~ޕ }8UO.#=zmL+3 2 `#oY]1`߱~q%Ulw)cx'Ej W d\cHВXbsz'$j;<27LNUT'bI9GJ8'w3<^!jym"%Q,ꖳZr!fyJ"6xU3=egJ6c}.t}=㪁(aMMMqw]c+/'HF85VhV, 3RF!C@"2凗 G}=ܸFmCW\Mm糝J-_Q"Fy0Ӿ;} NC[n*5_@Z5wwmFQjDjؙulD֭|"`lHSY1X-;,1N,pEZvAev\,TD|/ =TvX?ÈSR؟VlcY8 'MzEayD2fF [fk_a7rgp0 gM^]{g(Ϯ;G$h,?-pӭb2f;balj?RL2YN*hJı:۰޺$ed|ȲDz/$u}P!$)*81eBN3of0i#YrȱsSdn&PSwu1LRgJ}-"%.Tzf|? ]荄:o0N?]âeU9N;\<[!WJTxa?~X0be "%禭Ψi1,PUi@'Z h_VZeOHsJ/g# <~a 3.>-0[Yp/y9 DA!b%NtZ0AoK  cj!`:i7a{͈Qs#V)f˽CkSȿ0BmEB .ljR 7zdZaEըGSC~}ݚ)axUHxSo:߯[cjGw:P_7WGl:>K *1:M!|ɶ(-fK׆aLF4'$. ׀ȤxhcVe"2\3D7 s":sf\vRtMFi@g/Z >/a1A;˜dvS;Ƞ/z387c=*&#$,vX6pu'R.;uh3 ƖRSE`E f IIybϼH40,V,|A2eQ¥]I#_]y-ʫl)=$`gH2LɄ~eKo[8 /'.RmMI+zm))o0 ^ȶvN 1Qc+zq&E\ hnY+-j^wݡ<&)S#^M9tp _^_-s;5nm`fYMY嘬r|&Q,`H6p/{H9~ J`%65 [u3^쿂^=҇ #/`أG zs~[9lڭD2Z&8Ҷyp}y0QzkF+]gP"`ȗԵ"l/߾8h#haύIE}RҦtpe̞&FO|99iv@H Yiͳ䓗2m|x,A;W}o+lvL;OYi0'dJmLr|_UE,hZȫW$?TđIvZ-5܅aTvL٨4ũznTڹ?lv9*%x68g=%^VV8Ul8YFĶѭxh !.b3[EP360$pl2q " Q⛒S=紒:!0I/sqO>m^%I64og&d\("7>x laϥ|x3N.yTI?֑]Hyafj};bRWAp tcMUBy7QGt6O=~ԅ^σLZ fA7 Mp1g.qi>? 8+y6m4=TK1[/Tan#/^`-OWĨe y ofЎ'f?9{`Ռ}NAr-)+AOq{sg ;\E5tMabz^Rʊ Vq*j&| =#%6:d̂t4H]Te(\Ke3;>ݏ ;Q>&'`مn5蛶dو}-&Z 6s,eY=2}ڑb k)1Ox:ب7I`@آrn2<!GCf .Oڥc(%94wûns03Yh{=VqTӐڀ\X5[["6Kb< ,Z {3wn 1FNAB`f"b*f3jɡ2IM{9J'(]YΏMMvtYw %2^!Cj>"]b/_:ouhzQ[+sOA2e='źO m^f/u }–x)-Vt 4+MXR?A{ Chm$mw/לKߐQ8kv#[mD`v~2ܽH;gm,}7<=3hB%LspQarMzۮd@^Rtʒ\¦ f|JatI%Z2|0AE'w2=8HW\7 ˟ר#ft?1ORkV kNd-'^Xƌ(Z}Xu(Py꣉dρN Vnٽ =ur.+ڒ9X=84%%` }76MIU}$Ɨ@!br)T$ d%@AZ6BjK"#7vi5mIOw=c8y80'sn˪{<2I'ƙaK٧buNf}AolS9J~k6mTD~͖Fe[T2sz~5iPL<_Е LmXoe8@#`T')HP{(wMxR`d1YMѡ)`̰BɮfPiq/с%*QnY0FHJ;IRAx 'p*_T lڑSm-xf.xU~J6nֹȈ}i<O3ʐCqNpe* e*Aa:(PyjIױfZީ:$x4&GxgzG[Ffe3*s Q~Hpp|Bp/e!`VoSTM"\h's蛬o/ۚ^#AgxD1pP-xv!TKL$YQ##s3@ vU Vviҫ%48KK%!ȡV[^^E.=c3ڹ/+ŜWR22sE"Į=\wK̶NxUQzB/jy6.,e{/asVg\D1;,o _90zã h}^\%;ܤNPA}m~{frh<'B)|`yw%~zn]]@|m_g1s};2@fvB-sfK"`>68 }}C~OX'(P w~d/'C bk** 8(n u\t SEmI*h}'hZ?Ev<K.P Fns^pr|àI8[N}-ee͇/_ʯf깽#Q}B7B|ځB$#~ сdw&W@z|C檷wvy6f i HhblGM'p&89I/4 \˜ x|r2Ç$q'b/Qg`&"NU 3UhVe`T󃖽CpYف>r+ T=npV#$m,J^Uc[B.jLko "4:5f::-C ;~Kwaw.WHgh+`%XkphӲjJ V;a7ʮbK'EcZLܼ6=M^v:1&EG7M-Ԅ^%:QAٹrSGGG[5!^ֻs z=}{ifH@?|}OSD=Pppe wπ1b7)!:!gL Ua}yI~,FiQڭh#Η*ASf=>ȜtNG+@Ž >2'=At'޴yjMW6M 1*K(M,J1Ir!786o zխdR \b` y3]gcRr*]xp㘘?g~ΜHsITvƨnqk2/h >o^4i4-4>wHxp9p1~gP|K"]?!ATФ.-$ӫ 틍y\[c|cv!ٷ:ۉU)1L5/sdG,3'$w 𱞍 EMȁI4ԟ͛K=~@qs ӼhCCޡR\e`-c7Db7뼃NS3 >YS?IHZO(v_@͟՗$D Qv7;,e^Gm]XWCɡ.:'v6e0oߐ-]|uS5TRE?F>N_eM$JZ=rחa^Ojec'fjц*h<4 3qlܱ[8[i ky*{]/0>7<;*+\F#X7b͑xsaTƯ}A2Ɖerj]DVFCU4ѩbpnh5Փ 64׋L^k)8fyMw&|*yLfW{Auu]G`U9iI4j$KyYXs48 '# P"7FJP#-~\wV*mbD9fntRRͬoAQw9 {8^F<8 9UlGm Mw~ h0ep[Ϲf-s[avԚ|8e A"YF EKRJN^{ghZYjPk f(+ړ!?a|z⯸ѩ8rrоN?k?YHNƟzn{p/C{hhW`c Huq Lk7Vδ+"F϶N~F>B6Q<-l6Z@}ʃܠШٴgtaAQ 냗7f¤cN!KAq(n*hTQ%c{IF~@hpPC'\KSr[O^G%C_ksԷw1ߊ6oef#O ;4(FaW`v%5ʆODqMO%&L|ꥤQWa~qˬ1JnDu]EIMK5_@+Ji[n\vpi`]7Dr*Dc^K$ƩjۭV)^/hCX:(ӳ rCʍ4BۘPE 4)i[?f1kÉ. #x0ABq&%G Z:"; K#ɶ{=-B_Q9msI61k# 5y㺎ӆy@Y"Q7&gQcMig)s,~"}G z4E70G'+Ph'g[28}P:nSRJӺqP4r2MjTB 22egr_k5O0Qu?VGdRf{q7@Ӎ)\ ]ޟrM"GD%? Wl'jzUɴ V8yP]Ѱ;.|\6_i.3IRX:;o9(?pp7=<Wq'|n}+$qݫԨS=aSդX{c9\m0p`'G~)4-AV18tPY]p_8&pz.@%$ O|4B(}/cWTqbSж]ǬAӎ,ܞBࢫG2˂;˷nxUک&vT4<@Ê,eRja)2&0B04!V(Bz>i,e /#\eSR7%+]Y Rֹn w}5G> PH~IT;*t$rmYeاXU!aG.ڼC_:cN`xezNۇl;B_tw52=|mkҋޣ+B 8Y_oDž" ;_c:}Zen3l7ScxUH|J߆XnOA$D KCގ2 0䄪2BR {tTICw+IM˨-/g UdCYڼhѵjr-8k{îmk;\'JOTca>E? )b(7xe3fϪozvvfȅdXrKpr.@8Dw{9BI@~ʔ (f [Ffp JR~LH.$m]m-R|^:zWS+&'$_w2)+*~}G*xDwf)J`1LEjHkplIy]McA*wU6閔)ikGRao@7v1.&\=d #?4 NldQ}jV+q?Dfihav-";fal?`'jQ}?~l"%WI|^Aj"#ggBV›"*c^ ΐ=YhҴa?ps{^ AC|RHցsB葢v6HZj% '0lR,8VtlmtJ^GJD](=OaLoԧ"c5wϔNۙ?^'+( 3 Gg-81P8Q``arEF:pf9S("~ټQtO,Hv..oվh[3#ZkܥeOwǠ|V::>nU$g u=)947فDm%# (YYܜ|׀O!ِ=2ɽ檉sf *_9FA#* 6ү/8.I(a6BQB <*4ѽa3:YUWΣ!נFHk 4tK4Sm<26"#o"ڤ8iu4{3; U)_Ilcֱh̕Q:!HSw|\tZHc_&=8Nltg#[pEwb[4mCC>3b5yksfgn`W[KGȔǀ=ݛR#<|U}h)8-JRvU@to'z$kBm5.П_P[)!hoq0_#x?; ?˙zѣ!NZVzfj<+B>fZԮT!%?tX* ɱ ZwO"Em=HLW2魸.JɥH\kkH<8 c_3?ޤ5hӣ+Lq= _/YDH;Z8©{9REVrgh<T"}iۆs"}A`g뗦n?pGwz={+ +W6ץ_ܸ 39 FcaJ >kz;fp+]Ϻ s[ጉ +3c \v`b89Roi8_,|q.YQ_ҳ&M(|3ua|сޗ1*|cۣuoֺs<}_h4]E7pyӽIAi= Qz1RE2k {r܌4﹈ ;&)Ϭf F4?V" .ۙ }>fU6ic[ә_ƴݫ,-*p%"HϕÃqk5oKo!J&ࢩ⏂v- P24*TU@rnx`rI'貶 ;b Z u鸞T+Hpз!g?M#7u>߆g e3+ǠJک3,D|*2-Ѐ@[7]OGQ\wNQT4׳i#eU@DsKh\{2&{cw %19$ne?06 B,vW܊jT}O J6*HԲr϶} R׃c3ȼ1f +?,3b<mJ9bCJ`H ߠP(?X >}!X\?/uWQ+ /fiCc.*e}qdbY:N4Qs%bݜ)J bٰ*y)wPH \^jd9J ۷mki:d7كԮ^o19YRix'IUw~n1NZ& O`?;XzPr|6egǟل/!o_5hia8F#fLڵ(ݺuI UJ>rr =k(CNvl<(CP6T _#0k/o m)JU,]LGh:~p>3YRm6tkL$.,]ti#z7y&MצB9P)FU#A+}3qPcCT?8Ƃ Rb5uM:K43i_{nT T(Ԃ,P%z/#m =nz_$IT.C20T ޟ2Oܐ{)6JaFQˎ(1bndڟE1 x=$g{кQ/cCO?;*&7CQ|'+ڤ<=ůrtvO%ZOXH1:`bMT* dw50ƚVB~Q]D8#ǃgu,vV(z,?_yMSD!7kؑQ)[0 BӛHVM󯘚.|"˻(U2'*&RPpLS>Ь9!/;idd!! 85 (8Ȯ$CX!)tY7 ,) ;Iw#Q`!y8)wB IFn9R9(G| Nu싼4Q!TyF3w\Cls?G'k"yC.D\L[BF{Y}4 ¦H~8ep s1=mTso$+ztf"AVjU ^ 8^2h{,x𱨿1.s m=rY_[۩)0 5wBx Ñfp3͂RG_P= ~MM [8tހ+O g`$&@^ ވ":0k=\ԤC1Ji䇪گ\6TuAm|Ar}4ma) hmt1wszo6irQa<[WѪϸL)Nގ!#FHS u5ꮒ *4W-?̀yBJ"%%n˃C%l?˟|)^+A#Y'b9/+L<-FȌ'3O/ Xf n@/>߸̢p2BG}SRTvMnVn_ztE٤'NR{WQ&Bl4keߕtAJ,[r~_6f:MA3,'ܴP鉤>how'13ܦHm''+mxEP zhViZPK7|BY'±ȤIv/ԯ}!ilVҭXlY)N CP6PPidMp$g)..nK/0Yx]LhQqv&!>ā,#f%K.t;E2QE#o?ݻf&~7X= O`30CU ^ģxNTzZ o޵㦚mn<=g(A[I=~K0jPM OeTk q.nah0^6[SWɻq/c[$ 1Bv{+8Im4!wM! 6 SW~i>؍o ̛u t[ @U㾍!6b2(x#ΰPμ'Ii 5O,Ru6`6kĎ ` $?n ϔk_~Twy[eDŽGƎFr^d}[-jm߿,u1Ax*(_ #O lt߱Bi?cw/ JU0B@+#L]s^I2ݘ57aVF1zaC (e(AȔ4j< 9 F@wL߮q2 +n8{Î"cn$O~Z7\^" ד14o/޻}`؆BM+g65I:@$MIF]~c GCe}LNV 7Rɀz4ӱ$ T0ch?7s`g gX>Ay\E;$#wz8anG:fgg2J{~-krRRmx'¾-ϳ6@D{mtsaj@&e7Wi^-3WC5 L~UeW2]- ]&MbI7E6TFBޗ`<:H$V #&ajN ρ;"V2v}apA ׳L{.BP[qjsӫ?O4[4ᑝ&})r {S"z!,aOxȈ'섍t-P\ [¬NJP͵ `6KI0?{bQڠ5M2n*Fw^~h. .i&k_&Gyz7w]#kBFDl3K?>ܲbvFc K8~ЗLpDr)CcqūG l:v)clʜO,Rf@!ɞ@o/5P41{b6Bs36W#e31>XwFCйxep{(VCh ݼzfUkڶc3"2n/j1/@;%rK9&EYq[9Cxh֫zwMi 1q%_@5xN<?lNMN-po)\_96K'),ҮcrAWΜ Oٔ+kUkwzG7-xvc۪mߦ&b_}ñJ{_ME>"tT%`gDvvԫ`~q 2Vi` +SRC/5miMp][YSv̘g[ eT!e$⎺,\^r>1dx!2ީlxU"V*v9q$MW;UN[W=ҔZ8kl%;O>^Cm~87QS ȿ'JJ]j*,QS0Ri:lkErGj݈[VM# 5GowQ^h<0疁w @ol7d:zFqfĹ؍AHP;v{wԿ1* +ΙFX9M9'Ԓ{rrlIjA0R2}=hVm* H5GB*R뎀X pǗ:NG(Mz16DY~&8 ]CbE.϶$鐛`A 6p;F-U \*F`|]Z/bv0OX.z>[RF 4qb@@H_ea+'^&Դ4vn.y؆Jvƃ.& kxG%kݗ#?ĊcQd!%#vۍBo )FpB̯f:O𮱿-awĽa&ANbEr@n64;/9,d/ 1m?'BrX80<@Q|LEⰸg|BДMvY|TXīƞ՚V:t/J'77?s]`HKb$u!:u` n|O=G3(4α>4Rh<`봄=~$/ v|ȇQrdeLxKaWh9P9NV~0Nr'Z.JvA|qnMYB.cagº҂usz%O@c\2IHu}l( x5Ib`y Җ%'~‰bP#-2Cv:Ó_>b׷×$5S)]?Y6i|i "QdtAcHZ϶DBר94zZzj'ή,A~S,0UeKLpXR|n푭AGa?k?{Զ[DXHV 0DيW1O 8&y(ڳ]Ì%0 p u}5r#m .ȅE8O޵GءO 6J 0GRhAeX /z  Q@{=e@ۘZÕ<Uܿa\o-(t\쌸u2}5Lҍ`U=ZEobFΎ>h`-XFP3w B8)Cv) S~ldn N=1p:9wkc #i}#(a(I\#!(?^sqE+D+'-E  aL;s*G)w<7 @ϙ0XM(Z/Eu4{gKbec&3qǃ-mEË/fI!9&bg<`lx *X㫯cUhLDOiyeF)^#>0Vg\0O腡G5 0lm܌Pc~TܡpĨ􂨲v/> DpO~ WuYpܱnLךΚk_uJhdS5_, 9OvA P*'[W '~.X͋# ^c-kriVCb^. YdS<8\c!0_[g~{s>*Ǭ .^)"~ji!o.e~7ǠD]Iwėg)^º]`op 7kK.E&TrLX{6m1iU?>4x=4+}bˋ݁1&=Zq|z5Dg#;f+?olˆc.6/^ M%uyܝ oWh]C=67 s-\y='6\ `u>:0îx;F{m][ӯO+npz#0*8]Imy^*oe?z]3g3tvbŌnĖ N?h ĺj $3M(?qR>MۻQu6#zӵC^K3{AJ]]j\$;G`y T?eiuANv@U_s6TL~!=U"MUT|.En48\VՊuapؖFb_;aYrQxÌ n|:K&|qa_Q1A5=tDc S5i6rFٶqaӰ p0G*';a-(N b&ޙ'GOkmX5K},.]ytd&eW6x<{YܡKEBK䘏=c'^vsU}e 2)O`݋֯ (+f\OFjb:Q1 (^Ljbq$j Ht陌ݬiCbrU]c ˽;)&EY=gk t/p@' 0J'~.v|;U$T_HiJ[v(s()O4(H pb߽iǕSIρT-XflZi,ZN-ۥ@fO$l^Bbmz+t )G^]\;= fanJ`+ֈ H=ߊo3"5ׁk~t~pP%` 3m10j8Xڅؚ{ihz^@&4e > O ( 0'/r<]Xn~cSY>+oqIKү8˙7ўG,ꤺǦ `Thɝ"699y&.TmZ(h;>+C^ "J@'A,٤"~*>q /] 4ۺ?cb0jQ5>(!v =,X'/4FGɨ)iU:IJ\ST<މ;tH锌GD*?κsve]Ffz)1/ 84Q\ 85I_" ƹܥx@ LSsldTHZlfH:5AQO, /@Xw^:W DrEկ!)F|Ӝ-ZR/V~O@E}mx^4-W2.`+GMhh*;w=Vbn:rN y/eyeߝ2*%,7)xA%>J -U[) ^Y>%YVҸѴ J~&j!;a彔OV|< 5[B|q/wg^驣ņ홊zXtY~acF3Is>ػ~VJw!2q}/3?ϙQ2WR셭r 4a%nyete7 WMoE1ŰL;tWq2yRX_ uG2lհuKk`քRrF<檴v♬Jj9ZFvi4"i5:zQ^3gf]E[\k6Uׁڜ!4E(HA#.+hJK-2w?j/f5}Ɏʦ:R]B(b{^Q+ KFI >Ƀ.}zcLB'Ko"gφ5* ҝf\AD6p4r(}MBcˈ>LEu4 Bg TOH;NӤ nIz=۳ď~୑GЀDߟGs؋Fȧ.[2aB0 * 0 x5UnnLOPq/2 +5դr eZ|'_CSeήq 1|e2[uc'.R^Z:,1xZa+%.z:.Kq`d?;-m , 5)3Kn\%%ִ+rޜ{v~2f+R0?0bavTOĶI-/<Xg=o)p]ehqN Dm" DD:2 i"E-yeZXwa1@+ꕁ+SNAҥnKQ5-.O0w N&:};T<9ءb~Lˆ^o,83`s]BV #]MF`ծQh$hN6IHtpMEi m%g U1^y 3 v֗hd1gwj8?XEtk}'C2lo 8 $% m2r^dn,#r6DM'Zߋ^_2ık EQc&B>>,9nh9(C[ ny8ctEͰ?Z= %`BNJbق#7%+-KN~<2!nF8v I@-H=HC``'Tz]xTTz\J F=swʝغ?Wnv=tDHϣ9l_4K:*[⢎ks +l0x5•/[)I73ֵ.oo MDz#Ri~;{yla3_J+O_PBnTFefc<;"o[4VJ#aO#./I8Gf$0ˇ3֙v}֌ߐo;8ŽUF H=+oM{ƒOjc< ?ɖd ؞L;kwف?cr !"ؐ9Y"RZ,GR(xWkTz As&a2Gb&3oEr;`yM4]RXO]!`ZRG ˈbۡžmh8O)owLUE?pN( /?sKa߄̶*DhZ9b3#i>o& +bE[$2sD7[@\k05lwgF:ZTP[kpcMXjTi:ci((rrSl7xY\9z9F kC(27dɨ}RuJ/rRCB e%c^k6pKM0UCk:w0;0棁ۡHOXib/zbX4"L [:,zQ ='"c ;aND63s C܇E#Zah' w:7Jm~ʃ\'R竑7mrHN?#6-5h3gq|abU0u&*[)l@7Aᭃ@ݣN RKWڸ`/ &8^T$ P'ʈ8ST\C @Z4ȹy,FYNBvE@8D ap*$%^@b 6zGFO0 ߔy6mnfÝ]QM浍iu 3,=qYc6S`;_NUZmÓp-˭fx9:rD H#)/<]^¬JnXTDzhRkJ~Qj׃m>1S7>ġţ]Jp5 Ư &S8Itػ~3wc |½U N&&y@wQ9KJV~mpK,)HJp%$'҉ډϽ __ٰMމn՛N}&IfC|]hy .dC"Bq y[q)ٴ/~3nΓʩaLhXgfsp}8{acIdR:؄?w|J {Gie?a@MkNCڇgүP U!%mE LT >[WD>mnd6&{RGN4aAQCg>&Je5ј#Ta ]:Y"_hɊW$:y/׆bʭ}Ѝ6:01C8)#lsb}ګ7ZG2`Ҡw rt&uo% _"eKA3+Ǎ+Eєt{-{Pe33("ex ~4+鷥vw)P0@0MU'1Ï *BNKo"OӦO=}w4/ RQXAS &G ߑ}D ?̈ip2'!#&P^C ͗ @/otrn-8=> oN|<:ԑ(siGe$vzVЌf"ڞɶ c|GR!x ?ՃC ÛP Z;wD z,zs_P)8\b#QQBRsP TDXqkjcW!dB%EyA&>ژglv]#,Q|1lLd@iz0(ulOs?LMdY).F-B@\@Uejߟ f(:WZM̋3RQhw#=4LYJÆM5^TS1"1/6¶OSL]2vs>ԦN?IpS]~f(Cn , 0T3`]Ze d И^Es6fS=xi `o"H%A($bZcaޙXtL>,hoWZܲWQ䄼'Fi_̅r.goQלd5l玑%\7Δ;:U3 kq?J.,xl"~ 4pEȦmɩ?"wԓ'qW(h&CCU xrvCҖY nʸm}+8)+>ȂTX^oS dPcq4i7&Ej +HzK"y(e;oCU҅`3Spc]7GMIr`n.\o>&$tCb+!zd .gfuw }L$P>?fk]^Ԉf:` ?y^u_[.͔Vu>\c!e4tNdh<Ga g>l4J1 `G-^@&ߪdw1MIX v3"89K??31e<~mOamu4-1c&좢;-CQKBMVܬ/ "T%:GY)ul|nV0'BU+ yQorV}Oe^U4#J O1wbz$>հ!#EҐnDaUOܔN_9XB'աj@㥄c(`dLԠ\sY.@N6$?ōPҒB-[9_W!寿 TCɝ;PTI4U&Ew ~'ƓfmqZ!?a)&O8-H{KgSaKʀ"$2+BU=-ds7C)r=tCB'ɿ=h!PL\+CpmT@7}OT[9yՙx/J@X-7E {v,BQ]Qb߻8TܰJ/Kc!nPʳ }c;ro)O~3b`[QcLZbvEF5m܁ΛE:Zavid0a[@AVd1"㽪XQږُՎ _rdV. R6IC_ziTqj2^Ja {,v3x /ЈT3ao܄zX =D¥ivN'^P~cw  EIX052T3 H\LL+(Sj@gkg?ˤؚpL s;@UEs1}x2E!{4~ׅ|q#t<˙ªk& :1‵cOw^AsÈnE3Ƞf ]x}lȻzQ~i] LX\m>TkroNo,Jn-f~ݱىmL7L Sd x NG(G-5s$ØB :ԟ͚1#<ZbPjm"){fgQ ,˜=Rƺ}!͛J9+HmϞAi;ʗ ĖY h1P7(QVU+}-́70zX]QrjR)VK4ؔ#Y ȥUn>v I$a nlT/JkdL_cOȲ<~oi{Bf"2d\h'Ux`E߄N-JɵZu*pbM/+e FgxUolثnwj #ir{KhaE+`5.[-$^o C54 5~pcIC{0>SefT)^\4\a!r^>f\xhH&]`IZ[~4xmL=Jum_~/cǾ]+OcP} h):>ᶟB&@gkB4 1AҋҀd@e'8,릑).TA;MPNIɴMW,mAI@ c8w83rR[tr L/7PUvS`\$ XGazvXxFl͕Ic ɫ?uĢsuDxϜD3}sF}nR:=DZzN_îXnb%b}6ۣ)+,LSyI*04Vπ5OGf.lDSR2͞jB 0$)*.Ax9bJO.mW(&D7"oCXB֚_~ l Ɣ$hɛlXcՇ",->V+!T uW7Z~e՟F:xk)"^=nNVr~D7%Ն*CC%och!!U>5g9fP#Tk:n5OÙ`Ʒ"U~HCl{ߡz0 TjfoR9SL ITh?;G] cL2*rLF7\|xDe}/d (ׅz*gEhp@l`ѕa. -!3;H un2f?4r+AFHWiLJnT>$0GUkܵ{ʏmj1ӹbk7^W)!5;[@ m%?wb%3(=e-s᳡_V2|MQkд5sV %e-iN,ѧ-mwGK>r=~M/h\PwpE?bt2Fβ'r4 .@gUH(w}p('y0bh,^w^rs,MC*P*NBwڸΗ( zUOS8D6urnP*uĭ`_gRl@uܝ 2q@vDP=z{3) G_KgC }bGo3R Y2(^}/~+edI\>|ǙO$X.-;PET5(IZ-K!o T.+M~cȼf38N4GKzcў͂ YϮqJ\CG4?u|1`êޖY]lrCo- /)$}*jH͓z1roR鎾P,GZ9K >TRGQS?@nbPgݣ塷[WbAuInp0qԩ|?W4 ʯ NgAP/>[uΜ +6s[-q+M,A;wQ7}j.0oA:JجėL(V3%U "3H*DXIblX_/v◉2^1biˌ mf2Okcg#I2^'.A$3T_x4K.As$ߦѼ]PLp gV@z؟C2vnniŵ!cG ~s+\e޸y=`V<'!95 5SZ~C?T8\GY=rUq buQ4n?{7py{Y9ιi|` jVYkIP /1|j>Uvf{N#yo܄pEۺZsQ#tz: wM\A*ͬy< Zi+OgjHJ$8Q.l~ߨ g/^8G3vrBZ`_?]sTPp M ќ>SjyAɉQ[&M!FxFaLmCUϭ*aM6AE]Ɩ@4-9-y2ȩ"'ٴ~. PcoӏP=ujϻz:2# }F--+{ XVnÔ3idt#/SSH +ٱ.#A9FKüf;nW_1H詘sVKD ވ?,4ֶA-PLN2$?7`F~jD*u? 4[`1@8qػ?2M;F^d<_~1٬\jg"0O7a]]13S'YP)à˦鄣SH- ϝԌf@B_\|FfE76:1ߧ1pOPwr >[ ÿnWi<&ٮ1Γ7u}eju{3ݴ෗K2X<_H'<˭I,Ҹgg2xnL9-rL"Zm?.0s/i;9|c|h&T(ak/Z]OB;l'qXL6) hB8֒#ϿVN0t߅XD6QGZxf wjc-h}xUo+I$rr$N31e4:|ANa߳zxv^`/Y#7"%R9s2ng v~G>TdlZ ffthX:X8Nֲ-sB&g65o70jukLEs8&1p7.Z$/@ A]Ljgb ByQgN:6q}'pDÕE~ sOeڳ;BG`Jt[UD1V{^ʟ0I0˳0jtM¶LnBѶŢ1ROP!wx&jщWT %@}3O$m1^4]\[;!/8P d;/CWOC|FiUԍh5OyT.3VyvO"$$DЏ#{ϠU96wK+XɵEJ"x\ $KP+37J9 co^#o|Z$V4gd9& xFF->- NuÎČݟ 8 Ӑ"FT1bNa$H0FRr'fZ^ K8a'l! }nOGo}SUAR1f]t̛Ƽ-CclάCĠAx ;P+|@ Sr2d+D] X"BZ"2 2YAʲj K*,r¶fIhv5Z/|ZNT꧁Yvę|(ұc|U+u}mvئb'(V]gTU 9XU`L쾈>} qB%29fɰ+eZ{%/3̢>@ib2J6m#~Y3_4YGFpp$W1r ңg6ǨgLk):|AϠfM_h?.{cU&(vdS/:3=B?v(fөVvwEMQx{ x"-KŸx^~Dlg_Ӣ"Yċn\}USdz𖾡#Ke$hۻ*iV=aQB'.-됄}oY?7M {#ZS;"F.L0G } (dh>asIn)1K1aܣ^s瞧F)+FI?:yl8&hZuOd"ƻnϝeKCq[m5G5I bhVE_YOeg vab~2O!CId]$: ,T;oف*(U:2ND3X'ȖSͽ,͆ʜ}1VY0'B4>bʑjNS*MD`&f-C0"s%lK-1ڑ@^J- ʹ[$#~iZNF((Ve.NNBze3ΣF5J/cxgGȑ qߝ Dy*u:>4F"~GѺ&,ȁ. l-_ƾAfME/҈%=*f"A/(qImRpک\L/{^8 ~?^z"VLs+bת ) u;r,%! _pƤ++Ƭ搡OMSskN xm \"R>*2E8a6u:# O[V8`quG  Qԧ͔~s6f26+Kތ>3w>ȵ.!xח <dHIML '5[ #:ʪl"&BzBD* 4~]Gf $c)>: O֨uѠ1}u^|#sy:,j)j7bLukq5F¿e >Ν >x U ]]咩9"PLF#e} Z:~ VK|6@nA s~6Ֆx@Q>Kşsٞ>KA`R y:qOr4#&4[ 5f:^=΅Yi]GjGbO:p7>W +/lju@C՝o~B׊;Kl/##4BN6{Dw+,Y_n8 yAiT+DDf"-[xuz#]BT  VhXXv,cѾ=rb7bZA\,qmxh] -q)%g߸u۲WKR?Xsu"ej~9q.3^bl9*6ϫ7Qt;6 1πn7$m5םuQ$?:'8ru Y)IhuتWdWfz|ƅgD\dD}ށDU<ۜTLZTfrWFuٹ^$?{`$G$&♩ ";T CļPgwAAƖޗRwJx#ϛńXBG @j)!N%[~jRݹhv@;]?ǰ}(~-z797[!5/(c|| [ɿ#{znՙ*9Uݱ1G]2%I|#ҩ#9ți) Wۢ@M HnH̹#9D-2U_ H8"3gIR1ඖ4oTv< 7AUa9b,ȋSEͯ4(~+l㴙OW߷I=UB_6{z77';ꈨ=MX[w4?/8d3^6Sl\8/ j5Uq=iqTwЗ,|8 &ߠߘL,4[M5B55CQekfs&xͳb}-շ>:EN+TWHNCƥDʯ%*O R/sAJ s+.D9֔/rnK}8x.{Qp#%9ev Cc,Ԫ_ld[lIc}.DmfCWAYs-WaƮ ,>n~?ď}U]KïQYLJ[6#j dɊݘE8dRNk"|e)PQgԊ uȠus|뮫 q3_qSwQ8+oc 9 ]pQhlڎ}?A`rQ .ַ~grmfJo4oKb=E&:h3!|眴Sp}~$k9(yKGFFd#2;1v'XWD ܩWH}{KKN'JQ}dJ8#`]aI/{bFeo2,F֤?p4^P¦=~aT~%[EUK- n>mIp4kNg/.6dLJ_';Ά `5VH̔Qأn]}a`@t~[M~KG,XmЙ05:y~UNw`zɴ&Ab_5϶Vѝ$v ߕ$^1Hx 7 ;vKw t"N`y:LHLmy$0a<V YUS8`K /J-\c׬ J0xl;Lǖ:3b}t#TERh-@/qB_q 鰊jT SW?pPZv%m{*VXlwʽ_a}rLH.Lݓp.>SGB4yCT$6u1Ei ꍴjjÑdJuڦsw=v#(7Ƚ(˼#FVXl_F#B}Oɸާ;ev܄[7.q,,$*FP}ۧ+Ο l}VsHW{_"<Ԙ_ {_v PQۡ9`5>-!ü9&9wdE* :CKӀj<)*R"#a q#ڸJ#q|\§׌hxjO7v &l~qbp F15SFi/bVW,(o{c*b衊 o׬=8TڕEBfnpvՍ>TKuQm<15Tk(W_)Mמú}׆=gs&Kϱx3߉FE῀Y+fΑ?n}]LӗW2Zd(zqjL~c:Ŧ)P1[ӞkbȦEH2fqGR#1(O @ᕫ{0+*\2DF,RtnR]|=T􏨴?b$t-9P='<荒\ Wj3*/"~-lu)i~"cĽdߓJz雛2,P{u.0v& E& [ !l;(х[we5}* M^+hhgN_9 or _mΡmn=V (ۍu!9ZsuC~H!໻ C L7x(wiwpPxCM ҟls$u?W>uºNX$$qI䯰'n!b.v mlKC؋#ދ05߮Ad՟څ1Fbf<C̆z֠XzU}'K)5 h| 3Գ@a"JVdIDSD)uۀ(t*61a5ɛbܺ3->!͔ytXNzH«S9Z-խf{ 'z(`NTQ'G'WM)~ @?V¹?z#& T~nL0?d#hLϧ g%aH'bhaF_#TAkx 6rOp@I0 ]V-WN>rOPtCEjdתzW1.3rn kb3Q\F2DuESE'1-?i_x;m^qUťlRxK&]SFxUJwCW:5TP &5`S6F0+W6Z3 T (>wSr}xוBodL!HW Yj)JD??ab59s)!\4DᓼΨ4lWx}-!$ڈw}kߨ׿U0CseqCV.?´ M>$}= "yu=v\7.~4*,{5^;ki+16Fւ~!vk" !?L #bb zƟnZ㬐:V|`~B~)=\ӐSÇE[1 C(Dv9eOMwjE0f1Odj1A8+@N> 6c/eŌȎayjk\+}ASUQױؤ-j (DwwZFSdzn mbRfs`МS>_dI$i 9t~{GКZ60rԍʮڑ AV,;q-]oɸ.>\4 δa\mʱ@OJm?Ei[H󢉉 ;TFP}!"Vs|wANvN 1TL /ٟY,\9c*$B !l#F3Y7~}V@"'4k,$a2THh q c:Ck[ CBkTio f'NQ[ B5k{Yg ֻ?!4Hn}N`j3 t]\ {ɾrD3O# Nh/5ދL&dT.n*+IROsͫ_|>e-!Y~t#Ξ-6%GfSZj'-U@.z``4h:0.'Yi:K~M Y:Jcޅ`Ji1jzu*(*㯱p0DCʫc#g(Y?.EΏohPvQ}-v; fBIKF{gALVE?SI+s޲ෟa5c Lr]f§k;@>-sjh;}FV;$Tu:ƑJ%^KMF a1^mHfoIJ^3zK >=k@fg{] OQps\1 >~BA `]hgw[T &+o\9$b}MhZݛٜ@5ttKBjz_X7'X}xQd~f{aRɄ6#xFXj'Đ4\,377>5lyHE"kݞǞ.̀w;sYkZUoC<8U\I"b>l5z9ݛsk.ޕ,:vt;d4[ Tez>qx\%V x?],`H(#{g|Njܿ6RF%/]Ḱ;)v6Ж3 y'&bg-Q@=3֊%)o:o7^xؗҊ[|m}oSV kї;+.dMC-z_iYޫР 6ݐsX.Ls2"Dw=fZܢi`Q W+Osuyf$Ud?'"ZY2'MяP7xd驀wXdc]_E@:nWY;,& s0&dӄoF:D-Bn{? t&UW+CESԚ1) k6ڠBZ)}$ ?$FpD!R'@|BߠǕ͠Z ­DŽ3.`XCtI &j$Wen]zbu$HJ`AsS4D=T[P7r(Mmۭ_ V\GW- x-:C=B9_ b h=!/XV22fᲶa8T̹mc'H؊T8fp׼l_'5p]Ẻm!\ݛJ絴:}K#E:jG;4@5HlQi[P”W\qj > {թdl- .ӡxjƛ͑ mZ;slg."eS9iߡ" h":_ZyfA~'TXVE5+9`&> ,_}y+~]bpTp !{dgA\ T?i@"J[ u\$FG}ZYWF,G(uJ ]"aYGjvu.dMoCL*(>d'o E=Y8S<i[㼚f/͜0 k{(X-)ʼnyJڲ@8e^pzkHx_$X(w@Ƀw{/wG$"Us6qTjV2X>\gh jxv9&$q8a/ [zh5L!x,5ٜ<ѭ<(=O0i?g0J4(9Qs}^"OB=c̑'Bn;_qZ0]XBҲTFeŋQ@ۆu}!Qa[8nCa#jf<^|lp4pBq gݚ"-݋}dǃ)_yGh1d*yQݭF1w)Џ| +$ob I|DǜˆCpSUKxL71lYA M&P1$fUwQKlhp֖ &.k~jjN!GY+3@g2DBnrq #%-QЎ~F]ŀ[QHMC&\HVCl@~т/Hdjv+ !B *9V-%w3>9Ցd,y>y:th_VaI(Yr(lbu;3Ϟ|Sns*^.0rzŧxTA(kHQ]l$"m%اXFCNM5mJ^r|GQ$ھ,k['d?S8L՟2_bW_Ys5ID.̯J"Gf4D[CgKV/NHKP>VHo<g򱖫ɕ`WYm}CQZ>gBnIԃh{Jn'Ӂir;v6bM\VH*I%x7ƮD֍lpFrL S(,goT ʸSju0Wa+Z Sc)ݽ 7-tg>)/|,Mi5l 2@( ^=ԛ)CS4v#E {\űtUhPzONyNؓ}B$݄>Qqr庢Gh.6rTP mǟҩD{m}(88P 4g4ݍP^XU oh(,U~}w9e( F @ug>2:A7þTrƁ:o<88cբy'[h׾b^,'M5?[ Xk섎道|jG[z-s W&U](,U ?du`_+Ũ@@',n..zد¦Irazjgux=wMdPq2r:|v&>#*.`XsMh˷RsYQɻwOF # Uܜ J4q%"˘ 'p]rS6<+YiW)2ٙ%aC dYOٍvh Am_s2p;%(:IlL_N>Lօ"-Zt?;-q~h-us@+t{c3Z-5ȄNnYbęCVbNV}.WC15_!%DLhg +?@L¦\Xjs*c^2-GW2Cm~ҵV K)Dzh-N}|D>"G'M{$b~f\9[ڟŢs[RETDղ>1@O='MXTwbgu;kmȩl`FGt#m󽷀5:G*Y~"Qbt9Zj"%H_hfDz<>y"I>$lkjZQ}֯iع"&M''FEc|f99l@Cp {t&WzLxW~>]`lXya]IVoLފ%jhb&ZtV5o3I UwSKr9 E3T4[)tR/uhW_ˆ]s07|Q#u\™"Xqp_9ۦ(r$pTAo [p]" #@/N# TuRyW}>jLg fPTj܉lӘ#~Ł*&<,|B9#DAC+XBk%t ae \ZSc.ejR:`p2W$oN`QhR,$?CKml!KVK q6l*Z;z aߕ@N 6=]sǂױߥ1 ] ݗN7e2JAMRHiX5ۋ37s|`%UR-N6}(  !_AoBWG1_P͗݊z_50}%]NMZv<*UI.EH"@ ¶4t  Sc/7%nJDݹLW`懩v?'*vÚ2PC 6'yY0vCV}!mAj'joǐ]W>؏y.Jw?)\ye 4I"mSW< gc_n+hX&F/?Phpbg鱄 uͱnKl:ýUQئvK^ DOG 72Wٳy,OK=v&!. *6u,AY,ez4h%ahUBtAv~[V iY44Q"/̭̽%(j 2z/^v6- y:>wq@VVi>9^+Vz8;f9ږHe6U U:[> e -?F|LDb蔍xQ}ޗ@DTq=>ĚٵrVG|[Us|1j*/k.?rqo4%'uYW|9:NOmoSUO0mVS#σw7*qR4v7y9qtA'kة@ˌ ֪}ȘmOYzSbTļ@p;q8]*) A-v4=sPtAYi ]\3bFmw͛UR!{ɣR"F36#/SgYR[ܠnB=o#>GɬGl܎r)_鈒9ᢽ˼"FV .!# v: h}N]kJ7%)"L2= /v~OT67yɝtq JWcJIz;DoTJLnP-Rn6#8n=º+V- Χ &WrjG) 4otBGqFY.P21 Yk 9ܱO*ej*좴xYuo?'MdrQZ̓S{bKUڟ\Kl8{ԌIUw.0Iqj H'2t<@ AtJ@]IT̗9*y AtݪaoLv׎taga%.[NƯU-XgJwx'nƸ?rC⼏4N0οu6l$yDI'bRW  ف`U fƠESuJ:XN @CkY2m' $k-?xn$^ĔJ( R074))`9<CJeKw}ӣ1|MMM-[Ib$}_F\ *AeѶ.˷躴IyʯG;fdG"ƅ#{:£E}Uo1._TUfrl03EZC@ Ʊ=||z&<:sp?zؾI!G%֏_hi3['ܷ"}/~/%яY]?0H޿(d\b{_C9:A:{*4 e&x:G"%f 'w.r Vr5QhhC^B%c1%)qcYLjf^@~l]Gbf"G_E?:w/YNJ׺'l\id)Vkc< lԾ*&vWdc8=Nm.eG15EvW rHgxZqGOd"UjDPI+4@nCߨF `ݵ[C;q^wS&Rjȇm3VdW_VZAf9-/!~tݒF5Jԩt!2@@ϯr5H W/2bgWߦGooO *gmF @tr-N KpG3&$ίR&dBD*܈q9帎@P=ڪG^¦a2[ d*}_VTǹقC!Ev,ps9w Rj;nt"& S2a~U,s p8=y4֎$n%8;CS[%-iI%ЀRf#X _PF`,d)XfBf]59{P;1AEI"4y/h%O=Pb)w۳৴gLMoƋ.S +|7cQ XUr*P M9l<%OhXlsZO &_-;mV2⬂k9h#jAhyOwU/4zamG}epS.8;k=ψ f?>wVܣVw)6a5? -QT@ڣqL.LJnE䁨!GФN +k`\gL4^@ ӒMEWE!ᄌӿuyHNԀOi;ܵ1m)VT'9NT ,P!k>t9ylO0q! wiN[U< e^k ;hohga䓇#hdixCUctu6 Ԏ"THkrvoTa`Li#_2z٣z_8v3#cb/3%:c1C,9x&=CZӚ0FK}{yGlHoX 5ISpGG{V*ٌxWV9^zQ @ˇL* :pSOަ4ɒ2L\OcI7N1xX؅3^-V1Lj^^KRm^(tE[}B85OdR}EEu+\H<{ `Lp3q ZN+[t2V/I,B]PRTT'dTG'ry^x0bT_>@ <$#`K ʡ;8D "r c1;6=alxf HcFC4{uYYv8{ENƯ3Wn&NcǍ% |gtǏK@*_<^'Fܕ(aE( E*+^i$FDFD#){N_h}'.ѽ#P1'kmbdp3Y΂\ 6N o%9)"Vؤ B4'1i1cdl?C)'!Ux1r\ ϨFAV ڪ̐mp@zc0Oh9Jm$/2A7fMYILT;“[Hin B_JowN7ɶ}r2߻,Y¦m;pq eic$3iDz4EИKqa9`AnFyϣ\qk/o65ҽX` ); e 0lKbߘ m|j=(`2LP^"feB3ҖGF& \mC5PFdzJ@nkDl-?/7u5Ȅ{.n 3䝢g{ ; 魎+w^N34m#" #4%v{Oس1>ؽW,Hj#“l'X%nں@keVG y153VdmSL`IBdWXXD,҃8N&G$p|$X2u7TS0]o}U;U _ $PxZ[]^m֞ vlIxYA/!ds~,J{u]a4]Ԥs(t*1dn h)R[مh>(\6;u__!!s0H6?J K`XO\ f _$bPP.t8ր< OZ%ZV>d7s5z"8 n0 oV}l?HA[3愞:Y0{7y18!.@E CCTbJɢsTUInB{_i+60JvH3?B@=~|?G7[V1]S UtKe /WWzL#yץKex:.3NMEp-eܸZIpd>+_0EYz@EάoZ3g u~+0f;'c& T$1T&!BYgWIt>k)lhhA<X-)~Pun|Mi JjOv k16"2wE?]d Y9(O_Ѧ⨌/hV|FNI qpw, sXisVoN`(w~yCڎF#UvL*\ wI˔ <$ȏprW ȑDT/%7W;YP]S,20~x"Q fDghQ:sm1=QfYз1|[tƕİDF)i r7ܛZO; 71/6R6=v9GݍEƘ=H|4KYÉQ!rr]ii>\ҏ}"@w>úXQMA6BȒ#(k+(CƳ+YzAhھǴʶA.-ӇZƆZ׫)jbJʘ?m~X_B/&nսw70z[m&C6!% [1t 7 NP|}Pg06E[.^Hu.xi8ıNeI#奌p0edP(ڙ%'cܤզM樇޴TX?KL[ J*W faِ vK9'f5Vf\-y+<'C)Oc9CP"8Ϝj `An-Fe!=}VV0g0w=CZRcq`)?hgkV*܆1A8OVh<*Qqsx.&njW cL}vuT$[Fp\-PxWY:Ϲy_8WS1'g.ugnyͳi:r"~wHU{9)`YAxZOJ  {(NڑzuLpuaiɔsA{nᨠwO/Um 4^:bb}Ҋ\kJTې M!,tUevdnc@ 9Rha_hr NùƼ`H6OAp32 |[4S8:dP:_7 ~h 3 xɶ2:ShSXpRNor Z gzS8;M`]6~NR&+V a #)bg?ME+0%%2wi=<`f@+$>W061Eo]]D3H=lK @DiQvg_e&3pQ@T3aol.bmi3OBّ1I̱ ,;Zv'ީQuP:%k|% G K"o^ɼ"uE4i1ݹ a당\{gMS*(cF_Ҍb^-TAӉXc9+=Gyqz ^9(jPv_>j>O+ 3n)aK&J( zV['o3V"ED뒇I<%l " VrI]) v^'ĢSwra1gq?T +K$"L2ߞǰggQKN0/Q0-eRi=!fxر3^ig\rWy-mE'm{)(QQ>xi Zr^S_,~ yY)LC% 8d?XUXT2ڣ~ggdKj, |y<]W>Q*|aBd8cK4,*"oq.H^g萀Qdȝcce3XT!2XJܷDz-φ&Afܓ[Cڋxp\CMKb*]|ltDSO}n ~ aQmil!/~$!,G8 f4V!i>'p5%Muz=,@0Rt8zw%YڿЧAq&L}`r=mR'3xTRmӷI4ޗiP0aϨQ&$Dq̢(bbL畢#=OzerkԂ9醊\g^uVckT86Vi{()OP6j>-<,}x2S lmEIDS =M ufIi'fL4W-24jA̩s[zx|Ѡ }HN!u050Hv`$[U%q f]p`-?*y($-j"OP$:8ċ+2 th2Jyy(U5W$-Of. ;NZk#.2ϡ0ǖD+잹<g:ɤ;$ҖL;8&6 \hAusB^$^2i#B(:i-Snݡ)XCcf@E1b,5Aj撐 n 5ioF;R޹*kE?VS}C@lyo `3~-no}m@ba#U؆Qz\2'iy9Qxʺe43ePt[ϕ3?B Z}lGPq(M@+XZ*kK{/Źbqer6.-J ?cQ,(d +x_GMIGi4}$fD8tbFp+C)Av^CƔL\6Hg. ;6`~~ȹyvEi T];7 9M\Cd\\)N9sڨAt!moQʭgHYu_lr%(G',_sE&oGh&dyR<8#C+vs QK)᱘-oSQq KxvV_;BXtI;-rI{Ӆ9MT@MPN7Mo&S.nqFNs@~vKӼ"©P-imMKD'n fdO"ksVHTWCw$|[B`#g2cPUKjo7Rm)IRW@9Ay2@&gZz&!pӼ13>^P )d`@8JIn~ 0,.sS~>=ls"&aUmQ_|'LyԐv3(s9zv}cj\h ) Pvo/R3gmR\ST ٨ @4o p9뤌]ͧWi^O4 mo"oT{L=:Z'3ptRB)ŀݶ2۸ccJg_@LPk\t7 dlrрyhie n`L}oTx'zm*\h'wBDC)iGE" [$֖' W*pd&SxښJ2p1*^N4u[=)T5\ןB9b)Zaϱn5΂cv>m>) ? Qc_uF=xybn&%/d:Nq_-m%$h5rϷMGylK@ʍ3EۑhSCuhtWɖi5D jIgo4Glr"Au~3Z= q|\t^Z%yq7+ca0/-ȍ͌r Afo5l/ś()!"R&޷Bla>EZ;Q\6^a>.An-P n $w r+3cP$=YU3&;4Bto/ j_(q4/GS 4LlŁTH%U9h}_xrefMc!=<Etڊ܌br^Q?rBH.1q);G*ƃ:a[|*S"9o 8G{r|aGmj=M9$E8_yE&uxa8UsΜ_%;|w!58^OؼS}eyt7MOQ-m]&h籀+B7^._~Ɇ*L>VX3|itH~.L䰮!Κ`n:- Ɛ3"T>2sٺ`,H'wSC]vBl, Mv(2n^mupx @83WB;Nr[?ȉ~6Jp CR9Mnw=Hܾvg zAIX# $2P8D+Lg3^.Ej: ?2c]NSg02>ņӉl2u Pf2:]MA]9{zAAiaeV1CƋv<ARlJ|NRԟeGl:{}1΄Uh!{Շtu 4?-OGcw&.`x~`Dr0{5)H%tAz!I%|U18m?C=;z([ zC_J8H! Y&51cڽ }`"rN~ME2FENVMV]4wytoһwS:K'.Q_ JHwQI!ل%T#Q#&W{bbRUp~x҆&?dB#Q4Nzz=HFO Pk*Tqd 3*S#ɔEyD| P"jCC61Wpc ĔXa=@rj0_,N ݝDLN]FAS@L’9S? rA;1jC~sDc 0j[/`&kj\ s^]rL!GPBcg= .SԷ1`\QbdU7b6 L#L{[J!)gC&ҝ > A OVw`نSk-η=9^#eI=9lca!-. gQH0.89soE? ן&qg}+;U0b[h󞮐bjU6Eu>Ҹ)-T S q)fjx٤nt-FTv&tE&pl6N}8ӦN}1 9eY]K*uZepnntԾb+ )[2MN \!nX#vwyG}Ֆu8Uv 8NP%'e@4u=_j^c!ei5CJ}epvd 't",!񒐁WA/^_>12gH댝ǀq̬sJqli%89QQ hE iT#3}$/\T+г[u&ح”ZGEbJpxΰ +p|m*#>.)sԩ$RՀ^ ~8Ŏ2[hUhb5d)!ru|hhGX8Zy?AP$d+ڀo/"sS/6ʋY ß*Nz} *\rRt?x(u.ZH&CIs&>&Mnu0jYTGlD;IxHE7#ZGfY:#Im`3I~1tԜ4Dot_mYS E0hJME敂Uz+0Lc(A dp'7ƴSTU-}{h7ee5oM$AWafOHE k#j  %4ٽ%9~sV`rV*ʴ UES2դ%K}83=!!;vy"c8|bwi Yeύ3FEfP ͧxZ7})Brܼ>K ܖ磳4 c`,W{.Po06!@'! i==!tEۨ @n& vn![/4ɈC-B <ΫCCe /dO9mr_.ok↩cCT@걞0Q-3g Bf8Ϻ1 v?U%c.` xhlbϥrlysr(iƋ ZX]5@?0L6bh TTI׹LЪN`*m\b齅,ELpT~'(Q=$J~7gHFhIR+ lMeZ%Z`Eo1 {1Zgx;<`^^O$aA] )bh(۞NRxX۸4S2E&Áf|4)rcl|M<,(䡰)Z7CB@;ts?Y+nx"ٔq9O,tN9;E 4U''U2W4|6ы~"o 0SM&N2E|;\ÇX+Ca뼊am-[DgYZq WdبGȨ:Qm>y~%\Ļw&B{zyŕJKgyr4`kn̦^zWg},b )\{{p$T -v(? 2+M4FB ,u䳈W҇/=hP ʇb*A1\uIQd`JHp3緐.pÇO#T{?k*pHE(˓ f ?_ fqn'|02o+uRF:O~z!"8 *K%\?IyZO׸*9]bkՙCK/paɐ0.q" 2ϔK›?%Djjsj L\4Jl0J:l-٫RIe@&ɞn.Theqܵ.]_Nץl4;иEwǾ Ix׹ Z>/{o,$Hc } ?%ЬR(=@炩HZשKl.u1P5k i6pv%* PW%/X<;\'+QN&.W%gnMYYbqH%NW(_DŰkPm^ЯXrbۙҜGSځ5k&ߤ2fr/dODhg4Whegdђ-?^I$ql 0ˎ3!bH)(@6MlCT>pG6yח?<9TmZdҲ◇_1Xs+ n[l`Pfaݰ)kZ7>W4q%7#mE*3}~#HUdY'fgE$:!iJüanDm~xޞ8Ю3 \K[5_%w;3N sj[+͡lviùRy^C[M3%l.m26WRv<t Ї8UI#2GLt6&֫a,w٩&&z{ g`@$4Q_6 5r8Ӽf0?M8Y4Y1g$G JbwH*3m)[ ŋ >M,1{W#wr+u{z ; ?3KPUkO\JS׎jPnt~oljENW#v>]5RA N,nG(nP/G~>3›oQ50-bh&Bш#wӎ_,P jZgڤp.p/YQhg%LgASf,)?>3Mt;+|I9XVMW u?>II<^M[eHGKBM8~EvӠE[(vBiEjY0Po6@$sP^yHq45bH}允X^j_ZZ5)[tqf\*\~Q6*.6ˣTl 1yE}hgdniQ=\잳1pt %57m,lͣFզфEabzr! |s03P# %&3Gz!C(`)GR3].<G;UIN^h(uSҸo\xBcupo`OR*ITzbF$rCt# mpNCݞSޅ)1-}#x؄+][IJ$|fƯ#)E jO PmwPDo>7H]7;_ gk:ے6jP 4*tO@nm\CWOk6\Rq^ts@]&\KybN`"wRa@JIӊrve:+ beBLJG03Yv[UμL0j-XحE[Zp?b)lAppW%_N-9}" TptE*6C ѩpi`0w ,Y~T$ஐp OpFp ȓՀg\{\Xɩƈ6ss"c% @q_:9+XC?|prѾ"e=-pᝓ;ir@#-5Jg 1ؘ OYK;H\dۨ,OEbXsAݶC~{I)oG%iKA>Tfnt+]!Q@JPZAV ^pr7d_HiaChһ aJ&:;TП]«o|9K=b rt Tpd.v-7tB j l)Mw>jb4xzEw+G@fm*Aka%m%y{2]Y~ζzT:^LoϏ9*\9[,)2}o}?b3=r/$yt~F4m&:k݋0w KjOl%xZCa͚&yx(m9; R'ƟTm/XѠ%.FiUWOM :{]oWAs&e?WeangohKsuHB@pB6*)>ąØ;VDSɁ5*UN_ZgcDVn59cTۛ>34>dN: ;]SrI^+5XhUkE9),իT&UpHEr 㤂!_0)b+{~JWԥCuT 4;KJjVdQIuN7%cds}\T2yp4GA1*@Wz%WH6td^$fpFyؠ(>08$t>ց+̜lÄq)Aq[PZ>l"]܀wEVB͙(^4!;'8vkd-:QZR9!݊-U攱iqzc96AZШPU_ nr!$רji޹$ X. i9%̘9| D,kW8b@e+Ka@'(AS+z&1DE>r$MT =:z! 3^OLA: @aH`MKqp^Wf0 ݄AgTU99c,>Ut4d a;J^߼):`c+Lr-[C>wOcώT-EZ Wuߢ4wA \`ZA3%xBܝ$%s7!f @ oy?4R%-7D|\VQ4SOXQy)9o- )ED),>hQ K![Cw̲] MCw$-n6n0(53/h[<"(~{W&Vֺl2bՃ&/Qhq1y˨Zpz*_ع\݅ByIS.gnjHn T+ţ)b;G[Z{{Rُ7 Ĵdž7VgnYaCM!Y֦i[hKUTK]Ś&~f|I{6Qר^4&'N-㢼0 0~&нN臒MҮwl}R'Qem;'QV]lAmʿRO$7|WWYw#`4s>3/:<i VDX[KK{hK1̃_8Qd;*3e,xkl %hC`vNGRZ;vڞd߿!Uyo)Z _7dof)DXrpV#jG+_2 g&VWƳowx p U5gM@C(N4%2G!xme%LJdXjh~&͑]ٗ5\iyh1pܛCd螒DP7WVؐ)q|&=U ?4#5 . X=e΀d47ⶄ1qY6aѽOIWc:N$+LDڭ(Ƙ&OYxg]ouw<Բ;(j~}AF`B:-]$a :a~;poޅ0D@8p+ioϹYc+&.4ٵ/~ZiOkXY:|t@];0Gԃt RGP=7a$}buRS>PF$?-(Bra-J&!!ɰSdg0vH-vaւLODyɵ~S adr9ORh'?9Y\ьO6 f}c-_/: S f>쯰 [7<فd̂d=tX?,P Fɘ|F_`/*ɩ 2pfPڋ]vrv5!K. n^[ aǩV8'm8#ɪ2RjJB݃XOS\ n`\?=w,d<6-}6 5zfBx񥟂ђPSQqC\&U_b]D1Y [Q4J` ZІX>+@.X |z"iyOo0h Y3FUyVJnCq*"wxQXogZ<ߪ@ҿf֖ zk cCJ- JI6>] 7+^U c<}0 i74ۙ\,ۄtj; bfJ?/ ה?=Yx[[7r ۦ됊js"yPpyQeg [^svgڂ6j)ؘ(Y"E`W34FF6_=xf,@Er(Fwr`1wxHy 5fR^F&eQm#m*`6Tdg &^|@u s^bFư,QYЈ t0."s@}n<ș Kw*_zGO 1UxA*.M@Ӕ6Gu p-)>%becb 4]hy6v!c4(c -P6;W%K08ӠKV[' ͗g6r i5ZIIvЈjmJDP⾱G8 !1 S)_?J(aDz`y4NDgmc87K+Ұx9rT4טfVsSHKvsp ^%Bm>Ew!$TL(@ȕdiijqJ z rGmy +lV Ɣ_FO} a)(+ ݿ`躒zuw80#Ame]w`AQ᪂=Xs N T~Ūt$^( U0 Ap9)a]Q)ZW3ЋTA#}sB[$$L6L>A{iIed6c/7)؁mpOWo)gudto`p(-֍7r3]JQSū'G?'wwE߬^5`l, 4( zO^:޸3+\Bh G 孤fˊ Tr&8LQlӏnbF5@"2`=62%`yT#a*0Z. ?-fMA@H?[2j@?.ʞ̰FpN8|! h^﹫ ł19̞3jc"k&ܞ2 yLt2ؼ7Hgj=9| FœBgmE8W|iS\JyOv O^I=d)w,ݿ~"NuT(+\F-!ܲo}#;St_[4uKR#$VLݖc}K皅N*j糄$k1F2J]k;-HM1jُ]ELaOǜed%r%i y-p];01f ,x%-F0^#r}=Shͤ@mV ~W«f;IHV9iA-Iųtw[F:h7WʢLٖ%i-ij08vCYTPL#~:Zp3iSW]ŭcoH‘ ̟t{* H:x|k"REq_8u׸PMx % H!ԫ0aZKu4 /!2~]g^&6壹E:=ξ$}B sG :?xG5 yH]'V6uIt "d^H)&I;9[_g F<R 9ur;;vqA?|d 7}2{C>y-\}!ewHl:{U2̮Or$᪯FpЋJyn޴)\Gp*!]հOt2#͇@L6š4sԔYtCj4,p*9;N)2e4c28HJgK&gT*͇pt/&x҅l n U:S^s|OMk]ٷuh7?5&oޤe2;Մ<7:n?A4CvKA\]uro^T90=jy\ elOO~D#'QmP&7.ttiRzNOUsZE\:<5O ֢Ck#L{Tv5d)Yy[! ɨ>&sJhx(?Q;̀nwhA(B|2^k H jܲFn =)!K<1@0 p4hV4^NI߮X٥鎃YźO1.WN|9T|=ɣavf$RU@#nBM\Sͮ1y68Y+L.5U ?}k+CKRm4|l Wx&{Ţ\M !M0ͫZ2in3be*V{Ռy^KL;I;'lI>S- 6y_2TFDusp Ɏ|PX@\F#ziO;oWl$pm-pį71 >zSz__ Pu~mrXH*eZ{%qDQPXfNtՆeP' ?^m3YHT+4x=`OB@+=IphׄfN [ex5yq5oK IObȔ,W мP#ncLwզGbvZye0腬"DHc;z貧F$cnMjs_\(O#LdqYATFn;ÅoK~m(:.iÞ"wC@Jl tq\:AĠ_wt3o*GD_SQ,3Δ>{[|sڗ;[lFh0{˜KC*j94R{~>-) N+'TȎ 'SxE1Sz칬 (5:mn~ sÙPzIQG C6> KRc=u gpzslH^sK`G/mBkj UX=:V3QFA;~|_^T84ʭSYKkHHj hs ֚z$b@հz:j69m cXbv 4-?}2{zj]x0m1 QQ}%9JZ1՚EYE/c)@pj}_F! a<,Wg8qZЦEPoͳGFS=rr`Xw9(|PR [snB2x3a]ӽ~6M]7! :n /'Wt՗Iue/%ոz_| u,~8˵SfO\N0'@HW}턙-b3*ya/&cP^\ᮘ7JA'v-|󈉺50bA#l%olm&ÒzHR$ij58K-<W 'ba[Ɂ (q|"|3Df:*"]}xy06\sfOW&z?YC1kڌ9zP-V|)V?eYs*)u;Nȩwا,A)bɢK;  iѬ1l eمh{3R.wMP Tsa`Ά'knHQ]D촘vς8P\p${P c$PA%7_@Dyͼ{3K)p#Κ_EMwLT%}ROО6k.?6܅/ŮtqޏSppppIúb\p%,.8[KgrAepUn޳t?07W&}jgYpLWAf9% 5u׸۪(ᗛ }T%LԘP3OEZ| \.ICw1 =Qe55ʯqpا~|:F4v秜@ G޿vʂ R9g&H٠d~fR64aU ղb!'Zٍ#|I,1Q:Sž*e>O1=e7|q\`$0*=R267tfyR]3Z߂ǟ J "Kl14Ůz |'F;"4v☺I䢂ScWW$_ΣZX˫8V_&7 bz&,/];*Y9,ZyԈPlN_Ku9)*iž$Öܼ_,7a+S/3^`$,s q"YHFr-Ql{L.0}9cB6e;`8T5>G~|Gg$kQ[ W$grj;EiK4G@\2$րNJ`*25pEz/q\{AUMhu&OPl?=MXkqXO~͡"/8]K9jb{QgHyo;/WpB{%b,U oz4<$FSG('z3KQq}u:``W XYsgca1TQAD4v:1=y}oJ1ڈS%S'v"XNVqUPXodoE&CW=n2^oI/M,VFG[_^l?o3Os$i#MebG A&qQK!] p RW|hh$sWSP:#~d 0 jxyCeMfyWs Y+{j_ȥ< jiO Ͳeh|r ³Vo:3@#g/=Kn|(AE53 hv<`Cl8jE GHM_FEB/9U?W?@QdvKE|~c׷H_ d~Y$RCPK?EI >v QS$#rpv_5j8ٚ|PJ6?]JH\._Pq݁2'oŏ z lړPlD`vVT iY:#"rM a5?e'?E\$08LlEAW#y'tTYb QT1b`q7@ dY7XjnEr d&gzX5DJޕ]R{rM RT!H53ðI %='TQU'qFC;&OɸaJCD$.5p>D¶ X{doUo Ut/ٺehK06 uK;&K(oC5bK;(S"U,(Տ"E(Pn]n A™{k◳,ѕ/ŊOLR ɇVY+\VwV}۴T,eui$brSl  7Of&p*֚#D;Yq!}=1~=v>Nvwƿ2nnj=z32S_RSؽ suBG# M?_RB0Yk?6#,Mz+ujÙ%bޡ9v`tF6l6a?[ִs͊>_+F|E+O("dEU!y ?EBEպS14yݓhx;>;Wu<K_^AB3VӺaDP=9k]VΕ#r@||n+W^"՚7Hq12/UISdzo'P\䞟[@W`Jd\_UHu_еD\җZfN{g)UneSi@YS.*Hbtd7M/H êu9U3ٗBZ5^6¼2rb8m[b+nt6;+ 9F*^u ˓ `}%`YK%_@QakV (,ɾ!1pP Ք?P,.ݚFމ ٟ 滰NwJ! h`S ڌNcy{teߴ=dv-:V捬7TAL]U;~+\zK UujFg%;Q#lhrLґGVЬ2~BqH7x :{l\VT`j q jCjByc$eGk*%п~1&hʍٞ]kby)C5ZF/0Q\F<dopzgl3ATwfiNpyYjӅJ'aӋnݜvoRZ9}(،KyAMq3/p^gAY* ػJ}NY® ) |hZЂ{Ƥ"-"%gdwsok6[ؼ6LkkC#O;pKUEY=#l>5c_Ӵg/ .:li18~RL/ xtܽH\<]^4AU#w]E8nhH0'. +HX/c$V]Y-OQRшe:z::2:$LrL;_J*( =CAH/y9֩I.&kXKMH%YJ ّENYuq?N e9vKRmk2O9/*EQ" MU:}D%Roi1 e:ay!jDQ22V_SQijwoAnki}:UX0zKզIY XbgB-9lvΗv5`?a=! DM$-4 =j+J/u1T6EC@>ל)y)eӮEz.ñRM,j\$ǖ1َȑޗ 4竀$,rQdekryT*h ]LT [6Ͷr^AƧ)kI%b7K It毞1a| VcGe(Nq[_ ]ls&g.HW"ЮCJ =+7_mb=PT:N~+_$dGħ  az`%0%*պȝB)Ix/ƃH "Y(1F4_w Vzx c= CG0H>HXRl 90 /a/t|~ZjmvW\Ý^3[!#gϚ~F4Rtl-#,2_R Y$z^H}5Qh?FNrK(Eɹ#eewx|:-F d&@sBa*Qz Eo$"ˮD+;/U<6$749( O G׬^{OA"WDHxB2sɾȅ,$baH@!,0G{'ml鸕 ?.Qw!Ccdt{G[O7گȦZBU]FG1a&):j72m| D#hV j;kH#6"'JJy r M]i/z&T5Cn45TSɐcQ5hVXXU'(q-i+ kY҇+<)ua{6RAEyE?:hl(zZ1&mPOdX>~4?ws<H}R%đYTty0~HgSFWޙv &13j606i|;&d`T ,.O]L*VQZ1雇L&+7 w{' Uk<V]tU?iLg{8~l׶UFu<^j׏-fvYӐwYO!*k Q#<0(П}WBMq=bNKNs0GR +0!G⎀Q}<Ϥf!8! " tQjѺ"=aGGpmx5꺿 @ b>6Q3͕U5x5kѸwz?"2gHSŝfnIJJ Q)|k8Q7A6lDs9o-chk1<ӂRUlIS4=ȝLbۢ$s7XW}jSDl ѯxV('.(sBUmR!s燉]Ce՟*~cӢ5&9v8Ysj@Ê(=-dS@uH‘eFhClTY<9cW\};m~_&< {x۔IbPZ0 r4(1Tx@ >76r.mXM}: Bv=>(+li9r96ycYJ-.,.`p *{ɨbUqId%B|oZ..&&mueSթX!!I¯E+훌zu11Hn[dUzyaSIoCWt '\Ys40i=2}gV!gXDb4.Sw*X|ځ&)1rwZb`g^LHM_B& o.%$:=X,1Z,0>c[z%%>+I5L?F2vK Pe*PnfN}' .oPeut5S}[Q67@oR2q?8MJ]Kw_S&܄o͌ *0c,GLIXl c4d]] ϲelI/("/kΞڃz~rб'2SD%lO\ Օ%CڊClE26UJ)g&sS5෨؛K>=a޹)/Bn}hNE9ghD  \qsTt8j8nʵYdNy8)͎9$yek D(twVF;aHRK`+3cR&udžkyu7#<;9ք$qp&O]oOBI[mB><C)Xhcɫ ,r医cP}ڋ$: Ag+Dyqhy.+0\r ο"xCs ty񢗓$fb헦&FH9 VJ'&kjGrv% $Qzͦ2Rm+ 1x) @ᕊ\ ʞٛC~ѦlJ܋{{2ĭ2M_j˭CK]llOOܶNDzc&vTyV0NϾmwL|4^K;0JkDI@p(C:g:Qի #0dZr0P7!TDjW?L oҥrpG@ܑxA\]:ʹ$mÌsrDȭ}k/FŒz[jNKmOy5 TOysy*ߥAA 5gыin"5ҷ(î!y(RUJ[+X{߮bGn^Wq˨QF㠼bI3%nS[0ƹaoT^1V>%BH"&u>kvkOg{5Vݗ>2/6=-s ¬K=S.'o}[c1”m''B1g:vuF1L&C$(zncOn?>-)Lx$*Q(̰\[kyBb-/G}D'p2 Cs{ Ln~ej*2D(7cor|;a$J~~hy+q W lqv a9e"k[pjJSuUuiNt dtI;OԷ.p-Xzى SRIX8a>tk2Tu[V wiBjx騼XkMi F;1&֭y퇼Y_d1ϡļ p]i{CFG$ˇH4;&=Cve-N CĴ἟>h9XβH<5Xa92_FF_Okϩ]X1H+{XWg谱hTִ+99\q.;r~?&0 3aglօW1z̤ p/ݳl1g:*]L4H븧Or\TZU?<컯V) IEӫ|8a"_4 XNNPƋ mN-0+بcdە$P n }J\;jڡۣHu6|Av4tNhstGmnejRSܐVͣ~?1m=Q W+GʎԒ$>Ȇ(jj!R/&bZzÚХh#Uqf1eM+S}_T8z.ܻB Z& 9nR. {lϑӍƘs7ЪXl @Zr٨D6pMch^lbW.sߧCTqz~f<܋S o&5k&BF+b>5Tb!?Nv!ws4."+y[8E [ǀWLo9EO02hB12bY.1/6p 9Ї.1q#STW{X2D$GlvsW6q/@*d.4<ِYFu;!̶8 5^eʵ hXs>W&8BQM3?Y0N#V\MD.t7{ *,O5yJkMƒSSvKchY`5݆I:flcbI{eHk3eDIdC9NgmbIY_:BN!Z&T.а XGDyzۼti; Nm\{*o}xzz]7 txnyƘQXZzX0E;3d7[ RU=6P \=5S?|:;\21B/Ve/1JAOrKNq-@!hx'TtBȝlV}ͧߦ\3@ b l=`<Js긪*iNv.BAU<HSi27sԐ<[`lUGN-$i=&Uʿz:''Z呆 N_u^Mgd( ?}"#ܬ1 H 4#DQEkn`PJ&BgJ|F6#88[HۉҌ y Lk)U٠Fy 6F+'[KuWѠOPyD4TUoDo@<5Y`SN6^jQKQ *wXmJ&dR$SV떛hܨ4nnZ7{<]sbY_UePkrb03_7\MyE&7EL<2Ue9߬gV7٧VCzݑn^ϰ! ʪ-yF }@\$r_Y OS .Lt*%_%ƈq^LQ!&v4۲jD 4޹䗣Z 7>~NL!>J()gr_TndvsF.l rјf2A >WkSW tmv^"qJ6%iU+u-[A3QѺ%AR$+TK`y֬ i;AXQTy ͎vHv) ʢ^YkB^_ۓGXAZs9Q:Tir-kW0jD$Zuz5>TKK0ZXL>!d[Y(;O,~l91-M')jekxRqsRnx2$ >.Pܒzl%23Dh"`ɔ|Q@eZ,M늂; - JG%RwwOQɞt,pw@@(֞Hzs ͲZe/NW'sg ydQV5 *GwTV%_ C=($U8 a&JYATS."}4i02+>%J%0QJ/vk]H;ys$H"R&MzƉ>e;}%`=acz(y Eл}uжѼ]H>iOpRfv6+0jo뫩6֡9AxvfNƑl <RѰsřI)Biu11 0?CˡvJKW/Ȟ_w\0Ď8VPI_iX{3xmݤ~&׆}Ÿ߿ofAD`]iO7:Zl9he_Ȇ"Z cNk9+v{hH;kr-YH[Z:-l^Luݰuzٔ>yf9a'˨+ r XScbPIsj+%OSدY1k--&Xi>4o2mDwG%g*6.h8 ZӈRT4w 1ޤoH`W#ҭ3oSItXe.&CӢPӧ>px@dCfvB!{`7 x͖Gw>>E \{],[hUor-,^[X^ǶujmskJf"%@A#Cyڍ']k/,+Gr*KZN4 "* YI2knִM6anu~J8skurt]]6rꂃvC7ee]ɔ໇dg4 ⋴9 u"X41 {_EM̹ #Cre4d}[>HE#|Br6!II v{tIY RUxT@TDߴc|/#8 X4}T_ uG@9ˁwYlz d$]j$ҁk-5RSƽ$F8 떵o @ ۼO<21&|^DTYn c#}&)s`uTseJLA=5*O*= 9]R& 0/* ŨSub6=-nGc֬Yb% "5I[MR\p^^]Sg<2xض{Em5RH. wHl[#ç ܎AXv?':,} _n{}4yzo\ƍ6.)2<82X,u]-o,}D210d-DxG`5A_wJc3$O+OR/HFhK.Nv~I9X`T)Kф(8koO~Og8g<ޥhq7=Z' r# e&3s,=3Ypifͭa{:Z݉ J8H^{;-[r+OUBa< \|We WW4.UȤO5!3RX>E>|d_.`Gӯ}W~sl:IR` C0f:D%J2w4SLЉ^z|g)l"ю1@(<$k)iJD@Լ|8ӆBXMM4*xF {x{B83fZ1]QsfɪV&^ =jқh4Q>2Fn,#3‡ Mzi`8 SS49k5:A~9p&>9jkgF&R}s 3Y8xtGI'BF͌ ^B1n%R$V(Mz"c YY o_NߖPvd%Žlޑ't%dv )dXwc viej.6B]8lz0lƩO[;##- Nduqq$1.OuaP+r% ӗ^j8?tVu , DT"Nk-8bZ|FFxPWmjIq1r[~j;iB'0ҤouV z%<5ei5p&jҌCd06XI>]Yҕ=oOҢNʯc{}oާ 6{{buW^f+GAqrnNw%0Itl9$K r8](h2Nx9zdv |cV;&p۞Ea^䎢6Gɼlj#k ~e$L!ԼZ;ƕ͝`֫9%@r&.-@Rk}s>ʡ u?L,)u'6ުЖʹU7i 7CHA]~b'?^s]!`R&7c=V74f_pOɤ:h1ܓј:6MkYP.Jn|O۶ 0Ei=o/B=[HόzBx8IV` /:&{kK _H? 2;݂1֪Jy%-s{u.pu_#rgD{ueʻ CdmDc|!LumXD/4:bddɿd欻 'ֱf -wqzJ9|"w&p_r\͡dQ)C1:mZZ87o4٠Ftrz{RL*E&RM]4e+*<'K0HqSPTQ~!qܒc_7v~身^wϵ-5 š64 :m%<] ˁ=6}nS>~p%4ßf ?r'Lni(%XdAsArE#]ŁDuBN0f-+ _M~d;d Ku8M) 0|Zux^J)Rc"y=bTh.+^)~BtKps uפui}_>3џe"iEQ@Ub?sgj=6fAe@֋g8pWqq{9P%+h`>%%%|t'ξ /R ͟UU$^VM@+2zfFQ~a7!Vm¥}cFW//+ˋz6hpmF^1*}u)!lYSY0Kr#r,rsDdʰ*)m l%i &}yRT<6´zc;yR] 1@o LW`6FC߃[~Hy]v<2Nؖ~\I]'Ӄ wƏ;{'1Ya7M#TWaOʀ-OttXZ*p7!9༖& f|t$H{bߡ/߮j`0 Kvjt}U6h(i O,}+ϋED%DiVST5,e@~^QƮ?D̴1==D?$/wxB|$8u)i> hN"M%sAY80le(~KpPH42Vs|lR }v"\|O;V/Cy7?"|~%]rs qĮ .bRv⭉Іj5А`\R9ySoCP٦,P -89ͨz-VR?71OCG8́*Xof>b}!KR'RIz8V;B}eQtP2D+΂L|=SĊ Vts]Jp}^=g l=O$-I܍dg 7zGf|JanizI1Y]hx"%G zf/6~@ 5?h(/onQZqCG&Cԁ`%B5M߾wp0X3˓XxF8~ YUV?SK.k({d {L4LR~ ]O={βGVN"B{G2(/?%}K Qf) | e_\;^)`4.+:*LFUٝ;&}fA ؆|_0)H>}q-~ҫ*b0#&Yƚ,r@#NE~#:M '*Rq#6ǃgЋUWꂊOȒmeXkwINɄӗAP ?C;1pKx@ &kӧWU8Q`]uN$ hV4,CmIXĜӬB;w'=7xڅbST7Şa=?KP8[-+52Qyrsjufn<_4c@| 9=]ǢPj69/By]Xim-awM8^ir 8c~V4NIN <+zf#؟h e57A]/0.MMR(r]68 Ls@8 kq23`HH 0k"ֵ)W}0ɍ~L t"@ o- \`,eۘr#0y{F."e>s[Y׮Z JBj<\5">CdN  9ŏgbݢGfl4ytݫx}΢wJ6S ɺVR*UJ qąFdkI݃eI~erJbki5:xɱ RόY mk2CLЗn QI#,hZXiT1"&<|]; |8gOlt}L) c6\칐_ܓk'@EüWjZPmc4>X'KU)OrOM(xGʹτ bO;@)~S4y_WH %v(LMnNCgMsOKջ}5.yKҼlGY]s]kSw:ᆛ4X>D44 DWWD@OY@uQ¿~ǛB'c6CXҒ8p_,N[1MoTbӏ)^2VNlpec&Ը< KU/iJL 2ۻtJvB}ԇ*i8d :&xg߲FjZ|\ϥXa\w'"u:R1Sheqj 1ݙRJs3ZNEqÆ!дک] W}2a:s9&hm_߽sW5 kځδp^-vʇio*;*N HH!熍aeq-l,A%jXNu 3h ;EEv2B*C_0KG~{ ahɜ?dn+^>ԙHΠ`iK6JN_DȷPCY24A;3P$ >M lnLI:]^Nu L7ʽ~2{0MѾdp+ VYs_Fe?bK@sa*6dL?1H$P.(ݩ͠?=XhDcN r߅><9e0r;7To>bFTј>n 5y!HvzȀwfCl~кbG^CD=.ܻMd씒?-qOEeujoH87bop{VWDٱ4SGy~`Z;86!a)U'-Ju0&lMVY J #9"t*vCTocgNG@|!m6ju t&ݕr$:y=W+6M?8x4=O( bqT gG"%y%PYWe=RU]mkBNh*]ufT {oE{cjF[O(1l3c(S[ Uc_)wDu,m, OTD3# sҨ#ށ8q/Ίmu$*s^e1v5D(. Gq$Ƽ\fyX^|N2RSHy*Rj<WfHB,&oƝa"I4:ոl6 q>?$Vt)Gx" " 4Fb &Y,S̜*z1oֿ@K ~,֩|jkKY סS$g2)+;Y&GFrDGًhiL&;'."j[- ݁hb\m`9 ![9:<=;{K6o'TDoה䗣O3={Mob{Oq n6B/Ss*1;c]GR!hIfKTZX@ޱYK6"a85 kmJE礃+bkg_rsGrA9'سjٕWlA :Eخtll<&6zҼ ;7lx 5`:Ŀ}50!$bjjr>dz 8pv­r`c?2>QqeencPwo+r4k[$uQgnaI'L:ucP(_OYo,6]BP&GKfɾR9\+'lUhc:KN ^ENa-kL.Z`WY_EN'8J|*y!ﮂH|e?Sp QfVPg/t}g˯VOlD/%PJq-BhH֒0b>ɡCt+0N>E+C JHw:$S12>K;zpHTyh/t]R>IfyljopN+TZ2\n4VzWGyVGO=橢=vC˥ `E=]Ϋg^.[]GT\/5goÙ?r k%6IZiih^8xU_\ 6ʽ8aI:0$jO1o o=3 .YTrhDr^5L'4b}z1i}-&~ [&0uz6V:g؀ `ePڕ "(F]u⴯ (g!bCSI_P{ S/ҩB78əA>Y(\4gHl/9IUhNɢo| c5ehSi_\~$5]kzQ>_h>a}F߱ǐ#*!xIF8`\"m z3$IMGf)Q#5W &T^o h60#] )8];/_VEE5/ΡgK/!{<ƌaMyž8 L3;*(C,\=.ܭ{MGrm}SʯQVw ΰ?b]"$"ZF YpPK1F w}}/vQmYPOf:/!g5ѳxz%߷iǼY݆wt'JIUxn"|=49m븶e2cP DBv_Q||!(@E[4C]]im[?SB~$$㞮PEyinҾ ^or]hm#TP !ث<J&egӚtўax Ic[D ,K8&ܨlp "AES:|f |]>Sv8`cĉjDpIZ<f+ BoՀɫN0d7['$@s~gcS"hd?`8% ÙѡXp K`vfdc_w:ġo"4612Q$Eȗr^`(v7'LcesnK]w1'˩1𛂾 a3} U/@_fl!Lsp˘}McUZql"SixaɦPn_iVd1ߑL1Uճ>b'۫MHp/ c, %vlg+$oj]!ޢLvZtT|xW xƕ{3SG c:9UC>ȹcS-1-OMWrё"2$):Hp?3PBDhta_v̌4|QEőiAu])gyQb=Mqu?җn',ʺrz[/;ܼw wd@; JÀ{PjB*3QJ-M"nεQ^UxHۏO`٭@+^w_M5ֽX{8O0뷱 S[$*JorQ"lE odÝ%ne7 X{]˙1F" RٞhQw_[<(5,+y%{TJ p{?h9n'I5h|., ;89(}oFWKӅxmS%QSZvӶMb!RЎ"Vk,Ϸ]oTU#)B&v+붇6Blj^S;F<-|T;%Ф)$.6;yYFB+mve_r1tEo z~)!QWOZЁ:%&;FLW+Q\8p(9iۦ{Vմ+ ߉Y9#KVZqo=3(hgڀ} Q\᤼)X!Z*9|J 4Bw:>yũV8xȅ 2Dx2zD6PҘ:FmM \X -W-VJQ_OF%5=O>G,#Q6tĆ< B@xi'"+Kz+o%b;V-N1ԾoP2.Wjc}jEJB r2N)9B5%AI%_k4ѳHڦG)'=RXf2QW YLaxqkZ ;m,SB7mQ=唻[E?Y/Dm;͐?|r$`KԸJq1f%V!dnw ൐6xu +BǼDŽa;uˋ{5:GõǼUDCM{P7JjS3zq*p;1{0*Y[BR09rC"?t& `* %1L& |l˽A2w7d^C;O 1ˑ{f$h(W:q&hZzWXłH0mΦM,[f]H<@J $9XdwFIqU3g?Z k`>Ԣ )#?p)RXJ_цcVˉʎB\ƄOEIJU ;=\Q ԒFVE9js]G8H!JkdOu%hүe!Uwzb)OxBZ>CYxW v X{WϞeDi5~j0FRχrZ=+ÆSl_0k:@S&t<)i%Kp֋"@^pR}4aKk"4`~Jx8i?nb?Fv(7pfDa%h\bm8DicQDcZ2"m^.X{ 8|C(Vxb{)Ȥև:o&0|iOz q[+1_IUR3̤edip;%!BQiadMrGjUw$I>T+Ţ7.|JPׂ|op pc$Dj! ltn➮Aj{B^$<4P+Q z{V;Жe3%}YTcb 5K5wZX{ WL_М7KUUDCZLS۲/y-/_mȞKW`unر+:*FVgךVy64UBh2\B@;obf|ȜHڇ(q1} ^'590L~:?݄ҫkx$n4WuyNƣǭ[#Yg{ 1 H[3Ds.H,n[@Y@WN[˩IVj-&Hp:WpU "ScrdW}X˻GiB{' 8VxFt]x[6/#Ht{sHzHv=]/Cuxgɘ׍qu^/ shWO40yP!F{ۓsHuhp+E26ԗ൤37! _:wɾզ 8Ooagk-/gXk_ȰF@䙻D 2- 1jY;u+u]OmX]Z^å%CG&'w?O1Ü~1uI< M,2]K8 ։Kr 29;8>羿ץ~W\6I8u%ZcˤvF`MUy։W[xLJ $nJjw426"]vӌH?kZƺ|2޴CZGI?巣qkӣ^Մ3el7F8:@g ~pX] wFvp~S \6DSIi23L1P+Ɗp'` ,/tWLk~]dJǎ9^6 ;)*㴔1`$SdNڧEnj&H,=;B$18 zHEZ,? Mݜ1n?7鹥sb@hշ 6'QG/.;lE}Z%ukJ,;O]? j$縒`5'.Y?ܼsʬn#(Ў1/%MֿC~T8^Xiv4! bM'/cEI n skI⇭F:҆<7&WX NXkLXz6,>@҂94i vUSK"+9=|1ؔ"#d#o4($])69zOdvjpHFM'QDK,c $[^ E gɰ\La@ulUg:^ь1Υ%Σ92k0f6)m8Ca-UKΗj4zn]]TjNJ^=ilv'.u,&2ݏo:2ѥe}{2u-ߵ;[?2m/B]-3׎*2 2j-t#H.?>7Db!YQ)9tTyޣT n Nz'sǺst-%~1n}UOʁ x5ҁw3Rup iIޕX2'|tA@yYW*Eeʬm%(zNzOZb˼ !тҸ֌&PU{|(BKp1WB!oSCG2irodwB$Q&3ހ[ ʔK37I` TVa SiQ=D57/M,LQ6v+ETդH&xc}A?qWGGr*l t,5V'\Jz xw jBv9yM"̊XؿCIHei]X|Z^-DN&k 3is3(#e 5qbјHVjIWTDnD0׎IH ~y9:AGEEC2P+{ȻAp|4F-89vPP8RI/EaAfNU Fkb!_a-P@Jfɰhb""- <.LఴzBe|%#sXXv'O0 0F-cKZ+g yD޹  Btci)[b:FA)t Qز/&J86M/̯$N-=Y!qF dp_ Bnyg⼑4\n_;>bD/V3}Jش*^$jq$.#B۽jROOZB" Zw. ){ |掙4ĊE\ `3.y7MS۞NdM|h/5h8piS=7}eyɺNYs^Qjj1ܠ,PJ+s>̗- "J E {v0m򀳚!k+zAiQ`EC` 1YE;>6YTDs4=*$zy Hjrru3,offx2g;Vxyf4ɒVSqV+7qktpU=K In|νdt^xIWZc,4sKuTg'ܙ?SmC<+k^7{PIh81slHqTH*_'=t c0,۳v͕cΟ4m,QPT EԾСth"&(=.oed3EuWk@кL9vaVĤW3JQAĚŌMؚVߟ6,bDfgV Ku"qDŽPPjt ;w%FI1#Y0=ȒG`ijfx5(=xR⯊moƍ_[?3r SojI\^hx$q()#2:u៳MNjM"uq=Em[B![ݓ< YMd,4Ts+ y=F>ۺV^% ؕ^ !i3^b um;kي>Rylr6mTM5F @;)4'uJUM;͵eşH)O YzЊ /BѰUMDE 4pӆ- 瞣(3x?ddFaHOmz.Vޛ 9r@ #>żG V|}r+8YbNR;.TX5#ɸս5z]DFV1JAMt3=)>",P6GnQ0̓dX(f~NuM56IuVx3U6LA0R 9j|]u[v YE,.%: u4;8'T ~Zq F3!E֨ؿp M\ΞHv x ޮ%")pu08dB i`׽pu R G#zwb.td/ Um)^]%=T8ݐZr6f_#Ƹrc^\"H K'AQϔ !IL!x^ 2,/G?Cp`ܻavq7(!\a'v0+hc-haMĩM;z̻Db`U~հb"d}t78yյ0SzI'"8Urb J k:rCV`?F!˲q8"{s  A/yP҆F('vɢ 3t\d~:vJ&U5X18)mO̧wR;ph7Mc#;>Ǫk!@5}(fwգⷍ>'Qڗ!5mz9cL1̇2r[Uoj!~(˚3"x}027v-*[':-[v8 |,k{'0` D} "h\(WE[z='k Ōɜt6ufsG;V.;MqB+31:f?4C-8^i\!9(xl-bd^E'| TMD=>;wz>7Fi?XZHb<ۅ6:@j'gdG${HR)>y)f$pW"\{$t^yg_y7?Uؐ7紭~EOY=}@&]*iV0RҀ\ߧTb{+}8/YДGUv紊o=8?qP `/ 5*T4oײxa>fح!"s:>sGR`{~/=y@f8|5K,]8,'y7zX4nARtvDIf!].4ʹ8HN\ԥ~n!ɽ8(l]W[춢ZH"n.3)˧sniCRpD|>dO@yRnR[#VnEdLǴAP~'ZϗxS>\Ixq~3!M |MX*׮oZ :y  oT;V%3 xaK]VJ}g1*V|a_{hJgyɁV "CuELh93[ z=ѱHZLra)>4:X6s*:~8Gh(E#Ȅ:^7N#;nUrKgZg >c52?&}Ck'"%$42p qֈM"yCgӣ4'Ŭy'r:N-6=RO\b'2/OI+5\2 R0A䁑U)e[D66v|&>z#F(n>(x/!/f4N_o(a^A  xa{3~يPbp#cRG09oDTM [^xVh i14'p}>!뙛tkIKJB$t 6˔͕i~N)<*5Xxw^|%NruN a NqMd5/ X{ yT||H6DnJRz7 & FA ShIfWlFUg488Gb4iJ(F1=ҒB]A-z%m-uyK~ˢܑFuU+{,{[_k<DmTNqk^n׉f5UJ`bwl.`ߍ;y>$NXe} )P"QOE뵚c0M^ipנUeNaA@Ӄ~.Wuc')G%mAzC3P) (FGzѻ2Ff{AVBj.N ,g*ahT|BD7nEXt0S-0[1ĈS6SLfr,D|PZE\+<U䥍gAklm7FAU2j=빱43 IS.*o1xDM8\n.{!7.M v̅hC-YY5'ktE뛒+au9 ]6h/ld=!VqtwLG*WqR0m(RwA@QIK'J}G`/(Rag7F|O볏Q 3՘ui&&6u/st[pl‘K~8O2۳r)=yX`( #>lMB .**Vyo +MeD<^*(dԸU$.PF"0ng-%ߓSշQ\BMFu>*}j-&&I:Hv=@B.uDtWe V9gQI=mL WrsIY9`o=w։EEg0Enߎ5i:X8?~'a:5B 'I З m/z;z\`dM9igA7wy"gVZٲ~z/k{z71vlqk?e~:cx8ZW(;) fb%;p' Au.~9f7{p2p`vT-|}TzzY} F[3! wvU81P*"OJrF_̺ˤߊ]b^e(~"$Xujxӗs0K)Jܖk4kҨ*>'[K% #ot8RS^/7nx.Y0[q`T;w2"=NLv= qZ2KD=?'Pmi4 16rRC!}"0^t M 2B “%I)(Gd:yw*&Lb)pv9 ?wwOS pHү` k[T !|3:BPb)9Ig6Q?vRi !ҕN-y# U$Ka~aeQMh"r,))`=vԇ0d7Y~qO<e<ܤq6JHE~yj3 DMs/Ϋ092S- 5]LQTa6)ߘ16>=Jp ځݶ.{QF|v6#HlJx3藡֊ YAcw;!Ju챀r\ƥt J"}쑰f6Ac~kJ>E'?EiGq>x@L 湢Z=R]fU.mǷ1c͚4?jm4&r'D'`ܹNgo6;n-m6tz {%Hm?1DoWSQ>|\ `t/^86oftEnl3?έGk-:"#h1:  Wkd꾰b8ʫJph5aFޚsh@ZWMq1esP>7O ] k1ݗ7e]sJ`@(ic4 QDt!JNJR 0{TKZK?&W-_|w ޔm?O;.x~D |[eԲ!'j\|Kh|Oi Gzܯ ofu(C<1m}E &IMb+ -T^Fp9jǏ52+t 摕aH1Ə hoZ?_3 >Zƌ${w:|)k^kBna 5Icb=WHq!i1BMmq1+6Lj{f_sxZ$rvvUK4jC׵qb[ ւF5 J\ͫSOISIS^ܖjyo!kVNo8`Hɢt.R.''1K[EH=J\7'7U5R =p>O^nxur;hgPcL"xnŬ2[!z(iZu> =Seʀr-nH| e7P>K~0} ٴkq 뽅) h$-aBIh ^[ : 1|x >8 ?<6,BJ*85 0iK:M=nX R6lpV|k@QU9/x$2펍e-loIt'6798=s8*vV[pFO-ONś7TIFʘbfmO#A!泟:,:QPj8lggRw 7<D'[ 2)wR3a;sW/b ;\ꅾ!_ LjYǻW&- 6BD-릐GZabjGE)3\>n>"kv +{#躽^c"\гʔ#f 1c"_.wṕst 5}qA\P&3RXOžի(eUGV9>gjʧx5,#;4~MUd<p`^zQ;Cfؔo_O:K r=;?>{d/s\Sm*HVv?_ߠdG簭StOQ2HEk8M*å)\qG wj%7th¹26C.#Z4wmd>ebN -g><@U`KmRO05NQ>j8@|MtD^V_zR.Q-)MaFG-q,-˕ Qei }]X<\pk,#tV1%_ZD5/\%Rp ܂Hgbr;&6\ `ۅug$}UqW$:\Zߪi&RkԸShBL67A@}3FfYxج̷F@y1"qaEw# V7X&_񛵋(du^js_Co{\w(QK]+ vOLXQah5k,I}saTVHӹ20F!P)@[lOɾs-<ˁ+M;іW꫄p4nyW>y+ZVc"jn8綨W|⚷#J,t5|In4j+Vu5LĄJFN-LxTRy=Շ&T|Ziڕ734pH)zŤIu|^= jlz=U~zJ*j`A-̿[a71!_ҵNOZB[:V_dPnCDJFD-_!N=`_?]M&t{9LU UhPn#Fr&Դߴq`g3a^"o24C9vT"ZB:F* ϭY#r wؕ\2>0ƏZK^PsL=S_Ϛ'ÉCI\ўRh0I+F_ :8JV#AS];59.$ɶn*s@_socj`_őtB ߈̮ _]*?6t_p+㽕eMvg(j[p4\EouV,!Z#:]pLƒ[պtK^ w_"*TRlDMeBF1X4yF+='~zDY˙! ssQXu B5S}Lp$?˕bVvL ѮMh.*B)iYR}S=ٗ}X?$̐+!X{~%7o]ϲ9\uIY8BʡgZ 1ߖBbcE!D%,ux ߵj["ø3CH`\m.Nv\ZLVS_W;kKjT:~c@,W(m"F/N\9G o4 }8@U1ƋGL~búlkaQozB>\XpL);KNHf1K)*eŝαz($B遝rn?(EnuRY E/A{H4zW;$٭1$kR sECO\Ć1qf3 a\s/C&W+ɘQ-Baե1p G|Dǜ`kj33K C>A 2O! v:_(ՉvS^;Gm駬`Ss!pSE-z@JPM 2kN{HHv" 'jVxs JtѴxT$[j@vjuAx XU·f`GVE)|m/hysdkRs":Dy|SجS[֑W^a:>T9s3<=)kAߔ E}õ1X求/NlIIwõ hΚ6cNb߅F`Q3y?]rrngwT{?{s#s Qa zJ7{8@`8N_~TXT3l.lC&\[޻]s'e@i&Y?&RXh cEQ$I0߹t-y|_ndy 5\ZTr%;YC8}z-y׏w\,/w[Hʛ!0Cvve OOxq]|EU+ V& nI$OORC +APB*Pק鎆Ֆþri䨖>1 Q!_a=Q^/¸ hbGKC?bezf Lw<cO:rM2u-;\/) })BVNL9N3yV]'Y䱩CMF.d1Zuͽy]$ ,&#)d$  ьIJUKH|/K2j өa? ~޳TlECBXwpOMI@_C4}Quy-^' aPG0#20TOyȿߥV~%7D!48!U\l)G%vit5'BhIY#La{걘_";0xlVd{;FpƉԥ27ڝɟ~z8=B:w睋KKA1y6 f6Di ddQś@:[fz<* ޥ`3P?PL՚%-NfÃ(v2ŢH,`._EX2 6yO뒫lnedO苤Wr E}=g*؛FZfX9;jb/xWu"!5X@oŤz*]b%b{m`q@2̙QL@5 .&4 GGآ!‰4;qlB8Z7xӺ%(Ɋx<] dzm. <74^'9 O7tE@Uu"SI#~p {b@ƅSJc&o{Kkn] /EHw  E> G>3 Ʀʪ (dg|!!5Wu`7B hPoǥbBM;vUEf{u 4t OPbDZz2CP'\4T)vw;}naD/5Q^py}͘ /JƷ;o\C[ݚBʹ#g"dκ ()fA}yE}+QAt?RĦ4UYDb~>n[=N:s4_5&eApķ4b6ELijesu]IsUxe}qIp,Ep&((B jy@ pJSЬ,Aj o Jh3bSv4[qo|qZ@WTXsvDD#bX OZJ>-v Ѭ;/h˂2>"-`UXkrp1/j-K@)dB. t%ӬCmᵮo-Mf@V#&gNg1P2l<x,'`XOl*nVQkT=oN(S{$`?mήxV.>ur;m1@*S,qo=BQn \9%ÔbI$x/)&]ߧ[װU8?{3ߵuRMps KI*]%'N@Y`+"/G,hlܟ߽ 4r9WtBUblpKw4u'>&C['\[\|]EVHFeJCګɘÊC{CJçcn9'č" -'%g[9X5ER`庤tC5e^=p[ #F)y |kKX>5م.l1:=: ̫q@Ն= 狞~#((=X])af]?+x =D@Ҟ 2$x$Eutݘ#Q(d3te \@2g\ۍIKۖe ,ުX_y]6Iq`1Æ'';gW}Km:( +PȾv5.DU\PӶ';7BDt DN$fz{GoLZMu72@@I]k7ED_I@"qS&HfŐtZbMizuCIrnuWnfd,^~^  ;7)k 0oX/Uj"|UB\InVy:UcIAGX9Jv>ƨclj|۷QulX"$6 ,ܻ53Yh ۳ =5A`9_XLAÕ:. ADtM[+z{=o& Ҋ:ޕۢY]Yt+y <7ց]+vz ?p&lOtRDN~ cib0+)`Ig]H:Qd5*8O L~*`U75F$,ZDXGEeP%&w]ζ'@zdm9F aj0ȉ?LPWiY}`<-6 hn8eku# !lMǣ/zj$RM_*) NdD:Ep%$7ܲ4V{Jz׹l&ϔǺ #FsT .MD" Nkd}$9{A&h8;m,{8g#=0o; J=ۀiLXICPp5;Ðn.S]BBB0 PalʟkN[Hi(.GzϻfaWS3JoG_܍=f1,< Lے3A6SP9"NZrN PhXJKv] ේ=Gۅ"Ü Z}> 8,iKt}"(4Qoe0dC} hvQ&jSv~:eɭ ?)޹Rcٺ)>;z-'=W2>,6T5YC8*t>#";76і]]ԭ5ORlV`ߙRݞrkjp M?__iFuC,g%:st״> ˁ1y$z:-'.n1z|s=6ކ'bb<fQ{A~TܪDqKR௴0J\7?n&撧-ef֩AOo*035HX1=;BY1$ v`ze󿟐Iơ_&hoyZ8O5xR=Hd)[ޣƧu bRw9F3AjCؙG{F$*!2NF핃t,)5b]&+lJ%WVnRj L=-Wc!2ٞI)&Y^*Cvbg৔tJ|_Q~[bDn~lj `D0tbNPu֨䩪 >~a'r{ǦO~M{?dGI\ W. L˝FkC;B x=Yn~K!opOw. OدaZ4d\K' [C뾪dD|uBs)`W(_^D=y-,X, k1z)~dzG?GAk>\tV>9%@W\Rs(P\P%}n>0MNas-V-vrzNGIYX^ +}؄ EÍo ; !Lr Bhc(VH 8$=G,r$騄SGxc]`f+?e 3wr,g6#P "Cm3(<>c,wJacGB~ֶzыҩ[ ֵxKN{9݀6r ՉeU?Oщ{z%t]6ھSwԏjmšb{?>KpYLlڭٙ$Sef$./Jv=L; ((PruV cvGID%ce`VT_8uh0tR}u~Z/A8rһ/;`E<2_*; WL79LީNlB &c=OO ~j@;5W7ͱ:S罼=zOq.+Z]ݹ*a,Յr"5!YtZOVc.ZX\~N?l$Z֬Z%ج` !T[Ĭ Be*_ dU *XrG:精@@As \nss]69͎SH!so\b\fˀX((;&#׌\fe^%7Foz1>D_rJw$yM1dI ~$] OuggsNXF~A']s|rHPRfÜʞ!4hkUBSFz\x^g6c>KߤSHUxYZx6UyQ#vfV||rLmڽO룹i׊'8pi z0 ʅ2<:∜ءQW[YaG`Zd8L!AlaE[39:@K4+Oi5x7N_Wo(fK-;hQ+y\~n}NwQܡ-4Ԭ4zK/Tƽ=\S?~B2[0Aü<tYׅ^kbs>,$"ɩ$A;8 YǩLVD˿Bjk^EU/x3lz0L=\q-dib쓋s:>xAYWUYtvq|1z:e`w|dٕp[@Jgϫq W (F)"C4;ݟnT̑+pvaޕ.FeY_ HMtjM[`z@g ;՘^PN"@aP(Ni -ïdv*_`0lqSlߡRgHm)Mql!/ŦU9J0/ u#qd>#E@qE= !/9 !Ӷ95krN #JkiӾ.]#V ]Ar{@>fb2M?o'8UgKq>dW; ݓW~F;UK߼[jlrؓ!B,+(kus2Xl<$Ҋtz$9Q.2HbɎ@(C?llfR;KȓS,nm Q$I>ߩ/\ӴTSntBL&h~{ʯjmJ{#IܤϻJӨ/es9/Q8n>,"th~Z?OGDqE.n}3&pxO\7MhAQfqOl:mjΫtYU"Ԫ>wXDH<$~+/J/r:^:Mw2Y^ pE(L?@2R dJ.hrLi:*k. | %J?V66t/+ (w&Jxڊ4`Y[}tXk_AYiFN_❷QͬrƒxΧA#os̙!xY: F8٭?PbDq„ ho@qE.a#dtRʽjū)jg02]h"+}LHHNJW 2MM_Ȥ!#  o]TsiGKlUl HHO CQw } vXe\t58g|ҥxfYpL`e(y6I`)s7Q7夢g٥o H덉%/` רã6htwplݼi`ZTuhI/B0{ky=PbBbn@S.ï7Mr,>?GYIb[M-{m8en<;T9\#I㨪 E5 D^p[Hkk=k>k*޸TX!ˏ߅]9qQLa,#y>)iMWl*|>gws;o˦Eu{53QNj l=$Q-u\;yt4i| Dq}Ӊ7eg&,![d/i,hX?xHאΑC'_1;b<;Ӳ9j ζs|( V[.4LIP7J߶ 0Cݧb|Se9,sKO C00͓bC*P<&\=݀rKyC?7kuDw ޹v7#^ N}kQ&wyg`Ŵ$/͛fz 3^~*`CmDd/g*+ `WsMcG#-&&ʾ8޼\)[SSأ(7bJJ܀Ij*N:ɞ6 iDa3HSx{{oTWka]WN®$jU&kC 떤J֛HU; wV d69=Z]ayk*@2Nל y yVxj>(X#"(Gmq7렕]8;\=J)WgʩCU  egJ LF3Gy = bl[TJM4 %q1t\˫f+/Nm rVB3vmI0x~}qgpMp@k9DͿ S GNmG8 caPv/|^ԽZ*ۙ&y<<19yqg3n,^~K,|yT]OkY(s6oA3}hnHHm~{B`6'{:Lt+jF(bW"lb$W,j7QhX1fcZY^Z\(wF=Qۣ}Ժ5qxME/% gͰ*n\CK@&+b_ŕkGrá2!t&L #A;֝+fN"hu.ДOgV7uYYxERհy~oGԺ" -eI/D,~w|bpોL `:;^ŏDO+.ϬAUD <6smCOef`}J0(mvAJƪSQ2V,JRH׿oLd.¡YzިՆj*+j IutïZ쭟K|PP W8LV$&0?FԜOw*P gV\ɒNF#?3G F*0J?ܮCP1ϧk3_wg 2b?=LC3q!0PsYtJ+׎ #SW(G@=ƗzGST(Z.-$ӀbFC@:m![3|9?zcK|ݝ F\r!qRvnL TE(Ê!r플[CRX]n׶/aQ>xj6u%i䩶-nZށ 4ZHӴع$z}}7*&[TK;" R.k2aEJ X\X3SM5GRFߚM"PL" Ҽ[t[XNIvw{%K%ɮ,/xJt' {u;)8?+*"pF,wZڇ( #bk'mþ Om*,4#ix>_xT&;ȴ˙~(2MQ:\ja_`ʾ5#&tQd#KCU'XR/g/s,}X1@ ZKuOMM9;;|ȉ/ͺ;+>h]DZnғi2ƵtwB ׽FDP Cr$UI X=ZIi9N<[N"R)9~`z=#7f'7ie:+W~GDґ煻6ObZUdIVmȰrIL޷MuB>rBy`{zH%lD!''(ņPtMi'^ EUp154ϱ<ѡ.dl9A\Pa.N1Oh@72~*ܯ )8p>,j]54#~hަu-"VIGP ~{ Pl@`^6P/}cpiB}t{̓噲!iN U[& ͐jBDa&XbR6_u/yډ?B^w%V^+Ɨ:Cg- B5wnF~~0wA!L@]oX".?@{g~#uAb۠p<K&۾$XtY3gU&w5͏5'ǂ)ؓ $}ʊ%%ebZ#]m9m -St >kئI¦6񎸣3`V&$-8^biQj!gjO?/cAEYs 2b\Z#j0((zv+O%CZ➎LdqOy>f:A9Vwbq =%O=㍺8r$xe~}R52bKx7-mߵ:.wٳ@@]:wz{蜙kWB )4QirCNtZ BOa7Fw@?+"L3 gU"l@UsekrI!Iw+ .si7őspS̹$X bJME}>}黧;<p;ea=܎.Ͳg(BXkB^箲Oyv;KlfNw& C{T9lKcz;,8y$[6G ?>BL\qߜKuhB3'θI(i(C'F`NH\KƎ VTܾсqn1R,/S5 埽F5ZثXLzFZ{r#q']maijuoXCOnVi注-M?uhRMl:0P'"B g ?:f LRVDAXpNЪ4}$`!]gM#7jl@،{rFB(u' b:6|dBn/vI_s & QK5ǸVHsUM9+inPwBKwL62śo Dx-[9■~Lć>?Njh *%F>5iL̒s\AfMm8|@wzq <{9  +mس r^xIJY[#kZURSnZ< 3w.g6?!^7e/2%b Glfxch6N~COLղ6xSЂbҺw;m=_U2x/n!}ୄ^~L3T%1QgA7Cɲ/S!v{WXWeqq봲"\g\֔Xs/c&߉"}q#~-R.W!ʸ]Kx8.Z@C[1hMCWftI 4b%,dQX*sb8*;qn:Eu[M$Sxsr.PDk91,5By[`}SW&fmz] PZagW24 &\oU;=3XH",AGw(Up&Ko,tckиPkӟm& [ɦdLA):ba-JZvw`Xq<߄\"gg7ӇJ\ؾ=~b-0hV͎VeIV)Y({Yt&\9CC 4_~sX 8pE&8%X¢Kφ!AeeWkh?u-,Rxߙ3{@Oa> Κ;Nv8xY=z\ƕ4iE$!"rLΌ3d7!!Es¾8l-3&o*U(;7n; \&ITAcU:T&Ęd #w:(e$75fIfu=W^ WyQbۣs;sc*U<W 8'"__B*m 5=Uݧ}H~hADԮaڶG_1DY֝ lzyUpo"wjZ)xc½Fı!8GGL<.pdnls{9!⍸~`<}|ԈU9iF ۫aK#ÈV\!tP䥘SFd0b3T SjK*<#Ƥʪj 9bSx`˭#|Z*S,QZ SD܇ ԨlSFr{3l歘q}d 3UzvYG*u-dڔG$n̸Gg~ήE-{)%>UKŸT=LI ʕ)G@~)%/^=\=Z6+b} 5iښ@>4bڲSG+Zm=ZHZ*A#+ pbfx ݤz}K}~fҦm%*[S Q4Ϟ)x&2EƳ@AEs)37#drDt~geS jc!VQ9{+sXb8Sl 7͍*x2QΈAȹ|@oE-4Y,H{5b1 l##v8 HB++ @`Ef1c;NJDh\:kv*ThQʃqɂ;WM!~f^] yU\v;ۏ.Wh0S Rq;Y5 v|rNڸr:F.cV2o%/h|p rѰeGqՍG -|-*M 5dS#"rCsW$>p ',,!2*zٝqh y LyZ<)U;rLw")ߓm*+enNK"Zg ӮG2$rz@ 4 4|$-!F'v3}aՈCM`ٕt@(arkct!ZjtuB wLǹY+&Hq;q#WO:;L,.;fP@wI1\6[/.$gɥP^T'$xp\Jdfͧ05K "XfyLw+Ph517i(q<s0 cCtZhPvlm5H w{b)_V)sPy]wF|Dm2@O 󍁘(#^@Eڭ+oeRS͘GXS@i~wcͥ]$mJh|>_~QDI&eu?JDb R"vnwO#'4n+8 YN!9b_1B&B}[bqV-A$'NCU6h;+!hk#.9`<n}dqG 33e_gD-Ye&Xʝnޞ;\ ł@}#t_ (ɎY}-Ш/GK :Rp9)$ъAr(ug]zET+zyeK-k*xWrZвP\.P"j:a ;@0w-Ԡ/ŘA +ŶAQSI=E@zsXoΞrdzh2ʸ&/]&Rxl\/7u˼t5!BQ0L*Ł<)\/"9# zx7iBlM15#BHD/`iaUȺFلLȣRjŠopX<;2yk\7 DaɊ~̞9dʜcO(|m:uں7+} jrL$XrH>ѢfGi= }ƒR:u8B(S5?D A6ga^VΚ秲Kf.D9콺a絎@/+cP/!F}uLӴ(AQ=SOTgCX385'TmKEgjLD5>B ,LRtNX #URFFI:M7q 2߯#ݚ)i\>m"kT 3ZN𭎰G;NA@E!;y緧">) q:UHM-k$LJt܈8jBd (ҝ&nו1Z":l,%Kk1vR`ZzjG]GHW:]9GpL=?% Or' Mָt{\5CHYjԡ_m݌7貥V$+*NӮs x?S)߫,C[$_Z7W6hp5KZq_^c3,!NR7f^$36KTz8%pUBA5jxn̛S{`KCU'#@0R),ӆM7E [l%gcW2l/Y~cA=Tg/@A`Q3I1@pTqp!#N_)l; ZEgt}VKz.hVp, (k|2I@Rȉc 'V9YB>@F6փRgn-w ,dtzGM(+M5v,iJeFc"C[E_Y+b!F +ن da2KAU|(|淌Cd-#=X0E6k-wW+~?OZl3-R=7X0=K!oӒϕ <wNdY&oP/ʟF>HUMx .MO>H~I[m06)Bk,zq}U;oQtfL0;Ve׷^6r9ĥ4}$U}hڶQׅG; *Q}7 ໮x'^>+F35zAMS4n#s"HvXU\YouQU:!an) 0p+!U;a-m⸖oMa.H#4S'pX|D+2 x,6~Nb&g:OFާ,+gtئDp߆Xo\{`%>"L77wt-|sh rAKIU}!`;B.t!|V1-Gc6ft&Mvӛȝ |֑Y"lDVaGX-{+ 5:-ͭ7rBD 쇭Ó(J3졊=d%Eal4M8p{v#M!|,oo"6؞'X'oLݏ:! E(.\($5 kE+a&s$W9Q?s4kY'qu[q}cF!y+i};ǥϭQe LybPGh4wYism1ZHr@/}%Lc@#v6yt- )B mJrz5>hU/XkS-nj1 ne|mJ:=<P ġĊrzqVW&IupM,ueֱ"~KV6U.zqU)Bk8c6q{!N͡0P- 9]rǐ1:|{9.S41,4#|Xr^ zrs^LPyQSH\{@*2`vVn}eg1f%R6LX~,gWp^O>n g% Fr[?qӮ{2xqYݼ,*/5,}Vi 1&0`)Ķ8F(W;~جEgy;Χ>kc>ɓ; !nbR*8+%?gs05qz{i `SWXOjwq˛y Q_#c8,P찒g ^zTsߗ(* u<֮*::WXB!Wm0!yDUgmی\'-pđ޻7,x6 <f*Z" +?@b#_14bِũYE>Wcx|K9')x\=3SH[Z-t؜9C^ n,Hmw^ωA,\!n dI'2q'ge0Cj4&uYGMn  ]Õqkt}D<#ł0 `>Lw` }RNV硜. PM.+y9Q={!国HZ?Ѓ6Gނ-,A KcնuL~6n}i-SKκ{`Zɛ(C(1ܺ(fifO!}1}@3p=w&άWvLsW45<ɆQ >Peۀ>ahWќBA6 JS`v!0m_0Re/&&&4 s#]BGAhqx+YP P=SrSR|A8CZ:ݤ@.zAk{tY^gbIlIS {-'0(bo$VPa Iʛ] Y@S3o1d?yd"+ŏr6B`uF/5H#A%O{G31o!r%y{hQyL`AhFC{03/ZttN4#(NﱅX/1XI+(q0mx^d|kjðeD.s l>DcIm>W 38dWD9 3 2/TmYu.WuULC6~XJ5~¿ruj'+, X *|j^€A߬s7$*z2Jx%a9wZ|P1T@as51oHVU,9too%%8U1}0AM-*(KknFU ,XAP1 ۩qogM;F"t2p 4u ll. Tux%]>coZ=2W;!K.N+CqKvc~@Tl鞶1Mv ݟRI)NqS;F^mOpt'c.6^~_-"Yt$w ;ɨyOJ\ZO5SQZ9.ĝa0D7"y.~0Sr?&_/#8tLzL7b$PB{*|}0_ a}êdlXsNw[rz~.qcUlJsT1,x f:dW0B~Pq< LbYGxݙ2}e6Xڗ<<յBJǺ@Uud!}kip~6۔vGKG(I^u,9L`pQ*yŚup$T f0n%Ti׋J*3yVXgڌ+^ flUl%Kvw8)o>GG.a:g$RYr9 :$#K;9E[ou  W̄>DN[JQ) Fz"zCKQp:\LY  津ȝZPZIZY ?,9u e% 1s8 IeXHȑ/K,7bhpjL+ew\N ԓ-1|F*nxDHAo?c4&;DW)zfZz<(Rs9Ii0+pd݃hzVUZ窼3dd]P`#st2z@ӷھ[^ԧoH,R]_,jP9֋ࢋ(t @$#KP;?)Gq$ R7߁ŤZv}XW8[ۧ'vGnoͩTr# Oorih!lYhK&:Eēx"P#zOm"-Ƨ.bٚbΨ/DSM~ƅExƠ\"9MG)oO$4xHk+㇢;|i0ęC,#fRÔR8jqԕ{c(_:L4!hu m x+i~&{qۆ!ЭY/{+,}e@Hx(O=UOTH|fTBwHw6Д}aW #_3x@NQu3U2nj h*VGU\%TbIk#Bt[QCC ,x⸆-zM:ׅQҖeJ4vK7x~wjWWX~1XxhʄY(lY$5`ӏ+9rxYb)j%wgy3p2Ez3Ҋ}mSOT'pK8 ,SY竏4h> [g1%wHv=uyi|2>+W4s}|QIC2 98\ )SN3ܣBbz!qj',U\F]./d4:߂XKprZUP&Mòͷ77iL#JjIASs(^z9UUts]?yP܎IGASn\eXfn&Z&͸,ʩsSjc].صD =!aKq>2K_ ST2.xy8ŸL'6-y}1/Ymٮ}3t|zfe qO)~yT 5hM =X 0&(ΰN(i)Vy ܉@WuaHip̱ P{ 'nJTOgӲ&AH@Ҫhx@)G/V 1۩>9 Y&9IMqDITV7jC/^L:@R~>UqxcO'1TģAD0oFS'ކk҉-G ɔJ2dq.o7֘Y#(. [wIOxOi$%@8o B3a(oN k ZXbde<˝GKe 0 Y齆HB]t׎㩹Al!q{svJtb9fܥTHz^+)/)<'AS}U`v!$?#?ΎtUb~M8.)zExz`TD LGd\=~8㴰CՃMvت5WǫV$?ݤzm:.(~Clυ8zv"9ڋ\"s&Z0b4n:[D/:ooviyd:-,Ғ.n {U}ݲ kq`m!]۝LK[E2ʳt$YЖ߬3aB\(Z7V9.I;hbM6Պ0YJ`MvK;550M4s$ }߈)o4haa{WHGb>nPLq$UW̩Vu3ڝ}9}-G(|k/Kg3/y"ygj {x|xngDcr;RU΅Bz0j56xɳhBZ,!_v'8lXL*2c>~<8ApA8Ui8ҟ5c)й2a]C28-N ^*(rzᚪc3:0ڿmLP Jp(|,n+c҅Nv|'~})Ѽ>7"(#iFzzhF۷oܲcSX&rM!gߤU%tsхqOgP6D@g2'n,ܘiRt:eRғ/,CtfbFɲֹ(9#¿$4ENX驙6%tdfɚCJJn:ƎȚ ERAP9JJ1P|/Dt1wql&sS59j Wv aX\HSe4Jo0>w5*ɀ,p͆#?i՜o]gekmřYStmG?X)]*?"qA^V* %.M%dь$<>*ݔyԖf3 :ɆxW|ĢD_8%rPY/xr%\'w@`)(Pᴤx-&!dTCkj6Uu\Lc;..4&2+0B*k5dbx1*ٜ3TӄCt7UF Zw1A! ?F)vk*^qZ#i)|14I-<x|/9;+MnEA܅7$Mm]2""\ۺ*j^nؐ1\f%Bt:DkUK%78љ)cƍ1 i2Sw |XS_pfX c0FЁ%8u>7wS0G-@!"S~M_O6yᳰUN%x_ōcJc.VKzb=^:GJ~f9 )0Vhj ;K~ L"IհHGy6(Uc@ ,fLєl,-n)zþ('4N67G׺;Sj $z0př1Ejjn[˟_vo^L#ԁš v/t!NJXE0 Z;hfHj;4(%yahTP֓@Cq<,ss?B0 tjj>6V^Zp1D!Ym3 Mb-{9\6tgѭдt4 7mR'TNI!!y`@ Nސ)Z{lJΫ(95D?lØFu?@ "l4|I8}#|&4Η يңk1bˣ%T-3fS۝LI+J>NƩÙ5|c 5~#ԖcFz"^x"ZͮGncHgF06< Qt#E N2G;C:x`FE#?%#f.xz%UUMMV_;Ffg x <+z=+L C&&) Sc*Ҟ{V+hb&,*C P^^Tn:eI]Eq|$/z=0zaF(_[I.ZG9 ۿ^'>jܽGP̝"MpȂk.ޓP%WXgMA%"xEz_0: \pD K!d>ccB\Mq҄hm\EmB Ǜe1gvc=aD"2~v txM|WUӋhxBxe(kBS+Oʐa< x+4ȝqHyrcssSD \rjzvټDX<#((Qji$/ .Fz%`'ᑞڷAjn-x‚4HfW~J`@`E*w{յꌷ Mދ8:Ux;ɪcxe4Lg;)שKݮnUd غ)ϋ'_F8^9=u19ڼ'ibCoEo5Ou1V9Bp>qG6Y?mõXK9M3{@UX ( , =%09y&e'ω|Wv0`5tWN$?]0c<֫L-_b `h^W]гFd~Tf 5^4=֣u=_vs_i3j챓])ܺKMaI0rl$<\FFχ1C经~PV}$*߰ 0dMV޷SModRk:UkC7Bs Ἰ M0K _e#(iZQ( ˀHVVIV!@ږ :8#s.&k"bn="\_Q9)Tt_W(a:g*"VyMf8A)yػ5K`w,33A.Bh{8A"Ö'hg됙s]4EFU!3)6\YdKR@vAd8Oom:Sʠ"qX QXFH͑gZDHi:=9䥼cab cNv9NW"A/WUh=c`nbSanw]Tߚ`"xs&?GfaViq\@oT'sv;YV_p@ƿ]&mdY̵ټ) vI<)N~׷vi`p^]ly{5bӲ޼=s OksTYRU7$lL.tQ~.}Muy8bmwM~#Ro[u nMC& saoٜ8IPy?q|1󝁕GYsL Tf)j,ADߺ㣨zxl֣]Χ6a4"VR oc5Mmn!}37K0@1M?}L}x+\ H#x qy{1Wcܞ gb*WK_f"h!hge-G'NhX$[,}J"Edcq^ԉRa7Mz_ydiy#IAܝ_ bx/FpkG;UUDYcHTY"#%:\|BQ¡m\9}]C3 0y-@)*B M*"]۸3.˾SH[~nphLSyۑ[_6"u,eĺiR?BfztChųe0]-%R4.o]8avk+#X$HI;KWǁb>! = @ |B)FCy;; lIAx2~j;j$D5ƴ2&02cP7lv}ɴo۵cgÆ0"b\eD΅Ջod69,&~a(=H6p^B6(9? `l kyҲ!t1nOdp[8xXb*iGf3{ Fwesa[0KʼFDB˙~1 Dh2FgꔳsŽ)d0m;.*zu lmr*XehV'0rr{TJ/<LaTƒ|c.yrܯ v1GHO  ~'Ou+>s͉ g/lkt9i ׏WXǶrC%N/^6 +R~Ë`f7H},LҐ &4X9Ҿb\eAY|ٜayj%>{w+&=heX4`;ƍGB VUjt>DK2${UfE*k&Xm 9D:LW s R%3dmW}&0&DnaƎ-r).^FN/FÚf[#뉌e܄$֢RY , pE_rl˞a_i gu9E2Y"uS|O8@2h!QRd_q;jhH%[`#;DF!srw05,_ 51*ۚtBg"P~|&1`AIu9oW@yJS7˄Y]Π'm 9A;4bOJ^eFtb@4[0ד7 m{C 5_Mersͼ_E׀|69xDbCC%2)Uw ӱn]$^ f@ۡ74j϶'R ]V*o=sMlCLa"ī. |Ǜ".*zY%wg8$'E1)Q+!N~kZgiӶ`42~~RtWrҖO1 piŤIRJќ:|.j8'}U-zJEKnD)GEدտzu9=قEєfh>ϬVts%^\sɽ^[խ{*+K9G͗l!gQ+5:P[@Yyi6w"Figy0EmGv%cUd̓~r>dn93UT,{@f+7(\7oJؠ ב(j76be*9xcH'k+v.=&|k?`BQ!,#Z9:v߽L`b0憖ޢ(KǤZ`p@"~Du`mKyE@r(zeJCx' Y-xoe}c:?8{MP=WIcgaz5!*n`id~Y15Qyؐ7A. ^x%N Ga|m+9ix,8PR犜ac5AN#/|;r i"#zQSWdg&ho {k`AU'kg.Ō҅]ɇu|hdf]9[^ƟѶK6Rn/Nf=s8'\$Yd6.\͝zh\Hy<r2J? }m0 b,l=86"Y%onYfAi ^U>>Bƀwûyf?d:-ZHoMo7H:>9xt ;(pb#, #aCl7r|?hI[A݄ԪCLgo Vy)+@ނNQkB,+rd+ǽ,˹MZ CT#,uhڌltsj`O~O˰Y|@JExc d$,~>j)?C_͊e?"bS Yɰ`[,|0xvjP옛3t!8!fJJs\(%/`Ĥ?EA/ .v`eӿE=HTl%6G\0+?' u\DQ}jolT`!Qшcy'HZӃD J긹q=crcŞ.S Qv2:[Qs;6YqeY #+]9a/{0|>F37UON_ hn7&0w&12_3߸/!D2Xr(Ѹ9O$ )Ӄ!*ȿ)TH&$Dif0f]I1iP|@?P 6čC?EZf٥NhE9}V[7,}p Y싲Ƽ {|SU5`?ozzx W;gTQYR5uH ܞ&{=O^s"gၑ~ d=ӛS $(eddxz]/Q[W¡?l˸H9.!IiM@ Y7j7pV4l6W<'6 x_^I>( ZM{]+iܢ5z1NjYn*n8.L%k$@պmu5 ˑ~oq\)&I%[!rUx^`=س`?KyBd],Թ,ݜ@ɲTUdGL2&<;8BӇ'y: Qh)b3_AwbD=.[,+YD lI;4k]ʊS9Y5}g잜oYU NNT,XUiFlBF9K d3%!ZiSs')I_=B ZX1-62r5'6t_g ѽ*r4> ]L)trƨLOܘ)Jz|4S" Β5e"F*ax03R>SfGCDtT}yM>׸S{̭\3xG4SL)CczMMڹ KЌV%md WsiL^<J3gCf>(R_KOR:ئ XmYw8%Sh-08[i6Z_X}wF`vky0Q{92jR*'wM[ЖaXvY,;H ⌏^?ؐl*WdjȓR\,2L^!YQS3vc1GaM1% EgϥXn%7S ƀGCXc]j`xHdO%Z  &_+IS12鉄U +*F`U93DI`)&6V歩Rjr%p[!γ| S5 Շd'kNoLF:EMOσDVY 3*&9w𨹎҂gp0Pm?\,r[^"wAB= rJ^ruxxT7"Wp06[sp}"puFdؿR$@߆}| )MM<}{:kj#BƉ?Aȩ8j6p1ow.uZG,`RĬA.rO8)r֤m LAyZno#FR%nYޞ }\cADRE`PKbnU6XFg /+ߕiBpQj9 7naB&74!WKEWG+|U),gcIC^ ٞW===y]߹X'A64|,#:ǫ[cOSJ=*A=~O+z.A; jrP(+YƏ5bpY_Ҽ’< ^ue2'T+ u}_F1n8P 27haKǮrȎ+` *Ս<Pj-OI fusw8 z}ndRzS{w6Ejڒ9m^C( 6$_Sf*)a4,A-Ek՝70 :3۲)jlj%٦B]W:V׋A-S$ж`+$,{IcYhK3b9~($NTc8P)P #h.`G8Q"2 𞽨4z_r$ 1Au::#{wLY&0GQVwֻ=|!4U˻dxk+OoN8^{8C![L(ѹD;3OȭWg7>yvf?:M3yܪ@h8N/FP rΆoMW!&n5ܷ$t! I3Z!7J2rUC2b6h-8sƽ'6syƵ"  c&kQBblazq- u+D.(%[*沭gk4s֫\Qh|:eFk8Ą)ȵbsQ&F1O݁~4fGeqQiy) I^:UD =qȋH@5C nzxRUyͲt՛aɂ䵩Ҧs|nvI eZ@']i^zţHyPCpo}91Gv{<Vq?a 1˛ B=9YNkmnDRS!HEwԘQ LA, \%1R|^#~@^]ˤn_G֫hђ<;nڢg>(%ID\z4*VBƺ c;r Eonqn0 `&IOo>~5o8MPs=FAFW]@X8iU]3z-Bv '/(K5N>MG%a\!8h:@hbq%yXRh.IR#K𠒤{gS$ 18yQ8k8(R0PBQko@sůHݍ}P5$b vU~&nPT4>|$PmeOZ)- fdh[bk\w6IR. i4tzAYq!P|=<'uFή9KK.*}Ch-s@/9b }muqx2|Ih7<[y7 Lx"GYdjGư;i*/Q|LS!xZ-!S1{SHO.d~濶 t<;' /$y(e" hᅪ`.Ws)Nyˢ!E~lqZx3^-k,LCd*9SS!HarKNDcӷa\Ԑ7 w20XobN:avW&M d鈏_yI';:Zp|MdR}[AY|}ak@CB=vo +l} zI*U rrREyۊp@+fgn :[H\g\"~:UWOetU y!FC߳a;i޶ gͿ֜܉G_7@Kc E6vk~dP}59neo0S> aiZߺ!H2ƎX5Bė3#q?n"#cڏH_)Z\9 dƞwq͹u0̔c]Ieea)&8o~b sr.=k^W5ZD}.}ԺαKsgѰuCvK]LoVV&a֡W-~6of?1oϸ{ʍ™>-Pr^<K]mSX_bl,Y) nTnSvYYX m\PE"dɘhbd=`$23ֽHm̛lƹ4~f Zb҅{:?-zCH6 5Й5_ 8;w<^RDDt51BAF-z 17,/:vOb6/KW BlnVfiU)Ia؞1m6ux୛ikeA"Az;CP{!cE2$!s)!}/>o S#RΎR;U ;òV4U=N>M)}}7lHa`1GDoM%JXt|l`JXXhr5՝9l'웑{EZ%sE0W ۼg>+g r18S&[lUh[L=nOk?LH h :@.i dRjs_+DȧTGD$$ _|B*wU 8Wb;i ʖ2*UhWp<%A*3 8hrQ?)PFZD]jVV+뺥;ʊ6 ! _'# _ z~eF~{*, nzj g;su&a^,(ml61@ۀxZָ` {}F+."1$ī@pD \kKjݹs "3b%F9ӰsDPl͸ڞ^,V5gޒu$!>tLm#&=ѧHBBφ(PϕMb{ t(jԵ)å,-u~2w>, zJPqou/q޺4NzUD~y ,:RoxY+:%-TZ5?6x~6T2~`*h>\48F,$j*>#)4N=3㢶K d?VBBk[ X,WSmO3dBH8reaEcqL+CN.|.0 #ŜrʮOP2WHVpJ-S nb Kx0(L1roćErV A&@ FaPIO ߎr| fx0ԩh;B7l0CGIAe/Z@2שI 4K1c8v7TXDY5W)%O9Tָ ; g1sPHiŽ-}"c|W 9R8 x^Epw!'gB}B ";.nT/ǖ;D4!b2hK5 P7y{r[m}"FQpztݥmV)A~+giD$^w5Xu#s/ \qi ¤hoW{!7h]O2s4\ }K^p(]3yPo1{)ޣorݕL[?Zp>u@qjUT˵H]9D"F1䩛\w0Ty+,˿J.Zdx"l'eB-v XFs8}6 $d0s%Ir 'EE'1擢Ʀa{/ȟlOM|zxs"q_ =7%0% !c n?=2 &! L[_]JDCW+R^(|gDU/;I5d´<ɻoT>7/u_I[4 PVKb0CJ'Fb~ܯ0jJ[㹛"6Vv!)"md\_!$b͗Ttx'v+/]jʕ W<^ϊm 8쨫t J3q3il~5pzTKsTcգ >;jxBT~z#;7LmSs(B?,k09 gJxrDΡDgQ1fޤ (EJ,kYg1[UDl>nXLg@PbҿM_=Ą=uEx\&4a0'hVk:VԱ>&~lesS ro 2T eNOڑ0e뺤N.ֵWVCKODhho'E+n+p" d2..duI pÓQqn3[H=;f{Ѫؼ\Y ''a;|l};oSPf(>3ݫD(wN=*2ʻi&E7 ᳼4wMc.&Ƽ6^492'3P;9[^Ke|_N8_-UFle$ ~mXUțܣN]b6@VWw㰔AtRE'Qz8졉00,8]ZiSTvS /Ttb_DT^H rn{hD/:KDc^ҵxp J`yؽ^6y/C# p-䤯D\@w\NUݣUp#,åܺaPf,Xd Yo> ؠ8`_ /5Gev"k4jAS&y{SbCFAHSݾKwI38AZC $UkwXpw[U YȒK'& ׌0;>XO#Z|~{ _E^cV%,4(f?'OIN,X*wMцEtf uX@Fxӆ_'ͰO%i3 -¦BLH'L妄t%3Ueqj56qGpU14pp໚&$Dctl͵wSpuo*T[C5SlB"Xp~#.%GAVqq(B'ti`.β O4j'}zQ'ގP>Zh`ɩ&f@gwF|̀OA=OGoL- 8⊏`nXE\"V:hP zNHX%.{|j.]L _,|:i-|&۫Y<;v+yD颮hw~$PNCl%W'8vXX,=i%oDZL.r63j D09 WDZch*UeZ78 mW ԴF: X3zzqJZ?d,Rfx}W3rc{V4,>)SqYNfW {cQO |pyD @5z/>~E'ҁOYj`5rpH35 fM*i=:":ٵ?ex!3qrٞ#}?$ I"ËJW*6` n'xI̚bXhLXZWXnSE(FC\ױhm"]Qfe^}鶀4q(#7Q̘0w).Sy?)Ґ! |o7Sqe5^&0gzu<ˇW еl`p߉waԈ` Xgy"1sJꪚ]U Q]e|iL%>l u\nEYCƔ+t$LЦ/fI 7ߩ sp~;^% 1ky#m;M͎;.W$q׺mL~̻staN_<1љIbjTy5ȅ}̉lCgs{~ka_}? (Lԁ%38m9'm=XeF:7HR; 5EUsaXT9ˇ+ǯ[IG+"Uoz[T65X=ot[zp}}lTr}ABî*6֦_0gFo*@M8t48]s?t +=%1ާqms71r1iuۭ0MY4R"a7* n״P9ݧy浰RG$swv@\"B4[1Y˺tN]G >r{sQKX\(rB"Ӿ .01%$;'3I<84U"KJ]U습c ¬Y`1^h'ŸרŊ67f"%sND+!~e)k9qD.Q.yN4 cֈ|2&~oa>;E:_~ATa䙻9kBҴ6Z,sE# 6yIs.,T0 -8 KlW>5_W=ycNGa ,v LLMCZ66X8R8m6PS0H f%~I.=n|@t'>mydwq3Ϻ?ȏ 2 ,fUuR(esB}kBzfO9aQIɦ(hߌI9.3),M\\ǃOx%k͂#kf* ưSob*aEbTbkZWK X߃fm.d[JHxpeDV~ Om-߇tu0ݸjfj_1PBa-\nu!6|E9˳хAI !V^5 Q☒}quѲv"\ӆ\$ly09)`CC4JZ(>ݐBM-zG7*$ڳwnԉP g !$x@vJG5>1W@P!ԋTOOpCE$$9iLmzXZ h^b }qHE` m٣%ۻ+kYS37DZN*c,-M8bLU9`ޅo3sv {hۡ1w#j*1irs&Xל-'k\fd<CxE]=[P'J3H^N*iƏv/Tql/n. |N"z%bk#] D4czSR1'DžRIMѯA%|1:<וɬ|T&!|~"eM`ސ}tJ?djqQ>_6ib4cՄ_a;$ESJX gd^IHU߷`.85W"= O0f 5͋#b_F-A&-5q.A=bw ƿ\F%F:Cx=C.CVPcJd<&/Wuwg\{(AB[BLZ|)KLc+ɶq w\ [-0pg IW2w q=2v*COFkOBp[?l˳ [l-o$IѾE&I0FY[%¢U'LΉ̢G'U|Lm@5$|[f5Br>G֧3kvPzV'`@l] ~qnĒ-B?Im' Xs]ac]mCLB1:c-Nxď?kDEgQuXp$;%A3Ҧ@Y^tr4]( Lg~Zhpy(01pr94n}K,:eq`fDs|8zVl綐:0;'jg|5Imr<(?pQ>5gqϟrPI8'MxA|( ZX,ALZ&OC=9g/ֈ4T%e%4]]QC8+iJF\57Pz3z #cJo5cFڟ MN^yrs$ NQ#_<~:1 A` ?.fH_U.uWcOҵOJ|D8ja>1@Z̊UCsҨhQꭕ8cNq@P@`cjbq PY _#fN[ϳg[{h]HDFRR&` lGRߏ%DF(Hu@sm.q)* 4Ak0]2X@|+D8s!,OQ%[OڽuYͩW!?3o Y*6zov.[~q@*gyO 9`3خlBr$RSX9y:|Eә<y~]1 lnR ~R*L=|шo 9dbfۡ0\1<ؿНU2ə.H?jRn->oR&bQYwԬf }n8FN .S!{|/$RekOQiG7&i_7zwnmD^ tGѺP-Ό)]fZ!!9& N:j^T4_Φot! U%INh7tL5#=-81Zow }s /Zz1į}1HL (r b!aYTj)èީ:iX dv҉1 3p_vQ!88BӤ3鰨-4oTER|ogyѽWXn͡,c?b^v˟?(X %' nyF =5KSJZjGb*wB0n|fvCd{j%kے:}mlQ~5 -GPZ~"1K]aP `a5DIߣI EE""U3~r,/ @/08cea_3vc{=wS24ܬElӃ/i3㎮@Χ=2tqaR׵ = 48h3=i\d bW+0`hHmZcDO|;p?W5IrC7un@ы]Q&Rؙ UMx@ ݌g [O"l/"NH,,+Xd:f%9!3Q? ^xe\d`V yDFc*&c|󝏋 RRUBǦàa$glY>[ tjNAgBQ4zpVQD(TJ?`ϻӐciOw P"l}0kݤDZ}x,C(yc"ވgO[ۓs.Wׁ1bv#Q$%V=hpܒ~ <0k^{ԜةtLyV-랛\q-QZOw9_ B~%0#@I6IX Jv`ܒm6wۻ&>/v\fw=#T.P"PP7l_p{Iūbo Em#܏{ 1K-AR$$Cs]lmSSJ8ZB[Y`B9sOͣLfk9dQƅP =Jꏤn`)PxGC7<}]ns'яz19wJ#}3mXKC O͖h(}߹ ec")DBZ#hQ 6A|5=6Јϯշ5B.H*^g^ZʲIw;QZ طËQrq{m ,&9~TIZb5}ʊvkH\B *o9;A$Êp9ބ+ȋ2 Zm?NM 'C*Z&V8uk֍Mu :/ԇ;ْ E2˟`H9m Wn ASwvtyIȋ!RBN{f  NW偳W*V!A@iC> d86Ugɚ*45Ec!XMO \ѹ0~v᎜ 3@$"\#-KB;էN [m^֔{ЕC^TEI| |'?27%~EQ@K/FEkBރE7FÃ.Ţz#SNGjlMK/H!{D2C&VL>v-e_5ȄvvsKU>n9Ex8S #L$҄|ɕ|o&N¬:upׯS6ڇ(w|"q?j,($?1y^ACZVh񤠊ahVHVi,ږ7sD4W6^8M<CUj< ˰"ߡ+b!ͮ]"Vヰ/ `P[Kt2}Ie(I$Qf煕y8kz hWlӛWJ6T3ܷ[!tΉ^cM:+|齾 b,r1(E86aT% K{R8eh~υy LJb~(Iе9xoup_P}WHdqwn{oE,b^IY4B.( 5/*c!([aU;^CjU..Z(+/MX^'ͪHf0-P T0Fw'tbCR1؃`YO-Qo`Da&Tؾ* 6nȎcr[몰t!SADc0$SG成8 U8v%+<̷xɷšx!>n^m.#t"a\Ox/>P\6~Q'53˶b2Ŋ酂#ߜ7tNˈ@k8wˆ5VNO9497M篛vɝ^ʪt-U AxD<8/71-@\%ZBrF}ƨs{PQ*gvPo^$2^}VUq!tՀ!=:OyeM%Gkk!kgmҴ9'ݪ ѣq7 нF}Ȗw[di90}90Z9$?DL9KSBut"V߀_bmTt*^2E14R0sDlN*$$>Su+FԼZ^c12D1؍ϛ#]B${A 5VVs 9nnJX,8ƞux1X{GBp)o /@`d䫠/OHdc%"S=Gδtn(ZU!k-zϨ$b=*21Zq7_ YYBY)x6P ZmΖBnM h*ٺ'6N━ŔbwBX+h E5*? S a2(0qȫ̃ԾU;XI`]6U㩎}BĥK];ݷ(H߰IU eO)6\X"gxV2~ Aq^Rc0_{z,m3B92c6dmr>g81Ln wt ' Wx qN07  myfð6upBWλ0LXهQ?ãƟD[9۝4 ѪUމz?՚7u=t. [}7<7EZ`G-~X3ĬlyW= j1YLך6ϪjSqdbr;!H|ddM!aehiR&jn#)2ZL%~V5@+qv Aدz'1l%}}K{[qA"[Țyue[vP2,yl>~KN:3"YH[.^Gg w}uJ̌g_eAE7[ɹmРY>pT0Sn3 Vu=pC3c@KKv(!G=q=oL)1ē.jw=t,+, }+$hu".1Kyj0U0Ti[ް:oaukZ ?\P|CkRAPswa7M0`ZG$*(|nw8<= ¥85 4<(>].hz/TX9D~/5ۻUE75B-4PL߀ʀ|I^8 #?XҜ)ͩSml%< >F)ݝ|`y}cfZ&K,o^ ; >:8٧ц}rGu j;*rIT󌢦I*y}㖿ز4a5R,}Cfltlhv!QWW  E42$#Ճ?3 &P*ᤕ d{֒ekg*ϥ: N.SY+ڼ/a'2g+}3Jr; =fy!;P.U+{zY)\j>^} PkSSȦJS膆lTN6۪VT(J8u#u0&Q7 Dj: ?M(R'ףs E$z75iPH:^pUel9MtHfDY~]71}pWށ_Y߮HLY?3ivq+hLdUh`TQf zoS5 mf1 l0 u RNϑg/efRTabZeGgQ}l5 XqƘV eլ{tIW1$682LtֆYoGzrX8nF%0wYtxAM]ϳ >t<&a|+#Pr+=Μvؕ)e~n!\{UsO}N~yda{G lj9Q%%f4XwlRNGݕV0.u>qwu?N3 P/]h UoR4I&J 5ۙW lG'>8<[ƢқѤ^v77ـbtNYt&ГǕuC'5Kw4~j_Wm%EYE^xh4RaNyLY"sXtE.Bnei [L>ew<Uba) -ŀ:!g`H+k~ۃ ٿǶn)Dv8 BTej?X_-^V+-9/B;\bmsfeS2|@yL~Th?P;dQk/]^#W, pZ8.P^I Kk],Y04GqeJUYh=kQ_/ te0o}Y@Z'NYVEDSxVI)sMJ l"xK.Fa#-]DO4^1=)MWIPk@Kgx"yk탼Թ.G|EWFTM &S<*3(%OM BxQɔZŰtӲ:K5(a>!/@aԌS3 0*wu]c3wH< v؛E`;#Dƕ H _^ ]$A J4Ew,@SRa^@nTJw ~@τqX_ tj!`@$j"pEWOI{ybxX<>"N?'f%ovxEWNti%Vje"*Tw(|oGpYQAzd;;Hߜ$xז ؃rJTO%G_IW{X:+g{$U +ō (f0`U9MJ EeCD^V1-A2422̾g̛,yh7rJHR^!$R}W( sFsFC>\jm'hD6 ӆ7O7NJӜK4-cTjM M~Nm!9I_ʸO_ ~1&*l-Н$=Y kb"Fxv #sK03"[k`djZ Cc;vDli;"k!H ngi9|Hw#>-|Y""8c]DJc0˛*&ݹ]n+'=SX/4134Kzq5 cD |t;h*ڀw)"-bT91b,:+TOR!>Aa,ɄY!AŻP+Ԡ 3_2Բl`6yN} =zWri!&Uv@dҵP'e0)ɷ{x-(7qc7(@MF%! W/C0.ngҡ#[` ݀i4- tTbRXAKY]WK.fSOu.5umc8V T=lT eRC)t1LУXU#4Th `'۔A|3ɝ<SAXѻ5Rtx- ;5 n~R$*BfHX\5Dq72iJ^h:fc6o&i&tZd55.,qY{{}9+p)U;y|OӅY7#^ ԋSL:atG͐ H1S|%~BΣ"yqH9^Q&KnLf/a#P z4e!JC{}T31"oL'ɝORlP $.ְۏ`9SZjQ6YSI*:!r?3m*TF;+ rx\tR 0JYb!YsMeJ\.iev/7`Δbӯ}?;bSM+1d&цյJ4QȊ 7=Ap.͞Vfdmp5Ƕn[fwyD`)7cRK~;f_i N+b4ȋ5)0n{a$ `,Ӎt)v++c#NS:`ZT j$D<#X" ˥!<0a+7pn( J6׈USl0!իk/{9 do>zoWVlK.Nv{fgQD~V:pLRAHAmÿuT;wVVr&iAqC&MTp$ Ba,lE=J4M=Ԍ4GZhe\qs_wQ4YAת]|GȌ_u- |oT(l1k1pf`)]n]\_#r9^y!ucX1QIY~^'ף^AifLWj/[i v /wbN`Cn?P5!PN~.nAjIv[46`D@-Y`$}(9>֑p78V]A|q& 0ۥzhy)ICMjEJJ'v9Tݽ 8:2&|O uP1`Dls@O#Hh9V@r[{c*yqeM@c=zک{b~&:' g߫5_3#B+AZ38\v6Ý ,RI0rw.SS$Fb@TEe֗ ICh%\=WTM4Rϭ)l7t;aٰ"#g-uľA3A$?xs/ݖ\{߾Ύ@\g@ DH:`T|D|^!1+kNIc6|W!;+u_g2PC=3@|aV)lάsa~ v|9ạOR PByޙT}N¸g1aa-+NK rty kjߕx>^$Mp:p;1Uu[dƫFZ)iby^o뵤+)<#ܽ #F`xqi L2E-JT /YE".K(EJgbVfrJF|8y!#Z `lܚBQktGcވD3ݢL@e8WI$dЙ`_%8ପ~sge3@w!jH,ޓ9Q8SJ^ wADdl.%.EGykL6B4¯8a\陔ғ_8`hPD8-4\=:$*fB 0lD۞eong+EzHI   ;3˖%pM]m۬TC쎂,-uʿTα}pR<*Pig'oض W6 [sŜ25Мq$ ln{wL-t;犁q$wVV {ˉ㰅xᰩ72B5StpS1}򘡁^&A4g#.T*n7KT>+kG}A'BTvE/~yxm9\[;Y|̆ϭjjgKlj7ff.v仿qBu>o"퓒>_| wQAAy}ΏN_pz/1ƾmҪ\ :m/'X\:N2sVĩ:oqspcGDt۾L&+i'0UP6ĉߗl,wڳ)a3x|~ 2A>;NBU^CbF./A0kv,+"K,Dr/FN;0VWS#ИD o=5Bqn؀Ѯx]q|ƑM?i` TqwAm,jv egJBUPK ;Q> TsH)os$& ;'PY[*ff߆ 1r;7j18n$ug#ni%0C+hᯃiK ـ 4j$ vSImYtC7.lȴ&Yox=GAPhtj:6d1o*WnlVyxH-}RkoWS/6cecR-5lAY(GpCBd$9y?hNpյ*O zÂ$6S4?rQx1Y$|t @H!uT\mt ZNee>%1%ubX/k* Tuo3L:wDbɇ.9;tfKv sJ(8ȳwzvan.J"Z@x@¬!L0E6K,ޏ]xؿdLl`#7=\ls}v ӛTJ@1n\l|& {Bؖxj҅Б.I] i/ b:q-AFxLd@8.u6$gC&u';5y?E̬].!.|^`(.WbTS$ 3*ӂ,Qd+ Moj:ɵJ"&sq}wHiY4vlx\a[]l&$1)>_`-AR'WQymU(B{b>~b/1}OMEié*,bO`([5j|ESvѻ հH]^145Z̿5$̱p2[[țf"yX"̔_Ɔ.5?gʹ2%mM+k&[nG-IJ(ՈjZO uS!p:,̔yȵy Ո *nGi!XN#vNR}SmؾDfa ,FW|{NZK.+?B=ҵ"(ZbNfD\F=ݻ\-rR=Β$'cS2͉ۀTq<)NЗ*CRV&Ȣf(&L-Mq~k:ċ&a*㨊OgL 3L#=PU)}i wD@ Jp & 7jK\YhrGzJ88!Bk1 7> ⏌u1D3cfܫ9s?gY Aɻ  2=HDՄ˒ KAH`9։BC  o7n-=ʨ7 *PM!̜[jvƞ1`X~L/SުD΃_ N-d,@%ZC^&a5Yއ/6V*ߴkkpx4i%֨-Jgn^C?A.aw?lSH6,v4^8SyNZ`H+buM1GĪ-@xag`$7o bri-FmzxuokyWWmDpP r1!:ֺ2+H6N78euV_^-+oLJДV=] EK;Z" @I_X6OaJlT LOi 7JlVq4]w>U9DWu>fYHP,_ MeAlUaTpjBauй39@zĮgtlrnz/;5+io6)L0y"Ugb 12|z}5S?+wv.w]P)A&@\ϡV1BDFXA;Z6<_-<Q`f74H _"sa7M `%o=(w4q"&J{hZrDA )i!U'WD89>l+WC;y9ή [iDce b*Np<Y@M 0@1/^ƖD1%,O|5ENXfsC_)" \YxތtLvڡCF}T!I?Np}BbCpGد}Nsi^̜bPy5đ!-.Iigi )PW:K_tw2떹aa8IU aXt>>@抬m>šSM𒾓 4/?5Gu@f`M2e^)H) ]|@(8}mxLD/]HJ&R>>_30,"Ubxﶅz{931͙tS:ցg"/5(md 91uiZyʾt9&Hv\/u*+^1j1O: ۢAe*TD$J{?QZ=ǎY2}Nk @~5PU!D%Ҷ2f烬=>4y`'ݙ[!SqOGOL?+G;2_"ωosLwA|"0{G{b/r׊Gh v{ :ʧ>Ik$%5U`<$^$k ȿX|Ms 6c,U;lBK|0"haʱ ?v,ӗH@Z+LWi*do~ja !?hRTx/jfEVp^-zBxt:.)dSsɔm;wHIp=S`IU2sm(n·2k“jqeK]P:iNwzI/ #ǦjIUK.%rJ|=){_ _dP?l#&@~/d]S&x!*OsB+Mz]'#JжYjTCG 6P 6*Rrŝ&{m ЛxGT Ӧ*X9v|Gpr/Yfngb̍a~%.}z@2ޘ * %)@q(y7woI/Y7_h\BRXonEe3MmO"p{ۚu- >[r TuMSd$3CgB ^ Rw+oZōZo:4}]M QqE( L_폮&~_bf9oXJ$F,Ϲ'v<cOo\8& M|Z'Rp\]"7Y@o |0)q_=hv ‚StCE=$nkiZqc'Hh}&Xj0!n{"nq>̊gR۟)=|\`e&'|y;2TM:'2@)} K^ʸ%&|=KH"J1'͵F}FR =\jM4G g ym쬇HArD.pGvb?uB%-Ҋj.Hs{S*(.F\reo(#ImBޓk2-3DFL_AU֗IW 8(4҆-{*iM7C*0^P `Oda8X/mZ$W3jJ,L%Ed2K!_01D3az9r j}4D2XEKr hu 0 uQL8)l@rn3ҷ/jO&^I!üuK&P?T4팅f{fKB=2ZB:H(i`(=F !&-!(U 3)\ւTEܺhm?Up 06hz$;M/ n׵ 6VTBY@KOLg ]6h>qx7-'{Փj3$Q~8j~#P0ӳ RrnjT~}2,(!P >J^IbEµR2\1{# ^ 4ݫ"m2.MO,#v_ ;rq]} *G#1Z+C nD2UQQI>/ ^VQ:ĪF4ƒ;s0Farh# = oi|#,m%[jIvF@:4hSUDzO48*t%}$$wzZZþ/s287r0ܨt*EʫpYCQ3 ".zl`aStb5ͤHv Izp^r@f E'Xf8fcm:BM3W4B^38{xR~G6douQ$ߏ5_Yzp_ ˈ!o&Q9f"q2y {;4hz* zI9y[ yLN%6t'E| HA`˷V?CЯw,&ks9H5x#7YdUeAST%6lC2zV@Hv|$x 4GZc(ZcTΈ =6[Jodg#'5 4He,- 腲>/#*#k.ϰo| BX{~N_03&{hz|Оn ^͂{ԒTXwnbej)rv/"PL|5+mj O ntd})Fc[e N lՒNh% ~0]]`?cd_ X&0Z;;MIX@KIm; ZeyOŜ(!7%f $?ζ7g2o )犇)t?{}3*Ct,RC!qB1J6PvWZ8BfJ)Gyojng!LSVޮfsLBaYׁ(5ǶF㐠]aX)E>Rg *ܿZhvIw[#7\وG:J]p>Q[NV&z]D]?`%"v'9i m% :`!L11-:"+wϒI"+KX 1%ȱ%4 2WnN༼ɵZB]Mt*0N-ǛeD3l Kc1sX~ Ɣ5Vtitu= 99ׄ|&$+w$oD8vN]&6s4~ JJƿ7␜΋g'j-L GV[|R ߅ũYx(L%ڀBE泥f蜰V 5kC=̠tJ+9j-t)x{Y-ŗ4ˑBY XazVti?f)a|=I|6M- Y%6%@f촛 %Ƅі~i@C/>0 /qbkъuD~Xt,4N1~2ߥp y 4R#WnL4ZT9R72T[*A(4hRɸ6_[SzKxpgŐ=J=7N>~S=4n-xbA!S659o](+"c'nrO7ToWF6=JT'|c-Hܷ\FɔܭDt"o3)2EH үgdi|~T=_찮$8)KpQIƱ79)yRF F+7 `|dVM}2rˇ ~G2װGTi)L rb\gВQ(jYs2D#]ġ4w,D>30["\I.Q 4*q;@vLxѿ9vs[(f ZoLx&HJRm=4N-uKߣoM8`1Y9)3< nߛٮOL)&xK[< )0c4GZ@@qghgkLB YpF$\XqP.JWNT/oj=G{D HA( ކ߽5zwv9p%< pI̕j9xm _l GykFTAGRQ[?75DCcFm7췝_}|y.$mFGS3QnߵM !0Kr\)PXÒ.n5XQ\œR5MjH#&˺ݵ"-L^/""!m۳3W|lD{2WH%)3Lz+a hv]Ns+I/eeAg,ɠH$LH;,p,ԓ w(J`&WEº/e"} J#zkpL^~qtk~܃^n$Uv~5| 1~ö?叅1k=s>B66X}-/\Qp4Bos' #!R>nLd0kk|iЈe%g0G|w|J+9$;ʮ2v {^8Sw]*x% 4 dr\]Q:HQ/cuO0MYپu/9tn;̒LtMƩ!VY[4oת8܌ i«ܛghJm:d6i|8(i2dѼDŽ%ɫ2z·֛$ UUyπaN_kM7cCfav kKR fd)%%n}>tC*Hxڳ}:!O՚hDŽ`|oYIlrjn$?X!RfәѓgبjO0E-d8Ed\+ (3yQ*m/f I~K_9j'xHẘQ~O/3\> `bvl%d놾/;h^-]"W{~2,`U 'HxIK!M]PF.I=drܤK }C!zyS(ɫ6Jkntj3n%MgD,n`-ԴKh0.ט9yu+~f+ ֍?#m{J~21fd3Qe1%k/ &D۲]/У݅'c'zd ;b$jXaDX ZQL"E$bR*Dݴ|öx-o#KH5Uw]QZh޿ e3H?µQ1+@3CHSOUiW \`+'O >]ŵv5傾FyuR^̬rTY$)RN~s4qi6_ЏL|(tXyd _8ф*uX߳J %+aluW-vB< 8Sh3Bn`膻1(mBUI{$2Z| Mڥ,@xyu"[Q 1-ʯ TuM95oU( Ar)Ձ>+= QWQQ-NLBDg'AQKB;7@݋식Ɖ4X]XSS{Xg$qLl&C??rtзf"c\x sV6C>z='ԥ,@. ㎻U{I_ݞw=\YSpyeecx{6E+5Y)b6ȯDT*(5Gyķ^L3@}TJh<\壉s{_`9UjUsbCH$ڨZsN/23`1Hͭ&@&40H`B~F-m~ roӫ<"8)M /T onzm ˂j,-u 'I- b[1G!8W员sqVDΏK{a&!`0nbQhkv2}*mRաg2Hlb| R/{^ iPnXj)7[$DRv3ˇ11 N&{8'~Ϥ2г7m1T~dug{_]3yV" gB9 RI4XQ)P* ݲhp6H/26’9MQq ҈ҖBx\>h!kQXl }b^ugi\‘˭x=ye范d" uji P#L).{$=b$;M`QQ'Hӭqf>ՠ4kj ax?r]$2`@|@8˴ Apnrp@f ȹԥ" e"Vj[ţ'[_|4GPd?Bg ؛?aȓ'P<>H5O U$4D)AZNj*ÿƲfw'SbH/*o ̌>׹G3BE(29Jn`5a4(&֌_zw8fp2UYMF8\x/{QZROyM/BXmƷO+Dx` &=e!hH 0ϱj3+`ͱXJx/$=~2f1GѝF#},!r+ޡ)[mq4j'OXfV8nbSӋQײ-CPG?^&?)hjbQz9\PI7wEG;QT;0:)PXx41$YQx_6⓼eہ>mpsl;d@gO[ĉ}ϢA3Vttw}<,AЭc<"JP>)2f`AӘaی49u>0bc^?}}rW jƎ [9m*[թީ1*ݧ.D>d~O4NNTRCgcIOOrұP0&!鴘GArK%~k}4=Q+Qcf[(.ߦ>gi>KX"7DŽsLb o-o* U}5JHvAϏQGR=Bt@Oa~vpy jEk%{ZbUhD s(}! *1Es=R-vzx\;$vױ.k6! T#VoC=ޘ/wuD(١Տq[Ay6dpħCKl#7s39K*[LHw~yrg8_Z-8z nPD áZ?3G@'##AÂCţ}u ?+_+%? ۽bŴU`黲m 'S oy$IGE=yOGĄNWXex{y8HhI=IRֈ2VgMIut+O ip3OnDL@r rM8s"\i1^#%I$ZgQXh* #1ln{4[Rì+LZOmP9X1C73qcMZP j2=,П3alWSPpx(NkG \ {3}TBك,A[ 86 ;(Æe/7k=ër# ڧzoiD PXo rzs%f3Cb̊U mt@g_r 矂,hl$:TP?kХ]ؓx ;4(+И]N w>W<^.l?d-} KJb憰Dp{! -'T5tCё:3oOǀqt4, r`߾ƺE":Mrg-YZzקG\k(_'c2ǵd2.ĹP\I*e}v,~~w8;(S!T|5AwhbM=gfp wDݺ˾?Q~U) Lm?0d~Z"fҥ+V:i]iy9VtξYe5L;5;q` )pԕ G0{Lq p=CIJek[ Dld:0⯽rbkJ!0"cRY)w~okp]a˱l r+#>cz/{@4dtUz\|=Jbm0"ͳ+~'wXotq7;%hL ߵ/$D`^ S`o@9Uf7*)WM܏T,i7=Jc8]W^5R H2SGUMV&+]Jёu1 PC.D&-WC\5{+c驒jQx9hVTn}65tD~цX)q=.,Ž|yO kPyߊdh#ϵ0u>MP<aQj*ȫTPQ]wHIﶪ5Xj'x0m v94V$ ЋEӥx<Ƈ%KQXe6 RZ |:WQ9"6[loa<ǧU[볆}M3W.Cq<¹GFD#~ '-ҁ $+0('6輣M (Q1Oe{ DcC-߬B , shmmO `p55/G:Xvą`fN<7[& qPbZ.*в#}[2eBĸlnͤ)x'ۢ7NƠdQTAzXֱ+lqc (bJ;ZKiӉ v.$`S|#)hFw ~cE<HN5Mp7q-0TS Kux<].4!YצHPж|Ŕ1Eu>wf 9%`ji"\-%fDkQ,QtꑞZ ҭlku!f|J `f̓0t+]VMy}B"ZَQhj>ƿ9 ;qnwfrt@H˟G6c7R;F"j@ŭL^  Rvim.`P-eɗPOoK@]( 6̪H~y@&V  ؝2:J{X/2CW(%"Zomr1oqЕ" {2rS̖fA~ NjL676g:&gBPAi7ʩTFJߤbizs7Xu&U6m~ĥ@*L"_{`Qq("S'7ךlZQ i58lUy#؜HA]^OBJyV^E7X5t"C=)*壤'fnɜ׏IA:) 8MVX4qZ~9qX @ e,RĵhbD|w=s؄]8ƔE*zntUBF>&1&tT 4(<#IX1МNWZ)9?ǖ=aۆRQ^}7eeYz,"%=p#f2/tZo@o ),3x+GcٞҀ݉S nc.QMnQ>Z>xXb7avc ׷?=_]e"'v rk׀>::/ ~7J0 fD4m&ѮD-~ ? f俜dg5a`QxBoj~}<~6pկ4Cg0pA;s\dw#E*dj&Q?<"Ոvk! "(;fdA#b|0vâjP{qOqqISkjIoA)/fP("qB-Q$8-tîEt7۪6p[O@FS|a:h_NީePE=trAY9\tրԶ<qR9_qJyڐɀ8 =k9$߳]?́y<ѯlUM'1cX 0m8Ui|pf4Cab́!8Ĵ:נao:v;흁~F7N **ُF Ŋ/dozڨa`:ئMů&8.蝈[ñw^N\k5v*&U cO'I \ez;^cR@?g1GdC>TMcM)î\IzX%eli܆g)MmJZ>fˬK⛔aIR fT .-AA!s9h\ ީA)iۧF͜n=YG؁}zeb ?0$2 ?soCP=ߠpG36ve }\bw韁U2 Nt "o5*×=`Ū.Uyck*D -6aomLʎnsl}4 i::,7yZm*mR?yHd*ygzyq6x][|@TD7iY?~d@-qΆQz+ O{? [3`TCT{CR˨DR-^Cdj3q9uhn F<;3g>)/7;l'银U^LmPw nQcZ͔.jXZ_s3>DtPu@p8pDQd/G4,ca%-6*֨]Xa Xg&T`\Θ?UqDsé{*(x^WNPSo0[q(Fj [;Q9 =T8ajWpR3QJqUD[%p6OI(nU"FF ]=r]&[,chGnKPŊНddWE En~7XL2#5A@ՀƔmv 3^Zl`mNi ~!hdZw&ѵ&c!!zuxϿ>SŊGĀ0ϡ۟4hbэsX[AQ:;._P/HK/vpuQ/n)Xk~I_&ks1j(U4#,^)B=+ |(l&FhLמL2:{s0j)U<74 JT%ei~ e=gǧdn99z^ѧ.Rs>'  ^$9̯Mnv u7Nx&}7Bʷ)ZgQfWsB zv|kN01MGL-+?duw m?#n0SRo^~FNmڧ3ܲ K%K(<'?IF 8~r[J6} z/snMJq86~e'Q@CQq1H׃w)ܬC[d> @ݨcw1/ATnf*={ZJ*FDz}GH]Bᕳxm ai- ']VMfs6>xLܳGY cw'Z\UM7g,e|)ۛ6G {Iy*3h*z1G;͆]&x}C񬮞_vXtHDKVqq t.@zi4 jԄ7jweS-..@BpT..WI>qkf T}X6^ȯ]XΦ{MKrQj5Akvi@17X޶Q'x)aYJ;- db;Jg@:%ٰ V3ʴ2>~M؝mJThɘ\_ZWf9tEx2e j=GI/]3>39𮉥ȍmʔ8ᣖ4`>l -,!ӪO̰,ϒtovy_5e_, #@eJP2.ewy뽠,6 *)pQ2D.g>}בǏ`q΍dódT nג[&k&^ xO**uݎwԎ9FeyKMة :4|T}sW\&2i=j$ב3YeK{:@CG6 P'mj~0/7" 3 ?xƬeQL xŒ* ?b*u$39C$ j$P2WRT+p43q,^k\ Ԅm)¾M˦.|#S=%hĹw(l64=ڗ{ "k<:ʸIj7 6䄿ȢjG^u|WiUѮnGU}ӭ DV`r'$,x(WW3fԣ3CP)!ynBIAv-jt'؉^2e`QO.9Hm[894PHOd8.^N+qҀt[ [uoFkew<~Qm⧮xcODq \/?iۙA)44 Ôe'm; ]S8p+#VS6nûAM#$؀;}M1[ݘ%Y;ew37%Uq D 'IB49"(\xblpP3DSof8{^>3JȎ<.tRB;b1]N3t|69^724Qyr[#d'֬c}B(7 K7}Q gcуx]1I)OD%*eI&7r7vN;?o(]%Ǫ$xԐgi,v6MuF1^vS*jtL%h$vGM!ȹj/or*yr@"6B5fcGOv,A(eC}<I\5+p`g~%T:Phdy6@ (ozwwy{oqcڈ3Piq3IK>iZ^Ԫu&-jւګq3\ִY\w8]&+!Ҍ劗#V$6vPc+Z"4o).B_HkcLN[KO]|ϭz_&:˰hێ8syԮ/W)iƕ; wl-&r+Pt.I"1:osH1M-5R(sZVSxhI[e#,yx;ecL+ܙW9.SR &x(-g^jmގ^'uV? Uϗ?O)X}p">[ jD%kv ɒIR\Ꭶ')%ěNC;E,Bq@W)+aW6y]o|V8\a+FECEgT> =%{{E[pw+Z@4t#,6٨#b)r!Wf::tã? B^,M#=2׽JY^"zUOv!^ʡ2;{zW!M&ԛ8sXN.ARwوJFѨ!hogخyu(_ X,uTd;HT2t(E3mupF+IYeK{dm Et_5/InWSO&w6Goel˶JM€=BHI<1lNz\NweಝRʏٳ"&E, ,f1n1G]R^4PQp-/y;e6ħ7r@7oǓ8 e #c%uy$z0kB_Daa;~@44w 4;e(Vf[,&}.Hot{Pv'7Źiơ#FK`2ۼ- Qxyke%y3S-r"1O3^IAP }|Wg-MbripDH۱ ಄a(!6T4 lf{0WnAG6w6r @CeJ g ;]s^m}t K\pWD- ti}+m7" DZK0‡i0TV.+&ac.zQYh7&9$yE W8UCS1xi+β8YI͡F-Bmړ<) 9U\fn KP#ہ ބ#( yg-U' @Z~(A6s2F o )߉ÈI 4uzeq:do7wNGM#C֭RS'nHɴ@%XwA9!ٚooQX. Lw&އ\/苪"ne~UhmhT55`aʢujL#^6<+϶m?MO$6~,V1JUVx>ٕ4 fh:Kb"BP N\b`-v:on~8=l`='FW9jW٫fL9At$.mu ⒛QI=D;GMWSևS<.;DFvFbG_1{ %Ħ ~e FL{Hhwtc-$F 8è=YBh]Xj\:X{ՠ"pGVjmȫwz{8#jvTd ~'Лڰ@}ndeߓ\c?d20[&{XK+ue¦{/Nr_q xj+|n< 6|p3*>@ A|Pi7+@zIՒ8(P44"UlEFJY*Fh1>ޞkZ IzA.9LRoZ(D)gP=st \hS DW&pRZR&X( s0\Z6YmVHf׮ mqzkqқO@6m?nR":g ^K/ī;v䯱0e(- rcj$w7u^crqlUY!dNt+~UƵWd'/C"xpnLx{*f*,F/*x$o,m]ƃz~ɒ |piNǪSr19EzԁLQPKQ)ev=~o7&ʚ*CH. ^z0.郇߬VS++9pc:9 [7Mi\';e|vmh">-g;oy)=\!7|N LJg!A.G#@ ճro2mg$uO>KЗwѠ!r %D_͚L9r;猠r6eCG ل Iو(5oZ P۹6GS'YφKASCoJnD iՏa7򛥶o'l_4Np]+\!hY% C?dv;g`^@(. i_#߶*=F`WKfa3j#AZ#٥|izN+Ee[ڪ['_C%ՈOl7t>N7VBJvmMD9(ѬX&Z saAyޡ<ؐġ&֫ 1w&<= O~ǁUp}' _%3}'1k_&P.@'_")Y(q`6,[~o#H!nC]<Ӓ_syAlXY[5XGM nռoos et{؇LrWLp%]*{/*U0ƈǭ}Peo֍Aw?YD Susݜ{u lgGiE^$avv2b9 ߏX{/TeޭxuڊyD"̌Q` fP?veY>"[>o'"4ğ{{UzEB<ϓAn~[c}jbx" }??wPJB |e Jy_N@WI.?t*e"Wa^6\,6Mc0מ3#NeX_Jozѐc4>7`щB!. /ԲT?'oш7 | *?=&:4_srǩ;έ6v(x pjƁ8/}JѻKɿؚj[#9.R%V]F~_q4dA`_-p퉃-a"HW0^ߑ]hW9Svpm}4+/,dNw aR({b?RG//SjQY8 9(M߱S[ޛw9EZ%.Im?.vWȫ2`k&\ Z*uPfi5^oTbQxxbعQ7dqAp)ч~!QJ%u5L)^%lhb (0A%S+N|7|6ـGY` Oysz$^j@2ECh6I,q|K|=$B >NZ4`ۥ˓lZqO92P Ll_ 0:AesaCj9<# |RtL/+`X Dli[IH(n.$6狚Yo@Q[)2d*A'k![U8jiFĹ?!(9KVK`3yMP! 3X'%}8{Ϊh7LckG'qNz1"vŴVLͷY2vkz58Z1k#w]=,XdO;Hub׮Y+EޢF$>!Jܲ6S1|MiTDMk8e&3mrp2R̡%o@f/m=FX:8y~j㍨\ql7; hhRuB'-+l{m8K}mzI\׬JV(~&;r<#20%m݈&7l?U$EӧOoѦl~ily2Fd&7F -+ao4ZsОa`=׀4E Z4l4PyN Uz 4W3NlY04˔(y <%Xn&L$95YbLxrfк6o 9k׉^t"<8jV>ZK]Z蔆@^)wD,对sE]LmH4ߝ AxY5|.3|p*ףba;vm# eÿ=I0<-6/_ W$&hc-#ZI3@2_|/uy=]E4a K/>tt*5ď( mg#/Z#K\H LΛTpXI@ ڵ.PE.8 YVgAxN姜IH09ծ]v$\0afVY h)C?W5!cA)2j012A65Ɖ!&g(rI+̰V*#dg(@xs (ƫ랻Yv#~Ĥoa`[|#k}aRF>/O ~l@_u˃vRfbs`G idI7Vlmdf2c1݌bIO7* T7.fG̻rsGN*PzĚWLŢ"e>sq m@WXєvڪ͆LnǢBW( mx9-ϻ͎oׄu֕Zi|ӂbG}zK ݲY>ژx EFV y Y-v>Z *Z/NH[.!}&i@ S9D?Cz_鉥{w7X{N-;/GS@DKR5ʝUv/Gą$ Ē Cs![ ո zX}ò=^١ ӳ-^9š Xc?Bt7R@qG2W~ E{.xBSE!IK4f "wjYG 4jȸ5fѺz :{4;$m!r[Dz'#@tHsYѯاi ؒo=bcWJ7_7Ix4W4HX?2zX`C5J~;!" S/wIy*>Cj~oZSt?J)>\g~n X;CٴDki,1WɯD#oڕ8O AmUG=g=:FÌ T(uݔ8VOC:r}0U޺cQ\# 4 ,Wg}j6V[ڶ L@AruŽS4Dh[$Dk25rEˢT;ъh;_w?& 2MV$6^X8W[u% ?el1uIQP'\P4+^Hf{ Tn ?7<&zBu~$lTB]UC˴o87:D0+#.:j]..@+g2RLiuI4I&@n86X^WTd|(,,1kEi8=kL! ǐNQ(u2,@˾dw&.Z2evh'<v—7nFkq&NEQ?'˭&LMY Q Ľdn;ⲭQPӨ0s\wl ]e^7[˥`r܄/A=lIKaJ2 VW@}Ue`y6AڂVU8Wu?»DhvHw1.ayl*Fٖ&ÛHh+:T K}w(l4<(Wl5_#d2Y|խl&D;A:ť kηdA4{"$ưȄRnK=)/KBx^Ev@(^f%dSRD=0U9@٣ a@uo1gnU}.tBc9_ @X^auBI֡aCf'?ANmQ0l7%S.qj.^o8L0Oa9"yo+X~sѶ;~sNn4B;%͉Fza_!F&#>B ' mPs=E͞M&a&",c~!XὙ)@~R~\$V\(!6$΂Z+8X7VD0S.{"OMq7_/nbGvkR1B8W{x;J x3ډ} kcloQ@FKAbWBn/Q$Q*UbA}uSڵ,+S%| XAg4, EޛȭQ6P_G\a$ߌ`|z_'%EUx%X&bj5jt7vS3t,& N)h h :8U2WTIt$#%tnZQTȑzYivjHmѴhMeWX_m>[ _6^uR('mO^˄B?+# SHR$m<+4Qbcve/o!B54G^dʖ <ܱpɠg[t;y/f* ўe+ݩ*3Oiei90)`x@1  Wku0 gڎo+7c? ]ej\JMQUg?ϐq z&$\~K HBGlȏ@܇9Ӝj5̤nd_"F7)nJgOBap-{2in#~M+,{CZh-@4=pEt/ OqXFx7^=Lk iVU ,XB&nRn8ƹE8,͗[0^g|}Ԍ;$m[t>x1p):a[SJrk *= U Tcl&/t${AԴz/0NpIiJk2v"zރ6Xk c>>E t9TvjҫnaEXULtkoIܐE.Ƒ<|3f.nCd-z(9oɗn9k_X:YdG,{ra)ɦooj%v3.sN1L ǰ]H]2d׸[Nw"M>Jkb:̉-Iϑء?G8}r"c!TrD 4LbAYJo"[`Q+G+YӼ}]I;ZȺrn),T ,@tJ 5-i<~>)d?xsYp1 ŧ$U7(7vGGσ7X<{0i쏓YHۏ-OJ q1m(IC{S-f%EO㢍oBfVk:VFTAvF' .sJ}k^,{z7E܃X14a%jlٺ^$uJ]#3=YP%m9I`أMvB[yL[_aRZƁp_k.Hyi ]V0j +1tUg+g| r/qYWAGkY(d8i-9+Iu.@.n92M[W"}/NH#^9+1YeWsGjV Xn62 ZaHF<؝k*JQg_4vR"~F [<&%L`5P;Z.UDB ̹(! ZT֒D =>4Bwݵ&iA<+V~Su( ]78fcͦ3<' ,N9kE{\GD>UcPC=:JPxC^E4+3w g0^^6^K/["JTJHKƫ2lf`uQmw:QፉQ(X]Ε70e̋}=hv0cDS<}WQݾ'Y!6=%]f!Xp}Gte ,cXKq(I~b4+K+RatWֱġ|'S+Q\Bۥ (o2ʰ\hrc;?U-ӣXۅ\c8HUY(>dRL+A;44 !H ѭFasfrw/FmUQ i)<=Qކs.?哌_"_l5{hh ]jstNu4`ޡ6@X͡\yv PFٕz{AFxc^7K3C$Ȁ,(X5hkx%~\pg_w4+vGO#\B`iXW']9|nhnGn'Sd(t辊ڸ/嚪ooqV5nU6yQ?[>`M,=i`/_hV8#xu>0"tCպ i B|,/$ydF-C r23|g\jiX!Ʃh1 ]:!5zl_d_2c+ȓ{ %yhGߌ70Hir 50eeo pp\{yc}Έ] P'^b< ub4TA X*aґZ, Y1mo 󺵜Fi{''DP{U~bޙ=|lDɼ.{W25ҹ\x:+5<CRaƳ>x9;6J.a֭M=uJ?[#CM@"`LB|۷LxǛ(,j&S%('Jyp~(m^L5޵-zop̗.늽V05.QAE.ڷ TEr + LLbBy@~"A.~U^J |T1$`YnĨ-|> I|5ǠYt8\ROR){L#׊mO6X*{BP9of$ )i[P$n#7$5xtb 3 -g PZ?L2EEo.}v424A!~Fᛘ*vǣ\Yw) pK YAoo=,`{d4;A1Ott-Er8HtHK腠|Qa;5hw] ){ݫiL-ZQ f&XN6'wc㴿{~t `w.=baĐEJܖ"[8(j·༬lbOCyn\cg">5k3{o o}oҒC;l}R6}7IK9Sv?R?d}";w33RQnJZisk(_X习 p_uvPkءheWm*z ZVv(Fqt5U'KCcu FG=(Q`4KqM*滥&M{rc$V]p-ΊMqI8#9I3<іȥWl5spJ^6H^abAq~($Q{a@=0DX0tĸ`o<_/y{ۦWOũD)c&ڔV|gP'h%k sCȠ[|imiݜS.ai""XEa=> wϜ'MNH_w{#ڴJ TF5r9.~ 53ğ}nmd0h" ׂ{f.`aJU{-G\jD5=Ҧ^4>L?SFU.A5577>ԍ`#]/=+IQ2{> 虭d()3ngsԽl裃BT{O?(1Q(vCLVճ#dB*TyGD?W92)K `鱶@ßþ{{Q$sD.]ۆtw>} m_c2,Rv~R FmIѬ x\ ƴBoNXpʼnbz{뗱hnIUpÀ] ' Ur1ϤV"RL~4Y=J.$ϡwvjiw$hW! 3VW%"~\y Q >ri`1YX bNvv !I^ ˆw3TQwq&?BW6ƀnԎ ]L.hk8Ɯ@3戎\.-@&3 I36mT$Ԉ "ئ@HضϏ)ze[JnbM|ӄpLa >^.%RӸ|Dž0 5gð -JԈF3h=/)F!kp  P$$tRq6&)`ԩ7oi7,!Wz[TGi'B+bDKڣpZD}Rjy0 rXDNܕ~~Puj{h9=ػ2ӄrіݙu ͕߭L=(S>R-ݟ ,x{BEU$eڵɁ|S:MoinMOszztBd:Y VDtзΓ]VΔ&T? ]L56V[\si|ddNγ}!^y 5ܦ3!=)qd4ɗYޚHOx6|ѧJQu#q*BT `JrT 6;fc1zN}zi^.8ۛ?&Hmsƅ0xC"^!pD816V 6w~uW-lGK9̐j2Q Sw` #7ૡFi6mfaQ7g1ظ uP~xԅRdkw*bh#'pn龼 H>fx28S6b֑o%‚H++w KXxU`H [U dH:u|V`e wK>=SewWRoհJȿ|Qΰ{x(gHn:nM:[^VNn8q0wST!ŔjE}P" 7SC׼ "uկiMupNoj_^+t9Wڎ'^81tp+B:u/mQq ~rIM"}_Vּ6n h֍ǏSXaX[{~Cs#>\PՃ"wˉe2/DVcfqK7aD|QU&D"ZTt@-W'loN_ҵ;<1; #IDi(Ťw(FڼÉRDy;˯q0 lz$y6+KH(n8B%M,w#MFytRըI)qO5YU7N9%YY.g3KEJ y4ΛnPaGi4 t[0@'IИNrj"L<p0]BaF=n5QS&@zzUF㴼!34AYttSj'/qV`eh=XkO]ʹ,Sj=ZT%Z-]t EI/nAe{0xW}j/sߌgX-() AiiUIz8:FÐ~!Ϭ$zbk3FJ3ZZ!Rfp k9@y$h, Z'̻XlaJM #8U@n߫_j ٖe;zSH봾PG/YZ (5+>N2s[WP%J1`[2nƓ* 6]Hwo+aQ,&J^^")蟈p=.*z>\cvDF(5'KqY?6oJ?3bȰYq) NݺPnp$FF!('3,nˇ%KvWPA:q=[sg]渲.J ?4[Hfh?\f]I_̀sNJl%JPϔZ-/&?7t jKXꗁD^[ )/E{xH7nVpW9ě1@,Qk7,Hf0knE[r}crE;G;-)d5yL䙙gOqn棕 ' Gis6 yjIe'o%4l5w{'Di%%} V.;d┺Ǫ#|V(ojZ[ eYQctF 9kfzA/Ѓ9bNN,Y^y&4$,5r½ `l G.[C4S1;/Ԑ(44, :^ XC6uE9 XYԱ'Gg9 95,DL"D]Ӑ Zs$FzTE@NYc[R#ZzNXQ5ԯEY~gB<$`;-D1ƒ<{CU@փ{N> `pۊ_$V**QjhoCn*\Qaď9LoD ٙ$**ropaa{QKJF*U Dޭ>Z zSj>ZL`wCw%f|a0Z,=Edo j5IRLK,FsǨLFsB($FAkpĻ1BeLFhe!F~'&H͂UJ 3mzq^楨{)ʉDT2,8kb"Cy'@9`D al")3tLN&diMJFFv=X EPAЯLk+ L·-Jf_QnOkN BW4b^4~b;uowbXF60#t +q9X B9$8zg٤^KM +1M]i·HPڰl7ބ:zLx$yv)~/*6@HZ ]mYG%*eUƹR J̸"Lvr@dNuwܡH~,m섊] _yDF*ba|:A @wE39gQ6d=Q=A[z`$|Ô=U c Vt~ y?6bR}b۞iz-XG(1jvOjbm'Z.a}XD*^#\Tlq2 @|B[$,DZqBvw9Uzt̜A#U<~{}JΧTuI;G+PX^8HX rR p~GWIs6T,|pő@X-frNrea_jD83Kk˙cvT [saBf=YjQXP ۆA55P!l7H{t7 ?*uL99pBG(`r7UXB<`ewlɜcʅvy⏲6d}Tc E И#˸<YN^'F1,wHA i-12~a 71PAPg},Z@P/p1BMuҒg\HBP錠Mplu| QѕLq02 8!]ETvܖemө e#ݨC R߯1-nGg !"w?<(Ua$\dN#bajA20 Cݵ{>i~։:O qšbJꅽB Hx/ 7 C5L_pa~ɿ?-u$ [+T.{Ț>̂ZRnL-"MkvC&Q)_ œBOw$L]+0]7'- _ٱ|(j~x} -Pe(%u]K ݩ#T1.mCF<._!9%}C727 ,~b6d!HeIMNLnWzoy'!FOsϧ}4Օ+v.]HmKh .7{I4%b4=$TrjY=EzrLN{%K|AQD*.zCIM~>ߜsuoKp;Ըǝvϭ|Mٷ1W e!̓YYzzz;Mkج6i :7E+^LvwUY֛w# ۠)LԞ4f#JsrM[Gl𔣜\VUGQID`$ѱxFO ߮1ŪSܴx0aQmIO0w% ^ng'G>VaXL[|LTmJ'`T--|φQB9f=Oq s.!޿v:$H)|@oJ${vMX.j>\I[ŭf +J;fx/Ե +偂= * ^L?Fc]Fz\[o|oC3Ls7^<BOMLlS!ɢj+>e{@,ꌽ왐hzaGy0r 4[m0Ӈ gCu5"`SFCΩW\.H daq .5K NGԝy.YZguL$nE3^j@#ybF [+;k̘AI%\)+񛸇=2r=sȖx3FNqKpY^Żmܿ+*:N?`wMSF=ƨk^X|W^s+ Nj˼yQ VM0MybE tݷl*(#y[mfIR]Ǝ> ݠq݄OPVkCL-"ciRXnWxG;?0=n@ǺP>bY* yC|Mfygff櫓[cB<̵Aw?Uvڟ8i~4FZQ~=cb!yKW}V15DVhsZgBxz _~@;neh.6 !__1B_sz3nS3-Z>Cv5fU7IFr< VGUS0=M6A R(ۄAjW]dzb83}>`[u Z@b 1%1l#FSvmz )Ȝ\^5yG:ĵ )myCJ^Ҙ-e}MsD/Pt @1Nd&BqicSw{0[i1=<7ck,FfA.`w}QQ-]L>;b#)ޝM<"(bƺPʸ\S0Sdb]g;A V)6fA {"ڜuCYDh-#!`86HaNPTx#TXj}|xEYA@%,'XS7kyÈ^|t ."I53),fug .RHa摧6&q,~o_~GlXێ_IpE2-׀#h;ֲhܼ%$NW*c -( ml7p@X<;Lǥ~~Gb^x07] KQxAl~n6VX!2mq,yDu5[&Q < o{%6}Ö0ynDOh3 {;𘃊WGUV̈nb%0SYfp![2@}M;Pq#d1 ʊQol3lՈԸUhR佔k$|qyHY SSYR@L s?)$[;*!n4m7p7-np?wvCƃP䰛M[Rh $g0˼ʕț?9 yJ2&\FRo-|.'+\z?4Css@\Ml/[p{SA'd.} Gc{Vz9;fb.qZʴʒfU tavMtasPl^ ,cL'( D6g ?dgm~J㌣}Ay#sC=P|WƏ%(sRʹ#e*VuǺ^AR|Fi!~MnLru/e}%q~@&jΫ{J&0`rL]>8jLc8 ["^꯽;e1ɾ夒E'nDul\/0{EfI*M {$d>\Fж~7t 0[\Q߷4H.`K%+LL.SC՘Bdw תDgf,SώXQ`&XhA7+rnmγ?@O6@r T0Dl,齄2O +x Ub à !;#.EemhgoMЫ6:F{\?Xrr/&T a 'NTB茶X#=䣱{$ʴT~7AST|XJhw$NaO&2|m>^RH\CODڃ>i_Oă(ú#f葝 ߏjx=cbY"p\U5ji Dv ( [uy!Df9*!9v%I\6Q`ChKJ;aqvS QwEv倪dl7@rtPaH3a.u)Tst2)$yBK}͢jDX߀h홽 v`^K:1T^`Fa/nYL@A GʂW:蝓]=@; T+#H*޴01]Dқ H\.ކ=Z:r~mE4Sj? JCL^83o|#F +M,} }Ԏ6O :.!4!O#'3$?R[XZqVB%/S >ι߸.r^8l@Y=6ٛlSo&`qM&!Km9Q]5WfD< ~e\:W֎!qOԚB/aT.D&m4qF+*'_s5X&z<(=BMÝ*&G2P#l&L|[6-.As͌48CeKơ]m%38 7ՙ6.uTRV꜎宖^{oJȓq[ۓJ}cLDΟهCb?}q_a]\DAƺT%V63S+;lm֦ܒ{ 8"v$Hdv\k/S,ӰMh@fNKys_Cu[_TY薲F 9oǾؾ_a*4RrNrʦ"*N<㏦|G&O5>7 ꭇv<[;F3_VAF$ +uWGb┅;3|h6&&PE;Xqi}e~~u5h&zZd:\Ol, VpݼʹeATR'tj e’ 0Q$@ь@gwaR`4Eԩs!w7RNe_/\UTk-ۂ(S_!'Z)}`Bikn$YQwN} 囹Z961^)Rk_S[|du }ɯ" 6ǘ'֐굁j9Uדq8PC,jꗛK9rQI0.wWYwM`g$X|W-u+mQє)nR*}qIsWZnه';yr׭ M bl ƓUO1aGu:rT3䱶OܾRZ a$;@ǽwY7yÏRQ3Ȍs>q9e6Um*[q {@XLX[@<].m 38#Ocy:Shڒ̫$hEx1#6yI0j+Ȟ}۴WU㒮|=xI2svB\A;.` Z7b"Q^h5/b.cqghTO;ϡ;9|z+lEK٘h*;PF`ϯ056"vd$57!HB8wI'?zn[cX6t$J_{_.-SjE4XDTTw)t}1@ oTES1j?C*l =q?>i J8N!'"@qQ&*l\ЂzLB¥<ؙb֭m(^*zwC d$uй"RPR,c o9PT%.KnhZ̲I6PW2JKkd߯oL'])/fS=#]/C`QD>.dt߽zb-j#օK`V9"Ro큐 VZĐd?AZ O$A;N-VbWfbLļv|9@;| ͡&Yl֜[cnlȮnc\CԹX,gRӋ}>5@$-2: {<  QO !0ʶw(j7A*9\>?[;*] BS`{P aԻg{x%) _waj(ˡ;ӥt1 kMv,TqӅ| *0t5qWFev'K;W]_^N<6.#XWݫbI0+!(K:Js[T=I?QCX- &xtDx%lUd*uN6hk땛Bm֬s'Jcїw߄ ;AwZkZOtٹ+,H & 8|/%Rqxyiiok\Y. oj'¡K;# L.(ċpFjQ4nrQQe7CmU7%|MS1 $YՄBoHB5fx6X/bWmFcI6׸*WV,x;\:μlKrC훬m'⊪y20hd5V.#a/3\Eޱ8$֢cn|+M/RU"NLH%bOhd~@ 5rw*y1et.;0 dڦX\V')(ӤON%0G`>$G)a7IGow- DfAwhvW $$MyFS*6[,`wE"usiiy,n.@_0ϭ&KȳoFj #XN L(_+. i9' ʅ-0Ꙅvh hd[S;myĔܻ>|@uq ,qR_w{L PE EաBhK7T 5eoP7I>{wV6~^S12$ө| }ޚZNe Se*ȯ_’0 ˈ4Gm`m@'O7'>=5;vIjk i7צz Bn0sy!ËХzpP1Ɋ9 Tm t@'OuzCuHR)$w37OuBu%fX}L9|6C+\ Ͷaɀza  !^d)~y -\:3;BXis/Nօ}B˥ޏ~A,f{tꜪW t,(Vz͈#Tz]^S!= TDXx%q/n{o>7;z?S)֙|&ԂB$}$ixSw c<Ҧ+CKj#yme9ֺ_șpE~LKqZUf/sF6T J *r YU6έ:%`v`N!W;@.{IK uxٽ WZ'P0 D #K*;_g`a#ʪTq-u#DCkшԹ3^p꺻~tdA_ G"ja1#}},4GNbE 0#h/?Bȸh"plGX|@Z.wZh&M?%U/\#@JNۛe?ps(s]0II| S]ZE /:PdڀؽoS_>CU=ShbSeRʟt%nOr×뮳Ҵg +Û839;YTkz)䜧 9w4QԷ5Z/O*P,dnuc0{hdBw岊*P"޸ >Fp넵=7n“eu'h2~ 7&>p?g%Eyc6qRo wGCwesd%-ֹ6I wK8~Ci6#$o6hXHM%%4j=Vq EkNAΏJtBRqFe3mۨ'VJZ :˫'"-Pllf18QIקd`jk(di%%Fb!fk,M!ofDTp1Dc7 1WicwyĤ|U2/&%l=y`f'PE)ʋK`<˰_/CW~\r|UR ]TtxHmZfrڦx#_n{+lY6'A|6><"iÒ(WeH,o(oB*-unܨe5Xۨ,e(9Ԇ\J8P#9%{'_%k8N `i*@،Ss3E+Ce Q'z>cSf+OGM.  =t?nӃL=}-zvmμoTi/LѦhWĤSrsX Xz`* e!U˱`s&y/k4@{A{!bQf@Nf6u1FVA]7V %ߙ ?7I+p us MަΦDYɔ1HIU5Ҝ|P 3 ӘE'5 ++ B@ilՇ2t&C} 7SMZz%+8N)LE/34PZzMɟgzĺtխ%;>w8.^}L'7fsKJV^|AG, _P &!5h`#k~Y5zUs 0"ܵ4>N@sݹl7d+CZ5Qԭ^^GoCzu=,ˆ4̈@%]od; -Cr(dbq {L^b/!%G:Npa|a|!waP_%@@ןi灮&`$nL"/] س5|}&ALU.3[3%.hH@v-c&<_}GneA{r9HcP`Zk(g0c84=xB0>7 uŞHmwШK;|+&o  6%:_?{8jS6?dc4CLhi$Йɮ!ݮAY#!ltZYTE}<+##.[O0Yz$}^r"܄6I}%)C_#ȣt32`+ëBXqZO^ @3π_~Hv˄M,cקΛ-o!j/սɭ*uHϳe .k,.ڷ.J3۔Yb$ I 혲e,WqF$X~}:Uh拷;Wm@i1cu/Zsv~bu򊗺}7tN9ax^Ec_Oֵ)VX F'`OtX{H tcۊ`B." TKLE 9=Q 'WlfqNbE65 ;VOawW7I46q,2q~UǿY'Xetbug#MhX#Q9Naӈpe3(awB_E.HŜp@y~FC"JJ;|<@&wíXpi6@.HyȽVeTk.6-Ǣsb{BeZyDtfON3Mf0f)Y8wK]41H^Wh'sf9zY2lB9!ݡf0":;fzJ10NC\97j^M Vw? Y0QV廓ꮸ?)xU p`tMp\t)+\ 2|a`o&= ]^ξ evpd`Ư9৉ů"xiFݠ`^zҮلfBw GMm2448lZࣟ j }j/X0V(ò`~x]@M4h~> 癹.w7SոddJms"#6>c[paOyˏ ꕕ`ق֒+NB⌷^nиgr NԊ4Kn+(`d0P~2OKe.LLZE(:Y->oЌKbҋfT&/:uxQHkSu#i5uUY9P+oF{ߛmAh|yuS-1 K L}k~L#.Ns̼`KV#tX: i*"(;޼ ʹ[`7<1Wn8r'*1!ݑ4lT#F?G˕.p' ][g7 ""%^Gӷv9Eە- {O+4<)%vVpesY9O=UT(9u|5ȄU "zzǭl %o$)؋2aU/=nPpCPۧ zF,bxڂmL-%#}ga=ii@ށ DoaEhM{;s4@%-@?Zw +8N.SO2ʻVU][l塝MHqCAsڍ2۵BL$1H^Y$$ xONCHi 2~tǺerB7^R8Ԡz-;<s^#hÇrPFEŪ[C"pѳde|M5{ UK^#ޔHӗ]] uiO :ŝ*[Z%Λ9ɻwkKXLuY?iq-7e8 3(a8(vdpJn(a.f /2md+$}i ? D^-^-+[q);,~ [gR;q<\GmҗkS x*C4mm\O9v/(T_svpq4w~?ߨ4Kc-Yv)E䙰?{gd{@3VnDKNxƶ`s$ MN0fh$:]nM~n4,Cc%S̈́Eb')uY=C :̛cʓ Afr!<ms(Qbţ q8[(,A;pԱ*Գ0< -J*J?msDc[34G86=|2Czy viV #ܦF4V^Pߘ?$%g VZ+ K`m: t˨1AХ.o}a/2$8~H1z:D#:d|Gm]ӸMC]],D"'0iWJXҙf\Yqxp~|(\"g4GrzȤI;NB{K&e41:ԺFľYCJN8o>V)9Nu|:"/Π,xQ%=2Un^]#QU4hn,ܾ GG&ZI(4dT82f:s!Ev1MR6{`^m8h7OHR(2w)o09ڌOZ:KchBi-aʲjlLh}J2jQÎ.NmmU3|:֓^L`@S?'734҉SǬ峷j71xy+"$ Qc+V, c_|S)Bi v,F })IL)s8 (MI3ڵ>#=Z<}g\)b2;YGIPvUz99X^۶ipx*>^_Tt]hOɆCrC?0˶/8SGoŵ%ICFxka<,Ry߸u!T NOtҐ{1wXF@Nʇt[9"!OfįQL@m^HiЁ!SpL&$EBo^i)U`d~%Ynss4_kt[mm99*@Q`=q\./lRբ.m=:6VHӏZn6]냁Lkh( dT2U8+f/汲1tȤ z^$9e.\L4\as"6Yol=?$,bN[k@j(6{뜣4p6vI1 {Le9?WՔUZaO~$N{c_#2链UqI (Oڸ:2%Mg(j_oN͢uɥil!cGMgX1Rn|?TBM,1]T֐4C w>a&/::h`".^ &#C;NQ:hO0|c>\Pe>|güx‟" BˉOoӸDu/1`C1eD,Hc"j3ibW=EzM"d〒jHgBa1[HU9;Y_ jd9} R83^3F퀄ó/rޝivP[0T^] `)$AXG%yQ,cuKatկI w ]ftOW )Wx)HcLzՊ"V+P>\ʔ ù+j [ąf< a=!L kk<Ϗf7'yU |O5RBGgӨ}O%%@׻ko=UУwF6}3JDfݶ̉UDZ/&1v1ROUx`dΕzZ(.a-)ɏVS`,jM`-$J.;97vK@]`i 3qa4@1F; ^nX35섽7ޥ;ćƣg]6FuBI( ;TU2 lCc~TX]1n{z<gA!/H6vX 'O7teS:k#],^iCd.! aq%f8- DP }Tw5$Lǯ=#UgLr-*_0ڪg3%e=BjX~0d^\IR fty y9M|&9JO-X~“/u\ ]n0]cr5D &57b{#?7:}sZ`0 z\c/[8 dыo^}jn8M{Vq^{WzCw^q+8ؖWڝ,vWfbKG֏5ᵯxb_r:B;hY\l2@HUpE zi(y-qV_;Վ.E"2RoB39ozڽ^ v#TL&Mqάa L2f+? jot -Rz4mu0٘`qhk@X~٦PEPY|0hsK?64_uA^3\#[2+g.;li:^2ȩil; v5}]CmlA:RvNڝڅKT"RX:s)0ˠ4Q\EMEhmA.&?Up-cσ}얘ƌg, v(4K)EJGgf5U=~(hhZ (|Æh[ v;\8~\11W )wqRX`;Tg|K(9NXcrw.5BQBmn*LҽB::BIQBdtQ;/~剂IYenwuR8j@.aW' ,Ȗa9j PTZ_6&GIS6ۂbeZg2nD/D zxL}W>zi 1rfgyigfuڳ*|(E;Qiu+ Mw;I)ۼ9&験& 'nPk51lb`QÃx3[Y^g 35a4t*9.AI!*? С;b8wnPFAzE}~K5v~xc?h-©n^A @w?>/xQrک%w2{MumxWp.ݳ?` e e8uP=n'`G8M'v \@vsY ?P3O+At%H91?|dʁ/\R_pAᅡgYP .h Eb-=3. փ.y=:GUpQ6%YOO8c\A}-qʸh5}s> f.Z + ׿7BET^St˟wNgVrWǣKw/qD-&'st\ $eoi7bEna"XGDnkI ȪiB t]'iYsoa8"T'l}XF havQyrw $cN$SR%n)MyPLZ-Ə,+#A>qz^C2kjAsǦ"&G:RXI,-gL`䊞;n]&M,I2 ;~^93od>hDkH2qdMuM}7>F)a5_5 ~sdDV3#RX3!-.>}scHd6f?lKe'?웉5*uO*_'i68M%2' }?a+UX|{t|RDO* ×eSmةX[|ǬnLT *W0Yu7r~,CѶK<ـ_,k|-$y肴eiVX(bmAcD$E+Ot{G` 0~D02Cz$}Ӯ:Db  QpbwI8ifMἿ ePl_N~: 15w\MWL IszMT{{:EE~6N] YpiRt & .#oWPL*ԟJn,;M ˀm_4 $dydR!8%䝂l8 FX/ ¶dXUg/? ~@Г|i;݇HC^I+6-خt^m^x~ Jp~k– J2dXR m0+%0"h'PW.+T/̍ xT\j& yvęk#eV/\[ )1.5W_L\;>M;#Dc|(=j,i_ҿv^<.w##XNuܬ}·‚><=_=\3J59KVDld#_‚i1v4AH 4J ʺ] fr5MF#raЙ!;eЂp4| Bґ[2Ǯ`ݞ?U͍w%qGbM6\IBJF1Q]Vh{PZjߕ#ԲWrUd`&oؤ G,Q$l):CiᲙgCum/ Yr]60+X~}I{3J4"F?U CUs ?zbeӢ Sy4q8aLQk j`-/w3~AZvzR&G<6P^t>#-Fb8%>w-| yg:mW2Q y}@}@YgłHit{7c5#>;P/#-SxץpwE /W{mFϯRQ-EU\ O¶?"W}_ӀLӫ0AX6O3b ;~*Wk'bkZYCfqZY7~=hFhsӉ._*UYP00WNa7.Fqp! *)*rk*fmlS/W50ٸz/haՔF6_)e`{Ӯ;//w ^Xw< Bp`!`Υ[mz(-|3mpQF |XrȿE +>a!_ "ci-JԤ@WIP#S}rRPra>;i2FO[uG``D޵&Y=Hp 0[S=~Y ~$N׼ ]Kut>(׵ ,o ݖ Jyq ʅeGRey\r zofd7ߓs*h[!2`DL^ɉ1Ux "}Ԡ [iV? t?Ɲ8}`׭6^( |2f|Xkow[iuctFV:6d;ԩ3tkT.sW(~{qa XJ:RO&?8>l\kIuz[B| ґHh{+8ԴN uY|;4)`:(r.*C~P(){ĖgERmo>J_H۹YKğԀ#}McxǜB:L|fpv/٭`WQ^3Y!t>XM|;}/qA6{-0N[aWيP>3U;( mL#qOIaXџX)997Q_r2>{o2P͢i"K~# .U[2!wqF2 ,i+Z]CմEǶc|83EDZ, ^'ÆEzO||"'̀_vz%Bi7ӲUq4G T2Sj0t`I*|& HNZjȃ~s+(AuƽmbKP@Ѱx@.?>H, 4ʕeZryd.0eY2IUx]:sP{N6 j0`x\6_$Aܹ_qY-D~M"Kˆ^2:mP{[ yKiw؟M֞Qm3nbo8sČ[n2 HGpnkP K,Lװ,s8el`f>?=/&B BC=-!dAJXƕ}Eߘ6(ʗ[o~lkOyfZ>;"d:fh %IFCq%q*=1 7)#4 D;\]]BOHZ4 -@1&9#%E ߆0Ѕq;j, wD7g,QdnKdGQ8!샕&yhڮvQz##$i$ T>2{2v*TMs: ?x3*UK唷Cz&*b-[X"xϢGD;R후bU8V-< /ـl6DF: %}Lp O-DxDs=~ ,$Z®b}d#QOC3꧓A9OzYCO!KbaØZ\V2QMH`E>f[BU(8ϙ{s5?_mzE&#:ʐ # ¬Jx|c+!'|hS4;.U3&Zvh=Hkb(M{ݶ]:5`X)0 h5>8mJbF&I2e,&Nl h'B#K`:Y{\YR[J2T]& `hu؍`i`.d4pa=jnlrcR\q.A R9z7rs<뢝3Oe$\vZ shkH=jM9ͱ[HS&hDPDQ&m\4uISr9kD'7ڵL \nGw\0̿"4ָ4tnOEuyPQ4csά3o:-ksT|BY01l2&  !G:jcY <58Y&'Uҍ[|+ r1K1 $~Hnz)JC q]bOT*ɈSgF\]5ݹ +@?#MmidKSd!iX{ܹYa^⣽o) y|f\bfԦKk% Ŋ?@w4 0(|@{Nĸdnrq eSraW&5E8Q Je̙۱@,k0+rc B 8.Y@t$Ti%tЀV0+vQԥ{?8Z¯UYx_}2r}t]QE~%^GhE_'ykz^ * vR0x4Ɨ(-h,`C Ec: bz̿Xmiqֽq7-g nE' oqM+o*OyL$>z1 [[Gp"6 ڥ1uU`SaG3a!%LJ9rrrjvN~!3n,X~ zo1WxMfH^hb)&3Ă=% Fiufkˌps†3!}'lt ¥pg G] 7@b|x? ]55jrQ <7u.xFTvLcX@l{sS;BcҀlFw/a[(I@'55?՞a:;U\։޸%91 ઎6tLwT#Z3%l(O/o퇢{=3C-γSYPV"`exGl|ǿC=P ve^pƚhȳ`k=?niqU ;WH/ IG(XU;m__ ܞpD/גDj!k*p0XMRŧQRO)UhSTc6Zr|>j o9YCX>c ~Bg4|Ec eg%CEO%dܻm+}`Ffdhv*Puq"CW,u/mAX`heTpXB},fKؕez~WGx==6ShTAd\JIf P$Pv赒N*+0tF9M.yt<{]j = _qЭZ-J<sAf0 (^x cu?d#& Z$<0Eg|7fQP=-x44md9>YN)$ufHlk $ m. "(_cc[H'wMLr#- HG}srV?ϯsTҰӱFxZ-+ُ˗B E1g6s!@]3ۈOPL*G,RFV;7^DWJ%I2x#W26*oOKwMʱ]u}c` eZb>YȈF g\.=$nCQHpń> 9M qo45Ƚc+P0^l+HG~:+`[E L9gPI0@m//qdzN3*M*P$A *[އSNG_\X"xmg % E H37j!k GDA+9(=X :BWtciFҞAHVnvr*d/}&hIB)Fȝ3-:)sՕнlúxi\k`#T]KS{iY{C?kvi~vԚ!`#fZD }s \+b§~-@D"]@DY"?GN\Ɣ|͙ʻ06ө*XﺙyHJG;r1o95%UR4ng:XI3+a~nQ.H#F "]Eg `F͑Ht*6) ƹ̀VdSq&m`B:jrKq\yJӢ/d+'v:I,\,/Շ"d-q}}ϓ<S ={D^bΈŔdhN'pPKE'y^ zP*"P-?I.0~ Ǿr$*qtm4+A ̥kԠG3l9&w?UZ"xtqsX^4ƮP ݟsLȌp5XzdýO~XƎqME&e G.b+}W`6m1*]$[.Cx*Y`nȼ]ٶDKu{U瓐4RufPPeu6_:dA47ߓ%tS4NAw \׀⟕ötڍ3`"YpI 0!] ~:N;\B3:SqB"A xfy`yxe)Gaz($x$X9y kkl^A`n h)D!“Zϣ%ak)mUNAa)[S(2 ̇yTCN)+N5ǡ\]ɶKimi椕E&*Z WODlſkl .ɳ1 >Z>oh}(Ӡ9 LīvoIv{uB;?ct+">]$IȔ,$rնM5l[ &k'{:J.l%GN6v;3 +sPQ& 92sQ /  .<jn>'҄1ޡ;ӝkJ66F02爘I=;Pe뤱GG%> !}E 񂩧bӧ}^װv[+3OkFeLF5n_~DF? "" тNp^hsjWՋ#TIA? ZbNWj11y"~PtYQ.(ae 1ɦu,M6j-FxxE=n&z<޳*Cdb/EBif/R|澁 82 H{ ϥe$\ 3a-gԣXM y@qD:K$sE/v-MBTXO.A?L&86&ٷ^Ś#O&Z85o@|XZW6>to+mq5P *[J]۳˂\ FJKf$>θ|䊒gSKhIv4Xi@.wcWAwjnDGIӆj+v0l}SOjDO~/>#JF\NS6iH^t I\ Hun`hih=S8I]߆ڴDoi~x(\ 2(/ " 9T_%4` Gy5lɵ? l"e1o8̱g5grh8~00pS} t 0]I要d.頴ڤN8S Vaپt_l |sl&$ 6*$~j]%/ fqN5jVT-=2v¿qIPi9q곡vH&[6v贩7\cr& ϻ$J/xƶԷ_/1#v8Pr0(P UWz_.R$B+"CŠ4zYb_h tV!#1|vMlAz:DN :(B x*-Au`}UNLW~[zݑ]IZ!VaD:2MT#ˀHCnJñBZxq6Diז=p6#M37 5M };KϳoY)Rg+[Z[𶠼;YT.LЎzaGz(&Dqu*aJ0?_rH*c#gP"zܨkSɲ(, ?jkMjn 1a$GUccmx͠IMvoEbE>6r:_2} H'}xiETN3LLyB20~rŊ:^#GJTʞ#nI|-yrvJ +}Yۭ' Sf\Q`&q[".t%=zi8:(  $lU젌ېe|1zԼݼ3N)kg NQ x%>2&&6Bf,(@?94 QqU6MI.1` j]ٳP6#,'vΰ!biY ĝqPE{.?w(TN`[624zc Jc}6?kR[kk+@8]zRԙ[փC2`}zvx?+~}kQQ w{K:R)&Idr$ˆ\::Vtsͷacz; 9vƺ㷈 daTR'1h1t划ꈏO<7FhMtG< {@avzk. G\Ɲ3*dux̣C eŕ-Xr!B=Sm=U+gPosDe"ƫb Y+@RMm؇5o:êTB!;ʳs7t yVm|FhVSD̟wB5*=Z*/#F}ŔO 檂oDK@4Lh2"f/ҌfoI"5? 1CP~$^3 +l}9 w@EO$3oHa/s?U"@ivsDyheEKev/{7`N}A v旸bW(l!+jϡ6 gL&p0AHKF'1Z :NŃ!"33ڒ>OlWP 8uˢ|0V_/M_+g6tKd!Dn+NWa:ݕ+"H;by^w\(Qry_(ͷN<\SSL0@HPrΧe.b|0 BKuugL]*>p'KLeeIU.͡Wr*`*G S/[#ƹ[lzv-$9W_3\62(4=Ɵ2wCn5pT}ƶ5Gj)Pڡ!&s?7ʷqC| s+7 RRZ_sS=YqcqN$": ~?q߽֨|l$) a9}z 9u8a_3e8;our"[S_ v`}fzÖMOdHy,cl_2P^'C?2N\L .0g>RL nb{˟m|{Y&$T9/oސ *S}+pJSOc>yY26Fa=Jމ hZud\@84m)gc~3O"K6 bbxus]t+ۃo$ ]CWoR7cFhkÅwZp0s @x)zUXCcY7!]vpsh'~tyK2=4)X&䑼L =[+꾃gHF26&tp¦me{ڢ5mo3bZ' SQIjL+@:kO >)n/l(xI?!xfJJF-o$@j#՗-y*$Y1O3SݲU]̭D24)$t`3*@<@\wӍڬ'$Vʱ\Xg"$_šjΠqo_)"ֺ#/D`.ANQGbYD뱯  |Wh|$|@fqh9X:;fUU[VΕKl)NDW8{qI?_)FϤFE ȐLY: ˀlR8[uvLꐝOhoV#hqфn X0`*#eS`T.~ i} KՓ_i?wyӬw "vω|7ztWß-ZzOg 8J0ÝCn3tv9N_~i[ i7&K Tslivϛ\Ao XlkAM+9@е;Mt?.Fи4bN[Y+Ar riR23Jbrٱٴv7i^#g!įh.W}KM=D <؈ !eڠݓA%cAZFbJ@)xwAZKgVcZ3Qv (I~>Od3W8Yk0dي6J [o~8n9v37T) ʐ%h 4}t^T @_`oP(<#1F p!RS~.'h0k~.~g\*jUpk%wETetQa+76LViK}j CI?.KϞD]yy h~T97*ZBGKޫzcܥ 0X=[B9TIC*V&(by"9p~AQ lhԴfdzh-dFs;<<:9,CY%7\ßO"CwĶLrO?@yANY3>6Gwtһ-9A0"sݻ Y P8LJٓAމeoaž9Qj4(ȱ~^%Xrmy^ EuQ\mG 3TgL2eNcO/K)M#I佰`"<=9(DZ=w{`0px!Nkf @2Z)4K(0I5?9qrb+!?(uzL=M?ƝbS?ղ]jCKBˈ{^ђrX;oI^_ЮW7#: ⳛ63H GX>o@|w{,#a1hVw|o@v6;@ Phlx/q8)~ 3lKSJƀk@WȀ8k,N:pSaz9j֩$߁se`0^ A{vIO'vp= fgoJہ-O u-I1\fǡP),<.ȣhFd$cif;+hp G XCm]T2 Dq4 ̢ [d x7Q2LeYePs"Z/q2vϨ@UTi:O>h(.I: ı!W,cla1R1CgI`}Ǽ8ezQ4Af@jMvGc#-}s"Mif+2 ud]ڡHH\vy4%&/UD#RZm*ȵh69s$& ٔ,./邔3(a̱+د`>pM{`+u*Sꐄ>42~Yn[y"tgIc%cV ٫w'w:!\}aX/d ;eOh Jf)Z #gt Un35˴}8rd[sx4G2}f5x2y߲7*zy"~'~Vf)9up@ !7\ͿIl:T#H2 qZW^`Tnf A gٔ jx^tuh1?RV,OeAvbj|[*lLKO4O r{h*$&rd'oC0mmhT!)}6>Q;@ j)%d#Ҕʙ4l!RB$b7- ,)XFC3BXB"&Mg Lbme|!y,4 w) Wt+O'^(CS[h}hn2pT%c G,5w8^$ẕ̌3>+4rd>f7C퓥Cw,p^^Z5=lR (p#\E iFr³t]3yIΨMꑑ:|/F[N@,6f0ҡ8\Otl#\<@f-"Օ.oLe6zR^f%OuVZ }SgtZj_f^<iy3^3 1JD*v;Pktzm O[)jq@wT}KlalCk+_ؖK2{qr<$](Rc"O={Uݤfmp2FW,)OO/oB?,mJZ1^*VEaO4[3r:%זب+lڣWʐo#3 @w]^5 פueEjHtK~X,㤵BhO7"E/3Չ_|y, yڱ,WSyWFHW \:FP<1ͳ$g8X=n)0;x a~ȯoT79x9G 8K|v$e.SƷOjSaQ,Vh?aHa v6kѼa`(ثG*2OݝDB6у1+򢚜Oit`fC BW5Tk:j1-GZ_ļ>*%QlL|#h:{tR-(hmo"V `'_ ;ze߈V/lJ-F DN>?"n=\ |Cg`h̾RJG[CƎ%aD AG^~N\afͫp3DoybN%+x$~l*<iħ@nSDSlC_UkH\hPrH*Ff~KrnbA'Q;Y0G- TRMVKʿf ',mGmZ j4[ٟY>'_A,)4o5^eo6nã_:vK$O*KeKy[2kU ,7}0{tn} cv&tQ?ZmJ,’zrr`JygB.ai2 +Rl(KZ['-$xP,H@d؋Wf{dcUx@仯6WW-N"ӽ4z6ˌ{`XrfIVnBw nz mVnxd k}JihIFD OQ1_y Q36 ~̓(K$Q&oc7rw'v 2@N/;<\/JU3L[p\lz貰m+^Z6Amz87N9fIԓM‚}.hf 0BV, 4!0aem~YN.dGZʦP̻W }Xf7謖o<9Լ kN`eڸ- 3A\D__]V r*C[Gcx6L%JݚIpGj>5YVd&~ !=\ wxʈa]ނ4PsڨYr @+6?90#F]-%pA^+[~& OfʤC }n./[YjS$}tCz[閃14{%S8\ߤWZ@)Z]ԗ-%E=\-_"}b.[? g5@ecJyA0Dg(bʶI{R LK^[Ϝ/hqU_ؘjW_CBJ&cLZ k[,cI,sK`^9'~'qzJ| ZAa~&^28;_n2Km*RAkTh_KsM@ "7ã9szQ1 rm:pB<`p )WP\WO}(ΰjmY MX 08@Znaxޅe2Zmɀ=26(&o-46S,` C0b\.QLј`ٍU*֧.x[2:U ~hLMDW5C?i[5 %+:-&,> uؘ$x[24J75h ^]_HvO+gb"r 3<|^Aug?C •я? f_%W:NE(/d Rk\~ÛJD5l #r傃?T$;-$Lq,* }|!p<]V)Bŷ)WUE+,r{RW-*0B@;,(&QX4!yQ}'"pnTwKa CՖ Ckm6\R`^Jd[")rSWš)K(b މ15 ^n&Eql1O͝0suȻXW8Ulr`hCw?ŋ)mVrC#[6Sv%l!Ě8brM0atb;Ir=DEݰHw>!MCλ}f h?%8sK:llXɂv׵f (A!@?ks P\E ;$݂`mOeTcH}k7{ 'RsD !z8ZБ+@Pd14;<AJT AoAa(ƛ̬sOɋMicl6PQSzJ}+!jqKt0T׻&4M]oOʀ~9\CSTcM\QdcH$I{l;5/'1WrE >%,=jSA[˿aM/&d$4Y I^P~R%+ifEo>wblCF6}0򢣞֓!;|"2P@G щjKJ \ 9NMpO&')zxnHtc-^gL䐔BxQv @>(1{ކi@v6ԋPHzm"MJ ؼ2 r,)}&A@ՊYrK:M%VٜW:B8j,uU&҃5g  tı6_̫K'5 <6_O3'{{Mz3wSy:W,32>"-3 ZꂨVocV4GW㳛/絉cFyD Sȯzx*&3ndp_aV}sռ>#эMuYĶ,7F 2vl+GAշ /REZĜ|vS*'E>4& BDB0eRhaG: 9V%6ϛs* PHp k@bKLBNe'oQ6vK~]/uĤwڰܧ!{ZKw|\k<%Z^3bMVV ㇎L"M?[@,ϊ1ڛRޣtmrϬ"2TmPAxz(ܼ?0a*h.Hhyvl8֨r#lYf@"agGVYnN1ݜҍrO #K)[b̈́tՂ[&=1ebQI:UӼؤ~V~twN Ti^^wk5K5xѦtgХbzS2$ = SoTҶ\2?F/f_i'PS`}(=-Y?1-dÚ RxWe{v@Kߡ7nu9Ho=Zׂ)l,f?w)vgn0;+M;ps2lO@Wv<8.B[E_*Bh V|`@bFcQ1\ I>-RC`_f:ːYE#OYQW t5UVRq2Q$ 'z˒C}rHyy!G]b yEJXY]ٓ*lo`J=ݱ|rX1 w֘ |o*tThĠ}UG9 \.PsPv(9T>#fgFY[; tF{l.J9cY֭2yUk$N"J6t>L|-yHuJ0I 7N ZŀM1"f؋"ʮU4Ԓj&oV>ethT-BVV6HVin2*qҿ65Sf24.^V ϻ~-><I}+WF)AV3Hi Ur 9w,#ʡ.UEbqV}g4ޞ8l h $Fc #jTj'1NyJ?@' +&fEj? EA_>ޕ+& +8!O^PYgd{yٱMH3sUɰe143,@yת'x ],o1sϜ p* ?zQB2 tD5xYAy}SeVRDB%'ooY$ s!e?ԍG}]Z_aĵE3'.6-XMssq$kűfTCtl0W@TKgC,xr@ü#OJpّԹ65 %QADf%5`CX3=͏ DY?ɂJCvtc^LRMGci$ҀUyjQ(ɳHȸ5`*|$U\#;2B@?yKaGU6uqupCd3c)E<<ę.8=,j6ܢɒ4zPZ5?/#G,NSnTW\]54l8g77ӦEo ?UW1Η@&S""Vf: l`2 7 .`,JCXmP$Įl*^)lγZcY^FEKcۤ~mԉPAk]v Sa p^pdT AO!wl]D[BV)\38Z@SsKl|fs86[8Lo~O=-vi\8sp!*8E? nZp4Tׂ˰fsDb1u`vk\K% 0!8*@hޫ*e a'%# E7u$b7-OXF-9nU[# Z-4Fh^Ƽ&o6%K kI஽6iHSH[}RT5~S '1p|8L}B_ScSҐS񋃐[GNw{N`T+&LcU!%]0A|0ݕ(h|A6@;5s͊6`Iv$[+"͎NK'*FLjUxbSj2~XK&&E1a'2ܺ/r&.)?= OEmkBi9|<݀SP!gΠpD|RZc 9@y#b$F!\fu$v?ՒۿHZ߁f@?|fF)r*kyҿWz~La*t$kE*FqnGCOӎKY5ytm&Ⱥ/-!ʾU|Y,40 A{<4%M3̔@Dhɍ-cP$Lshٱ9@Tk|i5E=NDa*Hzr?)J~mŘQ< BwA~ %/=i[t#Y\^ef Vz2vWr=jF@!evN[RIbҢϽB&>Vk%ʺE9^zOՙH^gĬ(Yc \>'VE)}U4.t,& Nz<"|"'?Jkk>Wl(3\i2(*M6Lk_1՗cn#y4y@p辯} Jv*AX4cNhzė#YϬ;@uJqdB0m A'*u?eu FsYIVKp(-I\7TWsߏ?P!&H<ӿ.(|_M݅%R-ߍ[-ꒈ·kMս ]$>(z3ʔ^%I1V™NHb yM3Q I4+sG Pc%'>|bl WK4g&?JLB3X=:ɐ/58E .Z78l+)&.G]"4&fʌPe2@^.dsۜ{aΔ_J {b$ ^^gT<ՙs"`'ʀ1\*&d{LjzҿTD(ܯbsEH"uYG'.'2N 8BI \vh`(r9-qYmX1] U`yy7tV5O|Tx8zxz+=1i*LkN޸{\' @tHt6/H9 zV8J5n*u]o7Цx!k|940z@E;[ɛ> );FRX1R|)vjR7<0L<? QH /ۿuc' zcAS1 ]3)1zn:[ ˱5el~z_AZ*$&Ù;k'cp9>loR?bZW{ 2K9EUPtК?4.I;6o?c`8F AtG"Cǒҵ<d$s$i0}2 %"8= 5%7O \s+BA[;gN^2L8ܫ{ؐd\dOg9/@,̮'fq ZyCQ?8P-Ot3^A"~ $4e% EGW\ms?QCɌۭm*/)7׉6vHr޳_ZS5[^̙g U[0ϗu%XZ5S4-8!# 6RcZކXU ,gR j׍Y0/I/h%<{A wQCҖEk_g'sWTnA;߅{uÁ7ʑܭ.+ ~k=AW߱BդLa1liau }pVօVze:k{drӗ7иcw[\܉91/}?& _>$faw<(/0KS23ZΧSj.YPB_ݍm8cla3TQK?2ՋvWԟP*f,Hޏc. 0U[a^;~)x+VVdSpםlD "voİIlJ:kHl8?k+a vNEMP#8aj[CJvɻ$ eKWt"dYd Cc`%vEh`nw5d~? q5C" XZ lЂt웴s0I6akcOՔWn'޻2RtwY<UNœZRBFv\䓣-vҺR"[X9q ?VP߂K=BHI%G ]ŖJTx tLOF^7ywێܲbv*>2)CzR~U?!@i g%΄;w#sCrZqQw\ ~lYc9{`C\rŞm\]p 82^ɽ-r-QX.\L(@j? Q(B.ӈeU6t\t@~fVN/6WENx0]a#"V vEqq6=mIۚIyIg#І}a6!&4TsZ|Vk-'Vf*Ny0{ЁK+8u8Ry`q ˴WÊJSTbpȄ9|UP- dR*4 Z|6D%4[G+3Rde׻+qC.RxA.tY+Ll~4upgsO N5>,!Ζ=y9Zʨ%Wgmΐ5#Kt9ofR J B"J*xWj.(G`YK<&N%zpwZӾQv%CO)Ⰴ ^ĩDΧ0A',fп,h\3T4 }*.ap672-K<"qW0C>|cY~^c@i*gŜXF2 3ΔStU<ʍ0a@p&k3[{N[- <+יR䘖B.|eٻA(Ϋ>` s[uhꀟ!Zl|m*NMUk$ xS?"~ 5nf[n}^UUmW;TZЮ3\LCηmL_JfC!N, ej#9|L#'q2F?A;J-%Q=:$D0!h*'`ϖSeLniZ}Pgkwu!\ަ:s|# k,!--61UZڬXPJ2a=Ny[~H0Īusьο"+970Bg$LPSNX( b;@]t7Zu"2e  x6-N|FQN,5$dFgSyTZ}0N`ae^zXKZz-߇l4bVƈ=VtIcVv>&بFlQͲ?Qbmz]S)%o$f0H#+3|f{"ݞ Y/i$3ٝ g\)SS9*0vdK})L}oB?*+S6 SCNz'w&G0ݨ1 3c4*S ND1Vɑz⍓!g&38,oj3?f4}  P־=!y ?b8XwJ@׸8ZLfJzר5JՅNt8Z,ئ$XvZ7WCq&زotBKcᢵ]HҒ6e-.T,`->ս"Skce/k9x!L)-6nN&(Z8' N`Hs߇v2˗&q- ok \?†l"^rƁ\5,)2 Է! XX#O "^8L,9bԫ쵯 $ܖ@K_pp,*Bi]Z]̇[xIWлQ1փLu)''g#U+k8VL -ˆg/PY~sC? q/Q_˱P?@H/ |^,WBˌܒۓd#;2wGt #ݯA5"@9&g|6o?x1gXM69q6DPsg%kQz婽^:HQvppiK7q//*^"[X:OOP'7Z8C᧶TŢc2ITy.⻡ɻ*4d"$wwsz(/ivu)1B'0#I/䴿1A iu#Wy}" X^pzk#tH6=F:tJ>X2Zq1/{0RPb(3_Wˍ>&E[lTk*tx{-`[d=!-[X I)s%$6|Qz`hm{G5yCΪcH;Y #_|Qbo0xqXʙp6MA7 f :F0Fqɹ12ͼQ'gI.7#'qMe\-)Svm^N_Lq<1o'վ er;F[N[ǘ?w%"duqng 6 vyp'4:??JjO(Dž`CA5<0?cr3}cr.wr/FmID˚f`Ef_dy V;EYO3Q>dcZYnBR.Y^ZG}"B΍i8e3狡_VRhtWYTRpku.g_M_rk`tP?b4g6;]O #WrulR("Ufcoj1nSҾ~UG/8pd5Np߲$CQ wqkKKy``c0Q%A.BV[s£fA#vQU3lNݤ:mh_{\zL99 f*?VKl ihG3 ,ucҎvE# o\,9V'<:cj_?gD9FƩp%NO17y#בcK;CNtG83%5= qf܄[%|G.hSx_T Q]73l?5]1O3m6ƘF1py /^#>ӧEYԈ0vlBy;Z3"J 7Oij PasSI5xA)^#>pDojCΚ~̃ &Q͓~(|[nM BO[9$g|5\29(?Y" ޣ \"ޫ >]y ˅z7Lv1B/p6dPVuEzw)nZCᒜN[؍)Ch%'f?_ 0*E5-ܦܢ@a9~ltxҶVW_ YFPXIRSg:6ai@/o3` j) j@GUVPh낪|UwQ,*][(A40x2#1 xB1kչܪ1,XxV{}ncSV> sKp'7*G~Y673fq `&NלSԵg@ŵ_4= + L{v䇆L(QWcUG;c^8.|0b8 k%T0OV'Vk`(×soPFtw䉜LV'tOP+cQ+8|xu?{u)UU\ ML/[+|b|>t&'of6)~*:mc \C񲫳[n >\Cr=t{&ryc] F8tz]k?qeD'lObKj 7pK1S{W'? G(Tӹ85:9f5Y>bI!$ڒXع p|UЀveO실.,V.coZb $\a%<F5zڸεP5*8mMLφ *ֲu7&Qf m ӭ  *x!u,x]Zi]Co'ѣEZIm')O^9IvPJN0h͍qOWfJKcGIdHqa֚־'lgĥZOn[>휰|NG ܐ5jzDMLNo] ω"2MѤo7=Sи#{22<]6BO* +zaI!qnr YL`@_C;܌؟u۰S|21)[*zR8^IRGU׌z۪8G[%E߆rK F+Xw4.Jx{MkN{ |gŗLŀXfbߖuE _Wqx@,//u\;)Z!w'B.NNmq4-/!ůO vG1GL.BG<47ۻH,gu|% |_;sJ( 0DS '|*)i[Э`EVyɓ\ E qY)yۅ]U< k06<째鋁IAGLbP"u,dhK,x{jrrLZIhKkg H9ڠ J]+0,`4B0U{opyTj{^7{)F3 $14ڎ/˙ 3M`KprK%eDIBW"轶#|Eq^+h̏W"i᛫=9u3ZrD$p`T5O}( kvGdruGftA5T8u4Edx2r33ʵJ62!Q ؔQaЃ Dӗ 澢MP5\g萯^JgmVlsaW#й9ܰ& g9,ƃ>煈QS=:x,Ǐ_ G<^4V@AKg O& X%NC(- @({zA=ȫ +(On )qc$}v>sWqx7U}`="CNď/~ )9fh\ AtnUV&A%SaE[2RWANS⤍{;K3Tls| ?VXed-yiLCSG]3h.9tJA@DcޛpU/M5#zT}gJÑwz1B~z9sÀ]'?U|rEowQFܟr2;@\Wp7E1JNjDN\N;vP'{?\n}.ڳw>lb+G rۼ- NmG{Ju6P1GsƂ!q^+UY3idgzd]tigvLya5XfE AB 5fUöY'ғ:,8Xnդ|plL]ܑC)4]8diB2L]P E?(l:`a"uն^:mdN ρ" ڥG^S']/@GYGͅ!T t$Zb (%;i(;Q# qam>I8?zz oH@pE8u'!<]d(T7p \˔AV@Ahvv|z N{AP efuJ;.aMPKB>-"%5v+j((ޭ󊢗D"@ɀ"<@ot #ў+l3PYabΡCngrS&f wdr;7٥kă2*G&!`b2`vH4G`F?|?^YȨ؅0lFCZi,cI!c]'φq6=H4cԻ7݂ siԣ Dz7CB+hO-FsgԁIܑJ;$[Px2-T:i); )| a2@3#CANr~>p!tt~3`/GQp8ud#`{1*]ji)H4BfMv/dԃAO{SFIcXM7duSIub@$1!1E΁ t.6fЖ4PJA^++tR|}}}dRUS8 z왇Xh5$ Be52JM.jqĿOt1~%4$tķhcA<15ʾPQ|ע *(>1**ֳF);/Сq͉wLPvmK:WFdX|(D&u9L<7 T.~:ҝnzL}SbL t@][-Jk2YrFqf'{C記"ZK|Zh}z)T 0O=/ a]5BWzP4T#6pHcZ&.Y8"vv= ja/`;n*~Y?>nO0mqMvӹl.s80V%}ue Ёl81u/: ˄V%ptYkCIl+9poP كϠ}xk'#4 NaކI8$Xy::[8=>Ƥ@!ߑP[# ~Cu^M7`\V3XP.4_yMH3x`!=D`G(Zs}W@D~P1<$lY>Rce ,qdʡ!NHpS"w5aY~j 0*4DH@h^\ee!ڋmI ~(7Խ#mkIGPP{-_76fElM#%5[q,MhLψ%/\#ɳ rdxG&n^h[S/ӡbThLм($k#AS$}Գ*^.fv28/E0j~Hq)pǂ=f6,xy@`?1Zi e+ \][f룃[[Ȝ8z#`­P:J)ІU([1/4}y˾@æA96ע:Ba^Rw&Z $~>zgE}e,VuA_r OFI%j+9sUZT=]wǑU-ϑzcFsN&L7:7dU;{eӶ/Kpq@@ck~:zTͬhFK 0OQ IFmM,%W: ?^MߛUfnD>HRpq4JYPC\J,An<$!nbW䌠l@R=}*05bU58ۍMAas.2-f)|7CHAw i$h4,!Zj2RA>LUk/Q,hTUӵxSBF,a,`X>J0`dH֑dW¯Pb 8c隫ǕnT/HV{A~:Y4Nj T-#C1g?(`lP" -炕#fɠ;!ĄݙsėI%ƒAٯmf='u6S' x7tVͷzN_{Gcq&Yg%4|2#gPݚ׸TMS0NQ$0PU $ܓ"̥J?k֡[O(-S#f-R,H0vAS <>RкY.FnU w=bW 7Ժ>pxArû+WD Њ76rO3"La r xYJP! SwV? YCΪgh8;3@Y+dFdLp b<w!0DO}խ9636:3EJfW6bRrWzʐ:P}4;O>UbQ̃Sc4 ]PXbرH B+boPh-~Q*æDuYbT|eXT7sF7G@e7RS5rk1 G{؝$ːJ89 XΥ9ǓtyIM.wm!Iˆcԇ 'ww `0`wƎjEr|zhWi):K \^M:L42IMuo)OT gOݦY>Զvg3.ЪFVBqdԼJndiK)=#W:'5ISbAgaj3ar%\8~˞!)q"H a?e^k էt&[Te]E|Hy͎(X#/$/K.p)>LNxxO~l2-q"=Ob"Z/1 xt3 5$#Ńmi5z"qm+WfUT_[d8H~)_W<}N)tnI*pkpk$F b7g+ '2ϲcfWux|M#5XҮM_ a=J] :?zHxŎYlٽ~L4݊mA8kfًc_3Ŝ=*s6ocآ+z:f]X~b+~=b(x$K"Vub X할(Su$r'ax0?L$!D%k(U_ՠ.u:={:J1;Qiƾbh΍8ضSBmDb[;^N $3fD8~eWW{]}#u˜6(5f h"$S& ,׻2ĵ>^P}:moM,Z miD}S)McZFKTgs{>B>sih)qH#V#X_A s-4Я2s-\{p56 l5o>1{S0J}N{s_\ٚ;$++-Ko .0LPXdG*ݪ6)/}QNe?Gh)(lإ?BChOv)0_ǝRlsLtquRUKe[^cdw.~}UuVAh;ՌgWV82lޙG'Yr+IgTtD?>Bۅַ\ 0b2Z(O _.;2+dw %kYӡ|6υ}̺ ǝIJesZShOK`q,M& NUVWv]"go }}Y6X+Pi-[<:~`\CU+]gJ,Kgp<˟o1K5Lh{~xXf hha33OXH+/SW$"&.JKjS %1q g!5k8wt]ғtT~[׷|X4etY(Jjb5=xu)QQ;ْN;HjXXr>q[S"J3B1l|Gv)RVI1džY)Lj{2?qGqZhL?tlgd< nQVlԘŬNStP} C,H>v3"Hu}?±'z;y/=LF`N1/ .5>e^E^px5,JQ zҲvJ)hw(@ o~9 |~~Q\IP٩Y5tJ_WK1rV!ssLm3o-lid@ڥ^>/(f|WE1o݅KfI"zl߃ _{BJxr ?RS!8dR}غFޔNM.f`f3 kQպ'WGLƇs5[v(/s^3.ˀ^o!Va8znPN\\ 󾷆+UB\FqGGm-0x ?h~Zmu+C0W)0xl֗5b5NBBF̲,{o d gN+D.KC v Oq)S֐ UO9:]{y1Z#̎N!=3 9qӨMm,Qo>Ih;#wS/R/*ntS!qg7cȅd_I;@\-6Aa4 p1弄05-@GUv3Rh -D=CBV>|Yo<&!'J&`ԲnnGڿecI^ sEp2^;vテ=D}>E;n eq9>J~ñ}HC2WTȳn%B,hnK {ʦ=TF\oOtIV9LGe:6t fݙ!B<%no-84.N!`;3?ʋD>]R@t+Щֈ2w{҉sMD a;vι3!Ped3(־qP!W΄vAU8jd&fz嫑1ǴBr+\:1<Yd~ s谕RcyRrmCy2 5hٗ=*իxcz ěa~%꯯S}ql0-͓!뀄D'] &4~sf O 51is ِB pAE( 5r(GIo5IJ^a Ty.J*ZC͘ (ͪ?Bc*ʡc,S!h>׳+&to a^Tp%ӽH7Kw Af*_̶lD KBI1 GC孀:yT]~0×I151=43"* {\'c>!7N`*h:r8zs~pPv2ؗC1Qo,S-w- {a0><}y[#a}t[Ь6sS?5r||'3nyZ!5P 2# */kp:A.,[u^8#"+HIt'm0DdԺ^4!Y#._/$ކ>fμgI.۩r*ߨ|QKм3= Ume wٌ3d;<ŝ,{T`1$\!}#G%6AuEYԀZ~'eJ#7 .QvCQrds ex()dM01# cwHXAc5A]@l'"PIw6B&"Ս WDDx#:Ld슗jF$PjJhY _}?e!fU'Eden6v0~\( k4 4Dp`r_THD=A+@ "btS:??(:BVXun*r8Y.'u_.8b+@(_]DQpե^]bA/Bb^ϿZ!S Y: 'dulMZbA)(R%å)׊ApDhx20(k5l! Iia..moiԃmӥjp1cvfؕH(4z̖Qb%g6=I,ovџVldۍXT]En\ŀ%!mu}&/캭}1̕m^''mQ H5BsąNqnW$z{P"7(r/<*#\Η}ce۝zլIcMg.%&fX!͎u6UC3m?5I7'~xi5D|a?M [ :DZֿ~a}UړF^_J0\}'#- 1̗ŃES*4λ^ @LVsCNXV^P#פr9(D33#:zδ,FK@~+Uy *v7[\m%}6P`c@HHHQ&oZZ++8rQ](r>E3DW2E$!hלغhs?*-&۶,5?6 e#ud a/Z䘡XgIB>G#7&vB D  !v-d;6ۿ(+ܰmEw{utP)B^qnl4>{w5SYۡG+il^;XREPXUn#'YCS/pq9474˝YJ:In-!2ݨaz7ӭkFќs+;?XªpOz}hsZx[- e_rhsPB)$%Ɗv.>BEPkb=A:S`1؜%ۦZedvS^\ʡz0t %9\A9!L9}Z>-b\J:|!U}-}qGd>||BQ?t}bGi*,Q]0&  ~((hMIP /=-A L6 M) ;#QXbN i&۷seV[@w H^! O:-A#m0~?RQ!; ]RE8Sm8x+)˩ڈа::2ۃ-w167 /ˆ>%mm5`Q蟶}/-jm6չyw~Zn(g! {D\S_1]d˸ J&o~NN:#]t_%92Z#5_Q| !AS¿};|9>׏Th?,A09֭#Af}@ђ!+2& >ҿI[ra&x(6 lb' WG(yvcf0(Ȗ]'| yu5)]NIhpI)SR[ʈ+o+U4vu{eHh@ar0on7~ _\:_S^e Rk[ʣ+wExDvTCU ;͌z(i⺅?~P z)/0 knCFB(hdžzQ2ـ@q ĴNpB Ь^(Rgo#vCKd]G_ R   mYe{<)R.R}yQkͪ.{NH;]ҥl/Ʊӳ.Pl-m&w *tDb6%5W(.k]1gD4VA=Ey ǎ+EWLrSt]+ YjNL/aOd% "ȡȬG/2%6e;U)ͨ$_:RƠkף9c6I3Qd3~cI 캳W, J`uG_"j0ݿ*娥!k}HU>bK&ԑYxőL8F;,W>Puik/J1f-5f|׋e,#CJ~6 0p"g)u$A0ì; ܳ[Z_0S$8 zm"w 1\\z #g`cZ B0#-^`zB&4qO2Kh0?*5< CNeO~`+ U J蚶[%چ*+bpi20BC>'|w!EeThɚD`+ܕ>fаր~ڄ31d8^OQ\mp'UO DmOޤCBq=x&{OGwᅱ%,5~k>NHX1BC<"EG ՀǖT] ?m9"G?Wٲ+@bD=h Ӟrvϲ5f@~R!(-hߜjQӡsJݶzJ(yitHMX2LnҦ+V w@|S;1PW02.A4:Bsq;Vh 70(ț˵Zrî>7%cS͹ҧ7FS%]:UPHfԷW>VA}%rwpZ_|*E,hgno$fl>xF_틶|qlA~!"0VO\3#tACU٩P$PySBs''c{nivS|9F̨E?d9 lRnJnj<+e~x603?y@^;nv Q*ϵ3/Eih(uD^MٹBƩM!lBaVlIBe*40"&oAϯN5 H GO 'hl0@gJĪy4ӤR4z>G>|N`*w;Bd؛h ]X*k96aލ6eBGlǢw.I%R UKZ5O8 *r4iAZVDog겾Hwh*,zf@ ra ,V~E$9~9Ӥ m9 6zVWt/5APU=E,f  ̟$IN"1-h g i 0ǫ)'l';ʢ;A z"?Y Ha*䊷;B|kRcBE=\`PPXͧYv:>JŨ D5cΏ$'6c H>b BTlSfYe}_MҢjWAv_szJ Fv0գ[ֵw4)GmE2Jɂ3)e"bW7€\[ iF Ekɫt1=q3!ĊtUԾ-OWBx@އ@"cCGy`??wVj$Ej_`#ܺA*ETAۖLV K5RNUP.YqDI }糱t4XJ?oŜlԆ"OںH8hVr#gκ5\zcr s0³\dM84'0t/Y.wQ%ciϹۖ"6RD̲Zk?G`"%o!j}k1~ָk64%Exuz(8婥/H{Ap×Qcxœlg9g/1 ?r2 +YJ>CXyMcqBa~Nsi5v [m?Rώ} .)M;0H1ZwwWg1q7+MT|ZĪ օ,}D#cG-!Q(S Q@l]4ivڱpJɿdN ҚM|*'7uXSҾQ ~7lcmS+P:ibvg~rEvtQH>pvI#d$09+nR'C%Kj^^kj{:Հ"lW@$iwy쉍7A)=qD:oshzq &~ |:*e1X4;!XIlr6"f}nE8<2H$]z TQ$mbbk0DN0L#Hj{lk{`ccUF#_,C>4xo<ԫJΤ~&eH!]$vbP8(oXV |]f"!O=~=='jwjc`lꎛJxڊ\(1k4"-xOAHRq.KsO~:Q0d}eLOMPKmk(1FϡkLa ޴>!$@RDd9!}2~ߎʝ*r K?5ubFja`$cjqGkrpɃ$PQ UeXs!u)%x#>S~-Sb<㌕bCZtۧ YE=i,2ktţ+3!(zZ6f1Un~5 91ۓ[Z;}tA̶ xc^icqic}rˠ YCar/HH%;5PlBzQ}Q[3]wh eCB:㦔ɸuc;X[_ɭjC3Dn&p:8 *`N3PkO%Jɬ>l.j~/⁜ct̉On`=4A l6 q]dwIl LXMf)c\ۅ(P,y 08N`hm؉έ~\F]ׇy:6!#&=%]"-ҏwo1fp 󋷆b\ @66 Đ&0Y:1j$0Sw:?l f'A)juS\<2K!AdWCIfz2(^"7~V 1wQ 2r2N|h"޽m2S|u '=nG6mnYeHgU5ܠN&#ڕKڈ輲‘ 1ݺ;lªn!j4VZXX ޳/.VR^%哽cܴnPIX/5Yñsh!c )Xxqi^\IDT,. ķxa`Wp(>VS %<ĥSFŘ%3OM_\ Ph:G{Z6 sM >C6Qȋ%gL8{0^E9U*"=eV|!߉Fbl  :BwIw;$Ð5@1elKIbيgfͬzٸ {yg=H)Ř4ɮnqQ=o[=׫_'|KӴPtCɑ{i9Bfk b@U:[gIvv͏SDϗTuɼ6zR9C'50Q }5[t}_?jdy,jW TXdE,r.fa*Q/c]/6r'zǍrWs)>egcw%6VW q5O7ZKI:ڏt (=-ԁnܽ(4{##Ta%Sbd*HK!#sDW1|+4>xT46燠kKy/S TPk{ P7u"XX6C~V*I9a="6InKHvw= cd_=O#R1wp)/w5zGzeϘ\6J2x:ϽZ则dqx'R6T2gƤU8 Nzy^('6QJ^adMnSx-jF{ط%F(ʙk*Q_*P؃KΙ#s]G nv,uTݭa[ &1_B ;m1X$M3M,-_څхh8PЫ[VV^NCt"tD1;r4 Bʥ`T#!F @1jX'Ov;hWz3$nɖ@3J⶚zn_c>M/zPsɿONaWem ffDIz ׋PWP*g~gܐ ulӡP"0=w]+]cu3?[wg (hV{#dz1A`_ VUFWs[쮷(ekY=ӠkEzqQÝ__ @p T ?yaPYqns%u.moos;]C"W9Ę3e2AVy9ug⾺uO%bB!]BI BqIo ֹ w&=,ש"Z.TpAg=:5S { &F3Tuc|{h,u쐜ZLèzwHBe"[d3k'SˡKY HM駸~i%h}g7XeAҐ73|vv ؏Ai}?vQ&ϫ0 jTL8S{Zy;Lܿ2G;Tmt8QWy(NpK)MlPi>ShӦW"Z17.7z:dڠGb\~ܧy!{X.oy%OQ3i94tWW>g}ܗ.k7f )(-i![XB+]HF5Lx}|1[3u6z Zȳ mslpmE$UhQIl^ZnJ;XxF JlV=qTcj9BlT5A$hSZ@T4݊x|"^ts)D=Sg蔈1Ϗȩ^u6 ~]zQpMT2z(Frڋ&}B!of9[gSt$,Cdun(mhGՇ ėS 㗬JF BBS5$Bw{wPAG"82TKmٹ@. [^*_yN],t: r#NCVr|4(P$f"?|G =P )1P`y|y{+ҋɹiz4rVZ=3DS4~Hw=N8@rD{VLN7iuΊApF:UjRհ1,mWɂ~ tT,R?wd+ʏE}#CsGAJsZikecUbA}L@J>[NR'TO T[2(\KUW6< |:N 9R4 nvU3]|A4A%2RsΟ)z"hh [02#g`&&i 6 g ۞۲/EQ@W )Yf I =ik(sxtOjtgq+DBlZDžiָe gmxh?8EkFbZg \%Wܖ{cway/^  ,GvpMP{FR/CovO]b݃3̍ށ3 ?MyP}CA :u"HEf\\K+37w/WvL{$7Yhl}\hXPWcҹUؙk /[.P%hn!ܮF*DןnLH^H uFW#^!5L9RA^APw@_@DL$@39}^ motfV(KgrS5rOfh3zDT+f0!Z9ѿ_@̃<0nkWk_nLu*:6%[.ɉ" mDZ}{ *TP|i&%'@7wF~TAŀ*K6)H”@$|BO:FTooO̟ Q3Ob'*~5d"I4"2LC90#Ygf<S욐縊7TLݛ{] E‡[+M<]o{ `:ujeZŧ>dU ??L1IjP$%Yև 2z~cHv(:q=,\Y3$`L r b̞۟YZ -G#bռXY+5R<譡y-sM4? D_𪼓ʾI@gcM'pFM$ dxn(׈HFe<ɴj;`T >cvmA.3ڮznLL*yPYW]cgg+V-`SEӶKڒƥH=*k[}Dfss.>jEAaLٖCP[dBsbqEg(r$"f\hYFE`h[#A=Bk\|61ig9p] ' ,n^Z]!pzhp+YԄ]egVl N?'nPb *c3r* JJ]O0.LQeupDۍ3,rKln>zU3(d4/S KepOW":6ҵ= Kߒza *[c6:˝2n%@sEm,{d\kF"^Zu =X/-Epabd3p4#̝wf6;N |a?݀3wxS ~t]L#fM2uMtͮIOw\(*9֨<g'!/qn:7.Rq&c Z۽9Yi=;oĥg-{ᄸ!n{x߅{3;|A#NoԘ-a0؂+.WSJJv~+ B#b rrѽzjz>4q$>^qnʐ̛ -$3~3[z2ey9^/s'ns$7T"PDwu# WYbvl~PG^힑2(rݳ~Pa(y;唚 A1=%A^(Vݮݝ*񒰒 7M?)t9H.^Okd'I.{\]TmBXQLT)D#. 6"+ @q˧|qglPhEpEA&Neq ՎsLĕXami٭rU;>68!sZ=փ!R~2_(e}I*L'eBO{ 1Y\Wqx1"oR9TдHޫnb|0R +eUャoeff-!oZ_x&DO蜫 ߓGΟ1.ڒOI*ȶyʣoik^*qn#̄~UFIk T{< nfcү "mDp~Xx6>^GָVlj2љ.뿫@WТ*rYژ7&v=!M2Xe[Eb@Nh%w>)AZ}(+@b2KSozDㅙx℮{XPUwNoSpD3,顺PQ{P }ty&to&O/q-^83y =m:OjCY\]d@q-q{dvSo㳷(TAּFV'3MrTGѫe܅&f8!cIŀ! 0mqg3!\4NEձ`"7-ݩ$1Ou.2`H.jKY `}Z~pobFnҞz)dĚw ݼ0}*s4!p8suίWv9zg:v|P{#39.gx&Ycz"ɩD IT@Qh>f tm*)1y2^. ފCY-MQ)~/NO^z\_]O16zc[Γ}ڞŅ^NRȒ8X77Ï$BNMQTB)j9 sbc'B6+L㩶0&*E2 \Yf>"t= 9Sx #/t_ۜ}-IfrN}3AG0PLJbwk>u$"mbɆ_b% x2qbOqh &]^>S@d.Z #6WX &ZAR;MH wI-{+pnP^DAC.Z=rPUXϤ[ N&u:ڳjYb\B% 'F ɒA#<kxvs9R508!"qFs@,P&2bkXV:ȯy)!o%P M:qQIײ0)-m =~/A=Wƭ"jI^xEXt9,_jv߮z.๪@b_=0I9 &ضn3h~ivT >?^vS? { ]BK7kthj7dr[5t~Θ[/sWTo˷?[C"3&45K]6ɘ7RsCDbɥj/PwT)R_^A%̯)?J~uL*"`Ӳ/Q\K>J\xXRɿ;AMKLf"0v ΅x 9A%"$^ Mwh%Ab&2JvYN^1& JѷA3"/z$RsԿX^>]]`ϤզltOj&DWu3z#X-X鷯#:dR:]g!fM_ פ[2lnj 4)^LG#B)(2фV1ps fK 헴K~9;zHMI"xO=̾yrހMIs|v%nLۑ}I+/X.PV.%#Cȃ,Oha @ h]<.=#*S\AWOh h%3~N_8ӳ0шHYŒ16kC:]k`q*׀$H$\2VA[!lG!lUqYg7 c\VžNR 9qt\J̫3J_b^9BblS¹5|3v/;\"b%#OI<)Ш|#x SI ח-[lkm2NCluD L{Z]6(j+@QA>aPq}p޾Ƿvbri `pnlqNB?Vm\u5%;_3wnBPXw߽-pw!yBjJv|m!$̐8[g*85řiqwhH0>}"qA$wVu;aF.LerQ_>4(nWL[giZ]7ô]V·AUAW!ўs>KorЛ4Omslьzìq*1ʲpQuf9IVU jO" :@jg[Sj ò IƤi:RvwȻ0DT hV$ OYw 5RQ[#ˑƓߔa&I~IU%jNΦ:yҦAh[]ًZ{?J <+QAVk~Uń8Yޠc <V ~ں;rK/'#QTqbz.I4Ea00`ɄN%T/Vr&Y#܇XH5BK'bC"I}lUݒ̐gT[@.*Z2tgNEg'HUDګ9"H Ϭ$JGZ4 "2HO%̏PH.0v5?ý IvkDrwl(|-ٳ|ew X}L*S3V*M]zj"6:mP>FjSRwIM~G>Z^g;O}A."ReP}06%tL+׋VYL)!>ĞHVĮx o>q"Dëӿm5!ؗhnOTgт!&TMϥOXURstXYKvW>8V9 ׁV;Fl".y@0E$ /"1VA팴gk͏_럟=ck2%䛛ɐJ6Κ탄ڢf.Q4idkI٧yLr=M IMwt <̓;rEv.If= +x:Ծ]# ъLs?TR00gV IӌhE;OuW_{k:RE~>TNCO6;ҫsBkwU\?;#ށ'zRك; ߽4bNDծ[c).e+˯2L ԐpfZvw3y^=gDdAm*}hFqRmBU+B%7NIqgR"r&i=@HF܉ZG糄L«=XmOu 6u2AA!+;T(,$/]l4$oInQd_=1gńX݅| bǢoVHk|5 :ךm/e6n*Hde^H='֔e;J !c!5i&fBz]/LʄS|Fȳ}i#~_:w[Ai{,Lq|Ŕ!BMѷo(:>$B N>l>O$k,lh>ͤ !xDOU57Mȋ@%ETweK]t7DǮ86mq>zA%Xm]ۇqٟ݅1aQ h(2uB 2 y_hNЬVW.Ԋh OCP ye6ya5J>Hk6nkԺi+s1,sgG"n滊>2K{tcPγ!g ~i:3Q [ɎT )ƞҩLo73g2bD4f)O1/<K@?Fҿ.![{è;z( KQv}a(@,wE8(@HۼoS ijbQ֊¡J\̶Rw`L 2>C#Б -޶ nXZ:4m%N[VZ^J:S[)^ &N2?ְx]{2VOވ{ʓ]c?cj% B5b`M"\o]B`-.IHoVk;nO}}Nmi,DRHG%Coz&F oe$W?> V&S:1;d wskĝچNEc ,MGwrO 7=Wg#R7k>ٟ]JF{`#qrxlT>xSf>ݾg:T-i\,ohQ$uL;,5yHH|j+irZeƔGy~q\Lo"̑kXZ7bڬFXJI9ñ źx/2t%Ѷ)$LxM%ܻJn%GbЛ7Du^ٿSޔ|vJF:`*)wR8nƲ)FMO;uԻy)F֓1Ɏr<@ FѼѴ$:M?9R s#@cNٗ*w{ϻƳBjE sfHVA)TR;iYкKWdd?iU3!Aefs>[WʾUP^Hu0s#:jR(A{|O+/N k{LtrC1ò=._D0;0x`%ˇ&GO`5a%:jF va+y"meJ!RʺcYzvn0Wm`V\A끼=eHRf$4o0P5\[t`i+Ҋ*=C܁E9_xwNrUB:OelGeۃֵnP{!#U$dF_{lb?uGA-5eFP 'Ij 6g/M \{% D;$(xap q4E;!1K5?`WB㣏 7i{"oIد7>1?;/7Ls8$ee&k@<־pcBVMdA tVNI9,D ޗQ8)6/(#0bXHvW9tbkI<\}t[o>QA=uLbW#/wD!}L2"x+|W?R[|)kZI^tOSZEaU0b[LlmhٖHE@tg\k)ns( ,>^н#Cr?M+^.x8Aq7kiu23vaxu@}{DF_.m8$| Ԗ4:RETPa08+qq 9$1o̴|[ 5]Z)slti@w\0n[4v=GwfvN9 e'm*9c };UOƲ䵦%ӗF7u=|vh}1FmV )y'7ۜڀQ{:]8[uhPjVTӠ8x"[)Kd =o% ]C|@L ۤG0rͣd$mGt#Ի qF!eۯrD2XRSU}WeyQ\C//Xlݘ= Kx'c{rOT2खm5S"7o5Z}:-&Uqs${,/ŨQX\Z,u$&Uv)`%+d,j'O| |Q{vV ~&+Fa ?sCH M%F*'>Z=xc7sI<^3s n{( C>Q*J‚+T6f WwWo2dX y"lZs?'q:m$nUڑ+>nuP${Ɨ}q,V=ʠ'hf?^BEb>z@%"aLӍ22DX0[Zz6 ;%=a{?~KB?U ցv_9׊"A03OGd OxѨS$X?sUK6/lC9T[|t.˕[3 [?+|1Ms9Z3)IALV~MT@2@7v"B#Œ t?^ܧ>=62Ў=Tx, au_ӂ ׾YPE%PE8c[n=5H@OTc%!<8 7(R\rMZepk+R1 -9[ܢ9Ħf*涠Y>-cZVLHkzu-ޏqڕO!1u\APw* 2%#ڗ+|c|4UdO#ng*^.>M]y*a}-urNdWP7͚g3K}!?5s08~P01{9ضz.4]7䗯@FE_a'(% ?ݎ-g\ĘӶ`DeN/SWk l8ƻ{yJ3/ Yuag vđ]y"`w7XtDE.3qBoE_NjIvP4v5M%ybE.n tU|"==)`Wi>Ok9TE  S-[Z532R,4UyKM\ݞ,!o;J$.)J0X:TS(F{9H2L%(!Տhoq8>p -@ N{ ?k>ꈅnW'NqZ tLȞ sn4̵ lfUK/y,{=]x? ڸ-,K/QO?X?9)~ݯk.Ee5]hAfp{P,1>hϔe3n=FN8%SqU=mVR07_r0[PKKM{'[Ok1b\~s8uKz-xd冋5IMaR ;K2ŕ򝱚W$|'ZjrR(此*ZJYbZdiQU}6Wieaʶ9^)3cetm7?zAw]7PGԅ(q7&nBiP߯ ;L6"Saȥk<MMLv? `鐇7i+Q?S_[0S(;Ht'&`/+Bo3PWƢ|tI&f!롒ȓ =+RbsWƳ(QvVcB:1/n7.,I]ˈ,ArDt_>eĔ3(o`C9mQG m^PTL96{IvI~Y*TC~S+p|=GLf3I,6Aih)㐒\xGoJmrNp3{2NJT^ #{LED"ǒZ/&hd$:VV,q#gu;%9*^\蛳x[wxl# l39>&Xȯ1 &]-)󗬈b8+NKpc)2UvDۆD =vI SqNPuc=s_Eޑ3L78窍kNsY@Lb=ۓt#G74;=Dބ sVU<0!F`g?B;zݴzxߋׇ&8Y<$)Bw_ @ rVRܥb}ל*84(Ԛ_p毖2dHkUC=.MeK7q]bV.FHIo5 x07 6v_= 8ۊn*bp"mg;trlOU}`5zY q?p Bހ n+L 1<˾9*}y-*ŮڀkaD4o(FIx0p^fΙzYq:F3E qZI=zw"I<*" D5,$YAɀFaQlubJpHKd0hyA8M6?)>(ӱ(QD^8ˊTekyԢZٳA &>+6K|lt=sQ.U̟>EH$vldW\3+A͌9}}Hx EP7G&)y* C<+hf$|yw;ͲxȔflFEMTE(e 7f@$+^0hcWO)r[=KJT#3lS=y5khm;9Ph נ], al2H?xZhۈӚL ds8r_d*,:0}oO 4pmiWp{R 8=Mz(&ߐ/:ģ(m` CryJG6"ZaÅI^hd]u›+4ںR)Sp f~eʓV?8/V=f_}b^ck.F/c-g^48sARYI-1XKQ^Hb N3ᒼb,B3_@ ^`QbB6bޒ˥c>8aO+?.( k~dYP,mi?ri.D̚UU̹aF*B*, $[?&o;c_NG0_ᇉJtT=JHe9?m:\&#kt~z6+Ǩ&.Wg ' /2(q 2ĽKoO./Gr/q|&GnNZ3)}ː0]&X8J`^w %$8 3"ω9f%u=9+#YK@w496v6 W)Mkhh,bqoVЉiY^w Tx;Y2N]߆ι3 N6[?d:NX/L'LɁET\-Zj7tqQ  4Xs@/ԔNjﰋdgRlJ]D@Fp(RTɼ)x>jDBޢQ(=0F.@Jܼ:d AogK&D)S{ `Rz -ﭩN97~W>N2K ՂO=|_\f7g%fm{B2cb{nTǏ81[A %Ur$+RD8h*6>C,C:Gij{ [ I¡QnAϴͪci\T*F =uDij( - CBZo E ʠ>ڨ_,b(nd:Uˏږ)+PVX`k$Go*vV5Ǿ'-l s+k5LihĪi2{3hՄK!ENzWL)YxڭPPW#ԯc5];H;tyDe^ALZfsA3jFvX\VQ&"M`3:ChB>üM:tk&Q"˄-r,)B|&t$n}q4ecW8*jf|wY\0|]?]'^Ln虜{lx^EהpAA$-Ӹ1=ğ D ܍ŝ%Z\ SޔwLefJdA2ѯԗY@IArGl҉eϿvz@9(LW!mToI5xAX\Pik)ro#.cGbC ZXVC xE.ٻe!D2?1 θ>a2_~c5f`͚e`z#TP^OI/Ou;ue M}4z)B6JTy~?ƕIlU<@JʈAB 6x)FcҾ;ltɊS" *g'$d_UT' LbusBV(f gVAϜ8Sb-5F3QJ+$_aD  f%kOE%Q^vdP*|dbxW2/x/W6gW/gp=|(q& fi2{yr$/9{ ER}/0!` q 쒷 =CWx(@L9;j <\$^\=H+6)j=u<_6$ dGgi'ex{LeLD#9 KCXPI[@LtF@䱅]*L=70uڌ2BdV]:ϓ Z*VWDޒ1{?hbVHٮa|+9'QyE7CB\kԇc{`hG5`J;D e=3S Hrڣ3KDu"D{&ǖ5 {Vn0^Ibse,ߖ/Lkcp͏pmE?*7^kg%IZR+46c8A്jPB`0u'|&|AР 45ma>Z;o*S3E7M-@b.BZΟ`,= ͏Rۀp,ϪE\&# {#x>:BDIK_M`D=8ՍĄ Qkp5T%#?(S;vN/ hVĆSNM0ʀUMO&ʜ]fI}=0Ҍ {(_7‰oQh5`16{oo1߹)QsGx¢yz(3Wo P,%&q{MvM%@r@Bi.6>'G8͔#skM\BE4ti*Jf7Yh뉎U9Ccӆ  !V.wh`ɲY~4b'ƲX#!< @g^*"X Ne!.zO31C] r3?kLphNZzxZ6o'!ߜT F6dnYSBd\BHNNM9eT1,ʁtݵ}}6 pfxJ,G(Ս"6|1RS-cНug'J>/韤nf-lc zo} ԲʠYTm2H4yQ C Dd^(x>t9C_Aeð_Xghxc݄Foqn7yJ(ɋ7sA4 Q~&%X-k ξ()_UGK:hk⽍!G/l;1_Ԯ;3 J5ҩ٧K߳Y¼^Rذs7xՅ֤ V$״ۨNy'lb}XUzRƎSʅ.kks-w6'@ v/eyP w[WXĬ[`htmY5h;#VN<ıru!Zb=^,;uX_޾⢜R "Eu&zu*TF 2hsy $YJl %S79LY@/9).E76,N@ )waO/֜$R$[X/,X]cŴ A-^j&T!! ϼ_c;͕.*l9Q{b_6`|C! su|<|e{܀R_е̽اmaC[viYBjI.lyB:d̸[rJyd4]z9cӦQ%Y7EN8>J ߧKbop*}=ׁ.La9z)^C Ï*kE_oFMz1+mu BW&KRݱA-)I u4߯wq&D r1,Q8ڋ0>ݡALtmG1t#l{'T-@,EkǓo{DS !}8({MvsbpG߈ hrwr3.r:pS=$H%]ܢ%iCZ$Mr|F9/)VkKL [-Hۈ+M\>}9@ۜq'LE6YFb :DB<9qЈepvo tN&z2.2R!@R _炨K(L2i[Fš'aRi丛/O[F  /]Ӻ!xrQ&U/Gu}T t< ЮaҐgVxyIW>D1JmԾ{`N 6@Xs K:wvu}tnF;.,ܕ?P_& d]D/}iuG{4kGh%cTsͲت7{W$a w&JMNҰg@4fszBS5ic소C!H豂eDWRZwc=J8yvXi:> :G`%(=S`JZ#a\Ld"B_XD2[>tt(j{+hǽuH .9 ": 1@p~cs}\Tz4-}sRlW`B6=dr<KG~&lUgv\EP~)pD$Ʋbq- pB$YVzV lF۷~EfԴIy9VKivHZ㉮5zD<-w%{hcv:lΈ$ޕQ#*щy kqvBV =ldլD$GnpqKxuFhǗ(Th4$ȡ Hq\ϬP2+zNo Fզ<0ňpV-cx8lC#.l/;{7gד&ٯŮ&أЁ='L9ɾdAҮ*Ƴ_^(#W: Ė]" 6[iD<pZ'd()xYQ :A.>W3^j|FwY[HdH fuEq[>|{rټ6]jtLEj#$4K ^-O7j Chg -b+*r8Dme<9?@(ټzE N_T?PXg =Dr >: j_k^LB3RXǑZZ:}/@˲icHi?fBx6/ł ƼcBWH!5qy~h'U*ޣ: FłsQ'_ϝ=RT 7Pb,KW1d=RDvX^"((88{71mRE$N6?ܒ>jDVl2zYw v?cy>FQH$S*6zmjڶs&<ڑTIYkv$P N}%ܿބI3ze*5d|Ҙ98_]!QAIW{ɼ$P딏'~{ж%,(]"cÀx[,'2u¢~8'äi^[\{S&yyBڮۖDya/4䐅#tmG26׶y,re /69! p)f7BY0E.~ί N%ܝ'e r.R($MS$S4 fWP_e}s~BNbE~ںlۉHzR6e'P:pHmA0җ S`_d;`5ØIvW֢KV<,-CG=>RȩoorQ\7D}tTHDs}9pMyԋZ}QΥ>9**GUQ"z0K M0J.?MH#UEhU<#q/ۦIS0uq*d#Ho0"q0r`Q/a2@">V~W,ؑvD<~kt1E(,Lu0`Z2)4g5=趫læ c@Iͅ:b2>vhwc4aU̷f;ER<;iiֳ}~LeME/¬|KF6&eN㔲g]`l(9YCRVsuuDPM|X@j/g|-ϗCJJ/{[E:ۘcWOomәS. #9 6~]KsY)Si7j lO "(i/- A=OlZiڊua+un5ӌAgzpSY/ixpIzgO\ڜ#o<&՟%w=o%eVU(4Ѽ1o^썪巟\I^64HK]UHkJtQaqQ}\awE0hЫaI@2Ψ;n\F-їƦtHɏ Wm\4B6`&xNW\?Oɳ `R<=w6ZG[ǫ1߆Q2-+'ԒHJbi֚ A8TS놕#˜3e1Ql(8Jo*p]jl:Fu(F]eS;쓹ҙV ``dh(Aߔ`?s.!ÉtSϧeg D?T*(~vٴe+[e(!Rm W!_ Rl"d>'Z\qWn߲VvV.bHmCMhޡ4!Sjѣ_XTDf1?jR=6ϲtu8ׯp+,̹܂5@9lޔ{/ ')>7 vo'oi_ڷ8s0,sq'q@ύmhn] JpG[8nÆ{_I{C֧&Ҙmu7PVV,['z8Ǫ:ЊByWHb5D^!~B "Wf],Ԍ;6evmjߋ肺Ŏe[ \yLف yH_BR=Om^d[I{ 3AH6AD $0sBϸ"Ն*jgds< )  )WY\ch 4ti//jFǮ|eka,5? v/+)r H0C9S"zP~\D+_HDœ:6X,TSB'A ) JъsB ڝ9y'ᔹ$bL.u^9\rݼ^u/ 0^&v1~jck ,Ųz#1UTL5W'3AE{8 Qt q= _U !Nؠ:?jf?/[fwO'%m.J>oF=[M X3iՋh- ˑ YY;EP;V,!J(*|H‘MU"=lfR=slR:kٓ}z"] c !CL̴ʣM)zbd}E6+C5gܾ}FuI}D/@B=yڇ79~v{:YϳL# ԧC_:%l D`5Z`d ۼ Xg6Q}''9 k6U|A ܲv h_h+,@/ýc܊4UƍR M^AI7{qeHi|ՇX_(Yo6,z5a ǵ)=#2LQu,7g)T PF}:󯶦$Ğ~BZ0[&,\Sӫ&YGuK5A07OwGµZj&{`wgCh(K{]%j)6%j+J2 1$вiCK,f=+EMHl:Jy coMy TNCE8< E6< %Y9\wr|4my d0FpJ4Y%QA Q+̬V\wzk`gx:.Z~d j G#JBcT 'S:ŻvCpXCh<I2cj_ &*]j2>8LVVg#*qr"n WR+Mg=ƥTn$U[(BW&nFbsp$фGLBr~bǒDZ] +'T|VZ0I۠/aZ7|$wgomĐҔ稸hcQcMe5m:K {˾J۔SҼV%ˠUvXYTG`g8L]wj( olz\ .UF!0jF'}[p% _W7Z#׽^Zo@ %wcyS#@JBڲXAD4Ϻ!>uS޿Δ C]g'PW=YȘ/b j#;{ifJ.~ќo>)Tq~O |^ XmprRB"ե'@W"rpZ 7pߞ;eQFL,({[VXt?;"R(&[_Ȱ6whyb*n"ZgK }u'2>YSP3@xW⨶.v6:$@+a];wFAOE-\$EhiB?YL@#C퀣 P p~῟`:iIv+\,%cà `7vD>]-H1Qb CCpM0B]V{ ]\5i,(>kZ g[ -s#w2ĝzyG6j;Xg-tO:&,{ag2hnaAӨK`{[kQ $(A]Dw$;RDGH<%a%}x,"Ax3 O%17]\"_a3]e^Kk;`AUqj6W^^L˸&O"w8k"-l0Z~A V}hhf+T3$[O?ANH2JH,CEZU~ڐКFM e$%_LWVL|QzT"튺7OIObHE)f~+!m6XJ,Ŧ;r9fPdh; ή]ڎ'*$kum!llΩ9(Ik ]OOӜlWlz"p3Ԫ3Ql`l`{#bvL=ˣΟdjOP Jyop@r 9nWvT}?&ڳ 3u!kV.aP#a#gv0D C; 40\3o Oy@},t3+r!Y @._j0Uj~T 3ؒa8(w҉?>0/!2~L TS[m3=5c,%Aժ2>PljdὍV& iz"VcVrI:K(ŚεN_`JIv P՝0D9VqCc+A\:0rkd @;ΒgpMTVe\eUV*u\^?/.+ii(>ukB)TP95 |{ "~q1 @u- D[Y8ȟ#!ZowM>'ner6e! vP00wNu<EDwaw_:$%R&h4GoCl x SՂ]Opϲ#)0HaJdgNnh`tbhqmSiM0b&,NQoً=:<5tmq8u?Vw, V3Ƞ>HuV~/'2U=55sj0 6\HF X KRѴط$/S\lF;\ 7 o/z&מ}qZwc@౤a;VWgDvOOVdEjgK`H9.<`] [匶\ be=`:X͌ 6 Ә<`$@F^]ZfO菘Ț7:ƴz#ʓ,alΰ1N7qcRw 5!*tנAs9y_7egD2]2l gIgJ 3Ť;) ]hcoE(j: %Qg!V&Ƌ1nxJħ82> 2fs e=fhaUdbu%c` ljOJ)y"4}:;)c?b6%S[q(嗖Z- %).y+ jd :]$y@|ϒs:w =.*L0if)?[g>ѫSѪhFa-'VroyBg6k5m{:Vv,^%aU^#;N3l? U&FK)[\' '"#1lg>Awr7˰Xrx5'8{)JK=~מ7t'~[mjbWdW;TsZc`A0/t\>ϲu5 c;-|要1>UhG]~Aswtaz zVĴ@^ vsS \DW{OvjFKy;(mh) g 1B y%[Z@hNaMwNmDݝI L-0-,`ŀQK?_Cfrc8&O[ԛ$Hb`}L' ։hH7H*Caya3]ԅ04i*:~SQ^ofhTKJ+  !_1 |‘ ~MZAl{~D:~۠+tTA.gy&I`T[PbcדxƩ0mKٹȄ[RU]$t׺)CE,:xP ] ONs_]kfb-]mZ_Jf@p]MklY虍$봔z8E4EK -G%y44BAͧEf J_oxdEbR?p !0IJO!\0ڤ G1c F$Uݠ.\˺fH97y'L'1nw,mHD"LL 2(;;.آh l )V<,LMW&K9waa@E_t EsQ w6\/F"U;XCiBaϔ&l}x@W{ ;k$}Yw׎l',̡䫽"s.ڷ>_QŤP<^ml76@V4fp!ٍ8|(~gۤ T 4ctW1қIh"ó'W&x&5InjQ#AXOޱ-7YEd,bT\2B`W>TSok!Ѝ?(EBu%٩NMM;{"w~9tA^^ Og\mF+aίsxnypU3@Jr+Npu~ S{ҝ(˔h*S+RmU,!(96TL32 -PC]rn{AwGM8ާ5 0C‡1qcts;sφ=tRSW3pMxc*Je=HBt3V%nڰ5zE&J0Q5pŎ'NB^ X?t~Rp-կxT.K>esu[Q]r:۩s#s݃;X򖫰"oI"SBcŬkMϮ#)n{֣X>K7J#ߞne5<* '4lY O2欜d3buK_@.RVx~LϺPIo'K>؝k4 x}"qx`t0lj/dƒ[O?͗Z&Q2-K*&QJor L?0:Z/9kS#qq~6C0^ԫo#? %A#3.4z ]o4ΤP_6A[Zv6."` 3D;3ue$xadۂ7h."WmA* 钉0pǀJyOr5MjW'L&OTgLQ~ѡC6OIEOR}Zjȿq]r'X'/|-.pآ1ZZn ]r@Ȯ37gdY*&[mc yμ_&.:EǾX}6NklYMJ^+e72:tD𓭏_u$bY) xj <b\1&Iw\M-R~aef*W-iK["nօT hx;_NA5ol3JJ<]t)7Gϴ)fg(l?7}y/^mW=Ar7qKkl ">+ydK$i ʯ3_%zu׌]NjI'2|X\VL]؝!*guS`P2U>^:z1 K?]#%OS'!|hO yx\;h y lef;2q Yf!=>ޓX1ESxӱE[?lEUol|i+OE[y&ѷb- >5a *,d%Ț9 ],ũ^s@&_$dt['_h71!/ea`M*{;9uٗ g^kא" "|:)ټaaDf2 QK~547B+iU="s07:#Iv4 ?GR +oAʠUni=\ El˾شok 0An` g5 ȯ;SJT1\u mpV.$p^eco2/$iѾRMčnK1[w1f:NV99K+lg/+l pmoi/RtVTՅwf0hk4P/SRk % U2_X2/T+ bk.K7wr},2NG;kѵCm8q W+2hi%l}hg=IJXnM)b뢂I4Sji%FL6ҕToP ұ9$H<guOVG!#cL;.r.L#$q|Sa0>)ۀⱤu0Nx Mn.׎e6"9 6 oq%I $42tA1O옏[&41zޯ}hl4;Wv8^1 UlAeK$seI\ -X/ˏ6P㖉=`p ` R,~h3k9RQR9'&df_G: `Eo]C2/F[.ekc5Q_[ gN^YDG@d"y7094d6:?UmF%D& @"֑2C~VnGwY|2 @o4^~VZk|c 4ǧF@'+zkMK yL_=_ G g~s&)BptB7)SkHfXc,bV(jtݧft7j:YClʱzg^&(6j2;0^dNGZˊF~ JOv@!m]~pA h/3)>3uYw~ޤS-;q"}"{y"hQ)(@+lbRsA7! cVTUXv(BӁ2~D}߭!2 Mp\ )rQ-t?"ܨ1n#oe*ʧZ='0(RCh*nr!"\l>wY$֭=xs+oőlx l)~[HnlV" R*5t W9so>lh%qCd x Ul51=mbp!ÞB_aѐyaϏ%\M; OVCf3h VLqGΟX{iUM9`^ԦSܦ$^(uWft$GUu"cft6ssWbnL2/$cߝ֤)nGy6q-Q6In Ҧ]8hS.shlͳ(23Ϋֹ5Pk ?]@gZ%l6n!m=,7/^/f5> >og)J yݩ$4|,hݚ>0-ρ$Ögz1xA}qe`R7k{QsCXoww៵ 2_q&D% ҉Mّebr05J~.` XA par0X8%*C1/:uhOF$])Dv >[0T%T^=JЩ?[S;]~&ᴗGs c"hnVMװ:F\Ek](o}:9ꞣ룲WEɀbLKOxIvkZY ,#兺[5pMi5$t9NGXc-c&šXdٜG">tMK V&k0/QIc^hHt6h6*T *>}]ɻ巐(T `_\z>SA4Hvz/ajCaݖAyܓ1-D#RC7"։qjf3w9#(~߄)Okr$[]+S5U?96ܲ}}O[sr M-sI @–&R̳Q0B+oKؙI_wѵy,k0ۜC{ݧEOmݛ+† D & /ay0):v9ÞC$蔧(6PF;rp:pS3MI^o?ޣ](Q<$yCKr&'P% 4ǰAk̆lʩA o9UZsMVb! TO*9DN~#{/Ց  e4ētiؓnjEK*2Ӧ$%$EtN)^F=diyw@i҅~A58,"H)!pg\Чղ>2ho ơI}m1W`(y+'@uyQSVnio[2eLa 躐 0aIyehl,pϓz>3mnV)^3IL؟twGp~٘ݩ2M-Y@R<eOنl7&,)Yf{I Tj  )Zp9VzKgz\{ K)ESٰ90u Wtpl >2͎.FT윷p8 /{ɾ79Li wJ3ټt0t>0{+$׆ⱗ]'BUȘϤ PDljq:66%mɗ^JэOOQv3f\/RVrEV됁iX9ejZїQa8!ǎc`9sh:5ɠςjQÈ; U̿}DM}AIq.Dvya˼<ԣа`5X%c>od (\`=3r2r5hnA|ʁPk5*`8D|tΩ|LY`,A:zAMO29N"ƦlhC 5  \FBGRhe}0}l". -=Xar*/]P_ 0A*AS^M '9 xo<,P`Ł_-:<$0 +F$A~􏡩 K25l{fR9%6nKu1-.발oz;|悴tqPc 0?몝3*5K/'{Um-*;#0EyEZŮ9J=ܧc\dPW9M G}JTI8i⥱rnj뇓i,F acx@ڷ-"d1c`,8WWV:suS߮`P5F{ʤCz/$U.R6f+ 3c?3FM=.fOIyqX[NǤ+7#eҟ ,>+om{dWM\9kc2FޟY,a <`F\*sMCK1e*nLм_<Ż-@kdlcbSc0OavtV#^/UQJ&G-ۣd&W!FW6cNY kgQEcBvu+ƌ3i7筹V/v坱֧H[:5'4a?2 NYUǢRן3H[PfISS217w&'R־J%:refGmi>4Oq"r<. h 1&,mI4#,RJcw‡@XȪv8r=?4)/ `off@nqvˏq3\r~L9AW0D x:R"͢g?%xXAECrr*ב+&P Rvv[PeZ7Į0v%d5*(\p>? :͔!f<4YxÜH̩( rߺU# 9ʌO |+S 5y90 1ko4G-_I 䨴8}{:m gD$Y mhPmW12y6':L1m6I&6Ey眧Unaa?[X^ыs ʘ֊vvL>hN:&òS&hE ; i O EOQG7Z#75vENgw>w0,.n}4,!տb?ccPU?6~eA]1),}97D`>r1LZ(ֱV"30<7PGtjƵ1\$mmL 6a5+0bV|+΢Q5u+e FWPY95f `q>򣄃B>l^|+> a5X첷q5sh(W]#ϘWD_V-K~ʮ܀dJN}(P |gˠt j3e+,cϻ?d//̀3T8G[1/xh|w5oƷkw2 ?ΏhAOseP_Z2V/*oHIGnlOXVm"$G0Yd1}k>Z.$^wY`pyN!YpkC*\DZ2V+P!1,v! +/ן )Pߴp2=Z˺z6I,ts RzKkp3?BiL 0.9a#aL'CH ; ҆\?@Hyk(b Wz*rrzx:)4!;)?o i=.[Tz͐/I.=Q}lȵTE3+ɵ-= lH&P9ұ[t7X*%0ecg"PW[#:-A:SDfJG9VɜgNnhd&QhTx̗vVEJѳ\Tϻ@V ^?S%+Bڼx-}vS7bCm9rU%՗gRd$q➬o մ{C4r>͗u]]eîktUTP9wkj_'?[0diLO0 &rmCI=u2/d8* %aA]Yf[GSo}PAmCy1Obw]{ !~?l؂䄏V L;!7>N_v6B kxu;F<J"i{/[#vɑ2ߵW-f@ۖ\ emE/d?O=7OsC)YJPVrJwx`Io?ιe0ngeV)7 o䫏 \v_=DЏQW6Uh 싏ߝie_bLCpLҭk_<.M'%YDk̃%) mo3]y~Ft)>$"X'gO H97k4#v•VR Okea;cEFW"ULU}8e }W4;+m}%{aRٟ4_Ek+%vKU4Hut'z08Qo0LwuМD޺F" BL~Z$@ ܴ*FY>N,J@dbQLKi׹ky3fޗ> >r_aSf8BJl/cL'v_uL\[5 ]d?|x:p[27{l=S>^+,;(6lQu}U PO  ?'VLL:' :DQm8{W{k@k`J\y"{ |*tF@^C(a =L*b+DѺ朻Ws7[+ϾEd~6ts"w:/iDxt"8/I~Yg.UEb E F=tNJw蓙#=_Z(pcP79}tqk%4Gf|Ș$ýH7fPӖikyYjO;$ gte 3Ŕi6Al{2Pק X Fn jkl+ wK*oZi/E!|*+`4P$ҚtSU=1~7,>^V4WY!H_N>M]QV Xk5U`|Rѷirnb6><DEhUFCm`ӪbY.X3)+8jx9)Sfpev|ubtSCOs։Vkz+MGg5w|bGgt$7Һ*p:ȓV}!s% )gkz`3nko$,n}u7bԁ#o02Qut[2ڟ{goBݶP;nCvG^3L3KPtnRjEA!)t};$)v~Np@^ڊHkx^t^[نլ`_<%an xôjМ 1-aLypy-ҸPG>Aj3F] Y8.\` Fаn"hj=7@40FREvZa+ةۅkoZ,x=9ԟ5=JTKFʉB:3nm`|,Fd;SDSo*#Lmb -zy5BR3q轋%Uej)%7XU+6Z bL_i |[RdAYKoحLq35P.ja8#0KEku&:`rBU>v"M,C- 'Z5*>$}Y-;SA皢y'yM<a8` |вPKUy G͸\r2+dcn ,>>{%ҋ'oQ~YE~hb*Ցb*Jq gPO+OafCYg-i}>L6فKkڬَܰgc^cZ#ꤘ {i/W evB3i?l*oІ;g} e[ |dn%.UMJQj7[5o9e7FXSu ¶_vG/Ws̪ ~S 0șf|(gxDxk>0]3Rp݇$-Jm|{͞uਖ=!q; 3:V MEx$UL^G͠`!:cz j S&_0)GT}Sxٹ HsG@!_xR9滕 l|=>Z5X)7= n`-L  wE@~0 AD /(f \ߕTl9]|&6ψԃf|[DLbKSj?yrl{D5n 7- v4 ݟ7b'RѾi/OHV'e{SgK䔸= ?Le̖m[빍\} +Ս lB D~U.ii咜X5o7""if:*XA`t{8&bn6pψ4 <4BsO|$ADw^w:$G׌DCU].Fx#R ¨[e7vk  o+hqpF59xDzd_Gxq'0+ks瀫Hiѻ[װVǤS2AZAޘpNybiBaJ:BB f]6إcw/R<5;I;tM&r;l/nόI%ϯmD:׆"054/PhӁ8;r̬Xhz,SP~/O+DcpNyAE IW,FZ۔}oQho5‡q4g Dv7_&E#˭U +?~iU NǼc:\'Vmի>2L^,@15,~.?Z |&XBn8Q դ A5R3 F28?_2U[JU\1o v,4et@bA+bj2WECoc>m4H} 1#&<"C1-itITz*t᯲yBmxޓ~ W#=7^ ң[)$61t:kQ"`'OrgbSPA%.[-{40CE7@J];Вfiq# q\Mu5+HE7a\(>yĘw|-}L(dDsAj@+5v?#q~ϬT?P4D4X0,  1jæskjU-.*TlT_tTzB0zZ ,=CXw/"7S>_Y@W (f@v\˙w,q¹3JDٍ [I`$jQւ&H(3Fࢢ>{C,IT4A* 45IK8 U|3 ΖlՖ@"8`P$20a=n 8#;DVw`TLmbmsgtٝ{NR?pqz9$Mji5xclAo_7 1Ywȇe@-]wDU'ol*& mPqxj>7>w5z2r56tn\xM*oБX×S)1/h-ffy*PzrOOӋ%ucBO\:s,QBs䰔@OŪPb' \3osaV?߿҃kJ0Gn7Jbف).$ߠxEWQFZ~%w@#n֋L =Gy'28yH*P<f2>MwӓA.%XfȅȞ@Il fűhH*wb tM"DqPס4!>Է:bzm((}b8E z2"(XEmc kJ/4ҋ&9~EhAk$ۀ_ZO+t  r.UU`Ic ,ˌ_ gȡe{>ȶ{}2Ξ.U?[2}S0o^9Ҁ _+|Qپ]~cjDB[G+J}7,619F\b2F[_B [o`rs:`yTx/ sWwJ^j>نː%Xٙ,:F2*d"v#qB6(Y4` =+ $d\瓶xTa!=aԨУ,ɲJސB?)0#+YXG+8~2#-q_Fq&j R/u~\1~7]6H"&?8au.tWm rtXuh!%9f|iVNr`d0gU +\]uo;1PF@YmٺcPwq|EjrvJ@lu~CMUDۤ `ܞ޼7B GVlpPLDJ7PAi1c3HY pobJDŏJoj)KKHAm;([P<Փ}(W1P}wN$ 5+@ =,5dT=X>bS GK者ȡL-ڜ9-qSݡ{q(ۛs -n%sNѓ-^54Yw+ίfwr[rM`B({L2j1o׊! OKt~ eDˮT,2CcoNeԞX(X$(@W2֣gZlm(6;s#ULS1 u+,҄d>;`26%]GY.S5RQۭUG|!TZqS@q.Ol9:r0'E,;1<ë~"J#<3^S`6t4=%FMl&Bצak1*qDy86>;xҖinf:@=f5`vNoI0& lm:/+58uk7 cFy|0*nFI<6fce?z3 2aPrSrj7Q-t{-(MO?Eaa?1K>/Ay0A#S b^7$/KaoNGS:+Y%ne+fB@P3f3Τs IWq5B'NnuId-ESsDe'7/$|SRC"&TEE\X1tkǗHDNtG D*X֠. lc ˽BF!uG\|J_]Qlu*in? 39oOhd*k>)l/:\rCqL4ZReyl\-.6)ۯ)FUWиC%?LϾK1ih7h,3gdt?=b*Bݕ? p?I_m #a s_VB7p(?}񎚫p祸;|v`JDxbSI֑bh'+f.1o`*{62 :fkO"~/I7ݥaODBlKy>t`[yx@ ~p0éX/ *zɼԫNTQh=| ]`CqH' YԸ1}9M;VPɬ.ݻ09#=槗 m;}Lb"L]W. GF~75vm90ukq$2? m뛏ʻfi(Rk$`j㰼M,)I7f\d4k!eq"IL#n ZfSSPI}Ss[i!5l'fxZЂKSox.ҌD|0G>RJ;2sgKTbfQYݧ"@7&x}YMpl!~ >qM#/Lݓ*YoKԋis<e4VcFi x4qM*; Tj[El 7VI89Ge?_I34@JѱxfIf1q1 u8=sH?h8$[wtO4P-fK e@vU1GՇAk}!v?~QslYAq㰅ڽH9$T#GTbd-(e -uiKMW+fҰ]Rpe>]\` \#D>[KfcH|kn qGU>+RAƦXàj;e@?/dNoNy's/;61g+E2&9O I:TxLUI My_`RęZ5}opA͟k]T0dIsӥNT8Zz'45~8u_qXu28t=YR+۟a+r @Vi*9xZ7A`&= wy_|ilGgYGu#7xB nFK;ZKR{#Pq#oEߚe;&%zxI\y|AO}i )BwbaO~SA-BG =XgsPhTߣ$%&8œ1EHuAI&0d]`),p&Z?HP+Fl4. ,&ep**6DHg6YY-b*G5h;j^ۮtwWL,R`XɯdF4B.RPF7ƃk߾M!^s8}^X!vJ8_Ղь(g&(I'JPbq9G7 mjGlOc$<ק'WR! Vy8]$L3&ũa+6h{Vxzce72Lhy%A*i":֡#&!ڰ{Vp 3혘"?K 0*yEvsQ(ηC)yw8LKl' bfy[ߔ;:W;A+S4K,TF^1D4UC6- jx.r6z\VUEJ8߬xu;A &C:.7]$;A Ҿ Ɩx&kcQ%$~v:z$qb n:Ucal˵8 !U{""iCEd}vþf ٛkzJiܲ8?|)۝S:bÉtS`un.uonA8UG>Jqb$ph:}y…Y؁ںօjҽYKe 1C{w[ Y~Ț`dkE\y_4$\y=䑄}$lQIWJhM`FE6)! bT n5 @ t@T;T&2 e!3NK;m,W;ʔWP5dWe$$3DTh,O):|fw1#ic_C 4 L4?4vr65D\ 4^qqJ mVp xE+ Nǂ˿,sUr/R}$OKq7)y\ :-5!tP"+CjOzC`fCRzFڒ7bKC‹ ?6n5yn^'Xf3ыqpsEvW SChUxHY{-;=iAZ!pXʭK7>rrί)ENj Vx<&;O:3b%eڟ]XTbT{ݻ;Lc63Jˣk /SmZQ'->[{Gz " *D>{;q {=CjfJfN#Ouaq鑰vnRKGt?!E^!, /38yPU-OJJ PO*SIܹ1k{(gY_Qٲ Z0L+lvx䶼bgL' )f[]]k}w$A `fNp4=jJͻ^pLѢ=Ck3lhfkEudG}S:# S;%]=(iz+`r _%m{څaڦ:rK# 0ADkxz#$Ʀ́fxZ;1dIC ~SNx!GLo'i H1tـY}lQ]f|C76˟4Y-퀰Ⰱ/9JcF@k=:}6ӌ[AD9K?#' İd]D)+ÞX6PDw(|vHB6N1B[tRpg6+ATr qB@n?DYEr-+}>AktLnyxY4OD<)j66A_e&P}0_ٻ ż*w0 \&\m f:=-$_.ui\WI$OhD0u4bk=۱Y%syx[_.ǩ)ͭ-^¡OBhl)GVrw[A8IJq)q=GMeZύ(Di1&Ua )eBfMz9 U-Vz{̦u d!I$Ft,2/#U\mqy]wc"t#(>7 ŗQQf ' ͚%1 Xvh٩2&bKzL)kj]0\ч*Dz8<#<QaCb":ne@; _R5<ۘoJ`S`*qs/΃2bM匇Q,l;`~_AװxJ^G魺V\ Qev6,<2pVj1@|y+j\^Sσu2yfšH])zZ : ' ,n3}aU8?k=T)dtSꏟwQwm(%+]^.tCm*fqqO 0`$vc-4wecuѝ))' NN>lzC;$c񒉿Pߺ5hvs"k-k ׮6d@妁xH63fvL0I/nP]PnHGyOBMffV:`TY`zit,dSra}|^i|i> wWӗTPd)(;R@[u.K+Q;{*nKq@(G¥J\u_ӕo86ia[D+p6Sz)kQ$?t4$N3\(˪{+"Y^G7 )`dIƼ.:_1w:'[Keؤ (VW3h\JDZbr*7Erf2|(9UucAvy@IHÖRG@y`@ jdLQ6=Y##r7PpxNɹU~VCqTD }o@m'APh9@`s 4]G\24C3h8 'ޝ.<`|@ rtkؚ9 ZO\4D]L!, " uH(Oo4J5cj91%Y@Uy7]YhLAaF# 1΀jM}uȗG8.I.9K}~;.[\%Qǔ %Y!novN4)cFD`e PCfCщ=! WW"{a*nl:Ӻ8#CzHa[J䢺N=W94+M\rϮ.'ЎG2$il@%haV%/bqnџ3&<ɓ/͂hdCe"cXX%u'w4 ெǾ!ݲ<-ʊOCMİ@7%% I,ivE+fᭀK\Rxgf~t"ꍓ2:TԙcdgfHi V]NTAeUw[4TcOƖA]oCVN6?$"_TTKtX*t~up~ïSԨrwk/˫M}N J@t m!3}BxSMqp=kW2,xҏ\sZ]&YKP}ʡ{N/}I|dP6T(s9,>29c0PB}DQҋ攅kpN +T;f ߦxؾYqzqb 7yiuvC2}f|jBRΗFfC"mDSٳS9|K˛CLVe*MoNy,^ lh./֐"靵Zkz"ӠxXf.|ŋ CWͳ%<$.ٚb.21Hh-|$q hf*bNҴ|UJHN5r0/ tO. 6BdQ3'm=зUjvlJΘkĮq=RTj2ah]ɆJXGm|"ګ ÿ~,/(Ɏ6rDIɔuƻU.(qA"܃ǼExrôu H)t"sHr~t9LB䡑32zk|}kve(x_fP#"X\pxtK.62 MY@9ruu8hx|QoڐCۤN0=qղ$*k>h642{A: ѭpl=aΫmy &S$j߄Ӄ+L3Q8N,DEw6KqNJY֒\rFPSPfC[hfp^j C[jߨ1Z- ØOհdkZ ? eKyyMq2: = c8EɪvI~=e-{BF5;+ƢSГtcяA\6#Ti։ Ĺ l^&)m4O[f͠u[ 2$\3m@jT\; P[bLlIt&5.y$ -b $2Ku b8R|-ʬ9BZ$7t~41EHi[y߯ BXXآ+y>M@_Ej = n*-hc\̸lt-5u1dzo}ѣ"*}Z5"g9HN_iV`jk%ziPjkm88C=X."tG:k)hHM ru;dzU kW߬P8W[Y _-ki f-5NiHO´X_wѡӚOJcR VG`'ʍgvBc-#9O\P ZMh?<>}!hLc-oXVxNьJ_ <lhps?^_(VpXj\]t'T{26v_t#1._T\_50o~`B9T`9BuϕU\ڎwT1)zE$-1 D!ؐhTmVbjbe2uqm 4AThP z\ YJ.;!nT'ܩM+2H/B!bьc>>F(dǟDo`f-3u F5doYYo_|[TBjHpC!|f v30$5)ujw?zL bS+竡:2CPDea7 $ mnS~t ^J% KF k^By_.e"ucȑŏ ɼd3 ++e{⏒IЈ`[.$jkYo'U,lk~CF1tJ'Å^ۈBs%XD+cj;TY ZF=kOKhf +`,c@%NC0i#n҂5v!$Fv%F`NKkt!V-ڵ)pI/S.ZSܸWP ?V7‚9P_n"vbJ;;CIߴ!vaz#ݐKA8鄻+5pv t\+?P_7YQTLf̳-;,'m|S}[GA-JvR^HygZYP@iPP>EK'U?jqQ2&Mç]$>/J8$.(-V}S9b6HZr0^G bU_.؆:_6V&֬<=/(N!\pW}0Fޚ4:!{*L#_)MmGEƔ!LU4k)QPl(欹2 B:ΔZy(TQj>Q$A+DA?F1t$E :`&/gdT$HYu5 uHH^L 6^33R}ӹ8fn+mIޑg}ҊijFz^jlHBώ`^<7'bL2*)8{n'r>JB[q6[ZivWB+QQEV"^d@F 2aGSBk4I8FpQ{if\"V033Cɓ~BE(3@/uoϳC܅);ڰӐD$"Jb}k7 z@e+tcg9XXʑ")tWNWŜcRm8&諁Z`9\aUKLR-8;2A6'kW#õVNSnZڊ;e t ?!h,ƒbgUD-,}r^L`0ӊꞓNJLj$UŠ [sbKKfH ($}j$,gl]Th@M},L9FZUL?ۢ~Aj=EӶv3,-ͪ}ŀز&&SRXSK.U(= m֯hզC1wkB/ߌtz!#CuA(̯#g3[tpcz4 ǧh@Lj~RrARmXۡ6OIhqNU>l)ۮf'+=*Hx8yxٽxjMy/s~qЎʂq.  a:#BkE5geVЃ|"A,੸Z;7Uyyޞ ǨzCf ]B@(єrpn4t} N۩.dK5L"j]uGB//NʳNz& S.2u~|Vʤa+;DyWy !f\F t*̒ 13l<m$yj .R=9#5޵Z:,g[aW-dWH7]K-"yˆTj)38= {Fltԍö5r5TlDK"jȱ?4bzG=)_> S Ψt|̆ @a x;,-{>.. PP Cdu9)a2_RAoCn7F8uWdܸ>.J`UM9\2q{s)NuXgL ݧ2K'RuFb@i/ -O3F"% > NPo- Vni.5'˷#.6Jl<8L-v|ʕ!x4X|Q@ug~en*6|Q_L|u݈ӥ}'7n諸[_9 xWgß70蒩cT ֪ޑ@nL+Jb[dLIf(%I]$ yKk[*mS_rzi8kG3&1ڦ\[g=>x0A?7Qp}4*,BF= 5t:3t㑠K*}/;'1SLpteY7qɷ/]ηU+IJ[?aҜzNJ"Җh&4!*h<󃞒}>^iAn#)+^$Σ=h hj5j!JdKlŴ7& )))wD]"ʙ5nݑE6ƪ J˞PIHDQZ}UZ*+@w\Ҭ"B"y]O[("0˴xȌ=(O٤EcXY30>A2*:9)Ƨ<\XA3!kI7 隠P9gcﵫi(E²;(ߛxťqmR,CZ@q~ ڼ[54,,A#/.؅W6 $(jq1LIfh)|]$:7N壍SЙjU^;눂g8 [ktrp)} ^XijS;tyKJt.6/}HMѪw̐N]]d 7\aVg˹ϐYzK-HJڠyY~s߱f:nf~sVﻕ6K3'7^MMr) I~=լR!o,& ؃E`>2b= R)L%O*T ;3hptŰT=::HDD%s:VnifpFU8TI'Sl {͸fj7q.B(R#q8K:whZ1U\ۀ6N[EP y^ڼÅKIG:fE,/2 yrR+JjA#y<VbI|?ab]@3ht#ةHP(׷',*UHqXQeRͨa~ڽaq okbʈ:צ]Sƴd=sCɣtea4/yK i9,Yܫn3hE !*Oό03f %!գ0@(:%HȅGuz9H7Uzb|2r Ŵcr.nJH%amFJ] QF"*lf5Hǯi< ~ʇ?CH#[h|Yӛs2u,7A<\q 48eK*]L^8Pܪl-W[HFI}f[hD*O˧  E(<f o%tϵC]J9G8k)˺u<*z ` {vKΎ.NXa續NQ}Q~kًk0K5*9@^p .&Xʩ[p=\-j-p #=lL-,G1 j E㱻@`,/Fvx[Ci{PȇF;Z<^c g&! \:;1dŻTךF >Jd ,a'/r/v,kh_$aqR.\Ra^|rK:< t-Ahy/`n@ӦƜts84Y}eX+Vg@=""` n%9.٫yhqȼ *kkB_4SN Pр!l!8-Y,&[I USu3hG;+,8L1iꮵ놻еf;LHH`}̖ RnvS 8)^m^m:'ϽxUYP*%iDQ?B$]_[w~ Ue0Ze9I~ۄa_T}pmwDfݩjԢlxDf=8ׅ&X&c7߇ d]&;$k[sq{' _r_Fh!eC(>?u-ǝXU՝z[+Q98T<)xop\A/ָ_;p6~+dxו?8!a! YpjAM-Vj>^lMZ{BI-hyV.5؄IeK lҎuB? ۿ_ Ym3ç)7 ۡZ] /yvSUl_?u;lb\ /pR!Gc}P.(Enl գeCܵщoLœL39J1tׄv|Y:5< yXa˽n(mYZ9fpR|e҆I6xjDqyז(G }c'F` 6=Ȩ#ڒ(:J zg~ P ȿ214g~>΋![^."6C_3AGFTm/_' reYpEZ`0fX_vfvbjqi'#Ȅ=pGi_B)M`^~cjIM} <ѭٛzCՊ :/,rǢэdIku/ є-Mf6lY|^ i#OnyUCM>u0TA`EF! s9UGcg?TJڨ'2nիRoJ/^-.ܱ<=N7w!UjF.@BIZ]?VL9Ǯoz0R;W.#Z,La ^p}{ww)^ zY0u"5l_n>@7fNa?۾,ee88; aK\hVHt"_l^Jfaba|r-Zͷf$D7I`o1J@\^Q1a2,~rl]W'Pd͡c][ޘ(y9n4</Q8X _ADfC%ԕnۃX1Z&|f8Ȓxiz,0zZ/y7Z<#c=5[Z Pzם*t?NI O-%^&;2 ,[-T đ%щ^?{π@`$v*& '~fhk$+MO*`Vg \xi=bm-}kY^-B@_`ay3Wg Fk `ϴTCW%kx@^jIal:H])舺 E,}e+XG1ޑ H63\\Kwbc%$ rZ<- :zUJh[$kgP/xPôo5 PI&\eGm XɺT;HOtK)X~,x{%Z"tcdE3 yz6'uZweWa%w8ٳ*Ԅ^@ ߞ(@؍jSwD҇3X t6cS ٰBG] .Mi1܁޶ά![Ocvu dV_Hۏm#gsDȀS\nJ8︧ڷ=} !"좎lzBSkTDYI62]{(Ao2+/dG;e=0y.Xh(ၹnM&Y6_jΨb |;*%x g˨(w Ao8\7J1IPQ+ȝw`T9Գ@0]! 7xjd3@*HP_125Y1SvTQԠWHޗP]kg3ʏ~;+0̥ h\'sa::uKGBh9K4' <*W/ c:q<$jl`LF+b1ypmwZɾ8 AºlS=wC=nJ{1 lehCQ%͗b%;i‰X4cʥtnG\$ubZn#s;&>yY8+/)c^W&~K~90Aizl % HcUH "@ء;wօ [hraYuDZQVS,jeߡ2Ȕ&4ei1E%Y-XP oUV[l%E !3D>G2:d}ʉmtnAتzX N i֫D#u MUbD`&qlJǕ)ٹ\+uĶ$Xd 5+9mZE7Y>YF[;?+kA|:w^KA?&B"EFqŝ UJ<*IlVպѕm[cQuwWZ9nxhSa97+-7dj'J g)w+t,L[˟M(9a%4 Ìoɬ}纅&e/yt珜?0r˖zIMvfa)q(GԜ՟<Y.BӺ{ThD'^.3$O$.DM*쨛AChDk\XPD\VVѡt"E{(RӢW1LPE)њnD1̼ArGzWwE1!o-4;h=|f|m"eS/MaLȦp ]ko2u?STQG9WΓL 0ڣVs;5vfAаE_W{Jȱ~OET#-@zfx|:ҟ^6."1di9ZBjڅ"# _?#>\.{d`2[\^̧9,I~]'mqޚѓ_q$yG 5`~Q`o@Bp!!Lt yhIa /4*EdΏ6HCxK'N㬎k(+B dxĭ1D^2*1Δę;s!7\S RLr]*GO4\cBDd1) gxE?K&S]*PR/s$*\[q,TTcnDvx/&^~[΋[J!ZuZXRD8LDX3G,Y&JcYPJ|aƈBz@:K}AuMCVۡ):/NeE"҉J QT|a!$D2d3==]aUFOrW hΗrQ_(PmL l6,;oǃ5}tU@ͱ-z ucJ;+ ]KT^J4g2#rwD<{Z\z#̔®^.CO*y{qݒ,.g4_ _l 6K(?\NpC$#-2V4+3/vpW ^ft1(~Qa/>dS 86>AD ja+ozIa#a.lֲ rf-b~8'H&4\BѢ:n¤K Xh؍ZpU[<ρ*؁Qcn!,Q hDi)N޶3(j3] N0 x$^}Gm)SYdlk={)wD`+$( >$nSpuz9D"W7vEA"3Bع*vɍT|@ D#К[8/H ${qO>rعc7]arj_Gq?J-F̔B_ U[=8M3G, SL#\Yһ;`y"/Vg3DCS7DgiGeET؆k0_Pω(@>ɠ҅"?UYYR}ZK9:UӨ O|ݐhjQ3qlsAm/_j3B"z FsfrdrÔΌN!m榷\ڔ$J-=]oКl>ֻ]8l3.'\{[pGm/c6o n .)u>6;$^ íԧ@it(X^G6O/+eħ%L!K$ Qf_!{+ΓlEa;0"/,Tox.1f`)d5NN&,"=YV4|yFWPXV~*E?\~6U+>z 3k%K!amP ʺSr/z_a5׃\RQQ'8(3H|@AĂ׫f@Nb )qIap\HvB3^Ḙ~$!Xh?8\26H$Q?v(ۏ*g;aI5 $BwchtX3תJYQm=Y [cy#AAە>( {I:ߎSM黺} ،?X.ĴRc(Í:$nz +mۨZsm"߰>o]064B*zR.Aw]&@B%; Z=Kěxiž/yJ\_:IHn$ 63F.0Ѣ4n&Rkyy "YAt@[h\>@ժ~X+Iwny(gb !@`C- +ל՝0.5P=jЉ.>9׸lja׸ 72ݼ/(-S}ə-KQTa"3'LZ =!y5cȣчҹA!uFlpc涟`hʹ-X~#ޣB/|K0 p9]0׌f@Frͮ̾R1QyDjB4Oˮ7?tFV꺟ׁiG}\WѢmˣ3RB*kכ<鼪wapHDnf7YFUhqѵJZqʉ47`Λ/ۻ_5Ԅ]#)>xڅy-P@䭻iǷ/\' B!&{,pvdh, .>UXe l1.S Ү#Oʷ7/Fh;":i&B(hg/G0 #6x7xd9::)QD]^0A(L>2o`㯢{$kZ(Jz+Hi8HZGKEUf'ݓ}Ff,3hӥI h ED)M?K SdOR/٬)LHVӧtKAUH_\C Q4-2ԯnoRȲFtmv5pϳeF3*udۍ $m>~@n( CM/jABUܠsZGJ{Iڑiɜm?JqbvUb=t\ԈۥgBUF^d ¤rU:',@ܯ Ql_st"|k4&W{;vD~k~ Z8f6.@29PuqCn*@ xD ěq@iqS˿6Sm>bM-1. 툦񋫝#*ePv3YaZwBv7[ ~j*ut4qY'>=>𴤑䀑r}iz3ipSMҰIs7a9fT>Ѓ:1 ~ ȣ΄H4~$PvT6|l-OV?Ed]s7iHKY}Y5X8{@t0ׯ3A`jV,#mm F8|3_y|8dt_\uXI(ŎlkI.yBBAo4J?t`WҏTw .n7| dWz 2rgͣ%fojAhbaYR мF9-)vd.(G,BEW 6~bܧfoG OUƴM̰Lg+tߙIj4crR:O팎" {,ѥc2ž ׅp7{Te-VY.a|: 'DˇWVޟ`q}Zqj/DF{Hq lyhA1xvzWgHr JMmJg3>+omb t[CBEF )$3f^KTY(=f+B{r)|Bȿ+_O#~>}L޸<_5!*zEnt~;=aKY6߫SDw !T z´'M KɄMxBzu_Y:)u.5^+酫PLG%u;IVY[IMo zhZJ&Gy h)F2\\ll>RU-'X:Y|OOe "Fq6a.l_Jӿ_@egPrᗄ_rՒ"QYUp XmR!} 4F~ÞuOSXUEJrMfAs2'bz#=fF:Cʿ_E6<b*fF d7Ē\e+QIMhD¤I|B#[KKɭ?i?.ENy]8w p 冏Ӿr{RMUQwfSʿzxߙ˿k;TD:`;ZCb# 8?2߿Ϻm9RH*GsS=?+yv Y IMl7<[;g<0 SG&;qvWx _ŭ-S͂5?QM"lӗV-URei@y~Eq ?Rfxҭ^GϜ:|>Mv!̲6f ^*/#^%"@.'BL;>'tOy c˕ nجKd>-L瞄S ªALRO4ٕ:1*6S~+بIseKnOE/3R9 0|2 i3lGn6&,]Gn﮺SM n`5 oDR~-/t[pC 6톳 #Azl&sgcs8?ebj鏡-~bp$F$Vp4}:il: Bd:֖ZCOpG R eg[5YF"eԪ" %xwxlRIs,p#Ga#.6 &oV4zyII!6Ɂ/Z嘦{^et|)sM[AY4WL oR͢›7=89V*fk"` / U$d.(>.w* )P8z>H\}3rzϞgF^Ld=͖\_&hxt ve80ް:%u&4ND ȫIiz>g>7FЪPDhwpiM a'\l7 Ce<P'<OfEWFu% ?ңE*vOsTF'YR59ڱ*tvv82TK2 y]@tb_aj; 4RliP@b`[ 4?sc ECj[9 L΁$؈ENtL3͟K[E#~,CwŖT0C׏ߝFjI1mv;86r4Ѹ 0&/ ?8 &HFp`_t㯽&g[IAeyGqLt03܈W?V<)퟈,mTj 8QX7pB U=J8)q23h~V( `)j;mwҎJ9z,Oc9(P`%& ~,LҸE3_&Ԅ,De?sέszYiq"ޤޡq"]+ %㓚rLQhnSJ䟦(wmeL8vSQ/ylI* @S|>/m(87<hϴ?q'Y6vϰɱf/ObI\{eQ)]f-^^ t 2 S %k@[ub.Ewf{(OԽ<_V@c  Y+-^/cyCb:{ $PIXw-Jy/)G&)wSk“Q&_Cô[ 37\!Ve"P6U~鱤AR@]oa#zXy?!kWlfcT@hc ^7#`Pv޸63y\i*=дY=zQ={a38Ǒ'S(\*O- ˚odV$̜c>跅dtJ3}Y/Ȫ37uu@a^u:.3NP $n)qĴՏtpi [0YކObRt\ V=hd 6cQֳ綯ůet-}寁-К *aF{ZH[R6Cʕʮ'xNj;(I%,:Y)2I^^-uht ft~螩]PU")+=o--8qzs!DFOfwNT2㞏FZG UczS~_&\:sgR[n eHRYTpS{IsiKVVK ּHe(P(q&r{C#(GN$qUmalpf٪]vq_w{ T}봬b6m;2KbY4`2LԀ29@c^'O['>x{rz)4OtZY=0mX8z!0y1UN-):GF-؜N3W%lTpXlOmI垍CՀjxs7윇2M|nJl'.K(y8ZOo+]xjC.u^׮J v?MAq#U1s 5Qyśd7P dx91y#/AR{٬/ O?WE_jsN}uQZ .TY|_DKf(Y@l$89׈ia=Fo Z0**6ĉw b8(љ#QCoE Jj8Po{km"tK*Oz?fB4%Eog7o_U8b`BP#"t=BE~sBO,ͬֆDh ;!%+6\Kl:( ߒ!wWrPlYPv 6 "b&DI; Zj$b?]88Ѝ,fáS )jAItJY4Rk~\e]7/8* 2'Bu"q>$? 3mC5I~u"'kK ("Y߰;0v`Fl!G;~aބɓѿZ֘/.fV~ vp'/6龪@+r=`;!AE&ТR ^ hZ_HS8h&++cZq0p,Fb: H)'\#Zg$1kWVy'oxb 515L*f!QOΦ A _XXbB&hѥ9^I~uy@+ 3hݷ斱PR08QKlDq _~|v[g?}Kg,|Fmv^mѓ ?;2u{ ÖJ}/eҞ>";aC@Y3Ͻ ^*@eq)6*|#-A=Ѕ_j̀l4;Dz{[֕E(鳻0l(!yss=o*s|[!2؍7R:s`>+or rAӢE*6vxp_4fЍ̰6|=lIj{x(qPNp ̡Jo8pbرt\CߟjY1bu~Mݿc8p&0{jc Q|2[dd<HFzaX.їS`$xk8ț_aܘ;5 /@tpd}@.at:Җ<S]fHlAti7xj D:@~34;QkRf6!W5pEmOlj ZԿiPysMSVîɨS"YB;~Gִ݌+Ԍ1dLJ8Kd-^Mv_|wWgZ(L`% W WxEqpϪHffї[DJt;T#i/68Z4G|H; p0ou3!Kv&R9hOgH)jWp#w￐:9YСWi`ޖ#;28!YQcYX6Ng1veI_ ËXo*f3=V.3D䟗sC tϥ4oa,Bv-q(2`tp5s@8]ϙ٨LI-o7}P^N COIf >`Loˆn;3U^|\ڞ5ᨗ)[QAs&1{2)*J;J9@1%uYuT;UC'uL51^YI4 UCHbl:K,*גm`ai22?{]Zm//wg;}أ|aܐp洡;1_qbJ3 Ut#L `ʴ|ƑLGG Ԑ$L7)ͰeS G qD ~j[ J 8K@" Vl=Kn9}ۉPh{h{BpJ5L_wQL|NoSdU4^WD.6 (8۩A{G@jRrnjLWIUI]ËvA_F3 Aa T#׉H3e9B^DSt# }Kt3VY77'[◷ݒ7'1$lnӿT¥3U)u99^%ez')i?_q)>9-A&7=zn;`Ҝ3K(KgN|2#>VnWN5H640# g,YP+.29 2Tx"/ƢL7-!]u1h682jAtk%笨^EpFx9wujW؄teڽ8,_nrSCY~Lыm:_ ٲj PaG)τ(iicQahْ"5ϯ`$蝮'$jy"N>,qJ:=[k-":}sAi_ء u;lǁ[K[ꚯ`8npoGa%C 'zr09$1jG#jj)xF wn>RG +Wӈ/C!rݱʴěptDҾwU3{B Π:2/Ğ_) p2=Q\)G{tET`{ _yşI"V|TtIËC29%]*q[9&5j ncM/4" [ϊxĐƣ8O:y5tq@QѴhٯE(W@cjRtR>m ,ٶX/BM.:ÞN.JeI|L}c}b]=sGͱ9Qbsd[Kcmpncڽ{<Be\sjó^Wh}A* п,Z~Ϣd1Vk;00SL;8dʝn7p&t7O@7Jfonb`.56u 3&(wN@~b}in&ȕeVfa82I(N %#h{^@^xOTQvE bD4C\Bj ŁVĦ|S"Uv5[[Tw78r}@DQ,<Ct$?4| JPȄ,A'0_z31|3twyG?tTU)$(0#XK, |`EF= ?MIq?"@AKu3牒Bx 53F|j(hW z ]Xh(̄PP*P tP(}+Jybb ǡ8[.luk|2=a(CKv ԗX(m阮QM*E[+坓25LpYNjI_ʿrt/NC!E}`8J,PRR0 5~t/A:OY tψ =<^{֛DKg=Q-X>oup73~+7nB5'틋F.9[ʮxDZ\.0{Cu~iCV@TҿAy F1cX\BOTqڛ_N^ЧĶbs{2>*d-_t|J`k,¼4Ɓz>P6Pú^y4x_w; 'HFCj,_-qN&ՕAr*xYy)aA<^Մb8H>BϮ VzAܠ>]<[JL`:Sh5|+ "6MEvbUӕd_< Zޭ0JS|r K}@eF@r{,_CV#%n&t dh+qMtʀm YPkSKv޶~̔p=zQo-rTPxPcDX~s5( 륔qT5-`|"R_b\"B9qSuASi9,g~/kB$L!j.A =S@3b%ܣq_@9oct&9'NC ud"c'51uB'' s|/nZ9>IB\ JBPcd> ^E #R}Mvkͺ7g(5@K4,^=E =]=C~"9s?r1(LؗHԎö릯HHtT=:*#.\nwaQz/{` yܦ0yۺzOvHnݫ8{.L:Ք1a֮f31WX6 J7G1asT\wQ|iLYE(r$R)θŐAԟ$6Xj3 > DOͽ1YGZuK߹o% ?G0)XzH]4=sI| j%W sJx:(J,xEOh[{X4 bjʥ2!Ҋ剁NH7\"5)37879:~ eC"J{Ș"j7zl2gjd3S{Gn ҷ4 " O0N(0dz$~GKloй-N?ϷrBaqԹ@àkpm,gecgQcnWvr 8xOj Y-qg)w%Ki%!7U_'iFߠ9䧥bԢZ-Zs%ױ wp׼i$V{}u􃫺 ݸ-Zqy 3V{tQbK6xOm(xܸnZ=RgHm0dUCBCA`ѼVCcig/FEsPI". H;t8E6xnd6Fl^}cL&sP~/Ȓ҃b V=5l}OG$P@ 7A Xo(Ou5zғ~ ,kE"]~K|B;[J`Ï+~VPj_ƣr)T̠鿜_&ܷ) _I.u=?>Gԟ#a)ΚL3 @ʃsz-uOGQYƞ'>Q]Ǯ獢.nT6ygo3L6چTxṣ}0oO283sb1kwA1jf#$^ʟ^€1r̯u7\:Iy'@E^502=H;Њ6jηvй _h0ӎ"yDUe .SAIDroU;P( P.C# SZ&$z.T2롐ؙ gO\0}]3#LYvKIP;i"[1 l/R]n)N7X|p-o-&}P=errΰq?gZ+ קI}$v0k"L gmy}yIYx`1N~huS1,0wWa50fHclT1wO(ҹ -WCϺΎnii qd$?ÏMɡ)v.Бf@HSa```KUqQX%R'H[{-KAeVL\Y`&Aq7IZs5jS(Ma!3W2jt(b)ՠ7gR9l5&-lg=hS~G!qbc:A 0K"j lmM.:>?T˿Ȅh6j>OA䶶տaPP-toa*U`6!c Q˚y >7,׏BlqBwR1)yBg*";FT~kFP lq`ÚaxWHfѕ" njH%sf*xMN}`I]Ϲq֗.*[Ry qMe YS&Y^TGϑZvKp/_YSOCPJX(]+3F܆pXن.K@Q ̧jvgW:MVF S6'? Eb ,Tڬ:0}}gQMnR(]&0U("q|l_'~N;vW0P;65i OU4X4vͩi`{QkuE8Vz䩴=(CPRr0ʏ*Į!reeO+3d'P^mz~{ ໗M&P9C-dL,ghBCSx:)W)X<{| ^$F+Ncj| 0엠@ndT.|ޟOВ+c#ʚ|~dxwIذҢXm~YWbe}`QR5QGE4Ζz֗2?SU":'vb{ D:gimkRNLoWg ֟mK I@)8eԷjtjCoLx[61\!-ħֽA1Ig$A~~ۥZdTD̀;Q[˵R\M&h1K=Ox-Cպ~eoMyy7ܖq3?se"qJ "AmNYn)KyM®CE0<[ċHʶW|D}v׆'pofI-w"2R_ gq+bƄݾ_z ̪! _G|V3=xg1@KMmPU.G hR֙;iT>2k~Av*;"x-+ Irb6g_GP(;Q*ف/uH_!^dF`W L1 >imbܴ}2=Σŀߧf¦P/ ,.&N?Lv(-6c4÷ ^]$?OxyQ&Ѹzqv 7ރ ]@[aI!nWH7h\YگEjPYle!ikӅUr2`u'.x=إ7+ȗWgW>w1|ϛ}J͂2S'Cbo'@/ R2]|*wCa iGGg k^A385ntYgs&JLOfM)W׫6Qz ܯ#x~,Ɠ_~A̓##Vmbj~4wo0&zߛ}-lK#͠L3WO_U,kPKP^͆<6T$X+ާMxC5uT w4#| ΈNӉՀĤ{7&IA͑<mbň`A:Gr.\>^վ$]blȠ2ohE٭𗭳sS&Y1VEh~,K\#:R _@JR(vPڧ2߻'MM|)DJW^j` hh-0y7T[)qcu*e#"R4]]{ $pᅩ >AtQ%{G;<(<6j }ROGN͛)o7ikoJĐb8;VsMxCv I6)G?#$+hWC+o_Fpv/fsq@v_[)Q ;W*KԪ_.yln&a*9q9AY#:_Id^8ͽOV6[}&3eV=6%#]JT~ɄG5ū2ѐA{6'`UZNfϝrBxqi-lbLH ;~??ܚA Ű/$y,v^oߙv]}AwIu<~޳HriOh (rd!~ zZewӡ^\kRތuLq,'G4x/!aY4^s3y_7 \kbs杽najZ پ-=0\_Ry;hD bj[V8z'E<bn*HT-ck1ɖ"ajrSޤ؉5Qȕf'VMN?2J/ ?ڍ14"E`ս@+n~db"dŵ/9H|dzfljP"!\49lhΨ϶_̰ Q<,;>MۜQB/F:P^&L;XؐfSIJpnκYբ ׻Л?{C-wmD0INMau*-kpsLg)ψ:&#e(;L1 n\ ;EM H ħw }e8]c2Ks$JՌL/mN0NфPW6]hmJK7fq7$|1xA1: # rE &EȃTXC2 D}cͲe,ohE$1uaIBc@¬mŽpiɑ" 2|EҵS$ 0xpLO5-T5hțZ޳%YTR^Ei?޸ %)Kla@Uz<|2E\Äl%[[@HjΊ?D`A†j{U7c{GU.vOf@^ѱ8hN'{ug4-Q&ބa5!qXehY'w΃vǔ))-X35C2'mb>I;&R0ڜ*Gq[Oܘ'Ъd`Uy9-}Ks$Eu3Spheat&NawGV9>k 6`y/DH;7[r{r[SĘ:Hƚk>W(|lzkh,-WMǪDwAG𷾁P.. q=,d>/Xyn}jպN,1!d/U8v'BBN|LOO^䑰Y<(ƤQ1¡t iP{ ?lDsq~:B}-_oykpG1AFIΗǫ:R1B0({(qd!H5DAQ7/O?561VfY.,qP;"F]H-cƌ?CC@Ux']Bi'l_kc~I]9{Db(>@YbV:2Bb`vٱvlmDwuhyI Y D*p2+?#K8sJSk#tJZ2 H΅_ht3Wp糑faJ.EjӾzBqIRFi/"9 l?yޥo{Ԓ۵^v K"%dIC3 vJpzvbUz#n ͵g@!j׼ȓ0|V"#{0b9ms#ᵸzQrF E)5 Z9āq[ bo6vK3y(NQdUovzEq{iB]u22 =|"iu"x*YKOTVz؅mh._%L\af/CCϧ Uo-GQNPᔯ!:Xlkd󭟼NӺ aeSԵ>q8j<-!KgǎzGK?q'ho(BIJ-cQ m6Vs6p3jk񺌯=-w!ӀO^*}GX:kfm *l')*^xLz8f yAJ$vQo)B_y0 -6ŠT R(\Ja&I=DrB,>Cnj!jW.Z)Z {ܖY)+xXzRSr8[Dx=nWpU*Dxd(J "eg8PنRɨ]sokh1Rjjb3J..JzO3]1+Jy"Vd܆zLuqH"OLXK",ԌMWŠz7+_$lp9[KBPY%zLa5=bOR&kn{U9lG@W7_ICg儡A!qMg2ڤP@ 4k[61mGQ;gP\6˿ C9w Kqd{ cɪSQݛ%4Q5~+2 Y]y[u~J.O9ia׳l'tcߢT5mC(XtFi,"pK s.>lB_m1oɕ՚Rt . ˙/APڱt% P֣7P#o:$j6|cN٘p)D2pN=ؿl֩ o$z_Dݵs)ե?KrY/A=liv%ZgG[ 8uE>͟H2`!o6FR-ɳ[1MQj4{c;.nkc8w>qk枷xX`2Tٛe#:ϓɳ3H FպqsF&gm'kOMCTdn5[qG2K{Sk􀒱wÁ"!3j7͎Rs^\m>PEkփZUo^+v,gTY߈IAՎ=$1Cr}m>4'|,'NK(0\%'m\ėY@[JT WBHauÝ5Vsmd͕D5snEIg,:?2BMGƅ.27}ccZ4S/!Eco5o94OZ<ןLX>rC%puO;x3^$+7.UT v@5B@:l6! oPeCM?*uksHqz8 w 'gsw@\A٦wk鲖@Y(7˸؝V4nJT ]suyY0 {sD\RtV6zvBN[/v &S>FO*Q H2db^mKIӡ &T7^\DU,;A$0s?yA;A|b:I+RraM075;}*3̔A"J2-35DDfsE۫~VZ*m> M@3U2p%\L7 H{ 1[-tWP᫦[S*1"y>1;\`D*]64CMp|Lf!掏On8_UYDV|۷>St b =>yanKBS]˩ Fgƍ[(~g|dM=J_ĞIQe{@kwrʖG.%#t\ϯ^TŠ4S%a-v@bK7Wr 1p"+5ƕ\M`V蘱90x$<]ƟP?]\@'^HkLl%2cdR. pKJzC ~ 1{ >0FSłdS%(Fo*C𨨚vU@xtnJ}io`ŒYZt̊ඪ& E nFtKɰ^F dZ- X:Z/Em8rU+,"<;ۍ+/(dr R_vTPrj8M_ffa^d,RC?G#m*)ygĩY#Ƀ['k rJb! ;AȔ8p^'Kf Y R=2lWc` TI [now-mrM!]  M"ڭ LP3;' Z>G"v`d`F}1!.ϛ1F{a;E-J(?l bsڝG6vŴ89 a{ ㇈mrEn51 ЧA[PHDx5:kǭ*QcS/1Jo>&|녇N$a)(K1yBibEB!ӕ ]8؎`FU1z;ůCT]MDl'okZMU%OFMxg'H(c: N DE,)YqA!V CdK=$'J@ dR\Ζn7+Dũ?&`tnig=Qw{/2?Fh?(OhVѓtJy 9?egKBJw0~d՞MOyʋ0H r}aSseGORc8vh.UaԷ D5K)_@_A?GQ/icljpU[%fi*]GIs%g7KኄBOZaa) Mҟ`,nm?+D^L@^ïB!NC=H7EuE-\qZf]޸DXʊ[.k~S,l[&O]N2M#]O*ئ0fD]b WF2Xi1ף)j8A|OF5tmZUBxv;L-Q1 MvWC, lh\W%ܭFDin7%HX OBlPRrCBZZij`sqI]^u4~fqD@㟰/H9=5gKBR7j^9[zAvU p:|?F9˸+%s3*\;:q,#)6~5 N6^wKAe|:\A2d)NszaOvw2o+C/s\zVvƑ21Cp̀Vf#{\ۓH u]LyLjr/&9^1b0ʎ)!gy|YDX(YxMe#.O<٩@NBYÅ1Z&d*cBVgEq2-"ToP PX,ts,cÅ؄j-Jctt4"Y`f')k-=Mْ`c34Dygrߚ#Q!9m]JXAOːH,KZ& lOz|uG] z@âQ]?B)瀟[X0z%M(i{۠ l ~b+&@iF.(È+&gn dٝ]%{%WҡһSl~j =^c(Bf(WHhJy-E2:XHkVAfarg Ecv\ۓ"tL%{К2a+nIXge‖_SG~_Npupʅ='Aa&bA"%ə,M[e``a>P%b: aW#B=rDtBlNz}sRf1WxX_N.H6/z5fbz2 1jˊχ;އoT!-h2p2n̪%T9WB=Rv"g`q#IKegW/SKUHL ֕J&{M*ɷ?8pS0{ƶ60D`ucoXHtܔAI*D{]FPT@l0#b«vJ R8= ^*σ)=8{*z1UƵ*ڐ }.2޼V; ;֋*ӮC3nIlT6eό?)?qDNT&LiNbx-S?7G;]&wUgc1zw>H/gu`wp)U5~G\'}5@WnnD xم T2Pڸ褜MU#P7B#x"H !Oej5ٝwn㹝? f@lne\LqyF߯+aWkVϱe ^A5}z#:K…LX?VrE2eMgvډrG8s&u@P#}vVCē6k0(7 ,Kȉ=Ua|$HYY ݋R8I=XRm@v+ 0ZMtU[qWɹF6 HT|F!_D wo#Wx+E8y,Ql&NhSPVQt`1AݵcӚֿxۺ2uZ55!eAJ^vL F&8ՌK@d{o{K.zhnm4Awr.Ѽt^h({+/5z r@XsmYyf{^ Y ߴ|#Woh㖷i |7iZAހ4#',IjVh`${SQ(9T'M7f} +(+7{A+tړ)$?.;ktO~"Q wiXj*Om7r'3Eo⣽NٚɁP=L ٷɄ ^n}'y`'a0?:v#R`djh o!֣RxV!=dΊ]-yDOޅ`_!!(on^#bTȊ l(Xѽ3:XZ5x0gWV[ Y 9:#3Q L|yo`^~_FmLiUVh;DD١u ݆)Wj*BvZmK!Oa>kF־#g~dn)޼Ju߼'Ev:åq ʟJQ,G9BȍJ(t l=H⍢F3*>e)z4(G>WΦi;*@0 bRVU`iao*^ %fǎA-q>iTQ_W:0,ڄ.Fq /qAmä6MWbY 3#Œ'*mg4[}[$^RgLPΚ:&3}#Wm(!g9 \O;jVTo"$b.ʩV~ku&ϧ2L+`9d{.:&\TAdL"6zz;DRGxǽ~D^]Ą?.hx7G!<%s)v8֕d] <^ۉiCp j|Q#y$\i:˰a`00@ʢKi4qe'fYX.xP|>tnr$,۝_d`-ӯ.nyVgC(Q 2ZBס;cBΛ?X^OQ I>r&!:҄{[{B}W.t' ?d,F\">?+L|3%)$iOX?q9ݤE kWNTB.d1:S!loUkT8\FRYj$ʶ<(vLmdTxG DH#< Pɂ[RX\uAZIt<-X]Bt S}z#x F^|ہ璜?L Gs~ї1zf"AUMAT,X'3A:dfk])LknT겤k[H}E]JTnr;m7Ft]LΛ.XqDxdx쇪x1 ?K`v i^+/xlb*埸\cڨNmO5%!u ux.jA{k *UA*HP-54k@(SN3HnoEHMLGnFz_\p $eZknxW-Z !TLX$~v!}Enn ]lpI{)j*nOIjy]#+TTW6]|" VħcŰLhW|HwnՔs,IfpIIP-"Qvنy3V  _sg⭚ꇬF蚫I QIҥyKsgB,-PIbH`ȰkL:'չ?^2yWNvr搆,EXa4GÌ8HGHr'hzvKnM|3Tֵ1OA,l bәxqH7+#$|8iDm'6r>j]'.pDie<]1 MD|j%;RGiXfkПXI,׬ MU@Jk5)G]s-]n%%\kyӭ3TP$e-RM drͱi \9oY?L |82=2x O(Ȗu]'l&WjghblR3e\usNc{]ɚ< GPLxyt2_l!Z!Xh!q RdT*0"XЗôx[Fy%Fޒhހ0o_:sSXN"JvJ=CxEimĊRh1!qKWL3>%>EtP^/2vȌJj$yk\ZgXS5p&{^=R}~ex\`!I1@2_=(~eU܊y*:Wzd@-yApoCmԎR'#`@j+x\̳i^Eo,FJ&\}F09@J-s-t?gjkJ-r6Nt]N/vǯo[jN+P?}2Y߲U%J^6 hs "^c *D?9qIb-NhU;4hX4q}ã \ۣSj+aePMdVwh݆aG=>O:{zkex$3ҋX/=an'&Hxx\nek]n U;ItV z?4A&E%TD)i45"2pE}̙x"@RWW3ETޯfB+ U + @N8 I Cq<7`e,,z7~$\ԗ]owP@9-e <Vaqn ;^c!g?7 VoF//5Eu>O$Hc>dOLJ*dq|i\*>#֣U6rP+s,:k"i)qB$($ ?}ߡ7Uҙcs$" A-hTs=y<$X;q ’mN pM~[*X[mHcn],@g+*K&Џ[.P~_UPqza)B²s<ûP2RnCKLtõ 4OVoE,4r̢~`g"'ܙuF.ۉ|䲃(uO$z|7g Li>6J++ ߸ra*!l3aO/ާ oQazq) IigNCb3qw3s%ldɪtВ'Ay+ a\ɴ˚ɭRR(P8g>Y@do**@̅yΠ s FPS~$Y(K: xG-4{~R5[eܲ;]iTeof?c"u)|N P ?D`)hsX-+ae/-TU&%ZOوA]ج?1倪տikPNig!nm@ngv \cDUu[} bd&@A7,nA1*ӌ%>^oKn5(˄9ЍwY"\jP GF'pnmgs #/=rꌸDsm1[e=x9dHz2q=:p@n䞕ֵXi0jaڷwZ쮫N}ZEB8=2mӟJeYml]-׶7pn[HL>A3GPX|Lfu&-$+`!+U\Yf//5hJcaUlqmVҀƞ3փRTL.=qEٿft(@"}š5iQ3"0lSҴ칷W_ ,1 MRI55tPUGK,R ҥbWSjV's/@E;>&ht,XD\WSB⭞3&78^(BSFKӫxXJUnaTÆ5wݿ'GݯW/ayԐ>fAwL~k KXD'[!CZIf 6g%/ h"hɣuٝxwq]vU\xEjj4V@Z6YɭW1e<8G#.lnGy7ZLm9xeO*64Bw-I=Wk4r g-hV<\RY+%u>X]Rh8;\xK[ /p&6f;"˗fß^Z:,j%idcgc ;!)s]zxl^9ңOlY@n)/߬L~bnG F0IA=*d0;e>Ǩ3.zW\!kmX;M Bjۯ9{[UB|/7sɪ-韄$AA$aа1vqd׻5q0p{"9&8KAMdˑnE)s٢!Tu4N 'tKt68mo:vÞLd&iv.L=EK OJerX$F3HdGֈ[Ek7H{V+'xOTH{zNldSB=P!fv/\9QJ!_Yq.C{%'UO`^3+3˧^iuV{gS$kaL*bތ0Rr5]J񜻢j[,;=/h̨V|Ze^$Z/vl`wDF>BnIVgTIf$ ǰZxEOaHGϫ,#3 : su $qppbG5&bM$`\-K5HQm6yV9ګQ:v?Gv"_1α㲅{3s4XԻ^"9 AAEIVF*3JUp/.L4 I`q=݊Ca^*Its_*yҰ4ɫ<'O1}W&Zx2D9:WiL|ݘa$}K7 s69iTʋ|"H""6B"MݻPU3$Kd _VS3<|ߖTi>w4T`{Onf$G*#: ]k6mbQLi Dl>42a{[y_)@]TzzYB+#<4۹`d`3,hFK=Ym+Z}s. vBA6G *MBlpi[@ k{9jQm̚VJnw;߅<nOBTp[ԁj-,S-e{q ѥIf/BCLUl4 C _e\,xL{> ҌҜ'ŌNKWœcP gK9u,<:m,2D/e5:b#9fijK#bFuF2tvQ-n>\\yEY^Bk >\Ԇ F"Ď!oKI;k@E@^TJ׾0u9…',bHnCS@Wؐ_IDX?PcvԳ$iW4E|^C;z3,y J=z\k>AYk>b})jM;0!?%6fg"0*'zݡhÏ 놻rgI0ʳQ8!+ډ}Y%L.!h /U[lZE'Ȟہİ1)66؈Lw|Qqǀk^Yυ [>lFcG D` *R#YO0%Fz$A=ER^: D'P6Eq"1wLL_1.Ȳ[K!S_d7 U+^[T p5REC sjZ4#pV6*G+,_Sy [8BIJ9 3?lP&Bmꏰc1rbY}-8X-Ch2#_Jzق95qa FZt0+]zo4^ )=/^b[ati1c m]ڋæ=R v oJ+SyX-+5bʎM{7-d.T VAy:S|=.Rױ4oy:(OYRq|d6DsYi 4\Uæ-(t,l,'D-.KC'*H焻MdS;__ 9̈́׸u jl=H I 1p!^WwR|"}Yx Pi&})ggL|q|(XAb6-w@ lNMZ& '=!aL)sRbiC ҔR$G!Q/j>g%"0LwGJ3Ez:PA}QEf;Zczà ´nfLC_<, YK)mXgIsȤ|M8g3ۜ<zs1 ұ}͏@$ (5aBl|+b;pa6M] " tֿ7΂<82bԎScIC骢Y~lV831n)C6}05ۓ+夌5Y^ խ{QgMq)9`U!{Y.XYH rRйi:*eG":d\%'SE+<̭q+*mLL0|zLhH䅖,ao}cU^1^nǵRTKK[-S=3ޅگR$:윦mV?߭C,bwaO,Pi!(Fg9@;OCD/_iymFVvQ7b-¯a۶TDvKxڿ̋P5Ct[`x@2QT빮+DϕӚˎ4o9qzR {mlЋڴx+>lߚHOV,C8ǁ[߈Q+ Ťx+!}k(= 78x/XD'=fHrN;.S<$6ԩvbc(^j4e](s#qWMm+Z -c&CFǒꌛћ5sr(\7=BbT UX2Z5Bw,ny%_L_3:RdٝnH "*n3}(LY%+~4V*6r/BP&c8S|eZf2ٟaVd@!m_!;_eP*␴3΁@\e!v\;J $ȬQsdӽbb8ok_ACeT).,P35VA* lԢ-jk۹ T?f.KltkS*KfNO d (VjVG|FJe]5- $GgVDn/@(Q8-8.ĐEJ_EA XǶmXUc^ϱ Rh:#6MR%t;THRW;AϪb:a"zIN:L[̞;]z{Bŀdb=2G]Q⊴S ➀yk[2 0GsړELK7jΜĎYa؎(JT z/E~4H\9d,w~A虀'63uRu\%u)bQXjrk~H;(B&0!H\.8AGqW=wv|$hw(#N {'~f:+~%Ed!I{G;BXvK7^Ï TK$!B`%囥%\A2F`ID% FU@H_X>^V3 u 3$t:;|8pSiiQ;KZnT ՠ* iDMbn [͊ZTyK U6(C×K |-o">6#\3߷@5p!&NN|i",OÐ W-@ebMm,0Ve l2zrWa:ӃُRkFyZ"cW^vv`AJMR̈6g ))zqG_nֵG>u(|I -A mcU,R!Fr]G1ˡ_*%67Ja7^[zإ]LeOIuY+l>~d-R/ y: 3k#[BZ Ջ|># ZuMP i|]B%Jwi$:Hwޑ`Oy89%sSt,7D(2FLIb0Ljqc)+nM:6WH]=[(>f9CIof>z$t7vxۯ㍄g蠂~MIMHa Z#sm,&6=CP7oOi-bG`:k.j-+p<*rū :1g5frn G?.iAI.eZHnȞb](m:^y/_P &`:nȜa<4ru wJ\&_LfЯ~"y.afX\tLOZJ!bs( lMľ_6 aiD='#0Ĕ U'. VPhn8[bь^1H}Ua)ms 8XU-מk3U ;CBEg}#jGaرt2 Gx.ih@d)XS=m4 oV\KW V&r듥} r:YVO.Ǣ嘟[Xa;K7>ԵBuyŔyN+Lp&>b_+](Hw_FZ]=SҌizlk`>jsҘp&-JZwqV8]u`>͵0vOn>EW3J:Ep#7H[iw ",7:5K~&*F$GW韡OL_.n4d3VQT<ŕXHzH^桉 .=ēݳТ"l!j3Ƚf0kgtfyaiBhD^d#Zpd'LO9#Gȩuq%ݯ@~PqD>}ܝH; [l+uT{ TlEmpYfTSUIx߼%^r lSJKϴ>g]YS _]CGl8`&1Tc4d"Bzp^wHtZ2hP!QĐ-%{Y܌GS*m S[!ƺ2#:@sͨ,sUr=q9HډMUĄÆƼ*t[XyA1t:NuzM0֥9A!, Lڽ xygPPldIdP+N7Tꬥk=CS?T&Յ:Ra"{a<u:SYjw1Zg"^y0侮~[Y : f cBJ>{B5kԮ܀lœGOt-9i 6KO*ZiT$8y0KEF?=%Xs&wt,1oF ;\Bq`dq-VZɡjU>@ qu-w!TcQDt}| H̆N~ZICVI%E*Mǎe|̂f".3UcYvd'n(+JKѧ_8tn \wieT{x&A'KϳАT ]I(rn1/4Ԉ;< ˚u?sS9c=,d";:]fjy؏·'*y}Z{`՗vZ ێ{e|x|-O$?·*ʌa;G %`l rȔs,tFhPNF;q`B/i|r&(+nYh)r!3jMiJm/{G0+>AO^G%LEOdF- ec8nQ#/*l?iUyņ3o3Tw]V̵&,¿Njr3"*)^@qq1AM "9r4h ~L5:mR;,!<-6-g>nQr91ѓmr{lXycK74;+]*yj9Nr40{Hpf8W; ;+Q&%z4bYec%_&q %$,|oXqn_0πsgqCbqj5 ~R0\1Q=,~Sg {+Tج l&! a@SwԛlQԳ>PDYXT2h4x4+߹i tY'eD6{SŘ-`ADg7,f C9YB5JA\>S&܅=pGѬ5u b)|IAHC(@-5 bMDgHĸt_ F:)/?:dD M4N#(z9 ͛71L8`b ufs!uZ`xmsw -ʶ;w6mݵ|$KI3_.SLL)$G2C[CNIE" | I]ɂvtZFě#4b:z26ܳIV2'㣫j$\i"-)ވ8UI=f)n n؄ ƶ-y?\MKrFhz7u£H[)wDu,tm':V<Zc * ;g 9|R]c]xPe{;|[lo+-x(`;r[lDL78-ـܺANNAjlŤnki{"mGe'6ta!Ǜ+~)9JQ@`GUXO]7QY#7N^]lA{b`[k`.RMs& WSl4KJoá BB=(F|,E #Ws[_{*vyiqxS8:2nXkg䢚 <„OU^&k!ڮ8[Rc5G]ZHiNrNI)V!ڍAql#maRo>zŗ&Ze{dќr 0 ARgb$-P;sQu;^\⭢Pq-C`%涜 ҙfm&E0Ԍl`55ԁ,#"\ )TfGd^{7ե^͚z ?Jj!0.낷1S'Sk  rłpCi\v{ud- G>hY#U` 8k`GI``j}$<<n`vt2ln3()uNYOpc1Om c lWEJќ4lknǍ)ˮ XPnjZ b CR9Y15[2);?uKnKbc1tFwjN$ I%/Q=@,ٽ}B?6m&F,dR2|uqxemŧHC&_S]&W;+OiYk։6I^)*{D I ogUĈzUx ٻ@(ȷQ$5]v8:Oo^/}}&-_ fsjCUM]-$ l^P_Z+g?`YApV>wM-PmY EcJSW0״:,-I'Cd}gy,ݡ9%&|b} wdu_lcb8A]Dp[GX½O7`[ڡ𛛟/!(琄&'256y% ''ȑ:mwPHٟ]D]qba{s!-H3<%Ֆ.VZ.@v0c 1 l&v +iH 9U-/XwmFxORzb־3 bTbyQ5BOT ̒7(_:e{tuLO|΄Qsv3l& {j82$EjG2k*,$&䈥w\Igو-"_uz(X$9gk}ҔPlI,bݼ+XayncG1\g$u5{ ԧ]ز"ay"[@ԟ%kNP[h#8ςME4tD.'a(QœS1J/cy(ޛ}W?y7FR٩ۆFѯhK;*:^JFU>#Ove8u>*rъy/hW6;U*g,U_K65ˈءfs 8~R`uY6LSF^B-& JQd06BԶw:pf3t}Pn"\Ű=%ӲAXb )h`.ưT9_?@ y~@`'%,Ѭ1&WKR&i(AȫqIy쑖r!e^X8T{Or2n12`eGqX\v-z2;Գ&beHBm_22[pf{Q⚈xj=_faR7nww7!7}=/+72fj1AWS/Bf %L1jM,[ }?dž^)alp{Y9s$}ˎ4{ʎC0@wS/T tS%Jg-f!VoC8$sŐ\s &,{1q8'|;*.Oa 6!~av4cOB9DKiIz-(KƟsi_qpl UJy,N_xC8[fIwJV d@]JjrbK/TxuޜB6*E%:KϏ]MC͌`ov ?2lkC@1ñ)?eN +v)lWbnY'5XԹb/Wll 6zz?Q]!ga a+ѿd~ES1e@߶JIMPigi&@_Fte?Fw Gdy=)d#;'7 0.)U;_LV[ wh`B (x代ZS=gՒIQ:*n^A2&݋/ ӯppCǂ$' 4OSk5X`1ëlu$ӹi:6omd7俠\|KXܴfhP45pMw^ZFoMr3$W.XJpX.aeQ%pMV1~*FSȥM7:z nl(H]ٵgH,fGGQ,*@Y a`l'ctLj$}F#SG>nNJ`~Pe_=`kau{n*(3jw-kpP{5;bo_ߒ͹18nePn}M\yhF&ҧ/K9nq TsFS4L:>;/D"YFvU 1/?w($< EPr1rx]֭NR vBƻ*[Kzs<,,H, 19q\Z#=0>2"4/׷`ysm擛u6~mQKĎ)rړÎewyce4˰I1_؎2χ&IFn'kDթJW,,T1:a=:5_Ŧ*'=lup3l'|T,_^$G2 <779U`sp:N6bq$1JUXz%8Eb9,Z)Ž6`Zubw62sF 6Ԃ~aEA.RVD@?b1F{pc#̇?ŐYlT%Qx&3/+#FpaOF{ۮjr,*+6"XE~a%B \Zk, %MU_&SYi$Lg]|vlf_RmM|";2WMt :}}+啅9oK|̀dG%0``]Z$@]|rN%$,;SƹA, Vͷx]'lLSRbw@$X <jNј+p$\q/駂>|j B?0wgN:ꕭ\҆Tv;1r`Y˙%tsC,|F kp9"XdRL^}]=[Q菝U&K$/} Z^O&kq/kƻB*HZ\ &"cbѣ[S iC+O*`jZ N'!,Aq ~%':^(4aWT ,:Ba+H&7 wGP[qOW(J]RزβfOUñ"̤(~PL-"t}TW}Ƴq@[=x*!@E.;OY'hdum྄=ϡS}N8^81,F^~NC Ӂ?K2;ZZ[c[i~ g͛ףO$h||FךNzm[q&='$K_Q\ZA{;s ~$Sj<7" ϏA7MRb'Htn π? /HL\Mk$ȧZekOCQT`k9q%Ev* ߚۦnM05[_#v(-Y4Ԛ+ӽ°*A$~yXFE?)1.&XeH]$PB rea zF#);mA@&w̼{ZȼM7a+\Q>,"FD%⢖a5?q6 m7lT~ǐ =zKhNKeyZ#h O9`Mڮ`D"QtaͿ&FYI)+ @Jҗ/~؈q* W毄f (i7}! Drm,Qzmh:(s6~L.-Ai\* ٶ ڸt0\쿶Qa_q/: mԙ A`s1NE-/Aj-X0vy1g9#*h2Ŭя5> {lb/%\mt-oKLG4Ub1x1iHe e41Ǒb)p=> |0L,"51tM5sHcy(~n |s E>J(YCHǕuw JɋGtPm{f(L펄lnv?O{g$|S7AB=Jv؜S15RT~3ޏnOiLĀ?q*D;*)acPaAY q!Fyl[M) E0SXᄖ̠^=6Hff/5P\/66)HaÁ<CW;% ʘjS^Ñ{{{a qFdK5@Uc='1;t׻@m@Sb( (u  Zv@cu=Z3X}$CUSl!-=Ut h9@pj^Χ3v'4s[SFX n-"n֪P J],l}0,T0'լA*:E>,oф<;'4Z퍢%qI ?HD>X Ψ  mXFLTzR11%kQMt3V%^l=pOzAC>I=N'Z8{@EL02N[ 99ewsv_j&N %]7OkL%4%Chv޾z- ~aINc(Zo)c\/1V_ Pz4UM[P^k ۟&dOuS.Jn,TI c[u"RE|ǝў"&TcD(Hn8a@(өain,rr Dz@JHiҜ~cFtI*bs~PE3bZc^^st>6ABE0WNflCXmev tۑJʏ3bmlbҰ2[E"7_Qߘ1|4MS=ؘ=B o!. 4 eA!bQ{?WS5vPTǚZ"}Z ƈwrg.HB+?M2-V"V}tnнA|Đ5ҕVFYvCa_烿K @nfV"wov P'd{FK(4331\aJ N"4kk& X(b5oHElKln%Y=)&4NYWGx4Bޠp_t N{ZZb5c-wA,kO ly4J/!ۢ=`Q8E+<&vOJ7kFgpdC ,MK(/e.sv0hL9nIпbCD4 QwDfoh!҈:f Ŷ(CW4M 9&N}Wnv(`W{ɤ6a 3KM$L2>h?H}/l@Y?ol8N:x|yAg锭uY(7/ɶSXyAw+V=(1NMZCorؼSOv3 #/oMl X/t"~i+( ޢt0'52Wڧj;u9ǚ6nA= Q(t?P]tA*I+z~3θJ ".f5-K)p,'mzWߗW߯`䯽w !abl Z_YB=q*$} WF)7קԮ]rAPYtSFv0nծ;O#΋X0V9:%]C Fetׯ#( N) X߸ݴʹ~>Ap: < V}/a2>k<&6]kh"(ٸakXu-N4Jk4cs9/IXA@U]8ʫ.ȝiOBdϧPBi)5xx707+~ޖ$ .I*.#M5v}p2$O]o=7kg 75vFg]gh42)@+!2h# #0}Άrl†jtϋ/ /O;[U4PK{bڑle= !6Tnų9ZYr0&@M1I))HJjf -}VF:QU,Bj[}=Kof%xp &$<@/ۡ >Ӌ ˸KyMjϻCvt?' ,5" :t3+:ֶhV.E+g_@9*ٌovrAVn>Jbvi )(2aLY-sI0tTo(_[nL[kg:dGY4_ӅC@L]<eㆉvO>w| hrTj*=2j̮xώC}6C cNIT_jIv̩ 5"M:i?JN^`eW<COI#&ȑ(ݎ1<}A:g^(@Er0vr|m75(٤Ue=E!jqr /@a[<v'v&*ޓ__GC,0]6166]O jLYI{84B0z4aBw[4 j} <-֧C0gA뎿?r }zh;Aے@t@!VO,Ųu֯Ì+V 0`!,@, ,"mèVR^FaX[=z˾MJK^)0Q\`{غЙE1zuEc4HJ(ލ&ڙS=zbE8 l0b}ʯJ:~"/EcKR4\;wxlIr ZE`_iA@3&" h>/dn*N=)|.נ!=t~KJݟE:]6݂Kd$?{VAvv=<5$ƓO1ΰoRJ I,7humf˶¶Q5#C_(&~"d3Kib|d{5ZD)UUXw*'۩0ӌhJeZ^3jvѯ5г\`)x=^@ ` Gt(2 B86 q`7I>о.]מdOЦ9pήA'ûdUsڹZSj^Zo!WZuϬ,0621ehOK}ɼQZ4G4bykyK1T5l}ꦖw(م'[,.ÆstDu1L+0BH#ߠ EՅlh 8Kw@zyB~ U"PM%9*X@扂`NB]f8H;\ΙXebˈ|l7p3 PP&DJTk<Jp$qL}B0VShP9oMZ^ ub sP"e&~^8PWf>0lU{3sF TdQD_l!D7?b % `(9?Y)vn?OZbz#ꔾ Vh~aʤN87&*qM?V? Z1LʖRh?u*!<_ʸ&?1 \(mr4me#g{.#Itl*jzLWfv@cW{L.^u,82kNP2CVosy.JJO}P1Vuq3 g~zG_Bh^l!—N\@o0V8MweT-Șq+']z&:~"4Y n'Hl>ɶ.z*e[LQ~^/i#<eL:Š/3YMEN_-jNGZϨ MIς*ǁ˃2r%9hM# I蠂{>b'0m 2 g`FM '-R|GJsௌCn~H -;'5BP,m6'K 1>8eWӱՓ3 rYvK,e`:|Ze=9Uwݦi}Qy^¶mⲛL/3Rn\?Nd7bjxڕ!VZbŃ43|L,lꠟKfXE*:NZf3(ƏWYJH2z?oᣁYe&3[ D-4LKn)γof狐%Ɣ p [4o0& Z/ @k3p>]u2 =rOQmQ0}0hAMK[;NeL-vP(%zU6 ΤbOSIOGKn !/[cPCia E4g3lT.lWٺ;'{8ּM&1),Ʉ |yuL#bHYM)J[&R cESMNe u̻s{:(ړ)ȹ,Օ~1_TR쥪klrg^ bWzI"Kdq4`8-#Aey,7 C\5dp Rio4@9vJ]dpCf7`j!;alWj7]zQc?9;E{zhO]^~$vyOH#MmЫ"2j"}_I5"IQE.\_J5WN?(۔5]C#a~R) [ZI.'WyCpōJwYU\-Dll1vP洙gNPMH=>i^Ef8V7oDB%M5G@=|tUl䛩hs]yTcҗ|fH>7XH'焙z$IȞ 9Lgv8op;Jk(Y[#LR91mi;sv}UMf'q6퓽ezRPPI[dROVA8ɍ2&STdjZ{S2 W! RfF4 s5/t.-l%; CjަktC.,XMt D0s- vfN!5WaGQZF}?vmna/ŁT紒+uu ,dcIXK|yG.B݃O)Yy[j'MuyL,]/ $bS.Whnʬ\j('̤P+Ŷ@ܘvES=C8$Wae^acz j IL-Oq3EBkS x)lgl:e$YlMܺR}`IvP_ Ѵ$'b]=8u+#Zj;f#ԝ4¬S`K#^fGES e-k32iNm[6NzW1R4vΌ.+_}O&/bU|~k!xI6DnFL&P.6Μ&Q.D)Wc*(|*/wQc=FS3aH.1AHÙ o3` 'iAE`U6|_̅A@) xC-@@2a׊ǣ?Q½|}@Bt *\- Y(1탷<ۋ}OP@ytk+%\VhS,;hAPȓ暊4li;lrwډ,qƪGs)Cd F C~e1A96 how]EM5\ZURz5֝]HH@; Vb֤Y^Ib <^·k$VHfb?,vWP}~[cZ2 o.,.^ Xg !g Y-%6,}Kks B%Eŀ7UvԚ2${'X ѓmDǷXhLmufF*8{0Ǻȁ'K;'._$[+˫LP]E!`踒NwewfF;IV%5o%Co>tb'Ԧ/IC` : mTàtC)~:,+wQm>?Btʙv,ݎCgo2́H c9rzNJKF "]q%L'9!܄$8@XY_9L{Gi$>Vt#BHq[G)%ǥ^Cr,#.d29v[\?(O?įB:Zc.sذ!9bX9u`Rd*>V]HyueGj"_aq4O?ɀ,0s25)?GDXoP tt,_z n()uO4 }?ti5uy/H{AA'yw!mkvh)MsY}7'R ;ͥea278}_y禩٤ޚ1's#$C-md-f8m[n g׺~www6_[WWxy\!]ųVK=^5u'cf&|# dJ媓`H%/wQB[ٽ7 )(?AMqvA9.pQץV]9d5sFԅO$QFMODEMZ?汔ݭ  Pgm8R+7ί?ZF~@۪w*: UdU`HbE"ހ)dW'e3xSY;J +7GY+mgn 楽$D : TČ16޽${7FӞݷS.N-!&$7U()SSs3Lz1Fj >~_&^rXjCz.dCܢaPDp.').-oef!mx5]Ozȉ 5:mfIwQ@ -Us,32\@7r4 O&]}mua4H{R^d .nb6P*$Xm)-w`.}.\z3 ~*m7-N$N! US4T蒊KntKIgBM?(j*a40Z7܎RIodQ? R(N|.0eI)wSi_J+烦tg]OC6b5oK9A燾}oIb: bNhLW8%ӨZ|IAH J7AzR;L ڽM_vDjCA,BE6:=oxȺACCe^rKt:LH3H+O/-b~55S[嬏IY/@ hmښà$Cӱ;YԖO Ҫ[z]zLzD" G2wpAŒud`>LF.!y >RD3^ڀ}j)AIY]I#t$$]a O(%V>͚-TÓ>qqFuKOΗ/L)^95Oy%3O R1*?}/.:Ju #\-dKҧIP8 k|\ } by8RI"ˁ +KX5W&鉗S!J|m1 QZ.۴S6ʹWч8 Ai1ou\ܫ><4S-y=T1}Mi@ :S>l1YpB /(Jx@Sȩڼүٍ>i-!i񡂓l*#ew&)m@HehXOPB~8'a}SJL_7d,h)ҋ1es3yPX~ͱsߌ)&{֤Xʹx&"q:~9Ué1] u'X4koGPZKRVҐrmBZZمPnGtH.0ipoHWɟ!+e4Xuv+<|X>􆪌M}/GdC},$?#*jҿt~UBStDiJ߷q|LJay۾{f!)9AfSr$kGI y'U>B4wIl% 8$ៈi},k^ъ&NB'=tv 92~ln3lkJe֨ޱhwJ5K0>%]U⽐p^/4Ie=Coya?V8e6r"PDžZLih^"yL-YnۼkMټK7ޚ!ŜS& {i(Q -X^N1e@;te `cwfj-wBrr4= {`_(v̀'7ҭreqZWk_N076=^[<# T۸~nqlx@-~MڝDB'G1B- K-gC%z-ⴀL0MR0~w5lD^E@x-\R0uFuA0]^<5:dZMՁsm; ,<) C_G@~E6-}Y qcdUIΊJ !3UTfgER⺵~s-:c̕DK^$ &d7 -mFoτ_1DkrdwP $Yd3si2V~ mXpiu$WѳDe+0lBP9"Eϼ˴ aөjaTˇ>EfoVY/=*P SōЙUG[Kbtܝau(AC$)aɘ=&[E?!CTJId&2Rs4@ׄpPTǬUBrkc5WOj-uآ&6RolȐ?G|&os@ ԗ^G&s4ۑ z (D,EN XHFV?[yÃ{jZsZ6]~R7^WFϵ@OImA̖`'`lU:M1(w~ƙXTj#!jWCu5tP77Tv ƾD[ODgtjJK FKbv\[_^jrx.q=cQ=TI.0sax?*kinx^9Du*|_EjKymYTpFB |phDmoa4<1ŝ|AAQ*\ }l29-Y8{hpʒ^QSuRN^G/=yvFאN&0[16> Z &x9v/WX׀@ w(!zBE|q_גu\"B}iwm:֋ #CƬe`ʏST'/fctqcM=^:< V@«6qG􄅒wc*D["fQ&8VjVxT/l.ëI@);>غ#ckl 3/'Xs:]F!H%Aܓy,IUj5BH0_-K8}.aG_GD#eG'1Qj*>y$]/SBM輲`%ٶ_%@&Ot_v* S ZQ ?c&&z긺ɱU! |ѵZ-ui ޷̀eq<N X z:҆B_y5VԂ 2d̹SmFEGU}n51IͱBG 2 @wDG B7AIGӾSp:Pӯ\x¸UL[LHE& \2@[ "D̶nUH__7Ci\L,bZ3/JPG4棰 %/JZfΆ xd'oQiE@5WYeuRiho+_B>&u7]Yj(dL6L K0O)5Zz;Cf呭!&69{hR%Uz#LR~!Y|d#)A FBfcbQ!+LMK7΃mKd6q#,v'[9%HRʞPC4]T˲~ 9 :щnei$#{)hǖ3z_AjPG~my,O(K:[#1Y2yg 0f ɥD#VWYlx?x&P$:X-f$ .Vwf}A-9X 5Oh3_MEN >(qPVpi{db*%$zc5ⰊةhSVKF̤C=W1)Xw$׉L'$\f5Һk~t×^t0%r?c7 eIڕ(c\,̻5s82֥l eݥWFVjڐݿ'Ra@(DHx 8,-caHe:u6x{`%W~nB8BSig1\B +O \ӌ5s;ѡpY5z]7 g=w<>7~%_0N7s3 /t/hI-vCjL;(vRǢCgV5`Tu'hmejn:_ 3|# ` H wzҟQ,bu;_mChGuN!Lur1Lz6q)ZJá^!Kp~l_㌍ +nDzSv }j%|s7ۅb2溰I qJqqt%Zƙ1c8ܲc WUmثQ >@irx^dn% w~[RP@R??4$IJ ۆ?@tҴKB' _(0G OݙP:.QEx}g'Uwӂbl8 fȳ? \z򂄙i9x2ڧvK.Yt /^gqctZ|*3.kj#4u4*Mp+\VZI|"I)h 5_wR9&R'DKVκ5/SB2Sm& uɤu= vH_4| \/ە?0޽hKظ,2˝ |Q,& -vܝ$@\9eu%J^w<’.+stPadEX)P8$WP+K7tCª>,|oJHL%u`MDʄPsC;Ũl$E~Ӵ*afa!^(!8*8Y;w!+MQrJj ˴|WYȊ*arKRE =^qHzSz+ `t`1dO~QeO:6_1+@ HZq$半n ))9srI!ꑥSG42BY/bKU!9itBC(_q-Cl =>ʀD%T94"9hYѩ(8$W itcM R68ӠW:7_{jb^9QD\"ܵa8#`6a{?-"~nMY]F񧻍O^ijBε(L:$Od٤ڏNHaeN$rS,0OPkZiC]qhoPe+ &Lr>mӆoGUfr!<2a$V`)_N.VA)66?lZN{8鋓ֿf.N UuԂ_ ~ok1.Nid7 yR#YOjFЅs|K]M8(~2 ÅЊzgs0;5CgbW6bF1ޛ Y2x@K9^.)`V!u+Xl+u`=iIQH,r*VzcS:+y.YkنCOm$4Ƚ=&W`X J\fo8w A/_^WcxFj݈P4&BY07yl"էr`*G/s==\Wi .Vh!Ye>2's <\FHU.5(4(@S =u~Hf> ]5cJWO/obGXاᇟ>?Ԭ=&L-`#ESdk^ g:.MDT^EtH` ח/$6lɸs=7dRYZ|1”i!XP]]u]ZAp8[L 7+N*ʅܱҡe3t,`c2+6A ˺}6~t.q\D ``J'^P Xz*Z}*fJU|Ĩh8cSjbŹ|yľtdyrW h>PzLʑ`:XL$y,дD]?eS i,fdrj֮WGM`op{rPTc$&ubf( (SZr6`<"r\(dHX*ׅ,(m?@K2Z")eP B&EF1TgbYmQ88>sm߶Ԧau'OKlT3ȣm9R82nkH[KՔ Esck˵ -ԁsN5#*=ϊ:߱?uxй0ys-|(7TFG#CjƝ O)rY(.=ȭ́Fp%GPg~nY6Kn60zMWuѼ?!i'MtO?OS[Dl>VeC2sEJE@D :(J$Zsڡl̴=3"6ߌ%Mߤw+o{|E15;0E*|xT~8R|2oiILu1wnwm8l{Ԧ,,xxW0̠#KQJ蟯q:N'_z5r{HEE鬙IKd]N z߬XhIfYLmʿMHv}2i̗0"}̀⥈C8/-qC?=k7)~]Y`QKk8kfz{}-Pra@K`v+HBV4.VNԛK/b}ݸvٻTg CV }X RtT:j|1*Ŭ&8V hPUǃRaY鈟7.&m xbٷ \D( ;aGfQRZn'W<"5O$(ϻ]fO¯=q DVLZOv*6ڇID jHD9 q"Ec,ڷNOܿq ?  x*m7ʠj YNJwjMuO]Y%n} pfT9 4&:(Bևϑ|3F1#Wt0YNQܕ8 Bo"p?/M) c'?1C4= Bx7UYRț7oabde _1gnOFGxç,Rx'۲vGva#[@v$Oa<•G?]M< )\AKl+VU(0 =8k9>vNCuBŻk,JQG˫.ٷ$Mb fT~Q V(\X}GU]rm`1hTzffηdb~ю8VZ͋Oօs`V>Hj Wm"\كϳ0V-dG'Pe֖״֡rD3:,m 'v/5nhpcԬlN[L"1^! k*tjEGc>Cj{% ϻUx/|^e۲Ȫkml[M"t9`mٺNװ{Ⱥ|^n"hi~ ,dKrZ:6~5EVu |߾;TUz{u8{;a M.8wFSƩwKki%n!BQU3l{;o*՛!\?Jkow=*T=[1[z(׃)Dga~J=e _Kb.]D̷Ɇx|zaZ*^*Ӗy̕FR(?H4) E4 An eiٚy$#g9?$p!A),:|i;[R`w(ʨ,4|5Ø#(29pmc-`gZ6A09ITVĤ=?6:r;\_C. 1Nh-rn~?`IGẨCH8.=+;ɏL%:&[inyG}s 6NɳmP:2=$WBJG,ZgF[sU9v82+m Fa,5 49@QڵB[I Tτi]_׬҉ W4Vx%i[JȲ)YFB1+G(*]:'+saM H[1H.E<ĜDOJaNnPA.ؗ.:̍Ղ: ׇ7>+@ h8 mߞ=7E*Ŧ#+Z;1 l \y()wOr\165^l<$]] m7e4E(|VU%R^!0esr퀵괅eLzyld]DI}8Rθ6iP{{ͥpfsڈu&:"]F:B6ʇ¬TDQ[5M0V=_h-  6r^8Sղ`uuv;y&g@zp8NieZ0Tg߮ !;CwBЀ! 6j8_4f\ /k^@b@ӑ3hK-r-6%.8q5>jruMV7-5WKIGư47[B^S),&nl0I|*]Bm礈L۝@IL< ĠdWjC~bGjMT 4DT+h ȡ3EґZqp'J]'ғsC1z78"!=N<Ƌ %˸B>8{9dA"7F:ui'.2bSڡ6N1<]vIeqUW9Z^<;6TRزBOAOjC ^zP~aCU*?>f \p e+02a{[!f*Th^>?w>TKc"[\j3_2 3@;9ᳩɠӓ qSmU!kL},2ޭKP@ x2T;|lLesY֟pVВC-< -i H3B.d"Me+ [B`xҌw Ϧh[tlǷL^? f.} #@ PXtE2\?^|Z%pw%EFwzV Qx[ @#?^Sr|)"&9]Sf 6L/GC'X8ڍiuӂK I27'nB:doȲ N*M{cWf/AYUaPW}SZCPn+ޝ{{8uQ1o{,I*{GCElatdp⤀ []aLX`=S4]V!J{z+;C"⁙>2rNd <HO$H''Ձ?"VA?ųtOnoaGɌX]cL^_q1>__9O w^QZ!>)flPHbqCؽ7zTAȻEy{kQW>G$!ilTS@});˧#JO<&!DqVEN]D1v@8G713Жx~ִϟk׸5Z1@XmR{Qv ɪ$v%V±}qWGu]X755cqӺbo=uGH-I v,Jo_u˯63}j)؎煟 Hp-u78ar98-r^YˬRMUߘ7ܜ~4ɔ8itDohV\/J*bhθ0<r-귾i yM/3$ӳ{, ` 5Z(w,7lgܜXPV#%v,NLh _J`^W+)J1Sf!%Z~ttJO '/.kkAD :՗>.5:ŕUj,r(&k‘2*}d!O+߂њF(rNR)M72o~Ok-/sHuW} d,asa)\-.4*nЦ |Qd <@,yQÏwOd9L{H*xn+HU(y̠ k^ñ?12p,tEju=u(6ʻ rɽWAcp?;nUW+4Y~:JJGc%ҫC]*t|WhQ2µUy*T >?)f:*ݧՏB_BhGR4 er[8£䥝Y')àJܦv7Qs; ZdgxZ3n6#*Q J0 |v$O, 2ׯ\kΌb7Ww6/#.Uy@cjt9SgfCl:"n\tAhG%ހy,=R7~.vFEo9nbt;ۛ;C\H2e7Iz1o3Eu#ʧ0O`V _5J܈.Y@n۟{#pUMgC xJ#Y Nvp7%(=rh ڴyd}Uqz1 qt.}@=U^  25#FDޡ>SdeN@jFd+?‹-iς|> ؜F5,5% P[]X0>pIb4b[J͌z&kfT<ߝ[X d`z@X3EyG~IGlO q/Ifc3EVI}73ޛ9#Ol5vș˝,>@- ߵ^X#|' nܺ2Z}~X7p1J ;qҽy WÔomk ȳ(P;xVfKAБyӥU9i敨\Y ]O=%T7Q@ puci{9+I %Qu+p_jD%h+/f<+D ۾NLU>IB{[<\Hp; ޾ܔN?$v:-GmrT޻47a˃8a;c;v,(U9SX6('k{,EFyzZa-vE}-QC͔76鈳SGyȬ' ԤW0D+6#xW]}4 "J _BRHJ2&a[\dGҰ%iK_EEzΑR|Goyi>ݢj*z1-;.ڽv+3H-!-(v2Y͋JG3J>eP't'$ 5Ӟ:ͲH1h^Bʦ8 0*߃k'b ,0drsFcmcg\ӱ5KEumN1L?-qYr]o,'Pu;lr1QXk!eҺ|*ԅo krE SBjHNzpI7B͉ᵬ$F>M/ 0"ʆy7Mx *0~Q2lkئOQPAxd9Q'zzrVHB4%'J\dO#|H1ܬe%p·3|ɨʡ:m6\lT\Ddr6z Qݎz\X1{\ϫ57Gp] p 04d$GlXh&RSwx+1b/d4I82hba!T8Y0h0ޜ-,NLcV ?oYm-4>P7Af(3\3V9OR8٩S\nkj>SRP{i^q=d&|^38Ga> )wUljꑼ 5-"Y(F+3QmZ-8&!kg|яiH"f1E/ I3+: Ajra%}q\頷Nѫ@ҍJGYHX@9sVP\3n}7g*76,qk6 A5Jqq |Bh wWޟ/7lThL>.c ef-v}/4E#2&ꦼ&"%VEiYmHxr\8/)smhm6ncX^Fʀd^ƬÍZZj>oC,0=cdMA fL䪃8ajFxxu _*p׻BWrh w/Q:u<&ZMى8{&{"+qտ!-pm80s4rA{BP,y#HզBPC[0טc}DhٍHL#ՒWNAlSU}~ TiP@NG7on]j `N%2P9Ehki.fC>Ҵ)RE^%t|""sdPC8vXLw4%g/b^ܽK:b^k^dR x%)إe$nqWcs/y c[WdD׋!r. ^̄Kf%RWv滨;82 #LمR-3U^@4JA= Ŧ2uLl>o ׬e5T؝*$U_ؽ0U,991# 7tEV E8&HՆ/.2QMy(&v:/f EeU=&s>gcI*(rm/z5ȹū7l ATh2~oЂ^X|[,%BThcɅ; pm#HH>G +sgQO gISb>ABI#XqpTj,Tbswm"kصDQnd۩<JO $< rJ jVf:KSXTq95W]x?̀Ձ8{ͳ2ypXD lҺٖڂxg .I2Hfig HBŧ\՝N-yL(<Q>;NaRQi奷k[(>&;ӄZ6#AI85=OȪj!$3`s%‚X˖oZ+76sLxDxoun#G+,;f3!8ZEv|:Ho>sB`u)Zu12kEx60H4Z_ԌֹQDvyX8j,RN"W-+:bȁ5W~_IR+Չb1/`9~`e<#$KcGvj\"h`5xw=ͯ 滾e?p 8 <7iA͐PR#xvr~6 7wf}Y 6w_3d\v66`bci_ky['GkzPYj_{{ӛh82QDZjeA#x:Gt$i!cP<b_m*ƃJWYC:Uc#.X"C`7񍯾]!rmU\!"ݔ%?6=n&6M@&z9_(3aY1RE"X󯈊k:+̬mnktA bT`?h?=GRO"_ţ,UKڨ|*$|IhmQȨ- hnɊEp}h"M(:o}pV¶Дmt=xOԃ89ꋆ2A_,9}#P9{J-ሢ8΍G#.04zr3Mp尣y aYh6Uﻙ#gq4I Waw&~˅UQ3`eW! q!"AnYMx3k U$T sHFƲ.@@2cj_E$'VD?ok_+Qt{RDZ83m}p:%E)(l=wsD1yi@;Ҟkir,uܜ+P`6 NRp722=dhͷk,@AYҾ >PWSS]խ**o+k%j{N vD]x[dmI)Rh<[$_Evy 1Je=+x'wk`*3boEsⵇ S0q99|g$ eOnOh97xEZzX9wiTűuZ=$!'uiej &Uv=%/j֯tm% .FT9GJ{zR+v-[ _~V/diYKo}єɏ~G=;Tb" M}g}q];^lwvAs(.AO;) ugsx<gl~pZ||݅TŁjAwC>|?bonx"cs>xK_wd=]Wj.W7|)~R ʞG*-͚H"dj;F8MpKd*C2]3oI#oO X7h-DΦ1IZ=v.3hJm:3 ^Yyዪ$|r[YO"aɲ~Y1M`AO*n0{E"z 8Hұ; Uhu 's\r_Zlor3]2aFHۍ)Djs^ѥײd .)HS6 D޼m="MD{%տ4ug%%=nztr2wQ9c|n5'j6D-_ H*dLe`DXC3\=JOnUtcye`LJ޶`= MR3+8c~r #_F4HX`ɻgPAY fa=$<<5]-G ~[^Wanuqit'Ck'*t֥uLqaD)Vm O8%^վ+ 3Z2/5KnN1W|k'EFVarw5e2w<ε=7"ޡsL7S3z}#Zk$WqIEs~gz][CT5Wwq,26(t&e),J5?L<߲^;[#'#Ф+QPеD^ܻNE+#DG4&Vzjc8=1y$Skߴ Vet0z 0&wqŷhm}4~8b g;׫e;\{զqz숦ˆW 8>C3sn\ӆN77?){ ?Ci2%jQmjgVVq ig1 nZyK[*ѡ|BJ7 0ך=C14I%('ͪWBf 2OŻ>@uY#&eZ<"B&:f4 2bs_,جrxOTZHf/P ̮X8l}Klos\ʫ爘w.&U۹ʼzUWy&^AV.ղhK4/k'O H-kЖ5f9ԤrY?auڇ m0ZOD^^#8N"@WC v")h@=B$/H)7?7{&Qx+:6'L͟Ej C"f#k`P 5AC ONb}\pI|WQ^ m"U tꪚ QOgP|c} P\wS!vJ,sGXs-Q$uw#ZYݗę Ż$́2-Ei%H(X<< s80:S$F>H@Ftv7z̃ o"Q2'z?̕0Lp}d4 Ao9 s(@oP{bLoްuI4 xzM77 SƨψH`ς&&ZraAPϟ_wOU1HK"-Jfkyu" JF;r{O6G{[̻oHopxۈ|2QRKP>trM"Lg8Q,WGRTS0C#g9r"6S҆ g -XFȤ4ڋ-6D_-+aq!O$ bz KP:pP< RK JXY >0Ul:nn t|b֨t0u;KOJ.ʹ=fjw ow fDH4 J>r)rp1k? d[[!{,T]zB2my=}矀Ju.>s5u|L!;rufU=zaS/,}@!B71>/k/ðEåjӇ.,0FEx9X ,z30yÓةY.{gq^(B9;W3ADzf@ ,VAJU&1J5'tL}9&8;yL0FHt7K:d?<\=s=1CN)wWDufpWb]W,8lv]t N)ZUP,s.>`ąjlU?Ym ~1?h a96O9N0ʖ* mkr%X+ &^lZ/Vx(o2 䙻!@Lq :2́KPGUyqh4ػMxuܙMX WIi[&*B~ n%E 7S虐G> BزjUi='|K\<6-na",wV,$mEtnIs}߳qs#l.Fϝtc*Hym u9SVZ}k9'd >ΓF8A}W\Tu~)^F!YaU]{*di`3 +Fyv¦_0 M=V󊂱XWu5,w?%KǙ= $ٲC/g=ǓGܸ.uJt"oQ. kRV#sے<%'$tK¡ZFO2)>h` V63M5x{?ԨzRb$Xjۊԕ=4y'=7d\7'֓]x=g\T}6+JZ\𓔉z/> ilhQsF3ʸ\Lov U}>sM,ʕZ1*&lUwBx琥N$Q{_| R?5= a :xU?$@,IH)# 0yz*"$9 S 'q]qp)!yq /)mȁD5œ#vcM[+#棲R+%KZ :m2f3 \U}q.n' L[nhft­ѨJ0 5C)1:rdbX !#B\?\vWГ'hѭ7lzYRv A5gE̤h.Lry4Rm}b!pwlCMraw(@sSolQ!B[Ը!Swc1 Zsr5+?9""v 2E *u m`#8E* mEt TF@ˀPּ+P#2E.rpެ=nS i[_G ]`>~WKf&;免ܖ_RvBWu?*Tt+/tT,y7wR&*814|Bѕ:yõMYhL* ;zZVĮrRYeY!b6u<+ʰ§p2CY{D؟S= %"5+PYNȊEh .a<&i%_3rs.\fl vAŢZ]CHFDIbnƲ~0=D3ǟh逞Zyw-)qV8@cd՟Mvè(GΤǎWك^t 4vx ]MX(|ܾ(Wm?PEjoz_(f-ΐB]@,`xҰlK3dgh/\0MoqAȝ}*CYPaEBٙwYJt}kuQu1'!/%#|̃m_uq?wZ!SW1ӌhMm-"3u]h)6 vRN0؎5[!qc*wC`H0*ϳYq6Z4PT+'oH"m&߭8Ma|zak+Kͬ (Ct'Hr. tJ I3TJ(Z0|i5ځ1ɧot)G:|hglXbĥ5+(yሸstKEX˛rT,\@o rZ(EL6i}_|z>dԊ&)alub$-}5.j`otgq¿pzŰJaYa߄gxGN_ 9_+VP~.d|[H]ġU.X%f|4㕰)]ˁĀg"v[IU2܌XP*k]lQO9pMJ<ؿRUCRAXl 4ƽ$obxpp;s{ C ŚQ?W[11{Ɋdپ 1^c>RT2_loJ6""}gH.*ftooVVz3(f11a3 (?iߢpE|)6X hf bbg4Z6bt8-N\ag}GY,% T:v!"C:3ݠrc1HSn>RIx ~د~TjJG,yHNC흉8 {v4cOxp4oV}{@&SMa!,;stu37NC@xȵS>+—^S .CYJ1t'i' d .ynC/J,4j(#_,lT\nK|{(ʊqy5s˥h!_q`e b)LC g9`'zA !w5buyg|pANfP\T/PzrG%zX0~ye5+](ab>'f-@&;@9]HRjwݗp:jjXMSNIQJ8:#ZJ5_1qH&ݒyO*ZCjc \4qti1 +Ywr*dQjY:0օXVp6r FAU#WtLUIuǾ:]~3*bXq:f;ϓ{.:|vBoFDK?ۊ[A087t YI<r2Ano|px?Wi], s;c-ɓtOv^&\~U}Asnw1{SILPhUKnHQE/ֿvi <I slALNkJa IvzX\o̟q[%:TfB m"5-f^yPt=qLyZ G=V[4Ľ&2 :'>AѱOCWޱ SS̀Jg+aHI8<k`/@:>[uAX~(>2"k\(C`EA!d HbلXߠ# 5G;_=`tcR#$B)|61&"$TXZh &9`yeC6I7nm(lj{ dh=)[b=w^Ђg[7߭#Wf+gd|D]A MnJ<+/laǮ"9aO =KT&;#R( ce>[ea[n@i*H<=[4dM h[oUPvtW%SYu9+[bruY(ERS>㰃yUGft}Psnmٽޫ/fVZkV(]h1-}pfe# @HSKvt+9%X~V=(;6 l*#{ ¹ChEd8L cUvB :i?p?/pC\KR4 uqeLV̴"%?PgwT?sFxl*6){r5O.ʑ:A/D/vԪH"AOJ܅*;U,0r9='ZrX)`w3:6B;~R'px<-sr4\6=,v@惼Н p j6 jk5%UU@5%;IR>7HeI1pJm@4S݅[oqUIX;R l 88GAri:دECԩqV?)yPR_b ٠᩷G6 2U|%9PEZGp 45I[<*wiyHK-3׍XfԸ@e6N &3>Yaݓq$Lq_ K`:X9 c_K:`.To=z[ʨ܂GzY4h_FÉ7EUWZ3 -дei(pyaC$?mmi]kwQ& ny('}0LhAgWY{Oׄ?\ ohYMRz+, f:]»Cn%΀9 }Hb\j`!=x5OT(TdX ޶A9/Y&l{)IwpIG$=!][F!܅yԈ:Gl`C9r*'"5QS,&RrRYPNXCߗ"ttc&]L]/HہG Tu#p5*`V!TJ^ߡ41i<,DsJYQDo W SC ~b6_֕ qLĶ/6(cwVtО"Ŵ[kwe6;EdG}GolvK᳃3wI n6l2Y 'r*:/ Bhr( NLj*@e~WR(aXnQC A-bmsBv6VfVXtHOz\'Qnk"cDQ}_"D RE\7xkUz̙Yҟߏ-/Vb{}+aŌ/`IJ&+K\%AlX׼[{-Tk>\IdڈcuY{+,Ix-"1#To =0NX1[/oa_y,xϽde() HD"acs;{,__b9itqMYu8nT Il@ WHAw ۱ ջ9]lEby'3E2RbHiilhwl6ad]&5Pή3U"7m=)\QT]a&}19:U}ɬu ް," Bw`)/E5 I^=F 1 !nNx^ȣO'<ۤ,M<}$ǡˇib]#aR}< ad< MKZg QBlNǞir :TAjd_b!Qv%Q2P< pGT(l2\%,|nWR]Mf|`@ɼ)Drm/ƐfA27<}}>F#2WN9T^3r'B/9zWK:OxWT r4F\me+X\nw_?tS` 1|+Iiw<@"U8(A)=lA>[Is6P^n)6,gG`"ֻ$aI7 c"ݩT*{%>CVv}%_qUxe4$dDu\3ZJ%q-jLCn*Kp9ca )YrBz"+'ه0Y` Xǰ_t4C;ϊYa;T}M,gt@L]]O ڻT1DO_9dK0KΪ7#ETdϸt]sІ}$_0zAi#>PAY%fmםo\#'9xa#*7w3/yԠhte2t?znЩf,kV{32jQZ{Xt [/>Tz }Cs> >e< 6Տ|$ @b/ &_F'|a4lؾTWX˂?2P&Ee/q%AE$TzbjM|TT|?=oyJ @yhofBNH=ѕ^(gvBEf9s;jHҷ /wLQTRnXyӱG4!7ۙꀘݲ2 pHhl'vIL@=E3:J%1fq8\w->L%T;<7K{ȅƕtg$]G%\XYXbO鞕  @ \Px?A`lP>+ygfc0rkKRoÞ};.G@ %t:ŔP@&y9K_3 UFw#h<8G Yϛ jfc%?(%GLv؃q'?pJIk=-2ie46$NlD0!T?9Kw z0. ¬㒊5'`jFD;WgbJ~$#*251m)ZIeܔB<#1n$dQ∶:0DS&q׌g`9g\j-fyZx%WCp%H`q{9 &!3`3nLaWIUFpF+|C^P ,o|ZhNI +W^!Q#TCmo@YBE.2]Ωu*o |EX]?M H`ȇ+/uːP$ vʰ]Qs;8pJCUcWd \Ul%΄: &%n߮$qTH QrDdToՊx%ӛaʾNV͕hHTs26Vϙ<>JzD5 2Qfopl~WĚɖ\ bURThVmF)a>?ߙ`D:LD <ێb]*#x|.8S#5X\f %sj⣖zud4 hS~^1KmF5]N;55.#]Pya6yo԰dW.{F+ 5|z~~LAMtSΩqTQ 0♣m,QhBaK%Cb8Q^{^ah-\2kOS4sDK؊ٲۓ.dxu淢hYFdl$TO V,f#xMq,?R0.4[w'gTX"2h5]xM[x7S&l3ؒ;yaeHL5p'((_J \Y*k 5]l6hs#ym.Fٻ L$\ڶg2d`C‰z@1Z'4jW Da9*V#Q|5Zd~ !p%ir Z*))It ɄO=Xo&';;;Ԏd(a@ F ^>3C+iRp3-s}C5_%˻8\x>u>Y 7# &$^H̢FS?B2sήSwg_EV5q˺[M_-eyP͛(9LT-jⶔ : N.wh+ -T7V( p2s?4ϟxrCiOtrJCyFJ/Q 6 ^L>wEvNJP Aa7YOLֵeF'SNu5&6S&v;een߼uyѦ²oH5;<2yԻ}wf9jlm txyiu;PajuprnpRH9 W\AnyNU@DêfP$b~Hͮ߱P{;^WE "'eYnVd $'ߘdpuL8)B!/!GpRPDJ01 ,(k I; < 8$YzdB@Gyj쨜݁Eﵕ#o¾?I#nfJaT.|ߨUœS &we2fa|1 k]Jmv)(b(,Џ-JcO3~h*zʡ~P\eh}:3780ЦLwΊyEk1%FUr<. }({ep؈{$U; 9tr\@F=5߬W-^IZBCVoSPDI2=ծ}{ٜ{!_kRymS$Q]뮙h>|0YPDž+Aq@ZU؆I}r?b Dje~5s$QKwRT݂vAN1TR=\ں^eTl4Ƿ]}"@ AxW2-ǟܦWdnkb[LJCx`KxG`9*@;a^689$Hy ^]+=Ei1|. &z܍ ,=ٯy4*=~@g3KQҠ>%dh Z[b hJU=)٭.iubxcxCacsp/O[FɶjE4ek`x $ypTYxS4uRC:JB3xo u0L_q^#0ApXuOF`?YSn^΀yH o/ا+3S{P&.aO6+)=| 3:߽؃t42vy]ѹt׼@'0M E$8J ĂT:^+$--h.6!uiF1(Ɍrl`9zيC,Lw {ܥg ^XpM]?a*/wƘgM/Jt{"lgXHn;CԷJ,_lByq^ˍ)d{-Q(7L0!M i=%rpaiwxlUbRVA  ]' `7*h/+ZэSnoz:pM3\1._5$bfԱY{{C-XלE=eKc 7c:"D?HxO&ۓqjкڞ<5[Q1|*1 1Xg 4Ǫ4^b9cy9ň ;];Z7^ೂ^rJÒ8S/9 }=tnnZ tf)bp೨z3vĹj|]O/uaWsy%3ƀ&Z%᯽ZmvG" 1[CA9VI"F~ #X]۬ f!yBc]}cDe9 q_1}ǐթJRjS/=hI%xќ#mTjtx冬-T>;k)Ŋ}dq&_CJ#&lr`BB5Ql%¢4|fi~mF"DvIDndHY,69J,1 u X9m ;T{ww/(ޔ_͔qT`2uq޶ZEw&"I$ :\KF u=7FXϔW Q !V1^S&59|`+m^.ѿXЅ# Ύl\e fN%mh@] ]Vṕt ɿ]:/VwvvpR\(FFWogֹ&zꗈ FV$1kު-i+!Λїm;Mǎc5U\Cj;ˢ+p:\,4:jKzQ|VbʕI-19) 4O}}ڎEyTh1ulS8R%O)Fձav?EȤ km^Qj:5:vEE;tC4x󹤓}<'..%WBx1͡9bk_,Z2fq4JdWɉ"Uĺ34jn637C/)Ol x8X1:Ź{D LGu~ TA"tLƓmc Ҡ"eS!Gh߇"A9WF&D 'S}IVMɈДQSR& ] 2X|5nP:?CLj ?R ղ({ L1pA6R 7GLE"j0`AZ.A{ ZS=|f޸+`P]{FWC&(sErgSX*6c^4?5~xM6Cz$nGb9B$qQܒFaǟP.K@s>[ t5Ձ!P/a& Ye :Z6^SCϙibfZ_NlWwMq+/a!|''\9:Gw&Wu..Up)$W9iUp*/K4`wP P^5Bo$q\Xr|[hxsOpmh}W1 7 y#ȣ8}\Oa20-]n {ʁƶbg+p2Fqiz}ߥo}ζLaیh= DׯgoQKhM6n t_(~lc(r}_Qq^yƏ.Q7_H>v7re [SMM$ `Wn[8+e4 *4cGIhp >%Nn1R:2S{%_;QaO?= 3,r"HcmɆ^t>jڵ;ME}TM]ɿ:$@يsJ lV*vוⱥމ1W6@F@цy '?R Gڳ3L)=_m*Gϒ9ΘY&١ ]vs>f/b"m7 (ܕ? Sˊy#лj{| Be~u[߱tE{(\-FWr:Mr/&~V lu_ cY"a:;.mƱ1}$[*(fҼz *=b$L=fZf-U6fTr_LVjFkW˴Lp㘬u +(KSAY d2d ^eAWo$Oml!MՇIyV$Q%WUqTQo'c^S2bka!Ube@To!TX(3j6<8UkR%~16DVt/D Xdد8ُ.y/]#p[zk)z;o}}tT,%ѹ 4p֫{DZoIc {XғEΈ}m~B*^{ķA}c}r3?}J%_:1i#֍pvf-rH`~scw917omc9-PVR)/ȩcd0y}CO M4wt)i+ejy7E-$bض$/LC @ >6.7C%`#w܊؟A˖`x5JF.h"ïcd5qܨ_7[hГQ s)x/%p/k8҆ypHw¬-it\x6ͨ7āg {˛)yly8o,zWjj0R_Y'R/]_U8}MERpR>WEҽKJMiL B[tk?, y_ךȐb6/# 4C=F_&ǣsc\qp1PhU; | A^OSa,B! }  ->puT gAb͓0dU$!\4o77TTob` @K*k]a;N- >z+ydQ*"s)`UX?E3w n J-%6 "jzp@Rt8#q1'-M˖Zh>Za81kiQ4 #$8Gꍲ4SlE!$ZmliS{l'ĉP3jY>b0*rAe?ڤT0Luv} 'y`e8!qlH0R*%LOQ2XSKnoH^_;v,YZՑ@C/b!ǀ(<޼2&*­IoB %{ĎtX?fIJUm%ڧz~[ZaRz;8q߬ήV0-tc<[>fy7>=m43]<s<7ސ:'eZ^yQayy6p҉/A2RC>~m.;4fJ37qce%&4@N`9'$ly,Lu8]Jη5(1stSyMfU? ݿ^d@}R}?L+yʰš iHX]-~7ѹd7W'J4۰D # 0HZUK^- "dVE*udkdRx48]=QkGRNaA3UZrCYtɰ7dQxAۛbu+4ioxoF"H=ABoX('llA. s%2C+U\]Սи8XNe#Kr\0ۼ^97υBj8 ♻>[poPD߈˶qNA5+˾[Pf q!eVcދH0-q-HPiFy}X˯O<ͷ-)Џ*7u'Ę@tna%))ʖQ6u}B*;<=+O%N^Y.P#؊ h|7A#6)?I 5v9kXs!IO`cЭ?ZmF;ʛkz+7flONs5 GO8c?R80<})x7r}gɷ ֊Ī}@DϹ4 Dy$ P1b11ч PL֯|9P_㮥&C~\ϻ G PF-J`"߇BͫR#7 t^#3Ebt ( g`eiٞb¶O dS0uYX"/eE s|M؜t=dlYzld|Ry^ǀ䪽my~ f%kb+&72)&9y^EKh"l&!aB)^ @V8Yei׾M_"X^6@|s+Lɘa<4htSCL cM$jUE]H$ȊArBĚ=_EK\@W=۲m9t?wt(0Q ;4,(ʏUP[AZU00g3|6/~c _xXJ9>4/1 XsS'pü[ΦsQ7 \1^[Q鈋d``W$.ӭK/КM-_+vrs\ ,NrS:MfH@iSku7r&h:}]_}֢FJY]BΓk]گTׅ%*]_(h$"[[Qˆ!(B!5TAkj`os@ T&?󪎋u_x^|66N0/l\^ (.zX]*%m8b:imS{=?̭{y2}5pzrΉ(2m\<7Łbxs.x'Q刓쉖)4.7"3Gg!E=+])g΢fsx ]}<~ \w1 CU D2//gG)SQY k\{+6قOʨ _ZO{ۋ* n!6}5i4¼lUT "&JΗ+BTt!>@u! tьiݏ*-D0XR(aՔBrʺ#pF^,"'#"J"p!yh쉩x!{|ejP~V̍(ЁkyO?^&"]@df5D٫` JxF ;LPR7hFEGL{:od8QJujSpqę/وy Mx1\OoFf5 y`)Qw$z&AE 5/C)Hq@r|%R. $0KSq2. R{QoWԋ9HKĆ] gQ 0&?$r:iaib E?\)I8}6/M_`)>R#ɛ!kXXs$1rcS:E֒M |GL10u=UE(ɕ]󧑁nYa%@WAFr!ц y8#>E#9r_NBb GB(-;DX |0Y_K@htj4H|-ZFxzg'tlM|6cF%1ߢ{V#TظHP> G r!1y\Trߎі#Ѧc[Ѿ|l}ݘJPvfXH)H1L D*E2BMq9ϖx~b]@2=U8,rYr o >'3Lxq߬j1?&4V`eSʡl,`~5 !#2i*yAЮ&VTi1d4M(\BѼbQUrg̵Z<.i#ϋټ8-iMQ*1ՁE|60~{8J*<<>McOBqz,`Li]"NQ'w)bnF*}< 8[)J/N$>`ig),elx\VV/N}Xɖ{g O]3Vi0vd"]n_tsVRbEhpHTb :04s}lj#SJW9*wGkKϓs5!1FZT&3J/2Sx䔸J+rs<0裱HIˣ!:N@l:kQ˸Nΰjms68+/!ŹGA6SG[ک/Gݫ.=e0 _ iz+fS#OϣLrOlΧHF.fUL!6nC#O8jԪiuRv#7;̜[1˛! ~M>m_%e6"xϻt4=peݕ ]._F5ucreY̵1C\_WyT5aFRX .~XA՚WX*k/|)Ps.pI"˞R1iz X\ yo 8stlR尙0Q9?Ƽ$β8g^yI2tΔ0xO PW!9yϧNDuYۙ?,[>K/ߙ eW)R.*qK+<"ջT[5?z%9@trL ?9c̅%$}aS#*jT 7)??>_2G^EC %`KݛBuRgM9ϕO0:ꄗح2vC{חyQ=8 .ѽ8DnH<&GX4i-mfHqA/A"y<'aƜCO(̾45nf-9OPp/6ψFbj fɡj2qӠ,bZrԚp%v7=l*3jU:tkDu)th+ 9igj9>-8jeZ+?}~{#VB[wFW6< kw^hr_.taDۄk2W{\&rJB'Y˱XSƄ#zrQJc8+u[z8/߂T Ks/6;|i{G,GJ2P6ؓTN¿EѵG9)䠧}p,뛤[&O,Xs_wPt=sTm%IRL?ؒc"]4e}G= |>%](A֪*LveXfzcZ{ZD]^Q]b %=\2_#U&G#{Z%|XM éu% Eaf9L蓱J `$m Q[#!],`nLt d)\ԓB >}Z{^0Rn#puz0F=+r2Z#*g{6:oOi[լ=(*Q%b5615NCVps,WKtUoT$wab|}{t6e5L߃*4(EK\1fd> A\)ɲ;gB()Ea-֣:-߻!$9xU~25u$llrD #C3OIM1aAkKç:B`J %1TK (܀E~4!ت"*CGRx~{;x4viMp~Fc_I,f(`+A[>)yv81zO.N.KiIʕN'$4i]:: (SZ\a tD:ˆx}UbXvX7דO#Y0w1tP$Q *M+0BԀAXV`Dϗ~k.XJOz:QIA70(/QPCۗRdjeM>(ڈ!olo8g~g]Q6v$."7,{sG{)6--1Ć]*-W!ى7h" 2T R2)nˡ`+K"HKyQ|V.*-޹яGg!~ΡZn}Gb/ݿ휼z~Ή+72㣿f1dDzVha&梐 p; u c鬟4ˈ(]ek!aCH 9˶ӌԵT&)9nOO$ڕZɅ+Iw#A_>9VA^ xg弨^;ny *b W򪒟CvUZOQ$P Gár{霞*ct:aoҴ1_J#ѯ' sV?xM)2`\ WJٷ{ѤB7A&x\ٚp)T}IT ŖQS4Њ9l3m- VqٮS6Oe mp~*%/H~鬎e1 ._{NiVt֝)<7 BRE^(X]ޝRKS:G@GgdK&NR 7Zn KN f';9x7r  d%DAIMrśH@qox}͖mTt­nnR *ܴwSg!q]'6OZ78H?{.Iv]'4! ?[CD_j tF >T  IEBud!>% HAPhA4dz tNnD+q Y Q^UŐ4@f3tH$e ؿ +}$ i'D>bpNPߖFd鋊*@dn*g]do|~c4f 68f> "|^Shkc7~#]h>+q'/Zy^1䋞1 6A*pqf72# c)]#9|`dYp: DX)٘B`x 2,ZŊu -IBO)4F_҂NN#poz=~(fV FgZ#AfV4<5h9o,a3[!vm;vtVtLTjtpXC ފ8rcNAq<'DQ\p<\IpXDQR&.k y V ӫo;x/` 6bTLSԱ ܫDb*+$g! bres$-9 ^zѴ1aO=)ijzdA$fiLg?K>sMҢPm~LbH ~,z:N[:\qr29-!_,pCmymr@#?7gX(#(m<07 &oY)Bvv>G<7wp=Ik!w_SGφ z~CA:AɛS |^o<PG䑁CQFyktZZ7 Ka v׹1cS:Չ?T'*<),w:9fJ{!(H% HiH"1|K4.]'"W9T~`)k C\)lE2e)B d"gQJYiuNb[ƽ|IYlȽB"_̠G`nw0Z_ շTߢVD|fq*'1>k`*ƧiU(UW W9fkXR9G!_ez(")@<5K+;kӴ* o7hYAv:5V_^VR 24f0nU9%8*H\s:AJvTIJ C:+>(oY>#],@mXp5Y9d]Ta3; "ZGN1M\yh답(Oعk,RmY5@j!L(r<'Li3ԝD~2_T#X4>,(ř+i a !#䜵rݔWV^o.!cGzOџY lS`]'rg:BM2W(ԻWL0EDR2d$EZA͗6)7z,-(Yυ(Y]H5yPm9ǀynffe 'a%e|Y&jJt:AyN5N厵y(yu4JzJZrkFV@_E%'zɉg%!!;oH/I|5p v@ shJsF%`gtUAF8 a(SI!<9u%0R\9p-tZ<~'lW{NZf wp?3W΋7 ѕ~)uE5&-0$gH CCn~N-Hly50ny8X9%Ucg-6  .x$}.$B(( 3mi u{vPtWP&D&=p <Pd'}c4ci7axȦ75E6Uͽ`U`]!Fb6(.Ƙ2cz*%O_OBha ]x>x1A}[9 Yȳ ϹJ^MA6l=? JD"0%ee,BNBT30vd ~xz&%2;l8XZ`!X3;WeK̼瘕_s̶OMNry,vgiN%804aCHz7E(W8Lk6S7Jy<)2Ex.ssBii܀!ӪpDXʞgr@= ޳?~Nc3s [:rR ?yt^4&-cVXQ!+87p~Q+1$w<48*ey.EΘW:qCh02( Ztݼt)y^c^\/} ?)# Ap1'2<\_ mW*'œ^߼UnX[<4O=Syᡸ;ly8ӗ<Zm%jX~D!V3ni2 uR|QIK}`B,.Kνzb-PXēA$w GP?DŽy")x,QS@v!,.C0oO? v=8U  Oto` p귞XJ?4>%J`Pj9f0rON%~ ق+} Z[{Eg_t÷/*Vq)d%p #\!(pojTXd3ǂa'aETL<c?[Se D׎V M*|LeUVD6+GnIW>DkɈU0 HjL#H2r`dyaqKga!wr  -*67q?yL:{:oPc~l`] LKd;ZmG_>#Èύr2T #mA8z >7h3}QsP/ PU.*HjbuGƣ%~"yNm·wԅϔ(v ֋o"KEKba6C=`Aye  ń4WnNXЌ#qJj?67/'@(CmP v5 Kvsą<߹, 'bHj;:s3>7ׯE=4{'WJgToCIZXD9E(cY57lDB^v$= ^qdr@BsyJEV3 He>T" &GD`Sjq=FJ=eyqc5  f)5qCO}r<Ҵ]{J ƭJ{KWzb]9}"FmdƠ,FcxLndUYS .KC0fERB(j9>+;GZ%ǛZPȘHW WqO׭31&vv_dbSג*~ǙN%?h-uX|+RR]i$+e#~g5::zEX^nᢻCh6\4ukQ(5u:ƗcLjcoMp'af7GSNCSsME6i.+|r\SvO֕gUBe =F5CS1^[Wj:*N繫+=Rd)o($L#֥WkLu7TL$x_b#mtcy ?t]Ѿ!X-=]mI /lDK:HRE*W @i ;]|͉:r??G5>fA lO+x;? ^niIӥL&ڊO͍ 7і8ϽQEmׯ^2F(-GTyJfoċ%A0''~蠌 MJpB Krd;8Ty{!~(903ls' ci ]%Lef[z8.!tG B>y*[vIck TvkW,sģ N7.+(#ic r03{RfWRv/U|ąO35DY*#S0 1o$e li s3-og8YMoUFbuJ>k~|41Uy)*#{PQ"֫bj5&L#tIw}kS$e{;![;AuM0"#x\i5YlNP53w%G["\%Z!`&#A~CjwTgbϘa3$53^F,Depa9=v,66 DgS4b1x<>uyĽ(%%W-U`7%pNy .BH;w6ƥ|e 'V_eLVd3r?yM5ʞx( uY"x/0`KGa!,8"#: E2W5Idw QɆoo=ϢS6Sߕ1KLb}9es`7à Sҍa1#V6/TS%ڄC"UͲdSK-RC$T .oK٥;zbH{}=%=9jqwku2_xa[%A 9+*q ӍX?4hB~+yʐ1M*t_̇pΦOd7̒{`eЉ̞M)BM) bwT_l9vM~p>tP:Ny81.UJmNcsr~J*Ķ6]ɲc eq݄|(uڀ;Q5q,Cch^bN|>Z"A: o<.[7w{Ƚ6t8dM,3f!d_b6;sӪ:? PxC_'[sP49 شp|Wl%fJ%9qX=\S-,:ӈ$@Q0(ń%&)36X'7&ڡ=,ZuPe _N>R:5)3~>^˾ϡrs2EG2 ' ؔ 'YY(24qU eH0/.Y{B@땥sc{S-0zWnI}u0*eF5GS.n6쥌vyu@'pIeP8:42T@rYJrL6R3è3ن|Peɳ)_7dQE%J:Ӆ?(! AR+/ :OA+Z p [L-i~}`T{L/ mhoߵ54_ɹ;ˆnNK*L576!zo'¨yo&;̞k0ƏUbVԢT3ΑlO3"Ҋ{\;Pp8k٥^Xb*[JA sJr O $%öla'$*LhkYNQ t1CKU=zpkb>GՇDb'61}n*ÉMzQ7S'3OA7 :J_x(f.H&G^f9X NT{bftd>җ$_S"R9b2.T4BMOH=F̯zS~0QZvRe:2uDJx9ma$B9, #(WH&+ ?-c8or2#а[b#KWm )^'x/*y5mPˆI@Z.*`$zdM_s|5#fGE^lh'vtxq|AjM֐&=Y6PRz=ٵ$ا Li\yn)S6m:oHH )B|> b#z9g礈yW Ex/܌n4Yz[zCM-1/KY /aJ:z_W jn:QRxjk``,+LE*;lg(T>[ǫCgpW!SӨC= Yl| ѩ*:D8QFvL 3?3{wƙ~H.ѝ+9^t3IL妱RL_ ے %yڐq NɧdT sx-;-p3֓Hߜĵm]nѲD$َ =M*-1&; jK~E1&]GC@gi 2Bba _^J O>,njKq7~PDtFԾrsڃɺXN_Q$4_un\MK}ؖ|dG)0`S1Us=Ou O SYjq#qviрx B! ?Fq8=V*QT]7ʅ^A`y6@@ˁTšjθtd,5`cfpvPrձz~)|0  R aPdzj*1Lߦ촩54LC4ߺ(38..P]]&-^WO~MPKq;wM&wVz[K}.\OD"UcZ t3KBag|pj37 ~ |S GTmѻ n{-JC?T 9eskxcs* u`ė!6Gݿ@_hƽnLgoohM7:Su:pMΌir^/8$(SJW\^ ]ղ$ Usz{KhƞѪƵQc#՗W]i|F1 ѥ4{FwlVhLk-_b_ c;6WE?{ut}`'O'{'ᇝ~B|{|x|_ݻ'jݝgGPo^}M&:ͫ碯#ҫ=mX,",9*ke3l1g^O^X/;ֶÏZxLheb[}yׂD2b[|NX`p<9'g8~뗽 ]% E,E` ue{F3DzG63=$?Q,{PNkeI@n`4^W[|_Va*saX+j誩mVu>/ lwJK"r4F:7b}vguPIWV"[@7aI= soH \Eߓm?g}Yk,_6SZ{#3,HrNuˡ凕70s˧¡ <6NKyF(E*}*8=M譳2/pKL8krYI@"m}7;"\ Zv+ jj viW˥' *26<զD \喡)Eu䂡S8ؼ§ݖ"J?p qQMj`a Ȟ>nݏ',̕|ƒ  w<7$.n8Q@@!zpfRQ߂oΑ_3o=!<)m FEci}[rfN 8AFc9ӖxÍ{z]BI sԊusA,*_J>Q8S)bAÅl3r-S#YdMyRY@h ̇Oo6Y<ȯ7X)֣=%%y-rs{"?,Y;1#,2ɦʠ Nub'@X<hS+{zR#x+NT*7INtҧ>UJ=xc?T@c'*$Qi?OɟuZ>&u\)kăNTIBt5 :YY9=FKFWR{;6scNtҧ>HNT?p5@m3}*ψYyO;S9ͦ[H 9毝DP'J2F !u 5B]Cb5 ˁ2iwN"uH+,%hH4U,EvUϣ*nTZbP۷'lPd^Jrf(r;a'Y\ؒjIN26E-? J6}~h|fYxӹ:è3:WAyճ~~ܟaM{(`ϾQS: Np=6RK@I= rVRr}Oz\鹮kJV0%Q%v!t igT]':iI(T9ҎjTK;QK;'jY'yD^'1*j%V<}#oe+KGjE$D''Krrt DV| N@~MBИ3bJ^B!wxʴH*RW|ǧ4~A2(&x#%.TW.Ղ֣[F=Ksk DAOϟsH351aҠ?D4-0G{RKYQ~|%VB$:&C%h.P.`u1Vi%Kh%zMB*Y"dJ`ɏ Ή[ ' 囲SYTvNG|*:v~GBN`w*Nݳ\;GŰ^bYx4QiXiXkհ,ZrBc`淥AՍQ~5}M ͯ):w{+g_1>:/eClR۰|PYT{EŬ.04<xqgY|qY`N0KP_"| 0m LٌuH!w{~?')fw;W, zc)7%a N!Jꩈj)CRŒpx$HсCF¹KTTS_SF#O NvB ,1d- d>VUKPX66ǩױplyl2(>8pƉ7CXRPQ,\L VPPF8B >Ez3yhyN0#[w3/\J1L7zDgON{~3'aA;qЎ zM,IqRsvsSd>I)QXg:;ٱN?zO;~ {xjRoiG8jQnڴD5]mꎅv,c,LW..3m^I8hA5aƪ/UW3fB^-+ =.^ޕxy˿p^nX^N}xy`wn;e333:^-T'Z`RMdtaEai]w"ڲlrdj6Z<_~j^ڡ<[=CYcjNvV]mȇx1> Iޥ*'YRt3N]N0=*qҩ 1,GUV+fK7x#jFzwr-D=F,2wZ'&zo`r U1Û2u*-QL[ /I1ؽۘZQ8c .QrgzЂccZO+y)eVP,tbX&IzMmaŹ-4,rk*E MdF5 wS $b_]?ks>cX:ϟ;( $]8he!,sY#>?dK:Ί`Tr R_)4V9 6CeS!6 ods 8 TYKwK }9^SK_6~iX\|aq8^6+q(oISNxqz SމS-ikBvܻ%\~Gx %GD 0Ǩ ae׹J?ͳ PoCg8tx 1FeT lSOH7Jl}tK>z ;3LX׈miV@Apsd< pGvcT 1ZIhü8i~)r++"Yz $$̟7,zWp ]p)AKFnDZ{/VNINw T]l ;)B  }ꢣ3bݐyNRHl??If6Qꗥz1_7'+KU_&qaOJo=g^y%E1s#bE1cK:@:֏!wRa[Fė Wֶ2$h xa7`zKvX$,3qwWqk:~BKBxxkivJc!Ŋp-UHR"\+ v\{x_dt?i^v0ϥ^Bo^ēpVoHol0+L[a|F;uN^K+@WDw;U<OG0 cyH~Wl+&rm픢#8ap-p ,C $i8>g .US@T(kxD".B Tg Ա&ޏ}wH^ZBML׊K#-J|?y)/vJw66@-3{`\hUR*VbM0AG[/`SjIF[;?L$X)R4`1)hE>0! ^;"̆l(O?"zí򨿁U /{TS?P\%F@)I?(CME׊a$}>GfS ]3NoG CvP^>!])}@߆>@ p귞XJ?Z~Z~4 FBď Cf FZl/>{ѭbwW[%]DG*Uu ~,MwֻE_ ^aaPQрuߋ |"y5eρh4칉Z kj:Q!>y,o7BM|ӢYcQ6CXvw<|I^Ƈo;.@"8BlגS%k&/e08(]Mb0b-m+e5:1F1ۉLx5bf3i)fv]!fv3Ovbf-bf3k i+hj5.ONv~DO`HC0> P-[źy%yeE0ִpb_AQ UWY>I(MrKDB)0"mէidFH/,j;AN"D%!kB5yd,' *bۖUyE?bM}7hְmN f]Fn+$n䶸,jF-) $F!-bpݓ; <4 '<@6эDBw$HC0  2;9$Ad()3Pa^O3FDn~dr|0E42a;a+)[MVbe%.3p 5׫SrffIz h?-_cVݟ~`o_`V5)>>CUc<Ʉ=fb z#d@SRtm3ސ7:}l-FܬuS8݊FuҶ!V{wm:KBι,3;Nx8tH́ԇ:3MDĮ6E(a,_'h| VmŃg5#^;^e%4:j= :j/khGad6/uZ:v׌IK.E̶l[`unvrGl2k}(@Rt@S;T}:eA(k{I*SjmW$EaIc9` i}*Bumx9#g)V*TT5P,.DV,`$ǀ_*ǺˠVvM)Q FAkԈpR% Oe9iTȥzŶB(00wvP/f#rN {zUjOy"oTx*HT<|6c|(:rY̫h Q~DEHzЍ2Q Loi(*ic*T0 ;do!"_/c*$)ok")&7[_\z>fV<-fiNlB>5$UPSt'il2X݉&lb&l45:#vPr~(լ /t!iX A,A< 3:dpvqFQd~L̓C`\aU,6yRPț nZ2oa':Jꦶ2gVf *`(U& t ;tJm4 Yɞh te#N7 &q^D 23(:T%uB{qPȺ.V]TVi#L0rԣJ[<;rEU"K;/mvujif:?&ŵ,5PpQ+r[҅Q9 ҭ[ޢ&,"3^\T h>¿6nN}k=7[oI(y|A#)UyX؞TYjSj'^ZCYjO?#c0j _L~F[ go'Nx:9M{~Q\jT7-.pnN ƅrAf% [46mZ놃ЩG0XKqTӭ (']:-Jr ;/[^3Ғ/w = Ta:aq6Jip#}eha{( (Ao@rDdۗe&.*3;6>AqU27r[g 2fSͫ=/A˅XϺY `y-ዧO]|5 V'@XdA)xZL,i0+-;,6*֊b|{BUe_5 㲹ލT{9#t#IW/_)jR_fP4ԂilXmk17ť$Ŗ̰ssw@bWh$cy#`NhBl tIh4]fʺxC޴[[Ǔ_Nw~9>:r~`HopB)Uh/ 4M!;B患Cb`s$N[ j!2I:D_N4eD"KRQiսʫ8Y4*b*F) f N*#DkTxZ;^@UI/g9ZS_z@jcc룶&~vmVPl:.t+Fja-ˑA={3Κc ~tO$ꝩD$$7ԹUϺϺF~ﬞ頓ҝsҴ~|c4~gccI3pdUa׶nL ^Cd%m>ՈNuA+:+t.;Jb]ex .5me>䉩EY CF\'N aӢAimy[66V]c:ouw+ڤhVjIShר[Δ/:0%Jir@8W d<~SOb 9)rD2w9Kz-=;,^f^f{,R̓#.0=a,/"/6|%Wq&,ZtF<"!)ZyЫ"mʤ[26D\b~ =f)(2Qb0\rwLHbcz%XyoIup؊c7x`F FM'lV4)u\! XXlmϔ}Ev)lUY3rO).KaN*Qi\'%qNs@Gq4ڵ Ȇb1^bHVƸ"B&P4r4GLw?Ѵ =.8*|>4rp@x$ (<)tr94@{}{IH_3/2}z<12b5Sׅ_tBXՄu(\V0=Ll7̱O^Y'<ΓR q?A(?i6, VTMS_ƹ ɫcq`t4}g ijq1D#fL*gk3<3vû ^ uI=Qs(טU!*ЙQع-L`tyi^zF\ya84mO!E .3(PTާll]U$9z2ud9@OPs>i%1hzjPnCI &#WB#q2n"fBRn٘U'6T h wMm4(5]Py_|蕲;1RS274P>dY؅d' UpR)#I@prK Ö8 "˥5R{"% 履M.4Xd,O9OO8 ,, w #G/6Iu&z|إ{=cʟ3j4G\k.61mzʼnb/m_= (^G=h+gNnY"ӎ<|reex wm^4-9 ; (/%[-iKyた)rpc©zan4a S!1~I,*ep#fD_#nFg6S GDΧXT$JLUʢ" vH٧]7O?6RDә*F-H/0~{%LBByUqb.YfM!=ݴI4ܕ#eVFy%+fm4"dG-Q=`UP tWUu\$݅aL|?]a;݄ͮlY_}ЗhިIOL[‰elV#.Y Iۨ([$ %]_p;{UPI56m~3ir6JG' JahTe_p6Y# 9;#PWݫVݗum( u{{x{O$YW+>TJ|eQʃvZc!&:U uow{Bny<}sV>6ۘ/[//kH=LmǶ'(c#&D."lv~FEzwKpQ|_lg4+pCrTӹWw&֤)mqБ&$m17*G `fTg{2B-+ju),ee9 ;ƵI.#PeE@RìjkcneI%sNԤ:c Cwb<{紺,m+=umr8R4 Ό)*Ѐ*}YyԒ 6Ak&^M+n*7uq&q>\ yRV`yU q+<~0ec<ک6|-S)2%zB19A=4/܊ N#з8$h^ÇYt&Gʘ⁜zU,ڇ? %,'\H92h@l *K;J0WX/m9=XV>PUof1>ZHW<9R/t"){<+0`K?cF'Bg<ȝ()IŋT|M q-d8O ; RI1~-\ԫ &a`yp^D_7櫒X8'y":#E;C 1e YBYߣxB{}zI,cn!1A9KߊdA\Zš-NNϔNCtrWqLXnIb))O+ xS]t2c R$NU"uXR'ֺMϚؙN!.|RJ\ t -NWk0QwAdp8։Z LAh=w.'k V,y%яG@ W_BTSX9gB4T[O)Ȯut'Bs>%zs !!R9?}(@%Vڳ',>=|W,RTb-dm!j֔ *IO_o܌lY5Iȵ HzuJjMEpK ]7K!%X!p}{G9oG'3.OR8X:\ 3kޘa/sɩ$r)蘍םs> ,9,G@l>,r?ѵM0Dϖ/٦E~j~yY͵]M;Q \2yBWL|#N/#`ɤ C0"20t%Mţ)b^D9ԕKy#Rh޹dd gszQty &۵䣴;uZ/A^xpՇ1udƝDov 3˽&!71Iu]1c^fVčgf-@z4A'a.Mߒϸ1Z#uxyd)aw'?XՔDh,R',&R+. fE,.)L\V#1$a* j˧lzczhZQ꫑Wrsf(`a6 ruiʭo;ֵw_kq,48J`s(sxwHkV wG]>#ٌ$ZghgLYq|~΀Kf y~u_zp1lxcŽ)MZ l38mZ ޭn9R+ciCɮ~u w=%WɷA{> ^BJ|ce!T+UUh(*~N茶V5taf+Ժ7?%|i`<7[RQւ>`X$ėSYB{ Wg&~̧ i+X ,WQ,s ?jrc,#UVܨ55Q)TJZ;5 Ĥ==P_pB.fHk:k.t0V0]EbaBiQ@>ET8;,LVGW1I=TMv΋Wx^@)b$L.mhWڣT~00Xyl=9*ўTs"yBq2!X &̜YE橅"`'YtCtÚ}m48B\F#}3#NV$SCBΓ(wUot`/JXu3s"  »/3}e/{u:=<>WvD^m.gݴcүEI{Jn:h@GBę4?3( w/yQP`5ut*jyݿ9?(_NA5/`Zp1 b< 18#-a-`i x@dX J푣wPrF`Q>0W/Flk^"J[NsGxRb!^#c>f`ĊN94Z88%z)^8v X,] CCɉ_)oF9)ĸ elK3xC9W/~S=)@ }0bg<Alp_-C %&+#XPٓineҬ' s 3`J&\i#SP% ic0R%B.qmOrD $A}Zp}N'"[XPJ⢩@&bDh/!IR=u ?v+&.Ջ^gǪX@H*ˣu{e` rr^=F~apL)kwR| o6n Ֆ V'\\*I% b⏟m=( jBjp'_3|@`$%g#1@9!F`dN^"lXS*(M4w4n|x8O}þNUQ l[s& OFaO, M:lN|~>Dm2\o"trH&] |JwaTV>e͂Z@9oEh<1"{H'摺u8j@l)Bz%ťƬ ّ6Kj8񲰽) AN®|;pAAKULdc44ě h9|zN4*U6SǡNmsf,jv٭a~M|O~c6Nba;pP}014sa6Wv)1#QLҠlyT}w fQ|oQ&;BkDܧs_Dq:6A0̀%٪MLDImDE_+ux"y.\W:~]v)76T;ʵ&uiÙqæX.GKxt9 Ǧ\ ?5ǷIݴ8uP{Im|=ҲG.1B:ܣvT"yMH lorb]Z\Po0trW btW㏍2һq#6eC BVQ'= Mu ӣSC֐زaurE=RU5I=P)";`5zUQ1 pn DFCqȭ?wb5z(|BZ_Ի!8ޏ')JVmEiC_"YSGϕʦrǗJ\i{Pn9Ǽ9Y{^읫wW+ s r%+1cCzn7)SuZ7J=>xN&,=ѵX bFd[- Z2w|߯y4a}rTFt&;6CX2up-$Ddyp&QTyVJ#@m$(fÐOCNDoz^i)|2d6/ 9:VSdꈯe์g ~)8JxYx8 O3@ \aUNjAὴ^4o4B'E\)-J0QLs=BX$,6Ld'o%mqktvXC~^ԝ@|q6#IV]C<7OLL[N: INuRH{1XzĤ4\^Rn16Q N9BO6!x hvNvKA'hAw}@%(':hZ ϽEſdG{,+19nzLze8Q;: 3R;iINm4N\~ g=Ly{|HZcr%b';x?"_DNn]ln<|ɷ۶%(GJ)ѺP[VÛ'O[NvBvƩ@dW_xk;h?Bܭ N>wϝ|{kjomo"J40+K"QC>ƣ.cQrXVW"cRv{ԲzRGR(Uq'v<Xs>"U>6MZЦcb4l`FTPcHS3` FQN;mM;rSjoC|sPulcC_<`msy8QSlb7_.[Z1V_:&f&>dnS92!Kr3~Qnw6_ooU#˾ ܎)?XluԠcpk }0 b1368/E3eMDɡ$ۘɧfG4قH }M`ڗ#; Zm!u/r}9&y+E+3LAg46a w('pϠYF 7o,zS`<"o`:mW?R7ȬyH`)ujFń"L&( S_٣_DIўm O"+p}`˹>fu* ;s5=sػ|ֈ%8ZP4q&uZ)iR=ì3A;*)Xk]uRLri&'KKEY*%? I :m& {`N8ϭzpXU;د:AXk'ƪywlD=BSoӀ+o2#u<뭜[nj̚*cܮ=nC,5. n77B.K'kKVye~ٕr[X杲qIǘxlb._'K// \ dC̛]ְU5em4wk#`B]/ ͼ*XƞG[5[rذOӸBLn0`"o8 J4,IEZĹR̄8qLV.@!Ƃ ugp m6OylAZCJW~nN 9.(hM|CܐFQ8s!a |rSg, ;y©[0[ - s5ƗvD1ͭĘWhRZc51FVlTQ} a|!̴ ^gV^?[_?K$ Aݛ)dxB1Ę7d_!X.8]i;,_/Whɯ0RFo遊*bi@{nUۑƬ6K%1DIQ1VJ樜6-Xdy1l ?OTb Vg-rӪrb5E.Yo+*٫g[}yd!qbaE+l&;n6Ž_4uNr'q*.4|@D(e[BS NS$mA#ؼE(bSݷPh,RڙRu -ywܽ\K$h>2n彺bkOp eZwo[闺7O}Ȯ ˟ۤT^.f8ͭV#ͷBՉ' uܼ;̼/]5<< MDAT̅QC+ b]l h۵:kj_œH0c1rU FoH_]qG,΢ی Y, oeWo!5rlTYJNJ5jf-}+BHb{c3"J`i]aȘ (JqKS=H[TJ$Ŏb+=ekOkSc.=vMG:ݫxї$`<_X5;kβqmkSw&,n[R*.\ӗX/U-*тJrլ 3M)u=wjf)eVGܷQdscv}ݠ}JC~y"CHUo>}!)}!ߎSn~YFt+chJ yu,w>Rlc!ey61mΛYi)ENDy󙱡LB;u_ab!F &W7gj)QARFRUUu%G&G? D1%:= >c" Ш30^ɔd^F>؃DLm R&cpEWZ{D=9@m/+ #@ޢu'X 4?ծJn|)ag ¨$*On*N7!Lg8ʜ+mQw9DE3Ee56`)LIVfp c5ȸ's߆qWJxW{ͼéfM=ߙL›'ï" iѥT~݃C3gbb(>]")AʷY*`vq:(_;J}P*:`Z`s`ŋ3Iql1oj1\lK_PRZ.UD X:TZ4\պ8:jnPb'qm5I豽JyNuK|.^X#*tLӊ)~ lo@G+ytۉ^F,LCBǣ{+K^AJPu:A(ѾX.99jZiˉ":=7*YɊc#LPV[վ<];6"GZK^201W#au~}A&vec5*G'Lzy=rW@r#J/' sl0cHyǵZ:,m=>&16'xvg:!6ӻ,.H`,?~/z_kJ Vr5utcD(CC˕ɘM퍢Y!z"QƧ~#g39ʏuh7aϩĿ~V%J8/2R~ >F 1XXy(Xћjm",`)3bPώVl"jؾM?HI.KE=bӳy\ %m4t P}ۢ^ynA6t(x;v~L.ol\&w%s+Rv?g-U>>=h)0;d>~wpzvpov8G&Eb:M/[7e_8\,"UP]Q5/͢^Eo** ٧3,_\R\ȇz՛y 5@G̜,.ծ)%]=rCAH@Nv -=H@.Їrvͣ*(]}Jnh$܏Gg9l0 1u _ye<z,'m,K/DKAdaԷX<|ݓƹ@?ŧw)wcyC|A@1 cyl%yyU'n0^'zY )9=RW&9=881>X$|HGÓ γa$N07su}˞ N-{FN4҈8B]<VajePD|^ |ZtتX-# DظmhrkDĆ5$$=< ^{^~}~PKZLp<-Lc+&com/sun/rowset/FilteredRowSetImpl.javaUT bnW[bnW[ux ]mw6_r++vݭӞ*hcN9{@$d1H;3x!H8q@3- ;Hy]LJ ٣=i΃X0ӜEex/Ec8ft_rQR=ᐝ/՛ ;18cGCpP$*X\Vb xQQhVBR9Mh< (g"gDRӂcO^E"rWQ8 DRv)"JI<2^ ќ$NgJ'vBGzL[-EtHJy -X1Aʔ>8yQd<`} 24.')4BY:rsÃоlp<8 O+U>?d^_aτX1{(1yCSQ(.Xð9;JxVc^0!rZq[ aÍC61Sk(q\e_WinEce]x6뢤AɻwEc|ieҢe>nw>롽4)986=]q4dgte}ǻ{PeT#]]RVŁa ' )o%d~íj9W(Ҽdo%EiڕYkKz-6};e,Z#nwXUO^7D z u@! Si^Oѩ,yg{.|28+2DcDbqf, ݤ<=uA_ "2\hr=\riER(-UKKT\xs#әOg,*~9J.:r~U3Q<^aJ3t=b6,L"3΃!D?v Z"d颫\XRryW eY۰dGh ij6CE9FU{$OQm5 3mkL 9aBɣQ0m6/=ɴ+Ԣx &׃K@4 fyDxxx+v톖ѧ.WS4u΄BY}Ͼc$=q5;!2 0E 9MbB*0 LؤD6$|A`\v+LeN@*2"!^M8*دkGXzT$ S%!f }(!|y_=ɥJ໡ȀnL +E}9U:pT!*$gG9V00 ȧL*AnMx,Lu%abx UxP@b !:Z%='Z*k-=H3&@ D ѵbSWrM/D !K)/H4׿ rj  kB j{4 VA.D V9ψgŏΊȌ-1jF N)Q T!QKpD?RljBW#wEM #흅u-ELyi! Ygڵ8Ǟב\– P=JkQ3@=KuLJmb1revtLj+R0Zζԥ{I8d9Y܀iLg[{Y>HtXW+cnG Ty~(6񚫎?nd5 zm]aV>GKpHZMnC/ݠ(:QqT|,#g&ޮlp4{v'UE*)=qc iI\l`كHeR :n׷P6> {哴 ֵѲZ72jxYخSen+F̧{)r/4;BKfl:gD5 #KI(0J+M𾣬hIq-**"Ml]癩D1KPwoG_翝q׷贃UJdj[F8mO̱ڃԖeGTKjIѵ[z:`c76r=BhX4G+f&Į2}-Ssj(IF r0UZPfue_}Nj`AfJ\Z Vrt+3&Fcu$tY|7:$7:tYɦV卤df{yP6Ho8i)q"J]T<6cQέEF&}:8=9x=mx_KSs4m3]SlFuO-,s'ztq}s(|E=, P.TrHY4)$*ь []>ΔC+|.}nJ'au2K?dzo53}9m,>g uऔTl$eY}SM(Y<V!^1)T'+kΕJhҊ<}.9$H7Zl Su8K#Ԁiټ2~v;-(;ֶtmY$m39Vޯ`Z~"&Z IYkjQ'X) uGhXX٘ e2mZhkSBEiރX-m fP`-]ur _&BX&* Y׬)닟~XNkޕU攘%]sB 3/DsmTD ;?R<C^:KݟEVO)Y6JlUS=Ö Q1H+:`*>]4ѴK7\3c>2mѼ.K.6w|6L+`g7fUC|o&vU䬳m/~G;Cr#jtm7 YA\ ɟqȲ]un>94HJZWK#E{=MD!e|wN%![IhOǝ]K.}ne=#{E>ՂKI\YF} }=?'0jx?pl4@/=Q{45qy0ئ1~VjܖHVDվIsD kJ%G*9xz䀄t*Y]aRM{ڮ>$4{UK2`J=.kKHgdlL^ټOM>5yF=Xc\~4c{-W_*Ϋ_*sO_g]km܊OA;b+(=7d䓑g/*N*48x< ZM75ImM{?Ycqw\u,ˎ_qf5|N\uƚ >+ݏ)3zMO~/X?s=/)~pgR$"oc%N^^,rܾSu}|z+? l-^v[T]񮈣0m,X\Ƀ6@էW_DX'[.tul`hqOjO'8+̫[s bS??fB^<<<;|e1u`Y!zt=>Yy|} v.sZݖ:WvsOGP*b|MhqK_ʬ_ i ♣w_,;y% zK|%W^sؗZԺJUS%f=KA|ˍvb٠nbA_KC}si֒'M4Ϛ͝n?:Z[M.L$kO")G[^nTqR䦗re. ?W}:\FHC<=+#-@rTYE`^DEEg$( lVV0.6-V/\ꗮ2>_|Ubʗ[5EfkYX놁`bypdd҉/ z^(A쒷=o rdӓjx..5kJ՘՟jD0k7Z5rvpp\e}(Jx>w/вgx9Н,k^/[?4͹3 $qK0\ پ.-7hGȶYE%[i&eJסRc^nR3.69Y >[붊hW֞boq2}CRϨnB=I'WuWUε Fik}ݫZѝzȧ"__cwUͰXQ/[TO >#tZ>|֟V`"k&+a~xD^R~_@!?cnUuF8yt1)kY#OD`Xa3=M:N!Ix0Y&O|exN^<|9W5}H;7q;qpFd@۾溅Km\_]i毀@Ly aFG܀@k X\^$q7zkG(PWө#5qIM@av u|\*4yarR0ha K iP,9JU~1T 8 8*|x57I+K(l |f8;אBK8pE.Fhpƹɻ$MvtQ,O)գ B%K|ldΊX71LUPK#l,6LPg8:d 3k@X'iyEC\9X%%jz0:aTA.*I!2itVK,3@L: Q}g" XDzR(bh8KUA+i[W!)̴_O׃<~??"֑**fPKZLm6$com/sun/rowset/internal/BaseRow.javaUT bnW[bnW[ux WQs~ׯ躗H.l]%cdQ% T< 2̂gR u^Q-7<#g't~vއ^e&eS@j63QQ6u\ +! 'ԽG4ѨyOhf¿z16zpۧ~cdne.ׄ357k%m\I47!z3-#bfS\{sMQE 7/蓶ګia25AJ`srشHd09M7cW1ѵE*\jr̓ep$/GlPNYBTqo^O[z2 B0VNλq?9s,-Dk,`nYk2O5AʢEÄ}uhԽ<^8 J'Wf,8䕍.w`Hγ?.wGmwD`ZAQSs)2EcNج(& dWQ**aO:Q-UU=qv(mۻuбm,Z.>#V~)گ.IM㧯vASt C1\I!KHc=7\"WLw#:Ot(^ B50şSVxTYxD«e(ұsM2nUAFNoͼiѦyI!nki7!!"ZBu6Hsh4 -BTEQdM_Kݗ1X_=f>'*.H\#.MAw4QPJ2H82%\'0(t*"O]vRFNu5L{mc3'N{Lw@9^kze\4rع<>{s=\,0W1:4@R8X`L˶pX.%#- +$=Kᚬ(FlRPm#P57CSQ!67 N'Y&A jgvzj* ͯj {`̞sHΫ0g1ZT Ja(Y@paruͷ S'Y-gEq 1HX1CqEYvW $߹&ًѣU@ߏ PKZL9.NYPU/com/sun/rowset/internal/CachedRowSetReader.javaUT bnW[bnW[ux ľ0~ aLQC(5f9OS4_@ HיDqnhJܒJ3 8+$_HnvaO߳w||z[@E,FJO-|Ə_NfY*\1f9x/g)v=\7<܏b>l;ⶣ$sCClrǀG L3!̏(ڤEKmD\Fiވ}u&-`h _i*FU*sގÃ/_l<>Is*n}qA><ܤi+ɘ}󷃿m$6/P7p$XF?P(JִJ-BKro/\{HP oP-MBP;,j8V`dhFL2-DG;4*RkR)aA s\^4WkyXln2(ОL~ǃPi7\p0<\Fh?UbT͢@EvM ǩؚl@f]4W*'S P|"dgVAW9Bu+QR&4@Ax5\ } s@  OA;[dtWw^ʀR|N ]н7:gdlVQB?Jh.$RB$fP. ^C N@CsciBk>]FniNi(!8ܹ2V1z 2OEES>{*#]n1c,ym5(TT*0xL~T2"i`'U< ٵ *ܮ# Q3Xam|~͋nGpoOpRԗ\Q VZx\WXa>Bx^P7#k6q58 p<ʃ![Vyu2^Ou@msL/$T* PV'`@]b}Z(5J֖jxZIĭhorĈ!~T!1xa$0Cv".Jf+E ÀfAxG9U;1-iV @mrg?ڠ+ Ⱥp<2 4)vT1Yꆿu??eΩ n]FX7ʩd"!8$IHaW4s<^\Fc(q*1GUX|@okFRL(m-bZ4[U i?4NThTCE'vS1c;*=8q) Ar&J s!0R|NeJy#fGCeTMҼhm!T:*IY Fip'%{$E&}7Tkk</g=TճWnlyɊDc? 7 &0u$2 ['^lI)qdP |Ё$0-)U\80v~u{rD7^}9ؓw,)RRn8"n"[2HLݢ z$i͉(ITq:|>T:( /2S0?C*.ƿLyĜݲokk!JKv~Ai-z=2пj{t:(Tbi(6m2+sW7Q@& \qsr:49( /Hܪ*T"zX:{foW7d"Aӳ Fvdm|>VztwJ=է̳5OM*+ t5~Y+:kV#mDyg͖dˣ{ұyI3=U2)eCYBS5C)G}%"mP  I-KAS14sK()o?PP t笗_"!Ӊf~e>J{įC[cX۾USRxĘDTHDzrL-uS]y0*wT$̈?4H4<:xAEQɧL4V9- fCEU3cΪTV5B#J;'*guT%Ȳ^}-fw Z&J0NÃ}}e4; iEl--x5OWř6yݳj TRtZREOIɔFV!f3*[|qEa"p2: ÄLID$'u&ҷ]8>"}mT*C|\Q?;h~~ 3)R|18^7Enzl ~hJmn4y.Q3}0]WIK⚌ SsxejVZVr\u}4h`{`kf>氻PnԓбH )u_:0˼o}EZC%v%l>K?@AH. 6=t#0c'~QdwHA9x"'*lSR*S_ާ/::UBxJ>6FbR/EelݟA|cZ*n= %18wQBeo<A T ]Y«`@)Zx3]hϼ 'aӽSNK$.X+dDl 9˃#oy1OznQD+m f6koַ<2 ZL1ϻ/;_mYO$Oa bL[`[^O꭭a0Jчy>4@١{{蛌%Տ oY [ @$y;֚:lb\QM|UX5h"Md6|irCs;Vm[ǧS CiٕEIrvRFRk{ăQ?EO/seSFZyh).+PE.6 *! n^ T\4 Tiŧ7iQͰyXIO%8PyT{ PW%ty:O[\̧㷿L"t*HX6>Bqs+_N߫(iofXQ13 _y?]{}nۚ`[-g9Ì<%s~?W7@YPhn!/XyICx])~Z#gc%>Sai{ѵ^c͗*@Ix> }rzB`4ݟAzwRtlSʕN}(we;c)%6Im47b{nSw mٚP=DJteY;__9ÏGal:ϖMudoFcR!߷ ܪ. VP-peT%v,Q_آk[Ƶ~P.#QI7*ũڊM*0A׿7 $湎3 WB RD\ߔЫ 5gl*A r*)MKˡϬfZ:cjmͦ4ܑncx*+S"r< FҦmϠ}4[m YW]xek8@0/rT@Uဈ 0,+f8zp IF-Է/gW^|}W_ hPKZL"Iۅ1/com/sun/rowset/internal/CachedRowSetWriter.javaUT bnW[bnW[ux }ksDZw1? C[l:u].k , ]xw!9k޳$=HU,3==3=G;Ԏ:Vwuquݪt[}1iM٣VEۨl>/ED/5Λ~&:9PgL{uz~ {v 5ԸmV,5`ګ;vQN뙝s*z:l`@ӼCd>Wـ ٣+kV*ɆAbװ:`'$\7u؇HAf$wY\ML;^ox:DZa yUG5Uq Y7t+u~m A pseIO\vp+`(Nec^ؗX_hzy )5D n`mPNq),EWsYGhhK*1(GWW k{C]gq.W+8HK*=d6r !uBt2?Թ6i l&"i* Z U7*cm*gBlF U '-!s~km)> |O -h:f'JpS޳Ä7b8J (,͖R |3"mjK;KCaRl RݴBU:Y!IH?.E$SgTfGU|:ʸkӓtM <վM~JosJ&lk.[./2qJ}¼e- @#s-r\ٔ>} mo ᑝ~rEwϣFv +}T45r7!hPMH3̣[Qr{iA¬ j,ɻpFltIZpHMܛa:fM¶:Xq\rQҥ$!8$"Y-ݏZG}1> z}xs9A< h̲φdžȤO/ '&>E :h1m+8bSۼUVwR^Nv >fh5ϭ2Yk?}fCD 6%<(Y|0l0B9$URp8֔eՂ#ү 9}{I,Ew($ qj癑%(6&] D條_֦iVf3)=Y:a@#ZIEHN4VPMhʤ=vN/S>5]=Q!,BV!$pkz75q_VLۮhW x\SoNye8aJՁW}.^(H.{3yu̙;i9+a~<1 A/[ $]Z[r@o_5\&bzBNA7뾧ʭ@l.M CKΪhrKc[3Ll9o)c?x,!88K8)!eXDg޽`̽Iqiɱ ]n<}uXV7ejqaWB=rJ[ 1lELvXc8f!2z46Nm`;CZe=٨ qd:ĜFXvJf[Xy՛ *<;"z'l|MPݨyj&.UrS 5n"/b& Ѿ }hRQdwQ@,grƹ=ՊeQ)hV޳ĴyXda:g}.M`eƣ7murh(*пs?Njq_u=1_'U}<>XF,fQu-[T,oO>$,I*⫥6J5d-=~S^u^P֫^ɶ9\w݁p_u%Vdʊ(W4F>`f3+T䭺\^#X/ ^$¹h~Hfԧ[Mtw^1@|ldꚏsY[ɤҪNRI. }T<k|DKD#:=Ӱ4$¥kU:VvE;)DnC wz+Z\U ЂfNziA]ۺ-0'vgzKJ QxRV hZ n*D)o€7-azz7'"̂/ ?XIeh`*s.ɆڥH'|rJD#F_wW4시=01!F+I9BsL-{,!;hHIp$N򥠺,RwNmBǰЀjV^q)['Ӭ4\W'4/9Aݷ!PXA4d_3w:2&.!'BfQEb'??>jKo E$ǭi5VȀ;֌NXTdؑcDKW*J)r@VS )#5qW11ukt5=>ϏX|bb${\pE/xpMi DӖͩ$o+t"-֫VXj@f2z^QΜg2~$)M#(W.rO)JȈc~TL =9 [8''E*(w0<Y[nbDPyI|[*fEl1F/(LEjo/ e ۹%@CISܥt 3_ DJu6|Iʂ} W c?ōꁐ L%=_!!5z#mWiHUq_{7lcrbN,?Φ#v2_q6b-J]:#AE"0\"cѩW&e]ǍHyE5 <G:+OPWa֐B+mzlE{\kK9,I#p.TjI@8tL%4xG0{ 1{B VT㎣+Inh #h QA2NJt-tHM 揽s|,N O49))w]Zq)7L=ƺ14&G_6̓ߪ^IDvSUfOuÊWiT=j2']'iW{qCcv1s5qc$XjO^bE͑%жZy̅ 5k(Dmn6˂)6QdLOTQjT إYw8F3.eĄDnӤљ*j 0`#9 {uND3Ab2xyWzT'](3yu^CR݃x,D*C$vP"VNL#e(}~~JI{Dp.1N]W޴ 7Nudc?f7mkƒ|6{jcb2crGrgWq - Y饹SɳN5b-PmǍM@عTݧx.ɯRKŏ> =Zfb5tD-c+gD#Yu_z?t uQ.OR w䘉xrL`arֺ1,|/h[pl}N2q~iVq.Ěo<3ZĹMRG;&oIԒл zJ= [tA\wm Z[TU4B q ~F1"x*lɫ?1Ԑ"U9rz`+Zp TSyD$Z1'`k.G~"@r(d"E,Ҧ8M0J}=CA _ gX lc^Jn&ǥl2妯/cisgBiN}U[_s( Ɖ&Gjb5Q~oZ $9qʪkdҘ`ZEZ̢ZwnYP:n _Ю <4~yאɚ<$Ӹ$/`j#V FaOCKpV*UCNqV^] o-$I2~F"/y 񐨩9X9A AQ[,R1E,Zj52l؁W^|0yEzLLMjU UYh|^}Z(3wgE&R +ɸ$n#=˨= c%D7m]LJB7T/̲ᥞ'+bx-t7xP#i3.7 >Q/`'u%A_J.OEӓ"~^k͐{E4lʠ[Łlۜtn]e\$7ysޓsHcT/5Wv& zEFGŽ|0w{X#)ĈKZp2R#m}m[u>[jj42W6QԞ6+CB$)[>Ƈ0]ҩM=W( z{>/Fd Q~تp)5W?( 'ҦZ2Z. wsQbۓ**8w"x|PSP,L8s_EFR `AvѦFZ]k qvA[z kУ>IU`JP@'a@,V;P'>Qۓ=+eJ?5 f^k!<sc{mc w%7^33U2B! ff#MCy;+ /4#&<ڱ+>0d- ? )a֞!O.hQ;ҋ[{h\8lHlUg5\Z;10dC:lt# L0/'9q8q]lfCs263 /Wu{BЍp'ƾlb1jt k#⸖C#?.hDtޘDEv_"'&Zv+/dCp+ח=iQ8cv&R4KH{wB Մ&hhZ ˑ{L=}A4u?.4x$";,sL_'%ԃ ߭0 aS `+b!k~{99&KWDfVW;^kDU$mncX2aBKw?nr!M!G2ڸb_fGؙ &oW/t0@[ ld;Ƙ.&`>|W-"h6oE:w~e)ܯD:f`MR +Rk2]!ު'x >M<&"U=`,9 ՞O7q`nٵxȲq]?Ա]P˘;?#u>b9P03M o%ț?̌/O N5d~ae[l+s$X.䶡{$X.)-u7Sn8Z7|iSú m t1tU&w{n^v~ nٞnmQtȺ|9GLUIJ8 r "h6)>5 3׸Nr|5P媠/ ׷:+9`(7QcaYʐVrs\9xvMӰcVaDF sP@L`dM. p.!~0ȻPYC!M-Zjg7P3c+]!J'Eu,f6|9BONljA[:NkD'+O#M)d$`P X$ȇ̿z|#$ ~%237=iDUh $hШBҠJ7!tX;URjYܣ<^DF 5W8Nu[6Ă.?"#Q1}Sl[CaX 2%*fIgX_kZ'k/ar g7n$C^j^>ԝۺ|c|gb LZEŰS6yM8PW31FbL,eFtݐ:~՞BW|^_D6V[<26 WȵT T #ż!mR %= /0rb@=WĢkVP/e(?Չ \*1YPL"yb@m^~[(]^wZMS'g ~0Q=d:gBh4-.lr\7I}[XnE kGC;涤\~$r@ԛC0&NF<7_2=al7>AL葨[f>/YG|,CycQصi=rKk#ř ~GXBup#:YfأK@}mȕ$Sn744(;#qTm&bݞP"JtRA3_g50O"yZ_!r;JK vA6n tʡOV͸6Y h„[*1Z;l}1NH?K Aj鱪ZaaAH%zYPzzP80 YۏBvcae98xR7=O:)g`:U4NPu=K8;1^=jOA–~fbe~\_QNhTyյ86]̲ H`,끊zلwFzʺC"#rf?ꭁ¥; 9%tՎ/ R~oo:=+Kva-:.!Y2̀,V wrMuQ9i$V4)dD`SS:DFBN8 /U^N=IKluH2mnoXFz1ؖ&nnÓXJ/ȭ-ꓬZ#5v>M1xz@ASS[SɺWE=ۛZK,.ٮ H{,P1VvtNs>co Qit~Jgi>B(F= b3SG1@mNRjR/P.@VX[Fc w`r=J_{ɺXI뮻sشW3MKdF,nZ{=O(@MiW Kϥ-"MԀCMUp bU,b|vO\LSPW;#g0 5\XKT+[prA9sA/S4CL5ʴՑ5} P!’[]&V ZP_>qit Ami#%8G]-7u \+k)z2a6L_QE#uh 9*{ @ պ.|V;A-F2z!+[S:KtB B1ZHnAiqN~#q^@Ns4xjحjO>%z>/4A@DZ:y:q?a#;>%_*"d `joZ VdRkJ9zJ o|3syrϤj>1Ί)}zYpٍ1o|E3auCW[: W )SO⪩VH&3¬mv @c^Coo;}R. &}~@Tf`%џHI?Vn[ϰFU\UiFK~ZyBYM?l;HC߷ ǷU,ŋgaϵY)کv0JwLQLKUN+5QK\,貜~~8M:$n'Sj~Y;.u!9`LILJ䣢}a=bn&B8Rʵ5ځc ݱZj$҄v#*Y+ QJJHllO.H/wykkJjߌ)!~RqPt:1^Pcp$;^M2" N3 s鬔PFm!_ sɊd߯}=a͒Y3]!4~G@![\fm 6#d~\XmmJx8j䤅CD(">r 8ԍ 4n/8ȳoY:KN^(*GKa}ߐ}FEy9}H .ظ~>GrLNεM=$EJi0~92 b#W|}U{7LW7 NsXgVwPzxè>f!؀7O楑OdLR[v>gxY6oR]ȵ^z8 1$ m&7$fbg* n{3+~?l&gټ:Fu΃+KFwܝ b|ķrU[t;-~'`L jJ/nɼH6VrbDŽCDKdq2 /@ ~yw1K+E{  F hzp6|݋rw}BգZQ"lV)>?(h5 ?AĞ$:$0 #oӲ14D -㪓S5vÖӚ8x&ݟI`6u??|<7$2\/g,@/t! ߇UKc0.r9gK07m))!ۃ*"2lÃB{# yVcV9eK0EJ=՝IKWfm}Ô&Ö9i629W42pE 3 B%šsW9cKr:ˑ'0qHn[@ ZV3;!#+Ӧϋ|2Sog<^ ͡qAR(*b\3ԠӣreN1u?{/7I%,F`KP R)8㦨 OSxAFb^/Ճ2HKmB5E^-Vx'[\M O42S",(|SIť& f6Hr9h]!7"[<5$g e(`êHlf֬;߲/)[tBT.w\H:Ȋds|O4J4ňFս)/ t6P,IƄ )@)?޼wv~\LC\1rjrzP{Rb+<г2ٛ4c tJ'4[͏֤wcth!̽f/Ӑu@WFiNI j҇wԔ>7̯"3Գߪޅ譠H^;ΌE)\ꖍL_a$@3Y*Xlnt64SYopO,Ǥ9!}Ӷ5SK5]džv\7L0RZ;Kg~ΐeavmy\;VMuRT{ҍ(_'_4Xuհ0x^&444ω0eG8: ,:f]>KN+RմuBk]]F=¨Kg14o=.7nFG㠌 FM`=~ LC< Vd&ZvV9fQns8o FnL.-&/'Rq4c-Jqa7a%to}*Q{YG7Nε $<7 ոkncĮ;h#-t3TrE\XM9Fg&Cr'jVk|`ACc`=myǁ;vv# vC ܢ395Y3[CEd۠?ӣ,i$Y,,n "uvxm%wWRv *4uLL$ѽM3'X~P~"#7&&n6]g \W6x 6Kr C<(ʝ0QWO8ynjD)8 nS]@-[8B%\ 0ϧ N` Oo=D/oca.2E|<ױ_ݦZ6>/SJ_dtdtbۚ*v߉J_,a TӆWd >bv xFXmxw@IY/MQxWƩKl}͗GZf˭CA NC3UMbӣ@b1&}j'*(L @iM sZ\~GX}^^b+qmAD6 OqF+<2_OxjeRGu$(ŭWD;<2-/u/hT~/Щ\ψ)ޑ%3nV4Ɔ;rk@ -r3`2=Au}j<]b0fyp ]%~: 4[v; l`:K-OHhVp毊ո _rNe|QL1Uev^C(PigPVhp]}ڎ=/y.Yb.fQv BfMhκOlĎ ʖ& rNG H#oj*w_݄UtC*3\0TwsIz8+8>2 -whFP Cpl1Lg@٣E>>RkcÌDբW-@3 G/u*25=c#hlshfxNa>YTto]mّ7 nIҎ0R|]"ybleNI/XߺDAc3jI VZ$dsq1ٺrXx`(%IJ B3+JZY/5|ʼnEPkաDXo'nK''B:D.~$u뛤 +'+2CW^TLK.A;v #dj<}qVC7[ìxsr""Xz gPjr+B][/7 )-+]%: Rjz ]|lPw(w'bƖKHEhim**~g_FNC~G$;2,F#}&;9GN-\[4/~ bf_d^Ԅթ|ey]E*c@SEӯLdM^P*G0'788ᷩޗhkfu~0}5'CǗ`xy/lgS^3, $ޚnD=άA" W8E,IDrnyܮ]w;$6(#4$ m@[)+dZ 4/DsIG7MnK4cH\Ą^c9 ӭcIO_0S\=Ƴ$g溬 BUI*,bPvPQ2/h QQ'?5\VS FOm":Jb@)' Y`KxFd݄;#W a+EHL'745RsJg=G`m]P.F0"VC ʥ~ԃ NiHE7\3\Q.92(;gcdW,b NcKKyJ>5fe&㝂MzK`ۓ61,N%-^77!'`a+ K! 'vM}:܂0R@>fiY7zs ~R .V7~B'g/ <ר|U͒݋0zGdiw݌nSm-oP"hm7C9rVN 7n>R1DS4 M isXŨex}΃Z^=ڊfs/{"@xl&:+1_GafBw AW9`>jI`ͰЯ2]󀎮L0bjN0juIsFCնRP45A.Aeuҧ-:-?fbM14!:]:m+vכTt !oRA ;PQs&jc^*o2UmkPY2N*y%Cē( XHjeT|FmNX':T$ݵމn򇼲,4h/\hO6RPHkB #cـiLJ,,0QQHw!UDPDp8oꥁ檟2RFU?TAf1cuL7?)oz>߈ʓņ1vaH~% xw8AQ 㲱8")OB=7NZ/$ytƀ+ZFFt<,䤪!DBv_,X^SǩS&I G`лb Rsf6Ⱥ5ge:ioTo{\P>E@֣OSmd%%{,4"O8`W~ *O0Yo&Zr؏!XG+7ߧ67{TsPƺ=$0/fvm?]gsdKg&LӴh;TCu yFGX0`ޑD){1Yɬfjei;-3"tY\s=9th(>Q{Xx*)QڻcJ^-#yIt6ڧ3Nud[cmb+= _ܻFDގ`! K6z eJ[~27SOt43<:k&oR4ȱ{63мQw% u즺g{Yiڲt+][_] EtYlQy!6)C(Σ8@D8-2Gdr*i|wkp9mR ,$q $˩=IB#xG1jE1tY)_~7b0T*v}`}QuQDўgNcT= _M;T[Dӂcng5һ3$&Hs(%#+awy,0r֙WMW`b{(-bYxuUv)#{*>zi%m7I>2Km$Cю"(lh/_cp.vߦu4p`h;5k(F75mA5B 1?qWs6N^uE>Z^i:$=ʍB]2L323g(,Eӂr6s;VZ});#┶w1w3poCpK/B^PhƘrPssVuWw2S#?iˠtu8Y6S+W"qFOX\T 1``ΪP}2A<"7:r6? Fq 7 ЌڠUǗ2w5[JY fB$'8iā~B~3eMPH˿4c5Ƹ:OF7%F‰D|v#xIP/ vK=#X1LQu%U{#Dy07]3:,QjLXj$Z<՛w^2=WYa.Σykz2.G\&؈0GSBd.Y%N>T̬z|I2uT%2_2"08&:`\r4C0X-2Tg*-6dÀBLs;|1 J{:PAU+7X0!a@OlȆRO]z2a~oMb"RYcTz@]6$_#؞~SÕ3]q]EU0dPJkͮ!A/;w{@@{t? [ja )I-98L 2B!|Ui mB-4oxR_H9]hEtk6(Nh}6Eʅ7 P1&'kPǮ7;> R "D$g,B d=C_;B’575 sԛB)cT=! \Q&cJw?-X|/ VbH|DRRcCzky㽚J&)GD( Ͽ){(cGGgXNۏ?wc8\%i_C08L^ Au[Z^Q--n&/a S&w (BgGmpchʮKhy [fQiM鄱ˢWQnKj[6[+lf[E`7֧ *DRo"x7ԛDՊԹ,ZZ%wzY62VkR h!& 0;vxDu52gk|Jh馊d"lbWsc͋4Y{yG ؍zsN!;ՃTKWXBQRx;MKtA:=X`л4A:A"Gp>Jsw--'Vx[+ǎTb-5xqJ#ߥ[x;C/Rtʹ֑gSA380>&of -=>VRDO2 \_$Fyk\qi_(t PS|{6ԙ~rj'!%?%Ыs,,^'HMãMrio4BtsjHjUX|[5ȬI 1`$`7yͪr=OHţPPr@O~Awbz:l}-1su_l=fF˷q bYʹg',[j`mǮOMbEtʬq3$d|\f: t? !)Opkŵ;^d8[jQZ WRp` 6.{O:J$)w4۬Wæ7Rɭ fɪ Z0m穩 YjD2{$4Wlo4\K*%ӱ4&vjM(B9Rm{;4N-ƽ*YƦo 蔪9J|VRDEa[l;˿J? ,T }-G3I7ug ךR ]m^lM7~$yoB M)W%ѓPe!dwm2<-&ցxUZ ,+6QNSѻ})xKy͠_AͿg$Q<_lQn%ta# &u  @ZH '3VXq1Z^n} >fJlki&5BXkBͧ]awA B>б'rP'AҀ/]m+P䶵fn/6YA|Mw>αza%d Pדּ5^U qEV6nl`6)EvKG6rܐG'`^8)4X2͉Ӯs5.*Z~ם! iv1y){\z s*\t0<fHG, <+yWb9+83.M(̀f{N@ T7SѲ,{ N4[rF:Rh^Jh5R%؇l3ʪP^,%h^t!FR* De}+THTB43m[gv1ktsJϮʋ—$*舗˒O{ׂF Dn"IIЌ{\_XG /wbGr-DNc &a8 MSlegPI.wTUS]i2]FউvјN[)\~eY9MHLըX))Fc;4l[?vաFVH6nZ9z)!轸P${CO/]1t׼A@R*oV^θEOw[bCʊQ\W?嶓x% h& zK=eg/tr /[IY;Јmfc"ͺZDFX=\_] 4Ól댘ah$~0|r={JSp"~Oh/hU=\#l4 JZC %p>,B BPܲNb<=Ɯ&TV&,nY_5v?7T_7N ~0$J ΐ断Rf3 Tup8GF&$70WԙLW`ݏGͦ*@[sJ4})U[è H.Bj6D/gG7_@ 㷫=BOI3 OJyO z&}9'"yU/pNpNNXHSu/ |&@f5D@d5*g[svdrGz./WGmtx{~VocGn;_WK{.3m穸9xЗ  ߑ`xJ|Q?nHrE@y'}#䭈 1:&?^P3Uc]'`\mhY ᴆvԳڂ $U܇xSC ڛ;oO!0#W3J{:*œN2@2!!U ^!(0sbV(dޭ% ٓng$X07ˢ#hMZj4Ofzp?G>ͩpl.3UɌd}9ae5}uz@gU2l+8ᦡc-rDltQm A' 9MTәo+{ZYQg@Xv2VoxOl׎vt8mK[@/*"ۛÕ@w)TExLb:eU*dAwro3z̄]/zx0ixpq[EÚot405z^Fyz!V{Am$X)i+ xXEP;ueж)\Yö4|F9cITN[B>oe43ߗ79;vM)Ѕ)9-/'Y[IZh6y=!DLjLbrHD,GXcn}yRM'wHhG?mRUʝg.=Y(p\0Q2^$}RzVs tSp֙~3^w4s]c\&&r? ͱfq`].w=M JCUedDR?[`=s3 %AqȎ`OGq̢KÀ#8#ӂv U( Z] :m~LK[RI4{.%*]C0uhT@R׷6?VA  ٲ|4O! !pXN;P]J*4N|ʋ_4CyF0&"%{r> U12i9F7I#ɢh6ƻ~0NR bJˉ#$'ZG15)ptr$0a7{Gр8BoX y(rbE/40OLQ~iqJV{4JS_O=uL maMݲNSd! $0p[ "$> ٜo#2rPWuM{YbZ'v봎Y0 gQD!xd(fp5^2'6Nw}֎waTBTk%'J9D_UA2MJNW !T;"j .p f gx" B 4،Ek8I_(±8؎9 # bQ/aH cf,gijstVy*ǕqkC%W~wJAo"(8!6&=DdjNwבĢe?E˷5օ1BGR<ČRϴS[!-,:s_&֍efT_ ,%p_(Vv4B7yfyiQQ%\ rNӁh@ז&8ձ@Лd.=2t#ie5i (V1\AgJ0'wO,'EliB;ЙKr> MXS ]h_ħEX+;z"u&V]U܏lZ>Cd2IJy$2UENw5F(gf;L b:'I][otӜ舫oRܱ_|r| s7Y}ƊAf2Lid2ʧ` Z rF:K \y{sr8]Vi8{d/hle ]j,$m7) q'1 rRNlv s0< ǘv8Ru=՜W割Gsg4/M؆lqqݵڿ/Чވ٪ Ä|+HmQ56.G À$J_<K$m%"@Hpo.)Gv:4BH)Q8虤[,WB,0$|30Jo@YGf}=ʚ[m/ [ }S%_xuj@PvFN"դ_dm?y'%zDpω];h\=}"j9?ȹu$naKM.>qBToi 0)RY/PW=9H[i[͹`vDBb'@;Ȕ!7H~*@i W>RW@V(z%c5  oO/-?Eʴi*F׌C-@U{j m޽ՙ+-1Cd6xi> H{Мvo#@[{ aap Uai/αxI,{Wr4y&P2?k\~)6RKŢ۹B `tP%0x (lFJ"c">aT8wY.f-*ߒ(;xBl`0LP(::2_r<7le, * *[pgS;r d 1a?!V&W*)s@qq[ӝSkUU9#ۺ|<@9nvz}NN"`9?dM GPw˔hY A?QSX)RV^'Gu+ncY_}ѵr>eJi9Lx#جzKk ^_Ҥ\y`"w<|񵠂_x\7ˍ6 Y|OFT_w[}4M6G[}τҹah7_PUIRjqssxn5~}'ʦo)6j2PHhв@^$H42 ͭd?G;ѡFbCP>&wR$YK~ T:DB7ǿ!? ޿LJ޻lxw%wX7q5ET:vqk" b毚wf\/^@G7MT$jc~ RHs:89'uM)i݌)6O>"44K{ػpiExa`^a>ȔVu sw:(o$P#&NAS,*" ".GiQ|00b \,\d@Ÿ/ѝi6I5 r_( 41Y Ѷ3d(37Ib݁]C'0VeQJӞiEs(8^ ilȿe+" YwXrM|#@y ˻Iap0U,Bv@@3*j7ԇ?LpkI*rpN ֏E2a 2ad$=R$9C' H;"SEun _xX0q5;'d: OQe=yh9aBh;QFNZWrr)&O\=ʵ/İ3K::&ވP-GJTYo:cѬ~v&?,G .fnlq0`߈HFddT~4N@ȷ̹pY3< [!-}2NqꞿpH0bP}?&fN=ĩ:\ H)evt ;0ŐPz<ͤ0x|2$zu5! +;zٝbo$>'Y^hwM:@_%+BLrRv`6H)Ǟ ΆxB-uz#8e,; Lp=J˻WijSV#4(S7. rRI(l,6O( 8UfZ~1,JKS>)hb)rlX!(`c;s)́NbMOZiFZ*Vc:6`ERlg%6q/G1>ۏs!c@#[\Eg@kkjSN#ڃJ@d -Oq.wg 撸c!]&+SezQۼ 3pNÑstTarHqoVx%D>E-H\~㽰MA:s]_Q|,/휶R;Y0Iʏ)zp;]6Ec_t-: 7g< R{on(dWcd_7CBIz{i:9 nJѥ} Rs&;ݾ)}a6l9w @[YV6^ܭVWoH=hD|Տ FOa{|E%\;O8[JJᕫG)'% ؔIv*͙s>}1)K>Xٴ\N[Sh!T26z$Z i_$6sfi 9K:x[|e-H2U[$H..S39Y6%ҲU'=ۧDvck2'~MãpV{qN"Gŧ܇T)lW` &bc~iq.4 L 8k7 2=C1G?5ع_Wv^6 2><?{v4S1|P-i~[9 _pԉMQO9:@RwzdC6Y n팔CxRB@|/NGtw ־ dWINZW"w#[KqRpoһTr h[΅M *CЄ%ßW4Bbb'k/b@ʒ׬⇌nl EDLC ?)c w.*uvȃ#zh4v` ԋ19VrےE3ոX*!|$׸-ꦏ̠#97m+$V7Qb8PM'g{9ˆdͽ&e#|yP qq8_ϧRWYZ,[r6!U3T%&(˒bkܝ?/gt djpjS'\cYד7QF E3r_74JrI&`t26UUKzg )Fq-?j$dN r`m%AY VFk;W ȧ=HŒro2aa?ڍ9+X˔ ]rIVU3cd4)\퓷S q {b%q3xٙ5]Ih)E7jcAxf֠.%O"Mԫhu$ta%9]ϸ QƖódtFw@5zbE; iPMyndHu G:X_d,jZ@Kow/K ۦ{X ,.`VmQhD$h~A_7qXQ]QO g8bxl-8]4&T? `#͟_jw叉U&=-|pN*Zhג%PkHJ=@+g,ޜ`YBO:?}F=пPȡTb|ɯ F7A%^eN󯸯;QIw,M%+smu&<{FĬg!Z9$sòVy`~ocPyU+')z~D3RRWj`/E-HIjָUAxRB&LƏ3ܰVո`Pͅu$6exI]bf1H'aۙ(Zku/c'F+6lؚ2o8Yf2ݲBIe±?xGQB3էBtr{E`In:>5r4XYK(!]{{K2eh<Tz]')142})룶7k[Ex&3HO4LpJ}Akfu)u:S>1ϐ=`:bd\nI(7a٪^*k 6Uk&sa2$uVGN^ z8Im;urO" Uڵq;|.Sg؅<1t U7]Gx8t2iv cė +%I";_Y0PK|k{ay"¾By=يP,K`RmoQl#.R1kꥯNģOЪ"ٰ5!Kp=+h.:"gmP{%Oѫ0H wmg#4:#(xܢq'C6;EBɍ ,[!R ƹ,i(x@(Lrx3)$ GzhRȑ( ig5_2nXV;!=`t[L t|\Bp]4^ly&K.H$+0>%bciՀ*mpufA<Zq&Ύ)87ntwZZnpѼBNG!BL)ſjuCV'0D?JyF=di^w4_SyORkp. •MCwwnoefTF6ePS}yib8м5s?A03/1K $c v̀,ҐWc3΋/? £=*p7!z<^ [L3aCi YV亾6Aob+=l;+ПmY1r H X$=bɘS>_ RAT>~p3/_/ a##1Y6ӶaLBЙVOFL=4H>u\mB[IJ(& Qy=41BȞrD)SPTsA\ ѝlBDC7"!{NX /DV0̀א- X3/8ʀMj~,i!uCqj}+~u]MM[ WwIH}K@>՚+t}J TM4IH.Ë?oQOׄZŘAɂRB&2f`u5=435A\*PJ;6$zr+ ^m {E/q[ې lYqfs) ,~3' [c\/ CmF|%%03yxx9QM[;DN ,R{ATFp\/XTEԯ(H+H9> x(5~3 j2>6OkD#Sx:e-H /8э pxO*w_?P-JN< cIZrhn.|')="sQsj.5mSw4U=<"\'% F+[,"kp]ߺ0[VŎh͊- a2깬IM&țc6Fl];N01BJDvPdQ{zt˗OS(T+ӹRS3\+3b^:e8O{Uh}#*]ɱ"1ۃ^hl]͓ @“4*:jbk8s%|S#',nLӇoe$^x YQ1Ց ;,p9u81hּБ 8Ϭ$o%͕1ɭlY, |!3$} (BdUgדh#.TLc>̀4>\މd-1}vxP_G "(I̙{pI:*}'$d@/65"INɖ'؈|R'bE4:~ U`fhC|4Aw:XmN3X6 ď="!X)50q*O9]av:'Qm2ݢ GͱlE鳖%%W Z^qQ-(bzs{]*8aƉap9պ@ )OP6;1ߑ7A8s6TD3<?vi7~_ﶼ\ j@BVbJG 3K}~dְ^2 -Z4qlVL?|@B׍^w> E;ђ^W+SvK4Z(b=< ޘE]~lW~|NՊ?*Ֆj*x Q4~[dFr}n2 Qm{@佄KeTD|/r@NEx#`;/ W,Аrc2}S::Uc0DK`;ggP OԅpE?/ W-4a}xL{E:s|!MHՊӪp9?uP=EkT6( T9?uhP2[Pʹc0( 3'-_B\cm{lȕ~"6Z4dU7'#mt=3hɆ F)r=vl=[}1r{,il{U;a 0kʔVT%4]; `+7oڒw?/ 2+ihɝuuu=T'7=ȌqRJl[BdIdBMh}i])2-;HL)Щ1 ;pe7 /\&ooQ!}~wöܿTpϸPfe䏞>4 ܢ-Ywz*!S/﹏+Wk}%z 8gU!Z8V+] ް0j9F`H{rZyk̺?# 4!+ rU]0}I"<|([>q'tVl{^׾իYXZ+I6&-*_J1e:nXY_;?O'Г +$b xx/Kn-!Ri6ai;\0CYEbY̳.<QֶO $tQ>KJNN4;eBZNR5 <^g]4f@|=tp^w>o[P/6G0 q<3=SSc`WC(M>Z2@(=>& L t\B :8'ʼmY'X N%u2|ҰȒ/ s=!wa&EA=i7Y^/Rט,DC Dt ӟei8)),!Z0REi)vENXJ5/WKW|ʞNIe,MƘmq\hZ, W%[lC|9[րi;]|L+j7zrBQ[T*%rtW\}Dx:I{S-e1徹NP=)4uw5~*gZ9Hbv6в_}\Un`%v&X”pqE_K`Typ-hY84ok-Wdٻ}::fd.~'[gbmR0"u ( VFpкf. @r łRgɢ2! ץr< TS?X4 ̀L1RF}l;NN_a~)ShFPyy%%zf3bYZܮчVF[Tlң3F6{=V`Z&n8tRY;AF ˑI0=oURǪ?Q NrH͡C4GTSŧnx]fin68WtIk,' p[]}?`ClV_}*3psC5c܌Рs޻MX yO"T봇\G3_ª,ɳ6 +qSN;"B翂+gh٢L/fXYo+:l^xeyB+ĆK[(K8H!FT꺔[ԜnRݮ_NOtݫ. yMkEG(+H4[-_*Q Qci@c[F$_E},e{ :xT?h˲666!7`Hqp1Tksٳ_ݐNS GO' E((!6Q 9Cʴ;6RE$`f lTR]v˯$料V ]w.[ܳ'_>UfgTFE˹T&gt[QORyީ0ƎJ̉S3Û8mcz/8E@#Sq*"nɲ8"ڵ.|%i95>uǚfv?KGj օy[XJw߅;I4+#5dh nbR_LV)zT~͚rPl󽱋iMy\?ͳ2!:6ΉKL&#E4,[}Vap~ CFUagQIG.L)僋 փ9wсzr ;nL QUYHU¬2+In ]?۰'}G>b{pwk ?~W~ ׍|L8oFZ gA 琛D(q=TᎳsz- щ5gntJ%dNvٜ,.Z pU;<;[tA04q.PzCgGlc P_AڌRis̜JXdR}1͑GS`<\A4u `S)M Lwfb2=(9є z bJ, 9iԐi\5L: IhAxd=xZ>qd #R"8ijfČB]%!ɮ.*e2L"`􉠖"Ƶ/4UY4*1%d#9ƫx8iM~nG ;D..)yH \vZ,ՄAaMqaF݂ހKZ\TVj][-ˍYWG3k ߤ3J}DVg}:A& [%Ux# uFnijA_Rgѡr m;ʈNc])&u})Qs׾Ui2g=_]ZJՈR*ѲyaO* a*ZGy &QŦ̀H4)cf&':(!4q1^mM؄44]݄1ƙ Hh]"Y0pfN.n?a% MdZ +% Rދna0N$lX~crǴʴDezNٯ y#IMt^mËACp|\mS5kMq(@Q 98u6$&$A8~=`/#4 9@}ZkpP75nKb}fb^M*_7lUyջxsK {/qcxE7ULJ焘.7 a0#kiȂQz)ϔ.Y-PQဍ)Ye"\>@E%nJ-]>BAGح -kYWi!e:WKޫ/EM>Mtꫬ\ II8yڰR!_gzZr'jݙZ,t(;`$ k3s3swة=/ jz[w^9oFZ&mZCqO@dF*˻򥧍\LFح_j)f|I<tRA&S8N @9K-7&G7Q8aLv켣$9Ӓ3L9|L}DKMgQwRhT$':u n%:ެM?6E+^l8λr>S'ת$_Q˫aR"yx.%?!A[DS0`sIr_޿qfH~nWZ pO։=vu{O](AaΩRM/sOj16[d@vwfI?O /^g_DTղ6sHhF+9촑.<9ų 61CV⼚TRջ92@+).+>:Y#wB.4R>S] #tHC 9n 9XS먃i1Tr_C g x Ecư\PIʹ%1ƭȴV!zM@_5@dIzD-;;ȧY=z;~RFݬϾlmu߾GZ*OTYՋ4af<(E)HB#fҁv TtyzQKT p+%ڬF&5Fgvi=vdÀ]!`WMcXҁlqKX; NjZ_Thv1J0$Dh mܠcK5 A}{u88d\./22Sf UvP7rY_,,'{ZhIxl)OuH7Kfٛf Xʥ͹nVF8NbuI;$kTbN[!?Q2pߖ(g+nG遞1Z_1I+zNjvAA`5<Rͽ:rpfͰRmcjcέE H^絨_3؋~rԋ>0@,m/v(Qz>WDda=A[+ lu\OԂN禄#'c`w!)QFñe!7wE3 Njӂz :]p:)%q:MFTЧ/`4T$(!~˥rG[- j֦4_@ъH~~Ǯԕ QaFO& fHXJ\1e݁ԒGʉ_@`8{ ӸЖ? NR梇ǻ K-Ꮊz!c:q2 kM9/+x{> *&B+5}Nz]_**DxdoX>^/91`L2gƌߝ;HtZ_b6%F- 3UDQ&]xq߄#V6?|_ alAjI"+>)R?7,O` G}N_˶EG6s *`9 ohs(]0Dif&*T^z'dZMōF<ު `M($v:JxG4 QiXbh1d{O2&[6a4M￱![$grVh1| a "X %()@1AybID:= HWJζQ}31D-u nfpsPN;!ʶgb(2|iN-G;eV(i"f`ͼBWhOTvJ$6GocdSgť\60\]^-NW6ך32_ B+HV26_f-j^ҍ"^ֺE_z;;ͭ iova{oNĤBp%pk)oFv߰HlSQwJ(RixmَVaIAbpǥȺjYq:!d#_b_y?I$kH=/Ct)bY/G4ء?l&)]#۾Zb:E8N !}:܋s N"G>Ɖ̟Q:VVDu:ǩgiuAQ_5̢-8CV2[wZ0>)C]D9WHf^i[/d%Wr[۶zx5j3+DYѹI8袬:Qd+-stX/ae]LTԥWm 65|h4$]K 2$8]Ԕ q@TCc.:)rJ6ʆ6WAL%ՌK6F3qKNp-!dJRu6KRn%t`D,Obdʞ W(" v%1pB;%o͠CjWU)_o.sâV?#M pE*sA" 1p Ã!V8cG%d.:"Sp%H(z f4˲}z,jgϔoqCEkf&X]ѫ~i3-}\pWJ'K\gso5"<?Iőy&az`Y?$d¤68ILթv6R Jx(}>&mNXŮI9ct`.uRyԙ.ƃѰ-!Z== "Gi5"ȫ!]钭:MB~^otasO£tD;hWiq <4II\q9BD;^~Qwt'7"!*?LBER8`$uωnK6~z;ޟy]Z&JjiQf*fPrm(k۷:D(9 q@;rkpHY x/Z9TΡ@((W3Ob7G<.?pWؠH(䜱JGo=85+ZT1/]֦R</ԥ Ra+)j1^.͑GH!8l] svqMmp#LGD?`*0FLʙ֌<{P"F"V~ᡰ!jr9W"dE T#K%W3zT v7"#x=Re:14Փb-z;;lzm8Sr!LPU_ |2̻ځwi,E5mqV0FAÕ!}ݳDՠvǗ]y*h|? Y\X^D},,im2sPFVY;T|.B]O:~M0 |?fƙB-*YomPjTTy{W4:c@/BkP' sJpQծҽȌD@$oâɴ')G}^$ ``o9C35prU~"^@ (5bk'0a5݊{IF}oM?IE 3&Y5OCV'·mmF /)7XYX k(YM0‰.pE:iT,S?D3 :K( ?Ev=164믹"777k~47{W Jyg><9F( |lURU{Hm\uIaP B'X`t |RcA`bnű~3sSlv 'U/@#£J3E^ GT։^(c2[8۩?x錼ݡޜ!L9)23;AkW Kƹ=p,\9Cy/ kτMuxꠞPUs]j .S*x!G-pryO>NI.#XjX:O*%]AL#Ҫ= >/Y˞١ԑ '|ٻc|?@|͙<\R)`ġjǸVX4l1gR:̏ZgzPnWʟ?YZ<鎤+#+ z0J:!6^VG"-qIt0τ/0dE;uΡυ/SYF *[zT)ef KtI(+[eV"Q8)!8J2N'F{B;HG]XR-Hq\ 5]? o 52WQZAݨ!c^/f {In,Grφ0NʼnDMb7 yT[zMC!yY!idzܭxkaA+ [6My7x<~ʹv-=s~o$wZ&<$_u7TT.>mM`C .yQQW~v SL´+ ړt]λ@6+t F@tًs,heH~1%>P-;@"X $LKz?ְBDtvn܀u-@|T\n&Z>:06* ( 8`R:VP-qf[=duY?wYJM$I*ґFn}RH2|8d oy[~.Bi!(??f\v7 #|'ADİɌShߗf!hZ-}+j}&љ\_B㝝6 b`3 40 z])1w3,:$b_ZĢz [\f( <5H'1B$~4=xIH4(~{ۊ[v8Ϗ1:x'GyMnZ$VjiT2tJԍB"yTü-v|Np!azsExp4}#RbŠF,#gkꆄ׉`h'`ŏD0_e}W˺f%&?ϖnܲ װOfb's dTϖBEiU0_\ďgy'iuI1pAi1C.΄rH[.— IVl*^Pfu!f(VJp=},;a7G7bXcƂ=||L;Q^vWPT~<ai YN'1Ɇ[90)^Qx-ঐ$%b:Eзrč|]D;c7MmZbڟ"x8?\mwEBp ytg@j_d J} ˈBX50@LᱡQ|cIbYlr.~dʡМ6l/&c3U@"Q`V^~"ӭlQ N}[`/6j'%ͺEұocIVE>' "~yC@/3+{zW׹?No%"fP> ,xɱAXpixE\BƠ17hrG0WA)!ƍhzssx96!NSܹZ)Nr޵FT溺1@l׷Fj Gpt v1Krq L:5hCcHpy枨4%H!Mp]?mSz'w?5̲Nsf厱/))Ѱh# \L Cq߳uțQ`W?&:⺭6 ]e@.ݮ{E9M]$/֡_@-];+X^@joh MF𪚩,E_5%bJJG< ’$֑ϝ6ya:K1K8e QK|m<kرЗS t kSXy鹑ˊYȧz]s?[z>PZsq^|cqh4h/&6nzMϊҕlW+ZlL59S6`mϻ6@xqUgsۗi)H 3zkaKwtB3UKZ[PxPv#4k&N@ gz+tvL]Lw؊`6T\^Γ}t:&"( kK4bKPNKxJvz0GmǤZj(ʹdj;nM1(t~+[~煃r&f:$\}Y[E<^19̾c<v0\]UP̍>@-G-XS cK?. \,_YP؍?uR |nHAlQd:A\2iښ5QKWٜaDEz~FLM-p,K㧍@zEmA|V싪n>D*Nhtu>OM.ģzO|XM i!F(M"dF&1n̕;*U=ԇh<Qzq`Y^ep۷4Z_;%^gE7G(NF,uv1ulhqC28 4 "lA.*ש9b$ۯ-mtMoz)ޘA;u{_,qD˱rO`qe~oeҷ fv:+Kbה ,%CbVEYh ISRtCPTE/HfTOŋ!!u/rrZq#K\S鼓 R8mj? ;ec_Q*P r! h\ 5I{r0(-BDB^(ax)|x<_(Y XУ0R-jRIMH pqVDlB̸,~?Sda?(\ D <  &ꦛa_/ƕS-aHH^}0YNdD!k߯gDY?n'r.Z"]=R2:J O6Adn!#FȜyԴ_G]{Y)oYL˞<`룣ut6]?GK忏t*ȡTpF/򺔪!JrN;%(+L8yXrk`5CP~"FcB|"nza“sc%j:7-bjBξ~W\Cnho&CG(> jǩw:V]L~(%4hf7/(Iiiz.oc*-Xhi`۪IdL|eqlĂąp"M=n3qnwTi8I!ϰ[.Af>{S%B1aMC!<'KhZ+F@A7)B鴴z,a.y,uS{ڪCX79U%^ok yEރBR 2ٔ}#T\8d>#s=*Au ,Ds.c4P@+ m0pim1֘ZI{";J*J8dcʙ,^)l7\>5 sG̍rNf&CRwuB*AŮL$]sbd;>@K]1@7ۏ#E%5ۇ cD>Zz7{. } շYR7Q!y +F;Uk!5as=?_@K(VmX@BDS~Mo\c2{֯#5g cX1+-x7K'h7Myh / ݂frwE`8t=bOcUO\ɒJ}>$&qnE˚anD|s< {oh/L:n@xtVWF/u>Qn~Dz. !LTEṞ!u9fŰ]QI&S G_,vO?v F]Omt]Ve[Z $q=sd:}m#E$r x ekeT \Tڏ?=r}eTUQ p7r۫hD)*҇Ow,SRl?HmO$i[lݏT>;+.\L/˨Vl7j)R&gYY5;*v!u:%-.zsO@6;Fr[YRw@algfPӂg^.A1:GӭHpKEI>1/gld%穽<~]Ik~QS_3A#QdD`jԞgw.wm9Jm^cu8 j%ȧOյYNN 1j?t'Uu0v0p7 A[#0/1,HoG&ZURk}KF" ]2˹*\]YޟMOihuϒgyt9bוr$]x0~M`i( %g-FA-jp9k8$&M7>wTG,q0x0հF"y|͒,qա4u\){orŋd_˳ЙbFailb:Z3M|ߜb4Vj\ lEq*^Ҫ8F.fŽ-c0 ˌXY\)\A3Hi&H5|0XIac}O|}Z ;pؠg3=Zf{wyEגc&m?kš/m<2DV&?9뺘?ֵ~<]ʨjESXRyӱd@pRc +UCsk$/U*El O×C.$R0&-٤.kOp/Dm,l ֻ/lMPHiO캅Xty1hF(3KfWYf!ɂD##6 RaC\: 6AVvybqI R&\u^GC1DvOﯱlp{i y(ȢR$B^T2d}õZ*blј4*\sL/,Qq_ Wm]t@u 0ڙ4X!֛e]1廼Ι 0p#$<jDtL!:Nfx\ o J<{0.duPSYn ޼ xQj!0"wz~BnIbw;Y$s$6Y UqJaUa;Eza&&:n65~4K(qɡa><cE$A/}G" ;]m7FLIk胼%aadqՌdJcUdA2}]@()b )TOmw/QhDx$u/wȇaU[Y V3+0T׏ Ӟ.ھyGR7mlP#h0-oK)C=zd)=Q ZE%w\rE%vԡɄ.C5B^6ԭNv1e}=ۃIUPՁ;7hp$ aՆ|sVߟ(\w?*+WAT9t@  wCȺ2̝ƠDCG̵\7?h P!0k 'Թ_'p y@|#qEv<<@KvXԯsillj2E*.R5˩HrJ  6W+#멥k9ȸeHjE+ԓ yh[;-p5[5.g?9vNX$4%~*ea!SIlc?~%؛] L&u[-V;4{.A:_bMg7rAM/ۑ."IFS7Z{ys\ˠ|>UrM6\O[u2~:S۾3ݝq@AAjx6x{0d2CWIa6'' Gԩx%4bbrж o\ kjp&dmW88kFj/㽎ZMy#TmB>4O۳'1=dċC{\=1^-<#v8[;:áĜW%YF^r*%\ctq+2ABu!$KH=12y{-9wX)jP4&2.;Z"~!fIDuaRc0GIv.IT$]k8qmqmj*Iq_d.,hZ0awz^HuXZX=[k($eѝB;^ -bI~^n,ɌVR;.Յ"<ϣ;ѼfL]<@-^;}6O+}^S|ܑlAfk_r{S%$o9=Xwbhl9oYLz )YUM=]ƣ៯s&6h7MUc3Ks#Jn'#a4|1ԙH ",QmI喌}*#"$h${ZDɴ!DF&LCsZZߟprT?{y)3}:tn&C ,U5yYYz"E:FiO~-+81V:i2,daB_,J̿]ՋaPթM0^̰/6fC։a&Tidwⶭ>9P}{rˇa\=HޥLHY{'rM<:ʦ 1[P孄s)S70lP)VSʗJSlb#t,=\x0Äyb:;+rBG``}<]jˮ/*s.drǭ2o:FeO ion{@ELЇU!J#dT{Z-<6Pclpd?ٝsoP^GjoR_-4vAZт"H2y]5;g>$>f?Ji%~d~t=sT|)st^O)ߠlul~{#˹ fr 3p 6XGS\t(Z, U6# 5G*AAη>^o+*|]T=Qn==|,> A eدs&wir9Lu/sЉQDL% B hCTFÿ܆ U%U~'Pv̤k.$Mtk^sLIPc:![@9NlWp~)7.0(3U+$.t ݃.>!B~ha7XwM57oM[[A^CW?1m; ΜPv{87,Qɲ?@$Nx6sxXԌ)1lr6ƪ޺c^QJl'QY^^K_Md10vx[h/ vVUsWUK`)1Zn׮&sg;|ȝQG 0t[`En ͕[{˩ <\) 1|s Tj>Z{ пg wX\/t{k"/ztKX3ƋlPH-Zm"}<ݿv[zFYTL#fx=4k$ WF6WB] f9U.EP&zz-&~j9IHc?KT 8['HZ dl^!H~%hUxN"ߞL͞72j{Ecx[cXc`yMKfuvmGA׵aW6N&1,tpxeXo[r6U3\-ۧ;6h ִ'@mKsVgPkJPl,]Cu4֒ݳgQU,U u/D2!P^L Nr1 \v wպvԽGoAU*l XdPYRz?Jw^(HHPYw_gƷGkAzT;.? ]x)n3z5z1FGc\?KU*j1K1>@BER\ʢËǧë% .2mgrr󆟟]88UZ?oK錹4M*bf;(7ݛ:Ql^ò tfTha6((.yP8!T^)`5[w0~,ߟMz[nm?X64jr-fQkC/?2`sGvȏUeN6b+fcphGזTm{|o VgVʫm9䯪}ZeۮK (={@NmJ[JaPa ymy}aKswh0(&t7c6BEya_|noD@hL t _gmrY[U̽MLo!HWeR}Gw?b1xf h*} kLJV,]0(% ϫ?k(o<܇bԂ{UY?[}-c%^.Hmec]M,wd٭rYԆ?1B^06L$}dA$j\y2Iqȶq`ؠy ??{Sю+^R~1Om8+A8Npho*Rb~$WIYT.|̦mgSڂ[}=:zwy%ۅqg-}ƇsuS\&h2Wn7_p'6eu)ck?^}M LjSgg'ǃߪC^WCB JNd:A3_445t|5ڨ~L7M;sq<8Y޿OMP8XNZ~Ӕ N[/__ S~t|8|v+& r~\)vrv]G7k q0A'JES3:SfH(mɏX+u!z= V*zQM-BYO0%<:r/?cŽ]{(a(o]Μܓ>֏`TyK»/1mۼ;qp\tYAa(31/t?NGxT*2C]Ƌ.D@g/q!'^^ U,QsTJi4+t8<,Sb&*<gB7H`".7i0XӥQ 77yY8y’푑.()ĈΠ0e=, 2&޻"zPxYUT$:/n;(l!7z@ bh6 r1Z~5@LqV)M1T FV*V _ox7AoʣSjK~Üzʎ-Nһ{ãPKZLLx (com/sun/rowset/internal/XmlResolver.javaUT bnW[bnW[ux UQoF~WIWZ9KMb&A\/zofp3].'cXBe6 粔¡ (K2,hvye :aC, a\5faQW<0 BZHu@As SRLZgq4+|OӨ ,uq _Q%M)SEءR+ellsJJEQG2rX*J=0NM) $l0ut{6+pS5cr\mNf1 Q8!U5'9I؃BiZ(IQw=i ]`HVR7ż)@pk pqXO)p=9JF(܄mlx?n%5e^H%1) X!)ՓkO~w\h[ȴ` "xIXf<=nb&`\.GR/Jލ)VGl +8<9Ä 91:lDhpzo+ϡߍh?-6M/d~ տ؉5tMJ8ic5FWۗyL-ngGwrPTS9o ~,i^j;et}i $ =jJ2K??PKZL U0rب"com/sun/rowset/JdbcRowSetImpl.javaUT bnW[bnW[ux =ms6+pГREӻUFdd2$&e=w ɎG$X; h & 拔u.{]݃߉, g0dODH\ %\O9f7O/hxG,}E$^K?yB')y_ۏnjE|D~j, `uyuLY '>iX ?So'"=ء@a3~ #YIA[Qq|%,Hg Z$%p5iCk TG0حTDd Bq1ݸ4~!q !bm2B),M/KEX6§2@Mtq 7lЦ̂Av }k>+Ц-3HxO1DOr Ut( q#JTs7rj-RfE5I\`1 Oy 0[Fv`7 ̆R0#Vctqn4 7)[ǩ H!pB6qxbc=WyhVK9&*=7k`+т]>Mnxfqr }-T 2f>xy/wKVYX}6X(Ӗ[[ f83=xiOzaF9B˞d43t>{ued( !4k d15f, ;35piBaH~s C`([NNk?3l.qvv?A0*$87 ~oך+\N!Ok (|Sp  ! )TR-_Qoclx5~uq4W>xj40%D|Am󛦱E7'l2RCٰK1dGƨZS,4qHIN_grt~~|<8z?9`{ %u@wه8&p3&.f:RB V*&>X/MrB-w&/D>5=t.cz1=󘞉'gz#?nvYEUF?N&ߚ1O7ݖLM[ am__dj\ՃX,KР1X6@'=vT4TVT@>ƑqcikԇeIȞ a|V$g)KYU!kGlju56(Yɓe6b$ &TLA^ Y44Ls*(krFADLP̘HG.@BC嵐=f_ ZMApӶPhGXD-<'(AQ>Z0®(^J2ƍ.4w:9WInێz^B-χ(6 Nj3HqSjG`XA"ht!?\,8['|] -+̵W&O5N XYnNgŹn s:@C*&>J= 2OߍZT2؍ptUtSpYVOn8mQ:r cO6([D#<,IҊߔk~I)rW)G ZUr9UYN3gVe۫D..~ZKQ֐"@|LGKv`Ca?A{E-4AƣSG|;а0 d卭fMD$AOBtZ뻝e*wM9DNQCX;r7̍vU7K mNTu0m0U{/ ܮQyXYQEy$)y ymښ6~׭sXuv 8}3ԝ,fF3 ^;= ſրv,bJn(VyWrww;Xd^"Qu^bE13Q J`|CK[R|kmܡZOI@1y a>]MPcàuFݜ߲>rc1²l k%hb];kW" ]&TdMdNW[ޚ)Ēx@"T=]%F*,k.AQM51֘кrB:o,d 8.R eWS@Sт)8,ưG5#Rb|`E@Ur7 sN/xR='ʭ:}vDIS'L؜%!iH',٩dU{0pIKuGS䴒#|*9ݼ1ޝ2[DnX7*:/倶녁j;urX[eZ*)Pnrpe1%g+8J `w.Q赣SXgdڱR#MGq]`r<вTIGKӡµl=o}B E2#2vQBy%eI;e@z)\{x*Β_t6,wg]whz &PķL<}ڭ/Hhq:@Oi\zF~zהR6<2v4o7&-+wS6)/2nY%M]e OTI$lkTB\aMSFt4nmaTK_Mxg"mQqLYJ1)_K%`̋Ԁ2F a[ؾ"|7*^9a:IJo^`m<.(B.D1^KQs=b=7K -z@T+O"~V`A% N8B %gh^j/U@ZUϤP@hGJzwGtWl*)$\,Nf!_ oCq?&QŒ>3 qΨ`kkR~3[ƱYpץ~*+z~!:h. E\S53~.Dm^W}A8|`zzV$]\v z[tji;2?ߴEsQeRQє%n" 19?u;3Rsu7ȅYzڦDF" lfE_֪쎾$VZg l| Gg;0xp_np43 PA9iډP4(f`)ü.%Mхq<܀3X5T_~OT}tӷ-ၽ瓿wv( :hjĄ:0Y+5BoZ`FMPTauU(w݆oCji|=<9F7z U萧 U,VؠRcAJGF&]T%敋jWHo~(7xU ='i~uW?d s/GtP#@'x)㕈23 l8SǘT)^Q<s^&.GP`rRe8< *c:eFlpUȄ"7GA.Tc9uOn5@Z#}\֫~QD(՝zi#fUy4Su/*˪!i"~9o0(cA(oeDsvE> a>/`*wQȌ.:R",g<2,Y<8|y×t$ׯzGR]vsL A2z.uOTK'?\L-0D s[-M,%Š9O,P]T$jev "äa*ٝjѪjrw&iC!W9e][gW6MDήNNa(Q} -!۞onuޯ:3\0Pm# LC$_cqz3e,O9sr PoWUxRsK$Ϫ_=:1%-C̚f>{+X`śN!dGr\)Yy!7m]9Ƿql䟗 J\X_n" pA N~G`r9{j()yoFmB)+c:Qz;[ƍ]i)'C1+FP^FVtԢY?tm,T2yؤΌZ[-jbE{Bƺyt:ނavLnEӻBKxWOv!?@ouiwgh e#Z6| #`̥(Mt =qg0Y7><[2؊ XN)xg-# /97:wNAV/Ӑi<͌V ,~wt"c''~gǦ؀hҷ4&]R vMRf͖d53U:_x(cbF}ߏ.Ozt)f+v Iz24"RKwAQRy$kjX'ը 9Xo3Ӑ ^fq2$ViݷO.>$D*A*m78 } F~`„w*zf_ e󄹭D ILAFF^bw 92BZ9x=lvIsu{ԉpy2)u\3[\GZdiՠe|\t'r`u*?6 yo]p'KrJf-%9m(qvy@.::052|*vō1(-Q$ mB}=WubDcG*ٓMM#F>˃`y<a.F\Ćn 3E"WHFrE&asBGO$5U]ZvP`t&Vp4|OYAE{FK~w7/_(1][nJZ8; LyH["V( i] 8YؾN$,}Kx.Bfoi=2r&!\*Za{Sd^Kȕe@6o̽+\j݊yB xXfWЖ]o(fc%2zRPVwhLE<ʧ %mh2 攒TaZYH L.9<\D^I_F{Hlb #6ک5Ct5 T m[% 14>Ki/itk绺%ϑH# 9%[/n/r2:+̡EǰP}~IdьɄraPlL)\a zmmHEusflhHkCzڂ;(t5j Lx_[uctR/mӻxPX  J;ޟ+¸S<vFR)RdH b r4:̓tay0ҸX~"LfWKe|6 *I' G/]oJw:˘a>D,c^!UPu F$i H]K/Dm Oq~/:Ra#X ^O.{cpQrQ- 6Q/oXɔ S{00c`F:#j4cIzw<8qӯAxjlw$ M'"ztmMͧشh9` %AJ #kVs4Y-#5ecwħcO_!z-4d2O-7iirCh`[0lwMI׭0#M>bpFge=iJ˙Va98')[|&KY:Bqc ؽ^ Xbb!JVO Cۜ\3t%|}!ړr/ĉ\8 35Ww1 7[XWe/F^}^Fɔv(.#/(Xsl qJ# d);0NX:6tGR|'lvH7Q[Ʈ"V&bF+tyLsXe Bpqpx$eZ!DŎMRvͲV2 ͩ| +hяʇqz38tq-w8N-4 xOV+ n!|sbKtZ#MZҝ*&e/܃_`:3Z M9x9eTfUs"  pNK~?e2d=JN1Pyup^$C) R ȳb7 1tW+!m4I; Ǹu/80pN:Zfnр4{su?&җ=?>wl)ӷ9J1\e!1y8j۔blq)`Mb]?ˈy_f+Y&s@ ^>/64%/8$y$$#"q~{ \#8F<I/[Bv:=*RCZnHoHD'|.Oh8B}^DI~a:Jk5@Th-!$XlcDn-so WsA_ YoS("Dv1ŏ) Sn qfN)W3fX"lfVA@M:C cxn-Oo]xtyӻsj Nmubh܄||]M(=P -Դ=El]Mjm )P'fdvVqhu=4G `q, \OmY\qoSC&*5'׭ZMj)&U3F( j@_)Z?$J~).!\[26/QL{Ƀv V R[RX8};]ܹH hc|xqxy &>rn8ZͫvvfsՒGAvqnoXn1g}N S ^^|-/e,[wuPhѲoTyL_ْ֫1^u$uƗNQl؜(p 4hz+P)HD#ks?MB\h.Iwe]Y4^lLYnkoZ^A btSȌRs "P&$a$IMdbO*JAFAi9"v}}DvHcqUE7*x P%<h"˂ذͧbF_̏d0 WD+9$0ňS㪖0bϰ’ɕ<@po&:$ǀkp)+e6SӒI4'K)]-n{wB?԰O;ǾbB?!\3\w*%=;iRGM˔ !+PxQ$rX0و$mYSo/,;-@G(X%pM3oŜ2rA"YF U^pBE_q1KI:Ki`gh=㩴Z~M TD@9 6h͍#_Ed?(RHr#{ LTœxSx\τ F+x5ZB,PT4*cJkHbe`"ƎԖpqPVNQ(,S],\):DT+؊EM9 hYy[#{RI@,(G٘stո7ϚcWPR y]q6";p;z ZH)JZcՃP" SjrU?W$ֿ ?_l\Δ`ET+sUWM4؜f\ lHm ?lA푒+Ԏ#`zA8A^E zs?ʫ+UO-dydO1| Y-~~Mk4V(hj$4je.k[D`ၦN]|H>?=::>Zޏ'j8Oo&#i;KeX/̵)3gQ47Q2Eh.)s :Kk}.TxHіhTMMƢ^qj|̢fԏԜe-NmN06BDPT}9ȳ.z4%jxH7,xM-I: U/o {=j9&f2piP$AH *E}*wIȝ 4`Mw4u_+|s?ZȶL619Is V ?Kd[uG*` l ~Bi *m,mD #WmȭJ62Ѥi{[x*FD=֗ȷLz+0NV,nn3ODw+P"/er)oMeA]q]9ds4`[ڤ G3.!A? _jZ{=&cUGR&-狙սd~ m\s4[zL(H4>t޳ؾ{0%ߠpe( \w< P+`_oP-#.!m ,3 $vy,%-rjU =?K#NgbnH+` '#1Nzuك+{#a{>}}r ىX `="Jl7PzY][3Lq/ ZG1hJOnoL$,B!}. wy_/ |4g{q$PmRz}Q NC, YXeE!a_^ U{<iKha*B}%WՐg\F]%OlU^0rd7 F7g劦/:0 h&7w8B4Q([b#e7<3A+X'۳S}ꓗ+Lϟli k&Gi4Y!|eڭr?\Jg9_dh%k)E7wN7ʭQCEmx 9RU<cF3I0B6vy*&7\6U[K@4z%QDG~DErY+ 9#cslFt'i0Cwd- f]Gl7'hthK^` ^%8cWs A#tw`B8< /jffQ9 먂. 8i/ll"7W;@qa#'.N>^tw;3D1H)s;p:\s#5:ϲn]ٰ\tcd ni }͚˔3lg*23'ґPȵn)k@eX)r~Ɵ"uc|u2:XO$WVRh͑|0Y>wPRF3,X,lOCۦg3XFL1l1 -GX?rr+ %Fw-km L-@* "_D4akgcbҙ \Y r3s &H GCo($ha8cc#zOoE$-e&y8!9.hh}T*<^Ɵ٬t" *aB׫ZhFimc)!c]8āyae\NTuuE8.yK~E߅l wN[7Z.wԮڐbAo O`Tr. ⤥G^u'JXE @5-{Bc[esD8cz>2xJRR4\؉ 7A`[= ؔ}smIg֜? aE " şlyX70Gf%`_*YW|MpN"(SօOaj8b;PgTɦ"2aɈ<b`gm3xM\)/bDx5Erh>e͗C]2l?ڇ\X',jqʒL=6)5ʏJ3r5V^fEη]-}?bth;y 9ēZB S0!cb2pI@ 2ejBq`$\E8bbu(Fi旬|\# ,Øo=`v8 ѡ8g 5 ƺNa} X7%10MaTyMju;Ho cz1_K$ؙ?N*p,3$6D=&Gfnq# r.ҤTF@oЯ}\.@u+[L|ا(Rceg:BTjm0yJ-YE'R z)WJ=& eʫlVb越\./դW\C X? d[XJ,Q0AE  WD“wS>Z6-] 빳̲TiZ\o&&)՝S9{M3jd&IEJ̾ߛ49ץZ|yȶ͹!gW5udWȶ7z[tcKoV1WB{2 1FFa}/ey<~8>m~ݒLQbAA`8l#ܙ˦hepHTϑj jKG=du;;}e_[ݹE)3Wh8TB9b$ʦb8`a/FаCAeKZb`Gm6`4l.Vy_c Lg-ko46 V3bLLh&C<4ĐTC 6v&EGѱC4iBRo: _AƱHR9-PWM< IY`s`ҫ~R}ˉ60.˨-QfYeWiկh6\BYQēHb\(K/^NQәꌉ L$[^39_?'Ł}s#O]vXЈyNq'岉IǩGRn5r)KՕ1L $2Z/bEx_ɑ{&ѯ+)>PEpMerUsµ܊B]pat@GؐS&H+PQF-]]Sƙ߰ 2-6m.CAhEM`mZnklӛT^զxx;[LFN<-w\:fQ*tђT^զ:^mŪޜR K {=0冷YʮanC[)wQ=] |epܟ,hh_!&&l=؛ZYSni Ъb wca W@af ި!Ωp >ׄ>ҟAE|O~1`Q#"EH^ EXś9p *W7Z!E_11iyd C*ߦ9 XrZ3eJ(]Wb̉O٤AK+CtI\j=RSҕWo8P %?uX IK_;")49/~>*xsx%7WQKf Ɖ0wxjh _ -.r]#c9h ._dY/~f@3tf_c23Wbl_e, A<TnvkcJB Gs22U3Az% -qAVe@FG Ӵ7D 'G׷5g Oxu%^RqXN}`"$Jzxy8f7s+ og+O3}CFVzhzPnoXPa*5N^O@]-s(Gx5H'(Zww Wi)\+#/FƋZzW_9 ͓FX_|qIf ,5zKpG4OM˜v ;pQW\jZsΗ/^Ď.'-ٸA4#_6<xJȡT!M^4-^;*1uWDcC± ]{j5jzZc6;#MUd6&pZ6ӛiNb"u ЬjYD-{shcV>k^ݱ #G|AIH`]3p@\^}I}B2EW&8,iK*U;Z,Yͧ&eȜ[} E&ٲ}8X.K]덿1Vٗ֠!Laܐ p&S|:7T5;:3^8YCuNff݌2(^$UعK+@k@_%}&*pRt Sy\MVqkڐ^xq6:C5X=j&ւnTE馟]W$T Bކp L l4ox]RRP*/y빛;C"m\hؘZ̘T (?2v ^2ib=M3٨ ŧ"՞ZVdB9lҀ079fRJC~Âf=!D\dҡ}Z PSb@?޿.>pvuA#{MA^GWG n|q98}PaIO8 bK3Ju/£FWM\ͻ.D?1x.@?$6 Jc e VShI0$#PSƿ4ZeʽZ gCW,>A[:6Iӡ_<@5y"^2V5]WuR,=}oƸliKm:l E}uEo=B =wqT?t"YRzJL˂EoAb,˼d]doO^_֙ ,S )m(%EoGTmy:>»̌tE&WvQ5MImߊb %* 0Q^# x u?"/8]"u%A8MƑJD47G% %i-hx6`,Kt5yʫͱW-USYuV#=yYQMֹhhꝽ "q8!v5mj*DDti-+3 mĨ pt{1C}53*Hsϭ!؆s~:Rwe}F^S*$ j?Ď"&=ZA7ўy ]u` Lj&--כ6Z"fU7t >Oo #A[lK=ȄD˵)-B*UF649J~Ld4Vj,=#S>a-趸jh"*D ,ʣS̄Vtl#P넡dijI.8y}kűدrZY r[d37 i.cU0[`lerq ܥհ6xk&ʯXClRZ)r؊5͊k.AJ4,ksXt(L2K YE.p0%f&)χ2J?5F,+dZP'1Xc`ѝ~6_Djpj<^!O Eө'jAe~X rz?o)P6RԌ: qhGi=^d۴*]C kЙjr۬`:hrMU׭SȃzRZ1l PB>MB/OP"Jfߓ4 >G~q(o$?~&M{E1wY $,<"3\x14!8%4D8dW7\2pY13p'TԀx~\ SCÅ*ғ0|Q9tfW8CB y,64ZmWSU6eNEWݶ!]bKm]V0iP"}v lFFH+QGT|/ l.I>xI4hgxEUj"H; xd&3jY$Vb+Up*+%D'G?9LuRT&'-(SwِrBeDP:6kY|Bn X #L:*#,1 9I8 LypG f+]]L$QvMs4Y-#j+ y>d'U&'3j*f[(^Gxok]i4XBwq %kȳ2)J6HJDx7ݢc*3Un1R!-;Cb+U.D} Z[u(,PT;cbKS̐rMZ@uqH=B5{F2q*uZ8]uuDLO%S7v [][xm٨K@ 4aJVózLlK٭tŐjn!si`Kٛ68,:w:P"(;ìtw irGڝM[ۨ3z/r0#i\M5vK5RQ&fdXTݘ ;@af7{.O߇ '-d%cnLdd_n``Fc6Sv`u00QK rg4߇ײ4#eD/œA>Dg}Vn'F(ajcP`S2&XS} oKHcS'_Q}Bo0R q):A1 7OփYЈL Z!>byߞKFR 5{T{R< 7uŘ3]7J11+tb8:Oޢ.F jE^WE1Z 51Q>#S(+0޽la8).΍d X3 %4\y;G5UфʎVEۡjZQ% '!RuiK%wӀ*1SRΦ2mUQS'(rFܵ3ϳh%#XRFI·hunf=-Bl]uq?יt1S$ڨ\N@; T$2f)q<'b0+E۠@_dNX Dl-!$@sjsړz"bx;lѩ|i|*nUMK/h"TPyM ahw^ǎC-􍩖Ysv6⁙5 ;S8 g ?*F,aї#^j\Aūp ){p,H=ԶLjqʡ| BCoR Ԡ FXR`oE*EȣOnrNxYLuf& ^rtK]E~`vޣp|U*CsDcЌ&.V>h>xOTjvpvz.'1if:BqxԴFzXz!1nn(ЊPӸI'mqȤ Nb]MьW86yrG6=Ʊ%vW:,'BVg4)PI52KW"�syF"~@ί|}ܚ>wG":YWY;ΌN1f8hP\J\촚5sMEb:xiYwBnNڸh1B[J`N4g׀:Q~|ㆬϳHTΤ ai=,}/Y}ϿнNqu0`SavmTe< Ž2$hӘ̃ywPrTW:lנjjJ ?I`U`5585*/7ʂȀ-kh6gBjͮuj^V~N|)|!T"rHSXYR|gŌ^P(=2lAC`A#rkEQT e*s.*AʕdD1?|w۸߽\'2%G B\8;ywz1pĶX}^m2k vT CD*Qkߝ^yYee!| eyyiK/%7w>Y G&@ DC zy%ĭ7I+tKKh/6mN\tVkTӃ4ǡ^z%HV7tJ6ŷ?h/;䁹/?Z{(Kg/t -0}˒*I^m }/saQPkn(*o 1"p7X8*܂_>D~u"#G ku396'8_ ǧ5C{-uv?=o[-ocy+5~w>Y$Cmm@wW&#֌0CRPZJ~hlmwQrV0| u#EYjUE1駰j!W x,/{C7sp@/^:E*Ag U@%3o_}՛0/Z=fNi `xXns#`TeجѷhF6Fm&V&Wot3WiGl@tq9^Te5ξ3{{+~|>\ӕҦF󱡸'Bٗ8C0Q#kKm"%Xr-)+gT *DvmAҫR*)x;&S)0ą)YEV JԱc7b"X~ujnTHW6oI/$6-$8=!=۪R Y;/)pS5a`;fV`O遛2fT'VẈWa8z)-м RY!evHk#zK(P"+P#E;aN4ȼ-TW|[WSNt=ix@I%IQ&^@CUtpRY^ ncy&e2[)C6u89U&OJ^L l0nȢ *+dzխN&3UIU  \0UBWrXnnDSSZGί(QX :-x-aG"3-e 0KgHPQv!،,/ gu2 q3Zg2be3H{.f6ROnD.L;щ} aՂrzI~?ʲA< DaQX=SX) {v\VA: a`$,'_ Ψ&7 'AxͶ$dkM@κ(YF.0D:B#\l[pk͘pRZ43 lFe 048a5[eHy<{ঋ\n>,z`v|yPחg'@NܲMP(-3eum2.fj]K"X-b/07861e3fU(B $^^I@>⿬vɕ~Aސ~;| QiGXo\-}{07G9rLN؂|{TTR*ʵr5íЗGȏQo]Wrؒ(bY'hq$0brA llh2bġvBW1`;өC#JWt Yf" C6]f-'2TFai | fhiQ뚋^mZ/ $$4pr#\+/Mx$왦Ip[p<]A|=@V>I"b1oGKkiYdð@ne;uY>^;}V[ Vzd#ffv/ 0$dܪe7ik1eS^.X۟[FTq z,\>0-DZlb/,(6.S =FbxܠRǿ2grU ޗepHieY5IR")͝Arf' !h% 7Pň& *cDΊ&*Yq&VY ϗ0"i"#vK5P͞p؇Ul$kvt ֐4 ~A+K7EE+(/s3-j]9jPI6C6O9> ƨռ̀$h"`۴wR!;I`>%}g:^g8_M?7: N>\]oZ:DBU`gkp.+sܤ03P<Y,BFBa{aΚ-"rui`N~*,d T*2e7D ٯm.fQ1QrjNOj Zk:_ /s7JW7X-GOw2u#au֪'V$lk-Hh~̋H5c j >+Q\c"tj}ezfzzW(tS)O]'l&*IjO*ĮYSNy&}8Ϯ w_]42$|ڌqXGC瑇e0=gW!/4ZKZcm<Й-o= >ܪ%l2T>X/RA8 KCb +A2@g~lx!00?O[% slH7< ޶`|Ny`u$>}!q)n 6Jhe({ 0AjGXCmB?[twy,o8R $beڤn>vGOI\;9Qpylmޤl<ٗ/hBx 6\,$&|u7[jX/0W&9>\u2jmG.i}7u=#P&dFerr{Ta>?rgqIM;<;ecyO7|=Eܟ_~Y/E]oDq@ACnx syxͷ3ߟPKZL>},com/sun/rowset/JdbcRowSetResourceBundle.javaUT bnW[bnW[ux X[s;~Wt R`;qj]> qYOO[bFB#i $ fKԷΛkmx\8h&-8?=hggmHLm@8 l>R0m])Y0riDnF0M;&0eWGIݔ_bnz׏?]{ӛ1] N9pVݚ~CMuFr\Rb'W)77K z?|gaL"rXqcVpZM%= l5ܒOqj4EPr+A"haƉ$ˆZO8՞\KfmgeFDSR.6RsR`EeƔ@]e-; RBgDu-03\Ont?%]|N& |Ń*$(܆7OAڐt؋ Ȋ.;d<{l #E= 1!-4m(l $U(JÕ),؊#.js`RG` vmX,/Xr|mWIԆ3<ԓbsT|+6m gg8{{zq m,9CCrӒycf cӵ) Dڶ N_:R9X KDZ##DBVKSA#BBa֖>2!MsK^v%O쑼\F6WkU7bћ'5:o*@eG@ˌ!u¤Q84Ns`$m MaWTSіx~d9FŊ?Y2똻Ia&V"K l4_>zA,W=?`H܇RbWmccQp?s+*˛mE}-8UFFt*ָJ#\nԮ齺_S-*й- ppbXZaߋʦ귥uZ3[<~eFuybm2ZU*~ [~4+)e߁S`{FcNL痉jjFĶ ^6>0OcYjˋ Et)ѯ]@2,It~ |],V-~ $`}kgoŻUWPKZLzCcYP'"com/sun/rowset/JoinRowSetImpl.javaUT bnW[bnW[ux }{wF3k*Lٹ#DI99ٔ R|GA%<'MU~ї~>_y ;ѓG2?~2x(&"J2$MJh/M#z QBLFHa${}(:<^9h z;8zue˽/89OhODN !2Vq!veqN*EU|LYdQDչ*Q(?]"Ni2^'c"EY$ʳt9\L%Qx}:}^P\{Hqm",CV S*/Ҹ2*qU9e9{m,HE2$]m$%cxq@+ s 'y>d L.aOF?|{i)ahOpuB0d6O"Ϊ%NG{^zup1H^Ȼ{G?<~ =b!!3S1 {a'8]L̘k,DRA.(6rXpIt_DZH@ "JgYCbO8ͳ3 uwdey5.\JI A6 Sq>)~y1eOGoGO?~_=視}7γ*di)>._ƠGbr8]~ER ]^rzy\Ł"g6$Ph4*16ΖHB}|x>>^F"e)/ˋ*5Gtoxdgף$-[.; *xg.?R4K؀`\LHL 23Y]dG屨>/$c!k[< Bu)@Pf*z7s^$eLE5CUЧWHu d% ?Lj.@CH!sҌ=sdd 7,@:`:O8Yc2zLacd]$E!qpH:_n 8EA"I;$qP"C(%H 4*&P,Aɼ4=ROƃnyv&ҥ~wG, $ BixVY)0QA?l9wVxf0oQwI@> ԙ3LGn`+Mqj}E[!'0(/\ Af1(K$8hr.M4FCs~L$fOccgy"y;iL{"|$81n=~8=PNP!}oenHU }E #Hy1{|l ʨ6 J EͰ8rY*Rq/|ufO*Ț5tFsZu 5\.cLClXpg =>Wcx#0<l^xȨvWw'H-O @/ XVG,/oʩ K+ whF|Ų7,Z s$B5ǎ 2ܓ<8S]S>+rk9nHcVlϚ%/;/,E` j Xވ ՝*Br; P|s>* \&-2M(q䋒}\H3]z*=]a") 4\ssȬF~{uN.<XQN>/ {v>9δ7j٩VGf7;E(ԛ$wglt3;Uȷ-\vP=l`}\"5xc7@coBG{ Ah=_dGTrH7{ZErk&|ڢrG'Օ[ `h%-K{2| ݖ1]`q6uG8oSc,;ƨ0EHXOIjO,Et4>u(yB8~aHN}KԢ?Pt Az@l _X_rz$4P-MxN3\Ch?!C=t<fTrogTl";uw͠/ b3g==sr9r9Bx={=q;>$yΏoҸ۰A֞4#PɧRYpkQvFΪsxiMa_?3|?_}U~i)G]H̡5)D߁_V2ebS{ ~3V@: /,%qШS⋕y OQa;j_iWhcM5܇VVhGjOV5N\,9)92mv5`GZ-<|[c7z4ōJ '/Gnm#ucs]S͵c6<~!`#iznr䈂dQ'؁Hs NMh\:kF^'eeOҫL7Yw8y*tʌ5Z1w4XO_vЪB2ZMa­k$##AIu;j/ҧ2adC}hy}zJVNW6()>4g"*ut亐6x֊* r t@j/ ߟiH+ްHm۷/Eے.\0,f #cyl",+rO7t~eE,AKp)W X OZ+qٸq{#0Z,9%E"FmD$1)g ;;bpGΖ>4W41 ZDay30{ tB.07_8_$S];:>![">w(nCCr{AAVyJφ~\k8410l=- 0䙈6']qrKs_;U[VU؉ *v mU .s$ENHe&4%.EP.?G~]%~-+D~v`k<@[ӔOSouj_>狂 fB--Y(EK%fj:}W49ӜQ}ΤAy%q?J;inBߏ9rC\``9Wėvo&KD%[iLQB,9Y]%%T1KƺB&5l՝X{:r:\B&Cyj0F" 0z'ҩ1s e^!恆_>DYѤcI42PI٥by𰡜-~IE\9U]Ɲx; 4{LR(Xs.r~>1T![<=DkUeM~/3i<~BHe1^Xe#1g:+"E(Ȼ8N ZVJӶ'ؙsi[\Z96K Sϗ(*$ R4feqvd?ǩM<Ί~ȞLhm4|d*9NmVQqނ,ԡ˳f0,B3-=Aai*:,Z$y ECFh6눯IoT~%bS綛utO3 Vi]Dw=` k嫓;.{bZ.Mqn^'#,+!|"z[S:_-t}%dj W!\5Fy[.\&v} KuԻeK7y-Ь ZK帗T6I(K#S*Uj"f-p]N9/6~ kMra^} v\a #WRFj\xxHRڕM\u 7( vir?Qռ./\./ g7 0ʋ.Ha4z4I8'j@VJ!E|gyM+llV2*D__rThSGqG¥|, fO47gጪ@% p?i܅TxIX@QyQg0$7$ɜX c# Nav5}@Ghai=3'U [RRL)E0ܮ E\ t[2,M`Y۸ m#!04{wT)WLŊeShZvAbO U1W]di` "4ԉNT+8k*ӹA84J| `-E6*5v(Olޱ FT񋸊@Q&;H)HB3}D&%0`k9g੯pwE_?%W@ީBX뱿;8Jʗx+RH)O)) YCe(eR2[,jo.،uo4T/DCâ@)/÷ "*Crk6)hL qԋ?8DjUɖzV-G +=Pacu΂Q}rk€֤q&,@=n2WeK!j6 (>-Oʭ:(t {#^gSH>YZqͿ?"QmFh1fo|$Uxya1uY.& jsCK K*=-ɢC?mB S~j>!.RyA.S~rڎF_cJc+\i^jmxGYoWìƀ5XVx@B :̲+5@|{d`@(Jx{q{cCMi:̼}Jخ9`9hr̿c~_4nw[moiS5Ә-q@/(μGLy(y~gLoa)\w3cvJd[+Job3>^Xjէe;ܦa$+Dqbx(m>;,2Q*f] d:ְ? =1d(xqМ1xQ=CqӝJNϟ=^gݍuo%5t:?Gϳ7ڈu0ْuz?8ON%|rSBW_ }&_5V胲-kQC[fvN\ʜGsZBvY}r NGޢy{Kj~\c fj{x`ᔟ _$<Ǹ6]5:>i䳛5tRh6ak7GiQ%4*1XQErܺc/^-u9ǫpZŝ&~tfD\ϻLڭ$glA>4n܄>s(y ew:z }\)|Os?tcܼMzߤMV4&[}V?x DvaK¤vptC#= ޿vjC?&:F0TKpg7jv?܂gQvﶶE g8}rBU]'E.`Rp :);;7#T2yy}z(_v u5ΗEPt}yDEO;u@^*Jɜjo=qMQǼ>\au.`VpNI_[Y=,sbrMbO-SC˱DN(Geux,\'&+=ǾtRj{%He|t)ÁvY.֑Nç?Օ׆ωQ)ֻT!?E.,Q=o2v B0D,g4t7{$]J$e( Qg;`]boY(X87fdm qMcKw\8b ,~ʕ=ۭSwIZe80/)AWdُ8?ϑM97$3 rU<~RZI1 9W<]6-MaN_@ 4yOUd^÷/^%)A g .2-VtRD©.Yp%UoI\XW~|pm|:S>V`z-+¤VRhdPS]KԄ}i'ZԥS[`܎noYSӥ{ձb !ĝ WɘW/250i@mFޱjѽ]IOU|x?_#g4C0ݯ_Bƶ^ ru"sàܑ)BU|.LM ⷓcɣq-M׭SGO ꥡowVScϛaٳkOkO^*zToVG¯YZ;'UTh=r"wjz,s $PG?ےW==Jرj_bkD5uv՜W-qag5; NyL4/o=W uk8EڍrqeIp l%Ias{^h]F\G7mByoG~ 2q ;Oz؀Y./r%??ӳZq5O[CR*~@7 *_pGT{,`U_?ĊBr!XF؞.ubûHBs"kRJuur@incd]GL"ڭbAy&ӄy\ݽ@2ص7~mxC5vyFulC7/ @3[i/|Qq GBTK2Z.bzt7N/[z%ʼn2Azv z.X;!"ݺ`HKdɒ>R2"SCmвGrwN8GâtدԯG7Iq\}LThEFɕ:.0rYB;wȺv ueպ' fk!څ .Ti%U3X ҙɇ0 w\R;R3iO|e.EJf#:VׯD6Qt_P ?_8k(;1 }xBļ,|lBqժ;#ezuJw#sCw Y_E$ʲ97U4]ǂx:v=ma(4`u.=(*4ű#eH@hU <1oY@ohtn*HwOU:T!tcuvkMIj @_!حQe%zvxttdܒV T# Z"JNQNY(4+ * E!JRQ*{m鵥U[HJ?7LW^y$s99}' s;cA{nk-P] {e2] 1˧ЬS|:vޗ&P䂗 GU.N0|wV)%߽xM J(r21q%&Ш%>xlQ8P9@`Fߞ>|M' SܓH(U fJ"80}+y8 3vSS/t?KTGzwLuv섊g^=(})O>w 7"E,]IUOsU86gu?)""F ¨s 2Ù%D0Od璼[d 6D'{G?);uybǥB|t<`=H6ơ 5xY;FNXN뗲 8\[8kg5Sa>umt ba]H괤֪w]1ǹVK>ҦP]ڲ#-,Xcp 3[ȇ5Vlv!WJHufےlHQ<{mOlmIG4"fL/wKmy#VGkU$zlJڒDOt|IڒD[[FLenɴ|%ӯ>XRݒZԖ$I4=%J>ȸwVbM]<Ô},Iӄ>&3m?XKm6O,ޫvc7ld2~d<-.MozAlIЭL &~='E3eZ;zʗ^1SIŷ퓱}w~pN+=PD]ɠI%k;?8l xͶeɛU$6]sW54‰YWoYZ8] qkk[YߣlչڳvOh7TjUэJ] ʫm]EU:|U L0U`@8ݱ}q0?4xb*1IQAr4gBj;/r~I (2) \ ofyZkTgSL|}jFq/a`tP#ܷԃaYRQƵ`-SBdYGњBnXc.,TT7Y){|XK-&x2ڸkU4ʤg=,OEc~LeC,du>ZUv( `Ҡ$:R܃`PUyoA.VccرKUYGLeXBDl.& YCs!>y g|G<]$iϗVE|0\cRU.!F^*BF\H)cV nd||.oKa=ka^ȮB,Sqv@@Qb,tq1Fs80s#4JBUĦ^sF`]4GH0%s$xRhѬlQA1,Ç zcIY:VuFBʹn%MsdrĹt;dk,W`'7|ӰdYZ+y7DoB'e+XTt!P\nىudF?è8-S-)nmn[3`˷>+S"1deߺmɏZj;kQ^[gE XtV8<-V+'7nءH a|$\6,)mG)xՓnѥO9Z nYэF-=XE5y;nWg2Σ)Hif deEֳ˾}* ڰmXl "%hpHvwoοzZ-_&UI1LӐ@q_4ܺ-ϚS1 a)ʛZ74f~*X2ЁB0#/TzZ높9vuM-$.?՛SF[M'z}ʳOa~7yWW(ɥLAh:nQ&%^Ktos`MIV_>m=USȕ.ުrZA+/yMd\]zzr٦铔7rJKQk2<5zZ01_y$gI_垬wH 8i!s%^a~o1̡q>x Gs ` ;wƮa}EQs~WV֚`vG/yj%ۑ;Ɏ>}Df,>ރ"Gfo uי1/UiЃzXխ٬Wx&2O4MRWqA?$긣a&EhQu8 5Ar%#j7iCA9;>$qu@ tȰ4ZKvy\u db§iM*05[ɘ>M+ӯJzet.2RfU,Pՙ~ چx {je3ڬIzXilBSϞ{@Rߥ Xy4WuÅ#ݮG{t6 qWK׮\;}G;]\\ǭiլboGޖG4aOnKW9`|oM˅1ż!t](.忌 &Ky4CCvptUN= {KUPٺs]cV?~55ӫ7/N@F Jy}c3g:D4;"#Qpt?2NwnݺodB^nS(/rO}࿉!"F隑m;0vtX1E§0_M@.HwСކHA_KSυH;mzX 8=}hu'wG0lX{%dL]]:)ِ^j%e3=U bQ;E¼(vȢ>iǃƐ H?GX{WcPu,tN~'MLiSшĜ-!)9*ܗ-؇u4;oPCT;+){(Cu2ݡn+ 3Ϩhsn,ozH̹`P=d n8kOF U#\fcѸ;5G"o$(>kl<M՟5b_X?IYex,?4Z:4=U|\S! Q9CJ@;1'X'A`0WeFR񲴅Q]\cH[]B]ft8=0M^kcj]:}_nO J^!^ȡ. w̰M~{=,^d]O frQǕoǑxɫokѠnE2yJ1n >=CksHƌZavtYF45 Kn ճD;APw;[ynF#6*w# }F^ ?+@)~֖=9)!@jgUN\q~㚔s8uG;醩n(&?VK-tiZco iEZ{[m\5 tomp=wwA.Ņ(TjeUk6s KEGgӞYw4Ga﵂~xnA,P+ާ-&ahU_gL˒P/JqHyݏ;oɐH +@g8=Jl\U8EcP|X 3qf p"jb O2r)TWIŒ':٥@%Kݡ4u$]lrWihwwG:z-/e-`溥l#aQR[&d/26v=Sg۵\~ZQ? aA?`im{ lBy:eqB|s|C KDzBP3Noz"Buz|m-{/*ۆJn=np2E[, "یth{v@GjHˇ6ZwJ7葶Gi{ ,Һe= ۃV@5Ken6Yvqvq@mW,u%jmIL Wd\PZo&=m/uer%ی/~{w 969Aq(+~sS>pC~Mʳ.&K+5>&NqW"CS#"*.Ypa?xws>ġ_o-](`}-[5L/gdicvSr9 %u$(z[jmj9-R4;|IzxCh9w-f>vk_b^X{yH)|,hI/UW $9{"9;Lp>9ƙ3/ȋC|P2"I^@]8s6ouG׵޼<:RK轄K" Ӡ 0"CIfRqO3-',&S$Sf;;uf!݇1[BV]_#pXEV=}û+u{B;iUhR̠־^{o_vc{HpWZ ,x[eGz졳pJ=!2[  `Vn0_`cf=fD@+Ev+Ѳ.{\qX/pحDR2{!26fn~[`=tCg{عn%z}@i-u+Aʮ'J0[n%|\cgɗK5}U9_uU=ty.P^ީQ*ۼVxU= )ucAj-3ukAfGk(.FD_XSoxZ=h/b>BD>"m킫UɺfW5^kd` ǸaF7}黍]5u_x%vAQsC^ۼYc}V\e1GR*.f˪HEޝSwYT]JbU-Q-:Ֆo[tDM]N-ڻEcu/V*-mTT ->G) Ton1Z1u;@ڈ4tQ k2SN(u6.i%ôhKJ[Lyi%1K F-r;#(b b@qcj/) Zi%DӤ.g!,fpUY|Én05LtR1Ψ{d\.}ڀ:HʅVŴ,xW_WZ\"PT^8bFw6(u4zInȻ.쓒5וrh d+RN {)E: ZVSIJbO|ACGOX"1op+Y< Ӽqm[pӏbzq&!RBKO|]̍l"qHrRYPá'ˤ+o VEDc.hTb}ܨ84Rs${` Uz/6Ekz{xͶ"Yo\ڂD*xg PD,#z,r)k(Qr8[J (H~dcgB)UOsPCC-Z* *c`A#97 ZBJZO]F=Mc|:Varp.T_\*;kDx.Y `~G g~{MȇT嚍4z*G!l N OvC-HG`#[j 0ucx<٘Uj+t=5.")Gi2RբdStHBI5y^ ckis{fSvW DjUivd $pAZ*Vik 8˹'`N8 7Pzo\8Z ^PDYBρX)MEq2KKyVVb͜.I[T!ϋ|^` sXZ7";q*!X>uO.;I9ą(ZRAӻ5nO%Z)`S@ k95|۰Oi/hDɸ :/9JCWK]xFO9IX#G@ k)  ol_nI3EVz& ɏ~~MJd.9kӸ8~1!$@eL}msTIX#`tEw (ht?-LI>EpJJ= _YSv&q8zF?xT D>=O^7T:B~}WAGX 2܎nu浨~6Q}[Sm2н"- /壣ztT'J9精'jχѾ>vZ A &gEj<(θ#Ԫ6bv:=kZ,m*-$Mm2xO>#D* M̢JQ3Z=j␱>]uO0k^Ѐ贆ޟf$s2I00R"YwHHG#܍H<k@VI|,\X{[=G%BmYov \mPtwZMin0 .Ws=u9UKBߒuMΗ}׍k+ ׻z4G[R[ps6_~}] 73QTh_zZչ;z P}TT&c˻(Vv} _fP&>Z,4Hb)bM:-MΆB#qt={4#j7Ӥ6ʔjCYhQzXTl0 k\Xwb ӽjJnGIāU-\ M*2TހF)@OMe 8VuAxlA~j daՊeˠÕq!]6|m$tnM!Y߂J!(:|u O}bIG|X`qdDžK~iԡv<:xj'+I&\=|Y\,k6D6 cʦꅘͫ ҫ:U}a/O654QǥZMȑX yjC di{}]jtvO2RUR^QjKGU@6JGrUl0ޛA3o"<FtXv)2h뱹ޡCC*{ׇCYZ/keAz3C;UHʦhՌEJȶ޹Y}) 3KQZhe^LOYN{e(Ri0&aӑ(֊82:bH&dRJ ]*>Izr]1 ,< II)߽xvJu/(Rrpܜ #lHW~bp:x@L:, 1uA#( ~n&p4 v(@&Ƌ,6$E"I@s/ibNYz㸘)aK$SwJWbKU:'X'.h,%D' xuɹw8YLZYhf^*9h\LĨ3&GV~JO_QݴQ6Qe a>&t,z'lH%͒1bf u42$ t#Z5-eP J*ːpX0ut4g"FƠFqrrAwz[HryUCA>#nʅ*ѽ)V{aluNI3f3J0RÛ׈<34zϸə2CA4 liכ%"!>Նf`z&z͚$ĩD\Ĭ%!e05IDj>1(G?~h7 1c?ia. U% kk){ EqL uO;zV5s =}FS' s#5K ($?~OCgًL$Z;TPʠ )RSb6N!뷵*hHaTV-doœnU׌7хu tlf`O1DbF@qWmH35Z~<>Cg^ov`'NƺCm?MTE駹ܵ5L])K☲UW-Bb$E7ъ +r4> `hz \;@-j8)ť 9\*;ՕA9ܖc|,([(\/4?Ir{\7Kf~ziCuNΪV*aNS#2IJSnl -DnE`m"xLj1Rd3`f4B^W8; 9ܧՈ`HX%1rTaҡZr4 1+}0uZ޳yD;I quZԡfS|{= dݝ @JrOv|f.Jj.RmojqO;:󱳵A'].r$JdӅ xTURY&~OmI{ܵ=Rbb,>z}V;NU2y^]kb!|rSG1'4,@dѦL$bK @8?o$BRlSgli r N LY; KES?o8+^(T&yRc!• }=O7M_ݺM{T$__O,ך⻹/Pg180;RKi+ю0/}ټn߆=iL{nG< x5ْ AQGf)Y^sK|"]ij, Hii—Z슝P0(yjnobkKT*ލ5YESE' ~lJPe-]BHM!N@ %$^F眬LJ~";nEkd }LnjZ֛%+wJ{$yPΰld==Q*4qh?GSUN xQ&> U_0'@o~ݎ;ELb1mڼWI3{ﬖ7~ZTИ^Lzw_O@}O4URr] _0tEhٸl_B[#DG(l@&RH;YƊô\=_Xz]`vuӾ{);φnV"qw%aAwΡ"DdPzAKf L5k!~+cF$>]9Ke;V΃֣&ʻ]xG` 2qv=dcwT#`ng+=B_O4$1Vm{Cߌ9HH(IPWcXvĘ￧e/69I(g$GZ 㕲fGG*|VϾۑToi@}7(um߫ӷџ̌ m!;$>7dwp37=6PM` a>I#9װ&ñEP%CP})i/)ԗ)#4Epgo,P?"# 3*"hiWD1]ΰvzz[]~>~h7S1 &l e/)"M7G1kP^63p{ }kCQ39,BV'PgеUk)N+,<  hx$<9/MjV>29-UT}MXFܗӌ&pX_a5??նvi5Kej@/DO2U朗*`>I'ܛ8Gy0'p D o^>pX4(7"N@1DJSdzDyYnzGIΞBu})fJjzCl{ 5&N.M̀+g^*d!n,09yR4rw(s">Z."Yq99=ʢ>E~klKo0mxvc -K+mt݁\T: "/ Z+8?x}L4kVWPF5 93֖4;Dwf;IiGv|׈ 7aB1ZI.8XY+pJm"vWv嬦#Z̈́Bm8Ϲd'ïj<5R,1^f)~GZj[~3\sk/3 =9OÕIl/"PK"4ɓ-)"~Zi#)md&^4J7'OԻ(~ϛaAdZ1nER򴪗*Ia}p95[NM4eV?h/rI0ʷRb[R.6I؁O@9!1C5 o f $29KrGrY(=l=;uf{jejzi8W Q)8ٓb q1֨8d" *5mɳs<6(M0ַF!x)!}e9t¹I7DQz%-AXb%)0,UgP rge 4d[ħK5q1< -晹dMJ~v a2+VFQF ۢ:OKnIF!~}iP7jc{M^ipA$dcfe%Bԟl"k:70Zp'P=-sspUti?J%=`?S,d-U =U~lE{ y@0>:Ȣk ,vt|ldxlϻ{H.I?$%e{í_a=N}gii+dcM)A>&yriDW<鸽=ԵL=.~Feaǣ20lf5=]ؽa!lGv'|-е=s >j[XTLq*VLU117g:|ZpGeۛ 5|W8*ZD88 6ަ-1r}H06b9%'>0f2d暏hRyy*?:edD,2OUS"g&.#>M"IȇP;X֜vE~<"nڗ"gڟ͊6DY T=|֝g726 )2SD.w"} eT+XZ~*S+E¡H8;evDY%qNG`@ !l,-kSXX(z =dW{)V[ .m{}uq4!)>!ZՁI1oLnw/ZöWE8ÜnJMğ6I [`e {U۸qU"`KAV![9Qx]ھT683"df8!'Q鈩(!fX|Z$gzy1\c%jZ["Oh%7┨U|7~T++1 Xao6`[W T]H|? |yh:i=ͺ>w} /WXS뱵izjC*IIDPC2?p+CoSG%o$[~USXCMlQZ$`j'Oو@Uk@ An]u59zo n䯺>N"EAV9# )[s0Z*||;I'O+Ӏ<)lX5,^kZX} +=ŠipTiUH0ne[Kپ=a.o&a^ dPp>Z߇T~1a7.SJ}M~̦Vub6.Xh3r0gىh7|9oML%=dqtTLl$F뛩|V !,^9"6k)Ԙp1{ t5v@9^~i,=3e&jcmnj4 2aM*gBIe߭H,{,KFjĐ}*Nvm1OXtK&׃Xs꿼Mt- `<}/uwu 1g^F3㍏uwo i ^@:v.|•4o۷>>B3(VpAqN_^)`J ;BZ<:ݪvsO%#Ef/rR&m3y0Pk9+3~/NOjґV HR&owʹo!!$#[$n~ ݾ# bƠu=^O n"q9]ϔqN Ж35}.]ܞ_-PY_䣄㣼dqe0ߘ/4@OL/[nOsC03o~|7 HJ Λƴ`s>>=T,T|bu{oY/w˷qߗir|E1\F9L]g֓/ sqGP%|B^gjxU &zEHY$B\BSW-]y'm>SPpK~6f'H6a k'rO)vW\-E-xxHŶCk8#Y|z 4L=vM7x/`\|g1+費wbR` .J0Fpr^0Eo %6e&dDhdF%]64g:EH;:eQeg󲟧SД w)^ޤc| mw'A׼wHĹG=NMm.~Lv3LQqh)g{#xF{kS㎘`BjcV?'98L*D(Pj/ǢšLe#z-}lw$y ?{$v 4C(C6\0.ijYqZWs=y:7ŅyjngPhbBr3 TOv:͏)w-o5Vpyz,L+0?8^Wj/$(<=ӄl]!KKKM\z]NDJPC 5"(ª"r4mbs/Qn {S~>.G69V/_W@(;}N&o6mK5P+{YQ}A]Fx˒8;l9*F8g"Be)jQGâ2=ilPwuٔ^r=a @լK>#^\69An=spl҆;w[̅J\"ۗ +vЮ9fs= S !b l !x [)m8'f([]̛KS?n =Cɻ`WLFK hB!됥[ݫ̀U>RU# Et(w!h&KXFǰ. BR/A@Ps*m+8'V6b GW)9 ɉM? (@cyZ F$dOY(Fj|DOzX@<10WԖ&Rk~8_Dl]$;XiY Od?bwF6 Eݡ]Jeʯ-ND፤{ʼ.-{'0 \;OLX6[_>&B:6'3$v֡X٘K&SgNzqxE"t91~>v˜j7D$"]aʁTI}Pr3>s_vN! b󝵢LsEA?R UZV2,ڭaA+:08)Ǡzo(ɺ鬖 {+C^|h_#\: }/P'%gj~`7¾Woxzᜉ҇vQtْ+.!0q/V. WBX'Waښ /|iJR'wqaCPv;G5)nO;#>)l101~n `x|&Ojy%muI:u98dqcQ2*w<π% ~p/yr WJH0{&HV"橄€ݦ$G[2QGZr&-bXYW16$‚HPybWwbb:&%X0$Ywپi8MW)N(`{|4ɣtW-z \9>-sfר.NOMP$Z#")տ)O>:0ڿ<iwLޏvpj(,vXAw}Th>'(eƈcxVK+8עa-;mGVd,[ҡ# wkԄ2mhFm:qR!)zMJ]6AtZ\Ė3(rɹyX2/(4<;pXx|^_(rm[]ĩ :ծ"x&дz]ppžw1Jmp:^'}Y0v4ECj4 ]0Lwedl!lj@؃oI)6L1'-4wmJwaQYclrYddƚP1q_Z)W!}K7ίVT{+ ?G1dl6 W)"_m 52EeM6XN&-Rt;~% 4D>C=[q/ o-X>jٺ)Dh K`>BBݏ'ߎe*Ч@T{%$rrJ>`Y\h i se[$ː8b 0u&ᔠ}9T'm4I ZG dXifdk8÷²60@qHL^:Ҝ's?IJѡGUp#:sM5ղ3*x~[~(HhjEoIeEAWV2?yk~دbɈn­xTzCSm8X{=k!4oC[/g͂q@& 0/M$ ֭ ]'\'$U884ga}-B,nhdla y#\"g6=6Lc8|ҿgey0~DnC0QN Qn4D#}IaӨ*!->Wgu]ں CbJlm[c4aFq{ BGtN>k(:5ZČȣ_!KTɺ]x΄8ϠQRe3 ɮ޼'3CݍW[`BEnc_|MH?̵ٸV)k˓(ͧwUVI O١΀*!J=QTϘTE0TO]Bڤ*&PvSo–bFw(PNtbj?3/$XkTp5 K gdP4k;7plx@XK J 3H _VgUÇQ| w!wf"1  Fmx%Bǹ/Y֗*<5Ig}Tpt&s)dLX( qf7pL  轥pGw~mm xqFo|Du+:<-b¼_L{2^ pr r7y}EVaܮpJgTNZS5cbKIWE&y0h,edO@9Z p[<]4L ~:ՎTD:g'|),ћcˌ쐣/1#:('>w o!X-/v2%:~?.0 ¹k,v_pJՈѬwZ^]imJ_q+n (JCfn Xr-/+h*F]ͤ%R ⥣$ܿDh v9eEUM,-amgv!ax>rWj+xMRQx8'~'7.d"\F1&\mA/ɽTDVUcU(+X}^=Jh=6+*4>/*%7B*~`u.Aɭ=@N쒁M91B2t^4,^= Z#uNVی %j.n쨬|qZDA=# L 2do|Y9,%e@UN i1SQ:paBs Y>rseo࿹DŠz?pS0FF~ Pa}΍J$Zwģ]*@w$İT'0OnD,[or>;CCs=|̣;<+q eNNg1aJ`Bcw^ݳ*ʀ)q9?;{8R,d&IQ.Jtk-|r54, ^( J|iaE>Dv>X,9+6N!A^묩\S_UL1mϮ'_ |ۛ-}aS4#9Vڟ=gWǹb,˕>q>k(1^ReFOOLoJuIx mڱV>D["ňN̿0KZ/j0TGh)$5DG6yJTitPdi$yq7tzpyW,X)D#\ϺzkOzH+u7jR0)>+qVJZbYWb*Tpcm?QSUj4 :n{ ga!'U CVnY?qC_ǫViLOm_we&EN> SˊQOA0vz@#.W XPC@#ˍs!eةfH[z/!'t{.jhcmeR9hFzx :J+AWAIDzf*hi'` ͋G |zٴ5GX`xi7ĉwc\Ք϶jPNae]/=f)}#/md, mW:2 mkw=`mU/z"a[e 4_i,e.}gIB7+L omxO!_34'j]aP-l*4v[HH*>܃TKՓKVF$yu5ṪInXo<[Z_%Z{[um;6 D9H׆osϩ]eA Q+OMk^%D[# RaE?eJʦL|w`?w$u+L8/ubqKl"~"2|X >_S9%-*2Ҙݜ % v;FrhN`V uk,*mEn@"cd!pZauX nqE?y;.ۧLU35>|'9 ;k_.ㅭl&#GHX`ΦYy2A}MH/ %~GHi9ahE&e)tl$EO*?IiQ] ˉ?[Յo$Qnml0h9̌]֝G撙{ >fZp.ɟyOV@%!J#dǩo buQ!@o5_xђ>Xq-4y;]j_֨c%9>]KNG/6#4"qeu619Z/G9qB)3Jtm~o"$ SH~6[-ީΰgvPUA8 1!ji{BY$l':@Y]i!.i"u6KfTR%w.l1-$p BUEtX*(1%+!@T10Ljqs,jd6 .̶8;= ַJ҂pR]uUYxV< 7y&\3=}|n7&b#"k:[VH~o<ۧ dThWc&ҾsLp@U4z^dzy]O&蠑U{SpSQC8XW%9??iJHY( cE"ŅY~<.2c _|vt|[*p093Ĩ¨#`6x-&aj5Ƭb- !J%uq|b/V{y=ۅvZD:U~0 N!O!a8Dm܏=O`@ Ӊ1 E*dKf+ZHacxSYW#)&#$&Qs4^v?"w>Kũ$"#|'xk#GS[Z#{-OFӁ(;(_e7>aj8zpQ.q7sc[3QG%)l_!O3ܦDL8HAOdK4͡ugMWhGW]|_fF!eKO1;Ƿ(Ñ[ P|>WߋP~LA%s?_(5v.fMb":קmMԴ olkd}Ra$ٻ#RO!մT7 ={vTyf[g[]_cs'M~k k' =JîY~Djf8s o:V[ r't.>f IT..Jtq]>G^{࣌;K.ˏ[~xwd?,Z,պ28-N""ZV`Lmg2SXvNG} L$pNYLzrɔ+Z⁣ae[M!kWh40eu&qukbJA>6ھtud|R4է/@O1!{ͣܪ D#D=yㄴԂm6ϨY)=,DTCl7"ohP޴&Xԍ$3VϷGtS ]>f=WL roɮm]E³[H9b/lpX(\ox$l hg9eЊ~OTsX6cy`W-^ yT}񤽡4Zhw_\*`g1()9FaՁ'F-IfuAٞarpD(h`Ǚ*: LѡR7_gr4f^s:?tU.8Ddy_3u\Tl/XN4po\趾CI2g6O_ߐKE:v5055_ƻخ]z" | L.rBp*xT 6nYE߼ӎ/ŤoBmxA2> _!lvpm<#ŀ/5Z\0i`u-XR9].j`?XpUayߜ/SqKo(KcFwnx>%'8CP!TFJr6+H&P"r%VJh*Sx!˫hsæ⬅^{*R4b` P:D?YA sC~1e[_HpeưE0n[quu:o]3Go/+ػ mᕙud)jTXPkH;ey}umM4SQ4>!7fW]e:ceUbLKaC*W+Niӵ"08 "iCzob`L~9ktGV&玼mA}hZ`ÓYˉ`>oS7 5Y+lBul)p]rܕ?2m%S9KRJѿͺq8 /}ZNfg'e)'=)*/%r_Fӣy SMbq,ve%D}{ϘOǰ70"Ut,l,nvJ%s'9/%"Ώ]+w*d Mag<2f+syMcֹd9 {6hh\|vTtd`̞W.=9,z !>T^y cr贖F^.9P[/N]/2&nɸ9%Z!nzan1jr3,F36\[LJNy@"L f4]OB ƦI0I:լ_g˧ c.[ ŷ[Xf[ s.!+8$ibmVR,5uye{@o_zÍ64}ȿ,,HLԛC:`+SA6Qr0wlq%Qm-" gSI6>-;j"'Qhݜ׳w+'rR&K# B@ 5m wT6_,%%CAJ$bJԊ hHaxc($08hnDAP17."bihJb;EQ{/&p+ƽ&glԅPɗ撟dpKGf)ar R1: !Jًo.[ C}AW5łh0j!+B>i}61W, _, ;YGoR씺p(og, ,EDi m4*G&&5߱$e.l Mᦰς}(w*U>;b/Avhd5H젙M_sB"FJ ɉ&_<2*w΅U*dt5YAym J<[KI+=컓VH4=+`FWY@AT}.`^HMGif,ԒyfU]CP-GH6'(b8+16JA<󦟾>gl,0%$J@mq J":KD=[ܰ6{Y7b+^dwP aD5_Cnj;]LACЫ-}~ZR7wź{#G>j]Tk킫\ees8o7]>S<Ҙxh#ðh.2j(2z2q?崟' bYz]+c,>vT a9huԽG1:SE?gP]1rw {H^nKB#@k; kٮVm0B|K pDDyZۋZ+V>N)U;Rz͹ثWEM`Y+Y{"E>` ?Nƫ)5>m2 I.F[HމVdѵYO*,J^%^!8g)1n7("b*1Aa+2&wա\+ݵg*SUjqVUx"b{D]6=}ctZQt`@;S W")+ھvB$~}a[o%ZP'S g!F8?_A|*O،ۧ.9ߕi|YS#Ȃe6kugcGv!D67!Z7"f-Fwɽu5yV!RQdYJ `Khlx8 v&@sR+ޓ/ǶiE~W?!GY=Klp-v\i-:{ {H`,e*K̏G̼7aT:m+z0d)VMEʸIdcU7rck_˹t>$ \35efC]?`w~]qS?ԩSG}ˈR%xz"+Tnhl; u>lty90 ֎4:m9Hl"U1wDxEH%S(b7 0$-R|ZkcEwJo*v%nߔ|-Ż}I ܺ' ^|(* v?+6~ zI39{ (츼*;h]k/q)IU몊; nh_{/ۈѴt9-82J)sKjL Ӷ7tfks1ds(iu9@Fo$tSZfB40nU aj=y1\1_N-"{' ,GlyA$ "wNĻ9#N`&85vt(4{TBϐ\2%{P^T 5JnƐB>NSbe'6.5~O!vX!_Ϊt#6 (nJװN^wpWn ] ;qcq*nǓd*iE4h/b}fmOO~>1*8-e^.y$?9$7sOQXAb#Mu`͕iquPsp_WL.s(#Bn63پ?^soa#+)a 5 :S:ou ZLZmKw*Z%Y ^m' d:lfwwܳ嬪҃O+_!eLճBM%GЯTwJ|8Lr%&CuG%y{ 7ZLGqQ0ޟ<_t/`7Wi-PT 6zjch\  ]f-^u fetDToF\xb]%)Ysz_|13m (iQ uOf?NXe|,MTłHM Q=3fxa{oViztjne_,.5  _m+>vv|ixxyz/d,^QQ -!wD0/dSӠ/'9(0c 5Z[m#ntWmtdV%_Vb-c#udi$'ĮA0mzV΅ WjG(==J'щӰ B<Ѵ421@%8q(6Ɋ&ndɑ3xA♪pZGq ^, Ԟ7X,S^ďRW`5^ub^X?Gn x_dxT.Gu7INEb i%x #V3i={1 9b_JlJyyLr$G3Y::1[`1'uG3 ?['MNXԇDq9={_6uW B=ƪ&(WQpūfX8n!vVJn򈦗"x"k~Gu/'@F~ƌr,Vi;b{5珿IY0@V狯f(Mtڮ-1ԓ6NǺ1*|,ReF LY̑y8zX CAϳsVj:-;ڋG8d;eig\$e80ﶋ/_`e_Sgc+18u:46@b P̈5Zz9P}ę۸|f^ ILbC kOtnh^ZbX~[`2D<1rהz7A| h(YGgj {&NZ+WK^Ҡ3e088W hYvOXqamMI1MVm*qD& |MnDX^X¡@ b0zxRw_Ӂ7vBϝ7uEhxGR=mfx3 >BsbV!3j|}{NKd a<].8ltVp!^^,-b$upz,)nZȺ\$N'vQflWcJ|XYa-*8xDD{lHZ1.k'͊{xRkS$ͰaUM3>+2bnlV/Z?!l#E}EqMHy>t_~qfP7B:e6:ܮv4v;T%}cGs_>JG,C(L!z~-T?ŝ"~yY1#Y;c@dwLsg-A9*Z/՛oǎ4!rZ&Ɓ'1 !7Żh:F*ʹ"j"ۓ\[7$ms. nF84$.2 T1)>2? RW 2r)_Y譞emcFꝙZz:]|(E bpЦSy"`ڮ `஼(?,kQĽ=nO&?TwšDs'մ2po2tn; EuNmįŷ2,λ4Uȑ# Ĭ۞e6;>az$_>:Ĥ >~,!o@DW;,qTڍ,L=mGShm4s!BjHz`Wef<<  E }|{(rVXe:H;\S\A`9^o «]/™R#BxtYM!qTA%Pd"rFzJԪ*pwtXN`Y }c`r&R@5KjN `mHKtI:M]D&?fۡ/뫋6@?Al=]3,/`F%ꑅ!Q&aw-жF3.k[<8Pn}A(uڲ"yއ/Y7Qr۷<<(aHYlqN-ݺ޺]f3Z/1pz+,w|9dj'f[g2*-.SasrU\=NGWn\r{P|=/31T@'vyGY5܊`~w3sEIqyo0ŢEpyl{{ue`U3lLsࢍҢF'9)Ti,3+ gXQx(^BO7sc q| fe?Ġ&x& QwhӠ6b%{VMBDw1JdpQ ֛:)"#5x81U}p&~c>n.k(*DbĜd8%9ŠЛw^O33?ZmV%$ѱ]7ڣS3D&- !-,Q68-"~Hbfu $=ma|iT'=942bw͏LTNgY`T1#ή#F2|{ *|jgVIDfNF_o=L) 5%{Ҕ6@"H+:S&Vrqݝ?#Ipqz)UWh˭ J#ј˵&TA 8 C _L :Y|@|:&ff:|@0W5w({?PQ<'waIPVlPgwgLq.dV#JYm8Oy"s#D|_OY`:&JJnzVPmL~P/rt4 zj+Lt䄵5Y"C<6dVgQc3+Sj5 }iQeZThXC~S1 1>s86DI3Sm \KOͧMb%Kn)z~3c%2ct;j\L(@e/§6}ퟂK&^qK[ֹlP9˪712|s8BSWuUA@o#RM/utg4>谸@;9;?Ozkw ZFۗmrӥyuO"6!ǻfOM'EXw]?R>o$tdF+%e$s|Bj%ߚY^}[E)nRU2*ķ7F$nJ:lS$ƥH c7XӜ¿ӤE-b_1" 5 ?ӪS$G bL Y17UVGC?`BƷ~gifj-2o2b)kF^#rZm (Ȏk2n)|<;Q=q0e[-FtXL`.@tL&.Y0l RE٥g'ÎPC?”OgYEEߗ}4.fcdQS׍F`Fy%Zj9#\TFeYj2`oI*Lsm ~? f 6YWrW^Ƽ} Cb>KGnt-B3m= W/[k;Uo[gYsOK&Y|/BJFz&8-D)W`U|822n#H ǖ+` SӞR⯅2;Wdéqmo +%]ˈ#>v]ɐ|mԞf75)W<@5`e09.an7r JVwlɯ=6y(+}:鐱m0k8qƜ_ʥH@a5p7_CDTd!ELzvuB` Y26oH|Gyqkxϕ@QN76RaCs7B6|ׂ쳽~<kؗG*7fH0ьXu/FmXزqYm#?aĒy7ti5' u?c~FAW5=c89ufC>0P MF%H*4pc.xϢԂ?B_|.xWU/Cb"XV(/|OE!oZu8ݔHpڸ[iqkc< `>uJF. J*,ձ,~#-o5~Kߩ2&8MW_bfXw{D`x!fʐk  ^}*V}+EV4t4Xsh8uqAӅ5REn/^y{-eުuzIcNP|$ lݫ]ݟ!#}yF 2|OpP9DU!ǓqMp{8Q&E[Sܟ͊JqLS~5sMvxUHUC"FMj M>jTW I;ăt\a\rOOFTի_TZ7D*8`ƜF|kve`p[̫K2pyIR)W0_.IÌ%'qX9_f%Q%Մ=7g mH}3TuS^,5\2YecG ~$* |C简L w11XDE[T6OV sPʴ[_%Qj8viԺB` >fO^<.FJa8qosۉl%RzL6/Lv\r^中 ۶Mc xx[,ia"n4W$Ul' }>x}?B5ٟzXßW:R5aEJqE{Pj('5`ku7 d"&*& WbŁε)uI-kՓt89Zl<˙xl(})* ?PwHxo;g2l40%EJ3NJ_K$:19aǀG/UC9-Plhͨtkw;uqKȒ+R+@j >2GswI,$f]aC<߻']`jIh.Yh Gi'#͌Yg0i6T ۱bJu _`׉*4 >i}ѳsA0`?! _h 0ۘ2nۣX-:8ٌ5mb`x5C}'Y H 7p) bKF{erG,Ru>XlG"!h&mSML,%B檍D}]b]$7\ U`&");A H6|Ovf($8 NKYc9rp 7 ԏ<:N {s*orG݉FD uz(wQQ$wo1Y&]8 zL Ѡ~wXAa,apef–uY򦳴ցoVWaXo8SP#W/ь" X[S 7@@?g_Ù/G^7@vDݷa5H)/w< B0JiIVVvrHHVJPn#kɜlݙ3kbRc`]h0_Ha7nFJ&RLz8EptQDfVD?Vv18&z`ɡ &Cܙ% <00UԭP]ʐ:Wb1KlaN JО;Q6@J+ Lp6 œ"w)_Jfp>O *ڪ:8%`N_%Qfh'.b,-jBi/ Î2p91׌,s0ZQS="_G§r50g}uғxؓ? Ź%If>OP~quRFw^->{N(Ͷ_ ?:CpMLJ+52y^θN~?bh3?SXu|ͨanN4K{XySA9$2EOu 7K;^EJьщ6rJ=RdM@w6C}iCvK"IDk.Tq`#j oq30+N񊿰RҢ1@!*rGc|Hp}FO~tOыж>[ѯI[VP9ž>1sIU*Kǥ=9>'p99MrMMbv T~ sx TP%6]+74S_D>Omr3"viFʠFp$ bs5nmɂWNڵF#j'^{\L5]:xEӛU\++v1E,K4  Z,kKሃgiΪE?df{U'0o'|0#JtfP!'tG].e]E%a065]gaJE9a º; rG8(* l:uc?'AEF FERZC2Qee>uɠњTKoUugG4S)3мBmL$=m@WrRJ|Lc2q/`>= .% Ԋ|+psmyqOCJaF|'w~klv䡚zfP& ` yKLrSy8).S4IqJx['i'A)oKǘͥs/8WKۍOB-!c4H6 y6<5rY_<WmAsK8},?:R?:I)3܂iFߺlfZiΔ"|ݺՂ>m)E؜ڎ#S*5K![ԙӸ0FG {ʕ{N,cFnpq$3L艭pV1Xã/h!7Xd7|{%ߞ)SY32UFH"tm hg)ey(BRU ?v+r:hbݒ$F >cLHc’VZw+Yk(Y/.UP`1N ENx-YK(?* }#?h&d 4k9@w/* K[B}+*B,!{{=Fqd2*Tmq"p@'2k| {ץyS6̺.q/ )Ti++ k&&WOV/0F욕sKV٢@'fS[U8-vA RwfsF5VΰK3*5+X߼Ꝥ5Hrpż"!  GoQqnW*_}}֟4gEu-ާxoStU. kB6 my\IQWVHBV&S $,o1]ޭЊRWF-#uh5tC-еmt}P'[_u9(b6p|h n)8'zl&I#'1 KJq>2a-zĄ qr2evUY(x7^->RϷHM`Ç煗5?7wV IK14%,]r)bF4.6 XkpG.!vbVFɠRˣ#b: POɭs>uV6y7!7 tKr2K ͻķS`+ L.x(Wo&J&Js5$A%֍A29%NXo1]%qCP2pE"bhȃU_ު2|s El1۴;}7kZ]}4;ږxnkWh2:󈰐/ |"7NL,MTӃ#{$X>ó4C I?ΚȈ@wr ?_Ax jD9}fc4Nf`'oVT cF,L6 Py Z*zkU,R?g9 {0b3p.Gk?6 Cp]f;f)4}O o5*]$Q[ޚ$4CWnLya k QFȠ5 "èyQ׶RW<{0Z ![(C !1[Tm޻YT0lK]U",2c'.s 4ޖ_gL~b"bof%(, 8W+#tbJj?-Ͼ`;SDf^-&WMOH+$(εg#'̣C`M '-D|O2d= ?|m[֬ը!FX7 s,,?~%1lV,uOlƿOek}AHMF +&to::%Ǝ!1XY;0 =}aEDp  rPSySY" <^<Ox&\<,pm}"FmLӡ[HOIIRZ)w@(m Mz͞kwk2΂pxBw4|5>77JGUzskXނ1DfxmX$У-մ[oݧ8krX85ad`ra;V :V)e,$|U Scsv/ܻ`DKH#/{Dnj !q٩f/)f˦mE۷H5"!K{p[h#(>z56E2x0v9gU&)^:B O,BTh46i5M+wPۨK@579m/gϾ*>pp=˰e`i4CA`:}^Jyʓ'逌l\` /J>c6KLhR-s(hPv#:(lEVKD?=zP~"u"<[kx(7#H4l,ur6y2|fo\#Z߂E T` )򃖵u`Q hc CΧUJdunT9Q9&a&gdwؖ[T-Y$1zԳoE~kN Py)IW9C߾,y%~ºĊV}gvC~/"6\2u^.Pok`zyRZrTC [-6LB @SAۋ4! ,PK nS[DhQ8lJ[7 ڜf%B}7h C Ja㴍1YG mpP{[) wNvd죴K6l؋.boױKjVj(]vo'-6&䖆~V09>SdYVw͉*Zva563Cckf.¨`Ƞ:{ꊔ^fΰ_ͩoP[o/;b '~'Q|4QDC\]o`hs y$6V˟5S-S,aՠkt\>_gp-?7@rΧB`?<QDBttf-O,ǰJKS1@*:ֈ/j{$8F$kڐnNqJMpu @([+ A2m+& wJ5*A3]%vN=FŸ6۰pNMB7P2hT\73.0-(7 $sI9-ZLͣ\CFSHܭp1$.̃ KYz-PCaܘS&svjNG.yC67kj[6o[)B3:V,*A4oZѧ~@Z6pGl9YXBkv H0(#՗B+]`5bVA0y2#D(19!:X9@"2D+"Cy+ME?/]/w)Bn}&Ccx)zL[npvN 1ʡ+^SށoOgG} IXu'[W=1r&[7TİP S1_\qyȪr6Wh*pjЯcbMJx0#Z <L^GyQۍlUr.0`pA >5'sK tFǍ8Upͽʿ^Fv+Z)>gliߤR,q?.iwo%ضD尤)#*~ E>ֶ=é]r,d],vm, m@>ܝ8neL6Y3}opA^It6`%5JT(YV-&I)֟JzC· }0-y^J"0b?4W9' .qN# "ˬ[E=4ыǣZu@ +z.8 ;{Ij}˒*-Vt݆sOr#&oy!~ 2vCcOɺ5)l RH9)(J.eR݉fKm5;u3֥y~gH+m5bfn-ݸSHN}TX+[KxpQYz(-x")PvBjm CehmMNy,}W ި"紧ei1XxX4|xmVuk^g)˅k9}uݟ3C2`)tk*yr ߋVsp*-EAi/#[`aqXl(z{Bc& (ްӎFWljYcga$xw5ѷPfNwK\n'*#'cr6!ްZ7ae   T}U ky)g-߼5μbDX?-*Q\8'hRی넻oYgE7-(XD0kK@ƅ$ei`qFΔ|bDPNZ&ܣ pあysz ]8U+wv;+$F*Р.2@=ul-E3qL[aF8> cwUG"T851(G^G5\v }Ոټj29I\_nεsMˏˡ b͊j&sF{%')<Ժ8PoM.L璍S"MÂk-LdFppuiއق7X{ߓئ@0FZ6Um/ Z`Oj3 aU0B璱C^<I^faU9At x6t 0wUkzKd Y8&CDpg,[/bh"@#-w..Lj fg9l꨷̈́dI"=)/i8#PM1<87R8u]%^i !]_ ni ^O3evuƒ 8o̅O[,Bm< XwGswwdof!%=a58\'VpĝHFIEO@t= 4ach pM% 4ALG?aIsI}du8||3$dNEdCODXbc2oB-,[:nx3V507{nz]&20I!/7YQ9HjQWvf v{zL tq|sAfB!c$ bBd!cJ1a6J~1PlP2Qu9~Ҟnp&EYq]f'2D/isu!vʗ]X,}6L8gl-K(,lo]8%l,Fu`h,|հdXn 38 b c3l|j͉ /5yy@s52^I;(+YTsݵG"έy hƭ fq(@?gZ5gkzietwcxݛb14/m6d9*.i xUMk@N;&w JZkhDp㘻y?$aSl?H[wggUV%u5@ƏXQ'xdPnTNh/أ]VHd4o(ZrQq曄^2&腱E)Gx?My1`p݊_ nRYr*HY7"~(j 2ùIUQc&(섩z2_/=۞z! I|{{m^IifU ՝3΄A|ېBCYg^yA{2+u"Za(h\VEd?ٕ% =A} =W5m'^AضCvUȾpZƑ,7`Wrj]{O#gg]dk}ץ♻D3~TFcBZD[xK0R%tI zY5[:# .2L{+FGc$`_BѶ#0+}z|Ւkfu^(l ]!%ߚs\E9 l]Z6sʔxTMSH fUێvl}潛u ȲYzԇ 4IhV;pK$;^܅+9t"4ƭgVue/Z_AӘMy7CKƬC/Vlg$Ƿ[…Uoxcv=qT8e0yq(SEkH#QW]Ϩb3"?PˢPN/iwfENyW|Qmtm{ QXA }f!q H+6vjӿ$#m-}7t HĎ0I0yæķb pǸ VRS&.ÏXaHLMߘOgtao)'mbރRw1Q.+f)` ̣CL ƒV160D1u-%%@$F h_Γ2n9S}XT$(qEAeVv=H,޷O'V6sIǛC`4ll)GD[odb2=rǗ,F-9Wd8ۅ.31LD{X۫su:E@8<҅n17'o՗mARpqB-;A~d@_i2#㺒aV^U '`?~H GЖ ZMSZ$Duq/RsA+r&c>S_4kz5 x>Q^Q[Գ"{7“d ͎$vm)sQq4uL8EЦ:~՗#nӶ^wM?4c݄- k[,_9`d'۪`g) JmȫwzWC@*rFap5 enҗQisjw;`3MP 874ioղ {tF`c{Y(&K8eo [prPnd.^-]Ƴ㳒hV$A\ W[I~39V9ڹ&yZaD-}Ìlh4s=%eZ e[Wե/{YCVTp]s'ъ|= `FC^o5+S1Ep'#2كc9b0_3E 7p  \ Mj~ S{n5I7&O yhZi,mn1uc"7Žlkg/Z*. FyŸ GZ'z" cA$P>Kb){^(>eEKcZ@şLї "ҪQلkmGRb\3`:R}E#4 *!u:I¤y oE|޽!Vg5./'X hi%N[!!ϘH(w9" -ڿUAbcK۞ F/.b/_%15dwV [e:JT:uzw3]8q6Ͱy!qlJƏH;*#I_Sؽ}aAp$ShnfЩLn[Jގ cأt6д2{nO+SoVOn n&^LN y n'MTC3<ݚl/:q\Fg=O(`y?uR<|SHBen(zt)mǟeǓ{54vq}#a A Aˆ6 Z4nULJWe}^%)sTQ42jfܿ";{o[V{vUxxB2u$t Qk%j mklȻqu:|?kUrXJAYr-U!-M8 3pO {[ÁTp׼zN[}UbgD|5ߙuĵtJa,bˈ? 갛E7{K {8OE |YsfR+> &G|x§F ԋ@U͂T5Ƴϸ|r|JRn8&-sZ xNţ׊J_uʩ^)4y@kzWto'e.njiPrn`}1$oNku2" +5C. Ts9zwd̡fnsT7EkS̝>.TfNX )!V;/ YzE? %!$\Ym=6L+sae<(85~{QTd|}8GCY.U ZLHܟ}Kȴ cK c¡XڞdG: PLwGg&tԧ޵OV\YeuiPMwV`!lh(xu@ܯq mJlD` dx31eLBK:[RcFECŰ-,E1r6nXJ ˜P;cz^=` U|n?wxSfż[/luo..Qf}H3࠽Ze=K,j,\VNGt7 @\,v9͔wwa,Է㝥]J"5b{"woiy| R(u"b?91NfF|¨9k=;Xw æѣm,д٭Pkƶ%JPBY]!(,z3xOTSD dnt2? H@=Ї&zWm֟,-s3[ P,+9I 4G8G" ((JfHRz+8Nw5J}}UܺDU-կ,d\uFGJO#80)|{I81l.ν;mƽdi7PJ0֋' o2'P#tTX*2]#V^2 aa6LwG#̍TwO:,֊,Z;9M=Ulj.JSݏqX9Q,Z(.f2' Y!0b9{؁wezCBm6|O7!g gj 6&:uOI"p2"VWNq*HKZ b`SuLА+PKǟC H6Ս 4~:G>ASѐۦNLZ9j%{;%Ri/`?Ƨ>\J%=DrmQxC#H>9L $3,8\؈xCʛrKԊ!x %X@:~5{iӷxl},sx\>VN#IRR2/ Mdˁ?3N)eGe`.\'#j!"yeQ0<Gv"ML1H9=}u<%y*.P< %8tqx{3mӏ$@U;H;գԾ5sK,WHI4\x"-9L{ٯ+35n`UY*)>'`uxZUh|DsZ|:ׂƪh%뗕']ۼKI~VEX m C_.4G;"rO99.wi9FeY" |#  t˩(/c__0t5+{yo`\LazczԆ-`">mBsͳw4^(\ź)_g퍛vڕТsN{I4ѓL~QL)kVp\jY;;ivE XyFFdu, v`T.ԷNU2 vsMy=C_-~MmF8ژٲʰ?vK i|7 ZKUnGn{vHRڇATDE .h.ٮ7NYU6#{àq&p9[i@$l Ol'ZX- 7_.̊ɧޡw.3" 寷%O) Y-m/hwz1Sd("qb3O4 a,Vqu@E$4Kʂs(dո֐&r\^?o)']" #D]`tZ&DW3X`ڍAoQDM(vTYw~3ڢTVȏlYt $~>[P qs}*ᖡk,,p qc P-tPfï˨CU;,dn<[ 9VVS}MgȐA=#30 )HĈ'^(}"4n4 cY&NLJ()4 v=516A ( Xϫl9Djhx /&+0 E~Z$_&[Yć]LڀR:7A7{OG@\3;\'.˅!:G :VHd# s<Ҝ2_PAٿm|H0kK)PCx#צ@Zbc:`șp\SլNhٓ$`z B~\@w(L5ۛSRfMQzbZ[h" ΁ws+~Yc FԞ{Ik &l΍U6ܲ ez4|d%-$zP]'D!^-:XP!ϖ3<W6ڡ"?I16'D33Ẻ٠&'(}] 6L^lV,8$Ԋkt$Tc}~yre$N[3?0Y2,zqyȽFhX,\0#gm>%!*c /@JLYVl ?${,dD,,{ l:wBwJhKhXL~o "}}P|dǪ^Sc4x6XJyd7m1jgw SY@=7wӠ2nZ{,#1ujZ |S~TxRj[!{PE_Zwnï\H!PSJ"pmpGר;:~"> >Wd H5i]DMvG 8%'r.f5P5IC_ hfa7`f܏ް'Xɏ`Jۇ |b.vIZض=ғ+ʃ!*pC^I.D&P)tSu Hfe=hA8^ 4_t7+b%2fV5WFwggިɣa/Z ̸w"YuZAqž*>n6 Db 3<:By2&Į73;~6ÌRّQdagpѲܮ}sޮbdn M@)!jg&2ޟh>kOād> Y4sSh(!$\󭾵Y4ŢxVI3]p3*Ƚ-n~|n٥Vhu9?˫})q񐽂٭~: Hm{*jS+2(B JE%BKH9i3ߟe)-6W \/(*U(^3sb$ z,< Ouy맓gbitoeGp"PN](sY,ENK uv4:$y`*6yR2Tz@y"yTOGH$DQeјV wE⶝;b5h@A5MSK2Pi_J͐m*?"@nG? qֻ~]Pe 5 ޷++pjYT]˸/^yZ$nhWv#pfriJ\ NIϙ-[2$ea\Mr^n#tbBz!q?\d W$X*[ȿeY Z>IRi%]7aA1_p#[Q#+ϊM>*+A{n=l`bMtЗdc "lZQXTmsVG,"|ңRe0ūaJ^u}ʀDD!uiKg?x # kݩM͇4;#-'$QE^_o֎ڴz 't#禒6Km<( KJjqcvc]bQDe,VDtUo9XgShlD(0GBen,=sN&ʬ^2Pgl,ռ:&%f3?y]m$?*"4.m]1n5'NI%ҧesjGv ']izEB^mHP הFeHVPLZT sGOŝ~g3Kw"k#$$`}Ҥ¿ZY1s .۵Hw[`{OrtҚ֒MJOjb?ɜ5v*؟Q#YB>36ugMіD9{nJZާ?=+@tI+u̡ ^ϫ?GE:5ȃ2feɱ\Fl5{y u6| `Q",uK~!Ѕ>.R Mg(abxJ~NTDB(@!1[fA IVpF'SI@?(N_Jp}/UOJY%J(@iP\{R1&r>ĪgsRKX|>ɲ}9aq2MĤFOjv@q,@"Sl\ Ե ƞ=#BZ流!_ | kY5LU\uXB<['Ҳ.NH$2"@pM^j T61FF/QuO &Hlj ۃ,Q6fج0W ucm۾~8 O1RNXw {=0,::KOIҞ?0ax+GFc)+4ԯX> {B{Pfx~lOE&a-tdjiZָ-Ib*E̱薟)([]³wlAFE7%G\fpkv!壻XgY]CqhdX襞#Fk?Jt|#;M'Y螎0 rNI7ٓ~vY6]>9L8*f);#8< 9B+QJӂb~\-B5kE_Nߔ4&ho}ߚE2MyLy$CW!Ni|iORMlmlתIkvY4.їEZ DhƨV5?0'=b)B}2jjK\lzS---;`.VG}BS$Œ Gz,&m[Ą`&Ia2F B}\„ X+ Ii(U) X EOFv}3ﮰƚ2_62y% k >lHC7 )i_e[V w]&Ew-zJy|7ZS-j_~A `͠-l[0iEJNC'71# ]"/][GH*FdJ6ܡkm^ހQx|6pbE?{ ڐ>:ґQ ֯4+H/#{YnOz0>F ".^󟕤ZHa"P0jT JS_in;TF\ޭ>| Vx"B1k4_nWE{Q RsAA4BCA;sb *dy|clhV350uF%K]C:dZ 3R +}K/K;2H|^Z'<:y*xg3šѹH5ULiB:6o"I+'0yuf㕗{xk KFj-VaI_[`͊6qVeE& 8dx,[Hy+h:(l(B*uc-46 `o ܼ\kmB|&Rȳm/E tQ 댹^3،@J7OLrK(2 @~PSg16~;wLH$Wӣ 206TL2.`IDm_cHcn3SD 5 躜W 7usn3MKauhH钥a+vO}$`3$` s|O#Aw|CV~yB#3\&'vbm|Ja`cz(>F N7&HEL 7nJ*N}"qX=V l9D#EH-υx_lJ!K?P9x'"w4=%E7GEYQx~Xkx`۳RB& &|ȋf,{WUGpͻO ÊLL[ 2kW1Jt83k#Xj!LSĜ AN510 u=PH $WD}ӲW8ZRWpX.fHZ0.* ƴL$ҟy gb216w4hZQ69X=Y!Ux7S#|yx4cFWo^+{(^G..TmfTغQ}CӞtDHq g{֝U{FJYVdswG ^Lw2H{)ն0ā7j8 q{k~VrQM(Յ`YwSIx~v!axng#Jܞo|s JէIq.):fM$3XW9 f2mMLB:Lh8ڼ%'Nn20'82H"8!2^$MZ]k?ar([:6ڗo큙~ѳG +bxM-ж1_fPvcKhbofɇ("=v+rb3eZ!Iy੦{MY޵mR}=ޖE?T°2xWfEzyx3&/ qAPrతI^s~<*L8*QD >`ic)&д.O7 uEθy5gٍ#T^di?TxTqEX3c ^\2-& N1S_g4{Ͱw9sHo{ :u::ۜxf86ú֎-\PC8t(T O] 9j[l{"̔?2Rn,tM>C u[p[3Q,P AqDa>rr@(P)i.NB4]F.~uҐRe+,vW`C_@ }WL|Acwl)XUh2e>crus]m?Je&0G@\ʾ3<<,<Մ5Jе/74U߆=Hێ\>om`6m6S>i؝!3R8}+F%L_Aߜfmx&XnT>pmНnG'dp}t‰D\1Pׅ.X+ *e^?Ce":>6o9o^]):pz)x/F<:`ig~7Rׄ_:-l3HF$>rڵ`4M! KMlx,O#As0{Qe\)&  젧"ׁ]&9k^25CϜղ (/Jwa:3IC]A MM ͺxީ慐P 5RNrQE%dVB4xYKcuf62U"()B#$"q`8é FuPߏ?MA|{Gt;T鞈f}y`*Zڳ:թӃ;@)/Qm@5b8/aj|j3`=/޴ThDyItSVc'r8W-=)G`^ :ŝ(niO]zSkQewiܿ";Nelxa9ѭ^kVLL瓍d>=Eac۶CVĻCh1}5w6Zof8G9OV{kӛߴ??3e :h\cF? }:Џ'h9Y3 K3R!\%/5oJ"ICń?tZߕ9}B (H۳)~QJ -Y)  zC9{Imm?ܸP.p$(}B" 2I\\L[X8{3x0dݣ"V>"e|:lNˮ[+e5l:$d-1돂+ WU]3 /5r\Qk떛M].B2"2.TNć* K%-8z}'+nm9&:tgÐJS,،:7!m޴g7o\lbbacZyK0VwRjTkX% ~:l}j|kGv JN17(>CbKpCgqu8~0n7m8t=8סtIP@MP̘ak["Nuc_DӓYLV9ϱyDqrhXsYi֟)6`sc)/:UT?7na:H z״# 0٤0kLJVp/i|;vC傪ZOðʛtp.fL%coVg2Fƀ,Xj -̸) 'T8㹲M!fyV.g#SXnS:YMbK-hUQbɟQʭo㦦иi а*%|t{;Xjyda + I- L-) PY4A,&$)n ;0dHm]$o@Aqo\V/'ל97떏.90v$ j2ˡ]oA4@DP ,6me{Ӭ"YB))cS=" jx$JTؽnEt bT񄲶7',0F }nM RYLρ(P/50۶zԵe3=3nsa\烀Y)}JUU"Iy֘+iP)Eגڡ `#];_jz~~ ozkT_O*ӹ2Y_`d79l͂%?7muHKCwldrBR ]R*fyGܼ=7EF#`YJĬ<͆.ԋV2ʪBt"C(Xsۧ㙕fiC G(S9&ʶxg'軪VP[7٭ G}g1K-;UG1نz٧7xx~5kCС_5Tb'\ܥ@je5ILV)ԦYSԓ=W:ErӛLYʈ3'z`fӅ11N"̟Yl! =Gw !}ӿo}A #kP?™A\]SZ JI aOͩk5F5~Ri}\B|\wgr!.߹X⸸ \IQ]<c'ߢQ X z@*p271Ž[f2rLY`w?9Ho8Q4UV mpf-^%4b7H'B i q9Ng8љp mrsBqωj@n~Ա+aʨu0$n;rξ6HAmAk?ɸvŗC~.nw J KOUy3R,JX[rEfΜ\ d] Lã 6 Ulo >lv*`QK* u6 &E9a•|jH39 VC^x!ƨ]ވ˶ hu(2B?6Ga3hp|ԑ3u9lu<43R,#-\Kq@D#WZ= %Fg䁈9Æw3/E/||k Gb( ͍+5j Q/TMHVA@f3]Za֨‡NI1_?H*2 %|^wP˭{W,am =s12ԠfiUeqfCW0* 쒟56e=! YK[c`AmccoU"n)Zlf]Q&!j ѱFxh1UQAE+::sC-{N+,Q 2:rUG97[A#@+fGUØ8,zT2ZJAM D9>O!،!xmDI\'.zuR Q*q`[E?0ƝdGԾB^l<éh 慡&,'`%az5)d:Y/EctKYqɔ!IR,CtQUt=!3v;* pϿguhmǻG`A꩖鹊ObwdO`kh7۪2nks؊/ϚFQ:x&DS R<{`^>[SŨ)G{dfezy.9fk]4Nÿ>]/t|Kl  cq%==n>d~&)$R@c[$1zurroo,/MNJH@h=7t6 <Y Q;aE()T ?  .9=^xΛv5vTm%$MԑROީ]H}y #{@]&D+WP;oT<5^n'n3#v͗lOk{9:ģ=IysZ hxae|¸,c.x [8 vDƽA|bqi#D"!QXE }$f('NKL8츑F. fv6I\'cztd] v}UYi~Uzk~=E7C ]4V KR' y7x㤈qa(1ɵ{)2?*kFTSLݤnڄ`v(!4CXo,Y0_<_Tā]{$HxyH%6$ܯ 8~}I)̴s8Wp@ٴ?T7Dr&.d4 l " $lH]8Ĕ!:GV/QE[t2ڲL~8dc>S֩A–&>;vp{˖pȈ3&/<wh캟CizrZ-}hM (rr_FL'_)z5txi$')`=M$D2'$:寣Е 7(pc$vyj?X}}l؊^ QutRzc(rTGrC>:#v2h5FL 7C@f]8+=zGTtz<` R VmI5e1*՞B*\nVJF(]Rkٶn!kҨd䬳,i ţQ,0Ѫ|L5JHOY}@}QEIWEsi]1l/N).?Z(8oj1L\MC#} Fv26t ]g@R叓iJZj i  SG7~u<cu6q7j[:5'UKSر|O?>}GyόR ZM02 ؄ksYO}L0-+h`Y1Xr nz\<:yJ{[?)XRsĻ=H*el|9z6`Pφ1ي e:OՁ)ke1cť%Qi0tMt@{-=VSsr&b?^x]JQRc/yb y#՛8[Ғc =9ur|w/F9S=&l:$-ƀb72JW)#VlAL$!Ʌ~,1M:/o,gҶ,hWJ 0ܮ*1Oo $3y|u:!ټu{-'WfxQvU- ~W2OLrQA=jiܛWb7 भu**v} %DC,>*TIh$̍u+rjeשt^I+Y1#C-[|;m̠U.̢"CEc0M /k#{߯.Y)>,Lh=4^qiq开H &Xs[<u"/ FV3 T׀,ؒ3]Ab3$l !_L2PWb M!pd' Iǩg(y>5!a"J lg"q2"o#*5硔j6!+Lr{W1]&XӅBOtX$ eD_ Uldl]AZln6Gp54:aQMXbV$ S$4;O*zj3쨖lkjb@>OchNj{숃PS.,|$kj4!o_32D-hG~F7:w0bHv% V^ =$t'UӘsxz܋+dPy:Ua[1g%NY}A c=1Ҕ *TA$&&`K> {7t-y5w̆vMuBtɖ/ '}Ly \T޹:2> 3]Jx@YбRҌ56J"Bٙ8~V[,w2| zR ogr((ƅ`q=Otr߲sd:F,_I0HkG>n M!T^%xDE@skqIω2!F=-&bNlX;Әj7zy'^qe+_QIkK*f5KZ`RI vVHAiLq̒[5 `<Z@vG.*![ѲWkDT?볧l ;~C `} GDf$Oxz̨?~v:BXm]T/rq[s4a6~#[4ddDgտΌKZ+o.sk^^`I" (ZlGl3ekaKζHny𕧟Ds!}w8I֓p"Y̕eTN$*f+KX͓4IB?w 2 Jc;RJQ{PpmXf~gף`Y.Tf.BSz:7P$_`5j5HOs*P2_`T$tҒ)/N6wJJ]+mFրp<|̴j򱙬EBV0-&^`jOv+k%8~s>mM򿚶"uF׽f'й<_8``lfH„Mٛ c-Wn.]r9#+o0|A]>*dܸ}&V2jdSLj?zGu<ё]t a#w'vR*;sV E4jđP ^k1#X@7]EGi`]ZXn `U٤/^Oxo:T0Bale뉪|~j2=_CK:KOkJI|mD.wŮ©7>.̞uԑj/5lN#Kӻ[Unך8a1N&YR.$MmCcZ/0d,F\2K\֞5kD6Ih(}*/sV{-JsNV+{4zt]NZY[f|Gn?"vj tt7%9Ֆ)eZM}X'|WHЈ%U:X¢㳀)z@>-Gp(͝Su'%\2}ѕ^d (` F;52!_@!7SJ: jt{/J|ëUw&W7l!9r/l+}<4y~\uF AJذCFY ؤ%l_}0/8Nh*3ʱ܀9 eͦ*s+0yӈ %8Q?Ś>l1%;~/F[ռ3kaĞ7OKN7yb S|a.Q{7S%pBښVPπeD.fN.HaRpQk{sӌipQv hr_l:.o1;q?3V.CE#X & Vrg)!MRnr;yhﲬZP- !7Ǜ-jgpN9LΟm71]N!e >ɒuE,:|WecqV'X~Prz&ýyyc*Ā~Py :/'J'-lFR:)Ν+{oAhi)q Ϸ,YˀKv e`<$ܷ{7k]hCo#ȴNURnr5:- ~<2WpbtY߯L)">ťd\ݍ10wj~:) Jbyّ;gSXE8x( H*G'2Uɟ9 ]EjHMmc4V -Cz3oS|zu; Z26Rն\qw 2n,ZTT7zA4I cJ Ͼfk9s7ᜯ7F ~* 1xWȻ?~/p8."GП6ˆۈR:2Yߒ? ,6]DWT(q')L+ x i  kOzBE#r(jP薱9Ic*'MªZoMcş~\92 f>STuyw,DNP_+ȰB?_|'|ijbMt6(iͨprta CaK2-$Qzpϰ]'RƬ|96\CQkLg1y"C&V^h5!Ҝy[XbՎ .{W[eM0piUUX%pyyvj`~`]I^o$h1{ϢnNLQh`Z!W58P\Gh dgnAӨN1F'_yLZ A;XO%)8JxP%w4,Jmcz5>*A䒯e-+ x+ޤƺEcwoIp]}WNҫUyT.^/,}pܖ)‚k~G>Ln_KD@R| چG<adv`#NQ:#N:"4™AhA v6$_Ƭ_GXe82_|j #xZ VKXI{cE9uh[%@Oޯ!n ,2bQڿfbgTCHGgi.p.#V2_^FgvWTnva]hX[ YU]aŘ9Z*] k3qzC@qxOf:Wwb9bճ]JQaaI0ԉ2m^ڛvmӍRcӍ((3s@MW1!;ƧBĒ6N_!"tmR@Vuf6?(Nb7*~ 1W(8̌wL+*XgQ 4w#ZX:t>5G^s@-9=ȩl#cEA#hVx,g{ī{-;L ͖?oз܌@؝ xj]E9@8O啍9$'EvZ2/mU,2-R$R~6X.΁^$#3ȱOy$nJG+(K`ezZ'9Q'#!dw7v8; +/WX1Lzpw,)(X2s<1$.[ HCKf5>tr$ߎ&{,H[IcsMm_Xxf^Ĉ VahS4??PsX .fcq0x\q=36OuM?'dnͥ+̒XՄv] X&@`BmT"bxcҁI }SUD;_A7hDE{SYl'[u6\viE zXucϝzrJ8p}@wPQA{bmݩGg1y=DK 0/-*g~>D_Î1x0VfǛwXqK _X~ > %}E53gI.jC-:4}X?1vA6]n~,/q'(;j!]4­WV酮tmUfۊAM]qhר\|R_SRmp 8,/E#.M qKII-; "ĂpBZ`9ptSX]W*mKUt)H{^jr=Obc Ƒ)).K\B/8OR= rUUqRqwU qۿBvӜ0xH->G~n|̇Zj\fޙDdwˤ9N4PkkMKJ'E)`k-[ɂ*$f=dݾk6;(CR}{uk@Me.ԃE~3N YM`>0cnoOS% |ɥwF I.v&욑\+I.:%H*A7Ah*/Qdpjʺ-OVe%J68Jo E/v0;!zv`"vߦnuϺ)j$kt}ɏAxtw6:ȏ DAG;vѵI1p,PCvwf)Ӑt%iGd<ǥMm!>%eOc5/< Ug0QӖʜEH 0T$P\&Z3aah:*Ko{yNjM&εh\/]BXt.YPwHYn2)C3 X k11v595qIc.)V #.<7ݟFCK l EuYuOR/:]8:)sh:@gs?s#a_ Z"cLD$h9 P$ɹ=>F}#-szd&)P"F"2Lߏ7דJEgJ@<&-JȁCOp$=Ko nck|  7t-kjZhv XLBz7 loQ &eX aIw*uDփh2Y9w=1_s/7^+G^KlWI]Ԯ#>A8Cr.&UUP(mtTYr腖Mlū(F{Јq ,* HOl :>_|o…CB]KOh bR:F$E-B!Ky `w0"}xDܫmZcJ/ A#b,r8;X]c~b| e?$ɣeo5eB%omXh@+#m}2w*=2-F &F(}.wtfBPyW%x n5#ךd}3`Dש,\ޮO5ؿZB%b*/;*@&TÓI"e#Hׯ6,CG—[frYy3[߁9sa.|-{P£1w ;?CDȀve$<@Q9rA7 kPcO[TI^$~*vCulg-3mo^UnuYgp!} DG4NUES+s}sBkKWVo-ӲO޵jIE|ΉP>8VxLEѥV: ,J`QTeI`N3U:E/.No2'uHqpܣ ѷc=Qk>U: NV~[PKw"-2l;ߵ#Qa"*(E;7F\uo 01n↫f.`fḻ*J>wZ/ų2nPZ*^;WA)_ڊٜr$ɰee3A4UbyGlbURAfc{ =jJV%(0Qy%SX[΃7kͬ^pNHg!k*G+fwuUϾ-zKSZ7˾ȼ = [L| `}{M"c,T0WNJ|V'9 /_7WR%zCJTG%aJ^'pjmQy(NxkJ0Jr":B,i8FyjȞ jQn@E t2;JܦQL bDt X3/s.D:PpCC*7V ٖ%h8iUZ~݇nwK.~+fm~ٸ;3 ^lAq/F}*ŀ ^FHV V#R2栮J"3{/@NV:ڗ4 Irmf^!O-&U+}ƒ$Lmt,0R@wL2@ŊJғ\u , YeV7F(V)>R>ݐVET%]zEv!h/KV*\`XwL9w+_3p%C#p𛊵+`5r]H|!gdW`ܟn}qPh2QTM K޺i>hC0"Ǯ8k\;@1¯&FaZ+Ra8!'kUQx :(]q,vZ 5)Z".NQeNm$,#n|w}ȑwnl0l) s=Hh 8#6W Z2Iv뿾\5!O LG@EߪNPwn}),ł6ҎŢeA4wA0YP..gӦ;jI{V?`ÇY 3vCgk ʭNܹ$ҭvт`c9Z)t "IzKO6naMI3zu 47;Ci)~3!&rM{z:.yAw&ualMeg ia&/+oۍWW;}a7 Z1 ;l8w` !q4GN癹ڤWf&,`Jcjq 4 %mg7XAɖ(Ke9U.yoů iwcN{Q*Al5](R?JtR"A?m%xJ(bG|3xCVwZ"cT>`[z =bK3 {VJ&y/)G)Ykp08l"钷üpvx}ua}4( G%kg4uN=䂁m-yēfuq=/H9"*iwk1ege ,3jZ RP_c'>J9KPZI_T K%A(Y/4mdOOD\ƥ@:!K?3 DK#~ţƵl 3j!.Kt#X_zUv J/ \|f{^o_8$Uu t@)V•HMn[ඡ!|G!7:9.]OuBֳVb/teE??Zrt>rk,C[CWq:*~ % *ήٜߐAZK/ H(5YFޣ%{9~Tp'THK90=I12OI":!p΁>Z8ڻrA[AZ &@5ќ<-\8XGc)#+>)H{>YĽ_^*xTxfzȵ,,ix5J$ M@GW$s{|'a_WhJuG! `jj;ykV1xvp9*Ede"x4@ T)9E9WÝXEJGeMJ.hv;7?TJDD?ՇFwOa}nC*/"Όܠ2O_PIv'e%~ItEH5Eh11'J< KC5Ҫ9@v *mg3q9[DMQY5<"HܹU{w3a1;ӟt?":znos>kDDzs*V%=BŠI`k# 0Ca7 2)+y"Tgb*AO`b NDEm߻En9^*撶t7iEE5/h]G A:tCȋ $}Bz~NfGDy T}.<"szNΧ@Q9ƍO/<_Rq)SE"v?GPL.==̦*j]A \=Wlw/ļkN־O?dU"{.k ںOx#h qcžѱ9-W ޳4DRq@p/Y K8 :ˆC[8w U^7awGs:3U/ٳ\iYAJ+SUܶݻ@>ݕ i iL]%@A#Dќ^;rآM[?ZD|$l!mPKFBqj.s@HA½ϧGQSx!ˠ)]: p3"`uDsC'iD0lCc$ QK'MT^[ׯVYL:>fU%Hc-"ƥ;x]DtBVj.{{UN9Am`gRլQĒl:+M ^*SGbGɥ8z4`*鷺u2vo-AW}?.NR~ \͚ 2B{njΨ01g ;۾&8\Y<mjʞ`w_! ]gȬhǰȘڤ߬mTؚoIdBjJqvE3})ZՁbHU:W:j8߃E4X\\<P%i6ΉѢf$P-{L p.uӟ)n6'Ivbt8qFP℣³6f&v70P%]Oîv] ܸ+MY 앸 ĩ6<'aWe&hYU5I(3ev%Rs 0Ntվ |2k`'HcXMȂQD*kZwUlz{PPII6EOQ2؂Dg95l G!`aۆv=*F(X]p1lK%pG3 '˔'hmG4Ѳ;֋՝ ܌т2֏^{ҽŪem08Op-i=2YZh/wZn9p{+4Kq.ĕ2ﰈvu]y?h#䴶Ưx"ϿA_@,`G<̷ E;0 =iSu2c~Z0ͪTg]5xyPH =ԢKBl%4jXǼ̎0WnЋ5ѡ+a19̃8n~>C;T-'KE$tY2瀵{cܖ q-FX7y_pk$c|H77 qenSՆ["gX 8 Ԍ A_bJOQFz.b_ip le-ÍKWg^B޲ )&3 Q aQ`g9?@&op%2lDuC2/كk;u#zst(t <#%f)7]-ȆCs$K2 X9aCMVƕrmbnW>3D}=%R컃(lj-xȀ)rgQU2-N!jN;PϜWD2wAI#Q~,Xő;3>Bܗ5D ,]U'ue-a(Eˈ3}g ޓ1"R[,`"Z6_:K,Q}?ˬO؅uh!}G5ݗlyaO65n%N/Y8}msA [h][]e/:kۂ;ҖHS'2+YQ8YLn|PW+Vx ޿}›ZA[q$ *^Jc _ ~/Um'5 ܽ:'He1"COR&cYs+ӢCbEd[颯wYݬust?2D#1В_kˣ_zN t CtJr6(bXu.yK,f֘p|LB`ȧ 'S4Cxthp_ H7bj{ϱs (ɬG Oӄ=g5vׅ3cAm}%G ? x?癸Җ\"$ЃL(R 2Ըj$mޅ9ҦiEڊjN=A? ]Bbۙ>=Vc -Kpܸ&,}rxe~%v@;@a Oy/L(w.}w5P08OxFs) [6*Dʩi-E$YOسpPފ$zHOhH"d!kWy#ql+6oL@_rav8\lIa{;t! AaHNp A>TF OL∉lg;N; %D̘ς%S2\G)p7,&sϒNUp"o %XêJD%lZq4;i޳ҜK\\<_h ӝ!["\Rf:Nmo r64ƀmBs3(k6i>ź7}DTCrkWg-بG5e` HgB`Z.9Au:ݍ#hj;P#L"=_?dl>|AkFc)ҼN`:WAXӤas"EZ1REeĿϟɒUށqĔV;j4*o՞Ux.fFP呫"^]ʯ( gk')9и&. TgW-+oK.قAn>o!&OXAY~ =Bl1~]fNbi@?,T !vk&]vu~QL,rI{^(N5r'0w_z9-C`K7] WC,ym9Φ3`ʊJiy#br&qoZ?TWpX;W =ktQ9 |>jv}'HMliեasFVD3#jIZ,r[qOp0 <@fa7kuV3a5"#@O3O *Pfa3CdpX9z)ss;m _(3SQjf@{_x<6\&Y>y2ӴAE)'rz"ֽqYqͅPQFv$gLP=tQ&BK\83d">Dz[e72(%Rm{.ļ%ԍv%YZVCJA/է0QmJuuxӲc%[!/ 5F 瓇:ø@zA< i=\B48`evt΄Gk a2bYU%X}uUG]:aeWX=;Ȅ dFAa/2fg [NµGIQ6CgM 'e}IY@c_fH{TK3Ky(bqFt keCQhv Th֚(SJ:{ mek4l" tǑˡwƹ4O*͉0qKB7kX.E c Cμд=D&S w6oui,ٟϥ**V{A q'uQQǦ4*>aVQyy A Rf[*O'r)I'½GhkB)1JAXb=vw/+e Tk).sԹ-Sq)X͛.2TJp#e/1gӃV8i֍\0F l~Fe@"I-|S̛92?m7N?FrnRQth-p @ceAԓIsAYNEO~]bׅHK~ε_y$~E"hJ !Ȅ>H4cjb>+ &HDǰ|K֚xOG+נu:JC]ֲߧzA>`OCj'vP mO>`rFP_U5ߠ/5T>^l=֕7lf?(1[x XUo޲cVWL6 u=HXK_ߧDKXJ Ȗ*7g#}$"P0d]4|'}.&0T\xX R`_il oԳ s*yWEM;>O [w2ϫ6UL8 2qYc?/U%Mk&GLzw;K0d(nK{˺$}hR4lZAh6TV4S4x}n?r_)PgC Pei@ˎdJc; qQPLYXŨu"'lT#^k*J< _ `߄'=C|-+loXջ0Zg]ؾPtj)5 Lx{h1Z},Q7K]jضRhMBp]]auc.=GUl'乼@%RaP@Cn#M8Y/Ed"LzN^A1@F.~IG1F>JaRXS 2XsRdRsس`GzCp4}hj gG׮:&,L6dN[9OaQD2}! sGv4&M-5Z1r?40CR/!R+€!˔k>$PxD.u Fcۂ08Ç{I: "Unziw)S1@a}'ij],-$UF;B*j{MXXl ǡ\xTn2eZ+/O~Qw^: ~# W aF4A$Ag DǷ?vl)ƝcBmHjK@]}$[wt$/<`u}=%Pe7n@>-+m/5bm^s̽kOhRJB[Е%DCi<$ݥ?Q0`kAhL *+ßV0X:)ah> v >̅{>9Q.tHG꯺ rT?.?? 3đ)HMQ&ǧty3Z/$J,O2~|>H*.8 G.j1FJ`1o=,yVG@/vzU+GrɳM$Iώ;mEM""lY  g_KJggwO[.E0.%m`NšobP%Lu6(D6ŹZq(xRTܲu;uq4~cS8~\bt6 7ۺ$8z,]"K$W$&٧lh.,41i`{J%&bLM ޶#8F ;9g|`7<5_^h2!6 ԌMʵYhJO_,VچkJ3bX̉FϘi{UZ**3fG앜h1yjl7{V"AmTXG!2f=㡮P^橣CwԎO8N^2XFz3cjMX7MctM7w̍=݅pȅOa/mxS~z%9NUr~yaUl&6폩'LPC($SUUjU-Hi^ 4BE+VR=vD Bv,)޺c$+c#d'rIiH89>( H8¹!Jh侀)j5DA6MLLX4 s\, VnZfxi$f4; uB)1K2QsC0ܮg5;CFͪ xN fi쏒PZ^hB'(hW}:zle4:nd!OPd,KB1c 16D:a5*w9we]/AYjBfX+A;Kǰ#i`.[H=~El1H.sƴo׳N2`ˋĩ-d\yמʴlskzi6R$Pkr\IRdϋW YFX%H3<:fCt*5q\上՗`Ogmz~Òq*d==vY u]I~',o4 MlsfKf LzZMJAKl.hȃDfRwz2g>.7!X1 %7ݲe)KU7V{K1?)mv'a_R*Jy*Z1Oyijݡ_HYT߹|  b7pm̺k&9ORoO&YyW`뻚\Ki]|CUrcvkB~Nn"EuzLa=m=JsRh{jm*Ec ] ^z¦J`T\nGVKonf$=<MY N;(y2AV3qaTV 7\ |r)EuFD .T/j>*o&}šuv-+ %zW3!DLF ݓp& &V[zt&Wܼ"rB]s QRV ~V ʼ `sO]Qcb+.J'ER{Xa>m(?+I(.tr5#hvTz{To#AԪY6ACuṲ𰮮Wq˷\ye(ճĬSf.Aøbj,[˞5ErhA-&C,'p?Aht/8xĺ U?["9*_FNcxB J"~NJu&h6p;BY`8)a0e`( KFm"Ɯ:My;%sx@bJm8"%J7=m(N(; ǥpCNbKx:~T63I:DtOLu9oyF\bwڱgÞ8bx/аr0 3j^NpWGw4<t)(6"=LDbϮPƉ(XƞgR?_`5$(mmw{>J\G%ѻngg*w_ғMB,Kx)wւAp_q?3=GP{c Zx/qdv͹ۤӷ LR+=׎SaN&J WB^@>nA ~~Ey+b,#'Y#6b‹>3@d;EN!+eb!GK0fxqs={(KSXs?R 6'[+!lZx 0ie|P_ I*֕CF[AH#_o0fһś棡b(1g%Is0{<+K`BMu )BE bo<56h1ӑJ\ԥ ~":|(\5~G NR!Fdc[!:T0KJIٟO*);װe7pa9,w>tgC!SGЈ/xt$fл ^Nt꽂 AO=aY⠚/L/|YW.F䲗YsA53qZOjwnVZ?Vﮕ9(e(I&hwz0sT\ZNɝ6F>,*6K[ k`k}`jaixY~XSp|L->eeŮ fjN /akbIʴ G [q@Hj7[e_5?ؐp@ WJ.pI.Xv#3ܩI&*6Mݼ}nUVDwa` ̻yv[a[]**Xĝv!kޕVtaUC#5Ф..2Lg+ *ا~0@OR왍_ Y3@fs *~~MDڂ 0wL ARSNCDT4ĠS]3({j!`W}E X |̰TC?##3VIYܟ8}c6GдF%KGo"8A|(z cXjޕ'XW I(g(݃R+tiE@\{˙ [Ң- o>w{FZoDZ_)E k\Dm:xh*6o%!V,&Kɿ%uu@87͹EbZ-~XB6F]?4/嬜$f-A$u:e<2@nv3y)'Y}jT }sYLVq:{x QK >&z]Q0x)Ҟ?ɣ Q2Ktdٻrƚxp߭,s72?m8lV4Yhs`eǽ')oR~ #HI :&G%5|(n+]]DT-ݡe Րp%{~a*q늜 ,2CJ~O/X9b{ܘ/"SWU˶;NV(N?UϟPO璬qJp+"48V{Ie% Jm6xEyGӏȸ 'o39H)ml#!OnMQ趮L,,̛UV) =YgIo3כSF$Ա%v4#wx)d uULXfŏxΨYo2ȿil.&;i5a,( յ!mUMD,r7)-VNI&/fx^w'[nLAo,.րHPV,H Z:^k0xP9  xR!YВh./6>S fOv. =->͊:?"ZC} Ε{_>n,sYE qyqr6sA#z""Ux{w˰ӑ/"P;Ps./Ljk&M^ẹv9i16ˌ%lkD$xJ=zP-SfE'zٺ)yJ$M\vs'xr Zl/t^WW >!"WoZ*˦}/)˗NIA| 0X.dHϐ4XE{~n)@ ~mcY[VEu=dTyv[EWS;b|+p!Sg&9h V~o yp vkbH GWM#}àŴL!x_I_QZ0ߖ\09ay*Tr` rErBg@S\ Ez%l vtK:H N pY6SW?s#J"=J-c6jvG5N&6ꉏh1,w#j %k[qyB삤q_FEg֡,apx1x"["IKevN @a¦ ~K ܼCu}M@P"^&\6.CM`.w7_y@fMW+q:IMwy7#Wu>,A7;.3KɴG&'PЂ;ZĕT+ ԙX;bX^-bc@`(:¹b5LJWw|&:n|e+{ޓ*VډLc)9C/=ne nF=I8j9qk3`Osڰ P D 9c3i^2f OʲQ#6 Hi`K\HK.2Rd&C~jb5¹d^s2[#£!6[X:yJbȒ’ &eefX')p5]-|=J;1~O;>6nS( ||ExQhp RS)jĥOTYUب= !}[U%4$ϝNk1ęUY p%LzIZuRWG(XhVh2 3m28ӭ.a<$젘)9աcZq$%ʫryaֵeY0-+Ӆn1L%l!Nf CӿDžrcT^) u1q $R+~+7zRY!|79_(o V>Pe3 s!‹8TfS'fqy*# sUE5]Wӯ'_5O mBqZLG\d4N͛0F'HZj*ej݀3B0>$W' RCX{b. {NKM|s'Kƣר(a'&y&/b&qCB.KlcIϨQOhzUvQ?tl+<~F0Kɇ.Q򄲸 t ""8ddފbG d{z5hAb̎DGࠫ=J`8aO-9٫$\p~ Iu> c=Z"KlG= [(_dPcTW;Yp'ȍIi|@EomK#zq4x~m<=%,F%ZdaMM"i4iܤ}~ g~~ ^)!n" U[ue2ctS4OC|9hB1qV:`!1HRsf*n,4E# ;g-Ɋ~lq^|'&nzB6I~军O:dX+#!X1N]v~;*\U bs"hY:r^p(֣]6˟Ͼ ;cѾX,K@WLtBfsc"6uwUЄ5i;f-r24k ׾NBR"⊧G8U_?=dP_Տ+nyNLyw*P E'@Éav-ه_2o9S$=Raևv1ȂVv}7A4Yun{A@D:5 yDwI\}{jĝ=A>psώ<*vFxjbψ+F'c-VX"dec0~UܻM9f"zx͓z_yhPz9{K8 trZ rlQ|l.O`k^(*TȄ7v9꒱^N62p=*@l7#N4rHevLmZMD-p.=/2 :^n1}?9zdȐ6ii~١M9L!+Tcu? ҩ mG&G^d.̾BCY7 ">LfA~:h'aۊ(2"J SS5x/r\0+o8]`sBۢ^t̸pA! `9 Dy, ]-4~DLޏ)d++6xb;X=N v[X,:gJ3ݻN:ƻ- tSBSr9Xa׃)c(V9$t;Ht,-d- clojQ5 ֐۸T xT p-=K҃j*ы14 p)KJS:ZnpIG^)@R$]쯐f.m#ϭtƞw:#qa5bhqFoCL߃n75%"VjdιapԺf}_Ѩԯ3Hc-2Rup+qNa~Fzn VNW1_ClY) ݥf-z!T`sgtz%5'ih+Y@S0oYs#|7I^Ae4`WšِLS˜Ȳ /`(dZ[#5EcZuQr>Nܴ2Iǡ+8}Z}F[/L ٴL=g XZ/ELsG7i!+Fe", UgN_^7M ђH7A(H[*WȿzZV|R 5ĹnNA uq4~^+-0إ /A\Jh-x Tj,GytO@DJy(i3_+ksȬ#C<%|Jb+W](ge3zB~d:$UW{؟xdIBel}tn/j2JIv a|Ѥ|Q؜(lE19>^ǵuAHX&ŗzSӟ<¤;ˉ)t/, 4ҹmM3!bLvLdl3V/b+ S.I킄DP<,e37者+4Qw|[}joW. H)Ls֯\)e/jT3/ʔc3_ F\Mjϝ.*kˊ8'^8HVYns8|ϕ>eg#srjx26/)5DBZsmPl.r]'8i`5V-&LN:XZu[nUe祐dYHmެ!Z ACo6DQ@ _hH4!RS .LXѰیeSa g+7kۨY&)g9dUmv6jpT=m_}PGLHwPW6־hxf';d)#G k+9?dvksao|ɰmF,"|ljT"|6L[W '\.xoIMc)?T=?ݹ$iTԅy[\J`99yS6t_o|&}",S-oy{kGT(!l3`Е4 :}[D{G .WHDXSh4r z6wVڭ]d[G@r_^ȉKbe`H8=NV'2hg t:R} b^Aͪ @=-tUG,Np${ME?#DcG3mrIV3kEr6qbco\f%L,tI7!?)~;j4nk;bI !9{^y;֨Ec,OP#}/IE9/GM&(I7e@@Ŧl9+H xBOkA5TZ$b ߋp\"o~&shug@HNe3 Fa(8}n5CH nHqMpTƐt8H~lklDv N- tq￁~#\9o)$ EEp*Ek`TC'?j96^"<o\ c EʻN?CV}1 LcVF>Uc\ &VF>gMty}"\%sj.#)kIx#iq7൤95;4r)5sι?R`;Ega\!4tc3+dg4=^7Q KAHFbG?zLxm|ZIp MS5\@~n6Bxcd5RURIԃ SK9}z{6ڐ%q<2]w\[0>m3tל) ~;lzXdZlρ*#5u~`]0tql)^ Ί*G#RFV'EʺqH vuOaQ,,s1xs4B\b#Ѥ׉g݁9:x IN{y:hQS%+ϕa+>2ia*U]̀-]M_R6H <_ `S}!Z6֑𖼁9bb_a6jJ4N92]3wNj5o=^EE{iDsьԐDK̽"ҋ^yH}hTUU%WB=G Ma^6g^#P+1oəw6 x޷WH/oTlXT5TĶ(_9֡7#ѝ7C'bψx-vE3,BJJ^I(DU|"Wt?ٴf<[@ܑIt{)E/ ǜ՚jkOR G(`.Zgr+ Pހhp| uMq-z Ш6Ufr(^ wB N[0#((p}|vq\/Tx$_T2x\?+$W6fJMiɊFŦaG-1g a3(Ӑ4* "Iu:rˣŗ㒠O8j4ڼȊ\P!*Bw;YLᆸ~Ȅ4,_ļB;"Eee%ƳmC( nQJlmNLQиW"|Py2 b!!T2;,mm 3j~}RهKu/*Fߤ9\r3䓔!kdɝEAC\wKպV yv;/H3QJ8ir z-$~cD|[ ޛ-8D[\G$Pn NjpNTLoo 9Pu\52Ufe-m5ޥcDT )B3:?)])po;rEo3:;l Fw~Uԓ1ac*{!+E84GD4"J+FXk\ߢ#tL> {mYNrNr?f^w. n=\w8['UTw7jhŘ~mp k3 ^ր䲇8kg!tI|]`k'3@!+?LW؂vZ>ݤbU ,գH / @ų#uƃ s>Y'U ) T)Ib DPٖH$UD3# % IVock]P03JCAciC_g ų=P& [Ir6Ro6vپ>l('!"{qbz߳wq4 s݈#I^:/?혿ݎheZy<(Chor'fN IwBQؑFN ^.9-بq ڦhp^Zr 7?;}^H!֌xh:yS]f{}j<]nBzucX71u"'* Q9F4:#he{o+@x$KMUg`BO|K=y/BҞچ%ĺh --}9ء=·ҦGdJ]dOp##ע ^c4p܃,ŻC aϡ3V (R|~i Ys B8zVLP$D aHlX*l"t`p>L|UP /(G:~B=o"ДL%"dP/N'!248QG4#F~\W#dwh&^͗",jb̴A rUk(@/d f :R_5$5M9}Ygli)~FiHԱ?r`Nlb*fK/mQ +p q޻XN)} ~[J/G t,g VϽpi )kB3_ 1KPq'KWF95J1J#ZlɊI,MJ$D^5*#C>␶T]*_]=~)0_"Se,%3yғv@-Üvn6-+|i!-PHF$ҔKBA{L3xon##SZT#M7\(wmo0 <ݚ֌" `8!dMV BI$ *{Gz#Uhb>EWؽp]J:;H0ػH7Ttjh!/p1|G{f3%zW]@>+U=`ılI=>J"L7ڦq=Ѐe:p{UK7G?nc`@)#w8lEc/0 MX7B`4Μ;e%#љ{JxmWMD7Mb[adH`o>:6- # z\{=LϓeZ-8됩8BVbx p:TLFӸ`,eL+%^\~yyaoi $l>ffb'iwl > *Qu%)k ]sPܽ{oƷ%)Ao҂M4N"GH m-Ѵ'}"|Csi觙qm(5ˈ SlI -HHʋͫ].4qc s` 4jSmI(zL HkjOqwyޘY>(H㩷$^l4lodrq=?=wl`U=Ж?* %Us`"oo  >p@)P>~M3 Su [wb4 `jݦ$5.oW.rM)]B޴L~_ٜC&&)hnrZه}<& ^pE3T>ߵ ~AjeA`c '0Stz]lϱxV_˯n@/9#OF1 N6tVBp,t.B/}G R+֪@ɱD`&nf pU a E#G[9wUv*EE0e;#v*{@Z->H [EH8l{YeWNnF~$$}gP]erY6SuP~ci5X) tXl[mwm1h2eS$39Eݛ 쭵0PG'NXk0-O+-˥ܶ)A~ۙZJRn|^y췹',).\ꑏ,\@=x'\.j!W-#ҍms#HD~Xj%TZO,b/hG"Y֌pO. \c@AA24Se+$vc\Rkbu,]AD#݅>u^'?{Xd`gB"S=oF-TFy^2~":y(KAkG`F3B'?NJ/o?Ɨ7'`+x?1 . Dr)%[n@;{L*䊙/?<#gwW G)KkF"*|RlBj^*hBEۋ$Қov.́uTϮ~eİɝ5_AhCkPJ&H\I.XkVdVHIp[Ɵv2&y_wwq^?|;!8L$GY,Kg;J@,".^Ә_Q/Z$f✝ f0dʳCvOy=i|K~2$!u RaaEyvV 7-LgkPS ,V ?PvKTT /]gJ 7bt4E[X-mvވlc,|*f,\( P:>Cvr3nsF,ؕ]2oG~d$|@"\ua )qH1cP4kư, Ա{y&j=/lg?7ل*16g6:&fkk&SқEIq˙%B{O>LrCkH7 =;;%(!]49m@DDWho"]>hf=ج ڋX}K:R/Ah1\ JHVPY /āŨOeQLNzVZxD{?yS}xQ Cs 9iy(u!`PgHڜ75hG[Qlqg< Kc&мΪ3koH%OZefjM8PDq$10.hE `ߎ1a ++@֢P-PP\mHπE+$ܙ]ee|/kbY{; *vދWh la޸sxԑs2af]1١BרJ& ր7ZLk͹uܦۦ4Is_ݘzBAo/pQ޾00Ȑ dzYuJ?`ј?nr̪]l"#?{{jz1r д)F,^EXҸG( -߱•OCU+۠+%sC,p{wFQN,4 :yb ^:L|x;N[Ɵ 7nA.Q=O'xSs ~iaK$yWW žYN C۵ĬMjRHWIoUy.nN4 ;Q֕o]j.x=0p?0yޡl]SJrN7D,,8T>QvR]B<;R `& ZS/ (O 1,`]:$Cabu45Ŗw~"( 1T b2F9_xD;}>ùckp27Jc%,Dh_$EVM@UO/<11\0O`^0NZWsB 9PF,@~Tsٚ='15-,b%Y.aǎ+b/ D'qpO95K%|οL l{M]QS~[w)9/3,>·* nc=, nS4ډ`fc} P{*im"+wvr+AC NXAuyzcQ1a-q6 >ʵ_@I3SϹw'cuDd="RUv9~2|BJc* v.jAzXQ+ QAM5?xh<.~&"O-^Vw/#~'7т2,7?=s(J:Nl0YV=9S2#ŗ"h::寿:GtMmФ%%tWyZjR@CO ,p35zkM&@XRx?T͌phN^ԇ]۵-EX1ĝ^YcIڧ,  'ogT0$7 > -@dL䖾p,z$" E8438F.H uR}#fn#B[\wAyUk}; ` JF/c s5J>]%o.*@&w@@ڴA_GVgB}G0,z7q[O Um4?`WE): ?MaGk^ y=y9OMw#-r?~>?1xLsB8/N\*L^~|6L`YWq&5wgCL}}{"qhf߰!V,IrPǷ(͒,ކf˶`i!mi & R;p6H9~F`Z&Qn;ʵ-]uFG B; /UWE`KͅQHcf$Bv~V^Iz}mfH3S H0) ~8\Im~%ȼ+>Z=.2Lm }oVUő+*))j'CD҄`^z?w K]9# V<+~gjE}cAu1Cۿ6Ks{Ӑs|G7qBGSSXޔ Z1޺c5y{_yBF*l7c|T7Ñ`b$Y#|>[\,ݘJ:*+_1Yv;FMckQU1VE >qEx a`>^})j](79Y w6ˠ'hز:H0`[zA zK6LФ2[.X KHU6:x([V՘ #)CS{Vpv[nj.cȄS؏F(\1MIqKi qy: y銹3WISuҁ_^ j:$Ǒ _vfFZA q?ƛ}+V V`iv!fjgPhD.(Xp^YϷQ)&,{'Q4V_=o(PO ^E%!TWٌ}vS=SVTKt|>c5`eVkяYx;B1D/V4E{'ur' '3 ~Ű٢[LuDsx9?NcvZ-(>6P$p+cT}%dǕe/.('XEBr.\Y!gD.u-Ζ7r?Z"/.8HЉqă>ZJVØTVX@k$+ @*DyqJ@QUSL1x2EH$(ߔSN^czMS-~l.C{bY A 2=F&k8H+ߪ֒qf 3ީJdn2tKq_uxڬw p2LYl3\E"ZhȞ:AWZ[5D%^Rf Z7đGgl%M E3pϲrXt#ů`qA+9#<ƚx; ;Xk.v9KB6fe6-iVXD2cq <|'7#d>gLBr&VjtʇcX]mx` fj#G¯!Zev;ov4=L&ѪPT>]b8M "I)v rb~ʤ? @.gBc m:u9y+Rȿ'y&N,k Bl0_#+y#r*hoZ`Ja7m+,+63GGi >0Bߢ^e+A?|#JwY?Sl3(/$673p^㐒 2| oN5744\)ly|zdܢˀy[ߗryRe?YHأTMh9ٷ+qV?` vtPhmyu꣸}DobINgG򩦵9.Ǚ]4kJ2>aS#{@BD4Ycʫ"G Pv_!3XLSB)&k ,ҶhEiN&X@EJL]TؾE UI6[@3^KP]UU_F\ir~/uŪiO ngc?n9 *jMܥEwע) 8^K>UCOp'bߒlm {=gs O4ԡ]7-w,F<4ۜ^&6I&xG#<4 8ljΨ} p7~fA0:8-K2pşvn!)Ô~=μ& w)=- ք&cgl_6bԘ xE&,_]N(5okE.;UWSkU%OC1HߜK֭V CaEiuu͢qBoX .W'F^F}?qSEW18ӗnYsSN`~A]MwLWML|1 iaC! #;%Cb9SPA0qۜlf\휳yy< Ğ~e4΅ s8;< ֛*32r|%bFcw$*J9`Anhq(@ ]MS}J*v;!)mge#B`C8YW1XEV`իX~UOVMK0 Wз[G>{_6yw LK߇a1 3A;3Y:FP 2a現p']LC3a?z : |ӤX1pyu,F?"\%40 Ex0 X Q%[22-];}\$h}~3*h:~uY_/B$02\^ymi%W}5Wϥ)tc3jTzFVl 3Gg"#kɖrb_ƖX<-$ aPop5ߎ!+<-] H?"gp<@=9<5!XܧW' d+-9?urZZ勣 :/7 7"ۮÚ0xj7vBLe>{pH;: *|o`fx޼l&'X*BBG˜09hw34 jWaCw{-%juhw{ͅI!bGX7q&Z+<ӭN{ फ़}c`iUeHL*h: $j2x &W:9ôXTU?mŜsވ`άĄ$(3o=8Y;̅ c:Bw,>X1/0:+Ԯ rxU1lFGNtVͩfwYL-&]V*"l"cβXm؁Z[,uJgL\[K6y?SmZD0$sT&u"[L>-rxڽJR]:MI$9D.\.x il8e.'qhͱG6.9vtasDXT&Ć0sp޲3|1v '?)#?Ks8c Oedclӊ p_-Pёxz$4&\_-\;|dRPBNou[}Gq/ᬬ!xnt\zr"ƥBLS 1^(K揬U9%^>A*VyM:~#!L<0ŝ`H[9KmrɭO3j{[_3Z:J1U"(竂׶6r'[5٪nBl5 ! Y>ЀmN ^g}6z!3U䊱1Q%hcFݲRt1F78-SifĨ.VёȊa^gNÁ = o_xl(dx m JS:B YћIqL8gp18UF&,0AHzYlD(IzRBZ4qڟH.:SMรT)w.*X)~?sc3W[j&VZXU@@EbGnܢ֜͑JȨ[{d4VɠV'X8A6zr%# &-B%UʱR5T]t'ΰ))UѧjSܝ1ZI:[`D&УHãk zBAte-״ >TIie9@_Vrj>?]ܬg9..WX Ll[Wk c9,6!ȈYz2a60a>"dAxZ1${jd'߾~VgN#&ʼn(FJ7?%ꪚۯYt#R!ˣL0*EX8Glvln858{BaWF09T֝S;^4aU?F%!Tƞ^tvlXw1ޞ9 G HN).o)|N/?A5NnOIyJx#C!P:I+`1 0驸oM\C9)@x3Al6ظ(Ofmt%gQ Y?zӚF@H p@̄ e(Ԓ 0] 6k왑Pb=u$"r._e¬^'2H 7HC :;}8Dȼ+?ehBzulǴ?ZqjD/lvϰk6*ם-?4mT7pw [Jl#<(b(t!'^$R=gb?Z'^=T߲[Hѥb-G.)%à ZN(]N6{3xj6 gf\ޞP8y뺵 !ԺzqG OD,MF]HeFQU0DXDn t_L>MK'{s~~*xנ*S#6h+$.hѳ/pyX 2M)'fح5Nc^,64#o [3A&{?G)azOFJZ*M*g瀗j{]5-Xw!&D &=*+QmWಣO&D.z$4t3^JҵҵA̫vF֡-i\폪5Bo;IO@<_o6wp[ D^~#8״E0f`nvyfLb[5< suwl`-#VG87@ o4 +lp((p$Qn_3whٖmGWęQ<9ilJ2DK@E4%o)y~ Yp3]sono?Xj5{wIgPs/ThoS%2 *d#QBW cjoeqj)s0^ m^1Q6 ɥ `(9Z Dc PCzBI{.݅X1K@}3fil<غV~7) &ƔC0=T?a:໡+Ω$37ّjDTZ+1B\c n(kByL9,24 9m+Cʼn-pzؓ,qT#QK!'2n>ZۈY :V5 pwEu9iT#BaSѮAz%,鯅<E)tf\_7]ӕV;W2͎C#-U4Qxa*/wTw*D>Z'WZO_S槲#)a9ۑNzٚz-3[1صH < XWs KKfey|>N1% #^U<i)|LϲO},̵U [R;b8芑$Ib;VElwVT`}nr_O;r/\⒆O3@7K:ۇJS.xYG)1cBRN+\Y%?fR|קM]C.Yd>T kkC̓ű]K.)@=(( v*ֲ[zY|,uʗ*K8Κ[ J\Udju @q ؿ5I>LE؜?j?®8 (] hliP+`8rg8f]zô,Y߭GUҧT`w #9(g[(! u8z!pحWb)cFxu7A FGjE5r*lPʠc:O"rRC;8 ٚK"Jui/YGn<1D{n~tޛBN'T~]nQ>>&43Άƒe[ U6)ӊD.ii {Vov,ɄCtjq/1~Sm/| gMhY"mtNjWR빍?{@.k@ɑ8wҵgKj!PNҸ~Ե YQvS@~voǟ̓Zu\?ԗ^Ca[v`A;_6X IbA66cAD 6Ϥ@ܐbDfO Y&Sh̸'%NצǺU1$\iM풇,t6Tox,Јq;:A0LR_,6~.mW"TҸ綧Ԓ*=HDD/wN@H@B@SCz=rq&Nqn=`Z ՈiEit{$;f׼8-H2Ǩ YjT5ܘ##;4`KfvB0څ~qpDz1!KcFrJz ^xq~<'&Ŷ J:|g++[-UAYfuu|bJFċ!& :8A(,ifCf"أhP7EdOΎZvtɫ.Oh6Koblm+EYwDE-6&ojm] < aY'~TmK=oQʣWɤNJOG4FyNq&/ug9&_=UEدw-ԒT+9rNFj&<;)v˺d9fs֯1 ??ηko9C1UF)R-VE&wuN)];3MSsZJOs. ? Tr!F*up!6-| Q!鲐,T26On+mDSɍa֞e;fNy)wSoDki չ( 5TW<6D4d yƒ*A.R#VeZ[R'ëdIC&b%<ۮ3..C,#кI;,hy~ 톳冣@I׮MJC&%&uWNr'4'Tj wTX-~!_?<׉Q tfa0FK"^;jTr.p 3-?JA\&I'mۗrd`BUxEaۙHہB,<<\BZƳd1}c 3qCxҧ0Ô;!k(c-E@s͞D/mÃ)lrk%, N j7Y'ƿЁZ}A0} C\xK'၇SXjͲ\.|.i"طNw.<"1LC+3mlϴ Tk=&W)Ӓ1d}a.۽SLaKDapE163kikܳpz?kMdf DQԕ j3q!+6]u4H J}_f=וOs3 &!WCR!vA:s.A;[OŢxVgcx铪IcA,kEP)eDH$熲G-ESi}_( Gj&luc]AjtvAXTHJ_kĐ q,‡ed,DGK$&QFwEWXm\pR& 'ht2`U5\fΏN,#!#FA1gNmͽINW`ld ֻw`"gyM?Œ"/ dh"_Ze]ec\=rAƕ'dlc}_0QvɊK@9e_ZjuZ\wU׿/Rդw@F䰣)Ɨ.qCIHQzUDY[a٢@V!#wu^zg R2)yt(e+5'hZZ}ihe^06-&V^5=WiNMf& 2=au8sޒL77=1h >o΋a(/)̈fT,{"'ݦ?,ejHj+Zoprðq\XEQ9#qG|QR ? &-@U%Z4Ax(9Mi{x+;ӛu"DdOw8Wo&Z3eW\('بVij1U)uJJt vow&N`{ϓ'DV̝ .mMC@\v uB%%\±}[zc'6v;y)9`2]zud$HQo͑*%t FBl~&E* -f+c0 ͑UacGjڕ~bj>W+q~0~] #: _ (?x)Ʌo+}f!nXd6a F<>`E>`BJK.0YM'hez` 8VK13Tcy1>dÈ<ァE%wfS(MdJ7oe6΀UpCE P8e~?_yM/zڢc7$L/y 4|c{N JO\epZ[q/x"o qlD\3j7bPL/te駒/cR%>@`G5|/S|aּ72/OP!nÁ>5*I3I=C3 NXȾ0U^[ν94}av4g>(FXľixqk㓒`g.hC@ ޿mQHwh97v/88=] ᦗN CR;|Rwq2HD9 z]-SD 1vgj :ϡ%_OչR} Ohn5/WPwJ.p0䗍9]eܱ&[U߾qt \1K5+ |o̘d0秩 |lHW400n"#PyDSkqZ<ΉCh0b޷V(g9Yq})@$8a`F;.|0wJg50l͌HSjo$hV Lpo|rHsO܃~BEYH.@2L؄ eP&+v~Hx)tj( [P)NdFe#ϕ?IRţ̔#=rWKUѹ6. 2&`ybUKꩠ*7G% {\0]ԳKdV-a/]ЗbX%\&Dx7M`LZ(sUg`k B)"j[A+aj[]p:kYcb UDf g^ J!~cV)p76-!A.UxZ5.^}fL̥JY;~Kkʋ`>͉@0NLЈޕS!x ~q'=ǹ+*wu5^S箳*PTa)& ՞>nzV˵{js v6K yN0j5'QN!G^$xAB"$N;Nkuvn58T y.x웑ERD͕ OYж`? bƹ1: 4S)7,KWk1a6eF6 C 8F]4BD$-0ս6)(wX #oTm<3wEK^oƖeO銁 a1Hp}>I@FA9Ӄ{m!IƤa^ԫ(]e<qH9r(Bݝt՟U.)7YgFB`˝RC@bX7pZJE#ɔcnmtH;7.Ivt4\ r$7#_׼?BrP2:uܟF{4Q@sdaMծr:dPR~˪%1R̉;O31;{rû~h3jt 4>xerݻPh~ YM"6X7ñA .{%%%ak 9puŚ7PJ*ºв1t뷉(p0@1UFG9_ne7L^|)jYJ,Ii#iA&Φ\f謞z|o3)\d*l/jկ0utUOnF2pQ\CK!`6ERV+;kNуDjv&m y*2EjԻz1L>ZrN}}sw%?~a6f1bT`u30Xȥscq>?oA,lQe@`YL7[,8ԿQS {GP]1pSILF`b/ 5i m{C6G*ygj;\Yê9kp'^łΟ)X}ko; JEϩ UIe/_[ e 5FxYܬH(Dް]T K)(iuAsNkAdwoJ \~V!:ߏJjF=D)a"c透9RxcƖbXC'.yk4~p`-1PДT6ʶ]-ۍ ͕n*j"$XYEc Y%Lt5Z60T=*/WYY@d Act/l^!7[ns_C"bLVǨ'f`jGf&ʚ 6y?¼9#gn[fr|Q(53'Iu'8OՏ)4L{Oh^ETR%wlcU|k_)֣g 멈"G7v^_ԌrZ!{V5Pt] ^M-goϊ#&:M_"3krL8 .oo2>oh[i %Ԍ oqapg4ҵ73"xY>ڀüQI\{Q)ƠLhB! v5R!+ܿ0g%ury>eɓ;!sP8ġ4*1rrt"u$R<| ¹Gw-u#B|ɫ+J?h`uA&͓1m 'NJY2~m1>;nBƲ@R/& "Av="k}z]8 ҋ[!H`I%_%7&3`8}c!Wx&ymH#i3 ɴN.FOZ{ U58aW=ZLGTjoD`0z 0S+@5_JA'޹?;޸Gy߱4&3f"Ǯ0 .YhZ9`M̀^:lsPB%], u]p%&NOTH2?:q[`dw8hY Swk< 5=[[0҅Ԣ)dժ)Z`W؃JF/H\u!Imt^-jw3I4V"~mF[\ 2j c<>Wy.V!YM;~]8oKzQcL,sG0KaP0i'0<Ŷ@B]0Y]6icȁ>Xo&"*'V.,O|tV;=C[:9' >& Ŀ?cD!"Ch x Hf Z-.?2?'Y9va)zo:|%~BLՄ0a^pBaH'a~W~]ڕ^ϻ  96Y dl)emEꩴIT?vE;uJϸ:Pt-#l,xiO6y Iɼ3iu8wE1y|Jhp)6&P=5So L giEf5 ( S"sOܶ U*A`(ZcVNN^D %^xAR"O8@{χ PN|‰Hh*;-u5ccVd ~']=/辣'T?"uC{wH~~#^;d@JW|/6p']J#X?ZjD1`01&Y0x0$]`Mڡ4mRJgq3h,Q 6FsM(v}Erq2P4c!C=O^'A埝.Iij(ʯb$?LJSVk3|H^SeP>x3Fסc6oD65N[z< J2g 7fkr2~m=ΊKlk)JvaA~;bp#>R |ǘ'fk R"O#Epv6Xduhge]iw! Fpγ:djų|D@|PgLqRBc.cm#csOJ$Eܤb]G, - x lʖE:S n_J)o#XLFB)[|n1arjTTB ZKv|(rOxh]XayXm/W3( 7D"<\*lnp` f/És[iqRNTo 4/2Bsj9~}>MAK2'קlz%y:$x^^F)}q.6X>c}9% iA5i9)湱VKjr ŰFkS Sd)6DR8>&ʧׇ׋.Qw:#lHp[z{CY7= qw"QPGG`EjQ{EŒH/I(.x@v\ª5/L.u:mí%{dJ-wf[feHzؖ;Is^Y&3VZ[)=C #'EUm)9ӥCJ_|'MD x hߢzp> fqܴdN_zl4]ĨDҚI,y飒N?_ZmJ6_݀g{Tr6mTH'WBACoJ)4cQ^xT6r@28餺0BVO/L͜IOWz0TqUpg}U$^h"9zX)}EƖYVCYo?5KG{ͮ" Ffo*P 0'73>@:]ʲusm6iORY4{FܞxQ,[}ۿP#U:_,k-gMv0NďFD&=e?{tpP!\u2HIIWp_ażeu]a[sQ]l~ߥtOCXY3qrt":ai/ Hz!2&hPjS<ͫ685s:CzQzpVre1o&꫊|AMEyT/iޣ$f4bf/`:̲xnm $ o7hYPg{Zh/ 9:s QV| T:Ks)u\XWU!_[ +9#1$6 d(4ydF^ cH'7[3<@2fRfåmm%V;9[omWƶݨlrۓ;#m_EN$ Jݒm}8G lpb݆.iTk~Έ 9UsYwVBA1^~!T'2Ĵl-%6?{u#rˢ:DNr$4Itum,.A`ݼqgxA8&ί)Ӱd XhV"#u갹2 *U5w`R|zW0ra;߇eJ>ϭJ kZo}no<)5Q_f(yxyɯIm |肮XzSrHA$(,'[;7躗:iF0iybحM|=v3`8c{YfO2ţGs Y-hwքy'L1ptJ w b"]?A#B#l`X`~{8/߈^0W U7>ոr{Skyf6ȏ18- Fs&WfR?&NH#i't0݁>q g̢ 'Ӹ]`ܓ; VJus]y&psWUn5]P)K%Xm^gpC4-◣) _n\b:jؗJPqcc:icgeLrHvjdDOtK_cPw&XD3_ 089F4taB|LʩqJ*KXG mLpjn 轩fZ2j"YM}W|>Hס`&Y-ƫC䄨_\̎ y#Z*3XRv9X$Ľ#4 qI|_ow;Ӯ)]DCZe!I/wG#?" JD* (id!dYAᯒ7~῿%]-~pX](ճXN!#6pa԰gvG!ؑfu cxn:ʅ&hr-)He`ӞI+/Fgڊx"A ?Q'gn+J%gFm: fx`noF`s k6Vm|lOp[QhG|+/zG{. UCy, 2oq+0X<IliQvj˫z0PMkNX/f `䀖|xe  FqO6xmyT`BzSV~f:'l ^S41z5s${崾'N[RQ1R{ [y94Ayc1[&|r^ۑC/Y U2r,2`RIof[:BӪ:|,7s.vHu e'?(9-Y(bADI.s %lauŐ?_»Ýo\s3/18H.]|~U386_\X;_jjzU͍ҀgV7B%,;yz/|9ٯ,A`$MGwg1lA4U,3-癗kA+yع`l(TJw!Y_ަ,use,f)9,> |Ъ۹l"XEux_ndٞ`¥ү|&bKq{dNH>5E+\r>? 6S=PzΕEKAǷ=!({4x{i=K aY:'y{$^gߝ{)k+x*=()zʇ)<#fq{`t-<<(A^I9FsaUw,:ufL1gYEA ضKfL쓉b)8[ND%R6;vkle|?Hj0n:[>F֞xE>ƺ鰟g$B y@ ^87 O["xtBt]j vp ;~O ~`6[}*%D鶳Hr)Q&[5\8a`v& "??R m JL {~ ٺ *zcͥBFJV|.^taIcVAMpHnz#>=A*ChǯkLrځژ7 h$ k&= K]kܥ)'K˛OAJ:!Zܛxc> 'H#2uǒ8-Fg0lw lEe-Hj1l$}Ӿō~qY3 x`ʁsPv']}t :ㄣ g^Rv(+bN٣r|,-7LHjRuaf$@Ȗ֩x廼t#{fS$ vn7K(õ_0x܍$R@adfh΃S?/¢uљ%j`~eO p͒@nzy4}Ż;7Tڒ,:zhr0@@xi)K~k[<+9xD`F'2blVȬkWQ"TFiv^G>5EE ,A2}CKO'$ӌ=k^O;@ypzqX9?H -2Cf5U:OA/GSEruc1J = ѭvE+l1;O׍7«IoDY>r /c;:3Hk7# } /=+7^XE e7+-3O Z֟۲f *jf2!zMQW-Èp8tjU2Ynb$]IB{k.i% pvH+ܼ=|{]oU73mKRꞿ7TpO " !S'>o7&-%ZӘT3/zuٛ ~0h7mbȮG$1'UKvJ'-u$<8 s>\NW6-Dn #4M$kڎmdދvqw|]ΠmL xF? [:>gmdIW@^f% +|9s˶'xB8&%Ik@tVW2l3ҐϚB!g} s]RQwT!lLl>WM/3dj4G7i=fp_\yﻟCA%MO$Pҫx0R ݭ0 A11AfsR58gC v-iUyˠY (`4m̒kEVA*}o1:^nq% kΨ+pJx}+$0 Dnw[6Ț)c;Gy2DV> ]|>vx%S4ilIٻLRu@'XIWd@'a>g7ɣ͎A k$c ]{TF)SV+u:Bi)nʞ$[o.ĞC8(2sLFw݌JnPJdr8eɻrUHקnxfW=5T)*Hbwn+aKj%LwqFG&S&’W}'1'e뜘t4(=QxCy0M5>҂PK&dDAEa6`|< ۚ eBl8FGJj4=ZЕp9lB.hGlДt $ !is^cmtL 8,hI~0;A {mz+gH_kT$0ndK6+h5јZ~Wg~GFȆhmԊ8K~oqVfZ?״އG5ӵ&@m-D iDuտ @"MyӿC"k?0am}ߗ領j #z1t\=qD-\Rr Ff!_%I.Q9xI 1N6/4X;!~{R6c/d"QA1\6*KymY4.1JNn_03>z2(v4/YlPh.3r^TW/\uFF Nǥľ! CEz9](8=ET}5,% teY֌8di_ecJWp]hI{8@70׏GVu︇ZMVHR bA3eYA5]u |=֨*Z/|)TQqTuSVa |6 /@pg%)DjúGlc#)plHJYGu$$K-i[PI[ecҭkhK6ZwK{aU.̑ɝP`)|b1+m5~ZJ\KO^ס x&C'}6D mȅv{&NbZ-<nz&ޢ߷tH~@91G1< 2lx{ 3b%h~.Z+ڙW ̟iKˣ2a8#k-׉(`T M"@eG~J "\hYBkҿt϶fU3;%[,6FGXϸOǠW*.a}C3}aqR+6>5?`.u|3~"efII,EDmp=뛌]w !j45|s7mOcmx QѫLc4a7冄<tS;dGS0ˌ>I>OK?'o=)p<H-HC@&̺_RMfWT{l ^ +W&J0Ch< _F'n]b]oPwةɦnx21#t{PwX4Qe,3]1әK:ul19vÍg2" dRJN )LHW-7{e#!&{-}a ih:C[ 1fDvv%\w֮/}/tVi{E]Cx߰d 涣+ܔٸ%젫h!%D0R ͊78iWHW[vPtYod/9onŸg|gpm$ XcԱ,BʺǔMk *Q\Hqn9]Hȇ]ERw$;"s6ٽS~Ň"w( ?O220T~ֺdK}T1[^,6{p28fhZu?!gƠf j]L%MW8\06utӜle  CŇrDZzgRB.)ų =5_Q89&/UWzq.a+Kǟqڊ+fvml (f^)#<nɭ&y6^gI5+(spT7DUGpMЄtۋ)J²>-/?ᆎ*{BPe?9);pBzyX?yM.)eU ; l92twBP潬o=G3u30tQQC&H9'3& @ͥxΛLHy+gB!ٚ5ʅ:l6M,O$Ng - g$Hr(Kd;9 Nx4q7-:Ph4?B9!/QRUnZS6jqVBE&;N/(:k]fS7y0Y)~.Lt_=!Xk6i4-MrmcӷYt]#nuCtK.vV>M(!ǁcu9K G[/N)U$5a;>LEyrMgl/W2<הINFz}۱"}X)Im%6WuSfB(W\EFPd ~o{@y]*ý"[%NxLeLI61 n|0g"V# L@na;/cƊ]@DAX/S:$ TL:pЭO"V#PcDӓ KY#I$Fhz 79JAFzLk/MLdX睯 w0'2e؛Gy:`1Ҏ'iSTd #f}{ Yh`u"ˮ%gH(.5ʼn՗aUdm ߳af;,J/n߼]sarkמg͢Q+!qDUN֠]Bo:2TںVKmmO.b'^ Kqo8f6wf݊q u*2בT"ۼ\)i!rW!"QnA|r7=4JWV'HRӈ# :N*H?^@CJozZ|' $xlJ0$!V֡.gERĩZ OIw3%7pzێnݞf%r<*!;9G .OCy<=̖xfBtA>OEq(Vk(j 8tݭx рAwvؒl n-?1 PG3Jp mv>?jQCv@zl͜bPi!BBM7(l$!DG."t]K:T`'~ZwP=٥\8a6Đ"t4j:$4`!`-W"5eHF1vcwdɼːϮEede h.swY}e;P,h+]ϧATJʊbWc -*DDVfٱ/Fb6=loN.WKa4^Nڣ "zG23sFΌq6oZoz$9y-Dx2,p˺R՘_ٔGeTUEz#d}'hj4=ȼHBҲay&zA$[ r³UIԐpZ<;]}!inh[LbH-|+Kp)+)'Ø UVfhM\6ZQDER0\;K0ϫ$IsmJa󷙺{s Ljt7Jd5dY!9M ONitY //3anN<^4]}z}q,pg2RYj[gMaf@XK)Х~!(z*7H*Rr7l(a+Swt49PqpfDfL C8GGs4ۑVotJA%$HI`a$[k~4l2I U(Qٷ<cd$(RKy$p x.,MP.da^ ((H(2 EF*\ug)"üm_;8{)C ńp4+޾dS@THj6WSR~޵DEp}\`(M)RܼFkʬ:n0(j^M"7sGJ!-j:a兽7IF!m:* I)b)s<_&dR)! =l7OI+:>b&SiYAgO")iXI HE\ß /<&\+(MD4ಊ+-3&dd`.V31wIsi<r-S#cRa -$~дU+,Y}u&ۻt>#."4{uAFI!GSƪ''FYУ ^Aa3>~NI1%щɴfB(3G͹w_9>ޗ$p, \ğ4gsS(Uvyj ;lOmլRC͚}ua.NoQo4WS݈X(,2(v-ʒ#jTAfH@AZE"Oi &ZAö'#bI65[8ۈMp W>b\6SqH_ zu(avmx lnɗnmmpFڼ_p ׌,E2KtڧBޝ뇚U 9[8nV1"MJ.U0hNAzdJBxbYjyыKy0$=xXJ+|ޫ|ȓ-{ձH^e1\ƠdV9h{8[c˂z AP4~ t-"wԯiS=ёw$Sv0h?p3o[y~$.j3G9Cju$Y ,oڢnQ mze4q.=2͇+35u>Un k_ I(]6 [$c[6(opӆ4ָ ʲ$|1cL zVVBIq)-3aNlܬ <*^n\UJ~`{aEwv75=l)4vR˭œ#X(SiZ^݈eVeSr Ƒo剴D$-fkF̌5"`AL"C89(+/y"}TcA[rfZ58<0kGS POpuEr|"Y]ڶ!waBȴK&(?'&&78ڦN#cdo VN'&#7|X xs ,M,N|م&1e%+e>ͩ,pؾ؉xCmYtϏx!5<2۾ @2aW- ~]TOJ>aW3j\iD?P ^Ƴ@uتu3j˾ KUg(07#ۅۈ̆`q"ꊒIy൐r^n)5\`ai.c'uoШo in2%ddi^x( gI #sr)G5zdW5L3rjs_lOԤfW[ĖVAxZ3&J,f"šoJJYt|')7eaP1`/͗*0ثde7>8siƧ)AMK.~%bGvx@vYo2Aeɓu!X<ș)TdJâ$tj~cFOD"AV6LȞM\Ȑ4S:e)'Cwxru͖;mrUhy7ua{xD\zþmdH#kաhNJQya9eIgS})5Z#V!Fj@` :Ve/x~Fu)3җrPxmRNfz)~ QT~$QdX#s:@?AZ!=S_G6#Kl(R'䖄uq 9pfVoP⟛vCIPģ煼k\Q`̛ eF<+/fɺqIV%AnG>,d8ik,~WXWYf%tsNޝ!֒n$oѬSWS (S2,O5)\u[p#^SeX\B0 Z=]%bNza(LUU.ANk1+.0;Z4&R/)٭%tR/b4NH"[|fK9o`KLǥcNsMB1mWUYW˲hf>GE<)?rta|]͋]+|G]oPe !$CH } H:4ve;@et o%_'I3Ŕ L' IJ0* <7.ठxS@$17/WFc匰<ԄdE K6]ܥ]eԡN`zXF%n좯w M7ۏm‹ OrR0IJm_BO]*FyX;hA"ЍC}B_ DTsifAUٍgYKWomY;WK-VGeOqW87o;y5,~I9UpR,Ud2҃EDl3f'w@6?‰וF% cEyQ{c;8ǜD=GVVHOcwG+C- ߤ#F5qND?^v (Tg ްTW"+<r2B\KT= x1M)5cTutQc1\=MhYF^ d>#nx{Mt!iF"䪐^z> djOg9h5Cu="12sf˩9ARNu?Tnt 8fOwJU8?ՍV@I0+OSJ1 #zEkp#n㭈v*ڼb Ì^B(Z!/p}K# qޕLjcub,0پ~P_ ]4&&gCLBA8kw?ńP|2(5~ [Y-mA(EF;5/=(ϸ=99coet*5tpQ`ɁK &m86}hCڷIFhաh# VAZ׼z<1@f]|vo_tȠ"="B=<@އv A@0⤛w]K-N\DSh}=N"#Wutqn\MJ#5Qަ %:RnNtFTN8r#)4!k/ j7@g86dS2x6] Iu[vn:K?b3$<ޚ^˝7؞V|WVQlW ( Ry'}"8hNw, ğق \ޗ/=_GC;-*CWTxw:(Eqgyz6$#ٗf IsXy--$As|Qtc Ȣ3'DrM Vi ɸw13;%~#Ѫ\%!Q׌R Jskx0{?S+"Uf+68a%(趠b?6tLTϝnÉ\$ݦ7vG?ʕ[㤗vd+W6o;b>VKT";W@۽ K~]D**( L\q1gv\mǠ+pSW/DD),nO(Oqw.[z?FMP p`ռ|]~6@Dԋ cP`f5R6.hfg¯Mʙ…3PHk+>/}͕׊U]T|mn/O0.RzC) (o(nrRMz %z7O?3Z}N9ؙ9\Cjy߶ r0&倭{ ԅu V隖m !HN p9^Q("Qޓ$v^_7.Dw,kaܥTyFnBjDl ˄*n?hSW:Ϊ"$ l}߼fwk9eozоV#>[{<9^BWdNܺ%c079mUp}=M<_Vl]|~"lM@:=CbNzocTnN跣Hp~a&2blhozK b ^'GI55(l4G9mG!YAі iE[{Y[+gesg :A&C>4h)FWկp:=صtD?o@n2Hҡ\MЪ{ 05XZS2G FGip'I X;PaQjwA0xH9bW8lcb|?Io{hs/d+G3"2m4$tgj[4[ӳ(j*=XVtNr-WTm'i='&M6l!`-a)`RcieP%\^LPn #B)/dU aNmC6]eur-7t9U首rCҁ (u>ƺs/̾%SXXg -:0.ڥ.{MC %{E+ 7FA"4=i.adk*Ti<~ s.gR&ҙYĬWy,N0ajN8I;`4xNc"!yf_5gJ[ OHy,b ^300U./Q79cSdC^d7s^(jĕн$Tn݈}~3 @͒zApS}Y<Q_bT÷Aی20 !΄b*1Dq+ H/d-ĨӺ^m>> u.R9-MQm?Y;t`ϴ4dz6c>/`\O%J5yWݳ쾲ރrcXImaJldJ|} yZ1T8}?m'BO~QuGH%>]@"Q׹K]/^xc[) ?䖱cnv$ WI҇,T%Omqi _\-DI,3+9x?LIRDDҀ7y ^_|v+xҎeMwIP0dc@͘6(bR?m +lŵQȡ^l,3d\:Ճ]Պa~R\:!?▌*h+*хo2}vf`T/ Vtlsvt(O<@=өX ֧ΑTBGSgn3 ;AB!B6& @8ط= V4iyAđSL6hK:%U?Ҟea=3d<`a|?ڿ;y}\u%#!ﲟ1aDս׍,%y\H$9)9s m_rac3Tك8WiůP%2týaDC\1ݦW/ʩdchbj~j0]x>) 7`_GරT$(53 A۝EC>m ^fob ls jR~SpX vnhEETτ\O `RC/{J\X)s37vб8ʝtm77|K0 Hٺs8Еnde[)EeOڞzo9hHuٹ,ORgN0#f p-B.kqW*C;-$И&Iu`! +F ! oFx*PG V"4yJi[6"]]y{Ԃ57 aSpZM`Ze#0֌CĢN繜t⭾K_nB8klVs~d|&J7hvjOWJv9!vQ"W'#6B2-/ϾS+\fGRIme[OQұNR2>eIKyu #3[1~^/S9|c/hZHh(0~u:ݕQpG.D=no*m.0 $ݬLc$XU7fwR /cOvӧ~A¬DUR}}Qy`i*lhm0p yoeRwrJZn|m=uk5ҭh֊Ez \}lC ۴A]P4khrH(b!)^d-SQVM[!~D/, j6ydZ0q]ߎ!mٿK.\$'P䴸jW6j&}$e.LnI 9~;YՎ, Jtjs *?9wÂ7@ѕܹhXњ9GB+#q8M~D^7K;'o}PEA_InfHNo. _iw貳k뗭=dd>R녯PV19w&j|~pIDc>vV;@ZQg7=PLĵ G)IloKMU)0BWՕ~~5Guj3mqB*xwDHִXdF ';?ـrOAT+0#Zah$] rĀ@@_u"rV (z1'NoTefgtث䬋N^>R<9P?M|4e/u}ly[3CfVXcΩm vRM*ut6}x[P]y xWfxi"OC݃fIuNR>MTfkO` $}Ƣ.$K'o;vbDRrU$#S%ᶂ>/2`ٮhrHNwc3ٲlPIćY,L YdHS܏Ljy(:0a c|ƍdF܋ ՝gIwLJP;=Gϭ DIZK#8n[,Мrm<!7%Y$P2@'޻HmZl xнR`mhi, +=6HHۭ6Mi#dA0BoϢ}hLWp%.+| <8F <_G,6sۮ oY ߂VNӑ ?^ۏ7|.-QHu&k+{L{ou*D<{'2]9a_$bUW|i[KNVdž0a)ziU |Ή8ho2vͬ(nPVZwj/gf@ʹ"5="i2sd(;XQ=uQƦ\Xeu}EJ)7$nUCNpot"|ƍAZ`雌 G8 Nx+/`Tg·dEFu?-l$0и{!QZ>rC(iXV?YF?s2+iE24XF##OoPbK5iR \τyGLtҡHT߆Mx.;|:g+.DaN'ha̕5F(O[j^z,MkփTwzoSJY6IyF$ ඄NU{Ccdu 0fӠ4Z[?a2%D?`ڒ o=z']e".h!Qҕwڤ0r6\ʤкVS0 ;SΣ^6+6ˀRm& D; g3ut"䬱F:sɟ"t:m.8vPit)`")7$T#K@hqMMG@44a) z[{WS~>*z|PpU$\,^[w7$c&5 9`Ն\5 Qh:3-{7}*Y*Y i$vxKmN3Qw},6k[t`E܇0u(K1' (C 2Ɂ $oSr)n|)MC-hUF s 02Jwڦ[6X(p&Q Fufr}3RMUpoF)mYltjWZw7,B]ޜ(v#MB𕴇RFq=E93:ge'oTٞ$,B_7ơ˭HexR#1%gp>I'P(@~PQ(rpȏ~b @öc:sOq777e`g1s039m/c] S|{;>]u^RHݔHd:d6] SkH̛A@DVYv֓nF΢1x?Aџw֬B_uYgx&䄯@[ǁw p)Z'vv?qK#tS$Df~1Coϭyҍf)_i߄i$&}&5ir0'a *f,Zm~.Thaf8Uwد-h!Pe$l} {GY( 'y d9u 9X=yxblTqKNx 8ׅ1 n-f*j*. iFgBr)%"ܶ {V "!aKmܳ_ ů0JuP,%Ȳl4'N;jc~ՆҀcJ"~+idrñΈː(3-+4qR:_Cƀh+d*yM٩=c!˯y;t2`?ϡY3,Ȍg:y X%M,sS ,u4/S6[J>򡏈 Twd8&y9F*@&MKCX 8taq*+EY.z+ֈi ӟe-6bmQL}!`wTѓ3Cn~nOe%KGyӮRH[8Ȓ0Ⱥ[4b uG|}K"i]fvxG_(oy`SB/؃]m'IZ^1Y|E۾t]S W 翝iadD^ea61eO?L&\H@o-"~DO1:lqs!voM3;mZSX-5]XmH7G;j |.K=Jlu )Ԉ-{|zh#ǥW477yvw DmDԪẌ́N'(Q>?4Q#f*b2hH7%m |2guu'^ڋw^J94z.;0ZZEW8A]gߋ.;Vp}\ZZqb >'PPAw2=v}O;[ _ mڠd:M5X5u;ݳz;~[<@4K>G$qȾ^U]oNSh $`Xo9nV&`>ɉb< ~bT7+CDb (I蕬2#^0F$Ymi`\QѥuGC5=*ɲ>m*D, {,㟷affq q>yя")g#-Y#b^QI 0VLFQG͈t 0Pb`DZM]ڔls1& CG}g$hns8iNVC<ٍ^2qq؇;45d.u4 W/ <Ov `) g!Զ| p'=8׳V "]k=X_U ɜ/(wH&̲ :( }]0h\4 <Pi15s1 a اtv"<.7wi {:/%̉ ~C҅f5qx3W{4R*ŨLOILv†+m6 U&F:@LTԪHw_(ǹa3bn':a~r &Y l`0F <1ڳ3 e=ڭ4bwpl$-]S~3cEKeҜ {"N4@ɮ+2`?J)C.p~=6 B5!Zؓ-3NB玠Cs!j5_i$Ϫ satXbIlY3qT8bol4LH{0`ׂH1d̦󇂟ߡ=1؊&Iym|2 G%EoȏBY%dů 1Ayva3pn^SPa'6k}{%TПX7!ޑ])K \KWz n( NlzR38x1w}@h>jA E;Ny6]P>#F>&bc*a=~;EYh3.-*6ﴀ\0,4utg 1: <*sMyUڟD\cG4d$nhA7D?npqOuC X4^ (D^7rr n5i`<(t|K-ةz`B@? ugQE G}F;:%2!&=~Mɑ " ÷FgϰIsx63]/7+m1 3㝐"/ʘ#iMڕ(V|R65Ó`b$`-E9 p@gxyCw@W&4Y}!g%o߹}"oyzpI s N,?oF J^Bw ]52h7!ĬʦK:`kyGb^̥ʼn{;!*%[y[OT;zYK,/HsPRyD11GO%+Oy]eI}VP4IXNj&\U@t Fg/KK$|B>F#eD B͗q+ƝR!^x)9c_rE}ث7m,_ϟ01!p n_48Aӈݫr+m^',oEK다-!/@fW}&Ѱq{ہgo]Ύ.j]՝u0NGbkF넧q9Cp=L) #9o=mDf>2CԆPÀ^sE]>3;Jꬪ(gBcAM:jN^A1굍i [w6MwZv6Va-,K{/ievLu2SZz/ x cEhߕK՝Ў>@MeUg~ZQ٬EYv6 ImӫCnj)w>/+N`1Py LW#I rM.Ev1M[@9<6$Y^{GfB@K(ͩ>3h;]-(7:NZF\J uW%/Mh\kWT*r %>?Zwj,lziAzhaI^ΏG[b3jf;Yxf kT~AKjdM꽬g>%iGxu{:(Ze=,Au'$K]QQ->aJXϩR33oݮҐȉhXh8&ӎ3U ߆1gUMIF$~63nө VE)G?[s vt qOFH,K )hξh^ 'RUSj_+iX71)M-ɞ;f]rKbC0VtKǏv4KK_hbHm)5ewM#a.0ȫ.B bh+sRe2`tbCP#+e"r`T;mMnAmB ѷp՝DWD#-f? Z:=]^?ͫE4ԝq n5?׬%?mT;qo*V"x!Qam^T`i$tq槒V2&EʓnJP9of\+&9V`(E~x8iͼ}o"ު)_|cs=OGcDb9ZbbT,zV]!l͜[B{c5.K!yP |b^_W1;HP&YB{%`hT\]mP/˘Лk%xBP>c+aLяS\2.#ݸ b.+E :k{p?° cvOϓh&f,alVPg vX#|Q_ej`7tjP%kщPMI_2Ld䵬֚4z:U :҆1hmhk@ |C@{H\ g wM" }d0S-$Z(7ֆt7RB엉|[EW+\c"h=✋U' ?2:4fBP7̀zX>B(o8DxssT|qvտFp8Y8о6,Y2L~&.)aS+WI?TL%QΌcCnqr!- q18D-zÖ1`fCpk>~2x7ݍ*p @1pmq oBx#1 uH/n=3h[jY®09)Y0jW'u9Q 6q/;kd5!_A_73Zcqaa ȋs5\惠a3Cjƾlt{RZ̛OOeɮVΣ[݈bW:G4T; \2>n*QK-V|<5w]K"Z,Rd^z4vY@BF1b>b 1=û{6rG1ck"}#e1.| bFɵnkpq={پxⴾGF[Oۧ&" E?6,aedvjJ| ڷHòGV *`3yc9pR*]Gk4x sC'͜SƚY͠So9GiP_%e"khk3t )nwkEH+z )=lO33!M0-"!|Dflhf}Z}MimҍaاcU]Qݡo7m*ȍESu?L+MTB7m\CN9QUd_o&t4J?u }} 7g$L:'8>fϱvve8y-lJ&Y>cNuKGe+{ y6\%h s,t7 Ru"?}%ظCqN)š_2slS:&yoR{ 翚\C]BsF$L_DL ޝkXw.g%q6 {`#pTDHEJZzGi9c;DVu>kAg!Lo͡ tF@r͕Yx+ 3W/s $SSv>< @C-Kպ]L'Aʰ'eFiOl8 mjćs㻦pog6Pmaha`I͛<&&Nao(Z2@qЦp(0_n{W}"S8{4 цp|ݝM,x#X$H %Y^_$T]8(c{Lz5:9$4=&󝎍xLyP${ }`V^YBe"y|T W5zś±,㝣[]I00Vn:/SUCi+]Z.x[z1`` ^F3w@c B[ ;/vCsSmӝKSl$xl;jyDpm0eEq6cTX߷N6%P#^N_} QS( Wlj]F[@?V LQOCGuͨ@~׾b0+%0sQu+@|8gG8,+.(;,K݆@ IATNYwl>V;кcI{b--E:GRP G![ EtKp9 ?KWլ?7zu1֦DzjvT3t &W]g`Ƚ& B6|Ҙ-f]*s<ւjTh#6ho~5xLcyzH;RIyM8Ou˖wjco2G5_,6f~K}.'Ⱥ H N’Vx0S-{řoP?rOɑs֑Tsŝؑ4iWi_Yxc_)cۃ$9:t$fP6akpgKxrǕh0O!°Cߠ_ #C]qE .-KDLpAd\7^AjƢ1NqƃKU qP -xV'2US1܃>(zsϏ@o69uUF߃ۯ>C8!]!NF:i51@ܳwfBu48 sD[ff>.v̫c] {c-}"OMvW]3VճQ6W9= 7{Z QO-Qm-OT!}7߇"?iazr]l|-i´gGKRS,s˱R6GeןjzJ9ZLK @hd}+O5iOޏԦ?J.d%Ƴx(ܸ] &n"@Hcˤ$K c\>+4Iw,+ngh` ŷk:xŽ/V ~6IщHf$!E(6p`BvoO@hƱEz~b9 ѕvG2( YG kIϛ 2(&M2xLXj fޑe4e"22:r؂f:~T脌BDYRVѬF{Ts>MJ9|MˍǝmR*ogvy:p4YUm"ݱuio #4`c(#x<eh_4tG+ê(+UO.8dFS7ISw܏nȢ.NCꎡov'gImﰴ/ _fYp`,uߖ9UQ+Тzsz,KI|@xbnH=K qFaZoT_m)v~R[\eTl-iJSs K#LK>g@{U&:TֈG42hzw,m]!#d)WUUeb<C)K@+ę"eSlx1;ڂ.`ӣ;+7RrCcDMdX^pcRw7ܭQlj@pKe;ߨ?,Ya\JEz2V"_R n^2&* >FW5 &A-2:~8&Q6D_p06"wD.Ðzz ]17w>FŜEw8h;,->. 3uH Pl'P?B*XrzǮ9y?c%HOVP QAyH{V}jbzMd,4@E!.p AA{e_o}]}zl30qDg,R8o3M[ nv姈n-VAubK;U)LY0y5 =6*oq\Ep/eCq|x7dǖ[]b@q{'>,v 8 aw ӅfGS sjk\%ޚs _#*8f˴pi0S*\Sa/> X]ׇ' &#&oqNmllGEKX3:9tFg9Z I+C7-5A.OkZ]ih*S+W'y3d %Y]F>`t~n;Ĭpl`9WΠ$~(mN%*A,؂ _v[W|пۂ voT`Uz% ݵu=bΞ[.jurSy9N h'girEZVdȖ[3vNy 5)1;OU#5f@ 5B}aӽ*iFkܐj:P#ƯJ".8B 6B,=_[N$UZ`lyV2pu=p^ ^{b鐒f_F_ƵXq:3Q \q҄U&y:$nXB%\8pcc{3ÂeP*Twfs 8c7=Gh=W9{#z"lК~o˥wy>xV:gn+Gq0:1GsN!E-@WvRpK]gn> |Rrغ{%Dd^ ;i)LdCq͉e起o4J_5sAcZHLՅ.5OK)vVb| OJC^-$Ԥ>!]#N&Nt'4,:wi;5#'iwR{k\+ERdܞD'͡ |rc)@6m&I2q7,8?3^`WHOz"Ը`ǿOM8GZW?ć n(=wb=>: x] 鉫\֮i)o&" 6;q;1VøzK;,K:# Ǫ4AZkW6$tTvIRÚ.HR$l\A+#f7)&<~%+85\ĀSS5\H="Y]NvVsR"Wlloٯa9 bmX][A*>Bw%x03QBjw2Nk"Uy+tљNQ_),)l<3otO{yC]x)zӑ] UҦ,SٲQ/4/g;bwdtP]SSxV>UsjI18Bnq(icޙ=ծ&9SC|-٭33J/{@v6iX,E0jHHq \+:B{6mΰs6)5ZJ%OpepZ+zb,11BnSm>+~%yOp4EL!5x^RIm4`e `>6j S"䘲0Ii&YjnJsOziPQ1Ss>jlV "+ ܢ{ذ ^-/lB|2 ]B_T^ Vռr:R~D i"%_6 kcʞC-beyIЦQhAƎ.021t7G5wxe/DjY6vQX':aXyY+ELh9@.~}VU{Qq2hZ=a1/7Rʞð$[mi"RgJv>^V4ӕW'ң_:5kn~__h 6Ft5G&kBgagYXr( EzPҟ1H7RI6Ԯ9h4IJ1uz:బȘ _h%E5`AxYmPSZ >VT6wY G՝c++< E/vU4; R)JdT+WUWeGxQC㘍[h6QM < Ϡ HM1P`<.f酏U~IC%-iF|F|X'Gt)Ո㎹tAo5J|um+ŤPO{2M0):U {Sz4rbXppY9puSʞ֓{,&F`ErEPki[ʌ[/Sכ7ǹ"qڄP^}( ֦mL4~>n,qB.|" FlsCJ*vNQ 'g/(]XSh}P'$IRc-q g-jFz@_8,ά6;g@?pAu`y0pMJL *JVKD7"<م!9 a7=;Cx\T0:й?e *jb#;_vJ )|[KU17:cڪDS Je©+ߐ| )i1͢@jq}^%hFu+6mЭtT#}+OyJ|*mTt&{@ȓA,WdĖC[pЏ*'r[(>3gh( H// Ͻ,DWEri8YVTf༃"[ZŪ\-ĢNhm}OϘ/WB·u!OV<%mF/{:vyPY&DXky!0;Cj7Ȭ[?`,8hVWfp(t(յ%Bpұ["+ G0hB`>h%6BX^n|Ò\ s`Eeփ=l}׌6_>(VPnٍ_}+ª:hj crBf A"Yeq3rd<m6 QYQpy#5-e^g\Eqv/WjeJf>a(uKJ!ruE^0 W#s;@u;EjڣPEH` g@&ݷUgRf>7?2B(:,Td̂f W갃qTGo3%c=\l9-r ?5:k_aťb yo{[v(1$| 5NG},&k^}Hݙ8:M*n2+$,7S̐T`}'Cm VrtEzfd,Y^dmE8jvTq1ȧ%y虖yu &w-2OSem_TXO#% P11QդdU|OU*pB#=:p6ըr6ؘF^Uw}~aXlq7wp(MZL#mO#s ?fu:ZX<S|~tk|G/J\*# ]+J4@/~c|ZR^{嬪qN*Y/xc7|REYLxo[k {5Uu|mòP~\SQ…gOu3)vN P8V蓒|vH >GƪM^!5h=9|64 kGcvn@6<%p W;xH ϰ:y`- 1u{Tָ'Z|4?=5X=h1~ov15^䚐jߢjgɻHKW 5cLQ^ j=K _r ,(!Y!$tS`0Ma l+k7'Xw6|^KnO_IX4Ad͍͏DZw'%kKMTs{v*|g,}Z[*@  z}`Y =\ڸlkS ҁ]1drg&0Yv2cWB1[3xZ! *zmP52ωƹ0w#30$[qLOی:\)X<8"!r  57v6!NB>uUS,wS\Ux.mJ'2Vв۽&ɦwY8:g.aiiGoeJڥ;/8S0m&3ZϚٵq-BAً4Ml(eC)p]ɟBmfjRG|O˛Q2(N]-eo쫿4cCۈyN)VOvw0/aoM %}>(!F, %#?>i=S1#tTWィl X I`U.NbknA]7v^#GN^ěIURtq85S1]TzHsGx+ }≾FAO$ {+ta-\8LǦ+ﭾɌQiF1:J#5z8N_"X[KlQ)9v&?r-5MH0ܧD6)71 tSγ+# ]#b-&sH5M3 ^B"g~p$<!Gt`I8dz!(Y̎-[qR8R>#@eHȚeHjza2MW߲<;\#v$x% -@ƣ.%lƖѭ7$$({6IgVIXi ̨'/7A!oϤ Jo L8̎ߞq6Tޒr0Ӥ KqH!0춴2+S1u!ZvZ ~Vé!pq @;ULyϳ,/lUol-@n/c!YsՅSŠ-qGl \WA1г aBk[ӫ)+f~etE"N\6!w!my'YgSQIsݴ`x\K׍ (ŏCn(pOP?mjaVA@7ː4镟9խrPA nP!_j÷/'Ct +Q?z\ 7,BcL&T!)ЮpLO&nR9s HTUy_cOORc*_Kdؔ%.9I?!LGJdSB {GcoBeAU{=4LƫAɓ@%#Ӓf Yd@{nXd,rA*i/}KC&.U7J~Pj &6:%v|H]M xq ?Ok`# \ Y|E(J"3'…v$l ԤǏQ C8h,ӹHJE8刲=6$㈻S.__ԃn/y BLF5(oQGt]lQ]ڤPS|uۖ-X1nɇHƥ\ڡ1MGQ|ˌ4zlk3fG CNBr7};`j-P~d,r^j)Ǐ|7`珺e()P>$;SAS6o{SQ#FYӲg}&s1<'A\7-x0Ϗ^&n~CHɗb0pE` y/ꕜy(f\V -wicS2JLRΔn':8 0Gkw&5}R=0`Z(d߳ՄfΡk{ԺKs0*طLHڤ^$6'㦷gm}ffM Ae<\oU执ĎˆU{ػϔ΋ɞ$$_In뎤v[Y <|VŲbɝQ I4'i/jZ)HN^DZ3[nm2, !Agg>NcBS[A S?Yt))M `S(ChѲ$HC'$d8/\MGXdU ۍgxmҼ79WhːͦY _W_l !PC6z$?E')T, m]ktw>6 c5C5k-Z5 Y=nU;=` E?z`CF2VcÀV&GQ;M.0?'#Mt娀Ȭ&`O%}K?)>pz2@Z& T2Jj8Qc;@=gՅt^Q'-_<ИYFlҰ+<6pU?-ۛ6tpr˛jd Yb͉&B>P!!@P@҅_U*rJ#!/UB~.d `/rc{>͙MK{7'l}?m}^^ &^{xϰkynQ>L ,\ KóP$Ulohҥ:m3RTb} W='o_U>Y]mťRãMTN&P )ńg{nO=HE!aP9M_.ckrEpna>n J| L󨕓,UWZ5^{~h%AcH4q߭4a+ݛ$΃`0<4?^Fc1.dR"@#3$Yۑg8l`K˕YW,{}w*WloVIg#35 4U!ӉꈰT QL)Zc(U?+k) vѨx5Q.N]GPFO2n5j/#:W9 h=4a#u ?P?hBWXQԞIQ=euk4o zZѯ& ωXmyh`Ur{ 4)l9Kmf1 ;}a5l휪^|8h^&D5&LGB&)W& CE, f `Ң@;L\?IMJX@o{;C?]Th=m=[>3+{Hyk _{+z߿w!@h!$ÖrI[M (r+-|`Xk:5Zq^еV8 f y)' * NȃLU yBwr 陵,F#cϮG @IO']nGzc9WFKO=\ː/ 5TQVw7X[Na:Iau;%a7KTui WUS }eK΀=?mWYL!}Y!?9׽WHHvá+(SƬ U FK/!߿ Fg G--sٹARDZ/2E=ʝ0y;MngcGf`EB[fΣ̞q—vM-.v{HfLT%^OQ[c@ҕ9ŋfү~&-)9fC=z p Z+8:k!5A! [C m]vtаy> ,m{ OocYV|>f,|,ԖV@p*ND8(娢x ZmyvAcĵz抗BkY5~jo[h+NʃI8UY@`v`>cetIGS\+K`c,<49ůW_YA=qM:Akgoo [6~ҰKONQ=g2FTe#es,JO5`S֏Dm {eÅǘlD7ˎEe+jp aX=ɬ1'"r }FؕU*.Iq^h3$gj Zis7QDL?*(E3 .Mqng6$f'. 鈚1\-i#FGTh]F"RlNZO??DŐV!͊(y&Y3$2@ xCӨV PZ@(ոڋABk0ֆ}6VQHRR%6IC0⸪깆k+Y=L:g_#> E9jv}! d4<ҿ!M+"; b+$vфd[7Y3wBWS|I^Ĕ ݄GFmݹ ? 0fp/1{FੁRbqm`*#77\ _KKpGߟs!v` *h=Esr C^OĠCf"FԕϠzsf eg0O=MѦLeGI?D)]+ yw|ֵ)vљ.R@V6U8l3S)sX_Oe !2b(QCaBC] Q>zB=*:;cKN曶iԈFM r)B_%f1-ѰH>yxg@ȳmIo>^(RЛ/jX $9!5cIwKhL͈b Ǻ͉c@8?&r9.0]|\xݣIٰn ;ZW%B(UG 7Dv^I!feJMU-5Nu@ m#GlxyINJHt@:e3GKսέ:-j3R,R0ė+~kT75ӈ5.Y#r9·Ѐ`yTr`f0 1222l%[ w(É} %I+Jaw'S@pu遑Yn=_:{'Cr_M B\ݦr0Q\c˾z0Hh@k3e˼r6 Fˬ9-%hw}؋`4*I?ة|+Y4F4X4fMtB&I`n-%42 >F0nY+ɆIcq:)MctOm8|bٷ:юIgDGcZ?ja.j~zށǓ#tOiF_V><` (*v=3E%U:VD2w rcJrIy#Z+"i;Or\5I'ZʡaC ^U?ӚGR nztV>tR \Sf^]2_$G=wnVhg`^q"{s3_Iw!vL#nU努(־=V:\_=gr2n/Zfyt!*̌6U X#ٺX.'˜U}}JS /U F.+%NʊLݨZft|g\)tNDR7rRFm郛k?6w荸!`e=n\I|Z= DZ/ RfD r"@JDH\+AG4\݂{z{c&-Af l`=t[MMv;Q].0{x,Lq:n ߈q34pE a3}Ǣմ#=ZYcw9"ܙ?Zu׿m7ɅӑMuڙ畖զt#NGM6 0ٴb,vy23l2b5%Obw1aE'tnݡc?MNf>9?g{S*E++e;+V,܂p|;A8z5bF+q5 d!ҹ<I$z6 y+?ڊs;$Y8Xؑ^r~k`=[z"Rl pN4R%,) v} poˁ=dO7Rnu94THx@GedhR-vk4/jz^? %.ܲg%B( ([Pb*ri wg ⍧r}@gQ5򦻱 :ʭ\v/#!%_\yBlgL.n3|~3OCM0S0 Ϝ&faDDP0 5ztU )j 2[Hdl ̵ #"w+}7x 'i!*2T~ \sۮpL'DK($Xi`CKP##Q w%;0r\m1|$x $@vA>;D;3Vt@Lťκ(we{گ( R u*?sES4949XJLuSO7{{>o=$U`܄-N)c蘁 f^W\M~GW ^m=Ӊe%{6 d)4vޭlVqiwpe ߳F$DƑ0T^N _9 }>Yz6h\c#! JL֋O-cvIvX J|fNiArBZu`5"iXs9d4 ]ڠ_~ye`Azv%A /WD[-0&3;?vHN%KI m-ɮYP\$N;mZ!吼} }Op;"^ծ$+777+b5!g&v IqI7vA`[uϞK}{<1TҨЎ% J4NPo!ڣ^& %unJع:kКZ VcˡF+N XO$LmxS]X>gs}=Q$ k.wgӨպ|[ݴxEx3ݬ.n;SŮYB&pe^CPI_q S,oPdfгsdo$~fw{TK~/`e1[jbe*/tvѡk@CECyV!'B>Pz[w\%z$IEllUVBGDh]U35.~tvV=LŷubS.Vc Z8/ɫ´lbZ,f6rq4ՓEV ^2:Ҕ }ʃ8o5زe)ӎYy 0٢V46,]]GE$jxm=M[Yw5..NK& ᤟z25Ld@_~DݐT O`kA7R/gw 'ˣXsy H !ZQ}֦+BRMvk{O(xզ c}K*ۉ])jnAHҥF_;`+Q$ڗ{q4p@̜cuIO n_$BN7ת??fdlD,͓o;hf"T^o^ppIh;e4#ҾLϧW7Y\}GĽՉ7^\j,o9K.hQ]ݶ3V b-R1)R[jolݒX{hw&yX%h#O?B55^)R-0<`Njzϰs_D[ bǻ*AzώhGWuAG@D˜BGݚXkdtK\qk~B CI M."?,NnWC䡹aq9ޡ"Z+ƩLEԂFa6^&d!n.cC)[۹㲞 aXA\)Ćzqp[[iP Š"{hh pZ&ȘqeTh~DM&|QOmɏ·$x\+`P^Dn,l V_]'{&75yGu$R+"rwx=e^"NA}ǑezLSģ٩EjfS .9=h> bBL_ez)/FWiv_UbZݼmP_hFpBzf0\.%*99#F <5yT㪅(aW: q(ӻŅ!놾 VnѶ~NJ ,Ā&6CSLVNOᨵ3;UlmutLuArTBuNǓ~E70!#۲h UmAJlO ; lʌF3yX[޳=땞v2c&D9X0hKo\ImˡPl7{qL ]l;!NXgeW=].Qn.KVڦf'*[6)~^) tkaj,+kJ WD-F\D{=`R~jrcj,y$z]S,lYɎ};2IIȰ).M ʰfRZӉ^"{D`tP"6n_]4Hώإ6`51 GC-,xӕ8ƈc3]c 0MVC5u}~<=1/D5t-ȉMpݷRz5J&K5Z.#3J H-r!-OJ z.hb5B(f%Os~XUw.X[jwC ,q5ge;m"BZATQdi+n@Q!+:O UVM.zd,&WtqAa Ɉ,;wEk*̌b?i@|od4@RE(Օ  CʮxҗU$\̰œ /b󡦓R 0 H ilxK4O C$OPډ>`@5LHEJϷA$R #)Ӳ|Q=6~ ([H,dŭ ۢ╃a8S JA1)"" grc9r:ߪ;,Tۋ -q7 gz?]$o=lu\| \XT ʬXтTPd @ڎD"c;Fmތ/iw"zO;ϝUAa<-7M*:w`=ֿ2%T%TOw4a<\wA7x<unr}uf* yDj3ձ0<~>|m0b[\$/ibuwO'fX:a}C~sȍĠL+J>رZoi͕r:)ZK7wjPm8NCW~$,cZ=Wגհ{ [),٪yz3p8OUmߘd$~&&8="4zX$cS = {>SFe:A̤9S -Vz\fz$-Nb]:!_;ПPkz5HI!Ic 6Kvh^-̗L:>aL-1#C^DA+`ggqQWa1\|P-;;9O1Zo.8I۷l'FY9AL(mVaܣ,ݡ}l";OnH K.:=s#Ӧ@#j_&]kHgxw]Ph;mv?mfiHEy lL>Z:dDV?xJC?" UB#$ҀR\-qYG3enlB<(`Y2<.rwX9H8_sTrV_~ߋZ/Ȝ i& |{w5Z?8U|. oOTT?YCʶA;K38ɚ^ \LuM4g8jU+a5;g.XnR7~NPX4أ&N3OuC#Y N_ܯo3 bX oi_=ēR* XL?.wZ8b@ b*ҟ_N7\'2qQ^u[Xh<#ֆC*qdɿ90S5+jGp١KR&ܴF}= -SQ:yv{RoҁcҒ9$giW>ܘ ЕЌSJyua 1xGP>r&D*Bwn\}ruoRo'b;,ht>葰rxJB=YA z:-W\y/ bHr;#dɉ$8dQ`ాJ-el Whl@%<{ >Ѻv\AV#kK:l7:ϺK~Xٷb#Ʃqm0+6J ؚz,M8*h$TAe$! ,~ ƚFZ f\]i+mgASt|gsHgñF\09Z/T˽h ` 3%.*@iS>Tlg0^pn<gQ ^\ ~@x}FDbugq83dEn~[šC#`^CtmaӫW @!<~e_T(?([PؼO!ufV9(dN5RqAN nyz%\P&0|%W}snk7A@4Ԫ*H-ArB\3wknό/0Jxa&}L(yN~hPy oz77+qSm¹ by{1^="**2UX 渎:H U$xnYl Zƿ _1])l8v>q̔NOCwMqE#nƘTVo, 7Mao@r :q0';lg`ei9QöجX{?Dtqfv[ste%Guw2~>p&N`߷}W3U-U^Ϧ_Sd\ O3c l"M^ +IbA &Ы@orYNTVp 7rD 4__Õ- %%5 鲎Uk;p%=A1E)Q,x[UɜZa,p*{rmn|:nUxRuyt9cHz]-A?6oTB [,Evelp8tYKufߢ ׆4_h5xkfvHvSPWAf-x1*& ,Em ?;al`Tl/YjjG c2Kf>z!\G*3!nÿJ1lV2xxSgR`9s҄ausV%7BrJ1Cb>P[DIiL Tj`#Q4}5͊bv: X&&E{znPSn~婹$V44`X 'fЍ&8}!"QS5BOH'pA}a~wտ {E7gnDOc\/gfm܄r-7}NoΑ>/;Xsny{o XLDN$bH ؆YmQc윌}JsqƟIߓƋF!T|g79KX B۟FjNvj`,YKFGU2zI&!Z[`|~YS dm؞kk}u#{F2Mu DzONZ,ؔZ&l(8^XJs9wiOn6Ni=k^?>pNjO4R:l--~x(`t ŜƕU{9 }fXfLv`؀Lڢ3it/y2Y\sƝTd~[9aQ;tNs+8L 6M#V?UCZaXdh^g@u}D HAU| ŭ:]AbiO+FY6Ȇ}|v%Pb ]J9esJf%gr vk'ɫꄮe(yĴl[3DhZ\T<)u*s,z$JL:[TDۈ$㖼jW9 f{ZJw+BJ6Tܨ(ɾHM ]$vgӸOV}]IR '̳P5HO:2cƶMJIOoHCe)b3Wҽ:+t%83⣇VkVP<R>)oKڏ,ۛRm;k_wŬpļ[$J&vVYXv5vrjd4$rX_kv\4ޠ;*r\<.r,Wz*HZ|?#] CL@qd){gXJ\^&7CeQZ+ (^ߤ̑ ku+ O}CINƃDZ$8SP=dM?]aI VF5Scވd,,պO|U)j\N8[%:OFN$/0J%+zgv*{ KO0 (LbObՊˠT ]נ隠 ae:>P1 -˚riYJ= +3oC'Gntz*[|9%ռ)i1#؉hF!r(`t O0BF AuW@Td:6LecW!+zd˧eyay?MXqs.O\Uj-U*w}ߢ)D2veVBLAhgPz+ZKW=k[l3-S昼QQ .J}ڋ2QvF{uF-)fl&Jw *p *`Uc Cҧ B5D6ҰǂRB0!&tTVsǐ~ #~"pMrq}oY\58m%iuL|SH1 }0%sO7~j3]Y'03yPX3*AׯO7Q<5IJ3t`w{q'/P(jYQ_tA?$braz%Ӹ)J  E2ӕApGE ._,Q[E_y:d^zeby>/@2օZ,V Eaײ"]QdU[8A/X?_)C)%$pJu@Ȋ;NP[^$8m&# Ɍ`TV"_-T7V Ws×~zmfgYj 5nUNooP \Yoy 77²@E*&S9 FD0Ԯ\@X.ԩ!8dU|>[nQ`/Y2K 4nK:lb,2gQO5I2X ?$K` WHl~|y}hc>Ytf33w4*c3HW,F׈ĚGt^<GSJZDj*4*PvbK$k6HS,̖p 31>pLh?}CN| M>mH~)F3gV]z$̇FzJa&L|:_|ȼP=Gv[):'f@Zk똪q@%50EĺE6y-3+!1bG]Xāa+8we_l otbӄBNG[Ulo[;nQ`{fb&p8킴[\,V'~Rz kس]eSW(wO(; ]KhZp/-'}**}| n6am6/yk1 ra0QsoܛqpēҵGj 6GF'ہ@C+@%_Ljk䋘:%8'pZQAWQo&A 裼-i~ak!i!PT=.KOW8nN')=gf0]F =/ peR(́׸NA&B`x+XG4yTLt;D7W[2:gxߩs1_\׍S^d-dmY k}XAQx=Rqk/szvAhQ@S\"·ߠ.ژ_NM g3:N]߼o,H(O-T a(2f. Z&+x.'Ie( ^ g]MV1Nʷp~pnuxRs#wN$E_3jl'xKɘ9>~$ x% Ч-u+^*ȭ`Hp>9f&eIl5>0@ q Z6[*:`({Ju/Po+QD׈8kC hς_m7-gݢ/vP(#6Y{";^bxjt4uǐ.)}Y0~u5(ǐ,@[j,o赍|WIXŭí2dW=9ѶhedFQZQQ>$ _%rF/Dzqk55< " A0nٱQvmOQ iL֝_ x!j? Y4SY^c,4(N MsdE!.^4KTZZABDR`;2;6Tl%N 縳 IU 9&$cZF{Ө*FT٠l~,w~U.`SwBÊ(wk@." e!l

q>Jmѕ9?r͇xmP8sd3!h*4u>8 ttivXCu\dEGHN ߗm{lq3HdB#`/58PN2seI}zG/9W@ bk@YlAD+5resɺ ]029КpYN ހ[qGq:M ^Մune(9YCͫZYh 4qkbJu#Cd­`m8p#ã. eBґs&dcU)O߰^P}X:Z5-HJ^X{/_:%;aX¶G=zj=g}y:2H \V^٭1 PEc×H\L=aD)]qTpypA>#P;QR/leEm1{Jm~zV4W>dٕo1GNE!-! V-ԓ2~vư9i(94*\$MpXSR{|Yͨ-g{j.4 ādgh.l)!~"0I:ۨKlؓ8= s;⾁Yή71ldBVȨEcc=~\ ((< ǴE2Lxn4dܵ0Ņe$uGߺƠHm}+R-N(@+9ύ1.bFZ2('rҬH"Rl*1[ IÌ1a*oOzB& ! 믪ESu]t¯SVаcS/lDЁPoPdGmqSmU s 9lϤ 4a 4ZW(ϐ(K&JBN} ;ue-ᩅ v@D$i[xU%{TXP "Ӱȉ:9,PWbHW8m<%% - {"噭9.M,5jɞ@3rR~:srJN\uR&&L|[0TjTNaL)rӣr>gpps[ɻŜv 7=d'}Ysٳr"%rS:#ϋܬo.B\>Lboڠ{-^6g@X(I棬NE {oH$w $di<䇮Y0)[f8ޭ8MU3+ib4گ KFi}dXT"D/IX#8z߄f* q|H)!cHrw0d@@q1C -GH#<΄0VMċ@lC^FieȬ@OB67q|l!yc5#pYUh"6+G?;]wϬ%TW0 -wO[Y؁H@}j緊zIgeՀAe m;b=Cs4{Q$nkT$8M+JPC:iH# ?c de2q5``q?sp޿lQl.Fѐ; Vs cQ4? ІѤw A$Q;uʇ䤨Mn݄0e+_,JӴUc{KIrzr1&s eN1B:CQk0&߆1"~}QxQTȃy :gԘZ6Hz=<Sə{o ǗsXN^_ݟQi $ =Ev GR,a1hҡ.B{߿kf28('ֵvm{ j1DT!$.xej3TuU L DBO撄D3s>OX.tN(%RX`"КTk؏&_IoP?gR ²; t*?cyʛ1@}جsUy1K.9IPZcA?J= B l[{k#( sſOB*x+] jߓ1vEmju*ӂy]~L Jނ'pl#̦eW'Dp7Kֺ3︹Y`5<Y뿸FȭF|2Y$*'6L -"J?.=/rHUj(~}.A e֬ߓɷu|s3׌+ǿ=vЕ !x91v.6KH֨'^f:6Ml\$Jj`Ց iP.wT7u]U[O+n6bc,2GjSZA^j ؇92_}U8͢H^4hɧ#i 62LH0,ZE=Q $rvoy Uu"f YwɕSL]*5|N+UCrJoo~wgK0ǺhU>(;1xsbZ+۬&g5_#Yu@돭e.4 o&*^9ݭEC 4wЊ8 q`EUKjjFp;唳l fnGO= yS=)M\lQ07\k eeDmWFܰ 9C]gФj\^!c#C}s@ yJv.C`-B (d0sfMj/ΞQZ#I@Vo_<@^E^8Nq_K Dl| *GxD_8<ı%I`7Wp:C/dŘ>s*KV[nԷ=% nwX`! jߍr=u0).:7BVl:sCvJ;٭5SQ 7KÄF[4ۡNa`$qJ51e'pư'SL~EuUDUɥJYHsp'ZbpQ} 5/iscr L&oԫZݿЊ0$o,N[ه%ߝXGcD"y sFhdL+IQ] ' O>tT#ς1p*sD;5TgK0#fkѠAk0e~naך[Zk+Bky&Nc<|x NolBhE^ q6|8C6? &,z ]hQEy1ƞgY'_xUIkN/;7D@i*8 3++KkNظ[z+H$[CQw ZhrM> I3M6{L#ʍqF!BK|9bJw~trNG1mRљA݃nqEFƓDOsjsΥZ 4͎L܏h&Y\]4WA##A[،8]$fs=IID$g5ȥv<3ỏFImMo,_c!uFBPU!',MBuRz\{+1 *,!5ڢP/+um[ЎƸ\~پw 6KBn7is[*Gq5i%LJdkZ3bDPoF;:*l,:-/9 { aPui'q Rwƭۚn" hՒYSt],tI\kW|"XqywQ2Bտ>~Z-o!4@ cc/_7/I19oB f;y(xh/kK,Y$HaQ5!I:Vg?%h48 N y)Q҆x@`WT#6 "Ih?/&S#)fꪠѷ| bhEM/:&BXBH[}4LpJ4[ R p5Mf'{k_Oםq9 ^fS2k>v;OтԲ/Y墧}yD]o`!9_ =J1\Bya-|c/?X> li>gqgc, %grZ qg=y&>#LN+`9bNQ~!?hڪ޲$B }`TJ&U!|f o2v_e`w?)F)7@MˊL?ņoR[1yW'/7pUZ9u#|k>)a$+/Ai?LYePO<6H޳Xd3GPMSDL$#̓b!W^1V+eA3Fkdb [(Gߚ9Y¦xq\m o|O)mB2ەCՖuhql\-pF<~W]׫k !BC,=MO_viNtH ;]4?0wȆ`!'j9 ~kPTɖr@-[v?*^6cϪgpOwT+.!G5Ӌ&GPS~zlPǑEtۤl=Oͻ[KQAd07Q!=ӣ,Ew6Yk4JtPoSU2i4(H|MB5qT$i}lԿ5oͪN)~! YVh7GT3QP2O#}91$f7 D^uMl~$=4ЧlOF08ܟ1TO> IfK<]PhTr$q,T_NSPW 9Hҽ!\:!6J 7V ߋ^Շ}Ƙ/)1b~!h ~'풯Hō~IC;{Iyc5ݢS^a^&cmQMt#F**ӧLb_ϔLXD͇r$IE/;:oaaOTlE,KqF~*٢\{%G4H(;>7/=,%$ʯ큟*<S~>6Ǘc֢V}E+Tگ!Yy!.7Q?V[ް<\'>ggoc bsG.!% F*}r'?|05W8=bɭc2ǶF+ |ٹʥV/\ `ex7wg>^m 54h*Fd:7)KʾP&|`a_!a>\csf a=e`FC'NHJgrߤ=`2[CpPqiAʯ7~jwVmu׾1q!jGy+D!8G'XhJ3c'd5uiDC:TAw_W_rDoe@m}tGsOStYr$ 6w79O9MWv-lhنєmTAQ 1ix'I5 SBb^/GfX GW$!x#q[ pAI;!?9NνP,h&]Yĉy]`xw 1Gk?8:Hn?5 C]d,(ˆnY* !4Huj^⣻Z1vF7J9ʱ.kbܤj<\ G~%5v @E=Ed$\m1;Yʨ+ukfGt;3[E,@F-jKдod|Xvd׺]~JoF龺)BQ໚k=vyMWi*>3uȃMd)wE{9 t豨>W?2\jrMK E!NZߏQ[s};),pnw Tu{io  W*ۺE_GJu̘Xn{ǩw >W}e=qT@iOl%&kkb<9|ûϚL6$jCH`hחfi5yCos|tAjT5O"g?c<@cmCUeM6 O"xx!*9#(#ESN+@vԔpчA)㯖Qzr!{QJinڔjP0d 9ǡ@7Wݮ5adˈS}ҡ }| "Gۑεogē{Uqh3EőGꑦpNA7F-K*UCb_aMݻZ7?H?H2lc>y*HvvzK4+_QD=dhȕ*Z+~?Q!붃3SEꀲSKjtHS2xAk .nGw݋MUV,RIP ϼ1ڍExNpgOL\eg!]3Za$6nkۨ?LK:>@Y[\(̲V^P|޺WA!yu(ܪ+ꭦ:륢2Ȣd(3d-O:?Q[*Qd -4EǛP!AlFXQPC>]JA RZM ,AG+Rzx5YO'f"xL|q[hVt'1p: A7+h+Lj_+ij֤gp'o|6tF󈐅ˠhZmOO-u\z (Re0L le栽s (VlYSM#ȺThSPGXc_;m8'*}GLٌzo-_-i +H89]{7WuU/h[koxy`Hz'_En/ d:Ž#Ϡw_z ]OS k@baGV<3I D5; g }Qp8S?;B6gEO^Ml!ū4]ե+ʁT2B5 ¦^Ye3Wȯ#qFկ+s_XrҾLD9'x"p<̓?%%"J@ gSJ,$tmtb ޝmhG^e+Ź*uaB+u3 ܊Jyܨ tB<|V{j=f FِJxz6_N3_xrݎ !y[&^ rUau,&|d`2H@0>]~9x+ruz(  6ZBI%qRqG:+pUti 8b.W[sf=huè-k@:LkX/T[} u tӮ$T <:M:)'Xv BUC#s5ɐg截>yGtG2L;)HV tZ.cYj+ N!=,]JR}ԀVIBٛlQBكnfAt'B$E.Dzr}鹐B' .&u >6' ZNEPF`" xia%.1th"t"J:&}7c &Ofi^/Œ٢\ R1a6׈$ j ~˞{p Jj{&OU|Z[f%!n-@0r䯪+K`՛2̝^/.v6gl3ac/;.FŰQ];Ri~ ֶʘn0OjgɥopĽC,¶ $2s.(h$c&F*9hqadl @&޴@Qm?O|֎TIɸycokI<l]C=q!yg6y9 'u\baD]ސ8K!K7d ~H,'rjWW05]Mudi{f 6χ^SG#`#=Qst.2s_DZZD)#~+}/%N>>0./*qc&fLǸqⴕk ۴XĄe>| d?2R9>4%gQoSwqW.9 *g ˴)MC# J )kB`a6U1I [V" 8P<|߸ȘA"RܓVii~`bLhIEF)8,4Dmݾў]_ZUV[S4Irq;08UaA{l@){Wt%z L hK3.]ԾO,{' 9oQmM~a'-E m .]ӟi9H<ϋ2:om;ye$80"5b4%@՟̐:6y9x3/X"qט] ,G,ڏ域3aeԟ-AbbØ]-ZBdKESL3|MK%1 EF7%(:;\'FoLϛk.Q8o04x^|H\zr9()]1XƊGXN8Jm-VWF9ŇjlebMLLr"+ /hOk}r"upU i ۑC{5C5ݔN;{ h =@*Ke}RBB! V aADI0H U$sһ.I(3c8㦧 lc\>ίѮﰲX&Q: f!+U!X-)vi st`{>\ N 븨7Lj׾eW3:Ҟ<<Ǐ$Ԗ"ƎǞŖ k8Y/ j-#Wji›];1t$eicIKV<~/N'Z{fuZga%NYFhkLIko劅~~(Q:  GzhP%z^Ⱥs9cV ;^'sۇր¿ɣ$ 2Yv8;r/&H&xJͧ5/G5XW̘y2!6m$8a! DHD4X;8S 9u6!s ÆIB:RjlnczsԊ̸t#Tyd91Hd $+99U}Lfgg_1t!%Mտ/a #,*"۩tPʢ/(sJXq`EJKgx1OV#;זhwDsd{ KcDiٌIiTrPn 8H&`T%P9.8ih -Pg<$y r#pCYsLK9 ,.YmEw # 8EZĮ"6 2fo@*k|Ql*" r(5RkhWH4vKk$ǥ@i@X͙IYp>+Pp(87F([{c+ O6R{I0`nOhYrb *p_u5$M&"l}gR"Q^EiH+.[A`F/ѦN sC| hPV\goHw_2Umݓel2YrB_:[oxQ&Izl*Q߂rm. OUa_;^2޲|J̍5ل Cwf29`}襔KZ?_j 5;+[RfJ6y )kYÑ<k46>Ϊ\,hU} ݹ敟Nϰ; /PR|{൭驫\j֘ĒMKnmv{ðZB,o@j6k|HAUmAJs7.wa\BUѸoUl< Ǚ+nbĎw.BNcb:&Mi(w|Up9CiOWᚴy^ QzZ%LB>7ǫ4`@䴱UhHFk! 4l ɷy+<b C 0Lyh3!ǘUVJ5 ?8yS0qNtK{2L){<7͑p+k̒]qRCʎG:NOTp~HAnPd|n%䈷[4I-%"kQ>dv4K2\&VJ V8{dDG㫯 plJAqtyq0LSM"saO$*BZsݼ]7Zxb[v*Z|.XIiy ZLKwq+ vs.VKֻNGt[[`5Ӱ-E o>T#7dBlt6(EOƵ{bR~D!G+(@psmuNQq0VʩJbVȶӸ>iF~mxgxՂ WPH^@@u<=b-*\b@#8Wu+"=5€Sem<3SV#Fq Zos"< eQm[ ?rXK| :BSPG{Bw֗eCƋ"|C!EI&4d?,'J,DCԥ}tZR:k_O\ R'InK]6x_t"6 \d(fH=UpQ-Xxd;0Iwկ ,t" S2ap}˖],T'qc7^! ^Fgܐ/4e.C4Q7j@J/wqZbxCW#h 6$$Afє]1Y%-sL:8ՇIOvb;(m-Z񱫸zN+f2l MX+#pIwLST)w䨐ʁM>DUg[[K - .mCZ %۰.JŜb)1eTt7 IZ5?~ѳ{| ~N{i,ª&4l*CJ['z crV} :S4 U:d^ F]5 藅Rh.alIz%^F(y$r]%T6S| mjb Ue&M)UWX{5F l_gM/Tm'ydwN-1>:wNz{v%“:R,{U*zy |x1Gy+h0ú _UbFO"*g[x݆8(622_(v3: )9(pw#GBq#Ex6+^B[vS hI<'/R>yLqECW`\m쾆H2~(#`8\Z+, ;Y*ڼ ˥\iRH _&v]a_r*CӶY-ձzi5Q]HM7^l1}wy8;(btTk, ""VM :F 3;F*f״9}S=4Bem$u0ܕ2|x̿ s. d4)]7okrtj>+fBeInDnD汳0,3Cq1Xucdξ j3ug\f^=i(`WqfBF5#pW6ÓKf&;+7$ K1RξF⢂q}eMh!8]lΖ`#w@D_P}cyQXrs ž.[`Om]C-l` o4?9~wdC Xf$zG`m7+`b=4' .;kB;*Ri Js%wFׁ3|lOP:?,^ޫ"qd؂=kpk)3JO ӄq-0@[N81_[ěP;aH Cvi%\ˏ'-Ug^g5(Fċ/[}=RxRO* Q.w&&n }1(,W<ەND̂ݔD6NW;*|].ܡqǺvmj["!/B}^ { AI4wQW,IOUtIu+yM9/T-)"Z'׭PsQN߆B0NvMmd|K@mͥB"CH7p܌IytNGG+a6ċfX͋ge-1ƧvN ΰyu} i˵^^OakhSYWaiȎ!P[j#+{9c&tges)r}E~nǜ5Uh"k9{Bc#s;88$$hq/N} <]nq![ wB<mFk(LԶƁR#u_BBr[#|8Lg5n낿>)ͫgH&7(#>z5+F5cN-̸D{ƒO2gU\”ZJ0.xўwP|Q{t[ %*8N2djՌUy ?~DsY<}07:OttW.u4ж^ކ{Q ԯ336{+-vJ=AKmd",X+J[DPFHsѼ: 7 ΦrĠg'e33p$yە6a\sxjxPtf.N]WZ4H5`75S7CM>Ww>ΜMsRۧɊcTI´}[hgTۊʖԄ,R,t Ft1s @5ᡇlh- ˵.+>j0iG0Ųa9tꒆ)lҏQ1 ?h8ZSq9u-gj%8ؐ-jH x5/8M*X<_ |;bl@Ԏr'$Soc;F=7SQ d̆`kQ/Oq'a-reWB_ΪʫG٬# Γ)Zj8f2sbW@*cŪco bX459,McV1F(l<22?ӚuO s}eG\w!@c\fuO*0<`+X8O~(΄pD `@^"///qFm?%xd?!A#AR!~M.T .=' WBT\ňtWlf\'2d>rvԡgiԬ=RtӜqvom`)$* x*2)%:&+es#F&kFY`'0asW.m~;V\L׺4KLڠ. e h.!lBj'e>$)_#]GG ))M-E/S$mi-UÝbG߸C|ͬEűr nkE:A$@_q"ߤڢn_S<,؁!~LX<ڮٛX_'VTb'!gVQG'AqU +sy`H^D`iDS: v4l?FI:8f+Xjj~VQhgM @$*uܐWMPce1cHN)"b1[͜Th ؃JbU t} .1fiFJ 3Sx`G㸫ڑnmy5]ۭKY7 y.\R蓈BU`L)邫ٕaԢKk'ʁW5|l5뵬-z,XG** vXN~e|g$?pMOh_(0ACF?vL~l=F*ܳmr1`eKм) 4[72+d="Wei~.4*ax+Ԅ)&"{\3Mw_ϨjN\EeTIpE1UxGvݡQ2#!i +c#VAO5 b5bKzH2բܘjshZgT?-ă,nOAaٕDLqOb5zݫa?{4=!_=1GE4#m__n;SV{aPMĐ,a_# T 4By QhݡqyDrPl:z٦[Ŕqɐmk&`oRm}XI{ pGSf$X*Z@:ء-?H:C8\ 6M0laz{8בڬAn("&ӻ$ȎiaGnB{0q)'-^FUڜ磨 >ltô{dK;M0.mGUzO,` a:j L :~!@|f؎- !+ZGo%Gf12EhRZHկ3[#Î9sLN%\i(edMpN(By!-zZnoC-J@H ɧWñE&gS#h:$4fo͇hc6[bb[ږ+pF\B:6Gq>Ց@o&5"e 2$o EH՟4P% YMgD9ܾ шhZ?ź:I;.#be&EL",&bs0b5J kTti `Օ"l~ߒ~!|^s?R}Ɯjs. S.*d@}Src[ uC@i`X4}T f L/HtK*]>BVf%wc<şk.O"HU\Ll3л֘RRn-ryWZ+{zD8cG?,ΛjTt ض;BihQx!~c ~ [Xd+nq/v?Yax2jt = 'o~25>Dy|ٹ5ν c0rμAREM8 R{mAًmԴ6!wiv jϾsf9AWKwvkF]yEnPkr !+zh~9ۻқ[-Lj~Ka9 !8q@h="kM$滛NuY\I |OߔcU %NZUJ ӹ Titٱjj}uVGv8~dFjq?2q3cUp.m!g$gok:PT5ڌ-LJǻEoH+˖ jdZ*7QWOh/C^yfBol{CךI 1Z6_Xd*O16D\ՠe ^  4Β@zn5v0Ɠ;nеMv??- @C"?n#=BOAK5w7uW5Pr4)EX뇭=u 'ITg4<EU Vkɩ\) g!y+rÑ< [澑]YP-c3x%R ]$(PHCXB$'Ղ){u]{f O\`%蛋tB3a'7J rESrSa,U{wD2 ѸhH;GcwO|rve3 8.6ʭw~mg<]E{q݀E((]ǵ|+|0Q;~ FЎ}4\Wպ3tɸ!kVV ܍9#(@ƬOn5zsDm/-/b|yQFP_ i% =]e6Ȏ,4C I{Njr"1_DMA )ZwR҅˶p4W\HAMj;sn_ j}a 347{X=":_ԯ/k«LAgPYHmcFK{wRoS 54]Y'_48tǬ+eJFǚt.?ux& , X_647JX+~E>!4"[f,MK| = 'H?[n+ϑ.Y(NOs Fx =Y@A=ux2󂐙¥]{\MPWYKHBa/jxT-f?Mw;^P7+)~X-g$13)4ol>ÿxzS x\ϵ,He}\J-514G5F 蓾 hv? liݿé U3mF1 U&PPbLQ~j]]7 OX4z73{.^En=RBRnӪG%b%?lEF7ɩ1?^T "b#hLGI:P;pﳲ;o<-;ɹjdLU$@ veu3RLJ#5e-q|q דL.IP,6g{uAj>@pJ33'e:P_3!Cs!de 0# 㷱,`b=+ƚx٫8H5b~|W0/ oUr#aX_P~]>w8ija0}$ %V42 |I? eRN8R_pv38  I}:`4,uRgO.*PUG|O%||!q}s^^uXCeZYyR,Gٯز1:,B vTx_4={$<+ڍ£D&KXȇԁNiDD]klohBɭhXdr:  38d\èŽY)*,IsWJy)U eY-""_ËC4(aM: Rwc 8}}٪.<)I2X|d hq_iIfSV1AN2l8fӊ׫WTND/#/ҁ8Dgh #=")>՞Ob % Ei:ĕ`n3` ;A.S9}fyiRzOĸJ$%"{#jK5Y${T]ne8HG4{G-)G04k m$"n!,d3_Y(dY- wO\F" rMTYi ,W_j2a~˭>tSn }0xvyL ]F,%<ČVtۖ8 wZ]ͮw@A]kcP7.Ґ[Q_e6"n_XMWsC`:Lbnm#1Ч l yj۩?Շ9oZMOTĻ>,k fZ%xFr:R(iMtPf=uh.YE٦&/C+zYQ|ET,04JiTKƳ9R/G(M (G y~3DZ8`X̪"\C^/wRtQfYҩٵ(6(& ciGREϖ.] Б޻ԇ;|E%ЯbRm O|߇O@ ij>=-u n_9YIDN6+v-caרN/B $0Ȍ /Y -`Clpo Qbt=Z8筊6 .%Lj3}n,W(]1_JGp~Cpm&B9)4h#`b7~' a|jBdyX2>XM\/B[O[ = a,".n-4#̇M8^?Uv  i xXˤ3hw_[LrDϝ6gǛ1ь]dV` ~X}Nm8J$pּQ#//~t Qtp)g਀ gp # s 2-soDuy#>3_Qm2vnϪ̾wi'! {)ô[^yk" r3lІZtIҎz1(O(~N5y6KNaR "n!|i!<9pCvVwf;J# TJʞ11Nێ -ד;b6q57bߎ,2i.hyk%)[oDW@iK{| tݷD}ץe(WYB #d*{#jԠLVy0+=vgLuu B ?Hٸ"RZ᧽0" 04;ᑤHn}720ޝP֫EHIoeB̽޾2S#4 ӧx+9,k"cXl*Ҧ4ݪUjmZ=r YnA% S* ֘+98.Ek*یhϿ@!o.I~*AjUc|i''lh; ڶ6 #|_ᓴc1:x!1H 'u*L+Dg{.W@LƓFz ;շH| p8;n V~ܸ/ ,w9יTfSl*Z20xA.ԃCAlE.b+D2B&n)GP>+H{jHD/d"0({HZOns c$e9.4ayB"~O>` ř;hK-ukS55J⟡q& Q%V#y#.9&whۛwזh1E_[BQ Q~ QJ9`nOy{uAa?Ʈo'̓u<nGfɤ*LhQ'n#b;[ZQ5lm!(+B:kaIA{3KqD$$vjz v)֩8aHv/$si{Q k PN}wyxQ ^LD^/,_dW϶?K;ih#9b&M_qd,@lQCPE'"DF MȲGRl)cf&ePzr$wZNj Wӫ ? ہkuG$6 P|wܷ1D];WNXv`IƩ=f#˾JMđNw#ǫl.[IqѶc> %iEԶi)XL."jm]S\]QaqbQa; ihܬd.OtѶ߶mՍ8E)60ty5r=6wIs( 䴄Rv iC~uP Q`bK dh58mp`,iuRI"ծsͯ7v HW/O QO`LJf0SSi\ tڰ}HfX&L,5нn3FvbOiFܬn=>X5$A_Efb h{qUUyo^De '`58/!By {-eMFp:-ӠwLR{7B0 #1;cI/h"Wm5S>fuF&ZLhϾKE+BTCSK(Br%2QJƄ2ߖ Ak%dHz⫎.b‡Op7Z~2 |;28P@&_3 /[jZͲZ ZOĭ6e _јMm vOԦ-\C[x/mno\bfդ96I讀/X(dBjOAO1+aQ, L2{56ήe !{E HR;bUQL#Kt@%9"'gX2.x(&_@iX3`~KK%#`D)%5/:q(9ZZ,cR1%`_LA &ț񙿂(oA ڙ,bpUmLʁX=5ܖX}}ik 6tPI>>RoR]r ҀG:Z$c6ZoBY"0X>91b促a I3?gI(N-=ӎ;n2 AJw5$mg8Ă|"H%C}x*X*ob].ӑ#:$jYrǂni(諦]|8x˝tcqfam7o;eMg"(N >;[(CA*;yYPO"۸w-2< R/}AGnd.GaoMCM&h\l|rA0qAi@&w (/8\[E}Kꆧ[q9Ϟ nd`jt/ Ј>ݜ7ԯB\0WP88|MO0r/e@G1.l>)|HUc豩?siDnI GMl=(]}(7HT#.C_ƀ t^u9K^̍'$F읁xyhq!c#}֟ *R~S>vj_R (AAwnT-'1_@|,URݗ*XpN5L=sכֿM~ٿ :&WĴ H%ao LL 4dyN&DuWo-9 )ȭDQkn%43Y^>k`A0D^5tлR3C8C{Tà_eiḾB:gGcjHC%A[id r1L*n/KZ)>/&TEcQ( mlr Ů7E!PC0.}ٺ@l_"σ-P/C7!DySyi/;UVM=xXus,*,&l8.@`b~+y4ȅJQ4G`&).AQ鉆k\&Ҕ.WK҇M p>MDxNNF7ƴ0"^G}Qo%?l=kI/$ _p2K檾%xq~}V"DՏhqb7,j$!չXFUyS}|lCڦ[t+S Bߡ|mZڎ؊|&%ˊO롷6J\WLp "qI5ʱS$H P{ =08q3+{/7J( f_M` :l4~94&"?ʚc+GUTE"A'dl3ۘez XPx۫ '&U[,a̟KPנWpmKع%ےYV A$V"T.2:w&& ؂'HBx|#opeiLUaQHqI@ QdE%I2O>eb$WG -{3ʗ7!1[hgXF4/?^omA؜e;*d]H]W-ǀg  Ov1{ ;Zj7ّ{i^xB|;%&./#daaL,U{G0svm =~DH!zB$5v OjA0x !384ͣ&خk&׆tY#U]4h`fk>6Azn. 5iV7ʮI\p^b0@╶r4OjVYDߒ|ԽoY+b饣槨x y3;ee`J- Z.#%Wd.Xr>yOLh`Vػ5V]ļv!fԿq 3/+mK+Nǹ;on:2G8bb;v M|@MeOO%]%R T]׶֏>K|v$lQOy|Wځ5sBY3`>^i~(QDr.ECeŅn+'S_WŹ b|xkTGMnd6,ؘj+C9#s8ィ5oMᚑBzW̏fu8uSRmf F)sؔXVog˚4ddV;1i@Tw8ŧ |OvY7`*^Q[6" I-/y {.0(FH%QorA kSXxϐ}}GS؛ ڡr聠%UMU' )sxlGQ=V(b{-4^5eGJ,D]BI4w  φ*^h|uFT!'FXA:RY2 +X8;T48 n<@(pK2VvǶZE}8h5@a9BWD>Q,/mS8Ԭ~E;Nrcaql5Txh?1kZˆ(:d,Umja5rn2e!AV1!1<zeƒ$$\DLHY&/n.!h6 YGaG_[G*LՃqM"eq{"siӑY 9BmKMja0F\&Dk0̟߭2j|2# .eώ2T>K =DMw߹NwP` BѲm_{yxR krޔL[ Dl6]\::qNnJJ~&5ǝ y0,$pޢvcՎ^+$k[dNPNJr<~jٮ.'8Ӑ\-G܍#ѻ<ث^USj[)r(*H=:gO.nE/d/t|ڽ](,)y:l'0)XuԮqy}ImqWKpE!pK?'׃{i}BV)l$RocW܈ !3v'w')=90@(pyJXݱ]fEm-`[ 9ۦ]+E#]/!Y\<]5.jUčwEpvAs]@& -c77EjjrTTER.9NktJz 1Rj IC*W(FB]dRv1ρQ A[Lҁzꌲc!kG4J 8]V&&v#$,:$LޕX5q{,~/&*W @WURފ᚞TbGI0U2Mf\.tp@״y NEGw l ixv Et !F-*ĝ @kL}7InV `T)ad5tBvEyh@kzE' ?3)bK^QfPgv4},jE^"l'YB2l{s)1?@)j]M@qɅU[d4:/+SG@Ӕ "Y>Tx]=0y},ЩG7䟾͐ 3$Po\jv–\j< "I$8Y ޷'vyi%:oWx=JdM0^}@i<&QG"Y;E:\vesv:'B(j { Y$xH,+>wzci1G+E " D3/E8EGOYDL'Tm#By9!.^y8-7H&MdqnO uvgA3]Le>*3T/ƦL]Ҿ5(cV /;vر(Gᆞo([,3v1Oˆ6+iyhٗecgp_< h^ ξH @;ī1tlreZ OM^NAdCh bUPMF:oj!$]0Kǹ}IA~ʙeXY`L:Q[206.ҟç'v'Nc\Fq^82 aRQ)"\Q@kDve\z@t F ԡ1c;[db]2}WŃ ^%ۖ$e.)>xf[蕔 -f728%EG(`Yg¹ / Պؔ7)V ni@n|/[pƖJ+yNeu,g 14Uaːh`sjJRJ"'2i&d"U}AcÜ:?-we!l1w'F [ q/yɕ;JBN'M^S%ilY_qM 1JO8Q;ݢWVS0JۧΛ-h0GA8E4 !0)= }jzMB06֙燧'pa~붧|@12ݒg&# 6͠M>o@:+~iGfmQFAxTjRǷrhIuTEp1%o}q-b仐:>X69Ms UЙ'&~1.i%!#&1{\0p۷{1^Xi]`pJӟ ӓ|̈ၬ bͦRXK*uƦav e9o''17\`,f.⴦["a4Ҵخ}T`w:H%bt榃GlnR.`7T ӧ$|nۆچ6dOC m 5T:8- [>;uR`hw!n խ[Eٳ}? hNﷹ[8UTs98BQo@"\df7$ z;ϓ/f=0&k>3Ir-ڌGagu [Mԡ;*/+Ak&#id۶2"a)"X L(47]hIZ-jU`c 8*IפUZ_BzEcV!fT-TVbNeOƒU+(z l[sԵA _TK5kB"&Cs.<QiJ DS8ئنO╶'H'5~mdGxd+|{[2X 2[(B! ŐByT vțjޚ/h3|G@ffp{&TaPh$l=,Pٍ=eHlϑm0"nOwU+U5i};QG{v4'?GF_޾qγ#b3qƱ"}V73y66!]/WO(V.~.^1 ef\Kτ7X&qgY28y -{L*?OY<` bdRxOA 6f$N\pcnqIĻGѰF){EtߑGA( <rҚ7*},O2@&),;3*ţQٙS{f nUl4ѳu°.bg#`1-<2~vg6i({~*12 #/Xerd#uq򽗖  z՗!`yJ`aBE"6ַi{kЙjХ_*G*WUxqU1/zO$-dj rFЛW`24xYPϳ,&2GU@zz?kzDhFRM$:\=Z@H髢y96ȄmvVy@5#hǖBPg[>;GYqJno!+Xjhu/!aYmMHL'x| "eCa^.|uQ2TAqʼ~P-iY\܏$Ƈ}eP:uurar3;"eV\Ӛ^nJ|pl8&q xgppPY6}d/qJXP)oE8l&Rf2iؒT~G*1cF~USilϾ*1ecUQ *TC>ltmTfd̈́oO+[bmUpR"e0/G쯺DsaϴM7)} ۲sdBYxؒiRۑ.G( S܈H_*Q]Ɋt{y|yK JjAPskCX!vI ;(YhD"NY']4$UP`mP7b/0yF|_=u#lTd~UA:4Gkive͝l(A8Ո)P^;L80@$+I.m\/Ll3 zDx!+GP%yDe6$?dOVU5@x2%ϧ Xc?Uö3{Exj+" EӓoM)MiRSzD܎!]gCdQؠTԆnF~ 08&W[ 9V<kQ(w0-ґ5ډQ{͇@a0^ XOz@)eC:5;<5RUILMr] g9 or4}†tHj 1,W~ϱ~ ckEH2;PsJRh;=H{ NB{U"-\J:lTDpB u1. fbS? XmCE*vSHb[Mb Lɜ+e$.IXMZaN׺z:ŢUO4 kSFtEw7~fU,kNJ/ǘwFJ%nܐ[MEA>,,ZY2~ިeV KŹ'$0(&aD< ~ݱetZ0 XDa 2.^ XvV. $2t[aiv|X$Sphjޥ.o/G}}N ]]w]B/mHha#V?04Gvđa:$uI0^+<7memqQw;r( &ZxvAŊ8͍J]( 4LbIvTxwc-̣jVj(zG6!;Gq9+ x'w]q }Ϙ`b+4m88H_|'X(ND EMavUƣ37gAy#d*{G.ĮBp=.XI3Snao./B9u ]KKIAUZcLm\PPgLҕiR!iAFo)Q. G= Z9^v?k _:ai!&z?!uFAg"j1 `3kyE" ø%& "y͂s-mў9'^sq 5g. n4C]e{_9ecv_d wI}SM𷸝 H0Yxi,nt ,R'x^OlPRsJ,.$ sGLB:>:w†gR,  Ia'Tz|dDkAIba[K9*_OEît 4Lb5hqoڀP8 \Pi8D޷w*=q5ۚ{3{ۃ亸%pH 2wo_i"dh%Ģ.?uI4`;G6h[RJi?ֹتx,6w?/ҕ;%]x:H#O|}WFqlRQ㙝İu+"M rV}#JA"?b_)PkG:WA,$=Bwg[`MSl mgvw(J/xʶbO"eآ&Yi?1/ylj&|=cNܑU# `'L.421l0g;R)ˬgߗdtrnE$?GNǏx_Jp `zQ>h Ge[)O^K\``B` OmdH0P!C;X̗5ȑOU/S, nG/zAA"]UԶJC~6ddm{SXu:C+$ $DA (80$ё$l.<]c GA=9J6q]~|'u?1й=v; BL u  %7^Qmy֋?_b> L:BL?ޙ?O5Y/tqSS+w)encQ~&qe$oU3t0mpG^sQ4 ϒOeU + :K߁8ۗX[/`b,{]bk_uV[*S.P(OoxcOZGؿ=-lz\^&YG{f{!0!tv;+פTT}7Y@~eg}X1ZʊӤ\VmFf \f bK`xPRHwS'ZM4e=TH3k0fF%эR:w=Rz)63F _agYւE27(.X̹BiA=^!GSJ/}ID>ne,' !eZ/N]Z˾Ë.Tr2[udFߖDs5GfQO >6W=?{B'NTY?wż?I -m>e1؈hDʵx! ̱j 9=`-%Cg<#b$UK&=K#iA >ҿT7rs/#}Kqւ|o=n 8cX?$ tAb-=j X*MPӐkb]]-SᜐRPvA$\im|~fzk+?.1,oMǻ'0P5 j(5Ⱥ: 3X?/.D [)i՗^0YRЛe%C~t|NjD:?d.Ϸd5*_A,+ 4xr=< fkGC({uF|:-mq4x}h=tŏ KIS$\;pnF8Ym㹞P9e ysC"QjȓuM#2}S^ 8]}0R7+/M0SNHVWRAV nA[BzuT"8Z\d: )k 2ٸ:ή(]=$s y`,$" ܰ7{@vȰN~ͳr7lsh. F P˄G@"!QBX!>N{?;PBk\9#mg?L.̔ *B?UU3DMwI,U.O*oaHx?hH$7!\.Wg7H +a W0n)GkJ }C|]~m~6}z_8ϣ=ꎞ&һ\ך` n[? î޵biCqG!@xfo'Ni:Εxe| Y젥y݉3lA9e3Q_#a"SP9 ]PDwʀbm"O`_maǹ_CΜY#9Pxt/ׇf8A@p5v )ynqRZ,R9)c-9sw!;Xc>=搎`n:1)]fh}Iua0 ;AvV.V|ȫ.hx P}\}:# :,2dPRJO4 6RkP5@#SĪЇ?[ZY{E׆pAӻ)g#Q"ZIsHxُFTr۵Xq O"O򦮷-bx*iD;JN>e"dZ.RS%?=1X]H'nj?B` ᦊ~<c5񞀈ǀ*?s 5Nb|fd,,YoΖ( 'RLv8$2MIż%ֱñ2O Gn8P܈j+dsPiAa- 3% 0#V6R*jl)6N?N薥/ƌmwW PE5TW+ Еnzs&6hV$廘Stjj6-ClE[k5p1g7L[SާK{U"z,K؂YU`c`C~=B;mgy~hiWx2@YN%ϭ?e| %QJ K83xŌN t kAXnZ]&5[p%A3@-'V^Z~Qe(OȺwGT˒ռzdX)Y-Jl :Y M3_o4OTB;i[%"tvSSHYxgnҚge!= m}~V\֦ vgFbyO0–F8i1bԲǑ?0'gퟸC*#,h>Ψ oE՟lXAB8m4]' eh&,U|&YSPY;; p(#Do[<>&5gBhdf%4.i_ ;$f;EnUO Z\gVS] F)%4U ge@ lP.,O3͗e/"ȕTq+S4@=zڱ8) 9۸^&K͕|"Rf6APpӸ=y/n[ q(AӪ5* Wё~O['mo^s=D3.AxmS' 5˥WRMQ(wcp,1:8= Șxؾ'0Kn@Y +UH)C)8 01yY!gRB *'{X?ϫ*toe:#*Ͽ?2k3)?V7ʣ)r}Yۤ}] S]bb&Vl֐'w!xx "|O+:-RgT3#wL.|6 'V1]?*FEvku.BrA_q&[K$OY   3\DF er%!h,Ff%+"kA5K _MWxL] *U1ku^\ĮCEX_'N+uXi/ /Wll}|J͙[1sG'Ua} p[p6qcmЧ»$V{j<~3N0/_U0n9Á ;UZ֤ 9$Nv-k?!"loHMhf,V]AO'CTJrFJݫ8=r3?zU VPۈs]͘iTtm,˶(q>D]UP%i~!6"L?L:B<hf TC{Di RVNʬ]5(ڌ>gϴL@Nq%Ao[̀>q.Wg7g}u ~c + k`VPW1| 1Hյ"] }j1|BH˿ ?mʚU(ȟ u#Ӣg ODk6+CsG)F#@|ט#cYj(zPO?k+ȳT("fH];p[ܩ6"fDOO,4#Ֆkd Oble&K=єWB +&T8f Ҭya-#hW/:o?}}zr1||Av="Y/YD|n\gac9DbK$J j| ><0 $&\MAM[4uWlYˣ 3ˁ|L*GvWie1j *]-1BOw#3} {JjIB7h8d ƬcJ͏RX - D́shFgl<@Fٛ&c~ú1&izN6O$TVpA?mL4! 3[Dޗى>%YL?.vpD_#'w\QI(ĩ̏`+3hx'i,sكtޟkɇR~Yfj #U *z R|vNYh&j  */ y3)bՑ#ԄǭPRy=ȃM!܏OP4ɛge3Tsѕ%N.FHae|ɝݙу™!XT_?pTk j1Oβ:gzӡM8Lb%;D}2© w=; . WJDM8f@7iwMrj $2>.bp.͚OM4XA8rN06&E&:`/o5qc jlƺnxBb\TJ|9,>xyK~U@> ^@;c{ٰ/3kbRAJeI͈E#r-X[5?pqTZz!+<9p݃q yi~zf"C6fru$6)bFP3XmsW}A8cG7el;rQhJA[oJ5*c_@*ۚUǎ ϮjBP26rQl^ނ{ P"ʬ2EIN{= p[MqP]b]*|%}8~x2SQ A7@vy ?{(C˟o}PsI,k$KIgxD,Uy4hLE`H<Igm[1Y|=bo =yK^Tvn|Vr #=?1탭hbE¬fԾfaQ푪oyE"뿱~UDЁZfd- t?!lzBii'f}B=GJi5ׂuvU' h .VX ]?Ǣb #ܩpuqy=cr׈X C^F9V8PB`a[h|:cN1 ywD<8{=v4_veU~~XHWRzl2WXRxo<^߾ٴJ*y{ǔ0ؓ?-$JwoķyC?+ɰƲE1g@ɇ=?/LɱiO@RIh1P8j[F8&C Wު=e5 C!u!$;-EqJk&m6/X@,yzZu8t|hul ')hˊLGw\GaYl%vN`<K>YK?`qvWV7U;m]C!/yxleOi{ݦz'"pw|C`lWJdiD4u?`ޣ*(>cuv̠ m"eVWIepU[Iiz>t;%YI'[~w2Jtcߙ̈jկ@쪆l=;]*ȌD4zpn@\qqR&7+opB) 6*“Nj~a1hU6\$MAg |iݹGB@ ^/HD}\`-߶v:5B\sS%hѿhb=ZCwcѪ(lw  Gh}z*)g;#Sk5g؟g]6{}.La9cPIpewM x^K/B\P^wNT2D<^U SKk-16#Bɛl(RNQKAsRCaeMLѤ(~J`_yuƆzx{k X-3͔͢Vꐼxqf)# DXI Jӵ,ž zPT1JG?prM',czmBw"l]~ɽ8c&?qZDz7189o^Jч͹|dBS&:ݛ~э8B2, ,*+ ,1/&0~hբIĐo =؅/6ԖgePJfvõ)9re| {"B-U jF7=x`Y79!‘"ӟm6S*+&>>g 8]%4Ơ} (`\ta3Nm("%0yd\l-)"+Nu~B+m+:-~"U?U.M7xRASO[]_CI[| DQfg3iK z%;Ui."{@Qwv1l9No ~ ܩUdwyE_D#| I炻`j}a 4#Ǧ0iz[ )_/6Fa'bK4#qWS[])ED0ccd;cLkoA lWJ$>%ɳ1۫S-oTCzUs\7+ܫ7a`<΂$%/|dt,W2(st &7nxht8`4М*b879ˤ2ϋ`ڛ4@U YЀU]6@¬N;\I /sr|\ixu4MfjT>4BrpٴVHvqqyS":T'۱,h\3p-R4#¢S! $My=֌5*gP+-cYg JI '~;/|J LVEXÞ*67'8o\u zp& "G*ejBh%C]krօ*4ެ5pDC:S2iM|y*mˋN>aL:F?qjd۩w龮ZaBn??&zw"Wp-0 R=Lx(PR?frPsWi$a?a Es6U1i{z%6W Vy'`oP\*"SJud`ū3 TZ R[ Lδ= {q} Qљ CG'Jbڊa$!m9[((#0WM>I IR4ֱ}Q(.آd&s_ kb1 Loʠyj`*1ԋw硝L\y)3 KQAfg3]@S75; Bw4 fPNQ?fJK'ylm!~8Ka[@ gqqcS * ˪$>mlntPb}Bb1"*?Xp-H1R|.dp">VUֈ.dBxA&pI!KSM!uIEY4]2;,\gd-|\]zǙ}gX_`Ky>{,as'ACQd'tmS'ӽ|E{= $**aMn1|mx؅H^l~ȲI^Àc 9 =# g)ձa!> 2G0}U'u1b]|IjmZ@88= z 吝xҦb<?`Ft&7mLd1DK_V5% RH/IVX4h7F6j>ۻw湎eXM>ŏAP:ޭ"M -Q~^sxٵR4nتϴK4qG*_C 'l)w$,#5 oo[0-jbcEbQ@gE.,VB'P ;3PaZ1l>c{B$ ec{q++5Lm=o)f<4OGw{P7;}PAQYohJAvgEejG6tcNȉD\l0nQhk)cV@H.v6]񡟗y0sg-Nܖ0kP!iܣY2v—x׸C“~- q,;]mv> bㆽC{Y\m6D~[~Hrg YC/ F2&@8;`_ٿ ѫwF' *Ť+}̎hU̱'=Rnq:9:pmF"P Sd2q|_*Q !ea]ǍR\B$9"k._U{/)<]cjBy,v(BEFQ_ޙqh(qT_h|` aok&г@g(bs>]9TsU=YG\tu >lLǾ`tX+% CJ/.\(NG5q\ƈ7z0P~3`>)_t[1v:G>#cҥ~tçf TR:WIh=oM#Ԝc(RۅBO oRx;c8(ΓǪQ|yK!_R\G7 lTl qсQ @[4{dWz BjFDmwy[ U7BR] wsL*BhBbAo6hflGqVMxJ@2㄁~A@O%3N~9#bsY_@A,Y`+>]@nD,u|NjW9w(=g\=QmpzWۢc'cR'竛5Opv%F`P*0Ә먳1sljB4h ZĘw[;Y ^:dniA2#)C3)a1w+7\)dv 8 Lڌ`6}ĭDXRs1Giw*$ډb-<Udʑ\2&pmŒ4mǏY)U}7өaF>|]t~[sCܜ{| m.XEZIxſu:y VO. lFyJ˓G Gڱ]~>}xg_?Jz"#X:6؎D d5pnq|[KgF@)^ YeQs{NU'H\d=v" Cq$=E9ePj|ï*ӰE n.Ug 7jyq B+Xljho#%Ԩ@ vP8а=WT K#h\z$ԛlHZF ,>*3arL,34 }<_H}9nm0 !W6J] y//unՀˢ`WZr؅ \sO\Y(d!8S1(8ņ٬CJg.۫]"L$;/%.]},U6 _ P> Ń.ee42ce#gټ4&/dj?0 ke #ẗR+"yd;nj V] XTF5Q1+kִ_ovU)a2,B٘4? CeK3YR[מi eG%bX1@g g]UZJ*9pv+c [DLњROzbJMA~{V>C9_gr03ԴcƭaHb=EpePr ](R }q Ha#ﻄ/ zN4]v%-@5x|e ipe?AHnr}.*0._k^Ws@ daI~E k@xرDc'KlfC/en5ca*b^]W8:hS*G6wb^f_zJͥ(X;C1I_/;:CC)A޷ j\Evҫk1*TصQ"^}8.bO87!wnK!6 L xRu8=Z=LC0DЬ196gQu_JAjkA L;[s_'h}B,gd͔迭ZcAL*%p ] 2ZZ `X%ŕ7(q}clXq7Wsp: T3̞?KIo.i <=>eFjEOvS_X.U(!lNUMOpWo4%`p o!/*T?Dkmہ"qpyg-rœ4*nAxR7Uy}T-;E15x^osB>"pY_4Cql7= i2jd>o9r8I(6N}oI(OZ .ڍ(\3߱)dt$֩)t;NQPPƱ6عR S 4,nTL;ݼDtG~VN2K*$֒bLUI:r yRO(䧸Mϟ,cՎlN&||o\N9P#_cxFn7{+0~-[2z> ߡƲ3mӀ n",}MUnSI#1 }h@ ӡvZ'5N2eh3S꒗]T>`IѺRKa >;SݭbӨkXSIPBSf0'*aYϭX܏kF##-KRF\bnN guLPb$nryX#+)+T8J.xb. !j"y˦#yTŪ^!(u\pS*B82[sQ,nſ)fsQ*>״uMα8(6c?cW]QI\2o*IfG)}iSGMqժ9gh݌! ZrJ<ŕrHZ<jv HBu.Y."`p }S-Ȍʽ_IIDu`Qhл2vvsfMe39L]`'lLF2yJw}*8jrqLV2xY&bPi69c"5{ >vyr[Lw.e! z.e*qc"4i߱(^`"ˈM0m )v}M4~@xn\#,` O,ZG+詮jve6K%A j &t ٣Ҡ*VZO$[ub6@,,$Nq9 'Mh^4W[W]=nYK݆K3_ zl8¸!l>EDfOJi&Q4o!x~k5h=HPx[8ADi]V Z"TN[U&D:MG^)9m)y7#y/:YA@vWI'idTJ9%xp02< H95 I%Ueg#Ja'043l_5ķv8,qoC3 ;K 'R jIœ=rtwG[?VgID䂮q9yꔁ $'N!)Nc\tC}˔0%6cxQi3s3!tu_A}Js)X#.a$n)f|#FN ʻv <os[r~ؙp*\3{٠i,Ֆ;t$~)19{O5G0Na.Vп[Yb4F5̕OL@ mߔl$xJOq磢5) E~i?`CEⴶ `3O85'˺z;tdC]$Col~K6gL]/rqZ *{"u޽soGs \Aɯ[1f&htݯ8߈tu uQ/O.<HN.:KV;}@%DOӭxw%7#Α5yU[A^4ݹ<^l,X%d %qN0Q!6삕ln(YG&+ H6̝,*߫t(>R7H/F(!wwo 0 `D]#8 UJh:tAW[HcR]%22c6<Įh.]X#vypRL;%ut"'u:l3p|;ZPX!tf{&${3`7tm-%^[:15_Z^[5`n C/7+ʨg Ɯw}N{0uA;+dl(/R .6JyES E<, :Տ{|lWy—-?W;0|:#q-gŴnjG910ZBp a΁/խGmS=b.v3'/d^xr _Ph =e`1ԁ I*5fHrm5es Xa{֢jW2=0FjY!v'E? Y/.}ة Pc~ܺ9ȬKWPOT]rIsΛ,zƱ/`M<L/xѓ4)p͗qyXRp:&2? %O}-䎒֚h h 3Hڦf.>(y#4nTMq sDRB'ץ_3+"bM6d=O sSEM~qסވKC'@TnĨSfV{_"0[<NƤS'ɖ3648VKP/_ q+]x}Gê$HdsvU^ȷZp2YA(þFu,p<8ӄ3\Qalϟ_Ba@H~xkBu¡O`cv'Y Ak/;k<>?8Ny\[[ |奿tfg/y1Bx6d \gH{.? k0CҼ!Ki17+3tO(P}E`PڤvYc%`=AH}˟(ּj^tJYH79&]G.&>YH`(c딄_2Ea+JEFWo[-_3pdX5|$h DFYpK/LcW=p~'Ib} RP&$|]*?^Lqn"ƧWƧފl?ϱa&`L7i*LSYy@Ф"*kt:)-1a|,-0PQULRqFafɀCtyԒG!g؟%E_(T=2a8mT,m)TA?U*(uy!BBf8$6G\o3ϒ(8ӕ5Ecp!㭾1,juxB]%V\x%ÓୟM;O98JH`E$lӝ|Mh.}0RIdn7hm3/PΤx#BKY=6|_߻&yVaUEcD!^ 00"+ 5ԟvY~ Ї5 \0`}8kLVL8NϋؽmiEmuEBq~t&sKOlVkX/o2rcC:G4)Sy^f =C+EHA*g=-8a{DpX?Rk#)}u:pYB- YL- 3{Em,dRL*[?!s_D`BT6B} Pe뷄l-7cmuޜH+pCsle;5u7G*Y[m@g!{x\E;f;ͼBlDտh8Vv:4cΐ@?B0:Y#u|Ǒg!I>Ox2F(oA,:6BsҭEsJڦ/c͟lLEӇ4bչ:}^^yr=wJoe`xW4xS !B&* kltM>ٿEqm92'k2rmN,ie DK8kh`D},Z7ѥ-YQ"]ߖkerK:ຠR[X%=bΞHd - oIiA-XGHqɄ&Hbr = 7spܶVSyG?3ؚh8LXx;J"{mR r&1[* 4]6M[qeS SD~䗱i@=_% FcL 3ݔ 3~FF"IxJ7\]1 R7^(iBK!/CL[w5Q- RtR[v0775#XÈ5|-?t }CFtvs. |bW~RzBFk[->˳)2wTsA*p d22 S+_MPbPe"nIPbc}huK/v#O!ʵK"SoXb )6]E* κ|0E~ 7(FԠ+ U 4 Dab#v#~ʤyTkr|MjE?LNP_`rE8NgwCCA,@6lZ\(h0a\ZݶC2d#s] !P2O>Vp`і  +H~~qqgmδ*ea[Y N67`<ÙF.9{Vj_>sig,eϸQ#FpP@,XV4J"햠-K,(G :vFN y/w^jazf ƫ~uV+'?^OT(RjH>ˡWnPiݏ؜%}T,)೓n\JO;<;FyFU#‰]tSy玸4?NԺ`mR <(}1l~'[-u,Ǡ<;"w3tT?ڪ@spO$V5*ĔRյR,4&Cϳmi*ˆ*8@< M6GEm`[g#204ӅzN,2>W--܊4<$Iwr_vfvnum'?IӷT) 66̋dҦ +?X0ktg7!p$7)+@76:`Y(/R2&:LW.'s0p\KקM qNh]<p:M/~#>DtNpNr{^Mpβf^~|GR hKc rcE*Nt3Ua*eUNp R%;& T6 c"M|Q~2)BO @ErJ?:r>ր&Zh9 !dz]0ϸwO8[*]ֶ)E]" ;[ܮSq֓|'#BNnE&_RtCN_ 6:g}hzza\W(QrI\t!ob}?GgR#p)dM%7k!2}?Y]D/R+LŞڊ V7qu7Xe Y1~%g%/ o>#p&RONbE(()T9I򾫷MN98\0{DzVY8vXf+P)W)UhG_e'=%#ETb\})T6ZnvycGu 0ZGdvBu'S_G> t/ C\}]›Y1KV17SkK8I_n-”R#LH(NHʑn <)iO `p{?U{բDP{F'IN0c2#ٖ;n=Y;*WJ !ݙo1!/ib<}f:gFsNeo@%丌ں.ȧ/qX_> FLrg,w+ {1hb$gd~#FVHȧ=cU=*:Ь\6&){c)J5<5Nׯbz=D \k.#`G ~4F4W9'k>2sdtpW}$"m^2O8sFYϙ0Q3x@u43֪oK:*aIr K֑V>`5X"zIT9K[R=hp3 }{|w|wu!;% JV֘Ye_X2n)۟mM/>y*,I<iv3pZ9HD1ZCm N[gU|=% _{#M Q~\*U?]NS."ԖQxi%: Oܭ]7;c5"jb0x]\ AT/WCcGvAEФՀǔ̎*'7A@U&;$ 䯺:4Cjzw&m+!p$p{[ݧYuzu>xWi!Pp+u ЮE3;9{:J)3W38/,xUEiPw)$ r]&魯'$*խzaቔy_3 I34[ kmeq`d:읭S `lLp ֨EA6,-S9;xHcs}::}Y4\+Aڍh0aMihaghܤ. Jm%O%W.V^; *o0#ȡc\ֿT0It+MI1l+rQ"]67da  w?dC, Yhql6B?@ci=..AtwOhC;*∔pH߫_Z|jᓴ.kWb~DÏ*A((k`LY:0S0#OU\_7P`ү0ֽz4ST+_RKY2p>{0 @m:YY9~RL_ @?f(K2Gu r85 {uBtΓJpk~,aT Ɣa5q77>x}ȉAnjxޒci? }j^"mcjYo)^y;B ׻2_ ݐl1ܠ{ފ (\7?Ԯ}e{NpuX^B9{RWI8XQiY)Fܭ;oފ0~GEgM,I;hU pꝲOn.F:hrA.mD/ ܣ Ê݃OkG`k_ݖGAw yZh{٫Ћql v5Ϭ1@?w%ж]d2Q&வ16MMf@b#%_ A;#x|x0dS ĎeD(B[ި$sQzA7nmMߴ T{0U6̈́WA}ΰ?AC٭زM%IP`RINW#-F9?3jHn޵zBNt,j)RaK},*tT^al÷ד?V+<#ҎjH3h 43IFI?d'Ƒ۰rnvy З]nkFU gK6hxC'Y3|kI_(rLexH\5+>ϣq2܏5k'[+ C3z ժP_b[|Dł@3QL<)cm  r]7@1#nm.KCǷry-Y[Cwp5>1w4/mb5f;F-TFb&h#?QIuh]^2 NvxNK6^Չk]j}nt#/-~A(rPEo/DH[=" G55d!nKաOo2mA tRL3KM>€2j"v8]lIYs\ooU5TE#V}Œ˕ƱȦ[U>Dz'W4^R(޺Q¹R\RowUx :*=X !|mtt avXkN@oZ_yA ҈8|Mube&y(M_ZpVnzXEIJq4*ppPǟ7l7V^NR ?!@g}qv ~p( S$gCm;p  Z<!et]WBS}˘SqMQ}k% >S挷\zpf$l͵2VdR㠭]<,02qՁН -"BȒƑX'A17n]0YH)f[=UJ-m&2/tt{tbvSlD9vvijWg`2!@n̊wekg=# jE̍cҳ:j':TF-¯np@$ƀjGK }2MHC H(ϩ]F~ v_$Ru1 @lK5h3ЋH\A g#um&ЗM!;58S&rˁZ,NJvlX5g(~695i‚[] 8ϮO: )8wG~[ q-N)VbP4Nx쮔X GH/>mKt1ۊ/HJYҖp;PS :2(+P]]-~kS`%"* ë~?֗sLؿ/z$^ +ZO"qFt4+vw98۾7t"H(5 ",;dGdqT JU@qոPbl?ldAJ?,(Nq_H*QҶp87cpj8 側q\27$إa6QMma(ܷz=3y94ZfK61;;6AOj)Lmu3EP!wx;!@(BW8Siw%(d܂DVH7*]l)͂4h'F&kUOC(ѯt꘍Un쩫[8ޅ oxIo[,nUJc9FKUPWDz/'&[qdh05&4!RD='F{UWN'ciAGV'Ó[oؿd7??!@-EGj W/_ݾq>æ?ױAMj%G v(tQMe tp(' H(ϋN_|.`xWf%כZ1sb V:~ tĽuMVYkt@#{@dBLUV?I ,6“ſ[r˚+?.ɭ!C8< Wt\,T|GLe8[#Y~OA:-cѪWt%scv)c_(9L.3z9"#0(Ǎ#cgQgcdD X! tc ڠT%~[s*_ԏ9݊RMi# s7 ZK! ’e/'wؔ'ã`2}䖴 fetN-G Jjˡo;w/0%?rQԶ?7y eS 5bTUv/d{#(!Dpw"e+K0,mYODW.1w,>T<&bj[UJ>ҡzp[>y^jcG[cjiqmHQeOo-FĊISko[ I@Վ9T <;EqpB@iɊp%>A |JS:hSL n1v|2kNn:dg=yV2ī̑;dγu2y\U1 ׿I~5ȁnElZwj^iIO^J'rZexь›qw7e. gp J n厄]'k8f5!N>.ҽY,k1ms&E4ިJiCx,-5D_'.4-:]*IzS2bK M; 8A`R98&VJwf-jdJϓ-y]ol]E \% |?kP˺A6>@a}7*Ģ "ݜj@(g]M {w] D78/ﱴZa*٘ᷪ ,H^uJP(giùӮhBPEh2hД!\RڬD, z%Q!l߬Ы̽;%0#cI!cCee&2 Z9dG*} Nd V e&K$/G1.ZѪS [U5` nT2J| ٳIKUBUMOP%UF5*"lBcm)b;Ry確 )M#/Nxv\znP-Z$pY>#+U8lR6PՄnz:6U)޽!,8r0gb>_deJ+٭eBZ=`)ԙ)ZEKQe(t+@XToJwr:7n)>Z$x~K p ^.Iu":QSL*nX) vp0$X`m:Dq |)_X?]TiT,%Wde݁'@-ha2/AnL1UDj;im]8W6/h}HIQ?˓yDÐ);hrde"?y;$!SXOYRTK -&DX)q@ @p>xfݔg#dkߌOW?h~YD7ZJvXNQDl4kds!-DۨIZju\p+(^XǻֆUbGRNCM"Wqxz@t[ PW\y)ƪ'|k]I#22(ɅuhF})qU.MJpPr ߧV5= P9ym)|Y^!x^ϲ&]MqqJ GK/ HOszx |eu=9ERFnkMwA:8v }mshau`6C-)+Nl])߇ #Br·dF'$ar%mW(aLW ]pמ' 7!).>L8 Aѣ;[M^+ .RTB^*Z`B}O6O]Q(i:rh݅ M=ڼɆD[Hb1p3:n\Inw&SXDaiXǬܙ/ilHkĮ[亟 5pK/xLpPw&ז4{(ŻT^׸U,2ȁ|\ť1af 1VuOd}{ohlޚI,>M# IN:Pt+" ϡ`cPpȃYyՏ! bglnχ`g, N}S[)"*46FL½J&*mL-@2ϓU-J i}~_Yk4cLgWS:pr5v62t^WXg[NmЄa,fZ_Sn6bշ΋Ak2_A5ko@u yYv#YxLJ"SqBf{+S-C((v ]̚LyǕ: 4:|:wE[ SC$H:T0-W*(u}0e%b$xGU3Cݪ%ͮW0ykr:moۚQeBȄR-~{l1Tח*on< vq&>Y&*8Q3l/̯{0/ޒdӥD]F>]&bǠiʺ/Ek Ys""Q5._1+1A tDj3 2$,5װ#9zxQg[f~ٲ=,rRa00@~e!Ѽ'9@G]=EKۿIZD<ʠ`*bXf4c05dt1>w cBYΒ$cjsCB>╥r[!bHOO?`Q 0 4l2P /Nf^rbGҵk  e@x *ViHT;)Ǥد=;FA,oiTŪB)O_KUs3x#Ue3l{=yij$f%dR#AA T]Lg44dw)-Q0d 4 oU=7+ʁv@TgN\F4\οD/{ @]h ٹMyH&vzrKyXMhۧ$t+$Svl ߌWѾ`& -9ӇCFlQJC' WmXtyԖUd6qlIk7+g 1:+裞[dh9̵,Yt̅{&#j0v^! ~nn.S1n S- X#0}|WԐ͘fyID$/1'RpI:ϼ;D8իwn1!}Zsʧ.m -q?ECUCqou {ɰU7/J{nId5u4~woTslf 'E;W>Vj:y^1XEX[BDW n ^>Bp*=QpnYT;ȈכF6c8*WD".:&NܻܻTlJKx$1L혘}vv]k_EDp3ѶKr%(Jo!Z==7UOzG0 0Uᱦn3\< a'oFq u>@8A G&b+ywN1'D~Tucʽ.GTՄ^8mLS}+$.`HC0cF)۲ł(@nTו@i?D ڍ|W5y6w-oe1A4qU~/ e1Ri)%IlC!0Itdள&q{cΒ-w( idDQ`ޱ/׌E6ɫ:k&0-p4}1 'br7|-,ex.3?%4i{*pq@)AFQTjyK)jRqГ?/xmh,`sj 'kjM_- ~j_u΃lA3.q~cgHVL \L &)a6l|ɩJZ՟X9 ߞ!*#Ob۫B`$ |i t9=j. /^3m0wcXܷ{f@E<yX#Jx,E(?Vvǹ#$w _OZMy xCNtK`IK[Z8HtBd3 !e䕁㣓,ִTWtR/@G6ҧ;wrf-1m:n_$ֶ9"|Ы lk/=7JvDd%9^2&9G+@/8"gL~G'A٥h E 9D%XVZ}>!@YzV[~: 6Yb5}dQRH;jBFѡ>[)ts?/ U>"3E<:=HJdYɾp)y$ o5>;=5عꐰBQo]<v3Jrmwx fbEsޓJi6I>ͤ"do7\ϑnZGꢐtrxĵLFRVQ4^`5[!ߗm}2.FmXI @!txn9~ g89lJ"2L8{{]oR>E|S-vLA/o0%grSEbiڌ?C C ZVR6n%D8DlIa:=\%4HQ 'nEK%D357u5cGr[pd]F@d>DsfkC*Ϳ{pGU&z>h‰bL?NCo5u?ԖW4<}_N컝Œ& ӷ V;F=0Xחj UZqkrؑP` GUl>)8Ҝ_,*cu|]ݖ}S_ 43bXJ3lb;+"@%Ԟఋ̯_hmw&'@?gY! ) #`c_ ,&,y\w#w!/,-7lX, i!oe s~t sð;'K|OƴRl'[=̻nTJP؋"jr/]CqG$ k:tNN3ӁN&Ƒ3ie']c=EµTؾgؒ9,/#nMCɣI4,0}{F0|=>tcj#UVϛb2`8BDسeK>iH}/V+VlcvϣK?vm%PWz_Y1^Qvj(s+8a}ra64L򗄃T W;*heITN-Z; 8ݰ֙@Գ*i]_<׼5Znr`_\j}xw g (nG2Z;)ιE5K9O4#QNnǴQ7Kp9џ0t(38 *|L _ KbiA|ՇR e?UĸÁЍTe /.dİuIai XK|M~MBvE}wWX\C[F72+ 5f\'|a E DqXvCfxBO۫NH2Ы"t`,JghcY8ԋ~t2mwr5@||_pjg V¦*":?|\*k\HkBw>c<Z4Xwwy>z4,6iܥGXe s6[rʙ.hdl;E\P1g\z/KECzSl"q,ו㣆2*n' 1x*nMˤjMv,21n?Dtm3/3b2Sx ؕk ЌTwBtT1D4զ 5.YkHB>3NBL #khXvRbB]S &t 2k*S]w|c!u 2` 4ky& ^gN]+Gx+m *bIB؏]M\53x4 ^Vlq[\p&gxҟt%:zL>4ʎ mG,pX+ɗ%NJ1`T9*=JC6Xc%MxxfD@@FU+,?7-{}u(*&8#x]DݖfKK;|\[/_;mUm&goMp?Box1ʬMkh@]X `O{xg2ٔe0GcVc 9[o}{qzpOrQ >gj0ּٛ=|g"5;ar>Df*-Η@Q~fuHzQ(!h3!Sޔp:m1cYMaB1M|Bؾ]+pG"@(C-B>~`evUE 0q&ff@ 'ř*ע!ҷDj OԛuhF;`{ Vᒚ.lk~0<9On`[@(C7ADD*2 %vuqB /Q&xg aexr q GfovC߿ICLL/ C1?7]{i}IRilbS됁/ٜoNgHNkVJzF`=ƶt5ll(Av=q/,',2\+{ ۀj%ͷCلv4VUT4YRTc;/}[pխ/OOiTt_aԣ CLXse=CNas٘0[',;aZTEر| EC)?ܨ'HY2_>Y3&׈9"!B[ZYǫT?ōH"҆xMvV&c*UnNc,m#}~bjwqq?HyiMP 6ɖSk?$uP \پܳOBe 1Vyg6mՖJv` 0Ĥb~*:n"SBF ۜ3F,(- ~VU3:ǢU0?KlFRJ+đޑv<[5O@ͩR׍Gv^+(=YsCiyS+'h>G92oRZiRƒniW*yjIBp>V_ZF/Fu_aˮIV=ףƈPMn-6$A4]8Mt> ,9>o՟k{NEh=] [/rh˖<VhvUyfyƮ@u%#2DSu/?ߺ6,n-G$v2ju ԕݹ,h_[aגpuAy+x| ja6.Z&aᴋC/'*/x#>g K&"%j\W~v '֏-ACݿMI=Bm̽B7q Ź1xplk2+5|o)LP|x'.X+}aچ hQ^"+s]!y­ 2f8{ "KRii8cBc4iߤ*jԾّc(]ϿzEuA֤uD{/ȋvi6 u-MMTݹ pa@lf Rxj$EZ`fI#WawHzlmb/y#Ni bDˠ|x|5(6UE2ZR鳍t=N fS1Rجؤp$>_ r'c}> l; I,.mApȩ.-ֵ=d5{ ^gRž<ז- 䲰m\?}w>eE MÓW^t8r]za`YiRsPڻ}m;bhp$̰XLոf̡x{t̺MN@J[Tԗh35&G{1]JAuݠQuK4iW{nl"P*!q+ݕQikMZ #b^X m؅gS!V]:yɽm&E2(C>8l4wH>49Ї+zu8zdVr> 8.>1I{g+Sܱ̐+06TV@>DKC?jAu޻/u+Oҷsky nũÄ f' jwdcYߡǏ=}ҁcL1yD;D=/A~쁘6O*v,²Kib @.z^魿J9ӞP.ťK+O֏{+XӈQa#~ٟY7K]m-|M-L~y$AzPyVDwNA3touvŕB U}CřP1pwvC#H'ց(dfDžG6(a2 DZ3g-䣼o%2 a ZSA v)KSȝ9迵T;ŞTwH;/{^t.VR>e4[E>T."P2T\c(55cp:5kt|uQ-ԉAUX"gHg=]XҕT:(:y$`v!طLj2}[o8w^Xb}<}'L]^q[af1hP/Rܶ+]ʲ9*5_(WULZWS;CC/˧EJM맚Yߜx"һ`3aPߴ4,(/9˯V&,ɦWGLӥIc )yF@X5 `ղC*U.r.x7{st$Zev6,:cdHif3UXx]-tveS(9Ãg%bW1ǔ޾ě嵔ą*2 sڈRm,S,9u/,hHWI -6R^jlOB1/VƓ~ۜ:Q+a m$owݣL?x:E2ɣx:Ħ| r\s7 e9r!=hne2qf350&fyɷf$fE<330}h=j7t*@qT55uAnX.Ό!ٝݷ#,_. 6~DUulHF-n~>,k)Ve)0]ݞH xJW:e=KJP:u07a~$4|w-vڎ:.ˍ ._-3$K^p'ȣ\d#wsM1Y-E% X󈥔+ %&[WAKeaƒ`5r I$^vcC^wDzg>zEN%1y %qˣLc,'mwk#hs{%w!7auCRH?J!` Y |E?ic"77P1ЩmV߶r>c&N j?V"'ѭB5P-f@ێ\EJ tt[ez;0!~oR&a.Cڙ[A@EVjjP4ntaR -H^YqY_EI7uE0miL9<_ m`+HkȶGβI䇾jLRcGiIؘدN>u{_ʘY|=VzTC#4w|)'FeU)wSqy!.HbڋR7MoESCU 6{.Yu3p V{;)8 Xzg=hڋ2B'eX)>5mćR [Q%F2/$ [dL-صHlx:$6>E|KMgi(bcw%bJmj'Z$awWu&e֫;-=mDtWg%*|`G/ t:q:V c6n㘙rϫS$rN{j(Ÿhj@2ޜ0 }uب=/ s>P\ _ɶl7e*2[Iru~"My<(Psxfd - .ֹݩ=ДNAD C}fhXc` uk_#oݘh NrLxW'(Y9blrz&g7@PLེ7= Ay}[PEQ]:kDGRmo\aG'03.OZm8P K=Lz#Fqs@s j@Lj! 6ÇR!wkR$'uu|nOQW l|,VG 6)5 Ǒe-"A4+ŸWJB 9އF ~փ^=648{q:׽~jƁ{y hh!TiU$~\e}?q v6!;%/;;!Yc5f5Jŕ]j=dk$:k4aw"WiBn\, uV_(_sw+"DI"ruBMf!s2r4\6(ò0_vY2l.M~cnQD"5JGAbuIM܈y,N#4TsZXmlr87EĚɾ {a|=CJu&$#aUQys*eӍ4]lz4.ʝ7M|`96 级zzą3}+4yYrS+c=bɮ.f=/.J@XՉ1Hp@i{TMlJ34ѭ& n!6r6"#ꟹkomm!]cmN(܎2+"&򭭻{U)+t*Yg9LYTA_֊˖XU:Y*s O[)ޜct #F^k |+,H9㺥u@O 8HZ38u=qGlRC{{3L3`S^@FԠQ**q C^k}`'4 s0wF!`Js7sJ'O=F0LwZn2f%&Q*}A I#k YP}D >K+ V{,\lnc/(ZQ Zɲ@lv!XJVh".-;}SMC$*  Ӫ*Al>&g{-ý=u;2Q%Q֐޷[_tuxi+ >a&?i_f$=Z}G[;H&4/%rѨ:Kr\I٪ѐH t$pYv.N*pZc71]SJP)WL=f17V ƫ~At@N&y%Pdm { TlRͷׂ~]P`8tW 1ìO8ǪB͹~PdicY> EA#DEOD d69Zz)u@0[Z_2aZ1<(.z,d#w|[i({ִm@=,5{QJE̷*˪K[;aRHt&+mS%JJȼh 35 F{F:TM \(:(^B;)s TˡOUlEA4*g u皜oTG!qbLif1״K4|rJԏ8|F^̴ ?ÜXGPdZh"fպrV$M&68S yG ڳ`TBt}ˈmxhc{eܿyv( It5I^nw.k6 _j RKgi+.زxϽ ӌhy,˗S(ͿEѵMYG>0LO} ٟZW %Ubk+,~t J/ +SJ`QHųoIHJJ/;6"1Rerj٪ۇ9cA89?Tb\3 EW.tb<[C@H"`\?3-~ Хoat=bvk+S (tvmו kڲҾ`)BJs LVC'4Z~ AL+S&^v̡y}>ߧ˜u8[/G2?afʫx3tu#pɧL%5kPwZ¬E/hSdr3$>8BMkp퓲79U|w&cmsWkxoJ58:fwoy!aBy.-YǙ"h%JpX;O  {C]zOo=OnE㞛-z1oBUؚJK'Z=m\!Go'K?',|λh1Kw=bJ lAc@KUbK#nw 8Һ-NRR46VJjۻnGO8B ֽ@*3 DoT^O D*(>}OI7ENxpR۩H4xJugc NMr*jWO ÌZ8T]:H@wx굨 V// 'fxH8ɡ\Mߕ|#,2bӈY|󳓵XRG tp)YυE'Գ"9Ut26>7#d>Ut-+^ȝd씊rzѥK,]3\:J5iJ;d%Ld:d,BӸgF5 h;oCw.8Ou:?뛟Hd3h [,KkXƙ::zĂy_j0ܖx{<~B|8Z-\ MW\15)2ZiCJC~ٷn ,ÊgD*44 Ex^c\5\ QP8 A]c\Qk3KNAho֧ z&o>z7|1aYK XhW+ yg[f/ag佌څߣbߊ?ZT1Dy{ *rU3-+߹ X8x ':PG&$/ ^&m LvwY!?&ȨO^xoS?7f15:j1yh;uEt Bo‹Yk2o# \XƳ// b\QJv_2FaLwHۢ3 ~N+xj\thqlMAkN-^GWfrYlu[BP*G m~3bo̻5 J(#]ۼt ƕL]VlņXqy7IЖcTy֤t aWaK (c |OHl}HCǃטO 5t:E9sK=41Cf &mRrtXjj,O$MZp5wV?-w4H3b7XWCN+c :+%ѶWɽ0sE|C1`4!DvUU~ IW~W}h |O ?9G욎I=cP*Jyb;,M~4rl'swhv"nn A0.B(]6Dq (*-L9n!<`$4KoW?zI mcp!O"otz "tWzJ|,~R"yen9aϤNetGE\:/EWKPGQI4Kf ÷-mH{ !} p@0*9}) }$YgJqh~U\D{pUҡgd-6zD7Z-mB?ۛotj3U 4Cċ'#yIo8.7&IHQ$NJ4Yk&W!dj>9o7˚m&yC0󑙊M9FBp2#eۙ>ytjο>&nmD37zsÎ'yVADR2 O HFAJ8Pɖ:)j0ʪ{BywmBv(,m0"]t10"(x5:݀R{XR }A<3=%ڎ3wreҕ* 4L͇Gc|#^%.c[  29#`>Ч@2TȌZƽ]e\rK,S 1o?z7aMGNn'/uK;6ˢ-!Rqm3,3t_Fϼ쳘u}d0=xꣷ|7/8ZAb8PL2a? 8r M 4뷂tKDV{\{lO=ôp U,uR~<7/̈.YyCJ %wp,_ʨή8 kA*`X4ԥu,̕4~ <׫T#vs$ϖVC+%&NX2fH_zV,Q".cڗXCOd2wS:>|u-Zl16nS(y*AG9Eqttеq4ptY ףr/uk 4YZ*Tݮǂ ΌŘ\-b3l=LVfSxMP" Wۤ<1_yRtgԟҀ:n߫;<-ibF;$@oP@YNXaBBjȱP̹ÖI1jZVޗ6!C?Xn#׀}z 2ϸXv\CYq +. 3-d楘՟O)Iԋ7Kk5̀TDkIu.>B,;*fp7u^.<yax;ΜEL<|/UU*~:z>ffDQH09"aBmN+ۨ>ūYvgz7Yw7Ek>3Z/+"#ɰ$]UΘX`N1^՞zO MkOPǠߜ//<~=JrV`t6q/D|fGZb/K h{iIhO4f->JF~iR}dIŽcN*ڜKhN̛WS4pN対;8-ϧ)As8&wƲbІ-[F-o kvy DdrcJ C<.oW:bPݴaƮg|?usg0-@$CTh u%[IZV@R-Yz J"C%< aCԠ>YC+ !"}n fZE.#p'P",4톻]s,;\,~@ P"Et~:" CmYkS~˜ b41jA!`>{n i(FfG\7㔂$|l'*ywo;#V8BG w*vMQF,"e"7D_OwrGV{su|Kse+^Ҋ՞tkVwKѴdA2N4ȋR:D#a6RV\U ˬoAKG* 1z m>jU Mm)%b$RU'='lGޜ_ !~L|j N 1h>ysXRHl)Rnveb|/dj˶wnfX0R_ c|}꩘JGPW lb^=W_{6N k;@?`mxX  ?z~cC(r@fI+*nRFE|[Y!lO&J8i$02;y+EњM"3ݛ~z㬓軈[][nmy =j8޶< 5kGZ$^laDeӓt|TZQz>_DKQgT!+(d^u f*tl^⽏]=o~ `T.Qclq.{nf"ݕNCizo@Q>{f~{y=t.(WZEΔriFIsgXL0wU1@ V( GP0(vUDxc殀~L[~ 1_Z c^JyilL@:gt@:h/̓Xٙ$u/Ii<Ӵf8L6Uk&*rhLruZ+˔R_sȸEPmxz =l4=nV3ۂ}'|zSUH_Fd14ka{Qѓ"Py$īXbdb٤A^ ;Hga=;٢dXJ8A>n P(]r;8ބػđA\{_^;RYL8 vzrɰ;K| G@ySq;4".][tj0j@|/[Ik>#yLk$Q-<dh N'hچ2Yi67r|>bKP[.,ٯx,:D mƪߑ^۠/tlK= N=pIBZD:꩓A3^*.kb#1ĥN-M#ݰيݧzߜ s2T;ƫʊegTćG65H d8ABx<wZh}×i&)ҐWe8lh{힂M[ۙĄPh]Ff]׈^Iw{ *C s0frb_FTkOs7SEb©4P$(ߺ*O-4u9d? 'O[^.2.`7y6R /9. goК4 &$v 0]5dL:"qQXdA$:r'ycHtsF.MWdXGz3F]i:Jq&12[=9ҷ;GJGe;̂i;&uSuU޹+7o~)=0W ;J~]c6nj݌l%%1G8vJPvՎkn?Aݪcv,ˡj=.RR8[ {i3r gb6P~#H#rf*Lչordz/w~§~mt)]R ]9w-J]1$ hF(ySg)21>2tȃ +t Eފ~90OI2c BjbDp7L̍]$tujȻ圱G'sdgq=g(JxSC, E_;JF%jM|4'ل3}$٨^; " kÑF7؛z-8@ՈJ6Ɖ1e֢RZxmc`ZOr ~?1spJ7[m:?' 4oW_~ɑ&|3P ,,]ٗwO-̭e7pֶ+y\pκxLwyTTbwrBT)oBy 򺎠V?ף-12bɉiX;c#)M%4.\_w˿9߉P\ɆBQkyj?v5IXN(oˈ`A_vj`?zJ_R} Rp-+|.:g{ŋRܚHe|ډK]r9ZґZIq*_2?Xn^eC|= fs'paJv!R5Ya]0&p"9.H}yT@ܙ<{?!Wi$k{Ւ(\vࡥg}JIk6XtӰFs8H,"U) =t'zshDViJ?h_>q~ N+dJ4a1 R.tA%979`r#D%H%gOe|ee:bpar@Yw)0~z4LV;ȣoO}%zGR4cL9KaXʟgiIqT~3F̕3|_^isEY!'],+Vx!H%[ˋyNWxPɐҜTzu6 Uq멻c2X31cI` dnHT! 3Aē@̟bJDJcrn3f Ӎ'`8 G;4CMPfNu=fU8 EW%5fN-ض>"{! maciUۏ/ 1@(fٽs8wB?E by ZQ5ZOp}gJ, E15/1ć@EVdda.D?IwU4x\?ngwM7ӄ hP^a@?KǕbÄS͕Ͼr֘:x{1ި[RRnYpI&1 2 11'^|-t $B*MnԪa|Ɛlո/01֌,VQmLϐB$x2%4Q.::VcBXݚuixwhMiAS’1yE\xS&whfƥ[A3(Q@`=VdGR矠…|F-Y sshm{]"~T+}kXOJI! WnO!5> ν3_p= Su$fŲ٭j;w3殒1Ԭ_ i[)L@ga*I!< d冀dES KRyH*~~gB`L($ ѨRD ;cu<#mZ!3"1fU F/B*"m JǣShL:A4hFF$=NC16]z1 qSWcqt:Ȕϰ+YM.] ãΎĂ%43uSas;9 ѱPJ"Zěx٪&$&Uh@. Imç28B9! ݲk l3j%kOȋ򑏂iTAloSѐtp"31e/@hxcAW2a6+i][t^P1Mڲ[%Y_ØkIRZNB:@(CDKd9v[a6VY0G V2dV#խEJ[}]mɊZЍB262@,6F *UPD~K@p%czD-}*7z 3f@j~RdwL*`e. 0|=-!8%-jr}_jT9SiFG~Qrg R̘6C\dp5:1Jp'QhQ=a66^ ]ZɄRs\=3lσEvQ2I)0.EdTXD}z.)ˋ8`ATaLK:v/uj@Cy>:bH1.Qcem,<_C?= [PFR͍sަ-QpEjv+4)5/.s#wnJmh͌DODh4ԔA`~"h+t,(ϥ (f]ڒ7m\!}MŜ~2mPCSzg&3ru҃ZZF 3UBUnįduZ$:NFp1umM JHb~udi!' mCڬ?K3a;zĥ҄V$⑰}wzҩoTkKӨY՛(mt_]^E2J7n  mKi07\P"fc)GrDz4, =TЕ>f 1gbKznvq(+6=2\@a@?/NR5'^HBŔ3y6^$|1Xd%7&bB|_J`fk+ lCx\]8a%ҹNC) +Yhի =6ڢчhStIR4){uf")i.Q\F)/w&P'\rdfů1ߎ<0EdA䁐,U0ɋg=#Bn+_g='66 O2V4/#~fuW\PWfFB襳ƈ\Ja1.OqY,ʹQ=WnTzK$EM;* %]sY>oZ9zkmwsHv{(S2~6$ f$@{fOʨ^ O{tw <2GbO s0Ĥ~9#lY}J;NxfaqA9=];RbGV%żP8编<"8'c/n1((~1gs_uzƏ BDw40YS]+ev+I1XSȗVێ&̯u/%2 O"NتTFcqapY-S܅"Sŗ='8Pm8~W2}X4lv]L/~ lebKYd*mg%oц ;ei9;ѡpӦQzaa$$ږf?ؕxB(ut |rEA] !H{N|j7$BqVB]MxrܰަKZ-GgU#JRE,kp<yowYfPȿhď7}8EB6tsZTL°_j8<uDzH8ML,x㲝z02sE5G"A-JLvςI,-?nڻ2HumZW;-4tj}fِz ڍ9y__REgϊBd`۰LR8'NJeA@W;:ëIߗpmRQ84 !Cc-M kM=*:iYFaԂS:2ZWةc{U3w^NeO=|$$ŹCj/&8{{KG" 6ܯldрnh; 5c;dMi7PM2r+VG'oǽlIhJŨ_ǝl-֩2W1Cw@nLяw+p&)3K 4m@{enZu!HBd֝ 0OS=h_7m3l`Ђf31-5\X -WDɘO_ՁFla/P%ŵ̝  1C¡Y8nhe3$&#v]':LЎ.PI_8xSX 9q9)*}p^/U)c@[p=s%FB?橊%-o/et"<~ieהyIA6bΗ7 zPUsHM>=5Ursg"3 LW,8背x/ k]R z=:"ڧa,Q=ElE1Iw6fO<!=[)1e)7٫ #{e}3 cp<{W6ثqc4>œ.ɠ=*ŀ})"ۜWv7+-mJkzD L}#Dۨx9p"czݡvKҺmU?F5`-$kGY_)6u+8'1@zoF&z1[Ţ\V)6[ޝOd'{m0kkU;Dq#M_ S\(%_ÿG6=`JV/i2PA\3%s|"vR4{&9J*BW5ɪNUQ>Y߽Ml|02SXys4avn=ojMilǍ VqV23Z]E\]^8 #hF L,!!Xi|%ڱpl0 `ĺlǑ9BQ 2|h 3.8>,lb@4&kĈnh3e (> ~Ƞ,q7!syN?6QKdpD2%w[ѱް4ڊ 3X wW6cVĺ5Ն$9JV99E=jd)/{|kv!3UTQY۰*VL?jbFuߋL1ޏ ĚUo<>ŵ Xk~4'E+=Qxj}imHx쀅#GGc?"!a&̯%a: Hu(n]pi i[¬^|8Á8Beݣcx쾡Ξ_yg@& [SiJ*1x/Cy-ũkp+tN( IPWkjGc||XVOj-Ynfj!jQ5 xHi8HbœX :fCtyGCVzNui#ڀZCzzr!'ə #YIP84j 3) OqQ`NKwE _Ǿ\e ܬLU$}$CjnQy1A!#_Ugh8%_ jhS0qqO*#ՙi :`Ld8J/3쥟uY`<`!$L7~+`鞹T_ B]EbA/6~BpTeQ7`?l DA)~9sڍ\qe"5nfϪ3" Oh@`hU ߭9G(mz=5EZ*ѱFGV wzw}3(bh`x /个I@gR B\% aE% UfO䜆'[p;$!g$ Uf"wey~}#Cg?MZ %"ٱ0FcvzB ]JXSMW>F@9Yп1U|x DIvq02`T2稓'!{o&&?P +H-Cfl ÑOG`A1{.̬Ҭȩʋ-U?Qw*b 2Tm&B<@ h\Nl,,dZ&E P0m AX.~سiE[*bQFyiVr4OA3HT&='&cq-ek~Qkej X";  ֜2ǁ+4o gwk*Bf5Υ2mݯt 4ho/}r(r0NÃ.xYwLyښsc鄠8U)<R;9a׆mcԑ2$%y3sSz{]3( 17T:q01JXg5_*9l&3B(/Bs&qӲMI %Z4Ƞ,І|K31 X 9VH'o$a:3A(fVq?cXi_c,dzC:v&>e!;? ęNoWV⋓JeaҦxq w P.c.$< OΩ`)#7(ub^@ QإrD4,`b1E} H@a.㪏;^ͭy+˕znk:v5"{7OyE25!gocPI{WT.٠6Eϙ 0i<ZQfyrH-,f){|)ߨ^W,]fŘmRф!M>c DD{ؿ̣GHxM{kmݚD:%B:;h+VPrC_U.p) n!ث77=7wR h ᨫ_31 ^ܰ!kYl mTL6tahmR +F0fu.BP(q[Ja,dxx}: ũ0mك8#/u>]ʐyZsB4hT𤪖TYЅx3n^w OU85rgwKuON^-LIJ0so: U1,=5_>Mݪd!ufoDS[h*ۈ@2cy! UpP2Ѹ@Eo'#dQw@>/Y*TeY3ӛv3NOkEbHEn{Tv5"SW#{Plc+@Yf[ g~I$8c=`CS>s;jGۉյ[qvцM҅v$3]sY/RxHVd^. fsYekSMY@0ܳZyu?R]O\3]-97Y_ oN+nY$cL'UfqF鞗 :yȎtd)/E.3ds0ޫ.Gpe j׎0$ᗙV|2h#ؕ xѕ5c>OwVzg/YM۴g|j^kFWG=|q~rUm+Mw\xe(8+C8HyE?T<C,<};8plNKՐG6 z]haC*D(}- C;̦VI<&)  Zt0YE:ѕ*>d6}pxizksEU5foOp2*@o(i723,"~$.?,2:hf*G׌2cjwR%?┣u1-.F(ԫj/p$F˔_U[1UȶUgI~$GɊ P [V' Q\9H)p~cB@Lך1IWKl!}DUJnо^ic '!ooD]Oo/p%yG)qyjK9ec}+SdUaA^j>q ˛ނ\K\ëxmf*]B - ?[2KiF{vjk䛤Fg5RstD<?޻[N-:"uQ롯nͥg[лQ{(v٥0RX2&3=+\ù&/<_ 5>UH!n5sPYtcH[Egb0c"tD]<w5o +\ĉ 5XE*c2AJuZm0X;ʋrǿ`_T. cBqyd+&BCqG#zW cSRdl/@s|9WZ.cy%lyyAwZ{ͽdtC!S/FSaR>>P,qOa*֥Bqu#OLjsP/?Yb8@1;Q) MH48$BNKeA#x72i3 & (tJ뵚4e*˜# ^vhCG5K;-$S):͓=奏zxI w8Tgv`R~{&b|x+/T7+ߢ pLU͌k@G^`Ws[uvL70"$n OpQA_PN)U*(B4%2knw9\#私@.8v2mbz&COgOJeNP}?7c"NaU98鸾\ok_QBk#d{Ak}u2Q57[ p lfQ*oՐ~`S2BB5&qFv =f[S 3׏Ǡ q]H-9zjJKBrauv׫ SZ FGM [5 BAeZ? ۵:3D̗=r|'Ď0}qz5/cX:ܢ<ʞg[-ߋϙ%} cP.~b^9qU愋"P$==#"xY\ІzW{w Zb~A8񞻗p -}%@0u) o#|45S'e*:c>gC`^'fwz[U'}2226Aq)T/'~gt<5BDw]- )E[,r Ҍ3|eA:4;!av>&|I uz!±W2Bɱrfu%"[XjQ:hҟoWpA?6 MOΰ;ABwlX E5s0UP3oL`f߃v/QUV8}Waذ6-B$_Od6rT=PZؿ9sWE|N@+qYzᆀrnZ"y,ih{7HPme؅ Qlє89ZtO;L(!&ggg Zԭ?#) If(=iڭg7+^%SIx8EmB~<<vœOt*Q~z GuAϗC v g} ¬'fWZt/G+7iB2^e^!k5vn9o] lD/QM5fT GnXvyyf ٨S?=%RLxۇ1*Qνn=QA1 ƟsW]C<$!Gd[/P Hm-P-,&Xa'iǪȦ\=c$?Lj2*GF7VGWw K)u۲#Ŝ,'Y2zlA_w- ~QtT8E!,LjzhbG n)g*/|]v?1P TwpJi#1@#D.GɚsXkza@ 'Zg{0/7[JVl>֨eDXړV#"cUd#7)jFdt#IՂlO|{ dĭܤ}32 G3?EA1?d±aP\]!Ẻ8C{GL=ci 7b3v w_8&XRAZI"k.ͯȞvYLi .keᩁT%PR-}d6JE@G{N!rD}fMSA HA JU7a9$8_WF$Δ Hh@^EGac)ũ[D7tTAũ8`Kv׮^*49,r0=^ ljyy ~!$yPGHx[#jBN"i2O:FeqD.i5͵70vyQFރmSUچM"u <,rB P 5q0RWq#uQ={GgEW1eHG;÷oBzE8YBG=-J<`9340!aqVIܵ VO;cbn5ذ'}6 Fla8 HҽEnBn=?n 6FAN+ZNȞWdVKvL|٤\KkDK.ޑ=UxɺtTst "DV E94AFB:^ppF<+9ߢcus+{aXt@լNƓv}(%IxeWs‰R%BQt9 2 1>ՆUC˅x*x9C|IOz 4 +jWT4w?gDH+ǚsV(!u?FJ!ZBZ{`U׏Gq>.@Ĉ5&{Xc $X߈ՒMpJ#UX#Kt6j}=0 h9(2.tKEԱ9.-oď5yZY[ ]:)>g2362c{FX0γӨ1}d ʋ', G.FoLΖ1#l`Qo4i'NP\}kU|zPҝq?n ZW¬ {͉ -r6il/Eڗc ݣQFgتf;@9ti+ zγX}5On )y1p0"XQ <`>$IFCV JY׾#h\N/`,o¡ $aM %3e3-֢J҆/p"=qP \" 1)6{ͻW47~'}*w)T| G (Cn=Cg]'up]KV<Κ˝Ɋ}dn֐T?yrq//ewH3b'-b q-Bqh1Wizlm=Z\cJ "8eV7On{(S#82l {?Ϥ/B@&ghCx6'Y„DY;J5zJ[`D{IdZ!ʰɀc:}14Z# -A%_=–wAfEo:?*e4vOds-U+U[KM6\h~$}d( 3Fކyy`-㠂jx\ sZ& :SPmw苔p"$d lwa}6c)*]Y`3R%O_OR۫alAʕDGuqjm~Զ旮-0Rji""}zY}iLT1xΘNj5[<#! 4Ҧa{'Yk5uw BOBǬm=-H^F1MC)0ZVX m0Fsԕ:ivR.]׭nyS蠛b/ͭ+o*F|p$ilb  `l9 ^F%߸MW-\~Of4qg[\"Vx]~̣Hpl5N4$T#!z}@/)_,O㊊ #m܇^gNƮ1,vw"S201_oT:*9 6 NF#Fȓ}o`|BԻlM g6Ϫ (,GN~ ^( c*Жk͝0J-@2){10u] _ux*>hq #`_9YN㻇Z *8S 8N^g)rVtMdg W4y'fX`zdk6~yH-E# $*Euiڸs.8࿧_b@d&]t=\ ?-EZ%4ߌ󱪶88^al =gHhR\m夓21~}6k+oz@rx] Tlۺ5WRK@v k [ !IZdAhBo:/\j) p:B50հ\QֽxC>t jF3"waSE2Wݟ8Mg*qk/\iJnqʍ5(ٶxu.BOyrjm*8ɿM+= VjƊ4%[)a-KҸZq/bw15_ c2Q> qp(/BNP]3:}bY>U@|ᫌ_@`&TKg7uZ_w'&Q{uox9auvj 𓀄qԍLG|+GT h&ۀY78QdU$%?2ē:p]*Mw:\lU2 + =Ħ4tc yȶXeon[{Q/rܬK ,o@f;ޑf4*HA8d2iY&;g>[ &WG0%k΁/(K]P$XA{ +En's4?!"7$j(w lIK֬\H& I lB6#jcanyfs$CtK;)xE~R<bS$!Rg=a6Z؜gȂM,R֣+sb@Fb74Kǘ;V]8,QzoIE 2)ӄ?ҫCry͈3 L&;1A\sX10I¬_!UR\4Q5n7)N) %$ϟ ~&rFML:ߦ~OSJEK1nQ盧s%8uc4VZ]q3ЫuRv4RT7^b%^mѲ |=LW#yg{#4 {eK'wؠj^{ ވO~"zчk,nL6 mvꗷt VW@h鬶Kf",4ʰ E쯡`_b /3ikZ(#9@AWçmYeekY0FRb&v EZ1o#ѯte`DELcr(i'yڀ7@-L,CEfMDA3kKv:QϦX8 >fcg& cAdKqu0rJ[L`i8 |Fÿ{痋@/uCGi303a ZǓQtDW4Ͳn@{2<<п)`%Z-^OH=`g$ަ8@6ICOVK:2%88` h =B9 ?J.5ëx) jZ!_~JXz2Xcq]^ٖZՉQ7A]/h&V) 2a[;P31"bOvDS+7H_ "?%q5؊in>h"N.aXר|mD& ?[6fD?_=|;^_ BBy ,ߝH+X[[E\?[/"RI:?6D$50GBviCW7ՕQw]K2VN\Tg(k$-c!_OAq1`%8AiE𛋗4s1⯿{V($CR24a[Ro߻74K8?npҏҦ{uB$%|/b'lFږ%m@ Ey{P# ,Pvs {&Lbg .~g;\_P#3wVL/eh|3ԩɽ6".T6-.iT$IMÙ*YUPP??-BV EN)1.aƲ ѿH\s]s0{JJ(T8'/k TaҼAxCAVS|i^%V8'!TBqsn-*ii02,z=װUI(̂7M-}XY> {e?49ޓ>:(Nw @ƶ!7Bbɜ*c-DPp{$Ç(|{2 Ba"jCqZ7} #jrO{ ]Zaz0D2UDh@ A &TPf1{{Rt*FS7x/]]z("ޤuN²ѵE䲏F[ZFJ%I*夳蘊Dy744y= ^gNo^kt3Yϼ % Tu;z2s@ZV}wuѡ 4]ML}'a>G_L6Ԣa4I#s1+XB|. U>֐DRoBj+{>S"ȈR"ZFK~]A`ߎ e'xJY-UOs=o4Hpn껳Pr ¿we29>}(n%Nj!H{S@!=HD<ё%DtQ(YHXQ-Pt>F'Ƴ-H>A{וX6!/eDL2rh;s3BQQ4dF2Tm5jzaC4;,< d ^_K@ "myzoCե|nWppo:P 0?I J"8PaBDvo'ASq5HRg_e4r8қpqXȐrtCRcd $J5\#]p ;s|m9Avස8gԊ+beKN/TyԋKΕް{lKPwKso>G7sx,eZ MPpˍލ) I^AdCɪw .F0ӍWƾk~H8"r5Ë1|H\D=YKo٦Ȭe B!EP*l W($qxI(m1M뙛oBUB>O &.w^_]sVʏ|y+⟲KZGȊUpي]N;\yVG%9~4v ۊh6;D:hv? g(U鐟V\W`#~FF_&1|NS+l Z _? rxϺX"A RnQ2=Dqru}i*i 4xbAT!`1|(&eY*3% &NA<Ł!Sj|O‹ePw0x=['6օ}ۧ[%M&^ vx9@!8#SFCPT.@)O_-;`B^ yLKrAeS u^%:v_H 8cB=ۿv]Ʋ\"i{jst⪷N V!AqpQES-6gs=Ue:Nzxۓ@~dG1SWd:D/=w'ͣ]%cmlHu|/oLIeu']$)ٿ55SN$0d'"}hge %&銷_ 0|Pq ԋxǜƒ t19ehY0Rΐ(*Xo4bbwd {Ď}1?CIO72gfI/K"4M%.Ð(EyT1kJ*R4MvL9'yY_+(X4Xr MRY -r2Y#z-JC!~9{ߏA[XC2[vs"QxNEМ5M X֒xWM~{ŪSB䇡 ^溊lCl$w5N 40 aهiC,T)y"v/M]q0 MWѥ,;>F0Qy􊸘Cex/?&ŊwA3X{5$iǼ ɸpT   7IBE wd=(,-H(a|q #fa<F)Xw! jx&DL!Kh>.CQS@G}&AsA>D윬.( ,M58BH}EOuT\dtGĒbei3^]؞2P'S8zFY81w:ު4;`2\נ)9C=c9 >v)uj36V^@WS(bZ!i rڤ8.q5yi[bm>Fkf\qME`hikdkH/@q!q-6+Hho(6fm^+>%%-r(FlUiP9]ZJM#} d--l*'ui Ȱ7Zo(db{v(|?0Z<Ke}GCsk\| \BIg:GݛVIDL y]'?ɳ|i|Q1DMubUK(E$ٻ@k[W%v[`áթ<ͳoƙ+v#ōX'Df Ϸ-Q8ru[a7D;]xU;^'LqX&Rx2;Sє"15]q^1a\c+ Tg*zzuԸH%޴Q)7|Ib`0B5J{`-h+ kn7N #Q@TGφܹw},n4"7tEN&9`nrkԩab/*֑Ŧ WrVEÒՍ ՙ LmG 2x'$&{#N}9R"Gi.c 9f+f@mgm{$A9f(:&ϧoi]wfFd7{ͳ_o~h#NRCy۳voSʀn:Y FȻ88xSu46`t(tUxj+$Ҟw 5mHUZYaVGm~<5ׄCV &} W'Z":"f̾E84_)GXVQE$J ;L"N7ŧ %ⒻI D6dK*eG[8ӑV$+l4 |f[pw|㒻B``E+_7ǔmuDm̽QUGB5߯AoiFwUz%n!`gN8..xگ g"ew PR玤|ŷ&XT%ecu8OAҮ#Ye͋qW3,1BB׻~0k4QsY穲 ne+l^l PnwV-y WF.bxcotݙ#'%R8g$tw _YsuΞ\Iz;z2_]NKy9Jq@˞/*rFJvHDo~tվZ^Hųn= !=O-ae{!$o֬Mcs~i21jS|1/׺k>ȁ1`G1D$BzߑXh;~% U|K "V@b2D 6"C,De_t)q*LjiAWN+oCpSt!1\&9fbzE%[>iNE  AJ%#Y+mUjTil"\5}1CHqT_ یOG.ʵ^Ҥ(Ӕϳy듆O+~˭ʱiNΑ]Ӆ_[mVZTR| YoҞV'ߨ'@!%YcaQJg*N)D-m)YU HpJGڗcNÝ RP5+[h۲"Ũ .[[fvG8+ nlsFY% cI4B٧ŷupP@wpT(_Ri'؆`#7ƟȆ}c:2sߧ93e̝nU eT-Hw ۤdb+}&6flKPG=FӷC@Tyu)lXHS-bMӕLJc9uF!EW)/znɪyiz}~= F[pYw( xrh/  3KTw 1*!}Z4J!;ʈ ɪ,蓆KȐtB +wʧjJEׇ,blKK",ЅkDG⻴d ӹв-!td/l}K'sCnuvC1^Rj)ECHGt3"NIWR[OQ˲$eU ke7PH>3,)% _lhG_1 *vWOeoPqˆ6; tnpi)~*Jj!ڞA @!_b $kqTQ"`yZn> Uk]ٔMb*O$FOu֜2>F5a{ ;L1prnAv5zĘa}v|gi)Rn; !ol0|R^03a~)33^?,"F\YE5Outw"^g$c>f3M7261ӛmY }=0`a|e@C;9ufRzj:AP=eҞoU'<k#QQ/N:Vs2>3R,5 ]jޥVc<&hy梕J>=^0;Zܓt/ ]殠ٯl) _CM 6C[/ kQߎwf :8vԸw6LgiX#O @oj,v!" v!NҞڟ(4-"pn7y3qtV'$YY(ڊq>śÎN?N|2CseV朿g7b= Zd1]AT}pd&pygE:঺<) ( :0$P2MZCGg`ՠ~j ]mЃ- 8v9S16Vr۵خ3Zt1r1V}pw_J~~Z&y߮V2M3/[?.^C%.e֘u9q54ewƸ =7}ֳ3gP.>MJ$edAO˖͐c*vr/^ш]L~LK{kʹYZ"s,ޑlqQF ijZZ0Ai~34Mmal+mhPߧ4B4Iν Y*AHD0evg-Tw9RE g0vi|k !}cۭl>[$/RV}u'Ěa(ǬRςމ_͘$lH#J p K!h씻bsw,~pǮ \ux$G}UP<9Crʱ/ȩ)&ۇ̛΢ؕXD$"*< `KvBqMK4Ϣ-PGgtSs r`3ijk .0F[YןхdsyK,b,^g 4j0Nc5@AO$N馓wG,$FuaӸo? ~[s x_uJ@`Pɽ:T#޺J#buœ6@&RL_a:~;ӕ|qI2 >$ 8j4EC}"ҪG P_5% mzvUA zu0hNanR:cj/H5Hίeqk$ ڔ*֡䡂:7OMHkKyTغd2`}")jY PFHnQߜ+: |&zט%{ة"hBjQJhcLu&WnY1dIf[E # JZ"fdb4 s.,/\iH"WU5R$(# PCY; b`xQ>FxwNJ TMUVQ(Pl\u6 < ֬Mm?GB*䞱ibB%M_4lnv JU&ScX(? "3g+Yx uMcQ)~h^oA&Lg:}g"~`c,{DfW<'7 :-ցڙo=i@e{FEJlbYa/gEX{&<'ܿNgɶ/z[c<._+auFDCD rUxdu*^ʳ=]TXY0HC82 !su4,~^+r|t9&ZG.n1x4t oe$׶4.lo}x8'&SqAouħǂlm-Ѷ!~"%@9Z f0}%qZ7KuVR8 ٶb[D@w<݈xY[h w Q.@2PwɗZJԲdSɃ(wPc?"D ''XpsB Rˡ{@mXS (C{&|nsm?f|"6^R墯%рb Ɯҩl;SdI dB{XIEpR{x1!Xl2Mz'HVSv}S٪kvIoD"Ȥ0EEݷM|ť#R,޷࢑:Z+EiaGg\we:P㓶RܚaAi J8Z~Tײ}yϯr%<ЎDtC>TpCL90\) O:9:Źn#O@pmWBiw;v;xøڵ ? >@?5>b6 \7F! IIEeH3l~}Ҝ"t"4f))P>0X{ˡ&AhŸ-2#T?nцQ1*ѼiDy5%i8Z= ;6,'F˜M1 VDDQZꡛDm׋Dv)ⳫM56aY?;- HP{6hUVRt*}~&]sr79+kɍyy(ycic|,5=Y]ڜHTNp3E:%7יrJPrwA沆ypk"Ȅdh0!"AНm碃DgwUǹ~dYl'R$?F ROmlr+H}i /4(͊ҁHj̏^r<[IUSe)tr-]' +!Jga`ʴ];I,ݑx4+Urn2dks(n%=r* d}y_A_xiu+{%}nLE]GjIꊽ QoE|MUvnʛA$U5 zAu`Y˿Gn u "?sV;@xwNEGe(k0 Ŷ'b[!пD(yǟL"[`+ WVch,ʹ՝6fKIӐRȶ;ضE0pV~OʘEX_'E ˮFqvTA ~! >LDg:׺Ⓨ8hP*#YEzKƦSC '}D|&쾫YHlv.t&4f%湒 6g(&`WD{E1M]Y<[\hiEC7+ aICkd%PӜ@K~5_BxqDyaOJ;ș7Ð}X987Nˎw0ҳL[Y #ոT]%|ujiw],;oI~{/d]uQ9,v_f1%Bsy{~=ſeȽJZ1DL`W+RlW~  |]Ox`N7fҡ1 J9`?ub`1Mdᅙe3>hZo DDs MtSh>|5",I+Iد@8fюT=/ΗKşc>TtuF*Ϻ]"tgG^frn@e]iy/[Q슍(-i̇o3V!L(X6/lXmh3}K="@/w7ǒۃ%{o#wݼ?Qԡa?#2gtLZm+J]gWH|PfʬçYhORBhO3~9 E.uXo5SyZH?Ã[0خ-ar &` 9Gy" 5`0hc/uuv X_1p {ڑ@ [P tG ƍVYF7zpA7j)t,LN7VH jn&op$|]i;O<n/" -o[#Ȇnb/XdC_O(/[ Mn۝@dn/0Kk^q@5e/G *@ GJ_IGCg,Cߞ V7+| _lZ,`sShrNcFv`nر֒a: ѢJ[hƞgu\ZSu+S MBx,(*NV|g!(iw3K(:֑5X1 hH6m~ĸQ. tEos ^ou>&[܇ @.ismtAZ[DdD1b>˽( pD(>¡xG%ᰩ!KL$^L ғP8^?; t˴N+w#y)e`8,naCr`83C]g. UV1/n 4XlK{XQYE1вoH8DT))ЄıUڃSjm'aReXEi{I8%'p+XE'WD SB*\W׫6`g*]k}=D2:i/d`gF6V14s)d^+*Y([H,xIGC:R؅6rrؽvq)yh})m:UIJd\2/<ܼ/e2 6VT_ II^a0FPX^T=qRZC(|Ra͗svXb u>E_ӭ'07{{-.Go/(ΆG059DoECUeQ njǩbXpgmMi>XțIV.Q3I|YWJ~Wv=NCŨ)6XlKa Ue|Y%d ?RLA<,Dq&{="+i)lKR4l"wX Eª1, Vbg,Ae4 zbrMTZj >D5{RП*^ VD^Q?@?ѫҊ\w,Ko/HJ`*EJĸ圧/c(^?ݪf8pńCU% ls0Y/mj|ȯp`e@Tp ‡c` yn=ۑ[ٽvT^ˉO,T,J5YkIwzyrX$!g.!8'zk7Z 3 aQ]"ΧQa+>%:tI4<,3'V[&Su5?*X$֣荒 x˜ `[4sj}<&;}Ux {a28zlR4Ot vT Fzdl D`dVFV+txMP[ڇ4>[H PVoBԳo'4cf RA:+7_Kd3{H>8 3m@E!݊r=J%+~P5KmHv7;Ma&FY4 E`X!5XX ONR32#?x4K,БQmÓnTLےϣ1 su 0QV< Sl+Ȳ!' dMؘ>Mc/QͿLLe@T16򱚧s!c&ШـOp@)gǪLC&Pg`eeq}WA+FbR )`wPA6)&" ѕMMHT>ح6r*ҐV9F}Lfzgo Z,r͟II+a2 9I}H[* ҮNE_0A>d5X棷B*=U)Fñ; 3Q0xxgB{LKԲ^O#[?ho߶y.*2ib*[z B°VF5gWcCm0\EӚc!n/Jk2it`ϖ7cZ"Nso* N+*N_:NIn0끲 C[Iں 1lGUpùgb&c736`Rwc)EEd VG"U ֱP8;NlcAA"Go"ՙs "#\bF9W- +} ]3=:!]"aOF^՞D3&~oE-В!叄9vH)z [wM(g\G. 9HzZ>C-&}vY7`4tfAoPJX]n?8k 8>RAxy HmBWwWJܘ8ާnLR? K9{t:ds~10~K XT =_kg}Dj/H˅BῖEG#] n"wyu~l%OܼMSS߈$3>TȝQӦhj TɨliSt_3oj؋-GL}l@,nsߎ"P0M1$sc#chXbaF'jqkUDU , :+ri]H.s ~撹EhND Oڻza1jMyHgdW(#VbO]Ќɒ>S\p ӥy!ߡ-&pp!LT"j,dFVFdho- Z)L/r8>%Gr~'˃eap?٬}. 6y,z1usSrO3[ Bv%ξ)`;upG#_镤qm7]2i'/BgSBkECPxWoE2CCtN E4q+ӡz:ho&.TT'Su14.rXHzęӜ-8UxqZ1S8uVxhtċ4q:>EDhO֘DRA|T-/e*#Ef 0,ɠOhzcT z&w||HkCxg;kxk)sdx4iua%*l+X*[+hw8!WEc$K"d*9 m(:C ]XϳL#SCRĄԀ 2[Lpo#ʸ<|[0?:壿W=.67cAΛsR7'Mq 6+  Xua/}QTO"VL< ֐ JtoWv/Z7m7>og ljSjOwŭu$|Hƚ%5u)cpRo ]$Ip %Tawɱ YŘYXa5cH{xVֳy,NeOmp}Vq=/-tx+Tmiܘ(WGu ;c#qp^4 'F`x4JVϻ.ɶL$.?z@KVab5uB ] ܳnsXl1}NJJ<{*sd[~Ԥ>ctO` b%V̱SV)m,Jc;?g[w^d1b>pHbO޸:A( IS\{ hզw"X(F %QcA"aRxfꨔmS@HጀW\`W&p7`MRB7/roIЄcZ7N%#+j5J;(铚 ,V|Tՙ@mnK51 7^d۝eY굪x;(^pqG_>p2bJfIC@tevy#^_.JKo /up 86OIR .ǭcOi(? ”hSE> Pqj9#솼q$S#\j3\i֯ eAQk DhTgW!f as!=!Dc bxW6}wW=4ͨTLɴ >ڰaJ8]_3g5_QEE#LH;ū%$sq|VY:)gQ%—\̾alq͈ԲV!ɉչ8A1fc`oUaԵ`lzM{aov;)xjF>h>|nHnFWO} n-H}k*[&ĸDpF?Oh ĂJ4dPn$Y=s,8D:t;A\JA9<0X3tZZ~#@bpSA9wkZ# f>'IfmH(D "of@,(lg:U;-Gb_*߈1N p|ETƈ1Ekc6|P}rf]ϕS$E\| O 7h /+m<C4w1d?֜_Ɔl}TF HB2s8zKyY[|_ 1s_ϣ(c8Iai2t钱p81hrT*Xh$WLJMHŢ(Q[w~vƼMImNw \6W"?fyc5iӂ?!l(R%lVm˼&'ڑY2rOCX?a׏(E̩9+*9}?=;i1$>X? &I(o~4skvmnI^[=@Y+ MuB5q(@|5îh0|00i xQϨ^_ EC 0yQB3aVq_Vq{d!}^ 9(R%kIӇ@࿙Zeq;&&cw>tdB\|i9$w3EZ0_VXG&Es")/GL뼴 Khqѷ}l) 9~=/)5YV^.y9M kAW]@>vݽb0\: aW$'2:ȹ=#4c(:,,IgF ԹkMz?X,lla*`||Đd&Frn1MPf1V)ba`U]iqin@$qLN( Eú\yuF ~=L^긷ߢS&H%x/T147gD+X۠8uX ]?^.y<8>,(Ib"2-(J@bQ\T_v88.7g!tէ]uۙ?|?  aBzP| R"+WjˁUA5FmrE=(51.VZq!tS=9E,Q*l1-Kv 6pQVJBg#q K~#=# (9uX*{ DUPcc3ޛ/OUve5ۦK[!!dKRv]:Riui>w[GA9wIYsSƪT #6 ݟ*EQ4wVf*˫ta*zVt%j*}|7jPX#mϮ뤈lDGՐC#W `7 &n0s[4y/*z4OٺTjOǍ %򚠧ECc7F'V|KKtC J׺Sv$u #ǐEhG6:&a}P˼{9?m S[CԇВ8C `8[ٚ? E-&>h2BFf)k9ih"w[a@gɴr 9 >&BOK?m@ XaVwQ,vUҗP Waղ UA_3wz^0WY9a"1a b™%*_8}URĘe헣rOp7dT9ᖠ2UqKjq]PCP8')5sj#ܭj ~S,}ZZ'6OK|ϲx21}[OЯl7[Up(>}ua!F0т&HQZ'L戋 s!w'JyfT&ԓ4}1zyeh+M &Ӗ+&.ˢf>#Ѡv;cQTX,[g<5t&б5ˑrH)w'UrWǓHu;s _6ŝշ {c"nn7A)߰]eM`ⅼ2i_՞ݔTp穧Fѫ>x>eLZD t]Z"KY<Cd&\N<ˠ/1{Bd^ ɲ]WAbs+tv."@ t3X B7!tL kw? i~ [AqZyfnρsx~ݙGڂsۆ Q̌LDYEr\ud ®OfnԹ'r -u()Ŭ̪NN@P縴Z(x|EPhÐ-4c gZVbh*HO0FU+F>CƼ4 9\Uβ+`SDx"VF9}hax`rQg+, ^0yyچ{ޗVrKa("|+JUH {Ǽ,MwzFU4B? Q/,{qzcCSühM-63b?)5CI_joěA5%<= ECS KŅpv7ٱHlC}STX@H>4l">YEŽO(Ώ3pU="@CVyA~P;U嬮MUJٲ$,X 玓Ft:[&} oLѼ*ӻ_CrneK9FDLBɄ߀YMz/pTR%kV~aѓ(Jjt!1M #<k`ky֥'bc0bl7)g‹9"s!D6S{ҘZ 0UnWu5d;z@+mV7$6'$U*ItdLOh. CSy%=׍G_#e8f4 M| c9L'@] Hm#)q$oɹPs_<80wHtD2a6!erCNF"* M@d ͯx~CFbr"N,!Â+ٶOݣFҭ_Lhogx׺IՖM?HUBy9'v#jкE%ir0QڕKon8CP]oӷQ*S$-;xq9QDeguW n,i߿h?8f2Z_fQtQr V24G"DQ Ө!a:tV^7.Y;q\#Hm+ 4o\-Foo{LBUCa,<^e z8+ɽ ssBl} aS'%W e"JΩIJ{:xC,a!d 35Q3 咖U Sw2(1? eY/B9WUӗJ8:xLrxc%Pɇ"98GkgJbTPXc6 =Pf.tm[*]z #S˻:3 b<"Y sAs-ߜ_4>dbd[_vhaC&?᝷ѻw"~& FvԈP_sau2FB`p/̱p?y5%1tRThQId7a|3. pܘ)s/vYwO3AHe4gpY[`*":0p&KqkoiX!m_U1p1+ B?rqbG4WgIr'M¤۞u~X,(?*>{cbѻؑVY-{'ac%P@X =Щ,NpJ)LO%*2?Æ\E#8i_F~;Gjpb̑-i[4DS`Ai>٨ n|T1VCˈsngG 2TXs| <^ إ "l8;Ђi4A?49ߩ KOKAx/6mqKow3d14 M!gtP1Ӟţŗ =Nsp^sa5`>F-Q.ViA( bY= G):l2:‘hLjHoTV#@`FqCa#^lO~N v2@ד7;/$ T]#SʴJ8q iPVM58TF#cInTFM*7-\h}9K \m^f` ԰l3Y+,s l;Pfke4X,"K.*?[lsP߷.6B{R:Jt8W_,CކBJ zf7SqvSm'BtϱC(&Mk DŽYt)lrbd D ><ԯ7or pXwD!p\ޚuJD!WyY jU Ԯg$InqMÒasf|,ϢYDf?W#;ELf} 9*g*Y1Jˣ|n؎ 2v#2B2}eGaIMBw yC ~8>r6i2ΐfF8?hʽI(/.uͦpqMbn\wRO"m'9{7N=) ߝĆE)D<^J/1_[)s+իiYn){} t◥mvq4`ԏ')I8Md<F)&w-+Ѽ0cDˠsv`:6RtV,)'B]~DN Mhuws|sSH-)WI<(XT(e 3OƜοc6m߬ꊍ@Էɔ܏k3,nfDRЋVnc_IՂ= `3%sΑJPN2vJ8 k;̈́φkbWĖq hqXOy@N/.sIt_x3`Rڌg?,(G8CؐYK%㍶Z&ݞ;rTJM| &?6U, /qa|I;a` w:%TC,+Z}dt?H%y˱OJGOS!!e(>Fqr N$45jQY]';7 OMq~;S=ذP(ծEJJv[ 8ǖ{ >?ُ1Tv!J օs̥w{䷙YpB6S'q*j9ᡵ *}ݵa{5;GW~ f|pSˈv[>Y{ᝁ#c)Ag2Y`g>cxK;'tseLٹuf>uDo*,=Q)9~PתY:F- ז\ְ&f`@5",Z$F#MܪI˝03xivɜErc%x]俯vGk\/(kķ#"Rvn*5<$-B1KA*?*CЍKE^_VdܗK=Qx/bMz0Kv+X$PkpVJP=E k%p&ګGY: ʽQ,\ػ#~cۚ،"=VR-X*z˂xeQiD+$ш3gyfzSg^FDlIvڊ̩63Ϥg>e.Uk#bKΪkݠٌ4ww+?ಐ}kQU³;LPuT1"&<$_!H+l4⒦E@F BLX(?\-dO,-c5r{$vZᕋ}\Gf`D ?du#{I')|F\}A jM߶_|1pFn8"A!Q]wVbܛ^>T!R@1 I U^O26ֈE4ǤJf ߁B.8`= ΞXxL!P|h1½xaKl I,!Z.S}A?u‘$&`v!/ʅ}t~rr~Itց&4Ytw9*#[g*԰uLE `K鍻"j\n `OWgjgzU@^/BtJT5{"[D!?''ˆ~!X|진eD_|'lfn(7Pa˖O% Q 0fR!/U-tKL_^E{km]&Lp 0W*u֝Z 1YȐ]J+O:2-U 5׌ m *fanVa.@ոTda꥚`_}!SdFO% ϖڈMȫk)B_^3ݠdW9OP-#daͮ^ Ӿmw VP8 1D,$#%' ջ o4gvNP#Qc}E#Wv_,cKYt5TVl>D3K$X,:*W}ąG >![F_rRj.s(4vл"D+/$uHkim4r]!;boŧƥE 5bOC1ut^tIh0:״"I8}(ٖ;l6)|}/V[Ӣ;mC㪹ЋK(hۅKb.>@[DЋ32@r hs 5h1̮fsس69MA0NW`'-{ѪT'TGrouڷbQo>^%׵FҋNzKEbҍter M\qTWslJL(ϙ Dm6\žSWSIJE6fpB2&?{~A:UaWP3ILutYO$YB &L,u+~DmK |3Wph1aW/I2?XcYy8/u_1]6b 8! =@C[lD"ƹb`KRJ+"**k/R~ƺ7KI)Bӯ3Q =!,yxׯMk-qo}ɅzS/tFPbJn\;꒼'#郙h( MF:`>e/W0CHs}>c8/R $}r3q?)݂mbJCx'b&< dOG6,R['q"k-*6»#z.Ha N#8ffK8H t<ozFx̵FC2[780m,^ER~}=jl商z;+E5VMZ2?4 #)0@:PlǞ{fg [%4SF*D2k-xNIL[șw'AEF `7#~VYes4Zj<b@B诟2΄: $V^Dz0aξσer.@8v+ﺒY\@@b[+"?I39lv.j`<IENJePʶO&!Y`*%`Ϙ|\ӭ$H`zO%gviO"@M\vSfNy+1UDW;C"z-;\Q ێQka36ʿ1Q:0mIyEZ_ő絯oFPb6!1m PVЭ+Ao4ZLV$"fD}tHFd}!+ opvNWEA3SnYQTeYu,Ⓧ}:Ӓ|7UIϑIhq{E?(3?[;;AQn=:n"AQnڇdjN c9zIDH-C<aPw'hz.f+]TK{^Xze<Ӱ|2᤯ M_wFX(v\ƙ"ԋzӞrŽj}R `!6^Ff'PI^H=OqH4C"N^Ld"rHevbþU\uܷ1%( UH2|:_)<./#ۼ4rA@p֕%LCF ۽ˌgz a嬽51eSXUc]?4KP]7t;y:i/+9VI{E! I@@asI'VmQ[qv+uc_EbOÿ0]"eh^M #B[իvo]B(;Dp쐛E ծuztE̙O8&^j+˟ A zv@Ł$}tH 07`-`{*’>2kƼW> \GA k2˩q  tܑ ]`Y֚Od DL sR`)`Xp2ru0% m >](XXԜe șQƉs zNEQQA[@>?Vd ,|GT9J$-A|Op=A_jg?3|?8 Zr~B~<9NJ*0n4QRI'^SwV>n?;E@'XOYr* \.e^'7 齍ڹU|D?W~҅ TyES/}UDzJ0' #.qLT@%#Iy3o8zGw܅w˕} 8+=0MloKwP[X93'zpw2qn6 # T|Ez5T@f[RPŤGR;H `RTiwyu+;R,,3Cj/3.U| YpxU}{EɨuR  kȬ=|sx6B;+^~'ZIW Nmjt5.΂A>$V6ͳ;s )l[iW#cߝ}pEnRi5Q bZ p!K<8O-0rxE8)hb{\r[#܅p(3:,thOJLU׈ܳw54c024L{&Z&-p1itEgRb2{kųsz۹3Ctj7km wΥN[giE a=;G.-ĮJ1BE_ʳoϲ#ҍ ֔N CR c[V$av #Tүy1p1ۮfRK .~onPADZZ>T+J䬳kI4:gioX\IU*C"3w@Q^juP"Y#}U&|c۟һSqhCSZ"GߩN;bLz`L EgQ_{qlwg/l薋m RDם6do3V( $yw\$Ѵ6KX|()K5IwG9CyCqqWm돱v~31h>-9;a|XosV4; vltZN@w HKwwk䆋˕] BU\@2R݊HHPiemD)v/:w#MH! ;F\DW$ vsUX!P.9Kk`a%t*ZP0< i/ Yw6SY5shjsWAQIwK܄u>^9uFcѧ2v!{7sCgJ3ኩ?)&Z`KKGl. eiҖp'#~)>#.?:jM+Qw+emׅ!})@qiNVQ/]ReBĥ+KKι\ic4֩pp}=գ.=xg CgF| 끑tͿ)8+-DN?\êA2Ӱ](iT© 4XXBŴGi4t"=D6TY,crbbC"nML ڙh%0;[Y|r~_ZK[G { @!᷻$&0U_ \ҙA} 9·DO¬*ܝ9^gӍqv7 ?5f@CH6J_2 (ꢵ<$l ri=<'rۗÕOx&h8մgTdvpBt&6-\<Ѿ)z3 ;wUGg\(O=DWV/~Yf*<1085M~d(s݌/|&/ܾ=s:u.ͣ* oWGUt+ e XQɜ <43gPbO!ص! &R:tsW#J>+]̗n^~ q &!tj ;BZOC8-NW8]Z-EDDfTFw`ƥxlţ~f/ ]6R%Ȱ$?ۃBTWVL<^uGKO͵hLJ%KSi ;1o#밾/X@jUsQxgFdJmVA}(I^W>s'?FsKGޥ |s&zc4$0q38opEĀd&Z70)c";"̑P۫Ƈu$Awd-*q)G-gvwAHdI]2dX=F:=ROPt8 rcX~Jr!c r`^C)P;L>.ݑ>d{b A+6j|N`eR냣l`T2CKI̯IV%,|_0E@x4=i%űQ!v1B sX8_'?nn:dXlv|6=Qh[zSB%u/t⮖.! BtG #_ZQ+ѩD XQ_ڶK.JP۽:6=/G7-JO'>7%߭8c@(ko&h[J0LxӅyx3SpS[,}Ioy#1ʆA)_boAtaVxsW=Pgr D>iRS~0Y< -DA+TcaՏ80|緷j#GVS3Z5^ıf UH4l nU-+;FN pїLaP=Q:dE֏թ]" :top/"# 7Gl#T3f` bh=D):٬%VB Ā`R ,:1R=3z7|Y`u2JO68`7ScQɎd?#壿g1EH9˙y˂Xp[oFvEw#)Aʂ} -ΪH/9ϯ/P1$mHߩneHGFFC@3x+hn7ҍn`F^W|-+)?;}OYeisLm uZlkFU v ɻ,ۂupDRd+MU3XRU+Ny59Sē\,m'ͅeOSΉW͝ voF34ӧ8&:a-fECt5n}w֝7'ǵsl^0GVp vJu,\l\5SS0V̝]k؝)tk*HHTEB6n7UkVէMGiӓKxM;,:?rh,ʹ[j{$XXѲ645xY2H*^6]k-H\+ Icufo9ꛊabwLrgYf:|Do{tAD@ p?~^P@@~SN1w⡜ɔ@N9HM[[W)=LxAou>=2Fs=6s.+cyE<_4}u@.|ts\TrԆS:#?[/@]z~ț7 5(Z~q[ՋN; Ԣެ j`q;uzM9LO0"sִc µr_(»"";(b623qpOY#|㪘~]Vr:|3oV(tvPb?r={do/(: $&,CZur}NX뱥4؛a{>]ʬJ[MnW p,`#lf ㍽&mSr95[{}4Me.4uon̢kD}V2Cz>,ʠZ*]ƻ9~ܱ-UIKK>ƅS{'Q<ΕHHS?/ةYzr:D y@7k9C*/?3"TN\ Z⎻mik 58Z7V*y2:n.*hB%5U})79?%Viܱb|Ⱦ I/[}U "z⎩aqM\5JIcftd;d`a749hv%B~/L3%Xb ER螻Iibʟ!%/FטYz_%!~ou[#p*%)U Iu3M+f"xV4K" ǑRnz|X*jd:ls&N`ˮxӲ,uJ4**՝Cwp.8CJ͈cORʣ-үF0P{ï` Dz[ΚAK{Kn-&旪9E(bh(ppQdS6qE"uk l @?!ӧ[iGa-KfutA F- OaWXHB2Q3kWgq}fkoe9UkA^Dҿ=e{8WMF=eѿ)ETk`.9zI ` 4oLLT6EJm6tD. lg^#pJjƥD]KĐw IN ?+ɥ`_@{/HpUKL!>" M&aap(V1j_MFP KM8w 6>(}9IL}9.{G1xaH !q#2} ٨92p$}@1ynX")?'kÖԚ fǒ d_.@_|֢H#1֣aZ$߸fo9}1A|θlqrtEi^=%2tm]>$lXhaS4Q(rH&+4Vԁj$&MEM–" 9гRTXo)WIva4Vt?;{U"AO Vr$Be<Z@ڀM1$Dyv#ƕ4p4 [b]kWWuɃ\ +Ì<G{^Ke?I{ƥ1cm2m%2}Udq$FA= LBYOBr1>uyI(L!8}Tggw+eY=&VWiAIIJJC _b7^c74֝c6͏d[&&0."t逸hl8p[.noN=rN"}[eL1G4걊a'a_/3g{T u鶶*%>" Y vLXt#"D6Mczvw}7w!q.8ZI@ٯ9.(C}*I ~;E.VYVO_s4nWIPLe;Ep Xӌ,;nGUNT9iN;t}Uw YpEvi,tkM4L΍}q/Jihvxv ?%w&V0j~3_܄$ A (?0Ԇ LL mcPZbޣc :Bݷ8rN2ptTfh08IY=ˬF̟S5չk闸Ӌ18nVjA֗=TF7Q$*ȡ*oÆ?[(l ʤiɞA!8.?..\u=D@hqXQ`HhՍIFteSЄr:g.]o|FӣWhi.E?]x$"9 /Eha[HҠ Q@/rDN"M0݀k8B8|aO w6Q RPC캶,lޓ§fu6Wu;y?ϟ=pY'uEC|A{<HR.5di=AZ_U&NUCλF[4.,]ZuuܦMɆ /v1 "ogW]@/lqKo\J{᫉;_kY#hn 98Pi<_ 7*mUMgs2Bg-k'&8%ip[)G5Iƺep'k8]WYQR<,\q?^'zCDIy`ֳEЊk8MZlc 4٤r6Q& }*rWըg2.!us#hR|?5nEB;X[S< (!tA9Iݗ·Kw}$[ee}}k1T]> B"7gxzs^2/ =MRpP` ;#JEYqv ۾zfXW@zl2UxcYnaL& KZyT' Pm`S 1cVq⬨$ɫ)z#9tMϱ ΫbLQܛE&j5;qz,!?@LCehj(NVh WrOddZj@7M"Wx6^IEv_Yz/0YZ@ApB'*=AfזOkȉ?+ H3SŸE+x lz4-2.5.2/fuzz/corpus/pg1661.txt000066400000000000000000021603711364760661600162600ustar00rootroot00000000000000Project Gutenberg's The Adventures of Sherlock Holmes, by Arthur Conan Doyle This eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever. You may copy it, give it away or re-use it under the terms of the Project Gutenberg License included with this eBook or online at www.gutenberg.net Title: The Adventures of Sherlock Holmes Author: Arthur Conan Doyle Posting Date: April 18, 2011 [EBook #1661] First Posted: November 29, 2002 Language: English *** START OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES *** Produced by an anonymous Project Gutenberg volunteer and Jose Menendez THE ADVENTURES OF SHERLOCK HOLMES by SIR ARTHUR CONAN DOYLE I. A Scandal in Bohemia II. The Red-headed League III. A Case of Identity IV. The Boscombe Valley Mystery V. The Five Orange Pips VI. The Man with the Twisted Lip VII. The Adventure of the Blue Carbuncle VIII. The Adventure of the Speckled Band IX. The Adventure of the Engineer's Thumb X. The Adventure of the Noble Bachelor XI. The Adventure of the Beryl Coronet XII. The Adventure of the Copper Beeches ADVENTURE I. A SCANDAL IN BOHEMIA I. To Sherlock Holmes she is always THE woman. I have seldom heard him mention her under any other name. In his eyes she eclipses and predominates the whole of her sex. It was not that he felt any emotion akin to love for Irene Adler. All emotions, and that one particularly, were abhorrent to his cold, precise but admirably balanced mind. He was, I take it, the most perfect reasoning and observing machine that the world has seen, but as a lover he would have placed himself in a false position. He never spoke of the softer passions, save with a gibe and a sneer. They were admirable things for the observer--excellent for drawing the veil from men's motives and actions. But for the trained reasoner to admit such intrusions into his own delicate and finely adjusted temperament was to introduce a distracting factor which might throw a doubt upon all his mental results. Grit in a sensitive instrument, or a crack in one of his own high-power lenses, would not be more disturbing than a strong emotion in a nature such as his. And yet there was but one woman to him, and that woman was the late Irene Adler, of dubious and questionable memory. I had seen little of Holmes lately. My marriage had drifted us away from each other. My own complete happiness, and the home-centred interests which rise up around the man who first finds himself master of his own establishment, were sufficient to absorb all my attention, while Holmes, who loathed every form of society with his whole Bohemian soul, remained in our lodgings in Baker Street, buried among his old books, and alternating from week to week between cocaine and ambition, the drowsiness of the drug, and the fierce energy of his own keen nature. He was still, as ever, deeply attracted by the study of crime, and occupied his immense faculties and extraordinary powers of observation in following out those clues, and clearing up those mysteries which had been abandoned as hopeless by the official police. From time to time I heard some vague account of his doings: of his summons to Odessa in the case of the Trepoff murder, of his clearing up of the singular tragedy of the Atkinson brothers at Trincomalee, and finally of the mission which he had accomplished so delicately and successfully for the reigning family of Holland. Beyond these signs of his activity, however, which I merely shared with all the readers of the daily press, I knew little of my former friend and companion. One night--it was on the twentieth of March, 1888--I was returning from a journey to a patient (for I had now returned to civil practice), when my way led me through Baker Street. As I passed the well-remembered door, which must always be associated in my mind with my wooing, and with the dark incidents of the Study in Scarlet, I was seized with a keen desire to see Holmes again, and to know how he was employing his extraordinary powers. His rooms were brilliantly lit, and, even as I looked up, I saw his tall, spare figure pass twice in a dark silhouette against the blind. He was pacing the room swiftly, eagerly, with his head sunk upon his chest and his hands clasped behind him. To me, who knew his every mood and habit, his attitude and manner told their own story. He was at work again. He had risen out of his drug-created dreams and was hot upon the scent of some new problem. I rang the bell and was shown up to the chamber which had formerly been in part my own. His manner was not effusive. It seldom was; but he was glad, I think, to see me. With hardly a word spoken, but with a kindly eye, he waved me to an armchair, threw across his case of cigars, and indicated a spirit case and a gasogene in the corner. Then he stood before the fire and looked me over in his singular introspective fashion. "Wedlock suits you," he remarked. "I think, Watson, that you have put on seven and a half pounds since I saw you." "Seven!" I answered. "Indeed, I should have thought a little more. Just a trifle more, I fancy, Watson. And in practice again, I observe. You did not tell me that you intended to go into harness." "Then, how do you know?" "I see it, I deduce it. How do I know that you have been getting yourself very wet lately, and that you have a most clumsy and careless servant girl?" "My dear Holmes," said I, "this is too much. You would certainly have been burned, had you lived a few centuries ago. It is true that I had a country walk on Thursday and came home in a dreadful mess, but as I have changed my clothes I can't imagine how you deduce it. As to Mary Jane, she is incorrigible, and my wife has given her notice, but there, again, I fail to see how you work it out." He chuckled to himself and rubbed his long, nervous hands together. "It is simplicity itself," said he; "my eyes tell me that on the inside of your left shoe, just where the firelight strikes it, the leather is scored by six almost parallel cuts. Obviously they have been caused by someone who has very carelessly scraped round the edges of the sole in order to remove crusted mud from it. Hence, you see, my double deduction that you had been out in vile weather, and that you had a particularly malignant boot-slitting specimen of the London slavey. As to your practice, if a gentleman walks into my rooms smelling of iodoform, with a black mark of nitrate of silver upon his right forefinger, and a bulge on the right side of his top-hat to show where he has secreted his stethoscope, I must be dull, indeed, if I do not pronounce him to be an active member of the medical profession." I could not help laughing at the ease with which he explained his process of deduction. "When I hear you give your reasons," I remarked, "the thing always appears to me to be so ridiculously simple that I could easily do it myself, though at each successive instance of your reasoning I am baffled until you explain your process. And yet I believe that my eyes are as good as yours." "Quite so," he answered, lighting a cigarette, and throwing himself down into an armchair. "You see, but you do not observe. The distinction is clear. For example, you have frequently seen the steps which lead up from the hall to this room." "Frequently." "How often?" "Well, some hundreds of times." "Then how many are there?" "How many? I don't know." "Quite so! You have not observed. And yet you have seen. That is just my point. Now, I know that there are seventeen steps, because I have both seen and observed. By-the-way, since you are interested in these little problems, and since you are good enough to chronicle one or two of my trifling experiences, you may be interested in this." He threw over a sheet of thick, pink-tinted note-paper which had been lying open upon the table. "It came by the last post," said he. "Read it aloud." The note was undated, and without either signature or address. "There will call upon you to-night, at a quarter to eight o'clock," it said, "a gentleman who desires to consult you upon a matter of the very deepest moment. Your recent services to one of the royal houses of Europe have shown that you are one who may safely be trusted with matters which are of an importance which can hardly be exaggerated. This account of you we have from all quarters received. Be in your chamber then at that hour, and do not take it amiss if your visitor wear a mask." "This is indeed a mystery," I remarked. "What do you imagine that it means?" "I have no data yet. It is a capital mistake to theorize before one has data. Insensibly one begins to twist facts to suit theories, instead of theories to suit facts. But the note itself. What do you deduce from it?" I carefully examined the writing, and the paper upon which it was written. "The man who wrote it was presumably well to do," I remarked, endeavouring to imitate my companion's processes. "Such paper could not be bought under half a crown a packet. It is peculiarly strong and stiff." "Peculiar--that is the very word," said Holmes. "It is not an English paper at all. Hold it up to the light." I did so, and saw a large "E" with a small "g," a "P," and a large "G" with a small "t" woven into the texture of the paper. "What do you make of that?" asked Holmes. "The name of the maker, no doubt; or his monogram, rather." "Not at all. The 'G' with the small 't' stands for 'Gesellschaft,' which is the German for 'Company.' It is a customary contraction like our 'Co.' 'P,' of course, stands for 'Papier.' Now for the 'Eg.' Let us glance at our Continental Gazetteer." He took down a heavy brown volume from his shelves. "Eglow, Eglonitz--here we are, Egria. It is in a German-speaking country--in Bohemia, not far from Carlsbad. 'Remarkable as being the scene of the death of Wallenstein, and for its numerous glass-factories and paper-mills.' Ha, ha, my boy, what do you make of that?" His eyes sparkled, and he sent up a great blue triumphant cloud from his cigarette. "The paper was made in Bohemia," I said. "Precisely. And the man who wrote the note is a German. Do you note the peculiar construction of the sentence--'This account of you we have from all quarters received.' A Frenchman or Russian could not have written that. It is the German who is so uncourteous to his verbs. It only remains, therefore, to discover what is wanted by this German who writes upon Bohemian paper and prefers wearing a mask to showing his face. And here he comes, if I am not mistaken, to resolve all our doubts." As he spoke there was the sharp sound of horses' hoofs and grating wheels against the curb, followed by a sharp pull at the bell. Holmes whistled. "A pair, by the sound," said he. "Yes," he continued, glancing out of the window. "A nice little brougham and a pair of beauties. A hundred and fifty guineas apiece. There's money in this case, Watson, if there is nothing else." "I think that I had better go, Holmes." "Not a bit, Doctor. Stay where you are. I am lost without my Boswell. And this promises to be interesting. It would be a pity to miss it." "But your client--" "Never mind him. I may want your help, and so may he. Here he comes. Sit down in that armchair, Doctor, and give us your best attention." A slow and heavy step, which had been heard upon the stairs and in the passage, paused immediately outside the door. Then there was a loud and authoritative tap. "Come in!" said Holmes. A man entered who could hardly have been less than six feet six inches in height, with the chest and limbs of a Hercules. His dress was rich with a richness which would, in England, be looked upon as akin to bad taste. Heavy bands of astrakhan were slashed across the sleeves and fronts of his double-breasted coat, while the deep blue cloak which was thrown over his shoulders was lined with flame-coloured silk and secured at the neck with a brooch which consisted of a single flaming beryl. Boots which extended halfway up his calves, and which were trimmed at the tops with rich brown fur, completed the impression of barbaric opulence which was suggested by his whole appearance. He carried a broad-brimmed hat in his hand, while he wore across the upper part of his face, extending down past the cheekbones, a black vizard mask, which he had apparently adjusted that very moment, for his hand was still raised to it as he entered. From the lower part of the face he appeared to be a man of strong character, with a thick, hanging lip, and a long, straight chin suggestive of resolution pushed to the length of obstinacy. "You had my note?" he asked with a deep harsh voice and a strongly marked German accent. "I told you that I would call." He looked from one to the other of us, as if uncertain which to address. "Pray take a seat," said Holmes. "This is my friend and colleague, Dr. Watson, who is occasionally good enough to help me in my cases. Whom have I the honour to address?" "You may address me as the Count Von Kramm, a Bohemian nobleman. I understand that this gentleman, your friend, is a man of honour and discretion, whom I may trust with a matter of the most extreme importance. If not, I should much prefer to communicate with you alone." I rose to go, but Holmes caught me by the wrist and pushed me back into my chair. "It is both, or none," said he. "You may say before this gentleman anything which you may say to me." The Count shrugged his broad shoulders. "Then I must begin," said he, "by binding you both to absolute secrecy for two years; at the end of that time the matter will be of no importance. At present it is not too much to say that it is of such weight it may have an influence upon European history." "I promise," said Holmes. "And I." "You will excuse this mask," continued our strange visitor. "The august person who employs me wishes his agent to be unknown to you, and I may confess at once that the title by which I have just called myself is not exactly my own." "I was aware of it," said Holmes dryly. "The circumstances are of great delicacy, and every precaution has to be taken to quench what might grow to be an immense scandal and seriously compromise one of the reigning families of Europe. To speak plainly, the matter implicates the great House of Ormstein, hereditary kings of Bohemia." "I was also aware of that," murmured Holmes, settling himself down in his armchair and closing his eyes. Our visitor glanced with some apparent surprise at the languid, lounging figure of the man who had been no doubt depicted to him as the most incisive reasoner and most energetic agent in Europe. Holmes slowly reopened his eyes and looked impatiently at his gigantic client. "If your Majesty would condescend to state your case," he remarked, "I should be better able to advise you." The man sprang from his chair and paced up and down the room in uncontrollable agitation. Then, with a gesture of desperation, he tore the mask from his face and hurled it upon the ground. "You are right," he cried; "I am the King. Why should I attempt to conceal it?" "Why, indeed?" murmured Holmes. "Your Majesty had not spoken before I was aware that I was addressing Wilhelm Gottsreich Sigismond von Ormstein, Grand Duke of Cassel-Felstein, and hereditary King of Bohemia." "But you can understand," said our strange visitor, sitting down once more and passing his hand over his high white forehead, "you can understand that I am not accustomed to doing such business in my own person. Yet the matter was so delicate that I could not confide it to an agent without putting myself in his power. I have come incognito from Prague for the purpose of consulting you." "Then, pray consult," said Holmes, shutting his eyes once more. "The facts are briefly these: Some five years ago, during a lengthy visit to Warsaw, I made the acquaintance of the well-known adventuress, Irene Adler. The name is no doubt familiar to you." "Kindly look her up in my index, Doctor," murmured Holmes without opening his eyes. For many years he had adopted a system of docketing all paragraphs concerning men and things, so that it was difficult to name a subject or a person on which he could not at once furnish information. In this case I found her biography sandwiched in between that of a Hebrew rabbi and that of a staff-commander who had written a monograph upon the deep-sea fishes. "Let me see!" said Holmes. "Hum! Born in New Jersey in the year 1858. Contralto--hum! La Scala, hum! Prima donna Imperial Opera of Warsaw--yes! Retired from operatic stage--ha! Living in London--quite so! Your Majesty, as I understand, became entangled with this young person, wrote her some compromising letters, and is now desirous of getting those letters back." "Precisely so. But how--" "Was there a secret marriage?" "None." "No legal papers or certificates?" "None." "Then I fail to follow your Majesty. If this young person should produce her letters for blackmailing or other purposes, how is she to prove their authenticity?" "There is the writing." "Pooh, pooh! Forgery." "My private note-paper." "Stolen." "My own seal." "Imitated." "My photograph." "Bought." "We were both in the photograph." "Oh, dear! That is very bad! Your Majesty has indeed committed an indiscretion." "I was mad--insane." "You have compromised yourself seriously." "I was only Crown Prince then. I was young. I am but thirty now." "It must be recovered." "We have tried and failed." "Your Majesty must pay. It must be bought." "She will not sell." "Stolen, then." "Five attempts have been made. Twice burglars in my pay ransacked her house. Once we diverted her luggage when she travelled. Twice she has been waylaid. There has been no result." "No sign of it?" "Absolutely none." Holmes laughed. "It is quite a pretty little problem," said he. "But a very serious one to me," returned the King reproachfully. "Very, indeed. And what does she propose to do with the photograph?" "To ruin me." "But how?" "I am about to be married." "So I have heard." "To Clotilde Lothman von Saxe-Meningen, second daughter of the King of Scandinavia. You may know the strict principles of her family. She is herself the very soul of delicacy. A shadow of a doubt as to my conduct would bring the matter to an end." "And Irene Adler?" "Threatens to send them the photograph. And she will do it. I know that she will do it. You do not know her, but she has a soul of steel. She has the face of the most beautiful of women, and the mind of the most resolute of men. Rather than I should marry another woman, there are no lengths to which she would not go--none." "You are sure that she has not sent it yet?" "I am sure." "And why?" "Because she has said that she would send it on the day when the betrothal was publicly proclaimed. That will be next Monday." "Oh, then we have three days yet," said Holmes with a yawn. "That is very fortunate, as I have one or two matters of importance to look into just at present. Your Majesty will, of course, stay in London for the present?" "Certainly. You will find me at the Langham under the name of the Count Von Kramm." "Then I shall drop you a line to let you know how we progress." "Pray do so. I shall be all anxiety." "Then, as to money?" "You have carte blanche." "Absolutely?" "I tell you that I would give one of the provinces of my kingdom to have that photograph." "And for present expenses?" The King took a heavy chamois leather bag from under his cloak and laid it on the table. "There are three hundred pounds in gold and seven hundred in notes," he said. Holmes scribbled a receipt upon a sheet of his note-book and handed it to him. "And Mademoiselle's address?" he asked. "Is Briony Lodge, Serpentine Avenue, St. John's Wood." Holmes took a note of it. "One other question," said he. "Was the photograph a cabinet?" "It was." "Then, good-night, your Majesty, and I trust that we shall soon have some good news for you. And good-night, Watson," he added, as the wheels of the royal brougham rolled down the street. "If you will be good enough to call to-morrow afternoon at three o'clock I should like to chat this little matter over with you." II. At three o'clock precisely I was at Baker Street, but Holmes had not yet returned. The landlady informed me that he had left the house shortly after eight o'clock in the morning. I sat down beside the fire, however, with the intention of awaiting him, however long he might be. I was already deeply interested in his inquiry, for, though it was surrounded by none of the grim and strange features which were associated with the two crimes which I have already recorded, still, the nature of the case and the exalted station of his client gave it a character of its own. Indeed, apart from the nature of the investigation which my friend had on hand, there was something in his masterly grasp of a situation, and his keen, incisive reasoning, which made it a pleasure to me to study his system of work, and to follow the quick, subtle methods by which he disentangled the most inextricable mysteries. So accustomed was I to his invariable success that the very possibility of his failing had ceased to enter into my head. It was close upon four before the door opened, and a drunken-looking groom, ill-kempt and side-whiskered, with an inflamed face and disreputable clothes, walked into the room. Accustomed as I was to my friend's amazing powers in the use of disguises, I had to look three times before I was certain that it was indeed he. With a nod he vanished into the bedroom, whence he emerged in five minutes tweed-suited and respectable, as of old. Putting his hands into his pockets, he stretched out his legs in front of the fire and laughed heartily for some minutes. "Well, really!" he cried, and then he choked and laughed again until he was obliged to lie back, limp and helpless, in the chair. "What is it?" "It's quite too funny. I am sure you could never guess how I employed my morning, or what I ended by doing." "I can't imagine. I suppose that you have been watching the habits, and perhaps the house, of Miss Irene Adler." "Quite so; but the sequel was rather unusual. I will tell you, however. I left the house a little after eight o'clock this morning in the character of a groom out of work. There is a wonderful sympathy and freemasonry among horsey men. Be one of them, and you will know all that there is to know. I soon found Briony Lodge. It is a bijou villa, with a garden at the back, but built out in front right up to the road, two stories. Chubb lock to the door. Large sitting-room on the right side, well furnished, with long windows almost to the floor, and those preposterous English window fasteners which a child could open. Behind there was nothing remarkable, save that the passage window could be reached from the top of the coach-house. I walked round it and examined it closely from every point of view, but without noting anything else of interest. "I then lounged down the street and found, as I expected, that there was a mews in a lane which runs down by one wall of the garden. I lent the ostlers a hand in rubbing down their horses, and received in exchange twopence, a glass of half and half, two fills of shag tobacco, and as much information as I could desire about Miss Adler, to say nothing of half a dozen other people in the neighbourhood in whom I was not in the least interested, but whose biographies I was compelled to listen to." "And what of Irene Adler?" I asked. "Oh, she has turned all the men's heads down in that part. She is the daintiest thing under a bonnet on this planet. So say the Serpentine-mews, to a man. She lives quietly, sings at concerts, drives out at five every day, and returns at seven sharp for dinner. Seldom goes out at other times, except when she sings. Has only one male visitor, but a good deal of him. He is dark, handsome, and dashing, never calls less than once a day, and often twice. He is a Mr. Godfrey Norton, of the Inner Temple. See the advantages of a cabman as a confidant. They had driven him home a dozen times from Serpentine-mews, and knew all about him. When I had listened to all they had to tell, I began to walk up and down near Briony Lodge once more, and to think over my plan of campaign. "This Godfrey Norton was evidently an important factor in the matter. He was a lawyer. That sounded ominous. What was the relation between them, and what the object of his repeated visits? Was she his client, his friend, or his mistress? If the former, she had probably transferred the photograph to his keeping. If the latter, it was less likely. On the issue of this question depended whether I should continue my work at Briony Lodge, or turn my attention to the gentleman's chambers in the Temple. It was a delicate point, and it widened the field of my inquiry. I fear that I bore you with these details, but I have to let you see my little difficulties, if you are to understand the situation." "I am following you closely," I answered. "I was still balancing the matter in my mind when a hansom cab drove up to Briony Lodge, and a gentleman sprang out. He was a remarkably handsome man, dark, aquiline, and moustached--evidently the man of whom I had heard. He appeared to be in a great hurry, shouted to the cabman to wait, and brushed past the maid who opened the door with the air of a man who was thoroughly at home. "He was in the house about half an hour, and I could catch glimpses of him in the windows of the sitting-room, pacing up and down, talking excitedly, and waving his arms. Of her I could see nothing. Presently he emerged, looking even more flurried than before. As he stepped up to the cab, he pulled a gold watch from his pocket and looked at it earnestly, 'Drive like the devil,' he shouted, 'first to Gross & Hankey's in Regent Street, and then to the Church of St. Monica in the Edgeware Road. Half a guinea if you do it in twenty minutes!' "Away they went, and I was just wondering whether I should not do well to follow them when up the lane came a neat little landau, the coachman with his coat only half-buttoned, and his tie under his ear, while all the tags of his harness were sticking out of the buckles. It hadn't pulled up before she shot out of the hall door and into it. I only caught a glimpse of her at the moment, but she was a lovely woman, with a face that a man might die for. "'The Church of St. Monica, John,' she cried, 'and half a sovereign if you reach it in twenty minutes.' "This was quite too good to lose, Watson. I was just balancing whether I should run for it, or whether I should perch behind her landau when a cab came through the street. The driver looked twice at such a shabby fare, but I jumped in before he could object. 'The Church of St. Monica,' said I, 'and half a sovereign if you reach it in twenty minutes.' It was twenty-five minutes to twelve, and of course it was clear enough what was in the wind. "My cabby drove fast. I don't think I ever drove faster, but the others were there before us. The cab and the landau with their steaming horses were in front of the door when I arrived. I paid the man and hurried into the church. There was not a soul there save the two whom I had followed and a surpliced clergyman, who seemed to be expostulating with them. They were all three standing in a knot in front of the altar. I lounged up the side aisle like any other idler who has dropped into a church. Suddenly, to my surprise, the three at the altar faced round to me, and Godfrey Norton came running as hard as he could towards me. "'Thank God,' he cried. 'You'll do. Come! Come!' "'What then?' I asked. "'Come, man, come, only three minutes, or it won't be legal.' "I was half-dragged up to the altar, and before I knew where I was I found myself mumbling responses which were whispered in my ear, and vouching for things of which I knew nothing, and generally assisting in the secure tying up of Irene Adler, spinster, to Godfrey Norton, bachelor. It was all done in an instant, and there was the gentleman thanking me on the one side and the lady on the other, while the clergyman beamed on me in front. It was the most preposterous position in which I ever found myself in my life, and it was the thought of it that started me laughing just now. It seems that there had been some informality about their license, that the clergyman absolutely refused to marry them without a witness of some sort, and that my lucky appearance saved the bridegroom from having to sally out into the streets in search of a best man. The bride gave me a sovereign, and I mean to wear it on my watch-chain in memory of the occasion." "This is a very unexpected turn of affairs," said I; "and what then?" "Well, I found my plans very seriously menaced. It looked as if the pair might take an immediate departure, and so necessitate very prompt and energetic measures on my part. At the church door, however, they separated, he driving back to the Temple, and she to her own house. 'I shall drive out in the park at five as usual,' she said as she left him. I heard no more. They drove away in different directions, and I went off to make my own arrangements." "Which are?" "Some cold beef and a glass of beer," he answered, ringing the bell. "I have been too busy to think of food, and I am likely to be busier still this evening. By the way, Doctor, I shall want your co-operation." "I shall be delighted." "You don't mind breaking the law?" "Not in the least." "Nor running a chance of arrest?" "Not in a good cause." "Oh, the cause is excellent!" "Then I am your man." "I was sure that I might rely on you." "But what is it you wish?" "When Mrs. Turner has brought in the tray I will make it clear to you. Now," he said as he turned hungrily on the simple fare that our landlady had provided, "I must discuss it while I eat, for I have not much time. It is nearly five now. In two hours we must be on the scene of action. Miss Irene, or Madame, rather, returns from her drive at seven. We must be at Briony Lodge to meet her." "And what then?" "You must leave that to me. I have already arranged what is to occur. There is only one point on which I must insist. You must not interfere, come what may. You understand?" "I am to be neutral?" "To do nothing whatever. There will probably be some small unpleasantness. Do not join in it. It will end in my being conveyed into the house. Four or five minutes afterwards the sitting-room window will open. You are to station yourself close to that open window." "Yes." "You are to watch me, for I will be visible to you." "Yes." "And when I raise my hand--so--you will throw into the room what I give you to throw, and will, at the same time, raise the cry of fire. You quite follow me?" "Entirely." "It is nothing very formidable," he said, taking a long cigar-shaped roll from his pocket. "It is an ordinary plumber's smoke-rocket, fitted with a cap at either end to make it self-lighting. Your task is confined to that. When you raise your cry of fire, it will be taken up by quite a number of people. You may then walk to the end of the street, and I will rejoin you in ten minutes. I hope that I have made myself clear?" "I am to remain neutral, to get near the window, to watch you, and at the signal to throw in this object, then to raise the cry of fire, and to wait you at the corner of the street." "Precisely." "Then you may entirely rely on me." "That is excellent. I think, perhaps, it is almost time that I prepare for the new role I have to play." He disappeared into his bedroom and returned in a few minutes in the character of an amiable and simple-minded Nonconformist clergyman. His broad black hat, his baggy trousers, his white tie, his sympathetic smile, and general look of peering and benevolent curiosity were such as Mr. John Hare alone could have equalled. It was not merely that Holmes changed his costume. His expression, his manner, his very soul seemed to vary with every fresh part that he assumed. The stage lost a fine actor, even as science lost an acute reasoner, when he became a specialist in crime. It was a quarter past six when we left Baker Street, and it still wanted ten minutes to the hour when we found ourselves in Serpentine Avenue. It was already dusk, and the lamps were just being lighted as we paced up and down in front of Briony Lodge, waiting for the coming of its occupant. The house was just such as I had pictured it from Sherlock Holmes' succinct description, but the locality appeared to be less private than I expected. On the contrary, for a small street in a quiet neighbourhood, it was remarkably animated. There was a group of shabbily dressed men smoking and laughing in a corner, a scissors-grinder with his wheel, two guardsmen who were flirting with a nurse-girl, and several well-dressed young men who were lounging up and down with cigars in their mouths. "You see," remarked Holmes, as we paced to and fro in front of the house, "this marriage rather simplifies matters. The photograph becomes a double-edged weapon now. The chances are that she would be as averse to its being seen by Mr. Godfrey Norton, as our client is to its coming to the eyes of his princess. Now the question is, Where are we to find the photograph?" "Where, indeed?" "It is most unlikely that she carries it about with her. It is cabinet size. Too large for easy concealment about a woman's dress. She knows that the King is capable of having her waylaid and searched. Two attempts of the sort have already been made. We may take it, then, that she does not carry it about with her." "Where, then?" "Her banker or her lawyer. There is that double possibility. But I am inclined to think neither. Women are naturally secretive, and they like to do their own secreting. Why should she hand it over to anyone else? She could trust her own guardianship, but she could not tell what indirect or political influence might be brought to bear upon a business man. Besides, remember that she had resolved to use it within a few days. It must be where she can lay her hands upon it. It must be in her own house." "But it has twice been burgled." "Pshaw! They did not know how to look." "But how will you look?" "I will not look." "What then?" "I will get her to show me." "But she will refuse." "She will not be able to. But I hear the rumble of wheels. It is her carriage. Now carry out my orders to the letter." As he spoke the gleam of the side-lights of a carriage came round the curve of the avenue. It was a smart little landau which rattled up to the door of Briony Lodge. As it pulled up, one of the loafing men at the corner dashed forward to open the door in the hope of earning a copper, but was elbowed away by another loafer, who had rushed up with the same intention. A fierce quarrel broke out, which was increased by the two guardsmen, who took sides with one of the loungers, and by the scissors-grinder, who was equally hot upon the other side. A blow was struck, and in an instant the lady, who had stepped from her carriage, was the centre of a little knot of flushed and struggling men, who struck savagely at each other with their fists and sticks. Holmes dashed into the crowd to protect the lady; but just as he reached her he gave a cry and dropped to the ground, with the blood running freely down his face. At his fall the guardsmen took to their heels in one direction and the loungers in the other, while a number of better-dressed people, who had watched the scuffle without taking part in it, crowded in to help the lady and to attend to the injured man. Irene Adler, as I will still call her, had hurried up the steps; but she stood at the top with her superb figure outlined against the lights of the hall, looking back into the street. "Is the poor gentleman much hurt?" she asked. "He is dead," cried several voices. "No, no, there's life in him!" shouted another. "But he'll be gone before you can get him to hospital." "He's a brave fellow," said a woman. "They would have had the lady's purse and watch if it hadn't been for him. They were a gang, and a rough one, too. Ah, he's breathing now." "He can't lie in the street. May we bring him in, marm?" "Surely. Bring him into the sitting-room. There is a comfortable sofa. This way, please!" Slowly and solemnly he was borne into Briony Lodge and laid out in the principal room, while I still observed the proceedings from my post by the window. The lamps had been lit, but the blinds had not been drawn, so that I could see Holmes as he lay upon the couch. I do not know whether he was seized with compunction at that moment for the part he was playing, but I know that I never felt more heartily ashamed of myself in my life than when I saw the beautiful creature against whom I was conspiring, or the grace and kindliness with which she waited upon the injured man. And yet it would be the blackest treachery to Holmes to draw back now from the part which he had intrusted to me. I hardened my heart, and took the smoke-rocket from under my ulster. After all, I thought, we are not injuring her. We are but preventing her from injuring another. Holmes had sat up upon the couch, and I saw him motion like a man who is in need of air. A maid rushed across and threw open the window. At the same instant I saw him raise his hand and at the signal I tossed my rocket into the room with a cry of "Fire!" The word was no sooner out of my mouth than the whole crowd of spectators, well dressed and ill--gentlemen, ostlers, and servant-maids--joined in a general shriek of "Fire!" Thick clouds of smoke curled through the room and out at the open window. I caught a glimpse of rushing figures, and a moment later the voice of Holmes from within assuring them that it was a false alarm. Slipping through the shouting crowd I made my way to the corner of the street, and in ten minutes was rejoiced to find my friend's arm in mine, and to get away from the scene of uproar. He walked swiftly and in silence for some few minutes until we had turned down one of the quiet streets which lead towards the Edgeware Road. "You did it very nicely, Doctor," he remarked. "Nothing could have been better. It is all right." "You have the photograph?" "I know where it is." "And how did you find out?" "She showed me, as I told you she would." "I am still in the dark." "I do not wish to make a mystery," said he, laughing. "The matter was perfectly simple. You, of course, saw that everyone in the street was an accomplice. They were all engaged for the evening." "I guessed as much." "Then, when the row broke out, I had a little moist red paint in the palm of my hand. I rushed forward, fell down, clapped my hand to my face, and became a piteous spectacle. It is an old trick." "That also I could fathom." "Then they carried me in. She was bound to have me in. What else could she do? And into her sitting-room, which was the very room which I suspected. It lay between that and her bedroom, and I was determined to see which. They laid me on a couch, I motioned for air, they were compelled to open the window, and you had your chance." "How did that help you?" "It was all-important. When a woman thinks that her house is on fire, her instinct is at once to rush to the thing which she values most. It is a perfectly overpowering impulse, and I have more than once taken advantage of it. In the case of the Darlington substitution scandal it was of use to me, and also in the Arnsworth Castle business. A married woman grabs at her baby; an unmarried one reaches for her jewel-box. Now it was clear to me that our lady of to-day had nothing in the house more precious to her than what we are in quest of. She would rush to secure it. The alarm of fire was admirably done. The smoke and shouting were enough to shake nerves of steel. She responded beautifully. The photograph is in a recess behind a sliding panel just above the right bell-pull. She was there in an instant, and I caught a glimpse of it as she half-drew it out. When I cried out that it was a false alarm, she replaced it, glanced at the rocket, rushed from the room, and I have not seen her since. I rose, and, making my excuses, escaped from the house. I hesitated whether to attempt to secure the photograph at once; but the coachman had come in, and as he was watching me narrowly it seemed safer to wait. A little over-precipitance may ruin all." "And now?" I asked. "Our quest is practically finished. I shall call with the King to-morrow, and with you, if you care to come with us. We will be shown into the sitting-room to wait for the lady, but it is probable that when she comes she may find neither us nor the photograph. It might be a satisfaction to his Majesty to regain it with his own hands." "And when will you call?" "At eight in the morning. She will not be up, so that we shall have a clear field. Besides, we must be prompt, for this marriage may mean a complete change in her life and habits. I must wire to the King without delay." We had reached Baker Street and had stopped at the door. He was searching his pockets for the key when someone passing said: "Good-night, Mister Sherlock Holmes." There were several people on the pavement at the time, but the greeting appeared to come from a slim youth in an ulster who had hurried by. "I've heard that voice before," said Holmes, staring down the dimly lit street. "Now, I wonder who the deuce that could have been." III. I slept at Baker Street that night, and we were engaged upon our toast and coffee in the morning when the King of Bohemia rushed into the room. "You have really got it!" he cried, grasping Sherlock Holmes by either shoulder and looking eagerly into his face. "Not yet." "But you have hopes?" "I have hopes." "Then, come. I am all impatience to be gone." "We must have a cab." "No, my brougham is waiting." "Then that will simplify matters." We descended and started off once more for Briony Lodge. "Irene Adler is married," remarked Holmes. "Married! When?" "Yesterday." "But to whom?" "To an English lawyer named Norton." "But she could not love him." "I am in hopes that she does." "And why in hopes?" "Because it would spare your Majesty all fear of future annoyance. If the lady loves her husband, she does not love your Majesty. If she does not love your Majesty, there is no reason why she should interfere with your Majesty's plan." "It is true. And yet--Well! I wish she had been of my own station! What a queen she would have made!" He relapsed into a moody silence, which was not broken until we drew up in Serpentine Avenue. The door of Briony Lodge was open, and an elderly woman stood upon the steps. She watched us with a sardonic eye as we stepped from the brougham. "Mr. Sherlock Holmes, I believe?" said she. "I am Mr. Holmes," answered my companion, looking at her with a questioning and rather startled gaze. "Indeed! My mistress told me that you were likely to call. She left this morning with her husband by the 5:15 train from Charing Cross for the Continent." "What!" Sherlock Holmes staggered back, white with chagrin and surprise. "Do you mean that she has left England?" "Never to return." "And the papers?" asked the King hoarsely. "All is lost." "We shall see." He pushed past the servant and rushed into the drawing-room, followed by the King and myself. The furniture was scattered about in every direction, with dismantled shelves and open drawers, as if the lady had hurriedly ransacked them before her flight. Holmes rushed at the bell-pull, tore back a small sliding shutter, and, plunging in his hand, pulled out a photograph and a letter. The photograph was of Irene Adler herself in evening dress, the letter was superscribed to "Sherlock Holmes, Esq. To be left till called for." My friend tore it open and we all three read it together. It was dated at midnight of the preceding night and ran in this way: "MY DEAR MR. SHERLOCK HOLMES,--You really did it very well. You took me in completely. Until after the alarm of fire, I had not a suspicion. But then, when I found how I had betrayed myself, I began to think. I had been warned against you months ago. I had been told that if the King employed an agent it would certainly be you. And your address had been given me. Yet, with all this, you made me reveal what you wanted to know. Even after I became suspicious, I found it hard to think evil of such a dear, kind old clergyman. But, you know, I have been trained as an actress myself. Male costume is nothing new to me. I often take advantage of the freedom which it gives. I sent John, the coachman, to watch you, ran up stairs, got into my walking-clothes, as I call them, and came down just as you departed. "Well, I followed you to your door, and so made sure that I was really an object of interest to the celebrated Mr. Sherlock Holmes. Then I, rather imprudently, wished you good-night, and started for the Temple to see my husband. "We both thought the best resource was flight, when pursued by so formidable an antagonist; so you will find the nest empty when you call to-morrow. As to the photograph, your client may rest in peace. I love and am loved by a better man than he. The King may do what he will without hindrance from one whom he has cruelly wronged. I keep it only to safeguard myself, and to preserve a weapon which will always secure me from any steps which he might take in the future. I leave a photograph which he might care to possess; and I remain, dear Mr. Sherlock Holmes, "Very truly yours, "IRENE NORTON, née ADLER." "What a woman--oh, what a woman!" cried the King of Bohemia, when we had all three read this epistle. "Did I not tell you how quick and resolute she was? Would she not have made an admirable queen? Is it not a pity that she was not on my level?" "From what I have seen of the lady she seems indeed to be on a very different level to your Majesty," said Holmes coldly. "I am sorry that I have not been able to bring your Majesty's business to a more successful conclusion." "On the contrary, my dear sir," cried the King; "nothing could be more successful. I know that her word is inviolate. The photograph is now as safe as if it were in the fire." "I am glad to hear your Majesty say so." "I am immensely indebted to you. Pray tell me in what way I can reward you. This ring--" He slipped an emerald snake ring from his finger and held it out upon the palm of his hand. "Your Majesty has something which I should value even more highly," said Holmes. "You have but to name it." "This photograph!" The King stared at him in amazement. "Irene's photograph!" he cried. "Certainly, if you wish it." "I thank your Majesty. Then there is no more to be done in the matter. I have the honour to wish you a very good-morning." He bowed, and, turning away without observing the hand which the King had stretched out to him, he set off in my company for his chambers. And that was how a great scandal threatened to affect the kingdom of Bohemia, and how the best plans of Mr. Sherlock Holmes were beaten by a woman's wit. He used to make merry over the cleverness of women, but I have not heard him do it of late. And when he speaks of Irene Adler, or when he refers to her photograph, it is always under the honourable title of the woman. ADVENTURE II. THE RED-HEADED LEAGUE I had called upon my friend, Mr. Sherlock Holmes, one day in the autumn of last year and found him in deep conversation with a very stout, florid-faced, elderly gentleman with fiery red hair. With an apology for my intrusion, I was about to withdraw when Holmes pulled me abruptly into the room and closed the door behind me. "You could not possibly have come at a better time, my dear Watson," he said cordially. "I was afraid that you were engaged." "So I am. Very much so." "Then I can wait in the next room." "Not at all. This gentleman, Mr. Wilson, has been my partner and helper in many of my most successful cases, and I have no doubt that he will be of the utmost use to me in yours also." The stout gentleman half rose from his chair and gave a bob of greeting, with a quick little questioning glance from his small fat-encircled eyes. "Try the settee," said Holmes, relapsing into his armchair and putting his fingertips together, as was his custom when in judicial moods. "I know, my dear Watson, that you share my love of all that is bizarre and outside the conventions and humdrum routine of everyday life. You have shown your relish for it by the enthusiasm which has prompted you to chronicle, and, if you will excuse my saying so, somewhat to embellish so many of my own little adventures." "Your cases have indeed been of the greatest interest to me," I observed. "You will remember that I remarked the other day, just before we went into the very simple problem presented by Miss Mary Sutherland, that for strange effects and extraordinary combinations we must go to life itself, which is always far more daring than any effort of the imagination." "A proposition which I took the liberty of doubting." "You did, Doctor, but none the less you must come round to my view, for otherwise I shall keep on piling fact upon fact on you until your reason breaks down under them and acknowledges me to be right. Now, Mr. Jabez Wilson here has been good enough to call upon me this morning, and to begin a narrative which promises to be one of the most singular which I have listened to for some time. You have heard me remark that the strangest and most unique things are very often connected not with the larger but with the smaller crimes, and occasionally, indeed, where there is room for doubt whether any positive crime has been committed. As far as I have heard it is impossible for me to say whether the present case is an instance of crime or not, but the course of events is certainly among the most singular that I have ever listened to. Perhaps, Mr. Wilson, you would have the great kindness to recommence your narrative. I ask you not merely because my friend Dr. Watson has not heard the opening part but also because the peculiar nature of the story makes me anxious to have every possible detail from your lips. As a rule, when I have heard some slight indication of the course of events, I am able to guide myself by the thousands of other similar cases which occur to my memory. In the present instance I am forced to admit that the facts are, to the best of my belief, unique." The portly client puffed out his chest with an appearance of some little pride and pulled a dirty and wrinkled newspaper from the inside pocket of his greatcoat. As he glanced down the advertisement column, with his head thrust forward and the paper flattened out upon his knee, I took a good look at the man and endeavoured, after the fashion of my companion, to read the indications which might be presented by his dress or appearance. I did not gain very much, however, by my inspection. Our visitor bore every mark of being an average commonplace British tradesman, obese, pompous, and slow. He wore rather baggy grey shepherd's check trousers, a not over-clean black frock-coat, unbuttoned in the front, and a drab waistcoat with a heavy brassy Albert chain, and a square pierced bit of metal dangling down as an ornament. A frayed top-hat and a faded brown overcoat with a wrinkled velvet collar lay upon a chair beside him. Altogether, look as I would, there was nothing remarkable about the man save his blazing red head, and the expression of extreme chagrin and discontent upon his features. Sherlock Holmes' quick eye took in my occupation, and he shook his head with a smile as he noticed my questioning glances. "Beyond the obvious facts that he has at some time done manual labour, that he takes snuff, that he is a Freemason, that he has been in China, and that he has done a considerable amount of writing lately, I can deduce nothing else." Mr. Jabez Wilson started up in his chair, with his forefinger upon the paper, but his eyes upon my companion. "How, in the name of good-fortune, did you know all that, Mr. Holmes?" he asked. "How did you know, for example, that I did manual labour. It's as true as gospel, for I began as a ship's carpenter." "Your hands, my dear sir. Your right hand is quite a size larger than your left. You have worked with it, and the muscles are more developed." "Well, the snuff, then, and the Freemasonry?" "I won't insult your intelligence by telling you how I read that, especially as, rather against the strict rules of your order, you use an arc-and-compass breastpin." "Ah, of course, I forgot that. But the writing?" "What else can be indicated by that right cuff so very shiny for five inches, and the left one with the smooth patch near the elbow where you rest it upon the desk?" "Well, but China?" "The fish that you have tattooed immediately above your right wrist could only have been done in China. I have made a small study of tattoo marks and have even contributed to the literature of the subject. That trick of staining the fishes' scales of a delicate pink is quite peculiar to China. When, in addition, I see a Chinese coin hanging from your watch-chain, the matter becomes even more simple." Mr. Jabez Wilson laughed heavily. "Well, I never!" said he. "I thought at first that you had done something clever, but I see that there was nothing in it, after all." "I begin to think, Watson," said Holmes, "that I make a mistake in explaining. 'Omne ignotum pro magnifico,' you know, and my poor little reputation, such as it is, will suffer shipwreck if I am so candid. Can you not find the advertisement, Mr. Wilson?" "Yes, I have got it now," he answered with his thick red finger planted halfway down the column. "Here it is. This is what began it all. You just read it for yourself, sir." I took the paper from him and read as follows: "TO THE RED-HEADED LEAGUE: On account of the bequest of the late Ezekiah Hopkins, of Lebanon, Pennsylvania, U. S. A., there is now another vacancy open which entitles a member of the League to a salary of 4 pounds a week for purely nominal services. All red-headed men who are sound in body and mind and above the age of twenty-one years, are eligible. Apply in person on Monday, at eleven o'clock, to Duncan Ross, at the offices of the League, 7 Pope's Court, Fleet Street." "What on earth does this mean?" I ejaculated after I had twice read over the extraordinary announcement. Holmes chuckled and wriggled in his chair, as was his habit when in high spirits. "It is a little off the beaten track, isn't it?" said he. "And now, Mr. Wilson, off you go at scratch and tell us all about yourself, your household, and the effect which this advertisement had upon your fortunes. You will first make a note, Doctor, of the paper and the date." "It is The Morning Chronicle of April 27, 1890. Just two months ago." "Very good. Now, Mr. Wilson?" "Well, it is just as I have been telling you, Mr. Sherlock Holmes," said Jabez Wilson, mopping his forehead; "I have a small pawnbroker's business at Coburg Square, near the City. It's not a very large affair, and of late years it has not done more than just give me a living. I used to be able to keep two assistants, but now I only keep one; and I would have a job to pay him but that he is willing to come for half wages so as to learn the business." "What is the name of this obliging youth?" asked Sherlock Holmes. "His name is Vincent Spaulding, and he's not such a youth, either. It's hard to say his age. I should not wish a smarter assistant, Mr. Holmes; and I know very well that he could better himself and earn twice what I am able to give him. But, after all, if he is satisfied, why should I put ideas in his head?" "Why, indeed? You seem most fortunate in having an employé who comes under the full market price. It is not a common experience among employers in this age. I don't know that your assistant is not as remarkable as your advertisement." "Oh, he has his faults, too," said Mr. Wilson. "Never was such a fellow for photography. Snapping away with a camera when he ought to be improving his mind, and then diving down into the cellar like a rabbit into its hole to develop his pictures. That is his main fault, but on the whole he's a good worker. There's no vice in him." "He is still with you, I presume?" "Yes, sir. He and a girl of fourteen, who does a bit of simple cooking and keeps the place clean--that's all I have in the house, for I am a widower and never had any family. We live very quietly, sir, the three of us; and we keep a roof over our heads and pay our debts, if we do nothing more. "The first thing that put us out was that advertisement. Spaulding, he came down into the office just this day eight weeks, with this very paper in his hand, and he says: "'I wish to the Lord, Mr. Wilson, that I was a red-headed man.' "'Why that?' I asks. "'Why,' says he, 'here's another vacancy on the League of the Red-headed Men. It's worth quite a little fortune to any man who gets it, and I understand that there are more vacancies than there are men, so that the trustees are at their wits' end what to do with the money. If my hair would only change colour, here's a nice little crib all ready for me to step into.' "'Why, what is it, then?' I asked. You see, Mr. Holmes, I am a very stay-at-home man, and as my business came to me instead of my having to go to it, I was often weeks on end without putting my foot over the door-mat. In that way I didn't know much of what was going on outside, and I was always glad of a bit of news. "'Have you never heard of the League of the Red-headed Men?' he asked with his eyes open. "'Never.' "'Why, I wonder at that, for you are eligible yourself for one of the vacancies.' "'And what are they worth?' I asked. "'Oh, merely a couple of hundred a year, but the work is slight, and it need not interfere very much with one's other occupations.' "Well, you can easily think that that made me prick up my ears, for the business has not been over-good for some years, and an extra couple of hundred would have been very handy. "'Tell me all about it,' said I. "'Well,' said he, showing me the advertisement, 'you can see for yourself that the League has a vacancy, and there is the address where you should apply for particulars. As far as I can make out, the League was founded by an American millionaire, Ezekiah Hopkins, who was very peculiar in his ways. He was himself red-headed, and he had a great sympathy for all red-headed men; so when he died it was found that he had left his enormous fortune in the hands of trustees, with instructions to apply the interest to the providing of easy berths to men whose hair is of that colour. From all I hear it is splendid pay and very little to do.' "'But,' said I, 'there would be millions of red-headed men who would apply.' "'Not so many as you might think,' he answered. 'You see it is really confined to Londoners, and to grown men. This American had started from London when he was young, and he wanted to do the old town a good turn. Then, again, I have heard it is no use your applying if your hair is light red, or dark red, or anything but real bright, blazing, fiery red. Now, if you cared to apply, Mr. Wilson, you would just walk in; but perhaps it would hardly be worth your while to put yourself out of the way for the sake of a few hundred pounds.' "Now, it is a fact, gentlemen, as you may see for yourselves, that my hair is of a very full and rich tint, so that it seemed to me that if there was to be any competition in the matter I stood as good a chance as any man that I had ever met. Vincent Spaulding seemed to know so much about it that I thought he might prove useful, so I just ordered him to put up the shutters for the day and to come right away with me. He was very willing to have a holiday, so we shut the business up and started off for the address that was given us in the advertisement. "I never hope to see such a sight as that again, Mr. Holmes. From north, south, east, and west every man who had a shade of red in his hair had tramped into the city to answer the advertisement. Fleet Street was choked with red-headed folk, and Pope's Court looked like a coster's orange barrow. I should not have thought there were so many in the whole country as were brought together by that single advertisement. Every shade of colour they were--straw, lemon, orange, brick, Irish-setter, liver, clay; but, as Spaulding said, there were not many who had the real vivid flame-coloured tint. When I saw how many were waiting, I would have given it up in despair; but Spaulding would not hear of it. How he did it I could not imagine, but he pushed and pulled and butted until he got me through the crowd, and right up to the steps which led to the office. There was a double stream upon the stair, some going up in hope, and some coming back dejected; but we wedged in as well as we could and soon found ourselves in the office." "Your experience has been a most entertaining one," remarked Holmes as his client paused and refreshed his memory with a huge pinch of snuff. "Pray continue your very interesting statement." "There was nothing in the office but a couple of wooden chairs and a deal table, behind which sat a small man with a head that was even redder than mine. He said a few words to each candidate as he came up, and then he always managed to find some fault in them which would disqualify them. Getting a vacancy did not seem to be such a very easy matter, after all. However, when our turn came the little man was much more favourable to me than to any of the others, and he closed the door as we entered, so that he might have a private word with us. "'This is Mr. Jabez Wilson,' said my assistant, 'and he is willing to fill a vacancy in the League.' "'And he is admirably suited for it,' the other answered. 'He has every requirement. I cannot recall when I have seen anything so fine.' He took a step backward, cocked his head on one side, and gazed at my hair until I felt quite bashful. Then suddenly he plunged forward, wrung my hand, and congratulated me warmly on my success. "'It would be injustice to hesitate,' said he. 'You will, however, I am sure, excuse me for taking an obvious precaution.' With that he seized my hair in both his hands, and tugged until I yelled with the pain. 'There is water in your eyes,' said he as he released me. 'I perceive that all is as it should be. But we have to be careful, for we have twice been deceived by wigs and once by paint. I could tell you tales of cobbler's wax which would disgust you with human nature.' He stepped over to the window and shouted through it at the top of his voice that the vacancy was filled. A groan of disappointment came up from below, and the folk all trooped away in different directions until there was not a red-head to be seen except my own and that of the manager. "'My name,' said he, 'is Mr. Duncan Ross, and I am myself one of the pensioners upon the fund left by our noble benefactor. Are you a married man, Mr. Wilson? Have you a family?' "I answered that I had not. "His face fell immediately. "'Dear me!' he said gravely, 'that is very serious indeed! I am sorry to hear you say that. The fund was, of course, for the propagation and spread of the red-heads as well as for their maintenance. It is exceedingly unfortunate that you should be a bachelor.' "My face lengthened at this, Mr. Holmes, for I thought that I was not to have the vacancy after all; but after thinking it over for a few minutes he said that it would be all right. "'In the case of another,' said he, 'the objection might be fatal, but we must stretch a point in favour of a man with such a head of hair as yours. When shall you be able to enter upon your new duties?' "'Well, it is a little awkward, for I have a business already,' said I. "'Oh, never mind about that, Mr. Wilson!' said Vincent Spaulding. 'I should be able to look after that for you.' "'What would be the hours?' I asked. "'Ten to two.' "Now a pawnbroker's business is mostly done of an evening, Mr. Holmes, especially Thursday and Friday evening, which is just before pay-day; so it would suit me very well to earn a little in the mornings. Besides, I knew that my assistant was a good man, and that he would see to anything that turned up. "'That would suit me very well,' said I. 'And the pay?' "'Is 4 pounds a week.' "'And the work?' "'Is purely nominal.' "'What do you call purely nominal?' "'Well, you have to be in the office, or at least in the building, the whole time. If you leave, you forfeit your whole position forever. The will is very clear upon that point. You don't comply with the conditions if you budge from the office during that time.' "'It's only four hours a day, and I should not think of leaving,' said I. "'No excuse will avail,' said Mr. Duncan Ross; 'neither sickness nor business nor anything else. There you must stay, or you lose your billet.' "'And the work?' "'Is to copy out the "Encyclopaedia Britannica." There is the first volume of it in that press. You must find your own ink, pens, and blotting-paper, but we provide this table and chair. Will you be ready to-morrow?' "'Certainly,' I answered. "'Then, good-bye, Mr. Jabez Wilson, and let me congratulate you once more on the important position which you have been fortunate enough to gain.' He bowed me out of the room and I went home with my assistant, hardly knowing what to say or do, I was so pleased at my own good fortune. "Well, I thought over the matter all day, and by evening I was in low spirits again; for I had quite persuaded myself that the whole affair must be some great hoax or fraud, though what its object might be I could not imagine. It seemed altogether past belief that anyone could make such a will, or that they would pay such a sum for doing anything so simple as copying out the 'Encyclopaedia Britannica.' Vincent Spaulding did what he could to cheer me up, but by bedtime I had reasoned myself out of the whole thing. However, in the morning I determined to have a look at it anyhow, so I bought a penny bottle of ink, and with a quill-pen, and seven sheets of foolscap paper, I started off for Pope's Court. "Well, to my surprise and delight, everything was as right as possible. The table was set out ready for me, and Mr. Duncan Ross was there to see that I got fairly to work. He started me off upon the letter A, and then he left me; but he would drop in from time to time to see that all was right with me. At two o'clock he bade me good-day, complimented me upon the amount that I had written, and locked the door of the office after me. "This went on day after day, Mr. Holmes, and on Saturday the manager came in and planked down four golden sovereigns for my week's work. It was the same next week, and the same the week after. Every morning I was there at ten, and every afternoon I left at two. By degrees Mr. Duncan Ross took to coming in only once of a morning, and then, after a time, he did not come in at all. Still, of course, I never dared to leave the room for an instant, for I was not sure when he might come, and the billet was such a good one, and suited me so well, that I would not risk the loss of it. "Eight weeks passed away like this, and I had written about Abbots and Archery and Armour and Architecture and Attica, and hoped with diligence that I might get on to the B's before very long. It cost me something in foolscap, and I had pretty nearly filled a shelf with my writings. And then suddenly the whole business came to an end." "To an end?" "Yes, sir. And no later than this morning. I went to my work as usual at ten o'clock, but the door was shut and locked, with a little square of cardboard hammered on to the middle of the panel with a tack. Here it is, and you can read for yourself." He held up a piece of white cardboard about the size of a sheet of note-paper. It read in this fashion: THE RED-HEADED LEAGUE IS DISSOLVED. October 9, 1890. Sherlock Holmes and I surveyed this curt announcement and the rueful face behind it, until the comical side of the affair so completely overtopped every other consideration that we both burst out into a roar of laughter. "I cannot see that there is anything very funny," cried our client, flushing up to the roots of his flaming head. "If you can do nothing better than laugh at me, I can go elsewhere." "No, no," cried Holmes, shoving him back into the chair from which he had half risen. "I really wouldn't miss your case for the world. It is most refreshingly unusual. But there is, if you will excuse my saying so, something just a little funny about it. Pray what steps did you take when you found the card upon the door?" "I was staggered, sir. I did not know what to do. Then I called at the offices round, but none of them seemed to know anything about it. Finally, I went to the landlord, who is an accountant living on the ground-floor, and I asked him if he could tell me what had become of the Red-headed League. He said that he had never heard of any such body. Then I asked him who Mr. Duncan Ross was. He answered that the name was new to him. "'Well,' said I, 'the gentleman at No. 4.' "'What, the red-headed man?' "'Yes.' "'Oh,' said he, 'his name was William Morris. He was a solicitor and was using my room as a temporary convenience until his new premises were ready. He moved out yesterday.' "'Where could I find him?' "'Oh, at his new offices. He did tell me the address. Yes, 17 King Edward Street, near St. Paul's.' "I started off, Mr. Holmes, but when I got to that address it was a manufactory of artificial knee-caps, and no one in it had ever heard of either Mr. William Morris or Mr. Duncan Ross." "And what did you do then?" asked Holmes. "I went home to Saxe-Coburg Square, and I took the advice of my assistant. But he could not help me in any way. He could only say that if I waited I should hear by post. But that was not quite good enough, Mr. Holmes. I did not wish to lose such a place without a struggle, so, as I had heard that you were good enough to give advice to poor folk who were in need of it, I came right away to you." "And you did very wisely," said Holmes. "Your case is an exceedingly remarkable one, and I shall be happy to look into it. From what you have told me I think that it is possible that graver issues hang from it than might at first sight appear." "Grave enough!" said Mr. Jabez Wilson. "Why, I have lost four pound a week." "As far as you are personally concerned," remarked Holmes, "I do not see that you have any grievance against this extraordinary league. On the contrary, you are, as I understand, richer by some 30 pounds, to say nothing of the minute knowledge which you have gained on every subject which comes under the letter A. You have lost nothing by them." "No, sir. But I want to find out about them, and who they are, and what their object was in playing this prank--if it was a prank--upon me. It was a pretty expensive joke for them, for it cost them two and thirty pounds." "We shall endeavour to clear up these points for you. And, first, one or two questions, Mr. Wilson. This assistant of yours who first called your attention to the advertisement--how long had he been with you?" "About a month then." "How did he come?" "In answer to an advertisement." "Was he the only applicant?" "No, I had a dozen." "Why did you pick him?" "Because he was handy and would come cheap." "At half-wages, in fact." "Yes." "What is he like, this Vincent Spaulding?" "Small, stout-built, very quick in his ways, no hair on his face, though he's not short of thirty. Has a white splash of acid upon his forehead." Holmes sat up in his chair in considerable excitement. "I thought as much," said he. "Have you ever observed that his ears are pierced for earrings?" "Yes, sir. He told me that a gipsy had done it for him when he was a lad." "Hum!" said Holmes, sinking back in deep thought. "He is still with you?" "Oh, yes, sir; I have only just left him." "And has your business been attended to in your absence?" "Nothing to complain of, sir. There's never very much to do of a morning." "That will do, Mr. Wilson. I shall be happy to give you an opinion upon the subject in the course of a day or two. To-day is Saturday, and I hope that by Monday we may come to a conclusion." "Well, Watson," said Holmes when our visitor had left us, "what do you make of it all?" "I make nothing of it," I answered frankly. "It is a most mysterious business." "As a rule," said Holmes, "the more bizarre a thing is the less mysterious it proves to be. It is your commonplace, featureless crimes which are really puzzling, just as a commonplace face is the most difficult to identify. But I must be prompt over this matter." "What are you going to do, then?" I asked. "To smoke," he answered. "It is quite a three pipe problem, and I beg that you won't speak to me for fifty minutes." He curled himself up in his chair, with his thin knees drawn up to his hawk-like nose, and there he sat with his eyes closed and his black clay pipe thrusting out like the bill of some strange bird. I had come to the conclusion that he had dropped asleep, and indeed was nodding myself, when he suddenly sprang out of his chair with the gesture of a man who has made up his mind and put his pipe down upon the mantelpiece. "Sarasate plays at the St. James's Hall this afternoon," he remarked. "What do you think, Watson? Could your patients spare you for a few hours?" "I have nothing to do to-day. My practice is never very absorbing." "Then put on your hat and come. I am going through the City first, and we can have some lunch on the way. I observe that there is a good deal of German music on the programme, which is rather more to my taste than Italian or French. It is introspective, and I want to introspect. Come along!" We travelled by the Underground as far as Aldersgate; and a short walk took us to Saxe-Coburg Square, the scene of the singular story which we had listened to in the morning. It was a poky, little, shabby-genteel place, where four lines of dingy two-storied brick houses looked out into a small railed-in enclosure, where a lawn of weedy grass and a few clumps of faded laurel-bushes made a hard fight against a smoke-laden and uncongenial atmosphere. Three gilt balls and a brown board with "JABEZ WILSON" in white letters, upon a corner house, announced the place where our red-headed client carried on his business. Sherlock Holmes stopped in front of it with his head on one side and looked it all over, with his eyes shining brightly between puckered lids. Then he walked slowly up the street, and then down again to the corner, still looking keenly at the houses. Finally he returned to the pawnbroker's, and, having thumped vigorously upon the pavement with his stick two or three times, he went up to the door and knocked. It was instantly opened by a bright-looking, clean-shaven young fellow, who asked him to step in. "Thank you," said Holmes, "I only wished to ask you how you would go from here to the Strand." "Third right, fourth left," answered the assistant promptly, closing the door. "Smart fellow, that," observed Holmes as we walked away. "He is, in my judgment, the fourth smartest man in London, and for daring I am not sure that he has not a claim to be third. I have known something of him before." "Evidently," said I, "Mr. Wilson's assistant counts for a good deal in this mystery of the Red-headed League. I am sure that you inquired your way merely in order that you might see him." "Not him." "What then?" "The knees of his trousers." "And what did you see?" "What I expected to see." "Why did you beat the pavement?" "My dear doctor, this is a time for observation, not for talk. We are spies in an enemy's country. We know something of Saxe-Coburg Square. Let us now explore the parts which lie behind it." The road in which we found ourselves as we turned round the corner from the retired Saxe-Coburg Square presented as great a contrast to it as the front of a picture does to the back. It was one of the main arteries which conveyed the traffic of the City to the north and west. The roadway was blocked with the immense stream of commerce flowing in a double tide inward and outward, while the footpaths were black with the hurrying swarm of pedestrians. It was difficult to realise as we looked at the line of fine shops and stately business premises that they really abutted on the other side upon the faded and stagnant square which we had just quitted. "Let me see," said Holmes, standing at the corner and glancing along the line, "I should like just to remember the order of the houses here. It is a hobby of mine to have an exact knowledge of London. There is Mortimer's, the tobacconist, the little newspaper shop, the Coburg branch of the City and Suburban Bank, the Vegetarian Restaurant, and McFarlane's carriage-building depot. That carries us right on to the other block. And now, Doctor, we've done our work, so it's time we had some play. A sandwich and a cup of coffee, and then off to violin-land, where all is sweetness and delicacy and harmony, and there are no red-headed clients to vex us with their conundrums." My friend was an enthusiastic musician, being himself not only a very capable performer but a composer of no ordinary merit. All the afternoon he sat in the stalls wrapped in the most perfect happiness, gently waving his long, thin fingers in time to the music, while his gently smiling face and his languid, dreamy eyes were as unlike those of Holmes the sleuth-hound, Holmes the relentless, keen-witted, ready-handed criminal agent, as it was possible to conceive. In his singular character the dual nature alternately asserted itself, and his extreme exactness and astuteness represented, as I have often thought, the reaction against the poetic and contemplative mood which occasionally predominated in him. The swing of his nature took him from extreme languor to devouring energy; and, as I knew well, he was never so truly formidable as when, for days on end, he had been lounging in his armchair amid his improvisations and his black-letter editions. Then it was that the lust of the chase would suddenly come upon him, and that his brilliant reasoning power would rise to the level of intuition, until those who were unacquainted with his methods would look askance at him as on a man whose knowledge was not that of other mortals. When I saw him that afternoon so enwrapped in the music at St. James's Hall I felt that an evil time might be coming upon those whom he had set himself to hunt down. "You want to go home, no doubt, Doctor," he remarked as we emerged. "Yes, it would be as well." "And I have some business to do which will take some hours. This business at Coburg Square is serious." "Why serious?" "A considerable crime is in contemplation. I have every reason to believe that we shall be in time to stop it. But to-day being Saturday rather complicates matters. I shall want your help to-night." "At what time?" "Ten will be early enough." "I shall be at Baker Street at ten." "Very well. And, I say, Doctor, there may be some little danger, so kindly put your army revolver in your pocket." He waved his hand, turned on his heel, and disappeared in an instant among the crowd. I trust that I am not more dense than my neighbours, but I was always oppressed with a sense of my own stupidity in my dealings with Sherlock Holmes. Here I had heard what he had heard, I had seen what he had seen, and yet from his words it was evident that he saw clearly not only what had happened but what was about to happen, while to me the whole business was still confused and grotesque. As I drove home to my house in Kensington I thought over it all, from the extraordinary story of the red-headed copier of the "Encyclopaedia" down to the visit to Saxe-Coburg Square, and the ominous words with which he had parted from me. What was this nocturnal expedition, and why should I go armed? Where were we going, and what were we to do? I had the hint from Holmes that this smooth-faced pawnbroker's assistant was a formidable man--a man who might play a deep game. I tried to puzzle it out, but gave it up in despair and set the matter aside until night should bring an explanation. It was a quarter-past nine when I started from home and made my way across the Park, and so through Oxford Street to Baker Street. Two hansoms were standing at the door, and as I entered the passage I heard the sound of voices from above. On entering his room I found Holmes in animated conversation with two men, one of whom I recognised as Peter Jones, the official police agent, while the other was a long, thin, sad-faced man, with a very shiny hat and oppressively respectable frock-coat. "Ha! Our party is complete," said Holmes, buttoning up his pea-jacket and taking his heavy hunting crop from the rack. "Watson, I think you know Mr. Jones, of Scotland Yard? Let me introduce you to Mr. Merryweather, who is to be our companion in to-night's adventure." "We're hunting in couples again, Doctor, you see," said Jones in his consequential way. "Our friend here is a wonderful man for starting a chase. All he wants is an old dog to help him to do the running down." "I hope a wild goose may not prove to be the end of our chase," observed Mr. Merryweather gloomily. "You may place considerable confidence in Mr. Holmes, sir," said the police agent loftily. "He has his own little methods, which are, if he won't mind my saying so, just a little too theoretical and fantastic, but he has the makings of a detective in him. It is not too much to say that once or twice, as in that business of the Sholto murder and the Agra treasure, he has been more nearly correct than the official force." "Oh, if you say so, Mr. Jones, it is all right," said the stranger with deference. "Still, I confess that I miss my rubber. It is the first Saturday night for seven-and-twenty years that I have not had my rubber." "I think you will find," said Sherlock Holmes, "that you will play for a higher stake to-night than you have ever done yet, and that the play will be more exciting. For you, Mr. Merryweather, the stake will be some 30,000 pounds; and for you, Jones, it will be the man upon whom you wish to lay your hands." "John Clay, the murderer, thief, smasher, and forger. He's a young man, Mr. Merryweather, but he is at the head of his profession, and I would rather have my bracelets on him than on any criminal in London. He's a remarkable man, is young John Clay. His grandfather was a royal duke, and he himself has been to Eton and Oxford. His brain is as cunning as his fingers, and though we meet signs of him at every turn, we never know where to find the man himself. He'll crack a crib in Scotland one week, and be raising money to build an orphanage in Cornwall the next. I've been on his track for years and have never set eyes on him yet." "I hope that I may have the pleasure of introducing you to-night. I've had one or two little turns also with Mr. John Clay, and I agree with you that he is at the head of his profession. It is past ten, however, and quite time that we started. If you two will take the first hansom, Watson and I will follow in the second." Sherlock Holmes was not very communicative during the long drive and lay back in the cab humming the tunes which he had heard in the afternoon. We rattled through an endless labyrinth of gas-lit streets until we emerged into Farrington Street. "We are close there now," my friend remarked. "This fellow Merryweather is a bank director, and personally interested in the matter. I thought it as well to have Jones with us also. He is not a bad fellow, though an absolute imbecile in his profession. He has one positive virtue. He is as brave as a bulldog and as tenacious as a lobster if he gets his claws upon anyone. Here we are, and they are waiting for us." We had reached the same crowded thoroughfare in which we had found ourselves in the morning. Our cabs were dismissed, and, following the guidance of Mr. Merryweather, we passed down a narrow passage and through a side door, which he opened for us. Within there was a small corridor, which ended in a very massive iron gate. This also was opened, and led down a flight of winding stone steps, which terminated at another formidable gate. Mr. Merryweather stopped to light a lantern, and then conducted us down a dark, earth-smelling passage, and so, after opening a third door, into a huge vault or cellar, which was piled all round with crates and massive boxes. "You are not very vulnerable from above," Holmes remarked as he held up the lantern and gazed about him. "Nor from below," said Mr. Merryweather, striking his stick upon the flags which lined the floor. "Why, dear me, it sounds quite hollow!" he remarked, looking up in surprise. "I must really ask you to be a little more quiet!" said Holmes severely. "You have already imperilled the whole success of our expedition. Might I beg that you would have the goodness to sit down upon one of those boxes, and not to interfere?" The solemn Mr. Merryweather perched himself upon a crate, with a very injured expression upon his face, while Holmes fell upon his knees upon the floor and, with the lantern and a magnifying lens, began to examine minutely the cracks between the stones. A few seconds sufficed to satisfy him, for he sprang to his feet again and put his glass in his pocket. "We have at least an hour before us," he remarked, "for they can hardly take any steps until the good pawnbroker is safely in bed. Then they will not lose a minute, for the sooner they do their work the longer time they will have for their escape. We are at present, Doctor--as no doubt you have divined--in the cellar of the City branch of one of the principal London banks. Mr. Merryweather is the chairman of directors, and he will explain to you that there are reasons why the more daring criminals of London should take a considerable interest in this cellar at present." "It is our French gold," whispered the director. "We have had several warnings that an attempt might be made upon it." "Your French gold?" "Yes. We had occasion some months ago to strengthen our resources and borrowed for that purpose 30,000 napoleons from the Bank of France. It has become known that we have never had occasion to unpack the money, and that it is still lying in our cellar. The crate upon which I sit contains 2,000 napoleons packed between layers of lead foil. Our reserve of bullion is much larger at present than is usually kept in a single branch office, and the directors have had misgivings upon the subject." "Which were very well justified," observed Holmes. "And now it is time that we arranged our little plans. I expect that within an hour matters will come to a head. In the meantime Mr. Merryweather, we must put the screen over that dark lantern." "And sit in the dark?" "I am afraid so. I had brought a pack of cards in my pocket, and I thought that, as we were a partie carrée, you might have your rubber after all. But I see that the enemy's preparations have gone so far that we cannot risk the presence of a light. And, first of all, we must choose our positions. These are daring men, and though we shall take them at a disadvantage, they may do us some harm unless we are careful. I shall stand behind this crate, and do you conceal yourselves behind those. Then, when I flash a light upon them, close in swiftly. If they fire, Watson, have no compunction about shooting them down." I placed my revolver, cocked, upon the top of the wooden case behind which I crouched. Holmes shot the slide across the front of his lantern and left us in pitch darkness--such an absolute darkness as I have never before experienced. The smell of hot metal remained to assure us that the light was still there, ready to flash out at a moment's notice. To me, with my nerves worked up to a pitch of expectancy, there was something depressing and subduing in the sudden gloom, and in the cold dank air of the vault. "They have but one retreat," whispered Holmes. "That is back through the house into Saxe-Coburg Square. I hope that you have done what I asked you, Jones?" "I have an inspector and two officers waiting at the front door." "Then we have stopped all the holes. And now we must be silent and wait." What a time it seemed! From comparing notes afterwards it was but an hour and a quarter, yet it appeared to me that the night must have almost gone and the dawn be breaking above us. My limbs were weary and stiff, for I feared to change my position; yet my nerves were worked up to the highest pitch of tension, and my hearing was so acute that I could not only hear the gentle breathing of my companions, but I could distinguish the deeper, heavier in-breath of the bulky Jones from the thin, sighing note of the bank director. From my position I could look over the case in the direction of the floor. Suddenly my eyes caught the glint of a light. At first it was but a lurid spark upon the stone pavement. Then it lengthened out until it became a yellow line, and then, without any warning or sound, a gash seemed to open and a hand appeared, a white, almost womanly hand, which felt about in the centre of the little area of light. For a minute or more the hand, with its writhing fingers, protruded out of the floor. Then it was withdrawn as suddenly as it appeared, and all was dark again save the single lurid spark which marked a chink between the stones. Its disappearance, however, was but momentary. With a rending, tearing sound, one of the broad, white stones turned over upon its side and left a square, gaping hole, through which streamed the light of a lantern. Over the edge there peeped a clean-cut, boyish face, which looked keenly about it, and then, with a hand on either side of the aperture, drew itself shoulder-high and waist-high, until one knee rested upon the edge. In another instant he stood at the side of the hole and was hauling after him a companion, lithe and small like himself, with a pale face and a shock of very red hair. "It's all clear," he whispered. "Have you the chisel and the bags? Great Scott! Jump, Archie, jump, and I'll swing for it!" Sherlock Holmes had sprung out and seized the intruder by the collar. The other dived down the hole, and I heard the sound of rending cloth as Jones clutched at his skirts. The light flashed upon the barrel of a revolver, but Holmes' hunting crop came down on the man's wrist, and the pistol clinked upon the stone floor. "It's no use, John Clay," said Holmes blandly. "You have no chance at all." "So I see," the other answered with the utmost coolness. "I fancy that my pal is all right, though I see you have got his coat-tails." "There are three men waiting for him at the door," said Holmes. "Oh, indeed! You seem to have done the thing very completely. I must compliment you." "And I you," Holmes answered. "Your red-headed idea was very new and effective." "You'll see your pal again presently," said Jones. "He's quicker at climbing down holes than I am. Just hold out while I fix the derbies." "I beg that you will not touch me with your filthy hands," remarked our prisoner as the handcuffs clattered upon his wrists. "You may not be aware that I have royal blood in my veins. Have the goodness, also, when you address me always to say 'sir' and 'please.'" "All right," said Jones with a stare and a snigger. "Well, would you please, sir, march upstairs, where we can get a cab to carry your Highness to the police-station?" "That is better," said John Clay serenely. He made a sweeping bow to the three of us and walked quietly off in the custody of the detective. "Really, Mr. Holmes," said Mr. Merryweather as we followed them from the cellar, "I do not know how the bank can thank you or repay you. There is no doubt that you have detected and defeated in the most complete manner one of the most determined attempts at bank robbery that have ever come within my experience." "I have had one or two little scores of my own to settle with Mr. John Clay," said Holmes. "I have been at some small expense over this matter, which I shall expect the bank to refund, but beyond that I am amply repaid by having had an experience which is in many ways unique, and by hearing the very remarkable narrative of the Red-headed League." "You see, Watson," he explained in the early hours of the morning as we sat over a glass of whisky and soda in Baker Street, "it was perfectly obvious from the first that the only possible object of this rather fantastic business of the advertisement of the League, and the copying of the 'Encyclopaedia,' must be to get this not over-bright pawnbroker out of the way for a number of hours every day. It was a curious way of managing it, but, really, it would be difficult to suggest a better. The method was no doubt suggested to Clay's ingenious mind by the colour of his accomplice's hair. The 4 pounds a week was a lure which must draw him, and what was it to them, who were playing for thousands? They put in the advertisement, one rogue has the temporary office, the other rogue incites the man to apply for it, and together they manage to secure his absence every morning in the week. From the time that I heard of the assistant having come for half wages, it was obvious to me that he had some strong motive for securing the situation." "But how could you guess what the motive was?" "Had there been women in the house, I should have suspected a mere vulgar intrigue. That, however, was out of the question. The man's business was a small one, and there was nothing in his house which could account for such elaborate preparations, and such an expenditure as they were at. It must, then, be something out of the house. What could it be? I thought of the assistant's fondness for photography, and his trick of vanishing into the cellar. The cellar! There was the end of this tangled clue. Then I made inquiries as to this mysterious assistant and found that I had to deal with one of the coolest and most daring criminals in London. He was doing something in the cellar--something which took many hours a day for months on end. What could it be, once more? I could think of nothing save that he was running a tunnel to some other building. "So far I had got when we went to visit the scene of action. I surprised you by beating upon the pavement with my stick. I was ascertaining whether the cellar stretched out in front or behind. It was not in front. Then I rang the bell, and, as I hoped, the assistant answered it. We have had some skirmishes, but we had never set eyes upon each other before. I hardly looked at his face. His knees were what I wished to see. You must yourself have remarked how worn, wrinkled, and stained they were. They spoke of those hours of burrowing. The only remaining point was what they were burrowing for. I walked round the corner, saw the City and Suburban Bank abutted on our friend's premises, and felt that I had solved my problem. When you drove home after the concert I called upon Scotland Yard and upon the chairman of the bank directors, with the result that you have seen." "And how could you tell that they would make their attempt to-night?" I asked. "Well, when they closed their League offices that was a sign that they cared no longer about Mr. Jabez Wilson's presence--in other words, that they had completed their tunnel. But it was essential that they should use it soon, as it might be discovered, or the bullion might be removed. Saturday would suit them better than any other day, as it would give them two days for their escape. For all these reasons I expected them to come to-night." "You reasoned it out beautifully," I exclaimed in unfeigned admiration. "It is so long a chain, and yet every link rings true." "It saved me from ennui," he answered, yawning. "Alas! I already feel it closing in upon me. My life is spent in one long effort to escape from the commonplaces of existence. These little problems help me to do so." "And you are a benefactor of the race," said I. He shrugged his shoulders. "Well, perhaps, after all, it is of some little use," he remarked. "'L'homme c'est rien--l'oeuvre c'est tout,' as Gustave Flaubert wrote to George Sand." ADVENTURE III. A CASE OF IDENTITY "My dear fellow," said Sherlock Holmes as we sat on either side of the fire in his lodgings at Baker Street, "life is infinitely stranger than anything which the mind of man could invent. We would not dare to conceive the things which are really mere commonplaces of existence. If we could fly out of that window hand in hand, hover over this great city, gently remove the roofs, and peep in at the queer things which are going on, the strange coincidences, the plannings, the cross-purposes, the wonderful chains of events, working through generations, and leading to the most outré results, it would make all fiction with its conventionalities and foreseen conclusions most stale and unprofitable." "And yet I am not convinced of it," I answered. "The cases which come to light in the papers are, as a rule, bald enough, and vulgar enough. We have in our police reports realism pushed to its extreme limits, and yet the result is, it must be confessed, neither fascinating nor artistic." "A certain selection and discretion must be used in producing a realistic effect," remarked Holmes. "This is wanting in the police report, where more stress is laid, perhaps, upon the platitudes of the magistrate than upon the details, which to an observer contain the vital essence of the whole matter. Depend upon it, there is nothing so unnatural as the commonplace." I smiled and shook my head. "I can quite understand your thinking so," I said. "Of course, in your position of unofficial adviser and helper to everybody who is absolutely puzzled, throughout three continents, you are brought in contact with all that is strange and bizarre. But here"--I picked up the morning paper from the ground--"let us put it to a practical test. Here is the first heading upon which I come. 'A husband's cruelty to his wife.' There is half a column of print, but I know without reading it that it is all perfectly familiar to me. There is, of course, the other woman, the drink, the push, the blow, the bruise, the sympathetic sister or landlady. The crudest of writers could invent nothing more crude." "Indeed, your example is an unfortunate one for your argument," said Holmes, taking the paper and glancing his eye down it. "This is the Dundas separation case, and, as it happens, I was engaged in clearing up some small points in connection with it. The husband was a teetotaler, there was no other woman, and the conduct complained of was that he had drifted into the habit of winding up every meal by taking out his false teeth and hurling them at his wife, which, you will allow, is not an action likely to occur to the imagination of the average story-teller. Take a pinch of snuff, Doctor, and acknowledge that I have scored over you in your example." He held out his snuffbox of old gold, with a great amethyst in the centre of the lid. Its splendour was in such contrast to his homely ways and simple life that I could not help commenting upon it. "Ah," said he, "I forgot that I had not seen you for some weeks. It is a little souvenir from the King of Bohemia in return for my assistance in the case of the Irene Adler papers." "And the ring?" I asked, glancing at a remarkable brilliant which sparkled upon his finger. "It was from the reigning family of Holland, though the matter in which I served them was of such delicacy that I cannot confide it even to you, who have been good enough to chronicle one or two of my little problems." "And have you any on hand just now?" I asked with interest. "Some ten or twelve, but none which present any feature of interest. They are important, you understand, without being interesting. Indeed, I have found that it is usually in unimportant matters that there is a field for the observation, and for the quick analysis of cause and effect which gives the charm to an investigation. The larger crimes are apt to be the simpler, for the bigger the crime the more obvious, as a rule, is the motive. In these cases, save for one rather intricate matter which has been referred to me from Marseilles, there is nothing which presents any features of interest. It is possible, however, that I may have something better before very many minutes are over, for this is one of my clients, or I am much mistaken." He had risen from his chair and was standing between the parted blinds gazing down into the dull neutral-tinted London street. Looking over his shoulder, I saw that on the pavement opposite there stood a large woman with a heavy fur boa round her neck, and a large curling red feather in a broad-brimmed hat which was tilted in a coquettish Duchess of Devonshire fashion over her ear. From under this great panoply she peeped up in a nervous, hesitating fashion at our windows, while her body oscillated backward and forward, and her fingers fidgeted with her glove buttons. Suddenly, with a plunge, as of the swimmer who leaves the bank, she hurried across the road, and we heard the sharp clang of the bell. "I have seen those symptoms before," said Holmes, throwing his cigarette into the fire. "Oscillation upon the pavement always means an affaire de coeur. She would like advice, but is not sure that the matter is not too delicate for communication. And yet even here we may discriminate. When a woman has been seriously wronged by a man she no longer oscillates, and the usual symptom is a broken bell wire. Here we may take it that there is a love matter, but that the maiden is not so much angry as perplexed, or grieved. But here she comes in person to resolve our doubts." As he spoke there was a tap at the door, and the boy in buttons entered to announce Miss Mary Sutherland, while the lady herself loomed behind his small black figure like a full-sailed merchant-man behind a tiny pilot boat. Sherlock Holmes welcomed her with the easy courtesy for which he was remarkable, and, having closed the door and bowed her into an armchair, he looked her over in the minute and yet abstracted fashion which was peculiar to him. "Do you not find," he said, "that with your short sight it is a little trying to do so much typewriting?" "I did at first," she answered, "but now I know where the letters are without looking." Then, suddenly realising the full purport of his words, she gave a violent start and looked up, with fear and astonishment upon her broad, good-humoured face. "You've heard about me, Mr. Holmes," she cried, "else how could you know all that?" "Never mind," said Holmes, laughing; "it is my business to know things. Perhaps I have trained myself to see what others overlook. If not, why should you come to consult me?" "I came to you, sir, because I heard of you from Mrs. Etherege, whose husband you found so easy when the police and everyone had given him up for dead. Oh, Mr. Holmes, I wish you would do as much for me. I'm not rich, but still I have a hundred a year in my own right, besides the little that I make by the machine, and I would give it all to know what has become of Mr. Hosmer Angel." "Why did you come away to consult me in such a hurry?" asked Sherlock Holmes, with his finger-tips together and his eyes to the ceiling. Again a startled look came over the somewhat vacuous face of Miss Mary Sutherland. "Yes, I did bang out of the house," she said, "for it made me angry to see the easy way in which Mr. Windibank--that is, my father--took it all. He would not go to the police, and he would not go to you, and so at last, as he would do nothing and kept on saying that there was no harm done, it made me mad, and I just on with my things and came right away to you." "Your father," said Holmes, "your stepfather, surely, since the name is different." "Yes, my stepfather. I call him father, though it sounds funny, too, for he is only five years and two months older than myself." "And your mother is alive?" "Oh, yes, mother is alive and well. I wasn't best pleased, Mr. Holmes, when she married again so soon after father's death, and a man who was nearly fifteen years younger than herself. Father was a plumber in the Tottenham Court Road, and he left a tidy business behind him, which mother carried on with Mr. Hardy, the foreman; but when Mr. Windibank came he made her sell the business, for he was very superior, being a traveller in wines. They got 4700 pounds for the goodwill and interest, which wasn't near as much as father could have got if he had been alive." I had expected to see Sherlock Holmes impatient under this rambling and inconsequential narrative, but, on the contrary, he had listened with the greatest concentration of attention. "Your own little income," he asked, "does it come out of the business?" "Oh, no, sir. It is quite separate and was left me by my uncle Ned in Auckland. It is in New Zealand stock, paying 4 1/2 per cent. Two thousand five hundred pounds was the amount, but I can only touch the interest." "You interest me extremely," said Holmes. "And since you draw so large a sum as a hundred a year, with what you earn into the bargain, you no doubt travel a little and indulge yourself in every way. I believe that a single lady can get on very nicely upon an income of about 60 pounds." "I could do with much less than that, Mr. Holmes, but you understand that as long as I live at home I don't wish to be a burden to them, and so they have the use of the money just while I am staying with them. Of course, that is only just for the time. Mr. Windibank draws my interest every quarter and pays it over to mother, and I find that I can do pretty well with what I earn at typewriting. It brings me twopence a sheet, and I can often do from fifteen to twenty sheets in a day." "You have made your position very clear to me," said Holmes. "This is my friend, Dr. Watson, before whom you can speak as freely as before myself. Kindly tell us now all about your connection with Mr. Hosmer Angel." A flush stole over Miss Sutherland's face, and she picked nervously at the fringe of her jacket. "I met him first at the gasfitters' ball," she said. "They used to send father tickets when he was alive, and then afterwards they remembered us, and sent them to mother. Mr. Windibank did not wish us to go. He never did wish us to go anywhere. He would get quite mad if I wanted so much as to join a Sunday-school treat. But this time I was set on going, and I would go; for what right had he to prevent? He said the folk were not fit for us to know, when all father's friends were to be there. And he said that I had nothing fit to wear, when I had my purple plush that I had never so much as taken out of the drawer. At last, when nothing else would do, he went off to France upon the business of the firm, but we went, mother and I, with Mr. Hardy, who used to be our foreman, and it was there I met Mr. Hosmer Angel." "I suppose," said Holmes, "that when Mr. Windibank came back from France he was very annoyed at your having gone to the ball." "Oh, well, he was very good about it. He laughed, I remember, and shrugged his shoulders, and said there was no use denying anything to a woman, for she would have her way." "I see. Then at the gasfitters' ball you met, as I understand, a gentleman called Mr. Hosmer Angel." "Yes, sir. I met him that night, and he called next day to ask if we had got home all safe, and after that we met him--that is to say, Mr. Holmes, I met him twice for walks, but after that father came back again, and Mr. Hosmer Angel could not come to the house any more." "No?" "Well, you know father didn't like anything of the sort. He wouldn't have any visitors if he could help it, and he used to say that a woman should be happy in her own family circle. But then, as I used to say to mother, a woman wants her own circle to begin with, and I had not got mine yet." "But how about Mr. Hosmer Angel? Did he make no attempt to see you?" "Well, father was going off to France again in a week, and Hosmer wrote and said that it would be safer and better not to see each other until he had gone. We could write in the meantime, and he used to write every day. I took the letters in in the morning, so there was no need for father to know." "Were you engaged to the gentleman at this time?" "Oh, yes, Mr. Holmes. We were engaged after the first walk that we took. Hosmer--Mr. Angel--was a cashier in an office in Leadenhall Street--and--" "What office?" "That's the worst of it, Mr. Holmes, I don't know." "Where did he live, then?" "He slept on the premises." "And you don't know his address?" "No--except that it was Leadenhall Street." "Where did you address your letters, then?" "To the Leadenhall Street Post Office, to be left till called for. He said that if they were sent to the office he would be chaffed by all the other clerks about having letters from a lady, so I offered to typewrite them, like he did his, but he wouldn't have that, for he said that when I wrote them they seemed to come from me, but when they were typewritten he always felt that the machine had come between us. That will just show you how fond he was of me, Mr. Holmes, and the little things that he would think of." "It was most suggestive," said Holmes. "It has long been an axiom of mine that the little things are infinitely the most important. Can you remember any other little things about Mr. Hosmer Angel?" "He was a very shy man, Mr. Holmes. He would rather walk with me in the evening than in the daylight, for he said that he hated to be conspicuous. Very retiring and gentlemanly he was. Even his voice was gentle. He'd had the quinsy and swollen glands when he was young, he told me, and it had left him with a weak throat, and a hesitating, whispering fashion of speech. He was always well dressed, very neat and plain, but his eyes were weak, just as mine are, and he wore tinted glasses against the glare." "Well, and what happened when Mr. Windibank, your stepfather, returned to France?" "Mr. Hosmer Angel came to the house again and proposed that we should marry before father came back. He was in dreadful earnest and made me swear, with my hands on the Testament, that whatever happened I would always be true to him. Mother said he was quite right to make me swear, and that it was a sign of his passion. Mother was all in his favour from the first and was even fonder of him than I was. Then, when they talked of marrying within the week, I began to ask about father; but they both said never to mind about father, but just to tell him afterwards, and mother said she would make it all right with him. I didn't quite like that, Mr. Holmes. It seemed funny that I should ask his leave, as he was only a few years older than me; but I didn't want to do anything on the sly, so I wrote to father at Bordeaux, where the company has its French offices, but the letter came back to me on the very morning of the wedding." "It missed him, then?" "Yes, sir; for he had started to England just before it arrived." "Ha! that was unfortunate. Your wedding was arranged, then, for the Friday. Was it to be in church?" "Yes, sir, but very quietly. It was to be at St. Saviour's, near King's Cross, and we were to have breakfast afterwards at the St. Pancras Hotel. Hosmer came for us in a hansom, but as there were two of us he put us both into it and stepped himself into a four-wheeler, which happened to be the only other cab in the street. We got to the church first, and when the four-wheeler drove up we waited for him to step out, but he never did, and when the cabman got down from the box and looked there was no one there! The cabman said that he could not imagine what had become of him, for he had seen him get in with his own eyes. That was last Friday, Mr. Holmes, and I have never seen or heard anything since then to throw any light upon what became of him." "It seems to me that you have been very shamefully treated," said Holmes. "Oh, no, sir! He was too good and kind to leave me so. Why, all the morning he was saying to me that, whatever happened, I was to be true; and that even if something quite unforeseen occurred to separate us, I was always to remember that I was pledged to him, and that he would claim his pledge sooner or later. It seemed strange talk for a wedding-morning, but what has happened since gives a meaning to it." "Most certainly it does. Your own opinion is, then, that some unforeseen catastrophe has occurred to him?" "Yes, sir. I believe that he foresaw some danger, or else he would not have talked so. And then I think that what he foresaw happened." "But you have no notion as to what it could have been?" "None." "One more question. How did your mother take the matter?" "She was angry, and said that I was never to speak of the matter again." "And your father? Did you tell him?" "Yes; and he seemed to think, with me, that something had happened, and that I should hear of Hosmer again. As he said, what interest could anyone have in bringing me to the doors of the church, and then leaving me? Now, if he had borrowed my money, or if he had married me and got my money settled on him, there might be some reason, but Hosmer was very independent about money and never would look at a shilling of mine. And yet, what could have happened? And why could he not write? Oh, it drives me half-mad to think of it, and I can't sleep a wink at night." She pulled a little handkerchief out of her muff and began to sob heavily into it. "I shall glance into the case for you," said Holmes, rising, "and I have no doubt that we shall reach some definite result. Let the weight of the matter rest upon me now, and do not let your mind dwell upon it further. Above all, try to let Mr. Hosmer Angel vanish from your memory, as he has done from your life." "Then you don't think I'll see him again?" "I fear not." "Then what has happened to him?" "You will leave that question in my hands. I should like an accurate description of him and any letters of his which you can spare." "I advertised for him in last Saturday's Chronicle," said she. "Here is the slip and here are four letters from him." "Thank you. And your address?" "No. 31 Lyon Place, Camberwell." "Mr. Angel's address you never had, I understand. Where is your father's place of business?" "He travels for Westhouse & Marbank, the great claret importers of Fenchurch Street." "Thank you. You have made your statement very clearly. You will leave the papers here, and remember the advice which I have given you. Let the whole incident be a sealed book, and do not allow it to affect your life." "You are very kind, Mr. Holmes, but I cannot do that. I shall be true to Hosmer. He shall find me ready when he comes back." For all the preposterous hat and the vacuous face, there was something noble in the simple faith of our visitor which compelled our respect. She laid her little bundle of papers upon the table and went her way, with a promise to come again whenever she might be summoned. Sherlock Holmes sat silent for a few minutes with his fingertips still pressed together, his legs stretched out in front of him, and his gaze directed upward to the ceiling. Then he took down from the rack the old and oily clay pipe, which was to him as a counsellor, and, having lit it, he leaned back in his chair, with the thick blue cloud-wreaths spinning up from him, and a look of infinite languor in his face. "Quite an interesting study, that maiden," he observed. "I found her more interesting than her little problem, which, by the way, is rather a trite one. You will find parallel cases, if you consult my index, in Andover in '77, and there was something of the sort at The Hague last year. Old as is the idea, however, there were one or two details which were new to me. But the maiden herself was most instructive." "You appeared to read a good deal upon her which was quite invisible to me," I remarked. "Not invisible but unnoticed, Watson. You did not know where to look, and so you missed all that was important. I can never bring you to realise the importance of sleeves, the suggestiveness of thumb-nails, or the great issues that may hang from a boot-lace. Now, what did you gather from that woman's appearance? Describe it." "Well, she had a slate-coloured, broad-brimmed straw hat, with a feather of a brickish red. Her jacket was black, with black beads sewn upon it, and a fringe of little black jet ornaments. Her dress was brown, rather darker than coffee colour, with a little purple plush at the neck and sleeves. Her gloves were greyish and were worn through at the right forefinger. Her boots I didn't observe. She had small round, hanging gold earrings, and a general air of being fairly well-to-do in a vulgar, comfortable, easy-going way." Sherlock Holmes clapped his hands softly together and chuckled. "'Pon my word, Watson, you are coming along wonderfully. You have really done very well indeed. It is true that you have missed everything of importance, but you have hit upon the method, and you have a quick eye for colour. Never trust to general impressions, my boy, but concentrate yourself upon details. My first glance is always at a woman's sleeve. In a man it is perhaps better first to take the knee of the trouser. As you observe, this woman had plush upon her sleeves, which is a most useful material for showing traces. The double line a little above the wrist, where the typewritist presses against the table, was beautifully defined. The sewing-machine, of the hand type, leaves a similar mark, but only on the left arm, and on the side of it farthest from the thumb, instead of being right across the broadest part, as this was. I then glanced at her face, and, observing the dint of a pince-nez at either side of her nose, I ventured a remark upon short sight and typewriting, which seemed to surprise her." "It surprised me." "But, surely, it was obvious. I was then much surprised and interested on glancing down to observe that, though the boots which she was wearing were not unlike each other, they were really odd ones; the one having a slightly decorated toe-cap, and the other a plain one. One was buttoned only in the two lower buttons out of five, and the other at the first, third, and fifth. Now, when you see that a young lady, otherwise neatly dressed, has come away from home with odd boots, half-buttoned, it is no great deduction to say that she came away in a hurry." "And what else?" I asked, keenly interested, as I always was, by my friend's incisive reasoning. "I noted, in passing, that she had written a note before leaving home but after being fully dressed. You observed that her right glove was torn at the forefinger, but you did not apparently see that both glove and finger were stained with violet ink. She had written in a hurry and dipped her pen too deep. It must have been this morning, or the mark would not remain clear upon the finger. All this is amusing, though rather elementary, but I must go back to business, Watson. Would you mind reading me the advertised description of Mr. Hosmer Angel?" I held the little printed slip to the light. "Missing," it said, "on the morning of the fourteenth, a gentleman named Hosmer Angel. About five ft. seven in. in height; strongly built, sallow complexion, black hair, a little bald in the centre, bushy, black side-whiskers and moustache; tinted glasses, slight infirmity of speech. Was dressed, when last seen, in black frock-coat faced with silk, black waistcoat, gold Albert chain, and grey Harris tweed trousers, with brown gaiters over elastic-sided boots. Known to have been employed in an office in Leadenhall Street. Anybody bringing--" "That will do," said Holmes. "As to the letters," he continued, glancing over them, "they are very commonplace. Absolutely no clue in them to Mr. Angel, save that he quotes Balzac once. There is one remarkable point, however, which will no doubt strike you." "They are typewritten," I remarked. "Not only that, but the signature is typewritten. Look at the neat little 'Hosmer Angel' at the bottom. There is a date, you see, but no superscription except Leadenhall Street, which is rather vague. The point about the signature is very suggestive--in fact, we may call it conclusive." "Of what?" "My dear fellow, is it possible you do not see how strongly it bears upon the case?" "I cannot say that I do unless it were that he wished to be able to deny his signature if an action for breach of promise were instituted." "No, that was not the point. However, I shall write two letters, which should settle the matter. One is to a firm in the City, the other is to the young lady's stepfather, Mr. Windibank, asking him whether he could meet us here at six o'clock tomorrow evening. It is just as well that we should do business with the male relatives. And now, Doctor, we can do nothing until the answers to those letters come, so we may put our little problem upon the shelf for the interim." I had had so many reasons to believe in my friend's subtle powers of reasoning and extraordinary energy in action that I felt that he must have some solid grounds for the assured and easy demeanour with which he treated the singular mystery which he had been called upon to fathom. Once only had I known him to fail, in the case of the King of Bohemia and of the Irene Adler photograph; but when I looked back to the weird business of the Sign of Four, and the extraordinary circumstances connected with the Study in Scarlet, I felt that it would be a strange tangle indeed which he could not unravel. I left him then, still puffing at his black clay pipe, with the conviction that when I came again on the next evening I would find that he held in his hands all the clues which would lead up to the identity of the disappearing bridegroom of Miss Mary Sutherland. A professional case of great gravity was engaging my own attention at the time, and the whole of next day I was busy at the bedside of the sufferer. It was not until close upon six o'clock that I found myself free and was able to spring into a hansom and drive to Baker Street, half afraid that I might be too late to assist at the dénouement of the little mystery. I found Sherlock Holmes alone, however, half asleep, with his long, thin form curled up in the recesses of his armchair. A formidable array of bottles and test-tubes, with the pungent cleanly smell of hydrochloric acid, told me that he had spent his day in the chemical work which was so dear to him. "Well, have you solved it?" I asked as I entered. "Yes. It was the bisulphate of baryta." "No, no, the mystery!" I cried. "Oh, that! I thought of the salt that I have been working upon. There was never any mystery in the matter, though, as I said yesterday, some of the details are of interest. The only drawback is that there is no law, I fear, that can touch the scoundrel." "Who was he, then, and what was his object in deserting Miss Sutherland?" The question was hardly out of my mouth, and Holmes had not yet opened his lips to reply, when we heard a heavy footfall in the passage and a tap at the door. "This is the girl's stepfather, Mr. James Windibank," said Holmes. "He has written to me to say that he would be here at six. Come in!" The man who entered was a sturdy, middle-sized fellow, some thirty years of age, clean-shaven, and sallow-skinned, with a bland, insinuating manner, and a pair of wonderfully sharp and penetrating grey eyes. He shot a questioning glance at each of us, placed his shiny top-hat upon the sideboard, and with a slight bow sidled down into the nearest chair. "Good-evening, Mr. James Windibank," said Holmes. "I think that this typewritten letter is from you, in which you made an appointment with me for six o'clock?" "Yes, sir. I am afraid that I am a little late, but I am not quite my own master, you know. I am sorry that Miss Sutherland has troubled you about this little matter, for I think it is far better not to wash linen of the sort in public. It was quite against my wishes that she came, but she is a very excitable, impulsive girl, as you may have noticed, and she is not easily controlled when she has made up her mind on a point. Of course, I did not mind you so much, as you are not connected with the official police, but it is not pleasant to have a family misfortune like this noised abroad. Besides, it is a useless expense, for how could you possibly find this Hosmer Angel?" "On the contrary," said Holmes quietly; "I have every reason to believe that I will succeed in discovering Mr. Hosmer Angel." Mr. Windibank gave a violent start and dropped his gloves. "I am delighted to hear it," he said. "It is a curious thing," remarked Holmes, "that a typewriter has really quite as much individuality as a man's handwriting. Unless they are quite new, no two of them write exactly alike. Some letters get more worn than others, and some wear only on one side. Now, you remark in this note of yours, Mr. Windibank, that in every case there is some little slurring over of the 'e,' and a slight defect in the tail of the 'r.' There are fourteen other characteristics, but those are the more obvious." "We do all our correspondence with this machine at the office, and no doubt it is a little worn," our visitor answered, glancing keenly at Holmes with his bright little eyes. "And now I will show you what is really a very interesting study, Mr. Windibank," Holmes continued. "I think of writing another little monograph some of these days on the typewriter and its relation to crime. It is a subject to which I have devoted some little attention. I have here four letters which purport to come from the missing man. They are all typewritten. In each case, not only are the 'e's' slurred and the 'r's' tailless, but you will observe, if you care to use my magnifying lens, that the fourteen other characteristics to which I have alluded are there as well." Mr. Windibank sprang out of his chair and picked up his hat. "I cannot waste time over this sort of fantastic talk, Mr. Holmes," he said. "If you can catch the man, catch him, and let me know when you have done it." "Certainly," said Holmes, stepping over and turning the key in the door. "I let you know, then, that I have caught him!" "What! where?" shouted Mr. Windibank, turning white to his lips and glancing about him like a rat in a trap. "Oh, it won't do--really it won't," said Holmes suavely. "There is no possible getting out of it, Mr. Windibank. It is quite too transparent, and it was a very bad compliment when you said that it was impossible for me to solve so simple a question. That's right! Sit down and let us talk it over." Our visitor collapsed into a chair, with a ghastly face and a glitter of moisture on his brow. "It--it's not actionable," he stammered. "I am very much afraid that it is not. But between ourselves, Windibank, it was as cruel and selfish and heartless a trick in a petty way as ever came before me. Now, let me just run over the course of events, and you will contradict me if I go wrong." The man sat huddled up in his chair, with his head sunk upon his breast, like one who is utterly crushed. Holmes stuck his feet up on the corner of the mantelpiece and, leaning back with his hands in his pockets, began talking, rather to himself, as it seemed, than to us. "The man married a woman very much older than himself for her money," said he, "and he enjoyed the use of the money of the daughter as long as she lived with them. It was a considerable sum, for people in their position, and the loss of it would have made a serious difference. It was worth an effort to preserve it. The daughter was of a good, amiable disposition, but affectionate and warm-hearted in her ways, so that it was evident that with her fair personal advantages, and her little income, she would not be allowed to remain single long. Now her marriage would mean, of course, the loss of a hundred a year, so what does her stepfather do to prevent it? He takes the obvious course of keeping her at home and forbidding her to seek the company of people of her own age. But soon he found that that would not answer forever. She became restive, insisted upon her rights, and finally announced her positive intention of going to a certain ball. What does her clever stepfather do then? He conceives an idea more creditable to his head than to his heart. With the connivance and assistance of his wife he disguised himself, covered those keen eyes with tinted glasses, masked the face with a moustache and a pair of bushy whiskers, sunk that clear voice into an insinuating whisper, and doubly secure on account of the girl's short sight, he appears as Mr. Hosmer Angel, and keeps off other lovers by making love himself." "It was only a joke at first," groaned our visitor. "We never thought that she would have been so carried away." "Very likely not. However that may be, the young lady was very decidedly carried away, and, having quite made up her mind that her stepfather was in France, the suspicion of treachery never for an instant entered her mind. She was flattered by the gentleman's attentions, and the effect was increased by the loudly expressed admiration of her mother. Then Mr. Angel began to call, for it was obvious that the matter should be pushed as far as it would go if a real effect were to be produced. There were meetings, and an engagement, which would finally secure the girl's affections from turning towards anyone else. But the deception could not be kept up forever. These pretended journeys to France were rather cumbrous. The thing to do was clearly to bring the business to an end in such a dramatic manner that it would leave a permanent impression upon the young lady's mind and prevent her from looking upon any other suitor for some time to come. Hence those vows of fidelity exacted upon a Testament, and hence also the allusions to a possibility of something happening on the very morning of the wedding. James Windibank wished Miss Sutherland to be so bound to Hosmer Angel, and so uncertain as to his fate, that for ten years to come, at any rate, she would not listen to another man. As far as the church door he brought her, and then, as he could go no farther, he conveniently vanished away by the old trick of stepping in at one door of a four-wheeler and out at the other. I think that was the chain of events, Mr. Windibank!" Our visitor had recovered something of his assurance while Holmes had been talking, and he rose from his chair now with a cold sneer upon his pale face. "It may be so, or it may not, Mr. Holmes," said he, "but if you are so very sharp you ought to be sharp enough to know that it is you who are breaking the law now, and not me. I have done nothing actionable from the first, but as long as you keep that door locked you lay yourself open to an action for assault and illegal constraint." "The law cannot, as you say, touch you," said Holmes, unlocking and throwing open the door, "yet there never was a man who deserved punishment more. If the young lady has a brother or a friend, he ought to lay a whip across your shoulders. By Jove!" he continued, flushing up at the sight of the bitter sneer upon the man's face, "it is not part of my duties to my client, but here's a hunting crop handy, and I think I shall just treat myself to--" He took two swift steps to the whip, but before he could grasp it there was a wild clatter of steps upon the stairs, the heavy hall door banged, and from the window we could see Mr. James Windibank running at the top of his speed down the road. "There's a cold-blooded scoundrel!" said Holmes, laughing, as he threw himself down into his chair once more. "That fellow will rise from crime to crime until he does something very bad, and ends on a gallows. The case has, in some respects, been not entirely devoid of interest." "I cannot now entirely see all the steps of your reasoning," I remarked. "Well, of course it was obvious from the first that this Mr. Hosmer Angel must have some strong object for his curious conduct, and it was equally clear that the only man who really profited by the incident, as far as we could see, was the stepfather. Then the fact that the two men were never together, but that the one always appeared when the other was away, was suggestive. So were the tinted spectacles and the curious voice, which both hinted at a disguise, as did the bushy whiskers. My suspicions were all confirmed by his peculiar action in typewriting his signature, which, of course, inferred that his handwriting was so familiar to her that she would recognise even the smallest sample of it. You see all these isolated facts, together with many minor ones, all pointed in the same direction." "And how did you verify them?" "Having once spotted my man, it was easy to get corroboration. I knew the firm for which this man worked. Having taken the printed description. I eliminated everything from it which could be the result of a disguise--the whiskers, the glasses, the voice, and I sent it to the firm, with a request that they would inform me whether it answered to the description of any of their travellers. I had already noticed the peculiarities of the typewriter, and I wrote to the man himself at his business address asking him if he would come here. As I expected, his reply was typewritten and revealed the same trivial but characteristic defects. The same post brought me a letter from Westhouse & Marbank, of Fenchurch Street, to say that the description tallied in every respect with that of their employé, James Windibank. Voilà tout!" "And Miss Sutherland?" "If I tell her she will not believe me. You may remember the old Persian saying, 'There is danger for him who taketh the tiger cub, and danger also for whoso snatches a delusion from a woman.' There is as much sense in Hafiz as in Horace, and as much knowledge of the world." ADVENTURE IV. THE BOSCOMBE VALLEY MYSTERY We were seated at breakfast one morning, my wife and I, when the maid brought in a telegram. It was from Sherlock Holmes and ran in this way: "Have you a couple of days to spare? Have just been wired for from the west of England in connection with Boscombe Valley tragedy. Shall be glad if you will come with me. Air and scenery perfect. Leave Paddington by the 11:15." "What do you say, dear?" said my wife, looking across at me. "Will you go?" "I really don't know what to say. I have a fairly long list at present." "Oh, Anstruther would do your work for you. You have been looking a little pale lately. I think that the change would do you good, and you are always so interested in Mr. Sherlock Holmes' cases." "I should be ungrateful if I were not, seeing what I gained through one of them," I answered. "But if I am to go, I must pack at once, for I have only half an hour." My experience of camp life in Afghanistan had at least had the effect of making me a prompt and ready traveller. My wants were few and simple, so that in less than the time stated I was in a cab with my valise, rattling away to Paddington Station. Sherlock Holmes was pacing up and down the platform, his tall, gaunt figure made even gaunter and taller by his long grey travelling-cloak and close-fitting cloth cap. "It is really very good of you to come, Watson," said he. "It makes a considerable difference to me, having someone with me on whom I can thoroughly rely. Local aid is always either worthless or else biassed. If you will keep the two corner seats I shall get the tickets." We had the carriage to ourselves save for an immense litter of papers which Holmes had brought with him. Among these he rummaged and read, with intervals of note-taking and of meditation, until we were past Reading. Then he suddenly rolled them all into a gigantic ball and tossed them up onto the rack. "Have you heard anything of the case?" he asked. "Not a word. I have not seen a paper for some days." "The London press has not had very full accounts. I have just been looking through all the recent papers in order to master the particulars. It seems, from what I gather, to be one of those simple cases which are so extremely difficult." "That sounds a little paradoxical." "But it is profoundly true. Singularity is almost invariably a clue. The more featureless and commonplace a crime is, the more difficult it is to bring it home. In this case, however, they have established a very serious case against the son of the murdered man." "It is a murder, then?" "Well, it is conjectured to be so. I shall take nothing for granted until I have the opportunity of looking personally into it. I will explain the state of things to you, as far as I have been able to understand it, in a very few words. "Boscombe Valley is a country district not very far from Ross, in Herefordshire. The largest landed proprietor in that part is a Mr. John Turner, who made his money in Australia and returned some years ago to the old country. One of the farms which he held, that of Hatherley, was let to Mr. Charles McCarthy, who was also an ex-Australian. The men had known each other in the colonies, so that it was not unnatural that when they came to settle down they should do so as near each other as possible. Turner was apparently the richer man, so McCarthy became his tenant but still remained, it seems, upon terms of perfect equality, as they were frequently together. McCarthy had one son, a lad of eighteen, and Turner had an only daughter of the same age, but neither of them had wives living. They appear to have avoided the society of the neighbouring English families and to have led retired lives, though both the McCarthys were fond of sport and were frequently seen at the race-meetings of the neighbourhood. McCarthy kept two servants--a man and a girl. Turner had a considerable household, some half-dozen at the least. That is as much as I have been able to gather about the families. Now for the facts. "On June 3rd, that is, on Monday last, McCarthy left his house at Hatherley about three in the afternoon and walked down to the Boscombe Pool, which is a small lake formed by the spreading out of the stream which runs down the Boscombe Valley. He had been out with his serving-man in the morning at Ross, and he had told the man that he must hurry, as he had an appointment of importance to keep at three. From that appointment he never came back alive. "From Hatherley Farm-house to the Boscombe Pool is a quarter of a mile, and two people saw him as he passed over this ground. One was an old woman, whose name is not mentioned, and the other was William Crowder, a game-keeper in the employ of Mr. Turner. Both these witnesses depose that Mr. McCarthy was walking alone. The game-keeper adds that within a few minutes of his seeing Mr. McCarthy pass he had seen his son, Mr. James McCarthy, going the same way with a gun under his arm. To the best of his belief, the father was actually in sight at the time, and the son was following him. He thought no more of the matter until he heard in the evening of the tragedy that had occurred. "The two McCarthys were seen after the time when William Crowder, the game-keeper, lost sight of them. The Boscombe Pool is thickly wooded round, with just a fringe of grass and of reeds round the edge. A girl of fourteen, Patience Moran, who is the daughter of the lodge-keeper of the Boscombe Valley estate, was in one of the woods picking flowers. She states that while she was there she saw, at the border of the wood and close by the lake, Mr. McCarthy and his son, and that they appeared to be having a violent quarrel. She heard Mr. McCarthy the elder using very strong language to his son, and she saw the latter raise up his hand as if to strike his father. She was so frightened by their violence that she ran away and told her mother when she reached home that she had left the two McCarthys quarrelling near Boscombe Pool, and that she was afraid that they were going to fight. She had hardly said the words when young Mr. McCarthy came running up to the lodge to say that he had found his father dead in the wood, and to ask for the help of the lodge-keeper. He was much excited, without either his gun or his hat, and his right hand and sleeve were observed to be stained with fresh blood. On following him they found the dead body stretched out upon the grass beside the pool. The head had been beaten in by repeated blows of some heavy and blunt weapon. The injuries were such as might very well have been inflicted by the butt-end of his son's gun, which was found lying on the grass within a few paces of the body. Under these circumstances the young man was instantly arrested, and a verdict of 'wilful murder' having been returned at the inquest on Tuesday, he was on Wednesday brought before the magistrates at Ross, who have referred the case to the next Assizes. Those are the main facts of the case as they came out before the coroner and the police-court." "I could hardly imagine a more damning case," I remarked. "If ever circumstantial evidence pointed to a criminal it does so here." "Circumstantial evidence is a very tricky thing," answered Holmes thoughtfully. "It may seem to point very straight to one thing, but if you shift your own point of view a little, you may find it pointing in an equally uncompromising manner to something entirely different. It must be confessed, however, that the case looks exceedingly grave against the young man, and it is very possible that he is indeed the culprit. There are several people in the neighbourhood, however, and among them Miss Turner, the daughter of the neighbouring landowner, who believe in his innocence, and who have retained Lestrade, whom you may recollect in connection with the Study in Scarlet, to work out the case in his interest. Lestrade, being rather puzzled, has referred the case to me, and hence it is that two middle-aged gentlemen are flying westward at fifty miles an hour instead of quietly digesting their breakfasts at home." "I am afraid," said I, "that the facts are so obvious that you will find little credit to be gained out of this case." "There is nothing more deceptive than an obvious fact," he answered, laughing. "Besides, we may chance to hit upon some other obvious facts which may have been by no means obvious to Mr. Lestrade. You know me too well to think that I am boasting when I say that I shall either confirm or destroy his theory by means which he is quite incapable of employing, or even of understanding. To take the first example to hand, I very clearly perceive that in your bedroom the window is upon the right-hand side, and yet I question whether Mr. Lestrade would have noted even so self-evident a thing as that." "How on earth--" "My dear fellow, I know you well. I know the military neatness which characterises you. You shave every morning, and in this season you shave by the sunlight; but since your shaving is less and less complete as we get farther back on the left side, until it becomes positively slovenly as we get round the angle of the jaw, it is surely very clear that that side is less illuminated than the other. I could not imagine a man of your habits looking at himself in an equal light and being satisfied with such a result. I only quote this as a trivial example of observation and inference. Therein lies my métier, and it is just possible that it may be of some service in the investigation which lies before us. There are one or two minor points which were brought out in the inquest, and which are worth considering." "What are they?" "It appears that his arrest did not take place at once, but after the return to Hatherley Farm. On the inspector of constabulary informing him that he was a prisoner, he remarked that he was not surprised to hear it, and that it was no more than his deserts. This observation of his had the natural effect of removing any traces of doubt which might have remained in the minds of the coroner's jury." "It was a confession," I ejaculated. "No, for it was followed by a protestation of innocence." "Coming on the top of such a damning series of events, it was at least a most suspicious remark." "On the contrary," said Holmes, "it is the brightest rift which I can at present see in the clouds. However innocent he might be, he could not be such an absolute imbecile as not to see that the circumstances were very black against him. Had he appeared surprised at his own arrest, or feigned indignation at it, I should have looked upon it as highly suspicious, because such surprise or anger would not be natural under the circumstances, and yet might appear to be the best policy to a scheming man. His frank acceptance of the situation marks him as either an innocent man, or else as a man of considerable self-restraint and firmness. As to his remark about his deserts, it was also not unnatural if you consider that he stood beside the dead body of his father, and that there is no doubt that he had that very day so far forgotten his filial duty as to bandy words with him, and even, according to the little girl whose evidence is so important, to raise his hand as if to strike him. The self-reproach and contrition which are displayed in his remark appear to me to be the signs of a healthy mind rather than of a guilty one." I shook my head. "Many men have been hanged on far slighter evidence," I remarked. "So they have. And many men have been wrongfully hanged." "What is the young man's own account of the matter?" "It is, I am afraid, not very encouraging to his supporters, though there are one or two points in it which are suggestive. You will find it here, and may read it for yourself." He picked out from his bundle a copy of the local Herefordshire paper, and having turned down the sheet he pointed out the paragraph in which the unfortunate young man had given his own statement of what had occurred. I settled myself down in the corner of the carriage and read it very carefully. It ran in this way: "Mr. James McCarthy, the only son of the deceased, was then called and gave evidence as follows: 'I had been away from home for three days at Bristol, and had only just returned upon the morning of last Monday, the 3rd. My father was absent from home at the time of my arrival, and I was informed by the maid that he had driven over to Ross with John Cobb, the groom. Shortly after my return I heard the wheels of his trap in the yard, and, looking out of my window, I saw him get out and walk rapidly out of the yard, though I was not aware in which direction he was going. I then took my gun and strolled out in the direction of the Boscombe Pool, with the intention of visiting the rabbit warren which is upon the other side. On my way I saw William Crowder, the game-keeper, as he had stated in his evidence; but he is mistaken in thinking that I was following my father. I had no idea that he was in front of me. When about a hundred yards from the pool I heard a cry of "Cooee!" which was a usual signal between my father and myself. I then hurried forward, and found him standing by the pool. He appeared to be much surprised at seeing me and asked me rather roughly what I was doing there. A conversation ensued which led to high words and almost to blows, for my father was a man of a very violent temper. Seeing that his passion was becoming ungovernable, I left him and returned towards Hatherley Farm. I had not gone more than 150 yards, however, when I heard a hideous outcry behind me, which caused me to run back again. I found my father expiring upon the ground, with his head terribly injured. I dropped my gun and held him in my arms, but he almost instantly expired. I knelt beside him for some minutes, and then made my way to Mr. Turner's lodge-keeper, his house being the nearest, to ask for assistance. I saw no one near my father when I returned, and I have no idea how he came by his injuries. He was not a popular man, being somewhat cold and forbidding in his manners, but he had, as far as I know, no active enemies. I know nothing further of the matter.' "The Coroner: Did your father make any statement to you before he died? "Witness: He mumbled a few words, but I could only catch some allusion to a rat. "The Coroner: What did you understand by that? "Witness: It conveyed no meaning to me. I thought that he was delirious. "The Coroner: What was the point upon which you and your father had this final quarrel? "Witness: I should prefer not to answer. "The Coroner: I am afraid that I must press it. "Witness: It is really impossible for me to tell you. I can assure you that it has nothing to do with the sad tragedy which followed. "The Coroner: That is for the court to decide. I need not point out to you that your refusal to answer will prejudice your case considerably in any future proceedings which may arise. "Witness: I must still refuse. "The Coroner: I understand that the cry of 'Cooee' was a common signal between you and your father? "Witness: It was. "The Coroner: How was it, then, that he uttered it before he saw you, and before he even knew that you had returned from Bristol? "Witness (with considerable confusion): I do not know. "A Juryman: Did you see nothing which aroused your suspicions when you returned on hearing the cry and found your father fatally injured? "Witness: Nothing definite. "The Coroner: What do you mean? "Witness: I was so disturbed and excited as I rushed out into the open, that I could think of nothing except of my father. Yet I have a vague impression that as I ran forward something lay upon the ground to the left of me. It seemed to me to be something grey in colour, a coat of some sort, or a plaid perhaps. When I rose from my father I looked round for it, but it was gone. "'Do you mean that it disappeared before you went for help?' "'Yes, it was gone.' "'You cannot say what it was?' "'No, I had a feeling something was there.' "'How far from the body?' "'A dozen yards or so.' "'And how far from the edge of the wood?' "'About the same.' "'Then if it was removed it was while you were within a dozen yards of it?' "'Yes, but with my back towards it.' "This concluded the examination of the witness." "I see," said I as I glanced down the column, "that the coroner in his concluding remarks was rather severe upon young McCarthy. He calls attention, and with reason, to the discrepancy about his father having signalled to him before seeing him, also to his refusal to give details of his conversation with his father, and his singular account of his father's dying words. They are all, as he remarks, very much against the son." Holmes laughed softly to himself and stretched himself out upon the cushioned seat. "Both you and the coroner have been at some pains," said he, "to single out the very strongest points in the young man's favour. Don't you see that you alternately give him credit for having too much imagination and too little? Too little, if he could not invent a cause of quarrel which would give him the sympathy of the jury; too much, if he evolved from his own inner consciousness anything so outré as a dying reference to a rat, and the incident of the vanishing cloth. No, sir, I shall approach this case from the point of view that what this young man says is true, and we shall see whither that hypothesis will lead us. And now here is my pocket Petrarch, and not another word shall I say of this case until we are on the scene of action. We lunch at Swindon, and I see that we shall be there in twenty minutes." It was nearly four o'clock when we at last, after passing through the beautiful Stroud Valley, and over the broad gleaming Severn, found ourselves at the pretty little country-town of Ross. A lean, ferret-like man, furtive and sly-looking, was waiting for us upon the platform. In spite of the light brown dustcoat and leather-leggings which he wore in deference to his rustic surroundings, I had no difficulty in recognising Lestrade, of Scotland Yard. With him we drove to the Hereford Arms where a room had already been engaged for us. "I have ordered a carriage," said Lestrade as we sat over a cup of tea. "I knew your energetic nature, and that you would not be happy until you had been on the scene of the crime." "It was very nice and complimentary of you," Holmes answered. "It is entirely a question of barometric pressure." Lestrade looked startled. "I do not quite follow," he said. "How is the glass? Twenty-nine, I see. No wind, and not a cloud in the sky. I have a caseful of cigarettes here which need smoking, and the sofa is very much superior to the usual country hotel abomination. I do not think that it is probable that I shall use the carriage to-night." Lestrade laughed indulgently. "You have, no doubt, already formed your conclusions from the newspapers," he said. "The case is as plain as a pikestaff, and the more one goes into it the plainer it becomes. Still, of course, one can't refuse a lady, and such a very positive one, too. She has heard of you, and would have your opinion, though I repeatedly told her that there was nothing which you could do which I had not already done. Why, bless my soul! here is her carriage at the door." He had hardly spoken before there rushed into the room one of the most lovely young women that I have ever seen in my life. Her violet eyes shining, her lips parted, a pink flush upon her cheeks, all thought of her natural reserve lost in her overpowering excitement and concern. "Oh, Mr. Sherlock Holmes!" she cried, glancing from one to the other of us, and finally, with a woman's quick intuition, fastening upon my companion, "I am so glad that you have come. I have driven down to tell you so. I know that James didn't do it. I know it, and I want you to start upon your work knowing it, too. Never let yourself doubt upon that point. We have known each other since we were little children, and I know his faults as no one else does; but he is too tender-hearted to hurt a fly. Such a charge is absurd to anyone who really knows him." "I hope we may clear him, Miss Turner," said Sherlock Holmes. "You may rely upon my doing all that I can." "But you have read the evidence. You have formed some conclusion? Do you not see some loophole, some flaw? Do you not yourself think that he is innocent?" "I think that it is very probable." "There, now!" she cried, throwing back her head and looking defiantly at Lestrade. "You hear! He gives me hopes." Lestrade shrugged his shoulders. "I am afraid that my colleague has been a little quick in forming his conclusions," he said. "But he is right. Oh! I know that he is right. James never did it. And about his quarrel with his father, I am sure that the reason why he would not speak about it to the coroner was because I was concerned in it." "In what way?" asked Holmes. "It is no time for me to hide anything. James and his father had many disagreements about me. Mr. McCarthy was very anxious that there should be a marriage between us. James and I have always loved each other as brother and sister; but of course he is young and has seen very little of life yet, and--and--well, he naturally did not wish to do anything like that yet. So there were quarrels, and this, I am sure, was one of them." "And your father?" asked Holmes. "Was he in favour of such a union?" "No, he was averse to it also. No one but Mr. McCarthy was in favour of it." A quick blush passed over her fresh young face as Holmes shot one of his keen, questioning glances at her. "Thank you for this information," said he. "May I see your father if I call to-morrow?" "I am afraid the doctor won't allow it." "The doctor?" "Yes, have you not heard? Poor father has never been strong for years back, but this has broken him down completely. He has taken to his bed, and Dr. Willows says that he is a wreck and that his nervous system is shattered. Mr. McCarthy was the only man alive who had known dad in the old days in Victoria." "Ha! In Victoria! That is important." "Yes, at the mines." "Quite so; at the gold-mines, where, as I understand, Mr. Turner made his money." "Yes, certainly." "Thank you, Miss Turner. You have been of material assistance to me." "You will tell me if you have any news to-morrow. No doubt you will go to the prison to see James. Oh, if you do, Mr. Holmes, do tell him that I know him to be innocent." "I will, Miss Turner." "I must go home now, for dad is very ill, and he misses me so if I leave him. Good-bye, and God help you in your undertaking." She hurried from the room as impulsively as she had entered, and we heard the wheels of her carriage rattle off down the street. "I am ashamed of you, Holmes," said Lestrade with dignity after a few minutes' silence. "Why should you raise up hopes which you are bound to disappoint? I am not over-tender of heart, but I call it cruel." "I think that I see my way to clearing James McCarthy," said Holmes. "Have you an order to see him in prison?" "Yes, but only for you and me." "Then I shall reconsider my resolution about going out. We have still time to take a train to Hereford and see him to-night?" "Ample." "Then let us do so. Watson, I fear that you will find it very slow, but I shall only be away a couple of hours." I walked down to the station with them, and then wandered through the streets of the little town, finally returning to the hotel, where I lay upon the sofa and tried to interest myself in a yellow-backed novel. The puny plot of the story was so thin, however, when compared to the deep mystery through which we were groping, and I found my attention wander so continually from the action to the fact, that I at last flung it across the room and gave myself up entirely to a consideration of the events of the day. Supposing that this unhappy young man's story were absolutely true, then what hellish thing, what absolutely unforeseen and extraordinary calamity could have occurred between the time when he parted from his father, and the moment when, drawn back by his screams, he rushed into the glade? It was something terrible and deadly. What could it be? Might not the nature of the injuries reveal something to my medical instincts? I rang the bell and called for the weekly county paper, which contained a verbatim account of the inquest. In the surgeon's deposition it was stated that the posterior third of the left parietal bone and the left half of the occipital bone had been shattered by a heavy blow from a blunt weapon. I marked the spot upon my own head. Clearly such a blow must have been struck from behind. That was to some extent in favour of the accused, as when seen quarrelling he was face to face with his father. Still, it did not go for very much, for the older man might have turned his back before the blow fell. Still, it might be worth while to call Holmes' attention to it. Then there was the peculiar dying reference to a rat. What could that mean? It could not be delirium. A man dying from a sudden blow does not commonly become delirious. No, it was more likely to be an attempt to explain how he met his fate. But what could it indicate? I cudgelled my brains to find some possible explanation. And then the incident of the grey cloth seen by young McCarthy. If that were true the murderer must have dropped some part of his dress, presumably his overcoat, in his flight, and must have had the hardihood to return and to carry it away at the instant when the son was kneeling with his back turned not a dozen paces off. What a tissue of mysteries and improbabilities the whole thing was! I did not wonder at Lestrade's opinion, and yet I had so much faith in Sherlock Holmes' insight that I could not lose hope as long as every fresh fact seemed to strengthen his conviction of young McCarthy's innocence. It was late before Sherlock Holmes returned. He came back alone, for Lestrade was staying in lodgings in the town. "The glass still keeps very high," he remarked as he sat down. "It is of importance that it should not rain before we are able to go over the ground. On the other hand, a man should be at his very best and keenest for such nice work as that, and I did not wish to do it when fagged by a long journey. I have seen young McCarthy." "And what did you learn from him?" "Nothing." "Could he throw no light?" "None at all. I was inclined to think at one time that he knew who had done it and was screening him or her, but I am convinced now that he is as puzzled as everyone else. He is not a very quick-witted youth, though comely to look at and, I should think, sound at heart." "I cannot admire his taste," I remarked, "if it is indeed a fact that he was averse to a marriage with so charming a young lady as this Miss Turner." "Ah, thereby hangs a rather painful tale. This fellow is madly, insanely, in love with her, but some two years ago, when he was only a lad, and before he really knew her, for she had been away five years at a boarding-school, what does the idiot do but get into the clutches of a barmaid in Bristol and marry her at a registry office? No one knows a word of the matter, but you can imagine how maddening it must be to him to be upbraided for not doing what he would give his very eyes to do, but what he knows to be absolutely impossible. It was sheer frenzy of this sort which made him throw his hands up into the air when his father, at their last interview, was goading him on to propose to Miss Turner. On the other hand, he had no means of supporting himself, and his father, who was by all accounts a very hard man, would have thrown him over utterly had he known the truth. It was with his barmaid wife that he had spent the last three days in Bristol, and his father did not know where he was. Mark that point. It is of importance. Good has come out of evil, however, for the barmaid, finding from the papers that he is in serious trouble and likely to be hanged, has thrown him over utterly and has written to him to say that she has a husband already in the Bermuda Dockyard, so that there is really no tie between them. I think that that bit of news has consoled young McCarthy for all that he has suffered." "But if he is innocent, who has done it?" "Ah! who? I would call your attention very particularly to two points. One is that the murdered man had an appointment with someone at the pool, and that the someone could not have been his son, for his son was away, and he did not know when he would return. The second is that the murdered man was heard to cry 'Cooee!' before he knew that his son had returned. Those are the crucial points upon which the case depends. And now let us talk about George Meredith, if you please, and we shall leave all minor matters until to-morrow." There was no rain, as Holmes had foretold, and the morning broke bright and cloudless. At nine o'clock Lestrade called for us with the carriage, and we set off for Hatherley Farm and the Boscombe Pool. "There is serious news this morning," Lestrade observed. "It is said that Mr. Turner, of the Hall, is so ill that his life is despaired of." "An elderly man, I presume?" said Holmes. "About sixty; but his constitution has been shattered by his life abroad, and he has been in failing health for some time. This business has had a very bad effect upon him. He was an old friend of McCarthy's, and, I may add, a great benefactor to him, for I have learned that he gave him Hatherley Farm rent free." "Indeed! That is interesting," said Holmes. "Oh, yes! In a hundred other ways he has helped him. Everybody about here speaks of his kindness to him." "Really! Does it not strike you as a little singular that this McCarthy, who appears to have had little of his own, and to have been under such obligations to Turner, should still talk of marrying his son to Turner's daughter, who is, presumably, heiress to the estate, and that in such a very cocksure manner, as if it were merely a case of a proposal and all else would follow? It is the more strange, since we know that Turner himself was averse to the idea. The daughter told us as much. Do you not deduce something from that?" "We have got to the deductions and the inferences," said Lestrade, winking at me. "I find it hard enough to tackle facts, Holmes, without flying away after theories and fancies." "You are right," said Holmes demurely; "you do find it very hard to tackle the facts." "Anyhow, I have grasped one fact which you seem to find it difficult to get hold of," replied Lestrade with some warmth. "And that is--" "That McCarthy senior met his death from McCarthy junior and that all theories to the contrary are the merest moonshine." "Well, moonshine is a brighter thing than fog," said Holmes, laughing. "But I am very much mistaken if this is not Hatherley Farm upon the left." "Yes, that is it." It was a widespread, comfortable-looking building, two-storied, slate-roofed, with great yellow blotches of lichen upon the grey walls. The drawn blinds and the smokeless chimneys, however, gave it a stricken look, as though the weight of this horror still lay heavy upon it. We called at the door, when the maid, at Holmes' request, showed us the boots which her master wore at the time of his death, and also a pair of the son's, though not the pair which he had then had. Having measured these very carefully from seven or eight different points, Holmes desired to be led to the court-yard, from which we all followed the winding track which led to Boscombe Pool. Sherlock Holmes was transformed when he was hot upon such a scent as this. Men who had only known the quiet thinker and logician of Baker Street would have failed to recognise him. His face flushed and darkened. His brows were drawn into two hard black lines, while his eyes shone out from beneath them with a steely glitter. His face was bent downward, his shoulders bowed, his lips compressed, and the veins stood out like whipcord in his long, sinewy neck. His nostrils seemed to dilate with a purely animal lust for the chase, and his mind was so absolutely concentrated upon the matter before him that a question or remark fell unheeded upon his ears, or, at the most, only provoked a quick, impatient snarl in reply. Swiftly and silently he made his way along the track which ran through the meadows, and so by way of the woods to the Boscombe Pool. It was damp, marshy ground, as is all that district, and there were marks of many feet, both upon the path and amid the short grass which bounded it on either side. Sometimes Holmes would hurry on, sometimes stop dead, and once he made quite a little detour into the meadow. Lestrade and I walked behind him, the detective indifferent and contemptuous, while I watched my friend with the interest which sprang from the conviction that every one of his actions was directed towards a definite end. The Boscombe Pool, which is a little reed-girt sheet of water some fifty yards across, is situated at the boundary between the Hatherley Farm and the private park of the wealthy Mr. Turner. Above the woods which lined it upon the farther side we could see the red, jutting pinnacles which marked the site of the rich landowner's dwelling. On the Hatherley side of the pool the woods grew very thick, and there was a narrow belt of sodden grass twenty paces across between the edge of the trees and the reeds which lined the lake. Lestrade showed us the exact spot at which the body had been found, and, indeed, so moist was the ground, that I could plainly see the traces which had been left by the fall of the stricken man. To Holmes, as I could see by his eager face and peering eyes, very many other things were to be read upon the trampled grass. He ran round, like a dog who is picking up a scent, and then turned upon my companion. "What did you go into the pool for?" he asked. "I fished about with a rake. I thought there might be some weapon or other trace. But how on earth--" "Oh, tut, tut! I have no time! That left foot of yours with its inward twist is all over the place. A mole could trace it, and there it vanishes among the reeds. Oh, how simple it would all have been had I been here before they came like a herd of buffalo and wallowed all over it. Here is where the party with the lodge-keeper came, and they have covered all tracks for six or eight feet round the body. But here are three separate tracks of the same feet." He drew out a lens and lay down upon his waterproof to have a better view, talking all the time rather to himself than to us. "These are young McCarthy's feet. Twice he was walking, and once he ran swiftly, so that the soles are deeply marked and the heels hardly visible. That bears out his story. He ran when he saw his father on the ground. Then here are the father's feet as he paced up and down. What is this, then? It is the butt-end of the gun as the son stood listening. And this? Ha, ha! What have we here? Tiptoes! tiptoes! Square, too, quite unusual boots! They come, they go, they come again--of course that was for the cloak. Now where did they come from?" He ran up and down, sometimes losing, sometimes finding the track until we were well within the edge of the wood and under the shadow of a great beech, the largest tree in the neighbourhood. Holmes traced his way to the farther side of this and lay down once more upon his face with a little cry of satisfaction. For a long time he remained there, turning over the leaves and dried sticks, gathering up what seemed to me to be dust into an envelope and examining with his lens not only the ground but even the bark of the tree as far as he could reach. A jagged stone was lying among the moss, and this also he carefully examined and retained. Then he followed a pathway through the wood until he came to the highroad, where all traces were lost. "It has been a case of considerable interest," he remarked, returning to his natural manner. "I fancy that this grey house on the right must be the lodge. I think that I will go in and have a word with Moran, and perhaps write a little note. Having done that, we may drive back to our luncheon. You may walk to the cab, and I shall be with you presently." It was about ten minutes before we regained our cab and drove back into Ross, Holmes still carrying with him the stone which he had picked up in the wood. "This may interest you, Lestrade," he remarked, holding it out. "The murder was done with it." "I see no marks." "There are none." "How do you know, then?" "The grass was growing under it. It had only lain there a few days. There was no sign of a place whence it had been taken. It corresponds with the injuries. There is no sign of any other weapon." "And the murderer?" "Is a tall man, left-handed, limps with the right leg, wears thick-soled shooting-boots and a grey cloak, smokes Indian cigars, uses a cigar-holder, and carries a blunt pen-knife in his pocket. There are several other indications, but these may be enough to aid us in our search." Lestrade laughed. "I am afraid that I am still a sceptic," he said. "Theories are all very well, but we have to deal with a hard-headed British jury." "Nous verrons," answered Holmes calmly. "You work your own method, and I shall work mine. I shall be busy this afternoon, and shall probably return to London by the evening train." "And leave your case unfinished?" "No, finished." "But the mystery?" "It is solved." "Who was the criminal, then?" "The gentleman I describe." "But who is he?" "Surely it would not be difficult to find out. This is not such a populous neighbourhood." Lestrade shrugged his shoulders. "I am a practical man," he said, "and I really cannot undertake to go about the country looking for a left-handed gentleman with a game leg. I should become the laughing-stock of Scotland Yard." "All right," said Holmes quietly. "I have given you the chance. Here are your lodgings. Good-bye. I shall drop you a line before I leave." Having left Lestrade at his rooms, we drove to our hotel, where we found lunch upon the table. Holmes was silent and buried in thought with a pained expression upon his face, as one who finds himself in a perplexing position. "Look here, Watson," he said when the cloth was cleared "just sit down in this chair and let me preach to you for a little. I don't know quite what to do, and I should value your advice. Light a cigar and let me expound." "Pray do so." "Well, now, in considering this case there are two points about young McCarthy's narrative which struck us both instantly, although they impressed me in his favour and you against him. One was the fact that his father should, according to his account, cry 'Cooee!' before seeing him. The other was his singular dying reference to a rat. He mumbled several words, you understand, but that was all that caught the son's ear. Now from this double point our research must commence, and we will begin it by presuming that what the lad says is absolutely true." "What of this 'Cooee!' then?" "Well, obviously it could not have been meant for the son. The son, as far as he knew, was in Bristol. It was mere chance that he was within earshot. The 'Cooee!' was meant to attract the attention of whoever it was that he had the appointment with. But 'Cooee' is a distinctly Australian cry, and one which is used between Australians. There is a strong presumption that the person whom McCarthy expected to meet him at Boscombe Pool was someone who had been in Australia." "What of the rat, then?" Sherlock Holmes took a folded paper from his pocket and flattened it out on the table. "This is a map of the Colony of Victoria," he said. "I wired to Bristol for it last night." He put his hand over part of the map. "What do you read?" "ARAT," I read. "And now?" He raised his hand. "BALLARAT." "Quite so. That was the word the man uttered, and of which his son only caught the last two syllables. He was trying to utter the name of his murderer. So and so, of Ballarat." "It is wonderful!" I exclaimed. "It is obvious. And now, you see, I had narrowed the field down considerably. The possession of a grey garment was a third point which, granting the son's statement to be correct, was a certainty. We have come now out of mere vagueness to the definite conception of an Australian from Ballarat with a grey cloak." "Certainly." "And one who was at home in the district, for the pool can only be approached by the farm or by the estate, where strangers could hardly wander." "Quite so." "Then comes our expedition of to-day. By an examination of the ground I gained the trifling details which I gave to that imbecile Lestrade, as to the personality of the criminal." "But how did you gain them?" "You know my method. It is founded upon the observation of trifles." "His height I know that you might roughly judge from the length of his stride. His boots, too, might be told from their traces." "Yes, they were peculiar boots." "But his lameness?" "The impression of his right foot was always less distinct than his left. He put less weight upon it. Why? Because he limped--he was lame." "But his left-handedness." "You were yourself struck by the nature of the injury as recorded by the surgeon at the inquest. The blow was struck from immediately behind, and yet was upon the left side. Now, how can that be unless it were by a left-handed man? He had stood behind that tree during the interview between the father and son. He had even smoked there. I found the ash of a cigar, which my special knowledge of tobacco ashes enables me to pronounce as an Indian cigar. I have, as you know, devoted some attention to this, and written a little monograph on the ashes of 140 different varieties of pipe, cigar, and cigarette tobacco. Having found the ash, I then looked round and discovered the stump among the moss where he had tossed it. It was an Indian cigar, of the variety which are rolled in Rotterdam." "And the cigar-holder?" "I could see that the end had not been in his mouth. Therefore he used a holder. The tip had been cut off, not bitten off, but the cut was not a clean one, so I deduced a blunt pen-knife." "Holmes," I said, "you have drawn a net round this man from which he cannot escape, and you have saved an innocent human life as truly as if you had cut the cord which was hanging him. I see the direction in which all this points. The culprit is--" "Mr. John Turner," cried the hotel waiter, opening the door of our sitting-room, and ushering in a visitor. The man who entered was a strange and impressive figure. His slow, limping step and bowed shoulders gave the appearance of decrepitude, and yet his hard, deep-lined, craggy features, and his enormous limbs showed that he was possessed of unusual strength of body and of character. His tangled beard, grizzled hair, and outstanding, drooping eyebrows combined to give an air of dignity and power to his appearance, but his face was of an ashen white, while his lips and the corners of his nostrils were tinged with a shade of blue. It was clear to me at a glance that he was in the grip of some deadly and chronic disease. "Pray sit down on the sofa," said Holmes gently. "You had my note?" "Yes, the lodge-keeper brought it up. You said that you wished to see me here to avoid scandal." "I thought people would talk if I went to the Hall." "And why did you wish to see me?" He looked across at my companion with despair in his weary eyes, as though his question was already answered. "Yes," said Holmes, answering the look rather than the words. "It is so. I know all about McCarthy." The old man sank his face in his hands. "God help me!" he cried. "But I would not have let the young man come to harm. I give you my word that I would have spoken out if it went against him at the Assizes." "I am glad to hear you say so," said Holmes gravely. "I would have spoken now had it not been for my dear girl. It would break her heart--it will break her heart when she hears that I am arrested." "It may not come to that," said Holmes. "What?" "I am no official agent. I understand that it was your daughter who required my presence here, and I am acting in her interests. Young McCarthy must be got off, however." "I am a dying man," said old Turner. "I have had diabetes for years. My doctor says it is a question whether I shall live a month. Yet I would rather die under my own roof than in a gaol." Holmes rose and sat down at the table with his pen in his hand and a bundle of paper before him. "Just tell us the truth," he said. "I shall jot down the facts. You will sign it, and Watson here can witness it. Then I could produce your confession at the last extremity to save young McCarthy. I promise you that I shall not use it unless it is absolutely needed." "It's as well," said the old man; "it's a question whether I shall live to the Assizes, so it matters little to me, but I should wish to spare Alice the shock. And now I will make the thing clear to you; it has been a long time in the acting, but will not take me long to tell. "You didn't know this dead man, McCarthy. He was a devil incarnate. I tell you that. God keep you out of the clutches of such a man as he. His grip has been upon me these twenty years, and he has blasted my life. I'll tell you first how I came to be in his power. "It was in the early '60's at the diggings. I was a young chap then, hot-blooded and reckless, ready to turn my hand at anything; I got among bad companions, took to drink, had no luck with my claim, took to the bush, and in a word became what you would call over here a highway robber. There were six of us, and we had a wild, free life of it, sticking up a station from time to time, or stopping the wagons on the road to the diggings. Black Jack of Ballarat was the name I went under, and our party is still remembered in the colony as the Ballarat Gang. "One day a gold convoy came down from Ballarat to Melbourne, and we lay in wait for it and attacked it. There were six troopers and six of us, so it was a close thing, but we emptied four of their saddles at the first volley. Three of our boys were killed, however, before we got the swag. I put my pistol to the head of the wagon-driver, who was this very man McCarthy. I wish to the Lord that I had shot him then, but I spared him, though I saw his wicked little eyes fixed on my face, as though to remember every feature. We got away with the gold, became wealthy men, and made our way over to England without being suspected. There I parted from my old pals and determined to settle down to a quiet and respectable life. I bought this estate, which chanced to be in the market, and I set myself to do a little good with my money, to make up for the way in which I had earned it. I married, too, and though my wife died young she left me my dear little Alice. Even when she was just a baby her wee hand seemed to lead me down the right path as nothing else had ever done. In a word, I turned over a new leaf and did my best to make up for the past. All was going well when McCarthy laid his grip upon me. "I had gone up to town about an investment, and I met him in Regent Street with hardly a coat to his back or a boot to his foot. "'Here we are, Jack,' says he, touching me on the arm; 'we'll be as good as a family to you. There's two of us, me and my son, and you can have the keeping of us. If you don't--it's a fine, law-abiding country is England, and there's always a policeman within hail.' "Well, down they came to the west country, there was no shaking them off, and there they have lived rent free on my best land ever since. There was no rest for me, no peace, no forgetfulness; turn where I would, there was his cunning, grinning face at my elbow. It grew worse as Alice grew up, for he soon saw I was more afraid of her knowing my past than of the police. Whatever he wanted he must have, and whatever it was I gave him without question, land, money, houses, until at last he asked a thing which I could not give. He asked for Alice. "His son, you see, had grown up, and so had my girl, and as I was known to be in weak health, it seemed a fine stroke to him that his lad should step into the whole property. But there I was firm. I would not have his cursed stock mixed with mine; not that I had any dislike to the lad, but his blood was in him, and that was enough. I stood firm. McCarthy threatened. I braved him to do his worst. We were to meet at the pool midway between our houses to talk it over. "When I went down there I found him talking with his son, so I smoked a cigar and waited behind a tree until he should be alone. But as I listened to his talk all that was black and bitter in me seemed to come uppermost. He was urging his son to marry my daughter with as little regard for what she might think as if she were a slut from off the streets. It drove me mad to think that I and all that I held most dear should be in the power of such a man as this. Could I not snap the bond? I was already a dying and a desperate man. Though clear of mind and fairly strong of limb, I knew that my own fate was sealed. But my memory and my girl! Both could be saved if I could but silence that foul tongue. I did it, Mr. Holmes. I would do it again. Deeply as I have sinned, I have led a life of martyrdom to atone for it. But that my girl should be entangled in the same meshes which held me was more than I could suffer. I struck him down with no more compunction than if he had been some foul and venomous beast. His cry brought back his son; but I had gained the cover of the wood, though I was forced to go back to fetch the cloak which I had dropped in my flight. That is the true story, gentlemen, of all that occurred." "Well, it is not for me to judge you," said Holmes as the old man signed the statement which had been drawn out. "I pray that we may never be exposed to such a temptation." "I pray not, sir. And what do you intend to do?" "In view of your health, nothing. You are yourself aware that you will soon have to answer for your deed at a higher court than the Assizes. I will keep your confession, and if McCarthy is condemned I shall be forced to use it. If not, it shall never be seen by mortal eye; and your secret, whether you be alive or dead, shall be safe with us." "Farewell, then," said the old man solemnly. "Your own deathbeds, when they come, will be the easier for the thought of the peace which you have given to mine." Tottering and shaking in all his giant frame, he stumbled slowly from the room. "God help us!" said Holmes after a long silence. "Why does fate play such tricks with poor, helpless worms? I never hear of such a case as this that I do not think of Baxter's words, and say, 'There, but for the grace of God, goes Sherlock Holmes.'" James McCarthy was acquitted at the Assizes on the strength of a number of objections which had been drawn out by Holmes and submitted to the defending counsel. Old Turner lived for seven months after our interview, but he is now dead; and there is every prospect that the son and daughter may come to live happily together in ignorance of the black cloud which rests upon their past. ADVENTURE V. THE FIVE ORANGE PIPS When I glance over my notes and records of the Sherlock Holmes cases between the years '82 and '90, I am faced by so many which present strange and interesting features that it is no easy matter to know which to choose and which to leave. Some, however, have already gained publicity through the papers, and others have not offered a field for those peculiar qualities which my friend possessed in so high a degree, and which it is the object of these papers to illustrate. Some, too, have baffled his analytical skill, and would be, as narratives, beginnings without an ending, while others have been but partially cleared up, and have their explanations founded rather upon conjecture and surmise than on that absolute logical proof which was so dear to him. There is, however, one of these last which was so remarkable in its details and so startling in its results that I am tempted to give some account of it in spite of the fact that there are points in connection with it which never have been, and probably never will be, entirely cleared up. The year '87 furnished us with a long series of cases of greater or less interest, of which I retain the records. Among my headings under this one twelve months I find an account of the adventure of the Paradol Chamber, of the Amateur Mendicant Society, who held a luxurious club in the lower vault of a furniture warehouse, of the facts connected with the loss of the British barque "Sophy Anderson", of the singular adventures of the Grice Patersons in the island of Uffa, and finally of the Camberwell poisoning case. In the latter, as may be remembered, Sherlock Holmes was able, by winding up the dead man's watch, to prove that it had been wound up two hours before, and that therefore the deceased had gone to bed within that time--a deduction which was of the greatest importance in clearing up the case. All these I may sketch out at some future date, but none of them present such singular features as the strange train of circumstances which I have now taken up my pen to describe. It was in the latter days of September, and the equinoctial gales had set in with exceptional violence. All day the wind had screamed and the rain had beaten against the windows, so that even here in the heart of great, hand-made London we were forced to raise our minds for the instant from the routine of life and to recognise the presence of those great elemental forces which shriek at mankind through the bars of his civilisation, like untamed beasts in a cage. As evening drew in, the storm grew higher and louder, and the wind cried and sobbed like a child in the chimney. Sherlock Holmes sat moodily at one side of the fireplace cross-indexing his records of crime, while I at the other was deep in one of Clark Russell's fine sea-stories until the howl of the gale from without seemed to blend with the text, and the splash of the rain to lengthen out into the long swash of the sea waves. My wife was on a visit to her mother's, and for a few days I was a dweller once more in my old quarters at Baker Street. "Why," said I, glancing up at my companion, "that was surely the bell. Who could come to-night? Some friend of yours, perhaps?" "Except yourself I have none," he answered. "I do not encourage visitors." "A client, then?" "If so, it is a serious case. Nothing less would bring a man out on such a day and at such an hour. But I take it that it is more likely to be some crony of the landlady's." Sherlock Holmes was wrong in his conjecture, however, for there came a step in the passage and a tapping at the door. He stretched out his long arm to turn the lamp away from himself and towards the vacant chair upon which a newcomer must sit. "Come in!" said he. The man who entered was young, some two-and-twenty at the outside, well-groomed and trimly clad, with something of refinement and delicacy in his bearing. The streaming umbrella which he held in his hand, and his long shining waterproof told of the fierce weather through which he had come. He looked about him anxiously in the glare of the lamp, and I could see that his face was pale and his eyes heavy, like those of a man who is weighed down with some great anxiety. "I owe you an apology," he said, raising his golden pince-nez to his eyes. "I trust that I am not intruding. I fear that I have brought some traces of the storm and rain into your snug chamber." "Give me your coat and umbrella," said Holmes. "They may rest here on the hook and will be dry presently. You have come up from the south-west, I see." "Yes, from Horsham." "That clay and chalk mixture which I see upon your toe caps is quite distinctive." "I have come for advice." "That is easily got." "And help." "That is not always so easy." "I have heard of you, Mr. Holmes. I heard from Major Prendergast how you saved him in the Tankerville Club scandal." "Ah, of course. He was wrongfully accused of cheating at cards." "He said that you could solve anything." "He said too much." "That you are never beaten." "I have been beaten four times--three times by men, and once by a woman." "But what is that compared with the number of your successes?" "It is true that I have been generally successful." "Then you may be so with me." "I beg that you will draw your chair up to the fire and favour me with some details as to your case." "It is no ordinary one." "None of those which come to me are. I am the last court of appeal." "And yet I question, sir, whether, in all your experience, you have ever listened to a more mysterious and inexplicable chain of events than those which have happened in my own family." "You fill me with interest," said Holmes. "Pray give us the essential facts from the commencement, and I can afterwards question you as to those details which seem to me to be most important." The young man pulled his chair up and pushed his wet feet out towards the blaze. "My name," said he, "is John Openshaw, but my own affairs have, as far as I can understand, little to do with this awful business. It is a hereditary matter; so in order to give you an idea of the facts, I must go back to the commencement of the affair. "You must know that my grandfather had two sons--my uncle Elias and my father Joseph. My father had a small factory at Coventry, which he enlarged at the time of the invention of bicycling. He was a patentee of the Openshaw unbreakable tire, and his business met with such success that he was able to sell it and to retire upon a handsome competence. "My uncle Elias emigrated to America when he was a young man and became a planter in Florida, where he was reported to have done very well. At the time of the war he fought in Jackson's army, and afterwards under Hood, where he rose to be a colonel. When Lee laid down his arms my uncle returned to his plantation, where he remained for three or four years. About 1869 or 1870 he came back to Europe and took a small estate in Sussex, near Horsham. He had made a very considerable fortune in the States, and his reason for leaving them was his aversion to the negroes, and his dislike of the Republican policy in extending the franchise to them. He was a singular man, fierce and quick-tempered, very foul-mouthed when he was angry, and of a most retiring disposition. During all the years that he lived at Horsham, I doubt if ever he set foot in the town. He had a garden and two or three fields round his house, and there he would take his exercise, though very often for weeks on end he would never leave his room. He drank a great deal of brandy and smoked very heavily, but he would see no society and did not want any friends, not even his own brother. "He didn't mind me; in fact, he took a fancy to me, for at the time when he saw me first I was a youngster of twelve or so. This would be in the year 1878, after he had been eight or nine years in England. He begged my father to let me live with him and he was very kind to me in his way. When he was sober he used to be fond of playing backgammon and draughts with me, and he would make me his representative both with the servants and with the tradespeople, so that by the time that I was sixteen I was quite master of the house. I kept all the keys and could go where I liked and do what I liked, so long as I did not disturb him in his privacy. There was one singular exception, however, for he had a single room, a lumber-room up among the attics, which was invariably locked, and which he would never permit either me or anyone else to enter. With a boy's curiosity I have peeped through the keyhole, but I was never able to see more than such a collection of old trunks and bundles as would be expected in such a room. "One day--it was in March, 1883--a letter with a foreign stamp lay upon the table in front of the colonel's plate. It was not a common thing for him to receive letters, for his bills were all paid in ready money, and he had no friends of any sort. 'From India!' said he as he took it up, 'Pondicherry postmark! What can this be?' Opening it hurriedly, out there jumped five little dried orange pips, which pattered down upon his plate. I began to laugh at this, but the laugh was struck from my lips at the sight of his face. His lip had fallen, his eyes were protruding, his skin the colour of putty, and he glared at the envelope which he still held in his trembling hand, 'K. K. K.!' he shrieked, and then, 'My God, my God, my sins have overtaken me!' "'What is it, uncle?' I cried. "'Death,' said he, and rising from the table he retired to his room, leaving me palpitating with horror. I took up the envelope and saw scrawled in red ink upon the inner flap, just above the gum, the letter K three times repeated. There was nothing else save the five dried pips. What could be the reason of his overpowering terror? I left the breakfast-table, and as I ascended the stair I met him coming down with an old rusty key, which must have belonged to the attic, in one hand, and a small brass box, like a cashbox, in the other. "'They may do what they like, but I'll checkmate them still,' said he with an oath. 'Tell Mary that I shall want a fire in my room to-day, and send down to Fordham, the Horsham lawyer.' "I did as he ordered, and when the lawyer arrived I was asked to step up to the room. The fire was burning brightly, and in the grate there was a mass of black, fluffy ashes, as of burned paper, while the brass box stood open and empty beside it. As I glanced at the box I noticed, with a start, that upon the lid was printed the treble K which I had read in the morning upon the envelope. "'I wish you, John,' said my uncle, 'to witness my will. I leave my estate, with all its advantages and all its disadvantages, to my brother, your father, whence it will, no doubt, descend to you. If you can enjoy it in peace, well and good! If you find you cannot, take my advice, my boy, and leave it to your deadliest enemy. I am sorry to give you such a two-edged thing, but I can't say what turn things are going to take. Kindly sign the paper where Mr. Fordham shows you.' "I signed the paper as directed, and the lawyer took it away with him. The singular incident made, as you may think, the deepest impression upon me, and I pondered over it and turned it every way in my mind without being able to make anything of it. Yet I could not shake off the vague feeling of dread which it left behind, though the sensation grew less keen as the weeks passed and nothing happened to disturb the usual routine of our lives. I could see a change in my uncle, however. He drank more than ever, and he was less inclined for any sort of society. Most of his time he would spend in his room, with the door locked upon the inside, but sometimes he would emerge in a sort of drunken frenzy and would burst out of the house and tear about the garden with a revolver in his hand, screaming out that he was afraid of no man, and that he was not to be cooped up, like a sheep in a pen, by man or devil. When these hot fits were over, however, he would rush tumultuously in at the door and lock and bar it behind him, like a man who can brazen it out no longer against the terror which lies at the roots of his soul. At such times I have seen his face, even on a cold day, glisten with moisture, as though it were new raised from a basin. "Well, to come to an end of the matter, Mr. Holmes, and not to abuse your patience, there came a night when he made one of those drunken sallies from which he never came back. We found him, when we went to search for him, face downward in a little green-scummed pool, which lay at the foot of the garden. There was no sign of any violence, and the water was but two feet deep, so that the jury, having regard to his known eccentricity, brought in a verdict of 'suicide.' But I, who knew how he winced from the very thought of death, had much ado to persuade myself that he had gone out of his way to meet it. The matter passed, however, and my father entered into possession of the estate, and of some 14,000 pounds, which lay to his credit at the bank." "One moment," Holmes interposed, "your statement is, I foresee, one of the most remarkable to which I have ever listened. Let me have the date of the reception by your uncle of the letter, and the date of his supposed suicide." "The letter arrived on March 10, 1883. His death was seven weeks later, upon the night of May 2nd." "Thank you. Pray proceed." "When my father took over the Horsham property, he, at my request, made a careful examination of the attic, which had been always locked up. We found the brass box there, although its contents had been destroyed. On the inside of the cover was a paper label, with the initials of K. K. K. repeated upon it, and 'Letters, memoranda, receipts, and a register' written beneath. These, we presume, indicated the nature of the papers which had been destroyed by Colonel Openshaw. For the rest, there was nothing of much importance in the attic save a great many scattered papers and note-books bearing upon my uncle's life in America. Some of them were of the war time and showed that he had done his duty well and had borne the repute of a brave soldier. Others were of a date during the reconstruction of the Southern states, and were mostly concerned with politics, for he had evidently taken a strong part in opposing the carpet-bag politicians who had been sent down from the North. "Well, it was the beginning of '84 when my father came to live at Horsham, and all went as well as possible with us until the January of '85. On the fourth day after the new year I heard my father give a sharp cry of surprise as we sat together at the breakfast-table. There he was, sitting with a newly opened envelope in one hand and five dried orange pips in the outstretched palm of the other one. He had always laughed at what he called my cock-and-bull story about the colonel, but he looked very scared and puzzled now that the same thing had come upon himself. "'Why, what on earth does this mean, John?' he stammered. "My heart had turned to lead. 'It is K. K. K.,' said I. "He looked inside the envelope. 'So it is,' he cried. 'Here are the very letters. But what is this written above them?' "'Put the papers on the sundial,' I read, peeping over his shoulder. "'What papers? What sundial?' he asked. "'The sundial in the garden. There is no other,' said I; 'but the papers must be those that are destroyed.' "'Pooh!' said he, gripping hard at his courage. 'We are in a civilised land here, and we can't have tomfoolery of this kind. Where does the thing come from?' "'From Dundee,' I answered, glancing at the postmark. "'Some preposterous practical joke,' said he. 'What have I to do with sundials and papers? I shall take no notice of such nonsense.' "'I should certainly speak to the police,' I said. "'And be laughed at for my pains. Nothing of the sort.' "'Then let me do so?' "'No, I forbid you. I won't have a fuss made about such nonsense.' "It was in vain to argue with him, for he was a very obstinate man. I went about, however, with a heart which was full of forebodings. "On the third day after the coming of the letter my father went from home to visit an old friend of his, Major Freebody, who is in command of one of the forts upon Portsdown Hill. I was glad that he should go, for it seemed to me that he was farther from danger when he was away from home. In that, however, I was in error. Upon the second day of his absence I received a telegram from the major, imploring me to come at once. My father had fallen over one of the deep chalk-pits which abound in the neighbourhood, and was lying senseless, with a shattered skull. I hurried to him, but he passed away without having ever recovered his consciousness. He had, as it appears, been returning from Fareham in the twilight, and as the country was unknown to him, and the chalk-pit unfenced, the jury had no hesitation in bringing in a verdict of 'death from accidental causes.' Carefully as I examined every fact connected with his death, I was unable to find anything which could suggest the idea of murder. There were no signs of violence, no footmarks, no robbery, no record of strangers having been seen upon the roads. And yet I need not tell you that my mind was far from at ease, and that I was well-nigh certain that some foul plot had been woven round him. "In this sinister way I came into my inheritance. You will ask me why I did not dispose of it? I answer, because I was well convinced that our troubles were in some way dependent upon an incident in my uncle's life, and that the danger would be as pressing in one house as in another. "It was in January, '85, that my poor father met his end, and two years and eight months have elapsed since then. During that time I have lived happily at Horsham, and I had begun to hope that this curse had passed away from the family, and that it had ended with the last generation. I had begun to take comfort too soon, however; yesterday morning the blow fell in the very shape in which it had come upon my father." The young man took from his waistcoat a crumpled envelope, and turning to the table he shook out upon it five little dried orange pips. "This is the envelope," he continued. "The postmark is London--eastern division. Within are the very words which were upon my father's last message: 'K. K. K.'; and then 'Put the papers on the sundial.'" "What have you done?" asked Holmes. "Nothing." "Nothing?" "To tell the truth"--he sank his face into his thin, white hands--"I have felt helpless. I have felt like one of those poor rabbits when the snake is writhing towards it. I seem to be in the grasp of some resistless, inexorable evil, which no foresight and no precautions can guard against." "Tut! tut!" cried Sherlock Holmes. "You must act, man, or you are lost. Nothing but energy can save you. This is no time for despair." "I have seen the police." "Ah!" "But they listened to my story with a smile. I am convinced that the inspector has formed the opinion that the letters are all practical jokes, and that the deaths of my relations were really accidents, as the jury stated, and were not to be connected with the warnings." Holmes shook his clenched hands in the air. "Incredible imbecility!" he cried. "They have, however, allowed me a policeman, who may remain in the house with me." "Has he come with you to-night?" "No. His orders were to stay in the house." Again Holmes raved in the air. "Why did you come to me," he cried, "and, above all, why did you not come at once?" "I did not know. It was only to-day that I spoke to Major Prendergast about my troubles and was advised by him to come to you." "It is really two days since you had the letter. We should have acted before this. You have no further evidence, I suppose, than that which you have placed before us--no suggestive detail which might help us?" "There is one thing," said John Openshaw. He rummaged in his coat pocket, and, drawing out a piece of discoloured, blue-tinted paper, he laid it out upon the table. "I have some remembrance," said he, "that on the day when my uncle burned the papers I observed that the small, unburned margins which lay amid the ashes were of this particular colour. I found this single sheet upon the floor of his room, and I am inclined to think that it may be one of the papers which has, perhaps, fluttered out from among the others, and in that way has escaped destruction. Beyond the mention of pips, I do not see that it helps us much. I think myself that it is a page from some private diary. The writing is undoubtedly my uncle's." Holmes moved the lamp, and we both bent over the sheet of paper, which showed by its ragged edge that it had indeed been torn from a book. It was headed, "March, 1869," and beneath were the following enigmatical notices: "4th. Hudson came. Same old platform. "7th. Set the pips on McCauley, Paramore, and John Swain, of St. Augustine. "9th. McCauley cleared. "10th. John Swain cleared. "12th. Visited Paramore. All well." "Thank you!" said Holmes, folding up the paper and returning it to our visitor. "And now you must on no account lose another instant. We cannot spare time even to discuss what you have told me. You must get home instantly and act." "What shall I do?" "There is but one thing to do. It must be done at once. You must put this piece of paper which you have shown us into the brass box which you have described. You must also put in a note to say that all the other papers were burned by your uncle, and that this is the only one which remains. You must assert that in such words as will carry conviction with them. Having done this, you must at once put the box out upon the sundial, as directed. Do you understand?" "Entirely." "Do not think of revenge, or anything of the sort, at present. I think that we may gain that by means of the law; but we have our web to weave, while theirs is already woven. The first consideration is to remove the pressing danger which threatens you. The second is to clear up the mystery and to punish the guilty parties." "I thank you," said the young man, rising and pulling on his overcoat. "You have given me fresh life and hope. I shall certainly do as you advise." "Do not lose an instant. And, above all, take care of yourself in the meanwhile, for I do not think that there can be a doubt that you are threatened by a very real and imminent danger. How do you go back?" "By train from Waterloo." "It is not yet nine. The streets will be crowded, so I trust that you may be in safety. And yet you cannot guard yourself too closely." "I am armed." "That is well. To-morrow I shall set to work upon your case." "I shall see you at Horsham, then?" "No, your secret lies in London. It is there that I shall seek it." "Then I shall call upon you in a day, or in two days, with news as to the box and the papers. I shall take your advice in every particular." He shook hands with us and took his leave. Outside the wind still screamed and the rain splashed and pattered against the windows. This strange, wild story seemed to have come to us from amid the mad elements--blown in upon us like a sheet of sea-weed in a gale--and now to have been reabsorbed by them once more. Sherlock Holmes sat for some time in silence, with his head sunk forward and his eyes bent upon the red glow of the fire. Then he lit his pipe, and leaning back in his chair he watched the blue smoke-rings as they chased each other up to the ceiling. "I think, Watson," he remarked at last, "that of all our cases we have had none more fantastic than this." "Save, perhaps, the Sign of Four." "Well, yes. Save, perhaps, that. And yet this John Openshaw seems to me to be walking amid even greater perils than did the Sholtos." "But have you," I asked, "formed any definite conception as to what these perils are?" "There can be no question as to their nature," he answered. "Then what are they? Who is this K. K. K., and why does he pursue this unhappy family?" Sherlock Holmes closed his eyes and placed his elbows upon the arms of his chair, with his finger-tips together. "The ideal reasoner," he remarked, "would, when he had once been shown a single fact in all its bearings, deduce from it not only all the chain of events which led up to it but also all the results which would follow from it. As Cuvier could correctly describe a whole animal by the contemplation of a single bone, so the observer who has thoroughly understood one link in a series of incidents should be able to accurately state all the other ones, both before and after. We have not yet grasped the results which the reason alone can attain to. Problems may be solved in the study which have baffled all those who have sought a solution by the aid of their senses. To carry the art, however, to its highest pitch, it is necessary that the reasoner should be able to utilise all the facts which have come to his knowledge; and this in itself implies, as you will readily see, a possession of all knowledge, which, even in these days of free education and encyclopaedias, is a somewhat rare accomplishment. It is not so impossible, however, that a man should possess all knowledge which is likely to be useful to him in his work, and this I have endeavoured in my case to do. If I remember rightly, you on one occasion, in the early days of our friendship, defined my limits in a very precise fashion." "Yes," I answered, laughing. "It was a singular document. Philosophy, astronomy, and politics were marked at zero, I remember. Botany variable, geology profound as regards the mud-stains from any region within fifty miles of town, chemistry eccentric, anatomy unsystematic, sensational literature and crime records unique, violin-player, boxer, swordsman, lawyer, and self-poisoner by cocaine and tobacco. Those, I think, were the main points of my analysis." Holmes grinned at the last item. "Well," he said, "I say now, as I said then, that a man should keep his little brain-attic stocked with all the furniture that he is likely to use, and the rest he can put away in the lumber-room of his library, where he can get it if he wants it. Now, for such a case as the one which has been submitted to us to-night, we need certainly to muster all our resources. Kindly hand me down the letter K of the 'American Encyclopaedia' which stands upon the shelf beside you. Thank you. Now let us consider the situation and see what may be deduced from it. In the first place, we may start with a strong presumption that Colonel Openshaw had some very strong reason for leaving America. Men at his time of life do not change all their habits and exchange willingly the charming climate of Florida for the lonely life of an English provincial town. His extreme love of solitude in England suggests the idea that he was in fear of someone or something, so we may assume as a working hypothesis that it was fear of someone or something which drove him from America. As to what it was he feared, we can only deduce that by considering the formidable letters which were received by himself and his successors. Did you remark the postmarks of those letters?" "The first was from Pondicherry, the second from Dundee, and the third from London." "From East London. What do you deduce from that?" "They are all seaports. That the writer was on board of a ship." "Excellent. We have already a clue. There can be no doubt that the probability--the strong probability--is that the writer was on board of a ship. And now let us consider another point. In the case of Pondicherry, seven weeks elapsed between the threat and its fulfilment, in Dundee it was only some three or four days. Does that suggest anything?" "A greater distance to travel." "But the letter had also a greater distance to come." "Then I do not see the point." "There is at least a presumption that the vessel in which the man or men are is a sailing-ship. It looks as if they always send their singular warning or token before them when starting upon their mission. You see how quickly the deed followed the sign when it came from Dundee. If they had come from Pondicherry in a steamer they would have arrived almost as soon as their letter. But, as a matter of fact, seven weeks elapsed. I think that those seven weeks represented the difference between the mail-boat which brought the letter and the sailing vessel which brought the writer." "It is possible." "More than that. It is probable. And now you see the deadly urgency of this new case, and why I urged young Openshaw to caution. The blow has always fallen at the end of the time which it would take the senders to travel the distance. But this one comes from London, and therefore we cannot count upon delay." "Good God!" I cried. "What can it mean, this relentless persecution?" "The papers which Openshaw carried are obviously of vital importance to the person or persons in the sailing-ship. I think that it is quite clear that there must be more than one of them. A single man could not have carried out two deaths in such a way as to deceive a coroner's jury. There must have been several in it, and they must have been men of resource and determination. Their papers they mean to have, be the holder of them who it may. In this way you see K. K. K. ceases to be the initials of an individual and becomes the badge of a society." "But of what society?" "Have you never--" said Sherlock Holmes, bending forward and sinking his voice--"have you never heard of the Ku Klux Klan?" "I never have." Holmes turned over the leaves of the book upon his knee. "Here it is," said he presently: "'Ku Klux Klan. A name derived from the fanciful resemblance to the sound produced by cocking a rifle. This terrible secret society was formed by some ex-Confederate soldiers in the Southern states after the Civil War, and it rapidly formed local branches in different parts of the country, notably in Tennessee, Louisiana, the Carolinas, Georgia, and Florida. Its power was used for political purposes, principally for the terrorising of the negro voters and the murdering and driving from the country of those who were opposed to its views. Its outrages were usually preceded by a warning sent to the marked man in some fantastic but generally recognised shape--a sprig of oak-leaves in some parts, melon seeds or orange pips in others. On receiving this the victim might either openly abjure his former ways, or might fly from the country. If he braved the matter out, death would unfailingly come upon him, and usually in some strange and unforeseen manner. So perfect was the organisation of the society, and so systematic its methods, that there is hardly a case upon record where any man succeeded in braving it with impunity, or in which any of its outrages were traced home to the perpetrators. For some years the organisation flourished in spite of the efforts of the United States government and of the better classes of the community in the South. Eventually, in the year 1869, the movement rather suddenly collapsed, although there have been sporadic outbreaks of the same sort since that date.' "You will observe," said Holmes, laying down the volume, "that the sudden breaking up of the society was coincident with the disappearance of Openshaw from America with their papers. It may well have been cause and effect. It is no wonder that he and his family have some of the more implacable spirits upon their track. You can understand that this register and diary may implicate some of the first men in the South, and that there may be many who will not sleep easy at night until it is recovered." "Then the page we have seen--" "Is such as we might expect. It ran, if I remember right, 'sent the pips to A, B, and C'--that is, sent the society's warning to them. Then there are successive entries that A and B cleared, or left the country, and finally that C was visited, with, I fear, a sinister result for C. Well, I think, Doctor, that we may let some light into this dark place, and I believe that the only chance young Openshaw has in the meantime is to do what I have told him. There is nothing more to be said or to be done to-night, so hand me over my violin and let us try to forget for half an hour the miserable weather and the still more miserable ways of our fellow-men." It had cleared in the morning, and the sun was shining with a subdued brightness through the dim veil which hangs over the great city. Sherlock Holmes was already at breakfast when I came down. "You will excuse me for not waiting for you," said he; "I have, I foresee, a very busy day before me in looking into this case of young Openshaw's." "What steps will you take?" I asked. "It will very much depend upon the results of my first inquiries. I may have to go down to Horsham, after all." "You will not go there first?" "No, I shall commence with the City. Just ring the bell and the maid will bring up your coffee." As I waited, I lifted the unopened newspaper from the table and glanced my eye over it. It rested upon a heading which sent a chill to my heart. "Holmes," I cried, "you are too late." "Ah!" said he, laying down his cup, "I feared as much. How was it done?" He spoke calmly, but I could see that he was deeply moved. "My eye caught the name of Openshaw, and the heading 'Tragedy Near Waterloo Bridge.' Here is the account: "Between nine and ten last night Police-Constable Cook, of the H Division, on duty near Waterloo Bridge, heard a cry for help and a splash in the water. The night, however, was extremely dark and stormy, so that, in spite of the help of several passers-by, it was quite impossible to effect a rescue. The alarm, however, was given, and, by the aid of the water-police, the body was eventually recovered. It proved to be that of a young gentleman whose name, as it appears from an envelope which was found in his pocket, was John Openshaw, and whose residence is near Horsham. It is conjectured that he may have been hurrying down to catch the last train from Waterloo Station, and that in his haste and the extreme darkness he missed his path and walked over the edge of one of the small landing-places for river steamboats. The body exhibited no traces of violence, and there can be no doubt that the deceased had been the victim of an unfortunate accident, which should have the effect of calling the attention of the authorities to the condition of the riverside landing-stages." We sat in silence for some minutes, Holmes more depressed and shaken than I had ever seen him. "That hurts my pride, Watson," he said at last. "It is a petty feeling, no doubt, but it hurts my pride. It becomes a personal matter with me now, and, if God sends me health, I shall set my hand upon this gang. That he should come to me for help, and that I should send him away to his death--!" He sprang from his chair and paced about the room in uncontrollable agitation, with a flush upon his sallow cheeks and a nervous clasping and unclasping of his long thin hands. "They must be cunning devils," he exclaimed at last. "How could they have decoyed him down there? The Embankment is not on the direct line to the station. The bridge, no doubt, was too crowded, even on such a night, for their purpose. Well, Watson, we shall see who will win in the long run. I am going out now!" "To the police?" "No; I shall be my own police. When I have spun the web they may take the flies, but not before." All day I was engaged in my professional work, and it was late in the evening before I returned to Baker Street. Sherlock Holmes had not come back yet. It was nearly ten o'clock before he entered, looking pale and worn. He walked up to the sideboard, and tearing a piece from the loaf he devoured it voraciously, washing it down with a long draught of water. "You are hungry," I remarked. "Starving. It had escaped my memory. I have had nothing since breakfast." "Nothing?" "Not a bite. I had no time to think of it." "And how have you succeeded?" "Well." "You have a clue?" "I have them in the hollow of my hand. Young Openshaw shall not long remain unavenged. Why, Watson, let us put their own devilish trade-mark upon them. It is well thought of!" "What do you mean?" He took an orange from the cupboard, and tearing it to pieces he squeezed out the pips upon the table. Of these he took five and thrust them into an envelope. On the inside of the flap he wrote "S. H. for J. O." Then he sealed it and addressed it to "Captain James Calhoun, Barque 'Lone Star,' Savannah, Georgia." "That will await him when he enters port," said he, chuckling. "It may give him a sleepless night. He will find it as sure a precursor of his fate as Openshaw did before him." "And who is this Captain Calhoun?" "The leader of the gang. I shall have the others, but he first." "How did you trace it, then?" He took a large sheet of paper from his pocket, all covered with dates and names. "I have spent the whole day," said he, "over Lloyd's registers and files of the old papers, following the future career of every vessel which touched at Pondicherry in January and February in '83. There were thirty-six ships of fair tonnage which were reported there during those months. Of these, one, the 'Lone Star,' instantly attracted my attention, since, although it was reported as having cleared from London, the name is that which is given to one of the states of the Union." "Texas, I think." "I was not and am not sure which; but I knew that the ship must have an American origin." "What then?" "I searched the Dundee records, and when I found that the barque 'Lone Star' was there in January, '85, my suspicion became a certainty. I then inquired as to the vessels which lay at present in the port of London." "Yes?" "The 'Lone Star' had arrived here last week. I went down to the Albert Dock and found that she had been taken down the river by the early tide this morning, homeward bound to Savannah. I wired to Gravesend and learned that she had passed some time ago, and as the wind is easterly I have no doubt that she is now past the Goodwins and not very far from the Isle of Wight." "What will you do, then?" "Oh, I have my hand upon him. He and the two mates, are as I learn, the only native-born Americans in the ship. The others are Finns and Germans. I know, also, that they were all three away from the ship last night. I had it from the stevedore who has been loading their cargo. By the time that their sailing-ship reaches Savannah the mail-boat will have carried this letter, and the cable will have informed the police of Savannah that these three gentlemen are badly wanted here upon a charge of murder." There is ever a flaw, however, in the best laid of human plans, and the murderers of John Openshaw were never to receive the orange pips which would show them that another, as cunning and as resolute as themselves, was upon their track. Very long and very severe were the equinoctial gales that year. We waited long for news of the "Lone Star" of Savannah, but none ever reached us. We did at last hear that somewhere far out in the Atlantic a shattered stern-post of a boat was seen swinging in the trough of a wave, with the letters "L. S." carved upon it, and that is all which we shall ever know of the fate of the "Lone Star." ADVENTURE VI. THE MAN WITH THE TWISTED LIP Isa Whitney, brother of the late Elias Whitney, D.D., Principal of the Theological College of St. George's, was much addicted to opium. The habit grew upon him, as I understand, from some foolish freak when he was at college; for having read De Quincey's description of his dreams and sensations, he had drenched his tobacco with laudanum in an attempt to produce the same effects. He found, as so many more have done, that the practice is easier to attain than to get rid of, and for many years he continued to be a slave to the drug, an object of mingled horror and pity to his friends and relatives. I can see him now, with yellow, pasty face, drooping lids, and pin-point pupils, all huddled in a chair, the wreck and ruin of a noble man. One night--it was in June, '89--there came a ring to my bell, about the hour when a man gives his first yawn and glances at the clock. I sat up in my chair, and my wife laid her needle-work down in her lap and made a little face of disappointment. "A patient!" said she. "You'll have to go out." I groaned, for I was newly come back from a weary day. We heard the door open, a few hurried words, and then quick steps upon the linoleum. Our own door flew open, and a lady, clad in some dark-coloured stuff, with a black veil, entered the room. "You will excuse my calling so late," she began, and then, suddenly losing her self-control, she ran forward, threw her arms about my wife's neck, and sobbed upon her shoulder. "Oh, I'm in such trouble!" she cried; "I do so want a little help." "Why," said my wife, pulling up her veil, "it is Kate Whitney. How you startled me, Kate! I had not an idea who you were when you came in." "I didn't know what to do, so I came straight to you." That was always the way. Folk who were in grief came to my wife like birds to a light-house. "It was very sweet of you to come. Now, you must have some wine and water, and sit here comfortably and tell us all about it. Or should you rather that I sent James off to bed?" "Oh, no, no! I want the doctor's advice and help, too. It's about Isa. He has not been home for two days. I am so frightened about him!" It was not the first time that she had spoken to us of her husband's trouble, to me as a doctor, to my wife as an old friend and school companion. We soothed and comforted her by such words as we could find. Did she know where her husband was? Was it possible that we could bring him back to her? It seems that it was. She had the surest information that of late he had, when the fit was on him, made use of an opium den in the farthest east of the City. Hitherto his orgies had always been confined to one day, and he had come back, twitching and shattered, in the evening. But now the spell had been upon him eight-and-forty hours, and he lay there, doubtless among the dregs of the docks, breathing in the poison or sleeping off the effects. There he was to be found, she was sure of it, at the Bar of Gold, in Upper Swandam Lane. But what was she to do? How could she, a young and timid woman, make her way into such a place and pluck her husband out from among the ruffians who surrounded him? There was the case, and of course there was but one way out of it. Might I not escort her to this place? And then, as a second thought, why should she come at all? I was Isa Whitney's medical adviser, and as such I had influence over him. I could manage it better if I were alone. I promised her on my word that I would send him home in a cab within two hours if he were indeed at the address which she had given me. And so in ten minutes I had left my armchair and cheery sitting-room behind me, and was speeding eastward in a hansom on a strange errand, as it seemed to me at the time, though the future only could show how strange it was to be. But there was no great difficulty in the first stage of my adventure. Upper Swandam Lane is a vile alley lurking behind the high wharves which line the north side of the river to the east of London Bridge. Between a slop-shop and a gin-shop, approached by a steep flight of steps leading down to a black gap like the mouth of a cave, I found the den of which I was in search. Ordering my cab to wait, I passed down the steps, worn hollow in the centre by the ceaseless tread of drunken feet; and by the light of a flickering oil-lamp above the door I found the latch and made my way into a long, low room, thick and heavy with the brown opium smoke, and terraced with wooden berths, like the forecastle of an emigrant ship. Through the gloom one could dimly catch a glimpse of bodies lying in strange fantastic poses, bowed shoulders, bent knees, heads thrown back, and chins pointing upward, with here and there a dark, lack-lustre eye turned upon the newcomer. Out of the black shadows there glimmered little red circles of light, now bright, now faint, as the burning poison waxed or waned in the bowls of the metal pipes. The most lay silent, but some muttered to themselves, and others talked together in a strange, low, monotonous voice, their conversation coming in gushes, and then suddenly tailing off into silence, each mumbling out his own thoughts and paying little heed to the words of his neighbour. At the farther end was a small brazier of burning charcoal, beside which on a three-legged wooden stool there sat a tall, thin old man, with his jaw resting upon his two fists, and his elbows upon his knees, staring into the fire. As I entered, a sallow Malay attendant had hurried up with a pipe for me and a supply of the drug, beckoning me to an empty berth. "Thank you. I have not come to stay," said I. "There is a friend of mine here, Mr. Isa Whitney, and I wish to speak with him." There was a movement and an exclamation from my right, and peering through the gloom, I saw Whitney, pale, haggard, and unkempt, staring out at me. "My God! It's Watson," said he. He was in a pitiable state of reaction, with every nerve in a twitter. "I say, Watson, what o'clock is it?" "Nearly eleven." "Of what day?" "Of Friday, June 19th." "Good heavens! I thought it was Wednesday. It is Wednesday. What d'you want to frighten a chap for?" He sank his face onto his arms and began to sob in a high treble key. "I tell you that it is Friday, man. Your wife has been waiting this two days for you. You should be ashamed of yourself!" "So I am. But you've got mixed, Watson, for I have only been here a few hours, three pipes, four pipes--I forget how many. But I'll go home with you. I wouldn't frighten Kate--poor little Kate. Give me your hand! Have you a cab?" "Yes, I have one waiting." "Then I shall go in it. But I must owe something. Find what I owe, Watson. I am all off colour. I can do nothing for myself." I walked down the narrow passage between the double row of sleepers, holding my breath to keep out the vile, stupefying fumes of the drug, and looking about for the manager. As I passed the tall man who sat by the brazier I felt a sudden pluck at my skirt, and a low voice whispered, "Walk past me, and then look back at me." The words fell quite distinctly upon my ear. I glanced down. They could only have come from the old man at my side, and yet he sat now as absorbed as ever, very thin, very wrinkled, bent with age, an opium pipe dangling down from between his knees, as though it had dropped in sheer lassitude from his fingers. I took two steps forward and looked back. It took all my self-control to prevent me from breaking out into a cry of astonishment. He had turned his back so that none could see him but I. His form had filled out, his wrinkles were gone, the dull eyes had regained their fire, and there, sitting by the fire and grinning at my surprise, was none other than Sherlock Holmes. He made a slight motion to me to approach him, and instantly, as he turned his face half round to the company once more, subsided into a doddering, loose-lipped senility. "Holmes!" I whispered, "what on earth are you doing in this den?" "As low as you can," he answered; "I have excellent ears. If you would have the great kindness to get rid of that sottish friend of yours I should be exceedingly glad to have a little talk with you." "I have a cab outside." "Then pray send him home in it. You may safely trust him, for he appears to be too limp to get into any mischief. I should recommend you also to send a note by the cabman to your wife to say that you have thrown in your lot with me. If you will wait outside, I shall be with you in five minutes." It was difficult to refuse any of Sherlock Holmes' requests, for they were always so exceedingly definite, and put forward with such a quiet air of mastery. I felt, however, that when Whitney was once confined in the cab my mission was practically accomplished; and for the rest, I could not wish anything better than to be associated with my friend in one of those singular adventures which were the normal condition of his existence. In a few minutes I had written my note, paid Whitney's bill, led him out to the cab, and seen him driven through the darkness. In a very short time a decrepit figure had emerged from the opium den, and I was walking down the street with Sherlock Holmes. For two streets he shuffled along with a bent back and an uncertain foot. Then, glancing quickly round, he straightened himself out and burst into a hearty fit of laughter. "I suppose, Watson," said he, "that you imagine that I have added opium-smoking to cocaine injections, and all the other little weaknesses on which you have favoured me with your medical views." "I was certainly surprised to find you there." "But not more so than I to find you." "I came to find a friend." "And I to find an enemy." "An enemy?" "Yes; one of my natural enemies, or, shall I say, my natural prey. Briefly, Watson, I am in the midst of a very remarkable inquiry, and I have hoped to find a clue in the incoherent ramblings of these sots, as I have done before now. Had I been recognised in that den my life would not have been worth an hour's purchase; for I have used it before now for my own purposes, and the rascally Lascar who runs it has sworn to have vengeance upon me. There is a trap-door at the back of that building, near the corner of Paul's Wharf, which could tell some strange tales of what has passed through it upon the moonless nights." "What! You do not mean bodies?" "Ay, bodies, Watson. We should be rich men if we had 1000 pounds for every poor devil who has been done to death in that den. It is the vilest murder-trap on the whole riverside, and I fear that Neville St. Clair has entered it never to leave it more. But our trap should be here." He put his two forefingers between his teeth and whistled shrilly--a signal which was answered by a similar whistle from the distance, followed shortly by the rattle of wheels and the clink of horses' hoofs. "Now, Watson," said Holmes, as a tall dog-cart dashed up through the gloom, throwing out two golden tunnels of yellow light from its side lanterns. "You'll come with me, won't you?" "If I can be of use." "Oh, a trusty comrade is always of use; and a chronicler still more so. My room at The Cedars is a double-bedded one." "The Cedars?" "Yes; that is Mr. St. Clair's house. I am staying there while I conduct the inquiry." "Where is it, then?" "Near Lee, in Kent. We have a seven-mile drive before us." "But I am all in the dark." "Of course you are. You'll know all about it presently. Jump up here. All right, John; we shall not need you. Here's half a crown. Look out for me to-morrow, about eleven. Give her her head. So long, then!" He flicked the horse with his whip, and we dashed away through the endless succession of sombre and deserted streets, which widened gradually, until we were flying across a broad balustraded bridge, with the murky river flowing sluggishly beneath us. Beyond lay another dull wilderness of bricks and mortar, its silence broken only by the heavy, regular footfall of the policeman, or the songs and shouts of some belated party of revellers. A dull wrack was drifting slowly across the sky, and a star or two twinkled dimly here and there through the rifts of the clouds. Holmes drove in silence, with his head sunk upon his breast, and the air of a man who is lost in thought, while I sat beside him, curious to learn what this new quest might be which seemed to tax his powers so sorely, and yet afraid to break in upon the current of his thoughts. We had driven several miles, and were beginning to get to the fringe of the belt of suburban villas, when he shook himself, shrugged his shoulders, and lit up his pipe with the air of a man who has satisfied himself that he is acting for the best. "You have a grand gift of silence, Watson," said he. "It makes you quite invaluable as a companion. 'Pon my word, it is a great thing for me to have someone to talk to, for my own thoughts are not over-pleasant. I was wondering what I should say to this dear little woman to-night when she meets me at the door." "You forget that I know nothing about it." "I shall just have time to tell you the facts of the case before we get to Lee. It seems absurdly simple, and yet, somehow I can get nothing to go upon. There's plenty of thread, no doubt, but I can't get the end of it into my hand. Now, I'll state the case clearly and concisely to you, Watson, and maybe you can see a spark where all is dark to me." "Proceed, then." "Some years ago--to be definite, in May, 1884--there came to Lee a gentleman, Neville St. Clair by name, who appeared to have plenty of money. He took a large villa, laid out the grounds very nicely, and lived generally in good style. By degrees he made friends in the neighbourhood, and in 1887 he married the daughter of a local brewer, by whom he now has two children. He had no occupation, but was interested in several companies and went into town as a rule in the morning, returning by the 5:14 from Cannon Street every night. Mr. St. Clair is now thirty-seven years of age, is a man of temperate habits, a good husband, a very affectionate father, and a man who is popular with all who know him. I may add that his whole debts at the present moment, as far as we have been able to ascertain, amount to 88 pounds 10s., while he has 220 pounds standing to his credit in the Capital and Counties Bank. There is no reason, therefore, to think that money troubles have been weighing upon his mind. "Last Monday Mr. Neville St. Clair went into town rather earlier than usual, remarking before he started that he had two important commissions to perform, and that he would bring his little boy home a box of bricks. Now, by the merest chance, his wife received a telegram upon this same Monday, very shortly after his departure, to the effect that a small parcel of considerable value which she had been expecting was waiting for her at the offices of the Aberdeen Shipping Company. Now, if you are well up in your London, you will know that the office of the company is in Fresno Street, which branches out of Upper Swandam Lane, where you found me to-night. Mrs. St. Clair had her lunch, started for the City, did some shopping, proceeded to the company's office, got her packet, and found herself at exactly 4:35 walking through Swandam Lane on her way back to the station. Have you followed me so far?" "It is very clear." "If you remember, Monday was an exceedingly hot day, and Mrs. St. Clair walked slowly, glancing about in the hope of seeing a cab, as she did not like the neighbourhood in which she found herself. While she was walking in this way down Swandam Lane, she suddenly heard an ejaculation or cry, and was struck cold to see her husband looking down at her and, as it seemed to her, beckoning to her from a second-floor window. The window was open, and she distinctly saw his face, which she describes as being terribly agitated. He waved his hands frantically to her, and then vanished from the window so suddenly that it seemed to her that he had been plucked back by some irresistible force from behind. One singular point which struck her quick feminine eye was that although he wore some dark coat, such as he had started to town in, he had on neither collar nor necktie. "Convinced that something was amiss with him, she rushed down the steps--for the house was none other than the opium den in which you found me to-night--and running through the front room she attempted to ascend the stairs which led to the first floor. At the foot of the stairs, however, she met this Lascar scoundrel of whom I have spoken, who thrust her back and, aided by a Dane, who acts as assistant there, pushed her out into the street. Filled with the most maddening doubts and fears, she rushed down the lane and, by rare good-fortune, met in Fresno Street a number of constables with an inspector, all on their way to their beat. The inspector and two men accompanied her back, and in spite of the continued resistance of the proprietor, they made their way to the room in which Mr. St. Clair had last been seen. There was no sign of him there. In fact, in the whole of that floor there was no one to be found save a crippled wretch of hideous aspect, who, it seems, made his home there. Both he and the Lascar stoutly swore that no one else had been in the front room during the afternoon. So determined was their denial that the inspector was staggered, and had almost come to believe that Mrs. St. Clair had been deluded when, with a cry, she sprang at a small deal box which lay upon the table and tore the lid from it. Out there fell a cascade of children's bricks. It was the toy which he had promised to bring home. "This discovery, and the evident confusion which the cripple showed, made the inspector realise that the matter was serious. The rooms were carefully examined, and results all pointed to an abominable crime. The front room was plainly furnished as a sitting-room and led into a small bedroom, which looked out upon the back of one of the wharves. Between the wharf and the bedroom window is a narrow strip, which is dry at low tide but is covered at high tide with at least four and a half feet of water. The bedroom window was a broad one and opened from below. On examination traces of blood were to be seen upon the windowsill, and several scattered drops were visible upon the wooden floor of the bedroom. Thrust away behind a curtain in the front room were all the clothes of Mr. Neville St. Clair, with the exception of his coat. His boots, his socks, his hat, and his watch--all were there. There were no signs of violence upon any of these garments, and there were no other traces of Mr. Neville St. Clair. Out of the window he must apparently have gone for no other exit could be discovered, and the ominous bloodstains upon the sill gave little promise that he could save himself by swimming, for the tide was at its very highest at the moment of the tragedy. "And now as to the villains who seemed to be immediately implicated in the matter. The Lascar was known to be a man of the vilest antecedents, but as, by Mrs. St. Clair's story, he was known to have been at the foot of the stair within a very few seconds of her husband's appearance at the window, he could hardly have been more than an accessory to the crime. His defence was one of absolute ignorance, and he protested that he had no knowledge as to the doings of Hugh Boone, his lodger, and that he could not account in any way for the presence of the missing gentleman's clothes. "So much for the Lascar manager. Now for the sinister cripple who lives upon the second floor of the opium den, and who was certainly the last human being whose eyes rested upon Neville St. Clair. His name is Hugh Boone, and his hideous face is one which is familiar to every man who goes much to the City. He is a professional beggar, though in order to avoid the police regulations he pretends to a small trade in wax vestas. Some little distance down Threadneedle Street, upon the left-hand side, there is, as you may have remarked, a small angle in the wall. Here it is that this creature takes his daily seat, cross-legged with his tiny stock of matches on his lap, and as he is a piteous spectacle a small rain of charity descends into the greasy leather cap which lies upon the pavement beside him. I have watched the fellow more than once before ever I thought of making his professional acquaintance, and I have been surprised at the harvest which he has reaped in a short time. His appearance, you see, is so remarkable that no one can pass him without observing him. A shock of orange hair, a pale face disfigured by a horrible scar, which, by its contraction, has turned up the outer edge of his upper lip, a bulldog chin, and a pair of very penetrating dark eyes, which present a singular contrast to the colour of his hair, all mark him out from amid the common crowd of mendicants and so, too, does his wit, for he is ever ready with a reply to any piece of chaff which may be thrown at him by the passers-by. This is the man whom we now learn to have been the lodger at the opium den, and to have been the last man to see the gentleman of whom we are in quest." "But a cripple!" said I. "What could he have done single-handed against a man in the prime of life?" "He is a cripple in the sense that he walks with a limp; but in other respects he appears to be a powerful and well-nurtured man. Surely your medical experience would tell you, Watson, that weakness in one limb is often compensated for by exceptional strength in the others." "Pray continue your narrative." "Mrs. St. Clair had fainted at the sight of the blood upon the window, and she was escorted home in a cab by the police, as her presence could be of no help to them in their investigations. Inspector Barton, who had charge of the case, made a very careful examination of the premises, but without finding anything which threw any light upon the matter. One mistake had been made in not arresting Boone instantly, as he was allowed some few minutes during which he might have communicated with his friend the Lascar, but this fault was soon remedied, and he was seized and searched, without anything being found which could incriminate him. There were, it is true, some blood-stains upon his right shirt-sleeve, but he pointed to his ring-finger, which had been cut near the nail, and explained that the bleeding came from there, adding that he had been to the window not long before, and that the stains which had been observed there came doubtless from the same source. He denied strenuously having ever seen Mr. Neville St. Clair and swore that the presence of the clothes in his room was as much a mystery to him as to the police. As to Mrs. St. Clair's assertion that she had actually seen her husband at the window, he declared that she must have been either mad or dreaming. He was removed, loudly protesting, to the police-station, while the inspector remained upon the premises in the hope that the ebbing tide might afford some fresh clue. "And it did, though they hardly found upon the mud-bank what they had feared to find. It was Neville St. Clair's coat, and not Neville St. Clair, which lay uncovered as the tide receded. And what do you think they found in the pockets?" "I cannot imagine." "No, I don't think you would guess. Every pocket stuffed with pennies and half-pennies--421 pennies and 270 half-pennies. It was no wonder that it had not been swept away by the tide. But a human body is a different matter. There is a fierce eddy between the wharf and the house. It seemed likely enough that the weighted coat had remained when the stripped body had been sucked away into the river." "But I understand that all the other clothes were found in the room. Would the body be dressed in a coat alone?" "No, sir, but the facts might be met speciously enough. Suppose that this man Boone had thrust Neville St. Clair through the window, there is no human eye which could have seen the deed. What would he do then? It would of course instantly strike him that he must get rid of the tell-tale garments. He would seize the coat, then, and be in the act of throwing it out, when it would occur to him that it would swim and not sink. He has little time, for he has heard the scuffle downstairs when the wife tried to force her way up, and perhaps he has already heard from his Lascar confederate that the police are hurrying up the street. There is not an instant to be lost. He rushes to some secret hoard, where he has accumulated the fruits of his beggary, and he stuffs all the coins upon which he can lay his hands into the pockets to make sure of the coat's sinking. He throws it out, and would have done the same with the other garments had not he heard the rush of steps below, and only just had time to close the window when the police appeared." "It certainly sounds feasible." "Well, we will take it as a working hypothesis for want of a better. Boone, as I have told you, was arrested and taken to the station, but it could not be shown that there had ever before been anything against him. He had for years been known as a professional beggar, but his life appeared to have been a very quiet and innocent one. There the matter stands at present, and the questions which have to be solved--what Neville St. Clair was doing in the opium den, what happened to him when there, where is he now, and what Hugh Boone had to do with his disappearance--are all as far from a solution as ever. I confess that I cannot recall any case within my experience which looked at the first glance so simple and yet which presented such difficulties." While Sherlock Holmes had been detailing this singular series of events, we had been whirling through the outskirts of the great town until the last straggling houses had been left behind, and we rattled along with a country hedge upon either side of us. Just as he finished, however, we drove through two scattered villages, where a few lights still glimmered in the windows. "We are on the outskirts of Lee," said my companion. "We have touched on three English counties in our short drive, starting in Middlesex, passing over an angle of Surrey, and ending in Kent. See that light among the trees? That is The Cedars, and beside that lamp sits a woman whose anxious ears have already, I have little doubt, caught the clink of our horse's feet." "But why are you not conducting the case from Baker Street?" I asked. "Because there are many inquiries which must be made out here. Mrs. St. Clair has most kindly put two rooms at my disposal, and you may rest assured that she will have nothing but a welcome for my friend and colleague. I hate to meet her, Watson, when I have no news of her husband. Here we are. Whoa, there, whoa!" We had pulled up in front of a large villa which stood within its own grounds. A stable-boy had run out to the horse's head, and springing down, I followed Holmes up the small, winding gravel-drive which led to the house. As we approached, the door flew open, and a little blonde woman stood in the opening, clad in some sort of light mousseline de soie, with a touch of fluffy pink chiffon at her neck and wrists. She stood with her figure outlined against the flood of light, one hand upon the door, one half-raised in her eagerness, her body slightly bent, her head and face protruded, with eager eyes and parted lips, a standing question. "Well?" she cried, "well?" And then, seeing that there were two of us, she gave a cry of hope which sank into a groan as she saw that my companion shook his head and shrugged his shoulders. "No good news?" "None." "No bad?" "No." "Thank God for that. But come in. You must be weary, for you have had a long day." "This is my friend, Dr. Watson. He has been of most vital use to me in several of my cases, and a lucky chance has made it possible for me to bring him out and associate him with this investigation." "I am delighted to see you," said she, pressing my hand warmly. "You will, I am sure, forgive anything that may be wanting in our arrangements, when you consider the blow which has come so suddenly upon us." "My dear madam," said I, "I am an old campaigner, and if I were not I can very well see that no apology is needed. If I can be of any assistance, either to you or to my friend here, I shall be indeed happy." "Now, Mr. Sherlock Holmes," said the lady as we entered a well-lit dining-room, upon the table of which a cold supper had been laid out, "I should very much like to ask you one or two plain questions, to which I beg that you will give a plain answer." "Certainly, madam." "Do not trouble about my feelings. I am not hysterical, nor given to fainting. I simply wish to hear your real, real opinion." "Upon what point?" "In your heart of hearts, do you think that Neville is alive?" Sherlock Holmes seemed to be embarrassed by the question. "Frankly, now!" she repeated, standing upon the rug and looking keenly down at him as he leaned back in a basket-chair. "Frankly, then, madam, I do not." "You think that he is dead?" "I do." "Murdered?" "I don't say that. Perhaps." "And on what day did he meet his death?" "On Monday." "Then perhaps, Mr. Holmes, you will be good enough to explain how it is that I have received a letter from him to-day." Sherlock Holmes sprang out of his chair as if he had been galvanised. "What!" he roared. "Yes, to-day." She stood smiling, holding up a little slip of paper in the air. "May I see it?" "Certainly." He snatched it from her in his eagerness, and smoothing it out upon the table he drew over the lamp and examined it intently. I had left my chair and was gazing at it over his shoulder. The envelope was a very coarse one and was stamped with the Gravesend postmark and with the date of that very day, or rather of the day before, for it was considerably after midnight. "Coarse writing," murmured Holmes. "Surely this is not your husband's writing, madam." "No, but the enclosure is." "I perceive also that whoever addressed the envelope had to go and inquire as to the address." "How can you tell that?" "The name, you see, is in perfectly black ink, which has dried itself. The rest is of the greyish colour, which shows that blotting-paper has been used. If it had been written straight off, and then blotted, none would be of a deep black shade. This man has written the name, and there has then been a pause before he wrote the address, which can only mean that he was not familiar with it. It is, of course, a trifle, but there is nothing so important as trifles. Let us now see the letter. Ha! there has been an enclosure here!" "Yes, there was a ring. His signet-ring." "And you are sure that this is your husband's hand?" "One of his hands." "One?" "His hand when he wrote hurriedly. It is very unlike his usual writing, and yet I know it well." "'Dearest do not be frightened. All will come well. There is a huge error which it may take some little time to rectify. Wait in patience.--NEVILLE.' Written in pencil upon the fly-leaf of a book, octavo size, no water-mark. Hum! Posted to-day in Gravesend by a man with a dirty thumb. Ha! And the flap has been gummed, if I am not very much in error, by a person who had been chewing tobacco. And you have no doubt that it is your husband's hand, madam?" "None. Neville wrote those words." "And they were posted to-day at Gravesend. Well, Mrs. St. Clair, the clouds lighten, though I should not venture to say that the danger is over." "But he must be alive, Mr. Holmes." "Unless this is a clever forgery to put us on the wrong scent. The ring, after all, proves nothing. It may have been taken from him." "No, no; it is, it is his very own writing!" "Very well. It may, however, have been written on Monday and only posted to-day." "That is possible." "If so, much may have happened between." "Oh, you must not discourage me, Mr. Holmes. I know that all is well with him. There is so keen a sympathy between us that I should know if evil came upon him. On the very day that I saw him last he cut himself in the bedroom, and yet I in the dining-room rushed upstairs instantly with the utmost certainty that something had happened. Do you think that I would respond to such a trifle and yet be ignorant of his death?" "I have seen too much not to know that the impression of a woman may be more valuable than the conclusion of an analytical reasoner. And in this letter you certainly have a very strong piece of evidence to corroborate your view. But if your husband is alive and able to write letters, why should he remain away from you?" "I cannot imagine. It is unthinkable." "And on Monday he made no remarks before leaving you?" "No." "And you were surprised to see him in Swandam Lane?" "Very much so." "Was the window open?" "Yes." "Then he might have called to you?" "He might." "He only, as I understand, gave an inarticulate cry?" "Yes." "A call for help, you thought?" "Yes. He waved his hands." "But it might have been a cry of surprise. Astonishment at the unexpected sight of you might cause him to throw up his hands?" "It is possible." "And you thought he was pulled back?" "He disappeared so suddenly." "He might have leaped back. You did not see anyone else in the room?" "No, but this horrible man confessed to having been there, and the Lascar was at the foot of the stairs." "Quite so. Your husband, as far as you could see, had his ordinary clothes on?" "But without his collar or tie. I distinctly saw his bare throat." "Had he ever spoken of Swandam Lane?" "Never." "Had he ever showed any signs of having taken opium?" "Never." "Thank you, Mrs. St. Clair. Those are the principal points about which I wished to be absolutely clear. We shall now have a little supper and then retire, for we may have a very busy day to-morrow." A large and comfortable double-bedded room had been placed at our disposal, and I was quickly between the sheets, for I was weary after my night of adventure. Sherlock Holmes was a man, however, who, when he had an unsolved problem upon his mind, would go for days, and even for a week, without rest, turning it over, rearranging his facts, looking at it from every point of view until he had either fathomed it or convinced himself that his data were insufficient. It was soon evident to me that he was now preparing for an all-night sitting. He took off his coat and waistcoat, put on a large blue dressing-gown, and then wandered about the room collecting pillows from his bed and cushions from the sofa and armchairs. With these he constructed a sort of Eastern divan, upon which he perched himself cross-legged, with an ounce of shag tobacco and a box of matches laid out in front of him. In the dim light of the lamp I saw him sitting there, an old briar pipe between his lips, his eyes fixed vacantly upon the corner of the ceiling, the blue smoke curling up from him, silent, motionless, with the light shining upon his strong-set aquiline features. So he sat as I dropped off to sleep, and so he sat when a sudden ejaculation caused me to wake up, and I found the summer sun shining into the apartment. The pipe was still between his lips, the smoke still curled upward, and the room was full of a dense tobacco haze, but nothing remained of the heap of shag which I had seen upon the previous night. "Awake, Watson?" he asked. "Yes." "Game for a morning drive?" "Certainly." "Then dress. No one is stirring yet, but I know where the stable-boy sleeps, and we shall soon have the trap out." He chuckled to himself as he spoke, his eyes twinkled, and he seemed a different man to the sombre thinker of the previous night. As I dressed I glanced at my watch. It was no wonder that no one was stirring. It was twenty-five minutes past four. I had hardly finished when Holmes returned with the news that the boy was putting in the horse. "I want to test a little theory of mine," said he, pulling on his boots. "I think, Watson, that you are now standing in the presence of one of the most absolute fools in Europe. I deserve to be kicked from here to Charing Cross. But I think I have the key of the affair now." "And where is it?" I asked, smiling. "In the bathroom," he answered. "Oh, yes, I am not joking," he continued, seeing my look of incredulity. "I have just been there, and I have taken it out, and I have got it in this Gladstone bag. Come on, my boy, and we shall see whether it will not fit the lock." We made our way downstairs as quietly as possible, and out into the bright morning sunshine. In the road stood our horse and trap, with the half-clad stable-boy waiting at the head. We both sprang in, and away we dashed down the London Road. A few country carts were stirring, bearing in vegetables to the metropolis, but the lines of villas on either side were as silent and lifeless as some city in a dream. "It has been in some points a singular case," said Holmes, flicking the horse on into a gallop. "I confess that I have been as blind as a mole, but it is better to learn wisdom late than never to learn it at all." In town the earliest risers were just beginning to look sleepily from their windows as we drove through the streets of the Surrey side. Passing down the Waterloo Bridge Road we crossed over the river, and dashing up Wellington Street wheeled sharply to the right and found ourselves in Bow Street. Sherlock Holmes was well known to the force, and the two constables at the door saluted him. One of them held the horse's head while the other led us in. "Who is on duty?" asked Holmes. "Inspector Bradstreet, sir." "Ah, Bradstreet, how are you?" A tall, stout official had come down the stone-flagged passage, in a peaked cap and frogged jacket. "I wish to have a quiet word with you, Bradstreet." "Certainly, Mr. Holmes. Step into my room here." It was a small, office-like room, with a huge ledger upon the table, and a telephone projecting from the wall. The inspector sat down at his desk. "What can I do for you, Mr. Holmes?" "I called about that beggarman, Boone--the one who was charged with being concerned in the disappearance of Mr. Neville St. Clair, of Lee." "Yes. He was brought up and remanded for further inquiries." "So I heard. You have him here?" "In the cells." "Is he quiet?" "Oh, he gives no trouble. But he is a dirty scoundrel." "Dirty?" "Yes, it is all we can do to make him wash his hands, and his face is as black as a tinker's. Well, when once his case has been settled, he will have a regular prison bath; and I think, if you saw him, you would agree with me that he needed it." "I should like to see him very much." "Would you? That is easily done. Come this way. You can leave your bag." "No, I think that I'll take it." "Very good. Come this way, if you please." He led us down a passage, opened a barred door, passed down a winding stair, and brought us to a whitewashed corridor with a line of doors on each side. "The third on the right is his," said the inspector. "Here it is!" He quietly shot back a panel in the upper part of the door and glanced through. "He is asleep," said he. "You can see him very well." We both put our eyes to the grating. The prisoner lay with his face towards us, in a very deep sleep, breathing slowly and heavily. He was a middle-sized man, coarsely clad as became his calling, with a coloured shirt protruding through the rent in his tattered coat. He was, as the inspector had said, extremely dirty, but the grime which covered his face could not conceal its repulsive ugliness. A broad wheal from an old scar ran right across it from eye to chin, and by its contraction had turned up one side of the upper lip, so that three teeth were exposed in a perpetual snarl. A shock of very bright red hair grew low over his eyes and forehead. "He's a beauty, isn't he?" said the inspector. "He certainly needs a wash," remarked Holmes. "I had an idea that he might, and I took the liberty of bringing the tools with me." He opened the Gladstone bag as he spoke, and took out, to my astonishment, a very large bath-sponge. "He! he! You are a funny one," chuckled the inspector. "Now, if you will have the great goodness to open that door very quietly, we will soon make him cut a much more respectable figure." "Well, I don't know why not," said the inspector. "He doesn't look a credit to the Bow Street cells, does he?" He slipped his key into the lock, and we all very quietly entered the cell. The sleeper half turned, and then settled down once more into a deep slumber. Holmes stooped to the water-jug, moistened his sponge, and then rubbed it twice vigorously across and down the prisoner's face. "Let me introduce you," he shouted, "to Mr. Neville St. Clair, of Lee, in the county of Kent." Never in my life have I seen such a sight. The man's face peeled off under the sponge like the bark from a tree. Gone was the coarse brown tint! Gone, too, was the horrid scar which had seamed it across, and the twisted lip which had given the repulsive sneer to the face! A twitch brought away the tangled red hair, and there, sitting up in his bed, was a pale, sad-faced, refined-looking man, black-haired and smooth-skinned, rubbing his eyes and staring about him with sleepy bewilderment. Then suddenly realising the exposure, he broke into a scream and threw himself down with his face to the pillow. "Great heavens!" cried the inspector, "it is, indeed, the missing man. I know him from the photograph." The prisoner turned with the reckless air of a man who abandons himself to his destiny. "Be it so," said he. "And pray what am I charged with?" "With making away with Mr. Neville St.-- Oh, come, you can't be charged with that unless they make a case of attempted suicide of it," said the inspector with a grin. "Well, I have been twenty-seven years in the force, but this really takes the cake." "If I am Mr. Neville St. Clair, then it is obvious that no crime has been committed, and that, therefore, I am illegally detained." "No crime, but a very great error has been committed," said Holmes. "You would have done better to have trusted your wife." "It was not the wife; it was the children," groaned the prisoner. "God help me, I would not have them ashamed of their father. My God! What an exposure! What can I do?" Sherlock Holmes sat down beside him on the couch and patted him kindly on the shoulder. "If you leave it to a court of law to clear the matter up," said he, "of course you can hardly avoid publicity. On the other hand, if you convince the police authorities that there is no possible case against you, I do not know that there is any reason that the details should find their way into the papers. Inspector Bradstreet would, I am sure, make notes upon anything which you might tell us and submit it to the proper authorities. The case would then never go into court at all." "God bless you!" cried the prisoner passionately. "I would have endured imprisonment, ay, even execution, rather than have left my miserable secret as a family blot to my children. "You are the first who have ever heard my story. My father was a schoolmaster in Chesterfield, where I received an excellent education. I travelled in my youth, took to the stage, and finally became a reporter on an evening paper in London. One day my editor wished to have a series of articles upon begging in the metropolis, and I volunteered to supply them. There was the point from which all my adventures started. It was only by trying begging as an amateur that I could get the facts upon which to base my articles. When an actor I had, of course, learned all the secrets of making up, and had been famous in the green-room for my skill. I took advantage now of my attainments. I painted my face, and to make myself as pitiable as possible I made a good scar and fixed one side of my lip in a twist by the aid of a small slip of flesh-coloured plaster. Then with a red head of hair, and an appropriate dress, I took my station in the business part of the city, ostensibly as a match-seller but really as a beggar. For seven hours I plied my trade, and when I returned home in the evening I found to my surprise that I had received no less than 26s. 4d. "I wrote my articles and thought little more of the matter until, some time later, I backed a bill for a friend and had a writ served upon me for 25 pounds. I was at my wit's end where to get the money, but a sudden idea came to me. I begged a fortnight's grace from the creditor, asked for a holiday from my employers, and spent the time in begging in the City under my disguise. In ten days I had the money and had paid the debt. "Well, you can imagine how hard it was to settle down to arduous work at 2 pounds a week when I knew that I could earn as much in a day by smearing my face with a little paint, laying my cap on the ground, and sitting still. It was a long fight between my pride and the money, but the dollars won at last, and I threw up reporting and sat day after day in the corner which I had first chosen, inspiring pity by my ghastly face and filling my pockets with coppers. Only one man knew my secret. He was the keeper of a low den in which I used to lodge in Swandam Lane, where I could every morning emerge as a squalid beggar and in the evenings transform myself into a well-dressed man about town. This fellow, a Lascar, was well paid by me for his rooms, so that I knew that my secret was safe in his possession. "Well, very soon I found that I was saving considerable sums of money. I do not mean that any beggar in the streets of London could earn 700 pounds a year--which is less than my average takings--but I had exceptional advantages in my power of making up, and also in a facility of repartee, which improved by practice and made me quite a recognised character in the City. All day a stream of pennies, varied by silver, poured in upon me, and it was a very bad day in which I failed to take 2 pounds. "As I grew richer I grew more ambitious, took a house in the country, and eventually married, without anyone having a suspicion as to my real occupation. My dear wife knew that I had business in the City. She little knew what. "Last Monday I had finished for the day and was dressing in my room above the opium den when I looked out of my window and saw, to my horror and astonishment, that my wife was standing in the street, with her eyes fixed full upon me. I gave a cry of surprise, threw up my arms to cover my face, and, rushing to my confidant, the Lascar, entreated him to prevent anyone from coming up to me. I heard her voice downstairs, but I knew that she could not ascend. Swiftly I threw off my clothes, pulled on those of a beggar, and put on my pigments and wig. Even a wife's eyes could not pierce so complete a disguise. But then it occurred to me that there might be a search in the room, and that the clothes might betray me. I threw open the window, reopening by my violence a small cut which I had inflicted upon myself in the bedroom that morning. Then I seized my coat, which was weighted by the coppers which I had just transferred to it from the leather bag in which I carried my takings. I hurled it out of the window, and it disappeared into the Thames. The other clothes would have followed, but at that moment there was a rush of constables up the stair, and a few minutes after I found, rather, I confess, to my relief, that instead of being identified as Mr. Neville St. Clair, I was arrested as his murderer. "I do not know that there is anything else for me to explain. I was determined to preserve my disguise as long as possible, and hence my preference for a dirty face. Knowing that my wife would be terribly anxious, I slipped off my ring and confided it to the Lascar at a moment when no constable was watching me, together with a hurried scrawl, telling her that she had no cause to fear." "That note only reached her yesterday," said Holmes. "Good God! What a week she must have spent!" "The police have watched this Lascar," said Inspector Bradstreet, "and I can quite understand that he might find it difficult to post a letter unobserved. Probably he handed it to some sailor customer of his, who forgot all about it for some days." "That was it," said Holmes, nodding approvingly; "I have no doubt of it. But have you never been prosecuted for begging?" "Many times; but what was a fine to me?" "It must stop here, however," said Bradstreet. "If the police are to hush this thing up, there must be no more of Hugh Boone." "I have sworn it by the most solemn oaths which a man can take." "In that case I think that it is probable that no further steps may be taken. But if you are found again, then all must come out. I am sure, Mr. Holmes, that we are very much indebted to you for having cleared the matter up. I wish I knew how you reach your results." "I reached this one," said my friend, "by sitting upon five pillows and consuming an ounce of shag. I think, Watson, that if we drive to Baker Street we shall just be in time for breakfast." VII. THE ADVENTURE OF THE BLUE CARBUNCLE I had called upon my friend Sherlock Holmes upon the second morning after Christmas, with the intention of wishing him the compliments of the season. He was lounging upon the sofa in a purple dressing-gown, a pipe-rack within his reach upon the right, and a pile of crumpled morning papers, evidently newly studied, near at hand. Beside the couch was a wooden chair, and on the angle of the back hung a very seedy and disreputable hard-felt hat, much the worse for wear, and cracked in several places. A lens and a forceps lying upon the seat of the chair suggested that the hat had been suspended in this manner for the purpose of examination. "You are engaged," said I; "perhaps I interrupt you." "Not at all. I am glad to have a friend with whom I can discuss my results. The matter is a perfectly trivial one"--he jerked his thumb in the direction of the old hat--"but there are points in connection with it which are not entirely devoid of interest and even of instruction." I seated myself in his armchair and warmed my hands before his crackling fire, for a sharp frost had set in, and the windows were thick with the ice crystals. "I suppose," I remarked, "that, homely as it looks, this thing has some deadly story linked on to it--that it is the clue which will guide you in the solution of some mystery and the punishment of some crime." "No, no. No crime," said Sherlock Holmes, laughing. "Only one of those whimsical little incidents which will happen when you have four million human beings all jostling each other within the space of a few square miles. Amid the action and reaction of so dense a swarm of humanity, every possible combination of events may be expected to take place, and many a little problem will be presented which may be striking and bizarre without being criminal. We have already had experience of such." "So much so," I remarked, "that of the last six cases which I have added to my notes, three have been entirely free of any legal crime." "Precisely. You allude to my attempt to recover the Irene Adler papers, to the singular case of Miss Mary Sutherland, and to the adventure of the man with the twisted lip. Well, I have no doubt that this small matter will fall into the same innocent category. You know Peterson, the commissionaire?" "Yes." "It is to him that this trophy belongs." "It is his hat." "No, no, he found it. Its owner is unknown. I beg that you will look upon it not as a battered billycock but as an intellectual problem. And, first, as to how it came here. It arrived upon Christmas morning, in company with a good fat goose, which is, I have no doubt, roasting at this moment in front of Peterson's fire. The facts are these: about four o'clock on Christmas morning, Peterson, who, as you know, is a very honest fellow, was returning from some small jollification and was making his way homeward down Tottenham Court Road. In front of him he saw, in the gaslight, a tallish man, walking with a slight stagger, and carrying a white goose slung over his shoulder. As he reached the corner of Goodge Street, a row broke out between this stranger and a little knot of roughs. One of the latter knocked off the man's hat, on which he raised his stick to defend himself and, swinging it over his head, smashed the shop window behind him. Peterson had rushed forward to protect the stranger from his assailants; but the man, shocked at having broken the window, and seeing an official-looking person in uniform rushing towards him, dropped his goose, took to his heels, and vanished amid the labyrinth of small streets which lie at the back of Tottenham Court Road. The roughs had also fled at the appearance of Peterson, so that he was left in possession of the field of battle, and also of the spoils of victory in the shape of this battered hat and a most unimpeachable Christmas goose." "Which surely he restored to their owner?" "My dear fellow, there lies the problem. It is true that 'For Mrs. Henry Baker' was printed upon a small card which was tied to the bird's left leg, and it is also true that the initials 'H. B.' are legible upon the lining of this hat, but as there are some thousands of Bakers, and some hundreds of Henry Bakers in this city of ours, it is not easy to restore lost property to any one of them." "What, then, did Peterson do?" "He brought round both hat and goose to me on Christmas morning, knowing that even the smallest problems are of interest to me. The goose we retained until this morning, when there were signs that, in spite of the slight frost, it would be well that it should be eaten without unnecessary delay. Its finder has carried it off, therefore, to fulfil the ultimate destiny of a goose, while I continue to retain the hat of the unknown gentleman who lost his Christmas dinner." "Did he not advertise?" "No." "Then, what clue could you have as to his identity?" "Only as much as we can deduce." "From his hat?" "Precisely." "But you are joking. What can you gather from this old battered felt?" "Here is my lens. You know my methods. What can you gather yourself as to the individuality of the man who has worn this article?" I took the tattered object in my hands and turned it over rather ruefully. It was a very ordinary black hat of the usual round shape, hard and much the worse for wear. The lining had been of red silk, but was a good deal discoloured. There was no maker's name; but, as Holmes had remarked, the initials "H. B." were scrawled upon one side. It was pierced in the brim for a hat-securer, but the elastic was missing. For the rest, it was cracked, exceedingly dusty, and spotted in several places, although there seemed to have been some attempt to hide the discoloured patches by smearing them with ink. "I can see nothing," said I, handing it back to my friend. "On the contrary, Watson, you can see everything. You fail, however, to reason from what you see. You are too timid in drawing your inferences." "Then, pray tell me what it is that you can infer from this hat?" He picked it up and gazed at it in the peculiar introspective fashion which was characteristic of him. "It is perhaps less suggestive than it might have been," he remarked, "and yet there are a few inferences which are very distinct, and a few others which represent at least a strong balance of probability. That the man was highly intellectual is of course obvious upon the face of it, and also that he was fairly well-to-do within the last three years, although he has now fallen upon evil days. He had foresight, but has less now than formerly, pointing to a moral retrogression, which, when taken with the decline of his fortunes, seems to indicate some evil influence, probably drink, at work upon him. This may account also for the obvious fact that his wife has ceased to love him." "My dear Holmes!" "He has, however, retained some degree of self-respect," he continued, disregarding my remonstrance. "He is a man who leads a sedentary life, goes out little, is out of training entirely, is middle-aged, has grizzled hair which he has had cut within the last few days, and which he anoints with lime-cream. These are the more patent facts which are to be deduced from his hat. Also, by the way, that it is extremely improbable that he has gas laid on in his house." "You are certainly joking, Holmes." "Not in the least. Is it possible that even now, when I give you these results, you are unable to see how they are attained?" "I have no doubt that I am very stupid, but I must confess that I am unable to follow you. For example, how did you deduce that this man was intellectual?" For answer Holmes clapped the hat upon his head. It came right over the forehead and settled upon the bridge of his nose. "It is a question of cubic capacity," said he; "a man with so large a brain must have something in it." "The decline of his fortunes, then?" "This hat is three years old. These flat brims curled at the edge came in then. It is a hat of the very best quality. Look at the band of ribbed silk and the excellent lining. If this man could afford to buy so expensive a hat three years ago, and has had no hat since, then he has assuredly gone down in the world." "Well, that is clear enough, certainly. But how about the foresight and the moral retrogression?" Sherlock Holmes laughed. "Here is the foresight," said he putting his finger upon the little disc and loop of the hat-securer. "They are never sold upon hats. If this man ordered one, it is a sign of a certain amount of foresight, since he went out of his way to take this precaution against the wind. But since we see that he has broken the elastic and has not troubled to replace it, it is obvious that he has less foresight now than formerly, which is a distinct proof of a weakening nature. On the other hand, he has endeavoured to conceal some of these stains upon the felt by daubing them with ink, which is a sign that he has not entirely lost his self-respect." "Your reasoning is certainly plausible." "The further points, that he is middle-aged, that his hair is grizzled, that it has been recently cut, and that he uses lime-cream, are all to be gathered from a close examination of the lower part of the lining. The lens discloses a large number of hair-ends, clean cut by the scissors of the barber. They all appear to be adhesive, and there is a distinct odour of lime-cream. This dust, you will observe, is not the gritty, grey dust of the street but the fluffy brown dust of the house, showing that it has been hung up indoors most of the time, while the marks of moisture upon the inside are proof positive that the wearer perspired very freely, and could therefore, hardly be in the best of training." "But his wife--you said that she had ceased to love him." "This hat has not been brushed for weeks. When I see you, my dear Watson, with a week's accumulation of dust upon your hat, and when your wife allows you to go out in such a state, I shall fear that you also have been unfortunate enough to lose your wife's affection." "But he might be a bachelor." "Nay, he was bringing home the goose as a peace-offering to his wife. Remember the card upon the bird's leg." "You have an answer to everything. But how on earth do you deduce that the gas is not laid on in his house?" "One tallow stain, or even two, might come by chance; but when I see no less than five, I think that there can be little doubt that the individual must be brought into frequent contact with burning tallow--walks upstairs at night probably with his hat in one hand and a guttering candle in the other. Anyhow, he never got tallow-stains from a gas-jet. Are you satisfied?" "Well, it is very ingenious," said I, laughing; "but since, as you said just now, there has been no crime committed, and no harm done save the loss of a goose, all this seems to be rather a waste of energy." Sherlock Holmes had opened his mouth to reply, when the door flew open, and Peterson, the commissionaire, rushed into the apartment with flushed cheeks and the face of a man who is dazed with astonishment. "The goose, Mr. Holmes! The goose, sir!" he gasped. "Eh? What of it, then? Has it returned to life and flapped off through the kitchen window?" Holmes twisted himself round upon the sofa to get a fairer view of the man's excited face. "See here, sir! See what my wife found in its crop!" He held out his hand and displayed upon the centre of the palm a brilliantly scintillating blue stone, rather smaller than a bean in size, but of such purity and radiance that it twinkled like an electric point in the dark hollow of his hand. Sherlock Holmes sat up with a whistle. "By Jove, Peterson!" said he, "this is treasure trove indeed. I suppose you know what you have got?" "A diamond, sir? A precious stone. It cuts into glass as though it were putty." "It's more than a precious stone. It is the precious stone." "Not the Countess of Morcar's blue carbuncle!" I ejaculated. "Precisely so. I ought to know its size and shape, seeing that I have read the advertisement about it in The Times every day lately. It is absolutely unique, and its value can only be conjectured, but the reward offered of 1000 pounds is certainly not within a twentieth part of the market price." "A thousand pounds! Great Lord of mercy!" The commissionaire plumped down into a chair and stared from one to the other of us. "That is the reward, and I have reason to know that there are sentimental considerations in the background which would induce the Countess to part with half her fortune if she could but recover the gem." "It was lost, if I remember aright, at the Hotel Cosmopolitan," I remarked. "Precisely so, on December 22nd, just five days ago. John Horner, a plumber, was accused of having abstracted it from the lady's jewel-case. The evidence against him was so strong that the case has been referred to the Assizes. I have some account of the matter here, I believe." He rummaged amid his newspapers, glancing over the dates, until at last he smoothed one out, doubled it over, and read the following paragraph: "Hotel Cosmopolitan Jewel Robbery. John Horner, 26, plumber, was brought up upon the charge of having upon the 22nd inst., abstracted from the jewel-case of the Countess of Morcar the valuable gem known as the blue carbuncle. James Ryder, upper-attendant at the hotel, gave his evidence to the effect that he had shown Horner up to the dressing-room of the Countess of Morcar upon the day of the robbery in order that he might solder the second bar of the grate, which was loose. He had remained with Horner some little time, but had finally been called away. On returning, he found that Horner had disappeared, that the bureau had been forced open, and that the small morocco casket in which, as it afterwards transpired, the Countess was accustomed to keep her jewel, was lying empty upon the dressing-table. Ryder instantly gave the alarm, and Horner was arrested the same evening; but the stone could not be found either upon his person or in his rooms. Catherine Cusack, maid to the Countess, deposed to having heard Ryder's cry of dismay on discovering the robbery, and to having rushed into the room, where she found matters as described by the last witness. Inspector Bradstreet, B division, gave evidence as to the arrest of Horner, who struggled frantically, and protested his innocence in the strongest terms. Evidence of a previous conviction for robbery having been given against the prisoner, the magistrate refused to deal summarily with the offence, but referred it to the Assizes. Horner, who had shown signs of intense emotion during the proceedings, fainted away at the conclusion and was carried out of court." "Hum! So much for the police-court," said Holmes thoughtfully, tossing aside the paper. "The question for us now to solve is the sequence of events leading from a rifled jewel-case at one end to the crop of a goose in Tottenham Court Road at the other. You see, Watson, our little deductions have suddenly assumed a much more important and less innocent aspect. Here is the stone; the stone came from the goose, and the goose came from Mr. Henry Baker, the gentleman with the bad hat and all the other characteristics with which I have bored you. So now we must set ourselves very seriously to finding this gentleman and ascertaining what part he has played in this little mystery. To do this, we must try the simplest means first, and these lie undoubtedly in an advertisement in all the evening papers. If this fail, I shall have recourse to other methods." "What will you say?" "Give me a pencil and that slip of paper. Now, then: 'Found at the corner of Goodge Street, a goose and a black felt hat. Mr. Henry Baker can have the same by applying at 6:30 this evening at 221B, Baker Street.' That is clear and concise." "Very. But will he see it?" "Well, he is sure to keep an eye on the papers, since, to a poor man, the loss was a heavy one. He was clearly so scared by his mischance in breaking the window and by the approach of Peterson that he thought of nothing but flight, but since then he must have bitterly regretted the impulse which caused him to drop his bird. Then, again, the introduction of his name will cause him to see it, for everyone who knows him will direct his attention to it. Here you are, Peterson, run down to the advertising agency and have this put in the evening papers." "In which, sir?" "Oh, in the Globe, Star, Pall Mall, St. James's, Evening News, Standard, Echo, and any others that occur to you." "Very well, sir. And this stone?" "Ah, yes, I shall keep the stone. Thank you. And, I say, Peterson, just buy a goose on your way back and leave it here with me, for we must have one to give to this gentleman in place of the one which your family is now devouring." When the commissionaire had gone, Holmes took up the stone and held it against the light. "It's a bonny thing," said he. "Just see how it glints and sparkles. Of course it is a nucleus and focus of crime. Every good stone is. They are the devil's pet baits. In the larger and older jewels every facet may stand for a bloody deed. This stone is not yet twenty years old. It was found in the banks of the Amoy River in southern China and is remarkable in having every characteristic of the carbuncle, save that it is blue in shade instead of ruby red. In spite of its youth, it has already a sinister history. There have been two murders, a vitriol-throwing, a suicide, and several robberies brought about for the sake of this forty-grain weight of crystallised charcoal. Who would think that so pretty a toy would be a purveyor to the gallows and the prison? I'll lock it up in my strong box now and drop a line to the Countess to say that we have it." "Do you think that this man Horner is innocent?" "I cannot tell." "Well, then, do you imagine that this other one, Henry Baker, had anything to do with the matter?" "It is, I think, much more likely that Henry Baker is an absolutely innocent man, who had no idea that the bird which he was carrying was of considerably more value than if it were made of solid gold. That, however, I shall determine by a very simple test if we have an answer to our advertisement." "And you can do nothing until then?" "Nothing." "In that case I shall continue my professional round. But I shall come back in the evening at the hour you have mentioned, for I should like to see the solution of so tangled a business." "Very glad to see you. I dine at seven. There is a woodcock, I believe. By the way, in view of recent occurrences, perhaps I ought to ask Mrs. Hudson to examine its crop." I had been delayed at a case, and it was a little after half-past six when I found myself in Baker Street once more. As I approached the house I saw a tall man in a Scotch bonnet with a coat which was buttoned up to his chin waiting outside in the bright semicircle which was thrown from the fanlight. Just as I arrived the door was opened, and we were shown up together to Holmes' room. "Mr. Henry Baker, I believe," said he, rising from his armchair and greeting his visitor with the easy air of geniality which he could so readily assume. "Pray take this chair by the fire, Mr. Baker. It is a cold night, and I observe that your circulation is more adapted for summer than for winter. Ah, Watson, you have just come at the right time. Is that your hat, Mr. Baker?" "Yes, sir, that is undoubtedly my hat." He was a large man with rounded shoulders, a massive head, and a broad, intelligent face, sloping down to a pointed beard of grizzled brown. A touch of red in nose and cheeks, with a slight tremor of his extended hand, recalled Holmes' surmise as to his habits. His rusty black frock-coat was buttoned right up in front, with the collar turned up, and his lank wrists protruded from his sleeves without a sign of cuff or shirt. He spoke in a slow staccato fashion, choosing his words with care, and gave the impression generally of a man of learning and letters who had had ill-usage at the hands of fortune. "We have retained these things for some days," said Holmes, "because we expected to see an advertisement from you giving your address. I am at a loss to know now why you did not advertise." Our visitor gave a rather shamefaced laugh. "Shillings have not been so plentiful with me as they once were," he remarked. "I had no doubt that the gang of roughs who assaulted me had carried off both my hat and the bird. I did not care to spend more money in a hopeless attempt at recovering them." "Very naturally. By the way, about the bird, we were compelled to eat it." "To eat it!" Our visitor half rose from his chair in his excitement. "Yes, it would have been of no use to anyone had we not done so. But I presume that this other goose upon the sideboard, which is about the same weight and perfectly fresh, will answer your purpose equally well?" "Oh, certainly, certainly," answered Mr. Baker with a sigh of relief. "Of course, we still have the feathers, legs, crop, and so on of your own bird, so if you wish--" The man burst into a hearty laugh. "They might be useful to me as relics of my adventure," said he, "but beyond that I can hardly see what use the disjecta membra of my late acquaintance are going to be to me. No, sir, I think that, with your permission, I will confine my attentions to the excellent bird which I perceive upon the sideboard." Sherlock Holmes glanced sharply across at me with a slight shrug of his shoulders. "There is your hat, then, and there your bird," said he. "By the way, would it bore you to tell me where you got the other one from? I am somewhat of a fowl fancier, and I have seldom seen a better grown goose." "Certainly, sir," said Baker, who had risen and tucked his newly gained property under his arm. "There are a few of us who frequent the Alpha Inn, near the Museum--we are to be found in the Museum itself during the day, you understand. This year our good host, Windigate by name, instituted a goose club, by which, on consideration of some few pence every week, we were each to receive a bird at Christmas. My pence were duly paid, and the rest is familiar to you. I am much indebted to you, sir, for a Scotch bonnet is fitted neither to my years nor my gravity." With a comical pomposity of manner he bowed solemnly to both of us and strode off upon his way. "So much for Mr. Henry Baker," said Holmes when he had closed the door behind him. "It is quite certain that he knows nothing whatever about the matter. Are you hungry, Watson?" "Not particularly." "Then I suggest that we turn our dinner into a supper and follow up this clue while it is still hot." "By all means." It was a bitter night, so we drew on our ulsters and wrapped cravats about our throats. Outside, the stars were shining coldly in a cloudless sky, and the breath of the passers-by blew out into smoke like so many pistol shots. Our footfalls rang out crisply and loudly as we swung through the doctors' quarter, Wimpole Street, Harley Street, and so through Wigmore Street into Oxford Street. In a quarter of an hour we were in Bloomsbury at the Alpha Inn, which is a small public-house at the corner of one of the streets which runs down into Holborn. Holmes pushed open the door of the private bar and ordered two glasses of beer from the ruddy-faced, white-aproned landlord. "Your beer should be excellent if it is as good as your geese," said he. "My geese!" The man seemed surprised. "Yes. I was speaking only half an hour ago to Mr. Henry Baker, who was a member of your goose club." "Ah! yes, I see. But you see, sir, them's not our geese." "Indeed! Whose, then?" "Well, I got the two dozen from a salesman in Covent Garden." "Indeed? I know some of them. Which was it?" "Breckinridge is his name." "Ah! I don't know him. Well, here's your good health landlord, and prosperity to your house. Good-night." "Now for Mr. Breckinridge," he continued, buttoning up his coat as we came out into the frosty air. "Remember, Watson that though we have so homely a thing as a goose at one end of this chain, we have at the other a man who will certainly get seven years' penal servitude unless we can establish his innocence. It is possible that our inquiry may but confirm his guilt; but, in any case, we have a line of investigation which has been missed by the police, and which a singular chance has placed in our hands. Let us follow it out to the bitter end. Faces to the south, then, and quick march!" We passed across Holborn, down Endell Street, and so through a zigzag of slums to Covent Garden Market. One of the largest stalls bore the name of Breckinridge upon it, and the proprietor a horsey-looking man, with a sharp face and trim side-whiskers was helping a boy to put up the shutters. "Good-evening. It's a cold night," said Holmes. The salesman nodded and shot a questioning glance at my companion. "Sold out of geese, I see," continued Holmes, pointing at the bare slabs of marble. "Let you have five hundred to-morrow morning." "That's no good." "Well, there are some on the stall with the gas-flare." "Ah, but I was recommended to you." "Who by?" "The landlord of the Alpha." "Oh, yes; I sent him a couple of dozen." "Fine birds they were, too. Now where did you get them from?" To my surprise the question provoked a burst of anger from the salesman. "Now, then, mister," said he, with his head cocked and his arms akimbo, "what are you driving at? Let's have it straight, now." "It is straight enough. I should like to know who sold you the geese which you supplied to the Alpha." "Well then, I shan't tell you. So now!" "Oh, it is a matter of no importance; but I don't know why you should be so warm over such a trifle." "Warm! You'd be as warm, maybe, if you were as pestered as I am. When I pay good money for a good article there should be an end of the business; but it's 'Where are the geese?' and 'Who did you sell the geese to?' and 'What will you take for the geese?' One would think they were the only geese in the world, to hear the fuss that is made over them." "Well, I have no connection with any other people who have been making inquiries," said Holmes carelessly. "If you won't tell us the bet is off, that is all. But I'm always ready to back my opinion on a matter of fowls, and I have a fiver on it that the bird I ate is country bred." "Well, then, you've lost your fiver, for it's town bred," snapped the salesman. "It's nothing of the kind." "I say it is." "I don't believe it." "D'you think you know more about fowls than I, who have handled them ever since I was a nipper? I tell you, all those birds that went to the Alpha were town bred." "You'll never persuade me to believe that." "Will you bet, then?" "It's merely taking your money, for I know that I am right. But I'll have a sovereign on with you, just to teach you not to be obstinate." The salesman chuckled grimly. "Bring me the books, Bill," said he. The small boy brought round a small thin volume and a great greasy-backed one, laying them out together beneath the hanging lamp. "Now then, Mr. Cocksure," said the salesman, "I thought that I was out of geese, but before I finish you'll find that there is still one left in my shop. You see this little book?" "Well?" "That's the list of the folk from whom I buy. D'you see? Well, then, here on this page are the country folk, and the numbers after their names are where their accounts are in the big ledger. Now, then! You see this other page in red ink? Well, that is a list of my town suppliers. Now, look at that third name. Just read it out to me." "Mrs. Oakshott, 117, Brixton Road--249," read Holmes. "Quite so. Now turn that up in the ledger." Holmes turned to the page indicated. "Here you are, 'Mrs. Oakshott, 117, Brixton Road, egg and poultry supplier.'" "Now, then, what's the last entry?" "'December 22nd. Twenty-four geese at 7s. 6d.'" "Quite so. There you are. And underneath?" "'Sold to Mr. Windigate of the Alpha, at 12s.'" "What have you to say now?" Sherlock Holmes looked deeply chagrined. He drew a sovereign from his pocket and threw it down upon the slab, turning away with the air of a man whose disgust is too deep for words. A few yards off he stopped under a lamp-post and laughed in the hearty, noiseless fashion which was peculiar to him. "When you see a man with whiskers of that cut and the 'Pink 'un' protruding out of his pocket, you can always draw him by a bet," said he. "I daresay that if I had put 100 pounds down in front of him, that man would not have given me such complete information as was drawn from him by the idea that he was doing me on a wager. Well, Watson, we are, I fancy, nearing the end of our quest, and the only point which remains to be determined is whether we should go on to this Mrs. Oakshott to-night, or whether we should reserve it for to-morrow. It is clear from what that surly fellow said that there are others besides ourselves who are anxious about the matter, and I should--" His remarks were suddenly cut short by a loud hubbub which broke out from the stall which we had just left. Turning round we saw a little rat-faced fellow standing in the centre of the circle of yellow light which was thrown by the swinging lamp, while Breckinridge, the salesman, framed in the door of his stall, was shaking his fists fiercely at the cringing figure. "I've had enough of you and your geese," he shouted. "I wish you were all at the devil together. If you come pestering me any more with your silly talk I'll set the dog at you. You bring Mrs. Oakshott here and I'll answer her, but what have you to do with it? Did I buy the geese off you?" "No; but one of them was mine all the same," whined the little man. "Well, then, ask Mrs. Oakshott for it." "She told me to ask you." "Well, you can ask the King of Proosia, for all I care. I've had enough of it. Get out of this!" He rushed fiercely forward, and the inquirer flitted away into the darkness. "Ha! this may save us a visit to Brixton Road," whispered Holmes. "Come with me, and we will see what is to be made of this fellow." Striding through the scattered knots of people who lounged round the flaring stalls, my companion speedily overtook the little man and touched him upon the shoulder. He sprang round, and I could see in the gas-light that every vestige of colour had been driven from his face. "Who are you, then? What do you want?" he asked in a quavering voice. "You will excuse me," said Holmes blandly, "but I could not help overhearing the questions which you put to the salesman just now. I think that I could be of assistance to you." "You? Who are you? How could you know anything of the matter?" "My name is Sherlock Holmes. It is my business to know what other people don't know." "But you can know nothing of this?" "Excuse me, I know everything of it. You are endeavouring to trace some geese which were sold by Mrs. Oakshott, of Brixton Road, to a salesman named Breckinridge, by him in turn to Mr. Windigate, of the Alpha, and by him to his club, of which Mr. Henry Baker is a member." "Oh, sir, you are the very man whom I have longed to meet," cried the little fellow with outstretched hands and quivering fingers. "I can hardly explain to you how interested I am in this matter." Sherlock Holmes hailed a four-wheeler which was passing. "In that case we had better discuss it in a cosy room rather than in this wind-swept market-place," said he. "But pray tell me, before we go farther, who it is that I have the pleasure of assisting." The man hesitated for an instant. "My name is John Robinson," he answered with a sidelong glance. "No, no; the real name," said Holmes sweetly. "It is always awkward doing business with an alias." A flush sprang to the white cheeks of the stranger. "Well then," said he, "my real name is James Ryder." "Precisely so. Head attendant at the Hotel Cosmopolitan. Pray step into the cab, and I shall soon be able to tell you everything which you would wish to know." The little man stood glancing from one to the other of us with half-frightened, half-hopeful eyes, as one who is not sure whether he is on the verge of a windfall or of a catastrophe. Then he stepped into the cab, and in half an hour we were back in the sitting-room at Baker Street. Nothing had been said during our drive, but the high, thin breathing of our new companion, and the claspings and unclaspings of his hands, spoke of the nervous tension within him. "Here we are!" said Holmes cheerily as we filed into the room. "The fire looks very seasonable in this weather. You look cold, Mr. Ryder. Pray take the basket-chair. I will just put on my slippers before we settle this little matter of yours. Now, then! You want to know what became of those geese?" "Yes, sir." "Or rather, I fancy, of that goose. It was one bird, I imagine in which you were interested--white, with a black bar across the tail." Ryder quivered with emotion. "Oh, sir," he cried, "can you tell me where it went to?" "It came here." "Here?" "Yes, and a most remarkable bird it proved. I don't wonder that you should take an interest in it. It laid an egg after it was dead--the bonniest, brightest little blue egg that ever was seen. I have it here in my museum." Our visitor staggered to his feet and clutched the mantelpiece with his right hand. Holmes unlocked his strong-box and held up the blue carbuncle, which shone out like a star, with a cold, brilliant, many-pointed radiance. Ryder stood glaring with a drawn face, uncertain whether to claim or to disown it. "The game's up, Ryder," said Holmes quietly. "Hold up, man, or you'll be into the fire! Give him an arm back into his chair, Watson. He's not got blood enough to go in for felony with impunity. Give him a dash of brandy. So! Now he looks a little more human. What a shrimp it is, to be sure!" For a moment he had staggered and nearly fallen, but the brandy brought a tinge of colour into his cheeks, and he sat staring with frightened eyes at his accuser. "I have almost every link in my hands, and all the proofs which I could possibly need, so there is little which you need tell me. Still, that little may as well be cleared up to make the case complete. You had heard, Ryder, of this blue stone of the Countess of Morcar's?" "It was Catherine Cusack who told me of it," said he in a crackling voice. "I see--her ladyship's waiting-maid. Well, the temptation of sudden wealth so easily acquired was too much for you, as it has been for better men before you; but you were not very scrupulous in the means you used. It seems to me, Ryder, that there is the making of a very pretty villain in you. You knew that this man Horner, the plumber, had been concerned in some such matter before, and that suspicion would rest the more readily upon him. What did you do, then? You made some small job in my lady's room--you and your confederate Cusack--and you managed that he should be the man sent for. Then, when he had left, you rifled the jewel-case, raised the alarm, and had this unfortunate man arrested. You then--" Ryder threw himself down suddenly upon the rug and clutched at my companion's knees. "For God's sake, have mercy!" he shrieked. "Think of my father! Of my mother! It would break their hearts. I never went wrong before! I never will again. I swear it. I'll swear it on a Bible. Oh, don't bring it into court! For Christ's sake, don't!" "Get back into your chair!" said Holmes sternly. "It is very well to cringe and crawl now, but you thought little enough of this poor Horner in the dock for a crime of which he knew nothing." "I will fly, Mr. Holmes. I will leave the country, sir. Then the charge against him will break down." "Hum! We will talk about that. And now let us hear a true account of the next act. How came the stone into the goose, and how came the goose into the open market? Tell us the truth, for there lies your only hope of safety." Ryder passed his tongue over his parched lips. "I will tell you it just as it happened, sir," said he. "When Horner had been arrested, it seemed to me that it would be best for me to get away with the stone at once, for I did not know at what moment the police might not take it into their heads to search me and my room. There was no place about the hotel where it would be safe. I went out, as if on some commission, and I made for my sister's house. She had married a man named Oakshott, and lived in Brixton Road, where she fattened fowls for the market. All the way there every man I met seemed to me to be a policeman or a detective; and, for all that it was a cold night, the sweat was pouring down my face before I came to the Brixton Road. My sister asked me what was the matter, and why I was so pale; but I told her that I had been upset by the jewel robbery at the hotel. Then I went into the back yard and smoked a pipe and wondered what it would be best to do. "I had a friend once called Maudsley, who went to the bad, and has just been serving his time in Pentonville. One day he had met me, and fell into talk about the ways of thieves, and how they could get rid of what they stole. I knew that he would be true to me, for I knew one or two things about him; so I made up my mind to go right on to Kilburn, where he lived, and take him into my confidence. He would show me how to turn the stone into money. But how to get to him in safety? I thought of the agonies I had gone through in coming from the hotel. I might at any moment be seized and searched, and there would be the stone in my waistcoat pocket. I was leaning against the wall at the time and looking at the geese which were waddling about round my feet, and suddenly an idea came into my head which showed me how I could beat the best detective that ever lived. "My sister had told me some weeks before that I might have the pick of her geese for a Christmas present, and I knew that she was always as good as her word. I would take my goose now, and in it I would carry my stone to Kilburn. There was a little shed in the yard, and behind this I drove one of the birds--a fine big one, white, with a barred tail. I caught it, and prying its bill open, I thrust the stone down its throat as far as my finger could reach. The bird gave a gulp, and I felt the stone pass along its gullet and down into its crop. But the creature flapped and struggled, and out came my sister to know what was the matter. As I turned to speak to her the brute broke loose and fluttered off among the others. "'Whatever were you doing with that bird, Jem?' says she. "'Well,' said I, 'you said you'd give me one for Christmas, and I was feeling which was the fattest.' "'Oh,' says she, 'we've set yours aside for you--Jem's bird, we call it. It's the big white one over yonder. There's twenty-six of them, which makes one for you, and one for us, and two dozen for the market.' "'Thank you, Maggie,' says I; 'but if it is all the same to you, I'd rather have that one I was handling just now.' "'The other is a good three pound heavier,' said she, 'and we fattened it expressly for you.' "'Never mind. I'll have the other, and I'll take it now,' said I. "'Oh, just as you like,' said she, a little huffed. 'Which is it you want, then?' "'That white one with the barred tail, right in the middle of the flock.' "'Oh, very well. Kill it and take it with you.' "Well, I did what she said, Mr. Holmes, and I carried the bird all the way to Kilburn. I told my pal what I had done, for he was a man that it was easy to tell a thing like that to. He laughed until he choked, and we got a knife and opened the goose. My heart turned to water, for there was no sign of the stone, and I knew that some terrible mistake had occurred. I left the bird, rushed back to my sister's, and hurried into the back yard. There was not a bird to be seen there. "'Where are they all, Maggie?' I cried. "'Gone to the dealer's, Jem.' "'Which dealer's?' "'Breckinridge, of Covent Garden.' "'But was there another with a barred tail?' I asked, 'the same as the one I chose?' "'Yes, Jem; there were two barred-tailed ones, and I could never tell them apart.' "Well, then, of course I saw it all, and I ran off as hard as my feet would carry me to this man Breckinridge; but he had sold the lot at once, and not one word would he tell me as to where they had gone. You heard him yourselves to-night. Well, he has always answered me like that. My sister thinks that I am going mad. Sometimes I think that I am myself. And now--and now I am myself a branded thief, without ever having touched the wealth for which I sold my character. God help me! God help me!" He burst into convulsive sobbing, with his face buried in his hands. There was a long silence, broken only by his heavy breathing and by the measured tapping of Sherlock Holmes' finger-tips upon the edge of the table. Then my friend rose and threw open the door. "Get out!" said he. "What, sir! Oh, Heaven bless you!" "No more words. Get out!" And no more words were needed. There was a rush, a clatter upon the stairs, the bang of a door, and the crisp rattle of running footfalls from the street. "After all, Watson," said Holmes, reaching up his hand for his clay pipe, "I am not retained by the police to supply their deficiencies. If Horner were in danger it would be another thing; but this fellow will not appear against him, and the case must collapse. I suppose that I am commuting a felony, but it is just possible that I am saving a soul. This fellow will not go wrong again; he is too terribly frightened. Send him to gaol now, and you make him a gaol-bird for life. Besides, it is the season of forgiveness. Chance has put in our way a most singular and whimsical problem, and its solution is its own reward. If you will have the goodness to touch the bell, Doctor, we will begin another investigation, in which, also a bird will be the chief feature." VIII. THE ADVENTURE OF THE SPECKLED BAND On glancing over my notes of the seventy odd cases in which I have during the last eight years studied the methods of my friend Sherlock Holmes, I find many tragic, some comic, a large number merely strange, but none commonplace; for, working as he did rather for the love of his art than for the acquirement of wealth, he refused to associate himself with any investigation which did not tend towards the unusual, and even the fantastic. Of all these varied cases, however, I cannot recall any which presented more singular features than that which was associated with the well-known Surrey family of the Roylotts of Stoke Moran. The events in question occurred in the early days of my association with Holmes, when we were sharing rooms as bachelors in Baker Street. It is possible that I might have placed them upon record before, but a promise of secrecy was made at the time, from which I have only been freed during the last month by the untimely death of the lady to whom the pledge was given. It is perhaps as well that the facts should now come to light, for I have reasons to know that there are widespread rumours as to the death of Dr. Grimesby Roylott which tend to make the matter even more terrible than the truth. It was early in April in the year '83 that I woke one morning to find Sherlock Holmes standing, fully dressed, by the side of my bed. He was a late riser, as a rule, and as the clock on the mantelpiece showed me that it was only a quarter-past seven, I blinked up at him in some surprise, and perhaps just a little resentment, for I was myself regular in my habits. "Very sorry to knock you up, Watson," said he, "but it's the common lot this morning. Mrs. Hudson has been knocked up, she retorted upon me, and I on you." "What is it, then--a fire?" "No; a client. It seems that a young lady has arrived in a considerable state of excitement, who insists upon seeing me. She is waiting now in the sitting-room. Now, when young ladies wander about the metropolis at this hour of the morning, and knock sleepy people up out of their beds, I presume that it is something very pressing which they have to communicate. Should it prove to be an interesting case, you would, I am sure, wish to follow it from the outset. I thought, at any rate, that I should call you and give you the chance." "My dear fellow, I would not miss it for anything." I had no keener pleasure than in following Holmes in his professional investigations, and in admiring the rapid deductions, as swift as intuitions, and yet always founded on a logical basis with which he unravelled the problems which were submitted to him. I rapidly threw on my clothes and was ready in a few minutes to accompany my friend down to the sitting-room. A lady dressed in black and heavily veiled, who had been sitting in the window, rose as we entered. "Good-morning, madam," said Holmes cheerily. "My name is Sherlock Holmes. This is my intimate friend and associate, Dr. Watson, before whom you can speak as freely as before myself. Ha! I am glad to see that Mrs. Hudson has had the good sense to light the fire. Pray draw up to it, and I shall order you a cup of hot coffee, for I observe that you are shivering." "It is not cold which makes me shiver," said the woman in a low voice, changing her seat as requested. "What, then?" "It is fear, Mr. Holmes. It is terror." She raised her veil as she spoke, and we could see that she was indeed in a pitiable state of agitation, her face all drawn and grey, with restless frightened eyes, like those of some hunted animal. Her features and figure were those of a woman of thirty, but her hair was shot with premature grey, and her expression was weary and haggard. Sherlock Holmes ran her over with one of his quick, all-comprehensive glances. "You must not fear," said he soothingly, bending forward and patting her forearm. "We shall soon set matters right, I have no doubt. You have come in by train this morning, I see." "You know me, then?" "No, but I observe the second half of a return ticket in the palm of your left glove. You must have started early, and yet you had a good drive in a dog-cart, along heavy roads, before you reached the station." The lady gave a violent start and stared in bewilderment at my companion. "There is no mystery, my dear madam," said he, smiling. "The left arm of your jacket is spattered with mud in no less than seven places. The marks are perfectly fresh. There is no vehicle save a dog-cart which throws up mud in that way, and then only when you sit on the left-hand side of the driver." "Whatever your reasons may be, you are perfectly correct," said she. "I started from home before six, reached Leatherhead at twenty past, and came in by the first train to Waterloo. Sir, I can stand this strain no longer; I shall go mad if it continues. I have no one to turn to--none, save only one, who cares for me, and he, poor fellow, can be of little aid. I have heard of you, Mr. Holmes; I have heard of you from Mrs. Farintosh, whom you helped in the hour of her sore need. It was from her that I had your address. Oh, sir, do you not think that you could help me, too, and at least throw a little light through the dense darkness which surrounds me? At present it is out of my power to reward you for your services, but in a month or six weeks I shall be married, with the control of my own income, and then at least you shall not find me ungrateful." Holmes turned to his desk and, unlocking it, drew out a small case-book, which he consulted. "Farintosh," said he. "Ah yes, I recall the case; it was concerned with an opal tiara. I think it was before your time, Watson. I can only say, madam, that I shall be happy to devote the same care to your case as I did to that of your friend. As to reward, my profession is its own reward; but you are at liberty to defray whatever expenses I may be put to, at the time which suits you best. And now I beg that you will lay before us everything that may help us in forming an opinion upon the matter." "Alas!" replied our visitor, "the very horror of my situation lies in the fact that my fears are so vague, and my suspicions depend so entirely upon small points, which might seem trivial to another, that even he to whom of all others I have a right to look for help and advice looks upon all that I tell him about it as the fancies of a nervous woman. He does not say so, but I can read it from his soothing answers and averted eyes. But I have heard, Mr. Holmes, that you can see deeply into the manifold wickedness of the human heart. You may advise me how to walk amid the dangers which encompass me." "I am all attention, madam." "My name is Helen Stoner, and I am living with my stepfather, who is the last survivor of one of the oldest Saxon families in England, the Roylotts of Stoke Moran, on the western border of Surrey." Holmes nodded his head. "The name is familiar to me," said he. "The family was at one time among the richest in England, and the estates extended over the borders into Berkshire in the north, and Hampshire in the west. In the last century, however, four successive heirs were of a dissolute and wasteful disposition, and the family ruin was eventually completed by a gambler in the days of the Regency. Nothing was left save a few acres of ground, and the two-hundred-year-old house, which is itself crushed under a heavy mortgage. The last squire dragged out his existence there, living the horrible life of an aristocratic pauper; but his only son, my stepfather, seeing that he must adapt himself to the new conditions, obtained an advance from a relative, which enabled him to take a medical degree and went out to Calcutta, where, by his professional skill and his force of character, he established a large practice. In a fit of anger, however, caused by some robberies which had been perpetrated in the house, he beat his native butler to death and narrowly escaped a capital sentence. As it was, he suffered a long term of imprisonment and afterwards returned to England a morose and disappointed man. "When Dr. Roylott was in India he married my mother, Mrs. Stoner, the young widow of Major-General Stoner, of the Bengal Artillery. My sister Julia and I were twins, and we were only two years old at the time of my mother's re-marriage. She had a considerable sum of money--not less than 1000 pounds a year--and this she bequeathed to Dr. Roylott entirely while we resided with him, with a provision that a certain annual sum should be allowed to each of us in the event of our marriage. Shortly after our return to England my mother died--she was killed eight years ago in a railway accident near Crewe. Dr. Roylott then abandoned his attempts to establish himself in practice in London and took us to live with him in the old ancestral house at Stoke Moran. The money which my mother had left was enough for all our wants, and there seemed to be no obstacle to our happiness. "But a terrible change came over our stepfather about this time. Instead of making friends and exchanging visits with our neighbours, who had at first been overjoyed to see a Roylott of Stoke Moran back in the old family seat, he shut himself up in his house and seldom came out save to indulge in ferocious quarrels with whoever might cross his path. Violence of temper approaching to mania has been hereditary in the men of the family, and in my stepfather's case it had, I believe, been intensified by his long residence in the tropics. A series of disgraceful brawls took place, two of which ended in the police-court, until at last he became the terror of the village, and the folks would fly at his approach, for he is a man of immense strength, and absolutely uncontrollable in his anger. "Last week he hurled the local blacksmith over a parapet into a stream, and it was only by paying over all the money which I could gather together that I was able to avert another public exposure. He had no friends at all save the wandering gipsies, and he would give these vagabonds leave to encamp upon the few acres of bramble-covered land which represent the family estate, and would accept in return the hospitality of their tents, wandering away with them sometimes for weeks on end. He has a passion also for Indian animals, which are sent over to him by a correspondent, and he has at this moment a cheetah and a baboon, which wander freely over his grounds and are feared by the villagers almost as much as their master. "You can imagine from what I say that my poor sister Julia and I had no great pleasure in our lives. No servant would stay with us, and for a long time we did all the work of the house. She was but thirty at the time of her death, and yet her hair had already begun to whiten, even as mine has." "Your sister is dead, then?" "She died just two years ago, and it is of her death that I wish to speak to you. You can understand that, living the life which I have described, we were little likely to see anyone of our own age and position. We had, however, an aunt, my mother's maiden sister, Miss Honoria Westphail, who lives near Harrow, and we were occasionally allowed to pay short visits at this lady's house. Julia went there at Christmas two years ago, and met there a half-pay major of marines, to whom she became engaged. My stepfather learned of the engagement when my sister returned and offered no objection to the marriage; but within a fortnight of the day which had been fixed for the wedding, the terrible event occurred which has deprived me of my only companion." Sherlock Holmes had been leaning back in his chair with his eyes closed and his head sunk in a cushion, but he half opened his lids now and glanced across at his visitor. "Pray be precise as to details," said he. "It is easy for me to be so, for every event of that dreadful time is seared into my memory. The manor-house is, as I have already said, very old, and only one wing is now inhabited. The bedrooms in this wing are on the ground floor, the sitting-rooms being in the central block of the buildings. Of these bedrooms the first is Dr. Roylott's, the second my sister's, and the third my own. There is no communication between them, but they all open out into the same corridor. Do I make myself plain?" "Perfectly so." "The windows of the three rooms open out upon the lawn. That fatal night Dr. Roylott had gone to his room early, though we knew that he had not retired to rest, for my sister was troubled by the smell of the strong Indian cigars which it was his custom to smoke. She left her room, therefore, and came into mine, where she sat for some time, chatting about her approaching wedding. At eleven o'clock she rose to leave me, but she paused at the door and looked back. "'Tell me, Helen,' said she, 'have you ever heard anyone whistle in the dead of the night?' "'Never,' said I. "'I suppose that you could not possibly whistle, yourself, in your sleep?' "'Certainly not. But why?' "'Because during the last few nights I have always, about three in the morning, heard a low, clear whistle. I am a light sleeper, and it has awakened me. I cannot tell where it came from--perhaps from the next room, perhaps from the lawn. I thought that I would just ask you whether you had heard it.' "'No, I have not. It must be those wretched gipsies in the plantation.' "'Very likely. And yet if it were on the lawn, I wonder that you did not hear it also.' "'Ah, but I sleep more heavily than you.' "'Well, it is of no great consequence, at any rate.' She smiled back at me, closed my door, and a few moments later I heard her key turn in the lock." "Indeed," said Holmes. "Was it your custom always to lock yourselves in at night?" "Always." "And why?" "I think that I mentioned to you that the doctor kept a cheetah and a baboon. We had no feeling of security unless our doors were locked." "Quite so. Pray proceed with your statement." "I could not sleep that night. A vague feeling of impending misfortune impressed me. My sister and I, you will recollect, were twins, and you know how subtle are the links which bind two souls which are so closely allied. It was a wild night. The wind was howling outside, and the rain was beating and splashing against the windows. Suddenly, amid all the hubbub of the gale, there burst forth the wild scream of a terrified woman. I knew that it was my sister's voice. I sprang from my bed, wrapped a shawl round me, and rushed into the corridor. As I opened my door I seemed to hear a low whistle, such as my sister described, and a few moments later a clanging sound, as if a mass of metal had fallen. As I ran down the passage, my sister's door was unlocked, and revolved slowly upon its hinges. I stared at it horror-stricken, not knowing what was about to issue from it. By the light of the corridor-lamp I saw my sister appear at the opening, her face blanched with terror, her hands groping for help, her whole figure swaying to and fro like that of a drunkard. I ran to her and threw my arms round her, but at that moment her knees seemed to give way and she fell to the ground. She writhed as one who is in terrible pain, and her limbs were dreadfully convulsed. At first I thought that she had not recognised me, but as I bent over her she suddenly shrieked out in a voice which I shall never forget, 'Oh, my God! Helen! It was the band! The speckled band!' There was something else which she would fain have said, and she stabbed with her finger into the air in the direction of the doctor's room, but a fresh convulsion seized her and choked her words. I rushed out, calling loudly for my stepfather, and I met him hastening from his room in his dressing-gown. When he reached my sister's side she was unconscious, and though he poured brandy down her throat and sent for medical aid from the village, all efforts were in vain, for she slowly sank and died without having recovered her consciousness. Such was the dreadful end of my beloved sister." "One moment," said Holmes, "are you sure about this whistle and metallic sound? Could you swear to it?" "That was what the county coroner asked me at the inquiry. It is my strong impression that I heard it, and yet, among the crash of the gale and the creaking of an old house, I may possibly have been deceived." "Was your sister dressed?" "No, she was in her night-dress. In her right hand was found the charred stump of a match, and in her left a match-box." "Showing that she had struck a light and looked about her when the alarm took place. That is important. And what conclusions did the coroner come to?" "He investigated the case with great care, for Dr. Roylott's conduct had long been notorious in the county, but he was unable to find any satisfactory cause of death. My evidence showed that the door had been fastened upon the inner side, and the windows were blocked by old-fashioned shutters with broad iron bars, which were secured every night. The walls were carefully sounded, and were shown to be quite solid all round, and the flooring was also thoroughly examined, with the same result. The chimney is wide, but is barred up by four large staples. It is certain, therefore, that my sister was quite alone when she met her end. Besides, there were no marks of any violence upon her." "How about poison?" "The doctors examined her for it, but without success." "What do you think that this unfortunate lady died of, then?" "It is my belief that she died of pure fear and nervous shock, though what it was that frightened her I cannot imagine." "Were there gipsies in the plantation at the time?" "Yes, there are nearly always some there." "Ah, and what did you gather from this allusion to a band--a speckled band?" "Sometimes I have thought that it was merely the wild talk of delirium, sometimes that it may have referred to some band of people, perhaps to these very gipsies in the plantation. I do not know whether the spotted handkerchiefs which so many of them wear over their heads might have suggested the strange adjective which she used." Holmes shook his head like a man who is far from being satisfied. "These are very deep waters," said he; "pray go on with your narrative." "Two years have passed since then, and my life has been until lately lonelier than ever. A month ago, however, a dear friend, whom I have known for many years, has done me the honour to ask my hand in marriage. His name is Armitage--Percy Armitage--the second son of Mr. Armitage, of Crane Water, near Reading. My stepfather has offered no opposition to the match, and we are to be married in the course of the spring. Two days ago some repairs were started in the west wing of the building, and my bedroom wall has been pierced, so that I have had to move into the chamber in which my sister died, and to sleep in the very bed in which she slept. Imagine, then, my thrill of terror when last night, as I lay awake, thinking over her terrible fate, I suddenly heard in the silence of the night the low whistle which had been the herald of her own death. I sprang up and lit the lamp, but nothing was to be seen in the room. I was too shaken to go to bed again, however, so I dressed, and as soon as it was daylight I slipped down, got a dog-cart at the Crown Inn, which is opposite, and drove to Leatherhead, from whence I have come on this morning with the one object of seeing you and asking your advice." "You have done wisely," said my friend. "But have you told me all?" "Yes, all." "Miss Roylott, you have not. You are screening your stepfather." "Why, what do you mean?" For answer Holmes pushed back the frill of black lace which fringed the hand that lay upon our visitor's knee. Five little livid spots, the marks of four fingers and a thumb, were printed upon the white wrist. "You have been cruelly used," said Holmes. The lady coloured deeply and covered over her injured wrist. "He is a hard man," she said, "and perhaps he hardly knows his own strength." There was a long silence, during which Holmes leaned his chin upon his hands and stared into the crackling fire. "This is a very deep business," he said at last. "There are a thousand details which I should desire to know before I decide upon our course of action. Yet we have not a moment to lose. If we were to come to Stoke Moran to-day, would it be possible for us to see over these rooms without the knowledge of your stepfather?" "As it happens, he spoke of coming into town to-day upon some most important business. It is probable that he will be away all day, and that there would be nothing to disturb you. We have a housekeeper now, but she is old and foolish, and I could easily get her out of the way." "Excellent. You are not averse to this trip, Watson?" "By no means." "Then we shall both come. What are you going to do yourself?" "I have one or two things which I would wish to do now that I am in town. But I shall return by the twelve o'clock train, so as to be there in time for your coming." "And you may expect us early in the afternoon. I have myself some small business matters to attend to. Will you not wait and breakfast?" "No, I must go. My heart is lightened already since I have confided my trouble to you. I shall look forward to seeing you again this afternoon." She dropped her thick black veil over her face and glided from the room. "And what do you think of it all, Watson?" asked Sherlock Holmes, leaning back in his chair. "It seems to me to be a most dark and sinister business." "Dark enough and sinister enough." "Yet if the lady is correct in saying that the flooring and walls are sound, and that the door, window, and chimney are impassable, then her sister must have been undoubtedly alone when she met her mysterious end." "What becomes, then, of these nocturnal whistles, and what of the very peculiar words of the dying woman?" "I cannot think." "When you combine the ideas of whistles at night, the presence of a band of gipsies who are on intimate terms with this old doctor, the fact that we have every reason to believe that the doctor has an interest in preventing his stepdaughter's marriage, the dying allusion to a band, and, finally, the fact that Miss Helen Stoner heard a metallic clang, which might have been caused by one of those metal bars that secured the shutters falling back into its place, I think that there is good ground to think that the mystery may be cleared along those lines." "But what, then, did the gipsies do?" "I cannot imagine." "I see many objections to any such theory." "And so do I. It is precisely for that reason that we are going to Stoke Moran this day. I want to see whether the objections are fatal, or if they may be explained away. But what in the name of the devil!" The ejaculation had been drawn from my companion by the fact that our door had been suddenly dashed open, and that a huge man had framed himself in the aperture. His costume was a peculiar mixture of the professional and of the agricultural, having a black top-hat, a long frock-coat, and a pair of high gaiters, with a hunting-crop swinging in his hand. So tall was he that his hat actually brushed the cross bar of the doorway, and his breadth seemed to span it across from side to side. A large face, seared with a thousand wrinkles, burned yellow with the sun, and marked with every evil passion, was turned from one to the other of us, while his deep-set, bile-shot eyes, and his high, thin, fleshless nose, gave him somewhat the resemblance to a fierce old bird of prey. "Which of you is Holmes?" asked this apparition. "My name, sir; but you have the advantage of me," said my companion quietly. "I am Dr. Grimesby Roylott, of Stoke Moran." "Indeed, Doctor," said Holmes blandly. "Pray take a seat." "I will do nothing of the kind. My stepdaughter has been here. I have traced her. What has she been saying to you?" "It is a little cold for the time of the year," said Holmes. "What has she been saying to you?" screamed the old man furiously. "But I have heard that the crocuses promise well," continued my companion imperturbably. "Ha! You put me off, do you?" said our new visitor, taking a step forward and shaking his hunting-crop. "I know you, you scoundrel! I have heard of you before. You are Holmes, the meddler." My friend smiled. "Holmes, the busybody!" His smile broadened. "Holmes, the Scotland Yard Jack-in-office!" Holmes chuckled heartily. "Your conversation is most entertaining," said he. "When you go out close the door, for there is a decided draught." "I will go when I have said my say. Don't you dare to meddle with my affairs. I know that Miss Stoner has been here. I traced her! I am a dangerous man to fall foul of! See here." He stepped swiftly forward, seized the poker, and bent it into a curve with his huge brown hands. "See that you keep yourself out of my grip," he snarled, and hurling the twisted poker into the fireplace he strode out of the room. "He seems a very amiable person," said Holmes, laughing. "I am not quite so bulky, but if he had remained I might have shown him that my grip was not much more feeble than his own." As he spoke he picked up the steel poker and, with a sudden effort, straightened it out again. "Fancy his having the insolence to confound me with the official detective force! This incident gives zest to our investigation, however, and I only trust that our little friend will not suffer from her imprudence in allowing this brute to trace her. And now, Watson, we shall order breakfast, and afterwards I shall walk down to Doctors' Commons, where I hope to get some data which may help us in this matter." It was nearly one o'clock when Sherlock Holmes returned from his excursion. He held in his hand a sheet of blue paper, scrawled over with notes and figures. "I have seen the will of the deceased wife," said he. "To determine its exact meaning I have been obliged to work out the present prices of the investments with which it is concerned. The total income, which at the time of the wife's death was little short of 1100 pounds, is now, through the fall in agricultural prices, not more than 750 pounds. Each daughter can claim an income of 250 pounds, in case of marriage. It is evident, therefore, that if both girls had married, this beauty would have had a mere pittance, while even one of them would cripple him to a very serious extent. My morning's work has not been wasted, since it has proved that he has the very strongest motives for standing in the way of anything of the sort. And now, Watson, this is too serious for dawdling, especially as the old man is aware that we are interesting ourselves in his affairs; so if you are ready, we shall call a cab and drive to Waterloo. I should be very much obliged if you would slip your revolver into your pocket. An Eley's No. 2 is an excellent argument with gentlemen who can twist steel pokers into knots. That and a tooth-brush are, I think, all that we need." At Waterloo we were fortunate in catching a train for Leatherhead, where we hired a trap at the station inn and drove for four or five miles through the lovely Surrey lanes. It was a perfect day, with a bright sun and a few fleecy clouds in the heavens. The trees and wayside hedges were just throwing out their first green shoots, and the air was full of the pleasant smell of the moist earth. To me at least there was a strange contrast between the sweet promise of the spring and this sinister quest upon which we were engaged. My companion sat in the front of the trap, his arms folded, his hat pulled down over his eyes, and his chin sunk upon his breast, buried in the deepest thought. Suddenly, however, he started, tapped me on the shoulder, and pointed over the meadows. "Look there!" said he. A heavily timbered park stretched up in a gentle slope, thickening into a grove at the highest point. From amid the branches there jutted out the grey gables and high roof-tree of a very old mansion. "Stoke Moran?" said he. "Yes, sir, that be the house of Dr. Grimesby Roylott," remarked the driver. "There is some building going on there," said Holmes; "that is where we are going." "There's the village," said the driver, pointing to a cluster of roofs some distance to the left; "but if you want to get to the house, you'll find it shorter to get over this stile, and so by the foot-path over the fields. There it is, where the lady is walking." "And the lady, I fancy, is Miss Stoner," observed Holmes, shading his eyes. "Yes, I think we had better do as you suggest." We got off, paid our fare, and the trap rattled back on its way to Leatherhead. "I thought it as well," said Holmes as we climbed the stile, "that this fellow should think we had come here as architects, or on some definite business. It may stop his gossip. Good-afternoon, Miss Stoner. You see that we have been as good as our word." Our client of the morning had hurried forward to meet us with a face which spoke her joy. "I have been waiting so eagerly for you," she cried, shaking hands with us warmly. "All has turned out splendidly. Dr. Roylott has gone to town, and it is unlikely that he will be back before evening." "We have had the pleasure of making the doctor's acquaintance," said Holmes, and in a few words he sketched out what had occurred. Miss Stoner turned white to the lips as she listened. "Good heavens!" she cried, "he has followed me, then." "So it appears." "He is so cunning that I never know when I am safe from him. What will he say when he returns?" "He must guard himself, for he may find that there is someone more cunning than himself upon his track. You must lock yourself up from him to-night. If he is violent, we shall take you away to your aunt's at Harrow. Now, we must make the best use of our time, so kindly take us at once to the rooms which we are to examine." The building was of grey, lichen-blotched stone, with a high central portion and two curving wings, like the claws of a crab, thrown out on each side. In one of these wings the windows were broken and blocked with wooden boards, while the roof was partly caved in, a picture of ruin. The central portion was in little better repair, but the right-hand block was comparatively modern, and the blinds in the windows, with the blue smoke curling up from the chimneys, showed that this was where the family resided. Some scaffolding had been erected against the end wall, and the stone-work had been broken into, but there were no signs of any workmen at the moment of our visit. Holmes walked slowly up and down the ill-trimmed lawn and examined with deep attention the outsides of the windows. "This, I take it, belongs to the room in which you used to sleep, the centre one to your sister's, and the one next to the main building to Dr. Roylott's chamber?" "Exactly so. But I am now sleeping in the middle one." "Pending the alterations, as I understand. By the way, there does not seem to be any very pressing need for repairs at that end wall." "There were none. I believe that it was an excuse to move me from my room." "Ah! that is suggestive. Now, on the other side of this narrow wing runs the corridor from which these three rooms open. There are windows in it, of course?" "Yes, but very small ones. Too narrow for anyone to pass through." "As you both locked your doors at night, your rooms were unapproachable from that side. Now, would you have the kindness to go into your room and bar your shutters?" Miss Stoner did so, and Holmes, after a careful examination through the open window, endeavoured in every way to force the shutter open, but without success. There was no slit through which a knife could be passed to raise the bar. Then with his lens he tested the hinges, but they were of solid iron, built firmly into the massive masonry. "Hum!" said he, scratching his chin in some perplexity, "my theory certainly presents some difficulties. No one could pass these shutters if they were bolted. Well, we shall see if the inside throws any light upon the matter." A small side door led into the whitewashed corridor from which the three bedrooms opened. Holmes refused to examine the third chamber, so we passed at once to the second, that in which Miss Stoner was now sleeping, and in which her sister had met with her fate. It was a homely little room, with a low ceiling and a gaping fireplace, after the fashion of old country-houses. A brown chest of drawers stood in one corner, a narrow white-counterpaned bed in another, and a dressing-table on the left-hand side of the window. These articles, with two small wicker-work chairs, made up all the furniture in the room save for a square of Wilton carpet in the centre. The boards round and the panelling of the walls were of brown, worm-eaten oak, so old and discoloured that it may have dated from the original building of the house. Holmes drew one of the chairs into a corner and sat silent, while his eyes travelled round and round and up and down, taking in every detail of the apartment. "Where does that bell communicate with?" he asked at last pointing to a thick bell-rope which hung down beside the bed, the tassel actually lying upon the pillow. "It goes to the housekeeper's room." "It looks newer than the other things?" "Yes, it was only put there a couple of years ago." "Your sister asked for it, I suppose?" "No, I never heard of her using it. We used always to get what we wanted for ourselves." "Indeed, it seemed unnecessary to put so nice a bell-pull there. You will excuse me for a few minutes while I satisfy myself as to this floor." He threw himself down upon his face with his lens in his hand and crawled swiftly backward and forward, examining minutely the cracks between the boards. Then he did the same with the wood-work with which the chamber was panelled. Finally he walked over to the bed and spent some time in staring at it and in running his eye up and down the wall. Finally he took the bell-rope in his hand and gave it a brisk tug. "Why, it's a dummy," said he. "Won't it ring?" "No, it is not even attached to a wire. This is very interesting. You can see now that it is fastened to a hook just above where the little opening for the ventilator is." "How very absurd! I never noticed that before." "Very strange!" muttered Holmes, pulling at the rope. "There are one or two very singular points about this room. For example, what a fool a builder must be to open a ventilator into another room, when, with the same trouble, he might have communicated with the outside air!" "That is also quite modern," said the lady. "Done about the same time as the bell-rope?" remarked Holmes. "Yes, there were several little changes carried out about that time." "They seem to have been of a most interesting character--dummy bell-ropes, and ventilators which do not ventilate. With your permission, Miss Stoner, we shall now carry our researches into the inner apartment." Dr. Grimesby Roylott's chamber was larger than that of his step-daughter, but was as plainly furnished. A camp-bed, a small wooden shelf full of books, mostly of a technical character, an armchair beside the bed, a plain wooden chair against the wall, a round table, and a large iron safe were the principal things which met the eye. Holmes walked slowly round and examined each and all of them with the keenest interest. "What's in here?" he asked, tapping the safe. "My stepfather's business papers." "Oh! you have seen inside, then?" "Only once, some years ago. I remember that it was full of papers." "There isn't a cat in it, for example?" "No. What a strange idea!" "Well, look at this!" He took up a small saucer of milk which stood on the top of it. "No; we don't keep a cat. But there is a cheetah and a baboon." "Ah, yes, of course! Well, a cheetah is just a big cat, and yet a saucer of milk does not go very far in satisfying its wants, I daresay. There is one point which I should wish to determine." He squatted down in front of the wooden chair and examined the seat of it with the greatest attention. "Thank you. That is quite settled," said he, rising and putting his lens in his pocket. "Hullo! Here is something interesting!" The object which had caught his eye was a small dog lash hung on one corner of the bed. The lash, however, was curled upon itself and tied so as to make a loop of whipcord. "What do you make of that, Watson?" "It's a common enough lash. But I don't know why it should be tied." "That is not quite so common, is it? Ah, me! it's a wicked world, and when a clever man turns his brains to crime it is the worst of all. I think that I have seen enough now, Miss Stoner, and with your permission we shall walk out upon the lawn." I had never seen my friend's face so grim or his brow so dark as it was when we turned from the scene of this investigation. We had walked several times up and down the lawn, neither Miss Stoner nor myself liking to break in upon his thoughts before he roused himself from his reverie. "It is very essential, Miss Stoner," said he, "that you should absolutely follow my advice in every respect." "I shall most certainly do so." "The matter is too serious for any hesitation. Your life may depend upon your compliance." "I assure you that I am in your hands." "In the first place, both my friend and I must spend the night in your room." Both Miss Stoner and I gazed at him in astonishment. "Yes, it must be so. Let me explain. I believe that that is the village inn over there?" "Yes, that is the Crown." "Very good. Your windows would be visible from there?" "Certainly." "You must confine yourself to your room, on pretence of a headache, when your stepfather comes back. Then when you hear him retire for the night, you must open the shutters of your window, undo the hasp, put your lamp there as a signal to us, and then withdraw quietly with everything which you are likely to want into the room which you used to occupy. I have no doubt that, in spite of the repairs, you could manage there for one night." "Oh, yes, easily." "The rest you will leave in our hands." "But what will you do?" "We shall spend the night in your room, and we shall investigate the cause of this noise which has disturbed you." "I believe, Mr. Holmes, that you have already made up your mind," said Miss Stoner, laying her hand upon my companion's sleeve. "Perhaps I have." "Then, for pity's sake, tell me what was the cause of my sister's death." "I should prefer to have clearer proofs before I speak." "You can at least tell me whether my own thought is correct, and if she died from some sudden fright." "No, I do not think so. I think that there was probably some more tangible cause. And now, Miss Stoner, we must leave you for if Dr. Roylott returned and saw us our journey would be in vain. Good-bye, and be brave, for if you will do what I have told you, you may rest assured that we shall soon drive away the dangers that threaten you." Sherlock Holmes and I had no difficulty in engaging a bedroom and sitting-room at the Crown Inn. They were on the upper floor, and from our window we could command a view of the avenue gate, and of the inhabited wing of Stoke Moran Manor House. At dusk we saw Dr. Grimesby Roylott drive past, his huge form looming up beside the little figure of the lad who drove him. The boy had some slight difficulty in undoing the heavy iron gates, and we heard the hoarse roar of the doctor's voice and saw the fury with which he shook his clinched fists at him. The trap drove on, and a few minutes later we saw a sudden light spring up among the trees as the lamp was lit in one of the sitting-rooms. "Do you know, Watson," said Holmes as we sat together in the gathering darkness, "I have really some scruples as to taking you to-night. There is a distinct element of danger." "Can I be of assistance?" "Your presence might be invaluable." "Then I shall certainly come." "It is very kind of you." "You speak of danger. You have evidently seen more in these rooms than was visible to me." "No, but I fancy that I may have deduced a little more. I imagine that you saw all that I did." "I saw nothing remarkable save the bell-rope, and what purpose that could answer I confess is more than I can imagine." "You saw the ventilator, too?" "Yes, but I do not think that it is such a very unusual thing to have a small opening between two rooms. It was so small that a rat could hardly pass through." "I knew that we should find a ventilator before ever we came to Stoke Moran." "My dear Holmes!" "Oh, yes, I did. You remember in her statement she said that her sister could smell Dr. Roylott's cigar. Now, of course that suggested at once that there must be a communication between the two rooms. It could only be a small one, or it would have been remarked upon at the coroner's inquiry. I deduced a ventilator." "But what harm can there be in that?" "Well, there is at least a curious coincidence of dates. A ventilator is made, a cord is hung, and a lady who sleeps in the bed dies. Does not that strike you?" "I cannot as yet see any connection." "Did you observe anything very peculiar about that bed?" "No." "It was clamped to the floor. Did you ever see a bed fastened like that before?" "I cannot say that I have." "The lady could not move her bed. It must always be in the same relative position to the ventilator and to the rope--or so we may call it, since it was clearly never meant for a bell-pull." "Holmes," I cried, "I seem to see dimly what you are hinting at. We are only just in time to prevent some subtle and horrible crime." "Subtle enough and horrible enough. When a doctor does go wrong he is the first of criminals. He has nerve and he has knowledge. Palmer and Pritchard were among the heads of their profession. This man strikes even deeper, but I think, Watson, that we shall be able to strike deeper still. But we shall have horrors enough before the night is over; for goodness' sake let us have a quiet pipe and turn our minds for a few hours to something more cheerful." About nine o'clock the light among the trees was extinguished, and all was dark in the direction of the Manor House. Two hours passed slowly away, and then, suddenly, just at the stroke of eleven, a single bright light shone out right in front of us. "That is our signal," said Holmes, springing to his feet; "it comes from the middle window." As we passed out he exchanged a few words with the landlord, explaining that we were going on a late visit to an acquaintance, and that it was possible that we might spend the night there. A moment later we were out on the dark road, a chill wind blowing in our faces, and one yellow light twinkling in front of us through the gloom to guide us on our sombre errand. There was little difficulty in entering the grounds, for unrepaired breaches gaped in the old park wall. Making our way among the trees, we reached the lawn, crossed it, and were about to enter through the window when out from a clump of laurel bushes there darted what seemed to be a hideous and distorted child, who threw itself upon the grass with writhing limbs and then ran swiftly across the lawn into the darkness. "My God!" I whispered; "did you see it?" Holmes was for the moment as startled as I. His hand closed like a vice upon my wrist in his agitation. Then he broke into a low laugh and put his lips to my ear. "It is a nice household," he murmured. "That is the baboon." I had forgotten the strange pets which the doctor affected. There was a cheetah, too; perhaps we might find it upon our shoulders at any moment. I confess that I felt easier in my mind when, after following Holmes' example and slipping off my shoes, I found myself inside the bedroom. My companion noiselessly closed the shutters, moved the lamp onto the table, and cast his eyes round the room. All was as we had seen it in the daytime. Then creeping up to me and making a trumpet of his hand, he whispered into my ear again so gently that it was all that I could do to distinguish the words: "The least sound would be fatal to our plans." I nodded to show that I had heard. "We must sit without light. He would see it through the ventilator." I nodded again. "Do not go asleep; your very life may depend upon it. Have your pistol ready in case we should need it. I will sit on the side of the bed, and you in that chair." I took out my revolver and laid it on the corner of the table. Holmes had brought up a long thin cane, and this he placed upon the bed beside him. By it he laid the box of matches and the stump of a candle. Then he turned down the lamp, and we were left in darkness. How shall I ever forget that dreadful vigil? I could not hear a sound, not even the drawing of a breath, and yet I knew that my companion sat open-eyed, within a few feet of me, in the same state of nervous tension in which I was myself. The shutters cut off the least ray of light, and we waited in absolute darkness. From outside came the occasional cry of a night-bird, and once at our very window a long drawn catlike whine, which told us that the cheetah was indeed at liberty. Far away we could hear the deep tones of the parish clock, which boomed out every quarter of an hour. How long they seemed, those quarters! Twelve struck, and one and two and three, and still we sat waiting silently for whatever might befall. Suddenly there was the momentary gleam of a light up in the direction of the ventilator, which vanished immediately, but was succeeded by a strong smell of burning oil and heated metal. Someone in the next room had lit a dark-lantern. I heard a gentle sound of movement, and then all was silent once more, though the smell grew stronger. For half an hour I sat with straining ears. Then suddenly another sound became audible--a very gentle, soothing sound, like that of a small jet of steam escaping continually from a kettle. The instant that we heard it, Holmes sprang from the bed, struck a match, and lashed furiously with his cane at the bell-pull. "You see it, Watson?" he yelled. "You see it?" But I saw nothing. At the moment when Holmes struck the light I heard a low, clear whistle, but the sudden glare flashing into my weary eyes made it impossible for me to tell what it was at which my friend lashed so savagely. I could, however, see that his face was deadly pale and filled with horror and loathing. He had ceased to strike and was gazing up at the ventilator when suddenly there broke from the silence of the night the most horrible cry to which I have ever listened. It swelled up louder and louder, a hoarse yell of pain and fear and anger all mingled in the one dreadful shriek. They say that away down in the village, and even in the distant parsonage, that cry raised the sleepers from their beds. It struck cold to our hearts, and I stood gazing at Holmes, and he at me, until the last echoes of it had died away into the silence from which it rose. "What can it mean?" I gasped. "It means that it is all over," Holmes answered. "And perhaps, after all, it is for the best. Take your pistol, and we will enter Dr. Roylott's room." With a grave face he lit the lamp and led the way down the corridor. Twice he struck at the chamber door without any reply from within. Then he turned the handle and entered, I at his heels, with the cocked pistol in my hand. It was a singular sight which met our eyes. On the table stood a dark-lantern with the shutter half open, throwing a brilliant beam of light upon the iron safe, the door of which was ajar. Beside this table, on the wooden chair, sat Dr. Grimesby Roylott clad in a long grey dressing-gown, his bare ankles protruding beneath, and his feet thrust into red heelless Turkish slippers. Across his lap lay the short stock with the long lash which we had noticed during the day. His chin was cocked upward and his eyes were fixed in a dreadful, rigid stare at the corner of the ceiling. Round his brow he had a peculiar yellow band, with brownish speckles, which seemed to be bound tightly round his head. As we entered he made neither sound nor motion. "The band! the speckled band!" whispered Holmes. I took a step forward. In an instant his strange headgear began to move, and there reared itself from among his hair the squat diamond-shaped head and puffed neck of a loathsome serpent. "It is a swamp adder!" cried Holmes; "the deadliest snake in India. He has died within ten seconds of being bitten. Violence does, in truth, recoil upon the violent, and the schemer falls into the pit which he digs for another. Let us thrust this creature back into its den, and we can then remove Miss Stoner to some place of shelter and let the county police know what has happened." As he spoke he drew the dog-whip swiftly from the dead man's lap, and throwing the noose round the reptile's neck he drew it from its horrid perch and, carrying it at arm's length, threw it into the iron safe, which he closed upon it. Such are the true facts of the death of Dr. Grimesby Roylott, of Stoke Moran. It is not necessary that I should prolong a narrative which has already run to too great a length by telling how we broke the sad news to the terrified girl, how we conveyed her by the morning train to the care of her good aunt at Harrow, of how the slow process of official inquiry came to the conclusion that the doctor met his fate while indiscreetly playing with a dangerous pet. The little which I had yet to learn of the case was told me by Sherlock Holmes as we travelled back next day. "I had," said he, "come to an entirely erroneous conclusion which shows, my dear Watson, how dangerous it always is to reason from insufficient data. The presence of the gipsies, and the use of the word 'band,' which was used by the poor girl, no doubt, to explain the appearance which she had caught a hurried glimpse of by the light of her match, were sufficient to put me upon an entirely wrong scent. I can only claim the merit that I instantly reconsidered my position when, however, it became clear to me that whatever danger threatened an occupant of the room could not come either from the window or the door. My attention was speedily drawn, as I have already remarked to you, to this ventilator, and to the bell-rope which hung down to the bed. The discovery that this was a dummy, and that the bed was clamped to the floor, instantly gave rise to the suspicion that the rope was there as a bridge for something passing through the hole and coming to the bed. The idea of a snake instantly occurred to me, and when I coupled it with my knowledge that the doctor was furnished with a supply of creatures from India, I felt that I was probably on the right track. The idea of using a form of poison which could not possibly be discovered by any chemical test was just such a one as would occur to a clever and ruthless man who had had an Eastern training. The rapidity with which such a poison would take effect would also, from his point of view, be an advantage. It would be a sharp-eyed coroner, indeed, who could distinguish the two little dark punctures which would show where the poison fangs had done their work. Then I thought of the whistle. Of course he must recall the snake before the morning light revealed it to the victim. He had trained it, probably by the use of the milk which we saw, to return to him when summoned. He would put it through this ventilator at the hour that he thought best, with the certainty that it would crawl down the rope and land on the bed. It might or might not bite the occupant, perhaps she might escape every night for a week, but sooner or later she must fall a victim. "I had come to these conclusions before ever I had entered his room. An inspection of his chair showed me that he had been in the habit of standing on it, which of course would be necessary in order that he should reach the ventilator. The sight of the safe, the saucer of milk, and the loop of whipcord were enough to finally dispel any doubts which may have remained. The metallic clang heard by Miss Stoner was obviously caused by her stepfather hastily closing the door of his safe upon its terrible occupant. Having once made up my mind, you know the steps which I took in order to put the matter to the proof. I heard the creature hiss as I have no doubt that you did also, and I instantly lit the light and attacked it." "With the result of driving it through the ventilator." "And also with the result of causing it to turn upon its master at the other side. Some of the blows of my cane came home and roused its snakish temper, so that it flew upon the first person it saw. In this way I am no doubt indirectly responsible for Dr. Grimesby Roylott's death, and I cannot say that it is likely to weigh very heavily upon my conscience." IX. THE ADVENTURE OF THE ENGINEER'S THUMB Of all the problems which have been submitted to my friend, Mr. Sherlock Holmes, for solution during the years of our intimacy, there were only two which I was the means of introducing to his notice--that of Mr. Hatherley's thumb, and that of Colonel Warburton's madness. Of these the latter may have afforded a finer field for an acute and original observer, but the other was so strange in its inception and so dramatic in its details that it may be the more worthy of being placed upon record, even if it gave my friend fewer openings for those deductive methods of reasoning by which he achieved such remarkable results. The story has, I believe, been told more than once in the newspapers, but, like all such narratives, its effect is much less striking when set forth en bloc in a single half-column of print than when the facts slowly evolve before your own eyes, and the mystery clears gradually away as each new discovery furnishes a step which leads on to the complete truth. At the time the circumstances made a deep impression upon me, and the lapse of two years has hardly served to weaken the effect. It was in the summer of '89, not long after my marriage, that the events occurred which I am now about to summarise. I had returned to civil practice and had finally abandoned Holmes in his Baker Street rooms, although I continually visited him and occasionally even persuaded him to forgo his Bohemian habits so far as to come and visit us. My practice had steadily increased, and as I happened to live at no very great distance from Paddington Station, I got a few patients from among the officials. One of these, whom I had cured of a painful and lingering disease, was never weary of advertising my virtues and of endeavouring to send me on every sufferer over whom he might have any influence. One morning, at a little before seven o'clock, I was awakened by the maid tapping at the door to announce that two men had come from Paddington and were waiting in the consulting-room. I dressed hurriedly, for I knew by experience that railway cases were seldom trivial, and hastened downstairs. As I descended, my old ally, the guard, came out of the room and closed the door tightly behind him. "I've got him here," he whispered, jerking his thumb over his shoulder; "he's all right." "What is it, then?" I asked, for his manner suggested that it was some strange creature which he had caged up in my room. "It's a new patient," he whispered. "I thought I'd bring him round myself; then he couldn't slip away. There he is, all safe and sound. I must go now, Doctor; I have my dooties, just the same as you." And off he went, this trusty tout, without even giving me time to thank him. I entered my consulting-room and found a gentleman seated by the table. He was quietly dressed in a suit of heather tweed with a soft cloth cap which he had laid down upon my books. Round one of his hands he had a handkerchief wrapped, which was mottled all over with bloodstains. He was young, not more than five-and-twenty, I should say, with a strong, masculine face; but he was exceedingly pale and gave me the impression of a man who was suffering from some strong agitation, which it took all his strength of mind to control. "I am sorry to knock you up so early, Doctor," said he, "but I have had a very serious accident during the night. I came in by train this morning, and on inquiring at Paddington as to where I might find a doctor, a worthy fellow very kindly escorted me here. I gave the maid a card, but I see that she has left it upon the side-table." I took it up and glanced at it. "Mr. Victor Hatherley, hydraulic engineer, 16A, Victoria Street (3rd floor)." That was the name, style, and abode of my morning visitor. "I regret that I have kept you waiting," said I, sitting down in my library-chair. "You are fresh from a night journey, I understand, which is in itself a monotonous occupation." "Oh, my night could not be called monotonous," said he, and laughed. He laughed very heartily, with a high, ringing note, leaning back in his chair and shaking his sides. All my medical instincts rose up against that laugh. "Stop it!" I cried; "pull yourself together!" and I poured out some water from a caraffe. It was useless, however. He was off in one of those hysterical outbursts which come upon a strong nature when some great crisis is over and gone. Presently he came to himself once more, very weary and pale-looking. "I have been making a fool of myself," he gasped. "Not at all. Drink this." I dashed some brandy into the water, and the colour began to come back to his bloodless cheeks. "That's better!" said he. "And now, Doctor, perhaps you would kindly attend to my thumb, or rather to the place where my thumb used to be." He unwound the handkerchief and held out his hand. It gave even my hardened nerves a shudder to look at it. There were four protruding fingers and a horrid red, spongy surface where the thumb should have been. It had been hacked or torn right out from the roots. "Good heavens!" I cried, "this is a terrible injury. It must have bled considerably." "Yes, it did. I fainted when it was done, and I think that I must have been senseless for a long time. When I came to I found that it was still bleeding, so I tied one end of my handkerchief very tightly round the wrist and braced it up with a twig." "Excellent! You should have been a surgeon." "It is a question of hydraulics, you see, and came within my own province." "This has been done," said I, examining the wound, "by a very heavy and sharp instrument." "A thing like a cleaver," said he. "An accident, I presume?" "By no means." "What! a murderous attack?" "Very murderous indeed." "You horrify me." I sponged the wound, cleaned it, dressed it, and finally covered it over with cotton wadding and carbolised bandages. He lay back without wincing, though he bit his lip from time to time. "How is that?" I asked when I had finished. "Capital! Between your brandy and your bandage, I feel a new man. I was very weak, but I have had a good deal to go through." "Perhaps you had better not speak of the matter. It is evidently trying to your nerves." "Oh, no, not now. I shall have to tell my tale to the police; but, between ourselves, if it were not for the convincing evidence of this wound of mine, I should be surprised if they believed my statement, for it is a very extraordinary one, and I have not much in the way of proof with which to back it up; and, even if they believe me, the clues which I can give them are so vague that it is a question whether justice will be done." "Ha!" cried I, "if it is anything in the nature of a problem which you desire to see solved, I should strongly recommend you to come to my friend, Mr. Sherlock Holmes, before you go to the official police." "Oh, I have heard of that fellow," answered my visitor, "and I should be very glad if he would take the matter up, though of course I must use the official police as well. Would you give me an introduction to him?" "I'll do better. I'll take you round to him myself." "I should be immensely obliged to you." "We'll call a cab and go together. We shall just be in time to have a little breakfast with him. Do you feel equal to it?" "Yes; I shall not feel easy until I have told my story." "Then my servant will call a cab, and I shall be with you in an instant." I rushed upstairs, explained the matter shortly to my wife, and in five minutes was inside a hansom, driving with my new acquaintance to Baker Street. Sherlock Holmes was, as I expected, lounging about his sitting-room in his dressing-gown, reading the agony column of The Times and smoking his before-breakfast pipe, which was composed of all the plugs and dottles left from his smokes of the day before, all carefully dried and collected on the corner of the mantelpiece. He received us in his quietly genial fashion, ordered fresh rashers and eggs, and joined us in a hearty meal. When it was concluded he settled our new acquaintance upon the sofa, placed a pillow beneath his head, and laid a glass of brandy and water within his reach. "It is easy to see that your experience has been no common one, Mr. Hatherley," said he. "Pray, lie down there and make yourself absolutely at home. Tell us what you can, but stop when you are tired and keep up your strength with a little stimulant." "Thank you," said my patient, "but I have felt another man since the doctor bandaged me, and I think that your breakfast has completed the cure. I shall take up as little of your valuable time as possible, so I shall start at once upon my peculiar experiences." Holmes sat in his big armchair with the weary, heavy-lidded expression which veiled his keen and eager nature, while I sat opposite to him, and we listened in silence to the strange story which our visitor detailed to us. "You must know," said he, "that I am an orphan and a bachelor, residing alone in lodgings in London. By profession I am a hydraulic engineer, and I have had considerable experience of my work during the seven years that I was apprenticed to Venner & Matheson, the well-known firm, of Greenwich. Two years ago, having served my time, and having also come into a fair sum of money through my poor father's death, I determined to start in business for myself and took professional chambers in Victoria Street. "I suppose that everyone finds his first independent start in business a dreary experience. To me it has been exceptionally so. During two years I have had three consultations and one small job, and that is absolutely all that my profession has brought me. My gross takings amount to 27 pounds 10s. Every day, from nine in the morning until four in the afternoon, I waited in my little den, until at last my heart began to sink, and I came to believe that I should never have any practice at all. "Yesterday, however, just as I was thinking of leaving the office, my clerk entered to say there was a gentleman waiting who wished to see me upon business. He brought up a card, too, with the name of 'Colonel Lysander Stark' engraved upon it. Close at his heels came the colonel himself, a man rather over the middle size, but of an exceeding thinness. I do not think that I have ever seen so thin a man. His whole face sharpened away into nose and chin, and the skin of his cheeks was drawn quite tense over his outstanding bones. Yet this emaciation seemed to be his natural habit, and due to no disease, for his eye was bright, his step brisk, and his bearing assured. He was plainly but neatly dressed, and his age, I should judge, would be nearer forty than thirty. "'Mr. Hatherley?' said he, with something of a German accent. 'You have been recommended to me, Mr. Hatherley, as being a man who is not only proficient in his profession but is also discreet and capable of preserving a secret.' "I bowed, feeling as flattered as any young man would at such an address. 'May I ask who it was who gave me so good a character?' "'Well, perhaps it is better that I should not tell you that just at this moment. I have it from the same source that you are both an orphan and a bachelor and are residing alone in London.' "'That is quite correct,' I answered; 'but you will excuse me if I say that I cannot see how all this bears upon my professional qualifications. I understand that it was on a professional matter that you wished to speak to me?' "'Undoubtedly so. But you will find that all I say is really to the point. I have a professional commission for you, but absolute secrecy is quite essential--absolute secrecy, you understand, and of course we may expect that more from a man who is alone than from one who lives in the bosom of his family.' "'If I promise to keep a secret,' said I, 'you may absolutely depend upon my doing so.' "He looked very hard at me as I spoke, and it seemed to me that I had never seen so suspicious and questioning an eye. "'Do you promise, then?' said he at last. "'Yes, I promise.' "'Absolute and complete silence before, during, and after? No reference to the matter at all, either in word or writing?' "'I have already given you my word.' "'Very good.' He suddenly sprang up, and darting like lightning across the room he flung open the door. The passage outside was empty. "'That's all right,' said he, coming back. 'I know that clerks are sometimes curious as to their master's affairs. Now we can talk in safety.' He drew up his chair very close to mine and began to stare at me again with the same questioning and thoughtful look. "A feeling of repulsion, and of something akin to fear had begun to rise within me at the strange antics of this fleshless man. Even my dread of losing a client could not restrain me from showing my impatience. "'I beg that you will state your business, sir,' said I; 'my time is of value.' Heaven forgive me for that last sentence, but the words came to my lips. "'How would fifty guineas for a night's work suit you?' he asked. "'Most admirably.' "'I say a night's work, but an hour's would be nearer the mark. I simply want your opinion about a hydraulic stamping machine which has got out of gear. If you show us what is wrong we shall soon set it right ourselves. What do you think of such a commission as that?' "'The work appears to be light and the pay munificent.' "'Precisely so. We shall want you to come to-night by the last train.' "'Where to?' "'To Eyford, in Berkshire. It is a little place near the borders of Oxfordshire, and within seven miles of Reading. There is a train from Paddington which would bring you there at about 11:15.' "'Very good.' "'I shall come down in a carriage to meet you.' "'There is a drive, then?' "'Yes, our little place is quite out in the country. It is a good seven miles from Eyford Station.' "'Then we can hardly get there before midnight. I suppose there would be no chance of a train back. I should be compelled to stop the night.' "'Yes, we could easily give you a shake-down.' "'That is very awkward. Could I not come at some more convenient hour?' "'We have judged it best that you should come late. It is to recompense you for any inconvenience that we are paying to you, a young and unknown man, a fee which would buy an opinion from the very heads of your profession. Still, of course, if you would like to draw out of the business, there is plenty of time to do so.' "I thought of the fifty guineas, and of how very useful they would be to me. 'Not at all,' said I, 'I shall be very happy to accommodate myself to your wishes. I should like, however, to understand a little more clearly what it is that you wish me to do.' "'Quite so. It is very natural that the pledge of secrecy which we have exacted from you should have aroused your curiosity. I have no wish to commit you to anything without your having it all laid before you. I suppose that we are absolutely safe from eavesdroppers?' "'Entirely.' "'Then the matter stands thus. You are probably aware that fuller's-earth is a valuable product, and that it is only found in one or two places in England?' "'I have heard so.' "'Some little time ago I bought a small place--a very small place--within ten miles of Reading. I was fortunate enough to discover that there was a deposit of fuller's-earth in one of my fields. On examining it, however, I found that this deposit was a comparatively small one, and that it formed a link between two very much larger ones upon the right and left--both of them, however, in the grounds of my neighbours. These good people were absolutely ignorant that their land contained that which was quite as valuable as a gold-mine. Naturally, it was to my interest to buy their land before they discovered its true value, but unfortunately I had no capital by which I could do this. I took a few of my friends into the secret, however, and they suggested that we should quietly and secretly work our own little deposit and that in this way we should earn the money which would enable us to buy the neighbouring fields. This we have now been doing for some time, and in order to help us in our operations we erected a hydraulic press. This press, as I have already explained, has got out of order, and we wish your advice upon the subject. We guard our secret very jealously, however, and if it once became known that we had hydraulic engineers coming to our little house, it would soon rouse inquiry, and then, if the facts came out, it would be good-bye to any chance of getting these fields and carrying out our plans. That is why I have made you promise me that you will not tell a human being that you are going to Eyford to-night. I hope that I make it all plain?' "'I quite follow you,' said I. 'The only point which I could not quite understand was what use you could make of a hydraulic press in excavating fuller's-earth, which, as I understand, is dug out like gravel from a pit.' "'Ah!' said he carelessly, 'we have our own process. We compress the earth into bricks, so as to remove them without revealing what they are. But that is a mere detail. I have taken you fully into my confidence now, Mr. Hatherley, and I have shown you how I trust you.' He rose as he spoke. 'I shall expect you, then, at Eyford at 11:15.' "'I shall certainly be there.' "'And not a word to a soul.' He looked at me with a last long, questioning gaze, and then, pressing my hand in a cold, dank grasp, he hurried from the room. "Well, when I came to think it all over in cool blood I was very much astonished, as you may both think, at this sudden commission which had been intrusted to me. On the one hand, of course, I was glad, for the fee was at least tenfold what I should have asked had I set a price upon my own services, and it was possible that this order might lead to other ones. On the other hand, the face and manner of my patron had made an unpleasant impression upon me, and I could not think that his explanation of the fuller's-earth was sufficient to explain the necessity for my coming at midnight, and his extreme anxiety lest I should tell anyone of my errand. However, I threw all fears to the winds, ate a hearty supper, drove to Paddington, and started off, having obeyed to the letter the injunction as to holding my tongue. "At Reading I had to change not only my carriage but my station. However, I was in time for the last train to Eyford, and I reached the little dim-lit station after eleven o'clock. I was the only passenger who got out there, and there was no one upon the platform save a single sleepy porter with a lantern. As I passed out through the wicket gate, however, I found my acquaintance of the morning waiting in the shadow upon the other side. Without a word he grasped my arm and hurried me into a carriage, the door of which was standing open. He drew up the windows on either side, tapped on the wood-work, and away we went as fast as the horse could go." "One horse?" interjected Holmes. "Yes, only one." "Did you observe the colour?" "Yes, I saw it by the side-lights when I was stepping into the carriage. It was a chestnut." "Tired-looking or fresh?" "Oh, fresh and glossy." "Thank you. I am sorry to have interrupted you. Pray continue your most interesting statement." "Away we went then, and we drove for at least an hour. Colonel Lysander Stark had said that it was only seven miles, but I should think, from the rate that we seemed to go, and from the time that we took, that it must have been nearer twelve. He sat at my side in silence all the time, and I was aware, more than once when I glanced in his direction, that he was looking at me with great intensity. The country roads seem to be not very good in that part of the world, for we lurched and jolted terribly. I tried to look out of the windows to see something of where we were, but they were made of frosted glass, and I could make out nothing save the occasional bright blur of a passing light. Now and then I hazarded some remark to break the monotony of the journey, but the colonel answered only in monosyllables, and the conversation soon flagged. At last, however, the bumping of the road was exchanged for the crisp smoothness of a gravel-drive, and the carriage came to a stand. Colonel Lysander Stark sprang out, and, as I followed after him, pulled me swiftly into a porch which gaped in front of us. We stepped, as it were, right out of the carriage and into the hall, so that I failed to catch the most fleeting glance of the front of the house. The instant that I had crossed the threshold the door slammed heavily behind us, and I heard faintly the rattle of the wheels as the carriage drove away. "It was pitch dark inside the house, and the colonel fumbled about looking for matches and muttering under his breath. Suddenly a door opened at the other end of the passage, and a long, golden bar of light shot out in our direction. It grew broader, and a woman appeared with a lamp in her hand, which she held above her head, pushing her face forward and peering at us. I could see that she was pretty, and from the gloss with which the light shone upon her dark dress I knew that it was a rich material. She spoke a few words in a foreign tongue in a tone as though asking a question, and when my companion answered in a gruff monosyllable she gave such a start that the lamp nearly fell from her hand. Colonel Stark went up to her, whispered something in her ear, and then, pushing her back into the room from whence she had come, he walked towards me again with the lamp in his hand. "'Perhaps you will have the kindness to wait in this room for a few minutes,' said he, throwing open another door. It was a quiet, little, plainly furnished room, with a round table in the centre, on which several German books were scattered. Colonel Stark laid down the lamp on the top of a harmonium beside the door. 'I shall not keep you waiting an instant,' said he, and vanished into the darkness. "I glanced at the books upon the table, and in spite of my ignorance of German I could see that two of them were treatises on science, the others being volumes of poetry. Then I walked across to the window, hoping that I might catch some glimpse of the country-side, but an oak shutter, heavily barred, was folded across it. It was a wonderfully silent house. There was an old clock ticking loudly somewhere in the passage, but otherwise everything was deadly still. A vague feeling of uneasiness began to steal over me. Who were these German people, and what were they doing living in this strange, out-of-the-way place? And where was the place? I was ten miles or so from Eyford, that was all I knew, but whether north, south, east, or west I had no idea. For that matter, Reading, and possibly other large towns, were within that radius, so the place might not be so secluded, after all. Yet it was quite certain, from the absolute stillness, that we were in the country. I paced up and down the room, humming a tune under my breath to keep up my spirits and feeling that I was thoroughly earning my fifty-guinea fee. "Suddenly, without any preliminary sound in the midst of the utter stillness, the door of my room swung slowly open. The woman was standing in the aperture, the darkness of the hall behind her, the yellow light from my lamp beating upon her eager and beautiful face. I could see at a glance that she was sick with fear, and the sight sent a chill to my own heart. She held up one shaking finger to warn me to be silent, and she shot a few whispered words of broken English at me, her eyes glancing back, like those of a frightened horse, into the gloom behind her. "'I would go,' said she, trying hard, as it seemed to me, to speak calmly; 'I would go. I should not stay here. There is no good for you to do.' "'But, madam,' said I, 'I have not yet done what I came for. I cannot possibly leave until I have seen the machine.' "'It is not worth your while to wait,' she went on. 'You can pass through the door; no one hinders.' And then, seeing that I smiled and shook my head, she suddenly threw aside her constraint and made a step forward, with her hands wrung together. 'For the love of Heaven!' she whispered, 'get away from here before it is too late!' "But I am somewhat headstrong by nature, and the more ready to engage in an affair when there is some obstacle in the way. I thought of my fifty-guinea fee, of my wearisome journey, and of the unpleasant night which seemed to be before me. Was it all to go for nothing? Why should I slink away without having carried out my commission, and without the payment which was my due? This woman might, for all I knew, be a monomaniac. With a stout bearing, therefore, though her manner had shaken me more than I cared to confess, I still shook my head and declared my intention of remaining where I was. She was about to renew her entreaties when a door slammed overhead, and the sound of several footsteps was heard upon the stairs. She listened for an instant, threw up her hands with a despairing gesture, and vanished as suddenly and as noiselessly as she had come. "The newcomers were Colonel Lysander Stark and a short thick man with a chinchilla beard growing out of the creases of his double chin, who was introduced to me as Mr. Ferguson. "'This is my secretary and manager,' said the colonel. 'By the way, I was under the impression that I left this door shut just now. I fear that you have felt the draught.' "'On the contrary,' said I, 'I opened the door myself because I felt the room to be a little close.' "He shot one of his suspicious looks at me. 'Perhaps we had better proceed to business, then,' said he. 'Mr. Ferguson and I will take you up to see the machine.' "'I had better put my hat on, I suppose.' "'Oh, no, it is in the house.' "'What, you dig fuller's-earth in the house?' "'No, no. This is only where we compress it. But never mind that. All we wish you to do is to examine the machine and to let us know what is wrong with it.' "We went upstairs together, the colonel first with the lamp, the fat manager and I behind him. It was a labyrinth of an old house, with corridors, passages, narrow winding staircases, and little low doors, the thresholds of which were hollowed out by the generations who had crossed them. There were no carpets and no signs of any furniture above the ground floor, while the plaster was peeling off the walls, and the damp was breaking through in green, unhealthy blotches. I tried to put on as unconcerned an air as possible, but I had not forgotten the warnings of the lady, even though I disregarded them, and I kept a keen eye upon my two companions. Ferguson appeared to be a morose and silent man, but I could see from the little that he said that he was at least a fellow-countryman. "Colonel Lysander Stark stopped at last before a low door, which he unlocked. Within was a small, square room, in which the three of us could hardly get at one time. Ferguson remained outside, and the colonel ushered me in. "'We are now,' said he, 'actually within the hydraulic press, and it would be a particularly unpleasant thing for us if anyone were to turn it on. The ceiling of this small chamber is really the end of the descending piston, and it comes down with the force of many tons upon this metal floor. There are small lateral columns of water outside which receive the force, and which transmit and multiply it in the manner which is familiar to you. The machine goes readily enough, but there is some stiffness in the working of it, and it has lost a little of its force. Perhaps you will have the goodness to look it over and to show us how we can set it right.' "I took the lamp from him, and I examined the machine very thoroughly. It was indeed a gigantic one, and capable of exercising enormous pressure. When I passed outside, however, and pressed down the levers which controlled it, I knew at once by the whishing sound that there was a slight leakage, which allowed a regurgitation of water through one of the side cylinders. An examination showed that one of the india-rubber bands which was round the head of a driving-rod had shrunk so as not quite to fill the socket along which it worked. This was clearly the cause of the loss of power, and I pointed it out to my companions, who followed my remarks very carefully and asked several practical questions as to how they should proceed to set it right. When I had made it clear to them, I returned to the main chamber of the machine and took a good look at it to satisfy my own curiosity. It was obvious at a glance that the story of the fuller's-earth was the merest fabrication, for it would be absurd to suppose that so powerful an engine could be designed for so inadequate a purpose. The walls were of wood, but the floor consisted of a large iron trough, and when I came to examine it I could see a crust of metallic deposit all over it. I had stooped and was scraping at this to see exactly what it was when I heard a muttered exclamation in German and saw the cadaverous face of the colonel looking down at me. "'What are you doing there?' he asked. "I felt angry at having been tricked by so elaborate a story as that which he had told me. 'I was admiring your fuller's-earth,' said I; 'I think that I should be better able to advise you as to your machine if I knew what the exact purpose was for which it was used.' "The instant that I uttered the words I regretted the rashness of my speech. His face set hard, and a baleful light sprang up in his grey eyes. "'Very well,' said he, 'you shall know all about the machine.' He took a step backward, slammed the little door, and turned the key in the lock. I rushed towards it and pulled at the handle, but it was quite secure, and did not give in the least to my kicks and shoves. 'Hullo!' I yelled. 'Hullo! Colonel! Let me out!' "And then suddenly in the silence I heard a sound which sent my heart into my mouth. It was the clank of the levers and the swish of the leaking cylinder. He had set the engine at work. The lamp still stood upon the floor where I had placed it when examining the trough. By its light I saw that the black ceiling was coming down upon me, slowly, jerkily, but, as none knew better than myself, with a force which must within a minute grind me to a shapeless pulp. I threw myself, screaming, against the door, and dragged with my nails at the lock. I implored the colonel to let me out, but the remorseless clanking of the levers drowned my cries. The ceiling was only a foot or two above my head, and with my hand upraised I could feel its hard, rough surface. Then it flashed through my mind that the pain of my death would depend very much upon the position in which I met it. If I lay on my face the weight would come upon my spine, and I shuddered to think of that dreadful snap. Easier the other way, perhaps; and yet, had I the nerve to lie and look up at that deadly black shadow wavering down upon me? Already I was unable to stand erect, when my eye caught something which brought a gush of hope back to my heart. "I have said that though the floor and ceiling were of iron, the walls were of wood. As I gave a last hurried glance around, I saw a thin line of yellow light between two of the boards, which broadened and broadened as a small panel was pushed backward. For an instant I could hardly believe that here was indeed a door which led away from death. The next instant I threw myself through, and lay half-fainting upon the other side. The panel had closed again behind me, but the crash of the lamp, and a few moments afterwards the clang of the two slabs of metal, told me how narrow had been my escape. "I was recalled to myself by a frantic plucking at my wrist, and I found myself lying upon the stone floor of a narrow corridor, while a woman bent over me and tugged at me with her left hand, while she held a candle in her right. It was the same good friend whose warning I had so foolishly rejected. "'Come! come!' she cried breathlessly. 'They will be here in a moment. They will see that you are not there. Oh, do not waste the so-precious time, but come!' "This time, at least, I did not scorn her advice. I staggered to my feet and ran with her along the corridor and down a winding stair. The latter led to another broad passage, and just as we reached it we heard the sound of running feet and the shouting of two voices, one answering the other from the floor on which we were and from the one beneath. My guide stopped and looked about her like one who is at her wit's end. Then she threw open a door which led into a bedroom, through the window of which the moon was shining brightly. "'It is your only chance,' said she. 'It is high, but it may be that you can jump it.' "As she spoke a light sprang into view at the further end of the passage, and I saw the lean figure of Colonel Lysander Stark rushing forward with a lantern in one hand and a weapon like a butcher's cleaver in the other. I rushed across the bedroom, flung open the window, and looked out. How quiet and sweet and wholesome the garden looked in the moonlight, and it could not be more than thirty feet down. I clambered out upon the sill, but I hesitated to jump until I should have heard what passed between my saviour and the ruffian who pursued me. If she were ill-used, then at any risks I was determined to go back to her assistance. The thought had hardly flashed through my mind before he was at the door, pushing his way past her; but she threw her arms round him and tried to hold him back. "'Fritz! Fritz!' she cried in English, 'remember your promise after the last time. You said it should not be again. He will be silent! Oh, he will be silent!' "'You are mad, Elise!' he shouted, struggling to break away from her. 'You will be the ruin of us. He has seen too much. Let me pass, I say!' He dashed her to one side, and, rushing to the window, cut at me with his heavy weapon. I had let myself go, and was hanging by the hands to the sill, when his blow fell. I was conscious of a dull pain, my grip loosened, and I fell into the garden below. "I was shaken but not hurt by the fall; so I picked myself up and rushed off among the bushes as hard as I could run, for I understood that I was far from being out of danger yet. Suddenly, however, as I ran, a deadly dizziness and sickness came over me. I glanced down at my hand, which was throbbing painfully, and then, for the first time, saw that my thumb had been cut off and that the blood was pouring from my wound. I endeavoured to tie my handkerchief round it, but there came a sudden buzzing in my ears, and next moment I fell in a dead faint among the rose-bushes. "How long I remained unconscious I cannot tell. It must have been a very long time, for the moon had sunk, and a bright morning was breaking when I came to myself. My clothes were all sodden with dew, and my coat-sleeve was drenched with blood from my wounded thumb. The smarting of it recalled in an instant all the particulars of my night's adventure, and I sprang to my feet with the feeling that I might hardly yet be safe from my pursuers. But to my astonishment, when I came to look round me, neither house nor garden were to be seen. I had been lying in an angle of the hedge close by the highroad, and just a little lower down was a long building, which proved, upon my approaching it, to be the very station at which I had arrived upon the previous night. Were it not for the ugly wound upon my hand, all that had passed during those dreadful hours might have been an evil dream. "Half dazed, I went into the station and asked about the morning train. There would be one to Reading in less than an hour. The same porter was on duty, I found, as had been there when I arrived. I inquired of him whether he had ever heard of Colonel Lysander Stark. The name was strange to him. Had he observed a carriage the night before waiting for me? No, he had not. Was there a police-station anywhere near? There was one about three miles off. "It was too far for me to go, weak and ill as I was. I determined to wait until I got back to town before telling my story to the police. It was a little past six when I arrived, so I went first to have my wound dressed, and then the doctor was kind enough to bring me along here. I put the case into your hands and shall do exactly what you advise." We both sat in silence for some little time after listening to this extraordinary narrative. Then Sherlock Holmes pulled down from the shelf one of the ponderous commonplace books in which he placed his cuttings. "Here is an advertisement which will interest you," said he. "It appeared in all the papers about a year ago. Listen to this: 'Lost, on the 9th inst., Mr. Jeremiah Hayling, aged twenty-six, a hydraulic engineer. Left his lodgings at ten o'clock at night, and has not been heard of since. Was dressed in,' etc., etc. Ha! That represents the last time that the colonel needed to have his machine overhauled, I fancy." "Good heavens!" cried my patient. "Then that explains what the girl said." "Undoubtedly. It is quite clear that the colonel was a cool and desperate man, who was absolutely determined that nothing should stand in the way of his little game, like those out-and-out pirates who will leave no survivor from a captured ship. Well, every moment now is precious, so if you feel equal to it we shall go down to Scotland Yard at once as a preliminary to starting for Eyford." Some three hours or so afterwards we were all in the train together, bound from Reading to the little Berkshire village. There were Sherlock Holmes, the hydraulic engineer, Inspector Bradstreet, of Scotland Yard, a plain-clothes man, and myself. Bradstreet had spread an ordnance map of the county out upon the seat and was busy with his compasses drawing a circle with Eyford for its centre. "There you are," said he. "That circle is drawn at a radius of ten miles from the village. The place we want must be somewhere near that line. You said ten miles, I think, sir." "It was an hour's good drive." "And you think that they brought you back all that way when you were unconscious?" "They must have done so. I have a confused memory, too, of having been lifted and conveyed somewhere." "What I cannot understand," said I, "is why they should have spared you when they found you lying fainting in the garden. Perhaps the villain was softened by the woman's entreaties." "I hardly think that likely. I never saw a more inexorable face in my life." "Oh, we shall soon clear up all that," said Bradstreet. "Well, I have drawn my circle, and I only wish I knew at what point upon it the folk that we are in search of are to be found." "I think I could lay my finger on it," said Holmes quietly. "Really, now!" cried the inspector, "you have formed your opinion! Come, now, we shall see who agrees with you. I say it is south, for the country is more deserted there." "And I say east," said my patient. "I am for west," remarked the plain-clothes man. "There are several quiet little villages up there." "And I am for north," said I, "because there are no hills there, and our friend says that he did not notice the carriage go up any." "Come," cried the inspector, laughing; "it's a very pretty diversity of opinion. We have boxed the compass among us. Who do you give your casting vote to?" "You are all wrong." "But we can't all be." "Oh, yes, you can. This is my point." He placed his finger in the centre of the circle. "This is where we shall find them." "But the twelve-mile drive?" gasped Hatherley. "Six out and six back. Nothing simpler. You say yourself that the horse was fresh and glossy when you got in. How could it be that if it had gone twelve miles over heavy roads?" "Indeed, it is a likely ruse enough," observed Bradstreet thoughtfully. "Of course there can be no doubt as to the nature of this gang." "None at all," said Holmes. "They are coiners on a large scale, and have used the machine to form the amalgam which has taken the place of silver." "We have known for some time that a clever gang was at work," said the inspector. "They have been turning out half-crowns by the thousand. We even traced them as far as Reading, but could get no farther, for they had covered their traces in a way that showed that they were very old hands. But now, thanks to this lucky chance, I think that we have got them right enough." But the inspector was mistaken, for those criminals were not destined to fall into the hands of justice. As we rolled into Eyford Station we saw a gigantic column of smoke which streamed up from behind a small clump of trees in the neighbourhood and hung like an immense ostrich feather over the landscape. "A house on fire?" asked Bradstreet as the train steamed off again on its way. "Yes, sir!" said the station-master. "When did it break out?" "I hear that it was during the night, sir, but it has got worse, and the whole place is in a blaze." "Whose house is it?" "Dr. Becher's." "Tell me," broke in the engineer, "is Dr. Becher a German, very thin, with a long, sharp nose?" The station-master laughed heartily. "No, sir, Dr. Becher is an Englishman, and there isn't a man in the parish who has a better-lined waistcoat. But he has a gentleman staying with him, a patient, as I understand, who is a foreigner, and he looks as if a little good Berkshire beef would do him no harm." The station-master had not finished his speech before we were all hastening in the direction of the fire. The road topped a low hill, and there was a great widespread whitewashed building in front of us, spouting fire at every chink and window, while in the garden in front three fire-engines were vainly striving to keep the flames under. "That's it!" cried Hatherley, in intense excitement. "There is the gravel-drive, and there are the rose-bushes where I lay. That second window is the one that I jumped from." "Well, at least," said Holmes, "you have had your revenge upon them. There can be no question that it was your oil-lamp which, when it was crushed in the press, set fire to the wooden walls, though no doubt they were too excited in the chase after you to observe it at the time. Now keep your eyes open in this crowd for your friends of last night, though I very much fear that they are a good hundred miles off by now." And Holmes' fears came to be realised, for from that day to this no word has ever been heard either of the beautiful woman, the sinister German, or the morose Englishman. Early that morning a peasant had met a cart containing several people and some very bulky boxes driving rapidly in the direction of Reading, but there all traces of the fugitives disappeared, and even Holmes' ingenuity failed ever to discover the least clue as to their whereabouts. The firemen had been much perturbed at the strange arrangements which they had found within, and still more so by discovering a newly severed human thumb upon a window-sill of the second floor. About sunset, however, their efforts were at last successful, and they subdued the flames, but not before the roof had fallen in, and the whole place been reduced to such absolute ruin that, save some twisted cylinders and iron piping, not a trace remained of the machinery which had cost our unfortunate acquaintance so dearly. Large masses of nickel and of tin were discovered stored in an out-house, but no coins were to be found, which may have explained the presence of those bulky boxes which have been already referred to. How our hydraulic engineer had been conveyed from the garden to the spot where he recovered his senses might have remained forever a mystery were it not for the soft mould, which told us a very plain tale. He had evidently been carried down by two persons, one of whom had remarkably small feet and the other unusually large ones. On the whole, it was most probable that the silent Englishman, being less bold or less murderous than his companion, had assisted the woman to bear the unconscious man out of the way of danger. "Well," said our engineer ruefully as we took our seats to return once more to London, "it has been a pretty business for me! I have lost my thumb and I have lost a fifty-guinea fee, and what have I gained?" "Experience," said Holmes, laughing. "Indirectly it may be of value, you know; you have only to put it into words to gain the reputation of being excellent company for the remainder of your existence." X. THE ADVENTURE OF THE NOBLE BACHELOR The Lord St. Simon marriage, and its curious termination, have long ceased to be a subject of interest in those exalted circles in which the unfortunate bridegroom moves. Fresh scandals have eclipsed it, and their more piquant details have drawn the gossips away from this four-year-old drama. As I have reason to believe, however, that the full facts have never been revealed to the general public, and as my friend Sherlock Holmes had a considerable share in clearing the matter up, I feel that no memoir of him would be complete without some little sketch of this remarkable episode. It was a few weeks before my own marriage, during the days when I was still sharing rooms with Holmes in Baker Street, that he came home from an afternoon stroll to find a letter on the table waiting for him. I had remained indoors all day, for the weather had taken a sudden turn to rain, with high autumnal winds, and the Jezail bullet which I had brought back in one of my limbs as a relic of my Afghan campaign throbbed with dull persistence. With my body in one easy-chair and my legs upon another, I had surrounded myself with a cloud of newspapers until at last, saturated with the news of the day, I tossed them all aside and lay listless, watching the huge crest and monogram upon the envelope upon the table and wondering lazily who my friend's noble correspondent could be. "Here is a very fashionable epistle," I remarked as he entered. "Your morning letters, if I remember right, were from a fish-monger and a tide-waiter." "Yes, my correspondence has certainly the charm of variety," he answered, smiling, "and the humbler are usually the more interesting. This looks like one of those unwelcome social summonses which call upon a man either to be bored or to lie." He broke the seal and glanced over the contents. "Oh, come, it may prove to be something of interest, after all." "Not social, then?" "No, distinctly professional." "And from a noble client?" "One of the highest in England." "My dear fellow, I congratulate you." "I assure you, Watson, without affectation, that the status of my client is a matter of less moment to me than the interest of his case. It is just possible, however, that that also may not be wanting in this new investigation. You have been reading the papers diligently of late, have you not?" "It looks like it," said I ruefully, pointing to a huge bundle in the corner. "I have had nothing else to do." "It is fortunate, for you will perhaps be able to post me up. I read nothing except the criminal news and the agony column. The latter is always instructive. But if you have followed recent events so closely you must have read about Lord St. Simon and his wedding?" "Oh, yes, with the deepest interest." "That is well. The letter which I hold in my hand is from Lord St. Simon. I will read it to you, and in return you must turn over these papers and let me have whatever bears upon the matter. This is what he says: "'MY DEAR MR. SHERLOCK HOLMES:--Lord Backwater tells me that I may place implicit reliance upon your judgment and discretion. I have determined, therefore, to call upon you and to consult you in reference to the very painful event which has occurred in connection with my wedding. Mr. Lestrade, of Scotland Yard, is acting already in the matter, but he assures me that he sees no objection to your co-operation, and that he even thinks that it might be of some assistance. I will call at four o'clock in the afternoon, and, should you have any other engagement at that time, I hope that you will postpone it, as this matter is of paramount importance. Yours faithfully, ST. SIMON.' "It is dated from Grosvenor Mansions, written with a quill pen, and the noble lord has had the misfortune to get a smear of ink upon the outer side of his right little finger," remarked Holmes as he folded up the epistle. "He says four o'clock. It is three now. He will be here in an hour." "Then I have just time, with your assistance, to get clear upon the subject. Turn over those papers and arrange the extracts in their order of time, while I take a glance as to who our client is." He picked a red-covered volume from a line of books of reference beside the mantelpiece. "Here he is," said he, sitting down and flattening it out upon his knee. "'Lord Robert Walsingham de Vere St. Simon, second son of the Duke of Balmoral.' Hum! 'Arms: Azure, three caltrops in chief over a fess sable. Born in 1846.' He's forty-one years of age, which is mature for marriage. Was Under-Secretary for the colonies in a late administration. The Duke, his father, was at one time Secretary for Foreign Affairs. They inherit Plantagenet blood by direct descent, and Tudor on the distaff side. Ha! Well, there is nothing very instructive in all this. I think that I must turn to you Watson, for something more solid." "I have very little difficulty in finding what I want," said I, "for the facts are quite recent, and the matter struck me as remarkable. I feared to refer them to you, however, as I knew that you had an inquiry on hand and that you disliked the intrusion of other matters." "Oh, you mean the little problem of the Grosvenor Square furniture van. That is quite cleared up now--though, indeed, it was obvious from the first. Pray give me the results of your newspaper selections." "Here is the first notice which I can find. It is in the personal column of the Morning Post, and dates, as you see, some weeks back: 'A marriage has been arranged,' it says, 'and will, if rumour is correct, very shortly take place, between Lord Robert St. Simon, second son of the Duke of Balmoral, and Miss Hatty Doran, the only daughter of Aloysius Doran. Esq., of San Francisco, Cal., U.S.A.' That is all." "Terse and to the point," remarked Holmes, stretching his long, thin legs towards the fire. "There was a paragraph amplifying this in one of the society papers of the same week. Ah, here it is: 'There will soon be a call for protection in the marriage market, for the present free-trade principle appears to tell heavily against our home product. One by one the management of the noble houses of Great Britain is passing into the hands of our fair cousins from across the Atlantic. An important addition has been made during the last week to the list of the prizes which have been borne away by these charming invaders. Lord St. Simon, who has shown himself for over twenty years proof against the little god's arrows, has now definitely announced his approaching marriage with Miss Hatty Doran, the fascinating daughter of a California millionaire. Miss Doran, whose graceful figure and striking face attracted much attention at the Westbury House festivities, is an only child, and it is currently reported that her dowry will run to considerably over the six figures, with expectancies for the future. As it is an open secret that the Duke of Balmoral has been compelled to sell his pictures within the last few years, and as Lord St. Simon has no property of his own save the small estate of Birchmoor, it is obvious that the Californian heiress is not the only gainer by an alliance which will enable her to make the easy and common transition from a Republican lady to a British peeress.'" "Anything else?" asked Holmes, yawning. "Oh, yes; plenty. Then there is another note in the Morning Post to say that the marriage would be an absolutely quiet one, that it would be at St. George's, Hanover Square, that only half a dozen intimate friends would be invited, and that the party would return to the furnished house at Lancaster Gate which has been taken by Mr. Aloysius Doran. Two days later--that is, on Wednesday last--there is a curt announcement that the wedding had taken place, and that the honeymoon would be passed at Lord Backwater's place, near Petersfield. Those are all the notices which appeared before the disappearance of the bride." "Before the what?" asked Holmes with a start. "The vanishing of the lady." "When did she vanish, then?" "At the wedding breakfast." "Indeed. This is more interesting than it promised to be; quite dramatic, in fact." "Yes; it struck me as being a little out of the common." "They often vanish before the ceremony, and occasionally during the honeymoon; but I cannot call to mind anything quite so prompt as this. Pray let me have the details." "I warn you that they are very incomplete." "Perhaps we may make them less so." "Such as they are, they are set forth in a single article of a morning paper of yesterday, which I will read to you. It is headed, 'Singular Occurrence at a Fashionable Wedding': "'The family of Lord Robert St. Simon has been thrown into the greatest consternation by the strange and painful episodes which have taken place in connection with his wedding. The ceremony, as shortly announced in the papers of yesterday, occurred on the previous morning; but it is only now that it has been possible to confirm the strange rumours which have been so persistently floating about. In spite of the attempts of the friends to hush the matter up, so much public attention has now been drawn to it that no good purpose can be served by affecting to disregard what is a common subject for conversation. "'The ceremony, which was performed at St. George's, Hanover Square, was a very quiet one, no one being present save the father of the bride, Mr. Aloysius Doran, the Duchess of Balmoral, Lord Backwater, Lord Eustace and Lady Clara St. Simon (the younger brother and sister of the bridegroom), and Lady Alicia Whittington. The whole party proceeded afterwards to the house of Mr. Aloysius Doran, at Lancaster Gate, where breakfast had been prepared. It appears that some little trouble was caused by a woman, whose name has not been ascertained, who endeavoured to force her way into the house after the bridal party, alleging that she had some claim upon Lord St. Simon. It was only after a painful and prolonged scene that she was ejected by the butler and the footman. The bride, who had fortunately entered the house before this unpleasant interruption, had sat down to breakfast with the rest, when she complained of a sudden indisposition and retired to her room. Her prolonged absence having caused some comment, her father followed her, but learned from her maid that she had only come up to her chamber for an instant, caught up an ulster and bonnet, and hurried down to the passage. One of the footmen declared that he had seen a lady leave the house thus apparelled, but had refused to credit that it was his mistress, believing her to be with the company. On ascertaining that his daughter had disappeared, Mr. Aloysius Doran, in conjunction with the bridegroom, instantly put themselves in communication with the police, and very energetic inquiries are being made, which will probably result in a speedy clearing up of this very singular business. Up to a late hour last night, however, nothing had transpired as to the whereabouts of the missing lady. There are rumours of foul play in the matter, and it is said that the police have caused the arrest of the woman who had caused the original disturbance, in the belief that, from jealousy or some other motive, she may have been concerned in the strange disappearance of the bride.'" "And is that all?" "Only one little item in another of the morning papers, but it is a suggestive one." "And it is--" "That Miss Flora Millar, the lady who had caused the disturbance, has actually been arrested. It appears that she was formerly a danseuse at the Allegro, and that she has known the bridegroom for some years. There are no further particulars, and the whole case is in your hands now--so far as it has been set forth in the public press." "And an exceedingly interesting case it appears to be. I would not have missed it for worlds. But there is a ring at the bell, Watson, and as the clock makes it a few minutes after four, I have no doubt that this will prove to be our noble client. Do not dream of going, Watson, for I very much prefer having a witness, if only as a check to my own memory." "Lord Robert St. Simon," announced our page-boy, throwing open the door. A gentleman entered, with a pleasant, cultured face, high-nosed and pale, with something perhaps of petulance about the mouth, and with the steady, well-opened eye of a man whose pleasant lot it had ever been to command and to be obeyed. His manner was brisk, and yet his general appearance gave an undue impression of age, for he had a slight forward stoop and a little bend of the knees as he walked. His hair, too, as he swept off his very curly-brimmed hat, was grizzled round the edges and thin upon the top. As to his dress, it was careful to the verge of foppishness, with high collar, black frock-coat, white waistcoat, yellow gloves, patent-leather shoes, and light-coloured gaiters. He advanced slowly into the room, turning his head from left to right, and swinging in his right hand the cord which held his golden eyeglasses. "Good-day, Lord St. Simon," said Holmes, rising and bowing. "Pray take the basket-chair. This is my friend and colleague, Dr. Watson. Draw up a little to the fire, and we will talk this matter over." "A most painful matter to me, as you can most readily imagine, Mr. Holmes. I have been cut to the quick. I understand that you have already managed several delicate cases of this sort, sir, though I presume that they were hardly from the same class of society." "No, I am descending." "I beg pardon." "My last client of the sort was a king." "Oh, really! I had no idea. And which king?" "The King of Scandinavia." "What! Had he lost his wife?" "You can understand," said Holmes suavely, "that I extend to the affairs of my other clients the same secrecy which I promise to you in yours." "Of course! Very right! very right! I'm sure I beg pardon. As to my own case, I am ready to give you any information which may assist you in forming an opinion." "Thank you. I have already learned all that is in the public prints, nothing more. I presume that I may take it as correct--this article, for example, as to the disappearance of the bride." Lord St. Simon glanced over it. "Yes, it is correct, as far as it goes." "But it needs a great deal of supplementing before anyone could offer an opinion. I think that I may arrive at my facts most directly by questioning you." "Pray do so." "When did you first meet Miss Hatty Doran?" "In San Francisco, a year ago." "You were travelling in the States?" "Yes." "Did you become engaged then?" "No." "But you were on a friendly footing?" "I was amused by her society, and she could see that I was amused." "Her father is very rich?" "He is said to be the richest man on the Pacific slope." "And how did he make his money?" "In mining. He had nothing a few years ago. Then he struck gold, invested it, and came up by leaps and bounds." "Now, what is your own impression as to the young lady's--your wife's character?" The nobleman swung his glasses a little faster and stared down into the fire. "You see, Mr. Holmes," said he, "my wife was twenty before her father became a rich man. During that time she ran free in a mining camp and wandered through woods or mountains, so that her education has come from Nature rather than from the schoolmaster. She is what we call in England a tomboy, with a strong nature, wild and free, unfettered by any sort of traditions. She is impetuous--volcanic, I was about to say. She is swift in making up her mind and fearless in carrying out her resolutions. On the other hand, I would not have given her the name which I have the honour to bear"--he gave a little stately cough--"had not I thought her to be at bottom a noble woman. I believe that she is capable of heroic self-sacrifice and that anything dishonourable would be repugnant to her." "Have you her photograph?" "I brought this with me." He opened a locket and showed us the full face of a very lovely woman. It was not a photograph but an ivory miniature, and the artist had brought out the full effect of the lustrous black hair, the large dark eyes, and the exquisite mouth. Holmes gazed long and earnestly at it. Then he closed the locket and handed it back to Lord St. Simon. "The young lady came to London, then, and you renewed your acquaintance?" "Yes, her father brought her over for this last London season. I met her several times, became engaged to her, and have now married her." "She brought, I understand, a considerable dowry?" "A fair dowry. Not more than is usual in my family." "And this, of course, remains to you, since the marriage is a fait accompli?" "I really have made no inquiries on the subject." "Very naturally not. Did you see Miss Doran on the day before the wedding?" "Yes." "Was she in good spirits?" "Never better. She kept talking of what we should do in our future lives." "Indeed! That is very interesting. And on the morning of the wedding?" "She was as bright as possible--at least until after the ceremony." "And did you observe any change in her then?" "Well, to tell the truth, I saw then the first signs that I had ever seen that her temper was just a little sharp. The incident however, was too trivial to relate and can have no possible bearing upon the case." "Pray let us have it, for all that." "Oh, it is childish. She dropped her bouquet as we went towards the vestry. She was passing the front pew at the time, and it fell over into the pew. There was a moment's delay, but the gentleman in the pew handed it up to her again, and it did not appear to be the worse for the fall. Yet when I spoke to her of the matter, she answered me abruptly; and in the carriage, on our way home, she seemed absurdly agitated over this trifling cause." "Indeed! You say that there was a gentleman in the pew. Some of the general public were present, then?" "Oh, yes. It is impossible to exclude them when the church is open." "This gentleman was not one of your wife's friends?" "No, no; I call him a gentleman by courtesy, but he was quite a common-looking person. I hardly noticed his appearance. But really I think that we are wandering rather far from the point." "Lady St. Simon, then, returned from the wedding in a less cheerful frame of mind than she had gone to it. What did she do on re-entering her father's house?" "I saw her in conversation with her maid." "And who is her maid?" "Alice is her name. She is an American and came from California with her." "A confidential servant?" "A little too much so. It seemed to me that her mistress allowed her to take great liberties. Still, of course, in America they look upon these things in a different way." "How long did she speak to this Alice?" "Oh, a few minutes. I had something else to think of." "You did not overhear what they said?" "Lady St. Simon said something about 'jumping a claim.' She was accustomed to use slang of the kind. I have no idea what she meant." "American slang is very expressive sometimes. And what did your wife do when she finished speaking to her maid?" "She walked into the breakfast-room." "On your arm?" "No, alone. She was very independent in little matters like that. Then, after we had sat down for ten minutes or so, she rose hurriedly, muttered some words of apology, and left the room. She never came back." "But this maid, Alice, as I understand, deposes that she went to her room, covered her bride's dress with a long ulster, put on a bonnet, and went out." "Quite so. And she was afterwards seen walking into Hyde Park in company with Flora Millar, a woman who is now in custody, and who had already made a disturbance at Mr. Doran's house that morning." "Ah, yes. I should like a few particulars as to this young lady, and your relations to her." Lord St. Simon shrugged his shoulders and raised his eyebrows. "We have been on a friendly footing for some years--I may say on a very friendly footing. She used to be at the Allegro. I have not treated her ungenerously, and she had no just cause of complaint against me, but you know what women are, Mr. Holmes. Flora was a dear little thing, but exceedingly hot-headed and devotedly attached to me. She wrote me dreadful letters when she heard that I was about to be married, and, to tell the truth, the reason why I had the marriage celebrated so quietly was that I feared lest there might be a scandal in the church. She came to Mr. Doran's door just after we returned, and she endeavoured to push her way in, uttering very abusive expressions towards my wife, and even threatening her, but I had foreseen the possibility of something of the sort, and I had two police fellows there in private clothes, who soon pushed her out again. She was quiet when she saw that there was no good in making a row." "Did your wife hear all this?" "No, thank goodness, she did not." "And she was seen walking with this very woman afterwards?" "Yes. That is what Mr. Lestrade, of Scotland Yard, looks upon as so serious. It is thought that Flora decoyed my wife out and laid some terrible trap for her." "Well, it is a possible supposition." "You think so, too?" "I did not say a probable one. But you do not yourself look upon this as likely?" "I do not think Flora would hurt a fly." "Still, jealousy is a strange transformer of characters. Pray what is your own theory as to what took place?" "Well, really, I came to seek a theory, not to propound one. I have given you all the facts. Since you ask me, however, I may say that it has occurred to me as possible that the excitement of this affair, the consciousness that she had made so immense a social stride, had the effect of causing some little nervous disturbance in my wife." "In short, that she had become suddenly deranged?" "Well, really, when I consider that she has turned her back--I will not say upon me, but upon so much that many have aspired to without success--I can hardly explain it in any other fashion." "Well, certainly that is also a conceivable hypothesis," said Holmes, smiling. "And now, Lord St. Simon, I think that I have nearly all my data. May I ask whether you were seated at the breakfast-table so that you could see out of the window?" "We could see the other side of the road and the Park." "Quite so. Then I do not think that I need to detain you longer. I shall communicate with you." "Should you be fortunate enough to solve this problem," said our client, rising. "I have solved it." "Eh? What was that?" "I say that I have solved it." "Where, then, is my wife?" "That is a detail which I shall speedily supply." Lord St. Simon shook his head. "I am afraid that it will take wiser heads than yours or mine," he remarked, and bowing in a stately, old-fashioned manner he departed. "It is very good of Lord St. Simon to honour my head by putting it on a level with his own," said Sherlock Holmes, laughing. "I think that I shall have a whisky and soda and a cigar after all this cross-questioning. I had formed my conclusions as to the case before our client came into the room." "My dear Holmes!" "I have notes of several similar cases, though none, as I remarked before, which were quite as prompt. My whole examination served to turn my conjecture into a certainty. Circumstantial evidence is occasionally very convincing, as when you find a trout in the milk, to quote Thoreau's example." "But I have heard all that you have heard." "Without, however, the knowledge of pre-existing cases which serves me so well. There was a parallel instance in Aberdeen some years back, and something on very much the same lines at Munich the year after the Franco-Prussian War. It is one of these cases--but, hullo, here is Lestrade! Good-afternoon, Lestrade! You will find an extra tumbler upon the sideboard, and there are cigars in the box." The official detective was attired in a pea-jacket and cravat, which gave him a decidedly nautical appearance, and he carried a black canvas bag in his hand. With a short greeting he seated himself and lit the cigar which had been offered to him. "What's up, then?" asked Holmes with a twinkle in his eye. "You look dissatisfied." "And I feel dissatisfied. It is this infernal St. Simon marriage case. I can make neither head nor tail of the business." "Really! You surprise me." "Who ever heard of such a mixed affair? Every clue seems to slip through my fingers. I have been at work upon it all day." "And very wet it seems to have made you," said Holmes laying his hand upon the arm of the pea-jacket. "Yes, I have been dragging the Serpentine." "In heaven's name, what for?" "In search of the body of Lady St. Simon." Sherlock Holmes leaned back in his chair and laughed heartily. "Have you dragged the basin of Trafalgar Square fountain?" he asked. "Why? What do you mean?" "Because you have just as good a chance of finding this lady in the one as in the other." Lestrade shot an angry glance at my companion. "I suppose you know all about it," he snarled. "Well, I have only just heard the facts, but my mind is made up." "Oh, indeed! Then you think that the Serpentine plays no part in the matter?" "I think it very unlikely." "Then perhaps you will kindly explain how it is that we found this in it?" He opened his bag as he spoke, and tumbled onto the floor a wedding-dress of watered silk, a pair of white satin shoes and a bride's wreath and veil, all discoloured and soaked in water. "There," said he, putting a new wedding-ring upon the top of the pile. "There is a little nut for you to crack, Master Holmes." "Oh, indeed!" said my friend, blowing blue rings into the air. "You dragged them from the Serpentine?" "No. They were found floating near the margin by a park-keeper. They have been identified as her clothes, and it seemed to me that if the clothes were there the body would not be far off." "By the same brilliant reasoning, every man's body is to be found in the neighbourhood of his wardrobe. And pray what did you hope to arrive at through this?" "At some evidence implicating Flora Millar in the disappearance." "I am afraid that you will find it difficult." "Are you, indeed, now?" cried Lestrade with some bitterness. "I am afraid, Holmes, that you are not very practical with your deductions and your inferences. You have made two blunders in as many minutes. This dress does implicate Miss Flora Millar." "And how?" "In the dress is a pocket. In the pocket is a card-case. In the card-case is a note. And here is the very note." He slapped it down upon the table in front of him. "Listen to this: 'You will see me when all is ready. Come at once. F.H.M.' Now my theory all along has been that Lady St. Simon was decoyed away by Flora Millar, and that she, with confederates, no doubt, was responsible for her disappearance. Here, signed with her initials, is the very note which was no doubt quietly slipped into her hand at the door and which lured her within their reach." "Very good, Lestrade," said Holmes, laughing. "You really are very fine indeed. Let me see it." He took up the paper in a listless way, but his attention instantly became riveted, and he gave a little cry of satisfaction. "This is indeed important," said he. "Ha! you find it so?" "Extremely so. I congratulate you warmly." Lestrade rose in his triumph and bent his head to look. "Why," he shrieked, "you're looking at the wrong side!" "On the contrary, this is the right side." "The right side? You're mad! Here is the note written in pencil over here." "And over here is what appears to be the fragment of a hotel bill, which interests me deeply." "There's nothing in it. I looked at it before," said Lestrade. "'Oct. 4th, rooms 8s., breakfast 2s. 6d., cocktail 1s., lunch 2s. 6d., glass sherry, 8d.' I see nothing in that." "Very likely not. It is most important, all the same. As to the note, it is important also, or at least the initials are, so I congratulate you again." "I've wasted time enough," said Lestrade, rising. "I believe in hard work and not in sitting by the fire spinning fine theories. Good-day, Mr. Holmes, and we shall see which gets to the bottom of the matter first." He gathered up the garments, thrust them into the bag, and made for the door. "Just one hint to you, Lestrade," drawled Holmes before his rival vanished; "I will tell you the true solution of the matter. Lady St. Simon is a myth. There is not, and there never has been, any such person." Lestrade looked sadly at my companion. Then he turned to me, tapped his forehead three times, shook his head solemnly, and hurried away. He had hardly shut the door behind him when Holmes rose to put on his overcoat. "There is something in what the fellow says about outdoor work," he remarked, "so I think, Watson, that I must leave you to your papers for a little." It was after five o'clock when Sherlock Holmes left me, but I had no time to be lonely, for within an hour there arrived a confectioner's man with a very large flat box. This he unpacked with the help of a youth whom he had brought with him, and presently, to my very great astonishment, a quite epicurean little cold supper began to be laid out upon our humble lodging-house mahogany. There were a couple of brace of cold woodcock, a pheasant, a pâté de foie gras pie with a group of ancient and cobwebby bottles. Having laid out all these luxuries, my two visitors vanished away, like the genii of the Arabian Nights, with no explanation save that the things had been paid for and were ordered to this address. Just before nine o'clock Sherlock Holmes stepped briskly into the room. His features were gravely set, but there was a light in his eye which made me think that he had not been disappointed in his conclusions. "They have laid the supper, then," he said, rubbing his hands. "You seem to expect company. They have laid for five." "Yes, I fancy we may have some company dropping in," said he. "I am surprised that Lord St. Simon has not already arrived. Ha! I fancy that I hear his step now upon the stairs." It was indeed our visitor of the afternoon who came bustling in, dangling his glasses more vigorously than ever, and with a very perturbed expression upon his aristocratic features. "My messenger reached you, then?" asked Holmes. "Yes, and I confess that the contents startled me beyond measure. Have you good authority for what you say?" "The best possible." Lord St. Simon sank into a chair and passed his hand over his forehead. "What will the Duke say," he murmured, "when he hears that one of the family has been subjected to such humiliation?" "It is the purest accident. I cannot allow that there is any humiliation." "Ah, you look on these things from another standpoint." "I fail to see that anyone is to blame. I can hardly see how the lady could have acted otherwise, though her abrupt method of doing it was undoubtedly to be regretted. Having no mother, she had no one to advise her at such a crisis." "It was a slight, sir, a public slight," said Lord St. Simon, tapping his fingers upon the table. "You must make allowance for this poor girl, placed in so unprecedented a position." "I will make no allowance. I am very angry indeed, and I have been shamefully used." "I think that I heard a ring," said Holmes. "Yes, there are steps on the landing. If I cannot persuade you to take a lenient view of the matter, Lord St. Simon, I have brought an advocate here who may be more successful." He opened the door and ushered in a lady and gentleman. "Lord St. Simon," said he "allow me to introduce you to Mr. and Mrs. Francis Hay Moulton. The lady, I think, you have already met." At the sight of these newcomers our client had sprung from his seat and stood very erect, with his eyes cast down and his hand thrust into the breast of his frock-coat, a picture of offended dignity. The lady had taken a quick step forward and had held out her hand to him, but he still refused to raise his eyes. It was as well for his resolution, perhaps, for her pleading face was one which it was hard to resist. "You're angry, Robert," said she. "Well, I guess you have every cause to be." "Pray make no apology to me," said Lord St. Simon bitterly. "Oh, yes, I know that I have treated you real bad and that I should have spoken to you before I went; but I was kind of rattled, and from the time when I saw Frank here again I just didn't know what I was doing or saying. I only wonder I didn't fall down and do a faint right there before the altar." "Perhaps, Mrs. Moulton, you would like my friend and me to leave the room while you explain this matter?" "If I may give an opinion," remarked the strange gentleman, "we've had just a little too much secrecy over this business already. For my part, I should like all Europe and America to hear the rights of it." He was a small, wiry, sunburnt man, clean-shaven, with a sharp face and alert manner. "Then I'll tell our story right away," said the lady. "Frank here and I met in '84, in McQuire's camp, near the Rockies, where pa was working a claim. We were engaged to each other, Frank and I; but then one day father struck a rich pocket and made a pile, while poor Frank here had a claim that petered out and came to nothing. The richer pa grew the poorer was Frank; so at last pa wouldn't hear of our engagement lasting any longer, and he took me away to 'Frisco. Frank wouldn't throw up his hand, though; so he followed me there, and he saw me without pa knowing anything about it. It would only have made him mad to know, so we just fixed it all up for ourselves. Frank said that he would go and make his pile, too, and never come back to claim me until he had as much as pa. So then I promised to wait for him to the end of time and pledged myself not to marry anyone else while he lived. 'Why shouldn't we be married right away, then,' said he, 'and then I will feel sure of you; and I won't claim to be your husband until I come back?' Well, we talked it over, and he had fixed it all up so nicely, with a clergyman all ready in waiting, that we just did it right there; and then Frank went off to seek his fortune, and I went back to pa. "The next I heard of Frank was that he was in Montana, and then he went prospecting in Arizona, and then I heard of him from New Mexico. After that came a long newspaper story about how a miners' camp had been attacked by Apache Indians, and there was my Frank's name among the killed. I fainted dead away, and I was very sick for months after. Pa thought I had a decline and took me to half the doctors in 'Frisco. Not a word of news came for a year and more, so that I never doubted that Frank was really dead. Then Lord St. Simon came to 'Frisco, and we came to London, and a marriage was arranged, and pa was very pleased, but I felt all the time that no man on this earth would ever take the place in my heart that had been given to my poor Frank. "Still, if I had married Lord St. Simon, of course I'd have done my duty by him. We can't command our love, but we can our actions. I went to the altar with him with the intention to make him just as good a wife as it was in me to be. But you may imagine what I felt when, just as I came to the altar rails, I glanced back and saw Frank standing and looking at me out of the first pew. I thought it was his ghost at first; but when I looked again there he was still, with a kind of question in his eyes, as if to ask me whether I were glad or sorry to see him. I wonder I didn't drop. I know that everything was turning round, and the words of the clergyman were just like the buzz of a bee in my ear. I didn't know what to do. Should I stop the service and make a scene in the church? I glanced at him again, and he seemed to know what I was thinking, for he raised his finger to his lips to tell me to be still. Then I saw him scribble on a piece of paper, and I knew that he was writing me a note. As I passed his pew on the way out I dropped my bouquet over to him, and he slipped the note into my hand when he returned me the flowers. It was only a line asking me to join him when he made the sign to me to do so. Of course I never doubted for a moment that my first duty was now to him, and I determined to do just whatever he might direct. "When I got back I told my maid, who had known him in California, and had always been his friend. I ordered her to say nothing, but to get a few things packed and my ulster ready. I know I ought to have spoken to Lord St. Simon, but it was dreadful hard before his mother and all those great people. I just made up my mind to run away and explain afterwards. I hadn't been at the table ten minutes before I saw Frank out of the window at the other side of the road. He beckoned to me and then began walking into the Park. I slipped out, put on my things, and followed him. Some woman came talking something or other about Lord St. Simon to me--seemed to me from the little I heard as if he had a little secret of his own before marriage also--but I managed to get away from her and soon overtook Frank. We got into a cab together, and away we drove to some lodgings he had taken in Gordon Square, and that was my true wedding after all those years of waiting. Frank had been a prisoner among the Apaches, had escaped, came on to 'Frisco, found that I had given him up for dead and had gone to England, followed me there, and had come upon me at last on the very morning of my second wedding." "I saw it in a paper," explained the American. "It gave the name and the church but not where the lady lived." "Then we had a talk as to what we should do, and Frank was all for openness, but I was so ashamed of it all that I felt as if I should like to vanish away and never see any of them again--just sending a line to pa, perhaps, to show him that I was alive. It was awful to me to think of all those lords and ladies sitting round that breakfast-table and waiting for me to come back. So Frank took my wedding-clothes and things and made a bundle of them, so that I should not be traced, and dropped them away somewhere where no one could find them. It is likely that we should have gone on to Paris to-morrow, only that this good gentleman, Mr. Holmes, came round to us this evening, though how he found us is more than I can think, and he showed us very clearly and kindly that I was wrong and that Frank was right, and that we should be putting ourselves in the wrong if we were so secret. Then he offered to give us a chance of talking to Lord St. Simon alone, and so we came right away round to his rooms at once. Now, Robert, you have heard it all, and I am very sorry if I have given you pain, and I hope that you do not think very meanly of me." Lord St. Simon had by no means relaxed his rigid attitude, but had listened with a frowning brow and a compressed lip to this long narrative. "Excuse me," he said, "but it is not my custom to discuss my most intimate personal affairs in this public manner." "Then you won't forgive me? You won't shake hands before I go?" "Oh, certainly, if it would give you any pleasure." He put out his hand and coldly grasped that which she extended to him. "I had hoped," suggested Holmes, "that you would have joined us in a friendly supper." "I think that there you ask a little too much," responded his Lordship. "I may be forced to acquiesce in these recent developments, but I can hardly be expected to make merry over them. I think that with your permission I will now wish you all a very good-night." He included us all in a sweeping bow and stalked out of the room. "Then I trust that you at least will honour me with your company," said Sherlock Holmes. "It is always a joy to meet an American, Mr. Moulton, for I am one of those who believe that the folly of a monarch and the blundering of a minister in far-gone years will not prevent our children from being some day citizens of the same world-wide country under a flag which shall be a quartering of the Union Jack with the Stars and Stripes." "The case has been an interesting one," remarked Holmes when our visitors had left us, "because it serves to show very clearly how simple the explanation may be of an affair which at first sight seems to be almost inexplicable. Nothing could be more natural than the sequence of events as narrated by this lady, and nothing stranger than the result when viewed, for instance, by Mr. Lestrade of Scotland Yard." "You were not yourself at fault at all, then?" "From the first, two facts were very obvious to me, the one that the lady had been quite willing to undergo the wedding ceremony, the other that she had repented of it within a few minutes of returning home. Obviously something had occurred during the morning, then, to cause her to change her mind. What could that something be? She could not have spoken to anyone when she was out, for she had been in the company of the bridegroom. Had she seen someone, then? If she had, it must be someone from America because she had spent so short a time in this country that she could hardly have allowed anyone to acquire so deep an influence over her that the mere sight of him would induce her to change her plans so completely. You see we have already arrived, by a process of exclusion, at the idea that she might have seen an American. Then who could this American be, and why should he possess so much influence over her? It might be a lover; it might be a husband. Her young womanhood had, I knew, been spent in rough scenes and under strange conditions. So far I had got before I ever heard Lord St. Simon's narrative. When he told us of a man in a pew, of the change in the bride's manner, of so transparent a device for obtaining a note as the dropping of a bouquet, of her resort to her confidential maid, and of her very significant allusion to claim-jumping--which in miners' parlance means taking possession of that which another person has a prior claim to--the whole situation became absolutely clear. She had gone off with a man, and the man was either a lover or was a previous husband--the chances being in favour of the latter." "And how in the world did you find them?" "It might have been difficult, but friend Lestrade held information in his hands the value of which he did not himself know. The initials were, of course, of the highest importance, but more valuable still was it to know that within a week he had settled his bill at one of the most select London hotels." "How did you deduce the select?" "By the select prices. Eight shillings for a bed and eightpence for a glass of sherry pointed to one of the most expensive hotels. There are not many in London which charge at that rate. In the second one which I visited in Northumberland Avenue, I learned by an inspection of the book that Francis H. Moulton, an American gentleman, had left only the day before, and on looking over the entries against him, I came upon the very items which I had seen in the duplicate bill. His letters were to be forwarded to 226 Gordon Square; so thither I travelled, and being fortunate enough to find the loving couple at home, I ventured to give them some paternal advice and to point out to them that it would be better in every way that they should make their position a little clearer both to the general public and to Lord St. Simon in particular. I invited them to meet him here, and, as you see, I made him keep the appointment." "But with no very good result," I remarked. "His conduct was certainly not very gracious." "Ah, Watson," said Holmes, smiling, "perhaps you would not be very gracious either, if, after all the trouble of wooing and wedding, you found yourself deprived in an instant of wife and of fortune. I think that we may judge Lord St. Simon very mercifully and thank our stars that we are never likely to find ourselves in the same position. Draw your chair up and hand me my violin, for the only problem we have still to solve is how to while away these bleak autumnal evenings." XI. THE ADVENTURE OF THE BERYL CORONET "Holmes," said I as I stood one morning in our bow-window looking down the street, "here is a madman coming along. It seems rather sad that his relatives should allow him to come out alone." My friend rose lazily from his armchair and stood with his hands in the pockets of his dressing-gown, looking over my shoulder. It was a bright, crisp February morning, and the snow of the day before still lay deep upon the ground, shimmering brightly in the wintry sun. Down the centre of Baker Street it had been ploughed into a brown crumbly band by the traffic, but at either side and on the heaped-up edges of the foot-paths it still lay as white as when it fell. The grey pavement had been cleaned and scraped, but was still dangerously slippery, so that there were fewer passengers than usual. Indeed, from the direction of the Metropolitan Station no one was coming save the single gentleman whose eccentric conduct had drawn my attention. He was a man of about fifty, tall, portly, and imposing, with a massive, strongly marked face and a commanding figure. He was dressed in a sombre yet rich style, in black frock-coat, shining hat, neat brown gaiters, and well-cut pearl-grey trousers. Yet his actions were in absurd contrast to the dignity of his dress and features, for he was running hard, with occasional little springs, such as a weary man gives who is little accustomed to set any tax upon his legs. As he ran he jerked his hands up and down, waggled his head, and writhed his face into the most extraordinary contortions. "What on earth can be the matter with him?" I asked. "He is looking up at the numbers of the houses." "I believe that he is coming here," said Holmes, rubbing his hands. "Here?" "Yes; I rather think he is coming to consult me professionally. I think that I recognise the symptoms. Ha! did I not tell you?" As he spoke, the man, puffing and blowing, rushed at our door and pulled at our bell until the whole house resounded with the clanging. A few moments later he was in our room, still puffing, still gesticulating, but with so fixed a look of grief and despair in his eyes that our smiles were turned in an instant to horror and pity. For a while he could not get his words out, but swayed his body and plucked at his hair like one who has been driven to the extreme limits of his reason. Then, suddenly springing to his feet, he beat his head against the wall with such force that we both rushed upon him and tore him away to the centre of the room. Sherlock Holmes pushed him down into the easy-chair and, sitting beside him, patted his hand and chatted with him in the easy, soothing tones which he knew so well how to employ. "You have come to me to tell your story, have you not?" said he. "You are fatigued with your haste. Pray wait until you have recovered yourself, and then I shall be most happy to look into any little problem which you may submit to me." The man sat for a minute or more with a heaving chest, fighting against his emotion. Then he passed his handkerchief over his brow, set his lips tight, and turned his face towards us. "No doubt you think me mad?" said he. "I see that you have had some great trouble," responded Holmes. "God knows I have!--a trouble which is enough to unseat my reason, so sudden and so terrible is it. Public disgrace I might have faced, although I am a man whose character has never yet borne a stain. Private affliction also is the lot of every man; but the two coming together, and in so frightful a form, have been enough to shake my very soul. Besides, it is not I alone. The very noblest in the land may suffer unless some way be found out of this horrible affair." "Pray compose yourself, sir," said Holmes, "and let me have a clear account of who you are and what it is that has befallen you." "My name," answered our visitor, "is probably familiar to your ears. I am Alexander Holder, of the banking firm of Holder & Stevenson, of Threadneedle Street." The name was indeed well known to us as belonging to the senior partner in the second largest private banking concern in the City of London. What could have happened, then, to bring one of the foremost citizens of London to this most pitiable pass? We waited, all curiosity, until with another effort he braced himself to tell his story. "I feel that time is of value," said he; "that is why I hastened here when the police inspector suggested that I should secure your co-operation. I came to Baker Street by the Underground and hurried from there on foot, for the cabs go slowly through this snow. That is why I was so out of breath, for I am a man who takes very little exercise. I feel better now, and I will put the facts before you as shortly and yet as clearly as I can. "It is, of course, well known to you that in a successful banking business as much depends upon our being able to find remunerative investments for our funds as upon our increasing our connection and the number of our depositors. One of our most lucrative means of laying out money is in the shape of loans, where the security is unimpeachable. We have done a good deal in this direction during the last few years, and there are many noble families to whom we have advanced large sums upon the security of their pictures, libraries, or plate. "Yesterday morning I was seated in my office at the bank when a card was brought in to me by one of the clerks. I started when I saw the name, for it was that of none other than--well, perhaps even to you I had better say no more than that it was a name which is a household word all over the earth--one of the highest, noblest, most exalted names in England. I was overwhelmed by the honour and attempted, when he entered, to say so, but he plunged at once into business with the air of a man who wishes to hurry quickly through a disagreeable task. "'Mr. Holder,' said he, 'I have been informed that you are in the habit of advancing money.' "'The firm does so when the security is good.' I answered. "'It is absolutely essential to me,' said he, 'that I should have 50,000 pounds at once. I could, of course, borrow so trifling a sum ten times over from my friends, but I much prefer to make it a matter of business and to carry out that business myself. In my position you can readily understand that it is unwise to place one's self under obligations.' "'For how long, may I ask, do you want this sum?' I asked. "'Next Monday I have a large sum due to me, and I shall then most certainly repay what you advance, with whatever interest you think it right to charge. But it is very essential to me that the money should be paid at once.' "'I should be happy to advance it without further parley from my own private purse,' said I, 'were it not that the strain would be rather more than it could bear. If, on the other hand, I am to do it in the name of the firm, then in justice to my partner I must insist that, even in your case, every businesslike precaution should be taken.' "'I should much prefer to have it so,' said he, raising up a square, black morocco case which he had laid beside his chair. 'You have doubtless heard of the Beryl Coronet?' "'One of the most precious public possessions of the empire,' said I. "'Precisely.' He opened the case, and there, imbedded in soft, flesh-coloured velvet, lay the magnificent piece of jewellery which he had named. 'There are thirty-nine enormous beryls,' said he, 'and the price of the gold chasing is incalculable. The lowest estimate would put the worth of the coronet at double the sum which I have asked. I am prepared to leave it with you as my security.' "I took the precious case into my hands and looked in some perplexity from it to my illustrious client. "'You doubt its value?' he asked. "'Not at all. I only doubt--' "'The propriety of my leaving it. You may set your mind at rest about that. I should not dream of doing so were it not absolutely certain that I should be able in four days to reclaim it. It is a pure matter of form. Is the security sufficient?' "'Ample.' "'You understand, Mr. Holder, that I am giving you a strong proof of the confidence which I have in you, founded upon all that I have heard of you. I rely upon you not only to be discreet and to refrain from all gossip upon the matter but, above all, to preserve this coronet with every possible precaution because I need not say that a great public scandal would be caused if any harm were to befall it. Any injury to it would be almost as serious as its complete loss, for there are no beryls in the world to match these, and it would be impossible to replace them. I leave it with you, however, with every confidence, and I shall call for it in person on Monday morning.' "Seeing that my client was anxious to leave, I said no more but, calling for my cashier, I ordered him to pay over fifty 1000 pound notes. When I was alone once more, however, with the precious case lying upon the table in front of me, I could not but think with some misgivings of the immense responsibility which it entailed upon me. There could be no doubt that, as it was a national possession, a horrible scandal would ensue if any misfortune should occur to it. I already regretted having ever consented to take charge of it. However, it was too late to alter the matter now, so I locked it up in my private safe and turned once more to my work. "When evening came I felt that it would be an imprudence to leave so precious a thing in the office behind me. Bankers' safes had been forced before now, and why should not mine be? If so, how terrible would be the position in which I should find myself! I determined, therefore, that for the next few days I would always carry the case backward and forward with me, so that it might never be really out of my reach. With this intention, I called a cab and drove out to my house at Streatham, carrying the jewel with me. I did not breathe freely until I had taken it upstairs and locked it in the bureau of my dressing-room. "And now a word as to my household, Mr. Holmes, for I wish you to thoroughly understand the situation. My groom and my page sleep out of the house, and may be set aside altogether. I have three maid-servants who have been with me a number of years and whose absolute reliability is quite above suspicion. Another, Lucy Parr, the second waiting-maid, has only been in my service a few months. She came with an excellent character, however, and has always given me satisfaction. She is a very pretty girl and has attracted admirers who have occasionally hung about the place. That is the only drawback which we have found to her, but we believe her to be a thoroughly good girl in every way. "So much for the servants. My family itself is so small that it will not take me long to describe it. I am a widower and have an only son, Arthur. He has been a disappointment to me, Mr. Holmes--a grievous disappointment. I have no doubt that I am myself to blame. People tell me that I have spoiled him. Very likely I have. When my dear wife died I felt that he was all I had to love. I could not bear to see the smile fade even for a moment from his face. I have never denied him a wish. Perhaps it would have been better for both of us had I been sterner, but I meant it for the best. "It was naturally my intention that he should succeed me in my business, but he was not of a business turn. He was wild, wayward, and, to speak the truth, I could not trust him in the handling of large sums of money. When he was young he became a member of an aristocratic club, and there, having charming manners, he was soon the intimate of a number of men with long purses and expensive habits. He learned to play heavily at cards and to squander money on the turf, until he had again and again to come to me and implore me to give him an advance upon his allowance, that he might settle his debts of honour. He tried more than once to break away from the dangerous company which he was keeping, but each time the influence of his friend, Sir George Burnwell, was enough to draw him back again. "And, indeed, I could not wonder that such a man as Sir George Burnwell should gain an influence over him, for he has frequently brought him to my house, and I have found myself that I could hardly resist the fascination of his manner. He is older than Arthur, a man of the world to his finger-tips, one who had been everywhere, seen everything, a brilliant talker, and a man of great personal beauty. Yet when I think of him in cold blood, far away from the glamour of his presence, I am convinced from his cynical speech and the look which I have caught in his eyes that he is one who should be deeply distrusted. So I think, and so, too, thinks my little Mary, who has a woman's quick insight into character. "And now there is only she to be described. She is my niece; but when my brother died five years ago and left her alone in the world I adopted her, and have looked upon her ever since as my daughter. She is a sunbeam in my house--sweet, loving, beautiful, a wonderful manager and housekeeper, yet as tender and quiet and gentle as a woman could be. She is my right hand. I do not know what I could do without her. In only one matter has she ever gone against my wishes. Twice my boy has asked her to marry him, for he loves her devotedly, but each time she has refused him. I think that if anyone could have drawn him into the right path it would have been she, and that his marriage might have changed his whole life; but now, alas! it is too late--forever too late! "Now, Mr. Holmes, you know the people who live under my roof, and I shall continue with my miserable story. "When we were taking coffee in the drawing-room that night after dinner, I told Arthur and Mary my experience, and of the precious treasure which we had under our roof, suppressing only the name of my client. Lucy Parr, who had brought in the coffee, had, I am sure, left the room; but I cannot swear that the door was closed. Mary and Arthur were much interested and wished to see the famous coronet, but I thought it better not to disturb it. "'Where have you put it?' asked Arthur. "'In my own bureau.' "'Well, I hope to goodness the house won't be burgled during the night.' said he. "'It is locked up,' I answered. "'Oh, any old key will fit that bureau. When I was a youngster I have opened it myself with the key of the box-room cupboard.' "He often had a wild way of talking, so that I thought little of what he said. He followed me to my room, however, that night with a very grave face. "'Look here, dad,' said he with his eyes cast down, 'can you let me have 200 pounds?' "'No, I cannot!' I answered sharply. 'I have been far too generous with you in money matters.' "'You have been very kind,' said he, 'but I must have this money, or else I can never show my face inside the club again.' "'And a very good thing, too!' I cried. "'Yes, but you would not have me leave it a dishonoured man,' said he. 'I could not bear the disgrace. I must raise the money in some way, and if you will not let me have it, then I must try other means.' "I was very angry, for this was the third demand during the month. 'You shall not have a farthing from me,' I cried, on which he bowed and left the room without another word. "When he was gone I unlocked my bureau, made sure that my treasure was safe, and locked it again. Then I started to go round the house to see that all was secure--a duty which I usually leave to Mary but which I thought it well to perform myself that night. As I came down the stairs I saw Mary herself at the side window of the hall, which she closed and fastened as I approached. "'Tell me, dad,' said she, looking, I thought, a little disturbed, 'did you give Lucy, the maid, leave to go out to-night?' "'Certainly not.' "'She came in just now by the back door. I have no doubt that she has only been to the side gate to see someone, but I think that it is hardly safe and should be stopped.' "'You must speak to her in the morning, or I will if you prefer it. Are you sure that everything is fastened?' "'Quite sure, dad.' "'Then, good-night.' I kissed her and went up to my bedroom again, where I was soon asleep. "I am endeavouring to tell you everything, Mr. Holmes, which may have any bearing upon the case, but I beg that you will question me upon any point which I do not make clear." "On the contrary, your statement is singularly lucid." "I come to a part of my story now in which I should wish to be particularly so. I am not a very heavy sleeper, and the anxiety in my mind tended, no doubt, to make me even less so than usual. About two in the morning, then, I was awakened by some sound in the house. It had ceased ere I was wide awake, but it had left an impression behind it as though a window had gently closed somewhere. I lay listening with all my ears. Suddenly, to my horror, there was a distinct sound of footsteps moving softly in the next room. I slipped out of bed, all palpitating with fear, and peeped round the corner of my dressing-room door. "'Arthur!' I screamed, 'you villain! you thief! How dare you touch that coronet?' "The gas was half up, as I had left it, and my unhappy boy, dressed only in his shirt and trousers, was standing beside the light, holding the coronet in his hands. He appeared to be wrenching at it, or bending it with all his strength. At my cry he dropped it from his grasp and turned as pale as death. I snatched it up and examined it. One of the gold corners, with three of the beryls in it, was missing. "'You blackguard!' I shouted, beside myself with rage. 'You have destroyed it! You have dishonoured me forever! Where are the jewels which you have stolen?' "'Stolen!' he cried. "'Yes, thief!' I roared, shaking him by the shoulder. "'There are none missing. There cannot be any missing,' said he. "'There are three missing. And you know where they are. Must I call you a liar as well as a thief? Did I not see you trying to tear off another piece?' "'You have called me names enough,' said he, 'I will not stand it any longer. I shall not say another word about this business, since you have chosen to insult me. I will leave your house in the morning and make my own way in the world.' "'You shall leave it in the hands of the police!' I cried half-mad with grief and rage. 'I shall have this matter probed to the bottom.' "'You shall learn nothing from me,' said he with a passion such as I should not have thought was in his nature. 'If you choose to call the police, let the police find what they can.' "By this time the whole house was astir, for I had raised my voice in my anger. Mary was the first to rush into my room, and, at the sight of the coronet and of Arthur's face, she read the whole story and, with a scream, fell down senseless on the ground. I sent the house-maid for the police and put the investigation into their hands at once. When the inspector and a constable entered the house, Arthur, who had stood sullenly with his arms folded, asked me whether it was my intention to charge him with theft. I answered that it had ceased to be a private matter, but had become a public one, since the ruined coronet was national property. I was determined that the law should have its way in everything. "'At least,' said he, 'you will not have me arrested at once. It would be to your advantage as well as mine if I might leave the house for five minutes.' "'That you may get away, or perhaps that you may conceal what you have stolen,' said I. And then, realising the dreadful position in which I was placed, I implored him to remember that not only my honour but that of one who was far greater than I was at stake; and that he threatened to raise a scandal which would convulse the nation. He might avert it all if he would but tell me what he had done with the three missing stones. "'You may as well face the matter,' said I; 'you have been caught in the act, and no confession could make your guilt more heinous. If you but make such reparation as is in your power, by telling us where the beryls are, all shall be forgiven and forgotten.' "'Keep your forgiveness for those who ask for it,' he answered, turning away from me with a sneer. I saw that he was too hardened for any words of mine to influence him. There was but one way for it. I called in the inspector and gave him into custody. A search was made at once not only of his person but of his room and of every portion of the house where he could possibly have concealed the gems; but no trace of them could be found, nor would the wretched boy open his mouth for all our persuasions and our threats. This morning he was removed to a cell, and I, after going through all the police formalities, have hurried round to you to implore you to use your skill in unravelling the matter. The police have openly confessed that they can at present make nothing of it. You may go to any expense which you think necessary. I have already offered a reward of 1000 pounds. My God, what shall I do! I have lost my honour, my gems, and my son in one night. Oh, what shall I do!" He put a hand on either side of his head and rocked himself to and fro, droning to himself like a child whose grief has got beyond words. Sherlock Holmes sat silent for some few minutes, with his brows knitted and his eyes fixed upon the fire. "Do you receive much company?" he asked. "None save my partner with his family and an occasional friend of Arthur's. Sir George Burnwell has been several times lately. No one else, I think." "Do you go out much in society?" "Arthur does. Mary and I stay at home. We neither of us care for it." "That is unusual in a young girl." "She is of a quiet nature. Besides, she is not so very young. She is four-and-twenty." "This matter, from what you say, seems to have been a shock to her also." "Terrible! She is even more affected than I." "You have neither of you any doubt as to your son's guilt?" "How can we have when I saw him with my own eyes with the coronet in his hands." "I hardly consider that a conclusive proof. Was the remainder of the coronet at all injured?" "Yes, it was twisted." "Do you not think, then, that he might have been trying to straighten it?" "God bless you! You are doing what you can for him and for me. But it is too heavy a task. What was he doing there at all? If his purpose were innocent, why did he not say so?" "Precisely. And if it were guilty, why did he not invent a lie? His silence appears to me to cut both ways. There are several singular points about the case. What did the police think of the noise which awoke you from your sleep?" "They considered that it might be caused by Arthur's closing his bedroom door." "A likely story! As if a man bent on felony would slam his door so as to wake a household. What did they say, then, of the disappearance of these gems?" "They are still sounding the planking and probing the furniture in the hope of finding them." "Have they thought of looking outside the house?" "Yes, they have shown extraordinary energy. The whole garden has already been minutely examined." "Now, my dear sir," said Holmes, "is it not obvious to you now that this matter really strikes very much deeper than either you or the police were at first inclined to think? It appeared to you to be a simple case; to me it seems exceedingly complex. Consider what is involved by your theory. You suppose that your son came down from his bed, went, at great risk, to your dressing-room, opened your bureau, took out your coronet, broke off by main force a small portion of it, went off to some other place, concealed three gems out of the thirty-nine, with such skill that nobody can find them, and then returned with the other thirty-six into the room in which he exposed himself to the greatest danger of being discovered. I ask you now, is such a theory tenable?" "But what other is there?" cried the banker with a gesture of despair. "If his motives were innocent, why does he not explain them?" "It is our task to find that out," replied Holmes; "so now, if you please, Mr. Holder, we will set off for Streatham together, and devote an hour to glancing a little more closely into details." My friend insisted upon my accompanying them in their expedition, which I was eager enough to do, for my curiosity and sympathy were deeply stirred by the story to which we had listened. I confess that the guilt of the banker's son appeared to me to be as obvious as it did to his unhappy father, but still I had such faith in Holmes' judgment that I felt that there must be some grounds for hope as long as he was dissatisfied with the accepted explanation. He hardly spoke a word the whole way out to the southern suburb, but sat with his chin upon his breast and his hat drawn over his eyes, sunk in the deepest thought. Our client appeared to have taken fresh heart at the little glimpse of hope which had been presented to him, and he even broke into a desultory chat with me over his business affairs. A short railway journey and a shorter walk brought us to Fairbank, the modest residence of the great financier. Fairbank was a good-sized square house of white stone, standing back a little from the road. A double carriage-sweep, with a snow-clad lawn, stretched down in front to two large iron gates which closed the entrance. On the right side was a small wooden thicket, which led into a narrow path between two neat hedges stretching from the road to the kitchen door, and forming the tradesmen's entrance. On the left ran a lane which led to the stables, and was not itself within the grounds at all, being a public, though little used, thoroughfare. Holmes left us standing at the door and walked slowly all round the house, across the front, down the tradesmen's path, and so round by the garden behind into the stable lane. So long was he that Mr. Holder and I went into the dining-room and waited by the fire until he should return. We were sitting there in silence when the door opened and a young lady came in. She was rather above the middle height, slim, with dark hair and eyes, which seemed the darker against the absolute pallor of her skin. I do not think that I have ever seen such deadly paleness in a woman's face. Her lips, too, were bloodless, but her eyes were flushed with crying. As she swept silently into the room she impressed me with a greater sense of grief than the banker had done in the morning, and it was the more striking in her as she was evidently a woman of strong character, with immense capacity for self-restraint. Disregarding my presence, she went straight to her uncle and passed her hand over his head with a sweet womanly caress. "You have given orders that Arthur should be liberated, have you not, dad?" she asked. "No, no, my girl, the matter must be probed to the bottom." "But I am so sure that he is innocent. You know what woman's instincts are. I know that he has done no harm and that you will be sorry for having acted so harshly." "Why is he silent, then, if he is innocent?" "Who knows? Perhaps because he was so angry that you should suspect him." "How could I help suspecting him, when I actually saw him with the coronet in his hand?" "Oh, but he had only picked it up to look at it. Oh, do, do take my word for it that he is innocent. Let the matter drop and say no more. It is so dreadful to think of our dear Arthur in prison!" "I shall never let it drop until the gems are found--never, Mary! Your affection for Arthur blinds you as to the awful consequences to me. Far from hushing the thing up, I have brought a gentleman down from London to inquire more deeply into it." "This gentleman?" she asked, facing round to me. "No, his friend. He wished us to leave him alone. He is round in the stable lane now." "The stable lane?" She raised her dark eyebrows. "What can he hope to find there? Ah! this, I suppose, is he. I trust, sir, that you will succeed in proving, what I feel sure is the truth, that my cousin Arthur is innocent of this crime." "I fully share your opinion, and I trust, with you, that we may prove it," returned Holmes, going back to the mat to knock the snow from his shoes. "I believe I have the honour of addressing Miss Mary Holder. Might I ask you a question or two?" "Pray do, sir, if it may help to clear this horrible affair up." "You heard nothing yourself last night?" "Nothing, until my uncle here began to speak loudly. I heard that, and I came down." "You shut up the windows and doors the night before. Did you fasten all the windows?" "Yes." "Were they all fastened this morning?" "Yes." "You have a maid who has a sweetheart? I think that you remarked to your uncle last night that she had been out to see him?" "Yes, and she was the girl who waited in the drawing-room, and who may have heard uncle's remarks about the coronet." "I see. You infer that she may have gone out to tell her sweetheart, and that the two may have planned the robbery." "But what is the good of all these vague theories," cried the banker impatiently, "when I have told you that I saw Arthur with the coronet in his hands?" "Wait a little, Mr. Holder. We must come back to that. About this girl, Miss Holder. You saw her return by the kitchen door, I presume?" "Yes; when I went to see if the door was fastened for the night I met her slipping in. I saw the man, too, in the gloom." "Do you know him?" "Oh, yes! he is the green-grocer who brings our vegetables round. His name is Francis Prosper." "He stood," said Holmes, "to the left of the door--that is to say, farther up the path than is necessary to reach the door?" "Yes, he did." "And he is a man with a wooden leg?" Something like fear sprang up in the young lady's expressive black eyes. "Why, you are like a magician," said she. "How do you know that?" She smiled, but there was no answering smile in Holmes' thin, eager face. "I should be very glad now to go upstairs," said he. "I shall probably wish to go over the outside of the house again. Perhaps I had better take a look at the lower windows before I go up." He walked swiftly round from one to the other, pausing only at the large one which looked from the hall onto the stable lane. This he opened and made a very careful examination of the sill with his powerful magnifying lens. "Now we shall go upstairs," said he at last. The banker's dressing-room was a plainly furnished little chamber, with a grey carpet, a large bureau, and a long mirror. Holmes went to the bureau first and looked hard at the lock. "Which key was used to open it?" he asked. "That which my son himself indicated--that of the cupboard of the lumber-room." "Have you it here?" "That is it on the dressing-table." Sherlock Holmes took it up and opened the bureau. "It is a noiseless lock," said he. "It is no wonder that it did not wake you. This case, I presume, contains the coronet. We must have a look at it." He opened the case, and taking out the diadem he laid it upon the table. It was a magnificent specimen of the jeweller's art, and the thirty-six stones were the finest that I have ever seen. At one side of the coronet was a cracked edge, where a corner holding three gems had been torn away. "Now, Mr. Holder," said Holmes, "here is the corner which corresponds to that which has been so unfortunately lost. Might I beg that you will break it off." The banker recoiled in horror. "I should not dream of trying," said he. "Then I will." Holmes suddenly bent his strength upon it, but without result. "I feel it give a little," said he; "but, though I am exceptionally strong in the fingers, it would take me all my time to break it. An ordinary man could not do it. Now, what do you think would happen if I did break it, Mr. Holder? There would be a noise like a pistol shot. Do you tell me that all this happened within a few yards of your bed and that you heard nothing of it?" "I do not know what to think. It is all dark to me." "But perhaps it may grow lighter as we go. What do you think, Miss Holder?" "I confess that I still share my uncle's perplexity." "Your son had no shoes or slippers on when you saw him?" "He had nothing on save only his trousers and shirt." "Thank you. We have certainly been favoured with extraordinary luck during this inquiry, and it will be entirely our own fault if we do not succeed in clearing the matter up. With your permission, Mr. Holder, I shall now continue my investigations outside." He went alone, at his own request, for he explained that any unnecessary footmarks might make his task more difficult. For an hour or more he was at work, returning at last with his feet heavy with snow and his features as inscrutable as ever. "I think that I have seen now all that there is to see, Mr. Holder," said he; "I can serve you best by returning to my rooms." "But the gems, Mr. Holmes. Where are they?" "I cannot tell." The banker wrung his hands. "I shall never see them again!" he cried. "And my son? You give me hopes?" "My opinion is in no way altered." "Then, for God's sake, what was this dark business which was acted in my house last night?" "If you can call upon me at my Baker Street rooms to-morrow morning between nine and ten I shall be happy to do what I can to make it clearer. I understand that you give me carte blanche to act for you, provided only that I get back the gems, and that you place no limit on the sum I may draw." "I would give my fortune to have them back." "Very good. I shall look into the matter between this and then. Good-bye; it is just possible that I may have to come over here again before evening." It was obvious to me that my companion's mind was now made up about the case, although what his conclusions were was more than I could even dimly imagine. Several times during our homeward journey I endeavoured to sound him upon the point, but he always glided away to some other topic, until at last I gave it over in despair. It was not yet three when we found ourselves in our rooms once more. He hurried to his chamber and was down again in a few minutes dressed as a common loafer. With his collar turned up, his shiny, seedy coat, his red cravat, and his worn boots, he was a perfect sample of the class. "I think that this should do," said he, glancing into the glass above the fireplace. "I only wish that you could come with me, Watson, but I fear that it won't do. I may be on the trail in this matter, or I may be following a will-o'-the-wisp, but I shall soon know which it is. I hope that I may be back in a few hours." He cut a slice of beef from the joint upon the sideboard, sandwiched it between two rounds of bread, and thrusting this rude meal into his pocket he started off upon his expedition. I had just finished my tea when he returned, evidently in excellent spirits, swinging an old elastic-sided boot in his hand. He chucked it down into a corner and helped himself to a cup of tea. "I only looked in as I passed," said he. "I am going right on." "Where to?" "Oh, to the other side of the West End. It may be some time before I get back. Don't wait up for me in case I should be late." "How are you getting on?" "Oh, so so. Nothing to complain of. I have been out to Streatham since I saw you last, but I did not call at the house. It is a very sweet little problem, and I would not have missed it for a good deal. However, I must not sit gossiping here, but must get these disreputable clothes off and return to my highly respectable self." I could see by his manner that he had stronger reasons for satisfaction than his words alone would imply. His eyes twinkled, and there was even a touch of colour upon his sallow cheeks. He hastened upstairs, and a few minutes later I heard the slam of the hall door, which told me that he was off once more upon his congenial hunt. I waited until midnight, but there was no sign of his return, so I retired to my room. It was no uncommon thing for him to be away for days and nights on end when he was hot upon a scent, so that his lateness caused me no surprise. I do not know at what hour he came in, but when I came down to breakfast in the morning there he was with a cup of coffee in one hand and the paper in the other, as fresh and trim as possible. "You will excuse my beginning without you, Watson," said he, "but you remember that our client has rather an early appointment this morning." "Why, it is after nine now," I answered. "I should not be surprised if that were he. I thought I heard a ring." It was, indeed, our friend the financier. I was shocked by the change which had come over him, for his face which was naturally of a broad and massive mould, was now pinched and fallen in, while his hair seemed to me at least a shade whiter. He entered with a weariness and lethargy which was even more painful than his violence of the morning before, and he dropped heavily into the armchair which I pushed forward for him. "I do not know what I have done to be so severely tried," said he. "Only two days ago I was a happy and prosperous man, without a care in the world. Now I am left to a lonely and dishonoured age. One sorrow comes close upon the heels of another. My niece, Mary, has deserted me." "Deserted you?" "Yes. Her bed this morning had not been slept in, her room was empty, and a note for me lay upon the hall table. I had said to her last night, in sorrow and not in anger, that if she had married my boy all might have been well with him. Perhaps it was thoughtless of me to say so. It is to that remark that she refers in this note: "'MY DEAREST UNCLE:--I feel that I have brought trouble upon you, and that if I had acted differently this terrible misfortune might never have occurred. I cannot, with this thought in my mind, ever again be happy under your roof, and I feel that I must leave you forever. Do not worry about my future, for that is provided for; and, above all, do not search for me, for it will be fruitless labour and an ill-service to me. In life or in death, I am ever your loving,--MARY.' "What could she mean by that note, Mr. Holmes? Do you think it points to suicide?" "No, no, nothing of the kind. It is perhaps the best possible solution. I trust, Mr. Holder, that you are nearing the end of your troubles." "Ha! You say so! You have heard something, Mr. Holmes; you have learned something! Where are the gems?" "You would not think 1000 pounds apiece an excessive sum for them?" "I would pay ten." "That would be unnecessary. Three thousand will cover the matter. And there is a little reward, I fancy. Have you your check-book? Here is a pen. Better make it out for 4000 pounds." With a dazed face the banker made out the required check. Holmes walked over to his desk, took out a little triangular piece of gold with three gems in it, and threw it down upon the table. With a shriek of joy our client clutched it up. "You have it!" he gasped. "I am saved! I am saved!" The reaction of joy was as passionate as his grief had been, and he hugged his recovered gems to his bosom. "There is one other thing you owe, Mr. Holder," said Sherlock Holmes rather sternly. "Owe!" He caught up a pen. "Name the sum, and I will pay it." "No, the debt is not to me. You owe a very humble apology to that noble lad, your son, who has carried himself in this matter as I should be proud to see my own son do, should I ever chance to have one." "Then it was not Arthur who took them?" "I told you yesterday, and I repeat to-day, that it was not." "You are sure of it! Then let us hurry to him at once to let him know that the truth is known." "He knows it already. When I had cleared it all up I had an interview with him, and finding that he would not tell me the story, I told it to him, on which he had to confess that I was right and to add the very few details which were not yet quite clear to me. Your news of this morning, however, may open his lips." "For heaven's sake, tell me, then, what is this extraordinary mystery!" "I will do so, and I will show you the steps by which I reached it. And let me say to you, first, that which it is hardest for me to say and for you to hear: there has been an understanding between Sir George Burnwell and your niece Mary. They have now fled together." "My Mary? Impossible!" "It is unfortunately more than possible; it is certain. Neither you nor your son knew the true character of this man when you admitted him into your family circle. He is one of the most dangerous men in England--a ruined gambler, an absolutely desperate villain, a man without heart or conscience. Your niece knew nothing of such men. When he breathed his vows to her, as he had done to a hundred before her, she flattered herself that she alone had touched his heart. The devil knows best what he said, but at least she became his tool and was in the habit of seeing him nearly every evening." "I cannot, and I will not, believe it!" cried the banker with an ashen face. "I will tell you, then, what occurred in your house last night. Your niece, when you had, as she thought, gone to your room, slipped down and talked to her lover through the window which leads into the stable lane. His footmarks had pressed right through the snow, so long had he stood there. She told him of the coronet. His wicked lust for gold kindled at the news, and he bent her to his will. I have no doubt that she loved you, but there are women in whom the love of a lover extinguishes all other loves, and I think that she must have been one. She had hardly listened to his instructions when she saw you coming downstairs, on which she closed the window rapidly and told you about one of the servants' escapade with her wooden-legged lover, which was all perfectly true. "Your boy, Arthur, went to bed after his interview with you but he slept badly on account of his uneasiness about his club debts. In the middle of the night he heard a soft tread pass his door, so he rose and, looking out, was surprised to see his cousin walking very stealthily along the passage until she disappeared into your dressing-room. Petrified with astonishment, the lad slipped on some clothes and waited there in the dark to see what would come of this strange affair. Presently she emerged from the room again, and in the light of the passage-lamp your son saw that she carried the precious coronet in her hands. She passed down the stairs, and he, thrilling with horror, ran along and slipped behind the curtain near your door, whence he could see what passed in the hall beneath. He saw her stealthily open the window, hand out the coronet to someone in the gloom, and then closing it once more hurry back to her room, passing quite close to where he stood hid behind the curtain. "As long as she was on the scene he could not take any action without a horrible exposure of the woman whom he loved. But the instant that she was gone he realised how crushing a misfortune this would be for you, and how all-important it was to set it right. He rushed down, just as he was, in his bare feet, opened the window, sprang out into the snow, and ran down the lane, where he could see a dark figure in the moonlight. Sir George Burnwell tried to get away, but Arthur caught him, and there was a struggle between them, your lad tugging at one side of the coronet, and his opponent at the other. In the scuffle, your son struck Sir George and cut him over the eye. Then something suddenly snapped, and your son, finding that he had the coronet in his hands, rushed back, closed the window, ascended to your room, and had just observed that the coronet had been twisted in the struggle and was endeavouring to straighten it when you appeared upon the scene." "Is it possible?" gasped the banker. "You then roused his anger by calling him names at a moment when he felt that he had deserved your warmest thanks. He could not explain the true state of affairs without betraying one who certainly deserved little enough consideration at his hands. He took the more chivalrous view, however, and preserved her secret." "And that was why she shrieked and fainted when she saw the coronet," cried Mr. Holder. "Oh, my God! what a blind fool I have been! And his asking to be allowed to go out for five minutes! The dear fellow wanted to see if the missing piece were at the scene of the struggle. How cruelly I have misjudged him!" "When I arrived at the house," continued Holmes, "I at once went very carefully round it to observe if there were any traces in the snow which might help me. I knew that none had fallen since the evening before, and also that there had been a strong frost to preserve impressions. I passed along the tradesmen's path, but found it all trampled down and indistinguishable. Just beyond it, however, at the far side of the kitchen door, a woman had stood and talked with a man, whose round impressions on one side showed that he had a wooden leg. I could even tell that they had been disturbed, for the woman had run back swiftly to the door, as was shown by the deep toe and light heel marks, while Wooden-leg had waited a little, and then had gone away. I thought at the time that this might be the maid and her sweetheart, of whom you had already spoken to me, and inquiry showed it was so. I passed round the garden without seeing anything more than random tracks, which I took to be the police; but when I got into the stable lane a very long and complex story was written in the snow in front of me. "There was a double line of tracks of a booted man, and a second double line which I saw with delight belonged to a man with naked feet. I was at once convinced from what you had told me that the latter was your son. The first had walked both ways, but the other had run swiftly, and as his tread was marked in places over the depression of the boot, it was obvious that he had passed after the other. I followed them up and found they led to the hall window, where Boots had worn all the snow away while waiting. Then I walked to the other end, which was a hundred yards or more down the lane. I saw where Boots had faced round, where the snow was cut up as though there had been a struggle, and, finally, where a few drops of blood had fallen, to show me that I was not mistaken. Boots had then run down the lane, and another little smudge of blood showed that it was he who had been hurt. When he came to the highroad at the other end, I found that the pavement had been cleared, so there was an end to that clue. "On entering the house, however, I examined, as you remember, the sill and framework of the hall window with my lens, and I could at once see that someone had passed out. I could distinguish the outline of an instep where the wet foot had been placed in coming in. I was then beginning to be able to form an opinion as to what had occurred. A man had waited outside the window; someone had brought the gems; the deed had been overseen by your son; he had pursued the thief; had struggled with him; they had each tugged at the coronet, their united strength causing injuries which neither alone could have effected. He had returned with the prize, but had left a fragment in the grasp of his opponent. So far I was clear. The question now was, who was the man and who was it brought him the coronet? "It is an old maxim of mine that when you have excluded the impossible, whatever remains, however improbable, must be the truth. Now, I knew that it was not you who had brought it down, so there only remained your niece and the maids. But if it were the maids, why should your son allow himself to be accused in their place? There could be no possible reason. As he loved his cousin, however, there was an excellent explanation why he should retain her secret--the more so as the secret was a disgraceful one. When I remembered that you had seen her at that window, and how she had fainted on seeing the coronet again, my conjecture became a certainty. "And who could it be who was her confederate? A lover evidently, for who else could outweigh the love and gratitude which she must feel to you? I knew that you went out little, and that your circle of friends was a very limited one. But among them was Sir George Burnwell. I had heard of him before as being a man of evil reputation among women. It must have been he who wore those boots and retained the missing gems. Even though he knew that Arthur had discovered him, he might still flatter himself that he was safe, for the lad could not say a word without compromising his own family. "Well, your own good sense will suggest what measures I took next. I went in the shape of a loafer to Sir George's house, managed to pick up an acquaintance with his valet, learned that his master had cut his head the night before, and, finally, at the expense of six shillings, made all sure by buying a pair of his cast-off shoes. With these I journeyed down to Streatham and saw that they exactly fitted the tracks." "I saw an ill-dressed vagabond in the lane yesterday evening," said Mr. Holder. "Precisely. It was I. I found that I had my man, so I came home and changed my clothes. It was a delicate part which I had to play then, for I saw that a prosecution must be avoided to avert scandal, and I knew that so astute a villain would see that our hands were tied in the matter. I went and saw him. At first, of course, he denied everything. But when I gave him every particular that had occurred, he tried to bluster and took down a life-preserver from the wall. I knew my man, however, and I clapped a pistol to his head before he could strike. Then he became a little more reasonable. I told him that we would give him a price for the stones he held--1000 pounds apiece. That brought out the first signs of grief that he had shown. 'Why, dash it all!' said he, 'I've let them go at six hundred for the three!' I soon managed to get the address of the receiver who had them, on promising him that there would be no prosecution. Off I set to him, and after much chaffering I got our stones at 1000 pounds apiece. Then I looked in upon your son, told him that all was right, and eventually got to my bed about two o'clock, after what I may call a really hard day's work." "A day which has saved England from a great public scandal," said the banker, rising. "Sir, I cannot find words to thank you, but you shall not find me ungrateful for what you have done. Your skill has indeed exceeded all that I have heard of it. And now I must fly to my dear boy to apologise to him for the wrong which I have done him. As to what you tell me of poor Mary, it goes to my very heart. Not even your skill can inform me where she is now." "I think that we may safely say," returned Holmes, "that she is wherever Sir George Burnwell is. It is equally certain, too, that whatever her sins are, they will soon receive a more than sufficient punishment." XII. THE ADVENTURE OF THE COPPER BEECHES "To the man who loves art for its own sake," remarked Sherlock Holmes, tossing aside the advertisement sheet of the Daily Telegraph, "it is frequently in its least important and lowliest manifestations that the keenest pleasure is to be derived. It is pleasant to me to observe, Watson, that you have so far grasped this truth that in these little records of our cases which you have been good enough to draw up, and, I am bound to say, occasionally to embellish, you have given prominence not so much to the many causes célèbres and sensational trials in which I have figured but rather to those incidents which may have been trivial in themselves, but which have given room for those faculties of deduction and of logical synthesis which I have made my special province." "And yet," said I, smiling, "I cannot quite hold myself absolved from the charge of sensationalism which has been urged against my records." "You have erred, perhaps," he observed, taking up a glowing cinder with the tongs and lighting with it the long cherry-wood pipe which was wont to replace his clay when he was in a disputatious rather than a meditative mood--"you have erred perhaps in attempting to put colour and life into each of your statements instead of confining yourself to the task of placing upon record that severe reasoning from cause to effect which is really the only notable feature about the thing." "It seems to me that I have done you full justice in the matter," I remarked with some coldness, for I was repelled by the egotism which I had more than once observed to be a strong factor in my friend's singular character. "No, it is not selfishness or conceit," said he, answering, as was his wont, my thoughts rather than my words. "If I claim full justice for my art, it is because it is an impersonal thing--a thing beyond myself. Crime is common. Logic is rare. Therefore it is upon the logic rather than upon the crime that you should dwell. You have degraded what should have been a course of lectures into a series of tales." It was a cold morning of the early spring, and we sat after breakfast on either side of a cheery fire in the old room at Baker Street. A thick fog rolled down between the lines of dun-coloured houses, and the opposing windows loomed like dark, shapeless blurs through the heavy yellow wreaths. Our gas was lit and shone on the white cloth and glimmer of china and metal, for the table had not been cleared yet. Sherlock Holmes had been silent all the morning, dipping continuously into the advertisement columns of a succession of papers until at last, having apparently given up his search, he had emerged in no very sweet temper to lecture me upon my literary shortcomings. "At the same time," he remarked after a pause, during which he had sat puffing at his long pipe and gazing down into the fire, "you can hardly be open to a charge of sensationalism, for out of these cases which you have been so kind as to interest yourself in, a fair proportion do not treat of crime, in its legal sense, at all. The small matter in which I endeavoured to help the King of Bohemia, the singular experience of Miss Mary Sutherland, the problem connected with the man with the twisted lip, and the incident of the noble bachelor, were all matters which are outside the pale of the law. But in avoiding the sensational, I fear that you may have bordered on the trivial." "The end may have been so," I answered, "but the methods I hold to have been novel and of interest." "Pshaw, my dear fellow, what do the public, the great unobservant public, who could hardly tell a weaver by his tooth or a compositor by his left thumb, care about the finer shades of analysis and deduction! But, indeed, if you are trivial, I cannot blame you, for the days of the great cases are past. Man, or at least criminal man, has lost all enterprise and originality. As to my own little practice, it seems to be degenerating into an agency for recovering lost lead pencils and giving advice to young ladies from boarding-schools. I think that I have touched bottom at last, however. This note I had this morning marks my zero-point, I fancy. Read it!" He tossed a crumpled letter across to me. It was dated from Montague Place upon the preceding evening, and ran thus: "DEAR MR. HOLMES:--I am very anxious to consult you as to whether I should or should not accept a situation which has been offered to me as governess. I shall call at half-past ten to-morrow if I do not inconvenience you. Yours faithfully, "VIOLET HUNTER." "Do you know the young lady?" I asked. "Not I." "It is half-past ten now." "Yes, and I have no doubt that is her ring." "It may turn out to be of more interest than you think. You remember that the affair of the blue carbuncle, which appeared to be a mere whim at first, developed into a serious investigation. It may be so in this case, also." "Well, let us hope so. But our doubts will very soon be solved, for here, unless I am much mistaken, is the person in question." As he spoke the door opened and a young lady entered the room. She was plainly but neatly dressed, with a bright, quick face, freckled like a plover's egg, and with the brisk manner of a woman who has had her own way to make in the world. "You will excuse my troubling you, I am sure," said she, as my companion rose to greet her, "but I have had a very strange experience, and as I have no parents or relations of any sort from whom I could ask advice, I thought that perhaps you would be kind enough to tell me what I should do." "Pray take a seat, Miss Hunter. I shall be happy to do anything that I can to serve you." I could see that Holmes was favourably impressed by the manner and speech of his new client. He looked her over in his searching fashion, and then composed himself, with his lids drooping and his finger-tips together, to listen to her story. "I have been a governess for five years," said she, "in the family of Colonel Spence Munro, but two months ago the colonel received an appointment at Halifax, in Nova Scotia, and took his children over to America with him, so that I found myself without a situation. I advertised, and I answered advertisements, but without success. At last the little money which I had saved began to run short, and I was at my wit's end as to what I should do. "There is a well-known agency for governesses in the West End called Westaway's, and there I used to call about once a week in order to see whether anything had turned up which might suit me. Westaway was the name of the founder of the business, but it is really managed by Miss Stoper. She sits in her own little office, and the ladies who are seeking employment wait in an anteroom, and are then shown in one by one, when she consults her ledgers and sees whether she has anything which would suit them. "Well, when I called last week I was shown into the little office as usual, but I found that Miss Stoper was not alone. A prodigiously stout man with a very smiling face and a great heavy chin which rolled down in fold upon fold over his throat sat at her elbow with a pair of glasses on his nose, looking very earnestly at the ladies who entered. As I came in he gave quite a jump in his chair and turned quickly to Miss Stoper. "'That will do,' said he; 'I could not ask for anything better. Capital! capital!' He seemed quite enthusiastic and rubbed his hands together in the most genial fashion. He was such a comfortable-looking man that it was quite a pleasure to look at him. "'You are looking for a situation, miss?' he asked. "'Yes, sir.' "'As governess?' "'Yes, sir.' "'And what salary do you ask?' "'I had 4 pounds a month in my last place with Colonel Spence Munro.' "'Oh, tut, tut! sweating--rank sweating!' he cried, throwing his fat hands out into the air like a man who is in a boiling passion. 'How could anyone offer so pitiful a sum to a lady with such attractions and accomplishments?' "'My accomplishments, sir, may be less than you imagine,' said I. 'A little French, a little German, music, and drawing--' "'Tut, tut!' he cried. 'This is all quite beside the question. The point is, have you or have you not the bearing and deportment of a lady? There it is in a nutshell. If you have not, you are not fitted for the rearing of a child who may some day play a considerable part in the history of the country. But if you have why, then, how could any gentleman ask you to condescend to accept anything under the three figures? Your salary with me, madam, would commence at 100 pounds a year.' "You may imagine, Mr. Holmes, that to me, destitute as I was, such an offer seemed almost too good to be true. The gentleman, however, seeing perhaps the look of incredulity upon my face, opened a pocket-book and took out a note. "'It is also my custom,' said he, smiling in the most pleasant fashion until his eyes were just two little shining slits amid the white creases of his face, 'to advance to my young ladies half their salary beforehand, so that they may meet any little expenses of their journey and their wardrobe.' "It seemed to me that I had never met so fascinating and so thoughtful a man. As I was already in debt to my tradesmen, the advance was a great convenience, and yet there was something unnatural about the whole transaction which made me wish to know a little more before I quite committed myself. "'May I ask where you live, sir?' said I. "'Hampshire. Charming rural place. The Copper Beeches, five miles on the far side of Winchester. It is the most lovely country, my dear young lady, and the dearest old country-house.' "'And my duties, sir? I should be glad to know what they would be.' "'One child--one dear little romper just six years old. Oh, if you could see him killing cockroaches with a slipper! Smack! smack! smack! Three gone before you could wink!' He leaned back in his chair and laughed his eyes into his head again. "I was a little startled at the nature of the child's amusement, but the father's laughter made me think that perhaps he was joking. "'My sole duties, then,' I asked, 'are to take charge of a single child?' "'No, no, not the sole, not the sole, my dear young lady,' he cried. 'Your duty would be, as I am sure your good sense would suggest, to obey any little commands my wife might give, provided always that they were such commands as a lady might with propriety obey. You see no difficulty, heh?' "'I should be happy to make myself useful.' "'Quite so. In dress now, for example. We are faddy people, you know--faddy but kind-hearted. If you were asked to wear any dress which we might give you, you would not object to our little whim. Heh?' "'No,' said I, considerably astonished at his words. "'Or to sit here, or sit there, that would not be offensive to you?' "'Oh, no.' "'Or to cut your hair quite short before you come to us?' "I could hardly believe my ears. As you may observe, Mr. Holmes, my hair is somewhat luxuriant, and of a rather peculiar tint of chestnut. It has been considered artistic. I could not dream of sacrificing it in this offhand fashion. "'I am afraid that that is quite impossible,' said I. He had been watching me eagerly out of his small eyes, and I could see a shadow pass over his face as I spoke. "'I am afraid that it is quite essential,' said he. 'It is a little fancy of my wife's, and ladies' fancies, you know, madam, ladies' fancies must be consulted. And so you won't cut your hair?' "'No, sir, I really could not,' I answered firmly. "'Ah, very well; then that quite settles the matter. It is a pity, because in other respects you would really have done very nicely. In that case, Miss Stoper, I had best inspect a few more of your young ladies.' "The manageress had sat all this while busy with her papers without a word to either of us, but she glanced at me now with so much annoyance upon her face that I could not help suspecting that she had lost a handsome commission through my refusal. "'Do you desire your name to be kept upon the books?' she asked. "'If you please, Miss Stoper.' "'Well, really, it seems rather useless, since you refuse the most excellent offers in this fashion,' said she sharply. 'You can hardly expect us to exert ourselves to find another such opening for you. Good-day to you, Miss Hunter.' She struck a gong upon the table, and I was shown out by the page. "Well, Mr. Holmes, when I got back to my lodgings and found little enough in the cupboard, and two or three bills upon the table, I began to ask myself whether I had not done a very foolish thing. After all, if these people had strange fads and expected obedience on the most extraordinary matters, they were at least ready to pay for their eccentricity. Very few governesses in England are getting 100 pounds a year. Besides, what use was my hair to me? Many people are improved by wearing it short and perhaps I should be among the number. Next day I was inclined to think that I had made a mistake, and by the day after I was sure of it. I had almost overcome my pride so far as to go back to the agency and inquire whether the place was still open when I received this letter from the gentleman himself. I have it here and I will read it to you: "'The Copper Beeches, near Winchester. "'DEAR MISS HUNTER:--Miss Stoper has very kindly given me your address, and I write from here to ask you whether you have reconsidered your decision. My wife is very anxious that you should come, for she has been much attracted by my description of you. We are willing to give 30 pounds a quarter, or 120 pounds a year, so as to recompense you for any little inconvenience which our fads may cause you. They are not very exacting, after all. My wife is fond of a particular shade of electric blue and would like you to wear such a dress indoors in the morning. You need not, however, go to the expense of purchasing one, as we have one belonging to my dear daughter Alice (now in Philadelphia), which would, I should think, fit you very well. Then, as to sitting here or there, or amusing yourself in any manner indicated, that need cause you no inconvenience. As regards your hair, it is no doubt a pity, especially as I could not help remarking its beauty during our short interview, but I am afraid that I must remain firm upon this point, and I only hope that the increased salary may recompense you for the loss. Your duties, as far as the child is concerned, are very light. Now do try to come, and I shall meet you with the dog-cart at Winchester. Let me know your train. Yours faithfully, JEPHRO RUCASTLE.' "That is the letter which I have just received, Mr. Holmes, and my mind is made up that I will accept it. I thought, however, that before taking the final step I should like to submit the whole matter to your consideration." "Well, Miss Hunter, if your mind is made up, that settles the question," said Holmes, smiling. "But you would not advise me to refuse?" "I confess that it is not the situation which I should like to see a sister of mine apply for." "What is the meaning of it all, Mr. Holmes?" "Ah, I have no data. I cannot tell. Perhaps you have yourself formed some opinion?" "Well, there seems to me to be only one possible solution. Mr. Rucastle seemed to be a very kind, good-natured man. Is it not possible that his wife is a lunatic, that he desires to keep the matter quiet for fear she should be taken to an asylum, and that he humours her fancies in every way in order to prevent an outbreak?" "That is a possible solution--in fact, as matters stand, it is the most probable one. But in any case it does not seem to be a nice household for a young lady." "But the money, Mr. Holmes, the money!" "Well, yes, of course the pay is good--too good. That is what makes me uneasy. Why should they give you 120 pounds a year, when they could have their pick for 40 pounds? There must be some strong reason behind." "I thought that if I told you the circumstances you would understand afterwards if I wanted your help. I should feel so much stronger if I felt that you were at the back of me." "Oh, you may carry that feeling away with you. I assure you that your little problem promises to be the most interesting which has come my way for some months. There is something distinctly novel about some of the features. If you should find yourself in doubt or in danger--" "Danger! What danger do you foresee?" Holmes shook his head gravely. "It would cease to be a danger if we could define it," said he. "But at any time, day or night, a telegram would bring me down to your help." "That is enough." She rose briskly from her chair with the anxiety all swept from her face. "I shall go down to Hampshire quite easy in my mind now. I shall write to Mr. Rucastle at once, sacrifice my poor hair to-night, and start for Winchester to-morrow." With a few grateful words to Holmes she bade us both good-night and bustled off upon her way. "At least," said I as we heard her quick, firm steps descending the stairs, "she seems to be a young lady who is very well able to take care of herself." "And she would need to be," said Holmes gravely. "I am much mistaken if we do not hear from her before many days are past." It was not very long before my friend's prediction was fulfilled. A fortnight went by, during which I frequently found my thoughts turning in her direction and wondering what strange side-alley of human experience this lonely woman had strayed into. The unusual salary, the curious conditions, the light duties, all pointed to something abnormal, though whether a fad or a plot, or whether the man were a philanthropist or a villain, it was quite beyond my powers to determine. As to Holmes, I observed that he sat frequently for half an hour on end, with knitted brows and an abstracted air, but he swept the matter away with a wave of his hand when I mentioned it. "Data! data! data!" he cried impatiently. "I can't make bricks without clay." And yet he would always wind up by muttering that no sister of his should ever have accepted such a situation. The telegram which we eventually received came late one night just as I was thinking of turning in and Holmes was settling down to one of those all-night chemical researches which he frequently indulged in, when I would leave him stooping over a retort and a test-tube at night and find him in the same position when I came down to breakfast in the morning. He opened the yellow envelope, and then, glancing at the message, threw it across to me. "Just look up the trains in Bradshaw," said he, and turned back to his chemical studies. The summons was a brief and urgent one. "Please be at the Black Swan Hotel at Winchester at midday to-morrow," it said. "Do come! I am at my wit's end. HUNTER." "Will you come with me?" asked Holmes, glancing up. "I should wish to." "Just look it up, then." "There is a train at half-past nine," said I, glancing over my Bradshaw. "It is due at Winchester at 11:30." "That will do very nicely. Then perhaps I had better postpone my analysis of the acetones, as we may need to be at our best in the morning." By eleven o'clock the next day we were well upon our way to the old English capital. Holmes had been buried in the morning papers all the way down, but after we had passed the Hampshire border he threw them down and began to admire the scenery. It was an ideal spring day, a light blue sky, flecked with little fleecy white clouds drifting across from west to east. The sun was shining very brightly, and yet there was an exhilarating nip in the air, which set an edge to a man's energy. All over the countryside, away to the rolling hills around Aldershot, the little red and grey roofs of the farm-steadings peeped out from amid the light green of the new foliage. "Are they not fresh and beautiful?" I cried with all the enthusiasm of a man fresh from the fogs of Baker Street. But Holmes shook his head gravely. "Do you know, Watson," said he, "that it is one of the curses of a mind with a turn like mine that I must look at everything with reference to my own special subject. You look at these scattered houses, and you are impressed by their beauty. I look at them, and the only thought which comes to me is a feeling of their isolation and of the impunity with which crime may be committed there." "Good heavens!" I cried. "Who would associate crime with these dear old homesteads?" "They always fill me with a certain horror. It is my belief, Watson, founded upon my experience, that the lowest and vilest alleys in London do not present a more dreadful record of sin than does the smiling and beautiful countryside." "You horrify me!" "But the reason is very obvious. The pressure of public opinion can do in the town what the law cannot accomplish. There is no lane so vile that the scream of a tortured child, or the thud of a drunkard's blow, does not beget sympathy and indignation among the neighbours, and then the whole machinery of justice is ever so close that a word of complaint can set it going, and there is but a step between the crime and the dock. But look at these lonely houses, each in its own fields, filled for the most part with poor ignorant folk who know little of the law. Think of the deeds of hellish cruelty, the hidden wickedness which may go on, year in, year out, in such places, and none the wiser. Had this lady who appeals to us for help gone to live in Winchester, I should never have had a fear for her. It is the five miles of country which makes the danger. Still, it is clear that she is not personally threatened." "No. If she can come to Winchester to meet us she can get away." "Quite so. She has her freedom." "What CAN be the matter, then? Can you suggest no explanation?" "I have devised seven separate explanations, each of which would cover the facts as far as we know them. But which of these is correct can only be determined by the fresh information which we shall no doubt find waiting for us. Well, there is the tower of the cathedral, and we shall soon learn all that Miss Hunter has to tell." The Black Swan is an inn of repute in the High Street, at no distance from the station, and there we found the young lady waiting for us. She had engaged a sitting-room, and our lunch awaited us upon the table. "I am so delighted that you have come," she said earnestly. "It is so very kind of you both; but indeed I do not know what I should do. Your advice will be altogether invaluable to me." "Pray tell us what has happened to you." "I will do so, and I must be quick, for I have promised Mr. Rucastle to be back before three. I got his leave to come into town this morning, though he little knew for what purpose." "Let us have everything in its due order." Holmes thrust his long thin legs out towards the fire and composed himself to listen. "In the first place, I may say that I have met, on the whole, with no actual ill-treatment from Mr. and Mrs. Rucastle. It is only fair to them to say that. But I cannot understand them, and I am not easy in my mind about them." "What can you not understand?" "Their reasons for their conduct. But you shall have it all just as it occurred. When I came down, Mr. Rucastle met me here and drove me in his dog-cart to the Copper Beeches. It is, as he said, beautifully situated, but it is not beautiful in itself, for it is a large square block of a house, whitewashed, but all stained and streaked with damp and bad weather. There are grounds round it, woods on three sides, and on the fourth a field which slopes down to the Southampton highroad, which curves past about a hundred yards from the front door. This ground in front belongs to the house, but the woods all round are part of Lord Southerton's preserves. A clump of copper beeches immediately in front of the hall door has given its name to the place. "I was driven over by my employer, who was as amiable as ever, and was introduced by him that evening to his wife and the child. There was no truth, Mr. Holmes, in the conjecture which seemed to us to be probable in your rooms at Baker Street. Mrs. Rucastle is not mad. I found her to be a silent, pale-faced woman, much younger than her husband, not more than thirty, I should think, while he can hardly be less than forty-five. From their conversation I have gathered that they have been married about seven years, that he was a widower, and that his only child by the first wife was the daughter who has gone to Philadelphia. Mr. Rucastle told me in private that the reason why she had left them was that she had an unreasoning aversion to her stepmother. As the daughter could not have been less than twenty, I can quite imagine that her position must have been uncomfortable with her father's young wife. "Mrs. Rucastle seemed to me to be colourless in mind as well as in feature. She impressed me neither favourably nor the reverse. She was a nonentity. It was easy to see that she was passionately devoted both to her husband and to her little son. Her light grey eyes wandered continually from one to the other, noting every little want and forestalling it if possible. He was kind to her also in his bluff, boisterous fashion, and on the whole they seemed to be a happy couple. And yet she had some secret sorrow, this woman. She would often be lost in deep thought, with the saddest look upon her face. More than once I have surprised her in tears. I have thought sometimes that it was the disposition of her child which weighed upon her mind, for I have never met so utterly spoiled and so ill-natured a little creature. He is small for his age, with a head which is quite disproportionately large. His whole life appears to be spent in an alternation between savage fits of passion and gloomy intervals of sulking. Giving pain to any creature weaker than himself seems to be his one idea of amusement, and he shows quite remarkable talent in planning the capture of mice, little birds, and insects. But I would rather not talk about the creature, Mr. Holmes, and, indeed, he has little to do with my story." "I am glad of all details," remarked my friend, "whether they seem to you to be relevant or not." "I shall try not to miss anything of importance. The one unpleasant thing about the house, which struck me at once, was the appearance and conduct of the servants. There are only two, a man and his wife. Toller, for that is his name, is a rough, uncouth man, with grizzled hair and whiskers, and a perpetual smell of drink. Twice since I have been with them he has been quite drunk, and yet Mr. Rucastle seemed to take no notice of it. His wife is a very tall and strong woman with a sour face, as silent as Mrs. Rucastle and much less amiable. They are a most unpleasant couple, but fortunately I spend most of my time in the nursery and my own room, which are next to each other in one corner of the building. "For two days after my arrival at the Copper Beeches my life was very quiet; on the third, Mrs. Rucastle came down just after breakfast and whispered something to her husband. "'Oh, yes,' said he, turning to me, 'we are very much obliged to you, Miss Hunter, for falling in with our whims so far as to cut your hair. I assure you that it has not detracted in the tiniest iota from your appearance. We shall now see how the electric-blue dress will become you. You will find it laid out upon the bed in your room, and if you would be so good as to put it on we should both be extremely obliged.' "The dress which I found waiting for me was of a peculiar shade of blue. It was of excellent material, a sort of beige, but it bore unmistakable signs of having been worn before. It could not have been a better fit if I had been measured for it. Both Mr. and Mrs. Rucastle expressed a delight at the look of it, which seemed quite exaggerated in its vehemence. They were waiting for me in the drawing-room, which is a very large room, stretching along the entire front of the house, with three long windows reaching down to the floor. A chair had been placed close to the central window, with its back turned towards it. In this I was asked to sit, and then Mr. Rucastle, walking up and down on the other side of the room, began to tell me a series of the funniest stories that I have ever listened to. You cannot imagine how comical he was, and I laughed until I was quite weary. Mrs. Rucastle, however, who has evidently no sense of humour, never so much as smiled, but sat with her hands in her lap, and a sad, anxious look upon her face. After an hour or so, Mr. Rucastle suddenly remarked that it was time to commence the duties of the day, and that I might change my dress and go to little Edward in the nursery. "Two days later this same performance was gone through under exactly similar circumstances. Again I changed my dress, again I sat in the window, and again I laughed very heartily at the funny stories of which my employer had an immense répertoire, and which he told inimitably. Then he handed me a yellow-backed novel, and moving my chair a little sideways, that my own shadow might not fall upon the page, he begged me to read aloud to him. I read for about ten minutes, beginning in the heart of a chapter, and then suddenly, in the middle of a sentence, he ordered me to cease and to change my dress. "You can easily imagine, Mr. Holmes, how curious I became as to what the meaning of this extraordinary performance could possibly be. They were always very careful, I observed, to turn my face away from the window, so that I became consumed with the desire to see what was going on behind my back. At first it seemed to be impossible, but I soon devised a means. My hand-mirror had been broken, so a happy thought seized me, and I concealed a piece of the glass in my handkerchief. On the next occasion, in the midst of my laughter, I put my handkerchief up to my eyes, and was able with a little management to see all that there was behind me. I confess that I was disappointed. There was nothing. At least that was my first impression. At the second glance, however, I perceived that there was a man standing in the Southampton Road, a small bearded man in a grey suit, who seemed to be looking in my direction. The road is an important highway, and there are usually people there. This man, however, was leaning against the railings which bordered our field and was looking earnestly up. I lowered my handkerchief and glanced at Mrs. Rucastle to find her eyes fixed upon me with a most searching gaze. She said nothing, but I am convinced that she had divined that I had a mirror in my hand and had seen what was behind me. She rose at once. "'Jephro,' said she, 'there is an impertinent fellow upon the road there who stares up at Miss Hunter.' "'No friend of yours, Miss Hunter?' he asked. "'No, I know no one in these parts.' "'Dear me! How very impertinent! Kindly turn round and motion to him to go away.' "'Surely it would be better to take no notice.' "'No, no, we should have him loitering here always. Kindly turn round and wave him away like that.' "I did as I was told, and at the same instant Mrs. Rucastle drew down the blind. That was a week ago, and from that time I have not sat again in the window, nor have I worn the blue dress, nor seen the man in the road." "Pray continue," said Holmes. "Your narrative promises to be a most interesting one." "You will find it rather disconnected, I fear, and there may prove to be little relation between the different incidents of which I speak. On the very first day that I was at the Copper Beeches, Mr. Rucastle took me to a small outhouse which stands near the kitchen door. As we approached it I heard the sharp rattling of a chain, and the sound as of a large animal moving about. "'Look in here!' said Mr. Rucastle, showing me a slit between two planks. 'Is he not a beauty?' "I looked through and was conscious of two glowing eyes, and of a vague figure huddled up in the darkness. "'Don't be frightened,' said my employer, laughing at the start which I had given. 'It's only Carlo, my mastiff. I call him mine, but really old Toller, my groom, is the only man who can do anything with him. We feed him once a day, and not too much then, so that he is always as keen as mustard. Toller lets him loose every night, and God help the trespasser whom he lays his fangs upon. For goodness' sake don't you ever on any pretext set your foot over the threshold at night, for it's as much as your life is worth.' "The warning was no idle one, for two nights later I happened to look out of my bedroom window about two o'clock in the morning. It was a beautiful moonlight night, and the lawn in front of the house was silvered over and almost as bright as day. I was standing, rapt in the peaceful beauty of the scene, when I was aware that something was moving under the shadow of the copper beeches. As it emerged into the moonshine I saw what it was. It was a giant dog, as large as a calf, tawny tinted, with hanging jowl, black muzzle, and huge projecting bones. It walked slowly across the lawn and vanished into the shadow upon the other side. That dreadful sentinel sent a chill to my heart which I do not think that any burglar could have done. "And now I have a very strange experience to tell you. I had, as you know, cut off my hair in London, and I had placed it in a great coil at the bottom of my trunk. One evening, after the child was in bed, I began to amuse myself by examining the furniture of my room and by rearranging my own little things. There was an old chest of drawers in the room, the two upper ones empty and open, the lower one locked. I had filled the first two with my linen, and as I had still much to pack away I was naturally annoyed at not having the use of the third drawer. It struck me that it might have been fastened by a mere oversight, so I took out my bunch of keys and tried to open it. The very first key fitted to perfection, and I drew the drawer open. There was only one thing in it, but I am sure that you would never guess what it was. It was my coil of hair. "I took it up and examined it. It was of the same peculiar tint, and the same thickness. But then the impossibility of the thing obtruded itself upon me. How could my hair have been locked in the drawer? With trembling hands I undid my trunk, turned out the contents, and drew from the bottom my own hair. I laid the two tresses together, and I assure you that they were identical. Was it not extraordinary? Puzzle as I would, I could make nothing at all of what it meant. I returned the strange hair to the drawer, and I said nothing of the matter to the Rucastles as I felt that I had put myself in the wrong by opening a drawer which they had locked. "I am naturally observant, as you may have remarked, Mr. Holmes, and I soon had a pretty good plan of the whole house in my head. There was one wing, however, which appeared not to be inhabited at all. A door which faced that which led into the quarters of the Tollers opened into this suite, but it was invariably locked. One day, however, as I ascended the stair, I met Mr. Rucastle coming out through this door, his keys in his hand, and a look on his face which made him a very different person to the round, jovial man to whom I was accustomed. His cheeks were red, his brow was all crinkled with anger, and the veins stood out at his temples with passion. He locked the door and hurried past me without a word or a look. "This aroused my curiosity, so when I went out for a walk in the grounds with my charge, I strolled round to the side from which I could see the windows of this part of the house. There were four of them in a row, three of which were simply dirty, while the fourth was shuttered up. They were evidently all deserted. As I strolled up and down, glancing at them occasionally, Mr. Rucastle came out to me, looking as merry and jovial as ever. "'Ah!' said he, 'you must not think me rude if I passed you without a word, my dear young lady. I was preoccupied with business matters.' "I assured him that I was not offended. 'By the way,' said I, 'you seem to have quite a suite of spare rooms up there, and one of them has the shutters up.' "He looked surprised and, as it seemed to me, a little startled at my remark. "'Photography is one of my hobbies,' said he. 'I have made my dark room up there. But, dear me! what an observant young lady we have come upon. Who would have believed it? Who would have ever believed it?' He spoke in a jesting tone, but there was no jest in his eyes as he looked at me. I read suspicion there and annoyance, but no jest. "Well, Mr. Holmes, from the moment that I understood that there was something about that suite of rooms which I was not to know, I was all on fire to go over them. It was not mere curiosity, though I have my share of that. It was more a feeling of duty--a feeling that some good might come from my penetrating to this place. They talk of woman's instinct; perhaps it was woman's instinct which gave me that feeling. At any rate, it was there, and I was keenly on the lookout for any chance to pass the forbidden door. "It was only yesterday that the chance came. I may tell you that, besides Mr. Rucastle, both Toller and his wife find something to do in these deserted rooms, and I once saw him carrying a large black linen bag with him through the door. Recently he has been drinking hard, and yesterday evening he was very drunk; and when I came upstairs there was the key in the door. I have no doubt at all that he had left it there. Mr. and Mrs. Rucastle were both downstairs, and the child was with them, so that I had an admirable opportunity. I turned the key gently in the lock, opened the door, and slipped through. "There was a little passage in front of me, unpapered and uncarpeted, which turned at a right angle at the farther end. Round this corner were three doors in a line, the first and third of which were open. They each led into an empty room, dusty and cheerless, with two windows in the one and one in the other, so thick with dirt that the evening light glimmered dimly through them. The centre door was closed, and across the outside of it had been fastened one of the broad bars of an iron bed, padlocked at one end to a ring in the wall, and fastened at the other with stout cord. The door itself was locked as well, and the key was not there. This barricaded door corresponded clearly with the shuttered window outside, and yet I could see by the glimmer from beneath it that the room was not in darkness. Evidently there was a skylight which let in light from above. As I stood in the passage gazing at the sinister door and wondering what secret it might veil, I suddenly heard the sound of steps within the room and saw a shadow pass backward and forward against the little slit of dim light which shone out from under the door. A mad, unreasoning terror rose up in me at the sight, Mr. Holmes. My overstrung nerves failed me suddenly, and I turned and ran--ran as though some dreadful hand were behind me clutching at the skirt of my dress. I rushed down the passage, through the door, and straight into the arms of Mr. Rucastle, who was waiting outside. "'So,' said he, smiling, 'it was you, then. I thought that it must be when I saw the door open.' "'Oh, I am so frightened!' I panted. "'My dear young lady! my dear young lady!'--you cannot think how caressing and soothing his manner was--'and what has frightened you, my dear young lady?' "But his voice was just a little too coaxing. He overdid it. I was keenly on my guard against him. "'I was foolish enough to go into the empty wing,' I answered. 'But it is so lonely and eerie in this dim light that I was frightened and ran out again. Oh, it is so dreadfully still in there!' "'Only that?' said he, looking at me keenly. "'Why, what did you think?' I asked. "'Why do you think that I lock this door?' "'I am sure that I do not know.' "'It is to keep people out who have no business there. Do you see?' He was still smiling in the most amiable manner. "'I am sure if I had known--' "'Well, then, you know now. And if you ever put your foot over that threshold again'--here in an instant the smile hardened into a grin of rage, and he glared down at me with the face of a demon--'I'll throw you to the mastiff.' "I was so terrified that I do not know what I did. I suppose that I must have rushed past him into my room. I remember nothing until I found myself lying on my bed trembling all over. Then I thought of you, Mr. Holmes. I could not live there longer without some advice. I was frightened of the house, of the man, of the woman, of the servants, even of the child. They were all horrible to me. If I could only bring you down all would be well. Of course I might have fled from the house, but my curiosity was almost as strong as my fears. My mind was soon made up. I would send you a wire. I put on my hat and cloak, went down to the office, which is about half a mile from the house, and then returned, feeling very much easier. A horrible doubt came into my mind as I approached the door lest the dog might be loose, but I remembered that Toller had drunk himself into a state of insensibility that evening, and I knew that he was the only one in the household who had any influence with the savage creature, or who would venture to set him free. I slipped in in safety and lay awake half the night in my joy at the thought of seeing you. I had no difficulty in getting leave to come into Winchester this morning, but I must be back before three o'clock, for Mr. and Mrs. Rucastle are going on a visit, and will be away all the evening, so that I must look after the child. Now I have told you all my adventures, Mr. Holmes, and I should be very glad if you could tell me what it all means, and, above all, what I should do." Holmes and I had listened spellbound to this extraordinary story. My friend rose now and paced up and down the room, his hands in his pockets, and an expression of the most profound gravity upon his face. "Is Toller still drunk?" he asked. "Yes. I heard his wife tell Mrs. Rucastle that she could do nothing with him." "That is well. And the Rucastles go out to-night?" "Yes." "Is there a cellar with a good strong lock?" "Yes, the wine-cellar." "You seem to me to have acted all through this matter like a very brave and sensible girl, Miss Hunter. Do you think that you could perform one more feat? I should not ask it of you if I did not think you a quite exceptional woman." "I will try. What is it?" "We shall be at the Copper Beeches by seven o'clock, my friend and I. The Rucastles will be gone by that time, and Toller will, we hope, be incapable. There only remains Mrs. Toller, who might give the alarm. If you could send her into the cellar on some errand, and then turn the key upon her, you would facilitate matters immensely." "I will do it." "Excellent! We shall then look thoroughly into the affair. Of course there is only one feasible explanation. You have been brought there to personate someone, and the real person is imprisoned in this chamber. That is obvious. As to who this prisoner is, I have no doubt that it is the daughter, Miss Alice Rucastle, if I remember right, who was said to have gone to America. You were chosen, doubtless, as resembling her in height, figure, and the colour of your hair. Hers had been cut off, very possibly in some illness through which she has passed, and so, of course, yours had to be sacrificed also. By a curious chance you came upon her tresses. The man in the road was undoubtedly some friend of hers--possibly her fiancé--and no doubt, as you wore the girl's dress and were so like her, he was convinced from your laughter, whenever he saw you, and afterwards from your gesture, that Miss Rucastle was perfectly happy, and that she no longer desired his attentions. The dog is let loose at night to prevent him from endeavouring to communicate with her. So much is fairly clear. The most serious point in the case is the disposition of the child." "What on earth has that to do with it?" I ejaculated. "My dear Watson, you as a medical man are continually gaining light as to the tendencies of a child by the study of the parents. Don't you see that the converse is equally valid. I have frequently gained my first real insight into the character of parents by studying their children. This child's disposition is abnormally cruel, merely for cruelty's sake, and whether he derives this from his smiling father, as I should suspect, or from his mother, it bodes evil for the poor girl who is in their power." "I am sure that you are right, Mr. Holmes," cried our client. "A thousand things come back to me which make me certain that you have hit it. Oh, let us lose not an instant in bringing help to this poor creature." "We must be circumspect, for we are dealing with a very cunning man. We can do nothing until seven o'clock. At that hour we shall be with you, and it will not be long before we solve the mystery." We were as good as our word, for it was just seven when we reached the Copper Beeches, having put up our trap at a wayside public-house. The group of trees, with their dark leaves shining like burnished metal in the light of the setting sun, were sufficient to mark the house even had Miss Hunter not been standing smiling on the door-step. "Have you managed it?" asked Holmes. A loud thudding noise came from somewhere downstairs. "That is Mrs. Toller in the cellar," said she. "Her husband lies snoring on the kitchen rug. Here are his keys, which are the duplicates of Mr. Rucastle's." "You have done well indeed!" cried Holmes with enthusiasm. "Now lead the way, and we shall soon see the end of this black business." We passed up the stair, unlocked the door, followed on down a passage, and found ourselves in front of the barricade which Miss Hunter had described. Holmes cut the cord and removed the transverse bar. Then he tried the various keys in the lock, but without success. No sound came from within, and at the silence Holmes' face clouded over. "I trust that we are not too late," said he. "I think, Miss Hunter, that we had better go in without you. Now, Watson, put your shoulder to it, and we shall see whether we cannot make our way in." It was an old rickety door and gave at once before our united strength. Together we rushed into the room. It was empty. There was no furniture save a little pallet bed, a small table, and a basketful of linen. The skylight above was open, and the prisoner gone. "There has been some villainy here," said Holmes; "this beauty has guessed Miss Hunter's intentions and has carried his victim off." "But how?" "Through the skylight. We shall soon see how he managed it." He swung himself up onto the roof. "Ah, yes," he cried, "here's the end of a long light ladder against the eaves. That is how he did it." "But it is impossible," said Miss Hunter; "the ladder was not there when the Rucastles went away." "He has come back and done it. I tell you that he is a clever and dangerous man. I should not be very much surprised if this were he whose step I hear now upon the stair. I think, Watson, that it would be as well for you to have your pistol ready." The words were hardly out of his mouth before a man appeared at the door of the room, a very fat and burly man, with a heavy stick in his hand. Miss Hunter screamed and shrunk against the wall at the sight of him, but Sherlock Holmes sprang forward and confronted him. "You villain!" said he, "where's your daughter?" The fat man cast his eyes round, and then up at the open skylight. "It is for me to ask you that," he shrieked, "you thieves! Spies and thieves! I have caught you, have I? You are in my power. I'll serve you!" He turned and clattered down the stairs as hard as he could go. "He's gone for the dog!" cried Miss Hunter. "I have my revolver," said I. "Better close the front door," cried Holmes, and we all rushed down the stairs together. We had hardly reached the hall when we heard the baying of a hound, and then a scream of agony, with a horrible worrying sound which it was dreadful to listen to. An elderly man with a red face and shaking limbs came staggering out at a side door. "My God!" he cried. "Someone has loosed the dog. It's not been fed for two days. Quick, quick, or it'll be too late!" Holmes and I rushed out and round the angle of the house, with Toller hurrying behind us. There was the huge famished brute, its black muzzle buried in Rucastle's throat, while he writhed and screamed upon the ground. Running up, I blew its brains out, and it fell over with its keen white teeth still meeting in the great creases of his neck. With much labour we separated them and carried him, living but horribly mangled, into the house. We laid him upon the drawing-room sofa, and having dispatched the sobered Toller to bear the news to his wife, I did what I could to relieve his pain. We were all assembled round him when the door opened, and a tall, gaunt woman entered the room. "Mrs. Toller!" cried Miss Hunter. "Yes, miss. Mr. Rucastle let me out when he came back before he went up to you. Ah, miss, it is a pity you didn't let me know what you were planning, for I would have told you that your pains were wasted." "Ha!" said Holmes, looking keenly at her. "It is clear that Mrs. Toller knows more about this matter than anyone else." "Yes, sir, I do, and I am ready enough to tell what I know." "Then, pray, sit down, and let us hear it for there are several points on which I must confess that I am still in the dark." "I will soon make it clear to you," said she; "and I'd have done so before now if I could ha' got out from the cellar. If there's police-court business over this, you'll remember that I was the one that stood your friend, and that I was Miss Alice's friend too. "She was never happy at home, Miss Alice wasn't, from the time that her father married again. She was slighted like and had no say in anything, but it never really became bad for her until after she met Mr. Fowler at a friend's house. As well as I could learn, Miss Alice had rights of her own by will, but she was so quiet and patient, she was, that she never said a word about them but just left everything in Mr. Rucastle's hands. He knew he was safe with her; but when there was a chance of a husband coming forward, who would ask for all that the law would give him, then her father thought it time to put a stop on it. He wanted her to sign a paper, so that whether she married or not, he could use her money. When she wouldn't do it, he kept on worrying her until she got brain-fever, and for six weeks was at death's door. Then she got better at last, all worn to a shadow, and with her beautiful hair cut off; but that didn't make no change in her young man, and he stuck to her as true as man could be." "Ah," said Holmes, "I think that what you have been good enough to tell us makes the matter fairly clear, and that I can deduce all that remains. Mr. Rucastle then, I presume, took to this system of imprisonment?" "Yes, sir." "And brought Miss Hunter down from London in order to get rid of the disagreeable persistence of Mr. Fowler." "That was it, sir." "But Mr. Fowler being a persevering man, as a good seaman should be, blockaded the house, and having met you succeeded by certain arguments, metallic or otherwise, in convincing you that your interests were the same as his." "Mr. Fowler was a very kind-spoken, free-handed gentleman," said Mrs. Toller serenely. "And in this way he managed that your good man should have no want of drink, and that a ladder should be ready at the moment when your master had gone out." "You have it, sir, just as it happened." "I am sure we owe you an apology, Mrs. Toller," said Holmes, "for you have certainly cleared up everything which puzzled us. And here comes the country surgeon and Mrs. Rucastle, so I think, Watson, that we had best escort Miss Hunter back to Winchester, as it seems to me that our locus standi now is rather a questionable one." And thus was solved the mystery of the sinister house with the copper beeches in front of the door. Mr. Rucastle survived, but was always a broken man, kept alive solely through the care of his devoted wife. They still live with their old servants, who probably know so much of Rucastle's past life that he finds it difficult to part from them. Mr. Fowler and Miss Rucastle were married, by special license, in Southampton the day after their flight, and he is now the holder of a government appointment in the island of Mauritius. As to Miss Violet Hunter, my friend Holmes, rather to my disappointment, manifested no further interest in her when once she had ceased to be the centre of one of his problems, and she is now the head of a private school at Walsall, where I believe that she has met with considerable success. End of the Project Gutenberg EBook of The Adventures of Sherlock Holmes, by Arthur Conan Doyle *** END OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES *** ***** This file should be named 1661-8.txt or 1661-8.zip ***** This and all associated files of various formats will be found in: http://www.gutenberg.org/1/6/6/1661/ Produced by an anonymous Project Gutenberg volunteer and Jose Menendez Updated editions will replace the previous one--the old editions will be renamed. Creating the works from public domain print editions means that no one owns a United States copyright in these works, so the Foundation (and you!) can copy and distribute it in the United States without permission and without paying copyright royalties. Special rules, set forth in the General Terms of Use part of this license, apply to copying and distributing Project Gutenberg-tm electronic works to protect the PROJECT GUTENBERG-tm concept and trademark. Project Gutenberg is a registered trademark, and may not be used if you charge for the eBooks, unless you receive specific permission. If you do not charge anything for copies of this eBook, complying with the rules is very easy. You may use this eBook for nearly any purpose such as creation of derivative works, reports, performances and research. They may be modified and printed and given away--you may do practically ANYTHING with public domain eBooks. Redistribution is subject to the trademark license, especially commercial redistribution. *** START: FULL LICENSE *** THE FULL PROJECT GUTENBERG LICENSE PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK To protect the Project Gutenberg-tm mission of promoting the free distribution of electronic works, by using or distributing this work (or any other work associated in any way with the phrase "Project Gutenberg"), you agree to comply with all the terms of the Full Project Gutenberg-tm License (available with this file or online at http://gutenberg.net/license). Section 1. General Terms of Use and Redistributing Project Gutenberg-tm electronic works 1.A. By reading or using any part of this Project Gutenberg-tm electronic work, you indicate that you have read, understand, agree to and accept all the terms of this license and intellectual property (trademark/copyright) agreement. If you do not agree to abide by all the terms of this agreement, you must cease using and return or destroy all copies of Project Gutenberg-tm electronic works in your possession. If you paid a fee for obtaining a copy of or access to a Project Gutenberg-tm electronic work and you do not agree to be bound by the terms of this agreement, you may obtain a refund from the person or entity to whom you paid the fee as set forth in paragraph 1.E.8. 1.B. "Project Gutenberg" is a registered trademark. It may only be used on or associated in any way with an electronic work by people who agree to be bound by the terms of this agreement. There are a few things that you can do with most Project Gutenberg-tm electronic works even without complying with the full terms of this agreement. See paragraph 1.C below. There are a lot of things you can do with Project Gutenberg-tm electronic works if you follow the terms of this agreement and help preserve free future access to Project Gutenberg-tm electronic works. See paragraph 1.E below. 1.C. The Project Gutenberg Literary Archive Foundation ("the Foundation" or PGLAF), owns a compilation copyright in the collection of Project Gutenberg-tm electronic works. Nearly all the individual works in the collection are in the public domain in the United States. If an individual work is in the public domain in the United States and you are located in the United States, we do not claim a right to prevent you from copying, distributing, performing, displaying or creating derivative works based on the work as long as all references to Project Gutenberg are removed. Of course, we hope that you will support the Project Gutenberg-tm mission of promoting free access to electronic works by freely sharing Project Gutenberg-tm works in compliance with the terms of this agreement for keeping the Project Gutenberg-tm name associated with the work. You can easily comply with the terms of this agreement by keeping this work in the same format with its attached full Project Gutenberg-tm License when you share it without charge with others. 1.D. The copyright laws of the place where you are located also govern what you can do with this work. Copyright laws in most countries are in a constant state of change. If you are outside the United States, check the laws of your country in addition to the terms of this agreement before downloading, copying, displaying, performing, distributing or creating derivative works based on this work or any other Project Gutenberg-tm work. The Foundation makes no representations concerning the copyright status of any work in any country outside the United States. 1.E. Unless you have removed all references to Project Gutenberg: 1.E.1. The following sentence, with active links to, or other immediate access to, the full Project Gutenberg-tm License must appear prominently whenever any copy of a Project Gutenberg-tm work (any work on which the phrase "Project Gutenberg" appears, or with which the phrase "Project Gutenberg" is associated) is accessed, displayed, performed, viewed, copied or distributed: This eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever. You may copy it, give it away or re-use it under the terms of the Project Gutenberg License included with this eBook or online at www.gutenberg.net 1.E.2. If an individual Project Gutenberg-tm electronic work is derived from the public domain (does not contain a notice indicating that it is posted with permission of the copyright holder), the work can be copied and distributed to anyone in the United States without paying any fees or charges. If you are redistributing or providing access to a work with the phrase "Project Gutenberg" associated with or appearing on the work, you must comply either with the requirements of paragraphs 1.E.1 through 1.E.7 or obtain permission for the use of the work and the Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or 1.E.9. 1.E.3. If an individual Project Gutenberg-tm electronic work is posted with the permission of the copyright holder, your use and distribution must comply with both paragraphs 1.E.1 through 1.E.7 and any additional terms imposed by the copyright holder. Additional terms will be linked to the Project Gutenberg-tm License for all works posted with the permission of the copyright holder found at the beginning of this work. 1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm License terms from this work, or any files containing a part of this work or any other work associated with Project Gutenberg-tm. 1.E.5. Do not copy, display, perform, distribute or redistribute this electronic work, or any part of this electronic work, without prominently displaying the sentence set forth in paragraph 1.E.1 with active links or immediate access to the full terms of the Project Gutenberg-tm License. 1.E.6. You may convert to and distribute this work in any binary, compressed, marked up, nonproprietary or proprietary form, including any word processing or hypertext form. However, if you provide access to or distribute copies of a Project Gutenberg-tm work in a format other than "Plain Vanilla ASCII" or other format used in the official version posted on the official Project Gutenberg-tm web site (www.gutenberg.net), you must, at no additional cost, fee or expense to the user, provide a copy, a means of exporting a copy, or a means of obtaining a copy upon request, of the work in its original "Plain Vanilla ASCII" or other form. Any alternate format must include the full Project Gutenberg-tm License as specified in paragraph 1.E.1. 1.E.7. Do not charge a fee for access to, viewing, displaying, performing, copying or distributing any Project Gutenberg-tm works unless you comply with paragraph 1.E.8 or 1.E.9. 1.E.8. You may charge a reasonable fee for copies of or providing access to or distributing Project Gutenberg-tm electronic works provided that - You pay a royalty fee of 20% of the gross profits you derive from the use of Project Gutenberg-tm works calculated using the method you already use to calculate your applicable taxes. The fee is owed to the owner of the Project Gutenberg-tm trademark, but he has agreed to donate royalties under this paragraph to the Project Gutenberg Literary Archive Foundation. Royalty payments must be paid within 60 days following each date on which you prepare (or are legally required to prepare) your periodic tax returns. Royalty payments should be clearly marked as such and sent to the Project Gutenberg Literary Archive Foundation at the address specified in Section 4, "Information about donations to the Project Gutenberg Literary Archive Foundation." - You provide a full refund of any money paid by a user who notifies you in writing (or by e-mail) within 30 days of receipt that s/he does not agree to the terms of the full Project Gutenberg-tm License. You must require such a user to return or destroy all copies of the works possessed in a physical medium and discontinue all use of and all access to other copies of Project Gutenberg-tm works. - You provide, in accordance with paragraph 1.F.3, a full refund of any money paid for a work or a replacement copy, if a defect in the electronic work is discovered and reported to you within 90 days of receipt of the work. - You comply with all other terms of this agreement for free distribution of Project Gutenberg-tm works. 1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm electronic work or group of works on different terms than are set forth in this agreement, you must obtain permission in writing from both the Project Gutenberg Literary Archive Foundation and Michael Hart, the owner of the Project Gutenberg-tm trademark. Contact the Foundation as set forth in Section 3 below. 1.F. 1.F.1. Project Gutenberg volunteers and employees expend considerable effort to identify, do copyright research on, transcribe and proofread public domain works in creating the Project Gutenberg-tm collection. Despite these efforts, Project Gutenberg-tm electronic works, and the medium on which they may be stored, may contain "Defects," such as, but not limited to, incomplete, inaccurate or corrupt data, transcription errors, a copyright or other intellectual property infringement, a defective or damaged disk or other medium, a computer virus, or computer codes that damage or cannot be read by your equipment. 1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right of Replacement or Refund" described in paragraph 1.F.3, the Project Gutenberg Literary Archive Foundation, the owner of the Project Gutenberg-tm trademark, and any other party distributing a Project Gutenberg-tm electronic work under this agreement, disclaim all liability to you for damages, costs and expenses, including legal fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH DAMAGE. 1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a defect in this electronic work within 90 days of receiving it, you can receive a refund of the money (if any) you paid for it by sending a written explanation to the person you received the work from. If you received the work on a physical medium, you must return the medium with your written explanation. The person or entity that provided you with the defective work may elect to provide a replacement copy in lieu of a refund. If you received the work electronically, the person or entity providing it to you may choose to give you a second opportunity to receive the work electronically in lieu of a refund. If the second copy is also defective, you may demand a refund in writing without further opportunities to fix the problem. 1.F.4. Except for the limited right of replacement or refund set forth in paragraph 1.F.3, this work is provided to you 'AS-IS' WITH NO OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE. 1.F.5. Some states do not allow disclaimers of certain implied warranties or the exclusion or limitation of certain types of damages. If any disclaimer or limitation set forth in this agreement violates the law of the state applicable to this agreement, the agreement shall be interpreted to make the maximum disclaimer or limitation permitted by the applicable state law. The invalidity or unenforceability of any provision of this agreement shall not void the remaining provisions. 1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the trademark owner, any agent or employee of the Foundation, anyone providing copies of Project Gutenberg-tm electronic works in accordance with this agreement, and any volunteers associated with the production, promotion and distribution of Project Gutenberg-tm electronic works, harmless from all liability, costs and expenses, including legal fees, that arise directly or indirectly from any of the following which you do or cause to occur: (a) distribution of this or any Project Gutenberg-tm work, (b) alteration, modification, or additions or deletions to any Project Gutenberg-tm work, and (c) any Defect you cause. Section 2. Information about the Mission of Project Gutenberg-tm Project Gutenberg-tm is synonymous with the free distribution of electronic works in formats readable by the widest variety of computers including obsolete, old, middle-aged and new computers. It exists because of the efforts of hundreds of volunteers and donations from people in all walks of life. Volunteers and financial support to provide volunteers with the assistance they need are critical to reaching Project Gutenberg-tm's goals and ensuring that the Project Gutenberg-tm collection will remain freely available for generations to come. In 2001, the Project Gutenberg Literary Archive Foundation was created to provide a secure and permanent future for Project Gutenberg-tm and future generations. To learn more about the Project Gutenberg Literary Archive Foundation and how your efforts and donations can help, see Sections 3 and 4 and the Foundation web page at http://www.pglaf.org. Section 3. Information about the Project Gutenberg Literary Archive Foundation The Project Gutenberg Literary Archive Foundation is a non profit 501(c)(3) educational corporation organized under the laws of the state of Mississippi and granted tax exempt status by the Internal Revenue Service. The Foundation's EIN or federal tax identification number is 64-6221541. Its 501(c)(3) letter is posted at http://pglaf.org/fundraising. Contributions to the Project Gutenberg Literary Archive Foundation are tax deductible to the full extent permitted by U.S. federal laws and your state's laws. The Foundation's principal office is located at 4557 Melan Dr. S. Fairbanks, AK, 99712., but its volunteers and employees are scattered throughout numerous locations. Its business office is located at 809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email business@pglaf.org. Email contact links and up to date contact information can be found at the Foundation's web site and official page at http://pglaf.org For additional contact information: Dr. Gregory B. Newby Chief Executive and Director gbnewby@pglaf.org Section 4. Information about Donations to the Project Gutenberg Literary Archive Foundation Project Gutenberg-tm depends upon and cannot survive without wide spread public support and donations to carry out its mission of increasing the number of public domain and licensed works that can be freely distributed in machine readable form accessible by the widest array of equipment including outdated equipment. Many small donations ($1 to $5,000) are particularly important to maintaining tax exempt status with the IRS. The Foundation is committed to complying with the laws regulating charities and charitable donations in all 50 states of the United States. Compliance requirements are not uniform and it takes a considerable effort, much paperwork and many fees to meet and keep up with these requirements. We do not solicit donations in locations where we have not received written confirmation of compliance. To SEND DONATIONS or determine the status of compliance for any particular state visit http://pglaf.org While we cannot and do not solicit contributions from states where we have not met the solicitation requirements, we know of no prohibition against accepting unsolicited donations from donors in such states who approach us with offers to donate. International donations are gratefully accepted, but we cannot make any statements concerning tax treatment of donations received from outside the United States. U.S. laws alone swamp our small staff. Please check the Project Gutenberg Web pages for current donation methods and addresses. Donations are accepted in a number of other ways including including checks, online payments and credit card donations. To donate, please visit: http://pglaf.org/donate Section 5. General Information About Project Gutenberg-tm electronic works. Professor Michael S. Hart is the originator of the Project Gutenberg-tm concept of a library of electronic works that could be freely shared with anyone. For thirty years, he produced and distributed Project Gutenberg-tm eBooks with only a loose network of volunteer support. Project Gutenberg-tm eBooks are often created from several printed editions, all of which are confirmed as Public Domain in the U.S. unless a copyright notice is included. Thus, we do not necessarily keep eBooks in compliance with any particular paper edition. Most people start at our Web site which has the main PG search facility: http://www.gutenberg.net This Web site includes information about Project Gutenberg-tm, including how to make donations to the Project Gutenberg Literary Archive Foundation, how to help produce our new eBooks, and how to subscribe to our email newsletter to hear about new eBooks. lz4-2.5.2/fuzz/corpus/pg_control.tar000066400000000000000000000230001364760661600174320ustar00rootroot00000000000000/global/pg_control0000600000015300001600000002000013446002074012654 0ustar0000000000000000TͬȈ\ <\hX(Qe`%;\Qed@2A  @ i߿ 0#WK$ >lz4-2.5.2/fuzz/corpus/pi.txt000066400000000000000000003032431364760661600157370ustar00rootroot000000000000003.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081284811174502841027019385211055596446229489549303819644288109756659334461284756482337867831652712019091456485669234603486104543266482133936072602491412737245870066063155881748815209209628292540917153643678925903600113305305488204665213841469519415116094330572703657595919530921861173819326117931051185480744623799627495673518857527248912279381830119491298336733624406566430860213949463952247371907021798609437027705392171762931767523846748184676694051320005681271452635608277857713427577896091736371787214684409012249534301465495853710507922796892589235420199561121290219608640344181598136297747713099605187072113499999983729780499510597317328160963185950244594553469083026425223082533446850352619311881710100031378387528865875332083814206171776691473035982534904287554687311595628638823537875937519577818577805321712268066130019278766111959092164201989380952572010654858632788659361533818279682303019520353018529689957736225994138912497217752834791315155748572424541506959508295331168617278558890750983817546374649393192550604009277016711390098488240128583616035637076601047101819429555961989467678374494482553797747268471040475346462080466842590694912933136770289891521047521620569660240580381501935112533824300355876402474964732639141992726042699227967823547816360093417216412199245863150302861829745557067498385054945885869269956909272107975093029553211653449872027559602364806654991198818347977535663698074265425278625518184175746728909777727938000816470600161452491921732172147723501414419735685481613611573525521334757418494684385233239073941433345477624168625189835694855620992192221842725502542568876717904946016534668049886272327917860857843838279679766814541009538837863609506800642251252051173929848960841284886269456042419652850222106611863067442786220391949450471237137869609563643719172874677646575739624138908658326459958133904780275900994657640789512694683983525957098258226205224894077267194782684826014769909026401363944374553050682034962524517493996514314298091906592509372216964615157098583874105978859597729754989301617539284681382686838689427741559918559252459539594310499725246808459872736446958486538367362226260991246080512438843904512441365497627807977156914359977001296160894416948685558484063534220722258284886481584560285060168427394522674676788952521385225499546667278239864565961163548862305774564980355936345681743241125150760694794510965960940252288797108931456691368672287489405601015033086179286809208747609178249385890097149096759852613655497818931297848216829989487226588048575640142704775551323796414515237462343645428584447952658678210511413547357395231134271661021359695362314429524849371871101457654035902799344037420073105785390621983874478084784896833214457138687519435064302184531910484810053706146806749192781911979399520614196634287544406437451237181921799983910159195618146751426912397489409071864942319615679452080951465502252316038819301420937621378559566389377870830390697920773467221825625996615014215030680384477345492026054146659252014974428507325186660021324340881907104863317346496514539057962685610055081066587969981635747363840525714591028970641401109712062804390397595156771577004203378699360072305587631763594218731251471205329281918261861258673215791984148488291644706095752706957220917567116722910981690915280173506712748583222871835209353965725121083579151369882091444210067510334671103141267111369908658516398315019701651511685171437657618351556508849099898599823873455283316355076479185358932261854896321329330898570642046752590709154814165498594616371802709819943099244889575712828905923233260972997120844335732654893823911932597463667305836041428138830320382490375898524374417029132765618093773444030707469211201913020330380197621101100449293215160842444859637669838952286847831235526582131449576857262433441893039686426243410773226978028073189154411010446823252716201052652272111660396665573092547110557853763466820653109896526918620564769312570586356620185581007293606598764861179104533488503461136576867532494416680396265797877185560845529654126654085306143444318586769751456614068007002378776591344017127494704205622305389945613140711270004078547332699390814546646458807972708266830634328587856983052358089330657574067954571637752542021149557615814002501262285941302164715509792592309907965473761255176567513575178296664547791745011299614890304639947132962107340437518957359614589019389713111790429782856475032031986915140287080859904801094121472213179476477726224142548545403321571853061422881375850430633217518297986622371721591607716692547487389866549494501146540628433663937900397692656721463853067360965712091807638327166416274888800786925602902284721040317211860820419000422966171196377921337575114959501566049631862947265473642523081770367515906735023507283540567040386743513622224771589150495309844489333096340878076932599397805419341447377441842631298608099888687413260472156951623965864573021631598193195167353812974167729478672422924654366800980676928238280689964004824354037014163149658979409243237896907069779422362508221688957383798623001593776471651228935786015881617557829735233446042815126272037343146531977774160319906655418763979293344195215413418994854447345673831624993419131814809277771038638773431772075456545322077709212019051660962804909263601975988281613323166636528619326686336062735676303544776280350450777235547105859548702790814356240145171806246436267945612753181340783303362542327839449753824372058353114771199260638133467768796959703098339130771098704085913374641442822772634659470474587847787201927715280731767907707157213444730605700733492436931138350493163128404251219256517980694113528013147013047816437885185290928545201165839341965621349143415956258658655705526904965209858033850722426482939728584783163057777560688876446248246857926039535277348030480290058760758251047470916439613626760449256274204208320856611906254543372131535958450687724602901618766795240616342522577195429162991930645537799140373404328752628889639958794757291746426357455254079091451357111369410911939325191076020825202618798531887705842972591677813149699009019211697173727847684726860849003377024242916513005005168323364350389517029893922334517220138128069650117844087451960121228599371623130171144484640903890644954440061986907548516026327505298349187407866808818338510228334508504860825039302133219715518430635455007668282949304137765527939751754613953984683393638304746119966538581538420568533862186725233402830871123282789212507712629463229563989898935821167456270102183564622013496715188190973038119800497340723961036854066431939509790190699639552453005450580685501956730229219139339185680344903982059551002263535361920419947455385938102343955449597783779023742161727111723643435439478221818528624085140066604433258885698670543154706965747458550332323342107301545940516553790686627333799585115625784322988273723198987571415957811196358330059408730681216028764962867446047746491599505497374256269010490377819868359381465741268049256487985561453723478673303904688383436346553794986419270563872931748723320837601123029911367938627089438799362016295154133714248928307220126901475466847653576164773794675200490757155527819653621323926406160136358155907422020203187277605277219005561484255518792530343513984425322341576233610642506390497500865627109535919465897514131034822769306247435363256916078154781811528436679570611086153315044521274739245449454236828860613408414863776700961207151249140430272538607648236341433462351897576645216413767969031495019108575984423919862916421939949072362346468441173940326591840443780513338945257423995082965912285085558215725031071257012668302402929525220118726767562204154205161841634847565169998116141010029960783869092916030288400269104140792886215078424516709087000699282120660418371806535567252532567532861291042487761825829765157959847035622262934860034158722980534989650226291748788202734209222245339856264766914905562842503912757710284027998066365825488926488025456610172967026640765590429099456815065265305371829412703369313785178609040708667114965583434347693385781711386455873678123014587687126603489139095620099393610310291616152881384379099042317473363948045759314931405297634757481193567091101377517210080315590248530906692037671922033229094334676851422144773793937517034436619910403375111735471918550464490263655128162288244625759163330391072253837421821408835086573917715096828874782656995995744906617583441375223970968340800535598491754173818839994469748676265516582765848358845314277568790029095170283529716344562129640435231176006651012412006597558512761785838292041974844236080071930457618932349229279650198751872127267507981255470958904556357921221033346697499235630254947802490114195212382815309114079073860251522742995818072471625916685451333123948049470791191532673430282441860414263639548000448002670496248201792896476697583183271314251702969234889627668440323260927524960357996469256504936818360900323809293459588970695365349406034021665443755890045632882250545255640564482465151875471196218443965825337543885690941130315095261793780029741207665147939425902989695946995565761218656196733786236256125216320862869222103274889218654364802296780705765615144632046927906821207388377814233562823608963208068222468012248261177185896381409183903673672220888321513755600372798394004152970028783076670944474560134556417254370906979396122571429894671543578468788614445812314593571984922528471605049221242470141214780573455105008019086996033027634787081081754501193071412233908663938339529425786905076431006383519834389341596131854347546495569781038293097164651438407007073604112373599843452251610507027056235266012764848308407611830130527932054274628654036036745328651057065874882256981579367897669742205750596834408697350201410206723585020072452256326513410559240190274216248439140359989535394590944070469120914093870012645600162374288021092764579310657922955249887275846101264836999892256959688159205600101655256375678566722796619885782794848855834397518744545512965634434803966420557982936804352202770984294232533022576341807039476994159791594530069752148293366555661567873640053666564165473217043903521329543529169414599041608753201868379370234888689479151071637852902345292440773659495630510074210871426134974595615138498713757047101787957310422969066670214498637464595280824369445789772330048764765241339075920434019634039114732023380715095222010682563427471646024335440051521266932493419673977041595683753555166730273900749729736354964533288869844061196496162773449518273695588220757355176651589855190986665393549481068873206859907540792342402300925900701731960362254756478940647548346647760411463233905651343306844953979070903023460461470961696886885014083470405460742958699138296682468185710318879065287036650832431974404771855678934823089431068287027228097362480939962706074726455399253994428081137369433887294063079261595995462624629707062594845569034711972996409089418059534393251236235508134949004364278527138315912568989295196427287573946914272534366941532361004537304881985517065941217352462589548730167600298865925786628561249665523533829428785425340483083307016537228563559152534784459818313411290019992059813522051173365856407826484942764411376393866924803118364453698589175442647399882284621844900877769776312795722672655562596282542765318300134070922334365779160128093179401718598599933849235495640057099558561134980252499066984233017350358044081168552653117099570899427328709258487894436460050410892266917835258707859512983441729535195378855345737426085902908176515578039059464087350612322611200937310804854852635722825768203416050484662775045003126200800799804925485346941469775164932709504934639382432227188515974054702148289711177792376122578873477188196825462981268685817050740272550263329044976277894423621674119186269439650671515779586756482399391760426017633870454990176143641204692182370764887834196896861181558158736062938603810171215855272668300823834046564758804051380801633638874216371406435495561868964112282140753302655100424104896783528588290243670904887118190909494533144218287661810310073547705498159680772009474696134360928614849417850171807793068108546900094458995279424398139213505586422196483491512639012803832001097738680662877923971801461343244572640097374257007359210031541508936793008169980536520276007277496745840028362405346037263416554259027601834840306811381855105979705664007509426087885735796037324514146786703688098806097164258497595138069309449401515422221943291302173912538355915031003330325111749156969174502714943315155885403922164097229101129035521815762823283182342548326111912800928252561902052630163911477247331485739107775874425387611746578671169414776421441111263583553871361011023267987756410246824032264834641766369806637857681349204530224081972785647198396308781543221166912246415911776732253264335686146186545222681268872684459684424161078540167681420808850280054143613146230821025941737562389942075713627516745731891894562835257044133543758575342698699472547031656613991999682628247270641336222178923903176085428943733935618891651250424404008952719837873864805847268954624388234375178852014395600571048119498842390606136957342315590796703461491434478863604103182350736502778590897578272731305048893989009923913503373250855982655867089242612429473670193907727130706869170926462548423240748550366080136046689511840093668609546325002145852930950000907151058236267293264537382104938724996699339424685516483261134146110680267446637334375340764294026682973865220935701626384648528514903629320199199688285171839536691345222444708045923966028171565515656661113598231122506289058549145097157553900243931535190902107119457300243880176615035270862602537881797519478061013715004489917210022201335013106016391541589578037117792775225978742891917915522417189585361680594741234193398420218745649256443462392531953135103311476394911995072858430658361935369329699289837914941939406085724863968836903265564364216644257607914710869984315733749648835292769328220762947282381537409961545598798259891093717126218283025848112389011968221429457667580718653806506487026133892822994972574530332838963818439447707794022843598834100358385423897354243956475556840952248445541392394100016207693636846776413017819659379971557468541946334893748439129742391433659360410035234377706588867781139498616478747140793263858738624732889645643598774667638479466504074111825658378878454858148962961273998413442726086061872455452360643153710112746809778704464094758280348769758948328241239292960582948619196670918958089833201210318430340128495116203534280144127617285830243559830032042024512072872535581195840149180969253395075778400067465526031446167050827682772223534191102634163157147406123850425845988419907611287258059113935689601431668283176323567325417073420817332230462987992804908514094790368878687894930546955703072619009502076433493359106024545086453628935456862958531315337183868265617862273637169757741830239860065914816164049449650117321313895747062088474802365371031150898427992754426853277974311395143574172219759799359685252285745263796289612691572357986620573408375766873884266405990993505000813375432454635967504844235284874701443545419576258473564216198134073468541117668831186544893776979566517279662326714810338643913751865946730024434500544995399742372328712494834706044063471606325830649829795510109541836235030309453097335834462839476304775645015008507578949548931393944899216125525597701436858943585877526379625597081677643800125436502371412783467926101995585224717220177723700417808419423948725406801556035998390548985723546745642390585850216719031395262944554391316631345308939062046784387785054239390524731362012947691874975191011472315289326772533918146607300089027768963114810902209724520759167297007850580717186381054967973100167870850694207092232908070383263453452038027860990556900134137182368370991949516489600755049341267876436746384902063964019766685592335654639138363185745698147196210841080961884605456039038455343729141446513474940784884423772175154334260306698831768331001133108690421939031080143784334151370924353013677631084913516156422698475074303297167469640666531527035325467112667522460551199581831963763707617991919203579582007595605302346267757943936307463056901080114942714100939136913810725813781357894005599500183542511841721360557275221035268037357265279224173736057511278872181908449006178013889710770822931002797665935838758909395688148560263224393726562472776037890814458837855019702843779362407825052704875816470324581290878395232453237896029841669225489649715606981192186584926770403956481278102179913217416305810554598801300484562997651121241536374515005635070127815926714241342103301566165356024733807843028655257222753049998837015348793008062601809623815161366903341111386538510919367393835229345888322550887064507539473952043968079067086806445096986548801682874343786126453815834280753061845485903798217994599681154419742536344399602902510015888272164745006820704193761584547123183460072629339550548239557137256840232268213012476794522644820910235647752723082081063518899152692889108455571126603965034397896278250016110153235160519655904211844949907789992007329476905868577878720982901352956613978884860509786085957017731298155314951681467176959760994210036183559138777817698458758104466283998806006162298486169353373865787735983361613384133853684211978938900185295691967804554482858483701170967212535338758621582310133103877668272115726949518179589754693992642197915523385766231676275475703546994148929041301863861194391962838870543677743224276809132365449485366768000001065262485473055861598999140170769838548318875014293890899506854530765116803337322265175662207526951791442252808165171667766727930354851542040238174608923283917032754257508676551178593950027933895920576682789677644531840404185540104351348389531201326378369283580827193783126549617459970567450718332065034556644034490453627560011250184335607361222765949278393706478426456763388188075656121689605041611390390639601620221536849410926053876887148379895599991120991646464411918568277004574243434021672276445589330127781586869525069499364610175685060167145354315814801054588605645501332037586454858403240298717093480910556211671546848477803944756979804263180991756422809873998766973237695737015808068229045992123661689025962730430679316531149401764737693873514093361833216142802149763399189835484875625298752423873077559555955465196394401821840998412489826236737714672260616336432964063357281070788758164043814850188411431885988276944901193212968271588841338694346828590066640806314077757725705630729400492940302420498416565479736705485580445865720227637840466823379852827105784319753541795011347273625774080213476826045022851579795797647467022840999561601569108903845824502679265942055503958792298185264800706837650418365620945554346135134152570065974881916341359556719649654032187271602648593049039787489589066127250794828276938953521753621850796297785146188432719223223810158744450528665238022532843891375273845892384422535472653098171578447834215822327020690287232330053862163479885094695472004795231120150432932266282727632177908840087861480221475376578105819702226309717495072127248479478169572961423658595782090830733233560348465318730293026659645013718375428897557971449924654038681799213893469244741985097334626793321072686870768062639919361965044099542167627840914669856925715074315740793805323925239477557441591845821562518192155233709607483329234921034514626437449805596103307994145347784574699992128599999399612281615219314888769388022281083001986016549416542616968586788372609587745676182507275992950893180521872924610867639958916145855058397274209809097817293239301067663868240401113040247007350857828724627134946368531815469690466968693925472519413992914652423857762550047485295476814795467007050347999588867695016124972282040303995463278830695976249361510102436555352230690612949388599015734661023712235478911292547696176005047974928060721268039226911027772261025441492215765045081206771735712027180242968106203776578837166909109418074487814049075517820385653909910477594141321543284406250301802757169650820964273484146957263978842560084531214065935809041271135920041975985136254796160632288736181367373244506079244117639975974619383584574915988097667447093006546342423460634237474666080431701260052055928493695941434081468529815053947178900451835755154125223590590687264878635752541911288877371766374860276606349603536794702692322971868327717393236192007774522126247518698334951510198642698878471719396649769070825217423365662725928440620430214113719922785269984698847702323823840055655517889087661360130477098438611687052310553149162517283732728676007248172987637569816335415074608838663640693470437206688651275688266149730788657015685016918647488541679154596507234287730699853713904300266530783987763850323818215535597323530686043010675760838908627049841888595138091030423595782495143988590113185835840667472370297149785084145853085781339156270760356390763947311455495832266945702494139831634332378975955680856836297253867913275055542524491943589128405045226953812179131914513500993846311774017971512283785460116035955402864405902496466930707769055481028850208085800878115773817191741776017330738554758006056014337743299012728677253043182519757916792969965041460706645712588834697979642931622965520168797300035646304579308840327480771811555330909887025505207680463034608658165394876951960044084820659673794731680864156456505300498816164905788311543454850526600698230931577765003780704661264706021457505793270962047825615247145918965223608396645624105195510522357239739512881816405978591427914816542632892004281609136937773722299983327082082969955737727375667615527113922588055201898876201141680054687365580633471603734291703907986396522961312801782679717289822936070288069087768660593252746378405397691848082041021944719713869256084162451123980620113184541244782050110798760717155683154078865439041210873032402010685341947230476666721749869868547076781205124736792479193150856444775379853799732234456122785843296846647513336573692387201464723679427870042503255589926884349592876124007558756946413705625140011797133166207153715436006876477318675587148783989081074295309410605969443158477539700943988394914432353668539209946879645066533985738887866147629443414010498889931600512076781035886116602029611936396821349607501116498327856353161451684576956871090029997698412632665023477167286573785790857466460772283415403114415294188047825438761770790430001566986776795760909966936075594965152736349811896413043311662774712338817406037317439705406703109676765748695358789670031925866259410510533584384656023391796749267844763708474978333655579007384191473198862713525954625181604342253729962863267496824058060296421146386436864224724887283434170441573482481833301640566959668866769563491416328426414974533349999480002669987588815935073578151958899005395120853510357261373640343675347141048360175464883004078464167452167371904831096767113443494819262681110739948250607394950735031690197318521195526356325843390998224986240670310768318446607291248747540316179699411397387765899868554170318847788675929026070043212666179192235209382278788809886335991160819235355570464634911320859189796132791319756490976000139962344455350143464268604644958624769094347048293294140411146540923988344435159133201077394411184074107684981066347241048239358274019449356651610884631256785297769734684303061462418035852933159734583038455410337010916767763742762102137013548544509263071901147318485749233181672072137279355679528443925481560913728128406333039373562420016045664557414588166052166608738748047243391212955877763906969037078828527753894052460758496231574369171131761347838827194168606625721036851321566478001476752310393578606896111259960281839309548709059073861351914591819510297327875571049729011487171897180046961697770017913919613791417162707018958469214343696762927459109940060084983568425201915593703701011049747339493877885989417433031785348707603221982970579751191440510994235883034546353492349826883624043327267415540301619505680654180939409982020609994140216890900708213307230896621197755306659188141191577836272927461561857103721724710095214236964830864102592887457999322374955191221951903424452307535133806856807354464995127203174487195403976107308060269906258076020292731455252078079914184290638844373499681458273372072663917670201183004648190002413083508846584152148991276106513741539435657211390328574918769094413702090517031487773461652879848235338297260136110984514841823808120540996125274580881099486972216128524897425555516076371675054896173016809613803811914361143992106380050832140987604599309324851025168294467260666138151745712559754953580239983146982203613380828499356705575524712902745397762140493182014658008021566536067765508783804304134310591804606800834591136640834887408005741272586704792258319127415739080914383138456424150940849133918096840251163991936853225557338966953749026620923261318855891580832455571948453875628786128859004106006073746501402627824027346962528217174941582331749239683530136178653673760642166778137739951006589528877427662636841830680190804609849809469763667335662282915132352788806157768278159588669180238940333076441912403412022316368577860357276941541778826435238131905028087018575047046312933353757285386605888904583111450773942935201994321971171642235005644042979892081594307167019857469273848653833436145794634175922573898588001698014757420542995801242958105456510831046297282937584161162532562516572498078492099897990620035936509934721582965174135798491047111660791587436986541222348341887722929446335178653856731962559852026072947674072616767145573649812105677716893484917660771705277187601199908144113058645577910525684304811440261938402322470939249802933550731845890355397133088446174107959162511714864874468611247605428673436709046678468670274091881014249711149657817724279347070216688295610877794405048437528443375108828264771978540006509704033021862556147332117771174413350281608840351781452541964320309576018694649088681545285621346988355444560249556668436602922195124830910605377201980218310103270417838665447181260397190688462370857518080035327047185659499476124248110999288679158969049563947624608424065930948621507690314987020673533848349550836366017848771060809804269247132410009464014373603265645184566792456669551001502298330798496079949882497061723674493612262229617908143114146609412341593593095854079139087208322733549572080757165171876599449856937956238755516175754380917805280294642004472153962807463602113294255916002570735628126387331060058910652457080244749375431841494014821199962764531068006631183823761639663180931444671298615527598201451410275600689297502463040173514891945763607893528555053173314164570504996443890936308438744847839616840518452732884032345202470568516465716477139323775517294795126132398229602394548579754586517458787713318138752959809412174227300352296508089177705068259248822322154938048371454781647213976820963320508305647920482085920475499857320388876391601995240918938945576768749730856955958010659526503036266159750662225084067428898265907510637563569968211510949669744580547288693631020367823250182323708459790111548472087618212477813266330412076216587312970811230758159821248639807212407868878114501655825136178903070860870198975889807456643955157415363193191981070575336633738038272152798849350397480015890519420879711308051233933221903466249917169150948541401871060354603794643379005890957721180804465743962806186717861017156740967662080295766577051291209907944304632892947306159510430902221439371849560634056189342513057268291465783293340524635028929175470872564842600349629611654138230077313327298305001602567240141851520418907011542885799208121984493156999059182011819733500126187728036812481995877070207532406361259313438595542547781961142935163561223496661522614735399674051584998603552953329245752388810136202347624669055816438967863097627365504724348643071218494373485300606387644566272186661701238127715621379746149861328744117714552444708997144522885662942440230184791205478498574521634696448973892062401943518310088283480249249085403077863875165911302873958787098100772718271874529013972836614842142871705531796543076504534324600536361472618180969976933486264077435199928686323835088756683595097265574815431940195576850437248001020413749831872259677387154958399718444907279141965845930083942637020875635398216962055324803212267498911402678528599673405242031091797899905718821949391320753431707980023736590985375520238911643467185582906853711897952626234492483392496342449714656846591248918556629589329909035239233333647435203707701010843880032907598342170185542283861617210417603011645918780539367447472059985023582891833692922337323999480437108419659473162654825748099482509991833006976569367159689364493348864744213500840700660883597235039532340179582557036016936990988671132109798897070517280755855191269930673099250704070245568507786790694766126298082251633136399521170984528092630375922426742575599892892783704744452189363203489415521044597261883800300677617931381399162058062701651024458869247649246891924612125310275731390840470007143561362316992371694848132554200914530410371354532966206392105479824392125172540132314902740585892063217589494345489068463993137570910346332714153162232805522972979538018801628590735729554162788676498274186164218789885741071649069191851162815285486794173638906653885764229158342500673612453849160674137340173572779956341043326883569507814931378007362354180070619180267328551191942676091221035987469241172837493126163395001239599240508454375698507957046222664619000103500490183034153545842833764378111988556318777792537201166718539541835984438305203762819440761594106820716970302285152250573126093046898423433152732131361216582808075212631547730604423774753505952287174402666389148817173086436111389069420279088143119448799417154042103412190847094080254023932942945493878640230512927119097513536000921971105412096683111516328705423028470073120658032626417116165957613272351566662536672718998534199895236884830999302757419916463841427077988708874229277053891227172486322028898425125287217826030500994510824783572905691988555467886079462805371227042466543192145281760741482403827835829719301017888345674167811398954750448339314689630763396657226727043393216745421824557062524797219978668542798977992339579057581890622525473582205236424850783407110144980478726691990186438822932305382318559732869780922253529591017341407334884761005564018242392192695062083183814546983923664613639891012102177095976704908305081854704194664371312299692358895384930136356576186106062228705599423371631021278457446463989738188566746260879482018647487672727222062676465338099801966883680994159075776852639865146253336312450536402610569605513183813174261184420189088853196356986962795036738424313011331753305329802016688817481342988681585577810343231753064784983210629718425184385534427620128234570716988530518326179641178579608888150329602290705614476220915094739035946646916235396809201394578175891088931992112260073928149169481615273842736264298098234063200244024495894456129167049508235812487391799648641133480324757775219708932772262349486015046652681439877051615317026696929704928316285504212898146706195331970269507214378230476875280287354126166391708245925170010714180854800636923259462019002278087409859771921805158532147392653251559035410209284665925299914353791825314545290598415817637058927906909896911164381187809435371521332261443625314490127454772695739393481546916311624928873574718824071503995009446731954316193855485207665738825139639163576723151005556037263394867208207808653734942440115799667507360711159351331959197120948964717553024531364770942094635696982226673775209945168450643623824211853534887989395673187806606107885440005508276570305587448541805778891719207881423351138662929667179643468760077047999537883387870348718021842437342112273940255717690819603092018240188427057046092622564178375265263358324240661253311529423457965569502506810018310900411245379015332966156970522379210325706937051090830789479999004999395322153622748476603613677697978567386584670936679588583788795625946464891376652199588286933801836011932368578558558195556042156250883650203322024513762158204618106705195330653060606501054887167245377942831338871631395596905832083416898476065607118347136218123246227258841990286142087284956879639325464285343075301105285713829643709990356948885285190402956047346131138263878897551788560424998748316382804046848618938189590542039889872650697620201995548412650005394428203930127481638158530396439925470201672759328574366661644110962566337305409219519675148328734808957477775278344221091073111351828046036347198185655572957144747682552857863349342858423118749440003229690697758315903858039353521358860079600342097547392296733310649395601812237812854584317605561733861126734780745850676063048229409653041118306671081893031108871728167519579675347188537229309616143204006381322465841111157758358581135018569047815368938137718472814751998350504781297718599084707621974605887423256995828892535041937958260616211842368768511418316068315867994601652057740529423053601780313357263267054790338401257305912339601880137825421927094767337191987287385248057421248921183470876629667207272325650565129333126059505777727542471241648312832982072361750574673870128209575544305968395555686861188397135522084452852640081252027665557677495969626612604565245684086139238265768583384698499778726706555191854468698469478495734622606294219624557085371272776523098955450193037732166649182578154677292005212667143463209637891852323215018976126034373684067194193037746880999296877582441047878123266253181845960453853543839114496775312864260925211537673258866722604042523491087026958099647595805794663973419064010036361904042033113579336542426303561457009011244800890020801478056603710154122328891465722393145076071670643556827437743965789067972687438473076346451677562103098604092717090951280863090297385044527182892749689212106670081648583395537735919136950153162018908887484210798706899114804669270650940762046502772528650728905328548561433160812693005693785417861096969202538865034577183176686885923681488475276498468821949739729707737187188400414323127636504814531122850990020742409255859252926103021067368154347015252348786351643976235860419194129697690405264832347009911154242601273438022089331096686367898694977994001260164227609260823493041180643829138347354679725399262338791582998486459271734059225620749105308531537182911681637219395188700957788181586850464507699343940987433514431626330317247747486897918209239480833143970840673084079589358108966564775859905563769525232653614424780230826811831037735887089240613031336477371011628214614661679404090518615260360092521947218890918107335871964142144478654899528582343947050079830388538860831035719306002771194558021911942899922722353458707566246926177663178855144350218287026685610665003531050216318206017609217984684936863161293727951873078972637353717150256378733579771808184878458866504335824377004147710414934927438457587107159731559439426412570270965125108115548247939403597681188117282472158250109496096625393395380922195591918188552678062149923172763163218339896938075616855911752998450132067129392404144593862398809381240452191484831646210147389182510109096773869066404158973610476436500068077105656718486281496371118832192445663945814491486165500495676982690308911185687986929470513524816091743243015383684707292898982846022237301452655679898627767968091469798378268764311598832109043715611299766521539635464420869197567370005738764978437686287681792497469438427465256316323005551304174227341646455127812784577772457520386543754282825671412885834544435132562054464241011037955464190581168623059644769587054072141985212106734332410756767575818456990693046047522770167005684543969234041711089888993416350585157887353430815520811772071880379104046983069578685473937656433631979786803671873079693924236321448450354776315670255390065423117920153464977929066241508328858395290542637687668968805033317227800185885069736232403894700471897619347344308437443759925034178807972235859134245813144049847701732361694719765715353197754997162785663119046912609182591249890367654176979903623755286526375733763526969344354400473067198868901968147428767790866979688522501636949856730217523132529265375896415171479559538784278499866456302878831962099830494519874396369070682762657485810439112232618794059941554063270131989895703761105323606298674803779153767511583043208498720920280929752649812569163425000522908872646925284666104665392171482080130502298052637836426959733707053922789153510568883938113249757071331029504430346715989448786847116438328050692507766274500122003526203709466023414648998390252588830148678162196775194583167718762757200505439794412459900771152051546199305098386982542846407255540927403132571632640792934183342147090412542533523248021932277075355546795871638358750181593387174236061551171013123525633485820365146141870049205704372018261733194715700867578539336078622739558185797587258744102542077105475361294047460100094095444959662881486915903899071865980563617137692227290764197755177720104276496949611056220592502420217704269622154958726453989227697660310524980855759471631075870133208861463266412591148633881220284440694169488261529577625325019870359870674380469821942056381255833436421949232275937221289056420943082352544084110864545369404969271494003319782861318186188811118408257865928757426384450059944229568586460481033015388911499486935436030221810943466764000022362550573631294626296096198760564259963946138692330837196265954739234624134597795748524647837980795693198650815977675350553918991151335252298736112779182748542008689539658359421963331502869561192012298889887006079992795411188269023078913107603617634779489432032102773359416908650071932804017163840644987871753756781185321328408216571107549528294974936214608215583205687232185574065161096274874375098092230211609982633033915469494644491004515280925089745074896760324090768983652940657920198315265410658136823791984090645712468948470209357761193139980246813405200394781949866202624008902150166163813538381515037735022966074627952910384068685569070157516624192987244482719429331004854824454580718897633003232525821581280327467962002814762431828622171054352898348208273451680186131719593324711074662228508710666117703465352839577625997744672185715816126411143271794347885990892808486694914139097716736900277758502686646540565950394867841110790116104008572744562938425494167594605487117235946429105850909950214958793112196135908315882620682332156153086833730838173279328196983875087083483880463884784418840031847126974543709373298362402875197920802321878744882872843727378017827008058782410749357514889978911739746129320351081432703251409030487462262942344327571260086642508333187688650756429271605525289544921537651751492196367181049435317858383453865255656640657251363575064353236508936790431702597878177190314867963840828810209461490079715137717099061954969640070867667102330048672631475510537231757114322317411411680622864206388906210192355223546711662137499693269321737043105987225039456574924616978260970253359475020913836673772894438696400028110344026084712899000746807764844088711341352503367877316797709372778682166117865344231732264637847697875144332095340001650692130546476890985050203015044880834261845208730530973189492916425322933612431514306578264070283898409841602950309241897120971601649265613413433422298827909921786042679812457285345801338260995877178113102167340256562744007296834066198480676615805021691833723680399027931606420436812079900316264449146190219458229690992122788553948783538305646864881655562294315673128274390826450611628942803501661336697824051770155219626522725455850738640585299830379180350432876703809252167907571204061237596327685674845079151147313440001832570344920909712435809447900462494313455028900680648704293534037436032625820535790118395649089354345101342969617545249573960621490288728932792520696535386396443225388327522499605986974759882329916263545973324445163755334377492928990581175786355555626937426910947117002165411718219750519831787137106051063795558588905568852887989084750915764639074693619881507814685262133252473837651192990156109189777922008705793396463827490680698769168197492365624226087154176100430608904377976678519661891404144925270480881971498801542057787006521594009289777601330756847966992955433656139847738060394368895887646054983871478968482805384701730871117761159663505039979343869339119789887109156541709133082607647406305711411098839388095481437828474528838368079418884342666222070438722887413947801017721392281911992365405516395893474263953824829609036900288359327745855060801317988407162446563997948275783650195514221551339281978226984278638391679715091262410548725700924070045488485692950448110738087996547481568913935380943474556972128919827177020766613602489581468119133614121258783895577357194986317210844398901423948496659251731388171602663261931065366535041473070804414939169363262373767777095850313255990095762731957308648042467701212327020533742667053142448208168130306397378736642483672539837487690980602182785786216512738563513290148903509883270617258932575363993979055729175160097615459044771692265806315111028038436017374742152476085152099016158582312571590733421736576267142390478279587281505095633092802668458937649649770232973641319060982740633531089792464242134583740901169391964250459128813403498810635400887596820054408364386516617880557608956896727531538081942077332597917278437625661184319891025007491829086475149794003160703845549465385946027452447466812314687943441610993338908992638411847425257044572517459325738989565185716575961481266020310797628254165590506042479114016957900338356574869252800743025623419498286467914476322774005529460903940177536335655471931000175430047504719144899841040015867946179241610016454716551337074073950260442769538553834397550548871099785205401175169747581344926079433689543783221172450687344231989878844128542064742809735625807066983106979935260693392135685881391214807354728463227784908087002467776303605551232386656295178853719673034634701222939581606792509153217489030840886516061119011498443412350124646928028805996134283511884715449771278473361766285062169778717743824362565711779450064477718370221999106695021656757644044997940765037999954845002710665987813603802314126836905783190460792765297277694043613023051787080546511542469395265127101052927070306673024447125973939950514628404767431363739978259184541176413327906460636584152927019030276017339474866960348694976541752429306040727005059039503148522921392575594845078867977925253931765156416197168443524369794447355964260633391055126826061595726217036698506473281266724521989060549880280782881429796336696744124805982192146339565745722102298677599746738126069367069134081559412016115960190237753525556300606247983261249881288192937343476862689219239777833910733106588256813777172328315329082525092733047850724977139448333892552081175608452966590553940965568541706001179857293813998258319293679100391844099286575605993598910002969864460974714718470101531283762631146774209145574041815908800064943237855839308530828305476076799524357391631221886057549673832243195650655460852881201902363644712703748634421727257879503428486312944916318475347531435041392096108796057730987201352484075057637199253650470908582513936863463863368042891767107602111159828875539940120076013947033661793715396306139863655492213741597905119083588290097656647300733879314678913181465109316761575821351424860442292445304113160652700974330088499034675405518640677342603583409608605533747362760935658853109760994238347382222087292464497684560579562516765574088410321731345627735856052358236389532038534024842273371639123973215995440828421666636023296545694703577184873442034227706653837387506169212768015766181095420097708363604361110592409117889540338021426523948929686439808926114635414571535194342850721353453018315875628275733898268898523557799295727645229391567477566676051087887648453493636068278050564622813598885879259940946446041705204470046315137975431737187756039815962647501410906658866162180038266989961965580587208639721176995219466789857011798332440601811575658074284182910615193917630059194314434605154047710570054339000182453117733718955857603607182860506356479979004139761808955363669603162193113250223851791672055180659263518036251214575926238369348222665895576994660491938112486609099798128571823494006615552196112207203092277646200999315244273589488710576623894693889446495093960330454340842102462401048723328750081749179875543879387381439894238011762700837196053094383940063756116458560943129517597713935396074322792489221267045808183313764165818269562105872892447740035947009268662659651422050630078592002488291860839743732353849083964326147000532423540647042089499210250404726781059083644007466380020870126664209457181702946752278540074508552377720890581683918446592829417018288233014971554235235911774818628592967605048203864343108779562892925405638946621948268711042828163893975711757786915430165058602965217459581988878680408110328432739867198621306205559855266036405046282152306154594474489908839081999738747452969810776201487134000122535522246695409315213115337915798026979555710508507473874750758068765376445782524432638046143042889235934852961058269382103498000405248407084403561167817170512813378805705643450616119330424440798260377951198548694559152051960093041271007277849301555038895360338261929343797081874320949914159593396368110627557295278004254863060054523839151068998913578820019411786535682149118528207852130125518518493711503422159542244511900207393539627400208110465530207932867254740543652717595893500716336076321614725815407642053020045340183572338292661915308354095120226329165054426123619197051613839357326693760156914429944943744856809775696303129588719161129294681884936338647392747601226964158848900965717086160598147204467428664208765334799858222090619802173211614230419477754990738738567941189824660913091691772274207233367635032678340586301930193242996397204445179288122854478211953530898910125342975524727635730226281382091807439748671453590778633530160821559911314144205091447293535022230817193663509346865858656314855575862447818620108711889760652969899269328178705576435143382060141077329261063431525337182243385263520217735440715281898137698755157574546939727150488469793619500477720970561793913828989845327426227288647108883270173723258818244658436249580592560338105215606206155713299156084892064340303395262263451454283678698288074251422567451806184149564686111635404971897682154227722479474033571527436819409892050113653400123846714296551867344153741615042563256713430247655125219218035780169240326699541746087592409207004669340396510178134857835694440760470232540755557764728450751826890418293966113310160131119077398632462778219023650660374041606724962490137433217246454097412995570529142438208076098364823465973886691349919784013108015581343979194852830436739012482082444814128095443773898320059864909159505322857914576884962578665885999179867520554558099004556461178755249370124553217170194282884617402736649978475508294228020232901221630102309772151569446427909802190826689868834263071609207914085197695235553488657743425277531197247430873043619511396119080030255878387644206085044730631299277888942729189727169890575925244679660189707482960949190648764693702750773866432391919042254290235318923377293166736086996228032557185308919284403805071030064776847863243191000223929785255372375566213644740096760539439838235764606992465260089090624105904215453927904411529580345334500256244101006359530039598864466169595626351878060688513723462707997327233134693971456285542615467650632465676620279245208581347717608521691340946520307673391841147504140168924121319826881568664561485380287539331160232292555618941042995335640095786495340935115266454024418775949316930560448686420862757201172319526405023099774567647838488973464317215980626787671838005247696884084989185086149003432403476742686245952395890358582135006450998178244636087317754378859677672919526111213859194725451400301180503437875277664402762618941017576872680428176623860680477885242887430259145247073950546525135339459598789619778911041890292943818567205070964606263541732944649576612651953495701860015412623962286413897796733329070567376962156498184506842263690367849555970026079867996261019039331263768556968767029295371162528005543100786408728939225714512481135778627664902425161990277471090335933309304948380597856628844787441469841499067123764789582263294904679812089984857163571087831191848630254501620929805829208334813638405421720056121989353669371336733392464416125223196943471206417375491216357008573694397305979709719726666642267431117762176403068681310351899112271339724036887000996862922546465006385288620393800504778276912835603372548255793912985251506829969107754257647488325341412132800626717094009098223529657957997803018282428490221470748111124018607613415150387569830918652780658896682362523937845272634530420418802508442363190383318384550522367992357752929106925043261446950109861088899914658551881873582528164302520939285258077969737620845637482114433988162710031703151334402309526351929588680690821355853680161000213740851154484912685841268695899174149133820578492800698255195740201818105641297250836070356851055331787840829000041552511865779453963317538532092149720526607831260281961164858098684587525129997404092797683176639914655386108937587952214971731728131517932904431121815871023518740757222100123768721944747209349312324107065080618562372526732540733324875754482967573450019321902199119960797989373383673242576103938985349278777473980508080015544764061053522202325409443567718794565430406735896491017610775948364540823486130254718476485189575836674399791508512858020607820554462991723202028222914886959399729974297471155371858924238493855858595407438104882624648788053304271463011941589896328792678327322456103852197011130466587100500083285177311776489735230926661234588873102883515626446023671996644554727608310118788389151149340939344750073025855814756190881398752357812331342279866503522725367171230756861045004548970360079569827626392344107146584895780241408158405229536937499710665594894459246286619963556350652623405339439142111271810691052290024657423604130093691889255865784668461215679554256605416005071276641766056874274200329577160643448606201239821698271723197826816628249938714995449137302051843669076723577400053932662622760323659751718925901801104290384274185507894887438832703063283279963007200698012244365116394086922220745320244624121155804354542064215121585056896157356414313068883443185280853975927734433655384188340303517822946253702015782157373265523185763554098954033236382319219892171177449469403678296185920803403867575834111518824177439145077366384071880489358256868542011645031357633355509440319236720348651010561049872726472131986543435450409131859513145181276437310438972507004981987052176272494065214619959232142314439776546708351714749367986186552791715824080651063799500184295938799158350171580759883784962257398512129810326379376218322456594236685376799113140108043139732335449090824910499143325843298821033984698141715756010829706583065211347076803680695322971990599904451209087275776225351040902392888779424630483280319132710495478599180196967835321464441189260631526618167443193550817081875477050802654025294109218264858213857526688155584113198560022135158887210365696087515063187533002942118682221893775546027227291290504292259787710667873840000616772154638441292371193521828499824350920891801685572798156421858191197490985730570332667646460728757430565372602768982373259745084479649545648030771598153955827779139373601717422996027353102768719449444917939785144631597314435351850491413941557329382048542123508173912549749819308714396615132942045919380106231421774199184060180347949887691051557905554806953878540066453375981862846419905220452803306263695626490910827627115903856995051246529996062855443838330327638599800792922846659503551211245284087516229060262011857775313747949362055496401073001348853150735487353905602908933526400713274732621960311773433943673385759124508149335736911664541281788171454023054750667136518258284898099512139193995633241336556777098003081910272040997148687418134667006094051021462690280449159646545330107754695413088714165312544813061192407821188690056027781824235022696189344352547633573536485619363254417756613981703930632872166905722259745209192917262199844409646158269456380239502837121686446561785235565164127712826918688615572716201474934052276946595712198314943381622114006936307430444173284786101777743837977037231795255434107223445512555589998646183876764903972461167959018100035098928641204195163551108763204267612979826529425882951141275841262732790798807559751851576841264742209479721843309352972665210015662514552994745127631550917636730259462132930190402837954246323258550301096706922720227074863419005438302650681214142135057154175057508639907673946335146209082888934938376439399256900604067311422093312195936202982972351163259386772241477911629572780752395056251581603133359382311500518626890530658368129988108663263271980611271548858798093487912913707498230575929091862939195014721197586067270092547718025750337730799397134539532646195269996596385654917590458333585799102012713204583903200853878881633637685182083727885131175227769609787962142372162545214591281831798216044111311671406914827170981015457781939202311563871950805024679725792497605772625913328559726371211201905720771409148645074094926718035815157571514050397610963846755569298970383547314100223802583468767350129775413279532060971154506484212185936490997917766874774481882870632315515865032898164228288232746866106592732197907162384642153489852476216789050260998045266483929542357287343977680495774091449538391575565485459058976495198513801007958010783759945775299196700547602252552034453988712538780171960718164078124847847257912407824544361682345239570689514272269750431873633263011103053423335821609333191218806608268341428910415173247216053355849993224548730778822905252324234861531520976938461042582849714963475341837562003014915703279685301868631572488401526639835689563634657435321783493199825542117308467745297085839507616458229630324424328237737450517028560698067889521768198156710781633405266759539424926280756968326107495323390536223090807081455919837355377748742029039018142937311529334644468151212945097596534306284215319445727118614900017650558177095302468875263250119705209476159416768727784472000192789137251841622857783792284439084301181121496366424659033634194540657183544771912446621259392656620306888520055599121235363718226922531781458792593750441448933981608657900876165024635197045828895481793756681046474614105142498870252139936870509372305447734112641354892806841059107716677821238332810262185587751312721179344448201440425745083063944738363793906283008973306241380614589414227694747931665717623182472168350678076487573420491557628217583972975134478990696589532548940335615613167403276472469212505759116251529654568544633498114317670257295661844775487469378464233737238981920662048511894378868224807279352022501796545343757274163910791972952950812942922205347717304184477915673991738418311710362524395716152714669005814700002633010452643547865903290733205468338872078735444762647925297690170912007874183736735087713376977683496344252419949951388315074877537433849458259765560996555954318040920178497184685497370696212088524377013853757681416632722412634423982152941645378000492507262765150789085071265997036708726692764308377229685985169122305037462744310852934305273078865283977335246017463527703205938179125396915621063637625882937571373840754406468964783100704580613446731271591194608435935825987782835266531151065041623295329047772174083559349723758552138048305090009646676088301540612824308740645594431853413755220166305812111033453120745086824339432159043594430312431227471385842030390106070940315235556172767994160020393975099897629335325855575624808996691829864222677502360193257974726742578211119734709402357457222271212526852384295874273501563660093188045493338989741571490544182559738080871565281430102670460284316819230392535297795765862414392701549740879273131051636119137577008929564823323648298263024607975875767745377160102490804624301856524161756655600160859121534556267602192689982855377872583145144082654583484409478463178777374794653580169960779405568701192328608041130904629350871827125934668712766694873899824598527786499569165464029458935064964335809824765965165142090986755203808309203230487342703468288751604071546653834619611223013759451579252696743642531927390036038608236450762698827497618723575476762889950752114804852527950845033958570838130476937881321123674281319487950228066320170022460331989671970649163741175854851878484012054844672588851401562725019821719066960812627785485964818369621410721714214986361918774754509650308957099470934337856981674465828267911940611956037845397855839240761276344105766751024307559814552786167815949657062559755074306521085301597908073343736079432866757890533483669555486803913433720156498834220893399971641479746938696905480089193067138057171505857307148815649920714086758259602876056459782423770242469805328056632787041926768467116266879463486950464507420219373945259262668613552940624781361206202636498199999498405143868285258956342264328707663299304891723400725471764188685351372332667877921738347541480022803392997357936152412755829569276837231234798989446274330454566790062032420516396282588443085438307201495672106460533238537203143242112607424485845094580494081820927639140008540422023556260218564348994145439950410980591817948882628052066441086319001688568155169229486203010738897181007709290590480749092427141018933542818429995988169660993836961644381528877214085268088757488293258735809905670755817017949161906114001908553744882726200936685604475596557476485674008177381703307380305476973609786543859382187220583902344443508867499866506040645874346005331827436296177862518081893144363251205107094690813586440519229512932450078833398788429339342435126343365204385812912834345297308652909783300671261798130316794385535726296998740359570458452230856390098913179475948752126397078375944861139451960286751210561638976008880092746115860800207803341591451797073036835196977766076373785333012024120112046988609209339085365773222392412449051532780950955866459477634482269986074813297302630975028812103517723124465095349653693090018637764094094349837313251321862080214809922685502948454661814715557444709669530177690434272031892770604717784527939160472281534379803539679861424370956683221491465438014593829277393396032754048009552231816667380357183932757077142046723838624617803976292377131209580789363841447929802588065522129262093623930637313496640186619510811583471173312025805866727639992763579078063818813069156366274125431259589936119647626101405563503399523140323113819656236327198961837254845333702062563464223952766943568376761368711962921818754576081617053031590728828700712313666308722754918661395773730546065997437810987649802414011242142773668082751390959313404155826266789510846776118665957660165998178089414985754976284387856100263796543178313634025135814161151902096499133548733131115022700681930135929595971640197196053625033558479980963488718039111612813595968565478868325856437896173159762002419621552896297904819822199462269487137462444729093456470028537694958859591606789282491054412515996300781368367490209374915732896270028656829344431342347351239298259166739503425995868970697267332582735903121288746660451461487850346142827765991608090398652575717263081833494441820193533385071292345774375579344062178711330063106003324053991693682603746176638565758877580201229366353270267100681261825172914608202541892885935244491070138206211553827793565296914576502048643282865557934707209634807372692141186895467322767751335690190153723669036865389161291688887876407525493494249733427181178892759931596719354758988097924525262363659036320070854440784544797348291802082044926670634420437555325050527522833778887040804033531923407685630109347772125639088640413101073817853338316038135280828119040832564401842053746792992622037698718018061122624490909242641985820861751177113789051609140381575003366424156095216328197122335023167422600567941281406217219641842705784328959802882335059828208196666249035857789940333152274817776952843681630088531769694783690580671064828083598046698841098135158654906933319522394363287923990534810987830274500172065433699066117784554364687723631844464768069142828004551074686645392805399409108754939166095731619715033166968309929466349142798780842257220697148875580637480308862995118473187124777291910070227588893486939456289515802965372150409603107761289831263589964893410247036036645058687287589051406841238124247386385427908282733827973326885504935874303160274749063129572349742611221517417153133618622410913869500688835898962349276317316478340077460886655598733382113829928776911495492184192087771606068472874673681886167507221017261103830671787856694812948785048943063086169948798703160515884108282351274153538513365895332948629494495061868514779105804696039069372662670386512905201137810858616188886947957607413585534585151768051973334433495230120395770739623771316030242887200537320998253008977618973129817881944671731160647231476248457551928732782825127182446807824215216469567819294098238926284943760248852279003620219386696482215628093605373178040863727268426696421929946819214908701707533361094791381804063287387593848269535583077395761447997270003472880182785281389503217986345216111066608839314053226944905455527867894417579202440021450780192099804461382547805858048442416404775031536054906591430078158372430123137511562284015838644270890718284816757527123846782459534334449622010096071051370608461801187543120725491334994247617115633321408934609156561550600317384218701570226103101916603887064661438897736318780940711527528174689576401581047016965247557740891644568677717158500583269943401677202156767724068128366565264122982439465133197359199709403275938502669557470231813203243716420586141033606524536939160050644953060161267822648942437397166717661231048975031885732165554988342121802846912529086101485527815277625623750456375769497734336846015607727035509629049392487088406281067943622418704747008368842671022558302403599841645951122485272633632645114017395248086194635840783753556885622317115520947223065437092606797351000565549381224575483728545711797393615756167641692895805257297522338558611388322171107362265816218842443178857488798109026653793426664216990914056536432249301334867988154886628665052346997235574738424830590423677143278792316422403877764330192600192284778313837632536121025336935812624086866699738275977365682227907215832478888642369346396164363308730139814211430306008730666164803678984091335926293402304324974926887831643602681011309570716141912830686577323532639653677390317661361315965553584999398600565155921936759977717933019744688148371103206503693192894521402650915465184309936553493337183425298433679915939417466223900389527673813330617747629574943868716978453767219493506590875711917720875477107189937960894774512654757501871194870738736785890200617373321075693302216320628432065671192096950585761173961632326217708945426214609858410237813215817727602222738133495410481003073275107799948991977963883530734443457532975914263768405442264784216063122769646967156473999043715903323906560726644116438605404838847161912109008701019130726071044114143241976796828547885524779476481802959736049439700479596040292746299203572099761950140348315380947714601056333446998820822120587281510729182971211917876424880354672316916541852256729234429187128163232596965413548589577133208339911288775917226115273379010341362085614577992398778325083550730199818459025958355989260553299673770491722454935329683300002230181517226575787524058832249085821280089747909326100762578770428656006996176212176845478996440705066241710213327486796237430229155358200780141165348065647488230615003392068983794766255036549822805329662862117930628430170492402301985719978948836897183043805182174419147660429752437251683435411217038631379411422095295885798060152938752753799030938871683572095760715221900279379292786303637268765822681241993384808166021603722154710143007377537792699069587121289288019052031601285861825494413353820784883465311632650407642428390870121015194231961652268422003711230464300673442064747718021353070124098860353399152667923871101706221865883573781210935179775604425634694999787251125440854522274810914874307259869602040275941178942581281882159952359658979181144077653354321757595255536158128001163846720319346507296807990793963714961774312119402021297573125165253768017359101557338153772001952444543620071848475663415407442328621060997613243487548847434539665981338717466093020535070271952983943271425371155766600025784423031073429551533945060486222764966687624079324353192992639253731076892135352572321080889819339168668278948281170472624501948409700975760920983724090074717973340788141825195842598096241747610138252643955135259311885045636264188300338539652435997416931322894719878308427600401368074703904097238473945834896186539790594118599310356168436869219485382055780395773881360679549900085123259442529724486666766834641402189915944565309423440650667851948417766779470472041958822043295380326310537494883122180391279678446100139726753892195119117836587662528083690053249004597410947068772912328214304635337283519953648274325833119144459017809607782883583730111857543659958982724531925310588115026307542571493943024453931870179923608166611305426253995833897942971602070338767815033010280120095997252222280801423571094760351925544434929986767817891045559063015953809761875920358937341978962358931125983902598310267193304189215109689156225069659119828323455503059081730735195503721665870288053992138576037035377105178021280129566841984140362872725623214428754302210909472721073474134975514190737043318276626177275996888826027225247133683353452816692779591328861381766349857728936900965749562287103024362590772412219094300871755692625758065709912016659622436080242870024547362036394841255954881727272473653467783647201918303998717627037515724649922289467932322693619177641614618795613956699567783068290316589699430767333508234990790624100202506134057344300695745474682175690441651540636584680463692621274211075399042188716127617787014258864825775223889184599523376292377915585744549477361295525952226578636462118377598473700347971408206994145580719080213590732269233100831759510659019121294795408603640757358750205890208704579670007055262505811420663907459215273309406823649441590891009220296680523325266198911311842016291631076894084723564366808182168657219688268358402785500782804043453710183651096951782335743030504852653738073531074185917705610397395062640355442275156101107261779370634723804990666922161971194259120445084641746383589938239946517395509000859479990136026674261494290066467115067175422177038774507673563742154782905911012619157555870238957001405117822646989944917908301795475876760168094100135837613578591356924455647764464178667115391951357696104864922490083446715486383054477914330097680486878348184672733758436892724310447406807685278625585165092088263813233623148733336714764520450876627614950389949504809560460989604329123358348859990294526400284994280878624039811814884767301216754161106629995553668193123287425702063738352020086863691311733469731741219153633246745325630871347302792174956227014687325867891734558379964351358800959350877556356248810493852999007675135513527792412429277488565888566513247302514710210575352516511814850902750476845518252096331899068527614435138213662152368890578786699432288816028377482035506016029894009119713850179871683633744139275973644017007014763706655703504338121113576415018451821413619823495159601064752712575935185304332875537783057509567425442684712219618709178560783936144511383335649103256405733898667178123972237519316430617013859539474367843392670986712452211189690840236327411496601243483098929941738030588417166613073040067588380432111555379440605497721705942821514886165672771240903387727745629097110134885184374118695655449745736845218066982911045058004299887953899027804383596282409421860556287788428802127553884803728640019441614257499904272009595204654170598104989967504511936471172772220436102614079750809686975176600237187748348016120310234680567112644766123747627852190241202569943534716226660893675219833111813511146503854895025120655772636145473604426859498074396932331297127377157347099713952291182653485155587137336629120242714302503763269501350911612952993785864681307226486008270881333538193703682598867893321238327053297625857382790097826460545598555131836688844628265133798491667839409761353766251798258249663458771950124384040359140849209733754642474488176184070023569580177410177696925077814893386672557898564589851056891960924398841569280696983352240225634570497312245269354193837004843183357196516626721575524193401933099018319309196582920969656247667683659647019595754739345514337413708761517323677204227385674279170698204549953095918872434939524094441678998846319845504852393662972079777452814399418256789457795712552426826089940863317371538896262889629402112108884427376568624527612130371017300785135715404533041507959447776143597437803742436646973247138410492124314138903579092416036406314038149831481905251720937103964026808994832572297954564042701757722904173234796073618787889913318305843069394825961318713816423467218730845133877219086975104942843769325024981656673816260615941768252509993741672883951744066932549653403101452225316189009235376486378482881344209870048096227171226407489571939002918573307460104360729190945767994614929290427981687729426487729952858434647775386906950148984133924540394144680263625402118614317031251117577642829914644533408920976961699098372652361768745605894704968170136974909523072082682887890730190018253425805343421705928713931737993142410852647390948284596418093614138475831136130576108462366837237695913492615824516221552134879244145041756848064120636520170386330129532777699023118648020067556905682295016354931992305914246396217025329747573114094220180199368035026495636955866425906762685687372110339156793839895765565193177883000241613539562437777840801748819373095020699900890899328088397430367736595524891300156633294077907139615464534088791510300651321934486673248275907946807879819425019582622320395131252014109960531260696555404248670549986786923021746989009547850725672978794769888831093487464426400718183160331655511534276155622405474473378049246214952133258527698847336269182649174338987824789278468918828054669982303689939783413747587025805716349413568433929396068192061773331791738208562436433635359863494496890781064019674074436583667071586924521182997893804077137501290858646578905771426833582768978554717687184427726120509266486102051535642840632368481807287940717127966820060727559555904040233178749447346454760628189541512139162918444297651066947969354016866010055196077687335396511614930937570968554559381513789569039251014953265628147011998326992200066392875374713135236421589265126204072887716578358405219646054105435443642166562244565042999010256586927279142752931172082793937751326106052881235373451068372939893580871243869385934389175713376300720319760816604464683937725806909237297523486702916910426369262090199605204121024077648190316014085863558427609537086558164273995349346546314504040199528537252004957805254656251154109252437991326262713609099402902262062836752132305065183934057450112099341464918433323646569371725914489324159006242020612885732926133596808726500045628284557574596592120530341310111827501306961509835515632004310784601906565493806542525229161991819959602752327702249855738824899882707465936355768582560518068964285376850772012220347920993936179268206590142165615925306737944568949070853263568196831861772268249911472615732035807646298116244013316737892788689229032593349861797021994981925739617673075834417098559222170171825712777534491508205278430904619460835217402005838672849709411023266953921445461066215006410674740207009189911951376466904481267253691537162290791385403937560077835153374167747942100384002308951850994548779039346122220865060160500351776264831611153325587705073541279249909859373473787081194253055121436979749914951860535920403830235716352727630874693219622190064260886183676103346002255477477813641012691906569686495012688376296907233961276287223041141813610060264044030035996988919945827397624114613744804059697062576764723766065541618574690527229238228275186799156983390747671146103022776606020061246876477728819096791613354019881402757992174167678799231603963569492851513633647219540611171767387372555728522940054361785176502307544693869307873499110352182532929726044553210797887711449898870911511237250604238753734841257086064069052058452122754533848008205302450456517669518576913200042816758054924811780519832646032445792829730129105318385636821206215531288668564956512613892261367064093953334570526986959692350353094224543865278677673027540402702246384483553239914751363441044050092330361271496081355490531539021002299595756583705381261965683144286057956696622154721695620870013727768536960840704833325132793112232507148630206951245395003735723346807094656483089209801534878705633491092366057554050864111521441481434630437273271045027768661953107858323334857840297160925215326092558932655600672124359464255065996771770388445396181632879614460817789272171836908880126778207430106422524634807454300476492885553409062185153654355474125476152769772667769772777058315801412185688011705028365275543214803488004442979998062157904564161957212784508928489806426497427090579129069217807298769477975112447305991406050629946894280931034216416629935614828130998870745292716048433630818404126469637925843094185442216359084576146078558562473814931427078266215185541603870206876980461747400808324343665382354555109449498431093494759944672673665352517662706772194183191977196378015702169933675083760057163454643671776723387588643405644871566964321041282595645349841388412890420682047007615596916843038999348366793542549210328113363184722592305554383058206941675629992013373175489122037230349072681068534454035993561823576312837767640631013125335212141994611869350833176587852047112364331226765129964171325217513553261867681942338790365468908001827135283584888444111761234101179918709236507184857856221021104009776994453121795022479578069506532965940383987369907240797679040826794007618729547835963492793904576973661643405359792219285870574957481696694062334272619733518136626063735982575552496509807260123668283605928341855848026958413772558970883789942910549800331113884603401939166122186696058491571485733568286149500019097591125218800396419762163559375743718011480559442298730418196808085647265713547612831629200449880315402105530597076666362749328308916880932359290081787411985738317192616728834918402429721290434965526942726402559641463525914348400675867690350382320572934132981593533044446496829441367323442158380761694831219333119819061096142952201536170298575105594326461468505452684975764807808009221335811378197749271768545075538328768874474591593731162470601091244609829424841287520224462594477638749491997840446829257360968534549843266536862844489365704111817793806441616531223600214918768769467398407517176307516849856359201486892943105940202457969622924566644881967576294349535326382171613395757790766370764569570259738800438415805894336137106551859987600754924187211714889295221737721146081154344982665479872580056674724051122007383459271575727715218589946948117940644466399432370044291140747218180224825837736017346685300744985564715420036123593397312914458591522887408719508708632218837288262822884631843717261903305777147651564143822306791847386039147683108141358275755853643597721650028277803713422869688787349795096031108899196143386664068450697420787700280509367203387232629637856038653216432348815557557018469089074647879122436375556668678067610544955017260791142930831285761254481944449473244819093795369008206384631678225064809531810406570254327604385703505922818919878065865412184299217273720955103242251079718077833042609086794273428955735559252723805511440438001239041687716445180226491681641927401106451622431101700056691121733189423400547959684669804298017362570406733282129962153684881404102194463424646220745575643960452985313071409084608499653767803793201899140865814662175319337665970114330608625009829566917638846056762972931464911493704624469351984039534449135141193667933301936617663652555149174982307987072280860859626112660504289296966535652516688885572112276802772743708917389639772257564890533401038855931125679991516589025016486961427207005916056166159702451989051832969278935550303934681219761582183980483960562523091462638447386296039848924386187298507775928792722068554807210497817653286210187476766897248841139560349480376727036316921007350834073865261684507482496448597428134936480372426116704266870831925040997615319076855770327421785010006441984124207396400139603601583810565928413684574119102736420274163723488214524101347716529603128408658419787951116511529827814620379139855006399960326591248525308493690313130100799977191362230866011099929142871249388541612038020411340188887219693477904497527454288072803509305828754420755134816660927879353566521255620139988249628478726214432362853676502591450468377635282587652139156480972141929675549384375582600253168536356731379262475878049445944183429172756988376226261846365452743497662411138451305481449836311789784489732076719508784158618879692955819733250699951402601511675529750575437810242238957925786562128432731202200716730574069286869363930186765958251326499145950260917069347519408975357464016830811798846452473618956056479426358070562563281189269663026479535951097127659136233180866921535788607812759910537171402204506186075374866306350591483916467656723205714516886170790984695932236724946737583099607042589220481550799132752088583781117685214269334786921895240622657921043620348852926267984013953216458791151579050460579710838983371864038024417511347226472547010794793996953554669619726763255229914654933499663234185951450360980344092212206712567698723427940708857070474293173329188523896721971353924492426178641188637790962814486917869468177591717150669111480020759432012061969637795103227089029566085562225452602610460736131368869009281721068198618553780982018471154163630326265699283424155023600978046417108525537612728905335045506135684143775854429677977014660294387687225115363801191758154028120818255606485410787933598921064427244898618961629413418001295130683638609294100083136673372153008352696235737175330738653338204842190308186449184093723944033405244909554558016406460761581010301767488475017661908692946098769201691202181688291040870709560951470416921147027413390052253340834812870353031023919699978597413908593605433599697075604460134242453682496098772581311024732798562072126572499003468293886872304895562253204463602639854225258416464324271611419817802482595563544907219226583863662663750835944314877635156145710745528016159677048442714194435183275698407552677926411261765250615965235457187956673170913319358761628255920783080185206890151504713340386100310055914817852110384754542933389188444120517943969970194112695119526564919594189975418393234647424290702718875223534393673633663200307232747037407123982562024662651974090199762452056198557625760008708173083288344381831070054514493545885422678578551915372292379555494333410174420169600090696415612732297770221217951868376359082255128816470021992348864043959153018464004714321186360622527011541122283802778538911098490201342741014121559769965438877197485376431158229838533123071751132961904559007938064276695819014842627991221792947987348901868471676503827328552059082984529806259250352128451925927986593506132961946796252373972565584157853744567558998032405492186962888490332560851455344391660226257775512916200772796852629387937530454181080729285891989715381797343496187232927614747850192611450413274873242970583408471112333746274617274626582415324271059322506255302314738759251724787322881491455915605036334575424233779160374952502493022351481961381162563911415610326844958072508273431765944054098269765269344579863479709743124498271933113863873159636361218623497261409556079920628316999420072054811525353393946076850019909886553861433495781650089961649079678142901148387645682174914075623767618453775144031475411206760160726460556859257799322070337333398916369504346690694828436629980037414527627716547623825546170883189810868806847853705536480469350958818025360529740793538676511195079373282083146268960071075175520614433784114549950136432446328193346389050936545714506900864483440180428363390513578157273973334537284263372174065775771079830517555721036795976901889958494130195999573017901240193908681356585539661941371794487632079868800371607303220547423572266896801882123424391885984168972277652194032493227314793669234004848976059037958094696041754279613782553781223947646147832926976545162290281701100437846038756544151739433960048915318817576650500951697402415644771293656614253949368884230517400129920556854289853897942669956777027089146513736892206104415481662156804219838476730871787590279209175900695273456682026513373111518000181434120962601658629821076663523361774007837783423709152644063054071807843358061072961105550020415131696373046849213356837265400307509829089364612047891114753037049893952833457824082817386441322710002968311940203323456420826473276233830294639378998375836554559919340866235090967961134004867027123176526663710778725111860354037554487418693519733656621772359229396776463251562023487570113795712096237723431370212031004965152111976013176419408203437348512852602913334915125083119802850177855710725373149139215709105130965059885999931560863655477403551898166733535880048214665099741433761182777723351910741217572841592580872591315074606025634903777263373914461377038021318347447301113032670296917335047701632106616227830027269283365584011791419447808748253360714403296252285775009808599609040936312635621328162071453406104224112083010008587264252112262480142647519426184325853386753874054743491072710049754281159466017136122590440158991600229827801796035194080046513534752698777609527839984368086908989197839693532179980139135442552717910225397010810632143048511378291498511381969143043497500189980681644412123273328307192824362406733196554692677851193152775113446468905504248113361434984604849051258345683266441528489713972376040328212660253516693914082049947320486021627759791771234751097502403078935759937715095021751693555827072533911892334070223832077585802137174778378778391015234132098489423459613692340497998279304144463162707214796117456975719681239291913740982925805561955207434243295982898980529233366415419256367380689494201471241340525072204061794355252555225008748790086568314542835167750542294803274783044056438581591952666758282929705226127628711040134801787224801789684052407924360582742467443076721645270313451354167649668901274786801010295133862698649748212118629040337691568576240699296372493097201628707200189835423690364149270236961938547372480329855045112089192879829874467864129159417531675602533435310626745254507114181483239880607297140234725520713490798398982355268723950909365667878992383712578976248755990443228895388377317348941122757071410959790047919301046740750411435381782464630795989555638991884773781341347070246747362112048986226991888517456251732519341352038115863350123913054441910073628447567514161050410973505852762044489190978901984315485280533985777844313933883994310444465669244550885946314081751220331390681596592510546858013133838152176418210433429788826119630443111388796258746090226130900849975430395771243230616906262919403921439740270894777663702488155499322458825979020631257436910946393252806241642476868495455324938017639371615636847859823715902385421265840615367228607131702674740131145261063765383390315921943469817605358380310612887852051546933639241088467632009567089718367490578163085158138161966882222047570437590614338040725853862083565176998426774523195824182683698270160237414938363496629351576854061397342746470899685618170160551104880971554859118617189668025973541705423985135560018720335079060946421271143993196046527424050882225359773481519135438571253258540493946010865793798058620143366078825219717809025817370870916460452727977153509910340736425020386386718220522879694458387652947951048660717390229327455426785669776865939923416834122274663015062155320502655341460995249356050854921756549134830958906536175693817637473644183378974229700703545206663170929607591989627732423090252397443861014263098687733913882518684316501027964911497737582888913450341148865948670215492101084328080783428089417298008983297536940644969903125399863919581601468995220880662285408414864274786281975546629278814621607171381880180840572084715868906836919393381864278454537956719272397972364651667592011057995663962598535512763558768140213409829016296873429850792471846056874828331381259161962476156902875901072733103299140623864608333378638257926302391590003557609032477281338887339178096966601469615031754226751125993315529674213336300222964906480934582008181061802100227664580400278213336758573019011371754672763059044353131319036092489097246427928455549913490005180295707082919052556781889913899625138662319380053611346224294610248954072404857123256628888931722116432947816190554868054943441034090680716088028227959686950133643814268252170472870863010137301155236861416908375675747637239763185757038109443390564564468524183028148107998376918512127201935044041804604721626939445788377090105974693219720558114078775989772072009689382249303236830515862657281114637996983137517937623215111252349734305240622105244234353732905655163406669506165892878218707756794176080712973781335187117931650033155523822487730653444179453415395202424449703410120874072188109388268167512042299404948179449472732894770111574139441228455521828424922240658752689172272780607116754046973008037039618787796694882555614674384392570115829546661358678671897661297311267200072971553613027503556167817765442287442114729881614802705243806817653573275578602505847084013208837932816008769081300492491473682517035382219619039014999523495387105997351143478292339499187936608692301375596368532373806703591144243268561512109404259582639301678017128669239283231057658851714020211196957064799814031505633045141564414623163763809904402816256917576489142569714163598439317433270237812336938043012892626375382667795034169334323607500248175741808750388475094939454896209740485442635637164995949920980884294790363666297526003243856352945844728944547166209297495496616877414120882130477022816116456044007236351581149729739218966737382647204722642221242016560150284971306332795814302516013694825567014780935790889657134926158161346901806965089556310121218491805847922720691871696316330044858020102860657858591269974637661741463934159569539554203314628026518951167938074573315759846086173702687867602943677780500244673391332431669880354073232388281847501051641331189537036488422690270478052742490603492082954755054003457160184072574536938145531175354210726557835615499874447480427323457880061873149341566046352979779455075359304795687209316724536547208381685855606043801977030764246083489876101345709394877002946175792061952549255757109038525171488525265671045349813419803390641529876343695420256080277614421914318921393908834543131769685101840103844472348948869520981943531906506555354617335814045544837884752526253949665869992058417652780125341033896469818642430034146791380619028059607854888010789705516946215228773090104467462497979992627120951684779568482583341402266477210843362437593741610536734041954738964197895425335036301861400951534766961476255651873823292468547356935802896011536791787303553159378363082248615177770541577576561759358512016692943111138863582159667618830326104164651714846979385422621687161400122378213779774131268977266712992025922017408770076956283473932201088159356286281928563571893384958850603853158179760679479840878360975960149733420572704603521790605647603285569276273495182203236144112584182426247712012035776388895974318232827871314608053533574494297621796789034568169889553518504478325616380709476951699086247100019748809205009521943632378719764870339223811540363475488626845956159755193765410115014067001226927474393888589943859730245414801061235908036274585288493563251585384383242493252666087588908318700709100237377106576985056433928854337658342596750653715005333514489908293887737352051459333049626531415141386124437935885070944688045486975358170212908490787347806814366323322819415827345671356443171537967818058195852464840084032909981943781718177302317003989733050495387356116261023999433259780126893432605584710278764901070923443884634011735556865903585244919370181041626208504299258697435817098133894045934471937493877624232409852832762266604942385129709453245586252103600829286649724174919141988966129558076770979594795306013119159011773943104209049079424448868513086844493705909026006120649425744710353547657859242708130410618546219881830090634588187038755856274911587375421064667951346487586771543838018521348281915812462599335160198935595167968932852205824799421034512715877163345222995418839680448835529753361286837225935390079201666941339091168758803988828869216002373257361588207163516271332810518187602104852180675526648673908900907195138058626735124312215691637902277328705410842037841525683288718046987952513073266340278519059417338920358540395677035611329354482585628287610610698229721420961993509331312171187891078766872044548876089410174798647137882462153955933333275562009439580434537919782280590395959927436913793778664940964048777841748336432684026282932406260081908081804390914556351936856063045089142289645219987798849347477729132797266027658401667890136490508741142126861969862044126965282981087045479861559545338021201155646979976785738920186243599326777689454060508218838227909833627167124490026761178498264377033002081844590009717235204331994708242098771514449751017055643029542821819670009202515615844174205933658148134902693111517093872260026458630561325605792560927332265579346280805683443921373688405650434307396574061017779370141424615493070741360805442100295600095663588977899267630517718781943706761498217564186590116160865408635391513039201316805769034172596453692350806417446562351523929050409479953184074862151210561833854566176652606393713658802521666223576132201941701372664966073252010771947931265282763302413805164907174565964853748354669194523580315301969160480994606814904037819829732360930087135760798621425422096419004367905479049930078372421581954535418371129368658430553842717628035279128821129308351575656599944741788438381565148434229858704245592434693295232821803508333726283791830216591836181554217157448465778420134329982594566884558266171979012180849480332448787258183774805522268151011371745368417870280274452442905474518234674919564188551244421337783521423865979925988203287085109338386829906571994614906290257427686038850511032638544540419184958866538545040571323629681069146814847869659166861842756798460041868762298055562963045953227923051616721591968675849523635298935788507746081537321454642984792310511676357749494622952569497660359473962430995343310404994209677883827002714478494069037073249106444151696053256560586778757417472110827435774315194060757983563629143326397812218946287447798119807225646714664054850131009656786314880090303749338875364183165134982546694673316118123364854397649325026179549357204305402182974871251107404011611405899911093062492312813116340549262571356721818628932786138833718028535056503591952741400869510926167541476792668032109237467087213606278332922386413619594121339278036118276324106004740971111048140003623342714514483334641675466354699731494756643423659493496845884551524150756376605086632827424794136062876041290644913828519456402643153225858624043141838669590633245063000392213192647625962691510904457695301444054618037857503036686212462278639752746667870121003392984873375014475600322100622358029343774955032037012738468163061026570300872275462966796880890587127676361066225722352229739206443093524327228100859973095132528630601105497915644791845004618046762408928925680912930592960642357021061524646205023248966593987324933967376952023991760898474571843531936646529125848064480196520162838795189499336759241485626136995945307287254532463291529110128763770605570609531377527751867923292134955245133089867969165129073841302167573238637575820080363575728002754490327953079900799442541108725693188014667935595834676432868876966610097395749967836593397846346959948950610490383647409504695226063858046758073069912290474089879166872117147527644711604401952718169508289733537148530928937046384420893299771125856840846608339934045689026787516008775461267988015465856522061210953490796707365539702576199431376639960606061106406959330828171876426043573425361756943784848495250108266488395159700490598380812105221111091943323951136051446459834210799058082093716464523127704023160072138543723461267260997870385657091998507595634613248460188409850194287687902268734556500519121546544063829253851276317663922050938345204300773017029940362615434001322763910912988327863920412300445551684054889809080779174636092439334912641164240093880746356607262336695842764583698268734815881961058571835767462009650526065929263548291499045768307210893245857073701660717398194485028842603963660746031184786225831056580870870305567595861341700745402965687634774176431051751036732869245558582082372038601781739405175130437994868822320044378043103170921034261674998000073016094814586374488778522273076330495383944345382770608760763542098445008306247630253572781032783461766970544287155315340016497076657195985041748199087201490875686037783591994719343352772947285537925787684832301101859365800717291186967617655053775030293033830706448912811412025506150896411007623824574488655182581058140345320124754723269087547507078577659732542844459353044992070014538748948226556442223696365544194225441338212225477497535494624827680533336983284156138692363443358553868471111430498248398991803165458638289353799130535222833430137953372954016257623228081138499491876144141322933767106563492528814528239506209022357876684650116660097382753660405446941653422239052108314585847035529352219928272760574821266065291385530345549744551470344939486863429459658431024190785923680224560763936784166270518555178702904073557304620639692453307795782245949710420188043000183881429008173039450507342787013124466860092778581811040911511729374873627887874907465285565434748886831064110051023020875107768918781525622735251550379532444857787277617001964853703555167655209119339343762866284619844026295252183678522367475108809781507098978413086245881522660963551401874495836926917799047120726494905737264286005211403581231076006699518536124862746756375896225299116496066876508261734178484789337295056739007878617925351440621045366250640463728815698232317500596261080921955211150859302955654967538862612972339914628358476048627627027309739202001432248707582337354915246085608210328882974183906478869923273691360048837436615223517058437705545210815513361262142911815615301758882573594892507108879262128641392443309383797333867806131795237315266773820858024701433527009243803266951742119507670884326346442749127558907746863582162166042741315170212458586056233631493164646913946562497471741958354218607748711057338458433689939645913740603382159352243594751626239188685307822821763983237306180204246560477527943104796189724299533029792497481684052893791044947004590864991872727345413508101983881864673609392571930511968645601855782450218231065889437986522432050677379966196955472440585922417953006820451795370043472451762893566770508490213107736625751697335527462302943031203596260953423574397249659211010657817826108745318874803187430823573699195156340957162700992444929749105489851519658664740148225106335367949737142510229341882585117371994499115097583746130105505064197721531929354875371191630262030328588658528480193509225875775597425276584011721342323648084027143356367542046375182552524944329657043861387865901965738802868401894087672816714137033661732650120578653915780703088714261519075001492576112927675193096728453971160213606303090542243966320674323582797889332324405779199278484633339777737655901870574806828678347965624146102899508487399692970750432753029972872297327934442988646412725348160603779707298299173029296308695801996312413304939350493325412355071054461182591141116454534710329881047844067780138077131465400099386306481266614330858206811395838319169545558259426895769841428893743467084107946318932539106963955780706021245974898293564613560788983472419979478564362042094613412387613198865352358312996862268948608408456655606876954501274486631405054735351746873009806322780468912246821460806727627708402402266155485024008952891657117617439020337584877842911289623247059191874691042005848326140677333751027195653994697162517248312230633919328707983800748485726516123434933273356664473358556430235280883924348278760886164943289399166399210488307847777048045728491456303353265070029588906265915498509407972767567129795010098229476228961891591441520032283878773485130979081019129267227103778898053964156362364169154985768408398468861684375407065121039062506128107663799047908879674778069738473170475253442156390387201238806323688037017949308954900776331523063548374256816653361606641980030188287123767481898330246836371488309259283375902278942588060087286038859168849730693948020511221766359138251524278670094406942355120201568377778851824670025651708509249623747726813694284350062938814429987905301056217375459182679973217735029368928065210025396268807498092643458011655715886700443503976505323478287327368840863540002740676783821963522226539290939807367391364082898722017776747168118195856133721583119054682936083236976113450281757830202934845982925000895682630271263295866292147653142233351793093387951357095346377183684092444422096319331295620305575517340067973740614162107923633423805646850092037167152642556371853889571416419772387422610596667396997173168169415435095283193556417705668622215217991151355639707143312893657553844648326201206424338016955862698561022460646069330793847858814367407000599769703649019273328826135329363112403650698652160638987250267238087403396744397830258296894256896741864336134979475245526291426522842419243083388103580053787023999542172113686550275341362211693140694669513186928102574795985605145005021715913317751609957865551981886193211282110709442287240442481153406055895958355815232012184605820563592699303478851132068626627588771446035996656108430725696500563064489187599466596772847171539573612108180841547273142661748933134174632662354222072600146012701206934639520564445543291662986660783089068118790090815295063626782075614388815781351134695366303878412092346942868730839320432333872775496805210302821544324723388845215343727250128589747691460808314404125868181540049187772287869801853454537006526655649170915429522756709222217474112062720656622989806032891672068743654948246108697367225547404812889242471854323605753411672850757552057131156697954584887398742228135887985840783135060548290551482785294891121905383195624228719484759407859398047901094194070671764439032730712135887385049993638838205501683402777496070276844880281912220636888636811043569529300652195528261526991271637277388418993287130563464688227398288763198645709836308917786487086676185485680047672552675414742851028145807403152992197814557756843681110185317498167016426647884090262682824448258027532094549915104518517716546311804904567985713257528117913656278158111288816562285876030875974963849435275676612168959261485030785362045274507752950631012480341804584059432926079854435620093708091821523920371790678121992280496069738238743312626730306795943960954957189577217915597300588693646845576676092450906088202212235719254536715191834872587423919410890444115959932760044506556206461164655665487594247369252336955993030355095817626176231849561906494839673002037763874369343999829430209147073618947932692762445186560239559053705128978163455423320114975994896278424327483788032701418676952621180975006405149755889650293004867605208010491537885413909424531691719987628941277221129464568294860281493181560249677887949813777216229359437811004448060797672429276249510784153446429150842764520002042769470698041775832209097020291657347251582904630910359037842977572651720877244740952267166306005469716387943171196873484688738186656751279298575016363411314627530499019135646823804329970695770150789337728658035712790913767420805655493624646 lz4-2.5.2/fuzz/corpus/random.data000066400000000000000000000400001364760661600166660ustar00rootroot00000000000000OoϹ(J +2%ļhzjƥ*WFsTO0h.m !1ƾ='gbWW CqT]YewEp=2 4cPR="6-gZJa0ԇLҌlgyF3=˄wC2h(R$~p+IP#GPħԽ *Z嗞Zm}*LGF%ij3C{-Y]vZIiFlR&񖗢}?rZk)t-YllQ<`80$".V7,^~PCdaewĐ]_&'.x8/qi3,*;*u#A 9 <'Dḝ^Q#Esk=a,HZT)?%.> J7|ki|GiĽQ/w\dE-.q3tN)TmYXn*Ka% _Ca eLY[r֔A MH /yK7sDgͣq$(z썴7)~nⒸ#e7}ɬGuQۡ6#cv%icUa&$q?kzcӱڞsG9k,v۸rNGhBfA'nU`㔜}XGߨܑ (&'Z6؀~^1/AQ`N4YU&/mEے>V)Ӷ*Qa48՝e$=& ?GDOF5KF l59VǾ[ZYbH*KFn0S1OL޸Z} [x$3fʨWGˮ*am/3Ԛupkr}npEhZsTW5y!@l"{o^bOs4HBO=z>Tj.n,<b*x'\I#.dhr lB#-)AjP^>9u֌wI 4I&Ah}vwP5 1=a[{#( h1HcF3biC:ZQ| Q^IڇP.&ie7T$6- (WF?s%cͯH@_,w['jqVUNm?|6GuO/m JC,iXP̶q4/SO؂AP8Tars.,qQB8gN|֭qt|1ZHI?lqO(y@wf/=}r|;q0z5wiyJm $lm$/Ɔr X`FSe>ePXӯF^<սSgr亷ܳSj>7.Wն'Df*a$~Ww9Npuɩ`m,PbIS2UM--{lblR;"=1?Y/\}} (tuMH\FKB|bL(LD wVsҬk;QMga)K{]XVTsy[# sӍO7\~b dY_:f8YBOj'/Qd"a+6BrH!SNٕRA+[ W~X4)L5 ji7Y].j?ti;&tćN8CYȩѬXT`j H]s( 0(`?A"f&(Pjp @ =lR1`竸Gv~"갡`נ̘Vv޳Sn8KdTnҗ*55fRU 58#AX'UNY}&kfPGځGba:ehqMnoMz#Dr%.gWɻ忌{KFY3vWh M7rѳtr21j8̬c6}5)FhJk1zebHqi᭹hDSJPHui C5 X=G+ `_3|;iBnj1k%\5}H0O8K @KmbCh9Hxh@0aB.w㘀yS; RaV?J+b!t*GO̷U]ڐ]$zdZ19(+Dc̋=q$z1QejqfVLr5X=g]ytܺD&ɽé>`M&3`K.,x0 jr% t/}o/ U)#_j}-.*d,yCr*!w2qQ vqr Uu'"b0Y }\iםy%n|ôjx櫙=E4WZnmo ]l:#/kRSOXWR]t o1 4*CnAl` v^܄\\1X4|)*ee(Ǯ$;Kgyj>´k?|S3~?m? ӅjN~.-|Dz4Kz>s U#*I:|I'y|֏(= 2,+f>]Tx=&|qG[7vM>+X W((U K86YA!ã՘9М(>Y;:tם)P& ]e3wMϻKc>tLģs*ҡz4J}slpS{y-DZwo|MBE ㋔E1 ly< ZB5rBe0MHb'?r mƽ8tL+Nn`q9-F.\.,O:aFsn]\㎶nYHXdwDp"#ǘBMhp n脳t䑲U܎BR A?UN-@E1URr/ږxz6dljXاr`{zx}3tz#*yAqҷaal$Ljpbfz垎 _-,lyˏ][1WKq~.FO17/enI\QQL-f*3qF戼Tfe&+HנttHnl`&`N (IFg>?f?)GwդGUii*6=Yb kH{۬}^`7^TњG[)xV5WqIt&P/t nj椯9"J^46%nC]7"qR|vQ >|N LrXR5둄I{t~^= +Ok^F~ylƩ$Vr<O,J8\ǹ6FV-\ 'q6#o:^l3!.dp/^V͛i f;!FoXE S$OmbVumے&EAHO n:lxlrfB b[zHG{x. Hygp/UYn4 #`i{*^С;$Kkuq޾Gsi-=HJeB!/{-ټ5JD"t,<+ ;J8C-_KFmya>SCD7ZCL s-WAIJ:/obn@KyRNHou{5ۥ`TC<"n({eElmIHs *#s$u@W S=hXɀ)_Fai=-54f=9?4oqZnY!ozC*Bd&5eЕ4?DpDvb,4 F?Dr@@5YJ+8*9o(u 7fPt =ZG)|7sTOOE屸Ư|X-I:ɰNIW*CH!s$y`E|nDב_t1{mÑ1 Y=ÔZ3SVdOo GK0 њwW!,g&"8}5S%5$N1׶c@Ibj[^J#?Y_L:$K?]YW/*y<5GKLyQSC*nTK(-k8R.5` P+%,. s`#?;2 2iW9s)~Ct8au 5Ļkvi=.W&Yu75k}ҲjI'*raa{t [ Q{b?@~ ;ZNL` [rSҚBT-!c٠BD$X@ҖN-36:yTm{`uA'潌*D:`;5BipJ7- G1>U~{(LɜЀkvXoCɈKQII&@~o;:ӫoe0HϔʌMw3=<JxNpkI!6s'arBG[߮B=U<|M"K4c^$INT hp-ڋٯ|̺?&ʡ d⧤<=c/RBJGhؙxEkld^T~1TD==543fi!AJif| جj $Z(' T!<"3IC5$3qZ]yHsZuMQ x𳋚+qj̅W=zͻO\a 5$dH@$f4{`YWcLECL1`d'& ju {DbN?j x3 ݉r_zVC ܳ3#,uBb2m^J6۫@B@}Sh4ɶʙ+0Te a~5(Cm'4|êCQ@>qLJx>H;;:=gpn4ΰ܉;鄋l=K\s[vM4pJ5@jg=trdY,$c|Ӣ0?f„U 6RК3{d*뿖akfѾ殞ao}5J3[V7Q IVbRឍT[rbwڳx;U ׹X5n[ ZI*e UޏA$cddIeŸ [jBng+ZdFo"Tvq3Z&ee Qsޯ6~D0D,>ۂ<A)vq߭pq*2@ gQJx;E.}q>je3(Hާ/:i,G#=LP9wNksf0]5ƾh,>m=5 dNa [BZت--ڽ YxA3q Gl 4s#F9aK@]U{,x*.e %{*7/s6T%Ͱ 78oi8<DyR8ה)~h}%t t"Ovč cM0&QVc}yZ `)LF{q4/!Kcv~c39Їޓβ=j$lpK'|;/7i'g[H)u qG|l>y5MM$!Q$Fso]H$%sY@FsrDX\mHBwUiF|v,WFzffŔ7[npz",v Y206uKpB P_?Mg"arY;c#Sgb(O`u9v4T1'f+>d?z~c|־E y7y/=5jR9z<&f[B1bdeDR33M:snWzwvuCt7 #R)uɓzV.ܞ mnj$ReZwz J 7 "|Aj ʮ)"ۓ(Y>{2TÜظW0ƝC+e3QZ9g7rܖE7hdbN?wž 9S]N4=w{b^uV2e**E{ldtU/Wt"BRM^5..ڕs ;98Xv%;dFcq>I^Re3L*XՌ#!O%.ASȳzXD.rJ(0_e>e }J"Z.1˷fWMH-@Ȇ 2ܟm~V }+ir*&KlOT[G-kNoBn-B%~qL5@5bMje.2PcC'v9_zJg(Q__Ӄ/?dd|fݳuSCP:/c 6L+Tv ]K)>I]KbL<$8S^+Rxu(Bj18B^YMlfPV$/Θqa%~`ă^`-+\}?2eE<0.G9365] Oz݈+ 꽱]VÃPF<7Wq;œ.ʙH Hy=#d;vE4:*xmu2B\%Y}<v!S>:6tAqM%2 `VXeo-;繸3GqQHˮԍvh~ͣG}])1#}8*-ݎ~SV.: zWҴ_]D]⇦j6yu$*K,O5bfP($1OH[v"oM$.4VyEYzE !A' =/_%ѻRf~6|ȡ&[CTn'7l;%bk@Z 2FHE`ɩC'xe^ؔlN*eq`߈C$%M\⫥c^╛Ou򲊠] 1 ~;(x4<9 o3L<~9%"E o,]h4@{/hxz(_3[1(FI`[TwwfTPieѲ+'奬IJ!]́o^68s8eH_ʶ="߱z>3p$[\G JP\ lqI" :>@j|Â5ATt_\)9~l,[jTՖbZkd[;~X{}&ߕ"%ʉKŸ} ;U5j=?OMJtG] |uɆ?{q=*rw@k#n&-Q-/ (d ?񩑋&I>ſuop):q K9g?f󏭣JԌ~ }|zc;#bҷNrINb2^Pa8| n@d|gޕ_ AD"}HքMgA]KkUCg}[V@gwQIo tJA }c5eI`>ثDIȤl +dEM) ,QU`vq.[FzӲbF9ZL7^$p_6V[M_}.Y8t{|䖏ˠbtChR|;TJۆ!EAvDDsV򩈥a͉`/-p>Up]6YK֮b/1xxy5r>qL7&wȉSߝ$-؀oM_0 /\HDEyH& 4.K3S1F[Ύ,`t_}3|VلkLŷ6_ M0nSVE& l #K>ydEF\Ki {Κݰ-1[J0[Z6x,oz͢՗]_xDY m9P>׏$:JūCI%IwrtcohZI'x۸Or8kF[i+s7ozPfrl2,LR)a|TWa7S"e`[ .KM")<GGAg5̌ʿC\~qXÊ*#ke}}N@@XUSq Xn+<4ȩʹI4zX<{$R RĹE|C3&(쁴G@RioW+<}¬^(J0pHL΋׷wEzSOBQeI+oq3ձҌuy YɌ _[,P׊M6tnPwKk\ (cs/M}˜(ꍱáD}5vf)ICtaMveeޥ$JSٳce.7qYf"xSu){{>uqH~2]9Z˿ U_?zs52R5!zI^ yy^,u"M+L^Wq$jWjo?D$jKFS[UgR8)\ EZvkS8OkVd;{ 8J{>{) 'n(Ek8QEU~INAH8m5M:!@ gdh]Zj׎7KX&O%/6X U0c  IUiϖ8b36HPwPi݂Q(9̘(;W7|i . [H. s:2w7ʍ;M 2ê^(U* zhK^*a{՚5-Rc<}b@ mBz"oAe2\;,3>`T@ b>6Q9@QV+n,i)oslBKd:>߻-Q N pHgru--#Fq-Db\ߌS\VL+옉w&d3UOP;.B]vfoUnۤsy1h4 M>%=S%rW,$#Fi𖧾>dra[yOHʣZ|[aE)_:bGGd848^)._r3w!6SEeLFlZgêo=~O*<ٶ$P^ݡGх _cSo:f^Q[UiBĖ!S{ &cSQSœ%`nM>%cr0t}UwqǴ[i k6N*ϥT0]u(nT&ZK/Kymi2\^2b'uWdC|GFeRE\IsQayB7lׅr^O?ķ0S6T< Ix>Ż8`!@L7|CꆢsZ'j/)j|IsHS%'vc!9Nq2^Fh"(K4HӀMwx!a?"#xgF\[ >4mN .>Ig{E 3#iEA|dQ*:A A)bdҷDI %: A-?Y~A[ lH9A%rQ"!H"Y4ّpEPP7i0vMT_tЇ#gNb5mi?45t#T+u^SzTv!w{ݴˉ=I%]&m*IMfཤ^0 IН QQ+ *I.'xZԫknܧPQyMLJҩnOC}M4J͐.lP1씣]8:8yGmH1B^ c!N#zwK[ ٹoz૒R;G2t*:]trRy KcWNH<;1a{;=z !,&l˯2 i4L_uaB,w3Ƭ *`Pjfޭ] qhWvl7ƙcdѐ@[ʔ ) A(+I,^mUBRA[oP† ıeE[M異xVqf+aw,٧7-ˡO]*YzQT_̾[CymHd7]B&xg_%{ BXt#cWNv@)qoS#O=PU+uco-T}1s.UAž2oA@׿\ ʜ_q0 $jeeP+N5nuAK$Jd+\f4n8ʀ|1S^<^yayăGy "SWD`Je1c`VO y-}ϟx'eVNc :[6>nk牋䥰rUm+jjJ)?su>á/3?;rO~t1^ O|pBMC]=L^ad:c O' Id,3F~l&7tz]8 ֐w%$ԝ*T槪  jmr^o[ 08S*ʤ;bo"'0oZ; Ex2s*K‰W<[L0 fb4\5ʘ{a;8! 8M{B[(jk+?rn5߿z&׻L\"܏4Bb9ʣD# ӀZ]l;Chh?od?ӣP:Һo꼙 &/L𣋰pԧ{M H‡o?vmw ZPC@k#}!$0sF|A£;Ar +TgQx#^~toڻ@ZDxY$8WCo%pa1 K;z1|ѯ{DyxBOhX ܒW(xҡ3^\B:L|g*;ucu#X{B@ɰ3vTFP%|_RbQJWrOlvFD' x_%]X׾', 0Ys+렭ۻ1| [cNW^QA䡕^, 8+߽Mk| 5VUafynK:^߸WvG,yYmUr ZdwZ5>y2 Ky};j:;h&̻XAH7 8RGTnWhlM NjKŽ+U9-Ƹ[ds\&cx5b(qʬ{%[޷|}H <bB&ܓ@ƾ DnR$V{tdS K'!F2^7)ǥcsy#wo[ n;hf^f9e(胘eiԮ2Oʩ4K^Op42B_ҥjELI݈C,S?9<%k ?@wz@HD `^@N\`f& ;rE~4Tm2.g=B#B5՞l-1܍u]wRq۟^ܰۧ𫉃9v%S19c@ܪl#ܾVم kº*Ph̕,K n~sl5o_Źt5j'r3 " mYa+2n@38Qǃ2oWwMj$ǎ5'\kH#_)-tw&NL, 5dpFg@COw))/2OklXSy#_$K̼*_b\SrMn3ጶNGjcJ. c5 ?+w$VpQ.ꁠ(8nG,:4 Ŧ=~"zbkiyqq-a?iWT|l:#"'qwETFiG ]_=S1}aZM)z7]r>?YlUH04>l?8bgm呧0bP|x _D| 7LrSkK55BpΘ$RGNw rՇy0YܽZZxVkq e%bpp̝ `ٖ K̯Y=I;2M(VMבexڨa`Qk%G;6&x3myշ.4^?kw1 $k_|(`2fq}d Mh>@ J8 @՛`U9HE&9FIjh㘁mk<-F7 r 7ů3shTtNM 2ǹ{Nub lz4-2.5.2/fuzz/corpus/repeat.txt000066400000000000000000000020201364760661600165740ustar00rootroot00000000000000abcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzlz4-2.5.2/fuzz/corpus/upperbound.data000066400000000000000000000011071364760661600175760ustar00rootroot00000000000000 „:z"jYL"[" 䚨 p"}"ƃp|S!p_Y?ڊgh?" 2 Ȥ222֊:+p9+3!T%ZJqJGj%1N9YwKDz*tmisukKz MR 8 íH\Zxߣ" ThXpVNIuj)@aK0ayuR%f&Pv>? kpx9)eFYl2(@AkAZU$h _9Elno$P !bMAUgj1uV%eJo^7mgeGAUMf 77TD%FhT1jy()=9Y *0nHsNiZ&PbCiqn 6UTH&n3t7FIj_L@iJ^Wj6DWM8@ gr*zjBxFx+PTNGeTmLkpeL8 PLUN#9ADVOuKH3_b4f8o1opWx^V I7O*$71sLkOBuN FJ!H1VqHqlz4-2.5.2/fuzz/lz4-fuzz.zip000066400000000000000000131571371364760661600155210ustar00rootroot00000000000000PK cover.exe xSE8OH oUlF`ԵjAK_!um z]ՕÊjBKA+ aR̙M|<{̙3gΜsܒ)Dt!?/:_-B=>xDs]̺wδ]wM9sVu=9U3]3f|nt=8{F9qݽ7{qȉ:εeAhT/X ` !JaF0%Cuc9 h!Phis av7:xOu!}^s-Bhko z"͊=6crыǰ~70)=e큇X*ZܥÌYt,#4v*s1#i\B\Ka-q!TZ\aŗ^9̾q>z=̛7 .T9uwIi9?2!JBDiiy頓> :iOtYC>}]h1iQCgP:W}Zre/ !Rwp MWQJHKVP;H8CW 5DDžn ['-AuL'RP>Q뮼kvij ȴk&cAh]kEa ^lC{g^?u l!G'%+"?ʡ/Tľ5:- ЊR䃂r(>:-] mvjVJjJxY bAK>ޙj)Eke X@/RDJ`(c=Wm#Q}bLjjZ؁PmDUCh^ڤU(iXPb(xr *eba6Pɝo@ :UsJ׵;޳"ڮjfBOӥJvؤ˜ Mߖ*ЅPF+Җj&u;/rt<ʕʪj_7kqm[eUwwKEws>0@FRt%CɁ T%=Y/e Vݴ>tR׵B;VSt> Oϐ#o vj Ă&; SB<[e"o㳊ؚDH[(@(;'*_sa r;;ZP5|u@Φ/ܺ y_?XA/* uVUg]f=iE,m:~ϒgP|q=Q*=ݽ/CFi|c{ WHE"u]o=Dm("y<`XkⳆ8}IQs_gD}=&jX5w{{-`ovU7ndom{+eoWm4o ޼=l0oTYo"aPDPW)>.Y€!j#͂H+m1u(_?0/<#4ॶjs/vR</ v)s/$ᅔ-xxitĖH G1sImR66 `ߋBKmܞ64WGloΚ㥶mOu)=ڐ}QkIDܾx~+^1'u]wG?K"|?aZu|"n{/%\&}umV4%1>8i7$ƌ/hҵ,q#T[6Фii<7HqQ0 R,`Z-ݴ)Q %^0㓵gl^ TY6 %?}{wdk оDiO%S#igQ~Hj/uDU(2N<-*;ONdIQGVl2+CPth/AMZXxY{^xΘ+; ~?頋9ej ZuQ=MFmS %^~yzQą0OHljIJ~x^/=J6\~` mV9SffAa;Zlpڄ uR*Z:5U54D/JA_-&Xm(>F'yUge>eB|n>}2C}Z}qNcڢ!Em6kImMyex"Bx{v46;^!ڮwvmܜ,8 BHw̻+qpK%#:BU R/iħDj* RsAl"5J؍oC{ p(QqTCbYDFL<[D׭mF<[K#~Df σ{k;ۈry>Q vk#~ z MFvHv}Gv?!cZT2@w[g~)ň+;Y?v\ue6[U1&/~I6/^t[g麾cրoU1kk7ͧvG/}:w߃?o>5m)A'O% g-0'U V## O,W#|b!Ҙ?kD)8'劏e\+ߛ(S촸3ޗwH'xXNx5p,Z)YYҟBnt,Q@O;_E,f< .;͞%E4[hvzvzˤ=~BkE*} նzU^? an"">*YM)8 v ߕmZ,RQUɛj@D=|aoK8Gݻݡ۬&Zt%3v ˳lE,)N>bIX4iY6x^;vtoGGJeR!BDwE('&)# "?dl=z"CdE~,Fk̊ߦ_[m%%3B@SU,,zʮyt]OlO'x0},ɟSlf4yo'>4ѫϧk|/ [|gOL<š}%JiDThEihï}QxgQz!u%YkA+lcGz)j#D /=*n e8ƤELjshPTdTߖ!`]#z<ւjkD;Q(\bbuޗFƀ@<(cDA=bYgiWO/m!49 lf"v!3'XϽ3wlteN;~ˤ+vC͈ Sm_2#cL RDxOqi.J󫦧@J2h*o>t^4D[l,0cV,|'S35 < )M)w${4˛1ۈaM85ju~Jgzay"̴#gidTv*1JYDv+"z4Bk{҇(S|bKѫfI=#;iaP0l2`4#mOËC0s{؂C{]ze#sGz4 ^HŢDy͓~O;^Pe1^8..Z,ŠQS"?ݯoXNsDLTa y^2&uhۍkS ;3, u=BH|@"D,~0H^, "Ps,ʘ1m@uW&Nb?撺t B~ecBVVBešTĆ"ޱmtBwC9~u-MRP-bsJ^'F|xuNbJÜ"R[\A&Z#hM4RJb/f;/AS\pX3:wu]ս _0mǓ"n/X D )cWA4i\*C[9o:Q/m*؂Aй\&N;;|k%}4~>8ɼ$n `""/m~ӒHunm!u/r"HLF-!#cTT6hI)f8T/>@5]CW;+"Do y݈kKR)׈x9U^"|͐h% HW8NFxrǏ?ھ2[k*@ډ]az6tJ XŪ? K-@xyEđ{HT AXk tLԋI]]@<_5s/!x—|?rOB<cӉiv#\y,"m* tֺBy -qO,J=>{CI!Q^v?anez'bN"b<~s?'R"7G<`4M;,MXӐx5tٝJW-Ge"<KWYZprS*z2N2j:֞R5)Q<3s+9R@D,~ H V fݚ=jT' X=bDn t5 LTkOA̞j&}C5j4i吥P|)J60/Y|jov;_5ʗ:򉀼/orG{!o@Br{@nnOr;eO@ozdXI[|.1 `ǎAhKBR5NWn#9|mTPiZOI>{f@/fP^uQs^SLhRGm &} |K'Q=h`{B;OzN:^-8L=TmWygR|-uyզChb:3&W`~Wo J "k<-N#_>džp쵇`=[@>]'({|TB8ۙif]|ɕWbqRGY'&7׬n18Lfec<{`CL/P.c:W8zTD]rG?3}vg[l^82-mAcB.O|qۦMGbLjgo'De!>.> i?>xN'tzC4=C J8aAc`:ҳL:Fm..\D!.nU(E*zwArMYEšjMPIS$>-u%vǔ&3-\̼D0Aν!,^g79Rёgٶ|l1ՙ? (.Mz4zt}'D m8yvqD ބAƂH*`wpyRM RoM%S&s\mN=y?fp_Z?Ti>>gm[T%X0a׬޶Q;^! U:TiPN9,sl:ł=D 31܍vk-hSKAƪѩv&AN6hg6/0ܼꤙe" Y4x f(/'̲y)eE({yɼ6ü(/eJ%J$$a5/:K͋GpҼ2/r̋EVca^  n^($)6!ʨhGRQZj0($)! Nܒ27,QLʽڤaiO|2 @BjWu+NPܪ bVwym~QO~[HI bi9( Z]H]ʡC7ѐA6BM11#\"7um; r3[h[ _O1(SkJ0՞M0 ?\Mkcj; V!Z?;C BrZ&UY$0ڔ%6i7+e;BWuLRý3~w;iIjIxDqqw;X! +άUѪ+ Qm2͊w4rL T;3Txim_sd$uVF!x>ټQv,#U{E@qryWgd㬪 c<~1%^eE17v?ptf} OPzgIE!rG <>lGAD~@!tY|J>tG{Q [%"=aY/wT[ E'ۉ-8i"x);tk [U ]kl !K|95"ݡHb_n9ɷwAxY45}_BeD=tt!rT}!zso^|>֏1Dʳ%Qm IO'/V!Wl`Me'3Y٣U=s_0`7j_?XgJ}X<K{p@(}dvlRچ.I^N"IFA'M>q8j`;g54d+ GVJ+Y" 7YMEwdO-yZ̩7&vc6+X!+޼ߊЌ˺̻ܓl+`L`j`~fXw(!)0$20c: H[iFL L$ 9JL7Yp/yL040fY6a\# cX,`V7fmF-̆f0%Z ih̿+̛t``&0[`^c`FusQgZ6&$fvL5t+>Lٓd`VtR73f̎{̃A+n` L`$ѝI ӛߓs( Z[3li3i׊M`ڒ`NFJӟ`n5(\W;r,pT>PN^C *cǔL'4x8^I)W3nN0֦Haˆ`xLx.1`nCF`$5?`/a|9ߥT~v!(_}?E1-nm_]O%E) Jxv'ëŵmEǹBѪpضIPH:Be f $D}olc9tL3@C!l:?5s1Ӝ˨B+Ort` jc9@ܕҖK`^eqTI]]''~qH9 1@`K[*4JqQL2WS}b+~+8_%X.{)Qw}//~JO=}iՊ[-YOSW/Yz .P|}3 鎱WWpͥ'q0{={Gcp;zcpsS 6m(S x篔VXe`[ZOi ëe_eAB7E8&7 ?\,^3Zu/T]GU D+}?~(=qE, ӵE6di9Q76&v@v/8 =;ي$$tj@ ʇ4>Dk~5Vn<ˏCyM9x\ İe!jӡ&+;ۓV)OѮɊx^Æ'fZqND=-҆.?dI ?G x< ꩔" ǯ5-PQXI kPږ5~_ IP |ntA^4l$ 3T聓K&ׂ C v0N-%?[%x:O+VCV,`eO /9HFn!r9ڮ!##wp XUHFJȭFJ}QRߑVQ~hC5xx/~Ȳ}x,k9϶ mkVY>٨f3Q*P {d` M,U&Ye>apG,9,AR> /BJ *3Ruz 6Ad6=憟CnYd.ZX1@WPlo 3KWp3~mOWLWWRR:@c$e*R@D][ն7?3sjooc1.DƤyjol'HE;XA8 $Op*Q}mbtD'e>UӧB#p'KdʰelrgR8 6-g Dn''ڬCWkm-VdFs# ъ4տ%x_j>y+^Wv6#n43{޼oџ,%o (gA ut_5sh0/`cQp\cikwV%+hA`~Z._|߽r~!Pn_D"~05 oؽs^_DG".G O-OʓrĭE"%x&,:EOF4qQ8 +Gw܎ٓ/r]%e>M)rb{ ʆċDK1:Q{ "({O$B6'xkN'xe#t=b FdCzn)8S cm!vqsgw/#D} IEAb\}3'Lcpn/Q":^} qWO;``H B 9.PHJ=] (LQlOG@+='JY{Z͌Ynj<#sWɆE3R^:B"U{]ȿTWOwтRS|S'Ng‘V6F !iFUZ8_5P,vzzBUrpPup&qIEeӓG8 LD@jgF,S˵)/lhd%ۆdJ%uNČ : VZR:~ݗd%ʒi `t69R{Nڤ~<7uH,.<  BH>Qm5@ϲӉq-$v H1WSr$:aZ3]*v|ǡ;`|ӧ+\.4)[ &(E( .0*]!:QmTO]Ӓ6ԴkWrXs!lNvD.AFlBr #H@^GJ`QOgjwĈ*cɜ^<8#$ؖOam% Zl!dODnf# 0Os0}ňOw0a< lJ=ij@|!,E#ߋ2!?R TfqJ?S8 @}2%I7.-eP?Q+ tXg2Ly{8u k \4̎N'#?ȣt7ͨFv^B侣Ot;Nep≦ SH<펲n0d`5p ''qF&S\]a>6a/͂{)\:@&bـm2}o4A@NzTUہRZ؋kWc g#mwL\0E8*&ZmI)N&(:XM3|q籝geh+QcQ#p}lۉjg$-Flug躮}{qftiWfMmՅ{"إnZ90W&UI0|'Rџn&'DhwT`c4ڻk kQmO2*F (>0cнlEzw.La$ 9 Nt!(q%5YО^C^BPQm g@PLffEEI7.Ï=((59}letq?^ȯ)VSY%WC{V w, eďW"MPbəü[Zs n͎a4 ~f=IPkﻓMo:Sm0ƱRQ)Нm *ď9]ϟ:)] `t 1(τ1,`LpHE'Á"FVmJzF@[e\Vz> iy[V3xm/Ov'`cjX56rs͜?aqKz.~X_NI$b]2FOl` BL7ByB̊s 'i.Aڦ&+Ypcna6i_<-3^ҹߩaÔX*Id ȃ;qPwb971GIq:wܒ[5%@1{ 7%s-I %C"- CԩTIԶ0XzoG"D[3RwGp Us&D>tU}xY7t47,6pi/m毸_HfAݧbLlؖ͡SXQ!~)+Vxl>̋LmViaXοT.{~̞;#y x"X{_*'B>a9ҏ6fG[H.HlGƳݿYR|Kc7V:6vlv`֫H{r+px_O (~~^u*P~B(/ 78I@A(u"hAiPS 5 Op'+ޗ.z/!D#7( B䦀M5Vu#Q_9[zj%x/6!!v rCk]'?:͞:B<ܕTUЩfE)ᓆ'!6pz^6f!,Vt]oDhvB~ZcvR|$~Szj^ӈ%U/RPOGes'~< 鄥j"bΎ9)J-0Gƪ>VQA;i.v|ΰIـFQhT }%zc8gjK%7zVy~o)&vѭAvK,p V02rE@%&;Gdoig>?kb!Vn4 (c ja(&.U%J)?>R;e8P=as wc~xe3HW061,qX~ߗ&Ҭ"P|COrI)g$)$. ry5TG)ߦ4ZNaID 6 aN-P+jD;iւנOO,@%vjmLY`Ӑ$rz2Ix=5u% &uiÿ?',vXw8C^)hԴ FH居8&% ) 1E=n83ߎ/r iw& ٗuZe&^2%bmohrӬFޠ) DX??|f7UI$?GVE5:̏eM.fbKNjBϻw`y9"IK*)TLzv[,b%4!އ"󊾳H@pSLT simEhb(Q{y#fX^<$ξ~mDA/TD!Bxa?6Qm?~oTLt\b%2(/ 1j?}(qJ' NMmOGuNEJj$\~iM>(SA_jEZ;c^̅=we6hfOCy` RBk2P^B[XոLd'C3'FM[&.N ~ѽxA 65@( "lnMxQo5-؄uC(aHueD |xW=ժGfoʪZxӧ%|3|rvTl%k#pa)׆_>D<ǂKѠC|S˸0@V Xkg4VNZXNTZF,] җ]0[aRZp' PaΜb,>DWJe[!r\{HL@Ѧ}Ha_Fe#ێZܝ-lS!DvVC1 ľ׼GO͋PBHZXBe-(ZjHI'>UrPkVʯ09$PzX̣T9yԆPk+ϗms-$|/rxðq 2T=n-9LVWաR?Qmy; 4&nxNvĄ H"$:|A#jl|X$mJ!@q-,7P;4|?{+e55L΋uj?R(/G-)W/~*B>]ܨ4>W* :!$q FFI͓_o4Q%N*pƣx !T!Sygcמ$%c“TiےZ`UAyBwY-8 K>(M^(䂷>&=n $yXN% Dɛi{~F } .Bsg B7Lk5 Mk5{/g(ڑu,B6ʳpE%r{g|1?^tB׵Y¶cia;ܫyK2vYݔ-ed]USY)K>W>qK Uصo s)% NIxϧV>%&x~26)[n[P[D,Dxc;Ɉvj[Ay^s`{mgqz!݅t]O\σGxiÈ7ɠf8.S{ϚƤ{[ (^q^? C%u! ue[YOVQJvBP) yH%d> ڵ>;]A_, ?eҲ4F<Ņx&}t)vFzc<9B1(I-V_> =ĚJy8,q0`Ͻ7 QƱ"y$\9w> Zvˊ40|bUe@|EͲ(U>qv s΅btBN=ߌJ:nE= 9Od+餅̬P5WY ~:JE؏#M)DTJogS^@dމ>XZ!$籦-š+5/,]},TyS@Z8;;9:=.0h?Z{I _O 餮j1x 8Ut^2JXSwn_uKJ~n`@)wNuV@.ubӿH&l/C鄥Oڤ駌 (D[7-_:F+ &-Q*,K 4IwM@_&Ӣq4!w  4 (΀]VVnܯBT0D> :i IE?\arLDNSt9S%{_* m]lyDj.PxZg[d`Cd2~6P48(R[46T4!x;Vq"좊q6܋ɕNDTe&%JsWOG/esE=$+蔉M{Ay 8CsFġTWe'){-{^Zg6f]cAvjkxN<3@m0^W@理.`mJ:A ,$~Er;Gn%j$o=Ax;3 @Qykk"U; lM>nڎ1mᣋ16T$U0,4$uqjYt[2h%#7xKi*q ~?ݏW~;#O꺻 cM9T'Ou:K:AQіCE;}c:qgً xu>~XRkM [_B(R8u\];Sh+B+e%*}.>DI/VGZ`<(x:BAf&~jR9&(q^ v/}nTe >Ksшg !щ7 @{r*x't"w%JF|]"OѡRQ7VTts&:#: uw(uǏ/q_4p2 pqq Qm9Weg5Ej!׳rj6_Uôc&# !Y[aat=;=uי(TN}\׋١`b:&X:]׎{_|1<<ԕdվ8 jn~Z6 kaCMYpk#+FػYS3w"~]zb+,,iD-c1}87\bx,(!i,vJgOt4>F}ٚcj8eIuR*J]$("{X2e"JBVK k]4m/ AXe Nagٷ4(aSz#N%D~5I*I]/eq׶J uJO%nYN53L|5üP,Vu''_ov\$x,0Ce߱vnrR,p+ϸޠ GȚ$@,҉Z%і[j%GyL/lȍ|4nf|I6%rzv6"BQtc00&]$=<;DMAnP2:q UI4"fRl["A}2AOn$N2*.~ר6UFhkg/m%#$XFA)T`r-[z'Q >TW_p}i_ȷ)0z4y^L_P]op@Wܩhi7Vb1%#<sjyPbGo/qIoQ)6h{#t(D8zNB"PW|}I4K)?:<Ӡ&[$cy) %(@vqU*!꘨`#Z d}{4]%JyDžI%զdB^ˀc@B6ck%j؍HhK/5! ($sg̈Xd4 )K9O)/AL1Ɲq@3F6~yO]FfIesoϲ[Pʿ:-دkX'ӎ^['?۰,SY\h,nd^pr|Nłzncq^89PMˢWWu@'5<g@J4k; OG< ^.~݇@p/+P9M w4y/Dm ZN \_k2JDF!MO;~IvվPmet^kU;\n!R>+ ö8N#?™w X/LtXHUlo5@ {ptN>'F \13HM*m7ϲ[ȜwZydN~{z@&$N :Q.7dekzįl0]#>J%&i8C@X=\3\{qt08:-:n 9W ojs]%z߄l͔1^ և7ίd+ްq6%xN]'Zn3?!scJ7J~kMuF '(\yb7#oiܼB] "MvYrufTeF@:/k@{Akݖ%mI[̍ Zn Vׇ.lQ;5,L/yBA 7/A0'Xui.Թ'WXH* F Lw!p?fYB*N@o* t #~=c`wN؅i8V;.%Bu=x}S Gφ lƥ= !|ZD9fQ8l{dB$P_^6h^8x'2 $r|~WdYmfyjgeڬ?9O*9<~Ǐ< 82HdX7)qhdCp(h<C643hK$u@St^op H4OWٓgh33ߠM6^ɍxVJS i > Ι p8> HV$o$Ct$$OGu0 \'sa`^am̲`Vw9Y DݬsG 0UJHpkI:Y0ΡцΟF72_>{?< R+HzQ?{h]8iЁ-;a`/;a*G sD?ːΪ݂F ̍Pt +7KDžʶh !=Xw\/kkhk7Dyw5>[C86/zy+Dwɠ[Xjl7O4-B VvZ=$z[ QkNeePHq;s]˸܍+V%ey:ž _jVoG8z`kdHՙB! nM7aكDƼxSzi7ŀ Bj=OcUF7t!=P՝h :W7kި[en@^6,3x&|988vvNf R7Jp:,w HP::|l0; jaVn%;8Ͻ)WgLJ_$nQu: k!rkK>mvwF垿cA v[\߉0/*|!Ìov$LؗRo蛭]D5a- kU /Ӿ0=,=',Ks 3(iS$roH/u^bk]vlL`ur Y6`Ζ0:A]eovR4 Q]Ju"8V-Kްh*w,#d:2N6qׅP*%LoRG*)㈶Qد뤾;2-ii|8ۮ]f#xtkO4(.2s:qDmyR^r6)w: 0~3~ύٝ3xa+9V2w˳-%\R~רxYܲAo4Rc@%:VZG!j^IiyJxl uy#3y,A8W`eZo|G)ER RʆҊA2^+q]Aڗ"/D_jk)\>o-hyƺ kY];M _"E6 _K)$|"ıʜeW5{]o&)>H Q^cӼnTW$hӼw!z!qئ)i+ˌFG ,5ٷrJr-+ay W1[5Ôbl+ai%Iv=Pb+ ?`(Z Rd\FVBaf !3ȼ)lm8V t7q}b/Q*YQ*d6SV vBA)Xw܋/Ѭ}T+Apl%:KX^rGAev~@dH.sjL7YHA5Pk2]؝p4Mi k7x'rɌI ~<-t]VV3eTIͮ Z@x|7-!O_ܒGߊ%v6 seYس,.msz^w})w ;dr?O%ueiR}2*@3f*Si%JVdNaVaLO0hF6C׳6R.A߲ź: $uR~)<ӎASBSArC*=i{52w${ͪ @vOqLnKm0;G$ξK~:1Fn1`d-azrҲBx=. k귐^ wDKU8RgKͳYZBuY \}Iӕ*׿@+p|oɋ==:I֖p@. lX`1ac ^XLxuW,˒ no^{nu.^a^n1ާ5Viב|!hRç|F)=8xd_Xg3\F=DLO/xClp#cǍyj1* c$:&ЩB sį@vRqEaAa(]Kw)NKْcrl/^9а,aW)l i[iHh^ \k:QVz?A7}KhR~EV`"H'XڳK4{ owAx/{O]e,$E7-M+~_xv7/G^} ( {nbpe*5Yü3 ʌϧ4[ Ǫrtv7y#tY~^ޯ۸Bva)\HWFTRd2N&avksIc472zΈa뱂2T* $ uYВނ (\ԃnz[A(XwmIG.\wgm /dWEbLb`>#îy2] .wX%Za2v^4jŋ #+ %[a8Xi.SF>`]?fsQW2ʳ` we"iU2[c,|VH++ I9nG6J@^/D@}]BY撔3Ii[|ъtn~~G S.TX\dj%fjdQ}[v> }{77H7K]o}dVniὍ=!z4kN/sNmM3B8zi qlxg*Zu E*UHY=~+`of=%mܻgYxQ%w%?)6P8JG/x+,ǧLB4w J'|"pl$Ln*c"1Um'.7` ~ ؔGbsMnMsFƯϪ,p4䳴j. *!ey .: y1IvXy!b%b.L>kiE mNt'+_YaqM0nYV~a|x]Rm.ԹJ w1b⋛[Vǂe2a.ri,e^N<7٥+ MHxC\\Ľ\7ኑ_`(\$공Bwo.#ℐlZC+3lSN _em,}VּYT72{]<ǁ῾hB5s"EĿ:!b2[2 jHE.fq[].$vz #QmmkRXNsrv1J4x2l/vx Aoۚhx}qc<\aO\Ff䧝;U?Sbav糡#ˮqç"|$/,%yMƇp?ӗw;}>I5"IXL9mc1t Ld_p=ׁQ'J͘뚫b|':fI$ %-t#fD# =QA'j5RH>E4Ӟi/LLX]%(hSz V'I.KOQ2wǥ:nFHpLñ|έ;/-76Hu$=l%g{5OLc̩̍}ov)yޘ~NzƠm*1%S_om?vfn!OSؿo:Z~oIq>='+L{0omz昶 zBճϱ|ݺ P+\vbx~+N?3gԝxcu%QDjx.Hm!.qm'u.[0qx]9\`&RŊh+cVJP=XJR) Ȯy2آ\/W#HJ,KGߒ( e, ,$% @}.T&Ճu'@Y0֝ ֝:xډP""6Z *{ozq4 TB 5L[cI,T˘#%Z!aa Th+0]*})a_:VG'b{² eJnvW|39??93'vl~ )rא%oI?#w$㌏, X~ٙJ i-d!7In̍<ǿy<[O -?&!d>f37M72/=O!\.ߓD>:H>P{ALAR>h?ʆrm[C2@K%o/!sf¿В4-Z%PB9@B0J0nߐF$ !Ͱ%7>M8G;w#!ߑP\zb)St|cH|t|4o3Q[_ad>J&y'G?7 ۂ ~|,}z|uz BV7qZ7lLFFkM,[drҁ%s^}܆B8Y~D,5Z$&1$ND<0k'YV*ELhn :+X#7)!Fa ~! TU- k8rLJ5^"/z4/G,K1B8`:^_CW]=^lj҉ҘG^qU ٖ kjVnՖZWun;OpY:G$2?*1ϸs"UbAtgmCIJ! Nnsjl7^}`ӫτ^ sd)˼:tp@!731X5 ]cZ]D+>]k>SNֿ5M~0@%$S%R]s ؅gӆVZ%.JS ԇV 3Q綧鼦z1:u_iqR72FL,f4[h狛H`*^o)~Qoߚj OX1QpF^o|fhWճZLxxq TRp/ÍkIM˜'5|I%XdxbYQH띑_Xoj+3WX<t;Q8 OxFQ+Nd]oݴ/2#2I@.A6ѝh#T Ȫ 6o!ټg7'"+f \blGkGOdvN┼sl"b|p%_z)zsT ΜE [CB/q ےm:@ӰkoD_lL*%juwh>k߉M]#v@Phr;S݂<~%y|+<@; }@)Y/P[DQĉDz?Z]hS kOYvi2%_ArZKhU)tEWyڗ7*(j* ӽ~ n72l^9߅^"D%P! dNw~ރR3.d?#({AAtsĢʊ[Q#wB. )Ih{ql@]_s,/E'7YOf6 ވ߀RN(v<^f4YׂlS6;A䋛 N_/}{P \Uu\=tS32F'߆`O0;js?B M!qCtx͌%x9+2#mL&^e;??խC2d990 spTNE#įseG M{6Y.k6npŃ]n7e~A@%᱗Snghi}0e}CUOkh-fsx͠ٮcD6uNqPf݄y뿅ז+ ֩Y1K[͗NZVwI޺+r {N:FȔ$ *%h]Bۗ Xpq'*~ R1D= T|Hvd!-%Jh[3]EoD7Kd'@Ʌwi主_Չ%4"y!.ߵl+gHaB&>1H^PCbס^>#5vζy@oeF7CM: 6-@l&o l/#D])B[P2/Ƣ\B EfYDH@;5Q?|9fdr0Ǩs|-w& :|v3|hW }ўrQEX@n;hE\ȫ쵐5Tu=@,q Ж&_/<@%ኰ !fXdWjNN;8z^AcPc%*Q N1QF4$VUTEr^k(5"NQWSvwc2gUFY1ha7o|cV82g;21bނNQ7O-ydqjKIߒ ޒ\\-ؗvt {kmYB#b5;#wFRuX6DϵYn_[SW8'R/QJ>UwOXm`%}o`#,PR#=ʓ[m)!4 F7`z`O:41؀/n_<߄Z9 !IVRn{X$af -"i\f'$,8 @Vz3W_K1}=ꡬp6Yc%F.дU3}E $zR]YqD$x$CRn{HH Q6"VUZ%Vg.KQc5W1K"I\@^Y}ܡH2?e~tb)"Y6EZ%zC4?$ 0D npX ]RH{Bj0uXz»oS"nz+ZHGIҺ/g?DE }S $U}t0F0.C""$<*nך&ʴaeP ׏ӳFA`Y}cMS-jVjjpD( ?c)Pgpi-r˲/Vl-C&Y˼o6"#:а> #hn7pyHC:XP! _s\$^$ȣR)Q2fE"0'.MϪK+xX㣛x!y-!Jlܫe-|gj08=Q/'Ӈ9= KЎ0)&0Tx ] ÎB`ǜ5>Ecc]sX8מy2%N~40Wi/@5d,ݕJ{*dsCυ-q!Q3zIo& 31(§J4ky>٬ٛv3gxJ@F2~'r%}ڤf2{ԪC_p} Kd/S`d BݯuGȦ`))9$*A p0a] N}+wج+^V))KuJH2,&,>L{}q{02QʢaLĩq]~T˜"nէGI,FMxkG;^`Csdw *Ѵ4kI\mDŐe!A6Z-%+|qgi^]j o=ʮGC_3ʷ3Gp΅^_8uͷ]A1` 4llܠwÖG*FS{m`&Dyʑ5Y\ JޢqHJ(n (j ST_% kDS#6U՟Ԙn CK`P#.OvWc#0)&5iؿX.ؿܬ̅)?e_;YLfۥ1u8dY'8oYX#S7*@'F6휫L@8#Al`C?F J+>&L;9 S lk .\W=DVs瀏pX CY$EI($ [)tI>ĵ62m" صED9 YYԯ]V#$ }$8?+iGx 0Cyz {`/5~ ,06+OeCZW%)P\!qY%k7xm&\x +pl;RqdO9'KV-ۓXE(w?ߓ -mu,=cm>Qdeut \)]g}DBP]f^>l߉ $xI"=+J8NMYQ߅Gv0Qcdw! VɓHLIN6e2KٔS̋$F l{$g')v,an `Q*-f"J['V߼;$ߗXұ޷rhQ I +@Qdr7>[yuOx@)p.e#K.TglphdPseU䴇FzH)^V6 )MYDIj6߃CxL X>$,ؓŕe!2C,8,\VদO"K{ISE7'>b8G3 ܎<$29Ilj)YFQUbHK׍ӛ5RV 崲QjtUSBL1g7l"ƈKOڪG vW 8Mg2v5Al3ҵ~vZn .Ѓ"vKuW,xIJj2C&3~@(\`WTIxʦ=  t⬟'es?8jY N*Njqllxm,7nIhxAߥcׄW*xh[sPNs>>`QufA49V^&.[|QÎq!x-Htgsك[uv ^ q 2fR:5 s0_b(Bf$_m58~Ŗ&eֶqԄȋ)q<$Y<Н+$L>iB!a>ȿ^X[^c"xrDwJ2aR)afY[ȚeW|x4 DuZ?@ujJ+f bdB$y6$zPZtxdN落~ %DB٤u~CqRTlNm@ǘKC>ާ]:)8J6nH-LԉwsAh?_M `SE;ڝ6RcSK!˜Yv/"4U a[uwZez@HcL 4Y,1P7PzK-]uüYCZXptT!F/øwdl]]w==Gow`/GJ>'%JA1qr]UvN}fGl g"xp#fe7~M[/N tϢs9g(cKq,dݱ_׎0հ{-m&>^oMcɿ\nkY"En{]6(P;:p%㘼 I-1"1g|KkZcyҔ=L{]/+{C@E@"Z%dHUb gyA No'ND؞ā=)\ d}{#z;D X]ךd5tO\c$ sKwoIC%%nIه5[OۻJG%'Dz`rNBXTZL7J0mO~ٰ1l$t3wd=L?}}- ~ep'el@b=L?VKK?RqxAIu -ۥX9=Jf_f8^[' $Oq|SIr6Ip=aJ;B/׿[Q9ak+dz?XaI[f2C:wq)R# .v|.s3 l$2'Džwl M:e͝#)=p0 1Č+2#mJv:FP2@PBmO$DgYw.Iw}xn>2e^R-%>qIK)ѝ8bຠْFz,?±3)#GrvV“4AbsWkD9@NJ`;e 6\)YIV\M{ؘ_&P8VV腰vlz#>LXr1&}`݈$Be>*U\if Ju3a8nncKH&`JkZ,uf7Oش:nY[ 0v@@MD-ou>㠌ќA<#6ڕH)щJlG% qw~:\lw62gY 0DPf(i5.jn(_7$ 9ۯ;Wr>B'e _>) %|t1U\tfL2p_#OٓvCUɞe<;b@BKWl} l$*~t!fAݕE;"78'Ԗ2i.2 RsB=0S' =_?Cl3F \k,.{ampb7]\qb9ws.b6q=Cȸ53(l]'R/1-ii&Y&3moY-KUqwd\" >|Q;v&14?T t8E`lxgAzvy:lo qi ASoS/I59)?Y5^?<9vH,i)Fb8ޜ2r{A˞lvR@Q2N,?+=W7xL$g{i\`-'SPߏ 2_=zg~tV%ȀQER5W0,hTV݉w4{ܢ4?uԫTVNB=9+u+& BD_3Yz/Os70p<ѮV_ m@_'4A^~ۡ#GM"l&cYCj I&o!qϲ?g.`tOK9Ÿ笅_F_FGM@yD9v'V" N#ZzMm'm~)ѦmyZH)og=ud*| kPMJj/pٳdM!} ?S^@f 4X'].$MЏ1w %cp].6Ə<2Wˤ#M;I&,R(:JF(j V䉏;J[@a4*.pKZK[|Ȣ8C| E{dg=w;sV}x ܓB~E䅺^O r*qy-!?j,v;^XOo{!Ҭ=sGCo/- ͖zQ//w trB жȪώQC o;>NC+TwG a.Vgn$?rһS=^OUXrZ aػ@~F'/N fN_D(1OAq2&F)CV&gaAo!2QY`lK,=m]k^ꎪUnE`[&K=E2YҜtN}{.4b,uX5&$#ZwPnj,իCգDaI ~{5m;0Ku~I= Dd m~blڳ'g nMz _i?s1k܅bOѐV׉HʇɳV hKs;v"Βg81n3eKR҇ME`;x/?6X˟]P跩B"X3X2b !rWZ=X!|",ABuEIFN}pT`S7Ą2#P;%,5bbq8<qqcO\aOE%BHx&t$T<`OӉgaO 쩀OECJ,ظ |qս#{G2,/c]k|YQ"R9g<g)Bky2F|\FK  ;D_!|G/s qi Mϙ< G~yk9!D(gwn!U@ȁ%V&,^ ?CO&;\Q qyᄄbp_&|ts8|XX6 .8K' WT#t@DZW![1wCrZ3֫#*~2FCzPp?k.m'4hnD}(sfɯ{SaZIXaR 1Vɰ5hWuW΀i$K.~C+J BE#-U9B=sf&DhϠoJ st6+%Z?|Y G. i&hQ d<s>`u/Dvli2B$*"Jo&&9=iuIL>r r6O^ima,7Io~o" 0.yw,L~SؔcIͱSO37TKN?Xo2g wЃ'q_2ST*:Č06(cAn2Zx̥ZDvno2S~VPh)cT&u:4zz3lhfALџn &Dnri{_u@C68hܞ r, RyTR 4Ɍ%Ƞ .1;\=Bp,;0Weǰl@+Wboʚ#~dz1+7xYu'UzTмէN39.[*RٲWƊ;O3@ɔun𭂃_T@Bo]D+-\mh/1b#_nQ,.Hl$s gK{() %1Ar.7k[kW[1I?X؁L8ЖTxSڥ>˜@a$6z쉭' zayT*34^Ct-tea7 KYMv>4,l drf76 ڎHK;jV\d~md?څ /,rzd5 Ki²UOZ6"5$X5e3 r1+V>#`_5p 5ͬjshW 3[p v n;'%0RvQj(Ê QUôݚoq4^:zģT8URm*)ow"=n! t#%O{e!ے$v<ղJVib" D@/0aD<;[U';dG)sh!RBfGt! %_ ѯ_@x0sOpD[>Q*Lx jNӌwm.G^'tX}GJ o璇"qVлL,n% +`O,wyb9$'0$00ꀫa'>Zlډ ?Pd`="a [p V] XXd6]^aF}h}&mQlZ߿;m% Z_V5Gא r1Fy4Qm PF[Ŵ-/m' Lt0})EM`R['gtԽ;l01\I3v7 )^P_ J$(a>ʽs BVn{sOG{ 8Pa02VjyV3EӘc}our'fJ/ S5NM}0͝[cw{[tY[pDȟxQXo"d c2ԮH{aeld>s\pI3 >1DYnttJB`y\mVxBWBp3&sSQ@hG/L VX}B"kM}oUCaLi[0}; +_"&,? @# 8ȴP~Br]%Ió[ t~, ۱ cJ1.Tk&TߪoB] {8iGdaca1\{c( JKor،;N*vĉ[#=p?g#+}7K!;j麮.:aA7߀h}f"L±}akҷ&g3„X:UP i;av61 S*h`Šݢ6]WtpCETK{96Ѩ|JGs7? W{3l k,>n0-)XLY#e+(Pe` iWڊ7(ƌK9Sfm3˱S9OS~!T'W aP*uU DŊ9 \dsg z" QJLkXR8jdd,!P b,}"*S`eraKH!38&䃖%j`L01DxF#kB]Yl+Te:%YivH3y ,.#XQg8TZq?5iwiBBx '_WlQ1u]!ɧU_2fJ1'XeG"y#~%W]z3R+ 9BzYsU+TO%;!e{ N4gD:G0M8m*$x'yQ;(R2n3j5^VʜGȣ>u"< =kz S'JQ |mRaz 6P;(D(EI_eҾSmίo* 85z޶'k*yK"uFb((yLB&~?L#]jT55" ^f79Pd!de,7 ~Hx]-?d K#zY357!AH.V>`2Ah1CfŐ⍠~"/_Rr`>d:ġ1C68(訯<ӰerH{!bs` '_"#:a$MחpH]?p@bDKϒ/ҺHLӐ6D,'2A!]s㇅@^eoѷGyO T6 36Pj?7r"G~agE QvfGq(/(K=%Pl# $2%Q|r 8D=kGR~d,~ 2"Z-?vhҧ}b˙^x1;78!~%ih9~|L/\ 3z_F*Ƞ6C_Ao3k">J*۲##1y"x8ҧ4~<ҟ?s;QI9n1!i|gp._4t`1hnZۓ[෵Vou|aiǭ0ppDTg4ֆ~i㤦i#<yCyrC}z_/eTa^B#Oj,d8&cGӬ~f6N T,|C': hC' gNBqXg!:OO74@nTXd9xX=m[~lVjW,eJԗR_tZE7M!u.Dp1sa%@54ߐꞡ7GKٷThI/9 zm&xpxIT$fK|L0OnZbn}i=#r d.#,6Gz@CV {c *MOS zf~4J廐Ewhm-܀\}zs#|oy쯯u"aDb/Z< 5ob월!?`CitJ!\6MdRT RY䘁AWcA\Hug=2];%i]@59yVm1BU$"BaI3ΧAR&.#h& +Dw.op>pFlK#s/qH-OVW GW`9U<zCUT5li# o5Mu!p)\F!y zြMCV!/ t`=eI3>N>}r(޹ͅʽA*_1BS'T2mz?Cj7m5S=!M8jiu,pH=Qi<.$__ڟ٦"S E2tv.e0g"/2K7d] 21W324[q4&'R ;C Q@F,y)تAlO]00u+}hDimj{5|RO IqeOZ6Cuth60!?zyISu~@ "-tL/eX2' F-wPַY ⰒV{kɾX—Jl!G;?vu@Qq s37O1k LXs"]k07C |i}o]t^|Չԭ75~'\ *5נqMʞr/yDNw';s7qc>cŻeC"FH3_K}ؼ]n*ʕPNZhEZϿCOUK:%_%_H9u1evajظ̡5n.)mb+\?Qpb%~-Ug*|}"p>)AsX <2&7L/3ÚVItғHf쇃'Y?a,W8 jF#ŪGdVvZ^tRB _Tj*WR :xR+XQ3#`rtRORRDq+ɹ+b;=.Dn,tV6{`S~Sο  _nT S|צ+A~/t R#Ox[_va +Ɓâ7Aupi~~&D.XꗪqP~OA22XԄc~ͻþ/1ceԕ:#q-Kmg˃K2!2b^vQGDZW!0=vjhQ(P?Lijߊ!Xű'FBp3l1?^ ?2 {i{ `%m7'FQ}?џE̙]Mg>fXv.Ő)ZCn8C>-"Y"AoYf4-)Mp "ٖa"mAۙ[Ppgі9 /fvPIdopC=\=:s%=3iZFY/SY5:C 27oHNg"xÑo##JF/c\:=hd؇RA?C gqH}֛sCxTwy9ߩ{JOF3ySTn|?0{nwk.nNO3P{x4P.'xOlV,mK58#P)8V(Ně<%+ ,/{AяXڌo#aI_Ҽ}2p_;;9zjJIYX*iG$}B:wub;?J\*bEA}Yܑ $Ri ٞ @_ʼnX҃l4H@tWkȱ;22XvY[+B^!5\Jk[{CeifALg45DT.it(Ҧ@MM>֕1<2(R"Sςq)F 왔EShәfYLD r ٞ)ա#֢x4|wK{\hC[댕)ັ uDlՉ_AW'xxTgv+{Lc9-v1k͊m3%;nwKS!d40fy؃3B[G,gPD4e:ʟ~9:ςi粈 , <0-m݄-`},hҚD|}u)c[ԋ߉\Ծѷ1~s4+In=TXHҵ,%q,aJ&*&c)=+C߃M+L[4—_KV?u(Я6ֱ ,e/މ@2ksH }:Aπ9P*eٙtȳ.3s@8>[`Of*'zK (^OjԹ 5D|PN.L*"Xu"Ű%#^ݰOY @ʉx몄"V>D >m_D5AGMkz#,iI/W:l\DzaTf>4l1JdPJ'Zt7 HpL 0.`*j8Z+|h鵦F.+ip܀zT$ (vT>Q'7$'o"KX$i*u}TB oň]=#R{9kFP.21j[\r,(: 3B*P`3!_ ceky:N˕:nr7z*;W[Dh sABVbV`gCW OZ1ʏXHkgVMn@B,)Ez\]Kˋ=[K{烱PTѦA>*kX<Wnfȟ.W8_#)y43͂4h e"W#@(yi_kyIX!]?Is:v<p]\=y'<:bll(B,5)>G'L睢 LԿzpP{Sޏ7cys\/=;;.^T| [i{z5/ىPۨKh|!tP9MS@ӔV a R%}h+Ez%̰2u:]8x `'z2\wz +!H+=ĎJ/^}ئiz& 02hHmx>΍RxI]H:j[펪kXjҦ9PaSѾڷ_LD .smnd{y 96k;̄C&V M.Nw!> ̞*&Q+Ocd~@ GKq]EB7y?ۖS$e`]o3'.s"6!ta?' 2#Buc(?a^,>">SGFiCOp%Yc|Y.+Y+b ~ƗI;ej|lOez즕`+T /˅Pl,I` /?A{!5W!"FT;9S*UEhYXIn0q]9a2Iխ (MRC;-GZ`E~ , ]R(E'6[0(6JwSy!>Bk}~XA8(bT"7,AhT-ԡK̭ &;hrAj߂N` b~%1~gYad~dثl -h񧍏&4sOO3_##X lumvBhog}7.ɉ"-MJ!oKAd̤1XJV +#BixJMmzO1S&T#WVeĖ"ro ^|I0Vxl4u6es>| E_Q, 4󙴐 bF@HIiUa\JN2ط"gBqKi\O[j(B5pG5ຊPA`d~K% 1w_ Z؇ D P-] Kϗ8Q L 5]R>zgi ϔO^ !,ਉQa+ģY!ar0qXذ|783x","{?N\  ZHԉ̟XT70c15O_EH} E0gb5aA,s@*g8.=t07v_F1K*A2BHm(fUii: JD6eJ=T̥*ZHEDf39 febFX݇ }#Pa\]OlXcsqX/Kc\ܟ bʶv L z6~:A= Ah_.g\TyٛJtJN1P@N!4X;e8O*:eM <)|RӪ!(s^JsՠCK"MգWYv}%)Q7(vƎa˓2`|𑚞)+aZZ9^+>\N1'eNH|CeEL(8JYg2]_K1Y)'giiOϯد/sӧ9xO`+j]?H#,tw4 H0 ,Ze R چ==}p]>MSiJ?)MZ[ǷPs^|%I뗢-2薩G]-t`r``p{~`kᗹ~Ch ;Ch; .R@~ qi<];pVkꊐwi0u6K`RXb?4;J^9anW!h@̆%e+#DNfBjbv=RR1T^ޝ7d;,$#^,@B"B8C}CҩhB'xwFis2;?̑m{Rsh3 gSQl0MVz*1RL'\36t}\lZ.lؘ;h4 -[O.Gɲ,k/](8Jhsh{t}\ ŧG!&o u׳ՃwɾԂSg8ro@澹@b;gW9H?X܊{~e1yY ñ'%|HU (}~+1G'͓3&/Ѥ"s]-(9Z&!",^9 FHkZǰYC66 !&"THmͿO݅ jPҗV8,N{'6O _ _E?Y4 o[#H&9 1:~D,ti[(4oOMwkD^^MvLfd2~O4#{v6 6) bkQf !x"miS|YB 5st=0fwZSaDtYm@DzV]rLiaR͛HVN{Cn,7>]Bֈ:Y2š`3c' uV໎p?]_ij*3 #v5iV%u- |9wGRFY˽Nm $2qce8yWgǐ~pt놫`՚X:cYqp5Inp$>&oqŠ(%4>_:]7rFk++x6EB-ꐦ9a?ł(ayS4P@w3k̸ %П 3!^X9y- ْw!VzQXzC AZ]7tWl4*G~CW;Hq5(C z E?GX 5<9rgEz~UFʜnj7RnStNCdAcii}PI/pUFJ8+%'&t4EWjR``qgj.uI 8_ }#,E"ySGgᏠfx]t= ]3UIjHV 6K]X8 `pZJQu+6t<VOP?3`S}rq7`z؞28kPn\!uNf9ݙy4CH}wBDUO!}-<~xc^ Bjgp+|/ժyp2k(w(S9 ԕVgDZc(\ܲ1,56 {}܌:ڧy?`lM=A!uS'OX5p.,Tބi0LN8?v@3/gj=!`M`0{g%?ɵ{;EMuhGB] 5} @c{lĂ}Ӓj`OLςwiz9, g[W = nj4 ;8ѧ!tP+Ǟ-BH5Ox6/tpJ!O"Ӝ+=-X38TΗtԥ.+}@`_ԧZ߼<߇w#o7dSVWmCHBjv$2G"g߳ CS D 4ڼ BsRJԶR6]<3Ak8TZ㤆I3e䠋NrZwjF*ôߣ2,AlU;Rs!5Mwh'5(gEs\c=,F3< T;>JbDd>8ޡ^=΋H+0GJb@o \Hh׹v& Q\U16WQJo瓮"L̿1t}L0r%(MՌ~a NS.!t'@오Bl4qXiWs~y קzAC]]lt?9wq'J: x4On+5]+UPAL?Qj,MٵrZp4@:cGr4kAp" s"~^;;KSCii#'1YWEl|=i s.ww7W$T89iox:V׶7Je| ;ߚ/xB?CHX> U<F<\qvn,?ގuVXjxxh5[|}F ٵ0aEڊ3g> Pl pLs(欒b1"2.Ǯ"z ,>y(Vd1783m:oT'RO\iE"3ۊe?/&  '~ '˝("?Xϖӷ;Q"J[pz98`r'a_NTx!fƇBvBH˅ˏstyaH`OҚ9h~ Bʴ6OaxRTj:/]X,,9O G+l!|=YXuQD!I.Ho{ޮzh rt R"Q+ۅߑN717;@)koq5&Qu&@AJV6|gOGlLտ،hnlhWiHՙlFHW$bpئ,O?Š[ā#7}CdTY82f\d`IUHQwvaK{w,r &x>?urVUrƐ%bW#WiWեUe qPsJ:8Wo'=IQ,KebzMte5Mt y:Fcn J4SmթC^I[ .لO;Rq0ushEZ?I{⼣> Q { 淟(sR#%yFgSL9(U۔abayMhG`+~~WRUgS+d br@tc=4ρJ?tƳ_w9URsHྞ3{;W!$g~dΫ,GȆO'* pQ_(sB̃9BբH5k)eyCѯCԐc'WNk/aIRNÝb ca›("/ (B{ DΞ vA!ond4DT]+'0B,YlW/}68K^x-\UfԻA^R%cMP4p|KHU+x{lA_Rx'BylMչoxNIn |Oȝi[?#}밆MM`IVh!;'+B{Y$D癦&TyQCM7v9ǧgOClq Kf8 4+gВ6`}iv_࢕!"QfdÖte$i[!o+yu묛lS_ P:Bw!ĸ K H R \ƶ36 }"ޅo?H/#W`U.z#]I3Q-/G\LS.ldYɺ^O)la_t7Q͓X$izghwvF ֤vEzg /&3 Yebt`wd\d#~C;y$>wQwϱ{ "_1M>#VKŶ1NL)`#_AsVDh'|[zMN[&y=Z' Y B΅ ZVY3{Woʧngy(ZwhP+f"M!:D9Q|H?Ru'ݘo+ӟME"?vg&CM~yy' ɤ53\3M^h_- Tv\i%]IT6I8 g bLkD5`Уڰu3Wwk.ږV4WC/m1G-8w`!L3.u\8dF邑b3'D4/P6u@CN+޾djrk4U _<+g_Ub/w%kKtA GZ}E ܓs⢱/3ޠgp&˄e@HƬ2H|g Gy<9pƲڱZEځ\}}VIH\AD22i8zgk:i#zru2Hen,_-):L̡-1R//$c!P\?0sL=ٗ/OxUXև?G2CwEKc xAk]r"\60wWCU$.p$-׹92' $hhmGuORr ˂V_`t X,=Dsx- D7:.7}@Lp}IPL P.R1$<@1b2!D"<ܷ6օs d5¹SiiސT-iV*n*b2*\L2T lgͤZy,KUSU_^z"n 60>֕x&g%TlC WOl$KܣO[E ˸*#C8Lݴ`E(6~"|s`~7r5^/moI<ʙMģlY| dxɷ߬?ɋ@| os#$6S6v_Ǟ{ cUwBua.ZV $^tǮr kzj{!UtX,>2c2Hoݟ}j6:1iG_.X8D`<R *K0Y,ٍJCwxBR_L\hcDȜ4%|K (Un*hlqDl[ 6$gx G{xP0~2պ6ƭ|Tf+r4>ͰkCtiE\<@[ ;_qrc^"K'ZoBA (`` VZՀQ1 JnD:|t:!7Y;.mbQ)$T>rig`/7aq≌8T[J8}3Hcwt_):B"]c)'' d H.- }:A x+կq uCQIRSbxY$~HsC{]\iatZFۤhx"KyKNw/\JK/9Xm dxQsWw7եfι]f4. Tj8a%)d19OZYU&G^V@XgI po4 v1||;$}+ć~mkr645HxD hl8D [vu6wB@gSҽССҢEDak=; M[-쮀U~C-<5>,͡NwNj;9~ƒ 7a ("WJ Ljpf㰛٘ qϸ<=ӦF4f+t GL !Tџ(j)dPt a47x覱x-X/G%xq u'ˉYTIOE m&^`q@qQu^`_0!ji2H߉m8`d F ogATgRs=ݻFsmF'VaȜIF!J:?$;F_-^Ziji0'ziP_Q}:62F؇S!27|tJP;xy{o -QH{xœֽ>R@Uq`+Yq!)JVQOvH~IO8`dM7`)W|2qL:ĸ~>c]\ƤlP]I>1B)9)(~>3_`O?0i1fe`H&OSLqIcXInBQkUl_3H4Mc!3ؑ֗ gZWYkb#GHlNJ=`,OW̶QZX^Aךk%B,hWEjT;!~mq;2m}nw]Rdchs/k_~ui;},Y;Z^R}hcex{|s;!%'<KYKB+J'Hݶ>T B}mQ\Kխ5DPU'ހj\xK5vWW)R= C#bAvUCP]m[  jo_C*6``=B*V=>U dlqrP D^yF -J~ F%4ܯϦ>V\VRnVZRK}45k!U?Ʋw,ѡ@_+*M6h@1[?Z\shoB#ט媱{u0Ca0lר (m~x_4|˅nE B'pGwQ_ (%4٪L^֯ލeC9ۼN> (~צ(5 fg{"4+~7E{j n]E,ާ»O.0kD*>B. ,$T ֲm󗌑T?>y,khCEEC=FPTGrDRw}XQR=Gj-Z#/heQs:E[գ={vٯIk* 68n~adQms8 yJ/xs\~ċS$<>-7q=wěīZ.zZ#Z^SME_ O,#a@BĄ>^۱'#?G0L|0@^k+7s[S'OXj!B^iҖTؚ # F(l 3;R$\ױoIs9b6ֽZ 6R}55䟵& |5h [BoHB<7LkM"7]It'[N9;"8@Yd2B"D8} `|M__YUTXCݐ "ԔJ؅^2?}f7#R*Xu6~A!ޢ<"/R7U^BM -tE4^ˡqL {yOG^N .7[K+4cBta 左\)f7׷+.ٖψ @n6.nuz55L!CEo E #5SpUa9fhI"" tJV¡^=Z\\5 ZEL-`7Ymxq껁MBEAҤ(h}!fTkRlQH:T\H܎JJzDŽ2NiXZ@)ў`؊`6~WW+?{>O5,E7g[¾HB؈;ܩlU|b;\biܚ>V{aDc<Y^QIq&Y~"+7t0VjuvR r#".бhc 05;@~pMhS$D w. B*ڸP,QRDװq<8m!!J|^1Y\X; ࠓ%d`HGoHFSikJШ B&g|EeFW3^` }͡uQ'Ytz ,hΚan:Д>j5͂@7 7 69y|ͩkΗ8)nH`Eo<UDх;^e\ڬXe}Bպ5֒Vdb-65b˹>J+ ;C ~<M%2>֯Tho탅wE8yjzS)S4Md4;!_gdUJ R]O.?Ahh++DteSZbMVz+l FQ}I͏O.:;n$5Z ud:(Hɍi79`Qy~/@`NhEGzP~>,,r﷝Ocߚ_xu*ؓ[j>2{8:W~;Jhiȯ 8kR(X<>HO =u~΍h|c6TJZ,UIu8kS1} .n9YZ 2.-jK2xk 6f BYRt ?]X?e ۋGϵ<e5adSvÄ'ދuq#I|ߡϞٰDV;[˕'-HHz-ˊ{v!:I=I7>+7C (yb,W#eٿcp(+ 3^iS ;|-bǃPG@v̽|ls!w̖Z8h:|]dN+8 ΐe߳i o'q%si&'ffeuTѦ/7(i"Xdر?@lZmD}8P{NRF^,/!\FHvdb}ZTKdtK8HbHj(Y%9}6Ǒ $x24çbcct|h74\bzW"CrDkAizA6&#1;kpC(xOGO|tᨼP5U.V*Ɲ;cU>{ 9')F|X*vLz@^pq71;w%sɂ#ٱܑ y?OZb'}H Zt>&kjbi%X;WO tPC.LL!@:^"Z;t&uLGByUzΪfw~7U"L[w$>[ >p3@ǻRXP,/7RWO8mi+;TKE*9f6 ks9+:ĎBHXNtkxdtKV;mHr$˒uL".ZCc 6FEn)I?K`ԟ~gPDE\ HU ZJı'T*Q5'1 9)GKBNfCN"X%j $#?:}F }CXc]UD./-9Xkt}"xH0lxCDH05HL]BblWA/RUWa쑈muIo 꿴{u,b4̟}g牎z)Ws%՗%" Sh,?%|.mw:-|,߁瞮?Ѭ}B`6v԰OO0'[[W}q\v%E%]/Nb ["B>^%R`lʅ}7*A. "~i>:C'}xf\Ljx4}N<)\o 4'h`ղᾣ^JPuH›E7|)A3ڎvc3D^嵗e&HO#7֞ J_҄X\džfv9/K@uD~t8HS]"VgnTTsG[$6;f~lzcpS P< s=<2PĘk oGl`!Q.< EQ_QLh5ͩ@$ A-zf;}4-.b/})obX4^4/حAװգ33~ȃP"r oD='PmxQ*o><8z~ ;vν?P/  u }]Wge(+w['ܴB@~EcNxW$VZ6`?$]&|T37q-Og }GM!T.rHce_O>$HXQ7z>\iHXJY-Sּּ P9xJ+6Xz(tC8?$H_.r^2+sU;R"nK-U!ןIN.D5Ry6|.J]exQ7t+-f⃽]&0ѕ/ }WԮJO-'_r]8]$ӭyV.tMe, KSRgKT0-Ʋ6$~}ZIcM'jڍf)7. 6^@P_h})E)] @ᦘ P3~zZ7 Z~E]`Sb[ZE =#\:/)`[FWG v36MM_T9PkvRJ@\u-xH%ᨼt -SAEJg]TQMrR4*GR@}fK>֙Up`L\Fn>`\FԢwPs UU*cX a{Șk%]?@0RcEҥOaWZHij5c~VgXǬ5 /@H~y>4 xkas6k5ͳQIf**d?JTBur^H◚GΞ[8 *_CvUĊz.71 O=&6I1M>C|50GCwd8wα_ !e72ӳ7CoOWV3riOAwFŗ:`W wPoL!8TkxV=O:&{ ճ? ~,$Mψ57I݉Nund7dY, u_tjck.Z9US=Fȵ(Z9vjozai4^ sʘHo>?`>wl}ge7Kba@x7U?t$FEt,ϟg|K] NR܃LOc\?!G1z˛ȲRJS`qCw"v HV26 'S#fH-XZj8jYA v>BHY.>r'ZX%e'ET^p7WϦ|Iz[$FdB7bD&E[1YEf>O# P:N^۶L ,Bw ߷IŸ{!fg/3${mL:~B7a]%[gBe74o$>'ix@&Oե&NzF11ׯ UQ!<;ޛ/Ow :>-7b|cQ*{h9r4 s'ŝ$nSV6>R-wq.'@Dxa뻯o4;{E `56_5N'D`s%u/@鱽wɫx)Igߖ&Oi.]D#)Fu37ogKmauP|+auHⷦ1/juco] "رFv wUP2i;bj8 ^Oқ_qoo_٥Tlp4p2Bfo,Wbl;~+E6}87@]T^\>q P!;6ΠBmkb&|1_4DuT{Bh[~Bfjܘޓ3Craa$YԻaS~$#gӘǟFAk'Co/s$y27{sؼ'B"ïgOTn~Ɲb :)'Ѿ7{b6R=3[+&3|TS&':[nBBV.l%?bAn"fi>tY SnV~?o'$WM%6"M,h_)P'F թ5njtJVƲHy_:ttB5G_zO\Q,O_IbQCH4}.y>j\E{S8.dP;Y4O@UG|܄ qmyodmM-`D߫X~~2r,Bdo)iz5)D>-k%~.b_o^Im`;PeOx|HPH,!< GZw%s[WsKz1HeO$xߥ_ANX vΔÏcLɪsg٩-ܕ&j Ltr}qBHO4ji`ټ6~P%+DkMW@df@-~+}7$P}l6I̩mYkg` e>GV'V|6_ eJy(T?m0Qؼ\ `8;yIʦi&~p4lb]Sip.[6oXJ~EC=ćh9/iKz );Z||t3QHOt ?ST-`U XxlWV ?!TMs!t`'X1;ŕyr9=%kGznLs~+,v \ѶLN-Lf ϦĠ vosQu k\CE2_:s:ލ>GćFs"oປf:A!p\ar)˛U!7 7G@)Ok+F:Wd:u$eFJB;0֖1 Hoa{4V;>+դE%5a 6*8y'2} O}ψ$8=RH| M.6n] w/+}og+~ȷ\njH1`ĔC'd N^HiqJ-$GT')c؁NkTʩzK/kHn@ֻF ip'5uE:s*u L^Hb寮kxIIeÈ`\lP#a94#@Հydn~QuMPiGN,Z"o1M3%R* `B[Y:-DBVX"S2R+!ѽ[9X-+ilDP&+РO|TXZrl|i JS\i#04vdޞh2mU`҇YuRwekT]K",VU@I?Q4<}G!R̦ӳxvׅ©'ˋ!Bj:%VMVcCӰGg6K{.ßIK!tl BB4Z73 1~lmSir WO)U`P9͒χ `-)!?f76|̲y1|_u:)][>>Szc*wMptT"$7|7V@,:ߋv:Up9G)zR$񱇏'EHh*]t}>!0X ҥk,?+M*Vc GГz`=7L x.5ߐ6ؼH"ǯQ} E٫9Ө>QQE-j;#TI4i"x"biWB^+B7[Pj1k HIŵ$f.cw@1-eR=|Қ)LI.4}I;M?@>R&3OB~)jnTSg2b+n>3|3Tܰi%`laD#D )`Ek<V `RKGi_[s@_VF,#*LOz,! Mp,jӗ^2[evXƉX#t0 Gr3n(#T]<7K0 YIU1&'Kz:(L(ia`Z%] v6i)}ZҾvIX0,<4p;P@o_D[O̾n:tteLd{gsTPY+;+0ujtk㰻v#.mPu*vclՍBZ6-)7|Ɣ痳U7r],`%[Tn}vUTXŪ:g-3f𪖳凩}ΪU-s$+ba~iW$FX`oǂytŔ3:`8NtU1H$(cj0ߴ"fŜYg]95klt Vʫ(dj`lփ" ܈#$(8V#XnkpJ٫:9ozݍSD8XNZ)Vhב2sybV@an[V dZ!]T/]*O/ "ك#jn{ gne ؃kكw//+q{|k؃!A?:|a)wkS֡<|tA ֫^6 X?{5zrW8^S_ק=Z;Oo9v?! 1.9M|b~4A[z|IJ5d_s#%B_+TW99}0EKR+J-#D?9 `WE_x$^Sbyv%>\?MZ}%eK"ŴUёߛ8BnٖMm(s3iX?\iy_54ZpXKW?nOнQu7u]DcӢ 5}YhngE9ě=ʕx8xP/";u%St]%HS\Kb$~0s[{1^m{`~Sgέ:4BΑV.N/iJɒaIcI ^F_9"Hxߐ{rKrodn~s?s'u`H ɱgHtqSj`Yj]MjRkևR8r팡k RX*VD`<k{0)KgGC$=)X4ctlnW⺊|U^}eZKz݌1^@ Kh8:ze|5pS? \1&C2e-8 \QI1'c9ôt,J{Bw6FnwuóɲTkA68p:-[1̵tASYr?I\ |Ali#ٽV`cax _^e&v6fjv(!ZFӴ` Fk${w¢Fn_Wc]Ի~l7(`ӌKWQټC.YGf?2:`ikU>!ڏcj~ ~5hڍ"I|K5w@'^Ŋ=IrLyi]!G'͢[arrU쮚r}"&MY]'.h뀰d`Y9]d|`3AVz|2M~ׯ//in%4սo x4tL^MYmooe diN+S" ^:lb>a35U (جO&:tOLѢEheg{f$~jAgLjD (ns|:I)DKj^9c'[JL![|d&l2 ]3Tğ?jץŘ3_$I]4uh/}L9sS%H$9Ec-T-Ա%\a-6~nԥBOEOz'7ǰi=>hX6AcPwE~ߺ끰|q]'P-c2t4i%$ P] {1;m{ozE ۶Q^ 9Z)sAA YS">bHqdB{6!A,u-FOAQ-.ݠ8j|oIbUz:o xة/Cܑ9߸-1>KhRW(] ڡk $"6 դoKMUp'dX$9_wQpsn2:,Z٤9'S5JuWFPu۸Qh4LjxU`=e#zd5 Hc=E oO~t\E)]c@1rgcbu>xc0>nWJGVkCF-]/!`eMhM>ڼBYBf R@-F&E8[Nj`aޜm,U+O41zmM+CS-d VOKϿ{-_̿?r<|t]{>:}3#O5ŧPmMWߗC^p:v skT`18O@mJ1XLE3tt'#$%+q&8i~:!d\N@oڽFE.8e:$M!fnm;1QNe/hޢE?< [!hX>hOpE=g_^o;i]t05e)/7P!Skj^s8(scdM{V 3x ؀!?7-p]Bwbb |8  |WJ]OH\ ͱRuaS>Q/LqWpHgyJl`8<"+.:9"IɾzknY!04 FӯWܕz&R]OLp- N9TEB.k+_*rUR 5Tվ60X:eQUD,ቛ# ӏ|v-o/4'-4lVr+>ѥw&"R1xZw7sTC͉_ >FbB?K v={Q5 =)Á@p΍ (EG4fdb]{a..GuaympW '( `MQ}6Ϯf-~|[{KH w/WY+Xz90^u4Cw~DXVPQwyc tf 0~uWaweBh$RD7!D^;&٬jhHQ')ֺ?ºPmb{ӄS)-4ERv'jla? pGš F"TH6#<^)DMK1+UEhJ!C8w<>a}?gW~3Mclr:xY4E-g4B|cbT`ҫ$G-ǶCܩjF5'BFV{Zߎ|P={YRWa%,1&,I{KO^+dҥVJՠ2[T{CVGֹj)ZT "u@hZCz&b Jm!]GGCԩ1݀(!7(97mD1˶#}Umbij( yƊB 1FG+b<%tɬ\Bk\40_Kwb|CY$+K@p:QL |&!U ÞL£WmG#2-UDqaꨶrkKxjcPmm !6@^?g|B 4] ¦;2I`_UPVP`Ygqvm GKCײqLi&0.QErSӯUQEW?JGFMRhL!B+ 8h|\lcL&bn-&h4^aU$&G-| aן;FUK){Q?c 1daWN {ir`UYAZV@>NƶfXBulVQu-U7-vΥ<^af:|/Ãŭ)ٓ$@`W?<MPJU"4JV-GQ@FM#% tYV*^ϣ>x<"ᑂ6Pi (n *ܤwfMZAwrqxVNX w^~C/xBt J&# 3NH_903B:>>V"0Δ D_~~zllfSYTr4ի DO:!}t5/ dlèΪ4A*mQJՄstQt mҟGi>V-IV|'(:U.*ƆJN+Tײ/HNT:Ry홦Nu"ʯVtٞ R[=E),ŷY!Pά8]Y w6FռvXvV[R(0桄6BE-ѶSȖ㨴|jAoZVXPM'$+.je_0}2Y2c56#eOdq62Z8' LƉ̾߂|d yD7/ݮO?mLXoif/h~w'p,gT_CMQ@J 'a{+7Wa2.f7vnTG][1O:9Li]K9fRvݻHF(aOc :XNfت+<4?];OqwG'&u͔g` n5y{l@އsQRE~vEyr>T, ?}r  J/$ -fqPo@Կ>`Sew`4JJ96eeZ izg{57x\Rrn"L6sg_ !}X]O.bF (VFKƚ\gц8Ee򥁰gnJ!:aŪ;2қDmA\߲byiOCM(r~kDq(W2$1=F s|x ܻ^4p+)cNqK[n8WH eͼbVN@>/ w~&N^ >-e , 0eؒ_/бޝڥ/`ҾDM Pr=6 !4h#V"[W\-5Q;!Lgݶ!mB=v}'sxa9P`3p bΗ]Y<hc o9t-]0:w=]xz,,^5Iu6H,R.nSr 79?י$+Iws.Hbz+!l%s 4Do$O_5Ăbp87gw%6@0F٨ǥےJ0+b4Re[CL 0Xy{oJf ;mAOy{Ux_>xLG.- aOW !)cM\{N֧Bz϶?T?L2Ar^Z9( ?(]F /tZioBћ\Ҵ%] !eݡC|*VO젔+n&AiX̓Ɗ[OIyK=6ā5|qPA,]4t }+x5o\].w-GuĬ2GO|nwQfqUJ'^-E|4F!DVZWj9ZR+[:˱i7  \Nƶ/֎CJqc1 ~y }Rn^\?.欣jjhҰ 7J?}ְ@rbeM4N5Xo dDY)]O릮,cJWZPtw,C/ 2>S֛Nߋ?$fθPL}]c,K÷DЊ`mn wtQn@֏@4fxSXYeGe#>U^/_(8 d? OwcVc^6.S{'y6TY\/Z<[[zXdV~ncף;,(6l~M0~gcRk~T@ܿ[Z,V$-̨.)lZ)c#-4kMڲ|׼ZL۹q=GoQϤ-(zKZO[%z-(7o7vlV( ̷@(Ys:u 5vhb8S=+ERZi3k̾Z)X}Gc b!ɿC;P{a-o3VD6;=ȻCWxJy<6HAHɗ-Nd  U3u"]54xi+"_=L!n>Tr Avܯ\Z|I: ٕ~4l<Fj=8e,b2bnW $$z{0S6,iV5(R&v)w;HoBtP$z3mȥ +ĩTP /~N7z'9XSx8aqj_Bk_V|]'$`͊ nn٦"2KKarFVaXOā5)v$=x& ߝfAWFRLwOd!įX OiQ*{-Ȝ?CTI_og=~o'{Ny~1\.[cߞ/ cͺD b 1N&N'1pWNa o"$/M|@G)>ľiѴn&y),(7 EpǼv?Ö`D {9I+_wqyherL3U&Cn ? ErOw@n:BD8+=v?Mn?rlAMY !B#DcY!17Y<9UM\_Mm [=P"xw^V/D,_oT)Ɗ$RQUVLȌLeL' GJrwB>q"+ߒXI/yЂbA4UEM[;& tf~[G>'-(6LR[ N@9xګ-%(eL?kec9_V1@VCsoOKWNP6H}H= Xc.}k媏^VӁ]ߍGoݛm3@=r}#iT*k)~C/dһ-,:߽>NtVL|y}0yXaAXs7ybQ_7‚\3G@TbPU1Ubcj`OaO̭Mk_Y{ k}2K`pl1wh Z'M{3fB$˅nnLVC \-^+,cܝ~x9IA9#2x`#8IO,-x?SIg-gp)"PU8# 7:؁U<(Wv,*iŵAzaBZ%3-ݦ9vַAn7Gjx>~KA{|uV~w?xM2,6)+JpvBʕm@ (agXm++|&w0Uޑ (€+"hbQ\d)8dp:D"#U q4zwO{oż?/yhYPlo2Á[؆ʅzSgX~ۘ`lp1,[8S9xywz=ʷ +hetM\ej 'a͚vMo`jMY͞`rK|-;sLYpUg23x;z4oIwlyn_ ,$2q2!6y1s͠s/"?{/l| wXeI;t`-]xOPU`I_[8g^dΟGS<5Џjk۸ϊu5!z+gVh"JtTM5lA h=[ޯ׹)$SBcͯwhraX/iWQ|'FۑjE%\ׂb|~[HKNZ|+2}<7v}-(6LISt31BV䆰ju8Ԕ>*N%P z%G֟ABA[|p5*o04}#`W $HJvц@X g0!TVO)MH4VZp< X^ KXͻ>W%p'W MΑv~C 7Lݑ6㈸ j<4Nؐٝ=r` Qe9zc /#^EwN/ y֓UzUOwv䪙lʀ>WZ6gЬ#kNhS+*oGߦwk/HKY8~x#.W4㚤G20?Ȏ }s_MTLfU_pWU`Vq1=ClXBӸ&J :; c³7[] ^_)0 't.fJ6zٝۋtJjm*5#2Tp7^G*@`]+  p>-n:4]K~: 23bԒ)_gJAHi噆.즚 e1v`U5SYHjJn*6`Q S~4_ij}" > \W[&g ŗ![⬋IRPt_!=r(B Նչ,mp^4 57KB7[S7w5ytg|^@6Ⴛv_!u;TPB}([dnOO_?0f ,/p.B;c/j2=@OeA>Z M4]Dy'J&dY7cDȍF!d1v4Mw{܂ttA޺q9OWYP+2+Ѵj'!Ҵ-)5Ҋ9j\ZXYC*|@ZivmI<v瑘ߵA5C{8~~Ne z]zW%)R5cB"?RI}{Yʚ׳,K܌fcîKHxK1fYM_|vlv`|x-[`Gt};Wx:Yl/Kgp;mqi:ZkNӡ_#![ ѽOs莴CǛ`?i5oe GN:~ns{)4"[ѿd89$=7Эl/plfq5[x#[`._C o j6OCyE<%JPx0E6.Fk!BHkY" .`͋|?[{p{-!̈́Wm];t܂C{}ʿ|jy@Z4HIHUez!(8n4(6h pe;bS(麤"- -Hů xTbQ[X}B',ֵUKӘ(vc]c,,C)K)rцRƺ@la;4z>Ҋ=9ҔkqH+xq%&sҗ\Tд 33t*j}>:gC#,h-Ad!Li<Ry")[ LA cYUe>uB3Ώd ¯.?CtzߚvQ}8DzLQȌptqv!ʨ^ZnAYr F$"趂sB޼[f+BAS)A)hΒ>מi`LY*gI+b9P9Gl>>.1&Vs!-ܟg Dł9q :ϏV'[y.̒MT̥2X;- I!$8c ~#UMj]E ˮI' isn)(8*o"D﹁=;NTfZ.b1p?b^6F7[`hK Y]}:`z?^|\EokM3}[̢L.:."+Q7!8Ocwx̅c5Mo"-}n65~Onrov)B#Dh=?9R>f y~d:^a7nd^AF˚-M)zBw%DZ+/"a8%t. aMۑ99QyT)Xt ~|0ܢTCMflݰ :eۨ7V5㯰&nL^,[}5GӼF1|E gX3ςbt][q?ys5q\8Q#Ew=R%H{c@O)@SvUU|+ V1Z%i3a539&QD8ʤEr Qxϭ#mKkJ;}Y ?T 68sC:Avc˰aGb'־;n\.,UݎX)-ovt@UÎ2nѴ\rP^N;@m U[AV;r6Yվ9XsۊWB边VMءG<MT_sbGGD_"p)`fdϹt@~u] M@Kh K3eChv3>Yd}K}{jE{Uɕ e Cs}{lyư]gs O,kJPLa'Պ < w]e|cSlc/fIlA2aRǰEryxN RZo=l`*|[>Qa%WKW}1s1pL1[Z"))L*}{κXU6S8HAI¦wUBHDUkboc?'@!JMz/D(XqE&8Va -(')_WA4ŀ{VzL6qU Wjel/FPTׯ?w3zzZnLYq߸ 3_]XbWVv`u,׳huOd*@.hv9eŪlx1KcZvTәepXXPT?dlOߟ2z>w|ڥE(ub @`)#k+_'@XL y/جs,6N#6i/\u͝v$ w,3[v8bvBc?#RXv=GcEl p+E7?yP"Q#r| vy .lڴvvX-ʍq@Z lp|;#I Pv-WY5#ՓcU|P{3Lt]w4pTPܿoi!W#PQwc5 d)OɂQG D;#^Npu8uaa/lfQN*Z;#V 62'7q(P0!7ͭ1`5ނ_-3ۃTj axfz30:ܗc;8ZwEGh2$' MhSFɜ-jYoPtsԜ!ՁXMv^QJFn# &;>VV@_c!֬3!V"LjPf7h43*r %Xa b,-T{/8jj+"(|A쿌'@5UqI-=#o0 Z)ط t,uX6މC[NB|dz.O/p[bu \<@ L$u^'"!?~ē~*YDeX龚"떍޺?Jʾ4<%njO7J+K$T=͜?;GtH/A A>>xol%  JyRخ/n+RI/0≗w BtHh{%frK1<vbQs9 x{ELx~D-g9,'D|mGzplc/N9J &W_I;AÞ",9j}:zg$VV|> |"SA[;'IlՂlQsp.C̄{pG}bdo4їbdQNJX-3k%#"kGGw›'gm&_ʨ*q&t G5`i'/L؎sd:Lw[)yϳU!0sH "_f 4Hװ8`!5oܵv{Z;Q9?؎Wۑ>.-NWK S:Og)  ޱޑT1T%iIIE󟏧U[?$r0 ZB _xL,?Uǎ׫uuqؑ~@EiN8ĚXKIڹy|.>z ^yϙW cMh$«ڇoԔ>l&+D܍IlsSq(92MyR8xCO8!Ά'qB@g>Ypt=jZYPt9;9~hL*P|Š%0aZ)؟ OCwې!SB@fRuuZ&U DŽT%{74#c(GHonKw~bvh2$eB/?$D3zFt}> >gfO@GBϿH_E@ؙ.ޝ78 |Uehϰhqlkæpϣؿ {#h uZ 2bݪ76NvM'fC_xtf)4aw~~+A3QYtf2NR7%йXpr{g87 ^1a ^5q㿽8?;mCz^ɛ?I{Kb%j4iڄﵢ_J%s)8r=׀~5֞8ޞ oؙÞN\ 3) ɥMCO9)/"]yE]#X$3h|܃ߟos&I Y0-#{$$$O;_60U ǚe~0RAmĎ*u6o1:T:m~Kx鈈P@| E UL K"2L"!ULYro7t^NM[O$ j1(xR`1*o8z]F^cp19!x%asBzA? 2e)xwkiÁ/xoҙt 'ֹ]w¶.X'BՕκfx^k"$_#s@u>ۿ`B\Ҳ>E0MHH)wבd~G2}JZq砾&צ"=aC(;OnZDx7><V4eIm}YB}n nD^Pw=WL8(J>gk a7E&箠(x5eKR@ϝM8! Ae1E$ynvty>s+Kdjٍ0\#3Epm~{q~LdUCy.W4X'́PXԼ_/#n(~÷Ap`?OCR٫:Qqn8TñfR.=B&>MށssjEIm(@P^;E8@75û'IΕ0íkǏv}_bG{Z' G{ǨD#ǹk緙qBB&K)5t+-WVE+8뢽KH\6߃&e6hYf5^"-WπM+!ǒN{7HK"ޡ)1 B Bb[G~$YC:9/raTc i{4]b4eLPWB9sxs'=q s:t.%pHn+-86tTqJ=T% ~)IerI6_]n|֘,[S(O9ñ~JwH@lrv(]ܒ?GIL^ŌPfzv{ 9˹7%6)0SOκXk_,Z/M@AEmgg$M}Xh9 ϔH]/P*'h:CncDtH^P Xmĉ3 ,!>./Nk̪v^h7|;;OSRM֊߉9&҅cxܤr! !Ll`&(TB.`Itc}?IFk`3aM<:!«F{Qu?$wjKџЏ`/Gr@B_u|b(rae oB0w :W?.φe~fSU,U88c%C:" л; ͦSD*!]4c;~CJz4^(|)uB~oP-8ú5x[9 seiAҰ+-Ucq w&|--@,z)r%=#+OTl 8w1J;mw2'c , =j1%l}8ez/C|ָ0;7kܧ_|Yznp WXgfw9mSx-[vIgG ulk4P[ },2֞u8M(@<.G3YX35:szUzDO>&S3?,;H`5X)l ;fܗdU'%'Q,pS㦰I+-?V{~jH*]Y7lXoEri|n]{;Բ]iDE(AlQX-c\f.?R G+fGǴsno{:BADg.kB[6eƺXx])g۱ &Lup1{y8! Lnb i:WshgΒEŶgp{IOOql^ܗ&hbN?Tĉ*^KHwn`ikkGrywINebӋ}[K*ƅ ?A)4[ا"N A2qUWd0M۠kޤ@ҏĔHI7J܎Ain]vp+FU,IVMl);>KTq7}",RZ!KEZ< / òbT<@5+Ё kC鐐Ry52b 4 /HAcOH(֬7H+ӕ3x./R:&@9Í 0]׉|fCbn=O-f{vƎmxGo'#wۘ"ifgԮG\ʇ3fEH8#Mh1r ůcd:z/ צI#0s?=TgAL eyF>G;K/QXv * X?)8:Mlɏ &_$D @uHɘtjBJ ؍J 1A'kvfeĂڰkXV{KRVbȜ x4e6bIoK>/B ^Sw8؏nf"bRbS!{B =Ls9)7}H8{~,zM>õed\\-~+a5g}:>}5axvDv3b %8%/xiY2b"u+'VOןISW˜9[/i)7NktzZo 95@kV|H1ڛ6 IL215g9f˾9NbvOnP4}MT[^nG(?ySܤyq(7ЍU^C׋|΃a)0O=ՊnYO3FY0-esR/qQBa?uߧ/c!F;!ڎ Af| pkB!IyD\?'gfڙ5knʹngJOmP4lpQ-Y7M͸LժP.B{E",p7؛^k9{ba)J \#6&(JJHwt}h&h&0hAH?EP#ej%uQ,%rp"őׄ@XBV;XCEg3] (Z%F1nD_ڦF=O@[4DcXupȂ| b A3K ڍX#om*Ƙs%!eWZ3u[%Crb55{2IYmq%e!E8 Jh)lUm6,ɿE3OӽsfM#,-I-qD|_#2u,;Eg2F(Ȁ5>,U_G ȍ佪Xas0:Cz%Vot+ʡ T`ͺnH#"t3 FR qAr`\ KΛt6`e#>ל**^oQOXA!/[D*Xi &åX P{7plH OHN {H]Ynax77-c#*,VäWm<IA( s oe D.̀f̆jf›>ML@`(A5f+͢6oކ13VrS= ޙ0Zk|XF ^20WxgE8N!4+[;ؓ#hG?n!8!p^_'SggMH_@Yk\ S h,m5tp(/eO=E0T"*wxڹ'y<|Rl"諳Lv` ' azlP y+ZhD[bMѦ/K2v뼮9fh{7|*h5p1>@湇҃HyY82LihD_[ 85g*L_#wZ!Fyh}oݣ)Q- /mxkHcG1#IJ4iUu}|*r~r5?_ֲH_CuA-Sp782'3礒%Ħы]^nK:kblQwZK|i$ֈ![\yxa5O=#U9G|;3:2l;lӛu~ulA|Wh'~mfPOvu Xj7™)ker#cFgG8@ XzTTQ:C^Kڳ=%Ǹ6:lm@x-#cw[X܉vPz?8U#* !g8f!aI HTg#`W>lH: cFbyQ>&<^6 {sXV:<" &: e:L:sLv Dʃ6.'"Z[DSFS{V?=ChnA _r\y+[_ny? a}/bJv_,Y_6DU>c1 6H#0m\u&BXӜw5;Ajl3!_{%% 5 oONO2k0u8g'>@גrTe;_!kΡ*}"#j="Vn6(uA^XCrV6&>~Я$ҏߧ3^pXCXU6*kbgKK$ٓ}H@S782<-hFAaVĻ=8 0x_APk;q;'}{ܑ*,c$0= |O POe ai(;®/a}\s7 7ug^KP y<+YO`J{ V8+G{ةSVKLf6YGGX{+Yl> f:n,+mInGF!!{ ѿ(4 SZ 1h O0~^epK3]Μ:ǥP&/lC|֦e Eh]:^*gTi(E32 -%j=){+m}6=Z%pl qKvڱrda<} amCpu*~[ ;* ;fk\H󠚵ҊrEG@ЫUX*[cMl˗Fc0,^088ySe-+ H1K9c{7쵥|ז YזHxae{d!tLнI(BҼ2a8^0ho©g73,MOxLM-oˑfM롩%YAn92,2Wf6&R&v#mG)7W>.YsoEJ@b5 a,Ǡ46V0,jaepHMꆔEa8: "AI\jZс}[ݕNP{#u嗢s9,BxIv=yfbu&AVS24pe~<1_Д*NJf96y B_:Hpp6@)%9y>Bl`<1fxupgio`s|9쓶6.t}(J_ARey9e'q.zje})SΆޤ'rq #(6ߢxLjt9LEcF 2ZNb?j+O0bo6w#Bְm8P}x~^wP k҃wg1f/t}ͯקY W(2;Y%jw]dގ韻I騅-( `Ƈ"HsE0bIkFͨ;Xֻ pxߙ?}KE M7u3ThB-b+d1c8ՂT*XMs|< 9cou.ChQPȚ,MV;%[yÕ+gYs#w/ifl%ޣBeK&]ty1$z*dWq?b{[r)ѱrS[~їc'9TՎ려@49V\ 3Dגx?gw uSWFpgt?D\JZC`LD~ꆐgKce@WTL];Nj@u[Xv.s$c;c)ϫ $N}Zu)Ss<\],AMq'{@UKXJ=Oݨ8Ѫsɞ7XpŌDluPmWbs]t{}Ԗ{E4zɢGNu!^@#DZ`SѸ7ҡzޫFhOpɇl{:ri&i7g1&Z g4oH@걻'LSݹU.o8\Cܶ{8;ʿ9nF+gŅ`JuG]ݏ &!8v'&w 뷉bdB'2so?68i vSelgi-OԠmB-8teF+viWaz6@kR _ac 4M/w7I<5 9ǵf-h5B3kus-[2 .OK={S'G>q4/ !Ro꙯6l# ;Θn]!_={D{W 2ת8:M\#2WWh"!w8dL:B\WgաJ׳2Ʉ_}`l/ŗWw}d, G}ǡfP77eF%5Mrl4Zp֢r4'P*V 8wr1\F)7K>:и6NlW];&OPwp$^V+˸83_2_Q@N0B" a 1^V?!6-T{j]×T8>NhG[\6BfT\R,6]ijMwA-*s\ľɑs q!dj^ZZKuǣ9L K5N}ս[kQ[Q$伿lq_[)ħl+R[l~uK9$i7B~8$sF !TjH3{XTW3M@3o$ORKuǀ91P=z$,5C7i4Bxha}=-5SKpgE{:czxo\ޕ2OKل9&f'MGPwDWze3̏pBb3; A;(/M ;.{VG1k;aO֪ Qw̸ e\jP7c&XZ\W}jh D/]T'4>4Mc'y~DSYݲ/Wd6mFJWHI[,Bƶ`߄ x9}M`"gSua(KuF(;QG#^)?F,geֵ1Q@wRB4'"TSsG)iO#0}{xvPmn}n;,zj΃@&NˠyF_^b(Jh k\jl1|`lxY ?Fbu{{s;,U kK>Ko:v] Ѻ3P i2mL< ! )M7k/5M$( ~=t*:J g]U-ԜfiwQ[ו}2kX9Js/Uv󙢻/Q/Q=Z*K.q8֏˒|[4Y|>ƄdC3X5JP{u``#>PnUܩN*mZ++c+Zr5οvȡG4,}ĬE#j9旖x/Nr5g^:FT66 qKd;nnp3q8,hENVD@Lm{E/9 / gQ"+MT6r4V%rB* .z |IK9ySËTz(ZjUnOY=~@*6QH@u]-\ OiP*4+IQ UTVRKaNܕu_H;h)>1!ĿNJM8)7]mRwQn9šۆ#'vO"J4m/{::H I%7xLQƲ>MQq՛@Xs=ս}ӍF $0G2=;:Wnt[@.$5cݣ02`eq d }-g` k.LC)Ҙ"@8:PUj0 /Q,wm* w;ah4 }ʒ, +lJ׀v6Vs gܷSXL!JC+Y]:d%xւ3%۬Wf~噲ul@GK:SayiKZ`~hěG؏F,=]SAҧƧ_d'!u$-lxT{_V펥,8^d + @\`XK;Hڎ 4M³M2ECI1 $ 9 WȲtaP;O1|\? b֌r؝P) y0pw^)c_*f]~7 2E$VEbVS dE?g񒦚{O@?LIpb㺗R;D6 n-)P>z>_m[e3V֑3enQ+Y[Y^0Sv5(S:J)XYw:ʊvʶ!ːx>&wzʚ>(ˏC1'0v+2eo^blt*-FDž;j}I3EcY )Y)l ~U>}sMouB,Qw%8ToEh)ЯQJ K^LT+&q+(.^n&zl7܃؎ޔTi=C wi3r\Vӫng&wJbrF9tpT\mc#R%:9CF씵seO!0cؼ/=:O ae6ilX3?'M\J-/UU,b%*kK5BTM%z梓'I\e<{PUE&j+UmSi{}>iIݬ{;X19hlPlRQiiLw|M=G}GoJ|Oü>v(`Ho}*#Kuߗ>wǿ8ƵxэVIJ*hTkfW_ $+foi'ZO=.57c{iuTIMT]wv&MuЀާ7yEZ!0f'Uop)<,~(+EVXV-喛ˠ%QP* b!ڍ Bp~D VZ B󑸨X d>x]Tf M:eB+k~, zo:9J5JרxY5F3L y@@V@dՐMi @Y(Mccb8tsX<)(/4^K# JNSS6 4q OOcѰ9smz,6ʪa k|nd٬!U2GW:Qá>5]\SnֽBC+_*f)I? ;Sl~5׮a.q=Küi\]"߆AFmƛ?7-i)=iơ] p|}i,_.}AJK .C|V _dH):V0T ^#d7E(~_|k說!W,>vsPFyݎK5_zbcP{ T]& ˹s8-_ym^DC]oP[J;J}7l5PN)>a?-D0gS+KUE: %D`4:r7@7[&TzM8{[gY ]Ο@TpȱĹ9@4f8tF=:1pn} ն?JۗC܄juѭ/@Lnn:unC\8bȌwZУ尷۽I|hUd A،ptZk{bh ! w9 Ҥ7U>R j9˕RFP4O[qgTw&(} FٽU5KI1M6Q*.9Zb2zql?/Ι{S;JiG'T>Td8ivV(;lom$p?W;'tб.JYM)zv^=]\=zifL{Ta38Zy/_ x^n=w>5=cS# HzT-V[ i=VIFЪAn~ř2lV>fĔ%p/&Nam 4ɴ #W@2H| T %E!՝#]CYTIπPWTםzKNӘ%GM&sVshE !ۗ].ה25;U~ ;u٘&2JV2'){\آfZ>Be#\zfMR(#X^L+{&#țRR振PP#.őp!F מ='M,vO(:dpط% W0\8\B\'K<'D廞dzNݞ /&RJ**] ݠsWP_ iBsRTܠzn6ȈD*-<3VcXmʍ= RЇ O|ITnC6QPV:JmP5Gw|:xBzBMܠK}+$ZзB+󁨯F礨lqA'+M1RicN+27yA<10^rQy^$!aODDcUt zn-[Fδ uS ?{&瀽*W٦jE'2<TB9R@TxYqvd!Oʣz (sAY 2;m)bpwF X"PѨE40K9"6K\[̫X kwizt%|4\.m[_/KW" Vh֬H**o@ VAqxpFT\qfOw4XJNc-kDZL=YH*i:\9:eN".:,`'qeNÃ˘' Aivz\ sKަ ަ[xZ=o(7 gMgb-xeE^ũK%&Zy֥)h_Yzi]5=du_ů0UNf2OG Od ۈmhsƙvF|?o++Pm4TӨ/E2-4{ˆ)&J.G.@@-ʣO|57s';t ~&GvyIwg e@CVY lFC'Qg&d:NQT'@]n;5exV6du4UV'JXZ:D@(Gs lX&.wBcl4 ܹ*4 ^Ef@xehjWYKS d cWŻC~->Y7[ fRw@-sQ'>04 {{؀Q/ƨnn&B.6Y,Ym4IS*Ϥ>񠖗j\> >_Pʊ? lrj$jx + DYb:4Cחzd]x2WƉٮt76k؎5wPB/[O(v(de. y$i̝v&4߳0܀(gojv!یyt/$'Z4~)6HTopTORwB+011,mJ_rusL9`xpڔv+MMyЦT#C1m!Nx#X{-l|_5n_njQ8MV;h[Bφ_bY>PO7$jH@[ɊKFv=Sfߢx_ .Xg*?RkDPp_JgNY'V,"^1Po xS1l@y x:ԓx T5`ˠoⱤiOPe< j?dQzZh5B cCӗ@}lmgB7|GZ#.LwR#EF45d˰R֕+RͿhaj<#_*çX^h=PR&_S#?!ҰYs^ e0O%ђ%fƫʲ#WpMaU`T̨"_*cS#i942IU񏏰m=Daħ44n(aq,8dC >HLe#iܱ^orH(M>Qs=uF2J;ȩ*dNP &)c,/sDcmU7W[ct=uUT-0 J+KS?xvcM}CshPo]& 賩aEk^CcoejK@ϲ0d6b]![纔fA5&G.  ! QgVY]:z)s% 4sIg{BHb&z116ԄuIF~"BD %d34އgU`3(="eHߙ{O_n#q^2\]&G9hc0?P* I[PCce6yl+QNMWb~Hf E.>6\7 KY> W'9伙~2ij%G;2M>XG[l<7p<}erm,xpߒq&jtW??wqe,|DL*?Oqp@oS}$j|^+ޥ}uȐCl$}pLħn JWP/qJY*PsANjC݊>rtOśA4Rj),f) ( J+Z^I[kH\v.;k`l*-5υFF w|؝6JNrK3,Y{[>nFG ,a0fٛ | 4H(46(~c4T'{ }Q藪3{Ӽ&gbԄй>W2^27;SeU37s `Y^ pKp uלxw@T鶣ŹnU $aPPVxt%1`PM8˩>`^a0O#ƃnk202'^)gs:>vմ.Teƫ=x ɸ''X GbΫ8F.?" $]n\z57LƊSC1/wjϧxm*_%ζM?[%ߞtLoNv_wv'_6> mzfvtaf֘2=5s\FtPNAuM$ /\TwRm͛cV4nZ]tLٜ6 =Ti&*`b񽉸:zNz7րj+X՞ra*9⪛zmCZWMs=聸im+#wE܈sNU%.NOmr1E3Za٨ R^9VVj;/y ]}'M]i][VQ^W(sYW;4"T]E/aꊛxEGeaeodu,J[#ԋ}u׋-뾮l~u˰IzW@i&*0›X꜡ -%-1}s# N6j nu)뵬Ӂ5P׊F^خ1u퍼YNG5 ײA@QuOKd!2ta'  ovn#݇-@1 wqGy'~.R)Zv@%фD?vژi? eCzŲ}=kϛ19хn7J0'jy\8v K|xaVmոBKҖU]Dcsx=KU9(rI\Ը?.!$.*nq T VV2lk+j w ֕!qϿR.-dɝ(juw6`Ia+D҅- ڬ7,n'~Rm-m#gh,kށp1!uq^o=,-iNTDͅMz'~&`oT&JU?5Ɛ <ñrMXm[Vo,lzV@@G*;r$v[L?Wy_7oR~#5O+p~"?އt#R7cnx|_DՁ~}8NBp<Cxx\>@xfҁ?RK ;[Mz0 Ρ:9wz~]Fda=UQAED|^`6疒e4ܼbFQ%4YYZˑ I -Y܀/ 2dMRbgQ~qMˎ6 !KZMtdϭΙ#*OD~}"Wطˮu/kI]/7ߠOtHv`ֻOΙkd>WpB=/JEE M@0Lvޛ9\tHYm.D Nj ir'Mq)SfU6sŭL٣|{(n$݊玙h`7mNry K,Herf+Gҁ > qtOe;IvՃGM 5[dl/ggc[q*TЧx{WwJ? ;0ߞ4sQc>> K/Hv:D}VOكj]TMUZY@oB"TSqC9޿HŴO[] ߩ%rg8'khh-.*j%+ieՐz:0M9P@w<+YoK߻abYIQmZfg#Sϖj|6c~NO_ƷDhf BHIK*@RE={߀8!Mah6EF<SH&Z+=2iWB[;n5QXY ZZ .ԁEr]W(I{ xwe)Ƿ]D=/0inqQ t]ub|ծ@6^S歙m䤶?I5oW Ib_丬#I;JL dC-u.eww6*UCV*vҫ^)1Z:id]GWa4zL;99ԓw7ܔǬrʫ(/!n33zlפ"(.bu#`!6δJ6J _Q aăj)o"=O+4j} =UɚoA+e? b~h].m5606Ƹm b@|-뾐8!X60es0T}x#d"gN@3N!E;Y0nȅ @t?N0 l | 0znJ(_;a(߳DY F0BU beN}]B4.-ҸcR-~T+Giޡ2B05oٵ!@E Z hr:,s[;`DOn@E/g=1?ɔkM;1I.{/%=lL5ozWbYNd%\p]z:hC $m,3`wXn*cd(B~L5CfA~/_sȗ,u'MI8}iqXWjƏJNJW <8K0:hɎ^& q4̰4^,co:K.q|sy?66kUںԔ Qc 82SMS9 =Ib'UJb#@| ChG=͕Ӗ`R18!`#&븑nӺ6RHȌ;6 .fx`쨾+5W3v[ݩ6vNM0&V~}yRm,o{0W $_kP't%;tQYMP0;V 5C $˭Ӧiÿïy0^+|n5gxR>Pzj9Yɠ1om Ow~{[0x6QrW\ۍ6,{Y=ï8 0.3i oּl@QjG@R*ۨx7꽰p%_8Oֈ.IûKqu>.\ ٢*'U!^t_f.TYJ|JSY*QqY<b\E~?'}5Yz/3-⒩WUNxOpUJBkxb#L'}Nٺ:Qۮi( GBקW ;(v3>*(ޏ13̢9#Dzq_ qw)2vr!1",N_6Xi\3&1S!nol`@ QG >5D7n$h6Cn]8kZmg1R`G} Ug];=$dgܹs=CLݓR+Mv˟l'#ڹXL98ћ+FUTa\Nw<ݕd?]0)Qi]F#K@ T+QOa\H'JM&5LP}5Y+d&72znOrBdPEP+h+0Rj$~序dg{ T55j%QܞwJvx)_Mtݎn&f#-?]H,;,G$COZQ}X޲KrKց5BꩵpS`)ߍOGr[[~Ѕ#m#̵(,\ _|Ž(ekr6~K32v@~9nQƊ(7c׷Ύ(/0=Zt@3X8[5|wEo9 _D_WѸx ^LM]n};rpWN1:57Pφ/޴ F߱#y30Ev\d<5lIƚnQ,:>.} ŬLT. s*5N**qwJIV{vRU;xl ۨz6I7jmf 1tIrTZ[/hԅZ.M={{4TUV꥚U7/g_8I 2}A/`/NM{+d-o~`I 41ρ#Zބleco"Գ%8?`` JzQ~ɥ=~2$ VQlI ΦT3-S{%G Vy,ڑ-Ulw{W*NM.['ӐC%S_EvE7 (g&[&RC -2NF3NNF]m;{>X|JSϻ=0Wy(%(Iri?i'ćG{Syia8ie]}ĢxI[)9>gL^4'M!Pݙ̅J)jj4vFA^=A8'(x4Ah)lizZV";X"Kk`'tnӘ)--5(5',^'mr=&/w'!|TΧWkmNSb:@ [JQn*m+?*EE)RڳyѰ*.q镺]M'Wy/a1%k NHR?|AZFiEN WΖ-utvq0I9Bi 0i0uhi>t̟)udC{6vHəzrEyȓ:1Ä@Ӂ5~rjə+t>{BD^Zg9cs> _H~1_˞OS@A%u| o+Pf4,>V<(_Y2:xPI[էa@,':U[lbVQu䉙-$T6j JIuR9[cTmf9$#^%$yohAndGl阼XynOr`YkX !Z| -',/0a,fڔ9VG ٜE E:u#TYSM/^j̖م-҄'dFiG.m)-)fMr2[$bXa1~cU9B!$y1+ē :wKjjuHsI*!bL. 5<\Zm/?a7;ssiE0R6-|v>as&6r QzYPl#o[bT~NW%w;hbz>*4851f˞^H PC0?ʨu $6KJwݝ, UyVw_MH27yA/9C37Ry=?i P]ɽ giٶh:\ Տ⿱~OS:JG~~:e:UB=Iځm>l8Hg€ȃb QO㨼HlN*Nkc+f>A:pwD:S[@9wgxmy<[$AOEBh٫vwWj)*Q5xTSEǯ&.@>geAhd/J]$A=ݽ|ㄻ=lAv6cV7`NwW2/~z@WS/: e!Ŏxno:>R8BFk7CghhXbRڇ,`v'"> v&nHA!8Stf.qe.)1ɷ2WpeS^e*S6s@R̀'lt8Dx^#z25F,􊮩 ba%(V6 }CР"P$`V#+N" @Mű$>R(YLý7Syf (viS/U+>|!3ڋh hepx!ɩ'W}R ^gW"QP'5Z dU ,|*ʗweGgrPJM`_E"RSKQSsYyS`rJ-^Ev^#;DWuH&E\?v|Svs>35գ`FO>=(6O< NؽX_@t ?a*DUo )Yu:X+"F(5(1QƱe<΃Fg\slTÄ?~xHajx%Q߿4(SH ~mO##QJ S!2&y1Q e|8g[#$O[n'R^ZV|! cNCR"D $f'U+E@ vOsVS+ ;PG,KxM x<*͈9391ZT1 ͬ-T^@g zE {M+ (ttstSD%fhkRkهٯ/ZZOBw'|oZ-T?gzܵp+fMT)8>Q8=]\M.B0XR[k<*Nq Ul W\ N 16mjNkm= T+FSoC>#G'1NjՓƐ8< ̩*!Dxp76!? yAp.UWTq)Cd${z|$;/M|+~uP*GR-oJvT+T{{*.uj1*a[{b]~4~81UsY#À*5|f{uLЫ)Vl07I ]1<Ӂ ՊD*Os6Ro@4PŁwxks8ېXZפ{}޸_σn#[ӺΊGFL@Z M뚶T]edx2 |{@4 rMu.lur߹4 i]pARs4Գ^ 3TqSea1(>Ȉ4]ञC^(:ϐo V9>WǒD\zrzJa pjAYQib*è։--%/pJM`r&p[)7A ,ip4 ⬑)~kwGYMկ ͤ ȗN m{PTL ~t1G7iiB]h@ ?a#uGvE_fwE6bu3/`w>;-jZ׾XֵE1jybHX!-7h,f΍vc۱xiLS9(^7-Fz`201?$-b2lgmZ=b^P&;ح{- gڣi]{ }\IIsL?Uj*-` iV5k !pa .b*iZigycpZm<5dLZEPEMHg tP7*qƹBPfBSQ{GgFl\ڏ-/zZN:(e]hdU* seq's;bیpŅTN+K8 1yy?TB:KH AF aqE@E$$ݢ_>C@}xGu!lA35ȳWB2lD0J~*jy!3?#f7SY7Ou gǵ鷾Rno#«gn\O[i|=HJw.tƔsh%"P bC؇PcgUw@ )POGNϞ<C=sD; 4BR.wRϾ?I=;^JΞhp>9.+?Y%;'?,$$F }zte^$$>A7y@YW~vxaR{\Y5 5#ޟL_^Oi碋9 `*l)s>OGp_?|Wo*!7!mo`0@qafs W.uY[=er :R]Ou]OJ> b w'mIV*`~'SPcݸ}m#/Ղ/Iږa FPDz WxꥺyR#`eRU)e} ?svO|r?yMrix@{SuJ]T>W+~9Oqʁ1J-G~!)+>vWy$rخz X.1r}YQe;K\3.N%mp">D1 w7g:_1_`>+:λ*ٿ[-eGa.)n_ֵәlX Qmi"Hd/(;A'L+;B~y7P٦Q C6Y>Iv<GKҺxSZ~ͱ6f 5HqZ6jIpE'꺞ێs&܊b+l"pև|bKl杲[3wP%AႵ_bᷡ]wwZ]~tlL{`.\7ar1 VhQw IH)h'GFF2T,UgXBUSHؙD36ÿ<4 cr;$?ťʑƻ>^'51/mB3_CX$>w$CS<~y{؈ctW T&ݓ3&q9ccTAG"f ٝoт|2lj+k{u;:mSj%W *oM=m ?B^F( S.FbkX㑘did'O;~h .'`g Qh,| cŵϩw a5T餏>mlH K p Ve:V9f@6sj}*pf#b[_Ԛ!nםM2F>M5@'NK*_mfǠ4gHT=zݝ9''g3)NZ)T=/mbHoD('R^:*gH4ѹAib7h czȗ˱2*/alhCB6G2fx8q/Ĩ 늩RPKTŞ#ËYi: S%niwL[F!ĴY/MKʍOo:>b,ohe&hT?P}Zn7\gӍil~kOuX^9+/vxјk5 nR:L]296l;m`Sbπ1ƴ~ ?xFl N ӗO#oߎ"fNvgm6^CGWPyҀǗ#o@q@Gb&U^i'_mWs/r~AN`T3\->x//IډbЉSHD-E&UߏZT{oQ Wh=!_Hop3xen_F1f Z߳=~}Nyʳ)~gkjO|^ں(!x*WReRTR}R2qBUWėg7} H\Q..yP(l #fҬreT*WAspJZ|(3ʩ2*U m#X{?Ɩ:Raw\Ϙy>k$o`qr^f9NH>},z/>pł%5Ct':jPxY8zM;Snrg7{9*p]jx hZ |6 NP] ٘'\KyE$*\rU7'z]HJ~*.ɻy,iJ TΛkT o pq?6P#KQcZ-uF Z0 T0t Q'{z4-T3L`FJ*y17")ԳUTW2j Նc3U]Ur/'hs~RJt_\.Vj~Ty᥄+ U;]KH)CZ7^{[ROvT)Rϖ@a!LelIeBF0.BR_$sۋO|=x9zD,>W3I>/W:rJ9~ <7WkUfgr˯̩lCtxvfWr'{Sr; P=CTg`%Tr;ˁv^D=]̚_dtUO=wC{Mr9DW *wh ;ٺt$Oa<[vA=liŰ4ˎ ~k_w˻ Hj-'ܝz^ږ}1x9 /2 /2/%3?J_XIpųwijөiኻC1;8N xp+UwOg9ƃ'Q5﫻L|᜾ꌡ?~2ƧțsءG󾨎¬x/a0>P2#O]Z$Acbfդ-fXK\ۣ:WҹOfe+V)M|>')r>ڬka &ײS̆W*Cݹbd@{?RMƫtpHgP!(Vk%F$Žmhj7q1BPu!?jϐJ5 h8nΙ’ ex)prbKJx̩6| g(g?+X- hib$.F=@)7Rge\`1ڍzG峋R9mæUP#v3Jecum&e,Ǩ2ʼn~ҶH!2|4G!7R xk=&F"j:QRwD鐞ډgxXҘS4듧¶)>wH~7:LoҺF'KE +`|#؋(ڌRc-)Բ gN"5 *F{|:9wњd0.L6K f%PO.t(c/#r"#s`{I?8"%f}N"<1MTMWEuit2g㧫L::\+^yqJ* 5T_qqӷoݐ(KTBbojUIDa}ofBZ^Y c7fّ}LOܧ嗩dzG_ $9J_ɜ$F|ũ0<~M[|FgRO3*NPQL*: Zs,7Ӵ96t^~D藍,0 ?qN8N!zۜgyBRw~inQD=$xOVt q^̐+ aƓ*1*bT2_|u9 QyӨA꡽>ݪz2Nw؉UR A8#휕$?<~3r!&jPpHy]<9wˊ |(~SQ5ש:Ml绻 :Td-(1djλANẻoζV3ŒxdB-mV,* ?"${,Czj?:Rz\l1syAN<6VYJn{j/t=F|.<|T!@<$ƪfM&N69p3z; X0jc)T>?>+K L@0( ~e+!fb2>%,9TBMRyKh# Fq7:şw:|! 6 rg>2j9M +`u@Zd0(̓D3+  }D3`_]LʀLv%bVϊ"k;uU|aECpqB[FD]eПiԑ(W%"S4.ާ#=4hKWĻ~W1 <ۂ|0#s3ȟX>P2BH⛜H8;(=s_|CHU[?@!vXl sZ'-!x}R;_H! փBk/Br #%ĭYjF:*$97ޖ&/?-QOY!ys ݰ:Pe$aPkƇqH8|b1"Q#4>!(2{}ΖC ~dGr뼪ƙI)e/ _Y0{ 'x# #vS?%F' >a#bZd=>M.2$IÃUG;MCAH&(ICC92~e%0~y%@&==Ÿ=a`N{Dه*Y:_r/g2=|@eI*"bx/` _v-҅ .u81RUĺi,# W79bT!+E>-\ra`/̆4inLY+ a.1i8hWq9#1G]OpǗr]T67I@WW$g|lG:Jn9x#i`ĊBsS,9glY|ʝ.JR0:K9b;4Y%N녑[ϻ1d%FVIJZ ڎհ1O\li*(xDye25dv4hZK5蛰e Y*v.⴮=Rp$7N3G軦F3AqLOlA̳~/kE|b-麞|y \dywQ  >߂YIH:!?К7snSEO9&޼% 9bȔK1d,Z^?TBu}bktGp3QfRFFiئJu6ŽÎvsR,gNR_$6^hg\wu.B*+̄5lLx!bA"`1ilDŽ-SeztX2OXpnPۜufj4z`"6b@ri&7(V/u5JiWczcN-,y|;.F%{oEސKHmu #oB@1|_nS,ϧum+%Nrqw*UaP mǶ*Ӻp`5e.l{; ;Tv~ø[Rl\ug:{ɛu]ҥ{'kbOw=Gi]&wlʖJD#+y}^{F}W3"9Yb)ԳE\v|) Ana> ,6)g3g+V~R\QV([u> SKm=^ -'iڈtl:ai@x~Zvֵli~~~:"iH~߫J䅪#u]Ou4N>ɾYc} wzmL:d'ZIs7.֙ړWq`c..v+|RqK4'Nfrri㓃X/0xd/NMf]uN^*HNҴEg4"mzF/^4rlq*﬌ Z{ޥѸܝ~p>6$컉~D d-xsFf%zpvo m>if y<Ⱥbi`忱N7Mx!a xKxgJb!D;i2'OڳȇnAH]ӺُɘV; yĤ1Wb]%έј Ӻv6[C'go+Ų8Ʌ - ?A$s|8*CT^"#J /MdJ%YC0*/tJ'K9?wu]al Ü,e=%Ŷ̊[ٖsO,*BBY-cSFɶ%Z|U/}b5&[]`YlW?0E@v6I$܃k7iEj;S߰;쬜2$8݀(5R\j‚,:[ Qq3 NecoDpYUNZ)01m Qg$WoXi eHƨd2tf{ _=Ԡy w]9ޢ`qLlzG-WW\.of lqU\<ڜon|qe>%?I3\䈹-m?|#!0p WlHq;L<zM/.>UbJN'9ak v%zԀR'6pq˨^T %rCFl~_)B@c{rhٯ0Ospq=׺nG)ZߒUc-OQ|Q<>sߘ+꺻3y:tǿ\-f9(f=ƶj@r#R1q.w=g._jJ~Jn6^ FT%FdBo&%$>x4DVC*in!W@AxpD+8:#SK^qyVjJ9"p՜Epy3}_b9#Od Ãr6υgY^Z;ϵ÷ҺVEuRŕQڛ귥ҺKz  u䎴;/{oRNsú^.Ix#ϼq l7\ W>-?PPҝ⊶w)]ޟ_7fR\y38xY&UziL2*C<1 (>rǽePP]B)GX•93ݔ¥P7W+\#s)wQjGc8C_zrT0c`cLUr4d42MJU9ٷ6f b" t ~(g8l#8[^?ڮh 8$ףS15I 0;}RZNA;s͚#MσK7^K?x'-yb U-<.QcG>ir3!ɍ) WY[y $S >d;+ !"1]JM0E3Z{٨r݉C8)RT%Y"'Dۑ3U\4; *6PLuXj 5 G:db4 TSd)}\ѕJFǙfDk;3kuVr,_!$yV$m/<@&ɛm-r<:u+*O4T]ֱHQJcة!}ʩn4IڈvP #\32ֵ;O4p*moS!oDJ.x|@6CE&d`Jh' t-"$mo p]͗۟{ =HW@-^1Czfv;H'5ee(CMxķqD+T^MJ7?YL?FQT_K;xƤ5ȇWwjd'umy hRJ\ lLWMq6L93Cjr^aLȷ1c҆BO)C;5kO4GaI11kֵW ~DqP۵,f>wĴzZEH£7ϫ/(kwzH#DQt ܁F oѦ75 |r4iЕsT Y8`?}ϓ'}c^ DA'*~,@t̑@=M͐j]TXG)8؁²'2yrZǥ.=kZ."||(8 9+Rmv ic@|Kв S^fO3\Ѐ Z]'8Y u]+GHrסqi`) 3-P|ϟK{4f($vö`5Ґ_ݕΆR^-p:ͽP3G-,ZNtWj!!A ¤<{\.BH6C}|f>ڇ)(` 3<#3.Ku=a3ÿ gOAA S7bH<;MI&kgI:`_saf?2*wje(3YjԫF vΣiXsȀ 2зUgOY؄L(k'񗽢c$ՀV8\(& 97dZ?4LvRֵycҺ{443$Kl\U9Y}k|fIy|Z׊z%S8_Nڨi];948k~T4lQkp0ױ=3q0ʒ 7도* 4$iَ\Lakn;Ɠdh:%DT/Jڦ~*~j#GGk7Ig &ZH?nRBvF=x!S& ;q۩@DWW7hSf4>!)*Ԉ/6σSBA昑X{dXV\6}z(+=>j>Z<w)jIp2a$'?.oI#)^«`xOg$R~q;!ɲ`׏ )EhpdN$.N ?Kf43Sc^!F#]i2TfEjbGtI=Ay!q75/̿0 ~]d1 ,9>QmsI!g.!{ D) w;MwwF:ScQ܅(V:T9:x "C[莧qS_aSgVZ-(sz@ɠ-~^0~bzTOlI ,' hBPHqE"T2YںѮwS(țܖCHg1y3 `vHqPܳnC2GT3Kod WxrPu™ #odxzLhYBܝ|qav-wUthP5vlK_P H\IuBv,-,9nl3q$ki]{RL[rzXfbZO}8I}}cq`O%vDTL@ܴK;!nk7~@>˦_[_Em4qDTp4LLKzʴ{C9 #4}x4񹃪 [_DEaQ7a]+SWz_򫯁`߈E,=jϛ~]}cIB(%*rq)pl F7Oi<7TyV1p o|R/QT.ۨMToo>9(F' TF&;-#H,k ҺaV9O8?/֮JדFvv DHr#xkK>JZj?C'&1 (jE8a2r,.g^* 滜!<9$mhqBkzjahk7Kt`MRQG2C& M#Ӻ6chZQ5r5zMޖ"#:r%T}t:ldy4H (`e CF|9J"mʛ2+)ySZ׵7I:@]*<}] Fq:(2tphN fx^5ޓǒ^%;ېu= 7IE.wWCdw6 ~{ũmߵ<GZ,CtBHTfP4b*;SgsH2v=-5Җ/ធExlG+7_sH9([pJZD+"v# uCҺv`h Of~!QY'o1iݕroK gxnDž~^ED>˱bW4|L^X }ghcv3k J?kw 5ByYYhXsc}^> ݅1;-kyypK?1m+*3\<'*8J,ܷ3j# Jg:-/Cf-W?/ OZkזd KI~yfk WO Wo,.5XZ9 #a ffFcfcJ*+fM #M)LռWTE*X)Xk(2~@vHzO2Q-^U}N,&̙Bli ȩB6Ki<$&gb+-ڟP7.1C=E/ _)  8 4rCgd5)7FOķ1136dO|MӍSٗOb6I{~h2LڙL9Cr#>,'by9%ĊgzBvc{yO&}gcQ% 5Ě][zcFWQγo?*젞}.~~,2ߠQĖ1V/dhAGS'yKdZ/!TX6uo#kr"F]/àzwٙ⯝hTI[7:l5l;;gZkMM#*1)ʵMih]P ?i ON6F4UtYǎSF(;u]OA*؄Ef%rf]c2 !<:7/FF{ze:#5qMý/-IP{<:>oh˃5mȢLھyVx6u}?UU.ǯ=e?y-̲JzoIȳn_'oiêe57k>kXjO,J?:FcSeVΈRmAib:Eu>Զsβ2Zw)=58Tw){xcB/1 F嫮j[=%#H;H1fcO5{3*(,SS"U+nvgmZHT{6E_/lOSel>Q՛Mtx/V6϶|[EmjlV%V5muN{mf7@!'IcV/bQmk?xL$l}Wm`)go`QpֵtN.Lg{[e0N;D!lǃC}9n6_}&Nu~XֵF>Wl#3۟ B2dgרpS"_ru֡1_bsHZb쨋r7pF3{ ׃͆X643a mGdc\|mpSbS| fFT3hSgpǝ6>q6ҿ- w*b,/caS"k>iMA]ʱEBޛ@GQl 5l,V4$:`J4jF?!|>0LIH۴'naS pqAQqT0$$U=ӳ%s/{[UnսuŌU%OKoVK8cObX*A跰E.1n2?ƅ1v^!B"/ _w(>X~6-MZ`Ҷ{b&m"n>K XlZ>+C7 BK\e@*սB֐D?C60Z ɬd+Bp6lDžP^ps7?KٛD&ERtel[yq/7t=O8FE66` QG'lÊ 3 ;5ą} s๛ʱ9k}w PMXVա_X9LbiUl1\z,6_P3҃[a%}.kb]fB cuC}fX<RĸC&Px1ab|cf-s2lA3y.=p¢0Mesv`Yo˺%k:-͙.A4<056]?m]0aRV5ҟYk-<$ys+g/MئX8%0ҚȄx?or sg0 rFgݗytKB![L) >#65~g'elt,Y~>ʊ Q,sr1ҝ_ X]I6d& !kOe1_CB~IyPM#xr4\¡`F B).zFby ܹܰD!@VO"7p`[@VlȀ] bk |>Z(L E(8c !a}4xz7!9+)y ۰Z k K.(2 #VFiC`e *6떀 i jV:wXF::4;w:9[ׂytv 8B@bȣR*[/t /\= <77Ǿ&: PKSꋤa(hu^'ElTpFHڋ<'< ~ 3INu|9M;#[$mďa}Gd8fOA=Uᾂj[-̌N1rlbÃ).|7b'9Z=^Ђ cB, qyA8,{X8l7upI?dF F_(^Bqea>>r/:bךZsڝ[X6!*؝V&HAZb=`Մ4gkVP`IyϒNu+/x DҮ>WffB`ao? א]ke~tsg$:9CbX˝8{2spvK q|Vf.M`~>E0!kT*ː*N#t%8EDm0ufg%ʿ<7L6.0e}M9Lpbg5Y$WeL̍sHMCNJHdcHP `h%rbQOkM]t3`aSejGꥣq.y6 m Գ2 O{DwE y#ggvpƏs~]LLHzEkr=gDrh&$T@臜gB9*.1'@$9FojR^\žk9i\q:m:+~?ʊ8?1+f:SV΀q Lsu#ֹb1V,=@19bFsX1'IS97ןbzI0Ub~[HfmxX ]i:1 @6dh91-?G!PqM+,=nK5pn &mߞd ߮ @?tov7 {%pO̳E(~BnE.ob7wC`gIx%6N $==䝗=F|h3i߷S]=%O&AlkC0Gun U,A=E߽}y5.x`)%FG }w~wl$DD:|TUgUkkЋNR{N p CL_gx0pc ylsu(E{Mlvyw^KL FRB!ķ'ipd|{o;``ךCPƒ!E=j 3i@Hu AҖv4nj?J먾$ևj[źID;a&W\J۲Yn!X+BHnj Vo}{[_7GOlҽ兘źx!C|wBMK:߷[? EEI~^z.ms) +N;ܷq!rz4bE{h~vgU1ruSY6PynHDnf6M vVlBOPX[81uNa@5̓q_9A- .^m~^69]7hWrWa`f`Izt%ݎ\&+ɮ/2l$B%+xX*@b/ukТVھ7&MgUX)TAkB Z* 1`L{v*F`Պb.=&lm0f]PHc9SGri]:}ֆ3Ъ>ʛ+A{+Bd.D W򸍪?vWZo;-U{cR6J1ԧS(_;~X[ơ%F!kI  ;+sTC8$0͡كu啣QEZu{ N `":m ;d8躺b2ƽ_&cRn(V#&NZLNB(I_q=2-\Y4(g_Y\"%h W8:fbi L,ut'sRn]JpTK):<P0z8YuFfB&//7Na偙]Te-ga!O2bZ{y<Ύbuw3v @*u(s=RwBc+=ه)6u!*T|ȁVu:yy[cD;QltKu{yNybTذ2+FC;+^hgkm?}9~592e\8wV8}V rݭ Rfk:p /B3&|_K=jBbdKCh7G|K.Q,ne(CLty'#">[}#sܴk(Vcv@HSǎqįg:߄)L$AV0uۑ8$);N'edkWCB/?LB`yw . @<u(1 X2@4L_5B3L ֑7T!/=^>`sw/ 䵩ɽ{;3ҽ▲& !*>F¼h3C(;ha'xܩa tkK(ѠUzǦX7x2U֒P7Fݬ_F-vz nDd_%Vk2mwX9kn;N9BB{!ҹCnMK{+O8s Eq-Ka'%g E[gsF @+QbL92{}t= ]zg vSO29Y 糰|,<4|.آ79ȓAۑ/w.;B͊O ,6ֳ^|&i!0cw僇.$/7nEf=Ggmo.ӱ~swQ{^ !Lj}F4K"m9-cS?~9Bk7@(4Ԑ Men]MM~Kwn#=swi1X?=FXn&ڵD{}p8]eyD2}^]E(.0Fa`I4ؾ t#<0x2!;l4ӼhO5uvx˦8H|}wԑ${@s/cGw*6d>VǶabx୿՜?GDPd8×{Wv/`hG- 6RG8u þCB!sa t^|kK|;)цL k!:sAbuiP=VS9go4 o.B)38x(y mP^ۛLkW 8wv viR[;PVJс9[&G kyRqӄ_)_P\yQK^Ssfn5*j!3+:PkwzN#_rqFVC 2vmYK!`1!$_8p +RL2W.]ϲ\x!˭Nrq ]o k'&DMB(Iš`pPp^O;/aiot^UD&ϤrހnP>כ msҦ^ < <]`u5A$߬&ڪQG 6ZWu[uHԶYYwQȌA ^|PuOh +Vl v>mtMhd%=30xtx3 y"zxs$sY&ObqpagWMu也2Ut/v fzY?t (S,-RIgxoѼ[w1BA-XnõUv1h@_ >o=~l# W3jJ^_3N~}V+(J`cm,T10d-kk!z/ayg&ٟ3lRr~$km%XL,@7anx8@Ib[jKyhD{bq|*06/;Xy@)3A-ykul~&VDzM\6(fĹe(B)93ƼaH_JDS$З!Ebr}XM"z Xz=/| Fc([3Ր횥|=#aF.x{FrXJnMe !uM_r5`w*bhSȡOvpǦstIǦBo8ӺcYM+1Rc"}Q^YçbxjÌmdَ+Mw盬o7R;̔7 A(^`fax.#3K~ñi2WtmF*+F* Xǭ2R M}2~WWϲ++>=R@'ir`KP$[y ݏEGrh?c$}^Dq ݸ- &OKQB}ϖ8mlmV.XW>>^QtaLf̨ Ts?69v ם8BP*̧y/ ^k^%W-] 3@fФlLKԡ[c`n1gCxƲ~bjV ޡ +2F#mP>IlB} sw_?]`E(xwiq=#6Z6ؑTYTkkO6X;2i]D@+1h>=L}vQ~7*n:f#+,ota%GªGTزXnǾN¾3ih"ٰ||G|V@3kϾb|M_o_1-7W#Ⳳu0?ڀG!| B Cglysd S(8YaB5e4/F#KzJ6ua4NY:o :0 kd4 f^Z_Bi0-E ^M+4e~a$|;]`.0b((ϷC'B+fa9X+b~C/{hօJ"xEawqm(bB¾C.x!oz7߼173- #X7~cof 8?o\ͮ/󔠿A&d`9fPy#7 7ECo7.-wT 2yc7l7xF7u"ol&ox k,ё7jr R:0J Ua1* ΧWW9pΊ|x$ 齷yPґ hR"H!݄j'WC/RxlM 𔲈bO!iR"Nn}8/'uSlw᚟ט79t7%~%_Ǻ|ϘKyB`F3d^z:ZivaBׂ+({r" -plm c>8 tUP`^3RN5Š0"5}i!LW G!!=FS}= ~3lc0yN#?lp-[d#0$]~ Bu%u; ~//0#B~Eb?A_` ~GBj+pMם48c8B +ƱbecڌXX8V\+[ VpPz:ZiVAHp-#O:> uqqp|"(>|q| ߍ8Tqb8>\W >otp|\ ՃF|\/ezxx9>\o >2|/c?|&21|](| |:>Ȥ3@f>MYG+mECSY1s|̱f#>0>fO8c:>f5kXt|, Aj1c cs>h|caXPvS{>###0H#>B<P؁(|cq|l[,>6͈-آwcCڦ_8bq0HF|a|p.9`8Pֹ? Gq8>.+e |\qfh|\ǫx9>X| Ro/' Fsݯ:>^5k3E>A&21|)dHi0>ȤCg|߯L25k2cc13HF|a|=Ϛ}a| sh|ǢcX8>X|, RK GD0>Yh|,G8>GG` F|0>GG`11Ǧc8>X|l R[GE~ccؚP4>qp|G,>È#b8??q0|?F>.qb8>z.+z bWQ$*~~$0/ XYS%+V!)= vǭ fVݒ0CY-b/ϙ3C3j[=Vv-z%E0ql?ׁ<3Wfp${<7+s 鏙Jv; ]VjO4X;H !m>CYordoK F %g5+rJ%Y,=?L Vjd YOaqUL1}ŎLV_Z(M~щs`S譚fvI੠t,`ࠨyL\diPXLg]Y_mƾCJzuu@ĄPpnWSrZj=y*w%o/ jn.y:9 j4 !kmmbyLV&A_oLlxsXL,AK韴}#cqK|.;92],*wee.{z^ Iݾ=e}ed2n %~J͐'x-4[Jemf#%Y;7kОQEAyPD-.:\ b=\Al iko"4;j%L?!3mVkKw?${L 0Ar$. [nǯM/Ŗ-[b'n'fiVoe4-,͝VNSnϜ~8jm~N~7h*\߭>Cs[E)7Ksfu3ͽ1hf)-IYn-rrTgInJ*~M%"^0sTXnBZB Qh!JT,pO`(NkqPRd4(4%ah8KY%Rl`~5"ϟ4I;iа69ƓR% '~k"q.#Uǟ\s.)Ӕ, 4尞2/D Gк9Ctü%~J =9S,7둴K)UWnaƭ?j-h n ӆ\%]|*>IyaIuĨw}IH)| z՟П'!J~ q;^߮>߉7ߜzN\Q}M~KwE~ / Y{.'ȨB$uQ<Ev0<3UmbxS"=:<^cT>= M^t1?G(xbGuwy3-Αټ-?qX8lM6!jU\n`c_|Jhot)o.X0ed%&D?u*!޻:.=PO{ۄ7;2~B]NoA/⢗Bz)bB/˾ߗ2~{wXbg 3pf{_"" T艹[ RzwLKr8o.<wM_߽w^\h_^^747erބf9]Λpy:9a&o68o®o#ϛk[ yR/\˒?z;ߑ#_.xO:H{g/ad,B,}4ЊTKl1.كvd&J:B3;ڟop[۝ގ_WlځUfڤnC&'`/B;~0طA%;^xR^ ӛ˔^l./17+r &W`= M_>],w M//Ew%KhAd._.ho.{:1fAc b[jo)l+K.xK;Ҏg.xK;Ҏg@rGo}4_]4_]21y |B:Xyb} CK/Gc*X-Uϫ~WW4%^]强5Ov|#!"BHt+;{^cِkrgXWoX~kn [Biu;4er׌И'?ּ~ݦ=_XS~k}Oشa}wuK뻫t﮾ZMԵ?︭]H)Ch狠/V FXc͗;t׺'~6}!8ut"fTSEk/Eku ]_7ÍRZ Vh5Z V_biڰKAua[rWE.vkKlI]_'-۝=H(RK)R^\ Cz.XXKicyq>#VMhWʤWL.,b Suq]=Pv+ {) {) {) {ya+ZudR`ͫ sB&BeX 3]aCayv`(\! mnb{oiMe-m<.]>S2<)7U[#ir<#Wv= O^vA(q2[;*VڻPo]f3C92ׁ`nB,{$*HYnyo2ܲGr*8_nl׉*~P@zU;0*Jӟd[auhwC#j@u_ql2b[*e#5?-gLokvS"ebu#4n>I($U> g]{5a@]X*?>lO*OayRu 2-6kB3!l,@f>v$t,m|:,>K}BR'jawIPN[^G).!{`l9~qi~!E s i膤 Ó`7"1-urwE@8O {A&1X^svB I?a !m$3/:1znUb~Y)moɡ25'`Ahr7S/> neI+G!5cm=Ԫg"`VIpRX>>tZӿmT-17xW$UH Ꮢ*8E,srʈXCŶQVƋh9[Ch+ ^XO{:|7U}N KqAk J2^gHlT㡁),k6 Lv*#wtxg\)| d o?=NbqR4=rw =Jc': @˚rRbrzGgeyԶQдƘ-G.$$&!٤Wo%W(88g_.xnӽ*\dJ+sm8rxx?+9p6v$$aHi4l;ZAkI%^x. HY_y_,)/k/{C]o$_*g6?#l~TG| N٢'HsՇd>ڿ<@̎\N1b:C2[u&@Wlf ze 6TѴ!Ordj@~GXNKa塴$~o|BɀϜl{-~CkKUZl10_5FHțNY u) IHȟX_zsֿNlĊ =%P620 gM3 :PՖJHHw( ox x@?hx>l Vo^í}r,e02e$ޔL02,_&$X~C${`ߠc_I<rgN[/~(ꗓ֯[ٕ`bX8,$ucKP+V&3gTYJ >Kmцxvh=3ϊ y" M)+XM>zN3:Qz!*!1N~1?t H/:wzA=IoGE/9'{, {&.Wˁ&^8c(H?^1'yc#?ϥl ?~Ox]~i~ϦJ'oɋo3uY*I~%K;+z!~uY^*>Ro䟧+@W?Dy*szͩ^jAj GS,{;ۓJad?-lƠ#gc63̵w'!' I)ޖ~ڥ5X>.WaoJ+,vV ޟLgLpԬ2ó^ʞl bI,ly@qo`Bv$H;vVxE-}g^ݮcu;qBHRzȟIC<瘮co:o `8q]&0F&jqv#XߜdtIz3DQB5RS G{(OTȞ gc[=/M}Hw eve`Xi>+zh衝EL`BP#A$`m2 -VIgO|<#^?C0uzhIɇSYq#xv=Y?R[?|$x`É3ž>|>'>à5@>|eB|7q> bVff`eggD+gOKH\8V/nɦUll^BH%ُN=]0_Ӟ.|XL{b|۞ǒuӗLw@\hw5Uq6mm8)o iqIxฦ(ڣ!A:~ZKym/7&?ۛ/NL~ n?P+wA1-s?,Ew}~L{箆Ts$㱋ȉܟ"1k?9>0H}IKJߝ@pA}~l'a:/ L]ّClR "V<;lX)n_{6G)[]RmbFpYO +DOیP )f{T15*ductl1n-&ӘO;9,HS>;I:DΓ&ߵGFU>EK&@F>mSb^(-bFj+W_rno܉Fz+33U\~@PJmx`eHXa?iZFkj6So"IN&Dl,b  Π68NyB#_@M_ݛX~Ao7P?$? ?u~fT -?rW1cD" yTg GL#*F+DGuo7 Dǿ]~T~>ugN)+I ݹ3>Xyф+v&ϸ#P_ )Xlr WLmJr-x6bqZ 9vU}?"c|jOm΢0dR21lur}cmwMX* XV,ٷ hOrʳT-L[HXΑ@HP8;hT]HgiIHIK޺/H}3xzO S@T[jRЧ:b h?O2/U?0 US xeVě ~ؓ>oOڕОt])ۓޟ= ս/1_9M\Um%Ef5!~@Y![$&xO>ٿF%k%~ͧ`+A2?+4[;%[b;:08z!JQqia϶lQB7*WH\>䬋ͧ|q|5M.SI!wԶ$靄z#JBoֱ@vBt}<B+ok0!l!k/SP۽@z,{#3%1nˤn~Faӝ 3 z/6R1pgnH )BgkȇG"_?5=_ǁ޶!t~Ax0 Q >yKحN塞>0Z'g=#g:9GJd+F+.Gֳ_. $x/( w={{Gŏ__D?xrm,,o¾CijgIYb4/ 0;,R:v$vK$@hFPtt6@g_8 wQ$ ZYX/hvw,g}13̉Cn>I=5 p Nt׷bO~N؞bd{@#8[iZHc23` TD(U)+Ǿl#h#=5ێP0,[7?< =ٚQH5Vz>iwmFgۑT909[M=|7XmG&ϳV䖾1CKqCqC)+< 7LTX{!H.gX=5^%`e`}tV,RRpZER)VϺi"mJ8@uKŬO=فo)ڀg ζ(Tq3lun"ꗰ] EǷnn3V:,Lc6p^bctgCN:,M,lՑ.cdk,|)(,OpY.HL?BYN%dֻ_@y$ ^Ifm+ΓJuX$EL"2ΌQQ&.hOΝHig y:sgؘ/@Y_"K8(Op=*oNIml>5֕_W 0G"} |ܩ#_y1b6kX'ʈL:PlFqW9zOٴӆ ]:{WDAcG/yϡϣ%lj YX{G qK>pujWwڗ>6}҇a^`A<DW = 65DDU'):71$zERS&~X"b/S`Fi+s>3˗Zb)Y ylRruEPJ>7.>;uvi!Of8,VRGH'&! &K/sGGb{|#$x ]K#e 7rYeI17R4냃2~>=7]l8lB:l yHo줓"6X8_ph t+!B4m6!`jLgJsz:'n4WmXk@9ֹvާwCml  &X/€qa4^;B%s2#`e 躞2 yRiCtAɧBhA +x( &pe| m6&aO0Kf :&,c>&A8{@& VNxwaBqKֳ5Kv "Y_'R3eoq]΀ЎHs[2B6d#4ay+m{ =?3OEn}guDlgMk6~_kAMNԩ”ߛ8Ϳ3h[4?ͷ W}g}T6}ם/a*ҕap!_CܟGQ,Pޗtm婵.GG 桥u~8[S F;'1d_bYكdI~#Ÿ(Lu]W2GLFԞސNWʋ $yq@/wW:js7$ &fq*!a&B9Ҡlχ6m5(JAXs9ΚΚЫA^\߀Q(eh*ۭݪZ(XI%2t #rE[jyI\_[/^5Yj=qGmi{n_U֒CY|enJu+覚xxVP׃iM׫SgޖxT/owꌛ(ҙm*Mb%ϞxFvtwyjNTQ?,GRIhXY8x.ƛu=hbǶĿѮ]`}ׅ6O\*ә)R`9;nj!><#g P-&Zݠ3%tYǭ:^)5t>?-?c7hg;&IëEm5!c!,KOYV?sWpRXZqO,kc3;f3r,{E @ʵ(Q@qj獵H=YSA%7VmTNt3jC]AB_V 4m~RU'NO.x?&uI{hvsAkʵ)]n͠\hME:%+$)_`cS'$I*gڰxQ$}\ߩP I;>^vO.t>/FjB _CeLwۘІNf9Խ{ 47+dծJnx77+(Rnf SdA4ݾ|%;x빐ۦ\u3}H>78HuO? w#lC&fz|V3_{Yx#d O%5rzo(qBuzL=f,G{CUo_L6{p#şIkn#}7zp[C#0)dj](MGvV|ۼM>/*x\m롯hzE#ۋJ~`Le1kcI; 2fR厍/:=1Ui_0Fu헰h_^~CqyssWKmzoqnbZ_^הMhh¦8ْIs{ccIr|_ J^+mg26ٳE9j| +C}TH6tǨku=Iz|x9➅$`b`Emہ魈_kumtO[NIT ḵۤ% :+ݙk۔.+^[Rgrz\Jtz -og跿93\qdŹy<Z xA)I_2`麴}$> qߤ<~4Ɩ몚Y %/q;pzQ7rHGJF^KR?7t]@2IkP\']?skh%)a{jZ|Z Vlrz|Ax_ڒ}#} - ~Ó$ Hcjء=ߑ*WV5^C;4F;rksw+kb~O@4.OO4cy'Hu~3 LT͘%YB<;<٠.2`|Y-{/ aM:] ~íOQnua-PGT9{O$g5{g.͒w})4?,9j/[}eJr8*3WX[֒Z54Aa1~(SEfP\6,NTRv},,lTP׃Ûo{gLY-[yfɠId[KdQ2mg\fyŐV]|gU~>klU溘l)I2>ih],B[ 3J\ yНfYÌi(]R=Ij]u+yZi R^vU/%Zl]~~!\i-ptm hQf/#s5DM7#i8K;'{DA^lJj^F9d]@Gi fK|v V?2E79Jw@ĘJdL'_,˜`;$g52R*ol m19N6q5EP葕چ!X70u4;a7gy^:?&b:_K1~$Y:P|M A'7bOm$YE]3[^`,ԭ~Vq}m:YzeO׃םRz{e#A0F68j2a %lI'Vd7yE7 i`r9[3sQB`37κ'\L.iWᾺכ?[b:Um2 z R6+}.=8it6 5td[ܙ}t=BS/GHC#. Ci O]ar)%g}s ub["c,SFۀ.Vqh>IKN)r>ce;rTWӥ⛡|?c]GUH%1_Ul8N saopS*M]r^yZ)zKm~[5bZ;)T}sNS9J-?@=XcFxge|y8:yl5dTAi&O/SQhT&7UWӈWL^RzcTi,eȨfEC_в~ -Ҟ%P P gx}Y$b_,tԸ2!lT4ܨ65*r}+Jg>ȯ{(DɅu-!9Spm/h?* L+Mo_Gs~%.2!\Z3zuA wo_sO ~|j;ؘ%>s+tA8ftXos596춴gRxd_xYT#̒@ZeUU2H`MF>P nwqs;p;A7泟؍T; d\16LQ~P̟8/C1B [:!RjycӴwVsUl6u@m9Q.:kߢB /h!ryk4ޮ~ ^ w5"oQ4 ?C撬xEҬ)eB'\_x:6s]$o^Z'Dkry;[ѽy{K&flﰴ(/fYoN,.Uٟ߱o&ip@ma'[hc_eGw }imڼ;ghf㢦^ `M;t:7=F685-2'П,QQ5[k=vRP't}/DO }ql' ̈́^@>/?A. [oEuz'6][}vG?eW#Z[(KQ}=I$Yݓ= %1yMϛ]s '2LtU&B%Й^&_~5@M辄>D%TѬ=X{= m: /W[DoEWW }-Z@V>~е! D{֕1$^K,_-YmD(B_EyǴؖ*%:@\D[Sz W* Oc"U· tVtg@wݝQ޲@?ՊNJ7BomA*Џz t>+ o聄vzQ%V>p; ohL7"9BFM7njo LBň~U}\Bӓ7%U1=nGݝ=:Ø^D7ZlE&z9H&I~@'4DQ賾e@_*g^BG zODś5?GلN-D?(&/EB)Z"],# =^zj+L@ } T?-ukLjDr^&wb|@ArBx!ߏ};=9Z%_}YVp&пT!mBzGN4Ym't>B zcV =*Зk"B/J7}@˱wAyzI,zCЩE-û1]}6s诖ha݇Џz,ZWĠ;?}Sڵ&FֶLBtw:7o,?/OBB,#ŔfW:|> tV4-]Dh >VUGQ zy&[,5N 1BB,==N/RI@X6ѕk=П]a+]V Lٔki[#4:Cncн:S@CC_MkN*z,zG cݘAA' B-c"Fd@;:Wz1Jm5OF璜c?}/_ ˄~@ۊ>SB_O=琜 t+`NE.=`~8VD@gлz7Č_ @يN}';Ϟ$]ܠ+ y^s&@ܠ@@t!i&?cxr#t!_nHLO;Mr@x= toB$K) btj;> љH{wbJ2V@?=Я:L2SZlE6\:Bgsz1r~@ѧ}( vLXjcBwzD5/F(ЏH%Z_.,B˄zlֿBt@F L>N v/1~ C7h!@'/iz0A&H.y/&s G痬hDWDt?Bwz' 3G_:ڦ&h\wGEBO 3V4HeB3B [?4[V =:Y/Ơ?!"M^FBB-@w&t{B?K[Wbt?LK M}9D_%>{2=b A$B)#+7%Fr~@RL0!z: D~:&U6/#.^%EhqMs3F=F/ B X]K= {[/ps;+hWD|L >?#BZHt@_JBNI.(G :г OSh;7-4_zyD?@M.&xB;@ln! ݕЯ"J8b4`@-Fw= )s"[}fW1BZw"=З+1-v@_M}vDՙ1~uh!t>(Я3Dу-D%xDgvƴ؝}-!$y@ 7ջ@/z5'&z"Dp'l,zI+߄^("\ŎaG{ =I#Z!]o&z^RS]y1<%,B=/o+fB_Ls: tI,@w!ndLs>NL=DOdDoh1c2~W~F{#M}R#:/‹6r@$>H\Uqfd^YG2վL7cF ?@di+ϺSo!n6OzF- DpuL@XAl>;3E8"Ž@BR$md{~ g%B !p1| >8 $)"A@@8N׃G7rok l D Z!)D ~ JPYPB0 r A92#" \D!@( ؁:w[]# ?P;0 $Z9E OgASp>aHX [00." !. U"Bg *Z/$t= v@mDX @H"^ BQjB L$@sO#Tc@ ˉ0 @0&%" D pO$T |D1F J wz0W |:{ 4e""CIPNKW= J!yga!|QUS8R$m&6 d"@X !=.B<Bw |PmR$-(Nz$!>v!.@xq3 } mBB0M~_76w~y.|s}kڿYiugu]'kލ{Aҵ?ɷ5v_J7df2 _ա!03")2'pU -Lka=Td6~_<9~6\#E:˪0uIŒ9Y8?XEFLŸty[BjMz㕔I1Uby"}AQo ;aծ-q0M0a=XB|Sc˚W2mH`QI7\I٩5(%N*IZN5nSo:&KP-lJgIDH[23k`ڤ}a=@L{G7$q`3$!JQ~ 5)?H|ץ1_]^b/V^^^/O mwB[=)IbE%guhNw |sUmްlL>#ӘwW ϥ]+)0tF4㟼.ӎ gTIg+1Ч+F5"6lk7YSHն&w /(|,F2 IUX m=- 6;ovK}bGG4> }$xZx:nb&frbp I-BhPZ:bj_+>vV>pV  xifst]%F{˚wzOlն85AOJhIM7sBўI6D.CMпH..mCo6mYw뙡}-7n~oN°.zey$I*q|o٢=$xg5.tŲ EJ6S3(~zSqn_Nֻ]=Zgխ(I;iJTֺ$cWx^փ9͞$x.*y0P'qWL vVvքe!ܽ;ى]jw5V7,{UjoqCwsSw=폷1qx.*`d纪 V 3u=X-IR|gY6ѭf!\Poݮgl)RQwg,P|[|[m)Rh[r[BU7]j{M7oOj\ݾ%* Uf{gCJ*K@_qփf|N1[yGkOjjL 3K89TNa—Oa̟{n;@ B&Ӎ3Mqr,rM3ou9Lu<|ғFxJ L ^z*4UL=ͯE e/IۓM+'*oyN3o5o0F}F1p̋q;wΎvV0"Ku'nԚ9DsEa|)=\,,A;Ĉ6bb;y?µ]Q;H:cr-j.ʵ]FmM #Uo%uyDט+`N6 0yzf#n?Nʵ# Kw0_70~B9<*x1aS0ug(zs$-ň6cv˒Iԫֆj0ٽgN1_|AXL]<֠K!Pp\ڈZB[XT3R.UQf&*$HQSփ|!/sl kc|72Mǯq5r e5٢b'Mm c>z 2 983¸ӼqJڵ_Xܗkdf&;m'$Iq[ćhseKR&sP)~2_ U ղ`n~7]8z,l+G0`(X`7 {$~C\|\0bDX+Lϒt fzz}`wj\B9>.ZcYY?'#n M 1Rˤr0j ayt0/E*'k$;N(;+WͼyB _Ko > n]9v6=4-glFzYer­F޼tWk:j%* I1nC٭XChe[\s,AhY3ΪH]mfoׇs| ?4ͯ͵%̽*۹znwrmn[yܭazZ]v\.c^S9f45*oGJPan_6ꋼ˨<ވ'& "T,T`y"EV}q`0K%&)LQ%2A{RT얪'G6"3ZF> ɖXqk˵>$V?lB}yK#j}z-ÓF? Õ!Q~@)6)ÏWg0 23~{~n/vR :It97ShygKњƌfH5NS7Am>nf_R a=ئI_j%\orJMGZіS?!f34+AzE_~?ʰZޒ͉k${fKхEī&K>_E/;qE﷠qчGzǓ>L{At+@e>'*_CtdBNqhq4zo%uE[-?}>{5_Y>9Â}u%QLDW>/&hÀ~ŅLMvI^@h,i@hCKt]d-U[3g4:?3dNu)]_g/p>6}1cJ>;pћOBi/oLG Z|m<?۸of.1ۯ/mA3IUIw>?N>iv&f5a=8>??rneMN!ť7$Fe0߄L*! ݐ\y-zovLnuo|wVfhA7żW?`;|uinD7pKS9OT4bM~E@X}ЂEw,N .ôU.[w7ß] )q#R(85GdKj_O"\@V}hiY5:-okeXO49pVS{\փ5Mg]h})4WLOpkk76hR2#}yq4ɝ'I+"ĩ)iqt۲~:e:? 1"%|eʬ8)&_vtyw<|<;R"eVBEJ4EFm~+o@&I|OvggSYoc쌿. f}e&hR\U`>{'qȎT7uB7HϦ+iҸ.x])tKq|92LOg9ǕUuO}B%ij/:;!ɝ緑ºg{mTq0e9F-IMqKj$ޗ= zH\G噴< ]/mߩ'k`=Ԯmr|J@}7{[}E8z@9VGZVnue)5 o?fѷIBF.I~m#-gZ>5Gh!IE0r C"SWԠ cv 0|&U s4LHYRX*@@ˤkwH5ˤz[$a^( Pɑgf(X;$IR%M`,Z n;X^z˒duN3t{ AssO#]9MU g 'S~Bq|}o㳥a=8̅?S[cm[((;Nh,W q f hNq'gPzNݒ$랓6y&Guj=H?i_l6:uvlK'q׳&GgstYhgujJZ9Q VRm\@CC|Z@sU[oN eVOy8&ǘ1&F-lfʳQ#"OV}?Qg+-}:Z(}cA6U(/YXnhپ'}I-5I6$5r.PwbnO?)|϶RZ]^twgq]/4Wl_lb>}7s>hrtĸ}=ǦD]$~Aʛ&Y.>7{ߴ<#U#,CF?|[%Oֶ 93J[??GG 6r<hqo@Zcbt%ߙ##b[{cw~Qgw/N|cG bbƙM11K rt+i@>ԷQ>зɒ:L11%K|xYoT͘{   p7xLpxL@ c$A"&Kڹ@sGð|T'zg|#NoYium:]`tJ0w֜DqքZ1}5sϐ$yq8+?}QkS[.6̵Z ̞{g>w$MAk%Eqc32dx_\:{Z8#[.Mk<m]Fo[;Wd0 [mi=&(;?W"O'Q\QsTkEG- N2VX .F7n,$Q< 2˞od^0. aJ kS׳;XEլ] #mNWFx{ &v=mB+?* ;OⲌˋD_`;jyGg.:_a=CXO.; ECd I7^n(κS7]v~Q2&a0qy+KC|CnXnD\ Y}"-ȋKa>]WԍʵW/:O^5uZMD~aMٮL=j 1*&IsW( A72ۑt뺓f`-ƾ3T~q8o5x; mL}Zx=M@^ Hk++@-ɉ;pz瀲_Ѻ&kGZeVi1($/nVwlI="PQV]TEQV^쎋V,x܉' ;UW'6eiؑώSgmMV۸ X xlE]ԋ'0Ԇڅ61;uw7{r<#;Y x.S3㹪Ԍ(CF 4崟7j}ߨ1~m*lzv0p{ }c-LVz)&p7*xTWlm/1/ЧQ.+)yvֿ_6co{lrn 6aJs~)@[4S3W<=q+,&Ij-u"ע~Nze @uS4GmfW, gag-3;N$p dNc|h%O`/G>Y%9P>L1_˞c v+=n0z0z Cq=c[w|$[5[=7=>~xc==޾'xMuOn_4뭖p|?P4|!c̸8<.>74Le2q;I:W\3Aw<)zyNj-/[؉P+p;=倻;M\lj^eQRѷ9ʘAq: 1Zg'zoNqJZ~C+Htn"\~TaFn[ƝLS2ϚNt:լ60M+ pWum2ō|[wrN 'ho)TҴ#A1W+%Teﳃ;g|~#%FİGLqR49c[]pnkegO /`&W]s2GpDH\-K@Z/gj!Ljl˯`J`RYEW2 u;i.$I& *!/?pYG###瘏e5Yyy k#nN,@LͰ+}l-uTCL]ǖ6Ae'0u38ԕsRZʕB%UhݘZ)U7ї^0O8^~bM|Y6{íp?e:HIre@BĵU"%$ 1b3^尧6bG0曒jx 7 RX `!wF;B} %N#eVF3֒y)H^r}C 8X% wlE$r`x|&L41}VѻHOo%߻uc`.Waú">L<um3a=A>on|3?:-eo&S5?C~许S 6!]K2-}7طo1C1*A}Gcb,[:2m_נ7XV =u].wMeJU2xXXO_ mVe3le(}I|7i s770\iѹ,GRiOe@u=5;v-RlƷRgÃj[=jhUPuY3Tԕ*Fs{u"e>TsT Vy^(9 }TqhuW*7YQ& fzwRs֌Bu/mC/RFs%n Cmwl:>ԻK;[dϏgKRy-]2Dz%x*_!AVq(S3mM{^z#mVIgH^,~{vҭl{^X#` s8sqn~`ͷNaZ*?ݵ$N%)ףM/W\ |NSeo S"{%siV2 9Be]r2_[~Jº>Ŵ,4p)@2tf) la: ԬМb>Xb$jz4z;0ؚmumdå؏`  :Nlw4}H~OTIҺI3}<& w4ɳ1&y{6(͙W0O[Q[ ^r;FO.@ szn& ~pٻ6Z?e+me/22z\赞_?@6ɐ#:t0xV2ᠾ6mR lD ۰ egeWb' QnPm5>0֫0aJ|-9moY|J6fp#e-A!L@C\WQtD'kuPьp}XGNL3U5x0f \uJl.}Ju}.bndz") \W݄> -Q`4SߥaD? Oo:7Z7@noR#Lԟ5P&gV2+TJuϭ8@U'\.|AFu.߇8g-X$`&kd.wU*U4mhS&oa PW prOܶnu{nENThAV8Qnu& UA =#աW k4FHe1)q \C956gRaPd<dvDө?}ӌ5#5[V-P}MqGZ[6<zs,*8yi+(-05$QQ&yKkPeFѴ^f73"4/n =33{|39sϱhEh͚rJ9hFL.Bʾʐ MWhhos  QjLڢ=E+ o%+1*c=)h|\&MԶyP[gb:R_L[eeR_-Xj5i|CmȢ2X_~,đL@eWij;~ i('U!O*~)wwIfVj/'9pTDX8n }"԰3,F;^?Y7))pLkn@FPbV#"F5%|*pٕ1˔D۶1E5mDTmh%k)ܯ$ڃPjeO642Lgsim-VV[S*HQ^;6|W/`¬iq ʑ(yb#Vkxh9٭U(FÍ0w=ȬoE.rufE ZWpNB/OfoWn;4\Zz]e7yx&LKޔ?hKg+yoNW}ޛ{?\3K$V{fQa`wƏ'QlB厸bLC$4wuu~0."s-!Cm =o&9cS٦3R9FL_|~|u}зZVV1%~f(ɺWҿ?ĨT:dDJ#aRsGAhԽ53v3%cz3bzD; I^0 Yl-8nXCQ8K+vZHZw6Zu[)X;o鬆KP.\{PooBiU(S#Q %7fT7?Cda?x/Օ[rd>H5lfsۘMGIo0c|_ 73^gW?z Ҽ?B)-G*쟊UuT"=ݐzmw ng.Ctfb)PU|eN.6^BM5$vAk#q{s u^/CNYۻ+|ibDfQ]Jx/(L] S4tg659VjjjW5!kāwxԩAtPV|]Oꔌ 'O`=m:lpӄZpUܿxEe7p7+( g|s0~mf6fK<Ǿ3wڗ \'#2pL?Swޜx%p?(οÑ*#{O߹fdc#l3 /٭rvN $ vx}d ⓚ!o8ө`BkL! ͈ qxyOõ_VTP.(}9p.G :$69yw5:۽eLRv~Wi\Lx0q0Ҙ5 >E~QQAFIbQBy{84.|< WsXp/P"Zԣ'߄m>ԡ4*k88_Wl#ni^f%~!|\tq818BZDxFIvb.Ă)XE2$awJL&&qh}躍K;0G7FW(;Z8οH술pL״IHvD#ئ4.!3q;>{,=9`.u3I{"$mG:9? v&1Je,Gs%2XT[o9_5k0N ko{H/Sksڄ B}H SR(.e8f ,'3t 1<fPf~ƦP9(mՂ >WRs9ބ鼢Aa fE6\G-?-7Z$#i=2qmt{jcLtI*y(!>ɺץR{^WGdN:`b(T1q癕h;q9jEj,zCg9+"KI=8 R,pYUD]. si}ktwAZSYKhIk'lcۚ+c}KJb'm$|z}/N":.54pIlX|[nQǻw-}[қ}1~ 3Wc&!tUe:[I| -f#3Hnt+qj@˰_90SkC-XlcQ2 Nm!T[H)HYOҭ_\?Td>m%gKL&"sٸ8iE俍IB7b*X0a.B̓a=&{a"zQ:4(!IuXJ6K7P[suߣ8AF%҂2IS${=օtnBC-'uBΌ<]9.4'+Ѡzt`X+/mI/eK@w?[ukw]}`1{OF2#ʿ"_=j&\zn%soW{"-ɈU8 i`aY.G\"F- #ʿ*=F4~)tw_?- \QYؔq_S%]IJÈtqb%MkѲuk}!ĵ)W9XMi7ncbkC*PF"ϵh޳o|1KR "z .r\;]wKbְ=s8" ܃wo8Fmّ SJt-={ wu#*;~+߳,ˉE8YLY\8D(6٣D&050b;z4ۘ=Ļ88Zܣ Dp4q88Tq^zbz1iMM`#a#dĻ B'x@Y\Pwo=P̱:%e)y@yXi*yWx(Wig:ǑDy1oSO؇숒5DFxT?X@3Tع4"㷺.2W(lNiDąx8|vD@2ϥy/_P)A]NWieP gˤ8wv #A:82_٧iĘD|#Tu.`\Ӽh論8~@c >y.tJtZ% B~@\! D9 Dg} >vxGB!i{NcX⩊φ铈4%>#h b$l2~t*ZۡV{e0*A/iރiC}!/(m彚[;+j`ݖ˽Fk#9 8غM0{m+HS75nKjݮj>7b 2 WՂ!nWʢXo\$ LBOe8cĈVDL DLɈ>.m>{=Kۂmw 5Ŏ ^T>r,̻8OBpvVS3GȆ v DP&}qa[ ~)b>]Q+ b%J[WY'[tg:QE2>MZA{YPUH!2 EE>?/=g\V _8 xܿr~x@wZ9EM5ڝ-Cc+{п y\%Ðlq-Qod]Qo$m*TPy?)Nh-I=ؐyaLil) h}(Vk`\@%lJDkBoX/ Lj0umf6EϚ-7ŒX"9|Rd.WpF[H!n>;.B,g=-(mZ) Jv{y@Sm6{ܖdoRL\żc\( B;׬zys{w6xkpDD0 ÃS`}'DpmDh=MI]3w%bJt`Sz̢ۉ2ٕF3;e%B:6"Cw;nMO B-^hևj5n׼ԪkDj#B]"{TYWEޚua{K?'~l+])1=E> Fc.ϗeCfYN$;"l]5^qaexeYJ Tr?#h߸ vK+J22y_eve=tK2vCm^Ƥ+kf~y]Jz99^ *k Muvu;cT2,Q!Ş!JaS.Yj+;߮*Id98>g5i{2cJHN;n$CYX&5ӮUÇA`"]+}#mSyC9Ǜc:gZ7bFt2Lc.%QR)N 7FոR4=&kI6ƯͨïEt3<5?ǁڲjD[%䣟 K1]SǍsVT Lfney}ءӀJ'טLƭC$GΑ$~mZDL *b"Ƥ1""T1c&ߒKf\y90S0 s늝՝;(\ u\sgsnlBO9\>.gT Ma׈ا)VKe$TGOLD10xZ \?Bo lKU+hCq]>"}EĻ/^ge7O':Khk.Ézxg8ΓQ 7-ir ֿ9j LuXJ{T[-wz$;x}Fo<+z#6[3`k4kba!6"$z͓%?4fSesb+- N%GG;;6Hp,iHINXsa"RqWvM5¯}7ٝ_;güng*6:I/b8^WguXGZשrbT2ӷA3u $|{Q$ϋpwòٱNcm.g[eтeP؆atj %MW-jѼ=I̯ňsso:o.H~K`󅕐s+[biy9%w*bwױ9 y#BݳKn!$WtBMgd+ڤaLPS2e,cSm-&njvp烲ls{9Hqd%M*9v1(GևOCpʂiu1QU㑡"1Ss?i_erp5[9$/k8NHp6"X(ً!1('눷,Ol%Cҋ2xo5jVz5yr'WUɲx&uFSguP':}329(UR{382ޗ;L @r>dL+i2{#\8FDD.݃2[;|'=\P äE1(7)?XƉ Pc' MAR;G0pq >5^woӻѻ.0w]ּ:wÆ98mbtevvO6eXl=j!wM%u)3->*኉ufFfoF[O[pk[_̭)]x5ֽ[Fen ?^4uֶڭ빌tVAhc'w6pX6OruLV'BC/:8iB2L.!^;>UU(!>]h DrYkwj=+j)}V7ll+xK-d6.Guk#b?k)rP p \Kt7 #Bf-ىKm#֓|M"fnoe:eaw{A,˞ĸf*'~"fj׮A_׫]ie48-ᡦ␳88)~xW(iec}"&:Aӎt᩠]4o1a%oA~xP?leYjpP/sm}5\وH=!߃471(KeYJ֦M7n[?^tH%}]ID#B9x|v ~l,Ϧzm*5@,IؼlDhC\̄Ҝ{{>1/LM/,abQBbQmUWlfWE:_JSe[OzQG`ԅ8xLI4h+L]픞 K߶ ʁ?xH~ls{t3[QkKh]]G ƶ y%K%kPpJlYYe9둉]^3 X5|]2f!>7ᔾߩ^i 3;|PP,AP@P_Ӷ,6OG?Af8/ijA^q5 6#g'ĕiOaz %װ C-i@bPԍ7 }W()ЊfhWmҪRdZroK."ʨ݄3j_1}ʮ)ƴGR|BUR^"iѡ tTK0jNmb3 #]9F}o>N…H c$e\Vj_2~o??;b6_6j@fVтo:"DhFuBj}[ lwfl,\=ՙqE)@IND[ǞR+" ϾXe aڛ;>rS33ti>ޕ {;"%2iA_}!L7y_Z_w$5ɿI>uPު<_ g4ڋ/Z"򿈼ZS{`/B ~/Rn$wm$(?0$t+9vpdfYӑ^MHeC:Q?]lVq4i#-U]*bӀ!+稏ǰ"S5l4X9;!Z3}gt9?r·G4Ľ\!.lbшcZVGUC$"B2*9\ۅε '/*0uyc*CQV>U :I`6KkJb=4kPKeNWKuN&eg%B#~YV+P(5$sX*(һ?UDi|rղTw%\/T-IFjNKEiaސeUXKt"Qg==W5Z ;R8%NҿXG=J8\H s>(kASn,@+ҩ88` [qǾ">sYi|Hr{8:s,(r8fb=Z #EOksҥ˻ekRNᔖq̕Wd|y,wWҽ?2o7˴WlBH_V?VLCuAH.Mp(M±MC`}8[.'Zu#L\>}d=AwekW9T7 ߉p\]!K<E3#۶1X"5"NW1?w۷[p"->&urY[Tc$Ju_>ĵ uB$('Ijs}D$aO5,;,Ys~YADwҽkbgypCkcr "8Nޚ.M_Ŵ'bӗzp|aLC>ϩH*slNqp9a|jOW'{pP OLSDlڙzۆ|a߆⩴a.SGwwpvjW{RU,s`L5 R5ATJ^36DeMM("`{lpxz碗[Y>;NcU@ pw /*M>p/\pa%BrE ^7xMfW_=un$S/)yx@v}_qLUG{DLDp|aj3 _oL$q]'ਥvK }Pqe_j?Y=P>/g%%8ﱄsFl9n2Rӕp{x*_qEyxDS櫧s62%[sSKu6SE}Sp?;ٰlů8[N;WNMvpsn|aދ[Q;:l9\) ɥs:VGDHZ9q_z>Z g!1,MlC딎J"&2pw:nZ'Zi({Gx&< BtkĤxxNEN5;Ut'ZxNt] {|YϳL}8긅ӧ?c xNEwjT64\5K|螏Kt ty B[eWo̿Y䏦nFzN59өel@jIxz# Sa. @&۳bkP(];W{b_'ڇq 3_\ނc:f!괢(Kf԰߻.c? b_xAp=]}wpxcPӥ=O)f.Q=1rfwEW}-I5V"˷]v2QxV>nmnjVU GDh:V;/i'EЮzi+Tu)8k>l #`:\#j>~0X0ipiVOF}XIh#hBwGjȖ+vb kcy0zbvwFҵej-5ɷVt6JwDԴ*H i|jHNAO-hp6Y 6=2L ۅ&P5Wb$U¡a *C[ p:rh^a^n3}mc 8OɝK%|F=~*!ʳ3_|@R&R fgd8WYSR7yaI >0 -TOM=~w0~vFyJN(zK|ji>{Ntdu 3hE^&W&tY1k$*;0I=!d <%Ei!qO9XM, dK"uQItj Jv nvp">A)wRmd'Ivz-'ZP[+<6Anf'_^}SSpD~pJvĻ..A)}Rwv Vk3\-X:6N=Gދ3n1Q7=z8o4Ñ[:7bzlTZy0K{-F76z}m|a-y0}}Kb )d]h#Q JHX.y|5O6V# M-XW8;R܂uQlճp/Z1Ruή=YDhsoGwU=# OlCW̙^GRkpcX95 }ϩ#Nz y{8 0(/,M(G+0 ݥ^GeM>^KW9nIG: %8{+dS;Z_u©s}>:WחD;Vife/϶RlƘh_i_Zמ٨\ }[FՈ_=>1yDƾ Bcv>.4 ~rf]#`eQmD~ 7GuI|b&5wznbZ6_/MJ8RM;i_TG`Zb05tkH3-τ-Q#4-!ϫg`ZƫϱB3-+jxͣfZ ]q5 8RMj?4-p.t%.ɉ'UOH5-!1j35-'BUQ Rǚkkq 15ADi)Њ|EOu lV wUkh ^-pi)nr86}*Wzp//)ʼ֢{TJ%`}_== .PDF"~i{.. Q:,N bߣGk7î]l&؞{!&AF vľ.g̰F\bصL$5^dxen: f Er^)zl6ʈeoR쑧t0[ uBzF},%`mǎbfh#6.O갭 ;m!%ijG([,4K -0ߊ˓:M!f(#5+R$=v YJX`:Yl{Gfؖ q9VĮ|B>nk $Gz앍!llaی&R>: vE#`;E2f1YbǙ^|Chog(vU;mhK "vcSl;NuKBR<bW 3F l bc 6ʈ}N/a0X3 vےb{c} k vk3bOa73fغbǾ`Om غ,)6clE#v vڭZl;3l<K=؅ W&+bc)t3 گ~cM^_&a ;bc//MېbbqRs? JuCU7&/71Zu'nb vb 2"n:_aKECJb'Rl \Wb#:l+a8QL=67oX8~*SlCd)Ӯ:(gL_c[Cl=)M4>gxeϲؗ).:C#`[~b6P$=v>ac0 ֮Ǧ0Vf؏s yY_;bWva/ a\CqǮdͰ 1]-b1{ͰC,E0زL$`*0:@vMx~:鰓lK3lYd)0 vlChfV=+}fatf`/Az{ C$tcPl ,g]8`92Y gcͰ=r q&k=v'!llC$'(TGv4o}׈d_!6K4)v,MxدaL{  /SMdCͰ 9bߥ:谧> aa^Y{K(v:] cS@3_Y,'إڥ^0m}9ېYlWu3}3 )~*ĞIaaϙagBa)6[13+Fl+(ޮ>aXn|!%ka2اͰ/at[@] C~/uQ^S3[WŊY9=؏l3Y,K8 D}V-3r3 %mKtX~`m:͐ve>Cl[^6>>e{;^}m,Ac[2f53 e ЧSݷ"a}0ǐEe3)vC:l{y!ӉeQzl;k`}?g aa/f>ޑ,6bg2[&y NC{76c"3S qi71b7$l-jۡ,v2cW/a,1K bSv0o"9~<=6&a_0bW(;!7M&XJfwP; hᕭnO0؇̰?L6`c): k`(v[aM3|_b[>@S}>`bf)vsk.{p vtw2;6.l,vJefR] bSl۝/2.t[U`(=bi6Xw!~S4ög(1Y O} wX,V0H>do05Y+;O-~+mf]?΀b8=6,4.jx/`a5^75֐b?KBͰ2 _Yۗba0f)a`o,Gl`Ga{L1"1ާ^{3uaH\9m+1v[b_cc/amH Y{[ydv3c $ۓb?®o=<ƀ=^YVzl; b!bQu؇l]3{FXiqf vdCK16b:[ y3]c`}7)vۓ262BՋBدD3 6`K[rfa/5DB6]H {$C$ijG(zK]os(1BzC'ͰӌXH z8{]0c0N۞bwaG0؏̰ K?1_ v{;} C0Ql{ta[1;s!6cD]`Waό1X- țm>`̰'x0^|];w;mE؊!fXH 7鱟2T3aNKa_dLGKm 3W{[ BNf9# K,v*cs4kg-)6Lm`aώ0`ob!vYW  I7&chئ[v;aøf#:bG걍l;3[ }Ŏ=vx (PRu3LC$|"6Im`̰gLMIucb{8!n-,!Ŏc1Yf vc;1Ͱg"I;bWClchc(f d~b vm: 3Aq;b v,l[֦XFaa; 6,v|ľH`[a 4vcd;g` lp{憰̰-XJbqzl6mb7ا)`6vjHcctSv Ch`Rz 63;C bP졆:0ޟb3V#=`GaS^6d Xn aaX,bqv28΋ eW>Z+c8"Z Vpnvïf$!zmv@+/4;`.WlH^!yg =iLR0q!c1`=fXs ia l+3݇%,vc0؟LO6n|`y :lK; h0?f뼈]>`5ndmo"Ŷca^37Xʯljko;L}4t 'O+awjfNWbV]bff# _2Ķc[0 {P76vcP(njb^r;\ 0رfO&l,و c1X3 DMaOP첺:l/bm`Ü_0\ĶcLJius!b_1؆fA:3[$b!vE<NzP#BSCɣ8}HOgr{ ԯ8#|4) =B7%l' اH ZOpw.B!`'JZ8;d϶xVpLT3N 9p| rH&g[[1p>7&A~qCAd'.i2zu*I ܐ^M.M}*w|F@^@ \ nM T2 䳚 J*_)j7{5*A>ɖ ^UeC52^W!Rk Ȋ+,@Aޯɕ ʷAd>kT9 &qQ _dg Ś 䃚YzAV5~L;ԑ"z'5?TM~&P)Mf*Gjwi7L&A^TɆ d-gUyu$CMy*5Y^M]+A>ɷA^M krxMY|Z@>tTMy&IUƀI+k'Tw9$CMZ@U _U9Ś\AM Kr: /MM. wUC j R>Jȷ4Y C{CtXȗ4yE;A}HA*{#49d&g|*ǁ|X/*&j-wn.M6o*#Ade I?Uy#罪r&Y[A~P 5 U9^@ ?ڭT4Ty d&m ?Qܐ5y]< r&k{T j]JUYr&gW@~^ i/_wȩl&vUƂ OʪPPdCj* O+4m\򛭪1MNOC@S k;oT0^yv*: dO7dwUޚ<*whr ȦM|dM.بJ\Mflɡ oP d׫2 MƃlAn\ʺ !] <.M}*@>o@^Ne'2E?UN&th)_} 40ӫUr&Mu@~*wA2 Z@n5_k4ȳ_r!șC BCA TGI j2Uy;> 2RwB2y4yT䓚,ySU~r&B*s@>,K>Mwesn5d=WnYԹ,X[o-7aW~D Due$I!INtwp|ႩuSa>z1k 8ؓID!FX:ϙ]N Kxwwi#_Lĸ}NX=JC=ے`uhaZ GDkN6#ՙnGPo= !+;ZSaI:R6"ŷV_Bsy)5ǭϡo&ޥkk .=%)xkN93^K4 sGT4'%;RltXp4oKȢZpX'%B:}G ذTHxw$2+]9W;Ŷ+sQF^vi/vĪo.$q|aFE<&8Ζ(7\.{ߛ7iѻ=Gw#mxOzhz5ZIn!%6 =/Nsvw㷒#W)EY+hb/"8W.P$;$Ws>ʰ ĝBh#$ڋvC!Bmx_q3S[t;}[\62ft?h뜼^;ܬģα|98οZêeY &??Kǩ*_q`_}mNk}IO]Y 8ZbZ+dPEli$Bg &;ZVk{Jjۘ緇+]9;NZ9+xUetSp@Njꉷ*'q6"pu3u@ -K nM\%oD?SODQWyݠm|N"D)VHiM3 [xۭ;k!fD4Ŵd'0&OeY_EꔾCƽrn~}=}B(N, 4!V%_W"G:G WL.H2.X0}`F\i& 7 )DKMlx"[ӼeڛJ,GcÿXS>R>0&˦BoSЇ"4r्#;ؚ$bك-[ 5$tbD\a;cIDhOyR&>TO+S7+y Mg4X o3c!Y" $mË Ky}4%b>}إDD@]ww^⇱>OPs4CstZ͏Li)Jٳ~ +eú6MC-2&~ ?2Tg dLL4hC{܍"Z [.[ TREp|w2]}pk{|>eg +eZ' J{#SPI%?VB }A-tjis4{ wRvKl*_&aODz0>xjPm\:]&y adH%r=9FH2TKq ܛ 3NXj, Tx;Z~v2Y˟xo {|~K.=%7NbG~mccƽN{_ҭ^E}|izP;8) oT4jMWYt UR\q2^Ta^ժc{bӿtyq# v4 I&U(9@*Ϋn} *n} yҎ6qx+L?ie/9"T=CRW4WHPX)?Oqd|R|THP16*aWV!c}LaHV|}R=ﰜlIrPPWwWB^= mm45gb1IY!uݱa}rMx8ZEC8 Yqa|m[O-W8Nx~m+N;ix<NàNÄvyI|B9\Xȱwt9b-x k6v.uVj `0 +S-_I3;0Q9R 7!] 2X>$.P:\XsZ`s:,?K{|&:I:.SIgBDEU2ɥMτ e1w {|;띘H4k&&r epKܤvUKp#MhG_k3EMųt!\8 daRLPߴF͘(֧ +<'m',w7ix%!!*\U١ЇhN x a¿XdJa˚[GP.U*&.FVgf_JRe! ӛ[th5Qe ln O\ Uoh( Z0>s/O ^ZXo $nf6vA~dQP 2Y{9MDl Y-̃8F]Ad\4,޷aMGb Q1uFZʕo0nfft` WsE[yX}$eW~aĬ.9lhpzv>,DX)' $"7ƺB(IL#,0y= E%PW"E͝Q!N䱖xmע|``K6$6"==kc֮S=ޥUKj'Nl+#[y@ S8fl~-x)9 Y%ϩPLJz@/K1`]+__"Dn>:qHR9,9`0P4OiVNI{+4,˺)ZŜI:?a'~#ìm ҭvYM @`Y! K; {cd`}z966bأ2$vgnF`> JyKoU,LJ!&9_RV-g굿W FмW@+z'5k0cd`R:PҔhqY]eq g6^(S.7Gkt%2%]pyenȥ707>\a北_ V;5+AQ\id*M95_IS4L7KM/qPnjTDf]dKO;@Glv"ōw ^b<se Y4V]/uY W&ZltխKrсL2FX9z-=`}uPLwWHD Py"*/*:gݠ0|QrxzL}J}>z *ӣl /ǾRdVP džahCs XUBXs{損-d ؒ,,$4ФYa7=8SފN^{iHNIXi l٬bfU٥BXb|&ʆކv|?S'b_VtNr>s0'oTi-Oߘ[c#(K|-YmaMWٝcٰ{WaH{b8kD=_X?>Q~PrUސqѩ;O~Qðjb+&r֏!Δ\Mv ZI<{c/]XW0=qVĐu=dl~q?"̪x{fJcdTvK x.@ hMVxuse%g }!^Jꂅ;DcDDD> r @aQ2][IX/NX2| '&äLRz%(\OS_)¿>Ɲ2<a҆8 Kn_iv"s}bSA$IZTNZ}“VO٥Ep6 oaR/ePUK*`Chr?.Ci S%#-l?y#kr,|j0^DM5mIu `0Ix$II$IˁeKp{?Yq"w3y #խKdD (  Dl9"}&Kx7`oiC+5 6j?/wzPX9@\pQw nISNj>䷨eY̻͡J, p6b|B\%"gUxe.SU݋mF#83E+~ +y|V/[{շFy`Axo7ŷH%z* hdy9*rnwߣ\m| SSH ;?(qSAϰ|dO篝K_;W zf4%˅6Z~,n\E`[9oSaƅùr8.3eBgb0ODv̶҆;VW>Wԯ)ץgK$[YB98'&mwgwSK zNB $Rp hS=m#{`0z?InZO((,g9@S{h9,rR~`L}HeRˎnpG7(SN`\dj|aIZWm0^P4%.(Ux0h~7DuT4w0 ,|Pjwm;{ \3E~aNN*JиdៜhK>xh?[X79c!q$(S'EbiU*B~T7Q/ TpnNe)yov k\W>+6<_he`#PYzTZ~#vNT`Z5_+FczX ~=-Hސ+hz0a].~j'GX=>ܷ?ܯ UF.#SvKi1A)nE/+$'׍z$ͺ-q'o#x;% +IDU$܊0wtpڊO|& a~!~NzsyPvڊZ_U8pU(T D*A$ U0Eݣ'h|}-y'Y煟II_}ؿSܳXݾ{ijb,^)TS Kl|Ґ#n]=5%4$yHs&S#V^7ݠS0HuӺ^;I؉}+맜&,ZYFcT@ap5<#{>CXi#5@=`8,…VI\lS}SI s.AXjM*JNKQ[NJw|K:U{"5wĭ׶5m\[m_Di+~zw^8d&}LPNA/TxD؉>D-c,$9YXoayua?!52v֭JX* e*] =5PU#WvmvИ8*?ژϚg@P>u;Nsy+^OG1FS/?H˜0Ga~"w+XS#"sx;7 Mx29І;؊34P-f-YN WVJ9%_*V2'}o0 ;oٙ~hHLXjSO D]401N5/cWw͎Feh0yȨC@RhvU|VVgnںY:ëU<[&x + N~u2 \*φ'u :qr#5B,o>Bm/_,Gְ;>qD`SXy21C|7O3 y3d!3?22UŃ3g@ĊSD=qf7to1j6 !vDa߼Gwiæ1+tIˇ1W\Pc5<b bۏFݾ`\: ܀hXqsɸ(`S1NShV!k^-xaJg3,{;nd0Q+fmXgCljY6eSBX'O&_;ey/@ax{eTsw5;sڈa_h'`'HkXEzUMmk&mD(,Y -27op[1Ӿ5sXDX務7򋙸s*;̔ db;DK =9{?Ktal~0&0HX)4N4ZV!er|V)owrnR",7Ģ;W]'%)O3R! -$j95pBJ ϐkh.=JZEb'2ةuakfpP0⧾(SJ)2ٌ͔ aLM`Gd33)/@a}TGMr&r s F6;}d|#<75QҠ_h-xsZp;đv|79S /eΙ.*9 [+i;4-8Sߔ$<$i˓@oJ{K6&K ~=2tNږ9] ~-IskvKr[eigR~.ȝP5u~d ~j:>~037TS{#zx8aҮB|߉\G@Y֔?UR*E DOCo(2\hɔ: 6Oɰ `)G\)N° ]h$O"2_O85e&DZTaIo),u' }g`ΐT(UfՒ=3*BJǞ ! /CmeO5#AJUʮϯEtZnQZŀ޵GmtRao@nV% > ׽I@a#s^G_&4\+-ldVv% -YR*Uj GI⼡Iq8nnzJ  JfFS/TS*ºN8>0>pg 4q ˆ.Mw\šG=:E8諓r!ձZ^&߶o|(4k 36_2vy:0֢S2а?V`|bO?A!fX59uUe?ː#3V|\Jmt_8Èaz_J"jOW 0*'gǰrR0UܛU:t ; s|z Am*15J酿JJ+4,.zCsV=Uj1?$AQƬyY'zNҦ&(BVϨ30zp5$ ȡB}'#\{}tb`r^h@oךI:#JT߶}2tV@o< v%БG|k;5#Vhޞjֳ 9 VG@}.=+m#? CSEwN*̯1`gծк=s{6} x{OfAt3 l7= s؁K;/I( m<ITYCW~u4g}KTe|H&Ʈr~WVr#os˗)7|#u|QMh>Fυu(DQ7bרFUkdhJ[%FR8lAAh£JI&ӈ<ڄ]$j23vES]O%^DʫOҺjC#4V #s6懌dGZ$/Dφxϵ%`9Gi5K'bjXS m!I߈ Ԣh{e0/\[kiG#s6S;5=NO;9@D+{BwhO'b^Ft(zQ?.Eڗ |adWRzh!Lz|}+`Wύ_fTE6TfU6,Uz h5d~}|){nOWFvr\A.(֩µ_857_Mѭ(b/l6CKM/60 V@߂aZ$JAN1ܧ%t}M^.,uܶv1٣5ѣ"ݧ-Q Ia>s05b[X۷fa~\Ktg0zf}ܛ}v`т/R`Y$gD \Hgu [m^r?e$ԯ/P͵ ޳00JMnBx?(gyWx)v{f;فơT} 4,oniAj9d$SV_/ 0!">>'ĻސK$9JVJDSH#fZ KT% Hʢ̵SBVϋ&|q 5Zp09Xz5{KXiQCQӞ% N*镠]ޮ4{L> pb"_cS9]E I`-Ӈp.!`*Ee#^7K8K8g_/ @0`Rt v5S]$4xj]m Ϗk ԃ#@=mcM 2 `Sh3$w>-2(|^rZs< '*4;6HfΦ2-IJr^&'$<,܀>ACe{;ădcg(D855hͤN}0X- zjȫE,c ȄSW*ыÓv|~[>x+3pVnLN~:D:kr=={A+Z2 H>o_6,̙LؼhzrY0@D]@o( jE 4pҌv)JB!EQj^{Y/W議gKlB{&;$oG(S~u><~3teHq@փ1WiHYt`"OYrN/s|N[qQm(0W-ǰԺqQcst`߰ڰ/,0ef]d!N-0 QZ q }O,kh>5ˉG"-iOMvIva?c/qk =9SAÿK0$UôJК0lmPhmHߡjx-E$ # uDpÃt G}17.f0)e~=:YҬE\,\՚O\/ڰ`ꁂvL+6@~~rzSU>ͩT@hD83Z@Fj%ĥ50z*h%q"Ҽs+^J)bޖBD;#Q$HM HB @$kWCjlKVN\w "E Ƶb(xZE& n+Wzɂ?207$CSEp/^? SZdNd<a ¼W+{܇Ck>KljCO ?בLeipzEzoxq6j]f`옩o`#G|Jz{/ HY@<5yA;AI2ǰ)@0HF"ڿhǏZw˅xXG-,(m4n(S|)} k+#$F6==%dL!!Hޑ5`!^“}+&"$ڴ 5,'➵lu"XYV,QwoWܠ& K-wJ 'G"ё]ֱzŪ^Va|#ȡfCdd 8x^$,nyZ7Z2^]U$]~b  ᙇ p⡩7Hv2%єEhX4,M~嗝',ۣblȹ͎ӯ,]X)Qƫ׫c>V5V|C)JnxߝVZWZlf?}%4|>$yLKlY![NPX}9@`iO*ASlob+@aCR:+]1Quh)Jms,#>KN }S׸:\nۘbTա9""C*#IfeɎw3"ȝ}mrϏlWGNA4-6'^~H} $^D"kHtLy8Sڙ}ꌳ&@W-h yOt s%ppQ,Sc{jg9Gs F{ yF_ak'IWq~wjodFM9z[YGM2IH(!~vpR) Ρ ݴx~N{GOxGf;NAٝ%OI;ʤ_"w\-WXi;ofRM@ IyͅOYχ͢i9VZ@Zg!-ꉂb}3EOzrEse's3^׿={ lՂ r k>M'CiHC*(Tڮ޹*bz5R?s[F6sϐ7/=lݑCEYD=7TB%z;L}HOwѴJT´"ǁzd:V(VQD}pRS6`G'YFd}L-eq ލL*EݭGؽ[H* (WC_&6\JbR w`Ӛ>sg֮SWkd/P/P熔Ok]Xx~ىhu۫7ugG(ȼZKYٿC' #p''t7 .֒͸-I1k.{ ,RF߯&Qp".~g|Z~%v>UQ>嗯I9<)HVae[ׁ'@DpfǬ\ǜ|3Nؿs )ba_'%za =k֠T$ S'^E}\O@=|9ѨM u +egץ `gΌN+lN%C5D|JFĭ)6W#c"iif@T X6-bφZT5%U+j>0 ڭ}ufK{#1m#Ko< W6#`ֵLe$/^Io#C"kȨjwU.t)J^Us85~ͨj'>Lo(?q׼Լ3] V`,hU{`$ƷUף܃a4IQ4kd82/[w:&.Vv )=;q*o<8L@Hڜ*/l6{R{.] Rsp%3ڌ20'>ǐKy2\>ϗ#ݙOv:3lxK9m'HGC l@ (P$a"rKE .>T0Rp;?VT.lOcZQ*pnC2r+#v8:{#eHˁXˇ L1G[JʟXVy ůf򶤅 kIlU#c+IKyͫ!r3.@wg e hkE[6>7z~ A3nى~W@ lBK}*/>UP$PrPzӞ He=ڌ\(D{,&sAotU)$`N2 |&"sޥxk r)dF`\l~ C2[^_R{aVeCPKSi³AᘙSV(֐W;|j(vcS9 /AzUڽ{lj}0!-̇fѾ ~YCA&B~} K}=2`=lѦQW* @ǀߧ^$5?CLװs]L[*hzAd!nWψI `b8N~VebU_ïbhJ͋F$#g59x^1J7IGTv#& ¬\ ٟ#G(kHém|ɩi4ڎk&A52W*BˎEЫULz OfCcDbkeGڌC.RtB؉' < zg<U"-)>aw/iܭAok.C{}km\D#KKtfd07Dk,A5h,^ r}R[ x}H4BW4+U["@n;blpXkC`AnS }r4VF$F97$7Ndpㄷ:9N8ic[[C\J] 0!a-M=dWSxkCv"c.-!0Q T<ΫwRedWﭸ J¾х\BҘ9{#;o eX;.%aX^z.)HG3ۋ(0ƫ6^7,:}A<wu^`je20Ӿ9J/ыF7a9Hy0ahح KBC'Ef==G^}R3rR~IM& \,qz| y}8{1{ԫ#iT>U7Ћ O,+_POYK/8B[Tب^t?{ey6k.c@'> ^ũ(RJ@o4HXWΑ9limE.ғؤ _?FX>%uT&@a{swxm[O}H+d/T… Q]C5R8Y#-^ ҵ:ى<v5cInO !p\oj7u1YG1ܯʣ^C/ @@ǖb7ȅ*r `}lև`<ۿ[X9g 㑧 `si12ec*4ory6M8o;>y4t sanڣ<ܽXf/G&Iox  GQ*7Bd!>=%(o#쉎ayI p%OL@~7d\H,-.@赎D:<]Qwz-/>YvIQaM%My]S:J&VIUBhk{4ښչPq(?u=N Ha@#maì5̍³}װ~14tǵ-_jE>ǰS푤 *tu2ȫxuuFC-_S[wꡣ]BEY0"h~>֝_@HvEE3 TAu[SG*,w̷k Oo*aY[~u" xߘ7n rFHMibh/e: m=ȶ5t`{c#XΗvr6by ߤkK+#F g)Y`~~u"P@ w liB%@a_ݟc?704;Y o[>1`ߎvԱ]C_JfzUC>.'i5$Ăjnd|3Esõa2hHPSe2nX귞hKe̫U(y1fDϬ^𙵈G[+Ssz^95"piXN}j6$I&ClZc3ڼj|?1.:u ;ϳEu)J%eva_*R*]}ԺJVѳϳU(PIv>{ +ߣhS?AĮ>mljd$Fɫ|3*ƙێY&lE5,bC:RJ[[} as$$o׼ZE^`gQA [Uh5"F%^Dї"Re /xRVПi`9jԨ82<}'5;7XUK@& K []l! `Ɋ(r'`;cت.jҨRO_t.1Jp9؃f^IQxj,ؔ E BƎA HWWZ:BY<*`tmfEqdE ׃Yer6eXGYɅI]S+q[[w$SE*,u%e2Zȉ>' !a0j-ƶ.w}8  j[ap ۽JV'1+pRwV=Q7O.وͧUpz\AĠɱ/2?z#@ZJ$J~hNWsdZc&:}节1 WDjqEq)̻hcf2Yfhfgf61` +Yvprfb]R,ah6Yhf߉^ȣLlxnv`ڌ(䋘 `Qϭ=1Wp [=gmu  5z7`H|0xz$->W_-m5Ɨa M:WiDŎ G6R9Uk:(y2brͪс 'dSl]Maψ5C)7Y \b=[F JoW]ƫiX$,uLDEmq C\A܅mÉ8AmmGH8{Of%o^ȭ^#ڠhƐ;ѱL\:oJq+Ĉr<S;iA@K$_'*Ae8*|T,|*CvӜ\Mh{c};:? uFu֊8539~91SPѣ"aE!4$6EG+ `KJ*ҍRsZEh4 {hޫ'Emꉲkeaw><c Kv[70OV7RHSm:/K]ɀgzjZ6,;6&j3#ZI38#!tA;x κ()='Ж!Շ [ 6@%;h *Gt`zVn֨Œ#A Kf8 0^8[%O*161Dy.iyL_1f)mA!h!RV;AaDm :KhUͫ8&BN?Zotp.Ӆ~b2'm̆qv~}JyY I{/K}Kf]ŷ6[`-sD9Yq·lTȶTy2[F|>koEَv#&9u/*"hie]IJ r?8&r?xWP7SjneS:lSe)0O Ќ_hCsb_Ԑ|>/0(,͵$5^kʍiEk!+;R rk*IM,Y+fc/A( u7tZ#``S4{;IBpG9@(#wBbE:Qi^HcKRCn$7((h `\!,u}~?BhIX<~1xD2N ;@vIt}$G>BDw|h6^h6;NVe䴃ͫ&Ћ)8y%vM4quZ*$s 89XΏ$T#(,x(=A:y$vQ+PZX jdh zMK͞J G%j%jZٌ(QApZ.y}B!NNBԂ"~0vt ov sSd hG4A.݁ 5i?FC|͵{pCMT)Ёn& BPY9 Z^0ikcDh9n: f-QbkDƉVŎ7K'0 8Y-gvF f -,݁|=wn5sj_iv 'wwcBnTBr6h\F=fA ƋbVΝ`,=Q-/,OjՒ< a>+(^s8G5ftDsh%YM 0]i؝ ~sYB:R.v/;߮"n}q8Or(0 nk۩tMs;gn@r:yMUՈWZP v"m+H<*!E%5o00 v S}Ú);%aNm zsWz&=H\:贏|l\[xPqj3+kjz}2K\/t%1 [hD֦iW6D䚮Kd(,>WyMaRN"cSA3ad靠f adjy"Lv tp?O?>wx2<> K#w?{g@&oe&\z;F3`jaTG) @Fe৴ZΨyF=^B x>Fo)[:o+|DU "Zsaoe+UcCģT/65?Q8dU9=eH]ſQߊ*Uh['~3}&cbHn[F'tgT.Z~<ausIշzG)կ:@e|I(,ujhj}N&I-|G$.M☳$!|G[idV\dlOBeSY:f>\dl׊"}ُFFmj&$˨{+>+WASmn قnV'(>M:AOзphΫ'DQa-륺oW+ Mp8:XJs8-lR hO◜tp?Gu}ĊҷF`PFpH=)| c{0>}GmXZo CN%?<&xf]Cst  ު"㓙w-W_䕾MGJoDx$5z.]nn]WjԼ7F5ΆPШ8B?sD9?8x xe|?a9xtU4:tGqxE*v 3f7hxYY‡TY*-Bby%w-\_x ڰTCw-}y2q|Py M{x2p¡)k"g\cdg3 Zx&3};; m b=}(;ڡ/|+LyζsT59w2g`Dgtgiqkq/Bgґu89RPC &bͯ磾ڮYEKQ&dOfG1BXjq~c+QpQX.ͿؿrMخ7v%F](LV6 V}j@b ,V cG@r\D '=wa 8-n95>j{Ʉ`(?%#90lEXr~,>?GD8>r'ʨdG#~(zb %LtYGlM$5 [+ S}T0< #BI-FJ=>,])0]NꄙeDjQxTQʘ^c!XHYkp >\܉Q >+>rG]T304J`Fg uo #:\'ɲ)033mlJk븎d PuT9(+~P,BSw|RBh,p9(.1\(V(0Ç)E2\˵0cɘt&8 aT@G56VZJ>BL+QCd|bQ5G#*vŚPCQ1w(JkB9H#^2Fv0M6Z\G޴oǡ ?{\pq0(Ͽ`ի`իCp<{~, 'ǻZ!_h0Kؼ(j ȂeJR2'g.Y Kgf!Zj!^;O`+t͵Kk'1m-BUh+yVi/ǥ?J/56H:H/u#;fL&(N gxNgpz}(x 985~6VzՁ !Ck'H2^CDSW>m[0$'2n:d鏃㚑 ~3KN~maga7~`Imup\hwX:vHkT5k dAI@^IZ7"II|$kuHf$Hݏ Ġ׽" d"zD Ȯ)=CDPd5tMXr@:?:_ڍP,RހaFٿ~qZ $ÿ(9`Xdez-ɼ_$E2hb)!-SLfe驁~41_tКxyt +?^>H HM,}(n3yPۭAXYa"2JՐ1y6ġ( aW'ĕNN\;j h,|p P ط#Wȋ0k$" iй%5Qw~:w<2ڱ>{2XE ElPe'P80 ,|ض9%#tOH>~W.X'ߕwwEx~}=}jiC5@~O K}$\x]x ^]C() w,2Ot. ͒p9q:'1Oӆÿ._1O4yZGbR=B(L2}=ko &Sf_ٛ+E?VDˇV<,mRFzf1ۈҍ'8^fVhސ֣u˿WvȌ/čpBu m>{ƞ#9y{sc4Jy(O8\Yi8a mP;ҳZ}F1)0 +O!t\Ϯ M(nemP9 S}-9+u i ?^-Fs9S'%Dsʻ6UM}< O=MvgugO#_Z#̟u7]˃G~"w]pKáe%=1M,9K ui `ةc7;gwY|GLc5hZkKKدQ*@ͪZS%d%nP5X~h/ti A%:)7,%vT0Y>Ç+ U RJ컬Vl[G*S]k%e[3YDW bzÒ{ uw&P:tR!-If+H᣺wݷQc~c3nۉA8 x6%9UI?7~t&Dž%t7NM&yj<ߢs_ǜk-9|ҏ&Flufj 0ӵɃq'&Jo#.Mjy0]vq L8Piu;w֨dzK g;PV}%I~);{V3u4٧^mloc/cqqM);Lg;wWl;{٣;38F@av8fw`GK=WV(LWSvf:{rΚ{:bZN+ntRr5~@BSo=VyBeGsjOS=n+F!4 ! {-tx"WwkLөuuZ+{"c6G ϊkp%U<on/v5Kی[ˋ EM%1Uqu٩inpD/t>ո^c\[b0]lO#(L$>2J{yCT[Jjٟ 5 PXj{ cهߋBAgTg;7p{g?Ho/ϳxOIc}U2\Y yp w7D]ykuY|7>ϖV3vF(,u6Y^Kxo$B6Oh5w:y6ؖէ /(Ev Sɟ~НzNA-륺/7ͥTX-7=%&S2 \ևt+a3zyr&*a;e-~(J0> XdOZ ѿQ?}};u$au+Bh~r%,K_ue^ ?CIRigwR[% tI<&SQa'uQCT Wa`P0|Xy_6Hc| ! PLˋ(^6ۈ@%XH+Ϳ#1";\"-/@af&Yt0и'SbAEr  lhkr3FkzGQX@F<0a2j~fcR]9MF^.bjXB>-AKV>dugot.̣\f( &hB^ȇ2H_5 dO2I`\=QIUev[-÷Ѫ̒eL \]4UkSx߯4y-FS%1m+Ӆ! PÅ*JUD#s槸-kHPM2bu1FR;c:Z塃23wmV6uf+Kf,ZŒQї)u[++KL)k Z,cYl)y㔰~T%.ܿw0]7atypYnaPc\+&$j%~|D)Rûgjy|,KaMX]ĹPY2}sd.ͅ1kK"‘(TW/ v%ŐV|E ^Q:@} jڻ.Vɘj<.|)z禍 `(9"L핊`vC(8de.y!\eKS%!zJ\&(_fA[dۚ7 Gu/~Ѫ>«:V8 Sik'̤ehU*FdqDUdլpM'=-Ç0EFN6 Nan67 8_wt%jv_#gBD׶¾6"RP,`q@+ފnyHATxlo5R໤$v7Lmh( Ood_/~LU´i}>g*F06 c'Y6i)7"Ap$VO_;A[QA+K+{_`]U_RZo"bP,鋇tE_GW7{?w1 ҖfΤgm{~J >PdЦY} TZ+jldZu}lʃuxM2%hپkk{hVˑy/OV_}银1xB(LՒ;ϥt^pO\ 3Ne빀t=T K&y: v0ɴJqZ&xc( "-GI+M5eBL0^cM&j6lϭA.W2OjHfdfjl(X 6O&NbXV@'v>%gbƋ9##<]Ϻ/kMA޶WE6dcęz:A٤@#1^M 0B-fw/}sT _^3vڞdDW|:g8' ꣕=^٧`w`xb]/z ]LruUzBVb",GΗ8@{;P#ob? z S}@} 9ͣ+!CHs,|* ?>LA|jlp /Nt6>}6-q  穔:O{q%M^b6Ҹ?*YEK*£;DCv3)b~^wt`q6ڡ(ik6Bk`=NrTu܁*Bvԑ n)$-UŽ"y c fDvmkIko#lV6ye__}F~<V8LfV.jaB^\k+`ohd<ÔH z?\k^.~@ E$@-飵vI"E~ƜD8,׽XWK}r`>hQZ̳F,YPX'J7𤆽#8^Vo9U 07rxS;-إs!3r͟פSn?; E|ϚS<]a 5a>c)ʏ@ ͭ%Xz<k?n -_vkN u hVm$3'J%C |=H#6? s-t8ڌo$#_}?.2n&Q{f*X"2BS%녩^E*a\ ӛ(aªBމh&vMu;gj*, O}(^:R1ly~Ϩ֊a;6kJ4Tj` |Des$jyy/&\rk|G@aO09]ChlnH_xڻvs ihoڿٿ݃:> ~s,~<E*$3m[{$r.:*3|Pw(c"c]ao84r]d#s?KR?SeZ:0]Q:@aqWOSblOVtPDz8EpїG66՗b-!Gp`w. p[4Np{qw=x{m?(,uwe;-?S)RK}fGgB5h%"+qӥ+F0;Q1 ܜ((.q39xZX)9NKGi)i3UCAԾ_X~RY#o;qx$?-50_b; ߣW{ (\ FCȳ_BmaV{0z7Fϕ0z^ PX%_U5{MBa&$i&* Rn Ce& _SfdntmT~_Y K͑;1jk⽹XLjH/3VUXo_ƾ _ap'+e9Wdz%PV K}Qvuc Zhyps_#`ƴmI(v38*¨3sw}o[NlD&=x,9^ ۵/)ǎ:\o `_I`p0 p+DLm!.et gUcljT _B뵲Ru!5@N9zDd})>f+)$%JX+k|Jjۢת̒OX\ʋBڒ<Ϛ%}6W`G4d xOtn.SF}E>R Ⱦ<8CKp X儿V>USG{+c(]K(\ѿQo›o=z[6 )"^3zKXzv,1gN}s@.zJ.^F*r^AWooI|4U\WRe vot o!]Kfv3W?;y9YVdҵ9~ȱ}(l%z'aQOȣ^B^Be45z0=_lv,2裞b Nt4u2:GM''I+L^\AϿ]{ w >r%xu=C^R_Yѵ"R dwrw.(Xx40 LmD\=1p.l-B+p/Źzװu!F%In] CxtIY<2F7fIiw %Nqb&SkYv-2gW8SFd&g^L^J(Lz|p0Vъ?˒ױkc'h̖<5!~5 kgiK2c4}T-WTkNOgjtFC#.|^f#ML?~Y\l`2E!AbaQʏ~؄-V({EEzzљedFZԠ>_EVIy!=Z;И ׯ3@r<]_Έj8Le߻m@zVU`V cfDm/nϘa+7I ?>g z+OK8#~$>btn54gtyj QY2E@؈L^j7a#Hi3:b#K8RS{?8̤OlD$W3OLj:f?$|1zPe+S:@XBdT-3@BԈtJW}qyP i;7y +>'Ɠ@4MEnpW㍂]eS( kĄ-l5M\V\X~G?=T7ȝaF$Lt>K91gIn݀$҄0zS ݀0z"yDMՓSzOZ(pE8 :rlR0t ?7c u(;<7Z(+y*'( J|ccrQI_'B+`{s.o:laer=S~hHk8UM8n/~sD&;`ȑ՚G&c\\LuLkJC!9NE+s/s܅X]EYg*<#e d F@t0\,NRV;ۍf(@a.{.V6̦Qv|uF$je# ,ج`k2r1|ؠew߰q7<r7!22.V^j<"D(@Auվ)7KU_>e7YB<,)DyJY:"̹驪689U zlv pU^_m- 0}عw~l)i!:-LJxV OHK\5jc !mb`T<9g%9 ǷD(9!W,}! O@3 nĨL {dses:&3lj$=ybec;LۈQ~拎wd8 ta tԉjlIA)4E?Dždr[A2yK[5k҅nx'XC;uêC'4Vt(Q>F"3NK,=9u,bt+;55qe5{F" "LX{0]`sF9iL 5{ z&G ˙c:ɶ_PDƅ÷ 32 E.O(rFEt>,A6yq wDYﴄ%-՟D9SDm2RY+]d_ >n"}.":@az(7C QY2{xgӵLt9WV7di+1Ge B{*=FvH]$eg̠JQ:@az>LgN8e0C{h6=WS¼=]+[v6>8p9 o[?`6^pVZy4nB\yYXw `?<#駙~$%;{1&6=WWEh(LO3(ۮ=k {GDWK9W[me\Vy_ʒ3c|R*̼Llq;ӳ[}r|3Tnv&~q2N+. gܞoT{I_l #|ڤvtV+q<"!#?]OҞ2@V=O=;)}U6 y4`\'⍚+tfvmwpז %dY?Vi6~,jM7q)mykb߭f8LWlr/].)cAB,;HCra6S7=-σ=UXw9#GJ{. < c"cf^uNVtJb .5jpkŞ}ELm2|H8s U}MJhe>begu:D ='<ݢUc[gǰ^+^~{g& [l`lf5mb{R"M6l@Jތ7wX.Q)5^#_5^Z^co=6Ṩ~O)CJoYz0s+9 )Gzb-'N ^&ӯC/׊„^_cGji(dpwnR:@) d]k5fb/D6KWT=~r6|~G4}vZ!ia!\Y]T3zrpL`sgiYm_zV&v6GBlLE* w=1QTIIni l%Wٓ<[vH E:= ۄDWH<$0JltX2)͝I54lVfQYW3=|2mf UR2kv3e;)R-%5R6rԲ;Z⺂q]/n/tvX#yυ.`7{Zu[je_u§(|_}Gmc`;۹b\!|}PY=ۼ2d.~ ~A L/K7q_4VWJVR7RM-.!KM)*K!KvRR d&( :RlcRإRBKkH87?'"}@*a]Ža}{ +%dQMz(V "u|=/pZݱ}#uO@4 !,s'DZΎ`cdzIݵwfu%{C-V+e.gkQ 5#fZYh;+F}Y(:q??2im^~V-Hʟzbಛ%%Y)P#&#sHIV1^0=#xOџgtdS8D>^XhN<.N#O ~zȵt+> !><ۨ6kJ"(seӬRr42ܙkdYȴ~*'|z2].z%D匰DPŁ[ >cVϿ+?#;~zLQG=:8Q?n~!$h8",uZĢ{R(O|vh؋J^]}TJafa)x{\ċm Hv3aҪ}p56Vy~FkT{M(^skG+{L6oKd|p V2Ep]^g'ppG=7v g&9 >5:=rĆIX$Сbt6cǣh?^~LnnE00ռG$`>9@tj[M zp]Y4 uLJ(,Oņ]g>v:5^ͤnw"V| 6U/6=~%kSLmU5lJڴ,ԪW K^a~j8,aϦB1]h:hW #Usvj2w!3QsN:dÂf'zy^W(06 c=xΥiE+s0!w90ݧMJ/ 3z^A|n[BB}tV _Ϻ8fSEU evWK\tdҧ$K >KAYhқwUUYz"|W ɐ" ڔ='9v8`(==()'`VF2!=h+~_*—0]7>JvC P+sߩxco ]xŽtNzocE/]ÿl_ckWL gׇ95;^w_kNN+-m@D|k8MMXe3,牶H6% "Xç Og1uߜLI}L!L*{`*^!|GЦ4{~|d.==:$e{)ƵWbru9̸=u \7jI}x ڒWL\LrXE G\خM因5XC\"ԁOqlǼ3,%|."m[U0Nڔ(]d:r?엇d婹Iu3$X{0ʇWtp=#HO dk%/w:UOe^n`ZGcZKZ]MBUPF.ҘV%h5jSTZǕyê<͇C?XjZKf'Yp }<ɴF(Pe 6-`Q BF`iLK5KmMi齌mi)awȣ3{iSt+dS.[7D@@aJ׫Zk}W;]8f r#{)zgýau<* W] ~D/}{J v< y?{x@BYF DC0S?nO^rp"{c!/ݚPí@OZyzɐ^cg`,Ws`O+c,+\x39a^&BAg_d>xv~ \dr`/z#_z!ɿFfbZW74o(V.uiAtΔk+n\x]xPa80W÷S[(,xo~CE!ME_`g /wrM/R-wqwޠasѼFEP4"pRpPdXK{ϖUY!D`I7k;mKJ4xs!=%{6<a&÷>Q|],\6[dK1u8ޗF'H^HطAǫoe~f!,u2/n 7ZjR8*PXRإz  -+̱liWTa->'c?``_&\E?}D:S= ɬ^m_Z¢*k;kxa_q#9X(25^i~ʦg?'?B"}M=| ֠VbײɊ2)]=S嫷?EJJ=^z+| g`7'3}vPV2=lyU/a^'ҖbX]2AG -ˬ-*BEF>$SY5rLG"!{4=I}9lkl0QMc$W*](z/SwIU U;"2րL>lrvyzaVv"ʬN7~j9Ni3bR[7-%iэ9&D/2ކ.a ^*z_cNxzfp _?kkx^V-@Ȫ nK x}P8E18z'/`MK]^(7{u{"*= {BPSRa::~ی?rӑb9h83݅|xxPG+C+_Ʊ`G;c-º!2k?KDZ~ln,v@|GZ1/~3G.# 0#%qHىbL=,=R.JX{)=$r,bPPÎeЬ|yMaG++ێ=(ިMwt56)_+=_^wl@%9e$tCXLQláۢ-wOT\rd' ѾgtxF+7ѯ4'LNa#ZrPYzrƛL#r¥_>^-t8 0=/"Q& dmE\*؉T]nEmݎL|Y(Ÿrvk5!spf.-OLêPpB 7*^>iejY ZY_턱nzQ.jBk5KEFYtm°ultKe/f^r;tel䲁@a]L"/_\qRZQEv pJ{#0=8 ( z`7iȀ$ZGne2MɃt-e=b4F^RK@ 2砜>=D+ό<=hm hcx(ݷe2j K{6 a,W6{zU^$ E$Ĺ-Luu6QgYaxJwq~"-R8Bhnp|I, :<߀\=JYb>OH2W㎷0NZ_9A]Wdf#S&G3 a,ʴnlsL677Y5)곤4S` #Ij  '!&>DK>p_vDzD{3^Jt0%Kx#_.)/(qUlLǣ(+2)~>WH0nX0U # ? cI0L 0_]g.eQtYmO{FY3#x'zIxބ©ֈڳ\ ̱ObW$l8´7]J^)8d޴_J2 bR2|I&-E$e%] pU$P1$fs44{)gD4\M ڽcW#WVSLs A]l }~GCF& $o?~E"#Jy48#.L{`ۈz?".3*f%}Kλ/RB#}R쟂ѯ˯~Q(K0sȞZL1 Dz%y]x>p7'&n0qX &=ߋdb:ҫVLWp&52ez4Kr2ͼj ÁIyoD!4H0"?QIBwbRW L5}8oAoӧ=3gp&B%$>O0**gmzjjpOVCnS WT&r`*z^q 6q>Ytb)!;| m>kݷ~+^]v(4_jCJt8F|*r|8S,ݻӲjK."-)-=ԘSfX'0wũRn}aK~eX.gkWA´ȐjK9bѴ^ďC ppuB,[򧷏N8dL22%e]WY>2.٬f+;'&ӈu)%}+;~ϖĥgĥg?D49Y}LӴۙ"MI áWȫ hnBPAr+J0X@?3_ߘ"MIA>(ԎeD,T(/m.mty]rub.XTK63RH?&R1{Kj,}!'Wi^@+)fJbGbqEx4M4֠'6!sJl~.М! Ĝ<# t>xgt+59TL 6N.w9ٷ+ɹfpFcɅ'!2+L)"@:s(4>4SLݻ,c QVQ48s))0D =!n7±| }g"oPkRbZ^lYըk{vkdQX֞4]}Q9osr9! 4C攚0̘/Z`іJu8)ґTw`-287u&%7DtO nwnt\.XJFF9)Tx} jU|-г.+أ{`(iD}$J 0桼>&0E%vbX99; );8|ʻk 241f55^:GӾs2ЏL1}!vtaķ$.^;oAWu]_}Y=w[J`Uk?U t:o^X3#­{ݚ2Ùbʺy")Dz뭴EJfHg%0|8)E]ڕbe7:!Rs׀AO~ B/t!хF" EcLxIar}g|)Riȶơ$衊)Mr/,JS{:YaD:=+ٛphP#y9#| ]AlZ͕kGmZOǾ3%:vCܷr9񠵶a%L1u'y s֎,T‘"ϴW;Q%iʅ' [ur3wHf:P]Wyu"cJc+Em80{!3i+54;aX6YYɡzWh6( i_h sũ^C| j 5WM0(jaցv.B>CUO*5z|⻩;y>;mzhsR`5gUf_> jie_ZoV!GGވɾёH>* 9pgI4rX Z a+5oUA.}VubSq͗>,8}$O_Q|ھ̇tH0rs. lfax蓺UЧ[@FcΧsL?CHIp'(ٺE%I,YYtMwц`el,K)c=-K=fo{8R+lz$fXjs5Vo"rA>D)7aYQFWaUq>a'䬗c # ]j.nW)VUUIG;ʜ0lo_W^#r!lAb.,0=ymV:+>!F0gx1s&j1J;:&c29 ROwzU.F/htߨg~o2RWr3))zBuRjWp(<{ Чgk߹u۳ּgz6ioRlRB.F B ~51v U6ɋ{)]]>p|Nq9))TP,Rs_ d_9:X)&w8L1v;)L1 k:gXM)v՘90wKՅWjbc%Q, l m wBW,z )U*m*gӝ;fmVuT=qL5X4lJMLh)oL)jjV?5H%qMU6_?:S*^].z#'NH9=ry!Ü|o>Xw1N 6oaX7g{@\!SL 0CF°u5H<'KcVՕ9Xd%5ZZ)YtmR'qD,\L1XVMst\2%mF8~<̹G\ABcޒH b)ИGa6XaaΜx%pnޕb6 μtEs]nͪ2(ͭ‘$yK.g£;\T&~WN~hm{WT H$^!Yp^ai mc 9xA6/ȑ6k9,d">ϤQ%| VJҙ[)LoV9୺(:%g4ٓ ;ƮF=pJa_rYӠ|sJvFԜVZy SDȵГpQ6"GEyTq̜Rv_@S*ݚkGz?1[UočCH{bWsӐ5T4P(S )xt 09b@_CsHT~ulͻEwaw "xa`ϪFD`x9J#PO {٬p%t`?jED;x҆C:0O)+x¤!ڋCHDz0xnogXgW(ُaSڷ xU0Mkf-O9X;u[pF%i85]BLhH }U5L _4t -@{;8"-g 85 s%Y2(5Wސw-/b ɋwl;ْzMiC^t΂Ӏ務*0GyrCk!L "~W=1ȣ`ʨD,53<)E!d(=JS~SWbL/60mrAsv<TN4yfcf$>\O6ŒMB3¿ 0%,, @p_$$i8*KEsjUmw9Es R\ۙb)/<IvjY"rLr̾'#Gs/(\ 2s$ CAo[5~ʗRRU 7·ѰW{vGVy&ٝNX#vbݚ2=)R?;oj}d͙ Lڊf8#.&j.[>9`ePqkU%8ٔbA24<<[F_+^<ݔԄI@L*>T 3%&>2|`+]y[qsKSR}[A/upcv]) (SbN7 pBn5ҳq eIX5~6A~⦳I8Nfrp$M!97!g^Ry _igJߣL"䌉sL^WwKɃHۣWw=%y& tqϑΦ Qz&)AXtX̄DVH\7)l.PT>+NH" C9Nu7f{$ѱwXV‡wŇ"3>3%J.ĩ1DeGo". 'hڇ)N=iI-HS&_&݃6o3?pyːppR+=!: $*Lt ފ鶂xR9yp{ i$D菽*m*z_g']& t~{[9axN! Xfs۠=R:KL,Tw~ȇ2]44zsafS2œ/l[ƍs7z=ci@M$czb)N6!89Z.XZ21&sJ0'.4&Zgȸv]\>UPޛ+ o*sέsЭ׃Zꝟ'\!4Is|@} GF_znDŽ[IM4˹:Ӟbieзixz6mL!9d|胠4d}!_67q')ԫt!sJ[<ڵbЮ+\[sTJ~/QK3 K]}UKO|)KD"ȦgDz)].%A)xE` ѯ}C eL Orvuj:# b% IK09=6==K ebMT3u>[:;3ߤ~Ĉb }wV_xH5 P.,/z:*NLo|_L(2e͸9"-'@"D>dƳ*g$ZFzHKG2sV Y#P'6s?@γ֎/9d壳ı ep4ok>~~INڕ0p# m:^ȩcOг#BQLZ(2'嫙c_r` Y6'c)#FyyC}gDoRoI֎vW9n)rT>98d_4o?E - (%'T\dC!K,ûsD` %COD,7HI) []+. CR~n?YSrU|oNωWwȚRxˑ8dNi ЮfU󔻬Š9<6C"^y<_q\9ZؿUB5N 9dNC)p?Qر sȜR/o<Xx.TY+wbhc(LHݯk(އƣr6PF95̼)8lc1yűq.zl'50ŤH}<4ί1o8o/ x9 nݭ*.5ۅnu)/.N+_^Mp/k,g_GWD%ߒxvMJI>mx̿03Xuz/U|H0dv {3(rAmEoϖ;DaiX?p8ƳQCKL~'+0aZz6`j.g>服y'⎉x˼}x';Ξxa0Vd73h|Z"{rHNrH ajF9n͕&󖓿Q[d* c|gz!HG6BDgeS8m^MJo? ˃%g0>WxB88lϩi"WX&FWm`_qW9*wXUUP"DX\D'{!Y9d)bh!U|uuarXk_1m$bMB ,Sc$9ȶ٠~1BfΰFhazn{;";:)とN39+'kC $dpbJ:4>kf=_7H_CV5| $1(?F]IƕtXHnN3;2E/XF~:?GxկGTu![6m"}9Cr_÷LGDz9s4?G@.sup}\fYh57B˿#E: <\!yAOUxO!1{W#t`A8%o-PˁץRvC>GDi-!sJ}usҸ ܲn"w2G_jv$9c b~&q)9L1I?^d .J2bb)9J,N ]GݣxCz8dNԿ~C攒ts?(r72tNn{Ef&F 5D( SLW~%5'R*C"_ )'#"E8tvDx"nП[z9^^ssȜҏGu݌2^nKCfSfSY<~GK#GG(sHHK{h5ں%6ʡ+*f^!sJ3Wx4E> '+ijT =?#~SK^ 9 RUOHWH^7-S,sD+ÈZ Ȁ"ӝNgGt_nJC.urse8ܿ-ghu9LqY CF`9t9!ZoyE< O\!&"^!}^?Ҷn򎐚9HA=E{7>?5})ž|QYpF1%@yr]&BWy#vAG? ]oNA .OXY"<[}CBKDtąӡjwџ~ y "I--~] n4]G|ORpA/ޮG_6ǎW!&oWuߑO5 W4& LPҧ⵽zTLT[sV~oGU{"8d[[z:6դl6b4<.w=upR<+ W3Ųz>ѣ]'wk嵒w=Dv+i Gn>Eݔ&2S,vn=D[smGϓy t^gWHzb[B!Of Q{ᆉ(fUf?0| S,齫Lm8[qkš}/#zgvDf2idYHz/Ezw* Gӑi>w4V,'_6(V5}zޭwDgד~=1L&2"=ӵ{A6ېDU(XU#t9~AM ;{N=;n͵d=}o.!K:׳Ya˰k^f4|g>?* ޮ~GPu^z,t/-#KBGtv]lݨ=XڽR{JZQKGE߽eE!)LoՅϿCXO=O\Z3u};GzМ-}GOOc4n;an?Y{m;ӟّ|}4M>X|Sa󥺯}#N}~qEDQj;G!xhtޮ7M[se_D1ӏ#Qk.4u:-0/<$3՚Չ Kk5o B:Ob=$ǟD2/=_PlV/gc@ˊB@'tk/<^-,Wa !I'C\7lގeJ ^"S,)PFiU&E"@_0EtX9[j:_|=MӁ-tNE`-| ߇~3ރ@pɅ=c4M=ĭ1!zzoOL%"5j pd2 cQ8kA-PH ?C3ȍLYi }Vzq;^QX9ot#w&{Ϯy/:ZpHt=k N'}O=L(4-OKbٱY6l,*_Ŝ/౸[s@/lnrvCwvg&09g56kL=*-/nɍg5׫'tRo^\@9$fV;~,Of6}t-C{%ԗQ}J1fԌ|{ Ռ"5+^H>#,a)s,{|2cg:2H?~[m2Y LЇhߌW`.~CvhbMn%N]\nfz0uB>nYnqHSlTƱH=B yDq~3߭kSq7OM%syeT"Kz֜ 愢j]R2f˚\b.?zݭfxҪӼMD#;=3!yHNjJj\OawEcbqҭL PGYr|nWDKR̩sO_/a{-ϭ:jOV@}kLw?odb5.8I/z,߭<_aг ο-m2G=z!oilj1>'q9`[ fH\^ ~"a҄wW?S2Fc8PYub<ڿϼuԟ;)]}sPUynO'Fv81ԥ?Gyy3 w)ܪvzʻvCSW7QXCM>3 y$horzIJ~.GJ㟍I /(2=Xy3U}a8iYpZl4 cJJ) UusyaQ'jp-yO"_ſ(ʠ 0:ld 8a0dK=[>?c)SҬg>s5 ge[;?y ]9-߮o`IW!)#Ll)҅I_ ­ es KM:,5q ď1gSzBמ^K~+d:7.s|No+_7xE>nJ9--w"n c4T(Awmƶ<2ƚhs&1Uѣp8YsZ2W7$\Nؓp5 6+=Y {.|v)n͵:?ט w~]ߑ!\Rn#NS#l,iyn<_5׿kIvtjS1qYX߳5{fE)p/}>mxfbȦ1 z) ;fp"֨h)E޸>YҠNFs&/f?4ݸ! xWߗyM H0YF>slUnڥxw-.7`|cM 3+¦6`l1]FeM auuM[SͫTKJMuMpuMuM_ieyL " nyfNasElWi5%uwz>>Be?}#(_?vk8.qO9.u Dl@V:FVx@8'`_o\[Qe|>~x8Wm$R((14j52%W*fg}#ȑ{#,sHN#+Q5\ xLrmOvoo;ً㽗t`?@. \}G]O$Led=,iQ cPffd3K-g-|8e84"6cgI31%’YҀdyAq֞LIf,T3%IS~4aO_}gXͪ5.l:@=yH ?ZϬDW>Q+}񕚹Tin bT}aѓe'k*RRު*5~ao~~A P?}bv5ɢ~;׭2DѮ_֏/B7L?<}s5V^Ĝ3Gָ5Lű2 E|oZݬS_YuS韟?? S`wt=z=opn ov3DUL|7v K^3gӥB˟o_gĀo9xw>p"z' B3Vʃ])x^bzmehD}5;JG0+>'pn>vkߨ!A{ᦐ㿫(?/߀|yeal{G{c!QC|"Ҡq- *ߟX7laPkkp#,ígl;Z˒6fkLy̒YwaM>VoUd5-} ͟0 =Q\PzL *3={QW~Y3ŀ59zwHS$bhhQp,8l)+`3|]7{7џ? j?s~ِA -!gYPx ֟gҟV?_5!o[P7X׃϶!? 8V\_Q"gҿY/&yESEx|th}x~~|/v&(;hN AEμ Y:Y_֯__>K /l / 9Cc"BgΧ7/nd?zCoE}~ +?V*AG]MC/ /aO[}~PW_~<6'Th}kDy7<_3vEkA&5A0.b`wbN}5Eu睵O~B_R_0h2 e9Ο>}qlNa1\ 'u/ 1O.}lid!G/RNpFEqV_XOY_j yŒEEDV~Եyl@yB'Cʋ]/N /dE_L ުuꫡ/]g}Q[ }}u}!{- 9WB3؃go@_|dm97/ѩ__t}-(Dk<.-O}%XRgǿߋV_4=bQ`P;m/.ucb¨PxOBbb@yBGCʋŋ/6v,r]EqZY_ӯbb=]+Cɛyy 苗g;yN}-^(}DC|r9]_|7-Z湺SqN}5yu[_!o*|l |r۳&ѽxv-^vu{3g|}*|zpB TՔ/씕4!sc ӻ?EXjB5BT @g{BOG]{GW 97gID>w͞<WoXGWCYo\ y|3<~ːx !O}{wf׫+ 2=#Gm֫u_\}%D B|6)5OFr?>!>}nx*=6+|<.woX>Ü:yW慐BiQrwb~L N fxN}/ ^c>7.=T>>P~O Q~7῾M(my>Hk< ;̄[-5%2L+b[f|3g}M/V|a?&r}y ˜s k2sf~햗dpwSzԳ))f# kKc̼ #:z0>bnY0a>1rk~CGWۯ=~&U3\D}W$ޔT AoqIiF߱^!cfMlB'Foj;)^w-xurH}G=Z4m|5OSƣZn|f@-)$HK7?*Gp!LuMnjuMI7uՈ7c7|q{!~\599E$aQSNhup4@$FC1 z37 EcɿOk,)J-9KaZ1K:+8|t!A\k <ſǖ2E-\NXr(z]Vfm\0`ЃTusky7=? EC7|O98i CheE38gXC#a|$k_B9d蟗E{\x.} y P G]5pڴqަL3HT9zycAOQ?>4ٻ)zWO'L:RK^~*ȼūUnVăI૱u+U{zK1#e.tu?PRHu6RFc4;f5ƥyjpHdI_)1)rRR"SWU˔mjsKݯrbMP{"MF]"vCPN0a"8Y8dBI@Kv%orX>)L E#iqs8qƔ'8h,xZH%m("if#ȥ~>[_9C>gq?!!s+oGOWO/;ߣLfJi( + h@ٜᑾLHvC:.]O-Jq?8n2O'1"t!=tR?qvT?rNEW=̄$ I_)RÄ}uF [/WR _|O0gx#_e37>3a.hF /Kuq9 (Cאּr<,^7~ t63U9&=SМ_ Jzgs5%ε4l6:aC#? U N]/S?z79ҾiO#=k82DL '01E.[b3F'ȖX$_,隼;6Hyd <݆CH`.>&h%yiXyٙL˶ 2yy~I0XH"}}3L05BveQTYq?3)MQLKݺkw|:X PwfUM+_PT`t$ ,h9WDq|bew1Wys,0l%vWNO#\sM̡&93DɭFT?ߒsf%/Q=)|fnD rq EA$KR`I_$u|)}?ɔ .X N6CZ~,z&]ɁTﻑTﻑ!u679%0] To=E) d<{ksE\R%2RݻݚklxS=uFg{ϧ}o_ 3~nw5p "myǣ8>#7! 8Qo^iʌL]B3g!L̔}F4ǙKTl Sz))LIM^CK` Bӵ̰"ǮR:5}AՌO`g#E WgmA>ub+5TKҁV9G8{ڔǬI?v.t6}̦1``{jQl?LʏaB# ?$H77}CB!#ŢPm~?VQ9;XݢlC q$MO=+իuGǜQ$ v՛g,sH/6?lZ̜C:{jU 6k x=c#Am{u?ݶ92G8{!aIfN)r2.̰z"⢆&Ӭsf })jGĿc( Rvbd={ {ȿ qkz\ %8h_ +6[\{gVA B1Z5/!cS+_^ç0L!7I6kt}L$!!'IlPfT0`ޘC;ӁHL<k)k"pL)ҴbߛV^z ŌJ<+rnUnE; arV*fs`›Q\_} h F3X27ɤ_攷}p7郻#f" e2222+ AGX|H|"C{%d\FY3 ٬SP>_h&Q2*^LXu'e: !zCe aRٙvٯIrNKzδ~-Lw1ģ=B3$!ovA6Xc/ȑxlY/ȑ`"fȌ[Kuœn~Aljڌj ')#SL{CoᲕC>btIAo"_i$L^0 Y'2 ؍fFzQ  Dh &jZ0ާy G6'; ! >geO>g% g'NS)ȳ±0T~*3u0Y! &a9o) 3Y^HC :"G0 o*s'&oBdY氊sX* vaȌ'1Kf8m UySX*W)ww0OcF3wo<ÚrA?gǨǀ0ADO3~ 򽎲 E?\8[XFOTjkH-j H-(<ۏ )WWj^EqoRpW%¾lhj67QZʵ!Z uP_ƒ`(t!|@os>@+@@r!HN eq,S9=6-O| Ƿ\ZL2jj.+a 7:ENPN)b\NXNStu({)K(?/ǜoQQ)r"s*90<ʩgZPN^)r>|3,v#PN)5m1/焗l>Z5"zH\]6~!ޕ؝{ vݝ" Ceocc,a{64.s Z=>= 쮄]4ga_Iأ v-<uv{H]o}]FľmHBBwBY(o;D!~0>3`z3b/!=}e1ĒRL bDj;)C"@!F)IK!b D|rDC{ E8"zBhLjExbeRZ"zSč DPi"tbAq"^cDDA" rS b1x"# 12V,G-,SVo7G}',cJ |` H: ++&kmgq[gonr9P?q,QAͧpꔫ4X!1Hk__]D]]0\"F]S_& 'ĂBDIi"NO\?\'WHz_"o仱O*oZd{lD&bh1;/.UDq?x\U@kXm/6{!V^ƣ-D.T?@@x fpY͝' BO$?20R~5?@@Y"CB[E+_ޡ/3].i)8GZ+P 8MՔe⩧q LN5@l+Xq/*: ?S,b&*ev"EMU`$M0fL ^ܘHm( OB2INՅ EJ[mIz>d2Nj}֚{_!?x75}7F.xBeɟ.k03a@@ Oကm2h;([ji币" A$ X ޤ;ړb}Tw Ck5\cD36*BQRuAv>~әDM^K)AnzzU{;mikP_ũwdZE+᭴%rзߖ $<5'2 %aB:ѮFj#ub-xӇ'9u{зs rz+*2 U}WevB/ ]]ݕ(`UtK#!$uvZ;S=uNT³zǶoGBW/E.8y9yjׅ^1ZTB-1N=nyFyB6BfW /Y l0s B̫2J1U鏞'G]Bd*NN .Wɚ3jPR*Iрe;y#ڜj%Uq\[|-ˍ,d|78GQDL׋I d< ]FPRC' Xf3WdZisUTnrDیpxi݃x|c|VQr7#/ZxB :Fe:@/t Fjo%˚B9p\_9BQ=}|P&?]Jo X拍M]C!Vz{D@>p+evM8]R C)q?˼:~*},yDz]f5Vs5%^?c@cZW>NӇ:}$ajrWX.{' PRn }:}dbTS1{[|]N"M-& M3ЍR >:}UZ+:KF1\O1Q3b50oyjoʂxxi=}m>FvsNH[m2(D(xb,uJYSb}оhz껋+&|d3hS-td e| o^:3jE JPƼ9Ϸ֞;re糭Y'SMڳ#_nwOSv{$8ڰ鯀e^g[r I2vN23J0&}k?'4q2B*%}CQ:$ 'fތ@vO7~fC6N0d / >R֚=Eq|YQ z *~Um+|H;#§^ 7XnA.E;؏2ǗڏmlgG?`fXZkv9Yu| F9ޗIvDl`vLv+S<'QH3%,3ܞVTYyړ _#|Drz{{NhM4f^Jϵo]D ENE]}"zhVEr E.n~coBIZ-_^.ȃVFQJBW_nV}u,3(pY2>UgK RyXf-tk4 g=h9K=rRy*q+_s"{ jeXh{Mk󓅮/fR"D"X^В$FCZ_2noi񔠂 kOaEk͛=b>Lj=uU#/RQDC"}(Et׻";B]ܖ! `մlˎV4O٘-hM =nCR(;cv\yDSW |\27яӧnm-{8#1ƿ ǟx&W ]v3AXmB__B_񛄫>Qs};;dhk~ ʳK \zfm2]W)j[+䋸[I%=>nlθ>[2?<ٺѲ)>Pi#Ye#A؊3p/ߦ|D9""ȯB"Mp/_Oe«V;)o, vrTxkA*,WY1 sNe; c̯ˌӨuy#yPowiEԥۺ[AuF*\Ţ;]:T˯9I7*ƌc|t E,$^ ~qSe]A(<;o8Dm{چA# OP!Ge̬G/"Uhgl8l("=Q,f/5µ!X䷱䗀elޜ_(׳?GJ̓"UVo)+Ȼ#wGݾ8?X>΀T2WU?AƷNms651>VS-|GH&#AVK_'5_e|/^<,JJȟD>D>#/,[Y-Ȋd&CIVjB[%￈TDZN"~Tͳ "Fy _~ y Z ء]|-an˯x+y]{S2ne}V?S<@!3ŃIfM$s 1~~9V<4jy9e<*/ "PreIXKY/-A~d݌A&ZnWr!,DhcGM _=/W 9}Hq056EY ˽[>@zXtcѤ(gAR6,^},]]V<.#`\v0LdڻPZa!]Wދ9HeWQn nm_Cm(t$23&J\nlV# *vNih hu)<"D*ɻ͓tqInhVk. fN($4˜yF+ߵ;fΜӑjηnj'oSz Hs6g1V"?aqQJ<3 Vr.dZz9VL/.c\Dz ,j,-ތH/(`XQM&莹jn!hG.hDE(NMTQJoJ4-rZGwyUB[vƨnn_۞(=(M"E)H])U[?x>_y|z_Ds6V. qigl k1w}|#*چ(-YNjO8j68&~/7g_c$>M57?ՙ.3my㗼Y5˞tSdx}yچIOZOm{XUр,tAedKq%/X:v5EX|d 3 ~\|̫=yqǹgQ>vm' y-A!XXFSFIn}Xn>|4MkAKXq<$1r!Ц/}ʱXŸ߀ |¯yeY,SWC44ߟLKB•>1:hLLC5+e׉u"Me[~iH7CE8!&/O|j|ߴMiRꯗ U|s }L$A㕄xG +w8u?*CHҍUPaA39uз37  . SV1\m =)%EYyL1U[Yq#hqٿDTx=Q5HE)yF՗T$q;@Xw1 !nM6xv^b=9]ӱ.{-e3Z%ucH'eR7%FPg*ʙxLuMdsFP:ˁ 73WԹ-P^tAsC(I6E1VCqe^F,[fD@P;vE]M$꺠mv\I֐[:J'㪏*맹a%10}7-1TGp/)@$W s\:{cR;)@XM[Pi> nI4Rr!y{²wO4A'zOkw#O) 6Zź7ccÞ >2#ØSo#dZۂd$1w:RfoC+׆V'TPN B/hNt=id'ܧyp~NZW)* Ξ yb*D3B}~{j?xǷR]_?|zT]d|^$|q_TEqan' hWR~omڧJCICc_3/ FܣmqmZL(x$YAS%u΄8M*ͳѲNo=SX#$ֈ!C03񯦙Iudi{'it[䨑(+h(+T]4=}uhY,c-v[`?u+2T6Xx͇ѢknyiLj3 $'$m5@aW< qNBf vlE> Aq AG)`p$nCR3DئRNy<&`9}-uue7vٍvr Wa_'erUx7"2,m{(`<3:"QZ ML5w_MZ[_2VXfmO,t'{;S/\>!M&7''[l Ԗ/KfvO{‰/Ch1jq۪%q_dSQW*UY6vŒ6w| tFIwgzO^|̠c f6|P=Wn=sIi?jm>`Y9m$"@~cGC{V*5ɠ)cdptzEQ21ƾ`?OL>[f^(?zgGLf\jfED*dE;4W~vI§~K,ofˍ޶1e/Ȓ=nK~ZŲ7! tu/4˾?@@p!_ĀC$Oed1NEDWr|(n6?s.\ :Aƣ([dS+%|eQ7` 6s5'̝~u:@sQ#b$W8ڔ&7xMVQ#v\"n58mrE&`۲)R b0QBja"-' Hbŀ\GZxc.JZx7 oy2} BYݸߩq+aBUmUei#PjyRU+Cw3j OSyVQʃy1m8L#) M(7H?o X[JǛaܿ.`{oSN=5mE3(0_Pa?ogSe;FZ]G-=w7P =wp<@s`8юl4 XGS@IюqN~]R3FxK4nOc# krdi;48Rm6?)Jz{ n+rV CK0iKL}B # !V~D7N lfrq]C֜IhoGVg $eftUm} y\NW:0¶ }^f[e"m6Ѳ+0*a*m U Ei YM!=>01Y C^ECƣ:Rb'PLuB̲WM A$tb/00״2@!J3'z4@\^ zmOtQ&:@VGP"H';2B2JПلQعIB#Sόi͵U (;bA!{U|r J:sKd՗Q՗f#R; 6H@6MN$|B遪EI/pl M5?`kp?˩mdO @(e1T9zUxy/Ǎ܇؏GݢaqD~ bR2(_V L6!ҲBы~ۖfisS4DZCdhj2ܖt=ΜUd*4lk4g V ( }|ni;6{eYD:#ۺm?7Pf8y$9L3RJPX8鄮Γgx25EY`UfO Yǚe%[heFڨ&`6XSy;(P]G`CK(8"Zs=(YG\2Q}2srfzeeV>xⰬ~Hh/zzwt {nGNU!wyS7"z3Ճ`SO]PrR(%e Mm>3}ˌK<%?v:;ѷ+7+^|L@Ss,ԻTQ<|#l tc1-&Vi"E1SZfdN]1}2}qcdowO^XX;R1G`ˬ!TCy^e/8#ȱx#?JQ4|IO>vv{<,caC 7U)"u S[0T+vֱ| B~J6ksbJ8s;gE<'PjΤ80 xXӉx^]nl۠L$o֋whdW+AmY)r KLC0V q깡Wdr9un[R _(T|8T̐_xNѶXAi {{\@,Nx2;MnRWƶs1h$^Hfe95.n3n XN&rmc91A_GɕFgneSۨ榁*q^}S~:lgL3݇e[}\I o94y[B~xK6%+uVY=Ú3Mvyr_~C.O0fI<̴=r+pJ{yWv;P",G?%({~9?gUp|;gXMzxƮP-/`pvT6yF[E[h cm&v!+*VOȶʰ{(0ײ}6F\Z޴|ŌOI|-\؎b6A"u;F*@?ymXy|xH۴Jwog/ڪaZl`d k±;wo\klvT=6g۶9emzoqzaC ?@Ԃюq+sDe-!<_ROz9vPA1f16XiGK'XosAr1g΍J洅*c'|YWeKAЉh|ҋA#Urm: P)sʘ^_Ёl7AT*)Lwl ;w`R lݐhy3^*K{}w}4ۜ\l 1}, w=4h6A!KDW#t%rdawo3|Gmh8^`5ٮ(.t5V"Z_V )`"`s-t Fˈkϭ:0 vI³[@ +er-IL|↢k}9)d߷s*+BS^R E DAw3nmbTIɕ(ΗcN!tjAޛyFBQs/BBֱcT7v~dǦCHxCM<`Ӏ]{uR/3rPFKg3[y>{v 9{w5_=D'e{>D.EX?9aiySj*,Uɕ Kx7ǣP^bqNjZ r7Ñ*t2{D؍,(\»,,PH3Ϡzx}?g20:dAr>!jA:ED#_ m=^Am&,=e`'[YK) 7}͓gKL!$, s%W}Xŕ^T=ĺ_2hl0l|q盚aCډ03 =0y1`sb>5_)_7R"hG("^Ы,8j2l<3}>H3 ڛYY',u 1`TeHWЮ s*@鳅pg,}}>:ӡm xgbWWq# ɕɵ;w'_ zq| 6 X% GUI=n!yvN(%aZEV6HE(.ܑ6 -/`YeV5Z ce\@av` n˔ -!5g+P飭g:|ǺiPAh}nП,n|)=@᫻,ݛK>n4P% ɄSn %C^O4 lE/ "*k¾OZX0n]D+5MVR!eh/oUwP4Ms^=a(C+'ܿ|SF}~Q! |y6E[Nh "X ٴkacmBݻDU`g:QNZK`M]ؑ=\GlBO߹Vw%A7{$6 1??:8"N9g\/ Rcћ' Y^}m4K Wp,օ:&ҾxPxPA:/E- Yu0Jusw3v'4AQW β,PX~>J02xB{^)=0/ZmV^qZWMM7{=3f oUJ|1߈<8xRkZz+$u69u uHow~0`NgO4̶}R 'd@OOgZBs"h`0&f',C8zIt#7Ex{DU`݆K%c⡖<߁KZ /hx?ѤrBԔ/묐xF6DeCº*cy'lF]?li%F ߹m]ƀ o{HxhY'2n\A^9GF|yl /pm#|TH+ݥ+; t!j<OxS̏V*V1OZev)1~:} SP(YĻҗ@wx jd+݋.ὄOwc[i|Z]؞^ޭ,ο]Fp^E3}'`Q%w9DJEA{2x__x__Ps*^nElޞs$9g60פ\ܽ訥Ud96vf .Ztwf+qW]#6P؋Ё;,yuHZh8be%&['8-@g'92 lt5E)bÍ<-x` Hfs& /+ص6᳿xG/S/,:Tԭzr(J, 1mVZna!*"k28筀EMFҀETR\V,:~7|N2]6On/7Ŏ9Ui2m%o@KpU[TĄr!(5SFzfE=dƱCq>Cꬂ˅6I>>p'_b_}(tZ?Ձb)^]tpBݝ-2P֒eorOV:t ǞB_u**RX(\rPtAeI#_=ENlEھcJMt!䝥ӫ!4ⓆP?-yڽνKԹ * 3hVAo"ujmoCJ{7}Xn[.n;M& "P"~2OR2\l P RLJPrcsa0φ*\~=2_i2 ʑ٘ecH/ޒJ_ C*DUYC~/f/bu]_ u;`g3sjz(t5EVa֪jU$' jJٹT"܃gNS?7{_<-XK?[K֯[>~av1Jiko|7Vq?6 g?Uaر=9!N#lJكð;vf6 Sa(bo]&D¾7aO@O {akc?w{a_F?s;/Lx3%$cogJ zMM _"}xWzlŞ䢶dOrfgf{ ػ2OXM,cÖe'22bOXƌ',xe;X1emTf6,{ύ홚WQFI* b|s44,'oGC$g)^Q̆.> L[ϺNK\' hGj,_% I\Ϳ@xZrPª\#`tH\_bD2gc澇H!E]acK]*Ojoý9[;3n؜ Iz4c~HˍsExOi0~Я%^B1Q$$7]ɕavaIɵf閷L,X:#`O/?jĚqY6iIzjCv/bEijR =Z_D9B#1NhwvX{*(xIP!z܃ 7 T4wC *%cB#<Z(v0|3sQ|pqS^ |q9V%*Nӑ$/u|>Ns ZRzXxぴmG'T9Hi4k#?vNm.ĀNzk]oHf-ͨ|;,`Qw$? rʋlao;븥cx2ӛ?`:=_hdHPEEY a-S^@He;wa/ݵ}9rJw~񂞬ʅ~ʥɐ uo#$ƈvG*,i]4؟3@.] qGZtG-tg(P$=O]I"(Lh"?hT}46s!zP'2>y 5]jXt +xHr#)Mu!sfh -ㅎWU|Bayĩ_qhs= y?A틊me 1Fa1@Lyuv2H݃+-%JK1'وp$]EfNy&dkp⒞WU.JȺmQ IZE)p)^f8 G0 ' q$ Ak SXT[J*Sy8Fi"0|zB:m3[%F,w*ҹSyCTf45zkjr5L岇TӐ,W1a2!]?T8}!tQ!W>uGT%iNn2),W,˿ XQؾqо\h_ť\r"JTTNܗ}ZW@*L^^-!:~Ԉnm'\ YS7cʄK(4^,zZi9l jj"8D Ge(ڳ*T|w(0<[HOIKꥥ]J:ˮ2i oppLVA%6o:iNmUUDES0]zD;%ha!jڊ\K"rՉ2De\zdl !scV$l.}R',Oݿj dr-vdW&.3x.:`OX":/BQ0˳}N(&"cXǕ3:?n50^5E7E WTfJpmW->I;mЙX"mBo|GƬ֥TпH"fV-ʛޛZDjtGYf9[Pzrvu~l̊.F`SYэ1Ix͸d@>y&Ll9$^ pJڅ 3$Z@V^-̨xv(| e^Rr! H2!y1ǹ!Su505?',+<`YƋqXNG`Y ȔN#œ-B4 sGߘ^]d9,G6|0Hv:sFsFc:Rumntؙ[N *EӀO$2ٜBH٭yQ&n,v[//)$? ݠ'ZtJ A,t6.+;co)9s#gj 9j:(e8u2* 9D+ʐі_ݘj%AUSm[d er v9H^tWW%\w7sr$i9(Is!c$0!skk1EC@svd=QƷuu\<3L2[}KnjC:nQ 27@]zX._ﮠ/.H|66 wIkBO=1kkT EQ3_ڗN׼"wٝtO)"50EƐ*0,B(:5=td I<%ίLJG' 0 ̅)ĥ˜x@-۵m3.UeDT6ih9\,NϪ4yT5nd }XIyOnƢkϧ Ts$\ƁMym-J] lD՟N}##Uu:{wtRb4O617/Ӊ֩wyX|4ߪQEE[=ҿvIuyR]nh8}-tP |8/ jUtv{zl 1.]o_I<УNӸgi4< ?f:>iC縤t}V1&ڽ[snIm6gAN@\k#BOxOM` Y[_ y;ul !`fҷe%!v' ~8C@ry]d8XW[howkE/RN3s7$XȹS:X6d&!lL7hUZ7TmE0#&n!C  #՝EAu'@S|Y5:QSq3.`/{E-']Ke,<.c̈́iu@=mz!LnBO)SxEr CHx/._FgGlBO~DkD6 O7V⪶} tydN&LHsh8{Ebcj, q]-|N>`!_IERk ѐrh1QO7Áof!di+||+ }q'=xV؃SF{d~LO&15b^2^li<3bI0҆bvh(!2*o? ~:q59z!b:.Ťotz5SSOθׄßSᒎ IH,ԖIJKmh&3Қ>߀d!yu¹F6Gze* ..s1КEĆ!Vac?,\(IJ9P}}($Ր7IYnOeׇ 'h7}vLy$!8ZGN0\t[sU̽9jmŹt^FV5]k;8u d }{U;??N7q9HBB&݈ [v len~Co8DgHR,ȟޘP:45}t]~CR(⹮+_ܝ$onπDVPMxgԣ){)pt5O4zt.ఱIأR=2{u3&Q+uZK<6k\VM,wCPM$|[LgIß$zS/Z1b;e!_ҧsk& ÕI `gjIYXmɐ6`||/y=#k8e^rLb142,IUD _pIYx/,S?rڈZ~KZ8aCl_ F p.rq*6;+έ·9tW0EbmJ5W +-qISԸ~pff So9&LsQ9/)7F\35 \/njJ|ԄǷƌj> @V/*/U{jW.SOӷkC1?V2It8щs/XWJ; =vH된ns=ֻ7`u΅9\uPNv]hN3+D{,Wqm2'(0[1ִAQ1I"Gn0(;\2D#]2|t_0%dj\GIZ) VSqTş#pԸq%?@cJmUtdoA?_@s_G؁<9h47-]A^⼋V؃Z5R)EQ*JD.ЃluG먖qhpXOt#N%vyJiy4UBLu ϛw\i "6]"\{!Ϣs9GcGhdɝv[I;\XJ9\F\XQ(w5]t ~4>V0{cE c閻Ra^O/eXβ=rkR p^#F}=5ECFseLuB 4e֥ )NQvs!SߊڀsbhR<)RXV*A~z4:Lj1J,ϧ(av(-ԾuV 6oMilwqG&־AdRp]~U65t'q^+R#Z^WLK/=uᛠ8 9 jD9LٮͿ^R܆+D6uvU#-F#F>[xPYgfIY*gC?;&-LMacIvf';:'ӳ\3ܸwR\')'呇Zq?\q֐ZmhՑfd0#jLڔg6Hg'xuU(l&/DŽ=x]n{"ȿ.@+{zf7]+3 -#k ܯF0L "Z2NO kk fXp1 q`S[!F=K`MPf #a@gxQ[u0 vz;Com]`]uh}DM 7MH2|]&Pc&3GmֱIhc?Qr(,x_j@^n~X!9r ɷdZ#wGq_&Q9Nds|t[m̟nT~ 5ͫӫ3\ȏM?kC:j|Ƨ«Qk^n68_@|rV7!H)''y.IE^,d4Rso[|s pyV{(͟)~DfJRk3؀{GN)TS컬Jć=(gUMP!`y'O ]|zTM)TO%~ ZZ"u  ڸ0xP>24;ɛ mpXw=tC[^)`ycBDKGqThM6 UI[|aueWp mFm@qϻe)S]Aa醔!ayJX_cg Wbgd5y6wt%IZE3XeqdV#M09o+ޑLa#w#x/x7ҚfHRޜTk팰Cj>Y,؇]뻸V<UtFZ pAQU$I&,(RJHRO~lhS ]˪ 0 ]J4Es̋tD^M\C{D0K`4ޚo ˃HK%@ -RcKnD;La5y);rbiD6?`PנR*Au\gPLdPVG!J`5!@h{#aviO &~l )jϐ${CQu{}oW`q4adFow^lUtnU%E>%-GXZCdqsw?Ϭbg}TbVH#٣oԼik\o^Lo)]p*y#|4Cu4!F]iӶC0q60SThCs?[T$ )mS.Ccllg[X{ >-[OHeZ%H:}'NQ0q\?}=qBx4Gy{HwB4Nf갤kْaď~kw.M(@ɼoXC"/>?(-^ro; BMڬ|sINޒ9KFZ:JpEW }tz]&"rlGjiW&8_)% ~5&B͍u_B:uywH:];XAc"0HrcDh =ӹNv_E8 ~^gLZH'6-¢>LEv,!hsTdc{R"~vF!a r q=[ZAbhvA׫q5򕅋0Pw[QpVGL)g2.JklQ!C:lߎ)ʳ{aN\S܃llX!ͮݠUkt]_֋\ ap_MS\*n{i%D7}n{2U-9T0K|~бq~;Fcd{k6  -G%3$v}=B.P@r5XQ2D/$EɃ *bλzl>ZЧ/um%L!գ f*.Д4)ЅhfV_ukt]H )Zt WO sf+ڀ_/T[49MQ }Zج9Hהwyn= ^՗]4̈~̈~w# 3nTH\uq4iP2 \`&{ YNeex2Qȣ􍓺Ixw(.Cm =_en{s{տR!0woh>C̷v`#<4H u{j&L9+p'FU8Q; vcG7Ǝ:H-uC8&G-^+ًً5y=~g {acQ$#'U^_^q|ke+T@ ʓʱƸfҸfRn\؛$tz;a1Y׵ϑ*+_su]wQ; M~~ɡ{Yw_` ǺƠG>[֫kޫuo6uf}{lV/'0MAU_tD~;!M_f *UZ%$ǯ,HW; 2]Jx}VPJDpHl]l#o@Wqňڮ89{ i,uKًhF} !S~ ۯb]ۯ(YTTc>|~0B=[^ACUC^œaB0&JF&Rx]sU(!pW29:O 'k􋲫-v}n⻲>%Qw_Φ8#+n sozNgZe]5vH R=o?>tWhf12h9m}BbO[?iSqt]08CGVn:yuzJpQi:tpauNH|WZoamynA|iP|קknwq9n 9TsmγNr搯[_$[G[5޲"\#'yPP* 0vN~(\'CP`ӴL1uI䊕l5m.{I܄yiQ`6Ń)۫QhpyX?-8Z˜1L΅w=7а3S<=)CSZ60uЅRޫ_F.ƟY,9|ȓPyZ;DAg-&kW,{ow&&!X&Ejn^/xEnU#qW16^{Gҏ5OƏI IpYBQ9ܝ&mt<=X{70|Ƞ ZD nZ.H E]:/.e8Dina?)[cW Ѥ'EYԨ%GXAK SWR ВƢ%I1E'MG~)1S@r 0r5;O7H~A'qKL7Ru`'8 j$(iHI zUcȅ -?v{sԙ9|2z(9靈ֱC:E>V[Xmmk<(:c^[jGlq8l1ռ,FNƮ!)7̡d8*1Sf(c%aik*: xŨ2uSJBΦlΦu:ir+۱`D ge[% a 4ꬌIyY=l/]ؤ ^7qftb#86X+?xBh8 I0>ُ27NEIc6 D &IYģ[z"m~dZZF`&$CBepujT:ݔr |(ce,O{ O7aL(Rfl.}*V_k zb@P1 d>k$ } H ?K!΂0Kdj^<$4=:9)kMs7R=F mϧΒo\0Wѡ5!IMS"?(epk۞$|!SZ\z2U>َ߸Pr7s>[x=sZ\5!&?HQyh }8Ժ,wzk4ed)p؉ 7D5 {AwU݋fJ͡;꘮/aKG>!!nFc lF9p&L3F<rGp9@~䬎 F`+ȉU<3rFFNߣ99!i9:-4q|j7]qMwLٽ^׫jՖBB=he8`ejcQSSP'۰j]¹U>HkP B5_8|.sч?̐IxaAI_5?N8lj-qpCHW19_u6^߻p}>̿L[NK”>ӵپZg]՚H{4941gv#:ހ@"D/EB 4F$7ԕ{A4:p` őK?IQ%PD:Q,@ 5,{a|9xm)[N^ieTrHR<ҞGږvnWP4٨&Z(? Ue}(;j*8Hj VVOLM=Wˆ&,/{4-%ߦ.3/(l/cub(qg~$>(<WKn8|)H<+.~2w[%?i 4ۏa zvD4sǥ ]F-@?ka"0Ɉ/bZP`6_jEyi/Cbl-:b]!ʰ / G 8d͵ƺm֖ޭt]k&޼첮#ѧoKS\$?6JIߦBƥ~:0֮^82f5 kbXĮ(3.. M 0мӶkv7*{%c07L5O2^_ (([txuD»&|3G$tAfM}˃u$4~9قˋn*qjշxŵ Wo&~!\+S8 zjNQ,M(ъk Z|ݜpW*C>3ʈ \geu]{"jewjvpbuªV૷;t]Xbp0mE2OƼ4Q K}>F$ a{ gw@!:+͑Q n:~eݣڌ:uz5t5p7sj;+]2pGyR7"*B%DE/ثVgJ';| w$iV,c O\B@=>Ꝋ+wbs>йGvPK뺖uX2j~B|}38vA]' c?|q,FTvz׊;89b^NkA™k|- 8^|=<mqF gm#Ti.MfLew:F=q,+0 e}ATt(cHRPҦx gLP G 7"J畦ԟ洓qhX+M6@)SXsfߣ8?ɢ8pc|OAqM8c}C20hq_>hŧO9*kgnQAlC$Mԉ9Qejq[R~H M73J૟٫ܬty)Q6<8C"Oe2C+.20c2g4BSQ;pSͭ QC0Q@C,xLbZ澐H`әgvrJwNjNKƖ-uݛO㴮hgw s/kfB6G73!?@{k^wWaѓbYsԸN B_IK5&lp7dFiS5ހL߀Pگ8DHɏi B)< Q>pݔE']PѮ) ?0u n(7Y2D_1pz 0>*^x.N_&ܬE`dW}/{.^^3sYK먋SJJkp]Zq=Jvx~Iަ-"“֚ȱa@+tlpoh즼b fx]q禰É̍q˙L?Y-Y?j;Zcc4\$sPs:ƋP/܈ju"]LUt _pȫt|z,VY=-?ܸHp")n b8]_TXbEX 9YEYkurGąVvk?& 1q.ޔE7gz%s()F}>NcsiM%4}k6ZKY:$wu ,F[jDvR dDGݚ=Cm0_p)-8p.;5:/]_n#a @1w5CAT놯!jWq߬/[C"0x w |kưIg(T3*J"N^bs|Jvhu'~e$q՛$'^S 4 SYP5<*}](.D_a, ˡD!E"oS8LN.Z:"kHU~ \pp , {1evesޛj} ^5,mWVxhtݻ">r-I]p)9 x9rl&ĵΊp~+؅$Nkk 1bd[K_)QF2:7Z‡ ~x2X]DRMF`%(kL%~?1!S9dܻ6<%6η?J 7'B[KE[N m91;{+ Į7k_#7YZ)8~G\8Ocj>zN9X]Y2l vn+ƻOgmh݋KGT HrI"85^A9G$"$*>wu.SZ+1h&.i[v9\ꎸf֭y !ripڨF_ L5o;,b$[n_ 7 6AދaH`LXW y݌IUԣɓQkE\?zWڡ:n Ǭb(oS-*բb-Z: mkeR-3SoOѠ-Aqr?Ɩbj M* vB lxD"{%98ej_]kWؔWM|`[le\ŹRθԚ ߔ+ŷۿ80OKֈF ^q쾂űvQvuŮޞRzgIH.=*`qd'W❼rQ u CN4!7dW?iy>ZLkVJzZ(S3>]a~6JMCw#[˘lZϞMK5/`L5OmoEBvI1bh5#Ʒy& 1uݻ6YwUsaF;uIb{pmYl,t5ne|gMC1Iv>(~Uh']%"ӰnN` OLM]` S0B5RDMB$9Yi#>#^rFܻs_JW|zu9SSU!7W 뾹BD|z?|vCvRLѽgS q4u)M):`jL8(tXJ&~_/8 ٤#;ҨeZ{6x@;Az}8w^灍mΘ*%sBOnas 1y_Iw sBƠ\ʖF޴(:N&rTs+*t'\50I_}8JDEѮYw+cQI$ko`$>^jl0yUlV-8( PֆXpj4 .3WN( !+hՑ%J,BiOX-R:~Qr(ۇ⹽hHɽ t4ONy]0 \aZÃٸ(Gnjueux\ǵzm:{5<. xn([OcUzԘƧiŧk;3ټ1:_٧k7SZqIK3 Wg9w^mPaCM_9 I"IXpA 'zWy9^)= ).ERʗ?2;/R2U/DMGj搩sC4yx"0%0X]s &k5W\`Q}j-;- <05nXGL? 'ci],=yvlVUtMxCx!S0$С <ڨ ݊cŔg6L7 )+&RέHD3h1N u*u=D2sBי$e~vx9P\Dp K*nA2A##%n%8dR_ 琩c 5y& gOJ)=yuLe C|nj ~=]6TڇeJGI\;Wl96k쵒$y]kLe p:e CMܝ@r1H.B;0@d3QJ,!SNHE_j32$e}BE 'Vּ _ S^ڂ~K (I$IsQSESv3H-Lb@f0 bѯ'k4lCqk ,OK#f!{㗰!M{| C]a`!T7q47܏!SÖZ&0k"{!#xiQ#s+TUzGD+a\˰e\.\}s!S3|.4( v\2 sBߡnjn)b 1לXo^ې{b꺷)o|7SI7HF:N}vo g55tlK@!Ƿ>zgA$"G26Y$TJUZV:Z3@Sٸo9 j- >"KUZ*k j \ F`Bk h wƒ[W,u}tr0+޸&s9q~yQ.4n]̟q}3={8`f-t)qdO]t>†gqL^T~Kڗ(qH= CKB;?,wBS{Z x>]{"#SJFZߐX\AU5Pr),Bp@y7 MyhSјK|ht25O-Ca3&1O_sJ队#-DG-rz~)I3ɶޝKu]v^5U=iz HUƫ}Vn+Lufȱ_430uqU dkA˯ ! $6@fHy)EO0U~J4'0P3Acvp t: Lhkn&[[xS)C4UԪuN$Hin}~Og9\ r>shewT"xe 0(vAK`ĦMp.y%o-e zT;2VLܥ w[qwzn{S% o.oHc/ eⰡmD>T9O|2p̮)0/nj>ỹ&8N9;2~@RThuamzǧk/^j<KAT|IwҬjqV8dxQDY ?vJ2ռ_o]slLмݚW}#Sj&,۬inh/n'a'G=m[=T:SrE[HyK.fMCU9N 0ӿ K:Yݚ,tn/`Wmb[mрtOYJ)/EHH㐩fW`X> ]OӘA"Oɨ73Ec8wj uR^1VF?& TOלuE?vjc2>"BpvFU\s@o9/y 'CeY Nה^+鶍7 Yemv68pURYh[iXwۄK,\8;G-XnQz ,rpa:Sn6aq= V٬3MLs!/8d*_^HJJ"2PF6r\SÍS&yІ-*;)v2bY]!K~`^)"ʲZ˺;CmWot򕆝1_|8i{ /f!s9a>IY4' ԯǨN_#ϴ#̧f]wIjvlݾ gCz$h[P%ޤ."MԚiN/5u *.m&^-2t*==JthB!d4S宛jC-eŹ6hZI<.転c3Ѧ^]Ү%WbQ'ē\S^]gH9 KpXm7iS0?* 9' 9evb]F%Cʿ`/^źKVBHLe%S nj 1cļ^3yԝDOJy=8*Οf?xɨMOIHeY+~X^4Obz唉B yN6vC=|Gi?L3 Rzk!PU]ֶMb{A'# pV[METebt</|I/|SfDFf c9> ! j@hC)^xm &nm+fbѼce;$ce_w8_f# &>aI?Oz&%"\&Fn{E'~((t@vA`]?dPs7/2՜*L2ǼI񼄟E"/H:]8܃ &,!?|.jzq Oc|.<<@>).!]' !jqm6b z3" Dmq@er?2h@KX&iEIpK~'ßa5ud?&D:y+` ڃ!]âm ѶjߨmA/yGnUl5ѻyhX aGԇhO^BOmzO|z%<8F,m։c=N>@ɯJSVl|DJq樴0A^d$+`j SStOYv2 )[a]0Kc fT%2ˀ$| ^'N j{:ʒ~H)=-IYr=N9>YђdgGWZsW\H1 0k%?05ᦏ߈1tҦ&IIw$I9w / mЪS`b_+Vԧp֛7^rՙ?P.oO>R&4pu`xbwWx?AdR֙#O;j#;2:%aYRJSy}w?^^ ȓ0#Zć2"C2\5|me]8" DÝpnxux{T:O:KI$ @Xs3P -hQ}EhQ7ZV1?O S]% !Oe¯5b9pg 34o"ġAgi{ 8To>"b57I#* /a HL˺nW}`QL?e?e{a8BRkp5e\&fxW]D) d]hs"Qvgj >+ S1k|!΄q`j# T@֒,4eP);׊ u.ntuBK.?ڧkѵa}_.r1X..sz(P*XpЎNϥW&@5$OETE+^i^PADW:ٝݑt>~Ka置8HW8fƀOnK~9f?v41{t8f3Ǽђy/A{(lk6(!sxJQ;@}$ˑ j~]&2sC~&-HQ[<ϿGH[z07˖uzx߯mk/~g q{ǧk9:[$]'Jxi 8.zYu0S7~?.ÁCW3ߣan`] X;J:X& E 6,a1iKٮ݆.KYdO3ʶ9 ~X pMyx䐩FGPzg~X4k/}>ԃ$nPj񒤳IYJM׼V`ˋ!KMo= A >zH>~+ hȻ&m5ҎvfD*e3%rSSzp9=N=L-zt-Kv\ڽmH;XM%I/^oUM([$<.Ï&M46шqg$-,= ~Ց8G[ litW% u: <|J們<r*C'xigj93rMӁ9?NCo5AN >4Io޺h+g2K@TnІ8gSTSYO}#^|ٸ>E8?p/0{ӟ~: %4ۤ,+<$+͹ڜ^GI$IJUi{^A TgPg8s9x\y'Zy^],(A~B AN_*S/5Ɠ42'|q:>fQϦ&_2Ux6|d vqPzk9|-lrPh>}d}Ͷoթ۶ O1B˴"\$-'~Y^98x B˽7v9b6'̔aCӀ@&xe}e>KQ:֟f*\~H_ҁ W01$ ??i搞WeDpH~Yɵs!Ul+X'.WOb)߽'\w{S'ROVtOk GBIz#q/;G'JO9 ״킣~#>bCϾ?,ョ0sQZuj,a!Z^S,uuݜ&tl}GkCrn{rbj{sA×wٌ9ej{?M{9R?^-#~Ÿ<0azjE_Яdn=j0wOzq/Cp C_.F,+/N J8*HY'4F|lo|I.eT.@;Fi7 d?iͬ^g!bVB]$o6_v,|2Fg?ɧ/x$٤J0(UCG?æ~(=Sq衈IK)t3A[-F/Gs_uu9 )).Nm,`oom>#FzmSU gS~g3ۧcArWv&ևNjru^[]ܺY1ƒo\k]z!WRg\5ow_ c3J(v]X"5щK7RҒJ [RצزLs}.&z{=5ejô-|x-QS XwEw:,DK 9e0[5~(40_X2K}#/ګLjob/I2ZRڈmإJh ZեD4 ~`$U~ikBH2{ؕRY2eJo<:*cbDnFYJU&jOj#ReME+s)ܴ1$49eƸU!~ˋ!_!Ƿ;PC6b4|-{C63v64=}C6tqH(?r+α)y` x=楠 3iD|!RrI<}I=RR4&{ZWS-6n|D]! ]ZcHZsbQid62`LÝ^u~x8UaE+AT!I_f~#|9nW<' #v)M_C(+rRztؕe >}&υ2Hzuuep~Xvd3FrT!gSfL5)7Q0@Vo}GЛ J˧:JU|[z#J:՝U m#A+u 3L/.MuC x(Sg's`S%pZ|Mj]Rk^>0Dn~ e;l3;g);6ax*_[fRS>~*VDCj w8ig`<+hH&Ю%%guR -qi1J}M>VϷФ9<ʥ/Yv1(J.-Kl(vЎ6ImllZYf-'u -sbOQz?XiBKv ' 0$0NiKolhsiV+BWhw'W{Φ{ڈ{|ϧyVQ}H=s@9 ta(eGyG+&t Y7kpVf.Bs Y\"稽;& Vз1$n.hklmjǞSCσ0 VՆd>nWQNxߟI Vv_GsYW{{tJmڈjy<l%fgG'L#T UtN$x:֯?Y" J+(ղ%wj շS{STM } \gͨnPj_$٢Ԭtve@ vNf;Z_  B!}lmxVVE8[],5]fJ[J^ I/hL$>r/ kBMx̾CcPEK<(éqLܒ.7mh-fKr~R'4:S129J: Qz>h)A=gYB68B*ΏJSWp!Mi\HdL e< j*!*tir~DAuRNi_q4ɖZpoHhdZA!%䇄5݄^2v {]kXsY gRMH}ُ{ JI->cvDN` hCc}g j!0P$T-WH$( !UI DB($ۺUw厖ƆI\m,{ S}[QA ޿vnZOfo86877|3cr Yxp;]:NK=;jc<MT Joa73=L }NɖiKE;Yt.q\!}8AT7,J|YHU(4yvZ\rla{6vRZ?Ka=KHw6*5{1~hSC/U_st:t_,,TYJwKfHd6vlW<_뵑^$96;T\*4*>]DH&X:ښdަǔ.~D MF}v\TA=| %G*$Giw)T "SEvȃ'4x3寸ZQ;QHROudO ֡6p'dVpv v^gߒhk[~LA/O `E0{pm[H˜BGkl )\,ՃAe8R*ߎGm'*g5 Ӯ(#ɰx%N6P-qv?(:(A40mᤀ?s_k1ކʱFՌ]vU-:´C>\SqP0Hk(/L35BR+wHq7t»gqb i\gUFO /3A@hѯ#煔[oՆRnXGoYB\نw-;'NIu"MΖ>`xpn/<(, я>d/iO}]KעWrC vٜE4Ik-|큛D.[?S@׺v3{\o=vBRu1[q1?zQGwɬ_ x .;l%D`J৯' @E(&eϡn%! :@S1 ;p &vIY]-aKcd=dOyF>Msc2mefe2mr %\s:z {jP#AWGh"AWGhvX`F[gFAVj' HNl8 &0αP}H>.?7?Dz,Xq'O (gӢrU+udfXf8xr\Y:TmB,?N[ M{Ej0-Um`ۃ `kMP_Ss|_2䛫|׊Zk)OKe[W+gv+Z/Z<3͝emcnrpEU&KzתБ3+L7kf'&<tJS%IJ} SVnڭTK]\53/4 OU{UB).ފj TQ)%}7L!UzgHd3f$ gP4G06CPzyi4퀙BM= oU ?_2J`v#6gNgsj\xݎs Y_d<ӘqS%]LѸ'RVVn}y&/TT8ܒRdW÷+َ]#S5'@/r{ ލi^ A#2a1YmG{?Pk+QꀖtN5~T:bB64G^pt)KȒbX W9~m*#;אoו8j2@ɗьgv.pVᯔ$ʲLzg헹PER3`Hh;QZͨaxy-"82[p) qٹߣRƸݥ'HWxNWں_ᜒ޸7rjHi%1sCDkDPAPgG ]20_'ɝ(Ble#<nYx(?@;jY9 ' Վw&Vx%ꭈ2|f 2 +jZq4$c:?%T"ZJ5xF @? $STx5AS,x󍞠nTj^IfHlWj"~{3$K#QGKC3(59hKW&6O㷤"c:`s[:+6+Aj#82JG4k:S<{z{MR{=$)hXx EŬw cT[x\pƧ6dN&6T,pM~=]Z չ6S{EȘh*='8,JCv&cw4u呼: zMbQED32٪|qUeLH9l:)n:_6)I& *ƥ67ptqjxВ36o_ܪU`{0C($ >%8)ތ9@'o>u k7%%w,pW);A1AX};Ap F|S? `Q %(4yoߊv B%' Q;!֤xMg=LZ4\ɦADx4hӨR<;ôR<;L'ùiԙ Ix>@FB8U6w P;?TGQVv!~Z5zCoIߌ2Z;K"ەh<\\/'FW<á*7OCg 箲Ab Ee`\y. &j}НXaõ>/4@_ϧbZ_;B][`vx-R |oh$.oTHv r:=+\l h91 |m`E>_:N_xʯ$ʈӃq wFɅCxVx>" 'CV C<-~h#޸r2&?4 B7{<'{l%1Gن}R/y]Aonu-@Ѓt]$FWfaV~у|exMP&αF ڼW:w<y$6`{ߜBT*;w;%)vrGV)z'n1|3ҿy-2=B_^yd筸H9k]iG1:=; 0_Q+)տЬ-#֥>B]J7+78VQ"]gR*BM Dә]uRu '7"7YdIJ:5Jy`v82*FCC>rš,JXE7 tZH1i]A8>FkLM $_Ų3p1iuDQ~[ I3dF)M8D>6nĪݹ]ҽj[VUٍ8a$n AօfXw ?X ?"n.nbOS~]kHB10.$|rn"&,Te|D @f9ͬOS%CUuڑmCf{M'NdN^HR5BAe):y-"ׄ%3 䟙f3MlN I:P4C8}wZfJ ɤFBMa`'l(#FrxH0ZϙRiGo--,- Yxe=^fYAeI'IR]p5!)u+MVBaJ( ^{D>' ,cic0XOJRR/|[=*;,J>\{ۮHq!o& зgFRMznznmL~E~Ǥb)`gātmgD0 tQbszr%IHRY-;{slʧ7hU60v -4m5B[5ZǤ#N( ?[S{PS?" {F<:.=#}Pw*+qRu6]-a:(4[2%|Ŏ=™Ԏ#GC{>=Z-3gnp6Tx|`@hߙhĢA- jK&OML-Bo.236q_xSOpے:2OVG7dMݛ t4A| 53~)|ckB iX\ޖdzObo%?u+b#nkL 0X#%W]/^0`ziԣOJMPRʔ뺑(PXkhõEGG?vE >ޮyM* 6@>D-4y-3BA"k5]4D<#D,dr 7epMbcM<(È7 OĂ,$s9@ߙ,88qwZ_iΌ.nuіpu.QFɳ{asW> 0S):9DQ'6rDdf傾Ph&> &"^BLŽS[(,9 gxمs^ jӅ)F(=VN~Ͷ&·Ɛ( B-k;ܹ:wCIPٞLAΈ1 +S7hՅ&y`6/ Tdj%:M%oo]={z [7ח})Xntun׵ص!dJf̺c6n&A֭ Xߛ³.MfֽFfEz`7mg2.D7 KvQ ) g9Վ|3O9E?>2FcV܏Ss?m, E)|?B>ݘD}h2ǽu:&lRlSlE[*U8YV5(U%zT)?j6 USé7FY(4<ㄿq/,Fno0)mC%YasjJ{&6zޡ))4yT4W2 èӿmr ގF{B6eG 5tUh[jM!j|{ж**jqE*F{#NMbzZO.37U/ؼI~ecӅF'J:_nq >z!rp?0fLm39b1,Tlй/ߨTK-O?o u'yiC:-odީTߋzlܧEKO ͖k>-v5Ct*Lu|~ ERII6S xR gˢOd>B%NhBhsS\JU*-Ij;5F].O7/|BfadK jtR7us[.K:*eYJfwK~%5f*GLW2aW1w,ޔŊwF:<\G#q'8+COr)IBMTv;&v:풅|?t>IlS}AS¹lТ{^ϣ><uW`/}S@>C?㑃c./dRá۪9ozxa6}WZ~!ژqGJT j{D8#Zjq<}pazw-O״Ѵi7,qn}}* rw5mJs(2:UQ5FТM虄>{QXBEI*,Pgf\d67  Mn[FT~N֊{&oK7#.[l=l>k t&Ybݒ"B[X4Q#4~y,=.!(4yo4xYo O5%%5Ix"*!Twr&m+/"Ph&r:h\hnel87h#u1n1n@HChnhsCt벓Lh࿗u@BsC,K 27$LAew]gsC$KPNPNsýܰ//MF}uR{wO~å|EU2]׹82{)~ISi~a)u@I7#@JC'R S-ZÍA&~OEvaj6iR8H!Ϳikj }(m;IB9Ҡ=w)5`|nb&ҷ^BB8ԋJRꓸy7=h-_{)uRgb9쒧݂ԣ M;&*vIV-W/6H oTABFIRS`'_=RY@B ޓ/Ury_$8iZr v04˿%/KuoAɶ2d䇿& F2m^4w!o479pF8 Ń|`d0biױ$Sru+DɳОB/!cz>X]_+ȭcu<*LOc_}mP4yYb/~ `E|R^Nj&!IgtzM%ץˉM#E.F-e7 -_2JzE Т&W7 -W#Pn>:d Z%wPF+=B' ΎuPU7D:@zs߬xW?\r7ywǏ 5Ə-޸hY$Sr8nZz !& vΣ[J},pvEo_47y|?(4_W)DK!n+X)r.7]l}ܕFB5hY#2?r[3r8A˱xukۍ L -oi!ySSݩgТW𝸌(D0k&iXD˒N Ϥt, 3#92*5ȷ_; "XBǚx'w)MOB# T~̹aϺ.䭈VH x]$cM^4xMC W -!hs̲6 Er3f'1*I[(UW>\)ﰚ5:7++6VT^Q00)5jkPju84Ļ\gK>ZW̨ztڱƌGp!7/t ??/i2ĿY^.ouйfPzl]Wಅ \>i@9U|IO|83XeL-GA!,:oC\|cPλ0L* l5УL ?=L]H]$yP"IB6Z wRMfS `ڏ B N-[=5Z=n[o/'cICE 홯$39o9 Mm 7M=ɛL|*I]a6Tx-y6xrJz# B ?~F&'zm+} iEIv=ۙׯF~rw0ǻgJ4 O~> Phs& =j72ۄ/NEӹP|T$}quRBa05 Sk7 '<@T:Zh9~^Gꔿ7\Ax :B}W%OB| 7M]|?s>30m@AChV<5d~ۃ뺸~y4"* eᗧ3m,B3K&+f!eɎz aE T]%SInyg0$B/C>x׿R.K!ڛ? yF'o|b7QOw3u:X`.+z0Gۍ}n=D,goɢ~qЯxUj* COq',1 As>Mh7wh bE‘;c[ѠjÝnٗ۔%.qWܦԟ+f!VPJTOܪE(=(Oe$|s9BEvlWFP 69ԦZ$IuRjǠ#|%|wDԲ3}w؅*,@tHJzt(eU^g6iJ)oRCXm²}|ӎ6(otH5viW66 iá#cw#Au0=CB )tkR#Q|5Ruv8tvAmj;[=G$]ʰ]w~\kJ;.a,-)a4 c ~8Ca_H(őLFH}5-|_KO> ̀[m& $L.X5 }~V׵Wb0uncוyo - oP׀4FGTl뮵~}ht~y`yCĝ?قA'̛TX 4"Jh##Tuf)a 2Llu! Ϧ&~v#08|~~+t;l !.14?5u]?ڍ@qaԣtf(~%IXJ ޮ+OCV?:["ͭ%6n#h7Zb1ݞA%"$&`7j /ݹ}IH :IXd Y T&@eV*8IX8#4<+ ?4:!4٣0=]N_X'oR])-(0HaSd ooB̑="3.囼Mg go*EJ5вbbGk%Rsϣ!ssp@M1:"~5oi_`δ>$HJ9Դk&߼h>gAxJƖk!"@:ң_g _#Jggu ߎaP>0`,zW.An0.I PނRșsJ-RdjnE]6"Eq[HWB-,Hi%%)r\L/ yYȌy,Ry ,R2́21|CU;J9K\6X)9)c$)Yw~sσ\-%["Is?}^6S"g03foQ$E@B-IDU{5΃\y0Zyr7~& 9Ax֌r,(!IJRda` g/3q2@9yswnNԳ(Ex;X\*.o3ƺ"ň/1RIIb&; YPȒἹ `Jz fdJ0}i._h˼ЮҜ %bo"~!|k~:G["YK IekjnnE.șAqqErJsY$kZad[P(@!ulY dWR"YEq^T@)ռy9,1"Yϙ!CfNiEސInț1"Y'FM. 2L.́ Z'/JLY膸7[$-y9P[ rrsKl0OsAMCN/[`a)d|fQ bQk)!Ir鳹 Xs@NZ󐡭yּ \֙y3f Xg)C`J0u&҆ufVpV1PuV1`4k~μ|yYY_A.~$hV@jΦ*DP,,(⊱m3qSP4@qn{b%c4*Q\4+XZ8E(JETtQ1GrZf-.Z\4srFP QX.,*KwI^.I.N.1Z[;./ɛ1A i-SdXy3r ülṫ \f>~9{a&av=g~d~Z׏Pɧ̇m,060||Na8 LCI?ξ;>d,T %(DȒldL-[AO.`[־]8jh1%`Z8j bJhIQB3B8 @~yݽܞq;ߙ>eR{&0N =f-]=^BJKHi[_R1p4hz[kzRJ9xlcKHݱqsVIӣe4vMM|oѠfwi{:kѣ w2nG#kIuͯH@N ά+崼]X=E˻J\R4֧RKk s KcCv/=oZҨWz)؋GgȤ O8Z@+p!| =$h1K wz4-M0c41u)h>I5MҤfQ49)BJUDU|>zc)U-hXR_Kqбh>EͼR@rfE8Ȏ&13:]Raf )T>(Fg+,[ " 괄RBSe1ՁU^T.2<1Ғ*T )[3U» I6 k Bʔ4LT>A4#.1Vz4 m_e(>Bz4d+V"02Y'@ӜjR{!@. h4 J(S{UW(SQ؊zv@Ɖ CZJlSJ`MNCZ mRL@i:Pmb1Ȣ2fB@ʕ5mC`z]Ҫrh5]J8 !eZN3 22~h@mLvstTe&i5cC`4tefC } xde4HH'0T*s yy`.4 LڒE5{T- n ]SefY c2Qmc^-@ƀmv6l`¾N(2mڪA310`CLS0@@u8 GЧe4T{XCKYzYVǂe'8!`1qڟ6 ĺ)PtNZej!$di5yLBVVg]؈mJzk:}8Y,⬮%0TDŽ6 d}n<7dx`fzӄPVO>x c)X \BB I֙ZUjStjSqHPj9%$Ԯ*T,s7qKVuXu-bزsPjPlIqc+B/|h90j! -P=\BBy:Di Zd4@e$JHheFڔb.Z =k*5*ԫ w,!!rl9l$@@[˨FBT!6ZZf[L*C4D$Uf,mib-@H1,h!%ٯt'a4!fg@lPFՓkb[QkTBi<8i$B̾!z6>m*5bB .PJ6QuiЙJX# %՞lڰh(ڎe;OjB J ~O(it?4 4T{9ӂjTRA hP/2ћqEC{kXH{9 4CcuJN #C)CK ,cKnPk}Q4tgHۘt i故4&uBZa'` ѧ"ˌaCQABhe/c h<kܐA3it#ln2ѐ㝛}c!Ca!02gbj@i`Lp@>LW} iFCfiq} gd;b-SDZ2BC?04D+d"b^u:ab0AC l-FBa90>^)RaӰ5vӠWsi+[hXа4(ՏXyͬHq}WCfA6 [C bSAG*פaG5, zlus)ݰ:X/b*yQРUCiU5{aAr!3S6Y HOڂa :ɦs@umg3;4R`\ ĐYPaGR*m0vm&QҬd`G|!LZC0HAHZ )Lˊ AXhY7%|0xPBHfY׭ӌ/GOvy&! ?w\9-sZ|Ι r4.ØϙY7DG{+D}b򅺡e]B*c۔tdžҪb1\_̗,o3t]M8KKHbehe/hW/5z&XնcΝXBA*pQҬ<+wZe y\mU_M6shzA3T[61jTwӰkFf 31T@JN&Wl9^ kE ˩i; ^XL {Bf ٬M90DZ !Sfj(Y8  =6[Zt,G!BU귢/z[˙Srj%:{Yi1wf(MlL|'ۋD9h3VsPڃ9~uf?X?h~קT9E74/A4/jG` }u/A?&M 49BU/e~w~g?cl-Ok; W!g*`w#R`]촄W̼.~Mw)Q KHQԧ &ceN YSA]G^xJO-u#``@ȘƖ#{"Odq,{eKtǺWu22.p͒YN+*MF4%%JHS?]B"+ݰq7hC罄D]JH2j-R܁ZnDbPP@ t(˳պv `!պl%FՓ\qD@p1kSN^TFlȑAFa'nFĄ,%" vH"ea@6V.(G @#T!/Fr47+S^p@w>ߛq\눂|-Bj&u*:LbgRER XnlrT"X!I%e4[$eĴzavjl8^c3"lyM $L8hAv"` bC0zY_K$mnJB"lYCf8@SlZe"bQZT-@U0}ޏ32#zs#MmBLacI t" c 6JڨΦ4Dp<%"`a?@lUI.QmT? .'_-X,%͡ rl,(bCjbXS l|`ao`l/4j|쌡3%ދ$fE#6,8>g"p_1cMn:'6DP>dmj74XZ*KUlhHZRm ֦l/!)-[TaYa(ί};7xjYhPYH! pAx*\ * iP;~u4^czsrwcX?-6,Ksi6ys6\ \aْW-'UphN#I"d=`@0Tԥ4d CN3 iFg6'f&W0W9KHZAU;ai&uChIҚcTƯUf;Tpè}YZ HK*:GCIpFrE1XqTjNŲɱ+< k+tb&IEjJJeYK*T^ &`Jta~]ELu \UA <W( -b^_zY>*IKBQDCeNKK==ŔX3G+RE ̓jB\5[h8wuqWpr;ZAEӓ&HqWAۡB5 BWbZSW .Q&*tbAPG N3p_遒 &\\Y^R۹=` Է&Z]X?9@F+ `;:UaTY_vV|^ZNe+ِ0d9n˲{\h- aژ#ַSAM[M9#Ɋtc@gnlzT@=վj?"6K}7DHl q畔~40cNo !u>IOuMPuul΃\ftrHԦbY55y~;YVJ*7_ \f\s]yMFJUB *Y%z,56%r!D+pw%8 +7P s"QR:S+4} ~ .d:5 J3^ٮWkjr2 eѹŧRxbV!Q31Zɦ'pqQlU>'K(z&]I4jęsuWԂ0:Wb٤JUOkC}+S.TTI;d=╠ ud:ёe[_I- ĆMp(;:`fhsc p*ѿEmXX=_1,%p++Tn> W9Ε΁D+-_trӥ&j*JȘp KaGJ>_Ke7h8lVn¾U%6EO0wwEKEuz帞L""ގx6 nAq+QB܅x :ĻA܇x/b1dAaÈk_x&⭈!8[oG܊xeGw!މxQqĻ!Cl"ލxÈ"19q6ĵsg"qvij@܀xq ❈["^x.c!ލ8x>{ vDF<g"ފ8xوsߋvĭw ^xq❈!EG q1&݈AoC\8x&{GoG< G މ(ew!B{I;"#z\!Xm/8a&⭈oEqG C"n@E܊qVq]MqÈM[#!ފx;"A x>Z ˫9^,W鎀+<(Q!sa||^%O& <\eBz 5^|qNHW O ~DP>~BH"LSSW1!}I8o. ]-g3G >q% ~XH%(Q'nG鎐EWxFHY 6 8'_G]Bv~U B~F.p/yw>O[1]npx?B xp~RE>^(_%| "&b!}2[a|BȯKQ|22[:!˅U82pR8, h7C/+tG߹B|!J<  C_&W Cok| s{㜐~Ο$@=Bg*!DŽ! ]-g3G Cxa!}~g Gp U!;B_!!Coҹ=qs.!}x}*!Rs{.p/yw>O[1]npx?B xp~R >,Ë~sB~B~^{Bn* !.G=pqNHr!toοE"ʝȶ樂ܻ*oF LM 8瞧7mpS9گ3=⟱7enyD[?@7WTձy]8'&#׳i^/9T%Y =4=Mp_쪺ћݲ%QU VUv}1Ul{o se6>oLE_*ָWႹN?JW&u(k*c5U|WNgk$AYQ_ 3Fv<2^4[VT[JFпŪr+~܋@m,E7P\/7E0֋;/B*tifNcME+"%/v͋`{S"_D6i5/EƷ9/~^(5= M%4_p:vkj_nMq/F,OXr+!ZZ]8v^:L28L*&m3^M-$`SaWEMAӎ9CD xXUVI<<t.b "z-U]$ofsuRMg^'^wwsH%J)>:tJ3SK9*6FX6^'ا&3^ A|=Vޚj [̢ӂ}CvRѺHXZ9\ pۑuVVT\V۪'iDsl*E^>EbB`{6lՎ5[GH5.yԉbN:!|}1ְ%3X{_=YC-ܼU95lMJd1v_ C}{FԀV]BZ5ޖׅstFͨgF2>Zut}R_ a0U.j*ً~W5&/wb^L'FcHVN1l}Յs2hbp/vk骳cy1ZοS'c5ua9˽)jX1 #ҩq964@[H6=' aԻi hz) ڮe_YPָ"1\&vPg@Ujp+KH l9EB^SaC*lj\{I|Bj@rlMTmZmr%&5*JGҭI%6$^KI隣)ebva5>ǀְ"|4԰m"ڹMH ŢݰaXZ W]}Ska pAF%}_4mS!NVW,'}gR|jތþ-[[7ek󽷋E R#̏jeĜּ(fV$&* (4QhՂ%l3ZW{Qaͣ4<|Lb݋r7E tJgaݽܽ(_I,󢨸U菂gxQr$(QL#(ӱij4(wn/__K7s]jB] ,Z&(4ߥ';(VL-3V%9؋ '%|TKejٗSm"ֱ?2 R+T7]Źp`)߾X$qhQšM0oOsOq;ǭ 'Z >`q0 tKEǙGQfwhQu_ZI^}$7'–'q2vZ׫> 柔ٮ$^\ʵ8:;Ҟ?oZs7Ia*&,&/Nµ l(G_mPMzqܫ'km rTۙOr7cDϡ6; v- ?J\֛m'eޖz-?iaG0it^0w*܏ɩI^@$ ^]6枔TuFުIu8`N Γ<[22`MNr]ٸM7 V$Sv22{!qhM[Q ќ5Ꮔb>zi=.En/?Gs{΋L%~ȴo59O^d:λzFͬB/΋ gLe/84E:JERuvEVgdT/D-&bv4a܋LT(N 7QcɊ7ӥZb2l$ȏQUҞܧjL+ڍ_pL%k:QmEDKm3x/&Cp'{&|\)u=O_q<vpci Darh(+Y4&isΝ(:4vXYs;sIs8Vzs[Ƌ)LϡE|9l"1LOg@c=j ۹H0hhX 禰pSx0(K>uTBaAwtc=ʃ)$&1k;qS/vO-@?SU싅hlc~7^ѯZikMc-EO%z6oޙAb[zMID7g>!nt˶8r<6#cf)!STmm`9ehKh3gv6ŸѼEwc R(7FLb-%dˆ$E3| Vw67@FbwU0VxѾ$e~4-wXnXN_ xlS%'&ULMrv=@jXKҫUQm|bT]_Ns%~ii8X|M ^VADJ@Đ2#%'6\ ?@>J!oV//y=4ʄ49W&6!s[xn?oOCIߗ=b> t:*l4X/17ͽ)}x9ۍ束J,M/'eL^iBi(;yVz/a5-9@eC 6v7w:r])'1Z8&lGa>\wzMt0$}zysdZo:,Nhl7f6?w <H{`&MZ}?OyMP\t"u7Au~-c-S^pUpsbVPXZVy 2@75R*q[#xR̟ d<#oDYi3D')ij6%%y]c̔*%$NU)UC0R9S"gj> e/~/<6tp|?_ /_6@lbC$<}WjFb]qhZBU'z"doh-fP`qş8?$\ G'.s% xNؤ~J͗hM%䀼|8 ߁f,aH9`OE{r LBfnYۡ5&fY*"0!,BKJ,͌2e443RjenбW}Eu[o,$Uo@t)'ŁdqG \^b07@w)VS㸞rfSkzyAuz@A|栂g .<ݚ_p0A8X":O8:ʞQb-;Z߁p^/cf Nv[*ZZba͐jgAƕ}sryR>+ZyȕW4o)"#_]wh!{nC٠r;-lS1*ӦO@~ӌzS3Uzaހj&ͨOYN)(|' :W+W/Qo-f[:\UKΒBvuhȟi5;sG(V|^^OYGH eF=['Z4K,ZGKV_xïHԭ?s_+'ybnHmnG~ٴ=#i ⥡xBHqz¡ud;'@ё,Ge3Ɗwb6/)~U^mêh3ULX5]>LX\Lߧ|w$;sP蒢g.vGl1]SzT ӏۧͩN EuV?fEТB%9F*/8z9LN'njWGxATQѐcMGG;@)EZ,D4D_L)(|am a@ q)eCsZes7cƼc NE ݧCIM`_+j\u7Ѡr0H'+quu#-^ 7+."a6lN(Z9ֶD2Qqif4B ǵG]~g?q*gJ_/̲ܪsj-㿲M 6k2xW?ZZƿ<||mDZx>Tƿ?y0_)ƷXz`ޟ=>']/xKF2~x`~,}6CCEO.㿍{`.[=?韟&E~`Mx#NSu7O}<*ǰwQ̟v]R߈uA0w`) g9\ƿ0>ě>~4Tc?{R,uq0F5) fOǻmD*Q]w/`H߿ﯓb Pp=DMt-^/@%`;}Go yRYXfd \0_.Ku??#gΛe+Hng; o%-wOyA*.G񆑿J~M>VOGf"><)˥C8o],v5VD|^!KoOR?0 #V91?|3#`emp|U0W0A*~[z?uR"C%Jj$?[j폭Dtft+r=@*V`מE\,_uA][32~X-gl:A xu2Y^?}#Exsڟ](rW󿝻Cj!n-O/_E?HuE_sEHt!`RQUR$ i7\o?"/V{?zmpyXuseQċ^]:Cџ^G:4ӂUJ?=sEst#+1h{LJ? ן}T? .Ll#Eߎ7H? ˜ ʟuk~>R?#gH?["wC<,8,72R?1`W'J_|?`@5zt0H~[q/]{tc"/jyev__Ο3n?O;Rl @0u.o~_A:+8_pmY!_#>rLznw`0Ջd`ސΟG;zp?'g?q~F+"?od-]?7OG+_k!JߟŸ~$N?\ w\&_L(? dM_ge׿*d|A}Rf>Vӎ|[?m&E ~Z/zG2PGW?#2G~(s/¿7o_FHqgptYz4CvrWҕOQ±MM~"B7 񽅍2esonƹs[ fmv3S5y zٮS5!+/ 4=\-"'vck4>pBBƞ?>飕2?*,"v B229;7dS^߀c]D2UƯ mϯ x{N7v,"'\#"O="_{F?xܳG{O?a0y /"<>]?Q0?)}-{7%|~ {Ж/@r`Vk\0ڷvCƿrKgW/sNjoIgP~?neOy'>t}/ίO\!ۏ8?ZseS"[?9#;3DZ]Eߛ߾Z;_w=G3EO"՟ruE0_.,`_l<̿}_/Ώ_Y!C\`Rj|~"bM\;y燈|Cjގ"꽿{ OrG2Sxܻ_2{9-o&@8,?="?lّ2VlDd|5w'?#}q8>#/ӿg|r 3dOEðǧZߗH߀~wMzRg(}aSI/_-'scTƯ/W>&OzT^-2|n|iL EpFߍv'ws[?-4ǠE~Jc_SpI"X?Ǜ2;Jbmܞ1jwn,6GmZijo?p4 Wji_M}|*E*;ɟCqo2^YE7x)y%oc,(I!|ٮDh/״}8~_jL>P.?_ɟd<h,'Fs%~){v-!j ];PI"?Dk|拯PQp w,;2%|`a;8Sƿ _eo}(/A*ď2~ qsL |cdPȁ߻.E3.[U\"?-\-1ӵ2k"?*~wd~ys?Q_{_S2|ngs qbǵ.yEi9A@ar|2S)/?|s_pDB/zwy&Lpxi$|QLX/ 2&擮4B;EՑd/1Y|o i|dgO6O \*c}g] 2/K˄FHkh*YYKl#?Q2/n+7?&Bro=Kw2 ꮒ $ʎo>oE]ZXل:7떟ϔ=c$d?yZ~??KY5|~m?N џpxEȘ/oBr)dޜSV!ѿɮ>E/:?4a·D1x!q _ړ7M Mxx"$'UGh۫D */_ɞ[ȻN[+w!fOZ(D68OB/W?˞ߟh%|Qh!寿rŲ;/ N앵ש׿捓"ɇS0d2>'UMKudBy_BU;>XGT3Yc[~%L‡eTѴbo]t?M6-AO;Wq _3/;K&+O֕=6k„ ?LJ5y+?oB8|j6OzY;~SŎ747y$-5,_^,`_Ruj&\VΉ; iB_,1%cDY}?*~zm[o+}`::/AhY<M'^忔EKX,x|ۄKxsbl7.<+ [,Ps:5O%BR}BOb9ʟ>סwjg]% ^m.+^1\-?/W s;ohBgf]O$W!Z1O,P"_-=Ρ.ϴotOu!_B\U~A ? =?M?Vr­T>s{4hu2~B9Oobeu9-(_\U?-xbqNG~>{~\q,~bz?K OG.ion!ǽqSرRL+zX7i 3/~>ǯu``=e!c@k|+of~Կ2r+KQ_DH/h;@>`#?eN*!'#;Ix0Yf =oܷ|ƺWL8䷟SP?|U  Gwozm~?b΋o ][,[^Z--^Y F1{ D xG kIZO=I 7k/Ƅs /o?_oʯh/\v<U}?,$^}Wlד]x\yAkhsO'w#|kzAVwjwP#+-17Φϗcx?]g]c[~*|]}ۅQ@X86 1E<ػ&d$º4~>/mKTJyK,/KiW+~/Ϲbܷiw}NY,1J}XQ?:ZQڷ/?D{N;Nk'çMbC~lO?_/ (>E{[7Ac'$7Y?X"_|vy.h% C/*XS<ӾWBS~D|+OW Ď;Gw=Ș˟xn*?8onx^9=Qgu˟/'<:֏8X,q=Q8?a? uͿd?[9~&orBhrճltW/Ï0Q_|q=?X?/$$b|n%ȷ^{S+_]Xb3~B Mο_8_~*P?"_](=}oBo)Pbm{~w( _>9B.Pb&ଢ଼?E~ ,3ϡ7Bƞ/gJs~bPbG^0WB}U,q+8wy3,u}ʷ>,SoL1u#/gοIoq͇#! EKL_zۧ\T 0-%̈́ğGneA*пZ4#b*[ Kh* _"ߝ?*?LW_O=(%!`nDp#,9'$ aIYnD\r pA@Ԩx᪨xA {jwғl]]}UWW5-_, }7be/,JPxyU~=e3i#7w {-72㿣?\Ŀ v7п@- =P/p,=*b/e?ulJ'H L0S,؟bX6bK_py~П3п-7k ^oBqp ۟A|(}==gEo(~GwNHk&v0}{6^L?E}봾Ck'5>Ϳo HO`=of>>ʊ%/sU4[@%CRF摉.67B x?+yFU?}__pFpr>o3~:B>O?^SaII0]sea?3sԀCy&>O8{_- 4!P}ş{RoGѿ&}%O6\=w>"3|"L>=6g'}>?i{A5?)K틭Ow _eE G?w.k/?,ӯ@;dS g8 /ff$ l2ۢGj 0 uVaYi1Np1\>GvAR&2Z'\FF:Px8g :]ط3ϺPx8s5 oA!}3@6퇇3{ɧ1qˌ}(Y믠v\9W>t; f;^]'>;4&g?)~9}>|3J5b>u?b>~>6>. G7} ax G /  ?yB?W?}Vr[qWb[//P;ӯ~x^?A! c]~?-_|s1}I10̴O~ca*rQ4'LM/BO6*pÔK;}qϿT}oC7}>O|u*"}_? +'ߒ,p})э~\t~6ۥ?>-5^6->S^?e[쟆_} G?-w5>/?L?ˢkزe/  s)c";!%$L )?dY?aKBt=dCJOl3 dHkuG5ٖ>G?;-_F|>oGe4IqǯH_SՂW8;+/ |9}sIb|d&?}~~HܯbK8|O|7<\|^Z;wh_Xؾ_5/NE.珴H!.\Cs9aۗAQ0O#${L>A;.?_`HJ-.ߙ{~q cu߃b?uwU߶_K'X bBG`}tOwq){wa>OG-ֿ) .־4O޾G~smbt//"ͯX)}]ߊ N#{eacQy9?4:,7YʢMxXoq\&0I?Oá}Bg(S_/m8|GM_eѿuƒǶI]ßj1>oUsPx [>79G6+3ZA}b{w~'oCK8 {?Xt)p7ì~#}pF^&?C<$փˉ#_/V'b@?о%x"g`oX_~~bL9_Sgsá}~Nnyz3#/>b*G7QWw{& _h.(?[ؕb|aE G_W[]UX9Ƣ߅)so(?a?C6mQaW-Ư!Px箻8N/fgʼnSؾVR6.8W4g~/ݛ?h!ssϏb|aB>VOxNώ h]?{'s~AGTe8u_ASSDٵl~~>l?~>(ȗO?}8VTGXH~mpW>/~~8 sj>z~k#r~''N7'}](]xث*}Mv".noƟ~J_&}v딜*@߲O;,s?ΰ*K8;O8՟[M? >_?~w۪êcMޯC=jw[:%.TN_߼x~1џ۫r%/4cWi^9=wG9]Wί|}fX][-ӏ1%yIE$6\:-_﫠;qvN'>k|*?,}FE+{˩_NK ?`ؓN?#$N?\k~{3&,?kl-}5=8be11-8~yZ^}@=nG1~mҏɱE*}T2H?"m%?LPEϺ.-S  :V_o!39)_2uی PG'U&k>p7-pĴ ,'97XV^9}?͠UףZVO_FE**zm ) ӿ=;DhEV]*Hn EsU52TpqSJUWkKI?XLjhEx]U{',qs-6ky}O֤sp5"DTU?Ef!W+RoFHM[@8'ܕfϫ鯉W =RE?0 8giS{s o<ݵws;@ ~ʙ[c_M[95~0Nw >RѯejɕσYLeueI?\_?\E2UZQ} U/fy` Z/GElA^Uy=DG_?Yb ɂ }0vOE+gVY@?k;9jeƤgaĤ!pL0 /"DUť~(Uͪ`nH?g.sue~[y1au2cwUW!Ja <eoIBìϿˠnUK}RyZ hI*3Cf`kղG;NxXwQO_D㻿nHeοs8捵ϫOHQW Uv@Bx.n#ZsUnT/VE~wT3꿴wo/]E?X⍶>-Dֻp{8ELF&9E RD?Hn9CUn-_mʿ+n4gUZ\ܨiF\C?wMVwwqU~\{_!wwR՛&lZVmJ6l2&'MNMjjLLJ qi3|TYYU[m6>=X 庳c'T+=O /S֏ϗЎ(1.)dOJoXWu׆T@c?L8P]򧿘@oה?."Ʋ{G"4"1'Ooe2^|__v'oOvwV{Ug=6R˝Ͽno\.]]T 2f/W{{_?@5Ο?ϿoGkUpc,@ |?FGNJOVK.9fu}t(1@ȴ*mtRhA#@}699)]$!c!oP8|oc*͓|8``CbP,ojkK@%򚻶hOea|j~AsAG(8h::2)96@JzFjǤg0`Jrg yb94aJҘ1 |JҸy,QSw%e23CYNƝ4*ռ{+9VKKZUzǧ k*_FL^/M@耜wk|_sr).Uw.V__q=V-gcE /gF_]Sԑ*O9x; wGHW/}7?{Q"RB7^ȿ~&L Z3Ͽt˪?0{w*Rb,@x`%9hw]]/lp1?VPϏAۍ}q=AyV\˨p3݇<t:DЄ/rs^tL:o?gR;/< ju[tLj3V^S6(k2.ʗ̚^ ?~JH:</[ ?GK[.\SHtm]k? /W7.Z|Gg/?9{E>^9zi ?^gSoW5 c9N4{߬ȟOWOe,Nǟmw/_\u?.oQ~7Au{7_j;cOGB/"/`??C|iښaq&{c߁e,\QsstXG@DN6;6>sƊW_HZ|w*G.6>[[~?/>_'^ޭQbL-?7x~zդcg|X5z5 *s!UR@7*#fԷ5]Lt't?C|!< aCDhǧ; _*/x}Z]_^a]wl?`Vr>}Ej7]ӇC@aE%9·?]_y| ۈ;R(?"E_RVk#j|tF{/RD~M|O|'RĪ/H_Gbʬb+[?_ ompc:4v0arՉm% 6h!|?BU:ѽt~O;οc=🄐>?!|w޳<Az>|E1?םj|dAh_[P P= <`lxnh<쵳y~\ o }It8Q~>ziRBs>oSZ{{z+⻯pc 3ez=/7.ׯ>οͿj#xMEGQu>݃jM{`~Ppx;E&zuFJ!Z8Ԝr!+KךZGϼ'N ϋ#_6M^=ϖǏU( >햟"ȿ^_>W`Z;gS#^O>Dg:M Vė]j7S~]lPP:{>lٳgesa&~=>߿O?P8>޿興[_{nA"~q灏=k{^WShAW{&y(_nCkqw%|9 bl]SևV&A87+Go|W9Sף 'Wos(g~/ <2@{/$#"_wڇzhgshgߗ(Rbl !wwíYnbqbkO?4>nWFA'~u?f&|^rz<TB\"_2v9'7p m~op蹤te. !yzמֹߨח/sqewڇw'ٛPzweNl#|/[_oL&;DoDt~BeNj|MiQ5_3>>{<~{t+|ިmӤ\9^_xmKqEf S=q~' &*M$/tܯп #>ֿ$t.Zя^6Kf~/Yٻv &i}h:%ghMM|C#_ZмjGޞwJ P~OSp~eO(tcs {.{op4ߣoz &NGi}ِ?@W #7M\{r=;_oо56Q?G\ fFJ$% [yF6uz~{IU_{&|_[: &>~Lw{헏5pj@3Br,C+Uv P G#g76?@BTwlt&_@ekC/bKݏk W _XI_6Q[lo] ԯ7 i7>?nBOo=|R?Sf%_+?xt-j!"@"}dѺiDOU2# NЩƧ3|h=?ͺY}vkjG _ '>c/iwo!|^h}Iv[[V\!N>p{FS%{u>vƌ/8fx/C&>C~c!~ۿk|^vL/]vJŐ]ZiTώ>-grFC;tt] %;M|ՑOb[Yf'3/Q~<7OaR‘$_?i]xsved6W?&G~W0Gck@-;M|Ւs ?Gά.KGPaK.K0gίpa-迌7~GC~]'dq2i %_SҳRS)cFOȐ2R'3RSRLN>*4&}RVXmGfJ4&+cFjz:WJn՝:ȳIfGܾyc/'_CO47/JCjO8C/F*|Tr+}X_)+Ԋ̞=  S>VhW׸ g@â/q|϶YyЯ\xپ;/V9k!zu6O\I&~[5c":K7vؖ1{xJO5"0\9^odyA~O]wz }O>O/7l5Y;]By -cF|tn;'\k|ts $twݞF ]"R ߛZquzkLE=x ۻ+8uMVuD$TH,E8=HW"E H)pҩ[ȐyiNB.9)яs*֏ =_4|Ve<=|׏OwAzo zVWߥr{/_·l4ֻ9o{"Y&NwEVz4>*"m"K#?LrKF.}zJr wq?.޵*|tKX4|dO֋I؞m%]c򊈯tGw,i5;;f|Wuug _O<.3> /}*Ō`K|f:+ՠOwۢ7}*|ט"qyz~*|3|YEçuQ~ᛰs{ xY򋈯[]*]Bտ~qޥs-_l1HLt/?Mi=x_? ߊ|? |*2I'[pmtH` -7vSο\'|/v%8@3V;;%˟.dge_< ߉?˦/Eڻze_95*݄/q߳OKy(_/cZo/\_`>n$cוH{S$5JH=Jh8~Oc2kI~[ez5{?sE%J9Jĭ (?}*Th}eS γA D!U߸Fy@D󯴍5$oʠ?׽ϫ7{27cjqQ+Ukt NϠWKViU}_~ODȿ7D/p|D Ӽ/‘_N!={ w@~v_YjM(l >:鄓W ~Pj/:B";N=?WH'&#kZLjy;֚: s-:|ΊQr:ñ ͛>uzI"÷C V~(pT_Z%F}\{IN'ׅop#*rq`<5gQ_mylXϔ^0_ O|5~ßƯY]& ߖ}NR߬L}6w?/$7 xO/M= Ways?JK+|q"K>|OC՘._cƲp5[l/'o:Jt~vvM8Sԇ~sM_)߼o^~~uaC8~b Qs\Gg}Kw/DŽg? @5~o~xYUegcA1,KIGN'#n6|7!? :mt?k=q(l2mN8ah?4׏nZ?>LQ{׌Q~n]^"W?s<7?Y]8{I=o ~=n7q-wL<+݌\I!~( ?QN7#os? IK'7ʿn'XoDBa=;:8)p?WXK@ick/5vG> &VhA_ o>8Bnv%;j \C>tRW_N?|zܟg&5E1<,ppv)އ/t'kk3eL'[3d ȞDlAOoE~tA1W p4s0֝z # Þ6lƿ;&u.~j^ou=y!߄?}CN(Gy'ZW wYR+cn5?_ v$o ~ʂ'd9 rYV&.݄ԍYV&[%۟'xo vB~NWsm׌⟳+# ~~0=&ulzMow-k%t?Q;"O&.~8e!%ô_3gfqh ¦M5~//bj3*/7[53[&|co{N?ǕM.;u`4Ov_{ųfF& [o jV72||v>4QE[m֑\W&!iueO 턿l/Cǘ$\k9qk[ ~/?hP:_=W~)4z*Cu~>/I.oVz ]viO-q/"~.焟9gKV[3 I-}鼊&%G?wSf7CǙ?~xBxO_ ZX 7΢ῂvp~Nx{[eK:6:&f>_h).{۳{[3Ыd{. rG:Phݎ7y\eHh/P%PdWxnn%=. U5<"M%B~ϭ,`ZBv0.s9y!Bwmo؃"FՒ-ӿ7BD 1_SAʩ)Y·Ӎ g'OrlԮ*$??.}WN<ߥDCd2]d3F؀D|wy#Ei.އ¿!'xMy<᷺3հ?y^"о5ӊDGf}H~\/u?WRt•\/{H-Nɀ0/woIrW_&gqLHP7j&}6/&Kᩩr:񿇅(|Y^g=y8o)iSp}Stj/|2491@;ko?!{T t`NcX611 X@e@z)Qh|1tW͛F$WY]@jZ?~,5xHݮMQ?U׿_c&Mtr:F2Qh/Gz9~Ur/f{/tR:sM??e|Jw~8`36-Dg8 ߗt*fd?鳉5ogɿ'|gɿE)2엾]5ݟ9hҧcx\?o~Cf3]w;?ٯ~+Rt?&ϟ5>u[ҽfvs!w|W\ť ٵ\/M?yTG(VO:e3&fu>[qfߏ?._@yF:#~atˡrq[/͢o$s}uFD;J1ym|xNdwKu ~C=FK|q"[`oF };wplq~w݇ BHsur0>> Ѧ=o@w={#|// S>\=P'(G};ǻho*WmQ7~un]W^>>?cTfjɿf/H~`94n[ʰn[mD,OMs=F_sWmoE(̯[Ctނuυ+_P>+ߥO3v'33۟_)֟QY~S<+ߏ_E|ygE|)l'Ȟc?;a s*;`4kOWk\淪ϚcY&.|j6߽i`/>W5rz?]js OJl?|bm }b|\Ytn SZө\>yKjhѿ`H?x!0>+6w/勣krs4GN'InרFbDi^ȯ_{fqV|XX^oLgʷ HV#zv;}@3W&?=/4?ғ~LVGb?9/\'Ft1%ks{wP?ǿl>IlOvj:_Y~2?핏z_f|l>o ף!fwV>,WP+1W޺>j+=Pw~RTU,>w&Ԯ{G?GUXķEOT/gv?JG: sl﫢/CHC*ϐpsT>>>r z^{\>l|gul_A} Qgң}]*7G?9\XV;++˧9a ?KJzvɞT륨GŚp6ߜNo)|sN}Rt?~݈iد]wX ,oWXxqNWF6Cu`b>?xNr'ۤG[}fh姏~Ok7 ?C4>D{PT=whu8]tR9rV L$_MT?to5D};ҡw78@#hq/Yr:S+t/nv2Ł~DO<~*?2oZǙeQׅ{9{\}U=&ȯGo~kY`+$gG?8ў? ݏϋt_M/g3p9*qU e鼽0D.yio/^Qw?}Y,3}}Kvg<>NnW>( .C|8Mx^K-?]E>{}w/> 5_>{y5Y?k'r:_]Οg>O.6@մh^ɏ2;?U͟e:`NPQ[@ŭM{͓lse:t2Z7Wfe~=|Bϓ~ ?>=y ?7CNt[e?RE>OH#Kd9|'QGaK'Y:qK޷v|<4]\ _#*ɑٍ9^%w,-J-?t>d(tރ˲ߧ`grHL7 jhouEC'ۛS>eWL\aT0x?yfȟo跘c~4v>w$?~꧰N-/_'/}dѺ吟#,ϛ\)n?ܟ&:ˉڣ^Ӈ ZZCǻ鉘G~gh?k>+Ѻ1IVsәk?VVu&j_ip9avNU[4R霠.%t)fP3,bz4't|ENo'Nstrc5<ؼ };g8&ӓR퍊t7]] IrWBl9ʙsI~}{ {[_v~R8(Ϳ* ˛x&t G{N*'7'tX+ÿS<mSW56pUqZQ?4oxtZ-dZw߾KNt,yZJq:$HPo 7ZhF͟3Uo?nGz]u]}]譖-A/uCWк)xk~s=o)9hYڳe̬IYڃZRZڄYIɩژfMjɣ&$NM|O0bDjFw:25='e %S3$3GgI9)mL;+R'LN!ISGGf%IlˈqIɩY22/!Qsː2Ww گhG+$p>hB`zr}*W#iu*ԟ_cSJuX;A>0 a:xAB k>i[{N=yd!}\A %pރ׍ s?2jā[/?=di wle<4.ғOb$/;dr:o|?7?LbE6R;xP;P>JV+s@7wU_hTyMyG.KcLO#>GKr:oZ|.S=-$ΓrPL/GUh)$u3tC9=qN<̕>jMSWKSg,;IFz%:5>DmO,mH|x^y3 W4'g{4wJqQ}Jf8h&Q!bry8_s!"x|r11e_ڟMHBt#Nz^ f=kD<@;ފHin5aJqLln~z}Ж;`w61y65AEGz_8퀯xw@HcJc|XxjǍ\_cFc c/%WI(4R'揟0٧,v1OK<-wC9hŊfB/XωX ħcE쏿ыcE}/ƊX"nc_D"k't*Vq%>+x߰{o>b"VwX)p~ZwL4{f{9E$%9NkD!W_)`Wp$0;E Ko9EIc8QR#R >&_4y&?_䣝|c`V1UG?5BuE]/]N?߭a|-T~Z8.ӚD7u5nGl*^u1rg*w c\+0U=':r6r>n\(/Yo#OZv'GlX|Ŀ=hqgs?r?8^W|k,>ߞoCo|GvzaNY@`q4avtqO<ڿt~?o)K't1^y)v6-V]%ǽ<N3/ρ _B`Ĕ-{4Mx=oΏך>xxG:>~?O[Q6>ƺ6}\_<}`]/|[V]]G ^3Ϗ;jQ_]f}Q_8ok~k}!öe{ΛLﲿ.%5ؿ/?|ߵqJrn[kNʖ_PJ"js<󖙛y\Cs/?f?1+(gM>ayM~gL>7acoc?̯[EƒW7]77|m /|=?v|)/w/Vie^+QZ t- dϷf͟u wQ(DgښOtwȫa|_@WZwm%g+cr~6PySaǏ~7ޱ}LM=]g /mY?g vFa[@P~oE?Wq;=9@hB׿ sN<ߚZqXY6@~p?h?a};O?sM7s#U6@xyW[?sskuT1o ;5&[;=uo&K׹y t?Džy5UOºMͿ@a=_)@ nL,ZԼokO]k=&/3+DV"=}+ֿT(̼Eq q}M~-~z\ec&ǴjGr5Co5mZvu] [j#w4~/y}s:u~.8)XGlB[,&څ 3,!IYBoX<4eȫaj,$yvM9q IDZ9kn: `-vX~QZP?UgB‚(m켫!FP7DrYʚ3yDE-9ëѻH@+!f]?v@0^dQ\ѕUw:BVqYhV=xgy-V|K*[g)XgOiQSg,~^OmNgYoeU}a׌q~s}Q7|ۢ Wd& =LnǼ85e+^|yo4<|c\ݟYx ?vO;2վ>oYǼ]_-XWv GțځG_nn'm{yk>b?aݯ[|֧_4?3/5MϩlzUqԚ/z*xሹz>;zk;/P_t7jx1O=a/8@Xu/8@X>£/8@X_p^-bnΚ/<_=~mmK?% Q6>;́7ώ/9@/9@/9@/9@/9@ϭ/9@<!> sq9eeeeYxB|' P' I!>!>!>W!>׿!>7!>!> O:@O' /uNvT(l_(qgzws 5os6 cm@B N!> m@ڀ.oB|nyed3 uaL!>!>_kB|lB|Ϸ!>is6 |os YhB|ڀ~T|FlQ>p;]:CsI|B|n=!> _usssPϓs<!>N:@ '\9@O~B|?!>WrO9@ͧ SuI!>G;@Y wtBkώϭ8@P>FGP?ot7:@ hB|nLڀr6\.!>nt:@O^9^9^(z\<^(ן79@B|Ms&u,B|9@9@9@Q\}@k]K{n!gz>οDO7_5{3'>7N3_ক_0ycy0붭Nq8v7y=Adcfż.Չ>~f|pcCO."ݏH6m?6~/{/{Cjww :@߭uuK;ssk9@ߍ   ﮏ9@9@Տ9@ߓs w~(!~O!~w=!~8@ߙ w׃yBF:@ߵ ƃ'<~otP}O9@y)(>ۧ<~ora(va(va(va(>ۧ<~ӂO;@co Lgg g 8@Sq>!~g>:@߭:@]t6 9@  o999[xB<!~G #w{{JH>!~ww}=?{}ʳ8S*HK}VXX_v/ޚ1ڪ߳yخS⻭`} /4ūy::3X_|u&M/ֺ.4W:ϭfo߰whz':4=yp]ۭvGO7߈Y__uؚk|?qM_|6w,>yG :nי|pq|`xxuZ7|deyG~|5XZaZ /_|C=Oղ*m?nwSM.=:~/9_2^>:^bs 8NgI ~Y(Jx/2FD|^g- yY [?= As{ֳ uCָۭwvYіSgk_iuo37 B>S?yƚ,wYnsoGe׷*]wV_[nqֶ]V7\f/oU1_׺nge*<23ӚLc_;vqsՅ«r\ bvZyU_^O[u߸ܾ)-d]e]x/ӟno~~ںk/]ons MX_NCy;gxؓ=dz/hjX \|^ Wvy\|&‰mͮg/M*/Lf@%h2-}v[yIn:?ˑ+5i>Q_uuyú5)'_d}84G=pM>/w6߇u;kkpQ}~٥GjVѮߥq2qCh_B&n74\=^Cܧ}R/04 ?`=ʌ?`5~헬Ψ4y4?4뮼^o9Eg4?u>|~}ET߅f+C_{Zw~S] k~KݧNc(urG=x䣜O(QdQN(]Kmj=|1!gܽyŔ/7X|/GM>Ka@x;>ke/WN ߥ߻8 ti~΃>~^ߥq7M?>5o밟R ?dqZ_g/}5MOj_h{G~EGkS?PEgݲſz.(iu3o6(&{||O[|G9,\V<Q΃v=&Ŷ,yEG!Kߟ&?[f]f?'뺨lѺgojWN>#'ڽjp]4\F>aU/͏~j^ˡküy?z_-z1;}NýO\紵p:ϥZ?|s MJ?x[^Qkǹ":@/+Ѽ%?xrQ>l1e Z7i)x;->!x|~RɊGGxdv[~7[nO<|~p寣`?x{~;jyܯcZUok?WM>Z1&Zw2dY1/p?g,)̷Yv bOzm&^Qv頉G(XD~vp=c- x?0U_&qtÛL՚a _x<a>/ǯqߠ!ԏpA=qDfԃ\{ v;/gc3a>?~| 9B=xe&QR濻a{z/}U/z_ ra3?JCo?8_g?诬Y|KX|KZ|K^z-V'+Y|nz:ºNg^f'm-ϋ,>yoO]o1caúHAuV{V;OZQ=5V~nUV{6%K?SWnٜ_P\`4c]q^27涽^.bkn7k$EQ8sgTγ8^C1W:?gKuއS߮y0og|Z1?0qז΃` #0qFc;&.;5U_qY5 㱺Uqnkۇ4߮xl^WŰz\?~?߰tOj.0k;{J/zZoT|V`|cb]jP'ƍY c~m~pXWB+S̻^?Șw<, 1f׃as&n1O-Wzsz_iz5W 7[:~'mZmzyV}w5Xπt署\{ G^XU4qj]ۯ0σ3,.uY/~{.ػoǁbEC;:5=S+۝U !{0!W!{viG_\L:{dcQhp4<ͦ)6%i:qg6S3LRvˋ__]Nj{D$ ɒyIB!{~B."bB_[,-v-v------J{K{K]{KŮŞŁRg5yxe\-WF*c㕱X2#Dererrhr\9DrrHrS㕩re6pz2]Lpflhf2s2SSDeRgG*۩BYBV.Ru4ܡ(S7zɇr)!h?$aPC$I !Cd }DE$_X4426^+WF&+#ȑȑred\D2V8MяM]K2$4 =>}xere-HRS>;Q;UD ѥ.޹K}ߥIɥIK.&.Mz\u*s$tY|ѭ0}zըU=twRA25J ]L!{F2D!} @&}#K,IeF}>SlN8¨QX#y,hB1i"axY<ƍ#TѩT~So r䀉OS *spǒ=N=R\1hN8eyuSF,Z~XRQq=Ki%cG]-UYL8KPn(gU?iW'|v\X$%skę5X2 FFRH]Y"%QHDEHYB~YB?w*i}>"5 iuYNQs6FaVѬcTp8VgqX#q`Y *&:#NLx,>bn'Y8jӔOfq-!DHH=B>wxnDN: >.scug괖z4b6*@2Z@~_YZg|^'j4)wg#C7HxMP8=Z֙&>U] KΎ!"X\*v\*NݥwWo"]q]vq'z;Z/yO\DsU쿘 RcHL$aq,B2DvCva^E !n#k.8~$>x*H!)> -1LPGgڭoy>}$=- "K r04J]Julej㜺rIz̍O:;,eJ]vytz)i0ZXbtQ1C348̢ D"_kJ8!5h%ƙ&ײ! p {WAe$ #y?Cjv<>[\cz._HT?>Y=}cKY+J{[*vmbe,f4e3H{N0u EZ'Vd%BܕfX_,^)g!\z)e41-,gaVJif^KRg'5V@j \0Jkaf)aKcaq"a! qi$ĭ3La^%`nUswiL"w9Bd#QB|5W[!R:d<s>_bC``!i (p[gV VR3|*EF/K$,HQEv8cq?,*T(0H17R g v*ƙωġʥ 4*G&FGƎLTXiDZL:wQLNTzCl88K8"&fh67!g5#QW+JIza5ӔyXDva0Kc*jsc,$Kǔ?63ң4IU$ңLz{,-IVXд>{IhH=-SM[u\;&Q}li%,3ZfUQ c:WZ)Wb*~n2'Ou-ш+HB+״EeoKūSRQĄKnRgx1s_b^D2F hΤC+:]u)"wxz.lYt&4d(<>%#|.f\ZCAR8)v5fڄȂ#1m9EiiE3KA#4c+5UiJ} IU ,^R>[b>"!r h$RK#`A78} 'ORҥ^.&l%tu@) M@I +k^gŭ0Cd!KI2;"ˆ+Z:/Ǘ2/x [4$2,&1nD#J =}]]*B%aNHSvҺcyhA2nJv25٘:AwDexS3OԻb#Yd鉄4V-rρ;CӔb)]w)bY&Դw2K'Vf3D tOS&? W(@r]^\*SRi5AF Et 0|d=WR Qƞj&\ή޾z](.q qH5lV@ QQ𣒦VD'r)HFY28Y32J|_:θh(j6Sn$Crwn,ĦY:qu3oi T[plJ?΂p=L?RaqE]N]x|MFc֎7. §0Ӫd BT(&iXR\JkE)cЀ] Uy[5kYDf"RkEⴹCK[YPPDH0KDU"'JJ<_ $9^idT0\̢ܛ]L`qƈt8AǫIìw\d88xaջ3[pٜ&UμU~\ z:e*dUK l+U~L#n&kC mLsd}{#9KE($j.s=ERPVPq(("HZA?B ȡ%R1MρMBE#_K$Dl箾Ξ΁b@woiQ|VMJhH FSF cXT޶}Po5ҳ#ɉJu>x:gAwJ=|8.},+IKI`!ͤRM?CyGFH*Jli$R6egZ V%ZMXj2)pe]P1` 37#LŋaRYbЀiNu0i,X(/! rs(0yr[3QA5O<_NpP2P>j t5wNwqLx*txj&\kaDED̮XB0A6&Zh)\d*me{Iy6#tPI k8:&a(#L4[ȕR0[h,s!:kj1 OuR{ d:r * 󸱥jQGK'T0 RLF%fIKwP=UQV]N+z{tz,QL̗j,ih)ѵʻ@Xʑ4,9Dߤ8ʖ Hk'9`Pn t2\oè ,C׵+]l2ill,$N] *'0i)ľ岩dL: ؜Н*4CMF XG/j;d$oL_2YjP$uUYAݿ>Hx<(VRsC*M Rˡ@ G nE!'b6݃O]- jL'0YW?~CTyԉf DKBB!9Yh&EIK@>#>`1#5-“?],GVk޹қ+?FjTy/wuP0.aǵ<-uu@e68>q&ڦ4B̽.T/soȨWpޒř0Ni|.MT63!x }zHɝ23eʷVHqZL[N;Dhȓ> i- [Է[I@-:ojV*5vee0yD ~'g Q Raa﫲A$U,K𴿮 A Ь%ä KKcRƮ)WKөAZ|​%a kʹ(-=-V| }Sxǂy>;64ii3]TUX-Ud6?Hǃ' ei*'J 颩V~.K}^%#eI .@dG;R}+0+H!AdWk*vwtvË>nx$A%#IKQK/M)S.&:H5u2adi1c;+.d||UZWNƌ Wݺ>ָKc⹼6h{PlhKP;S4br[OO­Ә)B́Y,RHJbNR-J{!K^6c5̖G&Yzl>"gI槅Ylw=J gfbVI7ۗw.͜@nJ;TG`ޭ;i+I̒0]Uv$c,Tl>t9X?rᆱt&ߒE#Q(:RB/rWzQ]cS &1KX#ETЎe{+e؟3ٹ4snye4ty[]3P =Sd&l1ROM)]S}n->^oֶ en$жh DiЪ6aJtd!bLZRow;_V=ž@ש\GeWo cIv"F.eǶ_>mJuG]eAQ]f(cBߧM"eғm%E|(sa1e*Y\(GȎ_yHs޾<"Te4ḃPwʓ >bD,&Ph3z JG,b,icH/giyZ]MNJ_]jr$UP&@8& 0AK4[CeD*<4&旹Dl֋j39CR&6䂮BEK,jHkc.K0&z!몗C r2{jlz3" *%q@x5>mx΁RW- ecgt TLDTx;LX& 5a8r݂%m FE5C2GdE-G5=gpǖer9}0vu&9Q&;'|J}ԧ_ 4\Vsǜ[ TƜZ\d5y->?.:-!dIii9 R 'Ie1d U/zKH$A Qsq4 )Me)[Aaΐ_*NMr6"#QR`Zs-]-ˠ-Cq..PK*$^b&Li[ٯ%n)"D{"놂A 榢%ҎE#k|lZj&5/J}΁Roo^&)U!>.HiY"ua5NZ ,"X YLQi.T{'P)$)2_a Fvf &j}xG\ t<)[X@5sˢ hY_vҟ X5H=$بBMOtQt3ޡuo3aj-Y0eqhi*h`ӧV]Vܕ8*b(V4e i7қI* Vh/Jv@הoe7hȵmW‚hʗA˸Rga{VU@VkV@ [T7#4\aLJbWOwOOow_OWQ΁ήROQUdIFvX ѝ1&Nk{v PJ&`EI]ТJ #+++Sx$+ELx̛ yTCZf]E㑌%IX[0]&5{,IFz1 ;ڭAc\Lsp;8ssjZJE-|JG I/%59)Uf^"bbϕ; !yڬ]$GXwJyR F]TT)v IH45aqC NTcƨT3M4Wa0L.n(ɓn.J꼚9S.zz$v-@۟ĝ;:cui/|j z-rz%Ƿ= @=G)V 26,Qs4]\:wMje'W^J[b" teEy]#PS%oYϩLm\'hÓpEޕObC1{3dngư9* ߰{?L,k͝;kM=Y֗Q$7 vtb0iMvJ j*g54vLו&{:;K}ŁbwXZrǗPRj }6rێ [<}'MS< 4Q4ݽ*PkT/ (J/eT\'yL-0`$34^A=۝w,˜ҳl!a)B8HU4!w<|<~VglV0)dP) 2%C. 7P`LTXl9 a Cfݦ,{J=bߣ+{;zzbW*uvwI>sL7Ip̚lB`հCXI,h2w3u7t{r6i(i)esOMz*PHڤmMBB)EE ((^ * A ("*^//ofs-ۙ3gΜ93:wP)ёGnO3Rz:5<6Ƹu~F۱#R,}ȰBG79- =e I #OCپl%\p 쀤9VJw$P^dƮl:c)3A_3b`s4⚒Bo.zmq1@fr$3@6lskkS{cs[{GGZ,v6u65567ݠ\-Z58} k1C4O LcJ g90;B{GWJ65g4w;`~h[pds19g*k]``Ǯ4q;NԘ/04~ݎY'PpGp/w$ƫ~0Lf ̼Y^a:E3:sNKvcKN8R<Ջ:يWQ5Y7M55u4wMŖb[[]\^,6665757wt[[ZO')u&c`POʆ0iw]mx'eҪu͊ad׏~9 E2nnu}1)o]e]%.yX~tva ŭátuW+}PanGBwl*SG<[k6]?g_/jgY;84|溑gaZZZMΎbM-r;[ZڛNvSߺb:G0;:R8kptZ^FXL,Fg{<-9S߻bEٌeۓ#{Uk}.ĈX݈c֯}I^Z/Y۝SE)nlVpp$4_qp!eiwQa4ʖ^n/3F4c&w2L&M" * 6n&~Y[%Tv}~pvz^iTPپ.zkp`ԕ5MMMŖbKgSkQP:!N6080z^'I{F j]km6tLIblL{#8ZRu*IeY@n`i+t^21{w?EoU Ϙ5WfT'{i/G0YUJ^ԕ}foN1\ljikR֖bRCmm"]ؤ>w4;[;[--t_m}ʰFM葵Vi)Al\mیv*]Rj`!%֪ݫm58_A "V\(EvZnBԊnhl2 m/f 3͏ѡb(buvevuV}.OXڦYlll/65zò9K m^;[i QPў+7CPv~<?w8mvo<,vDʻmaV#+ =m[RVRP5Ǵ1W6I:5c=glJk9ޡEMͭ͝MtEe[gsGGgsgDWUK1@UQs`TmG3h7dy2K.Yׯ{qnAj]w]m1os)qֻB)7o 0 I̙-0+9]Zp!i~B4~PsxZZ9nd4{RdWotj_f9֩c$trGGSsGKGg[S{GsGc3]f ( > gSB./Z^>0Z,- KMI zX#ٟКJk^[@wتz\\9C+WXʲ my(w#@}Ml }}CT̅kEg`_e)vkSNxTmNEo#]?<_z8Ow=Czr!' j_Kc{sK{Ssދ1--M--͝Ŷv] bkg[SSK誸QYݙ؈\mwZoX3@+zeRq*m_l=88T?sJj5ՠ.i 6.eެ;C 6JdY-5*s~e=Xɴ\Ԣsl*-chf6?\$ +PS8)7X!A6qX Aj\M&/(ݥFK<eȲMSXvgc]K:^]:կ٨5DRWd:6A[,57T,b>wkD2e6f&7}&wܻi'Or ,x0;bSP ӦOH-5'Զ&mK0~mBԯO_wdT>CRGjMП`!}mEjEj2x5_׿ C*A3*${o5 ׻ :/cZkrYA aҮT%jyк l3.*\C+ڐv8$!Ǖv33`J9OˡF}uzN*}d};ew#ˌ`<81R$&, ;-jJ?_neҨ~JGn5oq-r䌁a:AՎWe<5f D,7_-yiW4ZtrUb:k̇X>10Hx;BwJwR7w$1)ZsIzhxt:tH¡A}VTd,CsXe.@<;;Fx{~kA]<1ƗUv`w=EU;U\o~sH~|CYz(xghedcZ:h;qXۻ&5wPy̋[PaBp'NT{MD;Bc5a%yU1EwNY8-T% ўI |}uﺾ{ו~ܲ\e^ kssy/%iz5ϻ;eX,gA!scy&no=/gK,QSc /}{y#zJO*-_o_їy9={4ϻ3*u^m>?MIIz s=:鉇ME|vz,iD G|zn'0g 4R>Sy76j/=wo9<"gs{ 7̳PEGrs|wDr|$/y굟\H6$c3M$*ævKw )JW|OQ}q3ϞS0]%H/E/{/ i% {2`}FVa8q^1gic^ }xcQX)W!G:hTbm}<+Q6Y=}6y_3~> à Rcō!!M'9>cHP%LIpq'nB:hUb.V:ά62L=#}W&'doEQh$Cr%9{z!՘uK/ƞtɤ>Ӱ: MqI=)^gRB#X7ar$ȶ_Qr}*״1Dν`y~/zFнXW?>L}j,WR"VnH\$%4\f?>GdäO*+&[/?O&u D/ ~R O} 7f3p}^?2Õ Mܥ\L >E>UW_ ͭ~}_o_HIv6C?GwC~䙥 $ ?KE[&"tWqYvI≦pmDxB|$z(i#)Pr3 tWڶ2x\'4 ,}quޤ>%?!I~IODV>+1KRȓ,_l_dUAx+t=YLJ\#$qxLG^sŤ%Sٱ}?N"k#dI>~ϲ1Brƚ?U~2%KGJO%DcV2{ 9՚l&IOݑ|~=k4 Yjoe|b9UzўT~~lP _׌_Ə>9}e鳈=bLo~=GJ=˃'D+f'?ޜ.;hL_7Usƥ!#]ǷZx23zBbEۚS5dc<d$L"/I!o FWHojӏV'i7%/Wl'Ld>{L[ɆNpk!~2T// 5{V$uKz?oMO4zgT\pGK*fTu/Z1}ZEe.?T /X&ȸs냄ߴ"aG*o> 8r~QB#f嗤/>^]uUro_'X8:eWds}߼<8ջ|F2 $:qW'!E ]z _<b)2y<8vu3gΜt{NUt%Xs=O(6b ~ĉ'CG~^2;} ?4>П+F2_i #c ' TH5RDTWUe\}z`D^UVDW5qg>&EϾm",q0^Mٗ8~+'i3*io >Wj}ƯN2D{S./u[}Jf2fԲř9[0ӗ2£4C3bt){ 97Ύ{B aQʘdvص=u?)Unn|V|Nܙ'BiLi(EϞ~uaF޽ >wA2m3e^>P(N/>96S%{}IzQ3 dȸ;C&ɺ2/JĘUvW/O _0f[u=v@.gzEp! F2d|Ia_Tg~0\2AեPll/KfVaqxd1?5 c2L]UeeTdzBTe)S#^JBQ0Yf-ڑ/%G~ bO=؜ ⅋K=G2^UWWWrkPZYFzq"Wt6y4|7ϭu vilPT19(-0-.q()\TmΗYٽA&ie{X 32QMcWefXݕ$ؗ0K~Jt< &Fz({Na_OFX" Sq,&ۛ"BB7BmdtG9uv-puخx?G !8‹ x6G2l!a Us]Z % P?n|[h#xE k4HةHǃ+LN2]Cm/1L-.}1gGj:+xt3:n&BI J >I/+`/WvH`w}`ܛ* {51Dz vi|S!3Ici}Ti=t^Zl~ǭ qÞ-i:/ eIKfWng؟*=WYk°\!V+#ML<`?PƫP/ga7]}JӌNo65=-gn%jv?Npau0d~ |a:J\q;ɰoV$WAc/3^jS¦yKf}C|fh[+&x&}T=N7%)}0u%LSuo͗ ;7c/a<_IOD`|LQ~0gԲ0eשy|5M.*`1B*`Rˉ~[eڶ7LA}SX]~(M;v aXvJë3YPSWca%a3]lRjp>(HW BEh`΃]oX8)xebo =ӣŒ˛iJۛ}]:ݩ y 撽dcHu9L֎#I-j;0e7Sz_OlO8&o%lj~/@U:[ESS7İ+ W2@ch秩2/48~ MT+JdH>pҭIMY~\j}V [vnTcjHe-(d\*~*ݠ5aj~ LI]M6^%\ ;}Ȱil.&/J3!L1ds}71t#䨏WO8aC㧓56k|>8b\xڈN/mlν7*ߞ<H蔎 ۺ({Pzu.}Y' {N`t/wN~D`i t.Yߋ;|g?+|@W?1ʰ~+lwjf]P®`:J{GSǕ-]7t70.2~˰Reط~0Dw#>Je%$,f [\~{VEi\,;Di>+M8ݾt,-7@ l 1B>->DuQ 5|w}$NU,L='p6҇G˞-~tՉk?wq.t]53֬/8dM NrGW;j=q|mk|OCj''%DlfǙ0, sin UE㪲q]Qdڒ`pfc?!2Ck|WyߕU(Q:8C7^)GX<Õ60߸zJtys{ I}&cBabD񧰽>.~57Ň /e;,M|Lx?3} r5VVvGf?Ge˶kf cLCFoY z#K^iƗ鵽O|L꽡g6Sk Yqߴ6Ǚؼ2,ϗ#Wgs:XU+WX˔bp斺kWInx\~ʔ}o7E'jim!TT;` AǂXB^y{xCJoQ0qab`sH ?%O~ tf/F01BGW 4S׳dXk,\x2V_K]A6W] >Sr]M*XØ><e{ڌm_mE?QU~g gl c"wJWdր"+%3^ j K {ǙM^m-|z EiMJ{AuԽ0tylC>eȒ*]8XMcfIJC٘&x9S"|lA(Mӄ%PRD=$g5IO<~ʕ&PIT1`2"#3Z0^![+W]"ϛbcRZ& uo b8W(aKS+'ŁXMi"LzcaS#8ƞЃ%kW,7XMc<;H%*YJSBHN4'b)b ^"9ZInh_Dcm&OGL1QZPVQIN kfUwęm&'"@,D 2Ss>"TC u7T~ )T&5CD q)QB(I=k i!+E~\P][3,c#jt<a(iehD7M569jTR?w`ȑO_]f cY% oL.a6`Õl(-ÇʵKd&R`%%94Sa7R>7M' ] S1S#Y|J?"Ͼ|5^|. a_a0HoZaZX~\7ݣ5VrP6"^j?H,]{;~'=vZIQ95 dn;0t=/Ƶ䛻 {*`%6  tbK;a>:б'S| 6c\Bf^}.p20i.biX@wZnfhݭ ۯ]}%p C7*>]fY{. Oan3*Η&joE%`L]~D!^di L%wzv+ݹ{+=Lث EXfU;I`WGK+\`2}s"{=(,˱Ϲj o'zHay{nOa'g)I&zxnۏaP,g٘<'+=- (TFT]2WTpĥ|r`aDҗ OCa8XgeGlC=Sx.Xa! MI_t\EMh6hb Ȱ)% yK3&n5]N`ײOMc ҟ g, {Ha.b` R,b[Cq1,KYڜo棓OͼzlO'|~ 1 aw?a5ſwtt5yM۸7ś^.~0/6".[b$[H]PSsYc0e}Z{ܗn.Xs t 'ms' bm߀b ZX;Ya=@w2GqoܖZLX5ѝI}4o@ӁaZ}m? s'[|Z$),3ąQ@UW$]1;&r8TәH ӧa1;_tOOMy7O`>3؇ Ǿr?|2seJtoY-:vbg"O~k!U"DJ"߅nO7[& Aq~k8%ƔP~"/PW&iλ#ő|ѽ뽇ɒAw,VQ=b!%HL7F!n@!_(zk!zA[;jAVVɪiG<ꬪ 1bo(Z4qG_5Op,)hhG`htFh!7G=r>|޿)"@ 2),Vn!-})!Bo臩f)=ߞΕ} Ņ-bMHFQOFU6uX<K &<۴|-r}CJ`_EQ&e>|ב#ϟ;%kk~b}VbwxAm1f{>㫾}w M#SkI5kat窺4XKIzh|.|:=u,RNXyMg;" Q%x0&>3N {"P+=Xͽ^gXjΌ_'.j 6K7^l["~ߢ֯YW#| 6-2ȥ"f6nw? {3:܏9 p6vV"M'ZB;W|W,K#ؖ#:F>ٜtNczilTCiqכ;gؿ)?_@Rul567=|=r} ;__P*|{7&*]̰kSem'Rډn!aCl ɬIa?'lÞ%Z]NX act@5w3>p>f)f-a>pV#+񎧽Na_!:{V] CҜQ)2lXΏ1~B:3y7rjmwo~?*?5Ygmc}Y߀]'{·G7垻AK̰â3"?a {쪉P껓}? メ 5ѬY/gtݫ +( ;7LdT7ȗaYI(:G&;Pw96lRb (;3>&9 + [>Et:Sv3a E}[~ttb7B=T]oJNa@͝/~^@^(<,LOFZ oi'x6nGGicik)1ˇHbaW2$Wo3~@K%W|,͹L>>57g/ƛ?ƾDc&4O?!3O1;U^?єkۛ`|I| GvYm.j>_zfr7\> ÞvMkz9+ej/+$"{4.4gFE9:S #L飝8C& K~(=A=ˇ"@ F?MPgt@u=t4e  >.~X$؍^|0- S<r=e#r``>x3TR| @ˁ'bJ7Mr5MgDOP|:pѹ\8[OaKg7)] ,-{w~etVS-b>xrRQؠg#3:&kjOjٴwSҾUs/s&Nև)텥y ư:}f [{bS'ϕ=R.c99 Na=9wMמM}YeeZ,ve!/e-#T}Ŝ0>e׾[yM،(#8T!ڿمnJ:p#nuΫ Bp!. ءm =/)6Mqlxa) w|PCcF~˸;Ɍ\(K/^P@ qA چB}Bm1BD}\C k}g(%e(lDP(@k:2LO:YҗRc7bmcr,"@V=)u XȊw _ݨBxAUn&FhzP7 VGK36ܞ/|<.H:^ ؤ{L)i Q%pԹY8ɃTue2F58!wAB@-[+c&_q1&v EIF%хw>eϣ^dW7Jեb1mP[!~&= o@nKZGW|=C_`pnMbmlsc{`LCۏULߣSƛ繂^)"}S/>6o=a(?e7|m|Sh޳khOP- NFQ蟝%vq*ciD:&y&_?ru^ [Z[+igՅ~A1HGWt'P{9FSuBhd>Nt$?KU}j}'Ks6>!]mgsnf#aF7Oۛ<}wP,oS:%ab'~I/2* <{Q&XNǓ = "^؄Z#rW!C[Kܝ'맘CM} C =膉Wrv^#)_xEY#5ZZaGŋ>O `nlk಻[BQ4uM=P:@؍ #>2ưIcq=w -Ww ']'o!Ӯct,?K%`F,K(>\a`a~_e՜% L}V],u_ǭ]aO/ ^xK7p +R/x-i?B-"l+6?/`X/a14¾*Omr뵞{Jk=wORe|)r'M0C )2FS~XoO.vtGF}~/Y]7.9ßtbrn2є_ =o}0G7z.g͔7zΗ4!R#9ajOߍ$ߗB>Ef$ i͵_@ў-9{qm>Isf6Tv[/VlGMc k1ďpet䥗'v,Ŗuv| *6fXOU*wrN* Voy3Ųʱ2Ic+vgY{ SiW{C̖HAci@ ul&ta2xay>%RKrXj%ǟ52o,RӛVxL477S-Yg[_9X3Ϭ8:]QqGu;?:/qyx@MgMdO<7p>s=/ps읡%g>՜l1n(b= oDg?L= CtdNz܍1.L7?`q\SNq^h߫2~Eq ϐO2kP0,^dT$trl>Mc=tI?B]?"]-pD" LC볃ta_,^}.H3agDg&$y{G1)V}΀w*u9 Sy+ ;aq0(|`YɉVw*.Zcv>v7(aE#zF ][;YO1km[fm2Y6KLOH;X3XZf_ˌҜ8Oiu2K6bWt ;>ΰmTuj;2f؋!C6^} o_.az-V'fI?=hD͇1,>}= SϤc&ؼN?aG#;-=mS%{b^*?52/qH2>c*H2&ИVL CwL ǙGp1`3鬤Zas b2FB{6vQmzG(x::U}{H>Ct¾Nq݋TƉ[]`i_" ePheh| !4 1(pav1W}a`^Ner63l adZ~1Hl&p]r!v%[%W`W]c/6:a3ҬĮW1̮=#?B:gȷ&w-cܵWX,_a ZZ@1wO} e sVm3LɘZϑ 'w 5׾Za=k9|/)^sG: >HdF/>pR-yŦ`XmlXAWR&s)6E"`clZ@k6 k%ּ6Xڇ_sZKe1ӓ2%pWV 7)5&?5ߜ):A;'xe\M#lDОEz߱>~VdR謕Q}L{.1@%i ;ebhWkoo|j=xu\)wmM?PX>tH`>1Ӛ]CC02 î$z5aǰ r5[*laYc]BS!†XNG!%3ga-g?Xnc<I490kGZza;iw+צѽQad馒t?߬BUlܮb#.Þ_IfÖ] -Ô=fњ} {!+Lx t/Ye*l߾Tƽ"M~KT~0dDif)eJk6(y5)FOwn,|ZtɄ.bصߓM7+n_>w2Wk<̦Ak1%C֏ehì .O;DcCߦ}:kYbt]u?vH._*77SvJΣT?MIZ^|fO3/k9q'qBǵ2ߜ`<>ìDpmOundt}={&u^2. ,F׶cl;.aF~f MF&0x9 b,Eg{?#_Z9# SQe;wev,Y=41.fؓɼjg36a7~@:Jg.{-  @10v>[h/bҙo- ן/ [J='t [rj|&Scܐ3؝qE"v,wR+b=XL]+Nҩyk4+bg'Lɋ.91v-cgO]bWLNf3=)ٚ >mQk5fd~RaE 2Lkslz07W}~ [NJ#V/RXwNgv7/b~7k1K.7Y]j..3lb`|G5*oɚxѡ*M- 'D.6dϬN> O$XgxP˰yeeZʰٞi_PT6/ܝHg=~azfmֺ!u_c] Ss)wݷ t rȰzvaʮpQY21Mq;!wsJxр(@[<'\yX8@zz%^yE+5+McFN X0HY1bOXUbVǐJ䵟i0=O۰P% ==XEYF@ zDPTYc?ܨ X@,EQ,Gy~?;;lw73iߙ3Y~s|%:\S|$83?(3CI&rfڵ7D=6DiF!ǵXM ʂ M^oû<|pv,Z1k״|_;O}z'}zH[Kd맭Ktɷ~j4y.9œL]jaO&aEڹl]M;i]O&{oMC~k= E{fDǣB/]jאҴp+S*= -6 zZ{y;Un{/}sQ^l{\mB~iZ-}eҴ 9IgyjiCx-smG~M?=fknhi6Gu^Kh ~&%42lʚ< \AN_p*~♜ht|q4J.18M; Ѵ-+qHqE_aϞ{ubo9ބ]oJ|Oa73)BSDdw4́7Cts71 Vvc(U[*ן |/%hOunliHT͕?ko?ye?䟖O'O)䟜j?bVZU;T/_u8n8M۔C4W Nujvu9]ٚ2$msr{W^}͕n}g$EZ߃Wj9nҴ\hkZQ^>g4ZvOKnM}3 cM(AޗNtGyԴxuGڶ6r_B;Zgo9]9}N>Wdh})Shiڥ'l_jcw}ÚvWwdԺ/(q菉uyF>Vg껯:MS_ZO{Ci k{' ӬS'OBY5[맫 M^m*]O} M6|Z?5 $hZ?=ehkho] ].i/ Z/OB;v/hA:jov^.%yiZy#y.9vi~w +iu mm&!j=;ګ=~NtCNdkzN4伡Km'=8:NHC۾1M q/fM}<{16\˱x3W'֯fhig!(CMk/;yRM iHO;Η}rĿ17ĺ LݒgLq10gLw^El!\_u} m]@{Nr;A{׿J{EK;ک3)DthTO|QFFC+ 4hju.k 6?=t/絽/?+1isⱘ'1i' ^[9T$ԩd;;v٣}id~"5mjm?bA\~o"ɦ{jŚzom{[j\{P5'%MjN\ijN\ij^@ޠ`bW]"/==ky0|^ji^CλkאM %S_yTӾpm]y i}Gf$4y粙=OlǮtM/u~Y{&AڹQ׉!ýZiwܫ}{%nJ }LzelhiEk흑Etd5+IN{u^ƒ CJ?j=.@+&iiк`L6"- ^]ilM@{BӮ|]M=wlTZS4R`%!}R )AXAsMS>i'kh/''S)|ː>x%^MS@ߣzcq_Lk>@>Rr뚝A>W)}|p) m/"Dc Oj !zǓ[_o?ak-HW6@O;*'av]n?/a8[;! >h] y]n:޻/!gjڛ>~WcM{vhfGҕڽKW?kԴxWloB+c5̮̓մ->׊(7ЗЖh_Z^SBm-z6w ԟԳٸ'֟]'9shphpoОk?}ϡM?[izsv@jXs4a_.״{C=zM{?ksں-=`M94vM{O 2@kvwsXP/g5 mJ Ov!:IE&д{aIO4>ؑ7Yvm4AˑK֮3kFbBumˈP#^ſݤݫiӴc-Ѵ!^ҴҴa>ҴcmѴi#>`ͭԆjhgiڙ&ihCLDe#MR%:g^祴~Gq]? j%*C]71i.hk?B9v%2@[72 کmX9=3+c󷚶^sT^,ѮqW>[q~v-5*qj;G2&hrҴG1,4;+ErsͅHMµٵ>Սykm@+N*K_說S8SXUT$O6Q|u} _ݤ)_}iSu/}W57Q:&M8=i!hoI_ڶ>iW"uJ?Jp)}Z=\ghWz? %}uF _쾀lM_]iE*~ \?= m:ѻFh~zF;ÞSSpN~H$kJaI]6v=ɚiCv4mzӛI4L؝dhnݭ&k8}fhn7>8>zbw:D/#sdi<| b;F._6@;&9@?w >uYcu>yz'kiA ZzOiᰋS,c*ש~[QjA]6}GEBz/BT>.ꘑ{K{?KhS]*@YY e65;MuiM5Khqk~&>>ڥϺqp2}窾i_W)gkd[P}_X÷\Ӧb ߁xvS-c/ (CΓ[s+5PF 1eҴP~]/6&MhA{כ\_{ }ΖvCiZ>״xP$qh"ߧFjr.3= )}ibީX /yvx5h=Ջ4M}\>~/>~/E~SoM3uvմJ/] J'f)Onж{Tښ>o(-#'{_im}D QGm]eю ݢ=kZir.hڙQ΂MhݣiQnۼ6~]l'KE~NAB}D ёE 5iG~W4Mh9"Z ѐBD&Gi׼k<8ڹ5_Վ{J ?FS[]3"@T1@ja"{Cc }M;vgi1ǠnfwT(Oy!a" ̞i5>"NUi5Aq}жOuaN47&{X ˟ol>j=uJ['>JmCh>nǦ?:d:qyv,^+y+jv!u8^>ViSi*՚g(ojqx,CBo,d'GNfwMjM B oeVB{6] ;y]<.)xMlvO2oHlJ; eܨicvݍu4o5Ih<|bMv;6ț샦y*4mҴд4-KO JA4J1CW vhY;X|KM6C&YBӦ@+oVimЦi}hдjˡ#M͚uZW{1KhA;^ =5Fv{ZӎjZ?hh1ȯLaCN9wX ;=\Mߟ&)g]2iEi h4\Ӯ=5isam4JFU= +Mzϫ'{Km]<`sonvдմeЦk hMrM=:x/A^88(N1S88(N1Sbj45^45j4M;S{5߫qP8xLVBC^%45i#4MJ1v^쓞nH[q [q یqP4͚ޏӴ=jH]Aۭij] "`M1{%X/%FMӴwӴ״j{}5^h%aاk(fR;R̷o1K9vs5m մA[iGuM;vk4F;"5S5eҴ]i:kڡЖkZ[IhPnuGlMZuF~j~D;+;Դ.m/{\: G1y]۫c4Mw14y:T&M˨>.O}o׮n\~GY6\&])4mk\B[ivZ'M=\%|}Hh]ж慖Lh;vf vs4a %>s %XN졭NvRhZ;XiNGaZ"=R{HӎVӊQ#`7(ִ29֓~K׮N@4$Q_iM+4m4֫i5f =H\NÚ׽{#&'}}fw(9岽jk6v(,8A$݂P|ƥlM)ƆޗHDӞتiKa=[V`lEiд06?IN164۠ ԞQL񱦮16՗Sj|1{`[v)52h5 5SZSMDn}(cZM{ϯi('M[2oB{՚v1C >R<[j=[2,MMPOӮմ}i}}v+(uo*{4֡o+GD$P ط vxv{޶BgKcá  PBj._g<ץN;IhÐjm@^ bhWvQ mm@3'4?Yz ]%m(c^gؽ2V K}~h讀/mZGh&3ZY 1hۗvHш -vmMh^eg(cBkYhpn_W xb6пɃtipAÇy4-nu^"ÇٿX<~s(rEUetަmZJTXU-ޔx1D78AppMZUcC6XgzTe36<'䊤*7ִizAu 7w<&!MغiBzk!]_?MiM'tiaopCnNՄtբ?s:" H[uľEmWoاWND7pN&dB&;4Γ{ E,j֨I*=W4  +:(7sgvҭ yj*Ea+J_8P$?lDUA߁!1x Κ#C晦?k Ύm~w) }7>#>H|ȟAs_RK DVCKo8è >c<쁽 P"x{ oODYV .-bn>0z|3 s[q]6a |9zBwd6^|䃘{;0O9yzxmb_!s#}gb`bG >MhqF~ag \iӬJf{.>x=җP9jHoڿc.c~*x/wnpw?an/1_mf:r~)Ym?mz{ix_pwss_aN<7Oq|u(s xeac|mdPvJ1&YgOsYɓIc?΃j>Q.?w2>T MW/g} wTM]?=Vo?'u?vwq Gfoگ}fU?L/Y']z__wBNƿh?>.U]S/C<.L4o/MS^ GNo|C=[|)k|ߜߢ7wU[gǟHSy;2%M;5|~H7W?o8:/%M| izTcRGۺKt/{CI]~|~pB|;?E7?ኆztu|=K~zWwt_oNKOӍ ~տ7P+{N3>6||w~P6||[*l( '{ԯ[c ׯ>/3]4kj8 t;]|t*6|/L=>TOŧ+x38<>G݅+~#? 'N<Y=y S_jm>|6?{w M*]͟aI s'̈wf.]ETm<*p#9N#^o\49 I_Kڏ<|ihWgCGs;ȍ5vqƾrwEj>PϛD%fP}pWTU_x˧|.\͗`+0w~OWkWpx߆s;mySn0TzսKʧlt/Mӥo늽KZTz<ž+gKO(?ﵽ+w=H{W~zK.Of0GyJ?~(7K_3_Koo{~!_)j,_[%? f v/9['gկǰϪߎI>GVˉλ1vׇbETugp|><' 3 Vgt}jss瓩3yYu3*}Ĉ2XOZ2}y8%{vxΚ:mt N<EŠ1nj6yIO>뼊'\3iCz:dS'O.i|xR~I]nn_*P*{ꯎH.}woȿ? TS{=p@!sD]??w73z|zPGqV'5|hTG>>Q2.+8>TOU8Q=7-Ax0C|?3QlǪ6?u~5mo\O4 u&י\gru&י\gru&י\gru{DZd  !r ! !dAC|5!:'kR~V}?Ɵ ?̟5g'O+΂>?ODa7 ҟr5F=ϲH7Sav8P1hn 1HWiK>U*M;i7x o)M}p~o#La1Y{nV%On+!ooxdw~Ǭ?:9 !~Qο1[>p##ߨo &~k?x~FY/qQ~wߚ\k>k~MN_l7Of~AFaO~s#~QXwr}ǿH$Wic,#}#jw6K7xd种# >nmb3=ݨUF`?i~c}QIF}2:p} ~GUfpg??f(1>/71j؟oj#oml|q~hmF?`5^>BٹEMlOZs ]پx;r bi;665i޲eGyǛ((6E2_m@Znni/VrLSW3jy)<&OByR$+++'IءcƆd< +2] ;=DS/KY GZ=aӼa~Å k82 Jԏ- yS1[~Rz*/bsB{RY#>Gd?d?1]9k4jԅoҺ}%1``y*hOrD].Pvu~;zX{͞ [k;r`iYyIP^d5jּemڶm׮]リ`08؋\4k13>HuWH:2bν$ ezY p%2<@0t \U;o)b < &NO%#Gr/Z 1)]_Kagjv0`>//oS9f=tMtϧi03kF~&_a.739]NҧKӌHWt姛_9>&:(t_t?mOKorxI\`97Ofz4d37aor'; a|loILp< ;tG7ݒ3% s:adp$b0o7M6krĨOwHw|:9ZBd/!rKDR"g)z~y}ZFd/#rˈ牜牬Dr"g9ZAd rV+DJ"g%ZEd"rV(%rDnz~y}z~y}ZMd&rV߯ ^! =!""W ^K%^%< ~y}z~y(CCkDy) { u"u"u"u"k YC~PPFP]ADDD:<}W~r򐽎YG#$$r$r$""r"r"&&r&r&!f{ɕy#VKA w-C=!AAzA;DRAV C"(C6^"K^tR{ɭ!dKdKK!k=z)Rr r{YO'#ߓcOC{DÂ. r%OdOd!}"W{AQA9n > ? r> r? >$!!ׂDF"g#( #"#99#"c"cO\rAÂ]<|L~Ldm"~^ DDxY Dn" /].z=C'D֧D2 { SL<Yٟ9}=JCDvWQ7Et-G9;Y.r_J! " LLl&r7Y__Z GK"+yl odd"ȑWEBlǽ w 55 k"Wpw9Y[DV"w+--QDN}TJ--?ܨ {9 /*( W{"""""G"zLPtܗ??o(:C6"gNn'jٵDv"ȭ%v;%v _d$7AODvՂ r{Ț!w A+YYE?Y$IGArO3 +++;C ?.^rJdFdFFFdNdNN.@d$rvYS΅}<$OPd?9? wtD]]$*(UUPς hwAVA rD==E{ Eł%At AY (=PP AA`A 9D{𡂜CQ/Av/A^ނ"r.(z pABPA֑"G r''+ YE r  DE  ,,d%(z hAG rJ1cEd ""(As :Q}艂EN$(| dA4\=\Pt kAAS9rAvh kHAHAS9 QQYEF rG &9M.>]PtA"gr9 ##(:Fuș3 r qqYg %=KPlAقh {xAA rDE' 9W{$A$At \8PxjcE˘ 2_[+jp)e*.2רxŧ~/1B4yfvNc.K%Xؿ\:sY̽0W\d"s7`x*3~Kk2o=c8"6 Npɕ(*isGk ;kOv%סϘ]pϙ#ף oD|pyffKƊ˾b[0۷1ovf\d>- \=uGC~dz ;"'bw%l)jp 9ϟ̴ KPU39EfH58vV2x_ds i`/s5x#y3!>\B~o2fF}r##BBѧMQf(\ڜ ׀kvy \;g>3]:> ._]D3Wb=_.A{ja`?K/18 )b^73ׄџ-g[ @VŁ?FA(o0Ԇ( \x4ۖ*E}1;ǀe?;!5pu7׃9z"'s}1QC`##Q~#Al`?#`ˎe}6#xă Ow3y͹hg˙|'`wsm; =9׀+1;gJQ(o,sB^1]& Gs2o*rovk@(#"P™J fksEylw%s꫘Kנ>s77>7*ߋ~!=B;B."撻Q{Qp2W=llU#O \\ Ox^>={ve#(l?ϼQ9hc(Eq@}^fx_ =^Eb.[u"b-k /G}?DyOQgH=/K_W[%1(sZvĿ2/`v!Q_py~ A}w2[=jp-l=y{(o7gրghg3oW?A~s?E^G>G}a2G +`n\-b7f&yfl[Pf_|p7sf\[[gK;fsHҷ?~Dy혣Pj?}Ѿ_n nOo'싙7*.a<9r(oԯ7<[!/+#Q/su?*0" ;l P)E{a?ac.σ]av0מ4B~'1Gоc?ijp7Ffhvsj\8 kU-i_+әKZ#3Op5x>wיHj1m\v6ʳ̥]Np07#ϹH OB};~a]Q .)5鱑\?st="]%_=_`SVa^v(st& _ 1kQpE_ύ(gD3dbQ Ƽ?{39:w1 t{L!})0GA> Ay ~82 =\x,vQpq(a\}<[삫P#' Qc$퓙 g\$˛P-\XgH8(,5K h n1xpE3albbvQce,Ŀ gN6G7er./ .y ;Qhda;S`.ʟGy_`lm`.<">F{OKPϑ2K؄W^~DzBpw׀i o& \ k2B}Eo37ZƼ:'o@oD{F<6'O l6*2+nCzs3oW'grK;v>s{_s^݇7n06AyMQQfsBk- }PGQ^[fg!׎9-_u`.O=[< .?v ssCў0=z3ː0c9G{V?}]p5yP>pd%@}W(//#\rRU?_C{0/Ce.[ ;`$-o? 0byWG}Fx.Ә~לüc? s\8/?ಯ,檭(6-q5s;fgϹh?BpdGZ`ⷣk70W@{nDV \q~C}e73݊߉ÿ ݰ߅?ߨn]:? Oyy Q􏗹l!c.y 3׀(~sa4] Ug^xi~.Q5hoSfM߆#`E[]V̅1O؇{FW[{kh̵_P޾ߧOG3p'\k[P^W\ ¾;[e=C}GgO6~B}D}A߉=E~0z!?Q_p8L}nu(l}VQ~-BB~08oü \.?9Җ;e1W E}3G1(0Hx f.;9zs4t0 ԿGcD\ C'g'Ά?NFG G~Zpٞ\s.s*; b3og0o@6;=yT7\ \=g1ϸB?"9-.F~3W]NF1>SP+`?] o&v΅+Q^l@}fOp%FQ߹92W25Hav4?.!~s=s![_DBc6u` ~>ڧgyz\ +2??|zJQsBC^f==zy?5`5 WüY؃g,.Ozfw)sGH [Qkcn? ?~d.2G[PK^2FWW?}(xkgu l\`ZEߐpu?xvD~[?ۨwP.5PwpzލxϹf}F\ c'8 s&. \ )b.0??s[_. /.3 Pp xW/Dy[FQ>x#*b sIc抭Մy+8}6g^=U?Ϗ\ ؆l#}+Zp8R[?v|pL?!}gߖZq; .G,޿"?p\ 3ۿj׀kNHv NQ']_+G_h77ipnf'(F}P˰Ì ^>̑FzC&Cx>3se7ݪ;ݝ=,bGMiW:@($mf\נ,AA" DE2 K3Kvqt0NAP_p|K^#SyGbW^(nG.М/] pxm 8ePBwhnHs8t1U?t%;c'K)CK5;2OE8E|WhN[;^|'A9Us [iCjͻkdS~nẀ+SJ3N^09Ҭ 4ygj^ g!^p:[fb{p45V!>.p3 aG[P9L7@ٰͅ=ph?KkOp΁sZ92_sx78z7"H+]7k'ɸ&MA8Z}h5 6p \~88z6k^t>t;nP-ץ2ߊ|^|B;a zB}PA pnϻk8 iN-G7N@>o/'x8ͨW&oA_÷>8 n~]&ަt;mA~ַ|'9rP яcpC=t?Lso' |ڭyos0+۶A_ao;A}\/3k=z]sc 8 '`-zD} ?;#`[yDGkށ/y8*/yۋȏ96Ssh 5oiGh*4'^GGiB>j N!8$8 <)pgX?|OҼ'9w1'8 |zw;?^f l?)8%UB_QϨl?Usk4ow7h- =in+ g>p = L54zS,l\ԃ:s;8ojnobiN5<0Hsԫ9 4_@sl5Gr4w4C赨߯yW/4[oa/>mDsv=A@Jo刉414S`{ŗ&G>7y0ͭۇC߫7^E᷑Ñw4WcC1ciN {_hE/ \1#`oփ_w"փiw6pшkn:w'cQh }MA{p8;3G5:9 ~ :-:3͡wgL~9>Ms£9q2knz~[ة4/м _,r֙bXSs z;aB@sEhHp8q1_9J _ΎK2Ǘt]yRػ m5Pз\WJlFa{p+i9گ\BszkZocߠ9z-[KFSը-l_>m |x߉z߈ޭZ ԽhlC>7"&{n4w oARTjOs^l)qz`ۡ*iwȏy>Ksizퟅ><}5=`2-C475x ;e{W4Gh n/jjnow#^X.p;xX? xIpp͉7p81 B>~ʑww4.z4"#ͱ5?F{p?6p;8fy8 # {tM9Mgh.gj4:yֿAW 線h߿~!o:5/|^"??Bgc=ߠRs;84.Lˠף9y%E5uw׊k  5Gn"ijA;?m~HЫh?v^C47G _#&ؑޣ99D,{~ /ٚC`?GshGc4'  5d^KCzk^t<=_sSin9 zk6 hncSQQ睆5Gߙ.=KstX?NU&jNB}&l? '#_gCc.92zODo"ӱ>zyyL{a jDg! |ךќE N~zkïC8 nG@>)pM=6p+8Sx. x-o'?x8 {EG=Ip8>[)qp+\60=yLjLx zgnp )p8ێ}{m6pşa QpKn7#_?xF=x4{ p5ChNS 4Goa\O}1pb[Ip;'#p==0%5w#8H^nLsQԜq{~ QpTiw m`nw-/p <σdx 8 yna{p( zg5Wa  `+{6p9͑lX 7Cx |M=p8:zvB8 n n}pV 8O0 fp6p8rKslUj49n'=x8 zS`zO/84Ip]w2SNC3=O}pWS`z_st[g[x8̄Pp?x8U?x7hi6!;m {)o.􂷀<@x8N`\ n·op]{8WD[qp:[1pI0}yFF XG|û"ۿ/knHs3x8 nE=.={EǺp8r5_4hޱ h޽75kY;~h-9y ܺ/\z=P_9:z[[ng? GhG~Fj47osh+U{7kc4/=BQf\qyۆ9t?֟ sW9E\ 6pSD ͩN^=i4\9 \94[;oW>VA XZsE_Be: .owyx6j.}7Û4oy||+ۉx6[4.ۢ96ߍ>a~aēҜ|JO5ǟA>4ߟP+vk_`M%_.ׁF=/"A~`/Ͽ=Ns Us߈CswjF [Ӝjw54 ASsLjN/؆,^ɠ-Y=4W_?p2p0͉h?Vsi4p@󌑚kn: o9_94ZsFͱnIs_9<; M~uvp3<6AdV{,YnpmM>wh.:zjީ9^|CQ5C7Ou$ j]{NꙉѽwL\SX]_[5!kkkwZ$Oռ+^mep%r蜕FF;ŗ-_Ba Ѧ%i}_gnŴN똸 fW74TkjfqRf_)lkh%"e2: ^)rxD哪'ΔYiiڧѶR+0{6CFzEPOM;̶{ܶ{ȳym~Hyki2^=\3`Ky<[yl)o'1^B|OeD!,[to.#JYߟwME7:q$ɑKs7 /Mˉz]Nt3Q{iӿ <4+aju#_+X|vc{yMUM+-ٻ'>e#/$SrYD59;JH99\nr6Jfrgae==m[l΂2`,?g>uZ=N,Jd?^bc/yهf|tsk\ hWtJlgRSpn]+d2,iZX>2 @^3s|, tFżSO;p+P߻ *9|6;9nbHr9`(Q֕D+rLۏՍ'deS1-]=p|2{ŕD$Z yDh?h\2d^Uü!{P5{^q5*'B/^^ 2ʫ̫~#?iWlxJ*WJаӟ;/(F:gJ9$MJqh"Wf袦MD%MDҺʚr0OZ$G\s*R D~O ]ۚh"z*C׳4_uҕv#BΕH K@_ҴU-%^WT;_.u+YJɻ>cK%9h]{ga)ȼ:ӾZqQuDе괮&Zw5 ]s,P9rEY$"f:ZW𚴮kҺ]ϝ3u+͈b۴Qi[}V ^&;ώSg-n?w3R&}ߗ{Of9ǃx2m\Au+ [ɿӿ=,XȞMr6hn S*t 8hQ)yWWeLE^oh)؋Jt_v{۞hJS3^U7g1.)]RDp =t d*^ nZN-g;\N-Οn:8 )& [˗N}-ݣ^BdzV_faXLz342鼅U몜T_hU4|aWu' TC Tn v"ʆUV"Zvg_U?9|~4Ӽ<Kp˰*?""ck=qN9sjt[z^+5ޣ_fmm^lqZ8 *޹?([sǵ?_KDvɢ;vEWD}|Sz;q6~ј^Χ{FNr[(s'Dܒje09}Yb^FނYA޻Ntޣ=p~[_M4i5Q0:.:{V9^ݮ~dyd5ѓY|ӟUiQA)1(9d `b&gM_s=S6*SPŠgG}zo{eקį'z__szfHO&*M340CQD:(X/Z"6ǻV44;zs3b%\D:3!гhmZύk\Kp}cItz1\ZPX_U;ǽle,:ETzhndrK3?y}!Ltr CMh'JMpNƕs B[մ-n!%-D=ֲoHWt^TU}F֡ya/#]&c;M q 17pް8:cvW#SZT%XB(?C0 D@FUװ k>a)芮K:UnXֵ}[]/=abM}gWv.z%ŗ:/ Tp4FNxǐ]ѹyvCMXr5CaRR)l6rŜ#p?_&oLDHtōoqy㯭'_'cu#V71;iv8cGڇS: 7}:[}ǭaiA ?wDtMDeqNgTOy`C~'qOTP@_x?2\DN yD ?'z?xsO7E7M*@ 1~Z3ܿ?gy՗ ҕ> ?ƴzn$ m~Fӏ 2OxK7]3 Fӵb>]/6}_gNGc` 1>'_kϬVDoQYguQɢ+M*D EϐJΩ u&]3t}JdLdߜUprUIo4VSu%nNZ{3Ѧ6gzuu/+$tSzy&&MD+7ݤ|^LӯEcTCp7M^ԗ[ I+Q&lY<mz[^%?uĎ?wܤ亱,2fM3JR/=;cxLaٜ?f囉Z6gכLf`~uJ/)-`g_xtUr>w( !d9HQC0̫5ezŸaq#ֹOG[dXN=fPSk*n(W'>^N)ݞ>\v;ѲۉVޞyzfǑ&_gp?:'-WW3xI3Y;8e N1ْ>uBo -:OڢgN~γͮ?Udb =qn)! \PLJ6n(52\RZwrK?; }GFhDw`>sgMn8+]vvcY8a'Uέv;f6 pPe zF/{oY\;VQnaVQP#+U IFlBd\eT!# (4;D[nV=s ן9q߼LW=SkWנ˝5b3Y̓=Fy7/=f1ֲn ~rhC}I%:{ qn%t+t{SO}c? wRɢUGQ:FW2?F>`n{8s%RVJ%e@_I30IDޙD_I]uF:[W5'gt9spm=?*y-atQh+fA̒; lF8)hK']ϸbh :1ν+} MtDNǹ]u[O܄q=~qxfq<{zlALWVol΢!oyU5 GՏ3+̪ilE{c7R_|V:}}VȃB"W JPߝ*),Wݤ>','H)-^aܤ],[4'ɦiu=,[2+.rX1}4_ ˃3#&?\>7s+,yYb+8ᖴETu5c_HuU--TYRV)o %; hdSȊD{QÌ,eh+2f(u~x! J!z\gT%͡W~[zJ%O,n|.z{sv+WxQY E.|\ t /Oo0=b2b'qu^x-TyoW*en<7aAaxd&RO  UERV{)\0ɕ!}&ng;!"*VB"a*BVP8AoqN_rzvSjMq&p1eiɕxʀ(uzK'q?QXz?_/q'7[_UVϞWUy2Y0hH}*\v%6=̲eο95R1mY|`*YF|e}<{W2Q_djHw>}T`~hz[sV(TzyU&RR$C ?'3.L:En":Id_$nhD| =ΚIM 330=6N kS1QXeX<@ux =*~N{0}~DQCzAF؋{7ճfUMyTמzauzܺxU k> ;f-< u̝Vk;̦{eyA^ʳ}TocRX2Gv3s|euso,Hޓ{򸗳3SE )c*G B^LGz:4 20[ܦBr~K/Q /Z?{y{ [?3PK%27:V!>[S>-Οs|ٖGgi9RRC)u?Hٿ#]31_Ntp%.{:;=9o'c5#wDk2t[ᮎю!rC\Gz$M>J4QsM#^zqُZ7}^CT䬙u_c=9}=}=}=i% gx^2{^4FvZU# srzS9G,#'zT2KBGus x߹Q=5fD6 W^gP8xjJ%u,#$z;c+=:<+~l뜡AP8KsOy!a~U`'LP=zvc,{ttEeOs&ё:2Zm՚LK=$z8g??]_}#=H{RYOaۆ9EÏdO'}hؓi?Ҝj\-^s, xFW{{ ɕ rWm}9&:nix?4O=$s:?9gRL yn?|gt\>qOOGSzfS{9T?nF }ةcY^4R;}i;#&nNs'T͟޵rﻟZUu,ޫ>Fm[NM9ʙr%~KAozz =4kOti~x=;=Su,mbs>+ kGY %C!<g}g_?Ct3DW>/=gxVOy9 6^+^KR>DdYJJyn满?fx~(y"#ODv ١gzݫkϟR\8qS'L؂ IMFdQ㢐,T_&&AQ,=Zhّ>.?DP=gaJ)ZqlxƚIu">UoU^*NBMGfQe('[YsYx e Ә[X{_\ lZTRcV9>*+TA9*{LPֱ \T!es֪J1=`x;F*Yy{kt^w> D/d\gza:\9,vO3/K>DӥRJOJ3s i]W@҃gWjvȧ#i5ӏwGo qK? ш?ך?Mz6?4{x}MmcUmꮏH7߇ܦ#(~;.tKOMs*4/c!cK-a=EC/gL-uldш`QC13_7x`v^O(8.䆡T,f)oLLKV]慖2=`gz{7`-ey L0u-iβRX3 W >LݛͺĮw .v+_O*aIX2.ɀ)!  ^w|纖4gɀX\4\2L0uZvu[z|~^"%%/~Kb\3u}YUm XmPJd~52bqQ'3e Etҽ3f94`MR8u5^_JS u2 H%q?2Q?2/z9}B4&oM:C47]_OiI.$=t:mf[}}G|7 wv76O;sߙ_3lsy69ZJJMJ|Ĝ:gylIްL7,yqj+DB+<<_`?g{LIxXO\Qqd_MTΕ3gڡ+Ԟ5v]zuUF]_@?-ó,:' Sڞ>?|N^%j:߾JD~M/aΔ#ͼQS5gzmsFXQ8ah~WmQɢ+y"ppz`,=0L@o`z8W2 ,if*?ggʘ ylr9_r3.˘s۶mٶQk$\,/s~-|z R[l9f6e%cl9w'ۘ;yd6M\s &<;k9ϕb'yoe9&3[iynp+ ON;.ڙ_oܩg4ELJ|~j8A^l77sJ>r{<ʗ>Oq?azP,ea+OT"d*OpD?ϼ2KTWVw[D"w}~֏?!>)ݓiC973wJ1-E?fnmʯl%gٌ;{Лz+}h.ymo]^FiO{ҏvv;8{IuN;+WMk{b ȳXr?HzŲ l%o(y\t!r>n0=\ZY*ȊL΋`xRyD^V`"GIKl3ŭ2ɚ=Ϯٺ(U8BUTo+ˋ٦i;AVgD=VS5̯J*Cy*w.q7Ŷj+<\`FK!,#xkvޗټwփ,XXrs J%8 JrhBR^Tu` wN|'ݏCt;Dv뼯^I{}ZsMG){37D)r*?=;FJegI!|c&Wp9RaZm!}i1|q{lbgUCF|/3w;ObNLLMMJ;7g1 U'1,zx%Tzif ;WWSKq:ZT/RDߦi}g 1m;sp\ɢ N?cɑh&$d) $ԟcex֙(un093S\"[msٓ+_/Of|2ԓ;{f :K?N#>&1:gtsu:Nbf4q5]f mq7N*5ё4+$qqz㭏> ]DOfL>z;>qMRf^Ws%W2fH EAxIywBg?I'DT/(2La UR,Ve>kb+V=d3m8fanvF#!g}ޡʶjӪ眙33wn{g; [ ,dX`Q"+ń)b!ؕD]11UQcX]c0e]ț<3s3s3g 0\]z r3hE+۝~<#^ɗ-0v+JoTpO~fOB7 E*ٷ9R¶9:(FWXI]뫌}UW;U~5:w\=Yteǒo-_-סqh\8Űᘅuu\Og|$l\אptQu 1yfZ>?165_5z-:]vfkA:V[־Q,eWQùD$ȼ풄/tiN;wQ53[zNx=pfKU4Xxhߊ>ig<~v֧l'k / qzs=3Zb>-LBVe_ @? VdI˄ I 32B;!)R?̙qc짂HKaR!0Mj$N"qz58ኼa\ו[y~[}cǷv$N'^]56+iih 0'va;6'= q߷^6cW5o;X0"yQЙ0l&ؒ#a:T4V^TAGW^=awt5~]rh[cqPFWZ&rB,$]'Y,oQXrLMsUS.xV #Kd|C횜#E{-~LXǬ8cw7㟌O>gtbC<>|U=Ϯ8~u_ZձzΥ~vۣ3p2ќN4u܄x>a=''LjVԐ7 S UK>zp g[8mϽkrfA͏""]NeP}h_ݬRNHsۄ/bJD;I̳gA!jPNҶhx-ѣJUƬCC*Qr.tjѫ"Yt|LL;F &{XjD \}La3jԣMɺR׃XR UF77@s97g,Ugi7&ФNCCyx (7dB5(9=3/^@ꓦ3~p=i9hփLTTƨp!;wP"WRKK{ VNCAcj Iw~L^Ϛ3g^k_fTؙ7];ј{{/:QӇ?un_ut{S4<\\Ѱ-0z}>1 a)EReNbUZm"0mX A?%PyE={{_чqcS`'hG->>^2-jJZo SՅ"#<.ttP 7X97#A]̹s8AHZoiL?}5O=؅fQ7 L XxUT~3M ow}#~c'~Z(-w{]QvxfmQkj_?sxGT=m{ӥ([/[W [#vyaCut,le;V[Զ:OG؊06J5a7DpHP\'A|x=A˗ 5IP& JLx=!1^MW]Q 'zsdO:Im HrE3&)dUUҕ%Ҝ#3KpT[d]nt-G]"1QjKb *>zBoRER܃A]t)Ty ^'M"GxAxN* # p2fNBaTYhx&/G|tNFv ] h[@y-*?ϟM,فU_noKmxH:?qs;ط 'z M$[(W/P<(7;4 hIFY [I RI]⮠;Pz, f_!@7vC{=VX{q{&QA1ovzS<Ck>ew2vSy]miS(X83f|,,*NvZն.dy ½\_]:>y[)M`JAzhB}mE8ɑ@r#sSWߧAY-YM*eȪu][=>r ʇ"7EHj;B[ x$#=h l|/ڣH-u.ƖblٮO~nMvuǣYhFZ\&Qjٕb b̀e~^'Olo[ uW_ ,Y''dƛ LZ<'O @v c* *H,2p°5([t <ƀ{A@ _="V.^UKw]I{Mfhۜi%  NǠM0rfA~" 1/X =#X..C`_{e|ے]^>qQxqWVbūִJV E'5wAl VdN^'*f>-%,,@H$o8gq\Gkզ1+CWJ`H @MYgyRO4ޚ~B';]`xxI=q GO߃6a$:p4 ڀ&JfQ@Z1ku!C7L)(K+$++O l=x t2qw iy<8{9xzN'UWj ɍH||Hk ZWlMn-޴Npܠop6 U_0 e wo7!no"`W(_qvkMx5|ڎlo)2:֮\sE#zXx?,0l"<~d7[My1B4^s)z`MTNe,~<M\tq5d4gFz< zEdMd3M,>JKK rKL<-;RB]IQBqWm NC Y/,r $Ѐw}("鐖`wُڧbݶxmۚtt^Vװ3_rIBum{qG?bMke5|.a\UhMIS6TI7J;6v9LayWq/O(p3Rk[9'oZc졯#}@JR:,c[ *J'YHB¥v0ÑZv Xr'¸?4Jk􍈯M@6ߑZm͇uEd8 QMK"sǓp )s(J  sDx2 K '8b@tƖ Pz8\~1;Tne 襌a-CDž5U>'N;vXlaD-=aelԾ:6U?mq축,_^oú}ɑvnUApʨ3VQqILK|dSyhfeLQd7/rL`?cȕYS6nHن&[ޔYk󚛽Kv[k%1)6xAY@)7JǣyJR^! A tNJ_rDKYpTgI:S: 6˂XEI? $Gr TgPQZ>#N(G%͒[wfq 4 Ÿ,Y@e[VhPGYn3 9>%i#߱E)^z4+h nYN{]Z+ 0.c :C,CNO<!^1fg[hy.;M˗DF~WGM%Qy ay+4w;|W(6&Momr5f$&QRi>J?&H\ɛyҎ{\}u`K;)RdբBJ-E辘;Rzqˀ@p {)z%%)jj,9GT7%4Cxx)OR{8LJ|oJX[Nzw>P ?$鉷<ӤE΀liGi}~Z@c4$,❤FGR(;=ZA5DjIt&uqjAVtQ5k'oBpD(LX$W+Uj^J5Q2&J]*9~T(9;C ~5\t|`.rS#ԡY%Ќ>x@1~ʾbkϛ'%4q͇yEJ_+@pQb?\?|+\e[{Gmm+OVwqj~׀ ߰+DO¤TifcI<~2$VZxE0mI|=K{4ߎ4j߶į[KZlL `f(ZƎ/ȯ`s,_]YT2`Tuh~E0TVUh6vr=4\16TN"C1 sEY ؝e&>y6zl~ވbTؐ=H2l6g}9r`xu_}~*k<[Y6XGE^Tؘk _7~`i5Gd'0Սh8 >bZsj( !94isOrh$Wž*"Q4:S$]mdĠOBk#קp ǂop9!Aƈ{0nQ "Gj02?0#>TQ sp _0iCiyBjPJ:=8e@ "- T.(N`qcszQ"}m̏V J`VU^_'W; Uʯ7(i 4ۯf2i=hf*~͜ 4c_>2A]@9 u)@9Cſ Pф𕯾Cv\ӂRm?증CωeeBu\ lA5_Wir@׌PK:}ﶠ8$$&\p i8B^&&{ZT{ZќDN \9R6qgspQrY?G=zK3kn2/pMJ;q 6xt/e2A@chuހMB .--)ѯ*FCO>S螄 ,4Z:68ϡsRKdܗ^*[P!cG -8[blLOJirA);Yq ʲJR.-sP"G'//ϕ {~aﱿ~p5~`[jVѻ5>?{k[EWC qO \: /Mi%;%&va["fs._-2\w܉}uӜS4-Sմ[$*N*|*M4m\MI͙j͝M/YSŴw$ʓlyoeJ3'" }3Dηly0My2MH@h$k+ѻgd)K#?*0^J9BZO1UO􎤷%=*ipH.7. IEHRZr*Bo΍iuI:]PhQAazAe/$^ r*H#N JQ!_ @-HV*0WN4I&/i1M-OR+,e%|*EUP1((N!Qb5F&9wp$~BP vqޞ.ߏ\Plk7i=WWX,mEKLL->R4ɖɓMEtќiBُ_Z^u|_˫x!own옆^p000wrnvW/dv!{Kvkwmkwe3kSO}ח{z0!y nhz7vW'e_F$4HN&OIYMt-u8"YHeR5-dKaw]࿳6} la;vp` p.Gv]OQعH?H U3]""YDeR Va'O@`yn_N ^20@n7Vt_9dOWiQh䉮]/'5|7x9 vOZj2:]@(A~QAYV=ϔ~_۵Go#ѿ]?ޣˮ_XO]K<&#Hc~g#_7#|Z1ئJoϛާ~;>,AU~at9+ȡE#KtՒ !kɒ˟M-yK)iɧS w5F ja t)ekhI+oMhxd;宬eZgSYɟNTLA?$}sޟ6B^r@?h*j_B"`x.蹺&oɓ7~78 |7D560pg1!(Apk~L jJtƾ=b5h86@~s`h qyL1>q~95>?;Es{?qxZˑqOcSx, Ek4ər9Y ]?Þ9ft4fH,QByt&1S*9-ekw9u=s (Ѥg^H̰gCaaJg[-DTqZmq Sh{L*IH^HD_ܮ!).$OGďRz?NF;%yT0%0~}Nd!o}S:\ b Q$Kк쭐 *."s9 b#׿x ě`> [2Y[@͵祦Gve(M_А8D R 75FփR:O&.)AEuaDDvU ZAOb@0O٣A4`=5=G<`E8?q"B A!v|^Ve<{` J"~a3{=] cbfL܂%uПQFQ[SWz!CLQ!h%]e _~1 deLU!4ZO~X2*B_^hc7O>gh}Z?h}a  @{, Fqnoؖ}7wg"q<1^{w󁡽3~'vE@iIE:BOV&%uFu {2m+Kf3EMvREH.OR%v& %.&Bٚ&kp̕ G̣-dymD@h ].D+AqH er}G*ܢ"4'_>CYi29䩧 RB"+ENz:,At,PB*Ź;9,K P:WPDcH!Q. wIQYLwBQrs_7t%H);9,cSP OTRd %[) 8LZkMELL l֤f 9-YTܨgqf3gNiqv ˗=16X~Crdt)6/:Cz<0kNm!X&S=hu3!S\/_I29K_m.Vt$%~M^bG KRqAzJ/i %5sԢD|%I.BR{tRZ").^|FTxLb&䬠Ɵ0m]䈽c&jd3CKDGI(SgJrV2Zۺ(ݔdSaT/brMf7ۅMQ}X{O̚uKVXqt;c(] Xl]ie 0c)?I,ě, ѿE;zQ/rHd^q͖^T5b)r\j t6S W=c3y2nZy:VY5._x, Y79Y e5qe,JPJS657S_& U-&yMῒ(_=j`?O]}׳t닗8ۖ/L!Sql`۸ "§"MAKX^}xdUl= /"9W{)opq)Ǝ=[ C iHJjpu*eXHdJ}T_ZAԠI-+]koG.y`j>_ɩQ~Jߟ|h_xP@ dHx4T ߣA?F򭟚. ]˵uoS"JF ْxȯp|T=G~cy l4`c2-%Nϱ.Eii[H5ΚlA**$~A,仢|L4`Nwʖڗ.[< k u /n^fuEքqs. ^CyXO"2=<ؖrjzT^\ :cMA7s,zq9;ס-i)J" x9IÅNALRQ* A" 2\Ps]ПN&!cK{ky{7̀z#%MXմdIx!AYOu,~\V]n²5CVh]Xs 2;IW W@U.6]"EzsI+f\ ] bZ1YpEiШ` @"I]H #CJVJ]^'3NL`35l7"<'n_.[dNWM.$0{ *QW,nwuc%mE=΀٬6`o:LbePȄ V{Ȧ}<<.=[ml]ъFn/ZUj]~Ȫekzk\ӹfհ{`,.2&C/6 ã լn  `pI4RFX5@LLA-2#PΧ\ ؅VJWN 2b=8/bT!)D)Ns:Lm!?,m P&(nVj7+S~Pٜ/@wnQڐFn6p.~]yuE~H: s-9c죠[4LE:Bф#BuV~xOFp?YWpKEJV]σ#>PoH>6aňF|+} vz[ pHs7qAF!cS_lζвm:!_oRk?v¤c$ulS?E -FB(,A:1靐tua@ x %t!<Ud%/tQj&5-ty$¾IN4_^TutsH^`OC+.gx\n/ zG/>2 Qcf8. %`; IB)n#B)6u ?>t!4&C]~(8?ZmnAv7G7.w86ˏL= Xa{ba?uO;#<ՍhS J4?SnKb~r-pm||=}0`1?_]`7}yߋʷqY$8];}ͼua؈zx#&K< pDCބ8* p<$7 U B$ E [G?ϼ/D3鑉mҿ5"]rU />]Nz뗸*!ey&͠Ƅ~^ɯ85wQݩvUpgipy߫/å %g9b&/*Kg^0o&V:AtrpjV.ڗq) 85(e@^ja cOA'6f)K.HSFW'e_L@;93Qu^Ҿ* 4Gg^Hk~㜷~[Г< ԒD)xJD)q7׷z((EpΔؐSx3ɳ ?X( =,p=)tGRpgNJC= T,ΊZ뜪SU]ݷ6۝ ΀""Fâ03 nQDJ F_ԸJIQc#yٍQea][vsԩ9C(|W?(oF:_.!/4Y/q_|]ʼg7PRoF>?/92WAcE^kӵj˅?81%P24o X$[k-<5!!٥ԳҐ+0 O^yXI2XEyT,4Wܤ-OkԤLTPtMo+8թ5W )R íJ| ܃SKJ Œj]bАZY%j)BʗIF ]T׌:~4U+ƸN [q':UTz(Oչ<Ą*W|Wv=FlXnN ?͉f`;jNؔn[ܿ_ĩZi#괮E]=tZXaL{2WJ x])~SaN@RR4guy)Ṙ\J-:@n::"B $-iB~#eѲ}2BTfxL)D~ f`EF<-ZJ!ic%uJoAD,(6ʩh+O2-?M/U*G1j$ᡸPIG"n9B Ag7c|4SÇ fPpX | ZXqk_G1`?T[{%bhkba eŽiqCKbk6X}K2k6-};t.CWKۿ m6+>UE<JZ,$K=Eck%KF w[W`eK.o;,] Sld#s%>(蠏:HSMDI1"NS^'1r4{FuKx[%$?%{w??K:ZZzh2E%9+Mbl 2}LC⦇PvkX-6)&^4{,~j&Yoؒg} EQ-\鈌 I ^*Pଇ`1MRNKa%x ؘe-K:zY|L2=,~:d&o[G`kGG{e_^uG_?掖:{#)иzaK#ۅE_'e4/XI< 冱c0aƄ}z݅({.˅ޅw͎<؈>qg;ӀuV.jih^1blmpEdv.?edѡ嘖z` Dx [60<|;ǩ`MEa]fW:WAjJJK+ҖR]!//y*.ϧsEC\4DYm,v$)I4t(CE[SHTyg-((E4=hRkRGiR&>}ҕDͱ[ئu]Ж C9ǵB!v.D =ބ{qinXq}cޛu;ã GV"V؜ ]"[v{}iau.,0lOm"ZF"UtGst1+,z3slⵣtUX(Bx(kR)eT|Sq~YV;m%W&pߺ +oXw `^:}ygBxh9@cÖt$yHM;tVJ =רa2 .z]A ^g%ikRhX {= cb >NwbkB7.nvKk/=j6->;8_V- F~T-6Ι'֯H*B PrF CKO ?Okgou( D`p 5i4G** .G@X=*0K6%rmnv_[c|=նYZ繝YlE;2\ fDZؚS#xt l^gϩ-_L i^'h{ qགྷ;zoq?dW~̝v6tt[ Olcl`;'!$[9ºiAҕsM]ݕ?t0# ^+u`+\h؊ X` :—^ c8ITI>$$IqѾA\!@Nk xaJy ؚU n}gjYղdykhQw.g`7BS9KűhE1)O+F%rh@-4jԪ fѠA>+)LqWi5"UÈQztt%A5ExXxVu삳]tVϊ34, zh^ j"|̠ IK偒(f~ $n?z9l`gvCGmw>KjxB=4T+ֺm!bt Q{*.ׇ~ի_ ٳey9yzyǪ%[όʥ\ FOɞyTCCJc 菀ji(bHNy-\he\jV, }PAרy-A;a>ɜ;_+WhX3:dz6r ۈAռ*5#HPjT+VZZ~$-)*@8B-Dc41xCk}K>yS{l";);/1x ֽׂCc]ςצe1ݟ?6Ď /hvUQ{¿mǚuTxɪEQ%m]O/oxav4SѱinXS|US>l PO?é8c.6 SqpU U[>`jmOWT KԔYB;G_~ZWk+E!#p?<*1h[?;BR8&.cj]ER'sХ7^Oej@_'~u)u;Z Ja~+B< OtȞfc%\Jdʚ|Ϲ^}0K(ZcxLa94g)Nʞ)fHMMR2h+ſEA7E\A|B\`Z8"/i ~RhFos}ShG{l>?>س  ySwt>\d9}ڠ&h3gB*""Qk#В %*R$2$YhA%9QUг<*В==2g!yC* kv_.`^3>_lZZQkXt4oT0v>~X]'|5sV'a5-}{u7zҼxiE<]mˣγ//(/\T`!:J\ŝoX`P I !}=1&0B`/6S;/K6"B^5`7!XeX VB"^%$b%<+//B`_OYo/D/[N[tlgKSgt,jihvv^R:hE}-X!*vק.}-\?$t`/E_vӫ#.ѶbEKܮ殖c;;(ꍰ0lmEa !ã~h+Ac"cPbcZ ڵD}th`aҢe3%9O]vܦhrt :BM Z=)|+_ jmvݍOoGY;~"ۭ, ƓQyBah˿k~e-=kbm/J[@-bF\7 lKal>S @ T XX;@ *WqDTj U,6C c_ Vp|߇@8}KZerCHuI-=yٮx.:`^kؚ#`s ɯ{-Es[u,_ky[rjyg?"asT [7@Z(Jʴ)B!Re.I_9.B*V2)OqUNV22mtD)~.':'OCkR5ȵR=VM^<0+rZ{_ .%2`\%ˀx.hOh^5+.cճo@4CUGbפ?"\9M+\iK H86i z84ksk~RWzEb9J`?;9u}tNBj/CwEgZX /kl×Hu8'9vt[e-aHS;ODGzlarkFC+\)B<,CjkVĿwzT:p8Yej̚Tס;)~;9O۹tT1/ˎ+-Vˍ,2ER&m,Si>IC$4<ʡ+X8cC Nڐ6`ٍߛOmg>{m硫`4Ԗ2KX?ט/JH^װ#vSێA`~p@3 GgN+5$2%ҠU'TfW׳ 8B.,FbA| ~"fTHxMb7`)6yiXۘomۍk_ Wz4.t-'GZ?ұrykXuVՈOsIXI r'Ssu&lȅ,͜״/iKݿ'`ژ2܃JY)3JLVrT܄y,EJm QbyR4I3),Hb.x,\\=\*oe]2$Hd˽R#Q":KɌA=Fw і$\^~]Q5W|r n2uwZ~7rpQ00$:E}%u=lr :s(PU _ tʀV;Q&5TjҤNF 4+nuO8=s?“p i :@KZ~Nrڎoy&3!M\r2 9:eN9cH565 LGE{9nK:`6dycv=wyQ{Ȁv ۄW[6S iY+BWZn9S:%=9ܤ##8)ik*4c^,r /Z#/>,O h# aaZ!+T6PM`CV>kcƪn.o2bQJ_ aպQ$z4G‡t|:Q~2W3|N磄2cl]q -ع7!MK%1)8~ 4N1l8{)0 6Q)h-Q k'-t4]qWP\A_"lsB ߭'o&f ̾XwM--]j P-=arj8=>(},ڤ},C\n-XJcSbWnW$:Ro*,?ec{Ƅnn7vGuۺhl ;Z:fuU@8P ǿlN 9kq{礿cZ::' _8 aBq1׎^f`7{os?_9/J$bbWqJ:RZ1э[κXӭܖրVGsF§S^}V`nMۀ}6`ecs<]3[;["[_k` ^h9gM'.-n)^DKjE'iaq.EH|Ol~HbH{t }oF-"WK)IV, O.,j cRV(b;zvKK)GKE9+Њ2G v%jLI]ߊۓqv`Wۓqzv`?{G7Ѳ!J@=47윧`hð]:'8ׁd#2J>\`zU bu?8 uGb;hθX |F~ |Kzh(] 7b UF )x%J̖ЙQMq?#;U lȝIج;xgs}{Gf̟`7ӐD|q\Rh ^!aؗ15>w&N`o ^eSOG"KN^~ޒu s`KүDyl_m?eIwz=4 ש(uhP",?T%DY $!$)eL@؃1<SHZXO] }NC)W-1uW-:#P 켒JO|Bӱm E&|<;c<`?{??>ۍ0cr" jZjBAͰnfݜE̙t @S)WXJ6:*h 8? >:xQ@:~`^6ehnC^{vϽ&ǙإEmO^˿_u>;hk ǰ|'9xۆ37݊Em R% !EY)Nm&-s\tw(j3Y!QTlǐp8Dd?@P Y5ȄNXz`)lQʷ?|nۀ"|S;4LX f]جOE')4\a(7%^ Rnh-5 K3Q?e[ l֤goq+-[/zhi9znWsȟz1;Fm_չ,L̜U-Zz=a켅3̉Rϐ3+fṮDQ蠍>eɯ'M%Вp9A18 >G8ǙTl,2&Y%L)>^r@Uu}ˠgc<ؔ@y gC_eWoϠ@.hnBfVa}dψbInJ0u!/*Py\#7YyGՒtd$U(XdQ/iR42CюEh\T4}@w?eQВmi/nKw[{q%] [{MnziovXgLꃵ&:y< ^R?{gg:Ϋ[Thf2 +gSŜ e j[?G@yna5{I""uu@8ܢ)x˪{5( YX4ɐ  HäpLxQuTT}'P.|L%6?y8G'7kEF]mk̃x[5>ΞRE9LFZKd%Tct]GY/|D_A@7t+SidsRɱ>&?j i^"+v/`6]>Iͱm/Fa`< eb;Aa/wkh9lŊhx:cmqV5;oŒkzHEk|t,ZxqA7lJ?GOcbww9^ۧFhſMMc( QV1xCx ",Q44k_Y|$7?;#zvã&=lccEbw|ǎ^:5zc4<0wQskUW,ާ]xUTk- w__{ԕ={Bx/{ʰf͐3r6. O3iafnǀm51ak 'Me,]n,Q5LGX*i) SZL,A v _v-IE,3 iid) "trTuп 롼&sGKDz/?‹PH!f52GRd c* .1X:Őu&UHFbQڨ R䝬:08Q\FKs(d(Pڊ[/{Y(or:\Kud㎱kR7^@f1 rJKVjCR('!`{jGˋ_E߈?8v쾏GqAϖB_}Q0ot4l9;a w6afԎ6djpe`T}Q 0\7o e&5ߐ ql{">l>wVrSC~g@;{l0q-]G5G6Kn \*VPwEzRz({>UĔ.x"UJTaZt982<:S9D.:[Pf°@<۟ 0_.nhw: IY-lY9K G $uG霨@h TJ@ׂO Nv^] Y4P.RDI,gY)zڢ{L5i~iI#DlunZ?/脀%em4YRw`r$Zd̑`VV@P@E`hpO$S , 0 cדzI`= OO&vSz mO/tzEp̾gv6PUPsVs+,73h{2VL(bT,)2nϥyqTKe4FQ4,5dz~nQ撤 pCN *p# 11DŽ,óۿUi`vӽ䩧cN~pL4~ǿN m]jC_t+2DQE)"iŐR2$)#ʩ C X {!+#k{kG·tGv$p>]`|g"8OL8z=zɶcj9ڰB~v>/dMznܱ\>t\7QIJkT9} &>G5s&Sl:i3҅9ɰum}ڧڝP7˲ Psp?t 끾GΣD۩Ÿm_a<0uJM/î2HRX2œv´dM˼I~ 弣2vrdlR==`~Կe}'?ovwtsFsS-]^d)8ڛFg- ׉ub,}E`8x!(9I͉rXl6s MrNRUZ崜S҄s9UM8MV;фsùyٹy\>#L=sTdEZ].,}{:J('S֏Ċ7%cFb~O t0.w6Zw&5B6͋G Sy1zCs?\)ů[+'ݐ'j'(|B!ڏ#*"~i_YwO)=6Kjfu,x)L9F, eWs .{ػ5Tsrz0C@\-$pm+WuK yY-*ʫ+r岬K ^ UU:ZWZQû:չ(#+ S2txQ+붳bw\QDIC^T}kCxIAmzSX 5@ХX= 6}fZE1鹵<ךw{м*l >VTV}&|#ezp0~!~& Y0kÛNas.Z>ٯ X-)5Bbx/[Bmw~gok.o=7 .<Ͽ\G@$]ࠗ\3]`MooG_L]|A/;Ť߷l^y?겏^e6;#EHQWh@L&9|乩yN(>/({D"Zy: Wxù'ԕ^*ϹW7 ag- ܞo#tNv qb8?;< y';<؏wdgxwiﲝ_QD!@m݈9B-^j|W[jR/[%1yՀ~Ǝc vvߡ1~/%/KR//yogi5FizVa=tuk8g9DDBJL u9s0cօ_/'p2_ /'p7Υ-=p %BРp/A/ k@+$*Bu[Uaa FbROh^I{`/K~l.`cvEpNS׮8@]}l^8'h w)!\t/PhDq! ;TlT0Vs QBm7I@!8mkHKJw۵ <+?j׏9miXl^@z|%* >.|Wal(G G9$B\=F@^(VhRqB$BP-fd|z^vͫ _(~xdyk2ǰǰ4*AR@V.Q6ѯ%|5`^6秾%[w.<}Jưvtf]3ٲ!NwkB컯{W*~lꏀ}1;mig~;qa]}ut1}0 qD/⮁u/WH#vDE(+ H"!2hTdKCaN8,L 1P<+LP' %E=۞%xKl{=۷^&{uz@u)cw4k /`XP<-m0 Hq0sH*5iTIH>UUz f -p-`!nb(ͦn됉]88 vC~FWt'KK#IӜ3Cgf7MLF3k5t>mt6a3hf Y;Lϰf;ºC@s>߃>}P͈ *kصHj$︌HW( ]^S) zhTv>y>y&[>Š'e?7 D7=I q n?|zT~}olCTܧ[v;w]NŸ~'W-W- ,nG 4f]?ESԤ# kiaR2yE:$LUyKpڀ^q. vװ; lDvi-K"QuղkTryz=on` wno^ցֻU"Ea7ŶYw"8:"+Rr\8kLX< 3Qcv a<9G 8RS)T,F$їFM6@!xϕqv \Љo^euk}޽CB $@" 2I$$ ަ@ZZV-V뵓r[jk[k{mjVjZ'ILwx8=9{^ß'O$Ӓ'50.qŐA>Nk/ȵgMt鲥bUyWu_: SBIGXȱ҆ kXrbѷ 5ϫOW dLwp.9zAy'}=9ѥπBix2.BrT<#,Ae!ͻOGǎ2={酣}3ӵFJSoASO6?vIUarK]t"jiq#vD'C2U+*] a הd#Y6=í %@lKkk9eW_k>̪Q[>?sO?3?=ansqc'L-3sݙn|^dId=ȵVa2vtݘL8T)*?B"[(?xcRp"} OO1)_<M;6vwvH/pRL,"qBFa a$9D=cfZ(x ӵ/] a_~y/v~njj&DymD]>k\{L?Y$jf&)$.\Bn]_ibo2. KQ@ʧܧ.}O3{:ڧ}>ҷk&oiҼ=aVZ;\E[u>}լB!2ERXtk<|E0|i3?7({GԨx&g~ W-ewu^]2༯qT-=}yQ_.<-^.V˱ ~jfE<p9xDLɍވFU nT `&֘a;R0YGҎOӤ,@YI“s2 R[Zs=AJ@,P+RurBBE5 m0T亟rn^Ent'-BKe,Sճy>O{CΞ`̝hSFӪBe~E3.J}O@eYSǵe*끓E E>\+1;ƴX혏ݞl]ǞKA;c>EԵ~eU[TtQʔ7B 8 W1s pfMԾctsURA!,D,iWQ-u84RgH/\9cz4Q}Uݞ$XҲXꬵvN.U,p!ymLMѧVKTW_<Ӂ百|w3=<[ꎆA;Zt6QɭgD\S+˝%tΊ83}U B>u^h :xY 6Oq#.dPEχ>_`z@w銿1o>l=h+/T:掦u:]дeA:.S54VIOYSɟ.* EƵ0ci1xIpľ=Fģk%#=(L!>VPF~o?1ģFFݸVfW ذƻSl kiɍ'Yl&[s,_ٱxB Mva+:M9)倱F@=,BѨ/?\k݋A"E/2_dLqp}G77jiߪs\'4`~wG뎗X"0^a<ﯛBY†1EU%a>}ٗĴ%/|~?ǟ?nZ;6wY{yga}qi]dXHE$!3F%0Qie iU)r~Ѻ߳L)-; GC%̯[0ܧ;r@_fr<1^~7?[ۗ4uwcyџg:lRwfřwO29\a.?/ ƽ%bϼ.6<TXڍ4iq\x:9ܗxz3-ī8 ܿO'RT.MSpHBAy  +LҟWK%xgGsK{OWS w]]3~q3F̥jf{5\P5S ӋkU[53LUS[j PH 2n 7Bꕰrn]sy[a^-u_ȱ! |a,gnh(!!ÐeWR7WC^M!\5;BJ73Hϱ=P*jY' B W# -9, se0%CPϒScԳ9*̛ɯ2-xiӫ\۫LkL_^6\ߦӣ55 W pF9!='ƿ=0 LJ& %t8L~3bWXQ툰0HDLX6 c5"Z /MDN(I-dIJQ1Oib4O2u~!e)e---˕J$qxXČ=b 铔/!&!.}RKc|Z?_ckLx-?.5迿Iᶝ*-AY߂Kdһ*2)ˍe2p +lN9EN1ŜjLJ cVV;H`0"E#2)2) d cmi9z(a.#2;))l[e\f2wc++ؒeR?]hKc+˝ ,}Du^ӓإC|>>jLկ3M}=_gzu7|>6tK<0U?M?O.|ؠ, R(DJḺ(%|1<>Rg0*g#w#43x@o B +#d&[盪ѹ=)?eX|AHKH/Z"+ɮt):.эBn0ƙ,˶m'l[V?Ww,8Thw|>x#Co0~77~ oS̞ۃo0W {?a^b#4nJۦ#ҟu~ W|c3J]A|֨Nf@'dMk ٷ5>\YM;<*C4=+Fjذ1;*ҕڸfJyg#wAHB(U&η:Ŵ-ot7b[n̗P"~c3ݚ3pik ld †cvHƆYHk7M2Æc="JT,#Jۀ$l!P>ݵx;9mo3;oޠ't|'?9ydO1_L^sDo:Ƨ;UjP_Y]M/%08宙#梟iMG-֘Q[0aɽ}0دp[ZrR27 OƊ/ 6!QgSB|WSa5VtYr7֞4͛"0i[9eV׍l|S%o҆BpU6Sr8DƌWBc#%!ԕ9{9#3Nf(o)J]-:-Ae܎',Ծ([X])PS41s#f< P0Js?dUGߛFUҮq jcg}oC?wkNܢΛFuA4l m;4 &@Q3JI%miB vۺ.*\+͌tsOnJYM3-92ci@D [Ɠ,,0BGչWؘ&,pxF='t@}9 A G7uMC̏犦-sJ;aWS[!6]SJ|]*{ +P,NJ!KQlE"C?L$-/ίQ8iĘ #r-at{SQȨ4e[, \Y)ҚJ細 R-PkasD8p\HRξ\Z#:>?$Hfi?~{  u~ٷ<I7f"&"%Z-쏔- zq 6r@/ԙۆ~Ats@;E?lq@enNF@_zhD\ ׂ`s l ! NSLdBas;qvЧ>p@!7f.ZWupM7ww4j`/?!2ToZ'?rS,RpX>C7&7H#" ̐:f:0M_KƑFTw$%rW%cUN4N3v+ut.#}篰m4g˩_u7騁 sܻDoC!oׇ@C|56kvYXwlfIh=CpP0]8YPT) Eʄh*M)dt_<c8K%"8S,p]$`1LKG*73S&[Z3\Ф،Li"{4qL#aV/a !zUC+|woG@((>~l=np<{: Riʭ7ϠJp:2]0czyt7C,h W?}-CMc(cKk[˦}Kt2] Ɗ*?El~V"KB-u+ 1E1X@1C1Яc>KtٞsʓWFnY-~[k/Mx ;qKU\^ZK!YV ?uk7 |6fҤAxЏ}!%?>ZHN>!O>KGE/[U ]-M3E/F˼}2OĤe]ˊvH[v/{6rcFzQ"n?F,BU9>Ҽk®4iЧ/AA_Kk8༬j3_C{yV{$zU׾iT.5N Y^[T\XZVZU08 qnq9O¨B)߀vgsUD'EꚙqTENpR~¯R_h,2~i>]t˛b=+<+E2qDQixx̠Y` 8. 3L_^}L)WҊZiB4V i_Ҁ޿^++brݞl܌O1*}L*X)#"Z9IRenStYxe7e@_ɀxq$sjDEfjiW1us^eɬmɰ=3gA>/WYozhvhqYmex.;PvtùL\mȶ(4-Da Sϊt:B0'"Qj"컩ApY+Yz,a>Ӈ >sMZrn|@.EC=`B\dPɮdo'0q#sLw;)eZ9#~}hupg:ﰠ_z|arPq9|qo_ݗ7OX^w=纬0Ku,Vֶuߗ}s4'Q!bXD|:v[9;?uȇ7o_> p}>n~>|T)I gqvQAp31L/ٕuݦp:"",CÖ{rT` )} 3R%xHS1Ex+r|> SJν;wp>=_u֎^Ѝ;/F<Ԝhr+Um2b0 'F h_U^-##NM(zATS_t"Jhb Jte,q@%}m#:}ЈG##Nm]Py/(b"׮iߚUOj\Ro摠#A#{Fߛt4t{Ct9cT! iHqbnس/Rfc ܦ+A%I>S÷v(tIo:U*qdi;µ\W/tD,'&$}+AU_γӹkk9OG8l`# AD"l.>qVdMhch[U˪@R5^35=M=Ki3RϨz O n(\ (1Yi[c8FtscFp>ר@F ?úwuKhԵYuPW=7熚zwDpDtL;)'iEw% ]=Z e}B%H[O۴?&/3蘠_fAd9x @POs-Re0딹‘a:fdEQtC"1rXdAl,j~(|W"W'41"6YFҸFEdiHQ1Ş*VĺXb3wXUs5jP{u@ǿW?ۇ\UؽiU]S3DH%~oGKY]o7}q?4W @犯 L{G0BmD1F1YL42P}PM@Ы57kOj@dZפ,^4$\7{7 zY?Ep{P]{޳5F/ G_zԞ8+FZ0Fz"lqw|xx|01 Z^LaaS{ssSZ7}7ϥ}F9ޓj@  |gO&zb"hDٿoo_x [;Z6 ;wxA?Y f|*.]; L7đn8 Ga'´IS,a(P7s_–xW:sV=zޝ}1E\%/00>ɶ Ӕ(%Jðͨt#)'e۽uor P| dJ?Νݒ!w[^vm)R 1JeYB:a1 o/0u }9ZGåzO ?M=?r}3SON\宏 ~iY3:hxhةӣգiwj0 *SztN󗜀_-\}dT(IU QiZ? o@gAOqnzF0^TalwF=?`&{#.y ?0< 1TH!-[6X4X^FGܽlܰ¼~iLH eK BHcPdVE2qPyx֘҈dOsg&P6@f@&cy=RN_`˦1}ra(o\W&~7'~:uSJ~gn fn 85=~[S涖m-=jXW sq׃n@Qۓ,dƄLwf*b\_³MjSY&[ 'סjwA;3A陠}fte'Go޲] alK+8(3"Ɩ fЬr:/@3f~7<8Kg_WO7@]Ѵy%=-;VnOGpJD0D!b3-("ԖV)b/RT{?[ K=!ĩۊ༺G{f~6 Y3f0y[GNo6.囡oI>(?n|K7fᰴq.BVcs(Zd"[߇coH"D&IEœ;?ceB'D2Ejh_{ߢ_ie"\]YƣGQ{vή@8 ti~{P;9Cvvu47wOjY|"$4! Ca0LWI"D ͞C{^ӓs-dzt49ѽi2$!Zy AY Fxt)Si|E͚sAtۓ`ttO ik˚KuCܔoy#;">G6;iG^/KҗwޝɻxgZHd7 4{}(f+<xfDgUPҘdJ1c T83"n`#m%,rkD_k| y6 E<ߝNm\7wx/VyLhX]ϴr]iFW CyyA@'94l>fx:vk(?f#\GxR˜v C$l)]SdDYGi]? a$g~?og>?ոuOokmWe·Jߜ&8v.DQA)pDE'L$ʄ6r |ٹ^'}/zH<5|FuA?~tu~oݞh_8onjܱcQSOY=`^+` ɐP{k|3O͒A:߭N8^}.{9f-9fMV.mJ i Y(Bw+`9i2bd#nnA¶*R4wyJx Qۭ_+@w]=]] /^:gA>u$ewWk78~ٓYh4&hUJDaFm2aX3eL%E!ӖZ]iJ9ޔr. }w~ZWO_€ A, ֑} }n??ѣsaG{wr-?{x?v\,@4\mҌaD<15biHChHGyz{МXd=͋*إ|Xa"ВE~n[ӿ{чgMڳOy8g_T1m2!-TMsELЍe{}ާ@oyuHrv&O[v4u#Em9;ki=o;d*96$Q 'GcIa]K&pGsTRKUgᐗGz?:G1M+gݴe"n|K5t$Ʃ8_ 7j\.p-^ tqkbg:殖&_X훌;(bĠoX{{PM>7ee<3r&3Aw98ׇZvwt{ypiGNIS)dZժ%#R#obJ8 a_+eY܌(#㻃1U2" 秽Na6_"RM;\Rܶ\sDo/\%>.'m]-MLvDV.*3#-~}2D7$Xtt <<ѥKOm~;.<>AOYzXУpvg_"RP$ⱋ,D%V T uNiG |<4{-Ҁ/@e~lnnR񇼑Crp2#U"#zǺ ,\qAtO _N{1KZ[2@. CϖhzԮȴ|m84B`$B!eh!ƕ]裳N_Z[?OY:JPb%(2O>qYLsHٷDWt[~8<3T)ky>'@V{^KOEPAF <9w} }ݼM=z3CeC4tg]n|V@!Zy'둬SH Eɝf2ޚ+UP5>@?ho{|ܷ5O 6|+N\Jӭ! 0|#-55j#WƯM^ǻD'kt66/Ҽ/6n|k>*8Fa2ߠ,,0h<*wg* y8ՠQA!5u7tliݣNs>z"Q^-K YL~^4QD".+ p&N,mh#sOɣ_=txu@ AP΅B,&^Dzrkz } 5k:?4ǠtnnպُO8kET c U!~rƕ=;u٠gZ=pl؝+}*dx0s`l+g ȕkAkAoş'nnߎSNڪRs7sCtVvzG15I8p]&MwS*l0Cl a df+!Hvb$6, [PbƄS2%*{YS])'DW!q>lNywJyX1Sփ\jX{փ~ǹ_ O!y~8o&>n\/7jЍ"2;kfv1f² dZ0i&|s, )lCJLtǐO)3BTxy!HӬ%@@k6r<}ӆS[~^Y%T^ouj\@pui<gy}灮?/?Ϟz<{gfn_Q/l}jEU-a|ěWzҘ9֌cҀ $X;CL '$K?!-9\B?gR<,4dL&\%XH9̖V+JYsұ5bxYHsϟ[hn??|y]'[| 9Z>AYTVTDDXbXd!)ƴ I{0BLUk8Ôr ֖V~=ݭrQKPZ㿞.*y; q/}t{km"מ3[Zw3] Bf r֫w 4Bf-jQE#-cmE}z`it酠t%䪍6~ѧǿdaKGN@ޏkߐ󧒮#D4ed$ZR8pE\2 8,&Ha#*ðXFQl`+E2qcMH~-ޗ +rcLY2;-Seᩃaa,3#!S䷕X.m%!%O5ۖV+pX"Qt;~D;X:J%*L%\wޏ]c W@?ޏR^uϰ^(3,%̜!>wփFud8Ykk'´XcFл 4syӶvt4wR +V!۱"H;)&ǚ@l 5 M'7UeDJ-Og}NJiKlFnMMq\7` I4|JCNԜoUC or)ehIίK}O}6Žo= Ɨh>9~^S1-6raɐɊ0,(z-q-iK|D]"r]1 1 nGt7̽͠7lo3+蟆gSOS[_'5mb:F͸YW:g=To4>ٛAn5o|s~_`r^[ ~FHs}eBʔ?v9~H?>&U%[٤Ӿw9SL-bNS)W"7BqeC!PЎ9JT Ǎ/GāxPzFg'Cl׊\U]usL)g#xK,15G /s-\A_1xpLa0_'1S`Q",{#l փ6P6Pqu\Op0= 4FҀ1)U".H?#~@3/͹(L_uѩ \\?ocrEWp'}^+ Jg`<E?zGoIƃl9 7Y՘7}*A<\YXDedrkp[o[Z.C`wϟq;=wwm|SL ^I*w-b4_5x[gD(i L}v@u.?@t ?5p0ߌ8L堚XFiZure7n纃nt{qƊ-M>={Y4gyv Je"5@ !fO/[z@=K{v ֲg:6o޼}KG#Ńjh݆ƶ;A׊lp4*h3 ed)K`MĄ4$ԖoB  ŀ#tҔfonŌJ:x`%}i].Qy.Pzh.L$ .PooEKݪt:I'$@T * qQg2,*(븋;nO wt\pqw ?$ ˛u>ݕ[]}ι{w]{v9љO8-;ͻ>n:i~s{v":_DhOcI`A=>#&U#O'㱸kV Ճ.?=8zd.T%\K )v ;߶莢[ WHHQwqahJpg▦k++^VTxOswezfaiID=UHn ?  3y(?}a~}kbk~DjVzSuՃzOa5n7(;aSa W|6sߝ?${`pP5HN݃ vq:8Îq9\v`'RN5nf #ebA_m!\~XYx ǃ}||ڃ_֣ڵtSZ0snA LbX~ ˍ`NoH,j9tm%c2>&,ɥ[1 o6 W)K\mI#1 +E9CV\Rϐbqw:S1f &5D:9󻈱?@gHHx8 y^ O/`l_h[a]0ۺeAV;Z ?E>$mRυb%^O,&NȻ9!r,Uz IA$gmTF9$s ndc#,t|Ov6SݛAIO=%}|G@tw2,>_> ir/{niZWN>)|~QO>l`N{oMSg ](c͂;,xIw S?{H.? lI`gsQ~IM>On:yڬ)۩T5PDѡ1-I/+[V(6l73enMSj}=eC$u~!vQ )Wp]8)GM3-[%Yo~ӒF) ڣG{ Q58HQc}!d.wiא`㗂MYRO˂:_p|y5oʌSȴn%[CH=.~$'ϥ} >j]Ue}I "[x_$d۟) .,T]zU6a@O$JQcM‘ U*"վX/$?DK@ #L: :TJKk}!I˶/_e`kݴ,e`/-{cY!g4O9}viCj8rj7ȬeuuId0 ̨MKfo^~ʿ|2Q'-89㚓C;g۫3̞2mL iҼ f5\.RH#8,Elc'y̞8fޔ9#q?o ~mx#nU'=-W90LXK8tl!ov$ K;Fq75,L 3O\vz\_|8mÛ.#uj?3ߚC?ȊaX +qpE0]y[wT{Qu}j6TE< ؙ!*zh~Te%Е?/+.^ vʎxsj;WOĨ:>Hw:ګP,36lUXqJDAY"?Ry+?!Щ1H'/3nX,iC&2f&]cU@=͚]ψRwX`Έg՝ 6̀.018t6͙hq_۾TAq7s<Ь0R!N^G%`[rTH{OFĭ^6:$v ~х[/2}-ndPOeuE ))~Li(揣_W '񻠟Ho+ZkXUQ?aإn[O1ܯIUiSa6sGi7GePS<1."{2G~TDdžBwu4_;j5ر#:\ vj5懇uw͇JA "_?`,ҩ~:Q91ȳM_w/Hޠ G 'L؏aEeg9 lYܣY`յ^T-Msg^?]1>oܡ"x@XNغYpo; 3ώ>ltvp_> wЙg<)jm9uVXF&y+'Q+9t:MD8$ЎMئeD̂(5Lc \o\2*J"[nt*I1Ht{ƖUR7'ɒ, 䧒%͘%͢p^$b|H| k?vNVs:s~{.q炝n~ !־+?ԴjAO˜0Aܗw-^=Lz:AR z~3w?HCIYqe R^HJ:%e2WY2쀱tA%ʐu1L'<3{_7 _BU2amϋWy`6c}yO5HwBĖ%mBڄ),$ w8̄B8Yx!|<hm\qg2TA 3<{Cj"e* զq%% 3;V+]*T"p$$/&v:{{|MG#lM?̮k9ڎjdz3s+-i |" jk7L+Q[ VzX Չ j_sҕ6^ X2OWsnd}HX.z@`{ʊ0 JJ1ś4 dG|'E Vg!e_sa CKwA?ލO=#Ciz#W ~ t!/H5NOwMi-sG5MHg/n$\ܫzW=%\+;mOUp!~JЏ .1a9.FDn$ % r'mEK GIpb~Z RG '\x\丅 "7C<*Yc FoK,2Vs,iY<$!r '~dg|PCdGEg s,l6e7f])h~즋]3a=w57̜3_u|Qy,j7) tr\X2<ADN?N`LWx4^&] 6b֋#<^8£yvܦټԯ]K@Q2UPot|K`ވنx>WgYٹ\:;mFPie]eϏߔ@ߔC$YA%QZ3Cs ZE 嘣/ ɏ mx\bJn(/.{2.̹򀎝Aލ p]F%=k3Hh7#Ka8y¦%o&9R262~=ee&'kY .rGx|9ח3B;a]5`?q0h6[[\лG]w1a!K]*aؚ6 0/K5R׎Z];FRFyP.0 sxpߩ0LbbK2{M$W| uky3j>aޡ:ݺkQ 牶X @leT(_.4w}>_jEpa 7X.53HH'Rw a_&a%V(;|ߕ޸+v\ѭU`^6vl7t75Kfn]@z6Sk(IlIg ([%vaA7c> 5.2+P\?T󅔽ByGIKGi)A1bL KzIKu}6_ݫ> گΧ1{^9s](f :w5qWru[˻5s}87n<, 8MO?OYs;f Nρ=Ro+c5}}$l'jj5H&=+LɌ+-9} -ZW58T=W/{CurvZÃBmo7($vSqykI#|8=D8~;yoKt^wM7k&ׂ|-؃t_~_t4gj˴iJm>uTuT>Q}EQ]T(+1]RsgU[ȅA}jEJեJڅxb[m0"@?rY eʐ6r4myBg}A27̿Yy wQCN*(Sts[~|G?d?>d ЅB8i8a5 !8Md/RyzI&M%.$,'4 KT6!|"cMd3~^>w_`¯솠} 8}J(Qp' z]JPӛfe$LK-f)beRwؖəo{nrn Ǝ^6OY$hkvGzT#O^0;fJ!G RT* +L踌yA_%1-kRE#|kov]7e酷=t |[q[G%fΙ:w9Mg5GWc`vM9mu[k˼ANm[ӿkޥ[@O?%ÒgOt ,V{rS)\ziBԇ%;t>t|4h|>?KhtΨӼ;b0qztʼnCz%#L'ޯR&=O~%?z^AWHx=C|w6{{1= /#=Q&,?^1Z9W?VtSovaޝT W$^1r* VKY+i墇NX)e- @TIy=;)zRoCJ\䂖Ԩ5s}=\MUYRT )7]RnWW"~ir ?#cs/㓪(qŨ^)o:*ʵD9]CѿH!'Yrs!EϘ6HJ@\ו13O5ggB={ihi$-iSRfc\ƒq{loDnXv4 ,io[5t2tF=Β(K()xH^R[t ))wVaK?()J>*.k:h}byr Jh2H6H ܂ɭ9+c{GF%}7ثw}uwD#[{k<fY4&}=6$X}-zީgz$Ӈ"{:#=@:ڐ=?[ 둪CVE,"|/!*%χ%DV/rlj*Q3ۡtVhA,8DʟK Ylېpި?ol`}~/ؿگyA7d̞2A0\AuojO3&zxԞqa]v!LiW`ȑ3F 8c,jw_V."^kuW٭1hp{mCppHNlz^K׃]y|viԜj'Ҥ^ V;v&J7>NW~F""˂L}cQIfu!߮ż,~#Wv`x}ojXR26"1Đ0aQ ZO~l ؒǷ? Z_`g>:?׎3:!nso;or=mIbD챾60T6LMxµx u{4L˂eHQ&\为alv)wURn"NǼ0-.a jACM:?y>x#` ggk#]UGdlRϺ,xFײ,l?g⼅f^ʇQyIjO`OVyڼ RKuS%{ƃ'?vփ`>`?ރ]tӧ_BuTgIw{3ȫk\T) ,<(tJP{p> BvܖCP-lC[.]Y0H+V{#gulHxL1*!qW00vr W彉+cAiw^ή!G0إG|`{_>۝SL5&I>ܯ `tq򬗔JUV?:QX#~ߏYųm T7=j+=HpGJ;}S}bH?}yR;OY) J^QD>\iSheI\í̛q2M0(詥q2ii8${ ;>"͟ʑ+ȳqRhLa I^dq/ԉYNqAVEtIjۼu YA-:!\>ի`G씿G~ ?U>;Isn 4O5mNMS:i~Sdkd<9ɱ&jRybhu, JSX[}K5\akKXxF"{|Άi4Z]Pmҍu~ƺ~~@a JV׀@ Wđy:dzeE. PtyꔟcT yo̿`.z@~@r`ofQ!s;{ݽ*%/|}=U#),d_<[Ҝq;ʖEdT\Ʀhi }#a()K\阮tJFN*|W$ o|{T2%)CrE2fL&ͷ/O-mrKgMJ[$-6?My/"_5('o2m9(OG|읧q`L S}=rΔy[c 5AZ!bZXvbPLI"&:fp@48DE# 8rxz MNk AB)TҨQĹeL9S1Ls/. >o=3`=gf> vʳ}Ɔq]mz2t.՟:Y0h$ ΖFTcH0tƾx UN t/ h{oZ 8mNDQo[ĐS0tm D 3a90bv`8ӽ/@B6kdao67 N;gtuZ[ɞ1˓`I3a)Іͻ9먧>Z~xlt_3,_Ce1V!֋];:G/N+(з%/Nۣ* AѰO(+#+#}~>v;yڮm{!8D Oj[94-͆¯ ]X{<9 ?*QG3 QH"pٸ-J-m c/Dؠvc^kɧxȜr/Ԃv:j7҃\4(WI&ʈ36,x7 `oǏ/R/vm=kwNVGYEĖna8b<+ ~E)ΤmJˑuD/F"E/]b5aM/v=^45@e6󳞿{YCܗ"8%^{ 6e^%aa#CR89{>ףpIu.h^\ӿu;yxf7=ӽ6c,h3bwKXAmN}B@= Nq&p9baP@B',Ovw2?~8KJ)!fȞR$"[ S.#$Li$-4hAV@g7[8]5OB5 RUk?mHEs\-㌅q<>obgH C%C0-hl'.誡9 5vf)M73PyS9BRqi>?54LAfi"aS2S $\Eh_A}鍡-Ci0aFvyi{z+pQRce4J/c.Ն!"I6FeNĸ"ͥ4ii+kaeFόiFO?mrҌPy5s̫`{OFpxWk8koZ)&-4i ɾ& Kb6pEJ1ȏYO O 3`hxY&U 7c_.xG'z3:4wMy ":\؛}ZGh ]jW mEPS[YFش7#s؛`7 }CZ?O +謣OTy5]8 e`ӂ-YD7ޡ󠕎`t`"/.Mztpl`d \ؖ H6)Iv~+l5U(8J'4ӅuC,#=#nŒZX2LQ)2uhA:SqNBfU'lr\!m\2;JNxy{B3l:DQ6Q"0*'"Mq+&H~g~@m\k:u i{RV46[`?o6ow=O~5i__ZxT둬{0}>F 85IjUc5gdbbw5mxJM,mu7ZrO 5Sٴzg1L\쫧^('r )$?<̿!o2. ߋp{`eUש{;A6-뚮abV̨r(EU%%px? 6≑Вި \R]µ6 {`^߇m6U.ÔS}:Km9wMZ?(l^pϓXmI$I<>}aP.ߑx U]\8=P C| )m*A=e/iT*CǐF v8c?{?WeystMn?eFw޽9玥 j2"j$p:mS Z`+(X%l )<&I%7#VdT1I^p K$a6[#9|V÷ֈ3t V0Iៀ5v']Ʊ9<)mnMZ4p"M2&Z>հmĹTR)vChw>~{c\2" - ,J"p \gJ3ߏ N#y)$ECVH~ddX95ÖOq'`?~&>P)XOj?N{Vu$ZTϷXx46 y}=1ʅe%#\ `_h\)]i#Dnmsa>'M!rk }>ظ"ت., ;ꓗ؍>ٶ3kև)jOi9ZlVaddh֌S1c,Me"U˔7Ƙ ,[*Czczo4Yho^_ >ϣy>s7>o_:xضެcC6w¥m~gjM0h7HR4`R.#FEH1wcjD x\6V-+OFl|"}lvoEFa2{f׶%*GH9:IFuciVYun\sx: _|`nqό׈eTwnZ}mO$骱c}clFPq2Ҍ_֕ao? bخۢ_ m`kw{=i/Vyrm0͓m!I2I&$NlǾg[1nC@Uӊqɕl$-vy8y;)b0<\Ĺp{7ijF2CK/~/B9<0o~sS,H4)9&eDÈΦlP(T xW?<&Q V1b(Ru*eO`| Na~㽌m<76ǩ߂-EFWؾ=u4W["NENlTǵ6a*=(U1Q"ZBV"NRWK|?ymՄ}EsD&Z[8AV Gr\)aJ2%BPnƴ` 9RʄT8rꕔ2)s=Ebt|k?}?Dm2)\N;(Y3u|:^s {HbkЫ`Hb(.Ǟ nj0s9En<5~$yĉC\r5iڍ"I($|+EH9MK}Xe")A4 ߇o^n3l"׷?FvXO`E?E)Se_!6kutM'L{CؽF !e ~sW~e"&qxwUWw^F-66-˲-[dI> l끹aW/%!` G8C 'IxI! &!x9VO۽=UUU9p}`/}ՃA1kYpMઋYU <:MY f!SDpSDp<~K; +!\D|!0dFvY2솰e8k[jqP]{o{ +o?-mk_ }WmNא{=%c&0K SEp۞; rIy$:$5೅@"ژ$"%fP8ȿpd9&oj=|de_YցU} L&#g2A#A1N"2d 2PRa#a1c38rx/ð/c8 z*Vn[`@9'9ooWg50t &  cqX>L]ߖ :ëfRlyus7oJ$_JQ1;[j_ |~{<*0HD6bDM2D2r> MbOlPr&;7yn:-r&96w}nJ* ub3%$Otoh8n&2RD5v|X7,v5,R-fޢMv#2b,Dqe$,-\[Q]`* n/s}F {Y {5wC87?;rL8$+!Y,q_ -RʟW{ fcPjZ(j:rxCַgÆ`37:>7pv irAtЩ1;MU> rB3KdJd?<_YW Yd kO;'6,NLɝk׶u 8+ʖ΁:6nԱdӪٌA^{SeO |mFBos/@UZ?kzх]׷t갷47&4i4\A<ԧXֳLQ7"3<ۛP1h6-F/ӑ7{$LJPm~'Y H-%5ʕ{ƒ)0d"-;>S":;6%h.\"i7"鸐&OrR.`nZE@@4=ث &*,iȥۀ>ӸGkN'`8S(qB u#]C Go!MlK8zO"NKLI|pK7"$'.F񗈯WP1,b˽H@Օ#\K:xL/*)[)A4Ĺ5˟zye5|)u̧ RCRIZYv,mXEka27i(\1HtFեQ"/@|SӒ"ɣN`Ig0]´E<Poo Yo x$UƑƑGxP;2ޞ%8ЬEj(}g?d#6>;wƑ=K!\~Nw,3%6gj(j j5Վ:Fvlj\!x"Dvf7BQFq;#֡A3pc=ex5ݼXՁ`㓡ۉwf٭N!|k<Ѷekvn vjd>wp8a2*pV:Evl{Yi17̫۲.(.0'*z<$7[qn{gY܏yr? N6%0Ԥ&H1&5˳)dTW.9.93-߅k#h^#E.+i' [c|*OD4@f$œQ-I"ےDvE27B{AAG`;A- v! '}cqO@m,z"xdwgӏ:g{0B  f܄ 74H!;TnQ#H2eɪi\rc&,Mik.IL6co-R'a1 I5HE&hȸ{!LTZa@Oq׊8tl'@JSFqL\bpb @DaJ: 8n7ynɲREۊwBE99 uy^ԯ򐝟⼨_,C~ `߲kDOmT_ X5N`eL3`Inq0!&@  FlPu5b}=.$1FɈ #6&6&JE4)2JL~CФ 6nŋ'?*Gt= sew}=m;V~x.ՂMi܅(DHDS ` DhƫQbHDv =C/ N#@5 5h|OPO[.,@dcA.;׬ =0;|C2#h @ˀC91_;"*B_IH䐃BdEHa`}|3й3 qG'8{@p ? 1x*~E!{S9x m&X1zfgj(dj LAn{pM-\bdK-+Z^PʎUm+:ؗ5ko`n µ/#YyI׉%֖ dd4z9pށΞ9mݫ:ɭڅ&3.^w˂a8@zOxHK#IC$rc~J@Eʀ&j?[AZj V#~J@%WQ8pI)~_Ч=}jhK{:w2lmJtKǥܺqJF AZAcoqH?i)?"{i5e+C6,a$Agl O7pʽ]m-WvnjW)" *F+W9b i]D7pҠ8 ]ep SlByrdg#9SmGΝ;R:y".MSu O\{'nM0* RPoK~k"|[ ^T)J(QP?gAy#(_ZN1ɘI S6H^IIBUI)M T()h=6^8 Vr3[ oqK~Y8GGF#{g42 JdV"{2o9ރA\7tlֲm`X[掾֟#bHΙrg{#gOck]~*;3O P EWq7ֹ&(),%([.|n`BsH^,:9Qhr!x6TEVlCh^^C3V-\ֵ?|>Ὢǣ79;_ $V5`y308:3eh見jdcs\ZWsMiO?87?+Lv3٥<#+kl .BWJE8 <(tSs ǙZ2N%LƮ?ŞSoU(UGYu ښ95Ȗ k Zү~-&6A]ޗ\ip 0_81!u~)~ Xt }%E`] W7洊lOshBo{x5 lӀdfc25qB +e/~PuTuN{]UXw\'ڒ>qKǎǦ{*)Y'Jӂ %aISB5 %]H?+:Q ̻ [3Ĭ@r꒔&<$JޤIMu&yõ+@KPI*3ar+/̆?YFx2o5"{sdOL@ CQ{~@?M^?R\nz'7iשfO !qq4I4):U,A1y^":,[D!1^;^'_WD <)jF(yX:<(OxNa6J/sab\ӤL4D>:~,ټ\h+!>fo2bM_4|׼߂~tbg݉^/~^|8GvAˋa>lީ/жjݦߏaЯgOe~;~?56_Ckl7.ukgoꌿ: [I]77A 2۬ʼn j$ ۵[c-Ďp,%S;7JQ%Lt,5a2 3@<IOhRp9*B ФpݟѥMBvΤ~Nl`rв+;CeۋF}m:iRoN'Em~5ztX3z=g4VTn~t2Wp)0vRAZ AuKasTd Yu $M~}jRq.}9E1]]o( c-K@P0xs.9*'Şv;jRǘdiQl.9itH')a N"$ ?E!Zr4 ƙB{,ގa3١ƕw">nBVЄi5 ?崃 }`c;Mׇ߿iU`:ɧ}RwތXG<4%i LAHM;WY,d;BX'I+=Z]15ݳ"x*+FԠl ۇѢ׼.5`[(H{\P`TQIq`:e(aq f!N"تI6(]qseQ=oin4dEӑUOY~ 󪽧,_vlSԾ!'~#+7ߔ-kǵ!P1'I(ȘP78n8rǓQ1%$P3oq, %Q̣6} x]?c~7WPI(NӞȾ5#ӿgSAɫq SW~.5d3@vQ?왣vTRߊ F-a7BNyZ򗩫[Ԇ+ۀvs{1۞ëbj(k+3S{uZ i4f;K%]0γZ!+ @s*]ysAp&i-B9~u\'?& '͂ox"b!Cɼ*GC? c߄PrD\0 Jb~<IMФҤJ449]T߰~V9 ?%gLJ37Fh(_jPelm 4iJJkX9gVw9mΧ<#,B*HRULEb*J$]J%VS~'mc}.Mz/^MrTC<,P~7C.Wy{Ⱦ >v3(Bx~nXa}:+5G_5#dɖO-oAӂK-#7oOm_g,*o[~̛yqfշU>cu3 GMMqmJSe4-+ RKɔ1Ɍ 1c*!? $jVz9CLD\,y c":yLP;?,qpVrQ_GJKzۺ$d@RЀ[sG;ID8Q$h$"0 fshDupdTZ;>Wo wa3e1+lyFDLdc̦:,_1e:f' s;@6ĥ^-b_c%Y opܺkGIM($b)3fh+md~%i-̃fqbUOH Y2L Oï9F\s Ht)R!&8B1 n@IZkЛNyG?ʯ(dWs~á JN-ނw57ɸ[,?6* ]5T:RE7ᠫSH_aCi>?a2v-@4~I q\ c%zjr! KހȬ>33zb3`!;8dڰ醞;ְ=1?uzwǾ㢸0 Y,dճy|,dߚlP_ڹCˡ󸽧mOПkFmh[ؽ$\$솇v+/. SoII)K@]h9v\ @\ "IWqʀIarRM|\BsDX)J:54Q؞ &uyYnc-ٰVANߝ%F65NWjaygk<=wQflp\AT\ ,{l69a;s6scs9CwRjotу :9ns"?,/?4|o2S'dX- +lm s5E6mn1sa3y&whx.Ef|߷p,N1?,GWg{ʳ:zO[cV{a.&vM 1((OĉuJzz pLIDtSMEqW\Il #/Gw߿{x.@D -^0t=|3?섧1 yٻCؔD$&7 6M)yq7FdLL@5dDyK=<@? u=E?LA 購5Ow+mnnF+Z%LWgߧ;Al]h=fyjjAz2cy٧(TӠP ˣ-"Qa@ ~&qkuWFtPv GETgZCTX >E |}p[\}=(SφtyXu[W,߻A؄|g 8r2(WIL`xޟMy>;mwxY/[lbdGx\ٮ]|0ҫ;սRLb:!z͔[CE* ,"Щ}sGBO)$d%`ϽO6`mڢh8@%mNQN KʴQ)pjt㍓q\{DO/Ad?Yͫ03,_ W;Wuon~W0^szlnJ mhQͩ00pdONѸ^ٗ";oi4Z^ `}9Xwu=)y7d(\{KM XdL0+T2|mp#qI=\WQn EU7>'DdkNDְvmؐ5֩ 9+ +(ay(9h!~,)SEdڝ2s7"%4Q *ciTHPX 6 \+ՠj(_{u$-d(4t?y Oyk \\Z`2W?ggA%KC t#p]hN c9o.GnyPyz:u'Fk!~ |c.n&[$y f7ubJ<AiRu&eK5SϬGX";vO#q>N%jޡƆU:{qrU~"ӔѐL̆D *Pq4* Fy`4`jBp͐Dhdó{3yAUJͧ dw'aυ}CaѠY 9$Td^=h_S?Y|:5M:-(_ h7~}v7<&.~(G1Ų(_y&4l<G:Z )dq q(c#Jb%bJ( ʕs7Oٹљ{ڦʗ|`হix~E뼁^#'p zHRtU:>i3e B p[ ,fޫ;yQ}u޼0|?iQ55+ ==NG|:#td_9=hy#IaC֜,c*ӶCsM2ʭZKG>A_(b*idŘE5a6[(6b=U\ 'ʜ+=+#ݕ>^,=h8i=6t9=Ǵ)Lv[VWiʙ'-8eǹM?|bi֠7g y8'<ƥ4yy> C#{ɭhG#{B?^0A׳=~2g4VLac! *,Gʉhv_= u8 H~嫢~KW!۹*> W!ŪbX~^)6uwuv'_ǯ ]-߅fO{ ,8b t!LnQtI46C7i7G_W^Gd>d6g4ވUOx%x2, +-C#_@d|uOG=oh zݧ'ފe`(PB $DnK1I+,cctS?kVXƄލ{x]O'xAVakO`/_s\u8/*leۭ hHrS_c< e2v~'=>=kByksdZ5>Ad<>}6>r`_})* {1^<د0M2kAuO __Ƶ.\ZdϮEA|{FwbM3o[7r30Gd&-V Hq[eVJK:K7Yj䗠1r0`vT1B`{r» ,{tR'5wFx ˝f_WW\z22RZjG&FELy_,M8fp iRe(T ]|Z5]InP]uȎZe]uA"q7uvYX|=ȚGe}e=Z28㌽3]=YkWʾ4$k:`W<Ķ( Sl7OR09;vZ|_O`MNddq_:D* _ā^Pbx*cU W¿ q[*jXE~5qTlBWvл+_g.d}Oou!aW2< ѭu',OSm"x WNN_6_>W@7 1tD8|TL2 'S} ~-ۆh^7 {oCВk[ۡaM@o_O{۪U}C쎁־c>JOCş&05Tj@qϤTblVt8cmF;3~ԍa0^ˏGӒp[D!TxCs9?; v$D~Zeqt(cY~t9YȮ<;hi V{~tr7WŒ*IUeOͥLHz4+ 3T:H[ԃ\łlyhRLC(|)'_B6KQt|)j-ŧBjs/\ :~ *Oi% L@DI$yYI987~h;/Er8ss">ٜs-;'h~| q| شzu.7#=ސK<+>gGSބzS A> q sB&f2vX 3 @5[{BN_?A`2c2w?[Z*8iH2ٺy E f9 c?ۻ- !nEƞl#G{,`]At?u# )ͫ^#J;A*fӽSWZzs?8 yP8A5Lcrt9֏{ {x_:XIW*jzs]C5w%II(+#ˊ]ՖxcÀUyڷ1΍Es}pn~yA/&rJ6[=q.1)5`־έEڷC΂Ȏގl"zdA~EfiʮMsVGv[։ 3LOT?< W 6ؐ_%d6qe(D LwRU&5an5Wy=nGv`;2ѵj&Z麺ӏs.L#.Ξ,I<; LW&jbFuMώ?|{w {2 o|Nyg;dll]{۪\1v J{A89έ#|dW^:ٯ9$i8⌮DxZ҅&[W(-Ξ3 ni .ˁY˵HBB+Q~@5@DKqH!*wo.,؊ "zl sPuP9}IXܻ']ٕN5,3KapqA>RFp5_lNp(?̮7b y ~"?~u|]dn.;5CKݩ-ŬŪ B KEHH?:*=H !\(wMBhBXqAɨ㠢hT{\F7WqǕ^wUB@=;>]U]ϽooDPO|x%zqZ.4rCE[9<]\'w$8g_#0/ \@v+Gjg(9'kxߒ<Ǵ?Xqy!\g` ^\H`/?}oݩޛI;(wH߷ދAxXݏ58i@n>+)m$Fb=DG? xh!rݮyhr%>;UkkXf_`kmc(B~a.ӻO[XDp"C8OZ,ڣrtSB.`2'SBpnAN"?QCA':1{"LfѮkX08X-ggww[޵\Hpg]P]-pMxZfKfhg栉)X 9*E}t(|[= X;~1Ab?/^ܲ\|@yL;|^ odo[׌ػ^3۰-7>_Lu1/%*}MUͱͬ@yh~O[S'f?ӣq.\ڑ,!YBޒ$N1"."hH9U8_;^W?'5o߯ᐦS |mD _U7 K?fG)O'O0r܇[Xrba*Lz4,,8[b%2pb1\|ا[*ɷfE%3 !޿H3 qg;o"J/FgXtNW&]Lp.v]z)JKuɿ> l)rO,444>qFֺx亹sbklE<ŵ~'6.d {HeܼkfFD5-oS#ܮʏ8<&`{ds$F"A)}E7v2}e-#̵_=yovji|#0G0~HVIML Bb` r,a1bk)/b1EX"QnSDA_0C=knT8r_’>Xv:oRzmGwA-WdW_ApηzsZ_|h66ޤOSia4\E<8F+lm&AA(Zp;nտj)CzJ=V|%+ ҕ+|zˣWoD/J x.¹<gdtLa$)pߨ  JіǼĚdtٔngivLIzdZpb2+oZSvbU\w.xM]{pKlj8rrrkx=x^ݫ>A{U^[V;KZ"LcehxnX90s1L%/-x .]Npr ̫ \Qz]ylgN'IwOZuay\k 'eUckZQcՆz~@M0&9G8`Fg'b L_̰q`ʭѢzޝ꯽YĪ򛦷9v2Yh_9ZL½^bWgjeWjW|&q kԝz[\ٯ>z'uWPVfǗu ~ᱸ/bfVDO@H6˲ɛ[ڴ!D%B\~r,ˈĮc| -]]MY{]k5nv-q?\ϱJ/Pnm)?اMv(+E8 GF<8cK1ѷk |丟cm/ eq!YrͤSU-Y~m@ptVzvZVI'$YmSp!+\Ap .hXNEo[7wޚ=2ˁ"#>\Ȍa`BM#\ .³.tO+8yJͻo `31Ub9Pg9O|#*n=q\u<׃.mռ@閭y t˪#S= a)fRhWNYFہ׻K\ws)7LAݹ?Ǟ-CF^ml;Ԗi2ӛr!P2"Ҩ0*Y5"SksE= :3Y/ܫ| 7pGHpɍ]7޺hhnm>Z~BNFGdL'!y̓m؂X SV:%p)ed0Ram1DLEN 0 F)V:z9@7iT$,3 Hs7rf"(n㬇e> &Eػ(I,J>rz~@ɍN`Mn *n&8f]uSγv6©rg%,vNP΄ 2"R0*c5FƬ=BTH_tu,hZ&wA`(f6a YD!,mfw*&&la8y2_`,‘8/$>q,A/ꭰig > Z\E(Dб lI EǸA3g;̉z0B>)]$tc2|yXc-ٷ[Gݢ<<'9NSgu?].3"s6$̰%eX^P *v(̷ AI-}hg.eFXdnyDVvTJWL[V,]IpJux+OǍmG%Y?i*0ULec%F==rő"q֙4DD#3y6j~lB\C C!(wj$6s !TPUpA2 cUVrUORw:R}vW/_#Ԧx_Q{ S3rc9s9vE .K+)H1j0b?50*1-LRysGET,| |C&w''ItΒvh 1>SSedRsǔkostmOO䘡W=MYrĨK&aȊ4(E"` a`3@lWdrd,PnrOGvZyȜ!q>C)X jS3-3fy;C_0;t9 im-;{aM [tf Vp"l4Е\o1HjQFa;07Ҟr. ".7^n??١?n]^8Uf~Z։ 8#12 #hSVt)QYʑ"kX;FR9{%V%nd}wYDL-3ܳXwWc z=x[ߌ_C0a A՚~㧩i 51s0pDd@ `mK# cB>d,f|3_BӳMw!p |~Rg/kKdp}#}nz &ݯXZ"=rl'4'ÿ>fly46Lf9[sS9MO',(3"Sl+#h0l`~8$:ذȴA"dX"` c2<'FChJO1?&gf66=N3hb11,$e?EDai"6!қU0=OR jcrЯ~.mL~Uw1Op=˾X{XYgOPr|Zm2n)=|YoȰӷ٦ޔ|a1G oyqD5Ĉ!1D>Lheq 6fcGb/SdfdgCqTk"1BfyƁ^ɢFqnaKYPd),37b^hpfd̩&3;: s6T !.m{/ 7;<"Y)"Z&R ^) Y"gdXyxLψqŠ1ȟx9+CŐAP:,|Eb7\O@,3wqLCb!9v*osm(`O}vJ@6 J3H` lma`FS%i٩0Do&>һ jK^ׇa:f; un"fgz(^[1uk,fYmtnVWqE/'֧GU#_4#^<#A#Y$="w.9"FFa24EYNGL R2LCPa\c0g{fhLV@z<1=(Zq;+!W ZwvSxS/*,2)",H.^Bx c 0::rÁ(f!/L܃<9b[ֺϴ'%[3wj[{,hml*NTnfuYCv x9'HZqmX'%V[]s~ɳsu_oy售T f0wNG9yvCDϕ+]9&x9P?C.JJ]T Oq,fWiW%Wuk|U{Q鏺fy&YuMm.|  IJ:=x1S>91|c՝ {Xcܡ&͝+cMݬNv͔j~@ye6="J) Ⱦ7;16 1D]r,nd ӲĀ+8ODq!Ny6oc)@b `?BSOC$nQzZ;Np]Z?<{HROǶֵW5p*dbfbDJTzUS"G,[#'OA'\|=AOe;5W_W?+恲(?lH-I+'Y90`YN:A;K7}k9Wu X Usߧ|r mZS+QO$OO^9sd}JcS54MwETQOЭqxp}$O%RWG6f.eΨ; Q~psS?EpS.t٠-8.N, 1ܓи"]\\OP5I~T]Ց,8f>t\iThڬjw&׵-'[Oz<>Ը]ݯ947|4R-8/psFCh 07 Yq֧ N{vq^×?zSI~8j2 1fgb>8ܝrs;;=w3#!gj!LoJ'AhhzZ6p~f91>.M|Y Ǵ.NBj,}L/8TWu3_=CGxV]|K1_u( 9gTE(h z/Ckyg =Kpճ.t=wTu^cS]{cs9xXU5JUY:n"Ϲʟ#9s{:?vsdr3U]&p*볊W3ݏJ}gY ,(;KN !bN-vlnG`w=?⤔BLQlZvRשUj_ Ntx z+8O 1bb5MǛ4v/|xV}Ў c[x,?16aF5,RsmI;7"oea㘟dRj?/zE_$xEWC{!ۣ$K-z2~Uwa3k9)oa Mf *F Ɂ#2|@Q?+4^` gr?}uĨ5 0m 3ˑq!,afY9!?)?`S_8C Mdnp,n.C%n:Ɵ~^"H} %WDpK_Rw~ڗӿ~յimnv fRlGf~ ˩NY'i0bf( `~@6.D 7i%Lh45 `}ٔ= wE\>ۗ~^VW˻/ksBnCC*OSQZ4Y/ Le5k8p5I"sr ą;u$$/z4.xW+ ~Uǽ}#\ < k,hm-  쯺_!xʃc+wi/6e}I*D7hPd1-0Fs55f<R{ ͺ\B_Ɂ}.292-lJi Ic*c^L4U3 ZrXȤ&]сJ NzuWuxWn$ڷijCO> k'J&R6x:oApouu>Wj|gNE| isyl`0nR9;C07g9vm fp!,ax j72y/уRŕ|op{u6zXoٰ{ܼ5SuCQꠦN?.!8???K/JSt#XTlѸ6{p77o2PW\NZÂjpu уk{7q-!\oA p f $< 47]\oTIכ.:o/l(}DsCzM7 ^zG¥zfM% dձYMwtihܳrq·\l_Wpp/doDCvn[m;m o ~ۻwAݜ|`LBї{.ǃ z;m:<ǭw=]e) qqx{qq÷s}7 GĖFfB4#x0OG +LLaEMNdD"aEr!vj3QDAo;UDl7ul$X|om$x#Ic/UI6VjOqd;)%eXj JmxʐB@чQ,!"N71~3"nGb^Z!fCi /#Q ROޔjJ-\=,DMWnrAoWnr>]".&xMY%<S01$@aT&DL0"X>-"h3D8{%S2vo |M%8_W t%ݽKZIؙ]k M_Zaq8fQأqv}'+o2c[gxr[?\Ȯdp/D #&0>bhgkӉDts? XxkwZFϐOY( J^TW/xCWiH0COׇj>8CHvḚ ^(g1t#Qkه z\?驡5^7-W5rհbRDfj\eUhp׵5׵tU_¦P Kx2*wLf/=r}MZۏ?ug2+s>-W.>&8c ?{?=\xS{5]r2Ծ)u~%x]S.>|:Ҕ|U}B0O<:|''W齦guK/6>pEιQ`m۩xw) +o_q \y'}Fpg;3K2kv@v-̺6ϰYg)ǀ>ɠ,k@6*-aJ̥l2*D|=Dz[˱#GY~Qn[o9jZuj3D -+w O'E|^yT Jkkto " W4/\\}ApG|:QOb_ګ J` WЎPrvƵރ/#tO_잾f6=uV  *:K_:$X%/]\|I—o|;Ǜ)޺`#[{ l|fA)pTT+ :>LG .D:Ta 3b 3#Y>P@K׾s"N{MVrŕv A9[\9u^hύ׷74QrXf8l8^%S4 <[gm:gt/<rtW.|E+˾rܨûڽʤSٹ[ʹC云V2!yNyZ_‹&(`Iꫯ_$񰄍ua0 2ru }M/~mov/G6M8UMdþi'1Mؐv;^C,ws{b;N߸ o.FɓïydK+7"`/b1 N[Q>O,O_o ķdR-w=->Y%)u;Viͧb~o Яim/7cX *GBi::,:Me5 x;F0bY8Vg0J▉&@CqBp ͡& Ç~4ε| 3ܡ-_D< !@fȤ@1]_|ڿ#8㡮mru$@;]w}GV jK-`;~ G',dn|"߻|'=; 6b 0QQ!dMR(Ø߅߻:{['M xӫ:'gմ-hlTZ4 9> :`+RasDb"ڦVsR2dd7Bw-GJGɱ.`'mn'P]ŚL2ĕ% $ߒN,[Ro%ں}LijoNa!3sW]Jиɥb/^wT:IIp:ΔɄUYJu+/d_&7%SofdfW&MGW $hr~T?o=?FGMðǠ:T(i Q=z~$xGz}섟,;QK4K?ట;'ů+] ;qRwb bk\fa~,בK[wO14N=n<r'wr>p1Ls?L0g?*~VV߸ђ54eUz _Y6zd4hWbXm_BE煝ll4i~˽5_\~ 9~ 5[6:/wV9gpS+~w!=~NŽUO-uK;i+,|%]_ fJ˷Wwqʱ1_ځԌ˸TW~%xW<|?|kwZTT|5x~s wgθqcTvXvXK/ͷwoFmͷ{gzS^Vc82iGьWab[6CTosM-Y?|1gGL]Շo(]yF6k];+F]#jҎ*gG"÷L;8LO=D-ΝKc+UyIfdn;Rvz{>FvZ>M(#Xf%wk1@a0|'0-ʩ cǔYIdf÷k.=|88S쬼SY9LGJ2/%3ߎ1 !r.niyUQQ1<NVy)ݮ걊9@7y[vVn7n1vSLuc!#C#?iwV~UUVODdJfE?\KÍV5ccGWTNļb*%3ý1t{9BΡGrſjY1ƎK$T^KfGzsÍík;+ƌ(PH*˩w` zi|ʶ?w_^tﱕ}̟>^]w,PZOf.y͞"e@XKKrZ+90l2449{*7v!XME=ߥv܉?yk>ͺy ͺQ:}'[Dݴ&}pB2ƾDY6Mo*\MTxgZMMooi(bQkA+4.;kM4OOuӛ[ekV1KUti:[=,aC=Ca ˂ } 7n6i-qCc?t[7ib1 GkGݕ8@bbvH՗[Bˉ;h+}v2@gnf?U#iUl PEGCg?0C XR5Ѝ}@ե\O9,<,YlM5Q^. oTb*Mg-8NCsTn*f·i wGM( r8,aZp{< ^OjlX^T:פGs} J`^wj1!<}59l r!u/+uLkHDv2dN3aFa( 96V_nj2Y˕u%+׿C qx׽]nR>cҪK2Z gU;ځn,0!a.Е9&%s _qÕa dgjRTgj;\՞xao/~ smW';O+rKu.Y ~Uĥx 'Gv~repM>п#B\TX`СCԥrȉrȏ}3riR k{C9(];?+:*VYsS1(v`K;;;1a;D~Y I)HN͊\ځ\`ti> =|p%]ĬK;;11XSgrrHK>NˊrieNE V{h>TS94n_?$W55ωϐ#G1YߕƔS.9TۿZrx$џ?sfa5!%13eVQ?iLקq9miYgmFjwvT6d ?epؖ}:W?u-͍r֮'-[MqY}m3W>iYl D+d;$ '"fl@30m<}%<Eٷ͒(Z)VfC29aZf,;x B{(S$lNUM4lB hƒB 2+![T !}X%*Da$ՎJH+-\VU g|g|}(JOKюUp4<N΢dн"=-F$gCyJ놲J2!erMMzl(4$r$Oqȸj]mzܕKW-'eO9jr8WiFp٪4Ns8ܖ᎜U]ۼ?EtX΀L)i]r Qy3 r`yUvk.\cr9Tncz݌ƆqkOaesռEY:IV!M &un_C}n][{UaQX$|'F4 w?u.Z'web؁.m''SX[ٲPv&eOO?U}k ro[R` dZMo]۞ֶƦ4It>-nƉyN0NOfICs)<]Ыoo;i\#Y2`5q8qf>aJH/}[Rx `0 Y k ֓KHr.!ɢĩ}&IXjV$CgPZ KֻRrtrl>O\Vv*T4] .k` ,_,+qP'فk K ԭ9#C-1tXN ܒρD=yQ#rß[I:=tq?_:QY,o&It<ȥ_;C  WsVۛU|XrSY,Bv}4xr>냃8kGTܮkxT!=ť]I vs(QLbG;#=۹o3ijVrK zs27yr^6}uGU6kd2NNPr-]  &@ r.z4_ 8_aQkIw}^cT8j(T Tj\ 9*F>WmO~+v=ׇvd=ߩ]|apw]q6|ӑ]TV=)N~ \IA' S'긶gJ\\SJ8V¡ud[[{dm{%6njϮ.˃pd+x&RG})9K]*LޒmnqTW?~sjZ5Kmٖ$7" .`%Kk[ iKX f 8`i ݢtS“'B')8$f]Qq> %hf>{ιem.߾ZppZ#"#G(>#ߐ;RVV'b@wIy:<#ApuDut<s?Gr(s ׂslA/uSTk} * BBy=M"?t}EuXEcnH5 M 4GQ$NJ&'듢?lb)ؗq4s =%BI!U =Or]rnle@K)EӋf)yEoYQ/]QN,ee;0z4-F¸h~CIfEy>\Zǵk+zX^W>RmIpHsF*G #{Vʊ.g@K#tGSuN|0JEGd"\PS跼Dd-rY, >ɳócQxxao^_< ~&Awϩ_kd&9`hOl# j&07^)3^q^6`xNԯeNlS9΀^g;k@h;ilL 3'̙dޟk=bGǫ=u =/%zٮHuȑPW|"'*S' _N^k*S/>p#GP\G#zW'C Wrn8#np!y;Q'nhx۴WYI~$yJ'yC& zs'\Ā.b&Z=|D$<|Jzo 9uM=+e_,R|g Y=ϧcN8AGIYY"uV/KY*UܼfV-Jfگ䂽=j6>ɷlg{Mr3~Hߜ9o9s)ssz_ceEcO/7C2{(Q_QnWKYw>:_NJMd$WQ=`FsQ=Q=W$xBs=q0h.g\qɸzd.s xOp4:NE?>Ga^uvIi>A|+%{Ә^TX@ }Z x\=iټ@\`[=<$ z^L;Zqm: =Zq]p.Y5+jcCbKYu75ëk*4sL,Y(%XYZU*9UjKy_|WJ]eW^ MW-XRPQU5buV4Є.PL׋߷JeJ3+#Lq]"yn>Ln2`|'9 ݑ,0q"\ ;>ɵaݿ%yYB{ SwTyڽQL\R-nka&ZT\8hϊ7XM膖0sCHؿ<]t^p,c W+xuysգ^}r,7Kr2~:~Gy_.^Ju)K6uollh:% 25xA2טeg֙--keO,#zN򼽬z5UVCdw=86xO;Np\/v])+pܯZ  eÙs< 8 |ӏﵮk*55EgZ~=IN ^$w_=xw=J/量S1$y,AS\\q[Npr?B kִ_j8u_A BqeYp^>Zy\p"(5u[ 藒8AW.`okgܯ?z\os/k@D%9KjZZSjgsTJS6rļlOf_dpu:p lIidq9Ր$WK⺶`g]灺aT9qVTܧ=>No\`J`Z\͈ 6jJOϓqyx$9^z7z5^q]ZOpu=zu}๽ڥ%7vnt>7O8(I?קԞBp)>Eq)=5r h1`| ʎ) vC/wȮC0`7OlvlPv|@zn)=qӄOnlhTli$*=J;njy}xEx~sY#oPdpIv'Dn"4Q㧏{,X69Msj"&en{~|XYukuMsX?UC͊`us/t- Ho:jA:딮 غk4hm,V奕k❎TTuJǯ'8aҡ|z}3o݄JOTagx?X\n,Y41>]_QU>?`zEXYEzUͫW5hDn?AQU͍=ܕ]bpƦXりcU]k+Nv*ccƮ r{TÜyh~}Eu׷u3?IN輗쌊hQwe=f7'\EڊnŘu{rG߅*U*uXWxgrA͍Y.oq:]]WT]Q3'VQ?z]KW46V76#=S3BzWTYJ"x,R:~筳~lJ+W+e@J&&TrvI}J~:\G9[2G 0DӛW5Ū;S.Xs$XMXϨknlJS!pQ~s~l;U=R}(= 6nzYX..gKwO7UV4k+ [QR) T--eeI6="D\+q( OF#G;sDfc bƵ sv"w"i r -wHI6rX`Ė~'IwLfv`_jxm}EClZ]բKDrvP"uuxsu.s U_-qK]bmC}7{s ~s.--9zqoo+< WɈƜG0v#@n7,~CʊB;漢iUU\Y xtٱ1vs4iY[$wy?_nv8om"ti~T%~'Ar} x+|KwB0G/R[6;_^~>8_嵛pxP M+*_fthϪ`^wAFBnzLl։mW/ .R0?^Qu N55lRPÜ6?-f-fClO(6 fag) c~}!L IfmLa6,M絶̈8fF3Cf42mcTlD3)v/L\SRL1ftSe0rIab9v; M&|nE j.I8Ј[ woD)̓lGWDzU{b_LbU/]tڲ˛6&Xe &b1Z$!H Gx?4B}bhpF~>1"51= $4")b,38¨Ga:yg""aF7v _1 ;D1%/v= bnros8+x54A>3Q3 <۰8& }-+ G1"+ ӲFmZf4 d3`v{ zQ;#wy=9fRA3-山 'a # VM9p' .U2\qe¯WmQqcG)dY+YHw5hĐn#b+ǁä!7)ZTNDX9 焌dģ_<GMM6i.k9~gФ\։I r{ N[J;ѺZݮ^[ؘ1Ng9qVoĝ8oA1R2 r?7ZL6ᶲ(I,s'ȉF˲(%k}uߖݲ=v+W\{+~yjL*)e?FSiVU74ml7t"mf]9EG+4CSLN|69 C!S';<$O 128-LEhR}h(5j) 1ʮ0:IOv`q4<#LJsnϏY [sLo0`ekQ2A->bףrVr|Jи`V_l^`_3;0[H-u<MD4LA3t{4J'd 9iԒL(f6=&W*?s%+ TRp~#;/hnmpj>gwb8\)+j#k%ii6MF9 4"8ct'-W)/nJUB:e龤N.ՑSz*+dTam 0?@ia8dd}vN D<a$$-]MEdjNjS&ʮmW {n$ :UZWR0#U9,}`N>M  $ DBZ aInBau9N5͢ǸFžkT{v5s!(Fٳa_%Ui`OY<^31h[}c61vw| DѶ#cp.ɾ4m4Y"LQmZپ@(oF˗|i$Nڋeh, SsJJ9inm5ô|ߢu_tYx-Ak.W^+h{;Rҝ.c.-X {m1~oc G;#<iB!$f#(2i~ 9rJ!g9fjfFqT?a~1Rh1G44h@YƏ#(4m8 6yX7S_-_C=N 驚IG% #>N> ں"6YV`_{oܠ~@~yxqui Q}p iyBaLfk)qKQ4Hp-7*s-IxF<}Mx k( m1u@  H١8v;zHBV(4!.dkTyU6"kv\C]!q._l B\.~RyOF 7FLt=v<\W]67Y\0}VwG6׉=XiSR 8q"#i&q/ $?C=k0Y`hZ* H)<݇Zj`ed _`8 X)ω'$fÖWu͛.7DpMJn"x&go^=2#֝.hB>[t[yGrZ-90ӑbcL`5hSyP"2 9uC1a8mr0X:ژifͦˡkwn:f7YQylFwƂc8ZTȊ6ag1ha=Q^"(`mq-EkkY0$);o$.daiG*yw*w\e䑗= Θ?*& K@IMC&9۩y A-9([Yr(&Uuh"r:ƶ-:f3n $1ivƛ4cq:[L\M4-xy:&1 -F>:q$۽\ipR#K-:]o ~K0q<[~+|#.쩒Ko]vΏWT͘?_XxⲦY fjLt~ YH<͎Aq 0chQ48>s̀9Y[N?,-/0hIdE@;6_bl V[I8d?N)AZ$R~M ܀sAFjٚFs[tY &Ks;l4thĆ!g~"4/3ti2 @E_3kd+ND-Q-ntėN&/˺Ts+[ ު?O[ U5M;p؎;q7`Vu]UYCR8rcS;lѾC2ws;z:Mn-gh6)c зb-1>ZhyG c2(c[*1FqZᤈL-OKMv = p0\¾׹Lm,qۆ] r Z8'2) !w/b#𓡙V6J_V IGzKDt6Go#x6&[=|:?|9|JV~ [ʃ+} ;9HdYN\ DnYi,7Tvr6+N/gǓ#rLg&7JKsvo've= ۚC;ΣckbNhxmw0BxȶZnd3h  6}rAw(;)r-;s[/N!+ kapѦђ u匪yowvRv Gt~wt{Lտ>#qǙ^Gx@Ծu)3Ґ㐇>Cup2<{Jv\J'naDHVD纍RЯsI_.N;w @Pv`k%ESYItSbkct bQ6y-ޝ`~h~@_eߩƍIxz'$ܑs;WVU==c ;~< 43f;;X4az[$Tc]gEp].OV9^Owj_͎5։юpOtٰh#韨dCN> 8FyחYC&edlt=b'a2_`k( p$'RD 9KZiaqX2e95Vds+N2kPl[右&[Vxeܖ`=K;ScƍX /ihl1ldh:Dz≠ӿG98wlNb[t^f0Dfٚaa9]7%p*rև =gWqWN[8^m?#f͢XMNqV:6.D(w/j`q1m&ƙ1_Z) yU)p@A4Xry?#AkzCag?KѽyA^Dy^wʎvVmnjwݚcF83m2Ӱ@kaYFKsAdh c;)PP{?*{O{eҞ78C⫳߹v-{J\qc`P*  O˲)Y"bn?89??( 8IYuGޙ u6]|fm݌v޲{9&P|<@4oxJxLl x/b.{a.` 8M6OON*#ͣ$!缠Z>GPs))y_wo_1Hήo`9턣c9@qq Lfa;=F2ܔmh,[;ZR#t_1~6T䷳3ׄ|S0 -' YZ U; `~ A4nyN5-jSQWUSGcu37*sVl&Yp4vՔ"bzӮ,-b<@p<<@+<29.&H:K bk<ĜpҠ]x#ށlNmx]* #BZ`BqMk8h"I% -6l󲰜@L4,2d2Bf(ЋyA5< .:l4NuqiV\o'i `7{5sn`6 qlRܝunĵd?M\Aä[:lHpC?D!ç&H{tp BǽBEf#P+ê^a'&xa=L:JlGwGn$'sME T}s#Գc=*Mhbk锣!o7-Q!Q~G^{Dسxic;+'nivuE23;[WoldqUb1 U(eiQnU>vMf&vwsOe}K)x=/zUKQ+AI+Voխ?k%8UرlOYڱY8XX2b[D`u0qqǺ k#`[FKCI"lEqO ,r6Nl}!kVUn'L4?sLL}kSNSYE΁sYG˜rꃜ&m@]q콏=FcNq >.lNYά[W5[PXm&+IJ[_v0?)lC1}K?宯FynWq ~Ǖ5pxXxmmE]jj6"f$/Ea,ONj|sP~ uO w7=ApuObM"w[ع\o1.G O|2`>ؑNAK$$$XDuKQ{.#?G] KK?]Y\^܉/"ۋi/}m)Ÿ?Wwvlf[v?@N?N Y#S`*Q\={_-{[wXF>b!|]l ]Jp+¾brӵ>c=WZx.bU~4֧ }Z/w܅#D/R/Sv)w4S*L6"l<혛5cQeա(Ӥ*k%8Y3U,Cy{;UcH<'U󡅤)?y<9auu牯{;EUČlic~j>.eǡ3"Zf+'rӓJ%\?OL2 }`SWکھTF @"Fs40ZߩSvRS^l%L\6" d;gD?$'SP-ɽUx` GU/Ծ@ժ;4+O6lagvhAKz> qՉf܆iY.Cس9"AE苪\ǽHp܋=ܛeSK.U ܂#v'tU礛v/SH;@& fE}5ۃTߡK,UzK0hc^^S =6w(kKvn tsǵ驗qs};n%D0%i/)?x%/uo)9piOĜNՕnƩܔB2ͯ3v3=_pMe7>/v2A}_V=e/}Y9SV\//;MxM4dc*˺09 ۞SSiӿq{v<+TVeu= AW zEؿcqz<:KkbM666jgT7*z#95ƶ~`pVN>.cd[f0ߝx9@Jc[:t*C ZoH;_!ʯ{]gͧם])uk0kzWiܝ4%0)Sf`|.v)(^{Ǿ'B`!_o>>!¯PDZh"T|?CB4TIM#{# ]?>CiC}QM]m_Hmϵ~M^l;x| ?Nc/Q׿C[Q$\D7m*dN/H#F][S\A`4W7sJp_¿ {=kt:Zt+hԗTs6f:/#@IϲU_ ~pULzz&nuo{tK]{ ''g<Β?ԝnf,5S ا0r1 -,L\bQ~m>\:?yW똣DP>C }zo$r;@7P^lS[VNaJ8~ԍMV3gs3> [A(qCVr.cgq1/g GkG?"(HqH~XߢTy`JBP$9z8p<*?G'1{}f$oy0GMDm/q*Xq ~,x@uO;yd0.9$I= >cק盏β.z-9zAݞ-Q#?Q\>!8?Q\}"x~-ZzNzu)?1#Zs.CJ#]Q `&M]7X7yܶu.{qw´FYkťfe ޡ|i Z|0%iA hyCd!z1{ju?fT LчEP"Qȍ<0 YF\ xۚ 4OO|)*=NO nT1Cꐸ.r&Au`z~&GXC!B\ w3V40IaBF.qa-GQ\`,S w]>M0#qjb{`eaz*@ek͗Լq,ϔ&LnwJ|mGUۮCe~ͫWDAw4wsx5 |}9IO254q$rG9Zxz?CЇYah٦1`or}t[fh&0) #B,45"acY3NL{=#xr3u/_m\ue#qֵ>nΠ6|݅hNrr[hÛNe4ğm5f5San씣 'pp04ѯINe+AIPwQH,MfaKOl5L,@Z$ U| KӬ/ *$hRTvУHi.:5*-( j -Dl+ee饬d}DH[1 )GY~䤾<' $Es?瘾D<ˊ `gqXĂ)E /c:d3t$FN3?bkTwHN‚!;  F.eJ*J{WBv'=WA9o꛸%t^|9AoEp [@C0)lxxJ1Ǩ!%R4GNi&64JiDrud6Ut % =VzW}MpJ&{_[ޝqC;'^k^ؕL:ULz{B2WY9}CQzf|CP or~|UϖyҕR:ioÔrs|{o0bH-=Fl,E0lBV%:uC/sjY9z=2AqRoT}_ J[}wQ_ вX/o p)s;8@qyd;SJo߆o Z%巊W -EwW?kwÿ#(Nq珐{9;QJ^i^_d6=e首X9u;<<n0C+eeRKدL\O L1Sѧs%0GI sw'1^Hloj[]O?Wz={՟|Fz??.ǐ Z҇Wr߯ V'Xsc:=:ki6diG?͒`|rw3tY$1Yvޯu~?Wܞuq:kE*\x>O>^T;}g2?|nUwU߾|ϩS)ڃ:B04D}{RTE;"ؽ;(~[;.΃U f> L<l Ċa8/JL_+u"Wbҵ:W|b.F5~|*`zMa\ ~+*8P @2z) I'i#1u]/ fU01?_C>zrGo,t S kL졿 H]\5rlҨTdUC:v${1} Uv=^kݘX۴eηt{KGaG|Yy'nl }1SN@>q=~M ZL`7;үԽT鍶AMM œ\OpG1]rkЌ2Պ ϐNCQad&J )o,=0: }e,&֡xst^u`<)K>&FC|в<'"}6B9U||yv}o9w[$~)Qpy?LJ~!fO 2K2 [-]t(3'%h^eõ>T- &{:R]5"ezLvWuh@Z%l\k Φt=DCL_ 갌Df+GgQqF9S_ a):$C%61MQ x-I *ռ9ƅsb7sbGyQ<}ĸpoٯ-7Po:=+ yA8ǘ`9{ pЖ!<Ė#^6&CW]؇y+c9O5aMm|0@PV-(Mf2l X&bq @Ķk)pd7#;¡׉g-cŋpviކA4'aË>.H;!vLJ%= 3ԁhA-OǦ.{uH:iT4*%hH0q/h\W;D ^vZ/Z!yQ`klw 1*冉u-XAC7 p<-DNIM Ωg.F JYd.G[|F ?'KiaJA9hnVxi*dJHe)CiMжcDz7HTq LǮSnn?p+?]uWCNhDI$$vI*3.Eߎ9.718qvZ=*n37aFn)HoqE #8[&-i=e/=!'bMas '$!qr}N S?<版+n췈96$ sNwvۢ-:X;a/ZeO`pkws l^E΅A/QpE3p~pr ;? }ڿhj+A}EQ`?T261Eob\)ٍ,Z`bDIL`{ /@ȊğKAL8q*Mf&&1[6|FrvɋL\+e@ m)\Y`)J96vb?Djf6Q+G|nqTo/DL͗ &Co:ED&^t#,`gT E|R(S~ BE0~W܂6~q!qgp~J.XM~[^UZ3>F-NM~H㝣!zYQߍCĶĶqW7,?h4>;}}7,ۡGn4MSxS%R8 fs'$2^bjJ(#kQ E~wi"-IiMD+0~j[TT8s7q$™8rರ9х8ίIyZtIB+%ט%Q8jd*OLP <*fИ!~7})bGR>M*Mya.W>|rW_1 +lzJ|,#Yx sQ 9'+2454иf4f< \U؄\ij]0җ Y\F1E0hRmBU2KE !rhGCx>{‹!Q|$xbSgP+v?%('oe+&dZ)is(!9c 8d^$tp*^ * SlsY)a:d îG¿"c%ȴbiRU|T,n^)kmH#M$T*+UJkE7Q Ɏq4_R\o>gx[qHJSx U 3DU%-4qy1.qȬ6''(#gc  tنѦjJ`玐Rf=XYNlB?T|hHu0,c#7}Ykax@t_Zv]ҿ}C⧏ؾ{]-x|ykE #z>55{G 􃉨FA?&@$5''q)/~~pEwRϷ.?U?jF qK5C\i݃'@EZ+@uqoJz6(=07b/+rj> #r4ѷ4T)h{i.׵_s^RWZ8hZ}m[{j}HIrMet-:_boq0u"0viRdh1@U7AZN+@OpzwҶ08:9J Y\rs#WA.0bp$rp0軠Ŵ>%P&]3z+ɀrCV݂뗆ZwNY̍ _Z0~9$Ҹ̱PŵCG+*yovhoŊ4]plqq3[lӖ&D16=ʛ$8;W`|+V4^vr~fPI.G @fEc1ma/TkT-e;SIETBRmcJo-l41S@E&u= H-$VQo:!ߡUIUЕ-OxVXGsN u1{s3o}5V֮KNjԻk 2;0b Rks[7`9CȐQ|YB+o*T)ؠl=D1TaMZqJ]RBnq}UjnG6k?u}BL=A\3fOm}U9UΤqr:5ԕxR&K՘ԖZ/'I7Qײ=Lbo9ToT.+"~xlVa$>ozm ś;<9ە۪nZ'J'~kaZj&,9RS43Il#TiQCU-ȻlYI dK>\BCl7 ,y~BQ?$$@ PMhYoU`sI8@T&( Hr=qiqQKlN-1.;j%vm4:bf緇2x./ݻ1|=% KAl` |ȏo,Wc5ΆA`,U"IJT$"$aS6ƺ?̓D:bMuϨ YcWuxzqYa=7d?c++S؂@u6t}J&*8瑠 H*/dQ;^O>䣼uuq􃐣b>AjLG95Q0x,ZZOCXO7^nQ5 v5D J:Wƙ#w!?tL9cS;{=UªXRw|/A>XI^#)W YbJ>. ȢiU4Hi:"%8N?d' ( $XNC?˚Es0G(n,ZOGzgXy#+H죍B>qz\_@ Xק}0~)񐄟z^? EBK=R8D/>Y.Iֻ#.ĉB й06vIQMXHsT5lI osM!no:y9;vqQ9[{g~ w0(boRqYVs3GT65-sUȦ,՘ k&1]NCr:?- nՙ& L`z+]=Z)[AI(GZ (Xuq-H0 s I(H(5A(^#/A͒bIt+\4;.˻;<Ÿd\ƍޮ([ܮظm`K4{݄3JkpK7Hq4rm`m$hB\05ݚG669ODz|pmeÃY0 s9k:d@jXXx3lD~|,qM2CwXDdw `o6Sv s_Cyk0?sh@0&YVdVOͶ s-I7AauM@R9`u-:Ygތg _]BbkZbl!x h ~t߃Q;Ѻ'Nhݽ>\ {vR00䂰Qf, -H$|6$Le/'\( QJ>'O%t8q0P~ A 'i Gq+`&<'Qeqb繭qe.o!Gqf}= p\e%}N˯A^c `&%*b 54lh*0 x*n/E`k<_ۈ9m2m1}m!]m'oX?&p?Ҏ{viKHsytALv4ƶx]ڈ}gk'NlfEӻ~עhʾy;.t]逛dï߱DNĥB&ebpm&*CM\O& ._9 JA^ WrZrr-^M/ߋƮȀ~/7c/^_~53Ќ&$|zډ}c|(kbzF6uo|i}`=TN1!؟' 2Zg<78w"!n߹-Ɲ/Xy6ef1eK LO>D8f@7Ja3&veV>İ"Xk`:!g e`z _=2'qZt n*4QIqҿ7)+;h/kD 3³J\]Mtwδ{p_,JaV$l?f JҔ T Whm:S.5ri-ȦA=w569HXA٨q#8 ⲏ@W(7j]wCұ)iۦ[ HwR@~JdQBYCꬒ2KRx\V7%* W&"QGȓ*|@;IY`_AvȘH,3XĢu͝H􉡞ܷVV\;PCMزYm~4,!iyNKbhKPaWۂ)(ZX~.:dn!?OLH쥉^.g$boD쭓B~-Lggka+<9g̃U{<f .KnKVJ] 4PM_r=V%*|k]5N ԬXI>ۡ%"ցWue%IT` A 63T=?_ @eEBs F@q&[?ئ1M'otRlٹk$λ& EdMB[l t+t v)LGc46FR2XE)1SMBlڔυSBL995ggS/` {W!6%I&`Z5Yߊ)y[N!0XԘ+{TbMmFzaw]z.K"WnXsr檣pI aTma($/#YOp^QBe*4<Iur֋zژ=M6IJ2U35ۓ)2L1)o`D*aFح,r=[Y8] wf"-( JyU/L.P] 5 ߘ".I#,Pu]k$4Jw[+\aǾqGW<C]>]Čir"9F D~Fr\wHoںe3z˟Aµ/kEVW rA! <%YÄ[`~ĹD[ r۱I%ۖc7¯8_ƺ4Fxw#葖eᦥ^RP~~?طg:07gh\)g|$"yҋeӻumgXjgޝ< nїݿ "+D97~ޅ]I<([tECf9i *ɈCI؟ZhLVExMd/+!|SFe`9)[q<(D'yFI:U0c KѥÓ7J*"/kxFXSb+C 1Ӹ.yQ {N9\9.ӿ $BwNr`Ya_FoM k&ܤ%(4N[9-Ƽ߽&ՔU1]RuYpE1k:I推Rs|F*(rre8f!/ _~+rC9tsGO)9CzԱmpO(m揁}wa]$| j`Mɺ̍=4؇ܘ^{^?# X﫷wؖ#!#ؑ|>%aΤ]2)UxX5]8k>wJw܂G`?fk!s ~3?urC-NpcJMVGtĂ T"P&ν< V*oh+ꞯwZ+BPɤP}/FX~X^LWe#ZQp:89\%zw4 v. {AL!W-89-̝w G"z'7 cz'O_(Ԝb61].$vBb*=^88 tcPν֩u3LkehB9F;ї_7q_ӷhQHתE'o<fzi|];_ t}XD쇋=WDO"^x}+Xn|"]ӷc1 .fqHm_}Q藺X4SD_r b%1}KB}bԭ+Xۻb{WWd",zp .!">ԒۻwV^#{w"S2;wG2O_RH1/%q)-Kc. ݽx|R񵾕 =5c"ǥ`1Ze, uT~![Fs?~]$e1ZFcˈ}OGt~a߁)SSphwyLV-'vyL9Cz6G u#mW W%y88F; X&fpM(@Mep':\.AB3!rQ/=XiN<-鴿/hDׁb:N#X]i[_?!+bz^A֭dEHiس_]/ v|Wb+CzibώF޸2\I+ø37p8G"07~[78wphcɚ+FJ|8II,4N'b _R:DTvҴ1 8jT,U xFǩjxTUohSF^\eDt"Kvu`9eTKM$T'<sӑc~w:1|8 \,Y4J↾]};^uהp jࣻ9PÛx %fa %*Iq(9I $A[XRi+$i%,Eyy3MXjT8+..^⃀eŇk#AHcL2P$lS2 e<5X"A2 Լ߹*g߹ؾU>*!6؊ #{C8+BWIÐ!q{DMEW!!( BxfLaZxr0B䟃Oj^L+UKR>fK_TAP\F0wA㘌I9s@oBfcB8.L!DN.E$i,3L(HIe'ئ)n*8_ ˞x&^M,:۴աGqkۗB{wvXؿmے-[0Xd/rjV$4t3XU4E"JX+^l>BLC3R0X!/2p'l-t=:^M^.ք%לZ~}Xޝۂe ;ؙ $$fAK'j0p:4t~{bZCkb:$t+̝+2lf}oGD_~mL_ZbS6?gEK֞HNݳN#kc~/Ƹv޾ }vlޱd֭kva܋aݲaúp( IцiLI3b6:؉<:$LNFTp+ S񬰉AF\+/ [,zЃnaBR:3=,b"?"vq9ನϿ##pm>ٓN=1X.r]wbȏv]]WN= aMM]բĜrg.Lb^LGSL$2IqcampAbC:eh9%X{AR<= +< diG6y"ÕV̀ d]gY)Q9=S?%:ϳ%oGfzgd9=;ωK,q.sGׇNMo/ ~ {ll=X/K_/~7O/R2sK_$C}fGlye}?K)ԛneSdyg:)',ahD5aM#&U G@paH̦}J v|bOM:'# ~qx3(M}jq]Ab=F4ӖDe*1ߡ@1b)taNx3} #EzgrJiSz˩FyxOSB]ۛ\@ =}A_տؼ7_a|1gacj]4*sC?pqfab؅ 8n܀ qqBm<&C?n+{w0 ed@! kjz`Ef@,2lPMTh[a,%'p%Cfif yѽe挔32V>xɅrt/pأ c9v!1uFS 'I+џ | k1"W+j;e썐[E_t1e;X[.&bbW_XW^bFȯK,Kwt>lRGKpdz㰛v|V| |0$̭ 7o>K^bF=0Ru8%L\Re`DWi-_Ol?. |:}]'.yЯLgǀ՜kRmgA,$_aZVDpy0)ԒS}!/)Բ<8KeYZ1NZؕȚ gbiaM*$F®tS8k̰V]%ٜYQBYaoy'&p5 R $7oJoioFioFiK{FieTG/^7gse{_<)ff&6՚)p犐z{{x/%ߢx}Gs׿eoWGs˂7,'X;a7+(AƤ*/2Q<@ [CS~@M䄋Sd4)фlln0I^FFP7HfѦg3t D9LC.tďуI(@ A3Ma8ҞQT3A;E*cZF^i*4EʰDt2\$$t=W~-W;xuw&C}|~9Fdt}<= z |uxc7{A_($NyL ۺV׀uojފI2[f D O`NEBSz8{c#}1]7F^6:kz7,ٿ-3?AY9y7&J˹K<`524$1ce)Wj%)2JX*\Akl,P=T\K$Ljhn'g3uf%6(Oa͡u21ؾh5:1b?د<Ȯ z/[Z%yVA*cIZT.3ܐˏ1؁/37(*M*m,ȵ>~mLo:b[p]H# NR-Sɟn'`>I(F+h<4E.ä0D3(cHqR,M䱊=>W^*>TJ`Z`R$5?+`}t\z<)9#AFpsOtswSU~#ׇr`vzb 'X7]O=~}$o`$K.'m1@שWAϗe`L y3 7p$rrV(TM&p1K1Ce"sT$HGx1A=*:)@ ?_u2 EA'<񃱚"C.{o v 1o  784~?l ՂnAD1փuHl1}=7tm)/C]::}`UӾ7dQdk1lJY}c@p8 3t$\( U_M|.Q4DlM4]q7{M!Q۳5zT>Cp&JU8*ݸ `' ojlĤDG*i~2_-2>pUhj^ ; _aUC1D$IϖlJ'ҖV:AZ^Ť5j6LlĮ9֣[o>y?vD=}<7Ϸ_Uލ9Q8.nB ExoLw~b=5_ttʱ_3-`Y sE ]X P",0kn~b_OqQΡgCUe^g%bB[bzz=z6OXe`\Y-~~ _񅈎=vOOǦ;T b7W/x;[c<6JVbn(ﭧljZk&Q fՌ5``*|D-7{Vb5+Qu3$_4ۘVG{,{m-Ƨ}y<];/~yGsˆKlZhjTpcf002d#cs@n+)1 $!=( h]à #^1]l < * AƔ6BdxxJ nE*`'i(G9{5*<Ќ.ev~~⾐χ|b_ؿ!g|{p8;l֚ZIH\fIz 6dX{U=5P,3MHae*y_d^7 !Ώ}r^/MO/pv\thj~j}*ryb`rLv7]=2-.W E5'n"NrIg~9 1'iLXݙ 7{Ow:e$B`$d – &X6D| &!2KD"g3{s:~wNOnUuuuUuu!8[$l*bҾE)0!+m$\ вP83P]Jx>lڵ\zd0IW]yCH9v/&㋉rqLK/|;/Xr܉/ .7sӘGO(aa  _W%F\Bl%1G]w%;sQ;=',Q٥NQ6Uxgp, D>2 A@ _ioEx>=E-x=rE# #$XRb1C. ˫>ӝ-n]tbfh(LdwQ7dɸ+f|XrHs!Ikd٥غ.]?r-C[6ˈ};. ϼǰ|';ixB/ر7g eaup[x,6}}>vڬ·hG[ ԍUz͍+AS$N$Omp0۰*NQD**Y@2x'16 E1нaJXŃ@hE_!Uڴg5r&z/TMQH)haz::ۚo>nF6c_P l߂f[0H9_$@^0i0 },6p iV {Y DK AsK^ͽˎUU,;CdxZ/ZC噆3VL$rٹT.YcfPxl6cd}Cf`z#GF3; x̌]lKE$聩'WΛYsPnUHK|ȔfhlF}_#Z"wWyqWi8:=O͝˖Ol Y\m#Cá6*'6*|D=UT0+]* mt'YYAgNaI#cԻx*HG6Ӛ[$)CˠIQ}ٗQx]wegD^ElU_jb߮.Vݖk۱:K,[Sկ􌁚v}#Øӥ67ňGH'J" \Jq۪~_^8 L>cxK&kɼ䈦MK2Rƴ2aI;"P3IJ%ʖЪ +pje݊bO Vr(j9L`>m5hĕU%lNY4Ψ*;}1"Mv([S.aaGJG~J/ Ppb d VvCm@05U__ C$e@Ca,1"zfcµU`&3KdG997H7\I.'r8k&馼d6%;HElS^3rZ"aBZEЀLSYyFO=5q 'ӿ&f^(>ny\),Dq;^M?ӳgy/-iI7+Pf QcX'W%[.]l79qR"ӑؿ ޾77~P>nnX>VV>P&`Ǵف- 6g0,,yE> Ԏq Y' |+*[CÉ}lT>y²(Ɂ売17B4 "`iDobNW]nzx.T,4!C@aBfkPAphR)VyFRFwtD#Gtɍҷ<3!=jQQ}3z.fQ|؏H섨_XbOZGuĞ_c%Ocy#;~~re׌{m`3C Žaq5nFLhYhUg*,r(ñMWԉJxr!`_w=@N+/;6}y쪄I1G=Nct׈#HlvbBI/anXNMp/[8cc0_1?^Uǧ 5Fk5C(tJOKYոAw}_O&')e>\=ݬ gxWϛb?䛉}fb߻9o-vuDu埥W,_zvPݟ8zgZ{z*̰7k>6Y"-+ Rì@Upc;3w+c 0/a- j!p̗1לPC *BVUejl LY;mW|RAw%dpZ&-Fw<䊣E;qHw/A?\^ 08f@RAlF(%:T0QʨAPRѪ<[gy`+`<͋cquB'3+jY;myfpl!o{ė8x?[bv-.e_J[~kȗF k#~rmI}xq6j>aСXPAϣ+;1}7wy'xw ZKGD94 XH@H S`P.E,fZў(tHc0 Om>2L:sVfZO/,XBz4\ev]V$+g6G5ʅo~ЇN5[u`Ek.6ۖ, c\Un{qwvub 6䎸#Eeׅ.Z]݊kb}E 'ȴ`&%,$C&gr2G6{0DZj{^pW]/GYd6a2̀R hC Ki^ +BwΘ>/I;>֍~ߡ_d]N]|zĶvo¹fur7Í͂s`/st;X։5+ ܘ~2b <X(vG3v>Q aJk|Ȋ ω Vj'K€آ)@}vXA|\u݂y خw1Ďݪk":Xl,qAYw!sW]+bQ3epZh &7ckm2$ `4]ٶzh5L.w@CVLr![9.Q`#6$(A12.Ipd0ŒQt^.S(ayf*KcFƵ<3xfT1y/'oN`>}1xbC{q:ڿ>'[8dIϢV,^3ˏ8i 6l`3X,b]݁}R(DR_G;6rV%UTLPJb`d>%RpmW6e+j"M(7 61T(_zGP54N"Ǔ2Gipf.^f=Jw cNtB7yF2h5,e UkK2쵕Kq=[^vb7wX!WE~ g;ލFQ3'ӨC7M, hYNx]O4Y% cTxH삨 >1O'$./D?xoyeofI]EGۭ `DxoHhx\]l/4-_(EQaVE[>Zy1IS;uP%µhIxp%836XxPyD>Ux_;=BG(T3 0vTAׂ-LR>]ڂ׀ yFZj꽴cSWojE^6m7\5 V nc2L<ҡcð͹T0sKJ{tTtq/x *S(H/kخ?'vĮuC#]8w^s}@p\_+ȝ<)lf3`[0f.3ۢgN{XmX*8 mх_$GN1JA2=1엙]?[_sJٶ_Z3wcGkŸ"{]58-,"c+M4T\j, 99"cn@ wb| {!?=K~#;hn'#- mnx{Ab/=ýC=DEhhk~$S\UU]Wzգ5p \=6tބ):E_U\GB u^gc0BMw`j%2QdygyIT荆(( /-2ܓDve_Ҿظ vY؂ x^oȂeSMY:wɱ M[we߃ZfÜ( ,=UpDEt2ZAWvP矪 ^i ~}Cjyؠ ~8{v#!#!nd7߳=vpXhةuK`! CpE&݋*!2ấ##ľxx4|XQb? 4]Cev2kD ԑ ZtXiͫKQb}}'zсg?$j,͍J|n{exױp1b=FbΎ9/*jL1q0Ep $bb6kDlЦM!<#6UJu^~؝\#x6P}9fVB*pM;#;Wu|@z^>؞g~ *ɛb>|~|Ep'rߟٳm 3`fy00Shalp b=A'b8'o;q3cF906h:! n$Od ~Op70|k㎠+69bͬM&k4:?:F2`rGYH( "N &SUxu?"ƟOp;O7GW /s"vS.f3w`Ƭ15&gIQMl!M4*c+D3}r3zأ3>~XͳƇ²*^4waDΟ|n\5w~[\n7| |O|ԶRycs9%Wb]s}l[><;k@ߚݗ„f {3X'YTs_L'Lޤ-ZlC=> eJ9NH:k]O`E!D}J}Xe;yb|>Ļũ;+,D|1݁^cf]~U ~{PV‚bbkvb+U7:<t A0>cE ͟4QM5() $PӷM>Vp:.'|8}Z\-Z|O]y!kTn[n;~;ӣ>YzA|u[{rb[zQ S5B C"l=6a iΤ. (<:{ {8bDp`#Tb4G}ȣS)FQh7,)&zf5ApKK04^(=*DeЖ)a6> sEٷܹyɷvhܿǾ}؟^$g/y됐nG=%UA g}6=0gl2;`8{>̳<u0 T8hx ٫ +DۡY^[7F[p|UZFII-?3уF!gZz`9Cz>R̟_"K^{)Ft|؞:5>J(gVGp|9c~2^ֿL쉗Kr;# :MZf Zh'1%*|>a]pٛ15 .]pKod)ԁ0KWb:~/^!v+1.|%+0i s\^i}XĆSy5cGx&/9n@]4P#x9UbJ>\qW;dkOz՟L6Zkz-G^XWvH^)`3&D( IJF׈cxv;'s\$'<=',YtyHfhUnʽ5uYp1m g'1[Ѽ6twX +KR)JR).2Z)k4h XSKgTӷ :)س!,;:AI^+ P>&F~ش׉z=׉:3^6\% C}`GϝsP6Xf}g*dw%f:aZ"k0Q.,F:dvQFBFT%ٲ_ 6' v?||?ObSaM!l;'F x'S}ms/7zNX>_:VgSg X-~-c`hy%,O3psN9?PHcj hmnxX8*XpQd5}:pnXCU``| Ey ,%ę0,gB#螉Y:,Y1^I9f:Df]?|c9i16^lB< `8B}t gCR2Bs¹$)P;},7grvkAs0`ز(m LnԠ Rnns%=Sf2|OydƘS(p)zxJ5W#zhR&} WVH2&1J7 J񼪓hzϔPŎB/JŤ/7ښQ J)\QL)10,IR2ip3w7RB(^:H 5j  >2 4:LPQ( (Jh ap1!0xpp8_w!!6?^bCp\;}9aavAXVv>:1۶ ~8?,<zYlurbs)_^ T0.O#'t^$)'Ax?5 ]Oe|+./~ gsgCψ_.ԥ|^q/>":F52CD~Rd Y蘶Q4IHT1;jSypMa1 KrU oDepKmUEe=8f;%.hafl&$vț1&$JQ=dgf9Tͱ, g$B،K_Dkzw ޡ^'+T~ G ;k>p#3Gmiv8/ ϩN^WŰ1ɝy0kv=璭1=OJܭ.wo q-_ߑyo 1 P;M&erM^֨T75}R %H;M>-O Gy+֯"v[1WEƷݾ%c.{Rhc&G7čӷњNե>on7B&#k~ԷcMlN|{`n+Twu/ @o~C?|;wMx?!!ؖ='AL:ga\|qj47h^?85Nu oAmssmiW/5^l@z.|!|C M47a ٧JȮ葰ƆңA @XpC҃ Zs,?帾1D~<+JEDr?( U%2M3VlI6%}x> 7QTYG$cG^7y;罐oVGUםW~G[nNBfk";SǟEb"DE4,p(;>cvQI2&m''ķ}bFNx،~}bw]xWw.sB7+R8R >R߿~5 `Fpwfߏ;͎1Q1c> 6b}}ľS>^f4g|EV4a+ wΡ,ߥѾ=K8}"w#/ww@܇@{flQHleTׇ!tX!S>$C:Џk :L^h^:?ZKj8g/XޠiqlcM_ZT 2>(K~?"6#b?Ï+> [WSvN0V~}z*I@*W*G*O+e3hV$ gH`DJBzOcz1 ?&vϟW^%~=:v?xgN?7¿ כ/+!9Q}j=. qP_r҇{ HL } C:tA_Q;擘'}BOz_U7Ό#4?Eb?nxn~nYɿOcF~Jl§4;Sb? +VuNi+}F>~ψMجoWo@=w}>7/p!/^ĥ-rm) \x3b}F>xe?'VX%lv3V, 9F˪=t_9׽V_n/vku>>c{أx}9ZXe򷊔Gh9nxxMzZJ볿/싪GHOo|qiELg EL$I6*_@bѼ=i Up}4N$a` N7)/Z`lmu@?ܨmdP^clw`ay:&{}I4y&{Eɚa`|15+bgV-mѕ73uRy7@,#<~qUvAWA*9鑡_o"o׃dπdAw%kBɆcwğD>fqɘb5ȓ{VT Ǣc~G}>֣XXx|`7Ճw_-bs]us&^\2%$;Ht#ta(O[~,~'EЩ(>=>:w*;[̭$$~bL^aWp頼ҔV=2?$r;e#:E˪ .&ZS.[F:ly OU4mM&>Zfi+`&񔕵ԀuD޶w/ʦވvh2 G5(PAV\+2H|ޔYL 01Rc&%a-LAI2ӛF5 -+cD$NMeIaY)rU*Q祕3%OIp!0ߩIG@T%7u2iQ::{B~,YOIHB8=_n ~acIs|@edRReWFfFq&CQD`_ij|. _g۰qϖ]w EE$U!vL](͵R\*].&Ӽلbܜ:<&_gh+`cQ 6#<# PE 0xRlĽT>)R*gm!E^[/ F]凑א~-dooq%iFɥGrɏ,[tżu;, )E$R) 8%gu?>mI6ݒ@+߳-ɮ$ (e%ʫ0oD[ڎ8 tZY|׊ExʿĔӜHr2P^TA'q<>5ZLLz=$Z/*HC=d#YQ VzSQ)2&Mډg'Xwi:Ak9H>?9J[Ն%$lDL+MITH_@$)"zk l_Yu Wo4A)++զ../@\XfwgNlC:f yΡd.,=>pBSt6ȑsj}ח>*؅O%>?ʜۊpN؏$DMJwAҟ&RֽIW}IM6!*K*j/)ɠTo$ru$xQ{: Q~QMR%w.?D_ %:fz !XT~B_#T7D\ b-K_v:DnCEږ|s.8ׁ aP OtaᙯgOf7jLÌ cSh.,%$-HX}6k0¼uUex$00p}0B7B tmͨ5'נHT@u+HxX3ǵѬՔk,;|P7(:Os|BiIyP%@.*5CX90 4Ք6U)w&;]+:Pl|&{57j>7lrNLWW<*Ft?DOcq:0aQW_)lAB+Bj'S'Ke8ͨvˈ<|0 bHQWpPj6teNNHu{wrWv.H9#֗2{L[sZdұ7-iJ^(U(gXwEq΍/zu厕tBJu1\_}09}JܕY4#Ix8Quw ݗHS)҃)P ]O9ͪGS-)y'K=羲 r=^<x_@1ZIFՈlƒY}'5{Lҧ gE(F@*yu=]ա! ̃p~ PP+Ӽzl+g+ᢛѡd}/Y rpyiyO]x Z\0ʵ^AJ "w&/g$lD&3}-#YO& #osd /`vwο`V }{t[6,-X @C zRJ-kfJ[6ガdg%{)dnTг#vd҃K{->=Up=(AXp],#{{=Q_Q ;WEL m>c˧mO6"'vNԷioY滖xr{rt;q0vY$rFR`o-$mS7T'0}8,~&5K ^_48\)H)B^۔QPQet%18@%(g%\l07)01X4)! Z*4(557jH]2E>JhQ?No}4N|ror> 0y$uxHu>W,p^m&T;4^]丞=qf>tem4XMy+7CW vOJWrA@oK'Y3qo,] "QW{`J 707&ģ ix4AWI X|"!O=;wyI蘢K%}Qza*Htk̅\婮a^:XE3؈5o:VtzcƷ8n"iX ~:Au6&MojVew (T>p7;K:8:rNv'w _u 9^[|"t,GI$|tpIe%^& C1Hʳ9IyYI:'̤sMr(/*i_׹pۋa*~VE uUݡVc"RUlp}]{Jj/7soGl{?rOn?y`=6k9k'8`̐Y\G/P?8+tA =A?*8]Ԅ G vԥ 2jȘ29^]yi.g,a0}d<Θ|E1d"+IYk:9_dr9nN~[ۛőCpZ7!;lx>9gyg;{Ω!>E K'}K'KKeNm(1 dz,«>2.N? ϖu Kby~Džqtiy?s\LbbXg@"M4R8Dclmm| ?]5Gw2^<"ϰ~Gzuj-d9R![or%߲& v>wU 3h{GB殛gTwDU36L E5 Xņ8`)W(մ6`j7?Sp"Њe҃@WiZ37y.0$u)o\ h$)MdkЦL|Z}Vh}2]J˾4>Z'Nt+arеU֭kԄ!gT\ ֬pJEUbWZi(pR Hzez mNmIlvBYn -nbY~;k[blϥH1FfGbΎ:ϘM&9f4p-H`R ޏAR`+e4<ᚆnɝIK :\^ܰАeJ̸8hCNfJ7CĽ" sS R `_m0u0Y*/4bfRu°ݸXG,BZXWЛ(R>:ڍKbǛA7xͣ&ԀQ?I3%~p.;Űu}\bf:ycKCfQZ8a Z40MmNw #`w\p4XɚͿ@ EĦ&!wMi:Mi3/(Qh/9FCŔփG Co~iWtԈ{6/47*5':xWCO=Y'ϟ;Ge5Vr+w'9l Y܈scD69 p]{@g].V̪vV ‹I/-q1,K` 7,AvĕPt(qH1tOI7F󄖥y۬67Ǧxbib5ANϠ>BtKmp32Z:P|GJ!mͭz_s3jCYDž'Yl4я?Mdzk$㍈]pb~Fe]m"<z+@wi؎ıx$k7Z\.׍^N8En QYMv+Go[MBUv/'][&#J1aX79JqF| nO㺦7*fn'ԴIPC7L]Иna7zXCIHxN=;*?7ѪxZ 2:S՚֨X)0m[ᴈ*?X#EM+"c00 7X踺w JD|qP2t-^4=' HRJa9S7up]'~>6 ܫըQTV6iWרC'kh:mӑωkO]<':HDS wil,_G\; K&CNa&R`p_rr\ը]]*'ׇ߬պ 3C s:Z c2u T>$+VIy&ZvbSVMSa›f }wV kƵ$pؿ["UAفj|;zȾx>|cN.'ه? ʾRy6}gqZ]8_o)Uj,#> v0&th |dndycnge=XrT0ĻB)V6teXGeZ*[ q|.X8N"L&hY&24U0TbдҾb_N7si*'#rԐϋ6eUq99 WEq"*&?_kxCZ0' ~eqd]BS[ѬUU4T^[9ypW9!tYUA=>;k^ǒe0U*XDKL?K㋉$4,3k^}cD]rW(?kiti7;PX`2LYąmG <;m 4FhbL&١6s3PzJm(c@f2d &hnYX]?nn7ّfmWljF1 =Z1ǹ9tD0QQ `w4zw2F5Y?a2&~sj #0%F1tίȌNjhڙvB6EWөv .lBYacàڔY)d1[, Ayf" f62;ɦz3 ۰Z, ^I_Sm gjWC@]c&-xhz^IbIc&g$1j4e}+Z4iNk:'s2mzXUwPԹg!CK"ѻ5ê>oMxtP4i ;~a2}k̪q-O¥کh !Ƞv ͒*kEAm]7SZH6ΐ/M v'8uXėda~Aw_d( .uyrs`|\E S%(GA_1rmGS0O?fSmC}*hYt ]^SZcz!b-{,qYt`k -rwas>4ss|,U#G Og=`rP4ũ jIuT'K4a.FINDPlplGV+SanE'X$zNe RtNRAnX)oTG|>*7ɬ8tTė_/sj~>(.ƚdh_|P|Q08wQS ,$^9qvʮhSp-ju.A×4$^}L?k].Aq%jq܏b _ct ;3՘M0Fm j|q yx?r ;[o|ذv=S܅p'&7PڮK:u#긵l]h;6 ѹǮm7mOݎ~`}g: C. @udxq8%`qa ZJSy>܁gS-=34j18q4NxU︮axSט=%@kdw`1lv"dn==7E9N' ;|!?)T #8pc cWJt(w l>o8IICӷhP%{N''BߘE\/cxҁ'O:Ry#^uWs@~ yO}) q чlţVPu8V)E2ad  =>%'F|&}$8<}[GzSU|?} {83Ś|+RvTUʫKGcV+&(K.v/H0dWs]X³8#w.2q~ I4ir d+dMqpn*5lFu4O2 rwL4M&X0Ő38A'{ߌ:#[38p'M' _s˦r+9|% qKuF ȳ8eubM f xuk%_y3p~!_>)Z_}$N>>'o?uX:aʐ40L XM#?˄]N&vZ//2) d ,; $mՀLeH`|;5?9ҏ=NĜ{&'{!* owڠxu{s![GNkO|MEX/:{IqV10؎44əa;Q馊60=P̨߽; n5R[vPʀa TsW2֎I`[VsTUvkgѸ^ ;+·}'9WVzz\oHΔLc8JY3QIS"ɕpr)}u 'O{ո>4ǰwG0?8L?^KFޘ7`uM)K8VW6^D }t _挏3)|%r_1?dcq>ф(ٵc]ĚψBr'ICO仧Ex~po9{/]^lCdOe0uh%9Y2fGxn7Utua'JS;*1)\Yb8EPP_4UNrrW9y s霜s?ոYyI' 'Lz?WJNW jr=p' < te@\H՛hs>w0&'龬ef39yH` [ĽexHW2ϫm-;'9wb[wM|;WٚCD& 'ǵ7s#xɬFi8eMџkNx[jjخ阷:^M7c)̀ 2t1ae4-F)[íS8z咀''4-BF& TfE|!n/5pKBF-+&c)-yZF!Ӛf^X2V # k#C@_p#osDSI&Ĺb̠97))<'5.r5Kofc-gK^Q/1ԲT3@Sxp2L""~2wFdѴ@}'s"I8k~ d7^}砦P@|'ɧqjN= }1^26 ? ; pojO<;P}8l0UTy7TvwTyvf)7_Wډ[Q}}x/lM,Ss?ND%ZQNl\1>èбī9Uj/Lai fV%,&|1+^)څ85)Ge/>Dp}&'`ip}D*L؜r97^}\܏簙>fnjg4KΉ599WXs6~mþ(.LB*{aIt|ڌ4@ +#{~}-B!Y \V`O UTkPs.$ނHB\rPH]M1r`u> @!?`lQS3sPops6 8՝@P{Ȱ8xpPe^Rnn&Z>̀]H8č T5Co݊\o\߰ ȿhyu'[ϋ{qbIP.:I7cP\3g>@O[> A\Vcszܿ:/5yvm)Iy pX81Ϡ=ZI? D JOF5et=j`j :8+ۤnsBll KN^__ 9{aȇgȇvF/8RrFNO~VD x:?'Λ?kOKNwyG6r8M9Ѣ8w_ 9rać+E ԓ3gB8U<h>)V&vɄFcm(9kr 11Sd‘?aZ('uE.pl(<㨛HQ8v 0!aaeg88qŜ̺^8k.qMp,ıy]Tp2aAcNNXə B/5P?]pAXnԿN|%ka SԓHnN;+u,8b لhCԾ$d+SȰqScZ>|v]qNNrpR$9N.gaq֌x 6$vU/-pY|YYPV@OoZ ׀V/p% # 9m!'-~ק6O#VWXVk r줝.юen_BN[ x3ru)'.oTd[WueYTUpC<Xsa\m;sC.t)'/Eqұhhw_2wUo-;p{e\%{.NuVWӋ8"N^YԠ'.DeCmum#<=uU)p_򝰡\"0~= Oy!Ex\Sq"s';.aVI{>rBjWe XUreKuu{8Gj/R5srMOmjj, xl,LHmb4ḁu5_RWqfg cqD6`0 yJ%mrrֵ|ڈ?]g׆WiQ?fğ#C/秔{<]19suC]vou_W.ԓp;8gxn4Sg%=kwLBAd} `cjaA`=fQCZ+a8Z%sV2edhNQ(7.K9yri7rRNe!T?zjXϡ,6(y.An=Ou=COt{ i/WN؃m6՘`XkІ੺/dԷk!A0.ƐYxm77Я55i@`תϲeE|@^ӆ96պCYz,@nJ.B:}53 71Ǵ"xV_q麈'VN:-?: 7Ok<^$IԐDsR6R`HELL}}.|zN]},+{c͏|VXQ-}!}aٚ>?bz31\>- aml\M`+ThMrh"Z'2-re!"?=nd8989NvU< ?q@.2fuI\cKXPG;;BQ%vxu<9Gx]* ίS^†n4Ov@_)dbS)MfIEosο)aCKāt8ftFoPt2s9>ڜscl ŒĞ !ʵze1qύ|FN1EOqL Me7(E\+"W_ĝpo[VrJN>28v ǯ-C/g'UܪUƱaHBqn0<dYq$!1CuKv(WEUb'6*NvUC=̫48_Ba=@e1M@֔6I$-5*_=  iB$$+B՜,]{VH;~?w?{Xr Wi2& UKJmޟ~ ؄0¥ɭI d7k1=?$׎.3d*&O\#4SXƘU!cO_`慹>\nL !:Ӳ"}8y&NySħ'n *>?kG[;cOT侦^,}M\\&tʄSԯ|sDa7sr͜wsDg!}o΁.Xx JW\@)#;}/7͜3'6Gքt5q))kpNV5}+ٵ|5}rt[ U)  ej{a'CI jn[{Zk՛-?|i-'_^}TUPZY:ȯ~GϞq*%z7)8EPC} Q {>q7~o-'p '얐!T~et>74@"@@H4Pv9 Ypr-\tKF\xaSw-Qq㤰.Ci]HC*|qi37{^O9"_=` T)z!E^D(ڂ)еL֔Y [.o:N =z_ 7 nQ}Da99z='Ǯ;a}H׬+8ց0g6F9sN{s{O3Gh_ T&AEʔ>E4zNYɻ tU*?f@f5Nɸ":&>> _>D]X@Cq8v3ѡ!:zEG{}?'AGt|G#ß+:u?0bG~İeĨYk!;][_s9]]o)zC R%uՀ =F]6.ܧzo<p89 Zʃ~A):^{ jGd3'fN͟5N(z7G\e9?+=ݲ+:o# 'Mr`DGۃtD!MѳdӃ@?+=Ι uD-L["zұϖ2N 9PmP-Q?N|~4SϘprPSy(CdC|{GUmks^gd&B C RXP!HH AG׋=z-0vDl-vr;**3sVH&?;<̚sfk{Ϟ9iէVu2?g(Hxcݙ[y&U~YVBZ *GDx, .Z60vϞ~Y+wx&. vN<T%\KT<357._ZfC+! I*z̶ۺ韨L+kCCzHCK_;PTu#ʃINu:rl]MӼζ^'uZm<0usu9J+K^czsDSژѶ^‡%|l*.U7lp lP iٹCYk7:}!\IO& =6IIqdo?~V+qoamZg*,af c7+-IϟRe̱f˖,aY.us~\`P"aj-#[\h`-JzE[-޵q6v]JqĮJ2WcJ{L)I81ucJR{suGȿg -[_+6u\(c[T]E5[$\o㸑˿uKqԵ*P<㊧z?.gDh`FǽKq 8s$х*sU^%:e_ٸe̳eHzEB++Xt ZyEݯHu?{%<Mol`O^^U<jqL~5q?EgW%<m03hq%ݓY|- } K.+9kևJ:;C ~.⹆mz\I|r2'|8>0# C>R?ƫǕ'A+sHq~$᭏$k|`WZ?_s'S+gq^K,r3.c %~[<9l]tݯy>V%{l< X8hd'*~"aO$Dq9p49g'6 }"E' )Svd;%ݩx8L'gN}S·;%|oSƫǕtO 0393o,xw%8hfT=IxsYqUke%Y+ٟ8ө >\6cӥ <}NB™_H8 u_\p!/%R$}iq}MrYg)/%l㹍92~u;a-__I1⫄+ ̳+M_Ix+ x`gJ?Q)--W~pjp|Ť3%~`(hdSĜ ?*5?JG 8dqo6o(=J;l{$c[Sۋ[nߣ{$O)\?)KpOqbƹpEߚ~V,aϊ'1oL[ sY?KGm\1S?'omӔ_$LEŒ_ϡXGo6Hx xg牪3_v¯~WųWlqoano̷W%&!_oWqo[ s6fIXg|ƹ sFژ'wg0w xnq=8i~s-u|av;7h`YNеr\T\;-Ul߆)A+sKqq07m۰x]ԡ"xE>g6,^9*&8Mp[qu'Wbݠvڸ!p{c񤰍s1 ZgG<x`=ۘd7\~ʿCýkM4FU~j<%x sMOe|gP>3gq%UvriQS6c8uaݔݠ*ԡ\'ܯ[\Ʃ Sv]i&/J"DP8'Y|%l\ BvSϪ$g'lN"by9%%geϔ94`qx:ݠyx >|?|bqCJޞxv^@Y@Sx ,^ ߘ|ZY k㺏y*H8Gʘ'XhYH0`l_hqL*LOQ YcZHl! 6y o SCn{ۃY8m[IwVCn'ٓSy{Z\lJ8z'= q|s]WҕV<^*Ά"(E_/3q@,Vj[ч>gQ)3831@+s*?$9먁܁)~]bp  >|$}EXTLpJ1ŊbybB̵XS AW 'oP0H剦A "/8}]@-CJ"( Cqokz=D#D=(h|$AsMt'&8u:cųm[jeƙ> wAs7m[Ȝ(!ۆVqk16A?Ef2,S<2_ OtyBS[x,#XUFpg5sܒ0Otyy`qS/ޛg2P9s,:Pϋ$h<6Lv!2ϞU~MD1 {ɛ`~.@#󬜤s$;'cif'%43Op)L0r2Ɋgdcy>vSj? _hzi!˟=lNI:a·9˗.&3"[l*gR27kZSlGb˷3~A ʕ_r1WƵooW(I ̳!X{:F|H~ 51Gcc%xUAU9ja56%v(6V.8bP<3U=`Lrűhfb&fC2|#_c aq]ڛ{P[<9BAoA>elc׃%Ⱥ51gőIpΑ&r46\Klcѭ>U:[9j6Alيklm|w,U<3`lm|?3lc_vEUGgCp ?Qc1qQT9v8p18\ss\`99!q5}B]oy`ɚK;`9;7&X9WKMs nKp?\=.EUZ?O#2Oq g?j^&"#XgowDW_~c*U( VS*GT.9T(<^AT36爪s1Gh6|>VUq`6W1M;\Wǰ9ʎUXT8k"v&i=Vc :nE9iaYJS* NTgUZ[G{n·6iq, p/ -P<GDxbPP7/ q6ۘ M J>U*"]EзJ 8}o㉢1GcO"x!.vuG|*YHpB#*Z\&G1()ӲP.$l!6] uy8wqGpq,kƮ;JJ"^D0pAh6ve|URZs"/YD"m/31()mSZx&8j[?~6'>W|TM3.c JJ>,9xųxc (JJsl?^ ~8'ǯ\8!DQR*q g@p2(JJs\JS.9RTF,!!XVxN8NI3E9רk8~6)YKpv-_\E .8EnZ*_=CΠ&N1z@=On Oj6-\;tA$z}u]ɶۡjie͂ :zSVW_\}jU]D+6C' ȶ~ZH۩>f$yID$u||KggdO(DG]f{\E' LPy߹'\r2-:_͟ce5uKUW,YSW"kpC>5.FV' ݩEx ?Ez(>@t>a`ӓ0 8y1YB="o[ ` Uq+zbm-8Ve'ϯ=tƒcn%bFF<$cDf[' c.[BO xnK6# :+ͬg2l0y8ʀ=#d" #x /Bp)OQ\w~Um[;WnUTўecBa8 z.^f:aIE3saH0G_+O`@m~ť }2ˀAf M?ri=tqosOUqTGN%rw]Z,^SL ͟Fz}8d_/QFܢ]7X>#bK R_7zP?aaNCO3qHփǐ34B`Dns :0s}s脺%ih#SL1L#дL3>%Kװ0ԋ0p^q@# D܁)Muïej.8 PjX$.]``=8ñDS}%2hSqܑ*6 4E%©%z@ƀdi=0 fR/L nj1 0 $D.D_۹f2΀#|n>0 dNuc"3dŸd?2 h_ G<+M4xЏi ,aЃ@tDb b]Thn=a f[jgԗ'X 5^>{g8CoOΈm16H @_>2AcW\h8D牀꩘c뚆IZl7"9{!8hQII)fr -`Fq0قR[S= ѭ-njٺ[ DR@Dnh>120٠Ջhn4"n2|& GZ #)dHBOu!Z HjjsJWCP+\\O4|m܎;5誽p|Mpj;ċh~ˆjF N7[7M1Ekiցο®/j{9sF )4DBsw9:Ub:- PqO'tB虘Av1{BX/O _+zzo< K0! 5opq=eИ A\-rh=/!D>I bpd0j+tB'K2>Jr|$>Ja@O4)?1guXP?W<+"Pf!zEOBzM'zʃŻB)NJ:AmQvq%\U)2`1[mr( 4"Wd{S`ƌa+!g 2"'(a)DcwtNC889 tC uӤt! 1I<?=hl BT%& NtS3mǦ>)_ێ粝e%ū \<=4nhItr@Ri8õ>~/ +?_;M#|4)@ತFψz}XǹQ\n=JG wio,4ER]EHx=~yмh8ɡ 5+WpJ+ 6TŽxCu:o\Zs7| Q~ ~2")((92!11C8tub!OCgm ,3š'lLEil~dz>x'~h?kEkf K4&R,  `څϾ\UgaJ+az(Chf/"(`Ej^<"ι}UN~]a2S^e,x񠓫.9yYi5 /:zqusL fY '4a2cn!>V5307ɸF1hzon"p 8F.LmudCD/$1_Ndɀ!e ^=%k&ғ##jNj~1wIvo;znZ}FY@yc;F+O? {DK;_吝-D5){#xV+XQy7,iTyͼэ 7M֨Ue)/S|ٗY\.|i)3M[Z~#q(\p4P7#<^urlq?˼l;kY z5&@ ӄ.C>Svژww_ɗ[}fmE^RU~b]]M]baV1`Ӏ~dC}&7A[U\+_ɋk*O\ݤ׈SjDEM|!&\3o33B.yTF1V-"\!(" EZs4q8GsIl ЯWΨQ"j-g,mC KCCPkxm-sW _!05Y_U|ף{_/mO{esƊH1jA[;U`pOHp}4"%PUo_KƟvAJw{C{\W]_5?zn[4횸-|-ܬj7j&Ym0שv:t ]o#5[ |հ0ްnX^ ˷!\5_OzU=a~q[W=w=fBղʾ ܊yb<܎ Z٘f_S:N⦉H1Kn-h~h C^ڡVݠln]ի}?=O3atbF+RX(FcjYn4DRG ZqjcV_Q?eu:#xDNiajF nToxG:}]ܵuU*3D3? X) a{`@) }%nTh >Co"Ho"Ѵzi^W8y? QRD`Nhn XRYW *񧊍3,J , UQBCNӼn++^>ª&im"xI{D.\/Z\ 榏e3Ɔk=TN/kDpMwߤ߽໛f^v۾OJ, /$B}йbnZ͡ ͧj!B'u @[v+o'vUnmR~KϋwQꚙu'-.ZЪ%5USf^؃7 $|7 ܉i6X98xxv?ha=ߞH"ّ^* DT8MU];kk*S{_; [C0pkX)}kSl!c?Ꟊ+*nz=Ku}`kkȞzTFDLz2[NqcK:v|ﱷ c^{ǠCp;NtxG #- ̠ Sd y{pL M"Sd> X4~Cc1!ĒԠ*.CީAy%li#S }C?EgZ8w/l Nbpq2oAd"0_0Ks{X!NgQ0% G2kCg9vYZNqA)=0+#;zze93.$/9ߍ} ׋'ģ5 GȸӜaD&m.CP5nۀP^ ſ@du$G2]Tnt9xnҝ.'ty;>s0HӧD3^7ODM.N3)<Ix#[` Wx`vLzˀ8PiLvtr] ?}~q9";'Y;'"'|BUZ1lpca mL)4GFKvz1Ϛ/yUf?Z-}S"J@gG:du1b̷e7bx\z?бC滏ѫ@OfF^dv$4t]1ЧIh=<'Ѕ^t DÁna2}8}U"M<}o8UT;C ՜6U牊ļpRYër yuAs]A+٢'wBA'Е~ފt1]o߰'u2> :#!iPrx& adx 3+Y]ϱ~Ot?+? X u[ܟW+DU"B kCe8i&3{3RbVY =!SPK s#R~%}N#"p-K_+Ԑg}k wJ" n#؎8'nB%(_Zǃuxظl~;j,٭ao򅝿ş6msZ{#K ]=Az6\fZJIJqXiWHiC~ԇ`f ^iΛv40Kjb*~X"30/ۡY %6)ZA~#v4Ref/hfd,0³0~m~Xx5" NJBBO"]3"_L7scD'm Sh018rFp+DЅ5#$龠߈<6sSSᢀ?@R `pJbF4 ٓM$\oŹb<K|8YU·Ym;Ϻ YfqՕ5 -_8xʲj| ڿ|'5/0bYK#+'2U9aƂ4ܜIzHOst#34Mj4{ fEsLa1=s2 tefa!3I6X`Z8 ' KK`.A8(K^:d=}09]A쉄A3Xsgro0[ٍf r\@g;Lg 5HNӑ |As:yȠ$DD^֭/B-E_],y6,ӓ$w 'Dͯ{loOO bq:=͚z7] / =*F葽% LHdjy3)LIq 9kj{Mƿ lG)5u!~qLh˳ZfI=t 6כ:; yJdt=*cq+q U)UEOR^ȷb\EW9I⻊\7JVm#lJKUd!F@,+QPnUB]SyɚeqJԮH#(YH@gܣ63oA*( ^E$Gs;ePtt6rgdHX X$!(UzM ` J8sR&Ǩ E"jdAoyʅbZ(=VPJFQF<@o1A9C0o"C-'䖟5 \XM?V~ԇ~.ۄ5ϑ;3,xŚx!A"M?6;/AB֙D%9x` etefN+N:v exf'(q&2ڏ%VDN']}t`.hFCX2QI8ƞ1-$ :IA"<{#E1)`/˦ Oq<c,,G*H"X=|2Vp [@R6vރNMT<QGymY2e15P6 y24 =QC cN UN&ъ.*1Bde%V y/|.yIg,L]PBļ@9ȝ5ɰ \b=ԩD(xM8›T͗S ud; {ۅuº^oQ;is ] W r~ RHTd:/gK kVa[S?CBLN;pFցzAXQpߒ}k/Va;w_tM;,x5Z]Gr^,H8JӸyGw ȲYCW ?bg[B0bEa-kӦiw6a:Na}^3縬4+2ı=}+nw .aͺk%w v^;i9dCO4Kf'eɚ֟8vݰ[oL2Ϝa۸%vT׀E*n] 'ӥY :$2»314vZbsX k䟖ǿ!_軅5~Vޝ听8+vÆu1/n4Ku^30E@8auT8#!bi N B&Ru]aBX~! a= a}~/r0llu[DcB.[N8jA` {6̵=p×mMK.|J)r[Z+Obi0NFcЅEe$R> 73h@9AY<ҪH~*027["]0 z Ac< 4|)(cĦ9֊Tb )҈Z$m4"TE ]vjvCC&xyh&):¦L՜%X'3oj̉h_@LM$sSmMWX{q|7?f~Ǿ[q[{{s;ύ\0ۡ𴡇_1\D{p.NC&=O+c+ g @?a KmR8SŲnSd~>8d9G1Jؠ ȡ+6-WlL=FAo"ڈ}χy 5-mVNFɶCQ@Nxi|0\yb5-SO\`i,:9$#o^ F5,#77ND#lwn0#G1g*Y1Ce y k  &v^".$ZǬW.~|06+@ Ov k0b橽3Xo0 -Ar tx͉ж]ɨ]GF<2R80^f{LM#Na&AM/dl=nps_K? ՞g$w$olu\u+1mrc8Z1Jlqݭ1ҁu_ZB,!߆A6#, g YkNMk`YEI046-&l?؈ߞ>(=leS|؃v.ke'Æ-Xac(LcH`/zZpr&73=Fܼ&,wp i:p7w6Ov34s8kr\n45#f&2Dl+2x7okɟlo a6VX~+UMݖݖg[2xtnfcvicj8)])z 0GqOO'Kc㗵1a]4Q}Bt fL\14B1V\u V%J1`_EޖXy9Ma6^X &SҀ$6 vݒ0}CY+G9`R| l B%kNǧߝ<$e5瀇qYrp߰y0[O06m;9`]Af- Yf>4#Wp>6 Η ߥ~ Э[@G|wuj+Π!!`~`AR?;ax}?4 ;a\[?³|CgzW %YRʌSڗ`W`ޤ%,ΆJ*0"j1}2onf>zXXŠnתY{]cȩvg[`o94jk m<n<, ̯dc8% &5u`댻h!ND:d(e| G# |$جqrЙMg3kK,w1e`#5k22jFzTXŠm?CLC/^`>,E-Cp5?:l a$끬|#má8j98.A` НT̬ûȉDPn|""FȤRj~ڏk}LXg?&>;|,Y)޹etG1mGm _OSa b֩T|XG2dX2` aJ&uhw.8"P,Ú Lt15J,@@!83y|5`XD=$,2/`aAd(kS|^??>y\X>.{O9-O$r!;Dia'y Ul݄M=b7qAE֢W…ݙ=PA`,xxBխ,t~gʶU_!6(\8bɅJpf|\)8` Φ|s^qJr!p?X_ɺyϲFNgI+PCFMHn@ eYevl1Iu؂E|KIh~n+4@-/L(cRFv )CNgKQ?QFatc9RU%U}O6O '⇞Ly:0 8ׯ?vޏsa`dPCXM8cLjc95j\lC;#a )g?Հ%tO O ڞc|LnLC/ ޙGjqf}+n ϓ ߯8뷩ӂRԴegӣYgK$Ppb#f^PlBBrL|3=Qi` 0 ')Y'wXyXLV(}F1hV'^XK Z|\fvΦ3TE)&c.P̳!c-<e$d$"-'#Ѥ)`ӜIXXRϏYĨItI1jZd:3bÀX;9{7XwIXIXOd֘? Suіj7NƩ8|\kS=-ZgbLx?ue,klM'9e5WU#R]֊9,2p"eda˼} ]VBN&s9OF(ye kuÎ+fjL~3dsNQz-9L`3oǀ2̱na؜jbPcAfӈaL'Y`"e!cKy (>Np!z:v32PڲVd~^l=SBG3|3M_$)t Nd' } yE MXm"5ALp& q'}4 K֔?^ 14 41/b HyF>ЇsI \_ig;sXwaD)DFMVMAIcsE 㛢r.9.MlP2!Anv8PHTG;D{4"I{٘>'p)iy~9Ya-{VXnl?eˮ~$N:ô&xD\F̹ˊkXc @sƘcF@&,DBVL1"55'9+5qڸ" ,n;?~NX+5psi}{?ɶ?)n"I'' Rk,À_FoKB ch60S1_h䟈#kϩpDҀTx@'xlVwY=Q.#xZ|C?_~^X=OszV~T֫IYeYtOزndp4ƨS(,ckxoLZ$;{S8~aO /{~#G ?k+XKAXO uЖ_ U/4.yQXk_֑/6K:%aR ˻\Z^}È< #T,vv I݄`ÔԖzJSsr\-̕dKt1VrIb,"n7cOm3~ƪy1Z9_N`S%*%V~tYQkaLDKCۙϏb.\zEtM4W\3DLZͨz %dr`=57Oj\~HR[0hAH>줎L]̋l0q ڂXd/&Z fWd$i/ *m4s:PXٰ69~H z9qG;.׭S fq^hx@\ .ް'yʗtB|fCY ~x^z1&Eֺ'G+-č'ύg W~[`ɒv{_&ܖ..O}W˜cevǖUޏ_e >D`,epqlx(L'~J!"\~"v!N!AהlW" 73 A'^ g$HQ~! V$T":\2[2 R15J,IAJNyEXϣ_IYZƠ|X`c}uc8qcLnVBdHLUl\ũ$UdoX?*}_Q6q#KFZv؈tyķI,q&<`4S \2vnV.s R=HC~K=vc*UoPx=Zy4 O l 5d{d-qҨ""ZZW6)~7=z ׅUyawa=wa]f ebhV9ߝo^twEeV9“#FnѴ1hMviݴ&ho4f вk+}p;!4U`)$ $MWO~Τ˳<sGI3$jpp5HۺM,}H9#\=O{ӧҊp#.c4Ưt*<6]#F}фo'nODf1Aos~"[w7 fSU(H~ \匿ЯdnHIQ5&--PcH1ל0Ϛ#f$Wc3b* k!3s.GBљNLru  'b\| ks sx >szW3D8F<Zs4=mY߀aAq5|SyiS$՘"e|Ful{FN47]+|=|vKG524y|[|{,J9*HI󃩯 ,!ᜊ[$(1g}%aE̕L, h `@:mf6H3Q44vIZ؞ ls\ WH;U l9QPCcSfjHVVEA+]M j\x7L)02zc$+{ ңBb CqG9ڄEF̷z5WvAs4,Gf9&AC!)АQkS68e-URƼy2d6Hmmy!/Ր߿}KXϿ%jre??^yN\zPoٮrpno1&@Ә"R1xm Xi>g'|cjd$ZM4'tN};śŞ7rގ_'e; 4fXǮ[{‘Ǯ=x.0=7AeE·UC}K]>='qi/z̦b)5mjd]Qɔ\"xv`e^aUV; |~'þ|up:ڰw'33p_=mxZW@.TbclEMbpUyVpT3mصGzSmq}X%0F9.M8$Z*Ɯ$6cY? 1栎sg:}_OpH>tЉ :as`X*7a[Y,-kë)5}ayX:}aͲ8Myۛݍ~(VxҲ GqŃ< eJA؅k C' m f5y6 ˗4[@XF'}sqV[L-jCL2?f2߆C29ɵ#nE8^Rf]x&čQĀ7¿mo$p( {kƇZ뙔[2GQ6.:fݱG|׈Qט\V==*י:́ӝagNxB3=x>mx0Ӗu. @ Aqu3i$`fk"3%jD2! #L|w4;5{hkߑą,sׯ{ Gnpg&ӺFCOL1la%D 7͒"KZϤۮVZԀoN\wI|7SY+x̅00. 4Y/%~,$tĥcnɈda1֜Ğ1c {% @G;pꐛ2I툰ѧ `>s uc`,ô-oxAi: x}5)^Iwi#|?s7v8vmXQfB5)V[܆lmQMGHOD=CO'tB ( | -4QQ*rͧ1fDiMT=bM0ȤdW_('xqi6vJՍpXrG#/B809 $ /8!O vzTN$b= )mlZPNgj jwO]$.iPuP{ΣқAxYИeUp.e62*U)O=N1N9}5?p*S-{"3);2s/&} @g1v6;Kj3[H>>tչj0-a/ $R 8.V֧*L`1-!)CVc>Ec/ThG7 PWQ<E,d|88mㆠfۧ#kJIVs\\Fs$vISBD *#jI2w#Ƿ*RY{;ɱ &KEi()SQ8*gb9ToщY)W#@iUL rT CZi>aZZ֨h-"s[T -csSm;.5Zޘo?ҺKOtGwNK8?.awu' ,4as| єsȞcm!)G 9d|IHt!sDo#)uDcl]8jŠaO*$挹 x)lj)dޟKi.ދ2#Kε Ҝ>+6:xR8j9ƅ8!DsZy\›p Ld'5EDVI!S]8ݠ:X4d4 5A#r2hkzԇZZ-n`[Z_-{7BӣmCcԞU{9\c2usg>vna͜"Uw;Sw2y8NVe[92<^ gqv!.-4|?\ƝwY|Wgr8{8L7y|!Wp{uB]%|6v|9|zyb\̗^}ɾspv1w.O~;\]{Ö7{ o02igB6ج83,bx5)N8S8g)x;EAաw&:9 =W9:TY5˙Ѕ =F ݂ 1;?n+gLNbcI*IIb>JRj`)d6@i#p+2`dj"r Yi 83 }}fq}@NkR>չn!sYq%qאCiO~Y7B~:Ӆ t+`!QGD@pUk"W nWj-Fԫ@d2gs HL%6S#vfER$%7~[-c'd^˺,L/{MHU)}Q+zc1|o|;<'LQ3/PDӧƒvDH4+$ggxk1B,0b!d؁) Ts%4#ԥ *g;򧫂ܾ)ֽ~4CiJkF򧭙?몬fZκpb}j2|5Ӧ=Okb`T~ϻ] Gu_3%}\)c]HU/jnx̏=x,$P/px{8"W/s+pkHKĜ~1L1S`oٙi Ls6 "3 d|0Ux3/k`u"zy'd&A_`OQiΟXdr8ڄECrkgNTgٸB>5dv~51XN+scʾ/9$‹R.FJ,n%bn+rP-E n.E5xȆN}2S?y`Y t9˳r{ne] k?ux#NLUw2]4- ߼21v3zLƙISu?Xjn5zm( ")Eaw5-ngX+8щ'mI+"+:͓3'8={ ވ8g׀ٸ'hy58kklv蠟 RLcZ1l4J P &qXiSAjwKtI1c)x9fU.n#; ~ǁ#/8` MS԰GTu|EZ߬4J놚ZKEogF&, Νy=~Ioݗ X@sEZv`/V d4;k!8)m#>)SI"8>I)'H#hpl,ipCkP#õ@.ȗ} LipڜٌI'Ymp= >lR; cIMb:|yo`yn*|8,ԖvcRKk5,`܈T[#?Bʎ#s(@s :.C = s+sDp"{bqE)&^ƪ׃'Q= |iLQ`^OSJe1)KłE!vpVƊ9a\/r0aBlLh0*2X\Z\2'A̳/X8_s627}`Ye0kY/dC+>mǴM,JlW JS"wL\zd)+Ed{͔ ݺt˞ܿϔ3V=Lwi'cndϹ}xw s7nz%zyJw#SFaXۇD}@C⣢PA{?fp t&c˛ j}^$iXj륇uXi @?~)K8ثA5޶៶]oی%il}Vaχ6^ɑ;vƧ9Lp<|KǟmYp"p0^϶zΆg_yf_`zӆb-^-aL~Dn'⳶zmg`b/-ٟ 26anFvuԹ]Zݣ:1hG2 bzHou1VhxX{8}hX-G)?34Tw3l^-I)-C?OjqAZFïum4{P/SH?e(6]A Qq-}ڿ7{{fn:[V?pg\٢[jL?'ߤK/c O!l>Sh_ckmdcw`چ 啶4ץ?8_/ \?eDOd{BG]Ŏ8βKy/qgCX0dNKȞ= 5Vh͚b S-YHrp} ]M.vMChM'2?"5,.J:&@};`''fQš5kܥ]_*v?Xd|$͏}t?|R| 8T} >502~:w &`YӃJYs՜2LRH.8Q@ZÈ|`A< _}y( P6&u"RҜJ0yi*I6{C(/VodXBn4D7 ԋN us޽wo[$KmkɖM#ll;n˲l ԐdllzI;!!`ЛK%#$OL6NT j xt.F=}s'Rt4iΙ.{38%Z̉eBT  Tztu4dC% jD[AqxĉF7CtZ?9SsO6!ψ}0~1i_:~8TTO-ٞlw>sc*úE-{ƅb,sYihF$]r%v5YRU'~1($}Kx>lmO<&v}X 06vឞeױXLgɤMPCP0,!2 OEO͂LmdvsafA,ȯoyΞCkmfWmɳ0#yle ؄J˸MՁS)6Qڿ!拡pH:׹Fu4y$.Urp)}VsTdu<^8*?[`5TAe/8c6u.ב8 SpeQMHSFSᨩQt ;Z(G:^){צB §~ Ӧ 2okG`B~]MGY{e*yxX!߶e:K^?3@Y,alFlȹbyr]ROOb`ȑ8|%o-":$`[SC~``̓E6ES[YRץ-|E[yy?oAΞ8r~mFv8()/rXb9V% ȫV,c9 a+b9zw5jHs'ᵀar̤7ϤLXCwFW]pN.Ey\sh)сJƻr?yZaB4A.&ȥ rw L'_NawʶU~^ˇ/Qp+/&dZxfS nZ!S2^fMv>DN:; NY+wbxfouV#͔Ŵ&w00 rtAn^cyy oM߿<><;:{Hm| gs~ f?M5K 'ٲ)X8pA.ȗ/O!ȟgrg9EG}֧W. 0L1L9 倘L; fGKo>F\͛ 9\`?5b1*4a.ˠPrb~~9܄"*NYanJ˙@&ogsPNB%ȑP72G9 M<,'ƣ!ܰkb #PW*޴-x˲ Z?Pۖɢ,M&y EPʡ'Eҡ'IFcK{ՂZbzOl-۰Ͷ+ﲵ{mv{ V촵l߶qvL$m5pMbwmnǷ oS- oSGGSjl}%C6-m ;m vٵ6[|;3TA=句o6⫶~]vId\--)B?w,>-&..B?KK.*T"-Q ,J,v+Y ShICXSAx=̪]lQ'!GrP4ᬗXwRX}hH Os_LqF6uQU5"xâ!*ų<V+r0P%,Kif7N0eT,(GF10JgP0RVu &Jn*)-e?XsL<&}Ar}ب}a\ka iEPkK:ўGQ QSM^` <Ã_0K)1rtjQ}4 9=zbr ՘ӧ+mMtrRV@֑GQ\bi㌲-Z9T4H88qf|( x$D\$xYlmD΢V_X9jUjZT;UcV߄ig`BFNzwynzSЉuThy{]!bN+oXESZ$X"6; 7۹=EU[?2\;YXhẠ#ŏeGsϡ w[/wUGz w-}Emjѹlk%gKۗD JVSG3p!{j#Ȍ95ל9>?'@籭XYW9E\.D'n l<#cK ιC f &"WT|>{Aޙ#ȟ>? [/j'ZٵBy9<ș.]4g`=gB=0W inK|\9z~v5y!kk@fAan1/k"vB|A?_+mX5D Ց^_tKȊ{|~Z9c Y/-8mpmήf?-eNp<"PJ*W$FJй^_`iq_ LnO o˽~z셅T.q g-<4!)/za z |//Po-{ r~9|cڵu] :]k/$N"Q-QW _3}QH һ϶E>Opϫ[ϲUs{}_]vk -Fc+Nf,x/Ցc٧uZ+l޽ƗSQ`*cԇMAcWl%*.#qU3Ԇ9jUm˭oq?pbAXvb_^.w?/r{/]q+,rOP/gJ@@0 NC"~}zL,tjQ/J.ܒBh]"Ȃ%,YR3Z(izτ|}oIWﳈ Գ <=`Pai>߰Tۖ O-;K_2P~U:f/N~j!A9LX}!XdBX9!A3慢(L x=Đ8N|_k:׮[uޔF?qÆM O>yީ^^ txX"Kaa(V`lVJ;= u p|SO91У.4 ?%AtYӸcCW`WǜUm= 'v 67*ޮ;mVm4ԑs[ =cBbC^ȡU Zv3tcQ9ab &;Oz 64!-0  d:LB }PP{?AA@ T%Gsa oS21^ț2=Ư0U4/Lj]0o@Em`o{{5_qR0Ė!ci8\pQhbȐ#o<=LH|R'"4h,U-5F_Q8uQSJ0\<'80t?頦OL' l HDҩfi;,29fD!H렑{O(14AY r(+'X*W\yzkvltE)0ֳh} ZU,x;h_eov_`.SQAcI. UU 0S6j15rpDJB9 N+E^ C QcMX3y605BCG{(*x ]*\8j:aRZ;{ѩ́th090q),9ENS9=~ ɡu^Q~Z`C 2xV  [RԠҤ[)EGQo^/Wլ]OqWz:Wf9\:[AQUӜ&<ƓOB #6id9p?YgdX/<{AԻ)YϘ~.[>T9*}oTe\G`cgs(-zա<ǭA] $)4 3FM 參0T14d{CÀP B{{e!&ЉuĚ8,Iy. =iuި@SvYeYI)5 FIQ5R˄FSCu ]!aI7KiF|.JZ%??^ԝ.ȴ9B?|FwgL6?-̶-,}*9`tA=P?3|>,8{{;fu[l^{>Au,Z'c--K}cNL  VzymkNNq?A&ބq~$)GA'{:8uxd^1L@_bTbpY N.$7O!Np6h%h"pULOpEp%EeXM8ccUIqĸĤ+t3&,I'clZ\:%iZqxa"Z)aH=MwfII5FNT$8Txp0=N,rb ^!D>.\WVEݪɚDܪpʕ <:LY\/IKo8!pBǚ Zs>Iz5J,@- /v+43aBV ]ԍ7P}>D]>D->`=ݗl%]]3tE;ziCEZ*@u!ËZ&*XC7xqۗZDg<55e|? r _9[*sK Ou RO\A5; U_Av2;VIHgԵ˷lۿV-ZMߧ̄ l.($"H0C^G c|Z(W:_^1U/. ]Xu\H:`7 [.jԌ9D32QJS0b#jZ4ވk@a9.h.NQ2W\´XiVu17M7vҦ-Pʡt4TXCfMJq&,7I)vNI[QY(\fEϑ˱)YZ18NOI5rgFE8q_?Bk.pঋuWZNRSϐ?FXVjDXlb)Ej^h2uo ȪXJT"I;UbT9K"ͱLa; Ht6)PP^^U]XLDVj(o'G5< !(`m[KOJMYƌmKa }QJ0oCa|A6mdºCyr ?෿#.7|p<_'B"vaչ0Ԥ VnҚٔ/1TGxZLjc ]=UQ%i\"EƫP*1 < ҿtcaFAƝWq e |?9-X ҃ϻNvt{0?p=t%j} W-^};ΤQ>hNy~ֳZ7Vy셾zo3S* 519ѱ\tO]Q.[pDu~^0 ҽ KCqRrxȥ.҂V^K.;Qzԥ%yXK'U|^!{iYD'vfPQʃ\RQ+rbz 1p]yU3 B K(a*0ȵ*n;/5hXrua{Z +.e?v _&K<}~`!_ EIz"zնSF-]ڔ.vО8B * zyaP催\ ./} |}md@kgt_ӊ 8~!9P҅!` Bq@x C\Qh\!+YyE!W]!+y ?ȯ˂n0S^xtecFY`m1aT pd &MF%gL|vFHc8'M~]<"p6dP5j3F * B-JP'z3ޗO핅|>JAڮd_c7]9z9}PN? YlYmjO{W=JUpU!=\%MW U>v{'Ns|Q{~NTvqj"χ;N  x`֡!@WAȯʗ vg^-YW 2xuv>7+w̙,Dgh;48Dk[V 2W1W1N,7r=4pLI|Cߞ_^k)kr 7\S39Ogg7/{B}`$9A}ngALJ:{WumxKqy]@~7).+ʸwEEaHuLar7e2H8:qE0yr+?"*TRPգKj"}ѣEPRC!I^92Jpis׀G/- z/F9@:d\E>}yb*!叢@M\['fdT_[(@ӵ;?RE~Nk:3cJC/D_G:B*C)t^/(;/8i\?%t'p!W!b(R˞w |'1]j' cFmB} s@s@d269i) AKrAn)->o^6^|`}C:&XI)AB;$5߭|/fVA*Ȍ~0+zP.e 1N$6{^ ]QLaK/5! B|Z϶ VA~SQqէk_w [ ȗP/;1rr%bay拂h7so_ '}a!o;`|6^wy sםw!+7v 4,X`usEQDzYVqsκ.Bz~]H7s_3333WM>5ts)u^u+tK[t%o+cp0rJsfruE$?};L#@?9c#V.Q_:j,'Maia B Vf Zj$9FR툩 u,WgΤ2+J[8h<G h2R%KA` 2+e0G͖u"1Q5! -!H->eX Ab?PCOVwt5>y<O =s9+8BPAcsAy~{[U4, PkE+1QdEn|`scAr ;o 7 Bnĺɯ/]#>wO9 w6NɈysp]_Ok%K/b.Rۊױ -̡@%䬂f0ڪ폻F9V ^Qxx~ א&z rK rڈ0"^uXh1 c`¸ꍛM{SA9xӿ2aD'??j*m%>,%7 rͅ7|Ntu4xŚD,ĸ^)Wqn m"H-Rceo(ۜnBHAzY3_d˂%A.|IK< ^?2 ׼ }Aj/+d=A]A:+]A G-o o o 2[ol7A ?{^yA^ $MAdA"{y9A|N|N{dAnyFYӂ\ SO rS=%d㓂d'9 AO゜ ?&ۣlTcGAZo O}] b}]o|M_D ?,yw n D{HAAy櫂 W _[3 ]|~ w ;f !HA~v W'H}W3{Af#/䊻t ݂s q %mw .AV%K]NA~z O)mw rɝSНu !w2p '!H;ym mdvA...HvAi &ȿmmܰMs r6A nvAnvAy O& 26AVA*[! 2:6wt`[:{~ήUL6mj^+p JqMoTF^klM/>{L|Wpk3U+{7|wFۺWLiT;2pSuޔkz'7L >a֔n_¿;CCs8;{V8h\1`G6lhoYg`y"~WwD4v}7cCGZA#3}]]W}/Yյ]`gHf۽n=q1 {pѻ,XYm+.HZuJ:)ym]F4stGu,E=6 vuκT޶n®h[}Vॕr:6 ݧѫ:;Fj%IcC(2 CS #Pz:QÑWO+:{=@c/i+FV@q'_쩮z{::{V.Xn[ Ds@%߱s`c1zQO0L%{:я50_|x?z:F08=!ǣ$G;Wq9FH4ſ=#F#DwTFO{coOhs9l5Z4FƁU~]Y5utw{ItGA oq7jscs2!Ro#֭^=FGGӔ;G=ϓݑsj86xŪ{l tuf3Ds9:DviCttumHxhwq$1VXEo>ޱrLxY<ٶ'1(Ǭ}mcpw_1 }*Gy}GGucvw[pֿf,tQGwSKyL( +O{ugOXCR>1F{[ڱxe[h. Qn[m`pTFo׍QHi ht78+y z׌֌A%Gr m]]ctX~# SC|`] I\^#lozϤZ&Oz,9E½wtĿ{{pՃ&<4)+߱~cՇeә4t۔?oG {>=4L)z@jxs]C\ݙu~HO r7ܖۖC6@ioygN ;wC ȶ frkK#@΍[ișL׀l  ]f6r^+t $d^/lEOy/]x<~';ٞm;A Q/<;;~\TKQz7gٓn6I@X2x?՝җLw= ]3i l;wi H86_>WyJ/G,<?@{'hyvܳ!>a2퓟<K_@ދ~wsĿA@ls}T7yK;@^;GIvZc@edG_vsfy};صiHdWHO/ ?9կ[WdS}0(2i#>kW4q$>.@#p<1L5rp3 aY@~w׳sH{z90#@%dvd~W. t)kyv jm(a7҇+* p H M#j91;|~s@^O& ߽Gut ]G4 z3_1~=;Gm z@~<YAM>O9:K@NIHr{ Fws{GQm5ٰ!M- bCP" EPJP l`xT 6!AQlb,@HgIHz=̖ٙu/O~;NޑL||9b=O4D\Ue*|-&C)?2 6D<*[f"<;"yN1[Cltu E뻸rct">j>⠯[Vk=JSlأ8X)O<)^~x6ϫģ-U)fDK>%QLKBxB#"cX 66{ܬ8b -I&I0 GbY>gk%vv~?rx?oBXb' Tlg"z&"Krd"LD%ɅS ~bX_'&bPyhg:D\.t]; B\u:dv C ţWS&bT&@++kHM Rs8r9*Rs9&9ʐRC9d YC=$ɉsHdJI$ \{\fby8|Xh^h&2/2q x1J^gQc!)WRLqĈ}NOʨ_lį7va!ZZ$b%.(Q*qyX8J)Vۉ-`'4Lbcfs$^4X:O$”dJ",I$—DN"* 1b_v11?8)&SLO:E *OC.Bs=RX$I<-Y#Z7"{1f/w +4 `h@%ǔQ +GQIfUx!N#?bē?9!#Zr꼦<"k35bhgqߥ}=@ `pi( >$V p8x8'y/KZ{^}oػ'$WXW{zO$>H\"2zut%bHF/"pK QtC_!MWbc%%!bI| qYyu!fK\܅8kǛn6z"353&TbgM,-!rz6 ||&&ٷGT>G k6Mdgga-pnv &b noinb{ gPL3%ϰ4$Gs <J\ 4{̖:P鳳j] K{#` g 5;m^&3QmLԛ1 } ahq|℆ѭ5:9=D9D?DCCDڡ.C7 6m*xQ^mAbqAbY4H|#ֲl5qjyͮ&nx5qċWK$~d5t\$,;vI$$Hm'cǯV_U&}V⺭QLxs ~XViK1u0KEģ/%ʍ>y͎Ax < Ģl4k$ŅbBDbNbiӚ5nͭhHDK*2 W*H}%C(x(^?(-= @',Z=CdNc]6F7FNY5۩{a]nF]*BxGsD_ڠ{]k3Voe=]Ir.=%tWk:!ڗ/4O45#~ǒ 9l1N3(( D>e$,Rܦ&✦iMNy-cXCTEէlb6fbmzt 6,4ba#HFxbF1}@A!娯?=M~M<~M~MqqUn;nbMlwowp?}_Yך8ﱱ7=觘:fXk= a_'Ef pY9A$qYhкѿpgɤ=ڗ(W' no':FqZb3koH\_G;R]rEĺ.bk8u85E:E"鮙.\W{st^ !bXΰFH0B mD(VͪSi힥b|;qN;ȾNg/v vb}XmNle'޵o'jvSgv Wvb]nrw8r8e±AxAX V;68MĻQ v:>Cs1Z !rs%97GrO?QK,XK[Pk5umFmшZء}zY#n_H;бDk1|I1ŽPL_|$e+q[g$nkŮ.ם.nbqET^t/Vծ7]F[.f͵E|Et}"v~v{] 'A_I@"qQ1QbνJXRO%;SLR!#%JK=Tr^I9;ΈsNbs z8""Aqu`` F:Nt8F9;qs$$1q~/;UƘ"KSwr';^w%.' q-΅Nnb'q~'=$s.uO8te 's8;η;NYrVw;9klx5Su:`+e[%<<͞=m=BBq.?=R )Q)JgxͳϱѳC!={O=_x3^w\ '{8I9I!.R.RGGدWMgsL瘈SSRH%L}2(K-K%;gw&ngbVhV81|R!#2Pg-[M),DBn?N,ՁDM`g.@)@%@ UST-2O:T$P9["ԔmsTīxrR 9BtzJd^7y8u]j7" Ea˞.w1x8Pz8r!k!jE-fu3CgCׇ;Bwbk9X9D H$B,,WniN&lX6p8.x>_LLllll\\\\||||N:%$$$$&&&&%%%%'''H# Gی`Uǰ,n_h B,bd qeeB|n,\+Xa[c#jl_ڈlӰaH#1qQ#qoF(jD\tqd`"zF >0zBhN?ӮWi=҂{ 6ƞܜ`3>PИ5'#G=Q)QYhIM;зix7ܦIM 7&j4"(LA˰UN SXeNB)T*j S b3,{bW>ġHA] ݋{ >BX|2,L)Xe#oV*DBY'xNh$Gq|IDO 4>"q8!:-봌pJ-[ʉˉ Ⳋ*TEZQ$L2<+^+0ueB||߈lW7^ܢ  [g/ODc)7/M(%BRbARbB cǼ(|PSU;&@:` P #B7㮐-zőElHߝwu g3CG;28.KNrltD|DAj͉M}:_M F6kńM l &h5jS[}j:vv 1V5!I/qmD( ۈExC߶Kc;='m'&K|v3wGnY8+<}_bCkDH໫N^j/piIv'ܥnMkFL#p~+v6- AL$S0q(G^,W2<bVسD-jAߡ-!"C sVh'w!tZ&9#jEB-kK~cA#1鄣"UX k/vri;9u|n'"5n{ qYZ;BXf š!bLxrXҥV9]h]K'ͽt_D(/#81otqz<8oA|޺<"R֧B:!jmo39I5>1;cbco]{wcܸqύo A3Lx3Ϊy晚WkV׼Yci[궁 ve;;u.TV׽W]u'֝\wjݘ3Ω_wnݤ)uf]QwMݍus=YWQWU_]sov@JG$>#"$G xp1\qĉGxLd}b1Mq%x:E:V >o  ]Su]T]K zu*qmTm=™a"/&N &XᔬYqw>[J,/]YJ^>w5X6PD!cO%NK=;8'Xb|XbJػbűcb_%^]KTVn%ފK|fq∤w#qK&edef˳Wdd&7foeMTgo&><`Wz*ʄJ"T٭^SI4iE&M)4Ub4$fMHlY%Alۡiv4NhSb4%MH&}5MW|oT\YY%nUoUՅ*qzJܭ>O_DDRX';`jGĘ 1.8.HLNA8RX|3Hl ~$? $~Ap0qAG81r!?˘7(0<~,1u!Oǘwh!5+F2lgG_qqmƘ;d_KhqC~FLB[Z*Vb}l';f bslF=_3[}0p!C?| #OtzɧJJ+*~?‹/b+^}mֿƛ6nzw}o[~aͶ}O?_ovݞ񧺟˯~ࡆÍMbWTUnMm6y_<_yC9S #MU{Lᆣ311|7`n\oӶOݿ+ج a7=5ſJ/ؑw֢e_ uS%T.y맂+. βlc爟 ߾FDr@3-DBXփV|vd)>bj8¸.K $M$$5'ٓ#22!29 !!bd/9Q"&=%bwQ|:~lKYs[oE=Y} *3h"nDPFx4FFwܡޥKo7/6f)Mle^np:z;98&:nvQxc&g39yGo;M.+ƕ:5u.=rK ]_]&>}j6w{gA2ϓӞW=<<'znn;6v\cŮ+Np'^8+1<(I . 3krVWfޔ%6r #ryZsk=+5 i(h0̦ ll1VFͰPbx!SVd|JH 22Կc_Pl3ֱ$jVۉ5WuP7Rh HVzHcXW1CD>y=k&l!٘8CbևQ;bKs}^N=ATe!E ĠY7G6WE7̄)K[I.J0ZQy 7,-rR!'HEZ$nO$v$H$$sa@rNshPqgn)?ۗ QncA~4Wk)md-Ϳoϫ!xE Jj55^ !PClB>ۈ~!ۈPmUN Ln'?N|)DY$)%NkegI\TK.ZbYK-ycc6mG?rHI+[xPCߞ'WOJ0V\ WD:)Dj\ODhEH42xs:s@xHotfWzL.@k&?kr]IbԱj0=M4T,/ԏ[fhq}:v.Y,bŭ?| u1b*}lb=`#W?* {S>>돋=Ww5S3"T;Ż oӖ*^٪#wQ8GEkUI=0V:rT ~xXg8P?WuQW:ՆNNQׯkdZ]wݶXئҨPeJ#KqzqF'q:(QLq>(GQLTG1Ź:UG: VG1u &&li4⥴ӈi+ӈ4bWڮ4bYǻv]ѕXݵ+릮;]JlaWbW]]~ݕ] s7K7[a7bXa݈)ݦu#.vY7bCtbw32> g4f5גwQEM`mFksҿ1pϬʵ)=}38bx!8x)x7$^׉kWA JbxK,H_rJ1u<<!q/r2r-/5jvDCzx^jHy;b\߼-tE/ʳ݀S;&ʻ'2؆n?jO- _E_Eo&󯚷D5oW~ H?RJn.]Nv"&~B`KjE_K zJAG$6:"oAG]7; R_5{ChW ~~^?z0 U]GpzTGmSZG(w#y^#^8+C ey>ڬX"GۼX3e,K>r@R8}&Υ Y>ќh*6w(#r4V}ܷtE䑞h}-ʽkx <6G^kVD,> _ {?k3DxdfQ-b/Uw R{h{GXօ(rrbJh\L33Wek2$ 1g|RQQ"%b1%#hKCpX4Jx'szUQD&"?R6))o P99הDDo}g4Z&!j25iuqPk<o?J9ŨGcB2B3B^N./Ȏbf|IcU!#^h'Nj'ND]Z{=Q:AXro;u(xϡ8Bu;9iʼnS*Nuu:ֹIoU礫Q?TTUk]U.E&YnK%"݅SEm~}o=,_όA>}gsb|qR1wwX{þG|Ċĵ6KܐHlJ|+HKLdHdWrd"gWpR/>)2$EA~)ļS(I)M!*RMS~L!R?K ]w1=`Uie]ʈq쥲^x2 =\\j)WY zU FU\_+~ u?WV|UY+wW*rO+T:N@ ʡY,yNmX|nق=FK<,Yy;8Cι[0}UDWA7KA/߫`w$ζxWb^ycBrq 1;fPÖ0a D|8! 19lE0&3 r. TR- <С0\+Ҷai4•L#KFd]Fܘ-}"IQ+«z߻nzu:Iϫ FTˬU՟U9WAU1M6n2)ôΤu&[L= 3jn+)6T xg uV5HDM($"~APT0%xa(7˃`,w2MЄ7ʎe]eK\uURcV]Yv0;ۂ%(i=K*YJ-Tq_?KMXRZ^ҕ ά,L,;UX=Km-/T۟sE媂Թ C}PQJW !H(ak g&|XJa" 2z5?/+HUc@@810" -X!*aNMos0o4/,\碳EEr̰\*2`rη[xDޱG{&|=ԋ❅j+ɾ>7%| >U0D3=KD`2w1/]@Bx51 5C Yi};]zRp>u8hS̱aͱO oNBCtQD "Å$Z=$Y*9%N rг|ryEϖhh[ӔD$7EeEIM6=,5]ܤ`FhFCh _s"E j&Zikj+F"K!?4wb2G7qtA)*akX樷vjʬ/bzaw[=[z"҄KN# ?$Ə^1կ&G/J2X{c &B HdHčeȄ7 }M[ʣ_d¯Gy:Dא9 шmDm`b1:k?%@; =x/DVWۈk?-G.` @F̠{:jjJt~댭_D[%s+Q.[}CeP~H-}U>~;2rbW K|z">#}/'zb-o'~طȑ^biw%هȷ$q>D#Nx>EC=L~!j~❿?J\q@bN\{NH 9@x6  AyA"_ƒĩ9H̐ O)m=H얏7/,j{i\BG?TPg^Xu$6=zbOoev~9X/էa5bc0a ֛(Jghgb韰glF{HS`s^$%@m2{p=aḰ =f  'ܪlYYWd)uUϢ1ˆYnHin)ѫtVK)eRW4XPJ#}\1E#Nt#ӦٲЧGB6\#$磘:^n"Pd !=ȓXy) 2/b8kXf6ݎ⹧õ2=>"Kɣh}VO }" X&PLW&/KH SbudWdsr?;w 1\Df\!>)/@\#8;`][F[+,{Y3Eˉ*cr+uokٹs=GY"VnySn>vtA&,#\QD ƳPrXF%oꬖ"3alNǢv8do{Eι/xFq?$0~~DwMp]PAQ<9KEDvŅad8Uxq،{o4{d752kɩӍfF"G26zW(ʌG 8M ~ݩM7)@MEMYBQc#s?"c5A:W S5uB:.oS#dC~M5mz^O6 :dcOۚC$&j:I~WbcË\A^d :1op7tG10|)oH2YJWUW+j(?Dvl fbXZq-= ./-_[o-Y,?YkU Z,[Hوta|_yvb}7drek'7ɬ7ꬵDhǑDNm R Cֶ%:rvP_o[Ԗ*SEWyyGtxGS~NNtr*z8$E}nk%:@?"_t*zLFy٩+;==((yCl]=fyowf>b/G#&""17[o&qD^bD3H$Vh?O&)"t8?O ŔBI9>(NBjڧNNӭ6}S!/ZA"7l9Am1v1ֵn7ʹW&6E,ݍOB(oŅ1/7ǷTu1iV4izu駈8tMfI13f385zRjt\hJQ_> k(fh&qď7:aå;G:hqW n-|xT>Cj%ж#f4+`dVZר2Bs ~/5׈5V1BM>BͶl ]+j?QāNpF+u} u}cc ,Ǖnr3^:["z _99 bHtvBsS0kE[rc^w_Y+]u.+fM(PrOuw4; >s=9RĥQA׌vkT *% )ћ93ī}>ڬSq.&U)&/4m4hko'xGƽI9p%SCW#|\2=Kl@K'A8GhSS ._'\]DDmEʉߔg "ȭȫ H= ;nX^ѻX_cE&~Žo*TSe}D) T)tvlWken.EVOfCA1$|!1:;;nXNmkΖN2vl#|^RήF7*gZ۽;4\^ɇ$tieuoh7K3[e=b8zdB_^Bۑ?ToУiBhgwޟb>RI} WEϔ8(1vlD{K+Eo鶁Ul}}@Pݧ#ND X/x)xE>j<.>yQO6>x~ 6Nu`/J JaRdn?L@///l{*;l 753{k^kW s})@ @_x3s #._JԱ6D5dg0 z>!_=˨NЇ/s :Mm.!/+_8߂ F{!p@!B>! CB}8 걻;IzI kE<bEy$nbCFqd`ЂIPY-0IMFp@8 'm'ԇ" =N瞣g|,q9(C28! e.C2Ė%!U+\7\{O?!=-YHLp]w\EpI>~PCP5f{3n3aF} fJP\ŌNEE ĝ,GX2Jgc;q{q؏3!w hwܜ=uׂZqpldQ>dys\u g5ą1>ܬss#@{'7,p#(37|p#ϣ y6 @ǃ<<A@6O>539ן.E#/yx˛Ë|:޹ޖx=|_͏Mǟ7P? ` xCؼ/PQMw&hzBɄ JF@,JP#@^<RK0*?+X@o( #\)ar}:@C:pBJ_) jz:32LLLdg"1S$Z2p6N&320#gg!,,gB1mg}BYْސvFKlxe^NgFenlJP}?)l0yrqENo@vei!۫oH( @eFckgf(3@{Fgl50?@菙p~YY&" e,>EY?=4C[h.Csq&vѼIzZ@%6|@r q Zq_hSqs }⡍5Wst(q@~`oI8'=a`G# +gI:zE}=6hC;l.NC8CMGmyVHy9[l.?8'ϊdE@w"T/s+bgC*aWCplHd6d\SgkB;=o 9NΡm@6nxa1p"+{ɉ0>gy0mhis! 7G'omDs/L{f)ϡ6\6Gyyh!|MyMcfv>򵩧{n{ PW >d-dCsQ?7;!.woӤl{W=Ӊ;|13pX q/ ~q{%Mw`º\DK ^:"!0w{j]p# kkvM- pfz Ei(; Xx}[;.nlLR1􊟔0JR3v* 0j0xIc U'^ڔp9Y;0g2͹K=zsy' ^;WXHs!U8MT-[J\ ЋڏZ, 'NWN7gMga0'K(n ~W^^Ưk]zVBop\ڳ_pa<ʅ7tW=UםYpy7EW`pg!&S1`u1&8n|L3T돩<36L ^b8A _ͪ1{tC;"0Jv3ұo{1up8YI7n=xN\}?74 fQջjs1oR1xyJd7=\}@.B__ȽY+x͛4_yt-fYwW)LlP@ Ԡz$y4@@ EFUQ"8IJyI*')0Eyf-BIc*K*Z`5es8zo8O{Fh2?G+FK$ihyED3L|& tSpl|M&%yOSswrSh:'PdV9[9pH^pIHp-1_5yocm\">zEO~\9aUiz~J_H@$do0,="qcx'_Vpߚ"@ U@D@:A9DB2Wf Z=iv<#fv^+Otsge @dO([Ь}s1ݿwi~"ȿ'{u3^z>Il1k=4{O2Y>,u)<gG6eo\vBF?ۋ;o,ҧb-O>M~wi> "`#5Ě J}`HU9`5VIԂRMR">x.:)y!%J,i DHH(|X!i DHlޏ+Q@}OHR @ %Byx? rR %B!ţ DHSR"xR %sP CrxjC)RIL>à y"oAJgz^Az>.w y$ m$UoI<eאOMoAz>nK/ Oo?$W - ]h[ ky~t}_:Gty E0Y^Kt= akI !oHk^'__') G׿QJI!9CD+.y2`ң%6HTHrh{F)OE!+k%HC ~M/L[)T'G.p,䟰-1?~_2#ݗwgNݗWQ?GB+| %֟+%Er")pqž5oZdeHCȑ пU. ,=rgLz /R\E?r,K-Qh)"K[X~Kll8E>\ /+ld_BK{>aG >;N\b}]dC/?E3O,R_\!ɹCI8֮ĖϞ%t~ŕ?oG.}ߘ%oYb3E ,$9IȣH,R/?|c\E?/X~Z8~^bzZYbz"_$+PK |IE+2E4mȣ4%ߤ p(UY_\W,,Y[&%_ 2o %Οx.1d/l)p] ;~^dLe"'G&-/E~)dQZaB±woq}Xd?|~RſYKDeRzNsK_CL/^HrސG9 mb?@,vIC o6dz[*I.(M"&7Mڹ`77_sqAE^a/w`ɮq _ w>$h?l_MQ#PHk=z݁JI+`/C}يG saa=>!yci G cO~Ϩ>kZGu0ta:i?Av?\cx<Ƥ߂ S~'a0gL}ĔscMLybxEvaާb:Α*_t)08_:;S()G492#Lz}^2(;W.4_dG$OԐpc:΄0f2R3 g[I8[b+ZNdWPapNy\~=$#ZAd!΅M$C뭝 ^7My1y>ti|ǖ-!$\13h{ac=M\bu `TA &D0 b$߁ 2 _ HKH"+1{i.y;`Y!׾;\oc"fp_S΅;D=}Č7C,~10م?'3 Ō11^8q3~|W5kĤewϏ?#1_Ʊ_-?sŒS1嗄bkdzysƔo[1k_x5L>?{Qcja}xģ+滶/0zB_AF?co~ŌEz]L~e0Շ)_ =R.,ϒ d1?V ~4I^1F >/^/Ť|;IU0UcsoŸrL}`7z -,Lzqʅ;lhaz ؾ~Yqש0/lz c`i#Q7cO,o#~$0-Hy4Lɓ@ Fa}bLdaګ-Fq :ĔfaQj~OGl b?O' ?O' ~ݭpK*BDWiN4bBE.Duqyunj##'%Xi˃+Biz2#%Ͷ'όX#V. 2i|/L7A~¹Ud QBAa+a P΍3w:n–;oza4W|:osp&_qYi X78>8|&dK٣ yqN=cn JpINcCIݨ|\J77/aBT`v WeS)T=g?<<\suE/2﨨sSN]]1B[*$ΈFl'0age ߒLkbHס<w_Ζ2t;(Ov]KۦWvxwwF?Vzkv˽E> Q:10+Ӵ;\nr11coEI'lt?}z45i =B*hMvmܖ%X-T|mv!ٺb<5F"6vw}.70d-g\m`*rƾ{dҥÔv7bWhKW7Ygu}Yj'AyDR--=G۪}$2ƭuoGlupR]7qotXۈ^ şI 6{=ɇ#>g *k:eCXGrW`x68-T,m+O^rů{fcH6S[CVʉ}?=8zpNݹ6^~+U_ ,r}xNֱ7 L(^+k|9PaS:ݶqµ7-"X;9vۥ٣wL Cn}jW>.To:7ko.\B8=$غ>d#*~m 2UUn!_i62n^WcCgHkhikB&'epC)0.$a 0VL*OfFVlg>E!εVtO3WW;26y':+frN];cw&9ufKxzv( /xsSG$W[u (ή?~K՟g/uA:7WUyF͟wݲܖQC#A_ʷ|>~h~+/nUnܶDN)t \ tdD';Rl?ox(uHwg^@ڪH%;ö\L8ƕǎsmHbj޾`g:7o}q$ʦ:#Wy}c iG]wSy*^H-w-8:,kpvqy>=FU*ϗ~5M~y2gCRg\ۣTysM ٹrhq)gj##&.%w~L|lixTN׫"ބݛ6(hxH-tF(7Foolخ%)&h~e䀫}Mߦկf`Tе\㤜iDZ^h7NQ7f~L7ZP(}k^% j^7͎%,6q)dXoّci %ml=lv5}Ur ܤOK~3q7uvfzꓩ#cJԢU8|>Jg[`WW=Axs c:an ^$m$=mJ(M+Dֵ{ZJ4P4ڴ.'.Y#-]l?ҽ [ܮp EЁ Ա\_l>E ~̣N[TW Ҧ-g^)Dm34vE(7wb3ewyzsLhTzokշGg8NWn ڲo`hxRCo7޵S8rSDȅV:o^o-*ȭ-ME[-Zo UN+zX+}27R!Tߖh6/v|ҽqAC:aTu[3Jw o_SGy"j,횗 Tgɢ)S1a#BD~xü0@SXWU߾1Wv칷53of4x|1,_o dŭ '+'onMnP4^Hodͽ]#+~N)<9qWN7;ˬ'z4kf3G Ԍ6$8l*(4q;g2F|V}q1կ+!_2:KRdK'p"7jINDŽz}B4s6߉Le:Wmߛ5={D܊z60#<CL SbRN|^YE7"=mѧe_xd7nӸ)= +m.lמkm/OqKOk Ġ]ķgy%N|+%]6=Odlȍ5ԇRu쌋5uO xq\r-{9J哒6JSUSf߶oص &kF7M\|M¾Fe^WwnVs͹ʻ\%.rUȞK`3NҲ4 "$[~؜vɓHvA1#\-b*GgۡyyRQ!O{| 67,n>w3~:kbtN,o-Mouػy3@7runzu>ܟOCfq]ZfCˬzuSby≌EepIƇnPݓs}fᬃ<'_My97Œ<[P6`>Ȳٰ>tAe+W>:h:5RfuUCe깆=ϿQ)_vTб>rߎ2:St㧟=QO/ k6 BJ;El2Yo=B! m cpu(\ |#!~Uf*hq,W)%-ʏ=SEcX--䲂7|۫J/3w>d9PRJ6ˬo*h]Ι}pU[vkQ&|rدm&썙d?%7`Qv!7Y7r)ScC]v;>Z`-YyZGZY| ֳRQ*#I gڊPm#Z;],F{Ϯ٤2bpgmK^cuPgp%+#v8jOK-n {}t^G>Q>6 !{h=؋6:H8rzc~ )3s:.WyrVyw[TY#Q&A$WM0{Bh>:WuSa&|Aa?K ?Q~FAd&;:SE#ĤJBȆ#+OYgy c5?:f)t1k6zs'-LxٗJ [eSϿUFMv+bY4"NOB]ڏEm6[>割rԪ[۲EGmHd#^!7XUp1^y".ѝ;ʬo/]ԧ_@X$ߞOqeG{wuM&8~[)~k[]fo}T9'~SMno 'K̊ 6d>h՝0u|͋!r{w3pRn/e X?g^0}7E=._:Hcxq[fG睆guϔ$TLbNvF_ WS v&eߴOp6&r$)OnW,O2|։3|%qvH:,|mZj.!tuTd(VfLC/~b_X}WUgZY2x ^ۙt-Q6#g{LsrUN|֛YteBJMgLW&&9?4-\zWOr[KAnݓ[NC4޾̟\=e_Y#:T+fSQ==Ɣqεq7~XV+iESqǑvїZAnοp'mԨu;fW@e;Z}OW $B]4z5Vض~cXc䮒4t:)G8Xxt#W_ .>CbNiVV'c R]補 .LTz}M/$w(yfbfKrr^k>SYTs5-VUmZ/Y%m uE$>w̃_6r׼k fsm:;mzV ;Nȭy^p"@h<9\4,^Cص=L(K5 yr~egVz_}X1^͊2e-GB:w'+)VPL=dwÒtel&+lgnCj):x7(FL̖҇ʛ˿tqJ/c!lA(y^!qguV-bL8bLف.3f-`P*i%+(FΤ㏟%r[^[]EKW6`OնqɃD &7_{ٹ//)n |R{$o>:䕕^cJy"ŇquyMj|= MuM;k3_gxGP#-j633Ə< I3p٥)/ g}IBe13^6*ٽx~:]՝gʗs_fy矘$sxvUmdOOC  :YM9N~pjS@&V.}3% 4YrW*:(:JǝF6!fvzC9\l6q^%F:1Htޖ Oz* G)嬖[noW2olv{n;U4x6H2yƙb[md^;nZSlHȣ5-5Tǂk v+erCnzk@]n]<{wI>/*?6ԆD\4=?󄬯.6%+OrqkdqSLuLJ>v,N1˷p6{%0V%}^[">~*ϗ|+k7 -VxX÷UT"n/z6œ_S1)۶W_mgT{Z;o^lw.18^|$.EY q~˼$yyްV듈lTV>*O~^9>RHLjcʰ՞W)J:%{~Stq'[MIUȭO;6絹}(]2)v},] sŲ.[?z,٬"1D^3&4l# U zb9u_!15,(eZS[)Xջ~?Mz@d[{HkءK+21eU褺Zsb|Csш#͵g=-x{`r*Y F hbss+7v94]@ ?]1Z4Z/Ņk;fX6gYj;ۈGxe~RI|j}nKUa\fCv1 / IٝߎR7;b#(<['E)q1 WDh׫˝U?Ɂï/c)zM7k>j:kK=x;rǰBrY'!Vb!MeWž'FhM տŒpβp)RG5^u";iF+ ]IEpu7шkL~\36ٯZj0?rcqܖ7N|4Grq7IR;+IU՚>L:'qdY9[$V$칹QMRk4 ;ϝST XS4ՅzU&=_{R E?;F~*Yx E=0Қ 053_Ҙ&hO}>y*ı a'Lz׺x $J3;ՕLp4Rس2|Ӽ1 ciW9R-dթAVrVli+h9.֤ eZ7%%tJF/G} ~y#ǑV5tNfޖXe=>;Aطky/ioqȧi"ɩe~ܭW~ _|3OQ:lS^3kqS׬}}YGk+T"9_әl:`]{1sk$⒐nF :Gkg,qe5'{UDM? h yVw8 vECxXuY9W<,bQQg {z?mMOM2Nr(ܘ%ts&ς&zE[ oz~8s]ަ t$wJ>|}ڵ^ >vS]lv :}6ªoW sFו2;<rXoQ?*RW*2?Uaa[ﴷIZgpn} C9qbz Gk5[Jg+x,-Jk;北L٩]{ rMNupU;߾JUGAt[dԶmggzhmV}>yUAI"U4%Ͼ~)Bѹ}lμ;Zn|ۺNQQz;;ߗWgu1»;3KgWw 贏wwN٢:YdNQ-uURקN.筋d4r;ޮXՍcƬd}ꉃWI|hY"[6Pw *Unrxo-1ܫѾz3/p)=0nH×JCZKx.' ;ѽl/7^";_jh]F;ߧdpV )I$POI k0y ;ݢzO;h?[w6] 0d,zzũ*SJ Lgrg턇]ǜQ xo0& B뮢jY3{۽Uhwi` 5V~6fuO;b3ehv*ƣ5%B_lj6Me "~yf&p1JOQ0lcypkBDʄ{mbr:Ǵ#;Dצ_5Cl@8,agfYe:W[VVJ EkiڜAaҠX+`)& 8If'゘;wcX/%8Sr`mTxh6_q4Ǻe~it3Ya_GfFf]\keDA@ZM/;KE+kW#RKE!IHNӟ)6s>) ?)gefWIK+ʩ<?Έ NYDd2_"~9tSyU_a?`{5 Xo"zS$DQ !&Œ2gxIgN]GZz6(#5Ī>1o3@D8-s }m i7݆5=)B?8,^~?`56N 0qaVE!!: qDZv.&%~Yvl~y^|]!|^vrx *dU תdY+aٽ0}O#ťEF;*3/C6YF7+ cH|դ]+0D/.!ыEÝ5&F"| g b,pN &K#@mK1M ۆM&dpDB息ǴƅMpq;Vj#]'Ovj17 l4s7i~.@iqfX܉99$E\onA#JzjY|O#[aa6=Wvj%"cW8SCĦ|~ ޗi7qo7WbpB:^' Ww[b7aoxRst^II&SCFx}pf3?ƛ]'M.Pg3WA@Br+A\w"R&ta "W w9zbQ-ҥB*N&{č*KMʱ -KvDWZ ۊiZ[Q > JqE_&geB(qo$&2[^(qqu9\3ͰB?gx8!P}wMx_WFdw}khS87&]Rbu{?v S|FOf6_߹B*}2ﱾ6ȵ׮~v+E* 4%!oC]=|*Û>i!|MƁҐ91ĠO̱o$Nfq\gqUXVkĒﰪliAn58x cD?SJ dY~t)[k5<9},?/7:U[ KֺWoX8JNXpт 8Gyª’4bhe_4?AWZ˃W{cz;h/6 9ByhkGgf)80>11D, 5VZ]. fk>vQc[, ?gGi@A3.-pGt?in(F?ύH5Vn0vjOeT7Zu @!! 9Vxz.;$/ i~ў_25#|~ǎ~O笞{eqIJ8rs3P .g' R蝘^1G ;heU#UVnCPŠXHId*|M4=ܦ4X #Oep`:ː~,>AKKmYIORf:c hU_=ϊkRN[,&IŋdG{CY  >={s_?aU#:t'ù?G~iHu7[#|?nUC7O zAlpdhYeգd5   gd6  d^zz?YgգdAVAVAV ?2j~AVuz0);Y0AVAVAVft;AV'Yd5 _0jfd2A>IX2( `Uo`P5~$X& GiU+$ I TM|/6Wy!׌(ujCF_+'x~g:΅j΋Y$lHd3cV5%1j_2Q5`#mTKDOI&J.F/WZ~,a85(Wf qk_챶>TӤh.U 8J應Cġj\_~P5ġġj1u^qqx8TͽPEF{!ˏs8wg[4NHTLoADz,]DWY Bh$!S%!o[գ$j|HH;L_|Z(7!\'cf{h6\a1F OtEcPAf+[9V$Ɔd"$چFī> ^U? ^*EUjyʈWո-#쵌H_~U5?DU_*)b~-kTbl9滔*( W?⨔?r%l͇49N Xt-]Lܬ1Y58<1+Zh}noZ9O aSIvyGVe~ɪ"<|H1*8C&me+l(thox$oH n4߹5K:._C|.BS0406gY~UЄk/-kvOq*1Tb˃>Ke&L4˃F(܉wZ< ?vIIx%dnX~2 Yjl4G:m~Սcnt [jWg4ENeKs`Kqˠfwk Wz_zOO̪^1>7#c5y=Gh۹w|VT> ="`vi:X5W?3?*Yj-]~n?p%K 4,ڇ>kf'UH >$'$&$3 7&,e`qkn(`Qƿsfů0IF>@IrQ&(7Kzˏ+VY~A±2W}V ~2ZȵUX9U1xŗpXVMޒp]ы_?;]ҘRS]d( *Ps̽ETy$J&Xq2|!lj*wפ^edjE)=J2$T({+*itq; 5] ʁrˇ Z%'+)ɇdˇ+\V?z+cʍûKLjc j_ԯyE2(n2h@"`*c8|I$[_>pN8DG?sB<o$wo]o)\ !kX4:eh9M֥A/A*&BӢ¹BTƵWUB>1AF|52;)d&ՍANbxdtJ-#8LQ x֥*?rӯin5)kgܵ{s(Ӎ|yH>e$$}7[%R4,vpl+f9ԥ:e\sM ~^F s poT0݇Wʸ1MJTOqwZ5 oJip{<*|"CsLn[\#p}D6Pu|)zJ _=񒫾*"2V2wn>9]|5x EqUR0>PUSx*¦k-^@BVhŠ{C,?t[E]TpF~hQc2jf#Cy92Q9ˇ_jhhҪ%;.a$>)fbswo. \~bb5g_ K}}j订hnU"z'i=Ц ;1ٹU%?] Cv9 MjW3;񯡀޼R~=WXt]C]|{Pim UƤUNUi>lZ6aπV ZF_Ztnӂ5 6~~fU+cy>=׍pg$gw=bP{ (u|Dz Q(2r.(%vXT T$٠q@)~dTI#2T,RQv T/vjEQ-Yq>BHHPYƀ&w@qbb(N* WG|a`NZe?:xc%wM>/ Xb"$yo  \m '1jTՔ-ƨmq 5p/Gqp~nRGb3"|LVbc2 3L^$~HÇo;{ŘlMǙGgV jcDƝ(r-_=RE,ۨfxMLar wi\)j^M"=IutTm=]l; _ۯLOeX zMոiOLӮj纷pC=nG{F}g1!k<_4` H+ n|TN$ɉI]; cFĮkKw(hW;""NyZ&6 +c.1W)W|݆#ib +fkk& 񐒳47d7`n<]\Nܓu|{()MY #}## UU *Nͬ .I+6x9щ[{zڜڈ7_qOh>P6{Bė踨^JVۢiq+’.pkqDTgNT,G:qA+%d^D%,a6~{XyTNڨ4%5#|T]UYQy1!dpaE硧6q*OŲ6›C'ע=㛈΋0*Tb@9oR*?PJ&T| 1)weQi"*z/\4W+oNfۋM@%ۤfW!8f-&J:y3χr5j%jNJ_uv1 2W'uTߢM0SO &VŸ$ϤB1TT+'MGܸaܡfotq؃]al[_E㈗z2D|"Bɾb[U&s^T%ibLI<̭];*'FA#JXqh0*+co#{f.N*7WSc6n\x]@a ` K䰨dD  r 1+L+K \g{4g4蘕16Ș#jqUzUˢ<^!v)3mUoG$>-:Q\6042+3$ۏ)MZkX&mۈr& &YcN?ѩkDš7uBމ{1M̖A7-0l?fҴ1VyRE0ʞ+"wIBs޴۵v9a g2ͿO ⯮vzNؓ 1|ޡfx0*6+MQY6yR2x}RxLaȆ4o;L9~,·竚wMbFO\O Ӭ b;{sM[):=8.5F7e0lUYHe"W%0ȄdE*~01+UQҒ$u$ "-~"^ |(ҙP?3śDלF՞„%Krwξ*Lu: ݏ1=q/F* 55 NC(/KUX~ i. +ᇮM*c钦zEmdZف9L[uk%,~=0}*3 myv@@pf^6&"Y0c[zyJCf˟cueF1fjup#{>GLAok<+ i{z_{O*@) J5$H|'KLfk$5Z"S3ߨÿ2-lNW8kKS){}iV?ڹ KDŽ) Zԫ;ۭ 7~f15IT]u %x  ~o, ks<[TK\ɭ-BZKQHbnUKyX'~۫0 JJs%o^Fy7n QT'[YOj@5n4oNO *GiOQ8EOmna`6I$_kNT_A# *=K`[;"0+ p5sjᙼg!SA{R/ _q/0v#rhjzjߕ uݘ[U0.w(}{Qn= "YcS&[gvD.NdmD F>OtY!Nu3ƃ|­‰2T9:wأcuïzD)Z2*GҸ޷ռ 7c|֚U|l_mlh3vT'㟤[öZRQǵdb4i䛖0pdY&Wƴ[qCM73k L&{ f5&\8+R>_n\}}>1@:bK4a"ެvBZO国x`)D{x.SfkcZcCل| %9W&J/8Fm hoDJɊxΐ=y ffר_[b]n`ױ)My $1BZ\V9qni+[Mpqf6S+3Tg{5'!̢n酻VDS2DH0IH%2 <_Q"Kgvd&ؓnsEH{ 66v'1&s TySkl,H<7^^BE_-CԋKo4U&*)K˃SL(fYԏ3 te=ݎ&'VɊEɚ*~bnD蕽hsv)2\ Fa@<|gP[Dx%8An3nD Oy`kĨ$Hݦm#lz*:gdߝHo_ : %2#hΎSVĐc":p/lY 8~ӏt(°( [ozYь7\2O 6k-T@Uaԓ٨I!cR~Jš}}k#,%K+XSP%``αUp*yM=DtR# 2=] !bvؠfPeffq4m9mA21LRIaU=FejTt}56ltlȦS뜝_bq*m˭b\)4A+L?6~6ԷKFFq #jR QeD2cLj0T"eR!s(XF\h Qln-4E\W^D~?kqcSAQBrЀbYWt\e:vsYN٨坓L|fO>,M*m# Za/ =,9~ ڋs@*Pny,bL0cl=ͩJ&[.-1V K / Chk,r+Us aV U<9q1Tʅa8t 8!!`-x޵I0pw7mgt2V>l1t\Vn=z J%#k O[cqyFu rY_lFg7=.0Q/GVY[+lz2ΝcXa;F؋8a8\!JCt,~4P{AB feLX<{Hz'9Gd,#6]J뭱rE1oVhk|*_i5&7Fzj5Cֻb]+xݜMYa|Q>uIZcMai$zL[+  ns:/g gɆ)l5/O(wm ۧN*+A<Ì Oscpˆ3˸uYn2ҖC0  ;|ޮ⍚CsՏ񆿤hZ[ܭ1?0Wʬ3[,I LVm=, -42A1,5t? ,V(R_$dTK >F|&lcN\RY>\^W0~" ?jYOB5`J'D936*'5 gȄ_Clp|,݌w\:s8Avj .3&6bh4/7+M=poy2XB'g-(|dr)Y2$O$.{ h3JZB}8F33r|ƅਯi`bV rd"όaisת<W,둝k P }"g}g3HE;xY1¤?:R3'݂(&mV۬JӘ$ǘYd|iT|EAi+W-9YDtzpv6ZEwʶ!@ UfmDl7'S'cWdxJW،8W酨՜%[1))b)pDTA8v ku*j$5Đ Ȏ+[U %sLԡA,miPP sE]up^xB(FYO9ތVQU5Kfy!PKϕUU*T!E< J)T[$c'&s4V<΢}=heڧSi0 *N8J(Ҏ~y Pbɔbk2^(R4ͅU0J,ۛVbߦ 2i彩&H$I`5bKqNᑟpJreG%p{ V1ՙk\M[.|}Ĉ(OȘF>j&y tRd5?bPECL2sM 41FFz6"_ ]Ab$Sx޸owiĀjm;&ŵXj<c6:2%ZwO-46* 4g /^ oN{2qPQ&^Z4CgLZg7#q{7K?-TڧQ*[c zGN2\zs9hFv *0~nzi,9M3N{vl4AG&j)S5Fh7F%_Bk {C *o`^F:pKm)R.Vi y;־7>O8~*7~41NL5̅FZHF*'HQa#mk \PxfK.⸳ ga яs܃ Ȍ$596j%m Tz>G;C &mvic&ɭg$.0i$SG9xN`I'4Yx?."OHQa̼2B Jq m*:wЭО]3v~"mc*\3y\Ȥdx"ٮgdĖtr|6tPWKg0\$P̚u5\(KݪR1EDO\\a"̉.fS |>S0 %0X-^7*Q52)12L|Iu2-cx֕JP]c(1 Ālϸj1o1!Nf"U p%A-+z*5h;e .Zk .ksb,ѕaPOb sBk ,Jo@t>+j*UDkhUG<#o)`_"KLE#mbT4*)w6 `ÔytK5V`TdQRv_maJ,)J΂6v?.^ 8ך-oÜ9bayWe\'hE׉(]1xkvj׉qQ>”֟W;˅oW;׺爐ͨOGȧo v|$5}~)߯%| Sf6>/7A3كL:_oJIm^^$Xt2 ٶhk]$S yӀ.!\-T橘`JF>) [#/ө.W}aKh[ 3uS).NYTi'F^YKqYs6ԙ(\OB2 ~钱x3WjϹ;A#TJlE3PL]QqtKu1ܺYʵ*zH+Rht)mAD\Ye"pسߖQG W춍 2\"J&=êm.9Q"ݎy1aDgb4]eЋ~6xZeovep'+b3L"8C W,=EBW Ge硳H0DL`KDҲI@+\aF6I拱-Nh*ٌIF6fB|+m# YGh81:P!K@'٢[}dF'¬i^_?^MdG͘҉ئ}3Zzr9J6 2HcQv0|M'IS!*!Ή &J/-҆\LWc&3_%K5'F%YC:iL*>/2Cٶ1!P|^#'J}0℮<(fܞy񎫜6WyE#ꦌ770q;+ي±цa|){AsS̱$Dq4+>s~ܻs NFi(PDCї_?v~Lܕ*Ujć< "鉸eI¿(ᏆJV|)v꼌}!w_u46.F6632xDɅ9xwũXa0gDmPA El_iv*j9<,L޵8\O<q|՝wCXWL)Τ?rNFHsmz &b>uN8T_uiWVƂm?6!"UAlq$u-%ޢժ7K4y4zI#%v?vm>ؽ'{s?5.3N&McX'U1\_b&~FΉ0iI{9%n[%Ytt;:X5)m߈V!'P&J#6p/V4M%Lҿ<bD3Q4u,UȈŊ7V=*rR ynd~ĸB_ X%؀M͠;vXZa0:-UST[h ΔYuUo |~*&=iobdKI=Z0R~(`#PhOWb(G b8&1X`T1r,g rH N8(bEE Km@_@BP[k8D)"nzq%:G:AT^5293/W+bD*ǡL H<љӉjF,`vh㠚5x$ܭhoƏ]uo]$f}b61HlEdUEmnX' > -+ޫ3|mZq:hD6sķƔ{xrUT+ wvQ&cd V~GP-|T`^hN5X $[{g@iYxNaͥ3ΜN {)H ]v_ӈг4Wǡ;\n6J3V(J(=Ok/QOp/rwK•\M`W_76*q (S՞]JOMk=hct~tԖ>feWA$RxxpT$6xՄd?rm" 1z<]QNDܓo3/qg[eWkD &R;THAJl*љi[/=y0iwmA{V' ܱ ϒfNf>{MJS̡ӌ.h?%? R6L[LJ ;G\ӹVN9:&2r!Uvg|420R!v|z˴9#qEwgj3HŦI^w74iUOzIv&}0О6Vպ7浑/(*qG:pʾ2:* MT p2_ٗEVkώ6#c)U *$eJV+eN#4SQ-Snh] SA*,i3$or~_* ) H*j"z3DiHh5A`n 6'fݑ^) MΎB_]R,m}F$`e1y=<8 }s|hBYfV;졲/m1 /)>_1f..3ueSesCaO"o #YG>#W^6bH͘QQ | Cmby jd$QJ}]TE: tiv3Hu6֌Bi3CѨz'~]G\2) !+OS&2g2Buk>%<3x %xk5lo $ZDZS4ףhf[rkP.1M)>aMخJ/5b1qDr=_)*]%f/+Ub2A*(PH9fOt[hjpldt_qqauڠ W3$Wq Ƣ"_HUX4XR9ŵ:+edįJtx+%L:N\AOv~^z9(C\!vox8SX (h S$#Le#$Kȑc .گ˟D>;D5?^NOBw-,hH4+{?wHskp~ v"s( a!iGFI#qR^ ?qd;sfWI'# Pq nbpVlBuzhJ=%H6X1Yuҏkq~2hLM4D[6?_Z%^#RNr!\aiB(4ұQ`emAZI’YF&Ffo C8;S8~c` )8J"Y`eQe+ P` U2e;!snf4ܶZ~}#k?+aPpn$穖\:Qy:M WᴺV$/^>Ĉ`P᳅%ry0Ί87XܯmLFɨ"*5\!\L#|ޘi35"ªô(J#D'E|q*rqg@͒ (̩c*M$(XQvgD){ 7!N H3Bk(d) Tvjw`c 7D}p;n)mJ8ܪc#CdJ/ : we挲f6RrJp NSnkBWfCAxoFyz6mxBTar94GnzN*06ɊiIgٻ 8rQǞ3:#[)B*GָXQ"or#{ِ+yn~pG<%>B{=FgEcVlf|=}_Ɗ'}7sȸ8ŗBS1#&|&M[C}4jH<$IZ8d$^倴^7;>Di[FwktjL9nM?3& Z9$O/AV"*COL7P)P@՘;YN#Q;[9aeDp(˞J bqL2Nf+7rvц^t1+ Ozme*I2ΟͩUDC)z+#F3vp۞ VY:.2M硤mKd.k5l~<"aBy҆D_wH%sآ󦄃:\˹ ׸qx@M7AZVs/xݼ@\hZOFúuS5c[aImP.6k͐p{ݷI‹.h!xFI/r"ʪ+bj)D@!hU` HLNLjHqiإR^c˩TY 41KЕGO$ N+e JV|Ԋ0Fn,=bX|jm1g&ѾH#kh3/2P4YOFFΈ;FSJ t3q*56s5-I3E˛n*jH(Wc>Q2)ώf.։8A:-V^~yCD peEy_j#)w_V tBJI s45yH]/R3w;^J^Qld;n 23iKXSv'Gg_v;^=X;.z*M{QNYz(II~C%g{V8h ^I zVǏq2'2BOxNDLul}J͝NĜF˭9.ss'̍̍O3g걺~M2qG%_edpmgwX~ÄzGt|ǜ t6`uFNcr]D^M.z&VYͽ? J4= %6`h[Q,}3gVtdݜҞCJy"ӌfzUqs7Š DŽ}Tuf~(Tj5ݧmC1 Wc(Ho%妒B_f*w(kfPӤآV>JJg0skS SNҝ,|.83ʧث:zPX C &4*w* Seq&~ghFOΠ\Azw FF^9{5*6OAN4ϦF&fƮ9F< K. q蓓$ޭ5V u TyGNGȀlޘJ"+C_Bʞ|QG8mMRSLV0f5I[Sk,Rds|qH*4ӤJW4Td5=KUb+|Ulڷ(]B#/ͫn1r:[bcz5#:6J0F_;𯫌(NcVOc[dVe}@B(Ll~c+Vc\mY~Z ߐUr.#Kިzr.9e[c)@Z&鍜-+$MOжꈻ=?<gw9DM$0$L$΀5aM  H$Q[h+bn[mŶնX}ږi*m}fB}^49{_6ט"x&Un޹.[bF@pg/bS|xcb| "=~1>?Ԙ2U9(PfLz(n=,+JGzKq\G]k L{RgJd&~*#t}U=wex4S"Pٮ79 W`uIդ2#!dɒ/h2&+HVH0%qqÇߧiɨČ)]-PFKw 6>H!~{ÛÃ)P9ŚAOZ{ex]+c n@\zi]nȃi:S4Ee)7" *d-'>HӚǺ#4W~9#3sIh:3Dê*͙|ɰC"*W,A{\|J%rf`RP+r:?UǴoyHh;x u X77o-W,ƽ\,(Z+ʨ#$X*3VaQÁ |wd_re;n&J<τJt6~$YCPPB4Ai!} _Ixy,z)cD[;Q8l0e#OJZk4b[,iV6jya@NwA[|UyWM N 2 .:Uz-A1 eL.Ԩw0OlꫪVSFB'W-k=*{&g~091,QIP63?{`V숀,G0Bib22_ʻM4nKgn5W??bN s%fC/[~Z4 :jJGQEZ4MH3,5ٛ$&TzS7#;Lz DAa[i+޴ >+Jׅ(ĤnbুR8=(n:W_R%aΖHPKB:2I}.M$Y%7v$ gQ*9kIF逍cK#qygqE G JtC"h/W%'G뵥c"$>:sG<;RIcic邛 =Żcnls|C0dW)3Ȝo~)&Se+GNc0.6Ɔt0N!d3vNْ WtDi#mk5;YAKd[^C' .HRnEłi=cLcTU?/vI1 {/ɾUu5״מ`hnX=m,Mhl2J -Fa|͕2/bK0f|媼teQzz)+7gNDWȘ4(8np6QTQ"2GQÕIL%bbe#@I%S$tE<+ʥlPj92r\3OAF8qHyƲC8!JzN0J8h~ vY+ =)?[eeypo:zR^x^;it61>_p3;;S;IY٨ ZQFn|)C22:sdTV)~{ "b9#l+b*2Jw;ǵ5Fos~Vw&EàL5I4E^O Y SgK ]'ܡGQr gmL8tԯ nێWݕbPKryWE1nbjZRQl/ ^&5) dt#yD]G<Ǽ6,SkN)mÈ"/fb:ݯ: >PFSNj|@{nuF>>瑟gܳQxa qM"@S4UA,Wz6HWr8qMlo:UavT/sN;ͽw3* =kw8b}涏e$ثQPf$^8OUmɇel!Gm'AĢ~h_Z2T.90M45P! i1 s99qZ[1|)EgI1AI0e"v<"@]r Kq.\1TDÂרi"$&16Cf'[қnG8鐴|c.@WFiz{b9sè f1h<\"~yXh~c iw NI5Ƒ.k)I(uсI0~e/ AYG~Hi^!B5= ćP2QQtHIM|Nɚ/&?,  L 2;1^((3ԢfӤ>_ t<JX.L1!^LIGf&~1LX\Ղ )9D]˅X13&OV.+yJN&^by qc$^"}evX4s;+Ԩz#;裙/xipc5LJ`9O%}į (\]EJ"bEs/nVAᯚ8E& 6CU0Rw's;)%<彃 grLy5\7#dp(a P)ISs8 &i4?p x}J %MC0"-/àmJ-WiPYX37,l]0UJ+b޼N/r)YXDEt/-2F!?m;ӵ;sr>џ`-s`Âah:lVv\D"PI&{> Q\ iÜerPZե6AcF)>RMVْt30|=>`I_'SeXt$ dEcoKG'| d|Đ[G'' iF9}|@г32SD #.+li]\vqgCl L+ <V?d x:'qbwQ&_|qitWN0JIW.sҵMHl銧|)/P8#s{Vsؽ;u+Xy,ux+ 9VZJ%غ 279u$mUWܯSxPĘs~&3uf bҏ):%W̭u5@O )<Њr~(f6̠ITyJruꉥ^le a~\5yv2WrT-ޡMbm"\o*VGXyAI)B@^1]3TxIIRDڤie~2UR~Z\b]\ut c'.ke 0TJLs":O"'hsQQob-G,)7vOot%.Y qh#ͳl$54bF'(&84(kTȥ,P~$-JGU,5==l@5ٿ# ]4ǥ_q\/  R+f Aź׍iǺ]Hma1vǰtzG(N;L@$l%KK4+N?(O~.ə ~srDpF+HҙtL1rւ@Y [iɦ ˀ\q\zÉLZEY@ "FLt3Fe?qo#y̤Nvᑩi*^{v4\`?"f&DZ$Cfg1}ޒ-ǣUJLj!yZf,NKە!,[:5JGeTd_GRIj"-'%J } }%`e-lb ߹ C 'tq0 `G)צ=8zb>O3 m0;$W10f&imإ⚟!PA=ܦ3&*+dKVyo'1̗%R;4E9ma !ԷW$BF8K8G1Fˉww=Oy`RAV[ 'Bٴ%: T H,̭8Os4 "g9?=Su*Vc02>Q7(Ē0 DE qC[83Wbyܸ ?^;w40x,S'* _^Q)V~Q ]bT.wʘ:ُؐ_mL@X t~)j+OARMNZ*A,,(&`2)AR)B.e׶dL?JGyS8v(~Vrv1 .ێ&C6[5 ^'cgr%=lLb IDxfb=B<++ 1ghh!;JSMqB;s4WUPb[qZ@k@X2dJp.5Ԑ)1׈YCx2+.RSt[LzzR o'g]OwZ[6wm%yϓ`HEgv[A$-IA1,:put e-OKU,F"=rF鸠+ L KF`ҭ({»I[6;ecSp7D$7J! ߉:A=']k8 Cu& yL9\{MW?jK[[HȖl4@/+i&rb~ ~dgGJ¿LPqx>P^C[ɟb}^ IiQb8m SXo?\T_Fu$0"T#n!/ VQH.kZ#MWcKo&n XbO!eX\uڈ"SB2mzlt?XꭳNT/';b ϴŪ$a.I\3Q" wHI]$+]!!I܃mZOiZ ]K\RA!#E/a0 B#\Ydш3S^ဣy(S8z27SM/)q,x_;t69&0m>*AYAZJRc_8qMi<]9Ţ,T J8r ;GȝJ;pQX0 wx0(Ał;<;cvuO~@0VT_7X9OajUA ȃR/C :g3qUDM0B%<2"ͤ1 )b[G1581 &(\l ÎKxj鐣aáԌnB>$Sd[z&w%Tyԣ,cd3;h,x6" 'Y@h4F>~v TF03 "~*%[.yye9|g*-1y)N*0ۄK]-g>qtmA:' 80jpeRtE\INk[&1ItXX&?e"B!Qਂ2@zju)vzF1g"Zap&IiSxUFew("#伴2|r3xВ ˙ +.j;z\TI+gpUZ.W50}OL/PJ,QIk6IVQKNJ#EX&JD eqMDE VGuCÕNࣝpQވh K0z5buHʜxj5|`j'S{)*]JLD[ ʱxn1[2ErXrR`H*{BLp+Sjh!تNo{fw bl)~`B \՜դLm% : <;jv*fFiEh-f$U%\^Q4Luu(v;FDhUVXz?ѕRc'\IW`o{20 2xU."(|!гZf酵XQD$LLV[9?^3L9U{K:jXе/}ZnD4qɁh稓:< I4͸z9X?43j pO OdI^$W /YRE{2aEM.DүVfƶ/_fWuhl,j"R!~ٮ)Ai]UZrc/!,,)I% `UeTr.3ز\#X\1铩rgiĎD*mv8)% R'TW&^#S8VR8D}WfGe0z!*3&zU~S#TˉG(QSPL,YHZ^Ak9 FDHuR;u ':ځE M<^IbF,(wExm.%݌YPa&߆MkWT2hdXρW񣌓wB1qM<<&uH;ع-rߏ#"]~5U`Œ%XDVv(&G4w4ޗNr>IFR$(V:HfuYX0hCs93\wY]Ͻk:nQ{|ZLt/ щF.W%QJX%MU$}j~'\ItћD !2#>!s1Z?L+QqL6.!XSꄹ-ѱ,e4=~-lH4AXAz&;qR(*~lOƴj{:AeXӕPu1 /]⦱R^G9ԍh~[qB֒Ib3_"H R(g ryKOfv"sr)-nc"X}$8Ih _Y0yO2Qb*#q*R<{]n;$gߍ< *"Qy!\,Q[O\"OljDத1_f ãò뉤S(Q'_ݍ|ደ&4LkX#A!iX,!/, 5ұ[I# _wd-nTA}gm<&Mnr?G򪱲**zyp@ \8N"BHIՂ%5p?ۓj1M,d[xgTMVߩ0nSI$n"ˏiR\)U!(ƴ<\uAlBcDKw91#g\ r1J-4x e-Zհu ҡfgCL!PfBAȋ5Rj޺DQ2 g6Kb>IyMdZ͑byQ$<- S/w= V5vR'/.LȳFJQb+MǜlvBҎ܃2Q:#;Kr@-QTI5"LWgi_^(C@f"+v.a 5176h S(EmgO,u{3?5SQ*Dѹ>.ϫhzf:/XAzix~=#}wcofjrQwRj3+^Lo%9$,rQ$jZC3h9#vru+)RݵT-4ЇLuTa4Oղ~i"BG"m+ arw{,vjYRh ?,(=KF)t71C'SWϸL^|X**\7OZwIPt!hXqq9F[8,O̓.V3+&N$%Ɵ~j{>}=js90iɆy4wڙm]PK~ |GSQ?,!)eu=erQOCRG_93s0uetA͍LGtLIn0Y7θT e+ѭS%LwTw>yQJgq)c:;`z8VƤ_bׯҚc 'kSxvr&0B~qr4\ Ap x.5V^AW,RR 6gELjȃ[&gF|6̥'%U@铚Ppu}X0764%HD,* J#Fs  SwDP(5rs]nG5ۘ AcEGFth>x6yQfHB25JV8rw)df,l&KB~,r}PA* Sҹ.SQ՘x 3W3۱?>0H0(MF`H/ .SyzSK{¡|h(rX ;?6T)<}T"SU41'VbIƁzŤҴ87 H16Tޖ<9zwF=A,OЫ 0%&qZJpBA[6\"'U/L2("jJ%O w7ܝ㰢$˵E:dOzxݍo#8Rv?s7hc¡Tt.."{>zs?\fS^DI8gzn{ke+h۲~"_dqiչ >{X_ qRثP!GʓE$fދog?v5`w ϸ*qkuUNJRX(j܋Y՘1N2AR}<-{f&m#1I`MJm I f֐j*wUL)/}d-]ceQP{>B $)/$.'1M)]V1Yu0Se|qLUx7/6]Vv.:siT0KlQŧ~nRY? }Fv +pt%8+قϒ+ CǾDD g\$}ms~rMMMljx) w2,FDqY`>hXrTL*A2fa &`yC*QʦsceJtcheS`M*zEKȄp;Msd(?JҘ$fT/ҌR^OK1 ۵`u@9ClR"C(tb ;u-%OJ0R|AmɄB,t9CF$څ31A5$iR!6U_ҿIKj4ג:ҰmtaOJN R*c4$[z+GJ@32Eq&r L꒐x 26ִ:3B@hart|U,vY%Fmb5kzTOY W&) 9P#*>=Ha}QPC⟧I 4 3.sJ0RrT bygC+_#Iݭ }Ǫ* "2Yg EL=[3c<bY>9G/=4,\#=U#Hu?H%P@ޟi~>6 S`°Y{nXՊ|$#la N CF(M/e[/.#Ywlxzh)do:͢c[#)4Nډ=S_*||@ yƔw,a|cZ"څ5aJ-? p4zWlZ4L:e`ZQғhLR8_?B f팒%DK̓7N@mi6WTd7d4N4lUi7x*u5]yȰ1j@/!y؛6^3aoQ̨7->$pm臩2N{~tEZgIi0v`Rϕ\ ^9s]&.цվ(\"6J%ab_O}]mgkL݃X-L pW3c4fXP6^gX0LV݁] &+ &URKRK:6ilBM#ugLE4VJ5A.[6^c 뿆!{ )Fd_7H+nP,|֝g0TzJ=#6޾NadsP" ES@dF L3*}^!\)^ASCM3BgЏ$̒3Gacx@vD:ԇTSZʊ"FY\Et%K6%XGY*yu;ʠe|w,}gˌRT|%al kG7jKU%"dt2|>%VoԊr} _\rJ˳# [AxNU Ã߰Q+M˱ qy l!v07\>=0ѧ nɨVe_Hoe>V! a||losZb64E8}+=V{d=E{ZZZOm&g+?l5 s=S1jӱxvN73"?*.^Ɇ(WCfQ|^c <WY*+,\DӹQ:DCFEjE& +S.2|s::gg.]X5⇮e%+e#{*$" ΎKRj߬.7F5W/JBFஞ*c*^*OW+zX =$,gSv,uY71E~B-A# srSU0l$镠OqP* ,ɔؙ@ǯw lbY/j_ٕW; ,zl)y*^!Tܺ"Ջĕl%} kΪlA[W/&fSabY'pGqeܨRauFFh%媯דpEYtQc@BE@//X$x:.ӝn'uf$r3se8lJO { {'xȽ3|%='Pz߂ޱwKŒWd2->u׿if5KwaPyS<]K# F䯱cX_+,$JwbǮIuռ:$#axdU, j #qC|ȃI$ c;%q=9 #fKA~NMqm4UTAo)9jƞEOؘSϒx'K K aBLlΝ;=;Wn\E΄(q! :B5c0@jDLyC%jK~z);I Q^X1ujH$J(Joϓ1 @)\.V@~ gg%a2l67;dPB_h[IBҨċŤ H9Ar8wmB@F$ItH2 [{ZZ-ﴞ/'V4>QS=LObF䂰Cu #k *0C)&!>\.a-& ewYu4 'nP$9F0:*U+o)ϱ{ks\fny8Cy՞4PZ"Jc7q0rL&W|"٧2 ?L6ANv%XYbxIRpڦlPbㄷŴ jtzrHƲLI xFnB_+&q8IͤC_z4?nq;D =!kI x^`9&gLEOxLրcBMs"<ْ-FS79c^C߬ϩݻEϼ1 yfǻmҌAʽ ?(=LcuiCZF.߈<,|CS^SGnuPLuP @h8tqlyՒh@e&+h?faF 0ݏ/q&2Թmo"5\F)]BOD]L Ri3Jy{$&ľGI?xG$V`Ab)D_: (sf[B_ia+'u9.=Ov,15by߯Q-2~seHc_Ky`tB`XȻA e^'qUXa%zL*7 S%%B z8 ]gpSXF-#d/B"3x@E5rCw(TeXqpn~.|>gi $d.Qoab%f L>( 4rze.q9 s2wQ/ܹdw&<DRщ\N)`XԡeɥIp 8Qџb1}OKiHLM]'06+SfU" գb<?Na*BLC=QR:rN݋%# CI, |OlIn2cQ-93pS{|5(H{3$. Džy&ʲ؝ijtv}A{ AĭE{}{-|5A涍qb)ۿ&dҭ:sםNt:D;'_,:yOş>&./b*&rN*9]Ѽn&х{hbڅ?1X̉!(%-Q0 =z):PrPC:,,ۜR.!r$!j*ΙKeJ.fBdzm=(h"U:Q4t3q=EњS} ^ "cr2%Ai?KV}/\!0gAB*AaÔRu}%-a=Kn:* GȬ/_ks(\X. #H1.e;+sih'S-+-zJ@O 3*5rzaR2QsUC>՘1,.>IJnx1 Rο (f֦ j*mOL71ZؖG tb= ]M|!`VVrt7 -Pˆ.* T{&mtQoVB M R_N PJT$U&2n^+݀QLpKb5Ҽeg!A&G!3"0c0(_L(-A!f(S1JSn&t%%ɩQjL^խd"ݍAZ'lCm'nv Bh@:сYbឰ T-͌AfnY$؋J) y3 vE~W=Qp5:O 8E ?R8I(m"n}KVVKTqr<&3QEHקZ $&8e66e;JI9o>}(ȣ Kpֆ<|r5MW1̫O@w=~F1b\"\EJ * d JT#:2eeT ZUR-\} VP'A`HM*H`VPϤvUy&9`(uu?n0$9U6\F)ƒS0y]zށ[$)OȘ"Y"1d^J'C=8a׻c72Ȫ L58MV|P ݥ<8 b4O"`ꅊN/mZl6t~>e3xAUĘi]m̐d&G1c sZ{,<^ka`c\|:#T,YTIJ HPLݖ,jvrf8/m]t#_Xտw uF|FjUGoM.HRs\n)1ʗU;A,!@2 Cy W;5~t4ݿb7GeL%!Q-RD*.26#MDk G)"O j|Z,Y_'%Х~ IJBJRՎRܛ)P/]eRTO]+AiA^55MDjĬIdteJkѲSPRMԅ91<թrkI-*eK5gx1+eqf {௮aQRL=V[ЬK ]L xd,OVsh{ڲcMgkrVcV~vIt)ìl]ӈaHj}Y]v-SnF[ ^],r&Uݙr<*:i:1){pï]e@>R1G/(1~j8# ]j:zΥA 7Fق鍂ic67*"BJ=e䄭3lgbB&|ն৮jҍ;27#F}1_q7ؕiKr<Ki ӮJ|;S}4YW ^GD}qSTbMOXMEXgBGȋYW3dO<58˂ST.O߾nͽOg&](so]sG,[D#mKtݾns! b~#Q5oO=BsZM2%0ֻ]ҍbFO˯s7PK" Wűܦ$7r5iW݌g"(DR[$Zzΐ:鐠Jc`I<ک;O3L5N z`l~< "%7;{bNHmB.&6-Ote:D&gMJ]~/7ywQ{WD7T(bfzd qO ~ ~`P˔/XyZ$(KF fLfHvlM,.!sӱ(T(LQ\eۈ\䲈FIĴ,JνLurm4msq938fV ev}wsd jpmR$ 7`ZyE,i z0;h2 T+fIR5 KÝ Nz;G˿}Έ/"䒴D f6+HJa6J6)XW `cԣ%ȣ5+]4T U`iA$N`)uKB&K*B3,|I\!GzP̤&sEBc=5!Hd7ݹp(A x1%̼y&SL׻GdM Cw9E-tRe]GnSIiBa?Q醧AU B9ja6uF5[GK=5c} :fjCyam|;Jak)nuI&JfI9NLZ4c)6 ? >H5ZI與ؙ™%X3H,4wd!{_CbDtVMz[2Fg?d&40O)U-_0JqMwđߑ %N2˘S`$ߩq% q><nbsHgg`]IӼ,bˠK]ϱ#ቊ$F>nfxUahVVѾERjcϫ%I?_O^Ԝ7-wDbɹ\ 7f70SHXڐjDIZSź"!LrHn'rIzl=>*h0+Rԇ݂xtUk2$jOh]frX{ݍ?Bi32{Lc#y((Goy1@BAXd!ev {T4e7:87~%Ě^*YCP:snaL)BNO^A~My>6<غ;;QX&K7=xN A4VO EJؗ*@F3G "y*Ɍ,U fѳf ҠIq*>sw{@bsrQFq$de=Pŷսy{tMn凗ӬY4Bh#$v\BcT^T'd|nu_( \݋]̚CmrȩQؘ ֝{DQ1Ij&T#f՟hN+;!$)B XbRFL<{ܚ(:f].plPE> 4jE8Hx_-Wع8Llrʜl M:iU@NRR4s/ODÿÞiY#!;yj}}ӵg..eBgRQlORQost1LGaMO7 3啳IP9C4\qߙꆧL: 0RoeefyhNAxg۪DKY(~a 8lhrfB]܏ҥ_TD$)\N*쒉5 Wϟ%^քQJwfQ,o|wdpt1 &ƾM0OfoyOvKPmPL }&nv>M<3SRdKqp\SιiRL8&%'JsT N/-Rs>1_{5wJCW+w9$WKJb({tį_׵O Kjڌr`Fg2-܄ ̏f!&drh0jq%mkA|-WOUA 9hV>;޾ qFLm4]GGKO oydzk4SK[jL Y`l[߮M98LJ"Q!`P}~񐏿QMkA^r:aez['.ru+фŔ2# ;>eaI1Xx>o6gcrw!{*/b2uKӻ#+ړwqޒv?$Xۊ\{IQ*~yx;gLvvp://U:fWnXh`^gE-ʾ+\0کx)̘c4^lIQ"qF>>OqVnC/W>ͯmprټH 9cP^)~Twֶs^㪴x/Qo")v]^TP9pk RJM.FK!|GCpgeΦOkP zK*5ʊpϑ>,L9qhxnc2 OQRvo*AWzE3##y%M)Č!yxXxUb2 W%X7h1e4)?2b>֪85{rᩖ&q:U!@jܵ:*o#y.Z=/tW߆_~!c ҇ɵ"\^8Y̤B͟.|if|p9U{]X72dj2A 2G2k<A-h( gam; v v~ 6 17Wcj;[W`޹c*1n Uۇlf)xgO-B1P0\Re7T=43eiOR98&ܓanYWDlÇ4&=|Obnn< vÇ;k鄯Q_O-1 `eynB#F(zrBA(V=rfZgJ042] \TLv5]dΜ9kh~;sn?4%}U%Ik3Fi;$/RsoY ՜#(j}]uȴ:l6߬7<-~ynsSNfLEQ:jx% IY)I%!w1]t>e#}zFp'Ϩ83QxK/Wܣ.׵qV2G%T1*FWwhI8M54 T& uF}()uqz`e20Q7 xBxS(b|z_h΋׶ږxE5mvmgG! 8u;hBP)OuMK<C)P ⡢@W߶[Ccx(ƵCx @`|܇HK<PgϰCv%>% ١Д@_|k:oﳲۣ؄ڸ󯿑gq\`~Ŀsy }ɮoiiծMxކ5E5]LkqʄZ]>j%MM6qgᔈm̀iϧZEŋu`Q; }}fBP8ww5?ro ,ѳӶ+!/*xW{v|,3102ke/4bD =T?"d&4;wqi0#XC?;spg|o;@hr(TQ <#F|#@` p {[q5CxG_iݑ9Yq:;TaBsVϚ8O%06IKw=šzgmuA@h^j<#dPT_Qa*y:x}^E_OliDSMiwA`\7.P ^P4%0P|l [ck 0lOG5g|q;ڵ!dCɡ3Hi튳mBǗė8; E3⡖%WZ즚Pܶk-PSQQQ~ZzF TM .aV\h"JB)P TX@hِo^B=¾eך@'7ŽB#liL,u;y_Bz]h^g1USSTJ_u#Ȑh=}ls8ԉ_59|3Ѐ^wZa ^M ;&BJ\G!s짉,|0\罽T9y1L,܌sb9s~CS)3fl@:[}oFys\ "826hv!8o8d`Z6Rqx(ˎCmt?M3Xr:ؖ]WHAPV.dĹD|߯ tqvu\өxզԿZ)g|G1$9ǁ,=n+ۛ0ؙm ݿtC-GXGudqړrs:4~xuft|J[bI!)NJ.% ŒmG:p40>NwqNRM3,Qn܎TqK5:,G#~dljzD #qo>KvqOe:kZ#isg8<+q ݘXĢ3ȶԽv:uwsj~*P vbvt:̚/e쓤쎳uF~ƶe"15qSP#V1Pu9L=bwԵ:|ԧ}nMQ](h4 c9q:Q>B(\0…WJ߾2.I}AEĘY;?n׳=I'xt>p:iԽr\TH1MH U).ټ\`:veB mGnש$i[-͇9a-uJ1 7ߒ-/x8k%dQIP5$$ЏrzD&6 vG׬7\vm*\?wyh{WG5t{v9˝n~nst?9p܈sQ@rnr un7\5S*b;*-\Za-[VsAE}K*.bYeKZdyrIʪYggV\YѾ{ŠW$VXde.o|Aٽc~2:f\C}6]Amf$ɹ϶18a5`N큱vmj}K\ڹ}% ,YR2ue7/K^EK/\}mdY=&\`Yvqt坋Cn]pe9 -n+r[s cL7sCxoCgrnEm1ʸQ 2cŴ0h+y>3 `OfQ6GDۂeSL}e4GQd>_fj+A-? O 7ߴ^dtuCAIk..' ueSQel>"ai zpub7C\  ~%_C".8Ya]݂6ө̇9;~DSXDqv%/cJ( ߡ&%Bk7(Hn}Ea-$nȮ]=ʢX!gܒɮo\ ,r}8bI@b2M,a2 *\Uf[I#_92z=ǡ:klCkyHZfY|Hd Qsw6ȍl6lO!Y.S~dQrd_tY(Ҝ SšLtm?"kbfU Xh(P"]KBž< ^: l.y3[]NtWKUY TPP\H#:6ӈ,!+[ 2T:4*U zl@_9@h jm],g=shl)geL&r.!(~u`6x%T a*& T]RWGJQȚ]ѳ.ta9yiD,&OC<֥n-s*_$g:qE (4Q 29z5'(An-iY*YX=),&!4le`Ix\Z(~2. #S"k+`\twV!<naDêFbFq)^nIpmcogÆҭʫY%ЌKwĐZK,rĎcSꄎEg¤YN Ζ_rDObvkm:ʧqd],B6ov+U[,[FcbGڻ)n_)A>2(UaؠXw" |IĈ\ ]&ۚ aOzxEwiܓaAtx>/APFS~R=K}"aK/#M<o |9,1FO,3YGr-#,ҁ ԥJJSC̕if & N;WI.s(^I`ɢ8QΉ{\1I Opir?Ϯb}YA.!U.uk$O٦%L2>Lx0y@?"aba7<Z":lF!UXkaQ{{k{Gm E +d}>-TX}z2#@6/Y !$Oc􋖮TGkOsث>zS?Fh?dVXI21Tܦ\![į*~T>|ż D̉Lf*4<ǔp hdl}L4;y\ͮHN0ӭ꿻L;N(A[)~,+_q sdj1EQ9A6YgxLln hrot;?& Íf42_ vrj޶N73/uo4֠@P-LdѨ bb΀ sCDi$†% \SԒ䞨%EW f v+3hԠ؊N/1=1Skș84iA?P"'_% Fic$,}e9C;Iihhu_Oa,K:V76/Rt U $W0P_ m&2mQE-,սrg)KU%u;2OSxLe, gK08L̨1Dz2=uZfB=ZyȖ it)~ r6'ωF `$91rDXĄAwڌY1ϴOvjO`N.*jSb~f[OAdzՏQ#ia-ԋ:ZƁt!¢Yh2P[ NDn=~ b2)^Y3Sgd_o7cCfXY/'Ϗ_PI$fbutXx3k?U\y!dMSd!wǐqzgӐTWưLMij瑦~4ئNcS9@ 7F6b Ni.G42)nr 3{R?r-`Y2b4NvYqq0׈08U8أxupZoT)]z萎HqjnviZcѿ=ZG7}~Gy}@8r?։'r%ws&{C3k13.eh˺PҥeӸ%xK'x|ҵfyBٕKx FTKOox)MI%)7}ùE#{%w }[QsQQSoA[V}\4FFl^!r ]W XGmڂyo +~Q^_\6/?1.olI݊7w_ҩk|t8m !S?7p2p|)ABn6#v(ͪ9[ v ѻ4|<Үl٣d;!Lp8r4~97iS&D-om&+z;-^jNEj6as S,3 i׉E$[Bd`/#(??ɧɳGZ>n}zkv򧸿+q jι[_EGXW1/ G).ٞjzIY4 f,E:e>/ߥMuW]fDج3 rCOe]պh%9L,(- OqS蠖mؐ<4"X@[ftr}S$[+IobYrY?_x=sh-b=l.Ҳ.՛X9VٔC4p}[|٪]ZLטIUԯ.&7#N/y&$Lm,w.&)PH%kK~/ ^~BO#`J)H4QD;UldcnƻMX.qYL{Δr)BCJ8af E+}_:Yb1O RQӤSFi{p,b8fL38-e&^yÃ=/;#&`vsXbgL]i~RPcf@ʼ2NO.SUts!V#D~(7 p/ʞUME-52יY #PYt]w ?ۥlr>a4Уʃa5ޕuh8کBs$z +o+?Λy\NyS^?<` + M,* Z}rFTMb^ \3 {]nZ.:Ktˆ` vdRd@_o|4?ؽ${p˚`6;Ө(>zrnU,rсp1 V-$ՙOR$1NN8/)(ќ |FdUqO-y^%._Ra_*ˆ|\Ox :f :C:SlAwi<=h%)hP %)hP=ؓfZ{kly'׺}}#&Țzm36̸*hOϜS$k%n=uJ}8;CӖ`/bǐޮAkǨTgFKP)0K<"q0^f8-"RH+Z}!?H_Vx_3Bgh ߀iFG:N%wKMRrMrg~ಽ#cmF]>_}iM )Oʓ,J>84\#"k)XvZ">U5{2UaDiunq/ff].c7-T;M~uuVD\]C2V9.~^Uߥ)@9 ʅ{ekPi`2Hr9-k6jRCfHf+ Ua[*̍ʒ5^̶}6WS^h1Ω(_K/DX㟍?4NMd^4'q'̙DC,>3dmR)j2f N1e,%:V}c+V~Y >Axl7D삁s5fmJ#F Pz6HJbWT<)}8C]Rµb&@k k<nj!RiSQb5È5 ykdTro[xڪz , {chs?f}]v]!~WcUfW'kTuJ:Y's뤱Nru*mUF|Ӥ\_դ+1&dWB$#)Qi.I婂DL~[B)qxݢwi* 騫qu[d@w+qv^5<%ͣzirH]ў+ua4=*suHA (W'%5ҧ qM.,MUx\D(LF9FHѿ 6x[h{tsɤ:{zٛg ~^;sMgY{2žy)&dr+WȼKrWkp=c=^.h$.*5\PP%e][ҼYogΊE*7*|N9h>xT Փ 2Vڼ:G}ݭM:[&j-O/Tւ{ j$ˤGm-z&rknW'H\U:W+/F;QF uJb"r,Ю7m')O`fUWHU=;zdOA|3W#A Vc)>loU)y'/,%@wT]eܕdRεg,-]}\N\%hEr0ԓ!e A} ,gఆ(KT>V0اzF>N&(Kõg.psus0) gӢ dgA| 3 Ï{ <}4uojR el 3EwGvhp$ Gg>\2ZΊۡW>%i:RGW۳SYF9' M}Oئك5z k˓Fvz8i4~*ӕk쩖u= :G$LHJQrs3GDzY!MP@k/րKjMkFlfpMاt!*?2"`ήT^F O䫱EU,\)^vmaUNVӉD\6vވƖ]zC4*I%<\9DC TEM {[%;n~j-*O=%8ʢ^Te-WM.D~Y:Jx j:!+8\Y]9w?z#&+[ JOޢMvөt6:Mw>:J^Qy&!Fzx&kc8UVjR[qcYIIu@q{STέ?uˊ"$9OrK5(݇#VaaGM>y.-+Q땴Ų] Ǩ=<*9SH2**5bLiHb\pްU/ślbJ~RrސDUNUdIN]pѤ2s$.eM>$/Sވ F_4a.`iy:KoҗqV;sghnM,i[laI^[B*xHD}ijfKU@Ӧgli=M@/P[\4UI3H*'Տ!HM,Ϊ03C;(p횺LRKہGL3Wim[-ifdAneY%5_:˂8I$Ԍ8D&s7Mʱ+UФD,)1vv?Qq =4D B8)Tk NQe+U%WT{_IaxDmbb%w#P5iq9(\/Zc ѓWrfJ?BrА:dJ`Mm x^tMlrٲdfXUs43O}fCsK$_MeVXm8Iglx,:x[oE6x&7U_\т=ܢ,4zti5qOdTV#SFkiL]JȤ4%D]kC)% N:.v"H Ld)r %C"hД"KZf5rv3f:iu&K'IX$Cσ&! ^ДN@?ApTxg g:OKԗ&ʙ5g#vC"V_mA)EhppR_[ȿqe$\!v5$Yg &LȒ\@?(9w)ńDԢI9Q\?gJ> CzS.L;̕tҺ a$O^ЅmfNwj`0L?%*֥ )ZuLW1NqIcRK'T_A@wp[/dKĺS?*ݹˌx򳂉Coҝ[Hz*֟˵GEm-ܫgi3t,vTQߺ[0 QFfLGۡ$ny|V};Bȇӝ ˃AQ>Db$r%kJ$͎*؛$щ.qD?wA٨q M$doG` ]YK?U'h`DB."H[EZy/_3'f>p/WUZF]-s*)> RrMWdoF-=SOO$dKKZYVokzgcdyϪs|V}<(nь>[k.aGU\y-mYe亢e^ dfTQtJgگьNNw:ۑ~QϛE `` 4uwn "E!Hsi;%j1#ͫЇ7ߨnl@k9F^>ݠEH{rx̪@̮R9i63l=| hSH%ҹ<bhBz(-}sqJBy]ls\>x6>۝ݖo@#0 (ѴjbX)Tk&E^V "/Z}\Cb־J^$<|q?%j"*MnfyA q"IaY 7Nm9}| CJ!R^߾6i`ےuk*;AN&ZrQarVq.dS 7&/#epԙOimS|Onj;ٯSI}qԨiyȧE;/zo݇HEڤkS} ]V}*ZDJ֬_$-}zzq)y?Ne1zQu"~b"682̀1$*4H#u䧑pLeF@n؆z[F׏5kx_OdCJntZ:A'h_ ʂ`LHެ9/?l6mt y~K19/ɎP&M|8ަG19BSEcKdMnp KtZG;GwFdODL=G2:m8!9ծCvvgJ^n5ߖz0#9j_E@5FSD(U "WPG,ݣC$AAM/_7uCB8jlt]^.ld޹Nqt&->ws)^I Lnb~l#t *|H[X\ s iWw8evc}4*r/1E`$tlū;ݎiw40^ 덟Iq%1t= $t]ERפzd(^:aJ: }3SFڸ!fdtXNh{fJ7sc3Cv'7oK#{ 0kʛIpHq@3 /2EiJVP A\A? P=/Z,.`=6d(XZ5s`n_ sZϠAq?I4+EHkZcMDA洢zC֑XwhK Ɓln=$2wj l/lФ)az"^lڅ*q@$(!<7:q]zEkϊXbҰ!zP#)&(GMҜ.{6 w0|3jtpo?3|UL])K04wg>~צL%:KZ,X 2q.[skj>S ]nm?=sG<YKMrl~I{N>ǘ$`FCo`lٳ!<{."1\&>k_s9h".oe&}Ŀh#Slo;GF][[pq j]ڤ35{=zb He=s,Xe @o7?ì*oe)m!G.V dH{H}eiQQ9CKZ6 de( Gq#1r=?';'=/Iܦ,РI2ŀ<Iȍw$giC)#'|D=9w $2}Uɓȡhׇ.1up\(,2{8M |v'vSP u+!)Izɚ6՗Fn.*Fzm{)=&՛ԙ:|RCQr`#uĂ]t-Gr`<0]_[T>*~wKW5&gm׻D;H R0}{n2V٭*c  y4ȺJ4 ʞlʢX[|$K>jjHvqK13,~5M_@E݁[aaEt?B_~@`DtM"eډ70&$VDߊl'4t̵ӫAq=a%E : ]=5,<6|sVZ^DN7pie6pr\A_"&vNe/rs'OdK=8 A~"mF/*.zG#sꅫ5 S4ef.?ǾD]I1vZ2}CS?&ƴ1*9g_8c6L~-͗MkOa\dee͍SΙ4岩Ul8X9\uJscC,b߅=37BсYvY|&XmXNJ,*#s70\)3pT@a+5~:2JLxP%A-ɜ>S#s-;pkt|Hb_#Cԃ&oP5%*WMUtpeoq3mİO3u-b6-tvN8_3n|zq)ps6lLɳQ9 }Zθi;y\BGR|`]VvUhQѸ*5ЇQ/ p <^ %%k,xYAps*wQPxi5Œ0[,_!xX+\B-L ˱v`v"]jĥ+ [Ȍ /, Pp3I$Tn4.`l'l7B1qIhOSIySdMy-_m14Im2}P}dԾ^+OD)XSu5.Z]<=|0Xg`w*&AϮBd5v[z͚Zh!R;Z?&yټp;%twcWsԑ\Ox K;\K f sZX&mkpOiR=CS:S+ AŽGj=7<^DҨ>1!Dp`d "zgCI3P…XY*B\hĔNcV{m(PYs9}f2]]ՃImˀljޒΐI<)F@8X9zUrWd[' wfgXD\eYOg[y:[b Vj*!,cCZVioXckIO[ <91VH{#-Dϛ2ؠ)pI`gqh89/H;W)|^o\UmIh8wh>;xҜQ #~&㤒~6(A,w\V2V'RҨRhl*`I}9tzsYIEse?tKֵYHZƃp'jv˓qՉ)}6Sqwh\|$bft)$^q irϮYeNNFg^M FbȼJy"i$}ʥ*lP!,@-/4`Sz&bOB`G|ܿ"{"a-O p$7z#,m푙!|?jlUA~_,\U<ڙVqg4M%K{1tALK/17],/<1)̸֒&M|\HJ}=؎@ RAG=&l u G-Zj=; mO}fHk:[&b_*ͿD/1Jxi:=WSXճUNMUC@6ޓL硆v'͋U;25aōD^Nd,W EF t*Y * yyGiF0pmWYLtqe{ ; n>e k,FF ?7@w[FvC*ZZ8I^T3p XH/#Ʃ}M̈́,g7T1.!⟢IO.[n2;ÉPד&EB.(zfj-+;!NaEMԀU}}RK Rh`0]cxFQz1T%QMzIc4H)]XM(Jܤ%k21D)S.m#|vV%ؓNB^t*~2s+e&t~JJx;A|jdTZvp7Ȁ8oDGM7ӽ6$/S*,@͕*ɳH&Im, v= t@(0mwë/ޤ)=9Y &FMԨ:/^ DЄ e<l{M^fn%R}$*Ņ+؟zRn8.OfnWxT)a7$ nM j `.{= 5.#ˍTI]x;VHșff%Xj˪5]ϵ4SNvKbij0cK dZ=rV\GK4Yk1v'DJp|y릁yR '\EދtX1m $ nPZM?ժ:\0Q%@F1f1No9U/U9ac.! Xovtb=[AwR?#wI5drZ>uux\ f6xhPl/ @w-r, 3r &ū5lJi![gV\Y|ټ3?dCb% ˆrb*]*Y )hᝦ4@?TΩ 2f|TTȥ*sF$Rd[{IWBsj1\e s)P334m䙨W$Y[;4m@J/!嘡`́{y)d:gX$P[&eP*r ;'$ kQ aR4V.=BKK_%_1.Q$#ԙiTcHKh$1"mptARI>cjZI-4CIWJf:D/Sw3~*pU6MpMkl G4qwT b!^lM۸]eTXV+83Vyp^ʞݢ2(Go%wQSXv+0}>~Wm>>MIY.ғūfX4Њp%*&0<,U)"WOdžE$,rfJ歋#}GnU*LeP/y$ sC^\A mj7OaaQL} }R3-nsxzÛ=):sh%|KՉ?.cA`| gz6;0#AINeր]³9R$#NDZWV6^\,/Ǟu U/A `EzGSE7Sqkl{Š Y+lڬSVvf~ * W]ʄ̼G_z-*6n$oІ-$ 0 .C5vρf zm|c2<|Pfl)ܼiݞ}-4ށ5: N)%Ҿ76]I`ĝ۷˹ĜEצqx|N#ڴ`zaTgX ~b?>ԙh˦My)WMlΌKC^?@skOStP_fuOqG}Mi2O l2'>[1yXa a. 5HT~V{ 'bҚYR8s^~;3"zIΙ$sj!URRiIPS)Uhˊq Ì)rlՉ*?` Dryk)+N*6sZf`I𩉼`? NUN@gi J@+=s{&^X1Y5Jw##ư=gNz'SCk`&'Ѿlڴk!wX.oMӆ6fi6q_Q1yCh%'y%,ܸg똡B "vF;kr{\x;,W^ʢk5X:dޱXeIQr[.MjӠJv( k=)QO11X1S+dU]ӣ&t)ZKMoVk5wTt; \ ::N==d [A+12"_Yl˚d8aȵPڒ-_w i pS~85URUTJUoIrr%<`6 GH67X!)9ձr٩2̶؝&`qRoChe}ێ|'&$\>Tsi'aLˉN4ɨC1(W>q "?r`flladL公Mշ(;[b&T3f⛌D(5D1l.ؽX~u1l,n$f!ŻG6`G<\6ŜZˍ4^ilE91m͖ڱkc_~7r}8`2" .c *9H#>wK<cw9\#jJ5eҒ#"H;r` 9̏HD> Wgx*>j^O \uHn\ñ FlPGȓa#klƝz~ c2Ujvվ=ӸtݽV9WoɁzK]gcvz=sݮގzwջ]N;˂pN;l5i$Ky ,T f.ֆ+X?)`R[ R>>2\gByYFL9?Vތ!=hrto'|#.o"H~ Y $5HN}~-mU^ l7أ\?T8f?Ӑ# 4'/*^ǬE||L?q:yupNm"+Mj:dNouQ*C+\Gc~;h+\'xU|r8 ExWU|KVqh5T6\fr[.Kոn\0QƧ(U9ʌrPvv\>pN&Z³!_͠E[JaTtJkby1-VJeת4f?0S~Gi9Wy$-0c=[Et3z) 産Y*g<0#r#F.kNv?_v?6Q.;dU^_~4*x0,([t&)oYG\ skFrjFRʔ3U},_;~{NPmV26k4%ʥ;"Zswx];h)?Mt0vCby=^pUNhW~ @02-V6&6#5q^)`۠ji~A}D/gu\G[_f\v(lMti6x4~Q.lzQQԑM?-o*!rcV= [ZlHam+/?iJP6(\}@-ې$~]XΏa[{ka-1V[n5Zje_*u-$Ccn,,. Gj5mg eM$Z~VY;TY%(Q F丕+!_,]*ֿUn6H<.ұ.خpЕ;_ Xk`! XPQlldV]Ҳ\Z`~TI/X$FF}ă|hI*!g,>rTS2wKB"~<H/ Ӻֹؤ >y% oBiFd@8za#ai‚.;[[5PZbD=ZSe.q{5@/;R3:Eeq+k:7ZR$=*өO:7R(ݚ5Z̾fi/GM@<}Mq$'Lu-S(W-cLjx]6R+}墭Ji+>?ixT>Vϸb#@ oa0:|ݲ TۑEngj%`3ip{ \ӂX+2v Q7lKY_ԔWB@S9V B[2F*sѮj g1Qϓg,C"D*ТZE?EcfdO:o U(#?Mxȷ@0٭-C-wLυS<4cZv}R]4T|hh򻖝rWP鬚,L•Nh?0tSOʷZ إ{"](M2Z;$?`m#^KˑdeZC,ei1|vJD#|Юa/HϔB,\|!ga\w~d-ibەKs0baGheOP@+Y,0X2kՔ,6py>8em8_U*FWhFN^Tf5Ü,&o*WEUFS wF^я9hNhxL)z')o3$ScipGH'm *O3_*9X^ـLѳ< O:+&ީD6Kjh5nXk4#;ZZsNz]<U,QcnisQRe|pfTP%ZAKȗ[۔/c7YRe_QܤP i\tFe.%Y_X,@ZT. L:HFSARpYiJkZk㭢rm6 '2g]J"-i M,oz-4Y]+Fүmm͒m^> T.RN @f:zK{E6 tk+-UZ`*miO&p !ߺJщ*_ 9Z uSoZgPݚzZa gM`)yרl񛲶#]6jzUVq79L<0\<U[2="ïM~¨̓o.//6v Ӿy7ry)l+ܲo?aK_aAj.cȃMmFhEcn^\^ 2D#39 *^am8mzWͫSWIlF`s셼J*7{c ۗkd_oG3(;y  ClmƼtiI9xÖyES7X0.;a]V߰G//x5_~ ?pX==m}* sש7`ZX#Bi?ާR8D}6s[eъg+8gG+.>pw[4gFp<)gE/y^0/ǹ<7쑗ȡxFemZ^u%o-7ړNW8 kA6 @p5Hܧ!DB>Yj}T;3٥IHtֱB˦ewo|;Jb<7ܿxD#=D[;=rOhgٝrfym,-oLFB?Oߪ2FJO(ry}~[2U,-c P#HͲRņ!|VpV%?,P#ӦNcد W^R_wA?a۔s 3Gf39SJioceT%=I&/cUn)ˑ5헌Jrigb6I Cd˧(2aT%9ٴZS5K3 OJg/Bo#:ߛa@P_tz҉:{VWQ@ؽN.?{gZ:;liOPUDUեF%nrf ަPi- 8!F:h d֒?28I& Npy^-X^R#Fȏ Mپ\|QE Ł&hz/x/Yh3hU`Jp?%Mu/Tb[gqQlςda/n2^Ωz=Eb'jȘbnfU~UPMuKRitPtўPwCOfgl8( K?ϭ,hDsEB~)7)L8TSS*#*#vsʕl,Hyuk!ZS,?{WႩFje)? k |gL|dfQyəϒ+hθ@Ԥh &mGWRRvPܛ+ MjAM6zZB9D.[mdCAckkYik d,wv-̬q4jM83&,nY\C+Ԩ 2˳#O+̹rsEBDxs`7}jMht /ṁK~f"[IWcf@9\eAk"eZ3R@ iwd*ZY4}4G4WY͒r+ƭ\c*  $܊R!eIy|*XC O(^B5hYGg!G@fQT+ 0?ve%`lyU ,0=2ħ$Tm7"¡Ɂf~P*qTڝ/_!o/2弄π yM5{}$zk/jm0 o4JCWNY=o7n_䫜+9ނrjn^s`G5Z,<, 7LgKxI.$F~+|6N\7= Y``Y J;zĐE?TxX^E&VWY[_O~"viJ3;<+uూJ"pӥ]n=_8oD[˂vƹWX-.DBVٿ,XH*8!xi tAʰg}cbe4c`:P/҅R-+mm{`i6滍08M *]#lZN P\g8&__hS;jۮ]&\ VTFaccR:ӞlEcAԲNAw6M_eI!L?c*Od[[ZBAOz˩Us",^?hwʐZWGU‰}0ĺLll9UVLI0~#8\'0N'S$] $6|w0;Xzg0bP3(.9-o>e)zsrp@ 4ͧ*i¸ w>Y)N9ѼmyLxݫ耻^(-2ybʯ9&3^ M,_uVQ7V 䲡<.ppGeYul.F>Q{i!67^H'Ŵ*U::PǷ6umQ]T/C4%l ^7929KYg{oZ/ɦeSAtvIhb/;Bܣ`loݪr% 2ƙ}ayڙ}phV#-Ő;4z?ޖ*>oqJl}RW2E+0Ѭ{i-UҕO$dcK"0\5qem\c g!lE"!_UUeC+; .Lc%ޓ\vﴔj?yRtwKDB^Q4}˫ZͭܫZK*75ͱz5kyRe28!sdFp"6*ۊB~ * ԲJ^YS>Bg9'[{nŏn%s=>vx81wƞDHKgh UEz~ht ?ouU^Bb^XO3Ǧ^rSoZ9i;* BfAz@A,C x1y q[@3r%ˎp "b)%:!EHI0ǯRwP|υY&9${"~ YUT V3G- WQTy~wib]ã|ϔ¡Vp^ ql.v6{9&6֔9nJq}WT^h1ԕy2K2EH?"c63*PYl-M1Ҥ 9޳ӼOҤ{hvs~)z ]W>s;2CvTCQr+Dxj%P:6_zn".uI "r2+s"G~z.=Sޝm̦;CUݜs¡#۽nD1%0sH-Pr9U7&8 &Vm]*.o2 ܤH-6QWr+dDC4^0m"b|3kqz{b0-_-\fѻmV*j) g,$dr\TCI7c+'dV>Dd^%- /8+W=Dۇ-vcUs5V{dcIJ2BD۫+c{J*r6T `2hEfmW67mvU1/}_-`ʅUrAMw?ZV/Y%'Dhk]DmuujuAA `ғ5k n %5do_|ZL7B {B_}φ۸qF/z ԽJ*Va ^tT\ - )5D"(>B%na^`g[E3ZG۪ O>e߂Ӂ|}G2a u țGujڙ# W[-|@Guj4c<>-OMGw7y۵p--pAH^Byg5$#_;{x|յt#-%-٤\ty­=Tyu&nܛo44FBv^pqtp/0T~&^o⎞&'2x? 7i$R?\#i9Em4Cl~;KΎvQ=ZNCohYOCǦ_8m-wt,OZHz#$t _7! !ꢡ mh?66PD1KbJ*M3wGJ:,)^=`bSl:zyBO^%W@ё` W*@̍lO].˦ c-Z Kk5]wCQDhr!Løu6İ6Iʒi6g^+,Ld_L;sv:} u Kmv=r0ʁ''2|W˵VvXkF\,le֩O,,Vj1íF(k9!tjS*z$llKWVCIIt04:3BE4gC䛔~HE96ݐmȊ2[0AmR~W -yfR^\)ksJc,^Zov1}]uл%nwMdіvKjzgR/76 Jz}JB}Bj(@\P)RmKz2eqKK8'^p7tI2HωBD~[8*v ^>yK׊j*TygN)NZqI #[sHV䭷*&qGmj]6?)x3ض$b b!;Ɓ7n)[43eYݦe$Xyi`7}g?B^?{n%>>}pgCY<-mAe4x/+>@z}֭-LL˸ޥ `%SQZ&OyukqW8RE/u漳1dO `3Pi/^څvڴ>ǁM|[MlNjGe P6Lqic}Ì]0cAsnp; _DLv0_zKtEA,6YqvH[pfuk[}#_?Kg Y4zolʫA5ËgJ'.^}ФDz }E NTm^,/h!VǺ53Ed5ޯ)3.C*m{%C&SL@eW5+4+VXeky14 H 4Ad S0BFi?u&+rWs/Xg(i&lׅcZg 59@R\ rv 欄7t嶄G#3:gySY|q8ҌvxV R[%OD:)0(t&iݭ ľ5z" eY-sq1=){c 3Ξ1eڠ˦7F?(%eis~n卞x1lpG ;{Ȼ =^Axb=MxٛOmXD%L̅pYŶ`ߧ&ND\ާպZ=wCj4wvlmS{O#r͈EP^CuJRI5WwԌ.esKߏ?x u3>U 2f1y唕RDGS "SqM\ÞN\_u'b\Y\hs#kfBvy_A9Ε~p7| fUi"AP%aml6eg_Y=޶-?S^E9Z,?> \Z=m\)pʓDͭ-%Pat5*IK,NXX?BW %o.rnA·@o[+$D+DLΫKdʭ Mᙐrڟ<^;{S>t"kq5)Xu\v&yx|4m̃hP9P-Lk NEXFM-NYN;3޺E-A6郟{VĤժ,E 8J7m6Gi|]AA {1¹1iB+8(|; .2ԃ ?*m &3dijmtʴi5̨o4-| _|y@{ ɬENJ$+\Hޟ+l/X0I!Y43V,I{a.B.x~Q? wiO[ &}]I=:SD{q%IHՍYQs `m,.3(10^P[|HA,C晍Ӧ >ك`{X 3}NԖ.F93GՈMSg7 y͍3GNi2hLS ?uA7&/֖dNôs*d*A7nll4ASgn4hٍ^XPPP!lljS A93.m:hNe hDONM=962#ٶ $dG+Y8M:" 9~?Fi_ncy4EU~?F`Y9ӊGNQPKد\:S8햬\XBHn;!@{HSԒ* m-@SS L8v̘*GʤZګsrX_h^axHʩ)"?&hZZ# {Vz=\۪gp^4IπrYUx$c=a<̬]z0E>*ﶏ0Yk9J9$$G]q]p Wʼ obwu8胉"yQ uH%F"&Д!7n)SF҈RලnOOv 㣱єL%)`T2,(D?ҜҐ+M:i}2MR_e-z]h4re3]#CM/M$L{O}i2KKPm`́j3$7.ɟN2q k75,ȯ&K9RpzЍ,(ssq 8*7 }h1&3{FhCX_A E/9X'u~"21q,Ch%噞Xnϵ0cjM*w?e)aԄh&@foU{xc!H* 6 [UN4-7p)Z>Z Fa\ w];Ph)xIwLz !l!rzM?$]t࿾Px{7l7w]O ;=1Ogt?D0Cm7P D6s/-Jz[BݡgK^:DjdB֫PO57x-2aP/WT 5d APRH6$܇0 3sw'dG|&;_K<_CA®56ߖl`dJG a}ć毴JV%S`:OY&mع%@iϧ?ӦxMr"$,*3b[+Ǖۋ:@K[ƭ VgDփ.ӌt\c9yy|*A< 4~=TaP,9#Fa Nu֐RԗO}Qή*I΍Wk:ɾ X/'o ]x$ AJ:%8 Օ9F4ʼ-Y|Z&/)Bm*U(SWk&~{ /ݡefcMY e;0Jxc\lV/aC~aI,쭚R$a~K D$9JTP%'NTHB &5Hx*oVHML5=۪rh0 d^)ԲOWFW+(84oƳT `yI o'#9,_(i|JL_ߙ:Ne0`ZPX/&aHnO.JUOA&z$FJ-$Dm;) BVLMcTUq (=%;e#KtBpc Lv?}q[+4)HԨj ]Or?l2UFVWY`uKߤG*4 4U&w"Z 8gU po/ѯ￧KYd}Y3#Qj~$Nw/J%LO^:9^mLv71mb+$٠ J>5],"誸%."UM 4q#R}I.72! w?&&%;z0fx|ЛJ7û'W96+JiY'z9l;%<Ux&3IN:)L/\]$&JK:f1<7Kgʱ5ґO*ִ$b,nF'"Y˗·DL^hCˀƘ727=zhЦUt[4o-i]{}1ֆ^e-Z^~hhirɴ<~X56?@?侾O-ٍ#e뗿ܣl=>r>>QݛwYfYh̍VӉ=^`7>#X Ik'D&Hj'v#1*߲OνRuߥzIÌW~Z dI" +ȱ-OB2y9j_d:"A:ՔL a=y2J1CQ\M*ܖؕ?siB ;k{v("7UdgdxG~HVW%YE*!4F$́Oԓ>+1ͽфfV{[LǨU#]V&Lmv]KO G 4~(*Aط\34N!G g谨FaF HިBuQk>`QPAO<59`>wГh8ڎ}I8nS>t%6(ۋ31G$$?r$[Cjt!:#[bZ7ɑ- XTi(гͼWJۇ@:H >[j܂DŽX@͢Et Vk!Y2NMVV =6Dr2Jbc+HB9FUIjKKzC}чȌ*z 9\NGjyqdFZ΍l@ӤnSu9r0zdMaVoڵF`D6cfL%<+. lݬD\3̻UE7 dn.z^6/l8@]8SDJ),DYriDZ=)DRۇ8k Qǹ.nYm'Foi{'h^K3k̋dY夔 TZW# n,U*}g&. ^WEuz?Gp_ LtkTP!}>*9dQ{@.S bҔM7a+n!#xWPn NUU]c SM"( w|ͼngpҔt*In*sTP#/lǏP͖MbZA4nvk6^b/~jn5J z8,q uuѠkD}6Ef}\9`:U@p5pZTjWIE0#+ rGg``M'C Й WQ/ (QvzЋi35RH֎,K$\iux\mrN *yK?ݹA}oj"pŗH!-~4Wᐌ?_ cRfncq}Η@1b$Q^J0;›Q8,ɾ(Z9rUf֍3M*]fTT} K3ǫm{(7AusAx?Xhdy#Ϫpʃ1)Wn'.ʓǤ^Sh2zroN+r/ )ɬr_RdA+?Q;cy"&dY".us  M6'r_G]"m9wfq@j j /4i;f1Ԃ- އTpF>b dHfTDzzZPj>XPڊR[@hZ L޶<3쏵^{}/FO+ >dWxo ~ f$W'd2ePBzFhT V(҂R}9rK5R]drϡLA÷FsGbDrqi+a$rn\rw $U4SKQO`1FviVr,W'1;9>ɫǣeomU"1oL0/ɐ$Hi/EG@5oײoL::A49ũd T$). 1 c ?U lzal w_9_'>y&[á`J*g/Pz;-T< ڟ55hC__sF&eN%-R"LĮ>FjyeBp ?xG^uq{ \2TV%BXH` \6,|L^b_^J8+E:ߐOxGxP%I@t^ڿONŴT.`J3x,$g8I_ q*fXAVo:\>_`١1ef~nQ*ڢ%*H묾׎OX:.HI\ Mt  |{$[[µrܫV弽A+#ic~ aiI9`G:q {e>#Vb8bU ?Nu9BU ޳{uCV !ԩZYZ![,Sy >:XwtCXNjDG_*IC#XmGkx/]\sj\|oqxܮ>np(-&DmO8"3".>xӸ%P :ɀnC|pbٙ S`#LG&X#&$}ix l̦?,rl,[lP/eG/fBRXHFɌǭN+[O\"Or3\Lp[.DtSt\Egoc@WNnVqqIC|֐L$?i׃>0us/z}:@3.ĬzKab>&&l -ecf7kw>mڟ)JoAaOȺPݼ.TtF+3"^س&!ř6.iNhe$Z&H\}(MKXjux`6rMe 챙ܽ蕗I<*n+!~ $P6.!qeID{ַ$}w("ui4u{4Sy*WHX-;sbt}nKamg 5tl *`FwF#ZwyWv~ot:NQLg>X)\Ʈэx O/$q0ߴ ں=:[]=Eln +,z?\Wp:poxWЈoa*`|Fen]'6L%'T >y`YI.6o `;+IU\aF[koɅh%5Ww'y8w ŝ8l裋hۈcX1nV?fKǟ sЮ,n1]ۃ!Wuv9eU;NL*ŘW]c=$ ލ ʼnw#wCEU4* gK \f:dJ`ԧ; ⦕Fģ`9z ^ZT lX $\AvH|&b|h7eN#>WP7ZgV-J#[%V3Dk6b-7Fm7ƯY#_7g*Hn޴b:4"%x[o؈jz.q>jT=_782+\.~N>SN=fyD}eu-u4[PMǀ6'oȅ-[eJ:֘:+2tHsޞ6*_D}` Ƌ/]ׁحp -(.j\ҼDY:|h\k_TKNhc>pCGT7إ[|>oxxWGFͬҳB`f!Y$|jV;e3.OrTLܐW:XM,$;df՗6QE) ZAo)t#i*dN RPr݇^"%d<&&.Ɍ^!2g;>^ 37'lFjEHf}J m{ tv^twx9C8+hd#c%$uLeDfm'9qV'Kaoùi.vMWAJ5Acb.)|w*כy\ibVSRKHQ"|v#ih#j gZ{?tq_KY.]h FK"u|v*8.DF0!&C*A _ VL"d\ZH:- H]ܡTmʎw6ꥴ@&a9_wk)}_t,+^D)7BA?}>Xx.qJZZ,nJ 6-:;BFS߁9# KMA+1?Lj%%o=%-MQقA` fMF"w02o zxhpYH K&D{^Jb׶vX^9EWz~p[TLHDuuLHD5@6^q^U.Z!qR;R\`e fG _ gX >VCIȜ?1o-5=jiikR?ۼqhf3{gxh.9JrLoH%#/۸<9)I;TꔋKľ3F6t^R,7tj`M,Yq`ZNǷÝ1IK]ogdL,4]t5`A6Wp{ZA=yœ|6E;Br=AA:1,YCX :^yRDxw?Qi&IHΥUqf2tKHۃ`dKq0;¦|lĝ GZXAr>ŇNFxep~AkVx.q#ݑ``YrQ\8O"Hq?k$<á.u|%%q‚3HPb|<[CY?bx>PEqr*#L ͪXb?t!؟k4\Z^/K7e4=ŽX|'<?*td݉}&8m !0&qI'vZa80xlbyUߡChӁi|Vk `ɖ--؈l5_V&< {۬a2? c]v.V\dcMp-wKzA<ll53;uj6zVCxYI[T0}qi+9)oo{ {{־FY\HfƛSD>ÆΥyT 1+X2zfsQ8$W/{z{QY{K{`'E6ŷljL. F@-77#15#\.Xjx.r/uV~aBF%c-u1%3r]cN tqxz)ӓ=OPńfD>! i@:4R05vZxjl6Gl̳cRT@D ZX+V"lC`( X?МYeFڧd[e7.qPv|o#=L,(quTf˓v~uޕ~DiIB=\H-;c+ؕLOxG}+%?ן?S*N,-Mυ2HaL*Wr׈hcbmܯ^6[>~%hBM{ü~ z|{NpLFj5J/\:89!sE. \dz#FHr= H+n & 0)i QbaRB5F&ЏG},3 IrPV%n(oh5#<<ԫJpoP mSpOSRҒ@N!rS|6<:nǡU+_^F=E0E~z[UyC+K+b7$zb 279Sj?6x@ܣ2^[iP~>h0/n#T>m XfW --qԘ1j",QzĢu:kLRg4u?*\qcpEʵ-܎xss%즴 o>7# 9հ%8ܰ1Cչ5\eaцn6^BHЪ{n)Ӕ.q~T؊E/61&RII)״ ~KJ$Ie:jy26F4U6 zIgrph>eVaO̖p.~E7_ G^ ]&:6tG w0Dہ>wo<&͒OuM^PlW(</MꛦO153gΤ9͏mUh or46ɨz8ij-e`V&% J?ujfϪ„;>/'4*q,;Fa1[%>ܿL;DfjfG!9 ԁY%dcDnEw\IZC֣#"ߊbBGCz^H+~pjH^?yFfJ]0vM>ښ3k6-ծ7U53W psl\_ 'wfYz93bwRti%~Ӂl)),צˬF y뺵S 2\pO~pI(W4_1AR89™ I *t&)%^upwp-%1{+N3RՆX42*餎Ʒ L2$ &|A,&/0 )%G)I"DS){L,KL؂'2 !()?T_MI[>D8;qmb44BĦ1##tw;⋙:0L;pw#ϣu} 4EAam\1,JuXI-@ZWף p!Z̋[pUL9{.t>hY;<.†&V{1 ?tHŔ^a2P/;FU)V.a$<~QpD"s{҅\1Ww ~NprýݱVIJYq~kI0J>3 5 ybftx˸dĵ5iEtĄH%}=:97L&jD3>UFk3 EKjYIM()>Ķ2{ЍDfV>@L#|˧`k;'Y:aR'EX!Vx)+p||0- Yz=h6)(ҵ\yM7ESۆaih>ZTitߋ3O\:t Jw,;Tʛ*|>;`$4v #\X~>-Y_&wL$޿lie~:T`'Zmt,[!_{#.IMkMjOeU%0I2\X9qރcy9Ch*XSن|_ w>}&R2/Pdlmxٌԯue+Le7ܼ SRX?f#%t#^_ϥ W #^^S[diLMYsCSAVQlaQRS×"Hxt4~Ŀ`Wj^;Ƶ~Іc)Cш>֬¤Fa+Pwa}t»{f7nʾ1v +ꧻP-gX;E7r~((IU9e5w>%L=cXu3LoRXt{kvQIn5K$ CFսއ\F#hg|}6>%+0ˁHf"Z9odK?>B~3S*6Zr'⁒1mOnH"h|I$o5p"g+ .qb^V*f\JQM~WfNS)IE~P4a[P֊~\egc;e*W&_ b t7RH?jO]efX|:d汖x3g1UKY fؗ(C.X$7F˶Wav 2vlXɮ$O(Mey2GݔőrS68Z>]I-|*_/(*ڶw1_r* }3&?ft.BrYb_Vn3 ?%={qJ޿S{kt o&[4;JOH'+E(Ԍzjtufz~CZ}JAJ󺦨IA/-Iڝb!,Y-LOt.C:8c 3ٞ4AY{=Oa#{_Xړs2VNc[? VT9L2Ol_wU8zhN:GI`;KVZks!'|FeO2=L 6Z/ޕB*~./"=׃^x_R`ّ9f_̎HN$>OM5ϩTJgiN)FJ#~d>\;׿{0zQR׍,+0뼾bq3=t)UP֔aDj&WѸTloߍv|zVߩ N_vQq?N O0կ]Fq{¾ɽXn$4y6/}*9 uHH4na-܆,8%Fb?apn]7+d=u s>lx"§Be8"~jh&'*ǯ N1.KFmE%r7E4)9 ޲8~9+ۦvnPVv`  |̊Ȥ n~}E+]p4@pg;۩%jO|Lr (W! 1 ږWJp SJ.3MTGWʸM/Zg5@ .n%u[)ʂ Eֳ9cG~KO4jX]:$OpD{YG?83hg7捬3#=c] a Vn.~k~糣c1G2cjp,!vUQP| ;h."o4s6oom(`n;_ѐR՝Dx -؆u5^#H=Q3+^:TTC]nmۓ6ZJn23bEVy88_O+=.2bV^A\rzwͪZQ L6+ɽx6u ?*HPdlĆpWQW9u|džQDYro/1WRBdcuϮZ\X*Mt9ѹ3$R -K;g=W_t0V1~yn3w>ƙdخ2%B޲~T8}>Ts, l_냿X@kS +O[ӏFE=oslXAR/0?E::34y赶R܋)*4n rq?X[/>#tGY\k5RVdwW^M}Ts3#3*ߐyzv/XVNnFkB!.I`.@鵡%[Nn~J% ;z~ޣ\\kkUG~dze5wc$V /Uy#*b!cpvR^hd6Q3^@Vl;O(O)MPsng-@]{18ϋ?5PgWA);pB>껐3{FZݣ-(|^c& cc ~&ʗZ,y 8{z؍K7)'k% 3Hz*nŷw񅝩oOG66Fmãw{;׃,&mbf aq騝sbAQd%#KgS}֥Mm_G<5pSx[Ta1@UA[|/~@[6A89nv8vDI]&T9v<}s~!|6F"uI=H1 6܃?[Abp+8] NW{׆<2] 3Y c#I0 C?cKk3$feeq >/kgn*iи9I#9;fmA#;.:)ٓO#U֦Œ[Monmے~_˹*Z=\Y˩- H5~Aiq|J2zoh9"Vns%f{:yaո}\r2B~wC6Y7r?#p[ AW I*| \=8d{-$ʮi8т|ƾAS!hbݘvRwM9!tAT>KU7:6}bmgw!~ݮx0BR96悑MA WW{p`G5ZG#~^%7!vz AVvA84Kk]_&)akkzM\'{,7M~>rG2~&͆dT0c0*J,Y,m]I@]>23J:nNڋ ɿ?KS<%?K0AW@2|U<>In{ї4voq:qx0 T?a) C=WȷJ?|`&N 5@Il<~<7(n rtHq>?=m?y y/s+]X6Ë]hW$Kg𳭝Xkn-JM2:94s:zlK^^lX du.|YUe侪3TyUHojYQ #KV*GYWkHGt,zzW1g]h>4^7; ګtュ+l_FI*=}^{w&ޤ/K|Wߡx!01aǒu,;iLvs;5We"Sv*[$imf1WnLRon0 vp IOkM3^eUߜkyБDTٷ 1"܃UIٲTycU)&ԓX UU*Hi E_&IGʼn^QRp .p)ܸ=eKs=em(g5Fl>mYR4-~VW`9֐;4$v^,%ooDxe MDžvGL@^;Dާ 3PHeQ]`zL׶~V.$9**G|eX{;|ah3[sC$ed*cOc"G4G(+eɍݟ.KI-+,I\w@ c}3Y5#RS釬SdO=]B܉Ⱦ=t("է#, W(^pQ%*FZqb 0?V M/m84xxtMn`7<,puNlʁh |Y8qYo0!d9EsXɳ)Rg&,MgHKL\xB')y~=hl>c@9g\]Hir:w:GD%'sp(ya%cR7 @6n=wpX DI7Wscu&k (%a*zSVu#u2MRZb[R 껰8@;>Q5gؖۉEOo՜k˺ |o6K),nh~d+ll[x5l\T8{#^z !9/`fGժbOVDx~>Pmpބo]^hRqK\:n຋ox+7߽UA9`O+m, 9pamL'@Nx{.؈Jn;z{boD Y~p,6 ܊qp,|,q@ tNdnWZ24n .SK.-l=w!é$*Pz $qo0k?J/C@s^&|*h)=v| 6rOQ^iC>(P#:BEv}̖3NdGTZ1,cП6JPANR; C7ky9|OWEhleٞvcG#H0Q4ʕ1 ͱm~qns`آ 1HAZjiO?:U E҄/1:y ›Fȍ bW7<^@-6!B>9yIy8]];z쭳K_Mbߗ磡=7^ &[uo}SDPKfBU%kLgݐ/[5\!=?؂d߰-F籠ӋcWi`ZbUkb@H'una%y9 -6 ~7%r_`r@qR ڛn^[`i p-"fk[LE";p->@!J1xyT׈1=Ց Lm@ҟb av&BY&[% QsHLoəe^"\(;+{I΍/n7+@HkP`WC_$|˭q;ͬGoE| Ե;h01abKZ!pj?kh l8lί_W Uaa.ɍA]'5/NTtOYP~Qo*HX:ǐq&Xy7}5p }?o!%BuzBIl6Gjtcs"x 9-q(%A allp(Q(KưA wx(56?~wrH,tĺ'5 9=nq6gX1͎(XDßFMaHE?8s_\(^o-%`< ݨ㠯Eha'Y0/K0V~[oeE,lEZD^ϓY #yhu>]Ҡf! 8n ~ %pepw^"VeT C#P=pyaGMeǓ6˒&?BVf^(a%H340I/hF'5UFsw+I$^˛s+-bgnH |¡ W/vf U\(Dµ='Fyא؎:G1:7;^=ͺOF+X &\d9[3XiJ1UZn!/-[$w"ԞJGm ފ j"WG|!aK+pq܃ H ?H|Ql(511GJ,, vV`N?%yR0"tȼY|Wa<]?k'L}-W{;|[n#]SAcP[q:M:B2NjH*hu@agd6\01gKx.@Я`a]mr<ΞyBLQe]moC eҳT:qZP^ٹe^WSͷٴCtM4 J31r,R~fpuL~S~Qfd/* qG\}j`F3^Bo5cMsQFh>M_ (v2f.6 gG7tƂtBX~ݗ邊 uqO ]An2`:vLFO9nOAM 7?Pg޷Nc-(e,-Qf1XAذG7B95f !BdrIgu.Bz WJ/b}h(VD'|lfcxɓ} gpnmp6D֪#-}3H9ϵJ*|C'A Y&JSd'E0σp!6ڜLw-o<2CRov@9tdoRA wr֟`mN<4P[7ؗ[zjdk(Ato a[%tnb4.4- (փ!t_heN-nA ; Z=6d@gm31,>u/|8eA6] `.xפ_*VǣDRNL@]XlpF)s؎~^\%w =GÛXyw<}qq[FDWnϺ(UJ(VCf<-=a S|uG NTsF_ɫͨxlkp4/06z{.g!oǹ 4^|~b[u r:9uMOޞf\tṹPkjB$!𫯢5p uAMG)ʣ7m R?s+dn`A3I'eƧe?[lKL@3w(+kJn-MmԾi&fHi-\މ\`2%&6(Ԙm~ճrMQE)`_wu%V Y4bx r>+[¦T$>i$am0 aG' #ܐ>y4{Gm'rE>XɊq - XlxS =w=TİYI/^ivm/r@LKyFi̱;əb þ}u X|3ߟ%LRWfj^:P汧ߒ{hKW|j xN9)q$o} E0/m%/) T[]) lwaXb:Iɵ w=4y#ѥ #5^Ʋ gUmUՎ>0QoMRS=b9&H7BwXv}O'י!pn%6C#X*+@ԌqVs-;&T6͔GTX`*jGȟݹ{`șmTՑpR>졒c19E=V0|dSAl wWa{d-"waY;>L+>X)Ψ'U# 0-Mʠ[b̗JϳG;[=*x9U{AFRj2{~!VCݕIkbÎ`[8X5g7u0m'6}WXw/6fR:YDzAlf.߽E|\A(ƾ'd׊U돿;-aw ]io01Y)Um˪׫C^wqx74??g#>e@ܚ~s;"q W$zi1('3rD0tbʈ46IN撷- (8`'<eMO5qp=ПÿnQ _~č ;+^b3 9DL¯P>cK_CAN]N30j#_N!|R>πAxw hw͇v_3W0:썾۫|e }Y#Q'orlx92gXc?}dɸ?*Yipb,`osK.TwK8gUfZkחa~:wAvr[C:5G\W6v/Muik1b zn>B6aAH*ң7\d=&?:ʉ2>y@e|='πcP2yMd1{'*Bv4M`7r¼.(E)%?0+G~> FsUXOA2ck!ss#ぉ`Jj:`ک"ghs"UQ")|U^| ٞ|oH5 I;ڼ+Ӯ,SN5^P(phU3 $7CjR^4k?jig%>B5^CoS *ð*QxV壮z& DQV5Z#pϋ'i@!H&ˏIJCwOٞ̈́ &/T8;dQB |KG1rQ eulZAaZJ 8jc?Y;Jnꍩ~~PWt.I9D|X䑅t<^G0*řYlە{ګ|uԻWDHk8lpϸ*b+=2b,X:1/8x,pjSqQhHڝgvhG>:tD?`2a;:[0>iOZ+1ݣ- AĊ1"<0oIAu*Qw%'Oj(9nnAX%7R͵ZJۖ#^܏)ݧ،BvvҲj*Ц/`4Ds D\c>>\CA)FV75)~\ [PzڶCֳ?oU0 7)eI٦,!1$IrKB:m(lRɾe'ˈPudd36ٞ9yN{,TNh9;P[ª6wx6B-,pM{GrqTr!7DDL'jgbd6\J2$vXic}F(1h{*{r9Òen59u K4O{CBwFMS>GoD%طe sEMKzM6uW˰LjyKȅ@ز+OWްLM+Y?&7D5K/1uR@G@+z.޹"hǠ<2.tr_o.] K"٦} p6V飨.1[K0Io݄ż$_·o 9=n=`?^[>:'$b2~C.1$w"3Mzegv(+Kyxwj,o&g|VcY9gk**twzrB M˩3c{t~N/^rֽ&'VZ3{ڷ8UU"ָM`pu/^B _!8ܯsrݫg'wDF9ʑp"ik5hғ!*Uh BN8>f`9 9-?r{h>1^):Lw dtcm Q)iB#qyB(TuZA͝[,+6+v5#K6>S[K^`߈kpدk: m QՋ%r`B?* \i_pHdgGndl^i0?dͩj}y*D= *h=|sqY] =179^pWqe~{!ql'ʍW3S2?sR8") "GHoYm׆|HKy#A=:VBzTkWt$yJ=abyѭ\|@,i}/@|/Q9U nn NmmeLH%Źv֋H׵Uܲy4sy%l1ږ}z}s\ T ㊃D +bl*sg<큳=P U#$/]ڸBi_;'~Fl6<7ID.)BOC=.+$Lޭ69~GE M_ځGیq"  D눏̭]XG?8m&`$Ҍ5õZj) ̿7O4e!/HH: ayW_C^"$y*! ioOye>y R#+&]Rv[[+&eAͷ(oz7zp"b˔J OD\㜜])5vr7|j;ж0bz$pPJ-9$xSiQr=MH͹:/? 7CGFj%ٗHּnP\';-LђlOv,*5nߡ|!MQY- 1oO ]Fr]4GFlaD -4©]fwdUPM,42\ݣ(~jvRO<6boҿg̥ RFH@vThW݇ Kp@сzǩQf8WF~D>MUrلFN.v_Z&>[Cz@&vF5~X''M\-vqxwy* 8P2Zt?g>$ܠ\-t/.YZG/>V m +RVlXsla xKڈ-L\cxMŤϖDS 儼O@|pD҅sFN۲&]S@<6?:p^A,4bsg8}uΤ<>]gqUFh@0Ul# >F;=n(YZHdأ"VGzO5 ?9fa n :\} /~bF?v~?e ~SoJŰn3TlZTJz/TF3Op,u%=`gc! ϞxҰh=1}Y(pDfwGPm`F0PxyCNLP8įᶓŶ'46"r< X4ޖMc*&`J?'e^Wk€BB< u\ᦝ\,!X04զ>fHb#|wsZqk:/m' &0Vy>6Ssv`9us%CtYg$\B[;4Ů$GKT $p݁b"63r\9oe-%YD(|lG:?YT蒬yT1ڱ#+̃'%@AZġFΔvhf&y(t]Bru!Tj%mqqSB~Z;swذ؎3X&]d9ɻ2` ݟho N:qϹEMZ^mgrx3wU"ۮ5c-ލ|)30z#d Spcn`1oQu+x)=WFYg.uZd*}''!ޞew5~FK+҈0'XTX;i}g#QE";k| \ӏ5|0 9&7!N;S\mQz0G+{IJh Tf6sDle.cKe?wz8(0F\!ʧpƷ9KwrL)_s&޿Q%2 ,Yŵ?gZw|wh@Usrbwg1Yz+;ZBsݑzLކ Y"9Cޒ wi:\9T-N%1$tRW~#* 0;g#T4rxy֏{sWlNEoe㝐#(\ vETl$^Ε; .{Chs$YgSyPv +}]kF7^c%'&cUђfP]w,k]_'U(W59[Xdkg7($yyѭe}<|\\@?*ֺײxexS\R<9 =ðu5zԥӲۧl^܄$;Ϋ!FpI'_Rk.607 !^/t"ݶ͓x[b^(u+wѫ}WORw/MKr6ʎ~GtTR/f2SKWm(N5>([91oAL33Y?SOLjM|Y qFe3U^ ҕgo){\Z~RomAx7j1!$}_ZdhÄVyĨ/hǰ]\NgE;Dy}uO:a@) Ã| ȥH4VAx)7[o3ڣǝD)f^Ɂ<ձ@a~A:,f yԉl!ZQz0)fiϕk;ѾزqO*NѢ.ޥ9C}q)8`9U"cR| }{ݡQ}Ҝ^=m7LJP Ю!nԔB;dA7Z4M69/fM$Pb]Y:O Bo=X:b'ɺiFh4l2.k6&ɱve8 fFůP=ULR-usjZjgFStԫ1 )}m.o;4@VrJ5YE1Ǩa]ֵEdFAssͻylKH˻=7Lk-R!$]':laZׂ{_gwWo-'N uq|OĿ >ʭdDΩ;`(2'GNq9vWs0/cF`0+i'#W@}V6>8~n,9e[U26~[KDM.)+2j.T^el2aUy¯@ub<] [1-|D,=Eh1+?W\r|ʜuwT|V%h]lJ[5@Jc&zF ]j+zxeGάLz+ b`},81b='!ӵ18\Oɉ./fEL~ɱU׋Ca:~|H=mz2'*<0ϝho^T~#\k}n[#~Xviuo`7;\'k(%&['KVVgpo{D?Ne3Jfk T-FFn(#+Lܘ)y]5 κ>d*վ$P7z=`*rfHre /Z8͝;ƨiLI(b(KEFYH`q Vh} z_8(ٟf3lG%wwPn=R_ݢeu-\dsD/5˂F}m+xvM,԰-3m&-$};Y`xv{*cy"˺ZLl ٟ-k},ym (S6;sĉʂ]!ZυuƳ- pL}#A,w"aA?|4]6$V׺(WK}>΍")_q-}kq ر}5C v6)knygmIAUfM+D8ogE?εJ[3nfKa5OtLMysɕ پ;7,s> 9jQ?M]J6C 92钺yNۢg./Ǧ;>j35Ƚ{uD)/eƒ];e^Uy[.CV }jZ,7Է>7#iTi2V1Vޞ>CVpox+?3,sGz OO$6_pf>8lw;dIcl٭wR #R)Wm E1Q Oc4:ɜ1|鈁Mz:ז2 ht^riU\E8c␾iP;S9R% F!k"R40i4,XSr/AAW;ۦ0X `ކM/vt@dOك&7 AzB gPaz^P^IӬQ_yl k=* ngHHZC"WT&?^_- &-.O#jhcAg|S5|~~ՄUw< ; ضrx~1#?M`~?u`Ҍ!FޏtM`Dه'qC[g$5Ⰻ*;Qa;j?syFMlQ#9Jqni2웮&wM)O"~s/IQ11&p/lH tU`&wޢ][1s|ѩ/IAߒ%+8oCgu[* UtV>ִ1~wgO%M A/:0vy@mJn./(r՞Hx -7H6p rK[V>32B]&y{ ~W'RmmhA:<jr_wՌcB_:H`w @ JA7zO=Ɩwy&UNi%yET^x?iOխto1~K^AhJ#/Y'80bXG,ݖ-渄#7\_)_mN j?T[>;6V8p]녈sHqxtt-^#RCMqC{SD~.}>77u4PfS$:hЂg%-hϑ V"_F6.Z XG4cXY]hޔuNN;f0*]xp !6:ypVikrJZ7t?>p|d+BA# ?-zAv:ϼ~P":ۏ ?U5@傜ܓ\?.X֐{F@0 a5Ԟš[.Z2!QjgyKDn)娢/`^щXג!/'JS< YPG;e,{l$sYƻez=4F/ja{.cjj|$]V&^\>d:lQkBnGaq{ [!v ne=(]_ l?I{_O;n(] X(J{e7ٮ=/2c׾I!9BO3NRoc O^]94d17(w,DX,v*!qN@ I֔+3F,g\ 7y筆]f`?s5BnB\V{W^鿄#M\PѝF0S)hpom?R7xD-R^%)(ھC@bP#\}گ),[|5_IV;TOq[en*E`'YXu/!xr?֞#/NsI}4q_<0"Ҝ?VCe^N{Hc}9Lw+ |G=|0 6U0v#`:GY^;pu4'O!e|[h{|2 g= )UB@߅V2E{`z1^ ]xfD8:臬y Ȕ fɠW1[^q`AG8~[7ݫIߒ՚|W .ZF8JF D­pii\bcw5C z5,G8t^1^f, =֗ލlYk<ƢjY(#XhT"hBt\#w|,dxkCлO6Dd{^Đ{1iM1! ;k02~+ 9wJL?R0yFi0 %Z>X M\0,` Ο8ʲi<9qz4X9d'=2ԡΖPg4PEYG0:_p DS0kp7z/ʃsIQPg\iUl,ƈG`5j j7#t}'Hc5c]N9 bC8A sc>2S<^) 9BW 3G y\1F%\JUq^{9&jw_PN7tS%sn]DmEqv'V\ݨ^'*iǥC&NЅO94/[w-K"mnLO^C (Wjv2ڄ_J_޾[#ߨ!vxO|b'oCԀWn{4(~fv+2A 8ЭsxKO"Nl}UE ^ضn&sxbj HF%Mw.XPh4nǒ;~"=e}#xQI]D}fA~ShxnN=Z$\PKĕF%0Ky*#>f (x fՉ`]=~2#kxҡ<䅩4qC,0n')5tlGcZ BX<_\X(?Lh 4`}Ӑ=Mb0^a$`f0g;\86X*.n;/3:½´p:Tp 8DR Vjyꡂ1=&3Pgr6jiGmZ]\=cDX۶tY3U;nLbՋ(&DGĆ68B4v:bngN;;‰ 䨱qϠh^ώ=IYk0٨AN{ ]&b+A|]y%M;ة=vrDVz_lK dDG;`W_ <a 7x%\fLht-wZzjF>Q`½Oܣ>~W74 %Xrdy>PMԶZg5p}|bLWF#b<"i:)HۼjIlZ KԈ׆dsCwu~n']p̤#ץ:>fs{my|a;9wև7)IԁF )GA[_Ӗo*(d2̚ /56HT1eD $0cM$'ƒNj s x[rٹ|s_B_~űe񸈈tPaW' w˿[os?2>07tn?隿{ۡ 't`fYŶɏxf2q!]N1Ah,ٿ|C 47#a9$ܝj4So[=zsz+9˹_o|ۀۦhdwm1X/ʨMc'Te>uj"4`[U>rn3ɀqƛ^;B: A-3GxoѮX)"%ZBl!]ZPy5VL|ƍl;OblA)lQK-;:2n[?{apĔ&x84BaAΏet5RnlksȽZ< ]QpF"{mNY72&_%p^wZAyEvrci1fk4~&#+!LŽp18Jn@1h+~^9?=bK7OT17I{pi4qy.)Y8}>]&SWVMiOg l wu+[vQ=< [P Ie0<,أ׷Bv.;H{,9oɝtX+E +k/A%4qԩꛌ."`C6]j;۱LVIY)ޣ@vi0WTKH|"bXI1naUzuZObJCyz}]6>6K&g}`Ѷ߾NzH+3p,jу-S3eX%e# sDKOÏXΝlJgY.i%r 7(0Q 4.w _`>}ĺ ҅cR_LF;_8f5;cvH =poo{A$֌z%|л5Ӛa?FR?7Ξj}-qKw]RaG} Z,%[k@]=_? Z| {m-v.-^WowV\ Zj $߬C?&$K\^+GHRpQv[<}$x2776R+/ѰcEA7Y2$up9X԰\Z=} Nb{^Az"m~](LmЄN)먅#ض % czrԟ>8#d?2J3o+ggc^=`cH'ukv n'slLWL4b(jeL|h?/t`C[\!: 䔒dy}Hƪe9kuoeR߁YZx oڣ& ҁy1ayϒuC0.8 ޲ZrN·Y0^xBa"g ֨c`S{ȴCdqJJ2H\'GngZy$"[_p OAy!0ENxemIvb In+z%, Äȭ 'jY2;Lq𤝥̘`4R 8.P)FDwo h 4 2t4mw20sĥb^FIF&h-./r *3)q_9BoeE-mu+MLy߻O^~j9eMUm̚tUo=` vCʌЋџ|o$+`>&>K5nOdYɑgGAX[qk*L}j7mR]-~mWdz8wAz@P1 ^m-.=kݓcZ{ƂAc1=X_ddK|}w:Ǵ[9%9v;uh9P߶r U!*3\3K8:T8X3Op.0M~ cs@K8[!>?R9ln+T(q-ܡDpi,W _4`MA qzFgʜc«. 1޻jFgE2/:$#> :lv' [X5+w}7zzT4kҊ&ês(O6+<4ck,gDxt$k`5j7~H?x&i(v[AV /rU.+y => r@Z9MJuPx.qpSXx% Zs'=X` 9kR8ůdu^VB.j^_{D f xm;fSn-0Q.=KIpe( +3PV7ꦈf>lʠ#W,:T;=p(I /~&m#`[Ȼ޶jTU*CT+bPLhp*WqsVQ]ɦJJ=6$dŃ2ZWSCgR^+߯, iYs~9bX_|1Y+%Tb9X3ұ!%T-wRɜGbLҶu`,>N{Oq|2jm7Yr .(U~LL*@XUڮpԿyXa-%ҙTMB)3Q>aFJG'E ׯ#'BPH<}A^^vpQuMl#27mp;ѥqlMcD=aYg3cYuՕ˶9GH>!CV\ߏ*+nSXknr~U/{QtVg!Z"b.&<O৖8~_JqM5៷O "]۴o:j;{Õ%彨lw?Ab^K5THk*pr179wZ)?T}Jm2bw}{B;>wz q,R]h\) lث,f탱Y>U'ԕN(bzbJf_ȔM(R$Y'kx?Qqt(*oR+_F(>Tϫk2|'uAZJauXGA4eM]Sx{R{yS^Y hWЩ+=ǞAʼn̊Z !S郈MA>}ZZ1Y>2q;GQ!?5;JLgYEX?(pZg08@aمGM_&v ƅ(I<강ֳCp;%sTk|2gC3P-Vrܕigz`D1-55UXJmo“C]A2& __=ao䱿wb56mvgn7 Jʔc1wis2gpE)_״+X xҐm4)-fXlJ(O^Ikp*hثd|Nrزr/ Nco'P$ԛV3bg xA(ǺREbUX[bUo}Ww,'nX]m0[ ׏cSeJ I |J0V/+nܹUa]V?3{  }JTQ{v=K׻[J%P7T8N`J*Qb ӣiRgaje RX,Al$WV/6kDy:`,E+e/+U*%J1IAcy8p<7?IP$j6 M1qyiM[0gckZ){لuT ᵨ=6WJNz KIWQĿ7^/ 6P4)[%W3T';fwۏiGW5'᤻룓EQeީfDgY=cQĦi՟]qv.ݔ '#H)p=Z\Ui{Q$iCXJFbͼwD9]PviE|MU.X+9µUJE?i%TX KM6n,25~%E QXB:~%T+E[FQ\9I6]ŋ:UOY2T%+[oX9P+ACdcz% h!ю3C CY[7 j;^ Mku&H`^2@*8b *>ϳlK[O+D0Foe~9:E.4]3x Hi: -PSk{8|5 ۷V+D~l''!24Ƴ9yXaa'mVćZ)@SZ[KӽVaQc⑯ۋ`Հ,귂^UeޔaPZdwѶ9j^sy>•"# K 1ȉLs3~rcnY܎"M܆Z6[^c!¿߬@\QsIF˻>pFVB lR/#f*z]V!Y;k _hT?e tj`z#ڞn&4^,Gq?  fF:WGkYir"KmE,L)m.-R#&K)SWS^3RR31K=&:*.I RS(m&EmFJcbJ*)}/UݾlRԣA>tᏩ&9tɫgQ~e9// x*v8s(HY&Q2 \gqt SbߟPe,0"Y^|&u/"o jVQ7[&z&j(N=Y8J^z[ >GGz(щhb:N3QX]%f=xK Q 8Y:AÜ9 GӃߺXMosҍO1bYKa\vþsPUM3X⣻m ;\,9]< ,@z>M,bf\d2g_ōȝ iC|$#ҝK9xL4d9Rɹ1GOPd߆Gu>iI@Y>*;\wT;{W@t{&#*Y}L~}6K#4bfV{W""΅mDd.hP 3]~A]rLDO1ok$I^P)mA[5nO~,cTG"ZYr$<28n, V!^@#|N&X2EiZs*5}$j_WKTBy=zPsai06 7Le|pvsjlu\)TܓdH[Ԑ~ԴZ Ɠe;hj\D[v#٥WR%3L':HmI(_=YY0hل55M Y06IeM\S+. ]t(X)GTa7Lӱne ri԰3>Q4=wM􈧌˥N3m,~9A#- nqM Z [Z!] v14þc9лOKy];pP(} 3Q^#jM+OPv!b/5sj>trQ?2T@?эUh0.HoR_5ɭ#&y2ܟ)'S"L>ßW:ןOT@}7DVbӢ(6aaE@n5CV1>1`YLղȔ\y16v[tsJCjgwDplFY[[ˇܪ Σ mNC*-~^ቶ(RU-8Z?vhDno]S M!+S~q^%xT|#$@8SG22Mʖs:ڌve.M.FMT?s(qTܡ' wƛ%N]GdiR1`l1tL1\\! C'"b yB1g9BߧPѶ-{zRv̱ť%QL:, K7 \&%F[q1@G?' v]k\RC1U7m}|2B R3D1H˫2@; ރh|%ɒt9yN4}3Ͷ@gAk{&7J8Yj ‡1qB:B`,w@Fjp,'C͔  ~֕!7jItlJDx7g!y\Bȝ))1-UY `B)T0i {""ik"e6H40kAJݯ#Nr!Ne4q=oގ1 Q9{1 mɸAn9,aOGX,DŽo=0I, )Y͙Mˣ9c@0&}1&L0>. Kk 3`L$ Zu7KyΨXcqkidA6%_WA=ot^ NБ!kLd NAK.)XquV7C)z-ܴ):2Y!ޛW؂hh1X)a3o3Ø0& .D*@iZl؍,1&̆$GY 3pMl3 m9rAn0GL\Ī#5]Υ/_qQ 2^2l2(Wyr#UkmS2(b՝RIppw61rHHe4m mLP5O[YeLiЇiڈ,1`gPeCpػ+[`2ا2Z2xϙPƨؾ ɡN\'"us"&}g Iz&_>?t`#l rI\Go1,~'c 9U%VѡՎIg{rt[Di8K-͵;ȶMVg˒Ks<`d R;v.~U4e<X&}k{$'N"Ƙwǘ8| NW V FXxJ]amcg ЇkO;*i["bk" G)*}*)"N˜`'1€"Cg]Rf]ȽwХ*cR+m-4%֑"V`-l 2&'큀|fm+7 0k8yq}؂g0ka0^!ދu{ 9P%p @o ض #O dVNg0ƍ T?teQԶ'cLc0 rM0&J9~O3އѶ$Yo»6ɞـ,v@8_b`Ƿ E_ͦK3@_*a.i0sm1g),#Sh`߄pv B\G >Sr@<+]Bkd6\#i )lx|Y'@ /0B,s$), vS"cԷf@0 [ȮS%Z b_CqIyd#7䏟[dža.3Yچ,Ȉyid KFdg`[^Դ_>S'< M7C*G?= mqt xtck65Ujt&.T;cM EW݉]U>e 75ʭJ-J^-W5 @> xy+{hZ-!3/d\gE|lzhOAzȴousxEB)'/yfmWZv]0i?* f]r ngTMxxۀ!w\X[ >֦}JH ¢݇hFU#^{"Y7*7nwۯZ%Cg e/ȿE-u֦Jwy+3bYSO߷5 ]E1~8nw+rθmM}ݠhEw[AIL9:ky+f20$x~] ;8NEu`S ;}r/Uɕ#?9޲?= _NNԒb#ԐRz`jnhO<0]}x⌍SBӮ|Jؚ=6H_P4 y >im& йi˨>;ru[Ү~XFc]Q1ޚ^fǘ._p ozDmܓK-E32y)U?t=ngr6ɻ r`'>b.y>}t`^)A|{e03 nĴTen f\h HG]rW<P1G :cJoP\`*^\GТ1o4> 2XV}1*13W 8ɚGS{TXk @ig3_v͠V\5-(og&  J9quλ0P'p4wH$;]f5eԗ^F託:pՅ&,:Ǐlq  d W4ᐞۙH遼95DIn ݁O݇"m 8_$`W>ɍY|?o¿}:ȵ]\iFc=(C NO hdPסQK{K_DŽS{pGw+;{y8 큥9|h~ۇJ?KwmF *Gwٽ?lT_~7Kߴ޵9W/@ڲCZv٭]>}L]QSxٖUz/Ѷ:q./i^~_>}CI\GLa/z>˯݆Bk,$)g&?8XJ?oU7UW&gctGYTBDTo˴OS.c;v썬6i 1T0S3hqAd{v*yTciTaVѫJj7KmpuApƶ>~v_=(~˖}~}B:eYUYW[dk2"x+Ї=i [bvw Nhm6[ 6*)#.K?/7I+>8BŽX2Z>q&1n_[+Zr|_:|Q(}ڔk6ѺCj&LmwS*;4 OBK1&pDoA)9EUE쉁$}ViS"hhϱ;vC7ib:V^U،ONq Us&ϥ8:PQe\A5&lͩ_{N601 ?7@i9o7#8SMT.kg.zגž$[As ]if4x{W.W UaD,CtU[W&7 ̛Ocũ4@~rD93/YrJ߈sg^u "a;\IRF2UM2RL_SP uƒQ |BdNIGJ6cFNa(OIv">˦I> |a0CIeQ{0yt9,xSz?3h2[]]J-pRc^ƶ]+` 8ya(KA{ॄP0 M%6pV6f5!udF2fkDb_|q[^P-^N)n) FJ]Ԋ(M;SwL:˲ -058%`I2y|[{ȄYUig4ʶoUE1, 2EeNf[B'ʽ>Fpl`~f5%!I<:VfURqm&;sm&7_c4F}߂?K GIЃ 8l0N*] x%>Fj’vv-;TS\r9/PbYnNCbJM?N \1YJ%໼0hj'@,6hc%:90i4#ƐiKh^m3QۿE'?0e`M;6 "*ARxRqGQsK )+z'GHLx>{%ӤZI狭tnİ`9ʍ*UO aZE3D3yn6 Tx/,j{f`rb ז߬p d3+gv{پBGQsyԸ$ FoY,M[R)wՍM޲sQ.L"xh@4fEWQt5;x&cDeeC)" 8i/ d## }g7>(b޹K2t+2b9+\ %8m 'us! E|^Ͱܵy [+Q(Z ʼn??jCxUnâ xC~KR:pY81#.#ͻYd|°p `hbn79^΋ }̰S[Y<=R޷?쟮- v4]egR"iBy]jq(b iu`؟5J+11 |&3>J[IPAy-R`ǘ~!ħ]#>ӜayU,9&r^-jI0r8U^WQ: }xw]YCLy0ĺ4xw 1'T!SI9@]N|ݏb`e΅'b"+G '4K 녺K^2D$RR$=(>l8 k}:&¹roNR?u|o&s"+K9M8hKAs vQpVoE;[S.TƲ=o(fӔ+.PÒ1HQb.XsfyBlR0b Pќ-0sF7q0Tޞg#Sl"9+~ʆɿ/mqTBxIޏ+/ٷ8D2gU\DW~" dD*Xk^j ?z8@]n^d>+ , ڕNH{z/q;.Tm U@qY߮IVK O"T[9N_~!W)"Wh2 xBۑY>PTet0t6 D*1EEW:x඗"[Aw<^4Ԝ8y;fJ4VOpzh$|Dm1Fu Џj`̆ TOÍCIko+tC$б@qCAêZ_VZ=Hhaш@Bx̻bѷ |U[ᡍqkFȱh/-b.UNQ]݈g5sLP28^sE umƮcO{\jtגU,>W㟢Ԅ֖wYH{G'%/3-+RI0  VL sjT /$"Dʽ_ޟf7 9(% \!\t@Iss"o`A)JD9o--#9ۂӣ79QQ!<3d|hCkSA BV5TJ?  ̠@" l:/|+lu?~yp̅7Hi{hKIZJgvqm(#Օnm'cMЦ޹(G9*UPsٱӥ3 ~x^96}7 xNXE< kiׯtj,3}Q{xr6#}="6yO*{;~0 /39쌙Kraw*񨄹=Ph[CDt!/,6+JI'fC5fQfȜQ̨J.kV$<8J#4z%7]au.:qKS|=8fwb=+pbO›vreG).MPrh[Irrpwrq5CBLA,D=fj&HyΎl:wHODb^/3'=5hr?Rn~a_Wd,4Q<>}-e:UwK\p?gV0.͒gG{KS[~$wo"h `TPq1U"k*dkg$'(`nK^mQYE%x#Zch mqUv,$xEc$*9xnU,+sYE>W$,MklMGF/4ǭlns* B?o !%|T6>Jը/2IlF3<Ԧع2'HȃUzJHJlnT:SӷC@vM{Y`CP`.ѿc|#E#JcQօŎ^}Zam`-KDM~RP %k2{_mI+`1 d GT8bJQk[L#1)*w6?AF'kY*;ύkR' KCiNQuV UV:iyݱ}?ku#߫^K!0H6p'=9w>*i1_w@,ˋ.܆NLGCh+ WZCymVI s%<7f2 E悐K5X|mR{!ubRI:*hJ$keIe!u֨RŬ9C?Qfps'jpQ;M0N:7P3u茮{L Fsd)C9Ѱ=d!_O%ɊvTyvk>S^QVW a\ {lg#f0TBeK&5tKIry3ѭ$Cu&w6@z<J1|~\q͵|R2"L9+^?L9 .9Ï `p>-`d;rೊSnDG?_|bsrU+&\i&r7(S,qX^m^tb`)Ny+-\!hƟ#>5=F(-XP϶<Դ$kOtCƃvO6Q4?".oH z^A ȏ`H\P$zj|5_4'9Ne,~/>H ɳ¢MLDK}K30z޲tkx&&dF,|_YxE]gnYU骤I*BuϲQ%T(bCn#8$ƌ|anIrQF`㪪'*Ŝ5F5niV`o/rxSNe~1 `@HoMƃܢS >{m&+RPi/UBg:5ؚ#YI+^|%9x8\IP|ě@J1϶v mFpPC@/{[IlչudL`;B$]Au9֩pJ-,$I.ZilAM胧*YуJKUј|&>p%o 0ԗGXӈ@/ P.ܱpK1)Qv9!j茀@=z$Oͺ~b,j9Ta?ݠGx{ xxD%NnQhgB𙢋eH0ǪòQ{ 7(MwHazԾux9:_[]4+Y#;MHFJzYuSXs`]j_ݚn"!'}a] 8hQe|7mZ_>g. E_~H>(.`Xƨů;C3Nou91o  \^ =3fgF}zV6NZ~-Z~vSZ6ǵ4oH1g]k~&bW6~&UugF_Tl XF3 +ywc%,cBdP)8G.F{7HBG +"-h~a"UE˔|b"Ezo+OVz^PQԛ)c !mLQwEXӅΚI:Ԙ50z9#^Yj3Q1+;kX{]wN]oD-(]zvg^n^g޲? fWe]&Rr=Kuq%`֩\nչ@mH/߼x(ApЯ](9d'ڔc~h']pPJwJQ_)IQ;NTNHuc3CWS?3Ƹe&և13jELwt8t.g>}XdRdDH1+p8``LPњsG!w oG/.n= +$>R?-W/v'=%} ; mȬ\q'7p|4n-utFQd1+66*ee1 }pBC ı?lrF}$^D9x(vz?Nļ(<$FbYSjd{*_ >xIй[t<,^?`M*-ӊIR|#l ؁d=' Щ>Dާr7(WJ,NǪL3~"Mq&eoFМ;cRg1p=ܩĔZPSıiwRaaD)QC! NuJtc$ĀD ;.j,5N yEH]و:udՉh's`ri3PQ(`X4â:SQc[C|QBXbx@E6̍誶 Hset}HJ?(9 53TURY+2VL-}GtO~v_֚{#fF)=#emJ UAoMQϲF{ؔ2o Vpv:akSpxH`̰R)wXi8+;kQՙ ނ@v>Q aw6 5X),EId nLHv>W|Ӌ: e}ni5„O=ΓN hWǏƳ%,Տ:ȍ90ǝ5@kđDf ݎbWd_˚vdk;dѝmj`1&Sȷ(׵sm3{Si `/3 3\AzAD˨y5M.Sb< /8׆Q2{1Bh|"!'Gmߓ"^S-ڰ#GJ6j@Ӄ]H*dpS }D#Mt[U\-~ m vO T%d;/貀Iּ.]!^Wwu jv|%dkP׿i*']YA).ymAax:i991O6r} $jKٞ35l ȹɧtPL#r릛"ilLvHbD\9ˈ]C8 O-~jAuqzlZ&R:YkfȽOBm=2.4POC|=M&K Zy@뱵K^kOH{put:=fpۉNBxxmɝY[m O8pQbHg %Ҏ -SFǑrCū )WSW؊)E5?5Wl &V'{?uN`JNx"1+]٤^/eaVnK;$?G6w+ *\MQ$:m{2s.v嘁~=5/woQh6v ~L MMd0TOHq<.ێڻ*$j͈UqW٫+x8i a vu(0tR!'1TogYVOUOPC)^%H6~_<$4T~ ]wp̤ۿ ɵ8w\ r:L#D"o+ n CS@'vy&\O/Ftk\O7wS8sFƾJu4!Ouc '4(cVxoPi[k b=ss \iuu2켍+mm2kPHp{yy;_YOI_MT18g6/.9l?'$':iacWH+p :B"hh(UlK>I5kv.Cu>t9z9WްO5 E|^a"zܳmzZtՄU@m&z k9T{+_ݽhabuHb 3D()WMy[cV|l[X\˼UTF&Z4a]G$(2OB_ 'Ҙ)> |^QV%>OgG翙 wJҖiNؗΑ \]zFDY$o Zw b@nZ!ő&9ٱn l 8߳F,_-',.ld+p$'"O4w[;|b}KIO$.zB#SM&}Y?2F=-3𖄿'%+T5Z!wO4h*XI u.k(7"q TP*$#2?φU]LP>?` P]aiI8F$&m5҆l dH5-\kl᠎nY `?&P7=}׊?|1 +Qg!b<YWXllW:饘|濘6LIń]wM/ahHQ{ b;!% b;J9PGE1lC-)}VD; ]ee^]J^cq7R(^>gd-7lcϏ@ PQFuWsWF'Sw7GFa''1c7cF9GSc;F5s{'FKGz wzwk;3fVNvNNvFKGGG7FWSFw7k{;-L0^i^j+rRAILe1kPU H@p(('&XϞ"JZJW2@^aLF}aG{ѽMۚuƩ\9{@>x߁LW`P3ahq~3/^Igñ7xzn]T '땗M |P=tmЛ#A @jRt9 [] Í+ ʳ[?VJO ҡ0?ҭJY zڏO53؟mw6x@р|=;#܂S).ͤ>PƠFs~ZB+QGuNL?f߲&gOQROρ|$kO_ 2]GޟFQ.Ї"j7v7g`H o=Pm-] z^iF t =zd03Hte. ;b_̜z\\Yzqmm5Cҿ]d9QBT.$1IķTX65ZtFH ,cE?6ӫuAlXm{P0b186&e [&hH=i,`bmz'^%i9 cšб$Sb͛܉emjOM7ſUJx2(‚J &aEm~{L 1(H@jOEl[#%CRhl-3!GO6jbNN2K7}@h\Sa@*VΑ b0Uo<LlrzXelK^sպFQ^3IQj.YdT0Pr"P2lD3f A|IȃfH-_!ƣPU|8aɩrV*@Wv@'ߕOsV*j`)+ Ep?RMT gKzA~HiNip.JM2`2 (%hi((y , ֮KwZ`4WgU8*Rkt}hRz7-,<;u9GʂyO~R*2(aqVpiiP)0r,H'+NŎ<6J9E֧]%cj7Wr7')aoi)饍y ve,!3jQe4jfn /ZH:s(GFHGOeSj匎d\lUPd!ՙ"7VKs w' U(z%GwY-h_R4F"cZiNeؔPD0I0lܴ/*1,Wf!`:d̝eB %/KY6녮]id:b,hr-=t*v@hdzـ#F EB5}îָFrћVsH99Z^5-n6J?:Ɖ=- nk\l$_iot[M Qyp22?jn~o ٮZtKAn "i2 ّni0!&N,7è3rn3jGN/h1YDhnIz`]qCjCي1&C$cO }ʪI!$=1uKHte=+WY/{ +WYy f PIo0jg LνJQҹ*hw>R򨕔Z AΡK)b&J`}4BJ\5bv{F8 IkRWlu#Z\yD7&ȗ_ifPoB3D/3SH+{yӪcSL! TH2:T<n+bVTӺ*H EMC% Ί'ls&A<n I߁i!z"休t }ǃ +==wƨwQYɚ_k?xGʱ֑*;Q_T[va/k;:)gƬenolGkO(a>2HI?R"wHGAi5=P"2*@7Gg ǐԼ.d4 | Cd6ZݠY>F_^cC'56!ZW dm'qbGIHeg `\iÒi%I= oH(\j?j?GQFh:l*&רJQ(fa9IOLFX 0aMV8VӯgԽJxYo5uXxRM 3e)N3^5Ek[I*˺؃B SM$2+H *{}:|戱;$aJ;F51##v%i6ΙI-JQԧVZgA%Jdx !;T-Iw Q{0#-uVӤ 4IC|>r)|pNs']'=T8[Y)5Wx; }AZ #eLw3ܵF VEq-jHܻ Z#|VtGbZZf7mc:EŶҖ$e)_8Wcw0ʘzke~lO㸨qf8z`rY&v>OSxi-y%)pZLȈtkI=-ƗpJDLԴF4&챐S1G{X&f'pތ- Tø"J4#?2Lذo^!⻇r,vutrtqCB;f2ׁW|tloQ]S ڰ:jȱx W; A2")=3iLI2y3E "[IK{]/IpӃ-JBz 8cVJ\f M ~4-&*øH[-د3EӈKcT靫~N"0&P%uˡDtbW Ha4T.nv(xi B̂a y6YWbpTjoG)5fe_b8L% )b촳?ݮASoc5vEEQf}%~sCU'd%12ۃb8J6GTҥb4mT%Pe^բ)e] JGbmjșO$SXZ=ǫi^ˣ,fNc>!A]ſ;RR/! ]|l{c1o-JȢp C%K&9*&K&TἘ{Wf)Pvn1Kt $OmKRyε8? *iQ;a>:X﯆kX_b"ň4e}a2^k)]eU6*NNpvˡ2bXɱeaPOEd^cdŲ.OmNBRdG<"cS*^Y:riCjwfǑ!s S)K]R`%Uy3}H\fI$Wm=kWW9AީX^}U&5_Eby6aїڢ&$uNמMx8u~vf6b%Nk|r]olR2 μ iZEz㸃jzl, o<#&hd9VP̛tG)UGlw b$,t鱺\^ &afKbd=Z:itNC,@vwiu'pw@e%-Յa36MCz7vWk/oWE zԃSæ\0 BC/MlS{FxVOzdu mlZa&RUg6D옦P>4-%Tw40Lޛ]`o%іY-C7[~LgUz-nEQb;[XhfF|YSR_}ɗ#"SлcWUVl{!Q kA+Th}&HwBƮ0]NHw3A.HN{ Z1ǎ1Yb2eQ$HxC6L ߦjݨk~Ca=@s)4烧N({ 5jTi~_&ՎĠ[woe|b>$\.*|puEK!_BwVo/g3˗r)o U{dy_IAİ8`LD7ؑR2DbRR>>|zasAU֪gaR:Na?Č]2d{R]tCQT֚-m"!m?~ i :z c8G"6 c7(SUX6#fV͘;e4|1 LYWdWJQ`=)!0=CӐI|{4S.kVKR-0(MØk.;tT_(Ce4g達Th/a4a%d#|YHioծ5 gM!)yݵX=Tbx T9Ď}!d58[ͬNA6)(NGU1VZ;D۝5sDf!~o " 祡^,n# Y\3u*93Z'xNԌkǯr90ze'֠Mv҃Yne!q)žTk13aUǻjAqeo`*FPh-7>7" M[R%_rn2C1A:8#$-:2 /4N,2F^;g Lȵgēs)5ZwZ}`FBǑJ& n!*Ƈ>/qBc?MP\eȮ)*lVC@< #Xe5_řmyS1]0(8hcr_fQI{"6q>Yo|.s@*c8)@ֿ>V6V,~Z/1+yEđ)bܱ|}AS)ֳS9BgQS/LE͈u)LmNܸ0*R kHe\hzr7+ ,yu~֕0IއX:^?Sґ~HFOwb,?s @I)4%f8!$Id$ctڦ-خyo(%oU\I$}q]ܕJաi.g ?&Ct`W$N%lS$64#!6gbX{LU<TI*mrl;to҉W0%wAfXM0m D>Lj@['J2'jlZ3+PdŇ8RC̛>\}kƚܫ%)8TӝCa& 4"N! X.2sFX#Ǖ0=ia^9혵4`0ctLqlo;&7v8oxr<ۘxV<6340r/4Ó[R89#8Gq )$nm 7,fjUԉWb_1ed7}E|OAƛU+J>`M3ZmE2F@enQX6ьG1a0FiyR]¼"]%>O'cyhR_TJVJaPy0g$C@-rx1xdr=`r1#_~Zٚҳ@zcI&WlUl1ˍz(VfS;bЃO7RW7m/-tҖ0*z4)+LN}rL`ߧ=0o qE.ōCGq<RqeE8bFZsa#Lw6+ 1~y-v&/DV94ȢPHmMGVk?NOS/`^,H{!љy0Gs>/S.NjL1!cd.RǛ L)M` &ј=^"=P ;_-pM)LL*V*x pXiy>!w5Z-5d,0007)UͪAi)d}\8O ~*"(L(j΅>U.Zjы#)ڴ&;ѯ I|9Cّx8SW]Vx8Ӆnn(vae܏h3>X[DL63h֗?_7&1wӶ.ˁ̥@Yzɇ3n̘K_U~YGT[t8[zS@@Sjl.N};III]ة8w:ӏhύW@] ´&NrHq̘Df?s08)S$8sRjuuiJӹ-G03UyJ)^Yӕ5@uʛA"ZRx[&ڢaR|!ۓۦ>)%pwx}0g->$L/s"vHy+e]qtU*%@08f*%`cP]J'7CQJ9MG.$LOiya~QJ)T+ǴqA)1 f`q메SD7;Z$ɞmԙ|(5r9W0"]?;a|ëRbN}Y;syDP@ѧڸ\R+*&rf&TL` *&0TlKt(%IH{[la% [yg(%Rѳ1Gٯ/ }KiB"ɯf/!fHRSK=%iJVJ|RGUʻS)1Ţ $,c!XQgj'b)7.nsa Ra*RIz%t:u4Bo K~EN,]^y:3,JN$ /c3afy( #E6-lc<ϵ΋sf[ sAUJ4/w,d:K>&`ƵFIJYEKt"z[iQJm]I{ćZG_\S-qcK 3}_Zn3.49.I*+ gBKK4!fg*\i<]G;%lu#_ <S1!>r_.jzj/K 2CAsfTtqYiժGI1/`pQfRG}tQ [ARlyE X[2.:&U)@N_`*島/q|Z-]%:6و"__dkyJSļƉFufUi iܹRQ>3(ʋLW o(UZK>Oa# xӤ/JQ]_J?|Ĕ釃n{fYF\WF(@J8^lpqJȊg\ IS_]g$5x|h=⒢#R0T(ռNQ6'e`5R̀UpU^j~iO=HEcHE0TӞw=#jف;6I+9_J-(Z0ŧW4S$71;S$СN4&|"a?(9.,'AWۏ< tWbuQm?~ XjZPkeGYug'u S_AJ~:|љֶWJݼ`z<ׯп+;yFki~g?z#BaUJ Fάcp献@1N>DyK5SJ{ˈIh(5&S?ޘ͊1jYY@-bR:.b;NeZ,wj5r{rʨ}a=,njU*Es UW(Î'33F#Tƃ9Xs8$u4 h(Tvej%r*gFOA,OLJ{S R4 o ɺtNor@+6SۏdE4_kvUFۏ]끶{  ^ݘ?n׺zZ?{:_ʨS5m*|t~ez9.=SUnNg$;o+x29 9fV 3Kz;z^"o1>No>օr}R.o=4S@"( ~1[wVRW,pZ= ftb퀦-{uHG/FVlٝd- yeԀ {?ּ/GB n'5d"`Sqs]FJ)S:ʬSJ,6qvԎT~):79T=ⷣxW~.[dWO5Ŕt̐prZ.Q)'}!w^FwRDlͫͤ /<^&:Ѿ=͏G3W/i&m4ҜW7d71/i. eJ8/e ּ ~cSQ%U فp 7@J}}8Uo7UzL*xA_er@n{c&|xGp9F1ax:!fUјoM<)ޓJ yl!f42xxf]tfM,A_3_[gor>ܓɞ 7"aAbNf <$1+F!.~d "YơLj=x2l0ɀpL/PJ>a@2W)%ha@]DgZLOY{"•@k=nSC&NaaѬa*.WMk{Fʔ^E(Fl ߌW? uRg[2UJW=x~l<{;~,aRyo"ƀcĀ6o4KwP2 R'3= AP"3C4_]ޜj;%9Gڱwr6#VF %"JTuw:MV+%Ҵ KL)Ak  _Hٯ]sjl oXȾK_) y4OEe2L[Y)8iL3/Üy*h6X`^clc0ak F%jjJLܜ1oC\ oj<6kkst,7+xBݻx§kٕ#te `=rxHd zSv6g`&3t@}O3w5a=&OƫDJU8М'm9x?*wۄ]g7/m~7nF{|lc:/~LjU3bF{ \}7cǚcǦc  \?: cI^vsg>j0jućm19Ù$,}`i9;ijT-~wazт>Sa4lIԼfB֜ǙWsyFGM"m/{(1[WV,bH odq kh!]`߬[4F]ɵE9WG-dݫSFA:O3>s\{|>.}MdBrXMxRKG4Kg+'a}ׂ7&=lV7n3vrjcaKJ ZXkS[3[L4ĻeAKzD>ɭ;kh~ symI{7{w_=~tcͥ-eI]GFˆH0ڼ8yl<YuO=]^+w ?8=҉NA:^{z̳W~D{0$aɺF1Um[IجZny&wܬ7fj 5 v_^9iyo6mꙏ<^v5*cI0a  غE`|RVyw aDi!R\y҃)t(O>O^{ؿ3ú[&2M^&AmՉZ%NmIʹ!=o,!ӿ[ؿ1%'"-?JSԴaѴ21܆^51c_x!q!~ Ovd<8!t{Y iGWG ~~δB){枬@ͣFb j=,A(l{Ԙc!F2UjM^yOf;R,Rb|: 'UvzpW.~{DpΔfh䇙Id#& ؗbP'hZ4iقݤZ8VBL5#՝Ơ)e 3]'UO 7UI@'U#fo8uOFT)+3>D| w9K oho4i{`Tw|! cOq(F0Ij9H\t^&F䘧,tq8-brq40%/,ך>&Fn>Ǐ}+]9:3|؏FSǤhm|2nc9dq;]; tt6TJ6XPKq1R.WJXgX̵J ZTw. ^yH)%hEϨ̺@jYZ4{:R&Ɏ:wv4k?y qkwެ}ay ǽ|K>Jy܋4(tr Q(qgyvgy/Qkreީ^3%(<ƓeMv^Rw<KŝKbE>;Ngo ĝg3Ɵ˔lyzE<,VwD.Ww~{l?n1ϑΑqwHĜ*rƝky~1;/RݬUw*;oU.D-LXQS?Uy`#{+C(fyDFuMw J#]Bfڿ)0/ON&HyjvsD/ZROaU΃_+PmzI)QkB%0_KK?FALjc$;ŻS F&AW}u Y~|{]L[d~t 4. .2A\)q}`4r˧U%Ռ[ S!|&u]&9!wE AˤͿP`Vʃ.{HgnsBf\ زRvȬ E}C5c{t.~V`}Meu;k[Z=-RbtmrTJ{Der(qKƇfd3y32k4ddг'4Q&0!M [?d +Q:ݪG)>CZjC:&CiOZ |$lH??q,Yv1/f_D2}A/E :16ULǸ 7C *Mtd/*fz*:o%#c\-̔x^ݔ(S"q,̋To$DP&n])kpuiR5srgOkoeVJÙ8 ʤZ K3uSuO*Tu>5eć2|#t/zLjYbt-bdny^*% [~q6k]exvȼ3_h 9jfgY&W(WOV9՟tX ]JWJrưL0fȒ ]r~OZ|RɈ9KE*R!6eSJЯFB#+aP5铞 zy̗.h΁WAOenI[Ţ 7~dǀqw1U#/_mV5_fUۋk:bPPڲj א S1yz7x]Ns:/uF>V[z ߨkJz]o.Z)%HnA0cQJe|T ,>#U^_%o4)S;7~k:gS{_Ll?v#x'?7߻̅U?JBm=l̗\r_,[a!cRb(-&+c(eʨw,,<'o +K#n@z "xKEL,!#&X<42'J7LPvo{jJ)Ew Y*EU2L6s}΁NoP 5PCJ i6ۥߚQJ&$N`x} 3fјX@L95R]B&V?a7+RyOLٓ}ni!qz0X:gLFaplPƎ2~a}ԶG&Sߔ+>6J zvTRJ-4gʓL+)\NZë֩!/O66B&+d!>WR3R4[)QLS/1lo@A,WJI7r$[F19ݯR,#2QJl5+RHG{#1Sc(QJ*>jybG-8eg;|$V;u[_l l Tv"UbRόwgsMѠ>10UMlinRö\rWdkf ڒ-9<)UG!{*cZwHW)?7Y+}q]\A}1| xX;Z:U, 3v浓_a].;ϲ[Ol grjY1ۏSYpeESY!%h.U+4?͂wRbN` S{N)1 =%}fT.X)k!b2 PTg{A'P^#䎨P"3-zx,iRnT)*qAU^Rb4(Y%J9Q̂<uUd-1e?" 4;i844[YI+3pooa+תrm$Y !;δ;r0`o 3!;*TfҲ-BYp}8xy|1Wb+Ƌo8lRJ%ⰗF 3A%F a_inPݬeWJWQڂ ݩ]JYxq؅ B(H5$Jqc[ÞzRVR`{G(wRj1Ta+R "ʱWJ('-au;;U5-;ҭ{ _Tv<_,`<3E3]eAF9&r!8t'w2r˘(.X' )&[G{:~ʏZIjWuw(%/5=O+oRbVX!Iyl0 K֏̥Z?QJѭul#Ub{]}m쯔սfJaQ"QJE#ʷA+Xgl =}k7 N!fwzZƖI:sz&x rXBA~z-# zUlfar-Tu.UrlN1 PĘ ߅6)oRb̆/z&X"jjl6|o5$)>+Vx^n?d pR]xqRc fdI&9Q6|Y9ˆoⰲdNo 3qⰲw2zf͆)ⰲmV) 6^6ަUJ1C9Rb̆Gba yaguW?{MUJWPHw6H6|*3h6|:7 u=(HvjЌCWCW(eau'\!l&HRyW+%lt?Wy c6|TK8jl5 lWCjfvjʆIϿU3LU7O7B6|/2l~?' 5S6|,6#+cw>|F)-i6|[ }ԻP)1Ola+̆^K=7-cOznE}ĽTmu OBS~),NSnH)5ᗉ=u7)_7|!NAK?Rt8e rw!J ߙS7| L)&8w-V J ߪ{k\EJi2 [6|)ץ^NfO@)=y|Y34Ӵ!3FKz3ExU"~b%I}Ye‘G$XbfU~9\vܦj}צ\|G$3]9"vXݮ LzD]'^hijrD2BӟRJDI*3dک.N/SN?;*C;r)f}j#_H~ tUJ⠧٠ d潨<爤QVJDrDR:ɋqFC*㜁ԙe|RgH$G$i>b+͔n7[}oY)% Z=̧l׼JsH U5="=HՉ5\t+ek48a)vBH&JZ0&$gcyH)%m3G$ Gh1IutJ)IH6AÔ9R)A%7Y)y$`bOkaf*{C,9]Lٚ̿0' 01a&x˹ø:]ps0$ٵ"0 "tЦa|~%9k9w8w\nuY-v'e+5}w8;;w38p"KF08I<lo1kE<bm`l'Q' ,CNeKrLGRlBOlflR@yHjuBպ 8Bk)ٳ""9QTVjE{41,Zy*%ds`TSJU]B=8:T0TjQ1;jTx 8fV*%f`\c(&xTyO*%JML)1U)LF/1\i7^)  )7U'?$Z)%f,dݨIb+ -sCa-W'{[:uKi\nV)O)q`X]D8]JR{RNscJ)X0'hW38 So ij4REs;O)kR*a-V(?-wR\?QU\Ejӯ1OOY.ѨZXO}K$> Lav\bk9 &sW=AkyR`-gb (hRŽ$2uh!ZW3d&:QjJ{&jvmN,IN|~C\֌EK?YJm6ywK ~Cև-Rrd>cG ~fUz_+%NzLj/[Xz0$۴6q~g%Vs<+:uc TJPA).nSʺ5q? *>tR8r uTGOHif;]ɔ!rnq13]raiyebs䢧qM^Ѻ(e#&VΎJeޭFrz4nw+);"4zf{C"\/ߎi0w|ʀ򡚝Lqbaq9[ڻ̅+xTV*wʡXuǭ! ?\ܢJ_$~ZnqqܿEz}H^sLQJ,R\)mx9W_KWګEZ\);L{7^M7'Sm3d/4Y9]W 5URi gė٨ez5M{O)y]f} 3(\:.s3Ro!sobיˣ4-W 4}e21?h_nĜg5Ux(F=fUPJVT67JbiݧGnSnRVqq|93 ƀ6AQ[J) >;I׍vUNuuwUJI+qЉ쮔jޚwRV%XW*{1;̧WZ4U̯LG#>hcr*1)ҷՎtinT*%K{#17S4A*yB1A RIwcʹ| 17Hy#>Mn"sRK-H,Ubdepi&9|pA;I]>n'5H @o1r)j ?ޕF^4ۨ'$6]i׬2^tؙ/jho'SV(2qz]IؽgX lip'J~Vr(&/wnJ7.lr@d]c!@g j<]<P^k EGY|Ôł4Z: -CELe w)5u}C]@f.@['yzu.iՙ]c@a1 L I[ ~bq`*RjF hPS)A_# 4O , ̲jv2 oke)iLM'ȸ rPJԢ4S]u-y Vum!+ZVcimZv]s?SA+e3~:F)u>Hc?XVJ&3+®~-]']o!cb JYxY'xzl Q`l` ZY9( P=Koq[`ʝ7soFGXJnjTJi(ur זvnkDnRJres=ÕV,5|D)APj|~19> bʶLey7;Csi3ѷ8CӤ$-Cd<|wʀM|Ɯkx8&J 2Ƽ[Um:+Rh6gPt;hR7JhfR2oi&|34j+x:MZ6, i8{iުfmQZr*QŠ8ʸU(/:Qw?V A{ӛgj7Zl8v PK/t&IǴ`@&sl SRca.Ǣ7^BnZqDtj>7]mk%;$4ϵM(4]N:"O7 nyk R0=b@ nt[C3;kІCDip-h(8px ܧr301O"ԣ.1f|5I1k͸|Ӄ0-=hHZzd|O9 ENY7u#s/ 3:s!I? *RZ['%}ҪiURsw\G(ޘWcƩԌ7S3"4aW cs(-IgX)w[hT|eICw3K κGAj'c!y'~>Ě6 ] }Ocs'G+pz m6q'jsjfx^ L[Oww|iJ ژXE_k}P BQ1HzDQiXK'Lj c7AkUJyBn?j sn (Z7v#~EW>Ah mw̞*RtFve|1|ʠU-M-yO ̖ߪ,Wf  }T;^ m/UiQ skKr[(o4&G9׋Yh;_ ?4.dx35,t%ӔE^+ GJdu޹ς DSCI=A<ގ]RѠ%<`XZ*%mh.bIug`W/t\j,̅b&FW-e1 mxB 3G;}Y}ʲ1 kR׺E Zb,,PfH꽝ҨQ2EE3Bw0/t/YHZђ^+$p:FysRI:eiT_XMR/ræsa%^f1ItEg1ɧ>e!w*' ߉K9fQ/"vSķHUvnQ}Ǽ6Ʌͭs29̰7#A"2{K>l>u~kD7IH"Q<~HZٹ)zO%ύ_qُ~5,2 J^$JTϸC),6ARkJ 9hҼ}Jh:cСF(%VReq2eެ8_[t1"i{G(%hZ3:RJǘFҼ>J[kӨ(sR78qe>' h(v燮⠟yH)AoЅo::n5N)Aˍ #q:eWJJZ' ltRA+1o@ߢNtRfRlT "S]=bt81J j@:Jr@Q'RJzt(Oe4jY4XÔuza^zӀ.&(pf-e,Qъ0f͈p~ɴ{+F_ߖZw)dfSUd_V赗0u u:E(ԃ{-NoTkh[+ǥ7 ߱@rNTJyW$OBlQjʳ}սGq4ŜKhb1GQK[fc)j"Ѱ>0х$_HQ?U#J٢ȭXh{roS_C!8tZw GkO8b{h(2ڶhPaְR< wMEvPp`, ȓ>Fc#sC.'^޳E>{p(h#\>g6԰ʨ]C(YYk'M7v| ?p;An25z d,%]ډXK)5tX0g0G5Ge0a|5F0 7~`qvupU]¥M?;>~^H !A ) kQ@,+X@("H(` *PQ1ER4(z9sis޹s]!/S!]nI"+-) f[DDPtd ;hO8 2CtićbĝљCZUQ;[e$w |pdޚ+Nbgz;?Įv~p!A*֣ mO#;0V)$J:b%b|pdܥ7v96A* C( jUBGS%8+22bLUJrm1'uafi ݌QO8m wszqړ$M###laUv[oOf; bv},8}ߪ[(%bdt<\ R+Xeo0 QyK)F2ex#.*">&9O$/^%w្y e*qN<`$u &sGF):ddaOWO "##7ik3M.#M.հ%MOewIV>Bazv;p80Hrݥv]Ȝ$-q7&mC)(c(S0>:QD>ܦ S,L<APҦZx"s,9vpPCUès~x± gfxö'jTkI&J $rAVb{=!̗.|!l|&**BMT(_rE?q-WA>b>*ޒaWSFLQSbG"} )=jmTeUJ.Wք z7U 6ߒs8 FuX͔d(.9@"rE,wHʅ-Q̙fZRQ##RFt9Iw˝-QmLPM7R8/=?Wu)kr?"6gD#DLh .ϧ^;tWV(uUKr5$c_¾@C嶲I.:@z, pT_I8~T6ל6)@סFKR| R ѳB4DO6;v.򏐩~'3G@ْ5 ?}iW.|ފle1kEföy;: +ut7.ұckd]I9,7C, c-@:f1{e7Y#8OAjh./>v8J^hEս0go*Mb(&ٱ;vSzWHoF{>Ǘu*J=WãCL&:O"⍖&g~$Kf$D( aE Ժ)ѪOc:f'bu"3-4؃u'p]3dp(lCuV$`$wdw{$9kWW1Y:؃}kͷ$; };PDvU}?E{ _eu97U L0m\bd+${[G))`qUaj XreA!qx&"vq`%ɆcO]yy ! P>TmBl1YP}8(_KުDfz~3"I)$ӄiNd3+>23+^0#H_d\D=)ć<>;snℑ## KkRxVucGnTڝTq_)d޻)IGl7XO5)NdX Xty PRގz n'R܈9TJOwp2S@m;5Br^(%ȝD_itթNJ6vEopCX6 SkCx5mwNdN_ǀ .wWBSwM] fNjf(X澨Nc۟ Ԍ ìҜH_ x)Z?alNٔd)!G#u"8,3cm+ZyPɧE7˞4+dH9 X2H95Yq*dhyB据A7S!y( 8 )t} ¸}}W|yIJ L25% ,Z YDj_`z Y&E![ aN I>dI+~T0l Wi?op8~-DQ?*$;[l'g4{Jp:JƫRmӝ,g-|])1(Fᷳ-,a3Ji9>a@HFN> 9i>@oO f!`J~߄F )vesƓ^"LB ddOE3B!)4j]W4No1'xWWHm|%<"\ zm42+g6dO<خRIjP&g`3F7϶ql6!kDf 3[mU:qK /lj,-2jD@7;x UMJy) Z_ itn':eZ)~~.[kmFf,lBޖ."֓HzHz`,#9Q!3_ldYU)dFUG35:6B.m$Q-~B!,m$:"/ͬ?(Ke-Hώg{@ QvbHNdC҃*Nw87:Syr^̑'g,0F(ITK@L9`~'2mp򨶺QZ뗓X$jŶ'PB$2?3-L'w {(, WK,XTl.}s]s'l-cjcv7w")3[x,T4gQ U-AaP^c' º_ /JN~BXиL1,h5Y9Ar,'>AhGG oQO5EߙD ."{aDv ۞P`݉ ";݃*g2̲zV.9׍5+K DkvJ C2СJ5/-T9tKF[DxSrEA3Q]GMkeWvqZۄ} q[?Q(u˓| E#}g8*;"LΏeA$&?$i˸߈2w4o!\s}3)enO-R\rpzV(8dC#HQz8D RVln:vIpE: z^qثd'k)Oke iKNw [9)w׍ЧpWbHk W%qW痊f?56s9p,2sr\eA~,LڈU6q-6+0Y0i3UWH}y1_Iy^m0/UU)T3L%: 6]N61doz vQeU~X.J#5qf;'$ƴ{u"F?Hv&oHΙoS e &0DyMoS, ڼjM`4BbS' D=!1YV׉wU>}K/y?{b4mgtdgjV Tjއ IsyXh4/E"m T y![:._ηVt℈ -SBzidwJ }}%TELIq<[`<މؽӂ:ɉ;T䤴awT)TYzC#&حr.Kr"sf98ii?S\T?ˉ܏1Q`o?բ k* 䁀<pi'~lo tGfBxC |؅s'Zۢ_$1"F(d ;$jr" VH Q.U"$z!9DN2{q\c 51郮NBQ/[=ATG%?~I>d |I--H!R*lTXNdDnczt׏xUSH~17=_C'pzosĽ*;̱Kw'2 2'[Ol 7̊R=[q(dl@&*H3N6l'R^j|v* )b5fFZSnU;'p!O Wc-\k!NWVKSܙÇ<2xÉ̌-< Bs 9NM|~OVs[c;S!]݌C,n{ 3zB0-ΡBsȬ%!vrp9 n@7{Q!m{B6m_!xO5}ysokv3olܔ<{CKO>: Wtg:MOQ=J N)dU"P6gG^R.8>U^bYdp<judKhFcW l8syyP *ΛLјT Hq( ꤟ|mB@yC d+%mstX^ԫyjۺ:Ԃ[[K[ ؿn/=~j!D5$qS($ѷ(DeBZA&|4ҵ IQU')*. T~3OG[5R|#ȯ.p"bb]Hvl8amKWyOk ":]W^zϓLzE I^2NO3+$z="FQm-RO SN l,{\ _-g<RԺl{k.6Nc.7P\f9QQkC. }S y9gb"8X'3.9w~ g9%N4J3UHrCm XxBmmmWD!um ĉ&G[ $S; Ҙ˷ IQ8QC4R!@K0!QrʁP;-FLfwE0'>ԉ )LK/cÈrC3SY`nbgsvV-'X.W|qh$2i]RM}q šv.//aA}S?ߧs+F#).Y/)rhzEoZWE])laxo|"oS>-%ܛ=tv@+HpfK_d}I6ޗN.ĎTrFRWĴܖJ^u%=IWJFfg+cZsF딫T JҚc$]- qz࿆].,w,B1Ą0-gałZNxz_0м~-]ƿxmJyfW(G$qu<"zW/ "E;7Ы:C'cOa(v >\V]x\ڗhPK .oҩit2qK ͆T^n{:ͭ|]9ͭ|I/Lc_ǧ-G+_n\q+<>~9^(+R/W>oK=:&Dv:|W!>~ԍl*bW=K퀵7:^F'jxn"&@FɵSnrW{74mVH Wד ")QoapF0Ooj/ǪqT{Lǫ4D?]ϧjUGj4)uI:J$fWG8Jo0-}"5j {262&J$B:D'Vds_辰x!Z4>yt3Ͼp@z0V"M]}47D3~]K~':)g r~&$F,;b+T EGH yo%n-qnAvU!^tP+6^4ԧnц'/mpoMR]r+ QHy7;^}'ސ7\!=A I7a_F"AH=`D/r.`׎FɔT M={ 5 zXRNmR'+^]H\vIMM_T*›3s׉̲x?ު. {J*s1RprZu9ڝSȸ "w')YMT!!sV45,Oigks[aMΤxx`^UӜ-qMjRycuIg_Nyc"'ϟ *?"'BQL쏬]VRC$-j~Bso;> U4 #WK xFKxTdyFaCIsXSZ ,g|e^td!;E@Yuc6߉p Oa!ebFc| GUȟ".'2,g*cQR8LY{z|_焨v0Z#Կ\"Ɠ{O*;9GM:;P\Y>F m$G4prONùCHLH= >[;%AA}~b*E2Ai>3F*d$W#th{t"+fu##f)Z٭QIo eMCO2ˑp Q(,0~'t8 Iӽp6;M#h$7kz`FFeB]t&D; Bt7t׉&-z)FQ,4K;I%qWRwyqٽRYt2r_4\4yJ҆,C{B݆&c󶈏! RoTNl  8ˀ֮A~W7n"ļ O;̾!խLY{/~JcDS;4VlsQr+));!^EJ#Cnj}]h4XhK7sMxHN\6a0gϱ u\0LЋf`xX {j +=Dӗ\FUEWB9Ja>n@L?ZD!mj.Pn(dVogGRD;kF5z͘8A5>fBB`=sEDxKÑ`:1#C +ܱ>yȸzn=ڜ8ga0Mh UE ij9h*n4zͺ1n^wE-}‡]}C^PZ&>g-9r|82 FQl1?DCPw?оcbBo1Bоv9)#|8r΀G]kw4,`b{s[rSFHL\2o1LiTCagI$ώrJ?S^˹ 0O-x͌= |pޑebʉ ~1Xfŭ beO U1zSy &+*-.Fkd}#%GlS2OKlP]'+Y*Pt!Htu)lYl}B!S`ⴧ8U`qĄ\u!j˽#3Ήu{ 7s#PdqL'YN&h h2^C&گh7?4o$;nFLv3[#hWwwpEtG|Nԫ7UH#qGuʴ~\vi>x?胝yN@!S\#DyB%A8f|Xr>wbL9o~`wy;Laf>Rd5ƌMi҇I7U{PT+œJ&8Ha̦\)%Q͔/y7yN@JIy8Bj2?23mo_ XSתy F_i3pqkbc G׼f}Aa*S 75K'2 M~hw'=Cm|$מe/anq}J:/əZm)[_8S_WCJCX9Mf73ٝqTGREL6HY )y9&|ĮqXjsx{arq0=>/I_ ')y̓'Ry~<ʷ۫$E-RCsL~LMeC9?0(1# ʛ)SMLWZu"3tUL #(+UG:>rDa)똣/*T"QDRwp *vu5rb'xfy2mLKe)X'I {bo'!B'tj['|YIO߱_e| cgڧ%,i] S #U60ISJLBMNJGlIXqz;da" y6D^̪&J=ŨV7Ӑ»ӋƐbH)5d2m͟(c07"vԼURd'KBulǮƅF*Qf5S<`RCjg0m_2*Q喗xovDJ֗֘]Ccr,~PkI'q1I(T"V1DD܈ _ (dFV!5sB% +\Kx!w(ZXNEYo Wߋd"."SIUdJ=hAI  A/0z ;FA)C_Eikկ"/1&XXǯ>`Z叜YHW3qŜ009ͽ#U]1~5i\db!WpBB+t-tBV>`ՙ6U?SHeޕ1Ճ=NQH7R!b|fvWHW VKh{jz0a ;Nzp{sP!0:.%:,qی4wVgN;vGN_L;2-ih%;*Z д-fvTDl~^T ^l!M/0< pE}okYnQ{@adq咊cs0%{'2E1dHcF0EՎc ȕD0x_]`[0NX*VHCU'|m [}N T 5k\ɛ_1k*%|OSR[F*-I#v4RP;QZa;_#zfpK[;^Nc%WMĕ=g \հLÔLT⭜Z#EB|2ss[Q6V] ܪi\q6uŽqm I^Ե$.ysSu6. lO!ۙ. ۑ!xC?l%`|7u'9pESCxI->QZ&>w9 a3P2K/:_~D@gN \Ie4J $'V55?H<εѐ. $=)0:r>D2/InK ͍GŹ?}<#, Zhр$nMflu{JRSw˳_;,FEy)kVt#lʕaoG(b(L`oɦ6ԱY8wy#V!CbiMP }ð~ΰٝy_}s?/i*./KٲN\Xo^z=* lYh(UmQQ@O1[YEң|- ՚/wWu"峳N Y!DjfH!x4\vbDjtp:/a։f=5=r4T:"bXk5LU 7F%mVH6:k591%qq-JbC/,CnSݛ ]16kswj= \{lNL>hR U 7;KCԫ&)iNsw!a)-# ᐓ);wn4w י4.?(.O?EEp42+Պ j7!d?r g+IqJ5«U{GlDE#W'X ěbY=GL N eSD}2[>Nq:e*wOB:ɥPm)ҳᨖ\dVPz]N?9&Ώ'd7m!JhVtm%>_x =gk! hAJIrY:e*NfT)Df*NCё&9oښ3)£>t/Ws𪅩Lp-|Ȅ0ݷE%ĕ4" Ҝ^KqX42^~ƞ 1TEYl{ܓ'QX)~uI _ݿa!Ø )Kc>b=uЛ9¢Ҁ*;8: W^l?bxJl"xS|GxQim##QB*xL@BxdxB@#Zv-DRRe!3R7˖Ԇ~!Sd:DRnJ_ o, =_ձڳ6Jrz ]ܳGaq1mPS8'OX5,ɬ?()!" \nbi, DtlRdd)G_Ufզe( b%*Jf1 :7i]By*c.?KR]d{F [UZaB-#,\PH΁sRL`DJ-?!]0~t)&Cީ Mt"]rY8/^qɯ5h}!= 9k{zR L(3b(&HYWoMe2"3Pky"J`T ԰Ff2 FЍeGƠE,d0JOSώWK{GyʥJa̺6 Z7$s ځaxѕO'+'¢{W$|lsQ!lz/:Bfn3o S)4- $~|']IGmT=%kܨ:[sYp~$֡MXf=d?/W= ${ahd^k#7҈Q D մ{`\a3_bUՐ^KuxL`:BhQι WP19:Ҫyu8Y}BӼg0PWL'{ 'W>pU9\d? 26 .hdQ{Ff.Dm;\ey6}ؖGՏd2Ĥ8 'ឡvi6x]>dS'ocj-r$$)XRр=< ^kWg%tEeaAf2,e:t/EJ V.qin=0$l{ Q4*Ts8;K5)7P +f5:$=?,&}8._ 8ɩBSgI$7 hj 'xup| aJ z|!L]盰QI)lo Io>2CeQH="߶qe#KպOa%!,5.u[hD/`h6}eQ+ _wՒ a8=@a4qVMgI1+L  v|qU3&زNd]TPLVe~ |6qܳQT wȝ,&=PgxLMN` t":5U۫Dt=~]ph9[ B .̍=A3 ϩ@<8IJg }'}ӭZtw:A3 I}náP`fJy 3kFŦw pd <.p1iȣf,Xjl{ a 1O?o˜ KmlM.8a[R9==@$?=% y~\Fc慲Є;1Y hEN#P巼'aOu\;wdQ\Ȝ[ֲ Qwq K+Lpp ceB5VB]$i/'ig>|B}Lv8䅟( 1jx*{;X-Zf|'f F sjݣ /ɓwɡrx£)E -„ pQ;; 5^dī\%e-4^(tg)2Ϭl j4jӞ{Xp[p^$[P]L-pgNjݮ(Xp |*M[]Zf!SbG!8)@( ng#VU~wϷ0k=\@Uyb>w8Sc}W s-| {zlP#3t0<\|Ӎ>3~)ƽjԘ}ՙ@3hw܂m2TfKL٘ /&9wa aX'a!xI>2*UJ`kBj2)HW,UH/R O"v4@Zl'XWδ* ma V̛%r2-b>,9;yvxBQϭgYngݼ icKb3="!+ 3P8P %KFB%}Tq&EAO@ۏ -1Vp;*Zv@ӺZ;#6V)t1Gx ͬb ?^\v7 YY/o7Rd(Tu3zdžQ?UiF9-i9Zlʿ/jnu?$6w\n=JuUR9keVwerjDOV +9[r8:j&^vε~E3sYS8!-[zHT+)΍Yc4_!W]{w?l/- P$or.g!'KZ ۝B ϓO6%m`y\Bq_}6z7F oGzyԵ6Ɔr]_+ooat\,PE^`%Ą._up$3/YFFɳKxȢ_^ړ+ ښP94.]=??^GwhBM$BοH Q% 3~f[yIw#xE`z1W/(kstm+EBXTS/.v2+t~d4ב9@W c: .+ gȩ(/?-Qb:ըԊ̒-U!9 ?1#$1ݧ_.z;|R#JK|=?1Yfv);A"SOq\+ۿE'Lʘbzpœz -2 *rB9M2VPTv5={R7`eҟ|Ac~zz.Yc I#QBq;: "O'A63N_KG ݀'|B ZRP[ybz'R :VxI"^ 9]2Ņtb ԓ[&\rKjRsbF3)$DFVZKez1.WH6*kmS!TV>D'Gbimgp툸 ;"AT}~zqD YOL5IV]\gSTuࣲX >*{5{`PͯAtv 1W峇K>TH-M"|(WU7T-tIz[Rx͇WYȬ*~U&&wM]-ʱ:~3RRfiĂYDRaz&H/RyFWkd:f$5.&YOn+$FV jYpԇ'q8at{^H9 @q}aUjdX tHă -AoVO!գOR1a_F ]!zpsDzׇ2љ,T=R-#.3נ^>R(Gu%oC8ߚG8hZ?S[ .(㗭"e_ Ĕi=bnKT)3k K\!06/rnw`Yw$ui0`_I}2 Tn> 0= ص d3H<.wGsSNeL}5p>ެ7{-1>yB=P"A$z_FZ)J8vƧ ٻ|~ PH`\JU\2 _!/BfM7ꏔi sY]< 鞆 %(o$s19~I lEnc!nWQHN)!b Ua$z1]^IZRT+q7 n4:E#Xr ۩_MmRHq%^<7Afzx~C}o0Ԉ6-EMAFRRuBʧT!IwwPkUhr$:U~;dֿL K=%Ikja!udw*8a|#݁̃bBV*k*lJS I5Q;K߀?ClRxJ<5Y^kX͸3i༅iĦŝnofX4TV<,1(}^w ZBZ6T,lf5wBRHbMRp/PHdl fxP9XTB9X2mr}` |`{#Y-Y@E\nYB̫l8p$Za 2T3M)@B,!4sp)28☘X%*2m*dsREWJF !+Em;-eF"+lL\T5DR<@ ȋ^o4B E 1.g0mWh\5B{ģtP!Y!Ԯ:+;he-$UJ&چ#QTB['p[Q`ru|cZd>Ȥ?0DwlKE@a4*[HtS^J<Ȑ`6nB6x1 pMc"cg2QeƔ{n.Cu3rM]t5ISpUAV~\ҘdžXDOEBdǍuj+,\O$1e?P*v`YOp: : .XE踩 u|..3r>W 1Rw>ךV!ylWWȼOp~\:B B]v۲ R36YLikjcBVV&˕3kM<Ŀ*u")OiIQr&eQX-H[}Ar۶Qw$d~Dq+2osUօƂ*UR2j~؟ 'Ms3,m\hsB}o+=)-;GjlcqRa4'$z1DLYABl,b%ھZ+$ђ+TEO:+m,3Cb  "OQwK4fñO:#d\GH5X~UӳUyPH?i%OSȼ& *ńdؿ. MЂ+P; ;]dQw .PN=dw)x1V+\dznv5Av.B"(fD~kTi&f fd,^)~N[wq[һ*F!}^M.WkRH Ѧ8QH3QHo ;ƃfQHnma 1 !)ϔKm(&LͱꓰYMWFt\ *ua8쁨:,@!W_|9A|T!ԫgƈ^H6D !򄇚@U W`e2iPJcGY&%(SN۔iaki=Bf%frN&'MagL6ĄsOg2'8<ýBTf5\s8C x&<%F@[j{-9,]!E8]~NKWH}^˔yC*!W|~PIe4U~SHIecy$8D:KMʔNcpmyN*N'g+ RZ.^ Im {D ̰BiHW"K3em3u>8B6Ojm2FR+V IM15JERaH 7LOV τ m$eSf.>'´L9@{ؕ&0~|eE9=fd,dB ,I+nG}u\b;\j{BgSuaXS{%Ѳ}RŤ5bGBKu*oF:aB8cqSkA^XԔ;~&ڇIμ7qm^)=Ze||0 &GTNueg}.7) " K$mU|MC` NB>\Q6$qꫧЩp c:5o%:)iȴӴ̓W,mPX?6銄z`ݤB**W]rSU*NILX e+M$1_~Cx(uZqH3qf`fVHW!@ʼ\!7wE<(p'++\0|$z@-9p|L-M{i y[z09Fcna[ ZuɊEW'|2o\B1TEl8^8J;$e:\3t=U:i ء%u̱j%`yf}<:Xa% YvOX[!,0^'Z\ OyBZOu}"8)}=v$ GP5q1[FEJ mфWnuh,;4ٓjpQB8d\\*qY3TH ыB};5ӧD߷0;w).01oF)Q<Žy_׍O4 I(cKljnlfmi s&\qoO[t!oZm\BJrdŽyO&0`-̷hi26O}@(GBra8]byhO8Ն*կ;&] .QfG6AޔtyS*XTWߔD{`4sB雒=Iy3qtDE-{WO޽0f17_Ww)7_>vuObUx `$jgĝFի*"΄m)w>SFi39\5IﶤV 3 y|ђ~d-F<999$hZTdDTѮ3kƃ>fZW($S]L@fSH"]|'j56tWHoxVQjo呑@VRqި9*$ZGR^)<0(Bj) t~5BC$ O{p$qf.RHZ"@mC23/̤/=PAi(Whp!_7 26ԈyYl^iZe-,7"^X4҈YvLh ILꫯ!P2'<[T~r`Β2$mBܻLR;)ܟ Q0`i;ƔwSB^;J XwyZcOse9 M=il2&}!=KKm!_hlj} k3nS"'*7F⁧sW`Z,rɘǤϒ5D!vFfȒ`ve9]0NhNb;6Y!8'zE3W($ve129}B%[[KI&-߫)$V X͜Dpn>-K3_flU|]V汎avgKQkft|VD{"Qy2NjƫR}u{N!kEc$<>a.^/{XhMs` tCfv?9xh&љV,lyBfV^ok"#n@(ܫ73KbF0ݭ:Pl^ xE k{4''"tZ@Z&jht:~Bj(k74wBrʜoгgJͯ?h ffu?3p`fk҅ҏ157J0_.ib"xEr_~DSY@Mƿ[f#ZYXx. X2i!yXj;NaL֍P nI#3&v"mlѣRo oVy nLG{Ԇ gw+,/xt(n!Ўz&-ʲuvV]ԋЋ;HO(a=4\#^LPކ]}pr/^FLUHo #y  sPن# Jw$VU$k,]L͇UA2k(GؼBfz Dl>,&}!l.Ǚ* ahu o z6A/.cczsU1佡y_Qg29.eL~ƽ+0( M_.i 'qswBmΞR]=J/i+B꾿}ƺįѭUJwɊqCx5u8N VܻUKb `M[̅L |ؖ1pYlB-`PY.B֓#3fY` -cn6m*BzHaT[jTgŊ}YKiq\IOr9GB w%yadok8j6'QX!~m˾jN7I[i^/kMs_OԐr ?dk#g?9E1O3_vӏfMh*wHBЎJo%'7;dLm7¤]xGoUHMk. lXi]8.ԜJ^Ϸ}⮫ͼHqp8F)'M=2ǂgDCY+-L%"bb6/b6/s!Rϼ!ux6KȬ/xS?zYCAM:kn2o)$dž(N^3SH*C L34Oڙ.GtS($]㉝D }9Tk7ͣW'w|-[U2%r}M2 q ~p@G鸚eVQHkv}&9͌ߔ$NzWwaOB'?ݘp8ޮJ aaq1 HTk^61kbe(OG Rp 8! :Bf ţg[bD۳?Bf>1>zoavG6޶дLKެ%]~̕%FG n>o!BJ3NHw!R'JnWނ2eBao.c|>e4($enB}Tk敓b^2 9{ .¡wv$zDg#O/ħd mOO"s݃OC:VYȄb &lwPL܅^{DBp. J}<B*hdzI3o(6XȬ!f=w{rq +Br;tb&yKm%?}f!U+B>z#;D8i<65Iױ+)ױ!ul>a]67jU`,Ԫ 2}`!m8!uB3 RhnчE%vʔO cbt#{Csp&X7ai^sDO8L>$V sE'&[td.FPkkbZEl/=kJ 361Ԃ|"*mdڎbuG6:p|,%{X2Yu' ШWcsFn/*+mc.#a6?گpӹurf`I%6L#J(JEM&3'03)` E|,H (BDE, 4l+{k3s&yz+{ug>VK FBc)ч;[ptiC*O42iVdޭՈ褆@O޶Ä0U9%ߗAt@i3f)mkъq$O2"^j#/̛Q2_2&UnvOT譂^\tlHC!"-ݧI)\U"fNɻs$/(eY#.bCB{BԖܟ"zߥ G .-.QKq΃ovAb/šlcO#(6>-罍{e=SWǀU:b^ J&B6jNA]oR }q~ zA_"9@> K5r_3)Q/騥Q[%2Ѣ2;Y)*lQ}Ie(thЩۻ8r0р7F 0|NwR 鏏i'2ʢ,Fډhj-wbL0{N^+2/"#  ՜] Vd^PX|I&7MK8ƗC8^eLKE:*tak WQl᪙p{{wwYo~Ha/GڼJ eOh]` @Zh]\0}}ڇ8Goj97p6=N?!ɭMmԏ@@u8Ӑ@X. {h3|1{7q һuѪ]҇)\V,K,0_5z#rߨӣ+Ft7\.iĥ,07bz :氱?ݸS90eOЋːY7e˹?/ 8>șNw9"#=SnpqY5TIuc/0RUptrL&֭  Z9|DJO5rg&}/d!(^Zk>)_=44)Ù*~JK-\? (Bë۵T"QU%_WTG.QtU-<^{)ؠ yN%S!v[҈V)my{uJq$jfI4KQ>P 'KAyK"Q!~%S"J('#jFIQ~_Gt~AŧQ@G%5݋N[G/RNxNED[+@JNPT\dߋ?0ԩ?nCy"LQ $_~)Κ$IBoCFE&m #/Q&P4F_8 GXNigkTDL3 ү/x~1%r$w. $^5Ȩ#ufxMz*#BSZCGs~$\ '%ǯ@{2 c2ֽw"ފYcaʄq;Xg}'` ʔZ.2 lhGˠt{r1h"nq޲ᆷչ`v>|E?~$jNcP#UOJd̜JOQ2Iha -"*]ߊ3\SD13.%_Gt@*!Lrn#z@8S#|yD_"Ug"z7 f,(Ux}%RBWnDC}74p+'KDvG]Lh6Q+a~|%W#!+qz^.i/֙Xju ) 3?qBgHYX$tk4IU"t1X +DpEiF_Q4o->aVr %Y! o(ADZt;(/D41 Gj#$R;5 mr_MVhh5įYw%mN[zX+]h.=G'02BD0By<µUx]~$jV!ƿ8&tCAi1|)QA58NW"xjOD-e8'W%t+]%Y">n/H/- D">(ADa~(%8XmO oaNwwƅ="V~g=%sFM>UYS ~75 M H ˛X_]#I3lzjwǢp!0ːS Ϡd6#36J30.KL &p0;*: M~ljDN<$(D}HAI6&1\N>72 $4uUO":TNPVQ/ST ) =C58 38f#G%$܁r2@ȁOVA!o,'K"N#fQ$HcM'.%:Uk Rl@Ъ{YdRyxz^RzX$V}lIl)(kl=" g$oH_)Y`D)0l1FTc"$/b=ǚ-?=6G#t7;9d%K\j>.TkHx|P8>WNf]43rgKۻ |frJȯhcҏj*]m vN둨-[U: f#mhwѩix kPzf-yuG7SGͬ|Do "f-#4ADKnPzAK|QcęEBet56Q/2>az_5f?#Ż"?sR$jUϙIt!6~oOEPx'QfF]h=D-o2=H$I3+$/ERJ/>")UY"[y>Kܻ\NW2*>5s)f''%[x(8IhM(Evt p<(N1;V1H5IܐOB:d3aѭlewXl0o_sqxCJm16H1"hjr>TLUp^8;RpI6|G[ͬOQ:f56fr[G2{(9aι'8"^ LB뿍#TzjN­6r$\kfgYL^qAuVRnnˆ>1OOuJ+a.z?LCfT\:=«hc) tZB$jQURxH(}gF)%؇(25v$5!bDk^H]F?EBc[R<4K^c2lJqR~Kǘ|)F : LES:f8b܆az]G8YJ\w8tձ6r982%qh{gTe>i8rxͧ>5\Cڧ6,)=㺚ADaXz"«7DkHhoW7[ݞۨ0BajzI ">`j<^(ZJy` ކOVo?co_9g'(p.h٧b2-H/ShUxKt@|HazMfwboL2`ǕirosabLGC?1Em^/3ko#t5K?0VKAޘYላKv:*KKnz*2̉:%MPz3=t}2WTk=,kEf9wp,fCwsm[_8rYV&q; mc}1Oʼr YFV1HZcˑ#3eS?%GrRD}vC>g(7\=v? Ŝ gjVѦ?ߜӹ?uilTڂ?pL4#` L5 tl$k܆Ls>2ʫ+h]5:U +sshvjm@7%m\hz4jЅW#*G16r؈2I"6联%+u0uLq1"ޔ.+2P'ukSUS$X ,L|պJfk} 6n,[-=I}[t8o3'SRU],ı.풠TἾ'3ΕE-]sv6JO50nxtqW2ː?`e&əSFwX$ L{!h6j>ъ0zC ~Lqz8>S.=!0m*h DJ@Pβ}U3E+y4_UfosWndC3؈_k՜(_gAoefkƠWqD"rS_B+:)yʕTqaKet`W&ˮdWqogW^GF9i'ayJP\Y?N "<ݓ(U w)y]7fRAqCXOk ц$9]=}6iX5:jw3fx x /m̃[=N6[P^ZzGRDWQZck)g$F8oCQpCWh//}LrHQ(:&3F_1bᢟs:șP1W|"oO>0~,w-PQ6"EB$*VnlM7V2e$ ,=j0|O)Yxfn`U6rHߵP>c>$3N$‘}N%%%ڭ9e%;2g^ l+[଴I!:˝pĨ cqN/r9H]hOF]wT((q UO-0ݦ=WA[/t\D7q/4{ݍm&9FpD$- mP=jIRNHmϊ]m 7 k ѭ1BފY))>f'iHi%?A^j'A}:9 s͡t :㯈8i-(U٥{ߔX'blrܨ"S<ϸ++ʡ'92U rIoD Q3\I;ju:Kjkdq^Wv/KߩSz+L\=|hEu YAdOOY cGMˑՠDǨR*^Ь[kp.}==xT,)߂E?~af z"fJKD:*/ekEzZ`ӝ6^0 $+~jTE OnSNMR euK˸D{~ʠr?|S~[X( /D{ O0]R.&MIr ֚w{E">l|>-KYՏgYэv̔%.uStн.դQ 6T\t܋̻v:*e@ ׈ vni қбU(ExH~pmMoS5d֟WC+l./#y;5|0d"#x.Lt%+a2QZ JZ([ؠqJ;_c5JVFWxP$d~n6U t,¾ՎJ_6i[dR0QfOoskEKʣb/B|`RHhm;Z7 &z<={|d(P}$K"Rp{x>y]oS3ԆwPr]*NC9k:HC" g*?7@yF6I'4E+~~,c{o GToWLZ+R AF>i㊕D'=[iBhH(};Jܛ?S5K傉ʢ:wWUq}ޝ쏺2ʕؕ&zG86pȤP,=\gQG?qf@USqﱅȔ G;&H{I.i?2 f&9mRm_Uiʑ_o?#hg\r@`L 䑦QʋdS먮Q=xe2.*?qCJ8qj/Aκ99d\F tXRqxϹHWxCr0[\|4HjÃ5ΐFaH35ʪr"".d%F^Ϭ?D ؤ[cjm޶u=ŭpE-T>H80}34h/TR[>rqQd&`$D3qi-~C(|cgJ)#~g6:s0]YO $< $1$p⍑L=T,8UmV% N_.q+E*nqw܋I"1WqP DBI6J웣EbOYBly3 sz$%8*+$8*;bYd;?7P=J J$P\)l>Xxk\xpyHFfK*PpR>C(([_>9n^P<}P%UR<߃,[ld-ȠIV[U/ݦ$E"~z3ȟH>P %Rs{ of MefGU1d`M+zqsNs'ǸGM 5L}j #7:3(F3|w[NS9BNC9(F2}ж0J͵.d@mzuUɮx mg7 Ym4e[R3r]4잛l#Hm}oF~8Y{D]&>*oԼ-qݒ|:M%.Zs=2P'a=,'<%~@: # Sre6(qVanӮXJލyׅ"^Z&w/6ZƄSa؆eޮ:䴓 GACRXbh=legfWmHs i5sw;;Cjvn3>륷Qgyh`(P=vJ~Z)ah=;sL#x3?1CN#AF|GKr5DRni'R~QmijU vv)l#@[t׬;#Z!:rq5+ B&?#)e?Iޯ"Q&%!D'MJxXM$<ٞXjeS'&ЀҎVبÉ.Z׏QKj #\ϔ4[.D'!~jSg3@ LjXo7RVC'<茕T&UN4> b]eZyMT +󺰕;2zeq&k! ڻBƄ먀 wt"W7+k|#;RZiNDi|J$%a}*v)͛XTC {K]0uW.L$XO]·`)mf6KsT+M8㈫L?Jfb7UΗ Ya< "%2jܸ[ ]0o$;ևw jۅqU !ȵ"Aw_X a)#J_wA\J3n5h K"ŋv<"4_UԖ|/tn^'_A}>NSWC9xdwF7yd"O:ur1w_$RʖDwj,J?/s DՇ; f<*m :iy ?wxx~] ׌@3t.ZX+;`85f~S}W.p/㝲9DCؓiܭ=Atf_spy(MR`s[-ͣs K#XWofg=/cZd8E*1\r.G/ǰC:z9~¬DĐ˗#gT$ZWC):V0Q9JYVY15Q@uȣ^_a 3]v /#!I[GO=-P>W}zt5As&^ܲJ#GAs#x.S]XʱO oGϒpxE~}I#^6ݨopb~ |zP xm9JY98G{kـ.3&9}¡!<0h#W cz+:h 8Xt/e62lzCeC=~QC.m1ب׸Dk ^5hy?t2FYDtF)8"@|kTJyzQes-eQݳ6J5pK($]1hs64j) !J}TA#CAWǼ .egHd=Fdh3I-I*UG&T5`i >pdkEo!~]|}T3YDv0iG3[]|^ndPmflm>Zm'f9BF=~ %߸R hA=$_<^=GeC@U2<6tyz.Oxx t&Z;FO+ Wr0&1Z8둩BOCŘ݌}g>3O-8ކ8]t=׾z2jV+th k1ɸx.E ^U_2:(WQ/T/-[EoP6 -_f!BNtѣl3 zO4IL<翔ARxP8Gf7rͫ$B2_#nd3th&rILM̦&m'HIRwʦpp3DzQ\$d 0Fmآ;f9&̇pχo1]'+.>I8PЮ p$6iK)Dُv-8HIubWxw|Ϋ,ksBǔm9-8*Ӈ̧j D}5L#bCa&_?ZO_&|i\Kcꑏ̭c+D{m;p2f[m-tуL_OQ佭3A!۸u2iOiJFIU(4½k:6Ԅ Y|cC)C) peV]dL eYrxis6p;. I^68ڏ/mHd*>7L9HSa&5BEnӋc%EΛ}nW73o eṙylṙy^(O34UM-^Sd^|FՋka-6bg$/Pz--C=9 (HvAtz"Q{wrgkQSq{CcZow2?8}&3qg} ߨTf%7(Эuz#-LͲMޛtFTwYO0&MoEw=޲OyM@2OyA6)f;]3J bax&+S>mU9R <<Ⳏ?NqETLWp?X.G`I7DKOaʣJ6*zPzX)=XDmԹq!9a/@[x찝6rTz%uNKxզLmH6`i߅}6i̱CvY/p ?8*y> xC :M ~i#)4Vk4M$pmŏ/½mEW]=؅0SLictJy+eR[^zFHR*lD3iO ~#V`޳)K~Z~E'V#'n^i\Tz61eq?q63'$w(eЈH 5gmVf̞M۩z }wԇ־ŏOP`2_w[N?m60zdv}7\aw[W4%vF {Xa)hm7:(1DKEHTfdFiUD9aERUU?J^2+`4?6<ֵrsH{RFYqgN{[mDVͣ2z#Rz ԴJ pM}ԴN-eYIO6oS* 9 >b"?sO=e砼3(q&DO}|=6~/d|jҭo"Uş"pOh y_S5oh|!zYvDٗHE<MZz] iQ2.VspzSy,sgҁnBgjIx)Мu3P6isx?Gh>å~ Նn'+FPRjZסg=@9"aqj W99k6CH$ :Elu3 Kz(h.)Q:/80Y'(3ƈ"a=ѝ`2'5.ت-; |T/^1`ITʇ2KZ)(^5-e>0 >3fyBXn#f7(FL[7&}%iof/mȭ"A-E/t,{#Q\EpSPRQ.o]*I$f[qzMTPAGq " *܁Ta-XOTDK2˦Yt$"1 /NTYzE3;`1 N %[Ԯy3>*6߾qھ'**MW*6862>/ބy%oYL/E"\5PIO㞯$W"QYi,:QiT3Dc6J9葯J,{+Cwz~FT^|hU W_ ~ 5TOVCu:}2zKKIGpokSh>D{YEWpi[lK4oiTҋ7:D Y6LU6Nlq٦emx נ;d=Eu .{6@IT,>[Oϊu+.YQsї9gxngNOFzۆe-[HվӐ9fB$uRa#tzG鹤=?FPz=|o޳aQ{O$/lg4'PC{942l(W~ӞpQC_q*genQ|F{;зt =Sx#W݉dM4Y+~⃥b3:8Y'vKoͱc}o̬~cm 'Y/AZNy#Ď^z5qg ;1s D:"~:UVr~g|,!Tr#tgNB;XC8OZsLpNrT O8BqKh<ĩwX(xi-xSUu<ќ?mt77T!v+!Eqx;?Sa. ??|?$ >o/_({{6ͅ:k)ZEB}،6\»d&پ_Җ}8vF1dDgad2!n޵Hثe2"'|o!HT"L+a2>lW1:֭ڐ7bB%VԖaʉv\&6A* ׌)> y@EgS\I ᐋqo3%Nw8BiEtY%A-gEji`1߭,,;>n'`$͂*=]s_:X邃]p <gB᪑ʩRiH-Z#[*cS ʤjYiߓk"f'G~ju:ACPԬ(r.; "?W3)!gФ$T^)J3.#;LSl[uZh܀SIF(@O`6%N r%dk3P[ۅbAi;HU*{xq>/{.8#tOɋt:*j"dU|Jl6L.r:]q)vJ~0å|HhU9;uwJH߉# J'Djq@Es}ґ3u:k@5KŒM&:&wBFy7وtpH"tk ]=LL&R[~ժCɒZz+u8gh*)S)&Sqnr|T;ARYxtζ~J~;"4nvJoҼCnvDY/hׯ>/{!vu~>ku"Q? gD,L%*"ܽWy.rY"*CGbwSF>hsUK5zQ6B .]}pZ/ G܅E)"S8ir>~T;9pF!RWY k"MޠA<`ދvC_7)=ԣ3v YEoCy.hD`do>4,XԱ`J @1",fA6ZgeO6R9?YfӀ^h`ӯpt>#쒫+4:0NJzF@U1qҰ +QivJS DO04;oV|FOGԜf~DG۩ƥ)属D͢ZOnү]t-|r)'RuP}EEbB#3tv(߇XՇhl]?z%z)îaopEja[ J:P{]Ei"0 Tb9Ň)O?bv{K='IK 'Y )J~(?{V%}ĝ#(T,a'<9&HQ~hۑ KO_U)y <%)Z89Z8E.d:bb  n)J ~ e3:XowꥑiNt[\y`i7">޺z}\>g8LK|N?!Ӈ7R>*s/ʃ\: צI%LvE?X;9EۧtR+x}g8(guP0- :H>I'NYi%+V`|#2f>By+AI)$b# rhqv3BEo3qi Jʉ)@rvm ~t]Art˺2lT9x Th_DjˏEb*BQb}K xD(;t/BI܂Z d)u),av/<-hxraW`'B3 dGJ'HHB$h◱D+'avI!g檨M\phXHe(P+ U&JEjfCѧ<ګpF>k6{-F;*KRy's#d;%u"WN FHnKR]O4iae:# qRWnc)CAH {s=#찢U#S!f-;=Lj.t:R눮^uao;e)>]q5AQ}N7H͡f{X7״,ݮ!Z`x!6RLD`.q؅SNF {p[Rm;Wv5r(S4ON`jERiL |vTObFC!j7?(xx#ͯ]g Q Nߘ0֞;/t9d$" ;ћXܱjc(}61}P F3lg yFG?p̂})/k>ym)Èj{X#P2 a? >Ӭx*<"mb(x4h8B\>BUӏ2Q y Rt7㸴UQcE#yiHu}"oRE3ag"ok*">):" hy= Eƒ3͡Q,3J.4'(حAiԆ)KtԖ+]3"pU8ɵPt6Ԗ[tӗC͢sE&v# ^# (SE& HYB1\e#ހ_"yWGjC)]Ȅ: _%(L⊄|(!"tE}ŝRD> fF$ S?-2A/rG͢r%PurP."H%\z[)2A"*E-QM)V)qi;x0c@\_|E -"5u;~ZTi؜xFmI"7fv n^j{(xgtp> eq/}]"m?t;EY_Q` km9/`W-3e;5+N*,[#XEl|óUPgy"%[uf-A\#eۉy#0}AuIS]uz&bȝ502-'L0o$LAM5<"@7Š;&AV7\5 +"8R}I77Ā;e`[nx} `c]2)3M3HnNT,DZm>U,\Q{W{;x,K)f1˨s) jÑl:ulMt [6Hz>l/2ki: \nțtv|e"[H8A&X~xkD,L|R0qe(xˈ^ֈ/ti;rnXqmw!WjD!N?b; Bwz` LnV*WDJGndj 3 E*f$_@Š@" l_=E S#VBdQ =z>clbA/Ban17 )U? oN?"a}F?}=KPl@_#C!AO)Fj W$6y̏~@m2?N2\/EQigJcȝMWH$WPM5 mj0 "\,gE9RfL$7$9YZ,h@E@[|%̴茙tlvq 3@ u v~AwHp fHkLnVXhIgc&bp"k dFbK sW >0R4(J;. -&@;%}vnA's9Z,-;2s~}lөG% ;ucKbc$R MK!րÇF-%ze ~h?B_Yc}N xqe >C *Ay-f>!wκoQ@$wNG;,HG Y3 H'rNXz6}3#vt3\RG 286ˇdqrN_R(i . 91*qDApຸc=a|M?0uNŭP8h\#dn;@BV9soYq`g,ҩ2fLt6  OJf@>Hi HmX<;GuJia>dd481XN` o.GBIS/: fK㛸N% 1D]bVHiW #C>$LݩG&v&^5^h7 O%zhz'Lп)^'8ǷȦ'ǎԓm8QHn.gؠ;DeOpM_p; 5SiP?W"1hN|{&:8f-$˽:&k:/ߞu =KP&zy;Ac5ٷ Q!_)ce=sQ!4EazZg ="Eq]t fu>$޹`_{$w~~.K _$Lb ='&!,Ba*4 MH22a[U(H(lmrhm^3]/F/P3):vhYX>nd٧xO߁N{@E#ujR`p6|Ȗ#ۮ}gF3y*A[c01N[Znt@f\mf@ƈvN a.f=#FdauD0 t|$^x_F&1q^']o0bzrZIH{Ob"K)>EMHM1ӏi]VDli Mǀ;.eH+_$|( 5Ig %w w`.. -^[Zig6MWx5 H8])69J3YE5>wD+b(2Q L"Y7$NY SVptQ'G\ a A9w쇏qD:]drLn bȑS ^g |F/2G/JMqS,ˣθ'Z]"}xޘqM y=#DYؐ~:=~h:go"+;A d1YWz#FD/ݬ>} B"1jҷCmQ {].RS}S"7tzLc: x'f V`渋$ο(DOxMiś_,xZr36SwsՠezTV{WI "A =$Vc_$^B)x+ihآH{=F}I E"%~&Ib <$K0\|X׷*\ n_olMcؤKdƠK5 ^3$e, A^'"mtYA|AB{2xw>jڰ襉^>NOK3x_)b8>x˴-"%Bܦu|$&^>U`ŅF ,]Gc(iYbLo}G otC?}&N# q7?^;21P@66gNJ-kbl{bķ1 ZkW9)"COtbh8:lw|-V3~ڶ fx]ڀmvL:_EZ)NH\Cu߮,AT+iEIxg@7dƝD{Sʅ7L-F͛4)ZN7I&wʊD#_:Ӳd-}+RțW\r.$LGގjHfZq>f-fʑ?y`D_xPc^&6۩SaÍ?bva [c=*‰wQF/ADyYџ."39SGGTtSb?nŧ=:@D@ĈLVŤqM<} 6hwc хNCBAeIl!@1ˁQb,7 _C|Hi ByK$aB07 ;"z-Ñ0V= 5S _up7 j=}ӿ1κiՉ*#O7xl7s؏ .OS7W;() ;}@ C1E'1ȣ^3'Ŏ*x #6:A'L~ VtUc~ԖWW̄ X2ݡ𦉹N@hygf^u,ϊq eݙ*y+x.…֊fṁrgc~֢%F33cDotXXE[Xnŕn-k\m؃o?G+ d 6^xuXo2g-wp|̨kj|0ʼnaO粢0|+nCb GjX;OH nn&ъ``t١v^9K:.8C pXt;*IAT/c۽jN?i gVl9N}K$DŽ'Ƀ\$9g'IsrrǓ#$Č$Gk9Q[U%z[JKJg1ɨ c|fE\@s\FtL'zA!kbm(w*gxFܑYNpwT񳎪g.\p>oSʱŰ_~V% &1_ S)/Ȩ[bN2JcaQue]s_~Ílw<'Oxg eq=h\g'|}~nq}>^:q%&? R ƌT436V5h C' n%BW2xT)8$|h\IyuV:Õ~wjnv>*gP?cTil۰5LZ?z.qyq%\"UkǍvnjsPx!P^<_iU+.-8aR ㋸}Ģ# Uc1TX'S%ESsXo*7t 9c.5br1ÇN**-:tE%%\bphĄc&]X:z̨E%ګ5f|BIǖ/-H,sٰECϳ[0~RI,'N[jj5 _U>c4#!.hј ˜w¢haqz&1KgBtG*˸(f$3ơ _fS:S 9LEP%v8=c?rcC KҘKbW3Ψ¹Me$v8ծ;TbqzȀQqzHAը0TsŮRbXU0sAjSD,\*S-ľ2.]>34xtXk!^[,Xi1~o$+sݡhΊs#ܴh[7Ԫ?Z2R%`nzώZJJ]~-Z bZ1Y嬛ϊh d/5snUκpV4% " 8?F 9uʧc녢v:㒎KʽV,(#uWVz 5wCKJWcԹfL{Nϸ_tIO@rŐw1[(fG` ̬^lg1]"DծZ.YhhtؙsfϙٕL cnq征aqw$\x( $Ά|Ox7>O9]9؂kQu5 )mYŝ[.E:őCw8Vk d$\*a+24˥,۽߿Ӕ 3SҮ2L Wڴ)->}Mܑk} jE^e;d C&}tiuoFPG!rDJ5bX2x#yv:Ar^5&ْ^2G=Fݸ7ښ*pmQ[kUcH:dWdm|[U?8Q%AC9Oj{Bi%|MtqfK&9RavRzxvb1yeЁ3;Ō8 Cػcیfu];xdIݷYؖ8p`}ط]Q")7Mڱ=ﲖ$r% 2+;p;I;B AvSV - vMD b8u(wlImGla+jݯ`9Żx;cQRD[RSΉد͙WbeCkWO6#ܠ^X5\{%[B\=]̶Io9wPt܂F1KaU\ _Q21n9^Pl)DR;V]3n;ZaH9Tnf;*~_yI`6tC9+l0m@buB2ܒhB Ut6AOx :K,D1c[&b8|NzN/.'Yj  uF8}Oxs36bIdĄӭ-M-m'`ۨvzxF.M%[h8XANtU˘ز9c@dUbX}^EMJ9Y~Z9*.@d &#p5\k$eE-Bq+FF sJ#K&Y?̞}39{۾ɽ;fm{.q#hZnű6'IGb{t|fj1ҫL-rBQsX\ >^lSLB֭L3H [iUhdA#~69@u= *L=Og*nOPy$ig꾨,)|&=TeZfW~‚I1^b3 Kpx0Tgէ?z]"=UF8r@"`y)zi)cFYohŜ m[r 'dǘrx]bF/ϒgg%҂'_/FEÊg[f&[u(3]Qg{U˸C1|L^\;J-6KS`+Qcߒ/`;_[,&sKq~L8;#XEHͥ*rWkhT*XHg_'P b +82H ~1ǡXk}£T]l:qgK5$#mL[Ҧ%Q<oVq-پ@$;fz/`]`G!*ɮzM.,/X*#Y4y@,a8 [ս)낝:*w K 'ݪ2pRzV9bne`.(P``Wv҆-#LhN-@Fnn p7nohk.hz;Ut,|3IW;Oc3;<-P i[݁ 3KL[E&4a=H1uorӶbȮGնmguYUv*r&+` Guk:p=d<IND 1:5ˋb[PP =. D[-cXYQ{K{ԿE"gEr晝vppfk +99gOX;Eq8(jGkyT*t=5dp*KFeө3T˜Ij f>pv֎uYy\>pf9CQK4?6.ٺ}l',j5wo]ى!^r:aDٺ` k:*Y,3-R ~OK^Pf\ 8ee -UOĺ9^rQ|8f_ _ "BJFyQΖ{0(3 U=,/+ǘBwբyhtZaS5Zy 4P*d?#i'֏3Z94v2 CۚoQ=x{@gCF ]aÎae{4Ih&둉l{^ 7N,΋N&YIz h]dZ Ѿvd'.19aô/WW zU.)`/[+B8h!~C"Eg˭|( kY\81Ve-q^ NԽjqzH0_:ኸ,7>-}.x~rw)jh7- ˝Q/۴%)Dd-b`jOR_nPkˆQbKKVI$ZB_G\ &b!,MmVm@Ͼ9lA([}9=].{*XXZ._S\ThC+ٱ'oq˞=e. JMvDfжq] Lq.D26rwhd[xܑmdɭ{U*1wp+la y2-: m׵E]~(o`Yk |ه~5Xwm+ԓf.}])ZvEJ68;Ay'1ddM-?^ledJDV7dQN V4ja"a%xx/w~wgYٗ+u7MOhOT.l-Vsaxt" wTJ37n@56[*I$}\ˎA!QhݮUAYR Ng+NtjISR+lPȓ?Gc9:@ߡlj]xR;ѫʲ 0{*l95s֔Փ8ZTHܘٱr0.g#{,uoc0A+wŚizmWiAYC*XARFԗ{l&#"/f|=۬Ġ&$9h#Ҍ/ms[kq7hWv]hL)ARIr늡0ӭr*iMuh*A/J"L*Nv2zW%vizľԗ_][(+GLP_/94'#PIVP+|{}#ZIvln/=)]HY!Oʚr{'[a(8KUU6ξ?G7~}. QZY$;X!ԗ[Reg'/Bt5{"-t6Y:V쭣[բ;Z `7/w+Bez‹5ݙiê3?/W"|_nJ3e%;ݵBכx ǛdhSTAX=z}>UdLyL `-3HќԒlMq-r  U2+DE4{HZst= [WN4A=(OYZá\RaUF3MEFQfDBw3d/xͣ kUOr&ā;]iiaW#/wj?rQ/WR9؜[pn58]qmkpokPNi_d)/za⇕=Ȭ nd`{E{.W1y>} 1N @g3,Mf1{0=+} BE|HO0`σ4 _s>$eT^wyhŸ$Bߺ߰`t v~? :@n!,U4# y/ 3ڂB*b|٠UYxgH4o=('gt(c[ipe0Q2e_e$xi8^fFF3}<؃Տ OC  =  f 6oVwe.F|%͘6៍f|0:$D tuwIЅ:&2%]ؓ_+)ŽyoU)wC k%Yhq b.SoW>,&_c'9#O;uru#f`ثo=ziҘ󅾔+\2DtGqrA@<'LEJpA&n蘻LwkDKRpMQ2NvtK2B+/vyԔC[or@W6Ц 6J~4 e83wAwRIR~{.R강b3VQ[)T*K#Pa5[O<vX<4x1概QPQ[AWR4| +]t]¤,[fm::||`!%0,YPQ=(T%;im3{&i[h{m M_Sz2ٽmv#380ev;M9{Li!My$ݘ~3Ɓ)ڛ&03q M;'Ѿs ڟ~ONL{f-tB4~qt0Mٽ&A/ΰsY:!a$PGknQaNCF 7稰l|XEе(Lqaۡ#y+ۧ ;B}jψ#;pS?sdfۡLO읺yM79rnW+|}[ o+␵"#4ݭ聣ݒ .}@FܦarOrũ irrӫexj5pb-:F.rRKW:TT\ǬGRz^wcVPz ngͫ&@X{tG6+N[U|+ؑYj&A+=_lН* :AJ\K58 Є\҈ͭzD%t"T b[iMS8`y¥0~Axrr&Ex\N ߿*[=N#9 y#jVNL}Pfg۽qH;z1j~ܜ^ɦҩޏs] />F{ѵ^V c#oN2R것{矎O4ӯTlhO ?V{wEgRV7 g>) :ݵA*W+ݽAҐB8 mӰ-GnOw:Afuѷr7f7Go1Oj< >!͓F^ Y4%ij6Jw] |Ҋn-D%f)t~ЩluzLzFV٧YRJ_U ]C9?&dHvN0 1Od|4$\aI1Q/ںA )BeZ҄fHm;zfT:ÄmŗkJ>ӪU/$=w*RbK4p Q:иQ[KLhݚV-㳂$jAޫiF-hky/zjd9a= '@>ZF0NzdsBK [&F_==2uהk|=O1rTyM;lBL5tZ?48ުHFT 4\3N=W CPJMh +s '|c^Uj6myrO\/vTSOs,E_\yN̵ûYwxxLu6n.νBjt*+FAS_Fh_7q0iҷrG (=6%+5eiT/?T{w[d\ai7<PqZIJ f4pCy^hZiXh{U0DX괲1/Ǧx^a}bW,߻`}sZ0Ɗ2mmhFH[/z AdbISi  /[p|ڨUp\hwbcf*8UX%c!l YQ66rۿ-7}yS/b,l|t\E/kW(>2.r\*w7~ gŹqrB$*'AV$J})evJ nWV afOZJ7s઱d"Y_5E]7K"}z)#+m~$ 3ߤ4Hƥ4qw j4-e:RsHWz4Et-%W盽D[j/*` K;QE_M@-]6h%ilI瞰rvfX:B~ζ\:N>H$<¬Mymdٱ!/;2fl>Az^tfL;`[%o^KJZsULq\CahKbJȢ!f`tnI-kJ0ELFA/Fids ڒqذ1;:lՐIcfP3-X)d5Ԥh0u[ Η/>X0YY#ƒct+Wgv/{s#:u<9޲4F]b錔eA5 $*fRր橺X=!u!:4/%\?AμҫaL?S͛u@IwU;_ 1k娰Mɜ2sŹQbw67*a)?11[̚Lʴclz B3–WE -n !_9軒 ViXZ>iw<S RP^̝<*4RWNM>kڰUkuQ퉽ȴo8˱jB*8aEuwނ%Tu/>)ӒF3P NLj47ķ||s mfmS_Vڐxi⚣#x#GtMGr0Vu VzF׬[ Wj歀_G-&bD4 ~Ԁ*ė onFbl*/JW\ cG=5Y9ߕrSvT\yJ )_Sg~HJRmIiǏc\7!ҢΝ jp1ڭP)+΍PZ2&:w劥]:5ʵ'H|r ?h AxK> \H zPF[j|41;o?TQ0ַ)jrꮝObqZ?$h;Ӕ U =~qUDK.@O%x3u 2@'ttKG9V>jj6tWvǪAŽ'Qt)$)9[;rmUv*7hh H{ :byBgs2FbIS(usy-al?e}#H_\3B?lf(2:gMeV5B04ͪO_Vtr=ќ>)'ls4ͱeK3RNxJTT喖/7=7Ӽ?zσ6/UM~(ky"LCh2J.=iYtO"[H:جg,[CZc-,!c]Gk#_A7 @d+KJ(fnbPMq?o^$\HЪ&ee"v;? ii-V@yڥ w#CBvci`Xj*(;NKٮ~^ŋKZS^8nLE߫ވ`xFRҖU!(0Nx9 Ds~I:8y8>9}ⓣThW^-կ_[kP㯒~fz8:kHTNb*_-'4&įVOBB~TO?ˇ/MJٕxTa*1?М9JԐDKDm|+Kt=DAyDh$;J@g1:k~>Vt;'[utt(v/د nh?䯟.8Jϋ x&BQ^X^lF̺8rցKe#%j7w 0&FUɆȨG.D x'}beюߞd*C4^">?I ڄWvu M >4ا6R IfD)e gg`ăn$ $X.}PpfqN+7jǎ *x`=b-/mtP‚]]t5 +Z麖^ f =(_\{q+z]ԥMdV\Wײ2CΪiۙutnzH"z+h4 /-/?ˮBRυ "iԂ~EAOUY00k%=lH_|;~k vZ@/?tU굅oB=vs?crTѴ\\y{4Za7:]|' ,v)%!RWyCjLWAogcJ. M>@Hv،&މ~-f7iPD9"Q8M|P""Ņ$4\NS&%N"kcqIѤ5lv/ Դ/3AxPO hٍr r`UcIԗ7lΕ& o`~0tҌI6IE$c3:MC':urnyaK·pHF:cj5Ζ]Y'i4jtC_*8 /?FE+I$ Ic$B ,Tvz:C.֦Ӗq{U6 M^ "Ǟck`w hA8Rÿmn>hbZ#E‡.e8.6B_hR2M%7fgI6qAs67e)7yH7?Ybß P-V[ t r4=PFA\\;OAM8Al DOoh78kmQ˟t _ɇ}/hMe~q˽Z?X۫IHS sG ,cB{˂1XwI5o[ګ;([2%UCK4UJG?V'hÄX;:=^\OJ-D{DUhNqƊ+VVI@:Q~S? %d 2vGZ^)UFpj~t(oI[D .4FY#Mcy}N./cf_:/ l% ):rӶ %/: $ٛ;poHvT~ЫյuigAYk/.[oM/FRPBY9I7QmkծC*# apwDX~5ites%i7#;),H"FQsOS0uԤ.MUĸi iU ԴǿNP*Gw]>xmeE\҆:aEy49(IiWcP0BZl &ޯ}l=bQB)Աe jx=hAx0_){: d i 9P+Ak2q=~{RJw{[@hN4A'|WhL"@ӾC"xH)fP ny55W]נk0Z:(U\u^By]XL,r]QZNe$ZNQ)NrlUCwassT!n#]dKpgr"r~lVM[ElF=$н"BLterBt ~9'&Noz']N6Wrh}۝WK̯MV+a!LIJ uYs8ߝ3os 1۱v~6*]{Nҹ+o{-!a+W#:cٝm,?Sow1"۠ ~rRt/"adF"r|lIǻ+rz&1 u;e9ռ5PXHzI&L4 n\>ѥ8*+4nAtSwnlvavʍrK#0gm_\w\`0mzH=o-|1)_=v3tVRV-C)aF(/D&Ig!9WP=Z+U[M|/rj(AXCUx :믅юhX̴'7rSN)y34Y@!lP!DYz`:jlg-lB⁵t=Xyӟ.zʳ~wɥ[FX1Jsttd+#VAÉ䏽oú/],D2yͦW^M2wF@BgzaR!&}[2VơOt{ B)5½pP( dO)#Wi0,O 'dpQ4̋ؓWᰜmr$]VGl+H$N 7(?=n ou"9~'\`6IATc!Q( obǥ$ RQ`4z&6ʠJ4OҕfqgHgg"X(q[w`&g!g($5N+FW䷁*ǘqJ;28!.*l'Do۝Aw" 3I[b ~FXbSoa:kE5Q@tfv:mZǷʩsGICEzJ7~<>V)a oֽ&c:-뵒3dk/5!.FX2׊f3w@A3oⷭ-oԏ^wP: ρ{ 7>su՚zlu7)S7 xOD{H\hإG3lw8z,MX.|*疵x:1LCv,/aB\SD%[tTwCvsYG.q÷T\Rߍoԗ fۗ[kI+fJZ-.tu=|4&x8Cpe`uPq9: g4{3:QG(H2wpৼ' BHK|wF1b?w`FvPOKbjRGy'jք6`w.c>kEX^G J3Gtn](r59ǏM0Upsy^bBabQ:+/u?z=JT=Cs`b&mD9edd:EfL871u'uCr?.KcTG*B5lptR&UZ{ET^?>;2/*ܤĄD~84ifMkz{2FuZK",cWV,D!XԄԭNʘ7U^yǴR2 eܯuʣ;HB/1Gcدޭ*!$^)!bw8 u-0Fb ΗHon= iWzwMRQAGEovg1y݇ew@{wogowV ,Wλ%wD9Ro|L6qCN=ŕ*)Ej4qOSiۖ7b#R_Mb{B7Fbe^_!_ױQK+Oֳں^魤 稰9th8+ŕ'U[DuivS>vm;y5ݖY2?s& 40w>FnrT? i[\@; tt X8@0u.|z}́_@WOC, a>H:fvqrXڟH+9zЖѱnQٟG2;ٱܤGq σ\Jl%LP7WCd%_bݣzU5 I5qj1>R`YFf*KF'y)$ ?hF)v_(ƺ`3 Avαמε- J<SX3Ǟם5pX]b;px[-KF3q:oi*ٌMGdždbئ}Qg8kw$.š^1?Mr6dBp,hYF+?g:H@œj`~D*Dęyѧ1?!gZFB/7庠C^` e6"&ā _6Wl+t]ʚ nڝ:w O^ q`by+KFf|+rZ`s'T!#HNyT'6w\F(Խ%]\[t}OF^[Fnq8r{7Уگ33H9)hIH foٿ}~I\ asUsDÒl#lQM ,Z&n>z7У^%M8$+^SM%>,=̊Nԧ\ap(?*zch: @G*pTSwCrz^E W:OfJѭdcqNP_v5GGP>1Jl:V~ss'$Gd|8H&zsZ#W{ Yܓ:w&i;0+.M6GRˆ.K|\>^rҔ™8zGRBey?V+)Oz|9冡Xt`CSv.pWao&fxPJ[j!/%XEɝj WLd*Y2i9UA* Q\M XuQs{TZ<ڃ3tjښ3%l+~{V+8^?fRVγƘȜ.CֺDѭN:f4t`7ܘŘf)L^F;z=4Rv";goeEB\ vQۘSfΤmiF8/X>h:lRqr Fq(۰q[Cx hк%q KE.36tGV^8_<%I6ls*Wy01f^ZKokh3pNt1۹:;Fl \fa nU\ Kbnj-g@ i3"a/@V*.ALa-zKbB% ,~\V5+҉F˾3M/^7`wM隊{PN>6UUg5RG]U+F)8׈`|<~oU¤%Yp:uvyq&$j"[@tJ=rMZQ :&aН=عnI2 5)h .& ݥi𦻵Z4<}N.a˅"PiM`н=M0/bй1SkWt!c~qZ%Low̔OesyL'yZ^ٝr0&enti$LCtNavhMwH_DwXJC'(!~dk?#U" -n}3V2?d-궆5]ٱ u&'̈ vOzǬ5AިyM"e.ky-W\lH 8)sCB?hP4zn=ޥLJ}B^n/xY֭=TY o j0_Ԯ ,_61=Ge<#͂ĘXtttLbř;=v^iQT/6P,N, LcnG٭J?4 ORoX&ra_"9x8|3(ȹAɰ[.H!q,#z%sDw5|b>ɼ.o~qUZH4Gg z7rt^{n/|0c%s 㪍 Ed&ތ l6Nݻobқ ߗWKTlw1ܻOǁsf*t_$m+()BWIRIky? oI/dJ2Gkvd+ZDk<I^+l[8ur۱׻uyr^T) T\3ܳRQީYL7xڷ=dbܳJ5|ηl,Tl\%Fx9$ 4PzT LM oBrA(W^ Mn~Tؿ/~/vrKp8n[ǩIs,swA:hG큗p/07} 6iPIe&kx &&3ùmu#w;N/IqTlgFvPqϴOt!H8jH ga?f VLy V7(EV '%pN-ryw>T./T`=Pǡ,ns.m)8_\5fot mc*@49+l)K]l|e<\qcC~QhJMry[fb<-\iLV a%2D=*‟0rVB/}m{ ig\w{{@ih-W^4=sV06ܑ#d O/<ֆb;0''ÇMn@&qĭzHa:N?B3{*t3^ӫEUiOc3!mCw AmJ `4IA$9q i)oIU͓Q| _%"I-4S^>-Jꔟ$^g&:ܰ B4`~8Bﳭ(#~{&!C a3v |l=F^G)RqqZ'J{}7sF0!ƛ6}ܲ3.]x{ 2ĥ7B?ыJ:ߔ3k#N ˃Z8ӛTtQ~V>)9`һH1FvŕwQ]rQD Aӯցk?XQGt}li?c4|7=(SIRd<.OǨ!L,RMKAiIV7>؏cz>z>sTG7#.+o95mlֈU ij}FA*˞5k)dÊd9F3vZFzB&}8!7F7ð& M'am{=>PR o7lVFR!g'tv6Ν'܆jFg&8 ᝎڠ|%0\f0Ws_rսѯ]~3;VzʨnO;cZ~i+"O1q/Mb6>C>œmY"甾nMB/Ag+.Z(]}ĭ@^܀c+h(tG3WGy-bt:fmTYuaX$Z73ֿ/Y, z4ꯏix2V$ܽCy=8<(c-3ORQX׎uJ V.?J98ktĠE^ /8k"/ ˘.R͖U0v".?GA;6_ wӳ#AghRl6ADxT%ci?#و^H`Աl\Q ,e,RqzC{A?B`x 3g)3>Ovs\}c/Gc{kp!Gʛ92F 0}ai%A*9YOSS1]=v zV}hRV7j /-p,& Y͹XAUb/"KcX`*([iqhs(g(,b1S|FPȤoS|&stǵDlOP@cSHjC(#ݻS휑1鵽,!ȒNHrK:ckF[/@sB|f?2/`1|Ʌ/jE,]BN2oXM7ТFZ  v~(8O[Wd Cv㝖wQ@l}8!ՋG5% ʚaIZ 5'@x-$GAEmog߹D2#lL.07Jrjnljrˏp*/M'O=Je,@ՒjfsO{%ΜzyJ<0(F$OaMrfE#xbV[g=}QuTk?2$|kr ĻST ithٔMpC4d}kI%7L{0X2)"3RuÑG;I?ޚ,7~&[jTTj4QT+tV4~6d}$xW]sZ픖*U{0,Ϸ0`$h `e7ĕ }noy Q^uћQ{pxD*̑dFbU5l "5p HŴAZ^P%wUg+ٌ#KV[k\Ɨ7f8Y+teOb&k/0ϨYp\FMtdI0s˰Yjj ^͠fm+_.z~V)p&KmmLf.u ^9ej6[|қ&djIZ&Õ}MbfJ!==8ZJ:͑`Yj>$"g)zn$ԀPR>XUȅ&2YPhj.bnI i[ƉɎ[JmT9FzDkaa]ZJ&}Y t;-K+z8\SeNI!v 8HviiX`6 y ꒊQ;E> ,<C?4 s *;b"9I:ҺpKǠG(>c`ڃH*_-o:fdOEp-Sj(آS6Ys4cף_߱g^>Kl?l K }]:6-7,?|%a+?V-WpuNP;b) v6pCet,l*3DR[)> [myC(=bGb?흐%{yLY*v`Yt \(j$\g!)SUH̙t"Z}h{gɣ\%)+6(Ʒh&gZ3"lob$&?n`i:9? =…%YJg֡srh xXJC`Jdc8)б5WevtPL{N\T6蠇xjn^-#AQ CwZo} ^RqkoHFע榵x@PH[-R@EF 0&8?ZVAQ-3IIIܖAU#˒d{#zƼ5D5zT~!Pl{ghQa]!U":\|U cZiZs7O.||3f#0$cLܫC$jy$)YC/E&Do-4GG*'-{V%2)Iţ1CpXEwDW&C4zhp4öAkzuޝy ,ay$)_G`vjp]V&S=S 쿽 |+7,yE57XU3a/[yp`>'nuG9ZtNyskpwnS ѕs1g!/eqxe%y&=~buhî'a RٗbT3yxxC+B\H" ~a_yIˉȺ %e7jپ9Y*m_`+# ".N'396_K;^WršL2[ְh:ec,j)aQ,rӶyS,u+>t>ȏ7Y'bubſ{oǙ7EM=nWrE,>9Ϝ3;Jr qUGP:] <SN9vP0= (2YUbI*ڮJ+iY4Аb1Fpա)vؖ wX<%*Ri (ÈtxO`ˢ̴yK uQbvjKqs͂aD,޿2+=jtFC wInh"4aބj+#PY(Xb:VQIp)q#HRnthkCAv<ݗ-,KIeE x!-R4S1lnA :c @zBoXL65rM^5뀹}FޣO j޹5\>-W;e+ 9sF֧ y>ᵺ-x2ɕU/g{@2g0F+P0T9@3:I?VYY4=u& :`bBy(eKSUt_C!5!Đ0 uΝ_=z-G!!=dafmW }1xIn={J_tf؆Db!l5ٿ^ʵcK i+ÖS-oLt5on9_)jjx( WH4`Vww5 "r_u#t}jbX; FW O\6csU KcMrk!A -/1Vaz*[;%9QMF\*^D1 4'OŜ}OM,jLNS8(ʒKlhn*Dܥ>v& 35P^ o>mM,Tc1xRXbZ 9@wܰj~Ёx%j7D{G%g9uȫŔU!ɥOm9Ak[~ M}˧8`?M:p }ŧ9+BguvA%y%V5; +֪|{fI: {KcISpX)G|8%1Rs&%Zu;=SNs%VxL5A%75`nHAw;QU HwWʟ_Ļuik*P e $ y v{%GHO.>Jq`@[ HNŞfO*]Gh@'pil'+틊3BHqPQ5#1(ݭv@i^ߪRp ]|E-s~UCQWllJ>QßtV EbFQ۲࠴TՐ"q@Z.%R³$yUjг T%ZUUP %҃^5wC`H{}s:hZgit$mSX5qb⩴GS kF)ϑ*b,kVm) k'6nwּOдΓ @<ãg/a9nsK.7mɱ'JC:qhnWࡒ:_ P|i=SԼi$Y R~YP$5$rGm >qnDauPMLOT vW*uؽrZ'fJ@~ZrJ4,SSaKxagu,ЖVGagl^$΄+R%䐢 -8t(KBSVأx-C:S :IGv4'sԐsoZ bn(Jm: DW%g7s>#i `OӹQ*5esO^S=%=Trv:.f"oSn΀1]!u}c8h!fffYNפ~iņ#ǔm4wŻ- T=1gBJ U,ټ9I&X?m! yɋ))[,φxh2>t$у9Q1sysX`7v2<9TTi⽝iK)i{C[1/N={<_mó`CvZnMo 낡S: S:6(^4t~ ؄fS;bEo cW{(EԬ |$j6mxeQQiX J|. -a tZk[׌.Fz؝,R50n!QDjG6Hk?(7DklǍHO'#DUP(Or+_dx mP , 0}֬ƆyO<ٰ]sX\8nj"6PKT:n/ʆlIf3Th ZM&ZФ);̎V!.0.߶b' 2Ɗr7uEe.rz]9 >tXJ,nj8YJDD"]:R7zr=kgv>U{BWǖ CAN Hq綐f211ts6wSq t lM~̖T($ƴAu u*7~]*i mTM*=󘏡JP7VhhoEbbIٵs8$YO[`J`NfwסnōfOƮ=vTؔdctZ XT{2>MM䨔hSTlVVt" c,C':`nR $hOtTZՕ28ћa{Yp3g=֪DEx)<œZIzhWR\eg >E5Z47{(MŕT7lyMx3PuKG%Y2ƽh-g?[9J/LUėc)Kdǯ^۔I(ֳQy;feVL {bo^?\)(I!V`$b3tE.*|KլJd,̿ōT&cͼPa4fV)b%"zA;T |Ĺ5D]AABBe,2➺Ev]3kĬ`jUX:ƔW^|+?*7KegksG@etxtd+dn6Sh~ϘE6Ĕg3fP-U&6"a f:ż^%ѭ0&%lu w4Ӆ"vn+"=$C&rc V#DW~ |UvT3AJXʏWsؒfר\F4Zc\.vYGUd0kپ8(vUѱPrIcfm5]1r&r)C< d>Ug%^@l, 6gOb>85e$0&*k=NXɻ|cPC%;էW81Zsg,,pwztZʕοͿ*6qśJ&[]r6ݲy ??5EUܫ빭R͎U͵S2QH#Tx}> YMFX7 ͏a~cK/zE3?eEYc3J̾s%w ҅WC*ɇ.JF2r:isg %Intߠ q+*{..HORݻDz^Q>x)䐣 NpCjr1Cӄ&NKd-D*rRTKP+YE?媴bfcG:vmC 6/sw%H0uQ!K*b~}CTq]zp2l躈K?Qޘ^֏-5[՘)4FHY;H[,ٹ6SjEJJD =Bui8UO:R{. {K@rX V[U.Kn(qc-M(CU g,pIBSID)D ٗB -e[) Yp7ŞHwf_j8PNt: JjIJ\c,jYH&hX=Nq:M[qGķ9?cDB:{M[AT>=꛳ 5:*4@®"|쀦t%Zhvr`R+%[O02oWnO˻+,xNg s.d\SM-vQ'z'PHsq|.oy"뭙>H9^54ZMy-oݵYes,]HگBQ(t%s3Fk Oÿ6hdAc=DïI#E'!'f5N?c,ߴ΍j^7V t'}lZH#n|e `O!Y]|Bܮfo;va~%eL}OU?7Fd01H)bWI:$W4,7.{=^4_i 9.`&.= . 2sY؀Ys@ <R|2o!,=T[^U[WFaEqs)[/f\)hN1fZ(VR2*RNj|z\>Cy E*3'\!E(X}SB^)raik,=)y)c`V7C߲i"J[\& ?zGxfƥxR}RR[XU(ҪT|y˘m.#AYxHP9j·qΑBĚK"";{ɺvvT'.-eݐZDqOXP/e])J {(`ȿ|TNe"NLxCK`>ZlKi[xXjo޿cHtK_\?惪~R5Y31JfP}xj3-B=(mD3EYh^xLj]<.K|7ﶕ9]llϮvaT-~q:9/{wtV4!!rxuY-:Eע`l濃9BG"LXL[_2HjIrÛ$ t޿F۲)ۿi_<:rS%~LH.=![Q ?1`R>TN(nIU- Hμ oߖ7"= u̾(ekp??iZG!Ͽ#F?mk H;+̭=:n)Nlڌ!}@|(aI?ދJ?ؖŦ^4ejЩ?`,4(efM7y!˿Y`5flo˸\` Eo?7Ө⣔Qfia߿Z֜NƣB{sDTOҡh26'Nf -ԓnolOGYgD}FZ, }C`RvaPgړ_&}4aDmɯJɲ5 ñ@G䦻88`Q*1ɬp~ސE,WvaW.ʜ&>o/!'[!KV')+NUb,c' I }\b1 W%Jv?hQeHh§FRx㩸Q$gizH)&)TTVo*P­vlZx~3pCtJ{4s(VsJa Lg y\,bD9c+cf'$6xYxQMo&q)RX/ fR=Z[:YcL<H fQIcq(ȁ2'imh$8?Bfd3u=.Ѩ|Tk?Ix>/8(CH/%sȿH8,QzM8| G53x ]lWkL>D)T% QG4]$ '$4>/QX̹}>:"Ke^>K3.KG@S}^G[05GN&.xKczE+4s:Q[(aDDC* s@nA[@Ft++(<#_Ufk+M~K"X"d\Z7gX svH@&Kls>\avSU\5CJӮ;ׇ W)4ɒNyH&CBs\2J1R~[V`yNm ڡfjXgRÛ91}18Gdd|UxK7]죉ƣ^ze)KWKsv ${Y.RRu;YႷoIwW.MGGV]"&YoH3*~fKezy>qː&x^Y>u`!f~&9œ֫p`%.قL:X" 5H?~@ SOj9PM^bj%f+"}==0/ >~xDЧ’7ʮQDY`FW/c!ed/ʮьn uMrT3ő>YKqj#È p#c}7mpG{VFh(rjfAb4_*Ɠh6I$_+hgĠ=(ZJ'FzM!USgt7.q?Q 'KRtL[ӗ0҉7ªz#q W&X*hk?S IϡIEȟ%jQwpj$y4 GsA܏*Gm6 IBOEU .M.&4rQ[8t@k-Pei &˘S ;[xn_h d hDa[`/Ќ-#iEFDw2Vu ()$MEgY _WQz<,G `zi.i꧜+i֤h"M>٬m 74l '}Gt_*F!|G@]4/u GNOI6@M.F:B;$6yFcpMFRFC1,yo\jImg&'D+X$xvھbfaѐu$Q%+&%4JM] pgMWMs'C&o~"SD]Uo9IWM(3ALFҜ)h, OkthUڴlH^+XM &`5:M@nK%hoZ߻hcx.|M̉u"Ou@J'S5Kmp#ƸnSoȹoLjnBe|fN1:|)7sn:(n[ %%18N-g>&_)Rc[um:cvLj-b B%`Y%Hy5P]\)s_ѨFY:-]^:.vdXevHk#_QͦL]YK|jtMH"ғ% ;)lOV" 1sLǐ~)Hʑ+$! *m6L\1:HH"\/NキhtOA!HŪ~7nsCG&,H#0I=zFNkDΪ+n7]Nf}a}nw.˼m Kd=v]v5; @`7]m?0;3{?@LR~ϼIYwH%oo >y7eX-4$_܌itl>j0U4oD%k='|EtONiq NQ^R;B5Wzo'_<[|QRvzQ?x;m͝R!G2om1OH[\h︹ad~ExX?`rG%Ʌ%GJ[2HI̿</ @4_i|6_Li&[K kv_KRq==Jh,$fEogG-,(X⥻zfzݭf2$4=3 9 )R׷?3 w%ÒF-q:bmFOr&| O#4#`tYݨ׃wBkFC=)+#;K$%#H{| Խr*RX{GCO#D烣Y;q 29# ^Oh4$y?ܼ A=N۫ǾUSIhTf._CzyLܖ0S#BK /BR"NCzQ5D^)jXzY5?D]hӴKiXJ?$=8TÓ`!?c#)Ax :bZ6kER "E7#_zx]5ZӴ4,y=_E<3g3s_K 쐈bNo0IJy ,7X"z? )JLhRBHӵk131 F {(i$b ;kI G;cK:K yzo=#Ӗ ZV~:d 6 Bs`6w# >$^Ew~/BZjNG-,w L3StB[i >ͿHE (cɿCZ邱0-cQ:)/c>]>$7{89XdN~4α0xhj7HiG7 DxR>X @B#)D"YG\BXE>/csˠ7П"k[dۇH쩤7~l:YyYbw,Z jt妧5E5pх5p?+F=ʪ`^X|)Ѯx  >0].Х#*[5kra 5a$c?vBC^3Ӆ5e/AMxlTX R?GhVAn]81zS|)^?;)>Ekh?TNSD/7PNɄh rpB2 .N k;Qq0g/Y]]K y! %R1j=H[YBBYꃄY¸L` w7 )A,3H ߓfOF-n0Dp7 'u6!t ءsaUi#FY2kdn<|)G0$eyv~`#-ϫKCS @mvB7..y6bɳiY< n.H%ĄO^d rh- z+SwlP,;<ޑK؛w#KR2i`u߉o}0(J0 ]GC&m.MmʵO[jӢVmj_b5gܶHdLXپdMUf%ͳ#gSukJT&c-x;cEےeK:PiekVkwg'GU?==ݓa]quw5L]/t]=֭4n\q&xA]Yuq]/`pewEAE B-9TwWMgw9OD$lEP4z4 l#=ru%{TL)KG4,6g9 ̗+TNj kZ8_&3-r^?2CިPNRd-T/IzqZhqav(b@-]+eIUb"+[\^#g,< c [*zvD>klT3gdP=Vwv|i+ Y, ̅ͼ,51暰X)  g! ;oz:ϙJCh\*RL2Tc\LpU!Gc[r }t˸ 7HVLnuRe裆6j6QK Kqp!&sU ZNjd5ŚץjŸq֊☗ԍ<„gr—1B8#,szd`1iJ϶q !by꯬H26!`2zK,u{ؤAP^RAMiUuLƌUA|jggو19=)l<#7i9}dG uа-)鼞l$ia1UNR`2<2yPs+4ml!ͷBGӱx<Pf[eR ~BƻnqbBͦR5=}P5< d-=kegP.̼Xzl5SIFEéZna[LFz )-Ec{(}e@ֳ666w }mM= KyڶqeZM^Zmh^Ӟ Xr6I-MjF&_;v1$ܖWh͜Xx D+UÕn͈t^bϝEL@]}$墇d[Vr#[vNn#1sB't}KR1x{"9Me'.^)|K!Ϣ EO3ucVbDs㆔RܪDbn'|N1D EL(F1TD!ؠWD# )`%6XbʠmҢ'*ip[%zoPmhdjlR[rMEWQUkRƣMڄSQIG1*"4&Qm*pDդ4GCMZNf5hRb#FBKm5ןBn&I7%~ؤDhPMJڈ I~` 55ljby<6IYa.uIR *MZ,:6iɌdQ\+$S&O#'~,˧IK\SUu;SXuDZ)cK|f'-i); r+$ s:izʰu,.h]'q%ݦXPyC1V8h.#&zևo9b%>CL/PCCu<EMrHETU~lGGi,♜5ÞMv +<7 ng3ȨB5ǐ&jq ?"|%bmLg j <̉Ln\($$X/U˥ˊȨ>2bʛ fB斜wi 3m\bk)AS>?LV8͕ ӔX2a1#Ν3ÅX"k9빐yamSigEKkTHŶ'aJP= ZE}jmvd04Cm;bMq W+[2&v<)㚮aWwZ`yN+M<NTbGZqmV9$ДCgio1ݘ-=&FDmeS5L$;NZL\i$PF>Fk^h'Ld&6knpoYr`#ۡDnϮCgIaFUX.kZ mSzmL.!! L$\Ay YCOd[*>ŵ8tgmT8@۞zilx I e'tw>⁴*OFyO,}N@B|.4ɘ 36,[pQpVnKxZ7 MN$.1źlM-}Đn,1- gcK-ئCmӐާZ#Ii&\.T `NgR)-gj6 ='(4CG7Xˉ YvT?Ԟ፝62n'W?G;TVbB%[r%ӌ<<0]E?F5=;]qIx+*00>Fp{Rk>C <#C'mNH9.s-vBm}K,.x}%&BʿuP4cn bۙrkň v{mm2_jOi }<#~7FF0Fy6x2eLUD>?LZ;9lhC}F׾Fm6B&v–j uI ShblvBWE8vBRFt"m`:ip3*ݏbS.A:ed?j'q`äw ~AscLiؖit X4.Ӄ:i"F.CZ3t&yhi- H[~6._kX[><!(h[9<'|FR1᾿?4~6=Fr59߶2V׆h6BNN@nOit?rJi%1Hhg~ק`?2T,#Is/TӼj|{ق| aT囉bn;x駽`q:Oz5c[(rQ~9%`xef}]G`ܱm,MQxv=ij?|2g5Wՠz Kl(sO`)GqbSjmV9(C]cE4w?,b=_wWbnT2md^(#Fm6_@'miJh`5樕o%1[q^́hя!uʪVnUة/1^kÞur/J _LB<%n\3y* bۜg$FNA{Ok6 ;ħ\PB|aƮeҊbX6_q [0d]ö;÷Xҧ+^-&tM+lYŶNq炷>&_>X8\!<@y޷,`FJ` _ lG9vk9 >30/O"By(b~VΒTJvaQ e,0H6!$ @h0/@cSpw5N-1Sl&Xd[`+wÛA͘bC:P*`ˁ/@T 7b{S F_\ WmGnĕ]Cl^p hT_}:U6ϦgTwᳫ^}Ktb[xJqxʝ] ^y,/'Q3v}RO-VXZ 6",lq_ bƮϚBM~1кr-gOWЏk<! |˱| 61@CQu )XպѽYh,v ] P,ʛPhW q7޴ ʅ"^QxJ%bբ'+]jl?_b PCCQJy-mN<#k8".:_EWb dyk4|Zf9P!YXj~+YQ/TMA_\`v["osBm. Aj{0c,Lcs+ 쩭71(kVy`X-Uf8SW k Lϐ/_[,T7H lխzq>W5m<s֗^­z9*Ti]w6hehzpteZ,C3uk׭_{+kŹbKۡPBN)-O!bj+5gZ/)>n,wV2W l,0=PE3k>pI۪՛lu—*=PFJ-oHH͆H)tSGl=PeO"f t CŸ,V4i5%[%`}',v/kDp~rr|}&BgD#ƙQg" DhZ>{Ϸg"ʳu+1PVXGY5맮jϳjCݲ7{r,"D}/e4К+;ݶ"f=BѬ{C @ C?Ǚg'Kvb#$wf[MS"Ky/uH)%uĵEװg]-VmY!Vî]%z}0g\DBM=y/"fC֡s"BS{h~[c[nKATz1Ly?+8L7:(D'P#2ճwG"t]s]#9 / oayTr/}J_?Т/iPvCDŽ=S08e `"LAКC! S-73x@;@?Xa KI^CiHdv ;zY~&R`|4 \d }X9%anP9Xdp/%888u:C]eqitqVm8IljǝSY>-|?-}qXVy Ɏ]q۱0W,;t">$m\U+9KzAYvq{n P/=fB_GUB]Hq]7@wnV&ڝ:ʚ>,jU¨\G-ZS%6WN !4) a bP4Co=C8kpC=.[.%79ų؝WVZPu?0]Ulq0#߰_oIYw)ᓩ`qݼa;rdž&WZ14gw{XIԖA$_i;ozB~]XYk.ޚuYr3C.N+W*Vjk3#!v=C Mv|'>f"v8;k60YĬl'jݩ~x@u*3`;]99N=n\l+[ss˅ʞ9=Sal.n`rEsxn(ܽV{Aė$}SrxE4K3L4qq*{@[[xScm'"4PE_ SIL'#12Q$V}(k/?Akw<2U=LA(+s)'.fյzizz#ҎxsV{$5,UiU5|;to#4t_tv&xG210)VdL")d"k@lh<5Q]xq%bOCj5Č]ZzzÓ:%Qo@R5C ^h5  @460b8m qnOQY%4 e~&"!Φ 5ؽIj|J겣q}j|Iqˎ!٠ ֘5 !1kȵ@B;_λo_sLx\}_/]yE.KC } %)z|BZ0"mvk8YSTtl͡( 8t [ݡ(m&,+F=Q`d+?eiX;Q.葜+{t/RhWzǻG>/ 6of {ıge(ZFzM!g 0ߎa'Jt b$3\7ډ4G$?&C~=TvDz"QYfjOR${oSGmln TtH*z(g hywgH[ "܅tBWE;}Q;CxWov[k;FÄEow@*h,7w!^M- u˴{WGZ}_1^oӽD?DUp;o=Q"9>o^((AơIa»VOAKP"8oBIxJ3@(WO WȸxSěyć_t&mnmӉ |qX Z &8V "絔AWOtFx5.>n?x&,/]SݫGuіsTݹ7_1|8,h3E;a?6]4紎7[ug}cUw49:ZY[ս8˵ͳp|sBl<ͧhgE^y_nݯ:?}sqֈIU8$c~H.)yp!Ɓ\.gC(rXtV!\˱~U ;\˥aiL.j/nG՞p\x=E'ƅ]VmՋs6vŕP`m(8zhR$'N"8'cmXMVNܪ\r'N !ޚF8NjDOJ!>8G⿚=-U i\ӕ2׉. 3䬵e.U7Tm¶w,>o}"MJYՄ@<8EgaS KDr6yÏC* .ؖ# /+W9fe{R)S0=)٢)REwbD%G20Bp da=4'+KRLu1XKz XjkmׅH)!ZO6|Ze#Oi7f0Z);`gђp `fQ/g];%9.Y cD睎4Xuj`~;p?1Jk0'Ei!\J8ԓ&{8DumX]r2VwuZ:,{Y"ޓ'G\ Fp]_̓Q:E蟚ͿO }.ͧBaZ\$b"Ŭ[zA$p'/H#>Ԟb?o76PHi/C4c/UKl4,z{ZÞ̇R/( 40DڿZ!- 1"&M'C琁S\ tRC#m_fϔ{poF_ cKtkSa TZsg0NzJէ!ΩHd?{ZNS,],!6Gxw:"J~U9kbz:ڝa:,%/R<rV`DN}i>f1F)ZVşa^9y+sr}N_ ӟDg9}Q/ȀWE?HWYF߳/{Sl/!5E[Ha)wlZ3x^T^t3΂:",;lH$r8+JkOh`nRpvhAd'5xfZ|=PȚu\2ywp&;+e]oKk<ę S!9whԾСE߻i$/^Fium?F芵kgD}[FhD\Fo{޶7BUwuuo~6J']7B>'J$o}ZsHǀ-B<(VzB|( 7i8Jk<\[9avyFp=ziofm5 V߾7BCaW8[ǦE BB)uB$trC{:s0U b[z-=GGLTZZ.kX%/e\oi˲A-K7гBYJKYR n@,XEzw48GtqЁtHҸL%[nmgu4}7 W';,y佛Cz_7#Zr=Zfvx{#N&<w:efNTCR~IT+sDwEɆ(A%t?KcCe E }eCXCROnZ~y!τ2>px)yV 0~">LύbAо}2D;$W: I%ݶCWFQ\AJw-FQ7Sh.sBIkCQ'6aGXb4zp3iC$b6={~MԶ^":/G_ߋ$/ {"RuV?'QPMΪ)*9+>=z ϲRtjEBϳB{&6/#Uo: R}"b|H M&u!WbvF܇fK1Sd7XGYu۪`m,9XJfpgT"=7yc>xkބ a9=Oo™,OZ,K.U}78Q~ȉw a w&SLL8o9zKFa BF!5kk1(IDƧU"(}_/B][졬T碌[D7; nf(*v;t30 -)[qPn+{lp5Ӎ(:I=7o"@'KHN{zoEƕށY5-rz]\q 2?aq ao:te;uǚcY؟I5Zaz%ȮMQ\⬣'풇)y L6 RfMM9n: !{z9 Whq"HQB&h"{c"mQ:;$ӁBҦi<-f#w_+٪5QD?v=$~{uZ#܀Tށ͡tքшS^dPqP.;M+RD;xHDDnM:clz8* MG*{C3G(;)_Q3x49HY#NJxDbRKi5M":|V2\utO@qȩ -N -Z?-Gd YnYg4X$zo>u_[# *ѕZ]>B%7mZ2);e.GhxhoNzڦ]iR iB2ס=v6('n>+ ꐧ: Ikҏ}JW:/7$p޺3J͇opOٗy8i'NJ#"p#?)Ԕ2Xe%+5^zɌG3El]v'?)/"ϊ+oqnnѠdWJ*!l3vrK>"(-7uyYtX-~g-Bkԫ6 U Ӱ,Wmp/p4r0߶e6J*`PVQR^np:_dbπg(p/A@=H]."Nx%w!B]+~o8me0_<[oMzzĮKWСazi*>nDz7jVlk%- !~jh@@ YjpR?4@eJ_|O/D•O;or\,tۜܯG#U]ؿV/*Ǖ=MʼJes*jTE{%>|"yS.r/lߧQ}5 ̭ys * ?JQ$s\jq0k;7jLeou^|\$"; -Ų,,UZ\ 7dUAqm9k6apqqTfmo?hfkza߭Y|m$qXxh5W87幘Uŋ3Nr>3D_lyz_Ԉ-RY#ru`iy?|E-&mP,ହ?#RXOYx'+Ty>S"6E`)5Z^ GOf~G#aWZr}2480n]LY-OvGa(, [!Ѽ~;GC*4Sy嗿`W&Y zN @-Ђ]@.un{\GkE`#A+l v|wv*H@#sQ(dgRFX6tJwkDOґ ǮΪb^D.kgW Ez5]MV*=+}׽. (_w/߈_ "^m~s/Qa^OCZC=xo9`2`qlqiDh߭;goе(xKna/vK^ M HCR^%\=84NcwsJ>ץǝHJ5ͫ(9G( 84o({k7ڍAwC-]b5D[D|e%`ln{["=hF])lZ:N(ya/3*Fzit­F9%>@|waz/r|b^ .Diw na (2zVgZywr9J ]w٫. ӻP<Jx7 gv\: /K?EDR{&2U%0+m3PSּNQ)[NΞ)V]@EIOk1):iL$Ýdت :*IRjsIeaVuRL.0uЇ*:x}}SdcDN)k>i NXj86VuDޚ$(.&[. 9ޢk2c\aMrŻ#ZAp0%jlnӕ}NsgWܫ\l6C=+!f2Zn%^\ӽ䊵 }jvIUr |`4ufcVhQfZ+UzU* kSȣaтX/7sM/Wvw0O r͑d[vV mYʵ:LOz{o9q99Y͜zJ>)o0ZOԷe^6ЭzL}S!Ը_0Rn tW+tFyp``[K\;1WW#tPNE顾jD1wI=m{(XТS'ݦ mNdq>|9˩8=2cN{%!N-2ȩ (rWԵW0DwmH9M[d}(z|F;%F{ZFy6L}#tP#D/F<n7CVK9twk4}SƝ}Ͳ;ZPYVyiKE8⸗{յ{kWtj@ Fx_R!U*QRϞ"@~ϵ>DO~˴BO1|IEi ԃ*G{?p{ً nØB|RG썢H{L ?d܇ }\Z$v=B' 7x{2(pcjvTd5äB7?g9Of3}sN>JkL˒׳ /X.VT$wQUA?$"q7ȃpegY$xk#BS^裾/Ӈ=wDLޛ# JD_bEUv-'>xp+9u {]˃B߭wDhBNAH B n eARj.;3K-;SKHH ӻYa ]&; IaZQ_ 9,UAP]D5DMZɚ>Qf4(\Q7At;Ɇ]P+1eͣ30رoqϏy&52cTQLUñ!䲢κ]P8&}Kܞ}.gi>ecUK՝QɝQw_+iuMS &%-UXv%km UۖmmvگU\af { +ܶ܍KϹߢU-~ϗq?Kނu` Dço]w^[oUƖUއj2tړk{hQvxU[bG+%ul¥:Vlfcf9`kihtmUZrM*NUFe<9%9ܵ*([[aZKWš9Z9\Z8q]gWOZbY1%x*߯hR]AcA2kʚo6=^pgV _\T,6=RNiT->$ߑtFk(8 OډG*͟rȗv"E OIKo%p.O!?R?%q O<̴ߟ[KbkO,Z'A}$(ߟ.O*b/͟o'%x2]0? ݟ'}ISx̷]O¡? Vݞ8E0*y$ % j,־'zTXv*3*G;Tf>@E O ۮՙʗBs hzzVm,u p?.X%x?}*5vQV*1cΡ|6\,vzcX чg}qlرS)-x|M@nL[5UdZpDF@.9Uq:{=F.E8G,T"w9 :a_@®:~z !ںgmˁW4}BhCҔUcfgJ5gFf@ɚcJ}\l.ƥƮY1|m~Dn+:sO{`cXeXf_>WqŒ9֜&>,Nn#ZM;*X%3k͖0qþ ݖdG|[b[|_[r*uk0``5PtTjBȜ+ʥe9-f|s 9/} ȋXԹ"&P3dԘAǺϟj14cpߦ͍m۶qcll۸Mc5vrc7 mޟlggϼΜ)]degUYr1cܣJ( !kV@K_u_D燂BC)MɄ\y0FC@b: u<ٰ<.3ijtX;;e!/}Q.., oZּ6zJ<ʺ$pNNcl0_ ˙oܻ/V~&<  _ކGӑcQ(KK_=-9GP8JGPP3nT >1h(M a/S(S))Ks)~Zh'6? Зdj<]kH{s&-ַVpE;-yP ",|G٫A8_qp/ ߌ0;ؖ3O@֐|Z-OL!m } FjhS+Z}6p0 ImO"4c#Ad,c3>!AI2Tz-Ŝe&4W&/tEsd\6NM mi$kJwٯ90 CԾo}ANcRa;xɭ <%&nhu[XM`P5APϢj%9];2VXnRSPCPj=ٜSf֐'ѿ!J uPQig\slɃXŐхx/,*@P(~Pmxˎ7 9}m Dpq m+Ӣyoܞf! QG̩[2Xa99&T\_G 7d~W9v"~v(i <߂h*^)eOIK){,cqKm.N1n -cAOD2zI?J'el]`:<\] .dñ7RCԯ&=Qi6ڪL/mJ[ϠoQ㔌T*wF=V[6gφ& \ pm J݂id9曔}=N;DS睝 AY D<DEY¤#:΀#΀Fϧ'^Oy2 drmI:ЙszQв# !.-y"+IN^J-(2QSK>0{p7 A]M='az$yk˳G@= fBh#]  uwh$O M:;BgI'/ArPɊYiQ8<'1[FܣCEfW\gB1hE xs{%CƸ%zqLo2|C|N|uj/Ö`{WC>ck^\q x'm.Xr6ʽV|])K,ġ|X9ġ[* .GǖwAM2L< n `wclXZ \>*HK! zLO-nSut dC߄:-'p`7M!ԭ%x`:soL̶߳C&' ȁu"U;,#wR_5K/[g97OhxYc2땭DvEU!%YAKR<Zdgu `Ty27*Qx>woS԰w^+Ԉ fC}&W}>u Y>d7w}kC ,ɡB_ EZ2!A.y%dM#)qTg*"Od JX6doVCAVJۼ!YƇ!R_"ÐMflIOuġя{役F$6ԩiΉg$=Y} #P%ɗc>G|pK~s_f9*3'(ӪSDXLQ:!$<*9RcYz%WpQm.O$XpQP:ώH #a qQeg/&fR8h'T!b#w;DD(*>~M(B~ǭhL-+?D̯ob\oOD5$z8\K;\+1koR}8|V ǂ\rw?c>wX5CċkKD7_RuwX:v-s'qOשz]S>g4qP r9WYnq:Q{ɝD0E`}XKGE^0[20>b/+Ai;M6JiFLL~:^`f2eK.xG;aTO9TW%Q TФU9$2K3NX[[#}Lӿm *T@m vl|l!e ݦRǵJJTJp<Ÿ]3<PQh7Ѿ&c fb[ 2`R5/SϪKbL%>vPHjv5AKs(7{yhj|郾Kd hhi~ra|~41k~Ӹ!H6#9w-2͉1uip5JI{}<N=qoȮq$z~H~;38c8XY 4o۬G3sv&a+@X׈پyM ӽ  ܔtv@WIw=zC3v*UUۄ6~è#誛~>{08 3IY~g!H8[۬°t:|q\0-痶z)c{OWԑNw;PwW#';増.gШrw_~vۅ֡:z<4s۷ɰl* -C2^{k{~]22 ӱpgdygkM'K_<Θ"/Qj9'tg*1=99``á~_ԨWnCje$zn#觡^sֵF?4W`JҊ/ cqmrN:^|o.°5w&qaC{AHe9w_cfu둙'1nFofPX4D頱LQfzJ5Žu*.DYA??=6&5qbgUǔ¹2,p gbMh>ö N[UVɉ%{;2#>Ȟz c$BO2;"phURrsp`*8E]@fX҃yچ$h;hYɂzєzeb4?+&_+?muoZ8 BPv- sB/MQ͍);M5<)&zz8'=du[4k|0kܣ]iR1eK>9ȏMzq_{A|DFEfGgCd٤^W"iz"cQnkl#$DKb-ΠW}j_B}'͐%OXӳh~;zT~9ٝ['>{ o+Nl#[ZLqĄ-8do(!@ ) QR~LޡDAӤeOOW}4toEw9<\oڃ7{3=qH#ddo\!2. A*J3FH>- %BR5gMқs_Ԕ'YK4~ ICʞ]`wEX]⇄GB\?&dG%"GhD73V11To_L-~( f;7Nr#Yn.A1H׻%9"#ug?kx8-;kLAP"nu^<50R񑹓#;5C(\P/= ȠӁN\b%n8Gi@.~0I*nru #Z`|Bp,5InD9z"~6$xT%鉑-O71|χlNaE3MxO_BO]E}z8H,Z<K=8JK_ZjEafOcg?u~''O۴z4A}Oz|\YV.3[̼iWCnbyZ?C NvI+"ɻ4fpK,Xpk7M^@8G \uLқJQ1o:3ӻS,,ƼqHxm@}I;c8#w^X1q깹8 'dZj}U^Oق */bI 1p^]򬷪RH1&uPV=ģis}M53 >.uY>H rOj>B~@:4?A<#'Da?54Jɭ]a:IJP<[L{2h|Ŧ|c9 EO?ɛt95Na=>q%1;&;EhPc^_xsU~KFF4E֔H!7kh*L L_18/y~X>f[?8H+}r&6ȧp8XD ,ʋܘ80u\Tq"f@z0t| _=Y&rf;7Nr#Կك^Yל3I$XAe@A^F?ph.djoF֪##נ)pixYL1{7ťT~C{p rLӍvG16oYmzfz){+# fPɫIVLblYw+|g`z\ڮ y拽<1/B3x}<@gQzeTdtt'+l}~3_}&\>QOu{M[+-f WƹceɣBjd p /{[O7Z~qٜ`Db~H^;C7YGM2iYF^u&XsҿR#BršE>;Dʯ!5f;)KdNӯ>-Vhoj{<3[^8rj>ZOgU/tM1Ij<]VQR uxmFj#s2e8rS4j|.`ZY9DxEK p )ۀ,b`Joř!;/ľW\O_ػ!=CށTd,˝_.G$02h愅" AJ"p;ܡUH;ʤ `oF>(}Bo(#<i>D-{_r Fa/6}3 ,b%c^1[" 9d3"mԼⴴV 9H'd晩LwnqF!߾!Fow?(ZNơ% p}B!^ YZ,|C7a58)q[VwfCeVc&VҘ1'srm)˭M͉ 7_9*+*V}#J[ᦥJ`:Cuq\WV'Mi 6] @ ŋ⨊#k% > #0v!rqH%{Z=[ ?vKU`a`]_!o"mD^Hlև ~,g\%M̸~&WntVu^ %OLWQ֗3i7]ե_˸yqx(_Jط+"Hس˚p\m}d:mE1+׽2uV頗ƓZ4G0wJx7)x;((s9?JmmW& l2:\6CN00-Qh[Qh|nj4OS:C.7aқzJff]ʠ,>kzkSP8 ("O< e$AtW'; ̱ͱ h&=.)`jK?> >9olx85`Λ$$SP7[ W<HE"VgmglTV}L$s\˛i#+ZwgiFĂyUXv0qرUjЂ8[k1ƙ(1Фi&-f=K!3x}<`ё^WJڃܤxنm%0dhdGrã+m)zl l{BytA(٬gRP|uW=bA,kBJ63!ªl wZLZ&d\nM | $;*}f T,"7|Mck\OykfQ%|;!gc-{*@S\J,GG]e<'A.ݏ9UR2anDcU_/zf M~t !f<&j}OVXaUꇮ>J&:]V)2G.',,BיCCz.~y7!+{[R_A<˱ouu}?м 8_OwF;0cM>ҫ*jʕd]@51i*$5}.Uqz줟 OTQ통[ (a=Y~T<*fp"M?t@"(P7ѳwoZm@IZC`B, *Id[d /Z杙LƗ~$S2Dg`Gjg%Yg_ڕ6z'J 9e""ig>LdOĉTce6r}le|n!V|Qpp&]' UM{lq gӘ:QJcϫwfʧ-yq ֢ǟ֝ͦ(UzREA,>2c&J]aP P /r{ R)%MbBϐK.o"b8=w-cV Roy1MĜn酎vJ3υ^A_m.Ԕhn)w[xgM?Idq7vjjN҆Og<E'Nƒ*x{G\ 鴰\uXL͋Dz ^BncT{š gUr-34M%J%E&ϱf\}$Ysw J;*kv~?7kEMW$eCtIW6u"ԉ.:J;qV;&m7czoէ1q4tgNゔ:/I3vS$~JLjA?b ַ:]>=/4 V(M()UJi* !c[筫WhP~[L Z?*Sϱu@Dp饿o…lY{G}txb4w_{A v~:xA[GO2pskb0 Tefb시|gRŏ%Z+7Vi*gmAT,♴.WY e?${\Yuψhwǒ T IX 2uMݶ]*a!|P4^z *U\^}1Dꆯ׻職 +4c@ϞWЍᡤjX[/[\1q"2=lYR9QpfRR/bSS2[A}AlnHTv]UL} 0T:ţFJO$"oDVi W8NeSufE&Oi+0?YM\ӥs+@<28ˮ8?*ũ5l~e[,u 7i!jUHe[s| YbR3e'wɊ܌KDYWK#+oQU+D㠘Mr M˽w(v Z~n>GJ2))̓VP-6رlQ[#[*A (zEREtRG濥SzBOZ4qb,?'ɻLrBh -̮ iY)%/&q,YV2ܰVSʓ]` ;ȩ󗻭!=":AgBd]VPni7vt k;|QU';)T^x;Rsl(-=h]n.BK)_y иo`g%HwcON+aDtH)\dd]/~Hy|,`s7K;oӾ)>8-UY6]~"FHR<wn2A,"yüt|$%d_}{W(GjF$ZKJl̟<uDYFK.$D% Q^'M~= Ic[$*=͈ t%ub -νYѠht'QLBh޲s$_\9zym眗N|ȶ#YnTkE'vkG : .mP)SagǮ70V:%|z֠C{@|*ӝdvXx(k}cwqzZoDŋu~ 2kr|C,zZޜ3&rzad1 Eah 5wj& ;Ke=䂋ycHQ5kЙ^6:ª 5S,U׉,~ƒ9;T"mSE+=",(xC  C&Ш D`Gɰr9YIw,.F4WαbvAj2zoHW* #?4bdT,"t%+(}'w`w"+J*'t줎*=AvʐG54;;ь?5I;Ki]@BE$`4P77P7ׇ맡3n[YfC!,4%#6SBņ^o{\|ڻD#g"o+թ~rv`^ arE}a}Ye BZX}{\Vn=5S?Y2|eb(<֝@Xh̘] %DHkSnTI)/57<B 'ϣO6<`ȎHӰj_rJ^:o+)؁# =STk]8ejWBA#j$b![YN&&h[_'%R7i 8Y'O,lCVsiGk=Fi-W9T bsDfq՟SmO4 +"ʸ?4 }>L>1Q r>F5-w-%Mu:$s'AwbKXt s -(DeIn*R$3J؄i35)誡H(;>#f.!!P2D0 P}{"@m">T$sݦC) ~h99%Y7{H  䣇 X ^+#ZsoEQ٪$4ScZጝbF10M0.$='2*w:RԆtY mO/2BY\N[#3$,/c, !*[/DX-A;3-°K9>.DA}=8rG)]\c#m&TWCUnݹ}x_PHejeIY(sIPF@SВvFYHr?kZO Obz.n/LcZR*'Zl)UcJD>jg*WQ5%k؝k]Egkl _݋D "xS1Vfc>qRSz*^| Y96kYZ|_'~.mnD.a^^b,u=9tⱌ6t`k>f&f?c8ZMiz+Ɛn g=ݣb૸\N4Z z 0BT-ԁgZU!ld];WvΦ 'ra0HP}2͑!(( 5CCR8l-ͽ#;PF /<%L -=Lwk2inZNќ9z웗%C“'%ӟ=_>hzh>kbstE"V}2 **ay\3΋cd|!H6. PD:W$ڞGsCkM_^[Ak8}\7$"}RӘ潙!paVg#|1}q^3>16G>Wۜm*OR%rx>؋@ܿ$?G{SDg\4^Bc͖qP(Ъ |0|;Zk*ܘQFDk,x:F6wmQRpB 1s&ԚngbC9 flՕ-!DSA]WN+rᲱH(cmY(tKL)*.Z܂feAGO?vP?t"ogR\)T5Fh輄p<%3{TO-v%@.l1I/Ub-5C,(pA8ss,1G؛elG_?G-(D~k[}o=?W-mJH7x&)K>~:Fkg95 Q#xLc-?W@8Mvab\RsdvIY҆v*9z\!KWߏhPJV:ZnI(.uo򄼧Fu-hVFseu)} EkJ>F%A h&:c+t(,xTkn}?zH?t܆DUHXxPB'XG(V[0SKnϽ%#Ң)x\4◗Zz;р/6%AV#l9ֽ'$g6|epTt?#dVAl<9l _1÷jPfWbv;ܖv@#>ӝiDBzf=8л@6w[ν{_l?0c疟+Lb>*$Ya07f7RhӲVȝc6(Y]vjρݪh.4[)#k3a*wzo5dBbsD^EQK2#sroЯo!P]WǒYt'XA@p]`pw'{ 4p㩳k]뷺ֆ0|Ą~[b72nG]855QaI %ͅMNX/lvJy8?8hfHkamuU`썐ưWIn2Z7pcx'?0%0SZVN?$1$&po9]ׄ`  k Ո6dTآi|Jt%bam<:Or^4=סHF t'@ReB,3sz4*sWƔMQuzVjc&M1.P#j9-Z|ew rg4h(b`W]Ibiϵ,H2 NnV;so!1n1f+/}x#nNj>;^t^CW 3-+jB[/} ,D9<_%Բ;L>>ߧ4;u1^gW|VM͙!T9I/E0;P"a@_Uu^I{-ǘ_3~I1fʦ fK rbRJ1G`)IşӬo Gט_~P3qxKŽ C(M"0RQbw8ggj\WFks1:z?^{Ikw4Ks#JJg1P޷0r~æӧ!铸ZY#R/~m)J%~EVkhrU1!IZE{(#Z煽n*oC 9\.nǙi2D[n &y_W`:sNb^%רjQ.-t\T+⽍ ej`E* .X7AI|ds)@XMoc54.4t;.tIɪ0MeX vZ]^a11w\Mx`L7Je-קOq_ )(X#4B_% v7guמj}9X#x Kሖ!vJe,G@> MM+BFQ5(l0Smg%Zf;~*ig[͆gNo3!&q{sA/)s~}=O uvvr۫er,2y1Mn^43,slqaՃ1> ;>DqRr?j:A;HjFݞ]iߒ&N Cȧ8T(L@^̃ \}crO4voY ! ʦTt@I$o2WF??}ꂐݳUBg$\qMskJC0/ڂ:ͮS۠zF^._gI۔ ^0&)m_ WeMQ }_\G |CetOFg~XMп`1H^06T֜Cq!ۨzcOE:kI/?IMԱ}^^cBy5.?\PcDŽe8 ^9{a ç˩b[hBmCϢ-Bf6=1|.zȿ pS;${!L7Ϧn7ukG[jA"Ҙyf =6 6(ˣ ]j"._Gl2( R |[!V C7˜C ݴ =k ˘CÙTl8^ 4_C5LXzؾ0C aSN/gn=A5\!Hڄ1[ ꚤ䲼ڣf_Dr_2 [ )Ŝxul%l'|o^&ccw<q(yv9Z7 ( 5>q&,omz,Mx*tx ^7zl֬o6ց5e%jMcMܭ 0,[>:隑o`l2 zgj9c*iN)Fi 2oEB{Q]>2c/rHj근 o'6*&)ITޣ&/J{6Z]Xvgʮjؒ(Ȯ A`^ y>vo:^td27_ QbKbܑ=Y\~;Y,M@)Y:JM6j{(U.o|jem %g3KGi~m%NٙzncPIǡ!uB}Gp1# 5!&6̮6<;>G_d*M䨾8E?b1b 82qe~>9й 6VqHkсVk6jUWьʃgs+8}r| \TCZѱbCLߢJ&}ZX}sO࿓$ŷ!uH!Ҹ:~4D|`@0Xըa.( MzYw:;r[ĴbXj:JS&N4=ʵQvp7w}tKaYQN_C*Q  ׋ZL[ܥ-kjo"Ȁ`A1;LÝ=G G}*6}8y5tEΓnޢ6t%l=ZY>w/9ؖG EԔ/IkFӗĜ {tS!ږ ,=C>=?l)t* ŴWL/N"K.Tj?on _쮐j{#j.p, %$sc, NӮ2/6#̋*:}Q}#LhDx CJ=Ix 8\cUsdRق@O7tWH*"JJEwFzJ`=(yIm_Y3}"!CSF0\Xr4dT֥d2߬EThf%}A k[@R(7mi6;j&CekeRrmNT zݩ6F)8mj[L֪T(}WQ^+^aoHX@AyEcb"v41T<ǡ^'SJ6~(`[Rc};X $D$y +BdLAhsBB{( M@,!6<몎S#>VI.g qG,뙥qdQg29InVK%zQѐst\jd?T$! ֯J <1f[&{)#Co)hC?L3MMc<ʥQ 'hA{ӦS C}Oh*8, ߱"ˆ!>2p@x6ITdb8` s=K~m Ȯn .kiLK$TR3-OW (-ybצM)@^r5lz1bu'+%+-Ib7s>Cٚ15>]9%d`EpƇNf5C;!KbrXV$Jl4OƇ$d& 1<10c虆 OdMiMnUÙa O, 8fMTᄛYYV*esY+TP'84uf7rɜ*XB&$a'#>K٧_kLx~ ,?kxFr%]ն6NM5yܦ?\&,mjVKY' C_1ҹ(NzA]U# d'm|[A>%m$HI=uxmHLJ*A*O^}sHid+$;VE;ޚ&}C)'= E3RŅ2~- {~գd - f\ ;s1IQx8#4VZ柰4E7:OՊDt 2+b N_eg+?51i-hݶ ՔDVw%Lnl|Ek r}Ry3EСK rGFdk2]% ExQI@179U$ ~yZ@aV& U5oB_#j:I5A-C^4*];_ ҝxU]@"}s v=5IF(vRl^>-<7ttrzG8Z 43{“'?7i7^@? Ing[_pSa7e:rr[!hsyJ: .w$I,I;h*P+3 WpkouJ34Q~iNCR0dmO1Vab>1C2`Qr',j^ ̭e{dWnRYSC߫+V5&^tödMuH'u&q3u{h=OXzI&F.D-*垿uIF{䵢"xUxC{).az epFίT\?"`\J#Yג.V˔e}Y<3q#dEZg=qeljwUkd9dcSuPHF|/u{mPߡE)>;oϠ|eKaxdw_ꋿ_,fDo)/?]a|):ֿZK\#gl _+U)px#ÒԽ= ybxKw?AXx5ζ߭]Bi_uo8_Gv\+!ZySqn9V2'3< 8c]}T$)b[Dc̽׷eokYC**/ձͧR-b',% j5r kI% դ&{:?]`*ޯ'jCQr{ Bg|ZGBߙ ƥ|r-߶zOa>h7DуK{mHio.0>ĸWk ˺62R|OH#J1b>/*W&Z m -}xQ|>?ZBs]ΖtCNoEmǢ~߽V?_j,rkAWdNҸ& l3YaoL_5Ǎ,P[^¨`f该LAxxeߴ{ty(JL7$< T Զh{Jekþ-\NX 2ʚ9K86TC`QČ5;VeuTkYkBeFu7%J,UXEy(jJ^-r=LmvȾ-&)kKvӾ-)psjz=5U۲Qj%}fCyr);*ſU5>h[k^OJΉp%zhpJ۫Ъѭv_RȌ6_jb*>nZc3]1&((pu(=sK`9r+nwl Zw/Ch&{Zo~wd0u`)"+;g9Gδ&<`O3]CI*l{Y4.ǐI򋵟5ւRdsF*;}\ɺ4aeRPp,\m:RnE{OI6T.;=2}U^L#~Cl }J^L(<$=(3U]V\2s;=AံGw-\3uZ{/R"?d!~'RP(e& KHDeXwjOIٺy˽eϺU2[ S 9eA˲1.4x,VLaMΆnj^>.NF"Te:œAJ"vI="D0pZ²b=2-S]S Fc ''*@_?;#G TzJШcb}[cܶlj[,Wrxh I++.c svPtSyôF@ }꧐ 77lل&*շ JD x5UNvpQr){!Չe:.PhI{9Vo.ʡ#ioQ!y"ȻTOr<#fkt ٍ!V[r9 fHS ]yNȉ9GqҍpZ ȏsMrI`!+WgƼQ@/ěf`fYKs첱|37LT7ΚQe9FJrQmJP5E|zovwߗ2%gຬ150r N9!Y4YȮPX8/9D@ub- (" /d֞EunG5F ɱ']4&\<6IWa3qL)z:ߔOלJH ՔƙhcLÙ@J09A H)t"L60r'Xt_3H8#mWݬ z,氄ʝ==6T<-eDG/G]}5(FK]) `nXOI+ *-fI݌;3}užvyh8x݌N*KĴ'?"vı$IPh,MmFSUSee^!i4"L I6sBZSS5jC,9 ~hYV frҧY$řѓ? X Jqo (y&th#tWj#Yv=H(MALzmrY{ijth XG_! x47-p5K--kg+ŸIǨp&,0~̂ͩ%r"`h4bs">vLt< q1ص x 1F0tݨ'_y0*ȅe@(p=QiR5U/,_j@JD{h,X6ާSjzefMmI8A}a8]H/)Uxhۅt)&#,ʇ^;h')UDlcd'CXt# k DR c̑S`qpzVą~!"3Q`O%Baq cYpVX٬ )ԈfCF1ffq)(YTQ&YVȂ\ve.$ƃa*abY CtCy n FcJw}j0gzd^&@_eZ$ɮooT!>dlIOoSIY4f 'f;wnQ2g:ɂl˕DD޼X,u+o˛_3pݽȢj嫗aia$x+M'6HqK ɦ 2%0g&-Z@J>.'C%(Ÿi5bM0@GG-9`̫!El[7.6VgO|P=ӘtBx*TKBxTeaAN6icAȻV_Q4> 7^c }7(ǡ4S8P^3 HQR0' F -KhyU?xe\2nTDcW:ujuZQ,3IhAScBe'4q=W|Ov!ovWRx^;5/e5za"y?;^`o UJrzLGroh9xҭ"н`ɫut@A,zNxB`^:٬~ȤƧ/K e*X6PRQ KgKS8;7+ m V$'k(ѣ^D=AN'H#C0j'H>J.B_Ft!ȿ4u3*q|%Ij4\gҒ[,=bₔFNtbtOekR\KIo)76'}N[N=fI0oI҃S6KDޞdZa'm-YA-gĆ]E'}߾3FߛPa"9`^lp׸J}HN˸5ֈ#Lsp9޿ZUF Oa\5No 8ҙJwɗ%CexPSoOs!u ll0CscهPNxUMbT;DBY6=q~2Ο}c;j\N=ixUf$y\ÜXĞ`/5 F:ITDF(IA+ds&VeJ+09Q8A/~}3p9 &Щu.O_!H -'c'=ֶ;E=[57z'EɃw+$_φkN{C>HoRʜDpĮ*Ȝym/ j}l"D[Jk6YR? jPTf*xT0#WM"xafnCo985lؗBV%G8[.Z4k3}\դl)' g m ~uM+"?p 75a3^Sf!fC]74K\L4~/ W]{ rKLkER_ٻYm4qf1r|*5WOS[."եY=_{ *9ϸ>@0Qr,-cEZt|XFn!'䊩?UxgQ"Rin7m|& xD荦%RFZI02"%kWj18R ܛ9sf/9qBg ,R1Ec]֕3[#tU3yp]Zug4Z? Nk,cszgTh "X3CRUeR5$#7+Wr1F3#Kdۆo>%Z;Ujº5P3F0bVi@^u' Zh?ђ rCh!;T'#gT 'b˰ʘN'.2~x 7e{Km ] Zgn&j SvmN'År#\$:RJHf0h,zFQKӇ|Ky^xvqdi_vib^ dfW[]1/ e|ZU'5P;tMS23!A"'T~gBWdHT,HHJ0]G{/`$x)y ;!z)Vɜ9ÃTʹ?y>٩Ȏ";BRȾDĝ?FxUnbdzV@Ce_~6⇉_/K3fA#5O9lV;S|Oȝ:}4ʮLD.RǸL?|R:?hj]SXAX[dxD'c]⹯PGQ~`L7P/*YsϣD'v~ӣF.CKct{`S{{ w=7;g.-+ Er9XBB ήxtҷRkwnq@5Xrg*F]̨9[f$HBbA !:ģA0e> c>(iw^Fo*~}r.n@xG/!̤j b\^lV G#Vs|#K|ma uh R SEU޾~5+Xr|o=|T> jꁂKE2*H}'tQ&X4.}q43꫎N`Rd)8ƆyW^M8WqˎV6 m $×,-oNѻI# 륞Vdxo;fﰥ g+*&cQ~==p5;ӃK{y6hg~gSޢ 45 kg{|A< jݻ]6&׸mS<ՅcX//pi^ ɖzh{]P=d,i^A}; ڨ_o:jp;/?Ȇ d^ųoJ?G,|weT*Xnhk1n#'Q'r=a^[̀cs%VҪѹٷLfQۋw7ɑr $#{8& #x($k%ѩKu@kb@p\P4(~m<)&ˇ.ǧ`Z^LBXJ :fͼJ9w۾$Eu{R W}v%ұ\M{2cǶ/#rW{ߞB@Np;B%`$8_\jXGly/P7+d\X^s`*Jtg3;`M/ vQt3|=?%9D9UX#AfI6#2.q@,! aM+wo8 i?U}~!w}ݧayc$wޠX)Iyo ja-GJ2#𑠰񍋱 Ǒkrk&ijNWTt!`-@-)^2*b֝*=G9#dϟl?NJ&IVriP\ZY{JZ1f;y01+3?bŋmT>)XbfkDϯisUC.0c!UVeOqow%Uu=M0- Okֱ•Q5*9 L5^r⚌feRjU!9ӎ$pY|>8QK[\dZG)ҨH}wУF*uQM 6t @^*x2[EDk#M3pb83zq:Fhf<!8XyӚ7l`I>X`?[S%o*d1\V oLr K2fl=POFWG@ըmk~Q1k~ +x@ v##9w)G+.]]C] *llЋV|6D?'@Na(v_`!r:7>-;N]I~I+B#gxo>P_Eyz!uVvԵ{-طq`2띻c8u!Qگޮ#uT&u~|XK"z2O*|jN3u;x2Q!‹-p2##~HnCHG̚ă,n|t\㴨P!~?7YC=sEJ.8^/ Cň԰{ ` Ap;8ܑ68v ykpL!ZNX`Dc`X=L@'Y -#PXZD/T LHSB(%945 0,RA5QJ֚f,IJqY9)RRҔ)LL9IHc\P܉k#H(JW>$ir1 T89L6F1vP"].3Љ/˛z_/ts_dYbH ?J%zQhg j, T6XnGäcmp# u<閱6n\rO ;@ݬaN c{9&Lkvp0 r2_omKtp^?:wjt}-=SlrXmX)'& 08jRČDkWḿLv@OP wX>nv(+UX<4 q@X_< -b}+ ]ș9/Ȝ{-PBz<+4rz7R>8FLῗHn@NV\tz~o^w|}c% YxqvC+GD @o:0N=|c 4~ 7 0?v09 ߳䩈`A/ֱ ibDEjװ4`0l\O$b.EۄeL€@;3tOn^U2;z|VQSeO2tn|Bhoomio7>CmDjoo V;[n9rMMxL)gZ;MQ0g\Ӫe)ڪnWa"D2}_>C 2zi  PhXąN7Un/ LkOݮLkf`hgZ{tU kxoȈy8&-I֩͘ei=]u^('L[FHș.nz~D̞G8ӂ4nXL/pӖQ6c7aڎ4h%1]`=`8OmSJMUmA a|wTj}Dkg=1j{}bxD I B*]SFTjěB Uy@tAwImTt!K8&t NK>X v ahzG!4p|hAC4zyr 4~(SM0 ԀgJ>8,wb_vB5'wRBo9]`:C>Ą.#*׈' ] ¶F 퐅ث)CKkX?!4|!b<0O,C>B{(/ܡ@G"+WvWwiaXn)ENcvH )=T9Q,p8;eϱf5(c^+yYza82qvj—T'c9Ccjv3@1y];aFARjU8: nYxx(僥p\ÄP1<Ђ9[J,-87B,-Pov ha>;8 0 [f,7E< zψ :Tn~]c{ j`a,'6\(k&{Bm)X'/S`_K)?!~d r9U7hFfp|r>AGi"*`:(>`i q. oY^C_5E8F$ zF،:~uD<,rBtI0'ie5*\aia-0]80V5{~W*4s6_R{`$Mr>b)ՋxK-fx:aa?[&Hxgiz̟Wxz҂?!cTs@NfLnRk2?܈77gNhLӷ^i> X^i~9j5dܲ5k3:{]|l#A&m#d:XQ#Oftz,|-`iLb=2 : -!+^ei$S/r|EgZ;*œ5DҴ6_!U#+A5FW;A Lk_dB-Ou((~/3A]ăj;hꗖ#z'Ʈח=53F\bM\ ׫jcY,#`D9N.#0okdx9\zKT/3WUm@|c}*b{`|ROLQuMmM%Kgi(YN3<|Ҋ pD̮H`0@Ks4$ Fm3;֟|1osK^> )v_ui⦸¶E(4&oolL1`_k#`K~27:j J a$ xTaXV-mԵ #w\FSulޞ4wYW-X/FH5dѻ>NRW3xqb6⪍G@1 DjVs+͛:ڔ.S0<&5D8|ބ4U{5U;5UgTi\#d\|U~4,V#/.[wHq}`^|_cM=Emj!*$s#NÇ۔&4qفJ:R? 1Ś_>gjsX}DZt:nj9bT0d ~"W (Z@B_bޱBݷBG{"--vVѢ1}bݾ.Q.Ğ+bgKD;({W(rJYdO\%v>m'NExANYK"4~j @'w)ks1Rjyd7vxQ rƿZ0MCVHmn~[T?KڱD̷ r42u=o]@Bk(WTkppNa=1qץaw1cxTx3Qߥ<5)ϣ~HC- }jM8A, 1ӱP7 1%^%= 8a޶30a9N,§r ۟rQz{YBC! DT_@vW@ٴRR}N[AX@'wZAJ^XAJA+(U 4YFh n> "`^?q?sM>N{TUX9;a H%>؃%>xJcDӪ~4\ 'VIBܝeCN#`3lN,kTSMBDKJLJX8qƔ04A/CF(@ޥ.} |&G >(iԷXⅯKÿj/,is}1Y{|¼Һh jPu5hutM04*ı/ҥu.{+FG&/W'γ !'ϳC4peY6=wof&b{(` 6YדpGPt#7ҢdQ'ikXh(qp!ln\:f ( [\Fb?z? +kfLPZ@ ܌^䑸/ؒIxT3@4rY?2A)Z@ԮUg전**;(׮Uo!.w3-x^ qa݄08i2=x SQ z:.T 9k-UؑA卵 n&lj Ō5?&Lw-!.#WڹZREf`olB}U\Tq T}a_0]nBȲ n~/Z5u /sXAʟr4ԚP~界d9y凵  ] ދwcY8GL`![#ćj㻾fޥ_Z~7;tYoW l噅N K+V +i^j!0rU^r 5{S{|Q@IM d,KJ/%^9HR>bF nqi!nGѧC ya!;dUna)N܊P?oܬj3}j!\!]sjPC]dp.qvPR ę]y! y8")"~vHzIXחX o #˳Hil5̠y`2f_#(?]t v֟ɠ߳JzYn! ogئ7^~6[\1p8n!? lxl6{=뱠U=Yڋ b-*^$`YJxðT n3@)ˠg@ YDȓYdfXE< !nUD:X_r:zY7l`CU0q K峔J_YJ@x,]{NY!-Nl`_hŪpDM)i{Dw8!`m.U-yz mp8 qڹ'IKhrr F]L>Kp6%v8"xD!^[:mw]=w(^kү8 5l)KKMzda8KOjT)ztxai:>ꥧ,^^z̾C{,f/ܜ~,+LCNSX:pkVX@w/No\ǹ_txaY:V67<2]o̶¡0?txtXNկB[J+QRF/G/lj Gґ|LGqhgtxt\-G\Y:2W2~$txa5i<xcT5H%ibĊŁi'V|b;+n|ÙX1^ !~;] <u sLŽNVef_NՒu p_3[ۗ!{:+I4~]â|@gT^aSA_ t\GO8/TB'i25ixJ;deQz$,᠆?c:e=+;9GQٵxwUmGnĒYAOߜ*4>, =%[+8D0(`)|Mc^cI.5B.1T&myc2@ybˤ#4]x8\ 'L+ikʤC7k8ajl~? /:Hw9& +zE(;嘻FBA}{@t :Dݬ_FPF>@#پ 1=6:YzcE֋NJY`}=D}0db7b|_p)Z~HJFV9Ō@,f\\F P&>@~haÀ~óoxw`qh0{/j9- a:X9aK DkeYv+>,e?X2K#C\<;[,^ϋx{ :y̘oZ6q TG[E`?FDmrC9K4vSV+'߅KwN}x[ b=TD#30*;'7dq^``7*f߀k\+ |=F!SD+dpv89;S7bqN]Tpq6q^k[1`_-&z5&\EבB]좂{(=BohJQ`|=X7J_&J9dWR!,7X岏,6ԡ.`7 xh vzaz9{奇ȝ(/fvS"qgL+ǩcn/CWpxϱ.g$|w 7, h+nvr%=C:bΞ!gKgNu~ٙ vq&W7j4/Q*1` X@!@M 4G݁;7-K'[w#>'|^%b%W`%!Ŏl*lp'U?b(Jbs88c}yB6X_trO-m G%e]y:|Ӆ]kwSwgd5gv:JW t1 }k8(i8(W Y@e>_"N%&\Vߔ%5~QX)J<`sD6n_)/J xj2a9Xc:6r#@{#@Y^>qͬw!^^;D0whpr|8t>l9|>qRHcoXvqEwc7,5.-0/3mgovJc[o-YPR?t3NNo~\G R5mVgħr06*"Su<~+ vD j ~g U5 FQ=rx;kâÕfz˃ǛE`}0|fUOKg&o)Q߃lłWGS4qC J3 j !MAmp4 wz{>zK.* kݫ=z 8{r{O>1*YxS`6^ڗ|*l=bo!;p8&>{Հq=?UЀz\ X%!r,]\,broXxVts/6&z>نc2Km,"VX(OehӍi:>shx8@/p}2z.2@4ܮׄ4_Z+~wlev4A`8+0g7ZqrEZD+4rI6+.J$2nd[fuo+l7(״).Ӆ6kSsۺiM*w[JMU|uZ.{}ILlN /8F|~br9;E~X INO*N$U]|yCriy,}V}x,MVx5zF:ߏGxdH cT,t`v>XX 0bSJ !-Cc9YcbkY2ψuz 5C{?=bp!qOXe .=v4|Sqcc-.A :L'X;L~0NSC' rs ^&s/mBr0>S5Mu/, DT-okkP#ʳB*\`Z0Wsyy6(ļc:k:#,#Z^"*A/<pi Hį<>W o/Pȧ{ꢭ #‚_WK^'Vj1q@w y9K8KФK '&Bt ꈝ tՈ.wZTTܩ8w*%UuXţ;8r-B=SX7; T}\ʏ;(>S@wYG}@;5\%XM+]n~<*R Bʃx}-e>/m]SLG .^X{ wt1n$uMH&n&RBb?}:[tSTvØR\Lo-P*0\) LaW) Y#N])]os>]G۸aSJa/Wrahx 5d|*p2*p2~A8sP-418+;@/OO)DH;_ЕVُ̡7]k2{-74"2[ΛϤ l"{}ÖU"J2ChX+{H0E\a_:Mg qNݧ`0Vpɵ j^?;nAՖ o&OA#/'/AsA7G:MqpͧRg %Rvz:RWQ]o.'F%$< 'xфGGF/,R^L '9z,^~)~;0bVj!@g d!yhE~35uMunїL^Ĥ`tC2ofI_l>~JJXsz?E_"IR}`9Y^hN䑁/7ó;8=B7W8~o-A ʱv&q[<;D913SQOCֻga'iXϠFrGj^~Vڄ67JA'=^qev!jlLPP݀=0CnGMS0F ZoF3$R@"i:s1ѽFPޥ@'_)eE (] 4+nJ/ ָa@e牆7Y@yiF恞^ <ā F_L`ibC%`IlX`sĨXJc4>i91}1ș!t/⁾'ٽTP|bb2z(% VpDڜ=-a=mrMQ捘> S܈#'h06`aN7}p)(xӯsh ow2n|hj WYЋJpz4$؄5u*MdEィUFߗӮZ><Ws8<+%Pd3^DӱETE>{  689=]ʑm$,d٭/!`mƏVxQX[Fnzsw+ ~P `~Pͱ Dv%uҶ|QH/4r꿅%zTx {i' "K8UNvrcN@s}vcF)ڍ=S3K'Bw3`WF%cꃣsBfWfwm"ژ@dZ[ȇ%eqY7 ]"QKJ3:㈦cTmکՖ/QT 1D{s7wwϹ>9s=vA#ջT=!:QB4yfrjPT_Р)0e+Qٟl_ҧTۧSoNgi'/3݋ <-el>I3K}B\ATQ/X13ē=^)1'hի1~vx^0w7%HS]K Ok2eou^bvAe6ӔcFU!&,;!og?[8CC%S -q~"zqcx-<Ɔ֓vS0\1}$> l>(rO,o̞Bk'b䅖ەrqp]y+AT{{N.' N IɳŌ˱0$%o!}Π~p5 ;P$56XtD1-3x1BҦHSuj[k︋2=&GMɫ23SڛM~ZoُGrI$cPx?sd R2ltA-bu.!2,f}!5~Z9--;(+H)"+?5.̧NSF\aO\( {ģ')S8]c1N] ɰgHVnuV4i< ?ˋ.}%I3&..cq:θ28aZ;!4afj|܂Iʁȱ~p#B3*k@7b E\=pl>$db3i昛*|]v,E5ؖ [mF#m34x]+"l:[6vuphB8[±PЙ}erW绺h|CGݒ4^[ߞJXxwҴڪ%).'#8pOGc-[Rd*@p s}X>i CD»' q|ׁ?HN2nִ$"0 ̜<|>SK}qwwමw9U?yb/j5a307NxgyR(9EnBYq})]j2؝eGq.⨝k6"Nbǫ*M..jһ~RЦ;rml:mKA癜<<әKY6.^#" 3}/k~4֕="w`N;Q[k; va'DwkyYk6U2]7+ ~n9W ~u| nPTfOc֞!KW;Mm4+0N1lkޒڤSpV'L%L]M4舸eTΚ^s ź3RtX!xMܶ9q'#I5wV6h8\1u[sqLtkpOd"Kv 0QX$ мٚ72_mrVeoOZ} 3jv; c^CG3O0ImLNe}Wʜ57ӲI6BԎ$&d(5LJ+eSgoo[B_Ta pggťu鑩>AX瑎9"u90#|?2Y:*}\h4)^b+|&ʍ*r4\/i:?ffADky9py& djc'6)ߥ("_OV-0/ܞV#.2C9 -6==ى3j&%Y0xئ& 8fZq,ؙX >߬]3#Ru=ruIO i;l)BōQ=U䩒؇M&#!8| .T,&?@ {{&|^ Q v% Ѽ'D-差p<((K9rsE{\=y% Z`c{_W`gGFM-%SzsX#!nÇ)Q6zR5-՗-c/ޤqQ[+ۅ7Zj{[fU x';>\ k7N &q$~Dn9ڽr ~_zhT+}XD`;7ķ-N;_Ny/Ь;=O}xɊuU9ԃ IQ(We]y_5ɐzuHe =)F R^|7MQDN֨Aw†Q I)OPAQڜn,p+c=A:`?jhSP`&Kn2LH1%KSDF`t0AhgEo5mEǃؤ+w/a_ * h߭ޙGWtSN^\&T":Յ0;HǺڀ"4dHm!zWB ݤBWO SaﻅBnGfwR澂C.u|S+,A &Wٖ#fAW%":(QܻK"obnDyg3άbMDEC,j@sZiA3_ mݠ>9i-%jL: 0=DZ85IUTqj$;@'}d6}LGZE e*zy`GqtwYZ$Y3j*=Rz_:H͌i_\d O] >~~`żL@TéUlb~2Bg=P!y/j<ӻgHr)G.zb#8 L7.jt9%b)R?mli_*ŘmJDJ[X4Z}tXrtZ߉"2 N6LMfŪDY|NC(5|A\(V^W 7nEK;gÁxOeWaיGA$C ,XFZBɘ%q4! Yvkύԡ,)#{o^9jr|(v .6_`61\%28dI1u%cɩ"lW4Wx%?ՋJE?T['#՗]]QU.T -c2nhx[I[WL+2 SAwa'+2muJN"NjǞbVG[[@KVsR=PBWc" i &N_yJ(^+ezbEV&Ś1'CIHSkc$u;Nb W_E'[K-ץ71T M A6ۤ|Z1fxWۣZeOݢb,k cF]br`]Mqh~!]0z+^q$ A3.6Be/+3h8- K Cx{-go*<#)!΁gMP m@U-Za g# b ]ş+;h+G,]\ A72x"wL9us ƨ##Uu?j엳WvT18D5HQ>Y<ƏeΦ A\Zq_44Snzyt/Ճ[ XC\`fpA=CU: ~} %FXa[Lha87F}f2xjB Dڈɱp hTA+:MD)"޲Х&8hե7yX9=Q~ƤӺJ*ڟp&LjC,L,h_}(%>$Jl;&af2z.zXH5.*56\cEke#,SG#ɖRSm&9H匊cYRyr.G-IUSaw o-Pa G>o+2P“rG* +D 7yd/v-,EI(/o1Kкz$+-¤LʹEѐ@q)Fb^k=2j^C*4 L$C [xZ5TE7{sZҸop4R̥1 `b;6,X0Sbh˃7͖zls!B+xuԷ:c٣wIǬ?Jx~,<%h]z;([鴸j6^(3(Cxwۢ\]Z *P;Mi]E`4[7oV®{%#Nj!jw^Mꌿ 1 'bV0"֋ŢiEN-ʰ$>)Wl=oߴnhɡ]QVcEl:!^%K(E@<]O0]\u Y|3f%!q-'ڑ͂M()K[9\ǙxHԈH2q}Uˆ74qICfO1_搑D AMmFK-bg7g>߁MJmgUAhF\F82ݤ(LTV4{kCpݰMPD͠@]+q1iKA˅6M.i8JڥQZuDq츓DuƼ;?G%֚3- !$NּЍV_4L_k Pkr(+mo _f4xm3( a3[|̡r ܜWWr,kz %AzE3VHvPf @l 60ϚF+W^3s ?/}. qj5 L,5yT+k]g=T0#0>",;O4,Q~0{jo@B+EONexqpR4~L7=qԯw]s 7x+ *E>E)AMuo^9^D -ܭ| [#C>[< 2+~:Zxf˙鬇'@]ѹK$<Ct]h߾ٴDij4] |*>GokjтV.:僦WUAݦIMgqZd2,5+'-^2ũKR⍗?c=Ɔcv<i*}$* NZF4j]aOjw|\Yl*$"ﺵJ0R4Wviċ$A-.˶NBIpJ)bCG2Ke`jOHjYPIJEmM ~D&Xw 6gG[讚RY3 O'4Qm>l;841nPbٟ<EoLTt'aBXTHęN:|aAA~kx|2Ѕ$7MVIprJL06ڋ yDY0Dt ~_k:3{5mZ>@ǤνNntFK`Vj1͡Y98$^><ܣeŦy"GtNL7L5tnb$;*# 1ir.G*p3v*D!w$[\I51IRnTyӣ51q+=<99Q>C˃B4"~K9؃P$ Ȼ?MͥU ~F+:~ cU+lٷ6ÞM(5fde sの6\MdŏQxwj} R_D8/ nW.^ }ϋEL'C A^L[E¯r7c@Fvq"Ak˧&+!~tEcXTEȆ32 }Ap3W%{eƔ5'-m>*ɬuPyzvS7eƚnu8YYZYH~Hϼ 9NZ* ꜽZxy*KT y.$\;WUl#4[w W% m ltĶxe3[]XZb3Sxoa\vjBW4z-Օ_&:9>a6之ɨV1L?LΓf qpzCq^_ff XޜwVc|֚ ҡSdvNF_Z<>+N}΅+܅d'|вAtfՖMJD3jW֐QẠsq ~LDD8zrEL@qY4 ".te/;#LmC=*AĭDg۰>*}:=>?E:SnNr\wTxms$$!,mPثE2A-JN/_Xm[ 5⡬B|0"2:*ƅZ鶳hI :(Kݔ;̒pϸ] :0X67 ogQT #.bQr> )P qjv@.ݚYu-fKΙ6P$|Cj$ :^Jŋ ^J<* wk~b'7 ,~k.YA;;dE޾*a}~Lt M̋~Yo W2Llh8Pi >]ՠ1dڅ/= A)~b`bm)Xa4Ly"G3+٢؝@n'/H[u\kݺ_*η~KFC8_J}&z%i%gS=Z ;-K>3AV7Vj֐5aQrh6.AXݠAyYwUq~-hEAES qpa5' HPkȟCCϼuZ5q ޺qhF'MhA>>~©G *l~$[!!zAmlY+Ιy WWm3(x ΉO8}K$ܐ~jv ҸOmϵD~140mbAiw褵t>گ6.=~Z ҭ׬ _dy?ָxsxzK+ ncJWPVx4xs g 0{T/!.1#KOjYnR/GmNX? %G&)PW7~!o-.;Vk~?ת"; ?p0*O+~)G?:[x4(]^QEcND`P9s$ .{f|ۏf[Uf=лD 5TWEv"C/}@#ˇ{U) ,Xp]MjFxY>qqƬ4&N-C ^Q宯wU"J P) ȌRBs>5tُ;e﭅/[J`~PU00a20*!4M50j*6,7ir1X0&X`k/uH#w..uZlyH4ZP0J} 13S'_I9-co`"NVO }S|+`2x޿]$6b߭Tnj8T"B(f0 02uSgUOKրVx {Y9+1/`5)G6o@vO{"43&MaPUhAC7TjH@mUdX7\ZG-}jegw)NΞ'#.$,6ʔ@99A BƨH ܬ?H;kUrw'4` BZU٦!^-&RG\ўWi>У[-#C*ddUr(Ti?i8׉&U:&\u<Ų/$66GM>o[7JDfѱrFwӺEZuo[vGDyFEP3xSi VJR?B.}. tuE@'50hlJ]w761l{~]IVخ `%3?!o)`1 i'-PZ$ YY QM+s=2|B{Tؗ?4!"NTEU8,%Uqŷ‘Zp o+C+5|FVOBC6v)s, ^?@ bUs Oa?{*ZyRo@n=ho SM+.2je=)"idGHkvڛƎiɋe=jJ$9Hݸ^A 5J%.)ܑxqŋD5fMT+!۟({&~ x5`LXf4[}7VJRNTh ˌ>Twq}-A}yzp'^65df. 9{!<ےeԀ;HJoVXW97\Wه9 WW&ӂzP%vQZDӊl x3 q{t %Aπ?TܯA:[K5h ļ8q{Lx@I.b(_}:aH 稔73LPșɳQ<Ƀw@)FtF+J &c5Тh"|$hKTrEpyI]/+IW= (Bm>cb䌱7# z3bh0ݦG#`_.q*u/w^nv%kqF|R&3y٪+Oў~[x%E\N|[Xս;sƷ]RwFK >-X#zֿx|E,bz (e^ai3'u˙l=.aPW }w97N,NЗppJG$Wr)֞/kiZq[8Izt"OgO;ÈxD)InO7z͍;'5 k;} ĨK[PNYMo9jENSaKզ{NE1GWF dY\r}>~8CC T7 TC4Ѕ!xf2MHۤQK'EAJ՗k2,/}K Tg{mė<:= Gƥo2fkzwh¥bܙ)-3:ėbv%C$?6L.ws~a7\}e_-ˌ@-HeTPr)i:Ҝy! idR^3҈r@Lzh.s49F=^h4[BD;=\U'A]t`8ƮK{64e;Iԕ&q<_O'lz"^. -Ix' ]הtj\K|&n%j \v Ch.'LjG'j?V_k`E'Wk/^ 1 *~n }.,U*eHd@hR"+Ll˦3ro6xOv5`PaWVq1 tag)7> KfI`1[Y6\m=Wtq8O@,PtI" R/__#eQL i{nO' vD5ζK6g|֨4ˊUjܣTzGƎሯ}FP;U*Tx TWZap-.)Iׄ~+CMt^?(qT/($~fOJr~\ho![NW!/ 6ncC78:ь<؉Fa$zD9WLSF)ȸ>JI]+MGW')D4j(8g-NlEs7y}.ƞ > '|Ir" UJVWÙe{TҜߔi:<o,wrʱjBL'Q+8NŪrHO$s;i#& pbEwrv())64P<Y JD Nw1G~3Vn> =r5s7IN ˟C4 e]&O3 q׫1A!kPkܟaOQǥ5K3ǁaqj; | Ґ R~O\4}Jl6-um2a_@ԵY:qKmQb3xN?R|Fg>/vlWcIJ TxC0sdYvDG,IQcvI/}Xnq**;s"NΧ Ι?B %n* Ij9xFۼ0^ vC$(F$+vy5I]mX[qu [ڔ߿N8A o&.yGM9-:VW9z T'4jfU`,?[afPtn|55kʵG0Ŀ<0W*JgO1а(RՅP8V CpǿgWHM]ԝal" sCkԝsY)x17nZCz #_E&`D'2#Խ (TYvޘh+BSxmd~0p=

xH"CilI%(3A kjmFvH>/^߄ט F=jFHG_-*c:GxEK0 Z8 _kQ1*?I]GlZ \yՂ>B.aJ)YgC}Od!g(;@R\ڄFdYcV*t"|C|wHKY@8*]%cC kl틇6B$ 㪊ޡ~:bÛrtUc )nwu' !", oʭ;QP&KșxP[[] w~ V#>u] h19\>5k\&BX%( 赹~=O2̝{i:TN?.:}C̏Ǧ|q6xIlg"~VDJv'I0Ƨd96TGub\1L̏A1gl?ův9Bt8?oN8 !znQPz}"{bB+.J嵘"r : jH5U wnD<v*KBĂc mkTw|%[? #LkU)`6 yHMwρ)`-GG#<HI 5& C=o~ljr !mO7ל57jGc @eAL~/x5bj!i]/r@ *+i[ ?&M7.ᘸhPJ@d%l;3&ݠ :2r*Y3??6^iޢ/ N!@Eb^.So!J T5l!)cJl YE}QdY]}lxeجpZ}ڃþ.\8!QV-`aH`(wSsD(qt.'$Ep"BW^e7E/GtHƄJw때GfL|# 2E VTBC&+\D=h!D)c=a3';3;.1qC8dSbדu([[BK M){VP sl*HM%jOqh<{X 3EjP[T'& ڧ)^ ~i"l_1k:%W[hf(.a%Do~¤*X^C{{d*}t?ft*`I M+8lF~֏3Ӯ\V("ƃ{XNد6vІ+?Ujx,í*<'$zX'evxV1ӑu:\Β 9ȲSH>Ġar7$cx4ωdo`zZFĢ6+@­dHHe ϼa]wTgcFEU|Rَ!knMcnċ\/$$G,uN~ў%c(!NUɺð-$k/=]מmͶ7A =\ "& 9=頕1εvg[}$8כH>ޠмL3?{ FH<7DM4$h$< w5P*I 9rK!M1g_E\c8 U]oVj<S ޽%d4H1k1JhBk-YT5JS!TQ~M8H>"fxZHҍa2EzIɥ dh!5O9vWv *#u rZ'P3蕎\=ґ𢗔\=N&}B'RiQr?Q.7ЕPH͍NJ6p^?"Wq5-Qt 9˧(.qW:4"lP^$i˒^h/|l%۫$;v%ext!]>^znsWbrEoAʟ\`d d# oecIAC R!!quIAa?ϑE=#ƫ}Vh'Vp FX'€&W-rix?_ "ChlE*(}#`vtK(||lٟeԻݺZ:ε^[֒ {8dZBRN9{1h݋A_2̾εyЖe+PSa8 KɠŠu$?VP2/SEb>kJN$Q"<^FWwИ %At +(tݚ>>5ʧD}eXO҅oy7Ǫ-,@f\L%_"w Im,Gs$V2hʠ*hd'T'Ceg|@R]CQڷܐF.qCwǨz7ZPaYEBZz̔&lzZ٪~^q(/vX'9#ӄ&g*ϻm|!(-P-s uKhK5,H+AԐp8C"RHQE)U;EU$q߮f,X5U˨Mv$^a8c9D]0Fw^}HT6[e6&k6h,!amO*E~޼k+@lbBH$gHNSz%n;(Q$1d_9"4IHؖśw.P S6#;0C'02;0A9ա0]Vuq(e͸gwqzGuveו5Z{s@Ӹ>Ak*r@Yu U}d z~̪FئԻ -:D{o+*s\ P*SI/.T$ninW]%nqv瞤#Q_LIy?u !<acywKz@Y^Loc#x [*gS_QZ8ڼA&O"wuPlS肛$_)5ƨăoԻY D] Nv$nx𵘵1y(»C.пY( XEKQ]Kx&Qlϕq~\x1XC,yImi/Eeµr+T]X#j Pi$.*9Ě2h3UMv /Rw){tl{#A)kƵn͟ەi FUC&OUj )#7)A+kƵ͟U֠`kN :W|k&.a|3!5APVH-M!,fWk6N.p"6yl!}z)}ޫ*JCR&[^mϒu˗;t/bFOe,_BwS] >ZG*Ĕ (+,\oϒGM]=|eJxץq#83kةHxa]a QAE?Sld$6rhϒGhu{rO[w">jjЪBZJ+ ](˜CxDa0R,!d8";uqhϒK|wu'nGUiH@ܦ]Xg& ݯ15Zt:Sd^;-q^f@nmUx181Xf"#ã7oxH/՘+IBqiB/ S:WL+x8\`nUNC~'V'9^&8/U/os$A]`2h/4D ΕOég!>U8 y ǧſX4LHzٻSY_Ye$h:T )ӻ4},>h>iD?e#0($ͿP$Gl=_vڳa7?(/cֵ.)vVX8 5Gb̀z2As4;.ۼc8zz]͹JY%mJ[}>]-~XC4҄~I 21 P&+n:'H[zW @v=GU'ŬԻ&hԎ?Y\we'Ǭ.J+@&n ЧŬhlJt /{Wۤ:c`j@W9y]ᣱqpU(spl(b7wb'"ѱڻcEeќ%—&z5Q;c5 y[w ~\rBRu׃َ1g+5/kQ*yRA/Y#Ful>Kj8;$ܺ,36|Btz.D˛oRW]CP/՗^ԻBS,~Nk^A;y|>һ&-)Lf݊or H/X^yW&́8R j7ߏw-wuKq@+1kN̻C]1h=?`ra+E&C ڏlDGFo;Ϙ]^.gK|d) x€]il#0Df,ϰߴBXcmS{}[%V zFK"#B]nǑ$lcm[KOy4 ϳEjW4A/TVW(rIB*"GRVOHʌJC:!ĕ[~"ȥZ;^õF{}J5F8-rڡҷ_bfrm ŰuT9û/[L8 "ܠT!RK +XCD(6)]b+n"Av rJ GU$(H0j jrb].} ʁ2^en?Qy]; 2~*8BQ;.~XCD(RƻzD&yW"xJ ኈpx"Ȫ ~7OV;{[nN$T#IMvCŞ^CYV%ڡbnVǒ!A6gbr$c()itQ\#"PLJwjxn|WРɺA]7h{agKsy wKv5Fy.* T}w(!҈ak%' G-xW%'q$e^̟);wWSyM<̟[R-'|[eS N#p#K;a 1DQp 1-q+@)/rq]<*q$8}@$v9%' aqͱVO4~F^];"yQV(^TDz_R6fҔkAw2#W2CAjEYueGJ{Wg6'#q0QӤʌk[F]Z4 OyԆ~$ c'$>s9]:leOUu@BMAoQ N R9s9;h++K qjR{镌($< Y$N B~eTe(ǫ}8Wb ot-1.{'G*fH$Hdyx7ˇ ]/So 0z$0P~!EW%OM%aY5pKDcm:@x ̲.aKPM܇nűOed޼|ɧdWK}Wo;PA`[9 WHMN;d1ҕB1|~S@zztNL!c}ycP^W[S0.@/x)&æ쾬)/|Pa,sO=$F9 گ:~~q$řA,1<B/$N#J=! 'ZvϢFwLCi^Se৕7!`oK|O9$ޫ"S;W('|~6dej `Wl)6@!!Oӣ3`uY@ޮl`[^k V݊#!B,bϋevȎ52ݺʝz '.ĥJĶl' 1X!j-DNc?sd6St$`OǼuȦX쉰i5nGHkj1_S{ub~W|RgBXm{CІA`*ȣU#>[x4#?l8-9>,X'}Lr5X$b܅p6gtoHNpRvǰBSSr:}SG#hțqz4C3/ ];d)~;5(:OL ?ŏ[U5ޓDw>'t=9P5e?'__^4 6)[ɳDw|htZ 1 -h*d-S@NhI_'F7TcI`}WIC I>,: $@) /U`XmGy" }>d;XQEl`s2* H҅8ab&Y;*= z'pP%P^UJ'")ʐb ޤx%nA;%?C:|G2DY}d%.QI2ؘQ|9R )*^bZcu,5`=9@[,% (˒0GU7$/w膡;f}zsiFUM"Ɖěbr5HsĊ [ \b?}&꠆ZkdVlopo"I{O˷_8 mN. ^*+]]ìs*XX1B>*N!f:_3X & 6 D={tji4aS!2X2@|B\ 5f5u@SGj hgHq N̐bG[:fp"f Pھ%ۯ35Ie 4RL2 dL3!TB*gH1@`b* ^*oXOv޳0*'"dD ԙ@3pZC <\-le[keZYLZLyPaG~u*? '⤖`J+tu 4GPNxxR=@J%!=1up5Y]䑄Et]t-k`] ]|W1@L8Mw )`>)=,p!ȔQ=%hα \EG';s?kcަGoѵ XJdu^b<1Jv0l _6u]Њ4Jb К8a9c`cXl *֖ ^p0m,Lq CIm"buo!V3Ɯ5҃|`iϩ=' P5*9uAL`Y50Adr8h?'|h-JWLjk@:A@Re,VUb1h?{otÊ+${nICW$ :d$ާ1&Qw|mFr kh͊ uIh*s_#qu^+R 7Q(1ϜvGec><"IP|NWՙ͗LҺHac$׹D.y~J/b1 }!,,VfӼ/uiB C _ϼ_t<Wr^8uвH -O6>)<7nQɘ_ax^yI N ^u0A 0 "aХe.:ی!YRä_3' փ}RsuȚ?Pt {^tDjK2}Gwti"yu8iJodv4fXl{ô` 1lĐ@y\@d'ggHQˎ:.: ȋ pNf8h-Y%5^ _ xj|Nn>;z|u %\JP<(/a3MS ⥽)Rcer\yGڂU(D0>Thy1|ܯU 8"X֔Zr .ڂ>Q5~o].|G%rL4xIϐcYn3X&6>bb 9 &cs M`ha#qû望M{Z}n쑙4A4>b]-~>˹t@ķuM?UBWYVCI4gÛ' [Rljlx`V#+병+s, F vľ3b1%V؟Wgo?P^Bօ!·Ő`=gɐ`27:' X[Wiəb矬 t E%Q;ʿ_3Xv<. AzB!\ZaZ7QHI`țፗ azӒu%zCM6{҇%tlB6cH۷$jg&#Yj18DYKFڶ.Sgz4Qڃ1G&jc([VA/9~sbD@|b2C@GqgdI BSdݽMrnnb!m7;giοgl~[`9/>GX>ũ^{`X4Vm_zYҗ ^:!p)Ad5#Wp HbiqF,J1Yg`=qgg<{9#0VX .ٵ/;=ʠ )FH e)'Zƣ8!o( :S`Xl]oIpZ Vԭ&bxo= 0 ?hA7~9X]|\K4?rgǡܽ6 n.~c%f)&>iB+aX/0 OI"XM2{[n+|DAƑt*cLusw߽j/ :@p*1XIb+qw (oNŲgǵX{ڽly"bDm^l5 V~S;3w^ v4s.!CPA+)aT%x"P16 oύg3M+CZ邽MU>O]^dM҃UoQDb~US@ dƁl8Os6;swTSijh y}qs l4vI*j3],#8Z.؀eGShf 9*iK:@Q"]坤( OdrG/96>hQ6:#6=V*FNDHŷZ G=/S|r]^n"1a@/5lTGa  5=&Eo1EJ+a领MKxG և]98 QQ}~h``8>}lW<zx`;./aUa,CuIg^.£lM "+WZފl')C8|`JJ U!i`Hb:hYyXmZ|u|(s$th~q4-?-vu ڝW*a1`=Xzq-Em1+r `4.J9Pl_ <{.,˾q|4ڮ;ɡJLc; t<ҷ&yYg]1)zċWi)y43Shȇ( ;^Es6ZpbG\ao`}>)ۃUlG)X5g˨1̈́F 0NX̧) A dBGXHpFE\3Th~?:`.Eay|C4@ܯ( UQcpϮ8rmGɳZ]Vvmk&-UжAލWϔU]S0>dڢ*թ7t*a ov*``)s6|Im+,VDmQlݽQ|߁,R@x?ːRWCl .=[uUHgLL2| Sb2Xˡ7^t" sɨ+`c'kb!B4ƩK`9{a.Dxy#&p,86 W&+uvfOU+\^t VFA#R4Jj>z*C@moG3X^lA5@Xd)A>:#d-'\-;$ajsV λL ⥓)l:{4:i%g)2TJ43ik<)IМF |!H"%tT-8)L96ΰdӻư|A D]2 u^*}/f>,V'rU˒bP&5l[RqO70~JO*`mRYRl<`y`3|{#h2U%UX!L q*XK3SRa͵J]F?bʟk*"Ӛ}O5eۅ X͉'"b] !Ol%xx*o?N\h^ ;q5'OVSxj6=}\ /N 玫aQStQs2tuZQuf`$L `+ؐ!E1_`b{'3h 1 ,P>lCLD dHͻO 1C@s@y73tˉJ(fKYf#f&aͻ āyyuAl MR2Hm8Sm89Smf} VdC@C1ċm0tM `5v\q/|^?ynW v_+)IKߨ8= ͹Z缟`h,<]%d|j$JYs1p Z9㥶RJ B4qL ;@xkeߩyI0LL1_θZfLr_]/F |'QdIRb8eq8}/.C*-Azq+j5 ?@$#hǙeP5{ .+*"+ @UL8 % juB9㕵f?k$|P1m).jE tr_U; `!~bޠgskB"X [9Z*!xJ$,w:6CL:`pΫ2< ^쐚_w^-8<>`YnD51Ҙ!P+Z ]j`6pjv~sz%Ӝ-AEM"#1kB ؀hF0+kݳ b'Yt",zfQ' tdQctW턨$AϩΩ[3= z{YGo!ލ=Bss[0r q>% }z7h0̩ uK+OA̜J #Պ*5Nz+60VZ9`AC/jK:j,2* Vt5L60y"!7o<=TyzT#yxLZF$N J9`f:NX@K!YWe.1L'51t#5iY,(!5guq7^t !gVGƬF !R+jz4~& ȏwx7cDx͛,Zd@Թm=Dn  3USR<+~t>ITn|NCGԌ@X=ǭkJxBt-q5ҚDUV]^aj^#`HJWm\'h r4qq^$8sUp&L4(@Ԕ1\jןfUCF9ɰoJ k@-*}ጸ8{B4כ @q ;'7֡r8VYBGZTq6 s~]&f#|:6;d$7 IZMH -Ret}Wyao]ػQX6$);9k(}HC5P `ҶǨ:0oV.Ql70l:mكyCmW .ыHN&kdM_2 t2Al^j֊(g bCl}<~NrmD/XeՀ)-7o|.3_ S rxލ²$4|S(ay @[ccw뗴8,;x7朡I9t aikP]vONEw]ؚIq̀k4Nc-33*}5iC%mN} jz [z=TzU1hoVZxyWt\zE³=][y@Qҁ-@ȴ B K,]{鮎4͚oUi ҄2O?Ri7m3ZӢ}FSc*aaZ o*1'Ȼ.l-R UޡaClm]{/<&6El*Yaj@b'l'ia#: Fq߬cDj~\;( XMށ.jyʵ˾ 9 L6 n4/`]G9}tv8,`mTMuFiDpEb u>A1س|rD3$]`E[7:X]T dR >1 GzF/Rwr^r@:1 h,^nb2VRԺXBK3 )5j Wlջ.,_NsUuc衘w9ɅL2 V삱yU@|<dۏ* {rr7; ppamS 65zI &Cfİ3t=N'Tt(6j_$}1Z@ lr4[o,;~=BBfeZ~=#j)`Jѳ eԟm X L7jo 0̍T)9alO6K 5+`驍eTZ3ݫ-tΙJ{K3b 9 ACM/HM+1 5שhi40cDcl =]ATb DEԣG1=(kmYkQF[tI?GZ ha%-IexWV٘aWZyA~Y7w,Gx[u,ۍL.:6s$ͪEb%&^0v<,oua7t>xzWЂGԢbP XnsN=z7 erFNM,aE(OSeS63eǻYk#M"ça|r۷3o7eG{Wdi.3 d4/]Qeg*!1ft5Rb,$#5Űxu?=Z,MFH(SrUg:zMݬ2P"5%]F;45&7/$j^G٬1-RG? l3>B`jRKkVȖ74L]>uɡ4us1EY+G#51Vf"ɿߒ-F.EGRBuUZ}u Lc>U7l:R Em=='5SBEKRa <w]X%Ø|ܒ3:'6b m'h%2i1 s;{HNxw]؃նh^0ﺧDW4 X϶hEҒ (5)]镴?Da]o5,*Đ:W{W(f_R뿥,w2S~OᐵGT]zY96HNsʚbu:ދ.u2Z݁_ }L{=чX-Xتv!ywQQy1ee tX_`-@eуZj=sد)Q9Z+cd+*;Bkp~`b+QNfD)ջ#7$H#JCB?,qrWCqL(zۦGsEM߭W"!rQ]9i(@ G^ٶ4֙taOWY ocx PG": Cһ.9KZ(މl((^w U@tB iKb6!N o[Fo!u-W\sa#X(`@&N<ƸӡzWX֍C Ò:ⵕf(/`@x.9oӜu {s%]CX)jƞTX5C\]WPyN$ D c*@^)kl?B^_L?^_fC}yد~*R8 :zWNqB5ZU>wz]@4AMD`ǥ/ogBر=]qyŞwcdI5ͼQJ&ɨy Uzq˦WCua_T>rzV <:ECx 롦Cnh6'7^q}MU!fջ.9-S-jKoPxׅ.q-C3U n9~"Ɂ|CǺOOYȼu5IɌ?Li}DvV][T<_ҟnݿ)@Erb 4!oP-W*Q?&XX5.h&^-n?r >(+UXb#F+Tx2ӂ|T Ӑ0= sTD![%Efe Z6[#hv9eF]b͗ Xﺰ51֯=:⼷1FmܮG(@+Z8?i"R tȓeTT\5ȻQؿލ¾@f5 >"_0uK07'9_/L"]~&1e; L@xz7{r+0GPxכ!r7&NOqSy[ |Dw,{x7 XL ,)# . ;<&rA<I6O C+ ﺰ5 ϐu1j[))#jF|~0N zׅ} ˆLqsVo[tE9kQ64M"wkmE( N_&&j!B^-A,wzڊʛYl,On1(i$!/]dܪɨ2ˎ׀ awa¾@ ,/)!8,_$UjA8Xhc*i8%hU ؗ_FWdeJaXΫ_8Y^(F:V̼o2'lV!c45q{SS UbeߋTwcj. 4 }SClѣhqbۇXL{-GS|WoN :l!P BaF=Gеfu*rHdn rIq\iAF\K|DF눉oѣĮENm BDÍ)Y;`ץ~},{\OLQa@ԧכ<z7sC*w{xw)лѝx)Dv^Lh$.iGaau5wW !F xֻCO%\M ]4eT0- @Z0m,U6A]F2O?l=ﺰ D-P]d5@^@Ds:uFIYnfed+4/ؙ &> 7.A-+N j@X ٓv0*A&Ņ!9 INb1@6 i5dE^Y:<5e0LĜ_!*(R`J"A0)M_\aV`1XT P3ܰ%fûk./|~3:Qr3')p?H Z^hik=VdTY I@b&2V &'y|m0lVMH*ي\DHt K]齃q2#s V00ٌ``E Xjа=[Rr2GH&?q$A$iNRRU/22bʧ}9$c hܥUvz ﺰ=z*C %EoG[rЎQry02 %߫\#у-} ֲf6p-ӂ@,k$&( +A+Ac쟃XY /ǔb.WORFMH0\,s=:&B憚oHws HI9*e>aE"6`Xy}!RCZY_ja&;h<FM9R<|j;ܳvACu֩~ vHAWN h/%AM AOᰉnsnҵP"SӌCx]^[p5expEz!6,oEpG4  c3SsA G7-!;R֧?+`Y9rS de\P2 fR}[z;r #%[ A&t5^'r׵''[[l_+hl36wuUB];R>dx)Gp[ou醮ˑ%HA%Dy~Iu ȼ@` .~zD !\pcΩΆ~iO'?g*{*adVDʍ917w.=PKn*u-׆~SkC[E[rMtm{eh{SbRES's6HMNŤ&aÔ~g|g)Y_c@*)R{e!@Ҷ0ucJoUJ$$$HSmm{lrnjGIV%HthLQ3%ΗWw4meaCK9*fԁTu >_ VA5Y 59S@t#6-Xqe]Nx儧]{ZxLDD.EFM_7UX7dewS=zVf(GǪUWc3֣y}F}z:]p?ջ wMezhSy ѵEZҸ4m?sQ@ݩPnB Œ:s_еES=ze`%mJk wZEh9_ҿk -_Ty֢u])ܢ%mV$TM{⇗Rxh|byf[r ݩBGWOTe~;!IE@W醚6ߖ2K\NdXd͝>KOZr+23R%Ɂ =Moz7$aȁh{~aAw,R]Rb51SQ&1TAڤ ((d>Y#=w]؋Gl F 7ñ ^ьwGjmVOɆ51hlagQƗ j *ՠiQg='BEu\G6M~a]6Ubw㰜]lV]] ?]% ]}fM_E?1PFU ˆ#5 w {6k;Dݺed%=H$[r0a7B imi.(p;XRA쌌j0ɻ{w´H)d8;$,Au'fPkr96}n0-n$–gFZ /&H֋@H?QDZ 8Ӛ'+yLs+CL0}a ¶<9AHвAx2 A,-30>A, LRüڮC22,ҴzdڸzƑSWxXsw<̮RdlwPCHϬ3%ٲ8vXIp dr1 9@@81X̘d `l< !SOQ{o$dq[u}zk9uԢ[ k/krEg-,]YetF1t5,gD1|6|ח+cYF4%w:V5> J6Ҳh12ղл@ 4B1*MHߌ>NoVzx6nj–k"@eMۊnS4&:t>M<u8oȮ+0z;IJA7t=^n bN V;w5l3࿟-?xWÒC`6?F9ͱm%x7;Jt5H-Gw[e~?KI41tA&7;ۯt9c4!}{t޹*KDMi+LX1KYzW[ࡾ%j IY66L7Zs |z 9 -*mF!ĴЩaawӰ_5͈auK^M]3>p\ ~⼫&9EZ:W P&,ʇH|RWJ@ 4/Ë凊q  o bJ ԰XԇDUk׹Tjǰ/ZxÁo8C؎b9A4*'`hy1Z@JKwӰW>wP2sJ0[v1!i" enSݞ܃h *7:>)a5yW2&d~HkIfL!vM-EJԇO o͈-0JS4#O7:>_n㻨B/Sl#/+um#%(Q;?Qv4^k41Yʻ) #٥)$$屒]^NXFyyWòT܉{COaØ{ /%%;!|TOPHP1C z *ZC X U(mdcD/x7= m+R,?pZ)T"r?n]bpnE~LUWFƿ[/"$ӭջ#y7hR|8]pB7bed7R/@!E/E" xy 3~ RX6tr}mORw5,. IA"j7Ҟ m^ N6bw?*oC`Q**;)+>7)Tx7tn;-ї a%iLC=2FmalةՆ?&VfvTļH5vl wD؎!lڗQ_/ul[BN]{ b55%g(s{XmPlɢmIӚ]T[T?(9w .BK@;q195+D_WOh9oWH,Q$HD]9f=\ V=?A{Fat^ 5zN"YV QXNçؖL(&^y(a7cj\~)YV3)f'&QCu\pF0wӰ\e0h] eHѳ%H6ADSfeEa9S$x,K8# 0gU a II"hau3ah6=7>/Abf`/`hbJ!,WaW1[C-:zG]3 EywӰ97J@l=?UzLEm{"rA)#6dtBbYS,%-(+sQ{0(Y@ )V?ZEz7t~2ლU;j}Q36Yw5IH"8W9ooe{.hc$NɸT2=T:w+VM|Mc Z4)j%]ñ"uSDXj?k_F a# ɀXxΧfv)i} g:0 s)&в|6mG I__#}}8*<d bp ,yWb|2-++v lW''E{U/Uw5칊jKRE}L9g0d ?}GwgoMJ\_AlM{O%mx7W ow<$_] {R@ a߯Ojz`Ov"}m3ow17>DO ;9Utz7s%;Oy9]1&B10%ջEw5&deW)e9{N.[FLMԗUn'D} {BsƧMbpNL[ZyF:ڝ*Gϕ^w lW6jd S=8Q}3<=vWmdBQ?'*ջ(^IL+?},?"sam8Rю<"i'Mj 4jAumE 4U}!<(PwRN$aS}9X7hB<+~u{X`RʛN/N7E|*>.F#6L71:3ӄ-A1p: ߂Zq0#|-C ފ{҈kݨ*"8!)aY wlf8л[xj})ټ˶ .S/s*7JzR8P77A>sSt;A [Н$kxJird]텻Ɔʫ{ynCbt.z3 ~ =Z Z'&Tr bPg>`Xe9nɡvǃH(D__MEЭ pFtS)we3($.QW!qt`O"P, ۾?/3vӰ,/|Zn*!ie xF%ƲalD`arx:C vFwυ "q1⹔đP?$M*1sMw%DZȖPhEHd҅! YBVL^IV%G{r y=OC0:!"c rCw}U&_kx: ^ǹml*"PO H@"M,T\w{;: 7Uo w4 <jnP2@G@d9¡M*&``;cǐ"Ȝ\xߟi*"0lu9؊*|M%`u\kH85آi$,8oœ@8xqXqO&M:}"N!_q="c2 Vo_ɴ;62j%?DPal fp΍w=2412VX=]MT'KYf9{v\$@=6 }PqV%;qaVe/ZO~NנlT*4|;t$+"i]U|8?)iyK(sn(~>Rr$ӟQ58捝FW'^~l*`Б4U'LkWɄhTߤoXy҄xX bYF Z1YB%~#FlTCcn'L?"$꧃ +kڇkS-Ş -8>B& &~χ}nSz2ǣhrH#oOvJ >[K]TnTꭣ. aY:tBU2G7gS=F[ȞfmODU_%O5j5.ﬕhtvWSקTD/4$膿*Jӏ`10t[JC]\FNkaOBP}urb($?a N:ox {Ԗ[Ұ}=טw.Y*CT()ԫGMxYݥT+%J}gvy S taW I.r gދNNWh֠z/5wڎ]kRekYC5(jwmjN!s;>nDw$rx0 }Ph:Ӎo0'7r,c^&5,8w$}qEI?5ce"#4R W@?G)I7z-|2uFjSocl\mam$o<1\0Jh\cˡFW \>!Daf6֤ &ff*xV[q2\@C6#ى3 a/ՐxKqTZFhDBZgA/R=+<+YO;L}~<'S_l&"+GtQMdwNB j/v>|0'(ñ[x͐(R.PhZ3گ-rѰr:7l ܤ㭇fR󪞷¸8~ ?40(_/*ShŠ?'Zw&I.vIKN0q1!9'ܩmM.՚5zAAFZ ")IL.=%ٲLcx?eǛ[7!X`j阰g5{DLo7aɻ'B sgÊe]kX^V`iOAעdYgCjv||v`<0G.dcg@}.7|,cX خ(GЊ~3'pK&C j l&k7S3p7b 7n~_.ik,iv6`"X3v ^$TZV6u S{H&d«cE"}-< 3qxy z9$aWqEka#2>c=-ͺ2JZzև M-6Ydѷ@ndp҆)ЀѧE>S<Q't.=}Y ΐ" .zfOqg5+ަjfÀ~n*^= 03ָN?5<@|іJ=+ǃޣtEMJ ;8$#f1*"=rYG5Фò x?N,rXi#ݡW<^~IMoQqлSc;Js{=K3; ͂9"D_3 tF+S l:ثisK.vEŮPXOv|k {̆BX>7A4j`E}z< Řs8v3Q( jOgDÿ }$Y bao"]:xbo{ ]B"35nt~7}ҀrFn䜘N㴑՜y”#?م\ƺA&Y2_҃M|^/nQ" nѾq̬ͿF~"k!>=Jm~@,NAC +8HfW|_[x~/:Q@7X˓*Uy|_;理܈Di$@ܢNs.GSP) w kpRZ9uqϜQs ʋPDCF%6Pyq.gy_X"3YTFS۞t{9Tuv8ςPJu"z̤7 c 1b=D6s 0RZxKŵ`t8D877kf6R6jkn3MHۻ"00Q^n%e m/Ic^B*R>NҘFPaetCj\|,P3֞Ml}]\|&h6NAFP}8aNa9i'=S&v(4PUߠCh1<(NܒQ1웠Q 5hG/]'%Τ,RM ?]$SI* ]ҕRz:Ÿiy!u߾p A"Y&˯|lG9Z@?,cx4kPVRRhUBcu,yH;b!dE <@S]˜˺=C1=Q)̆=B5Z0ȑw^Oו& # B:f.c+e+{f&po*|wj.l(xd>2Ww˒g +=~d<籠OV-疵oȨ.#R9&_H>'%vW?",\pTvB4ƚ̓+zxVui+78 B@!Z#oOn=`l#+" $=ALb%HSOT' ^ąsW|c510;ᱫ*+@eέ%/jRۊglqg]p S1Yu"NS@PMwڢ190bn]@ s>e:32ޏP!)rGɂӏ$OAv"U~9\5ƃim%>ldÜl2R%brlu{߫N4U_Z1wNY >`pk{ҕZNR^,%iTC_{7Ĕ;yq* v< nP\) Fa%׳}1#tmA6k$k66L>ve.uym]Y{[9[ zn5f4ɶJŎrT{ctIleLzvț$~9&a^+4W30 O,%+K1ŻCт)tRyZbXr x ~O뛇]G Ȝm'd(zπfr:W?(M>0F:4ÙkqPғς)f|s^zL`*4 L " ;RRN˖̿kDEۚomJ8h n. 3~|-0%kk4ZGe;~SE%7 ,qmfخ^z7d/L* c)|UXW,a_ Ӊ=]9bYMNBS% - ]!ct[+6l#u.YH9u۩V?V/[Cl5CFv}ȝ&&"/ #T~o3y i0__Ջ<%k7\*xއ{W`!H<b*9Ğ]VpY 8Bc3A|)IcKq 9\VmXD+BZ\u̷a r1 ji@"^V^j}j)p4ZJ)&U#gQĨfr(ɣ6='߾?_! JIs[2ZRl5` G|#M[ސf8D"Vfjt1نOalC'YNI x P8#4~ӻc ?b@jb'Y$pF%1|УGn'z3Kџ+r>?Z⦑BIjUcO T;F߳)- {J V>\/sB멒Bt)?zc3ƅ/B5ĶFqva"Kq$ST%f6yRH fSwص~#iaĿmĸpUJJ*db-XcWJ _164v x*yGղدdNPޥyejM2 33 p%Za?Y F)Wy!"_#5F>o6[,= 'ʓW ) ĝGZ" c)X G0 TFlCd$ L392Yiū/3ǧ-?paxa(6+FJ1oS"@/$syNΖ["([vC;UІY~zՃ-yf!NDlj$(,i@~o*5< Rݴq"șC1]7{#kʟBʫ+Njaovv&WM5<<";rbf7Rض4 !R?$7om.lP:5;Л fBVr[55 (DqCKǫ=]B[Q?gWzvhe!$&[Y}uN%|k=$!VX ]s76ww+^0 $~gAXՠg0:q"9\kp5>3BZ 9ڋ9lGyozB \diH puQ6XE*PFNްח u.:wVUεQ-4kS@3h؛yLY>j0oI5 7 WFhB8^ݟ&_^QL)#U&=VKս#p m^֐! u/.:ЌxHF񞖣i#M5o,1O~՟ Sɼxɤ{@r-E)GB=3FofAگy$_%?0Ts)[Hm%*SePcfHK NWmqiwROt8Wn{i3ָs«_ڐ5IR;/"|xQӻ͔/`$koI,/3~ţb"+t/Cm|oJu*he5+;H˚}(P~i0P[`a@K5#^kٕsqg9Cd)eyzyB~r1#fnfexDZoaLe#ҞɎ&WfnMqhںs`P /8Fr  K_HS.\-c֣3_ßa0(wle#Rc doO2$=6@;%PL;+FJ@7dI̋Ɋ\rǬZDq6f8^dWQ_&uFs%d\H(! “1 ']jZxSB}WSJ#'Dƿ]ekD2g`7kK-SLhn,TN@\3:V@ (ۤ!<"G`ZEBX #wبS}ڠ%עAY3GѡnEDQM0k $^ 5ފ1&b]^U l':Ɋ4FPOy<[+'rtZpзv(N<;$I N&PC5ro]\?bE2Q[%ʆ _=r;+-i7^z!\|afNaO_If~s-U5A/iOXGW%X2{vY~0ai Z%S[796~E96Ku][ >H\D9(>#_B"UUm>ޓ#|rGODp/*sإ"pJ_-qTr5뮞YhN~"mL!MNo>¡{< !yL7&ǭz4`ِN͑!?lX \vPsW"ca^ү_e'LK4W&_BΝh{%LY8;dp: 򖦖 oo_9ávexZ.qK㰿MAqN3P|&h2*GMnW:Hgt_%_͊uru:lY%o JbBoaDOۧ@! wUq? /X$vOFMZV+d`H˺nV'8ָ% ^k\޺;+u[l{z+ra3!y-mX&ݘ#|~?tRF? sY؀R@,uJ,uB|#hc\yp4E"" $!l:_bhuwMic\_(;rd>"Cj&mxmqVЗ<@JfVϜwm%rV[{ơHg9882mPT)uK@'޿]U#Vs }2z9>t̚ao  ul~h 7_u>-;W&+4tq))Ęˁ>w)*e~*8Z1N<`?jUԑ{, RsnyG@N DaƢU1.LgXf:`V-f塉a {i>g=pLK0syU) yKSE3.e̵|߳ʶc?Fo+5L\?ZGkm\>~+^gQM$dѥq@X~0R *s٧ZD 0xf ע([,J1% Tj*RB*1Lc^\Kʙ/ p5@}̔nyEIŝJp9D&lAT% R jXM^!t po 3WbB(0cYaCE?.tl*1uu]mܯ7g>;IG*g+]H֏/-YHYŐm1ZoB A?ܡX4C7o Of[Cw*ww^C$ 5HCI+P"#um7'.:#܌))7Bd9ʐLD,H Sl$~Ƹ\Y磗LH4{|oL9듳e Ce  B~]]6.Xm#Kmwt)(U0!-ɇ[]T+lGI@1au#LJ Bҏ> VƷ>^K_"ݎ<5vH aE; 3>n3%`|?NdGS8A swVMCsMmC~ˊatafPɆC |{tiUC&>m\۲$PdL>tB1ױer❌dYi;RhYJA^/z/2} O՚CQ+)v;ޑ#Y*\;(`lb_qȝ9$jG4ZJmhOl~&e|6 g 29]ןC!ˆ<̮EU9Kt4'inZI u@z{ ^ULB~0_o(C?P[,o4iҨ;TzS5L8"K8 ]97kefbt͈)&OoQϧ˘(nu!ڕ9 IQu&σ"QPGt&Q<<8;,cRbqK$rGxס3&*=zyBڪBeR-0ې@T{ȳ`zwZvTfM6QhVs<^]s>b'M.dެhmEn4#wbnqe>tpbnSq<<7 BuyHv<չT]TW`c| H͵҂dxpLa %BH]+X UB!jOF\:h#UސK+L)GXbJp~V(*tFlq9,d؎NrlBĴثfr yC퀤{tknPT)zN$\> Β3ϥ;vLWS[CՖM5 u3Xzh z3[:q!壿鷹Y _w9Ģ[cp3nd>OCF-{W=[;g1T1 bٙ/*=m{}%Qe{DgĪhSLq+E~<5)Pbj:ǶPΒ n7hJyUTXH‚K~?h_F8<@gD d{R%Yrнֶ.P$Z_t{g|#3̪%8<Υd\`aQ9f*\8;7!\:| 'ew]6u✤tOc [ش)ezjkt>v'n_r-r<[G8mu(z$3bkaQ–gv9'%a!V.2l~][-^X{t ~At!%CbR/N | u!`{UQ"0pfWV(CسCB֬<^|r@b}KOg ΧTR1S4p HX nأ#wN5K{R\D榙F0C{A*MGAt+8]k魹 %TBPƒ9Y>u3UHC[nI pyna5GݡTݩ0¼9l@[Xw(S_&r3 IB B¹9mm2r5QSeMs1͔)O&/oS`G뷦_\(ɿwBjdګO`O+|Fr8gziJ'^ |e1. K'aJ*;.*U$Q[*Ėö烉~,ZhC}Ğlw Kwdt4wږˏGTd# ZU!^( dɅ')x]f32PGƀȈ=q3A5qtbB:{h fsx{?*SLX\,AټINΑTLji bUG%\«#m˙3~(# T$hj«sO \= JxçɿݐXXѰHRGL7}6ﮱw!@.D[hx=L!;:둳%ۨ3P_,N~+'Dc `$\A7r>_TYkGtG^qeMU// |!-G^f1rjz]Ď Zq7CU|,]@*m5O![GЭЪ`ăR 4$ę M@[kM?^䰾dݦ~_8f]+pfp+%Mqz+WpS],ΦDܷFZ k?'S}lW5Ʌ p=B6p酙TM(aPxba/9Z֫c ϧ_ۿ7I$[2 Ne޽A{!h ޚ q@LoY<֏ܾ9q wԖ7_l2cc/ zꂛ8g m 2@#)6sF#<%o ݕ.?Ic]co\u:P⇪&Dz^t}T MLgs$u--\9=nq*{7ҎFfnbb2{ͯG{C&ʨN&/}ʯqYE 4xו*ONrnww7vv9ΝĄj&u{CnOABajRT. Czuײb{3bZS-__şx  2Bڏd| /;q$!41"6DDc WW>zĞ}]dE*'Z^թqbq nt> G*ʦ5m`"*TIO7ޤ<i@A#xL7?,߈Qۊ' :XW_4^4㞹:|yǵ3E ŦwH (QqgQADۙZBg{&=W-#D,9](Bp$@߯B޾(#狒|G;)=:x'E'Յ^m6^1Hjo5- F.~K2 3 5)蹎PGofvFZwM\IqH7[/q1/#-l kYA\J79~HʘU3%'EIlyaP0]ueLnZvϕb9}Y D}b SO2Mc<> ==yK7/Q*jIG )%<ւDšUUռu狣'ϗc!#!ejMc/s bp 7Vl:& *9*6&x\~qa2b Q73O&(]C_3(cTvS_:GJ ^:=|cOʵ(,O seҦs?%12{o?r F-:)wOئ7eT dk `Ѷ=G*`m}N%*Xk-6~( fm[Ǝ2d0+{l]${]F̬67q 6ENr ?ԥŬM\u\YG z 0j'g,6"" =]}`fܖp>X q0 oyk*5inxn{+c♊.BrX\я,#fA=mzZ"MWQ~ ]؂T^Mւ֠R1KWˡ' qi`5;̉ز!W|idC ɻQJE&}"xI_A2;7gtU)إxx+)0253s[oh.MVс 9KJ yV_qEI5 ((ko8mjcY23*싣hq8gwHbeS 9Y;eݢ1ӶhQ.'/;?u@G401%PÔULB!prN3$%aB%Ea!G1 BaIr֢hq1bbQ$:.3*e7:n.Eמ<4Gh+3f6pv[sslDY [emcb  IisΕZ{D{X39/g3RCAs\:jYk^,NI1j)OG  -O& RRRKD؟0dYrj>ra[1O˕RN\\(ѬYPAWEgnc8ӛ5QAIcj--uG/$RP!vLj91NjJBy9g@*91脹%7RmwGBow~a0dhcz:=ͮ:!&O2]HCR_*]Yh 1RX!>%7ʡߺ{ 1l[2 '[ezݰ8=Z?8qz=iI70b\2=:x7 w'+c `V=rm}Lw'-8ԥB $BlgyO[ G1u)N'v(;ʞS07"+{&Mԧu B (diV ֋*t'|W4*:l+<}H[MHD4CaO/7't̎X\~MnMѭu.8ELq!ږ_[3g(_ԁ!dQ^t'4M֖4<# &1?dAb`Gڧ*l*v;tq!6PJ_yeAәh0 Mn+@ͱ>?'a787CxI9]sLgKjxh救љMnr 5h(qW$,dO Y?ZFPBe_CgG!V"8pH>ڗU P5+U ]xgmQCNqW?=N~L=`UρL4MP]M1+[҉K7HsFG Sf>siۍJg'OR>7;[!7Q߹ V N"Tk*c>kYyr+""6WAP1/+9O1C"Yi%\Č5JU\.ʗiigz H|] RV#ʠz+EEIn˝LmK"yL,,jE^]^yTsK)UiG5d UZWdأ\eƽHHrs{_REpH3݃?IUGΙrEl3ۿbL$-Z~M ĘXtl5-XMsȕZpĘf}X\D 5<RN2ɲyJP{ɵ vhTfN5Ӟs4i`@ub"z<g5bR9}wњjwUi69/f{Z0vh@cQ}z{47Ge>ζmu@˥Ӗo4 ?篔=URI`InC٘_n*ե2*Qj<]_ŔjP_W %:` }$c<}$Ε 0E;K}2uNRY쮕Ƨ$QV7Gg䎬=Pa~ɠ.++R٪ZOeO,5TzR`((O//bϯs; 2hÂLiQnej5EOE>[3&QH)ӰzXS,ުi;V/}Q +a■`RxESͥ`m&]#}uQo>!01_vg /x@{%zn nڃڃ[n}1ٴg 8X`y^/L!_->,^=/4- ˔ҕ#;|L=vhdmb_jRQ]Ɯ #"d9)j b/C!&G"}ɞ=^i 'Fz%n[T!Iغ2uU8n[ɀA QGpnA6ӯ=* {> գ);<^麉z@@崍lQ˯u>1 gUŽ 4.sw^1?ƍsc٭Z~5}tP (̲=_nf'M=lнsqp0mY]LA>dQ7nj qǮPoû2BjBL%\GeptZ[|僘jHK ŮwqBCD^D n۹ r_%qg *Ҭ3nJBFDŞӈ#ELKL~d{\W;^3Yobq^s57Zpd8qxXM.cFi襤iEF<l:h8@: `Dg%}ܧ[wH.l`z(#E6+48(\gL%"|I" ^yCf&)uJ[.O_÷dQޛrmͿ$&=fg%A*Ls7!Qv[4Z$H' 'Q-Q*rs_iU}g\ UDW;\r.qM wϸ3&L7.9j.trғX)=2IIkM\ĕKކbc_3W:]Rv8+ޝY@l'*&+G63-( lgv&gAWz7$En"qܨ3s:ۥs TCF:)0L[-VkRH+L Cyf44 Wcq4#[dRiF'g:"!dI0iO k 0?OTdZ7A& S{qCcA9d[M)HX8\yAQ~IfL&c$Q^؄bK&T91Uy91A X_܊̚$js3(9AABF LH+/Ӹ] e Ӯ*Y3=2˹S'Sc95ugtnkʏК}9hf5xՊ8hEH)eKTUt~uo»|Ц??JSY%w&wNl Sj$hwH.WՑ~cq:sʌnb1œ#|TWѾ9/},P&č/^.$u  \YTN. )\jk~_Б,ùwFX pVi9nM :qIɮ食$~yD,q+i$aLV~c]F55KTʒq<킍'i '{ vnb*ؼ5Uq&vP/Z2XP?jB)ߴJ'k1fCI1ݫ1 w`fHbŦ& $nMd65мƱ™v*A} WP;_vk[7^g93o}9): )P| Ep9R:#s n.UuJdݛH;jQ;>ik JxFaK]_Ge)fU[#DX9=xNxQ"{oѝ>'Bjr' "EHuЉQ5Hhct/^e.׽}.KG~C\Jf?A:PCX93OB"֨maWuP m٭b]yXmR)REZ{+v9mZ xOftVnbh#$[ac_.'ۙ>boa-fRUB$ $njo Ft;`ۧF@d+e2S(ˎ6Rc^e{q:oX&.1ƑzVK 1*O"q*Sk/Z:ތ[g#A,nIty^uTI VhU-}]9\N0 304f0|*Z?ʖڢ*ߝOf17<M ,_!>Gsϡ&xw[#^[5mf>+I#H\E|+E&z+( 7 'tTFNJSҼ/b>~a!\bĘl 7^F#i )TP+>G񉉴=g*@9oTt n* m.J Wuyh iՏěݼp23)bV-Ojߌ4E0ު;dQ6R] fx8Nf.\2hm͜5)=vJߩccu5h.gUk܋~ }ȏOAe(PXޖ[k'!HD[pɧR64\?wM(bX_}n-1)e#, pWbp6D4//(]by Kbr ~ #tFB &}41NE ?,bE"qudB.pym$ m$M1A \d zx0 oF$-`hAKk京ƞJ9 ;/̉nȂ8⏵>DK ERM3 `JR0(j҂q7 uSq;-89;+`scb q~trnQ {ڽvX,n=i*z"|FiZ e'V3nT D@Il4amŧjCj;jvYnIi,V`jl@ɯU o Ʊ21ͻѮC5EgXwKpCPrȊ$LhK{d_vfF3؀r5oK=0ruN|Tk/ & a٥Fc?@_v2q X 0KmgKo5nҌސAUe-_cT$l)eS3nOw¼*4k4;U!h"o ښ/̿#7TNpΰ ey.Qvw^T +Nu3pT6d rq6@fX,hl&Q,֐Ochz@iP܁Bmzs֠ >D A9pLz8Ig!\,[/ُm/H"Ul2ݩ~ qȟyM[j;HOP u,E-sDƉ 2> 5bF\!j<, zyNvx[E*ϋqW83]\E`,һķv_ܖ]7eK%Tw kc~S"6yd>IUy1c&='zNL^y-ekޤD]r| "#sޖ%N\Ur+U5SU.5.^WlВ|h)UgݏjlgO'rNe!-Bz.25M>vJк(\ͬ&>!Qj5Kt UX7eӴ7>MO`7Q>;=smw=`E#bp'-;,|?R4gZ)o/&[0J8w4JIc1e,.Yvˣ5XkD nLBj-WG+TtlA`3J4\Ra@q~W/Uj Mo{:B؄b:vq\lzщ&1 i:}9 O*'iM*S, i*iч HiFPL ,T6DaC_;u#JYjTVlH XE8 hTnK LAAL~>! `3Ϯqޜq=c9-d@Y=0F]ntUI.AyLWs򰰗ˎ T#FWey$NrP_Fu2/xB`= ߍJ1-J+Mb덥rO-I5iʢ6MCֺrh{%kL|?㳩bH-ʵhP ř-rK soJ2;Z @ܢt t : nWOzeeE-cm˳DlύȀkGg퟉AQ~6zc1⇎g_mƔ[0a1q)@ M<\ IT7bEMaԸZ0x ] uR;K2JOu*l(c^J׷ 8hs) .wutN,rw@*LTZ1bwdM s7ƫa ZN vj Tmz x,xw k#^3TdB9> ,q@=84IDt7޲БY *ZYG!Qe`SiS MyH^]2yc'BjsS3W%IPJaĖ JFH`.SQyƓ#\=]l}PE}H-GˈGl~4_ E:snZ~DP ̜cZXf&6v0AAZ*]/7%rj tst ϡ~/D͝sLn0R%XB;iB2U'uU?AU.)E蝢Ћ Mv^%s9<9}ה<Ն<5KV9IM B2 25}ԕ gݘp^|-0UI'Ñ9|^ڇS[%ِ&@7G5oP&u@A䌛 n'yJRXT>]2퍴Oي=R/M '[ZZ˻A8mq<,tm5yFN䓎TC(97TZ #(K+g9{G&ߚ39X,*&6̜=dsXJan*r^.&v]Δ{ .r)\j좥 pP$qpbT PZu"O{GS <Q,5>0)[i*nwjڼz@6EѠ;Io"X 12_0l&JHLDc)B=h?bK@cLEf.1-?L m GVEg XRPC|0ٺ螭02nr|<-G٘Vrk9^L5~D =F)Ș24.@jC{Σ82@ǏM'1Q+ι ztMGO!lG )~idq0[J靷CRk0H'$$?C'Hn%2<@lkVD/!`dZjXH>mEN"mFG 1T5Zg,Ê(ï8-Z`֭ E#n1\yGSQ24x/VM[G?ٌGYƤp *3г5!d"f",MPadƶVτ~D^0Bi0%Tm#ڨ4撐'%ɪ%{Ljg'[yp/4=ty1'$_?jkZThݪnX aK@QOICzC;z3%S).+CDV츯lܚ2::q- iKqE;T3T52wBHhAݮm'd3?;'CF`m? t;B1% yc$|WFqD"?7)),`>[ɤJw O߶8n7nNZ ZIщ7!V稜Rj^bU/"GhE7VLݖÞKshŽpiͷP<|Tdi;mjzhAX[e.vw1 `s6'V4^шo^@+Ld[-hbQU{AӠq_w.=l++$mϋFۭ6NkEيg[uc-Վȱ Niwwaǟ*@ӚXCa4lxU!t5hl}F*蔡19 ڈ,!E]5 e(aJzk!E_G'$ǁ_ 8J=!l -7HL^Pw~#eR,)AXC[,y#c uc К,8_^jҮ[q9OSs)K ӝwM :om?$]HK CA,umS/" ]qJ=S7&V \o-hlNeQ6$cމdqIղ6.;L^\f'Vs$ߺN4UA@*MEܱZI.EnCnklmlK9.aű˯a-V7Y ҆BŘ.I7{GH,P?vWSE >7]L-j`<71MvWiru{ @YM,#[S Qs0OY iQDh}85Q*\'luFEW{ye֫%Gfb=.GW:aE@\]m_#(̥}}Jj$ SꙢ?jHqt=ߙ$[! "K Ԉe /,%?2=zv=hYxE=!1}62v OO~lڌz~>>mw:ŗ"\_.`C(]h`hq!~X:VQ_6%UcAf{Vy?-Է p~w.Xxw?}ibg L{kG o#|wNH}!)fs6PSvˣ~>,F<KzDs^X撤>$K-1[vB3#WGv.KQRVN5g F_dU^W [.0L,CA'eբ(J3!_'&]_ 6HUC̲\ Jsd;/pXO=uxKB "? yk97E#mfr t:F9[,yAk)xgQCh=ʯy룷RSAgsxD̰U~$olɝl=qڎ1/K9?K+q' ^KT -(zC9<ڪy )Gmk$ŪVeZQm!H(DDu~)NVaL5"<4JS7h0n".S qdCJ|b5}s(('VH}1R4,fd6z+m0.[zo¶'JW%E0~?0E~#vycضm16ƶm۶;ƶm;|N]5=3gwEH$&W[F:O!Q_`|MPy@TOD>@KFoLؒ-Y97w~ 3s̵b 6M+mo4SK.EM'*soLop#8[k$A"ٝC3{.j*Z-ԧG+Fxӭodz ;DBwu>u.CZ"&RO}vnBʋѐ!3 ]n*conLu{Z8NW*#\9.R;.;TKLsǗjŬ:Y }|H#\]$s`PdG9$˯t ahhf^r|:MlS @g"9 ~QDMo}bEHD;E;#ğg~+ԗtIbt'5/ODlH̒Ne%YY A-R9ByZU mxgxvЂHś\mμ\QpU$^gSԆԆ#3_|wNj UUHV#7Lا38`%\R))M?5N +":FZg7NdYB5kq;0ڰԣ Ɏ0,z-x%LYhEPץ"t_[,p$m/wɇLndգA*PQO2Ys+3|roJBpbA$Ib>KYO-}{o$\1(Nq߶tScaך3jX5Z5BSjsQ#QsMIBn1m4ujOm';6̓gzdm(q ",=}kcXCi2}j Ug;|Q%/jqkEN~1v#I/uy-[PFEEB*nJK(uD,ܩ&ɸ?2o PDܘBSƪ-W[xKv@EjizyNLd]ȾHOS:nķL;vн$5{xyhBF7)dG!ľ!3]'v ?0'oJNF@tv;vl%j%=9ܟɧR)J(T٫tɼ`-Bw3a?Cs$-f눅 yeGEz ^r 1˼[_NM`ruaha:t͓)fAhSK^Bk2$ZJHWDq[fXi˹0%:1SzH0  >Ƴ-oӠ4>P)hj4&1bDDe94&gE1@;Q2a~_j=lwE 7[xz% l\vK@ k:]8yq/w`)Ů.Bnz}̼i Ƚ%6i摬儙{%RVc6ap'ږX(=w/bGF/GuƜ:^^hф5HK~\ 3bCc7$UB[߱ڒy_Td|Ð쉵Z{6+-h> {%heBWW md.^rnZ9b@]Pk!ߨ?R3P`RoшFU}|buhCb.bCW@rq{;*.),/U0!L2Vb˔\궄߾}uy[m6ddڶm99}[}ᓋ6I<<|f`hb?ΗHL0U faܔ3(pw _ںHt:9ɔ k@Q/LA?!_hI;dռ^zԾe Rba_UA>N tJ{?KD\YG㟿vQFPANW/!0!cy$@apc3nSayFOʳQeq~hWabw,#06Q-8Ŵvfh;cլUr;!o`2ALL$['Up }/|:\|B;{ur JbrߠCݺ«?h|)uD\ m Pvq"-G 'E\ E567 KrŴL0mpN摠bO*']ϸU`Xu*G+.?x h̪tDlVеN]-'b3MY^as=UDUSBRyuUyD}"v"'nVO'2SzS]@4:zdVvxy=.j~d\^yhdp =Yiu2cq?)Cw Hn2dHuG? 1`h_6X 3-H4iW?kESȶGGy]놞ȯhpbԋk#NZ HG,MTl4hj8t1&WZǿi~.cT.Pÿ& WATl;b =}@;_}(rb|G?>#θŲL5gD$Kl:,,޲f#20;6?2F2ϒǣ hEZ@7ͬۤSe(ݛʊ}5/1t$aՠƬ4nP]^n-b^Qz$>6Xn^./3UvZ>ӚΒʆl__P@%z%%(hn ֻr +dc?l, p j/v"OǝC/te.*{#jY[C4y5uָW(Gv`&y譍<=れR Q9?ByHDihnJ DHfb5gIZtrM>I\,"SK^Xv,òQS9i!RRaRA5rb/s&"UKk 7inXmN(qjzCb:^.C}Ót;M`pc#}k>^i=ouih ԟ2]Ò_߄QPZQ_DPpi2;F(wgk/XB52kRz$\[鞕jAgE/ʈjĩmQD@R v%ּS&V8-TPɦpr wh"ɻOiaT'_ 9䒯 wR@5L}q[zn/hAm1Ʃ5XA-vPoA+R`znR?gbWׯ7uo?$(Q -EA{| 4{(wOX.:qyx37YтM oK~ DFJLɯy{' l5,r=FFFu@?sмVy) @A d2peN7HE^?κ{Bz{W|*"w?~J=\R.!C.&v0N#x&A.7jltM1j #]q +KCV.5qQ.af 4^ۉ2x^Ƨy;֢Ro#(Hn4Ŕ+{ƴL'# s޿}|F+֏8|;|tM.Pj3"?5 "L/,C9թ$b0S]u s׉ӊE.pDtLbzL U fs*r8QJɣI5?7VZ t!cNw*Pym| ͓5 wXl?n; ]?P9}3e?_~t; l>[U[ꡑ蓶N;Z U.a=߆~5?m-gE(k-\R<.1a6%0:{Exloד:THY,$ CjvajsTa{'^Q !mar Z38rw=Z]-ZNT~3+(78`b5dd:- 7Ny0z?ܪCO{;.PΆ-c6_zio2HT4:c"5cp (cIId+2*uvp8^ҢݼvEiAO؋}W[ݤc;s&^aCP,z@חd=Jn4el?uLa.׺T=pv!6(\?:$|ew:n$}hX$w>L /IpXc,) # b4G' {VHĎU49Ev$QݐAǡ8Rhݱ]v@n٠Uez&mհKђ+W-`vhikGQRC*,Qh_DVwu"bP\Tbu^>NU&8ȶf3b-I* ,cys'Ǩ@sY,o~ O㬠_b/1EBRYC^jb9 Lh|r8Bx~nbcA/ 6~6%T_zT24QW2y΁6>f%{K #EHw? +ɵc_8 #'\FldڟD'2}hNĠFvĐ~ ;zC YWĶ1P(2kxR<PƵ@gO2 -!"dI6$${2ڻү*; cY({ϹA%](+n!8=./dtU .7,I}Psw`F\zP?!J^Z W+JvT)&ƍ6\h 5uhl U6u抋?mela8 *5 ŃO>5>e)X*&B+8k6u>xغޗ/-HîόTq!QuvEa&-typlvJ^1E΄7?A_v$:ڤma̤O{yg⋰k+DxkuYc]@k Ѩʂ=^rZ܉ңwk>|\i^z(8PĪaFM暦O~@>kzl7S-MmYMsLf _w`@sJIuX$%wY-{?qGQة\h]uݼSHdtUC-dMEqBD<}6HY;mUx@1aIdD##eC$'~q7-[0KހŘ &LczCoR/;Ŗ3@ءØ-7!L$Ú_8`' _@\B$E~w2q;U>z p?YI)#aTR9#`di{Jm7={Β,(f5Ko˳bm݌16j>1Ua;,-eJИ!Y#|ܤ1MϯS$ЧjM"?|QKԣG&z >Y+%v>~)3KS=L3ekX=ҍQAvJ'~:}+jtx["Ν^.w1_DKR?$ؗ K",&sT)'_cjuI(pXF2gEvٝF=RTBs [jUŹМʰf**ץj%hB"$zLlPGeEf%{CFoTeOJ^wSCiqj,A Tm9M%! 9xg!d{aiVBnQY3EgOS ,8[nԴ+/#<^4kCuBrIY@藅e3v4j4NYǕtNP_pF@w`/4aT2ғzOR9\h3ioģXH\ &A xL[w AٽJ䈀і 7.2Tp.J;CHI@)b7|7عo!ܡh0|k[A8znBYXX0Ӓ1P8IHVSC S)-X ob7ո3%qwܨ߹[E0Jb$߃⇥2HbmOlpWE-4)^Z31ʢÔiᛟЄÞ|b @0ϩ'8^ACݓ"p=u|.9h|`W_n /0T6-E?A7f5'f2l21URęz;Oo*ɪ5y 7XG$;tf,DQk5FqS৪l_-mj0֧-ӞG-<<3c~\6ky TS1wupUH#X*/v~s,¬&O VАY $SLEYe4k\_VKS>U`nޑp%=١W/9 i \7zh!F|=Ҝ@N6`[׃xn(x(`?fFXG© r(ɿkҰrp.w,7YrYYNut','/svi2?'7{RdQ/:hvLsWbʼnTߣB'tcY% L:&A#T+/b?Zqg "ZI_"DY/D@e@#M1n4,cٟSXn=@T})LS fU`iᓢRLI,kEѽ;MCC3q,C~dˌE̾B\#ać[Ԧ:.)Wx?{QdԧVzҙ"J.x`Y9'sw1X.5QS!W뷂 )]u.ٳ@4{PrfO:x]jkGk207]9 @Z}3.C_4 1HCp/t|uл+D^rutjsL Zu6[ hiJt!Mg:4v/>@iC"sVAyy) ({ GOEeU2]qBg{w3[P+çe]dUvܹI0DH7Ա)Z=:EQ tzG4h~؆ކ@U=f^lyS|W;͈ 0t A2F˦zP&? Lyˈ ('x ƀ;R*Әк-enI`|;5Mp0s舀nC>TXB`iWpS.G. -}g"WlV\A7ϐJj1r- ,ݿ!2bVĥԓw3.τ;@Oeckz[}Pd2I}S}G,|ԩS<$*S#)uDȏ(4|9E^&foK7zP%C9oE}*0 7FMȼVe_N7Q_I|Q_InоEP#U+.A:JLAVвZ"Xp6Yn̄sn5!wPd^戓oe[+mmaĺ:^rJ4UIY~bBq1و8OƣPᚫS$m,XoGx6k?.l3C?rU̔ō 2*xꚩgRڤv٬ e |48-p}?oOK:޺@|b*?ٜ~%.'ITc=}|ÊIyR)wӭ6JruA)"4s? MK[έNBJfO:M3a'4Wَ'^e())Moq%T֭1YX!{Pևz<ΝNbF#Vۇqi 3EI;&@rgSnEC.7g r m;d^GV^dhvKvn"/w׍DTX;xvg+Zu+r!;U_Lj~;9 eľEWyviHK2!cuY,Å eQ |1l\pi֯PѨJ,;uh4x*>\aII\ $._:~L|] rZB)>Lgl5$ IpxK|nТ ˞a]q"oEel`,Yq,!*>J{+7+t@6z?s㬄fOl%/N \ N/mZ$K1}x*˱[^\Q'V7̅kQ\ }I^p82ܼ Zѵ:gS`KܳS|bip mI[aRAoEMH/#v4bN<)GS`!hǬ49nfx9V5ѬO.nx(ZRh}":O-$U]Vf@P'>:\#p! s [R2+tR>' gnzwC#9'|E- S%E\aE],X-an2t2WF+$`dD?9sͪ܄8ݶ,9L<{d@3ԑARծ&,QW`nm;J;>P{BuYC;zKeWHȌyUW5#t⏫vhى[ΆhyUi6JS(s3K&iLĎ= LsYw@/QR8m  -?5+6 ('zbIar2xP쀢(]7FqB ILzUGɛVAƪ~]ã \Tb`6pWc2I?%fLr}N갴Jh9zD?Tox'/ OX*BJG{֔48^DX= \?yR3҈12Gjv!T3Doa.@jY̖Nڍk |4Xcj̯(v2YKw=-q9L،YYkxxdoɍsOkAu3g螟/pKV"C_{^WyLV{9ed[Lҳmjt$Z5Mų[ O|?v!j`ϑ'*,IɨKV.R&nnD=uqgyUoA%f$pE׬d:H[_#v)pdd܄>Z! 6{޹~een|6qVuA}~TJr! Π'۳a竇{)uA͜ ز;zēEDxX]+#!{U OTF5K:}pՐeK1;;Gk"c g-$9%~񞹑ҞyI~[O-\Pm]fԕk̴U {)É `OL?_|Eg y "T@Z|]\b03ng1U[~-.d4Ձ`޶1 c-8t0 n x{7TKhlS8Z|~XATnKw_Hw_zEZK*g^qAJ$8J 얍sz- 0-ƺ 6A«-K%W . 77nKX LH"@n7-ֶʍfze:̃-)⼤)^䍼`+`8S1pEU|kQ,Y-RJap./= FuS*uؠf7hU{NYX牾ށeQt&f#ڨ]5\HU9#`m41)U5mgRR!EoW;s\=\xh+VkѨR<Cr(A˫S9/}%ͩc +RVtegTI{^^ty*P?V~t]O\2 08XQQI#"2d8Iҏ]Ѧ1Jg[|#(G8Қ g.#htyԔku.x ޢ[TvOYne2Ӛi`ҚEM[W\NDEљy84y*$pb ,EQ.?K|TRx)7l-o(;էN)&dRE-3Z(ghBV #X}/7'A2tYq@om՗9Hq|;Ib{D@)P2jb>a vۆ[ƑzK2O7#JCa*~XƟ:gS>=q%~5M$̑ Kb}>N3-( OvE ,hW:puѷ?pʣoZmQV)2 V<]č*+[U{hi*YQ ёg/M/E>ț>VƼnZ4AO#Y 3V[%tvm`A }GZI@S1&828(x~.]FvHXĈ1zBJ=:dӹ}.p4=d@)߶A(eՎbkPu砺O+~>LJJm%Ba395Mޝ K6/T@{sie?{Q&wR2iËdE7}ֱ".!y@yowzPAGr1/d* m\<yJz:y'@t8JJIuE7Qzz|<>R52A&(3{_źԮֽܢorEiE%H IDP"]DI H $ j(BTP0@HB IH<ϼgZkgff(e_\0}J]'f1|d`~>qS'}|OG3q4+->8ݵcyPyCKfrIݛz9wmg7ʖnxk^iK̊UOuC.3 UOĆ,Z Pُ&zlm] ?zYϽ[/ZnWBxoW;/x{8!D?> 2V{KkŠ E¦S7\t#b㜵;/|r& #pK#o UuE?Omc{6jk V>g hYtkz[sÍj?lγZo7g޼7lf&ÉՃ&W;?WdD4?|fkzoefA U侳i![U5'dPzrX/Dvt8`R3*v#]߼X*y_seSM](wBmUwߙs\kύyl]yh=?b/.X=H'f-eG9=Cƅ_~ozVoh h66Y^ 쿨]sIhˣgQ_W>Jct8h./:#kg?{./]IoUlM cv1Z^ОP%ྊH焖kŸ;rKP̻z ^YN;w|+ ~RׅÎ1ѧ"L/|5bpqzp:p7PeУM ;NWot]_n. 5{­C0u!K׷O&uTg 65m3Ͷw9Ƭ[ ~]~f$|~+Xox[jԂd+Q=bW&YW/ˏEgvnɬjr#ncdC~}ZY|Ώ%Nۥ8UεѵԨAaewgޟ9W&lZRwŇNU҃هᶌ^{[K8jޛgyw5|d^i,sy&`/oMK5@oR΁7u+W/zRAz7?Б˪2ۣc=ΗA%97^׳7{K`/NjZPt蝷+=۰t،me+Ϲ0O䭅$U[W}βɳ$r2bF8Sc KqhH1Ƈ0zaz]Nqel 7n iGKl5fKg/ny&FmVGV~ܭ;CL{_w:+TmϞ_7LPQmբcc}7Y_dv\xf2[|h[onp&>UkL_+xNʱjLlP/æW*nL8uacvP_=Ѓ_U[j,=f%= 2|J.}  ^- fx79SAm躍|w a#({Yݳ&aIiJo7+U?rs~yW‚I {cV^{z_ދlM}پ:韟r 2q"p5CQRVϮM{Pr|<:x>S텫)Z{6ecGV8 ľll;Yه{MLúFHXdן8w'sO>=Œ_;ٔhbWƿ/8}~ll>} _E#i)n߷\A#)=k<*2mϾem=uDs~cSؐ!זK[~e_6nUٿ\ ['ٕ5zXANyNQ)Ai狹{K❐,.v>h=U6O:U9ѷ9~5<0s/$ 6}5G˲KNnLjYE;D8pVʲ 冀H cu4hz*fX/s򷎿un Y ja],z80:}Ӹg ۫N kC'1'=9!%̙r1wיdG>wmTG5NHZb{ix9C|iܣGR;Ny^o2aKi Fq_whǭ\(m Ybn6bO #W^>1@?{5\]X;#ϟh2UK3LX?v 65\"9=^u\2h&׽N Ym(-2]pM9z>zlZL9:`9!0vjasrwFWٓlh_$bWP(X 8\R]waW[S4{'T6YA 6tifQ'K$=SҒG\)v#LgJqpLO D&<";l-$8Q.T zu,#- Ւ<Y^E8uvMot J AUp{D6ӆE:t-3 rj0#g ( Dt ~gYcyK@^#Un {$إ3D99FiKҝ܌B][jFf*nlt4w*ŷySJ)C6Xgjr6Lmܜ .njj7D-paĊ thw'6blM'B>r>+}tqG@Ӿh1JXɬS\g&Ұ/i N_0jV~_rc 7̀dYjN(]O]y|kaptю|~[J,mQN V *a:D3%+t1/u9: z3zYS)!^8y@|Am]ZXLW-# |hwGuN?%Kߒ{&;n]jO&dFb~@ϝʙ;?]:Tn:<4pQg-6)&ED- RjVN)|v(ׄZ<2mzX^|zOn/&ty:r?ҮDHWJbkákH1 4a.#´XuL 7ptءc5nw""8"G-(3m3ݪ N!̟Y7@So:h5S1ɶI.tǔKRL)SS]9us6'L6c;b.Юr]._1 >>M0ъbHZz H"Ɓ0SuݥpSK\ +%EVh'Ӡ3mw}0lWǖ1HvB%2X{XVVcV[moRL:'<ʼn}f( Z8uS3kn)|)T;k>D?VSmK9uo|)jrI;!FUq:wc>iEZu{؏eh{2>XXE_i>!fBDž+Gu^Wquz.nkQQd8NC9_8 '11TDFHRr6ӍEfTBbDnv!zIxaq ?̷{xy; qw d3@\G! b~Fmע wh^_f:+Ēj0=*!+J$=43`Wi7}=-D2Hn.'>Mշ@@91ôlu~kЎGIax_6"u)un]_r/JSш]ۼZpPP@Ҡ3X|.u=*ѬN}RQ3&a,o3IW핗^\Y嘑ql'½"b6Ku0"puqZZG֫tfwNCɄH*I#/x. FDw̱W5q~q!OK U:xy}F %DfkBx ;ӂSa?A KTp{uqg= S$arϔ_bPT7{R%y,\.CqE!Ha0 |D:]Zn"~ օҙ?qHᶄb+j;xФ6S8ǏU{,za=:]eV8m4[RAm<;9 1 E݋zcwlfWa|;5yQ0Ŏw}GQcybϸBg:9nަޝr/&=_'nN_Y[Ohpu,݇s` ,762SYYQ` %ݻLTȷuVtȜR#9:ǂ%@VrWLB\Z7y☇%hGaSU\IS!/ݺO**U% ׄ $qYuӡ /5$fUzou ` Cp `1T ůl6?FAhւqix2,pī^[sIwYB7p'ϫ mA|jDlLUqMEjm_Adv܅)>EU7k#9[$fE2xݸdTW@t8-@Kh:hggr{?N ®h2HMw@3Rzh A|?RD% xp5QfpJVg(l5R"ErW뀐(\[(A-~RyäRn?[ {OBOY Uf*ߞ0m0#!AΥ#ޒݝ8 ` 0.arf~1]o8Nq*ʋ($uq\MR!bJJQ7 Υh~0XZyYkn=mBY2p),/^ݚMKf/&F&[S֝434qKEIг]c4 Pg KrBKM]!(_2zxYW4 VSw}d*&A:";$Іe X~WZ"@z^b㇗J-ݮkT _+ ԁ<~ZB&e]Rs_HSq^|FdHԴ$ 8L&qlsҾi1@P[I8*ңx3O*%fO؏[= oz7zO7AU\Jѡo u KъM\y;&OpZu&0݇2^7-qOSp53-ƔT,9^2hv Jh rqn;"`jFb:ap0y53`zDF8(?/qM{sOA\CaosO؉4t`(拰 hɵDR}~ $Twv.$R ?21Qjٞ׀\FOW247|t+uUy65LYϓЁ;9 28z%?_pR^ZC Q[<{$(b:Ks׹~b6oޮ$T4!o8~T +Z Tt&l{i;ŞKRGm—S+Z枚 Jl޸Pm ~KuEX8^@𿊢T%U4pAzDv-k\'9 MxVfU=;?}'EDm:+7NWa?e ][,P!{UX'KlT>YjMW4L :ՂA%HWu+Ro|-3 3ȏv~⛤ (~Vg8n *k3Е$sO\3n' o{~/]ʩ晳аR|%?JMnohNVm5SGy}/7TwVQ4Jv؂iHbIss"п,ٰrI kC=)(/\Aj^J-- 5(CeԴ5q;rTCo0wZ}g%X`0Δf:V^Rݐ Ro= [P>k@_ʐ]t[F j{Dj~-c̗ǚDfm:G5:7'nA ȄPSsS~GTufG!E4u(&ͤAS'DAt?6di0~"@ΈXUg}hPM$M-:(ןڽ@Mz 1p%{OYǼb).o-=in.]UE>d@Dݴ2eD1scO,I/z(LETIH؎Dr95_o9)uRتF^FnFOO>ejO|{ T|q-5AVXu!CYS>A"fЀ 6U)]ltt( }Qrf( ڴҚ L< {EEa$^F>96o?oh+n:;Hk~ %skQF&“xR&WFpLT]ّ¼ A343c/k$o#W9I %{FĹUOY5"Re5vG\1&zÛGQzlϟ̰,ぴ1Zn U߼NU5ĐG SMMigToؾ`HH#0aX;[maN47,FiVδMOLwK5ɂ0Al` jB iH~wrNlZ6#U=npQP v;yT@=|RޡJc@W{rY6L*?/a~LN]k/%S\4:$Aɉ7MS}]-AﱊtiW6YRVpjIC~Ǒ';R?Hc3UeDu+2#GY&^pmD#F6*_1eS7T,%xH_]tgQ| DY޵j#1#>NH U{7U9R 2b8E&C5%gM'ireQ~@T@K"OS)&^V!`wA?IPm gMd,# T+:fL{h)S3=E]"ŰEY9gK [])rG8 -)3E>>L/+Uϡȏاҵ?c#W@WL;m2H h%G$&u"A7rsR\7o-}~[/Jsa DnInRn0WXt8ӵ7~@T8V&y3ϟ&b6lozE>!2?i:k?2vבZ&R7.- ƹ.vwkքQɘO#K9fC2[a?&0wQPX3 azc#6zR?_WI|ozm1 Zx^N‰,&O.夺,Ļ350pW5">BGE#8NN:c^S׀(LU֨69C Z* [Ы'R%5:޶[tXrKshERUXTP5mJǘ%AmFq*МI0qW @#z 8qohx8߁ݗjL4#9IҜ+"}XPUD#-*IG&zVZBx[ms3zdq.\6Rߧ3`1sD T(| POwdP;V!n3țzþj;$# t[mc2%/G؊$%4.%iJ"TЋJL&'Ap9Jd?LԟO =p' =Shji ~1w߿l\99|Fk6eHL4gГs)2j ,fj{)߱>?Ġskz9Qߙ? Yl'`86N%׉)|%߀ا~ք}$a,;7%6"+ FG?.3G6rW6&;&~ԧDEq NkKQ[5?lN Tr:Ҳ) ubPqbߡfG_U;[JD9qVKOZ1 k@ԑv<*Z( U$EO(DU=,W-E~ӟXh nHߐ+O\;abS> "xy'"0 bQlh[?u1歉8U,-9cgVroiv+aFNݝ!ot 'Sx} so%YN}ΤJ ^'`ntZ{tNiwa OkmG5(([,Y~_{uֶkGr+U/֚PzX3o`iI78N8".a)+IeM)\WYf=)=ib`_볋ZfY. *0([#}Awп t~m?@Ģvk_VvL(#f44u[JKVжb`Qجox8x0IUXDLt9Mxy6^ܨ5ou[Wqm[T1E7ZM{ yrrE$ۉ1eDGD2\Kd"XYVtAӾ~,a O,C߆3ۻV Ix_D_ M} D@ RLB=dT*7nY;*k}- jt{YGGHrD CWF!=KwIk6${˞b=њ1dr$1T @盨81?x[?9m쿶G.f갭j'kD~ΥjЛEW<_\Q՟Fzg*wzoI\5jrbOصmۇX)'tQfEјbbGEvae^yҜ,w:i&$8+a.P=1eK-)G0%x[ۅLꜱ Ar.brnt+B\u}o9Yq;˘*<)6l|_M!TlO\9/ڢ0oQ{/"}j/N!%]Q3r]_F|ZO߻KtD~ Ӂi\-*+VoLÖ 6XF)Z2Y*3u</w sx8ZtC4}3wN-h@JJNҼ8Nvya\XLx={/rJ4,=/ dI M^}υRq%.ETİ&RUa-S% Z%cDA{ !,! ٗ';};sgt3gn>iC@*ZD3g'7-T~jٔdp?VqAPnyϢ~䓎_Q%k bkϕ׊n. 0~_q#} "f0ivLxvg\So%ㅒ0C_F/q]YoB`3w2K|uD  ؜ݪG4R^VWz0_6!qHdYJMvU|5ѣf֘VsNXZh,'/{ u xDJGy!ii:#2FUƾNa'SJ р}!|/&agb~qX"w34ЦΧ5X-3xCΑ)0O CZi~s.dWjU4@naćdGP5D48x"V.ΟBAn6.d`zb)!{{&~܍`R& \@?v:/&(LI(F.@25k7 vo!AυQ[Q{D]akvVMVZF(Аð$pIn10&c[B0\2uygM6>=,RnDlOKE[N~1mC]9E%/]Fp{casOm[^o߼N+bEiu5 ̆51ժȉY6ܙ6ӅXZ"Me0q_|>"*^J^Wɰi<йEz~(1o.a1\(mǽ;/=fx܆[^R]G(n>8 ٻ(ԁ0lzu{y`MT}Mج4 kK&L @ hG7L^d_5Q}.iD9~q2МG/*Up4>+E鳅ՙ Ep5 Ƕg\))Yum\S9*ٸfJ,Rܑ(UBUM(jZ\>y=i i ՚B *10E[>% 0!H[B-BDO֤鮄Xj{fCV&g MUgt%%^OՆЋ yU1( PaJ^:C!VTzc8Yv9>$ZLJ+=N- @yvוe]N꺣aNwU;x`4edwE葃~`?c[M TnjTC"rTaJ3a4;80 {媽fǿw0q:REyг.ՁZ7/, |Oܨ߫YѤc b~yQ@lqG]/f,LIf]ড়B%^Hw\_\5Z 6" jֽU7gf'[}!ԄJ&:z4#`ɖ=kr/4ߨ[VK ݖ^_sBw*] 0~Z>==.j:ݍ38^X}`mt1ūj5}\XldC~#6X O@-T1Pnm(]1տ0"7eer;<0Ϗzu>s\whWu=96Xw6-44c~}|"^u=(RfSX8Nru %ky3*,\5yR[(Ƈ`yr,rOAR#6E@h*z/U m+ b|˩N|;o &HO5/d!Ⱦ^Eեn=ϼRzJKX̤Zae+F곅YϸcEiaoܬrBiS]UQ>5?\J&SݽԳ-=(~//6wYQ4AĮ)YvX  >XU13=(4=wM\]$/τU,6d[NWV}VWqG#)jPl?I|M hXF4H27h'.-n!y [| c0q`_n+]afrjwㄣo* o_=.YQʻg<0m2f%@U L yں.U% ZWX Nh!m wc]ɖOSՇ8gqqk}+oWR}7R[ƪRM;h ${-&NwcptˏkB#Yأ:_,hrRh+4z.iYƛGRwzlmzuʂubR<+fM]蜤d.92yV(A}v޿a% o+U4-_- -STC%z@{z &/PQ33̷[;6,JK󐯾uNsB*G=;OM=Xu ddDK` &RWtZc)%Kv|v}S"",eV~I'3KdS\9Ef9 KcUu;pCÑjCZFI ?W_5׺gz-1k]Ut!H`N-a,v%{P'ܥ2ϭp.ȗzax֫E޻ҏ/޵4b粂HVxql(vL/ȟ?q"m5-u1 Oh⊹%(gwzL7sZxKX\ ors3A( hWq[8ү)> ۞Ak:a1_ȡsb0j1 Eh"O!S ៝t)߮ԉzͽ1)Eo'ֆrtːG%nufv~h7;27\³40FokŌ\[ +) 3"DB*''U!ڐ4"LV,ڂ'#WFw'A8O:Wȹd_gmR hYo9X4 ~yoV t Jw6`^~Ǥh|^pwUz[Sҳk. >_,|nMʑDe?Vp?EiǠbP.>(_gzm]P[GHLloA}/>OȿOXeGL_ᜉ&~("حU^Z4>haOZI\Qi09ѓcI]AznЮݮ? !đ5I z)r21WZK ޱzYZS89տ_,.kA-T3Ҵaϡwmf hܔըdC_#vN68:I%p" βaw)qi`^GdU5l-3݇QV[Q$8uw/wCSsSի?Mlu{AXDז rh$`Sa,vڝ>ٞ,PSJ&t@!ըaRpX[S 8 +rŴF63hp%ky! 3-% etrtT_s"%ŒxoYbos$'u 3-`Ǘ1Q)f@odMNţEtiM3;p*Ƞ:zAS\LCSn4D59!N^BY ި,䧦O`-L ]'c~0c8/ɏI>^%]"'.+h@HRTEmrZwBKuDe C!ri9CEuʌz7VjPfmLKiiOS;?|ai9:kCpigN|+wn/SHg޶iyek O{X!͂m0L p9m}0j)*^\c 6#$D0N72ӽdӛ>aQ*ż,=h{C42n3N 88*G9ZV\!pZk]*z.9o|4%E2L7c^le֭3x­3Xi}ǰ)*l#04(8" We~)KlӘCe;~J\+>o92|< %[шdp2ګ+s<߄LJ #; &*X}^)-H-)9WS (;v`u56$ᕫ(C&fP{,K(.ȟ2\eښ!ʖ? GJJʙт)ctHގi匒0{<m8Bm _П8Dcg T{T2O5? t`WqwOȵpv#f<eT/,ybCO䟖l4ËJqGsVNwS_2b+%`g4 J1]1tYtÞ_ѵ3>9 A~"]L 88U+wfp3>G00Kwjmh{%R}Azi0 T<5Czt Nw~bh JhƽO;%^p( cǗr;pR>zf;CJI9nmN;h< @ muI lCvcp˛kB'0І%w`nYxfӊ1)hRTYr> ^t 8 ` uiߍ+3 o)/;02V]>3$b=dUNI|L7 QJU`ؿ\J/ܭSl1>K"*\)S8)NM<mEk^Nfl9ۣ!_^e@Sp,w?=MhImAI:׳vml _2lS8N+j䄰:%\\h0ozd6h1rӛGl&.ؒwo } yQ[n{N}pVɤ\]~X S8#E^]=֣ILTF tXVuIeQ~gcf7shIڷ!Ǭ % d! 6#(wK殬1<ҸH$)X }E+1]t Be8/!@6F$+G,م8lE.XQ槕s&}"sz +Ca#NI"Y $Go$VP ˈBd8YE~W(E t? 椴,^`v@טnfn!j%xtã`ju_?i܇rs SO5F}?뜩4][xث b[?u?)Ipș|Un#:ť8|$yLO}'.Z,(QNXѣ'qS՝U=K`'lYPdIմ6b}5\yi}R</'.~ /ZXNAm[0-Zu&2 [2Boy\o*Mӯ`{ڕu׮f:ɘ|rk4r].ͥE~a_R_tt.c,WȖ2䯨Š˞QU\hK*a2isG*]Mo𫂍/X,>B~CtkGP:i3]% MlT8v/6]$_WELR TqQA';zX;~qK-ᢩMDL +ReRWHzcȽq3[;Y6g0H4Ak]GVr ly!H{x~Az rW݃2B @Teۘ:S u\m4.ukҕg_êU`~K7[+{|:/ϵ :TEIO9ca ZVT 3:hQYu5u*<*9O))qӼB "21+Y̥cdsc~uj.Wdb&׽su ;Xn4_Pc/~M5d,Mr÷ǣc*Ct*(g1gZBG]yDq;^W*('!ϧķ U &8`+L&z~XtK۫Qt$=hZ.@MNc@/ / [2,+A-Bu16aj,ZID9H9;SaY\ Jn]QP 7C_ wsĿoKȻe(N=q3zLJB)GKrr!H uwn5u3~7wbZcm\ p(}MYZPxEwxX9]a^=eGCu2ʕ$ݝ(zg9!j7Z[Nlid ( 5湃Gݺw#"u]Їx-Jq v)غ-R֤n;(||tBŠņVMb3@ ~˱)uK0nQ_FH;^@hGu^(>St8xJʰ즣d(Zx`Kwa$c>k+ l-3H37h+kw [ԏ,q [{U֥(0[MB^`z_+h&#L,;% 9y/S[)q:%2<Wt /s;rKNOmBw_{?k+Q)?//y+Z 0 VH" \cKt;%V ([}| ;td$| 6~2VٸV#XL4v{Hɐ+Ƴ׮Z{ch}"gtnҢe0qlVXA!Ύ4WU.4C[ocFTyୃ9@Q8:_(5z_}SSyd1)WD8ϼ29\,'$pzKب`'J-\%6I}Q§+AIzGY%Q6n% 3GkQD&)vPҦ LCSlڝnϋZMK"ؗDU0atR4s-$zհUY(fZySRzŀoOuxPDP& |ap=*}饌MY3A?`drr>g-[I;ر=v],bp Vn5N\Q0p]q}mbH?ۜ2PQ.$ˎi 4Gˌ?kpGa绥c!0ޱ$%a7ZR{,M -[>tlqoƾ:ـt w 's9DD0`KÐU{  JS|:z@Yz0g~M OPXNK5Oo戇m9oA y-|`c^󩽼̖EXvd(#0C΁ "J(?OΨ~ S"*I*^/(X?<ޘ]͘\G |AeVz1W,4.2̍_7 N#tt1ݰ55j*+rr*di7,K}L1"8 V_.%vY#/in}Y@.ᯎ9e W;'g@Zoh W +aos,;C5dh=9ğ.û;ڢJ ӆzE=l ȫ5*@M 㨋Ձ>yIds<&|_.ӆMOů1MQH|p?@q΀nN[lKoы<pvǝiġ݁SL//kYjGPKP2f2p}LHǏ\ <^WםluOz^\s8-Sw+ry:AXCo@~¢+͒x9`\,XNNQqeN؏L::@oIG.&c<]\Rۿ3yߒwG)rU&2( `nhu[?;峰Ӗ3~ۯMIq] [2c9|2. [+*L:`r'LaK14'vOE%K7vW$*,jKiN:]aa]G&fnyW|9kRx,?!+om;張@`I×FxC&130yn\\Ny~F8p mpO{J8 gh)s|F\R&|ַ gjy99/EN>u#ט <εC29a=^a.p_TS*+Q9gj.΢[gF/y!!yBo Qd剡¡6XuOągT#ΖPkl>MOI?{2g(2th`x4]Fz]JD 5y- !PlTNf\0oG\+M10G8r47e׎ﳿ;re [:KomZx2aW]͟uċ0%f/zx3˵4 Op1] 7z9)9Tk0`l$hVvzZL'exMgݘNܸqbA~o'1ҷ@uZnm B?ȩ[eׇ.ua ƣ* '|C=i3r:Qs:#R-V`'IM'qW3=LX@ T Z[jf(IjwE@. O~+Gė[NC nmI9\\G _~.<+WL<_5鰭)l>U̼YZP"^ܨ-O*[< @ˆ|*ک 3TS;|1W00t2Ƭޥub"dRIKSmI;]j-b{nmGOT4xk_>?&Ӛ{+wa8w잷s_Z?󥃛V.[HETDF5e,4Q/bHQY_gk+L"yCՑrt=O4v$:Y_{[Sr\n:V9[7i%i+#H@ k.+N+j6t[2>)oŇ58댪 ,`Gl[쌇 Tz9fU&ïlCإ ih"&&"۩lkYʤ"u 4e$#C5 l,uzӃ9쌯.KV'Xn 1yX OOfSIױ c%lo8]`A%w__KܛN|/Y_4+,D$d: Iۺ]A'+[ |N;zAw7tRc4RMyF·S?;FA)yVv+3DO'xdCV;ù[^J\|&1]h q< )c fXku- K˽ep 4ՎyuyQ `s,3d4WS=/=`ѭp܁DiT΂P$~fm~>"Ii:m#g(fSU$'Ca12-4jWOfh͚֔$k7H:D{^39vw87lN9ek)~ƍb>E9(S9𓡳񘭳 kp K"%^}ޟ*$fHcƫ(LlDXRk"g3NɗWe,IN,*^ٖyZ#fH9N6qk_* Jt[[wդ#auV7[xUFƀ0[7!WݛshѾZA9lzorS猞e[~G+< :q/{޿0W>3+Kr|K,6Ra%߼O g7'VZ-.aJ1ι,˪o {1ͨlg@O݋]#d|HL~C@m둣Uw}tm8VM68ץF83!ƞKKPߢlXC\$[l&ɻ\Ic܍& cpcU!g=Nt6۫cq죤 j2NS53uψcd|`FgV!faHW53}i].~H3VOO^rP2.кSxl}|;[#tX83O 5n4 S3%~A%Y:yyݬ<%V0$.1/} ed//#ޛ}y_,]CEV8쾟mFAf81&`Zji{UGͻ-khC s lGGmr.*O"'UY8e%J*go,շb *o4 \(:ZQq/kN]k3b˦6gf[[M>k$ ͢lHhT#|9?:fX:_s]$X.A93!HMt|D0,7D֠7&T7O{Qf3.ڊ삻3\A6]~Ft.)ӹU]PXU@o@`YX+9X &yV1D_^_wÕ]Rڇ,Yf|(1b-Dz(oEj#c̮sVs-a"ӓH]Fΐ B/Ŵ~ñΨC}󔴜)=^tmAnjI0:!"unʲb`v=㸾ZEY^e1br y;tF6|+lQ đ8V(+`#ko :bG+x޷ i}hN=CIht w[N?w9Ͼt'fGCdn!Է]eao2F;vN*mU>6X~=6q:$rIC:#e9r|v|8ԙwl60[\K B|0\K-J(V,?u]޶-kݤL[ͽsuKݮqū5}U~yJ~FF8c%daʱ _Ƙ$?l5i)~^s2s=]'sNg,HƾL2i9f_mp?[N-4&Lڪ8< OwdsI`=Yӧ HUβ\t<~Zº+c_}p2$IC+'c~a;3z0c{gcvM Q .?L9|/t|!m[2Ozx YN[շ -\y[ͽ!dN,CG)g2`m%T!M,[#R,ew^bϔ(^\r4DހZ ߞ<7V$DCj%*yK.@Ue|oR; W/%y#8kq]fUT8*C>~fMP¿IuԽ$=ҁx!Mu,qZxzf)˒|UbM9WBmhKDlZ  J"j$WMk4HrEmj3>2v3);{jSO4V(o^Vh?v[@<ëkDB o\B|.zӯM# "W,qo^%Q)xp4ZcƱr @U5ViF-;jfuH޳.JwH\ڑ Oqv4OY駽lL`' x=G,x;{S%Ž †y=ئMDSܕܛ[ U֓yȖd$jA 8^>ٚ ebW|t@~p^O*Gc apJ^ {m!|մcCEMa!cr>OLٍ4!JIyG40i<6HE-ֹQH:ۉ< 1 !s`+ŒU:9N%-+ԫ n̨;Z&2 V5#lk e-~~c*3;ėf%I-j.)a /^F@C|{DaϨa̐d,(1U]!n6pʢiM$Mzc2q"2AnY-F Def9!2˕r?*>jC)ٓƼngԪMQ]Cbq3 W̦aSkQ% zR.]%ѷ?%- (ZtzŎ}I xj*1Pً;߅sgq:b]糸U1OBY09=V.%WR"4ݧ &ԥչUtɳg{_q79y"cf\QuW??i4-?= E9*y[s :}4)P:;R6^%KT#4N=hp| }`J z!zjul QSsp~s+׈kį׋ 8t?\qQn(o٬CXYLm`b/*َ}Egvq\Eޭ/,֎67j)>[0J^?#ڕ.L 6W3RiG+_!:I \>Mݷ'|+ePWr]=z>RD`ЮvK*ާUܨ/kBu½jڕ9xax5ֱ:jK܎FvO`^F?5ꂏԋ5|oL'W)ȭ 䑨Z|6W7N6ӎO,POžIyhuQlZ{㈾Ǫvȉ^yq%։eT~͝WYb׫cLmk5mD_HGVEkTO>VV\LJrxk)!53bz?87=.J:92φ*L-GQ{jbykM0K&5s%?P[P+ށ]Ձ-8sȺV򸿴=: W'Zo6.I X.dGe2Z|2tT9KU4뚍wJI+䦿.nhqu >hܣ5.ھkTn7H>B>Dyѐ.hr[ SG+hM-I7 JΠh%DUvb@ 糱bL;X5#op?ץ XQP$-ӵ#9/8X! $bm!Zhec ⾖ÖDQ-+13DkR߂ [HΧ=T^<ڷ =+[|n6~|ԢJ+?njuQV7r3[|q&hԝ7<+ӂ3ˬyY<[ISM 篔}Do 7Mz߉jGpPujmƘßIWhJN%Q|` @'^% OlYڷ b2i% i9|k״ 1{x}.5IJ[U[غ*xo1:cTbG*s7Uҧ-Ym%iĎFMbbR) QY#aijX!_#djӍƵ~C8Cx g3>/MnD.ȥS޿JlȽ`6ws߶ͼlV=R,FwţUeNzj잓X&ˈM3#s9WI6T; qmq háO  egmѹg{S" zM̐$ԧ= X.-4 &?y1vѳ%z$]GгJ\8/>VaBM Dӎ1zUo\Y8vu^ǵ)zg ZYV&ڷk^yZ;?*L;ӯTFվbWȾu2X f~+ivd(qJZ(NWF#<^=IrgwH_m'\ӗ QMw$M_hl>ywv4Yp:7(W̽Ln/je 3fv}^wC_{ZXi( veLgYu&x fzrD4;{v&{zGq )hnBtR͢;n|v>a1oS =[!Wx <~³/zL%%ZónZ7vXohb5}hѲ^e\2U+>OHlcuɻ48ኍl|Hc1 qA_ȃrE A̳̠V~”ʌ]Ǝ7&=ˢmkC*Jxʳ';V kiad]$J₧̜In/a*-n0t}5ы#9C'L~di!f%4cJOΐOdƢҧTC'ay"mSf/y=QDsCJB€pX8]5HKRj`G tfT(9IOI= _:DBr ?rHq]==zfHjKaHPeWMVI4Ԧ]^\ƕxyb}4ў($67c:K >t#+-mG  bNw46ЋHE)S1ĂGk&*rRMӧa,KA%F#DJbP;M:H)KK^Uȱ%Z咲A-hti84+W2q0BIM*9NLNfq)#C C;r.u<,i\ Iw6,yBp6N&\I ůb 2>jݠa 9U9^$m[s%4vۜO0? y#\P|z l<ȺG4u~h/.T Q_q%")pw-2cG-˅5{gR枞3xԿsj+Yy]񙛣BI yUIj4v[w=%l$lG TmFJxQ]cq7̜}K汋DLA3|˂.}ZR[Mݣ6ɌUiS[}K9e۱o`2k`Rx4$x=dj,>́O-]zs (V {Jw-xJ?썒 f{Z(lKwCO;bx>rFm&Ԗ([`7ێljۈt*JMDZڨ\Κiuc7ƻ L2ڐY1麖)2La&[a!1 xLF|.m-Gs2M*3I \3I6 o ů&yehmJ̕ӝy}2e>AڣGX!Պ3/8tJ]_>BxN:d>R) ĜlN/1$u5D{O>()DKi;# yōLɜung&[]g=$QW39R1ClqksZzUQa;hk{gW%Z$︮rr?{ѫDc7Y懨β) l}I >&qϟ"å$ pve";0*`:|W\M%nwc5 DFn;+^r77(I1㻨(S)E<*]ؼF'Y=0oR8EQNg'ְ2IB'^V{6qwh'K]6[N? =B+SD` '{YBfbVC5c"]휇3o+a$ks\ UO{a8&VmuzM> "4jNfQDT;IpcoD iuy-eV#5-9r=MkürTQ/ZImG)S:=Pp- 'c'Q6(6`7l<">ͯ&gjqޚ4&N%hNKY.!HQS#ֹ/K:.\g$&[֝hw,5wNTJ[0J=6tHVc>д^ǣs;f||]$na,zwe֌Z<4e+$n I5~7& 1Ԇt݉;d&j$gʞ(dKѫ~ŏf=->3xӐl6|vzoF)ҚCn/3+;PG;Ox?̹$ eO?NbLֺS- aM5Z7T:߫O+4T{l(}];~fq)uDrM[pSz,ǯqL3UU<$nTk 7xhPM+ > 0{1,)#Mo7h\xd/UAߴЛ#?|9lOգvd*ϲ̏3|xzU0%Z3w <ϑ&CFxiYs=3D6EeԌZG5vc\\AQ!G)"8 ʎks%VP.᫾rE 1 .apѡSyMgF"UM͎P_J5h׵3I7ƹc y1Q)|a|г1T1 EEkS7%d& lLz\.ǕJpqv'QD\J*Ku]:H"1js ISZf01d` ؖHEZ*n0jz&')Cv2ʵju WW0^dIDs>ǜaA'5F,?,fYbw6џȌNZ=LTN iIYsBho]$wXTHޑfE[l5ѿބZ?C?M'5khGdCYa)8~LUu4}1tlAto { yp4q #䚱w t۝ 5b2"ƒ"W-fX6p+w8RA s0+!ǖr>m ۙsqtlU:UHx#܃6vF}0uP<6M.Cgb%::c.]kJZBVQg'ICAOu24@@V gU̢(yUњ6\yT~?)-A˔Hje#`Ը{zGoO ~ ;\ ?;(WS]FЍs 3+6]?'j^2zh4M4MVDOiL Bѿ&{;J9/ t@3,#퉱&I110ļYҴ|JX~^ {c?G4h: Re]qAMcs2R Z=kحCzA.?67͔l?M(ʟsC6$eSuI>e%;vb;I[RuK˷KM%zeVcZތ:WUyC+K쵋4<Ϯ\Ah{0h'-h4dAPȲi(jvȦCF[Cݝ]^.,Q5Ye~)$kPT9vmVTr#l_PO\>Ղ7\1B xXT@"AEO X{%9!i`M9qsq$=M@FK_N\[ ;_^1ps^>DcVx1ji$]x1ԇWxژGn+ޟPW>hw81_|ff78O\ΠmFAuRh1VoلGi]ꆓ;e0vXV̾-=tnLF7]iF㎤p.N{Fٶi? =P>8WTƆ˛l':S޶H%fsĿ^4ÙQ@CVw4:,GH0ZpHK9WUPN܏+o|1p4z86\k\U9e9su8bwIr;\CFw8%Rȳ/9s╉9UTj^8ο퇲VgEg9K%ÀRtF2M]-ְJO-fszӉW*i'Pקjxt^W^_cz-lҬץ[>CQR+#qV[-jKG4/g-L9!s-܃]VEYN2ULn_AϚRr%[DR͛ԷGe uz9KF<:-󤁳"k! kgZ@bF\-js,ouVKr5VCTVt?stvN-- uu+lz؀xMJc'X:KfÆ~"=JR<۰jY8FPhp9Yp<@q`DT lz!$ (83ϟy9TΪ7N44KMo}q36|m.u cy' zYwALu<0_H(Jpg)ᥧ|fvX"YXxO]_ dm5Lr?w#qf]^wa)me4oRb'҅~{޶g5k3'KJ8-W˳uϛ:u^~rJ~/|I 8w D}mv>E~!4S>:Q2f,:j:ሺ ?d{짳Cn` ACEΏQlCp| goxc/l2hCW3xMrA_W8hz_ ZǨB{ M5HI7]%/㜩7_,rz,_`V'qND9tfvxG%d'iۯ;o5M{ ޳>s2w*LiV˿#49D9S}t!ƣ̶(I'/4"86Z8ޱ%(أ3%q+}GQ'p}.-3]yˢU%5J{<{pyG+Cۊ|v+KNc7Йeǟ}"p)o2ӻҞleg_aAe#nCpEE޴KHj[O=lM&-Ư~c"e 4ech۫ZUIej0|HJ,.V,h%EaKKT¿ _} 6|$ݳn`YvjS{}7J‹]}G=mfؚl0bVǓYCCFU@ϱ|Tu"m q[Kv}ĥi[e~<.3iƙҗb[$3T %vE/gk/+WkK]C1wþ%e}eJj򌥪^df&W}ye.#dC*}H{ -Wc`ML>yCԱ< q9t5z]:c;XޤG~T5aʠli`-,xT":>~I3#LB~vo]RR/fb2jVb`!G^ ?Y0ZY?9dALiӔK UZe#25doY㲞e4[\/vAut/z;b<%oZDvt)hE um7Ƌ( ̚p´ޙp( ~ Z(arR^K%OqvFkFd̝UMjO|h@2St">ul?]+ql}LiPuj͏gaUp &g,%VL%h$N"пpEQI 2Yrg*GVߎFK6txU#i鄨ټIfX_;QA8Tl-|VݕUEEsl^.Ϝeq6w^x }Er{0muoʇZuJA WU A}P'j|YgԠv\=zC'|Hg[f=g5LJmm yHשC])ᛘXb;2~WsYN-e~%朥C%ڳ2u=;57c|m^+#kmM Mʶ'O0긙tIj2Wœr!:ۣXys6$}oL|TԷkϐWLOL6Vhݿ'ytoF{~f2&9&qAMcY˙dx}h,힁 QsI#'ȶw4?T:Ѷ߈ĽM$Tn(8N,l,;#sĝKDύm̈_Pb1c\ԑ6Nؕ4j&2k<*|ʑ]޵%ǖNlѥY+6rM\yxBRG[uKLo=o}Q߶|%Ex4i3|4{(AeӶGãAyC|/ dBŠ;!`v.)5{JM&Vv;k/^`5PUC;6x>&ʶvg{5:ɹ1sɥ]x$/`*~վm$}-{Oh@1Ŷl>lO<<$8ulrMt_ Nbߞn6a<3m,YSgڵɓ(V7JŰp[.k%3bvL+%deF쇦ɗ;rSf׫ wڐ9QJyڛy&Ww.qDJ꬈*1޼93ֿ0yH4vU!uǟd6F.Qr$%c*(*xxȅyP=s&Ms+}e+=(u$dA$TtqL5mĥENIVgzVGiFW/4{YV7nl% kF巒*XA?GcE['X^krz\=\׬N=6>7y?H`Gcƙ3%}]Diѝ2-j%61E+$C'I羚-S1&4`<"f :r(Yn^8.ۣߣcUG_.L!fHf6iF?j$gfꓴ;&tWu`C\֌kyVVlH"nXћ6fh:̧P V??smn`S.?4m[^( ?xa.{ʟ`B.vL8 kh @\9#~|ܰo=/dǂvlx &@_bbBcb0ay??8У?e_xE˭=[_h@>' 1a(>; GMNO_##\^w?s\`p`xQ ߛ=gφ$#C1CwG%8D`/ p&y>_7fkEL9{9Q(3?+rxssXs9N&?G19s|sl9~ ?M?G۟㹟cύow`tl< K`i\P?sHgZlA9;hXӡH"|!"B93Ɫ<\%(sPg+BKe.@ "esZs))5Hn}! dr_6`q"Y<% EUJd~%?CZN+a@""D%5` EJU٣Hڔ."~(#_ Kj*\eIe˕22@=ĪyHQMQ$2WyElQ :1 _D<4/Xr<I1ye>Fd\ AfD]ATZ\N:P 2*TQ bu*YmUB1ysUY ;bT|T@W(E/U(QAqdP\E'Fa!'gg| Z4`79䤜 d`2)|22R6}E%';/A.#,"da@NAQoZZj:Zr6E-WjQDשGTg:-WpBr;tE; k5L@yb!H:]W^L1CÈSK$'x4,F v#8-8~j@ v@?\_#'5_E]`@^)dBŽB(E_#a`>]PJTمBܕ VTB,By!1wNȽ#dC E-ݴsFE6 g"c\/!+Eķn@ E"݈/>On}eDj!+wF怢+dk * ň2Bf&݈&;D5(E_5T$iGȄi8!F&J QM5FMU#E-&E"Y`\[ E/Gc]q^1ZX n7r QK,[`7i }-%#sy Id 0.<A`)b1X ` VKv#\ -E\]*Њϥsǥ+v&@dc+h"na =T No-G a<؍Xt?,Bh -ܥHZ WA|S W8! `7+OX!/bwWGxಓZ-[`yb } 栦 aGGA6kBt2vXD2rAQ S[~W;Y`14klF3 y[؍{WB8֕_V@hy"!+V#d8 p%+[ Ђ }+.#Ö{G(W,Fv#:Z2bAH,r_oS\Qe*DMW#>o5@4"ګv#d֭8ڻE z-.i5@{<DV@b?2Kd(Gh؀npq:؍#+ZAt,E̽M"Ed^(bVu.#mD}T  yX }Lʯ&2Zz-ջI2|ޯP8Z"NL=MqD#'*juFbe }ňn@o%Hv Qa"F>,b#DrˈG vW6OW1pB+2"r;4 jʒ{GZ8֭X8im zkjpE5k q F~)wZp &t"jk'"Z ` IO9"Bw<ZwM| &w&i P!f?JϧPM؍}g^V(&{!S ,QaEт(RJ]z={~s9sKjU= g@ՖZA yw52dU,]U3 +5{|fXqkWqQEH-+Biy"Z[D!%]E+AZ`J~ W̧W%- ۧdhk%mT%X󄕫*CDfxce!HH|?lC]fJ! R:eC=I:vMaZPnuX;6GC+ekk@Djj׀H H_"Mrfx-_J|#8]Y)]RRS&քRsoM(.c iS6JM&lW~>ie>7ԂW Sjp_skAoke-|EFԓыԆHڐ'7Wt aڐV"׆"ԆcmXgׁtTRӹDfytY\Bۤx'5%pUBX 7օUՅBDԅ|Rp][9dhPKNzpR$ZrZVڧՃ2VL}ZK9!(_S6 CI9niݧ>GjEՇȚ0\FG-FHjIf `ȀyY|fj)r h%f*oq97R|CH"_6s!, AZ4;4HFH#H9jN#.FM>nq;b2CU1j4<9ni Qzٸ1Ĥ,`eU|2CHj.harM '+t5׈hEjE6"o5&P& )$Do 'e]BL.MlAM!Or&4\SS˛B7K׮^eDSHa CRqVm"}tv& pɅ!&b7@No PO|~7@X>qoҵ8 䳳ˏ%B3\ JH3 2D .Y NJ' "AVOCNZsHtje]y賛FyݢYҧtCIna""׵"Z@H} toy"Z@Td| )wdzZ@@}i _b~t/ηl߳ăUM3tO- }S~tI?i aZ-!.Ү%$Sn52û[BZ ǒ~%_ȫ-!"2/[69~זb ![d+\ Ol'лd$yt+Hi,i񝲮V?ks}zcPGo gh [Cc+-[CB$fV2"+#ZC\d|k(2Տ.25$E^n EpRdCkn5DE~G䨟_~σHEy"&σH<)$R"m`MyQ{>yPRd<&DDEfAQ/.W|Ȋ<-΃r<rۓDAN6pRtmr(.Ҩ D:z̷H6P^dD<<DȚ6M6zo qmaH-,R"BZ[(2-lo[Ȋʱ|Jo AʋDʶHv'ҪDDn"ATdP;-2Df"/HLԭ"[L]`/ #R=l)"[CNw{@δCq ! 2=YzoE6POP{=DDvn"tH[fE:wH6;@FMY|r";;@qnuYU!(Ҩ#i";BLEt"owȆ0QPdOGHV "u":AFy'ئ[dEt 'L'8)2 ot"wn":AT`'.r$E.BȈ4@N@"pRDFFȤDDk#'@L 9H0QLgHT 3EvHΰPΐy3"Ov":CFdag&Vg8 3D> 'EuVw"gvȥ] (ruap˵_.M9rtȉ'Eso].9R"t"ir6Nq#̔!)97B@>M+n"!Hɛ $R&'&v z<~DiM76=7AVMp@伮#[AWȊJ`W(/2'1BW(5BBduW)+$Evt"BJ䷮ϻbRs0\i}3nrfHfmc^Yyf~g嵛!u^~A_s^XRfʍ^NXHeen@ + |V5gYꥸKw_nr +ReKα2DE^5|R'd}׹VNdsnUBV֭(o|R3׈L5U5""_[_}yAVmfmx$Ez}싄YDVwX9"}%CpCT$|;$En"كKdKd]$sDκ"5H2GM#gя}^%rwrNH4";!ʽ>Gdy,9r_sD]"}~+QH +.ʷL7#爌][yw|z?7>+G}H;dEju+mCT$sDIKa_]"+}?A+}>G$uQ( Q.QH9".*D^]"i?V9"?"wCV덪wCRnb%sD9>GdYsDv>Gk`HY= xJ#2L9"|1+o爜9r]w=)dEAwDW+OQ|{>Gdϑ+>G̞)'zBT'dE߭L9">Gdϑw Z) "zARc/Ȋ9GdYsz3#rw]\r/DE* I^m#sD9"9嬜uDEIAV$>rsD9"I%Mo.}^?VN zCRސiEDzCT^#2~[>~M} :Jo<>l)>Vbeees?dZ{??J!Yݾ)Fg[I-f&/ͭse~Y9/Y/d_R//ʝ}@;L ɛ ZYfYGuB@X#*et+-|Mʭ@Bf@7H27sb?ck_s`%+rY?WRd l+]ARr~oezwȢ~oe-`s*$B5;[SklOW_#VaI~P(fk.'!I>IWʝr9V^(Եbe@YŞ[FjΏp)Xc0Qj:lj &5/ !ƋY11V #>+yP!-~BX ԧB];X%l͑B5BIbkjRf CVb@(]OdF{Xo mI}!\ AZkAPlY+AX]eqə6*1hп l͗^ddn0dd/*!'5CZ+\ (3n0ۚمj^ !g(o u 'e]g/F\5r=5R!PR!k5@D5ՆAi9> I̓r& \7A\Gjvek;]W^PMᐖ)Tp-+o^.5t8zo,pS!KWB5]}>!bz! ?1 um2_r}]$Wn"w%`k/TÐV0L-PoL9ĿkʍUPMPrz1VJo u9B5?9B5?F憑QfxK~#aԌ =e*Եt$d9²ߏ2VQpRQPL+5GAI6=VQ )T((/9/yk$B5FA\J'c]ȿs> s5ȓiz$Gt}Dls-5n4仲h.5UF{GCFFu4$`@q[ Ƚath(w]lhJώ{␓9.T.[;#e> uMCHayUqX(5!!3IϣBXFGa$(Y:Yo7"KGŋ2ϏXنg<qAV=ckOneV{ ƒ  n#gK|wc !Rw Devtu3q+u?VOc %a SyXHɑYa쿏c\w VhS+z;gBZ~ζxlo+{_ȑYtEtgʠq@^ #›A=Ϟq'8?DʍnU *+6b"'@W'@V]?'@u~$dk'BTUw"$D(*DoNay¼Ao&BFy[/PCfq@d㐕-3E{ou]$ĥy'!,o$Ĥ'aHIp$t$Dj4 Oߜ![|I$͔dJri>b"L ȻG Iy{!$]O>?}ONX9 DENH)i?2"wO)yr?ZINȊ)4B"@X_H;Be; Q_Z2㿐!)‹| \’S19 '){& !]% .s~&1|Ⱥ$E"ȑYt*䤫TȊT S!-rTHo̚ dKB\z,5;BX望 !]S)ddԴ| r6)>$ko瞂,{ R"r>1?}tAFii0gY416 əv4Hyc44[ )5Yši7R"%CVtȈ49[C@6CPdt̞?V^! !.t; HIM2|og@Bު=r?g`f@H1ob Ȉ|<|{~;_U_{\?Txrit~"COCJdZ4f9G94DDy"ej `X /Oخ[p+}V<Vf>Y}wɹ% dg򙐐^?rm|&ĥLH50Ah02 ;爼8rv&d~L(א'|$? )9egAZlge}̂j"mgAFrY ',8 7> JHYpHgBrBJYY z"W?V-ԭV^ ۬4X v^zX˽VX VF,ȴŐطZYb"|׾&fK Rv $D.YieK '2MAi+}L+ Q߁*D re]),u %ޏ)`_|"+^+VClCJ!ʐ!!>G-!~>ɫ_ѵVJ-V.+͖Ӳ@n\,}qf9S ӖĬtY{N eGfe29 `gH4}beތD[y7<\?+߀!+ހ/Vro@NrHRn9~d9m9D8#.ΰrHwsX{yu 9+ߜS 72VYnyl. H_hel\KYK&dDoBoB;߄ؕVzBW[&DYyMH\ceǛʯ~, ނTJT ނhm+Ir |+2,%7 d[X GނLʅ+!Jheɳk2t%Z,\ VVdWB+!rԏ~3VAVUu JUZ B=\{ c_V^*}V.~24~_Y6dZI AV^2ʻoC|-oCxoSf߁+wGJw >J'/Zdg[yϱ2H=gw 񼕵@0ie;zQWCBՐr"ՐojhejH |_ W\bZn d˜@u+S>k >yk RHcCʎ5X#[~ ߵrZ}hZlRy->x-DX件Z[/Y Vf첒Z V>Z }>ybBXoͻJw!B䀕W߅Ⱥw!'O>he߅/V.KCw+4" i2" PJN(oe`eY/߇hU+G߇T5+}VԲֶױYyw5ndkJw5r懐lj䇐kf·nn%!ZX![ZsD&}VV_YY!ZYg(Cr܏%rztRf=$:Zd﬇!ʽ!C!w'Cf+Cك!+Əʧ[\I!~6@v+6@N;dnHw+C6@RdF,lV7B+6BkFgeFVmx+lVlp_+' E~ɘ+?V|Vn2J#2(+3|ȼ :J_##Hĭl"cd_||8+n+M|J_ +2pD'Y R< be&$VEs~~]"lwVJoH͐iӭt >yћ!+2s3$yZ?,+m~%f̶r{J!'Rc$4/Y߱OkeoeVV} ׬|1DDv~ IX"?b+E?+%?R+>@J:׬r'ywee'IVO޶Bk2"Ry ߵx DҲ-w'ki@C+K@b5[ +Odemrt DmV+eBs[!*h+D:n@z[!!2s+dD/9_Yٸ";Bn~ۭ@|@"\n+3g $[k2'2%៬?[YW~9+}1+g| ?q+|bJ?Vnr"}>i+#|V3)$B5BL+_| Vue93rg8J {ƟAB+|MʝA"+?ؕVx,j+k?uV> "{}ry+VJV|V*)F6CV$sjX򹿳2w,R?Vm+?:V2\d[X 6Kc+ÿzV&~iY~V~V|<+}r[+;wdVr_;2+žh{+W~=Yi%nrf/!s_B__B\dʲ/!}u/>y|X+R+HR+ 1ۿCV|VFV_Avy" ˷A\$ "|tك 6%2w=me6Hle7Jr8mJo!VL#;Ho!q><+c}ȳ|+)_#[_`eB0`]* sλ !r.2甴2i$/uy)eeUJ?VYV^e. )wCz+wC!X]!.2ԲnԱnvCXdnH׳͏ʏ!J,DJd!}Y7( V"Y+ VDd!YyIYhc?öVvvVe!ʩ,:Z9;Yr$#@@F+@FdHdeje{~>d./Y9s/r^He^ti/dEzVFVxie^dBL^Hk}J}m>Hܱ} ៭r;!m娕 |JCir"=A䄕Q %2iVdA7+|o~'\rOJ wm/+}Ȅ yJ'meOP?AZ?gg%3DE* "V 33DF 3Eu׈9 V.= qJ!'0DΖs 9 IK!-לgks~ ZOd_ RH4r" DF/2H,2{~.$__ {ȏumY99WZJKZ {h/Uƞ#_͠^~=+ښG]M.rR"uGGJis"wDʀy([y(D^"F/5|WQˮO-[(E18+Hi_SJ_#RԳ$Dn<Vzȃ Jdؕ>{  z ">٦VX3+?P+"HlkqH;+ݏCT~" CRdioY䴟a+ȵ' ?ܧ_ JMh|BL9Y~le HGb_!%RWhկ+pBX_!#WtϏ.ro ɛ X7H ݬ5"K~V> ·YdDNۭsr"WVjНVZ.'!~Q>GdIwIH|p"Q+;OBFʥCwHtX;D&> CVdeo?H? |@ZdV_#RO2OȈ<'DXY'D>5[9'D.8Vͧ '2DYz l<VvS`_)b2 AJ5>Yddۿ 0J4E+P+OCpwOCJn!+Ro>dߐ7$2o2oȈ,5#|7$D~𣏲#Vm%GVpJGRdУVR8";pDR9r"9G|8GZ"X+q$DEqVfqD'XY^đ Gd$H?鈊<ӑyLG +tE>>ӑL ̢&Y)[ԑiRlcE)VEYE?o-ϊZ LR,ە ?o /Mg[ %9ӬT+H(Ȋ+OA1[RMWq3Wy|[ $qRbGt.vDR8"Zx#%2RGn/u0ʷ:"^̑ɻxJqG.sV^Y`׬|㓗X9esK8R[XYfq Gh.%7A%V*ሽ#{#'Zk%SMJ*Dpʟ~,%9R%T+|hAIGR撎H#+2wm_ߵYk###sIGS+g]H}fV]ܑJѯk+]mv+);"Z.+w[9sD)R#JR>+7rd,Hgw)G{+|VfrXy#M栕=Y~CV.)d4.HҥOZ#V-tiG䘕WJ;ǭ)#󫕽߬][)RƑCNGO+|)+w{ʰ2lճ-V2׈8b!+8խckX GJW8"|M-+ݯpPʈ+)W8bu,]ul{#!EW:b\#Tπhhk\4JG;tdV]42K +3譭%G^X}#-a[YUd[> &֔ʑ _tr;YyKʳW9,ʑ^trNQto2 fe^V9Q+^jG+]jGՎ^_3ʑV\YGb읲\\EYaAY/YX)ϳoeFYGze:R|gWklH#rg9oX)YΑ3ƎE޴5זZVsXi]Zbɴx9Gf|{V^/}hrGV,HmǏ~[e8_Yp#JkoۯWV8kDVv[kD5Y+uX)w#'RZGj:B/{ZGVdƵwV^%Z]?ɇ{#ruXikD:]ȉ=neuVΑ:meu0Ōl)be: ;Z)<+5w$D:}#.2zG^+cwD2wzGJ?V+;wl@] rFyGvVB5"wFXy#6ʄ#.<ʂ l]"|ףV*HraGh2VTpҦ#5J ++8"ӬLΰ2׏>y,+}lsEG9++:[Zё}J\EV^ɯYߔsVZ#JJ2JVjTrdwXiZo9hVG*9R']eeWeGBʎ%UUj+|Ȥ*TY+UqYTő[oU뭜[Ց*oLUGTrCUGUVTu$kɖ֑-Dިd]>Gȩ˖ﭬԮ46һ#jp[+/xioe`e^:Y!&+%BXWJ# ulgu9N+ѻl9" {+xʅVҤ#K}VVfdVvTwY#=J8+-k82OX#55V䧬,Oi Gtk8"td^R#HkVn2##5LH=ge] ?VeO>mZ(g zqVjrXkZ#~k9ŬL\`en-GB+or$.q-GR+k9b[9gXJڎVJvYRJ _SJڎXe+}k3QjVVvjY#Sʗk;YoTGuV8bMD8M 9-<^ǑjmeNGuVޭw=le[Gu;QyuVuѻԬҲ#q[:R=[בeeh]G>+Ow%V^]}Qke+:o'V\=G&fD=GxAR_3fAfqهL爎2#zF[9^ϑ9#r]}GQ+;r"cVHA}GtqV.oȉTmHҼe5pDI +8OZy'O#!L{G\$+HdžHφ<ББHXYjeO6tğr'OrI#ӭmti俅e7rDE6rEV4r$E2i#Y;aRcj}cGXʣqٍI9>i+dK8"՛8"8"8"8xʂ&Ⱥ&Nʮ&ȟ~>":"u:i%#.ԑI7udEvfYqaGPTv$Dn ;R"2=숊 ;"_Y>gopEir#*r ȃ782"O9V^"}^,B3GRt3GZf3GVS3Yy#*N3G\dO~ʉf4lHܑܑyAa2-Q-q--9-|‘9TliZ:"-IO[:"[:s\i#)2#-j+GQ,Y}f5e1t73u뼪Xt=k֩s9'3NYUgF%c2e B5/<@01ykВY̓#sYZ]'~{ǎ;v<2A~nM[\vOI ܤ䞃ܽICޤM]gCI % 7v( ߵC %v(y KɛKỔ%O}J9)!!u\vۧ䆃>%%Kȷ) Odyާd;mLIA_$q/SA^䱃|˔%>%w\vp{:䡃rJt/=䱃|a@ y {%RrA6䡃|!򡐒'QoPrAyI |, |"?sLc= %?"Q򦃌#JOWD"|DA+N~% <9IwBS$%DV%%JJ_TRr 򕒒ȷKJ.B D~ERr"4dN &\ %7bPBDޗPANB3 oM(y@AC&\J!C 49|?L(y~|}J>%" M_C<L" _ /OIAݧ߄ț)y,~D~>%7JDWH_ y~>%OWS яAکwE"%=EɛEBL*J|'D$n<5<"%"(}蔒?OJ)I>J)y'`bDn<NISJL)C9/7r)%;L"?RDYJ_f$DϔK5<?)y7!ig M߁ Mɽ߅MɥCFҔJgQS!QA}<4( |)y ~J?"?"~JgB䧍ρS D>\ O%K?@`F#O` ^ƊU(F<&Á? ]b,+++& Eg pY(>7rX._ c[(`Ji<ЅC,zKWVJ K'Ǽ|-SjƔ c>M I:KL8Z*ޗ6Y␾.)*)KjeB ۺIr!lq$M FU@VlJ>"Ы"Βa>B=3iHzuT3z:NDqq4G;֮0r;e>,bU(C#Yqd&Bg<^&DITwJC)M(my4< (iz8W}juy{3`U@OkdUm ,luXRKS`:]Fr44JRl*%.?QLL緢/wKeO,7=cHCӣJ#YNR8Tλ4+&c(O";;vUѪp%2xB[KFi7SIqrha!v(iy6"C-iJ=L> LX kجY]sr͊m)Ю|̕7ZV{ũT̢Hzw\[ZwÜfј/y=cֹ΁a1$\hB˔I&DrĢUg95?a^t=vyhX}N.>a n%Lk[' -ː6y kKsr2Хk^Pi&4cy1o슳cQ$`gYB+E"g0PEP@ZUR'.\ c^BN`]qe t \oҪCMqhPq#9ovnRE&\y\()3:j7)Ź,]WX":cΗerT㶄a#?1Jht=.SR(KWEرs$q%O#X7.CN+O3U:6A=,=2ZQ=s[M],v1jtA@3 )WL3Y7c'єkkk_f'W<"6=|\s'1 B)JtDpɐz섋0Q[ ըpZUT;ʼcc;3 s*Y3qZuKpUIi~͍UwZb)F>r<\tmmxr\'2L/:%>f Qg3Ѳip&pGc<aڇ7~9:fza g`&'\E,I,d#SS(ρW+NӍPqOK5WBV}#p]B ߲VsrpT:pO*ؒj 7Wh_A(Mk3RKT"gٙ@jp}EYxd _θK3qCO wHIrLLSc3[aĝޖ3.dfG;}'0gvy4HۦP ((=[iwʢoꢞM(_Hh=CVbvfgPؾ 4Z @ajsDHÂY46fS@"S$ naVvڂjL4jxPLxƘ[-`%PRq`q7 pdVn_;fzK.O;WMlbyav@s Ž! 6Wth;f̪$Et(l7gdiIiC\ClWΡ{KP{m-K=/^i]?7ywK祾uKi-.R=/vr^Zݕyh/^_nEuY^1/ʺ9"/,8.ܲ[8sPLFzL+lm,ּhUU*"痤b^\e5_^n{/Y=mgՑf X05f2;)Ehb1r- /Of=)LXs08:xs^LKGTjO L= U/[~FWՌ}މ;Љy'܋paŠXPgfNCԄ(ZN󭼍UDnXZ rmcgV(>XmFiu0psK^%={)<asoc{q GD=q1Kݕ>wm1Gx{XwvBq|TbGNcKq^ꒌVM6L{f$bwy!*Jp y5gm6zڹ.b`P,٪g\X?- 67fh>P[JuS-PlKܘ5Z XVgJqKpT y!X#ncbW ɩLsbNSU vcWBT\5\?۲2#}t=A/a3,] `eX(H靔+a? \šb,ʺw4Mnլ,`S.m#KBd[k7$'}'~Q{Te&z5,֛>g錡I+Օ*NB%E̅.֛EV%Qm>}8mސfu7O3ixmL~S43  :f[j?BHֻʹ"JġфGI=,I'm3~:m&ᴽظOB[$[LY`p'*zC ޖ0 uPe$;2R *px UyRR6~\'o\M2SL/uW='66SH~m|;pu|>76JFrjUPu:M1m\ $mԌZ""gxT%;adžH_,E ^ qŇU%~ ];7edV;GW>|!ԝdJ^nr. ?+8V0w:ޑ8KV#Я{[RpeG 3P6XE'ЯMu q ipi9%GpFz?JS9f}iJ?aIO'<\(NOS\l:MCEʒ"a2r/SnDu#_YsV\&ŞxJ1?ʹ G̴%iLv8Cl ]eI0Ӳ<¬*9UK'iT+2闹}q ҦxÈ d#yQjZTWs` EuŃ0jjv$wlHjHRϜtMSJ]/lǢ@ dY4LK1A~Ci Y8 xW)e ;կW?X;?w_UUvEsW?dկJjկWEO *UW?*V̾T?֙TaU ~* iL o\ &QQ`E*uTBS8A(M.Dk\,46aqD&2J1kM(gA-C$MWGRA(Xh ueK-o4b'8f0W>"X2@+dPjVa( O`SV6$S`yX $ H&* @F!,M'0œW~3{)C8;T--&,LH ZAn>R LT9َB Wpe⭐"P  lp.U ѻ sZmjPL3f6pĘ0%Ӊ#dsBcH|v a2Vk'G p S*bg.7)k .7aܑ )oJʻ˹pMA1; A3'In4+aRVYLYU{lĴS=~:h$d?2ϠۚAc=dhs* d6GaN, 3}6aXQ`*lO7h- V ͅLJŮ~i z!5l3a?ΘSwD8?,JI{6Q*Hd•s7A3'놪m/NS^ tǗ2v `,au1=L=,46%TEXKXޗ0-a -c2a -claն V,,XclaZX[XJE[[hPZ*6۶~B;n*7T]hnv_[=Tnw a [˨e~ZAmʽ;uhj/brۋ"ahkPhk֡Bjhj=6ڳTnEvQ]Tndw Phj=6ڳhj=wygWPhjrW=6ڳ:X:K"N ::uZhPڇ:mT.ڇ:Tnd:h}E5E5CtYBshΖМ#N; AEg:|tq[:ho颽.[ho#Nqh}C]~_Y]tt=N]tt=OP.ߺhcV=T.::uZ]tS2*]tcV]ovQoƺHEcX~{7Cf}8:}7{CǷ^:^C{a]%ОCڳz7C{V][{B:` 'Kt.O1vb آ~".]] Dܓ@t,F]ܟ@@/Ѿvš1RG [ 5:B.  y:&l^RG>'Eꨶ!-t:-tln yíB^ u[Ba 5-"PBmb @b 5-tn6:P3B` 5-PSBma 5-tBa uZk(kD 6Pj[al} 5-|gi&:oNZl5-tzBMg -tǦZ6j=FNmtFdmtFdm=lQ=ۺsIT;CZ6j=ۨlֳZ6V Q!ۨMmQmzM6j=U]2ldmzQFgm|Z6j=ۨlֳ.PQF6j=ۨlgmzQF}6j=ۨFgmzQFgf]=;MgԦvЍjS;GAx:i#6jS;M'kY:jS;|NA=jS;M6vPAjS;Aji;N;Sji;佃;[vP﵃ZvЙ}v}vP?Zji;Zji;Z.jiZ.jiEmj]ԦvQ?绨ֳz]zvQE=.vQ4E9GuMNvMNvQ߳.:+]NvQZ.jE-b=E좾g]"vQ߳ھ.j뢾gwQ/ھ.Em_toţ{롶pP+Cg=ԟ졶ھjzd'{?C{Ed="PC-b2{j'{C={o|[?ZvP=t6[Uo,(=M;f!{ C4Д@6qAJ6|8WƱU.q+LCRkLd:5À[!|WF\]1.W- e sQ0 }lgUMaRFRF &/*~Q5DTbZQļ[2})#;守>?ˢ9P`]yi>liׯ^gI&+vYruaG2p]Q7\r9*"dEFOnn@a-/p.8*ȯ+.{X*3(^}K m,By57 PHH nQPPCcUV'vP^:k[67OQ~5 R77{Bv00p(oWko™NK(N5K)W2Fu` *dtTba'm 8鴑xԣDyyċ顅* D SY 8֩Tza .Kae'(gc0#ylLo I97TA{)Rj쑩}kU.xyLdΠ}(i(B~ \fWNK6iܓQ(xYJgMK0懑2mp&iXs[RsgR;hBfoՄ|KPtMTG׳ pịRs)^ WFØˬNťd)8FmJPI}zХ]ʁ:P\c|c>-=y6ϸ7OJI :mB ~6jY5 \ݭ[xMV-EC{5VDx 91P筐YR2z>k򣽱xLH8/|(/ib!O."M5?G'b]q8QL 2n|F{g*|+}(/O ߯~Aj_'aăemU,ͯi/]Ѕ7l,nOURqYr( .e˅1R,,N*2ڸ3|Z+Le)WfpKWE2 \J0S'Ph&0z0 ??,ŲXxQaaײ:6W!E6qDjldsYx :-/7QtjrR70( p1치u -Af}ݮA&RX;yB|hՅ$qYh,otsǸd );Y@iĹh g9BCJ1"9uzZ<,NUC-)4=vu5 as=z^],M!DL,.wOE|O!SOϙ#jR@OJ3ᕽ E$9r-X'Q\(<%u)lfƊ%4#^:;zQD9I mJ01MifjČ%@ %OeپfRS 1!A8XU*A(V;u¬u|VICMF?͞1|1QYT >$83D;+B0aLK)q7ƱÅ}(/R o9 WMaYkPs ^*GnIUf./gaVIKuʔ?d&|*%p[<@y"BZ)IZ̗8źFE8qpRmRvv~sd5B&JY.K\&j1A](1ky Ѽa 1Qo-p7\hŢ &s0R6v|fY!Px NEơP5WF +ߡ\]o|OϧI^ÅTh4v 7k1E[yq9q *3* o(G,Pi!oHkPZ \\Ь* ?892 mUKe< l!gNgR lcf@"`a9~iM= vYYTd4{R.zMӠ+(p=RAұfzҴ pBP ԺSjN̴myb= dcGiPcw3j+c67WĀcm[֘* )?ӊU|npm ёW9)8jU!xpJJ>aU/).9⸺JTF'}c\8ާ 3 a}Ǹh.|Y5R) OL 65G8Q=0` ֭ ]Rgˆm,1藥88aEǶX x lHCN|Q:Ow´(uzE)Sca6Jȸg$GU ՑZ`@&Pړf:1biiԦ|\1`]4swz(y"ͯ-k08AE)#w1Rڕ !HpaEڍQ$$엹I\ `,:Ln(4UVC9=Lݽl%3W =Q(:f<g , 9@k՞gͦkEr7jƞ 7L==j ̄ݖV_m|<T< ?SI*0ʝw2Ŭ~>X7HP9j,u"`aP21<[Kj"C!3P t\9̘p{-7zk h/v] 뮈J%WRqŴ:eWP{꺒zn{eJoy˭+ۺ,V:++K5yK+ݺ[++uwr]K+N[~gieyz; sfI6hվ' -s/g:O^~x\IRU`@sRZT' #bնq^=zq"Nԭ~QL(KTl?T|3!ʐU<@.L2ઌ|'oʤgeũU4'+G"q눥;ߤar3ƅ7b\ 8F l6| wT~?P {Q_5sN 7#,_oBHlVa)Lo@9&uo('f$'n'0> 6/bfӜW͈uR>{ĚNky#;)3 LNu:Θ@_~muι*+c}OLdOR f`ךp2iup'<*bIMմg(,G \䧘D6\y,Ez%gaژ4:_zMhYQ2_>eS5!]..qĂ||33);neIyc3ɹ<$eH4n](l 5+!4c6nl߄rPjw4cc)o$'ľ0܈aw䯱4U ]0 71@||^nG|j?"٭f-_^V]F.#);36U;Kr(WIJ~m"_TZivqY5K5c7q푣fɉW(iFlĴcy!Cޣ[KV|Ҋ!Frjkw?"VrI+ kכzQl o ʹ:} 鲥s( DB#ݟ^xYTM̊+Qv#z>9a\-toɾ.F,6?aO2uP<ۼgqF|=Q|r}?eaS@ni:ajd  6AqS!ɋ )8JUyc+q,}&xkezR3{δ0gNxU 덼6yd@ofS4鷡jMW mvk#ϧskH#2f3 }B*wv|'LVPd)xrӯ\^->֝ZwlR8n"}Khgg<οrm%Wv$*•k\h57:ps_aG6RiP驋W6ϒL-?hTYW6,ܗ2ϴ 5 zS,/#@ŕk-mU[wYe%D2z/ezZZش+ Y;?Dw?f]\qng2yTΎV(w؃ S'?-h5nÕ',sfXY4-YȜ}K1 =eqcFe TJȚNV;ח`Ӕܑ6+A55a7;+aWWge<"6Iw :* 8f7s#OanON1xpqOA<%ͧY`|9jjmE Zݺ뢎 V7f;{ mKOGnutG{"^~'u8.0)o_I-=N3'KRTP^Km 7(35˰mcfX\B#ʼnu4Xux=ƆNPڶw8K z205󏒯0ͰӴ\.Wa›90eRJDAA(km5^ݴECj6P.*պQRZ"jpOoa^H5Yd|g?xX KL{vlxruQ&Q#x|Žbyf|$C>1!ç%ej@5C~k|l\ ȿ])IcMY`"Faq@Y< ̩}Soוk;2:C<8K[J >e1@ZDMDa:X^`'$/SP$#o]C`J- >Y:*&RCФ\Ϊ۶T愝.US9.XfcguD,W1==,@s=xN' ,`\@~0DR8G'}XCKƕ,2]4Iop\) [Ɠ6Q8im5RSDXr-wV[M}e>N:%|*G?yY0SU]eNsQK[6ho\([]B$ʓd5{a̢R3~+Y"Z1q5wFQa0уI8RIgO x#> 9t"?$%%lS1gz+L f&e"&%?KZ%2ogȳW2TojX:)y^yV\]'ҿ<]|cÁ슜837ۡ] 5kW)b u4ڧV#?$?KLks"9$M%~MUJ(P5 ۩]CIیxzi]%m !et&yV~ngp}JNX;&Mo8תWo׈ ;0Ӆ ѥVYЬ,~;h3k[_{dK*Q@X x=ed̿e3_2TtqCKOL?.1JϟVsډ~k\Bѐg4f,;? B.0V_Z$j(~~X%a.L\(xh8F|r|&ЀTѧGͰ\D9\I_ h+`. pzq$(X# .L],U 1L¨2-9S"a<9M.ǒeHt+v(&㷆u~Z]kBǁ0d=0Rg,\=4j1BAZ(vJh-nx%CaC#` q)p8)IpiiïDXB-n(B:b$VP^DJ,7))-]X.5K%chCJF+҄4y$RRpi KD!$Rf)9cfNR,SQ(P,WO'N,SX6|ibYĒIJteҢHMbEb(=b9rH5bi1b1BD" z&t:v7kB$!C/C'tHRHR Ĕ <鑆@6P9TZJ!J=C! 'tH p:-n<'tHsMF&%F0!AIē:$il**bW)*4HKPA*P#@Ei))rħӞ"Kzl)rHN#;ERuI)()H NAMAM6%6ERk RjϐF eJ #bòԆ #QòeJ/:,KuXRvX0ByXZz=,S|>,C~?,G@,-A F#U2ĞC*utZ\&V鬕uibUZZ\[_ZNCgBנ3Lk C¸DP >\ @`0 iY$ $UE&ԗ=H TՂx @|Bx =l uOr$݀)Lg[a1kН}{JM sooȶ0tY-2P,Id@:D+!` F_2338ɧ9y*諭n}ӕA" iyt[~ԦTep3~r~j?qa.mm;KzsW&ɘ&9CH ]a"Qԯ̧yd-oũy97o?MRDLw״?[u֦F}j.xq|>Y^LJN|~i6:+1 Lwl;*&ȧR8#g>\hA?GH6xSh|ޓ,9vW܈r J]VMҲ凩hX45HeԟQ&GK*Aaez m3`<'4-ډNwy&]l?~~ IP4[V?/i PK%WI&PK sonar.exe xSE8Oқ2={*&nVR 2TVZ|P!um zwuWWV׏+-oR ʮzcQ\(zϜܤ)~>=Ϸw^Μ9s9g-EyH@OR5 0u໅,p̟wYwn5w\ku]sޭ/('rurXtt0B/X:wB,Ά1V<ߕ.o~Hg<"T+"0D{.},SP BhG ہPr>|Y1ےڦtt.;g{Bq4E~t _mA4b.Qsac=%B,7xCsF5=Dyx4t,[XryظɖtMa0XB7Qs$oAL(6Up xi]Z5tD%+fL2A>7Ϯ h0VP[Vu]Sg~b?ˣa?7bC9GG:pRvϞd[^L+~{*]-)z ׷f9/`njC4izNZQ_vDEh6D;TrBpd!0yA@!Ⳇ8Z }ϱr<kZ0<6Eae-X^ao[{`oUa؛Mao"Vh{ۣomD a_G.Ed[s 6 S+B_K$hAHH J[rJP+lE=̟-x-̟z?+l!xmWy^a;?7}!K(x񆽣Xh _H1sI}H[}}O/Dx^^k*1[MCx]xm/D6d(j*-V"_W%H!jWz %6ATۤH{ "b8{/'}9{!m}mV4%1>iװ$ƌOiҥ,qfI-moҤSYM 4Kb j{&>ږѤ$ƪZ%1~UѤXRK&M$~MW}l(qIP&UbLqr8=B!L yDEf"}[D &RgHbT9@/ihLv:Ҧ|J>n'g{SOd3Tٔ6 %;q{7j ҾEA?%S#eP~_F>^ \b(#2N5Şp{'Q2# 6N;ҕ!$:'!&hBt'l(Q3芷.ㅟDEsl2NV`u4AhiiE۔gCɧz_O >ykXvCogLjԉ#_;XFUNֿ'RNZ({/1aBA倡Tfŀ_zC@ͭ~чhW VJ̇ )v SJ2!G7IwI!dz;) %wh6ېT$m6 5?>[;z.5tZ%Y"6[jh5QY뭶!_"kņOdGw;EA5&P\A5(%Q_Q;8:xFP@ꜸpPCu!,%[ ݱƃx^A<WЖj+NujA6G@&R;9H."vwO/?!FTa2Xx Q򉂉wK-;*>Ļ%t[n'8h';5"OUo8ts($SP~'ٹנCDZߧ~xiQ+ M<1i'ޝ^'sG~ϻqϛh+;i;;IbH>" H>n]Ou}sa=ڵ{j m<9hC`-Rl,rq %z84 7T#[F8hhnCɆϩ8Tՙn޺- ]M;|OTZkA̬S6w.2||Nq;5S)/U?5V;:]'e?E,H$;Qj)vhsK^R]gJS/hӺ6+Xr؁x|6+޳6J@Q|%BHgy[|@6yxg5px>hU:B>{o2r۷`'uN &,-BN)êXl^i . (~<;M/j?in:tl1aOFfTf\ hG7g @u/r+s2tr$ީPO/HęTuyvk_ CͰ@љ):Ó[[0J{{x82N";B5Q7yWhР 0gU=f=[O\/VY̲AE64ˆQs-lZ s;̲aw%^ڿwzA8B^hv7'_M4{i Jttznzˤ4j[0s0m7Z ^,`waCwu|[m/Dv5D(l 6-go4ݡڱ&ZrAH"jI1Kz&Ò&giSl(vٙwɌʥaB(P4 NL3Q&8LD{6 F(;,ȊCX|%ld|(MU .b )u=^?\t;17|e)Yk3ӗNg͟tzm~_P |aG8wB6R9mH-JAZ6<6;d}V-B9GP!6 zXҮֆBtnM ڣ Ѯ`Z`LZiYV< fALuI-) Sq+1l#ѯ,^#U[b+?EYXjsy$w۽e(QjB,<{Zaх+|a4Q (A]xEsxGhM_,2gG2ѓ45iĒYeʜp`I6WڞTF9ǘRDxoiy耴>FkgAuH2d*t^E[l^,0g,|'S5 ?o qi4˗5ۈaM85j|Jgzay"̴IS#gkdvS1JY+Dv="z,Jk2(3"b)oGK$p§w[tXGX yRda;^:))Cn#xnj> e,8Je/Q6B0dO,cAV?@]G˔(ecln x!J=bQVbv-= ]E~ނX%%6 3E1@iDnٓ\ATR(DQFԀt$}XmE(<8˅ʄqmX4uPրEƯu Bec'BV/ nX*bCF7@n;H\#޼&Q )fCy;1%~fX1??<ԙ@c٣DoĒ-t>؟/D~(*!*xL"]iu4ÆDP{&L瑔A,79lƄg:PpVIMz bt.W֤oύ{%'ϕ-!W,RX$E=iZέm4[nPI8kDn&(XF(MʉGFsȣ'ئ~ru"] nk.D)ޙ'5ZS(rx)|Ӑhg HW8N^|pɿ^:߭f ~K/~]C)1RV$Hr;e ^OҏhOHT)?R-I4#/Ac,ӳ#ٗRclwPn!r^*Avx,:{4 &xgр|,0vwN݋ⴷRMd:ȧb[ds|[YH0e9ɥi GF0)&G"%MuCO#RIςRjx~]% SvG݁-;օz%8x[ꛓӢ.3eB$T~Ta]1Gh(b13 9Rpf JDޒ,~MJjMnM[mwC*iS}\H'rv(fD] A̞x>ڜٱxr >f]Y/%7ȹ m@ ҩW( a0(nj9ʄk'JuP^dG"#hx7+2E5DTBB*WI%sS 2 hk82 0C p$OHkKe" -0 H0df+" Y:ᤒ/v+SX 2gGDJ uP .sj*yAU*PLi+XhAHԄ_T* @Me9οkʃʍe=8<.=%?5'Jg@AʣDLR~jj FәGs kVL51~n9еTm-ik4c>Tr d*YQ1j+)T=1#0 8MAJH8'A_c敖d0[z+Bl Dn4+HzPrԎ[nN#(>PPޥmuS.Yڧd}P'n Y@ih#AYM߯ArG@>wMv; ʟA(V@ mtH}? xb^v]7ʭF5Қc 0v0 tĐQHQ]QIm$8jr>MCK1}'2)"^bӬ襣 ^v9 \"jAbjM\ ĤU1B_taՀ lgGbQ]@=qQ]kعp G(-oKYIJ:V`[;=S_Њ}YuLi0g '̑cCv={Gv (|ܧ\GCq;3l/RIVg&+؍jSeˉcQ(׬n)8L6cg<{`CSL/P.crWS^1(:E1Q<1mOLp麮]f?X G5R濥-(MȥIࡑ!c۴)tҭ6I ОP@=8!6(Sٛ1q@gKo88Qt8Ŕpku>9 q V "? k1Vb1/sq" qH{mHunT+鵔A LY ši? (jӾM Sޒ|ܕR3-Vʼd0-ȍ={CXBtoB󥒃kض|Gg̑|i&=r=ZV[_$Nu2BSI;o*V{Fg;QV F2ëh]0oG +ҹr\m%=s?đfpß[(єc>~g%̩WaK\{]v~F~†R>*TuRɲA9z(簄jI #5DpW*RW qGr"lEvޚ9'm5" s#֪.yj)Ը \`,zҕւ/1WKAv:'AN.hW'7/0y0/*DuC1h#YF ;QYIטekPj ePU%&}V,n[R|e*)徲- y6΀<}>j^6/f͋irX@a׀yq!&4/r7wDyM *!TҗVl4v=5$lzJ?†͍ JOL[&^fhl3pm3'q @BjW-+`WطMACS5슽Z㷠k`W{5îȾbJj N0[Ժb <WZ'0рM yԮ$DCOſ|8ٗ2#kAQ"C%Yⷙ6ej/Ifcxb&c:WkZ0Qפ]A.C,>i]8&b9$0ڌ%7iW;m;BtdRó#qkiG:B#IdDq OX! +ŬUڋN Qm͊n6LKTxipTx$[^X2tNeJGTӌuDY/4X kH+jbyʲpQˢo)—۲LYIV3, We, _)iJ Ӿԕco ęsq:]I^HeG|]'[y+s2 %b-̫o`2R{ '_xI.[O6ΪZ9,oP/:j_j=PZRJ{KMg& ;:g8HdOhTr B]1#H$pFe'GϦKʖ+`ݤW'}[G"i;PoRМ%8Ĵ5P:;?^087-[ ^~~`J.y/KV[Qu8˖L'4xxbt"}HrOɪۻ%{^KN'Qv|Qmw s7"؎?_hނ!8Db !FLbXy>'^<d[ULl^oH{V\M> `s[5VL4 0P0`Ny%I..39"m )0}=D3FlU)0ͷ=2gEeL ̣)000cXi0R`&00Ofy YGE ikI1Q`4φqN3(#t~ߚq a0=`ˀ1;M##¸vT:YBQpL@GWBlϞW(nىw~~FVYf'69 ׊mߞڌ,ۉQ6"!?#q}")I5tLak/lՆX/л q"i #\MA8*R/P=庮k/^{V?RJ0[J؝ojfbkeX9#z+;x?]P\|._2kK53ImhiCg~ 3 REKiœYjGaZ6"!e&Eqk "|T3g>WY|Qjg38OB.ڢZ,0k(ܸX9 AMtNT |4x8MJ 汏42JՆu<6U -Q['gn";uamv1Gfqh-oV7[+Goh-5lqל-pG;lČDmA8G^8q2HS83yCul-.&q+-3 „E?8cr/Y7gƥzg+odSֺfR*6=N@F0Ij9~_`> >ge/!8Y1ulPewX5X|}0A:6D lbH8BÊo#\>-^ L}06XCmnS& YZS%سRt=o+s޹6 :BKJx|+vM1LҿQ2g]Mt(:mVJS?Et0|,5JLѭA&+Σ%g%TWAWΌ忓B9q< e:F*~ù?rPgL4~k(Φϵlj!-fڹZ986YoeG3 \etr"tAXDG5Vzj7\cRRN5VKUǵpB;6z׿gZ$-ڕ=oNu(k!齆kڑ8 aՀHS@ZjCx-Z]WƑUG%rZaB.CVpvxZ)]~~4 ]?ڳʹG8MK˺~-(-l2SgQ Xν޴@Fa5eL]"3gSyS"ntAԞ l c'ay~Q^c؇`LZV2G t*f%LY8^sBVrx7wN$[ԝE&A8#lb2$a|pgjS2LX-g6j`Z_`IX/M[𲻀,ۏ αqdxP^{q~u>(N!f>kGbTvh=Bg ƺIAf20fR]ڼgs_v #V )QmO-1C2҂̶!9% /?6 7m}&S71!z?<957[{itKJc9UMM`|җ8d֜I j6\jQNghzd\lTrB H˂c BQھ?9t 7MMRIc..DƤm jRdl 8|ݸ.QN1:2JS1ӛW%B|2eJ6"{#|~)V`iN"w}m^;ġ'rvvf+2N]rk- @9К^Pb0sGȾ6Ҵ7f #!͌޶1(/ҟ%#/(gA u_ߚP2R|V( .tω?;%֗=8m7Z.O~_/ Ѡr=4 ?xv,K`4z$6&C%^},T~,hh^))ëQ"E#.,ͣ9@Їc0 # Wx DpDp+98AF3$#m~?|FF2zѴƏkrX !lNvvDλA !WAuXmA-TeQH,40u+ୱ 1;x-=K:G۪ǰsX[Iʨ *@e+`w?8[n>4 i/St/O@Y `u-ǹߎSq]~S@ 3PO,$}D'x0N\ ьzidh3+$MM;EGx,j0[HC1x[X05!ܬ(72j )ܸy|A /jJIKf6 ao\'%:뽬~SUmKiqv]ݧc؎#Pkgݳ#y1D(ԫ:bj%%"`\:$mQƭvQDyEMb޲bGOGTdl1b=1Gu? (K{ӏ7oSmrɺ^bJ޹j%W\QW%yH%ʻSě=1uJNh3W$ Z\cʣD /ΆcJ O;wzol2ttQsWJaS}ŜL:*D+uo\&-{N5Q:qjj~_Srsm8FTۿBQ61a:(=٪%l>,>W5|_ؓ )M'l>%}_f>6ofk\9.#31J~={~:ӈzģK^!0<wN5acL!:SRuST%r %<"2.'=S{2-|3)w437 'c ۼ+IO>*:^{Tk)oԗ=cߟasKz^+x_@RIb]2Fy.Ol`aH%Q8 .ܤ7$#m hTtzbu (y su}|&sg /]{_V]z B'0%W(qM :-Y$}nv<܇{mNdG-sȘ4~zE@-C^P_tY kmopxړyD}8−Ȟw\-%Oݐ|Am{H@I$9ђ뼥כ<y8nHUpd0vמ_+[}Cd!K}>lkϓE/aA݇.by%b6Zl%%P!~+vRS1dڨKH[k+ҮdX0UK樀Od_5ށ$#THLE2g;L/ Gc([8ux`x9KtzX>qtlj(ڱ3[vV PMk,=(ĥzex֣2ݭq7B(/o ԛp"WGq^R<NJ5BM%$< >gOr"\xu; &D37(׹B֠K7V{QF _[zjʹxW/y6!${8徛:Oyu6ux+%,S f͊8' =RClv2lWmBvY7&k/h`t4pIlVݫ}փ_{7ȱD:j !@>㪳cNJ[i_U;aFNJv1iR6QNG<gOr9,NpGވ _=zr%b=<=x;R\;  R%t 8W:+J~IT-&\FR\NgWXl^brӿ0|uO;aIM hXtrcXwDnm]`vեd9?f+e;){Jp3yTO؜jݘ^L"E7̫6~Nm(rLYi.? (frrI)g$qS f;<ѽuoT{ 4Fޒ0W (EIwpkgЧ/[2 RŊ;g7 {,iHyt=Un8^>t3"@Іg[O!!VY0ޑyjicM1H}KqLGD&aEݞC83ߎ/*e i7d +jQFFUs)iݔYs@D_q5gvSϘϡ~Dڋ{dE9_+ ẔjXƊY&lPlW´L8҇PX^H<(uGG#v$HBBG%ȁ^2blnaMTl>,=& GM  w3l܉ҮnĂwDt*V,Wǂ8l5K[vtC <+Һm7dW)saOemWg7\hf@K7<|lDJhmCfهPK[%=yc46eOnjٌ;Ҧ^N ~ڧxA Mnbq |G4u}""A|5[>Dԡ)x;6|RTKO"Zd!D~l#7x;ȏѧ#c|3|vT CO$p!vbP@>@CEb!)(qai1I޻i#2p8:-X:?p@6|b+*B1JK]Qd3Ԃw1 Q:(SwVF&n׆Qiؗ DmG-C,lS!@.Vm> Ŀ׼GOf׆ӇT-BXFeП-);ꐎhY'>UrPVʯysq!IQ& GJ P xW+ۼXH^.aUT"P ^[1XE TCWRhD I[DʱshpC`Re`GL(!M* )7\S$cحMB`Wy"cTA3P[Rgv` 5V:!`,Tb]@YS|UGa z&^&F!$wt}!'^8 FeꨑxrX(R gQ!ڵYlU攓i+9FώnbQ䨮k,L?(=3gy:iw}G`e{,;*㈗lQ΅A1M)A3 a~Lɮ8O^3FyAxW8)ƴBqV]K+3D*ߕO]R/đ'o%]t'5'*'n )A Zdx0E>PE:7*Oצd kJ밊>qx)lfƩeo77f9tFeVGnR-82L(Zvˊ4h0l 0ˀ29<e<ˢ,W-a @8~K(ꁜzt?Ɗ3Ki>f?sh?~E{f?~m"+A(> :q\BBRR= e UUۤCx~D ([fh-K6K% ÍC8+&ʟUꯄ:)/ws}՗a$m౦rN* -,},TyS@8;;9":?.2P?Z{I*_< ٤j1xMSC*RKO t%Nr{P4 }eO@r,3T:"{B^?%(;s1_4}.tR;a]mcnkSxR^L፟ng4 au#YiYʔ˼syMSQeꭢ%pxDu'.CGglyM(J3eA`iE'U`̴ o ぎ"DbrE" d5O.*tʘ/J4C:uYr* ѦKlD0/Rz;Wfy [#T`Cdv2||8m(ŽqgdCRO,=gU\y^Lt%[OO,Q BDI?K>5w@N}X4bS!:9t!qn]猈ʘ>!N7ZZ-(00'>m͛hA.jkxK} `M.`m)J9A ,&ޭ EJ;n%j$gOοAxs @Qyk "9lM~n:3m᧋16TT0,6$uN-j먗[tW6bO`7e}e,dvzU\=Y^Px3{9ܚ@M^@w,Q]g᣺ 񀴯;ݝyT߇O 4iyyv4\,i!S֗0n7wdf{4ŊJEGQ2J/Jϗрṫձ*}~㞦NGeen, PsL8y '4oݏװß{B}J#G8-y Y?dJ߸θK؍5DMӤaqM),B;W0moHH "T,쑮Qf:JI/z);td\̆]@ B3a]I? a\Yzڧ?ڵtv!m v۹*Sz/-=4W@<~/U,=e_[iB.v’2V@r 9ǀjJ}3- I‚Qھ*}}9~q&8Hs,AqA 'bl'2B R[ĿG./% (l%0"JuL>! JH>] ?#yRq_gv9$?~ѩ={c""gxvxyxړ|T4{ CY}t{GXX.AO =;d|^;O},%:-@"ß5 Xt=쩿&e80T.3b͍ފcu?d|Qgc㣨3]$b I5m jTi6 ` rN}jk۷.ZMlHJ.@,r0z hC%l6x/fwΜ7c3>F9J=;`Qc`ID,50&]&z:r$[܂ :xjc|P2oUj `BGPg)p-Dhҭ32\]̖$#bk/IqƵc^+ǯd32:q UO4"VRw,7OSo̓+8z+|+Bx*YD[D ѳus@s hP6_ %,&,2O+[l IP?#hYF72<<7䏰?`'v nV o?]P'^WIM:YoCYگ~8/$LqORjb !Gl(7J?h#Efȩ̠ǰQ%xS?:'PZkfdkFrհ>yQ_msfM/v:r t8 pC΍k(O_{rШQ7J6P5vyyLEr:lµxu5?I۬jYQfǸNhK*1m}heAB;a6s3|?>ZF@N ?˳F G>rP]}o_ l@:Yͅ:$€rkIƱ9:[W9$\]H 7Me@'pcu7-N)nugy êĵ2O'tp^WJGol-L5z=P[MXQgC1/ޔ^s8:Mr1`}ZœXٍk\)7U{u'xAf#4x&dPO ٠ָu!Q:kXjK' LhlgloQ܋rO~ĤebA0u}Xga-&y#_cwGoq|^3F)p`{ F+DwQ<06F M>Ѱ<aMe:GdetXbGg*a},"aF%mD[ Cb%֥ڛ^nsnN!ˆ-F'kܵ[k6/=a'EյTDZjc5{M{mkr'3b@)Sd`#)Zq]^τ曪$i6s V1 {N"ْj+}]c6GLO^h-3gCY~T=O֜(%3z0O.sښ ЗZچs W-i ZUnB4D7N&}!җH| jf6IN^I^֛pUZ`7 >m^nM:;@j*{]\\UxBz!qĦ)ikʌF )5:ٷrWWJq-KCJf!%l7n]Ki.e D+Jx<%D{}~6h `JqA[iq &0^F'O/at~ǎgSo+:oՍ[yTRYW-pe(2kt!Z ǽX طH~T}ͺ$` 6Xv=طLe9OuNX[֐:}VjZ,~Ik9=6)aF/DRNX8:1I!`_7N@{ĀκjL7yUA=0O#-Da98[T aISazoYV{02ŵmKδ/T}C aL8_.2vԆp큺L,53hYJye 6,B쌙@$2Q)ڊ )̊7U\oኚ\ ]n|ۙ˻SgC㬍Kзlr>JI_ Osyc4H{fJ&{dڙlO]yrӋ*^Đ(k/p!*ȼةqF;t~jq䀮;cwv3 tP|KD%ݫjr8gQnZnܡaɮ?{'}Bĥl±9hZӴЫW1K` Ro-,!=k2Wect3x1K%z`I4[)?!+tc{\`"FH'XZh`#1ݍ=KwR,$E-MdA_xv7/G5^}, {+oҝrȠe*&5Z˼3 ?(3/?FoU4zRq, d^?$zi琺f@فPp!=_QI;2I;ɧnd`9Tqcc%ɫU^H›zuYВ뾂J(Ѓnz[A(p Iwgm/dWEbLb`#;îy2],^N<0ye;/zd5Ōrnքؒp.P͙`àpV8wr{aЃrkCtaY0z;i`شuıy}{qtiB>+ݕjDžp쐤j7BR}[Y\ ʀG/ ľ !\vsI9M3'-JhuTPʯ7[]e auR.fL'edeξfA i>W}=Kw:[%A 2aDȴ=Qg9c6&W"[r=mGĥ8V؁3dm]Ր"*$*~C_ wLجg¾{g A A5+&t{6Qo_\uE" \WͅAe/,/a0[gAuhv0/&iҾa1Ӛ=\,㟷q zZgcp[<刓9`VZ\̫, O[NojVx~X[ԯKRkd^\p#&yeq,UV}.vq,pί"H^fL0|3z=:<Є7u, Ju#~~FB21|LCx݌B ioZA61˪YVjv̲㶲'2;l5?wK"-]PD7 nΉn܊lɊ4X$"lumإlV}#0nDe]﬿R)_<ѱ '`WȖ 0~Sm zSD{ r /'h72s$?t~hl'/ S<1`\v%9<6%obAG/Q^k1%Ƿ[HNIO::@*',NvNxY mL^^,A˂ْ x#%*#Ve5U[B-M/[%^:0dX plxwNRI)QNRrqV&fƃ9}xג{Ijš$ȩ@Ǧ0UvWH<ۗȪ}%aź-!UwXHЭozS'yDIpiҎFS /cX|Lk]6Plv<}W`by 2&p+?Δ/Sg,ceg*!Z0?< '27p-u_M?;RsˆI's$SSƔ^:x\Fg_s)wAGL>| mA٨A-q`sHƔKBocK.!$>MvV#$38=HoJI&!!3LB(cK'S x6ܒ#=<:MIŽ0/W^Ff OקwQQGWnrqg(A ^`&8O&uHWck5U޴c2E!pnx0m;]UڬFR #efsܬd)cs%D~j=4Ǜiu%_g{h$FqbNtJӿ ZPzU3LLG*5Qtu5(4ߤ1az x66xyD<)D 6>zQ翛zkYwIRZa_͍5vZ'#@x}[8* iffñ.jbc=ʗͯ FezHV'g_4bYɝ^o iʗ!-߸Y0E0Jy4~:r~mgR :v9!/xEm壶 `pyƵ%Ϩ]keM:^RéndFO|'?WOOp3??Ero1P[С У@=35Vѓg@~9=*&gTХ 1R(p5rӧFOV}§O`Hѧѧʱđ?Μ>} ǠSrZ: q:D85vIN޵ gBFYr(Jq&kWSү9ZW _ytm[C=Mz $`:L+ Y,_SYɳJcv- ]o: Oa@ݕ3i- _VZ3VwIfGjgVmij%]qX9( ҈'S_nA"Br(;Ԕ[k̻ٛ,/yu~69 l{+sbu!*Tir K="OSlXYF T4+ l~$~|*"G#VhJy׈ՂF/t+.>-mh#s4b=W9`?e뿛>>\k>SNֿ-~;wJlEJ,/* @%;5J-MQ7^f/8\45녬Su^sHKȼc ϟ^Y3O5[كcil7rk3TnRnG-[_~k*se'MkZ\l 2yW2}n4ʘ[J@^Ov>#q\Z|և;-c]@vl>o6 j}>ݛҞkM2++_KW@a9S߳2fT\}4/"7/X'r wN:A[枬Ȕ$ *ż%h.XA;W Xpy?.~ RěW2D X*>,Mh2Zk'#Ѯkx7FJ"aț%2B6s ҁ|ZBYDԧ廖m?RoOԐou(`2A7͌TЭPMi[B"ˈ)QW 2>a*Wj@oQFPN0zZE9 $I|1_I9Luwʳao2SNw0 m y6>G4"kœd\sa4ڬZ *pNO"@f~;PTL2Ub1_2Vgbo׵GK7^M%*; '$`#6:9#R5p0:\3m&9mL4g'yvFz;s+m% c I|| c:ÂbBan|3 !-[IYξ]ndB}0ٺV>cחṾqna $zsXńD.tq!qcn (^ƕ)<6פ +jSE- :UR Eʠm&NW'Vח|J=FD/] 1vu(BJq΃Ir}T< 5t8쥀n{JF3յdةYlG$+wS}yV8>g_;r^X0^{@oH[lԖ<%%ǹZ/CYOG 9T34f۲FRgkvG*KNZlngk/|}v/'3L'at ^"tk }(,K FX6<%8gGzgRC.s!4b@|sri{-+ca_|}x uъ\+x )R,v0'26v4.v}~ mz7N0f?z4+%Mi ѴK{\(4h8ے-ҋgut$x'S$ORn{NHQ6"VW%Vg.KQcuWIEћCd 'oK:ElVhI aH "ܸ6+~et-d88W `ZZ>wȦDWµC4  3u1N-hVVId@ 9Kxǵ"ݚ=M4i4hng T?h;<:ǦF["+`Zϩ h+Ñ<+Ik#+QZG۹f,kȦ~8|2k|f#281sǜA pMН`.iWGhTJ:LYQ̉iY8xo k|t /O%0D {Ow-C0#y2}#m  :8Ɯ dhr+aQ4ӵCGhxr g@;:)[b?5)^8KxOdDt󣀗l.~o%.%YvƓOBOKFLl $]@ヨ,ov3gzZ@FS2O%ڤYifGj0| f] VOeWE9pj7 u6kE~JK-6ȁ'ߌϦeVD x{DŽ3 EwA@fwq}}B|f\"JI1*XլKVBY˰Z1@hL;t+`᷈ݫBTt>e"Ngs,^q>=Jg1jB$[?cj# ;hײ͌^Oj,(P 6Ѫ(nFw[ԆAe?#O\9G5p΅>_8uͷ]A1[qTunODaKՈ#G~-+7u^kZƚH.zU @Q8$x9ǏU7vUo 5Mw*د{?q4T%jMe-Yղ?Rq.5f?H0 ؿ-U狋8 7#t&/?rIM/"36v?2[%F@stYX;]cnAZuB12(f tB;mnD*8ξw>1wzu³F/-$6p$p~WS}B<7s@vْW=7į|m<0jno0*p܁0AH=$L@-LߕIpI\k#YX$0(pO^6! >WyBB*:da$>BGqt1@](OA_f(OQcog/BŰFXwblH$㍳4$.?e]QFq]JG.{TSΉjK-5wMf*bq?2&%LE(g?ߓJmu-ű oz(q^2H:.֮ŭJ_\ۡr(Vp.׉V%}pZƍ? $zI"=+r8NUlY;z(1Y&O2y܍76za+ $Af&J rt72#ѭlʩt=v6n`;0]ax `LQj-V"J['VߺւY7b,de9;MWwpYNڴw;nց}"$>>S&=+G0T_0]Uglph|PwEǦTtzH^*.lRZԉj y|N IY$/+!=IRCe4$TY,qX2έMM{"K{Q+D7'>b8_3 ܎<$2#I:ljYFQյbHe35^F>igw}M^ЕW] 2Mƌ6g#M&_g#.=[&k3]'L4+֞;G쳱Hi 2HB{ͅ=3yQ^(bh>;>(*15ZI/DY_IOZJA˴YJD;$Ռ,/ࢬ!J0C+n)+J F! EقN%UI,S]ciVvܒĿ+ *&sy0ܒ#r+QusC8vrN@Dً^;eџW3TIpF[F̟gOˤ+B؅G .9JClyAGv$Wz#uS&dfZ }Pf6_V;Ktk63@DA@k"YDy3PcbP9B0ʦBF"Hq|},KJ|%5+@p2ؼ#k.tH dvZ%M%M2ˏ"52s<~lXi=`;HʖlU,_f$i3kثN *_{VtD;CtD;ez.MW:xI$+aTC ̐+sk?pM\Q%mFi4W(%~cLk!ƻ}n~eIC[?#/DZ!Ɍ;Xܚsir& vq*Ky3Ǯ ]Uю`q@}[61P;iԛr2L4D]H6Bi39]݂W@wD2F\멀6BOk:&xr|/v˄m7 ]8 ESxH,Mx9281W5vIt')C O Rzzbm{)E3KMVn#돳WN `-K" m +N KՒޟ:t )_Sp>ؓm<. nژl%" #K܃! ~:,^#w;-/luҧC9>^Dh!Žm3,Xr@-H\?f/ 4Y,1T7iq).x7I~5(AGb 0{Q@&Wf}m9Һ=G/H/GM>'%JA1qr\Uvv"M<6D4GZ6 n+Bf7w[Kϒy6gX,<7O~9D+e~@<Ĉ,{PA^,o6%JKTX0MHuv//&9|Ջk@ԓi3Q׊%P tdJ3rt'Qfag|lL1~p%S]"B?0 $n:I0\`4%YdJ;Wo9{{1ۻ=R"閔XZݢt4ZU")+q, +a-*Jut+$ &J";LrgK&m黒r`} \-/ .dݐ-=8V?%u}SRw9%T3{xSÀRLMHd8ı9=JV_i8 $ψq|SIrIp#aʠB/?[JH#DߐhT-+!nvp>m 3ϣS.3%[:Q \7[H?98vN=ְV!0HL|J~(hTX}[lB+$M ɊKV pco|˄# ǵ  ![%1jiW֍h;_Kȉ+TӮ2+J[%̕i*_7Shr]g|`jKMe:Wm;j?̛3[ k:㠌A<ٕ_H)щJlG% qCw~8\lw2Z DPf(</M*{ȑ^Bb:q6t,&,מD;"{0]76 :Q=~~bP3ڌP$]Ȝu&bBblÿ Jq%O`%nv.vO8̘(1ZT[ ޼p)/,Í-M\0ӑV kHb8ha{,*,%~RPxCx:R.Jjo~H@Yzc3Cܸ?DZV{Q5RD{3jmY\րǁJ67,ÛoX8_8z=vإ'*JR_5h5! OG]!52xvexz0όB`/n~zvWe\B'K(7w!OQ˕K@(T͙͋6[I QI\daؾ|w$=( dt

BXo#:RSlAuyhM;Bve6TZS<2~Յeu02>rK^u ;GG@i/ޜ{Nqq˩,^D[Kwp,5WLG|3@SD[%$NB!/5& !"ʮ,Wj]'j@1#!(P]J͂/'-4vEnqN'#e_]e9=ܥy'uiJL<._O6cvcvͅ; -Kpk,[FjC&*/L')]0n xw7ޞг4mBoQ֊E7>eOG$}$^ndr C hO~odV0tU2qnMg_ 3IO44C?BvZJO 9t!W-3~s7p3WB:9nIV + Wy;ӌw =B潙 =S:lsF 3,<1j*x ڜ? ݣ԰LMďA͋ڸdag3.=Zhv ԥ0kjd| 7}O{a:{ampb8Fos&\;M:|2`Dj%Ʊ0͖?df[?f.t^-- r(=g/"j""F}9b3:A1 A7qոŅzh֩`:Ijc#αCb OO?74$4Zv@Z'=߄fڔZgB9Qu'~o<E#gGiXl-gj 1B+gT,ϴJsH"Fm)yyHxeuޝq7Xy࿷-:AώzI'uN|x/Q=ytPY&K/œS6qv7N%ڕ)Dx*B䥿;tI$q, rH|Z-qBwۈrܳ@0%ϳ7 //#H!(vYĂ])/M{ЃQcXDž1c`{hmLzX-yͅ? x8I:8a)!EmJ AN1h{{rz+$Z% tF[ܒe*bQv:ss&<C3;g{]N!)KᗽȰ=yW侴…bE3pqu!u#)n +imoQ]6_Ǡ~h|z3%s H\w+Wz:BкȬfsTP{wc[Ϭ(.zЊ=Q78o+\TQ?A4zG48wK z^$m%~-_p!.Aw}?N_Dͺ:ދ uV_B@k_`#zv65 ق\"v.>I:}R4CX4łN?qVF=Kz쓽mY'yl'&,<C|m`bbY' BC+•UQ[N~=g,i EOcu@;量ִ&w%-"e ~Ɠn6pmz'}q<j]JWX(`pߐ@p ae]:H->=+xZa!,`Ty!X!x>+gWpPДk8=Z!.}VgsG1ׂÇ%7adr1"O[qe Bu;>݂cVZ^ TI+zco 9VР҈Q͒_F䷁n[IXaR 1Vɰ5hw}< Wi$K*~C+JB\=mυ&#DB""R,}[3M¡~ǒ܉4G"~yHWn4:@g4Kz|ɏ4rru 4u_@s܍E_E4o_\I`L^g wЃ'q_4[T*:M֌0)cA@q ߶0e.2&MeմON+jyx ^q/?O=M^bF?u 4>>3 ?VO3ń-_MU߳"m r=P ,8w K8pvż<TBM2c.$D 2JKD̊+gaSiBòs.,;f-\(;h>S W|=.3  NjXAR;u߸CRSٲ_YcE ɧodz~!P6?_ }?wߟgf|ps E%5FYȆ6,b?w!6`[;L_߰ AIM(яXȥ9ܢ1V_M(Q?_mEW&VM}3`{rP8xϪ{V[|,a$9쉭# aiT.36@yms;f~fOsԖчɶ F?Ʉ'.23D;ZƹZ^74'DP|:gi#EX4S|Vf0)pB|'߅"}'HXx:*- Sj#Mm#]'+xSp+ iǗbx©cKׯ~x 5t*#Mp]BNZI{6֖6diWA T=sR~1ڄ&N!} p_H[=qضT")aP1¨ 6pò}z;ӯnw2B\d-_hMCz h İ=Q̑9tnON3v'iULv) teq`~AAwN5T9u%@եj)&zι fKr m)R'V:[ow# 2m.iYX`Mdq&66 ōڎk"-픮oXv;sm[euptE|5XNY{-b,."aH-٨k`N7ǰ@[qjE3 :< [!ka0G 6MM3bi'Y}RG61~ í&XN]UeJM9ܣ9G WW,+cpSy F,gM8ឤaVoCf?_~~F4عpsTYuu J<ɁE5IP9.c$oI&9't\v:8zm66 C&jaŠޢv].ppcTK0A(xMMsmI{售 !? ,e9XVR6+!Iec<`VKs\OT!353 F3[O63flKR+##ux|& xdQ7k8!mO'6Y+Ҹ]+JOƋ"a7s zω"X7m0,c,cRT4Q9`儵#an% #;(3V]F [yǔOscpvD.C9'k 6\q*IJx7D\123 !W&ұgL{wa^x͋@)Sq$2pC"PxW;̟ Ad]X+Q+3#G[PE`NOI ?85,n+!$F AvN4ԞR'?x%D/aA7~Η$ĝ3w;:hy%_@`%θU f~?ݿeC0EU@dEj'={,u,ʹ.l2߅8^Vٵ\| E4'B+a$ByCs#K \FXBgZYP#TR1_-& ȔX3M)uSxIeVR_ iuYb㔮Q48IjTWUs<5+B О=;';'<.e+_}ŅĤs/%Jt&HYR8o nԝ;oӍT%Ȇ|#ϒBǫ)[sn@}~5gܓ!r1lXw yuYR$Mn0(ۂ+f+wVm5\`!6yGt"!m/PpBL @`'8F~9l(UFewBeSɛ#꒯ b̷txήӦW{C@Kʮjpl?jog ꡈyK¯XE'^BfD\Rlb7 &=Vʺ޸ƊL!Y]q%dK~0In :̉7籍EWQ]DUt0۠pщfbA׀Zf9v>ڊ7)p͗-Qnc sS~!TW bP Tk9_QٳIEZ>7ne^{&8s\LD)(2<`I?ωTFk gc?& 9B=XcuP]4f&z1dT!;*iB>YfKtCoCjG Qb B8~icrCǕ=$||6C7V܏6D@oeZd~o.6Z(zѯטJ՗`'XĔ-|(8!P/[tΑau3 g3{'c%ww?:jPm\-fOJeG_'~3G_o8^ [G_'JQ |me.lLoEs!7o"o~n& ?ծm<>gqFoջ6D5YlE R2̧;J0ȏfu)jj2czjL jg 9dCHCI/(KXon11\H5xmw?bG#:b ٹAG` MH<w\A w[#X̅[csWj '\eG+FȄaAvꚿA0CCur3X }y^Q\݀C*40*D!$GqHa6'Byj"O^!ROLyԅ~Qcd ֪s.8x "ǀ>iH]5;!X1"C]imEKH|y]y.aiT[2I"3g7ךC5+yy˃[BVN9*P%&L5aoq&t]z~ٖ͕ ӐÙϗ>H{JI{J;Q)ٸ~!!igG_Q|  @wYtv1POց[ Q%K18Vś'uӑv2Ȃ{ z՟dTaB#OU2i=p(&L R`Ϸ&+Bd*K"o|DX?I|D6!2sN( D{r4C dY) fQ~3kuˏKJÐLIsdaS -zTNDfaq!,d@5&>I1 gQG"ϺX$݋#I5]@]i't]& ]tc=e^QC [43uCtÃa:2XJvZ¾i"7ܞf)5 մ7&/Xv)-H]Ko?W!; Q'>VJZFO]7GK7ThI/ /7Zwm u,/P_LprW\0R{}-u|=˹ DD-N$, EA`.֔_DK(Ų&yny0!zf`J<5rTsf |00dP5JҺ.k~>gbGH/BUE%}ʃgAJI h/JURIg• ;b0t;xy8*bԊdqоp?yP?;UܡHQ60ү| Ku#ps(ܞT!q(܍ zEmyUX B_IizQ|&-`̟Mާw_e*م*rPlWnД զ?(N7OݴZPMi)]W?GH𤮫8f!r寙Z?7 Ԇ+k` e;2Z3ຈ젣O".sԽCWr0ΐDąTfF 3Pvteh\ 6Y{y ,u)}hD_iiC;Z;ʋpH-!f5эiH[їwņg;rHq<`EZ 6szCc:Юڜ(HFY5JZVmmN${c.B(!C wd3zĉ{J_(qpI Cp<@,2Kt]ì>mUxb[ !`5~/ #TYkRA 㚿`= x_E@?I@xs(9Vr7v"uSVhJ6ܗSM rR̳"_otvV%ׂ`pf?#Z,c*] 4V¬p,Z?ڦ?,~?Ց 8'ܭ:SdÊPÕi޿XÒT>zalִH"D"43d<7yј<q~g~sVZrik暭ݧ S,$uPÐW}q5pCYQj_;8fJ,O#$ 7cV/(nRwE,cG0i>Ds겥V6Cr/X)RUv_%ygsӌze<wTh)_sw('Oљ\X!c7!sGՃ!_6ķ`o.Aj䉕ܶ N" NJA"+}̟):1N.' K[|R =g$#HO8vSz?Qв7z<ΫsV>O}=̹G`]{| oa#WbebvUeT0 lűcЃJrF54a~QCOi>R[1u>DIu ewSыSY5q5ReZn #Ak/صϊ ݑo##NzOc|:=hrn'-/;1!u@rS'i6~)=M.c;[s4﹡ޭ|??:)4 iH\gci[V,mvT;EX=Msx,m+`eB`DS]o 9>,x KtV9wXi/=s`֠ = CX&:ajmfwd;-ЖVPc0?c*_E?3 g3ffAq8}-y]"ŞNP 2;QyQ:0fRf3)s9-3ҩEFA2ngR NV\2uKZZNT['䵕Ϥ?N3hsZwݨM#w9#HWs"O?Tf>- Z _D òo9D¢bޱu l~Q߷QI4*+"CI+Ht OJ~BB.UW'_>yL7j?k엪(sOwM`~ l,ms?z@Я*MTϳbRM՗@M'HD;㷂ހ73~rLH^q0X|p .pQ#iKh)RUi~Rg-]Iӊw:1]ϯ?t_ed~a/ȉlrDr5آbᚱGnG9Cn86͡YXqlIX!Ox Bȳ]HEJ!-%my6}8>iaymʭ%+V# ;꓌4ؔj>cXS^,2o %b!ԕ/# 7#kuVg-w|5$GوhƻA,ޕHzސId NR9 q|܍u=;:Q:JaFpl*2{߉.`*MҾkqNEIl9.,|\oo#5BV9Ѱؓo!=46nZsD"}<k_:t|DXz=iS{J+gǺ+IVe$Y/?¦,ڨ| t t-ue\;<!m)]W(=T.>v#"m3-E|3cR2؁e2ush) YRPR{0̔m870- 4wFf WO}zqa0sZ@_;h#=$4W30nSaXC¦I]WE`XP t1SI=WI+ip#nzT$txUE|j'7&'o"KO$i *ޭ}< o=#R{kVP.21j[ł\@EniX!ȿT/X5t< '*b=GU~Ma!ThE!aau-Vzw3tP+Sx-}ݙyIZ?(Az|b/" .K^.\]Ş->`3!¿zU&Y=Ѹt3SGv8BZ~;)ydCjNfYdn) L%@\GPoV}y%aчt'2B>7);n+y&<6bl)P %%Xj&R| lOٙƟuV͡m텘Q3M>&1T#픧v0)TKu]= 1"BOD4Q1KG(śO\[:VRwT}w0RvKM6}D1|ЮFܬ rcSL:e*nEڅI;'ⰲS!ji ̯ʅ@:L&GPcRj׸6X'o;g԰ĉZN\zO!10/#e4Hoba=QZ"\VYV24<ϬtDW#o%/}_~f|^&;i%^~[N$w0;=Ƹ Ēd/*DHD cJXU? Jc+pN%EڠnkEenZC -zi),Zt0[0(vJ*}țZ8ߎ(-4?U7(|K*Eu ;p K ZN_a}:}4Ak?kD*y3Ԯ6,H{Sܯ`Βz„7 {ol["ͷˍ&6so3_##X lrYBh_W}`y3 'zvMflO-a)BuPdҘWXJ:Xl|{Eq1 Ͽ: zW6S&T\^g=V."~{s|˙%x%;cFUGiUo$_x{'{IؿLx1?_YE;uYv`BF*!uz&UY~h%{Ig"o׭^i<{׌чe,+c_LU6%CԤ_D(myʠ}UpX{4TGpBj’ל( ڕwIhT+)#?:CXY+>Qa&+ģY!la0qXX|7=wEX\mE4K.\ < B+|iadj$Sڣ{(PՅKKEXB]o B@ZOhK׏~TѺ9-aNUKEح>M4\1:Y\B^s޷$E"Xw-veӰ\Epp~4`%?М5#%GXYʚV$+T-+ K(o5?x~B 913ˏ"#UI[˵LD87οGܭX*ayf 2\h:N:lvl1>ѥ^ߛV4\@H.5:Q+oZ:_g!V4P!aTIX:3B;0rw+F[E8،aސ(P]ŇRfrYTBxPcA-3KJ*NҀ: 9w)SNs¢vh MCiSA5`q5bDC%XZR5LSD֖z<\9Ig53^};$Aurŗ0c!5 Ԏ6L)?G910tŒN}00(B#) 2}1~07lv*g8>3L|P̯Lż8`~;y\i>y\ǞfRlc΁AVBDCP; rQ\"Έ37&蔜2c2 B8#i^v."L*zmMt<%|RӢ!(s^j7sѠCK"]գH;¢s)QEnHPh/(w1d@#!SV´si.'CreEL(uz3e2]OjI1X)'giiϧoyΉNbWNM4 J6Sf<¢NsGCQ kp!Xɬ˦a?A[4S2 ߩeq|  i 0şM㓢.ҙhE-ccp03's>d;&vd!w^ &/ȅ x;ӹS {o Kayg~ mi/0uᄅ`RXb?<;Cz^H8pedNXi}i5:` cيcƈ8ӟYdv-0oL: (QH  jiosuAb9e!IL "RhoqiyIB+&+SR)2AB >xEW F*OW'ꔮ#sRܧ GN:\vN꺺1#S [D5VNt}!,)?vEw\F(XNGҵ1'~r1Gc>TNIF0`Qn>l 8 4!axa6‡7ʣs;ge˝h3L=9(Ӯss1M}o7jX~aAl6=-ܴʳC%F^$i ׂ`G7:?.3Mذ1wh8RZYuiyRcZOQPyL9a0@G!&t u4Әʎ 'J jOa|2uBA@s5Xڄc.yBn?W! GoV!t vZSy|svX܊>e!yX ñ_''%K >&RT%-]s} oG$p 'r /(-P'?^-d?g->g^$2Y>{rxLGAI`ݍd,|R&.`Ɗq 0>I}d҄r\*3O&E"6~1AYj>omeKмL<5]+1t Y#BdQCFN&*uV໖t>a_* #v5iV%w/ or7LRFY+r5x 'Ov oh(IJVKpD,w5x6/Nq$Xiuf2Kp+F@)DvGb0(moڄ1._Xg+`S%GzmlZjԪm~AHS,+́Bp<808.B=ͬI3.D(_.d`=/ݍ=*keuaY42 ұu6Lߴu] M& m?\ ͗~ӎÚuvG!J0BhAz{}BB 2$"-2;;#:Xڈc?9 rQga.cq;뎥mɁ  ں Փ96,j~XwIY&pP=&FXD"] >g.Pച A!%VՐ(؝}&0.N)jGTE 7rC`%y {ghFNiԂ~Y/-#[Lbxn~.ىzNf9ݙ7GH}g7BDwd\~{dojd?7s/ !5bs+BѪsw?QunoyU3Rα"M!5%;5Ğ6 #'wh={T]Uۋ6䀘)f| Bs򖔩m"GAy>fًf %WAl˷}Vj(-x"&Bj`~'!TCvc F䱃~2"OEMo$_o߷}/k>N !~*}"*ɶ#,z x­2\v7`O' R~5X˓zεX6>a+/&q !qn⯫e1Vu쫠$ViEfgorWB.#wc )V0,s`XJ?eo S Pzg(m W$+fNMoQG1RS\#w;n؊@2ChoWxcYe?!GXB^;% \gScBQcK24r詃|#FT' @NLI|C1)FZ"іbv<?"|3MGOfo/U̪np+Җ?+4Df !5.es cX5+:g+bE_"z >y(V溘΃:rq[E6rS'/"BSu8?%l, ɡ9 cHJ7MK%3oDV)/=]qiv$8Ot~J9t}rT/7x(=m.7iKXo7"μ3kӔk)3t\'_/n_c."#dx_x~Vh#\NO`nE'BNđMU8^;w! O϶SrNƊD{iKRoMw;_Ln+/:p+5\DV!_J+hl9} '[6isˁ^No:3w/[&+y|p 98A FA(`sm!r̊?]W9ګ\cG4!vOaA)*5ޝW,, YOG+,!| XQD!IHkϢ]VjBAX.%HD- So~hjlmԞ>~ercM }:2U5T-b2r8sca Ojzp.8ͭESm IՙnBH W$bpԮ,O/ŠKā#7H0pe|y'K (2@[KY;y'Z<@jbOcZ,mM7,$LO!Z{gU0^T =I~Q*HK٦<4VyGSVtWiP˷vy*o}h#BisGΓ?`shEZ?I{⼣@(\Bx9Y9<س_gve~Pxwz6#p-X$88>"eYp?B2>q0'd8XWiyg*ԙ6N Ŝ9UQH[{y=Mg6%F;譏O!$g~d̫*UԆW{= a3^+mTby`~S콞sB̃ \+Qp, Oy V3&t`rx"-_hm2p_Nkq-au,D oq쀵 C+'3zNl'nM!%%T<ؓ l o}㭺|_,YnR q8 |9wE|>n{żGc'N % 0Rha>>1K0^+T}2ؾx;&v(ة)<߯ζÕLƫ Ahhy1an 1B1V8_S b.9HȌPD=e@) 0*Ԟj2|F;"/ d6R2CU.e'y) X4Q#ю r'Gያ o @(9(m׊JTZ[%@!gWq+7*\l,)/TvAU ޺-*aG(cSh!su+^/#NGӎ ~j S.7Obb%[L߇"MHW$viH\WzPc7  p|Į?KSf8 %E4+3gЖ6`}ivϟU "Qfdn]H3 C׺yt묛*t+' 1%ĸK? HR Rг6 }"7þL/^Uٳ1]I#Q+D\LYgN6Y,7dIla䟄G<5ݍ-=t%3V ɳO:Q59mSzgi 7&ܕN8U!F..tEF=}BsDy}s,wP"_5C>+ kG}HHt|"M7|M}cPBK>clmpB55Sܝ?)E`Nb`itdֱJY TfT>} %?"GF0F\ɳt(i)e A![D;iw蠟Lk7j7Kd?&/Ğ7)rmg;2s46~]4R[V츢u `]IT6Y8MbhDu`У&`fNm;hGBTiY#=w;aB 9".2#tHP;T$WQhgd:&v\Z1~B-p_Y=bC}/ԛ4..c H"! 'pOɊF?{^,ƗU9Tώ"9eEџ]ҿ~$Yp;bETjhUEjr 9eAq줡YT.w\c<יEw#usmhnE!eFQH!\!Bg s[C/xUX1?E|8$}zֺ- Dlw8*up}{\^9ʏSHGL6H4f?I \,=EJ*bu vƣ a1zc3HaTf~*+s] e49x~B{EWRc</$&@U,AѶA9ta$G1_^.PW%>L\L-@(dYd7+ED q wJ} qa !s'Ҕ-e|Q@cK$`CVP?4q5 'KP`иR"AJDC)sQC]1>Y7| d+ςZ)|ǼDf[N,H'N=5BOF?P7gՏ3l1)V/>JAKBuwao~y$#O䢃I廞f|[ Ֆ2HcjϿ!%Rs'E?r~{[yྑKҢ$Vfe]Go'c*`EfK]L{?- jj|sE<|Q}R^q3HrhfPTԔ' }AV]@.&s>h(4X+hqRv0ODuC83I[çYwOFHG˧d :ZW@y~ I9xiFH{ki@=a ?vC!A%46T+. e%*N~ v!@*FȳXLs듹7$r`030&Ƚ}SZ`jm݊{O2wRl~ ,')joul Ƀdk0ŘmQ1\JYD4ȶOd; =G ̶ '}0 U[,eY"+ #~׀p2;Bde^)(~௣1G{0dLZ-g})^)S=I b&Q?^>7,c+'0V%<$F~5McA3֗*gZWYk#GH lLj`. OWʶږ>Q:X^AZ%B,H|@YjT' x%`ȴ jj-?^lhyŎjЎjygWADBv{(ZRfP{x잼JY0:4JWx1(R;L[R4ZXxw+޲TvMl̗tn*GD ^`dM&H-g- FWONh"!+2ϪػR9b&yEr'oW)eT+.+qj7)M^Y>sUߧjw;h`s~UU&4r`H}lM;C!$R5v_R 8hv .-B2߄XpEg?\8phK^K_ԬP*P0 uQytuy5RHs*vW l ħzWAѮMӬֳѯ2Jz^#/݆hlP{8S` ՍU>BopfR\i"(i9c*rG^Z1R~W=xqTKS$U{wчT/y/u/~Q8UkVyQ+,JxiJײTobLhv^uO|CKȾheqq% sT8XcrT/{{8zD҇ M\m&8j`^>O|LO RTB΃iG%,BHЃDdq}  h < P("7󏭌|G''22iDZ1B&ҤZ(g*2*1H΀1\$. ulZ\?\-恃/n$pM;g힩ŒOZֵh*oL'3:< i`wrA86yǷ"8@YdۃA"嵣`|C_Y5T -]'+wA@}1[H@B(8R29fZ~'|FW5TϮb"qaw8Cm,%J3Tz-@=8hƦ&]xY@bl Nϒ@o\]_)ե#;VZ1[~*Rvs][ImYht.߀i_/=HB`00Rs #2H'aH>Uz| i*AV.fj%힩"3vl!=.lR&%9%BC̺NF"D@bDЩJ$aʳ=?++ #[`7;a`i>F3F v~U7VU挽Bs!ul{u:ؓ[Nj!2[:pd6幐էlefK-icIQ~ʕw gP@ϲ<״O$q$}iw'g$)U+ MO\o'ʡQ!3MuDXdر"[&tmE=R'+yFj= X>]FV eso:۪eJb\v/$[dset${u $kx$Ye9-'GoOTӗbxtB1g&oGtKWzW˗"vDkCizA 6#1m{pu!!+mz{4Ua B${5cO۟/V0.R3x&wg+8QxU"lRm/$D{`PD^tBn^;k{!{bn!,鈘_t*:.D6t{\H>^y.M'-K$}n VcV҅tkj=bi%I $=&f 'ɔm@O&"vl3BD:6c?mUgp^XU*D[v$6[ p3@ǻne-E#"pSP/s䶃ݖ:;б#'ģ "'fڵxmW9+:Ď]=StkxdIVH7%;%;櫘}Ą"X}6<"7Ilo!.4 s/,௕˶!T頪`a>R+$8Q1Nڪ?Uf'#!3A;ThYNF5hĩABX֧ k.ODa>!}CXc_[7+@12ZRAգOy]bȦx6ahKa.C:W*BRדyϛPkm@@}0~..ɽw{WV?sz S} v)c/KR`{6b,?i=?ZW~ Wy6&z.najMߥKKY~hN97N o.,M@5` 9bjs &i\,_Z`$caX]Hvzvf_S [*t7\P=`E)\PSK' V@,m#r4({q %j.K{0$?{ptI,pxsPo!n"$IoS<}{#4Rx.54B6b# U,j$uc-<yX.+ah?, Ξm'95sݓ%" ]h,?%|.=tF㝛ah@$Q=](Y-_#vH)ϗaOZ|?EӬoo"sȽj h >ܧsa*Fzzϥ>G/ga=3,եM-oswZ^La!_['owE0f9jo{q"98"ހѣ\%A!XM[a`|.0jg*TQYtA/,Ϲ,^=Y;V݄{_ɡAԱ;^ S7'wZBVw` ]$P]. Vn^am Ә?LK \;A*g[9n\1rWOp4(ۧpk#I@WWhQ)X<*dʼn5 G\]hz(X&ol5q+hIXLg$(ub"/՞w?̢j+ *leTt\ U] .y+oz_$5I>?ApQ ~S-'R@RdC>_e3D٘oWyyjY CIusSIWͥxlhTBp@GG DX|1%bUxVL}Ou)^mollvĿ"=梁C[՘zǼ#_ݽ&|!1#_x7;_Ϯ~vBI*=|!i{u֗Ϸz)"_>/ryl)`N4z1'5{DK'<_HVcEH>&1M\!Q+6nJbw 8xe0Fc*uK\ S,]@ᦔ 8˨@߉bԺAbܯC ?%6]$ׯ?RPq8h6Q#ݺ6+T&H`l"l@J́Z<  l!RcPD^<"yvd*6Xi̽<3))B3bxhiA h9`dLŸU9p@T|nf>x\I7j;쪍wR=d̵,^z1P`"AΊ*K>-BM *7HDz:iZ׳Yg_ OĆR4Uןl3x6F^;C(C`8RեO%}^;.E49U^FO'g[&qlBɾOrvps~'K&ǚ5b LsE m1N>Ez\zFu(ZD241MhUQ ~Rr;aki?2u NDޮzt& \L +}J1|P4Ϧn!guʡEDT6=!ZJz~6Mȗt˞ꎷDbdM%x}:!Fxjh+F4$r('mGgaw ߷IXz=^8/N kڎҩIO+'$ti%ܤIJ92Ts !bm*{V px|[)7q$@h>Z76pFY VL kW"ݒƼO׍I KN{g"éj( ŹBb@@ɤ"k;zUxy7˟ץ۝44S-jJCߩ 1yt_ULr G'ùBΪBbC-BNqmA1 %/ZEpuK>0}@: OT@;04oTsw:~xZPDʅݒgfQvG9Oڍyzfn*$[:Ֆ o:ef # spy!Y$PM=?m:˦[cɵ7Mx 迕Y[.R~CNF=9űyIp*uķQ]j{+]R$Qu}_h٭|ϋ兄܄"~nT9j9"1r<@y=Be}݃fK,k}0-`0A0Jem+b2qS*aJ67G^G@ayQL } W'PSdaX>4-ӺP{OFyx2z':5᷉45Tyl<=+T^I,zh~K_[o.HRiRz6,uXf[Q)p9k^wlj?m)^DZo^?DzX<,{$ lkOIegua<(o u5Vf7׿6&ⰶ偡}t4 45W3K, #?6+~ks$ seXA~+®.ȋ, QޗM3#~DsDEq ̫!rgY!Yݔ-a ?ë3iȨ{ n9>n!D&",STomCҸ "Y>m`;PeWxtHbPH,*!|#X99ͫqE79ecKwK?RnE/$ ?ȮT6Ls}1B>W$Jy `kټ KVʯdB_l._yAcɊ'p`eM9 YXu:V@ӞI-4ޔJ^mMg԰[[[h@RL;mA%Cv|b{Z$1ߡBz,}lq~]uڬ4&`}R{z=r0O Jx,Pj 8XfZ%Ƶl|9aM#8T'Ax;N hhoR>2'rf4c!@C$2}z򅅰%"@HӽqڬV*@cu""}Uz&NώW-z^h7AIԊ`HeD$+=˽΂@(Robw+pii@G x%Q-oJ54(4OՆThg_ZW1 ]$@W$Fkv*0M-ۭ:9ُru»}yDz5j.ťnv6+d~M_VC٬V8T|~ $Ҿ`fbiP ,mZfcieS"]|7/?{ !DŁ}}'+f6^TkJqP$*)EW7> 5e7K>cڪ 1RBfsJolhݘe[lח'Eo_xNMΩV@^1a7/H9TKnRn*$E\3Ez*;{Vs(!O$6 -[ I:v 5.ݤb:1ZG@Ow 2zg!.`A D@gΠz%*bTPaEzŎ{`҆#Mbx"-4}}!we9 -Ye{2HmȘ3QX HI%m$fc{ջss][!i&Շ45McЧO{=jz0D7s6k}]u9g5`SMz|ش}<"/[r&Q&;d"0dޢOu.PXjO 씞;N1SH8AqU0d~, ySLG`E')e[e_eb'cY@*-Mμ~63ifTAXyoe8ad$vcLMP3P]}Jjt A.%imR&}%cIñbViA>/&UMka&tLgL;tPY櫯77}%~Fk]'F\^фA1V؍qJU7:Xhi'~7tYnb_WZfY+~{- ܢjkVoU69M㬪i_o.·eIǬsg=8=ֲsA6{0ك$>Z\o"u4o.Ⱥz6 Z̲:nzOrWl`)K^7slNKć I w++T@7n2Y)lvPyta󇀼b'RMP -U!nE'؀{nIկ+* 8JTl2#f LIZ$@MzOڝ*uf?3}e&z5ڌbs!@L.zzSTpXQ1n cQ1fSX-`|Z16|)}䱄g*P{MSc4S!1n;h-/$ᔨ~Y2w1 U%wc!#L;!)+>, ư$v*.@d fWD[x$VSb s-V i2EvbRׂ*Mhľߓk;CnٖoPZg336CI6Ok՟3Wutջ&>WURCދit>-P37 ]@K6FFVMRٍE8ɱ"'\W]:LkղS̶JZHUNO=flVEStIzI$,i1t&h 0ͲSMW*7'ٍI ɰ-#pdHgmIb7>r4﹟oT6[J-o|YC5Hr$Rtv!i'~m]|b<7p Ndt ` {\ƟmnWzKyU {jtjWlw3^WF=",3P:. \m}W*Ncф-#&pYrhn(Q`3m36ê~^k&=;u˵ٲTkA8:#5uwAL0s]|]T֥W>\x |Ai;#9@=8LԵl 1BPw1 |&Bnӌ@oDVҽ;a |%Ra7/QN^޸qd>04EU xtT86w H,3"T0/PPHXfsLXͫŮ-V{A$&чb6m- ƛ/$ B\ZK.XMqGg@r"#!+ۧn;XsZB<"~8o ]ewʅ|P~-sޣk#?&^GU|qgg•-+JEF]6e [XVFL ?IփMݟM4US1ٓ’LI$y>opQPRoCd)Kd\lKZz K@{ B{o+$3SؼG!턘7ڛWo*T#^X,|l3*T_HDưXĚlV'jtOLѢEi>ekGfd~jO:όSd4-Qky掱UBjWhR*1 iMM>2xt4]W\N)xYHb1‚u4 EQ-1$&݅ip`P[ [mm"MMؓ[}1&Az> ЪJ6d}j;X۸lŤQS=O"{In._(?b](I]a" h|hP]}t?9sS%H$9sDI8*WFcߥ[[Ik8AK- ks.\! Mv>]eov X uBM,ۋAX x{(^o:~K@[ɮx׈qSB圱̶gOl4B.O=W= =C]rj8Jx%0se[] ,)wb)$,[2p!=W,n"Q2Ұ m߃T57 $F;oV!0vx59w;w7ybgb@tp*.jk $"6 դk$\'Tp'dX$9_w4Pxpsk2:6lZ٤̹R5J WF::2ϸahgZg<ѪLHɝ3{Hvp[2? p='nW)!F,+c{x̵h_KLW%Xy&!BYi?}Z>NVLGmVkBF-6]/&`aC-hM>KںJYFV VRm52zPUa0;"Y zyT/\wv uN=+'X1C,?w/ 嗍 8q`#?>(#,Wu-a'"HNboH/bϨޔGյT4BuS] {xli-iiu>\9ڞsszIQ?D-sT/+s|1[ôuY b(|$)eqq 7TXfl{/i%JYYIu:Sש4Y^!89C/z$9`K0ƳS}ǫUTճ֫jC`.) HEP@Ē~m:^ɫkL6jXp@~GO|5*zryGV!S}{l::T@&Qme{i#XsZ&yrQud1`QGQbcRf^1ݮOf %GG]z{".xp3L8xH,0^g*94:$v]{q_Z(MhsעГ1t \q{ا8 RtLF&k۵=Ml|4`i) ໻=j[ pҖ>GQMP S=5C۩XZLZz8vO&G|U0^<׼ؗ^ͻޫA[Uvʇ/GWh`}:I{Ks|&<^)2;SHCCc|GT?Vzٰ5+NMT"ƿ&eI7PnuZ @[D!m<;z:Q?H6ֲ~on'ٟ{$C_~d϶"e+Yh8fFa~ }Wa_ebhdRD7!D;1&ʥ+Yюh=NVu#6súV]&&Ni^.x"V8O, f4fRDAJq8T ҩQc"DWVl]_}e/pvxd8ƆTj㌗ESJxF<Ĩ-E.f$G-ܩjF-'BfjV{M-o[}8z'v]Ʋ~FI8>ˌ ERэB@Ԋ4MT+@pZRjR:Zk5VqA=6NLm5K$?Q^QLElF пئ7m;cN 5΄Պ'MKS`rbL="bEǝPBiSY ׂsL4nԣ{N I I$CV*=J@q:QJw9LBoC2 Rxc>(ߊ?Ejmg:jP +[oW6xچ0a\-BV_046@^?wPmB1 퐃o'>e~&MjCT&ЎQ`(? 6ΠA@yji˨XAl?(vq獪)S?c1daWN kiv9`UEQZQCߠa4x5T]GMFfF- s+b|Wη0+`q w(D_ 0+?<MPJZ)UW) (hD[(:@}`ECQ@LIB,A}xG.E * 7>d}/$3;3;}"oJ5I5$~oyX6]"IKTIi+ T|0|zE` .')Lj8 !n !:+ +6M5MynTV:ձ3Mөt@H@?]ƻo\iB,m5Y&HV<~=JXiw~|1β=B3tһ| 6o_O:Xo1SeөlS7n5lYTk:SyL:IW+B շ^z"I6#ʙ*H_ <FuZ~5ږ|jْO-Yw9Mkr WDEvUoTa/ltNܭV` \@Vssgtbʨ"p1eJ. y~ƞrsgK/SJ\fP!腩ѝIr\S|úMNȬoaբ۟w%8_GYP-A:=:k=[pCe1_0uRY2c5}Vp2dz8-Y}DgA)BkKSKY5S:<[ Z@&VIuO,M C9T[PA[ ~oƛ ~˫E!!mLRw)Ɣֵؘc9 e=ldFz]*F.#dƌmqCݑ#>ר]fO` |.'~Nzk͉G3JA1GKPU8R^@(r~וY!X;j!%Ⱥ@s%5Ҫ}Hz!Xp&p8{6H4,-/CK`sB6B"~gBz3 |u;([(H!DZ 6@3!J#@i'6`$ʕ Oϩ$1W7 'gʘSGЭES+c9m[rOnu6|@_%P!F >e , 0_/бo=`ۂ"OSūx i\҆AQ&M|Jn&] 'ѭsɏgr_ a+.O8'*F?k[PgzfF({ZW ݰZ{ ~ uhbu܎i=9Kp"^ҟ4sn;7X5> ,b<=dsχ80evnTI˜,n5AO1Jern=L0İsy//:ΧbLJJ{:҈U&[OIyK=6cmkn*:ih XsPZG O[}NJZ^&˵e|p|+q 45Tmb;>azqa=;jvw_[c{_]GNlxY@.e)ce{@{m|ֲq db$nc6r[@ }IsĎŮ#+$tPgUG Q:͓=Tu`o*7=~9a =&[~3nZi^ѝ\.xm6p;- z>/ ټX?8znףMz͝w5Sfߙ4_ӱ -퓰fB IjKDmX+!wlҬ&cT_Ŏ}u/ce=a4o.n|і?{ 3 ?VƷ矿 ~24D4 xj-OwPSD=bvL҃C,gY_<o{ .b?{'R !~Hw! [tf آdx0!Tʭ$&mg>*@ )Oƪx*!U MCKEE.w'@tJZ-mq<^_΄?)!Y!ˇ ѿk_`uN|?f;ْMwsxWV/'ܔ-4"|qƊ܂Pňq "EX0D1jӊ)sѻ)rgpqH'u%o[c-(jcYyc-(2mɂԭvĭDг[G>'+[,(:Lϒ[ N@y-o5(iL_59_1XEalyOKWsNP4J}x5;nXC/b̧cmPzej-^~DYL{ 4\@v#9;9@F(8"﷊BF =_h+s>B:X3E##awEwaM2a:KxOP`4H[hWnT?Z՜FQ;'~VkG5>W$wZUmڨU?^3H%sE7b ˔Q)er~ϱYɹlVn0JbCN !q&^#UXPdYA7Lj\uIWT+n늤p2}V(n w%8,b$>jcQsu!;kf ~W+-(_-ȵM]hഠȞTui$z.u suC 95eBU|ˈ]zCY;F2kBtqNhc~mɡoS|Z-5Z@70s*uҬ.+DƆϛ }/s_(MTlnMѓ_pW@VzbUi&]DabVYйߧ2&<5:oһ}igF 't.fJ6+z]k+u k.e-n̽Uс^@06!3m[P>Ҍ,e|y2fĨ5 SHO0+ \M5blǪk|gHZJnoZ*6l(rUk#vaMDi}O÷r=$W՗~E?r4DHiPfBZz4)eraP j.VvyM1ɸ_t ,lzv?tgu?2U.o ѭUR&a5hUlSfO{vY~y{ x\L]ay|MSշ˾˂"Βohq jhCtE5#zMJ$dY=f􍄰8;) B5gC5ҪY qIk xJ9T'4̴T ݭzhM2xV3(y2]7`)$@H,{W,X֧pd`Y=@eptD%gȜNR>ƂcCGgJEد%`OB{6bn{<+t cjB.4^Bw ,ymB,H5oR%gHYJW3{:# hb;,ga8uNΪ!6 |'3$m3!'ӳLi&$fB@QB3 vWJEU0v.bƅ5f4 4cGrVB3T(NrMTˮe ?= ?QX hSܞDVl!D !laW -(rp~_Z';ކeeryq!!gT\WR&g޿ f(W}Bc.Hss-m]߮Ƽ-0Vw,unK75!1ʑ7{.V3;?gnj^AF֭-$tfB"D]Ssr \t.[ bMߋ99QyT)µo ko! (AsFq7e솵<5,s/[݂šoDgݵ/4B ł f= C &hGHE >Z: 6y1m"EU~ Oh' g! aUl3fx>Z>thL`vٰ,_0VʁtҒ~Y('򈵃ۆCV,lmՂ)< Nl GǑ+4O ;O+ 2q R'ؐR*-y/!` $WşlgVl=5IK !4@s͔ݪ^:G̺RUr1+aEn4zaEOw#A\Ac)gּ='Mޔ>+vqXJE.'B V{Ez*vEu}͂ϴ-gwe"JBX_zX>wejp2Y#m^{N 向z^\pߪxgͺ^s&sGj~&At IXy1w'+e4?=lCжh+zeWy(#7]*ç}4b &jNGlz<!Wz8`?7P6lF rc8ͻ9v))_,bhu#-#R o:bއlH g]??ba/x_LӀv" \i7\ u-v$ w,3[oڠ*Sc! f-N3=>.ɼ,d䫂Xs]5\gAq,ZpVC MhSZɜ-jYKgPԹx|grN]JLwiZnH (kk(z6aX{?`Cc >+1S, N#ѭ6}g,ioU_v÷u{B NOiW&}ڐ!+ur?[@|)'w-b z֏~,ِG#VdH~d`2'+88pQKƀc|Cjya܏c`#+|Se̷eiٔ>s\~sH< )/7P׏ߍ>Xlwߵ}b\ҝ<y^2u k~>{3a\kcM"1B-(swNod|T#BPJΎhgpb6l jY1>u, e.} -'H>5ʰos)3ڠo>\%} YǰzTFH?& fgBZK:*' )X[2pІpO0."eP7= lJ0}݂X@Li2;΅!\ɂ"e)u":BѶ*PY[*_U[[:9u^<w?4a ciM%PsV!%D6Q) B Vŏ*0da$o9{}D7`Ulŧ>ҿ=uHHOp"q\酳vakcU}oe1`6@ay2 23G+ |,Sl ; ~}{5|~״Y-(k? 碟1tι'w}Y &ګ.՜|hm\+ʆرʆ7=|?kz%Is3a OP=<1\ߘ IÁ9Y0ܤ>P$,fPS$F14Fb# c'lZ] vN7Ϯ1 C9\/ssAi!7B;%T~d&UϡuRrLPUӷCS c\v !$!TÜIW;f!zg.;fdsu MG2ҥS<"Kn헴:fi?{w aȡ_.q>3dYqZ Rx$?t6clˏ҇_~y24鿧YP(v6ُ5aS8ba[ 4Og=@Y|W3nu~81F>U_"{(7KIϤx!(9\+CDqfmc2CLq}Bgc:k׿_:sqqV0aWUC8#lH;x~5Y~ɣ\H4o|h(o>=/?;iZ b\a>(˭pKSXb[|~̏Qyzy+v*9ؐs> xe^3)q㑻wwÌL%FBŶ1У*G@ѯβK(rr唙>`Yق1Hɂam>)KHط0i LƚuXGg(s2 A*eх<m'W˕9C*y2tw\=a!}+lsEd$EBB'X9|n~;ݷIy˫j>Q#Tް]^ҏ|+Aa[Bz^? ;e)0-ߴ#bc`웴|68bƉ: -lO Ҭ T[!ws4D0sfBX]>;.TW}'lUKZ'jry w\ڧ wSarm*c k6le'MӘ(`܇OsLmہ 1@G.'zaBQ/|\Z4IVk_0m032l 뚿D3դF, E?q"4E.yXPS%!;8 ?:ɟ d%gcF&©}lKmGg+` 8`KG뚾+!zzp mCXڀ85?q tt6õ5Ep~LeYGy堀W4 ̓PؕԜ_n!mqno?] ? '@~PU ns{z X^q+GKbrY!Bb?JȸfBWĹ9"5PLk7r Oa -$x1c]qBT[[lH}-697HsB*sOH8wd ;#$xm|[b!R#\BbkB_f4_f]_k8_(8x{,hoٴY-=EL ''Px,< e͟ݮ?!-7׿C<<*GozCHM_5 Iisds qs:t.%pH|.8 AU\eU|q[@3ϵ/=T.4FkL<՚z p B)G(NO)_{ (In?['=-)H`)V}^Z,!GIτDw4DXgbX|>7ථMh=(HYI3Z3%R7 >H#,0FJ$Nʌ  F9u8B Xɱ)1\0@8~42)/_?@gr^"h줬bFvn)/wb<4n5(,th~O @v>b [؋֡L|қ(2 歟G!_qJI=\l?=!we`ȫi57rտsA.im> BzfokƇ%0P>BerWV!ͬ _.6ç˱ۿsܤ@˜ZJVN4GLw툠2ĖL2U7Q&$$#qɆ&ot{w^|!m3|N !'Ih&Dڐ.3"KyE }P{R"e6H'cf%zGi3Ң].zû]]RfB|g];/k}YaCLk=}8G( "ctA߀VrlG 'k숇17??g%.Nc"(?Wŀˏࡦ(\u%Zsaj5z?*14P /O6=M"]ٲ i123"]SoM@g+Z[z]Ua/Gs@B_u|d(t4`e wr:G.φe~v9S,U88cC:/л=| ͥS!]4 cޓ3zl%Moo/ntB"~Pt)Vi!Bg-ܥseiAҰ+,cY ~PD>c~JK3P1E E\aIzĆ"PFqz^1L{(W'*F9X0E6?[z礰\KSoME.j[Ż1kܷs[Tkܜq!DyBaI•` ,3<6 0i7޵2u%3ϣ 9B6[' xtW;P; {^W:dn4[ ᔂקq\Cū}].ApnS֩u:9oh۸)^](`},C@ѐR4 J,qO 9C1b8H6M ^\LmC6pm5` ɛ8>3B}RZ6R%>cAj,feRJ|>!wV3yZ^2tP&lG#ޛ7xl(m XX ld`ej lK-HEx_ECw1ެ,!0Pk+Qd J瑠XP`$W@sd)T#_oqһ4;svZO~jᇐb8.d]}O#V?&!c}9KVXQR]U~ 77ds[q}mTxec]UvSm{ޤ숍O1B"tI>i:Whg'ΐbS-$lcWTg&9CJ/M4՜wkH?ĉ-Od[$t9 zpv}_V`Ò"I fv׋p12pjekӤaoT8,kWvaʖos|*w(rW_nw˳R ~Rjqt:O~S0QJ !ǧRRnTRT]? :WV [$j (i%{̹y߀GY&n#tp2G^yWP!cX$b& !! .EN@R7!RcM|s'jOϫOJlI.&R@mv}ѝ6<(B 4J~ |,R5o,pL<}|Keɸ^,ZLJ0xJe \0+ ߥ &^^o`&sc7eݑ >5gc*>}5axvD\J)IKcaOK/?Э;8~M_Ɖ:|Y*-ү[I[7ͫ<%X^G;GLCls )SsqcA1!:O|"]޷ !LEI^M?~k̤ys(ߝU5Ďo8y $B'.[y kcLkyJ؜|+@tXG>'.U%{l%$Ev^Wc k[ MXpڸ9IlCD<*ۘ5km(:+2y4xz%wDȠya*l rVݻ/D0[ĈZ HaB%NQRWsyG&B ( Y[DC,07gdx\L61_dO\I,I~7g1 5pZ)wj[lNJmjslAC4U 7Z,Z l/!0_ <Йp,Yᅪ[s$ wPqzٶ0x#աMg9i B,Q~F&H2o"` 5*m6,ͿEҘV9עiϒZ6֤/Bƀ,kEg FKuޗCi,U@<Mi佪Xa໕0:|3z Vt+4Ȕcz-V33, >GW2 ER qA~7`)\ K@\B݅N܌}ba WeTSWPKV0?roy44gQ2rz w& iR Xip?yK5kIAJ؆M_aoZ}F5X\ǤWJ;PXfA3VB@|j-3bU/U+{"S"6PJJ2s.ę=ccf#h/+f`lk>s)xghm @XKb]Pt':A5g*;B1q,˽Yߺ}il'AK=A3Gѿ(EV:?`!U~1XgUqV)}3> tA`Tӯj1+B$_߱bi\FY۷o6DņZ{`JiPKo݁K}X Œ>'\jN ņӆ+h5tr%)/WQz"'l t"*`BePuhK ([~ZS'EB^3~ MZA/'Uk蝴A9 mȳ^JEu>D˅|#~IƎ@>Ϲ4, A \hr_#w8Tzpn~Y8/3 b27 0cU"KKQ'gIe41-x +b'.!Fl}o l(6f9v{ڈu@j-hpi(KktC_7 KɌGDk.fqjΚlp\K|i׈![]oexa-O9Ն9;':2l;lӛu~ulA+4S0QOOZ|JM Xjʗ™)krce8@!Xz>0!ul0!.x]1=bhrXЎv QRҢ&,.Y9LY'=&!G(j!!:IH͙mCx}} I3j0VQm4=gE!cڋ7xOcuX##F }x6E-[5~\)ohB)q Ɇ18 {8Dr4Fӱv}'ĩX˻KEi4aJlug`s6^`u(vMXh.m 1c6^T{u;ظi߁tudzK`)Tbl+F ("Y"bE'R("\OD]JV{V?(Vz\, bu EbufS]'>hCD\C 0) I?0r;tcM9Zv}ނ&+[ mJoo¾㢤BSu!8e`_!OL%gW3ZVq<\*\ \@u1sM ,XZ_ &e(C )5!@>C۶2m6$\etŪ?E ^E/_, SE+ ,aۢS.4;V?νR&FHޞCt0 Lh #5#A$^-"/&zu jQxI^%,N,(\^!PqĘ+ƎɥF6<>WEE@ [+Sf_ #};6\'N $qTfF Sx.–o4ko8܏ ĦׄgLNLf(g.Ίݫ@x_FmE-RɁi4Q`~R"WAYſ}LԒ^-f2/5FX2{eKWyzƈ1uX2;0?͝<>_O:dd|hIXaGm 5 J9H5aNl䇍3&j(>+(\ӒAND\Z?l 9?4]pFf-@]_,Ƶ8>ڐUZ>s2.8 qSLȚv 2v1o}d¥28>]NO\r \AJǸcP!7(?ßoj z}?7R/b\%S'$x2NYĈueеUA@?GW (/|P>e+7aux1|Og!O/Xy.p+[T?WS/JlApuQ#XՏ&zO|>4d Ny͓:Z!xhBFWL@[}bN޷ǝB^x]NOӓgTˁ<ҹX VSAvǞHq>>)oѴZӚ%91\s:4 Yƚx<~8RyUCaE0Ҍ`{THIywkF> ܻ7Qew"LТUJ-mQ)ri-Z(c+M `$qufUDĤ mն* ADt}9wiZ}>{{a<,rBz սRuXIc#k,ӹYR)/9yB^~>c֚'X?4 Ml-O@ ;J4f>m28t 2WYfv겳YqͶCH kEEP@^Q+|s*}ʇ*[7њp{P[ˆAȺlu0>i1e m)_|}/c/r֤w[`ɰ, \f瓪$Qu_I$;ȼmp~ĄdE#VPƇ"HA0b sFXfSq|$TZ$ɮwg#!f2TXbkd!#.~~iC&<`ն<2>^tkٌpaXT4Lh:;Ňl9 W.y5o~I?VV=*Ď@XVXAܸa@ѳ,7#,N*DP&kz9/;h:˩-T˶X. YN0r`]{CIw%ة5v\ b3ѿ#@x/tF#8s:|;u"hRKE10MTiݹtqy< 돊) dI-;cn…s/|r:v0bt&D)y݆j{;\]$$Ama{@fKJ= \F2+` ~5Zh{'QQv ]Ru$[U.Ĥ:"KM_x;lymxi]B5[qި2JjY` f?OY u È5ӺoU"!TZs<g<mԿCQL}a(rǔcQ7CkvgG C~U [*~V\|~/{PF k'-Cts3C:K3꣹D\ܭ4#ct818r=Brc;co}Zlu9 \f=y,-[H6D پ4x^chwbї k]Te2%3&/ac'Ky ,o\oPha9Nx?Gg\0PSkr?Sɧʸh6~Mm،нDA?ysa*m;G} O#y͋@RЍ}AOzNO]Zݗ]j+;Ҳ._.hVQut(S=#1c+:rʏfnKFWf}y oh%[e$X%7xux;8LTvP-Q6|w0.\կ3D+]|rе)zH]Rn0l."[[{O|8z4J#NA)6[҇ON'U4zà3l+| %^s=q5C? O@ -_NRtk93fcZY 2i^c,7*CL 3 FH:'^GYi[upa6ct,&txUέ64骤T!x;<겯O @ 1p`Q@TK3z*ؾ!::㯠Y׃mZONZ05u.eF3&M7ץLҮ -u'#{ ܽZGRi9:uT$ [^}:T3yeI~kKln=?0_c69^E^06P.F Zk:[n;)rK! [HvMʀ"Se`8>&3`k0Z (x[\s}MtBqp<0#Y9K-^jڹ-_ z>M7#)N='"x3=gۤ34IJ V&Ƌl z2#ஊTw$VI)hbBrS"Md du]!dT:Paz 9V ` _Ra@t33$}>u_gq3tzԷZe5 Rl4Zp֣rkE`Wpl_z;.mpϤON!4o xnbc mmOOc4tu-,E \YwS)צ2Mq\CMݚkʱĵ5kR׶\nh<-NImBۡE e401}2լbm1b~Cl;41U^˗,8>Eo}0vӨ*3=MW nz#F#\DiY62{1xb^cZO5c |6ǜ?ɧ]Wæ=p#_"8fdy0ׂ>7ԡ[oHE_Rt㒤Ja߀m_z#yB?Xن}x@ 4VDCBmwD "4ڪ%V1fH#JQ{#Q;#9PVčaq\e:z)W:wr`:|6Z!~BQ7_=Cܺ*C8H %l]'vWY͔nKk@~ƿ_ϱw]??)8 ^m=7JHP ǡ莼&eemOeQԡQSv+c!vqۄcZ׶ ߮ y''KpY ֞Jm#c\x|mH~SuG.Q!f. C;BHٷhm~iZق93F2GjlKX!|cNbLL?SVZ{#D3S"u\nDgQ5^emu=%h5cW',Bǵ_:ԞJFX9I׈}Rԧtjh#퇨,]|  V?Z|>|{q"2!2Er(~)[=eGUTXҀctQc\0H4$:% Xb0A}U*@IbtyԥҔ PK dx=&\;XŁ4e:U-skM~ MuF(m8@=Z! 7bf2(/흺\Ё)EUP63R#%>0e[A ͈mAu,e ʟT?ZVڷc?iNeFRvŷDIZ]s mķGTp:q@9 Uf> lJSǵSY0 9[%eTZ~䅑!iCᑧ-n&qDO܁=a?2:,;dc`)+Oj]T]_-(m7H̹ jԱ jڟw>UT?UR/Q*ƕ DJ#ロbτw~fk@G/S_*2(xokA\*ّf6cʺ0;#!R&'X!G!%/2ņaceWF6-1^\QdaeZS<ߐfwe+% $WNRgVBU`[DkOrHq_G#ߤ$I˶k X0~6$+>U#w ց]Z C5/3NJhj&,Ռzasr(!а^7!l 7_>A:ΌfPو?tvӾ\nq_.1N?ydQ/zttRbb'X+'~iΐ!yQH?ގT3Y>Rhs (GaU,SNHd:%B%[RaDIJ')RflҢl/83Q{5e# Lj/Qؖ!~Fբa~i>@NFJOr(Yg]xEU3ہ)Qy}#\oE}P={@b_ C)}ս+7 j0F;= 5+; NקA>:KX;" "~yD==;PSj0 /Q,w]"$w+!h$І>eIƕ:jgѵ`58j N"CEMRΩze 3gf+Y&J̬SzzTSf?zeof-uuW,oGKb LFЈ7 XzT</Cy0 zlHâ#YQ)!=0d#멇DRvL#},;{-ԯ~Y c$n#fݖ% GŖ,pƱzw|-lfuT̬۟,w\ueY`<3^YfW.ze+M3 Oj,}N`NdvK 8 l˾'Xm#/6NKpm9a$hd#lrZB3?j;"7i71E 6b"rwSP} ا0BJ[KZ T+q+".^Se+=7%ʝ xpwW; w>̙ 3\8\1T?撲`X\v J V|ROHt|Qk,9>FO=ǧu6FYVHu֧&UVRKU%*KXeŨT=}*=s-?".3$gX[ Պh,⩇x=(Obnð>]$n} N ;T6N4'6< ?džŶoV`o4lj;2|Gl@NlG|r3&x-©[Y-ˇ9jd0ݱOܙ^ [諾~^]ײs-6yϟ6([e=f4%(S#{4#wfVPU*wjٷ:e̪o_mN{P[G6۸6͹hNvV8 VAYgQ_3kCD=}'@/KǛQ]bJWSK;Re^ʮ`'`3f74MJx@NH?Nk+ { jF˹ hlQJ)z%ȴBpRe8A;,Dr^+|jnSvPZWP \Uv- Hg ȭeeeL}5aZ-]T5˕Zn*eԞRn6 ët/>ǿ ħ>9za>.W}O؆6ا0yd0N~)!|U1]Th"x2~P C1*ڧT=Szf=S>~gIu!>S^wG MbMIֽ֩|"f4TSӦLLy}vkG e\.M*Up/y"r $:LPnZQ>v07$z1>TY*c]LAA\Z@b5Ǚ"] NRU//q⿻W_\'!)D5[6~p!]ݖK#p;j9CyݎmKUGZέbcdO TޚK0xk+??WʝéY/mz!E/~6xx+u`bywȾF>ibWZXz_P"~좊­D&V)fٚ 6P]``GW$%\= $z{'4F HƌiDS9n_x un]1|q,kMRӁ@oMT-AuSa7͝5Xs' Gj@g/]{ \G5r>;sj>rgN4'jYWf Tv]G }31Upp)# /q_لCSHl_5{Hph JrE]a/B O MTC#pߪ3LI{?4?:u{jyC>m (O f9}?cPIU¢#E7S k25]eԗMeV5^͍3b' e' Gy -g}X8_ NZD:Q1)?AN5k\C5zc4h'"V .k<Ľpռ}fTZg dMαH7Hsmj=~G/SZAJ+hq:i? LC 6#>6Ą)p0btx 40 O#WA2H|  T eE!4#]iT{AρPW>{鰝T@~NG%^pKҘEGc&2Vkr5;\LiFk<1DL$nN`"ZF[涋7KADv^dJ)x5r腚5wJJc}빛bk2JؙJ2B>>e8e0>h?$))4hxEK"/5^$r1?㕿3pW,WFb^qQn!쩬Sw!±g*Ҹ22eGY0L4j9e4~xːy'DYDȵՑz(T|Xws2s2M~!3KqeX\( b%T̖2)Z˘ m})ʔص4LMʜDM#Ђ!eieDm#0:'DC>z尃^]>:Eusi3?ruLgY*SxAwBAF Er`oy`x`"9{)mqMJE!Dut>cW`ƜW>Wr0?dY /x16BDyy-QQ ܛCŕh0|\~ɮO;BFIPzG*)qWf]-p?Kuk@s1-Iz zOi-w 49]%f 7Y f8.VVpy9,8lh}vVj2gKVb[~e 'n` ?=kO)m%xCT銎6yKS a zѺAڈe9hi=vFt/o+QuTT]IlcM`*ɡ(QXhQq$8?23׏>qWg?ngr)21|ƊOA Ht4S )a#QNxqMJΊm$LT3v0"LQc&}.aȮr liXs]"h:̪A/d4[OHd aW$ AH›O+urwY_#f} *%}17 .]BU6`|ԣK1DU6oKB:U.OiեCv*OnjcK^\>>_T̊?-fzpQXwBVXՆa@? Z^>Vvc,]G7vnlSTDw:(a'JY;(Bg<v.;sa-,\̯d'47 KYaJ3x[ˇ3M@NAzN7tAES=ҵ0df`bzqJNO oJ4xjc#i0) Thҷ2:-,xd\|_M[kg(о" <͕XkqjBVΎXѢe@bK5Ug3r^)=XO١jd{~3:Јjbޕ]6( o8eT6 b+ʴS*EaFx,,(79kMU+lzL=YUI9^%5w@ub/Vs* /TXYSW9@Ea}&Zn 6/4QCcN$f/1߷89Q4}}eCԑb膛Ubsʼn;1_k#Aw#_\h#P7| v4:?AS# Mֿ &F~CA>KaEG?WiG*8r"s)MupPqy$aN*fz=z :ih(T cQև1(1ɂM3dO|8D͇ CcP,sPmӴQc#un_v4Eɤ7<)oo=NG&>l8:+sF> ـ8 &DM Fۓأf##[륬U'-dFҟmnƯ3X=+{4IV暟+oRZu6$zX\bZЧݗ>OBZuU鯠>7 ?@[{3J#DARjU$ e61$L$NtwϲQczt/]4?8#ՉTvy@&#ԜIe,uNu+*i҇;I51Bղܧt?aJEQ@AU1rvBeO"=1io @!}t:!!ٲJBq Ag%^AX+& ':/O kD?XFlyHXWp'pm)FڇZ6ű'n˨'Wű:光;YM қ3+=6X3B,' $Zm'Yϯ !!S$g:p͵Ê/ؼ@9!΃ue fh?}VRV1\PP`a KFx`?pU>$FN ??c5 J[ko` N/j 7]H VC'P{/XϢ))vJ>JX Y BiW;ghS < mC8̍`TgxTF_q۬UȮ%X-e2;uvu}|Qk4:L)m^e+U~)b4BTsZϫќ؇^:b-lPv/*j߆ԯD -ThWnٵAfu{U#Lٵ ς  ɮ:L}l0f7ϑ]e/栦[>NUf,V+RgIl,qe >ɮf{ޏJMtE?uɣl 0;;DT`U}'KV@6xDf҅QToyTToJ*{O_nK#γ^2L^c zd ЂGWA?rSN?Tnr>Q: 51V)殒٩+1Tc 0A<ʟC94h)v-vlvBɮ&iĞ-:sFGb9x11Yc2m. pߔq&htWU蟟83 q\|( ?}ޡڢ{Y*_ 3m.Eb#i؇$:P% V>`c W_xՉJy1UǺeo1)uSul:>r ٕCj5uȮH {R͒];Yj<Q/ ˨RZA d׿ !Ǒr|1>?Ht>d,õm]sPr_,(?ŽwHTD]Fcv~;{s[&rH^>{9S- fTiܛ7$ZRcB@h3^Z]0 `3է8p&b!^NL8+shp7;S]aB38AD1>S]1P{?U&i?:Ԟ'C@Ḻ9 HLα;-~T}vkc`Ё4U^|;y |{|FȜxt>_ a^ CTWLsCr~O~O}x un~vؖh5:u\<D7LHOrzpOuDar Cp8ps*.OLWqe[WIege}O.79?Y~ooޔ_qus=3ٹ ~6{?ϡWދ)(/.a_~89'?|Ey04yg@/O;ʝV h#qo>ʘ `R(70 cu.cЍNHtqR{zEo\ ;e@b"}2"Ue{!ɦe=J'*ZQ =KloA϶!u zHŀT%^|$f[i~Ga@_O=ZI*+X}fq[& T_0ns-QV =٩ZJFK(D$rpbWo67άQ!s@-(3kCoa1>hpO Uk!\6J'n'dl-ڥ@fE8\Ϳ:(k9{z={+0}IVW!<;'UT\T&Ð AJ>&S%FV4μø)!W?B7L9 |OA50՜78 hF {靲-9}lbA>?T_jԢ(8Q>+⑨BiEGqf4nnvSIAऔ7sO^pUBsSu@lSMϟ;l^7I?-^UeIW$`I$>e]T8 xH):Y90p^ D~P (&$/wM_p~>^Tq(nqJ 5!𙸺 1Ei8%znB g,3oJm\#tH"IPQCù8jftNx6DK,B' u$²~0iCd~]2wh5˹裛';SRϛ6F7 n v~o62\d-fvUІ. Ű##x @k?B[jGb+ =oԮj j3m.:2"$5@ü#_qڣ%7'կ7tŰLCi;0Jnc-;0u8c펕`_ 1:U~lݧx jvR|p +,f?K}S~7eȵoiGYZ[`YD>&.VOQ8v:.<Ҙϰct5;/[8jYHz]IJʝsq^UR>7 $,,q LnݽzWBk']E9[n6CbtlTJsX1ڥU^^&>(]zŅyDX&>&>"m2Y|D ~nq9լ1`kmxly&hfaZl#Ğ06y$ܕ>v n!}R^f#WZeEmsS/w'=mGUS:ބGq$%ܞm3mMQN +;oGw%=vvr(8R$l Qvy НLui=2ݐ~G 7z?Ĝĥ h D LMC#mFVm",̍1}EbWkȱk4ܽN|AŇv6*k1RO(űtB%3`KL16A!D\yƉx!D\y }79Ǜ|G^%!W;%/dc䈫o8HSx$*vfA-[,^BΖ.zUNU.NWS6FͰl L)`/Ӝ+QO#ĿR'(~ݜX@?a4O`?0CQI>S4BT{8M^0ʆn!ȾĜ9ܻԟF\﫰Ҋ9%gS8QC%yq3s M=^-KBi(у݆Aӆcf3tzZߛ\/jOa~ DщvA_p dھn*mtbF`TxkӰI93w)dO&w2gzxo+bGXΎJjk#nG)[|ʏuaw`u|4w6?ކNXt2A\ʝD9SGak2W(G%jJv֧|B[hazioDmNFz<ŖztU zyoL|UvE!S'Cv}X{Û@/n"vj|܁c> Md,/QDK-J ]=آpLxx{2BTރ6ggEICِVh@}.k^GujD)7OvR ;DQ H4Z MK8x7Α>c [2SN`SQr=ZguK:l;U*gZ 3*SB;C¤dUZ1L Qq nDf*t:f["KxvM렚mU /ZNcYf#q W)/1ƞds#cוgR-} UۨFYa,- ϛ&T@UKXŀI;NL9*%⚒Z1S4]v#vLS`1.@$$|&SeBT[jO.6Wa$5QGXЋ)  62 @W$:g7}‹/ܥ IH/0aۆ*[:aSp. ;Ás"nBfH58r5lb*w ^r{eʧe:W}!/|(B/#.>NRV؂ Q* T\[cuBs a]#z)'J҂{݇; vpaMpT@m)CzTm-u #h4shmx9ټFnY\+ Q5 FKl GsL3QaFrBTw6c:mDj~fjY} bf0{ \# w_7oz|#5WkFI >  }!>¸+Ecvs  Ϟ{ sh: C,S^2pTl C-yӬꭸ~?UW Q( _@!^NU|cjRO>U|Zxеwxy_~ofz\L _NOexZϠbppbcΦΣzL@q-tEGb6c3m 9x l/ŽTB5ۑ|/},.Y&=  Mkz3MS]`mIC,π+ NhR'ET*]^ q5$O7o>;↞1TTJ׋ë[e^[yl6,cD[O~Yx_cD:7٩z Y} ``|}VZ%k\So U3Z,?,sodWy6sl{׹&l3}~)C> (.^W4^wCZc| ګGL*hcG2uWSx`0jsk΄EU6шN'=PUH"1 |$9`I5mtn0xe F秖C7{>VW͟wl݁`0{Sxw܀aCv\ڐ[`5Htcw֢!@{WzXO\CxUTϓ2@V:IU u)8w16)'Mw6jqCJӍYGBӷLZX( v]p|s?pPQu=}t3A >a#UP1 .aT;ZmħN,. dԉ2[0'l!.d3:T0 Z bjϪq gir !:/~g)?7L(S>Fb&s )_{#ҽWʇ>eoIGFZFBe>s7YSw 'ʔsc;4HڮyQv[RWycl<R}u >Qp𢧁ZABڣNN1ުLsŭJأ0}F{,n$͌᎙h`,Nry ,HeFIg+'M> qtOe֧HՃGؓMu 5^Zd~5[Ka̢}~?IU=;IrE'0+bp8q=qC?`&@,!=tM-Z sA9>TNuPa'UhE?isCTzLvCgm9K$տbҧ-ղHRTm$f 7b3_sk$hM*J+ge峬5F2+?E>\@w<+YchoK03L(?Υju%U5srsP56|T[gb!k~=Щh x-s(7gtbs!%&)(:J $DGI>}ߨK {wM1èЊr$6\|!Iګvg+6*>0 ¤K:K=v ̀ w jmo4_W0&#U1Iԯ} >OH"a~sߝɏWaM%!롤od kVC~^=F!ޙ'd;BovVrN/ԙW87e1sSKAH!^{4i9ˡEæFDltֹz<()Di#;Y}6DYX}>A~ lIGl=mb8s0T} nR Kf' XhuCj'UagcB? zAx~#[5a8b6VBs7O{J*aˆ&oaG &Bg b%v}BI\Z $qi1?ERZ~:4` ~!iN⇘S|uds_m"N`T‡qCw6 =G"'7cʴ.:5UE Z hr1ozu),]|TF}m CqOa>ebȎ tbțZ G_үa :%ίذ `>HEf+> !XTIs8DȬZs /RlEӃlV5[lx/KhL]hmL-a`z7[d|s*}rs -oJ?m ךAw bē\e#v$G *AkY`yÛҗ:ۗr#u롱;ZFq=˔MvnAzZW8]d]e`Lz)8ʁOoNQ8LovG*!_4!o~]81+j9*,tqU͏ NJW <8KֹN ]dE&M)jp3zgB6~ll)w-B.pd, { C1 H*1FbݾLQ .JfhG#͔Ӗa:T18!`#V븅GiC'd]Tˀ9ٟFkJ]* S;̤~AU_mCFIqJ>WY a6e $z˯ohzkCqOEX-UqX{`1B.'q_bZO5}#\Lrz.A3Vpw˦au͆~0(7 $"F5ۋ3yZuN%y`mo$=; g`ާŜ![tZi kb4B6IITC_Sž e4 ~4H Da f"Oz/:YWeFpOp'[ťCl8Et!v]ȱtq:jvuJXi( v'Bw9+ !@ٟ"P;.Sg:yT$Q;7Τ߃a0C!*zqKT=G pw)2vr)1$LN_6XI\3&1S!n4=S1q!- k. i7OW3S-㣨$X a6 @Шj5Y!EFlZb->"lxh բUk[Zk}U#"]<@UTuZH>;>-0ٙ;w=s@Hy1jrS.3ޓ B: e$1@R6 ZiIDr6%ܫErvD@%k kRΊ(WbHɰuK̿6XuKvDyAH;vh}ѡUsq ʕ)vg+mWr}dNL멅^GfǓVoi]|Z~co>LWkO#pUtf}Ꮗ $9砅ceQΨ|'x(=$O#WՀo4.5S#t{[鎧4p:%FGfFpӛV{;Qd-$caK3tbUq~YZ!T?w-~Q8w~q7JiQW%Wow]\vTY=y_26O˦: yV`co\tǭ7Bͨ^^K==l *+RMJz:g쳉T]J>2[ؠ_ ]HfFAнR,*8Pf9EE^&/9XM' "$0i΀*|qSRr]^ \.mrڕ| Ӈ $9ሕ0?NUa\NO*ZP[CR|h~}P~Vor>il>(v6e` >+yI/|?>v3}G9[=[kSa%hW")"V&n>tfoϙ"kČO/[}ES1MjD >P7Y:C5.q$Y / 3 y.v5ϡWKo$ALqފ ,Q5zzo]`@ٱs0M>eS+xhp^:!Iqovzj=?jΧsg9\ῄS(:[uWمs;'*Lqg~CE͋s|N';8DJNLx. F_<ďo!xVPO΄\(s<".p:yx>mW[XB򓝇wB\l| *c~+|_x\HeOSz"lC d,1Lގ> bX?WjO1Sgc !U[1UJb j5CYN@?>B w# 6?b#O+`tK|0; ^%Ga -'vcz0kz}mڜpdl"":*OɬT&_JS/P5fiݕEA96Y EiC҃v9-sO v@ eDZ~ܿƯ6c3O2d/!f,B=2ֺ0|piEݼ!sG´شEŻO8*RCN^y{mڹފ nQy+/w҃hw:=i?v=cfNhpu `欄Ȑ2j] R/Qy+ e#*czIf\0/H$g}1%$TyHB'TWrorzv,+M+yCgϿA7>i_tUtfQmspԨJƣtEKHzMb[vQqf;X1k/ Rׁ}#ҕzʩ'pWo˳ " z.B׺NtwJLQ'J-:a-q?+7B#{Wڰ" 'ܣOf 4 ܿ~twSY[rP*6j*5X@ FgB_7 zC@TAP . 3`pֶ11Ctwtw'W֢ B"nI۩ ;,8' U"O03 LԐOTNuP~՞] D|Y%]՞ Y~hwHu10` Pr)"w\F}GH};kCޙHRp9t8$QINߺ!mo3w1D[(N-!?[ϣ~J+xccoyKbo{ý9.N\->9HF<½Cai4x*Npo5\[[+Rv F0@;vH)b#J刪DۜP/-F'2D> K\K@ />:|Ph~5eSPR8VꈮӹqZI3 %#d*)|S1q!v';;*o!dXi /)%#`g"MN 戮LTŮLTť&v]\n*^ N><\yڶIXZ8hsF$2 \W[Y5kW,*]3j* VbaUoh < *RiHr]edǮ:ËG 7ǒAb{sJWhv=&MᏽTu|hўU#p)[2/5)B3zO}hφ/?DAh6,f3BqW1+*_^Ŏfi1#7䠾ݝľOB4.0Z%ۯ-ZF$펯;]ydI?χN[s'ߔ=|LM(!ѓ`% ! |pShO|4ӆ+ ,˯`|:Cٟ0K]Tu ݃BK,hx=i 8QƱe<΃Fg-snrav?l$B05h?̘oG4_[HQTaLfɿCf'bTq6΅:I;Լ٣ZV|a .HRC"\ $ o-jTVJ+`)=Wm Ws3 PG,[t8 UZ?Ms=f,58wbbCDU1 -rXUrMtts!tSDOfh{R؇د/ZZOAwg8|4`Z-gz35p ]lc<ʛ\ǿ0j@R};K ԳyT)y/j+e0 z'RI=5΅?ʫ:BDFS2kmٽ} T+M$Zjނ$;5?u#?}BVObKO$ xF1 RħPg ~v1<:jy?Q \&U\ (#՞b3!~a_ s< 1DfiqMAi^N a߳[\}A!: *3|f;uLЫ)Vl07Kg@żjb"_%g\ . Tqi}ٺF[uc|{obi]Vq/>=MjZGL=V wu}9FN-瞴J뚶TVɕdx2 |{@4 r@%fK%D. 8lrZ4\ ln-'UTYRL=KO02 2*:C1|W!ʪ 2d˂Uθi,W麞l1x?w=x|k pcVTJubt|cbavwGp{R 49^FPxcfn#r*fdz;-jZ>[ֵ ŝcHwX!-◨h\Xls4e\ĶŶۮBlr(RvWBHZ2FpeؔO*i]z4n=ok9[~ MV[- g:i]{ +D5 ( պIZ̎ŭj(gC@Aܑ]T4M,zi˦@ gyj;2*i(ƛk > 5ho Ts>:=p̄ΌT/[^/ѹX=RuRQʺ .cU*pq\Nf6,\9)|U)G!&?hQIuSu 8hS 5l.]H$wZ /;`h4$^$0SS<{!$I4 wh2[>8^ LZ'[DE_ROUB Y`蟍d2JYRCr=mZt/M|Csk(m vDSΡ^@%a?2CTBRA1>.Tş=y6z>\v-8l?B j1!w`zv- =f}rB]"PgT=/~s| ,oُwN1'[H)$]D҃xdtzO_ƒiT-;jYP.N;N<228C٧q-6;o΁pJên[?ZnW]{GZ[k ،!I]bocxx%Y-4T5<fb7!Xƹfz -G-r ;Io?^sپ2_}gGq56_ #M蟐_2b~Ă#%5-zS3i36JkTGM-lFevI&3'j1Uؙv mkTuKýzS9UQ@c1ԏXW]у[pʵT_N=BkT%dGS]㣲'MQ1wg@uiMװ7<,q?f!"i\ÁbQ8!1 9+0 'GJOYg6BRG'Zt,,HMPUpό7ZDB [$eJ{Ucn:4;s,+޾Ԣ0@P);&-J_17|aJO~d٭MF}'7Uf´\O@6~+!5$vd6h|hx\r?_eaR˩b ;(c&~?_paBx৸B9x+Vv9Ŗ1EHr{"%/kT#9O@*:}>6;EQJ;ur ۛ3|9HLwqQ85 NB~OoOʰ[ֵnKXM\G=MB38{_qLOVn*$KC  ,ܽK7`\RFqst*O 3׃)sj}*pf#b[ԚanםG2F> 5@O:UN*)QL >)vwzP ۦ9}jP%?S޿a}U=>'ҙT9SM΍HQ GkxC3АRgSy9cC;Jy:S|&BB+¤]pu~ r6&uvtiO⩍ Y1N\ H1*~bs=qҪu4ՔOP!1'm!Vlߛ`$V;[r*fdh6-YO0?YC> A>bxw U rF ?T+PƴS~1mLowpxy x R^^q^9{EcΆ'W7I{!ܼjܯ89@$Ay-`sm<}A6l@o 5`[pj9O on@oױ@v3CL6?vRŀ\+(N (~xBG G;:39ͭbL;*j{ U%3jvj7kTS; ̘OrĶTN 0}HN>ˀ8OfYXdr)Q5ocEռ"_ Q_qB F3k 2?f+ʂrq9v/-jg4'2mJgJѻT߳]g{jO|^{•A1 ldǻTz*W@D쫗<+B.S%zgOi|wf/i+参~bpDcZ}UN*Qr0r>ȲR\Vt6= )m"kҞ}Rg*kUIF>g.e^Z$g W.~ xC.h(U _B oG]TpBbwW Z^*f/7crWb6o g9 IiHȘ e%Pyҕ)T] ]D{e.oRe|ázѵ4ʉKTL` R增>:4FXF*ztZ<G{G1~>΍vG;N_1"S\1¥n @,N2j\;.kg1j4xZ$PЅ$XD9NּR-32)5BgǑO?8? LSvQ}Qp6[J ~g@NhײjOL'UZ9~61r͵ \T%\p[R Söԣ]UԳ-X|BelIBF0BR$sNjO|}x9zTW1I>' W9r/wޜO@uZUY\ srzϮV\՞wDu#x?zp`Í8<sl)`ڹwi3_:5 ?誒5z )p7eTvuLny-2%#{z:迃Lvl ^Ҝ-M@[-\E Wo%o?\]׫w-Pж(e ^Fe(^J_e|~'SBHhSNM < W9woJHk!oNTBbTv3K^!$Y5[۵}<++Tyr6F,;gT;lCzR}(5xa/V&Q2o ZzhYC@Wg+3FfWg 5 S0>Ep-]?wEu4fK$>p7?$CD[ /feᓊ ,)$$.3D|@_odGfD@*typd[kx}Zz&u2Cb-^94=fdcw28ܣ}NBMBVd MPo.^yqUPjpHd_O);毀ߢ-{!QRTLUiD醾̄I:un̲#)v'4_/STĹ˞!$9J_ٜ4F|ũaz g낚W ~Bߧg~4SMZbREgcDח0/ϱ%BFldasq1[<̏JH7:ǸX8>?EtC!_؋t n̓*1*bT2_ruB vPyӨA꡽!WޤzoڬrN.Zi'VKb vӄ$?~3r!&ZPpHy]<9wˊ |(~ .7p=6m*DhP4P+28PZ)߲x6FRH?zHGռ]6VIB?|ԎP'򛊌%Ղ['@S TƜ8ZzfloU eDj;'Z鳨D6DHxu,Ytu&(bTynp<;h+s>Aj) 40VNbu5iwH(7#)5OnQF=1VM3ML$CO;>zM9UZ*̦!| ]hɀٶ;5?o粈C%eCBֿJ辗v -i?gZ~X+,b]/#,hGY))AZm]1r|i9zM^vTrsiOԓGw)ϿA=yKȲw|_]΋SSm||e$ x{*r̡8i]WNZI?v|9(Sl{x(4\$7 'A+Ҭ e=kgzyL=|T !@<$ƪ=s͚RxMrf ,u,`Re|~|V(`/P@+X 0 p~Xl5(axLy(2Aj\iU[6=6lG~S[_xSIS)ӹi*c&@[҄VEFa#< J}K4I0UPmߤ ThW_Wص/Oi]{ _xj{ 8!mGR#sG|I2ԙ(W%"S4.ޥL =4hK+]ߋ+OM|s?# J >=Pr^BH˜H8(C;s_|C?ܣ UG{<{|br`9`ѐl>: GLr@A`!TGܲT^rTVW7KN=Y ȏKfHH7쭎ƛ&mTIn,a0@H?\H"0/6(̞EՐ-/2`zኣuwu^Uae/rg@ya/F.d(=Hj8SbtR!@6*gFtnB͒4ibukYM=4ziP_8]bT:<: P" ? bc7# gggo*q&ks=3 kʇ|gԳYTo>n *,1rX<3̃BR;Zi*C ix=BX7bdJ!~ϐ*qM;3#F:bERy! ̑ltƴ,=P6j΂1ʟ/HH0_M H bA.#Bbb!U-R>5A)u6'.1} B]40bs ok)F.9lY|m@ۯ^!%*m3`,ƳUT?{XvVAۑ 3f"-5;ʹX%D(CưCΟ -_ծF%rYJv.}zZG8voY›' ԙɣX?a0í/Qn.7-̳~/kE|f-麞|~ \Tٺf C`fҲ6u^*zMHzcS/xI7S9_%g_rT r 7w5L\ 6XOlx7#&edm>]g(h1hxB'!՞)҂a1sj$D;HuJhTYc&4afƒnB87Ɇ.L25(<ܫs|"sږ%3SUp%4/գ 2A!z5{UȍH};kn x΢z1z_.!-w:~kOrg-7џs\1z9{[4FyjrԨA|;Yɭ=_d |:#kq]C+UĮNi:R AUG4QNbT)k]tNs/!o`9L0e+uTyged:.#aK!뀰w7323-כF{h!L6w$^fN-n ;\;SZH!)S>UtxҞD>V6ʴ>%k M^8D,4\=y6S;5kg5|JR,\䉏r m>gQ"Geȓ\DuDi4aTЉZ4kA,lO{P^$/08 cK(,d,( ,enʶ{fQyʋ2ill(1,11d=ˮźOlZ7Bd 4 eh)TÙ8r!Ug{rFah]kߞ. wgod;gu3ꤊ+74`K?fAA @ ]i]w'I#5gR_[ޟ֓Gt*i*$n8XtS r@^B&rEpiO=N|4 yh}~Raj'<(rb3ih-evٷ6x42 #QqBW[a J?sⰄ] iuv rm;Mpu-zFZ&۷)·aI$K 5a4 e.9^9NI]^qMGR^\Ue BO)7E%|Na. 73/GYr?8NjW6moΆ[#X+6ŖvmG&|vZN^Z׎nEQڏc g r|p]cmaKYv@3n!i; =~}J?&!iAFgMNpoX m%%8b7k^ 4=.=xُ/gY:)~}ULNh' :`@B8YICv@+P~!3S$F0vϸ`˨9 f(xQkuvPt0xH@=MA8 }tHW vL: I}ŭ+˨7S%Glzbc^db44RFY/&Gx +$aV5-?hjFt`Hu󴴮_*|<$$yVӁ$mǧ`| |@PkͶF$EQ|K ԓD$^YtQ>-j<:+*O4T]Á>ֱHQJ&:A&>Lu2 c Hsg#F`d~)klTߦBވT *<ȲZ Uᛔu**]֚?Z,u5_ny1qwG"n:)nu3G5?<+Dn#'M ڥ\q(lR4?c+od1EFRvA),vL~mrë;?Ӻ[4B)%.xcze&8c[E!P5f9aLMS1&,mB~/ :ti]{DsԙĢڙ'uҺ1vh$SZFYGϕĴz\NHrV{Hr5ERJL I4}Ep#hӛ…G>{o49&{W/4ޟ>yҋ#'PNkr/pBlѮiWWMōpT vD2'Ejpo=],J Tm8}(?'pFEi-9ʯ4GvQ` hdbby1hT ewOwaOjpwF(}n,.@cE`|t)̴Xfj冽F>ş$'ks1GNt6@uScꉰsZv cFֵĴ<ȅ'ME終!g|]CPW!:zy,ȗ/17` ZyOa "iYg3rxBݼ ўYG2˛]sE\-'%7Ev,P|=%mz4; W F@˖SPFիNg ;v6jXSˉC\-$D4ט?sgKCIxpx#Ӝ1a^rpdet¾sqvQ6lf7 lIV09bjԔ~] pyO`Gi=} !YB.#[ylQCFtN &PCzԨRy4>a4}PA@>]MȔV}R'_ >&R 8"XLjTp0`M*,- ɴ\+708L,@Ҵ-ֵc&y6>^Y眐ֵq^AEcӺ6f|Z׾<ԈIԉvflj5:s-c.AƔ$ # i33cͳL؂~uxrBMhʝTޞQ@iTTЏ4|1YOhF`=X"3yP@PfU.ȷ3rd'n;C^ꪲRkJwuߌv8$#0%;B1yPjJ(>h3Rkl3K>ܒoac4LJ^ GJp|M?6.V- n\&LVb[}R!V4J ŭFqx,kg,t> vX5Oim!HDp fweXf09ޢP(1Lt1}28,}ЦPΥL")lZmxC˒[nlZ2r.#F4DҖ2ǧ:憱hg.%UO{Kg"]1ctm(Bh:QlrN?zڵV DO}鎧>wSZ>̬Zىa2h_ qSOKTd~z5 hBPhqM"X2YںѮ7SW`qQ^73%%.9p01|}!&ygH2\ԟ :(x=!9 F&11'Tt6}V*er1' f3qwoՖip$m8ٮe*~:Vd?ƏXw)3 J>J׎{? ^ 8mi]{TL[rbUˬqPLgGBM탾8m0VI[z*UĴM dak7L? _т~Z拾?TA~NNJi]gmdfZדWuJg ħV[\DEP/]+SW H/LH忁`_7,;f_ϛ]Ӣ cI|B($*rqp<(F7Oe<7Ty^hfR^\SOߴsHNZ~?A͒wf$.F&ƃxF/i]ZL뚻=sZK= ʪ^"G\tgi?des>CmLZv[{s!%k>q+%Qt0o]OwwT&3nG*0 +>I 'gudHW6 Jup@8%ץu=S!U82j^]}ָzkgHڡcUӡ8苵+G'Cu7y5ڒ6ϐɳY nEc"d m+Eʴ;*;n)J“C֌fw4݌ͪhk"oѡ`M#풊:ڔv̀0:k~Un1WCm)<#^J{HS6*؀oMG@&N*^@>mW,B:6%y/-"7u]t=!~'2Si߶ڵ b1`gKC)C7IAϋ孚9Z )ޭ1HY*v.u]/x}޲}S\Bj-ʲ?N$DD I! E#_+u6$cޙIm|1 .c;Mq5}_Jѿi7qYwi~3,k7 5xh-?%$ٕ>=뤜=8-SNvzi1Okkhb~ / _<9E5(i_Yx6a?LڵCҺF$]0jMPzv;wV,}þ5sKʈݛFC5<漿qyט6N.JksDa_9Q3P}//Cf-WlyLFu-k[q $_=rL}›+D³WPJL2naofrZM/R5zA#$ԏF֓~Jc@&+sa T[`/*Zxg,K33`ãƔTW̚rGRyK, Tck1!W8? Qe@:+NQe3%d2"[lYL?lI=i# ȩB6Ki<I&gb-:P7.q'z],[Nqi85BCP&֤|Pc<h|w <1VOPGzJm5'm(mnhiL18} ,f㐴Z@I;)g_n/;݇D,/7XԢXcvYOXz~'O1ɄOL`̑:t/O0ѮU^G9s;z+|bGo1J(y'QrFR5*m Hgz U$4uo!kr4"F]/#ngu@#uHR<ϯvVjl=NyΙVHj`R%>R9 VlvVe=;"Ng@CK,.Fou=9`ZŚRr–ϝ>7rB m8?t ͆I8 PzPD>2~W NtG^Z."i](gy$B'!$8rvy,'lҗ_aO=.zVU] ashKz$% spUM@ [mQ\R^Uezjދ󭵧'[Ϗg<ʢI["FՂ,_} = &y5>(C)g叇`NjG_'e?[Sv{c}? y-\dP~joM{G }G8S>&:ΠT3LvF;qdC;,+Sű;zm ͚҃9i]s)}~f9}}vWo#|9l5-_uU )A%FaO{S]%T !aYR/5Zw:ma@q@30wGg}Bڳyz\a[`r*AW#3;ieΊ/SD)R!P눉mcb^N82ĶQn̘g:@ 1mq2-wb,9 M`aS<>i A]ʱEHUGUy>}>3ENK%Գ#8Tq0bY`k3vIڪ DߖB\L=]{(f2#v jFaM$Y RFjĨ'Dt Lj4g6ϕ B5"|AŐVL+̷{oUݺUֽET[0#~%/kc:1lnwشT2FňKR 1xVYٴ2aV5ҟusH\h`VVBbdEJ2~Xi&37S ]{+5쑆~KP̍#y-=hC B(^j^`F>Rkc広8 & 1_]6j8~r  d*ɦe X`% p.䣅¤|Bkp`3 3G]Eɣ}8'݆mlzq\:e1kaK+2/<*㡱ȗ7teڬ[/5y=8i!+|¨@fgk6Nz  ϑ+_*!tSz,.`(,}R`F KgoTBBPʓJ~L)P/(g):A|&P}tZ}t* ΋俔M2HI{[s%Ǿ/af:ɉU!9iG~qky> lv8*WPmXmC۩BM{xB% D(wXrk`q> *)^,S06R k0aG{+hڟO:tAι#t.3V0ٔ2R[w]n+,w38;1Vrөַ`pԗvI8I+OFN~u6WGzY&]5;y3k88y*iW{+ 0~밷N vk)t2?Eع't CKp1?v,NUT8%8sp+Ӳq,X&i tK"m*X gHv 'ԑMTaR _MjPH6rk3ݳ_ D&r 2R&&91Eg5Y$geL̏6rHMANJHdcHP d`^@0Y\9a!AOZS XؔGaG{{}܀K޷ (j9G[>G;E8!ѝsD"W-a^;B=e@cgf{z0iR^ѺckY\.5%.K3.q3+.6'@$C7S)nz/.^aOևrG4.CӸVH6~H?oeŷ3)Fg8E  xͽ*€af\Y_W+ dkܽ2V&}I`bM, s1=$*1MB\OE<,p.q۴vȆBFL]2༘L:yzsbt7+V^zD$5eJ1mXqm"yWoSv ~iܾ\b\ƸͰ`ޡ8jV|&**d/ŚD 7MVޯjjdOFƸj%v{ge:mbjr%{zݶ|ʃ3hƃ_NwoﺉvWD͇G?7e\?HH\P~-gvEגMlnt<|b6)IC\ޞ\ޞ $6G G։|&4AzGK!m {<~(U e!|[bcӻ۹%>ϓ 3hȾ}bӾkzC-5d B7Bj:.N$_"$>ok/!Yc0@¹'􂓄T }3י&;X2Ż\JCS]^]PuSŇ` Q,бzشo`2tNC1!#mHoi!,1H s3R$Hie=kw7Dv5%_uT/:V}R7N/+|Q;b~FMM|;z UWXh(wh\^: jkZ D٭fuwLdxT6 T[,#z/u#BSO-:ٰRKvOd30pq7>}אV٘Aq_wϺv%+B`G$؇Vn,V.ŠLdvI6wBgZtyL |1 |? 1o华.o}'}f?;Mw+A&z$wǽVdcJ¸e0i/8aB#j6 6aݧ#mΥ463u$ֵۯgm8S w`'Rjrύ&tu_036s,!VʳIl;[bӁ4? MuUpp Ic@x0,CFt`ATҊeAw;X7 ױFpi~74xŜ`s!F'w%?&ef#`ѩ[7ULP}ˉPEMlf ceW_*@@R}$ԻAI]jX6vg!z0y}q [. raEY}?zC xj=^.}Z6/{!nҀ롶f]Co[zS`rz#}TW% {nLGrb<a/-6vVt&B}0&v#WhV8u! Ȫ].R7tE73yqUb?vZ8#U{1F)EmSi޿/?mbczJsxnjm(c؆MbZ3̯@(Ķ>I>O~#qweı>Ncu8tPl۠G }&qwF[dOxepmwkMmΈLWҌf]OXDBXK'o1FmŒù'dNJ}3YADwdOA\&wVk[=Yw Ub؆e)(x2Ea&=&y&dwӬUEd]^=]tBmKX Wy wybS wgS=qU68XM8}ZbR3!_"Tof8xNmQ8.8j&baP_Y\4[Gq$DN :Ty L&B;3/{Q2h9J*Ez*B=G<1A^&YTB|j"+q -hU!3<ժr`a=~Ph?A4a.V2xɏӒ7!z]D^ у{Lýkуу/p{|7E @W`5L ȿ]:µ%AÏR?{Wdf-?~ ~~T *Z?Z;_"a X5|XDQ6||~}T<p77E` Ls-`]h, U<1A#3ܩ45L{CG}GL]WWLVѸ$VL کaeܷc!i`v/'v$CR>?eKX`29*D `Qz ˛ pp1!籤&zpF д/"uBuV 04m6xc%nB?Lv{Dݽ'צ &68=fҥ{-e{oMv !*>E¼hkC(iޓ`'xq?'nE7ұ<ˁM_4lMt,caz5445:_Щ}Vݔd4tx\R +]4EpӁtYEe86S}/m2͸)t<9S"XNwȓ}MuĊ}M$5V&JGzn'n ~C[w=ĸZ:9h t~|oeqXhg;2Ի%[}4\ 9}ۢ?(lȦW!3c%J\<5^j/Nv2g`C뙾|q]"`yT'LeN,,ˣ|.آ73'C%hB͎O ,6ɌV|e^rOD=GI_ڡqߋFqIˍhQ>9~q-[y>pW\8fb UƓK"mm)~ !µ[ L4saK7.j&&`UFw~#ч?yI?1Xn V#,7umn=>1,cYɥ}l 8`tiiGhh4zl_g1 Ao6ӼhO5u6AV<yLO^4G[WD"7pa ԸXEU&0,jFV*mY(*L"byB g@H _dC6ϭfⶒꕦEgW\6B5w/?G3tlr@M[*xU*v89Z`nTwO/Rɡ}~b3rzAwW/V(@n-@`1HUlo ڍ-o>uq3-:y08Czd_+]'X#ԫ=cu2G_K!Ve!&9p*Fi-`9RC.Av qp;r[^>w$ZN~Y?+o\[+D?S29P{\T}kA-55/<െz?3qnpM@ %$8,)ǁ Ӌ|{)^ P[7A5M*p+fR|h^g洉BgEdfz&m^6u\6a×wZ'%7u A?4ofq)]ү0Cq~;|[. }hq[ޥMPp6D,!g@&=_ٰ"$s:w=Ns:jP˫NrIֽs+o wiO3-曄Ph65G.3 w(,_º3^oMZoݟ} iB_o7%K6w` .Xo0J}Dg/tm()# VY-E+c:ܺ],ei⬬(dƿ/͍M k?h +V1`F״KC(x)I^bݳ(?7[7Ӡm]I9+oto=v"aћl?z3*p:?ʂ3nzU{wB^7їN)vpJ?#z?oݺ1x Ƥ7}ormطWľ YC=c!0@T,|5AW]WQ*qh~ZiGQ E$>֊F"Jֲ {H蠶n8Bo3%,$zMJOd C(+ӆ MXIwb[տ!MF]k^󿻉XMY+Y /bC(xA3¡)0Tڲڦ p1(8_] ._54o}?fc F\˲4J.JH6Ro& eH;Ǩ%n\_&}Va@w o1:Pط55{E,9_k9,;lFrX]hHm5@7 v ֝`J09Ѯt Q(K;Mgب~#rWw튷ԘH_mՌ@_ c6kK?1̘fmM\i";`}{!Lơ7t<#l"sd} ߍ9h'eBeΕPX;[mk,މUFճlwĕ**0$~&|ꐾ(/l|a=-"66G{vƂ3Tm:+֛.b2mx^2E<2ڱrInjPNQ}b W8 NO?%c:nϋN#z>9`O^PI0H˅A.}vB'.0cd~/:k$|.Ci>Ê?Y<i%B`5Id ·_+9[c5oO􅝽|+B7M h-ۗȊb^d@&mhhEvmG6Q]XMlޗ̑+"ݬXɕꑄ 0mr۱SۃL"Fml,x6,_k,_/7:욮so_y-s *9rgM6Yo3izM0?ڀGNnij˘-uqtLay*d,E(lQ8iXǪ=8ƘOMBezjf,O:'6Sbgcg٭=D+h7n1"*i{CJJe_w15cɉaױb5 ^fȐg3IX9ڱ,ܒo[wY*|Ce(AV3$, ~JX7+򏳰r6T1݄,,˝X9|RU,H/q%YxE;ri,S ON^چ.,ώ`V6:nLZx [\w3l?VJi{/-E YM4eaQ$<;o7b((/C'+dcyX+ck.[}{B`%<̰@ ;XD"{ fx9E 27o,V497w7.foyJ {S:(ތ~caovECColM{3"=޴Exٛ{ q7fx3yc7 oxS7<oGDް2y+ި+!_.v߮ |ze(Gr۟%AoY(KlOܭDMHVIY8gJūX>)a''lqS) MQJíoQQ#a8b>q0|5>t|\A2 DrQ|\1q1|\qu|/A5 DrQ|1|+R|>o18>wߣA& d_kE|DPVڬ ‡cc13HF|a|p.yu| 3j% sX8>% b |,Gf(|,G8>GG` F|0>' y#fCQǦc8>X|l R[' EAcCږ8bq0HF|a|p.9`8Py0 Gq8>.+e |\qfh|\ǫx9>X| Ro/' Fs:>^5kD>A&21|)dHi0>ȤC5|hf>A&{~Y1s|̱f#>0>fcg݁0>fY[c4>cp|,K,>ň%bX9S Ҭ}C4>###0H#>BbQL#0|fmL >B8>6-fs1|l>f08t|A0>a| Gv8Kqq|\.#>0>.^>f`4>(||Ihoi#_, ˳z]Vn:tɊ1J7?3q+C2vU$̔qvA&TpVU;ݤyo{:L\7/u OLŕUdaIu"cV@U%eaZ?9nfhBȱHyh2+_EΗbaFzEBɠ${iJ"1l9YC!޼ dBiN@o6cXrO-_䏧c+Ghʗle&K8?emL,}Gl $O5qTҫK[Xb&uEtP.ԊUQg(-y3-x9],w {YSϣ͡6Li9PL<~.],2@[x`7}^$u2q2|{XVZځQ[yrGX>VUP2@L8XIN; gCPD>Gl.Ebb-\al iko$4;j%L!3mVke k}?;D}i&>Y.Wq~j f $R6N۶m;ICXXIZ=<|4[9O"ݜ5Syu9|qB3JLNqT [9s|Kg[E)7IŸfu3ͽ1h&)-Kn-rrTH%nJ}7KD``[a -D(B*ivN5? ;AIf̡ДqSh,e4B w`aygOR^XC~J|1*zʨ?Fl1^> AR_MAxܨWw*7^QcoTA_ߒz{?'ߨBpBjGuǮ>tlj!2/FoDtxz&Ǩ]; LEwP>&j^*.^mmb_|Jhot#o.X0ede&D?u*!޻:.=PO{˄7ne2~B].Vϰы^E/E2^淋K,~_{}/C`ƚ=[Pw3Ӎ9^zƞzql\bs ^ wnΟ.wcǢfZ {Ł}=Ծ{g8E/Ɋ['2y`?Y(O8ڌ:9a'l68o#ϟk[ yR/\'-7qv葿"G2] t//gH߳_ɣ'BAd4ЊTKl1. d.@gw?׌v|'?cnsr &u2a~GEM%E0rπ{Iz7m`ec8VX~orǿƽǻ#1U?̫~WW^]kuOv|#!"BHf?ݯ1lH5t],.ڀ[(PZ 9khKWBkƞ߻M_{l)ȱrƞkfcӦ7vW_]}kcwOl^65cS׆cQXWʑRt4B3_|4u) Z w8ȝ3'wOmډա8ut"fTSEk?Eks_7ÍRZ Vh5Z V`3;3haӗ,z>\ˋ |LMeN6uO=qoEwp6_"H-HyqO {ichc-5X5+]Ob ^+^1^K(Lճ7G!^OOO[ _ƨ#`k^@ܓB-3Z|G,w e~/ 籼+ðrV.eX^nT{te<,Od_`RWyoHY = _^rPn-ewT'X߆fZ]d1=oПd[a5=@ w]~\25bڨ_[*e#k~X 2'7OH,OեT $T8ȟmWoE{4qd~Ry XWhG_Mb96K]u+,GPEikͭHLfx+?ٌ[# 3Rf欠1S.: Բ҆I*h#Cd~<ǭKَ[5\z>KǕ2&P >c4hͫ}! ZaQ&( 9+~M_9so7uv͛W%~څLe/x҄'vMxp A?7@['n9xy`vğx:m(y p1z'!ܜ!19+Nd9XP-V`R ~uB@@x J?eT bŖY$Cwc3g54b؈B6ˆsb"=ūF>>ǑIw*㳸@|7<,Rg F ]vAix-]&u z&y#!}DNݒ˹#4R/3M.,}S}mʤX5|M[9ӄ ae$:ߔ/a)>\OA{:~'U}v Kqk N2^gHlTA),k6 JV*c紷u$g\| d o?=NbqJ4=rw =JoClteO=%19AH#N~Ͳ"j(hZc̖#A$$!Wo&W(88\&xӽJ\hJ+m82$x?+:pv$$aXiavh56ת_'$x)ʻ v\8 ʻP˻o|}"-_& ?Zb+Ϗ`:Gu䇑P-z4W;AVjc T-8$CLU3::t+)C(kM E&T^%"?`MZ -%i_~ 2O&d+X]Zl|bjBBބ_'={H4ONЬLIPOBBzC̴ z_f~V\ .f✩٬yn?SoՇ<< ^~;n!xeBBrmCw Ȉщ1!1`uL*_?x)BYN#cpvaM#^ߎEB7:M'  R=?CPwGz1??^I0=_Yp 玐Nםl j$3Vr㜞S1 X,DZFm8׊lWsvzVnʗanjN8_h^kvISRxx!q"C=P Czhי^> z \sr°gB{h8gZ3^CAmIR9ϳoy6gR KL{-{!~x~@ʿJ?O?k:~\*2N~)?ldSN"<\934A/V )=IHm0GtI{g2z&fcIsI>IBRvm !֮s ex*AD#,{n=RJ 3?`Y9 fl3-;,'u:[C/vK%| 8[ױ[)!D; Bk_$X~ԝh;+_x RZn=qB HRzȟIC<瘮co:o `8q]& F&jqN#XߜdtIz3HQB5RS G{(OTȞ `[=M|cc2i:=b$VGwPv!"6~11OΗhB ޱC)2pX%a3BIx\|c"B4:G~@z8~$~<`IHC+g?ԋ}1H>}<|N}>Ar( n}0Do |! yga5Re.%wwNEʳKJnP$Xat |EqK&@F>mSb^(-bfj;W_r܁Fz+ggzh:$fI\fZ~FmR!8!:95Xm7޲ŒMXA`I%p*͹#xa;gPgBH*ϟut7`%ͼO;[2ic;?co2O"~&62=0C;+؆s m&gL>NyBc_@e_ޓX~No7P?$? ?E~fTo[~cD_'A%G<]Kt@gFV''Ɏ(>wSYեBϞ:>b8'뵄^>p=1ʋ&]' }զ@·OVe×lbzmSDnq(zg [S[|o{԰u6!ak.*RqUJnbV*ȹUdK{8Vllga߆fTrBDHvaSzrT =CK2EJD_j}GS-qGԻSЏOj }wOV>5c/hO`F[Ia}AM}ewX;5\0WjUM;'=s] IxkOڕ=})ۓ>_= aCڌubXRdUb8 8;Dh/Kb g(] QltYY|: ?}$;SOS=[.o,;{?%ֹS^ F0D;*7;.)ޢsG(tp|Mκ|Z\>ޯW2|v$i $ГLfz %cZE%X{ !g+u^fIms!]OIq[]&}wn3 n`o{O;uRvHq8[C>?M:8ȇި$S:=ūEO?'{@j{mTSJ Uo /||[*cg:9GJ+NP\^g?[LHpT/x? w=叽-^Ǐ__D?xrmg2`9sli_(Pn%_r 4( :TgճT (-Matf, IMt,gA Xjc s"ké_{* n Oq}09'FW]VLJo]UaG)_ॢ H!JA^y`A;Y$_Wf T1֭+ƀ'`[3VV iZc!璖qVl~|yv*7g+jӎ%Mg VLdV䶾1COqGqG)؏+| 7LTIYČQjauԉ#ɱX{:MkRʠR Y ,ᴊX}.mJ8@uK%OQ zo~um3Xb 8p:w`y)LX.0+%t& رPX8/CnX:ÿóH!qHHv{G&FY#0 _d)#,@$&K,%dջ3_Ly ^KYfm+ΗfHٱ:`d/6Bj"?8,Rd8[Ve`m|y\ԹI4(nB4y!$&5_ڋLuWZnppX>8v#?0-`eQdTN:іJ='87gCxVI6qB,]L5!$D v_:mSQ8>ѹ@o4뼺a%=^d0Jcb6.W%}y/sG:h`/\NЁ  gٱ:st !ad~5(j̗D/䈩+'৶xp\.l9.!XrЀUL q@~^JK+`Qkcbc {0(puyk)#_Tm[ 7k.%,Z{`*j%崳,4a՚.FH:x ](cm .!$gN\MW =F3’ox b^}^XVySL5_jc0 o~:,,N 8b.'q1bkX'ʈL:PlFqώb>e7|Z"@~p ?_-~ RC#GKx 9+8R^8<_!pox5;cb?>6}҇]aҞoA<h|S »`͆iKωϔ)+\bzdZ:|L Ywb k[ItУO\`tg|Umcb\|O))e!+5L>5l..-&޿fFk"Y?Ws>|yo*n%37g%%Y dssp˛;[gj֊ﻁou]| ߫,l `N>\|(h)'!0\z)/r(;6N2rY<ꮾ`[av'ac`%[%MDs'ܖiCV'wF@[K]is .<ScS$H-?mk(z4ާWtCmlf Ca5"05?s1<+M}g@d xNs:Le3]S)_mڔ/ŠSLMC4͠ņ? S83t6H`t°'s ~m|D~H|]\ fz MR&c+`F{0ߥ - Z֐.}L1ʋng!B|y_]@Yeh[\aK\,/Bqֆ^uֆ^B ܖF\lu.WI FSn]ilu?k8LIff槰y&:2VGɾJR?̘k4zȋh9z02F~'XCxXxnn` nۨSY#[{Y9N|xn/d[ ş)[a'2;BnԪ ].K)T+%>'Xb%%.02gz0+|!~^yN77Ϗw䡽e2A6yS# :oS &U|VdjٿR%ZwKfmL݅vv>dg'w9k+XvԐ2UIwJ'θ"S81[w< :wC̗Fvpyjnb(o@)$J,lb<{Í 4c[hll ;\ۧW*ә|)R`9G[s6gc PB-Ш3F:>U h9{A;ޅ6I j3y8c gqx ǖОܲI+L4w{%k&.kyk9v16S2ј};+?vٓ0(zmR-FB4v#uTؘo/JndJy5q6dVkl:xjCIa/EJ89Vê*yo1~=Aݒy|Bp2&}k4]"ֺUh"5Ӻ^CW t=;>&^Dt&]0g f<nsȏ$akǪF=n'{ox)JJnTnGW#yd0(S'bc)in:{W @qݔݸbppK=W Lt ེAnM΀]w]=ˡp7vTkhbz]̗O|d~ϫ<ѓ=rZh.'ι'Fg@Tg0'Ԁ3݈0uo!m??{+ qn*iQߢ{w6,=r{Tͽ呶hݯ[DWK@ڣz5#u=Lڨxd~_uhÓ+Jڱ1c [E/mb$]ca]~ fؾۍ'oNin=78:?fWy6od~kMhh¶Mmlɤ=73ח=Ir}ʺ ]'풤0NٳCj|)ӫBTH6lǘt=Yztd➂$Prpe]6Dt并O}෡[niT kU:ӫe=k.+^[Rg'=1x M3*v>pǛ,\-=bcId_ʬ1gҮi5<_If- <6ږ窞yY%t?xv1<0 HGʆFf%̉HtRWJ_-)0{#Jijenuc@$@*~al=x@M ÛOXC鱔oT[oqc>{_dŀҘڎ,VѸOIڭ97ߑ[봟T[I{:ҍiyz)ĠNlUM\%`\2eoeVM.ܫCK12PgŒ$U=U0GZ;ƎTHVrJ._1wW6FK, _#%-͘gS>hgS%{PK@a`f̒,!φe yv!uyȳ!Q;/8Oz|Z~.Z] ~4[8'sөru& 3n#Iӛ7\M3 W*䔢o)Sx [qLZ ڲRiLB5r8IrPSpolK5ڡRS2V|{}wڢyHOs:É칗eK'6XAKdC?~bEIc~{U8".L͹D(tO>Ѝ2uH}#:lwDo?0^C!/:9tͅi]k1quP&_1_uXHTR0(gR\O4}}6 Tަ Xރ#nUt3 ua j?tΗa6+utmV8S?RdqZ.R:u4zAøs?ﶬWtn8cOMfOJ-Y!dS_96MJu^r!F睝oY_pk"ʥWq8r|Hs\a>x{'7 {&z^`6\8E8!1Zwn0}ϓ"( G${?3{A(פ@DV sZ mMĻ]0͐#~Dg7y yTNCu*Kd??Ш2,tko%'/M4SN fS e+#œ}R1KN&Zd iS7w<-maC~Xvю?$VE~rH~ή5\0OiiLEhڒV9P|-04JaHfHcFSzߤU_n WhWFR]; G6QGfWYNwjuD!Vr*0L3נܐ;-Gs8߈Xc?J~|Xfֺ5Z ԍ$ґ-3mj7"ߜ>zJJf2rw`u`ĩ>Xσ_?#mSlO1iH1tԥM+dʌy v[XeUW5+O~ǝ1J6h@֠D߲q4= Z?0 yE˗$sL/5 ootG,WE~FA4FsUGd?ߵoicH=b%Z8"|ɥd@ghQ9~1%ڷ[7dz}zŠ>MEgy6-?T7Czje46qThzT T`fV("k|O7)o喙+)f=hzfVį>wij`ޒyS3j+YO׃[2)_)#vIIq_px&2gFo"&//5r7 ?>F*=JϾwF*uKb[*c,SFہ.Vqh1IKN+ә0yXtcL5m2uB(o&c+HRKZw*D6tVMӱ[W=I0(V1#;Z 5Κ`qz9|ݫXzFtRR)oY)<YcͶ'.ifJ7X$$b~>i㒱Б`>gwA0V4UA=goes=oo5z)Y V8k2t=vw!։ww23osirV C&/;]3Q7rfϪϘi򎜢z7GtF3WLCanIgE'uB0/yXK3T^n}Z+$E?Pi~)֯0~[LKUu.bcD^DZ|X@3>缃9ӶV4잎Rh3wa g&LKT׃)n=?綻Zk={tl=,9y"oK--qəR~C{!KwGȚ8ڲаaG {!%e$a:R%wK-K>f~tTNQ U1g5خwJlڀ>|hΰ=;[k=B{~Jw_؞-93mM&nq=4@j cojTh}5^?)*x!q\BoE^^9uT PPgw_n(jo.?W8gq~k&r~wo#np!,2oZ_U --|h际Cˮ[,C˻ig`t t)w w {O>`y֦~^(ERTtdeS,Ґfrt̘ -/f+lȯ6H2P.Mĵ }P Bkl|&u.ί7ƯL Zקsƅz_C{ȯM&k?؝F75f Ǯ ][_Uz}8^ZZ91m,*$ƣ.zuE$@n 3XsT[9Jaɝ @tO6vd\16\7f(Fjᮺ|򜏥&'4?C{g}WfmӛP TDm3sg<7rura^Ew^Ԃ?Bd];xm/ӄUD[t3v\ K)K cBi p|rÙly $o^ZDkll-xVM-=c*Vooy/ߜY\4-ʂ3a?߰Hty7pϺ~9E׃nu?%j~1 +i[ήZSOݾ +QX ,Z~Q?2>N8қo.&q36.+iFD/6TLܱ{ZNHrҿFϜ8|e9)V>fm~}ؐZ6)!kZT\(0ЛڝD.8Nv#NxksgFRhw&a%tn~"m/xIWIK/<١]%I.U{Bb!WO{,mdD077诿;)N"M@n*I+B>dE5 ߌI't]׎vj+?O-?\?ۣ[ᅅMs wQV_;:RZ%҈fRyRWJVJi4teLJfRzY/L ҔϣSZR))ͥ_)R XRJͤ RʦSJ(1)]LJ뷙)SL)\)emn/6RHi RͧIH6J)RzRetI/͔:SJ?r(bʤtJωǔPJ evg>K0; ݀X$AhbD;zM5T" J~@~D_T7ѿ|fE-gSD)4K ]; ѓXB[݁З +;D9莄JH=h >r= mB)izg t/B"#=@m[bEtEzD7OFHj+MB{I]\5@M>B%XJ,T@ބBD1a;g 孏0ǢkjL{ЌdR 1"|}?.@_Ǡ K=TlY1n'ЉQm?&t{Bk5יu1%Zgz;(o@ъ7Г߭}@7~zTt.wWO.%QB"c!i~Ί[z047ѽ@!}@[l?O:m8wMt?=й>FK=sKfKW/ߔw@C/~=SwWg&o$t׊d{+OAb觾=Ы]L%KEhds}"EvDśm2AtWB 3хy(>~WoAMIϯEd} tWB_F) ctKF7=]A>gZ#kUBWaPLЃ N#W ?GwD'wp&?j q~>1Z+ m't=S`>FzE7)zW,:AwAyz֑J>S=Zl5&Ob/+s 91a@#COFwŢ~BtB/z'tܞY*`WTjo2}c3 ."{}(WJB=pvKnѿwAFy%_=MzB/"kPS,eM葄Xm}5_B(1@ a 5BwDWF8B0{rM[o J΄Oy,ЯoZBo>M,[=˨Do;tBR]m=~лEBB''ŌD (B"}ihNL+=zY1: Ǯ&9bK?_&tY]=Co&u7\1 KZy"@8ְD}= 6bFO5BN,B,S5+:Џ >п &9g#=X/ sнzQ+m.&C>c_n֘%E~YZ#-sz=ozĊ'Зz.'t/޴)F#:S }*}vlɿXm:xB)Ѕy?!"$-sݗV4k#z%tfL=(з' @'#-WtOBoO$Fr~@,v#z6 2 ގ{@} }…]lЇqtbj }}6' oƠ܅衄V}@ǿõL>@,D)dm1U'mB/#r3]+$t!? 4t@ۉB'~5+mM^@yeX@z~Pމ-z LD_!#F voE[D#t&zYĜ햝LZB?Bs i!@$? ]HJ n}?8&-ZwIBPI=~e}D!&8|>_h/#:C@o$k 4v}#kto T=5[FtxkooE/h?WMЊ8$#=z@X# YBhvZ3_}--刮g{Dr~zU7i}#/!Izp,z@w!^dɹ@nL=DEㄾr5{^KV ˄ХieL=,з؟G t_ ݋Я0qۊƙ>$TB68Mじ|?%<|DJ*i[:zHcm-bt=xi:^B["J| J@@]p™*i7u0v$ʀ00=.HBg ¾CHx  "d?@! <c8t6^'S0pp'q> E6a9|q #B+?{@ z/&'=_|"/6!O?o?«D(*iO!1 ؈ũ>؋?N"A#ЉOC9g#!Ӊ0큰k=AoAA "wH8 B"t4Va8o! 6b'B>X"< @8+ ہa@F@  NˀN$|E9D DȀ/zP CG.\vaJ@h ዕ@XJ+n!0<DX_a.驒6 SpBg"H ! x"\@XRJZ#1 HBm |l"LT* 0"(·P ,!TH ;:փ?}c[M[YWɦUO6f_X׼_꺶Y]leSWk5u_J7df2 _գ!03292'tU #Lka=Tl7}_<;~6\p֔wak% "qBQEuy[Bja=@Jʥ*<(Ө70cjWŸ&fa=XJ|3c˚+P2+&`17\ɂ9)5$5N)-kBk5 y|<'|Zؔ# ~S&of\@iz$MfoVI28\s$IBSRkZJ񿐞|צ1_>]^b/V^^^y/O rB_[=+ bEygMhAwڄa=ئ>}nJc=%C?^|1/hьetv|_X=eJ:s]QSz?bamfUDڶCavZ?M}\%},5,dk$X2Ia듙06:7"ZmwBk_ ~wɣ5=}$yZx:nbfrbp K)BhHZ:aj+sք8kBojE߇u4%}:x^>}ф~o۷~~'K-Ħ!>9\%̗`!} Tdkl͖߼MIfwOX-j2!#={G6wa=Z%}'^2qֽt* XG)Z9ϓ6y6ԅXXa.cOA3eW #?+Mv0k'^,^j}]>LIJ^ߜ0\xj z01z#Z?#- Ibe)S:C5CoX t0wywVpFfkܽ*n@Iw);xx8wG0re_r\3) s&$)U]v3qqیVety7nWғR@y8쵽R%KWZVnMl3AqӍSlf/WɁfBYg Q7J&REPWv)weg߹SLV0=-_"=F:pdW7`JxYɱ b=  `Γ(HrwcS%xqr)N]3[S|>SD/7群c=q!RKxJԿ:S3۰6>MkooUk_,bT ({ھb,]91LIdx˃vqqeb_o o0FF,0p,q;~Qy+R #Iq'nԚDswEa?\YT ߱ &F6~^ڮ=$?Nd k%]i6!L+̷׺̼`HIk͊2'D+G21@#nT5xsjƱeX!~7E@?2!CمzII}N*ȵ#vN7P2EerɕkЬ%#Oč:U1IzEyq+1/q ` DkMeeMf^۴-5Km.*x è2`Mbe`Y)S s(ɲwP!T0_a)N`>iKLfRr -I4`7tmn(M /ӴZg rMrGgMp:V yR_+Ut3$$ŸkYx[8ˇЮ'[ gUSn.YзÅ >nޕG ]fvybyJ[ф'&!bT_~?ZӚ-k"ٚSE|H}2S<+Ud.ͯ}Gy-hw(d@~ѿɈ~ ?|вrTc~/#:i:YиG$ѷZB#?dAhIz|IKЙa &%~ 6}D]RԤ2"̂ȱL*^WTksЏ̟=Er]:vhi#v6fsZ6mwGh1URЎV56dU[sjǵVWɦmu}MMW݁|JM~g:2-wsk;(vϽ&jY'V/>^%[-ھ`wj=PvM6OrRΖJLKd>9 Dq'J's]"E()dҍFUê)+&F_4Hg 0a=X}fW!B@+}J&׸H{Ac/ J-3†7_YGq..VJ:G'pIog:?1b%|ʼ8)&_Rvtyw0#^Plu𸲪.Oȸx~%A#skc7^kLΰQKRERڣ/@ς+V21y.-BWgjA;wj*Xf0[\_R0X-Dqpbn_2o yQ5nu[-Wɼ$][' UR)j,1ug`.]XwU@BEuRsϤE[I/#jTL@!u3) ] ; $J~ b~mM HygML$ykGI1ik JM  U4{aipIJE,n*o6CO[6?p_H!+օ&Wa`ڒP|)ij 4*5$mbU&BPAbfAw=;kzz>G7vƒǖ'HΚ3:Vs~xNVv9 %s?  uC$%KGGwe.e6T( $Yhe>9f'و6: GQI`gjem JtoN죤\% ͝ub(z%w)ǵaƿjv(crlrf|5"t&`10uRڧM~Y <dsЮ2zpk?)fO Bn1SKMޟdl1O"[?ɺ+'5q'Glz)Iw'.K1O4y죜)?7F17s8wn9肠$O A{dijz0Ey{Y8~ ?<mh&AʓRJ~ÔƤ4Hψ [)]]a ?[T_95&zK{x< kL))];shzc@OXcbt#7Փb[}_@@L{ t֘}@̈`=nĸ /X(MǍ EVԄ)&.1ۋ5a3&> @11<&R i 1Ccb@]$@sG|tzׄl'J6úجCu]IOW;a=x$6ԆkQ☧D2'0Rٻc1k`0aGO-}$_10+gdq8mάpF`sN ۙK`zqifqled `Fi9"zM1v(@L$N0)ly?昶w  NJf26X .Fc?n<$Q22˙hd^ . aJ{7SYeUV:oa= '\l azR̤/7κ]S7]v}~Q2cceW3 yCC|YqaW"{D\Y}*-+`>S[/k^|[ʬۧ=g3Evh8$5!=@ԗ6lcَ6]םt6S ڂa;eGa3q%q9d0e,xJ{Y;I ]7^nen\np֕޻jJ@4yEǬK4!"(ҨDy;.nV} 'cXRj=ݼo,M Ŏ|vlzklc5oǪmx cf/#?^_2І)6.f c9gQ(jUsU4Dz7iY 8.4/7 1VC& =oS6e+hгۄ_5ZdMz\2Z?1kcv1%c k{yaޏw`XA=?5R/|Fk/MsdUwM SBt Hrf}#:OƗ{\|`>ĭ<'$u<9穏J0eaCL޶]2iV[LgvIԃS""{, JBL`ɏǸ>Y/ә9P>L1_˞K>GBAFD~У=vG2[5P~='zO$=Coczoۣ~ͽK#f5/ؘ#~<7.N2nO*Wg5$I (㮞>Kw<)zyg<5V} Hp;=㠻;M]lj!^e12ѷʸ!q: 1޺7UvJs ְSh~SikG5,c.PJ7ʖ#j6N|,7*]7.e@3%6V%}&=}.jl6~q1۫r Gteز*rnԯ  Li_ܘ3 AG?3KKxĎ+o5%PoV3otO=OP?z֩s]=сS-gFbts|p_ w6_D  $_"DPHMH?C213 ˮkl!+PNx<$Yn,/Oi混v@."0knݘK)v°܋[C0ۃu]dX.i18܏MoG%2O}\Xo|}#zjܱu w Ʒ;yIo>&/1;@E4/B9~h|[E`PTGmCkuJaڃa=F\AfDو+f6SWی{w2{q]̳~:Tt]*1Y;ԹgPnG.)lxp\s VntFg4 W3uanFe^].RHY8 \14UU?JηGC.SZacʃ>epōk )6>=nTŜ58k`,K[*)c7ADy%݀6󃎽x ݚ ۮTndVSz` W;yUIfkgI՟zVˎs,/TpW{tO3)#?چKR(|$;˭܂!=2%9:#KB~&Yl xp;D>6'E$\o٠4 bpD ^r+y݊ogp⛙'Z|'yjSa_@Q]JFsm1~s,lp[ـ '̶-zoad[ɦ5TǓ/Jf/h>yopHd%+R܆]Lu(N˯TOsMAܴ jR ֻ0wʬ-mo>fY˔4m&ZjC8&pFZ#o}hO ܨ렢e;&ܘgLEk`|-$\7oՅh0|?7ƗOpX$`&kd!wU*u[hۆѦLFQ *c m߹]y WEhߡ*GPR*?ƉZv15L T+X %8&[" ĉ'x/P p\*\@ƃP߁Εh:lg DDrHo]9R`P3y6yqhm`6*N2PjE{3MS$;NN`G6\Ϛ Lړ?<{7mC 4LX-HY[ln!hAԊUPY,j41(b- PEEpD(y?;ɝdXLfssϹ*F.I)9JR.A+3")'Q05Sl[7:4 iHuU:& G\mu8)͇ͳ}^XYqme':K^-G}~Fy z'g k;s}1}#ZMGk^j_:Z4dbrFU(YV| jvjFX\L1&BWojyҨgѵcoƳ d7iHX54أTo[UX[M9 9˹Lbm@3*\6#{_VkBmSghyoKV iZ)o\Bpof0-F `?UH[Vi +LfgAwߔAf^"Qn̾SV: k3Pw.gPvy+\Tc,X|s.{؛63QboQ<^{t^.&_{GػǒD-fQar n,$ 4|BB'4S{{k䬡kF߼27X#w!D #T?U_}ߍX~c6l\Kp?u<\J?o٧f-X(vr|6>2]WϤaۚi:OW_/`a= [s{ H%$X,ߧ9C d\$zF{^$z=~m0z]]MiHw mI~*JR^{1)ND_c U'N WuyJE>|T}pU& -rbߗET#,n9mITd(o  MjmB_9|r 1{M|xhZXcr NO16P{{G,^tzC/[#<ʳYԗ{⫇QLV.~cf`W7+y9.`iszNIUU*5V~äfj@zGuNh=6XWD?UUUC49¹ Z8ܦ(MLqia+iTZw/X7~} D7mi;I=մ VQ*onsLԾgȏaW?J}'q; 'A=gp% {v "{Nh6w }<b]ô:;~/]Z\U^*Izk &X/|`gm4`3iSA#:/-/NaX6'˴ar4$|O |[\"[\٘P|TGM\*;bO㖍.ySp ̲U8!GSצZɖ\O&uCne ({)շ%pĥП q:W_U]f'Do>ݹAwշ=pƥQ9L2y {6V&Aͩ\*6mŕSFsxyuქaViFT͐Oe+Zj͚ەs霎;JM5ԴV{[Tu.7oer6l 픻[2KM5uԳySڗ,*;Zۈ`ڛ|#}te#=̻+Co+,7o1 suS4WUe/|l_㿦 L?IH`0>s]ɞاߌ[rzjٷd{ŅJuϴHSndvΔCն*SLvmN*ORod{j/S_Uon*S}ôIjwԽ'_m_Q$\D[[yrvRg4[K=' ԽuFW*OSa~v.N9CΔxc +E}JZ 7;j*l zAԋī>2hk?>rيkOsmhʶr:a:]×UcYQMr|!D~!T1[i/a*Xu m.4I2]:D9wԾ}\kTbb ִڰmKs}lrWRצč]7)oWoSt'r$y*ZrnHuJ]Գ7g ;^et"6^hL{ʬtz6ДꮚGSw3o+hF#a_KBTonoZ ~%[ךZj xRnOm #+)4W)1UZ} uM׿p'Ej#U'M1-:vb=oHĬbU*viپٞ=#5m]l!ڿFSVFhŶngJ5u,)iLbhu7H pPu [ǵ/PӶP aZEr}%Q3tLӾL`ΔT ҅=,-k>!SSE=qsnS1f[z8F)m3*_+UUӪ|a)aʨsqy~˳pF2,8M9. & g|fԽ??zJ",ºJrj&U&k>3@# ;X_ xFD殀^8uoر6q,k9';4NSPϟǢzNeW54ϡN14:W͝#ԥZ$(Brk c~Yٹ<7s˝ _0n^/4q $1$tTVl"dӕY&\J,N*f"vYƦ}No\'k7;b(ɏrWIWs'e$Gr5IMpws oA!zbs9aIwBJ | \jдFgBZI/v8 d+B|[:%ޤ)OkHlww_@V){脝X.eҪ|֟=|7Zd{|ϝ?avg{j}gOU|ϲvd{vF?NR7ٟ=&ի2~/wT6z֩7vwMĮ1T߻g.;cmZjrW+БO$8ץ; :d*SJ"Je눀W/k!^c732$=K76/~.Y Sp1=0fQ}T6Kީ (7J Xx Hʮ%ٞNl>VGr5O}Ӵ7JaWms%_PϞ]Nvl{zS}0Th>K`i6`f{[ߋ wEaˁSN)CLz;9R fkG=QwJ%sR7 W8P,Wk-{S6[4tj"|&Iy!yF|-[V4w"d#<:("+P!Ls*8c{[f3%᪶>G mvجd#iT6:|͸B;`-,mQhh;AI$(O/TՈ`Ur_w-166Nlh\Y8(82"<>N*3 H۟4R._PYUxgZ`?X3U0A0e~5z*U*OeߢqN~IwK^T>g'5>U4x$pgnPDFh1lZW'wqInG.zLO7J¤ l3khQjj ʕU[ϋܴ$\N] ͳUE=yq0-gE ^5"8ކ#^,QS:vCmy&; !k .@? RqC2LnpY(Jג+'F>P|kpcc$;]pL +gaJSNj ?;m!U4Wt+nsWuzͦlޙ 5Op\#h*>ɳ%:aobε̳;\KA0^&ase{Z\ G&Ձ~zu0~e#9NBe {Yp4ЀR|iTdń4&8' ƊAc&wgQ fѡmk&Nu?kn5ʠFIY['"Ut]"tDCx;? S|^R]T")x&3NwP1<ohQ!i6nZNPMv4XcPD\eCǽ-"ഐ8|낄H%pG+Y$>ڡr՛0芕Xѭ~:iRovdI* :2" 4${籚QtSEO큝<7n)$?pa(y5y6۶<b>2b- j^*'sТP* mq 4K<:W=;&cvv囍I˅ i F`aKxA͛D$RUi (ɾFzaIZR]SX G.*37^8T'wWҶvzGfeWa>lvzY){|MOLsSy;'[ibG?ֵ*79=uPY㔇uwIaXs`Aq- T20 Ws``q:UoHN" d !yе}yFVRjp$H8*l#-$F53AWq8A\ԞБQWT7Mk-g2[}n'SO2] M:!=vb;-Gʒ uY1Gp=r128Ɇ"!iOu:Tn\eI5?]pz?1.s Ld'zʹ ;KT43Ƭ8nWDyyտzNS97p^@ ԳG7/29 y2/7=pQz+UUyx>&S0(Lr1̀K=vNw&ۨ\`K܃SFceAf%O$hPqd+lĎ'@;Q{<_~/r]տ?D)OYfv~= W`6X zcv`jG0|P?v4kJ^ O;q%ID;_en(l.'jyÖ t*[e43/*C)ѻG1ќn{?BYrc OWGZIrƩfqT67sd&NBkSB!ΕY ucSDi|ΙZC=۴f:Z3؄3z[QVE ޳D) {τZYi[qTV]љ+xGtZ}(m|Bgcu6r}@m`_&¥SO5 z ȞoEQqN#JDG=][3oO=휞AV${FwTbuz7\UUWaY./n%в#a>+X6K"AEnx,^јwmqؒUͱ-kZ;{s<<{362?lFIa(L9lnQمxa)v~>3ߜ-V 6ƛ3̬>g 5zv!*1pdyw%yIq*P'ҫLUzUln;tsY\)]Xy3|Nj~?tR&Z= dB_O6GR{n\~jax>:=QJL(-fYiUciU#ؤEFR* Oq4f:⽀ }/>bÞch*wbN{g2u~Un,kXEu%80 }ڔQqaWŪN7Lz:d͌ |)Mؔn5 4\P(((_7_y%ʵ3TP;ʿR-LvL/k#Elx/bkr.^D] M{ڨ{Tz!/@#g t"-')YD>!jE-zV6J=mSf6s_ؿNaN27~ ɶǦ'gh;h5Nhp/ѢjBLq2nII8zsLs8˕n"UQ.5oRfU$0*$Fa+)t->~h|{>Ì8<7RwЄŹM 8z+fz-7n -$ԓ6j,OMh1VYaU8)?}VXX܇xǏMPU/ΪT6?+z7gU鎳j0bbw)R9i>kZQP}-i$ߕ'TyUU^ }Mޅ$I%V)~=6j\4EnqFNoBk9WV䀵'bUR1DY[Vޜ;<hbe]'E(M*4^X }/QNlN{)0o%Ʀ,;(t'_NJ;*gUυn䜊rW7$Sq(]ZF˵-dW6)ʑ2XʎN}׎9 ͖aoC4?[ӖDQ&ڷϾz{"}4N7*)QuB̏|/4gT- ֟1ߩ}T< .z)f6*T&u?VJۓj%w5c/Vfm-;RV0VFa[Sf| wn/ԝ6n,~VUfl vS!֡!1wJHIZ?edi}hVXڄҮz_#0f Rau?nvajA DumnIky\؉TT6"4*ꨫ4ۍe:mB3l|>69*NNr:(-hџ><]|(7D!/n hߤucEpTr[(r`6ț35Mrvb?۶CLk'iDD'grF1Ҫ+㠿^)0l7%=uԾo j>av;F4VVVlYoPB?ÇfĿvd@<mϧ{ qs+ :^ cea!kQ}cRTrفI H?bg1IwQMւq9AӳJmYe:kf&kgBt +R'3#? 3Sj+-7ۚFL6=qnDz\$n URۺ®sL*ͳ%1M+gR2N3e}$ MxMȜa]c/dS`52zt#;Aw݃"LoW"3B=So߰?@叓ǵ$CU]*&+[i΀;γ;jI,yɚeHoM88|M$},CX,@>^ȹ&M9W{h`UAŶ:/JF͎e- +\S{~g(]w*%>l3d[PcXނji?ϳt<˵O:<W64?!Bv;Ω-[+!+ ϖ֘y6 N:˸(ӆ<mrh5d ]ef5K*Qo'ͷAa]3 m5׷ն ,f~bOHV[ub l!C@n^ph2C0Iq*%ac//5qg烥GZ <ق5}as̬ nuܺ]ǭYu[*-2~ pT- _.{ћIk\9GvǞѕF1~ώA:?V*dZA/';ZɜYBP/u/-&xV>fu吰,_ͳ6~+T_kf3!.Ũ{/F.uu}g9X.YE&w"|r0ȭ.7<5l&XwPܝ@xAEP`$rJhP(SXcGL[f GEa*DQ}ګw!}L٨Sv+vG 6TNr`[(8.־4AZgk/U:ٮ*ͷ%+r_{qDwx=L =QW/$:"*8B^AoM(pS2 .S0QL!Qpm-M- m;>nz =p k*hS!C^j-0R? kńVS|⬪8;*gp]\@3=ҿqyOZ]~*?br2sUsTQ-E='}Cԓbl@=vCͯ;3(eᤜ8W#ƒo%[<ə%Wαտ-l*r2o"&US@U~JUu_KU8տJ~P?̦AIHw D.6 YT4Ǯ|~#qWoqؒ $D:3zFH $"U,!DP )ZնM*KaTєm8TѢU[7'#lq`0+܍m? g);kIGRaVHU.Z0HA*[6ŕ*&Sֽ<8o)mcor>7{ ho}A@ Qd!i[JnEDMRŢO׳®C On oe𦨹Ӫ^sTK7;lSa?1kn+zGu:K+]1Nk64B=mm*l=Jly$ev ;qh߫z%Ǘ4m-e q~Ct@>BX(_Ye+z/_F|K˹3TW$ kB]3*;-*s?Ǘz6xQRE\ylF#l]ʩ66{MH3 h/.J {"!J%w,v휥Yl&tl$̋2ce6Rarf!ʙ 5tNarbev҃"GM"DMcʢ@#HqT+uK!ބ:ubmYsPTu-rBݭqt|^}g-Tθ&|-*+5+;&);ܧykKe)SuS{NCՇI#l]]VoXѠa`߆5$_kKclkQ=x,qT}0=uo L۪ۢ>}& ,v 1;ayKFK6ČCTd4ϐKKocQ괱ZN&շ,dp p굼3!^{xavէy6پ04ܠwMw$,5Tf΅> ܇gϫާn0cBaX+xOR[Ϸa_X:d)Zvk׻, /vU>/i!QV#b,Rw'x-8ѭcq7892(S/bXz #x|;]#xG<{^8z-Yݠf5K/G."vܓ ߌ24\Lk0y0pzC .v=ݺ rÖq2ly933M=$YpC/!2J*0rX/[PjCF*.#DٴQsՓʖƚ!FX2!,Tc l4!-ʖ YzgK  Q:k4I̹]l?#$eW 5aS*rAZ'*[ht`{OŇ\a"Boc%s0w-7;1Y 3W,^/  AzJX F\5%R'Ʀ8r;'c?-v`)enm,R~T~ b)YW}sqFo8%kxԟ$DCw;3z-R d/0b{T6 Sjb8U .gP|9burUSFum-,EE,wKz#>T\ Q&ldSdl5*bKZ^ˑ\W %3񮚃\pOMA]j KGgDG|C]CЕY~iB?@4?EUU}W:º>Tk$ԥ!D5Bz(ji=[BZq7@3W|Ԡ]}}+ [x_gUUML^d}"QJDj+-km q K)!FqIf;\H5x|1l`wز$c۾5GKvdmYm(6[TT&֋7[ Bk!Zk- Vĉ(%[x;+pZgV?NzF Ws]x> ,s:K\Z1 Aȉȵ=C"+\,!ʮZt&.\[,Ջ8f&ڪ(KגF6RXY*x7zOr -qǸYۜ#DIڬEQOx3~B@H+%ڝ?;YJuS֟Dȳ+n[!1QhBJl=JK#L# {.ggQ:|ƛ\|IC׼*`f,f _܃7-%+ڽ&,ٷ4׆x]f9H ckoԺ %s;Ry&Y7fiPӾEX[ju3 &A9TT8Z;bD DiU_oa u u*¤Wat֍ {PwѫԐ ?U!ދiNQ}qT[x6KCepG~ ŻXu^UYxl8쟯PՈV;Ѽ,| REJa7&@[ɳ<W:~ o^4>x\‡(:K/s/%5y||5bY|1G0M}|=d DSxe\Un}~^v=v.[65bXa)Z6iׇ,%K0>BHwP)z]-$YUB?B靨| Z PEWz-EUc:Yrk(g?Ac[sXuXw`W x=ߩ#^t5Gˊ0rвW06NuBO`l|*npR16k7{Xbc:5S㽷; Ɯ./FRᛄ(j-6nUkx&?~{7Rrb#$.X4t%CE|P"DYhqQl4kw4 zialtPlt^TQL[ZT-Yұj^TF^T在•(/cv\'P*F]oŻXV]l|Vhl$,6N3x,60 c2[ϧ^pfiKS?4 |TU9ywWk3fyɰL.Dg BS A摄(}j%6}H<ԋ[Vӌ :JY{PVY!nťtڬE|lN!ʒ5X|{5ғ\Nԯ2cUKJ\怼c@tA3P^bf=jh|tD&De?R;^u\VRK[Sm}kx2̧US&4"}ԟ^Zq>2~ a'L 9836,4ߖ,;d^6&na'?1+?kWa(oR20W'`%"dQp ]|(0ф(o֞ |n7r{Ϋa$Ia>ҐR"G{P9\g͙$ YinpO(SE7Ng!t@hiUlKoU >oΫ&e?aDhMYy,-J:X1 kȌ٩ܦ Ǥ#PBx%L{/?EF+xd)rV&á{eLa4Pt4&QѻYQ/. 殺\;Q^2yku ɻS$\i(YuAyokMCd,e&v ZViQȪ[{KJ|/K ׉~]Ia}eoWKޗZh,emW>a&Be]PGyxs.(/Kna۸%7qtz!!ʯ US.W%o?Mާ,i3A7.!DɻD/o*5Z,e-Xηڿ%\,en鿆P0Mmf/_yA=oɛɛ9R&/ ѐi&2!J ˛-ry e)wUA{e(=~䭕;O,e*A[>L-6!/ߝ;5y؍ɛ#!yۇ;yzp.(/KEF ٤+B#?e[ܟz6˓wc~f+X*:⊸ Q\fD[CRtUkDy7N|֗Z5X_:V\_;In6nAϫ?wesq6B$C^K%P*'d?͛hmF|r*XWf{ܯbRO,Z̕&DQx/UF=&`WaR;{a}566HF#=]{)E`+lEP2#liYv ߮þ/`Fئ]-`++`}>-b@tfvH"6zv!aEbP`VYdd G`Eˈ}s)`a=a v;+l#lHi `xު~JC%LzE󈝡Ǿ)`ˌDb{؁E~J``?!m]X-`aEb{~=0L]rjm=&`g {`g>"bia0B"6+stl#5=دd#K- {$`gaEb#1=vK!lG#lHwB&`,3 #3EެvDbE쵈zE7VMۭPvNJv&EH-Flfm-b!;Z16nZ)`w :lSF01;EE`=eĈ,k)b;!!:] #lHi?}sx[1'L!6Q!#HlS/ 0`6˛1ԙPs#z-/M 67 Ͽ-H INs>0Kuð"?b_֗wf>'bpo XKc?y&7E0<uau:aLNclW#l#eد?l#=vIu#-b"A:<;„(b{{ }="` a|:69>BY" >>-`53)"ڋWaw>m o_tXuq[>9X7blv|D)k#b#vCW56^<|=2>5)B B6c7>>d}v\]!bSM:lM4 [[zl7[=k{ "&m!D#یaXbg/ F؂qҮE~ V=6G~\dwLD,+bg ~:Io?!,"bzE!l##P񲀭ytIvMk$v}XmbRLnMy= 'BDd@9z+v6?rkBl;BD,TľuX}{K'boESFGX‘eS9]}@5>qOO[& FX{$6CތVzl!l{#,'ze,53EaYU.4NЯوUz16{~ ;OiPĶdX]6z8v˨,V:[Km'`3xW_*`-l4v6RV,b HOHPB7zHgW?an "E]{Xa+s#N'6{K]"`XأuOGEDlbKFج"N zhk3wGn?Z.Mm*`fr#t;]G=v;a=B+El*bl;#l]ab zMl>BBS:IvA=Y)؍`"Dl]MwF超'ZW`mQx y;"8; taa_;J"=bs煰V#GHv쉮:!#iu28^; ez>#샺ϰDlvcclc#)Rgî- aW?h5O1;R `6XhEJ60n%ռPV=vWa#CN@l'=XaGF^"b!vCK_o-K<7}{lؿ:[#gekAl#`M2#B 7`; kF;t!1vݜf#lWC=z${j!]U u؞vЈZ #6"{+`U]"`OL0>0<">'bWjv]f}aTIކza">!`[oa7~ lʰO7X)`a-BElb뱍l_#;"J/{5t؏a 'D(\ľ)vȈ%EĞJR1.Q ? DqXG$+bGl[(`ˌnmuGl/#;#*KX==pQeiXDt(KHa#o"b?<>g;f BdAР& 4Q: HTĨ$ ш@6u2}!bDEM99T@fJ8=z'Y~J<`Sc.!(↽Oft 7i2Sم.؞X- aǸa%`,vHpX ȁWh&˰v.Xj`dث" X sTְ2Cǀՠ>$F6 ;G-[&ɰ]6 Om %ؽp]?n-C4 2latþ*> 6˰v." u,u%]8n ӼyH{ ܰ{ c.As8OMFE\"=C'$s47lw X6ɗa'!쎖.Cػb6ߠlʰ#nE칱`_Рw`Y= ;XpTVַA!!"A"i(m 6 `}L v n;a ~7l3 X_f4a[" nӠʖ?*y.>[(vy7ʰ lw7M`om'6G].}Xo,o{Ȱ|( B[-`vxw ;aa{Kc6l%X a_j)V@WdU9lO7쫱`Gm `6;R͉)j`!7l{-mС þm:΁] v~ ˗_+ÎDWuΔ`{+&I*vrT \;b:pv1=05?hXͿsvU,#$4ue|'w:LU2laSݰ%f`W7h>,~>nNp>/6j->ݰIwƂmק#a/D:E='l^ fEu`߻!V!n 2x==ց͋/öBq.`ώk_! v8; ;J}{x \[TM2a5 昰 WMDy9ƁłР-yP~ Yv];/Zpv,nmQ!g a %wÞ`1`^*þs.`_ڈtȰ#.[$!`OeN'&JJ79c!hbvv[#' W_'ނwa $XΟHg! VkH*/aaq(영 /"lv; 졬e{xA~l{$'lƹ2ws{ݰ$gc^?]m eء{, O,X_Bu{.| lw\%~J}avKsbj/]_͒`{Ă:A=P aÁeP !]dX>%>~7OXz6ˮavI [Iݰ$i֟Ӡl#2|s.`;phM"f"lv{E,Q=%Cc8 UṰ>ݧ2=p%O=5~WoLNo'5 zԕN ,,pSPmA7B e,:4Oy'};;H]s] 5[nX6Xm3q.`ǂ=ܾ`f6ZvӂGl6IڀIS>`#6Z+zG'5#lv#GO}`u}v6;Oj[6;c{? 6l߂ 6ؿζج ?Z+z1 lOj =qTOvqn8"<`o!:,>>mWfCn]ag-_!;foL}ض6V v>m ÿ v ؋mV`? 66أ`~rP*7@ A` 6 ت؛mM`Y m)6(k8`o<`(!>a}`W {&{b`)=,͚n'of7{{~6N6M vwc~+`gfv^N G}f o[3֊(݂l7] _ v)w"`6;؅;ثlv<ۿcCUm6l7`m`wl `Y?6{Vklv/_mgُ=fm}6[_vmvm`_*a~~`؀}3 lo=LݻEj69oe~I>lSlv46v8l`U.Rٖ`͞z֊&o.['Ͳ٭V;ff_v> u6[ *N1ؖ6{T vm6 ؃6i6 m1~,sj`=lT܅e~l~lՂ]] l}  {Pˀi~J;f{=>6؏* 6[wSܧ#)rOJN6fv;,Oo 6 )6l mm u6{IP=c6=-m `Y&J` `%N٧=fT1Fv6ˀmc`;f 6fk5߁}uvnkv; l[}_`jY `_9ܖus>,yO9_01X9Zu~|BU=sǼ qmx5PƧYK*3$AExx<0xhO$6|&%0=~gYnmL>5 qYRXd+; :ыb8~MYCP|ӼLasu|SۑWxx p#P8 /٨L *s~@U#P#CI̳|'KP#P91dw_*7T(T\"/o.V4.'˵'ZB{czy>7H\Y>/QP>msVxmk%yR@>ͯ?9uy8M'07'3]}Z|x% xEb@'ddlAX>'Xdm/aRX$>*P5uk͋j_h_baez#lT$ԙ_ MQ6jxd(<قڃSTW-̽qfPdzAfNҿf,m2[J>; mbNh̳<}6,z$^S*RWPyZ^yLW,|\AWem[U,E+ًEkm~D)N~XB?$d냃YG}<͊lfS6fߝUUk`۪l? H(qdCci"5u"M%0WqǠb~RG([J^ &e5LW^E zGŵi<G^x2P&U;?!GkqZżZ[)oK)ԙSIl.]uʲQ|^&O cғɌm/OޠY? f=>#I*0a'\%|Apu)Pϟ]ρ\Ӈ$0%ӳ,}6Yr!ҏ5VukyvcȒԚf񾏗0gA'CI՛~:1@]MY&Ҳ,4Ϻ֊PwyUbȽ"("Db@iHR:on+_'=y x9gzb@rJ(:2*^.۴?q/*mC N72}|!&+ͮ5"@ygG2C _E.})O̓+븻Mb_=KE1Y~k_+Q2=pUz~Y|UvZnm?w_e<ʙg9؇6}9,[ ?o1ʅ/+LtDWJQ̹}hTwhot@HdĬezxm>׻TB/$]/$]eP^A 5\ph9uEl:H^!mr5(| _ oIṬ5ظ {T,++-Z"Ä2]͵-n'TWǛeH>2 c~$}N~Nƛ7 S"OV_&:}cCZcyURY8ȗSZHe{۔Jzf(AV+b Xq dw7QRKQ̇zaُ@ ۠vdzER(P&ӦA }a7" Ա`dtfAO92[R9%6 ,ݶ'RNѠ9;ن >X)'|F,yl w3&CԹNw{VBn[LMۻę|?dOl^⋮|+yb|k6}Q\:yv+ѣ^F 0=-F?Ek#P7$> DTHYhUl'&#PP"xDmy_@Y/n}{h*fއ85֊6:Mqw;#0I%(P |w~_JKTU~^2 NJVmf r_0m Pdr˪NbmgF.SoJV*``9ʌ@y⽊bhPRuLW_}dDNjx!a|(E̾ox(ի)0|}r(9ڑPķ7 `ipVUZv ߐAF GPaी^u &U0RQpT^tu"աU'f,>YߙF1xZ|ޔ_Р|:ɭ]$L}}RkEo+\1$A nMØ_\#>H+;0]#^nGmECLWW2]"2DzR)g< ]a7a)7a)lʟV1]s!#0N@S8c/L\x>4^h 9D_{z ^K7}r(X]t$lrEW^B }꽟kSkufXh? c^#d9'E/J `_X:⣻G@e | g @jчZyy狅1+DN >C~GY 27X)YI =Tà-t #qPO?;^v ;c*5ˣ7v!'ϒ7BoBv1k<>盨Y)*ܻq7rݍ(.0YxXPVciES41遞ϒPW[\Qsg~'+P4#\zs<|hΛ`\RnD u붳ѪH8o?FZN׻?|dV[m0,R8\T'md^!b\7j]3V.g<͘4Pƌ@#y,e )KwLs˙j\Q]DC3_^֊t oy@4G, h99vs=w&-0 E1H{fX񺌵V4W'd- Y (^1%bHmb,bqMFxkGby_UE{1v)v쮹/./]QgSECg${UM'j ww/sԶHCCCk3I o 2]=G f`'yxѡ+ޱ"ɛ]KnS=|wFrkLo~lf=\zG1']n9P EE<͐'=yɗoi3Rӆ5r"|{g/ogz6k+E)"쫧I_^ _ /]_6e@gq>F l<֪>'ﯵwZ(pcOqOJ?32{2.,5|gYu^ uvY5֪1NhHu%3npΙFgPBJ) kteſ%@S{\ ΕVbx]Z̲,>`0֪^(z?)Vۉe,˼ւXUwBO![<[` ,=!a p4Kr's`phbNg%Żi#_)6T43+{`Brh҈YȃL *K >q6*ۘeeUhg#K]Znj &"Gk-+zdɊbH`nɡl=3TP+1S]Q*oFҢ8UJy3onиCďR_ p"b#Z%|fmfGN(fQ;g z.ғɡj,1*b.>mY ?MX;fR(3+oC yb#]- o|4w&7~(X6BF,s>،d-H 7sr"yɍH_kEϪ~?3xj;NbzOgWxG[&4YkX{x~E `({ob?_h$KdWY6j˲mZ\,fCِßdWhkFuR_SfMKڈeS '3XdʏkBnVaNbYVuOSޚC S -JEU6|N$֞y 80Wp^A"o]rr{M˩ -2Zg/ۘ1 wkDk);M{~6ە2ϞwTF+Ǒ(YڲJdV4֌y5/)R~GE6tz)nok%$~^ż5*R7NtTW^%%ľ @QO,+v1K@+=!t>vqK7I~\b~#k#p{7;h2aRv W]Ɍ0WtVimQ9$g` 񱙢\I?M{M'h^#L8!gS˓bxKm`i@Ҝ= 5d1 (IlON!%Tp)LW藹[7a%T8Y.Aw°N[xm.* A)$1cvXG'to3 F[)sy(m?.!_U[X]Bw GւClZl0ky-wv p w!+Sc_-FiP=B^@[-gE 5 bxJp"A7H}oBbv0i[R`/S!E4"AS;{(M|YbGh07+Wgz!%Pg>(P,ADۈ4 ԡN[gҠe$Yu=ɸ\яx+|Z+PcYɶO? d.B'.EA:LW/16 f/O iF9*~-ŒdƌĿǞ vZZ93_1)2][<OI'!z>\br(,—*Zx7.>KcNs4 T|Sxz % P[38E#Jb;E8ԯW[7Q},ƤRSJC"[*Mv=BL,/{s*Dz8\IR]8Phq g1OПHSܙQ) Gs?x 8#/?3)ҸJ,TgҟӨ?C'?ԥ?jo <Ѧ#ghS%xͫ|o'1L%1_BQeX>Hy L>`qQ}[,;KnYp _*fyci0?-6+wuCo 7ٽJ*Yy_lTlt#KStlK6+b~G\u΂KG4ںb92dsW1K^qMwm8H6u%\7FM|beC\y.&䚾īGv֚q Rz{8x; eUce*FI2d^Oy)":\\N+u\ww?CYߍٵڲK۞{@OOSp[#:2w\VkE>Vp=V`?@i>6s\`|+3y˫ј({E oJX~/ٛFnW| 4s9aO蠆q_:,t93yTnт 3ޗDaoY0{7-hGQRfanU(Zb|{͖&P[ysN2#{bǎ+z۫c +K]#i0Vp|Pj{ZC9 y\gZ q9e?ρ3V3WyJ3C8{N`Ը TǸv#0^Sxj-˼g))VLX!mHGѴ gXsr_B2=P$_<>C9)LOa :]N8v7XG K*2 $}./=I@]NrfI*»}N8ωz3#,]V<]]M= 0j=֚~fU8eG]q(t3OXӒQz*3h|׼P]VXFi/cR0O泈i뭘>1TRg~c7&:z)ݦ܇l#3Kxx8[BSbZʼnFSQ~t;wsΐbx. `.GV1)!tr_l5>cEL÷)AMfFR sk!B-$LӨ@.xK`FsqԳh L>9Kbm(c%"6dpҍkscf}v;'m'tgh`3FX:B401?e& Z o|?'߈v=vV;Y$(*|GhUR,.,nOsCޮS~(cb@Tasbn8n;Ȓ/]^"ɫŧ%B`'[.&jbztu>:VUjie*VU-3Wب&1պ kEfM~f7WM~qo[wa`9gLWIѴnJ?/ͬ*t~:)7|e["ۘl'Ӗb-"`YկI̳='rydkgUIٞ5*2y , ^gU,ΠW5<00V{b73WC!~Vrv|gGkrNvWR0cH=37cƓ褷ڏp5`nb$ezo?+>9B+scp&3\Z@[/g/8X a`+`^yhOiQT~)̬hV?=86 _)GGvzn)^j7V?J,9o!qg/ux/ߩ3RŪ{~ z3ӳ7̸:v434׊ }c!bΙ{k3{Q%i*?H(8$:OЊv|eQUP'޷ULH`~w =ÞOPzZVU{xW1=Ud7,rp-X^ A4df?Njk3p(|1Sp^bd ( (V[%)I%9}WX 5W1w]Wp "6(YR>*X9a:@˥zhқ#@yjH_Ì@JУ~"w?_yG9(%Z8_N.L[>k3,^Ԡk0g?XqR(hD8ceT3CLo 12NyX q8^(Y߀BgsݲO ِɡ^'K"cZtuݍܹ}XEdoHOg&Eg$0q\֛$`Kfm<$lJ`}"`sH%ԕT>FLb槪*3K_ blCVyq_SjŊ oD{ZPUIGȝ?b~;gV\4owCPVind"GXJ]VqMVGU,Zh9PNJ X@1x?x8͂ѳErP-q~*4曨out¬BK6bv9*Q6ZmNNe[H$1"b(<$'vdi{ۖ،!$Ǘ$+ZxvZא8LW/sv5,(Sk:P\.f2FV<9TheK/ooaڌgZr_UT--fRLޫ HUSp&ӇQN/'rb2] wwNwC7PzG>Pz_Rf 뙡Hf(wg2EՑv=eǫ^gg.KP*϶b|^R W'g,ix<0=ͷhJ=LOlz=5?Ɔ#M<1/I]@t7XlE=Nf(m~eZU&A!»KUɢWEr_tR:$w㻅PfJiYyןc',se2~t'LW=eU>᫚q^8?{ߟ"ħ$:(3ԎE6۵Z+zٟ<<"xjp /i+/=.i-Q L\0`5E рOa$E&әO} $C;;Ӥ^;[jug--tWKo[,(Jeb?Wc5" 1| *IΙ+CR}z I0%*w,rSۯ|q4v_o<|Wj*2*xΞw@ȑw+_|v$"m'O*уuR)cDD:gE~Eq@ Nsd$1]*>^=~ t=2w+^W}px9~;>o!pIR_0>ߏVuxv|V\I%ޜPHs,n@qYq2PGV.JJ_ uWt_M^Q]~2{#2Dd}KR%nZJ8J[r/ 8<K&K񒗆:\yʿxVބKSH\`7K$cB9m 곮ɫz>X0mA,rNu@نpȃ4ʥ+#)jV>5te".g_x/dd |umy:VZ?e/=$~ԱS Kl\b-#{xeFNF5t:>wֳ]S2z,&321OKeVP+~sMQ:@{XDo⿩3Sh p'24o^)I*cur ڋϝ(!OcſzOntvcAl|6$sJkkb\GB9rJY^(~*J* vXݐ(pҴãQvT VN9:s O?*~NΪĆosYޟdܰetux'| ':oۛnc 'ga5Eđ凼yRLY&?@J\>h7:vĶ|B}T{IEqsLWTd.2c)V6}GIE^Ŝ+y=q"s1@]r<Dyq+©QzG E?0 /I[BXTkiPGQ"Ywֶ.21}%J9͜fS V<߬ttHّaALW;TebKmI: hq)ct7*Ce FVf; Qaw=U̗vMshB NTDw<1U^'YaqŸn+ԫ^lx"<[7Pťإ-xz>}s37CsUo%MLe\Y}C'{AOz=t,T>/L##5H[[.eMdQUiuqLYنyholqAl*mbva"z+Au/C:pM(~=C`.bQIv07'Jm0B| uzm8Ѹ!3{̈́ V2G-v,eEr8ٖH[H]WAtD/2V!_^I(AI=Aë{P9x*b/{R! 9*̹ e0mӣ"4?K6{Y:.A@Z}Ѯr]ZtKAֳy,͖K/7[%z3s"<ٟ ߳{=Bx;Q8(M&M4 $tNn$ŧO[so$b糽;} ]'Iq<;\27\Ȇc^\ѹ@݂)PχρVh#Y֖ґ,'B3v; 8Lw6&ا;ExՏ2V)b9Afd\6~˲1x5C|^ ( Q T!,Uel"H4?Zd<A@3=f=Q_FgHܒUL.F@oԊ{xU%gy5oǥ& wP8aXZWKv?%o+jyWbe\qg0nG af]:3U|б/QxGO|hjgX$Kq(9M|qcP9D.lqu0!GK^v$AƀUE߆om<[5g%oCvf<~̯\JQ4JKr8xodfve Ozh'R\a!,;1h ?n<5 MfUA#|Q T-Г(mx˯"7r+z@oS\48zNG[', es6ԩ wo&{7W1\s6k+WmXvrb4"!~׿C-p9IC-tWY<%khmX㳮/)u 5_F1-eϘ9Grk]2֞*8ky;+8olΏJ)p?S{|P-;~n ǸB_H@I$pף{%[xH~wJ*&}Q :ԉxfKqNiBS"%t%M6zPU %x%I\gĠwy5G~H834;•ZFGvL7~goxwgv Msul浿Ksq><:Ks=~V}Y*]{28%6q`pW8tcaz ?Ïc Ee"tak~4%<iLMF-暅., AI`C %!3 L1N 划) 7!jxX'HYl3t6_2%D J"%eMLǥ~D$3f:[d0=Wd?fTlSFlX1Yż>|gbZ/ 3tf!|y60jTU-hځKcz"-@I\R>b$ŽLۑtS)dwdc6]W <u'{O1sdL0=ebh%z_xJj,=G+2)pΙQgk1 @yͩGoK2=N*˱vmSH_D~~ݟvFYsH$SHbSn\=@k!tPݪg+uh{\:~CԸTRQo0BoGbT,MN(8RΕ*!y3?lOb( :R9H(AV J, 1CnkӛRvP#qH)z{b569B~Ec^la;]Ml- GF.}|vC35w5)2X+Sx8-lVJiU#p-@'oGvϛZ",dRt:P(TIkZ9r7qT3P u"~ulQg0lZ0jp0R-G/r E?F2Rb|)/˜CFyC琑9TBP.3<1SJ݄JMu1|,d,d,dYU-r|߳ۃ7㝘{ 9Xw`bkm q5![48e:vr9:5W1/rE2 G0=v$^(P)TM8YU{&Z{ 9q]|kH_(݄V;5˺^.!E?w&b Nܫ~Ȓ߇9?.W" >ޅwX3c5oڈJfNsN\ںb*F{Sqh8Fd6 .Otj ,^ ^ K21 d4DzP: tqPeH2+ jdr`lgPX.}hx;XW86bwc;8﫿oO1R짅?n|ZJhКs6pմA.@A/x}t rdA#(#@5;tw[{@\b~(I7x=t+9u%Q86&Ynŗr&LK"[& 4z $*oc]{C1Man>Yn7}ywBBJ7NFZߔpC~sԻq8c %"V/l Շ^F ]hY[)$;JOR$|-?ZPB+pSy@_W]@;G- .qFҲ I ~#eaZ3 3V++mHh%kn sG/_Tz@ߍ -}*C[} .m#]R$:AHՇSxeE&Ukt<& M(_/fio ٠O1|OnZxkMs.j:Ӗe{ڊv<\ cYz>erPf(Z{NY6". ^0}*94#=R/(F sc54Vh'oִuP Jq&bK/mҶ!1,r#N-NERZ 3|OXeELI^)kx/)攕EbΪؒ@ G"sihZPMdAzivJj#HBW<-^E{rzў|* ->/j2jr*b$޵6ɩmj.d7^SwvH`/QKo C1#@#u|͓=<+2؄d %WVU\YM%lH ɬP@ a:CH>K@̘{8pIBÁz!VRRQǞjNsa$D|!f]%~GĒ88O|ht4O4;~?֝,'o9kI&DS Nb]n(гM"w^>Ŭ|Kh"]hNp@o۞]iƐ8{TҘz9J3z v͵-y&2,dhڒdZˉrosލ>fkai I @ scv~ڊ+ rOsג, %ţ6i:KW΅;=|ŸVWW٫iSKhIw^Q:JBWl"G, Sb+|` @ԜExD/2͌=F:*x?@%;_8F9]z]H荨=u)]cyE}H(xB:a ЯPW~˷E=#{(@:`4WGa|ft;g p,|ٔ6P(&S} J:r +?1䃖T&IQ/`ա  SW ";tyF-X^ RiG@ +X9"x'b6& ߯eM[0=JV1Y84mUxVF2p 7,> Ѥ87hx{.`xAPC)%5䠨ۜ &*:3eefTVv3CK+Pf/ngx)E8o9g`x}9{{jqy}6-],ZO:kZjöC{l硕Ϟo7W5oq ogysQLQKU`1ngV]*<٫ 'JJE,Z -Q8'f bp#[?+Pxcj= &puX]4㎄#ucPo~كmbB+_aiXmZ>hXeM !h.IIח,Zک}\#:n^3ȷ)p\ T4/{1ȴ;/Zox, |*"P:22ȋl#pno9i_V$4Ny`~x\wPc]QүogDll##Ln-ej~v{"%BD;Z}@;iz6s} udc{PcN3Ȥ5Ƙ: /*3  s8< a>. T ,yjta7x؏ķv[~N_#<2L)j6= Pb# ] 1 livZ½?;1QJ> 3 qQaz';13?TˋVSe3'ۭ3k=V =RILEXsj4j5f._?ATX 4F#061xz f?j/nIgj(Mo7F>ņVP-3!Ty=J$W8p 2,}pۉv b_Y mCql4G\qh.VHf#A(BKWy6^pB73 L)8l"̭10btK5r=?iYːhʵwzdKKp RM?\漢wO,؉9?VT9p݈1hZ/'Iϓ:D2Gt0:ZWۉ6)p y -N/}# ݹFކع1qJO.f.¤ͥKo d0_i.ԵrCT 7wǠeg?[snhْ͋QEzWB1Bye2pB`"nbYCMxv0%/t:ZCaõܘ13o P qU)kj[i'Y`!M?a7]`࿺C> d%FS!v{:dr9ܧqs:.՛kK@/߹-BhQ :`ak]3YzF`( L7D33!6"mCڧ@q45n/wL2V5%?{d 'dsFnTtC} $A*aQJȋGJogmgQ9sz!ZV؈y!TzҨWͩ臨pn jDjvw92W#,;Ѷ>h)wogNSP3N#6W2dUkbř_3'wxaoJq梵DXޘq!z ,c/J ¢5 oqɓ5g^h9Sg>/~H)_A6qB!,Nߖ7Ś"-G46S$`]/t4dUt ^Mzx"-ީo@*?,'?pM#Ժ\M}ez'EnF:ȏh))?!.Y)kEI)qRog<ujaKn&K1DHuB ]pZ燬N3 ";~^"Η9s>{83i.iF\D%8pKR$%ޖ%e>}L4sVPb`.iz&J`CSN6Pầe*nw3-yw%6'KVڰt<'8識FLqXlDBzAtm~}!QsȋN .s0JA+z\D26A}"FmdxGxդ8b1jn&G 9 <@3e{M 38.#yQ5 y|gtdxW͊Oa{>'(0mk~|%@iȠypN]v- xa%x+<a%0-J ;_pMR6"IJcwZ꠮k1F S_?q^?,$!ET&?c$0K!iR dTh{^Ͻ92 egZ$҅Cʳr@}c}X)"?CD[ ?fHiӌpp N%+%nQ>v-3(IREʭ>U6"\83pR϶"ƄX!L| UcsDqը1j])hhiiDcbXxEh 98ʖWM"}Ѩ&c> ѨCƖw-\|@BԮį <+a=-{r5.^+l'P =U1e<-??v]n>uQ?Rdw듀gzaAZS77 ODŽqW;Z%"N婛,/xKoȯ)nw=^zDyq»wM枞/.01dyL3T*թ8"WtQϙls{-2t~=|Kq\ٹ4f epyۯcOaH<k񄻣&D͖=#8m l:jj"!:pEl.{\1NwL ~"VP,z~PV !F&=Ȱ'~Wu%ڛӵ*Rh ;wx~xo8bCt˖=c^'BH8~YB03aNÙ:&Ey#,hj6?Zn?T1ϙkZM6cXՎM?6krf33x)_D61J:!r U߸]qqg aFqzHŲȾ}',_ 3lkg+,(Tg; &_ jyD-oe=֐槐g.[Bdc Azqow`'XA!3Aq8".F?1ȕ](aӻE48 ; i./Wz_8a*7+ RysFczcTVM|C8E3pLh?q|R_jz/j'jB %zh"_O"l'ڪ,n<`qMT>܅>z즞:W:Sj֥ڒKoW])Xr9jβ4;m3*ϺP,Tz` \*Gχ ፍ]"73++.8cD`2ZAŵwS%OL,yc[xmcz8)]M{mz7c v p[f~" RekB=֙91𘩄3w_Kԍp{+t]{bȟ_.p p;@;dN$c}g~DGq RU4{[?veP'L}6~>YLœ~N0m=!RD-QU*Fۉvi̝B+eӠF˕\U]r)*M.#reZ*^^4Ĩ0џM$ί_.گ~.E6:y 8 KRUũ,ĖyW^X[\ɾUZ[›* mm4ULֺk&)W8Uimq$/\B6We\d4zn. ׯoáe3 /|ǐS0VJ*1~T(ͺ?vW|6Uۿá'mq$9:I.m)tVܰ'uTOq o->:`4!/ߢ~JEpȎNPF .@>L=Dv^E MF9=<0y*mt+P?{LdϽn='uhcpcNH ]E #8P1P83u];oYP8[ד?\IZ4 TAigkE_+w8!\M4"8D&߸ȭvY+YCoٽ6"fb[M` TͶ)!&s.oZa]1B(㡦*ԕC3Y#743b{\t\vGZ޺> \Oښb*#ywn c6Ng`1eQUjIЏ;hGaяf'~tGߕS.t)7tpߨ`dP9W y;Pp#1 zJ5a1 |o0^ܩ>"xD"_\ulwNgc6E6A96v?ж66yDM#I\jmhw : |/m >?lmM,JT;іMu0hKL%q-&f#mΆvn[h[;eڨ"= : h1h2ilx1*#+V?fNǦqS,/~#ڪoޱlߴzD˄VYO%@ۻ?Vfk,#^ ^an$O06vd\;MB=UA;mqݬG +V*99bYmŘf'I|yq*3x.񡳐2cq/WqFő@o=d6$WKt`- ۺ@K0" fwj} ~ hG>`ACqYdDi,'``*H"g<ǃxB^L&~Ӟhī^6Ϯ$ (l3f94(2=mDž[).0gIUS nqr3d>l+JFv|xyAAP*U2 J !hwv bڕ\.pWN]zGxpTu4nc'5ح.~;wLA_O֩2n^u&|i:ιIki@}~Q^ͯFE:0%צG5Dy>l=>o},NUxrE:B(nyRa?X}n#?&,1\‹iHf"Èh7bAR4R@<@Aj[CԶ9ö5,x2Q~scTy9a%ׇ ̥w*Ƹ8GGm;v7pꘚcfUP$sA$syYڣ(|9 ڙRᣜ I#I׼|abԳ9i= k˂z b}g!{hGH͈ALT\BT`-jOMQ) bSTىV0Βƃ؄91HETFDQY.D-'r&1QR:}ngoۙ1JI)%ډ|]W("Y0 RsZEXc'9z 9&IRᵣ"?jO?jO$ThR7aR`PO-wà>TZ*RN $nTuh[MԄC0_hcǢ[&cYaTRA:No&uYhvY,0:Yo'/yAdY}ψx(-::yUy"^3h"ǰ&B'7j|J;n2Vsǐoy#vff:uGUFng8mWmzrڞN}7sd]? mPu@AHT!Sv=hV4u|&(35ٲ0sZ'IJTs $3%,lǾfawlFK  GYf(lhw{\.ҏyWf\\3qfsp]`&cH(Yl9hUl"$j 2]tt U<x "">\,тso ӵI`l$)Q9!9;MWQcha<6ZktMl:VL#s/baxo2yuO75E{xx|(nio^gw|]>7vmo680U{2ƞu?cUTlH]l`ώ[hF)佅n4iN?B^L#X6+n RqxoxޝWIr\6 ۛ9Hc'{|Q}̐g*sa1'EՄ̍aҐPk};ѮKG,_/em[pabn1d9n.Gw fP4E Xݮt]%FMnY8pqԳ-wvCw|k=zHf&2\"Myy] f4FT@מm[eӂzxXyuZ|٠#5Onxۨp[lMɡu1D3hAQ]cc."y(J i ǯ?"krQK ;`bi26ۖPM2޼M!,6,g-׽7F!6x8_'رXula?MMְrjU^$ QKEtQ=*Mjn0QµR-qCG$钙d}攠Ao0q}2΃`6|E◕]M\I3 &ϝXiCXe&HWSV=*:9n#o.kMw JYi ͕RUMWRlM5&dPmSGCq}SO*♵\q`4꯵d(we?.%oO9 -7*t!h9ӡa?JoC%o|J0 7o 򇣉Vb {ЭJ+~iG>ӭEn&VsFOE@Kt*1+;f]rrYVajjWU{DdbPjlqm+_@ys[&;ȭϟ{Cf5!*Tʜذmpы!Ɔ+_5wwX7ha~^x AZD{4m@:/ >}T3h|Qj,NM% [wv sa>s  fgꜤ^ ~ D&ڬMIiLͶ<n>T@zz 0hOi,] WplYkL./L`mip&hGȧA=04~GsEJIg|i*U_*R]W= i&?i?NgpXךA9qR|5"?4>"abMJ-&='<^D fˑb/'^ݖv n6d"Ma+:-T"zEDZָ&[c5aevo6A G8ύ?R dH>m uXun.aD/NdٖU 굏ƿ5m8F؉6_өtؖϿB/$(<\c0bэmEE+E5M3yA=yxa$U%cY,2z HډǕko ꁛ[<τ [} s5Oᒛ"_fOl߷O`ЙA~Y^5 .\favN -$~;Z~JE/;Qj{l=@ t@v%Jh#Z.Qźώc"ʳm~vTVӳOߥ'o_9%{ߡ}}u/ T5QIԩnE:@//M{[`nGoh}=~7A*Ve Ӱ.A63mئ+ ז۪.7ߎ<_ 2jkn6|CE3N `Eۗ A=0 QX{f?o71o0^M9N+.7홓d"3؇+ w2OG[7NL$7=%o>_Uį?ZW5Sq?eh9B [_7Sg~},cDN !/XyhY)֠&t1Doi;f>X̥wq.פ֌:NHfQA=p;4,~R x_<[$bڏm["mJ.\ w݃;#=ŒUkй?]ڌ_S>}3~!YQ/Z$R5纠( iQ/cЊ_^DbͻN=~MgM1hoF+~v=>mЏBqCbF+̉'bF?)ÍT7.S}<8tHw»Moԙ6ۉvab\>lĖ↴ۆɾ9f~!z.aw9TjXZIء/QN}XP̈Gg>mjeӗ1ϏDÈc7S~N!|?fS[윖j_8㤭L>&>m]L~25ɯ 3xϰp33OgӋs;d봈v/2m@O9ʧx}O3ޏ ?gogIev E -ٷP̯\q)ngZ/k ؉9 ΢{Sο + < q>xddƿ'"O/+qLOE6~hNY`UX/2r6{]A=0[yϙ7`ن-Ok­ON A?U}=?d7=S vƫ ,5y;}M;ν鮺,ԫ8FLZ[@Jqvr!D1SXs|]'t*>G 4fǚ|}\s'`jgov Jլ.`vյA=з%F=R_o'U{;J]ɼ:8vR϶حiHnFvJlըkglԵ9kdFmj풳{We|k#?}F󛋚g|hB89JbcUf6.F<(׮\6қA%-[1گ_*NX3} m\6?%u3Ap O3g]L}7쿝hreIt\Y!ޕSɶ9Dk}js]͝ q- FHW= nİV~#'"JaX5\b*] ^xFK¼v9;7qdPS)Ƭ=bU-/dA8/W.]?0(2˕x79x};fy7zvq[p(`Rf+[u;ϙKUq$T9#nx(3| -[FMUI`-/֓u] +l<Sw)\hHFϴ>iS=YcGTٌL(M1@0QY+$ k.JJP/Sķ"+=.(X懒Է][k5yAU(Mmnji,O%,֞fvn;TJ!y)~k< 5sFiAJ cD͜tfkvr=kuzPl?KB>{,>z9̓RU1fQ凇YDYCxt?!,wf=/=/"$7b+J_sl1}f"c1[~deglo/U;h򝕢666wx/ ށ.\^$Gb 0) 괤A=5{ +REv?8yG?/05ŏ1願lAhGjTN.?D (Y H.l,Q kT9 3Ŝ"egw#LBjAW:Kz`&4[ߩ<-tPQKX&l/F$2LvewNm6L=aHtb\^w`f^On1 =ZI`K>sx%A=J+"N姠SFBJڙ$R9bjҝEjOїn9z ډv0UIw3_"=,-/`E*-.ҤYRo/?'" a˓\Jh"PlO+CNx|ߪ{xw~^^1@~T1 9W{y$rEWvyE7 -}DKɼ İ"Gv&SZxz&ihw&2H6a**8#{a1Hx\ 3țxDaYɃyN)^ TTvZӘۊqchߪ޺cФ}p$U RE*'NG1O8]Ji_Mj0}͊˥XeiOm)E-wRǹqI:y]U\g3U8uqvN{ތG Sc\"s\S;N@M,r.8wx>I[ B||(q1A EWL~|b n ,[$;@hG5p3.oJV\8n UcOK9F$m3_dWJdePݑ~Ա8d W::OXu-~8ʋnoW̋n-歛W9.ʹs);OL;`vN?+LMlY [pqfxmq=gl7Z Ikjҝ0aHd]*b G)i1hQĬDC1Tl=r_RXyBzV CX|1XK@D#کV>)p;Ca+DRVqyxcl\wqa}sٸ@m KI1.ckWrٕ|Pj};bDvl8dDBjYDxS,b9.Ҋ\`8QTGLzE.7)߰Ǚ޿~~IVIH8S*y)bZg1.(|JXuڢO7v>_.N\d8Xm\m2O^ Y(p2DQy`QQv7VN]FgЮla:A Y!*Zd0y܀!MLt-^G?_+^@)ڨl2 Wz$Rv@ki;O4٩p}MӒ1M |Y"qڷ[taAHG_ Ogwj~G)ٹa]A8~ȕKbw).xN.VT8Jicwz@),V .U,߰A~7HFjwPEA/ZDCX'܃vlv6&oh1^yy8Ѣц "<]8*Oo ks yJ?rBwD4Q<pGoAHcѸ3(wbPHEɁ3jffQEzD4bCOqx)OM8} ) 2.1jVtv$LW2~|"b{1abas<˕v8aN|/X>Jj%nѾ1*$ma`wA}势{aHb4V<_uDT ܌EjOg;`AbƂP_O=[݆Ijjw 9 -ųM闊ޢ0or;*'(U+ >$󛰦M(..wtHa*3g.mOsz^ԾP!TDkn(_ς: RE* GWܓu"j}A6-SϷstSO}k!E4&m_*ؖg[-+7HaַeCAH0k\`i^xBlHzB$JDQHl'!c^$g M73h)"╄>(?U;GWWaps_ d:>})l70hsp{U_j|x)Os҇#zW1|z=P:|/V u7D,Y 04|l7)|cx}+wjw&}/ K?|1H~\2SyWjs|3HUiAݑrN݁cVf':[;tƠlo7弞XsT|x_xΠH֭i(Fi2 t]Alzkk7٢ A tDǐ1DF? EGo>+7+7׌^y)+1GW1 RU:0ܻÝ|Q :h|*N dۈ+fX⨺_rmDRb"mN0_&7EڡFJ@Jw_dǗ[[7NsfjR1gI7k.Z5B/ΊԼ^ђv6Atry>UAH~ e iliβ3ē9Ss;iM=$Wf {5{(A^x B?j3t^Ң?5*|=0b0DBzQ5ҐznJȊ(\._ҋIH9NԠSC$}oz: !%}hV z{0a Ҍ 9~> hǶ ayMD.+xΏ/os"MEi79/7| IlhbgfqWtB/ih;Db(*!+QC^h= ,Wk.Gp pA9LruSb!EZ^y?9/>n3۱)6K#rմٗvgSEu\* ZJElPy`5H^8*^/Z< RQҥ vY>m Rog9ِwziz j&bRV*cP)~@~*]Tϴ*o=N;e!bK1C2Ҥ2Jd7 R"ڊ- f>*Ye:Gya~]x>`.:+S#4+#i( =gXwejπ{tޙlEė]'^~Y oڢ'JX>H!v֍4`ɽ"ksOYaѢ7Vnٖǒ(#oae*cNblah[ԽWuv Ebܶ;4a'I74I>K ט,O[_ʬ*Ô(tvY 3_ˠfJ BO֢5ӖP{\|GM1GK km!~kmc.j@̳P(Șv$zEnzz"@bl$c.y論L_]#}V>c9ӘQƤl{<1 !E`>Tn4!E X36fBg79 !?9yW'*!WЯ ~eL2US'6 9S6!_] 0ɇC&i-edPC>~Hgѷq#k. Eͬ,<MS0z .q9ٜS$Wl蓃+<.QHpE6 @\!#\p~6y&V#=Xr8\rq\YK./.֒"_Ehմ& ^T!@>GӁhiz4,CPbVv͸G =,Ta W}oX AkKZngOw 3/uL:s=q{yM| lbi}l5qWRN/yj3@xq,-R;|+4?(LK|4њl0kd/QХHWopAlE5ىYa W7O#ͣőJZ@fdH$ oRǡ5ײ=P0r]PAETˋDu/q;&6d.&렋5Gm7b!˨':V"4YK ٪;M ɥ[,z<{w-S,zwV9mTa3T/Z mUn:jWJsJx=Р"c"!-z1!t”lP}w }x-i5K_INBq)іbȵ/J$-hp{@#ͩ2 @lOSF-[8EN(j-=+5V&ˇ@k1f1EPjbO!9(N1<rkhZbˡ/(,O>#S"1~xeS9R}yDEˑ15373齳f!`3 f={S{ĕ|Z)j?q- bbRdGd4 l޳ \H?҅>Vu6YZhbcź?OUQXEbZO9_]N, KE|:m\dgZ|KbΣacԜuaF ɨRU2yǚkmط:W2v!*BP+&:MzY^-IRѭJtrO3x`t?X-34r<ڕᮄӨ9&Z,P3I/|zOi9W'`c0s ;m8XZ=c-Ck>E7rq(-U8R/z$zMnjs 8Sˉr"_\q?rD@"i.y~Znw |ʚ6'DKSv1$g|ETm" |W?)fB2T t<1$Y3F‹=~]׭yZz-zy`EY@qP+ I*9Ϯ>hcE2Ř QKIHufNָ7Qh;zyו8)4^;RAhEB;JyÓK6BS h}y~u pbk\O|2KO`PDt!5KRԒ(}9Ϡ;g,r4{]>ĈfH3nU3,(Ɩ2jkt ׉S)2aMeLO gHF` |c`?=OubR[a*r97rt?eԵyҙ_<㎴\caC\c{e^R9:{->H1p`x})˃؅*<تlSÊHhB_~:7fݒ=mOxsGX6"'eZyXjz.y'$ڼ8%^2})=SlDZK{TlU[\6țS@!'u}jP-gnf +C >]XEAYW5QW5mC {ɹI1Bocg֚<ϨRK2 :4٪򏵑)\S,$sk] r-\~GZjp`d\cmϵ{vkg#6f+ba f;'wD8o>{|vy1uό+k#k:K]YB̒d0IZ˹ֳ7T˯K=\GEo/h+mr^Nxh-C2j)#&?Jȧߌf~KMmu!EjˇR:LUpCzqN_Vd\r|%o;p]~Tr*2}i#bo,Q,E&L@! r nQ(w䖢'ULs%|d+\ d侇)ƍF1UQmƆ@v~=R:pZkarJ p]P\IeeMDtМ=7'0#*]K \c^+޲boSM_6{H&h`8 Ax|0|9[yEgp%u0"I݃u$j)S o| X?Y>t&*oT@q)цNH3rfPrZ {Dd Qy.źە4hW9w*DΝP:m|x_z213롵je;~?Ev[ыAFf\cGS2e~ ŌaWjօA23ƢA_qmĆr@Sww<,W_۷{b06ŌnŃ'E1 mtmF3V7V7 hFs lt`9(PD%Zt}ԕɑ$uSARwSEuWv1Ÿnr3H2[1Q0h]S!-<ۋy/-p _x>/j cx nܖ2+mcw8L}30v ا[Shʼ:x^LC٢?jm Em1coХd]$^ GDP ݇m{wzǶw/BF;;hV*Eּ.o +:`Fz|~h秉,llTdh-!e QlXu7k~%l7ja# F/ -K|Zw|rJ,>ib NFp%(տR(v DO#`ktna(UO"x A>7k#Ex#bƛ:@ I`)h~ 8|XP0mMMJrQ%kABL_ĕ*_k. qLZ8qpM*Ji{Oi} O&yf/A[ N:0v^ k0aR<%ya$ʗ~m/bC/lVr ( 4b;%`e8S e*!"Rdl(t(G3>*\?Kz3mCH;Ue\c}d/O`9@. pxAmHlz3o(M/u|S@weyI UoKȮ 1wq6x#U>1D椝ӷ,?p-Rf֔ g)מXǒͣBT#7O ]Ð;;WXPTG#x|`ne1Ć[sd S?U@nKilF{ V Ek= H!q),|L^^fu^PjNmީ:B :܂8#@֣jZ[m-Ւhn".`쥺w l\6<4ؗW\RxUviL1ʟie_pX2;vP[b5 rn,صbt8 |CtіEr<o:PD|h/>{+BGfQ2+sΌV>`S\\oE,PҶ b>%ꩊZr1n~L1Ic3? 6󣸬|.+p!PQDb5'TPH-SB}|$%HFQs j~$| HYP1h6):~)OZ뺕Zuva=Y}Ѷ1SɃ>R),Ӳ{;(cbG5p6B&ֻ`4EE*GD*bWړFX !JK>vR>!⒧wxZcډS h^d?+ v{+16ڽۦgqPXn1K?Y׶޳0`얷{)Ʒ,VK>@=CuF`_<˩̼yVo>)'Qr[m .[5qfP"tT'z-uZ ~X uwstq_xX؜}(st Owb{I>(ӌp@A<'P`\&r*EZK,\z`\9ca9(H~#GofYyG" Kᒞ/XK \cAYa9: Tz8ߓ2WM{~e >m Y8b |LWӺ|b;)$c l`\.߯s9ޯFϤ MKO` _FxaH#?Rfe} z:?!mԹ*z_+)?@$`p2ܭ:+2]qlcV j |'ޭPx6$A'8Q0ƭ27*?')}H{%@gӸP 96vT@c&&Aa(Ia:E }\ %0qsMPշ~J>D8};7m8:nH~q__ӗ)tjp:A7б-exuπgE*6 ! B[yh=vB \HX1⎡N/*quk62l hA~1YCsg˯[+e}2IWP9H>elRsLę$w|cg3E+&F>u?O+s#9Ej]nuVm($Ed8j}CMP%';wk#O(̕&rK-_)f?QKno,\[o-~|Xz,ۺO#ܝTݛCMҀso%1K6ӿq)eud2nu'ر,(B_Ц跰Xe@sg;_@ hU_=:og)I-#Nt:2S>K@A( }{/@0AQZpRif`OWiF(HU_!7hŀu/B:Xf^6[_-y JؽpY0 |9\gZF{oiq;o4;#/1% 6މz[ wIUgZ/֐hZ.i"Ci9Ir՛"_2zxWcc2kvŒ*ٰahq^IR`>j\*r`=eE)3lq:JV{VSe ٩-I~xlٷ8^tB- B{WS;~Y_`+1717k5 O亷]bW÷'גi(mv-ߠ/c9r**qVIK-_7=n=9nḍ$R_I mGԸ}9n2/EbIe o7p(<¥{_ r3otjOC0L486OVxtx~iF!%KU_541n cɕ3FÎm<v >$(x.dqҌ;OcE0eFS5egwa- Z Tg 3Xzdzl@[f1_oDEg#2؟̖GϊUO?pH$O@h1p~m$3d>a/ Z=IN(<3cX O<)R^fH5k +`~&lA&F±]]ntM]OPÏS<#?օ>» NZctEwo|Q^&g0Ř{urMkJ__uއ>jf?>{@U yu7ՎDS @O _C$r2  1V"ZHE($f2nHHtH!bXϲgƆ k2 ٹ^EN4 <XۊS:Uzӟ[o2[r$w~\g~A}e"ŴX*R_: X_ 5:T([S :$=S/&Pz`ǔbG_(٘OcoK\;hۤ>ٻ lW/ J:+RCkx;␟㗁jآBɈGY'`uQV Ǘ˵~H^$Kôt-(3Oz+,b3MR6R\2%xi]9Q_ȅխK.JrURCS2V,w9e!DOxC'PZQyHe)"Q>ӶM+Xѹ3hEgEQJ8#&wLH\oFv(1gs#؈DOzV#SĪg3Z1Xs\gɄ-&D=Evm_@/Y%uzf$xs3&f%ɚ4%m)_>cmQO&U\ؔsC_A4.z _b~CrɛFYuGh;3M6kdazpL'?MRьk{=sL1ҢC-ysM$SQr>YVt%y.u(⛥pݟ>]EaBG׍YV })Z`TݤqMP!9x1sgTzq&dV̈"+lJ`S?˷yVn&L13m|W/?1=y=K6p]Lh=A L뉸uܾ氼ݰLmf2]Zi-WԿL0;+w+1W TyL!*UD!1XҔ>4@ljy{36>h_8eYUi8h;h!\ߨ#X ٙ[RgF_{vEe3= ]Ek^O_!i54c=1acA_N&ܑ a}:1=E"f|#BG/EԘ-1Q%:^xI( S\cG>^ 7 Ʀݕ Π30;|&y%g~Ly;5'-$}C1ı]mG~,OΪ)x)Gzc7% ]wIQ7*vƅ Hc+Bv[_oCԤ gE!Z*ؖ|yg ~Ϡmu~_#“ 5S@BCI L52iۊ2i%"3V#hwy]\co# H;Sx6SoCWG'w= ܱԈh `A{ubh%ԆdU/N'm8PoGe*jF~qe:;PS;:LFP4+#a/q+{uZnDBIy:=ƙ۬a¶B_;y!q 2D8^eM^H68_rd!miC9P'ZA>-䳋X ct/s*Fz:Bwo pd&8p}q<:E)FqDF2ͻiIiS4w àWMg @AA5Z24$v9Vql|:DSQ*tH2{{z*&C4s o 9<:<=r9]]h4u#R>i~d~da:{&])۴CKOwS6͇{U .O0\ 1zט& /@xiFkS7P=7(I wm("Tt*ǏPhfll:aĶ-cy$D}.f3=ctm]qPZ;Ykɠi6c/ߺwAjFD,E>.Z}Od`z*haS1R9+n)qs.pّ9+o6_5V2{/@;BxoB()r?6SH_dGbXC"iט,kd+PM-\+pqmlϨ' BuAjap.E.Tn3G`l=Om !hlߓx5Fk4M<pLJvsIgPRqH$E݂np0ZC;YB+2etWk $֎%5@gB1YwHW Ʃ4/4SlN³BЇ) *o0'wa5 sNŘvՒ¸ʦRC\c;Fe{ۓTx:u+Lx=|I}*_Tt5i_S%N9dsg>7-TV%%B`׊ۡ4yW?GluE !wߚƵ MCPW?!Ƃr\^dO u&Kd;AwS1w:sZ v̫ݱ3%CzrA74zzlK\c<+EۭdOr-ŵ-2LyBX~z;ofW4CByyfUOztpxtpxB23 ꔻ#Hu_nR^Xw0H_גFʇB3*lʃ͗-+M*کoA}'OQŽ\c7:Fōmѕ\mq.h=/| XVu(Q7F'L 6=|ǁ~k9TlFͦ1\o13]\:/1Enٶ٢tbrS.5t؂C])?BPϳ&2:Kiْbk@o TsGdO¨. ϦּdN *^aF/Mi@.M8[. W(=2Z|ބ7gQ \g1e_<*Iׁ$.ט#G.ͷɭ )8w܀nQhbƈ0G*,a5RrhԐ#uS1r$cA1RøƎ$t" Ǡ b}=SiN?+uTI+m<鲍f64P% u esN\4C^]C5NdZ!5etX(E}|{,[˦Ov>o<;u*WXH5TU{wXގX ĩ{-$[o1%g\Rd|j$y}_=kzUxJ,eFqb%Ğ1ɖ-f($kgW PD-#߄_L-9=fbHqj#i/Wa.L ~Oʇ) <9xL+d{t)M'*WinLrV j>bGvSJ",DOF#y\!o5=+FA/}}FS62!{T|zw+f\c+J䙭/D[,Bj!$?TvB ܨ8ygIZuvj)|PTY fq>G`scG1Qy^;HO}ю>~YA219&}.S }B䃪bՄզF#T4vTSњi ;v(6fQgebOi?p}mDdV>,Ԯ/"U9A_N.<vv!-:yS c/&Qm`mڌ~Rd˯0TPV5ٚ#|7E/mhj<fdc6Qi2GZL@28MLRQOJ2[{;V*NWh~AmBv&t@X"+ԡZ|_#4C-S6ڧ>?1BxJiǵ"!I~ F,2F3hm)#*'YL1[.3=)VePfB(Jʗ[,{\Xz6d PLM֏{E6 mV*808Yt&f3޺>YF51'o*')L ;|ug%#uluhB;L-/;ARA{cD[5E(C b|Mc2}cÿropmDw=CY@-YY<#̉.^Pү-,x gE*gTrq"Huyʓ;S@Ǔm|Y^ MLwۭ`\&IQ5ߐ<36rlMȥ HJR,[7`~_F]N|1>UaJN*c+5wā_x}u{-j'PmqgmO-b y <9"P$]T5- A4^5KK"(u8pww$1.6)q֘n{-O6O>N96>OK޲؋h{[Lh5pvV!eT^2FIi[@Mƴg_D͹uJ-'^S:ߖÐw&f]~}M$ }Q߹>@F3_ا 4$?y]uS1F6Z#F$HLvMwMVdXodh]bS@+uêZ|sRFid>AS+Z< 32jZ41%C1PI_4[RbP8s9@rE.eT\<>y}e y.^[ UYѥtv:MM)O0qcsxt-Pwֈ~o;k(vvqwS1iz'!# %"d^d%\LCPd*^&_x5k^U"hcPXݝV$K?‹Am@t=yƫyї́#*~G yt֣t;1BGtP!|e޲ e XIDagc~6BK;\`s y@:h!ggW ٤sm$mM9b }T"Ey<.S}棢&OcRdQ4`G!Cﻉ +ldh)0dP&Ɖ(8q.HJI~Cyh)-d&yM4+̕;_"4WZRt.ZҸ6J[ejb9WK } ZfG-JT%i3˫ 6iy|/B"!=2 gV>9Tv&,-gکxn?0=r8Oݯ ^OR7κcSJw? 5˭R WAL5e~_gIJ0׏gAG}Z|[T fmDn5xNɷA[=mkhbltWֲ+Aum(~rvb)WRz'J'zYT,UBbJ'ĕbN S1ot8II @tOIjuM=ꏜo+=HHxJI]4Th/ BaZ?OVO^=[Tm>)+dL-/#32仙<<u=Hp ̱ST.!TqȴE0%#z8֩WYToFW '|D>&3~:ܖ Vw V_l,,K\o.T\Nsm$w[ߨ1.pf8V[(@ky'kXrKv1#C|ib,VaHRK0ۑZ_(VXV' +5vdr\c;EyYXW21Kːl0be)J2BxiGn<1 Y!&t':^{r, krYޖϷYa[EǢ;%^|~8 ׶ZFE5Jڽܵ]{w9}#(m}W W]Wy:[o}5 1Cm$|tbWG_z僱QA6݋ؾMIliS1=cqjpTazxT=GbiOI=ɶcqQ#> <m ޽# \c+YUЪ濶U\~Y궃bUWz0A1wm$N gSKce ~~{ސe~*'X0Q-y1;8XvpLCxas79tyZaݛo]MK\ENŸuO.0q7Dd[@(_%U2Xfv{7TCM.'9ciZ~"xχPdb7є[6.Sn"dI-]qڈd#1 ,c76;W=yx1>0>y0>y\cCh?eoywpklbb>ua="(rVg(̥)P-G[B-Y *\2E{ʾ~#˷]: :akk]i $viN\wɖRzYBkBbl %d `*`\cM/GP;,LrJxr&Ja(^SDVs `T5 }_~I6 ELzuk)4gBiA*eL~fÛf< :rRFM5A)[=Wf=(raeޟ* Ϲc[3*:{?q8A 6iCgqGK1:a׿OR;Q?I1-ЇM)뤔(2pEm}JCdSq5NzeG Jݴ%epu.:r?r:㚿,)Z2or iZ K?l, M5C-nhT/pƝgp.0B,LY>,X}-qkkZ,蕎v4ݩH5kl(t&@X:!#^w 7'h^ \%/_<\GQՙ#zBGLO˜!bF-tD7G3թzjp=} ͢ќ%TpY{}6_fgS1P ^/3_}gTzZv n Rr+1u Q5[d-'Q3l?x9 adsjY]({rT7f8#.=/7;'Ԇs͟$lbڔ]-'kM{c_:LqH5qS`؀>xaWr6ĔϤI{֫$_p3\=犯X__ _k#aO{jg1l}xx$o܏r"ۈ:o" @TY~E&_5#~21G#`0O#~w:Ӛ rl^j9z/Bc~j$1\gY_,_CF‰g.~xKn6ߣyHI [q8ʊ`eX"\Z7I&@zӏ\uݹ'މ~/,rAZ0Ķ >6M]4θw3q2')|0SI h w獄4Kuv.s,RXm\ ]Mcߑ,9*hUH"x Gs/WQƪߜo:DĨ3~$s'L! w2pWBu^o^5v,-,ѧGƭ,k`ǦעX7Z!۶nՒ 5[oL·rX%mB*14ȣox{qx6f7eaCX!) 0@Q UE dY/AQ;֯b@l MD "XpH&Y L;ws&/p3gΜ6gfQWiU8|~צ#3CYVnt8Ar*n?u?}[ǩJus5W/O_]*QVjSjSv_R:(:-wI a?Ix.x.Pd(WIXp032P5i J/oYGPp<|t x}.4KI82BY* Xd_l4?ˋkN* ""8>mV8n5B* HI]uzwS5DQ#lho񮅟Pc|?3S㶌jqɟvqK":ϧ8|CPpKO;EmUV7q[NBF^I{9t`kv q9,,~1"Jw(d--=̟wbD+2OOa@z3SGU'ϟ\msDUtM6ޜ[m du^2QҐݪhH4n Mlwγi eо01rvL:}[H.1vx?Ƨcdy!B/)ǡ,FԀm#Þ/r`pI nG|(HKtc+_:RL)u/)Q<ۇ=2>2DŽM)}ؘn9a ӒSӄ?Wt#rix_W-näA]4K;'+FA9]:5 a<'(QM7+ͼl_$o4fb=ROt8FL4cgClb22mݢI1 p:J7эqbK3In_$S,IǓ,IʫX y0m@ PAtZAt/q?@M!x.OHܝ.? "~3;V܋ /-- H=o>%!?Z-ՊiHyŐ]}jĮNgޯ sY[@?9 潘PJB=]q]^l|jd]&8#7M\%YG#;Svt9J\|>S{ awmP񔐸 774ax49=պ3@Z]gz1'TguTtI /=OP ⶠW!ꀂȇ S#9YUZB9s"g#7nf:Jmp=D`7:- 3ڠh 臅E+ roR1`q eiǎO[-/_ITassM\I g| tsI)ҷ=C[IZHU<";D{n wI= Y^nvݣCd3_:dGwgݎˠqpֳLVWe|UMtv8Gg/K*8Lm6;3{cf^͆2OiP)Os_0n ;E>? Fstiַwz_ d)p KI+--ȕ~qS\H t!|bt#ݦk)4ZEWCÂê(5zE tB"k<@֛Dq-ِle)+%)C<, it=$;[(Ku<)[h¨BDȍ eLPX bLS^$۱%OYgá%! caa€U|@>N?ti>F7 ) 'O\_9r nR{n!̈́m-"Da$I"o|O'A D;vKN!frp[=vAcQ~y@m8MGWilSY0 =:~;ns,ؚ'Rq egCj9&좽scQ*5VdSh7υL]lXaҏ\i.oқqN54#IV IF')]/4J<=Ix:q e/^}^GusJ8.֮ gLQȓț]Oק،=vNB9+&U`)M&q!r:u~V|0 =ٔY} uZN.oh,$Fb؉?"- H [pՈ~|f91na@JS?P'BJ0Z:-3zPuʾ0l(H8=Sq9wQw,F (Gt@_P8\{ţYO/7G8.9jSO_jvզF+5pb]S'j:hV[sq!I Ww`=kV_n9ǿX -*ڳk[CuR#&q?VE}R:̺S;@K/)Է^؞HviOlm6 kg1*tg_Qƿh֨-ۙA'~!j(LiXS֎lWK*$@f7vM`֣P|¿ 1n|?oن>- 8f= J#hCgHZZJQI0\"&1ۆïQ%8\F4t na@z{9=Dx_!ϛT(tpS1,?-@1r Vv^I.o"Z mmm$h^;@7 \[ZHhh ._e m*#m9/BkmUhVw>,@[ P{h.ߛZ1AV Zf.8B;?ZQ$s"vLVáShHhi@}~AG͋vZ{;@ МD%3a\7 #na@jBSS"}@]AQh3h"9?+. :$@KrmkِٓDz>r-Wv6"l [ǪAo䳝uTB[(@sDBU4kȄq`:F€BE& "@3TDB-iV3(Kp Xh >`t]"~N`B&+mpY4n)8vTUpf8Rh;_X4ZS T;@֪]6Z-)a$BKtsgQ  mZ;@hu\>CsPh,h$Qh -͡ m DBiPtK3}6m O^mA x*_R "y$D bSSr1P/8: DTj}I O"M_@@4G(#Іh ,@  jځHhh}?hRhFB  DB @ m`;@hv2qc- H u,&"EHD=0q)9>@jh-^8zۙ"@[ mZFĽE\B{+ZG aWVG)#m8h 'C:o Ш ؠ)הs[A1ET#^꟢˱;*̆BYۚS$ppXjG ]]4PwTY+f4+@; q vοBs ;SuUkQeyn8%|)"Uq*$P FLeL]F뽴W€n1s*E#wq*Gc-wx*u2$Z >|Q?!t"_w{K%+BpBQv В\TnM$˔=p_D Bғ `WpC KC@߲5butgg#V랱a?"3tTÀ.珏<Х5*8ap\QN<8]#na@:k?ŵp Ǧ \?G&s8@٣do~6P5*{4$}6íA68b??"Io|o0Q˝/qAv?4֜NYθ6ڡ"n@z*M*5 Eι ^WPι=j  N!?6`R€N)=IJ)Ycsk&*`yOՃ$#?$57W B֣&ƫ'xM6W!=V+3leC2r%ۛ[d{XyM-gUIʋ> ~kqXY _#js0N4Uux1AY~&!:)~[Z~k<BN:$v:_n ewv[S-.a$'fO*OiB2Psl}bo v؛a\ҒHJRt>f9,{^ήƌp\!=?"rz: 4{ӇU9}Aӧ0+g)cqm(=rKuܸ긑hsXv}g)c᳽ yzW1f_|YLu|0gtK"t:tdtg\@w{1nct`[bl1:(,5pX7%f<:,3AeDP\S1lX-0y4?:몗 eFRE1!j㏕ ǝ?q/ 9^81G>>)}lLrvBGb g өoJNhh4 P-@%_wwPxU?7MyW1Io|-[$G8gO# 4[ꏯTo|}/m`npߔwXQBOPj< U 2zy,t^яSUr;x0iǜO=ѣ-K?OqFkljGV}QRK{W`F;]U买tQ :|epGm0~CniJtrCt31I3wDOcujs?@@~Od:>B(1Q_&V.n6MFqd$%хBK&lTΕ{a/}Y_XR|;.*5r*r2s~#;W?O~,NnRc51>!9}Y|c-z x4soô{Dۿ_!PۙPԇ!%x\#9t}2|<75TYjptZpO6צ#CYuxL)UtyI@3j6Or69ab00(SkۄK-dJ]u|WP@lՍz ԧToT_H fGwW[pRpKO.S9e^2/DhCߖM笠jb#DW&x<[2lNltbaU z+&d3Pn8FK.[hEl ^43"6*381. #g?{n>sRW?}wՊPUb_ tkV窊г H# ?_xZT*KCJgZ'B@ByRANq\2k 0{~>gM,w0& YZY" ^L=F-؃J2;5q]]K*?gU`$of CYz\&B_Z5 c$"ES~j{-7De+4n3|Y4eInK}ؽ|چ3L {()+"-ðYAv3kq{LON\({ݤ-Ecw._ٙo<~[fGf?HZXTs]F٦m&nY ~/MRMmvOW@">NiHXGRmll-Eg.GLO pY ʞ=48}[HL{v)g*.>Ӈp,>n,ݵ;lbV< f gV C+ByT,&\Aq#0e W!uoj`^%qI`eG!Գ3_uA:Zy< *!h]s{yFn'Ø'Ey@;M띆Vד2n,90vE9Y2$jgXr2{, п(h?C@b7.Эɓ?ذsq@OmXai?`+OݟocoЙ;뇛3=?{t!Vй u%>ۛ)+0hkd5l%ޞ!ᘚd}0[QԥHXO2[[%i,y nlcOÜUj,cCm9<),ox0HS$]RD[t⑶-F\,"#VU:%tV!$($O,)A( AUs n :nF 7:ϕRվ{$2?5yp9QX; \+_#G+VU ?d5`>ɀ|huOx@ǃ[3]2SZ{)+Ï::'UuG'jΖ8ڐmڀP#h [̇?9^K-;F K.'?FXDHcka g&/dpϫs'n GA?T Y` 6ogBKb(V@KG[EƯƯ)93Ue9h aQ?U1pJYza@]%e}Dq壷5hwDȲ=&yT享)_wU+\aʞFYi8r^8RQ9!%[2hG:K e>bk8T~l=>6瞺ۢ%|97ܓ=;{7/qsOY!%Jt0ڿ&~C_AGIikn.]?:ޔt[5HPё35ёCJq=IՀO-ԉ_-6_z,~Z~$Uf3rEt@ K]%($,PLm."- ؍mM7EUd+@xj o6<5:ia|H[^z HգR5S\uP!%Xb:xMb vc:]#,|@S%6_3(v%LmiO7 ʁlr'Δ2ZbnY$@ U 'N8Kfm!%iWeoݱ].VJZY- x^\ `>W!YٲtJR6hq!@M&y^C x_ X|^pyPҗjV)ɘC!mBuÂ_PIv B,oMMBM5فL xadY^gCD=8gFCIVp^UyUC}e-'KO~3Z~ΐf./DJZ=-CInއ;\Ҟ&h0^/}Z{GgM}X߼8hba5dm&~H8>LtbH *ԣgWm.$18{l) *2h8e!/E#/hО,a_zT=P'+:oh{$%=- ~EȮmk6_UGXp; -X":_pfR |x3輝\'|{kH <_OLBŮb"H բ%Z2Oo("( OMhDѮz$r|EL“Gkz`boXt]ک,cjO?aRW 1¿/_|_ۈV9=YZg9g&UW-3~8ʐȯzajt8tT/EzG?s (5FC_wZ[?(5 Ը /imTC|gHwL?qMd=sX+[uDa\}+8ztXtS՚ߧ[7,;@-ْW+~ΨME͎e*儀tzD71Tm|=:ǿ[dskJjB&h0Uk~?L6;К&E7]Yxx~Gd~jt3dvZ }LA/ˬ"Mt1\^M~)~._ ;KGXi 77;BkU٘'gQlzJ vi˰j%Fq8wbokfK^3ɧ #vlA>;@w#_g&™Wx9>Kr+@g,5fݾ ]K|X!=~ s.8JYΞ~٠.v,ۓ-p }.OT=,*&ELΕF4^Ёe耲F2Du"$CBJ?aD޴uwF@yMI.ƨJO&L,͗ìf¯Vd; )E b^ nр~](J/ >&E~XʿzHM5~E4+lCJp>#V:F%˵Y1~r^U00ክ% VPF6Ý/vBJpSBy]`FӷO qCy|aFn˷";=7$㓡<=f&ÊŒ!{BÌ!;@fŒ!eeA9Œ~еTJO,?i.~5kl^+|q"JY ^7 SNǑ*~{VշTH X'Dk[ ,o2,|F^=|74O7]q w Yd?)#[>ſqKo[9V .ڳ|okl) <Ki,э(Gnj0}_>" ,-*ww~;D̰gYYol2~Oߟd>g,;q~{9S,Thj-,ƟhoݻZ܁uoO5!gz6y≠1Ayf@c,8nԴ0埢 ?OۋvYۋǔb>~R_^#{1qt޼&am/#N7K-5Ml'{c؋MsE_xUEۋ7Ea/nba/gi/_ob/im9nV҂?[w3dW^<Ok/kbona1~a|{=0cڋ7-X_@#5m^tkڋVbMxk{1|>dOhk/mU#{ooI1k^L4նtU^h^3^<^xP0S,f5@#^WЪ(Żۋuቖbj{1iP˜?4Wm{\^<o }{;>3G n^?k,_\1c1jŹЩڋ^ԼMT{^ n8R_hX#{1^ TfMͪm/^<Ҽb>|Z {1K{C?X\,sEj؋3Mq>8^LՏ?*~|R߫4IOLh(l^l^db'˻ ŢWk/^vj/.ַ!=zq?ЏR}PƯ^e"'؋Ċ؋}77XTc{B^^4^)li9S)ͪa/4$ӱ_dXًXXoj{^U.oyפך0gMߧ-Ţ .3K1qhKNc&^~p&q]wj]Sm8Q^ؾ~MV?>B?FXǿ?v9,MC cߌL{5T`oIS?3GYTr_*z;In 3pLOć]DO9Y}¬ R/8kgÏUB=Ru㞵,zVs,QϛYu6UՁq뢮T;V{to6 Nl`jOn`nO^2'=Y|?:爅>n{֏_7Ccc+r{jgt0ƙǁGY7٫׵B?>⨱~?"o ԏ=ƕWUppVC?,{d[+8~[a>kt~ T?6d*lx}MGx;yJY\tW ^{v/g6Uui&UuEȁѶ˦@jԮjǽ/ ޟ2"2h&P?Ca>rH&VͯB_築?wIAOuk%+MjkPKJ߂h~\LL(K-zֳQah.Ip{UW Shprt5.Z4*$a B!/ ϲ$PLj<}%%,aƎLJJ]٤2V,aƾGФyr7S?)hf'ψ9m57n!ɸi4Vitn;žT'́[sF %8,3j>,iFO6 w6fegNOV{ƿ4n#SjˆJk0;MK~+VQ ~]~R~ w2B$ \ږ2-*$SkN: gb|XO {_?]_'RR}G+(%`@HetmB] X-e}Gªd)V+r-o؇\t8WE)JgPd(u(JQJM+ fWbz^j1n1Q.dbQXn7Uwlo2$ (xe`+-sJKQMSLT:DEڨȱQCtWX~dcgxLmj~7hgoUR#UA?fo16Wa /aa0-,R!ut7F1L"zV$rAM䂿ua(RD릻4 _Q4qKO6^a CxޕK<#G(|blȧJ)Dp_{˘Lu')K-~P>Γ]E-,nhCRƾe. 7iLoV̔[,hR#$şǼO8 b";b9;ݑPȝPoԿXʝ{Qp)i~U3B/f:hP}ʠ* 4 t7Œk|ȎRdqKQŔ.0 vPRR.3xݳڷ7q9=˯/㖓p)Le\R@\ÈK39߁t3y /nusu[(K_MV ؝O>E Uy@p_9b\=Myt ]0d>/q;@wQ|`FkI1\.wbJ`R#lK^d=mϖNԺmNl,"Q $óy]L1=BM=TGUL.|'L9牌҉Ĵ1lU30qLs: ۘ`)|blmԫZSr_^'X oySmw> ̦w/U B c90|/bXD :wv`wZ*~6.pRV=a/`^J~*Hj>ihv4,v-~1KKm:0Ja1d5&9nUO x$7F ɝ9^maX;?)Plϐ(czzsG{>NI= KewŇ$%+J+t>wY&0 ukrN: K Ug>IHFWBBW݁:b4)xV݈08'LtA$\rœA2IWE]V;̓ާzϞ*y諔fcZ((`?('bMz,=֖Bۙp5nfvJڒ՘,/!]9xxӴl5[ld>55K[1)ujVq I yʍU0@v vp9{{;eO@Ho;!`ilO(YZ~~_udDRD7I߲QHP Tk2Zԍ6ÏV(Ff,E\DT]ǂgZ0l0r nUNJո,c}׍6,?\kh8)4BY؂xЧb7dp^XPr;0<({~a%hyQz)*xfNxS܆=S+74 Q-`9bᐲJY$KJ||nB2R.XH[<+NE,vCM^a7- ׋oǺ<sؑŎTXA-lLX4-؊l ML[ n7@Dŗ7( W!$_ \.B97uZaZ.WWL7LDc]Y`*8U  r%B& S"Sx `e0u`r$| J>oXȮKD6J[E/~߭⇘Pt*ڪ1M׈_ґr|V2[iLh7L"~yk`S5=7RjB̙K=˿ڕ~[KK*$EΰEiuq3H^@sP#GE9y`mAD|P"-:]$L(h8Z .4xeHn v}*\C3$Smle2Ƌo%Qt1Mn0vj@ȉ!b/% yowc ʗcEfۭ^u|٢{=7S䅇#z#bǟpc9&61Dc󍶕9l *oV*X_Z5"' ,ocML5l9tqk{Fonf︵=M7MZopk{eU6Gl)i* %ǐXFml>dMr&qm^υ/O_^ t/&_qKjZN$(;URL\T̿Xq +aAMͺW: k[9v/]Gl˿Oƃt>}íf%SQJT4r*n8 NyS3a~:G F)˾#;sC{i9U{q::STŹd}:p3*}ƹh~ĹoYqsK9Y}gvSZ؍uBeQdVak\Ƒx`3E0P(L&Ay=Yd(8e7ݑ@]j|o:X413n,Ɵ7cϛo@]1gS3ZS4P)9>U913;p[O 2v3st; |kiLKOdLwֿΒO7\w:?}ŭM\K3*d&Epʫo*BY0#G4nJ[@ٔ#KHf{sHGۻGQ,ÝY7HVA (hDFh4b@ QP^ jBv!0 " p " Gu" d`ާgf7 z5DU^20@! %ru ,Wƞ3gvvO%dg~Z*Jl*ݍ_v"epCcWǤ*'ꜰ@c({U(S:nʘ}6َ @vqwlhWî9}:fpVDϧa SP<.wB\}tEb<7[,xʌ cn5Ȃ -X,J<5 6 ,-V:'/8C 9dgϹ2dIȼ_$Y?G{u#HSq7s"N*3{}RO= 2#;9H6s"hvudx0Kr[ ˔DlDlz#C5 k{2};Qd|;q-^^C7Wţc;̐dd';ٸouwE$y =:TcOyTCz a9#_9wҷ*REi\s0pTs9rݏ[)/']?TVL>aGiAt%RaTgPy~GGokꤎb'*[c,Cev>tYC_jR+<'fBnji_2?vtxEn- ,q {<EeFJ>ݾ==*@poA=1? 'drMoyFwهB&ZDuµ>[DHBL7{kj9aVOGY a797@G|ջ$d6]8.wh V;*35(^US7 ,daa7׹$k•t|k-MI kʩ]2㮩ؔT^VqO'vƼ%!3xK{T/G ,|`w3McV\\rSig[D}'fDao uʦa Z^;(/)>^#?O Y&&z=yUf|^@{\ؗCVR@4-r( &'PUZ֯q5%AJ2-YBL(.u ]ZZ@>oZVq")IH>NӐwNl1^8^#` a k(nj=Md}`}L>t/~kxmc<:v9XGs+@-z'mo=W+LǛ#yd)GT;yn/OQWrMXG|q1^kcIh{4$H 襲5#`(jRLcTk%`UN92W빦 JJr]9sX]JĊw{%&VLP H3&]xya tϭMӺr&\3ƘMu)VYJqibP3 ȒOZ%cIXR%4QRS(ҳ]DIWbIðhښvIaI_$KȒ&F`I%(|(),% ,Ƀ%?q%ˈ^fTQDICIHB؊.TjYV)b?^ {sN {}bDm]:Eߴ ݮq??faL#,6;[p;6vCa F؏w">E`ߊ_ sb jkc{ b!P{N'vfaS!"[ڨm)},^` C6/8[p~DmaENDN=؟ n-džZ߿$ ľ5^lc؟ EA {,'8"mcGBľ߳Opb;NAK[E6=Fq(:ʅ}R㺿@챈 wD'=!ʄF]l6`* jHFgc Ɉ,b`ckĩkGΈ bS>~ 19`a}-byݳD>cEeyN̖bba.DQ0qI&d\*_s1&dg= CBLxfBg"B`3&BB!&| O=Cg](!ai @XLp$Ä?!S"a%$ɘp!3& 源< BaHxCzA&HÄTHՋ/!a$ Ƅ!HށrH 0`-0b6#}!aWHX 9aH:apH 7BBsH Y Lȁ?ֆ"$셄bL=_C¿Nq{!3"E߯FG<~kqڦ^o0?V՛Ƴ}MÓ^oiNY)~?>kl?#WѧۺS{%Z!4L#3l@J i& [DDN `5mAMѸyZܝk7Ej\S6B$9Z*af ަ| RzB۫b;ѝй2}($hsu{p/k2}#ypiT[o Ӹ0w/l\=8~Fn@ڛ|EB JLnֹ-mvv2*2gZ\w=We)s^:hwΫ Sʌ)7|Uj>=u$z$`m)eE ^6aq36QKD%\w:iI=kk4kɳ*3jÖPYVK%?ɣ!\#b5l7߄R{G2חa6\W<*SyTIAQs2O|fi7SE)G"bO k Vb:@qz~Sg{پ#l/2qKsjh>;{C+$wt9:srow9hls "Ptp˭J]#1+@ Tfԧ 'J2X['*RO>=#nR}=dgWx Mr6BԔOKĚJE159lp/sg_ۗ+H̽#&@ emv>u9c%))bK>MoC!6pu4-q8%V9׵d/;N.p؉m;:Ϲ<20\O.{99L7r"ZWu׍Gl#zANJW1z/ 1%#_ra4OX/Wmו\eSvfq}'/3FAo9hE?P/|AN*t1{=u;p"}L=L==t4H1*xU1Wd^$ԧ2cSRZb *`qVt.{f ,Rv RAcj |jX5|B$忳ݕ5>f]vJ$"6nGK7*h$EGՕ%A[$J-;\*3~ [~ȑ<$ӻ-tQmB qҮ+q֡@y(SrrOP7J ]S2dfH@%RBwZʼh;E)` e(1prH B=eDmI!&gca>9¬8TZK ,LKH[!2 ~=a5~ KO< 'ՇTuSE9\Si#HB0]QX-rXr,cX@XetQ 9y2d/NDiove5Vu9^5ht".C$kH^^RI&\Kr\>%rMyqp_ joy9L'S-/- W(Q'皲[n䚲TtQzM W?߽JdQz:˹\& 0 cۤ.H12C9prcSƟ+*!nN7FP h$ xڿۢǰ]?:+?vlDJ] R;sbyRft (鲚/wh}BrH+-f0?~Be_9䍂?mlѕO]$thwZr-;Q1o "ait/h g>%Y4MTcR#W}3- 끟U4CN{-tm)W1iWljnu&*ĝmெ='e\: O3g/<5%@W'EwdlxWUհʌav fn#y}>9rM)d(hk|i.5 7Fث:9<9Lύy`^0@#k [齗SAMO&N g>?߸U39?1Jl}_q2Gq5הQ8aeNc15%M$;;[]'*u/CXfk]ɨ[ykwZ_ã甯<6?!Jn5ٟTf q()6)`וgC1'E鮶fe"Ɗp](:㺒䁰ksוYMlnȬֿTcX#@Xdz[e\V:.}cv\ g.~Q"e69 0-ȍ2̱Cir~]wLx3Lir]9yc~I"$щIӘ==z%b29@_iiH a)xߜLuv~ʌ r8)JKtŹ)ؼڷ{[uB^tmh_%\o{IX|K%Wbkԝ_Gj/[kA\s],z/q l( }x|TP!4M/d'9}Emd"/=4ݾi FtwDcc =σ;zawKO4 )Pk?s#9"`{:9މsL|Is:ymI`,&ǛQ"gIa -OM#a,ہk{ $Ot59N@Lm*ה'd bZYvr2x;qHh veue\ZU rmex@`{a]?hz1]eF v/=~&#a0Ұ?e |)]6 deGF-7|zq>AEHѥ!35:#{JbP t#%Bx4X9*.؆$V-vCzm q}W*g%޴ tMx8JZ!IYx$d=9(k).@QqFo:j}F#vőD$a2ہ 䊻+W5kvmh3o̸P2{\\h*MSv;oO׿yk8gUD7OSj9Q1#LʶE! U8~Q'I It,kϝr&Iл2b Td)FI~Qy5 gSӫ=Q*3$ӹx_%qNI8Esg#ZwDlTxgy¡Q~f=Ja )]q%|h ~qӱNe59^0Է-"B] 3n%OY.yH! :s;78ab mz5c))V2+V}EխRՏRfW=Tʌyy_:ȍ^` 5fw\5FԮu- }lz|,<%},%̵J/aT=`l#`z< 0Bu#_r1 [^ctc`НHaFu$dk;Xݻ  \}4ҖcJr?*3r,0Rȱ @ńɱ̒ccKVUQ)]?%oM+2FZz$d(س?@NMq*lD%0a75$Hax a`K4ӫ*JVd&&{qW. dU⾘,*6W%3IV<>Tebc)\s XH ` *5?nxc2= \Zd NMxոjqš-e>K{xX k2 mE\@TL eLe&:\k/7TKq[Hނlɣ逭sFqvg+r<`sR+$zYrќ&Cf<'\r"*>LAEC17$CC ;/%MhZM$:"5.x4z' Wwe#]3A<2#_$GԿr]y80A(u,6OX %xJ{JƁFKw%|*Q! %3gih?LbT-d֮z+O b5<2<9y³#5%CZeY//N>|TEnBrt>KOrф0b<|.8'9ս|0|EsZ?b+2t@,<)- \-~XW{uL|MKV`̬.%ċ%پn|f5'/Wt3WS~ uK~\|m߄\M=r5 !o^3TǗxi\ ?lH?4w)v9*K>~%޲`I>z;*ph/Pý ڥ$;QL⥑CSsg*3N6qnq),~#gbG~|qaȅeĚ#"\#bVx˰xSq>{tJ3t'¢MQ{7-w+q}mjGA%B\!7%B3rXSK}E?>kJL[i5`oNEhJDQr]yc~ܒ 8)uF('Z(JR Z(M_iBfʰ7Np}LwBR6dR\d%d=r0@{Wa6e*t/ZD5RF2r'/UQ5ReNVȈf[D4.sƙ5z^ 31.SQQca݈"WyW3W6 KmAp Rğ5R{3gMݖ7yX%Rt;&Lt rcD6ѿtIR*^pycwהwW%{%G`] ?DpMF_WW!"[wӿ^Pnπx }k)ޡOS`჏?:6:ΈT3$4$|!$D iR4.Vy F˦Zo'9v㼭r&lʎ ^zR "{|wS #xʌFN հ P<1F!p7{ʩ͈©͜f9A$1wPbp2cYV$Hd'EPx%:^&'KF4E[9>;냭)È2eVtst_hRT#=1הM?P1SdWFx#HoMG|ؚv5 qʌN"7Msh{๧8lj<$jqT-q4>Tc6ָt]cFdZXhۨƑ56T1 k15ƶa5~2㳛juC~.nw9J$IkN+$ӏm#Iz'I Tfxo䉞Hw@^*Ux2UUVBgFV-WVZ/r H}UEj#[wVʌC.6l:HF>OIZAISnM̘Fk訇Ċy>@Ry`gt3'9UE*3R+of zY7.r_&P!h\>Մ}&n&3+,1AWa8]cd|jY׷{=ϩ JU,`5τUW- 69}C09n;ػK퉩N~g?4 (KP؟C.,uaHUSC'EjOO퇅,RߋJ[(o%ޕg`lֳ)Fo:Hoǡ>/κAٺQ X2Ҏ d-3ݾy1]_^Nk2=܁c8o5nh_Rq6qMh+QGtX41&avi8 _WS96vOPA5]ŋ{iM@<,^)tq͙IGg_ZERN]ꔓ`3Nhf;tp/ .{I9H'`4"w#JLj'mI?J!??rM2ռ^B_[Wa()L&ïf4 {D0u1 ^O@R,[k_gDwR ^̠ k5E_c:@aX}=· -T4N T2Ɵp0#ȔɖOa A_~POw ^ /l:j0$d+;V n BVJG\\S3@dy9h|*]̤_x'κz!Uf\&8d1ƲݓƈU5D[jy a9ώGLJX: ј J *bݵw[ :x UBM2,j|_id׹9|޸ }5wgWAɅ֔ZJ'YT"9pC_zq8oTp%*3:oTi!'iдByN%PveC!\A2; Cqh?^OKהPݛݛgw&SMv/Yq5 ;vgmwG ֳfڱމf׬L~ʿ؇0znӏz+.etJg/ɇ|,Ƙ>x<:}0[\_c6'HE볙 bxWC 2cոܾ͕qP;+U{a:@.6ʖա;#|=75O2K3a #W-#ace]_sa}W`_|9P,ֹ91nGytr⋽ݽdVƺo/_2W˦X7gI+ֳ'M` Xշv/ R.^֜1P\:8R5h lqrgPCw-Uᬇ#Ǜ#9s>f= Ѥ}M+jΘfpcSƆ\SJubHؚcM l|Aċm#[_V1gnu4erĺ?+Zڀݶ1V0ַ1ƲRW@,4n0i&aB𾮇g؊E^GtƫVUg6+kI4 nRGXzK`L `GBƥP1Vn)`O^DzrzSSޜ@=>|5T1NQnX6˪TfR4,_5fA#A ӕM\hW4 j,c1^)lm)0 kk4l9 P)ɱ'N)b+˚{8FRJEXǀrypc6L{̕豒U*3j A=>/U%RYݽR>_8{DZ9\XM\R TCJ 򾄵0l+Uf6 a؋2׻'FU"@:* Xi 6 ו_#vjM^ABaBp=Ejr.<]6 G0ǭكhmr#ĴN_{ڥ_{/ kd Wc:@JQIn@.S둹=qòtb/τHJ$ 2lfp6)ή%_'\SOs.j%i3ST-)3sO<%R q~ɫCy?yNPk-/9󹌭gV*&{uJVpB:\u$MZSqȴ`=Xyg& *sR -oe?i!ǔx*4SJZ q2(—⬠JrʌO[7N* Os 2[aS*1fJS:s{kv;%[a~Vh^kUfl}*wcb*/NWa-2KRq[触S,Q<~ |\ɰ1i3ptXI|!,C6]abE?Ż&vGdy 탯{˳d#'Ħ0xdY" p 2woNΞ|m"0>a{|/2/`o*!1r]3=.ܳIC$^Řiif̖D$+pERʗQ ͘͞'Jv x _YV+ѫVdzxz7['6[̧k("MRbS#?Z$17lu/LρxH)V>S].m\Z~h_:XVOa .ҔlO5WLO؇7Ԧx$?W[1G Nma$vᇔRB{.~VŽ#868%''ף}zϻc交%כkTH=s]л=s.k%JRIԤF /'lOd4^b~G$ek?~ 4TP,bq2SfUydض5% 6!yF朔/KF.mnnͨm3 ӫryXH?}cVs{x ['+(Z N%\jhx'M=osJI$*3  v"j],kFۇ` ]'wLX~geTfԺeY%2枌a2Yo[N"2_V<,3l32-BܓcQÜB,Y삾'wT}h[cv@o~nU[q:Z' ٪`2jb Q!z)i"tc;הWW]V,*mFi# ]=qΫ&vв62U Gĺ"Ɗ{xAfVsm= nhSb cC!S|A-K1>/d̨$rfNE,ʚuͮA3ar2dUFUJOq] P6#Iwn:aP:4n["SGp2OH۰Vz,Jr3ugmY߆27[g|ܦ0--d{g\̢S~c{+1筛#؞dܿ)%bہFgt|]eHsե=*NҌDrJL=^U{6N2.d 7s,?_pjP=TƋɥw$iv<}Keʦ U@:]O\m*j!t?\o6/ͬeqzU~vTN0k}]O J`eZ0f"}7f8tʌ 8g3Ƹӿõ!3od7]یb7\=A&GY׹pNz9nro0zиzd;.^?> N4(L8),/Ӷq. L+ٵZedw^1]d7MR4&\2?7F4nz4)2O3og!g!B)t^ "Z^*z$dA߀1bȵdP) qݢ౩ؓ 0I㺒Ua(XT<&<$, PfjC*dHRn|h?ψ3>)QMNvX$&@}N`ƆX[q2ȣR)z+^R~(e/1$to]v>Ke}s`*Q&LB>˲&%R)=2Zjg'4XQnӋD.¨8y 77-< S>$lq\8ۚ;pv(,}X)K2/c1$߾08K+q}OWͫM/{ ^PeGbuAm| #/y2z" s h/LdP^>-l ե8\.a?kp^`uأqHk=f+:^E#ȹ : cX50-8 + fׂCB{h D\d_EZ+~]KCfP;E){S#[T`#Q@v-aBaಶ]N-iYH7,ʅj Q)sOx! K3@*蘿@o_tOM`'1va\SO |W) <1L>/ۏz| hYSA6dM b:FXQ} wZ?p[B#gW/M=tړٚL&Wm\W:&_ pAr NS̿1~@|0<$:MO:v`fqM,s,9rMJ/!x;(tLu\WWv#?ұHopO%rPo\p]dZ 6mn)&h5m{=Jڶ׃2'zQ TfTr9Bސ7XLkhz32׻#z#~ \Sb:@.9Ƶ!|r$ ^B \5y*})siALc+>༰ \SJѽitSYZy%,xe9Ø(TL>#WZheܾ Kc1Xt >tp )=ޙÎaB)"rj. ~jR Gb:Ci"w޳fdđ*ANYBԚobz“$1aȨl2.;w^ =4փ.!5{5Ý&BiD}x#^ \I1`cZ Ƈ8Ɛs;Fep:p'H/7O uVb|f>$CWy 'i$8{SMWfziy\<ߖ7yp]39dطt}!rMYrs^d!&ZHfw]0˗켄{[3FjsY| הDYg{\>.Ǻ~!/P'\s}-ӻVnҕʋܠ7yՐrM׃Ȏ}Ɏ}~_UԖkU%S:~-WզWxWW՞mʁZe ͮ*"Ɓ)FQuO`KƀD;>ζOKh \/ҚaFѕ!(̨"d/Fzv괉`#j`rA?T &@% wfN Xp^nG;Jּa0 0pBM!x=3o96C4\W>Нtg!3h4?9DHRyGKac=iGH6>2#c[F-Ѹ.־J_I_-`iGU]iѷzSϢӾ ќ-鰨s϶ܱjf +oŸ_s6 y^ݕAVA9+5Qc~KLy:H]uoxL5r-Wy΅M3"ty_d2]J4c$p`I~M}/&7q6H"'7X ކc,K)檟|ZyV=h 0Z"r\{Vk+ُYf\'bYïIRndOif֙/XDPXgaiO׃=XY?e ){э_9H< bB`?0tYqݽvH5;!Ry[$Ո}3jqD%o+]DFi?o~G\5@+ƞĉ}>`v¾ggk٫1| <9wF$fn)|W k׳_Jː+t,Ы㗆`LH~ m8Di m4uôӼP{qs$f̀?u ^|"Sz /Ca1|՛FMc:X\oULx[4n d#֛FA_4^>ei2uʊ%OL&cd7V?ݷtl7^CݹտOJ2s&2i%Bx>q<_ > EH,JMPo9?^Fr^U{oIcc1ӽ$ͳR$}C'j6>3ȷ5mOC"=\hʪ[ٞqrHziavF \gn>UE\3󓋺N\#k\݊g浢KD.Hݎ˟kfc@2A37VFk813qO?FO~()=p}(!8tד]m50;L X($0 !HUN1( "AQ" N5Y"" *TpN9AgB}z}|e2]]]]]]QC16'WjXїw2?cSڱQw/Huk*]}9&BO!S5@Mj$@~">.Z/^~b9_H$ .Ah]rY[~iMok>%j"jJ-q51֓S%hÍ,B$Ѿ@O~ʸt;H->xR{+QOt51 cNIAO4 D51Ұ0sSc]2HTiR?> 3!C<3(|A"<~/1$y중`/0/z&3`c"oQv+[I6~D'kڜo]\+7_hU?]wA?㘼=7Z{)cઽm0mH[dt1lh\<,xBgYIZ K$%C/M| H&jT#V0["?#f_ ÓLOę:ݛ hC0 yYY)Z-5,A]pcyyBb˚f)'ׇ+p@I{7>/-.g{3. +JPQb {N6QErWcR`& Q{4)>ǗC.0toҨf"rm1*l"dM3)W9 UG)$^p kR7JJoᦚE F!Fm(G(ރmq4w^PX3_ ({SwGO:+ ^.lTH0),Õ W)^ ;H\5 v%G;SܕP´FDA4cH3 /Y3KL!'m׆;30v x3\<py/A{W;يU{hi]kJRuV$Պb%*"kc@, qiIkYYA[M@15NeB㪯 k8~4)$tkrdxV+vbǀ$/{DF:0OCǓ C `+({#!Ct G=.1%ވ)C\gi%r],Z0_v y tyv~"ƿƿ(-.jCB!7)Z ·ܩ#ݼؖ5dǁ)$JܝmB3K$FQq-Wq U rhy/b3<PHA,3oP?kh" YRI$^a($f to7[1-4M5dlpMq] [Snb?dRz5S),kX8$٠S2 1Qw4/nMԸ:D%d}`}]e}~Dr8ԾQW %"krZ$r]|mדevKna\!\dNi+{l|X!=?!y <+Qܴ9&N–ِ $L4wn` Ʒ#k\ZA{[,Kk`QwdUVv%E60/ktʋnuLDD7 X,alJooX"%{qQx08r1 ?)8gU7O> Lr Bv_H rc}z˨aaUC&"^{^6rE;ީ{ؿQ0o/ r%W #H߇$[b+V(+뷖".Q}`Xl~8[7.O:Q4,>;I)oj, \pYvhtQy颲zm,] 1F2.*I9wEZġ/fNsa=T$?m.o#T(,_d:҂ #4 ߼17yT;s{T8i 9eʴ<ְ/^m % M=X f ߎ(Hk:-(Hw]ҿ9._EC!QV96{XKM$kma62!GbnwS> &&n̩I:< #0p/v `,9&9 E C($HIpHMCމ+gysa߷no$ηtx+AF!QR!wdHK($;c(Vz+R)0gю"ebn=xBΗIrBa'G; p:Ւt{ij1v\V)B?6We7r ^/L؅lBo&jb/k\͝A\i5@}+GR`W9Y򞻎( (d|P7&m7($<芡Xp`o.i:u URNzwO,FǶPJ.Ő:|;ee;̬Djz7W,,xJZNHn~ o%Ѧma}ΐUQń*? pi*7Pܣ4BA\_+ʯ(o8=8R3XKxO'pymiߴ7\2F V>ԯܵC-#qӣjO%MdŔͲ?a%恶ow>'<bI(#or >Nfh- YG@|h`9ecP8Ub-Шy-%vc$ Oc!bE6[z)$X0o$pwχaS7 d 7F'O‚%dןk(q+KOKOK$GMyxBvˈ}P{sŃ]r KmQHVyB4&ʃpލDA)⩆M4G..VҌ} /4GF O3§G.~/y\! BiT!\D{!E ].~sM/d螗!`y(ا|ק,f[֢oaF} 4roV?0~@"}KfHA}ޡ>K[6z}գnS~tnL?R\l`?0sK>zF5Jz`kpowH=]}@).mI} )]zӝL ̡˃K/_$ 8SR5h*uWQ}Kη%H^/'0'Ed-J`tM/fȪxE63}[*>}jn j=0Oa<. gtX.Om'.J^9#U#Ǜ^8՛ATs9|D5C 5Xt;T`ȧb$#!EO!/VETCoֹ:]WDݚひZI 7r_: >H ^%;j Gj9.+̵[15-FࣞӋXZ13HYDdMh+B\\;X+Y4dgOM% "<6#ܡ85o DkdY qe Ո_7ghg5 C_@.pm\S"jf5# ‚7AA2Fb<#8@og˓2>BF,8]SC-jwVb,j_N}1&ͽSP_؈jpӠS'LJ!"m&QI20:a EÞs?Phΐ>CthM%̵ۦ.l92nD2^ctua$FG[WX;<FeFП̜JRϭ4 C~rǪ;'e\f,fqeaS }iM1\F?xQ:n&} w1&D{=RiQDlce'ixto(dj|P$g7IR&ЂXTINu{"TшA.g:a"Mklyc77c+;@ԥRyw** Ri,{`NsHjAðaKb4郏' y9;΀gO$)MbA)} xo%y^bXb S=PJ$4h|A!_a *=+3hBgg(k&&o10'~kds+8jH#]>RBE7h6tm?^Agg3Vhvᯊc,m2)f\@LqTlrw^o(ǛaGW;pT:~k_4Gc9| i좬KXP3;V? LDy2)>_>H¦]!foh7wXJ*&%\Vɼ .GNӥY$fd<1/q'JV4Q;_M e`n>%K.8,>\sF41$j/t3 bkq0/+ݰ3dsl,*v+}‰y=lHCӷ'{YZ!ݛ卮ZPY~{S:Jx- ֗i{$xSYdE~;BFAHˆ\6EPJmN r"<=-"WԴ(=-0¢2 柅@\Eatڬ1,?ȹ4D|FRL[%F1Of*7sڍg+x!I ܋.`oVY-FV@\~Ϧ@PX^ĸ>"#fgiS:7TR@),K1wp (ATi~(TG8AkM) B;C*=dkg_3Fvmd;1tqD/Y 5R?'0B](7xKt~ 'Y@QMςgYSjkuS{QJ >R&h/DgFڣBPqcωp}DOax6\e/|Z+˰ѝ5 'Yk7 |\ U+ʐZa-VX 1lMm<{"2Xň{á0ocg;(Xx7 { }5S,Hg/E*4>T `7R5/gm7F0wY˥W7L^1+P, ?fY0rKa~iT QONSX 3|j/WVlV]E#>s|jK2{&jDρ;X~q[B`6= fV^m% 5[UA1vP?`euJILȒ +SLc^Sb҄@TC!_H_hH'ꤝLD. 6=fyDu`v%!K5^H,+CyslheO2f9q Bu_0rsa,j[Zh=?J ɻ?Ƽ+?%܃SS" 2T1"Lj2ʾ'Yap_68K_m}_UuҮ8oft$ oXKq / 7?~SH6@Z$ylLK?t?Him*>\]#E-ȿ]'Q'T52:)SKةD;>dI:^3z3̜w|2-a9|GYQ`^D!Yrq*8*D} C~j;vb& |xD){ggAkgG$'F`)TJ'Yͥ51VsKq߈m rbWbnlsߦA))S)zmu}{O6g [9ՈGq(tL/Ғ,8~Wx͛n(U_DYw A`k.iD~WpԻ)⯿E?n .|;16fj6JowׯkZ|]AWU\u gZ~ QȈjƺ|& %jt-T(}m3_:HLivspO_;. /dsw^b5ݛů e o?Qsο . sYuC^CHG.=)eRkQ8p @{ɥhO/xT4Q27;mo]@W,{&ԫ x?jKDlSāWZ_5W5zH1}"3sY1EnYeKm!t\- \ lљÈ" j>K5 j }\'+Pƺ5jj"5h* @ ;|}^?Aar uY$X1sAb*!wI~0 ='??GwSOaD~m!R]矊u<*%,L77[6bٟBNan}a(hXsX1E֥)Z-EIԸG"/:62LimM Sr4vCs[B)7:t]V :E؟Kwڹ/Y GCX|p K%jR?Wgc"01%me1ONF5J[SFQ$x?x4d/"%QC{ӆӆ"ŅA<ܠrA6lG_JMM,RHBTJ5vYd?xO#yr"lCvuU)Qi.3FYPV CVaF\L|>oWx70GLvgƣyE;^ jz/D%<2_)ҙFM%B(Ⱝ/E]n0Qc?Y$_gۧb {]ӯ1X)}faLAMfRws;QOT>#Mv|]J"~8 />}#or6^]m.~oebH"i>LJ+XDtmj'ZyuxF'y3lNBF0m`3}TA30J@GTI!s *:#h#lg&rDՅhDUD]ё %D]^:ˎhEx̆EݺnhnWUѬT͒ C2NTi. t+v4/ڭv4s=wnDz~vD=U*)+TJvUXEDVڋmf1D[sD3YDfVAtCD{UzfhϿhGԈl>6;Q饈Q kDT{oa[.A݈*Q8܂689ߥ6 FaiQMXx;JU? ڶ7-hD,.tmDrqye]$m*nq0?!CaXDh!SoZA6aˁ:*nQc?./nAKjνlro B<9aMPtb'0T w^I.=?djȇ'qercM˽t2}$;?4aD^ SȴzkeOw( d(:wAu`Co5>][<±>~0Q둾B i;Ce^`ffXm5=/݂ؑDjiX2k[MeG#܂aHΰ7v[ 7H}y}vKMvπ}m݂6l,k6'8o3-^gzKvb!--\A\Y_OVv7rZ=Kp$6H(, tl߲٢ӱ=o'w|I\EO__ "YǕX2CErDNz~ <AKQc:S'0X΍k  嫝>ܛl9 ̧`>q>A'SB`P[7JFU!hq3a ;5t Z(Ee!֎3eG;[Ж)vNrj']voo'Cv&hGv Z'dM5&4ގ-hWUa<-Jk2yf:i"{;+,jHyv-hN᪟ B&%Z`ǴVSBҕlw B<,cCMvĺLy&>uw(1B7EDoq܏ ЮW7Acb_2_;~j-Ŏ1ҁH[\vDr!QķAdV\PHL7)s@+ kÒ%T7{1[C:'lFu5ݧ-h]ƒeeJd<>%+/ҪX.4 -%nm Tn'ﱍecz|U1M_ԝ+Wm.d(Uw& ĥ+O^X%@,b \EW`a!ʋ%5ɋAS3w3* "yj%.a(4_Jo"Ҋp'`YܯkW[خe ஽ˣ?D|#ѱZwIpS`ܵK"W^xS-Znf̹U@E$QH_!w&Hcij2{lc_z}0#[V!^pv%G'ęV 5fy_p MF+x)dK=;>ܒ!ViE + %};H/cpaN˞Rl=pd,ɤo_lm_.0KVǸ`1!\ FxoYDIe7?0"@.p k>.q ZzJ%dM-5<,U ".[RC㴎g\鉍-:7H߀KwiiXf'9plst N0gwXP Rŕ1}PdnZu Aa@42 8rIf@ʔQv"ꊚ gUTgӠF-;ϊp 7s"xu7MoYgWY1qhV\N~gi&Ӡ]mG/ẂbD"6ibEQh:mC} 1!辭_!Nqy vBܣ] ́ ^v`] Cw³"=^k7ZmT_8]|`NɎ<xP-LNwyt<'8}#|lZ4ìw7[2I;[sby=gKf|ujzy9DWd{A_;oZ'C>tӽנXb")r F -a!)# N[8p͇?PbrXC-Iʈiܐ.d4sŨȖZ2\i[?ݣ˰[B)2dǭo|n6 &̸ꪊ#S#Rmz4!rɏK(\"򙜒UHܡ CRa&m'`[ݚbe&6Lɹ-^Ǐ!n;J(+;n64w-h{>>(RBr l-Hd] ~( Hw Zk;ceDú@|zQMgqv:vFmN/5MnA{N35XZ:Ψ݂6Nxɏ@%?: ӛ C]GJGs99>VnA~C3c>&Ͳ5X's 4gq?7R5؋{nAlku:є-hM5򦲉*}hk*1qF'ljߏozȭDGnvFkIsCz8dkgL_[} &O&WQ^msLLF*TO^F6  "&/nx`?@GYPB=VV  ` V!RŖK"/ȁOD~}. H, vDB@_Wy߻wnת49u G>!_rFtYx h&aI)w} ԙ60SHi5뱶]o 1]=fqm nvWsN DF'UZn^gGpzȈ6U'XÊf 0S2ǛK\'2Q HBN"Yin-䍱[ ׹g5v>f4$m A70Z|ł&%1:gaSK!Qs̈x̀m+3Id*6%tIlJ(NMB.cx^^TK=cvEծdq t 8Ų_c!CuZ]>mvӾ nlAߓpM9zE-^uKx0Zx!;o%QXBGQ5+ c,8\Ll9w;Ͳwm]38&fc ZEޝ.t) q?]96ao($(V~ "+]:o017,1T??{oCX1VW80SQZ8irySm9(+^CNI6\ّ$8"TJ|>uUQvӕJnŸ~S [=9 --u)l~3(: xlŒ+Il N! +pêR7pM%܉@^`S)V83ц7"m_UGRW(b+8Q"))|&g]Mr ZEGfRpWp~cf YqP RXP`vWFÜ1~6g@U3Kxҩ;xTSGZǗT|V"Tj&.S$ѯ+DM^ 3$b>, $*D_LIݡHquOѲVMuv6}N],oty[܂v\暛VM#ﱷs[>%朚[it=v[3N? {cK8΀B} Y?77)Gx\Gf_*ٟ MyMJ^o09lH{`u2DOǍ"5ok2NØj5ٳQ %*3S@z0l/'@ګ s @(Eq0OXE1?SXdeAT7,sFCiԮnAl8}ai-/YPN"(S*$?ý"(-Xq6ې(ҾqXoaQhmLzRnuka Ð/K?@CJ-Fӽ W~}34 \1c79%L,|/&9碉2S"eR*`Z=D/c*Tج0K.sq BETGlysA%vJIL*c;lT㵽-; +jv Aݡx]AE<_e\8M3Ȼ)MƻcZ2=5$ԑ)\""V1p};/Ye}PIܤ%=2^%u GoÍݬJXCI`^ ,ՋPd`glٹ(t٘Mb{N*;\2kʢ&gG"n$4dB^=Ljй[˙ءNI񏜑=gdO(9 I#FصsgK`\~AD-//߿l>xY +_.NWV5 tyhp"t=vz MDZwE@ g}reU}y^Gu9#X=$@J09mK8,,WMab1k C/g*[Jio5 g)0_.O1Ⱦ7chjZ?N|b8 ΝrX&?#>N.`૿'D8neO'#o@ %V,c)0.Ccm1J6[(R2QÙm]>d<Ϯ7 E`g'#6ߤ̭˿ #n Z&}"-9׀@@09W>@ S<>3W> HL\"F!8 28Sw-⍦CzB86zˆ ~M&s #_Ab b<=ec?R}@=ϐ>7 tL|qGb2˾"93癹0g:c Cot>| >^أy?'RǖþƮUoa4zڥe;5gČq\]n|҇PݥJ& 2pF+:^ .61gt &ReWQ{yCX+s8 9Ά~%d}P~=EN6Gs[J{~tJVzS]܂6jʲ]ŻHAӔRioT>F_3XgbDƝ-)ynD6ʆL8у/T5&,4 16 ~N%MCBQ''u*Ѯ2|FL&ѿߜ0 -;%dO8b2OmǮ(ڥs,v+؛ W0tWUAUt-d>V*<޶9Ov xv`JށfG{_GR(RiHњyHMΨtF]𚕗d*3SCeꖟ @,f㒈".[SjԜgK|Uph2Ywj^v݂İ%SB(tLMR55E.H#{ٹ[ФΩ <OЊCK[}niS@r+4.dtMbbUl<לzS -ɗ}ͮM0BӬ.(vfAYعxbV-/;︟T@(d"! $`ӑbnAޑxQEj>_Y;5&UҽgZ!CPaToR >[jOΓp\9϶90J<ÆKww5i ZO"y.NXL&9%_ˍe\S\% J(?VD.v 09$P+Yd]ѿ- FP5QiEObQ&(LtLtGEZ;ux>t`o0&vf8YMG6H;m O7d?HIL/FX 7h0-h6v4(xݠ7`/u6XO &AL o{8xً(BȨ;a/r/6?ۄ΁[ =m< 5Ct4-hGeGnxl zh0-h9l`hh[U֑Atg e 5(TYG3 JL<~ `* zE_6XVxS]`ɾKkk_~a!E8#>;݂vs(6=ZZuţZQsП8 Pid(c`ڔ"VÑ܁wT#I<-{|UcJQkTZܗ]5Qiz}T>iGèڌcƴ@1Uc SRל11mt(|Lti[оoSJb.}[|]nAl0N1I)27D!תLI7H7SkG5FQI=AH[̰쇜N=0c'ؕ(☱ȏˊ`(¹>o:P1[T~o:v U#7gIpΜOm1qF8V7Uo ҉!+UnMY>&VH ]f_h_O|(O>oħJv <-h<@<{0b0l&^xs5K &?S4:ә4;c fa؜EKj>yg<&E_V6̼u_Ao ?[C I^m!أWo]0a~h8$/z3}CDC-DiLy5O[d',$R/ɛYRrh$VU?\ v8Mr 2g{ҍiz)vz-ێɍ$Xn4;m E!QkǷ|dNVآ.|HUih9J;RGRXᛗ C{@M}2?0p8Uo"Sk9ɾVkn vO!; @?W "6yuR%න-6QȂ1DM9 ͽ âli$'߻1SmZr g E ^7$#R C4`XuC%ى0BdڽP܀fa z]]jn\{-X,*VtKvF@;"_Z7.G"TӮ X(/@<} O lQBo6o0N"Vewu^nիTTKw5n(2;wU hEr,T &ĉ?폧-$v`]٣- 9E܂|E8BK$7 '6i"N%yl8|-I!Q_<&%ym$X?Aa%%C>JK@LlqT\)Ci 7;LFnŖu^-1){A&mF{Ou<hu,xف-Z?a&?f7+.7t˙P=s0#)~XgԸS[x)ى(<$\.C|R6Db43)i;^K"#+fnB5ֱ֢~QEC;[!SB~9 м{y!DmSbexfZZ\<ܻ yA <{`0 N5TWWfewv]^m }\T8~l02)5!+D!tM4R2+LygE,]d˵L{̬ ʹX02S3LS˺ >k{wY={gΜ9sf K!w?.DVq+sf9߲p&SئG1p! ^w>AGZ\7Fn[jҺnn4Fshh"6֦qϛ0|*ǂ?N"$k\~,Ig;Qcg>pήp"-͗l`w} \ft od-"e]Nd#9 ll3(B@ KQ@.z.8?f>?LS#[B9[ۊot 6gШh=c'e+vz*8d'x'pf}tJ::l0S~[սQ~+iDd뜂hll|p l$\ߨ싸%9#}Fu*> V1fR}0ؐ.`VbtnK­]V.UVoǷXtcrk F 0 AjLF n`i_S؊^&ox8ts@P l^)$Iq Q;ٜtO+Pwff+l^pO+fM#afij6\ f:Am^=dgm./Ima}ݭMKa˙go } Kz06j~ש*/NBVAX"Vǿ Kxq8urwډ=s7`|yms6 Iۦ6ѥ.ly>+lXg0zu;_fí=~6; .6F(nd3xm p-χ)44 4p+ӢDyX^kc 4-X-g< 0tgohAI5:e𮿈i/XG,!#lf%| -/2쮆fak;B4l#*a3tⶍx"=,kCdqOo3:8cDž_; W{ٰ^hMw&1̷3^NkC>$g7Y31A0S~Trj01ښ%>k"H.wdfN`Uzaԯ)\Y l[OX ?lZpJޡ6)X8n{&.\`$C+,^ZaWlDwQ/#"^r{+NoyG-( 4M].ԢR_Rv.J!ngwPBɵȃ '* :toԂ /\yP! 'Bl0ArfI6ʀ XMMkuT;)?/P}}e6)bu\'OcB ^RD*v\x [ n6sEP ʇUڑYH1)Uj4@<3+yF%-0xAoxi%ކdR#-H EIM5{-xV;mjtE (gPi"j)Nֻ44љ=H{29ay>D.cw`9s i inLVި+DCm]7yQj"2yׯZ)lcIZ4d)?>~q^H.+? `(eLשTBSK0?or0"7"KEPom2$3%|5 (/8<>;CSqQf""J/'3Us5gIk2 Sa50oArO!8_r^ 4xԜ),JMaߪ qZ&r0'!AIG  Y1scA:y:(3>~{qsoXTYVF1Qڮ#A힛V`UamMF$璛Zr}^_t`;_)˝GX.4gcT6#8!%8`0zޙ?'v[7 Shݰ6Eѳ24G,M1#}5 E!}}jbxg wt'0!w$i2Z}-%׉sX$XRjRHUCl/vT#UZj0KBz"SB%ݼX g`aVNruUF B*Bj/aDhj:HBͦr'6l&t 2q7s*_v}M'zA'YSlDNrZ'@)*m}b?b^_rbx|1t;ꛃ N_QźFhh[v>jԊ!5K9YD7TgTEPC\҉b2Tҵ-zr{HUɕ=lкZWma0#)A]ZaɵoK@* :UȽ̩A0NrMG}^ ̣3rӚ[6`Ѥ5q $G}W4M'x'wBLu2>?ꈽtBve[1ŻVYXuԶ& >F.6}Uai;y)$lzI9aE?$_@> !ͦVMؽ28j aIY A~lL}(~(j0QttmHеIژI JhXP̤` 3_OXuM,>h]R-?vׁ'W(1 ܂RNњ>H! ),  PlJapC%}"[ohpB"[-R8(ԕm dnb=2oige@5fP~`j}Yƚ6~>)gGLs1y7O՟8mn{8f9c0|- ~V 0,<[1Hj2O+.#;`̰d;Rv 6ه_3bms|f,>o1"ܜmϽ՞C<>/H!YϒԖn+ !9WMԑDAW讀w=MO #cTU!*5"&}Ò8;+qFǔspF9U`ńx-h׈WL: eIs;`x>ZǦJxEֻ**cT`I?R+U~L#(\}#jȬ$?cv(179\C!N+, v7WF؂:#ߓ;3fZ>DS]'( rd`Ϟ&t7lƉR#'YA8&!ʑK'KAN4|⓼߽Pf,ޞvɋW_2@ٔW`f+0` GqUqow&\WrI.(EEP._Vĥk`2 `Q'9]Q*cLnV/Qd5ӚX6'-Mi8v'.uZ0uSS,^x PȉW0^IQ7% e=8ogHo}l} 4tT'UΣ&7?[};=rV,:[M{i[-8RrYh[Gof[G^Md't)tڬ[cf mh=fEP߯m&>myڼ&)3se1\%,36BFquQMgNU]0;η '1ۅ!cA 7$WG]e5nԘFb X"|d܆2.ߝBF.G 9W43%ɑ%KQ<#[p1G}0$ _\:z_7 C!]|8uMch{zGChoֳAjRV%).6wDC&$xH4"[\ CMv؆Yy ۑHg/F]`7p%).yD""FpޙV 3"T//n_T >N{ fMx/YOhM/)+LҁkRuRf5#ez)۟M8) w˖<3b$ؐs:uwgmy^v?QJҖ+pw_=N-u- #2H?8q} ;J: C.8U/<ؤ]͉l@ygRH%[ly|/=ja1q%6a;{Je 9K@w|E&v`7smLN2bI{W*!VrGTvM+1M/F?&ޙ9s XM7=Vdɵ-b)ڇm\QQA+l'6x[Xuz%6P]FD/F:y{B-acQ[z霦8PqGT.B!( -Cȿ%uCT~} P0CpI^m&#jPYYzɨ)c*A:}(-DvX̡<'eؒ*a4x,b7kv1}'@Y4M 3.%)X3802jer \8H6$ޙ٧ &4rtn M(?*`?7mAPot!mמyr'9*C\CΆOI,ws6шS+pz1D}*C}։YT9dLN~w_= c9NCP ,VeEE,F^wBѾ {vd&QdH w62/oK!ӈW٥#`ǰlAw0_C.D5'~M67r h~voNϻeyr)[]nHxL\J: `w&%e{=$;h_h`E =1Ha!`ܜmϣ^kϜh}~Lyr_?!"uGhEXy…%"u uW '_R XM ()׶8gnGWmťO؊{Kh g$TlxA!4"$sM4GW'iN"MXgqHw^z.N,@̋]1bg0@8W.^ dA q >==!>vAaa\G@oGKZ m`yHtm״&gal-NOd^{{ aĵyDn耄vN:d;^o])[wsd +)\6=7P%xwRE&km(9֭ lT_ܙ&}mB[-,R<WM#GͦUN㉈끇0HrƏ w(|Jg3tCW.zyHP  9plWCa`Նn'2/4wMMb3+@šA^bP8P#:гb 9NrsirZ^ZLzbcQzVп hޯic8&:12xvzS@WiO[9(?Y݌8RhsqT/ s_U87&֨36ze˖{ef lV!Ndq{{6< Pv"g%BS&(X1:fMf܈&VP~ *i>jok&_W$|{Gx0"~kxm^ IƑ-|) T%|ku~+Eq|1P'ct#+G'2y؄"op7̼/G}!GΗ$_'M:ήbW9Ι/H/b]113s"QD~[ [ƻ. 0yFjš趧Z1[_ #{E~(žXAmiR<<Q| ŗЪ /6S($r.sA&sd_DIX/e9XA}wI1UHFb-!΍y5;͟"ўIP\)Dhm/ ,ڦhXat+i8@qnLQh}az3+<:ej.Kݢ w NZ؝+\lM2p/\ /'6cK+, FWg$2qb[үvFs}z٠Xaq@) N'yѿض{Wf|zq>z/)i4"N븡?f/qM*MnQ:r[Ķe u˶h~';g@ojؘVHo?}E*9;.W(u [Di6CA$;D/GXɾ=ǽ?ڗ,O50)he LZK?VPwؤ#֝G?_d2x,"7^|n/ Tdh/S"&cAɧ} .(⒚vC{CƽȍK%~x˴g҄Sȋ?06ޠ7BcѺħH^,HfՆ:Fi@c;G_x1uqG<"s6d=~/;Sgv܁k}.'v {psOgf0_Mf?G}|]zSt Y:;tz d~5`Rޤ҃5??5icg5FM✦N묦4jꀱ4sV+<Q=<j0) ,T)%?;w ]u;K=}K"Ur_Esyd:fVa2f}!-e( J Cjco!P3,1or@:t\겷?vW?AD&<j,68ɎX1GH6k^T9ovLgwfX=+U[PHX!g .]k A*ͬYa=rv3{Gj \b&ǥrixP7s-(1 av3٣ݮM"xtMnU`ܒ|9kHxdleDj"Oկәq1dF0 oaS8* %:3o/D<ZvZx}9Q2%w"[52KfYS^U`ҵ',MKǽ7 _ .$օM<_uG+}/݂Re/NW҇CC㠫KUG,/ Gf.kmi%"ս;6i;4ɽZ6QSW-9{>ՊgzW)"k1x]ұQa^Pm';60L3|ݙ~=3,u{{U//_ +{{s7s~‚`Q2?ÂޟW[?;;0~,]2oAzZםԆ޹ISQSj8+ a_`I@cHl!($RRմbD1~P~S~^BD+o]ohBK; v.'( &nԷ r ʦ/ [l<܀;O`[PM$D~MLC2m\%Iy$:ߐ Ï7n\Yd~u :{ (9gMB0< e7&ehK' 1~Ytle;$ٓ*?xL[x%NP/;*T,N؇ (.BXB˃7YOvF/sQH^.:~+[T)FazvF/hg2f/"Fĸ1ߠg{^;;ٍ7u8vGH|z"3y-lχePKt 'Q@X)OZ~5~%|˕ө}Y|zJS}~9M-<6j}wZS7i}MZx#ܢ6/c-w$S#R;@(HP(Eo: n0 dTQiga@}7M}x.?8^s-^ҏZ[dzt0 hݏi+!߃:B6~_՗v5DRF̮ϜM M{%z+v[#&4dpqÒZj~vSZtaK1e9ENW$vUi{g)L8䄙w]Q9Ro9nˡjppi):|r͑*?>/|-rKs ЫM9n!_>O ~?ҘrT1ǽ *{%F+XaqOcyfgm{*bobMTd).S⬉)R7۴1۷њ]H;.oS+}-P&#p/f q=w~H1\I B!7upϾ\A=:K΁4=-A#U>ϊe<&ϣ1vOɍc/SrJqC "=c&JV"k$ij!M݋;z%$fj/bB|"7S W^쫍356u25Fm)Alyg!B:WH%;ENxBO&rҗA.E;2W~ToKIsE;Sg:=d8li3n&r¨oQti?=(cc`7Yt4;O49&H'÷<('R%É[9[Wݡh5:h9x Kg^?uK#I/ ¦OYߊL*&QFSҬtc}b[BSuEU{GuGy 00Ѯ1Y)- [xKg5M=TN h>g§-"bߓ~O"?H1Ez[vZg_ΐ{APoԤZL`Zmݾ%C 7R[E_m'U~߭ڊ0[:q֞!OlcLC\vz%:58tˑ*T{7CD*^iE[ߦERrx"Sli3DΌ(K`P /*F#cT>a\͒i̪ShVu U3SgA6,:z:"}2y7ӯBpZ\?<P(mW9F CBͪN"΍5DN l'2 8} !rt9p}7gsNayW{]sT=jYc-uu|9Xǔm^o :y% ]'Jw6Hb$vR4 bc !);=KA ksc|:Wc.: ~pkhaNQ  _C̅. Q;EIv^C5dJ]Hz,׳3rg%g.aN$إʅbpn~ q8[:NF@CNrI6/t ԐԆ~"7eg+ҳ}8ikݴ+[9?xJ=6tcf4cS/ '91B<^+N"g4i9gZqĐ8f?`}x_&`HZ4 #@7]'DVA&z cPqZ9$vXYa3z.Ok/xLF k.<<+*>*"|M4E4=K= T:Yɣeqg!$]#IdQ)WD?j &&J~\uQHdח|ng1 ?ߎ9)46C&W@ 7]6Yщ8.xM,X#E@_@M163^k7 ϑGg5*l $JJ(dSvBN7)˾13BIMڧ&>=}1xןTV _A4CelPR(Rz3PqX4<m?-`.u~KK`$NP;4:eNw5 l58[Y#Od'tVhi̾]8Ϯw`ȧ;dKȨ3֏~ inWbSXzU{i db|e?$< WyӲ7كWydW6G<8A"6u0Y$e.9[Sفk*;ؚ G=ᖱm( 㢉,NП{:yo|8;YgAp)`̑.9WvБ*u Mw &6ݯw7 bJL:QL""XR캱\OIJ!(qQsWP/,U4Y*7|fglк4bpcs}9zrvvRY(#qDɍ|oFЅ]A wcXk2 c[.E! \,8NP_\"EdHt!V_YO;~kbΪLPSDiAj@9hb{X mNACz Sg;:NPG.& ӯ'xg_ӔB]6?:#JgLRW#+ [־e0k_v "l#C;-X ~MLxM^?.da(_v)POl7C͹ |plEMӹe@ȸnhʏ]F~'A*COOnnPvlX_üƴ!0?6lv_dvM|c,N"氟bKVO?Bj+ld7S@bZ㍵&2 0&}!sc +^O7dDܾXB6e7@F*]hµrq['[F ?q G#fimdYZ#ְÌX( c]MM- H>EL{tw֚8A6W1r[%5+тctqI_y-)-i]i ;זs= uQi cdOWß gu^SزP W(m|k("¼&:ì,U"R²[_1>n!ԧ/q"R7P /fH?Fw$zZp zgqt"_թn,n#1s\*g9GSkHjmпe3/TOX+ʌ4Ǡf~m3JbN2|S120hDƘ̍%bbԤX^C<#(l!UMZO~ZuN* ub;ZFތ=LK5\-* СEtXVR(TBa\^ cSO2I}kW FNhRX }oX `y9tk*LP z4Sj%*?OfJ$נDxSENm f1^f$WbTi֨Xju8Mi,mmLWfK΄%W IMBJC|'] *cs;`ӉmSmJqEy>p+cT1ēf epy`-,Pwٛ/Pc拉2evXYvݖu\rUl.]1'N!^~3ߜld )pC(hff.ن*W@Ȉ( ?Uacbxuq W^3ꤹ,xdh9s@)D3oc7;ppiD5P9ዷa_jҞF]۔f?|f߁mҚ|[!.jd+[G PhXJEuB6?eK _fKJU4LH8Az3/ZO@dq[8dzqJ^4SY4E og~hL( OB3Cr^?e&IiWqp6- lBjUւ$)Ul"2tP]x37P^g.6mQȡl}k3@(dI=t7ï,ė-d𖑢S@z>"]rE:D-Ak X0s`۰l a5H,,[^Ň|b9\PV.^j}傪_.ʈo\z_ymC>\3Y J ,,2s-NwYyxϒp~.u&NPw ~hQz'G@8@!z*ci& 4ܠZl~gR~mGTکwr7$۰ NwNnԣICks^QDNuۻ kb^8+@ 69Ĭ <.kQFT O5r2tAC C C9CK}ZC12tK&62W5WVk(l; __QhjA8CkP[HU~?Y8T9'[*ofkbRD)Du y;Kí ;<^fvɓW.F ) YˆHWΎNjN8Awa-JrKqLx1D lr X?B_T[e$8A=awd%LEޕwTdzk[CmoxQGȋ\G`:S ™D3:+(0 td'ÿڀ7^l(+o\K #QD/u\ uPFm"<A-ӽ0k>  K 3{Y3K ,N+zq"eXZHK }piܐR%-,-0K LHESL–۰0'X~gnLP}Ėtb [{DhGx}mC6nHNI_[`ԥS\b+0EFH|W }R|?,8 )lH-/ G1,<5ͫ>+ճoM.`$|g w >/hoy?ij8< BY|a'(Y8@%,ѹr]$ˣr )SM1Z*bk-{,$~GYqKs-Иz@3J8xI ҘiL_isOyDA*[,5 @ ',x#/ߏG6#lIJ+:^M-Лlu'D(}Bh3;= cX4OdI#twz0ݣݖ.iD{kh6KrP|/r zIapTń<>aSc2sc:nrik;NR۠ȵ}k>QHdqKHf u|ĺ&~uQHצ &yY%THm23QܘG -QwOi4/,}96NAZ^tTI0oa J҆W! U%J|G&L%YocR? T~[Ir f^?enH'nmZxpBag 18!&؟'~ѾgEC,m7I3ѽj` *E {?cy!fgftZAGE GII;ZF"+q//_zS VnVO(>؜LDg1D^0_՛6woVB.7IewƝcq ,Rc|҈O:=ՋT~mHY T/+jّyodEHe^~PN!zL8'bφP}|n7PS:RmaV另yk=1/&d`-Yty!;fP& m ,[=8h"JR`.wZ2 'l73\Ӱ?NP 7`~I$}1nm`{6MP(eIG<|JHLdO(nK$,/nr0Hd맼8Ik 6WI1XU/^wB:W 3,`OGXaZQL:%qFmZn<9!^f [!lcj6ĽNcE ,3 "ZV:mHgS'Tf/T92͝osbB>5%3"8ysaPyL? %zH\`,GٳG!kBeV 3W.9[HpY?~~S8,ng`|?}`|g "_,3 )^xp4ŁS\8*5hM3#bM1N=}ce/^QHdG^#+Pl"Xޡ^iShy?wF-aB.f%΀, ;+#~- ؿ"s3-bi0P!"D_>t}..C'0M %S3OҨgM9}Wze.NˑG"E $Һ`4xBg WPQB<7[en4<gIeqYVBjZ|]8#)ņGD..np,Ղ:'u4v,5KVB49{::_3kӑՙ~^Up,d76g䈕grJva2*]lU%"O?;RHslH"q78n 9ζ;B 6_gDjEs2]4ͫ/Y_Q Y 6M]e{!W,o~Y__Tx$%u+g{Fu o%-2CZ.5'Sc'LNci,fȗl@OzmMKϡۧM@JiC/N]8m冶$P@o]4 {O>h={!=LH8B4G;B*тk38#A;N^CYKBr2ΥmrZtv)Ԃ1I/瓴6gፔ24Le7u):(qPh nJ) ?VƼˆW\7Aō6S}{i" gҸ2 TnNvdzZuk|t_>2VA<]<QV|Nqx% =wյw*:*ne*`="g=QoeyrgHUߐ/)zCømRƖ;ι)=&&<F8,jMr/nJ}[r+ qs [ } :vR8l ~%%1~bhp^vxO'j"zg!𝟧~?  >.Y0Nd=_pY|Fnn;o?K8sYHl@ʾ>%;Kktʀ= +\?`=JwTS8Вy:uڄq~d 0CQ8СU"{b^*Y_ ?%E\$@8)T2|}= iKGPJvSJЫdHg>GM`L o|EY8xF9xƼTޏg*ȷ_5֓G(ީ瑹z7yps5:eG־r T#%4doH)]Ywf ڧ8]c|x=@Q7VBf>PxJַ]෻@o tZʀlgc*Q-mq|lkm'n~NO[s:wA; %Ǎ00liͅS⸒t6밶na@A}_ߨ:k#^Oqa,y?)tCED{:l©N; a+t谉[}vASoMӹMê/I-j%--{b=5҃@:x8;/Pu4% fݒbYZ[Ҷ@kt {.NQ-t\5%u]:q=w3\^QㅺtVLs-^bVa!P%{ pJW)߁Q='H:=z;uVJm~a ? ԥd7E7ex߯XDSܝ<\/ _^ W[vұ8-#S*Y߅22ԭQLeLFH~(hZ2[x$eγ]Q}.w3S#b u$'?nJHl~1 pom+c6.ɜd}2;(;@g&N@jդȫIwkK$)M9q?Ai:9-4(gG'ByzoБSG fskr} ζvw]/SE}=G} :yݖĽ/6C[!mycI[A8|eMJz֖th$ISzmT>)$;C[{N-uHЇt%2鐠$h8\sJ&AܼkX~[f^%m]-u< +>RZ|nڬPg)j9^J;nGM:k-ǵh)ڦo9jmPk7 >Zs ZM\k5m`oOgw :ˠ/:_ě &ޗo6BɆ>sg^:3PNɉK&~'Ӧd}[9Y#\9Ε52O)  ?g : ${o=Dڈ#ru'3/іϓG7|DM*X/vu¿M.Wz{ҋ0|xJv<|`?~:n3XOlSJR5|(DND~fY~+|x 9w?@)88ã;ԩ'^?EyrS-hޱo`WeCw9ڣ6~D 2J6\^=/XY[]6wwUMz/,Gktv4+)XT RFd '~|**cWG)V)~Tp'ˆhgWkn^Զ` g1Mk)!HkJ>O:dȫ0CX-e* WVPVwC,EPy'm0};tu hr_Ɇ>T?g?x.R[>TcDR8БN{GV+٦*mً dSv4>YbLPӸ3DNArnui>^pn b&@M+= UOD9 ᭔hg|wf~SI6-LD^-::Ad*txgWy8Kψ@]e`?=1߽ӹK9Nb;|GaFpNyV5QN,p&رO){c7(\$P@Z/*Y" ?bZyϫJ`qRkϙ꟫wMŶh3}_wi twR2?rhzP53G蓆IK|d2_낗_GWF䮾D~+cYSGO*?l=:o=:zxf5^I*T9Rewaܖ 2_h7w{?J`GcMKY.?ف D؏oK꨿C}HRy,-|wi),%8,w |-ߋns85q6{]f/9YA,-N+c[l\l*Y߶\:]U|v!φ2>KY^MN>MۧI6"D6]p"?<'=9OTbg.>m<3>I pxdWpJ6*ÿm  _w-Jvan%?:6L NaxnRHޅqq# aleIkЧ?FQ۹{l(ّG9%dU8uPI/qoAI9Ɲ+z\I㽕O]DoZh}3蓫uӋ3Sn- rR=~'[Go&lMX>Qy>9m.Qgw-.|\Yq_u̅i~{ D_VFM璼m:WF+lRAB52Kd}m*Mt~2'̬wu'q]%gBYy`'x~z9OrP9?=:O"%R_( |+M6*Je6sXfTX㓎2 S5M\ /QVou?Q+]27Sow mg)ؠ|m{;Mnlv| T"WUm2|:K@߃SD ,wV,><ؙ:PȻ4?ϑBR GCM(6fi?ںHɆuKPWg;R}T)>3tTLyw|ꛜ0\y ]e6|aLL7 Ѓ2OShqa򹮢p꺋;COHj j`U=9NNPH|Q*׶k+|HK+Jܬy#;Lv=U{ͧ~RϙJ=jZN/vjw - ͞7zgJn4nN%ܲ̕KO]SfIٱA̮~}#GWgsK%/dW)\zpasBL~#MZnkjTlk<pߓe[ *!XRWGὕ9WUvpX(ފ|G7>B#JUv:JdnVőyv?|e/S8P% F,cy-HTJ- Em)J):6"+G:=/ P3 ]Inp) ՟l9ύߏS:IҜsۃ;w0kT.RUFPƭ%߽Q t 'n(jņs5c'yZC2}xP %J~rqOf~L_ƪkGvA' }%𿨣UWiT) 썜,Q7?\2˛;KbH>yw[A_ c{PF_ bЈ?I ܘWJUȒN@25{F||+*Y{dQ4|_pJwo[4[G(U䌰w*"#ض[Oe7S8P.׀ Ej2((__2|~CuJ(lc5-E5Z2Z.~({v$PJzoV7ؗeP@@(Y߃pO-wǧWo ;dCk/yrT>݇!վ?)D4et@>T2۟D13|cOn8Y?~+Ԫ /z%zYXp T)S8rYA{y jx" v }|CVEA@Kӷ>ӑ BVYxi/$vcnߞ='>OTP<>/ TYxxaF2n4^hKV\ReYŰi1 EyFKW BߗE}އD~Bs>o\U= ʃ 0؈CO\P&^F hىLX+=o\`W=%_'A;lAF<v-JJYz[AKH-gbLj|)wԋ/^<""ΟGNո窷q2>n.XhSi,{ +3(r]C5߁2^L(N}7ϏZߑ,ﮂ)2bpY,G ׎gon_kXh׼i{"w7jOg{b,_}}^-ߕC(^}+]97DiZcFvA匶aXul) шR>?sO1]㯯\i'vSe~O"wiQ tЯr_|OikP~%Wտj#\ dw{F1]~${ݍ(ppܱњ=Wς"w짮ⶫL l&39U|ŋ2cRF܁g{OC'=}JZeLyKywOܗ?}ī57'sO9|>~rW,/X؂RѿZ9I̶֦{^h=~Z?U?MA;8[?>*/L?ܚj][w6^ Vx~x~7 6z2詗o2c!37'N?{_)eIed-gQ"9<mηSi騭 =P⎴>:u~kmx(߶#JB?<VEm9Jꥰ9AKK*o5o(XF?B<}9օQFY7חkK .i/ W] w$Qv委nZ{/Dzо(zHCN)-ѱwkv0 PPk0wk+ 3V<}lKd (~yq[F' [jCO*XRu'z0w_gֽQ{mWR@p[tZDžRi-#>G}s'|>4(̝+m}o2Jһ_2uH>?v)s/g/ ХdoQ23;F!`Ԇ[jU [E[ya]R>;s0O3C6"w7~ ݤ0N9# E.${[JLonei}owے6E uQvW y6<` 6<<NH ,$7K{޷R~V~KuZ,|7R;M}L^A~icLeģ}Wh#2;c<حsWG7V 6WzZ-z&5|';9n-QR5^V >5ߨx|yXwEڡ/.ymz }.[^}^{$F8P ;gF:e-Fo^GQuy{jxty۳>k(o"͎*c0UW{QbOP%뻠S~@!αt-F EK)J䰷vi^' #d̿啬ugӛ+c.s܎2>~Z]jzz#;Fv /['-.u^21N mT]=[d;(*t{ ߲%8g>ؿG_GF~{C]OyAexYPh ;5pS]nhԋ3)k.,|$5xjzl{/aϩ+G@q9|`Xe J/' n;UF9Nh$;37 pi>~6@cUr^KvUrXc; $K{8?fqʘoz%|?6H.;`Zl Nx~f7w֏:A'D@'DŜoB _p-5ohT7rin/R՝s[bp-ƲX&g)I@l:/kO|𵿭;(ijˈϵdaY3)<| y9ş?[zdbc~o-|$WP"\[ɼc 蛼ZW~G#/R~w>=z>/ [(+=?&7{l³COMO^!<BxBxBx !<]BxBxl!<}Bxt_5L 1o:bzļu11oZ!lc#Eםb^ zbgx=׫CpU:Ko)g 1/ W! ̄'RQ )  "oU+YBKYYa}ַ 1m,=I#7b1M#7)ߢ"ZG̿Z;W[5#淥17fjD"o^-C{1Cgt4 1G|_N,8[o 1[4ӝb~TM?D&c:K$ߪ%J5_wi)r(1ÿ!zl׍wjBOh0'7ÿ '$!w Ѐ7N&< HwRQoyL[ Z6?!%֒z_K/?͂0F>1v?ox'݂9J:秵(?7R-ߎN!_ڍm'0|էBCoGi:Z֓E:eoS,fywHL3f:EU"Gx&Gx ]12=«zË;[4U7VS@3#$njzwl֢}m״H0v}7Da(abu{vP}k&@zM# X=k'%MH{{S $)ea,)KCbb C*lE VEXxҪd@ݘtTҚHKH:q޴ ɛNadi[ә(^تMְl*3[7yg$O ~˺_ݩ!&OY7Ao{-_M[Mݍ~/CRNhZ/zW#]7Nk]i]9ۈN|hjDg ZSw㜞>nUQzǙOtPzkTobѩV į!<9ɿPU~9]1TrJ2vY8|\m˻ћ{IT:>NG8]|~Mg~N}GAǿ09eMtgj{?Q7h]Lezp9ݟ=^Ot*j/]k\K8Y3?|_)N.Ss?z7?pN.Gn\O5g_s?Lq?rMq=OqS'~8r~8/0p?~ˏa=DEg"GtYGLTp?~pT;)IS]OY~Ͳ~;q7+q?=r]# ܿS_Nrzøܯ&?vq?1I_GYp?t1d9$p?p?Lq?~XpG0pZ{C#\G~59c94+)YKS~8m%T#uDs?~~(ɴEݦv [&5pG{c4iƐp95д>00]t[k ]5ԲLw% ^HM0}t/4>EM53ܷވi@tՌbm-c zHoB߷Y5ZFξf~_{=GzmZH3Ig=puj"1|foR0SBy"ѪO5L*RK!)娯xPH3`P@ (k`k /[0^u#.OAOK0\ O,0P|ZE:`[On'it(v>T$u8[ţ8P~t ӥBt2}:6X>`~tK{Q186 LVOIM} h_DwBz u|Iu#Dk> cШgq$3LTLAV$HfTKKEqƗ:4leWFu v1@ >K"viq][+텱/ţi1qiFlnڋC_#P=嚆~ 4Jj`<)ҶL۪e~װ?m84zۅmiOl-doS>5#\X~\~k3=KB;g嶛[em!w"Ze dfRfV.tG5EZ&FA]FAIU֬8X֢%4Bjw-~GSzb(u`Pli%A)k4Ոa!vĴhe;RG(SާkjPMpd\Cx+VIH& Lm5+DYnSHw&Zr'j&&<8OQbiQKA*- UC֣BBLV\Z= _ - Gw *G5;bCbKF!Dn. Nn5BlIez70(jH#3e ͈P> @㔁{Q&Y+%Y%Әd&m{ VeqCKh428Yf/3f35L:B]ƛY Iq3PZk&Y*eY.Y)6RВlbvbRSQ+Ki=#c[8EUWccKeR,}v!ӣ'$Mlؖ$>=!$Q 3٭´fS$,fҫ42{lc 3v=`2ݨWlKֹ_İP/ hsqi_,mFiQ֯6ތibzZf3Y[m+j}Nй$L-㌡Gq>| m-!Y_hPඓM^N*IڋS)2Fn!p1bā nr(ohR|MGkY5hJW5Ztd*6ryiؖ Ol(_ ѓn p%e(jxԶ:-kv;KM=W~*8nXjj:pU&rh&T\O8|6ȵлIS >)DeҴ4冚P"GQ0-7ʍ$gdk)6Sj&mhN78)oĥ3ylK-mœ婌׋ʡ vQjҢ UO" ?i@K^pv\GDi=N+OiӲqF)2Eus|$r0)j'R,嶺SBwz%,)۳mhɭ>o0 i-r:R[jje1Tɱ_U?z|ѶHIb:yo4Y<а؞ҽSH7Efz1 QL$kPxAʶ<ܫ -#K:¿N7b82FFiZy)G~ЋZmlY/˖!:mi&6Ҷ˗٥EgmF,CMnl#fT)gmXޖIz  $O#iQhj4:\3X`YfBwetK@%Ҽ!diyˏ/h܌jH#0 6Ik - r5aTc3k?j,GO~~\Q!}4g#G(b@5#L3y~YK3~)QӶbPyыAg!hH BB$$dI{28A"cd7$q"B{55u YKuCg׹n㑎_OkdjLiЫ%T yCRğD)/!:-@Fw' ~,rځF~4X= eiH}zuӬT~TTo*DLLл>zfVdʼn5-q 7רvW?hH"CNP:9 VErSV\HU~I0޴ӌ85AV곉@:5 [_ dq\UadkxM´{5ߛRc:JѸؒ֘7Ny?hcۯHE8Tc+Lv޶:̎^NVN4,AmZZ,) *cj1ăҐG9qEm csM׭z(fiTKWcz#m@ؠff{DD{=">=Yja$E+-@fRVpL Ű * h6%H=-ӌi;CdG0 hE7@tZOtAƶ\? @wFOx /(#0fٓEQy=:[1 L~͡="ZF lJaߓ v-r.`@B!Xxtmq ģII&b t^ nq7M`кK& )h@zz@hЖcc1@s4SH$Z=';)V^BqF$X&nѢ*qfhZ ? ;`Z+'Xa)3ZFIk%6JdA+ ^M%i<VYhjL5q[TFsZ7Āu +:'8aU Ѐ%` [qsKEo LT|e"׊&C4.worX;؀,/y hZb2u,] #Nʒ8JʳYh\,;,2S4CZvQ7:? B \ؽ|tD#IKr^YV҂n[}p'o'#<+a?J@NjI-Z:j)ZDSh DUj{D%4=P)MuJmnA{ ~ҁTc-ll5[T[#*T+ݫ&i߸:pd%OdTihM7׊U#*784oA#r#?][4FUe; M"jWhDXB*jBRSW+A$bL!A@=W*~)^KݚEjg,XZ*JHg,)*pF{@S(?2mξh $eZt#[ZV+i΅J%JCo2_KU } Ӟ4@K%F&كR8wx_Ɣ )Kr%ggT$"iںR]"}[$U&o%k\nX7^[YJJ^ 6ZrƅއJ8\xeZ 9 d1Tb)3/AKYveZ{r,Pr^IHKD>` (Vl4(+3c2c4~*ɃgD*qLjozA!i,1bkIJ0&4 d JՍ`qaUi*B< !HJPmghqKkGГY:~ɷFGQ@lV BC}*֒w@iZ t@b d5*u۠ tF@p>ZTp5inmҺe@=[nA2QjԵ6= j+z\KeoA&xwSVj8r%Ӷlg_ 7Hq$[UzQhXA  {Avk̫jFBO۠&$B0MQIAP&z,t@l莌CN΢p&X_4l΂I)hiטi܀C pYi$+I"U hq$WpuQG:ң;|(xc>h9Bt8k&wt y%z<1jL[ZMb_OVq. q*e0=tۦ |Ifl^+DdjD5t /]#O2^a5'1~q=) 0nd|ӌ;w1e$cc?!UG/`<θ~u'3~qIƍe0ba|q'㣌?ø4Ƴd¸Q gGO3dcxq/㓌SW1a81`\a '72~xqƝ2b ^ӌSs2b|crr~U'/`0Ɠ?ʸG72>Xa iƝs2e|q":xH9#R10%N7*ӌk2g,>f\8¸qz)ƍG3b<8x)㌏2`x4IƳ/sO3a<˸x4IƳsO3a<˸*53N1nd<8xq )ƓO1g|iƓgO19U0e\X<`\8¸qz)ƍG3b<8x)㌏2`x4IƳG9U0e\X|qq .S10gxq$!SeW10aŸqq#!㌻O0N1dÅRu3]xʅt\ uohC)v]Ϲ\Qvv_?u} Ϻ.p` sw~ /p_]_5.zuv]\G\׏K~uQU\xu"Qr]t߅zυYׅ\x u |zz 7:nu]u̅ora۝W|&͗bA%^zم'\񵸮?^!V\?뺞sῺR_ąk\RY];]- .<.!p K{Ib /pԅ]XKW.t>C.,ķx.,%v]?ͅ$z؅?]w.e_w]?Ӆ\I>˅Q$z΅$M.,%vv_?u} Ϻ.,%=.<υz~y.u w ׸pZuu} s:q]]ץ$q OO‹]uu^e.|lv]_zuu}݅]x .?7N+>i/I!^*q=Z\u]/w]u +u]Ϲ_c~)/5T,z|^ẾՅ]?^"TC#DBiX =Q/p=ٷ_^_b /+;^˗7v|78=;\CmwQ()Ǝ} >ZDc<{zof?O-MmOkiqgsCfOfSB pOah^Q^>&D=1>;f\L_)b_-b:Ϸ tӶ5*]9[Ľ.vӆ(6m|ρ*b" Ѯ¹!EB̨SfIQ iL!_x.CHzL!ƈqvӣ%.ԅrv]70-FҹiBhf8קn\'DkxO(j&SPk79 D5 /o5 m s1M[m"$8|&O fX<7'QqfAHz!=,t{J5/=ڋC5Ϲ ۩ fR(:!y< [1$ف4T߀[;T`ۗGQ,wBB"` ǀ1 唛pH8vI6$ewAA"">VETAQCއ(*LOLm̆~|&oUW-ǭU A,UxkL(W'XI|uwf𖢤H5I\($@ {qK+2JN'졬%t\Qp痺|*[ك(ۗ4[F9=?>PU&CGYE1bPBÒ9{|II7;}dq({(y׫$R$~2?Y̫hgA7ctACFc.u\KrP>JAq" =)q')I2=ѰI/ YbyRqW8Wx_8%JK|.>$(.Iش5SX$ Yut_Зw3]Oe؇xR8B97JKyfh61hE/i$c1Dj5{)k2ݥ,k?ʹa-Q}Ɋ9" \N%]-dp 8UC ޲OiE$C>ҲBdEWB<$P̪O9^h|G\N.աCSUb񁳵>ø6Q!>eE.rQ4>\9\Nߤ J)-S+w3ӽ_ d+*0V>{d\1+>#9}zbWF35{sHovS%@&EW>$Y 8Q sЈ̏<9zh'?O<:Yy}BrX_V$>c\rklr!?镳RiMaq  Únrqw"ZnW(tSʒ1WMV΢H1@݌%2Tx&Y=[*sw;= 7ɰf@HvM^}>Z!mYmrW0?j99lш{RrrnJzDNQP[Ⅴ\ ʉR )VVh$&t&K+^i@IKᚰ[OP [k=ȧ$[x{9Rts~4yzxp;{c/+{y9Qϫe {Aj6Aa *Kͮz;>F!59^n3h+|//!{UBތ>e|@C3gݣ)Z!X#Rao?|SY1,/K+\CR;}rQQX&ĩ1,eSu22EcOqNy  %,(UTzÔo5+?I&EUt9\> (N{u^PR4bFKP'EQVխx'ڟbKv冗ޚR(Kyf׋?fO>3F9aTْS#ۇ/\7SeN*Xz3U+&~e@Q`FqVН~B3Ɛݔuk CK]<˵LU_NƖVd --/9 6U+}azj Gf ~C+,6Q,똪_Q n UI"WNDQz'DjD Gfi‡wkng 0YΏ͝wZ)E~b^~l*q{j=Li\4x (-P, 7:|vjz('C9{H]5S fo-tTa!c JUMy⮎TY9=}⩅RyZOUFx뭩v+SUSQ5԰?(||*/BL8K]~sϬX-!+dܓ`!:O1⫫ea\W#ª3h=IxXE\I˥'<垼n:h܈*KaO x]Yezf׺ZW [Up[O7K}rs֓.8Ez*7ÆUO?ij {75ЩV9&W,6GUxs1u5R) S9%nXV#Vz9dŰZoZWYcCszkF]~*uňQJ%i1rwWՕOXu#8l;ؔ8lTN>yx79WgBhncua)SՔWIvy`٦ "BHQ7+Rjq_BIs$$lot£k7Rts_nn?ЕЍm79r)ER!)t'۝H]kQ5Tj}URYV%bGVc4WOyכ_n^OXC]']TϩbX=؈꡾c CPz)+JOogt 5z.#qٌ}xTߊiNO.5q +*˵Du>g9N1`Cp x )ЊGSU\qD1F92[QP ]e+׃/\'Շu AM8]}y;+R! {V#)"#FJ_GJ{ڥM!'-hB& ΢;,:":ٛN|tL7O)$:[Цә.tt&:1ٛ.DwS_) M'{ "țc Ft}T#{JCWtͲLԗ~z~wv+[w'bٛD 5c=A3zkXZo0Ih!. {XEx[e]wx ڑ2ɝA0doesB#Y>QT"B)("NQH06QJ]NHu1ݖj{:rp).瑳J)vWBZ#{EQx&xRW(3b=Khn`6mC3"ez?ظ?!J3h ,;cdWӘs%P G/#2>AIs^Y։NLfD,,(+߇KGoבAV݌l5JC7d9k(+( K\sPb?>(1m%Zm!aI$ (` ۡaҙdFrJ%m%&vK9jmr觕p#?^GHSvu~JZsǛ6Ib7׺l ^2LJN_޿_=IǶʆMl 4Ƿ}Jxp9>\v i `xp. ߩn?`o)|OKoj~4ǏsI?7?sJx9V ?tƐ\ <Uk$ϐ~/^?^oR; 7dW5J}9縕P}?HG~ޛ7o1dJxnR ?$J_Mp<+2g‡ąy]mn·i>N|.PӋ,Xp+c3_!/Kcbͦ )o(P(|#(sO-=ߏwoXMƙi &ğa7i[ >,V=G.?n*k) mc̞dozhZ%CO]: BkިO~m&hwOɹimpD0Ys?XC?Z$E{쭝Aߢ\O.%^noV-~ A)CPlx&ۏ=¿'P/"~א?= ǘ<t 9~?#(>㏒חo#[Ҩ6VnVm}HHQޱ{)P~ s'}Dnx-׋I'#8X?iո@~56K Sg/3 vɼr~[s7& iω]S? -?Klj# WϺ7 _[O0OlY;㟹`O7m?#ϛ㗮]AE0Wi /)-GdW?T/:Y7x%"1+-?Hnr_8r_,FK>= xsM"R`@YX??M_.O@8ঋzvtzbͿfJ" _F(}{FЎw+/a0~ޑi~8qC&?_aq+߈<~A_0OQw2f{1[[s|k}DРM(|H/`O|f$^9(y> Ʒ:.`6_S"/rC`ӟ@s<3XߍgQς~=ŸklgOYI/?0Ǐ{E/ 9>Fֿp??3P Xm#z?9|C/3;w[E_;KF~@?}h_\{S O+1A0}#1~i#1~r72)>?}ۑOc̶/r${<Ԙ§[c(Jx;s.8H?/K0~[/SD>>h޳x ^4]2%ߤ?(|-؟w`?Ia~ξ>Mg1?3Ͽ[=?˽f ߌE*% ?C/'A[`ܜ7_ypW^W9~bd^?xcgŇ_GᯆR7!m: 31fg?s'I'M6Ǐ؇#<_ av[Eo]dHA}p$:w 9~-w`n X9>4. ?!ȝґd (VoQ ?FύYk/SRc:Ƨ%8(|"qp751~}\_wklbbg?є!Mk'[FS8btvYuz\!]ʓߩss|Dq ^ߝ_|e=z;Y .Gs}q6~lzwJ ƹd= <28o"ȕ&; [heeW/˕Jd/ 2GWs䘻dN&" ''|WAkS/!&f)K1?t[ 11s1>~Ƥ=˗{:*Yx1qb _~N.F@OaA#[ޝJC&F'· ~%+%6=;\~-vFB\ܿ$3c6G{ݔ!{ Fd$$&.NAx~~[x'֑<)Ɵhi=^;n?W㿞=DܤNjzlivODvn_p~~176 ᅝהۂFxS:xgbĿ7h<1o{G_ =^bGrnb4~ (|Lp-!1,1??Sk Icb"8>N>^|1k\M;T1?mq+[W/XwCBbϟ|Lh :1ۉtۍKY̘?ߟ,Mgg3[cPXcCRXH=xG_5goJɏr]3f/ܤ̯7yfoW:R~=rSHLO$,I"^~1nvr2XbQ$?DLۯX~51WFS/ĸ&d25OF߁}]rDIKE?>82epQ➎|Bprk">U̯&)35+D.ccbVuRCx=^Mߊ>?X(4?bFK(xq\?=}T?Ḛ9Co^Okh_~Z?YQ%kF nb/nS;#I rDgP?#:Hpȣw q?|4} B\D?m3+׽ո,$v?~WaB4UԼrC(7ĿZ{g]w?|1otoG?$/[YǣeO773wK= |@'Яd6L93zw?c}O oE$ʟ  s'3wg) _d@.fCnzBBI !`^ 4D Hﴛ_o.{ܬLJ ՟y},bo7'7{?A\TA~Ήw8_ʟecE?` ~ @.cWyx]u8|]UCn D-u}Cˊ> 0^q9",z O{xp͡~ojd%.3NŢd GoCIR>2?c6"Vޭo0okЯY/_U''DG?x~_!o@5Q/XUu4):{ c.YHӺ&{I?"ي>?U*׊p=K!jc گU{TROm(7Bs}za0?!3w4~nG\DuC%]{.WBS+;cB?*/a|Q;}|۠~Z_7F ~ZOḌƿAL[? mߧɅ=$UUws@v{tq* ׊8=q򵢿}7H_Y._]cEߏޝ';X73ѿ-h!Aq0fۥ} };)߭;}}vy; }<>_RG +v]2sS96yҠ~ZQiCwiE_B㯻WM;_Jv#?ݥKiwu&&X~1.| w-_7S^!_ ߠ~b O|\1sW}orϣ1?cWgeJ8._+'w|CrPoqXѯ;inC4.bU+~W b\!TG'^S oG&}6n^G4?: gĺQittE%h6.?x~ӊ>߷c7~@ڊ~w7+8SwTVqW:`׊~M}dyK?y3O'o,}}~\%ɸe+@?E>3w8< ǎg,%+x`\㗞}l3||b@?vO=xwA7D߫/zߑ~"{}_~we?9 VGKͩSlDNཨf/+FP֐oDRU~A[ї):+D~eE?Sy/wvsc @3ˌ^S>IUu!dq_@m0'3wgv7ph|t]l89xu󿦞">>=Uu.\2ZGVm@_QP` Ǡpw#= cO'_k8 M e/{72$Ķwpx|M2񷢿 )Я>秂|o }>{(c m@U7ӊ>nOuws*w >fC8,4z_m2q~_=BY9y?#HiE٩SG?#٣ .u}'@'Vq9 }lhey%6}<>kIxr~bEn7mXb}0E vD/aAҒ;j½Gj_/xoyݟ ?G8D Ê)W/Se+xnŘ&9~'#GK3d_Q6^ѷ=r[Aӊ>_u?d#}t9C? OͿo?x~ ܾ'W'czS2f{]=:#0ADߪ? V; $O;*Q@++~݁:6=gB>g=|KоNɇfX&έE?ӻrG7+wIן0s=,9^hP?ehӽ5~e.OWfmvPxi'r3c?#M?b{_ͻ_h28R/,LxwߏKA~nk[{ubQk/Vqof" s+8|QD~nE_8:k8~K},?ڮ$ߒTq}'anD6O0{7+X]WZӿ84~z#I7?>+XsPs ߁%l__ɟ _.}7zDAxl(tmx[ # ?;lyy"e m<>+¾z|wWY lEOzMﲘ_^pYn7V}q[H/2 %F(Eо&K(ZPx#_/?K _غA1(ƌS\BwfȷCOժ_A6]{A#+X?pWT_O;3m?@,lˊ>`|sj_' s+-/y||g7[碇/O+i:Kب~ /(о|7P7TUwɟy߄^ӓ;H gS8~H:7j퇨|l[?PmLz`G'bݶ7h_=ebxCny?֟-郂{ʷ}Ϗlɠ|o\X0ޏ=JnFVapD}mTr\VBgr:yeE?n?A_$0?N?}\\CЯ^(UPls[NihP ɟq?*?!ty#X_}͆ άz1̶G(4!:1Yq<#*;+Psի<~> }Ҋ>|v`n?AA[> A+{gw̘h__v9x|`Ϗ~=;3Z/H>2o9wST0X>YO|m?[ϼC>3Пg5T+91l{1оnco\U~?zkR3lYeCGG=s 3Yq@n|Zj}1hV MP4ܵG Rq<3wM~l0``ج:|}J~]?<&oDuASpf1|~$f_AxnT\ӊ>>?AzTqd ^ Z_{1%-#=7/18yO|YXMO+xxW?׈o]dDq?UuO˛/·\ߕpT7 'X>_kFпVƏ׬e|OcK|xGh4-w'Gy0\,܎B)3,'Wr9᠂ QVZ*Wсׂc)FЋ50-)QS_PcE{| TL߾vrWЁ WFlr}$*F?^"pq ,iѴ59>:ϬƱ5__*+afYOO_鷸2Wo(I%%KǿF^lbb|1 {bXrQま M@?qIT36E_=]zI莊~~POUrMcxzs(G! <ݬSgaOOEAX~o|N 1ΗT/'>M%rrG÷C_8Z E,kQߵN#"'1V6L/8d;ЗDC?Pl2b۫K_o$OQ՟ ^A,گ S]{E?H^g^ًg1&a9M/okäX}lO?>\Ƙ߄~@-S u?W QǏwE;0;UQ=0迧?(Xs?zEKu韟e~ڣ:YyIW>Z~l׵?~1c0}}gGv3_<.zp^NJ71|!g~YFV1~1EcdUcCYE)|yY+yNoZJ+3"ٌ!3RzttzU-p+SGThrCMسXb4-ɋ#$&v J!MϛR@!y^l) |$ݠG(/dz(?#s 7RA?)Ƭ#}O? Uy?hBIN4(@^I_ocD)m(ᶑZA-WLj@5U0?zLd+e(k!|-}5?5fec(A]H?n|E4[#xW>hAL'͸WXp;co%#k@ѿ.:@0}w1y㏙ؿW8c@??1cΊQ2H޼)>\ ?H"\iN7 !~}Z#S7Eaya,%#Gm!_*#Xʶxѿx߁)oB}+??F,jS?6MFlLdA&ڰ>_I_opP^kVPz.?F{-YF}Yߤ@m@yj<~6>3r… c?/I,fIngH.șWQ9=REQ+3Q&pwSF]s%fP r t:ܑC\皕zS ̯ؓ@Ny_M?qP!A}9j|&*kD9&%*zpKSI1~f>c*G%X!HǷGBbb#|ڟؿbYl Eu OU)9w)mGO7c [X(L?6B.6؂IuO{1o$'Nh8E_lϪGIO~PS1{8 Y8q>* V'Giت{Qi1fYu,{Ώ^ҏ1[*A`hDUFagY[a~?pC"R@1>?FSG(I۪}y0Xa͠_t(V?z=atS}P4iF{n:~$oiWW5Io LF$\+~ z/- Å}٢Wte,4ezV#ԴD_#{Fx6/{W>(yOV0g}gq\iuP (4i, 79bc0:H 5v߬oףd/?*O0O/[I/e8J8̿WH`J%-t@^![,?_*3ngk^Y~۫Sp7nAg T Î89=ӟI("N]bBԈ发ߋ?ֿ+=3[߯>O_=O&K.Jx[c0 :6Awxs]iK ?.R/s[w=M? 687"3k.M+c0AWQQ9H?g#D4KrOVfyG89]NŔ+=N/xqIu|Y.gOYo+Kw>mg奮i.ӧ)R/b)G#T+`zOp(atuṫK}s]9ǔxB2ONBq;3y>}e\)vJpZފ\}oHÕvS_b 6a;#1,cmϘcmUoKS YymX3a.[Qk`!J]~2sPM/vÕ>8&_:X rLȏVȏ?SԬo EQ?v'O?C|{oC(0 f~m?go@\1pxv,·,:0Z5h¾凑?r~m?wX߼^A7?^{wqxaj0].' _\H3'䉋 .:9# ooE9m#?) 2k] TczZ?bqOGKy,s~}=s؊e E'Soq9&;b*_ װ7$$&>0@w߯>?&7 *a;J7!"N\!@;z[|> Ф?#:{ar[2Srdžb|,.]2J}/u{8JCf3T!//ܔw_߯gF[G٥Sc1f i%gF~>|ͻT\Ř!I}ptM714鏒m ;Eqe_PHR/eĘ_o~-4yKzN8cSwTg υc=-ng.  _>GտYr_˪M 98]C?Rc1,AHLP?yZnbgƂ_ [O%1}Ƃb;Uy9&&6#`~]%_ ;@' =aǙo)OJj!p>+?T>yr-&8c_Tca}ҭz}p~#3'F_{ S= @s;/?TS[s n6%?_M+!U߸I,^g{c(W ӦRVGQz%1G(nW1oL_ۊ(;߰<_' Ʃ4?OQbwSCoO?N5%d!>WsW XC{~+M υ+ TNտp?|8V}'ܰn->goJx8}Iz-K?qy9Po[c?ko?i8?a[nd{e"BDҗ濢@~QN!bH_y2+73צ߀5c!O闶(-׎^/1گ~4J!/yW׷rN?9oƨπ9U;jk_POu`}yt~:owIXǯCů~)^?y.N-͟5L>+8G_yE~$, o=A?ŽupP*~tP?cs)C GWvK.Ϳ)?X_:T_V(Ϸ3RMM1yKym͟a>~#53_^?_7 !q;j=Wso+]5S ֓w{t,y>':~(Ѽ88A&U*$W+GBӑysz=>k}w2'bs/0|2?:TcN*~i~!pοS-!CcϏ发r}Pʦ 3ϼz`v8~:JߥW$8 [y)' ֟Hӱݕɗ?FGq~Gth<;xm:#<2}Nxb\BϫazH1,&a<%9i3n\w9/A=k>c6_i yo8F}qe6~!~S/#'"~7 _>BՏC9'W0\_ ~b}- W[k=vz?q> b4qUˁS?4-{R zM+]^/x]<8o*D~Yؑ@ؿ.`({ {ycֻ j5cTmTtIK /_+ ~sȃ5~j/|o{P6͈ߨcrzk2Mm2*;@Dic?ipc+`+=]_Eˉѿ?IƤo/yƢ6 ~EXX?v&~vտ]cLȿO2RϾ<~U_- Ռٻ_}a"ob̦QO[\tc5#oc~McT7|~E?zr{֋[߅<@C=B=몷6U?;{MξLϹP3?miY[=1vLEc>/>cjc7kB0l Ȫ*hAy 8ۄ$@! Q!#7>GEE\"8"?S}?=]2ϯIܪuֽ~E*#iY4>.޵?&o$o9s~'_eT&?`|_m =ɵS-vR!I}4NU鍭nƱo cVLm$+C)&cj}6C? ;9?vAsIg`*=Y\u/ViqqEƉ*1yRT)D`{/9N<`tir!6BIaP{ԕ_P[+q?#?9o0kWS}GeL_ߪ?.NIZ 'ƫDu}c T'_78 eX1󡳕y|:wj?c$˦x"Bz/2Kvs/m$9EM#7+ÂZ7V!Wߴ_vܿMCԿ!a/$8)E륕NwmBlӓ~8dbr㗿{c[o\6ƟUOwρyQۯz4-Ɵ+m?%/[T;/_0/]>t*som/In#4Ox?~QU01~Uj0WͿUT$_"bV\pkvH;_,) KKHE|z:~هc aDwo"dױ>x_'w !֧b3#CmdLJui#C3C|%d<|~Oyd1l{~!g]P8nhi{j/$?Mx:~{/FtΟ? ?_Urj.'B~c5~.Nǩ|ADJ9y~8$H3CnJn|vs))Z&S>&9R;Ya˷Ф'eJeg ᳵ_$IjuFh(4W|_;^߮?-7}@޿ˉqG1NS?}Vrurϳ0Oe/~?@%/K>_pK\^gO1enQ/rK,&Z ;?=)~~b󋕃 /)a˯jP_ab~S%.~" t7,ao]i.3O7ۧD$#D)Ȅ`|YǬsoԑEUy4:T^Gsg$?XZ޿6dY׏ueQ_97xq~wH K8.(3%ݶgK;4/ܿ#sĐj{h~zw$.ho'o\(]Vt⯤}[cӎ.^\ 5Xtyȟds:Dl.f_S{Y7`%ʟP;|`$>q.?A_?gGi垯 oڙMɉ \(gb'XX~'}ڿS|{Af%?5UGq*㷎J4>PT}ll+E-?ZgJؾxw5 T:_Ϗ<|Jﵘ~Ѧ c&< 㷇NtZMC~!D;jO+Wn!qVsTf<n!pLs^2/1VT{W=#$`?l0$9i5$Si ҩMNAElP_;ԎB)~v=]vp7vP$7_ $oPcK".V8cz؉8}3,PLS$N"j}7Eb/1H$*oox|Rc{:MCL0>DIXu9C4VDR=:O{J05 Q !ApE(՘{6:o&6XyA9.`z},^ߟWxϸۄlB' )|9ث 9<p&W*G|cI)? ǼǗ yX^ya&M=&?!o&c?n79O8gݘ_ڹO1j%J~}z]A^ +ľquJZLn8{ 1#BD:KG-O {ĿRȇ`~:7 6!D;[h>,~5FO 9al<9n_;gω^;;}'qIoz 1<N:!GoEqg~Yӣv;Y1K?m߷8?_J$ħoq,w?~a[|59G:ǫӘq/BIhy)̿Њ8.9?~j}v![mO+'i,~ k>Dc/Oramil1̗,1&+?=g{9^tkUL~ܑbgC+g=-1c'mT t2'دs#OY$/Xc_/U|#/_qG;;lgg1^γ_|_ !l:9{㳢dOVnyi`el$_$2zcW Zgsܕ'O'0z P/<>Cd~/+_NDΙ~ IW_Do~}>39G@:>pkfl~c$X _5k-3ʘ,LkOM?()\QbxOr#{xzTt;QF羿]xיħ7hWֹ*|O~ʨrO/"_Bqm8=}?qJolC6bghBD-UŏyfwUx7y=RП2!|7O{QD|"Q\5 㤻~:~'ʿ/ T|g{ͮ}SRnޭh 03*=Cїs/c@ڦI>cq(*[;ۮ?q~Ab! ƃ /W9U99t*W?'7J_kBj(Ϸ>@h51PmןI&=$K}^xNJvy}B/rخw?@?! vgOM:'sȮ?4}-tyvG>I ?5X]\z[G"DM&.'k}a?7>N0~#(O8I&W6_%?.\~[33d?ڿ`ϣq?@~.?gaJ|Q'?v!63_O?o7o ? _`{oAWB68Gp,7.ϩ/^%a߳?I?eOjC?uѿȿ3#g ߿?pz"DH^<8/;ֿAkcǼO7Ww)k;-'oj|az./ho}ߒu@ti_Iy7u>gܽ;_i#z+g<.n4:L)eƿO.o@xS#?gg?s|p߉λZܟyB5i_|@g#ަZjT7MLunDuel"KmޝEy`%W,[[|?41*4[m[>;-=#c>Y%>3EE;;W{>;|#koO:pK}nt_#ގ߰#Hw&_(u5]>'U^Q߼[No!D౸H?x&+ࣩww4u_ۧS%ZvRy3.UR=/8o Ng/V_V`}hA 5?_ 5vKsKRRNZ"DAX#b#XO2ďlP}$=󭊅#g??jֶy"*驩zVlqf;Ot>paRՙy*r}wMmS~oy'məOg烍QV+*WֹlHԍxElF_MߞۃϭX/5+_M|-v>֏c°I(/ThQ }|߿:_w'a?o.ұ~k>پ*ㅯjv_O#Dƿzr#iQN~f 1:?M5Ϭ;qü>T?J?qn/]7=@t~<)/ϻv!"Tg'ȗy\Y,_tM."M7'}f^? Cd?3W#4;7X O_ >dc޿s j| }c|OǪt{.10%1$y3??]v]o = ۅ0l$?As^_@w˗1Cwo%"{rF:9a::_ זkl_x ?DP^ +ȏNw*Dm8?a_ܯϫyO?}fUxǙZ|O_(q߿XSh//8ƻ~ʿC,.c\gz~Tnq2!?n|/L~>UnQꐇ'D{|$wH>IB8$'-׈+`ҭiZ-/͎49gl;&HFG\̟-r_M?>?f??-%ڗR"QPזȇDvy(utNo)Ca^Ͱ' N |CsDoeI7AߧKm^{32$|6?K$*|5a?CzD|ŭ\䳝J//jT5|ش!N=DcddNTx^D綿V?^YQ"z y{F~V s_GFϙCaU OooZ,? χD$[?^K{ȣf ;qP`f<ܟqI֯,.]qNJsFKמsavuDv$zdIG?l69'Cq%3e} ''1G$Uw[FwSNM_5y4kU:Y*1Ʈ_|%Kra/iiB9_JP 2;Uyn~|~Vsaלg)gc^li3D^X8 $_3%gj%CtIwk'(]eO vL}d]]v,Fh_ԁe3oK}So -u |Io)NwKjNi=zhW}!~ TY΍sX:%? >DOW?97~xwuB}w8^JK'گsH>/S( +/2_BwUr[`>E\?ǥ+G%2_Eߓ$<ܿ`/C0V* ?6~:д Q?}xsF]I"~S(,e*ԛU[>Z{! [~ϒϞ뉅yu>uL^_Oa /Mr7CZBF%l\Rm_ S]a|khFi9WV !O~7ZMe>k?zy~o;~H~!wEԃh}_;Ba,P[ҹ~2?bH-Z?I{'Q :'_/i6l?fV!»mO?%W?i5foͯS_e6WcIDyǥ~߯Y^s7~⳷~|m.sWm3{7_l@w _W9'xcK>~=ק}>rx͐@:)>,ն>ؘn7%;x62!"U#GA©IϥJT é __׵|VRf x5?ATO[1NWut?wL}f~|]_z%30މ2c~/ID]ǜC1nz)O,.򩿛D:L_i-k[_~/S}jz |'wYo|]'sTl~c_9G| _JrO2Qߡ 'x=6s#Sw-?˯M[|Yro*o0w gxrP~F+"㋩T'MS?g+@G_,Q7s)ISܵj?ϯzwo[%DH}͝f?Q~fs.R9/R>sIGרtkUgD?ow9淠q˩g t[ߣ8x,]\_?6_8]^?ɮ?RRW s)N/a~oO?.Q:9Jy-QOx8u Y3P& #G.nms[ #߬gZ_Rg@>[Hk[HX[HԑyĒ^B)PE _2}^׷۩CS׷LsCΏ??,αް޳US;<{̿!|wD74g"pYirU*-Qv: y*X;{Ct`|ѹhxş҄'~ |H!)t y|/} 9g/s*wa;CwASqqͽM [^mob?q-°Z8w>?gC;ǪKq/~8}֗/2K;ϖ327׷\%|8tU ]TyKT%9k–$rHrR%3ǂv` [%K 5t~]@I1ah\;g/f}n?oVv;9I]gg7)W a譓k>^Pgy_lx:ަ_cޱM=n_#mMr/vn368oXv)v^>g_[Xvc}%>7"m6м?ºc_>"9t9hAv(`y0βn ϞJ!|6@|Gj$>nd>?%ϮL8-=5gB:O-k~"O7}7YCGyw/Q㡩%sl,m%/þx\! \3t}JGub h?B]WNX%(#'.Hg"=6fi Uیz>]c=P7&t1niYl>:ط>?J}Hvts}rtFGX蘯@~|ݎ'c&R\?Drz@BO?ޮyp!ͬ,pgA|?$9@+gq>{D7DFO!:iIeGGK'@S[OY,X Wй!7=2MO}?lG&>wG4Q#GtNP}Nϸ\@t#%D]KmiG?@w^?Bm灣kO*$?V^N$OPȿy+ֹH~~D%z`?IeY[<N}&:ode:^0~U?lXұ BbSVBi?o:~afXwnZ>S%#_c%*]}Jϳ?<ts1fd[EFͼ*"s뷓 /GrDJG=W\Q-?SDߺ[N7^! Dou9ߝXQ}7/{s%Nw=t7pٟN_S==_m6tlp /]m.5sBE|͹Iͮ!~-AY[⽻yJ~BNFGӂt6󮙦|Oܫ>{yBݝ7C `/ 9J}T9ڙ,Gt_u\+y|[F8#ϼ0>Fc9a5GUueMA~_ZZQ02H/)w^0`u]Z1yrQe>aj,rz/(T;|zUu~)Sl uqѬ8U%JP gVWYT59BUA̢E¢R_0=F#H"=_{;W E.0.!TX",Ɨ~N?R]ׇh)X;.`W|H]Z쮉I#^>vKF!BD8?۾;a=/څ/}D_G~ Y/?-6roBcm>x/ 3L"C~J~o|@}zqA.>u|׃?pX$پoYevk"?l?yFG<5YLR}>&MJG?JKEs?!NNOM`ä9~_sֲo:ڇ3͚}^PV3*tݐ"sId;OhlTb>['>ῗA?12lQ9B ]bEy!.qo]#eƾc%߼C\!BąwUL\yϻ*D~P!| \!e.ѱ}+^盇w:Ҽ,6>;9MN<`/_wY4#<77>Ѿ'>to<ݐ/Gc=t# p=Ϊc@ݙ塩9K>IT]÷_&{r"l49HeX|#@ع_6|<{%*v>_Ty7Bw3qڿ aύIW_OJnT&'_E i# pery' L:^ίi{7B?\sӬs',OȓS g! k]B,懯KD m,孅R ,#(%ё%1%efIOeIG/Yk]$um%}y%K%}C$P]C oV/թ'UwQmͿ*<I?.Cޤэ8jUot~ttgU:޳~Tx. t,k3WxܣaT\pM]7>i1, .wO bHV|A*]J\֥Ufs)qc]J\WnS\}vZΖsJf?#k}O#1!<YyP{4!?߅~J'qzfyglbzb)X_zJcDW#K/>OsH0'H1@ P_Ǡ{dW3JYV$sBAqC7=QS?G~ףv=]mS|aub9oYgCiO=j8MW+eC4t?~rJG>6ҡV_/tZ+/?l?~}0+ ?q{ǩ| Q?G!DH+>7ҧҏSf %'1O7?ki#?zh? GE?]ѡg&ΘoLUv3CPÑGhS}LJY>I͈%<.$>兏 ΔK#bw'7 Nx\JFtW+bߎWx]߹)7׳ϡ4>'nPGJ|wbnt6KU:w6tf'EWVtG T:ad 9:W蛻jU:{JGޖWtKtm3,i}ii\e Aӊܑ.q #t o?˟UY}KIX>DPCU~φ|_5uDPͿ6]wK~3]b 'Œ*]oxN0^S \"Z%ѭ+]"\%oe^˲$ƌ, ^mǴIבc[Ht%o`ND@hľ-'p##Β Kb,]7\%F[$Z}9rCEYdIGׁ{$JeI[%#M,`껴 nȒhG[ɒggI$*lOk Ϳׇ6_  !>1Z w"7/X~4 6}[#|[}xSwQߟDI ݏ.W%Z~ __' l>#/SLU*}#ϨR(VDx?-vtfˏ|D7P5PanE)g]bS蔖Nbt&D/dt(g^=~[/TV;ޤ1?l]Ϟat3?+W_7_ZQ0]).)+:v=Ro֋'+*JU5Յ鲸(rBeIuuhS**9 [TwhFnu~e$ ?X.)^e"vCYg WY_XR>ժtV3[]9X/*WvjJMiȢ嗔:[)[nj ?Y\,)Z5ʡk+,y[4êvY~ Ӌ*GO.*g=f'LqΟb쥚ϮݿԛCl}^%F.0 X (3^E1:7~F%X/T. k.a{9zq5˓=RJ?JǸet3qJ*q&cV[J[=m|JzsIGW|;W>v{ClcpKg܁u峎Am}m[tT[fP{̒h#|ѣ#ąC떗G@j%lg8$D<:|Z`~hÅ"~knx__u}Mh|I&khÎj~I?CM~4 k{in$ߦI;M~&m4 GGiHwGiޮI/ܳ]w&&vMb$8^W_a|e'~5 ._=UW$巙G\>Tӓꖀ|zSO[LuK@>SφTSo|`s3-% 43斀|֧% in g4-̔|<tӓ|zO'SOwK@>n g}[ِ|F K>=n .$\j~xp d% L3門|F2O% 斀|[z-lO햀|n g햀|,SrK@>,ӗ喀|P[rK@>n ȧ[hᖀ|Z% n g[)Z% zKe_m門|Z%[h@+>sE3 ᣸D)gHXsb37Cl) Nʔ|͔gvshӳ?C<,S!S)ϔO!葙|ϐ8:S5Cn)lpgJXSϔ|f) !aߏɔS3)ߛ! !Ȑ|dH$ ȧ͔HV>ː@$E{pj門|[%,l門|CO8-▀|qK@>qK@>% F[vK@>E+So喀|O_+3- rK@>ín ȧ[h햀|Z% n g[)ڸ% zh㖰qK@>m-j@٧$?G)6kO}&46kOfMجI@>C5 gx&͔G_eJXyV328S’M’M’M’M’M’M’M’75 K>$,|SMM’75 K>$,ܢIXEs&aM’-M>h( @.wj Ins J=߁D,s(̪P,Ϫtq Fe vzlSX?[vT:3T:… ӍAMVwaet/&l;iTFGWQwg[j7zGBOK1D\O0o_^sZ?IX맷4 k&a$ۚ~z[OokmMZ?IX맷5 k&a$;~zWOj]MšIXw5 k&a${~zOOi=MZ?IX4 kUO[5 kUO[5 __O_L oO}@LKj(\~'p 'ùǚWD4 ȯ$ FD"7$ & G4 o'& |IXO4 ȯ&}I@~jЧ7&aO}I@~g& }I@~ßigW$ Mk$ 7CI$ D"EI$(Fvh(\~7|$ы˗wpBz$ /4 ȯ M²|I@~$ _hR$ _j읚׿Swja&$ _i_We_J_iWeإI@~=4 ȯw&$ ]eإI@~vi.ME~$P>}?9o;q_MF$ o4 oMM\~ŷWV$,ַ7&5vknMޭI@~#5 ȯNi_;MNI@~ETQMkD5 ȯ/I@~QMjpTFW|I@~55$Pj s߇_7&A6I@~?h=׳GzhMޣIX5 ȯGM&I@~$ 4 ȯ'MI$ 4 ȯg&$ 7W$ {5 ot&Yz~$,Ϛ$P?-_c7O4 ~O5 ~_5 ~_5 ~_5 >v@4 >&a~$,/eEch}M²IX_5 >&a~$,دeUcj}7M²IX4 >&a~$W7&г竓4" k7MCz$?4 oM[&531tᖀ[ _-- z[rK@~.HqK@~)n o}[ې▀FSfn ȯ[m斀%fn o}364sK-7nr~u߿'D`δm .{ħkad}{uNdP:oO~-{d}{>\O+c {+˞Cf'jw}/q8=|a-%>/,>mH痦P|ϥB>v|#|+~{8A]yd?-Q؏hCq6ȮN+c?{#l?b;"[!7>`q#Ζg;;)/EgjnIy$Wϣ8d_QdyԱ!yLdr l"[ ,aʮ?Q2Ȟjz;WE]n g},^{ 1}-QȾ7KN/VxkV C[^X|[%k?⵳sK\G y-q"96%qOp[bH~}["y 9̼?z[B4+AN)NAz<6" =zEJʋYk˫Wӏ,ZFTU'T3]3X +$EKkeeVTT˃9aX X@9E qX}[9-(ԂE+* -|IyIuI~Ȣ|EVWUTUSSTSt>Q9YEE %EHDi f;zVV*չ+,bbG1Zօ-\֟_SU4&WTkYbW}DM]Oי<8z?M_~~wWr&{_/Ϸb׿;̾fm`,V[&ݿgyV:_Bfң_ H"9ʞc""|>`+OT>ZZ?}TvNX,Pmn@#ϯ>o,P'd _0oα=: 䅺HPX|תɯRÿѤj#\WR^ZIWρ1Vǹ7\}oVs/'[l FyسK ϮD]|b|N9Fi4}֟ƳS,o;>o?C`y_a*f@fB_ao{=ǪtCǫt^0K#bK"b= XJoe|byX{NH}QWKXu|JGFq W*$osOe~2#9%y}<DQx?|ᯩn $=D;L{ %HAha[UɍD!(OcZjUn ?=J)K M>D? $_џ٠C=O¹@t.Y|>`W?ܾEF/Wtr)}Z'*뻩W|>~#wRl97dƲ>1~{L:U:)8]P}M}<߸^>Donyty9aJmVķ_I_HQA}}DM-&2;S>,=#v~S^A8i|[Qݠ1tQ~=ѭxqkobqk=ޟ/XgU:迱~*}ײ~ |{q7'YŬzkc}k/'3Q^4Q1:vrىA^GI80}m?sBV}2 /Qͬ}6O< yG{cٹXJPb~c~Cy^aJEgx2Uث3{[1ћRXOecE*0WNTD쬰 S DNV}'t5O'Xb\A-l=ll: MԎTu}P΍^X'J=Ѕѱ^Zc[cὼѡΜҡA/r*;qۍ藍Wh״>/WKځOm>qJ/$cA>tѻU4W3}QJN<@_٪C?>EQ;= X:f/k=D_Lsc/Z D'B\[3Ƶjknk^v&Zۗ>΍_!~_TЩ/e_rA~%<,ftW3:t/C/=K-z)ا @N`&zx c޷)1:GkY*pۚ9V/S2:y:Fzjc=ѡWtuftѡ0:F~~ѡsT:^Fޫeρޛ{W2:Ռdt轥h''=pKt? (8:ړY?CD>o'/`'y? g}=+U~u1 ә20aYWo/ed[Y^$oaSS~*嬽6Pw{<})_(:߿y::רwvu~iӯkvOg&O՟5'WGk23B?dS9a)/'JGk΅MW~B}>o+jFcσ!U{IG^9[w >Y]w}>N]/U]gW]*뮕T:];^kzٛ눞;H+fXwuc3':z?~b1 *ޠAZc v;?;1Bt_v O 1oO^ 3} !>LFF*q n{<N>eiG͝tZW\V ݫ]ޭK}Sç ^5tT٨QգjF.]>pL o[-Vxr rV[2tRU'M/J˪ʫ9>Z׽zwMM^6zKzz<==zz sbOϠzӧg=٧oOޞ=z{ 3}ӷO8ӆ 7|h#V7"'oĈg>"7y#sF/GN?r;+7oT~蜼ѹg?{teŘ1ycnj^>ě=+ϛ[]8.o C&Ȼd-6*fmaIeQyᔲT^R^]_X//)<_0_]Y])?hOU WJK+O+zE U*^6?ʧ(үOC:<7o舜#r󆞕7ܼrW 78,'xD >c5Ϭ)/URU3$btEaɘI9yc&);47/8dˆ<-lz}'WM.)/\VgrYIU}  $GvVUY`I{n3wggg;`h6*;1Y'2pl[:Rd&y2IԉEZT), ɦl#p`̬]&|2m]=wB8GgT OEzqt8f8f ;(evR/\$deee=:X#w(3^#rTx"Y#xQF|IDH[# =^#IGWvF?@Mt6ƫܵ;`Qz1l7AOaM:M4'{QD;c'oN,O.qz?pK#w 'NF>=JwX4='?Sh(lD}'Ř}P$$n3>wYNit "0ysMy' s1>.qp@%Th& eG/71pc H=YL578hnۮ\R{H^$J55Mʼnpo8cddP~y?A kE tvJ5"Fc {׀Ep> $wL_#mWIg0hop]&є N&`1 `t[^5aQpE}˦,~pAv2A EwqkÂh̩ $Ј&|'ɄSA?IO)&G*N\0m.wS5'|oB}Ĩwl&iы:>LosL[c񄻇7?>+x0č u4WX=Px,j69j6յmukW^h\^CuUϮz\^G>#ŪH̄g罎 5UFxIkM xS{7iW<ߏhDlbiPmv7FuTrƓ&BM,cݘ.e)7A;:H!gM0nј%'(8/|Й_~؉G/_qqlȵ^yVhxn0b.MwRA=,8:>Av$ŝ?KE/yE1ĎO)9QO ,.@}%.h*脻 vi2ٛLpVixDpcgT!* p(ICKpkѣ`21޿=DTS3A9xJwBSr;@CZX?oH k.\*> C&\:dD<1"2~ʼt (@PvHTM0'1c'JNP  p_ dJS/`%d pMq:GPA:zfBdw&9 k<2)@daE@rRL0)j28KyNRHH8Vd)=~RPVt1 |(Od=hvz~ -% b>`G OrJؒA|ѝ>{ޥۜIݥ1h'sM~BORRn*yR.Hos~ x7JrHFWS% ; 3|2/z} [$ `=P/BRDZ=~3M0{NCs #,KMp @L(VH])!pͶquptvΙw.t!~q)P?@@*n"GEhB$\84H`đ<oRz$!/i CTyd%`겨$A@|Ph]| ; "T0 @bo=q<&x#PJ 9l9 N7hA OhpK?ֽ{Gk@R]y89(v :+bH,9մpwWÆGCH)/;T4ߛ,A[in- ~p"L>1#ýP):ڣr0 g<_]O#dtL ІǎhVK{VTR\wȗO7n ?1xdc.X=NG0@y Q9mln޾$wl[ak0v{N2J2$M`XԻUGns q}6Oh݃3)VQFn$ 7\ 4sA5aINWI: bwr?H["eݷx>eGqe h $ӺQsju]_Kd g #i#R4M9!BO)>EcлǍ<c3Oa r{")g"?`g˂7d`fgA 2(Gs:eG#byr4vsBA' @OAHCɲHdb}.WY'4qDB2G+q,9:^o, QXZ7ҠRc4f [TT< aFjSFI`.9G1 Cc:6apݥab;w;2qnd9On$IďӄPgn(/r(i|Rξ+#J<?'@C'.5WvX# Mx )u&48zxD@h3C}3L}~|1S yJ!քFXHb-0%(ٸ\ܧ`sOYƃ MŢ"-č1,;AgQn \cPPIňwH ]衖ۿ6E $q{k#IKGKQx|BM̘8TG0eS.QHa3BΦ2FJ`khm!1u#N 3,F^I\(‡EYPd21YnLdV LQŢ},U4|:+ I֌pYBq#sCE>% I2_B GHdޥ dQ4z;b4iq9tGi"wDV5lN9y)>%xdk2۱HHgX) {FQ;{Xpno,sCFT>u.8U{\%Ž Jnӄ\Yn"/mqʣ@LPͣ^iW0P(,C "|df'шSz1K'϶{@)FJcff*G2ic6=/y"sXLiPU*#m2mÄtĤt2+ Z1Z|"jY)9f bn1zB2?{TSh ԧ\mg<"tIϹԞ dBw-=#"8C*i( 腒#\(iژHn`{"V҉F2)Q e)3'@1hkiiӎ2H*ȲpS)RR}20*/IicVmn ڍ^a%3?~c#cn66$RK. i¶&1; N 4w"3=>c%ו ;c§›WP|I~0.F,A䑻w73JaߥXt!4 NhD݄EG[ǎP,ϟ%0<Y}*N.9\b˷`̟z_<L: jp}݂f)mҍ h VhT|#}vF>eL29QGLN>d$o[>dO=~IprI\/qp$s4䯡+L}L=o4b!d F.H}VIz epL1>fAE1+#o7Mعn- ``o)Fj'R5#3T-ezr(G dK}qo.14G+4O6Ь P~\fQ{A>8p/}EB8.YiA Z 0@{jn.!1Z+l6ń:tJC)zIA̧=qOc" =1?e`4JƌlԋP6z+#i5=[-0 M7e`(=i5t`mN InKnq-x.22E$n,RUƌ R$bqloZZtF9S`7~56{,MmKejԠE'U E3Et.*z1yL2ҜFD2evSR݃HS}H}S6X RO 9-pp&Nٓ* $4gT( /{G 27ѭJ?VIѹqb^=a++3渰)K.n?h[ d5שecj D)_l jE5\1Jn[395$>c5U&۳o_Aԭ \|RX1M)#bj &0|owPU:eG mr0lAhr0'4p04NwuA!Sag7~kaېYi+3 VO=y^AJބ9]}OdT{`~μ}zJ6kp+j=Yvo? >"21h+0o͔e`xwt JpT}n5{,N#S4^3k#ͅ3e̤$'p.ΐ[/i|B0L5Jnt;Nm Nl~Wk`\qkB ׅRS !?X!O e'<,';gn*;d'qcbj"nүu}lxI"_0fƖQvDƒU Ҋ]C6 u00C產6SRPej_Wr|a sو3k9rb6`gShg/ʾt`G3җO yN$Raj^q.–C7\)%KϓL`,y#LAK#+ ͎p2sGyIF\Std?v޿ q“{0ל\dfvB_̥ɲ7m 004aDek'}l)g 2x@!|49+c@2L@ʘ}IisTDR^(/V;s 6W\6:[ KyXvzT&n0n~8;LB*E !.mqoMӘ}EɌlTHA6$0*5lCsn)=7\>43 8Z<[tsP $|n:",Ѷªvۨg254yd9e SȣԞ*W+oVvڍNh;Π`Xnxe (yE|t1 |^h!,;'FQB~)'g42\˲G)Br XaEx(]`F߉*I8LV K?W=OVJ¦a4K#9ء831A,b|%',A]u1E$ 2x4}l'O{F| 2IFz68!\উ.nF+ƍ TLMi5nFo;VgUnowFh~zL5&}ۊn9O#v4+Y%L%xiT3Iϒ`JOyAa,q^oԁ0#`f&932pQlA*NOiAT0sY.(H"s(cs9~rf⢫:o%<  am,HVMoN]%'y U$RDHN%ĀQ4VCLV!y%#y!(HmԑЭDFltKbpNӱF͎; H*j?J ՐɋO%C7x"(pJ Hҫ&$T6/r\,1S!Z] L BCeq6Pj}@fkw{hNF7PfiFm[`۝:3C|  !uzs)Nt q.Űb8~Tţn(K  q={YcZ^{*.EqYs*Sykzsh iLlu\T<*L)OXIDEK„'7* UscR ğ |7N [hZ=0rnNc'8{~BdMd*ڭ̥A9g=-SO]`5“B<9BĘqш<|uY{S6RRy; r =6yLwo1.ׁ.'ƟQ㕎 ]@Mg]W380ֿ(z#r8Fy)0 OYF%)T+){db^. R韛I dzj21K0Z^`*MREq<@5Fn:ENl Æ:B6nAh5fw4:ݎ:[6ߏ%h^ 5<-@ΦNl܉PL@ėf+d1$< ' FdFJ:2zL//rc] de7cy:b+*|0I@nӄD6:P[~AvZ~w{am6F7Z~Co8c,lExUyA Cs7$t)I9j{~A 7wfu'!#,A&&<6K<qX1!ek_H7!!ؓDI{"A_K[1Ƿi6NglF&^@La4zn]sٝ̍Y#7q4*ۥ @2]*16E@MSͩ>\ݓb Mt诓e,0Cɖ|0#0^IJ+RD m0*AuFTS >r2&VS$P*=IP`kp'ۿlÕ\iɬ^6AIDCGzPeޞt+y¡75 ٹjy7Xj~ Ĕ{)OFARqF&>AChB B{̈2;4+-:r%\!jXf'(: @CꄚH[`MAsĝ0le-cX_ Z_V n$ u\{4D:%o<O 7(LSp;B݂0ko~\34R-L:9ay67rc-+T'^?a1~9Y@բ&trTZ"*ϓ JvfY|H @S+=f2?Ǥ#=] |_ I[]yvʓ(KR q+W񞮩sVAdWmQ4SiX._)yEWESzvrE6s^jo0R2= e+٩4xS*V͔([A  d'i+P[2#Xr]ϙ;;^̘/7x<1җ5`'k&q￙ yosr~``4+Lvz ˧/Zl5~3%cfHؙzejHKWfe{B=f39(wmWLc) a 2@OwFGv~Cf6('׌%WO Ƀ:m'^^KCD =$ļFlFmƠ1l6fnvfoVlZVmZ֠5l7vnwvocViuڝNuAgmtVt^tFk=< z~~0N74AktAo ac⯘ް? _ ¯>WےuuuQ]KzE]Qת.kY]^Gex+_+gu/ؔ~E>ޑ}w|E|R^Ou=ׯkc6D^+aj+6hS}yʞ^ۖ?-{۲l~a[^t7UjeծzMy Uw_r=#yrJyZ~A]y'7dX_S|B5~E]K<˫r|_[QpTԕ뺆WTTEU.k䕜Ix5U;T?'˿SUׯgbI #J|³¯?U/ԸW>7^PD*^Sgk}H9^_a~QpUu=5*{$@^mWي/-̽m׍[Go+Fm7KF}۸/u,c نu:j,u;Ӛ3s͸1>o:ԽR^6\1,81wG_1}6Kv^P5`b0qoFwQdyQ^6v-kajɀthфUh6\̹:0Wyz<\6+5K:/XլqJ%c9 ƶE'.W| WJyz1//Y~*c ,;1cL|8-}P+r fn֮caa,b|k-eP22L"yˁf1Q;l-98m11/clZ>B^5'8%ul9[~|^ҋCۖzv_VcsXKOK%by_Xfozy.sZw-ײ18qOQ^%uuZ9OďܪpF~k?/< i13=ҵ:gčr>R>~[9-yN9ZsKayݶֳ\r6VB5S)W{'DaTZ(8L_/YʶSf;J6Z֟,֜j9u+jev*e4s8;Tgrl;+]k(XajF簲KRr/_#kŬdgp.YV#OUϥs̹xe}YV)CW؀s%ᒵn?uǹ|;W7SGa+ץls%\/\:.3X(9Ye?{U_T5-ZcY}sēbg%[ҝēNy)nu8 sܰUj5}c-9cd _4pFNF׶U}[9.65Z>sZ9psj]ߑ*y_圮J9 jHlj\l9ٗ1NU_|A_/\6K Zn<*f=_/tr^]0)J}uJZہ\N.GLڷJێѯYR||<ւQr$cˠq;+kޢ ['I rKjU9NǒVQsp }XˏJv}*ZV~_V,+9ڞqmߗ?]?_dߖh4R|r-;"ʥsi]=S)%˄F}#LEdS9xuk0%ǞYϚٟI6~`c]*lyx`h"? c]7J Xµ;o'77gO>es<* ^1k9&|\|qv>hR_Vwɠ_p ^ A*9=]KWVr,b»$}@m 9+^>Ia~SXǑuj0Y~VV 6Sl2 ++|a~;|*Es|Vfp=orRe,9Ex{ݶZ_о]*< ߫J.ZZbgծ..+9Sx,l}fUx4=Um;ï e+i[3)G)ǮVإd|ӏؚfؾT ]L|.ێ\2轤L|Tk*/N4z6m@Y÷{:YWA>U>r1\^y (S3gGcz^HhOZj֝3K|NVWgsЍ<{6{., _Mz8FbU>Qf^-⋶ўc@a1kmU,{O,\e_V3߯;sR-}/gT)9S1jo{dηઉ__CĀ_&$|˷YN# f{S*;㷎eeF"~k"!甏Pk^}`]ZQޕkEȞq=kw~M$t*so1/TXZ/2r)?ݞ_֖SsireC{P_Gm/]T5`_.Wz%ZY+`6aHc....,h8KS?W4Ų~Qv~ǞSjG^f;+g&Njfex4n;C'\+¹|f07 "kwl-3z+Uc>WVʅzNiR~  2}.\ysȲrɿJ&_˹&㛋9tJ/|J#Ɇs^ f3]ܩ:-$ Jb GñxeTK[laWeyT{GULiֱ tmcnz}K{h\Vո=&K0e{zͮY yyoG~ydmT˷_ڨ`a^TAre Wo!!PJpknYe^y+v9%ʾzե%x̬}žbȊNFS-*t(+RިG˵ImT[;JN+cYce'+>jego޵o_z5죶|#7/} ߂^)-sեw?a9/+ i}}s,Ro~oi^,y~.uMk+u %=Qr~mɄsm3%Ƨ=dP9|cI }0ٷv3K[zbZlT :c=zes#ᐗ%?~3^ZW>p-c1f'Z6Vu㆜YNUWy*?5Ҡ\Jsmׯ]Mאq2_ՅW}t~U/WJ%G}m=m?g8}+vɶu{izMkU# κc[E  ֋u ?S!˲>gY;ԯtُXVO,ӖeOYU۲~Q,e}ٷPcYo׭Fؖeˎeg_[?- zmY/bݺc#Yv߇~f|۲>sŲ`[>SWl/M۲>_eYg0O-~niOխ7eY?ol:hC /`=eYẵgeTeWedY?_+%z/02)A,e[_^*[Aqٲ,mYlխ~dY_)gJǿRo[K>u۲޸]/~,ZUٗ+0"X>Cڢ72__-l PvxuXeYuQz~) 臿cyq1.}x1/*/²&̅U=n@/u?,B-OX۶eXQ]zeղeY%Q9e%Ԭ0ʾYwbYgۚUُ[ZGyWk[S,u_-MO}WC>e;O~Ѷ^Re ~}]t( tTgeHky{e˚xU돌Ue<B۟/֖*QeG\[(rŲ~旫W Ȁ$4~bY?u(9~~N/)9eU_ZjzdYxޟSQQ9~wN+s^-Yֳ[ Ls9eӜ2ROuݗ;0$ADAErFňpEi1"byuQYEE@E,ÚNթ3wgsYpԩSf&X[ޟ.r<[fTP@O<o܏XGZ3rł} f 2&\I]Kõi4^]\4;0~^bo=M2BOC#w`cN./{ $gǭw|IX+ҕ ٬I;(<ˬ =/*Nfր8#TxƵ~E\Vy>Hy33_ٚQq=%FcQ96S&ύ])&gXv.0hI5eAj/c7P%{u >S׿b:)vZwNMWsXk`~_UX .SbsDrJOuҬ)k\$ vaG%l>~uw7$IòCk_^e'&vyb(4#'y/~ ~:=iP7"Abw?6f)UÓ4hIIFxͰHʂx% @I(&ө鲢& v݅iV u6Mr]e@z oڑ xC:/LO5HcQX?^b{l9c-{YO63S=1z!)˝ ږ}(ʤWy侫!7l]Ab0%/Wt{@l4*RK 2Z/+nsmN "Tv`qmpveyF69 4>-~ق7KOXn`WrTŠڬPy7,OgV= U X_[I3%hNF7?7J̖/~t}q`?i.b7k=|L~ʼn >d6;Jb4G;J?{rTӯNw螋Ҍһqqצ=Uivn>*[KGi !y=Kl&\o-5kCJ=Y|'TZj+嵿Rţ ҉P'Wr4׾ lTql+HB' Mq>}{FEeT-Lyn&ts"_zfKw,W^zaaa[/䋵sCyYccmɆ%E엒I(lX\n.lw3~\q`]&N6z\EEY)p&I K\ ކ85IɆUQwnqQ **>S۔l25fK%Y?oP/y^Eyl66,m*gSuo $E]mvR"+d|CߺM>/}rRNkn}]1;Ly..[WxaQvPy,h3q@~e݌/圢l/ډ+WToئ ~M*Zw( [eqeEnT˖8ׯBWGf,tp ж)ӎ 6mѢe[4TnP[X?椉9kQM!b¤jE~4o>eIJկ߬ج>0)kY*WS)viˡgݺuTTd2T )sD 픅E僲^$t+C2Uj]Fp>|Q>ezkĻ|ڨ QwL?`Ïձ^:WaS\ Z])o)/*ۍJCq6w앮`\T맞sА٨,p[hZ >͆L?Eu6uC#4@!ֿR 5_$ڦT-i3u\[Ew(膣_KZ傢2_ s3x9?rJ =q^($ƿJ.5xTUZ44 '1^دSnzٳWx#Jܰ(+۴.QhCn&guh];~ yA'˅ѰA"=ra>|K۱[](4IZcp , 6 AVWG|Ŷyn#fa @9ϫwFh^~1S%\~WY>nr&u]al¼B]w^\QÉ=e(u7SalmՓ эw=?[ a@/ز|RڷG>$rՙMaAKźuw Ď`v{}KS&00V?>q@*at?ykxø{hn{΋}c?/b/r9K墀*Zu5"p}.yz=9Ky Ii;qwު"O_-z2h6-L,{nyz` t<;5\.lgCll_i`܅i߾9Ƥo6]|Pg낍vKo/.맴FSKTO7 Q&Oc)FZ6D90e5:{KJfa}}a/`gd9swTܕ\,{A$}\:Gu+lHB"{x.PK^}= Pľ*_#a'\pB:\E ~޷Byވev7_e+Xp`:c9؊?'>Xl?'~miH`Ĭ 6Sr̬oԦُ<]`||.eT?ob}xvsq_Y>c9UK\B+2R\xt(Wgq֕LZIϸ|rCe76)S~O3KjG;\]#[Bl6+4ŋY0ֳ-za*a_+`a<$/|xmUh6pV?AUbVMW}i>cF% >I"Wv]ڏڲ xbϱ+ٞcf'p{@˞R3sn ⱛK uW_ XZ7{,4=iZK.lKmB}X@O-~oT~~:m9{J.$w_o0fv~t!ZlVՏuy~YZ(2 / Y?"q]G^{ \(nO}aeA[õFrqS?^&fOa*`xwMi51D >c8YPƫ%ࣵXhȲgo >ć֭'xf^T*w@%q6KwOzUXXB4O FŸo`^u D_JɫptV3GTǩ :q: B*R;\oh֩oqze< 0}}>}:Ntޚ&}ďza0_WdQ2L.=pݭ1.?U\M?K(ez{^WS'4C/-uB03u"õj˵7BkjRU(uMŚ|"zM)gb^7m !:AV 4Uy' |LJ\RB[6|^>p,^5Tff5|^,kuu:UJ}*u6\y./ĵvVVԯeVxs/<NS, gecߝH*?, à<+ sRVN͆Y5k98A*'n >2 x)҅qteWi%jPrDI1+B1Z3.JPxg}dc4{jY 5_\ An\c>G%Lyu- y3NמK_{ l;9/{,;M_;לTe p`?9FNI#y]I?&Į k?z]7O%]\]?&~F_Z6%;wt%Kv\=#=*axZ k<'ʪ {sE^š$:@l&{ ˔أH(?$Kkxp&Dl5_B` xvfA͸ / ^}INr8dg~kx?+k׃~=0&<]q (ɭpa=.g* łx]x.uɂM:CWznz+LJotcb2} Pf}Dl?ZӕY3$Bn ̵v]=J~`Gcųk AgF^Wsfb0l'[Y( tޤPہX6 ݍ,h"8A~g_ D'X+HG:1{; vYmK2|>8N8-Rռwg꩝*Tz~8 Ul=G =Ri\6bv5NčcQ1%G&ӀXY/xq7xaz=vg엣s mܴ17Mkhl| ,`Ee܎9s`s|NtK{~f f׈ .9Iѐ 4:W1gwϛx 0:<1vӫ]c߿Nn@h;Q2eyz%y^clp`w0"/[9N܎,vbJRT׻]y :#HGuG^lJڧHj;dCT"ג%-k\kIr&Lۗv׫jN?Ox`~[xG-xE1;G"/M`ۍ&FHGJCDezv7(ͦsuɫlu2ϼ[־5oks|/uRkOp9^6H}^?;6cƼXZVq"鵁`ݿ}q6>}O o-`?M}Ƅ4E9>^vlcue4Fv~B[1$T [F!2{ Ywόav{?ϵ8)an´mGA&aʱg\i>_b |<#Gszv/8R.SyWmyx-!4Iߒ_Fڊ1+ %vo*T}%d:J.Cd;%pafi)m%(QrQ m !B9aZPq˼Ѝ+&N;c8xlkZIkEZ$EښgvNS- i0D<]yj;ϩp*9$J֧ooꬊU*RE(J<.LW4 NUƒƩqTŵEeuPrkCQ)tZB_A=7FKkYR`iXw82Baۢ6vYHHU7Klb߰A,`}Y(Npԧa 񉓰= e~i]DZ+}r^$ fۨ_rS=>dEs65Qÿ=Wʽ)SF<(.`C.bGf!ͼnQ7hܥ9V ^wJ;ma=t ?>òYn\QĦ vU0FV_3k~d+k^P^9\onXWf ֓ٛ ffmOs|>`[mL˿JV3|mS$ˏ;wXI:jq4o -=}H,cy>3JGlx'7|^ݯ,Nso&߀<~ƸtQj{$;S+\syؖg ?:g?,)f+>ĽGV66$kBq|,*:PP8CA+/(|7/(BWX+F+[[fq,{gkrT¾y$>,^nǹ-p,8=1¹~<1c5g#V"Ks[oa<#Fs:uGPla\`HGQ/tbWs:z9hvtur8=>{Ѳu|7a3~f9TDm 6OX8rc[4Fl 5LX8kcx],\<5]&ޫOn1-K>cEeb!71`Q.:"U{Kxn7r]t`v]Ƴ%ޒg_axCw@4%>+nWtsPml9ם3k4w~N9gO`6Gu``I%vY׾}{qw&{c%E?Ǒt_=Xڿ?oY1ڋkᛵG.ٛ%r}xǞUzl0˝-NS(?*=Fڲx>,Mn^+=J;3s,t[.m79z{} ,}㎸,}0kWy'k= lkH^eJt8Y;ж4~44:1O*Nw+hmDC fۇ#}IFP.3:x'K~z2\ig=KlWlXOs gd"vC8VgP!11&&agk?evb4v410ML;Ii/d6L3-Aڂcv`l Q dKv_@پ/ݗHyl8\sʫ];(،d` -3ޖm-G8Nc?6h@tβ'إ0[} uC[~gRQy~}^n3h>MNa♺1N<ݎ^ce-CVw)O^}.l(`N?^_ ^f)~~{'(w}=)\.#';-;k}}ec(> miq-p\G)ڲ~A\ Eqa0;l+*k+86`d[gz^`(r_SgC sU~%ɗ>²:UmȖv qf D~~ ͪ \' u x7a#j>˨/f_-E :WSP9 =+oٓY*־k{r^}&^bqMtXeėa6`4&"^PݰCkĔkҸX0cMM(KZp5r4`tƂ(I|Z齊Q=G~JrxLuo'+}Buʱ='vl@tƵ^׮r12C..$l\Q]~aռ1-׮NrWܑk?-aIby͌l">CF?bmTrՇ+d9;f Q.SG8G7[ۓe`mT9=ץg(t~o>8Cmg8B3'a}#w"QK{\>o31Ox>ĭa!v<#ybޱwI2 =I L}(?翙qw)'ӜώdpNVo%9'` OkbĮafלrlvOGXt=WXת׸ [r1o~UX~m9Ksf=yXE Fs0{9Oz+$G} ?ws13|ZC7ub4XWHbaX0qNjB{0Xu2uPHR@ag9PD.f勒˛*#كǐP :g/qռ^|+˞Ә^Ql\geO+9"2szEzbќW}O-#c}(>+pLoVpjLcYK 9&{,{sD8g}lstlsѯSV"˨'vƶ`- @U,iNXO^0>Fh7D/1},#ҽ!.b8-HOpM7v<ʪ7u{qUQuZlJ<> J7t6_Z }j'a\KVs]˷t7ϓ\yy!_Og]_?fk] cz "χzBt^xe7Trs]vfܸ8 t\f1Byp9c>s@]kUt?*c@fPR]Ͱi}vq\|s 8N|w4 b}>ac XF5(LHG:Q{@FD1[%~l#vv0*}o:eMv%:u<|˺(`_TNCzՊQWMc2^>Yn`]r֕|g#`%6-Sif82XV8*%Y~TEnU@Qַ%;}T I6}Tw[GE(VώX+>=+S_sNⶭ8;ΎIj>ߞQ.9Nf|Sfc_9 ?c{[6B"7aj߁lW}e4rS,;7̘#|ghKhf&ҽ,&l V׮Ɛ>n2%v&3zo7eA鼔N_`S:T3 ae+n+Q{2̬28T5S[o:2tm=hIrt8_;&iA#65``8/\:/18L@.'Ձ"SGcl q~D"/Vub?XΦ[{zًc%w~85}M{`D9S{YOno 8V 嵣k0zs'_l8b( n1Tl007yt]{GE vW%l}kNv~ʍr:2{{ =„la)NcW~K*[Gf=`v.$lքNF0~WtIO1 pN&aԎQX?q vǹͤ|XQ?6/h-tx\O= xXs2@gaY+}ƙe 8υeIeJ ~F ?پ}#^©~q&]NfvT_TYFs泦zOe4Ǚ7ǩnpT Fs%e]&/NMtޡQOK wy4Q&3;gLeJe!Y>i\El? H-gE{zzˮQ)}/SUJUw>V}U=HJ TQ\Vke*`Ug l|UCGg+bSB:L5ǣ kZ:Tuli`a4hEpMߚlݞ1B,xkNj(K-;z[ү8>GM12snͦ6-c}_{pͤra&kY0-f^`hzfcaLj\ i2? \Iu0N?+`fPig{Tz"'a@lTŷ?[֚Yٖca*bOWbg:Z[o6}׾`eIx ;Y[n]z'c2Sه<L؇!c;d%#܏\1`=~Ϭǻ{|<$& \';*y,ZG aqřݮX&n4 9sy<ַ^б 8\ߩGr.࿠8>\خ9^~NB/{G@\qٯV49 ^knx2vá0֏pC|#Xyyq>1,JX_!ل=G:a/n zPK!y(`!~墀[CL5dgҝl w/<59"gej::Ǭayx|j2"95M{jjk{\y. P$]zo,GpEio(1gX+[j0$eN:VVC'9S3&}~qLa5`A {Xx7Gە MfkrȽc gU{XCoTU"م&Â)41>Wc>cղk1zÄ6>ٲ0MO Km3 t6>*ċmiS5|nQl!6K6+Xomxϒ#\,t FDh)2_%#",=GD *2"-V%#"L~tU&ϗZM|.?[U]r/ v ˮcfWTh/|od?}Ȇ!au<෤m]-btZvlo%[[NJgɲF` `9D%9voY0C٘ ,BmrfܗXrFI%SVY%[M0[(r7Okq498k"#V1 ,XcB;v钾9}t1)ϲ|Q>[nzȾ `)E`4v}tA`CN7mW..WK=G?YyVpK.Eۺ-sc#av 7HidyY_;\`wA'^qG~<3_8їI:8z+ռ'Ȯ63H~/՟?k]CN%`c:e֏/[ω!1U0qQ F\~ij{{Y~k7+c϶r={ۥ6l`7~11YAv`*dbY\}6B.>l`q`=yYN̬p. \jAGQ2x&OC: *BΖA"iNHeڥEna}"@(a'\Eل *Nȥng}8|^傽W 3qPv ",'ݶ;G袤t^u{bC9!nfpr`=jPZgKؓo ?~GrqmiH{ؑV6Զ#HQێ$vɚF2echll'|071;+[5r[{ ooS5ğLӀy  {8l ck礻_\KsOTL;味;+y.Qϐ́1h.I;_23g,.Q쯽φ~KKXK5rz]#s]-kF&lqw7pHtuP^=5ɂ-]#t(L/FX^G,W?E8FmT,S8V(1҃-(7wIUt?QVSa`?VF:Hf4c/p(}'DB0WJ"T2%}hlIsYlYI aK?Q\^#}$Be݄$ŸD70头.tlxC%fYT"K߲w~97ɬ}>#={l>vtRL>{l2g[sRY Z_ 'I^(7 zrNzG,,Sb;Mt~$4Y}`#]',w>D6= +Q룿1{[jx8Qg2p@=#'-X6|4b߈twK3J{y<dҽ=n>[5MGIa-]-"`țALoӴϊ{"5Ҋ ܥiZfEjJwVߠ" чyFgKBRgi*= k5M=yyOZ}@U"qҼUEJ{hw|nTM U"nf?״'h'GڭDLo2N4{c 8ZlwE>Q}:ks. e( ח\ie{)Ѱo v[@[W;N5қz' mS|ټfOm3ϔ=6ZSƍ6Ϗ/Դ|V| C_|>4m46>g~溝 z ^*Pi2Úv%6Z]Yzeoմ+?(ښ0L}69G~>Wk&5LM?5m gZsT}v+iv'{4o^Ӵki=MM` Y>9֚>i >#[ò^&O0M7!zZL-i}iGrm܆2g^Ӵ}Bmoڛ ye:@v~0^7OkZlc]Hmͤh5kMhZǰNV-~Lۣ]M{:Mz|Ӧhڕ__}?*EӮ-6]ӖPs42jOkZ%4MCcjwryлyлyлyлyлyлyлyлy[z=Ey𲦩yPijmdܡ^̓ڏ` y0P<8I<8ZY}4L󠌟n1恧j̃2>u-ipD4!7D^co5mQ;Xg{7ԞvHi}=i(M+c5m_jWhgM;Ӛ֓lҴX6WzQ+Ӵ=X(M7#yihZw7Mە=iݘAm1{vm4u}yסC52J;+ %wj뺓;ikJJmM CjDY 5Ԗh,1km7Me;-a~KԜ֝}GHe7h3l- SZU@\i]5b_Hwt4GӺe;^l~PpeSs' 6Xc> OiٛWF\Oϋ~U=hR;\sFzneM6 Q8^;UڽԖhBj3:7З7-ixe->irnlд'o=ɹCӖpnth)մԴg87mdn|o~G#sAw+õ(֘65yiט=μõxдKҴ7vZkM> KU6&kڳ_}ioξ&}4m 5uߗ=CM[AvCh쀜-lRۈhڵԺjڻfi?MiWR[iWQBOzv Cn+ͻ>-yS{b?߀ԟҼ7YxUB4>daMV3dOslB o-c%JẕVߢ81Bv79Ѵn9{ṉ4o~}) vL@7rv_n08 7[hдCr./IirIi7)j+tۦ{Ka}^̷_ǔG)4x]RZ8f "Rx&k9>kD*VXN^|s熓xOoG=fn8;^J47xW]77@ c17K6 UNJzƥ9e{ cF(];v^( k7 lCӚvwN[79M[nJ]O㻼tm0~Oi޹n0-Hi޺aRo0 Ɵ5m&mv9aHiWyalҴĻ1$gA8}n0gAZ< =Zܰ 6)m.~Ҵy~XFҔv6w@;˜>y뿑w1CJKm]CxCJ;w y^a%Q:\ mdrnU>`lNi3>`VEZ^>UXa=#<_577) մ}S-Ӯ!6#ZЮ!6ӧZVW>jVM㱏v cSko \g/֮!ԖHi!jhv ]||kzC[[~l}V6SZ`+4W;uHimkĩkV)ѴvlN)h1Z%]kt2Ƥ){KwIi3_vMiR[-u6q2BhLfBNwvOi,l3`=R)+ /LiG3ýR?p4 SPLYvzYJ;fҎN0j~8_H~f[Ck3}t wkh?P>67¨~)ml=~,^?/naWq>0=}-<(]{q -l״uCwNi}-pHJ=#.ptm 4lHYZֲe-kYZֲe-kYZֲe-kYZֲe-kYZֲe-kYZֲe-kYZֲe-kYZֲe-kYZֲe-kYZֲe-kYZֲe-kYZֲefB`N(ljݦmi:we{~;~oXڴT}@wqt1"8g[B5{};;64r|_88zN7!0b\{u5 X(‡ ~t>?bĈNvb"-ohh(jhhhp. ihhJq'[PE)5%̇sN(>"@ùC0(5+; VT[r|ý䋴 \iToMfPsesД6|pDkݤg2l.?6cf-s |x2751sB&Q`x] _aƳK[ Į%WQ7t?v]o6:YZmfS+d寅˵iѪ.-*})b"N&rφ}~]*•8J_$ʀ_eI-_y^ OHٞ* 44 raVQt_B^9;B7>.h!2`Xeذb*#UچU:Jaɏ˫y;ӰǏQ9jĢSZhѢE7i NʮUfXU ,1aQ?F6|e{ fo/QeҸKHZtQY\wN7 {#{5 n+iL WT{ `m;glU/3]/ta WUrUCՈm.ys[m!E*?K5?iƭ-mk6T;}k-m;>*N2} Fݴ ;9TU;RyP#ؚ}qSv#ݚ_=楲L1XdlUWf.\@F3rң/j2yJ7s>o#qF/j>4;- nM{"TtY_abj5ʦvBb'y-zHm3U_O9EQMd}j= j]*WJV_g್|Xo7ໍߓ}HV;?3?my'x%].rM?<1c|$w#aHO)ܕĖ4$VǗ˯R7rf7tEt5?{?GOwl>^毲9ݽ~eNzri~|ݾSczd{/t;4?qu2?j+gX:j<}wQGo}`ǯ^{Eoj|g8}#Ugjӛ8d*32'㷠q2wJտM?3_eM2]ߨ_qMTbMS1[^ODӿ=$S'/M3?3<ΐ?MZgit565hjf?2gZg*NW n~?So*=YDXr6X~#ӇnsO"2=y2.6NV޽Hn]=DǦ_%/ V6z6mnwm+rdZ.) fj?jE>o/U˿IWWsCڿc~;.3LQ=\S|OϜ4U<>5u>2MW<Ǧ'޾sε_cYsumj=*o^7u1l_ozF~sG]#<Ϋ=ǝZ~Tckvj T>~G\y寊Wr=}ΕO^_xi'~Mzv}sw~vگxp߹m>3W2wd1?\ΞM;Y~!?sKt>~ʛ͜;yvy``>/5)o=&n"嶚[eَ{퍉KJ涚[i}ho~^z,֫qʛ-ΞR~"##e|foO?d5zֻ;NGmW-o Ǔnjvic*N`c4~1C'>18bY{yYNs'~}ӷo1gM:yL^Qu}35/UϦ9~VV4ydo]~>w:ܔ#\<>$;d{l?ΞoM?n9ZPjAw|_e562>o#dzST,>n"}2|_}3^D2ݼb*ui9:u<'qT}<p#1o*S~<=W߯JSyy44||ι       +22B!B!eaCB! !`~C[2cM/ 5 \kj'WǍ_?rϑNۊ6"es{=!3Y']䶾Y:,Zn:2ֿr|_G|`4f긣x\opvI;xִdHΐ>*CVW ׿)ӛ2oϐ~E3vBK^)󝷇ҟlQs!y@z d|ß;2ʿa?ݿpz!z#?to6{KiwZt|FFN )?{|il~vپz~t8?s4u^oF:e̷]3L7ϝi`̿jc<d7Ͽ{x0Ø]υx6{?`8^1Q#x=li̗QVৌw?c;1N5Ƿ[yژ5C'cx޾F;lȅK ^3׌=i2c QɽV6&g*Lido^oѧH7yZr&6&_s_3)ⓩLf<18h?My.239S2pgknekr#t|4T i~#l79f8ːnixg`2٬o{or3 lM7ߟ3_oko/珖t|t}~sОXgj߼5} M~G3aU@ %YV~AQI6mK۷yD`NN/(,jQRRRxX/6']K BܼlFjg) |0 -}UV^Aa,jUW0;yuϮK*@NN(ݦz ݑ*)wkC^3`ʻD`1,?:/Ŕ+hNNh %`Tĝp:jIG.2a;D.iR|^$ Da_PXXTB =|pH t*@7Y/хܼ}n~ /%fVn^~AAaQ1"{_6sH6 P(%TDCa+   [WYUXXXx}_eB'zrMhPbO(*)iٲu%2_"O ^MŠp%&AN7c\pnb~ܕrB"5rù9Y`RC%ǎXVgyӚ׳İS+g`NزnnK̮`0v}L9yC=͗w,Dl]H=9яDI˒*T#Q%z,j !|7Zb0VD^<ǀ}{Bo9OvxÛͿ80|$qX+,,Fn,}Krq}j[>bytHs6.4yE%-[j[nO?G#'y>,+!'87I&A yj/c>Fs,8˙~'Diޛk Yq󦋌rAAOeB} $@!џQ,y+(,2!o?־OZ`j)$lu) A<LM_PvD܁1| MTb˃:ɲ'epb25U.YP_}}LգƷ>&Ħ1OwɘԊ>5A[(,r`VˇsRe9pTDBPp$쐣FGFnJ3Dn>d}ܱhܷr"z$Q &yŊCUg;'yo cDE%Z-mr ZKxFDBۢM.{(s}Ԑ <-ߢM={}Ա{?m];yϰYmJwةgFX@!ȍ) pxL40)/PDKi2_JBՆE/7KÚ 9J a:_ ps83<,$H,K*>X Ԅ?eGqI0y:Bث^ Rjw+x5^tɳ|B̃߮M-jiyg0\Qn4o‚XEP*/Bٵu2_ڤk,% wTZ2*>_gU6\*e%g,W%yyCiW3q}<Ox'I{1,)} Ӏ4< OXKg . `?83RY K,e p&gYo .฀x9<>~p^/΋"% \Oe^5+e~p^W,};'/m9WUyp_}:`8}zCuo'앀pWx7 o& p>%p;>D +x҇Ƚν{x O 8os+-þO} !͏~D{G}yp)>8޶v{'  Ľ6a 8K[b^K=ѩ>>3X(` 8U pWC|j^ 83jk{ x5ѥZY k|`@tQݞ>·!".G!r|$]&ziK|ǀ11~ _ L_>+~ q bā>q V>@k@[?| >?+xi>  ؟gup:끨+wp=9w@9V|؟M}^pymn y _Η%p6F+` p_W}@ /_(` _p<(QQ ]p `8}P^-/ [op%~Ѯz8[/7w~{pb? _p/ `3Ce!ho}E @t=V agw,?  moN[l@dqaQ~D.lܭ6olwGpvV}!!.tw)ޱK!KK z @˛( e}} ~" 8 N_x_@ D " 8 $q_>D vzw@pl-`*;T Dp..?\$$#GGDp)`协 D "G 8G ď#!!Pg@|}@X'=N=N 2L&&` p@xx  b' `@t;\ 2B!!`$;I' DOpOpF G اN((w@d3Z >Z##S D 8ccqq DnT 2^//`&;M DOpOLp&'g33"g 8g ' & lI$$98W z{@<CP vf Dg 3" 8 /g f bKKؗ .e"N@Rvb.^.^.BB ~}@J\% D~?@ Dv@lDhk @Q @DD?@Lą@' |q@K @4  @4( ăh@,G # DC@<$ D@<,@[\h@,W + y|h@,_ /) "q b޿ "E"X@H R,- ċ"---b-6n 8mܶ*h'`p ^n/p AZ r-xD Abį5k޿; `@t;[ R%T ī" 8 Ľ1Z:5un3W >W''|g@|}@)S[EGFb7yd؁>؛"!: |> wX mp[~qgFuu'mLJ'cF*R#ǸusSCC ǪkE߿J#/'W%.ܯFArr-zw5 %ȸ_nK#$ZrqwrvOPra^L'/$G{.no_d<"7&GudQOa+U2+ q}XgF}#KXr9>/d^"9N%GJ>$./2/K#ؕld<^`67TxYr կH.>,"y %GeZȕrSC#h?S$W$שtţFd\8&vd=Jv'H|( ȵgK?\6I*r9y'䩒kI>lϔ\/:r:q62._H /&/Y?yFeWI&J2fKv!WqXOFuo=#o\'\MNrl{qgY}XF9Njɥ[%&.bd(7jr͒%Go\Ûoc'o#հ?yΗ'G~쭻ۅE7u?|3@rr-)d{Or|xCbƫOIނ=-\TrmKO.k%9LrqkeJ^N.~ܖU,"Nrew`άu y] ӕ~uc|>\;p 'o#G>'&?}}38xJwdkOfёW?wy"oD'ь%v\7t\>QƯލud4߃㍛nOgqx#jm0sO?g6ӧAK/x"PE쒫.f<%L'_3~џg:IL) ?_b-9v5;} 3VrlGqQ-;]y q=f<*$WS71~Oy3Noa{0d\$ymoLr] Gryl ɵWJަx6y'\ss#W3;X~!g!0y-Pr#!G%W?,1ɑZG.{(q'wIɥO2ޏٿ')1rlo1[ ѧ$|?-yRw_\Fr'OF.o+gK ˗2?nxi/m`7Wwb<|˻HK' 0D2L!=ؿd䑹ߋIM򙿷rd7xIvп~Hɥ$ב`|C[ɵ%~X{3`|;J$3П?Trx?V*}ٕ#wcO`DS~&x%y9N^x(yp_ْя%WIsHϥѿχybzrBC)TY\z(=Mr0e%/WOrS(Ɨ\K.\>#w7&l,/!;8Jcl﯒]r\~A#cY9yz 'r LO2b>r5ٙb>Vd{䊇9segyrd2O%?&鏓`2ϰ?/ry9^._&B׳g.qyo_b<.\KF+V+.cr_%U*r-y~C\rJ u+o?W1o2:ɱOrk-O.~x$GޓU_װ?\$w}|3Ƀ0Zr?:<K@#;zm,9Avo$kϗo._< -{.Yr4-gmg_9??0G.p~3g"Hz`5(\\HÌy!nJ^U$/~.f{-/\ŭok$o#b?9F/~u?K^gK_e˘agٿ]$o#W-yKތ_Ba9gLJ\K'x%x?o2>$W1> {#w?9]ŇYwUj?װH!H>V2>fc.",gH_F1~%||::A2N\G.'Obfll5߲s9m8MLmfg2"CƏ*/ljFrYlF*\A)$;ג}?I^g3$ 9#F7\%y"ZT3>rr &֗+'c9]{ ?0,?XGzr )w3d\ݒbg'ג{%lK v<=y)weer.}W$3?ϳ?K_݃U?{1Oױ^[\Aޛ&+\}8z2^1=ūFr/k-}D3>du>9g{%Y~/%O`EG$Tr)xt\5u} ŝ$Oy͒1\Kx}[X'rryb㹍OG'W?'}F#?I3 ://l_G$6}%}_?zUZrŷ?Gr]r$X;'g_>˷0+x+]D1^.yvBr=9J-r9l jrY.C!GJ.Γ\A#?Kv%בȵX@r+v?%?{=ݝEƞlu^?rYOSzI^H#GZJ+zVLrxhxgke~'\?ǓO{KL'G1ߟdܯ='W+T~r-@d1rOvq*2xtb&בmɥ\|2r+#O$k] wWwCFƑGvc:y1GݘNI`Ƈ\M;s4'גw 'בCP';Lrt/ ݞ)7#Iv1rd}%+9J Wr~c*?9:ڟ!/$z}*a:r\vC!W}obr8X#ۨܦdIJD8( L6 K8!Et4MhA L7 S#YX1s_l,~Fϙ{ysI8)h_{B?8 /Ԝ @榽G3-B=px_*S p\|Ds9T90ipFsL=gA/ ?^|UN-e_Vp6p~p78|KG8p(qpd6;؋^_%%s ;\l?Qsx{F? -U8΀'A|G C>qpNLGkn>Es;NpT@OOC~cnO=p:XDJ,B=4ǫ4'XxA>)pd 7! =WsY ?47{Ap|k){ wB\٬^p i\>pXsb9 k^np ͉K5o@04wM' #ߕ{fp]x4U7N=p+8?;pWީw nGnp r]~=}Dτ4' p,́5 }`:nҜ'&w#7~qps󠧗}+]"_W"#\߁|F>kNػz֠>ؼc8x=8D>RoD<-ߊ|>u'<'`.5wgn)=<ߋzm n_~?~z`zYsy3np!͛57נ\= .{;pQ7`ݏke'POp4{8 XsY)ե9<|jN}oz}{/?8 [sK5Qo4 =" ߡ^5^>!y/8 n {\?oz4w/=SQG~\hN#[s#ci1AO 9܅xlǦjng߈ 84Ms?t^?>Gl`_2L#0 nUs78W >i'5.<>\s hnGjy5'=1豨ipr1͑\͡ ͝9.D|͑J-МXzq_Ts2q×<$a \>Hsf !Vp 4gFhn@sHԿKKP0ݫicaoIdjCSoOyB wo \m} )|EI 8 ;7A,E4'ӚCW{k;E7/|F-=_p#Es;l#0T# >ל_ _a;Wlx=p _A/#NݨǑ|ˎFľcQop8C#1gfs!~^_o_9ܽk\4'j!^`9ըyI>Ys#35@<4 {ik'=ЁG jn7Cs`ͱe#(ó Qop"E=_b]zAѹӗjyr0sUsJ r/4C{/8nX|cmކ?G5 ? _{<hEڡy'OBF΀;BMiQs3h΀S/!Ϣ~i|O7 2?x_m<wU_Bi2ˠ~ѾKsu͡ϑ7k-=zD[`g+{"/+?[>Bݥ9 cB_>}AEGj k { _Z͍|栩9]ݣ9|S" ;Qs4Wst8OsI5w}Śgk9|!oas+RFhњ3^)߯x@s뮈AMs w^p~ᱚc5/ }q#ǣK&Npb扰LB{pd>}_l '?  YĻ@E4OE~#=5G=8Nlߋτ?9 ^Ҝ4^?pT{h.;@sdp7@Bא8x]s8wjj7_{sm蛫9.u iNC[p DPp78q|9v4=C8.;O} {$ۻ>ܺ|W!^pb\_^5٭y~ }޷RE=֜_8CJwi.;L C'>4|dGsS4j.? iN9=@sL,![F!9g(!|)E.Xš8K ΌKːɚ+оLsJKsUknc{B~o9Jsm vl!;п [}5B>w-נw>a{ w`{]s!;Ms|=RͭC_ $}Nsw?{A67!7QNO#o7k6ܩ={z#{EsL! }Ksǧ翐^_![e_jBs?ݚ?jN47{~E~=D>1Y џ5w ~3Rsvݥ9N Y>T= 9 {ay?QsGLs j }479DGc1ؾzwӜ@13 5L4wCUؾơ?88 >p'`{Dl?Nsx-'c2ʹ:͍eлx5#+O_9h7x}4NG80Msd8OG|Gf"=~i6GoPϛxp-зoEmG- {u}aVsK[sJOi.;GsD~N>;I3=97)y2ݦWx#vpl=ڟ k$=j;479;gvs8{6ڃs )0=y~\)Ӛ@~3{g| @>.D ϋhb߈fp%g_/~!Vp%ˡ\r5eMW"H Np;8yWkN{WհkQop !p^@߄=p\~B5Gopfpz@?8N{@+n'%> .zi0e4p78n\`.7Z'5 {NpKn{8C<8.$x>D@pA'pCN#zwSÚ#1'GO47m@p1'1pI;S$q48'MO8 N3OCg˟p:`3n?8 S4](q8ܤ ΀/"8 `JC[apnW Ncp8/͉Waz u7ϗc ߄0&p|Bp;Gp88N˷hN3vp<9> GFip\1{p'7ߧ Ǻ` ΀>oa/8##pǾp7_w8. M݈88nG֜w7-$8.pp{?^?"Vp\쁻ϰ# 쁓(W7wF24~Kؔ$8 +vp<ߥ~A!pL6psCgA z!^/c<쁛1p(<g4C  ΀ˋP{fpS19 ki'ಁ'5gqp CPp78 N`'pd(4wa6@<6p7|$1_p\= =8Ѱg8 .E== yWMsGk38>c?4G A82ip \=z=$i"NB8M=p78 N{@ nS) .pܸͽo7?UsG8 MӜw)y:̀=p7΄\͡YnA8N>ʑp38x=p'8>=npAo A<p3xlF@s 8 88:p 8<Է#`w =Ew8G>(#p(ಣN.p7X"_ Kb3HD?ͱ.p;H3G8Xz[1px1wK`o N[xqaNKpp #':gq3Xs78n\`p8p jp LC4p8 pDhD>Ip$^pL 8|2Ip ;T7`Ip> p9x΀3 |aL`HǛ}f\ͩ͡hR?}>Ofѽ57^h.Rp2s.p3r7 |BثB[KBq[pv;wnpN{6pNs.SkiN߃z u 4?CsMs G.@E w_<͚v?x.}p2I9=9r?x\ _Y՚;`Z-ϣuзoMw̋&/-˚74gלLiM&݌x?A~3sԿ k}}{߀E|j|kN}zxz ~pG?!/ W7K-99$5k04S5-4=7Xs{C4j?;o՜灇Boͱ񑚻Q_.-B>ݽ|7cfM?p< ՜}x7w#5S ,o,peE54/q9Qm(y9M ݰ9β9o6TV,[_9ښ5'UX \|_>~A4 C sEVߧW'?@_jŊ񆚺D|dͺHfHX$̡>YAcV@mkFpCyܿTkJ5agʥ|4ۚyGXG)wgqDo^?kO we e X`BPyj=~d0|>4K7q{r{kyTNOoo*TF/_P<[gَ ǵzRKTbT@ڥ g;v+lr,h1-[*7lS߬wM8D\9kj!z蕖x*uW\tDښE[@ǯu,^YXn^g 8d8uv)-ɕn!'gM "rپr^g{)gerr7ƹLnnYRr~#`8J˭i2dJ6\Ía0hk\^ow\ hWb=I%bRåoqn]"dtIe0-6cd<#W`/F(&`c(o;+t}WQߣW-XMp֒nq s%s_;f`u5JD&j_MdwdqIUx.TMK@߯jiWͼZs~а*^5fLuŊ1۸QQY]upMmUŽCǞ`h}f[7r4x}!vm3K;~):}I"fJ A4+Q4ڬk%6kzX|9JGڑILW"BH\s]G{QuY}FbU,zl5ϘR\3Vƒ1ޯ:#z$6e#JBWY]3':zC^TEju,c}G'z/7q؛km%ɕDs%ں>!uX/;=ItAdVI:,?C#go  ё\P$I~U$wɬ 5˪nuUPřAT˸~aߐ?o :?deMmC+*2M7dko ݹ uUYW wHq/yĕsfD1-1hdG^v-zDqoc^:;~~wpUCU%c0Jͽ2y)kcMDGDtMqe7mo@? dU$ aH% 8?]0hMDь|\_P_S>hS`0 c/n&R7oή\_XhHR!I]\wI{8ŕ;ysm}]ΣNo״ n4s7<hh'ؖ$l[})r|l{eI()ħںU\} 8KBt-DgߒM}2kʊuUD*@xT/}K-DBԕu,ZV)o8׃nɭD1V.8~i}Fyh^yy 񯏭Ko%VsbDnS]%3ڷm]omoጣTo諣[أ \HU3>([tۈ(y0Ys{w iz^~:̈́mDFU9mJNWr܎GQ7c<}28}b^뜹\{ W{sqFDvzYprv#y$o׭Dߵn w[{vي<ȣ%gY?Nv۳1v~r&7o3wIE1:n8 H6g; >z~AޡWPŠ񎬞 +:nzov*z;zBwάw'SSz76Q~t&I#E-%ZOK=Ih]=CS '9Tl,ьȎ9h Qk9w ѥk_c=g2gzOl]QvsdYtl3CExv5Y wK4 uCacaΤR3~~:J[sFwew軈&ݕ*"Zv׎kY|'"߃7nMyV՗N4~i^fD3pk4[ӏ:F)OEu}i>ʭq̝jRJ: gDqY]'%:m-љk·W]Ɨm/@ݝUz7Ѵ;n3&:޶;mGv͊5U ,/'Oe 6~ȷVjQѡsZK. v78O_`ȵVIfӥ8R. ]\̔\);`Qlwğ_"=E4)n6EtBjܺkkII;@D3~ԑ+ʝGz "]HOz }&E}To߿5>-rܹ{~{*OgTTH]i0VI=DCD^DEE%/υ7g{K4?gx"^@E-/ $^+%ZǹuO ~ŶH~c$I ?uY? U#~O{5b~y~ѦuD?g^?èh/9ۻ't_>v2g MKg{8>~n3~ƍ/uE-b/{{~O?{+_?3u?:a6mPQ]#ThaJ[d5=x?>G]AynÝwS;Ru9@VWqoz;79?@z3[ÃD[M}hnovDռmtV'WDVj?"%>a(]_rw+j">aD1hȝкx;D􉷨h\є[%xxk{❩M;JD|pC89ѢG</͈CqCmDۈm%eo\wXw\GSY7CE%aPn*Vܲ&1Dm =ѩP\lmu^[촥K͚H"{Mh3, ^}'r@p{b/IjgO\Oz}D-_Wl_Ͽyu'.̮))=qGlدbr>~, h`y<n>9(cy;wwq=5 isOO8>YOz Gt+ұ,ܟ@w|RZT?sD=Lt*޼XOhXU[k$:ikL"i|imcR܍J ¿ tG&GJ9Wolwɞ{h#Dod^_u-]u\RWYtPiFq\^2%ny' JRjiEC%˴Qg%z>Q"hbkS];*bI:n+jN:nʥU+m^;vI3oacYh, eaXFq]E$3Cz~nnsbs\9(ĕhgDvo"W_$bB`![7= q,{?ɸk˼2kW`v_b X̝=&x?W?o\^[5g)w'8ȥTvqq=FtcD-e1a,Y-;jٲjF͢f[Ռf>s %wljcW"R@Dkv"̘)Nhi{VD׶ҮWD aٺCKk*fWS?~IxRࣙ)w2&Xh,.8 M6 Sx^}<{p^~ݢ1KhꪊO[7YXӰbk)8"n$KYD)ΣyJe< (e|\(OJRq"(-u\9#0 W[- "p)0st34SYCIL~L|wφ̐ϸ/ZVؐP/9P~,K0rI)o ֝Rwy?'6` a2Osnf*/r\JMr]\>Cy1 H!|Q|Sc]\,+^s! /߯Hz~`iAY Z/1q2Ot3_O&<Ebo~*;އ?E~hߧO]OQVeG8ЪXhO'X  zR} 8\u,w#p7]ĭLqtW20e(%]ƤRix7y:z& x<| {FXZ `ߎ5Kݞg w/֫}la ywGy<(%<*tɃ [~Y!p3B<%{bUd*xPZ+WYfw[I\"c!~9P 0VUAa,{BYf2P{ /#,oG]bEI!bR3ݒ+J(qz4?= g^{&[),gt޿k^q=U_UY]Q:^1zL}EeUs`qr:~E\fV.2M>PWuLr|^ݖ#V3Ԙ|K C-~ŮV bo{ඈw}Pj*cKrp?;2.ٿ&Da't;C3E陸lvӳDHudӡaG)\QUdlJүGWa' s?Q`ؑAs\yD=4m3ozެiX>zLUU+[+_YYضpb{4tf1gqpIgs˝W̢%/ew\x e־CIgy2+\f53}<,nnrf?Ƃ䃸{8k1 y5\.`S]Ap+yP {9\ibb&F@U!2ZC@!PZD咫)u+\LP|07fgn$:o#ECX^u~yC͌ý>>5[TuKv}MY}7h즬}6'7}U'@j#n6e?߲ˋDHߋY}_$EdѾswri݊:A.9fE1}_.)]aVN]Uc,*=p%a >ͣT y_dHeʽ]pZˋ)m.KTż^ thɋrra:M4|..=^"Zѣ/e4墋;\R}.>.F@\υK`1<39.6r.W{P8xV'؀G@>Et=5:TrU{0ɧr.寶<{{Tbe(%0p;u0U \%p %\pJxn)Rj\s :=0E;MJ+8Ӟ&8Wa q{sv^f͛lJD~<~^y>HZ[`Q]]e2S,vY|wpe9S9^t3w p1z(R E렯fOJD]f5So>iEҪʆڅK&E=!JD{~Bk>JAW5E-ymt}b[s~^y׈l WK|p8? *?<#7]+3 nx?7=Wnb^e30pG׳xNέ9P#k'v}w:~2mg2m~tuعSYd$%V{y[Yf?G*^0 ƶw콥-;[It4}odwDoAvVŲ̫ܱvkXTpK:wGԱxEc4q >+` LG !>c/82N;꽮S? pg{ܝ=B*Ocq&ct#+n팏Z\?`_;.neJ. ه-=:gI4Mof7#?~E+뫖p.6KLo3_kE4/`_{og]Jry?Xog&JM}^7~[?yG/q{~gqIݒZ真b+f,&8gEes p?w>V( 0fqŔX7Ea٢+1ENvr;Dk!lAt·Eɀ(Wq=./{w.z7{.zpņץ=qtުxմ+jjgՏ,_/YR.iYINO1/d9f>g9FPn/ <ϰ|AYk ә/iET+ xYʽȫ<#OD?:OP,}kjaģL*y F0K*xsnOFx_mxu/"p>WegN$nk'1tp>DIە>+< uduh-D-[?8ϊ/*,˘~{wZd-/n!ڲ-5+C]׌^3^*}o'qĶ+^_SPQvMêx֏2ǻ[~M簃sbȳA33Xd䆃cd3G/?@q|] YB!W0oГ[2`TnrPqm RE8(3- 52LkLe 1 7N6S;~g*o6xLexLqcIs7εz7rbǤK&sEGs|!xpi9'+0Wf!J8/:)/, g~;4H89.Inx1cҋrKZgD@4=bl lǎyhqVQ[SyM0O3ݮ<輟dcfn|w7lO>k6 s^3l/l}v)t)5W*>ƫ_e/`L*eYǩU~DlV~?9gϙ={2C{h·q PETƕ>ICW>"#>_o.^ZW0ye2<͡r>я燛?&c>ORWlݐhy|EV,YR[h>.0n'- )fE|"sFrh,_* lT)-2-U_o}%].?Iq rYz\z?yL1Qr0ٙL >,g'B&/`|5S~+<ʘlRg]-";|)%۔ߒnWz>H;OVxEq~o@9 8XIC=\ )GK(W]{0,;QNk;[/divxƧDgJtD~~;{Ny(Z \jf\RpJh;nb2šE4hD׶ftͿx3"YGݨ(]]jsѿ~Wψ.x#',uT54Tl hڊeU;hf]X3;6,^1f.yB,Vq/qv~.ee?$:ێIԸxyuQRjc^¥U2,f{cyŊVV4snhpv L :ۙy/\OωFNln :|4T,漑up3[ sͻXi5Vyw>(^`J{0үRRP3/I|ԷDu|gN֧Ě?Z.ݿ̽v5w˧k'.HWp+2 wAԯ5Coϛ_}e/&W,m;>jݣokgwY11^WPe822^,u _ͬU6xWs)\Qz)Q9p_?g˺ůۘ`amɛ!>a{D_<}+3ֵ3vDрu9$@_fS-`aOE !SWbZh cDWCl+ }Jį~DZbռ{)Q0jםW^ڵƵA?m6L`o,ņ=x$*A"y?xg}{.k[Tjj,i)6}jP21R]&|7F>>`l O߱oGE_~;]O5h"OaH<}߄M}o|gs>Wa>*wՏ. iwa/vo"Kooט#y9Cn;tғ}GsUa^9;O¾o׶Əc}XGv]QQo5]aʒU~9<};\YFH߶|>fL}/q&*l<uq- <|3G1*owءBg˸@gΞk}v D]&ZekDԡaL C#]9欐1s' c >I'*lɵA[Fy-ۃ,CrʭBOAzPN2Et>I^.?a>tҧ/*(#X6gIAxa@0q$$5!M47N3?e:gKTVZ\Ӿcq`ɐc6U#\Izd* _M.Dy}~YY^c1vgy:?c?? OlQNêk׵/]904:7?:y4u,gaa [`r!T={4 F0X]D ;& h1EΟ(~+ٝ>;>Ϸ3sz>Nq9/]Nf\DȑA6⿶Dy^_0"ϡ_0| BP0IQd$> ]=_[Bz$L܂& ʓK"zS3,ygC/8*+.1GUCq^ k`OYT,׎v8f|ŒcrBz0CxExF 2KsvMNϡЅ-MǷYYd#a̷Jp6=Oݙvo\y\ttXd?9=hXIɳp\PhhO4z0^53 QIEdNbUZo¨QzA|mua&\ U2_z< ʳN葥KCy}C\lXmaRP'E.muYa '& EԒhc?'*#s}y*Q'F!4K" qÜ /=kW1E'ȳdߕQ;s|=~@޿p<[G /=Ξ3+¶;VuLo\z@O=u=}ek^վOڐ%]]u7qzmwQK#[F7 &(VHs+ $5IOn &N&ia3G8IOORxDh)gꄶBEtE&! eŵ~#%k+K9_/rIKҥpV* COMH1hPݍ2 dӟ?T){]`BOCaThx &FЊFZDX1}I,kSQRh;J^A\,q])Zjt3UtfPt*,-"-b.o _/DCL~!z' _4n 65>@U~P,7 $f:V}%.Hht}.MқH6QP<'0NaɤIFYWzƭFѤSW\o+MɲG>B݁^ B%55 $-0p&؝^mlt XUrf:4㭂N T"x(di2 M;tP.~>Hd)P| R^)Lx +B`(h;[" ``78y/\`.&7[Vn?jYX}vA.ZCCchrHc!xX_7V5:JP^JxCND%pR#6 .ju .8s> M&Zm2Y,VWl:Cwo o5(MJ\T0HTjX/ؒ\/ Y7ߎW_۵(MAy.bkp4(Gn[#?PRr/O/XoGY۾c%蕝%y//goy>}݇T,:*wuc{zڏP`/h-q޳މס-cGr0!| ë o ӽ5byG ػױ^坫:C+t޿}up}GkNOԠf u(zL0l=-pPln,s+Ƿq`V~ʺ7:w{rU׊>9p(TW'k~Z''äqDPt*ъݝptEq8#g{0FS$Nؒpѣޔ(:7aabk:ڣ#! N>K{MwD~DގeonH;?*ύMN+w\cͺr\?>fW{(Y.i0r! ڸ5<˒~vq2ORKt֙78p}@:5tfVhυlyLe"smM j9AD{K:I]zNʉ8ہ;sb4%q8iDfu9q,|1I脎A%+8&G5=M 4,;6KYD}|ѤZGeٓܿϜ@b0R$&ȡI vo':xY&ì}N,ﯩ44tl;״r27g)JsE@e[矚_ݔvo:/H ijk\_5\:z;AۑmbT0lRbrz.Hסuࡘ'9:OĞcSdgaIbO%$^wk@ `'f~f`w:xjCtYڳ똎嫺!4`t34MhN74N%g,L܀ ?)H#9c ,s ]UlkA/;!_DlD嶱;F/K;c`{.h_1/([Z -گn&`eMmubۧs<dƉ,,@ǥs8r쁣u0嚅iS0"W&ެ3GcdMV?#Ɏ̇׸x'mᘤy{"ْhz.;L4h?(F]4]@ kŌ\#,GP7E},t<6ijt!)E}dr;"`_Yl]B\׳}'>_޽x0vɘcGlnMf4=!j0~O K3Uw~i8JDo+oy1v/y1=^ف1'I/sڗh_­%G/]ٱn#:G!! -=@4j]ӿK E "d\-$7"N(X]C'/6lz&;Ucc;+I6d5`h{5$-h𿍡o^^lm sKZ6! ;7O:A5fvk5ˎ^У.`a~&jKq:Kn:~-cS7rIדsȟGz]$l4s,To}.g-mr%LU|ÿ>+Xھ3/@C^ta5o&\$(>eMy\Id]qe}Iɍ9o%!+ 62ϧZ%ҪO!?ґ>aw{!^;+)k6[!\m ةB,2FK(#'X9c'p9) sLt stp* E9h=D)7u Pz,XAOz13F1։O z>U۞OU^Oj`E38XE 5x>l";̝a}zvm3+z k5,p\^;b]ѱleGwGaUp7_)V)/K[FYdFGe:ӳMMzLEMnscݼʚs"WfpN ۸E.>Ve ޒLA$A9dz鰵Vb?M#nWǰGmRLE:`M~zX@8YW/9E ",8Gs%#rGP6˂KLҥIUA D t3͆PQJ>/N,'$m[wjqd@)B{?[E>>%fS4uy#5j~D5Bs|VFncR" xZ+hMnN{^2Z+Օ A^ғ 񆬹Sv s%Io\q++| P@BOJC\;"T܋ M/*2E G*NujVbEev%/&Rm5d0VX}w0JXs{8>.o̔ _k1铗u3;OP`vhƆln_i\ѓ $3d41/hb,rj=9q4N ia=Oj[z",ˆ^Z[׆ٮTǶ < ?݈N7 1BS֏h@~TG4RS?hPdy6ܦb \ĨVI-&` d.e@N%hJhP8d@)}0e(uY~Js!?ǩ{ۯIy~Vz`oG~hDQWpIBy:`kղ(^=QPe^̛dP d7.kr+STz^J7@n>7V˚ptgQ2B[ 5FFGlqI ij?ŖuF :{x<F[tZWsD8O2 -V@)i2-gCѹֆo6l3U%9x nO,&VʧPmi9M&BG SFuܿ{6r}r >5~HwZ~3 r<?ȹnpJ" Izֵ_u9)uMB^<6? q=}7um.PZY_{ v<5H/֜'[kl{씆|{ã8rM/ȅXҷ. lC[#g<wp` |~O؃)v[F/ [t#ulpL A =NR$3*6@⣤"Y piCRX B7WopD~G'6 =cEn⽴y dw 7ٓ2ilͲI4MyBlMYS*]RM9ěofj)i=DsMԼO*D)I MyZ|L^n^ILb?%9%0Z$O`rݳL0IM% -Co< F2eB~0Hw8@FVGȘUt0#/+@P/U 5M.bv}boHz')=2[y3 Et P> P/y>I*{%_Wf@}+0'$)jBkR-I辜ےz܍OҫI)HQ;UVcNlKjL h9Y|$ex']1oj!-RrA<,N鉷RW$Ku֤)014Yk+JuNSjX5^To.rS"ԁY'Ќ?Q4mӛ5qGuEkJ_5 TLlbQȘ|_?c;Ca /rZ7#@$VZxM0mH$_U3;`,cz|PuGuQKy-:},4EV(et2 l{~l> >.߹>?}=%U-ڛ,S) DlY8.okqO[_d< oDq}_〽0KDdE19c9uϙ<؞Mήu_ޝK뾨]1e뭣l y<-Kv݀[ w]׮?/: XWvn<A^ӠMva)EEψqI7.$g($fH""Q4:S$]mSTODL=FO$O#.r*:#n; c b!<WQkmx 9M_(I; H RSL[h(I"V!R@e"T 7ާo{+W넼?u`'cB_{L6s"N_]~^~ay>CAr&g3->9ę ѝ' z?}674!L@'cΙ>s>g1ML} ;OAȆ9o՛Nz,)wZz|;'M6R/- Ƀ_Öytû ;N8&\p[-zDN ũɞQb1(wBz+ʘ)}8DDެڛ=%~\u7uDc &%`%<<&e"N3@c`uބB .-~-)1VU4F.Gd8p 4KN>ay4snPj"rq7^k/-T'C<ȺoDYQ8~;;[ޝq ,Cx)nD°N+6ݦ^p}tw;)Vv1[`o ^#_d`Ow񽀍 M{>戳; ˷ð{vAomq31E̐n ?֢fĹAQgTp-x ͠11&Ԥ洘ӢKV^Oyw s0 L0I"gI_>Gy"օ&N|H# MB,"g  뿍 ]3FI$aqɟt0/,!ӧgIzGے4<`WIkIWKq"M$)%9W7FƴꙺpJ}.Qq|D *+`}I }Ot7D$Z*ov7 &`I`RmU|la9/(CX)*d5z(Ԉ!N@Yb1b'Z nO;R)QǑM6؅S`*!S>uqCw 2^7>SzV] ) B&1KL)B9Nhyeg-O"Լ> l<_ni68_>|쮈/?Ǘ|Y jwoMbE|~#S=ژMy'bwl~jo2"ar*yHj;ӞU }J)ŏUEdK:8x]w۸}bt ZG-Z].ZU֩8Ɗ+*(0m(_%oVl:؉-6 n?+v}4zzȓ)2?G׿~=fyF8 أп]ð{?TuӜ@Cșb%L5+NB֒%' gY%I'.E!-7Qz3̚?SϚ]fYqr?F&Nj,1G?ܕU,Io :i=9K3IJzQҗii% bR{?1+|$P!WB:Tk+  FHn> EDo |-m"-)}]gf69=`3򨰟cK{2>k)x Z-ŏcSp, '%49r3U ]?۞l*hg9ώ)QBst&1G*cEsZ[l1e=gl(Ѥ^H̶FCaaR[-DdqJmq9Sx{d481/]) :#S\H8Z8Sǿ׃8A:i_IKSh_O7_ }Cg,>?co4c ĕ`D,AF@̺@W97-oA ^ .pzo 9IMhz ~Pr)MBMI=O̰"r"[X —vUjٵnoa@(Ma4`='{D T>~ |\z\`? 퓗}//Dr~U( ᇵ'fA}F${WDDƞ~W @ b^Re<JBaUgz߂X9%wo@oX2^x1f~TPB?,]x?ЏҁPw$'!W an+ Rʗ4^O~X2*~/u/o 3"i߫ύߐHH|ržGo+lwCy{v<`V`cP~}7KW{%^p/.E6_tRUbiҵ9fsUeVZ̶\@@K"EH&[T@D8FPZ )2y<|RB"+iB,Ct"PB*i#sX*4WPBHNS^*gBPD Âl&vs!PTah60?\ISڤSe#*) /btA;A-&Cw~^Wq1;C[".K)z)etڰo|r WTigMsf?sj,lwzδVpW`|ĆS{<@,gHqΒb_\% fQ oeXe*-]/bj /G*_KyRY_u?"2E*FR" RldjG#M,t`[Ô d,A,ě"__GVҽ<ݿ> rP*QK'Ll*$ѤcMaRStoDO?e O;c N]t C[bÖu/1V`?u }aG1&BY)l┡ v ԗ ӥ SSt } MJzyjB` Z眅aʁYrwiU9i\0 wg{X+АOo!GĨH*elIKV0{}!Л>8sHT^l 쏲x-p:##o`˶"{{". II NL ])THP ;Z5hRpA<e#?8Wv~{0뾨>m- (O_"`s(OB"}CH_ɘ5[;j(+vIa\戞{E^Y>YT~gc.Hվ+;j; زصaOc H<%caYHC:7cޗӟ?(]/{:wZٻκK;׭uA, Q%"xH 0&ťoyϩ.:O|Zvva{}׮^@]㫾9mbhDu'sv*C ZRE .F#9r*B L1j%ƆG&0+06!&5G!p"9Gayxa~uþV5w6ٳgҌe [gAkɑQ[pvJ,tE$du&X, -` ~ ?Wf;j:J@cچJHzYhRJ=F@9Hׁ`LܧxQ1@#4*P#HF*ңP"TN~~>8,\l^.a&GEP#XUTW(A^(`O<! &"ܠ'*9uTͤ±!n(gՍ.ki|.*vQQZ&lDoky9 L f$PտئuAH݅# 7`B Ʋ.>* h?{zEؽCBon6`{-wڀ쫶HC_lXG{1=ӱ11S ,NVRf./ r뗜L$JTIK1vP)P ,>c(5ք~;;=Oih{Hng]=Ƕ,c V7+"`vr0]GaB(_z3ӱPB伍q,c_YQmOblIޚ؁K$_KB-wc^Osk8NYݝRuʠZ퉑3i}~IG.R`-ӻ}t_uQ$ZbѫV6tvt,\g>sͺu=ؙ3&C FtU GjV7aN)p$m)#EfERF[Uf?|*(%F+#+a;@~ jo/2OW!#T)N :Lm!?,mL# P&](nSj)nV"ϧv8"8z|j\dC} VW/N5KeU"HLWT· p/ o]j͖)J&>=Z<#4G($i$ݦvME"^C=={ՔD/AI|놠Jh>B FhR%FYTZEH'HM+jQ`Va=Y(8"%kªv[xt$~x,F%TDwߣcԲMZHP_?(J] ?&({P.ށ@X6;~O)Bi(riwMڑ:%\ۆa%8Jpq"*EJdәRʒAz| (uu&uhrty/ gIN_?!,%;Y띋zoY{yJoDx &p1lAS)' 5VsKdю > ?\aM`^J0TBaX]5m cڒo.Y׼M{ ΅1\*`LcK;_4ew=O'}i^$ V@ws(ѠB ^Ni t Jc)FFpm\#z '[OKB;#o۪gGk޿9{Y[6b|aPupz7|M qW`)XtDA)ރq(pT@8^m${_B(@Jw@l~*Zr\'_"zv_勤ޝ")ե1G *ţ[iCq7Z\"^>r(q8-Gߦz Zh~7|W}V,]+RP:X:o, B  H$p(eϞyĿ a]h]K]L %{=KkT3Р#wxA{!sVo&zN^$};7x*^|eWh?q}s Wu|=ZW[30԰͌g\|r  $#1pI(辘k]x!O!y *.F\Fx4#Vgd) W~PAz07 YJSd=1AnKaGxZz@e?4y*xGIJ_SF9.!p;h?8_2/,eDp@_\WїyAٶ^ejʄ?01%PR4?E| D+n Ծ[犔q)uք Mg nQ ܉S%Tn\~ZB1`PƚbLTUJ+庬`.:|D~:uH7:a,uS.OTS_/U::#!u0fuEw' Py,OE>:gN`d]+Bԥ su3[DKPi ?HnIL`AH : E=1eФ%9ڭ % %z_U6U ]V?KlaY72$ڧiOMDEdU'UQ/8/#iBqtJXD($hW>Z#S/7O66? FI8Mijz\Gmi>Ӂ;ӓö#@}w 0yIC۲hVJ =W!2 .z]F|N0"ӂפ%ѐ{<]lcr Os;،sz`/X([Iq╰-ZR.4⠋Bm~U_>> K*%PBQ1- X,>Z{>P=7u:/;<`7}O:[wgyn.>uVpf7gߥtZHH|5|>}stLK_@_ȇk&!k"_:moNls-5XtdG>TfCZ"|>\CX k|ܵEkӴtqgwiq$mF ik_ ʵ-1ܱ=x \l.H\}AƸyiE-E!f60ǂmr>Ѡv1bpoFȡ!ШQ4Eh0ő{\հV #Oh?vII~1Et%zuF׺G🳮oDtV)dc kإ8HA' |,JA!sW u^~_[vyzpTCqcjb-K8H $`bCx3c'p-Zc=3GpġؙF}sv~-|3*r kY <_m1ő8"WQ׹_|2ᢕq]6A_Nw$s"k2^Ne\;29%F TYpqCprTM'X1|~kj-k!4??"_9`A4_Ҥ Y/C.MHd`$>?%^^u_cEpEث%v.6~ xqݱǫWX͝&@"_2/sRkgߗFm|>aχaHWJ> ky ECG*GԜC0m.4 ՅCp*CUG~'cjmOW KTZB+G#o~ZÉ\)] $BFXvHyTlI?B6wR8&΃ckkà]IR%ߚCr@-_'Wru Pf@TS} ZI X!{CGFe R5>yzkgC֡\U%-(xLa9ԑgNʞ.IM RxA|TtDHZe!(+΄KZ#z}N|hGہ/Iyط.I]͛qa\Ey. 账^m٭h5dic`KI ⨵hIz)A,GCw詂hFhɕaSl]u5c/Mc/vҥ^F|K>`^w)U0F1l+^co&j#hyh ;bd_7+ X#/ve_7|~t҂zx":[E g9f6sbyY.ebVM{\ + | r"A Dؿ5ce8{__=W|ݽ5wil"EW[~W$x~E鷿^U`֖ŋ;:ljl^8 U`?as6*Y-~3{v_E#C mԺ׮%gm (-Z89S5(]Os$%`m/Gcc-ĎT?}_ޛo{~nͧ.h{>9#{CIGY8R'G=Hme9>8hUJ:y,^YWp%˯WF07\-'uqŐ J_h9ZC=SuKA T X8+A'7^*WqD_x|,2 c;vc0N֣2_~X}I+,\]~5-W'i_,} kϊ?ŋ::im?<p[{s֖Рߍ9`aeqߖSq轣skz͟۵F.h$<4I')t?'ZUbSB )&Ѹgݶ2k{7vֵ.G\õF`C6Ft>3֩l 3Ev勬oڡ{f= 1R/ (0,=Zm} ţ/%U\1olF`nLxKZ/>i^֖9-0k6 -L!'J c$~a@$zN$pKlw [rӯ}9`^csE 474u.jM.-G@># łkJU^^$)RpPX]KsHqqrWTR”IxШ bU9ZX 5v庌,k"\A~@FVԶB=H?@2=b|ad Ձ*"JɹҖBG86i z8ȑ4ck+~Mzf`o͉gw.0vxu9W_c 0t7/iͥڛ{¦_)C:8^?u!Ūp ^n=t+<̕}BYܿzvMUgelq;]¯mm-Q߳mW9.JNׁJ9PSL¼CDEvoHHkAba2hPjGl'73կe_>*g- !h2lSQ$Nc/}s6x+[i*Mz'}MaqWN{jB t49(n@){+CWm3_ㅀe?ܒДba"N5a>%„xJ(M.1 szOo= @"ˋd)yJ)&9UUNJ)J۹tݒTHYR(/*3ƳKEʲLH$ $D++Xq x0sc2[nv,*zm[6?x>3|LS UVUXT\s9KS-vKێAUg >1`#3 *5XS\2ҠOSEze^:2XBr cr$ď\ċ| =^uXcJu[UNX^%Ƕm7G㲭qxnn_%RհO[%|"K\C9ܕ)st^΅K+9oi_Ӗ%HR1óX#RfHte c0EJa JteVh[X(͓L?2Q$#,RQz#(l @%^+ 'SuRZ%NfzQ:0p,mIIºK霏%;r7!;&C oZ?;YA]k5Fc,ː ҆,6eɚlȚnϐUsv,>-c{qzP^o8>~9o\9{kCpdE2@OVLU%0A1׏&`<%.v|0IzPr,n3aki"JW^33#FuC#N["==~-ɺz-f쫷$[q nێԟ9@="S[Z;ÃlU`f00_tD%!cYh_&"P`/@yhײ_$AkؕFxٌ?ٷExmcş+E_oe0|I ĿvU 6. l0C(IyZcz eaCqH]NWm(`Qf8a ]-УE>ED^9RjW;+o(Ql--rk1^,.񲔶te&N&Sӹ ؽM 0oݓ7ϗ A;J'%q~_uM-K){g=1` 8Xx';}WtH[k0cMfj|l}_Q`Z}A:걸(Ҟӊ> ̀l jd>]x'B݌GwWrٻxWJ,Ɠ~g|xEM/:5tl"6u`?:G\\T JK$87{DQE7I pۣ tNokjĿx7yw[pwϊ#I s(rdre4!|O@S[0wБ+Q"9 P\)/Ik$[2&<;1?&_m{ mRUFYIֳK\J\JYrn*ʩVď99c6[B* }ΔD X?;~`Gޟi[s?fy޼`A#1P7ja=˾/ XssH6"CoDHL斴jCA,0_-ݏ{tw!xol??)Dx_EE(]C1Hh*#\WfK ( ?S^`ǣsĻG|uN3K7gѠD|q>\Rh*^13v:~A`L"{c?w=t% 3NJzذz(Eojo Gx'17<%*HZ5$a :IHtIJ0vg!wͽ?gg|>~?}8c> ,߅#6ʂ dA{"T@p"a`~d}={YڹuKP cmnYŭN '-/>ǔ{4lA[QKgg,4}}vVV֪208 i"Ɗͳ2`|0I#y$瑏;Q`[ۯ}a.BԹ4ԄږBjM0Lנ9.h6`e.aC?c>Daׇ/Jvv'Ӈ,ݰow3Yw\&@|~HLJq8|[2ߎmVlKlc},o=yG,/?+=#NO`Ra/cJ>xي} ڠ.Hm4S Y(JKp hC6iѕߢ dц"G KXj-fԠh? %_3+n~PgiR!:ЉK/ JV^]GoT>ÕH',ǒz?ǀXq`2Gt/Ε'w8C˸aWO7bS)4\a(7%-^ia) B {% =g~x'?';?Φp}걀s趥 .=Zڼ;h/߆@zr͖ϝ&O8*uirz9v(GHyT` - RE_>Gz^If8EΚ(aHR\\]=HO `>sv`kss{Dq\\,y>F1)dBIn)J*7HtbG5$ݯ#,:f&q'fc䫚8MԐul1v<; 0 OiT'dvY{amOv' O;I`?_Mz ،"u~=nGù{Xѕ)7QC_}D#}㗶sQNl|ZzXo?֫kZ { rÍ`}`Z*%Y'1kc){迏^fV[HHkVVOAi8|b%8ILB T:P* Xfi+j>ju;‰!p=S z ߞ&N< 졧cM+n~@=o6=؂l^ )VGTAƷQ%2e*CRTu:^)X_A@7t+V'cߘw D6KW<l3nx`=g}صi4|tYiqa/ACYDq=4ӰO޺d8Y`˟v ^o= K?7^gT'}ⴴcAM<3'̀glyJ4putʹӽiawv.~Hsӑ#A7lF?GObCx0\D?>Gkۺ$`} /P4@[ƌ<c,a}eO":|.=ןK81MZ0Lmo>iQߤl rsa@Hzڠ%BRZGׇ$#VL^ܖInI^nj.?B"W+j$Q85"+}jCix $:gKdz y>k?N;-~vO'?ݮC,ߝ w:5zR4hjEOڣ]xWTk- w]?ԓv voCxmet{}ABf hXͧ[~`w Xal4G2.3mP,)Q EYR#zs,®!>Id,CZk^B*F,UU=@~|=dhXe1St9`ކC!4YՁJ\K Ԥ7dI&uCmTK}򾦍7Ϩt.%9ru2e(mŭx= ` ɷr: Vs[5~F$TcbQнkGۋ_\EO^?<;vysQܾ볅^H_(7ۛ4+!AO.FÖxsԎ6udj`E>oT#}Q /7n64<9`ٚCV*$g sz$jlۙcv 석 ~챟{gMqA7ힳTgÚ;mm`L,m "=NU;@\yJTS:o,'\ T ]D (i5:q5<[z}d[Z}-jmKV!p,ޠct65%b(fF=AIJkT9},f>K5f 4p\3Y|lG^v-u >BNIȧxFW!׺ 8.up0eHk\\hueFX)p ̶⿰ԟ-_JGi6ɖ"mC s ;؅l*'H> v_2A_ $9,^Obwm{<(ui&gaWEZ$),Rœv´dMKI~ C3vr{%/g3' W#.Ոo}o\9&B-LLt~LՅ0x~'&un} ׀yW^E_]/mo7/=oR^1zDy>oH28ښDgĒ0s}ƚ3SiLe`wnP6Y5 |mTR9-g7oVeC0?YN~O4`ؘmvlT\3(5qv!{?Si ϺfGImX^t AW? 8+oWW%Fb6#6鷌>A`^o]omnw o!n~lЋzstt?S/Kׂ_ހvxH ~@eU0K`>OEi4y'G vV+( Иp-*!7$[ƽ7uaf h]=,;7tI[Ra}'\B6G^a8[7>њN579[@vh{+*Cx9ezp'[|^sQ˲Ѓжvx4쯹D.7H:/A/幞g;DM OOmDpokom`+av;kW~+#E]zF2dcɍN(>RT@#Q"^u'ww/HaEf'x: 뽡B/u્a0Hf oøtNv "q =w%tw6Nl;NtT7v/e 3!>PPE6{Ώ|uK?w:˾ 8_T^ g^!®'ǿsڻvͻnzحĿww~~VoctΙQޜa 7ưW"[#PHAGZ3(xCDiK(tJKPa0`&rCco^]K|׷㹠ϥaDg ԩmt6:a h:Xi[c|Kr^<;$LA{U@L9/qz}`^z؛Gx^7[7M'w!"!\tzZ2QcH2:*6c(0 -\ȶ5v5~W'_[˄w2}o,jij_>o(|V8'* Wa+~l(A G9$D\=J@+kRq\$XP-f~UA2|A.|H{E-ɀV*ҨIQXFl/m^?Ha|O|9={E ;vưfdfANׁ;,}F>6L;Hu>E(5ї>m~*;K}ai UHT%DI4A*0  HsOiVʘxA(&˳yjq0ײ;7ǹO/l'V'Ti_w75 Hݫ9;?n^,Kp\YRT,;cit9ŒŒaYbkIbc _jlLɽyכ|41j~' $ B|E#3ٱPa$1ܳ\0y~tAlplacb F I[1$ ͊rJQUXb\Yu>i`23iY1 똹ȿ`pg}A,iδ֑:GݎT ~勎s=1퍞VD"Tm P=/hſg48C~'#_2^ft_/ϫW~Kgи|~d]2-Eb󭪼Q`w@|ܐPn^(6*Ufytfw`א?]+^aFm|} j_Ѽ/hԿ+~+^y믄^ D:Ón]jf%r+MFϳ$`C6&Q [ոΓ^eWj{;qu~'dad"Rb=mF2,Y$X9!s[BX1iw]^@߶15F_~-ﯯt׃4ݼ-]yZU?y:'x >y%#DԛTLO:.2*#!MɤSd ugZhG%Ŏi]YpA~}",A$FY` zߟ{ͯ3!?~?>u3S99|C`tcfaiٺnL lDkcB"K( xcRp7 F{`7BF@o|y{WG2dUuѻ"(\ND,a#d 7ejq\+< vp2+{"k F`DH'zxMMڄcu8Vs=F,Fi53  !Hȉ.ï0e?⽗NGy8g7MFd4͐yot-zt޹c4okiޖ0+T&u;"MeT[|w雌|{F߀ QVo[bVh>·Uy-[wG[QtFaZk9_`k1\#+O !2%7Fk#U.8t!|̐Ҵ\P}:*9g~ʀ<8 G<1WD9cy _b4K9lEZK͊ q er8˜w^^+=!b~]}Tڍ88(B:ntKzphj[ŧ2~-\<Y@OxDƙCUz7Ka5>WiyllniljNޚko1<94|Z6zG->W_Yg-==MԚkt__P5᰾*Ooep+a費vٷ\Küe6}ϵ8{]\"?u t=׃wkr.#[$WR7W^M!^5J73&vpfl:dι6tSbDq 25_bdɍ! nH&%Kq#ԳdCkΛ?MP ^ [Kz_Ʀǰ1/O{#1X9&266dq*À}ȈZ5"6""-xL$i0x-Z84b?7Y+rA !Sbʨi mA1Cِ1`cȧ !H!) );-i4MG*Y*yDORJMBN}TC#m7V}_&89No4Ӄ}?ۮ6;߂CǠwS1T%dRVldp3bLl9QNhL()6(7<:wY'.Vxwφz˞D*a\*A:վJy=̟(, e R(DJ}m٥%96W r9Qr<(Z"# !lz`>k࣌~ &iYff"8[#p $ *4t;>FsD鈀z"P1zH?/uL;zabwT:EFdzFIi˰E:GrJ rUΗ;?eZW_5cc:!S3ypmt}^Wu`=r`Kv5T4~mti=R#łYHWkܐB,GB(UG<:ގ5 x̗P" G_ftK"b7F_6EC XpRYc]k&j4_?u0L#MWI,Q!R0yF ei',!L7^@w<߼d dBzvI[4ۛw,^S>.l2@'QX1i#3n#?.cB!pK{is\"8_ثg Ս!񐾹 PgD@Qҟ<9A"k}Wb#kNnd_cE/&F9 Hzg梏i~-ӦpF%#Ha3 z7د"HlKr|27 _ƊM=k۔TD<0jjh\폵 FƿR>@-̻9՞b48b|!&L2+s짘*  MO^N^O.>ں Yw2_>,s;DBJ ɝ^UUiеiaߥ@['/\V.c]uF_Hgվib]̽U|MXƝ-йu! @e^pu4לEE:n 1>j+iC~dQe=`f41!, "JZ6yLU˼*ʳ?=J3C|W+ )+TɆ)+sN J&#s1"-a0yavBGչWO8- ں]1ޞO]&ԁo&풾P (CCLD_RGʒ:-Ћ3|uf%OA0X[Hgz㼀'JCyP ɀeB o=In%&t#k |e} er|ñv$ؓL(zKKh"ŢiOR0(*,˘22첐/ث#ڏji%,QҸb#kE7/ʢrapL#u rqLql;SWLї(*Z_/qFxFӊ(lhW+>FQP!/^*Zl%!}AU" c%Yk120 D<ň P|B5ΞPtG+HUVUuY|mڼy{?SƷM;c1f=]E 6K!N$ -҈UGw(p CTk8u{2Q*w`26NuxH>M:Ҿ0hao۷.][;^,͢X0ޒ8[LѮ|SX`^Z6hΛ*b۳4:TTίYq@9wtwtoڲiWoaYCFd±b&HߣUjȔN~R3 }2T#Z* u׀. ?"gϖ /7cGUl#kQ-~[Gn][;آq41fU]YV uk' l3Vhҧt-Z>,jo/_ֲg_<ʹ-mM3}nZӮ^A?1eY4Y:⌲Mdaܲf<ÎؖbJmf2qp/VR.Lđ^{Qp\ _;IrSUG|Y>Tq$\>)[3k4W1Cʽ4/v3&}F)3Z1#cUgYe&bӴ9((҈ɑKQ̥ D;,c,'~BO[p+Ao `DpnsvI|{Rw3;ڃϳJVeWrvF){!8m Cĸo~/#B9y#@w>蓜7Q6[[eFx?'芊H$]$E2ذ8*.}Xm83L&^Vە=qdPteA},us6盺!Z{7ڍ=sb8"0!Ҽ=k32 GƏM]<r$u24,#T5}k6ym<@ "3׾1iT.5p>>#AH[#Al8^g(W XopnpܮpvTq(@ q.5Ղ>Z༳9 {Gn|?n'P~4=Clb[Ŷ?nYx"pp,c8B>6BCdl#Czm.㘄S&32-SYP?*0DžOF ;d.>q֛# 2KqaX|2b &7h~EA;>\˛w|)ÖZ"fmq~7]6tp4yIOO>ll߲qY[Uê K鈨AܪV.ȀqX㌏ q4&ĹP_5T5)YʫU+=%lSK4M=p<{y8ՎM|{x^eJxR1)=ܥ?YgkfQ)%$׾6T%Ak ۽cAblwM3.hsyAêuKs^$#/g$;&g/~r:28ÁJDQxd/W3q/3\aHҒfwF752.ej:uC?tm igG:;ĨnÄCHG|#- ?E#\f#7:qǃk|_4~y{o}l҇#˟&7~tE%H"xt|p2 g:3DMwB/'N]3! G'c<6GcElϪHB:`f-SZ͸k{%gd^ )x&>S_ /5n 訟ꉠ&gu[w}t~;/@Uq;ʾG>%/:v2Q8Ӌǵ1dwngqtRg;4"HxHw\Ĕz/OXp!ai1>ND,7sI$=@ߟ?&|Wst Qť<|t}4΋gMnU3:f&8S\ a-''n }r8/|zr@ѻU GOF[-8c cJH~}).ER5-쳌4jDC3Oj\Rc/M 񦧂2SAUSCSOMZ| ]dtȮAKǶcNķ/Rfc ئ Y?j\O_۩P*b'mרđIˆtbr!-b9ѾabNop=-Ľih4Ўi><;:(s, <_" qlZ(OtPl:xzȿAgM->^UVu7u/j˫ֲw{zrp=[M=ɡ/8;3\LC3Az~}oRh>6ojnܬ:s9k89kQŻW8$^T:4_c7%te>-ۄT2JflCP;ZYY~ys(94n v`/~:G=#s reAࡐI ˫ bd ,V+U.rt2@CbdT qyH%PTL\*$i1>bF=18LlW_TFF?2]Q ,"\W"衢9Юp}zd6藳A7>t{[wKg[S븎ֱ7Z:wt.ٝ13*[$ ɋy> P}gnAǹ%p.?6):eQ42F̰U5*KyJA.GI'Đ͒fʒYPi6ֱκ9_1~iNH9}W95y48[u5X݊q>bt p3 *5yxe yb}5'WzPi=>cl}n5\U;iU]s+LGP8*䣷nICݑ@}8v<}y_~p> m- Ng'z`='@.,ˑ, _σ?P{vccYiQ! C}Bfqᇉ w^81y! |=Nښ[)sx5_6B/|o5?\4|kG/ 9W'&Wg߈ҴYeo:^f~g!E b0 q˱<8Fl]&GrqTQeLr_2(P7DPʒGڳ"[Q7.cgelY&PP~k ƨB P!"9n<ЗZ @/-3활]S6bV/arSakk]D LĆg*3c5,H0/tعVe5 naH?J*<+OOwWoqLQU%Iؗ6d˂aX'hNqnݳO{g@G쬰c=d]4OzܻxKR.L#?l iGl3t -ʻ!zsK?;k:A7M}g^ۯ?ri-zKYԡOTİ6/Z3Zvh9mi"жEBz. n/9 =[ڱu$]ѦLAH,ET3F=8O, Ǖ}h9٣瀒AΜ׉^o2<"Ȟ!g*WMF=c =oA`CaдeKtÁo#;$> aC{5ߌ>v ۗ$e{{n+-dodmDJx}}(>P8c}!B߅|!eVDqXZ9dYVj;uv@_ O/_s Y EɪUNo\5/VLhXѲtF1<6G5UyA@ׯݐU_a< fP:~-0qT*^ist ewvVCw ׯr5y5hu>=~w6UQ0o;Mphك3 Մ QQ ϋDeaW+L$XNLD3}d:a|Ei|z[5mk@kB>\&c=پp<]Զ}炦&50X\r#%D DP{[ʛk@ֹȹ!/:I-mu/G5oEsn0V,CPHC@Bi,ҩfI.ۊ(g_1xp "UqNC|On\qڀc?a-XϽ6lݎ>~ӹ0SdOPKiˠMϋ ǫI ga|$#*L)*L:ju!C,ciwD_G׆=Z!}ry]uI$?wծk+AQ_V\̃)CԲP iDrT#r[dy1 db (*1H>72%{i^,P:E͇B>y9/G!YӿfS۪2ټWo  HiI39)1cQI'L/t:?[n=A??;矞Ζ@X훌1c,bP7TȽ < ߝy~q @+XZt -{ڻ|<3#C)cӪ߾!70]% H@% d'`11dwR#TzO-߷p~$6`}"o`H> %umE޿=Gt+ZzAflm)޽z[gK:S6Τe [cdI4-1-W&F=7@6y@}zsQ܅y,=*1w l,DUW鄈*=D}5S) 4~hҦOY>xn<ϝ@;&yx8ᙒ;3tsA+AC< |<}<~͠_5;S[W j_?E= COֿ[9nlmeA v 6ݝDr:h}ѬeGRH C7d4u57PBkj`c] _ SKTƶ&i pn95zV7i;tV7sQ(+ˊ"HA" jR3}^1O>uE([<EJ$qYu™:3UB u Y6a86[2YJ(:!<\zy<\rپ'WUB&A x: A7oݽ=J]h:V7likǩKs; fYdb]t,!k$aV4vDa8!~ ؕ4+t$d2D5b ÔGT`2 sÔ0?C9W[#@deS;@1p0HހnŘ헴tcVskSW޵*P{>?cW3}.=vhԖF-_У"%X`l[l2كT1)?œo;7neo0Y)b㬬cIS0d~76p 3cj̑0J% 2S cwSqW?uaԷd9?#whA5IM?v!^i_aoX׿5okk5Ow]37g9ߏeycM3 i pn.6 M9y͑1mf`Kaq)3ѵ>C> )'4Q:l%b#A2W5PwO[8NOy=l?uj5BEy&QƵ=uU;vyw|X\[ j

Pj_oľׄ}}e —]|w08ʴ=BT09~T}!޻~кK>DœMzԸkNݬar0[m'dG̘=}Č=f9VJdJjo+qT:nվ_g:Fս]*6Fy 6[OSS^CZ$*#!ocW^&U%[٤Ӿfw|ߤ fM5`1v6њttH4{Í\%qxݍZ1۲QZa;qQu$3H0w ot},y`Vb?`Z3ǐr:7eaBSSzpz37YQ>~4ga+ng= v|L^"L^CA=o\ 켡-7{ 8!llnqצ&l4yqux?<*k9w]Utn:+ Ё@*GQ$@XHb: 2ꋊ;(nʌ0(8::SnRq']]u9޳s1?6@YڰAJ؎aBa9"ő 9SpTngqQQHB?i!_r:OG2Msz2׫Z+1YdTao *-qcD\mȃ\k [|t$NGq_v8Es2IVB+RqF8Z@ $+`l?t?҆`tVS0 0JeKחKnSF]yb$#_:/ RZd%N^*L .x6gb$;#y- M |; >v&ԙHJ ͚Ҩww-кZw o/ EVL#gƑOBc(FȅD8P%(L rTӐq!RdS{@|o^H+ql LaꭨE^ڻ/b3qV(o< ɸL:+QgwO[No*kiu1e Cx#o ~m7p<+.Eb- , wO{\'w >ڳ=}ytfX>RPb=1ttjɗ (LwiKܻYp?e}ݫo-Ui4LPL⒐}tNv?_8p6g#}vg]tOs}N@sO +&)p,DFtjH Nq_SpɂY`Բe8=%Z`Vs,yV0ρL'|2OB._γMːiCeH>Xnp-6Nj <[6yvxqM yVa߇)`.tbIX}(?9s|Nsp ne.;o>ہ|L3l@J95 ݀6$NG~ˑL\#4giS4d 3ݡ&b"gS76H6w-pH៷+ܷ">C~9M'\ujK̬YgLlQK7íQ=l:g= Y#G5h-X)h90H"S* U5,=/7_QWXjOF*R3$hyfu7E= DxBDHa ]5ka衊9PH;?\`8 x1ѥy^5vyX#]p~o]r{ݑrהOHM;Uh|2H?6p->?.=ɺl;?kAҼkzt3NX4E3[f1,b:6$5`?9HmdsB3Rȿ5x>Ct<X-:7[+W )-{a1" 0 @zў]` OJS+`qߖsY!(7me63JB~> %ۛ2 | \d zA_.D1uv}?ښ75.GxIM[/3{'?"L [sm5ߋCyHF_䠋Cx&#.qyz̶YfwR)5(4agc<[.Fb$gióia{yn)OR3+4od/A2$/ 9< n;"'Plڑׇ $eikF.jrt0MH +p=O3K|¥HμɲKC8ɽ"yҮrCߨaq٦tPJ[$kdTZ"uCc0N tA(P:ȑZ/ yeH/C2,״wُE}Euy\V Z1q`@f,> ח!ɿ<ˑ\u9.pYg: gi5LfGr9T;|Ӭ9b885:crJ}/Iɭ7!}cyǟ>3V݂[Ѻ[݂VD±Q>"ĘJ!1Qc,ѹX8=@ >Էu,p1řk ]ct3N4\v !1W 9W 9 $=69iƼإ5~hEj60yMsumd0 ̨E΂}>WJ$W"seWteǂ- 4w 8 NSf %D0!| $&0Jo1"=J_Dz::2N?Y(BeP\R:n9 d@y{JHDI.UӆDu_mO_둼r}j!.PL-֮j4\N}=Ju2(b;u% ЋDOԿyǣKu4Ő::LtFwm!~ ɢېt[2Ӿ t^.x+I$r^~o˶(#|d\o o=Hׇp]ɳ둼>7ݏ!/ɂeܑtU8L)k*> zh3? ${EƔȱhz(wUB9 Tc"%D, ]etoU| QkfgtuvW&aoSوKKߢ;H(!6ލ#4|U?DOü.׳Ze@ !܀ H6l?v$gߎn:R}Z5Θ3%pr-6.{E݇&9߰Ho̷1w16&;(0Øp0%*c^&3z"EC)KP.|hq]],V[ 0_a)zpk^J O#'铵,fZSܖۧFyɷ3:67"&Ӳ?O5:58 N$DrgwX}'Dr]cvM7ٰW=Njok\Ku/9h2Lsҋ\2L r}Q(BF%蝏q(jrw L+滐.$o:֓>o U_KsM'9LWZc@ c1 ǒGRh!o_ pa~&WdJb Q P^.rUaZQO8F -UPn2Op~\cy;(5(ZQ)k3_d`m\bF͞wߍ䴻yn$ލɻ:vxO Gлb01I3VXbyi^-`+y#ƥYsBf#A:u 'k=H1x- w0Ns`?)aʱaJ?cNF ,Ax'ݕwC[#|%mC%%EuI+=-W-)˃rqLAI̥ީ8:X7x"|/bŽHnxw:Z {Zkm Zu?'Z*` K)#e?Pm* aS!<* eZ] Hݕ>kgS4mjM~@DZ;+3eK>O=#q=O[\Iq- !"|do˷H] >$W܇BqItfɌ= to]3Hy@,<መ˓/,UaMő[ 0*_GqB8}Hg(!CEbI_CBC}Go, >ݏ\^4,lܬwy`1)&wn~gY~ɰ~$ztf>ry:My&Ô_L) S(0K& |o.-OD y/Gh8=먽w':7<Ͷ\  ~!9ᡀ[?M93[f+uBbKzB]]-?  #vL9%WBrMYFb>* 4e 8T)byhc4T v*l0È>ӊx9/UwW)}6!g:kW6!>o=[Z230 fꋸuP)>SKrTz4؝[iFTQywXm(]o<&c"IC"r/t0u1A[Dr0$t^IPŒmY葇<0뇑A|+Kï:P?̗G#B4CwL PKJʒ(DחxQ`)^l%~i4/ \p]Ar#!~LG8F2bi_Nq 7utJtL f ` =o19Ynߣ9Q$}ɒGC}4gv~ f, 5s$Wdh/eg1hYqTx̊ڬjє8_sfiQR8A_Ҡg)C|_یHf!K/| IHb nUF/\̚\|Tw"5c~"`rum8ƚo>- тXS/? ƭbdYaY ) "V<>zl@۲d &l:a/8g+REbG"*1 x}}`X 1@i }``xX玷ՏsxD#z9oNa;߯%ut7E&udEq,F>IZSpi@SO Þ',{Os׼[hm?jKS~h:㣡!5>[d{ D1zUx$C :ǑRgeӁ,9u2JѦ_dw=H>7I$<81T(xOHK[z^Ź~|<|c*,/==A81q"9Ëx_އK*űLq"=1]X.8?,MDyoˤŃ@`y$u&_zP:r,_晴XSI^ GXz'yN4i|aU2NO2˄ǖxi+gSd9\o[g$d͟N붴 l},R3\B|+suN]UkC"9f+!\mEV$om|>\Igfe^Y~-Sr N&Ô u2KT3Jx,Vpm]U*(30&%)PI󪤉FdL 8u,%LBsX$ *mvtzPP\w+y&oA$=7,cErɳfݤ[ݢ95 ӠHI`u[E_#y;AJIJNXptWlua=o+GxV_rA8+||(hVBeB$ρy-be.$BFdzD ({Yg6$!9q[؟mCr6$l$=̞2A0\ˑuj7 w`b8xTY]sG[pmuI{asӁ!J0tNfmɄHղ)ۑ=7^^mMM Zs`6%h [;p#Ixmínd׮=$B<琌{.GN>x/5}U3 Nfl`ueko2|$ - 2MJl4\/<琼H< akUOÇNd_-2(Rs55&$۫R/X1F0 XFI&YUQ(%x,+GY/>/gOR-qhPN g{ br}K4\;=+ܣŒo@wx}=yHF_开$$B}!r^[o|m/1 jP'g4o; k$wdSw^DrHy?wV-y[SSs{S“vC֟R<1KE-"ںMhsTy%u[nE mP&udp1K<%d2vo伎c툋u E\48Fc ~u ;?/E$_ siןݩ#ԑkrUG$Ro_B%$si_Og“.h^GAyI$55U6#"AZĮ{!C_F2e$_^2U/# =A'6AuWA-#{Q=%nC&m()͌}b F{s{ $ȿoi?/]׹isQ==df`+BFɲ_hm*11&tpxIJE]BNabX*O} 99eƽO} k#{$w 9lGύ;@rifvocM ӠP_t`d*-Jŕq[/ itJUR7>og~ځI_CN+[uijmkvIs۳p2Ly7WRs$r8wb%_tc ]ΝFϷ`b|oʓ_:B %,tQ)W$l,DJC6dR=|ULMiBf`Z\<,.Y\mXaGȒt+<~.6N0TJM`!s}}^ V+H_Ar+Ἱ^/angQYtոPo@h]~qOjDrUOu+9%`#<.!@oQsdWzɘWC<6ǽ[vǃxLkk2f0eY s,B0~!!3%!#ON j*O_EE7˼dkH~Zn>n^JsՠA]@:Y](;SWkk5nMY7mtF0Auu!asGBH΂c +khQ(t0p_CkHy-ב\:_׵sYkx&+RsэoFcYGQA>yN,[pUuR;h$0eyA+_ql "$8EŁ>+ֱ%|}S-.KTs(iZ\kwŹ4\u #5jX:%8vf7B@7t//4#|u>-hC;}2]y Ⱦ&;.xÍfwHd!ܣ o5N WgPb8 5l<1U:u*ElͰ^DۉdpWd[H~+k2ß{ȧjئrjy9io1oAc`GΓyr*rGa 鬑Nt޸lP6S;'s,T4KD\˟uV .ˈ3^EhBtPnhow ;Ɓ SCbH7K*- $2dibYz,IV`,GiD>?Ժαrm"~e( ߇i}h_5$-TiL0Vח7Zz*w2].rP,t-gEydXGNpxl182 ˑ=ƒ2Op^q[y ;.S z9ɩQ,71GP̦ʲjp VN1ߜNXb>8uD9I߱e&yoķ6 o㕾OgS}=yF`w.q_gw"C0VDRDQ£Yc/,NJG jEH{2y ̦)e[NlSw'L9T2l&lSzy uQ75wB߽wBwE2݀>S:̢\ 1RGQl|hŷjۊKS+M'Zk\'}}uK|2aO`P@KEҝ9=(5Y ' ݬo".W ߾ɛU?kݕN=>|Y?%0<;4@xĠ}Q`3($"| Mg٤LRw7$mK(ݳO'nZ3 7CpWDS+-J4jEc*[yӳֱ]+|/ԓz $~8{1#iyޡ//y֚aZ( a3""D2@wIaOQ@ɫ JA}R~<*,AcE)>}Yc|w󟼏d!u #?mzϺdGVw!5:ex!sPYT):#?aLamڏ0xxuz(tgtN1pm0䋥!ɉpg#boy9\úm[ˌ}\=t$XԴzP뢅s,h</ndzmu J(7Ƿ(RZp1$A*}`QsJĨua(SJ2) w> Q*2_q`~lY%9XoSa`i9Snʔ(q9xT9{lgŠIj$z|pީjT+Y)1RpHKj,&|-SQ~r82<ؘdwD[rvY yu5sݲ~p@5˓yMb#(\t1YSU! ceImiq ^9WEGm[I0KUѳoq,9JGtK֙qoj~ 8s1/B:N ɯ>CrgYq;m1w`Gc:ɮzLGȎ+ YlY3$@2!Dr?燾i1oV1)W0F0xL%e9_Xh +@Qz-@ F2L(@&TJa|Ez=:*[Xo/;_bUȭ~y3XSܧdm oM/纍*}_ȵ #G,l``t0eqGخ6*EʢqܟyGD¿saYX(< =&i w#2hG iRrʀ 0s{4kmA0 MgD+R@~>ۨ7I}MR$=!OF Yt7En_ɩ:J#o-ߘeh~/e8ɀ=Hۓ-qA{^7~:P '+VE%)OD1 F>F($V}?*Q:+K9yG*8ʨ9CTJq@Q^o-<0R>ҺbxB^<"ېcC]n8Mm9{gɻwPyc4w,FCR yd!t TgriP`Ȥ(FѲ7ay<չ}a0Ǹ#J\.@9eDAp^6w;$D3q~,zjs~"5sɿB27F0u}iX(~Y A,lBIReX:Cn5[ q4AH=}p'dбɬ<( a ay ^fw|0$~xȒTZ\ZY`Tq="/t|}^Rt1[yakJ6J!OJ^"ftoUKLB ]@x'硲"@$j}u@;XdGq2!8 %OO! i5h8y(( B EJF#%0r=ƙ5MʭA3u=Y -FLG j`QEg!(XFU *o8xH9\ [2)ȾtfL2Ky4QW㋥= _8DBz~ngSO%ryX%gEr6$zbz)L,j,'aG& &}f'O:Q"3Dկ{=q믆#  #x }~΀W$Ү 0-7[DvCpCDt޿hvS>c(֋ނU]Q0-Sqec*QIbUR8z /sCO|g"ž,,Ex0ǣ~Kn1 ߀DSSFe D@*VZT^eìMf-Y;Y37+Hhp)VNu\J|Wp#zG<% Zޠ[zmݰww?Gqף@%7*%u¶ xgH -9O`̲\+qj5*Ȳ2EȢǬ=ED\\7ᝌQFVp^M ri_L隍_ۗ zxȸG?`tE +F-$p¶M/DͦU2|p'"3-AД Xu"}:,?'3W fEkڧp#xk<4ъRS#x,&D?q@,ɪLWX&38~S*_,A#2 }LU8LNC ף1se%p,ILk4"dHL*Ԛb$ Iǚ) eJ0jSM%҂R%zobqP#83]\/~q23'CHO="S^|81Wo{_w3Z/_޷Mm԰j5|ը:aLD2\Mk\i]iӣccת=CpMઋ (zE~`|=N+lDU;G߫!\F_K[ʠ,G{Zz7volƴԋw*'iDjV.y2yTkW<b:'[%%$ύ!()'x%=]KĮ/Q~iʟS <pYT@pBR)9ڰ(P\Lwr1xBwO1 a:~SxdH]p"5gٞ}=F c ~6Ѻ۱z<]]-=ݝC go rj}m+*,A|g?GlF_sEuTTUDjW|4wپ%1TB8VEr߫b7W(!a}OEgDV'TB'x뾅T&Z\'Mk6Ѝc08}!t,ZӷC{^O'xz}ceww$_Yk^4|F֋KE3^TRP&:h+FM4Шj7LIibR%J1Yu5[YYޟ-HEiZȩ49T巖R ʓP"hLn0UL< Д{*-TOO2ʗPa Iq%Q)K%b[tTaMd$D$-$&eNA)˷ۼqɲཡۊw 2A{sa~G%U#h Q(_2%Lҥ'K!9^!='Dr' _>!7C:xO;\?ݠ^4lH _5k0C_X#OC ["<6L"Dpڥ/xxrb1͇UXɪUȔ܊'ICk#SO`xkkY~֩+}Ib V%J1VڏT,]1j@}] .n (l 8at.~w=]tuy?/5NYw ˂aNͥ|sZgo3d}Ϳ;qSr (W kXiu4F߂W_t!?o xdڂ?>}@C\^߾vRGD[usu'cƫO11+&rPAď+[$*ץQ:%" ~eGx'p f  wFCԈ?Jw!}rG[7w{>DkMs(qRa!'0NO2iN:S 4|vq2*xŁ k1%%V1fW Ԓ^7w\pǘΓ1eYrDF--"yS0BN L ŌG Q(c2_(_b,1s/#t_.4gx ̊Aވ.b~/5αvN;F\#k޻|݁k_?%<\˛6]&D&ntt\4.i8 cǺeMs?6.iB㬦]Ԥt2.Ti@,5.a "ArxL,Ja?Qr+DAniɄ?"vHhr[K$s"p o`cD HƈM4lh]z5qY\[byrhXMZ{\rݤcP G@^VSDzD:~'F|PG,rQkهymIu]ۧ@-FPJ˄, I pC?~o5D`B3N ZFWk?ɣ_kKAoI\Kuw xjRDL7;hJI@3$)4Ɔ.iN|6#Ĉ[f~y䔜y~ O!x+ϲy̞7:<7›c?vR5z"0~.21%bq ,P-:C$&BwP=7/+>=^'(?:5->+Y{X2Z/kYcT$zrq xI"VO0\*|I\*{B.t|O X@ay!^=AywbQGc5XKu\Ku7T={q)7+gʓGFLZ^&2luoJzZ7%}_:D83,c)01F2tҪ*6M%к/_Ok6x\8YYMcٴs#0 %:lLLusy#kI$I8Wji+=1a0fSpOh>JS >}j^Hеඅ0˷|H?#ǁM{xۼ~l:ݱrӜt07-06-oLFc*&'gF:U,+.{^ >Ƹd3L_"d"-uG$FZ:>KYiͲSa 󧅴(loXd|rXytfd%alhtpL{4h_L=<׆"5[A?Zo^Dp";EԝF Zm־nߏo~ȯogߤ?=["@ޘB]7Ƣx"uvt:K9)t>o o(Nq,w5 4Pܭ4ҳZYD1bȯ/5l Ϟ MX9 "##"`QR$5o =*B ФZGL<}_ bAKO''y#8eK1:?SJד8@'(_דK c7>( ֆD~rRU i*)3R"* c%R2dZSX)$mEDDqsz1a[W?~K+Q'b4pbtv Ӆ }O+<nlba8f[d&Ist %>rM! QcXjZ.5͗s70tQqe$9Covb]Loc -b \a _@3_y1’ńfiK"x.XB~ %?e ]K>$h ב}\m}neMFgj]b/y2 A[4OCm/BPŜG,([J0v)Att-9F^m~9p@́v o'(Y.vR;ܳ4_? ;p9?2O GS4Xn2N\eA_ov|8};ZGТ-zu{cK,x\P]]褝t92Q1hB.i|dEYbCwšιH2FyOgD|s XtF3wg._:Ƽj.-]~JWկ/xU}FRy ^wfcZh6UUK&\k² P\6rt݃ôAWd11FOd)Y#L q, ~.s6}2B>~<n{< ?|9cLcRH:Q+u9abI0 cx,/v"̞}uXWaEh$"C}u熵Wk>_ٱ*\˫^)`j G_on>}coGAVU4Q4H4&3=6U AkV:n)ӖtLxVsqR*p Nr-l+imY]A*hUJC5} x@C#~jWN'ڔǑztfOKW_`Tx,r?5R(52[sǺ.YP)DdG㈙.$h5Z\Xb A^м2H x07 hqz>+=g|e@w Aג'2t*r5FSz㧶_~-kZVAn>4F%8iN[%nS<cGʅNA 2z[Z=]X8B[@knSMLE_jlkӉDRfi”&f3:_; qb~U`vWs)0[:-H#ނwؼZ8lOW;a{W*aPV:1E7$]jt_~v #޻\-B0?Įy rYpp5C|w֌N'C0?o~2'9?I ʧ[{[|X D-1pN=^v.A=?Գ&摕qkwWkK/׌5,hoYufH;(g_\ލ0CIЌרI(,L" B?hĺYX,-bJIK1CB(̠y˄lg]SS19V4QM[V48Nz=2. { s ft~\uy^DyA(,^ӇSO{Vtk* kp 5DsÚK?mo-Uϊn3ۂGI`5j K@G7 隈`YK FpV j ayUHo {/ܲ[ OYDDwzL-OᛡWސQ<^K? W6 {vB NN[Xs;Q $d@ь OJ#GWGK1@]j`ˈqېAk6ʬ1F^,"{[_Z"|+ _A \VzߺȾz:Ϭ#{]l;?xu;D9?>yEj% qVc"A2q:᱃W!k6V DC"UuiQJ`}k϶֠;,;#_xo&]/ 9JtZ+$s=&r ֈm5m|.j#-hy7<a<qzH~='2,yvE7鴘?w($:8=b,AWh,5RI2O /tdK~E<_ 9R,*!'ѿ'@/‡>e',nsvoNGGǛ}C?]h(g'8o}ħjrlYkIjLy5FKH)f2[ijSjPm{cA 'o 8mY##N:96?H5b ?u =+v*B@K\\Z` Qc=񗡿KEQ̽;TqxC4~ τ0}|9neDYSh2DGB,]52RCFZl8vcѻҍWl]a9hY7:ϫ]m][};yHB@ϓ8gd$72,hLQ{rĐtD:A0#vaz.lhz{0Xw+u^ O3Ti&D)0U,Z{K, \XŔ--, 2L 1K1s$a!+##14F `AMA&,?`]K[ξ-&XKaya-[to MoPx'cFGKy33Y["~b -D|-Aay` _}k;zZo?_x)~I6Tܧ.0.SLT5۬&m 7cb\ά/b-[$sfba_0αU碟Y44{`H&?qhNwE|.]gOƖ} \DŽIxkp,s01pA4h-/@ku"58XO4@4& yz<ż;HERU L'vfn _M`Uw~Gpc][K˶ގ;PX'k8&΢٫BvGj&x׃''&,>|9 odAM1aقL'qY+]I2O݆ Iօ2AGG(kt&1,Y2lCf * ~YOy%=mW|RЦez~M{?ml=d2yL2]n茕6 m!<v+Rݡ}$M޼2|?GY9͵}Hхo\H s^Kz7<=F<&oX<`B 73pؘYwPҥUJ˥8JVs)򂢔qX8Q1Oجuؾ+KIBs!>1^+ʉ_Լ0F۽Fѡ`J쾠%1.wg>[oj=kГsg,6T<"5-,/RKybdzZFKyJ / :}<!Nj+/Gsg@ .FZ-YO0`^Dϋ '?hcӃã^q*Nb)[^ўgZ.JL˗-,P(jZ`.IXy _iu(-vߑaͰuP7r2 S|̓Ɔ9Y-@mOؼW8yZkg#gaX.mzQ {mh1a6[QʥK}lzҽB ځ3u{N\;}l'xt;w-G~?|njcZ?4Lvuv ֈk,Fݲ]"&='юQ5k12 Û$DRB$a 8dEȴǿay^ly;ZwDAm;B}871_۽~2=kdxbuf!F!JQmpJ#ed^7 I: π퇿wF?w4̱$d';G9/Ύ QJpjPWB5d6xNiEE.^EAm\Xt<}{: >[CxծeP2dօWVE"_DO9<FX^@OWO?"n<4TҐGBJb?%d-X,˗&-4N 5N%֜Kރ TD?E^LbO_<:>ysAWuyk,,`n؛Ø7A jbuzj]vE"ض`߮幐o 7< |'F4Q4-m,Ӷb2&['l%ML}QɑmpfhKd ҮDyELJ OTNza%~3]I]BPp A. jri?߿^X#^]J<9:5*ah]j2QXttre1%iۍUstI9L4'꿗DK7s𒻃'Nގ.?g+Tqqd*NkxKw ty;&xmw X2@y hipM;oq#Xgvv^;;!޿mi~c(-(ѻ`.X9~#ʿ;=jYbTS{e Ch<XKs=֨0L~4ﻥ 0F7xKYN:PdOc ,üK8=yhj&d@W { D= ZF毹#=k ;#5]AYa|̾QQE(^ogȵ CG sO22]s>EIppxO0 tm'.Պçv%M( [V.'(`9 .`;G~F{8 2& #=A|'zLgSi7/'{^;ClS4iGwH|ywɔQ}N >% ~$ H_APxE+]A!iX:ǰxuǖxZV-XS~@v >+^u M<ynJ,YZ'K+e◍Hphmh"S~W+#f^rLM^߼K[7,o|wC:&Ɛ1CSq ˉ7)n$㹸VMfÖ6'm7S4U|s'Ls)MWAW(?xUAy>~,|˦aA\4Y񢀷e &"蕦fCi7wYXV30A2;Z^*"|DAxv 8R9h`"L萍Z@B$Z}E~p["}}G3W?ױkDN<%\ȸ"Qz8LDG 1 cך )q6b00!K/q{=cۮ&xjG5]&_EW$&?&xB>&4L2jiGxc[(%(˥yaߩr}3$'_da pM4^CpCD~]CkF4:?mim_`0^4S/ԋނM_'O W5haZ:4jbdeG ̏IE@2-TcUpsK2 '~#'w?#O ~<Ʌ~ a vv2K ku}s awhȯaS0j062/KhF^D'$4rRrQ12M.`#h<]K-k#o6}!,_>Bnk ǿ,DŽ WF ch-'ȉA R?;~O2 Pǥa;?NMOu\G*'8վ0I0z<AFG^A _}ަkБ3%EL?"u^_֗= %BA"⾐$A3qqI Q\@E(* ꨸;U^wBwy~[[ɹ5"~a (}Bac2&>"a1;\M$, N}Sdey5s2 /%UsɖKr~R0)dFM.T$re2N/h'K1I8=y 'Nv ڡy>r*k91t澌pOni|̴ )H8n0OyVXQala5A5fM׮¦ w|}AaO2unz^8gkuyRvRSHj 4 @ bG?6- ƊP$ Rd5Տ_F(p׺(wNW_S_< O g>rk(Vc>C_%&,p]K(¯KzOe]wne6_8 j7K.16yWZⷙ|IfU0M6o$zrs$)4O.r!֣ m*}@gHqPdҔ[(%XHlr[p- D<_@&ω 9=T;G\R>nly9{.WW\~`WSz-g a?>41H4~F }&@ a΢+z-v p.'~Bݙ߭a~fZҦ{k|^\X׿Cy v.>; E2C-T#DN&0 a?K ^G1);\/Fo=,oj1HV~(zxG5Ȇ~nW\I+)u+ח޽R>zmMop äaĂKmD &U sO!z*W?Į0* W]y~#!(d7jXsciG`"?\䆕AI,YJ,S:CNg ׻DLt4A2rK)/ԕGdiPO;X=4s \.R{KKS@ίP:mK)YJQ]K)|B0^߰]ԏ Wcr6&*HZ#RǦYpEza#I@M"?VF/DU}.yrykDHcOqcԺ3t+p5~5CM8vQ,֔le9.4 AAK9eY׹(t^GaW4;0@89V_ûMVێiߗGX1ySyjۿ\^Fa2 ]au(ܿ]ӫY;lQ.pow=x F)v?߃)x&2^mS\8d hz7)y׫yrX],뵚 I]B`]-.s8`XvFU +Фv '\#{Ǭb\"l n.qOHԫiO9Il#`%cKcmF:Y&Afd賋1ԟL덹`LJhř6Ox/b!#oa$bx}`Ao&b}_FK(6 v^? +F<8p?480r.ym 1 Rncm9%\p+xMqdGvq8Pq:?6(E ( b[ ]A-DNp~Ռ^&!c~` \GE*D(s |1sUDl"k3} a,Dnb)>@4ٿP?XIi"Sq f?p="i>*9\Nĵ+  ,$2 eӻG͝dXN~`/%.1My:A1@W2ohfxoң5ԅqS9a!=<soω8adW}}2#E'_!b:մ',݌$fcgHւK:8U=nnksط5^!9yg%M㩁4+RzRS *$N\w?g+uz_PZM<\0:g Yi<'%7s2f󜇖:H<5 a5#}yI!/؟KeB^(  -cpȋ_$%|PJ ( *-o&H,I)Cξ2sHJY>'~DmL#a4ȷQz5EDXr/bza DoPjPf'hs0-ap%|QKq&G|ȜGN1z{-%l)Qk8hjKvE+Tyr>d9Mg"99 A{aH┻ k39OH7itopN48诤|ul(,pdQA{R`b+P q|H3,,+S{K,@LB@hU,fZ͒xD΃RP,}on?g)۵[]5=Y'.P8A"XmyWiJ9"(8ObPI(y!ON2 6),X yI-,FȾCɋWBJ%:rZtm~𹇟Нp}Q_CW~QN41 ۬"ϒe%8}h29X!):ْ~̍)J$ES  W=\ςL&3;NJ>;tC|u'˝|u2e<]d. qk\L}-k45. PXk\ԗxgZ RyZ RxbmW~L;&tay\ 'geQ3.jtQءd1:2 1ݰ җھ"^Kac?L \dr=N^C,bUMۜe:/h QpWYZk:W^sQ8csjQ`өTBW5̌66OdN26Ӷ^A'c0q![Q8ja5ENޚ֢ 7 G,ӗ~^Y揗)YAzxW2KLY{C댻\. kp]~K][Eɥ[{kO Nrn{Ā"v qZM\0g qG8Z>Dm r:|_IGUUX ?6zJ ?i 8S+]u^Kj=ٗ$zn7_~7zqkߣs7=g9?nzkN0D1E>\L0nvJVzX? ª{(d5Gy~uئLLUb(¿8O|#*.=q+ǃpĽޫ-s0z1N{I=ׁ"ؘDv;@rTd׭_S([O.;Sxd=]՝:|#sazYZ[馭oxFScsklTuGOMӜC9+'H4*JR/^Bͬ`6bهfgπ"<HtHG1&gz!rB%#h Dbajd WM Gg apc|t:ۑ(L#0A#F*Ŧi}bXwhL^伏Ώ{{UQ7@a mpӃGa}jjbB]cs؜Ĝ6cuR:ݨvq:=-@X*/Npyzd !F3crdKBl(%7FZ‹a $?ȜOd3k tEݗa)zCί""!ӘA) FPyG0FkQF-3h t8^E\oB)MS~ ]}{gT9sjgjdvFUve¨\O5f҂BE"h "&ASH CGbXb1del [h+HS1nq4o50ǎ%4L# ;#,;2}AEA_R hd=a&?Nda;rE,LwL+QnzWn6G$549v,g YG;eB}Apl q3,xM , $ehEETP;ٿ[lˉix@o0uްF _nA cpN#_9׷+WS3~:u NBM!ôz:wFe.K"Qn6 #hE#̢,;BYvXa.o%|yy?;5R21bh@v4V84)| . (qYnxǝv8yaupW~>n''(M.b)EvOәE+0VtIv9a^ \Gm{>LaV?)lyk~fo3bť[*y,2Z0i=Sз^dFd)Tv'~NV1zjvhex”G(Fzޅ 3,hlU&"АdDr:Kou5[AVp* µW_>B?J+~R(I,ߒkӼVzjXRK%UUc0BKF@p + e$:2jWuELuI~q9Q?u(.Lͺj}7}i4S)W'I |<>.gMn,€F@y&9S&3,p!IRʓKYFW: n{M5LnӡA&cM`1"1.ܲdsW#L2S¸]ݷقO917}pc>Q8q x\a;g{Oig6g Yeer_I/p7Ē0ɲ2ihp0<'EYH!PV7s(*8' < BewQ,NxsY|wl(Lo1D`jQ&Q'hO 0 7.x‡OPөǭS[NnUꗪ5,/TπsY4)h@6"S$07r$k}7bsl'uPVahenhXŋֶxJ]bRiTmn}>z'On=EU#{iuCuGT޻rA<&Ks`K'QϿ˰10Y~ &>A#B嚟|wSzO%;?nX8moH<& J#h$'2A*v-5N"@ |حq=i G=MaӮ4??MO;;مN&eCa҂46%adlRn7 ڒ)(&9葠>)qE=xB3rqy3jp3=UkzR} B &]FJOW" BN,߱ -L GgJM9aH$$hE?M? QA4$l20,Ϻg)|,]Ϫ;[4?i7˺gAK3b= j6,8LK `Zz`Zzi:"FBǰ Ç6#03%bibX9#>g]d>{o{L 4&d  ^.FYJ$EsqDGJ(ԇI"ra #98טk AXQ_GӢѡc0N3/̘"\HFAkL5Zn4V\~$ȣMra|_`d.6|8YQ3~@LbN1c~Bo3 0Fa%jؘj=XW`p>Bw18V.y ptc0@r3x 'I4Z}2yFI6*9ӵΛGYC>ϛ*R J~} yAU!/s y ,|E|Ё70Nἔ|3X0)I#QΈs-6G[Gz T2I"Š< dVbYhqrA$)32(%3>bhMä&9nڅ1a N8~]ۋ􎃳=1^E[}#k,ŎfYmtT%w\pK^%>z/8+A#/#ab}s9̷0EMD?ee61J6eC7B~S1E=34,# Wa,1[>V7e L].}5t"LabO ;&v6B^Dx b0::rÁF͐_w| K^A1[-T/B! +.?ٯWEͲ[O`N1VR B쇖Dei9aZbrk+} wBa:|>V̺ sb3_\ky售+ 7?gCP8?.KpRMPx܄1f_]X֩RJ!U_ګ*7%0E?Op. 0Tc?xJW)sݗCNhӗ~؛oR}S]y`zXZ95y&JeJtj\moI7)uRH-hfG:D䴟<Χ+hs6 Q8|X~YSKSJ&@_ >5N׶Qx{w%UW ᦌ"K֦156ZkS}D,Kȱ# 9m#,gl28wj1db#a=5Px:wO6NgqrLxJTi\uܼw)4Ka.{5\~NN9 >,$U͖e'q|w]ޣ`G!=O>yO]Bn%D8mCC!n>ޡoxŠ(y+QoaGʿd'46X&-2"1. m8Շ f-7,A̠°yH^ו0+WKO!}u'^ڭϳ}=_5HNqtmIřhwx4GpSz> rX$w_6eOb]4.@(Z-Zи!:7J0UI~)T~H]\?TWGsq}jY x̡ʱ:K0R}ex,r*/h\k>t^K\t\ W]5LO`1*zTx۞Y.N -;),Fߺk>;.xl 3nq3kyRc"=> 3TO\NuڙR Uwb|[DaGㅏ(€՝q=볢 jKg6Ώ4Ʊ^Ǡ $Q"l["fnFeUb$(X>AwgRa`x2 #[x^hN2Xxoč/B,86LDNh@$hTd$b_AEӟ$dD=IfX(BLD-OhR^nc/¸O(|\*a"e}XRr{ %H1%0" ӑ=3 >Wb)Zb}>v/yChZYJFn8o }!KQp3]`NFS 0{/we9]rXȤE-wG*-ƧR?u*FBݻL>$}8n O]|}RxЃ}}S'>HjvFn٣<% ߅lr9C g Ld& η̤~,eDpԯ]Bv#=(UL73s?pg?GT77Ξ~Tm\9%jW=סq.)B]\Ct \_ h#A[ {حq-Z9 SrBVTsl(´].Su]kь gK螆peܓZ.$C= h\Ozp]>JpZb j[b~CL8zbMI fvS8wR\nX B:6 n;]/({? nپ^Lx` \>gЗwQB`L\WY[k4/]~IaŗNw{]%ʯ\_QB+:|>ݟ~m-jjYۉɳ6hd+4 L*&Q*h"\h|݉4[Nu>.e_S8k Svk |M^\w{a'S?i~N3;MtDɤAe%8(2!*]ZvZE8h}8b3-C6Ѳ(Ana?v+R$r A'2,!ΑBIޛvS_!W0 ƕbrX6tvn ]}7N!SA\J~6a&21 4C4ٴ}<Nl,Dhq-apda1/[ R_큕\ZTP?Sǒ&,&y11js PT8Wzp>-Rxʃe=}lܸc Ħa1}#Jy⋸3>5\s?l Qw=׸imk`sn<ܖQ-hM@Ί1'‚Wy\([pIjbW ,)=F0v?= ;\◙ſAd(5h)Z~n7*#8T qSX _xp==սŭ XL*mMB46Ql/x-gp~\ݿOws2gyJ[~G O䣕jM{N[\A?PwÁ]P[)+"h8 1CYJtrg6@(MxOw!G&6d܋}1 L<Q&ifHGW?S]csv[tjJ0YjhOj4\?H`RW~:0\3k[ZZk[z:媗)O`IOSVI \Dᑟ(<ï,md%" 7a&d?|]3e?Sguisb'46LƓcx%c`Y1<ӤqٿJ0 {X5.9gjޔ2?A%N| s?s>m)"RB_Չ^ftF.ǿZP;FW&T]u%!` ~3"LCq|~!]E|v/~S~A Qe~}3[5k[ 0JF+3ROs,;5K#Sc`uczsVm蝹;*O@)"ʂhLurC`&2.&~>}v~x9t |qޟXh͏lktFWF8l8IeS4ų33݃N~.x6tb0k08pL5ƁOM-D:1u+F[hy:R`ĺ7 ]ʫ_Бp1 Â80 j$"ӕ[ɠdWӕr)vMkPAΜykH 18HD2 ˕IAŠ;j[$'Le4С9bvlT ۅChzKЫ*o38fp;V&ϲ%A{a5k,V{譳R'p*G[FL}CR|{Fzix ²,”(MwxhnUKTu 槺tU?(X%YiMws 2GQÇEIDaZ硻fi.݉i NHcpjK6MۛVY9L',J,% môP-i W}UQQ1bh"TQSe-QJB? 'exz76ldeE٨xPENDJRߙ? ߮/UU ^^94TS/Ql2vHA& fjjnyf}l, *'meG_x=7 .r57-1~\y$o Pݐ>L/x' ,́U$v \7/۟?K!ۙ,YY \[ja9yldSâ_mbNϹY g1D+Ȝnږ3uss#V8rF-EuӚ+4(r'Ċ㡒GW QZxOqq}9 z62ec*[au4slakiur|"iv08@o`.H.}7q֙c|4,ϝb/3dG$78 'z&!2!12 &B.K'"%]c3`:pC+|kx%#w 7˗|BBR]3GFw~:]c}#i UdPЪcw'ܑ`ݾpXEõ2^[8U]|> }DT%=*QI6Q^՗'apj5}k]P"F> n6}=5ΐ&"&|B3~l݇}`߽zRskÆ_ i8N 'LCTqY%a075^ɽOxͿ?2/w¯N$ 9\n0dI3!\##l|3՗ L$Ve2e8TuFy .-`ĽWn?YbRKZ WeT;DOo0g,1)D.SQ/QOЍL!?28p?OtVPpmFkI:=P`U!;'Die;t,XoK!P?YZ.,]7$Tn\0y4Onhe-T"X'Ц_S?cvV nJ00Yۻ3ԟAY_w~VtTUW y![2.C\ڟh#mD ?\O;3՟S +PN <85N NA'މY*ۘНXSEgΚ 6 `y;-+:De{B=th:{"E rW6Ϝ%kKYxcыGh" E ZzgŚp-j!)>7aVb /fpJq|llr这̈́<;)*-[1X5G b fo>qr^u;8JRC_*tm&}U0e[ T㨤Be7C$&IHa,Ġ`$6V ˢf+J;K% ~.a{F@֐0IȤ{8E& }3Dt *BXlRF"DněՎSQ-sUo[3+uVPrb94*HL5 GNɣ,hStE 9Z:!iUxx18Um˂Y?رp*M {oE{ܪN/IgŽ $, "Hhnqe4:θ 1*nQeT2;,̌+8ΓTuussϽujB۽K2tMV3JV:3"J. >.&U5u;e+le+JF$Dg]U*$L惣"X0Q]&4$zgt+ KToEQf k,x6lsX:I=N0Ǣ3uB01-rFu!3Rqvq*?AVzT&MftWhccRtݯ]hVgMrcǎ!X>U&kFjA f;%wi‰'w1o!xO7ADι8RG`A &Ԃ`a;5', %ԜPb''dja;ɐ kow+ ;**;6%8m,]I8T1b6leu.|ROwi= 9O~Eoxmc >KY7k&5 ̂KtSO8au?XCr㩰 9T<=sF$ۮ[ Y>en|DN0_<˔=V%i%%YMĄ`? pcuGizR Am ).RKꏁl l7D{+9y8m8%*{`W k㈃Ŷ:3@G,{%Y' 5 'yWxt\ủhQHڢOR?jȪ(%h"ݒ+8Aq@P2 k3S.++zʁVTiI*gW \\OM x~.׫ kss!2/X1 m,f%gኳpW..<(eX6&:N\KGy7Bg.>Dԉ_DuL3^ ׼¸Ux}AP\Kzk66Z<|3Ż+0wrB;OG|~K6}sցn2X&͙W5Iu>L>uRG+<9`jsqD$#q̑?ʜW\rm8RqH$E{dԟ<:гX%Ɋod L 1J6wd;&~>y{ؑ%_7u )eS))#ݐ2V>؎Kp"qnt"r͐T)/U\ZXD}ce"ocFq(5EV*+K *%~ o߸8ҦJomT4vjuk\m,߲Zpn8JT.%;S{w.XyOǀל7PFg)e")5W|Zutny(>fZ%.FѧR7EuШV𬝮xΟNpt+lN|?oX/CG XݐE5N T @cK &%ܔbܔp* K~mk) g(i3A0+ܕ3z] U5.T-.gk.$9('evuy=ɌAa\PzT|$|&f*k$׭3{ʵ6s[g)Ycf%~nj+/5$<~ԅnq+'; ?TTlڋV5ŵcjqZS]I[oa뻐B Bq 5wB[ܶPq<# {Gme.Q/hQ(]')#ZDp"7Z&$9VXL_LZ‹O=֭Z5T0aEcu]b\fWӁNY>(WlWž͋=o,&h[L˞O_z)ɎO&ɕViGʎ[%XX؞QcƮϘS~]8֋ZAV?:NsqŽKa'Y ,OҞ.{җ]Boga%=7I@yFhu= eDq>%ϻ8wI2tK999|9\iY^7a[`RK_RU:E+cCșWwqRK J3H]yOpxq).Z_ǣU3Mi_,#`27rzuGcɦ'I-.^^F Ӓ+FyБw ǟ@^KY*UuO {NP|,k7Q{%vc9 Zj7 +үt=In>C}K]A wBp~ n3e_ZV<`)]N,c妭 bI8)I7IH׬ HP~ZtY~b螌+o<.O$h;'P'7MOƕ%ҕn%AJ +i+Ϲ+{Әo.+ _ V4W:%Wlqq,yNc{S FOA8B06x&DǴHOu+g \\G!zANz^3a♻`*\*qҪ4W:#?JJ+פJ3qKg&>&:?RjwGF^Z|{k<n4KZUSK%PN<^ƺ꺚9TBu7`P:;NpQx]W#5!PCxU\*_:7uq~ Uk]TN%c55E؝gZzz=IΔ _&+bAsʘ:&xoRϱs4- aIMFU(9͸''(+1q7)]\_fMP6 -.qϸ<{Y;RXH ( SWSwJZ[etP|{ŷN!ŧ ._}/Na׻ڻzZ<Zhm~HCuQuc݁{(dkPG5,n Xڠx7^Ah+ywx$c豾]F O^뺛HMM^2ֵ}u}4*1C/ _xP} ؗ ^5 4Z%F@#Fl/eO%㻞8i?>ŪJY)N[Gp:B+**s,y\߭#U9x {\k#:+%.hiss:,݉C_PW2Yxb=xSqHYU,暴RXWYUm߰fAc1z)=2_-C}S §dڋzfX3fmNuS }*;M&SNawՄDt"uŢt ilA?4e_O#4]vj? i]㿧\r:e9nT60KJi@3\g 8` 3GT?@r zRpFK6rh3$W3 Ip왊k陂'rforS^mk3 z&?\\_J{GH"ғMqMm"&w"[].t \'M&&MIpMo~Σ{_͒6v7{[r}K:-M x:O$J̿^95wAYR|%69EruqM{6A砳ȳ{YR-cm1ǀ~lOfd;[q>t6g<|Z$=?*i?5:rP*>Gq;`9Q\vKQ1Z\FgFw}v! 9=mt&Ԕnu.y* _O.;&>;nT!^s'K/Pv. xeǶ SCVEvvpt3GoV,8nse̘kbx~sy-o=PdpIsOl&xZGݎG8qm8㬺B ݱ 17\Dʚ_kF.u5W-=p/"H ^[ځ` o\rmHq}k\L@+]͋c?]ר3XQiécDpnѪ._\%RS'g:4]tbKKٗ0N?SДe\Nx.~F]XVi*cT;OԌ7MTέG֯j\(kш3.6v<#Wv6& "'G FO .تz9*Üyh~}bu ϲC#h5r}:#t}ڢEmv]|/FcF.퇫.FTߘѝŵ*iXb]_"kŮNTGjD#]t9:Η2V~:pҀ^faĵÉkckEɎ/3ZwMwr;^MjW8jy.Y+R]SX9YUqmd]tq6^ID;ό>U{ҩ3!8}.7^Sh;shMhc56D{6R~<k #vҵ:~jUz 딞ۯ#x:ROI˱qyG=O6U$bՕEC4F-Jř%e2V>̂6賜'{^=a"TbryGi@!j\˦uNF@$ u@'[˦ 9R 9rF, Fh0_r$N;7_OpwHmվx>:jHXDz=8g]%ߠَuJ}2۠~@p ǻ[xq;Η}|o ?ب;շrY{ߡacCef|hjU+Wza;N+. Qxv3 9v Eroln ~W~M.stvYT-n< "x?g6.=Z] l"-w[oQqm|Ֆ& ` V%P%i^ȌMsbyM7LIŋn"&nf+{rVeQyH"ph.QqHQ lcmlwYM~7 ~brF93SðXZ Fw8'O\?_jMO #ț'_ f9qbAC|/g!52qgσi=Ogp+~L;Ym9 Ys ׏~}\1L{gz>d>LmcKpb\\;.sOOoaMl&_ :`ݴ#=[k^e ?8 J0_-,AAfH}.3M# ==١8R21 BE}1cd( YipȣZjfetL53xaŖkC/y׎@?PB`giIc>RAL)f-Lc,Mfvsf1̰{fVFޛaF3nAk`JVlvTOt>kW>ۍ$+-Lj 3ݩxb:,`xRPr6VTXFAY&'0(S͐]s+`:U/]uL)ZL ᱰ/ !i=h_6W)mnW̃캝U}vw w7tP;:w^l%賒UULsֽZ6M D,qki9}EggA'+ DAxҰim tp0H חL0 4AoVkfǬs2[+ D4MA03NOԐ [iWuN30JOO^ >p_{}DtPaŘgopR 1K+ٜS?7od3rȋi6P#[6J+2ař5:E=#|/'$#㔓I=\㙄#x (u=6N*=h8G4 ßKxQON- 5 0$m gAMHea,Y!qKM)н{{#ꞃ>wmw['oՑWz +La}aS,x1hBuYSZy}'֨!0-/돖M'!iYe֗ - ZD}h-Z][=+ y}-?rc\*NT?.`Oy,V31aVX a^x^X!3вŒc3h yidY3e1 GB)>k z)>kF1Q~{alͲs ̓!J{N)i:g^})]O9.囻evѥ5& d!cf/r ,=AD-G+82˃v6̀fa<1, ^H2 t pƒuC2=n{Yni K_2~)̸_Rw?y\zХX+/sdn7&˭uU sc=xcLr"lBI~4>8s'냙dbx&9-c^zد0}rk?X_:vqV[ FmU:JpV[eY1,:Fxsc#Yqߑ&<6Ÿ=sd(7z0̏nLA[=hIerC޴kɿ[0Om y@-r/_#浲_Z8;2||mn;p&#e{LA?㘆!2%Mrdq8!74cS1<# }";cΎq`}c*hdh~9' S 4Nz&R`P 5ɭhlȷw TC$ eda[0}8}aO+h3gPI=U3%#ba|NZ_;, ӃH0Rn }<}*v 7?C=D!{:8{򼀌4Չbg`?̈́iDafsiEd=x=L0a҇Γ|xF9`gE=#:R718u)b ֟e~z;Ru]fbͯ۔.G >JQˊG %8u9]Vt[߂S}l]F'C,Z;k1 =9`3Gӗ΋ a\ϱj8Él-C7 ,6]-ߐߣG JB|*G;hHViNv.pǜnmpS!`\ h>"<- \۷w$_.pL20ȇ^ &U?xx`cS<3G?vhv#c[X3Y<_e#8xB8Z!D])S 4Ddi4J餈Y &t:y,4awhĆ!g>k#i5o( d릝2 G}ޔO3fi#ɞ`(-j`؛&Yd[(?[U~Z OT?A QE91/y-㼮z7hVu]Uy}R}0mc"o]Y͸LsN+ghg".a-;3@({dG9NafLm ~8'a)G g2SBO/ 0?;]p:0#qe\7 })ι@0ȝǓ,m(0t{4S!!m{x0A:) o-?Jc"0&=O ry-;sϏN?g$+iTNJ>OKGg#;;fnVQ3)M3ȂB0'A8Vi/ͩ!,cdlt<'a*gh)` pdi(DeofI\#J}L+'JdN-GISSŏw٩YSR!7uԧ:1M WS MtH60Kð6T;`mYŧrŹg'w|L{N{WWulL):]t]\)k425#c9no_Y_W|&# ##)7%_岼^w':ri͢h&/,c,^`9=Fa4g< mniL,3Yl"Ɂhbd:G2ӒPsagye\< +;z^*J:n[N'jvhUм"{a~ Eg323Hkb}6iAdhY]AD?Ʋ+FM/^Pc '@Au ž8C\%w`/Tbrʋ» q51Ó\Jhg H0E/*ޅ/ 5/4ݑwf}}]G;Xz91_p `U Ly8@g2gap&K\H\믧p;j׎&X缨=_-EK}_"Kr-'uaT$[U7k~B@-/'A8sӝ)Hrl@`|aJ߄/);^~`KBknGg[R_-n%&<`„\?Qw;~෻إx"xbNyt'yDUs"uU5QuzM!ZV7sCҙ?g /#T\ @a1=kT֧].~\r2Au/~U/2/ n.q$pVw엊;ϋ64Dָ if]x|Z&B[B94~oi}$ {9&.QTl|\a_ ~D"SK%Sl0'z?dۭa.Mpnn˕ Mcl~)oB, ;ZQ>ͪv#׿ e?0քc` QH! Vcc0iG:ڕW 65*=v<2ޘ69'G\9_+ _(Uf#l;hbiY!o7!_SfFpkʞkFpk2d~ڎ0Y7:}=^I-{~+;į;(bfm֣ G?+V-KCE_ThNg^'zc'2tnKKn~eοx{^:[\^':7JvX-nlI+:ַX]cZXDZn/[BGܶ_ oeOCI#1l0ΔO6L߮[x=s!׾orsozC zr+8PUFku_l=iikff ;67 {7U=&o| cMdGkݤ=37ZuU#D3-B<^WmMi ˣ6p!h]N}q݄ VYnz-_|-]o3. y-umY>VWKNm- [R q|[C|O_&c!vJGvQ.;رOؿm5`gW/:͎&jk#uUs9lē7I) a@Lj|߼0 {GqD>}}ZM)j4 ra O|Oӷ]X\gvt^wr!+]LxWz{oEUGח9Hnn6eǠapO[B@7e[[ۻ):QYme{Wգ%.kzkl=c=J՝5eh1э"b{Ś{%csdE 鵒8Npu~}{?\GU>?vǓbat(ܭLm0hM+I#fce2> =,K:qTg{#X{s\W_3kލvcN'g/B[Z %8Yg-q] f_lVhfX 﫼~ '8}e}ar9>bhF:b!A3~.C֌9܅7"{X벞w'-uV3aw*>N`>Pv~@p}};}]vmykz!V̠鶭$VfoJ(4xh={jl#lBnvjJIKm+wFݱᖰ3f3o=-ӎfb^EyF,ls v,,qth/5i?`D6e66 mdS7eaʹ Q󡉤*?! ?TOP]a~|%ԏXhs)1u xp|^ av Ca-Sq“ ҥ\`dxC?Hw#&~$ [rCOt?*VPb .(d1|/o忓;:Fk`z&+%9b'#u%y$ܭK>R#~ԏ r?&(v` ʓť i; qPLsW d}W'Ӹ Ү=Cسc9Ҟ{?&xcg>VO?NvNZK.V7 ؑ,mYX/27ggXE{635+(^w#C%uW/"ǟ>%)avot~Okve~,QMtp:[bP_99~+s\_tMe7-^ۧJ򧪼)3τ_tj;ES>UjХyO!E}!#jnd(Sm]h[^ulTv/hMnvد?'s?W~=U,4_wWyepm_gyZO>0u/MO>q)11~4v(Zc?q!Gx kǮD%Zja=ia*9ߡ?{ȿA 'fyȹ.tAw^y׃uѪM/UK_ׄh/ޯ<߭åW s+_q2+W_)G\d?}o&q?ðsqlJ,hÒWI_)"+]\JVrϴ6tV ,.c@12xȲ3F\pnKIJ} #7 K ~Mk[:&蘼|Sm%LñbdX\E<TO|o5 oWH.tgyS8wn z=@ M 976b:7O)acA? A7w|^뙼ֹv+bpϤyoo K[wܷkͷͿ8&הZ[N,);LnF随ZO)9B]ӫPiy-.sA>}ʎ>`<̝Y :39RcQL3FP>eث  6׼Oݵ}\Ou|r]1F a)~b,״}G;uwD\j^+l jLaJyq !1}A<dş)8w8|/^ףY=M-/_] ݯn\w?x\rAtl[^B& \CqSDKӑZ #@xt|,]{'^=^ES51&Sd-Z]\|O{\\IϾ?_&oEv ̵hA(s8Mp 8N8\伖|4.Yku͒ŵAq?\v:NzEyp\ l{%׆WW@pzsʵ]:aԘQuW\G&/LE~#58%۹&xt<} ITy?{;t<=Уytn#4zpW|wπ_$Yyro[kMG,y3eajbn4 wnzqjĸY6{U34=0J4K0CCcEXjuQT q@EΈ¨y¾ȍ7Sz4T#B5Ao/(Bq(.nbձ-O!sB \m75 3V/`8ڶ5tl#(~! ;׸:5`gJ-XV1SHyqXa,$r^ðahj"Ԣ+xav#ZaJ-V ^jPUs(˃|aI쓒ؗeȧ?Hb EE|:ǡ`?~  bZCKAX 홥>uCkz.VOVT`ҩ^ )*0/"93XTnXLhlW&i SP PL%s0O&|UwIcDZ;)p%c^p1]ʗÍ1Y: ?t9|>X7x涄6WY[c.2I ,eGav '=DJ +ڵp$ gTiiZ0b b)ui7Z {qH*@8QM:#4F jM"PPIjFG1Mt@d8-}~XNi[g"v"5Z lq, ؓ ^zy?}Hxo=!aSvWlbGmb?}~vaX ?(sO@HmꟀy= 0R~C+aHc]LZ&x.~W7ġϰ$f*3!uyZ  #n3F|?r3 z: *=quj0zM.j|h/%%6.q͏&>1;R$xr}Qb?; W?ظ|rԼew&^i}f\3ʍY#yrWv]osb\qm,a/^S{W>`iiz=grNQI% S*$Ȭ09O@nA@f#痈:|Xȏm1bb.˃c'Gq>[ؚȆS[<.1%tCE?=y;nssn3If3mH=.K1yp==SdC|fb7c#I><4 eya8ߢkeƸfOy4͈|8XotC}|/{-N8_M A}=ȸڧu^ݵ^b=czYn\ VQez!)PLē)UT,J\$QH{!=O%}>ADH _K7:)Mlq$C\ V%I%}<;y7Qdhnq[yR*RjRaMxG zyY˚s;MGz`:g̅% Sa=SĎMe&}v] K_zxm~ITnj{ͥA(v\!ȢL4a$iI #apj6YJ7Iya |o,6j$&'6:ib"b%E!z|@7/*Ds ;/[aY?܆t.0Dzg4{&b,EH*bST!VghzX6.ŗ<‹s.Ch5&+H5WkɪJc{".%)NjXCҸZ9N,cM2*դS8;<Rʜ¥!+E]S$c%Ę?֪2v*i6,hJ,R&Wǔ#--NbZ`XGj1(!6ؼ? emyFK?q]w]8'МhM^+v2PID0`qS-IBS\g -Yq2~,2e4DcruQ$Pk-pK mQ (F)´rBalcR2_AW WeM 6nvᷱrs[97;;ݸ_ Z:j$bcJdύYcV$fxc9ak 5f4-$4re3a1ؚRbJC~^J2rH;8gNW.ϒjkX$6](3G Δ5NK 9a,5VcerdkTʸEk{L1 A9McJE)))]NX^LF:S±*r,hJM (!Օcڡ4lmkˬd */DkPԧ@m=A#]Nrb{Cyyدˉܗ#A9u,Uǵ*/s.е#W#1mث“ɟcN2Տp"&$+4c;`͈(ծ\LBخ"Mׁx]\}ԋ~$q&^|c9DWxu q"цQrh OPafj Ha ,ara&LAF=~PE8 boTEE8^ Ei~ܯocϊSuoܧ?X8(|3Њ_*Kَ_21ܞ? %L he(w*b5UĆV|XPEl] ~aG#q|4gdgG)=+Gs!{`vսbw€OU8Di5jbC]U{է8.sR?ls-ROW ي-v-T< 7rs>qȿpN1jKZO:٫evkB~!x0}Nߧ~xNV&{؋\ #z1]oڶ]wmuwׅAж]v]mEݗtE܅Ӄ%.ď >G;\?bڒ ] +l[䊽_2+6rNTЀY05!R,ͧIҕ c~/}.R cQ;W!9J ^*T[u 5È]8Xϰ[i?ӟm{sZ{˜}}nX}~#L";Z0"S&c̈ Jpj6'4AQ]jH# >gԴTdD%&eŭ+e i鵽\rMJe%5ROxh6J6ٱO6oPYbeC~}:Twz7;_s~ fU¤W˪UFaz]'NёUX&Uِ\]VCR%h6<<É]Q^o!>{^l@GzB:f$G_l&󴥷sSw 4o>.3 SޖpL^oK#Fsw^=5n?9QMțbNpypȻ<97x%AܵO1|~RAni{Y^[Qs~l-;IǾNJFYkOׂ_W}wD _eHh}EWIV8–E#bD <'ii-HeiZOFy4Vg ?,Lބٳ柘 ^%eSP1.˅~@v˺A?;eи6G82F)>pqU'EeĠژ.>1}/lm )K >o>.%U1U{5-KH,- xNEcL8=(.hmlz}:"wjvԻAld9cf/c%*[7c9#ɒQ|)+ߔ7D_AW>h1MTi-SxuPTn T)yI{K/tcwso.deT$-Ksi:M:**ԕxLƀԠ=ԖZGO^n e#&1U|L!1z?GVbu|\f/%q?| w;؂VxɊ<վOM 7/kd{wֳ7g7]t`Hb8"G@"PD;@blO@c÷Xb? 频㈵#;Χ+]0nZݝ_|> 6gvnWހ ٟyAK> w> B1/z bO! ? !0? ]@{hgmТc7J*p8p8hWPEMGP 5&!cO|/Gݸ/5F;˔y޵?_|s Ç]H(,y p g=&|oy$Wc5NAa,U"IJT*.HpEH¡">̃w>J[ľ/zWӛ'Njvm ;UGUހϠU$؈׀jm` ` 3 ^9g H*/Tҳo<'ύӠ'5|BAb:GQSzC@Qy?:X:!\w&{lB(wL M J5:G~GB۰DY|~箂rfw׶KMUiߤ _(*$2')|Ft4y/"*%%A -U?)GSUÀD+ !ƣr,ˊT-heJ1j<P?;&Đ#&:I8e>#=ۻ7zϮXȯg<~aCRJ ? 7Ao"T(`ҩ.hD~ >Y>I"Q < E-Ǻ ~/ λ6r3BYß Ia1g2PO'ֳKlF)wѨ}b‰F8cJ&IZ‘ʡY8qQ+;,\jٙ(9TD5vWɒ ǣ:m vP_ԩ/ԨH9 D <׀8K`'ې` (+$PABQBA|.lD%>[l0;%˹SO!rJ׃S|~7evE_7uˎ]swnd> .S x"QVZSK^ʓ\qmۉ8w,4lcmQPkI|!:SO%V>5cT'ct"˅x{>hTڎ((ȑsBxFqVvqİ҇bJX0v$0?ؿM%V2i>랷CܱCǕ36͔-Q2}'?A'5O-AF1ٰ0z:F,ε$Vͫsfu9URE^ `rXAyv\;gZUyKa}wSlی ,u dWPE >`g#w>A!祈#9BTg#'T\祈'.f=n|bi?x4Cc9})8Cd8R^.cJn z >?u[Xۈնkh `lAɜ>.ֵ߉{հx)`Ų"**^K™XE~TEP*@ml i#\}=ݓ׏1ygWw;f;l\, LY>X b|{ oh 3óacl&X2sC)E^.g_B<ހ_ v&.*hBgJ~-ʫ(JAI䄵kQ{15(@iMد7k /ZiȢ 3zwLb;f93u3} //Wt_ISۖ<˭/ۓbjbV<¬f 6%(g6f[8Xk6&V4nSMޞ/?{ͼL޹#/޵7Wskãe/b¶Yg<:6pL{-6X,F0)~&eaj _Hj6,0Η3VZZ*ڨ8ږAva:g6Q´HFKZ’\]Mt9w/M})RӰdaԡS#rAU"@@m  L3~C?_NՂBߢ~Oc=F!ZCYۀ .; tS]aq{uYybC1DZ. R E)""K"%eI0k*QUpl p$XIIRjjI( 6FrNGC9^Ny!@N ervT_e(h1fo­>(KHFnE\+~X Ӽc1unAԋOF x_Ma}\b%ܼҹkF?gFӃгBGq:mC6oG]ĎBK'xcVJF"Y]5h!uSPZD뉵 ]Z1fDg:ajj1` %X6&f,+S/G8!*I$|E\ E(/EyaБ`h^8yĒXI6i2N7_J,JĬu¦!r"։:Rtbd,e1hi l1&cY3d"}eTDPح"lz7pwMPpQ( JU'l.P] 5 0E/`TBWǬYjeN-!JKwvyԍ87DرXowF.$j! |!,$B?vX|=z.ٰ__02nqr^\'GLּ l,I~6&-{aԭ0a/DDӬѪ6+ŷK|(8G'jk4x V@C~7+c$-($cڙIT\xD(#U<*4jh)n [W0(oܲ؝ݷ(V?m۶]y|t v͚Ѿ#}Dpn EEbbE/,.ZNv/>"sXƧ 2t>fq-ND2 Jo吘=8opKN)o^L_ }-$~?s/L/xHg 78<-A4j&BcʴwI߹wi=/^DG#yrW^)n:O M{1A>wveg$6m%+N3&fKWX>s}}:Fc-<2OwWA8Xy~A > U!ͫu"ֻ*u* ?qu^TjaăaA1VGLfAX〫C嫉 YMlovsq}W{Ň<|d5ë=s@s Y7z63&ײ}<=8q@1CZow̾)ehC9;{9O&6;_>r3O˰}>sN9>9-|f? _O լ!6r 5!39-|AGr,5ľyΚXY5{ 4k/wsC\+%\b qsO\}5@Ueʻ^y401UR9~y'y`hʍ'E,)/yݵĊ+]X|˽RƷ4V  pXZb\K<\ a|L6^mul ĞHkC>Ul"ֲM>rk'eӘ;{͝;^uX jq,P orti粳"%6l@Z&ŵ\$GQRtDS¶c$f,*X+*#ec fBlPĴ[Yu e GEler9PG7C6!Lf# %9|q g|/,>EDxr ߆P<î,&pF6`a D~ dVeDDMVՊ!ZͿ=:/K/[첪tǠxpx+{P> d ^h@|<%? ?E¥"u ,XTrbʙoD1d|3Gx؛~[bkۄ]kW\~|-ڰs|;cCkHqSƵ`Sue\i}>hȅB3 ` H\[ۥYT.RUZf[~g*ԐAZJjmqHEcK n og~kKn,s>1k+p |>/gc+CV> <1~HRpH{}ߛf?7?xw='߻]e}5m3wnʇθƽRh&]pA3;]չ$.J\#k'=[^xvnhz=84r\ :w|.޺nzlC2-YyΧa?l5* nas34$,Ԕ,[yޙkB?COG=֛eg or o&!)"OB[ǼahjtxP3r G"sbO"Ef#]X/ƕ\ öӼ/OV*/76[jRW{`%)D%O + kWZ?hedfYtQHUBjI\@1&PA LZ(nм*T|'WڱmRfZT0P<Gai^hLV5F ǧK@ q o,2__3lT0m%B4 cQAPVu&#7fc 54A0ZQ]SPA$5ߝkt\*E 8[C?#QsVDDF35Y*z-]y.bgu[ujp9]oعa ް>~7[Q BbhF*D [G'D8|ߺawX6_qNӕL0kle[=|ExO_xOGz}'ۏ{CL\4p ڶ{sݻLh{e: 1x'aI=lӌظ`\-ɾ mb%-WtiϠ c=ݱ2z12os1li8^13H͌eE"fVFĹ4ĹL$T H`Y9M"ɣuUi~"A|HO +j?\C?IlH/aa=K^bx`cms]aĀyX=х\=ѭ''!ŷhe,^lƝ`܎m xW]ŢhkEKsE I-Z-DŽ#[p9T ւIywc]YpW$62X;E9QJU #r(k׋<#y _}Yˈs?]ˉتnU ؕ':PS 3?P' 1?P^fc>HC=4M,q.6aSVS8Bp7%tJJ#穄=RѶȿ-jܬ/HE,72{R-RQxwFv*j_JQy}˄+v֯ X񕡼إWʁ#qeNצYaĀRS](8хS](>ѭ|?({nG%٣&7cp#袅)<_fu̻s:$ 1aDic̀[2G÷C1V 0K+< ]e / \$y̟I^)*/OB"&<+\)%59x/7=WCPnyX͡p ̬]  c*m؁ʛ0v' c +{E^punC8u'wc-Z"+т^&xup#zWͨ ü*ĻbL;>k?ܥ$U3}V|ߢܓ¯΃b*ϥàg֦ٱΦu_7p߀Uo<@s/|@{^-tCϴn =ݞX}t8 \DBfpf%׌FS?!!Oͯx7汱 lvl7v}XU^OzbMׇ|kO<v\e`bkqMWcܗ8>lo~zb߾p(?NslhUwC2977xHFbgpsƍ'ƛ/8!^3u'<_j8ğHB ;?ߗo$vFbZ78OY(׳:&xw /W` bZ(8 :8o ۷n"M)o]Mgo'}?7?48ª0:۠O.,<ׁ(fK+>l>ʋ939o.U7]s3n&vЗ;:g!m~g2K&> YY"gK n%&o J,y+[烧A]HѱӠ,:pk=[VbΣ뷷>]k.R)>ᑀ}!}#}ľ/[` L>Q8B^sqϒ>'=g;zjrٿrӠ, n yn#B:-;xt9Q>.-~qA-pew@`=@HĖ @H9u vAƿODOa!IхT}4:ȣ ʃĆ vXAbL'OP,74PܝK Cz qM<~N˞~ W3E??n?e葪D_~T)*Ӕ. ;wڞ}¾?ec=/13: تZ1LF5Rd+֊av[ݢCZaŢؚ*J*<[+d[KN_嬩eߖ"*"bnZLnػanػaww ,_z/Gl wq>|ߞ f=I,d8>Ǘ=yZl؆[ؚWˆSlYgϓ{$>d8\[?+m6ܽeKW)ӹgeQ6a3cZT."<z+_o?EL<Ox1\f{/6@f0 Ɵ=)b؇p|&Av^6og%3/[ٻ}j`=t-~m81-yx#9#O(qgI=ڬŖ%˖G%&ƋllcWyob  qᑄ8|I#@B!nC!a3$,I^^䑼kԣьl??Ͻu[(V[շlX$C@n/[:~ɢs>숟_ ;?_1laO+4㫨}<"S,z:朾qQ D6e,p6&`i4ꈹLp$<8'cRPQL`t$!Q2N9MaĨ#[<$`.PbC8kIh` /ZxPфH#?av5}{+-GˊGC,Aw_W?&wfHHfD1 x"ҊXQH(LL c1 iqu`êZ?^ {//tIOWZyOޛ=uضpIa*o{&uҌ 5: #nYqKclJXRQmS1jڥ݈W# x"LcPb)GZy6*ɴQe`*BcnM%+PBS:qj[jgcFJ9!dDѺ,* 5SLiʑ\JjC2CU~;~Bɨp;~Li5>9CwtMy.`g17GꎽY06OI wmrr,}0{烜~<=-ϝ~h3>-Ve ^b3ŋpKcEXZLL\r(J~$e|:Nw XJ^'zu0vve{ 5_.T!L 0/rlJ"RLĤIyeCbQaBK7 ΫCmoݐc#Oq䧁mz@>z;ч|>˗Z_,ljf7"vii\,9yB4.FF9XQ+R}_GWajPڈta ? fR` ~Zh$zM[as2YY;wKQV=" N)Ϝ( ?Ü0'w=ß/գ!}h|/iQ4kFHidŲFX;qwkN+xoUVvۘoOHv`1Sa u4\lz @kJLBVγZG"C(S]{+Ug쾧G;G8#,℅hDyY rLarLrhe<ߞ?[cT>Ic?׷[E5N3s{[or Vo};߻q},/|,j|oоB8sNjٖkۀ0+r!_8'=8'~;=̺#<=KP1_p;f4W`<7rjꉀOp N?sx/x3X^c~6-BVygfy|]?'9bOryē>!OʜsPX_vv/ہ܄l 8۟}5)N?ʧ[tO 3s|8!PÎecdzAځŬ8$\ խyCo0{^? >I 'z}ٽ,?c0z8`ރ 'f|R?zTx:iN6>ɖ;?3gxL{^t xN"8k\^3|vqt_i5=q}Ȫ516N,u,a!#&TenQ3Λpr3A| c̼pEOh' 0G5g<[VnfSϸ)g}< ~YNx 1d  id%PsQO 1'qr??^5tTC wթ Iuⵏs ϳ8y':kϊiBؖL{ fT~U/igA{8\=D>YGhcvXm9M#ݴe`J`Q%r cUa*x}l.S])hKoQ4x N]< K ,"l-piNJp l #̇~'peopVaxrSJ RꧺɨV)@a:٘S4Ct\ ]l4E7`^ a)[H?'sC.7S|3Ig"BEd69kaɗP\fHuz;3PJH>iĈddBܮ*$#%a$gI:LxD%1^ J (ݒ$bPZq|C8(.5-?saNÁ{ؗ _mڰwyώmr)n pd `!,63сa4Y'M/p2׬89N6Uѝqش\S'텧PCr xZp+%{K1kKMwA]ˈ1nRPyp4tv( uG6Lʦp'gv/̖9EN.}1}/rrEN{1?R‚kΝ6lhUc/"o*v۠D(mB1"EnFbML#jD(ܨ`sya ̡34/KaarAUbY#z/q' Nҿߪvݱiޓ7nZߛ//9%-K,[`I[qKMԳy5(y桉ܥ!,.4xLq KA%L*`+bV"\1s0aEpFǐ֕Q;VL ) d.K.K`l07'{"h`b.!1n| BsiIH(-4%Z&r4 'e@ܒfyHYn 3cOSa2&!)"1y+F2b3;$mOb,a#|>r !y,^}?z7>H`9VLm\Fy/{^˜@~2''/zY~z}GM9gEWo-\ Av7d6`RցvnY Erщ+j[8^B^1uό=ư&Df~zP(=,}tX ';^W>EI8Ñ|ܳ>\eZ- *[PA[qj_KapDMlaqJɹQabq'.9Zl 0x*2̷̫ܳPUa] y6(\k Hk÷B .ZP}.bh1r1ɚdZ&4׾"¯*ű/PIiZPZ7X̌q* IQfijȰ}O >,W_) ]&rXH}Vڐ(vH:s5u S_W9Yj 痽_7u*fةLqtZq=JfB<ݓ)aZS_ta}NKqesJsǟy}7iYfo6a qHa c<(ǜxR Noqz+Â8Y'[χ^=}m 'Oɿ+yzVgk %JX!׎ jx^Zh1WR=d5Kጟ 5 yؚ71Ӑ|4UNJ!8$kIDǿd;mN}ۜ6'zor!_qv9sսAm[3㮘ſ{򏑪y, qm\n1Ά`YX&R8ĖJjcc{eCPtƷ^ x>ZL{+΂C_k3hD02[Ŧ`1H0kԩ03{`JoMf|[N/7i~ka۶c| 9=mںayώm;s.]p\l ց Z m_E #{u;֛Ȏ`cc1۰f_i̤1 Z`>sH\yJQQG'#pI;_Gs;'3'7ͽo>7 =8FpaYG 6s@>w~ػIr2]N`w9=h@ JnW#gX%Xπ٩()+4 7rYCQ9^ÿ8GN =?r#u<_pr||Q-_7 'oܶgg]hNz|U tU-[~UB^i޺]͟_ްax}⮰Jb* draq2v}G^0F`ڰK?@5zh}L+6W~aNXi`] p{lyt8<~89H]d^ۏ 9vEHCDa W& IUhܱ!<4|T0+t") ʼٳ %Ҏ(7xL=cNʒPr5Z¼|aEZMkdu&pBBch*%od ׄDwaT-kTj>T ;b5]vbe52۠YjFMݗ@,K) v3rsfE|{|Ň>O>#N}qrG\Q~t 2 R+ԂSsz6]iD.!i" .s(p#?p .Qx!Y #;N:ݐ5\8 ƒhRܲ!jm6AN]nV}FV5`֞7J=30L =#Nuޏ>ws}?+'goߛә·2EyC֞vn[73;դ5zw!,VvHe|^,l{`|EdVCuEH$3tF+1(v/vwͬ]7btU:v}]װ_G0`De ߻(Z;TE`t9#<[whVת; t`v&T# 0d3{x/Ubzr8QSJ2Ajb Ó2qJgTI(0xHԠ̡]^'BCksWrC5\c9]W/yPHpLj00Q2wVz`v0Ikڄriutuyfۛ#g3?NW qb̈́7jPOg1N2Nl'g11 )|<ոZl. -cẍB,}g'!ihډ݁zkz}[2&)ee9iPI=CC=>6'tŨ1)pP)ϘCho]Nچ<-.gH2ƼtIjmT[,q 􋕦 MAƚ~d dy~_oq~z _;`&%Oޘ9g1ѷ޴>&H[L b, 4?~M[p+w7I{c/"-4F Bv)ZyR-#(k9>=dqLĎTB>ߛAmг\楸  r4tqA*k=wi j\=kkop<p`Jvdl4~H^] ?,Pŧz׋2NK553тtw<#[N@Q 2ӟ{.o~/f՛7 t #{/,)YIA.NtW$7yȧs>_~Qx}_}RN"-Ӱ"nx3VKX{ ;)^84K2g.w)Q8 fUA1 !јat2Zt+v|2b{6494*6dL!~E򄚝i2" GQBGA muRX#lM 3j]Urc ?/n:}.riN]̳4nn/2e1ߩSճN=UA.pVcLUŚ.QƓԎ'.F˵\w<K÷C;.~MCt~58kDR8-5bh[AOY5+A&x]^Lv:Znϔ+~׊}IZA~_r PA旋r֍ٳzڍmr%2D14, Pmc9e.8f‰,NlShǧ Om-=ǧ:ͧ|*SuFdvOGWq R1<ӎ4\ v|?$|{Ǧ쨡QvvKg˟=\G |}@aײ7a]9[=*٠O k&DIrE/`gb]pK˜t<\uxk)x?.l5ËKcOtU W['L:_D 8nyqv6]|2.EkC@dMp@rMרr?Lѐ7f»ctJjԙI}^M*7' 9Im7xׅ|!4!yZf')o0>wdf0L9]Ry$7ڤ4Z=OCwoAo i}Qng֮oܴvΦH9zXMM;(Uv,.Oآ~1q`+[DWh.t1^ lvfVȽ>=B ЈJs3N[nɗ orA ]Iתn.@nirY`TrOrQ90Ҿ59^1:т9Z}Yx8z g[?~۳{-iAzӂβoiA.O rM:{'̯oyOejVy;ٴ'5tndQ ˚NodC [58;Qqڂ:y;;;E_] AZ[NhdZ [} 4jdhZv|eb-}Et n\}`)_R{|=H=ڔɲco dH~; >Kp0zXM +Ȧl9lܾ ncdݐ]3[*ȢVAV 5?~^sUdgo<zX#in-wB SՖޫ48 f`=e~^Q] roΫ{ϸ`=M8A7.O?.do쏻R->/iyP wW|7v? 6]%킜]ծWߖ (Wh=? xc}#c=|}׃,歪nTS^ٍ!Nއa Au|| t @LVJed~W{\B'rA>:!q&9oB`L?'  ȧ&c5c*peުj-3ٍOG> |􄣍LX~`O/Rbߝ(& rĀh/@oA50{RG|Q{gk:%r?=DAV(gyxs|x)Z|l]rh)3U1Iѓc' r$AOʏs^7|<8 g7hBzo(3]7 6VI|t)YrWM&5M1掋[݋KrC>xCbL` WblDk|ӲY9Mu|Ol]~7ˎ5%dϴY>]a1=9z m9qz~?x A 37;=*T9Лb7=邼6]yW_cӜnjΈ%Zrݡ/q;짌,C}D]5#k kg8o18c˱/sn%GQmw?㔝u )Hkgs|SWq*'L! r^@ S M(΄hqas_g):4 '/χ3?&N\_mt }v A]Mr,d(oW 'wt ro we5=OurԒG?>Nҙ)ڙ 3};frO?ޫq'31g LZ +::'CWqLx Q ,/xCy| Og}n m9~Ty!#[5_/Ga?I[@oi?#6iP㟝7u=;ݳr {f-ȿs).X5m6 ;^_,:iCj:ܓ:$' ' $A8)?EGKU] m1@%-Yt$R6G9C8G9Xȍ{;`AV,* Hq;~?s/99A>*?}w~9 Rp' c܀; 򃹂77べ<6Wgt4`3Cn 6ֺNc ;a{^ꘗr {e+ ].Hry7\C Ֆ86[zj\W,pݺ\}Q4't:@fP>rc +FF15C,'бm:5} *ȊSOqn>upq|;uة$,N֨ȗj+w CWҰ"״BLYߟ\ oɘckuS`')ߨ:hр; A^]!ȑ,/mںixNv0k[dxXTL:dJXȈ ?UisN}7I\_wx3zR+BĨ$օ]HH &%!UhZ );]<է8O?>;{wnl@[K'͗ZE*Oh[?t2sKszVtA~p fs@NJ+zʋDJVzpLl ѸWfdJA p-\YWfq1]=JA^);YxW?Tf^k9h Vsժ<ܳw m>u Ik9zOjAfuojWNYO~;q>tW7uay$' #f14Wܻ:jA^-ȡ,k|K7mͧG9UD92E} Z#șkٶ&skN͏>BWjJXuJX/a/N0z>+FaXY9h# W~ kMk}~v;-{.oo ZAwP?77?%ZB8.3hH}Ɠ^O]N=u]ᄏN#Hygw>Yj?ѳ~sަ-ӻqۺ%7Sw;<Nڴu!X݂ E7k@J0W- ^\kr dp>vYu5.#piK% [}<љDAyL݋Cӿy ܿ''Hj #7϶YkT5*p@ T#t WP>/[8&3A|oH|D-^.101~z:@5(~DȺM3?/|<| d#"|d{-^=<}FCl^ScoѾ}nv +:M4Ӛ?t",&!` a;"p7wK;BLޏ#)Ș#?+GG ~N,VzY%çZ:q;Gs4_?$kNl!>GpT Յ2yS0E*RMirZW[!jRs+x4pfڍy S5k0R 0J20VWe5kK4xY<#|.#CNmF32 γ.ѤcςĞAQXG%QwT,Oq{6Eu|4*э4nH_)"7ɝp_V _-6rJGֆ9,ɹ8'el a]ja%FkQ<#yT\zaS[afЀ 6NԐJ`F[k {xn9iTE􍰴kƚŐ Β Vf w0f#hde L65Ii&CI )2ZeG琟t`aBHm%iEHvx+3O軞B1s>K_xxdXZr[T? 4c<ܠzp)kR!ubrj[pU0"pCюn9dlTȌ*4 e:I/"|ʼnł\,Ȝ ],equֳc|[V/EGh -EcC,ţc| &5*넺Uۄ{`0##P,@-Q 1J 7Su'^e46!guG'Z} k|hA>Zn!r}:{ɗ'ߏV½V z]_TI[y_E[$~s _#,MRA.\*65Kz`;[hWauu~]q_auu[GlqVY BQS|nkA]CpWd?llo\` q 1Go \3"R`Y 90Iʰ'YFjcx\ß62(AFZRd7Z#tv5jᮌp?7ǖQRlJÎt 9Y ˣ}6Xw/6>畽 Hܹ~$`lgg:2s @.+A^Z׆rm$fY< ggqЩx"p&4LcVXh5 $(l4'?|U.61;ZuHMBG3i(Cӫ.PS겪tяe ]t ۏ9ȝbt5M "xe|o .Kq2A.^&?FGau2kJ`- %Fΰ{0*A@F` Tl M]<5vq͐Qp"7OVԢʚ\PNjodpS{B'r B>sBǜ_H$kp N[^獚' b;1Gp<ھwPW7xIi'5ݞZoE.g6fߏl}{|_Hn0dEpǓ^:IWOގT_[r":^x{r"x ,y''-'oy<+g< X~% Gbc =A*8*k#Hfb}Shu~[EkNS箉~;أ"Pjz;93`ii{=5݃1u3[Xp3sq,c#p@=0jvԐ؟d_9U1W**]&I ik&<͑Ч_<|6'YTMlSJ玺+J!5]r!, nsX!\l Å<,lO>/pKS3+@E <^(Kc{*I8IH>4< @Q]J̲r9 \si; `Sk]@cI%XQx)cݭەca9y {hi09$S`SSK(b6/k8GT*eW/e:tMP$iKҎp$֯̔dTˍ[,I=QOIfMن5M5 RRŚ1h:w*;eAI\ƣ؆3N-|'[k>iҔ--vΒ)[~<.nd=7rI*tP`Ե5>Zoh߭==z.?+q ųi?lAw ǝدzQvEϩ@~BN6o< TtNsWEp<dsYCi-ThW=,@~$S=z=p?!Ջesc9^+g_._*#|.D/ϕφOero_HTx9\|4P6?\>X.mze8P#X.+q- M1gES9(JT5ړRJ9fjMMrKJt/ivRW93?5sTdF/t`\>Z} -,a~Mtq?۰OUI_hv }4=ixMC^`< jMCkG5kiZ5F4U z_"yƍ 6uq_Q+ڲ/iS H"jFt'c V0w!p5ClVu;?ؾt\ /n j Cr#(Ȁ6ڥo4%}3/M}祂w3*69Q) 6b?\g 5VwofX XrigiQP-5=6W$j\!HJA2W&v[+)_D1/OTWdy;O~qݹ kkF}nc"\EbGF?7al'W8{{oLRp9Mf#>'NuI >|efW nbZ Q^|G{>̩죭fVѥyF$d.N MKeqnn.r uӖ @JfdkM*B$fDaQ>_Lmny5os:L3k^.O ! iFYiNh{sϤ|JZ5s iL]E_Ys'䃫4]}M{/社+'z_|Uۗ=iD F>`UPal1evb 8*,\&4,~؂ e&KCt<-ef,L%*nˬa 2mm4'G^y4t@(=$v#~(I?ddⵂtm/bBb;Ό~A=ޢ}3jT[hܜ42f. Es3gi BJۊεcɚXT5E?.}e^`mR/fVU9 .Օ6\a_nK\ 0{XpKfβ.,jYikx C9SJfˣf٬t}HbN?Sd>el7-Lb>.TS)0u`+ 6;PpZ#Ią)r Rژs:FmAfSUcwaq|4TY3^,AhEg>A &_)c>,E.m鰐ԙo}˵qKN ru,.ZOV7}O|ohfuk>gݛ^.ʻΜ[k-WTj) [zu;@I]"~:i*8(DwMoc_˘BN-jER`FrʢqmP$m/uO0#ڼqjlQbG<ǂ\cAq2/D}4/އ7nѕQ9~7Ĩ}Sy·շ7Kap[`^q ۙ]OZhFkIU&&iAS!x],nDKt:S P/ $猼cl`+<>$)UFY@ܔ)ƻ=`#r/ƥPBg{>mZʉ%7o˩Ukl<+=EHucl5BUm-#wΡ0`̵[mfWl=ZFX6I3"Ckla4j0сrp\6+PF l0]a"CrmsCiJ?Md獂LQ]oLn=YOGɱ}ώ~Cz r \;`^a 7\;M,53eF!)RL{Xb!UJeTl4x-Hfq(,G!,0mCp K-/_fT2:ŔOyAmmcXR͚kf7}ed^Z]]*]Q>7Le*Cbgmyggɼ3A Y4+}Xې= >K^dM7SPw8¯ ZuPq/v8,,FʛBXFD2gfDzMS9fA~xs|C\>uCn%3W_/,s̢;z[=݀_G6=T83ix"NVC`` [ýYדzOZ.:,4RSXmCx+!V>4L`bS1hRkJw4 h9> fD{P/Pj.BYRȄ9JH sVah=F.a dx=о(A{͢wZ e4BVʕ"=OsHsn:ڎjjuPYFu2'lߒ nĹ5cieDOYu%]x\Hᖒ5ܞplHBX9VNE| ` Xf΍퀷&[VAϣ8˃'Yٺrsp*zV:V%Rkr"K@}*c\w&bm~&͋^~[ m o& "~ wey֡ 4$͉m5!z.$'bxt^ԜS(|H7sb*4vMS6x~sA ybl.vZ9KΏ5!k/Ej~"qx-Sx|Q ȡcKx%`:A~N?K{x u+7kQg- 'xs7Y{nC0|N=-kcLHc15io r _+!kwr/#8z>o0;8.*W9/__}7?Qko˄~[e~[F?QcoӸPZ\/'auq5L#7{tNe~/^4UcAH3{Vle6`Tٖl[=am4ZCb>cӻ»nmnW}'I ``;@U>s];a)nΰcQA*,pP C8U:.:8~|GZ GqQS{ wd?ʘ1]VkFǣzGX?u\l=EP;.u^8¾ط08$571*0&Q&Nkj4v)N.qJT蠇-]g #;KTO%l/W9z<p2t2G`_Xʂ>_\i xe=3o\:rk,H~}JˌPBq&j5Nc#^giVexfy%+QF`qͪͳ GjYZZ:mR5ڭۭN3;:l [WKGHtaIfwlm4fE7-42:2f2"g,M l>e-) !zߕí"3A~OyY/}Xj+kx3U7bVfbreJ(c%z`dP. 㑸L5N9lL)a/0eFD!#kѿÜOf '4,;zux$Y @ً%3`6`MU~JJw r]⮄鮈_>koZ\e$/s'$J gꋳWS.aV;QQX mp`v< !A8~{zMzI;y-Gq|c'W79SfYtaNYS".^`L^Xa 6G/1p 혇ix7}T~ p[H`)d. ]_O$DtF>4DlVXd>xO"'AVV5Myνw =v;" elO?v{~ w9K0[lNuͻnͻ֊X_wܷ;[]}vG}Foʩk5Zk\7.F<UWFonsdMC6ds~ 5Rjk`/,öz̆-OVGش\q*(>/ X3W `Pi8!Ւ6/&\,c\8ؘ!^ ^ Wwp)8w!A8 !ݬ"$գI/nK2rG hClb;>+V;.8YlG<@cgXl_ ؃~nig.AbvÅ!Obpw+=PLldfaN=J'߄/!?9gS @^ ӽ,%yFjK̋miET&1$a =-LJS)}#+Qп#rjC 1G7}JUBJgkt\L$E0Iׄ ﶍp{3-cF>wl#8Y˷,)/JB٪f{֖0mi5VQpC4}eR-e v[k34߼8tbv /a'v$;AF.Ore\n g_ʙurx1;P.ڧz3kj,^n5w>4ɫ0/Yv,@8@^ I7RWC0|cG>ɿTL3魦, ^<: jΨ폴e0 8b1#8x3)ph;m XƦ&vÌ{((V@#{L@PSFS>T,%tK%ACƔ|)H x9ZP12̩JP`G X*0(VtGKr!Me'8ܔTLRUuzAv#kW&e q~WJ$gU>Oͮ.d^X X\`Iu;KSb{(lɮlG"Z1IgO|`Xc`۸H9ncxj2v2}̼*65769k9)6'LoB5\N6&D{515ٙMqobؐL{\˴f;O栋p$arT5v#;93&C'N}N<it$  `F/6sc1b7biKLհ\eu4#,/67 -LokIk2}))(lJ~[ۥ F,T?'uZFq̰L18)ߩm a:FlrF1`)v \$RVEN֚JtԶd Z7;t M r\`/ YˉW]"߻}.٬Vi\=qm=_zݧ&E^؁@%sp9/apW:%mArPJx82X|[=-Z_G2p'*iW9cwi8 p核v.c c1#MiJǣ\fpl2.T,VjSH5Y!;M=zpd(v?r"U 4'rE/i[EtHƸc& -|-JF JC1a9SYc\I yt U0Ftoڷ)U)Hd6O&ÃpuwV:Ǖѷ[m-9[v@鳌cz `H+?VY‘8nm VVf"/ LӮ*~T5o!OfL8ւdsn3 W [{#<".$rZQAyTbb.w'*[nY'zK[u-c½Q~QFU5dH}l-把hX6ۡ?j42!.EL!Ҵ5S΢&ݚwv;O휬X֒ "u/Ŀ\t>, :pf<N1@$[^yъl6}3#*cn[v a8[ho.nAC }y,cJ` ?8we8qrl7 9_%@FOGD5>0=QRW$T>wbn e%$oS[u׫Vd0焒GY0xvcJؔaX4 &yolY–DmMyF8~XZ>a41%ҢPBw.._%; %4܊p! Gv˵;g4Ya,C =2ycy#ҲT&χmZcЇᗧB$dѵٷw{FD!lGC_DM%?&H1A:K >bf?yϝu؜) g_Ҩ(: OUzp.Q9K6ȆE"xz,Q zx" Uk;*Ȇ [c}"p}6k',7wMeW417i\MoV[-@6jLfȿJFZo|Y @֌ybvijf<[xPцEC^o qcsv#`PWJyc?`x` ="W҃`j삘̍ز]9᷐Y Iۤ $N6ɧ !B.RhBFtRB/ͤS#kf!PB)9󩠆}_f Q!ڜ3`2u@z4,j`Ay+dñ =[ yRyIA|RX-/σ]0KmVQC"Xܳ"=383z*NнѤ\]h6uz#qsGէS \_=%HiA=lˡ+N 4Ou=ټq̖GG1X51XX&0rL +zF^(ѥұ8ƹvfcc9l$F. >"MuX.$7&og9DA~ ?ɱIlߟybT:]B~ߠ}F0:EqizFl&eDipd4-0s0b^{e5@S0b&R%M̿BjL;C'i|C!E$0Ћf*>Y}? \pδfl2?+ ֳ|6='x>qxc?uyš`OǞ!q8@!@*+ Wb਀J}SR+jބl9t9h%i(+ٻ3@܊.+Ys<5yA Rz>3ßyAv{>gřbypy& ,Y|bc/]m_P xk=X_@V +.E$D"cdmM+ǩS+%+a&5X_WF^HNA/B_59.7ʼnҸ7iJB4S؃>tn<,T=k2$*/ |V3‹ |Q />±8ޱ Qt9uGFK3=f鿑\M{ @-W.m Kh8cx+ȃTA]tEvdFڱHV=OtEAd FAژ}FA(ý,w|_k]\O4tұ6%]MW|W @*8 p#|Xŗv.v:d'^LZaXVcL^e.e!2WMzYOhBciM!'IN׶Qʨ-ٗ^RxK y}rS_<9;tN2jK $+X6`VaK @ 0-[c'lTjxVX{9ؗ9eAy9ǒc6bǠW9W _I8AN|E_a}餼v-ӬfLkd@[zȊr`jzqH?*Hj; 25A}-gPeYlDvW6{9lBWKLGiOp~.GP` &tb8i8Z0Z9EMc`VA]손NlY ́U`^ .殅Zq(ࠖua9Ά"Ybِet8p :i Tr #|!y% w[Kkc (3cw^ ގގ6 Qp/48}b0!aFZ&HGL?VēM +jcX8h2NX DjpIeLBA99qDa4@b3i<-"sfq[RӵE(QZR>6ÿgoAэAۮ _O ' Ϛ?Ծ4gu}4{[t, J>W=l`; TF+[ h4ZX Ɔ07>t.ք gZȑ9bsb0:-!&Y%߈W~#!or >{CdD0>c:1#>'~^xج C%uE](']MEsȥwF肍#{mq>Yoq7N V1i%"ၬՏ9ׅr}=RwpWwG0bBv¡hn؂8% *ha VC0*u"⾰B_(6$*D]Õ12bON:\pmM"CHZ LPt*jKn52̎bsH'(>F䶴F]kH4%}.U$WBp)he%cMMY?# `itͬvG(3fMA6)ko&* o [q|g7䧋Z6tSv:2<(GdNSiKcؑ*E<@i:,$tӫheeL&if3f3]1OpNP-s&5XD',,),-Xmb*-t&}mL{W'M 3\EOM{%a{L~O95O'v]h҆)Us#>b%#8=9lѯ37'7M4-4-P¢Dh M,Rv@"KYE,e*T6+ Ud "VY"n(ߓ;mi󆧙ސ;gΜ9QQVdbأê6{]|(7p_1P(7zrs3sQ3x׺o%>}v*ݷl (=W5ҫ ̷%T-jJ~ #M!ή6;5bt9Z_YbYhy:xBG;mHSZ*z\[iT5;vԵ"ZǕWʑrذVu  i.;iEREQ]N*kZ&A}^XU"2Pf;x x <vǭiwO4 -e|`P%עO-lSl4rNR|AP@7_ 7b_ɜO=d%>uop(\7 ~oXy{v5iEk![,-Kh%YJEd!-K6fT4YdK*$gn{Wit~[~scʜrmi_9hMR+:UX%M<+ gA#'J"(BM1ىk~יXZ|NiFtИC.Y:Q^13$[JuԣMfYz,2So77)2t# huڐFhNBB(L"ls0ܧI)9)1JΞ^mL>?Y?*7E0:n::uyd}ei2A`8ѵze>d޲N՛# ClFoxjtFmeШ͏F3#>$JOK%ϗ%Ǚfc=x=}z󘡞74mB2d>9dQ tM8ێw qj߸GH}w|v%Љk6o}OT$3V1 ~p\E"<Q'^w^!XR`1 K"iPi]jwz|S8a\wN÷ˀpɀp b (;_Y;$k&SN}XD{XD{XE{XJ{!E;(bW}%)\ҢeYYaYAފ[ћ6'爔JSmq!}%vgZ5m@"Dd UcNhMrJGwҋF\}1^mʡ=k KM #6KJvDRuxܴh0:Y]lF-D1Bj VL"-&EeWKf1 Έ݈Q)#ǵS^ę:ywQLʪ,-"נ\8IAʩ&$~;3BT5X:[X8>a4?>y^yd@qbS+ŭb~Q*,yβZW)$wdiFVud̪βYEAQ+rN`OCT߮#!R}%C$ }U.χZm69˶Y]c\̦fV`¨PeoL'P;Aj7CufڥDJ!#GJC8Z%tʗ:Y9okeMN鐲 T55M;aܴ4UJLTj eNciL;Qq(5/ K)n0K nx9]if讛GmIEgv#US:J'o\2pvp:BbLRbLJdtԪ~JLd`S6K]"r3#c(S4lYQWa"vCdTY]`Z>`$j@la9z"G`!$T6QPjAlR $ɊF=DTCW.Ԧuͤޚ: WUݹ"[ XFzC87Q]emVhաEMFZ[GE#" fb@a~i\.!\ ~ mll/oN<^ᙊLc J.|C5L\/Z9MD[;Fwh3jo$f;}yDNhE'nUmۦm+>Fz]DkZ\h4)!l.0ʊkOb86p.…w#\ G?φy$ս+*]}iL.e\d:K~"[6I*8! %Eޫ$uhT+PZM#Qaʵ0jڮ8]%Lf0 S<}.kwHJM4RwIaF#I T1.UVQ"*qbP00.缯D;jsºΗ H!zuQ&"uK%MrH]Vڝ wտ]ٍGCT^MC#U{?*)x|k}X+}X}X}X}'ylq/u{F!CY1 D\|F *q4Jf+;UciacΟ&J_ maoU,j\gJz<=Sqۍ-jW$Hc~D#y{{`_RG{;eDꏤIe==*=}}}8zTO=J}!O!=sl N!)ZF*"Ȋ"M1RiMihI:Ch,UiOB氹He2zujEf2qdLb4N![lc<%u= (?4fz8~Ng|sܯsjg3<_:.552 2D{*k MV{pTLhtKiYhЪBVCUwYޯ[rG;KK^D_7׍>O.mN=w x*Ƨ0>eIR&2 >瓠Ϝ[5>uSϧrN=:S|ꠞ)iOI|JS }m> &>u]ߧu6 |ꠁO4>uhI)iOI}J:Yܤ+@j&{h8&iRYMtj2}(uY'K?*|8+'y}~揫f??y®vi;9e8mO?eWvY;q֞F+Yz/L:K=ծ#ci14Vf?RrvZT#ġi ;lΣܱ{{E=WSu+NG2FpiJ\[;e ~:AB]CeaV>E@8Zc{=r|Wu;/HG+K?_|ӄf Lq4f 5~&xخ]݂,!b>lN/&=Z Y-Z<–ZbB[!?O"%kZ~дҋfJ /~> .~ʆt,|8DG`I f:B39dv}NuvnNtes?jF؏B~lvI ӉQ d1ADNh[RDîJ:CV~k*=XĢdбY"TZџ3$TwGAA.NB*P4z,jԣu?OlD/9A#"F_aBm]۵c5QpAkHFml&MHP37HejlFA%h1"S¾LއkA]"+ZɁC~b,I7/*Fcjb?mwBz8!Kqv\pOq*"t&5^ؕ#VnHk跪'Юa9wg"B~"! Iy톍_s)y?B\E2 "Ll(5d iZ8x5[h%_#!BF;ԨjsD _Lajl=x7GI6]g4BSbrrU6٢/Ǻ珠6X{DoiaXk1‡>>Q(_#J? &/6YMx;In ?i"cBOccy3>&(ώ-_֙];$8DhSڌViS;*5R:L 74'1ŒNF0,GQ ,!mĦ7Y\!]FB*u'zwSQm(En >0q 8ǻ<=y/YbmO#sRb1ji7CϠԨnKlCZ6UtU]"=䭲Z$Ԟz UsmZ%]$Go&և aT3q̈́s! a]3&!|]sƆ M3:mf;\;B`?F)$3U0h6Ib:)Oؓ >p\զ9B] 2#lZsr'W SFbm!ҋh9/1 IU1 ZB$!#ILIr<1K]ز0:*Uwrb IWnj~JB- <);(_l-u@妚+љ/,r`S6$r9rh’Bw[ !w=~9"W5VRbH%GL/PK \F#R'gK!G=Z"!:Z+RBVZ V:BڊZ2nNbn pδYa45JsJ*%uum}Y=q3ArZh~jRVKB)ΠPayB-Nq4Fҗ(5҇EiQL1J%0^HvkH 35pVI( ex1婍0E:x a@ O{mj0$jPڰړ=p{( 9EI K9vA86B \i9bKvN?wQ&~K+|KWJ/J$&Gjcb2´dYBkr˱P .žطc9-+n2ortjt[m/Eն Hl[T㡱Աr9nkhPBvBvM!i]]^M=즎=_crrC4r̻CcS%BEv; 0af!}wfYb-J~[ uo(wDx#BBG߲#BOw߿$"7-rK=ܧu/5TD}G;c'k' o/ߵ%w!6YbgY:2S瘥+4$ N{: 9wBB9 NY#o$@.Gg!Nj:#Yȱ3Š;{CZQ]ƌQSXb7M:QT6AR39]uAx B.B^]uAŻKç,u٭s)7aN*.I B:S BF(pmOͳcX'RGZՍhS o9ۋ\΂'$Ih$O"}7y!UUϊ.ҏئaMVnBm+eB>PE*jwi#߽&T!:ZK/i5Ya4*F!j,|M/ {&ӧ)a7O! ~ aSnF?SSn7VQG7G5!x3RK,&ݧDVW]|2v*^k| j!_C`Y5B?7ry6]Up+ Qd3#yaVu'w>N{uC aQ7]ݭtŒD6AwfZu]#<a`wy]*,Ҩ&1)x u t2Pa-r9~V`Hè^ӫzWs~F|4B<=PiO{xItlDӠ0TYZ+{.+i!ŧ=pS#-.>rr1%yļgV=3^: •g0+'] 5 f:1xd#@#]'[V^iW1꟨*r?5ZZ V !F4RXBjSc,}Dz9z9XO޿{=z5i~!CӇu#ݕ_sh:I9Rk.`)D aT/q^z!,#TFq"=Ge|o-kFQo߶7“z`n@Ρu+)ɡϯҰFf7,M a0`Y,k Vrb"D }4>O-T25,MJꄚZ@,jCxn!,3H gXdWQq^7Rڽ*[ 6s|9hS!<󜰏!zasL2=ZqfkN).N8K /2I9iRN,v܄c&#&gVFèV%Q GUJNFZCzj21ATI.cn֛\]ux Z®NAnlkwxqguߑIsJ5[h9fTRfUÚcV +w8!ofo^J~vu*TTaO;R<^^s|sH3o1jTai}Nzt6yu WȷT#Nb5>VsE[?)MMC02MƸ'_?Pv 8] t_*}+f_Ɲзth_EvoI_oE8ᘆF_;}BxǾ/9#]^t*6vI1&^3$4rL: E5jvPډȒAv*`g#<y'~; y?r!`~㤎͝1 X~(ʤdsFE׳?BFaݏOxE9xAicO6:_ڐ% l{7Mԙ&ZFpjq7SĨI].ɠ#L,Q/ᒪt!gt'ڧӬuS6 |c/ !sIdRQuǵW8thkӎ|p;(5u'jg Ue#3$S!9A9sa @xS xl=E8>raqҘl2f¤1/L3&&VP?+rc>go@#>VG?$⣞sڲ|e !A+!;Hȹ~B yQ_#c536Cș0-aVs^’ XF9ș`'#{|=FNΆ-o/9Q{8fճVMU/3Oo `|A[^`1Lۇ1|W,-K>a"@#p!i8Bp>o':KY>gfg4tYT$Y-x.GW#`D^eonYPϫXGt:.sl%MG#h!wN}o`Jtm6el~<;&者BT}w;hokǽF }?<!q B11LϽy?_~7}7' -XF!;zʴ2$Z9\2J΢+p%F(-#5E9V cY$”]B)%{cE|XCc ^Xc"^d֩yzsȟ3GyI>Y"=JAtXKiyߨ%ר{h8kCN_z2O/TPNWTz"kT%0ñV-f:ը4H|Fe.L 8_0q s7oB"E3<h^A B++_Ahr/=9:^tvlf[֝WM_̫Va~5unU4 q?_ DЉs{~3VƾYMYRYͱZigd}Dl"ªk&jǜ{~˛}h?9xs_\ "4~W2<^z/Wʕ hM[VP 5S=*FYX\|ګk8~տPkWu^2+17Yp.|2ªɂ=~8Gsu`lBk]_^C‹y\#7T]>TzWS/έ rTQO_u\r{7_v`1E5;xk]{#Q̲خ,QKCnSvNAح|i({.\u=|:pOssFz0u9uW_Gwv·]=|dS7Jjd5u*I|*;z*Bթ5 9jOe>1$},ʱ"$zUI`SNELw~*µ?૸һ_YL |c(DB> <הu̕m,E@\'q g#|YߓsW`9s@Fpq&cf $@8Cp>9 Xjz:9۹L]Wc6+; I/gI!&9\@w4SU~&Bfz+˵gprgSZbׇ*BC-TYt#3סPYMș);ә5r|zY'(GMuzڲ;LuTrSbL!Ns MR3ޔY_, Ys']Gin ir-xcf#ԘP{8. twރ-伹_9hxFs9' y}ݯܪSYMjI})W9->I.orA59BsNA83ǻ\ ܪS9?c+<a\BEsExg|<@+3͙-h5Gl/d{#+P9@Wv9rEp/ 9"!8!<2{Xdz~ؕV%JVZ924Sq?OǮy!qWvv:ef5#s/m}# 0|=2t6}%ٲ9 B D.|5 -@h{=zׇ=x<V<XU{H:[`¥WM+O};&y;'#qvV}ׂWեb4fԦI[('/Dxc!B2e c<ۙ8b<3Λɹ`&"WEm!t]#~]<%Jɍ"[e <"?!rȰ,.RE((]rŚbU,_y..EoH)`\757zM7^x;#0h.n?yRE>r.{9%%%."0KۅK,v0t%f}Z^Dpo]]]4+b}ۅ4[*:.E!maRiKs.z[6<ms9j-CZPi2Ɵ,({1N$jdc\^c{ =-C8*97vPnn 8w[B˜^ǿx'^oM:[I##X 匧O}ͯ]/N]J8ߩD6ǃ/Dg+]uxS t? Z+|<^G<1NFڐGvBRw1b=}<{D|q=:1H?= _1| _@ȹ#o[%pr;ih!dK AR.Dj$yVr[JWinnl([-JoIt* שWT^.ox#yw#oϝCTvBR X848M*Repx; ݢ!/ϵZ^PY6ϢfҺ 5\,0/P,.O!uQ B̴ˤQ%3کLr<,|aջkr[F}(!t6kگ0k-qCR1*d꺢ZTPZ9h8Aq _95:Ƌr3&e>jݝwuL%9+GXsqf'8xa{+c|[xZc>r BRf.F0 WEr2ҝjFFIBE lP,T60gj -˼VеkF]zym`t-d T A I8{spskEZ"uC^ǞovZ%pw6cy;I, 8ϠuB/S!L[0C3s_^ZfU-9nk8,lʭLQWZ/xVGXag# g̴|K9ǺAM 6 4 xm`6c7X+÷s _ـC(Oו!Ch@rr؍"oD!e躑=`I}n竐mF 5¤o>9noF͂ü=߶9ƺs6#p,_ol{)@fT] Tڂ"8maϯ¡9A8܍"5HL2Us$H:[ƕ!- pUߎPc;B#a{05tsΑ]ev#lp|ȟg{0zqw}8cK-v !xw0;a!8yr5<;؁pV5+(($N;Dy~DEr85>*!84BˮQ),a'8C>Qk{~}eD\j>mvj8>R#m_ĥGxr?B'ǥR9cA1 Œ5(!*yjx"!DB>$x*bU3*U9i!Vj8V=Tw4 nrwX#Fxs=Თ(>,ea#j8.{B$qB?Eh)BO㟲J9 }Ok8 _'sm ;r=ۑsu:A牑#=^] `=I.ȿ=BgS>|?cM?gi4']HJl#ؚhZM|:E*SQ"Q&)$t^\m=*QG Go-i#G/1@U9qaQ}4~m{L16<1'?*#Wq©cg4__+y # <.xgÏSr*vq?#sAMLΓzB3a I'Ogix9"N%D9zRpdϯTM?)hIM'hrOaG~"s#x; PåA2x~O|߸ xaokxr8ǚ88Gͼj#is^XY>aϏhxsO 7?,-[]o o1޷/onY'ȯon!\P9n >> Αߋ<-k.8nss|?Ov7g<3ABgXqU T xj<`<% se?\ |kp4,8^ҿEhi/oeٜ'_Qտhx.r+]~Dc?3r&y&W 9IC Q1+O @\+<ԣK'`DIpRxIk|I^"v\ߧ+!]p=ԣkMT{{$LóPAo=\ǪO8y!ς+a8Mhԣ]%KpWr~% ^Ǯal_&&$oK}IH\]\)K]IHvÂ+/L'8!_rwx ;GU#_ ~O+od(QMQuxFmnP+xޏJ?}%w.Vph)͂g}乬 $O!i UHPPH0:1aUͅRw,$x [=aUVviguCV!X;Dr6q6 ;\ !2ξB!rGpd,]͂nKJpPˆJ+o aOZYD]$yDX-đ:O[乳".GǷ72OxF#(F0v?<,.Ͼa~pax~$8~<,aoa]ey,.&8XRp(Nm1Y,Q1'x$8'Y+xjKZJl/<8m%ĿdzYrpppÓii.'sxIToJPp `r)R7Z$lrz[ՠ}TG|<\T}Hp<#dy#.!y.p\& 1U nק#<# # B#%1 ngHݑ{G[pܟNgqk#htqV^A3x5O|<] v`U@e|L'H.2;\9ӓ7 R?<R/4 Β$N>$'8|6__]'H' u_DAoXù}lWnAp \ g$ۮ$$A ϔ\e3 $)tx& ;,x͔LgdmB dtϒ\uYɶ׻u>EYq|!81+Y?_%x͖-u79s\#* ucjCHݭcsq=/;Hm.8c52kk\#9OqV;!x:kd}\C?x,8Vl_%xjOt'HDsΉ'~ TY^ߜJI:xO|b4N#4x+88-I #N< N0t3ty,x]n"y$^a_ӋT:|2o&`fW'lJYy7h&[q7_9ϔf͙$8LɱL-gU䢂LL$oFmqq|!'.cRPy e]K='G ()WۥN}6AEgK aQzR߳%3gt6+.׻&w,J>78H 8\g 71+)?G\~.~MH@I s%\u.nqW<+)Ղse}A (xG1%N!;wܽ`ѱ#v4&8I8<1IO8/ QR ]GyO8L#)8Ke'O0|Ws&8AI :\O/u'|O\\ /M\G9똔:. 8Ba()m_`&99~-8`O4Ivq 8nI?ESp|0/$Ⱦ BQpsa&1rHP}! p<$8M_Eeh.SE."]$9*.r?$8JTp|?O\DEϹ8^$k~Sr,̼`Œg‹(8JX孋 .&=q.N/q61%,K$NJK㯾$ xztq.!8`-!xj/R͗yi8qr\N+|Kwd.^@ |+P<C3@%f?Sp}ϥ+eÓ%l{?㫒\ gIWw![+}}`#)^Gh#ޡyZe "QwJvz'!;1ua6uKۣ=k٢'*a8Nܣ$콌$ݗ9 z{pڼzp9 iHfjv,圇}H_.S~ʡa5׍^ո͍eihy Xmn6]^V@Wgܯ6y.v|K"_pv Xx| 6B+>>r5qr. ˥~t9{|yõHs-ZָyKCKkcM-}m5ߔrv*PY4q;Paq]c0*^||8e*Ga<|SYU  qU9PeHJ^쨣+J_v]A~ WHq/7e[}N4:'<|fԹET<3Jѕ#$s;JaGnt-ngVuTm'7IX^{#NtZʡee,]\EJr-*oŶ rMp>AMGornp4M*U5@7Xज^XiuU!>kh*}Za7|F92jiT^C0Y._^C``S.qٛ5kȲqo,kcE_+8U}m }r *P:dU/|2`.a^Ћ&aO8q\YDC51L;_GT%bU™=;v}-l^n%X6Tgc (^ !Iha>GChEjRe5T} {S=^sw, `}ᕡiƚ `܎@E%]?{TN9R4X60 14X8ѵ}b?(u|DR5O阍a~.n&.Tn3VbY|#j]]gj!""){Z?|}-G# }AA?7g<ύeV5kc !'94\=P>+*eƇ{r񿻇={ʀcb}ouΠ]vES0 Pef_')cub$D끯9AtIτy={/?sGjZ5꛻bRpU kn pA -$v68֙:]A! |#Aڍo a?X||mVh> X{@/3؀=T=][dZPvW1f Q/M5#a4IC>xоOh=nt=&Q7wSm7&nrοnss_t,c?tlܓ3랄\qkC<9֎kcF9!p|ex lxn2n4BSo2z:`63p%3-ifpEeC@a9>Ѓj 0&RH\jf&0= p?p={;g qNJC{>p]X =\UB.bC :ACU$hjМPЛ1Cr̓nddQxjU2`ûY 1﹙`([n#Xs;AKp> pq Ny{u")ZSGqH7@+H }UO?`@G*1˜8f 7 Tcd@~(|,Qc{7}75mK@@-Ȼyb V ݊[1*r@b OV&O>pxMmSl~;]M6_v'j/+guMS]'LjuvDzـB<әFx"u<BCGBg,c3o䳕41cb 6pڈ1~o0߈w07bK +P . a]!C!BI7*+gQ3)ߥSBS>K×Mnb: ~|L4gָ`AFW/co2[X 81xPQoPz7`z0hSKe3#L]hqzx?ZjA'BCX~x dF]6 9ZF^@>qC{?b&~rtk0!iXfU?E<{Y&kBQD\gb,&[ϫգ5zaM>f>Vr'+Kf5#:YY(=V3eV>g-B7^G}p<&MY5Y"k݁'Ϝ"akfͮa5/; kk,ذf9Tp#Lc1G6Y2HDz [#fzTe_4h>?T[&aH5'I5R` SHUTMWG74R x0L!S 2Uj WXLԴtJӐl/Fq {zL]ҝu%|}/[';c7nnlo@dgBH&>el;~-uecoGiLT[4111Z1b{XNن0S9^^TMUvGY"Sx3eJ9poO|?B|]?m2~~ۻ=ymRv哇Wj7D4ixDi>dʦ`63P(j[FSXME,RmyJI/?cY gܩj{:|vwJ`߹N(yD֏Y,z`#Z&W?rU_ZFw~G8|Q+hzkpKO^\{[[ [ e{\ͱ_#={<,?JG :\܏ ާop67wÙ P7x#pz**bqLg}B7ԝ'I%,{\5– ޾iƲғ754mm26Xwb,+41ݹ/n l\?N >. 'cky[[/kܼakolҐpƣz[c^inL{.6~zy.1f6żgRXea I31 3ĻpCdb^sa_AWKRs\^` u#Я+MAMN3z `QgܫzTVXaV!W0j*rr\T{JMpZ>BIW$$]Oʸ|' >x︺@q*3 Glbg_._)Ua3dbrk<&=!Gkc') *^e]6^ ۋu{n/=u;~lW6>Mp?- g?%:*չU~nٶi3 gWxԕ-^teX6uϙmb]9jy!L57f")<q)7&s}&2LA#UD3&֧L{?01o<1aLϰS0\jeV^$1]%%E pC[H׹}dz]^]_ yT4g툆<Fzu7ST=RDn.'aa}][99dnyΉX迅w=`n<`:Y]WaXhƱVhi{?vLdHWS2l'*7<Ð0'cᙪj&SQ  X:;w<`t86_ڲ 2~_ƴ8Zorǰ+=A}=a~ç ߐro aY1uX^S$tk~gBᆑQ|XW'xy>/B=No5a^zT܅`_8ch8=,41ń"ca'x0dK[kh~Ay@b^6- kQUZZᏸU6U_<Ș,,3J5=)BsP0M)7ƾưtjqvⲇ1 1NqLG%FXH3TM3fWnH=| ^P/Ɵ+w_KDy˧꒩V}ᅊa现r4U/ȝVC)^͉B[_)N: uJ?$ޑ@yokilmۍX?{mﶊ.pۧ+V/rKwDpK/OxijR9<* k *Xo^|๗ ^zY/e^+pc㮋>˜аep! O#v2܃`YT)F܄0Y=9a*-`e^TYqύ>ht^S;6ʫzҤ?׋~(?$BJqqHԗsu^ܗbn%/jB6 $v騲QZ! 'n+BWUW ^_&쏆W 0;q 9^O7b퍳wFz#o>/_%里%b?|w(Q?斆^ךŝ/.}&.f9F1  %0Uyb0])׼jH֗t~^#H{`k/_#XǢ3?'>~c=+#W3%lylE+}n`Y ,x3;KUj ?SuWv/tNpu闯^'AP㗺^A?}e#/J/~+¹>X;{٦~f^?g3%u%*1 ‡u1σ=Bw2}/˺b0t4D0Yfsb*a}%Y1|yTT]R B\_0TU1p. >[lrͤ·9z y7 x`\&oM\)5cZw54u*GC^:*]_&\Ě#M^؏PXO3,vD:g} 8 SMeUXF6K!.$+QLQ4*npCr2/.?[&%}[gEp[}_7w'g=Z߰z֙7mjشy~SkyMk es$Piv<Q~YdzX&lq/?,z~\<}E'5ݤqkB‘1Ыj9b&N1121gz'*nG|qU,N& ͯ*BgF`eVn'Iף.nNe6η v-3<63o,u'21G##4{7kS,ΖW XQT1:S>)a^vlV<*!-' @yG;!Z sCŸ[F{5Ŏes67KGqr7AxMiXYߙi唥<g^OȮ93 Q:[;acy.%, qqd|Շe!a=fbTb:ŔfҀM,PX,:=|ԂPaJAY4% KO8z Z;BJJ{'Jjr`v9>ǎ#L3 C#%~,, {rۋ ®QW!^iQUTƩfX_]yyU ڧB+`I@ jfxqh< f)1|"CFTT{\Db)hHȏ!亮ZR5REAh[r]"9zbaJ0g`*rT#:1yQ%S7m!$s/t5O0@B.y5 x"~ 95ne3{-e@7[jRϾmľ\ M>򫙪:J$jl.>e)X#E'@~C?H,}6,G)'=h(>kvu~I!Nѐf}+0? L%Hܾhh@8sו:-} F/1"}}ϻZh7[Z[Z7b+?aSYuT ^-ǡXCѫg_0/S%E:ajgKق:Kz\~_ޗr|@ǯ5%:ww؍ϋ[k&6Oe;%. ʇ#@} H}]0rᘁ|8f 'L {:t;j6F/֏^U^\7'ԅ1V!R-8 E1tCB⧣hb:0-Ct+$xTf5׮m!Mu UΙŐ?4(THQӽiGUMX62:擪fA,, ʌ̏)Sg̈>3OLMkwóffL=gf?+3[;#wxtf. Cg 3 Rj%[vEA{KB,$[zom4gl*_o7f[3xi,9W;A#FA B`H,U=y^Փz45TMMQv\icW-r{|o^Ha/HcyP\Wzؚs]S>+M//n7sugró%o ~[9o  ?rQ= H\ٿμaKkKq>Y+[By9E*T'dzU<ɇLa&:]^Lo`^Z#]O2tTY%)UM=O!kt@}cSO1W} bH#"YAWb,D@#,9#Arh;vHunJp̫{du`+-mB!B=F1HƊ4{ziuP+{E ca}Ae-B^վRǘ";m^kQ4,<ӸXHW{tݷĺ珝m]<1c9~ A'|""N×;/X{s\[Pxܓб'aUOx_ok36܊ExB\c<jVa)+\-Q!Av9W'` M, Xt%~ q< T%_USL\/`(ĉSyb% ZC4+c8}2S3(_r B0,o v I&ibVpOG=LtG&-%^Dݣ,gb[ w9^=İB5٥/v dj9JP<C1 ُ^v#7[pRyOO\xPJxih1+e[ȣU{@(3\ä{;4Xh01 'aZnY<{iAkn O8)K]O.7a@C1D#]9jgyzn8^E96Sܶ\I<2F8)jG#/۠nuzf:墎΃1gF,Pp$DP#'q_ Cf͡#ϵ(2}Tԗ|׀~Cfidr+OP2"YnlTͼܰzf-vWuH']}N?\SLg촋4~zM.^rйf-kvREfGie~ZCEf<bJum_3x>GkN*өb#Uh"z3 Uaj&exL5c1N̝VXv KҕX>_g{ ފ 8KR6 gi |/EtFl Vȧ+Wk=|ȼ{TzAdCGz"jU"螨ےϫzTf߅~>'{/5< jydx2pZ9 ;gzW QcxSɯ҃F`(? ]E0^v.wv_k;I:dFgO  $BB@\ [EFQ2aQ Qёo5;}}_w/ޫsSN:uΩSx6]>7|ϥ+T=4贛-/seJŬ=EP_u]SK)J*H `~C:\)¤0E{sQ)WJ<%7ē[[FHA3xy 1@7 ycܔM~{_:%d_2Hd=P~ ^2jągDm0¿ ?H'~Qq¨-|1)i/͗ ^U;IlvV7h8a5~* |UG9:W@~APE"zPolT(\y[^rbyeAyj_+q^1HJ{[u5@5.ڿSp:li8=lπM[.NfHaCi(3mg/G{ Ob^IW +y==,3K|-i֭@>/nM j ;K`3 t;5C۵դ?}  7Fv\o|nUh[uGFͫbk淁I(6Q|}At؝D)dkZYExZxߦcslxԊҐsǖWc=d| ɽ[zgk\6|C] _;C^_QKcgغ6 QZUL-N `<.S|`فXj5"NuSQG\ +\zҍ#7 Ӕt#%8旎4d _"t,kd;鬓6tg2 ȴui+%JY?SFkw RA AEE(q1y*qqo"+_W m{9g3Vڳ};.][5Fjb4 #\08SMWra'*H\؇} &nX>uEfgJK 8=l=G$5MV(+--Ƥ" ɣ]B3b Wo`T YIQn<3C.Jqhq4yQ̢IE9H*T4ꟹ8e>z16SkDnG)|H d L.Ee4` Q?LXl .HvMLw?]L&JMp1-"M,vfQ7hca e{%f`ؾ+7hehֆuRwIk|pm>B+lhO7#}=N$Re\OeD΃9^D%uJ_7e~4~`(r~#5yP?@,XtWf?JN}Kn}/BM': k`P,q}8~"*E~3i7#WJ\HW8aߓ9|c˽x'f7)4Vp'45[*{ʧibja=r/p;KNMک)jV-WGҮz)RzMlR4CS(|cU8ÝADL5_WXd-EV":,EfY X=gw(ge󦮮t<Ֆ/Ƚxkam h݊f|nc)|fP -NJQ~la䋖"XQվw,EVıKNW'x;c5m]C5Xδh)W*rPA6m.يV턿K":\DN\m~1W˕88sC\g tq;FL=l~E|4e M&U]18,'^_k"ֶ~ߗJ擋S\RoS ޘ7\#?6偸)j^mG 'ޓڝϚvI'z3]HWͯݮ}cU{7,n㧒6C񼨍kjQnqI~+_?T(db`'}.1JDgox{/n8z[öpLǙޤY038Έ%h`Ȩ-Qo$E(Lgbx*ϲ#_ck`M$ÇL\;|Ț4dZwFq7T|2>1G3\2)eVXo7ģ"ܛM"d9U~}FaiE/a_vlL7\ϜSdGNs >{sj_'7]9sQak[GMHav|D"*OK#qGV] k`5&1_^nNP>᣻t!eQGPE,ʙ;#o'?ȏ t|N:>ţ%&BU9ȞBBץqqC׍o5v;sB <FHps'& C<<˲LaQiZ&921j$v(P@3D(o"D,k8sj9bg3 J=J7PԓwIp%cLbgXF &V{3lՒ0D1cpt1$[b~7D; 3h m8Bíir`c!r| aeUMz^ wyfN1Y_T?SLav"B]A7+a?tgYu{;J VvX7?`EjizIOoӾ/eUϧ']fJz~ˌҐ5(Eѐ?5DpZ%<½{woߺG^ٻ-;? 'bN'DUgP}>m,Yf^9geE)+rbǹQo6*ʹ-M>Ѧk}.TW8}<4B~A=pbH;r-ƩlG8b&2̇<6`3p KȰC,>T8Ma8:°W06SƦތcH,HW:? R7I{[ X nCٸp6@8=!c4Q]OyDsaI3ܔ}pEVH^>4B֗<=L(ϟ`dgs 30 h .C%76;)t3a :TϠF|DSb?[ikUdbk—')ri"k7qѝGQ\Iޘ?k=ؾ8յYxxޞqB}qt_s?ȇ> PoȐLLaF ;/zCqw x>q{. VSXWk+ZPKElؼ Ū0ӠTxaqU5riiE/GZ_Wk@oȹCX\ .3",_Be$1Ԗ l%-VgX*Ij:;yRu`yaUY/(gNnZ| Vh˶;ڰ"L('rf:/3Cs6.&)3Df2SR;ݷC(EIxin) N=3h]5F~o7_Nn'G/w%F` o7 p}yijw;XeCOgja({u uarjFu픚I.Terdw-]8$  cҩixptjFf gƺLx_q8/p˪hYۑ]ݡW:FGk"w(\G444#m[5/Z-_E6h!\>]\Zqh! F&CMa>/9]`S+tYX,#mY뿝_;ySt&HDEL5pALX=<7ǥW m HNEAShyy4ӝ㉬IZ\89" rŰ4 }/Bel=PgF7+<oC0bD zS}mUNyy0<)+YiRdBW]ΡyFN'u[ngd Ќ]-zt)\z#|`Cj'2vT핀-chLr4pɻ')&)I Hv"DxJ|ODՏפ/QUaڀ1LE&_3]n.ւN=TV N@mʼ{o[Z0+t>7,ijd=i.*#ojlPJjuG3,sa)gy``ky%:i%N\S-<6s70R2:wr6i~caUK*Lz]u=0K0qv%e~\BrĥoS2DfЇi #U$y.\E0ӣ'|.:;%RLaX#f!`),G!1%n82h` hmVjs3nRנ[ +gZ+lu{וS Po?ѥ^et:7XkvW^bURP>/uo$i~NѢϩ;?&rnEv+rVw2٭ȏy;_בx<~,]Uk#sAb{l_wE˖Մyd|F nU0EM)k.'`9@p֋d;g,^'9\=Op܂7qeo!^`ty86c'p6!QZXv- 4ӶP k5zƱ=mi3(y5 K;Nqب3L'`31DN DoOboe"Q=IB"^EJ\u#<51.uAh(\)y,\a/AhQaoZg5Юj=SPh(tzv[HﴤݧOSi\9ޘ.TZ^O:ϸL£G r9,k**ly2w죬?3"Xj,7#6p-i$ p t]t =Hi >0HGR9Ar,Z ΁p  Iphh.+$ <17 J6EBt+O6a>RLBn Pd8e`n{48bAeмA>[ kTbn^/zuW7h9E;8`v'~$˃ _&ȚV7 -fC[@ٺQ[$ RY>kaB0y"NV5$c1)L8SQ:Z~ T*~>]7lAM2+Ħ9%Œiwu6[TNW9۱=wodsr ؎2txkxM9˱.7|)UeDQ>TBr Ö=UXoWhq^ ]4 #Р&%EB -j4O.SQle&{9#|n|CߋvH(w&H0 4aЉ *Yb,d&عЄY 2:~uSБWxP6}%Ta_HG)=mñ*)X%'ϠuQ:yə[D7Jv=Ed)mhDYs*򱹊\97so"27w?]Gz8*<7Z_'T1FqyUvoߺ[whk :T3 8L!|l\uQMD[LWCGFd8 134.l&yc|^BSy욗y>?o|?o߾Sܿ]+?۹xE| R ,bhGӍM'0'& )9ӻrP>!H!K'؞*'LȬIΏ38Ouʮ3$M`7 ў#1Vq|EW*<~j<߾myY_ aI,Pd@m3#c0m=~8߳+"^gtM1}D]u#%վ>ooH{<؞ 3{lflt(_ky"s(2${E>DԖQTe޷uy_2{D(Q?t!_·.a>ɆC~/t_\T.MRE]Hω}t8-sڳGST+DņH~A=( S۞ G;^4ubs-= |('V\T ptL,2@egBj#lWq+n.|\ J[~xOݙMDg3l3e|FcY3,Z0Kgr&wiaf b2`,\9l W)_[yT>k(g76eܕmYs\d5L8ܬkWcif :Os%˝t&;.6dKź|Y *إ !Ɗ ]RGI&͖Fbk3֕nΉUW$V(D~[{+1W֞ qxj{a9z.ی0%Fs*f#}!,d8*k>5x\eeܵRV&IL]5sK (T&K>2dݜCF뙤IAGb|V%~f"V䛫|_]5lYS_{U|Gk;*xdm^z\X8f9جq`'񀽑VhnEM)`;p`K877M88Tup˛plr+o߂ga,MX3'.n&\o+ `,ë!Eu=2A;Au=hL :;Aw?n̮.Q }fS@͔/M( ]Uז؊G_y mԒk*)QyFKxėbDm"Su:EIL:kUK~V{UBF>1c.q5ܔc ]z\("KT\|ةoqSr?@?+si>^[|zϥ1_Js:Şo|GzDOl1sDuk8}3Xꉯv~j"i[ӎ\^O-cE{ٷ{kkT5l4WUFU5l4gUFV5l4wUFW5lVn4=O"c?pu;ݩ)rsOxO5&r<*bUeJv-úi6jωSa̦` Ji*iZ25HoЕ`Zf3 BVs:t1& SBM=nQZM!9E#YEtSvS:rGw$2ّDڠ6(O}m"m(S"c*qGFFɽU[mqRuhf͈?UK `@^lI`+ۄ.w.;aQ;oA@ w[*%^oq]YS`V`tH q@f,TqMEH :! f;[F8klU3OUSx"mTbw7Ћ9?G2Z} dtL )f2Zf&1M Gsrrh @C]|ɻ\nWުQrXf;=.ppDEB]&RbeE%TE>-:iI2a\*7ypP\.\wHx"^|6| Ya V޿&_.v$ƛ*P_UbӋдM8͋A]p1hR>w :p9] -x _Dę"20l\}h;vp@fFI{ 68jtbN%[J!IL"VZ@^'X:) iK@3\m5Ona7mYxj3 e7K3eӟyJߝFB0Xu:5W5N6U͢m8XIK##[zq/؁I: X@ Ka3,*~gt.JM^A:o}[^T\hJ~ I?~?KI:i=ÐYee>Ȗp1E+bYd$xz-fբ ޡ͢8kMYADW)F4h< I˔171q쏑cqxٸç00fh`ǧrHN$zyDN_EoQC[k퟿8ӷWCN;"cdmMY] -amհѶm+ep28z8 {L>gmyl_>Av.]'ɋ'dkNiб%c+{r&fĀQl *dB` [Kx>c8bz8GAJx9Fd"ydRȥ+PSpQr~2Ŭ uTGOHKCvheVՆ:3z{U]_nJW25|qwU=jӒyc$ſlSmy[";C?C\>v}$)\hmm;nݳk[ڊ;q x=wf#~Fin@R}E—"/S&{DNzQ Eoz@9R=$e@HúI4XYn ;`uE=ga=DbjB尗@y36frr^>OV-f!_s%1ׄYѴv9&!Gq+SC_w9j=jjN>6zPVƩ, rl {܅ijڄt{֌YpTibͬG޷t_3kN(xuQJ22{ ^JYr\*|0$Rݬ]*xCIKzW:7C-{Ӥfb}V:'ƮX8v?HΌ$PdEQǷCw(z'^v8/z=g޾j{8︀ZX}ョ'} "?F~\U?>˪~LyiQT0zX#X^0 !mbwmJ}­+r%UoK߅D4GWt[G? ѸvWb[p"R䊳/ycw4.</n<At,uczd:!{S7l}B̭۶Dž(hd0~!{st}i]snɏFq!'ZQ7GRQ'K=*ʈ`^r"'Ứwpd =qm4Ob<>u7w< MBƣд(4m< MBƣд(4m< M㑯o< G0}]o3]\JNT vOe섎t?ߡ:;;4J. ulك\}<1_fŦ}y$q\b+LI2]6|jlCuh= ~;nh#ێyg)ێ&i" wN=;pg/B?T?2ᇦd`~5OMw94\3S„0] sK>`ׯM&_ŦAmo3xTOp= w TDŽ QsQS9y{Luicxk=;&g77i{&|tqLEw?+7wz`?GŶ?/RMސfH$f'æewMx'leVAx^e-k@C\ntů6k,rkf4፰=o-sQ{Sւk,;c&l zѴ^0]Ƞ7 {4lsō.< g/[,u߰\&| p-fW--foZb%Xl 0@>xR[bVZ·,kwZ ,VlNe֧-e=5 zo,xrqo}R/[rǬz΂Z..y~kmZU=i8;+f'Y@ *ӆ <>D'~ K݁& pҵT]C;^edy_f>lV7ٰ7+K Ɲ%`Ovs'M >\hAgFnu u*M'8'`j@/Zb$ #??/,`T|zh&xzp2T{E ۲mÒbI/ok{522;!㰃蟘 ̠R V{3/;?s 34}I麬@vz=ֳj0}y|,? 04Ẃ잯9 jvf9'XE|Ef߸T-KR'P|hr _-NxKW,WlYVUZXҲuCɰ~o†u+_:6v7nͧLؤNM'Pݛ6nE[O[N骮鞞gevQf̗gE(8gO<ϩ-h =hY NYI7༡:j T+ŦڊB,#CeuetKfJ2N[ki6[bԔ 1}hJ|Ec\ {c5 Yh 4IWZ,z^n[+ݻZe}kp H~?Xh*i/AEDm՚S"JW"D^Kh"D1aF|(Y"U;s-IυmqƄ!zhu<5OS7=k٥uxe_nu >$IwCy$yItCoZy9rYS;;Kw^a.R^uVWڢ 1t2v5KPjl6l ]1fPbxYᵚu\D5jNjk5ʴ.٣E9ukCR:`p ݗ:Xtݟoj S<34%%|vc7I2&I& s>ũջd[+6X2 uj Fމ4QmتR4tʤ P.L5F|8<rx8GhC D2<δa=sUyq8:Zg~fpx LkG75}$$\%9syq;1;}7{\_*}&˦5?4&д7L ?6-^lz4V*z̤Bl!N z |CXNmĦq#!ujV6dX Lo񬓔ʫa>?>]#Bԭ1~$?]xRں8C)3]!}b/l;n[$yK$Ѿ'I>?nY`>v)g+犔t[2ߒa dD%#-?\Ecmkvَ)蟷?w;,LlK{'_r} xue\\T#lru`Fw.+cοLs/rٱy7pzx#KPh0ǫU§%ڣ.ð+w`ڱ&83bGh=jFѯKў xElQ[)&Dni~L s:tщvOw=88uf ji"ΈjZD.=65yJfg߀KW[{]y+Ԝ\ͮ ߅ Ͳ G4o4hcFnYCwvD CwnPNq!rrҨlȡa3`zafp'a%u0q({i5*#C(6t~r108eM>{/P'IfDv 㿄qh=:]gQ;lpamD$ Ma98 uk[WWLmvx$ єg{ӶRu`ʏW?E'_0;2HgO.8 F ^EjB#u2dH(e hCTwؐ>Vr,.?سn3=zi)Ny }*k\S4OxuQPy-H __vU -;gi$[heQ4p#Ś ~!jjfT~E1kKPOM4c{uavu4؃ \H+N]k- f4-VӈvR4(cl 5آ̵3ՔSXDk.YHa1]0!\U,Sb-s4C*zuj6>;ҚnfE/ (I&S<*-4ه:"XWfH6Zk&QTD[dpē.n8$L ˄uD HԄ|CDSi#1t@Di=}G̾٠cESZ;T kBڨII;}NZ4 `T!<<_2ß{$#{ 1 ic?ΏZ5gB];~ p1 RX|L>B}ͧks]#ɇH#?=->o~Z$Ng!sۂ(hИk< ke4M9YU W~u_"9qѽ!d˽<oc罒^IG(拨XY7@~k<&?L<VxZ)ɍ+%ye{+%YRVdzv9%'`NyE-#ZG0]^  yZ B<'U^Ul$ݫ$pUq<xn{ <}Usg i4ᙄb+<] D>ǵ$v$:>I&'㚾_\E]r-ǵȵF#wՔwv*+ߥ^/Eļ_W~I~_ W>U"/kK\ox~c˝ \#}W*Ā {/ݠo(qﮛLpuftO $Ix |zo~`tWRnOL;e ["r/S&.J4ʨ APVtCCd`H%9AIf<7@n7bxSϟ{.cJdN)I|< ՒVKXqWKRZ: <s%TuدZ-/VK<Ւ<鞂|\u燀 Мw1s ;1M.wdI^ؼFgHcMv:vZOAveeȇv~HK䊇B<<$$"< Sąl"SMݼ [q]|[j>BarșLh [hmoZIN]+ɬ!3JҵVKǗ R!>otV[Z =/xQ/NIr߸uL]'Ɍu 9 dV y7o >p.笗$^!4}o=o(p~_BXҽrv:#p7$s$yuSMy$_VvXlWЏ4 oA^ y aAQXFyle;ս9n,m%kskfϺ O\ghM>:j#F!^}BުGv8QI=* $<*ɷ-;0M^?h 3b湁S+$IX$$g&ɿ p}<ǕRОѷ}df>$,]ZV@wco@}I$kһ!лo\}Y&؆mZ&hAZo yL\$ nR0ݝZ|Kmepm@0oSjo^3;ӿpI?!I?$OHrǛG?މ/&+۰9{<ЀgB-cx6?GOHOHŸy]+߳n(~E ^Tq<NVPζ?)dד!?);OJ'UEK|~+ee]JB+ _1Pޮ}J<%mO8zJdSq~۾Vء)LWZK@5 yq+G8ܧC9$3䌧CsiI.]Qr{S%EmǻŁ{`$#gB|G>#Ʉg$Lv00|lμ VcVt\,͐3OH·8[$lbi{֛wʵXD?ƸRϊ-ܽEHnH-|ܽ5v^wEφ87?+g%yJg%lqΎv;9sk> my -p%-H- jd; A>ORfͦ;F!C[7`+mt$t& '(t,x+B[[j:cTGoO@ϴC?yIy^Cz?q_oK.6mig(6gj* e:ʠJ%K>{^]=S{-ݗ5*OiL5ݬ#"Ԑa۔J *]d:V}=X<]-C{> =~ EծmG-]pEMm(V#;0GNw%袉z B4 c^$BH|:v=G6@7xX$Jtl~!<_ DvHbCi;$#'k;~~ʢK-}9',=k96T~σAvml1nЊUSEX'tBrU,S<>Ap01b BƨWC@7pRƞPьFD;shfGr<+_-/k꫶%9EIƾX$zQ/E=G]d?Z?V`٫c.0zt`7z1mbM6:Z'Jf1Z>\+`d[QʔPEeČjTCHm5fgxnfNI);C~ݿS;%ykϯ呾;0yEo0fg@IڣЋkV!WK޺%I$ i`z+Ϸ^pKRB/ͫÀHMrHO˒,/8)(?YK9syއ"%Ojx&'C*HݙC`·ԷIM ߘ+}<˒eI>9rxz<ɳnBo -vpIV m=;k ,Zd¶.t-5l! \O(=m?ઠ_ W$9IfCI6"Kle~3']'̛5wܢsW > ď FVqNZ h4q X9̰f'r,v p.[@)ФY!#VC+G 6}ARsj%cվc>1OK11L[ o;PlJ:o_W%yUI6W}0HsA\g r{q̻ ع ȭ8gc)+u؂!EE)س@EVKє4ʪo65I&Y휠B5NȘkBkD_~=+OOun RBm*m,2-bBW!k1 e/ĕd!x=6.Kޟ.K޺қ"$ 41Z|a;Zc;_7` h`҄jE :`K]KodP}߮Zdmsҽ`ޢE Yx!*fymӧO1oQyr,مǒ\ kmZus@aIoH2 I~FHwnI- E>}ӟI6rݝ;oN5df-m%K;漹 fvt'u-]+aTə p}8~?/QÛIɞFv4j$N [dZ4RK%:qh8&FjyPt6' a^?ڃ0;@W2h~?e4~ddl㽜plr#F~p`d `X?8+.jPFMzRZ\u[hpQe0Q}kqX%ki(2(';|#]c<}^u)lԞCkf1~7;JC ]R xiESҜ|A=z)8N?jdTQr*lCԘ&<#Xc;HLK8ae-q&߇J` !\wLHKO:= 3lƙtƪQ Ô1n`4\ϺmIx[_ϿLL)?˺䅃jps=2\N%{}K=pK%{ KQhA;5r7ASzieȏx<G=μ39:hPMԲ(SӎօKuFPGch x*z1<W[UySmϩ.x&3<F4΅gAGBJ R]VVZ]989˜ S8 Nw\c)\\N3EBhqpMQ~[ oX8P :,kR!!l6&]D Ĉ QV $F`3[I }32:hddc1ji*^BCQ eJuPQ 5Nu *Za~4)Mk6i9=FJ&.4)/Y%DށèeѲPiy&U]9vr=?VԽwwJx7~w`^s&Kc>p_-$d># m}O7ߓg+I~.`]/vys^4ov9g?~ƌmMy:L]Gnٍ);N9z"~ b#,'6haLczc7K(lW1Lk/XTa*dC(/+ {\lBּ/%ui{$9{$W8^c&v8z@pt1~LxAv$]Lwx#W3!1<\1 r.6[0 )NHke] UW5d.6[Sc*XeUe6㩋 XsK[+]\ 4K137q8r%.sq5~$/id2n_uAHV yqp7 Th!o_Ș"Ae4(gt/l~$! yCIwT.ԯo$ޏ$Y}L+}{_'=zcTAjv||:/_h&?|Z2_}/_}//c{|<רL'##6_ V t2Y==g|rg1g,s n)^^`.PzFѥ >svxA`Vuep +bjANp|0 lϿhz^Ch|M^ChܠEfߠeG~H4ᷚk#7^NM4%o4\ d*G&crzVEooS =V;_?=l~qyRkO:ǎ^KX$I;LWfbI23dFP64Q-=bb5ZʻfRP7Yt| 6C0xv_ͬoqB&{(7,,+Яχg08:`z5V[շaq`jJ[V۶l۱:o>w&<mˮvUR$WݣoB۱"@ I7 !#cY]g;V:N|zrg3erfJ=bBWSBIؖg3[2&L?3\h/o^r{%"*ֈ8hCX-AĞW}iu $?vw{4ܟ,qE"I_$9/``?_i3k¼Ys-٢2mۊĪKfeڛT 'HlRq G.YTg3|ڟsvDZV=vzx숷:V=yz"J 3wji_2<;.eSK/PqvTVY@<}SZ!0 hhm>ABF;uK-E~jK&tE. .Na^:6uc@ò0qUU/4jF(&$IE,)LAq >tƤL2 DBt7ʐ9ӤG9KDGmzPwfQ@V'9wqF#Z,F!8j8,n X򲴓,qeuQCȦP颀?.Wq0ZagrMC|n K$8PTT@/ϣگŨq@n0 [FtJsMEKg15}dŗ# ~ڛTJv}K2__vo/1"ߎZ:@;KXg/%VVxP/xh+HE*p<OCo7Yu .V{Q%o%.guKM?ե4@7nJ^:&Tj f_}s~\WF:vNmCxS$:(0v_GoRZ4NZ=4zNϡQWM$xNkZor"{4j~1BsT& .5FХ9Z)zvݥ_US&8ߔ10|R|Bk.6]1`b+3Vh5k (7B#>=T&sdŞ\;μRpMBSGu^(_5P헾uY<ؐr愋tq5y OSKYpfŭU2oBY|O(6HKa[G`V)HiVdsݜ)7a49SÓͥA %Cs w`f589;nPVL-^P/c`)z2Nf꒙jx>A`(#o63;c'X?&~x28,ZDfd6+,J5W񕫡FVClVYg15t6Z i~0>cIOAjũI3'ͭ ~oĢ VoEHVlI^xFrND"tURma [6QILdzɒg\Ͳ^L}ti`+36/;^DX*Zf+H ҝ&8T&,Ru,RK~ɘbh= K?xmek9-kUUO\6{e5-R8V)diFS K{~!YPK*hNDzYSh,cH-@3AEa;V Ar_smaτA#B~4iM2 %鮧3%Z?+VA%suީTbCl)pg,FpX*چT0Esٞ f]%zQ=JQzMbt*UJ-[vt:cD*H8ԛ*4V5Zp2~8K5JU`o!h.Թdͨ?تKVKwMxiHcJjUbB$9&r~T*^ к! rt9.YrL &VC$$b&mdhcd&mغiQC=iWQ-.AWZ_?5B;kJ gG  <1}ak[qp¥ٿާ^UQ:^]ԕ/WC7)٬p:s09ѱ\t }.&5rՅFj)8*ܨ^Q-#S2kwh׋N EC-ߊףv-V}S vTywd6i͉6F:q͠U/w1i4ը{VUڷ):WLN|bg@,+,K1-\wL>E_(vaY 1X~{n3?}a 3!1+>:,_qeyep |h>|;Ĺ6ȫAްC? m_q8Qׯ[gc7 d= 4Ɗ`q7ȪxsK / vE/}dc Xoxyڈja qx. I䒃;T +VAJxt Ta!3Kh9_HG#itCt&$C-MҤAH&;A;_jU/,?6pUl&!)2ȘTH1)}`-K@ބ|7x IK4G#,W p=e 7Kz|c Ϥ z) / PPL}UU_&s3y"c-13ܪ/<}uڀ''1n^ k\u5[;.d5\ Lį`(l]" #9TGΪ`/ R,( .5K ~߲ zy0_T| WcjڸQn@x X[r |uz6#:H;jLhAkB:3B./3 rwY|nΧKზ(N}|q48Zny9 zA"5!?8$ݳQV%@{RGgqH l9ښXc5{ݟyk bO}pݲ҃r>Cx"hsW߽bdsn?Z4u!GD3`j1b]1C#֚`TfIjb4pr;HX"@{E[eRݑw&e'C4 $^g:zsJK*5vŰ_>HVaBS  bdPT*AQ5 AQUK# zZd1(&EZ>-^ xdEUS0=SH*AjZ%$ԩ)j^D]74 ڽ Zy!.`mDfh} wScZ7-ɮݫE(ȑn`w@#?ruyUgԷ,+.)\x~nթ,aXqJ~UU l5^ 8X๐zm*=z{Z-ZB9 mOtf8_<ʪZU.h jNou4:{iZ+ӎ܎9b= 34PϽ!MHNaR/ҮGi,< eZ,ʉFsDBA5o`zY.^G!TֳEݝv2 "َqVr[)1baD PЬz4@\t/4C 3:}sFwezҵXm XGPбa`e:+ J&R# zhw3>:5(AZp&W81K欎ޖ=2\詇Q5P]zZ|z# X;乺lg9z#?P;R=_pA\^Z[ZyRHQ^YP^սhHS"H}ʴ8^< efa~ߕMI38|V¥Cjxj:02ZX>J*Ë#gQH 7XU##/?bBsQQ}c>+.:qdBtX$墤Lzr&PbX]e;]?ma8##U%q%lp* (1[ IXCsL&1B1rЪcI?ܧ=ta2 oY1ߍFKtfhLP&1v R0ӦT'"k!Ց!!|!C|=aCY/Z gW&}/IAϤO/o'?@]R_Ġ|0 ţ)>%VRaD͊OMP.+>:JRgH`%w q*DՁYI&(Fb8kkpA%a4vAQ'?v>*PC;~6ϡjHx*cn^YϪapaWk_7ex9NVQ\(SXSYGJQCp0u9**Q|w/r@_g s^-xzS|:_,R.y |2W`\ ,+T&T`i@r+sDxDf =[n/-H"E \R(ЯPYV5V`%jr/ҿîU F.-#bNiUVIytftM"gٳ Iƺ.\TZP{Mzvս42ҹ5K=Wd;DɆT=DD׉v(Sx*ʫzs䂭{O8X$ɞ^SۃK{׋5i&مp|NoׇrDуdC$=Gf颒.ZUY٣ƢE%=]NCY\s5Kk9= .*=%ڀpsRnw PK%TzҊ0!W,%s#4 σ{vڳ?s^UϑSZuʘxn.u"dK-,k-"^bC{jɼ^Z*fS17Ṷ̑,WHҊ=OWq|wXaU>{AjgU[쥵 f/SD JTzⅽ]HIeEUquߋh3ֱq?cV-]TZ]\[:'n/joP=j]/4=/Sd8OKdx o:nn$C]2$2"3eHv>"-2#}2Wxp ϐa ket$tk|g~P/?AA-La_0?- mf{‚ezuK:z:ܛݗ?K ^Du Rϗ9DpMIt]VEw_~SݚUnsX5zK@L/  ye1b~G  `||B<7/G-&]۔b!䷏HC~gY+>8^G[ \sϺB7f4YY2B_A8q^x|beEkEuX#B!-IJx؉)x o}6D-ѿE u (0Bp⧐Kؔ@lN|)Q^Θ?"k"k)QN"yS毿b=[!C8Y?f?efl;A~y+c~E#-֡mam ݦ>zѽ?;QUcvf6QTvX>HȃDU?D]ttzm66~5$K$&NK&bs)5.bOc[#QԴk|QbQLU QS5ޗ17̨ e,8$#A$(!y[&qGLY;0A~'Pd?:a8pTԽv?;F yKw>>#Q"XD?*ı]⛆7MSM9MOZ`%NX22+gu\O}PG݇ϷK>3BZ:وjyKlIJ.o#Nδ]b>!|C]qDxD Od9ymo{x)p,/$V.Wk/}EK|41AhbFtw6kti8b}+qĶqćqǕԽvA.D72T"K_k/Ď. ےϿc Z ]g DcxX٦n+u)8|guy \{A\Wouov0fby(̷t&ds4JE%E%^%mF;o,/6pK݇'M!{2=Dӑq<**(<7حAwE앱D7Kdz3վLF af'!A=P O!<xu*WVxܦ={<'zD@J<.y+Uⷬz$&D*5",c C!0:c Wl\,=?m=2,)'%^4'ʏ"fH{vuQى8h';6F)f#VKh#=?!Hwnbw&}er\se(Wswv aÈ#-lC1?aaÈwvu8GTc";?X4W=1|OHM]~#!wN%p7k^q:;'8ģqO=G}z_rڈ3JlY:h}گvǣ9ESUfѠ͊l|g_ F"/ݖ眤Syrg/^f߁=/J$IkcD]r>x^CPYgĤ!U;aAvb}k`'&٧؉S3ęDN+2~ R b=n13CI}a>"&_fY?"c]Ex[G^K.xzJͺJ4Y[YǬOZ K֗k7..++S+s qN77NMb  Q 6xEMl>' ~~D/Gdg_M oQsFk~ז]kZwiろ~9K~UV?K$u uo/|X.oH&q]~~޾Nd_g'ۉGOډ vUvb}cN|aNhwW@xQ1V<S%.1S:po90%IDX%%%De%c%K"&K\DH:>m06"A6bg#rlC6bmlb#NMgئۈsl3uQf;ֹ֍or-FLsmmlls<ב ;uHv|i(TADp "R `D"ab F#"Wd1E'8Y,AQ&k߂ TFdIb^RDq"A8O/O> A)re6 Jqmvv>[Fe[c#eF5و۞9xfު_؈ȀʚIkx}ug{ ?ЇpԽITK ၗ:;˝;W;ΕN:uN8ۜk9{:ghr6;O:ϴSlqnq/;_wۜ:929kg'#c>,f8N9N!)NNxHyH!U LÙbv$▤[{I"%K"2f%^Z_\Ϲb8/qQEhHV+ MDDl=JOlK|+؞'$DJ$~K=؜{њOK٫ qv_P[Ӗ2Є&O)'b?S(5.P/Pw$mJ 22ʳCTyymw%~o i. Z#ƍFQicS=z =zkW|rqf[qƀU5FlXV!l6p:\Ȩ>}􉎎.AD钤Źÿ.31ctFذхIK<#pǚ|bKFy[RLR\zkwSKUp059sa@fj/ܧ/.mۍmLi;-jS`L_=rMa2LKv&L8& S87efxnB|j[g[[$ pK$jۈ8̜Ygg  uXzfla>XznBW ::uF`:{"uquH0Ça|L;8Eu"uPxO-#\F^AQW+br5 WϸG$nr?&^wou?r߻pmum V4l n~uzz >3޽MyS!M&‮599ӋXK{l,O OH\xabp#>} ZZbkF/&⃦M?5Un7gc.ĨM1awD=}=L\< Ƽ/|W)-) .KGwRw*#_@CA gZ|[(|.(_OA/`cچ1mǶ)6-glS`B;յv"y{;c;1]ۉk$޸$~ RvY;%~q įI Y;BoImg ̑Ww+)LJa-">٨>Z?/ |u]ut'Z5r%i<[dEf.XB`NÏq_0$!< IlgO߭D.icK1cr,qÆEvUyn1zz: Q-+Ew)O|ߟ8/o)o6-l“CLəCSC!ٔC [="KI8@ąhшF}}ZOA<㛰 .+~7x'C{=[؟)Si2e>&ڑ KZ[ΰDϸ *bEwE"S##FuNԝc%DܤZ0{~ovӎ>;vڑc⎓w6gC%ePː-ZrbKA˩-grNˬ-5-KZ.nYֲ垖{1@$JI%$\GF$I$Ή$H<,)Hbē#)IL g}f$Q"qY$PH6ȩp{IVی / ~$i9IZD,H:?X1@_mi^"Ǜ%N%ڢeDk@ox@j9+Q&*Qf~g~3_e',5w"Vnsu{ZFtmqu!~ 3 O&zAvמkmFk ^mnNiQԪ&0曾/LO͚oeŀs; [+b]%oriʼn;ZWyFYaeґK}wf.Y8(=Ѥekk6ݠln#ۭ_4Ơ郦 )ƺUX2o 80%%eРAi.]wsݐv7taÆ 1nDQ].nvvwX87Í? 6ԏV Pڸ`ym~1_Mf0WxDdTظĤcA32|9C~̈F?n&NN?c3: g)-;|*έ]|K^pE_]~ŕW]b5^w nozw5w_ܻa]cS}>#>O>g6nsϿ▗^~λ{?'~_~7~}{ܷqMUoQM1/~N9TC\5 Bra 1 .%Pp+o'&gϩs?fzm|vNݓvsMuAdOzi/j6*u_G\u- 9~wz\]-y|̟[N7mfw7v " չFmr&fLnḺZ]'ّ#"Eыa1c5V%XbB8b]|s~:F#?Gc8厇;9W8ou;qu|%田[Þ {=l븈3"VD<)و]uюscqt>=E7x^IJ/Lѐ@2^ؚ+㣌3}7ds94oLij>ulk^։m[e=.&)r̰1x\ߋ_0VjD1R+FGc$n э;!8Q1C8V>./?1!P^7xn^fCbK$^I?VV o;3pis]]Htm+ěYXH|gAP{PP[P"'q3Oq}C۲BtCu&};_OF?ґFat;DD Z獄d7 SWN(̄l70`QƳtoK%pEe'+t>mr{bwB5n8L99eg,5٦O䟇/pΏtPYBoo.tN;G ><0G}<0k>k˺}.g7ReXXZvc*OǀŝfV+Daf>Z6'f33[pocCIۉBfJ|;qďm'35=fvbl'Twqħ H|bO ޖeak3v%>c'Q)ʝĽ?-;%c'%產w EkE.q.jW"ni/"^]]o ^}nt`mfA_1hl D`khb&s+QOip$+>7MֹZ.=YOoӴoе fC= biW,14=YOcX4o PkB`ŚiwЮ)Y={V(j)6t}w͒9FKc4ki=9UnԵkѡ6Tr_ gGj79TQScT/Luw&_+s{v:5(rU]m[DECS%Tۉ$[WYn'%nN'{;۶_KlA%2 ĎD;DG FJ%>%6x_ۼozo{gϽ%ٖL)i!J 5<9dO.MMbm'IԽ'$%;I]{Wm!ھL c+z4=Y(:UIVt 20=>{/tف}VzJ#ý@zC |'sX?Pf, @}ug="?S_w \)wg#"H3[ɟ_)3Jx/es?!>"6F.KkÉ!2+!2{-?" Q5>7-DFD!Z*+}Cռxbof_q!6UR^ڽ, Fȫz5Ɵ=YY.bxH. É')M 2eDC$=D3#Ou%D/7ȓxܟӛI̎`I$1,x (qOv7 {"ן"zCQ^6*`ӢE}CN{Z}_4Qu?D|FGc$΍&&ih9C1¨ |7F㉾Ό'OJ$r0҃e|$8=J$4_:='u֮OJu BԪjp .3FݎЙz`jyvۉlj'_'~H$O$~N5!BC~.V)RzS4s|X؟|`]&8/4ִ'ӈg^N#^M{+.]Lbo`UG|c|_/i#Ve&6grg!6OO%[ \[ ֍\Gd6f65n>97jk#|rnL6>~l}7onO?x>t)\nPQ7XUrt.]ȅх G;B%C:Nȵ['ZӬrݮ{ustKWU#Wh2Q&Yׄ6-663N86fF&l'[-V խ_˯[*=zNmk;pcDlsپ[>~-}X^,,u].#FFTqtl %9.bE\E\Ee.ⱘ1ly1x)"9n`*w̎#č#+(/W0'"ފE!aXB6F'MP0.86aB<7&4$M _&7 %-  ؟?1tn/1M4H+u)Y7{~qe4fƧxF77YM&bH&bjӅMۦEhi|E/nVMwJ XF7CruF7:Mu3}hڊMMQh3b U8`[fK05  :,&sCF)bܭlkXKya]H߇8a~QK/zM^z(oWA 7K zdzGy=eO;xo ^NI; vz{ $ {;<(HK08v}n=}>\[BUzBUznCU,~2ZV11mR15=ߤ0R/Ds`ދz s&9E9.,!V!6:z;f1rMʒMWF;qSZ{|4fRASHN㹄 b*I\+*FFI[I$ְe-4 㿩>Haq*xh |K|ī|| >d7>?*8E(eBUrbr`2I!(') &UjTWvU77 nv *U}Gbڢ*IUUz@%YPgPҰ٠Y FEOuI厾ாm}Xa6 Ynb;ݲaЭ`M\}^O7q6 _s#q ' NWP>'^`QzU:Q8]%uO|}}kOZ:~µ ޾VA9 ,mA% W6(njPpKCSfiHX׿`z?^H.`y(>`F~d 1T0SO*X: *Ҁx3UIŻ_ ~Ѐ$U2wĻ? @.5(ưɠ9[ YF+s.M8;ׄUMt;MǸ|dt"\7Q[ܬw?&6#{; ?wprpyGqzie ԤO|ޒ`:2k0#Äqk+*tk$7d5(P٠,kA 764p[CcGoPpjsUsNd)vXw8N[;q?jUy2Պ+իU+RUnWwr'OCx[Pf6KJV׀x5ث M_yx\zu7W\Ћd# 0 6{&qL B( 7J UP`o(QP +PcT ;*PlS,@{;뛬_y3ݙٙs̜  )^%NgZY%Z#HkRf6#g^djGƒ%!V.􈕋,-bMb`VSt~fqP6jePi;c OɫmoAhw'vC'w1IR/#D?b)#ܶ0wb64g\IĎ_b !N-njٲlckk˷}[[fD mʶ-;%NAwb`W[xk%g7I^I$qQkJU )m./Ug-d2Z=f jMjJjDuھ{+I EuӪC$TGPDyB?v V|O6!x #{@ 8c[JH!p(D1S)#qIu!؇e0~ M!qA9[&)G=0p!A{T q 1_`w#**R%;I\[}F/$Wܯ"qc+%_^7o70 A_|Co6b<o ķzG8O?|V f [PO 1 E -$: B.\H|3: eV@{%n,0@:'}'}~@>K\Կ#(@$p&E+ kQAm!Dl@'"jXe 9"'X4=ώ[~![5-.3ꟲa: $#ZU>H\N [ˀqľ)2ڇ/++DyJΰ&b|DR; A9/J;|Oι^ 5<㽕{ _\lϼV9^͙)jμ9z ~" 縔(T<%GyߠT)vȟ6AJ#(0|!9Jy2UQ=*yJ"NDC2~ _`"DD~ gap  BSv) ut"hBA+]kSBw.EPFva#褴s0{(A1>ՙӮ6D 2j?"r8"!dl3*qwr9w89_[*DT?E烌I%SN~Q87?v>'"/~ѡzd4#]{G||^|/>|qL>DT0V*Sm#p p8 :    - ;N' ‰~F~F FBm LN"8J>%㪧WtrG3Bst91@-BAU Z@`(U ]W\)ƲQB.%q'IB$E )K/\HA ⫸ȽqknxN<7o0oϟ Me= 5zzm;wQUzO^}#E%edͿ???d0B}\\\ } G4\mxˆ LF2kmHjQ'HMX(:=hc\X,,~Tlim*30d fm$f.ffff!ffffiffW ͞52_j||ys抢EEE-\,zYxYZd[\ȳf L,VݬzZyYXͳmuUU@B,DBBkT7F)mnQ\`u E،jjeo#emVڗ$^YR'a۟WhXeGJtnMGҗ$H>%M$)#%2%:Bʍ)H:75:ATK#.󕝓=}4V;ff&N.,[*(XpTV=jVQڲlj5jjjj֬V\\Z՝;Wwjͺ[uuuu$b^z|WI ;91ݕ+cN(k6@i_qf"ءsλ+f\q*]swAFߑjwP:t>nVcQSӴ;MsDj8 f٬f7m6dY"V=DT/r3l6qSV%͸zr '^BxԥdG"XTH-Tw6$/qZug b2pd%&JJXAP@HO$,Jt^_~_mt ՈAȯltf$@0@E~dYB~~n/؈W3tEԻPq"800Y/֣SB5aCB\W s;sЅ\s5׹kx/JI<]@.ay$QGY:^^Ի7naӞ?˚=aQ5rIa#VN)ˠmV  hdr#aJ(%``@ Fe3FcIԘD$Q2~1i!+B-^\S[*6Ff0ki819sFH g>tl90 DZ"E"t9X؊-/BSG tIHĀb;6| ^kvW1*-t~M_J rE-Fn3rIIL ,j M)m4K1)9)BLKRƇ&)TENh݇ŽZ+ ι >CvPƀCJe-?) =>g ߒr?bğm0n'Q3 c=}޳# %Ẹ̀'1w,w1F18l84FeL6F,ų) |Pԕigڙ p:C05AaB,~)t ^ ~X[4Qd#ߤHh:B? @pGeEwcS&28k3Nٽ(WGl_@@ e þ a}d+Z y- FUA |-A & A ?`!pAࡃ`u..]]\]6]\']DaN7FpH񻩱M~7/RK 8'5?ӸMpB~R)_~(QTAx|nmc)cRq pB*V!CP T\Bj\d>\2F?D187 #e[(! D`&D?^$Br ? },4G6GU!`WP qx;J<'%g?b IxSMtm$l#Oݻ# '!I(YyDa&!`D F`^0`0T>x-(T#924<~=L2f" :Al&ՙ6ggjN g~r=/Seʮz anolǥl7 H` x|<ErE1(,1#Z>xP`<}x혲S6.LلLtR6^ʾKv).eӥ칔-R6\~Kn)-e`-el]R1xT{*=㞊oO'$ S(1,:g1]%Le j)8Jm,3bq%1C;^:{tйctJ.au'f+o7ǰLc+F 68j6u6; ([O^n 1S362v9w6CH#NK A[b&q '_ќic XI q28rq 8" -Zs%\myD1q}V0e?w Aw!b˸VqWsn -첍ˀ]\mMjC*WE{ uC x y-yZxxx"yxcy)DŽż<xyRxdC<Gx'xNz<=|=C=g=nz `=~zc֋C`=N!8g.!@| A[~;>~7>|KZ_gJzlo#G`??`/? i~6_ s*V}}CA/bW+  !%@0F0N A)]* (USNBT`hI+bmbH%y儇:>%6mӘ,:K%KvHSR%AP'aڳeok~=I{eu/Яd;KHWFn@duR$SImaGҫ$q_'@u2JALAIAKi#ez )RT|IAPRNjTS"Xz0v/'{ׇ{Giu5Nk 8@}eXJUV3پCqi4~Iz/rso2n,#xK2Mgi\ֆ=e~ 3ϻÚ!g ]GkҚ_e}KG$K:ƿ}Ɖ%sh3=Oqt,ChC ]7tZ5yAk1PʯܘR*p4ZWwC_ivuRўyM'?04wXm|tD<Ə?w`4gsh|}g*=~XE֋& >XiVk_$[y;oW<Lcn&3z9o8]e=4~\hiW$nSH㧊^^l'AӓSKU\K%&HG '!Xp{$=e '/ ZfhEyZyI|њ`aÙc@SYqyKYYcŹQ,@곹nS]5D^?_7zT`;|k[֦I?j@H?BlXgAy$y,~?| c\ #em,WC[%oc߭|X-NS^sȏkȉ_:F`={'[FPjAGk\jmcy;[bI%mUVv wIS5zruXV=>y&!kdd o<˱cC7SXk?VZ!@j/!bnXoDF&is߽Jc^'ca+m -)8voߴ+WK;# }hw^٧iO_ŠHNS+͆;l6?>:80١8~mI(cZJ1c(J1c(61R4uL 1C)raC)u91_lc(1-c1Rz^ bvʩB|ʇi)r Ŧ:R u 1c>uL1-nJ)HP,0b([|J1c(1b(gbiqCC)r V:R^rv0- .'PPc(PJ)cZ1b(5qyPNA|]p=aC)r u 11b(P}p9 1w1SC1V81_J]w(>u ֘R z:| ΏC91#4R mu 1J1c(1J1-P,0b( :Ǵ9uRj}W|C)1|J1cH%A$@~$}OôR_!S! IӲ$ӭ'.WhtmUZK{姨^c+3t+&I`:/te5IcK?2=ayA$+0h&>|^wT RS)WGWD{xשЮq[t3O L]M^!p~ vnwäy(!o< fW|MA2ALSPz{a ~`K0IAz{||oi r42 ʗfŸ'zse#S'g((&: , -wPs=zz`vt}DQPS^,i #H~#LSy,%)駒_?8$? 5NI lXIi J6nNWq,i JD |jOߟY(2%P0:[aԳj_0<%iϧndyj^/7^^D[`d>J>2?O?>dyy?PMqP>,Oɗ?G>ߩ>82XLS0{w4?fi=zzE7$5Yޱf%Uf!OIh8 =W4?uOGc9.i!)@W tKS[Ka^'bc.UM8j6{~|z7]r]Fʟ/vl[Ӭ&u@ո/CWW>O|u2\},g :]RS޿fǠivQWL|O QOgؿ 4_uG=OG}%ug=??AyM߃Gf=<jX3Z l=?~?֟ZCWW>Ϧz/5,/,zpRW} ˇKߟO=:kS~ZW޴_5jʯ=4l/2~XϨGk=sOa|~zoyԿgjo / /zSOMZT~i gU+h^ ˯g5zZUl?P!dn~h5/N&4=H~SLS=G%2}]|OӋ,Oko'z\OuK%Yレټ}̷M]0D>5]2?yqպ'o'<~G#w4$:BAi.jKt;|ߔϑj8~M޾s)t;h25)?bg-{Fs$gƘ }==zi/L;԰Coג0Il5Ooz^C_ߟj_ԳYY~X=iyޑj$MC$M)oqa'i[$M1{~G<+|s8[i-޷ 'ƝJBW̏H);Kͺ;2il7JM;nF{mihG,_|P}Q/U3!JZ;.*"iJK״ j#,ht27)Q_NӖƟIiwFmuIOi`7mhAZ{=Pô@{}CiHKi>[hZ{k(9*4+1AU}^5}ޓ*Y 6mޢLO݇_[ϺN?Wm^{H4'$6nPMGIoM_zrQ߉Cߴa6j}|cߥST}1T7TGu\<,`j7Z7[7 昦S )'-H>B=5boI 4~fKOsC5=mHgّ|տZoKH>uꏫ;4~/gߌoJ)TQF[I>_t&h OwPHSij / T1&?{>o3=X?ɛ>~4B3haj];C5m<&fUU}_[Z >y_z4cU[ix<؋V_&oUg}ZzC?=?~hRwc/&wٛG4-)y諶gIѾkkGƋqԋ06c֋&?~Um(|VѾ&>:שqr>?¦iZ?Z(}ޫGZKiϣ9"Sg Ói_B߱<@?TpGΡO߃噸Q)WN5W~iE/tU߶4}smAV[>o<>;ƫ ݪ2־z h „>hvS(&V_=iISJZ~|Ekエ.֟JwAw~w~w~w~YѷvɎ3Ѡ8/oPvE<'ϒ^0Eu+s߿U0Uago*ݳ2Ô -GVQ>Hڅ98Xmp?q?+Y{\f;\,ov9̑$P鐞p. B#y]7Kω5+oeNT׻]]DƏ[8A;sL( rf=3*ٻw7쬜l 5_ ;\}t4>{q&Nws/s_KGktpg㪛o^}^Jg+!؎[E.7ga:M4jh l&qq&E:x'o=q^=eGy(9}#6uofd{QGx0~szxwN<\vc^M;{{ےaO:*>W>s$nӣMÏoun3üvn|y`g'Z-mmnEߤ9 *bz[fě/c)rw_ۑEn{߯(jWΑ=ۏvk1g6TOxSXo٭O>8 nEü &f]v/x.ޯVn+`t6O{pm/i]_軳fg5veY?~w:dW:|,vr%;.,]j>Ols[w]/zav;^& Of&t~9Z)/۲̰v=o..b@|WG$n㰊w>vC#EV//:6!ہ7:fQ~W=Ҷ-vto$AxTnJ籖;/u9xmXG],^226g1-۴\`qkKɱKMNq@=]Umg~qLwmD;X6yfbژdlr% tŐ>SǝYi9ksp}sG:>f>1[9I3Gl/yl) v5iȁ']^~Tڠ{nIgS 8X {s~s1a'_sݸШ{ekfD=n֡i-{VlryC:G%sTgȺ6 о(nե/vlGgr^D#0/ \Syu|pnY}ZrhlW1E's }]̵z{ML;\狍[\҄JAܛEˮyj6iwr 2Fokv[ R\9.GiII낭{Җ]*TRR3"[DV 7B [DDDlx}=;vtNgVFG]^R~uB{lq4`ə-# ޒŋ[oq mz':q{D hro+#]e/ ÚN4Swjlr75=8evǻsw!Z+;sy'}Cl ͙t̲1 mڴ pɩ=.lmqHR?W;#Y8rɂYw7oztC窉SmֳCV)s}MFFALG?>mטҏ 64ݾ7ZdWc_t+'{ҨN!6 3w5 Ϻjcw8ז65|ޮNdKqoi8O /*\i}c[u{:h59׾x+jY}rNŮ㕋/kWz+d٧epdBn;3xr8^tڹO}p{i&7O`P0vy4 |usl#A8+ }3Ӣ{{ICM oe[Fifw:IgEs,6p}9˯.nS2~sb'{5ᇜF։:AX0ή{6/"v{ڦ!ݽlmW\008ٟ3~tɑtyAg ^a%%E<u[5K.L1/{iVUmu#u;0N2y/&d\?Eriڲ3:ӝzc0l}Z^6N&c_*p1{KPTʰd?/]8u`'qwXtٱn|Y6H=VY.[7Wxլ3-M6 nՠ { Xt.q\8>ށ~kKJ0.m>`C .w >Rt}O&fY{! Я҈ ; ݶO fl/ vɛߜ2ă9rC3Zf.MzeIۚdקo>)đ , v5.vl'|c6:{}zW7sU'};jY5ͻu?5,eͼ㹇w/O=AI' .b r{Yn֪֮QH]Mw,WoRˤ[25V%*qy:k0s~'z\vuGޟ|\kcɒG':bݥ-GQ٧Uxy;޹~]YZwޯ%IǶKzI2[n*th`j᎞-_l;?/qrnp2z|ބ jsyCL|ƞ}XŞ{˴إkc+N$ew}nodRG.'`۽Ismxk!=#MK5^zcEIncnw_~I/eOOf Xr\Xaێ6Ȯ8>Wm)ms=Ԭk1F"5.M Xz6-s.^9a7#$o+zwJbA_ }'X\AX g2X|HScXUڃX3V£Z:_lb] Ĉ,a]""ً&Ȉ|8XsH%Q>ͨڽI[G T7m'cZ|fɷ7 gU24at7#Ϙ6pF#dGoe, V:SNXk+a2ZcxskyxO50 d醻]0ji2rk ۈDj/\40Lj byn )?#c0*aar}k5iQa*iX-n6G0j"1;5_.irl4*LssY>V9ciJn{ Uʿorg6HĵGV: 2dM5Aiߒ\~wyߑ ħ܂*ǻ ko~3XfEEfloŭYa]):L|UJ e@O^#l_~ TesJƘztSz$ XO[y%v%061 sbXo)Mx=Q7$+V (Gʉz'׳0iުr0TjyP@nOU=! rye|˽ L7z"Q 1h'Vɛq&$1='&7Llw%pdFO&|=?F\[1_S9mfJer||djZ~9 6X"Kv8ܙ* vwmBcBOKkϼyO :v m *Q2*ӃV9@j 3ʼnm7{"[_ap><*7<ˊ~|w#4@ˇq)+[TV#mwˇ+rH0V7ؕ!ekͥ8uhW|9h=sI2yͷ[>qx+#V, oɺRn!x1ҭ*_2!)l):ro*űIZ /b{Ơ?*h) zwͽ?&у)]*Ǖ%b` B~#&+\K4OP$>DE"" v'Rլ$帹x1t]o\6eE"bZx!Kcc_84{ [H*S ^*{7s:7&*ObZHqb&bĊg[Yq;ac*=8\d1({[h0`̇$$N ?VrAY*o4_3"f7gÌXxx-)[}t*!ͥEmL[~*#ѵՍ$ӊPݧ{\2F(Q(Fx}F>>!cj.sDu-q~) -d!94)TNڊz-c^YYm˅kqj-JYF|8#8*335 ^2B * Qf{@,1B_I侌.NnƔ\$70Wf-srn%\rVh[~ttpIF,ӆaJJf+ُܡ:nPP4ės5zƬѽ#k"p3Qy~W$hČuX_J?##YFgQQO2Z۴?!R܄v ,~hho%pb삷SFR9UIJl9 roq.cUIjIM'FbC#!b.{b&xF^HEuw;q6qgJnŹ⧹q^ZgjdV%ѻꓞU:FnUY\)w֪8U-k#g 5ϳ>E"i[B2Qt:~ec'sƯAQ8n)R^,c'~}P8^|[ʳ>W5xj+0.(5F;2*н8Xjoxi {z}dqg. hU=nZz_Ubav-h]9c$] Wrijn!zbVmj&yP'bdX)$]8mPMPq2p\?>AJoأ}t^z~ف^r@Jzbg}yf/)<]CE7( w/8TA|VY߷OOp>Fĺ;%|K{?LD.LmqwO `6'֣18ǟ(⍴!ml#. {Ľ 'E1F 6r%q#B2>* mtЯ&.dSdW#o0ݒZ"42XK 2'i&,I!> xo0& B뮢jY3{۽Uhwi` 5V~6fuO;b3ehv*ƣ5%B_lj6Me "~yf&p1JOQ0lcypkBDʄ{mbr:Ǵ#;Dצ_5Cl@8,agfYe:W[VVJ EkiڜAaҠX+`)& 8If'゘;wcX/%8Sr`mTxh6_q4Ǻe~it3Ya_GfFf]\keDA@ZM/;KE+kW#RKE!IHNӟ)6s>) ?)gefWIK+ʩ<?Έ NYDd2_"~9tSyU_a?`{5 Xo"zS$DQ !&Œ2gxIgN]GZz6(#5Ī>1o3@D8-s }m i7݆5=)B?8,^~?`56N 0qaVE!!: qDZv.&%~Yvl~y^|]!|^vrx *dU תdY+aٽ0}O#ťEF;*3/C6YF7+ cH|դ]+0D/.!ыEÝ5&F"| g b,pN &K#@mK1M ۆM&dpDB息ǴƅMpq;Vj#]'Ovj17 l4s7i~.@iqfX܉99$E\onA#JzjY|O#[aa6=Wvj%"cW8SCĦ|~ ޗi7qo7WbpB:^' Ww[b7aoxRst^II&SCFx}pf3?ƛ]'M.Pg3WA@Br+A\w"R&ta "W w9zbQ-ҥB*N&{č*KMʱ -KvDWZ ۊiZ[Q > JqE_&geB(qo$&2[^(qqu9\3ͰB?gx8!P}wMx_WFdw}khS87&]Rbu{?v S|FOf6_߹B*}2ﱾ6ȵ׮~v+E* 4%!oC]=|*Û>i!|MƁҐ91ĠO̱o$Nfq\gqUXVkĒﰪliAn58x cD?SJ dY~t)[k5<9},?/7:U[ KֺWoX8JNXpт 8Gyª’4bhe_4?AWZ˃W{cz;h/6 9ByhkGgf)80>11D, 5VZ]. fk>vQc[, ?gGi@A3.-pGt?in(F?ύH5Vn0vjOeT7Zu @!! 9Vxz.;$/ i~ў_25#|~ǎ~O笞{eqIJ8rs3P .g' R蝘^1G ;heU#UVnCPŠXHId*|M4=ܦ4X #Oep`:ː~,>AKKmYIORf:c hU_=ϊkRN[,&IŋdG{CY  >={s_?aU#:t'ù?G~iHu7[#|?nUC7O zAlpdhYeգd5   gd6  d^zz?YgգdAVAVAV ?2j~AVuz0);Y0AVAVAVft;AV'Yd5 _0jfd2A>IX2( `Uo`P5~$X& GiU+$ I TM|/6Wy!׌(ujCF_+'x~g:΅j΋Y$lHd3cV5%1j_2Q5`#mTKDOI&J.F/WZ~,a85(Wf qk_챶>TӤh.U 8J應Cġj\_~P5ġġj1u^qqx8TͽPEF{!ˏs8wg[4NHTLoADz,]DWY Bh$!S%!o[գ$j|HH;L_|Z(7!\'cf{h6\a1F OtEcPAf+[9V$Ɔd"$چFī> ^U? ^*EUjyʈWո-#쵌H_~U5?DU_*)b~-kTbl9滔*( W?⨔?r%l͇49N Xt-]Lܬ1Y58<1+Zh}noZ9O aSIvyGVe~ɪ"<|H1*8C&me+l(thox$oH n4߹5K:._C|.BS0406gY~UЄk/-kvOq*1Tb˃>Ke&L4˃F(܉wZ< ?vIIx%dnX~2 Yjl4G:m~Սcnt [jWg4ENeKs`Kqˠfwk Wz_zOO̪^1>7#c5y=Gh۹w|VT> ="`vi:X5W?3?*Yj-]~n?p%K 4,ڇ>kf'UH >$'$&$3 7&,e`qkn(`Qƿsfů0IF>@IrQ&(7Kzˏ+VY~A±2W}V ~2ZȵUX9U1xŗpXVMޒp]ы_?;]ҘRS]d( *Ps̽ETy$J&Xq2|!lj*wפ^edjE)=J2$T({+*itq; 5] ʁrˇ Z%'+)ɇdˇ+\V?z+cʍûKLjc j_ԯyE2(n2h@"`*c8|I$[_>pN8DG?sB<o$wo]o)\ !kX4:eh9M֥A/A*&BӢ¹BTƵWUB>1AF|52;)d&ՍANbxdtJ-#8LQ x֥*?rӯin5)kgܵ{s(Ӎ|yH>e$$}7[%R4,vpl+f9ԥ:e\sM ~^F s poT0݇Wʸ1MJTOqwZ5 oJip{<*|"CsLn[\#p}D6Pu|)zJ _=񒫾*"2V2wn>9]|5x EqUR0>PUSx*¦k-^@BVhŠ{C,?t[E]TpF~hQc2jf#Cy92Q9ˇ_jhhҪ%;.a$>)fbswo. \~bb5g_ K}}j订hnU"z'i=Ц ;1ٹU%?] Cv9 MjW3;񯡀޼R~=WXt]C]|{Pim UƤUNUi>lZ6aπV ZF_Ztnӂ5 6~~fU+cy>=׍pg$gw=bP{ (u|Dz Q(2r.(%vXT T$٠q@)~dTI#2T,RQv T/vjEQ-Yq>BHHPYƀ&w@qbb(N* WG|a`NZe?:xc%wM>/ Xb"$yo  \m '1jTՔ-ƨmq 5p/Gqp~nRGb3"|LVbc2 3L^$~HÇo;{ŘlMǙGgV jcDƝ(r-_=RE,ۨfxMLar wi\)j^M"=IutTm=]l; _ۯLOeX zMոiOLӮj纷pC=nG{F}g1!k<_4` H+ n|TN$ɉI]; cFĮkKw(hW;""NyZ&6 +c.1W)W|݆#ib +fkk& 񐒳47d7`n<]\Nܓu|{()MY #}## UU *Nͬ .I+6x9щ[{zڜڈ7_qOh>P6{Bė踨^JVۢiq+’.pkqDTgNT,G:qA+%d^D%,a6~{XyTNڨ4%5#|T]UYQy1!dpaE硧6q*OŲ6›C'ע=㛈΋0*Tb@9oR*?PJ&T| 1)weQi"*z/\4W+oNfۋM@%ۤfW!8f-&J:y3χr5j%jNJ_uv1 2W'uTߢM0SO &VŸ$ϤB1TT+'MGܸaܡfotq؃]al[_E㈗z2D|"Bɾb[U&s^T%ibLI<̭];*'FA#JXqh0*+co#{f.N*7WSc6n\x]@a ` K䰨dD  r 1+L+K \g{4g4蘕16Ș#jqUzUˢ<^!v)3mUoG$>-:Q\6042+3$ۏ)MZkX&mۈr& &YcN?ѩkDš7uBމ{1M̖A7-0l?fҴ1VyRE0ʞ+"wIBs޴۵v9a g2ͿO ⯮vzNؓ 1|ޡfx0*6+MQY6yR2x}RxLaȆ4o;L9~,·竚wMbFO\O Ӭ b;{sM[):=8.5F7e0lUYHe"W%0ȄdE*~01+UQҒ$u$ "-~"^ |(ҙP?3śDלF՞„%Krwξ*Lu: ݏ1=q/F* 55 NC(/KUX~ i. +ᇮM*c钦zEmdZف9L[uk%,~=0}*3 myv@@pf^6&"Y0c[zyJCf˟cueF1fjup#{>GLAok<+ i{z_{O*@) J5$H|'KLfk$5Z"S3ߨÿ2-lNW8kKS){}iV?ڹ KDŽ) Zԫ;ۭ 7~f15IT]u %x  ~o, ks<[TK\ɭ-BZKQHbnUKyX'~۫0 JJs%o^Fy7n QT'[YOj@5n4oNO *GiOQ8EOmna`6I$_kNT_A# *=K`[;"0+ p5sjᙼg!SA{R/ _q/0v#rhjzjߕ uݘ[U0.w(}{Qn= "YcS&[gvD.NdmD F>OtY!Nu3ƃ|­‰2T9:wأcuïzD)Z2*GҸ޷ռ 7c|֚U|l_mlh3vT'㟤[öZRQǵdb4i䛖0pdY&Wƴ[qCM73k L&{ f5&\8+R>_n\}}>1@:bK4a"ެvBZO国x`)D{x.SfkcZcCل| %9W&J/8Fm hoDJɊxΐ=y ffר_[b]n`ױ)My $1BZ\V9qni+[Mpqf6S+3Tg{5'!̢n酻VDS2DH0IH%2 <_Q"Kgvd&ؓnsEH{ 66v'1&s TySkl,H<7^^BE_-CԋKo4U&*)K˃SL(fYԏ3 te=ݎ&'VɊEɚ*~bnD蕽hsv)2\ Fa@<|gP[Dx%8An3nD Oy`kĨ$Hݦm#lz*:gdߝHo_ : %2#hΎSVĐc":p/lY 8~ӏt(°( [ozYь7\2O 6k-T@Uaԓ٨I!cR~Jš}}k#,%K+XSP%``αUp*yM=DtR# 2=] !bvؠfPeffq4m9mA21LRIaU=FejTt}56ltlȦS뜝_bq*m˭b\)4A+L?6~6ԷKFFq #jR QeD2cLj0T"eR!s(XF\h Qln-4E\W^D~?kqcSAQBrЀbYWt\e:vsYN٨坓L|fO>,M*m# Za/ =,9~ ڋs@*Pny,bL0cl=ͩJ&[.-1V K / Chk,r+Us aV U<9q1Tʅa8t 8!!`-x޵I0pw7mgt2V>l1t\Vn=z J%#k O[cqyFu rY_lFg7=.0Q/GVY[+lz2ΝcXa;F؋8a8\!JCt,~4P{AB feLX<{Hz'9Gd,#6]J뭱rE1oVhk|*_i5&7Fzj5Cֻb]+xݜMYa|Q>uIZcMai$zL[+  ns:/g gɆ)l5/O(wm ۧN*+A<Ì Oscpˆ3˸uYn2ҖC0  ;|ޮ⍚CsՏ񆿤hZ[ܭ1?0Wʬ3[,I LVm=, -42A1,5t? ,V(R_$dTK >F|&lcN\RY>\^W0~" ?jYOB5`J'D936*'5 gȄ_Clp|,݌w\:s8Avj .3&6bh4/7+M=poy2XB'g-(|dr)Y2$O$.{ h3JZB}8F33r|ƅਯi`bV rd"όaisת<W,둝k P }"g}g3HE;xY1¤?:R3'݂(&mV۬JӘ$ǘYd|iT|EAi+W-9YDtzpv6ZEwʶ!@ UfmDl7'S'cWdxJW،8W酨՜%[1))b)pDTA8v ku*j$5Đ Ȏ+[U %sLԡA,miPP sE]up^xB(FYO9ތVQU5Kfy!PKϕUU*T!E< J)T[$c'&s4V<΢}=heڧSi0 *N8J(Ҏ~y Pbɔbk2^(R4ͅU0J,ۛVbߦ 2i彩&H$I`5bKqNᑟpJreG%p{ V1ՙk\M[.|}Ĉ(OȘF>j&y tRd5?bPECL2sM 41FFz6"_ ]Ab$Sx޸owiĀjm;&ŵXj<c6:2%ZwO-46* 4g /^ oN{2qPQ&^Z4CgLZg7#q{7K?-TڧQ*[c zGN2\zs9hFv *0~nzi,9M3N{vl4AG&j)S5Fh7F%_Bk {C *o`^F:pKm)R.Vi y;־7>O8~*7~41NL5̅FZHF*'HQa#mk \PxfK.⸳ ga яs܃ Ȍ$596j%m Tz>G;C &mvic&ɭg$.0i$SG9xN`I'4Yx?."OHQa̼2B Jq m*:wЭО]3v~"mc*\3y\Ȥdx"ٮgdĖtr|6tPWKg0\$P̚u5\(KݪR1EDO\\a"̉.fS |>S0 %0X-^7*Q52)12L|Iu2-cx֕JP]c(1 Ālϸj1o1!Nf"U p%A-+z*5h;e .Zk .ksb,ѕaPOb sBk ,Jo@t>+j*UDkhUG<#o)`_"KLE#mbT4*)w6 `ÔytK5V`TdQRv_maJ,)J΂6v?.^ 8ך-oÜ9bayWe\'hE׉(]1xkvj׉qQ>”֟W;˅oW;׺爐ͨOGȧo v|$5}~)߯%| Sf6>/7A3كL:_oJIm^^$Xt2 ٶhk]$S yӀ.!\-T橘`JF>) [#/ө.W}aKh[ 3uS).NYTi'F^YKqYs6ԙ(\OB2 ~钱x3WjϹ;A#TJlE3PL]QqtKu1ܺYʵ*zH+Rht)mAD\Ye"pسߖQG W춍 2\"J&=êm.9Q"ݎy1aDgb4]eЋ~6xZeovep'+b3L"8C W,=EBW Ge硳H0DL`KDҲI@+\aF6I拱-Nh*ٌIF6fB|+m# YGh81:P!K@'٢[}dF'¬i^_?^MdG͘҉ئ}3Zzr9J6 2HcQv0|M'IS!*!Ή &J/-҆\LWc&3_%K5'F%YC:iL*>/2Cٶ1!P|^#'J}0℮<(fܞy񎫜6WyE#ꦌ770q;+ي±цa|){AsS̱$Dq4+>s~ܻs NFi(PDCї_?v~Lܕ*Ujć< "鉸eI¿(ᏆJV|)v꼌}!w_u46.F6632xDɅ9xwũXa0gDmPA El_iv*j9<,L޵8\O<q|՝wCXWL)Τ?rNFHsmz &b>uN8T_uiWVƂm?6!"UAlq$u-%ޢժ7K4y4zI#%v?vm>ؽ'{s?5.3N&McX'U1\_b&~FΉ0iI{9%n[%Ytt;:X5)m߈V!'P&J#6p/V4M%Lҿ<bD3Q4u,UȈŊ7V=*rR ynd~ĸB_ X%؀M͠;vXZa0:-UST[h ΔYuUo |~*&=iobdKI=Z0R~(`#PhOWb(G b8&1X`T1r,g rH N8(bEE Km@_@BP[k8D)"nzq%:G:AT^5293/W+bD*ǡL H<љӉjF,`vh㠚5x$ܭhoƏ]uo]$f}b61HlEdUEmnX' > -+ޫ3|mZq:hD6sķƔ{xrUT+ wvQ&cd V~GP-|T`^hN5X $[{g@iYxNaͥ3ΜN {)H ]v_ӈг4Wǡ;\n6J3V(J(=Ok/QOp/rwK•\M`W_76*q (S՞]JOMk=hct~tԖ>feWA$RxxpT$6xՄd?rm" 1z<]QNDܓo3/qg[eWkD &R;THAJl*љi[/=y0iwmA{V' ܱ ϒfNf>{MJS̡ӌ.h?%? R6L[LJ ;G\ӹVN9:&2r!Uvg|420R!v|z˴9#qEwgj3HŦI^w74iUOzIv&}0О6Vպ7浑/(*qG:pʾ2:* MT p2_ٗEVkώ6#c)U *$eJV+eN#4SQ-Snh] SA*,i3$or~_* ) H*j"z3DiHh5A`n 6'fݑ^) MΎB_]R,m}F$`e1y=<8 }s|hBYfV;졲/m1 /)>_1f..3ueSesCaO"o #YG>#W^6bH͘QQ | Cmby jd$QJ}]TE: tiv3Hu6֌Bi3CѨz'~]G\2) !+OS&2g2Buk>%<3x %xk5lo $ZDZS4ףhf[rkP.1M)>aMخJ/5b1qDr=_)*]%f/+Ub2A*(PH9fOt[hjpldt_qqauڠ W3$Wq Ƣ"_HUX4XR9ŵ:+edįJtx+%L:N\AOv~^z9(C\!vox8SX (h S$#Le#$Kȑc .گ˟D>;D5?^NOBw-,hH4+{?wHskp~ v"s( a!iGFI#qR^ ?qd;sfWI'# Pq nbpVlBuzhJ=%H6X1Yuҏkq~2hLM4D[6?_Z%^#RNr!\aiB(4ұQ`emAZI’YF&Ffo C8;S8~c` )8J"Y`eQe+ P` U2e;!snf4ܶZ~}#k?+aPpn$穖\:Qy:M WᴺV$/^>Ĉ`P᳅%ry0Ί87XܯmLFɨ"*5\!\L#|ޘi35"ªô(J#D'E|q*rqg@͒ (̩c*M$(XQvgD){ 7!N H3Bk(d) Tvjw`c 7D}p;n)mJ8ܪc#CdJ/ : we挲f6RrJp NSnkBWfCAxoFyz6mxBTar94GnzN*06ɊiIgٻ 8rQǞ3:#[)B*GָXQ"or#{ِ+yn~pG<%>B{=FgEcVlf|=}_Ɗ'}7sȸ8ŗBS1#&|&M[C}4jH<$IZ8d$^倴^7;>Di[FwktjL9nM?3& Z9$O/AV"*COL7P)P@՘;YN#Q;[9aeDp(˞J bqL2Nf+7rvц^t1+ Ozme*I2ΟͩUDC)z+#F3vp۞ VY:.2M硤mKd.k5l~<"aBy҆D_wH%sآ󦄃:\˹ ׸qx@M7AZVs/xݼ@\hZOFúuS5c[aImP.6k͐p{ݷI‹.h!xFI/r"ʪ+bj)D@!hU` HLNLjHqiإR^c˩TY 41KЕGO$ N+e JV|Ԋ0Fn,=bX|jm1g&ѾH#kh3/2P4YOFFΈ;FSJ t3q*56s5-I3E˛n*jH(Wc>Q2)ώf.։8A:-V^~yCD peEy_j#)w_V tBJI s45yH]/R3w;^J^Qld;n 23iKXSv'Gg_v;^=X;.z*M{QNYz(II~C%g{V8h ^I zVǏq2'2BOxNDLul}J͝NĜF˭9.ss'̍̍O3g걺~M2qG%_edpmgwX~ÄzGt|ǜ t6`uFNcr]D^M.z&VYͽ? J4= %6`h[Q,}3gVtdݜҞCJy"ӌfzUqs7Š DŽ}Tuf~(Tj5ݧmC1 Wc(Ho%妒B_f*w(kfPӤآV>JJg0skS SNҝ,|.83ʧث:zPX C &4*w* Seq&~ghFOΠ\Azw FF^9{5*6OAN4ϦF&fƮ9F< K. q蓓$ޭ5V u TyGNGȀlޘJ"+C_Bʞ|QG8mMRSLV0f5I[Sk,Rds|qH*4ӤJW4Td5=KUb+|Ulڷ(]B#/ͫn1r:[bcz5#:6J0F_;𯫌(NcVOc[dVe}@B(Ll~c+Vc\mY~Z ߐUr.#Kިzr.9e[c)@Z&鍜-+$MOжꈻ=?<gw9DM$0$L$΀5aM  H$Q[h+bn[mŶնX}ږi*m}fB}^49{_6ט"x&Un޹.[bF@pg/bS|xcb| "=~1>?Ԙ2U9(PfLz(n=,+JGzKq\G]k L{RgJd&~*#t}U=wex4S"Pٮ79 W`uIդ2#!dɒ/h2&+HVH0%qqÇߧiɨČ)]-PFKw 6>H!~{ÛÃ)P9ŚAOZ{ex]+c n@\zi]nȃi:S4Ee)7" *d-'>HӚǺ#4W~9#3sIh:3Dê*͙|ɰC"*W,A{\|J%rf`RP+r:?UǴoyHh;x u X77o-W,ƽ\,(Z+ʨ#$X*3VaQÁ |wd_re;n&J<τJt6~$YCPPB4Ai!} _Ixy,z)cD[;Q8l0e#OJZk4b[,iV6jya@NwA[|UyWM N 2 .:Uz-A1 eL.Ԩw0OlꫪVSFB'W-k=*{&g~091,QIP63?{`V숀,G0Bib22_ʻM4nKgn5W??bN s%fC/[~Z4 :jJGQEZ4MH3,5ٛ$&TzS7#;Lz DAa[i+޴ >+Jׅ(ĤnbুR8=(n:W_R%aΖHPKB:2I}.M$Y%7v$ gQ*9kIF逍cK#qygqE G JtC"h/W%'G뵥c"$>:sG<;RIcic邛 =Żcnls|C0dW)3Ȝo~)&Se+GNc0.6Ɔt0N!d3vNْ WtDi#mk5;YAKd[^C' .HRnEłi=cLcTU?/vI1 {/ɾUu5״מ`hnX=m,Mhl2J -Fa|͕2/bK0f|媼teQzz)+7gNDWȘ4(8np6QTQ"2GQÕIL%bbe#@I%S$tE<+ʥlPj92r\3OAF8qHyƲC8!JzN0J8h~ vY+ =)?[eeypo:zR^x^;it61>_p3;;S;IY٨ ZQFn|)C22:sdTV)~{ "b9#l+b*2Jw;ǵ5Fos~Vw&EàL5I4E^O Y SgK ]'ܡGQr gmL8tԯ nێWݕbPKryWE1nbjZRQl/ ^&5) dt#yD]G<Ǽ6,SkN)mÈ"/fb:ݯ: >PFSNj|@{nuF>>瑟gܳQxa qM"@S4UA,Wz6HWr8qMlo:UavT/sN;ͽw3* =kw8b}涏e$ثQPf$^8OUmɇel!Gm'AĢ~h_Z2T.90M45P! i1 s99qZ[1|)EgI1AI0e"v<"@]r Kq.\1TDÂרi"$&16Cf'[қnG8鐴|c.@WFiz{b9sè f1h<\"~yXh~c iw NI5Ƒ.k)I(uсI0~e/ AYG~Hi^!B5= ćP2QQtHIM|Nɚ/&?,  L 2;1^((3ԢfӤ>_ t<JX.L1!^LIGf&~1LX\Ղ )9D]˅X13&OV.+yJN&^by qc$^"}evX4s;+Ԩz#;裙/xipc5LJ`9O%}į (\]EJ"bEs/nVAᯚ8E& 6CU0Rw's;)%<彃 grLy5\7#dp(a P)ISs8 &i4?p x}J %MC0"-/àmJ-WiPYX37,l]0UJ+b޼N/r)YXDEt/-2F!?m;ӵ;sr>џ`-s`Âah:lVv\D"PI&{> Q\ iÜerPZե6AcF)>RMVْt30|=>`I_'SeXt$ dEcoKG'| d|Đ[G'' iF9}|@г32SD #.+li]\vqgCl L+ <V?d x@:'qbwQ&_|qitWN0JIW.sҵMHl銧|)/P8#s{Vsؽ;u+Xy,ux+ 9VZJ%غ 279u$mUWܯSxPĘs~&3uf bҏ):%W̭u5@O )<Њr~(f6̠ITyJruꉥ^le a~\5yv2WrT-ޡMbm"\o*VGXyAI)B@^1]3TxIIRDڤie~2UR~Z\b]\ut c'.ke 0TJLs":O"'hsQQob-G,)7vOot%.Y qh#ͳl$54bF'(&84(kTȥ,P~$-JGU,5==l@5ٿ# ]4ǥ_q\/  R+f Aź׍iǺ]Hma1vǰtzG(N;L@$l%KK4+N?(O~.ə ~srDpF+HҙtL1rւ@Y [iɦ ˀ\q\zÉLZEY@ "FLt3Fe?qo#y̤Nvᑩi*^{v4\`?"f&DZ$Cfg1}ޒ-ǣUJLj!yZf,NKە!,[:5JGeTd_GRIj"-'%J } }%`e-lb ߹ C 'tq0 `G)צ=8zb>O3 m0;$W10f&imإ⚟!PA=ܦ3&*+dKVyo'1̗%R;4E9ma !ԷW$BF8K8G1Fˉww=Oy`RAV[ 'Bٴ%: T H,̭8Os4 "g9?=Su*Vc02>Q7(Ē0 DE qC[83Wbyܸ ?^;w40x,S'* _^Q)V~Q ]bT.wʘ:ُؐ_mL@X t~)j+OARMNZ*A,,(&`2)AR)B.e׶dL?JGyS8v(~Vrv1 .ێ&C6[5 ^'cgr%=lLb IDxfb=B<++ 1ghh!;JSMqB;s4WUPb[qZ@k@X2dJp.5Ԑ)1׈YCx2+.RSt[LzzR o'g]OwZ[6wm%yϓ`HEgv[A$-IA1,:put e-OKU,F"=rF鸠+ L KF`ҭ({»I[6;ecSp7D$7J! ߉:A=']k8 Cu& yL9\{MW?jK[[HȖl4@/+i&rb~ ~dgGJ¿LPqx>P^C[ɟb}^ IiQb8m SXo?\T_Fu$0"T#n!/ VQH.kZ#MWcKo&n XbO!eX\uڈ"SB2mzlt?XꭳNT/';b ϴŪ$a.I\3Q" wHI]$+]!!I܃mZOiZ ]K\RA!#E/a0 B#\Ydш3S^ဣy(S8z27SM/)q,x_;t69&0m>*AYAZJRc_8qMi<]9Ţ,T J8r ;GȝJ;pQX0 wx0(Ał;<;cvuO~0VT_7X9OajUA ȃR/C :g3qUDM0B%<2"ͤ1 )b[G1581 &(\l ÎKxj鐣aáԌnB>$Sd[z&w%Tyԣ,cd3;h,x6" 'Y@h4F>~v TF03 "~*%[.yye9|g*-1y)N*0ۄK]-g>qtmA:' 80jpeRtE\INk[&1ItXX&?e"B!Qਂ2@zju)vzF1g"Zap&IiSxUFew("#伴2|r3xВ ˙ +.j;z\TI+gpUZ.W50}OL/PJ,QIk6IVQKNJ#EX&JD eqMDE VGuCÕNࣝpQވh K0z5buHʜxj5|`j'S{)*]JLD[ ʱxn1[2ErXrR`H*{BLp+Sjh!تNo{fw bl)~`B \՜դLm% : <;jv*fFiEh-f$U%\^Q4Luu(v;FDhUVXz?ѕRc'\IW`o{20 2xU."(|!гZf酵XQD$LLV[9?^3L9U{K:jXе/}ZnD4qɁh稓:< I4͸z9X?43j pO OdI^$W /YRE{2aEM.DүVfƶ/_fWuhl,j"R!~ٮ)Ai]UZrc/!,,)I% `UeTr.3ز\#X\1铩rgiĎD*mv8)% R'TW&^#S8VR8D}WfGe0z!*3&zU~S#TˉG(QSPL,YHZ^Ak9 FDHuR;u ':ځE M<^IbF,(wExm.%݌YPa&߆MkWT2hdXρW񣌓wB1qM<<&uH;ع-rߏ#"]~5U`Œ%XDVv(&G4w4ޗNr>IFR$(V:HfuYX0hCs93\wY]Ͻk:nQ{|ZLt/ щF.W%QJX%MU$}j~'\ItћD !2#>!s1Z?L+QqL6.!XSꄹ-ѱ,e4=~-lH4AXAz&;qR(*~lOƴj{:AeXӕPu1 /]⦱R^G9ԍh~[qB֒Ib3_"H R(g ryKOfv"sr)-nc"X}$8Ih _Y0yO2Qb*#q*R<{]n;$gߍ< *"Qy!\,Q[O\"OljDத1_f ãò뉤S(Q'_ݍ|ደ&4LkX#A!iX,!/, 5ұ[I# _wd-nTA}gm<&Mnr?G򪱲**zyp@ \8N"BHIՂ%5p?ۓj1M,d[xgTMVߩ0nSI$n"ˏiR\)U!(ƴ<\uAlBcDKw91#g\ r1J-4x e-Zհu ҡfgCL!PfBAȋ5Rj޺DQ2 g6Kb>IyMdZ͑byQ$<- S/w= V5vR'/.LȳFJQb+MǜlvBҎ܃2Q:#;Kr@-QTI5"LWgi_^(C@f"+v.a 5176h S(EmgO,u{3?5SQ*Dѹ>.ϫhzf:/XAzix~=#}wcofjrQwRj3+^Lo%9$,rQ$jZC3h9#vru+)RݵT-4ЇLuTa4Oղ~i"BG"m+ arw{,vjYRh ?,(=KF)t71C'SWϸL^|X**\7OZwIPt!hXqq9F[8,O̓.V3+&N$%Ɵ~j{>}=js90iɆy4wڙm]PK~ |GSQ?,!)eu=erQOCRG_93s0uetA͍LGtLIn0Y7θT e+ѭS%LwTw>yQJgq)c:;`z8VƤ_bׯҚc 'kSxvr&0B~qr4\ Ap x.5V^AW,RR 6gELjȃ[&gF|6̥'%U@铚Ppu}X0764%HD,* J#Fs  SwDP(5rs]nG5ۘ AcEGFth>x6yQfHB25JV8rw)df,l&KB~,r}PA* Sҹ.SQ՘x 3W3۱?>0H0(MF`H/ .SyzSK{¡|h(rX ;?6T)<}T"SU41'VbIƁzŤҴ87 H16Tޖ<9zwF=A,OЫ 0%&qZJpBA[6\"'U/L2("jJ%O w7ܝ㰢$˵E:dOzxݍo#8Rv?s7hc¡Tt.."{>zs?\fS^DI8gzn{ke+h۲~"_dqiչ >{X_ qRثP!GʓE$fދog?v5`w ϸ*qkuUNJRX(j܋Y՘1N2AR}<-{f&m#1I`MJm I f֐j*wUL)/}d-]ceQP{>B $)/$.'1M)]V1Yu0Se|qLUx7/6]Vv.:siT0KlQŧ~nRY? }Fv +pt%8+قϒ+ CǾDD g\$}ms~rMMMljx) w2,FDqY`>hXrTL*A2fa &`yC*QʦsceJtcheS`M*zEKȄp;Msd(?JҘ$fT/ҌR^OK1 ۵`u@9ClR"C(tb ;u-%OJ0R|AmɄB,t9CF$څ31A5$iR!6U_ҿIKj4ג:ҰmtaOJN R*c4$[z+GJ@32Eq&r L꒐x 26ִ:3B@hart|U,vY%Fmb5kzTOY W&) 9P#*>=Ha}QPC⟧I 4 3.sJ0RrT bygC+_#Iݭ }Ǫ* "2Yg EL=[3c<bY>9G/=4,\#=U#Hu?H%P@ޟi~>6 S`°Y{nXՊ|$#la N CF(M/e[/.#Ywlxzh)do:͢c[#)4Nډ=S_*||@ yƔw,a|cZ"څ5aJ-? p4zWlZ4L:e`ZQғhLR8_?B f팒%DK̓7N@mi6WTd7d4N4lUi7x*u5]yȰ1j@/!y؛6^3aoQ̨7->$pm臩2N{~tEZgIi0v`Rϕ\ ^9s]&.цվ(\"6J%ab_O}]mgkL݃X-L pW3c4fXP6^gX0LV݁] &+ &URKRK:6ilBM#ugLE4VJ5A.[6^c 뿆!{ )Fd_7H+nP,|֝g0TzJ=#6޾NadsP" ES@dF L3*}^!\)^ASCM3BgЏ$̒3Gacx@vD:ԇTSZʊ"FY\Et%K6%XGY*yu;ʠe|w,}gˌRT|%al kG7jKU%"dt2|>%VoԊr} _\rJ˳# [AxNU Ã߰Q+M˱ qy l!v07\>=0ѧ nɨVe_Hoe>V! a||losZb64E8}+=V{d=E{ZZZOm&g+?l5 s=S1jӱxvN73"?*.^Ɇ(WCfQ|^c <WY*+,\DӹQ:DCFEjE& +S.2|s::gg.]X5⇮e%+e#{*$" ΎKRj߬.7F5W/JBFஞ*c*^*OW+zX =$,gSv,uY71E~B-A# srSU0l$镠OqP* ,ɔؙ@ǯw lbY/j_ٕW; ,zl)y*^!Tܺ"Ջĕl%} kΪlA[W/&fSabY'pGqeܨRauFFh%媯דpEYtQc@BE@//X$x:.ӝn'uf$r3se8lJO { {'xȽ3|%='Pz߂ޱwKŒWd2->u׿if5KwaPyS<]K# F䯱cX_+,$JwbǮIuռ:$#axdU, j #qC|ȃI$ c;%q=9 #fKA~NMqm4UTAo)9jƞEOؘSϒx'K K aBLlΝ;=;Wn\E΄(q! :B5c0@jDLyC%jK~z);I Q^X1ujH$J(Joϓ1 @)\.V@~ gg%a2l67;dPB_h[IBҨċŤ H9Ar8wmB@F$ItH2 [{ZZ-ﴞ/'V4>QS=LObF䂰Cu #k *0C)&!>\.a-& ewYu4 'nP$9F0:*U+o)ϱ{ks\fny8Cy՞4PZ"Jc7q0rL&W|"٧2 ?L6ANv%XYbxIRpڦlPbㄷŴ jtzrHƲLI xFnB_+&q8IͤC_z4?nq;D =!kI x^`9&gLEOxLրcBMs"<ْ-FS79c^C߬ϩݻEϼ1 yfǻmҌAʽ ?(=LcuiCZF.߈<,|CS^SGnuPLuP @h8tqlyՒh@e&+h?faF 0ݏ/q&2Թmo"5\F)]BOD]L Ri3Jy{$&ľGI?xG$V`Ab)D_: (sf[B_ia+'u9.=Ov,15by߯Q-2~seHc_Ky`tB`XȻA e^'qUXa%zL*7 S%%B z8 ]gpSXF-#d/B"3x@E5rCw(TeXqpn~.|>gi $d.Qoab%f L>( 4rze.q9 s2wQ/ܹdw&<DRщ\N)`XԡeɥIp 8Qџb1}OKiHLM]'06+SfU" գb<?Na*BLC=QR:rN݋%# CI, |OlIn2cQ-93pS{|5(H{3$. Džy&ʲ؝ijtv}A{ AĭE{}{-|5A涍qb)ۿ&dҭ:sםNt:D;'_,:yOş>&./b*&rN*9]Ѽn&х{hbڅ?1X̉!(%-Q0 =z):PrPC:,,ۜR.!r$!j*ΙKeJ.fBdzm=(h"U:Q4t3q=EњS} ^ "cr2%Ai?KV}/\!0gAB*AaÔRu}%-a=Kn:* GȬ/_ks(\X. #H1.e;+sih'S-+-zJ@O 3*5rzaR2QsUC>՘1,.>IJnx1 Rο (f֦ j*mOL71ZؖG tb= ]M|!`VVrt7 -Pˆ.* T{&mtQoVB M R_N PJT$U&2n^+݀QLp@Kb5Ҽeg!A&G!3"0c0(_L(-A!f(S1JSn&t%%ɩQjL^խd"ݍAZ'lCm'nv Bh@:сYbឰ T-͌AfnY$؋J) y3 vE~W=Qp5:O 8E ?R8I(m"n}KVVKTqr<&3QEHקZ $&8e66e;JI9o>}(ȣ Kpֆ<|r5MW1̫O@w=~F1b\"\EJ * d JT#:2eeT ZUR-\} VP'A`HM*H`VPϤvUy&9`(uu?n0$9U6\F)ƒS0y]zށ[$)OȘ"Y"1d^J'C=8a׻c72Ȫ L58MV|P ݥ<8 b4O"`ꅊN/mZl6t~>e3xAUĘi]m̐d&G1c sZ{,<^ka`c\|:#T,YTIJ HPLݖ,jvrf8/m]t#_Xտw uF|FjUGoM.HRs\n)1ʗU;A,!@2 Cy W;5~t4ݿb7GeL%!Q-RD*.26#MDk G)"O j|Z,Y_'%Х~ IJBJRՎRܛ)P/]eRTO]+AiA^55MDjĬIdteJkѲSPRMԅ91<թrkI-*eK5gx1+eqf {௮aQRL=V[ЬK ]L xd,OVsh{ڲcMgkrVcV~vIt)ìl]ӈaHj}Y]v-SnF[ ^],r&Uݙr<*:i:1){pï]e@>R1G/(1~j8# ]j:zΥA 7Fق鍂ic67*"BJ=e䄭3lgbB&|ն৮jҍ;27#F}1_q7ؕiKr<Ki ӮJ|;S}4YW ^GD}qSTbMOXMEXgBGȋYW3dO<58˂ST.O߾nͽOg&](so]sG,[D#mKtݾns! b~#Q5oO=BsZM2%0ֻ]ҍbFO˯s7PK" Wűܦ$7r5iW݌g"(DR[$Zzΐ:鐠Jc`I<ک;O3L5N z`l~< "%7;{bNHmB.&6-Ote:D&gMJ]~/7ywQ{WD7T(bfzd qO ~ ~`P˔/XyZ$(KF fLfHvlM,.!sӱ(T(LQ\eۈ\䲈FIĴ,JνLurm4msq938fV ev}wsd jpmR$ 7`ZyE,i z0;h2 T+fIR5 KÝ Nz;G˿}Έ/"䒴D f6+HJa6J6)XW `cԣ%ȣ5+]4T U`iA$N`)uKB&K*B3,|I\!GzP̤&sEBc=5!Hd7ݹp(A x1%̼y&SL׻GdM Cw9E-tRe]GnSIiBa?Q醧AU B9ja6uF5[GK=5c} :fjCyam|;Jak)nuI&JfI9NLZ4c)6 ? >H5ZI與ؙ™%X3H,4wd!{_CbDtVMz[2Fg?d&40O)U-_0JqMwđߑ %N2˘S`$ߩq% q><nbsHgg`]IӼ,bˠK]ϱ#ቊ$F>nfxUahVVѾERjcϫ%I?_O^Ԝ7-wDbɹ\ 7f70SHXڐjDIZSź"!LrHn'rIzl=>*h0+Rԇ݂xtUk2$jOh]frX{ݍ?Bi32{Lc#y((Goy1@BAXd!ev {T4e7:87~%Ě^*YCP:snaL)BNO^A~My>6<غ;;QX&K7=xN A4VO EJؗ*@F3G "y*Ɍ,U fѳf ҠIq*>sw{@bsrQFq$de=Pŷսy{tMn凗ӬY4Bh#$v\BcT^T'd|nu_( \݋]̚CmrȩQؘ ֝{DQ1Ij&T#f՟hN+;!$)B XbRFL<{ܚ(:f].plPE> 4jE8Hx_-Wع8Llrʜl M:iU@NRR4s/ODÿÞiY#!;yj}}ӵg..eBgRQlORQost1LGaMO7 3啳IP9C4\qߙꆧL: 0RoeefyhNAxg۪DKY(~a 8lhrfB]܏ҥ_TD$)\N*쒉5 Wϟ%^քQJwfQ,o|wdpt1 &ƾM0OfoyOvKPmPL }&nv>M<3SRdKqp\SιiRL8&%'JsT N/-Rs>1_{5wJCW+w9$WKJb({tį_׵O Kjڌr`Fg2-܄ ̏f!&drh0jq%mkA|-WOUA 9hV>;޾ qFLm4]GGKO oydzk4SK[jL Y`l[߮M98LJ"Q!`P}~񐏿QMkA^r:aez['.ru+фŔ2# ;>eaI1Xx>o6gcrw!{*/b2uKӻ#+ړwqޒv?$Xۊ\{IQ*~yx;gLvvp://U:fWnXh`^gE-ʾ+\0کx)̘c4^lIQ"qF>>OqVnC/W>ͯmprټH 9cP^)~Twֶs^㪴x/Qo")v]^TP9pk RJM.FK!|GCpgeΦOkP zK*5ʊpϑ>,L9qhxnc2 OQRvo*AWzE3##y%M)Č!yxXxUb2 W%X7h1e4)?2b>֪85{rᩖ&q:U!@jܵ:*o#y.Z=/tW߆_~!c ҇ɵ"\^8Y̤B͟.|if|p9U{]X72dj2A 2G2k<A-h( gam; v v~ 6 17Wcj;[W`޹c*1n Uۇlf)xgO-B1P0\Re7T=43eiOR98&ܓanYWDlÇ4&=|Obnn< vÇ;k鄯Q_O-1 `eynB#F(zrBA(V=rfZgJ042] \TLv5]dΜ9kh~;sn?4%}U%Ik3Fi;$/RsoY ՜#(j}]uȴ:l6߬7<-~ynsSNfLEQ:jx% IY)I%!w1]t>e#}zFp'Ϩ83QxK/Wܣ.׵qV2G%T1*FWwhI8M54 T& uF}()uqz`e20Q7 xBxS(b|z_h΋׶ږxE5mvmgG! 8u;hBP)OuMK<C)P ⡢@W߶[Ccx(ƵCx @`|܇HK<PgϰCv%>% ١Д@_|k:oﳲۣ؄ڸ󯿑gq\`~Ŀsy }ɮoiiծMxކ5E5]LkqʄZ]>j%MM6qgᔈm̀iϧZEŋu`Q; }}fBP8ww5?ro ,ѳӶ+!/*xW{v|,3102ke/4bD =T?"d&4;wqi0#XC?;spg|o;@hr(TQ <#F|#@` p {[q5CxG_iݑ9Yq:;TaBsVϚ8O%06IKw=šzgmuA@h^j<#dPT_Qa*y:x}^E_OliDSMiwA`\7.P ^P4%0P|l [ck 0lOG5g|q;ڵ!dCɡ3Hi튳mBǗė8; E3⡖%WZ즚Pܶk-PSQQQ~ZzF TM .aV\h"JB)P TX@hِo^B=¾eך@'7ŽB#liL,u;y_Bz]h^g1USSTJ_u#Ȑh=}ls8ԉ_59|3Ѐ^wZa ^M ;&BJ\G!s짉,|0\罽T9y1L,܌sb9s~CS)3fl@:[}oFys\ "826hv!8o8d`Z6Rqx(ˎCmt?M3Xr:ؖ]WHAPV.dĹD|߯ tqvu\өxզԿZ)g|G1$9ǁ,=n+ۛ0ؙm ݿtC-GXGudqړrs:4~xuft|J[bI!)NJ.% ŒmG:p40>NwqNRM3,Qn܎TqK5:,G#~dljzD #qo>KvqOe:kZ#isg8<+q ݘXĢ3ȶԽv:uwsj~*P vbvt:̚/e쓤쎳uF~ƶe"15qSP#V1Pu9L=bwԵ:|ԧ}nMQ](h4 c9q:Q>B(\0…WJ߾2.I}AEĘY;?n׳=I'xt>p:iԽr\TH1MH U).ټ\`:veB mGnש$i[-͇9a-uJ1 7ߒ-/x8k%dQIP5$$ЏrzD&6 vG׬7\vm*\?wyh{WG5t{v9˝n~nst?9p܈sQ@rnr un7\5S*b;*-\Za-[VsAE}K*.bYeKZdyrIʪYggV\YѾ{ŠW$VXde.o|Aٽc~2:f\C}6]Amf$ɹ϶18a5`N큱vmj}K\ڹ}% ,YR2ue7/K^EK/\}mdY=&\`Yvqt坋Cn]pe9 -n+r[s cL7sCxoCgrnEm1ʸQ 2cŴ0h+y>3 `OfQ6GDۂeSL}e4GQd>_fj+A-? O 7ߴ^dtuCAIk..' ueSQel>"ai zpub7C\  ~%_C".8Ya]݂6ө̇9;~DSXDqv%/cJ( ߡ&%Bk7(Hn}Ea-$nȮ]=ʢX!gܒɮo\ ,r}8bI@b2M,a2 *\Uf[I#_92z=ǡ:klCkyHZfY|Hd Qsw6ȍl6lO!Y.S~dQrd_tY(Ҝ SšLtm?"kbfU Xh(P"]KBž< ^: l.y3[]NtWKUY TPP\H#:6ӈ,!+[ 2T:4*U zl@_9@h jm],g=shl)geL&r.!(~u`6x%T a*& T]RWGJQȚ]ѳ.ta9yiD,&OC<֥n-s*_$g:qE (4Q 29z5'(An-iY*YX=),&!4le`Ix\Z(~2. #S"k+`\twV!<naDêFbFq)^nIpmcogÆҭʫY%ЌKwĐZK,rĎcSꄎEg¤YN Ζ_rDObvkm:ʧqd],B6ov+U[,[FcbGڻ)n_)A>2(UaؠXw" |IĈ\ ]&ۚ aOzxEwiܓaAtx>/APFS~R=K}"aK/#M<o |9,1FO,3YGr-#,ҁ ԥJJSC̕if & N;WI.s(^I`ɢ8QΉ{\1I Opir?Ϯb}YA.!U.uk$O٦%L2>Lx0y@?"aba7<Z":lF!UXkaQ{{k{Gm E +d}>-TX}z2#@6/Y !$Oc􋖮TGkOsث>zS?Fh?dVXI21Tܦ\![į*~T>|ż D̉Lf*4<ǔp hdl}L4;y\ͮHN0ӭ꿻L;N(A[)~,+_q sdj1EQ9A6YgxLln hrot;?& Íf42_ vrj޶N73/uo4֠@P-LdѨ bb΀ sCDi$†% \SԒ䞨%EW f v+3hԠ؊N/1=1Skș84iA?P"'_% Fic$,}e9C;Iihhu_Oa,K:V76/Rt U $W0P_ m&2mQE-,սrg)KU%u;2OSxLe, gK08L̨1Dz2=uZfB=ZyȖ it)~ r6'ωF `$91rDXĄAwڌY1ϴOvjO`N.*jSb~f[OAdzՏQ#ia-ԋ:ZƁt!¢Yh2P[ NDn=~ b2)^Y3Sgd_o7cCfXY/'Ϗ_PI$fbutXx3k?U\y!dMSd!wǐqzgӐTWưLMij瑦~4ئNcS9@ 7F6b Ni.G42)nr 3{R?r-`Y2b4NvYqq0׈08U8أxupZoT)]z萎HqjnviZcѿ=ZG7}~Gy}@8r?։'r%ws&{C3k13.eh˺PҥeӸ%xK'x|ҵfyBٕKx FTKOox)MI%)7}ùE#{%w }[QsQQSoA[V}\4FFl^!r ]W XGmڂyo +~Q^_\6/?1.olI݊7w_ҩk|t8m !S?7p2p|)ABn6#v(ͪ9[ v ѻ4|<Үl٣d;!Lp8r4~97iS&D-om&+z;-^jNEj6as S,3 i׉E$[Bd`/#(??ɧɳGZ>n}zkv򧸿+q jι[_EGXW1/ G).ٞjzIY4 f,E:e>/ߥMuW]fDج3 rCOe]պh%9L,(- OqS蠖mؐ<4"X@[ftr}S$[+IobYrY?_x=sh-b=l.Ҳ.՛X9VٔC4p}[|٪]ZLטIUԯ.&7#N/y&$Lm,w.&)PH%kK~/ ^~BO#`J)H4QD;UldcnƻMX.qYL{Δr)BCJ8af E+}_:Yb1O RQӤSFi{p,b8fL38-e&^yÃ=/;#&`vsXbgL]i~RPcf@ʼ2NO.SUts!V#D~(7 p/ʞUME-52יY #PYt]w ?ۥlr>a4Уʃa5ޕuh8کBs$z +o+?Λy\NyS^?<` + M,* Z}rFTMb^ \3 {]nZ.:Ktˆ` vdRd@_o|4?ؽ${p˚`6;Ө(>zrnU,rсp1 V-$ՙOR$1NN8/)(ќ |FdUqO-y^%._Rao,|,n :ArcAr¶r=`nT |KGKR; &ZP1XZ&%3{51z:Op^ֵukuFL5˟y3eg\jaZh̶$W@4zrHͬiSB;ǭ>@}vY?CIΜ(H>peY2n)e߽ޣk/;A y[!s>ó}_=u Itir ф<^AILO\iOX~sk?S$"y[ M7,ydRWG5 ,\KpY1M; w#m?rzr.1r!܂Aۥ&#>vZrO#`>I: |Ӧ"!ZK6z<,Y w]}O.~ ##sf\xP Ei]%!!'[ .yld;d4 RL>ᦀ9;mRnX0Ṟ[4~D~V^#l#& }{K{-zIF (ސwT\2˴!F|Js%:쳣RSenjIXɩod,cׅv󧟤Y }pK#9HAuQY?YhүՓ$m399S^PsS kgїiR~9Ke@]K?a3/WnOіyίQת` I1i"zrR4 AZ Id l_;sSr}v#@Z9gmDN;Y~8aHJhWTR,3qh%$EjLbqy6^[jԇ z4^QsՍ#( EӴF8V%ԿHѰ_:M#Ojw]n1:PY }XV,S3$SV'_- geMrS*6IMz!3_P*_;Z$Gŏ51 *5-mU0N2zvR Aj(v4i˘'//U7 :Aѣrt5ƢoRW)_~_.t [U6ʝQL*uׁJLgZ[(G.}/lޓbY^U名_ԗE!@"3YX_*V(#OF~i4$ _r ֍R\81LHQՁ,Zal-o`.G= kl"=K =D8{3ԁ޳#`Tp8u傉uV o<1^yϖ$P[]nNgi h@[ghR|xMo'ʚ78H7 t MPQzK"$ŋw?7sDoh"ڊ h6Cܪ_Ų 3r|8ŦLhp5N窝= aqɔsbӅ"MrZ"0R#_>]LemDBꛀ:%5A|DV*Gq鹩't\Ŗ] !rʁCd@--2DEM˖j{;oo1;97؁Z> MW,ciiEhvZ)lBIέgKGjיdiL ewOxSHLqz|6N;s)W$]piBahL Ϋ58"ī#LF)oFl4\2"AQǦס_zN_{[ grO'qk!az:Z^7VP9r]Q>SP +vJetr$\-`z A6BWjpNvǬoʒypgI,Ly+.?yѼobT 0e쎳9}UxC*ϖq{m9 - sNMex"z:53D WJB4 =9_ZfnU#H3Rsr(MgɃRel 2x8=E5o5ǩ*,mv1`IeO '&׶۴iEꅱ.=^yz+USDH\8Q %ƨҤ~:5iNes˧OUx r̺QfxUi9%6DdV^-q*Xtl Np24)-ʒ)JG]'4NSeL8u2w5\+Y'SR䖛f.w [؉"u,JszdHiŒ)r-3V95n6Naݤ PpJcX$XkO'5QBc/'hR j#>ir.:F|W=qfض|XWZuҀ6sb)\ 5Vf67:a?+֎3g-,qy; &J9ݒ\Ҵ~:^.KQ'ahFq [f*f_d#sR3mg3WVqJV8E|'|Im]f"  %WK,v|E҄[u:记LrǤNjLCL ,O$bN *[#s! d]~Y<.caZ_A,A >9Gęt,:M#zN\oͻy1H :12c6j}J(0g5-Ί|7PX ʨ/-oM$ɨw2[Fܓ-\.7k4coƠ h:?O{rTs ۅ:ȗy~N[,Ҳrun+lfEVڨWiF|6nCG=;ߏw4)`l苻G6vɵlTRA;EӿS;iY=zvc;mdd.L5-Oᨕ+U>ye)yv$ ` ֨ޯ@+e|5zwtћ\ap߉Ob&9+ {l+猓rL) P}6NrEx ,ܢPOFBܗsJqANnz'1{Oi:.J+״|zlR^ <,x-VQ&W|7wrYIACĹȯ9gRDj&ǯ G{[ndFáԒVR=$&޹ 4<&˲%!Tx74wfx[+>R.&L*@sBgY,l?|r|Bs"R7M9{RvW3~I}JyδF"|/:Cӟ|K*qZOלv 6`pwцz=*z񪆒RxHGtVz&qP'soUG tN&9>[oxLt!7<|5@2؜x=1!1R H'6Xvn<&_ϧ&7LvM,aҬR$ yFGEIrSVjU6DGz&LVvhBci yTڛ9|M jSCI}ΑŖߌ?R_n.[^U:W35 `foI\Ի:&;>i)Ε1_NHw[L>m}Jr,x~J92^ R'Ҍn&>Fdt"SMj{Yh̔zwd{[hS)>/~*R=r@<[6D3"*ʷiD^R|Ϧ<[Sk+%)t;-ˆ*dDR)W%O\L͚A]]8<ڡ+Y+\ld+@ߜ/Do #D@ n_oR}&00cM5[l X3k@ YĈ]?1X)'KKJ)_1 &?t?S{^8S?ӳeDJe@qTP.԰I6_`V逘z0.hKV ^9; HG؄q=yMn_I5B 4 V F^o [X޳ FE8i_<@ f^崒2ŷGz[hۡ2{m7en5g>S| GG['W;rcwGT.m%?LiQ3)?`# cOĚ!0 "p/|l_8}87;'uпx?F=\Yx])u{kiДuޱ;%:[nHe*o7E*ovR~a%Ǧ-Ri1n?\r㙲O󂶖i̾لO #⅏{I?PIOdRK5D8FM"Nwei29Wi*]; jYV=IԑϡKUgT%ͿQPь8[0ɇT.F9dA ݠ r(Li;hv~P{,ٯv6,"M4بIŌ\mA)h -9/_iu_ZqZMsW=Sip%4; /,z v۰m|P1ˆ+3 2g%VkJ`>bܢ/+LD;ihft&y5V TI:zvܡA0𧘻/xb{TɩHk^sހ{]bF:GiZXw\ ii GGJRZ叝FJߠƋSF֘eY -A='^E[u~zIHTk0Y)hqf\>.NIgK-'ʰAfܨvtaB[H&nM?7caZeۣm-`lbX5yyD;(whW.c9eU.OtREk`'[7M@NDK@sž5sf|k1v<آc k^|.Zt#J:*? *2r1+s7ON9T[^qNUJ9 6wNuGX䃵L2ϰ'ʸŁ pB cMJH$m1==yC;I^o}2܆oeyh99g~Z h]6Zgf{C7>u%Iii&=cطPZf]Z3rS/Ƿbg7Ԗl^&WgLBpAK}5;kڟS&p{&mk +ξ?В0DŽYLcP-{9 `4GhFV+Dֳ4mOZN&PIƨ\2Qe| ^tԜ?LVF`e7\r%EMka8ZǸ.rxݤɩIS'M\weL'k~YH.Xof֛AZ{{ugP$c!k\.~&F%j,nMޮij1ɬQ%?n 鄟0r~tJ29+O,tݥE&D%֋6i]iWY 98dQlx<#_Í6Pc5Ězfз%8ݸ^9͊t%渘`7ujp"c 1\&+t.X`pd|~ DA+d^lv/O;fjOB yB\ n(Ѿ~QJOrMĀvII8^ĭy\XuE&+t2T`hqAΤ*e#,WT{jʗ#}J_NZu4P8-K vK脱ՒS`3[4qxGUu{co 71L]Z "V~֎#2灥5c25#x\R2OGEd*-xLH|Ǫ mAs4EJ,2WbrJRM Πd,X ie>"y+G`*is ak('ZrD!܋ia0̘j K:[Xi1C FwQ^|V81x'Y {qb.1 <( (5J'kl(y ۖΕ4u¦mTı* 7Q.Z^02H>>Lϗzv$Ux|wC@Gג\#uWvcx1?+MVbtՆXG2*3+_g4{4Jh':,dzI 2ӵVLp&xz ЏCt%חo''] ϙoQtf5k@6#^0lq5}cjJ( [RzfkQ׸{Ϙ2F*t"t7 H)*0 `(ʱnsgcZ.Tû8_~( 9gTѻ.k(ڨE@϶nBɁwi&<+闬 e~[ԎtاLWӏѺ71ܾt:< T `qNc3Mnssd3wj% t&΢)1)«%ћƩ3rzgW]\>^mIuw3.cXLx&2bt\ǕsFQ]d)2rэc@9ߗÝ#zkV'7a5''MA/tkRhw<3?_:2 zpW-Z5 #cZM8+͈_qS4K8kbDO\%_`P).ʯTVf@qp6޽ޡ62y#c`VfnaG48sT6(9pVEqvQF~TzlRɸl/I mѣu|>UKgcovԡYR&]d1 Ί տj> pj"q#uɖ$(j Grӑ汵%cn?՝mjj>5S|JZRgKgj2,~|VU*6{Qr;O~p 02BUQ}7ioޗk#uT<7CvlFn ޮjCЅ^q,@Rvd;Ć&w>֌6o|_xinˌW4zg"Pb>I6i; ly`37iA^. fQfɠrQͤFBmn}jE [FBsS1k鐍(jvA %3%0tc 5lnaڠiI:E74^a#wm V`{;?192W2sZ .``,+%j1.֌p7% ^;5uV38c+'9!ۮ#ؤBE>lk%ߜŒ 0:20T"W!S\!PqI l;9F-C|9gJ3F֬ Q,vWx%f5HXnеz*ܚ\AcdI J!^K'{:շO?S#f .ö- UYW!#aE:!cg蔜t.gtB+v$O$ V3x^8 ҰTD{&p3 Nay[=aa4xܿ'd3k|MO@2%ԋ4d7d8X:9DFcYmbf<&kڗ'>rr]/?-oYvRßkyl}}'R{Ni;79:;uP6U~b2ԞHu/ހq-6ٳ{qkiI_Ɯwfڤ/|#eJׂz^c A´S,>ᾏ+oF~9sؐӝW ~_.~ʍҗpAanlWewCMcjd7!s8 gr 2\|tAc\fx_:@m}[@jl|z.9[~;&h v0QhtFG,=мE()ZƦK3q-~~΍Ŋ9eЗe/ׄ}/.LR^^2"lfT da|YbFvzd ๗/5:,$.2qHLS+ɀ\NOYVIX%]E T[_ėGwF*7 l(+!'VtVs?U2G]96{vJঃoa}s,4"t̩U):sbGq=u8 Ś'AY,v%r}峦]t [F^6i͞qa\Ŏ ܻtQ{p@CF}M]zYUeI{ٲv4LM7SN:Mc*WˇcRJZgB zlXZ ,^ǭ|"+B*8JJe@R^>:BeU|#b7_3DsF9A9(%IBV%RY"/Aʯ7hC 9mn%؈8^`$]zZVbʎףfٿV\QjK8X.\18vsoxZ={Q,d|NC4F V ΀|%U>U>W U*֙. :v9;X֗D1"jCAr~:k20Zri_oxxJf`HYM9p&wUMOkfq9AH?;R]ɩ3pd&**H:ɮ-?O{Wz?ߗA=' q#%Gb{%Mj$ke /J tm8V];7@q0M|Ga7b2X8 UJM}*Tgbe1c cU5!Eklk݊[7Tӊ!yd&I 9ZJϰÓ-d% ֌=mRΜΰ7 VʗrՑGOՏ1X8m 0Ǭ 1 6tsU"Rsl*kUv-U=Y 8T{:M˯+P=dctI#O4:侃M }yCV{KX;}υ^{~vw[ao^9W.Wk//c[];]5o5.lfd r*Xsq$J ".$N>ҞUlyG- Sڍ[w_(j :ݽLk*3fw6[v嚙4`\=s+Gјw'tAK4Bɟѻ\6fnutȨ"dh{[Bŕr/[KlZ.1#2pR>Ĥ*}Ripz1Vsth%W*EasM[ tS![Tg*ĂV f !yĀV@Z߱JO>q"\gͳ=뺎@G[ٞ0Ag6^%&SftMZ(]Y27݌,pDF8# ߽3ƝQ|[3?۴PfTͿJx co]G,Dq|0M˵u.w[HUMlIkv6rj 7ߴkB-}N 힎s) 'O&g)**a&f7N˄ w`v_x́wjZv^^1Z>,?$%6M/e]&(py7P7Mɤt%d>gtśLXe҂,C66PYHkx7 iSV82`=R^%ӇbAy6wE?)^>@Mq $9l'UYC, D: yg7V@pVQҾ~RkK 3pWć,"B89,.C4Ufi%Em1@Z"/GK u4 xtJAdʚ)HsͤzA;絴P3ʸ&.c5sf9A!oF![4-j6PN(/R']X(K I8P*W4#DuZYx0OnBlV=N 3ŖZDlڍ6 Q{n= GQ񕭓wǫ%KzvE%kI[儦ci;Uvن®pۂ,ؕ(t(V:+Gre``(oJ1gvB zCT#Wp#nO8fMnԣ#?m;cN6W̒EF gH1/qrNJ~+5p*үԌyNǗ=A 0=(a7KrpdFH 7ӄ5M1O<^g7Y;ZxZd;$gJsM 4w²_x@lˎd`Q ? bC4Y *.YWmgTzǿ5Oȗʫ͛h-/ьm|gɢѤ.WڦS ϹtAV#dgm\+4#Gm*3DR Xz=*DMB /Ol %m̲ż_@_k6amh9|Q' Md 4#&n9PpLSa*khu4 \(<k$ |>o/q7k4-w)BLWkFo%wi]۶KT~ƎUy._%jۑ8IݗB5hu4-W%י,Z"r ;9V^YhͼٯJ_z71ќDfeJ`L:sB+:ִ4T9yeP06y:V0 ;)OtmTudJb4ETvO׬h n6hr njVedmU*NoڶiyD`粪 ,4B>1sįUcB\&:0^:aaCְhff5)i%B<(2@pԛՔB˯B# ÙI7:sk[uǹ&+ g% ?KeP_²per)_xI2-5I.Iɯ̀|G EÅi]% Μ>ې:ST _DPCs\H,øc>tPGW]c ~/`N}Vr7Bo/Xhk > 鋡_D(`&72  g8YeC"i1j3vLL`4 0C,&X탚vU/_h0d.T'1AN!0q .İ6B_ ƶf8۽W(V? 9'Io9k2! ѽE2ke&gXب'Ȟ+qC̯Ty5w *^s-ޕ]]vX R/rˣwѿr00J:@`ؽ0 [h_dveTgGVLSwB@OP!a JDY("6} 2΍ɖ2G(͛&/>Z{ՑFB4s 3*GB˫yUn.(75M{ׁz r8d+5~tp\2|e5q|!VI &d,jZ"Qn>%O^3&?#kl5jWBL(3XI.O ü3hb% jNF3iFy"0(L~J+{MZxha yv쿏ϗƦq'$s $ک: 7inAQNgf}$yqOF7r2+R-DD%ӝ~=A p#tB}cruM\#6e0je 3!N"/V `z֠sʏM]h>>\`}؉k)qv^A />c7JfJ9k4Õdt,lrcd9YNs =hm3M3.α?jz0'jl?%aUlIf(q`~Q_挒_+&IrP؝"F[z(F_؋ߕRNFؓ]JkâҴh&t3S7N3 |Ik,K}y՗#'Vv\P#GP"47\3JNp0-t-˶8Tsʺ 7\U>֡c̵.-aޕ1{q=-P/fҶ˗ rPǕ`˜ Ee@nPi39ھ W". S!^Viʣ4r[A9Ua{C/Æ4~ʻE]@٤أĨU7i@74=^kS"4 JQc3-nPȌ0BŅjŧT}"L`͒Rs @FTx`2zEi(ݗ_N'<8Je* \U^s<>}՚8;бT\6m"7..&n7q$! N,d-¡diz{rS@#lfY:qpi3D =->D7=Z.mJs @m>]s$8K70۸T@ =%C -kj1dǟq* W~]=z#>#kva#әNw уNn#XޛSIʺʼn``?imu/qPX/gʪKTvjf|2 1eRi^جiMݲ#Lpbŗ*g wA*y4~õ@"KP٠xFU({pWҥԗ%+<",ˆP9Zr˪5˃ -l.rX(I]hHZ+? pw/s(x\VkerjQ5"/s 9X#:ÿFK2Nk;P4p`A5{qO.|pY4Jk85 L1Ƶ@ 4$8mTKg1G{Q%h10r,rߙ=JnY$2xicsm۩QtȐi };R'Ya.$-#y C3%-o[!~p\ `r@z ofBN~^3z>/9Q_}VVߍI]doiJPtpr,Pb 7,vqtUw԰Sؒ+x>wT<.G$eT?*F*:]SPM*Uc@?~YO}7?"u}ܓ?Bj;kFf?TЖ*k[* ΉŁʭ&j ϔ-;ȣ o9,֥fHπz&oVyڙb5-,>CuGfv}z}]jlԽ5^0Ye0Q'`S vU;ȻsAGe~Cܓ+bqYo{Άx\Uqiv*wA  Я.qOnlcr^U&UqOnh%uWc|kDZǀ}Xbz 388[/{uk8b5){)$_\`K\=\-f+1+eHǙ|JG{~K6K&Q gOnrJ]j!߲L,wR":;%Ff Iճ$$V4^{dV?йY !6J`^n6xXPw$54i' 8<|L`C%K 63c `U? %9*+Iց*?TkB*-)hb@v{]JK o# m)VxsͱGV;n~_đ\J>\룩[b}@#K2Qf1=S+!cMa$ءtniܐҡ6gSBa̓/Rf]p@B/Z*IrX+ ~&?|m=gLp@ʛ\3`1J6k6,_/ra9Ľ'+`:~2q:ե`rolLbW{zu &[}+{@8%zL^4J)_N_ ]v(>Y-n?%RE$y DB?I/s/bgpM8\i}⨴C35m#+ eJhX ~NzW_z"<:0WSƶeN|t"1T h0VjfUnT3#K2Ιִ*9uHhJnD׭5ш6}#͗[$68W^N2b,iҗʗ2yg"R^ l2?Ff2i{6%'ܼ/gɼ/߿@|'%7tV9lH7xG^V৒+>|yQ~;R>kʷXj;iW?9{ Dž 2So{/WrD,¥_8{c^s1dk0l T>fg5{N7z)tZ>&[KνZzݯқk̕;A[c2=&=^SQʥdp4pӡ,;fDp1")dFkt=v@vnr7v |MJhߑˣ[ЊVCO*Yk_)R–FB! E-f^vȗ'[,د)-)&mH/$:^ҳ9R}6Z۽m([aV-=ߵ|o_X6<8oz]\%޳ѯzi}tfI'{t[ fxIlطopO#ZSR#ўA0vӖ.X EP]Iu 8JtY:#At*>qƙm^E3ݔMn~_>eɬ8L ԧ+H)4U=:t;<o"l~g#Fw6JP׸mpC]P VaXM+, xI˂٦Ŝ7%;WюH]BOU\)v)LwXWDf޻Ϭ$-<Ab jd34 d#5F wHiB&} we1 s=f-s_BxW @G-Wy}noX"D6chfCee/֓@__7:@fN;:+WGpoYwY\[O{8+7zt44╆c_4'MWtnEK}-DypD?/_W74pp&ߡI>0Qҡؤ6n|˥ThęRž[` V_/*gsyAх~\@[*p ϶Rxˆ#PR+jEfq*kd@,(^QD;"PHeJn؅jp Hr 1;ug=3/;I箸'o&uA2_|t"pgoWU|j{j/u| 2Z2ЁX|l6%NˬU*Qb=-( D*}JJ+Vr[5-wXl/Ͷr˶ ˶W%DJ!A#( Z((v 魓#!Z-ot$e%@ B+>j*WǪT褥c{+EWPמ^tA7,[Wh~kYiW^ =mݳfWA mBYQWhB, YYczlBBOP~+ĞBRhzP5ӂTV,||2|1@ Uz{I45bIH Wɲ0 K>7<_Ƅ; `YfplS je/tz@>\}qܺ=C4b]?ͧ- [rt)pb;ڈ߮UvF=򜝴oeI:Qv=\b}+D呲+&AߥX~52q|eYyR;BQXbewr{#>~Urd"sZUE^`/尨|LL.i+]v)[']th~Msp^mz-Ѐ}_%m6+"L3E1'TBW_``/JCɽ 5qucq0k:5a156 @ֶ /x*{O2-)z#M`JyhZ`xGyZ]'ը\F5[ ^ad@|w_]nqmZ։@sI9v3Px.bߨ9!\@Y=\[3E$1_z%9BhO&IdXȖeM7;ԠE}ª3Sr\j$mDY\[QymUWksv U-WQy& 3Vp/p9x"WᜅG_b$/ρ~'$!yBѾ ZuA@Id)L9"SKuD!ϕQ*GBh$@eux+z˗`_v.Wf@KVB1^-z2kYujO̼hU~óʗ_t6ZP[qo0UrD亨 [IsQ| ĺY/dg\Eʖ+䦵{Rn\$Vz_(~K;䛾nT40 iz""-MGƗr'/}ޑiuTZT^ч/E֞r$=ATsV՗/mj65=%}QO ~mxۣ=l-`Mnfs^[C_,?zԄ &(~=n`_rM]XQB: CMTlI퉗˗ڶ؁8̬(py\e:ѵx/S Atb`Ὸ7vba6wxvnE[ΖŶ>ῷ+_RW>W_iG6/wVڼna4Ti[ƅBۇ:(6d֭U}?2 d xlUӀ> Z|^sf-hũU˺7hO1ڴsL4&W=רO v/ th9*1{W|hO~ڟٟ=8A(/1|ȝٟjO~ڟL0f`3P?,T:+^GHw& Y5,1u Vj%qqW>6/ ;cꬶsh /򬲲^1YW> ܉ ('qOOb]^'< P9f"£ AvL JMA no< H͡\82ƙmҺ"m&9[=Flvip9d %- YsiNkx .I&LaQrDVώT{ Ź9Ia_fmc97CKm>-1qۺ},3ZiGP _BQ|uxٺH'Z?p؟?S#:rd}=tv%bZuާ}CuEswj$G3qJ{{f,-S8;t'rF*%&H sTz 1!eVZh4xgG)M`E~F3ZrPt4*5D 5SF^ C+У$]~EƱ0BԇƘjXSdr6]^S4zgϸx<#;eڬS/ye-=3ѽ{o/-pn񎀿~m8.ރ9x,v@UɓC. y@|ZmVy لׂu5g=J!d,]&o٥F ]vecpI SGcgk5xe~īUZaFb+;W0W[4{c퍍2  " ; jQOy${G5Y."O(t8="qBQ=:N7\p֒!q}<=M)|"G-w o2Zzgjҁ>} |5GisڠJ+,wLփgB%]⋱u|1GOn+bC43ZElWcg&/ rX&<7XsYsYv? QD2* `Ln{$"j7uJQ9X9EU}I^厎|XbpbtF[E:Pb7/+&F,~]YܙoPZb(,G T^. X5EGYߓ?`&2 3xBnyK5Cs H&'`~\_XNڿ6SoI5k.<7,F8;mS\^&t?te|hZ$PivOs~h_{ok,xm% v% -ľ'Mzf/9H,hs LdPnIZP6n yrvODTZ&eP]>E2FiH͖n5]a~ɻڍ n?R2Ҍ5^~IXIAb 4-sVF5y!:$Xp*x`p%p#Ze2ϰtV!גRYu\'(ܯHr)9!r].Pm$HJ"!ܻs AZ3`}@ԁ5c3ghW , /BuryxaXv\#%E0mv0=``MsPUVsGB7߶EOHInS,W uЫ>jHYlw{ [QRj-l-_1uqYer'5hYEկ?m?-@WˮwεOJh@bvAi˹΋pq_-|J|e:~#AپLf0 >%?bhz ȁ9=f˒%xA4#4vl+MAæJ-KΟ&T={|\ec~8'p*̟qvFAngM4NfbnSEq[RB9AhB ;}0O^Wsju!Ͱf=ȝG挟i^.?.+Db3LKiDN '$%G&4:7^a]7X΁e}ԍ4N`_i$QJ(*5i\XҺ^f?xq^j^&n*,!vY6.$1]n@gB.ٺh`[ )J=]9U!: c"p8&oMGù/3qg|VН|Jts[U0 ;no3o+y7f8u,G% &-Ὼ7la M ;qz ϜU1s'E eTJf2J&9k =\/nF}taǃ}=>*<9ІU}y ֤ q_\D؝~ZIUvS )¬`(3/Zf(5KK=>I7 Tf=rcR횱JzMy 97{I?BAŮ%rn >$v},~4l/ _rPߩnp> K])i|[wː.inŽT&8a1"ViQtOГm^XadV 5kZ43HxH>fV'&;ݯW9Z._&9<[9nc7oB2E-i&yf&i0n|#CFzȞ*c+Uf6&o?,r."3L<> U^ *uڅY k+vi#LPvgK~1´ oKh.,K4.|AZz>=>pffTT/> MN {No#]p٪-L7=9 Wv[ߤ(P"  w-z<#K5|a7i,mH[HVȑcgQx d *_7ƒS:_>Bm/7q A9.b+5'oVB0-6>\lFs]3BzEc Sأ^3@z T&kN LIup_5_Zʬ (K"ou5<k*7ƘMNHNz g>y*ܬG46\4'y]kA7r <8yaz$S挡RI]NTiQw>:7c7} ]d?RdvH;&8H]4IVRL ] 4讯 oS\+$ $UY^ P5Vd`07~z ѡ؏lV7jTf>ӊ&uY4p;\"Pnەb͠ߕֺߚ%3;rAG9 >>t2Yf*m׬pa*}x+:҇MYƬz^.IR9gHÙ^=IK!e?u  uivTTJkʰ:+i91KlI+,c=mjmL91& ڍXw\Hi嶑@Vg:ϲF:E&H8S;+̶aAug> "8., * r22-eaVF0u@ tB=Tx0j?:? ;e}EqK:q|I8ޗ=^uZ߼/&р@Έ?䜼Uw(W”`p2aaAJ7k 5&!IdL"-޺ҋ>,k&%ߗ͙;1ݵqNy[:=ɌQ{yva7)9$qfdi02gjq+@ܢVk)v= #g%J='C֨ÇP+-3t471TJG24i4wwB8NZ2-2?i# wHtmMPp0B{d&Hs7(%yff%_gNw |ǜ/lTF +V|x:k "9u7eoxHGx=xgJâd5x鬑ar6"'PWZGp _;`p4}$gJG}=aG 9FxБCjUO}z+G#("7<+70=0OĔw-*Qڶx^‹_mgn(zN[˜-)V]tym\3X@]xZY Vq':="VBsU7Y_=NgH]o!޲i^u3VN;AFm) g4`=Cnj͹&\Ѽ4u\N$u c#3]{>kƐD̍,4ov}63 rT]=|i7~鲰^[k]Zgh9ͫg).%"X!ձ岅'GXz5#5*V,mQo@V*X {X]b_kZ~^KAu ާ$ 4I5T$.!Ö.wtoPyl|37;V3c-ޱ4%;SG:G&]Hwy0jFo6R$e&3D^ě6teu~ MEDo[hnn?Z^V']&y##֗>(Wz'i@SBFtqOw :`4#IG|wp -R$Žθi(MWM˴vFǰi ɵa'"ubqRNJ&rϙ[ A;,- ?TX+1]<zb1L#I{hXd wA&y`8UOL͠1Ʌ:+.V^^RfU^; *wwu S)"[0;”Fn qF+T0Jg_5Fȁ`/]kE6G8 @"Hد,bͪqm7'Ve!J»<]7Ȩ:`9X*dL Gj9C/-Q0دBBGdl%'T"DnOJO}1tYR`*O/t\XF4ןaϐ.,kw%v&=8Sѡ{U3Sk rϜ9e*)$MJf8fLr!Cΐz9"AJđ62GN;?@lD[;sYQ;7sVKEUʘ-D+CY L2^ 9Cz4t54d[(98 aq`C o ̫ݡ/N܈{H=: "͝ C{7v>@:D4ZRl _Ύ-6if^7hgSa9@Aat$rvrPFSnpX+㻰ǸD/-T|2Nz+NRϷX5(&8}C\*C>SkTV[`V#5ikxrFRnLꏑ7R}|i1μ9u!Jxwfg\+_>Lӌv5)j HO]cBCJIa ,-J7J^sݭMxsʨo_FQR.3D8\i}RL̪ü\T|b $h\Zc 8C.~6>NZhp6T\<Ȭ>fVfqj2 K)W?a/qјd=+P)ؚfMSz1V{\Ռ]S4^pHӚ$;;)Ϋ 4+LT5z%e…j#~AaI| Mj,AUAA>Ր m[>S5I@CiI`M5r =Err^TU4yH"ĀpjL&n T.1 ;+v^خ`l8.C⇝U~^:)o*Ér4fݫ8uZ~/ruWRCώwp@n$)de4]i`dî]/G/fkNfD)Vv@Cvi-nj̫yj=8G˜R³8c Py~c9Pr۾skMha9.>[V{;6hGR)YH>Qٸjp>΂]O\N|1Fܺ&r?j_uȏQ6w1:#?>:,wa4 Oۜ)3,IJNHYT~Jύ}JV{$Mk0FPu52zGk\FH|NO[EOI<` 6O::,bxh\K")=jk+ǛqOX;mxIݮZ|>4gX ~`2q;>ܚ|HLHC]xLH߹#[ =牶?/m&xH2YSĮv^V"h 8*+v_Z945?os¥#kG:4juދC嗭odpF(>K.dK;XN.D3:˞YAbph:C(hE2b1z5 u7rw2!Ԅ,bPy r RJ< wI"wu)S3 7Ⱦ+4dQL ˰ bE'F`TH:}6?{NN"^>g%w9(3k UYĔ?7e:vcW pA{Jw0nuz]2'g7ۗdHe?v+o|+7T|sU|4Q?R,NGJ'[?OMAB ^H:x6peOWqIC"]5R"8޺ʡŪs \SB^a&Z,or@69^ Fn` 4&_+5Z`!NKϝ}-J-r\iL7U Tya~~1TH>vN;>L :'j\w@?^'6Y%UNMLDEKHRB>[~JkCM/?/a=2Sꀻv4!_iMdJ| ZR!Ū6-u=6yPlJy2A1>To';j!k䩎yTz~1X⻻H*>PﳡھfpN~i(R)$;c1q3-x1$(gx-ib+},s|pynP we|(Go6ϱdn X]n}-AVPB]VFWC*冁-o &L|oaO÷\+mv|^{ƾ7]Su-tnW3TzH6J?B1V7uf|G*7t8y7lAb2t"wރ; ɥ+JXXkia;Q'æ'zC#Ձ|ҎH1xDg {ÛJˆrn~Wy3_rCjEl|=XFFJ!eqQ~TzԱT3G+PJQ*'v1r1xQQ=Q}S@o *,5zB M=6S]0}Dh&r}ȅ[ Sjg G[tqurRܑ*v8(NZ:Uͥߗ>5,CN隽z_n 60U\ɖT~B(.aswު xI=(fs ])7ݤUN;|DIE$B1e&Hȇ98` ThVmRYPϽ6~6KXat CMko4E:;1(0h.6& u-6@ W"6d嫹ԌBCBb:pg\8;\hNJVE(Y-ZgnU1G\"=C;iό979}9FtL%ιHkt5Jp˛מ/b)߳4禰{UQv8!#}mHu$4gj5* KnrU|o/.[~-nًWiNͦhoui5T.oWҧryqP6ϧ> [!M!5ֶe u{OhXNF!t K:JEEJ=}jY>Q R}m(&- շ 02Hݏ~qqoVŢ_i:pEg9WWkxLVDX.xS2mxM~iDiyH+ ;a6hÁZXY[ZH"rſ̡P^o2G2;ZI"}'oill*׵EɷiF/+RկxI_/gNҌ' '5W٣Ngb@].[r m5(:cOn^KbX>>oDeHJ[KhfjdJtvŽ|Us*qӌ/CTKu,7JoQf{Rf")p(=3j8DT?VV& σK&  .4uFW)o,2#,]eU xNV9AiUy{ir5&(R4dq1Mu=ے:똁t\ݥ>~*m3P'Z5m`mCQJ7LdTxxǐ"h-T읅-Ҙy=!>efsɸ{8 'mYY'pm0VY&Y_pX3'd X61dN]c Wt.J`Ѳ8Ӟu* c~ya%ƥFmP9OZTY2I|ʊPWDS.;HOEKow\`pOsaJfmkl p^XV(Kĕ}y'1n '/D󯫜?!)=uڿF^)ngqeHŲ^Q9'OWMZ9'TxB|IgXl0Yh?XUw_X $pKfǭ,8RI}YQNf2 Qbf/= έYX,儷DI\mʚ7t2QV*BCJwCx7^b;uR{`vPP[9cށ*zKd䦗i:Ty(o5nx4@S ^\bDNK^YH!'&!%J+9'k%/(E1TQUf9˪yt9ϟwF~b/ϰo}1eJ`{ :yxJD3p *5 E`~XbzT!##U1ǒ؃eR^(Lm:~MI0]?l)}J ^P9X*'*|Gm2UD6 _\WG5b[3vF((۸T.wY]'f$rR: vc7 3*=SuL90{ J <,o'JO;_ {K)Zll#Awv̋洝gayš1ѯ" 7/ 70.pg#cɿ䗨hglg4kkȷ-/60* _5\?q@hnܲy~'.쥅%.|*;4;@B7t>\%5cܣZ;TG8QY$ uV{`d*u{g=bIWf3$QL4hǺ5>g|;A:<|6WV!#w)+yqyTr1~opf[_4oⶖs6mYfmn;o57-^4o/s=-[v ߎ-isSJ;RcXڪsUgϖaĚ4{.XدReK[*^q54HKyjp!Q9 >b 1c-1s_˭@xCjf0#”JMy3p @Ώ=YYiriv 0撢WZQ:UdhrWY&U~3T˻ǝYq lgjV+'~.Dg@] G`lsJYՍѼ&#/2h֕=˚(Ȫ2ۖ0%W*)w#Tf0oUju[&iV)r<9ʖ)#aʛeJ~~ԳY5M6svb&iƳdaZU&=$|M@kxZ䀧\_R*=)Q0JEt8QTr% n<]VhV~].ϕMVpry_h;VV^+#q[~=Nuow3\|ߔT'v%Ô7YgHB(O3>^}T~%i2Vl3Ɋ0/;y ;Ra6H0/Y%^,hPѺzYVddYN8g%XŔ&۟@n?l2f+SWh&[!MV*RUF]#sj,vBDvt&1kg\etO e'CWؓ@#>/RT%gPn*i%_w>)y2%_##Q5xݞ~\rʸ0HVU0{ *Γ/NP=}a T&Nw؋$@~brMPʡ2gʨQ s81HY8F }_4NQrd#嬉rd3&d&|y"1bS ꥫKC9w4xG̹[]{tv?/G8 s[M{L8R`GM6g-FӂEm:gIGG3N9ǟ۲cw0v6ϡ7_xťv'4rz`crs4teÂٷX8(f-^5db>Dcbs9UƳz>֬NB_JBI$ɳ(JR>9ǎNv>r'Pd:/fN#aFȭ 0%C90t=JZ;gb/R}̎ӟqB|q%eiS7ٮCW"֨(gqwi%QzH#iksR u~B8ZRHݫy~.GbD?a޸ڞ?lX-H /cZvls'ߴU&T=iN_n:ѥ'c&+vo,8+ykoAþ;֜,Yn6hhS2@fytBq=?Ig 'Bk+"xN^QJjKL}4کĠz$3KHsF^nGi hNe~h0V=FYxҮK>0؎֤_oVGjQ.DtW^v,?M]Z=!NyĂ>LΔz$OQscѰȻVN#y&ycQrψ}ExïjV(ZDWy,g8/6׹%Cci~0jrW;9SG+}f2HܒNލ24z.OFA[);$lz'zJ6q|0S(&]QG<^1 V'?Bzͤ= nOVJ^Iwq\9fȱJ#F9%Ջwy,^b wϥ5͙ד-> @\G_,sJR71嚹AeFl-cjcT|;-7Rٶ1Tt# \!]ۼf ]]m';QVve'1ڌ'DHx0^Gc cʛJuWBZM4λevk VrQyU)#X /ҫeЫGS3e>A_~p+GiC5+H#C9X9+,v.ۑxfg7%>a>WJs80TY\/sC lnp9A-C6X7VɫL#q#5KFwJ9u]FÒ|b˓QJ*  *N[6v|kG qa+ARN03a X%xϬiEy=6k¡qk]M |'0oP|4Xp4o \Ho |3dG0uy H׫<ܽ26G  P=nN2i%?l!g$=mv93t8+_*Ih!b16=_g]#+E}*O,Bvxu\r"P, : N]:ylwPGE0Py8aŁd>Q oF7Q)u(lTl9xS8cwSjEҹV坪etT.deh$%6Ov;J0?I`!ܫ97By< Ѭ<^DxM"骑9CNߗy+[5isrBP m,JwЈޭ(^͡qKqtU}\uflpd+q2gmZڪgCS+AEAKsZ %@J7cfg%tt++#s ੓uy<po&]s%+xs{/Jub Y' a䉥Hfg=hU eרbU@"15"EjrK^(*9'q]Qf[sHٍ:K;4͂qQlҳl_+ax2tb= vGp>gK/ @w'_X='CE{4!K[ZUu~i,2x/H![ބ`P'i> x6Ϗϐz]xNu> dbGDRa,3g`c0MԬ{ tAܖCu%W#9ΟмP'ȗ$*!#n&-ޮB#9a+ER@Axp0x=Da,'%$I1A@6gN$*μkXaOag,r*"j'KNGN =sJZi>NEړv\({)zN=R./%Qe)^%YFj;g˗-wc2ِ3K0{+ ֞,Of)t˓~Qdhk7P9d Yd>Ke}~ o~;|}}0%ot2X ~)ɌOd>dSw|9U wx=݂ͤZ:so [fp;n_”;}ZG:z mX8o9yNƋO%T,Dcij8e5GB.<gd@@V$1LYцO<-*ӓ'U\}rՓ'UsbGHWzf:}l:>%Nttzl#kVO=6][[N>u|:O96]>"]>teu/SǦNexᇧN>"[=)}oqzmt7)=ʋ(=;Sz"TN\_)2uT~Rp~8V䆻AkI7E[R#òEpGk0CCܖ2Z8瞝:W¢,lIC3#G;Zx]r9{Kǐ7߀/~E( S{{9Nɛ0ϋO$!;r~_P*y7j[=v;*L^gip8!\TGb`AzU$*K⧀\N\"3,rz~Z1z,|Zl޽FY*T"n/tNF?&q]7-r>Ԧ0B0RsNO %jˍP.tL޵k_/㞼CU"vL=(ӏ 3Gm} C0d|KmF^wZJɱk5 ƍEsvbܖ4 4/?1RBwNH\of%Zj 鼶tv,ZLIB\x}{cEv8 hr+A {c,l !Ba6E4j@P[a ((^@!ʫDDTDU=U}:s1I}"͛7-jcoƼ#cqF"2o.L=kof-L})'#`GG7ߑmSO#zw<q}-و_}I?$b~JIT3bq+*SS`N4 ԆpYfqiS>TR-7+-2-#6!\<ԗYFA5w4oOIK#ғ=/͟SJ?iz 㧔~z%x~J)Sj֦H(JgP]-X1IǏ#G?5=h+_4/黃|'߂S|wBrԏ_H࿊~jzkϔ߶g(3Or$"oQq]-B1S7e/a(Ɩ;&~JK?S)LrY\(o>z]uWqCWcCx33]c6/2*4~(' T9`]״qSN"z"a? f/$qS Vy`r[Ы[w+y+^(!ՌCl?~U5+)OP`-#{N&ld-ᯥ+l{RN;2OL2PJMu(G9¿On|Gؤ}o ʘyV¤$?VH/ǩ|'@|$<.M/Lz_#$}Z8]y{ H}oz:/(k'dn7,MKcF"ϱ[$>_ ,bEg ?F;go3g`{O^r3?*r[L'L-.zi}ؑS1hQOTB9))]ܙ!K$VY3ῇ%8Hr¿o݄ͣw8'zY|^M\K%-y>oh"WW_:Nt 7A_ܞ?OI>iSؐH,^ bVJx j=b =w$L[S(>2cQ?xWZA6an}XнIe[)Z~xV9rylr<\漳IN-z-~jOvq-]NĆq$/r]M ƥ\ϕ__pq4l=]烞k똿3*dQ|8Z'dsh(>I௥yEwY(׾?M`:OY:%u)>$J;eaH^9f|T+VJ/\>; XbdBpkWbngȯ-—Gu TY{KZ\(WXqˀg&@}8w^[_r,{Z˶D"͋?od?%1?%#rVS1w +mJޯ Zf̵?mj-VV_-;?Zn|#|7`ubA=xZ3ǐa7wDLz ջ̳ry[݀O*Y&ζ75?~cBc (ӥq [{;^n AX&o xwܨzg+ݎ~oJrګ=MŷzKY^%nA]n78|__FA5_p]<ﵒC%Nϳ!^hZzeGWq&/YoN'-?tʩW3U禾T)y>M9S\BaL1I#SH^IC}oKٰ~LMէ;b?Bm3F\sӼy5(J-qf@pgD@y/t_گ$}~J2YLҿ0˫1؍ȟPO |}Q$}±7 g*%Sj:U~W w;,=)>Ek5)Ƨ<߼gME_1_M[Tp&L)tz dv#5~gXB!ׁ/pupzx_eAxW~WaS(3ط;jZ{'o[i/k 8z\b7ZQz778*aFS\=$Vi9*]Ͱ@o>y(ZTi~0Sq/s3mqT[ k|U~w‘pI=a'~79|x|.Qg ۝v)zYww8 _67xë́Oxe~ ;a=J~vA\C”fZ>I{ {l|>^M>FLKͶ[v*[rM_'m~Y&#ǿܟIHigD+Ҷo3y+_WB> $0NWR~2πBڿ8&'L7ͫʺNrU$}Ks\3OX@j{% $.Xs`qe*9˘}|;=͗y^ԫL )]6ʣqf^G;o$SgyW`;ࢌ&_ZnKtL> mHzKi^_Lz3Bz)Hk/A9v+~4~n`_mQ \gڻ6MHՇˁOdz(dtviQwyǩ<2r}oq[]h [TџKzcz_X-ؿ*AP\k'sG%uFq>el͵S5_iXomPv~ocF-e nXŷvލ-!N.K>?ƿ{ $=?{ZNs_Ƒw#?&O"o念!" i3p7w\i |y<BH "4$ )g+a1PQ X3}+؜1c]z^z^T=xpmz7Q[oQ8+ݠk[؎4̫'QXƤZZ!⎩9c8h=Kyd1| 73c *|Gg]b/1)vTz/k&yč.:J͇q!!vEåϞї胷ֵlj7/vgxv9ݥ a"p3Ѵ7Oe06سޮeLH(f9J_q/wߨ.KjSu6ũw'"j|Ҍ>ZL؊ÞRYZ7B^Xg@-h*~Xǔ]چ(5Sk_l. _IOD՞.J~E-#ɟ \de JT4]RxiW Tj,ZMcC (fåPϘ WkpD89Q|V@5z )΄%{MdžLiSl9\Z/|2Hǯ߭{+U/ 9"(f$Aࣩ,P_`ŧSk1ݜ6p{?\5bz0ȕQtp6P%eX-'~yiX.&'}3WNToP'ܡ mU-v`mFS{ZSp^ eA,,RP7:D)=ym997t"gۃ12n5-8Pխ]oԲ0^c!ӑ#Ṡ#oy =7ew w8W~gtV*˨"3Y-b5)nXFŦ֋#8a oMpG;M[oX[NΌ!5s[ñOM:kQm{Ɯ|)'՗b;r*C j/=?5sϺP,j??䡢X]aמ*N֜25}m Wz<(%uPok)6W2G4W)QYEK?n/JUޢa1`$pq?QQ@@ejCq Bp%MuӾr}Ԍlmh |QսqW۝<~h9MϿa0_h=ˉt-~erǓ=s:م2%k}(5jKh)2͚uB/I䞿@I_]rZeѝmVTtws]G #⮨X/GjŶ bEB3qf;kjaXmuH_k`v-?ی|~66MLn@ՔTs/e` ' n1&^lPxqMQi@3y=괯F|]R쫮[wx[6rrUc;1О)ᧇ qn}T ɋo^jgbMf7o'gcS@L Bl:% .~ Оz +J*_K«2ur6c5;pZ.f>K!\B?|a;/C-Â\};pw"821Kf44=t{`e:DY,\)l,^h5u=3%t T.#o]g1GhbPeG#cƊt"s:x- ~U$χR;+M먬]K+.Xj]TLص, 굽Z0LT[qԳxt1=9$`ޤ0RPYKhf9lS}Tj^>*e;t'Vyl5Lfq= Wa!Dm%VTL$y,:X֮NC@SbnI C*׬GH]8٢?IC՞"- UV`=m MLMfZe1)y0~T?O8hoqgu(UXFw u2?lR4 u-'A|SWMrF6S&PZ.I!/|1ͽ31VOth$6?R.`:{+={z֓GXZƎvKWb/n/Dt%lxpHCMq:3JLi2m]@>ñÅ&EDrN:Y;^`r'ҟo0./C_ ؋{,Lçsh"GK_D/)qQG{.X@OGƤ\(j'"A`gAlOa/S0*za,mR5 9pm ?h"!;oAC'Ƒ^Q_(Dfe)f遧 ccR4b!L6zSrmV󝬹#n+v!oև /ZC6SrfM6`SgA@Wt}_KgVPj@t m7Ua]LΔ!|{3gTEc{ :5建4z 96%}9BGh6u?jI <7 otԟ("3.@(pAj=K9>IqZ>ryˌϻ>=\-x\hΥpGIxt |P=aǹl^7oF,u/ɹ6y^+|}yQ t u8WAm-{!O@G{Ƨ^~YTo8Pa_ Xр+xijU4k±[Ƒ?e ϝX#Ųͺt2Fw ([cN'Zlq!;"KvZ/w"|N,T ̏)_Gەv "g%dTUojVM463;)pAD31 aO|+]*-m0 n3Is gΌ 9GN w/JDZ'W#Uamu"$X ՙ ]D\+q1qĚr]: %о2-li'h1yс CޮbʝӚxZu%RT8C$Egn}nqı5md+$gx|{!PpFj^|7˘+y>?V$iZp=^# kjo5 Cǧv wa0]l(Q|riElyu!_"D)ǟ[!ѕ {p$ѺpgH6ZgRan-lib1~&v ќ(47I (~H4 v}Cߚ>2*:5$}v8~$r!x7oay)+,XoumQlx.{MlSY+ׇ g\r_pOCɾE o8nܪ=\< $k?]3^ \lRԦ86uc6{{+~2tP]HPKj'q>vvLv+įzR$OU?G|p]&tӄpSc=^m<DjVdÁ}4e<6i գ~ y׋ѽN*v.f4`N2`ts'abrENkwIzRoKuWa$Vn3C޻vf hFs]c sî@}JM:6 ׀]Y,q̓q l;()OӬܝ3+jIShNŜ_「u xm|Я#Gg9CSהZN17~Z ςG 6/ӎs*oO+O(% /۞hZv |sv\g h/14Eʆ oyҩ_Mmoz*j~8" +/V NذaԮm8aV :mT^ 2&hyG}3lOLkCԣ {nN|C a6ݙ'SAԦy0sK.bM L{mJCo :@LtLUSsK0o#Nik3gpCX1 A#n}j/2,zZG&sllfЯU%79HŒ]~~uklYKy,.aǬ'ͪ ?J,k*ryMSK6&-p֥upOHXA̋T(Ʌ,ZXJ-"g{.1eeV%>o|g憄˴( $ 6N9[m,_OT^n#gUbo ;*(;1j7爻Ϥ3:_Tc9|ޟeKô[b|ߎVY=m, H_/pJDzJ6&KRZ i~1Ҵ?ga"ɂRZCMs#Q ^! ^&Vң옿᥇GPj3q,/Br]4@R̖KK{J/ۆF e:sSDy߄Lru[/{y34N:Gs ։^_<ړbGl4Jn(9L}">M$Vx Beΰ?yu֔Ȫ,vWS,dRƉ= yKZv\\ oTwV38zCd]\nUx/mhLbN4a_ptS c.q|fy㍪+&Ȟ 9=u"Cg&TFd~Za}N5Xa.IԃUzxU /$FuU^v0:[b.- :9eRnw&"1_k&*}Hc}?R? Տ{\{J\ 5{|U\_K~ǔ'1C%JC?I-Ih :GjkĵwYFIOh֠Ͱ_%6gk=2tY!=<#^ƤX*i G/bhz6+c{kdBA=؟->Qf@1_~m5Jդ݄CRbЙ3|Ƒ^eF (L1΂c%߮R zP+-2]ICV\D A\B/۸>~-)IvrlOJt O{A/gnmAu2"G8ɷC>"yRSR2͡R?(ƳSsk+bu`$Zveg N2X]\!}?zj)kj:f~X<&Y 'Ir!swk,B$No˗sCl[I慱!򧁡FlqT^ nrKH tTfkR+զ,RAW`5Rq00FL}Q8$[zmh X)cݵtBU~ȷ>ޝ>qbxox SӃ>+΂I }m_ݑEm&srҡSz9=7Oʎ4%;tSI =Q{ ,"eC)i0PˢcВ.u tmV{y`ʺcUrRc{%UC+%w /WpI{x9n^3I-A![Dof_<}7nB+#-,_/+l@ֆ I7lCotOw>n1(#l}F.fR +&͉mLܻK΀<(PZZ zRO*s9箷1_ .7}y6:ޜ)*z͸FLM/Oy/%V4PQ^ׁ;5u0v)~6o9v9 M)r3YHq2r0_ZIZOFM"B@qyإc3lwJxgڕ -t=A{wl!B3 >͐#_ 꿇 G\vmGm5(05X&ڛFِ[`ȓu\t}ϭF뿎x}翺h4c}90m"~\`@ˇ )_A dv3#o|rh;4Ve/Ƣ 7df/B&>](y}V74a@tk8Z0;)xbg;5K'" D-S~2eD.ᩌ d}XYö3H);qajN9`3Z\*r>nuS^PwH 6>ugS3J_4 Y][pM 񂂛}h'&"TN/sRH߆ @M7ۤi9y3LaA*ʶ<%( _%A`"&kI[6_؉pOi"x&䋧7\Ƥl8j'e?֍|Vv򋷩lp>ؒ/Y:(ՕE),;3YaL#,=T*YΈ)lWɕ/k8T$<7'#1A#4r9I,9S*,lOSn;g ZXS*YGH+yc ~#+֭ؑ٩& b/H1/ᙹ+eQZҒLwД͔#PҖ+35"A^ǟ:L6E;[b 8H㯮-¹wp=Ŗn3d .~ieIVK6jgPO."]oWn7'M ;nGĺ0e)(2+N &BK ,$Ru:_w4zc0GR\ ]h`D Y(+6|3Fc^q{+r:9.ɥRڔ(#e6',8)*6 nb Rt{ <(Y䰰RZ[L`g|=h0e:[X\OPfsL`mLB^e{d>uSNj_|m/;|KkCXe1͏nla!wRgM\Ub]T6O-Y^X7ĚյE.sޟ]OTmR.5\+ 5#n1Qa#,ȇ=9L45xj6#>p`8V<']7L ]RVK'`ӒPL{*EŸem?}a>Y4v=JzPZ |MP[xuqRݡs(38B$CЛq夸p2֬lHu26P  G_Ofesᖓ2Y_ M.6G:^t`;E#eI@qXHj~qe}eEqYlG%=# w"fأ_(VUrś9rTSRw1VE͛c!_Xn"O59d Rn7|q )0;2 L=v5$I1ǐFsg|lcA`"r6Wm,"[JI.Xht#h΅Z#&DLsZ B[wg7̰wjV`? \Ąɶ21z]~n42_Ԃq \S`+Lأ$+J}ą%GG>جtADĚ}lӯ-g3~%ʲ1#۽^+69='`|xz&ϓU(ut8 6s+PleȚwHy#NkuۭƳsDu۽GώcmEߧ o*guݼEeJ` ƀДʋk7ah-ԫFR{E\NkW+sf %. E[6)dG{tƿ2!*|jإC9QwU~Xhg=s㴂ε"RpaMKnCQܴErǀ;p+߅]:}1цY2:y@_}|xO8uڔ~A3o=c-Z)/ ]eC~˙/'D&iu?Sxzt ON:!nN@ Cby$Wz {~d?Y۪!"opaC}E :kh;GRF4~G;5JQ?cwzL$:_Xt;M VzkD_ #iPXx糟"ҹ7"pؗ0l嫉9WKJEkPjۿȽRׅE/ab6ESՏ ^W.9χK72,0 H4w dRNܭ'Cx֡1}Hy]_,,fҗAɦԦ׬_]܍s5 -CGղi?//CQ2]~Cl tţ'.bk;hMި"K҃Z?"7q_-L_F9$,kT*Ҟ]0P{n755Gt"c}D& R/hSRQceWGvQC;ysu'#8'@;|fMջPiǬFMSWR㗧,adDw`7%N^;*7,@UR9³GTc[{~6ZfŅZ(A$>w1>Xzfe<z/սSB{&|աQr# !Ej#K}u+$ c:إ>۝.wY``] 6ggz%DDֱ>SWVe(S2 YW> ʚYE'ړq7tX9շ&P1 Nk `?ni 𹛖%.{ .U|2_Hxs~|:ûȷŠ@ q;"5an* "i|GK ,s;@UXڶg;@Yxwg'21Jff(ٕK|o,f(&.UVd򻨂8wĿTԮ€t4";*oO(\E#N'Xq 5xU(.PT M 8} 1X׳bV#}-?VP& lNJH,7COW\&6u}LXRKBSL ܣZBP- h c,Njq(J4@]]j GpT*> 1W.o~[OTK^f:.z/IJz`x-MAmE,ϖ#lzM] j2xwݼe5o83ݔP]ɾ)U]kA>/Zi!59؏Q/a^s-@d{ JkhM V!&Xd"q,PW/QbT0*g6p?[W] n]>\iLy3YG%/=x_4-&=ItöK-$k046Ē@{jz\G[Rӳ5Tt}B^οvf;Dit/v Ín^w\ݓzdyrەESR]Kɑ@5ua[\y2)d.c;Q.Ƈ51Z=M.k7W*Α@<L3k!zlqTVj @m<#G!X >^̊~#\GBql9yU INpV0$?}0.aS hlǎv8>IٞeNMz܍v#'cՅa~0rt(@Btve!>PqQà LNI+RNm7edtjrLO55^@S3?e>%tL_:> G]?˚:߆dm>.#MjڔvE^M>b=rRS_/+d]({xI9v3Ij//)C$hh&/a8Ek4>Hh{g ɷI&~];CyڀWZ<^5 783z1N٢/7LIwԚ~G$[r~ܔN`oAQ^QC]R>9 jGZ{Mn /|ax|TXuYo4s?}B|6 ܸy mAy=N "g TMˎ<8.${OgOS* VR'5?O=+ x-Sz5ʻ-Df>PlZ Cݞ^_ݣ^BC?\"օm2woc'Vbz2rޢ},85@SLl*w: #ԐNmJ@5ƛB͐rf7;5k9kSîyuyz5W!xt !IsdXV_fE駱t_b1# OؠNEޭ zLUi`Z JuB3WZV; 3o ws`32$Ak[,'I(bfk bJڸH?Q84=mEԩTaLִ>- - J˃H dfyշŏ8O?Թ4Cysid I{Xۯ]9꤂[6mO:VXvw\h6A苟QQӚǺ'j>Ji91+ݭ/qzV(Jი2_&ī![gid5 y a.uk-k0} Bq o06/`?Ic}-ԧ׼\/3RU Q?oz䛙#uLtzK!cJ:*%fWF<IHCkkp:sP_vn?,X$h4lE[Yx@O(P|p`0I/O=9a?vZ+?X;!fƘjI<$vc0tg<[}C~ fxz=P/l{P( r_5wɖG 05 J黝YOW:_),Y|4lcFlWKQ&"#)m/cݏ+_KMovP2ׅLt:B/ܡ EE3>zP:KsLHF luF& wƴՌnDhX@{+؏(:t[Z za*AB^c47x-%l!@JTr|ݕT*]W91ѕs!aSBGerW ɈP^+ GܘXt.ٰ_4IRxo~E Xj7;`o9A-DVwWJ]A %ϯ͏%{_s#J61yrFH&$k~LDPfm[DY/4ZQf~gVk.iBpB!WrE&nҍ?WV;X]Xr) )* ]HP"s!e0y7ONKT%xgU[Cpv Wv%7aF! 2d>Be%"btz+!0_cA: T֕RqrhjkHĆ6Vdf]p!:!GM$`-BBZ+pg%%weGM="X'-atcwF@=&hS$Az隃 rR9pA5]AAJ ]IV;.*P{z|W7%]ADA2C5'6?&ʐqGÏ9kM1 ޽Vs "rD@4]Alm/ Dvn"ܬ͇݄h$gʍN _gXζ!,r]hoByWge8˛XVz,Ҭ%rA@E]ˈ6J?FD}k %,P#~ȼ>;n ..,F( RM%T~8p9PrIbb w= ;y)$`yX⏦ChR*7f=VbHjn z༫IX+Ɖ CvIcQDvA Ek٨I2I%ˁ@ T/ :.4oόeRQ/NbG@8-hu_hyn+S,&ѥ~*P|Aۗ zb&S=pCW@9Bp!Qhc0.0^ohvղ'T4ad]]S Ќ-x~aw@9QQ $ }_8,HW =R̐Y=_VR? [sb^Gg:em!eکwif6jX%CCFL!CԆv5XLX@5YyW,@#h:D/5'(gY5K}ÐmN*|ARߚxѱՈcA Cİ0%2Rzqˋ(*MP-C\:b_'= Rh IzP#gj{f \8 rބ]"tL<.}a>p ;'C} CBpKe<1.5k{{qmm-V{)怳Ӝ?>bAwWTWR;{FM=&u]s/H'UR[E!&Fauca0#>`=U_#SBr ?C qj|o沈hS#DU!]7|Ƅ8 k SX++X ðGT0m0c 71A4tY(ky3I ).x#Bْ ɄI[ A*/gu P!/*nkO4:Z|Ba(;؉!qkK$fݜ9e'4w26?*"d7[N Mf\;;cџhox3c29E'MzsﵕP.R M&կ[oQ\sL1*|Hdohv]Vy9Χ Ɏ}w?g6}T/}T3w"`'o'$ϡ@U >\9|CДe?};eKx5Ebaػ&qM9jJN4.EXQ ֪IEԖmyVT5Tcy:l:34.?%{oT9.[lSLN#"6N(wE7mH>.jy61vlj= Y;tpy3og5"c[*9LXFn{-j[+NعSe+n@ӜuO<~.cf5^|I 6aw_2@ pP%a̡Ji zRݥ3DZ$#@зXSʊ 14U"̄/Leq&c߃LX~|zFꖕ$!;ß~r1p-Pv E'2I2m(jBR+BlOOՖِ¢įЃiXm\<+#uӢ~0!ui7[BEO+ ˟_T"]sYE  gmO*-V {]AV9ʩfweՂNpc<;1s~ G ˛ߗ~)OI s$Bz\hxj/,EOh|pU#v4k0Ԋ rO=3xV 9A.d' }u. !wFK;FQݕ$OE^&%㩢_[TRH^u竵"o ݻZ'Z = I?\}_($aVTtr|gL[eԅqzBu9 v*Tٜ6)~`V[璜gM,l7l '6aBc5s6ŸKf@^Ÿ|%985>R)~wSt(\HiJʭ::s'fWj["Qv%[1 Bu]$.Mb|3$7DlG? v(\PW-#;AvJedE&F_v=X5!w'1hBәkm*͘t3:**`?aQ:{4tM iͲAtoF펟^=ڞe\C^*XK*Ecgv|+ |kB%El `!5c> ;TJr:kooߋ@7+ڴYB G-"OMjMzqC)`LSc['Z^T'8#}W΅mZ>4O.ҡ%y y}ݧ,2>K8>`扢燉NΡ+ <w=(|CVx[WjZj] [O[E (Ng!x5^AOu.?%"xEVNJKq:)JH%u Wv`劯Hbf\=ƪm&S] ǕΡ.ߏSxOx/{ PIJoǪ`|w|Ȳq\Ȏ+#߯d85J9%M̝VL&E~K+?7kT`(<))P:{Ya# &~JBnnVX^['Ʊ k>&7ӟv{`urnf;jein0y~^M( _azs|48Pީ'5ng例c`"@񓋇YXtjMnDoݣ0vz.5A1y_ IP¨ڤ 麆1/&p-xJП1nU|WH^'L (.:mj 2CO\s&;۬ ր?ӡAg+h'3F0k>I:2{1 G"uadإJ=H K\]^w( CO[%]DžKCn3dPCvѹL]fI2];G !n P.︼?dHMP\u}$Bv \^N/vI%8jdW,8}w|B`˄1hKǡknw'*&˦ cs\Q+AZaΖi;V0NI(v(jfJOlES=0ʕ|BOA+xbDTSu3 Кy9J15Q4 >鸶Q٢Slz5zl^D؞'vHJiZR4AV`*U|~wۆ45+ tJ=Zt6/$@E:iq LnQG>iMAL߽L=.F."JJ[Ev6 ?ϮZs!G֚߉~3_bT|VC<}~c7A{ҲncwB.1?c)eԴj5-Ȼ|Ak@jݗ/I{iN>1Ro.a!йAyzY#qEt.&yߗ2gOo ߲Vύ4-O;tCͼFoQwXŌV,q^-Ldj 28j7GjTIV%j튁skLo[-W7uMǑ3?OKJ 29.dYn"Gk|E *6>Vu pG 1}LEdߛlKk X;4SР_M3yBF2OX%{Ve!ߒL<񉓕x ھJg q:|Ϟ_94&HuMf,Q_-yb`$ۭ3htj6V?NvΫGaGY#$6N$eO~WiɗCLBnBn!2iNjO« W}S=^UPY4ZO9J2(hg}h֦4~WŤϵZ@қ]@ە6G/cP[#Hd~N)q=J/)dKY&XB˱(}=e:-+jm@ޭ.X&E4G6&}K!8:sOFG~U=+!mj$&;ۗ>DGIovNR)> QL2E%;X|z¬| ?>)mݰzmh~iuvj3;:gvwhN"eui2I]C B5)MYPu=Y4uI[uWlNͅ|97'C[4Zb.o%L#n!(*rZxcHs0ڿQ<4Q*} |Nb 5I-6,՟p3`ސI/]s8RetqF vkG0`p*|J!UdtY0kYtwN@QDVfu#Dx^R@VrhQt+t_JɽlLz 7}.$&)L/ws`&5/:%_l w[|^q[uuP36ZzNj@{ʍ\WLK(s7+2Q*skKӌ}=#V1v{!`5YxQq`mƊ`_ A*{r poUz/jG7yw&uCŢ{LsM>(K}0hQNP7e\+]ҤN'Vyo2W(3zGޝjN==[Hfoc|b ,XS$~Ty!*5aduBi 5sRv3n>9t_"{joYrLw6ay͕;we0kV?tyOw׸'/%';/|֝vi:2W%T,z8hv}9^+x +{k|21Wٙ֜}g^LDR>b ݩ&Kڍhk8c? qNݒ~b3\2Ӟub~3};,Xm[!OZoy26WCmHcքxgJydf=zէeZX982v nt?z02ڈWbe/߽29Y7-syh2./Yk 7l!Vn-4[P djgg)dU9u;m3S4Rm~|C]\mm7EIXiRTˏwĻw@n勒rva6/Ɣw,ʴ^H6i=(i7⸟`˪[uDKujUշe$o#l~058yVb G-癈-eK ~4=r-m ~f.p}7~*IHwG`0MSQպT}I*YNH+Qr4RxN/^`հ1P,W5\aΙvdQxP)B7Go&-|d]\I -5{ 0ūu&~^çA'՟<sˋ;è;IOY?&t[mPP\Bg2 y|pu#}Z}k^MBZ7~ä"ո>plhx.#<탊XW+Azͣ+{_,ն(IYŒlpiGϕs\&K[W~5:w\PZ :1o:A߳I{ 0e ?\'aI1*w7={K7;P_u<=^ y~;.k6;0qiucz}5D&Ѕ^=9el_">DGr{r5ЏyYS_!˄_EF 0}e Wq@ͽWVT1<ؓgy˥R,FeZP%ŎJ*ʬ[_u-kz=G봍x"If@+uAg@HN(ǃsYm5Q}i+UFM񺬁Ӕ㜒YY g;9FʼnZ_.?w\+4 13"f a#&| l綸Mrxy5 ǀ}Z~~*vpy!qu76IXӓn[{|QD2wjvn$¼ yuab/KM锓 SS2TaEQ7Mx0$"p萸X4MsRKEE$1mli !P5L|{6ܴO`ngfٕ*kuCRȕRL[8\VUZB<1\,S05VNsV|oϲeΜ W1b`K5o-$9z+bc/| {0(S;YrA@ 8{Y38(L T5,})ہhϔrVIj/tP @l$+װ\bpgJtn`\RrMYc *#F\ɗKV7{ 3pǘm:Lz#-eut}6\3 ݵAV/[Jχsm{>`CmCrFEЛ/p=QՇU741fӥwGkqL3v o)6 MIWW ,XN@ 8#DwXq aOD!gb&v,adV.;t)6M/{o*=oe#e7-i޾T Qn[>hGJk" ; {Itzn[z͖ں7TaX|l"?!-WeM&eS3wa |8=g3wE鮜=_hkB<3\DbS|atRtfvf ľVLTJn>Cj6-*=K0at'Vu;<&_ޒ=e'h!4WJq%"g@ r{gkBQ]0e,i!$z!Vdk|s5z*&݃v( T訊 UϹx3%*ީyAp}gGR&+SE^:Uk ҏ{R{.{@륳2b2ZfBa T9w2Ul9 fMPj<ee'kБIj4霺y16t*|"U\mIKu\ʸI}EBۊB]2{RYXV2w*YW b ~uxx *mMa7\ FFxT 1T^Y`eܽv򭚞ZQ hnm#żށ>ف1e礧ßW| $)r 0kyT?uDcW4"9"ON+yM!/>G|Ш+ $.RX!m] 8gmXy-o(nd{4Y[0TdMWyQR툵AOwj^8P^2VA,dS̯h_x65b'#$ ȃS gq'U.^0(ːfxg&I@JmO-EJ?KyR:O(W>4!Dl+2wbZY9< 7P }llTeųe^.Sdqޝ0oاjLN*3 .%*3S#cP cYJ8VKJįם~}uU;Z,9|Y9cC]cߌ:(=!$L4};uV+f3nE9I`Q_.XSP%&Wf3P:f] [[W0~TמodH5c LiN@vb2Ո˄z>L2C]rK30ɇ5䶆ZMc uJpIf1;b]NpP/R{M1᠃>)tp/q/T ; yno6f홂L,*8[iJ̚H7?WxȪ@5o&suй-1H2s<_<ϙd%tɷN7ј?_kw+!x蹤^;Xiz%8AqDk=0 N٠#D~MKh?ˆӺ7"5I,;goj}%{NiQ¤%+yBw yB_O NȸXt㞌Lttܓ58@;Cޟ c>H_ Oٗ !k#lw0X!T@@<[\ V1o3oD ;‰؁ZpÆQHMSꅪ~K܍VBP؃Cį{p3Y/v |\t@(: ^,ƱԜDŽ60A bEBm@#Suf^A6.ж. [-G  V@$ٙPdmMBmTbnŅڠ޲o@G"YB~ib #? q?(* Bu&=kXٸA H"cG ]} .l$Kh<xIxybyu$4GM  b|vd[)@|w'1X1h>P_H(H )x"(@1FqVI R$jaÍeCO̘+'0P͂0fher&˓#qccQ N"(kxH1gHX$4@n۪+9Ph P (n[{ZMHvYQ#odZ U7ݓܔg}cp/ߗTiLLD9H(Uڍ)φ؜`Òcn :?"D8pξ#"4pvҘ@ @FqOj} oG"! 07 [*]gzG%Z?/)`T0f wo{ȉ_[!(X{W#i!YJS.=E|ӀQ}wpJ p]X^ΤIb"@f}v(vW~ݬىHy~۸M0Dː~l?K8: abVIY6}e&G 6 b\ @( |chbK`Q|$U >TՌՋGՙ\0.K̠\ۚWۨ9Hd)hJÜZaTT~140TB,HW_lHͩ ]9A"V SeG(a+5!7HĕIdt.jU&%'4_&2 |3\[j<'ojU)9AS>&C}M5*~:#ߕ'yRP4ڍ9ĺ`hS+R [E;j&=\OmQ9:4|=xr]'˶VNJrAnoό\N\AeS'5|hES{fY|%lޗ r( ɬB u_Q錓a}>~%]!ƨcR\V3mCeber8;Eۮ"'QX3N&7HtNrƋ0ܖgl }sv_Np+S..Aaal<ߝ@N|w /Ea֕rd  n+%Z^ 6FYX'"wqLG͠yjV'V1~M,Y#}ffH V߈D*zݏ׋_/;ai X,-FÅW>:Lן9Ӆ}y`&C*]:]2LU?wilUeekӰ͆ם6Nq'*|pl5J7M 8̫76$݊"&k\vũ>ikǃ +}Cգ)Mdn?;Ǩm@ u"1ܶ7ޠ/qyrVvNj@93$&E!GzOci\y#>y_EZ&,z#+V#~Ң+(ӠLۏ&ɒt2$[A/#:eJTslCr?O|{=ƕe&K-K&&_>%}r-?gǣ2S0Mf@Z^΃ o,ʻ+0~XkGBIi"|'P%Vtw`xJ_VR簃hѯ;jyP: Cqj5>|Cj0)2h{?U%$=w&ߏS;_Gu$ :J ~Ui\Pn;mm:q6%af|hIo_pÄӯ29w*{~`Nޖ.k)*656|O]FYDH]4eE5io߱pJ00|L]ߟ&e讵]3qs(WY_ifV%m:\m{(O)` @Çwd# p~Yڋ(9qC٫QN,qx.'M[lօ1&dh埙IGYKGeDZ'~0loF?mli]9pe Gyj;3G3.S,A3N/lg'$*-Hs:gMf0f`5Y_MVQG bM1HBa!\ P\ԪT(>5> T&W w{ C.AHɽ$3EO8eHgD,vґ'ۇY2ؙ0wΕC[R}Oy;:½6e0&GDzVU^ZdgW]^oxi^N6X^x\Ɵ-ѯQلt}aj\Ţ>H֩BO*&כNyL*5ZRCSPP?gFhy/c@[lUkS@:sgV&4IL?USU>7(i+zm7[bӰez_e+V[(_٭;r jbsh2ur$w89^s'Sp=+?a+$MIgK]BӗOp&)SA!=c<4)*^&ؕw>=#;^^Fq ̑ u9Ya,ȗ4+gn jgL>y0ҊZlIaTfie*+fdbD X $aa}: ОwS6LF)>!KB痑q+9 =Ϗ\G?94܊2TҞQEkփP㟏 4F< 4K+ڇ V%uoCZ.!"f".v*K>!Q27@Os%N6KGyT[SK*.5Dt>Ԉo2O6&?evyE쨿wQ,ЎnoRi3Roh NfW".u>Fˉ:-lka)f\ٺ|)ל8Ҙ4A$ Za /oiEṮ-WcOȨǿvo~LM ԋN&oO#J j֝d,Ay@h6n` 9%Os?V$EAf-5rn00`1YQ6duY6aYHe7+ǷƱRGl8™PE]` A9^#w#p텾 ԟq)SQ`HrĕpU>VI8^Њݦ?GiBFkb+;jZ<_#@şvt[U4IuYxw'f-|+0߰(f8/AW(u}99>x&rT}gCks0=rn"\G G*]=pIڢR5S`T<Q^rRPYtIHaN,HBFvfU14>u(>2co8*AD F7ͧք1R]c<5k!tl*b ?S'cWl*t b!:?M$ 3PKt82vd[HNȝr]O]JOepSMd԰uF".D8z˜]hrwK?ñͺ w7+race3 {Dl dD@ _B0.g_Xx^VS̏o Lp>lq붐E}&YL9jƗ[W1V,2;xx $٤477W[j>Eʸeb8Qʴ裏kGg4:6l^>;ѮHp s7=ZJdLBdaq06 ,16i$SN⠮# GJcT奆+!Ng٭=P~MWMnZn)\+'8[z4qvQԺqLx^=}~zP/%&9<߇qC )pxy;ɈkUZk4!/Ǥm>v3E wp ;K__oQ*2ƶQ]7Y,ByQl0ĩO:LJ6~rl_HYw?J'ײm}z SәL3 ',c`(cSYzp2CZ\dYeYگ\Z'5B*|ԾnԱ^ !-YcP>{)տ̶#u?Jk YxZ$06Kz"bI]8Rbp,ldq׉lTɖ?C*ӒsNbDf,7'1IkXm^8Ӹ}JhQnn4kF>\ B&џ!ǁ^v. KEg񩩱SC !XRtOٟ2D_mJ!K)?5Mvhmm t+|3S^"3rnkآS3A#Zfrμ+) gKbmXQLa+=fSz?C|݅ko^uDmHxOuC>JLtBk Kz'Xcu*7:zIϚn໭?ũoS˫A5jcNw{[0x'~+P_JuԪ"f>^XKUD`sVrF?.ŨƋoӘ,vOd8١%pӞWq.zޓ:S!_ թnbnRs@hTY'bn<^#A.- @`{jXN+Sms<:luEahp<'7jO^o2,ywVXHs/NtxmPVTך w7sgqe6G|1ݞWE0P{WG9&䡗"o:"TX`@@_ݻ̶3zd+. Q_JU1Jo~9`pOJmT>G.͕L-۝xjx| \L~W=zxq>2)5wt;rsVJg<(#mQ~s-zqUۮӲ|R;]ϜqZdJkgW|;~H.sAtVߋJo~ˢki-QaL4 Ew N,zyFMoZb?Qpzl =oFu]eP84.aD60TpGψI@ceտϡ*FŖ: *\Nm/3w>`ПH9{Irqna jWq`QngȖ0GB>+p.iYwxJݓ$!ΰJπmi,Yאּ/溫 X%fKebvRfcm+m=ן<ɱe#.7;oOP/ >.4@/NlT5&OdH]C _[MZX䈦RGMrK)L5+, v3s0#1iLȝBAdlj^F[I!t`G)JWl(m#RbF`el[<ҏ5:Rfr2=O3GzY#ʏW `%*bT#o$x4IP'^i4 j%T?cM,e' qYDKQ.Գ{EUʢ8 CY 84Q%1Ĉ0+;bSٕ~wZJ7t$qwN@v^٦`5eZS\u$Zg QlJ Jlh4D+t$x񡥌h,血E"~ޮbLJkaons Cn,k*eY.XԪLnam gF%F zuXP[mB&dE_kMW)ʝ<#]4Ͳд<5^r1mhOU;")P"~z1^bZoEKkYb!*:iM\Z+~rL+M45S*pV'h-t:?nYZRabl7} !oWgKe[Lﵳ0Dr`ĨMU>? n͗$i%ec{qފz,v9)([i|z^y]e.3>[MP@EP*aGoYUϨs 82ׁhKM463l;wi쏊E0Uܭtb <]|4TfTk&UFU.ؚ!Հjo<Y ,wO^=,fOk)OC&# ~A#m!?#ƜTEdGҿ“^rhKQ:wY!R|O{b( $L̈́mkOk,>oSDiqm,o@@wKS65#"NTK)1!>q MlS'7|G#yY]<*da.wgᕄ?3)Byl-Z5tfuz}D4*Dv6yOSvV4_:{0paz\$ڟD O/}{͚hFg旘JE.kj.85P1A'[,mz´JPcАZ]"/Ozq[b犱㋝? HmV>5 ANBTQFQZyy[2fM$Jb0q-eW> $vW4/h6v|ў:``FHy1O4=BV8`/7P"VOJ'Uq"o? #hOOKA$6`t,2uByw3)`SPǁXqRXج6d7.h6'Uꍑ =kw5 OĪSmD)(F\;{TvG+_; ~ŔR ^.:ZQ3duyQ0ba|9\v6D168ƸIztxpkKV{TOS-> 3Y C RB-q2<^gr''8[jI3UCo$M]V|S~D{:bgelV75~xGBvO-x(a~ -br}&e˷L>,J>:oCf"J3I~U(`М'NbO oܰ}ܠ{zQ4Yچ4O$={ [':fu5AӸȳG0 I?;ii>a]tEX,҅xxo6JU_[pmOQ@7|%M3rMMueF7E-/C LF!qe^/ ll#׳IKm5sZpfs]g/y^,Vr ;>.$? {<-NGd=+aY/9!4IfQ_Ԉ!EҤšpYܻ&<ȕp4%fSV pY?Pt%L2W-M3wG? ڙue]Lu1pN}] ͘"x/Ǧ`F`kW~h=JShcëh|gcUX&$2j)TcV1>f ֳqWU]T|nB A*e$?)-#`c1w; gxg8'Ki<:"r5'hjJoL<tφ}tZ{; >Ɠ?rOR#7Gp>i(D V$A,0:r,Te\ ig2W>Zjk?¿bߗq$NuTeEf@E![y'cm.7I3^M#4U_lW>|YQWI2&oW԰[1tɭz5O҃-5{5|=yӳG~V.yZ+ =!lu ѕ*M8FVZ< 1Uk[}``>Eeًzas΅vBSl{XBA:_h]M L!M QE! Q["wh^Jš Q'4:n6|1˯>*q ">9(e/avQۚǡbd6nz' VYrHt`WXcGgb/o10HdDTTo,>bIfs`EBdYj헥í#Sudӄ%LM7V- 7W̴a]9Pl7*2]+N_Qcg2~Zh,? S4'kyeUQ?4?׃@^&:bDM~-Z0hyIEws}t%=&ØzZnh(O?{,6<>J5Hxnƴ63v:jRo gWgvoW$4qڡ?< /u9s}oR* E6*|}:0ඎ2u"h +9jR8[g*Yo8Uo'kz4s?qg2 :p#'Y.'+iؓCQFpZTUgd13œ(dޓ,6Pb6}w5͎mgLttl۶mۘm{bۘL_|.>E-9mYSJX]|ssr{upPgh2JQDC(C Ϭkh~Kن_Cs]ڇ:vS2!S-uZ "T ! So=o~؞˰۟mus V tOOr4"e1xxɈu{%h^YSQpF q7{ Uq7@2>4Svtoy|b@UAxM[sFGޣCKl֟~67&azc_|/o |2*o 7;T.r}_a8a*ojM02|J PG3 7l} Y4r#<9ߢHSG|p+)`G,ߕiG)L"ߞ'71Z2<} l,Ptd~ O™S$.P6KYD'uiUotvgGwpg&DF[v1W'#kvՐj@?`X^z\#V̊ G~qQ~:_yDL&i}B ΄g>oq|ߨUs+&EdHrZ5]b>랢`R<5A2dx.ݒ]0xT(H '%;+FLtp*R[`u#{s.hGb{ I7s~]RViΊ,Da}]g:$Y6CW3|Igj6NjϱU{ċ"qo?q+^{v9mBYmQJfK"JMA Vilu7dY@rMVq=$mj(${cSb"[F|8y!4ϻ2:]`jD[i|K{'jpw.֛V! к7Z|gh7Ѕ7t@w" rE~Ñ6o5d@r*/tK ]S  \t[{0ߛwS 4sCF"JvHMb>fG%Mx^#\5  `CmBX"d DZ;3?oV A1Y=hVg{mW%6C+ 9'vR(h__uƜo)Ϣbh" bw0ٲ9X80y{3YٚspspX88;888ٻZٙԘODO^8Ogy?Y!KWa+ȿ =RAЎ'OrX>Acc)c] 6 `5>< v|9<]\Nȗj۟A 'bb-wrAP҉Űmm[V070ߩrP FXuY rS:wE)lWȬr sBd-OK 9P^-d(0nfR ]_h0ֹ[#71l|-OӁ3f:N1wV .99cmxq RA~ns#))F0:6 gVP慠F~Eػr !<17gیxLj=e*bV'X,'HV?^ jK/,Gd2ySdXֆJ ` ijx<5=Wc8RP:;T11;S18JCl @c).{l>Sis[sFFtx@țd~K~W ٨;DsyEIQ겟26LD.a`|t?c _K:AᵀVIuKdc ث J\4Ow`[]o4iE^]7 l5@?PJ0R"oV(tڮCtZS{bg+Jǻ娰*:)Ҁ,Y"|;Q{&`($-hܮ?uMjV yK9Bi."cf)_J,GU?W*Wʢ 2#}՞lE>վҊϱRV.ԏxʝ9J{-`=wU~),%Vzb@A3%"U_gPyWl;|?A\L"65SOݎD6~[f> c0UዦbμWSFnW0 sj~Z|4E0024K@քF2pnhe1G?4fP,j')=*zǘ#m3h>1%R}IySov\u(YNkFSFX'N S!(9k8(/R~Ki4}qa9I 2%?Qflbaby tͲ]zŤ=~ +"xx@5&1̭Y'cz)я ŪshLʦƄқf9RSO~g?+tqru/RꊘZdU10Rx'[J- R9>i'UAΠa8z1ө. hcͥ„{ǸKOHɰik !`xŔ{N^݁ O ~ɬ*tx=bnXaAP{SB bOc RV\!nYW)w7pZ*rjR(s4SpvKi(SUW(Y\P3G$51zqFt[>{ZoQE]*0.[xk”bˀ]qu`_Wq& L ua=~V$S&q=;oDZ<&IO/{i7'a6nwE誾Vq,_r =vj-㩛'kKuiMa*ť5_4_7Y.MNT! JwIB|d5rQΉQu0zEǹAXC\)./喸![~ݩS_y]Nskt d| }%}z†}= tAյI|aIG7aƑݦ߭T2ALd*: udL&e2XA9Phqeۼ2Gd4L㊈w ύ)˹[ʫ9Cx>uvNI=<d4먲inV1t:OQSm=[ ,,Տ0 ܮ t(X ?` \C[@7hywsIp%$M_*:;+p0A;4Q*Q 3v>aPU'Ό.vvquDs^"O5rR"MO r^k|o5 pap!,BlG H, -0އBȮk0th GOpBs tUƪ([MP>Yj6N 1L}}!!QFkdfk6#{9(LfsvkZTiMK(jZer J9uAC>ɻWёŠzyw( loOgYSD,oel MP +^:ucw?}A9]A[teܲwԹ A[_rP7rl5k?zRߠZʚ[Q)j}fޯ-HA'ߥU.1=eN3)+>\mt ^E|;JfTJEs<؁F2C0̕(1)evcL{q.LVk?+R? M>`(IA8veNq~lv#\S=d:S>:<4NH3pAzݖD'FzQ0r4Ѭya%geǗ #ۉd'uwcQb hz*+a$Cr"iHCGcʬU6"*Ќ ւg=fpH*l NasWx8;/#jF8N0Fma$4R_"}^b;:%6˴fRR#"AXJ`/Ww 0=i v&5f&f o7S W@v4(GQ'P/ǚcIx~`G9{md,tueX-(:ۚ 8,/Ǥ΂B{n+$hw(nb *vG*N?{˄tZ `wF"oSE5I}75t؆?PsG E"w1OC U@$ǠBȯR6a%zY5LMRRKXmRf;!IhmPx[. fk̍]1A{|DQ% uHCRBbMnfC%;͡70e`&3:HĔ=8NcFJzɂF3u=c%Dji$)sق@OV6O^ŏ',ōh!0lg p´"MyN{$w4Q5.u LXy@N}̥~54_>)QYnʔD5) !، al"&[N$ fN,~6MNϾ?Z=~H$hiIM*ʛ݌Ulh*@4(WMRr0zzP #qc`=XTs{9GۄLep:8AbJݢF)Xy`WmёrWkpHJp#B_6:ǛF*o)X"2RY=! 0zǜht̆ӗ La6klc2.!NFqk܋Yמgu]0[ xJѣ("b.CCMW2;I>'N]}B::N:tp&m=9!IƌS֏>ls_wF-3u=_3$x [I)r> =<^@uǞhhS!)uHUkqg 4J2(8!Ő?0%2b78e(mubuRzus щ kX+z(qPݱ  :7=0!h9 J)͋JGޑwtlݹLaL7U`ҌLoI:َ LW3Ka \8I=y@| HF:ǫ1poYW5Ua!V$Y7.ZckIY~{6+{d4Ǐ1E=ѽV)s$0% -Rl NzRUO͌Ѿ=>g5e/|'L{Nei:01 C+Ndu)tw JV4|驛|**[I*G#_’yj_~q@SL:2WyL-k1nG9km[/-0 VS:٪fZ ʫc'δMVM%J7bHΎ*Nm,'q$B>| XK=`Maڤ%L%Z L5qq Z ~b#S?U96)O/w`%Qt{^rl]9E%@ܘ0$:}JϛqoNO/1zZs+Mj#j j|s+VU2yd7'gxtmwKǨ8L\7gyӎd |b\b4Vu-fx&&gD7xG_G۴W>mU.Whp2ʢPoZ$sOݹXKm)3{M9)%ţ5b87F9Ķa8)naȊ5@7bv̩*EXXҋS'XTʏpNZ4m/l)yGԴ/XS8l11eh#\} N6/ wv%ܜ?,S ?"xJJ܇¸I '|"dr7U6zn씤Cd߫$Uۅotp;YK9e0l2CVZDZW(p%4W9sBUl֯-s(rB]LK(v%.h|=%vVX=A@>rwWoa! /͊VK%]豛#?~х<+kusm\q3Mp0c WBК0"frP5DFҫKQP*&5 B+x5T5FV`ޙKZtq=Q{o (4Fwk[%PyL07%F|Ʉ"CmS Z!M}'Ôg]Q$2fܡA| zS© !kos_4 Љq [JufzwZ_ .<< lN]pU-gSyt,ptK_|$3_F߫U*Dĺ 9 =@|ɧ1y2'XXFtAԝsq}[Wz3#*:ZgO/Sܪ%DGfABe 4XNSވ y'HV9-[y7Xh u3i@)ET BQ})[eISQ瓐4L1[SS4[opI:swMiꕶ.MG4w -T  dlO_'-]i5&;u y 2樷!bY͂.\e{Ǝ"M9,&)IDxDC_pSc#Zg8=~̪|,v$rr 4LrKC<]~\2`ڴ檇2ZQz w>3y˅ion1pOgwZ%Pgr R'ǁ 6%$uNNi͜YMվQs%1.mb `QA,.PjMq9uP젍1x! zA[a7OKfKQȂOt֐k"Xtp^;Կ>h믉i0]Ih-v秷 ldU&T[;d¿V`*L#.;u, 2.BDkb>kq?p.v`$aE3*24[ctMOD_]#Ȼ K2mxk~Si(L`XM¾ ?ImAdAL)z3}j "FvHn 8$Ц ҋ F[/ZqutawmI0c۳r D]&y$+w' cׅ{'kHn~NAuS_D χ{<0IK{.NƷ:0ki)U&R;"M/]Jn%ς..ƈ^QXEr^/#_MkCHl &'CF^OUU "lwHrD=gu+˃M,?ݰe نeFO==?BV7ƿ UNezGz_n& $Hq7%0~hdPףr~T!H¿yu/Y铐y@$Ο*{zOE)8&wX@N(ɠɎ-#Wl \e:A)=drn=G `Pl) ْ}F>ܵXru?KEe|.Z MڦI6rQ/Cds[ K9 t2?˨ >EƐ'݊`@F2(??Rtmh\`80ϳ@x&^k9ճ$FZ>ঔN*~k.5Q@U7 ~/jqsEx>o PCv2`/k9-i -w!"VTnWZUwM- |X]~%4J؊吻Cy˅ rDwyo3I&G(4v Uc"%B,x\Àax`HE`M"ID:;Md|&q1oXLؖ8d.3)l2X\tD%= 㘦ԺI딋I2ŖR.R,^ઃNiѽ4+,I9Aɻq&o'*'lM"2yGm/pr[Od;R Z$&n<]{%*5FRF/#P4A0/L@hz==ԅ&M:7Œz%KaVQ^03rٍ^'lMWMnߺaҽa/=cSzUv#CR:T: 恥Cj^?+{j;#kڍqEm_~jMD]&շ{㔯^O"&){sIQP\qEښM/" *eR9HvB_ÎP m1%WRf# ^jlqs0VT>K جCh4łN/Au"a6E?iaخ؏F5 l&58˖q>sXwg2ݓ>*[ ?N|+$zll @[۩6f7Ҵ*a]?: q 2ԋV&ILunK\q^ `R1\O],f S30%g.+aaG&:wlI&<܅PõlAfE20f )%t k;;Y?tS]YLo%?VdʓYjdDVw)@D޲ x)T]ɕ9ZTΗE5bx2żMvr: qO:P E}/y~Bz-g+Y{.cܪ)ILXU 91S38a=iV:]Yjo#ol@b4Gsץ4=-Ay׌1pkpʲX%klSvЭ\RЙ_]qpNC`$Fxg4(gӛgbkbs*'p*^ւ4jCT^~?||9/Ut3>nB>u ~KpX FU$";\p-j. p 2AՄa֐i"ըr V}HS0ybe/Y.@bJ:ib^y^ݰJ{2j 缣a\J?SѢ,Ӝ /Ӫ#Џ_2=d[ePz%H&*7kI72=LvjZs qV$]|cAۿCg~ IGMbg<ـJ^6%|dbsha?s-q8UJvgTƦRUȠǮ E"ͷ0,NCC[:Eϱ@fH~>? O[3!E]w4YKǶhz5Y_-L^e`R#L}-}|jP:%I 'Sr*A!2C_:a@2햎/q$w)(>g,|Tjmz%x"#Xދ[\uAiL^6q47wАѭHGUYXĨϑC'ɵ0>o)fh 33NirFJFV+8}e <X[F~U%3V:N|Wk㾍W{DUE׺)iWv%OPO̖uL/ua(Ez>J~EEXqs=ƺ)P&,35,VIڲɡ}p)H*zϗdDڭvXZՕ)qӒh#jyǹ=V_<M~XFMAL$]51IA8E!3e$!H U7tJH6Q{~S<62afwey*rנnR0A+~,R|!iŹ%#i%hϡT ^ ,ʫii`ЏFSRe K&&[Nw$SjnakVe2YsZzA=FƒVCώ?軝$>ʝ[$}ϞB.{kbʟ07z7N!b](&+&_vO4Gp\J5=ak6y)D4o_\= e98x<6p"`]=A}'gM-O zFj+o/ +\N7[[z1B24͈h.<%?vug=qCDMlU^\퀽i޴Y6 F_`, s8+Gx$P~ʽH΀CɜYCDdl 6uAƄ|bݨ!OISAnѢ7an2@Ŕ_Y'Qw[51}y]8[#m_(W|.Й'%.cӺ Jφ|;Q`׬bggoSS6YSXtbraLkҙNY䮅7Yt~_eYᄨS&1|QAdRDe̟U.YxNB%EpHin"5'B2!Z,$]? ue{i}7MJ }Ħ' 8D4QR9uW1O_,Ԑ3}dr= U%ﴇ17d pq̽g [H$]A>d5ӏpJZʄ"mB_hs-9[_MBŮJ e*z|'JA曧`iHD-{t<-{ˎN*) !Z%PO4RQ^hs}&Ԛ}@ g( 3_Ҽ:)u8zJcuVbmh)9|t"5VJS p+Y89)SBaUk޸<L"lR)^Y?m2A4^9|N\7Qi)y%zm#&wյ~Κ=⑲a kX)ȳL[r3=(rpFv,@ӿLldžʻ~σ=`j _b|gQC)k[ *eo'{(%m|]/i ?:Zج,aZƙA?2%Sr-rd0EMkM)m-]?=oiG#ڎ۱Bwڐiy|(xZL*od#2y1/,^˧p}ReweHǹ*M7ILm`naF~4Lv1;ibO}^)-uzvo?I -MjJc%dY3b^i R0%O~B_Ep3^Y.d~R9b&aZ$Xn|O:SCɷ+p4>Fg Fub061Rz` /~eLWNIekKyB"/GKS"Byh2iv{KݷUßz?s+mWl 9xL'|k OKN6CYgg幸#аMGWncJ4j%/UrDqO~I\.OuGⵞR֛N\zάԩ\ @UH+#@)mry#zgGKA7SJc3H=|XMLx .Oa?gϪO?_Rʪ^dĞeB7(D=m;"μ; 9P>2[S.Oa'`6AG+8ecA GAWLʠxGܰ.$({wA[Eϝ]AqS2(v. Fk"}a6//؝;y!Ke]wѢ[~|iţo;)ogN~,gFHYfkFuRhlD=G)Q(qVϸO՝ g/ҝxR̸qPvDg';;@w qͪƝ|܋ΗdZSʪԝǽH#B')@)Q?wvg'~6;/WJ)5^#n<_Fdw^%u3)ndy'YWk|oo7ŤELIM ⋘*o)^I#w|:QUY8^}>gRes8Ar[4rL~ f<겇zV1N-dnƥW-*eg}̪N `X̳" 7$pQ3}:#FcAJ^LF#er-~F-E)Ko2Npp-}g3O/3ꔱ0f!Ch˿R*؛ɘ~8rے@7Чe h*5< .NkJYWf~&v'6q4eFRAzD@ C$& }.7:RJ-K'{NŏUJП1I@@mI@Ӏ6YKR/(ŜfRJړ.}}29V^ߨ(5-"xVD}0US;otiLPʩ|t<?!?Q 4( 9#=[xlMeNlҤA*A2<#ح:zR3?Ŏ0OP:ic2?>vN>9Gb=֨# gpyom1bL)}\d b;}jYU}X(pS9{ YOԚO@GfRRjnQ2[1UJLKI\M)A2%ʼH)AFMerOz֥vy Wg` )e[3='wNz0XQm=)LJگUoJ?( T0SLq_>UzpRJU:3ZSF|XK)#~g:LGwJ)FG"FRΐ'|a]glgρK;5fv>e~RJ/hESLޥi{(x}!g @p`,9%D[\G(d]Ti2/UJПrwnS:j$-$(1 U>ΰ(G|y_I~Q,TQ,j0yW@v ٜwSeL1ڦ^mu]sYۜm~8PH)k#&ZX UO Eʑ-@1| 10e쑇5~42^mcߨ׽z]]z׵⫕yR3>V)\G3]UKB7p@p㷦s=No_17$so7wjs\xY$k|I,?%Ų?2/%XЂn;/R=஌]=sBF˰B߽t_vnӼ]J jaBI ׷03Old#Y*؅-drm3y2{+%hY 7ɔ=W xƔheh!SGm[|d;K)iR88eM)A?c#ɫZkG5*=Lj^} *0Zc l PĖ&N1lk%wzkKiʀ-oÓX[{dX?VuȺ~<ϣ)~-/Hщa`D*o>3ZiqI:D=]# 鸈\FerU ޳S|rsEhԷg`ea5,^lXYߐ;`g^;¿, x͏p&ljvş^@n8w[_d>5"_RRjL,h^y*%4 Q0>sȹk SWiyHUಌ.hُr|fR.6(PʚN|~R5L U.!:32ϫGhOWº!.Z!FRW$Z)%Ls[n,3J]G^5>IӚY*Kø8N/sKCNz!%ѡ/28i_: I&9/r*F`ڻCwL S/ 2ⰣBe&-+d9gÎgwy-Rl(*\"{`ʻQ)1D\ba0;NqXO uZqtuء- q؝ݥ5]rX/+a_Aݮ4 =: ګ+eauؑ-E wrG+Cſ!Hv.UJpq-[y~Č}RXSU#Q>pIe=_-n J,?3YJ:ӅYaDsm"Ǐ cQK9|q|{+3(.砸2rŭAqyҠ2J@n}g[YȭOV|eZwRZҋ[ӓy+%f%™S_dkHk\ZzȻZZwʦ>^u*fZFJYXkE/RT4"z>L|u|?˶#^9l.k^R1(W)%H\@\^eN=Oֻ/MN=3^S<9kcPVuW)ANnV. =xOٟ*BlXΩcnjQS,.iA֘+1282Ϸ kjq01_uc\΂ Jv2o]'j[?͕W[h)K$%F!r .-"<.#Zc/xJ i)GJ 7Z)MuwwFcR49@vjv,-@)K;}Nm(5٦#Ֆ ʌo$_QBD͏TR⠯_)A??j!f\ Z(%PL_;0U=qF]*)2$L_*y.tX7hzs~2ſj?v;(%!jۅSB2ܠy7)%o,b72\Eպ.NG){]nJY]Ik 8NeSJI{; ! s2RJIw:8GRTwS\?ȫs41W6%BXZ߈bȑ ߕǙ#>W7pdׯl? _ d7e÷FuȌB~Ԍl\s"ٺwe'_hRjo6|+Rb̆#S'J1ٿo6|M=οe`lySY?QG)k2' A!'2Wŭnf@+BJYX8oKaiR.WJ-̆/D QJ](m(%l'n%6fPNbbW _Oư ' ߅'' >&`6|Ovoe×-IlF,+kNJn0?'+}' ȭglڟ"+NQiږk`eQ/:m[{N0Iy(%l~$F`]vVw״^t tgdr?SJf#a} RЃa1=tE>D{uRV}R K{˕RJ-̆ka+wRb̆[Os@)1fwIOuعîV͆ɞ_갉 _O54fm&nlJ \5 Dn9 _\yt3(d"ΆӝAqyҠ _S0e;Bn?2LʻzpʣRTW9- 3,Gd> cLC(Xn"J0J x RWSĸf eF?. r>.( %$MNjJYZNjLiOr~U.~7͢/M*4'$3 bh!J)ffL 2+%hr3`^UWJ \zVE!$tȜ,y0g*\9!i8Kg9UAf:`N>[l K{Rm1)G$ohI,<,3LdG$ߟG$'zDr99@YT[H.;GwKtLJ)~ yRtg\&e?'%RH~-qgy5|TCV-u,yDry<Џ%,fV]wɞ8e[mqnHgN~mqD2#mE*MD\G$%yA<+G$.d 9y(4\O2c\H^zBqZ2/+3S0#aG6@@P?j/zZ J rHviދJsH5mM.G$ug42H[YƷ(yd+ArDX-LfJYqAyR0eqc|J)Av۩<爤PU#݃4\8XLQqRIvroW*asmHHr8&QR6sD28r$TAdc4L#\yH6+lS䳡lq97BK>n31\*Icy` SY|f\0KZ ߨ>GC][-q+ .BG mgH\ssV>Ι5BnRRws73ˏ),dccFH&k\$Yg3q,fy{Q?T&H /J~x$%&f')etTvX*^Љ,+̼A=*"lEOЏjj8YGòwRbN9O(;Ĝ.:ZuX+$I݃J LFUsHWJ0c*oRbF5rhGRbz  MФϔsQڟʔ jBYp.qܐrJYXy"AU^RbˉyB6/QލJ$&27,zxoHU[fRJ\M5+/*47謔Bs8\f1{< Ӑ8VJ#jH/Q4W󔲦+-ObPߊyW)şϑ_U1k0ŨUt~WDXD6l%&3`k9W4'rF+پݏ9vN] U;Al-Xr ({5CflŮo"m'BY('14eXdfw0y7d}"%7M9H}Tg[ʳTU w R6Yį;딲gG{:úW!I҄ϟojq/.aU՘#۽q>J֪x;S_Lvx'JoTJU#>VJ hatۨW)A +(vK, NRէ$f_oxRCXuߣn$_I2)%AK"O@Կ2(%Qcz U,S4NJ{ UeJ))s0WWy[MR ڢşVJ1ЕImOuS5~5U;ҘƇU/+e][xUJ{TB~PjM38Zfd cgg~|&AVfB\苃D|ߐM*HOUL#r|.Qix8wεM8Q.b xQa[he*)(R@͉-6kQds r,z/a?{Zܫ2Okv-1Q.2n5%zHDG_J)Y~3vW&3v/6 W:vålҍS$CsHwQrHפU|b[nZ挐uZ|RYaR4vUesKMnSJ?wwVBa1'S¯Cq_Й9F@bNR6]sC'0#PG̟Ju4;NfȱӕLr-izY3%v1w[/6G.zwh{R6Rnb8ܬTJ j4/'HO*{RbK.,#)RNh xg7TM.3~ˇjn` /-/ 㸥\8KerUWqI"{ Kn,#5?M-Zu9Om৩f[ׇ8uI>doH"j˕҆כ#a.{~q.tyX{>Z˕ôW)Ud|C{2:Ֆ9MFB u|QYK)ռѨpF|YJ ZWsԼe_kWJɻ :eS2G;8!68:>IJ)v9()!L˧ 3kxx3m@1ωGj,~{?&/">'rR%o)vHZHJifrS e_:fPx|rQ6:-Wp]iL~Bl#ޕ|*5JɏBZ֊v2k\/WӘO,IUv'7~@{h,Ӵ8Yk]iƤ\m}R> hRaW4i;a4z-d\O2yG; +T!jgE؞gE"yGLw}X(uD> ah{Vz, wRjg-wQm̎Akr(ߨ2l`mf.D52tڪvJ)A˓OCm V8R v 3.q!dG7-ywWv4_b( hIĶbFW?-#v21+Ǔ\pq䏙^QgfxN̰N+I:Wx#Pd@qqUG;LY,HEߨ2T4TPO~0RSoXק=dvt|BAWZ?t#δɟbꗛy+6gqJiv/+eL~f5?՚:9 Рj-LDͲ๪ , fwNm!?VR:ʟt+ D-J<X7BhZ2en5Y֦i:G;R6c-X?cپ[NH09#v@ovh%8LẄ2U]k98ޡZ jc4n A zAí)nu JfDӨ) nP0WNEtTn:M:&J@(3xSAs]zlo#JADS(.t'kW v׍.s |X& U+J5+佔hXT{#诊e` ]|Fh $irhy1SA`{2\6T|i͋ROk5oRڎ1`7RlmKJ]Tg^(l `fREHoG #?fQxgm:;zgJ:326sieEXS,9mo)V:׵KIv?f#~:,֯hߧϹȅmlO61G Ŝ"!鹋9x$nڟ\lACWדy >~_fƭUVJ629qc_(13 _ߦ{C/O, ?Ћ2?oZi@F^W}Uco=C깱, Rߥ{]2&O1m{Bm^W{`컁k9ݳ F ƫJ)3'\QJ fzTFvJYHڸ,ԝF?Rw,)xmj즸v L;&ծD+(Wʊ];h1\)oNIZGWG#1@-6l;ԨQ][qhw346}34MN24M÷X ۤgY_Yٌ#kP/.c[ͿU[zߦs]"osES()y*8pf)%f7SJV8ߤnS+﬐сךjֆl嫕(ǭr%;[JB)k{c07y.NVx܌φnEqRNGo}LK 6$-m2:Ljz/xPAewXd07CD~ۻyZ)y=r'{2A^`Y`Wṡ+=WJ g+TeFQJ HW+J B{0G)yZH>gA7>h - , *JYCMeNȔ+Ns&I^|%O a9 GB&RIihBdR(XS[| (za vZywfq]'sw1E|_egwk\:'qɜ# {c1;+"WaN޿$F#\wWqFT~X$r [\?$YE'^ABn!U1OJ;ҁ͒YhC/e&ۧ?381jnR>k%\-SJ :`@E)A7#A{R80S+~iT/룔F9o82g*%~WSJ zҀV +2?PJkx~ 'I]ӘQ0Sz4uNFI(%hnO2SJ4-GW-e6)%Vq@!.2uQJ#FQn$9. uzB*NW TK&A/IA9L)APEI7 b[ o̎ gn2QB| cیgOwKLbTm ~Bf:UEUJl%+^{[W \SюB=r0i.JU&0(~\x# d+DwEQ^+/T<xY{W{OS̹-{e;(&2 ]Nd#[>4I-g)654\3NGqE}.zp#v"m;|a +Kx4Qd"@]9;gΜ6g;2$a-qr"P؎a68JpO. EGƐ!3DF|*F9%_UI!~%PFGjIڻK$vF9YǾ3Ci bb=VH]tH> aϚB=nN$+V"Mv:]cld2P`8rV+d{pIq=j^"##fT$sR60n6ư͘DN8=yMd?2220\edÀ,zlه͢U|R).F6Kp#ɕ*uu^=o^KC*q̝'Ik$_J!S97⒯"cCoDUr)PG$Ƀ(yF y_ѯߐm=Wyx4lHCkhOMd{"22r*-=cI2RX K^rP\v-Ln-Ln!Wpi-CA c~$]jEI¨ycJІ>@=2A_E@m;2ոă|!QPE mw!?ǒc_mm ~>J[:j<'p!qn6K:7l{OXdbpiJ0qH!d%|‡+1O˖Gho,tD(Wr# 3?q-Y.v51e=%v!b׈ |fFUVګߎ^r5hMP'xn^`s-9p`o;YLIr/A-Wr\0Μi%e12p,eLD8(Xpܹ>d ~..NC#l3{5]G-&Y3!bxFD?BTʄ2| NwEK`%RW*WC2FYm-8eK`/˾o d1Xn+ ,ࢣ7G*Gl0os9]`_Y)ϞtjT!aɇ =/*$LCjc"w23~Tj A-]0_ٜG,[q2/V&)VdV+?l{ }AJCPBXK}*<YF6ޕĈ~c=t2}a`s Wp\ۨV=&icǍ,dXvA[Ď^;sfQZ$1,a=~Ol;h8X\l9!;upHo|$f{n`_ï\c$dw\Qp07f*6*fa4safX[ƭw0?4e10V>oHtb=8?֮Al؞}Ԫ.2q'O]9"d{vN̻.Sy f̗0Fgt(4nP{>| ٮhs|Yt_S|u88<:dmS+"hirGydF"H0Y~9@[l \4V.êmv"XJ.2A=A_w5K0TauL28vKrINI.xIGf{}='|KpK2зH`QQPVQk 3+f+><]ͭ\BLbN832ρܜTUnej],^_|5c4 Y8>%Pkf f9H粀Ju1"ҀtYWV) @NQ_;9?;籠.㢃Ӊ16gvsX ȬX#XvqԃlWN uaPVV~D, wnu#~R~W>zF+`S)V@CFqB뾷pk _xyWGQذH 8ߋ -'\ƨq;!'g"b QYl8Z;A c ?@E /շ2˾:NdVg=#=8LM@ 0MDf>"89ɸ.1Y%o㮌?$պNHH؜I|#ۡ(>)N 1<`&gi\7xF)OB潛A_@VqQ+d]D&<"HЋEp\!Kq"ʍxC4t/n 3ٶSs)$/%inR IJKdF^ꄫ$XhcGZf J:ei3n>6DWvY8Df<`z B!]xp?N*9}״ei)̀jvhҌUi4̀Jؐ^ *͉5̀I2pƑ MiMBxm0R7+b<~HPȲ;<ֶ |\| I#B,㭀Ŋ{[!>[B_)٭O7(dHIq32oOPȼӐBoxާy+gxGA,$SX#_h­E7Y؀Sz>gx;'|L!~g*nK7,]xѲBf70.Mq32o˔[2WRG̓bps|$* T+?}D#o|OXdcR}!`.nko0ސLLEl/ v p#wABeI#6q n qrFw)Hd*6݉rֲޕitAi*~;9Ěc DAh ?h3 $f!o ƯM,mmTbW6>g<%b4/TȚٰIFkN\9#bOCe8~E3sBw{!ІX>#" F)}pVkCD㭁JK!oF e{xn{VY:ktc>=ᡘl fj)&NdPG1Fq_p"~"F tPTڬtǙ5j^Jwk vAkS&5RWHݿ fdM`6+dm"b=7 iy7Xn V2q<\2F&U\B-l$Qu4ScӘ*TFۙ!:'Fx![s$ZHܲDy p̐Je' iD&>(=؈yx-L=E'U}0 yrv#kB*Yy9Jd Ĕy gp"'& g-jE~9g͜hR)+d`y=x ߏ GZ̉QC<8B&yfvBZx(Ýq*CfhJ1`Vdd]bVGv8/,]l{!Tk _I.3ct2{GrĂEI%B Nǁ@15woZr.?6f's'2B<ӸBEsvPEނQ?\ 5vq.~ `Qh{l'䊀x-4/Â\u$|zaT(*yOJja:4Zc{^xn yx]t@Ip"&;AdѰ ڝY*k1= r&?a.,IH׋lqᒓxH^$K6j0*q XBUI'عdmԽE)7*/WT:Ép0uԔ[ q_6m Q+M8Wyp^9;E2]<ɗP9X8zbs]-JXzNbC(sMFROh5G>K(5jņ6j3l ]TS0j';YZqY LvK[9`Ytw ?|_*pw x}Z wؑ(ƭpE\w{~hZSX*ONo#1R)1g '+U+.14hQ%nbhSm>_qtg'U?*R\UuBU94]Ӎm`#d#C'j`EQnZ+:$01RgsB踑 /IbL~^'bdonD?՚`Qޙ<]&jb Lי(X?5b8됨YY F!+d*1z̭POB/>aC>ek}Xy\G! o +ּ Iݦ pFGv|{QHkOАO}4 & pHR.ܖPAR|kEG.AhQ-N;2E+ݑ6@vWºJ\Δt˳++5o+DpTq Lɷ҂d"KDFdf~9wKwZ=ssS5Dyj 71 9Gk1 tw"3 Z)stf-pʬH!UгBMqh2H d# ;'(z?lj*Za' 'PtnҶ7-lnܦ2w^S' 7Wj7fX 6M9S?43XpxE~kxS4գdBZO^% oasyۊ)Yuyo,L s-A<]Gn4|+F3Gwg(uB9AKu8߉w[`~Nmg&d'<@Q_k1L7uH-.n N-DٽSBZ3QH 0:UhB}kHdXQ?*iGcz-]_UuȐ^>mAeJxa=xKh<|X#7'2+.8х4=a͆ ʁ:HTq wN@/2cuj &uy;sW}[D4Q$*7DO ܶ[w)$HxEqK2o_]ѶKhw[ytPհQHҿ;R.i|!ZD/.?1D#h! ĉ:iA3 %ש è}nj6XpWsRn_`KȐ2̔/X26(7T13&Fj{f k8ggrrqqJ-sn a?*դWAPJi:Aݗ;e} ;!b$8rB b2.wWu_ؕ'6rY˽ߣPiOojԹ‰]oEdc}BH-w]a*j}ELmUWhyt=0id~&Z/Z/25>7ZoNJ$Su7~vf˭Wqg 咘}N6&96ɔMg喊 :x 0J9 ,̽ډ#T媃ˏ"3NE`<k|z,TSNLrvY,夌,e 1 e.,;Tgv%-"a?9qD\ǣ/{b""x_s 3}bNwH>HbV;hJ5wNHCZ$FA{MeMk8TTV;4$*v{[4"Q@Zm{W{`Nω@iUk EI Bv!%W(i|Q~]:k$]T|Bv_< ""1 kMO[s]'y!es{3 ѷ{b qs }A-_Dze$2T)OtaJp/7pk﨟LI0{]`Xݴܳg_ [s ,F!uy~!H%e$Ep]!Y;3{,Q>g139*g!XW9ZpQћ :( }pRAB8) iNSϒHܝ&zv6j찵+fkДLڌO QU9T!7=Vʞt&턛7=6*r@"#(r"$UʴmU (%G#<I$ǗT&@OOQ++|1\)T U\B3MS>DoH?r(tQȬeS!n4RT ukz0`#eS3yxY?3M "xDBv1$ʋNFG[GBN/⹥crBO>U/z΁äǬuNj5J%ra<)p DsѤ̕c~@ FKBxI# *D!:{:Č!zDJ,P>e. ^D,. X$)#C9s`jtBFY15BW̍FꊹH'RboNYG=> Y9iRP1,Y 5 rRqwBhD;+:gHC4҉湮O2xOfwy flTv)$ۅNoBt?)$KNw@{h҂_[Kb5JB\w(+q+zMG 〱-Nʥ +NCo*m2(TZmk>Pȼ1:o.,Fv<.!PHC^ Xad{u&2Q,筅cXj]{[lȣ` C 1[,({Rg[4@xO=uMc&h1%jұbUZԩ[42$.1UF%&|Q}0ܴ'eZxO|~ RI|QW?hƽƊЛw&p A݃N4}eT;[Ut=!nLQ ^SEKҶ&vBfxJx$%;MCkhTs׌TSj&! C11A]D4 aS ^:90"Xkᓇ9֣icy ӄ֘P]?OJGܬugP'|IJ _W0E=0lsޢÁ(׿·@-PiUcWz̵"Ućv! x<{2y P4cS^/O;5*쭌;&&'#tHlogB =‡#J.NH x4ٵvG#T'k!vwg5"9nIug1N4uSCH(Q\g7INnxx "pcsX^.Wv')lw-^aJ!wh 0+?jdd%xvF;&0yFD)O1嵜؂c+id^y˧? _&=J+L ':eVܺP*V PW>`bb(yfI7Rl\Rhx6%*U}Rrl{%C5t_[L5>QaG>?W>9M}q <5BDܨ($^c%'x)6ʔInHa~7,~`3N N@Qcؔ&}xt[志 ER<nR\D6O)lʕb\LyThެ:mZ*䭶m YY:_!/3h{%Qo0509)|ga)<6 v!6pt͛aF2% r^p )]CQ4P}Y.sn$|w3G|Y6ߍק2eޖRK3I/qN=40՝=Tn3gMx$|Ydc>exlKg K >''&ǹ) Sg%q2[dT6s)p ぁ#qZ*?򸀹yʩ 1D|\'2C'XŴ0rȹRm<]xS +<*G֑R9B%_H/).zRnWW#'|^gv'Q:0غTuİ'{"bߜ=_(}B/uZ 2~|}Z2@Zg>=y;Reo/a&/j+ I?UƕϳuI_O&׳&&??gM/1JY[PcV[*mgM"_i.JĊ\KIh}8$VL#GT>c8$TܤzqTA& Rg1Iʛ i̬ziBOSj~? Y.;h Y*RC!ym`i=\8 S bGZ*uIvt[{p-4]Ƕz:n\heV3eV.5Dv%3Uny'fOSĄSl}Ak%8ĉ[9/bպF!=tctB%blHD䪈ύ̐iBnDl"xX3*T" Ͱ¥/{rQ${?Z&?aWpExA&,,2UTEO߉I0Nr@ǰs mT 2UdQ*2cbWыEp* 9 iYI$O=W̹ ܫ:^WVeJ+q 'd-4BB*dZ Vi[53$[f]Ñ_=hӸ$z#ͯ,"vgifw$zpjf V;_;GI*W> ïRrHsgun_ꄻcg`< [DE˴C/"QVC?mMxZ"ZifGJ>Wiu IRUȳFnUwP)Uٖ1Wu?[M~JW]|!SDoC<<^oS\88\Id) #W#u)dNΕ3Wj rW*dMͭ/3GI$3&֗YCh_B 55PݡuJغJ5>JuDÚq}BR4\6srmd$[.54jw֚vL FF+2nϋ[:W:+mBJiy[)Wuv^bdWH3GJIgPȼ|{-1./.FZSq|UGE!3V,V%>a_0ޠ?/_G~#/Yu6Ifbvǥj4WuۦyG@u c݋:M&Kn(m8shoGusP`kBw8 gn˴m`FH$Io3B*s$2t*,|4".~o@G+ ӯ4P@~%lx}]|%lOm ^Pd)K7? 1֯7k1rs *?Ԁ8@; Ŝ}G+Q7m`TWi H:ĉ 4sB=eV6q,8$q7:!~7;?q2+~cA>E)njgnR؛b٠TPHԵ~'W˭H' yJ2neC YIDjp~!Mlt,9 e0o+mswlA^^V. 1]œ3nysܱzc[͡;;}>VMj^MV)$uECRjUI ZUjh#n2[![:(4%J!%e$K.ے$9bGC`.(e/O6% l17j wd5t8^r۔~I\|֐=[ τ=LI- 5R/;),3>nc/ 銝lSWjݦ_1H]{8_Nk=7%Y ac pba/[颰71v]wS}"Q|Q45$S1e#|j Q+:U.13N D埱4!]fH Aqj%]cH~\s\ RAۓ3`/C+CAR/馽4ܨyTkpa3r`ϒP HbS#XgӷK}d1Fɡ4 ps8[p۷a /x0hbr\96 R AjΦvV(B [Pqm])Rvl8tyң˵j~9zx꩕^BnN6[/ҋwq8\M7ҷ&KDRڷoM=~GV-ޜDjD#_|8>łe'˙Mb8|8l8>h@١sk6ʆ^WGȯ$*5, ?!p< ~Zo[4ȘBfqMoX1¦\6lF|-M6lj7HkJy)3;閫5WԨo%=0/,ʠ2pOg2Qȏ/{J}U,-=[r= ʕI:+td(!'fUeR'ۮFyLy򙣐^8:xQwLR"j'euǙet(>u^0lV1QQ ;͸3LE$?E@jAhN~H|G~ sW%)WJ"av 298IJ|b" 'xJBv!SX=y4ab n8ʙ=sqiӭ'3wwl3N0.BȓdKr19q,xb|el4Ho1(}Q- b"{YOrqxL u+l?!uJ X'.ܧPo\ا.ZtQI.>CɪBX&0ބ L. !c ?8t0;~ȋB֘ ݜ(ę*jT~EE,r|!|$Sm1Loɓh@OIP^5{Z'|^䩌|'ZdJ*z"W(t<s7j2$&Ahޗ; ; ݙշ;jˑMb-$υ楇q #ҰFq*g6z;D[oarչH'zmr-Hq~yl]880Vδpf8& \eg)"" ۋQJt/C*/dP߆+TO,E@AHlb&GSjI2B2HbؙFx؝d;ZN9,Pvf!ods2K+Q.+blg ?;_Й-w,~I#uY@^X ?3m ŸoGLew(6.eWf_KL6T22wԌ u1/-{{^*ղc4I[QmQZew eaI]a^ۚ/=bQr'k~Q'R>; Tj_9 8HMfG%`G,HdFg7cahWI+WJ@{-,"5X)V3i>T\屐rkTfkӽ \n~^W'ڢ  櫿1R26սɰcs16wߣ0͵$Ȥ,,PqKyc1Oj4wX2" |99|Fc~8(.IDSm pPdy\t I#QȨvXBqKZ#ǝpp'T#ZwFY4qzŠGO(6 KL3Ԟ`qP=U\N!%׬SFry$+*aQß\;"=jEf%/m8 |BLvS⠔J=!&oEQ Z'p(Vz_xoL hD: O8ш-7_6jFr8*Ia+?DiRq{93򛜏\+0 ZDIQχLm}+,\ YA\I#B!-E#sEHGo8K[Ŷ7= ~W 2`/9`II;L]1V#Xy3@ap8/),* xQc:@pUsZ(@?1逧&;=xqʺ!)?2Kn $ T+Og+D 4=nR.OA/X/:Z2Cl,xSlYIm8)=GFxC!$]\=Ʋ*%yQ ={`$ױP={}=Vɽ$%MvgU &2’ex 8>-ńp F,Li Igbi:靚A'Ru*5 3.<]z\FWȾ7 17*2#F=*buZ$I\j!#b{/0EV'$(HJ kԮi(Ӱk$ 8Qzo zYd^^Bʨ$9M|5Dw\Ƭ `!0~H2]tB|",YpEa9V ,d6sv` >BK[ N[2HwܕaFjcZ&̍Lþ18Mb hشeJL󒿊1~@"'&MF:~r\s.UKfÀ_*cFVnnU'/kmFOضCUgهmyԻ_XHV]>*CLʁcؐ{2j0J9nS( c@?um>"7LRJN% ÃP8ExuVRIWTmA]V|av(2]SMB]P.n&&#C¶JB5L^ݍ*QrP\ݽnVc .9sL.)`K-bҗŐ--p<pƜdA z@pW gdم u&@${@*3T3)m; ]6TPBQRFFjmW9R5ax[-ߓ TN'j{dJRϴ W*O`ǧ'\1Sa-D%jK dU&Ȋgá'=*O r7y1brO{~Ԕ$ޡ0A-CZSJt*A3ٵ 8Isz0A/D`Lܘ>=~σC yTNo|wۧ1ݪEzt=~~ |>uy f1Vo4\lzpN8!{GȐ O"*K.x ҌwˮѴPYѥpiR=+ƈ{^Sݯ;jv6Bj^1G}| Y, (yZ+ sЊh0>u0&ܧ[pE0ݮ9Gн&+52Oc_ȣŧ[0~*?3_L`ܫFI Y_8W t:v-( ۶1!CUoĔb!}\:u2 '3,R IH*&SɯtR5:yQ!%Z$b11lGKT*ѮɆxuL 8Ff__io#h /L*yr}R! )ڲԼF[ĖTsp:-VHte97-$/@)fgY:7YcfAjBVD' X)6l/(Ry+k=w+!X-\ݚb㼷rbfS Y6n#Ř ,Lӎ֑zZFi*CPaw Qǃ\UF밃=բ]" /fEg*T@|2V<2D46 mc:t `E9 \Qyl-%P߷C Q=؅ I,Ԭ\%ߢyE;(YNIlspz#WW%]]fu]]._.f[@aAd]I쁈<@%I.?m!eZW`R)%Ů]OA.Fؚ$Q8jPOr!6a $ayvd6#c&b(,- e2Orx¼Ӝg.d_n3y⫯=#AC9=-/ M4<^l{Aav,H drȡqԴn(M~vZznڞX^mRH^=M6PNʂܮD?h ;@jn@xaݨ>wbf0 =e궯j\ {mw]èV;w\>4 {^!EOy}x(2KC<8ʔ;9r6k*9{)35g[hd"`rFfg[۞H0@ p0f]k8μ1S;2Df6U\Wםw8atS_C3cͬfe\ W4n;hN=#"dNB2ܘ5Fy%Źywv 5oOrq/r{<.*1KࣲW J$Jg0J3xU0o^!\>{C-2zɇrUqCJPKQٺJU"*Ow8%|x*.Qobr;Ztբ7#-U!m6ƑJ,e I4+hxo"Wkd|F֡cFo YX#kbhBid(epG}SG)sX/O]v:j\}U-7F!e*ZkYsdz)UʿV͚|rDK\Ԭ" aT{P!ԬױjdzH40$]cB5-x72RR̆&K[sO8F㭀 W!V6hO:GK<2j*b^==:a$S}e9ߩ[p=w:Iz}zz.O#22s A#*n@ iS?xk{B=[vLV6KlW]` `6)αެ]}z#x=tYW6Q}ˁ a*3.Uom=yB2~*[YMLI,榾hʮnjOBaM=alysG!e[k>|X!vsXI"deZzH9 SU$:D XFbFWk!ܰzf?D9(S똢q"|<;lT( YT{? 5*_Z6v<|];2pU* a+mr #ӧvҭGb(*!Q6_U_XnÍgަ»8oKPȳڒ=N=3pqdoBfvvg&Vaf%q!%TɊ]MlQ_6W&3C lWVHoY_wq+y}#B=撥79?NcR=G'88\)@Խ5 c5T=!xlf%qFX>qng ̳ *2-ub>5@:p՝=WvAV<%xW( )9"o k&= {J0fR[l3Tˏ*~  i"q)v6)7 Y 5p|IZv_{Tط,J%! CӀ]@J8r7AzT: 1eTX/nAZY_!~o {#꣙*$ N!TH'e$5[RTIma|ڐp/ uO[,cr[-dtsHfѐ1u*ͣi`^rIn<ΚssNGV6xpZ:QO{Tt"PVH$(AYIgp`vNcS4-๝:KܦX/*]iɆIMwdo'7$=Q[gM ClKpPyڔ(j'E!ePw |JRtw;}&Qf.WH鐎[WȼcMf٪SQF>RGv7r?xT(&ڊ I 4Su/ FՌ;cF [Flj_ifECea1˒݁ckurg ke;)eSJ=fn6Qsg)${$$U g*$Hf`vEE!(iӍ,&70 W 7rߒT8FH9nnx-TȼFc WLҡ C%o?ӔR $2B3מx.#eZrB;+,6)nB=!+]tkԠ9RF32\at*RH.Ru1LUH+$JRJfK#$Wbqf}Ƶ]#,G<O( RO 3<ͼC!VfH8BHyYY%Tomh0>,йL(|gQZ|@ N)WO<nILC?*K4|Vě[K? %KM1 dOqq Fk+, -aۘoh33:)4fpN(2*;FKz&UvnLi||ϱf 1$X7S(8 IWk;ugXd%%~|lL4 [$Df.~|ܘ_@i ?DSS);yYbw v)[p}iUDP'<#y` ;Pq1#e{wso2h~UquC-O.e7y(;l /N- Z+5cnNjɔ6f*ܽmeery1\93.0D:ȃJX)v%aRՍ}؂t$wm)qML9 MKR!671Ze]h,2Zu)Q(!,痈Y@HK$=7Vu67)dޓҲzD!6'O3RHCĤe+d"k]"~hB-i ѿB_Xp+P2s;$`q`x(Bu7zHy+`m63Bfͅ|DQ#'Q;=[V4̫iС˫YLHnNV -ӫ9h~E&0u'Q($K`AvBܼcuEWf'[dQ邻.*bB t8~`Dt60 )sS3ܛ)Oe6YU9W3hSb$٘ լv c\fƒф[:זR^h4TC2Ib_|L 9RqHpuZ,XOJ@c_57X.0GCȸتL4 6x4>trP!j8A"쥐DG +$/q*4S6SGS#tmZ!&c$:hD$JhKPď]d!ϋ+%Ǝzxq`LPضKBQ68eⓙ~"LkȴiL?L]iS [WZ\Pܳ iwIƒI6*˒n{{'YXh%åw.Gw&9UQgF15W[B-W!ULj J(GK]PHI-!a+y$Zl+T37e/{䵏EMg}{qari^gw { a)\p4OEQ1IQ&y}W9rîB`)~I&[W:$z0/n _*ʕJMoJz >ǡ0߯SZBVqL?M+qZJ M*2|)7[5By蔄d;P2tM# -pKEWH94gF`o6in$zRNo d2o~WJ ^{_x CGdڒGdҴC`?&Jp!]םqQdy; !CZ%4N}PφSE{YWi7TYx}P+;W! ~hڿ*|?z=Fb{ S卣NYc5CScv_ XR˨Vvi #ceVHe7aqOZT,u\+^1_:c($ӯ͒h̳H1Di IR%-J<>+y}] p4g]8P^VLn=ğFK`1YB#`\YPyח7g_l5l-6}KͥxAd |X/px9?YTN\v˛y4ty؇"b7b{Yc4DIIcCs6j&#!|.e3'nKEۙ[ODAw'Gm"Z$_\*;?-|?:ï[ߣ ng3&*doh.D!ӫ~$\H_nZH)+q,[s9YH]T\*~̂*O/sc![zAZ uO'r2qsykGpZ5\!oKZp\Ʒ^h1k!̬^n:z‚gP'2@fK[p$me- >'-$Tl(>ks(!N}E(Մy$~ ~ y3v F^9\-R=i(Sn Y[ﴐ*N}̙ I}S˛@t{ 09)<9mo!$H%j IÈ,&.&Fť¦5t8U;SL+~p8WXp ʏ}gr Qmgcf_oyV m*-a^9 »PTp8vI9wKJ1;wx_@7df ۊf9(l–,dfV/8R_Lʽp3(F lSZ 3ZV̀^WJsb"bJE dQeb|h,/=F7,xCsW+$}93³2V =K؎zڨ#6 `VkV 9 ffL,](X3[3x}t|B&&W %o͞{KT?5dd{lp<粀/6\eƴiz 5/p42ong(҆=*UF_Q=Ik&T~d?Im诟^Ppvb;IalNf2 ab*",_ga5ܵH8 $bnC1;WM Uu&C2^=DWm[zRaaa O%?~7wYpG 4; ,Zj!T2 ('mK Qt<7NWSIKʁ(`8X. ͽ\e0$Fִe\m &t2k.V u"o= =23n[6 br:fX[ fۦOk ]{=B+'~m/K-,>KսE!6NuV0ZؗI˕4$K,ws }Լ_i+$ʀ}W2{FƿFZ!ɁmyR%r ׶V41~2ɱ=$[ M )I`n;rS$1XNh:iфvrJ$ VryCJv3 ,LZIإ=wTV޴v=B)٪ I|;'̋cR/2Ļ#s,xVj?O;K۝T"X!6*f/i9 ޸,bh,RgñD܁j775>ޤchȱFQ i&cj8B}lD5=$2Dϐ=Lr4]N7\B؟0IT*ЧnCnz*WKD+-*T2 ae{v5K$kOet !LZ7֞n|p' W0ۡyUm@8o;p=Mu=,?ػNz d(. ͤo3!}yO8h=IlrBf=lHY4ް^}atW)T)s2>bt^R/k:%y6Ux>cXeȬw(UvqޅAa,P6َÞ@a_w2'葧wMLV(.fwvWfwdym M˴Z\]btԠ"4n`zB,qB8Lĩv%-(S6(t̼L m2cXJBR&4OOAf^9),S70+-z'qK*jGKd{6)I|j@6P$2=D>]n aceL1-`xZ]M* GB7 v<$03vNފnb#[pW'/}.WI'/fbV7Zhzl\/7뭾AT&,ȓjCQ#\z[jriX^Ƕi fnmscI/V&2 9Lx "x2mb]-4=Ӑ/U )}([_bL0&K9Ag>4 [\@obQ.3K5=7IiLj*G1Wtm2:+ EGb`h5Jf&UۣlƯ0cC-7)"^afN(Z[WZxd RB%UwrO۬a 8p5=gRȺ6"a;,f#P 7}^'g&F!^bC@4B=H@Pd2s2 3Pǂ "DATAl`A >׽:3g2 >}/^^Z}sj`$4?}ȟ-G+*Fojia9D#fH݊]HNj$m;LO~^S}D DH89hҶfJ$.;"ۑɼ%%iQ_nD*eAv/4M,"!} 9︜_%J])n锼;L"Qu:2"=/?T/D(Dm9i!]:B~0R< mO[9(\z&;4bCr۸m^iۓ1!x~ h\%k#F]߁!PT k-kCt./~)pi;aOqp%"s)T#G>2NRZ]l_" -*`8 ='4[e."2p0Xٕ`OVśeŗDj<~pD=j|.>95Z$T#Hw+pE<j9 Q+pwEߌz=>~;DAک]N{ְԮUOE ާ}}w# gSO4FNT 3  r[v0wAo9xG ]?Z:9>/}o/"i՟hŲ" {0[7":="HatOpI\H s#xi;܍;5s \( ^A^zZY8St7+)K9?eWy^CT7 /Ue WL'tjbݚI Πg@T!pfB⥥Is*pC+}OCiDS%hԋ:q,kdⓎqRژ<6hשyDT[|4zW:+Pӽx u].ujTDٸ:Y`-/1eIE _aنbSHu#):N)yDMU{IG;s҈~AqD_IG;K6ŁU% Y˗ؓ|ax vQ/mQ+5hZɗڰzk=菶aFQcw>AA1]N,Qx2F^c&%&טeYQC4}@ wjڠJ|0˾/oCi'GF"?"}'=G< Yeڏ󶀊Բ$QyO6G-m/1NMǟIB/9Κ$6dTn0eHcD {5~f(qFFEʄa`{< (g7NNY(G~[pI_:YwoaoD2BA!4=;tio:9h9'G%pҝ\w $G-2f-c~\ ⭘5vL#Ujx6ч:qʠL)Ap̆v J7,S&RP*-nx~QFh÷^D7Mx?Ə45BXN$OV̙,v@(B8#e:u?`N0RyD"$'<]35nL!J^G*Ry6(r {ÞaƂRW"%t^EhhF;nA4|W|sH }T>M$lَ$6h_eW|5ׯVbJoj[0". x9L.pEBgJ#XiKQ^%JWkiB4 XheEZʮ새fPQ o +7(*P.R&D(J7ii)AD`\6M"Q&dFYN|7\VWٵ_8۳;t #D)G1#\[G"fnbSH(mRJ@?VءCUPTӈTx%"$N$R#|RxHQBJU"%J_^dhl_QʈAD->R.DV=R%ݦQʚD 6άtx=~o\C-buq[|:+xlp$ S5;wS԰E =2<æFxq, 3 9U *Af32c9Ġ`w #ʨpGFFiHRq>Nzއdc%DsPz#0NB_7[zX| C%4(h jBјY)U+E"hkIQDۡΖbiߣ*?!-`|"zF65i O:joK5v.ݟ:M".p.cqyAsckx;BwzzʺAVD˥"QM&yDيA}Osqpj٥JC;+7{6i{@@o&Tv8&Fjg:ڢUӠn6Fhv*װgrg^wtQz9u ۻ!'AP)i8Hs`<D 4'U:F9^$^VJA]c#/w5^m3R[/>(e^OZ;ZڊDb$Zzeiԕ^Iׂ*ӃDB+{ޞD?R[OR8Y("s(♂P)Ӹ$z̽tU!Q8=gb`v2~p^ՍbCϘtR]DhNǣ4L-QksD] $C>6A(>?jVwG6h P<':aT#11Q&CTeJq.u gjWqT,lVc`f u 9қ3{ɉz/ J0 $8bH7$*li#G Lµjy$e_g@/>N,{ݽl34^r"ϡ4ToFuuc/鑎60+MO7莯+D"_&ZUZ%wfR}.Sc@RZCϹ*&(|HTVIe)Z$4%=~hO9jO>/7!姻tɗ2l Z~{Y=cf>c m`!mu3p`\%u^.W!zEWs^_ypTWv9pڔE#Ќa6^~9יCN~NWk#3/sZbq6JU&S>#lj|SsU9}jҳ9ăQK#cйΈ㡜;ɕcžÍ+xјs^Y=mt>ѯ(|2mԽ,R1=hq(稆Z꼘)u~*vΥ'B4e3 67BJÅϟ6J+|%RFo`l 6uƿ`S~+^ N'!zCv} #6S+Ldw0'( 妝:d2"H3E.擄Qh )M셢uHh' nmYi3~q b+ڱ})&݂H0R1*?E-vQ{*DT'6.юKѫԋ^`v'+v\&6N&t=s^F"H?\1bJWX@C c%4dS¹ĸ& "Üh>Sّ\Ҕ7iC'#}pEyVns`Bh=t7׶++kuj>O~6̋/'_Nې.mdx=ߨ :Vy020S6Qr$(/e;O$zi7}rec[̹~vʡ6(om:3):{#[YW&M-xw͔)H>6TMAGh:FmH4w\\!֥\SS>7faFtSY0>G]~[B* {R_6%Y9ElO%r@Wd6'`2P(.:OSxF1sHpz ?eYJp*PšH(Bk. :aJ{z=\Zܢ;g7nX@wN! a VY6JoBNџ*9etESWGԫy+Fe(#CT Ya} #NsY*xsqU vMQv1,H||HL5,)C"ֹ\ GB^'LhZ[>#L٘Fʙquu?-g9 δQ*f[:|ó:}]SY9>;gi>֦ݍ{ l /O]]EVnjmMq ΠLrQVdr^C̖!$zn+2?U)#DŢT#D[ُ䑘k-5Y1F-ʁvG91)Hs?ups:]t >>0i :D(CD4wLf\g> x4ʑB7[47n7jS=~\ĻG󥾁 \eF_=g |%F64s5Vͩ{kVfk z_gHa@$."7%q.rY\IQ6LW veJveGvvudv{'ŕId(=C=R%H ~"w^q9ٵ}Ii&uy>$9ı6J mHžcgUzۨF1pg8Cmq!I}rH<(Zji5?Quw$-Ot85'z rF^j[NK@ K] u*}36C>1D" 'TQ_"Z:YVb+Sz{ζ̸e* J G0,-SXVUUt Mêa$G TIFDӰv-Ԗ.ܶe銾mħqNN}v@X?X1ԖcYD#~236bDᤍ1fA h, _fхH?N=HVx}#9~4u6N h\6}K#! u3Fo[<-~XK$\@Dхd~pO@E[P$>ޢmsuzDEHNW_Et#xBk-h ǝoIthO҂:FY գ$tʻ6_X?5dj٤-aPYԑ_IWQwQ(o !(7Ձhr`NN$ -2Kaߔ$jyؼW$2]qa ]x5NhLYQG ;9E7qRM)  oCHG̽8ϼ[){im>B]vp(`( ~a _2QgtxWn V6UNfy.1~&J;zS.H&2-DW."4?R 5+\cklmitʍEN;}J\WfSJ/[혻>eՎK&5my+??*-V$<*"7 &,߈6{ڽڨ{`gӃz!(GU+G'" 뱷瓧;5)LmMop\=! (7ѥ ;C#g>$J(zs !odSx~BS2g2Z7pDV;z||D+eȀd`4:X:A$ܳU&&WʽĽ=jQT.,J}}Uw+߱+S\]o]awnL %qulTяl>%g^[L`~c#X\ j&l&ن@8Uuf36|qUi @i8M]Qڧd Hv8D5ŏl*Yؙ7vdx1YuuȔH.H#! GfoHSHʷjN;$ķuqHo7}CRşoDJwtiq2[BxD ܰzɸ-3:UIK9ʷ$:]1%.ՃW&S7F䬛#-Oe=NNU(_Zt7 ŕǻHSk$ʿ0r,D=$kEz-%Z@T,"E86o QZQ ޤ!ͲQXic,T.YfTz,K*. |1KGH|%>K`>7&f,Hy-7[`(sF8L͢Xjz׈]խ5eQj:"JRZ;یJ1[b$1KńnQILz E]ɸ̘dJ"$1Qr"WDLV[cR^|Gmp%8ce5Dq @Br,LR'ÙOłS叻FlUr|.다rӔaD: ƢފHu Qj4t-DW:u_WvҮ{'fePސyق@_nx:0^"Dw=HyB<b:6VqklpjN=T-ѿm\ZYWDc!.cӀMJiHW\kiDmil==hٵ6J/ :ZN iwxm)1+z'Y;O:݇Tyumtz:L5D<^} 2аP+?:E-4Dn8*O1[QAOzEHq L!7;۠eA֋kFoMجHJGwpZ;5 <EBa"x?UA%6T^7i-!J!QZvCREI %6D",m=- IBH4m6n蛣JI!PqJi +S@BEi-mslh@n) .Ua[De 6J~h|sʒfW4p{ņA˜[f}|iq5؆4ǐV3~9f(v>=^z;uF`oy;rʱnw`m7j鉪U 6ֳ3gߡz^4w0ll8;P=bܛkw\/WI*ev"G uݖV`g6"1Y0JdV)*zS!P| ;0ю._>|(ƳO,R"ʍ ֻAϸc}x bZf]xXe\+tuA<0="uիd?vq!QÉ`$RhaC-HUEmY|o['rOVI`}jQ;/4y5D9ӯ_GvkpSQNGF+2*4hS)`o{*Ez!lOTɢ=~8w@$^}IiȽMq !jʣҖ !z sW.gݥp:AżQcFz):܇\~%]."AM:)s N$== yv:#8Dju: '0ߤa){ F?ݢ!<:kh4E|f&{crp9&eHYQފΥ)r4.r <.^'JdG |9xvMEy5Qj ujE#P:^T_>ܵkb84q-sէG7Ho[n0g-4rD{tn>j?w=8 Y;{T>;, G'A^I;msw 8cg?-qOs6y =6رPE7*Za#æg=]6m3O75d҆ z@DU6@CW+kDEDiX-'FQ>Z=k]CyHRC&lMNGlR`M<=ye.` c* >dQq֙7Ԃ+\NmCEs7(fHX|Y ~Ua~/Ӌr\ͯMRU$zN eSP, ?u|j"tA=? GD/qsK +4/ES|dv#׼@ I)$}!35xF9sKf"!gD8lj\{$k)UIzM}ױl qi7I/KdZبIUH¨J -l-z1kjV Sh| w|xu ⓈԌ󉝟 PGIhSnFdM=IhNQ*DT'y{wji?"+KGZ<(>yLٖߒéqA9}k| IG_4!v>vkueϗ%ɸ4۪O?v"AK ׶cI'cYFA}nA=tdEۊn9$+{O^'cm<䐦4,aTZBú8*ֱܻ+ cCMȐ:62KҰ WjEƴPx%f;ǽaHo됬4~h;{X҆d|@s뽝14U=j_fR?OQ-_6h;VXgvE{3R(eȊTyzlZ7R,Ig:L~u*or\~޳-$$xT!jkof+Y5#İ-fg2s޶ ]ůY)o( ZS#>g]`ڼNte ؈O1/xztH<4kR 3P5KFgRMoSf7i#GWRļQmJtچhS ]gs;d Ab찀7TX3D ෞ]#=^PF[#~`#>xL"{Xfj;pO jQpfeyФN|G}hKX, &x8|4ChZpA_aw6}\~YA^"jhgXߍr|~NvsH2JAtTtDiF߻mVA[(j+PUSԽ%kh82LÃ.%(Vp'3 lK XKX 4"qtGPz #wg7BuC+Ek ۠F(Rsq(7k=i^հ;k*\zsAOjci]+1'8mnzF 鴷FAd1JoB 'SkC.2LƧ6(ݪ&Rk])^FثǑ5UV%oH}iTcoߤڐ%b57 w?U2g}&6.t}$I8_?e6(Nq3\P rXm6xbb4 %UujQz֓oT#< 6\'ھpEhsh?Z_DOR83P$Z7dqzBbUlcLE|/!"prnHI^тuHPDE$i+lEG"2hDJ(X>S̰t O1_E7㣂n{q2$}bc3+s,BMW">/r{Y$µ__%ߨ8J_*}%%_¯FAI1S=A$~PX+,?ëuoh΋;7˩-W?VkyrR*k:M:N72+HKQqưK3`G*B+ެS,jh%~ҜOU-G0Bw{6!5S=5G^4,wj>N@;#$C~rz )'Q/| 4QEʥڅ>/K/'miz&фlݑI4I_2C2m[}وcN8Y# C"c0򅲟WIg㻹 \5Y$WM}Ў(np!۱Af-mh܇mgaDCvJAt6H&#",]j\;Y 3Q -|Dx N!J>Iδ)v^~nݪ y#FQ(DYbeHmk%Yibp͘Ü ^t65 ߘ(6Sp#?\VtJ7U2A{V&bvKh1_F,8w*c[5.ߚ.8w&T*Ԣ?Q%2~?q8L=yʿq/mvr귯Vs9tQ?uNM!wc?.zyy5srMJBe;0tr픱TE:Me:cwU|?{8ô>ŶUv >. $mD 6hS._rH6sᏰu](6[u,LGzYᒈ3BtHR+BQGfت/"שubg#:\ʇVUڞÈnIS}}K)Ĉ8`ȠT~BT4A'9SX&PT,dkܭ`r;9*$o$w󉙍HW w\t Bw븶jۣ$Km"' H1_9(j?,Y=RIsf,2802Jb2;&Ku(59'H78plP;Cxx(Bshf6 ;.f'JّIFpC,l.e"Uu!Yli0UyN|OZ&&?|gi _P5nUx|W?QPsHw۳%M9G'fSTFTU}ehbPQ#RyUB3U/]y z+uSxO"CA\?Zspw̟Uicw?\1N=h:^l!u烺bW[',~{_O4\)-{Q/I%r ȡ2G|VJP*ghF(0'L‘*\[s.=\[H:a#4{zG2n{]=a\d1"2 &7Og/LmpR!ze@aȠ@&҄썟 ltNh{?xN==lǘUf>gFĨ Ff[ӉHÂI =( TSʫ+aVxOnuV*nQ/;/Ze:  >* g@W3.QعБH[OKO#䨤g tX_K\1 W- +`Kб"fT>@#.LSQf!g~DivJGtTُh\RI,u!&!HP% O'?}"E \%JYއ^T$6i}/!:2NnB}E1[_}fة/UW_2}V _$̮epn u^ĝv]-.= B(SZ|#  f.1;pYKʱ׺ܓh H{t?,{IHSʡz:+)gUGܙ=N@ ͢xYxv“sorOفT9GIH$[ߑsQ£$<-RE> DMѽPxu/+!<3N(!k`nMO[&X $LaOVS1Ҟ ma!p;hr97K3"+Z:9%rm"SMļ|ASz)ZUSƟR)_*{enK^zDjqdQjɉuSyM;Ϗ< F{'2ns*DI)~g]8Tk\ΰ%fLzqqhW#2E䴸q _ YT{/Ɣ@gnjgIUH$f4d2_/vN77qK8`.< cSB#I{NfKr,005͡f1aGls7`T8}6)atO,XRppI쓷޶9Jp5H;!@éc6i<s~V>GTJYozh鑨;ZܼHδ(o i^41{W#][uHgHas`fӐ #=n<ꉧc-&抏'H#/U/T[U1 Y:Y;(P-A.q3K[`9:?Vx;b=ډDKX'&e]:-m6|+ #jDjˇMoP-2AǛ9ɵ"CнH:˺$#'@OJj RoM2~y|vx)࿸,viWG?MLq/?iN]0w.Iۓw8X"s401ӹ*-ψ$ԩAJ<:7^ ۧ&ȐS<ެ{[d:yѲQJ'$OBL%zp9"=O[ ZU.GmR| X|4\델*Lt"-u((JǞ؉|YggE&FUKW.B͢Ȅ]*vE:N4"$"{A17'ZnlQQP,z9D";TO͢P{С}G!s *'Ev5$Eca?UC͂!9 v܂<*38D/4(7hB{]dٹYsEttGSuAtPPt:nvV^T(JfD9'kA9*JEv8/{H^nV#9A.-(*&Q" ΧzwArsXtY_E=xpNڳ/'j D}Pn~!9 jD=;kp삜<*C:k)KTguϳr* EwȄ:ӫ'@ŢQ%2 5%a27:U.O35NvNrQ,VEQWTj J5D] `5ޓVѠ33oB?(?/2ܳP.<8j";ϣQ 5d !#RgQ(LPpBR>JdzZExX'T1 JhU5Y JD1ha}J?uK1TjE*:,L00j|_E&F+kE&k9F' o? 2QO]u|ȹKn*2ghT3 7~2+*0Xh kj_mC΢b1* 6‗GUZ AQ8BSqRz@mDgHmy5# W#n\ EgHmNw;}9,:_drh1"5B@2E+[dr뉄UA*:5\F0 ~],2w]6T2LUzȄ*Hȧ>zQZ!2A٨!?oNYQԧ^܉+5L`&lD"05I"@/w,*g\ j]' Er ~.TE"N 2Q4D@"k#3uٻGQDA"RSg~^@%͉gV@i$xcf&&+׏|&)K' R&xRۧ,%SNSu1`8V,/`,"} |rQ8[)YS蔯5"a _$v7<+\y+<u'r^Un5"}Q7 c4\^1ՕH_l)YM\/ na #r1Δ FDZq̃:-IyS 3Q`rl ;`oÙUS" #՗ZzsC S Ew{ k 61Hɼ,Ӝf??SW6 DOǰe1 *fO5ᶏIWhW&|a3?ak釷M4ဿHo'E WH۞?HeB#|Wvp;fMr (#F@(zA;{zǨ@Dm%ܡB{E/xf pMp;cP[bF"[T $ vZ%ިCA\0ux_.P?rho!$L۳ 8&z!"$}R!À i#&gDGѳuv aH=1t2ropE!j:t &S씹9.cZxEvo19k/<$pDuX16 3h=-}H\|V4 s-ʼnjD~pMcUłH+[ T$_UOWLΘHٽMK϶\o;l P/atQ gp|mP`6kuv9јtF;l"'@k$Đ;gq ê+(U@"2_HmB _ҧat"i9ł"##qq1Wo6zZ?S7:T,>)A2-ܴh =|hRWKΐw#*q1WtPWư;C1 )Dar笫\&{5 dAM"}t0 âtPEZ9ĺp"焥i#73b7A;sZ%^ (j|hN{A'G *B1ָ2iٹyXM G 9>փ_t 3P4P[ SH5B1 ($lEQn3ǮWF͌ v" ,aFDg!@)D ko t߈&ųOzTCFFs5 1j "$49۰`QH=Q2`O`Z~%fio%(蟋v501t:Cѝzt0{mbgqQ3q{@!D^wrK{s|lzrN=i&x c= ̏v8r j#L]NOU AP3!(s-ύF!׸wmScj@N#aYгuHal'$;=\}Hu2Z&c;gE j9_@Q$>w}#]t'N aƾa\M!@ G(z "۱tuAd+sm2/$B>a *#h[%2b- }&!:?(v9bڻ5Rj|fN}ao?ȉ7tTTQP`-??XV- H1N wmÇlYͿ:1r:zfޏk9Bm :F~8 Coﴅ&NA7 d5qlV dk &bfړO0)kDV'M#@GʼnŌph8l~hC{rU:#'D &mSDi 38F !jMv{ 3[&p߉IIѐ_d~"\›}p (; ruEev6owtϏP>uNaD;? %[DZ#s'K","3ȔA-uC"oMޟ;m7Au~λ p~A'-L]ЬU@6i!wJ[pƎq.99`qug+#}Dt7Ų<{LA%g`qXHY<פ1B* S-OFs&@kYCu7bQ,Nd:W+,A(c_(}y1VUЬaΰׅ"157%ozC'aȤ?fwbXifHAQJ'ad[+8??ϒ%7 j:u7'z:] ZOhTY++S8~Ab5-0VuO,o2*&-:ݎc4d[$Rg.Ccy}•-L ָHyp{:MD l =_OU ?sAR&"Ͱyu*,Fw94$og*<쀇~gψ{ί6 ؋1)^o4"S|LX"R"m Z_*GbxYh`X\Ph"|~yq4B%wtZfL7cLߧnR.7A ?2Kw# dHkz64Բ&>* &' H|NEv3HY/9N'Y8O.S& q'aA8wa~m`Vޑթ f;ϤAAU5@Qu1YGDhoV_9wk t@fܩL>\xhD޼IC|H)/t,䟏Yg IpH?ޮx0-;?K[җ "y%WNBt혡t`UXib ONtY5vhU`b蹝:;܈H#_(lZ ";أ.xedΞKyR^.RX1;uYaqtDE?Q/SV|DHȴAىkaXL1;`zxN=]4D+P檸8I$3X%Ars/<+70-W8=@,$  ~#~ׂ? xc5ރx\\>ukU+ 7/x3VP:.;A7޿﬛V]X9]+2b{v?WX..8H15~z i>nB7Ґsש=?AQ->[d{IkI̘I2>U+\U©'~OU<^t1&k:gZĵ$8wN>u`/\Iı}":8xD"&цr'!rgduQG wG%^?? ~R5 8([ {%7aUR`bN 0;,f8$,c1<_[Waܵ7lg?ƾ|S:~Bw|`=h\gkqpvR|p}~~EMWP2i %`IE9K\1ccE]F0tX"q%ËNC LʇƕT9Whn3\9wfKcr sp?M%.6 [cLMW[:./))R/:qhgẍ1 eb UκœQeͱ&0KL,: bP5L3IUu2UR4h8WqCK0-P/8悡X#&3|褢ҒJ^TR-'A@L8f҅nj]T2ZɘQc'4qlҢ < X4 -z#N*Q4~qCǖN(.8tjȅs:Ac.3t؅MLnsn@(PUQlV8=ȞB+3ّYA7OUfep@15FFb2謨=?M:uCC%-Ub a9]oQz쨅NW򸨕 69cUκI^pKpR9~^+hzKLNQRP,b݀mdΠ`3+JY7|zaߚ=^(a#<.4?ܫh"PډP:[ǝqxe_JyPsNj1t|5FkƄ/K7zg $W ~Y#L0nݑ,q.ю-lG]IkpiuZi%잝9;{9sf]Ø[ /(nBr "$`#A7&!opTU3;2}Ϝp,zT{m8o-B*p?h5Eq'hڄH8zF>`G-Ǧ dԪL(rY6v/4np̤73iDŽFk^}JnLyu9MܞkGQy]n0v ዢFkx7:Z{bVDzyDس OzGeV x6lSN(j <.́tELZ:R܃^{̵F2ߛQ0J [_T"4rmVjT2;4ȁ;f&Pwmٳm};gowNXOG [SqT+=Y:>?veiUn%B^K,Iv<U^lSLB֭t+HB [iu/~λ8Gc4wnk vs{) losCľ#T< ~!U4U4-pfwPծJӜ`*e` TAN}jfnrFs:փ3Bqh猙~xQnۆ3 rF;ƫ贆f*zm+ 5}a7Э򋺁n_z{ \rlLE8Ҟ¡H&#GSIOQ+C|:Оj2-+KtGAm 3 pd0ԦO`7IDj{kڌÇpDRQq4Hvg}VѴ85loޢC+c^53wO  <˞{v-<u|1U,V]<[3`ƶ+=9O`}wh0+Vеb6e1-I&`фb%國^cWsagŁ-Bj.E%ݻٰEl8wWTU }t::Х2bN%HXAʐ9Z]ףhT~W`Ӊ ?Kqkד>MzRy8ެZLI"_9cHHv7Rʌ).ۓ`Rk߷&lww& v jh je5dF9al`)yaO{b|;)hRb݋k!3VqzlkZ4765Gr9a`. 9ܾb^8|$GC: y , ZX[piiȍ- 7zNvx yMdCfӝoz)iqrix&u1tW*3k;QCԁv6I>$7l\ Wm{ Vn{x4_cy=ۥ/h%tβlS3Yc8j8M 졻](Hp"jŬYYނZ moϣ1] of\neU-UUgI335cۡm"I7:TaPők"ΨRЅה),ULSc!*_. +l Wvc7ھNg1;ܧwL[l#9R Pa+5ymE _2@kb} `ì-0}EЦ0mN@$3VZQq; ֢k|\HƱ8A'Q51"b}1SxhD36Bz?Tk/*j QF֢""+4k,*A~qk&*/a#aiVf[yA3n?5gfӇvJgj ?NdoΓ#@}\!AdvVdȴ]ASk;2'n;&fPm;C+z{f!}!M:b?X0NgY7d1Rh"g@ LVS|y\gZVY%UN>k=˒ md<@)Z5O 漼Zq"."(ЅJ+^>`"^J&>:|r6((-BbmRxkh~x1m ݲunXvԍ ջCnWwvutTw8v3ř^b [*ɛ$RVPa\UⲲ)ucݜ!/9 ?!߯pЯX@vEB!"](nf *ͺ{c3h#:U0ީƜv d]#~F~wo-g4?}Чr{be'GL5 VUV/ߓshdpUfWA%r  ~7B٦\'ЫPG]~xd@=a3&W >êE˫ku?NjM 82JtϯURnR^rKip0@sϻ8Ra]>t 1EժFg][8:A3%Efxʼnq>3{@O7$iLQ_e|<EeUsQ0I+=1*hf GЉU '\f+81ӊf`@3nam]k^ -d;]Q~Sᢁsz"NA`fȝ0q[bo:= qX 莞BQ{V)GϕR  =#[8!)r6r[dyuYhT( :[{J\\j$MM (m !?V eKBY_G=n~^ N6Z~rR:NW%`\)供AÇeqvS%.0ppr wFn-B~^"Y`jK϶@nXˆAZ%E%eI$D[A1~VjB/4sa 9;z%*QC]jQvسݾa PvsW7θgLopCާ<':Fm,~;E^u_0{~r3m\OR"΅(^¦@m\<ȼpt3۪zJ[joVcV ¶)8;OFG0V}Xρqx:ku_aFo _ )?xwKI f-"j'dSΝ:U3}b榶/M<Ê?c2,ae"s'g񎪊d'd uLB7=lK~@tr Wq;oPשOR5?:>ITq|J;w)A3xx^ YU-6KIIYkB 7ɸ1^wUAYR N':蔡;(iXoϋS=ū:Q%##A`u:gTjZ.גd3$f UZI99 pvajZ`1N0*ŚƮ9mW+,p(ƌu$ZD'f2"b׳H @n"eHa0-6fXץg4re]UW.Aŕ$|e+C%H2@I=1tns^5 L&h%RMs6V2IPNF쉾.Mr?ߓ;A޹{xqc|3np:t`r4 =Asj>0Cd`Oy wT J-%'6I)d>Iy䧁>b̴_+:vT7~0G5((qV *g+ UhɋkPfZŵ&g[~Қu|3J˪vrwDNz1I[Lv8Ce2+؟@?SA}%C)-<^)2:x ڑi wm9*}}bY] (Ek+UZZҨIS֢Hݺ*5 *|8 OxdP2e,(VZ4Ԙ.;Uzb# װ]/Yi`W i-5})k? lrB>T ĄE" = f o^ /m_I+{g- ]#r{Tj]tu~.wH`+(צKM[FgwdcǫX giD۫S~K3{s o̶u|n?cfO 1ˬ׿d ?+GWhid2`!$O }) K mp6zyórt9ތ>*HS0&n偸PVnV `~.ZwQJ! ahA@=E)$ί N%x+̒Mi~#lF fcQG\~O` _ bUd_0ѭ=+bo2j''%sdq`*pZ⦊k뀰!S%(.h*<{H? 'g1%G˳a哮ly"K2~k!$f)+{?X00$r(R ,.5 3N)0!|ggcө;H^?VL5KmEfGtuC lm86`3J>g.w6HUb03h#V2XEMlPHSI`اC]j> TTy`𥘛 GAE:h_UMP7SZtʟ!ey忑fл ̠M9plܕyyy̲%z!'=}VtbN?xɮ)*mzږ~<|hIڞl9M$ޑ~O6J;1ڕ~N4Foۓ3E{Ofg=+My1f;&i_Çh251NLMЁ{ԁ)JlD7MtLc){mmt8 LI]*( 8FVaq8z&wK=4MŽ"l;|U>o`QG Os`'JkrNo;Q}7iMժ__o`zz&Gj8d {̨ MjjZ[2〶߳?,Rp!,jnKN45T!%,%o+ FP_'(.u/tRKW:&wQ劵HQUր|[ݮWKn*n[U|w/F+-?J-noؠYysWz/EjfFHT!T"]'oe]F\޻Ϯ0eFfGѷ*veع\Xԙ9l[r4FlgXDaiRaE~DqCFm8 ikS` X&RŒ*큛 BSB-5Ha^ s8l:ZƭCT*Fw ׮-d>zfI}_j]իM:AJ\UK58 jBS.i}}F:%j,J .O#OM5vCӿhwT 8v@w`* 89RM;?e58Z^^oN R{瞋OTӯlhOъ8LIT#TҬ-#MJTGyM;lBBwW-jV~ $)iEqB5!HfR TZ3F{?B0(0:@o:N't_t7hc@N5:*K-?TG* W~V{,w[dlF2 QW2HqO$x*BbƠ=,2x,wZV/Ǧ1xImok0;ipFtqlbE`B|(Uh-BWZ\kS3FRA+Pap![TB=4¿lRs9k`‘sqpl _`ŀ7 A,ݕ')b(dХ7)`˓(tY }1)m˃Y"١鸊\_ZDoTDJ9 Ջ˫kw gi5+ A< @"]M24PaU2QEadQn7@j l8mef a<^5E26c$ oDRFQjuK|N$<~6yGZTjǹK-/Ӕ|WhϑRWVݑУfTZ4f_D#o戞]4?AQϱ/tN q6ʤ{LJY]U߄G/䨰zO/ JXr!*Ԛ׵%;4(ac wuخ#ђ87njR*jEPC+aa궚@/_,Tg0u kcdN;Tbw&7*c)?1ZAd "=8&|D'(, m8:1^?_$:S,lA5P$=>娜㎁x;_o' U+'碝G7m.G6OљPyH}N s,2ℏ~q%L--b;Iy;i`j󒄏eVʴ^hxxoOC?΄rlZdFz"eM hיB2%)|tV''uzR[>~EOy7[lN|7Տ#cryyIH*I?Uɠ5ļ UYD7ef%f8ux6,hZBw] s4kg:^`B)|Xz %-mt4K\ŢUKCH"U}r1`t@딗&Gr {Ct1'֡QJC7 wE4aEwzyI_L27 Qh)w6$AsPJ5HޣL͇j!ыk=nfeY79ibyUyZ /F9ŏouGcc} _mp/=L\fLu|3_26U˗0G@?lb(ė lnQNUwq P|Q l{< +iSsnʷN/Rƥ@ULׇ:CCm=vz̖.], >WJnY'bpC1?4iQXVA/W\p!L\z$>y4Ps|V@CF6+4bBG壅qV~#{5[1+h};CV1Cݵs J aY,RJStF$pl -_?Qį@:,dIJ,)w&ĶFkA1Hgey?z 48(hU$I+ނ ݑ[[ewAqʲפ3IƘt6'1+Jn,J6b^KebxŢOi[HӐ,>JbDR{k3s޲i kUͧ~{L:?#yI[CRfigh}NzjC=:l1;-sOMgwyV/PFΆįaI*Ѯ%e'%/M%+F $ İ$ʉ OsxjCectPNR5X?sypR_сNaK?,tKC\|(Y-i :RkSGg?0?ou@~`=n ",+h+RuZČ1Iz /H0v?AxX. V[wwK&E•-.~SI&y`=D>جd,[BJnǒc-."c="Gk _AϺѤl7˷Y.10w+4+:gӫ{yr'BڄV4)˶/K0GF7 w:f\ N6b$N$qcquIٞIfo&BuYK$ ڤ,N5{*3Lqr8?ʜ\ͺh%gq~Lؽ׭h~\Ҳ'LV &r\3* c=oG?o41p X*ӈWڽ#mANߎ)RV忓6.DMD'}buNܞe*CW5^Q".>'CpOmBg{p\w&ۄBH[QH)CBng70/  Y=$@p79;B˅,Ν9.?vlPAWeu+?8= [,x锆VivE+|G!z1<)b!_3(շj+6xE뗆i̊jZVf53^ӈ@6evJ:2L^7T>% ö 67rё[0n zsY7D(.^_0?įy~SSBS*>D8 :~H %򵗳.S8ח!Ls:k]wnQcd(6tXKiJӫmemW31DR>7KIoՂLto@ś^O+gkqT<蔇'y tA PA>J emT!R[Eʚk#K_xF6C\Yh;t(_2j&Gh3 !:m Rf${snxL.`OtcmuJt5 & Q r/X^ @zC5˺')&]@$E:HfFB (3O>m33]) K̻qމObAO2JQko;a4C:9Y8IVXzӝ)4ULʅz7S ʂH0& atJ5Po P[~Ʋ8-kHUD4"EM[pw'[gwQU {BP"el1hX몖S!nѼnVGD#$4իr61ҫ!e||6V_Q/f샙6CUVVEҪMZUȃ4)/IXzu_d~Lqw:~Uc˼aVɘk_KsdPb\?o,ɼړW56\*sr:-t!_Ae6[<$$l_rc̤ B,,&&5%CFlHcDu>[%5Y.*B'AS{e%(?|QJO"?Ȥj̀c9ݑh9*d]KiRqWUDsDR4F';زMkbF-t=J K%nSRO7 9rB{WJZTw>]^/b8"v_Yu>?R(kNd-7b 7tRa6]BuȞM6Xd?wWi"@SC<$us+zp:M Lz]ir{oMפ0EZ-w:@RA򢻰bۉ,Y\?!EII4@8ت ƹ)C&KG;Ȗ& }Db? 3:)~Xs ،^^sf@*.Gw˱L.sNRhgM6 |ZNCpGmi*Gmw]%KPN:(.1Jg4Y]>gгmT]%zVZ58̏UZMelTNn{#!a :m]"m,?Kow1*ۤ~zR= h[޺I%]N1|-87}hqԐ瓋2 Uk2'Dlz~܂tLUJ;9'ZӱV:kϏn{~K$Ao^$l#:$gb*ՓMREo1aV ]wV3F>?.Nc9miY/G}h4?[bљ7:MuXB;8-,kL{7mV,d b\:OXa\ag88Kѥ@j<:9L.%4CaAIpll3#VNANAM/>|`Ú,>F)4dZ-@y lO\v8=c56(f?*Xʍ|-{KWK+MG"ƾWz @]/.,kV_&Tc `n&5q)Aۗcd9?kWK,f_ۚ \ΰE_~ssApar̼/.`jt[7p7q%2rMRCGGC|-9*пeڠ`+j3yTc[WhpQi-NӸ)30kOoڠpsmO3^:qG! y r8VBE W&`ޖ"zZEtzk4R* Ƀ;L<24.y$2)U__rjQgvPR$s-;ͭNKMIugp?z2Jo|B_aY}v*9*G9hB_*" }ߍ./ bE2%"B*#ls}o}w >Z ݅Y1 x8zl\I\~2o.?)FE4N2/>cO^\rwv鱲t; o9Ņ . ]Mʏe}T$WB㮹y/Z  |$bV;6z\J$u5+8 F<pd6YTOw]#h!؇HP,o q [3hy|nș=0 tIѓ$~eJO{'ęfG_#۳28!)*'&DoAo# 3ZcZB?/Mmeci/L/t\H"(} ?}i} Kwh:u߇ZǷ /rKdz#.~M!eRV4lcIvq+z- [rĚ`KmV*+WaC;.h\Jhm w]-[FiH|CrKl 5_h5)W\1U<}|.=ݙaf8&O,U>x:1B@v /à ȐlUtx\ \ewc s1K:tTt,nօwX8D OGz_X]s/ }Ϩ.ev}ю45_5REDAX3ם?6~hka qFvN\eC)wl),ZXz'B1rA t=-~[C8q$^|[=F/W Ԡ?t7ddX6Hhh/FVM\$ZG4R\]Uq(H/9\v{f+A"O=1 o1h{ȹBO7gvcΏh#~zߪxZNINI(MAD!]+UGFw4:RPa<7}Ka^GZ;h`h @ךKϩSq+#=E4N&[cSU|.m/ ޓ+< ROI|a1>AءN֡~8kR*}PZu|*(8G}Bյ.afP$xVv:yFQ(?Fꔹ+?}iPWr~Fj+3kbЮy 3zFW9aP)x:׮+u#z\{rsdZwU]MiJ^ԅw ӹ5O+HnrP .NXO(/w0X"'nĕ~L^0q{a5j L΁q\#i3J &e!>G0I3`SxOv1JNAH, fe\͙XKy4e"X`KMJD~8hfMkycL92’;Vq{uO,LIG dG FǞjuBuG~hyLd#pBO8Fr+,57f<1 yUw|N)In9U\'qA'^d'>%g~vbEw:R{UOb7<'zsK){b>X;\d M΄/hu 'i㤂qxzz~a^+6g-V |m$1jӻU%+t8Eg 9 ]y-ְ|  sE[֢Lܗkgܛ Fi0߆. t]{ dnt1 ݇zb yPӊox+ZW^{솑M[oؼye~typ$=+CzR7}̃U\Jl!z yḏc{T7v҂{7qj1?R 6)GqeĤa{b΋c:{3iP)L8/^]R *Ǔ(ئ/ڻ0%3bRP͛ ( -A4wGKŢh5E2 Hq 1#JPv/4,¨^iv,q^b0 +eK4T neՁ%X˝uմ @n s˛R?{UJH>z"%~ >ⓞ:.R")n9q:oif5qñOg1BEu:VȯSHLP1OW|:XP }o֚؞'v7'?|]iv?P.;{??br Z'`~D/Z6άޑ{g֏D)צ[@n8޿GoEcߧgJRІ/k7`^ {MvgS^[$֨5aI6O+]S J 7fSnK jު.&=gfQ|Lw> SY;P{hG= B@Ft #VR8N av*g!88.RXчru,;ǣ[{ƬFaYž#SG tfJW*SM xɘ#}C/+B=yI%3/ 7U6q*y5-ΟJ9=t)@i(kUCJ_u#-qjװ|T&v=>@G˼օ+2X=7"᦯BY2* p\oϪW46f؉b9= urov7].Ș2f)̏^F :YWAxv@LIgxpږ >.thL5[/~6W-#d)Qazo7M8k [Rխ T:rňVAg V貛}XQbʉsJ+!<+4 %.H ˊWJpdnlD[!ĉZ?_Qk9eOc0SKZem_|i-&&ԕ\ݨUhJe/ ݫiLٞctߕr_Z{ni}] ?80j`RE煥LRj~|tz)Vt:xܲu)83F)$tّPMò ۇ0bW=[殙ډ.pp՛D#9H+&Bz mkKtn!"9jأ֥ߣ 3Rdʳ#r^S#o^S ocRU"7gMhtkX} ƲJEtm7lcAPTxBn;߆a]T\~rhXlSɤy~Au;{NK9mpQԤ9;]l9]}6]/v㴢-͘iQ4X_lߋORa2 [ ԏvޒysOԎ)/xAniU ᤄiF?ۆ: + A/zi-SpXJ/:ICTirVrx._Ga猦pn}2ӹ'~QhBMJy[*}c jsGV/Cԣ+k\+#-m'/GaЗ-78!qO-WRBFhLoC!r8X,]燦 e8EKSqԊ*Q՟LgY Di?>T]x~Ԕ&d7ٙILk*NU?ff3{ؙe&Wj;Vj1X61]w A}I `4IA$sd d'EgoxB.J_i֦ʂiAR'$j>\Lӹ yl=gpM?V;pcKU VǘZ&qLs5F_أwGT\1 R_F[u.X ƣ?@ަ C_uň" ?k?_a rtfphuS‹ &8]c~c#1g<(w(嵘"zJٻ⨡kg~^D A˯J>:#^.>$|~Nw5Ri!͠ӿE@SKRT<.O G(!N,MXӒV74} r^>sL|t=S\W1`rGѣW-9^k]|02୰zVZG;qV$Y,`&맂9|q$(GD<>96m CIL/Z$-܋5;B;dl=3갗 D(ZH,zň W~̒^ygw^iH6wy)P,)t*՛<3Xz ;ز9sc ]?n-Cr"FD/ E2EFd 2H=~԰ Hes<XE=bms̋v.#p!ȗگ5=Bn۬ly'W:F59JWB A:ׇ)Ws/ɾhןꡌrwottȴ,^S}3q=Y c2Fc V^]@'t\ p4oi< UT1h=*{x5kJ6(>}]w< (9Y[xTZcߦ7C3ďӋn J^8VUt?b'%_GzY }h.a^3%Hנ 5ױ7$⤡"V%t;%i9Ι2]䜐1L:KpZS]Y|IDA5p  <{Wz dt*ɬ`\4 ĩIi_O@$Lj93NČh<I1`*#,WQ-"/#Z;M;Qˊeh2zi(937M+V=V I Ak 'ґ /MHFR9"@vȲ8#O6`u*Z3Oic0ßww;&U *ȳ 7Khpi ϓ,3L,+eY YQ .@׎~d+}<ψ([*1^??NIɩx|vO*@oiA^Ӟ\ ՠc>z.w Ѷq2+)"YM`-'S1]?pȷ3rD,苤M CDq!Ю @YMXqHNtS^Kl{@FCȿyح4> ȩ`ׂyMs `}l4%2q8>h@OHn D ?d(~G f7CO63.3WWų4 ds'8 rۘ1'z1͟2 @blGT?U::唞y}CKd^A[F46ql䇂$^dsT,F/-CؤCϕC-178tDW& ZnɌz &*iba1҆U"DS0T2pV^41[v8ۧC ^G >HwIUs%Sr\tJ,enX8WX]Xh:Lxu@/J2{;#>"Ѥ"ܳ_A]XV]'ף\<6f^A֫Q6B|=`³Xӗ҃~򿮃 U  u8;2FVYNqjt{Ln#D\hfY J  \ "KsûUH8Z.=0CxXed.͛@KQ#._U}&O˙: Ї5jmCeJDiڥi}huZ!ն9ZPi'ϳ鋇z):z$rgӮ l@vZs(ȝ^:}4aEr̦R`}$r̦]`Ȗ`|țs*mݯUi^msL#ыbET5V`@)nkhz=ԦH93٘γ`i9bGv"i`Ε5rVyI,(+ĝ8$<ңeaNC֠`bB, BC: ^G!x[vh dV夀W -bk %aZqHfY0uS|+7$$1( s$oʔ{=ח.G:|e ` tH-Z"Rya#ؔNz:n WGt{Ii$y5ZMSTٺX 8BJoa0dgdǽ۬v:=jU`Jc W Bgb6fBv%F_vHyXߴ/̭ χ8{bHh3-9ˆDcF2gT]/u< x-}%5M<+Њ mՇXCakm;o3`?~h LV20TaDef OFJrFKVHbfO2fΈWLiiX]tbOƳA۟ط%J5x!u-_:cȃ/j 5SqmAny)fylG>7tdjf:6qel/@6B[А&A>qmp&TkD8v՝RQ{ Jyvt<,a/Dx1nfynh臢Y: οz~HSЁ X:6١J#p%/8k"Ӡ]ʨ]I-v&<@ %O^k_wt A\۬v7׭\L)ܠ?[ 'Է]f?u Gcv%ş @?zS]!w}ϥ9]0F !MS|w2j5G[jb9JcF h\ rM-QGC¦aTxLt| t+yR@`j -8%cM0QrZdb4U% Do5^8h`U 'GgzqZĪ ~029Eo0HĈ; y藰+{LV:+*0SKgGq2^$>@lsCQ~Rx@{%xQiXd,TYx,N v,APs93ޝY:|ًˁXGF6˩T>E"bUwhV n5|JhE% iƁm<vv8j}+ILj#V^^;MRECc$s-PeSc-f懭W >b.xlAD:~A]'Րi;Eآ(kMa#,.H'3ŽFM B^1k1^RE-+œc቎WQUv,(|Sr))6xeq|i50YLr|qwb2ſoZX%-L:˒Xx*wnLldxbY;p[5邹!䍧j‘eg>tl?*ZEbs"ڢ K +9AE0r+h .fNX=PrCtZ%φTA$;f":Xó=4vC8҇hO#l#II|M5 4MF)pK$HGߔļbV-ڛfݔ'݆zYFFoV荢6+fxj=oi{zfsLH JR4$L,cTCҼlYFz67Ref}F,f"DdU$c$5)#x6SG01E/+']nE?B/܊>H<P@1{F[@K4*Fyv6}8Te?<؋aD_=ÃQn*O簗.:q+dPPqG[3 4}DżTVH"r'd 3Tn~"8HJJR<ǼB^,1/9}h@ wA"avQ¡y 3ɕϮpfXz@tNr&>94'U˳ug5{sgsxZ]dCS!l I/56,YPkk ŞTu_jU$h2LL/#cUnS݅p#<9\V5YOlrDrL|N syHdj|H=n>Ci`?h-ZʭBaKIH1e:H$l&D& f,5 -B]mj`z?6E!HhȶFò*Z|~(,Q0nT̂2x1/@lD"]{EDB KJ;.h4}^&m5/MA4,W>VؤOZd,r7_,=+uvQg$-Y]$ +Yw$kɮWy",J&0ItK1 eF*M S$7M#RO6.6)l"H)5O :Xmwq9@Ӗ܂"_R?Ca^P# B8] pWX/ ‹0iEwzu4ֱT`Scx(7%۟ GH!=t7,ɍ/9X@2btX``8]Aq@guy)1`Q3-a%tW4:! q@* ;4(GQT8衤9OYauP0YǔCmƩ[x+nD&W̤OLp23ŽHmfOG99& m^*t衬A+hZ>+sGW#V9" dZw)7Nt#h9Ă(}ԫ3g1tUlVwlGbsf7d#,r7l+#RnS.֕,w0Su`Kː\jY{Il^zY@X(xuR&`Y\`Zlj KM]9{.ј\;4),[0D}D}ohr Gn>6/M*l?ëlc-EuhurgߘՐFP^t>yJ) MB43~c2bytŴL[8 i PZ1hsß{e 蕳کi)<䱢V IOHhCM!]P6(Fhn"Ш`LIu.nia*fR@k K.>Ź9uPtjq%9%|9tikV;-?2J^Rl썓1]laBmsX! og=έYz|v\wa z=Fcu֋g)OF˛.*^ыw9&]BZE5VV+P+D\rj z`xt +NԾӋJsJ(Ծ jyjsvܭ%*iw^O;uVV*}hRV8N/kkXTwAzwAQzaB$쩄H IQ I#XۧwTYn=|Rt ,G˭-M/Ĕ(Zh+Tp%~^TO_|SB$vˁ!KRݷ@Wr{!ZGV FU&1^8GJl; GaVn{CzJٝq%%>ZVʮc}IӇ)EʞEMPM/TNi}NP)Ke9O JG2_64T]IQ{hٕĖ:}HgJJCuz$6Ekz\())*:cR0\ыjZ٩ʫ;=tH<=3≖ѿ ܇=S<׻7y[':av {QeɤLdB5!'m8-zc()83m%$~L7C1׼_i)ߏ}B H[!Eda2p|͖tWAt) Нk[(7WE}$T3P`~3*@‡@k&j[c MleDMC@|Ԁ(AJ+3 !!8ZH=tr2"& "wG9%4=CT׶Ξ{̱cd)F`ͪM%)n>JHlȱd6I6%e .KlRobƀ!pXM92\݈(ұn2SܲR7U.:<5y8e(H$K!%'bE/w,tKoM(GBHTzP+dO\=RM#=_n+SA mz>`9jַ(UF)exM`gPdQwh3Tzsf3+#{nQ.x>] E\h:6|! Q}CZ"k`4V{mև}|e*Mz(d{j `j\|~:6s׻: ~-^U7:'ӦPkYX e֑kVm pgN- D"a`P]ot7ӤD8xU頪8LM ꏹWg+)3rJhnM1h(+ CU'B.5},]eLHfrhB)g_޿Y),gjK9x9s>GI>ֳ]Qy;'beV6 F}# `r.bä k 8Dy}m.*le&G,ZxfM/H'+/N2DMDY{4Hq %"fA'Riv^fd"/5t㠠B6f*,f3SB׸WLlEljjX'9&fKV ź^-ޭ`C&8#K8:Y,i?VE!zX=VtM^U~>! 7zHև: M#Oktbi,V9ZU{&e dmcfFǔcyF=Bg-P& ջ1e&n2s7Y71b_jyFh*Žc{`$,wT}xցuSMrLN>'ew&`ʚxg9𬚘Mf{l,rx;c2/((@Ü ٵCZBF HpCZN!s$^E|'9ҸdX]8jĜ\Ҋ9z7t"Ip:1P)E* 8}@@^!a:؅vgkjZ P|8'V__h3Y׫,A9`7b*]'j ahfXmͺlR2ʚY6&!l]lfkU-iVQSp0!cFkoVe^/ 7I'bme(BpLr+#םg:&y0s |#a?e :}aS0Tq53}",Cm/=&zRg#V#foihpxQ<ň1es370 Mc\ާΫI.IqGQf(jqd_8G 8r^ %7 Gs֞M2' .nbPΔΘ@^ nPjܟ jD6ِsџe}'76I'WRS;`ףE%|!+LKAHҠ6Q\|>ԯ^[Ve4è򅚧N;wWqRt}NJ&.BAECii(&#.Lq}+/#c8`W:Z4[jg~鋲;<]`A0Ƴ{\X_[/JF2ru-luVb[ZpO;tsY"5ϩRtoRK7̞Dz^Z`|K4Yp;}GC -N/qK tY(e^ r]Vfy hg$n:L[`8:x ݢß|h!EH×2.#~AΎWTyїY鎳=Dzxk@NO\V"2J/ETbfU;n v+ekR dUt$΄_ޣܛ^-8-RgN*븛?mڣ1+T/N\.UWpJC︴ WB"m%SvPfՋ^ H"Ѳ4Si:A5Bi{P<-۷[}/Sti$H#Б@KzA R࿛EWݓՍ]A(ԙē]Bv&jP*.نo%~}-"ɻzpr*7i 'E҉s9Cg!ЗFcEhh3]>P*}%>^/"zetrѲ0/>+^:"2ONr}9EYmctB_~D0uT.8XkCNkEKwejqsG׸\XC1iunSy 9W62kz`?)\"\t[gdu4 <Қ\zU ١u4(v1?&~P;`byQ䣍>/%q[-Buq4煫\LpI"fv`NBju ګHF,!6 R+y5SZ)+lMqD u^s2F/ΫE8]xEw\ֈhlzi>Eydʶc03{xyㅘqς"X"I:_G؁'+L,ΨXQF+.S% mO !LݨkMIkҿЉ1qHbWHL/d*höΣ=^t_e )ƩI/3 5z ezQ0ϥ Ї&ͥAt3)y6/YYȢ!hn$Qs [P$-R>%}'2wO yb%3a2 j[]"ު]2<環P,R>yw ݖ2 <1"i ͐e*m--l9j˾_GIO^Pĸ/RjBܑ̔b@Tksϼe`Jpľߎ+pqbWr?31.ĮwJ%vٟyBYy9g!)2wÃ*fϣ]r/[}ct(v'͢CQRHME\?4 XZ(?mKVtr Nөt.$*P$%RjVe:2dBX/kS ;9}ѽ_.lю߇֟{IELK"&x3(dr牥jYOU1UU}|UIDZEَWDղNPNDJM:JUvԕyt+JmHy~aU3\;xx-ګ4Mp5t.(PȤ(RjRbuZPZεâ΅ͣE|J_JCgm'U%23m7m7]OPQ&إQRFG$w#BI2ONғD ֻգ 3ʫWٵGQfgAtYϝh =V- uPs-wU%u>/,M3+^ &<U%gV >UeC?UPd+RjR(p?[Mkr',qEn)P9h.|2 zZ|9vQZSQr79v::8o2]=,8be{v54 zBex]I&Y#FEbfTlӈRbQl-AkS,[#ƭ@VME34zK*ـB,0nI;X+NC+q!He,E$TͿmUەF'mgP@fQI6ɓ:.a׼͡O6sq<߯`&\?}Q.^w B`Pvde e5"z PfFrde f^cy:`,8"@JfъI\c9D4OOŌh$^2xy\"C ii~r$s%w>,QiDb=ѴIoc R`𑌏Z֓h=aŰw^ZGc&m>m g&|4!KgPe܂*&xQVI1梎[ 얨CȽn9L:ܔ|Q4 )ӳB[4j|0>oQ\xr>Hk`hbHI..t \9h۹Ҥw$E@Cְ{&q)w?{ȅضoh7>[_|)h.I&^C|nm&`q&#%oJwm'IW9)/rg7Χ>KZgIKz?`Ic>#6?mF  ~~EaI{e K0`/k4naXrR5D鯬>(-Vu}xYWMɄրH:IRڛ,/ nK|?sHdgU$Q︈Y~oz|4q5HڋEh}AHz;_ +5bNIEZmv[1ivp=;@rQ-eo`֐g&r>x.oslnh]ࣆ4@؅g =a'hP47 F+V.m&/q^^߿QC- E7{"ٮkHC[|4q nE>R[91}(g$A?#+ڄx|4m^n2kMзSs.\\{%{XKAÂW/rG罴Y1v;qµ{}& =%?nKnfFN[%w3O'!EcWfր3kP&F%#3+@o>?5"qSgD$j$TnA_dR 8{@ylҪky*yJy]FGd89DY |'@`K%DQe1`׸J֔v:1Xz%1oz0F(I4$/Dm{CZI;;; S^6΍Wi9m99sN .Eh Lha+1gPoьG[tNuW(iI7֒|4}^ө }Gfy1K]_Ȧ /D % XYh?^Zj% ib5`Iu Omհ0Xv!i@xa~gm&Aoog H4K^W+u͈ i K m8솗!dX+i`B0}?#Q:o$#%lvJ\Mtl0^9p#l&gh7]I! _o :C0h%:*:wΐߩp>/-#g ny"g )o34mf 2ہl'4Gt>#@d䣉{!n䗬6A-ܦ',r@.tJ~mю2h 7H 3yo\pHm'r~"elED>C˿lffȺta! ]cЯ}D3A+ȓu&DNH@ qj˾m^Xx|ϛ9 8?cH[erC{+\^YߖalWmm &_Qd; OŇq;knqq5MU^ GC<6Hg%l۷5򍷲[I[aD߻c^C܉mcDah+|f6Hڭu 4| irn:(ĭ69:%oceGbW3C _)b!uoWcu'[I$rò=*#~iqwhWyLY;-]>/pK=i3ɝld^KsLǐ~)HJIzIpv צAAR 4廍]>}^zA#pp]݄}].au(Qdl{_ftW} {X#) a|=uwS O,ӸI_5I$!A_s&˴o4rڿϴ?5AL_ТQH(ƷQ:$?ʴ?dL{NI{BO tSioIz^fr;Qݎ$F FC mX}E|Åvs^oןxV=o Ls1KnopReĴM[dHSwhXBEI0mޕE#҃] Dzt!]b;ݟL DS4$1o}MJWxт?M!+g7}mm~yw6mq˾yA{@B/ ˴]pX0sScѣ } :Xct+х%]׽-D?!/@CFBk~_>tD?$?'Яυ~[ꏛ`NHw $!7)f+=; >gGA]3gF;O_ô QYHH&/Q/K_jUJt2IŖSe$?˕Xн}4>qdGgUKX[F=4L0_")ɮG <# ?8 ph0f~ɑqcAEIMJ[+=m҂/&"Ѩ]XZoA4g%s?azs\8#)iv!'^XVoP^ZϬA+S2F$cA>2N_ɏǀ`ȏ@HJgkD?f@ZM#6_A伄:& ky蠇}7^^A"Ǽ4auHewz%ay1?gop)E|ReLkz&~ʛ` ћ&& kVr#BA4fAS;H|OSE"x*4Pc>l?c{( 46#q.l >°.h _t4y7xAdpRV$9̣Hv2n =8oس 0 #t>.hlB.|AZ{R7pKCrWe(<Y1|15KC0҈N1en`l,q~ᄯC1MP I!C D$R`c;%>it8q'$Ò!'J92R1ꐜ7ۙCϓB;9΃a\&0;5f$HES% `Cf0Dfp3$6{`\ v9p _t.F`Y*JxRBpV;%}/&.VwȠLt"kS875f+1?ß3mbڮM/p=ZM=!/F/C#Ki/춽Voc Iv~)^;X͍ͥTbUU wƲH K@ Xk \n%KWu[Ӗ\R(?BVV\jUԢ5VC˗KXsXI֧Ȣ;gq>xj>č\gN*wE=Er8/g3FF'T|CXQtA$Nq r;-kf<g" wD㪻hsǸjwflAe z̈-\F%26$iD1hij.^ #}ޣ,f~mX$**no"g)cb 0p@v>Nk`(iEŬ~kGvO`8JE6&"Ҧ'h!:3lUhdMV$Hr*+S%j@_ha@4W=@(007 \As RL$S,e5qdLZP4a\Vb-zqpg{Ք3W3+lqФ@,w%MgJpf@txBfPv+as5}* *3Rs*2?s+Tra&WI"aٷ/SXSpn?17WIȖBNE'+)J,ʦSXBj>'WrA/;HTyH8ĬxNсH2pyމW& ˄zPDկT7M8;g@|pخ߶xL78smC#ɘ?كI.O@$MU5Hӽbȷh$/پ]B8Ey?aSCf$bo0#Y9ѓa} P!opw`TD#3l@q+9U{eZV,Swy}Ѥx'uj6}z, VmL)(,4c*qo,ޝL rYr7dI 8}[^&},Ed`£(^?Gq9X]?Ih.FJa 0K 1|XL;=ĐUឤ ^.֡&h2!TFs'Cax{t_#9eB1a =m5 EBI#֢jQ"DPxm Jo'dyEkT!䒀?ޛ y 1VN)7绪"{h#"h"x=q!D U@HO.dL#KRAb.J wYLǙ*@8 7u*%@< uŘGVW0:VœmLS%< C[ID8ụH.(y4!PޞRZqؠJ"2Q 6A"r1{#i^deפUJoxo moRS/OZš(>6b‘x{Y z} lA ToHP*kP:4ʫTR5^#n 3mfVݟE""rm1HOVqo]{j}-n2%ܫ,j\(ӄRLnR%ހ_D4?+fBp X.GYCޥ6Xš{) *Q&}D`RyRFTIP "2I`ZƒdLKm AusXЧWhYxAUX”@XE(܅Lni DTMoo1vtOW$` ^ Kҏz}Z X?#ɀ؄Q)O|Py2kAq`Rf! @PD*{]dLO HujF$Xףޠu'Vё?"=5:w}^CԂH2ȖjH2J9FoUXFŌYv"]RanmQnQ">Bs`eDn.PnЧrb=666J[|`TK;`K .UF  d+ٝ7BظrUan)cc6 4`4h2. dh2b6ɀ8UVj1_#L.=f DX$$P @oaoayӶӷ6woDgշpr*q5[<66`-LuoniF$]X۽{n/}d8׃r[^ћ'cbc 6;U2_p8ҭXsglP<̰VAyr&:&S@wD5d+%wH { .V2a^|tB1dHXm]^2`X٪w@v_\ PHb Cj_Q4jI“Kl[;ibe"[1Je'oi]5oÆPKLTe ,,m U(D;XlmˠZ IBDUHxTC["7TWq!Q ewQXE#PT[ Hy4T]bkVS26Yjۯ .8SwPn`Am rەakWźXު3e(*ܥN<!ՠRƼ^-uԱ#bEr,Ca9qltٯ| BLge1; -?_+P .Nb5u'1ª3eVj6# HTJGfŬPhֆa՘?lXV:j&w5uƒk`րB ̶z»5:ڸejޫv?,>j߳(; $ >1tƜ^ wa #ɎMlEb2.V ٢aqfWS- /{GKC9fQQ CRvƻ1cxXٗJx[_LvyOA TAGrI$XH}$I `5Hz,ިU/N&D*7*dvKK50̴qȊTKx/ apy%ØRK&,pK*֍N_:6Á1k;bSimgF .W. dw:6RR5t^Nw, z C7Զ#ִA#N[rZP F+qIW% ]agTQ=gIW]>j:K_$3J*p-Ny Ha* =u=i$Vz82赕OA$ Td8Pԁk8%% O.<2:)ePC]K=8-|:djpdKް”Áu^y XuK"12ETT],HVkdsbbxNuz"厒ZS,J>3Y >j*v {HF0V $}p$yTxI7"UAh4'uN\2N *J&4h,"rg({-|UuyqnYJ`L.c,aKt0"0AOǹ@*^U$֑H 7I}e zoixOӻAqӝQ QCW<-۶(d#YmCpH*mw/ۜm H0 ze7cۻqBy;aVm)JIC&tX9 t2 `M 7xVes 9 1h7|w;iȻZA阠.B7㱀,R'c/ ayVb RJ *0m=hؽP LR<꾀*L _<ӱg .;MIY"T*CvmCVUFPx鎄C0}*}7\O (8~"̯|j8w' `C?\ȅ5O`?ubFӏc֋pD3gv9.!+~ܖE%Ѝ0tVK\O$ ]%1eWpڑ4qh,҃$ĉE^[a19ryxgr'bB^a*2]O{Bc0׀ű=D]xy8UN fZ>!*+k,X몠w)#['~ [̍!Hp?:PLy7;[@8D0D*"osQd܁A^mNZ6.E;ݢD|Fm0IadG'P{p}N ({!'"1t  ->DAx=ݕR;;/Ŏ3V ,gE7tzd հVbS>;֫Ċ%so6Z0WfRsD|\_§ykE9>C r\&[2 :doi'6 *+-5ʅ`[(,rL~9R$dHޛ܏=f  dWPANu9*ƺ~8 /z}g]LK:jɽv`.f :HvLSR{d%0 hro[vY3 x)lK_ɑ_˂;p wvgYެtx>=V3K OPP2Rd…u;{Si&cuJM{0Mwg |4l}[&dMɽ.<:ZW6mi]B̖ʝٯ.aj1Pܢ*S]+bHnu%񖺒&^-]=TWh(Lu`]iDnꈷ\ 'MGVpjrO&Ub_%AQWxOW5"?Fs5JY:n5ӊo8nA\>Һnzytu0Y,*_A-╍`hɛY)ܽuL6UԠ&7je/ww#)|nV63ɨ% J_X? JTkKRRw`dfs1!qs$M`D]%deh -_vjuLbq%>S2זP~`b氙*Z LNcfcl:7BMuIsgKk<6bEu1Z_bώ B+jrK'[*2%MN JKB޺Eon} Tux[\ +M00jl[ݺ ã!D|j{tx ڇ9j.;h'01+ԗեZR|&;MvrMuȎ8hl_kr@65Xʔt찠<.eG2U0fio(dm]'B Anh@ ?LJOC|a,I鴍͗67L3YtӤhfR7w7oe2( }ᤌl[&e3 6&D]f   M 7jaFɈ3a@i2J+?DNbijrX>6WJuu冇#r޺ݎ4lAɊi<P]R`ڟ/5uUz ikWcxvKT=TgK oLeGA6.\.xg3IryK6h'Q?EmK0fńº4,c{|2i$eu3E|Ӱ=Q84ZJ`+祺Dù&txw{o6 gW1;yi/5{떌÷ܚK'OAVuPX_'kadi򆺔Rnx.ŠYmKLя?[9"@' Tdkc<Æ"F(1Q,VR/B'ʗͻH:;>.uOS%ցtz](# /7,Ha]v%MLPerύ܋&3bzOS.q0[5KL&75j#rfb1m+dvEI]uY0f=V\~y0̃_ &w}A7PfvU@FH[~5'#*5t DgT91J ڡu(s&`{&C[D5It.kq=54w6UKRf4O/<s֎$2nLL.jtROnHH>3l̵wA\k03)ayi] *}Ynb41`"> Xt֗]0rFxp Zq bRDn ]X\.E-@rgrP[ blkb[h.|rVhK_E7H&Q7݌t\[8 )S=O9d f&Ǯ ,YroRvأ p5O૲pۣ+HgmFRDrzRi4{EO s'5OiD4Z'F^%!>ќFIC C~@.N 5&alZꯖii!V'qi룫q?q8yMv7܍=ͥP3o~9yE|ewN!s6}3w#/[1 ;UPպcR x2D+1;p.t0эEo+|7ucHeu#u+R\7ri5L)DV yC?rS9D6!(4$:> 5 - (]57ڋ/4opY*EM<ϟl#Q(xHMϸrݐF5FioΗ75jYnŸP%a  %lB†^*<͒.2#3>gNI %W1 Fs'v9/L[#oZ֗@;0}Xa ǶIMXZ4Jd9v l~V%n9%ntc;%R6l!a?{*˶IZVe*l 2N.Ng|HM^?9 i-b7bfJ6Yu @t j4+ҩΒTT=zrSD9l[ A}yk.t5S#a ](W4BQPR\օD,/٣mB+mZ%+E?ܯ>Umr6-'S!b%ͼa5ƆϤEchzw_LՊAKWʫ&?_*%XܔɵAr?LEg+grzU+x6Bn!XW$ڼ9P2BHg "MN P\Y4 胛+^(psJn| p.Z cPh*,Νcv`[65|?$7^&'O#$(h~X)cY %bMEœc?ri.}T%+y2לNg t z2R1}CaIvGԈIt=#+9)$mϻhƩ61BE:minz^\swjNIc !&͐gj B_Oe‰)6Z_b"hvWlh t{lv$=F \2hg^t=W=CN>Qhgym`wc/]%oೋܠB+)ز)GI'^jHs^xhx:}$E00Z4G$/I!8|Pr&:_AЬé$\ ħtsOx/4ϔɵ]}&-UhvJcPf,M"n'$Wn~=$sG:C,j4w|PԨ+  )?jeO8ŀ |W˫a]Դgoj3ShSr=}eX꾄|w%^og0"0Ϛy\D wLW5Lƛy\`Zhb]qh0w L %S`ĻX)pESL3@ a)+_0$#> Gɾ^!?FD6I<(vM̌c'0qxE]9C=c*|IT 5O,{]I܏.:S~ԞGuQ)sT{^~TEwS X<і,VcӏKboڳLsM3;/9Y|YZlwy,G/vZ5{k?}AhIk Hĉi )E<#n0V%BlƔ\"&DuT (šť8h;E`ŭ@")58-8-[ߺ9{Μϙ={t6{+RkifLWP?%%ΡE|t!uMc8­ < L>dCswf⇔N%LxB o3^QAz!$K%5Em6CVyd)=2cɃ%HXҧ]DZmpzi'w-ccVM%pPUblj(1^#h|!̼a`%nHᙙM!vשF]ŧfr3}6ݗF55֛ *ΎJD* Ѱ+tcs[NNd7~%!#(`߰sDb U$;$uW1k(B`mLOs%W8r=%֖9`|q4`w#C8] TO,]&h!sw3) d7]c3ߗ$Qw2n;OpOJشd= 1;44nMy-3柩GNs+Tz=(/gb}PYH>u.%bWeԤR}I q>q;q>8Kp!7ܾnz5)/ oNR8⠸!9A@oes^j#Њ,E"vGE3Cs I G۾=qjC ૕K̨Tبmx58Џ. 2C 2ׇ_Rp8ETj M*Q=i S;lrg!:x#M>`y+Qk ?~tIPt:Ȯu_Y@CjFo^E>N$2@.Ee ;=Y-Zj} Cg ) rʳ|JԂ52'XR%qcч>.( ʫo_p~pnnl;IT!l?d8rȣ)plO=4^ W}3]RABRr~:D9@wutĝ|JiguvrJ/܌Ws5?J3J9 N1svEW SHZG2zv\HtPAU//nԓpA)9!) <Pp펼A.ԓ1/S!ei1Y^[ЄݺbMY+ҾPo٥r/OwQ~r?zwq8cʿ!>;'!]ibo]8-߉I])FibEbPjbK{Ba[HwV.@hQ)dѹpHӨ$zPZbhD*Oh 7:z&CѺ1+hX/)/Bh4Q+*]3%p?jM 0?U$?TiE=E dg$yF²!szYB$V/-y:+ߨxgGAfo_ ~AgI&[tV` WVwzţL 49nK4]a 8&4rBpVUj -NS,y֡~AAl}S^*H/_9/8!5y`S*տGDk|^PD_W褑mLZY@ÒϙA'P]iLaKZ #*HG;q\4=b& ZT\rpK)%H`{M$G y.\Ey\aGKԶC8Ue=sjqU#bi p1Ve_i+^m&әV{-f\Ы݄LB4GsK78߾$rV0[zšEgMOUĊYR"Oߔ9 JŠr%O/N=g64A&oahn\.1I]qLFejeӱ¦ow3͇? bPVEpϹϖXY6<ÂAv\+kVP?t_ 'ں=汬*we0i_fDLE25Q> &w҅5DSsᩙߟ'85 P͐P8G3\HGgefT^{W1īI2 b-6W-’JMIf lއ&߮aۺNtm(߸ϦU@FF&SG3xXCcYjNkuPU$]ݶ/TBC\7L-stuY9IYkMtZX_ʼ!&6R'4ѓ<] Qb*vBO2yzPA {r^/ej|uʹziIoO g&xn]@/mR#x@: %_/~'rh*޶M B# W;Se<:h?_k1:DӡR{#7Zu؇T$LoϪx@~?SrwFJ&,B(’~'\Lo: W}oXw 0qcs'ЁUQ!ZBꅅ9J/O71lC;QC Jw6,HTψB?QrU|/kS/ /#ymԯ{^Ghgh{M^˱z2~{Ҳ{\6y mw__.zmזj8_EאZ*2M>IlH×d*jnK#~~%^ʵ VA~Mhg=n7F47X\WCz6@I_ndUġ鍼] m"F aVs.,t9mp7mR S%KH7cp"C$-Xj4D_r0dzUO,,ӻ|sy&)>B4͖~L4zhMXZDR^)<:Դ cU:d#b!Ip%@z^TO~}Vܖk_fe={ay*(sR͋ɝgJt0%TB [6? Ʊ~RHԂ֚mɷh>Y: Pp5,,_e-ՃRbCZ#?wbgeҴiPyY#ѭx+徶Z EG?uRkV!2>? L6l8rjw*NQ Q3 _MߌE~50 8HϏE|~g ,?(Rpثѻjk+qN CζX[)SZ?kh7Hz׷f5?rL{}R#]aAk$dC#>ezXUw 1f1FjpfΖ(kbXGz嫝]]j&Poop5}iCmFC KRlcV$.=*=@駧8N7*'S#>&1 V[ū5Ws =^p"OV?/U,$30pʚ fP }xܘP@ \O( 紌j{W +۪xIQ8nrs>O]h VseѫǙStsN_Yto|x+"VEv:kvT.*[ U{ P{;psͽ4DGFT<ӎ.w |7>ښȻ`|IPހ`sJ/]pR:Ivƒ|B'OzC$+| AiW"Jy kV^/{ˮ\r9e)\uky!%i֮Hs6l NPHqv}ʯN\ p`%j<|)礜_'mӏߚM<1+1ڹ*&]Y~ہxC:pN!d:Cr8]roXs}v$|vʥBfטfjG3o~ ܏wcF|L I/o᧿o]SNTaY9sD5'Ϸ5t*l(_DF % 닒|aaxE#-.?6"Ά߼|3>$Ô "<FH B67˺?G+q"yuȡsԥ9+@- պ581z ՊWYR/n$ء HiEfܨ*m yӞY[@cSdi͋T5n/\/HC~$y|ΟgBܸ"e`P;yW|Ӻڦ*P=RiOܯ}&0T<1-] ׺B®3R4] SRPBqdqFP/ծi"'ߑtYGn{ 'ai>ԧaEeB%m7A~"}8]C*d1hTɫ1߷{_=HƇg~,RtփQ^\Y/{FR{NLK_;{ #O^wY?iس)iWȿ0uP?A;H3&P qV,K sT~PD你gd6Ռ? J$6.3-;M{O8%Ō1Ĩvy{c"nyY)9IB` c)J^;loK'sHfYg:g_e:C0n]7M*C9 6RyQ 04=FivT4St}q1{ҧJ dq?'JLV;zm{rV(|:rd{߯ SCޝT]Yt"b"ȎPcB`@%U컱Svq@nǮZKhlYEuNyV%Rùܯ*پZڦ$2گ:uJ iiFvZDgFeZUd9m@?F0*.O;]{!:B٫z1Z=I%8J~ٳ8#<)}baOm9nT_.Z{Vz4opFNkD%qb^뜑2(G@4cEzOY#,:#vXU}MOCQsfP K&L_oWkR]_3˲'|/Yc"Y;?y8$IF/3w·bCmB;r~+GRbY|U&~XU<f&I6_W KZ#W2Y# y@]Ck.gعʀRe8 A% ,Lr-#@!"7̤b!#MJjX1m[oL9} ,g6zl`i)Z|2wPj<ضG;ץ{Δ,x<=G>EQL.PV8[x>Qc#~/T1T!F_.("pk HZC35PG>2tv'/+[e?ڏP_j26."͙?ֵK(3J(kʯ,ȥ􂆹Ȭ6LGUg)~N,U)"^t> {a74xߒ<#߅]03 j5#Yc7+֤d6$;D^rX3:Fڎ<+z5eZɍѯ 㐁3aStgعֵ`dH/7e|x]%_.e9v8!3 L'+ +w$-!P,D˞Y`x; @%wuӖqL OhO 54\N5l+IN B -p MNXͰ1 N|= Jwap>_h5]J5j 2'qfŸ1cL)A>vRhykdvFBO~''b 1oU2xc@to `4o'{gK.3(r4[t.u-~4 7v:x lN'F◯Z$o)x \lmy9WdX<"D*HIJQ\)@KTOݰZ3n^&d-;deQcY-t;Ǝn>I5HTΔqt 9vQ]aH:.嶇*"C8ـGzAf8zN&@ƣ{M;RW1JcNJR, #mYV4&"OlRij%nvQUB" h>!whIڂ%'u|g+\jۉifJWTZ>p#*{w5=d\~(P9Nqz=)t/ĽZA>ݗo.bWԓSjZ |_*Zh*̠st$e.fwg?5=@wg%%+J¦+K; +M{Xe"&5 Ԃ(QQ7w@xN#ahSrS$gHڧS&ϕUuimt Q6IxT#"d4`LjCA$bzqzTu+s˪0A^s5A$g"rl]}! rK(H5Y ˧d)i 41_^>} .y!]\gfcw}$BKtzE&|HfK)H#\G,7}u;;Ce(0XlYj=u(M~/.[ Q r|ccܰjTټ{Hw*q:µ@t8ŖyP1Cc&{s/R-Mb$NZ.3P' q&ĺ893]V䭠%H:l'E$Nn ~Y{$S *F%0ە7q#^5o;V@ZeiȫɅ"V mWXum?~¶ ;A WV% & =OۨzWXJ4̍R0/L1EܬO}2Vl 3| L}fNC}Vw) RmQ6 Los6B\IlZXxmpY美`p~i4'F{!NvѴ05qn JۿX23yh׾ٸZ$0ٓTP>Iщ6P㞞 cק+Ŭkjڳ`N9^NcYKq%ut=tk 9u" l% (aRCˆ5#Y+@9]{Q-m*H7n.z4jΟ̶y,O qm4-{96_nݼoii<|hY> KԪa?3"f{Z4Gano/~n n, =]u"P?(l=4Mm|:,Δ/s_I. ՘"O8<# JF5׿ңtն~`ߧŽ+Љ\åJ,nM0,[?sڷpwY{OK>o>otqݍ5L:ؿȯ ;~.}ҖRTI-^cq[ps]Ϲ-5"c7T6\2sd\5LKA[.fH.5QƴpFc~#uI 6C^JG}C< JPˇQ.BJ{kW(pխ+%v&M|sᓼ#_9S=  "XGι(ĸ'WR.WȴUSnm'ETk%*)+Fi#Z܏*FBs?ȳ RUi.b} WʭSMU䝈9fIJ|a<9:K"u֌Ap}"P b" }A{Yd|婜BАgu )K 3toߦ{38W+XZL  &=Oa~.1{:pH~;[D΁b-#P2Px#v.M6zxO=ZS$Ye]+i'~$EI|uy敖RfǑrfNEN PkGIi$Ugp|8ICLW9Y%`PMb0Z!Evrݵc|舝{s}$ɩЮN y57"X;g@ˆ~J3O\0P5>X:b6w{mF?c{¨:Q{5g#v u[6rQpJ]\j8x Mel<ݠ߄j> w8jxo ߲s#R6EN$f0 ۅsغЎCŜܯ;?Dw%tScBz0tAQaN7^G?ݛUgT~Z8%T I7i;`d = LW0(b:r|g>խ* l*]*<_8 }_l%J@aHq5%ܟAt; F[siUs!|ngQ?[Gjȋ+X7zUR8dl2L_\&Y sÏo*b8:؍(ғ;vj!T0[w5:hεq;|櫲bI U8[~,_}?<^ :U'ɍ.V^}TxxثBݣ(h(W$w[=Hvʱ5g~mkRŬl݁d VóK&wMBJ)%|0;t|1)F/"[cksa\Жጡ~wHC7;r!|R!﨡dZ52_KV*$:Q6F(>EE^ 9evwqt9+l]`f17F+[LIU&;OM9%Di/ỳ\ SL[-ƴI7|- ӽuk&iHf)(gQG '<($U N<9?rҐDxJR7\E⫄ҐTWI$GU8TVe2Y:f&r .PO^3FL'QW2;eN" 9pe, ?sBD+&rEԟײlr)jYja?Ȳ h\ ³橮ꖂ@=Q7!k^+8(P'u;#I#[ZV{됝]5m5;H(XO-/>n3'si5"fskYҩv:E|g:%kyjh 6,ϣpe1@N&_Ѝ\.0)EA)KOLȜ6a2зa.6ONT07&j.{m= R*i n({&'I?dqrXzˎNJY,\qFބ`uF}՟Nd4]{~ &׉ bהW|Sie|KPbI ٺ]!mA 9hb;*pd̺ ]u:r:^Wn$`y̑"B{lPcW S)EcJ= Ebo`cI~WLl| r/ W'&WVUgkuyP0qGi w~7[U{rlxO]SH| X<<q) kfĞM!n0TWpZ[]y1&k<4gl,;pK弝_*GTj* !H"2)[/4_Gv[вȯ|.,\xl?RTi(d^3=.\;[>͜Ca Ω OK3L؟j "s~\:1.>,0J͋)b ޤCX u9] oz:2yS/hSZGOx,GPgvZ83 {OU(]&6_-:Md1w8ȫaٿϤi[&BPDJSǐg㴔k7/eF+_zzl;A0HB#ε[9W4E}9H96ޥoX?0J?%{FQ07-ewAE)W\zyWՄ!Bx|!s3Cf.]9-o &o؝gWIf5[eqp#lvD U5z0;+"UpaTE;3j^(e (lׂKN&` KNw9-[ԘH)ܵ~GuV皮(/jV;N,~4ׅ3NV>|6a6)M/u,XD]W<4¥TWn72  ayy5ln]Jhskݍ]Nv).E89p~E5H'XߍD@ɺT) V׽Q/=H9eݷ_ɞf/b}[m/|4 qJ)l {Q2:)ZIp?W˭ˠ"R;N!Ɲ 0Hw_,| ՁDž*E`@}Pwv#P-?B[(8y'oI;?B);m)&~@#99qWX=}og&eF Rn()+E0 B:yE0;qO->h"E0% QVdRS+{w0XVșt6}V+y& 5EIYt6 }EoVj[D/ :b>A.-V(6~Q#-Qmg?(1J3>(6Z7e :MϢؤF3(6Ӣy2kdq1u’=jR.s"^Ǥ2V#DLQcP@"Yw,u|?c^D|ּc͢8'[V_o(i+V\}ԧ,mO UKV}E0U~5-qFLhG`u3ꅺq@nGҪt[ߦ?ڮE!-C3D]mʲ-˗TPVxUSN*&%gBHxyʢ"~n/lsy7o*l*G 0+ pWMvVf7VZ4ly/MDfSAح`zx%S?QYtѝˬEf=hCꁉSvkQ @E@My+B\c1yY֓6[tFgMK6]L n3~[WX%\ݮ߿]VRIϢިާ݄zZA[?3@Fp?3D/ox7$ۂQoߥ P d`,6֟2&fZRD;"ǗUe<>*~Wa1Bǯ1SFYH,ocx„@b=J+`SЉJ8N @%(X.>H+PAΞ 3-P =yGȗvb$l!7` -9ߏy\ڶV1Z)K)Kchmu^r@7hHm9j5jk :) =1kxke: {3eWA([iV&aL/P Ԋ?v(hWv{|,s u$D8lVycXoEGы'C~KAp̭31dȗ1G r hy[EI^F`9#U=uYGPT1#X^)fwj4LXG3K ~n>/qP*pq4v `sqm9*0n)T"TA/T/=)MSbRpG 3lz+̠y)`A꼏049 ?V<ͭ;ƻHq+X1n _e{$?èr+cLб׸f#6i_gA7mӠ7ZmU6pG\4snܗHeiAr|θ0 3R`m(AP/i0 @> *E nK%8VIj=7" Xm'c>nl Vp- ,E Nkh@TK+ߌ$SiFtkOo`{s 1WPzSm- )Bhq '6q(WRT8 OTfGRi܃i|RAZ_'$_^Lb\= hӾ$5yhE4/r[po |B%Y+=yH}5aYT:}CV<城0HY /PY*mb2zx5nog;SOL=dBqc'o`H1K#m*z!O̘R_~L`IR_bl/"JasT$z<̄cR4rOuy0baox,\J5N+J0h;@^'u;^^.J/(֨sٶj 5³ThߜZJZazXi8S<ԟ07TTx1Ko?|C[dȶ@5vD#QpJa-daMgQMM9B~,$m&+SDE/ѬEיmH?`pGtE@^7+e?PjZo(4jĞ?i=Yc[DΗbbwFLDz:lLnF+3Yglƛ&gdE~͏5ʟX7MÑM7O1]ӌi4[j*LWm&L~Bӷ*ۺc:[E7ծyWpH{\}z[(6&_$x$v) s\@;( Ǣ9TLYB*<9n-E?yz߇j[+}w@Io]3f%SWxhih"+(p黥`S%I4h=ztLһ9Lѷ9LNЯ9Lk2c9ͪf4_5i7i-YLkInsac!/vs XlŀM0jL"X!) u5LU#f6zam(dH &3j5iI`"v pڕ66->ߛM" Eu:~2+`(CqY(o*D'Tt, 5wx y*82yHψUd%Yj#W0{GD?%Q?Y/BMFC.E֪ !P"kuYA eaA2+  d/ңw/믧i,UĸG;-@αZctUDEךeҸH'V)\_DaQL,M͚&$;cu,uZ7jn"԰(|sdUScEGt:1<][' ]'<1MA0Jm2A&5Q(Buд$ϲT~ ]+Эx/+wA۷ZAgv 7^ſnp~9.Fԋ__(Hp_G_QPO?]ת/uRs.Vj\9BAIn5BAx}˥gI3(0F(xx?ISu#|c}} y =Ş~qybW$" fPSv&͒{cCd^ 55FMb[̈WF(|+NfnF:6BcRh 5R눎G.P-u>h pvx|f"ǧ03 VsOXOIˇ6ڑ . 2RHcْ"TPD} {[2o <;[WiЉ_o^f "o$֜kw PJNa!}b?;lbv;;N6,߂QR)A J4Z` }Q qW4n!mç #)؍#8tߣ_F*]P7Z~n>J]2J)L,zndR G)>ac a[G)hW )x|rZLqR|ɵ_k/qgVpBN}!EU}j%?(HRi`M"8++xkN=0b)#@Zv $ESޣ GPkg$~6dpXHM=MaeZTK;)t\0JW脟>rg=|6w \qwbz?+Ą&p/T!03X< 7Zo[K&y;Θ1ZAܯ5|Cq (W+gԉ AŒ"hV 1 6#yyy PwQPq+KjaTQVR(VIG$GIZ_fp],o<OSsCQ[cDI۟D ja|8FОG($"FXG%c4HE?4oa8VA>J wH+cXfNҡ2IPUWFD-;Ax 帠w}d>2{ '1炏!|D?ت{l9漅 _Gp69V\V*.XROm)i%qޑ-2n`4r)8A˜q 2SM  }'S' A{B?NNT~  >Dى?0,+RvS'W&)84SIC}߬$|/oU!~}/ЏPEc()k+/ZKZ )ҞP`ITWW+/U+)ki[`Ǹɓ!N/E6U>?TUpstbP }0WPh1ObfJ S8hksBB)@vCIeyQVpTw>&+jmNaz v77Nsשx ])jTDi{;+ERڍ ;?V+ȻIfLcK7W<# AHqtJ}ٺ ť>C1[UTnA?l\o?38%uP C" r'WH|F nY;:YO%"*xNHYN-KdPW9,crIS¸v'3^Rx} #he r ).H~Z'6ݝNz^=@|fs0'F8@8g!IH ~wE[-n?f+4P;}զ}SSo܄].fI aO<>/:WfTe Qm^l!Sx,=1ÓW F@,/ 6P*`>+9KjQ|iCb{r֩4%oΉ Iv2n9' =T'@b"26ա˩IQZ[K '$S V:>n:M1_o8P+H+)+-m? ^%EЁbe9E-&(XKiI4Se|E$Ƴڠ&(1 [$ '(H9#$E b^_s'**OTi\/Iҧʘ5QAQsD4^`#B7객\=-y,^ߟcJ_g4~N@;@6sX(?y-1~3M3-3v&$_LW!sD6 5L nlӈ > ٓ\+&)ŝ}TRD?Ҹur')aҘ9IXLR0 ~JRaKI >s'y׬:e8\^O6eYz~ʋLk>2^u&PٸanI4E0!nl83)sa['s‚(`f#!,/ xšEADspim:W#%81n(VE2\rtc!‡uBbJpkΥ5z&߾f abR92osBb *+<\3P䁅T=EIR!矇Cc$#/NHGIo8:whWWf!( *~==` "#.@'$dYhq{)V=s'+V I%^\p!ι'+hێ5IZ&+E,Ÿ$EЯW'+LVyi"hqkIN0Ο$ L=6eD?E!S<{!q&qnml`^z)\&)>im2Er7U^ik|w;2US$t`6OU_h"jh׈ry,7XZuGpٿкCm _Ⱦ ab SKx=:s:Gb-L"^2WU\DeaEh vnO5 l?lU;*'YRƗS mhLSpOGVI4i ִwm/ }4?*2S1*aWFFs-8P\\ :8! {BYou8R'UXX٢ć#+W}Z.؇)Wˁ0W! Nu!8/Nzcv3^Y0[wtFa>ÿƢ!ӨdAbN;fn}ƺ.wFvf9]r\"+pBbʥe%baógac(-~|dg|%qcp|'lhVWCordJb97$.2+` TbԃIt dS&SA, n1L G1)3UN8.ĺ2u+萊H LKAOٌۦ+"Y2]A6ctOR jt_c5]inv|4ltu MR=`7PPDf([ {f2Auv  t  #IݨM͜ >5 A/ٍ3ӑ33ܙA %EGv tt)TA?؍Sf*@I3?" VhLIAۍ hLSoI4ağR AK;3\C#3\r k*)f; 5KD;KA4GRg)x 1ξ4ϼwoP**Ȧ 6\2ұb҆TzPy>w\I J0O(mI<.&:rEHLot6"Ԫ\jc. -k8̭ r)]MjUA+|ų]WzMXRpq6(IѱRp@/R0 )RpGg)%uc0 lERZgdV0@g+H /Ҵ9pVPO mW9Lu^AoOV$gW0't 82[=:1[RJR}g@Q[ Ϻ1Dc4xR8?G)'g v[&.ROS$Z'$4aPOo  lzyI2mh&ד_uM,q+x/:'$fw2MS:r7>΢>75`CgC(k@uW)>CqNdcMoS,u8JQ/80E6:؎9 {")0ޛj}=GRxV#rΛ<),A[WUU[ 4naUAqs\t[0WA.)^* K! SgsBu> }IN=^?hlF fvX,$.oLzyP"7z9} }NmBS0OmĽXK܇Qt}C }ýՎuWވ^ac 6P!TFRWHfg5TJNlQS;(?7XS18\*c]G|FAu(8 Ƒg DzA|4Su<zwKv)x <<+%Ey r <G F-) w|Oh|VRDii\4_A盜`dW0&G {ze}r|[ gAx |E~I?\k;`wrOһ yZwt݄I,<٫?`cm͗GwBb- =1x?3|u'x+Xx7wKIѐO2W`{zy |C_Ito 9N0q+!@AN0@P(ޗlmܼ@r-PpAnI1| )='[k(@'(wNA/6^_5VW{?W~=z'Lt<`"K3Ƶ!1*;A o%e0*F8Wކ#tsւT;~ j%%ԁV:'o wjx)Z/ Z-TP+?Hx… ^$PBk%EPmg4dAI?Z  cB+#P>ף_#=@XOAb7VS2J,#IZ!2AI ѮE F %Eۍ)X8wdOnZ ,P-Vhu XatYƽbEcp0J+AыH;\XTPXA|0Y{=t.B+pNbEIq 98c]6UESXM&Q`ʼn"'$T즰b*`Mϵ:,Q*uJ^3z,Q_n\كBױ}vVy4ڢ.*iY7x@Vv-u3 -!)Ľv) =sBbB~B؝!5xLpX ji kK% J"#&O@XgnnNh;:uBڋ1#VVz aVVV"qZiJDg'A^C9(*ŷ~v|ȼ Wda`}tG Y؇(} ŐXeoW^m/t% ĄΦ^ '$6 GH6T8Ebfy?gLxf9N~è4_ u]׃{}+rA.g!\hՕdj8oK\{2TӇgNcSh`R!Re%g]0[᢭6{b3ل8DXʝDUS#,=eJ( ?RItfMt6JnfR$ł JR_T0V ')fc3У^ഇX"haRC̐·$EЫ1d}[Xb864h*IaGӌV)89\I)lhiU tje\2BN3V@yHbss,lnjX+"cj)Qw!EfʇYCpxjf(/&gPlƚ8[gF>۳ZI Ʊ &Fqk\.MAGk<y;? D7^?Żn\9-l獝(N7kf諳j6V}{5, &1T2GB9nLsى; 6and;av.UM!v sرf7y1B> ͮw G(Ix<:2K7zÃB1:/^nY _`4 )c9زFAcl?J 4x.|ZQFd<бԅX7 6eG1)hQ7kci^EN0~]`ڢNJ#g IhTtL{}X˲0),^趮UKtqi V-vѳVMҽ\l :?c-?={ =Nd.\6.ǖw*P.niU'k]E6t#cArAMqNt4jx,E WROY~ M͡yBMIsryMf/sW[k2JSc dˢlȇаHȼ@-Zd@P;H˿sqӰPOG76*xVt:D':A-ndɇ4@(xER2"Cw '$F Zzw8OEǣ"8g+O*5& ߰"xk`e r\C^+eiP#-w{!bPRqv+f>?#B}WUYyY"N?k6 HbI1F#A~Y"yc ԗx_nk&PE݈#OOiHZwqgٌsH(K Ə +*k"΃N.Ս/[Qq?3^ƒ-(aHXN\ [X>OXfAk3ek -kZ*`jiVFu FQS. %5X*Fׇ_ڧXçk[WcA"VS&"Ei$.߸+ u'J7i)'u8g;Rw`AxwXk('Q%Ҵ9Ʉƭ"ao"Vk\'P"70uPF18e! "-y0؍ u:k{S)X~P뒝!Ojd.S $3=;))u j6D[Fy Hޖ4JW,or^ }3b>}j6%!wz%Z}Th.;_ !.GyV/~ʁZNMRƳ| u 26EĦ+ړ^d_쳡iForB|w9~ݶφG[79/a B m6-O(NPI:eĭWw3 _`~ӟJONQw$k+>sIW_5=kClת0=ɘ"<͟ܛ9juxY%Is{2`3 kk̥vm`ڳp\;:xABsQn6@&T NoF.ϥ']ø,YM"@{1/9bXiLi -oΏ8]G4NB":>TF.¯RV?eI.tlPՎX37J K=Ƥ9neݯK*Nx J++Y^(f]p`,4@sM6T`! Xa !yNB klPVbGXEUVv uJEhQ,K\nۋc|WlFl4+AXd 8% Ck(f/qC6ȷ\Vl)%"cYa^Yd* ׷x@Hd[\!Pt(A gFWEòr6w% mJgp &O_/2@}KpH_d.A@!:&1fy8 {֏t"\b-ւg*Jbm$0].]w9ꀯUeu`6K%ZZQ-6_cūmKqb]QZUͪKlbf \ebތ钱EROH *딿Ŧw6{\157F@/4Fɷ>RQ][ d1\26 /=Ԇ5% ߬ypR`=l%XDs-;M֜l蠘1=}JbdlVDZkNk?Gk1VufҼt+]Bɷv z*ːb|mͯc  VUHi|{2c 0[߹*~3[fߺqnKVXut|Gl05#[A cz- iiVIZ cZ:lG͞K,T-jiw87Mr[Gt`fLs~ tvk92ZZH |:dKWׁ_ی5JI\ ͥolDߗ5wk z?eloggA*珞[wz:$jK=]:+.6@ػfKr}~6`m6{-)5;GUTF tF١Ψ\><98)gpr5̛ٖϥNʘhMnY=n*kѫՇa 6©^z,@);&AmE*GCpݿo9pbߘӬ.Iv(diA uK}٩95ҵQs+=~pC֖Wp/dUϻ!7ـֵB-Lz؆ՋN[^xpɞX@U6] 3y\zS&=X Sg04u`}BdO]cː;5B9{sa Tޡ<ՖcOj~:5 qs,A藞C2햝ox=iG'tԴ${X[Fj&~x^ {D3OW,-uc4-;٤A }2/$>xu|=%?eibP>U+_\|rrAwt `e[SӬv=JydDB̈əY4kĠLK%:Y&2=i>83e@RZ\䰀Nv\;Azp4n?M"ev9d{w5-I5}5%*_hܟ.tk-۰,ܦ͇ڃC(%ɞx2bz 4 <_R_vJ%,=OG( =i]iܸNwINĝ5dPBB)naE/{H9@_ ?l)pٿ5֡}1jZ`{qa`Q y0k-^Gy D,qp=:o5p~57HLO?<$2R\+kz]-;Sʙ(lj%4Jx@;Mǖ4tIk)v?;zy%T<-i:`S<{nBS f.']gIi˰[}z$G415)*Gat9#^c"y(&_a1"y{ۭV )eׄ='_PD_3?42S&3W.i`ѷ!UHciѽ Nj.wfaLr"i2>!sFq*4Xh*<#aF+|E+{kih. */=5xHDfX8`YJcx<;*y8*s3C^Xa'-=+͚nͬ=K<5LdkR ݔ&.i./Kn*dOMX }?ܸX0K] Ypi&FqpX`\vKS479u NʳƧX34nGY`YP&Cs)ᶌA1AW,nP(ڎTɄ@K<M Ÿ`GsE3<,,8;O1DGyޡ=WVf=04I62iulrr:/^ʚ,ZgrGFp/-N`W';}jzco^M Ey5s2߼Qʃٳ\0͕Y0kܛZƿ0k< sꭊbuܾș ?$(>##`+iC'md{fv~ h"ERJ ^raS@3Wwe@G]BM$+I4P&+ ,=U{KE8!4(2%x+ /yOWp2w&VBVϩ1+)yH7:d_-wܚQ7uwM klT&:B!ϦR5=7꼃wr?jB|C"wJI9~@sg$J# g>$',h{Fzklog2>zſkZ^E/>X&Tjpf^~t;ӫbTՀS@;^Y5)]v hb4C );;ix'ZRs*4I_= jà*#delc.] ߔˮquW.I 1}k|9?x/UW,Z waN_[ot=4%"ഠ.)@@ iH@, hҥ"͵մ ª%0 ):zkPAlo,E^NZ[.,]Aet&쎧3,["M.! ab`j2 w,WMP+bMp+B_4ofJ4[ѕ)֤ 4òmWsߝw<+*tǴ 0i: ,h&OI+|I*{Vx˞mːkhl\*kG4&Ft|^(ѿ|~M6~]>&S)_([ o=tBNu bəylrcDuWΝ]cyS욉|vMϮkWE*Ħ~MZUI 5iU&*>\n2huT-ׄTD|vMgľ|vCmkFbXѬPVk~M6TI 5PCow1_ӿ Y_k~MUc5jW> 5V~M~Vϒg,*s_ӿˍO+M_~~áhH_oÉrׯk5u|~Mǯ v TUT%1En$p*T,KIUgQRU@C:\+LWQ4fρzг!4CY XX04fPZGՉX͓aaiDvD؈{c\ `_DŽO03:ߗ:/jPa1S`$¤ۛ83]G~:jN\ q]5GajB T+;uP7GvBh~\nq,5p PΠ!.U! ~fؔno +ɕdˀu=L9O;Nu->< +XOZ=s$О[ x˜}i=ֲ"02Hr#k[dx;T3. *=ǞvXB{ =a={@ ؘm&jqkHa,{Ć L4}V Mog&Ye՚3\@D,0$%\+D. kC (@L_C1f ZVvK_2X@.MELZQ7oaKYl=T- ~yL) ~6{qwT|ָ'\ZP]rp9^&9J4uX%?8\ZMRXv v]D/1sLuK漏!?莪O#MN2ED"XrVrQ*_ޝ'Ҕw Ԓ&q1!GjKڳ\"ԤD*:ع,vII%5u:-=]J+upPI$k*#KȜ@k])5(5.m= [/^Wm=LCn-X%a}i-{[5~C7(8%_07FL Ž4Wc]. zkroH 7pei8y`!-&\ &!&jꣁ!YSU71h7oI͟v I-8KjQYYW[d"|]/#. 3FR,^)OSf-t$ܲxڀ1PV*7X[J~;Bvk6l[T׃jqaEi4Ed0to%5RA^Ѡ[)ѷh8 l'#dO Nԭ{\ >إ4-C3vdlXN ,"JN) %U8Hu8iȻ/]N֗I{Qb/"A z[3 4+Y0u~@En/_:D#}^}<`ftwEY RS/ t'StXh ;4i;4ՖWc5jHV{Ú )#]r,UStFHp~lsRRຘ:#plT[']F~& tDz沁\⼾9 wk hJ%~ VjbvX0H@ױ _١m 5ȱ|#:̟aīdڻdfaحMK/UQu|˶ѯ `miW}6?#X3}]ɭ//}sOH2w fDJc:Ψd\;6q٤b0>#^; lJbWG@2+0 Xě\"vRIR{!Gg3-Ckx[9z}$XoD #MR# xk6noz`h]WNQKkuh$RL p;QgoFW+EV59>. xV$H00IKD4|VOڛXn֣T…P.uiA5S*:糞%5Yz(CB eFQؐ-XÛFh~tӻ`=crMwR2; Մ+AUD4a)?ni^M 2Bh1b' m QWHKĮ^C&X/\(uODdIdP^DhL~"%B"2&\j!uliޟRU8>%s/.[`0M^ ؒ ]F{!^Jb-a=yEW5dh6BG"E)k|E{*n =-֜4;NQ G$?rwt# q1>/US.N[-!Xꖍ+W!$z_mn(@SAaF0„@":r*'GsW [%v09;=/௡/=+qB)#L#G O2VVS:ps$ MY KǪBjE8C&u28)[@kJVMn QnF;xee[sv&T7Bh ػ҄ܮ6&`/%AF-{*H]SCȭzn%\ jʣ|MlP<(t/-;*?M4 #^[̲q&rcLc]GN3M8%gg3Q FpF05ʂT,{6o q˔Ob%SF%WdB^Hjq vE2cj!^B6h6B6G2Q 0}KlWuĚZ_@K2Hr.=WJ8'Ԍ< r< ` w19͖c|#$y :aXG;a3MJF-7I C!etpsq@n ǃP@3z9W\FNXXFuS IcbS}ݒތwߤhGUbf[M?goAƮKf: w.Hyxm#F7Q( xY_87\27L6N[0)O}tÄPclCz4Zx|G`Uo֫> 64ewU8@zv7Bh+~`z. /G<pjc͞N^Ŗk. ؒ>~M\>N:ORc@#Z$wk`Ј7n# H& .ܡ dqA"lHq3v|p$Q%+Sj_Ԥی(GqVIX],odoBCG/C]%Yg5gJcR(0K(tJXBbƣ"R%k*Vc#(oj?*R-[vZ$ʼn(D.3a[8XCI-U.=A˙p =:$s&(t#DcXh|-ec45R5Mс <\J7}S(Yҷ%'qWd6/qr4*`>r3WR諎Ix_zWi ˡ*kCuzǔMBYV(cύpm[\Yv,OcmZIr -?߂Ān A,{JƷ0d[xpLnXwDFTwԴ?WFuIKrr[K kkmbuMYN4Bh*2.jY[Wk r]YpTGi;FAܜ)"dSA!P 4`%Qe1Vp*b.ߦ뤥r,ic%nReNBKP :N٩02ujjm,!'B>qVm .Pmzf  6`)]K6nVk XzKH0h R:{Qt j3SXC%2}\WPbzL%2-n(@ʌzE+ x}* FL5`e6.Z]0D52.63ByHAv#IDJa#}!u|8^2pL" XAL7 8:$32} KWԮeaC0*t2I93~L9l;ް 9C8S ʰ=(ǻb9|-aSLOva%)%fV8|IeU!X̵X㓃9I xxWu0k |x.D ޞ{z0\2@nݺC01߀rNzx)Ҕ[uxʡypim=%RK]/>j&7zT7tQ64\1}$9O,6rUzdo*9li76ٱi@#]s3]u|yhru5pP%!a/BF"%M;ZVgE.=~!g[qj6mg~ ULJQ-R ܶ?7U:Qo*$(-Ե-eb>tl!mbB@=&5}Uyi4JNvUu4KLlirDt˜@{ggB7I "Δ*O`({Y~!4D`BjVg(Q0`c^ ٧̓Wʂ\.iF0Lqi* aПb?%6R;i^` .'[IyHy~Kв a6͹0ifAHВ<\Їx6gяE{ 9y 3paC2! 2af%DǾ)"#aWL/iN=RUb) De:R@L p8Lj5,vixSuNFLQXMСr1lsw^3ۍ:n tJjflO>Y1QO'і\c-gy.`#avetύWHhҸgp@+K>Ԝ #Eΰ,kݚc- /䍖Ő*u?fҔ ď]og"Oh-g߈mÛ-V 1y-LeKKxKd믜h)`'1Ԑ%2WE Lʙp5HSR30՚I޹hdfXs Dzl=pmGKS ȔsH9ͦ1~Y),{K+JbwfZǚTH[`;^;\vؗ8#rUwP=alB )=.W G55'|A/bB6]"҃yD@"&r%Q~ԛR@^ʱ0PYw-HyF0g%g 5Bh֛463(SIgĎ 0(E +d2P8,8ɃfCh~%!G00W i1_jZ:d8vNޗo=(0<(_H(M~&Bo-Bwk`D3 -,eĎ>p ʘh-=A;V5'5? >0U;G GC̢ $B Fh}zt4>ʓ}kó`_,Vy1h"}:S-yIi0M0iیcp翏Ii0Xhz@UUH`8;UGip9 §XIM$#J%;~0D zKfh! j -5PO"--3SڿöhDʯ!- 6(1!j'fX؈1524_^CLI÷D'JB$ s!F@x#7dzbfX؈~?OqH#xIS;$rrwKRXGv}k)cOZQ:mM' }%5_yGZ%2-|#`1mgrL('c|NL(do\"Sq%(VubpMVQ~H;rTۏ]\NkRJRS ߟL%?Pedٻ;vqڻ;cKE\ 竀aLvKݩPSб]qT(a1"Bq$/O6u4J QzX9+ CV"e834DJl3J$&v(&[ cbM\"eq+> 4?D9J@/bJL%2-Q|DLZ X3\"Ӛ]kLjOkآ4LB[ bzX&rLCYNL_WD! yqaTvʗA`HMIYvkvH< ;4+LZSS&,|bN+ZYxlYRr|N&-P:~\ м0R<>01@ fg f(d%ݳ}kf,U ]]FVV¦ӣ̬¯tW簗wiXk\ {p^&Ānt%l4KS29nQ(#ے%2ZnXLyPFLKT{3չKB m:åLՔ' 3^ٶaaRHZ[;Tʯ.1E,=f8Ag1͕xb=O+ &h&$8f.~Ǩ"Os5S$T+Axapl]hu_qX)%6b {Lkay. `xR\bgT>k+o3i+`=orLj*?f>Sg Ď };Sv3q 46\iN.bzILKdN@4n;1G]2 W<1n'm$ȴ#\)i'`2ьg(C?ep4g+Y_Kkgx Sk#wogn ]9V􌥈u\zTP:eq^t]Xɴ4ʮ!ݬ }H BUA"SrR ~O-FaSXcAۧ>VEuk9rzz`Me{Y52wkKi`GNBhD?bwf`J'K1I3 ȣYOX|PCp(@'.=<5YCQmC;̬ݬ4+H'&)nR%c9]ҲI2KGvjԞYO=.`>J\"zJ$ 04=%2-$?. z 8$32QDlMq%iT'?f\ѭu2\(AbWԃWRpgϸi`XM$DD{);0 0۹D#  yR}2Z7TS#SW#;W1)%ee1er=0EhGn ~WjJ%Q+3o=S{d$aq)Prw|U+G΂@=I{`nl[dc! gb׸jҳsxӷ6 75S?07$>ğ\CF[C55n8.Pa, %c^딫V@5- BEts=RJ -7wU/WW4"x\n먵C¿j`Vc4%aѫ*}+{d!\2"bj|ZUhl{KCBqcxʽRHqS&B_J.0С>F>bo7d@(_4P Z^v^O9YͼNV P!H.1ps'Z! 3"~*r'/BdtmWeTRNaa<2ɉq( 2~(ai<2/4A/ROydff$twGc Yxd(to* ]s"y?ܯgDaP_Ԕ Ԕ2)d Q!.$ 9@+ [Mе#߂gʈoEf5xNA&5QvvCAMAӖ,?80W0*wQF'58(GF>R4,=8^cǂ(w#Z|Tuӵ8Pٞp[);cA"B%S}ܺd4#SdU'vfA F]hTlYq? {䒭Mch MմEQ395xr}M7_bYPQEǥ+Dv2 N=mEl"\bj;"%Q$Ez'ǁ9ތ^]h9c÷FKOvLU1܀7EN~xn42El7ڸ wi)s2)a6Y{ఇ/=d3>gTV%Hr@.Nٓ,7FdhafӧΩh[*itgלFL]0onXel߼I|_&f; ,O])j ^y'|bkb:*IțSt\P@05%gԓP>q3"3Tޤx3qS;\&<|j 5NŦPaЮ\S`\8{\Sb_D/~LY'Tdxŕ]XTKl'i>!/P_[ڻA \bPi) 3۬ʪTU-AEZrU͓EX{YuSKЪeQ[^K:4%Ob Me@U=ސE-Z-('jDfŏ%pz :s6 ldѨ_ 6v,+({n%Whb[(b+35#mpew'>3ȧrL AU.ikĺZF#\y_DӴ6nqalW$N RZEuØ9IW ;<@ȜUϫ ]*t ^(o*!_K?1~pf]ى]! zĀz*7`JJ,͓/vôA n wcO:qDibkZ{gRŠ.NJGdޤ cJL-+1c2YAvRESmvt2lKvT e4j$v"+Nl\Piځ'emZU׽KW揻*ԭ#̯;H\DUQy}tS^|J`6.OѢW!FlY ]m$,[x2u?D0=.zrow{@Uj*KbIjpد!n`L-ZgҎ|oR&T;ocЎHn$]HG)XkاrƐ.˸TrN@hT=Bl\|75q07br>Ԋ AwT,<=0b4FErAc4O_cF)2݋zC<ťk8EU0F"7W*>kܖ5s>^Tn n MTX ߘNa`ڞ=<=uhCOߐ|6))SݝAo;scxV*j%y\`ީqy9mMbEy`P5M\zIX.c2؂L5|i>4OPOY~?+̩mVZӀn pG%gIہ4bj E*ͨ^*`a5Ltw_T=9<$oey Qv|g aFDi޳{Ó/~F؍MB?`!s BWO>/I/B3y@f7岧u>MԔ!gA6sׅ=JC|Аn(XdAjI.'Z0t!AIN=U&Q˄UEU fLlp(a|l}~>ӊ?>rG:B<,!f $`'94w0DۀMmٮ*B}m7˟惉mBmrp` /7e/tYM^=kf { jpwo3 χBu:ܩ(0a(?Ӵ&"? ܞ2='KT\OUN$je"<:}{TF8 %Ƶ"; A0B8zz#z-f+r%~ l6Ǻ Dţʤ:Ƒ\n<41Sxַ[tg:dFfp\Ƅ=f4ChOf#Yc>lxK=."P=47%?9m܏;5ͭЌKQޛ hs9Iy FͽGɈUOIek%U'0t R+#@+Pv+0CQ\9 [v4͔% ,^k4Zd'3B>e-I6Ogܚ%Lj%2à oI;;lKUИBnT 9]e jU )[69Zᔩ6`3/ԛ\{`RiQkyTS5gg`O G3pf6r:JSca:S.wtX>co3Ĝxׯ#uq"J5s"ISfYsK0m|4֥>2S/Q4zRlxwUB+D+` bo%0 sk GaehMn{6fqLVM[YWā[uA*BQm2jAU9@*5%<|Wb͜mM'ub*H8\L1iǬ}]}ny ġVFD;SYCՌǷ\ŇQ%1Z"%"zѭgUd6?t]!ȫHoZw J}xAa?rԘD8O*vťWYt^RdOEr-n/D#$爙 b605>N@b r|lq-*::K;; Mw y6xG؈<;Z ;&c)_ {$$}-"%Ǐ?`*}*[ӄM P ^ %;lϏF Ug6J3Rx/]N7%7z}cq+LM?YP9٫ G4ÌABр,I"9#3M(o]] ~OB/>z'a`"ZGgpmw)R.eu]S0hBh%C_hJĻJLYfJY%{¼n>,ZZU-P-0}\bΧwVPg_)})-FJ dA|%EY%Aun~q}i.;Z>cZ7~Uf`<2dA_l}9Vݲ,TXs@RAvC7ߓG¤B.pƲl:.lk@k~Ho؜%mx^ZiTɔCT7V+=yYDǭKچ RK3yEg6aO4ڬCZx! Q/XO1^a-,RxcʌFl%3֑gՅhJ٦.~uS˛AQwVs8+GD7\YbOeSmvу~Y_-^Ebv?v mB8Y$)S 0f"s++cYF]r%Q/lzb2#.(앁ڋ,@tuaIĚTבu3=A;CiKrzf1V ?Y;.CmfG3׳#܁5-{1VFJ#yRj.60VxD"vо}?=kX;9'k 9_%CEXИ6>G\=n4n뱭8 BvRQOV$d cii~^j>MYS"3}Nu@^@ ZiQZW-+E)$ADa?u%Nh;4X?Uo*D_=(?QP2?UX? $7Ǖ-^ՊѪAPcaioq&gK6l/@U7G?Z8ߙuK7SOjrBf柦VbCG7wE V 9+$~.pDɯfK²u+ɕRR>ѳQe.Zg9|I>Wޏ7R]kCc%y v]a c44s C7zH<ԯ'H&FQsoN3wjE*&&7bw(kOX(kNNMZƎԸ{![V`B]6 }O_nCPZᯎR=&LUnظ ϔ7~zti*:k4H*~]p)v:=Ifs&c(h vX"mȉ` |(v0wk}aПU~w8 }ORmǙ7AK0*E>K+RDc-ED6 ֹ0ӂD5WC--A]㴟 H.mmt)j۟cR7l^\a'LCsNq3ӫleZ%>̗G:˟~dm-lgy-ɜݭ^n=z<rm1rqxk>[W3}\L_Xq{s#X}{~]o e`",EmEZE vJFxyhE=.PA%!߯%d\m: dtzmk "6]f1K‹j cv_~1ЧyoA=Ɨ 2tηoG zU{nC=5?ZWYagфx{h"P~ONq.`~4׭aU x }k!K|KJIm 2\Dl;:u&65ȑD&!t."AkJiΖ\loIAOMbs[y֞`)IJ+̏5\BL}6]]Fmnztg"ݵ3g%%@ Z%\^t c,OW P]zx %cO!,9UXRCx̬80 ҕU̒-5EM@fଥpO{+[LۘF(3 ݧ8ЈM))T:\nx\D%̟yQ?f Vg~\u }a#C Zyъ~ǻ5TWJS䪙:e05zJ "-ۜ7Rޮ`,/ܝl|OrJ4Y{b~cĩ됆LLy$j>K:TfQsw Np ]M2bg棣b%hDBK)4 Dc#=Q (Q2%s4k`"C&d8٢tjC#>-q+Q շusb᎟yI/ Ҵ9I_{,HY6 0$ԙ[&B)&pbj }[,#zq>)$R\%T93Mȿi\I_bKȼh;0@QcYUDYRGxĽWFc0N A/5=t ;Ή<ںM='eGw-lqτ'KuwL;x##bb^i+2=S ,q.D^x=lɌu:< #vf2:^у1"VUȴia$#QXpX.S7j4+Ć̿,4U^oE֘;¯}aɕf0mDp@f$Fa!zVt@2n{)Y)DMKu,TĔ?kyd"|"\+Y.b.Xq@taii+-ol_=|+nΊ 0AI~UYnc>X@3&"W;,h#wr4ՄYB<3-;W ^9Zۗ'Ն0e&2 Laپ "l1Cr8x )xRP=D8r]?~TYF긯1NQbѣ 9(caf>”r9 xth:9R;0Tr&s&AKCEA\22UF0pE ATKAD2Ap e >dm9qN0T> U;JfVՒqyNZ!1ɠAN;m+hԴtHj {@AR4&n=eEA{HS>;Z J5Z^<;tM0`]{m ~SPGaj u%2 A+/=;1}{g[;S-.i$ Fh)Q%Qxk`$W,k'4D\S֋12W&DNٯ;U]=@Sq b`cA^a$3'JıhWŃ E!"$+%T`t0fjDJ!xӌH⿨Vce-6dF\K&ooKFBu* Dߠ2l*O)`(y Z=>ehdÕiIs%WJ'R _'.928V૩:QN! P9QX)3Wnww D9z5!lGZjUVB0̮_!2Ac1'̩a~b gM;`KH2L-G,o5g@4MsE} N˽0ke$=sMz^C|ѩ+U:TrIjo9 A|Ihç@ Mx*G u7 4bZ FZ"}Se2q&ND@b<`*c'Bל ?G]˳5YoHb d<6*9&OFXsƋPHz/4EkM F)7FYт#pjf0P"YKwO)N?A sPBx7`/P<!ډDnE76=&SWt <X]4jDU؃"WŚUI0)k~A=, ^eՅB!yC zx忪XE,,[Ȱ r6ru@:hԨfB"+wxF'Fs9j'hԘ&?n: PJO^_f%Ѯ&hcY7Dw0!y6pE#n9ŇIb W掁ˡ!0R6*>`-,D\*2[~L>wр7UL7//*-Y}v%PEmT*-=}B/O:fqO0:\OȨpEeUTA,h-lEKK#7 ei߂$a!8bf>iE8/4ĞKIv{]???AGGE'&~O{@K ƮgGKnHuee]23eT;VYzh:E`[JeMOSr#`8ҹ'G9p©'t'`-DzS"VM}YJ?6cp;W9g*׭v)/Xe nd3bȱeW]VpA{&B>:_݆eQy7 b k`w 5 L<Gq|`7{Դf+:?cj(OT7Q%+,σ-$ ćᲂ( G뷪,ZBɏ#`M5^r0鹴B*b}~=! 9ԵRB('E }E3Lݜ4'K]2%#{zb8kMD]Ĵ)Nzz p'TM(=v4}63bB(E4Xc) % ,78tpyQ:x'۔d@vVULJ~(zDm(3 m+ⓣv> "Fk+1xd)e^ܫˍʦEEvs#LJ݉!^( }t0y#]ᚮSUp9?3=?0jFB!ĄN!_XꞞVb%xP qMdb&NRtA(?j<+f$};0f|~wۨnKL;? |7nɀ)f؎zW|HxISB~s7@):gJ'ׂ6̧Δ zK>a7[s*vT~hXs tMLX_n12VZ lTTsLCu,u2s8?~BtY1oXz 2l JjKsUvJxEX=>+Cq6/8 TR^+'/btQ  G&g- E+^*m֌~ ѝ.*l"<Gۤ:&2aM.s̅_ B ( #N8̹8q裢P6Y[4؜@spv>=p(ZhԐzF)Qi k-, L,xчP˂ƛHq2gј,FufUՅ>ڬz*Y8<q9*dtxX$xZ$4P@BS<)P ~/,v,1ϕ1ܾ4B:>PV D-͎gڢ;ȞX$:NL#+j-x8oiE>;l>ΞYQ0*gDFgO%Bŷ-9lc>X : ƎJɰZǼީǩUG˭3t`1g:QՂaOږn>iM-TW@_QU+8 g:J7sЭ,H">sC+ D1a븎b5ws;a;DLA8WH&!iM $ ;/ (E S]-}}!^Jp_Wq6a$=WQI*j8%(؎t6֏(oL|^9q&6 Gi!H7O #!A0s`ǛЕӷ#"`(9աaK2e3{iEpT235wI "|\\"xxuMbM:HDMlt# |hjQ$ծfG 'ڿ,1qB "T䳓cwc_s3 VI&XjtkgD%b?UaW|,K K,HGr{~z!)ϐNH&0T*K&| qus.,aS: (*MP+Kۜ8 Uв Ͽ [W٣ ؁^cy(#JPGql;%vB3ܬ*J晹J^p$$x}Ie] -yElTחc0ܗEqq1wЄDZӗ޽KBnt=(Rp6x.CZN 5۽,Lhq^LYOrߧ9ty2e#,> ݖ0a6IIxZ`ғQC6MӸ]!A[5b\y/6PFBbUV>:VDMk\NEKGsn y>״~t ?՜ׂ֍/!rTX0ij kf zA bY]}.vUo==W‚6򨛦Ee3 ײĐjkr%Ye8p[gvHU;Zx?$ϑֺE;|A7Նe&)Sl26nEsp}ɥrbg +bDc m&:d@奣p0 !:[t/;sp<]{0(>c^"*Z;s6'ZQ"/[ъE^jРLugE0,i!,ԙE^,B—{(Bb/Z@Wsֿl`ɇ4îbD6d)Uv.2]q<%^*젃0 Ar!%^#<wАw?i #8VxrF\58oy(r!-K9%j^DG|zwjOp~?w`Fq-\%ϻ^d2e kt2/N^uAo$7z {ɷz!ҏ#Jjzxǂ+^*b2ʅ=! "7輌 zm؍\b>.%pD4l#::r[^+UFtG%?8'bߓ'AnzM_SMMinoKG&.b1)}xtn8Cc")t.F﫦Kp^:26_5]F \Q#,O[ |h%7vF>Y2] ˍ,=|Fziqo^" ˭sFMQo Hnt55p낆5ܕ#Zܠ5Ma_WrqӤe4߭k4:K{h[YQ?h|\{!_[/*$Se4jTlF v:sF-hu,^]Vy59MS*F̈́EaB1+D?R*=U{/_7OǼi|hr̯jt Z˭z}/nnZ>f&?wjo^T+\We=|N.Qgk5_|Ǭ^MZьKWqeJ/Z*n&E}*v:FX뛿N>/誾t0p3d*XΒ<=ĈyIfPOHdiE*x:v<5 6~KY ۜ$ܘll26ɮ \jxLʍ6oȪ+y^Awfffq[fq״yϑ㚬rȔ66{lʁ-l:|G;\۾8q2/]dgZoQ蟆 dYpP~둗_Lz~b/H.-RX2'.Fܺв"YQmWݣ!D> KQt ?>e鷰ֻLf>/.V.-{u: ^PD,Tt/ _/'W u-GysMP_3E~ DeaGwp9:رr8|cvg\0F R1ԡJyDc'sԡJW{i|?'gݗW suP]G_Cb״sM'TbDz&k.}{]v)LwUexi${k'Y{=IQu@ĹDA94~Dz&6^'mFee5zr|7j4>5uJ ŀI{7x༓ hkD[7jfW5sf{yF%I>ۨ?M=-IlIs/,j7itz/mڤђl}7,]I-4sqlF{|Û4ʽ^ܤ! ˍ~kFvFbXn7Vߪ.lkUcoDo(DlU7yɷVo9ke߁[5*KߪQ~fFdx|'lhhTYJl,S;wF"5Z/r۬ٷ͛5ڏi]{jFwF7klFs|m֨p3ml|:7uFKD[4 7^F{s|-=KhT6Ȕlhz[kF{lFn/mѨas|lѨO4:tF8ˍ>UD[5z5ιs}Vnbw+j±ݸU莭ݎrr}/lOћ[5gM&\_6m aݑ{T6~fl(᷼!myEXDmic4j4ZK4[ަѳeTG4olSn=M[8+y5z| $[#]ɍ N߮4wv%߅5:y+\]JkLscovVl="ZvFV'$[}]m w,.ސC%j,w&hh4}F8_ˍ~kߡQbF0ۡѹ۹kh J<;4hwʍrU|vjt>/>"0AizŒE]GI]0w(e[^4gzvcP,dqYąv0@p'qz&:PŵV.uҾ*evj4t8˙zcjF%_Nn/ީ}h$qkvjwj[;$X\J-En x~6كD|D̥yI1;5v-,GqUi|p89JCZ&SqZWVmMfWsA]QW<7vyI+jU7)*SqjaGB `=7劇/5ç 9J=pt1srhK+5,nK"L11n9 O^tEW1-8cɵ)z<q cÚRh2W]гD}7 u~9X c4h""䨥˄҂et qb(%~Ėo[8Va ׋TmRyPտуmyHbID};GԞFE % %Wϼ (eܭ+P }N^H!/--=\ťEƋ!(='RN䟇?!E4E1DCD{(ڇ4Z`y'ci2w ǾK՟] '&iͿt񥓇ojoYL {YgGe"uwәG'BW?_=K'υDI?Mۍ-5um-ֶfSus1*L|ٷzV[}܆VG, 4iYW=_WN=@zgo<諎D#}^K)@K$BBD(M;{$(=Z=/N"r#ZڪkϚxT6C:d 6qnS[?9к@ 2xi.#MPw0GE'WihkM#2S7-PS7h 4k055gmuYE' mMV3΂u4k6Hm[MU S`O3YAgp̍[HW0eϐn[K -6ZOPX狐F RHC 5x3c]xNLD},K52]iMMh" 2fõ@}car'[xpnWٕHGÌ@rҿ2oJQcv|zy[fW7f 4yxp𒰺ƚ9)\54mjjln 7en: 7 q\FJ ~߮ѩ>se82H' ms5S eؓgUW˓:P7p8zem m͢qUc?7nմWȳY~+XlZ83jI4ƙmuM3k݁խ M~T0 TZ64Df`vP:T@&ƘoI=sc?ֵRXe8[D(X ̐e%/CVM}ƻ DS\с4M+x]Opf߂q .C HCc:N3C-Z QWga-ښ~93%kmP#Fߥeimz<7]ބgӠ'f|?363;ړ20V\{ CٽphQH3|3iI_O361C}Ͱ7aHv{LR\)R\U8?3P Һ@KkA2ilZ =LYyU/hkkhlb1͍sg˘l'6fW7UHKsB[`P)5sQ3(V"]_ Tc@95us[܉fh7'jfW7˝9CfZ֨ imeEoXk546Wb46>CDZ)}2ܾAv9Ä3bY\075j>|BX,휥'f"pS03f#]a}>ys锟0?iWxڛ7GyMѓo==ٹ_?=>\,K`q ݥpl]DMyPґ옺]ؒp, 7w%@?|v-=<5hEOY f `,$@?Z@A=z\,'o Ycb=2o!VqP[ǞJțti$/Iy7xǢ0hVU9eE] })Hg\_T G{g>f6΂,y9l;}s]8t·PX[#. V~/d9^5-Wl{iq;W'=& n 1m{㼏:sDgf([ɧXk{:y'Raȫ4YAmsjkgIV_Lt7l,լ ".W@kN=w9.'N{njbNcN< m'@'Ϭ4E."saڧ<\OZrX< AC4A}K3yO\w.sG:w ~ @ԿјBuҔ@$ћ 9YhK|)zg9C.)ݜD^-j{jb+CU6l851VN `UN?R۔RzۓmJlgbp#B44V7fKޫs.4dd7ɚmpe׷ADCV(V eۡ&Bێ6B5d(6=ǻYi l3$KIģ}· 8jփidΧD>([W>v '}ļ@Y#J*O uF{J+zZz`Bg'r>sR]v;R5O..ճm `N嘲NdTU*H vɪdžGkYmD8>Gk|q$̶o S-"!nm9!<+w'2Ɔ`LmoǂͩDDZy0-}cAij7/8|78‰e @)R;T;ǖ~wv+%~SZCz/ףISE{ b:wN'^,!w4Sc]}2+ ݽDṂ?gX:w@Q wQWRaD_A \q7L5:R6|oѸ_p^vl \M|EJW4z~iv/FD¬OW+2F.R?zvzd_,9yf DN2n=^YZ9g(̥*E p.{E#{6,`+N4+ݏ%7?of10۟Hwfa7%o덺3FUlȥ%^Z^/YӶ^R"o׸x6tXC&$UQZUQCoy~${w,_^Vx17;ǷF~y@coa#9Wh4C4FWH`{9^ըW4:UX6 ˍ;Us STWi/FmO%}nyzWᓕ߼_Uɺs:1=Ji9y[r}^U^h~Is}/q7|U=~5wk}AIiZ6Zˍ/F}|XgÀ̿F``u)G<(VBș{P;`|`|E2,yM2 e  t-#!pP E%"/Y,<)ADBH : [~fwp1T8y/^шw ;+ۼ~C%?^EfMf,i|a8LbMKE.:Nʣ#~{N4*\-΁eݯiTO^Өn6}zM>o}FM^#Xsw5=A5%]Fk7>qkr|_5n$rk$F:$z}5ɍ>qTDEcySIy#8usiQWѻtS7O8\wϩa=@)5:Ž#醝L5oh4`(6~F1$u)%ԄO$I]MFz#J*/Md[P6_)Km.eDlдM!Ҧ5MY\.(]A! *\(>}EA(E@D9s&M+>3g3gΝ;yO17 h~(7.[N\!s 7n".(E%_d"o-1'E_ӄAga@0=T'b7 hY% 2|A*jd÷߄:zZ1+FBǦ1jb5 FzsogN\;ޅ4 aw4œud,Q`^yq< =De5^D&2!یm$q|ۉ-x@Ju6NܻwD*mgvX6cn'>۠`}Ibn'ʄn'mR0b8~nlj7oiHWX=No&58V ł7ƔA@o`7P[VhëzvcQ&翌f8ʛ+7˨S ca~}SӏQ!= 7JE$+DBI):?2G 0g7?0I[LƵ3A5V K09s3A諾FhɸLo1p1^|jSM&ʈx)L8p5˃h3@;Jmv9Dgl5q{8qsM'J0unĽNьF׽N„!{( q^'b”N$~%^u:!֐*!5uDN9q2ωjUc1a>'JݘωW0g_jgƪ}N̄9Q,Ʃ}N\lN eq~'3N}Unx;;1U+ƋXÄ7;Q*w8lD5v~Pj7:p 8Zbpb)i|LI&=ȭ˓HMIL~:m!ٺm8*&YںVp76Z=Ch&f2mĴW >1M58-eT+|"`Q*kH< ig ]=8}L!aM>\=zc<8IK:7Lu9\ w6ؐQLHϻaouȉ{D6Fraf/8wV@bzm+i!'fnL[Gnc!'~.\FN` (u؉DO>ҭZIxGNY3+tvb Y!T~#`~Гٱ=qf,%슓 r9CôX'C;UINu2 <a 31\qvu2KBI o>ExwN6ٿjW5ݯ ڣ~|,A#4v'ܩsR w:~)f!\'l[i'k|GG(Ϻpqb֍2;Di5ǵPB|8Ί^up?-ͱef9Nc5Sc5 cîk~u e߸]E=4lZSZjZ~Ҥw'c xpYŃwlƭNL(C^y9)&V .o%@JUxr' X~&9 kQ./@\>+lRrS`gJQTMFXs*/_5.q}Vƌ<Y-&2FbkdI{!6,σ^yN!.4`\z'òB}W`ȋ>\L9ViDN !6?D`YD_Qw)d )U~XZe e?V_ApC}y=ٹ>ZR 7XwY HHc <6rkuȡ2^iQϙnpe-,_oeU5g횁КP@a`5C>NfrpfSKnh knP֡7lYG? ʺQW ="B/ʺL8;e5R+. <SSAY![`' +/Dmʊ4#2j;HJ-7*h ( x'xx .F(]z}}TV)b ήLtzMq6>P7+?/Ͼ=`,^)&*mVz h~T]Ujq5-\_6}K~~Q!ʧ)UmtpL9oNy33x B_ƚ|vt{SU[[wrt]/2W ZTO($S%>ݷJ"VP53ۚLOhWݮ:W}^2˄efubXin]+2G[ҳ:?P1#4SYU$~ГdX.c=4'%#MdΆd%..wwV^IBB1h4)[HEibF'_3,. I9 s)LycY# 1| M" #W$ofY1Bw0 Ս^ ;+b10 K6z .zq/Mnq/}4FBE)VC.yaHԧ x 0{ cjN2on<@BB)ЛJԃD`sU=أRcM𬙠ñ(؏5R(8[b@17npDn>1R+{ b4q@b*XUf 4VBs1A6VҪ5/<3ŽXt]CbZl5v6VxMi+]Z,BbA+lP3lvLGBڦP.f-(YKH!^PbvR6VX.֏ $ѢB&~=($+$6=Q"7Mԥ37:r!n ߘԡA UOVz!@Bf^O:\zOL ,7QSGO yr1 & oCU }=y^$q u받ɰ"C$SiDۋ\LZH,!rg5!~XPG]h2zu!!@e>*Z84Q9Oq^T&4sȠtN 3rC2gv0?,sz!Ga5\H(y: v[ z/(@`,mયiw $iT8ܮ|HL|Ϧ wǹ?Bx=eAd^k|К{1z]i{|l xHEphP&NM5&4UXV㩦 ^J> o\e{Oͩ\O!V4$IX?[ٗV4'Y49yhA]x޼ i?ŀ lӔVC DrwHƠ'ytW 1z66'@nsॄi_o!_ طTXna_4U8.ۉv㧦 < Mx~rἹq?9y64 WdXF#M¯\HC/TO Szc$-dKCs\PԐ+ J@BOF7;)$oѡ?b ftj Fz3WJ dJ-w[.q:y!˷yCU-{uWվ z0fc;Hlmlg òmOoeb+Cms8Q*!pCVIپ]̈av-a`3=Zhzǎ^ EHp*E*? wHJB*x ǐҊ-$Ztl0O]ZJKD-;'I)JȇJ*0n7`TF>(|a5[rM6s5d@E%3D24Ą7n(2&f*c\lf %mM!H5xϪՎVӵԢ7ӎPfI nǔʭ;BK]+Mis4nږZa~= s;`K5HGk0 P/&AiWJЈ!1z#*tĤv)7B,!4䅵Rk[U=4P)"j HtFT]| PhnJPy.B%((h#3z"*1j RHף+V)DWbjťaeo>)Iy[aO/ʫ>2gXuSH&a)XiEZ7NN^K~~nwʝCmn2X-{J.@٨n8$B)4$("lM”]Y1{6 *"z6 >"$M<#""3Y|^RŚ)!"jR ߔcvr~SfoʋC.3]S Q j0BvUJڢV Sk*ajj%ZKG5G5V"`j#rh@/žגپѾ` |2&:E9of~S|FdMU3jT߃5oJ6fJYCUؔG#,HU:|>_}fnMc: 0pī.a oEs86 c2?g*bJELY^)k1n"*aHz*af,O0kL'Tgxc򳣌d?2,Dj#fAEӿ"d _2E,T+ě<{? \ɩG?fnyhbd8 }oF{Ti") 7o_Q)bSU1"{fÔ%/Ulye&ak0ݵڼvS.be=4 9M0emMMZ)Skb65}M̦ g潘΁}2ɓ'a5&g8ГS7@XJn哝N/_Q~f ]U),f( SoV0mf( SaDLcMiO>f~s?9X@ MűZLQ~I)q(jͯSYGtS@Q]UyЬCEaJŬ#)?fuQt:ŌHJZLiK]KSjWQ|7jSM.H(;(CCaՈDkFfJɁNj"U Ds>Ь$F9y;ٖj-NUc.j8=+]B$@ۿEQϲhmYFuQU'ŪZNUkȒ; yr[d leRI|`+"H1L5zT ;sСVT>t2HׂEL`y=U7"-d8pt+GDTXk|jDj]jc\WuQTWSC;skj5]hn-"Toa-"t2~ETOֹ͔=*Wcm^?zsإ.#p/=b]xi#}(*G]Y N!.s!aVa ;=S '>lR{/;8k?[+?]p'+oaK/YOV.OIVx/q9B\*kۯszRD:MuO[?K뚷_cfBXn+](Yaӕq$no !ؤ98~$pM\<@eR$ M1B]:LJ=WQl}9j}xC cOWpռ,|UI=a!p!x',ZPRns▮PiTKJ5 ήHS;Y5f-Yi@b*1.NQ]M&E\O?;EaUG- Umڡ \ΐø?}jў }8qh7q=׸0#K~ɡ=uZ2=^`5 |}l*T8L$Ɠ\HHN?ʀx8̧ݗa}\W+ G eĘ,,>nFÑG\h:<{kX{I1؅sI.$7SGכ שOs> Pn6?zg]SZ%0U`:ϴcM.ښ C)UKQ(9 ) o1}،$dߝHLkl-Ua=3]2Mk8+ތ5ڧ*4N>w[]5fĴ5MU&&GqvjS^$TݴtXTS̴?UoQɴf8[)L%?RxT2qc+;)B[g1QJa3=Ja[XJGfO+BL 1M56RtB\/a@bz!֨Za019[+IlHkP,63Z+1O ) ^ >oV~lP" Z#gWː!~ihpO {ZGBKZ)h ?g4zPr㭩ϴVWxF z!?@  A$ q$~|^ hBB D%ح2vc ںړ(MNHjF!}N6 Y,|Gg/Q,H5UGKmu0CZ(RDZ`Ne;Wv' (%##c1 \tp rj*ϓVU&4Z)I; C`S{~Ha~'õv{;lh>tɇ)#im6 7!~Q(ޣd( >~W#l"eQ$BFʊoL{F]wz?Vìu;8F!qvq[;Y[/:}u[ج;Uy *{q jL8>7;YgV9{&n-`R/لWU7|,3+B_VaXKk*㉶ ҨT jıTHT(ŌgAa !iڧا:ӝlw.gU' $t+*LL1Bp+P[՝]?VskO,W|v -v wt^|4BdEy҅=YlmcҍY| m6P8o 8hxP8\H(S9u/;p G~Oa7o/ϓh1Fskz|]rXQY„gT=\H~<45'ᡞ~Ya*/WBB95:*x^&cGhnv t,wwm0VSXOj`B]{S2NlP"2e¿)VvǗ$"9b!ct5iH9_6.npm40^^HLgݰ^a]Zp@-c^! mjfbZYX^;fƒ@bZU^>ʉ 34S@bQǨAa190UjT]8uP(|nQq!~tKR i JW€6@2mLp}? / q@b*w%C8Aa&boP;,N 邿ꮘјD .D=Ssѯg' ^Z9?=( tpp EuD.72oP?-~x,!.O+$l pݠ0j1rgI?Ki.'"]t=~NVi k Kѷ^ 1/aY teZ?UTX s0U,>Hew!6̸! Ery ӯBzǭʙ ʰ"ba K00a4*ҮpvTסЮ2%GZ G]7Xi),2wvTX :o5~hM="M=|{u n?[иꏫ eXﰛ˩C8hz;\J M {۵rO،oTF#)F6c GFw#|-%w?j?1T)7x;]\.~ci{؝= a0 -§LO4-?ng-NX?6Fj{ZvaM8U68]@Gl.w h@q}KbLSkEGt]&$hQ.Y|^& RvB+:YGT=2s(@'qH8$r!a 3eS0=!/dp gh k,QKfZqt!~/7*ILṘLж5⤪%eu pq`7)Lb&M 9ZCOx&F =Ĵn}qf&+%sӗvcFW<'tne¼eFXa'ѺCʼn Ӌ3x tgirr4]~4 dj1WC0 S>FLƯkBF4 fyKe™.%~n4YOfjygBtntY!.4fB!ۍi sE 1=0ݬ"3N!&.4ptfB\!4ri K>5JSH $WF4+M"s@bzaxS_@/|M{z9fթESo1%2?svʥ90n&EܢB,EEз9E!F+an4h?~i W#+dØ2qf)=>s_5> 4i%o $%?;6i wĴaʧ$YE 1quV:wV%Y!Lzta"8C?|_MLU`js}Mw:fA3 %Mͥ(J[+IY4wQh (lbL_9!]1. c@Ҵił)xS*HF~P]{ +6)K*Y^HB3$d/練LePL5MHLgqc7 Tn bOMs); Z|Ic.cn7+']HHYJeowSG+"=20ryX'oңZťgnz6Qna2ക֧SNsDžDUv4c5Ώ/EbP4¬h-~3%+䂾8gl&K]oR ih[P$7=H.h|;cty߲p1zJc6^n >y1J ;.6{BwXCLL W>H&S&ZɇܺǙaHCDqޣ¦֖kHڟvV%ڴgzp*| FheI+ncFw+ m?L Uw\fB<'>uvWLq=֚HL_{(L]{(LZĴmdPp>D>롰^iۘCFfzBc!!v/{(0 /q@beCa!3(We\{!fJE.c- [Z˘zDfZxz!6ᇘշ(Sl  Kh1iޝ2|`40F@- y cċ$U\IeeVsiKmkSmQS9_:m%;4%/<Ω_a9ifBxe/[u"qJ$D` *աG+FUK^ዕaYeѹ2e[owУslx1;TSuoN!q;{ <6wUrGVd`򘝚)Rl+vnbm8,L^6w7<{^;b"u @:KxD\#НWb߽͊ $НECk|t@w^taK4?gF1Lc&xa&eBM6M`O ̈́}voɿL4!+aɿ\HHldju U'K!UcL>ld+/QAX.8J6E-egBVS+>9},RPd}G`9I]S8C%]vLIiC) 7D3; ~c]q=Y/3yzd)vM.7aMi;}meIRf-F͋">!w ȀTCwĠ?fr`[,SiirQN_ ?{Jt\K%^i뒗i"N<}VNmnM˦Z1ak4DȍFx]g8*$_;KWު'26e䅡e–!:ܪs~$Ӑ1CnU/[[h3GnUx 0U>VmkhH3>U`PM[z/ $#*\\h- s_s"vKot@~5GoԪF!&fѿafVJw $G{+~^0A'q 1 _ 1H/⌃>gs 1[ iZg4Mkd.6xJM?) bb@Ҵ3x646@b:gwnfm c~3ܦpbm q@{ѴB( }x}_)BrmA4pdnF?f&}nc(b_*]Gf"!Hޫo4髰NTjZ]WS6RgH6X̾ ̎S*V-cvZY"M/$?Q_b]忬 -a,O߳4$oxB%TERv־"8w`/_?1ڿ쫰r-Mږ^d1qD`jfѐ]d4pB(:q=o|+†HP*$-R ^Y&oIo?mN ֱ~ ujs-C3Z۬ !~SSGk}[ i&ޘO!MJw)?jfbz=䉉څ`Oah=ͼ@ }`fWdtT])-Lq?A[[)-K0:+ Ei#_%֒SY pIW(bdK Yo<+ q@bz?XOW+xtF( fN}x }CAB+'C+Lg  rHL+LL|.>݀wZ=W-@ )W Sf!|+iHB + #!{ $W PXL(!Eiyc4vrm&] 1}<@!m C@ 1ml`|<@a"3X$m  c/~T߱;};@rxZzVyJs7pN'̗Bo1""Q,o.R -]wJIwiF ӷ~ nē4</T}!Y&G4Bz~Rׇ6YIo!imMK'V4j’hE#kY7)}zxю.y{c@WĽLO6^.>4Pa@>2C ƿ*l"% 1f&k*F@@@а Rx.$E A Bluݥ n_B|D iZxr4{d!~+6443}9Hk"4bc ?"s)lbⵚ~nh0.p $= +L}+@b:=X3;Xc!:ө }L>-`q@b:tƒĤ <ʻP*̮]>d3ߏþbE w,ƨT_i|:t(K;~ETRB%zsX\h0zνʇsYp*acC;?' /na,tQGr{r@/r~~K lܚ/L=A Ysj3`?BrFF! AEz{#8 QHY;u1rBA)95$mōCN3ӊ! #8_ 1=X7DuiBlةRӋ P`B!>.4-ll UxUxO $卍̡ ߓqCnIyX 1nlĎPxC*|Xc4Ai8P3a>%ćF(EɇV %%"eU| [C>lG("=X pjL8OJA6͈t9E3j\*кû[鯋SvnĔGZgr)”m(DPM𧐑[TX((PZ+.l#h6hm]bNOdHrp/皰w\tp svB q}. G(SBsP lC޶B6ˬꭾr䭾Q+Qw$L/ Uw#C!KF /`\r:Gk l$JK,CMY;B<+\{_HlsTXEHmO+.(9m~H@j 1)P B׍t#F#rc?R\"p1e{k4d1yT`(9r){{PK,f?߫;aLr⾐WWG*<(7z }^ᮐra~oL((4۵=R( G1Γ ,y(ц^,O^Mg%V^-^`~mh/;1<@N,jC5K۴pVttTV2J5AQn an~WBVmBp+Q<)p0Y|[}s4P"Xl3id@xW݁*8 pESt?G)6J赨ʏ 8N)XC~UcR2\l=̿#C/cɁe=v$ӪJŏ'r_wcr!.,騽,= IʹTQ? /?6k9 W\CP #Un"r椴AhDhrn:JKɐ+ԞnF),GP3bQ `hE1G#~ĭCDƇuv9h^9F#kc[0R/H>|(\0F)+\˼!_SQ*3YՋxcqOSc"a[y74.#>C5: šH68Rڶ E墋"G5i"sX`1  ͿTuJBL/U^ cbO`TGo|iכwyZk8/Vqm.rZ6]tka.kcksŵ< M9o5Rqixbk~Ӯ-dמ-5Ͱ5o!k= iFG35ťA"] U{Sx^=w'*@8rLfQ8*:)ʻ kB+}$'w7P Mr^A&V {NAO$%U 2sOHҦ*/>;} XhD*,{7(=VZpPH'9{s@ϧS4;ė%6.]|B.-bE> +vt!2@6¤@~ʚ1VSJM+N1(~P[&)};fA1Q 0{",@nO˾,rSRR&2I-RZ&3KL rE’_0oj,OS=3MkUQkuS&ÒD[`_ *[QCj*/`-^-QC( w'ǴXzPn 6c S{e'-}OVV'uNU0/496{OtEONXFU:&FrfkgZɋqLL wF/u=rgBX&TV..|])wxuL<r5 TE~9;+(_w@o?RtDHqEOKi-=s}/KaVĉ%57+ TH6# qV'4Ve6H'nJWdT=N~(kin6Ԃ* Pֲ s=c:Ӊ\o'8&4 0G4L!З/(Eۭ(( l︾EI|rT'S0XS*EU%⑬ӯB#B=UTC>|Y!YKYmg-tFta|U|9)̗>!N! Ƥu Vc1:晘l֎p ˤ^reY1_D[=R;r_eZVV;Mط ]eqjnͯt%̄n2;dR[p]aqUZ)v QG0 ' JIw`ArL )Lϻ Yz? =O0U*<ĊI:"4an4&zОKԴt c<`%xk7BcC%M } nVK1bt2ן>&&\owO[d*寺M!^+>ZV/D%B5@OC,я KXǪl pXʭT]WEyԁ[[1c]PMW~PxBX&N?=yǵF?U7Zii !HF6R>VV74DTЅ(&pr͍8@'P(t^76Dj虛 K'!YIX7և>r(]L%?(,50Hڠxzj>{ 8:oP(| WҺ $OZ&&Ǚ 觕>gF <~FzB0M+pfR5>/S+pf,`, ˜_ W0 a,Y ƴZBaZ3 UL1y\;W0 Ua,Ycq0M7к{LTP~tQ+[o:4Oh+rV5s3|҇A};\n٨p82[ e* nTX6Hf%~F)$8Q+6)|ʄ7)WoR8ɄW&mRjr!1mBZz ۤP,n 1J/]6+ wa ڬ4AQ&M)Pι-OpX(FhDxpS`ye!t?/0޲36VسLVV ?| r M0t0}0.{2 I3teY>y+1Ԭ$ı/˜OY@P*bPrE/j3caQ_/։whDӄ1nW0fya\V&q!ӸSkxA+pfˌR CL/$PοZK1@9?@9߸>5_0=咑Cg([f[yWg*s Ke/BZ[7΅f6~I̅aBx ׻ɔܢBO>M ~y3V$iтU g7I4~>'iV.YcphjU-jTA)IA TiyOR1咨ʤx>&WMTdK7ǤmUH(PUA6) \J~ Ӑ1&\r!:9Bg ^Sg8AxUwWG81ゝ0͜ U\5^`QCaERӳ+v Lt aʷ/\G);XIDtňu”`Y.0cSֱ:JхfΙ kW0 k Rbٹ SbKӃͿ4JLbbO'PboXID風5d{r6bSj|h6Fu9E~3 DIT=&k=|VK@{i 7D}\hM ח^+`s5Ln=@ѷ+2em+;GTM91e࿧4FHODgᒿ!Ֆڵ SsN:,NX*L&d% y0 K]xXR[+J jJݵBTv7pL]VS3kE5h@ˤ_6(kM/ D돫ŸETL.5%נȔ}RDѢQP@V߯֡Ht3^5 L[DGKRBE$S]M; Xjowո7s*+RCK }4TE~gntQԁAF}8'_Q)fM4KW9fpr4%\ԚM5 K[5jmh[UU+y' mv%0\F}]t2>X.Kx>y5ǟݰީTHJ~.hK $ҭ0U\+ mFt w.y=1t'TPǍLwF"z5kgСiCD(фnYA\/Kl@6di8^m(^6p#l$] ǿRɲQt jIBo>0'B52b7994-H@WP|FOh_ϮV[4r#$*Ǩ,CeH;`kByI vxqµiGm.Zh1~ܥ0ơ] { b 3vmBH4Sn -hs $s+-ư 5q[(IZoVݔLڭLLL1VX nfqrXctޣ cUa٣0x60O }Ro!ڎc= k_iHL[F{&2u{ @bk5FUL{&m !&ѝHwQ8&>HO!NtYQPGF1ZzAAg%SBcrWLv}Yr/]4)[~+i!uT96+^Jae•<5(YAX͑:L"*/ixlL Wd,5fQ LBcwuPo C׋AM]ﵵGE:"Wd h0./\z+Y(m1ZvV*$Z3S_U;@.KK+b%/Y rQ~KZ|G3_Iۜ{X dbDZ`(!4A6!-fjJ;G4#3Syp`X?uۀQZ2C#Fl^^;Zޅ TNNJ}K`e=du\5JTVkNθFgiiI@ 5Qp杫X%A-6\}̭| !ͥ2L8-Dc{CȜ>jSz}txv qHl :JxQZ2;T EmQ;,O#zǭtcI)#HXe^u&+B.hX&1ٗ nb9I޽hR3M -d|b ] 2PүRZEZ "YX$4o .4R5WPTC͛%8P'I$ ,'fg|1} s7y?s?.pqƄUnԼg6+Qp RkFq}Il_+ڹ&|U#~ /6*`; ;54W2E:vd|>a i d` t nR# L{|}[]!9Ti֧ur8; b~k5k>󛎧L+2:B~ީҲmtWQ!_U $@8]JWd) yeyv}B711ѼFj?GCP ^EIF4G-#{gAA :I{=S3eɹ?g+e^$ xrk#[HFg4Kx0Kóic.ثiz(YR-goDwF:wFhr32`=JFԞ ~{˰I >g0s5U7Mp8$DK94T7:Io2V;Z1#hBcǖ@FCٶ%R06י5J2ƨNB\lN9^wt՗5m( 9ɥGn#uܐ)]dO[^v9aalCOV97đ$ZvAIi(v90ZV %UU7"4?C5DZ{`O@x Uw{A:ڒo 0tz2mQnaeZtT%d_r1Ŏ_;P_HPޗ;RN+ ,Jv,? (P"NEQr363 B$vEG%zC$rcvߚZUzWZFE)͐+,{ҍ 9&@ܨ>JV{T8Kw3=RK#G0czK7%x,yIÔ"KQL|;RKN2bbq9@iDRo 3󾟲Z +cp=h0R<OltW\Ɓ Ƞ8#2y"& R4n):Ql} [>/)9.)5m֠{V#O68j}4³SNZ @I[*K*^#5Ȗ< IC+r??#m-AN&.Lr^k,ils1c+gC7n Ky\ĸ.ӎmVXt(FE9F譝D $h(|Քg7O.?E$؁pŎ;-IGmO,J.`5XIS#5,P?l,1aIuuV.n`MCcϊ4.Wh߭$|1kupk2_P?0IZ"3P9k{[6vS VJa|A6A:2{$͆>Ůؾ?d7R=wbPw#cُǙmBvόrj`7X[jZL٥)x8$͵d{zik9 ̷W^_TGQ}DorC;à3uK W`*B!pQȿId埕iOy mLhA>2]|pd/5tҶ?K},x3p- dj42;jAw^j ט-^zlP๠5y&x]̎4d\9gr& T7`[57],H`4F ,wqo^LjW}ME"h/]+-.;WzH +z $ 7$9["'` ƥ\:(+6nQyJۘ"eD^Ä>+΂We,e*wNϱ \ }٧6 QՎ7ICs0SOǼ};҅^"վ DA u_Xd)E_靿X:x' .wv]PL?UtUP5=Qu.%UAbKS+~9Xhc3EVȹҴ\W({{ౡy"mi(7Na7?},jKbsס9p>y_3Fge,X-9П.mh=3dJVf}>H Ǫ6?,x?eYzJi`a?3} ;ȥzg\2{T萀Lb9S{lUxt(Z]&J!&7#y|GБf>" 5S^T /!]MN:&6^l' ľ_ Iz]Z0b^"y?;p,4"+ 6B Z#CcCW!f1)"Jfa]3Nd:vN(R`D%:L AdΊ S~C};xYrE{^zgId Vsr'يt1 VIQД00o/ ڈKRFj؃q;D aJf2yWPİ:ⲟUWU._4n}\ZWdڭ:;jvIuAQ"2]n'۩6:ϮSǼumm7_(ϓh-],"[â]S*no,4cUp"&nJYxF<\>MJ[ }JABۢ{z5{A{4֒]͒>\D%ZJl*h iWO5"Vmω?,$='w>(-һ:nETe`TTX2lUOLteDJ̍_8t4}h]Bo+g=I8"k}}4[k|R<ӭt"֤rSW#^nQq[.Sx*O1G/)h+)Bz@Xl":1JwKEk;79l:`j<љOKxGIZT.f&}E˅('XӺZ2,`D%tWLɸRKG Evvk++K;9XzH!>Y&\Lf't)IZٍJYLp]&|4,$G(~ Vtxcs %HyU<-t3,{ma(5GtdlnR~GSB7hghզOGR2cvŢA[o:]tWBO n9`~2bS>pcQQKS$0*n 5XhB6+LBΣ~̧xq}6[C` Z\rhMƠJ>gE`nTmOs{dAV~J S\TzcihZ5iq=dWa%&`GOH&1D` eG( L2B=gIRV+%t }u2*yS4saYYTO\]!4.P4o*;^=&Iˊm\T6T% ^x`ގ1HӅU|RQ rO06ҿ>P|ZLsg(bD Wv_:"c)4t0.KuOZlb/" '$i?66֔Փ"6րy$+TO.,?5\Y ǀ 8-1**T8Z1ⱫޓS,֞i#0A+ޚa=ȉ Y25ٙ}B&\Tō'\UTVqϨ;ҧgSTr\9>jW,˄)iuG|L&1w=w:?/֥B g;ץ:&%ה "\q? 5',=UClNpzWx<:V\LYǰ?6"3'“ ̻iAZ`KRuX$'p@)L]•caHh3'h7 S.Qs~pfF}1"P!I *k t,c0[LҠVj+L h5z]F=4b>QKo2 ѢJ70դR 7Kj 8!RaW?أdp|`5+^R"tTIՏMrr06* B*%*% {y>%C5@3pH{9GE!|]s-ruG}5p<̆4VSu~@<9|R{kA*?m} */e̒'IQ:^ O2tT5z+b+Mz ,(1YL8*9rJZ- 8s$il w`lW:hWTdJŨ~pmePwvʡ!Z BWSc)q-K ]]>B}'(}L_q<,Yã'^ro."*kn!I&\jߙj+ף+S,hK!L7O0Re E fofTOXD>ɤJCgXj&ƂC<98Ici ˆ<FQnm!aբL瑐y;et 3̽vE_?K8aV gx,E,i)z(L11 6,NӢT1oj+ S|ɪ8@w\\Ad}t="8/csUvUm|Srf.xg6Ţ˞X7 iX[c8Tc ȵ)@8.oz?H4(1)a=JV?ޡ^C z:}Z::궻u]jS][;lk68E]u =rW v&&9jdѪEm/Cxz:]xc=99[wYJDc˜gj\ [6NSSÇeCʪ/ ] MgaCaF<j#0bumrݽP< 6A빋Cb51a kTM.1,M! 6 bu|OF.C8m̛`̊ɾNF1(5|.͒ମcr0ۗgdJa7o죯^W/1v֯` [k¶;O ee-)~qe@6 GCQv|6aw̩rfwxrà~GsRFpUCJ|nҙ, ʂ1דch5[rKΩ6W|:_]_iMiW=jTD\bb׫A# .7{/w2͔Q"F!8|t(uoiWt  {cɒGι^R{|ho-3m>7'X4]M]'15zrz}Ih`Iww?+],\$؃v 1Znf( T],?YTLd';fVҷNۿy|c}kn&%ȑȑ:S+nuޯ*q"D*.gzM}e+݇ƿ{2]n_7ZZQ#*Σ}Vj 2t~$/J%5 *89 +&$pyJ4VhSEi_6)->݌|$D.ivqȄ]!"b>aķD9؀x rvFw{,bٻtW{o3D=@Ƌki/`wEݺǼT{EK( ~4Wi݂)vKx\8cv[rS+xŅ% A(YG0C`wbk"]zwKt:M %>!ssVH(,L&` Ј3gI%^ u}HxMo#R֜4=a[W\5Ck5n8.w`MPi]zmjaA!ENMf0jk*ҰԫZϔ^Sl&՞Dn&uj*njY6gi`9I| 3I6|"%^_Mu;EDcN=كfTՁ0 `6~=xqE8"6ؒx6}Y#`jM0Yl"TB%=: }BvP⇗x:BҡYd́ccdqECUА2sEwz DH:|EQ[U{-FLzժxDQq)SuκBM S b- d2S䫵*l\jҝ9HUo'fΞQhT+o=l/-"#/|ʘT[b~uw^־Q Z@gЭzyȱ0)ΦW ~{a"*ֲv?N`|&rkOi>9_Ю*S g1`cĐDp\2oG˳2xb:G lTZ[ydke9ewWly1}D,΋#6Ԅdxg@< e 1u P I!X Fe]de}܎w mFu?*4X*ЮhEC[ĠQ֋ƪm6T{HXI8NI=6H⌈CSk"Ń"󫦋&:3{N"ΚI4N7"׼K{eC4E8t+NpN'h 36L/ FS71u.9 ؀9NPSru$LCgsYui<#ZIwe{Mj1+ܪ t$lo{BDCXLnV=-+<%CQUJ1!dob=`BBї*4NCJQ QHihɘ7McSfObsޮ:3X[@K f@/e{jdQ.La&Q [N]$, 1zbIz*=, 'R^mՆǷ:B@j_W’0&(dm&GDn.8BF;]d+$׫ *@SLJqj|ʼc3W[_Rlh$ڄIUdPЧQT>TdugqFBLp|3W I1*8%Gn^dB{ԦC(=Y=YaI=ꦺkde,V ->(L+ZOn=F(8f讧ҹ! e|~MMw Oʏj7Hjj`=9a!d@1JǪr2{Ob4KBmh%*$Uh<ࢗ~R_L%ی,>˻ Y*i6 Nn_P/@+ki:niULwu_#S wF)VveTH_UGiGrؠED!TKHO(/ݩ_KyMo]YA=xe~eK ~HA=TF߯P-Je) -Uu<1ȳʪ9͠w$DeX\k>e _8v^̶3gBUv܂1hmR~9ۿ4^̐܄˃;uD_^\A~K紪݂*!K*+^DU8X '$ kN+nO >auh*hcgoٽ0l|Tgؓw<&@2Og8/gps/?Ht4 z185Kδm8$)a5g&iei_[\keIԕDfIe<뜻dy sxM( 0}ŭC0fh-buJb@$H?xeA:DY"ʯc N1{ڍכ(s7 U/3jpS//+#nRcހ)IŠ'(0ִ<Vc&P!H9d{/5@CR6FW.3_ޢy *ILH0=1O큆xvťR!5R  0 s{tBb0INTnY,6#%#8ViW7ˣbGxoE),}n"$!s% .Yjet~TϒOHhsG*xػ&T;I`فlЌߝV 39MŰW6(}K' c;P3J2sfNK)7R  ZtS+g0z WEF|R,Yq_6[mu(´>]0^((_I,,c`4ĩ>"<(X\wuݿQ sÔͳ k.(Fa\Nq@J6C٠v,} OcL.d쏚aY Z?p: :@2q+{!Ybq[0ߣ;F@խmg4_Y[{^q8,?ykOwOi|0KB+$FQ {l.pL,ђssH&:pq8&NA}g1H0;la5GzX|:dtǵh(6̛8DݴpGF҂TT0*>6G0*IJ>f0؆G>IX(O7cُ6^Jw 0l<AZk ($f|5Z*P֪߶Kʽayeb½Vi[( DDx RCH_#ҽ$h,== 'F+/zL$Fp7F"$5`ѕ3/`ƺi^?pfEE($v6e\foȓ%N\$Kj`Hۆ|kќn.N~-; F0;$$6BMD=m~LvaM"Vmf#o@ uN;/O/I%tSşv" (\YB5sokOpUK_zje>h&^ 7]Y_JqK +#ȴ4nWWG|zH_.j(RP()g4R5w!_ޑ}WfkrLB3ڌ%N c<&lA}@DžvGVPp#0^q*DY*"#WkGGl6}꺅q\`"mKzŸh.4|7@:@xl#3!k &,k>".SbD@0O0* Ա  oUsl喯x{K| m?~ @|قm!ȹm@A"ˣ/oOEN"|Rb'"L>i]MyTSWP4jS9MBqIʣN|{eq81aZ8+N0w6LV:z+M)_H%iaY E3{c]܎ȟ9ZO up23 !t'lY>#Q0ZVC3s@|$50-h_k߁{ N5uXcӰ?6@,Rz0I8 QbI 7Ѹ'qct$GCyAj&Y;I>d"5MIƍU÷t V\ZL; "d)_|H};SDoFCz f u?C, }M;zjtVZmNT!4)'Bf݀ K~v+u=靃'!p8/k$x+^v!]W0§E)bW Ia[V>< e>%IewI*{٥~$KL,PH0ţAvq&(2L~w<̤= XiJ0Os)nXϸ&=:x@إ:a!o-PNMSYMMV]ֱD ȼx*čL+F(FO9۹ݫTlC E!):!Q`c޴ c?dULlԶ;[Cq)^PlpV{9[r?뺓oԔ#] B©KQ |q"8zsɵa:A5޻ z]PIƵaoƛD{BY)TiɄbٍp{dEUw+ĖlGi]˱O*:xʯ]썖8IJ4)VxM>:{$5r.Əgezct@O;YN4TIMQi3TA5boDxќnAfRG3UzBjd$CO$YEd2Og~%;ÐDXl< i^wz'~ dĞQ>U}ۍk{k>NTyq{?X,9%h\ばbYaW#/)2%raAM>Xf4$rU_Fԅ Kv[z˿͞]¢CkF/𴯁\NI{?+-g}_z0o]L&I@LR(sRH-ŅlYJ#ؽ,Fv->K,su"fi!Tu0㟾|CS beDPLv&WR{!OleL589 EȓhHYܳvï =XVJ?jQ?ŁVW\%LM8v|]h-I'7u+ۊ9Xs@d[]oVWGr9+΋qOD'Mn1cSG :a-VWbI[`71NMΚK{e;RLW $9f= iMH}6 "pIOyRm0iZ)!4gO3"q_˴S[c^KT gm;Ĝߥ߸ʷ{١`4-Joc[r믍>crF J~bZN쬴_Ӊz_h4Hͪ@gr[,~e5S|~o;MTHB,TPgq k|yc n9L&Xב_)y!$S>BeZ ]VZS:78T6uD| W5 DnWPƳZ = Ep;hex6rIy@"lZ<s%U'FCƱNOyŜDh'?M~a/H.YΒ\ިWq.Gq9 ʱ170kX,kOL)5}i1dΕU6[5j?ళRGM- 7|7JADz!v=?V["RK_>Um# xRApdo}tF7ļ6\]~~@f-ܦ.& Od Pv$Y͐*3nF{S.&1qfj}h> Xq$F Mi8MT>c h`aމw"O"U ;WԂ*jHL}M4Si <-,r| DU71dH ]LMQϜ(6\\mJ-5-0ʵqB1Ra04RE^'F1 jz7`LA',T9)S,&'3*^| $o\9Դai9uwLr88 g>.EU!׹FX-J ?=Ν#:_E}fV3ixɓniݷ4)vE4B S9)E/cFhgSdَaxcOn ኁۗ0Yd1C3tDUDԄQQԨqy- 67&a/$@. X>:ʝu~0}Bp偺$qQbh y ׼uV*S.u<lV2̓_|jfj' >2:_(@d2v yf$ͼYhT%nB:}1*:z G*f(j`AyPXlhe*՛"0mCĄiZΟ"9?Yt==o@05tqesDŽLq+aƼO "TsPCz.-vDA_Z!+-yCYo,gKrb”(1DVLL{ir ]SR /^0ڝW֕W<)ll.9&I&|[-̵6 m{Z)MΙ+  $:8Y\3N J@(lج@d,ͻ-R) C. A$"6F8Xjm"7EIuNB%+e"$r  BVE }`4J%Pno NuSftz-^8l&Syg^ +Hiְ OFdkem*G~udrԄH)+&և%:CJi!r~ت~߷AbcӮǨ`aWM,D;F}% ]뭯f$ChV2jK$2j\Y5 }BB3BbNQ~wq>cEͪFxŖ(c+r|]l_DROd T \'-$J9ToUySlN:VOXDaWJ;sxPˑE?E_.۷G~D$o<ADk k"e?o?ݪlm.؜˳]ͳغ77j/Hue'ѕ*o:/P)~qݵU_'žd0iǗG@e<6zʙ-DhG= p}l;mRxg?ٺPw "" RPӢ'4L K߿Onٷ.9:FDd\:"њ͊٧*֏WXȹ{d,ӱ[WrNX:9?16lTU +$=kih]tT"{!l(nѼځDZ[ Cq|KdDGr"73K8E}6(eƅxցI@!pRn7uALXyhI~TbD!=eU/DQ4O#(,lq^Tta4ba( `ηrԶ"@.Ix d bWxNF c[΢WLҮټǭpKD+!ʉP}(|ݟ58-!9A귘_WSfr4o 1PE_!TMyo8D <4z;#2D[[`NG̽ZιZ+.oLڥj]\d2@)H@}wH̢V9+5hnYg~mHk*N>9y<:9HVmclmg=^fhY2x)a#{|;XDմUOB"XOD*m]ժJA3LLK{LJ7ڊq w~ۗ>W804m'jub}z#7\7xC|$萺ZMtV&yz;snw`c")x9{ĨϜ_f^ƣ߽Qܜ&A|%O-5sei Á?fm06\؊لD/p WNwR#{ @ H![7ÏSp-f1<6Y+T5x 3J=}LR!οP NqsrϢsIl6ROODW.m_\J6`aoj^~ej!X"yOTt }85ƹ^m;a#"s\:@9`&Zqdb|Yixئ&϶ڥ |ps ki}pJuSGǪ='&}%yvNY!t^aj8 36hAtߍ4:,g3p8σWHcAh7W@G 5*v}anFu'Rm@PzCQ{xXꙔO9l7VӹUYou^+$W!N K]:*KY;\*te Sim"X;#X=;Zkw_ fKl&cL;>,`cMr猤Ņi_ qA:Jm #j%72n!p úS ^ɽ9mL݃fzsAvak2-*$)?-ɰٝyZ-x0|,^Eq &ۡ|2łD[edNMZV,D_N~niUL9g:7'8m+ =L@(jcҁv{k , KtJ1UОMLt8{X}M_fԥ!WZy&C].At.d ~_c :Yrb#,]K$,s\{K+i9b.BL8fIۥzoЈ"gT+.Fw)Ezߑ("1{pHtIa=y/ܬ4 V-oz74QKE!"?ODF~YQ׿~VOeǍ.VLyE?jo0/2%kV"&C]p˚Mb]+ WE*ȚZ֙m>~ZJlS롹W2<>+޲ ^lJN~p΅!]eEs!Цu29d= Ʌy"] Mje Ve.e΃iES> +(忦نӧU"v,lN>{_Fb(I7y&&WAZ!DRHJ\) M61,N` \ځF=Yy G:o^JcB,wtʳNGSo;%9HRjNH,]Lb lC.0- Fgw _Ixn֌8;OsG׿Fa>ٰ\ X 'j7լ*~4VA>?j ~sv.QXA8;'(r#K,"znUѱy9Yk?YbLãK@/|.h!f~5E@tR}#Ն;n,'h>HEo瑁*k<:ufT "bWK9H7JX{>  _na=#BL晤NAua}wr2)v/w 5bd\2zDxFXU %q2,v>f(GLGWkx P hkJ6aKNjV1>:xS/1qO^: I"\*0^OGmO|ushAO~P@3RE`֍DL⾶QIਆFt[~:s 58;iI/(8ms O|sF"EBJBJ\]:"1脪qA AF.?!*\LY|IG~G@//>uBc:fTiD@fh:Tf*tA5_K[jZevXʂ Ne]8%g剐;Aprzx B`pDD)CBп@mG}x&e=n/ ZrGF1:wg|v {T}xNPXxtlPy;lyz $-ՉRqTm7yB48zKBБSR"i9}.-R" GC۵V[%)^r^K9YAF[vbE /l_<hKϻöC|!y?U愇W2s3(uI{ l@ej},Jj2 ]$~<%jXn RF6L:V)’`o44t9,bcG+S)XQ6﫫ug+H!e~j{}S@tI Y{ 5=ܦKkKzV4u n%<;ɩ(ҼFj pC&U/| Y4uinjDEUCdJCPO)EKaRR;B'm JEmpA&n/zbv!& FUȏ{8E%$f1?#CDcoAz4:lvt䭔oYQ}lsXn?HEOẒGhƽB.1SB,p)-=ϝY [N(WVt`xoy7(q5׹Ux{%?|_ '1BiQ,yƗpS=;caxk9R;˭ *Üx\p䔝ϡMk.~ٲ#ٸ 'E\qlh A *AđDz=yz03oH OZܛ)RQ"et9Pc7UIߏC-OMtpM0L܌6IyD vǦX8 fGeif郱gCQ7 (4/FH0[֑GNa&|Ab-o_@1b{N L`tqaSeON罎_a& ~w"Wj!vP g&1?Irsa|_LܷebAg)p霮Us{hT(6=Sqi3p;/i^b{2E$|e19>,iXƠ83 |+ PꡘȗLW B;oh`R(Ǔ:6Cyl_r Ѫ'VʢLzȞ7u^®<Y]. BA704K@=-OӷŶ׶utrܠʑ9/So+:^5_롰Wf͠0b$c? gF<Ɛߜhմ(67?꒯NLOj5xźAbHsD_qoch4,R$6[%B?Y9#b>*O$#|GqNM8I1VWÙ2Ͻ(oIF[8.'ý > 'J\YTޘA9S:쁁b.ے훛C_kCo=P6b5CbWm-3vmj~fk4Sm8'aP^I$/״A|p >Lo.tib< mZ޺y,ϔF`cjs5[Q[ASsn:Z7&{jt{=D\Ddy C^ɷ^VgidƷb9Ss`R@ti kLl@fSexuP4~74̢HTNO0Jr:(jtd͒C`-2, Sol>_l\Zt+"l^AuY_%cV77FArQsYnQZေ08:E] F:4n@0 \ (Em&ص%^@ 3"evk+A߽_D &gLs@+1X JČmrLJJh -$]YtF*܏?ן*3B[ƸO">êFgGaI4^~eh3EO8ȁÌ pbR3@8T Iek~c DJ!֏Ut;5M㓈-!Vؽ95Ňw&0F? t<4t-+Q8Bb̾mP ۥ (~&N\3@&m2eHs̓˫B}v:WZX}oYu̦u∪^kBiILzQvͷ>Qa^ẠR,Z96qe;mmmݟ򞌹x}2zA=/ BV?'ޝ=c%7~>(ͮ_y?%;Nm>y  yR-:9` l1 k߭>LdzH5wsmZ+8bcZ7l42#TFthk"Ǯ{8AZ6'i LXf/%Y٬fӀ:­t.XDZisTj!E)4t"xmVgsƬo\9cJbzφ.*1X:Kmp敟IٗY HY%3ĔLVgBuB^ugrG4 +|7huOK'aܯz /3Ԋ rsTk: ώj~Rߏr! ]{UV2>jKfWUjg*r3?2k7sL?bG,O$OHYv])3RBz'qb"JqbhvXS-P*שV"W#TIW#$BGÿ$*pn˖}ƺ޼|l@yT@&lP,EnQ$rՄQ2'fϪ\>2cG}>A<ءymU|>!/bdq; M!CKlK}9Mσq(6yAP57"CE2FCzdD! 0qZB(/Or|@tMAu Wtn=r}MbIx,o&]6AGc|H&4誶hjB$SOExӌU*:}/:e@/avuVO^3# f> 7 (EntdVl|.kѨOAѸhXbߝMq!h\Bk ݲajSE-n<Žoᓹ?&eA`ϋ5یkKai{MC[K~aT"ZMtݭbz ad^UA"4FWh`cMOt:eĩ3Az#;4qC]U!LzSDN,% ݒm8a,xuɅ[mWš\)I\8ǟ[0$XL١~bP Y{C:].UGm/~Lw _76:i\^6ز Gv5X>.aX* ,%LuczrC5_n9mvb j(+jpCw#Y%׹t׵jw'N][Z3r3T.S(cJ& Ц$9/ʔ}|%۪`Xɕ_\S{\"f^修bmnM;J8aZI:z'ڒOO\VtGG5Dv׵3#;Oߤ0p9L#gMIL8a?֐_7VeP?096iu~X9&O$(!ShQ?~5B6o95.>.v{_7fMGh'4jc=לIïXqBjkr,증 f8,mлn34mJ<0>ss4vO%QQV 9ZƊvzt@oѦ}~0OJOQ&z2FcʛKn5=VƜ$R{7]-4 rOLJl7ŒC6Y,Zh"8SUBbp Se,qҞVT 1|l`t ?@X>ũ^{`X4Vm_zYҗ ^:!p)Ad5#Wp HbiqF,J1Yg`=qgg<{9#0VX .ٵ/;=ʠ )FH e)'Zƣ8!o( :S`Xl]oIpZ Vԭ&bxo= 0 ?hA7~9X]|\K4?rgǡܽ6 n.~c%f)&>iB+aX/0 OI"XM2{[n+|DAƑt*cLusw߽j/ :@p*1XIb+qw (oNŲgǵX{ڽly"bDm^l5 V~S;3w^ v4s.!CPA+)aT%x"P16 oύg3M+CZ邽MU>O]^dM҃UoQDb~US@ dƁl8Os6;swTSijh y}qs l4vI*j3],#8Z.؀eGShf 9*iK:@Q"]坤( OdrG/96>hQ6:#6=V*FNDHŷZ G=/S|r]^n"1a@/5lTGa  5=&Eo1EJ+a领MKxG և]98 QQ}~h``8>}lW<zx`;./aUa,CuIg^.£lM "+WZފl')C8|`JJ U!i`Hb:hYyXmZ|u|(s$th~q4-?-vu ڝW*a1`=Xzq-Em1+r `4.J9Pl_ <{.,˾q|4ڮ;ɡJLc; t<ҷ&yYg]1)zċWi)y43Shȇ( ;^Es6ZpbG\ao`}>)ۃUlG)X5g˨1̈́F 0NX̧) A dBGXHpFE\3Th~?:`.Eay|C4@ܯ( UQcpϮ8rmGɳZ]Vvmk&-UжAލWϔU]S0>dڢ*թ7t*a ov*``)s6|Im+,VDmQlݽQ|߁,R@x?ːRWCl .=[uUHgLL2| Sb2Xˡ7^t" sɨ+`c'kb!B4ƩK`9{a.Dxy#&p,86 W&+uvfOU+\^t VFA#R4Jj>z*C@moG3X^lA5@Xd)A>:#d-'\-;$ajsV λL ⥓)l:{4:i%g)2TJ43ik<)IМF |!H"%tT-8)L96ΰdӻư|A D]2 u^*}/f>,V'rU˒bP&5l[RqO70~JO*`mRYRl<`y`3|{#h2U%UX!L q*XK3SRa͵J]F?bʟk*"Ӛ}O5eۅ X͉'"b] !Ol%xx*o?N\h^ ;q5'OVSxj6=}\ /N 玫aQStQs2tuZQuf`$L `+ؐ!E1_`b{'3h 1 ,P>lCLD dHͻO 1C@s@y73tˉJ(fKYf#f&aͻ āyyuAl MR2Hm8Sm89Smf} VdC@C1ċm0tM `5v\q/|^?ynW v_+)IKߨ8= ͹Z缟`h,<]%d|j$JYs1p Z9㥶RJ B4qL ;@xkeߩyI0LL1_θZfLr_]/F |'QdIRb8eq8}/.C*-Azq+j5 ?@$#hǙeP5{ .+*"+ @UL8 % juB9㕵f?k$|P1m).jE tr_U; `!~bޠgskB"X [9Z*!xJ$,w:6CL:`pΫ2< ^쐚_w^-8<>`YnD51Ҙ!P+Z ]j`6pjv~sz%Ӝ-AEM"#1kB ؀hF0+kݳ b'Yt",zfQ' tdQctW턨$AϩΩ[3= z{YGo!ލ=Bss[0r q>% }z7h0̩ uK+OA̜J #Պ*5Nz+60VZ9`AC/jK:j,2* Vt5L60y"!7o<=TyzT#yxLZF$N J9`f:NX@K!YWe.1L'51t#5iY,(!5guq7^t !gVGƬF !R+jz4~& ȏwx7cDx͛,Zd@Թm=Dn  3USR<+~t>ITn|NCGԌ@X=ǭkJxBt-q5ҚDUV]^aj^#`HJWm\'h r4qq^$8sUp&L4(@Ԕ1\jןfUCF9ɰoJ k@-*}ጸ8{B4כ @q ;'7֡r8VYBGZTq6 s~]&f#|:6;d$7 IZMH -Ret}Wyao]ػQX6$);9k(}HC5P `ҶǨ:0oV.Ql70l:mكyCmW .ыHN&kdM_2 t2Al^j֊(g bCl}<~NrmD/XeՀ)-7o|.3_ S rxލ²$4|S(ay @[ccw뗴8,;x7朡I9t aikP]vONEw]ؚIq̀k4Nc-33*}5iC%mN} jz [z=TzU1hoVZxyWt\zE³=][y@Qҁ-@ȴ B K,]{鮎4͚oUi ҄2O?Ri7m3ZӢ}FSc*aaZ o*1'Ȼ.l-R UޡaClm]{/<&6El*Yaj@b'l'ia#: Fq߬cDj~\;( XMށ.jyʵ˾ 9 L6 n4/`]G9}tv8,`mTMuFiDpEb u>A1س|rD3$]`E[7:X]T dR >1 GzF/Rwr^r@:1 h,^nb2VRԺXBK3 )5j Wlջ.,_NsUuc衘w9ɅL2 V삱yU@|<dۏ* {rr7; ppamS 65zI &Cfİ3t=N'Tt(6j_$}1Z@ lr4[o,;~=BBfeZ~=#j)`Jѳ eԟm X L7jo 0̍T)9alO6K 5+`驍eTZ3ݫ-tΙJ{K3b 9 ACM/HM+1 5שhi40cDcl =]ATb DEԣG1=(kmYkQF[tI?GZ ha%-IexWV٘aWZyA~Y7w,Gx[u,ۍL.:6s$ͪEb%&^0v<,oua7t>xzWЂGԢbP XnsN=z7 erFNM,aE(OSeS63eǻYk#M"ça|r۷3o7eG{Wdi.3 d4/]Qeg*!1ft5Rb,$#5Űxu?=Z,MFH(SrUg:zMݬ2P"5%]F;45&7/$j^G٬1-RG? l3>B`jRKkVȖ74L]>uɡ4us1EY+G#51Vf"ɿߒ-F.EGRBuUZ}u Lc>U7l:R Em=='5SBEKRa <w]X%Ø|ܒ3:'6b m'h%2i1 s;{HNxw]؃նh^0ﺧDW4 X϶hEҒ (5)]镴?Da]o5,*Đ:W{W(f_R뿥,w2S~OᐵGT]zY96HNsʚbu:ދ.u2Z݁_ }L{=чX-Xتv!ywQQy1ee tX_`-@eуZj=sد)Q9Z+cd+*;Bkp~`b+QNfD)ջ#7$H#JCB?,qrWCqL(zۦGsEM߭W"!rQ]9i(@ G^ٶ4֙taOWY ocx PG": Cһ.9KZ(މl((^w U@tB iKb6!N o[Fo!u-W\sa#X(`@&N<ƸӡzWX֍C Ò:ⵕf(/`@x.9oӜu {s%]CX)jƞTX5C\]WPyN$ D c*@^)kl?B^_L?^_fC}yد~*R8 :zWNqB5ZU>wz]@4AMD`ǥ/ogBر=]qyŞwcdI5ͼQJ&ɨy Uzq˦WCua_T>rzV <:ECx 롦Cnh6'7^q}MU!fջ.9-S-jKoPxׅ.q-C3U n9~"Ɂ|CǺOOYȼu5IɌ?Li}DvV][T<_ҟnݿ)@Erb 4!oP-W*Q?&XX5.h&^-n?r >(+UXb#F+Tx2ӂ|T Ӑ0= sTD![%Efe Z6[#hv9eF]b͗ Xﺰ51֯=:⼷1FmܮG(@+Z8?i"R tȓeTT\5ȻQؿލ¾@f5 >"_0uK07'9_/L"]~&1e; L@xz7{r+0GPxכ!r7&NOqSy[ |Dw,{x7 XL ,)# . ;<&rA<I6O C+ ﺰ5 ϐu1j[))#jF|~0N zׅ} ˆLqsVo[tE9kQ64M"wkmE( N_&&j!B^-A,wzڊʛYl,On1(i$!/]dܪɨ2ˎ׀ awa¾@ ,/)!8,_$UjA8Xhc*i8%hU ؗ_FWdeJaXΫ_8Y^(F:V̼o2'lV!c45q{SS UbeߋTwcj. 4 }SClѣhqbۇXL{-GS|WoN :l!P BaF=Gеfu*rHdn rIq\iAF\K|DF눉oѣĮENm BDÍ)Y;`ץ~},{\OLQa@ԧכ<z7sC*w{xw)лѝx)Dv^Lh$.iGaau5wW !F xֻCO%\M ]4eT0- @Z0m,U6A]F2O?l=ﺰ D-P]d5@^@Ds:uFIYnfed+4/ؙ &> 7.A-+N j@X ٓv0*A&Ņ!9 INb1@6 i5dE^Y:<5e0LĜ_!*(R`J"A0)M_\aV`1XT P3ܰ%fûk./|~3:Qr3')p?H Z^hik=VdTY I@b&2V &'y|m0lVMH*ي\DHt K]齃q2#s V00ٌ``E Xjа=[Rr2GH&?q$A$iNRRU/22bʧ}9$c hܥUvz ﺰ=z*C %EoG[rЎQry02 %߫\#у-} ֲf6p-ӂ@,k$&( +A+Ac쟃XY /ǔb.WORFMH0\,s=:&B憚oHws HI9*e>aE"6`Xy}!RCZY_ja&;h<FM9R<|j;ܳvACu֩~ vHAWN h/%AM AOᰉnsnҵP"SӌCx]^[p5expEz!6,oEpG4  c3SsA G7-!;R֧?+`Y9rS de\P2 fR}[z;r #%[ A&t5^'r׵''[[l_+hl36wuUB];R>dx)Gp[ou醮ˑ%HA%Dy~Iu ȼ@` .~zD !\pcΩΆ~iO'?g*{*adVDʍ917w.=PKn*u-׆~SkC[E[rMtm{eh{SbRES's6HMNŤ&aÔ~g|g)Y_c@*)R{e!@Ҷ0ucJoUJ$$$HSmm{lrnjGIV%HthLQ3%ΗWw4meaCK9*fԁTu >_ VA5Y 59S@t#6-Xqe]Nx儧]{ZxLDD.EFM_7UX7dewS=zVf(GǪUWc3֣y}F}z:]p?ջ wMezhSy ѵEZҸ4m?sQ@ݩPnB Œ:s_еES=ze`%mJk wZEh9_ҿk -_Ty֢u])ܢ%mV$TM{⇗Rxh|byf[r ݩBGWOTe~;!IE@W醚6ߖ2K\NdXd͝>KOZr+23R%Ɂ =Moz7$aȁh{~aAw,R]Rb51SQ&1TAڤ ((d>Y#=w]؋Gl F 7ñ ^ьwGjmVOɆ51hlagQƗ j *ՠiQg='BEu\G6M~a]6Ubw㰜]lV]] ?]% ]}fM_E?1PFU ˆ#5 w {6k;Dݺed%=H$[r0a7B imi.(p;XRA쌌j0ɻ{w´H)d8;$,Au'fPkr96}n0-n$–gFZ /&H֋@H?QDZ 8Ӛ'+yLs+CL0}a ¶<9AHLuP(.ݵ;E;-xp.Ž/V 39'${^{3U%cL%knKtLeCYxZ2xz_]fWXrlxV Q }ɹb/G3<:8wfZ+)_.C\C -5 Uĭw_;\wՅ5Cw 8(%Z\Pd%WOkK{>r=d@X1-hzV+ .A7@80` Fu _:?Boqm}o^x>y׾.F%HmsSmzyZww1m9`\AL%)ݛ' \SHᝩiy8_?՞A{>[-VaIa >[.?!#f3Z4P%Yuۓ7 ֮/b~Z| Z R&x$oytɽN/Lr6*z\%\3r:WfgQH^C"b\~tj֐2s;&q۝˺y)V۟XaR)ygflD]#'߽YƪڨpĿ[vO'I9$BgPVk ̹|J7Z;B{Qr{l8p cu?$ʢ;F%w;9A g ǻU4|z({L5h*"&#< wEce# \Qh/߃;*rH_e {ujHNXN]i\붑oZW(GfB \zJP7xL|Gjv:W1ֲ#ݨRZh}eW8Tf8/{h& {w&k /ESpD1<[]s=Bjj 8M=aq8TVj Cl;'UͬZE{ cyOB013ϹLgXnǾ!Q*^i'C9U&Ta.lM4^Q5 (P0Pۤ҉tpLM3#[ZGZM)V"~nznh0Tm%CC1VՓ}ʜ"~\W?.}Q| l]YBxTeYZjrg xEKj RhL71mGRCdzq<GlEyZ94r'#3ɿM斄7edZ.1iK'ȋi'xN~JoںPy ݆o$l4oUqSv2oH+,he5}][6h˧ņ+ J v]J  ybOwoB_sI-c2%]xa"/AmGX;ڲi BbLORo%&&\!FfQgD-O <['L(4 .mܽHg ȁb;dR F׭Sn層5!7sq~MpY~Kz^r^@ZI#NQ7zfsu0T4ΘЎ#BH >az9I; x/gjȷ##Q7?g3 s`37?%Hn(t }Ka ^3-TD< \9Ve=D QJ_u4[D¥uDȣS%|FdwF@nƽ<*:/@ =ҲʒTHC ,bUP3dtAΨ3w ZhE@SrBE <[33В}RnV.*A,fe)Ѥd"P1^m"S fzKݹA?"mxE"E$*ͬL#"Lm̮vXt%2Hmv%Y/+KÂޟb)2^; lYX-8qrhI\Xw/4A))[C=X<.qo-d->&K=8B + g}<< F[:$on83 /r(*Թy!`S9S~ݵ $,gKO6g=:hTF~i_p#h ot}ê7P NNֹOv WFu8;u[z mOvc{YtE.yNx3aБ=bϒE?V/Uq~ۥD4>k~vbɇx("#>n<$ݗwl|3^#ř6^™?p_gu X/~3_\NVffQ:n=1}LXfY6v5!㷥$`n)7y@6& dX|ҪӘBn|DMPHݑ׍Q 2!G;m|;\ xar2,7XђBŧ^ឬҙ\|©}Fϰdk eu3w*p{xP$%Ç/+XL'S*xDy/9vkͫ{һ%v^ u?ƌI}bvnkRŨ=%S»{_>3V:~^6ױQg5Bcڗ+l6(1%e0"Ԣ*4/A(O M?3=>II>zM*l#*s|A2þLȷ be?E+pB_fCß"nX%9n  6 gF e-؈y'kSQ"(_rn\Pnz/~[/"YN 8:ɇT{ eD2`I*ˬQVLUb}wĹg ƱpD=cK-)nr9UjBjI%וl-K ᅯmJGf%'l ڪK?MA./R j7䁄:e&We?`ԘIéŅ SJ9Pl*4!I %Wy];>.^"%kR{DgQTd{.R䴡-X?m:R{OAH`PRG&j5\79q+,e/d<B1zqQU"SJӲo4'"XO^:DJg_N[?;340UnNH>%mDU*XTuwf;8 ;|HwT޲H)Cۃ/<mJyVyCZ g)WׯWo5i(ɼrY|P1\OD23nI KB /Q]~>D).o쪤c Ǩ y\8pn[24.<,;"xA6H+$_^m'$촛$jHq jx`KSzJXRodcGioo`VwQʠ1(FEW/Io뫲 i<$rö6WQ:z8ŗ7>߉[?*0љ % ŗPg |̵efwpXd0틭LILkž{p+=>CTf@2L2/ RM*`Ʋ_JUɷ^TuhdxI@H(-`QLZ A!m|JbPNʧknN  ~e-2!}4+__h2ăEGx*Q^զ eF7V~+X>̩$_SYsXB8d-ʌL u9f^ͪ=0Pǟ#h5]T%f6B%t?&PV3Wӻݕ JS/RCMLarr 0n&{&[FfL^5T-7lEh|aGYTA{xVIԯwBN 2ߔE/[ʡnx+c 'i̩[HĥKup16j(􊉊1x D i6#> c(o?`CYU:٧Wj'nKfN{%_oZ!uR-xyNJ-b] 4ǥfm'2քt+h LB@T4.S^ +ǜ̅}%v>2gcVaڧjE -Dڗ؂4lҊhd$aBo!ػD ;\ b"WJ}Mm LP͜hOk|f}mWn8jJ~tqvû s NM1ɧZ 4hfrbFI/w41-&9oLkI_UQaҩ-lE֋ Ă=[pȅ ~"H|8e],N[+"(̂ Pb QY`k:U F7U@#0IP6UW8?U՘MorrY?HoYO'ʇkzZnTƻl]?&«{Pv3'# N&@p4AARZ6|[ko3#_2O\(᭄RY7I u0Ƭy\;ijĿJISDz"it,6,^n&A]CĨ@qAdSa906[:ӮZNᨠS*.Uwq.\;\0 b%0"Plm3ːwmh:3"/$XHg R,[׸D9'g&ֆ&}<3Q|T4^r\6ņ>~?x9%[;BΊ aRK5:23$9"f(UWH$?ҷA/T7 L|+SZC5UfFȟ2>K H#o!]צch|-=Y"u!Ik%3&$}89w\ne%EU8yA] <Ԝ(1QY/ 9<[{;y? ߾=Ɂ(4$LH9bo$,(]7cܡ6aV`Ibv4B618?'dm1s\iƖ7K.XǛ$$yA~]7X 0Ses#V=Pάk(f:>ز}5I#;Ӈ`fܝЇ;p |Cl}oz([ҹ /*Fz#fyfV7|HbHUg.SP#Rdh>NQ-棺y5x?O8鮛pʇD ^p(bVY"c i`^dQY#V)L̐CR ѐ03HrAzo |<@&QYb>!!@Aq' Л v1f\wR gl'//U#>i0P42(G shX,{@4$L*58aLchwҷ:L c/~"Z=z|.oɶb(770$nkmS Y _HRhme*|V"`mW" s,2{z+Asۺ::&Y>x 0˳EIeXlLąwy'XKw&Q:RA٥/)42y,͍d#R2>}/ԡbx^VF1DuH/oL`= YNe%q=ő7NwW5>&!+|MV1)VJ1+(󜮓ɌZ{F"og,Nȡ|G+{G0LvXp'+@2#^]J)b*kyrPZWSZՉݳAKꩦyY<ಿ𧩚GЕEE] ƍio`2wdW]8d D Q8: n}+ )''ZYu鄒ysKS"@pL+NqDJ9wKAIț|T^snOچq,g(z9yYšPLu~U{>kTs"54v#[˗6 2LNωe b5sZMՇ?El]+ː[ǐeW^i}"%P88e@a 3Qzc0k>έ>pTmnxNxW=hɨ.VH]967{yJkXwނ`b·lz&7/;Ai;4a+B~s ]d /=/~5k6&S Z WTY~ȏk8ui);>@bZ=pnZ3O`$E/Zծp7'p@fwV%_Bͼ[BGD9'[J= 0K_R*5ڟ2#ӭwt6P;J1y-o7RiVV sx}[B faKxTĴ&۫joJVQ:7ȗ>wE]5jo86B) 37N0uyw)&x .3FFKɟ.?iM2bGmTnE& ?3uboueP*$ /,N-h:O>s51˱xcfr]ڈzIyNJ!Z1B#Jĩ#ҕrZ&CKe%n94ZDl0G!2L2C[8(,,+4L݇0GKd6<}bX,˨5M*vSڟkp^(dt}8(,ri:jV>;bJBQUʕ>:G.l j\`Q8Rܚ1쇐^]^'+LMy&JA[m{m;a|+/Wv7Hr8u˝) QRkLm-;zu#\'Ɂ y e{ӻ0MӲQq6=%^<`r~ P9wڲO_P ?h(.'!ו70₳:8'jdЫEBc:)p?_)N~B soeѓ64rK0hfn͜ H%f0㨣3IgzƼzT?>fđ\,3}W2Q&{~Ze=@mVB 'mD~G3 }AICBcc{oV'O8=D :#Z?)JtϹk Rx݆}WBxu6Ȇr#R!><#`.1Ýݐ OE̩kq;]Jq ]…-~3*K-!WBg7#ز"=d<~aǔnk!(IVH` F:wn0xl=$Ө+pq:I4r8kv:'L#v t}[-UR<>!ڪeg-`g|4S`1gQ"ktc"Q[R>}&3adax Yَ)!Ps.Ѓ}U3hsxu:8̪M։A+? ;*fDP"a$05* _7ɯ8} YQ-^L`;UƇ\'ŀ3!­ P 1UBŐt" 8TY:*rn˶s%;?o / CQ&DͲ?Y% 7[n`s9&ȫEޖB|)`mҩYv9e)@ uJ&.ΡP_!'Ȧ}lqa)n7zRڗ1ی`vt %cTe1DGɗuqn&)RsݺPs[@N8ZoQUE{3HIwh{ufZAzءi9"CN ~V:;Iք(S/a8^7#,СHQ(: q/hdH\O8j=XPySbt tt"GS➗+;eSiN`o6RF&FT?Ҕ?Җ`6vfΡ@΢%Oь qIl,׏!Sc 9+")e3 6|s\|F ֩na+KߒI7wñ~?)&^|28Rpk*~`(:_KiQ8ͅ έA}~΍us3U~ot١@0-,J~++8dS{O]oyLFlY[W8ak LJK'U7 8W"Գi% s fYixw'&i]tol=*z_ 9^vExGP_GZgs06Yc`۬ԠVZ5OzrruE=avVPQ[gsz_VwwRat3SH<;&D@by${G\l|:v\x0y]8۹:88H#*0՞$`t9 K5vQjߝoƉiCLluB[rGvΉ%j뵞nhɱ3iE#$X,j'8=u)+(Y?Q"0{pFY Sh%Ny6'Xո$6M"݃NE!crDں]'h+ +x^p% MIlHĕq_M)XQ|8ab94椇2lk8|ѪH|d' RX F&͹~˯ird݊}۳&nžӣ>ݕjq {hwx䕿4'W[IrcFi߯bf| l(*B3Ökn{-z|j՜ A?~RCh>M=6Mپ .2R("jpOGM\q KPČ%r+9#3 )}IE޺ 0e/޹E־t_S w^P`/\F# gbpdZk\#P]`W5diT%BWr#|o Z6!XY?VwldPV122Iබ*%B`B͹Vs{x}M1V5UYQDh6'̍[84'Q뿩GON5Q0=x>a)sB̶_ |r:ڼ|ŗnž!kd#&.\0 8H!-"\|* ֛)]QzE KfX(ƈ'Plhהz cM|#YpΜ/T8^&d-C9']ᩄ\lj D(fQuf*fQ xBb=m.m/D (8tPl7E`GH2<]/iRӍl`yr1xM}G_>}UC-AsKw9A=n6W7hcJc e#C瓚҉$ϖ9Hɸ&Vb_^kHz {{ن,s ڠ#G$@Ce")>g/<'Uc+=b{_DM1Sa')FiyFNxisj~Ou2@^-=q{h)NɎB7gybb%cK*ڭk-d%W  RuND@?$8P^6(-t$} %Ή/)!ZتE¶?x7ڍ?"UZj7ϥ݌R$jX)N p7oeyH*aCDŽac f"+T%J,cihfPF.2ͱ#5'X͛OTK`h+}G'*t ZLV=}$ʤI5%0g#Mi\7l/7h ~dStbhl8i$K 4/,CXE A)DgɁ{hSeC9G R !j_-cH;J4BՙЈZ9IƶpCfXmI$9$ )gX𞯄֮/wMӼYAcHdk9d1wBY+=Yi\|j+nDC] 4-|&e>mdÿ8Ez,+9f~m6f2 6` =e%  CES`GS+_ꙓIL\|ᖨ9QrA\gU^b&t$ǃH<\C!_—}O0W y,,;PΊӲsp|M d~7 Z qV>'X16l'3R0   =5ɪGF<z9k̖pUȻv }{a8c6Ơ rO ^?soO۠yâoO;55Lܿ>Iۢ?dyr+')Tϒ"^Y\&@ѩ>Iv#G(\>ntxl[PI&YItpa`&Ri&WAf(Y^f@ÍAg_pxP$"^V}7'"~kX"c0FJ0W__o!MY?(m$\7#8^7WƅN;ck[4$GD*{7GSY{̝t?O%buB9H.'`?֣/vzxURnA*gcEy'U΍X?72^߉yȻ%z?ڤƙ3{(3)P'֥FyH##=JJ%PFZ@!QLN`}[4>RB8T4~_QԖ໬kν56? Y[oG?DeD w W{+ڎQkq6/DJ"Az;2Hg{Ox}o$$!lV,A@ /@b /D\_"' g ^N,%<hCLu~EVRc&i?oOt)j+E6% 0G@os9/LoMmT|$05XX­f&;:$qي%A,Xb$7{~qefcbR|OQJE}qJK5mgao:a;OUagP#` > 3|,6rFiBM|ol޷BňԃJJqV'{ĕ?L\(b6ۉ7JO%r߽! zko|Hߣf;]$EqNh$oMFxC<ciX1Bupt#^,$x~:a":<}ӮMoͩS-mz!9=@],I$-b9Ruߡ]>Yٛ۷?'PO76W~'.C`c xaZS׃6(>{ٿZR#d5봫iAb@ȶ$C=mHbf`/!lۜԄFH/Vn)UnVq%? 6oFWY9eE44&wOi \p1p.I(@-Cy YLD&/L)8u-0i>ux^JBxΒD}lے!U-ɿtLB8MgL'7;?QFP2j"?%3ָmN),0#.qmư[5PWo8N?a#jfj .:Is*a}-{~_F(xF*RxG/dV:nHNFBUÏ$Dcb$݅b(liEi7U4aa9ђݸ)-s2㗭h71V|9.MaJG' 0 q#+ABRg"yE$]=j5!eDh%U"NjUwm";%RLɉ <3ؐl9;W'vp?MX]ƾ2G+zjg+5'8݇NOGX垴!Ȟ'sc=FkfLwe#Mp"a%_ԟ.XoڵUq}GnWm[ {|Wyu7&QF)5 !yyX l(vH[fnghv AfF;*?7SX#2SM^,Ue NMtC+(vHwSfQ)Ŋ*щ xoP*N8Nd*ꎤdwBcLs45 mwp  ]y*\Eu(Џ 35;mESE>Z"vJz;osRC>9 +q9a}-] -3#b4{Ho2;l 6 7 yV}^u`2LXlMs-ۧzl;ɫ/+٧+/lGN_4S?98mLmkcضmۙdc۶mU955}fW$5ɦM )Zԉ!77wxQ;çy]TvI]#Pdѯ:9 Æ.ˏ'vn/U\U$vڼ7w_wG:ODe9W])xAP,ƘjRFF`e6!uoω|3XE3KCI?c1F_xca(~#kUN Niz_\K"`7k *mģ:>)PgW }qaey:H1)AVU֋9 /ւB!(a#WRʥGd1٣#΋D?҃&hW &^T"ﱟ ʲa(\}X% P>+*-rLLG͖hև_oR#OǪWޞGPɞ^0dCi~f 2|Wx@bZ%m >9CL90*琬 wvCfN,%%r|0͂R -7W)G쑵0)i'> oq_5ˣo׳_5Y8tv k]& ^ә7 M-/ITȟh(Z a<plxE qPƨ3zUQgg:iϩ򽢫eD;rqxA3dd׳ȕL\(a:e)'U"1#T1`g1<<5Ȁ]9@)9 XD=rgݦ*/W%n4/؜r}PbDg諲"j:;47 ;HpY|;WGVG6_= >7].xX0i*Sq3XFoJaym K5]cʢWoEp00ed=ZDMA'TPܖr ʋxcqj\_{)@ ̉5C7V\`w}jT@tfPk#smm PTe Tg`OFO^T֙h)_3LΙ+2qh`Z%otAEw".mv|bynz٫Mm8=>ӧ$̀IAYmFSr %9# ^x td/d{'A`]׌pA0]>\f():"tш' àU'.Sw21 bDX]D-2ց#9X:h0'86Ia? b9tfBHy'&Px4(~.B Pz#:.W| c~pQֳ uP%k_fVg}9P|'$?(k~3w# }w!oOD`#%PSafp&Qs,Zef?bľ'Y7͟b$\FωG&ZBkb еKU 7UQtPeC{3ǔ)H*/ hh,@alB2آX(/zv@ia:KH#rEvh(Bݚ%OL gx3% V>ʌDvJ,][X ,.Ӌ)i;9Z܅P9'B֘^3>k0,ʙ)2e貫"^ Lb;^U&Q,J ̅l ioO:$\ͷh wz.E4p7}#)=r #R6cNxM©1d) MLi3^ys~t*딁b ';g$G\.0U0}:"~*&v#]{!$+ ĐLPM`}=|0N(!] \؍<`>>wjq@ӷ~@ X[?!Lf8J\PSGJu8Oe n'M{HةLaS[ zE(x ĹHCV_\@Gsk90Y a ]`NށzrMmlbzSo̻3 OG;p VVG3@b!o:u`v>VuЃDZwOD7x'j5tU{ڍwV&W Lt|& ߣ=ax} []Ze=fns:8%͘kױҁn-LWs6Pb]*U"r[/M)lUݕ 6BFHjoGBiebHmAmFw~\Ex[ :빏I$aL39yO?}vPLXYeψFo"&Bv]ڂtaMsi^fyzm3&+/CEG`i&mƋ9soE <+2p(A1# r}S̖6KyP+.3rʏΓVz~;- ṁ.yjg(㨸3"5BԮ{]&?ۼY5H7M= Gڊf"+S06A12[nb}LGҹJ>ܡs^]|c`; pwϦ$=-<re ůgbG--'"ʈ.~ *65$f,sRacת uWNŞmD^K@'i/'zw\|j9/ ыLh3QaF+SēgV}EIocVñKYn𩟈YQ8;3-8&:TgI{jPKe}_:!(Hd+3QLg4E}`,Jnw4f=3gv8x!YϧOso)H(N_)@)W[ Ln cYhtK-䘊d8{g-o8~+Xh™x'Pk<+3aL` *l*0VW[~BPXeŰM_WE\mbs[ oq? +ͣAlKTAK[<6P!m>z~!4nG,ŋ etj$untkyCcnXIxʻLBoda^R̬ ~!&*&?G;djFhtvncw\u*%gηBPؼSgBp|sg4e "Єah+l7%:;1n3q^Rsz͌aMUp0dq~Yc\1}ʌ1 "]U8瞑wkۉa_}<9#0 gK<2?ό~_ψ.Zs@'9UC=͑Dozܣu,+i]Jz\φpvq.w&:?FOuc!MPSm/q~|Y67ĸ('q-Nag͵!#>ӱS+D# M\ |Q)a{ b(e&1ˋp wAɟ̕EFD$Gsqg6ocCfQ-/mævB=՟!ƸG:~1hti;ETq^EzW4O{bsy1WY9=;"jJŤ.M154ʆ0'Bc\jy5"WL2}Eo"=쯌`̞ksygE즤WcRPWW nMݿ\mpifaSNX1?:w)|xA4\JyW1pyR0SJ;as1uDzj|:!"S`#>e&uEm'cBFZ~Gmj=nt=ccj f/wVyޯ3'8ׂ7`+˷W'iKv0QWͣ4ݮއKʯQBgOb]][Uww:[&4tx󺬿uB%]|3³o|fQmȠzfaW7ECZSz͞IpjKs|^aY;Wl]\l#*beA}W/Ͷ-`4BL^Ŭ~NBsQ7v:Un6Q\T1k6o^46P(c/>f.l<;*.l<^L,?ɨݣxI{Q G+7.CazшbF6/6/2 댆w# Q?{0 x_4斤̶* 륦LdH0k-_ K*^ygω;{T bF\L(u3PGdbG)"ʣ._vmJ4@9d`k&hB>SUO_sf\ވz "̷Y}>ߦ:%;_cȶ ptLc S+x"eŰ 8<0FCe=SBsI zE_VPuB4~~Ih=8̈́*-O)5 $Cum@)lXsV2F2pO"iyo#'(-_}h z Q?W-ڵ't A"?H yJGB5Jh@ Sl:IxSFjLx5SUMh9e($wn%/ 6;Vʩ" fews#éƔڧ Ɣf۱D9QDضi)ޘ]YP+>^-DsȝgI}L?˟`!3Ӈ[UAT:$?9\x#bӌZ bsZz''580J=*5Xy.u"if؞W\pltA}f$kLT'j}eB{ȌUvTop7|vƊomU,Z-p$8M<@R6N2:3аPg#8PwOhso?NxaOʿ2Rf5t7P%x"cX܋ ܸ=+'?=?$y04CZAϻnYTY'*wK:Bdd$j&G9G >HiO.;3|,dG+U]J \{^q;(8~r6rnM:;:+DJԦ:)jTD7U*g5\]~MBNT3.[,{v8 A YYdS*q'`{~0-=/q)h9^mVi !*`TeD|Ce%?\XlڍEզn'՚W/R, pT6NwP *e{$_-(%p샾S̏-2y`0~/ùGSd[ug$Fu(ЏUn{<29YIƂuU!jI#QpaE& C1D;v<ỏRI mY#m8J|d1CS1Y2bHl:wI{W]`3YI~{.*eU@SW"0~vxgl1vN@Qd Ojr a(ٗW\_ڱpUC] -äh/8SH#GM7S=(PU!7 8Jo`i/Ri /4 4z@>p1NC+93X e@ TAjr91ZI7,H9!Yؼ7ᙹ,{xJ݉YRg6 W+>xky+ar rt3^sXZߐqݝu 5XQ/$dPaG8wuQN)ZP줽s%KMy 肢T ZA 3%B vo1'Kc)ՆhRĵrk@UY0tJh&d7I/@P5[/>e8¥1lߢ}cT=E"y;R;[/oWF%Io3/:_:|&?}X jV˕9{%QC%<3ৣ.i~ț4e! 3UYp&3av#E&o ԦhT: D. H~. cUNMK\N'p767p8IUz FHn 9vߛ: ݭwmQw*Jw?$pdt LdX='7bL{8eO>.x7`ŇYN4YNE~TR4D}bb[@^w!J'G޻RPj|Zc+GSOq;%dGLEFgz*S{v<ܻ׮sC^F t JZ%+ "7 uD/h@(TذfG*bp%9߉0R|0/<6 f@S mﵬzS/=v4q P;]ѳԉK,J@MnԪұm5ܦa֡3#one%iO3V%q i2VP9LJ֓kF 2Cz\ZI# SRg(s"GGr/H͞CJa2 Tͥ!X5/d:aeѥ]'NR6 r/ڛ翕tOPܴ%̜Z/ 㠱Kt ;$^hM9QpbQ =`LLz`^pjW([tְ2PDEw͡lAIk8g6$< W61Dž2Cnni@h+E)^2[h^>pF@niӲӊԼke@l8"I0)\Yж-f;GgoaƋؠ,4zd߂ .Mg+ dP7Ǣ`F ڇ%'؋Yr|-4b^Owɯ:c=4a>n7 nwվ] `?+[sPS$&6{OtW d}VkhZeuQhxW]2SOx59M UJ2e  y(9XF"Y 5d?:lQeqVG0FJ7#dAJͶ-o^ՙRQ~cГJ5 ?F$%S|V ARG % ˕zmAn7tq֊r6"-gS@mM!\VI`&网`Րm+'ese'KG$ 4Jpik~Dq R~CvkmjvW{Bq Q.MU O58ǘFK ¬R:Fwcba%};l;0iM;sEbn6_Y j0Z]iKѦeHыj4A"n:+Y?*>MI0㪿~y`Y 5%ժ o3džZ#鸳)nvFk;D8E%]+FQf\-i#*L3}VX;YwFv)kvak,hz+HySN#k,`ؙ4{N8w`! ^ke4ud߳iPWuZ4?hk7*q <%ԨFXk .S^L:o*fU!b!# ͞_I^l*%njxW!buVJG^%m٬XRa[yV6br)vMޗ *m]!;eɊAtbɋ [d\mSZbI#;ߠSfd|>ٷ~zWr#$ߠNS$;%ZC60ҦHrKM!d?pu Sccv_!>nOţWn;Wbc<>¤ޟA8-%"ଉκԫVq6>/H2Cr/H%k]1SC(*X證&\DHD?3H Dj{F1r̺´ys!EoOw~ 59Ldo.K4WȪ6Qi3TB,Vo8g|<mwW‡Ϥw|Aӂ]ޗEwn51ꝯ7m@~I4sB k] B85R@m+*paaiC@_E\j}}3Gb;F2%4VP7Vͧ~{ԑ*LSPHkcTuClfꅔ:Wo\6^CRW٨;IRr1 Q ȕaSr'5; ' ѩԎ~C8. {{j>^R.roӸ47l%)YU>*YYwʤa5m*$󬍮^K_r.R}*u>lhz."-SҺ4u_ǺЦh){QhV}꼀K\K[D&ׇh6ڥoɮ7Of{g_`a˺$8%W4grfNu]026 ۺoLeR4՛=Kpu8d;tnasQ1cYv{>OA 1c#Hkwq:8!mc%\^n%7k>K>w'h~ausQ:AKG'-Ga xr`Tʏk %|WS& _ T@|]B3OWۭ*]#U%T,tŹ^Ŗ}ks7rWjQewv,.2c!c_B#D*Q& KI2Ο'Y_J#թ~e^uYOF "95GI~A'ov*~~u'ocsSU .*A I RƏnV%)Vī]YؔnҎ Ȼz8n VDݶwc7`z84G[i6p^})NJ{566ͥݽH0Q=l8E8)V3SFdqϨN+A wEcQj5k36 x趰3ouRKLbVo0W 4G5̳x'*fV։J._5${E1Fl&@gxaf6k \n;Bt۫WQT"WG2 (&,| SR5S@m*\ʆq`VPW bp^kR|)Uсi)eWz}뎻 Y@/;ȹ5~3 ,^͊"~a~A4gU"(o*lŧm}(8ma籅M,؂{B,P6ҤHt\~lK (HUM네NN8eb%pΧ5Hk\.m58,llV$HRRVߐh‘^*Ա҅N4@ u5_g#^VEϮ&zPςz"8'A{E97]7ZIN&ux"3oSp.AH/UZUz'|:f"wV젚E)?.0} z2Wn:;9v_۵ rWsH%?q{Vf oxRAuT [dqy\by)Ws);s9VR}nbf1GՏ#I- ðY&| !C.%k#~60n<'D~w?mjK9ҢA7 Trk?[i|z6kSVQo%6ro K:1z=/C_`/xGSͯ=d\Y9'~%|ܥn6zB$ hf#FeyO My+봮-%Vx1'&-"^ 2ʼn4T{e'|@F?h!UYڧ}͊b&y̳ۙ&ZQT!+;j4x=jMI ٩K}$|]۔WY}QC&%iwƭUTS|O(#ȏߌ#*frhxb5E{ij 9Fi-BOzu #_Ŋ"]Fn% .!u}oֲf>M:{U>kdT# ^Z{XYcH(@vhmiH5ojf7DkRZnŐT^G ,O<ڧiR:EF>/׃_!;E,g\yx;Qi嫻˳3 m㠎 t0i7|-?ڽZ4ӸG ^N1T?)Q 9M2W 6j"{ 2AwNEYP iG'~_ 0C)=3{0҅ MwA45eE~3`fJWVd]eyBŵCC2r%DwzB˷g OǬqe$8DN=Tp 9%3?8 `!5,R 8D kȚ:D-R˽wJw.0m{|j5yAJ{8 qo{% r Yjť0MB0~rF+82ҪH'#ru ‰eH8Lxh=a~`F&kCmj:dvn kF=`>,5 Ҧe#tPô $J!`~7ݜ)ame/LH](/A+r91]۶m[Ķm۶۶mnsc'8]it˷mMn-ErB#r?<OR[JBZX}TqRWȟwblJs5}8鷶}jr:`f1,Qxo}Kw\ZN4`evSmBCP*ϊfKb+`O{/̫9қ$<(ٶ־%M-_%[Pd}??*y5uxuu{;Dӽ+fEoE,.xMd&>x!x80G,ÁҶP[[>1Чlc<~&gElEb^i,U.qŭ3 NƟp:Ǵ:\c@xayhk7ͣB,ѣl([F%HWz%T)iT#q1 /,cfT̬S{-UeK(P~i3h9oNݖK MQDsY;Z\r{G4}B [f47kw[} ˚LQiU\A;@GŽq4:*@zTr ؗdav>L^d*Hl#"8byբ;dA958-dR)A'r7U3P ,-2_2d8ܐ+KȜUו^τV%>M39P#SQ˜R]%:c2S<:=bU(] 6Ra|*9[\.@95Yjw)Zr{1۞[.Z>l^+ɾ]GtW ŴX.bu-:D%-I74N; }/:=d@i-C68ölIKtƩ-fo]i3$|!9BTV,ehJɑe82c2k@kM, I~E X ;U|Y{K478ơj ɸ!N?;NΝ!\1L^"`eei6i\e{]^ZPJߊ^u[xQ)ۿ<u KZBND{DXM(#)D paAG͈w9O :G.m&@{HA wr]0 ~C,/=M[`bId/7Ffsw]3Q@z"l7g{A˻R-XH@*,񸡌7aߌXFo?Vv Ou#yifTJ_Ff:40b~邙T͕#Gd2!-۶ݠn1ڤǴ˛0L![ջD:}=ҁF_[~f!!V [wJ˼` F$x3vᩎ v;s%Tvf@ivFEƎɵq HtG SH n>\HCL d'{j/y{X .PMr3ilE]fźfxDG"u-E]\\m U%ɑ'R7C>޹ji[pfd,$įNOROH_ֹ^EЋ+*=NX-.)ЀOph7]dt-\9܊b<8!]k< *Eי;tȑ 2nj|\r/ip<*篞EUl(pçdEŻ؞ؿ326I,fm=D+qޖa;CIwz"hJͻU]z 5rwyնt$f{  ĉߕ'|^M$I@_2O~Z<&c?Yh7xۊR+sKT~ `ŕUrlXPi/r DYv)@{XBCg7x/>m.sXT{Uv)Iߎ]F`bҧ =_yZ j׉yoYv s5,xzy%\)| B9oՒ9jסuW{56G㋑33 2O-eZ'Y zUØzqU>^4f4[dp v/>Pu0 >zq^tjQ}.-cWvX:iI__ZͿV6di/szG:x~\LZ|ܶ~TSt:ʣXi a{w^A\]ۍ'ri!n\Uo#MUw#ҡLX@\Vsep[O仭qMUtplVq#_<]g6||jn0TUXϝ8Ninya|̬3M5CHʜCo,^E 9mP ;H)SW(>~KB 4U*߯*5J DHOڅJQW42ƨ۠GpƼ<_yvw@>K}K%^I .3(# ݓ p.(M_\rƙ~RDAHD;džɒj,?߆2L n <`R͙*`7,'vKwV`^e +#ױĢ521Il.vk ?r}F^]c8uԡzCM4Cä~縷JZgBZ]->kl^\w3۷pe?F^A+0> (8Dr]9bx-.9 *αw*{;!1ͧ ̳u uP4s_-g/-qVEz ]ۇM*?!i#[lV"IBZ>$>>FZת*۫ PK0Ƚ9Bo&HH>Qc$\S]^ (j1`np8D.r#KٶHļ0Bq"/ӗ$ZzṫSAl@}^#V^M1Qo"~$(a*ץM_Vُ_[4)8B!:p$Ļ]/.O?uú6%]k^yf2T~P/vf34cLIWIKر|X1eBA,! (7 HHhǹf#-as\4' BXSj|&{@)k5MNb_JIuhD4-oe$ƓfM8Ə_~2_`/.7K`NV* _6]:}CLvytjq?q)CDq_[*ՐJfxI+PI}/SH.*Bw8A".&z`PjIbUjIi4PzɳASɩKvh>^@$Nh@:*kMIܜYfӓFYn;VuonH ήL=]cnud<:n:u4q@Yoe~^3~ѫಇV1=|w|nW rĚ9Q!WyJCR bT&l3ӵܰѩXa[Z^] eheyGر"#;[I7v (ZЧw#a Ɛ0JUzs^' 7,|?uшSyޗz&v=DMJlOF6J5rοsF|C DȪ`]l0íNx % A;&H2=֨Q3㵑ć-_[q0vC9$2ۂfgX(Ӷv1GHМSҏxNP N20NU4'MlJqu4˅>U{럗^k.j\1ʶ SlM<;(z p7ƭZ~#ķ~+OGk}RWLJG 1{ e3"k? pX$0o9[`-Hՙt+[,w-"qiic]daKMZNW R';HYxݲ^f30q wV|ͺ:xv6c n^9{1#+U"Bl>X)q[]Vi'%~{r*xl)#!hا}!&j5mI#&w^"QY<FE?+oU!<O'm<1]9nmu%-D6fM^I\f{07ǛReHi孜tѣĻ[bGFb]f6;pIwe6YUC!A9L8&^rolp碌r-!v5Nup)fR\wD1 'ZRwrglvRS5eI(˝\Ph>^PYt""Sd~̃Bؤ=Ť|mz|xgfai/cV9wq,;L[xd\sQ% `ϖNpH|6H uQh,=?sTJi m\ l ;q¶:L1ؿ8c/ܜ'z4Q&߃9Ff?)z̀ B,#6'9TssHh."(nDBǢvtJxG2wb{WV?7R&up>\u配DŽud/Pk`V)rQyP?CR'+3&<"ז"8G$yd,ՂcɊa:yX6c*5vHlQ9?Y: 3ǪcȉojߝY/okC!$.&aA-Gؿ47C]%!ҘIj,`ߗ/PgtމŅ^wTAfjGхJ>3&16@2x!Qgvu"U2 ZBuџTϞ[ +y}Źߕ,7ҫ@ETQπѻmv١8qhT@)&;A[pz!^yQvw*Y0z$d G Ol'xoE]PN֯ +QN`}ynm77cBZ q "f.{u%qH֧2ڔ#͸B|l9η'(>2c'gD1Z1>\5腁k]4o;hۡR#:ێnMҵ6,+ M,ZzINCK!MP';>Bz>@nWbgJt^sc!wfޥb S.z'ȝ@ێ9ޭ쭰uꁞà"q|b*7o5oSg3W&JXuͪ 3[sEkp'8 63Ӽch?Cd0(Od <ҥz@,ŴSqZ7"{x݅[:)cc_uCaxۊϮ:bHeaXdV ? 1Ok]OBeFz?OK\OEp9Y1Ckd:|׏hqN\m fi&;P{4y|`z.vEue̛4͕7 b'=%8$%8w?#x 3dis~3 %!p U\>7&ݮ /A4TeŤnMR_̷ΦYׅ&hL9kiƌ[Bb$0mA39E*bŸ&%b1M"؏m?ӯ_ko{-)ֱ&}.PU {g6#W{&Ԭ Rl8Mg/:6>whY{.TV| M?TG?;?]ZJ3{#yKƙJ(:|y:V,k`/Mnv+$ tI망j68CBb4N[7a[6" wб%BΕ2&הc~mN*՝ ϐ0ś{Gf`/rY52skjrQ)58k>yt_ƈB zJq5!%.V_`/ 7 p,͆ 0ٓp \iA!_SYIxЮ)NB9oՈ^7;8kDmUEaM!nas?Een?Z/T}l~]}¼Z/x.I?{!x$+֌$_"hg~tX6}ap*֝_܎zg\EXaURCBc8zqP}kT̎%)1T?SQ|g,>#i_<9:`*4ЉtHU^kjkIC&zoᅭ K)u@HBxh~q JQZ$aiR¶>rУ)æwA; 3M}U~h*ni<'D9ZoxEwٕ7.H./s<(7W5& 8oPY;и *^w Piwj-AQ<1L$-7ߕI=_|k2ѬX"JcpXJaXJUs݈ZI .p\{YN'z#q7 `‘5#nfg_UjYjeo s^k&A @5%,_/$SRSY)[HnIWFzW\"|9!Wrl -c:38 OqI>Y@4KNEBL]TXv 'Ɍ4(U6boE¬c dAQѬ툑g9U<2("̵bw%} V "ȟS b Z_SZL?b9m5ӆs3 {0]x)֪feݦgznٚj3 nI~:Dx@6­].WbЯ8oQ}Np=h";';dxs6)} `u(i.Un-gPZT+:;!#ogc$jjT}TW: uڡ+ d9F'%{X@ Ot8?Sa U 9BLwi%n |EM:J"/fMS@X){ZL"R%ZBDK}$7FQnYVڥ1[,٪3\p;cc-9 Q+^ #rLЖb.0涀]2_sUCLIʅɽ+ KE||F>fz,9L G,ю/W2[ȵHJ,UJO>Ā1Fߩk|̼[q{mCWTqZ ]IdWK1(+iF︠ ('Wyʅ|"HNj5N/ݿVmUqJq`LAKq񷏅9Ս;4Z6eefMCІJX]5 ű'+DNĝe-C%^U/<3%ʈp#e>ZdW-6;z,6#;NIa|eYa˲AgC4j;A܃i|Tp ZFwL^5Tr֯ <( Jһ4wUĶ쯾Tm0%?8 !\?Ď~A@=G"=0|8gC6 dT\8Hȸ;~:1 c_R[h1dTxJrQit,`E'Aẃ.ȅ@NFIU" K]\h/ʸϕC((o' JZ>8ݦcӠH2$$`W׼i?pX23XK~QOwh~~^Q2]m <, jT, rSSٳLG !~j;J:WˉHD՜l\I*hE& $*cm]"$ M/"7,PkXN0 ǧ[fbq*(]?ɤv25@NT+\[P$A{ժ`_~A ӷc@]=Tn$ ֠nc -!P+9r$tS THsQ lI5V SI@tr&.qG'XhUep$^QZNsVf*M{tKlGu>MZ}}uӵ+g>N \Rψg@uMP\zǬ,=XЖ;$ZS#fQ=}WBBbSQ eo_qm딃sUG۾<_Q3+짰ݎBnfH%-L$v˿~-OD#sit˝knU[[WgՕ[YzB E1 籵Ae|Wnݕz:v9DWee4t[5R>TR~<"Q- pQ.BNxvgkh焾S`ܼtP%|Wp߫\H>!Ӫ=86>vY6j^_wn*zH]L' ^rĸS[R~5r^x*`}zn*=U4!g.4+]{]L2ߎ3E*uY CsTUWKk%Gg)tֵFJjC3[E\H3~w`;Y<ϣ`N->ٯQiwR֚UhAx(t&oP>+е#;pcRpOPZδ2)ՐWCrT\^ VF)ļNʫu(Wpl/xoA(J j{ ~" s0T?`Jj& HIUF3P JAH,+|dAfh@ A &jgFT$={oXlumONh?M3@Z Db ÙdJigGWsj-1~a4A;3=dBvS-EsBX!b %2.<IBn(W%iBy*긠mJYDHqdGc`4J'z~8R;`KA'$zo5io&EiaG,+7w8iOIBMek3=u O,"|ԷA&)/ОM'F@Fԩ{^:Q0&([@ Q*P0 ,q%:e@9%AaOSqߴ8LubK)4}Pb1hw 7{?p/;\6N)T%HkFn~4r< 1m8)p Dk7?έY +\;\†.4sOs+wC2D'\\9 Mox6&j/8_Կ DݥY ?CKPs4ɖ^0z-."NqJ ]!JsNMXaa.o`y [(m24+_t7}Ӕ|E :]K#K& }yX0s =Y'm#kݿz򶑢p3?yӭcWCJ1N=wΤud 3*Mgg䇱65c_r ОDq,+ǟ7Dj冪eh.Ɠi*urnH 6^EST!*ӷώzˮ&j+3W6RT:$c1? !z>eϪ\q6k"(h 7| S^S,A:|rKA}1m Ēo_(OE;Ap@w 󍶇I5n_Ff`NsVZ (o ]';K=lgh feTIH!27D'aoc [lcEۤz zHA]Ng_OϜ8[1!{+KA_xۗ`}ڧhKj7* &s7'Wm\Wr_M:b rqfK[@wݐGqW\DrnauQ+݃Bf|xmPjQwJܯ6ܯ˸{ᅑIkWh+ u ob4:MmTcd;(a1~VhԆ4`k:X9WJZQ2"`fԶY|nR6^@r쿎aCE._+wa\gze=/XzȖ5q>%\[HQ䕼x3C֣(v#9X}2x'w=.8!Q:8ql/r'u6B5T%vB+.6CwzW'\\Mͬ #u_p/qć㭢ϷWD;"MT )3$P-Yq=01 % TE+ Ke$s),bv[h}M vҲOn+8>T؜qn~٪*Xaigz>ǏeM#zPrO/Eķ^f$k5D^־;Zz [nK>G.Gd[\C4\֮S67Ě/;zsk:8'[D.5PZ}@m{h5_jMD=ˈ-.39vu"W8o;{ǞAf]Lr- qӑqN?jrA l#I=J- jTK(>`XLTF>P=2i[R*['9ÜWT;LrH,~ iо؂KȸMy ]FOْdSb&{["$MtZDƩ&DZV78#-h&2pS]~ I͠ڿ5{Eu1 Up1!bl,HT">| 7ogH6]* z2 ~,C'nc75D'0\-(5Ak6K w?r $/P\&EƦ';a\? $KIo'YZ@!&ߞPKaYة5p/&;ȇthg/z@u:{0|X̠9eSj}>L~q6ܪ+πr4eg<ۋ}D;G 巕lZp^1rrKNR BJ Db"\*[V6xUܱ"*qZgA'Y^+KҬGp<Z8?yI~Kx@OcVyL~ZeN]f7i8}M,$0  EG{%}6o/KҭI4Kzl~bP61-u`ہ~l+p%C]6;S 3L F {v B#8?sE8~{Uo#b2)5U  H~Aa&QMQ/~F9H36FCi$-LBC\-*kܽ#nJh j7Jq!YC> 'baˌ&v_`vP_H4jQb~!Al1qt:[ͅa*BNUR^ UO mN7v .⌭AX]",VЍ~e&r^e~5{1RBlS _\QwDCjp7 vD_XV‚H bnañLoJ,x+M8b^ҔʪltT${,=LֲMZ_/3 ̭M}IrS?A.%waJ~s ];sQ?y|a&_,ָES.D7K=6sr9)l>82*5<'H{cJSێrpmN 1&#L? chXTBs,G̈́?JbƨUjcGfBҷ1=31].ِq]&Nl;eKZu* #p~'l=0F=ˀ^"GHL~n'* M#-L)fٚ- sn#n݃,bɄ=AaXMx {'.@g}跏+G7p~IB ",!5l5~Jx}.tזG4gg-<ﶳP`*6LTeCn![zS{_(6I* 4.k i*m /6TV.]UGwd妉ZOD!{mKgu&f6rw[ɚ#KA6zdn.wė&XSs~(P^yL1|X^ik ?5hM/!Eų*G&R.Qa!D;UTA{"|2vpXRC'|mc$`E3@di- B"B"kYM#ʇˊuOo: W>>7s<<և#Hy o,GnH3jܵI9 ޯ"qXS=cAj1ˎ ݻBUhRң4HۗU#\-5:%1nd.y |X99wYR;ڐࢡM|P+X/.5#3S|ߑKar?=ke@jx%2HLZnL+-\JE>_f9>V@COTf3ŧ'}4`-*^7yV Xd\Y1h\y1(+'3>p17p:`,Nq4%%C Djs4-:&Co6Ivݳ]mka ؿV+~6:0h\fsLe% ؂+Xp)h2+0ek?W:Ӹ Y)y L*~.CZ$+n?_nOt<,g0T>V}x}wXA 7^lT -Yl3S^żܞNl0ҿlhWK)x*tˍu(9L/m0.r3# ԄǔwrWt_]J$6 M\P&Ʊ{xSU/n g)YS=hf؆ /.l`8`!卤]HhgT~u]b='{u7b՟@@1Z4(=1 T~/`5?wW?b耜X@RoCçO~bM]MoVom2ԗ¦=qrkN1lx+ýc=CM,Yԡ>&/x ѯ]z21K0`źC*RLꄷع oOڅy ~RLvЇlҪyk +rp_7;JáM_: 1Ir3;_7T]k\/d|k߯dhQDտQr:cYY;S ]Úb4%.KvnXRDp& :Nlֽn;,BQmՁAԭaHՁ.sv"s?4%L}4>Dc_0ӃO(JPرo-/Z]t˪HuQRbcCsuH"RP=\nCgl*o{*fW51ıQ X1f>rE8W5 /G>těOV0d*%ey1@TE1R) K9LYW+ NPӌaG#7:[ tBex;!J/bBK,y-e=TA92C"f:30 5J;@Vy 3 Ι#wz> ŗK-@Gw32Ԇ,Kv.%}ȆfޝW)kHDK(>|r/v)~tn7J#$tR1V:pDJ UʤP \ɀ*e'C7B]C 8y.@Z2MNͫ3]u muMb'hp7z#΋PK@*]Ӳެ`w}K*}z21rRCV ~~ 1 6,ez5p'we%ޘ g0ҫv#T7>BX.TQ7gP"P-U7C `̥͠jP ne"1jVj_s4.Gfb58Y1UcMbϔ*)l>G3"|Zwal;e ѿ)n!{2^׬2H cu>uHS2TSI5 /yjmD*g޹.4]Yɯ;$}"{5/ar;:YRc kUĻp7¡Gj]vy<꽟m$poTяaRƜuVC gi9͌IsZ<9Xl:QE0ToMЗU6R0<洛_Yrl! Z{˄IiPG*Ëv\ܩtz< `nZ!4fwF'<2!xa-kO3mu-VϥGhIC9'VxJzjs;Gc19h]KIlnUB:i0(0(L^\QD|/4ujbL șYou|5AD,Q19v#zaJ.Vs#;bz19SF(suwȐMr̥2˟^%oԎL+,+{R7-c좢Q& tXW' ӳLi?WcGS 7K*lfM&^ĮKp}`gKȄ^ sA>'xe dA:J\۠)kŷ e*l,6 0&qiL]U_IF!9 b9pZ&5GӨN NEclb>hS>>^! )֊Nuhcidⴋ-miϕS,{Axvvr=|\5lD+;p0gAo.g224X^E403Mͳ#Dq^^НP099ό5I}D,,,F lj?kS9 !4U#5@I1⑳̰ب+bkR&Vh9KIҌcK]!]KK9jy;RͲ.^$n/ՁA|kwެu3Ane,mN>qu5O]ڷ w]E|tf3d3751OLazCz0.nQ$&f2{)r^!dCrl5طr*y2FÄG~!?kܜZlSq6)ȇh_/L;Lv,rH\>YM+_7+(O5H{4xIgfb>Id=g415a-lNO?CY; = ybp\#L~d!Z]PX%}/n߽=713J*^>._4t/?rDazKN"R4']d{*"9ɘf\?E>٤@/&n=#bp?ʫF~.a x~ktSe8E=q@a#%}xu8Ta;x_) UƑlc (~a9l98Smjf{H#&mYqF?5Um`օnS|}忐K+\BHW%_[ۆ; > [,uHkFXM|pMjmJk}`h͉r\J7umsEQř+bFZo->LVeteDL&J"W c:6AYp]8R~UC-P*]2 MJ}-g={ZZr.^ omL$m~{́fF!K{יY]bV=^oʒZ4`5WXo B8l]inB,'8L~V=~* !°-u,PP޴0?7gg$yT8A<_gcM+"K%Y[x2<u(M a`XxV~ϡ?pAǘkLW`K̂8r:uJEETrjM'9kc _eJ"%@K@JiѪy&T{Hw.ۺB'/tMjU G=$a_#k[R E7Yz:(HE~[pn\ \)s2% !.c(otut5J4L_RV1O`oĠ(! .NNoMA")9H`z|'f,[2trI!a8(.B&(.`秗="WsS':lFNO&RErr_/i{VJt)Gm鬁Uu/5\m-p饰gCߘT> P<rFPnO%H/R$MjiypsB<])ܭ|); u[s&M9Y},ꞏê@ \/^AH(8ZJhz8QҊ< 8)fp4MPDDAW Q-),/8 K-=9OKr*҅oY^P7 ż;JJIVP ,w u{Wj"Z#< h4CiurCh;j 0S+yFܖ0bm!_rY%4/!mV *-)̴ QǿVł[TКs:*b{[ص+> >h,~IОFE> iS!8xBN=U|긮ee4]le"XڜG*;s`Ǐ/l2JR,PHFR̰ݧR#aQ*V|yh~),Ð$ZXP'5p#>7#ϝSHa6vocڵt"?Su0DLCOhX;r1iu?5Qӊ{l@PC-W^ZVvBRSQ&.2qtAW=RhN*%~{˒HJ`dy}GCHBJKzccϢj<|D5Ջ 該_XR]xT$Ju燼xncpԛK9^#e]_䄂*( 8Zw^{_?=.Mg)`X $ןb7P[Oui R 0,Ly!43.ޚw\RiحKAD _x]{)s\_6;:*$ZBS/2B(]((YdmP D 19;ݝޏGGLT+8|&7NiPGݾ39 `m}jQ9jƕZH]3En'mUCݟO7spz^PZDxX[HgG*Sh9`(٥CA Qk&}- #8 aAlV:\<6ʦI@n#'Gn験Ph`Ӓ(5z2f"F@0P4)}jOh{Dz{TŀPF $i$MTgKO?7qm|# ;<4 SpQOQ2Q HaRD`m Y`sBi9pY&xɁ*}^[GCO/1ke=0wOj:zmz-;8EzbNYvZ_<ޕt]ܣh}v-HԢ)xC|† й`.+|$ h}ncXL mRdN]{GP=-urGso!uI;|Kvn_ki = N0¨v0_r◾P{ $ax6ʈ ;5N/JW\eT21_ЃczFH>PHDo<qAC '"JG.yO6|R'|"Yyڻ΁1" t+5ZYw} Hy駸ԤTL}ffSؑ>ʀSvժf fb|_j/I:] f2{>-_0,f((~ 쓪H&1`>$1h&!H6{*5pwR|FaNo| j <śtx- (~@D橀z m' 4Lޚ^;7审/Myeş"(W[C1P:;^022{`P|ZzJxnyԸrx?㮜SEY"yؘxQZ?6DQ]MW)ؘj[4B75ABAZ <+#y8PU2mQf:tezHU/a݇W,FDtM@Rg t 똽UNFLW 6=rxmп-AMXOVΆ`i2C1ǍD„V]rLg-/}Di[t9TlAfZì(Euuu{k f?Hr&ͯ-j;5͘G3ɒe`T) C zԑ2+<{rBZYÓ&Y&d[|-=Ӻ8-0`aHoK>N^a\( 3/П![Bᕷ~~yp^a3aWA!̎7 z ?'w,Me'~I_*f|d*$r 4x/aB녤. >?js"g1-*ب:}}2  0N[nuYox p[z>s3F 6+V=ɵfZ4UPAGv"j3:Eϭ.#K4 hQ.es $ʰm}9z`"2Eډ<|a \NEHc-({`&zӏ Z eP=x`Q/ A so`ylk{6Ŷ 1يp/(V]@k_Ā\siinmshe`&窽ބ@ pjl}\R}3gug{Q$.x&xL3WCk[5~\̬[0zOUFҟcf q#r;@\!ֻBʏE5n4Ód0@Z-ej¨`^NJ,9pZZYG^ :xŎۚWKp~$k;8v+G.M/ɃK Op %`k3',رl UQkP7*n[H>1P&`x+z 3@*6S@W%4QkgN\A{+cCVî2/H/˯Hqu1KT/sn9ϣ]FBuoLT4g?gNf>7KdhY"#hgro&hS53Ko N)JWWL]*4=OҨ5Qoc~-yYjionK0.l?.%^@x(*襧#lckh0'itk ͥc5_|2Z#8=`oT˥8YnAQ27$c nI}W[h5U[t`n=a=]՚MT}DXN/J?̂w>E8B?@Z=@tOWtSi1L(mŠNCkqofMsw.e[i%j[zE{4G+;% U iË&1g v̽>dRb/,=NXF#+ķ 18aW_pDP zs G%EEQ9u]>;/# Zyug$3,bvQM' >B˒v\?@{9C( Gk} KQ9yes!S.~Bz%_Wӏ(Ž<pVԽb2(L-F[G6-z)dPe0*E>z< =VhV~*N>n\Zuޘx pnƄsy8׸ftR/M8IPgZONӝ6A_snaN{L<$MAXWoR̅#tVXe๤}>C7N#Sݳ8lx5^Ȣdְ֝2-:nOsm%߅x vy;:nSk)o?L:K %p $nyƹ*pWsroN=t@XRk9ҫg{aY0Hz~v(:\C~ XJåɚ"wgR/o.u :. R&قE) tQqpghw/6һ”V;dVKX wo c#iӳ$uǿ>Fҩf Y~:Do c}a_{5+CұA7"ogRv.A̅# h^7h9cK_NwYwN3ey%t&)JE 'AclcKYsn$tP}iGBbS&E 6Rz 񡵐3%٪ kGh,DH0Zr CAxpQ.sJ4BkLG="g>QUGSl4TǞx-"$$;J艈6D% DfBD(]:wFч(`1w~y맳ֹgֹa_ ywy{$5з Jc(`픧-ΜlW>T/[j5[Yx?cDr;%R) Ћ\†O@n<E>e'MBC6$e@?o(V үz\BTAfZaRPӼٸ,@tO1,6w_g_{۪\̵ܷaFwOJ_rʱnx\-GZM)에T|{&6J+W$[ў#uZb=`$Ǡiaw (m*X+ Y㇀ #v=h,3h<즭M+trP˳C7N(H B!%_Lqϸ e "c)\=3 H6"\ =h=K(gͥI 25F~vH2v<丷2d0T|Dq`W6?Sd9خtҵ&'>-0qFh_#bgD F8VWZG?΍?r&@xύBWTC_isWZn naB0j'>7) {06>?]3):)Hs 9Ed 7; φhTX6WMɍzzƪF(|pus&w_K~-iKu"tmoK96å65yT'qeFu$euVpx_sR38pF |AU&f)ŎܖϮzGe\4q=k;2-XpѭVj5pa{ UՙӦqhdg6vvsgwnڹ5ôc]5ټQJ_i^3ji?dmtrb"nFӇX铂,rޠ]SgY/ŊW +vg6B67T:+>S:}Cj mF+B|K8]ƖusOW5o 'cq:S>o+f<HTX,t´S"{_*w] |ak%S_vۂO8/?.ĄeYY/,eyC鳫e9:|9ux0^$,EFsbk]O*{u?*ЪiTӣXtW{y݉Yaּo*NK7=`rZ;i\~zTGxL&b ?r 08r!yQHTj+mӯ|vkLZ/T6 KgnzPP@%}냶{%| Fn5n7&:>hYgΌ n`B&9>b{&sstN*%FzZb`KF ,;+8juȂh Z aԈ vMyYzXqxto2d7NMg915t|yc&jhGt*&Hymw{b/zҷ]+鬉O0~p?<t 5R?b?s|Fz:& cZFy~k6 =Y5ypbv\xD_p;jb34ʋQ}8Ɇe 9;wƈ~cByB&d LidagNHvzY1\yW.r"DžЕ<v׻A +8+QPu33m߄h#uPW)bW >e6ևs!mNظ؛ES ppB WyʆuM4?]ޖ1REd+L<(]x^ ],QF!vteԨN=Hw?JE!o!X})aUӗ?_[~X9=DW™l\k%g:͘%l| ,k(n]0iݍ}(gq}ޒO}{:@ns^>FL\Fd,>%?9e|Ù:y;r&?|wU^? +ʏ^ړBv(s&3BA: 6H|) -&zS? 5lÜEhh ~Uk)Q'VŲm$;Ҫإ Vek,\~WLF6ZՌlN_ǗA0(<Qp'@vG~? _jy͚nT-̀?w/i<%{m <^6ƕÒ Vq^ϝmTV^h[.c 2 X(2@;?gv+HW2v,3n^0t{&T͛ف<6EpQݶFxjy]HKo-ɷ263%D0Q7YSu>$ӈ%Dw'C]'c8 d Qy})_$|A?ބF,Wl:8Rh l YN̏˟l耾ARDՃW2!LݑKR~z]Rb6V| ypOtby5B3I zϧu¬v@G送tsҋ* \ WM6/Zoל]sUxAWގRb':lOџ7qiw2<4~M;ڨc7[Tzhf' A>֩e}Qf._sa.`^baaEߪe~MV&P6LҀ8de}M90TС P'E+,UdLv̲koL˃P ʽ&3$[y5?"-_'W\1tbܯ|U,f=/jzR>%o>UaE[:Jch'MAWw&^vl?]*f wfv4dcPwp']`H[|eeIǻ>v:seeVό"YC4hۭJ@J dD|+顫{$ Iq[X LVFL!IFg9TAUL& yڦN6@űT'\w?LdչuP{[cu=PRVWߪ:Ma7|qx.7]Vpν/^7WeumaQx4~vs'&MggǢdn,;"83j(Nd4WTfn7lΟG+gn~۱83O_aGhwxT%=.WV;ZX*+ 8eG!O|"gD- iع)~mROk6rzYy^7歀>L Ěft9T N55nɷe K z\?y#=~˿ <{^[P8ꧢѓT4 tDe2b k|Gh)V9bJ]z%&kh*V۬=i.*l%Jc-QLlJ+^Y/f8@=k{A{Ȥ?&Lt&DGh دx2c2> Q/#ʥWp'F%5w$U߼2IW2ծۭ!%O)|\FG,';Vd4 PS"UV_[P l^d(_2hj{ ,|/{AD=S0!/ڲöaӛZN o'=V|iDOemrv?FCBRY!yZ|aڜ FGIw#LVi3#t}Bmny6h,[q'EK`c ֫?q$Uqs wKË٢s_=y{E|z5Y{A?ѝ/0ȝwVv[.tcTJ3؈ݙv5Zwߜ2kUqG[,HG(m@XzVwQOZOKҶ$0ۤX_zug㬤;M )65|X^l.khiCquZEM!:)ṢI2 +En >?f0`d)OgCnԺQeWvvbM&G(xg՛L&WNJ(ڹPhG;9ݢ=EJ⥪y)Fю+*q@'󭡟ZdkBK6ϺNow|~_-'?Vi<eE: 7`mPyhHۻb ;| (Ď+ش<$S@7岼i&G3] ks /J FX &a >}R{kE <4c:3K=Ԫ,JOaP$z& wR1tvMQVoeÙN3N8#tgh4Fr V1| L݋U2Gs T]wFzhbxrA B 0Dce}I,(غ-pyst<+]2䫋wJI5K 9W-߾G l\2ؠ,sc<F_^a.]#t2ns}ne!|"lTG#ٛu9/^Jw`vܼܘѵE|_wx@Ԙޙؕtrikk4oJ'Sl2.刪M.!MɁ fU2f6/1rFJ5q ?rg#za\,Jw?y?KT#n\;}ZLm|>ma }RLzY?нG?|/&܏B<+)I??,1)žO7|RG;#\;jHߓ -՝6/ #}ĞK3QD3DX"~}*dY=ݿU;aD&sM[q'C;Ni(׵  M İ#o펯dؔ&8卾%Q]6Rr!!ZY*ʘ7~6qHz]$ YQ1zlZ.Um2C MIK`mp~qZx!9U[lPe֤8tK& cr΁4_-'9 Wn1giT_IOx <ߺg/ؚ8ɹkC}-|o& !9'תm9H}\KY!38䡙坼{YBVOf )(C[.MWSצWVx;~Qi|3hGnvI~38_I-S!LFiR?ʟk{J1߄S/15[.KgF G&lG-ܿyFRn2v!q=ϬVCEQSՂk+Pbcqt".GzgnܟP,s'HoRܿ˙?8$ߍKB\=?B:Gz[WO-kiӡߞr=aYxi1[ҦE^)1UPP}}v^2c` mcu>`Uw7rBb 6zˠUwj!/z~3bnkLldAi[T?xlK^X-Fڣ#՛7a)4MzaEs25:iG!!thľ9Kvf"*cb? \? }pIX@wƉ[GH@(NrUԘMj4iѦE}}nqztkUKfLlى9RCE$(5Vz ?Dohː?_\ErwʑTC<+=%3֖ Â&&DD[Of!mCiq<:B dehOgU}dYsj.fD+O*lu9 cHtZ[]5ݪ7tSBҥЫo,.O1iZ^㚒;9:;V~1굯5*]=9JY'~Oo+P'"1$l~Y+O& 3c.r%yc..漿roՄ6kv"W[vٟ=18R٨P Y{S,t6+,ۍ,Na}f3P\CHKy~?6$2K#)*;08$Hdyaa_4C{[F.E =TFW|.Z3>ͨ{mO.}xo^5x (*cз`:0wWs#-pp@ּ 0vV轧ogy2IYmUF?¹Y(1lMK]@e$}EYpʂ;vs>u v3lʼnm"M ?S܃C xC=%.~=q].=A0B;EP]c͊tvTZw-EMS$,ć+XY &e UxZi}Q D嬊#л˦l SbcCׂ޺"wu'Xw)4Ay߄”N""C;{[tԡSΑtMGppp1@\9VL!{y*iYpERc01=]3AYt_eE.js%{VgclËmDic8Ns \X),G$S6zG l!EwZ& ݺPpC!Ԏ=;?1*DEl<6I0'to3HbAĆHe f݊Ćiiih٘uڋ#kU8.|/KKor=JM$I\ ($#!y5j`~Uԫmnt]må6*6D"O Y8鉟?eJ$D`L^1(PPާ^+;iTNCcI=n.^^uu5uzZ Yg& ?<8g>$'6mqj{Q k,9ysw|1~368<2zr i5$jd2.ssNs#7.֞az=)p)v=nN#HXWXKr@,,SKZT|p&f',X*e bBEk.`%8)^|V369Si;:6Áo2”O {x*hagIv(L z4I~T0jKGONh>Q*I\T!4$>P@B>)ę <&Ac;¼]M!$٩=zUo[^{䳧|Dbd0GbNHP$6Hdo@ّdLH\iWd tEo:4%9-eLh0~4@' Յhb1t?6.DT=g0?(3(b^< "I;2:1lPMij1+0*rbRN$ƞE=nғQ/'#øigؓHCWް[wYA9+s*D~Bf t\y[jD+t'~`_%"e]-Ub޿C%nYx|zX-ڥ(GE5yiٽgn#ߝXNA3Ty<]d8Q 9=d p.w|mC Rt]fr ,*Y0M RUufitr ~ۋ5dJJ7-c7^vVvߪh,qEp x h%HRq xJjw+x;twd1lw/$m U 7Q5 H9q@ť[fM8.EһNc~ڹJt$ؐť g*){W-X(a\3Jh3/+FpXoyN_ۇb0q8OLy͉.Lձ40M-.VZ C^CazPWz qQbD[& ugFxH'̦M``ƈZTZ !x'J5JC;4`w@x6>QФl@Q#ߗ:γ)ElOV6Ƭp?^8T <'$QmQaTM~t vFcx$c/^ ?İ]q3NhjBmhшmD,[]ˡγ"өlO!;>=eMXûU1"rbJ9hv^juPvP y @߻,m)M@dC|mrFPJ9n#x`\dHB|$h';BOr5ISӵ-iwS?k`ol;^0̳2( 排}ȳ8@ICzB P3!Je%3N_8~(CXAz:5<,fC: CK~GD{bb4ذGF7-M"##$.K0K0gTEVtpiMZinF8]o Э 쎆:UjX2dmyɋ`^gF'*͐v)R#٘sh% Gőy^@(PYE Q)bwR2o{* NZ5?> Ķǩz Sב!lsy7H)9֢q i~/j%mTNA=S!`^l lQݣ-建>=q4amkmvM5|ȈIQY(֎AD6DŽuu.= `"$0=%X摲,8vkʽ,=A %݇byCgSp\E(yAḹ86kH&׉[AGcA?qJ,_HFGK?N#UuF퍔 Q ?!G$"~<[XyՅȳR⠲q;[bP^<^=r un wa-| yQ2<iﻠZ >-ʺe`jP. U;к[\!09}\g,SHDU]@?{uɋLefAT Y/ˤy)~QQdGabNaR7ljҽY:L^$Ɯ$z3Y\{C-[{J!WzpC'Pi\q-Cm?[[teCWWKfpU,^Hގii- UƐ9O&Xme\#C|n3__j ~>ӆȯ?>xM @i"4:-YGCg\&6^Qa.X~c)Viptwԉ01Ĭ$#$P ܪ>yfUb2t ]iQNqqEKc|:B Kx$ TV%pxt)k Cπ'5΅ᱧ,y,-ˈ&oE bO -04cR=nƲf`OY>(俦m䕀ܫ Yh wm7M%1ѓ՘2 ~8e5ǃ"H۴&x.A9ӓ2t|?KO9JAC q .-]H{h.Y[y[ D0L#I+EJZEȌI{!q{ &Lu߈p6wty.՜2)3ɷa`Aiw,)񵉍O·)@}WǼqހhΛb Nm:; N3Mm$ xwLijdxDy-̉x]M"؏i=YCa5l 61z%Ӵo A}^P7TTj0lq$p!50gSnď Jwe$gdmn/hgd<acoH),]w`7)ZaxPct2a~#ʊt9zB$C3([J;J\)JmBl{}@a岹1; ;R, \Y_[}Hz0mFpbb 4@{0βW]g[qZk_o^rς>?;+QBOWHL\=D7JbdQ^V8f1íkpw®ϭv9i#Wv'~q H=4oUVE\e $ W(Wak 1PEzrr 2QCAAJá)!Dٱ [.+Qmxg t s\NfQ (u#n%LfF;|`若L`FIs|F*cU6Ja@@ >Ng_P鹍YޅND*vO,BwaL04CͱBZ'v(߲k ,$XiG3zÔG0R2 E ȋD@&@}Ph%qo e*C ~էc6+0Q2"3vi } tϔr}:Mb?uܗ"A cN T BB+hr7}xv+X!ӉU:CC,"tr'_\i`I-mq\з*ք@}AFQ{L Z~ʭ)Ҽ JӀmӣ!,yX һ׾2Wȋ$ԧ4#5:shS$qq˙{rHɼqt_Y& u82d`%d ބb Vm֭8)^L "7jw v C?J9 `P+9v_˧Pmٻ,]Yګe[k$ؓl?{iE[HWkˉ˨l?~[iJ"` ʛui8,QɊ ?:95oyqΙqlR($l N{+TBjFDKEJ`"+ [$( :}ڜHnN YLw5F7NFF$7@ ڧa8)R"Br#8?X%I=J '"Jf]&KayM9qu*,T/{WVKAWLӭxu5wzxN@jKv礋ʎ#Q wUGB;%6Q˴k^Q8w?R`"{lGjXl*}ǙG>XZlO}'t [uYSP8v̭7?TR_0$0؀,͐i{@0Jsc໕0ғ0 ?Nh3j`(o_ vt]m,:>ت*0@wrqw W gP>_-C͑zXbPO|ft(0KFA(4˼ڳ~V:(&~$͢XTsG$P{^IVfp!x\fRBf/vzW^pQ2oWi P\U˥%٭} ˎB 1`Hm idL8qĝKhGcnPoff!bq1(Nnj 'XQ I*na{Je3*̃H!%87I;Y^(ոΔCf@b:p`z=˂V0kz]js~ۢ}jWꑌ lB IjS-Y!ȳ yH"Fco;RJ9p0pޘbk5اb\m5:HRv!dS «]F8-ۈb)UlB.q Ouisf)Ju4`5& У x94PnOOHE˛ۇҢDiAE +o`/7&qq-̠)fցE8?݋yl?Vҏngctd=bΥ6^m["ɂp)[XBxQK+wd2z%o2[KGW$˃V1 K|uA ~f> f.:#\kk+Xa*h GDgS7#kf76(^`lEս˛Zm迬=W4$>J}qJ`[Wg_.,64Ne~,D\_ڡvK 4weXj=3zm]f^x: ɺ3ɘ~h!?S1+>䘌Цϔ+? |NE5?(AԧeTwX%[hP)Q{w[=YSy="T}G2s;_+Ś1kk1Wm}ߺED@\ċnEU5P)F+kk/`?f^DUQ3f9"d=DsF"TJMM3,H뫜庍 &%tGG M%T BsWWlX~ѴLd{uud#V)Ɋ5Zey?XsX1h%tP6 ٕYHD5پmHIuzKaE !R1y[`}l8}nr m/} ͋y{n,ŷ'eodMbvz] |q 3!I5LA&<ߌ₎mCMKlk,e/ŹN%*8ث}L/){-P30|ACɶ:eDꃓn'M[(XMAvANiSrDe/ȴ%UM\dX3dv𕅖Kv$Ӟ5.F>ڼbPu's1QK)QBIK8W0R}IGzk_B w \A<1Re¡V@tw}185t T%W̒vARm$ $Y T͒;8-Nؾ;F;/]\%YW=DS8}64LT bro G[P~0=mShKTDG"JVz~j9?IC~)ԜP=,.ژNbEvkӠ%W'4*BT. !pylנ˂[Oi݁ʏ*D{EԷ*XolBlp9H6+ȡLizd*"bUb2}ʦJ۬\l u /]gJ];xF+7rI~Ƚ/Hj1Y yGNo3+/oteJ 5'jhq^>ĭO6r8 [дAx(V8E6[XeA$Xv;yds,̱h^M:i/ [7} N4"8]oJTd1O|d~a8Fd.[9=/c HE/ wT%&;MLQy~r( 鶪OҞ…/dg[ICCDʚt-}vp;j>ko:KXdۮEb+6l l@{١4MP48W%_)m7|Ue遌0IH-#_†nH$x2yI5S#?ZAnC> ^ܿ)NA 7Z;_F% (JO4q'֊3Yp.1FӑF2z"!%QOuH$,jIEbPUߜP+3ݝdp5ǝqO][X~+tW3ݐx"GMM2JsOd>Ƒo ׉l# ے) ߏv[ߺtQ=0m#PXjpςs=:Eϰɳ6kd^ۛ/Nə"~DrU6b[PƇ"+q@u2Ԟ]YJ׊@-xv"4{πaX%Ȫr^JfO,(UqerE8N-R#ružo~ؔم'[Oq<5I9pEbY#mV[e1i9UUKiՒa)OBia8~%xn8 C!9m츑4$ժ.I@^' '-!iÎUNWSoUd^JyfBS@T?bp i|2U0PӺ"lS_w)-\k4|&}rǨmT= "k!,d\iz\z')!ĴcG-v1Rg4 6ԝ4Sv 43ŰBDx"sʡO\dЄ*.^!8/w8q_a:%;*:p2\oKa%5zlfC*韎~x]QGm7uʨ6[c`{5kg)g1]U=1O,F\Q`RAf g$ bo^|n(VDf 2}UusUF'x!W3.P>jWSA0yV_?J, /+>g?wٳ /2X'ucSkZ<̇d+ l@.]{aZWۤNd6|mL\1@@tFBV͹E2%jXubPi}aɲx|ҙ  E\;ij}ӌHH % [/TL !>cmhY20< TXEMNw$'݌&o{<E\g&FxH4U1[GF*7NMpvQir{gٶ9V◖YA:jmA̓ ؍AW%!s_v pX WӸ 5d|5Gd+=1д t_Vbw+VS[F&x W{OF0rOهʇfKv.0zۭ]A@+G~MїlO ܔZ G~Hwz6J~]хHKoTS9-`F=f˖%SK q臱]o@Ϋ098WUQK>{14%([(?%QQxͰuc9D\_r~C)%;; TQ7Ѩ8K}q>~#:ؗD/o 9 .rf*#'fvUSn+a- 7B ;5Q"mlZ FW,!6q*- p q`R+!GY>q.Os[#n끩"I.'6jԂo0z8ګA;_S0ERmш/$%rw~i[>RN ˭|(@I]#Ps>NĭC[P; |7Uv]#[y^zfۑ"Ysח0i/6o/md$e+ڟ@S"p4.+3t)8( _kY)M5L)Bb,i4zO>[V:N߆Dg)Ƕ"b?Z;iW휐+%xތ' Bw?JꏖjIM|O 5餳SJᓹ6݋UV:Ŧ|ґ6'.{9)S-t@Oﲾؤ/f;{Y/oyyt:E'X&p} ٴA%`s [2wkg;Zk_5- FDS5m SVT3(.D:#~I-l{ KZs\pa*@1se#㞪) 7':x2,&ߡ7FfiL-XƈjT",A%0։!'&ˉlRswaLǠf≫b:^14}u1!#,rW(29Tul 1m2袵)h {\wB!}P/ xƨKNq?M 1.WE Ik?NV3%wM%qpv Ir:`wOb7y,Piypi#sI%h*Bڮ2 !m5 6HkiI#WhH >/&dN~ bO>@kzB* .KlǗSІ?o_ߡ]3-lNqzpZ˃~@;/qݣSm"K*&*i*grKR,N}Nidn`)?噞岟;A9 C`f\i)cι}ldL蟓uʋ;T5jh5&ejfG Ϗ%-mi[U61;vf|C»zn$XNL/ǃ-lcjv`~(rK=Em/ eXڕowvqtR`/d {x}Y_J?_@ō! u -hWG lq}fuu\RJ&cQf;Ulhm=V]N& o*DC醓!>_ sN`p EvMFnMSa[O|cͿ1I: 2͊%Y2g#UQ.Jm|Ypb-r 4 TeDeAfĜ-@ f_axC8 dԎ,xQдmS7^4Iaj3Sl$T`;(WmlJ ֖ivg ]R r:IyݣHdJĀ$猝0zl[̄rFkQVO֚o`ċj _@6RTkǶG^OE.-9e,*`'ԍ\f|a1{" Kn-; 5OTx/y\i/e6H$L;om`2 ex'ɼY9,sq:=s_xjbs#1Lq`&[ݠԈ6rc.[>x<=J-S8ºŃMAt-ݍo[" ۋ(`JSɟfU`pX8/WAIo!#ǩo۳ `Kj]m;l~\^)T&BXri4exIjIDKst@yH8GtQ5Tə>\B|5Sc7mN qZN9p=bKp$2O}+U--{u0SFu= ƸɛށA6/@Jw^h{f~'e @~ f-,o4))*oǓζ v#׳_I&:Z [^*9bg3[&r5ta'0.0𝀫ة) 6oawW *N@B|qa~[.LKylx8k61 cMշV@١ z 32i+Jiv}!]6L,QnXP|VYWY 7,GfQ6[ J qfNr|cAN\M+.5ixy+kZ/Gj]58n2vԦ?hu39?>}V015-vt%%KUIez1r:'p9n>>}=ZsF,Q?eBTDk5-pO e Jޓ_iΒu9MBM&@PץO3}T'Cb_«&GmlPRWj,WY¿9bh% h췜zDg.|GeW|?.oU[_ K1<6"+p_>_{[V"e5M˛ryV},dn%QZHG?DZ ƩVe8 wiJ4%۴7o/n"y5wg{ĵ)mgLXj'E_6?V*ve"bHaz`AtxL_$ YC*L(kKVSsIpu .ȺjmN#]UζTzPRq ZAZK|(Ï@h#2ca< ֳFރATW{S&.ps]U@06}$֒W ( -:PU1$9SoL{DL?~q;(^eY~?c)t" %Sdlmc~.9#-2p⃍Xf`JY_[xXxJ~ׅZ֖G(-I d Ĩ atn 0j2=(-m'J$ǯy]4+ur\t/ܓiŘ)* d&Z郪Rb ꛶ֳxm-Y@:ѕjoJa)@% x-]B=J(ixP3hyuU/`>I7 kn@F0 n&AɀE71Cm:d?L`vD{xיbi[GK<Qd-HÔ<$E,?&r7fKoyxu 嗶wB|x6G;.J(i5T0@q4T^dMP|4&8%l\e Ӣ1(cEn:۶NX{9gli)YO93 7m^ '%06 nչ{u.}] M~qwcZYf5*?GKD%SZJ)0#b2gA/M%~p/ ]``E D.2 gE*<+cAKd{bUVP쒃oy\yу_374? l!5qw%J~.g*pj(5rC6\c @ߢ))8sA$y4k7x|C3^tOtRp's в2 榛Dm8!+޹8kݓ2 UMk !(v!8e~,õ<LH0iTzU:n;wã(S\ ^p :ު}gĻ.i3-3r'rObQyQL3mE\KGW?dϗ*,QCvİӼ̯|jLibx eFk*#E6!GZoFO)6mH UCw@&/dؼK5Y-t`0a__ Dd^aذx3qc q/RZs8j!2 Cδ4᪠Nmٻ7i"Ek L/- Sڱ _ak9Q 7(ElVN:}2wߦ @Z"KR2쀳厮M0/Nh#Ce/Ÿ1M.3d8ByֱԺHjfU/Kf n;) &HK+Gsn"䎀qrӮmDOl1TiUzmXQtǻњ\O "@;-]HȨY eo w5iin'P#/0qQ*kN{/hqpO#t(ePs{Y5>DTʦS\[֧B0u'!qlUcf6DeYoqSᾨj[!zV( b?mA-}vǐ3Lo54Ii?=sߎj!?(nF"Wv:r| +^WҳXcOIfaTUg:?>z4)\E# br3=?7p}*G~Gk] !,1'Fl[ `qjK  jo :,U,.@KVowQLVw-ȏ4EА~a#Z,[.ʐwHqz/[sY*GAC_`NU+vߴsO bKEvlޚ-pDŒM]`L-c]ة_![ytk Y%f/"_7RUE]A~lB{?16,)|W/r/<'oP\q2WEmLuwAU@l ;-W!Ud0!xLlj٪ϫ?8ELmWX.su䏖/g҅b )/K$gNGJ[h[= 6"Ԩ?4aN ?~%L/xe,dŐE.u$ ml7m4xJX2wA]JaTĦ!\p݄4痑tx p:kZ MThzÒIoZ2q+ ԣeü{(Rl1 bY1 KC0mA[Hо"Ml1?[Qr|A 5I5! $w'6Z6mtINӁ!u7+3{]p(İ3 2vl[+s"mq)Zue >8#4mYFۚAX*z>,-PU7{=Məeu.=j43YڈEz x\/Pwbb1Zdyn˒ %A:VGOژ.Yvh1s %T%-2.zibS[#ks,WbPTn.Gw جAر*F*D40$YS(uPVr_2AE SLv"!-9O.zف⋌וbbz{u;։a}'Mo rȩX/mԧ$IÇlSGћD_^ϠN"[лĶSKw}{vY;][DW7Ǐݪt%;jLZl1kV/ * p2ؕ'N2l٠Nܹ1-F8z$+-]{*|C;zw@9e!kBHI1P,͝NݷVQ04 M4M ykKMO5?q?,UɦG7wޮ'4h 0vIl-7eCV\9UI܌33SZ@U*j%5{ːW%jXG:ɔj鈮8@7BnT&r>0^H92N<;n}'ZK}R*J 5đa=׆KF ]AE5Z~2?St @%{{\P2#fx&qp%X)3prP'SVB}iL7V5Vރbq/..&Y 1~/y0H- 2w3ӱ qvyfGQ$IgmV%~6&fx/_3U tRPmA[39o.Wm]l$8zD L>l9Ì79N6v%Uޗjz]&|{Y恸Q9p9')q/%l##_jsFWy;{fՖ2W_ޥKs}tƔhNw^/qHY"XSWtc&q1vs-i/VeW/mƙ~ibRvRJº7 7P;Pg \|t5pS16@ߦ,$mK]VGuCTkOr }k[<}GL`mxܶ4QG5x?üL.ܵ$B^V^L/аO[(W)\irAu5\+Am\ ;M^x?a]$&v~3u#\sZ}K7*SE\>ˑYPc>ֽ)P:.e^3to1&*b5X3`3z y\݋ /HS riضAU֪ES7]]i~Op9]ԽbYrBP8Ci4]Vl{j=ͬ(ˇ#A=Fqu9-UsC s-vt̷-t=%{fp5%|(u1X p;mHc2BkAr{+)Ȇ2va͍K|-vׂd*h}s˲] bWM_a]6%+Qõ(y 7P+t+$qGWFj Y2 Ox+'8zxq%-8C괃"M=bBm y0]u 6]S&Gtx`TD]A1c'upYey&*Z *f ux gm[t Qg,+V~K5O̸+ ϟЭuL|jt-ۀ(B_ #5޹t%~WLnr](ǂFsa6'T^#{>Yi.u>8 .ElOwlquJױ] R[Uƾ%v $/;V-GMp'ƪO|y+.{ {% iIm=2-bfo1}BA9wltè<{}]{P(ϩ%pO*{u|U5Iؙ<z_\n 7k#.du3s$. t6XfB2h^ Bb ֆAw`̇a.v L7+rt)J9*涭(ET'I]*ʑUBl3BLnsݰflvay_|_+8M6$^X%1(j\x*冫R@虋沥 3¤Ġ3@p3_R>&]?f 3o/4`y:@;x3C$+%kfVm~#qv$ 'mw[|DH/*ADBfVj'}jY<lwOxn3g߲S&jf\ьg sscJV;I⧀?̛xd/Nw܈YH}*8.3Hkݔ^3bdKi42>OGb ,")gg9(VenH  j2zq#٫3F|cۖYWN& ȓ(%..yV6ic։3L#ن&.LV2s\7M3DV;E>@!0^~HIٞ7ˋ&DIkfl{LJL#dU?J{y-HaPSE(mME{ 0gVغζTna١072lĴ9G*ʉa<r6%z?X:p7g*1OB 8Z!j+e.Y M6KA7wh`wH))n%("K|N%DQ?9vw9B煥 :P)Q'[y䰸jdۂp͂q vs)ݼGo/A]FԠX<ΊOz[^-K8i1La MU(MؘMA3}oɒLeY,,10fy&խt 5>xcϼ<]S/wG~`C2ُ`A%ܩ*f\a|]u&lInH&<YH%Z zΓ, ͈OD3t2,ʽ wԶ,h[љɲ$^h6/d)& Ѯ{FctlǏMӊy `_lUXYGuOXqo.yʫEJfƆfXKňPftS)b4Y01> iTìebRQ2"܆KCb2w䇘krafC[RII4 C\ Y; T.%8'!ԂrEZ0 ^0} <KpF-po F ; @E1VLN\-m?%G$Q/Gg2tkO]nۋ:RwLtɓC-tߋ)T.—:ф)^U˸|!9yrOQkPb@ހDf`-+p{OC9RJ/'Ѕ]ʚ]&׭enQ4نVZlzn,ob'LAkhzu@#qSm&VmPsӓz)Z$o1`vvTW`i]X(eōrȈ:m(!S+gbjGr!dôKRmT'-]Wnr4O3І,UcAڱih̻biX$'YļnCgt,(CE9sbR ,ݴfac2>{Ot'|J1;(AE1œǕ‰#/vos--k_|_+AOiP2`pNN]]yzG/ƊŇ '%ojD]r7B 7`wsGcHDc*j=o1{m JJa<P| n~(76:1/6¯/ǭ0Hi6G5@FHy6F p/h׈#}?ɷ5 bPO/4_cj`5Gl^UBy/Xk۫*"/$$[ ?rVCك¾x0$PafQxդli9[FVhCƝ? N.T^j#-dD8diG'sczÝ!껎14ɬ i(ek:T(R-6.ℚ< Nl6\و)h쯺KάS#ŕ'^ pOuDKBx/ >)r!Fq]E9:x._;0Ȃxhmke}0ˑՒ'21\Ic_%!m|i~+éG_ !n/f)_b<Ճe~7 _N+?P1<<r4P6lџ)O8J0gދW*zo/97Z.Vw&4'G3]wU_ VD)PlKR5=6v)z) &/p`vӋ 0Z~Xbi0W)Ry*%XHxxCA^2vY<l{IQ ͤy_ԝ؜;$3DTk`&*zf 39 <aK0ma!G8]XHG6F co}s-\JTO'MSXjXvÄzmnb2F+׆V22P&5((k\7ZBҿ &LI1ITꪡs/~%0O͐)T?&AA`/!&bҹS3ưlC&-3y<6 ʨ{;( & HG=+b*xw)_˅Sŗ❩4MTCrl ؁W_ K>2x4KB5U31`a Ό.P5m(s歄-»*d;dܜf!)ä̦tCa!v~:udڭH6V3FW#n'D izm."w-7r`/.iI&yǡE3ӯyzu^ǍC;8c-;~ֈPyYGIᄎl-bpy95O <]Pq dQQ nMaglaH16oԈjO؛J7] 9Oߣ1ELVn) e3E4t5,tRŜ^}BWKa! xqd]_oTϟ~7[p0F5)\gg _蚺GGub%L]?`zCv>ȉr[`c*^VEmjҫ%T/#4݅ޛݟVg^;skAqZԱЛJ;h  TaIkYUI$-ZƷ ɾs0HH͢]fzRm-u  1CP/')G}SP鶘gD˪,A&#@94n,KBz!彆Zgx5` ВcqJBZ (*,Ull8hϑ1휭 %f}R)#k\^ 6xykݪ]ǖܗ.w3Zq&L"]D=k70 Y&?Fyj. o'ޚT5+n~&c1 D@ ?9٘f6]K. t$u#.OiQuKA&?vx=]+׭~TWG9G'UXz IWt C  G2L|s7?c_5e?}͍M2-wL[/ʼdI9ˬN }*@l `jT'$lچ&1P93D^ H (PLkv,J ,`iFkD=xF=Y#O㸕h|$4.+mk[ wh0t1@\DE,1UX&~DG`(l&|ّ oX OFOfFtȜA,bפ|I ¹̈́tVE>ڠ[Rm1niįM3@|x 7s$8e #v)Qץ0!Bś4t&=}^NNڧ*cۦ%b mC5:Xث",d$5%u`CWqjVN+1H[xIHlN6+= TWuNP[x06S}!U}+Mqz=o9ƞjS~< =`^9uhU ^} My'0 \j2;w#s|J5(),|!qT9 u?} {} V5]D_!;k?ZR_BkS쏷ReJ$jM*+?~e(AֲAֲb:.wRYɏe.`4VVZWI˜L+7], =е.TBjU})iUO5D㉩SsyU?OozO6© ōY;u g\GO=NN[nM?Hw6zH{?7NDHWS/5,>O%ԫ=IG?\CVj%XK$ nE$D~z-K$6E6s/s1eq;>xWQ~f.Ϙ/j9K5D=Xߏy`RIYr&&!y`a-5qPm-;n*LLx&v߀bw&pGfFKGZ!(HL+ad߲0p[ Wh_Ҋ$p T5_:a5G W.3HC>e8J]4R eE!'w Z,Q<.y敜,gΡ8Wee,m.Vp |_J쬃~ѽ6(}{LڇiZ@A{ִ#3uޓa eښnX4{uBE{OhՖY\ =wâG%W4^i>Qd |_oʗU/kKuZw:؍ݳfuHn: 1ik#_w~g>D=G 3U (CvJKqR{⏕4懬.%1hbu{PgG31voXr Jі 9 d 7+Fl]!,tػ;#{h';n*zNo;u #lGDK@Ch`v|xl5].믪o6\S>5ţD y ?SQv[!~oì *-"ئ`ٞaaf!Q pv#v+)H<]_ q  /= c|d?|>ȴ!tʦ;0L# W{,M4YEaB[0i!xGɞ E^

)CzѶ:qG*=H2+CI"ՖioeT7yѶGsv4cm ZlٚYG6Y9;@K/x&s!8漍x h(>Xd?=;IwbQhs70LUM}ׇhg!dS2PcACټY5*u}\{cνlF}1Th^L1ĸ]Ů2y;l&} onBfv SyC$Rتg"1MpFg`NHOF;?kqٛ7-JB= u+"ZSG8ym.HCC F2݋WdEOGPpYJy^|\g &Bz-ʟ2[Y&<2h|s͘tضWw{#髑*AP4c_Q!4 )&jf@[񘨎VG0qDMǶ0 [_кV/}TIG'F{^0uhaE4wIب[JZT:aωJgQyѯ/׿,$:p~R~iPub/C³>F:U+Jʗ_gvoa5k꧹^ʙkP`D߉2V{\U=mݎ\.I{ t r]G4CȒCn*/H^3HŌzTQн[ 4>i=ߓ0ړA6e'T6,OREsłW VͻoecVu~`I0,+3OA=b/֐gDUot!tc;O_ 3lMo5ڔE7>ڤ 2؆d˝pxeMG!ml͇zx374cQOQ!9t`"qDpi^.¸QmN $MdጼSeZ|ܻPXGpȨ|~`L#Z `S5r\eߖYttgmfuW8RSIFw+ʣ?U`B'ݰ՚TyBzF n8A\6?jɎ=_=j$- $voRB'ՙљm #4s :8-]{8N{0ˢi/"/ v3l{?tH"9c):"گLuޥ.yrfpC ~$bSM+RW`)oAG\hhuYTDSMyyIEIlQ|'ޔ\q, &kǤi`z)m{ˮрo`r)>mH7´f۵ rw}2]%VŧHk> ]MkavWĘr<ҀV9,`ߍNwXu+>]YG/M!n$qXGݘ1єڨG{+7w*OǍQ"UiʞP u mj*Ϗ->t",Q$X 3 tr_Bd 'b%pSxJ(x kYؽ۞r瓺C׋)1BŸ F|7/\bdM(dˤo&/`6:}@ewvO;"&TGB~t&,Ư c! ~t}f fK&駫hi$݊"kYL}hiF82l_Ex7`7Tk^#dh=U8ouD"[%xmq>c3x =P2{[1^U,$57ḣRYYJ˜5طf!~ɑۘmPz-IyvRS?7E12 Z"H xvIݺDVP6rh {4rv dJ-;vB@_"B[c!'I36Ms 섨w'tqjd6^b?=i;TU|]O)RbδM<5_WF^FJ~bjf b)%f472k+.+&ȗK19& r76<bb-\Z+dlC!NL]WE)6k\4ܲ^K8DYM]7 S<\HHvo]5.oΫ+>,B1Ϝuwk0Cɞ?y쨸uMƽ4VLwϚcl>$;liHz <:)ܭ݉ SUH8l wZDyQğnOu[΂@NąBoMX 6e.2 i!%E{)vОt,^F[&_ )9|iܫ nւfI }@ R* 1&ߔO~=5B$gը=?(wDlo}eo2#[fRR?*8 ,Y) $r@kL-d)FQӡ l65|[2ZGF\TU9HN2NDMM$-LeM)&)m +4sf]G:G\+R4 (l(ZjSC#^S 9u Tq˛ k6YQ"K>̓|H t#e0 RN+& e כ;<Ȼ8'plΪǪ9`þևؿfnj+=惙wl:|׬ ڽ¯XvV{yx)5kAA?6a1ñj_Y S ]N[F?J+SF*"4G}dL_SVT\׭L2V-X7El&Mu YY6d.nܒ qSVckY;fbyO݅]Xul+: KԓrAa;>)ս_E ,@ Weoi3[ʄ_9Ve߰-W,^֖1Nl7%䖛 V [vp4&KP Q.267qjG s;l'ѡ"0 l'fvA,+4A{i#(~aխ JIK)K(ETӎ]d,scw* \Eh ; Čf ;[kA@۴-{/aW 9{;.hfl1^@,2l$ .|9$3&ajctϥuH#g٫i}7.ʝ<$ Fkýӛ舚ep*Wrqn6srͬM_0dܠQfRy9< n>gj+Xع#94I;8R{`sB*Xh c~7΂a!ڋgMcЧ~X1]BJys7򼰣2i ,"E8!DkDCAh MHYFXq*r@ªLu9;'4K$ʴ_nN} d$P!j\|?9ma3x@1ܔ8v;Z1˜ÜP\9 ob+̘8[j=I:iv* ]B'c/4/_` l0:qTھ f|m=4+Kƭ;hUb=5>yp&NGz&xkg[H|޴Gt['sz1cg6/g3r*z:t>a4q#&(r %7N<>J*=yW3~'zoـCW '( εP EF7s f4NJ;ӥ?~|1zF dUI{3ih5 hɴQx. 9vQaqHwӻevo!By|g2H}> /q~2ݛbL4}[7;"Eg. dN?^!-݇;k<2ӫ}ۏ=]W= ,g}P-;9;lrs}(`7 +ѷ7k1Y2[B% ,4&OYrmK Zȃ‰Cs mD] Ǧ(o7 *{ʏIũ)\PD40 I$6 Rqu/؎wݡpuk v:+*7N5&ߎ#ȱ$=:P͎nPdONmTIWo8Y'mi L07Qf>uDPNn[?ƏSwW0υ hIlhdKS ֎#M3BbnTLTF@mz'{P\ f9~@/67_pw?ȍDc6Bic3pIo~37k\sR%ŜH,1PZK~RGzl?TFsWC)'3nso#Hաn@fLR=#j#zsxW8[-V֩[1.Wo12ND>~ >W=q wy9צfTQJIq"}-X4~NJ 5P3* [zaO,A}Kh@r{ 2\9U7G)5yBݡC( Xu~qgscg!E]/~I2BD{(v7pꏶe87b-fS~N I5<\U4"7(\0MUaùg;//lҹڃۿ~k?%9;^u +|G[3 KMCcrT&"'#% 򍳍ce_<1uA[Gv%]R[t?&9 '3J՘l^ 2hT1AÁ ej$1lor#4]PB(5.^m}eA0QcC'X8k1U.9GqgȭF-c+-O,ﴻPsqKbRwݲ Gi?Obxo ΆytVD)NW7NT'P8(.Ug7=xG ce.-~O5IVfpF< BW˭~6x?VE\En:5uraQ5II RYCe,Voz+d ?;7W]}dQak͝>t߮VZe q :YKҚTQT{v}g=L'sD8z*H-/>}!XivJ\sP`623t14vc%MlWGՉK'iߓ285M9T1ܗclL3JKXڭb ʳ:Ӗ3'-cL Qu~3qji^b <Ƣ&\YtT}l`4 +PJ 4&B/XۨmLa|32(o-8 ϭظ>Vf YGO|eSc|ɔ0ی@*Z-weHcB×~;X|:w26?v2WPP/4 :*d!t BCf0m2yfl% Ut bs}XJ9̒ SW0Է&hDG3TZ{S u[dM`zՙU. t K>'Cwܛ&?`>>SOcIyVSt:> BAf+T!NVW~"<҇p&6P'ΆaqPj0VL.rAgyS ~ Omph4Qt6 4qxtGOŷPІ-ޝxc(*ִأQ[>\MjEMc(*imQ[샪Ъ_GjO'wLr  ^{3]11*yZkC~<0y=Kvܲڛ+x𤠉mRyYilp܅6fOܪi^O[{Ow|fSMT>y}x:w](Y0應׿Ȕgr($ޝI'+XW_=1fmK}Aon]ͱS{eA c.伣q_ch'I_0.f&ۻ+IrG:ަSK~LSvh뢍-;W:mjۼ?}Ҫƙ&yUc,ZylyS>ui专+H#.)=z5ywa7+/|Q,73JoKkskp[sΟ^{yѣfk@H3nHCX{С#c"[G1|Ԉ=cZ%zC#; |3rP =zdC;9[С#2&:fPT]FFDƘ=,rc6bdL3V#Fei>xplY+ǯ?~zǯs&>~?Vkǯ_F<~ǯ n|ǯEQe|kǯyc7k.,/yl><^U,%i&T~+|Ɩf) m I[@dΠ\)b5)D0gqepʟ|ҟ!Y[BMV.?}LȻ!)Ӟ&KZ_Wf|bK|fo g>HE?S]|Κ|_0u }ޑæ2? ; SP~Hy6?~YmCw~11'2/?8YkCtg~Y)?fˮx$dQT)vVf/{HT& VW:Mai]OpZzp33<<3-2$fy GUwʈԹkZr#Ҥ J cFʳ e{|^rd嵳W9;:bg=2Oj)vTux Ls®*Ed*<+2$H兠l*E~0}~˅ @B.)VB$rap4* ޖv `iWaȐ#9Qap,* WLHֱVEr@Enrl4*"/=K,1 &FVTRH"PU\-IS(x(eoz(TvE_Q) .ጢ 勢!ʝE!W'uۈ #Ym:Aeˠڮ3)pJ§/W۞\l*S΃ EN1p;AHb-AČ*a6>(A"3CF$fo1,>?̸ R$rsX)<4bd]γ@sh56b%+>fK 8ഩ]"3(>Y- C *HVTq9eqH8H_COCH!T$iptzq y\fe/cu!H\"d6pr% S޸8NPSZYhKYcߗ9Vœ/%)s_1;RIpWfy$8EHLI\" KCR6Hy[.U}L)٨[ \R9xe~<8Ef`e [JA9i}_)˥sʖ{ ]<N9 D>"\G?^Yϓ1s3PYZ_ x쵺xAbv?!@m3 P45 IdG9p؏Zrgty@V݋Fdt(>fypL..ʃGdGy+vn,/,?5$ճ%2YȾ3YN\cBއ4N+rԑO=yR9p}d |=I%13Л{E? jڒ N %Y^t&F&/@d|$梉]%bE!A$"J䊐)H>#r"IV`%z M{%Hw*A,";+Ad]W\VPr$yk]>]{Lg2U- WͪvgV .KU!F`HB04֫`Kouw0䗬*]gS0 ? " A Q:WPO5H8)3V B=xQU֐!1_W~ӺT>g*7cnT-;&Wu!Njul[RNg˸$u>"˪ɞïC;Xu4}רg혎5+V ]ٲ9UD&Ċ H[oԄ@5)wsM5!&T!"mjAȐZ^ D6ȉZ%rT n!V^<:o N9FՆ0{dUqz똝^2u/rd$Qu#X$H[B QG$ d!)"WB+eB4 i"_䣺lPuׅLuDfEhr\fEp"H!Pdd]$x=pԯ!"=AȄz&.-R%pQ @KGcQ/A%mq%3/KOq;mS>$yd=mP#3>JFd+G~_}IN4Խ'Se EƼ N9y#z|Nl}"M\5􆶼\r}Qo+742r8EBl-υ2[_:Bd "Bd- }}(8PH_B!P䡩#=,rpC=kWv6+vV/YCL! !Mf~sCH:B{ !QUH xEZR+3 ,e^1i]bQFffmF Eb>li" Im#s+Fo ^S1DH]ClƐ,mMh >F!TZBDCN{f˳M)}nD"C& 2 K_6u J֕&{SpI3M!\b4H!2)H9M!Mb4P9Rdo5 j)2AHf.G5T $fC3ږC/f u:!Se,cpB5 qM(s iGFd%k>ݦ!1CHtsy9J5ݦ-+RUyU*$zE^BH*R$(LԮI̠x-l$JӖ|V tK[X^ZBdh N9ǭm nព"YgZGΧwZB%uB[A[[F &KF8\H̑VI7"xhT<2$Zks.RDz8֐ 25DfD5!Ud{kH9E~k a2m-+tHY maR}:ۀKV6!YӌH֊6YTLe:m+; EʇAH0Hi+ D Xa*) ܲ =KWTjBļ\Vz[am!]ZkkYmYBEvm!H@^@ AW_ #y5ȔAT^|j*DJX){v*ARE&' HxAӺȞv9D` Dx{ӖJ!L$=Dڵz_{OĴOIvi]dA{s\!߿8Y[7ۃ[v֥"Ȗ &KΰwMLY[;W~ZxU:O>AR@>~iK,i~Vu$ Y;@$:Bju!o\umѼqu>#$+*yko#!HV&Y;A [*t [B;AHN*f' N. "L"!TN.%\"!Jdr8ECp 3i8)E*vd5 ӣ3xE "S;Cΐ,3DNv?:CH!Mi:~2DF"_dzEvA"g_ȝ!Dxpa"@H.2d"@.$r 8D !"B]!MFBnbBWpϪux]!AdqWHI "-vHJW9bZ9"WBȟ]'+df.Ul) BD*tHnyċ4 "uT[vHn',2Tt$ Ydn7HYf~ؖ Hkg Bd LV% Drw(rMR;t !Sowq[D"ӻCYE!"C&Eub=%Q"{@k=#ҳĉȤ(DHRHDȅ.r6Y R*DDCEta"q.2/"D>Ȧn+r)<"" Ng'ċ "(R'D;=!]d~O' G-=!@䇞(r'\ =`" D\/ Dp6 B{/p Q"{[^+2$,"{A^*r "wzAHސ!losӋ!P$7 w{C*"_0{CȞ!r7DX{G`)E*$} Y>)"C@ȇ} MgEt{92El~ "eKf_qH羐(2/ z2E "`}!D\_/8Er0[j?i<"mAH~/2$L^OA~$e?H|"A~*k?HECH)R? c/!PGp !"cS.?˵&WqLNH3l%i,gB.)H-$4vAH |z).Y9>gZ eo C,k5BE Ȣ&qDn+'Rd T~z!]@pʌQ"M!HVԆ,rT{!Nbn x!A "AHA(wn0bEF ȔA$u  pv>~fKyv0 ^ikbDI[F"SMe&-Me9`bNrTkDTHHpɒ:oDKb&Y*S-Mc5SG$/)p%?iꈌ0u#YodE5%欉9oH7+R ~[ڽ.SGdsSG䐩#rԹh}SGxxEF_I8.% \"ѦDSGd-M SG亩sٖ<) ^:i _lmꈼeL6uD:Wl``ꈜ7uDn:~\"Ͽ ^o_Ûj SGd#2YijVSG䰩#ry`\pT^fC/m8~e##2Yk\e#ra m)7\"uWP5un2b,5uD6:3uD.:"wLqӖ%pxE: Hs˖q SGsSG[S[:"WMGHӖ%|8xEz 0S-L:SGd-MHyv8RoDڎHSGdiTSGd#9`ܵ咩#r)He78 .naL0u2Yel7uD:rxEJ~Zo--HOSGd#ЖzSGd#rydH0"GHp 0uDƘ:"L\0uD:"L˦Nn[:"GW(4G-ώ(c{&FރL 0]9*|B$se[^sS}:mr}3}HbJC@;fYOʖ}FJr};CHIOUq8+1 'ASI$1r̘$pU[%őI|֒-gG9*915>x29tu8,G֤ Tp~u@tw@Թ8PCg?|N!6GLm-sL|2>#lΑuC/刹!xb=S#6#I7rL¥?LL->Xik{:>d]k2xh\z2Ȍ՚dV "#rd}hڒ, }dϑw2$I峓ad1{N8IsĴTik@1q'3?-G̊8H-9bAu9G8H:ŧ<Su $KL)3ZYS 31G̜)"1s>Y?'r\)<?ScH:ClV9z ÷rL8ٲcH6| "?| ym91VzN}T¤rO`^|Ry'!Y}r DIO ^Ε>X9ɓ} dHW M{24Hۘw|ߟ2 ?SSdNtSM@t!G̝i"1E?O??}2.Y>sdqBe*bˑO#qSHʏ>[JMg'[jLOu[Oӳ [)cˤ"ϟeMyt˕HnYʖgSזzF>m<8cloD*6Yr5Ո/@<$\lr[ǖ3 ]Fh8e[t>ƌɖ 3 U3kdJU3%{vSGVOk3 @sG[JW3[jwR-fO jˈY]-[hDV$=;Ed1>Y@[*d՟dligd-L{9fJ͂0m1[̂"fAd]Z_ 9fC.٦MfOia65rږayߖgC$eȳCߚO@yHI>?"?Ql\9Eͅ5"̅"UB:s!E\H2d~υd6, I" v[~ R\p˳~ I;s!C$`)RfdT4W_zs8oLg.m=򊬜"_σ""{AH<()ruܛD '@M XV8E&@KN &J"o%@ UdVD|}D6%KdO 9Q" 0TnE ͇r!V|/d>xD:·Dχ8|D/2s>Y1D6·E"MYMȕH(RvD,i(1@ČX",Y36 'a|/H9bF!1,H"R}!42"m_GE.4 !L?^d<3dBBԅ.rq!t3BQE&A"EZ.T2%&j gwA' Pd"IZ X"ed.H&R~1^ "y}1D ^ nCHb,X q"kCw+2*bH?CH%0X`HK'x DIV%0Tĵ"#@` ]~%.k%)rn|%c ^ "%BH=եK!X?K!D$v)|"BȗK#[ zŸ"D~^ .BHbEz!N- E½DbLeHEBg"(7YR]I2-1v1vSew[-2`I[_e.2o?Al]ș29 K U$r8*Rj9" CjBD.%krHyo9I֬.r9Dl^.CwX{}9%_"W@HH*sQ+%O"+# +u6xyOtTohKV+nDby Ndg/r3H)IWVB#1uonڒ"W*HOq  ,\"I'{8ϮeZT~~_@/ I/ 3 p,E659R`5_ Q"uWCHxٖޫ)^ L_ jpe˖/1WC%#Yuip7}\~yk5)y{ b5*]ye@5kqǖ?M$Zbsk!QZ ݖ!w-H[#ׂSdiKdZp_ n=k#rz-ċdH/!I%"= bE&} " --_Bȉ/!C/!S$:c3'&!ku Ǻ D6Y"֙UiZ:LV$GOג!? "1F˒ \u[W'K';vI[֛Yzh.~׃WF~=%zL]"^#dڒCҟ׃O*R+sXgW,g_A_AHWy+Hd|aZs+9.9WVS8e{`D LoZiZٺDoȕ +-%6BHim8{!Ld^Wٺ\"Bȕy`Zw5S#zR Ndr ċ,N voS-R COݔ;T/~cb^+$Dv"?CFQGtҟ)?Od͏@I[i/rG;xS>i"DH>;-2gĊq";Aȉ} r}^"Rn?dzog?>k?8em%k,YI%Y?ɺmx$*Y @dd<NɚrD?|?3-r A*s24BHK~ApHA!؃/2 $,?^!QdAHpE:>‡ EqRE4_!H9"SAG EdHrDtMG Cdp~QpHLţPIQtjDqG%G!T((4#G)r(H֣RbJFcm s c&A{% \d1*1>"H0X%za >nwCHqq/8K[?ĤyxBEJH&<"O@yD$ȗ' V9uD2N@H4H)^ Q$, DAHLD>NpY4H Ud\LH^t%I@r˓'$|"> ""NBW'aHI3Z[ΝD< B Sq\z)H:O I$df) !)}BʪipT; "NCH#sBEƟ@4lviI5rߧag BπKz"oTE极5gb3*vbπG$Y8*YeBOu֜-|l|ϳljĖς- ς_|,{x哺ϝDFD0 \d9Yw\"AsbE*$a,??"$HOv2cMgDNxH[.BHKʕ/GZ{ D&K%/AK{ :v#z 5%Hw.AȵKPGi3dtPZ*J$ D I2!oetD^4ː-#/ClO.G/Cd qsִ.y"%~ڿ@H_ D 8D&H ERtkS*wH+W SzE{Dv\ș+,r <"g2&Fd^:gC~X:}'N:BT~*xoF\W%1Bܫ'*ċ n+-ܿwvS~Wpɾ+D 112 Wpx˯9+ċ0E ]UxD ^5} Df\Țk{ 2D.^3olyp E~H Do E>01om7HoQ97[n<0}.lK]T ݬoɖw!ݬgff}F쾛r.զr);f}ƎYgɖC`-Uzu4o𗕱 r2v#y֖Cs,3Y"6W;hlo-@Hyd{![Z=H~2Aխ^epTeH*r-#aseCpU>`[^{ja!D?o [6>lb˥->ԗlRR7ZzI"}iGYO-Gajc˒G֖ -] U䌑lBh 4(8b@D@J%t)bۄ%n6 Iv)QAƆ"; {7^G@@b3v]?<̙9̜% 㤌s|T+,ns]ʫFfHDV.3KJD\I")L RF4 2JJR %R.7y.Q9R7 Bsl@$Ґ]ƴ!'ސp]ƴ!Q2!R!ZJd^ ʆ}k՘6$HyהUv6)4dj!DկCկCAL>CR*MR)!ˤuZ.S!JuX!FmI%'jDdnD1H^+FD%)4"\JI5bwOkF])M{j7JCxC22Px%lJB%WRHP澋V;}˴0#e硄kckaI90"CʄRY%WF$ra7)kL?p5M{J9p"~g?k%p"dRv8sY+g3k W)RJ7Jp®GfR=H%T#- 9pRra;F#L]IYg2 #P[)A8Ki~$ H"Qʤ# RG)% $)ˎdSt$%eOJH>C3nL83t($ؘH;\Әp 1" 3L&gRmBdΔҪ %S"6ZJ&DZɈ&DbMKJ 'e]MMx)̓<ۄH߄pL aJeRrHS"V*]SmIڔOJESv途M MΦD&,Y3"t)g4#b3liF8/nF`Y&)kZrS5:mMϒ +WSx)GG&HisᜨF8"qDh1,eqDBsď#Jy8"dԘ6HeRrD-%x"2x>Ex"dD+eTFʤ|c2K9" Df D'ׅRJN R"'i%@$BR8HMiOX{FR;p\,ቄc')%'H/Rdb >ǤL8p]D""gN$u"J3&j)oHHD"$kzPJD)Ǵ%pm W\JA[~Am%em R%J4(eq[­dY["diMR4mV1oiV-R#2ގ/jGĕL1Dۥ,hGr[;"aS*!9SR>0ylkg;R4Nr%Rz #R v"NdDlDQ) )K-)ewM̓RI%3rd{"m{ƾV'J9=T2ʔZ%=SnO82=VZ)祬nOR퉄ͦ:)'l/D;,ID5)N"2J:!}zSJ$"dID])DW~V$"䭓Zd(BIDZI>Rԁp2R2 ߁H~,%ց}*Z )t _JYׁHlI"YNE&v)M:oH`XVJؔ%eNG"z')R?KIv$Bv$HБ*ڑp-7)N6ȆB' J~2i Ʉ)cO&O&J L9.%fRV6%McɄh)ٓP[)DIi݉pۥډȶrz'IYYJ* ST)u"ݤ,D$2zJyQɓ/e闒N!2JN5R e)DSGN!}h)D4)BIR~9ڙH)iݙKޙp ү3&exg9BfG&%ȤLGJ3Q MR>1y&I֙HOiyj1%6G"U&Iۅ+L樔]tj)KRB8fw!BJ>6u͔Ӵ")RKi̖֕b7r^] ۥRFv%Jv5{)Wt%bJnJcRVt%\JJHЕ+ڴPɏ&\)J.r̩DJ)N5{)CO%Hx*U3; eѩDLɣ.%/,e)I7"vSERzw#\Jލp,RҍH+ Y.zSQ)KMJ^fVRR+ՍH(iޝrrw~&F݉3Ru'kMR&&%}M_%-ztA^ҷU2KR=RyM=RATx[)LnڣIOWO"^'ߠec)D)ĻRnI'R$|ؓHlS2-T~9ZT"ChNp)e-eH#e~H(Y ⍥|k27 +965(GĚI9?p%ezaI>H5pn!<HyԮdiak)T("eiOW)/R>'bJ~11R/ \ERN, [J©dH#eB_eDV&)KL]* R) ܃l* ldRB"1TJBä($å ,$R#L.4+F)B1JʬB"4Zg;L{\j X)($J"㥴EϖLE&E&~9G^|)z EJ݋(ɘzaJMr\*rZKEDHɬ""Q&"Q.">Uʺ"""퓲˴B)G&R&lR{I%zބ=( I7iRM21Q)&KhQ߽RCnҽUJ>DR٦b)S;7rG{CdUCU}_LK4KJԗ=zaQ)R"} wRJ/\)eY_ }'4>H<%$#J{礌=pRJfFd\u_'.#/Hy4WM)F?ӔLߦ=J#ܟK؏H)܏}!%dJ)HF~DZIJ_R>H)~:$t"d}Qrk)KL-R?)t" l ©dD\ "37Rn?ȷR9)rViN)mC8?D,ΡT.)p*9p)b$_9CL{K!DLɥCIYhb,61+l"=OJ { DJ JyP2e"|1p+}"RraZcS2bQR>-2wR5k|9H*d}&뤸&θb2SɄ)!Jn9(e9DB % %7Ix.R¹n<)!HiVFop/2*1p&PTGdoR#ps}MIGؕj2+yŔSSp&TO/$H9BµDGs!{T4#+\u!|LC&J)/$OJI_H؞1.$RHiPA8VIi]AVQ J0J]ASDRIYuRf\fRrkQ g***LW47՘ ۻ~ž2OT {R.Jy_*?S򺟈(epGRPwʱDc)=*'RVϥ1+k%l(VRdkyj+ZRI$Hi`lkUoD.VRJ}Z\`{j씲ڴ;)mG)-K׵9ܿ\+g)#}vDW)!S7) ]NH!%/% q!SJQ#DR{BDJ 9_ F ,5u)yJ%KRv^BdVI9R"ZR±Fʙ%esRRkaJ)Yy)|^͍K WJKF1"NJzAJUR#/Jd(hJ)R/I[Ri%ň;RWM R21MR!EJ9)!U;"j"g]j!J~01љKi. )KRnK8pr\[3)!ӹDzmsGF,)Iiz/22"ueDJٗj)Sb) \"ӞUeZx/.#J2srD~)m.'Hs9["eA) CRH)Y~9X*ˉeR#2JF#H5p/<"d<"C +zV2 "R}zL+J)kL%[LRl דRNO؟2i>VR=?-)+MglOdl5WIip%_-~%Z#+IW +A&R3dM攔WuRW %"\/Hq_E8_2*,7y^RǔzYʺUD)pDJI kR&\Mu)Ӯ&J_Mސr)ǯ&J޺%e)?M X@ޑuaWJ";-%'DB}Z@dlX@ޗ?L ?j!Ss!QrBb-$J.$3ob51|R2Qr5DFI5s)!J*!_H]C8r5f7*y:&f)oۥ|q V&N)%lKq^K2Z"DFM%O_KmRZ%bJ?3:FGfbruDuDg#BGI:"i:JJ8o-'lm'RI NN̏vRL]m(:NdN{pwz"IJLg) R.L%KM|)/_OHfbIivE[ W/%bQ.b>)=i%g.&J)[L*]L$ܷp3*|H)ix H9626"dmDly%oF#RvF8RNdtHTI)pUKN`DR]RTv"D") \KpRA,p\"eDF!wK8$2N"6GN"4WʽwˤH)\;R͗bH^%崻Rνp,r]DZw΅R^_#eɬDZ)'Mį2n(Y|7^ʋ lN HDVɢYEe,r=V))%{bկ{mR^!{.)'Kd2^•⽗H#{Rn5^"%~)KA)?K$vaH>"}DlY%eRGa)G$1޴g}DFIRO8V|?RRr?JJq?a{L G'+r?ǥd'J~p>!RTr))R<@d<Fg|bj_%gSfKj),!Fs W2y |NJԔZ+%DHɒ%y)%,!\))Lu %L$x&RJ.{(I|9aWRp*p+)[N$[N,1?r"dr"G b+(T2Q­$(SrDB}Y%/IdVɬ "$R2jQb Aʜ]m+'Wn%DLN%c)$I"4Id\$lH=I8N.%_$%%Tُ.%ՏI%?F>Syp(yQ1"J"J"J"ܕs)W!%Lf%OJ&WY%'l_H8P2q¥ljq%7>N$<8V_'2J(M4+!T2C­>$JVMj2+d2+dVf=RR(@3)z®dz©dz­DL뉄m=J( +|D8\VrGDLɳi%Dda2ۤH(@s՞ ] S [ DL[.%_o RJ1a;ZJ 3>&bJH(H)c"䱏 DŽ]֏ ~B S"d'DJI'98FZYo&֟1%>%ZJORFJH9ǔ:NJ٧DاLR~J5ڧDFO [O)M?#J<)C>#B|FdΖrRF)ψ+gSyRNdp/sV"%9Hs"Q! _.%}A+W2 "6MJĔH "=Cʓ_RҦ%RvRJi%I%#eėDbߗr)W}I8IY%Bʛ_jRWIi!\Wd5RfRfRK!C8oP'CnYp, _J˯REY)ÿ"⫥x"\I+;"i)O}E7H|%埯F)6Ml$o$JH$ɳE7*c7mR 7oT{6R7Cpa)e&"ԯߥ7EU~+2jyB%5?z˃S-oDqmޘ3CV@[oD$PI^M1pžUOpA=_[TO bJlky"h(ԓW=V2-oˊ {9ڹ({(ZH0< G|psMF_M *`t_;5N [n|Sy3TX5}j'_B ݾİ'Tg~;>5ֹ"+`K QO`gQXO^=k.HAV 2O$7WԞA?oϵ'Dw_N+J@_3ewuRF ֙ճppGL_ WdΩ:TT((4;o0P=>\%3}vQ+ⷬ:掔:H$,f:3[${CS=@[asGeUvVJnTjUfͲLkrS?Q2E6gZfZNYEVa~U)kDV %SsxjUv•S<rkD_'\b(SX3D|\PRUTakyH5M+O)V`b9Tά' ~^'R- 9TE8G{hU?P\{=`E}TyA~^ԫW+s>P Ԃ^}ԄEwyjHAA^}x&}XԧWgeAQގ27{.:V 7jùbQRgSR߳Wo=XT%`"~3R[V[Qm7mrmeVk ʂakli4R{O{AԎK XJ/*F,k`YZj+<3VW_ZR+our ڀ܊S+{|V8ly{g[cq=MYtkkb1 xcr`νkp u*`}b>AQz gD3-VwfuWr&R^{j'#MSkr揂YvXÉ`)M:)mU(]bދ`r!WGTa$rUwG6h#*$9?r692cioi?(/V[o!YKqN(2ZIwꔦ;u⓵TTk<+N@yt;Y@:UcA8A[UfJ5AP⑱rC& 5i 3 (TaLw|%}-2okA˳!2BP˳E a(X/[[PS-e 1\X]ʐ&\SPTt"go&I- ,Vr)=K<ۏ7S]ߴwأM5!, [Ր2ݰV|[F7bhZ{]Qzݍ݉E OENN|^dBDyo<>B#>G8N:R -"/%R/++Л'-------- 먷թWn Nx[}s(w~ cAA7/ׂ>-~eM?G+~t;*su+n5U{75OTTk*a0U0u~jeM]Nb/ϩ˩O~N\A׌<:K2{aZ&~+(grl<h]IgZEM[UWi%O2kRN<ߐ^45bI0lBOe߭u"dU\vb]Ԥh\2*RؐJKP^#5BEWB.&d -͋Բ\R -Jj&|eהljmoЯgbSF e| KI֬,|ab'9ņhiJqp" Uߴ~#+dW3׹3oSdM%7Umx:"Zo =Hҿ `5)Ȧ$FѿWbI!NDK 7w%[-džpnB6ZE'v9y#ʹQLM mQ=wZ?6qِЀlnH#sG"j³ -zjw Z<ݑ6hӧߋ鬜 tx.]IUzp+!-+2=y&=}{z$mGulLuŦЦ2צ =b܄@ye1?PlKy x^/SᄊdMTEj@6m[ՖZsۤ{($ YOZYF˜-)FI cjI* Y.II|l!\7 yk^y޲X?x 7`<-YPmY<͐eWyZnK&{r 2鑬Iz$T3GМ#yѪ{$UQjzi=nn-7D+xUQFSrztQh~EώpM{woXS΋x4KNͽ }eA2WBZɈ5mtys|:/j·O_ʉ`ܠ=r1lI{eE▭Ob7Ouzg6 4iyw`z഑vʙP§;' #)%M- .i-hѧJՔiV }:1{] ?se8KZʅY25Sf3wfjj5+a5x]Bf*7X?B` WA4 B!DX[B>j0iAGP: X[K2[@@D ''Pf'SX))8y-DloF(A͊fEP"YQMa),7妰 }a5+A͊fEP"Y)l)yY1*7rcjV 5+e!lԡ8-X;l=cC1ԡ8BXn% S u(:P)$C1ԖjK|[v[c zF11*7q_%~(ڒ@mI$P[- ԖjK=N=Nu(:@?/q_5+)@@@J`ܗ/@}K%g%0K\~K&g%pr&g%gP7S)S&K'K, `l/S)\}pW u3BLKKc4)o)ja wQRo)EIf0Lf0Lfpg$-`wF=s's'>QA*`  bc8'FbEE `@@P"z@?@m ;P#gPYdd\}0  ,zz!z!z!\0N aB5 ` aLBoH7>6v20!!!!!!!Ӆv2t}wgggggPBh=Ch=CCh'Ch'CNNNNNNNpB;X#1}-b#CNNNpuB;•{Ol"h=#h=#J"v2g>\_DzFzF'33Qfg["h'#h'#OFNF)v2g"h=#h=#h=#h=#h=#h=#h=#h=#{FpE(365Y<加W#eFzFzFzFzFzFzFzFzFzFzFp33ggg bh=ch=c{z0i_ cƞ111\Ц0"Q -m #F11111鍡MMS W11HchSchSchSchScЦ0NMa85666Zchicz>7g11^chic<hihi&&&&&&&&&&&&&&&0zMMMMMMM`|gg#ZZF Hh=h=OLLLLLL`@;|w8h'&"&"&0LEL`@311g0L=Qf m_ w8ShRxjBۗ}ھShRhRÙB+•{ ھھھھƓ)'SO@ -b ZZZZF)\NN0Lg -b W)))ShShS#0FLj<=Iw߯uO;iU%t`CyUOGJ|۪^c2V: l8YR +}bO]vit=}- &vBgBڒ mAv]mH®6r{ڽ Kz%#.;4h͞nKd%:xIҚ낖g:MoOG$g-ؖ\lK.,;vc{{ni⨵nib4[-M햦vKSnij4ủnijtatatatatat5a / 'vKO얞-= = = = = =jwܩ- [88Jٯۊǎ;v\ޱ-|oԷ^ǎK:v|ұO(w}/n# O84p|i8Aq 78~8pqxqAqGȑ '8^0p`q 5Qo&O O82p|eq?ǁ 8.3p|f86o 82p\eq  =zك+}+T>SQCՆk :'ti1c@#8F 5@qXFn8X tEE9v;1I< pLKv:bo{>${Rsz>XY>pkhf>MjY|_"}ҟ["}ozM>i>2}r/*e/\l]gbk{66A_۟kx[qqp%76tUwy[l5}oF}&!u?۫ 5jƩ"bsԵaOv 13<THqdn^ԗf2#0IE[Ė"p@$%:F`@1B}ES>~V{o 45N$EvՙUܒji(HxAZ##)MS4§HԧP011RiWp8'A>tA P!20f `X(TRc+ARF7 -*ɖu':PsjT3A2!t!!t!!t!!t!!t!!t!!t!!!t :pd/W҃^^ t!!!tQ'\p6Dpbwwf3V3k)h #jOc]QEPx ~\E1-\EpŸ Pp Z^h˹.""J0K #Y")")")")")")")"h#)"h#)""hS^0G0`@:tC1 Vc0==U W -] G -] oA=-BzPc1qْ-3434.˩.J M Mr*˩.J$Jjj \&ǸPf0I` &1LE7:@˒@k@k@ @۔@@1I7fa/`)U#FL 1%>&>&>&>&&xoqpN~g o=q)waH)R#FJ N`*RO)))))f auYS)T*@  BHppPR)ilAh0#SSEU{:[y}B iYCl`у&L(Wp/gm[k\BS0Oɿ!&(2RJS0bZh}BVF}smQ楳@9? 9,`p g)Oau )4^xBw )_<;' "8{p6|կ4phVy|y'GYxOy&oMAfFr#j;${f]q>|MlJFDXkDQQ(<#0A`Ox c ztztz@IW"P"Zć:y:y:^Ǩ1gp:Ǩ1,8F] aط-} `ط-} `{é]Q4n؛ևQ~]=憭 aBتJpZ4-Z@/A\@84>D˸8Z2.h~GQ/slqx9b4G1#.'sY!̋hVFY)b fEJ1T0+`VVᬬ4+pVVᬬB U ŝ=+R&=~%eOzڣ"6B;xl+Z酕>ҧf:9ҁLsJ{, t$*REM_⼚VR,EI/JzL\&>~OGo4W2IVa$^3Y{&UѶ2ed geQӱ:Xr5+td[C!b!k9'-mR4ж$l%qNݱU⺨I)IEϷ:/p$< ڊ!m'd4-R/Ş\RR/KM:B?) R ]]RJM]BBB b3#))|cQQe{#ܵt)FI/ԫuD{&U崵H{pŹf uF˛vl}\%tYF7_/?Yس] R)W4uՂ\Hk=Jw}͒{_zg\z'~Uw4 Sә.'L___-/? OvTxՙ?g v6~{~Y=_{" {V\e%f:ϐ 9 pQ'L>Sȝ'=.. ד`53j(s 0xOgcpW|cv!L~yn]pFPޞ9m{tO tr{+cT{PqTܲ~}:Hd9lɲ*e/停r`/ +Eq(rz!כNI>}OrC8=dp*J^ϼm7H[ʿPq2R~k![ټ9hmỉbylʆ4,I6|RS1ڴޭ&rZ4lx՚d]-]JqdwlGMVւY jUԝ4(BYө%AA/jM_Y@kҊ:_p cwGbY5x~Eц#^5r[s/[U{ inNjݼ''DQ-H1[Z"XUdGM9jWԢaQoJ=i/fr=a|Y#XъBֿ3˷nI7UwITZrmABi׬QS^ENc# <1Kwb:v1;(tiMU@Axb"&:fB(]?VkcY>ZN,jb=[@+'z^ka.ϳ:_f1w-ROߴ_`E @U^/":mCspHh{;gB+LSկᕙZTzp{&&.V#HԸ߄7]7.PAAT5+ӧM4#Ur.r"ƥd}#/k -)574MHYӏ %ͧv۞IHi7N+b]S}T =?]o5RJ,oʪ -Yѧ{3ΉzEH+{É6ۢ&OFҏˢ+J 3^46M4Om{5]Bř!4$kB݀:"1!LIKk=Xsqm9JNr_g Vɾ{PMnmHKug5Iΐ%D%뫍쭢\ -T A7{Fôߦ3ĠޅDmC3s /Qn0߳xKŰ'v Kݰװw1j}0Mwdڭof?MtT5|LxZK4wVO {\{Yܙj3v]kFԒ)yoyR#$vgdh$1 dus5UPn2Wm+M9%۳V\F#@Sd8db{GgW^Pa:_ПS-GfrM?BVXS!aڠXUiA'`gmX*u5鍺5OL# nq-#r Z[H_ "岿\0ejOjY]K] 5?p1aMOJ⛌K Ԙ7cOڍVfU' ˦wmbi3]f1 QW LvVEm9Xp&=fN] G#yW5?c+}BMICWˈaCF߶`EL7D?ekV JgWhP#TVr6dB;e%eoedMgH7զh*wYNk) }c\l]qV=}vD4֘ ɥK]5V<XbYjepJW@}z6S/zIVZ1Mfo]p2!Jw#h RVMIMu)Zƾcr_hyeufVEiijU9FPg;,LK}KSMN/`>e5Sn1V009֢Pu0|HOӠ7M=f5Mw1a+Ÿ8fei\) YV0TfWk* ׶3ҍ~ISX+Ll,2|AFL@QgRh8Wf;7ٜ Q5mXm6+[}d§ %{].\5%)DnUi]\@+()͓3)vu3( M9G8#s]?~j]ۛ,eGƱ&ڭU}wSW2MX>lx5nEҎ-+_Փ_a0;.L߅u})[Sܟb(VۢJM_10? A3I'TgLЊVށYt ފKGmbIX[K>*IT]yfٛ0 K֡4f U; !`N‰FMԨGs\d 3W0 w,.m[v)l rfٚgٜuu> oYKh`EgT(TS42 uFo DcjRrN=oZcs#Cy1N: wa?V#ss& T-^"ƔC])x&yb?Jb>#UJr궟k!u~f=UrbnXNyXmɠ_wuv͸>z$=#dåCWgQ\sV*EbmRMnfff< #0&+::c,9[bcÞ:1޻Nmtl^QT=v ցv;-KJ(4{]D<5K,go%=p];iW!fI2u7&xjBD2O>~V:R"G%ls5}3o' >58 N2$ڸHR$b^wYRɉ$YVOAbqtlwVyb(J8eONlGq,ӓ8Jb[Qz8>u`-D ={.ۏjZcs4NJ!?=@L܀^gDEl:6Oݧd_3pocBjŘ*1I}2) cJO SC?r+w_30^JgINT{nSþYL"'(I+X NexcQIbLvR+?gmPNɹ'J޲T4re-tcVPOyz9t rhfA 7A0^gf(fGUV.q~c>ߧ~6Ѳ0enPᾛwY8u# 67_+K?;uN߮BWmIF>*'J c@lN/u\;ls|hi{MK:\9Q3&p+I n@JhP`ҳ]QY1^2Y 2kc'ָy ^)/I|f LF{E`.#-JcBd"/B|#K3f; iJm$ ^d*x?/{wUFJݑaZY<%n^y| %Aqbx)ТgZ7K5s&`M岬w},V9[P~daa䟓w;al00?QxkS:^`;?/[YGJ6G*%iݏrZٵxfLs'F`v z<^AzJʷ+l9K>WUu{VꎽE1s*brfHFBѡyr*8]g5:HGf;/mp 1<8c=V ZVFѬUX6+]^X@sePfeq rtF}g54wX5R:Վ{ia6y*JD ɏ?oiL|oJSUyȑ{1DڭKÓ3!M;_h=}N_s:]G=#[| \ S*a+ҨD/M@hoV oӨLPb&dw,ZLuv7J:CNԵ ܜsjd5I('gz)Xne u~p[)li@r_չ5kK JcgX$@4FC[rmmn~~\ӷJٛRozmM72MXso+}4^0x=_B,EYȊ/\uo4Gb]3IfW{",^\:Z~O>iX߇9¸0{룗2gw<慻C?~#ͧ[Fr:{3ߪ7+Tm;6cy1#t2QԪϭLhjC?#}1b5\/Mm 5<~ {$ٶgBheN ^%[e| ; ;e<cyf\8!  ,g▒Vdƚom,Bм(So)Ջ0,eQzåG!B ECHT1qPT@AfC݇Mɝ.;M5!B٤xc"|{;;w0qpRet{8,ך edWDλt];_7ZFc5d_>!;06WiZ7{{R>-]xtRtgIP~4XJ?%wd6FBRM"U.v^ L\=,wݴxeXzBVYx7:%7BR_;keC&#'u Ц)p۸K68L'tz <".hc; )5GN;R\Ё :d5>VgkdPcpRۅ}qyrtݕ差&گ8z_.)6~M& j\ *w{vg`Qghl'gEMf' 7U\ު .aVzTO<#Sl9 `&q΢i)+::;_׆ڨX|a6Ǝ ] ΪP~#gdܭ1V a_=lSI²ZIC=A"՜\KEݷ`URhȮ3 fEEqj(y.)g#"xQgw^7b)VS- m!oIW nXWXWĮH^%{D@.KFĮcj:A՗[w/ ]W) Gڐ#5.i~7~d_xKZq)M ザbO#5EvkX~٤MQo6VJO\1QHU}ݯe;fKv{moTī6#MO)>'˟2$V}0Hm$ G}7I)BT [!Gt]4PghlT>ZMBSOqǐ[W!9M0XXDYp-3#yx=程L29ӑdXҾ,ZmYǩ6}jz,pH ?i"K Dq Ƽ0 |71H|?[˗[48iV`I7E1rxbCQ6ĥ4̗w?YbH]M^;|w,u]2g4ME{H+a?fLܽ-L`|7o˪Ez{JpzthDž6QԼGZlګrJ6:%ߦ]\<~5i>X9/6,Kie\UI+<={ѝF[@]絛pqE aw繚i+ ;ypd[G8G5rv%FxU`TMI+ZCW>&?_)\59h[Wnǔ۩!&(2R.b:hϷ̐$%gRp#}K+sC˟ iFs ÔJ>Ⓢ:?9 ^?HWp!ָHĘk9ĀƝom-L}.HMF3Zj}k[:!)KKw4Pfmf =f.H}SC}Q::>PiQHswPg$؉5?$״85+{tI-XxC"2M~.qO4(?/niOBoTBL$b#{z]٫0 lƛ YJsQEk?|܎l:ԒZL> 9H2aFe>3/A܅A"`ǡ,,q]u oWM}$wR8a _eFgfbKD'sJř?j3C~7{?-)[RH|GHu{)Sn8mg/c[u`^E%}̙̹8`Nm.e=\Ng2 YOf VxX5<|\ߴ#˥M#/{$@Өcr @ոUEKI>4ڊjMTA[C[mϐV\5'siU7l\R[i k"{%R&1WV*mW,:$&t,-FReocA_($[K/,N=ű7 o^B0LycN/^9|]&Ml: y58`8!^$= Y/Twf[:u,T:7 oNtP3[Ŝ:ɜ!:ev8c#3"{E7Ot&T JR8Z ghVxfOTZ`jF1V#80CqUפ:$ZѼW5:`樰F;ɪAxw#TM;_c Og<13uy'=qzs~AqkA>Sxg6߅Yg?aѱp0ѽf9@AGvsAeLL;z+JY@#Q~dC T>SzuJ4Na)=4Yt0٥t,{R:oҽ6)=${,RzAJ٣sF1Jۢt)JZt!JE;zpR !7g$}R,{PusvHggȰW@!oNU,9;$Y!5vHr!EC>c$y^'KcyCӌ{{dC>k$Ǽۡx}{P| MPŇ@ϛx1>a'>[ٝZxij6'gr,N;Iٙkh}&=Ԥ{lMؤYPs7>dqMNzI7:AV'5;Av'7<˓ΛtI4>`~}'={-P:o6(cҽV(kҟCv{vܟ޳;oCJۓ>hGvߋ>h'zv]==;{w{޳|]C87m޳׼wy> | 6˲566e,=iy@<sYdg*X@izMR(ImuG3AEQ; ' ZT5J(e"3FZh=,7Ҹ,J _t uQ^h=?#P>)BA[QZ_9?TSz׆6z,ZM1O=e0dӛEq:}l˗S7 zWCKo)o}$XofE.i}CΠ&:}- 8od1͵SBs#/>>tSs`KI}t7Z1AoخiP/W{zưwl iX$'w??~^)Ƣ ҊV]ofPS.`)M8=Y{^9؎s2wBW0Vz@rxCr+9D9c%%~?c7kj.xWgDP*ci 7+}a3 _c|W+$^73M>EB"-iV5$k=m2ld+{Mw1`h[&[ZwVDW}BIzc346sP^gƠ*Uf€v/Jl@"rKPƂc~ ,jqYQR;z6%{&yϪaUѶE6ك6dgVj4i^ZdцtZ2h.kpbﰾnqmᩅy78MŮcK SnSNG4Ukj7~C ZNfh~Zc5iTdѨXpe Kѥ70)z9R<~]Wo$P+\=iD.6Dl~S~ͥR_ ։<}=M$݄NUC Px]M,_rN_˿_}G?)gЖmUQx` mJ,Jv{mժvL]؆%n{ϲW'r u}]7?دˮg{ <ᬋYer8+PK6T,PKmetadataĽۏG'ds-~aCPS$%9"RR-%l3KYYH/kyؗ5~X_^{vzXYy`UUI/N|IPbOf~狈~~Kzvx|g\K7/:Y_z0;L??;I~}їWc||osgÓ͝ѭ'_=o>)o[҅`\l^2<}z:Suœr OATXC7={>umzt>{<{r|thyɏ&go7٫:P]9ŲX mrdv*A=!?= i~B3v|{:ʷۄyfvK+OV'{z>ޟolgO7_kvۜU=arqޞ VQǧfx_g->sdr8guO$ZB M}r7׮C1˥~rM9=x}1CЇ>n>'~{ށ.OU;c=:a=:/ֺ`!8D]H# q浱S4k;ʋC5cϒޛ_Ñv~޴iJJ/X˷6)t ל?yKGn}~N@ ; SyǾU]>p.ɽ*WgmdܟMO{_Q+wduY7S9^r!Ϗgmjo`7q4'e^V\tbPJAoLzB3(G~QϽdz{0W+ózƤ?[v+f͟3{6c Zn}\gً<$sowMŰZ s.6OpvտwݼsX2?\۟mk M3]e;nuN^Ge=m#}|܋KoP),pJM|C'WBŰ#m^{Gn{z R[%&sqEBQ(RA{wGeNrҙQ;W0k"ыsyjXq{=Mo~\#xf8)c VRMA?CBSs}8!szyׅ9j^X~ %Z?cA1VM9h޻ ?S:6xM ‹hQ2 uDLN^Ft_jJ{@ԎmɽɯVYAKmJC3xҽi]De˵<}Y?C4B[cu۠0n_ TJuV.#\z.$x:ۚ߭Vr ?>mVT}OA=d:7VO[˃lXUZ-S!Mߊ/а]1"NEMyJ)T_Ay mF YGB]`8e峒 `..˶_ӣxm6 x j1.v*NBP:AMTL0'\ koEqqs0^ޟ<|OVG~W^rrdd/7l蛎6'L;L\^q!ٱp,5ȓǥc 9O= ~X)Nx8>^,MN.Of|?YLz79ެG&7Ug$"FV~S?NKxޟoWzY_2N!ygѭ*J_ ؽ߽vև7n~De?M;1O70_jYdv4}n2;sT\ni&ܢGv=OlM<_}g>b>?=sY*XcE8%_zr-]_TX=g5a/82]}\n×yg+_K3T-_E,[Ph} YIgTœ}w-QʜqrFuQcאvU&~\k+C8ep-F^I{j͙l5. 4>gc\pgcwZhp=O=?u},WC+ܳw:>Y3?76U޶͏'/C Up^~έo}> [In:BL?>,sVԙsh'Ϭ_}J@*^G%=L}ɕxyFen5 JTձ%#>o?7g@{;[˃~$P6i6Gשּ 2Jݿ`Ŵcg_<,p6{8TJ2W ?aճp|ZNֳ|=y6;<3 FV׼ ܗ[r9ج&aV ~" `!y. +88\͊]dZ]TJ)sYCPӣK(Wŗ!ϣ2vF} B ^uR0=Sa9Y{?uo^L}BpӰ˳ ڢSAO/T>k~ps^f''dL6{jO^CݛU鯺h_<>Xev9^hQ*$V(E4ZaF`L;״C_aʐw j3]ZaAo-*:M8Q'Ǻ`gE%L{?0n7?-o,pt:}g:E_.GXhƇgE4W'oZp)3Ӭ;b?ky1)Vtq"_.*- 5 "~PXnp{`8Z {Z>^D31H7)/|O8t>ٙ5^).`q?*|MܴXw9KyWW''G֋gyk1r0T~gѕ/w*;3?M.3-7pj]`i{4_>xVQ}7V0x\G0Hܼν _\Z&EL+gGvSF $b~Qj +?o*QHWq[1GeyX -RI-I/k<9/.G_+ !;L=?>Xv& ;~{rz&<ۚM~m_uR鷺dWTYdUܕ߯@5:+>z^ 5bN0WxXCy_X㴫!dHjpx~ڛ^vW8?Nj}֞.Goh~%i$7t'E?ΈP13Э1Om -9`W3Z4 mιJ8N_{0JJ0z'c ?Yyٵ *>V`pYKU{,j_)GXh1}ƣ,J޶nWO{zq~|T)~^4Voe?-_VsqR}p%\.Qg/-Bʌ1_fLv)CJj{\푸kYH UWL] ܻ,INu8PjwlNj_>9|\}>ޜ<{ st_`}Z~6]?Ici}T'`?,Pl ,Pّ5y )47uV͕Ru WA.~7]0 }m15ѷ_ .wyojL 2X1h7̞-282&hBz J((p\׋dhmV||yκg6W~,vN:Q COnRŘgA nT=PL{W0C=r<) ZƜ\z7?ϥ`Wc0ũfG_{Th>蜤JDu#11Kuk~t m߽goMd{<Px|{{w.k;st\{y2ݗ̖#B= ?`h,kgvPkOꃾ.}ZzZMZ8?ptz[uvVKܤVFi ڹ`e sQ 0whlko'{PH:9Nc֪huJbjVtz`U)mqga=7jNq9Ol3)LZzP'V\-ӣi낎Feqyp.0㘪jЗʅ*3VKV;`%Iĵ*;S7ǽ:\_,7.@Yt.\%5\wjޟoO؇T.:@nnU޲„+~^0aW *)~X@^Y8e0isr5_Rn8s7{SD~itߙ#\d;чnԯRE++Pg GޛmJsJ3 }l.7qq'GuHSz}MEA7[͖ˣoy Ϳo]Ne =G1Ptw{K%{=\9bX>Ύ7̂Nfx,һ_}\bī~Wнp,+ .\Žz9oUEJD!2HX%QU;f#jux|uT:!W=yVN}Ыu 1q{sct̓\hFY-w*&nW|\jfoE/:tIn|yS9ݣ$\lr\OW߽j@2@vLOK̲ yq (N̝1hI~//}zٙ ;"w nGp~GCUKllXTSa-i}^zhܿ(w"=)37ּTW'|YJJNC&!.5=VO-J~_צ0yj B8z]DXAbrZ*;~N_==NFf|tGb ?~ld~w<_Ȏ\ '[J`\I/FWagԁAkb16/'xz?<~.LQr1z׹r8.+n޴,ޓQ &'pUttFZdP.jUiT3fǔۘYۄ%M#.'RJ8euҹ yĜϩh1kT"F3wVyHuű@ݗ(_lϝbcJ3l)>O']F{uaH C\~LbCp)q9]pu66YpD,FLͷ;їqvPY5CeAd6x/'N m+}b)D_-'¿EiY Vqk NauޛΗ_k:Q"b%!e}goSRXT=_Gܬ<Ƿ_.L>?HޭsgRVl,ujf&nثz\_MTWS)ZOgX4#^*{NuqQ5~)'E!u/hُ݂nX"qŘyf2j1JՃ΍mc_h>۟<<9ΗoRũdѽ8NͼxdtE]S?h_Swr-ϦN̹pBUoyv~E+0w{1O%Q]rt~ܔl"UE=ϥĸߟj(Sng?L^B?u.ݒyֳˣ9;]7w'ŋGS nMgEbW"י=%` fzc F f-a_sO.,\c^@GO(wB6x)QJDB_LU/yiy'OgžI_UM.O>\;Y/-H%\DJ))>^n~.' ]ܵ"v͊as|y`^Uka9 ãѢ4+oNQ6 kާ'{Ȫُ'X݊*D' kHʍv/*%WruѽM>wA =t/[*:mPa\rBkŁJ_ պyũ#.T]ʳR]l^5X(ﭵ:i Qj+GR^ps`uՀxH9r.f³T^_C\Vkq:4]S_56_␝ >!3k߽vG7h̻'<:9PrO2b^|?g?LwaqGk>o4@gav7؇A13%8o }!tZAT\!Yk[n7-},ۋs|r|?bc}×,T7{TX}U)]B2X%.!49:^F1? N{ŹP()5^Z%Ko2.6>n;/-٬?\!O(WN̗I?Z>nՁl|qC0lQٜ>$w*jc|{SĝmnT T5|LVHofG =\fTd+Ln`:iݐPU5ʘ2 xWZa^ L|ą/'dlߟ "Cry?`Ⳬ oeZ!j-9YuN}H}_obݗ^m^.?fkyyt\9o1Ug4NvysYtOvy lA[ T"=/bZb7M+,p80YJ8n:{`]rNQR״tpxf`b~ VEE-R'P^w̃ݳz) tzφ_rTk,SEjNf'?xm WٖpF]&u6pD\ET(KM.GLӈܺGMQ .|mmժpG>gN7 nLħ: |̬Oecb|fM>to.ݺqR67/8_ztzޛNfdMG͕GKo^7]_^n.Ob/޼KW黝5&HDT*B5!*Ֆ9V9D4"%*9߶"%JhnIZdlij)QqNTGa}=^BV;1SV *m#]yɤdsܹR~ )aUR75x w9ZJ"wi!amK(eB>[ j|FǛ.7^n6uFHo ;]|r5!,9ͧ$C.2)YV|)cلK:*4ӥ -,GzȐ56F>RA|#8;zJ侳2"8-IV6ÕVo4_'ZZ㐎Nyif/$M7]ZZӄ0S;Gʜ1:XcCs6Ybҝ6܂ՒMɜZޅV8Ȼ5!A!Mv&Ypް5`ƂjI)>ms1Le K:Vio{)6׊14,Zl6vdVqGn]% v]Zf׸f eCimQY³ihH$] ݿ{d`ep%fc&f8(T|ۛbldRb3^F=m2Rr7K'>᪐7 X8l%}ĄQc{\GB4fOnΜဟ=g6Ko{r M7a=6=wVS#s[;UF`tQP( \5δV^`gkM1Is#_~e2hHtsGloMX(6#VS26;4gJ}lUJ@ݯҤU &e 9uDhU S1꺠ȖnHZI׷n%ͶhZ+(.DR(gTlmz([ jYԒm ϭk"Jr>VEf$:T9:V~ aO/D;ww\h,VA3- [ w&'.eЩغݲAϗi(Ze _P6ux9C9۬="#SQ4zJÊ/6|gL5a4sX\Db'Mw̪~+* Dޮ.%ɒS6tem'l꧁׸Y;8\ m%,6{s:7lLk0Kz:gQ^Z;4M7g^ +{9(i>lw\#wpdV|(\,R.0WvŽ YZ[KHA97de_a<(H} EV;|gm-]Qq 6Fwo~NBbh!vt6.N" 2JY/PjRݶ.ID9b%b(~wnToX|͸/Vń F4ClbJyR֛wZy>b ]2־6NlR7H#4'.gU+UM pWZЂm\LlLwJ a@:H&}yYxHD m-Kq5X[^wMyE8,tJȦlKVx$\3U=Jq`cq,i!CΣ(aF7n;5ĤyqB+cu8uFybc1KCKHaYȿL2= SMFoa`Q[G l(C|e׌ ox )+_$>mC*H;bN SzTJj33jf4S]\ƌ8[K{HdD]hsZ/i \D|[Hκ@}!!Na̶i3Y͏"(&2K{dN1MMyx9zP 5(4Xjgp^n(D\mO' bCwN'۞ɔaR3I.:tc"/;7Y T ۷2 o^EL$%N?+ɩSG5/iv@q ?\ۃA0:``%?{^ZWT$JqA))m8MSl VZbSV1K;qWLQdҎ-˜Je@c $gZĥD2Jmk5x;&,6RS8s^Qc;*8J$=qQ>϶+G1;6W:G(33'mwʱ|E1Ic2&%[Pk|9 ue8X[N;cdɺ,Wˆ%?HcZ6my|"mYUlGrL]PX/4ISًW;PO-N-T$QZ#Xz. $1aT裀q9 "uPz9Mqq7ϙoZ16FI˘ fS{nAid73vQElExzLLDجwpiZnZ1bUK!Y8Ϣ^}ZnƊQ ["m,V#'VèU v[6Ę:]9M15;*llA1{'4@ЁUljӂڄc,k6-X}悵ڤh#ԉFW>T`~x)tli`~TŘnL4]e4et#̘"S/ʏѣZ*Od^G9 \Zؕ1 V4x"ml3[ţcK.\;~nV1c*f2`ۨEnv@\dwQ(OTgD`̠M*w۠6seʅ1gP4ɠdhGmۋ[=dFZRp1>.E,-z=%XSэ0׌!ٶMWS\:%N<~Jf㛥Nk&4i1%td|d#wҏ"qc:%LOt@Sa#U>GutvL"m|#5*hQbeg$$ҫ1I:XB;jڙQQDe50a[]xO(mkj D3)mt^.:5fo(ELE`TdTIc$}5(Chy(=FYzy.# FF32ǀ\nHYz=~Cf;^1ƐA ES%މn($># a$gK?VP$Wv2QX*VQU/wb{fh>p"1f5n(dCQsbEy9MhMF+ƙo 0J>)56cReͼ#hb2'yKT~b<9A5rLpikJ']45{5id7`pFY-;y:b3v2P]~8v2;TVi2"@%;9JIM*k;ƴA 8e+m&  q֪!խh4 eHQ|;RFAz1H"ۻ&#kJ e Ѿ$O>N27Z f'agA0;r؀r\) c⛍Qp۰q\&$G 鼽jN^EͷƀH<ߜ7D9fC3q»&7s~T~gpqcG ctwMyS#N)+=V[کK66mOW_"ѫ-)7ч8JYf lU֎`s+aۨg&+3j;4O%]֍jE}_nÓ t( y _J#:#$Rkd"0Dax V Q MVBgƶ3Ӂ@" SLNi$+S0T4 W)e4JFa4``{gE]2e+N4! LS|yd;$7#C~6 sEt`4U fN/5i%]L (P.;KT).ikt-ƻby:iÅ<Xl`CB,u #m121,R2m\RH}U%F[59)ba5d@UjWrR !!;$9aQNc%&7EzKY)tۥh;7SJspG夅5sT1  w*V9QwrѲQ;jFɘmzJ1M#G<*p9vVۜ#:b6apDR~"svog&!+Q~u0dkGe=jvLBa ->3J͖)tJȤ/ǔpd1 'Z*+XVķ3Ջd}^zȑ1K Vм3ъ̃S*Ą:3[ыԚQ!:Q }D@VMƆz_3YKcQxUtmFΰ, 6oERQ3, lm&m"5HɚHU㨁NzۙEĿzЦIT`AiǕ!*DөO 2^}4P\6 .⩡<ԗmAz B(*rBNdg,| ֹCӀE_JG:9:#oN&d'Pmרvvm˝gKOy s0:E_L([.eF@gR%&m7QMb̂hQ>G0;r7lPңͪJU tdDI,|JV7U[Td2ϑűȵƷI yRJv&82$Lj%_̐H <cm:i0*\,\:Y*y [on,IZD,He4+YrEfȓP Ym6k*k4a)!NGІezx=B@X6iي/+TGCCڧU+T)\kVA8L$WDQE# Azo0\; X6r"2bQ?Db6ZO%_AϢMzkm>/i64^* TEdbiG;(Oye 㝧Z _3 029@neS:2SV îIbG_8c<]xP٥zTEsmHAƋhs5 F,3\0hI%wKxL[jdS)kM)?"ҨNY٤>'JQ "^}S]pw\߉K-Mjx"ki!BL̚L66IaM"蔇 lAF)5Oϛ֩p'\D !Lc@ǫ:9G@c)S-{Xnh#aZG.$h Mbb)UŔwլ瞧m"^azR57p[ThcޝR-"ٔCd14fjB5iCM6\*&4NjhxšSs-mUScX ^Sφo@eW r9*6E۵PWMYlM$Σ; [V#1,ZFY{>Qi" T~dB\*ߔTml0)F/IKpXT&^ӢYn:RMZ^rgHy\ZʽW mTi@dNWyT4T͗ PM /a^K6Үn*QnZ,'ׄ=yK\Y 5KXYgr~k 8tm Ͻ:mJug4a&͕ɠNa͕iӖz;d5j"ۨꬽ֒KДjbC ;YF{yW4,jl[oǑO"/mUlMSM㧼GTqN٧ލ{Fi:``+EL ,.;l[m`&y{?ZgmmCi,> Q6E<: 2ak;GRj8 J`q!6{C |ʊBlSV\PKYTeu).4V HH ԩҔjZ{<5ozUڪflk*y$~H8^5uk 3!EG k@<)pG vMb)>@669`ЭEj, VԡclaTzrk&l!ew[+U[B9)M[`UFZh URi>}ߒ=UN4GZ7ZvKld(8f2AU%.m<"4G:c!l=/dXTiYUkeA%% m땤mMQGLODJtO7aaD:fk V0CD8/*Vy7ܹ(ש+]xho^]|U6JAꐧ`SM#tG2 ?So Ҩ~AŦRh``'kZqG}d;D:)4ڝ/51da`4:;߸FBhp8 }޳ #Zr@%C>IphPڳ:Q64-Nu*ōFDqV+;phJ rOL:RЉȀ@MK>Sesp_)C%umn$[  n eZnbYEJjz0phud@+# ,8N5.d,e w!(e0~,ӶُP;sI䃌ʮo2Ed!V ʰU 0*KeVu+5VAz*~̺`J@ݬeVOZ`LӅ4k_P%wx;5BXndxʦ@s_Q[Oyw\*Z:TAZ* ,eeTW- ]g˙w]V(l8`=e9^;K&X2nbUP&fAT0.њ n hM͙Jhg&E3iaf~ x*Nn󖟇xX2v3Gq r#eaJX9Ω)B%DFc*Hceڌ޴f?yKМ;(rlJf#PNH^R̮{yK悑f޲26׊蝁2[C$ߨ >SѢr0"P9 5&4Gtu&}̃D`y8n 6dNFQ8Z;i M:mVa@O:b{+rVtZZAM"gniP bXVKP*a-# ZF6#egne7B2"ۜZ*6fn d;'j?2 ƍM Z-Fy.5}$-H^&Fi^$ }4o 'X$@)͋–kI#D-m-~$J˒gvXBЀJpH֕àykv@uAq 8Sk,_y}/K@A}9'dĭgO}VU͍)i $^$NR̘D@fmcK4+ լ2Ɩ3$%#HgEF20$oVJC#Qr Orx|u]il1u-; rS.+-g1@QAe%jP1H;4gHLjlb>| Tz+j$L<,^>"4S`|sLim#jqpa$=g?JiʐM,-Ԓ$+Pk g?("AyfBdC& 7LM>mM!,Oi7p&1&dLH-\eeeud%a`6,ФO#YA}Ǒ+Uu+2(S\{ӕ=|&PՑGd}`b(3Y%&eK蔷_3DXeV\ +*/Nω~n\;ډc1E 5PrȇYO^l4Қ2I a4rp$zM!1[!qAy R1 1F=2r B#߱b!} ,J?I5z~|4pv]ǣ9DވWsn }ׂkTxs8 n"_IJ<~SV|nt~36B?4@Y%u !1MI9"np.ɲ$XCXeI~VO:s<:㵈[:<|L>6s䟿u+"]SRh"Ʀv<:|&+"ѱFv'))u(8w3!oCd<\kȊu+^k|J;Ƈ `~k0Kףl/wߗSK!oqHjŸ)I 1{1L7rG1եV\57{)3`i2U'8m~$.|6`;:Bh#Exh0n Pok)b8G'Li}Q5?X8{MO7rsB ӴM0.}ZMmʾ!nhѬa)`c vqVj!\m$@`.&ë5\hJ) .2BFXbuyYzYhs$) ~iO_1uwײ{ڵoEsBn~IO3>κQxLZ˞oOA9jJCS@̜2@n}'k} WK3f>'%m=I {Y:+: )g i]kc!}ڲ]1{<]x-w J\#.5g~3Gl )CQO_d:'MƦAxQ1-Uiu l]+{O!W mOJ! ~i/ۧ0ĩ:"\"]=)$Nx"bNz9$2$\¨FLZn>9҅;8#xN eU2W+1 u-B(u9$%ī.}B \! PA%0Ff助uسxrHXn}x"PC;ͥƇVaܦ C2xV81]ּs^FGkVP Xy} GP9:it5ISj94lQnk&`u搆:>c9$TpY_1rMwkX qBɃeXlu@ɗ9Y5!2n*`X\e[V{Bx)O;= թġ~<4E+Oong=T7qmBE9$(sBRیVXZ]JnzB1.}U0ļA[̅eV](CW (+ aHtZ_ +fߧ[rKSa܂#qeY.׿6vڂW!>q%Y?X3S:Дo8IZoe/<[{1 كYl#uԗ:؟_0!>9$ԊG4T<]?úɊbr2GC]:o3*cak$C*)n=&+ GI0p+Eү^1@2׳+84aσay5_뺟w{ޝ1N!a4? +@]fpTR~'XzңV sRNOpn%ڿ^Ƹ. J3D5'){EdJE)"Jbj]NًSHl!і8Y"#g#je/gY*uhkG0%LO%#7)"ToNo7Krdo>(o+U7IFV( Е4U{@w!BwP⃕P6mgjD‚S?74ῊsZ ¬rl4+@ n8YJ>Õ'i>nUwB,U+27x Ug {j \a4LQqmp+ȓډY<8RWސJph4dԃyBiJ5+G_WJc:iBhK'q`Yϯ+!D~Pt9:.QXFjɥǤ @.XA jYb2esNР_W2GbHZƷO.A;e 'BՠH!DP?)PӸ޴)gFOL}GNW\ DDabmF6䤶!+@;*'x⏻JI1ɯFԕz\;B󸉤:Gc[uH\*MA+L? M/0m_~5ICbLU_%]pڹQ{!rSZ/4VݳsjWy3L1?"Zn4"v';5 8=lU<4Yi}OT2õC^׹PB]D`@$}T~RO䤔`[Xm>& aU;<|)f7^4 LG񰾧6䈷WEʎ#9]"[W2XZ U|.Vd5%ɗ(پM䎫RaRV䧜0#Jw5AEi$p.ópK~ϦM7h,ıdtIeP0=c?>l2ȣEFu n;E&L޻ ?BApgٵicO#TvIo䀛*ڲyǤ_2Lg'|\N@vM'Vhq4h  Lxr; t+CB8.rg}_{`JjgWEFyѽܣ,4 Y=]bexz]'_]Rdo/0cIs'RG n{OAQ)BI)QO2L&ԤsŸT h.ySO7o@*,2OjEw'XCa mO0ˋ7014$P}oPMd-}%;^l+^Y-3@J(/aJ$BuG! V^t链.H]%,BxR*}@e˛C;o搯V:߃wU\f4k6-[ j*͟hSz.2.9%"}x{?]3ɚ%pRLAM+"f{X`*Eh)_b훑:`\@-dqbR0uOc1̱'fx6L,Y}u˼zw//ӾA|AfIЭ2H)NY67"l"bi?>fYcpI+Z5H'Rd"uU{ʭHiaDJeޚ*U_aw(u3eW+NqEhھ֑Op4;id?kϟX2te_H!q}n 4gR1qD~'Ez AS@%0v68 mqa9F+^_lŴF`]V"vg^Ox;/heXeZׂyG8iiM(EDN*/M8|~kT}/kћg78D#ٙ6,Aa'US(egj{&OĘ: 7i)dLjdu4:gD@&Tm0<@Ь}GZ;T^2_lnLD|,hU7J-}*k4Z{ mFemFie_No~ԡhPoU P[4BiWωUO0kJ8bP3dhuT]Sč5s8mTx^]Zk6ldflJsFëy}9W19.(~J ;2H<+uA :^N]pk1?22`~߾Σ _a9.3+c‷%2b ~Ia+gqp市UM)7\aȕ%d` 6r|ś9i Km+P bOEN Fb}~5$_@3vx]IlgyE6?tg_ _]ɛi}li^-1%wD&\0ݎN*;-'ge8, &ymVRāR1e鍆RK}nkjh@^vj^0֥"@k>KC %LMSck8ۗ7"`"bӈz}BxM*6Sjפ cU&˽[</F%>_MMkjCW<"{m!bY5MIq[}E P4Md_M%_pb`8,Z|\c2I a>(~ikg1t{z[ggoj^.e\}ڢU0xˬxFKvؼ/i(<._/oεg!O"vq7/J(͕sȍԬ~BNCb/nEӴej$ z:o!֣MڮQrC\÷:}E{OJ9զRCz]Q]등/ O=\;s}Nd <xEȍﴜ\Kʮվo8& CKw$àn6àvR|߯8~f9١m9ȋ<3cWX4@U\e(YTI:[,nʹ l@zPt԰J=?E-mqN8燣S3Ztbm$eÓXe:}_rFB˰Fݦ^zTP)%[iU?)0^'3w ;/g)8Hc]܅օ8n4pX s#~4f;Iׁ"TgU % # (~}އ؀4R76RQS@!*$Rҙ}bE4AMEeME۫ CH\wW}ƽPcf@H\4$vIwF}*@x{F `PZEwӘvBHU=u37rO4e/PXBGj{*~qo,Z['E$ |0Tm?P+#p_xD_/2*7K$\CV61/pUК]u߱G3!:I^y cĖemN8o䍘vUKrښwѤ^0sT{ )U:]a~'k{Jέ~T0\5_О [ @'9g(-x";I3:Q^jHhrjQ܅fl {+H|hy@LL7cz2|RR1-BE68+'UoG‚p׽NDs]ARۏjBPf`tJ>\<|/Q,FhVVX]մ Д!*l}|F9xΣVUTjK1BTLu g7vtG4\Zō-~Hv'pZ}#M,B )؞d%հm thaXf^?c9'$:$RU/?k0/ r 9H hKb~X _ ZӃ"6aj{S̮j}WUY텎}H$I)bR:nJ2!,nE (6 HW&bW\Чmwz{OP̕ zR)[UsPϖ8R^Zcbahɖ %& *uƜz޲Б!䠘(B&ExJkJ?pHym/!,NyrV% bb^Ά8SF;:%7iYܰUIEܶ8ZPCU_RQDpN~8x $bTWVu%̵&#pbt=΃qj δ]{[SSLL8#Wg%^%a0ACY-O ָ(î}!H9h${!ARQW%_y!EHn$]PL]6*bP|-;S.X vK=(ZjBeZk<v*Q@n&i ̉w@&u;p;̉"8Bw c[-7Gv 5ySs k)O 9j:R#(Ċf26qMvζw@߀%QpK!]2Y4d(_-I^# `& dGj.`<׃üy?n7%_v=ijʼn-4m,4K>F|RSčm6%b1cͮSNVL3xkӡR"zݦ}@:NɷgEp\=8 T.~I #}xppi-})|P,OߊZVQf iT" VʤIF{Sa.P"~ UyenRƞ/BI\@v}~vwZ@6e%FjS;&V{eG+2+-y <s1^\sZ-,r%]بgWKkݐ-rȞHHaN8) ^LNOOh:B NB#oB{ݗ^ALP^Pml A"P ?KaD?=z뀐Ky^\d KDdxUKOz0XR@;w<J\d-_fw #t6IH5P{ھO#)h+m?/"ިATiOu4WbI vw OcQ8+-{5\^Imn Ba*z&/Saf& ]?{9f ~I~pLVڞ#`. ?{?~M* {$<|DfACa6PIA'rl|w:{9c/a=N6f7;@ -\wa*I ^z^&!Ph壴3Q ]KFu__„rCBAK\fZ[)  B3k{) jGsI -<2ht^zQsQ{M X:3g? kH=} 07S`&{v-„E4+:iy),2h-ń-hX$?z#Mm0A젘ɣ .EpU8Qٯ)VZgMiE+ b}2 *o<@Gga6Ak)3(p|ev̶g &XV1V˯}Qwr4K>fR +YX& v}i5Nk%z)".]i`ڳڼ?csD/Y=_5cG]n$FmM)d6%BW|I adjhncokbm?#mJ+lTWߍ)ۜAJDIUN*g:"Z'11q'ɰBsL,H}c̑cbYhYIM)R;==1WbF^5%c1ah-\Nw-]N"ַI{hpW9*e xAK(ikW!cI;0{ 5GcB<'飒d~Ɵ3,SY5trHl,̒^Hc-z-xE6:dh`0wR17f]>sO ,t=%WDjJv8[fKNMa%NT^)]8qSP:${:Q xL^*ٚcn1ʞCnfH>#BbBvSU 3ɾWN2ܭƮ/gw3~mHU~qY0i]^>7GS GWsH UaՏ'x!(٦]_yp`S[YNV7'.}'!oW#bpzv偅l݈*679$4F{qf2fy!պY,/.Uzc5_ɪ{qBۤ/M6)CVƞ#rF֘a@V]>8׈<+9"![9gWY-ʠ}b#!F*;9K\]4Ҟ,-qY~0/r8X@'\<+o闿?~yn>o1T\E\7r)R!+z%ZCy U Wb*6+}u*Vo:Jt~^:"xempMc*FuAnn*^[wyY_uf0w:@@@a 3QL@ԳVs WyrDxӯ|̬ iQl4il$ ~yAfvK1+h>, $kVVmO”djy9=諏i$6;'x`zNH@Ij}VhA6D%P T+$t֎@^-sRH@% Ԧhh`74,#TZޣ:|C]n6A}^njJKO.,fo,H@LtG{T$0&ZZg3z`MFy evtV6FWKpLT*QoTd%?fx[0/ו+r'2>qDiW12] m(zPpRXY#LhRZ'RvKAupNZ,ҴV$z/g}P!!u䳴%[{ Ao31 yq"m G, jO)pb?AYg4B8K#YK1UC)pĊ1v (:b2>ov_l%inu9շ(IB.ag=45GNˆ|ҝA=O: Zas fH,& (lj5Kx`)\i Ҽۣ:a6JE$?.Wy^ AZ,V蔾en9Mx/DR@U&) MugEo]qj,5صfzJZ \+r@b9E<; =kUH`08DaBxy Q3`(h叺 +? q"2S_+a^*MmZoC̢5)~x1a8ކ*z󼋰K,ځ5ݢ@pz)$)0hx*ȤWٰaK⮓klz;5a;YG'/jxbvx:C*2T8#fXq1bpL}Xf ,>F1+]ώ1x?k[H6x@W!+,LoͲ>fZ0SUX7Rg5Vo #3S+@Pc+b2 xe:D v iNWe-v=zVrye7 _5`Pǟ>9@:c79+p)V֕B u=kL))U?c IT "U^a:olV6[n'B ۉd\y5xa&(}g?<7O¤:|`q>y_0K&웁V3 _*Qu]ۏ<;b; q✞jiA'pC"u) |y!v6ꧽ~"cDmr}i^Y!qV葉P.RRg)3;k2ngېO\-,\ެUVjY#M qLq6זG#4B,٬fi(bǗ ?QMΞ[ZW;1@1*-fz)D*uY5O2f.qOѕO{"8XYG?]YMBq{om3B(JEϪ)1M^M^U9c_^3 1b=]x>O;pJ%rc4vU-Q !Neܺ ;#yr:W:#go= 8'U%UU-CB/[0VLH;Tu* BE%֡2;ݹ8)Р˵!; Yp!KGajCK0ڪh|ӀO\h7Y!˳lЙQUw©\Wp7E\h VxlmȧúHĎ%SR R앮,]:acW260ܚE:-7Pc"} Dr`Yl;Xq'!vg#:q?%}(l'9C:70!ҥq#,h]7oʷS+pZפ6a&ۿfLiJ'ܿVu39h$WlmnIEXš>/dz6k j2zYq>:*Pi%z= <>G³ĠvV}8YecN'&na*my=i#9Jv*X`Y 1&miuj j U P8G-СRZ#أf0rMka\S79K@*Vm$+V5usA!m7=|h+H uX3Q'LWę^&^1gRδ)8kaleS1JDO$0&4hP&JJ@UII%Q0RNJ@cV7O_1#/i *]4işJ_17tBB$ z[P?,V}d7ںAz%,R^hODLH¡Qc+x/xbC*ө'}F+s)OfF?UJ,BH< $?Π<wN~Oq' (nG?jHjrw#6OHMɞ5*jL? T<"O,@ l|LmsHBG"lbu09!|&&|W|vճKKo(9׳dBݭIiV\ظWlYaƛoӫ~>TN`DimĞ f((,wV{bxJ?"g; . dLvVQ<"DJa۟e rG3KoGi4FDMFD5% ΅z zy[ZG}qo%=i+OwK%k)Ox j 禭iHG ])YvYuY։J D*·K:ǓFu KrZrAWbr|Vu='V*G {5NaHpVG,8z'j,*?P b6j(&D;{p-2+r]2<z'(ՉQ`/yqseƽMO?o[!@&Ε)uS#w~rZE&\ _de'8f2TȵHvIfCt''_AoxBk]+1\EgI ;m2f9͕'DWUF2Fl>Z?F9j<7/[Lj,@]Y&]ꝥn)fX,M0s<`a]JQW!u41X?+]?kO3\/WYq\:[Yxe ʩKOdl2Ը9{1jEU=ȷ{U|O` 5Tҟ؃eCUzOl2Tl8glr,쇍Yn77sʸXvUh ?_pH+&+tB kf,Jt[tZ9}+~f#PytB27g*.q'DU}|fJ .u xװSW+h-bkOʴٜUh`9UyX?W3w " +R_cm3)B10k*^oƯy ge6Ju;:6^0/@ ׾Ș0БH4v'pO7īsyik,h|ulAZ5V^{ !+0 ɝ"k|NQ ]W ֺW=?UVp^q:$ "'FipY[.qE !䕛 JT)1QbA|5#eRf/Fƞk/HH,sgB] ezE,C8W1 b y^OOxQv~0㮜]9oE9>P%Tm踻Z~ɵҙr !O=ܪ?1I"B']o*qe24YMSe Knaβ.֒s9dw~~|lm`RZ VukvbjbhhV;Ȑi>t~ҙpXrs @Z*"}Rt = w ubA\~|pUfor 9kuV0Ǽ0cX C1A|%'qӰT7TqwRo8,d nx ln'zqhd)Tw^ouǃ[> l)J \WC2kxizMY)mn0Au4cd1 T0(1aǼTtjWc`JT 7 ko<'-aT::FB z_~ mB C;[]k[m+%ujQƪkPZ CBJcە/ڄjWn68N>fC}- : X:ًѬP9të,ym#4e:Mn@`I [R:vmjG?N,u4fٚ8/aA@f^MS踿S(Wc',&4 ܡ1 Hx)l#\<>5{jk|r1Ϊz'6Afsɍ6ϴrF|mX7J!lg֥ܝr66dJOݼ}#:ƨ'ӗVL?TV+PAd-Q5EfeF7J-6Б;x-J>7X7"}}'y뵢-9r D Xחnϳ 9mQksCy ROkUyyCo֖F&&l!Lm .yf t#EF>$ZKtrs\u8ؕV[Å'k*ydt$Vd'٧V1gZ_ȷ/ z%@ciOTpsuF8vgwvkqjˇc:YѢN 4ÜsKk3%Om?][=q5̣Ze]0[4vgȴsk Lc8a%+ԆGm {M& °XsHkܴ 2zVϟg:@V+5Q - :a^1j{à u}[ *_bl\|-iqy5+CӺo#gWO/nG>S2J$+C76Ҝ4P0T 4<ިT7ڕJMZ=l \uJͅ^=G%^KѤw־鯍%7^HBx;GNꑺƫ4ԜYr27Б86Rĩk=1}P~y1`[h_/<~{xAwIROu+tҨ:*:Z[U ܬ:@7VqZTFN}TꊷI9‹핽X:Jo+[sSGO0 1Z?_E-WR Cݘ<<p: jxyJ$P2x6($)~ 2v R)rF=O tžcF\s.ͼj9L0ث ōj;<z Prqvήu֩*)l+ebÕ.z:,yg:cc|4㨽CӬ? oʻe K:?[6KF~p؞Q3 džuJ'śy^ x Ή/Jp|2 Eȱ1㖹ߞUR uMk~ .銡euCG?kh]swOG;'EԊ8A$e#:z6ω 5 RPWi y7`奄moSQ}Gv}x98Z5hR?: mʷ`^ϩ>%\;.`T<\r.#o5րC[tAzzОCa |:Dq0A\WJWz>kxۡUĽW0T|<:{7~caYS[ O\`-odOؘ|{=kX++sGhi9v^~}RQUo`&[esSk&NҿowaQrp3 tlpOV੼FEϣ:aONv*m,>Xm `Br.<Ѣ:UxZ穥o.iWFk z.rpQ:oLܮNXu@&i:Kčr:>ġޙ.14D@JAJ ;1MQWZƷϖ:a3:IRRP)X t%-E#aN8M:uXaA2Hq/j)4v~pp H nl75UpU8[X :'kRK>v›1)}X9#u|A!pUK7J+ &w'iaܛ<0 ¼aJerPBK'mT'IЎ[P RX7& A_ H﮵Zw)*X`C݅t X9~(=;M%FZqj`޴֎N<(] ]l-p5ً.Zk>gcPC jƼ)b,7pWq W Z59B)ioRRVqdݒIuu*]:iNkNGr?FH 4[n{~6-;mpXLi>K[PA@xA nT@(Ys> Ax7b7beRpꭙ7HCg襷xϚQ;Lb-$ ]S4ii|YTmgpɃ6s9j[yc;ta1q1q>:Ugo]Ssi宷`6*t ={4:3XfCȶΫd)aU!;QwpwumV+f FD%, avL!W#wq-9d~@E۩Bف_+Tpm]T |k+4'Ngri4FٟEMavV@=~vTY_Gcɶ@xOI= ?o\!ޭ|?oge7 9De&qwծ6tR/E]J,2S.ņ„N; x9;팝r3Y 9Gk~ضY,ͫuY41\Nֳ}?ko'-S9г{, >Fl^^b~ $SY9VTŖwe,2!HQrͫx rQ Fmҙ4<}HeJUsVCmkvF0c ,tA`KZ7jlGml:Pze4N%rԁB]>A )g3lb$uu>2r ç~n'1]A[}$k^fSʗ+՞,VSŒ6jD`a~VC印-_+c"ZR>#X߭}LmY~{$2gq9˨vd"I/ga~[9\fT=[T5*,W.UϙyuU,oc-ǃMjaK^;˲`0.q\wPOV~V@5ЬNO y6[jgcP1Ja5HM֎/g1M/4RCY\%gChԦ:8! ܅k$2TQ$td5f1(1Ptf+0A7t'4Ը\nn[N}sT\Vxݻ#"%ۼ }_2 5p^4nRfOUZL1c~ nأ1'gQa2xpٌFYݹ^?:֛h0% $Qe;&`S)xr~Yi9;JJA-5޻6Hx/P}buv̳YᾥP@zL)j^jx9($4 V۰9VR؆ #3NԡwFEbT̅X[99,їg=;ۡ\niL:擏:it<߾^O h 9*&TV!C$mOmm, ]7MjVh/hZ6+(zǰA#n A[Gl)a)zqc73 %=:>渱QzIR[Av˟c5{2*Nhvr(裗l*M0 c͂S 7Xgi={3%Uq`׆4D %<4vXPo!I(N-儁bq_Ʒr ea~V5 cj}PP7Tr- 䇅>@ŧZkzT'D+ PP`5PZX9"o?&WŊ.&rMj VN5N9veAfAg= K=q ܉AXs_rZD!@s RiD>q,aƘZE1.es0.NޗG),Y7FEh8Cj{ird L*Pc=1vYxIWdS>JLRuav^V@>;*8&EhiVaPbC?I[w[wvIц@\}gm 8D{}gn@(QѹR{3 ocY: !ξs~zuV(Jn29 FJ̃}f֛ FhNL vx=\/I102J{=};yCRnUꇅԛTaNnzdvؒ9u@Hg?ʗi^( .B;ND&ESFBb9%!\Rđ&cߌhPK1EZOfN܍VlJ%T&VhMK~xN{zJ9movгӗLL+mq҆CᮓѮN䏢"F:kBPNhk.͞6U`ZncFVUoң5U4'DCy@v ^}b}qkXJ;fX,)|:7nq8;SYrNI eLC)o~6. G9~멕/Hz踥8 NZ`Wӭl3TӮ[S**ciۏ݁-![Jvx-?Z )bWK@$.~ YfOR |d"Y i,[ "Bx"+} ,ؒu$VCz|A!{+)\WW n5lv+NL |U2rQPɨVK3Ҥ^nQIbJ0L966jLWCK+$ G"Wj:w&:bBWҶHg m!_xwɦ9[lsw  +m_=P:>I- !z1@s'.4UZ^ hTA6X@qIjeCX['la rN"uLJ{MSYeO|YI~O񺿦 JCqC?0TVP yߘ%|+P̔_ؕ:VaZྵD/,$\Sw~a>T:.A^h~cVlUE1S`f|~aELfJ02W]גq Z>P _Xie ʎ*|2PCA񍰈ʹkhkVaaZir#ۄ`Y<a񵳪/,[ ZeѪq7c&Q3ԳUd7K%ev&,D#ðjo }G!y#&/,׭Yc(ˮcL}a[ UX.C080!hlynɑdZU{c<ھr0!x1\6v5şR/]'씳Fa_۷Auڮ:rWvvk>Мk6JxO(ʋҨ]aw~WUZ2ddn jf;yu~'Y%h+eM$ 9g=?8?iij'vU(y틨ecàł3쯬[Jvydpj|*:/l_B0i.y_N@({ Xl2#H%ÑWG*Y%tuUVӒI ܥwfe~>{,Zdfn-[&_a" ^7n۬jeΨ~cǃ֤ijl`W|\j6|‰_9ⱲԹtTJ+tjtP<'_jMogFlka?(m2*W\޲eZ_6hzɱS޲-K@ܱ|sՃ[һtBhg9}9jwVbbXBŏ?~l)u4\IU+u?X1̭Yi .(3Gux$HDN_. NUZ\Ojrɣ.DZh ?}qU^3ejc9'lwqgves\m,tA,mU4\,YPGFA #>H񓵅C*ZHN^.*=y|i鴥:Wv-_jiBGF4 Y1dfWZOlWoVd9|pWYfvK&׈6KvgWAV7{jgW_c-"4~Jf5Ij1+Si0сf kgXOZWmxuΥ2+#,bjE_ZS-}uX'?{?׈mI?`H"U{ecv))G߿'B;Ω Vl0֊زo`n6~b- SR_sqP`,KgMˮZڣ%f#R=G1i=vw k<3RkjH- gFMTwfi{kafVk(m[WG5ԎF9rcPc[%[|XmBR(LRd9N{ .hvw{ܶDV0ݐxR^7DkkDgcUzk=-m:մn)b'Җ^ e_ Ǝ;Rp[[t̠WFeju6z|Qf4(̖O|*m/z E-)Wn6ri\9Aݙ-G5+aƬ7 3iG[ޙbs´,zVߨ ftG f(Mqb6ϔlLyr$'Do|DʤRح}tyU3j{ĨCfWOWh۶,6!zgY:[k/E.:n U[6t;u۬q,N) iyJ,hN.PU7k{Ψ7:%RV}ϵ u[+PȉF|#7_-=r\nK1|G/`3zydajH+Sb^id:楦@6mvA8Ny^>/37׫< !Qvݶv^'G͂ ĮկWO&l沓sa"AUkR>!jlǪ"Cs {sQ%pfj񛺇(Mx~b"UCvl" ^g`܃k3|供[dB]bA7۞Wy7F+z 1T_:g;0[۶ kQ)(Gk%dl;XVq(o/%9AtfGgh(5T9jVF> RZh{9v==vcYau[=|W7fiGe-)wSG5b,߳)M{!Wv,63LcR,Csmn eaYY?L{`CQ!սZP]廅˅Zh:WJca=@eq{>V4\6Vv0Ez}ߝXj99W (@h_]/o?etf3j_§[L6KuoiyƗ&l4AÅݗQ-b}j5Dq;Tn_ oQ?P, 9\#5詴rl363ސfSfO/[%U1N]890ks4ü]kλ`YȧǑg?i,zybQOCשּagRaFx̱0u,Xtc jHԡԩ/.t~p}׶ΩcRvKΩic)4FLLdNY"9/{k꩎am)Sy0FS˰un25J3eàKBϪy9`LC5FW1aT)Q3gA3K4@cb5\O{/;-!+/,+z>ג==5z~:[ "?l 7j/cr1 c ãE)Fip -)#o?G>!L -{gy%Ӛ`չj~Ie֘!ԔRg VF4׊C;5";`L=EOӦ֒Kʊ&hОuAܥ'#U1+l9iA\a|"kr.KKi&4fj$h*4<|] vs1VzU ߮V΅虊lfEOXî,DA-_Q؞ڍ;Z߮v9bLFd2< m-4a슖6:U7~?4j[)]iiVy~:ջk4!FAvoV-iFju -ەř'brP1%Bwc8QѰQv?\E'"1f\9|q uNF$j0y-ͲrH.I'EB!!b[}(MBO1<`u+]ag~݆sy70["_$E1ZeN1l&.7h ή{T,S0,"8հE:ד:vz^fHA4K}Cg^ tu7f ʈ7E 1&y&י\ryfOqZ,o{%H73ᮮmlۈEn#Dy0"J[BϢ{566(5V- 헓%l`"&Ԝ2q&NtJ3'ϧ{6kDƒˊ='MLL|~7 K]ڸ1긕6"YQ&Z!:b&XGQWi.zP[$ׂ;4;.1ȑj58(!Pߚ-3w,<Ӿyr.1L Xj׶7*U} S֞je)_im,o@Ou؄6gڴk3\0}~?q9XPu^NsQ4̑Uv5 Ml# 5Z<-7 >krvqf&6pmk>js,K,d-xK}5۬E9+2Cj) )+Zj~شeVXY $jG~:@cZe>ɏ5)6e"r $ZK .Zlς'OlEB4CSw_w(^Ջ`|ϏWY|a%k;~~kxELKstF]{oKi3&c,Q2-#<7b]ؤ87&x*]^ P4SśK-k燆xkem,O-?X|j< wV ])`kb$+W(V7̼"" lAS3yy[@'z*!Wt,b|ׂJaw8≙9LR(Z(E;p8jg궖_zHБ˼FK,V 6_"?99@wY7 rJLօ'Kݪ~3_uȡL^j3V+يr: 9`P#Fv<-ϑ`ӪH_X%Y%ygz@8K QJk㨶p} Lڛ*Gi{_,ZyT^Fd|0)0"`gˊC?}oC@{`Ǔi>)P9A Wβ:S[(=\_0tu< /qL2_$/@lp2*g%Wxq%P ~lXO`Ba.l h|-[^8$h+]=i'.DdM RZr;-x[G-x+@<2mb.x2nqR*w8_e 1|K ŨuՇG2[uM/9ΉS2qo @%[,[p],~fk7>J/O׸wI@]{cf18fmgsY;kQpvwv\5ɮTSc iݝe~64aAK=˛S[sQ '?] ҥ KKJ pi9lP4c7ɴ0]H|~Lm } K4p^$=x-w1*E;,;R2Pq(Dl]+eyU|ިjYYfѵQEz"/\;>+آG[O6d?_ң9 %{,QT|G* /u-2¬S ,Ysk;BdT GPiArv3GAYdI}>=b*FA$5A*fPdՃM &{a[""PvoLWsU*;mWUh!68X;YEZv$ׂ;EHZ!=1UTC3`U"LۼԖ(vQ7Vy@.5=gPg*d 4}jEv6wTF/3tI7TUJ~rfsFY3-K04w˂=^<48 RU)/hqUDO֋z FB~2wy1/r6 F7ja.ôP~|:=;' /\-]dbE?s|9 P59"ge`U3HװF] ,sA.sc |Z+L6u:~Ԗagߑe׹a11վݗ7X\&w# R%1ER&ETW˲4_ D狾ꔮ2 ]N7_52?4Pl_'U56e&e14z[.Yt>}ߵ,++y}o0]W!!< +HQKdRX_R0T sWlY0+T{![Pfl]/E]+]/ j'PM{ 1R^Ҥ3λ&Z=~ AZ I^ZO'^-] ,=LxRN`!dp YG2p:ud1഍Bٞ#y <^OD0ð~[띳}@awncUQP '"wz@}})K$?ӄxo:/x.l^o8 }p!ۜOڣf ,PT3r\Qt{~NS1 +FP@޾a?(:5G< _^ xhoo-ihnn/Ǩ균\ɭ/7VRtT/u#K?tثۜlٻfyok42Fn} p, n~9]AٽO ~{1qA;Dę=F2ܷ֚L&XޱV/)g>dV:zQQnW`>KLiMOxd ('%!#GCm8 e}Xw t6X0/R{ud2nGM%jRP к_/?].;ь~vFI/v8XOBķI#F L;vYk&C-GR L#31w py)8!~ [@yi<}mT4Y8WhcʛԬ4n 7'Lھ \1Qo?N`(-z4٧irsO%h]1؞KԊA.0F+ YمD3Ȏ.ET:?% OLFctv5/4"2|1FsN8yNmг: ֜ayOkYw;)N݊-ZvשhR҃o>?l<1pہYq5 $v 8 Q]&byԳM!&yV5Lc[S0+a]]k*x`RC ,[f:*18o8:̃ Pvuݜ&0$6E]0>劻'X&(Yŕk*h~>tZ }VUYP0ovu[)/?E48pU_)Z *|>~z*6GM}?^@duGheh_yPy<2$+q^2 1y-<V{Xd2apNtFIwzbwL0<:k b%˜0<[Twy2yVR@haB-L "uPM5ǵ&H\fq"壊X'jM[>ѐ ާK8z5S&+&avṈTܶE`XZ|ɰ8\ —{aLIj`G΋_!SͩeҪsɈ1՚ߚ j1q]Rx"`Cl, ǔE _MXەЎm"0-"K/~jXMF5[FLC#D<"TԙZ>Nԁ\q&4Tk.<{Φ,ʳq{0SG -)j_!k0/Sh[┃i=ydX愳T,cj%y+)9Ϋkڠ(zW:/Bsz;|4`0 H Xhuvw;DejYmƠ~'>躞uw]s(;p{^pӅư?'8H),nӱ(S(faة,ls=9*q?[7(w㠱(GE!uAaşU%ǏAH}A뜓Gw}!ͲgdDa#e3:glϏ]vN$&ؼ/uAvEKA84$y s?h8,_+[1rej@:`coWrrA0VƱty_ɕ %3{pݐ?6IwՁ!iaZS9U6B1~֚2p;ؙc8* rI[,MX:?AgJ"ccJ/h7 =[slee~:[kS1 yٍ 8;9Yʫ H+r0+ogio$R*(7<6ߍ+́`6SȆ-2-'%„Ybp!b\`uU.'dAϪq+l@fp])ߜ>5L§P3톝c.VnX5_Xr_gIԵgQL ?5bW,baŠ"YM0Ζb73+dU]p-+e`g`Z(U`rk`d79)6;B!Ncrp+GL0n{Y0ˑ S!wYoG,4Y&YQ/F+2_ZiΧ$/s1;`MP^P Z~k5M /?nx-m͈+?#g@{k)s=jzst+ՃWD f{ CBUH <2rFDQfc(0n 3 ? `X#{E K#!2FԳs9iqHAųmR/J%ItQ1m>"ovt[}A (I6wA[OlBjtUm D_ӽ:$kkTNWlO5M|u^+?K@=/p{Tr(L1yuc^BRX6౅KpCc(ywNDU|mOܼ6ߘ}ZYڨC,kuAl/0O|l!qFueԅX6X0chc,9pzMȨGd(aQ3"V3acٸVZ/ɇqœ 2uָ{) vv-sҦ`I8XӠKy6?/gwbh-wZE,) -L 뙾\[-OQũ}e6S|PoW %qB~@&'q4{+HA(/,Av)HU- c/ ^'8г^iGٶ ts^Oj^yicj^]1i5lF^p-}IyF"E&M0Θ\N<k?Ɋ-3q!y7&`l@xBnzY5{'K 筲 %Wlh>@b6vb{P8XHe]qྮ[;|AThew ^)r.PjۋZB;ne xЃ k$Sz_zs,_fnϋtB-:h%tZ>< I3U&-0{F˞Nقm= kx p ֕DՒ`7{bh-~.ר]7ȻTuN/2>h׀UPt"e#w9C[E7f\]&WA:hpnu?Λ؏u2h7d+APKJ]Mw1z>-]`DvTrfoŚZ0叱>/gvc  9paOb3=h3>Mtz\; G?eCBs(K@uwVwt C7zv]E;KRX.`T-3DЮs L<D#^A`C>`=ZFR AK1ב21Z(ogM_AF%2v!8^FL0#Ȑ*'. G!eVF{L *ЗʂKUheˊ ]Y2fguɨ2|Wd&"co#X. i) C2NYiknLq\&LQF]:}hVmKcݯR@ext)ZkaQ2ƻzƬKҞ'ϭxgӟXK(ic@yjv̡ ߔys+Ȱ(/JG# 3#R4s,v].8z^ݠB WU_0m ܂㇞]=?]}8$<%D7$jOX~uv́ݛ kdY i~RpT.۱XsvlPՂO{ yh.&)غ#t]焧C;1"2֕$h=B2rZN`moZNibdPmo:IYtxc8,uS2Vfy~.#<]y TRzSb)/n{c5i!CT^0!A4A|I O y\א8&߄`碸pC墝4?s`K!34g' uQk7VvhvBJ7?Z5 W[krc-2\U 66HEP^~U@Uj*oCPޭSͩfn-RKjˆ[HYF#-djUFyKULTeO*[я|M >#LI3o,ϕ۝;BV[ai-f/j3@\4}BeYYOY[;IBf9paK.V ] \XqڑZat ) lj qx;m?$ڲo+õX:-[ٍ)~2 7&Ҍ߈ڛXAfc5h~I;?kRrZhU 2g0A=G]EPSN n'龜#tvX/R̋4 ̵Qm7ޣ@+ǶgOݱ m^f TBJPaUr;8'Wvg'38&1 crV 2\?mKV#[ {o*0ݗ _A5*j+2V̾ Dc-ºO2\׵u6qqMpn>heJ}\)d&'8, /ј7"8 <=Zhn,^JAryQ\SzDO=ɡ+e*R] wz9zP~$BЈҤ 1U@+Qor:"DZ Į]ylMvQaklCp PwZi谝&?Zsv]ajt_H0P Mru JJզ/Gn O .innga['c++ 8-Mde7 A5vfJ XWűܫ(j}R຦S9p󪇜vƙn%5|3KK~~:RRsaIA}&^4BtN:$--V犚z?"?&t9k܊^1Wa_^AU<}j[ XԵXA2;$D\WT Ś#Ey+~]\eVc]4KRj)0+4ۤGUc]|&!3Y^CO>{Y;o_E~ X}|u >ccWW |~k7>γ0+'ӗ흳ڙݒ~69+ NuϬmhZd9v?7]n=kznw NN{t+B j90n*6U:tm* W-B.,PqK=ڳVszlܱvqY~y ?W%.jQg'C9&fljd*p=SOюjy+ۻ2VmG4F[a9[Pmst3|ISXpW4Ѯwp,H[ҾyEycض6r} sv5` gS13"u!zyBvM^/\mאm9^Cǻk8gw- ;Rg"ZgZn3ݗ[<̜ׄ 4k?va@ڳ` ϼlb;B3Qd8IdXxU TڗXX8A=K(y.h&^wΞ8WxOSQֿCwz.W05qr%` 8_xnOp5`uU~SWOa.CYgZ gTC $Ƀ~akʾ˷pU7lLevrԾ| \z*㑶iYJ8` 6Qdז5OuqƩ[kNK# Up]?KtFepZ5 >RtKQ|s>=V?@EsL8V7ǧ\n/]O󰊧vرL lFʹ@ad%rR:KDpDgXk>hQ#'U˯(8̺~;TZ8-!<;teI~.l(Bka'?X4Xa>p;h9KgFN\OJ|c9}{X;)0z>1MapIB*h0rr) rKz9]?=d1Rhmy;/nՂ1hRKY[EpUI{Eguh6ȴh9uF(KxO4S|2Z8/0Z)ʂ,Kѐ69c9z& B4jo? i<ZrhhUv_L[l^;zNO}:R:iJG_$^Dغ%︿;/wBwms]$( =-=Ѥ>_ӘECшx`Xm"`uz={ TॱƪțNb4Q4|_;Q)u'\^Op['OZHclώ%- BLPvF $Q IICMTg 8jB®o`1򉟻mPqH5w#,ʯah14qZ9,(L%^?K^ j= "(d m=Iv?_<`^uX*(Jxub1Y蒕^܈V/PH_UR: v"zyxDZ'S]2ONF[f8>h\@G?JfW^̨Q,GEw@䳩 A?wHf9Ш|1\Jp\PWsrdD1g 5P 5IuI^dV<`E[XB`5G>~1`(~uԺZhv d ȓp˷o$p(CO)Uf=2q/իxo4ZOu9KeU%y0# AY3,T@}@1緫KNdf ϗNz$x/óhT7=aEeVԅ b?1e4kAyrj38ٝ0=ZVEKb Pg]a`Zsx%wO/EeuKʸ&~)oJA_RfV6*l66LWy6ˇ{!Wy q 5pwWj^>?^-#_yd gGD]sY(W,k]" ?p/Kӈ9'U mJzs 蠚Cɉ'&K/a'9qߩ~HO#I]'%rf Z.$3H#!dP_ڡ4]3Q:=W+V %@ԘꪓZWu(eP/]-gв֣WH$5: /Z*~yl:mL/Ÿϫ Kz=?^j JJ+[xuVFlA}N?U Z5If +{ s j _&D?֜3%hTlA?gpF.Y]bMn68plԯzKdQ@Cn^ 'Q{0I)V1IJ>'X!{A! av i73yYpQTD:1LJCAdJL蒣B ,>؋dt*0YŕhKVajiKhm/Afm40_z-, Rf/',9N8,ΟJ'T]YG6_S<.&5DPV=l^h0-Psf!oHq+ *Vc/okߴﵘ;GJp}MOPf=ۏ, zdZ!/܊ިBb=mtFٞCtar}iBAR;749.SmБLyĥa~aM_js A_<'( F;')&h]ppg̨,!Ć| :>CJYeFDeN0:_S*mѼ;՟mg=51w`ԴB/ˡ?q[t^jRl :!#<>IRB-~!v*]XZs^wֆԑy1c2y1n1_eο[nJG&P+JLOEa\8O[ӝebA+mڑ s=edjqeEſWTw汼AA" tb LY/})IX^EPz׬Z]C:\(|^bzh^6T_6X~G|5V\{sZ`~E†FݐVC=6Tؤ1:bI^.ZG<Ǿ8%֋jU.V(ZoxuQuͮ$1eǪgXZ-7Y+yn@QH_%0m헷m/ ߐz -k\ OGgGdzGgPPk_UhGFy5K~SKc5f9֒\,EKiS}?6"[fKU[¦L{m/+=~9"ٗSD]gz=t> (FNy\>p5E=7dA#}ukuE(ms nn`-u}Mѹ\;&l}Ɩwmi)G6a}k@NKڅNXmX_6օm'Zf4VN۷L5|`۳2 ^B??r l{9]_<Y '4t)دx &Eq׍4} NEmfSqxsܾ ?Q&ϝ1yFw娛c6pŎCա 1^1NhLU  81С.Z}';~kO-.T[\R!?D@ʮ:/ҏT5?'Ȩ ;Z##G+4붅ѷ"ǷI5=0/ As2Ѯr6Ѥh@'SMjOQAL2ǻeǫ5Wʱ bL|"4w7T湻,|QSL,=Ys|Qgy_s 0ZѨ>{qLa{({F&*ݘ<.ݩj1Q9~ۻb`dRRVTVg\s3#ؓD:PT4Ffz| Os7Htcҗˬ3)S=/LVd䬟]1˒CCʋ^T5F0QbCmP{*(e@^`8)e98``~+%vh1*SU8N}k(ߟ)k.mf%8 dYgRXgeRqrXXt|_#Zv_;GP"]ZsG!3_}"bhS.7ZznY4z6g"I^Dlt5:RZ93~Mb@c0~Nvoe7-'ko0{e0s!pVߋ nVX(̵9B鷹c,Kb,n# YjcᗶqfE=cu5pb Ϻe$.B{YۈB>.qRƔûd۸4[`SΗQQDoD|Y9İb1<:p"ɇM --^I^I9 |)G9<#qi涸]U(Siؘw~86E:as6_h!vcnn0-r[$=KIh{k_gu@>W`1s_dUs=JBU ?~=ߑnC}o.}Y,; F$:{jXڍ,s~f)"xo\/aYd.19{[(T#!8BiZl/2$38>TMb*5u+֏=ËVd-PƐ5">/]l-n-^nme)LeS\~?}]Lb3zM2fPs9hTKߝgr*m?ۑ潼mR+u&AѶx@qlތ:uAmI%A(+pbϚ Ϝh{6T+ϼM iawN;"PMKi{>_`BO3k.P^MJu_qnl?XukOOLn'*gITvG^.eU|bnǎ|Qk*f}llo-mK>/j.A;ilkخ6D7%meʷʛmeEoZ3=|(yǏ]f_- bnf,̑[MUYԭ 荀uYXa<n.pC3Ns}r.7Kr~dhsżff-՞@4ܝ+Ȭb[v!̫zz' md.dj\Vr.ˌono&4Vmӭnyn+uw?8S*1vQ~ZyY/jmg̷M]aW4۝W ꈲW.BVi𕧌FvZuA'Tm[/[;B!۝s hplW=7wp==cބqLT9'm.=G7::x-wehEU_׿? fP+"= hUvhb/3ZaoϠOT2Am<~B6 |̏(Vm8ХƱ֛ [jդ#Êv-@tTw؏vX/hk@\VQ%9O^PIQSl"~Uԏx.k* mE|W=1=׷]H`LQ_cz{@FܷZ["ȏ .vxiP "<i]P%:q$d=ElNAdm.iH@vX'vinL‘0/N|ԯ)W\dE^x.(ys_!H ȗϗ)4,E=Sh xu4א8UhH02j<)i(xΝx *1AqSkRzއ]%1F)Y(x7b7b돰ROqq=pD]c=ATue!͙uz%UR{0W.2@R^ @3Dx>O O[h`}Ϳ/hAp2w7~8(2ėm i9_}U0mS:L]e DxH0W"ĵq!kV%Cp H+_ٳQ ԬΘ=ɭ@jU}%-*8f&pu;rBE3g }%V&tԒ>^t$(Eo{}9{ H"}b#j K@Th6W#V5uL!{Ae 6~ 7*O}e?\1~ok`^#OiZUK5 FPװXT'+AE´㌕ "~TF{V&}.k) D/oѹGu>D.qcfHpRF斂E~ p1M #~=pa`J)&AT*ΉJ\Ȧ- {vuDOq埃Ƅ>U`p F&7"dJFp;D`ۋB"#uuĆï(h @NG۰#R~sK*!)1ϑѕ}y `>u{W= r|ݜA%{ 7QùκQ4kX~5y="~ݯاN(5hMQhU[p^W-.TYj7d,뙽 'f /}٢κ5zG\|+ }w + XVA/ 8 n" ίV?SL°S:0z\?x 5 0@`Akk@^,ۀnf1}DoHcXT!ô?&N `ak0*"}$FgJ빦P^+`)tf܉~fŰc{801bXb,^h'amiWRp$_?w@5$<'sfl6 Q|1!mg+nC0D'^aF9)cl4~} U,Pa3!~{t_Cqk?pp;; oxc9[Gם%8&q|G1mP ̑j>.Ư3~^Ċh3էO'&z|)3.<&1ރWkO붚].$pe8EMFzqaGk{z S~nxta >~D<:O)Ct\紼N*ۀeCoY"_8<$/AUzH ÖΣT[z bImxtw}ڃi.񑇁O!s6!B#o?CW&}h>!/,;@K r :JܷhPuC /_1F݂Mc0qU;nSJ)v|N!7ZW)?AGo W*vU#{g~7] 4^}?Wf[~|zR x,{%j-dsxw}9=xI_ӫ*.>8@4h⧗j?zgd3Ji%(/uͩw ? p'iˇ2}nQA"4#!VuTk%pY9Y[:rO =QmwqvO ](QbyNK3,iH( E'ɁP}Pt[D<ށd8?*y@\=47+㇠)B(%\ P/?_oQ/~ Ԯ#O$[Y a ;6}|=ȣF+6!2E \ۄOٜ&&/s3CcG-Q/Gh5H~iSrHK Mȯ Vۺ'uNӬV1cK2,p(1[WcbU7gNትY4ZɆ˯(k^`D=?pL:L&?AMo2AGmX1WTl*&)[cW[PS IGYҦO,K>uiŚZX +wC -V%9$b0mZzwAY%NȢg ' D9rzdL2"l'kM Wm v-MPd}jC$H~J qy@%۴pH[V!uJ/;пoOQ#oe*O4̸Mia8:B,L.PӾi^XvEv~jV{R7T^f1w>stUFF 9l 3U)wl a;WC5/)sRQdeôfN%zBzcfhpfeB3w!Ip&%9LuBnUD< L1>4If㮛ql$cr gm:Q׀9>ig v;5l!BBHծu7:«峃` a,r>2\@*o. 扳=ʦǖ%[ s,4KGMH-mbܬ YͺPDh>9!0;~!&{w?$蟰g@ʖ{fc#"3q2kϯJ;Ĺ>6vxHn:*b[4k*}2H@,%)_nfJe&nPm0 T=İU& H1oZvmJ_t)m,ˠT`!gIcrIHc2W @6Yvc3[&޴s0c9Ih6fh4peh ngEg4՝;}<ӱ)3oDa4e`}h? J~%X05n]ܲSM@e/ ]/sL&m|EP;^_?/@,K87 )_ă= u2g@9eg(0J鼱m/G?ʔ1Ė1 X-mD8*FKl*fͰ ad7!nIwL B\Hoiҷh /ϳFjŒyyrF8X1])!eAsMK~:8am_q9;/9ߧF=];12,R4QľAk2qB2C'Tl`{w̘:YWH3hHw[ ^eytۨ*g|t9x38d[&V} PFiq?4$Ar+V]?5aN[6EyYd=eeÚ@H'$x" T'-ݽ߸ @K6J m z82[;]lg۴!|ߪA5S)9HCcA7U޷`F6 L o(Q7'Աq٪7%7BʋQQbR7`:W)R$Z |*d}cm/hci1lLC̻Km[e,`ܡ(y&tiƓOOuP~i:s ]s qM—9d:7z|ciz^#}=> d٧ ^W֖ݍa`f'"dmiwdBJ65֖a 1OXu޽6s<>E2uq %/jŢBxl. ]s"%,YC>i c}!, zҟdkpc񻙋ʕ&W6f޵#W''Ghs5Z K&dskN隼,Ŵ}7\ P~Z_7l,Ю/ &mkqmkiO)r+"6Wl Z2슏<jfH~6O{Z`q\w y-aQScz֥ޒmζxnͦfNG=(MO,ǻ;lO9Z;co 6MxvPL~mM؆Zqc۝_CS`(,]XtZֲ NMϥMv,(S.Q_wKVn GG^ϯT,׿㑑EH4XӨ;=Rd- sqǧ[Y_ HٵKM 07oc-39x5r̔1>tgf8jT*ݰTM|fC[&>e< ?k&6cpikyq^Hjdzj  L;rn~˂'$* +.s묬)O8>5sJ} \O*逍%+4oEՖc=F/$OLHL!}#WCO 5qk~q?_!|~<GSW8~׼a}t\C׿QT;mge pTԐkP}f) kw/&*zWF4w7*r)_ICݻ;lH;ZKj1?ʜwV'rṖA}wXt~ߟpӡ‘ !g[ ׽c$u@GC9mp.fd}}HaA0H+ldP }(~2gw%1 Wrn;PWl8of(C4n=a "Yv8jHqo04~ !w:tT뙒oC2<W\@dcybb>_|opGj޵NFC%X;ON}\/ }fZm 2R3)xkUoDz7~V1>aUG`u[)P%AxUg}~`_@K;L D w%vGJ3>_VTW n!}0tg!eJ(W3zy(stj0⻻oL ɺm"όYg{@̒wD\u,Vr^^ w󢴬%mmn,``⊖p}ۂ.U@N`ຼkķ.\#;~,U̶߹ H1}58 "7o;pvqLen m$7+^D4pF2p!M}X͞Yz 6C o;n< fx!(v~m!.iMf}#iSrC~y]NJA4Tn84ƔOTR5͞' Sq304:R^ЎO6% <Ӂa>ҧtɜg3!F078ʫT<7. _9u$_ &Lr #n^9K$ϗP$)bܲJ[H>yP=J-9t)mY |~ 7}JNqnD g3lG;uNŨo|dǩ7ldOhi&{*.5(!+Zy2KҒwjU 74@')?|і>72N¤)X[+b..OQ߽s t8m|+sa/#?8ӷ\_3w|uV振Ι y0U-piוceOH/[P)*:ץs%3o855&> E;ܧ8~U00='-O0a6tO>x%[N5Wh)*-7ED֑r;<3yJvo.^\;l/3yHO#ri!ҜE)Rr)IԜ\>0iᔿ?TdOepëgiQ|r+i4!t C8eI!LssiUe)yw̏RVvPe7h)bc8IOGg$3ٓ`-꛼sJVKpHmw4 灖恭,;N-w7 Qj䓳;^UTV0LIN?[^:ڻ0hnH_ Brfļtφpk1noi ^ƲS1i5Y?f|7Co_FGPn@({Rɷ\ X}K"ȗIq4N6߃Lai܎W?5{m"ww.P{v ~])mma,aҷ c~ +U5 a[>M9F0B<%XhmYí"`;NESr˵ZD0-V{ G0-`L 1)Vw_"w|S< G XtbzŐiHUMϢ34{F}*ΫkE{Y7X+NOp!ԊGZQɘS.v-3|!$w4o>/~ܒJgשg$րGP c>g.I}B it P%bÑFo|KSWvN!T'PA-W4r |oypP6 DEz)ؕw ǷudtJ:FEeJP.Lq ޙ|YLI:].xMɷv'tRSXZ.~%{g[o"J+|KvSߒɋoKoDӛ] |"5EǷ4EWfW;-^]|KE[V˷Gȅ귴u ٌoJ[\햎Hpo= t[TXVy2M*p*֥ eoѿKPrZR(GzA{ =*rH3|SϦ9 q"a˰+i5XL{sH35a6tn aӆM[frY*lÃ^/3% U>k96PwWyW[Ŵ9ZI7ƆkJyMb(4#7C%2[/K!Twp)FNWr'F 2? 2Ӽ?_? o/5g=''8?2pűQоPDLW -|,/e7gTZ!&17\D;[~+vp=m{f&XȧZ2R3Dj3Dhㅗ:tW e~cy}x9%#|2 n1mIN<~5o?_I!&|v񄇯tq?rYR0;I@”#R nBr1dوJFMr$C71Qq$W1nPӧov#S bBe¹P]i9 㷞 2mF&n,Jqf_[-a>rzqYȬsUKHJrz9%ˊmF耏̜D>)B\Ez&wK.7#*iV11):xNnLڠnGJ9~B!Vz&&slAΝZl|'~*uLBnh &8p jdYfEK-AErj\A K%ղ0Bl4ipfSi|_w24Aq3 B5QOt}߲J+ڄiy uu,v86p[:\Ǟ}ޅk |S| A|欎E4Du(82yg)':J]>kÅMQ;6p X866 %sOo͞^f~nqfa,TSƈ|ifEp@y0S7Yfjyp26Dʣ*R&5Gb6?"~\[OcLxٍq#R::G\0ToC?< AlV!g<\B3~A8}{=%>@ B9y=_3:b @>tfGy@,p j֩jE6M{oѽг1ItOUp=7A`f*_5.1gtƃ*vgȒ*S#,7vC-wc̮uQCLf88&I}(A}LJs漙B'c`Fzw'ẏ^Rf |ȷ-(O9| o<>@eGGO7s<am[}I7FVSك&g3SݞVqW2$Dz J-te6~P>GӲCЃ+fD,n=[ҭC'Mݲ[< >[gܕZ C.x#f2]Cz"QP@Z@ } dm^mXV09/a ˃.,pT@*^1,glE/5Srd14dd1=޼}7I9h` \H.52%G^ LP=PFҫ`#bXX/9ۑ I*q\%y\\hTjT (fہkrG6`Jx>ϧ3n}WN%^'Ԫs'5XaG@x& p3#ّUqN5|b3`GMDEp<%^?pѮs?׃1sssͣx y<OII9܍NpEسOROoEIN ^‡f(dmބ+ZJo'ʐ();4 ?u^t0?a>Lut[C|(by?:8PO"8RZ`IXgxO2rb3 ˕=Y=~`~2I h .>bs=q$ӧ('&΂+Mٰ ey';ՋA܍-dO {w2GNdS7~x} a~ E-(s<=>x@W3&a'nk/+49ʽP>xW6| @fS (`Z;Iylȅ~%utGaA'€p<-ęHkRflTd)٘ wc-'h+hN= V4{AW#y-Y$yQt`^\2ǹ7U|#>PU]J2/UK:ϓ؎!p}ދt8\1ȹ0*1:0DPuOR4T . Q1|6&)> W.rFHjގbҼ^q܉lP &]zXN>_ ~]YT`R5KmqS,j?N6ہX3f[=qI_n?B9(y)T*GW?bb-0.e@=кҩ5N6&P\?_AX񘋜8V4@ተoɎ~O|q~nkh3^bv{؄4]bҎp߳P=¯5 ̍"5uz5}>dZ#2щ:i%Cr?A9e"BdPc=rt 2P] فe ^-\R(cC<-$1Gr Nih`'8Lq x\V00Ud0akU!n^ 6ߥp0 ܎M,Fy\{1oEsC籴ruchZ*8?\R;Wׯ|Of@qƌ.¢lǧx f)ATK 1}37]Kګh:`-%]I@?xjb~;ˀdTS=0}Zi 3OTƒepDzr6!6@]*Á@GJ)OSt U+g#jHe*x޽qV!['C9un d 8ehX$;V,RA=~p՞h~B>A_]0||_[\\J/;vE@lx'ӟ9NrTw4K逈vp0ݚ8ѮZSPc;P!X§BrpURԙm-*kxPi@zyb¥O%4ղ 80] _]]GaHيiu<k[:BZDnI+p.͹~L(K-37tVkVp-ZqrjvF:`77A}YMH]1P@RX7:Qh8vwE+fps=s;D1Q^O4(|MY)r"o]QO>n_Mdt;w<щE QVN9pi,Mw sֹM_.svu(O}?)OVaϰ~Afj9JuUTK µIey4= gP^Ȫ,4ډfOdC|;,F/k:zz⡪xNo:Q67-9ց=6)h{i;S#hFLưAxTlXrE1aSIi#AlG2LjwK:z3 ASch1,6 ¥pȬ25BLNrbKG};NĈt8{k*<y6{?ja֋is̘KWZizF.s^D k4Cyo'ZE*h6C\G@{f -{5 Og3?Y?BKTUNRK%4-[ń.Y / FL~NaAIbqdG"[q{x k`-:T9|]ܫٲU.'◆!eZP",zXXvm`<\| iN#Iwdn'h:.w7j9 gP,I} P G6f'|EuT$OE5kU`̓(t<\S;#!sck0yř8.P̓`C(w@覌_vLGEWfr at`8~_!$}AGS::'m:)X_\Lr PN4;EBx\"cnP9!ֽb5k5NLðqhPl7-ߨ^4L`Xy ` HƋe%!>0 qw=Pnq}S&GtubZ={O=EC=q,z;*t@8jig8Xq@zD '>X4穫8Sa.N鯸~-(*zL= Cd"YR܆̖8ːJ0i5N(T Ű1 v:?SɈaa`.F E XtpbpёVGY`vxhu>8p?b?2|LݸH@Y3݌ȁ|{IXb pba7Ɓy~;hXYba{ tcLAz;@7per̺ aSvIz@Vi97Ysmbȅ#U|dn+^FûbєR9 - J_h}) dqy`-1Wæ=\Url; vvv*9:kWp@I DcZ $˒?ԟkKE#cr$|8Gu O)cbuh\N]dV<p..^hŧWNQ? _; uL\,!9qQQ!1M J*!ThҋIĄ+o?GIOd?V}:/\wgB(eYb@ǧ>H^d)ډf;h%8rqOeklkj%9,PQNeܚM,'81LEK1Sh?# GTpKAcY \Ʀ؀Lh~_P b 91_7"GN[l:$@N^*g`KF{3k9^.oܛ>3//,>i}rG>1p]n"Ë~=Pm88wkE~Q(Q EQù0gKlʷ5R?|cg&Y_[g!OfA{YGF[Yo}Ht;ŀ*;] + 9];+ڝɞZ]H݀8Q໱hHbH턤Z_E N00Ymn}\¯Kdwr}u͠dmABJdm4႔iݦ[:nn"W scr/9`n@0n,nQ B=SYvLÚw%yɞ?ȡgؤywl ||;mn|W0uo+݀[#%qd= zqQq{X9K˱n72"Kg.sc?!Kb0VTVXBIc^ċ 9"bqC`njY̨Q/F.-7qc1{Dǎ˩THzNr͆P ԸJtT5Y$T(V^35Bu̦<8<4ks8GT`fw!LO8fI~ Af+N>n( }N w؈Rp,\3[ !&ԮgUq)̴y7c8#Bh &3+Nr- 7.›/gmFWcUE̪]1k}Uf,yw3 Rlwu1zU-M$v!Ն1lԝ_aUL^8Dgu}RcrYnco*_څNRf}ibj6<>`u&9AhF C'| 9|TaFm)|(ic}_zК>e@覴P6O, k/SՋnI_V~x.^I>up̼S5:Phmo[fxbh:4 $fqqt5ǒV&s}U4n^!8[C !σa r7qS'#V:2Fiz˦=2VE:T=nX~-*5V᙭|7qWڀ4h3\Bؐ sS4"o0jhfʥ.i>K %il0OwJuu2Kk܉#i,*s8e9nK<}c4+p:?4Ԗm z6$u}%v>/fiy\0ٴJYCs>p آ9.+Z5ku9g(G _Tߠq5!t &ᇯ)("trl#4H8"?$Ƥ Ñ2N8jO)0A\[ N u * NΎ? W6XBWvOu<}i\:h4%~eeof(E[80Q~< `׶ U|q!h [4LId^BX^P6yT'G^1Xa\AP,?q{;H"*m PegZzm!N5l"^rb{%W`T> u+ x'Ya[v zkuY#]d\;?aEI[Oc 56 `i`TZ`Qh' Mx˗~{4\8O!F 8|3]֔WfqqM6%15?&`Pc|LܵNr?bT{훬R+,*P#%ߌǭ-V/'ӓO]VbsM۲ ?J_ܥSES$f]p9s$ނjYB{ތ̉s[R 5_r)ЃˆQhЗ\2- F8C^.qKVxE.9rqn|m9 ,vxDDPI0Uޕ뉳Au<ܕ ᱰh7Jʫآ?r)i[\(iOƋʠ7uO^G`:pRYܴ/VV/4ɐ^fsWȀRkKjis4>1Ĉ<GC>2YM̸/jnak]vf4'~cM[O/AtT}z6^exa En(#N@ -*$uM'[I+όC͸* n:V+ղ\݃-e`^7 q|8Ʋ{V<[AZ;ey5`ˢO5va>ZVƮU,&Yf Ӷ[{8:-Xc{!cM#zȠ$Eb [n.$lY}/Q~)XQ؆!l;Z\-.bt99IVa17.[`aᅔTcEgG3A"utQpU-'_(VY-YǥWqf,K%mKfasu8$(Qi=vCh$S'ov]ڕ&]\`3ï}_.3 Ug|L\ sN㈎VEjgYhgy޶rǷfsjAXڅ5l#mf7@GY ̰d߲ޤ5@hx|Y˪@Vo`h, :aUStunhYH;.,@)Ͻ̖j$?wl/r-tܺm_F 0.~g7ưZGڔ],\g.Aƥ],\.G|Wf龆3?(,AKeBiAe?kHNa~~7TF 9KFNƿٿ73BBۦqDDGɱۋ *cI ,7;EOV[en󎻫.+;ĖΖ>6ׄ7fP3UHخm(zfڷ_),U[ѡ@nj֚5mJ /+x&3s;ub+İme JD%_t3$~a?GnBO<=v/ !|2.fIjT~BJNFkvGe>}B/ι&wdF: lfh]?f/ n8c5L/PsE$̖kkOZ\rJu[aGϲ:VzKcl=ލs"ɥTָ/281ْ/u(5Vn\=Va_{2T1G samdU + l4VOQ¡x( p`r"aTPYVO$g]-EV %zcfrGc /=j }xz8qh5[㻎3̎6zz\0~L8Kǒζ!o0*?Vr> IF] ^uR6T%oGl7,](ŔU13$/hCM9Z;°LզqЁI\͌+fuEd=~XId`=vĞXiw&xKjTϝVTw; + XŹJTIs-rR>BM1=ph"3DrJ+;QYƾXAxm,9E. g2CP+|`s8 ] WT AnUinLF.0,`4qjkSWQ3B惟;}nPKmȏEK)ۥ fy :VL"쟊h̴q]ZqHWďл_0ӨEGSm_ C# ِ} 1~dĭLa!_ؒ_(5~F[?b[Sp[Q7:p$kM1ƏJzX'Ɵq>ipSZH"+hv7NT >Pnqٯ,ӁE羉-~s;D̜jv XɛdzZ5đ6CVWk D-Ə;FO35Mg-RsoÝ JJq<_SqErxY_Tگ-BgŸhuId=Jc77#(NM|YFz)Z6l_e9 [ њcb+iZ ng mΈBCߵ5Ǡ=-)EspeW qD5lܼ-EqE35Vbaٍ8wH*BEM%C&_u!hR>ԥ*,b]2IA#(U JAA*uy{z%N~j-K}U8]aktQˊwaVaw*o2-5?lg!N. 4\YȴkG"8hK8,.REPđ(ɥh[q)FV=V BsPRBe{tϯCiΪBBm:䢵bUkʛ&Uf,QVՅe*9Pau$M)['GАT,4wGo|8LPa n#^MV%ЀPqʪ*gҶuV,ޘB{Xf6m'|:n.uXX>2]ZE\b}v庈quCeWdiC3AEV`:f]sv>0*IGqsxj1zزUA\FefQ$?$r_,IPs:kUZPw_(E{uo?W~MuLR?gzU5OX_ 0WgsAnw$jN1g3Mf;)JU%ߢSXmU6ħ:TJjES[1j+X0C*T5z#XzNN;L=Rle6邝6)U`ޟ|S֮^˽[nBcƊ^7E7i2Wl&5gҮړݲXM\/>V:V,H?שS+65e>NTR83+y2G~ŔZԽ Sfj:RPdsSX&x[&zqeuvw38we{4kH_Iݳ8N&TlX ;%C+[ڕu&7U炌,YS`bZڮϷ8e%L*U]@4v5:bMSxJ:C;Tx} e88wSށ> RŬT=6J*ƅorYa=r͎`Ww „HasVbx]2'^sʮ9ތhRpV{T Lg5 ʼnڕ":6K-4b:V2WktwdNMk﯏ܳLh[UNK nv8|}uA*w}{LOjm޵$µdV&ÁC/:k4Qłߺ[4p48hp.377r瘞U!4W"B=/{p¨u3y1DR~|%#5ߺsʲonVh+%Jn"΁.EUyͮ$RkO,ʃD\E60= ~wka<(_@53%A䯖CElS U$Ș.ssYS΀qHLfHe~?F*Zr6CG#ӇE ,ɒ \Y02 YҎcyz.lD_[czPW O ̔ӎ%?d. 3%ēy U t2lIE"tSzĀ'9&݌2j^Ʊ̪bWWa#/`?덍M&=5kUo;X;)hqڴx,H^0x ۸oߗ9&A>8|J]X"t6m9QM6dlڌ 2NұroB?ӾeT/WOک00u rfIlݓpb 2@G0 (U`*I57 )[*IJJ#Kz"V(3P'|jESe SUc0>* vqTCh{?., M:S}h??֪R$#7ȫ>yEH:N;~jx)u_$^xk u y!+oFn'l6Ӛq^AL3Sv)BvdjOn]$*dic/^Oé10tGCsK̏O i:_lB򪈖7Y6yv&ʐRs?|`fv>N)!|3boQ"R+m2^EƓw1K֦bz mLF8Mvz~3.0i70:Чkh*U"\?]n2s`lv+;~/(7#7PLn.W -B9f[h@ g5OH+h22 H7b?\eVͤ4 cD̪G26o98YJcd,Nvl]|hwYLq(JA~?Rxj LcR82 }z)λ\hɾvc+1qu{YquO&wXYfO&g+ѾmhJ^UʲG)"񫼪WYJ? ʫzH* ʫzw9^%˴+flȆTe\o2w8"c}ȩ)}x,26' l2Oe2&OʷhJ,+U_-t -mN܎18,דWbHIYh*;U\s1Au]CYNBUvu)pW1g8-'k0q;tqoIwг]4K"cȶkft24^Y3Rtʁ]`fgzVVpm*&y X(܃8_p~-ͧg BZ: ‰Zn&Yw\ꯚ{<7kN r54Mܓ[iXߘlf]/뺕◉a'k}i.>J3-ݗG**So,K' 9R%~Lkdck7;DϏ9.Vq\5F%+c{ :נdNjg̶4ϸ9.4,>7H1nGtYd֪ڨj zq4XoXTa-@1̦J/, qEYr򬗻rZe/:ّ[: oʔK>KANrfBAI~L_YEv,qa9T7l˷9;̄O'1!>IXHV8Ʃ2d;tT0I ۦ:3w6<:w2wQv"mgrc#gֳ+K: ^/|;cӔ |gอ(׹9v?3[;yиw la~p!U3SBazY{IP^LyCՖ]Qqi)}Ȉ_k)Iq `_ݣ} sjX VdCcLin_o@6nj+?'{=aIx<X?|}R|0lWGa>N?6tI`N؈;m3ۦkj>&KFApgmYڐڶmPѮTڍ(/bmXcW%}EޚU4wLzq2JNtn ^|gWWh KSi2\m8X(NA۠?}@ߎ?r/d{ hH,ğM `<ݞ$Ŭ_ K48ӛ cvʭ }>KNp&KS.TxZPN ji#"@S=2wꗆx$lkZ&,V,l2ϟ_氍,HT?9SoD VfcT&]pOh;k'tuv*4E3~)\%ùL/q>CDջ{=U'a S5˯ez*KKU¾*UB$/*dfYn"(PZb'cK8?sƲ2U=s:>w}5Y{WB'T0WNez9.0 4z}ypyiaj=90|X~Ee5DžVN u[Nb؜>x*u@z7W2|UqgM09.dtYNl`XcM WY) fK)7x9.\MoXi~d<_LI Kvq̲X2NVݡŅ#;lLܓ8Y9. f=Ί9oSuBi2ehinRēOlpaɐ2eX[)ݤ|rI~nV,V>u \sirդ[&ٹJG+pTWle}:ȭstQu $}~<,sUl$SX3#ǀg7 ۙ{xqIט9Ӱ'1\Wi5jPE[F"Ce7CزqJ̲BxfD@i(l*<9 pp&X{Y8F{<]t.sg.cDx G5@:;# ȝ@^7\p @xs#%\DDyfC&³k)-Ɛth>pI9לB*g@ t >tvƞg!~.eЏb9ۑ 4FSDUel [Wy\Xp/Gn ?XҾC',n*]2d .Jʛ=E>9/6}t-S{ϡ slcFv:vzzǦQ&и23Firw2 t$^-׻.qTa1+g')'9ۭ YƳo> XU hzw]?Y7h]_1QvJ4q$KuЂc'o5L{:eIRJ;ʶϬBvWk:KV9Ra 9>Y~uv}n W\WsO\jgOߥ.!ƢTYX C?% WY2^Hw)KbWpYoqeݝ q(?qo.e[D *{ RZ&lpǓOl@s$4Oī`%V2`k~ojd[!zĻ](3mتηk]9'"MyTw ghφg[a9r,Xg&Ym4S֜hӳi[P_[NhTD9de_ Op% X?\A.KﶾҚw1gpS}>}>#A #S9kaȍBeD L,OOzj,&0{^t y%Jf6gf:\Iofׅ?8dSE C/H:]U62ȉ9k4(ń[!.U_~ |uAe r7!P =M,ԯn%&1 5}6ECx~l嚨/Eڪ^5"Ep#w,+ujܥr])sl$0A9m; 50Yb´7 3*8:OE? BZ RHМ*p& Z] z+AԞPy~I6c80%<&CO6FMI)’ +i5}' OAN1^soRЃnmwHD/O }҄:rPg,EII=ZV;b6ܴ m_@[> 0A雃;VARQHn x0cݩw@7tV螐$ᙥոUnEm<݉8wD(̬pdtY*th,XxԾbDH1 5n]3%1tҙl d\qvbO0"q lN&osuιfg4;h)nȷW@Rh*N).vh8s8KH紂Gzȃ\zc4MNA7V&U=CΏrLB\ú|3C*&b #݃:Ktҷ|0ϳ=duN4sifo\EH iʀѥq:cyhfї$ZI f'&vV"N q[nz!A+Ox { lfB"+9/@&q'qW=6jçxRyz-NR}AmN[d_`W:_n9ƼawCV\s:jSA87XA!XoZnwPMl)c#m =sYЛ9:3SX~4n¢rB8s;ti{ nɍIunl9JGx:&Q'3,`w =;*2&AÀ5h@}REO{@vʴU|CNNasɽi s)љb_A+_u¿^ɟ>$wB iqt"DϪ;WGr:E@{LAћ)VAYu?vcmVJP?C.<Wk]gdOID >fLjnN&ck*ެoWW=ì*ň4 jפ\C bF#A(/ ,8svc`' 9^gt@}_wC%PNAY9no-("52ZO'mU9Uj2XM%ff ݼ=xLŕс+ئN01S:#4Q1_z~4?„%c?:&K>a~mƼiI O\q co6}wZ,#EW66g2ÿ 熐o g&61syS!D;txG|o9i<"f+1HԱ׋2'vF 3T@z(Msݸy"|U'rL jvGS>4%v8<8y(ĺ:3W2W''~@@ Ui'Y2qsu9CsҜz̓R tRS鸉1qes4ңL(uQ@xȞ>T9+I)R 1U`jrHƤ5/Z;B!zk>冥W+ f99Gas[iC1TDC[> k .`r:ջ0I!L<53`LTo,MA(44owavv rku 5[m =PC)`tқ<&:1 S42`j9ghcp UMZubS1'{c;t*O; mS 1w!!7;#cu o_ͭ ~[I܎|Bo,grx9<[B DIjp&hY6n7q?s8*H&&w~Сt+I脐2cmqlbL#UElϪ>ijvZٷ:x*_V(FNZ IP rLutKqrZԃM dd`h軔6]hۄS!鸚D$eS=m)cijS6ұtVFaH[E&VusJFFNk{ NO(qW"&CH6Oo[ܩQ6=(@@2V]x`Ʉ8E` &Lθ_Y$Lɺ;ɆsԵk!{ۨ>Ԟe`kZNػ?\ wjh #(%"e6*56*ob؝Sƣтg8 QkZBϨ 4r`yZc5 ^=Rnt'H$آFG^sK&cdP`%t3G5 \6Rz|JԆi<eoweg#P"^ⴸnO޼F|x\!]ʇüC2/yF!?dBI Y;>6U~crX"ceة33ljsF;-|Kl ?HQ0 6q9e:ORuwr&lDS`ܼEc>zN{ř6>11Z"f v|=L z׶aOwFv;ejx+k;/c&w;)$~$[RC-L6\`N|2:[`3tSbL\a3tS~lD'\YQXj*W1n4Lr5oC\C9 ]Mz, \fV4;:s#bFb⾱y Ιol tglbql pR1qtCQO5lB ү(M5O9m6ؑo+ŅP9n qܓ8 /Z Y +! eNg!HI&XxD*G$^]Iu' L`1z.Akپ-|o gnGȶ3/ #Ht-v`Qid4]kJq#^M@k>U@b~tn!0k9~WLVJ\!LZwr-ˣC<_Kv>K3c^tR|,"epq+CI$>AwX%qea٢uV@bpޚdh0cGqFp >C>aYs+ fGet9XNE#-U4=/$AN\ڍ΅ka[J>6sl: ~j'qr;4ioܮg+Bu|wƺqc.F0|*@?HVAc1TYC" b@i},ֆOG_:?bK)˲W952r댉eDZ\;F߁Wך}9?Cl4S˗8ɻw߽ <9]4tUnHF _tZr7{|FGb-2fm^ϭ5M쇤eTVn.xOڶ}N0qmϛ1DI'̗~#z塆9xY?ɒ)zOl}VADھ/c;Cpg9 Nlƥc^#$4ߚu㜑[<4Eo%֝:zgjz|'Ξʚs4>gTD{{TsW(=9f\vۍ!Kct؎7c 98WYQj$C.j69tsb*-4ԗeN^qjV-)nڰz4,qULc%&ؐh1"n;qcLjl|[eiLH|јɧY&ϸyآC}߿$ܬX`?~a@Fgs[;٫jΪ-uU^<+ o1j ,^|? ?puT!Hc%/ͮ ԚfH<;wPG3KAyAȟ}P]m6㾳R7UUGgh~WOԢ|hU 's5iX%e([fÇ wE$W Et#HI_i' UZo?fZ c#}9C?1W+RCazJ,?zÜ?F:=yz7߃)2D=@>`N0C7|ѩJ1 g=q\7t*ݶ&#3$; ,"tn~2GLh"<7zs=EpXq}&\wJ_[`!Ñ"W:#ۿ{om9c@pɥ#CgJ" L?\w"&ٿ^I]RhiՂ1+7+PK =EVM}\ LZ[s#c H+Đ^p=l\JI*bHߛ9ŠC?rcHԝRecH;/iJ:Nƣ8eL8䄜obw4MĐѩ$UxYC xl >_L@!ޮ +v8`-t1שc|&H<`x+9͖[ͧHL-uMrj @icrTE+ON$;#fZ&6{gR&îvyZ`<LI_sZlNv"U 1"ztbYKdH}[ ۆ=zq~1ca>q$Vr|3d_.t软;=!NMcD1JcGw$#i Jޅ}޻Yp[d\1y)``4R7 }:ҽ?czbRL,Ecu I+l1ɫ|ҹ  x٧Cr=,, l9h5.)e8HPya/2AyH5l$eV}O {dmN1Lȭh:{,"DԼ*rk f3AZg|üsi@EW:?I`*+rb?л2>l^ޤ8I`ςQ_?lO Z^eMF zjK(iwd0G:gk=7!Rl$$+U)ϣ { \<@bz Sؘg2RUe <)wQ qJʪU}Q%GWD,^vgTXNQu5Aǹ:FVEdvAq~tPC( & l\7P"P\titS )Յ4R1:W8;᷾@e#ՊB@7佺Vc̤cĉ=כ3VǍYBbiӢ$v>2qwdj)B --,V7uUF%Jfh>)͚qzpPoA ,scXyx)TtAz%f.Ӓ  wU/_J ?h+lT7O+K= IZ eں>HB}R1PkRa(<=AZi NCA7lP+؍C#cLy7lVs5ݭJ[9%~O"zZIOUؚ;;Nx~ϮG%odww6`ewlLFk8jʢ$_*n960ssXĎKOҒ@G Ɵ`u~f{WijT)(x`5Ŝ0UH,l? ҭ1nw}D3V|wgM:ݙm  dڝ/̜e! ?a kmz?xVQmh $,"u+EpY81$li/°g F RM~`j>nwr{\x~棂=m4r(ޢ]χootbN)j[ +Z)tks&OڨtRQ=]zM{*e%:-} ΛZ(u*ڈ9pfl`dax }l T4rىy~'^$(W8~$`Rav)dvɹUZjNڣk%~0YÑz3Swx4B&` _OZ΢ P4jMCTpcu M  yך} މ'͒L3[-L D>:EtO:1*}[TN|WRz/94S'W86#D~?of*lZ>%}ͻ NZX !{myE;g]ΚTˍY% Ƙ;;bLLU^^wܥ#LTƎ.tKMtt6oGh9qD0+c;Jț;VMZkJ۟o֪b[~\cb4?ay_ ?!<=sv Ў=tP"L|Zz\1cxaލ>y|֛j o{Yr<=$,v]wB2fԲ6>֭CX=t)c>B_Xt9x>WRW4؞mӝӊ(.^% [g? F#qYaJIOCaU 05kcMKulsv۶r v,4>YxӢAӐ,8yEg{ y>pUWlo? 1?Ҫ2}YX&W>x֝lβ˺rZr6S(C.۝XB Z釥xҪC&,ZdUmwf#2U6 0Sʲkmd2wop[ Gw ׯ>2_ UvT}|jYNv8I;OV>l_wi !>.K,VK&քuu :]uHyyz˷DZB U*C#&vSDͻǺ@OÛ\_3k.ܚ4d=kPk1p/7oXXf4%Ȫ\\[(uAd{6ݷ?X c5;?ղS-ĕu }n=$Lq-+使pEb Z3={xp}@5b1=`v<4mTYvnR{@nd(]1mҾq DO<-W{d߯vbPؘV+ͰhoXml/ۍ~Cd-x77xo&ڸ~kǮ( W+e}&tiU}_m>q-lݲJn.8Û1vVX{R놖 &ps4ek{Bd/oXOQ}QdN66ZlU}׉QO㖻`}'bY|۞8h`xŷ',YKm{G~~m;QȮz? ${{>K{}n.g"}qb?3lyNFFxeo.x<3V w>< Vi! s}9H. r{xB_ø|?Ǝ嵿s_J7-fdH[0&؝;3YWJ,! /G9[Wq۳Ua˹ J8 csDı}?Q8wLz1GaNhָL|nQO9x#L0g+Ԝ;owPkMA|O8XջNc:<[g9'-%9w4B0m c~@cVd V휣>?T57{&$_Ǖc_ãNpQt^5̕"".2I7f%Wjvh/K4[9;׾]]oj<5~t.]a.̂ۼwD8DپߏVqWp'h܀ ?=O,.O{2z~\FvZoG!ƝȌ|>x) mG:fϊ< ew{I~N<${Y&4<. K|k?^%@ eg<"<~w9F0R˨yDPnXkrDQR@vmwoj t:5NP}xh_G9IscIճ[M;9|{W{,|Eɝ#ީ ?'_SuhNj?&#ԆIi^?'l5x*Xx ۻ?^*POo&cѾKޗx:dN A.Y j v{=,IlFG=U~i¶Rw|B^?#1(n\MEpMwDwC, 缟Ca s$d׍%n8~䋑]+qr襭: 🗊6F|h%՟x?H$QY0=ߋ|Ϭ]{Zu58n O!ozg9 ]>6D 1k,t{G0H+=߅ y/.Ç75}'&QR'^OOǝJhǖ48t=׿/_____??/۔;r<͗~}JߧW+zci8/tӨT1}?w~+]?|+7a3}0?w%~"=~rO{psu/4`Yј|?q?Yz|fA¥A}#M ~n2b]Vs_5^\KT4 _}Oxt ٣,>`//ٿC{O}Fn{ ~0 'u~(_|GE(k19CӀwmʯĔAd/>ڃ/|&jGq|W wUQxİmUݰ]j3x7ewƲx{+50$!ޢ q{M4ѳ^ݹJ{v5|oii'%*rVz05{o*qmBq}o8e  VH`[n\,&B~\-P:n  'ոPPʜ? 4jKh|w:}p eƦ{j PwfL?u53q2aFd #dڙc 4&`#Lܤߣ2!^1ed\hlC-/Yv3,bx0mH+q!qEKkԸb ծ'%.$spE昦eTu. u{׸Klsxؿa-RЕZcvs&F<3Xp$wX/aJN7]5WxH] ;F*Ї}0&jlTJTΫ81xFʠ{[DHuO|.OUZ*ԇ}Zm$PB*Xʷk龴V ]B W)kB)nUWV&pfѵʷӺM_p3-q,1 #)L͒6CRf,d̪ Fw\UXw( U¸ˉ7ltZ8W]JX* 9V>9._xk.6ֺZ'˨'&AyRck^]M^$[$>Bp7[&K|%ꂆ ƭ4Svqs>y/-H{X<ї&Ө R qzIhd :`}]3Rik\>;?cњhL钵Ҩ躵mnm+ŵlY"hH VJ \k̔`1S֯}R ^HR'IIE=Mg&$Ybڱ~$-B\XT[(ºg>jw@1[ٳ1K.5k(^\y[j&$kapg)cϴѾPHWp\B%—|mRhaqRoOKz*;X'LrdN~kP$ժԬ*W>/5Wbm3 Z)ujV_1DR2p"[ \#%27*~(`ws5fuhЯ|fg/ _urمaq]2*:ɇѭ,qC3%ƵTJrH`XXP;\>&Lt6%UڗW"OHꕣ 1hz\mR!m8^F,>/4z1Ot΅f-TOm|q+FO|sWrQ꿍;kv=V}qeb/#)|w/lHQvs0u⡴*[[M~H9;7b6W7@d&>W*xg2[GÜ;hgE'U5o/&LG#OPSI!LL*3)0}>lGs%mY/qﶫMc\_`i ݕpuW#+ 7jg2+OuQY?{I 鐳ͳlbfIEb`yiN 7\S=W2tLT8SHa/yk,mҜ5N3mgZE8Xwlߎ`KH}&//noٺ4]zx jbkɔnnS}O@a#}Imց?:Imh'3Jntέu#,+6Y,˲@xq-=\ƾm8[:eA UL~%״0%iZn_~kTSt+-X2dPM h95#d2VQ{_R?xҳ<o/GYɺ@anW5oma!:9YRs/끥oS۔R̗f(A󥔙/-c;^;) c-T!䁧 т_YVFS+κ}x'x}})Htx=+TR]B۲v\Q;%VuAe-JMu$84b@fc*rtG[BE0ܧiXZ:ͧ핉Oڷ`j]4DV} Bq\ɒCѬ y`o^;9x|G#>󡇫sȡg3,LWVV;O8ƳvV믃ˣ)7ڿ+cpngzmfVv[R]WVVlS7-oY=k8`E/(sӦBYdXZg;^mV>)s0Du=/4 j rvޑ4+ &W) Q&o );nlbLavVȗ5cqpݿ!/'SI.{Nw *3.Xh:aI^Tu;|,lz<ʔm ] E _opiwԑ .[:h=`1݉^$Kc4^H!58+#my-e/5=$-{I-Y_6i؊8R?…U[qsB:%Nh4TϲP0%iuT"Q"| ydLҌ@D>u-kȉ畫,s1c2% QƮP6 "Wpq]K )NmAm$BgK˝!1xtp3,ۘkGYA̜Cq/TmUg{Jxfm0.)㜤 J6BHW]pfLKv|}&5 ɥ sW|VZx* \=$ՊyٵmR 6m$!049̖vd i*#9-*yL0*7YTNxۄ8B]T@W=X*r!g}59Z1ln c7BѸ7{o>.|o-*۷f֪NM .yxIk#0\&NumV!n 2k N IhwWM$ٓR %|X͗TSLzy撟ؗkp6F3v'[l%$ȠT0"3|,/mcIɽACz JNkMBdI3Mf\[J"]רOJbdV!Nho•Yi8/P612عpe*,FƇ[LÍێ1T[O;cdKUd{I0l紒|΅%!d<)|Ȑn P+3$[E}72u>%2Y zi{vU r#){#lq߉T/|z[3H▖sۡSel)}5(ZIŃ10m0/%N~xӖۦw|tз5AdZֈv6v?|:ܞL\W o-ѱ#!)\D#h%N Nugybἠ!sKJk*i)XҠqUS6fToqFrt߶Ë;"֠NwE&L|gn;EyrWq,;Ga6.Am?E$OZ8zMy6pػV; j^}/i4~VKvg%Y PfL-UY7uLH[ZU"} 2cdG(?yvȒ:$Z[h/8֕rO= 5wms [!<_%UfLAfvH yOc' 񡢞iٸBqeQ)e(#y 00T"bWN7ćìZ`g֚?bz,Bh0 m_;$̩CB_ !a=foHW} 5RIY˹/i=S~-_sKRҶ*ۜI|WIi}2ښm\Vr؎,sv2H1%wvq;fGѐ\j!7`'F~=Aw*6jƍZ ߑ:#3lE}+\sN,n)W50Hծ02$pR*5o+ާqsn?gq% $툇!;SQ:@O!8yjɋw)Fw,SH*}w̜X*u!M"3&Ř۾x֬!u;%$Tَw/;`˖SokCf; ~ j]}^k{\vyl3O![ wۄ;Ҷ}7 .}7ۦsIbh/7MMU?OLs;)&'b_btVIgkitճyܺ,^3e\Jlkt#3aR1NY@nuc[vGM7}6Z۴{ $lq9ei0&JⲒ4EⒸ/UBuzq.K [nJoCa h5m&V$ҁb^GұvXU'"7v Q Se{ >a@ݽ&zc6羚nS7nv+]3uC8.02oOؾ':\/v(WyÕuHm7j:tԈΌ<)_%tfOd.m`ꄙFYvYg'{!a@Jٶ]FnF+]sB_M$:Ώ([Imp5ov1ɩ3T'XɼquZ|XVuuzVUNR}&ǾԹ|Gk|@lzl=]j]t`'o{75ml׌WVJcHu>!mOo1۔*CKyf m܋yv+j[eOݍfT+1M"B=t;UM%i۪V;V/Y+NhԼG-\n0ޒ5nA<@ rc"AߧmԆ[9ǗlѠ;s٦PnC-76ήo:䎤ݎ4"w.Sdn'jõe`_m٫+oSPݤk퐼Y{2v2ͱMԨf+ff)5mw49nc2WEդ75Sl6Lel]\׸pFvչݫb9:SKGqvOGUS-_ߙns!if^x]3Ƕg['^oz]^WuoX8n,ہ&cs@LC+6%ZO6jM}KsSֵm &Gbdj]Mfk[r[mԧY=~mqJw]P 6fEw'hgJ涀l^F}Orr#>^bɵu[N^XLu7sAn/e;qܷ5Z#vPۣvxy+5o_nU9>=|vÙл+BߌBv.`r۵TVMz쟪SP+k^tkm&uW&jvG C}1Z? uk>-s:* uo9[w m7,5;In|g~zAm5}wmu%hus|ak*`mwuѤmpxWFF8`m[}kY}WUⳬm[购]n)uj7ۑ~>/}]IukWȢ_EYSl7n۩lS{?Z|NjrBknU. Nc[b0y 2,:!O9`Mڶ(:y.ۉ!ly208]R9&}Wl[lFz e^hC@U5wNzF+k&kj^3* CӅ&9Ͼ]5[7lۯUӦk  )0>0ݻ1^k=_3uw{ kgÊ3,Nm9 ԉODn'j4i]0 Ϙ2etlEӖ'Y5{ȧ8hdݵkť_32+n݁ Ҷ+橈Me>kݷ Zjc?8}yn}=[M۳'!X?m+ :gB`f.w )/]+?UK33%T&5n\uzmM%t/`{ŵpY̔Oڷ 'x <>⊅)$`Tl|+7ޖ֜4'%Yx//wkq7665}zWO7_T >m#Tpڏ%.~;3}ٯs<4h#KQYTN@X#߬lVV"Z߾oAvR ncoym6:H+8i`}n+1ZtmLksߦMzS wv`nF7pDYh~ږ#nZo'?4¯2gW* yd5V_ӟ__{Ifg%~,:-^P U -yٞ0ˋ&%ktlAIknacŤkp/cЖ]_4 b\ayCwRY6m KB׀O9yG&"Hh7XXZj㱆:,T;֐}b^+#e5tKʒw *MX/4C[djX8F8wk^zy\pԮ.N8Nk _l)sn?+o(;S- 6BRkۍPt1L`לFoEtg_Wf_{ gd6ԔX?/sAn |Ȓ$T\ߔ&=|lc_b s#5p"۳ssaQy zYȨ^FFLSO/GTY67 Y_w 4rts'BW6H^sOܷ%ϳm0"ôJV4(ٮGD9UxERj=睮RilžM7yJ}IU#d)-FR]JGQT?aY"F=åmP,NVa9qn*7O0$v#L*zSO gO{,^]UܢlpllJE}W;|M*%߳޳M m7S.6GF#O8pAqДn zrϯ޶6T=;w_|eCab4a*ʼnă8x׹޻}]=J^4^Eǂd3![oZ_F|"d[Lͩʂky_s#RZE.bw28"ϏqaZ Q:flSU1ÌWaJm&n*^}fK$aHrL0a-[UH?c5!'w$4TA_Fn (א'f 994WaQ쮡o:K {B2NK<e|qAJ{JP7e-;ֻHN%ا)Z>'o'ͻy'~عƈqlUг*{ N5@] Iǭi`)^Saix]eA?ŏ ݻ@?> OͯA=oE3"J)E ETz\w}UZ%> LnFwS2U ۭ.cM 6YQP%k [Ja>SZֺJ5cʪ,jNC.Kw.|}VqPLjB'i! Ks֨a^*0H{٥˪ǟ]hd_|}V{rt7eUj+2OVt'㦡;zUL :fTn9W+uupV?lwC1NR8˺1*w\/ 3*/IY$Ny m=mm?)wY([ JYƪF ~b5Z"a㦷sMS̗rvk^A\ q-wTmE4X[ZVagM_Ot)IDJֲb;׌2Vˁ)czhTw03MSױ3g~ډ@7й-W Վ?!\UMV"-'&M%h[S+qJ71Hw'w{`i2wvm!aV2iv8hzl UgMZC&1:iyo&.@=je[[p>KNcUJ cQ3Z'R;pNX>qB[h)XD/&Y;#So15Nr"^Kʉğ\\(sV]x ܉fcTU-`KD!m{[L擅!6*sjSJU-foia@N-Ww2&a$n8U[(^/hZ qmE Ģ+ Fܞ~Y TDDߺ[O"<KwnQO/Sv>{q=,ZSlzpY֋VOqEet]WV MCsuUm̽v&#"@Ǜ.mLߪpQ05Z:߹\aM.vOᤖ h9Œj5[TvOFHJhyjWd>VB+6uN ˨ʥ?niJc?l?`[R6޼ɢbA2DygtLݔWL y-M05 E7-ŝ^;]iЭNٝQ;urkF< \.vUo%':'S63T~+ ԴL?K,z<ϝ{Pr"%ӥ':L0l= _ϟ |B]&CWޫ?f2̮Ζ!:>yANZrAH41`'gTadZtE:@d>)'^ ꒡ I Oq}*ǀ)?g|r#,t%Yuom ?jf奷?yC6V/*z> D{-¢!jde0?Cİ";}Ci]K XԔV'So2#뤵Bir ۵.T<v/pg8̜sĹs!DpQ̉S?Co9qk^xP$Z(~'{n@SiYi{`e z&ʰ}$AO?/ @?$(̅w;c6ps\Vj_AxO>)]gD!b@\E!}BY +1A+ #K1XB3=#<5ԎaAx$rt22lPAxJ6qZD\loKK P߬IoB8r8|O rd%OHxsQ<]N˵3,TG%NvcRe2;xT}ĻK' B[h,7N{ܡAcZd< :mdb?] 7t9İ5|Ƃģ#o$tRhd'DP8!G2h~Vvq/) _8݄]Od{w#9O`"!5 >; e);Pl0QG).iN\i/I.yY2KQ ޳xgFiMY42ς>B FVwǝaYSg*df"ںQy$/wj^"Z\kiuo˟7x ]ݚmUgX}f;=\ƱpNu?j 3%Bapٟ,egc xn7x lce >n=eYƯjkqXD֢(z% 6*I?েOϱ* q߈R7Ie'<{%M.Oxpj о@P>._sj7h9Vs\{_e$-iV>>qm* \7fqP&j,7|֬K 03ksX"WY /w_ޗokUWi<ߋWkxXޫXJd2^-eU;0jćUx VJ_,{WdKsO:- c=Z[s AxAۮe1FUMM~y{|g<(rAʼ{=u{[mM3 V7|M9~.'!fYå鬱9 @ Z&S/5:7Kvr,|ԛnBUJ4w{lf/:*o˝.\!c.n5cRw-މ?K_.X!Qkhi.w.#`poi7G[1~JUkx}ݞ_\;,|4k·c~MW@U__\%,Nd=T<W_Z)La8O __ .&rWt7Kk.wS9I[«5Ox0F~sQ;F:0 9j«ԥ rhI+塽h8pmO#q/ה?͐>d5a@a޵< 픓kc8 [CP-8ۇY8~.ih-tF3mPR]>nPI7h)2z(p=fL0Vh@3P4<O_ kA]"? q@U`OsN 0hOq=b^-3{ĺY헓ZPu.(TڇIN?=h\xʼڜ0StkAcVXVMɥ ٕ\CƄi_h]2O4< OrH/}3bV«X@|)EH!H>a'M[]-I@̌Yy%G6 i"}CxU1ȕ6z1}deO*~ɣ|X/q1̜\S9qg̎ a;T+cnt]1B] 3 dzr`aȒE,1e<( Bibj|f?EC +WTZ_ӟ "7g4#ut__ϕ.}ܯ6 k2z)UV[.(m(U;ɮ +s.LFB:+?=PA\`nVS QPrhgXLS]@>Y_ԖJ( Ֆ3pAvOyY우iޘsК&1+ @ôEѤPY n8|*r%Tɂ TDLH f\ɚUaRQG}VQb<+6]P} m,FWa9GψȵB`.ˈIo"8buVTl Ppgk-\+ư i}K-Y[E1ҴhQV} iS0Lqi18Wݭ촿gJݠ %AO \U\z<> /a_I[W( QLQ]<-=c]*^h\HLF.雮oE'ŽKdZ'\M6 1:*Y\F궚%dA$lƂ|24UҬ`*8+VD[Vi1%qV}6 _7/6;d~(`N=Zh v<~ wE%l,x@ZUl ^bHKаdJA ˏoӟ cxYZVB(>JFYy!N/I6`;arN1vZJB c8dqJn#\5O(>{jH˓d7چ  4@89dyl.W0;^Æ!ԘK-xig]Y "įaCjQހTu!7SsMCcδ»|h8"Hm ޝnLJe%T A\6 @}m H-a,HE&u;Tac =׽l6?E`%gw]&$KA,%pvX.Ɔ\I>vMDfg'*8+1#c)=K tL-HA4V-`XeG[ɧ^efeE)mŮ#: PT7Q;}W87EEc֫t\cz;Eԛvᯞ2g:r[O*F.Wn+U )/ʨm V% ?~?_>??/ӏ?~??A_T;-0Dک֥B_\5Y $PQN ,:V<&KO(Eo3ѡySߔڛg@ E2Y#i5 )k9ȟ8k_Qno+=:u,]l/wSѡ]Zs?T^l'#?TC)qٲyQQ9 ă^+.|ql~\ 㣦hk'eGGMYF_풵,ƃ|4kYH᭑ӴH:]p΍ݨ!G*ZG,x>Wh(YJ,%G-󍪔SznH^rN'>:KSC0x;Ө/틔 &8RC5Ǐlkr{&A;9.J/>WMt%S~s#vȦ7S3$[Io~Tt.N/^b;6+fZ$`}@X E^FSfB>T}BNpvUgULW5j7ŶD,7$gEw:<>|*3:sʖfjԏo֌^GKbW#ax3u)o \SwZ/#UUzpgû+_iA_= Xp.z&wxϵṡw!nMpMyq-j,Zq.7BPA(PL =M9_s+G?vLVy3zywI]t"jyӒ:}8}fu9粻GǶj:^z(~2[JD>}si۩{:p89v 3mgUov~\=F7SHo{?;6f0 Dbڐ'.f k;qߟM\кN[e2<P "u{zؾSӛq8=:.>b{Vz3 k#/1}W/ɚ[(/MxXużfft6~y e5j4nƍsGe(+iJJun{ѤKٶ^ *xN6l pŁZߌ(4I,`gnH5"/n6V|kMY-'iDg<8|˧mHګGTN ׾j8w=#7 {xlf1Z2Y 9.nǸȍHbynܽ8Rm~*`A0VY+wcY/%hIN hg$SʋDpHI@i ܑ@8SfWv,WQZt=fiJ(q8̵|sFBon8/<ǛLd91q_ !S\}&qN7M$f||5@%oR>.ǐ dMqV;?>FdfZQzĮ\jwXLο:< P0Y93~/ Û2z+ V_v<.[>'ș07ys5<(fGrfY|3[;4/xf9:uv0a4>I,fQgE:_ VN,U*?SZ'X.oPen?gpp/6gP0?I1_ dc 4'8:XL_?E̿۠Lݜ&]42Ly6PۤEĝ`86t2f<^nj~F 'MF^lPgag*2谄& mo>=v\s1W$;eD.pbڥv<v\gޢn`cQN"~~KV_'\yuOaU3htj/~=w;fnp rE陂ya=qNe$ljW)) ~Ȟڮѫ؀4N~L؄l{8Y:~3ppZHx՘LՙQW["/)Gr愾??Ĝ&cK&>ukgD_ՈW 'jhU_5'LX ԪmpX:ƫ/Qo08 V~u0M L^Eg"f׍tLSob|:eNZT-F@{louV.+wѮR'N 5ص=qϛ1_3ASiXޚ!v|sOE[yqx 5ı^Ԡ8q^*3',Nʽ88ye,W;{fi56qjx.*gĘp ADW#b, ,UUS;7:EGG4QE宮[߉N!|AY' ~Q/'7YV=U(-+: $:Y3qG*|ٚ{7*-w2~+I-\vMvE^}QT-j 3,)^%rI1oG{T5f%/ػDx.)L`88|@V}' ;q^b7lLR U2їf _,w?,H|HNsGBlWpz _I/@a{a{˞守T;~}<;\j 7p?\WZ듏}^t^˓O+nj9: J}ʹ3RhhԾ<0Cpլ7`VckbFB/ϸhh~XI]6ezLL*)Vi 6PDGD3`)H;nBNj|HPٙG|i ;SD) 4/FsF}+|낧'.Z'5K=5]{op.ȿm]hϨ ]K+=߲mYUs5r={rsvڥyTF6dSqK}dtm֟)Zs71+nF}F3[z }aFoK6űv#Q 33c)W nh\̘W/'-rT"$"JYD:բt&ʿB+ u_?}?pSӇYÉ H%~3ɛ|hxF2r>Ztp>+`/ï#V3"k _\˿/~ۋ׿^'UWeTO<)ѥ]<$AF6le<ue;3 f)+.ay5K8%Mpg΄9Y竏|[:b4'\XʻL {RE_]ꫦwygۂ*5k}A][sھH^e>תuf?j$.Dz?%V%X}nwN^T݁@Q{B葵7$O9u^}Opy{|\;Pbx0`l+@PBJ]qR.6-x_\xx pxfzq1 iYh=iZxeEm>0C;pl-ez"$ŵ;]H3.FY\(*|LbxqCj2[]\i FZ% 3[??~ 4lznPܾLf)%$O?!wvu'=FMT BNkU [a H+K&vQN^d&-`,IMv _M \&?%c'{Oua™4Ӯ:x]"O>SwIMٺpʻ;vbifI!Ȼv,2+@5]gd(w ٱeaiv=#ZB9]]6h8030'Ĵ{z+IhiPJfր} nNJf09 ،:gj S{ff +"xl*gfj ؝[*޴R'^)˦:):T'=V˦"ƒ\62ll*bhȦ;b󨻦S:gRw픧*zi@ꮝ@Z`d uT)>AHݵT'*"@ꮝ Tx*کS!A@ꮩ/y8Jݱ®jIl^Q让 Ågڪ9 oSiB-]w U(÷=mԽ쮩^&۾kEɾ_wN  غkE4v邠U5V޹mj^b`p4W\pC}Q!ۦb &ur~vjGm+^f m\Pj i+UɒiMsŞ fkrʛƊ nU۴T\bd 훖 q~Z\ߕwP5xm^ yPy` 1:)FkgγBk:>k<_g yZ {e'fmwuB݃^i=%VigfԦ:z[{x6T]!ܖͬ~+t@fbV#f `b7,阙Z&.>3-ЙẄ `$YKٯupt;jfflU(:p2l53eW،O7̠]bcnY8T58ޒo*w̚\oI7;fM.,p*w,\pY8_CK~ĩ1n OAw'*zr~ǺXXE1n _?}C/~C,[OJIW] S%b2 ύ%CwsS%8mv~Ǹ |:%~w۩e twnв p3/Ќ,kJ#vزKh:sز$uhgY6) aeOxg:)~܇%OxAb7IԁBRRZ:_vAvv7ˮ(q{vwlrWOYWBjz`1p Onw \'vP83=Vzÿxϕr/VK[y~úI\Va3 &^ɮ8A'S%`pP /++7xƃzҧf\+ &(D`QaDnw4IiW )ǵ߱ow;pw@uV0sJ_wݽYKNt؁Wk]) ıYR C\J3KvA렝RBhAS:4q(,'1f錂i%@ 1-XGw]mDҊKqcaӲKysauυaק-5-Nmk.h^j+p]״b %HV cKCW'm A(6}NN *{=$XGwܡS\§Ezw,G?-., K>_Cy,2BظW\fq׺L . B㞖\BWl-7`w {Z~pݱa~hc2KmL 6&-FXGܢ#$\[ܪiY%ŭWnմ%kP.*JHpB 0 ,U+0\O -*EH@OjnGY5bOF5 je6mȢkX.0:ήFyb&$f@˾'~ENQA 2CQA}TG;@̃fwӖyw,x2 ]¡:PF ,fӋcӗp;*  &0U1s2O *kŵULF5 ,>>⎏uee;&V2XLbj6ԖRKr͢ʀ.r'=\6Tpx!dfveTpUk*X;U& 5"^)#%fƨ!{!%&.hoپcD6k'|<MXL[3!{[n1wlA)zaט\y'z#5*c)p׌3ݱD'L߉ɂL +x0ctB+hDEAsU؁:VI:|8TҢ%· uDp[fRGA%{#5*&Z%Z33"_zn]'6;qy;*"_*`ïcf1Y耙JFT\mi[CQQ蹆ר]a"-X'@=P)]Zq #qщnsX^DV9N2gQaWq߯QH1L'P%r x CTGvӎaZȮR, ˈ~ ^@iݱKs~JPF Z e:8{,0b'Jۆ{ 1T(ï+z~ *|S}zi>GkmsXÈ~9pv,(-1"'ZC0gG+uѯA'>7ֲ 痠U1ݹsx Մ]P9T{CDV\ua;vz+7s1L? \\w, 4׶2Te§qK9רiX1\: *AXiv85oHZA\kT/fW8?_V j<~QwlSɱfSRGd6r<6 TE;`m7 %h/k{/f"v8=^o0w,SͦE$1jn D$|Txpz[EKFQ;t{_h %{=l܇?|ǠN~ 1e PӵGaAwm?k0\ Z`ýV[1& qR;fi4z G2 {8TEM1W`]}Exl(do;FKful& c⚌OgE.{`O4e*fYWtԌc6Ȋ?JF4QRæG IPqtX{r @!cXZ2I:,gueH.{Lg{|=&V)m= }~vr`_a NŠnWw E.d== &s4 8OZM7,J:{4Rz`Xb9P>{ IhޓcoԐ%[4;͊9jx|nq'VA _%$UUgA7T\X \)0<,׶lTymdqf}G>&f` @v}r0Cy^!9qzܒt P3)_-KܭIBF ^ '"XeWf7'-pBFa6vCP||\YOy@/_/DNq@A-ws .Q).c 8^Ȉ"% c䯟lʑ1Z 20V Xýќ;GR FFkC+GEN 0]嘁 W{F޵^iBwvy\?a &m6]Q6\m;`s܈N2Qn0b'lфwZPLxhp݄0Lڝ#H90~{o!x3޵[S*װq]m ɅuẏE]C@:ri2?RװQ3DzNѾжf!{ ~Н {RIləm2fpr09Ȗm2Ӂps/Iju7Jl8@sӶdS 7Wی %F%3c eG.A=k$.j6eKdcdu@D]#VO+SXgFr/;yoe/m[ڽFVSY6VSg륪6Uix>QMP /Mw:\i:Jkj R|5|\z&k  }^HӭzԢRAÐM0b P֓J&.jD ˷rPy}~^-m3@/' ge6SbP>З]#6AU.l4@J:Zf{>=$Թm m(VN#)G5KL xIz'~<Ir²hѾI:#O5}NP P^!,m&>9sdWMI?~֤HCO)Gsbox'NާcnAzKv0C!?zIL~"j;zEtzaz+yOloXx}[f[D#)꬈Is1zE|0(@MY1֗x_/F\B/HlkȽ*^2|lܔT$#9=ھpp^"j%WAwE`I.^:/Hlf{HžSޕ8Uƻ$d܈J O7 /U;0^R&$OU vI$FaWD>5%Gi²=+"Rrښ:pThCzIҦ \%#+8w'ML;ZջsIKVO6G| bP@qlk*m^"yB.h%gEE/U W)NS^9]ݩf6#z@Mt BFUwm^Ƒl27f{W<_Np!쟭6 o3.f9W/W4[f%o0r:*5/{y%fE:+wWĄcTmXX<Ļ*>~OjDvtiw۹T USCԘ*Bevv6/UV+3YVf6/TTƹ&}4R1=a[z`cF(3Bto,fh9p3|#T$cI춧CXwLTWKm°B({i?Ui46)c9kTqI8#\^%eGx6hzp-~ jHl4c?>`o M'Pd-w,~XS;.6~J7@#/T?m!Q鶣zǚWg ҊWh~=0Om? ʺm^p)z_+?ņi6S/x$עʯДtiԔ%wԥ^RhJScжQF~CEM$fb[O 3e{ԁ f{V49=皶z q>KD x[j407 (gmĐ#նQtT\6%[.lƂm{ym^" WMBl˶Q/J=ԿQ3:~J^wʳ%&B^R3= LyriQ !tݰ}k&94j'To~ϫU~*r66\ߵ 6m`+mtؾiOPSw\ 6a l't(SPS (nU{6PiЂS6m@K|uOMq_m fO`h:HS^$6ECnðKdeGu\+5l› }N4[z䥑i*ٹ,rwԳSځL4Ehɜ\a:"yvI/vBm @^"e|ôk$ԪLJloiXİdB&~%1/?}u(H1wb:7ghteS0fw> ML\ת#dDht.[.f"(~'/y;"{b[D48T°KbÅ(;l3)\vBooWj=r8Nkm&ߡ|8^3ߝ@SӶAwIa̎#a~B>{ɾ8lzVVd4ǷKi0?>./qן>]աm{VO_Ç?.xq=%;*P$ FwJ7 EߡdE@4/zC<PЦ;P=A[T+a;L}Pc+$p}ZVt5ZRwI)j$#pRzrGȌ LS _ۦ27T.@6=uhҎ{:<=u"˳`t(_ u[N*H g'(YmhJhH/ϚgyF |+!Ej|bWC4p?mdi73hH$EbщV+dN?d]}-*7%RP /z,;bE\V'!Q\uxղ\z(7} E%5KWCAXP!ip vƜ;󂙱rȀ:H`35Ʌep2!&9w\gmKdƾEչ[ 8;Ɍ}V8Oq9`nLFTX9ϥNMcߢBزcdǾՁ1bLPlɐI|ؘHM,+K7ɘb GKzț}KџI dljȗӨ(n7&RQ e&ml{8jSIMw.C^O2moz-U_g<۾EU_P "-n|{*'+G2q+WhyNFVƋ8-̽rF^rH.T;(Jc72z|Z%ӶKސ>]QyŎ2ԩ%DI "zG Sl=|"LbL[X]Er/婞,w\<)IݍS#6&P߲fU58BpLztm_96rJ+!lWX6b%'qoUL.|P᲻!*8ɮ b/ut%x~[p읔ؐP]zPjR -5@u f/x^G@ -Y1o/X+ KCvPwԢ9y;jVCvF}XT inP,=eK!QݚXNBC49}H2E)sDWTd;E@C#'8*_^ݣ0W[skւ=.tD*a hrXb\"ahkΎeSKdV^zC`[O;'UZ~Rskjws# pT*{[*z[ܭ׏ >kv;+hkvF;\'[{-#skpg-x lkrg#41iCl^FHv_h|nL>qb'x'`^pD"|pNO;o/KE4Ϲ{+vS3Vlm|ۥϭދV>(XO[CFT4ؚ pASB3SX?t:+HoBnbѿ{j-ؙ6[G=3_ySfN60?ꭱ|$[;V=_^|О{O,: eoqX}a[dUs㸈qѪn8f{h%$'-A@u8;y[=z7[ /B:&|/`Bָb+-V:f|/[q /`SK֑oq /P$;,i]%ckgry+9,hmIz= s h韎IiS[Λ\M˺.IYV簜u.eeu$[AƐhUK rX:{.zaU@T2[.[>^l:lTB<[/?~|+&r3pu U~AַʅAR駠kIctlk&QkIs䬥ck_BOܬRԝP- }Gck_\:C&SJlNHȎjM!J]#;ýy[s>5 棚$j7 rwSd%> J?w8&Z}Q߱1Ѫpyʅj4\ֳCHn|s{:z=\=yd Ȋi0Ffy4{sc5.[=q/kaޯ\r/48Jz^9Pc91:9W^ј,ͽhpk_ݭ!X[˽aM"M`Cz9 KH [=P6˴Ru\-!\ɦTV~?[IY'%8:=T]Jb^~ٱqcPCv_c''tj:5d:i'([G=P}7h!5$Q˳W?[[:aoVoP ېF]͍uY#[[;aؐHʾ⊹|245MŪ`K3r២ ,m恪v*%w_S:ұԐDiPQb^ t@!JTښ\.A5u57$SbˣvSr5/u4A T|6(!!TP ֲfNvSklˢ=ikV`ubpٚ]}砀%USYoW%8(`\ᷨ*dN[ :έ\ͭ6]of 1R\끭֙Hǵ" q+X`pG!?]uԭշ^[;ujz!\*[5TE.w *|w>Sƌn]Yd;q+o"דm"9&\5juh58֭jpŤVw*v]n ËWGiW-\qҵ/ )d6}>%\g_ykykloIKPo0S9$6YSV-+m@*NStU5 ljyZ]K)R8Xp\mU#\} rPNLǮ'}M]o.nBp&QZߓ\-U5V-1& W/$wuK{ԝU.IS. VYS ܘlQLօ \a"Z5Nv1j<X#MIRNn u˷7:Jc &5ut_LR_?Ç?}uqz+'XAGՖ-:^+T?{6[gSɥ^A6}v6&e;ؕ7ҷ.Gw90G 7ɣYKV)dpPeܐVNuDLBWY︘zB 79PqCru&\$颐e~Uҫ3cp㔻#z{!JG—x:;d!㙣!JGƁxgZr\L'XerC㙃Rt4t<9!z\NsKdl]. whtԹwMmo@Y Q57UZ&yљV0 N5PtlwP=T|!vL.ۖB9VewU!en]Ryz TQli\ 7nY~y91ekwյ\Kٚ]ޚ ͷΛ KR, Y$d[ |2I.Tl]Xlg92)Vguu<`:(aF2F""뵧BȮ/[R/Fl_h>y@gtn?n*ZYFy"dL&5ʻșэ1 '=vϢV5hk"CꇎiX YeH.Oht?_tL^ D.2 !ek!68{O_*񶷦y3A7Od֒%OE.eO"1 +b~<|1| +a1|grL.e.dօ FO/bTk ui%Xy x~ײ1 }jZv!w9&_U˳YpcմXGy<ܮxc>~dzVNz]Luԫq 39^b^W.1/}jx<\k9b:͵gsbdP T$OMןѥ >昩>5N{<{t8(^74 \JUi' nPN^mg\f& tP4DŹ%f;zb?O-g4cKHW/8Sg7k1اxUGSL'Ct+O/;a=/;;VA1֕Jl:=-gecչ(z^3_zfVh}AuK\ЭAdh#kzzdzW2mj|z:H)Akx:RGj|z76\֋3ߧ}I[oY5a/u8O#si hSSftk^ c5&G^r)/i*t^dU1+~\Y\gy˸oYU{2L13~>:&?&˪QEӵ;NGM'i6DR5Ͽ  4ט?x_c|Lm94%+Z5_xL./W14p^ ǬW^ +4c^7bcf+Z5Y̯E:fϗJ)_S)Sǟqʔ)c62ƤǩMDeL{F̈'>S|X1'\DǮ1+N|z)rL6dz׍˃?g=Xs>~ڈsNh;~N4w 1) ˃>y  s-뿐qB7ܿ} d?A%9`PȱV젧Xpc5 ~g4 ~<{+ƩGcA'ŏgYJF> XOR)}ƤхK-1O g!6ն[?0T?i$$B;9 >jhS_R-ngz S3BJrL.d}FЃj?sYZ,%ڱaпc\[ёTrt&wc*vE8g nй!S(P_sp˳mԄqO2;Y2/GA3z*?gޛcbllY-'ɢ|ܼy9Ky<{3CV.>nM3Yc~* }<{3N18/hԒa D4+b+Zq^똎]k9:qU/ܘt>*HJsƔtow7&\E{9U1$;2‡jdńp'b4M`8cf`L{ľ5îR [=`Wծ_|`>c=S8okq~ nY.oֿ|խL7ZnJD.پ5#.?o=nLqO`"MngreTebl_iV//}Umd' cZ&2~~ \hEغluַ&{czqLGƇ )NJ}k0^1WC26ھ5x= >+ۭl s`O`ܞu=)Lߚa$zcvCL[s=`99U.%[w=c+\` v6'o. C[o=~X[`41:<^{yzyPZ|[S=`33d[񊇾uaMdzWAo|'@cW:mpQhRPF\yȍZno==v5:}6+Z=i#Ŀsf6A3ldWv/AC])?}rAJ0IÓ6+ OLeoٙ4o,1&Ta{9頒MN|+}wةafe?;U䠈a8RGF1uDF:jR|T\ƣ:vZoK6la~lk?F#\mA>2W>rrc̖_GANܪ;^i D3נ蘢dRǦ; _ W&;:h9[p5c  Zj|mԳĮdzW蠜5%ɚJxC sbSz+3h4.8\j"˩Km4̞3PpK}9'P#'.x,^w3t^{M=̠?g2"u:eϖ;jYX BF\ >ii6\*" jYޏg5gEf߰'q1<+;7dcmWvw93E%rOk}WJdQIOdcѩt_ٹ#/A]Wv=7Ϡ 9f)ΠnnC+'dwƂ7l WȞ<ºV I/vXt~@6Z0 _t[G0:jX/ }3pE_& e| WL7l>{Sґef0Vhk6O$d\VZ0sZ- }"E-pe_jõV \م9Ղ We6\k`F6sĂ)Wvwk`N}Y Z-ՂiWe6\k`b@HkL /kZsťۮZ09 >9QQѺbs|)4隻We;}"y0Aʾ5w3`@.дI$+:UfLsB6SްOd!w0Q.Xk3ڐpSrR(SԭR(QՂygW|Xf0a Ә?OL/sE-1晢r8ێjډ^{WT4"w`@A{na\ ]=l32~LqV-6pEٍAA\},(h5,YP*'=<΂zvAbs8=]4}CUͮ̎ ީʽg0{ WNQy<7W*\9lOg6fUQ1dz=9e䨔ucu*_vx'Guy<731&n31 gqW 9=)cӗ˟?|/iD$r_ g6 &uLۓrmйpxL˔uR2 keU> MZMSI7P do,D#DBw W.@y&pyh\=)Ft6bQD+eJbM0V Y&淽<y &P%p lVʲ?)aF pa$\*Q₻ +POhTXОLhJ6T)!چvP:\NlцAF}pK &(!% {҆{xDV}ˠRxF^jmCԆ_UR:a`(1߆AYZ#MfnWp&nB;0wɫ'ʖ7A9e6O1AY7ڀ&4~Jd˸o2X'J<k*ф*djM0~ d+h8h*Mx>W4_R,n46Qō&GYG(FpS Gd-/n47U4q ,M*7nuӦ&#_h:))FwÁy7s` 8<~q ]fByB6L$kčMZx@&,(#SmsD۠b> 'uDPOj;)#چa{xDj%t)FYS;KHфMp(FNnkFi &wu/ I &<L\>)+$u^hZ6t<4h6LHJaVjcԧ~ԧ\KPɍ&>u5^ F- # uI%&(Ϩj<)Fx<$%>jr <j»]٥q̓hoZ+r H2n)Fx0Hf) oP cZ[By)X2S߭&loK=P'2ȻK)U%؂L-)eZ0ֵV "ê0V>)y݀CH%Wp$߷VD_R6@I-6dloC*2'rII.߿~OBrF-&RIz/ ;)db2ALf1$4THRAE(w+c{w1SAgyʲ+G.@}WZHX+k/ Wixxrxےe}3R>(IBs'eH[}@F6s3MxM mY"* e|>(ĤrqTdV =y [/@鲚V2[A$&s`ޗd]O9"bRLf! '.II}j)''Ÿ([AQTETP0|(O>"2Qɜ4䉳@ס|Y'QrЗV25 f{Q兕 98-GUp-k$%bH]E -mL,:1wBy,eVXЄh~נZP^9y_*=b?kPmZ5@נʱՊ5e/KPxQ4wJ} u: Ǟ`RsPP"Ky\NQlŲPi$M*  :;QwۥIy &]NZ"<뗟_]s:(2(J?p+D|Pҁ,S.A|Pju嚞R 9Ȧ%xJZ{: <`,~6)b.VROڹqMcˉi2D9."P2k`dw :#[Ge5*%;.e]#:< 'ˤ,>WU*>-^9%xXroԸDžrɲ깺 "&$5iCD,.},+Qd.6%ȡaUxTt#9%-M~:|A#M.8;r{FL{!]pc$]_uɛkWǞ<.QqKVK4,.6]ЗnM{N[ϣH y]h<_ӷ/~<}}~pU[Ľ9 h5i: w!Q=yPc|: O}*9u:rSAXTft$tz2ӻw$MZ %'WרkZyF2ZqN._%`p'c (|>PK.e(2䡏5@%]Pe>An w߉ ۼYT9-ןp?-?9|))/3-P9 aHn-8rA{^ I=i7@V|؟A|w ~ω_.2e BXȕRD~w *7'2Q.aC{:I9N 2k%7aYִ4OnAOzra~D D w(}ۂl\H 5\?KmY x[U7+SNzeY9M(K}*(X:(!%YWG{bI.բ|w6ե[3fz_no%?Dy QJ;,3oQy^>$c E'%*%%Yhω-m*3o~[g#o._fteLoPY*p(K?B3Hw;Em*;[fꮱEPke`e eGY\M^1~?DO,O[?BKĄv/ J m*_x_2ũG|~m)}~16Yʗ?bufX]?"%YP;\DJ${6l/?7F$r)8T*Vmrv9 ت]?QFc@& o`Lt5U_F3 ep*m4`T0}ٮ zݖH.F;)g6>c(씐[ " |ԿO=5eIq>lwaΧn{e15If ] 5+&Am8ih6L*'{WE6M%IpN]NCO>^׷~Oom\FOn]EnZ-tDN5_;2%WTqaw kv`TkkKdïf;^2/ yyo>fZwlIb+ۈ>.$и!!U}qRC!!YM| IYoΖ4pppg|Za s^@?G5q)}6!qn: b# tF}ܾκbh_AI&gm R'6 L+1pFg9qF\-T"0}n8fy@R(qwQs+/򫐅6U!~4!gj6sLj 6_.V*U(KT3>WnߊNu#ޯsY1y&}ܶxKclr QiUx^klC$8G#0呣K#RV`ZsmRL \Ost"3'm}V\~O\ާ[DSZ}ZFWM 5VL'9Z+M%Muj*©[]`O#۷ ˣ'9ylʤAGy#mE=ұQyiRo V}V(֭a~S]nuN<$zy&0n6q"l; 3b-cV Ȧ#U#h5iJ'1* X&<j rŭynhtԌ%4UFt .7X>j5?EjtҤ#f%h2Ԃ t!>n#I;وZiΗ*_ \7# Sr4ÙYIFp.3*W5yWUWK!vZT#ޯRh{Iˉ}6&B;&ޯ#ʅ>Shȕ萋\;oboUyV͟> h߈΍F_1 y:FdCNvF̄;)Nk6w?., ;pRsDbJ*хb@?ΛA w`r_9Oq*?}ێE,y~YJ/|q A?*OO*;-)#zɢ;zC@(gjx)c%a)cͭ*-+Q9KۖE!fXRf1+dÿ΅ؼ}$җGo?>p8'&bY'Ͽ.*\q2Txts59 $hk% $J^>rvl wBѐ)@2% yZ#5 LC̬Kn~Rێ̗1b Z#uP<ĻS߄ jA!wREX]7dH7hMyWz OEM݌+>d,bOs⣐wN.&*PB3)2X)+/ Y7\ XFYd"! 7XF55",'WKnW,4}ނJF:A=dx-Zi$4[X(vbYIafm3/Oj^ nayotA1Dfսɐmb$vevTC*Xm3g䉅8fPUVX> ½<{31-O=cr䢨pcEJV8C)"⛶\w x5S wj٫|mymv1EeuA.ބW0/i\"XrQy=q ,SٰICĉ܉DX_[6NX5и74i m\zf\Q5p^ĠTIh,W%Yms4V1-ZVs%|2g4w6D8i1YUZ܉aqjoU*ID6,ʨ/8 Tˡ~\:zU7w.WD<7V˽n\-G/f GM_]-C [Tn9p*/r`nú-KnT.5;uIT~"Hu.[^zX[d-/M#SH8*]-+MvhZ^v r =!jM^?Vn ub5j=E{u}zm/QJHjWMܾAs=ߔ訄%d6[fyn/H9esٓͰ|_şsWKJ99c/BOjk!Lwr}b#Z`7fLN }CV EڲoyVn_n\+ˣA,f`Vz)kZ ZZi--Z;/wo_T:w8I[o~O|c1M, _FA BR|2а {D_er߀YI&FevߠO<})H'^e{cQcL{a6=el:Wl(dCLrC `H!b6%,㉜v\]6$7NmpaYo룹֝c$w9M 7Z8A-"e> l|{K='Z%'?Su*/?8E6or;jZN5ƲȯRN*!@kb:lˣW&nI,G }C|Ijmt̾$3:w$XVZ[}E:B|F<[ Aj'SPY2غ"bO-S]NR™1f{s p=eYmvN\-~eU%Z}b ZUq4~|o-b :n䉷:\'H"fAce`ALΈXP,6sd}$Y&T+$('-r8v*Uh@xʑ$C:~W)zPžO;h?Ҕo@+5*yMlzUh?N䏷zyc42TN|cF>y|Հ4\ & j䏷X!ˍa#sM۞ѥ_M aIF~VYhU~jD,/ϴkd7K@f {#E- Ű(ryMjA/@n{brq*!LwzjW2- 6uҴ:lv7tP~Tt-buV9،k@j{۪re zjc[*M*oҫܥԀ2D2:=FT*,Vnk7'_cncrUF9~qP;Xԩx T9>~yj:~نD +DKDԝ Ӆ .h,4bo36VE% KPV06 UԀ@5].[SLBUb4<&bV*'TMPPOׇjv:3.(*VjEU׵*j8ivQ  L::QO<4@MmlL7A1\tz4ǚ11CAZAGi&(v킪Fon:]Ԍ}}c7>*tzUne[V5X+wYxivA_IS.]W+ufkW+Wv TRPAEA+S7nT~sUӓn: Mw>^CŒޗV%42N U i&}UbZZjDn wu ivADQ1oULoE'Q;(]:U*覽UE{׺ivQ0WXw*˒vTC:qnuV8Ls7QqO=nz C&Ѐ0{ 1馺,KIC%u+4F- 1hz淡N1I:fJk?5 I' 5` GҔ ,,)*{rzt{aӕ+j|UBWݓ3ҦHKEz=hIL0pwς  :n.)nO_ϲ#`N ȆJ]$ؼ ORi )9wJI*F}7ԉUqiôz/iNs9DF^[".+R;6%2|1f&46^Zz&f1+i^3/rst'0k QZ0Lg7ΩI*$,_ٗgzL|ѽf?ʑ~FϽfVf,]_.yM7ɕZ ~Jm)/A_^Moy[*_]3ř.n`L!_ͼ@.py[.ך(fs[½f%ZuP}5gf05M60+3妻ӗbN]!w'ח*8Z m`͗1^Lq{ tԦkXF5pC;Lɉ͕H=L60UO9a=L]CAQM6@13 m0/6dӭ L7d0 #M﫡ޗ0 aZ~2cJDӦ&ԢOj0Mk&qzEy[^m8~*;qL*AUkSz ?5hʢ&nȥi^BVkV1M䴣õ3-Ci^C3FiZRsGorx3e^tҜː^3/KjeKj4ӊv~ro хN[A /D+(L#XaFl{i@ /ŞbaZ=Њ="tbS,3L'ڰ{$K$Ӌa^b$.AwS$ӎbOYL;Z,H8R;&h@1x];Ş7GF6rOzԍ]7 H5x T@ jLӂdnOu5>y[.)cciDW0r_ȩ0Myb,w&sOu)i0RA>M׵(h%#4]h;ڹ=DC#2M&EɝUmt;M A; i@IЉ4Z{4<^^ LddZgTI)ߜ~jTCt[TmΒXSoҕb11Vrʋ8 |m],a7[zU%(;ۭKĢ}\c>RԀ:M^xvPKK* et'M{߃}#m .EG)lxx[SJ|㡣*%NL (}}J|<{c\we$+)e<~<{)) E<_0'2>i$ oNO*\{]oNl)qdz׾RVoNÇ_~|>)_o_ߴcF:ƍ7xA|H:;nYho0ټX10-U s/,vN\\M洩4f=a/ßן?}{]);`ߗ[@hYŦƁ[QcX <,ayo :sw%c1K.qE~q,zyT.0o̔UH5pH5JT#\[.b2{S+X)w؎ћ;G%<))NiIQՎX_!6'qw"`}6Ħ5ǽ /'LE &yd^ؔ@=`IޣáQh_OSMqMKμ|8,ǧL=?T0?TlȴWpT)|!ǟޮs ͐'x􊑁&8j\{2ѐ,]h^fdǤ{Z/԰VӨ$Oa>b&gq:Rr~/o%S:)`G=8G;ԝxlWL):D⤤7qOw tGh;^; L{dgl?JT:M;%-NܙsNE.F!0W'Fw#9L,N|b~cR!|/?n}t{Hp'8$< ,em{j%]@#5{  ѧ a\kA$aQۃ:&.13H0<20o0ڷzhl]n l/XngiR+8 =bu> ^`eFr19``64܋Z=' ͎?R78߾@O'`4"utyLЍ3ip>DiG!MNch.Xr'GG1lgY*hi\/:ViY<*1, mBC=7!㞀sAI;]lY04 INd(nC=cciOkHG{ʱ|Hw"Ks[ MiC>?pek6?$l6drabMd2ċg3Y)4)[Ey6uȹCb>"WQ&fCjYl8eJ <:ȝۛIbCn>cbom7mGv5כ6$;Mk7m'Lzӆ}'i}洅%KF@nzc>{4$; Qv]lF[ ^ل!wNU0$36: .? aHw"w֨]l>fEXْ0d#4^n0d#tc{@Og3a\yC>a V{_M5;!{S֏z*034w˖ÐN])!u Դ4ØOȪuSdqq<~n6,iݐy8>h 6]0fœ-89i>hY`,{6f[cr-{6uк$Mi_oraKRadc iV9or Y[=VMk4ѿÖ` K݌1yel\= pG>|2`cO]gY㎼:ct"C e-b!ܼӌ>-͆9MuNx&7RyӤƼVz/io_41ͫ kW“4Uh4waVL4IlxvDDYٕ<ޓXzgX[^qƌam+mٕLƿFjEz-a{R̠KˢWp0_X`o>zu>mn;Hw>vгuq `d>IK^ xyk@=b?nmd$pGi$?bDJ`S^znCJ'~_?~2_dnʛp\F8sj.9@@I^0EFocO(=7 RxN.Gr'g!iD` ]/c+H\#V[忍7?HryK:'~c)2@J':>#S@pgI0 a4J$M d 0>*}I&zIg&G/\a _M@J=S%T}ID_)5{YlːVTzZ|08LRC&,qKɚϢ?]_I )Q6@gmI0-"B ?Lx 2.W")|Y݄hU{vm9~;)$3 >\eF9ve\/Lu~HZ`Htb,IBcu1:kM8$|&GU/+RꨥI0'˔9>‡xZq#$饕b˧Z$ : ~C%%7I51߭󬟤>|&'qEÒ2I3ϑ4>|oCP,d.F5#9/,ҰE '<6PH/Q"i+|;9wpWY횓L5.n3;A5GYNA۫:I-\%k:In)%[Hrg_]Yv&͒_`Q [% /8zrW)oH+lQ#ÇeUVWx` WDիľ$/#NpGs$QC&3"5 4 GWqwqGR *"Yl#5b VGw^ADDζH/r8wѫ#AlQWqGK ^uqwi?~M<ݴ ^a+^(9Wqm[~g$WU@` @È,+MB0…ax adi'8Y., 1Yꅵk^\W\@: zItj/7ûH(3[i"I'"Q&Ұ^,9Au~WE}Y]/IRRѓFv^Y(L4<{ gPhtr\X)Waraf yH\Z.,I [En [ffۅ5Ma\ DJnOz]X%غ'g <й_.,)c7e.]tV.,IIAr;,+& D^M(*-۰^Y&<+ EɎ-6ze]춸bPHB޺+KŊTK1w:Z) QZ"^oT wy 픊q!N;d#/_Ooo? PKÔ^OPK%WI& cover.exePK6T, sonar.exePKÔ^O)metadataPK,lz4-2.5.2/fuzz/lz4.go000077500000000000000000000012441364760661600143120ustar00rootroot00000000000000package lz4 import ( "bytes" "github.com/pierrec/lz4" "io" ) // Fuzz function for the Reader and Writer. func Fuzz(data []byte) int { var ( r = bytes.NewReader(data) w = new(bytes.Buffer) pr, pw = io.Pipe() zr = lz4.NewReader(pr) zw = lz4.NewWriter(pw) ) // Compress. go func() { _, err := io.Copy(zw, r) if err != nil { panic(err) } err = zw.Close() if err != nil { panic(err) } err = pw.Close() if err != nil { panic(err) } }() // Decompress. _, err := io.Copy(w, zr) if err != nil { panic(err) } // Check that the data is valid. if !bytes.Equal(data, w.Bytes()) { panic("not equal") } return 1 } lz4-2.5.2/internal/000077500000000000000000000000001364760661600140645ustar00rootroot00000000000000lz4-2.5.2/internal/xxh32/000077500000000000000000000000001364760661600150405ustar00rootroot00000000000000lz4-2.5.2/internal/xxh32/xxh32zero.go000066400000000000000000000116101364760661600172420ustar00rootroot00000000000000// Package xxh32 implements the very fast XXH hashing algorithm (32 bits version). // (https://github.com/Cyan4973/XXH/) package xxh32 import ( "encoding/binary" ) const ( prime1 uint32 = 2654435761 prime2 uint32 = 2246822519 prime3 uint32 = 3266489917 prime4 uint32 = 668265263 prime5 uint32 = 374761393 primeMask = 0xFFFFFFFF prime1plus2 = uint32((uint64(prime1) + uint64(prime2)) & primeMask) // 606290984 prime1minus = uint32((-int64(prime1)) & primeMask) // 1640531535 ) // XXHZero represents an xxhash32 object with seed 0. type XXHZero struct { v1 uint32 v2 uint32 v3 uint32 v4 uint32 totalLen uint64 buf [16]byte bufused int } // Sum appends the current hash to b and returns the resulting slice. // It does not change the underlying hash state. func (xxh XXHZero) Sum(b []byte) []byte { h32 := xxh.Sum32() return append(b, byte(h32), byte(h32>>8), byte(h32>>16), byte(h32>>24)) } // Reset resets the Hash to its initial state. func (xxh *XXHZero) Reset() { xxh.v1 = prime1plus2 xxh.v2 = prime2 xxh.v3 = 0 xxh.v4 = prime1minus xxh.totalLen = 0 xxh.bufused = 0 } // Size returns the number of bytes returned by Sum(). func (xxh *XXHZero) Size() int { return 4 } // BlockSize gives the minimum number of bytes accepted by Write(). func (xxh *XXHZero) BlockSize() int { return 1 } // Write adds input bytes to the Hash. // It never returns an error. func (xxh *XXHZero) Write(input []byte) (int, error) { if xxh.totalLen == 0 { xxh.Reset() } n := len(input) m := xxh.bufused xxh.totalLen += uint64(n) r := len(xxh.buf) - m if n < r { copy(xxh.buf[m:], input) xxh.bufused += len(input) return n, nil } p := 0 // Causes compiler to work directly from registers instead of stack: v1, v2, v3, v4 := xxh.v1, xxh.v2, xxh.v3, xxh.v4 if m > 0 { // some data left from previous update copy(xxh.buf[xxh.bufused:], input[:r]) xxh.bufused += len(input) - r // fast rotl(13) buf := xxh.buf[:16] // BCE hint. v1 = rol13(v1+binary.LittleEndian.Uint32(buf[:])*prime2) * prime1 v2 = rol13(v2+binary.LittleEndian.Uint32(buf[4:])*prime2) * prime1 v3 = rol13(v3+binary.LittleEndian.Uint32(buf[8:])*prime2) * prime1 v4 = rol13(v4+binary.LittleEndian.Uint32(buf[12:])*prime2) * prime1 p = r xxh.bufused = 0 } for n := n - 16; p <= n; p += 16 { sub := input[p:][:16] //BCE hint for compiler v1 = rol13(v1+binary.LittleEndian.Uint32(sub[:])*prime2) * prime1 v2 = rol13(v2+binary.LittleEndian.Uint32(sub[4:])*prime2) * prime1 v3 = rol13(v3+binary.LittleEndian.Uint32(sub[8:])*prime2) * prime1 v4 = rol13(v4+binary.LittleEndian.Uint32(sub[12:])*prime2) * prime1 } xxh.v1, xxh.v2, xxh.v3, xxh.v4 = v1, v2, v3, v4 copy(xxh.buf[xxh.bufused:], input[p:]) xxh.bufused += len(input) - p return n, nil } // Sum32 returns the 32 bits Hash value. func (xxh *XXHZero) Sum32() uint32 { h32 := uint32(xxh.totalLen) if h32 >= 16 { h32 += rol1(xxh.v1) + rol7(xxh.v2) + rol12(xxh.v3) + rol18(xxh.v4) } else { h32 += prime5 } p := 0 n := xxh.bufused buf := xxh.buf for n := n - 4; p <= n; p += 4 { h32 += binary.LittleEndian.Uint32(buf[p:p+4]) * prime3 h32 = rol17(h32) * prime4 } for ; p < n; p++ { h32 += uint32(buf[p]) * prime5 h32 = rol11(h32) * prime1 } h32 ^= h32 >> 15 h32 *= prime2 h32 ^= h32 >> 13 h32 *= prime3 h32 ^= h32 >> 16 return h32 } // ChecksumZero returns the 32bits Hash value. func ChecksumZero(input []byte) uint32 { n := len(input) h32 := uint32(n) if n < 16 { h32 += prime5 } else { v1 := prime1plus2 v2 := prime2 v3 := uint32(0) v4 := prime1minus p := 0 for n := n - 16; p <= n; p += 16 { sub := input[p:][:16] //BCE hint for compiler v1 = rol13(v1+binary.LittleEndian.Uint32(sub[:])*prime2) * prime1 v2 = rol13(v2+binary.LittleEndian.Uint32(sub[4:])*prime2) * prime1 v3 = rol13(v3+binary.LittleEndian.Uint32(sub[8:])*prime2) * prime1 v4 = rol13(v4+binary.LittleEndian.Uint32(sub[12:])*prime2) * prime1 } input = input[p:] n -= p h32 += rol1(v1) + rol7(v2) + rol12(v3) + rol18(v4) } p := 0 for n := n - 4; p <= n; p += 4 { h32 += binary.LittleEndian.Uint32(input[p:p+4]) * prime3 h32 = rol17(h32) * prime4 } for p < n { h32 += uint32(input[p]) * prime5 h32 = rol11(h32) * prime1 p++ } h32 ^= h32 >> 15 h32 *= prime2 h32 ^= h32 >> 13 h32 *= prime3 h32 ^= h32 >> 16 return h32 } // Uint32Zero hashes x with seed 0. func Uint32Zero(x uint32) uint32 { h := prime5 + 4 + x*prime3 h = rol17(h) * prime4 h ^= h >> 15 h *= prime2 h ^= h >> 13 h *= prime3 h ^= h >> 16 return h } func rol1(u uint32) uint32 { return u<<1 | u>>31 } func rol7(u uint32) uint32 { return u<<7 | u>>25 } func rol11(u uint32) uint32 { return u<<11 | u>>21 } func rol12(u uint32) uint32 { return u<<12 | u>>20 } func rol13(u uint32) uint32 { return u<<13 | u>>19 } func rol17(u uint32) uint32 { return u<<17 | u>>15 } func rol18(u uint32) uint32 { return u<<18 | u>>14 } lz4-2.5.2/internal/xxh32/xxh32zero_test.go000066400000000000000000000062051364760661600203050ustar00rootroot00000000000000package xxh32_test import ( "encoding/binary" "hash/crc32" "hash/fnv" "testing" qt "github.com/frankban/quicktest" "github.com/pierrec/lz4/internal/xxh32" ) type test struct { sum uint32 data string } var testdata = []test{ {0x02cc5d05, ""}, {0x550d7456, "a"}, {0x4999fc53, "ab"}, {0x32d153ff, "abc"}, {0xa3643705, "abcd"}, {0x9738f19b, "abcde"}, {0x8b7cd587, "abcdef"}, {0x9dd093b3, "abcdefg"}, {0x0bb3c6bb, "abcdefgh"}, {0xd03c13fd, "abcdefghi"}, {0x8b988cfe, "abcdefghij"}, {0x9d2d8b62, "abcdefghijklmnop"}, {0x42ae804d, "abcdefghijklmnopqrstuvwxyz0123456789"}, {0x62b4ed00, "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."}, } func TestZeroBlockSize(t *testing.T) { var xxh xxh32.XXHZero if s := xxh.BlockSize(); s <= 0 { t.Errorf("invalid BlockSize: %d", s) } } func TestZeroSize(t *testing.T) { var xxh xxh32.XXHZero if s := xxh.Size(); s != 4 { t.Errorf("invalid Size: got %d expected 4", s) } } func TestZeroData(t *testing.T) { c := qt.New(t) for _, td := range testdata { var xxh xxh32.XXHZero data := []byte(td.data) _, _ = xxh.Write(data) c.Assert(xxh.Sum32(), qt.Equals, td.sum) c.Assert(xxh32.ChecksumZero(data), qt.Equals, td.sum) } } func TestZeroSplitData(t *testing.T) { c := qt.New(t) for _, td := range testdata { var xxh xxh32.XXHZero data := []byte(td.data) l := len(data) / 2 _, _ = xxh.Write(data[0:l]) _, _ = xxh.Write(data[l:]) c.Assert(xxh.Sum32(), qt.Equals, td.sum) } } func TestZeroSum(t *testing.T) { c := qt.New(t) for _, td := range testdata { var xxh xxh32.XXHZero data := []byte(td.data) _, _ = xxh.Write(data) b := xxh.Sum(data) h := binary.LittleEndian.Uint32(b[len(data):]) c.Assert(h, qt.Equals, td.sum) } } func TestZeroChecksum(t *testing.T) { c := qt.New(t) for _, td := range testdata { data := []byte(td.data) h := xxh32.ChecksumZero(data) c.Assert(h, qt.Equals, td.sum) } } func TestZeroReset(t *testing.T) { c := qt.New(t) var xxh xxh32.XXHZero for _, td := range testdata { _, _ = xxh.Write([]byte(td.data)) h := xxh.Sum32() c.Assert(h, qt.Equals, td.sum) xxh.Reset() } } /////////////////////////////////////////////////////////////////////////////// // Benchmarks // var testdata1 = []byte(testdata[len(testdata)-1].data) func Benchmark_XXH32(b *testing.B) { var h xxh32.XXHZero for n := 0; n < b.N; n++ { _, _ = h.Write(testdata1) h.Sum32() h.Reset() } } func Benchmark_XXH32_Checksum(b *testing.B) { for n := 0; n < b.N; n++ { xxh32.ChecksumZero(testdata1) } } func Benchmark_CRC32(b *testing.B) { t := crc32.MakeTable(0) for i := 0; i < b.N; i++ { crc32.Checksum(testdata1, t) } } func Benchmark_Fnv32(b *testing.B) { h := fnv.New32() for i := 0; i < b.N; i++ { _, _ = h.Write(testdata1) h.Sum32() h.Reset() } } lz4-2.5.2/lz4.go000066400000000000000000000075501364760661600133170ustar00rootroot00000000000000// Package lz4 implements reading and writing lz4 compressed data (a frame), // as specified in http://fastcompression.blogspot.fr/2013/04/lz4-streaming-format-final.html. // // Although the block level compression and decompression functions are exposed and are fully compatible // with the lz4 block format definition, they are low level and should not be used directly. // For a complete description of an lz4 compressed block, see: // http://fastcompression.blogspot.fr/2011/05/lz4-explained.html // // See https://github.com/Cyan4973/lz4 for the reference C implementation. // package lz4 import "math/bits" import "sync" const ( // Extension is the LZ4 frame file name extension Extension = ".lz4" // Version is the LZ4 frame format version Version = 1 frameMagic uint32 = 0x184D2204 frameSkipMagic uint32 = 0x184D2A50 // The following constants are used to setup the compression algorithm. minMatch = 4 // the minimum size of the match sequence size (4 bytes) winSizeLog = 16 // LZ4 64Kb window size limit winSize = 1 << winSizeLog winMask = winSize - 1 // 64Kb window of previous data for dependent blocks compressedBlockFlag = 1 << 31 compressedBlockMask = compressedBlockFlag - 1 // hashLog determines the size of the hash table used to quickly find a previous match position. // Its value influences the compression speed and memory usage, the lower the faster, // but at the expense of the compression ratio. // 16 seems to be the best compromise for fast compression. hashLog = 16 htSize = 1 << hashLog mfLimit = 10 + minMatch // The last match cannot start within the last 14 bytes. ) // map the block max size id with its value in bytes: 64Kb, 256Kb, 1Mb and 4Mb. const ( blockSize64K = 1 << (16 + 2*iota) blockSize256K blockSize1M blockSize4M ) var ( // Keep a pool of buffers for each valid block sizes. bsMapValue = [...]*sync.Pool{ newBufferPool(2 * blockSize64K), newBufferPool(2 * blockSize256K), newBufferPool(2 * blockSize1M), newBufferPool(2 * blockSize4M), } ) // newBufferPool returns a pool for buffers of the given size. func newBufferPool(size int) *sync.Pool { return &sync.Pool{ New: func() interface{} { return make([]byte, size) }, } } // getBuffer returns a buffer to its pool. func getBuffer(size int) []byte { idx := blockSizeValueToIndex(size) - 4 return bsMapValue[idx].Get().([]byte) } // putBuffer returns a buffer to its pool. func putBuffer(size int, buf []byte) { if cap(buf) > 0 { idx := blockSizeValueToIndex(size) - 4 bsMapValue[idx].Put(buf[:cap(buf)]) } } func blockSizeIndexToValue(i byte) int { return 1 << (16 + 2*uint(i)) } func isValidBlockSize(size int) bool { const blockSizeMask = blockSize64K | blockSize256K | blockSize1M | blockSize4M return size&blockSizeMask > 0 && bits.OnesCount(uint(size)) == 1 } func blockSizeValueToIndex(size int) byte { return 4 + byte(bits.TrailingZeros(uint(size)>>16)/2) } // Header describes the various flags that can be set on a Writer or obtained from a Reader. // The default values match those of the LZ4 frame format definition // (http://fastcompression.blogspot.com/2013/04/lz4-streaming-format-final.html). // // NB. in a Reader, in case of concatenated frames, the Header values may change between Read() calls. // It is the caller's responsibility to check them if necessary. type Header struct { BlockChecksum bool // Compressed blocks checksum flag. NoChecksum bool // Frame checksum flag. BlockMaxSize int // Size of the uncompressed data block (one of [64KB, 256KB, 1MB, 4MB]). Default=4MB. Size uint64 // Frame total size. It is _not_ computed by the Writer. CompressionLevel int // Compression level (higher is better, use 0 for fastest compression). done bool // Header processed flag (Read or Write and checked). } func (h *Header) Reset() { h.done = false } lz4-2.5.2/lz4_go1.10.go000066400000000000000000000010161364760661600142730ustar00rootroot00000000000000//+build go1.10 package lz4 import ( "fmt" "strings" ) func (h Header) String() string { var s strings.Builder s.WriteString(fmt.Sprintf("%T{", h)) if h.BlockChecksum { s.WriteString("BlockChecksum: true ") } if h.NoChecksum { s.WriteString("NoChecksum: true ") } if bs := h.BlockMaxSize; bs != 0 && bs != 4<<20 { s.WriteString(fmt.Sprintf("BlockMaxSize: %d ", bs)) } if l := h.CompressionLevel; l != 0 { s.WriteString(fmt.Sprintf("CompressionLevel: %d ", l)) } s.WriteByte('}') return s.String() } lz4-2.5.2/lz4_notgo1.10.go000066400000000000000000000010121364760661600150100ustar00rootroot00000000000000//+build !go1.10 package lz4 import ( "bytes" "fmt" ) func (h Header) String() string { var s bytes.Buffer s.WriteString(fmt.Sprintf("%T{", h)) if h.BlockChecksum { s.WriteString("BlockChecksum: true ") } if h.NoChecksum { s.WriteString("NoChecksum: true ") } if bs := h.BlockMaxSize; bs != 0 && bs != 4<<20 { s.WriteString(fmt.Sprintf("BlockMaxSize: %d ", bs)) } if l := h.CompressionLevel; l != 0 { s.WriteString(fmt.Sprintf("CompressionLevel: %d ", l)) } s.WriteByte('}') return s.String() } lz4-2.5.2/reader.go000066400000000000000000000203461364760661600140460ustar00rootroot00000000000000package lz4 import ( "encoding/binary" "fmt" "io" "io/ioutil" "github.com/pierrec/lz4/internal/xxh32" ) // Reader implements the LZ4 frame decoder. // The Header is set after the first call to Read(). // The Header may change between Read() calls in case of concatenated frames. type Reader struct { Header // Handler called when a block has been successfully read. // It provides the number of bytes read. OnBlockDone func(size int) buf [8]byte // Scrap buffer. pos int64 // Current position in src. src io.Reader // Source. zdata []byte // Compressed data. data []byte // Uncompressed data. idx int // Index of unread bytes into data. checksum xxh32.XXHZero // Frame hash. skip int64 // Bytes to skip before next read. dpos int64 // Position in dest } // NewReader returns a new LZ4 frame decoder. // No access to the underlying io.Reader is performed. func NewReader(src io.Reader) *Reader { r := &Reader{src: src} return r } // readHeader checks the frame magic number and parses the frame descriptoz. // Skippable frames are supported even as a first frame although the LZ4 // specifications recommends skippable frames not to be used as first frames. func (z *Reader) readHeader(first bool) error { defer z.checksum.Reset() buf := z.buf[:] for { magic, err := z.readUint32() if err != nil { z.pos += 4 if !first && err == io.ErrUnexpectedEOF { return io.EOF } return err } if magic == frameMagic { break } if magic>>8 != frameSkipMagic>>8 { return ErrInvalid } skipSize, err := z.readUint32() if err != nil { return err } z.pos += 4 m, err := io.CopyN(ioutil.Discard, z.src, int64(skipSize)) if err != nil { return err } z.pos += m } // Header. if _, err := io.ReadFull(z.src, buf[:2]); err != nil { return err } z.pos += 8 b := buf[0] if v := b >> 6; v != Version { return fmt.Errorf("lz4: invalid version: got %d; expected %d", v, Version) } if b>>5&1 == 0 { return ErrBlockDependency } z.BlockChecksum = b>>4&1 > 0 frameSize := b>>3&1 > 0 z.NoChecksum = b>>2&1 == 0 bmsID := buf[1] >> 4 & 0x7 if bmsID < 4 || bmsID > 7 { return fmt.Errorf("lz4: invalid block max size ID: %d", bmsID) } bSize := blockSizeIndexToValue(bmsID - 4) z.BlockMaxSize = bSize // Allocate the compressed/uncompressed buffers. // The compressed buffer cannot exceed the uncompressed one. if n := 2 * bSize; cap(z.zdata) < n { z.zdata = make([]byte, n, n) } if debugFlag { debug("header block max size id=%d size=%d", bmsID, bSize) } z.zdata = z.zdata[:bSize] z.data = z.zdata[:cap(z.zdata)][bSize:] z.idx = len(z.data) _, _ = z.checksum.Write(buf[0:2]) if frameSize { buf := buf[:8] if _, err := io.ReadFull(z.src, buf); err != nil { return err } z.Size = binary.LittleEndian.Uint64(buf) z.pos += 8 _, _ = z.checksum.Write(buf) } // Header checksum. if _, err := io.ReadFull(z.src, buf[:1]); err != nil { return err } z.pos++ if h := byte(z.checksum.Sum32() >> 8 & 0xFF); h != buf[0] { return fmt.Errorf("lz4: invalid header checksum: got %x; expected %x", buf[0], h) } z.Header.done = true if debugFlag { debug("header read: %v", z.Header) } return nil } // Read decompresses data from the underlying source into the supplied buffer. // // Since there can be multiple streams concatenated, Header values may // change between calls to Read(). If that is the case, no data is actually read from // the underlying io.Reader, to allow for potential input buffer resizing. func (z *Reader) Read(buf []byte) (int, error) { if debugFlag { debug("Read buf len=%d", len(buf)) } if !z.Header.done { if err := z.readHeader(true); err != nil { return 0, err } if debugFlag { debug("header read OK compressed buffer %d / %d uncompressed buffer %d : %d index=%d", len(z.zdata), cap(z.zdata), len(z.data), cap(z.data), z.idx) } } if len(buf) == 0 { return 0, nil } if z.idx == len(z.data) { // No data ready for reading, process the next block. if debugFlag { debug("reading block from writer") } // Reset uncompressed buffer z.data = z.zdata[:cap(z.zdata)][len(z.zdata):] // Block length: 0 = end of frame, highest bit set: uncompressed. bLen, err := z.readUint32() if err != nil { return 0, err } z.pos += 4 if bLen == 0 { // End of frame reached. if !z.NoChecksum { // Validate the frame checksum. checksum, err := z.readUint32() if err != nil { return 0, err } if debugFlag { debug("frame checksum got=%x / want=%x", z.checksum.Sum32(), checksum) } z.pos += 4 if h := z.checksum.Sum32(); checksum != h { return 0, fmt.Errorf("lz4: invalid frame checksum: got %x; expected %x", h, checksum) } } // Get ready for the next concatenated frame and keep the position. pos := z.pos z.Reset(z.src) z.pos = pos // Since multiple frames can be concatenated, check for more. return 0, z.readHeader(false) } if debugFlag { debug("raw block size %d", bLen) } if bLen&compressedBlockFlag > 0 { // Uncompressed block. bLen &= compressedBlockMask if debugFlag { debug("uncompressed block size %d", bLen) } if int(bLen) > cap(z.data) { return 0, fmt.Errorf("lz4: invalid block size: %d", bLen) } z.data = z.data[:bLen] if _, err := io.ReadFull(z.src, z.data); err != nil { return 0, err } z.pos += int64(bLen) if z.OnBlockDone != nil { z.OnBlockDone(int(bLen)) } if z.BlockChecksum { checksum, err := z.readUint32() if err != nil { return 0, err } z.pos += 4 if h := xxh32.ChecksumZero(z.data); h != checksum { return 0, fmt.Errorf("lz4: invalid block checksum: got %x; expected %x", h, checksum) } } } else { // Compressed block. if debugFlag { debug("compressed block size %d", bLen) } if int(bLen) > cap(z.data) { return 0, fmt.Errorf("lz4: invalid block size: %d", bLen) } zdata := z.zdata[:bLen] if _, err := io.ReadFull(z.src, zdata); err != nil { return 0, err } z.pos += int64(bLen) if z.BlockChecksum { checksum, err := z.readUint32() if err != nil { return 0, err } z.pos += 4 if h := xxh32.ChecksumZero(zdata); h != checksum { return 0, fmt.Errorf("lz4: invalid block checksum: got %x; expected %x", h, checksum) } } n, err := UncompressBlock(zdata, z.data) if err != nil { return 0, err } z.data = z.data[:n] if z.OnBlockDone != nil { z.OnBlockDone(n) } } if !z.NoChecksum { _, _ = z.checksum.Write(z.data) if debugFlag { debug("current frame checksum %x", z.checksum.Sum32()) } } z.idx = 0 } if z.skip > int64(len(z.data[z.idx:])) { z.skip -= int64(len(z.data[z.idx:])) z.dpos += int64(len(z.data[z.idx:])) z.idx = len(z.data) return 0, nil } z.idx += int(z.skip) z.dpos += z.skip z.skip = 0 n := copy(buf, z.data[z.idx:]) z.idx += n z.dpos += int64(n) if debugFlag { debug("copied %d bytes to input", n) } return n, nil } // Seek implements io.Seeker, but supports seeking forward from the current // position only. Any other seek will return an error. Allows skipping output // bytes which aren't needed, which in some scenarios is faster than reading // and discarding them. // Note this may cause future calls to Read() to read 0 bytes if all of the // data they would have returned is skipped. func (z *Reader) Seek(offset int64, whence int) (int64, error) { if offset < 0 || whence != io.SeekCurrent { return z.dpos + z.skip, ErrUnsupportedSeek } z.skip += offset return z.dpos + z.skip, nil } // Reset discards the Reader's state and makes it equivalent to the // result of its original state from NewReader, but reading from r instead. // This permits reusing a Reader rather than allocating a new one. func (z *Reader) Reset(r io.Reader) { z.Header = Header{} z.pos = 0 z.src = r z.zdata = z.zdata[:0] z.data = z.data[:0] z.idx = 0 z.checksum.Reset() } // readUint32 reads an uint32 into the supplied buffer. // The idea is to make use of the already allocated buffers avoiding additional allocations. func (z *Reader) readUint32() (uint32, error) { buf := z.buf[:4] _, err := io.ReadFull(z.src, buf) x := binary.LittleEndian.Uint32(buf) return x, err } lz4-2.5.2/reader_test.go000066400000000000000000000046641364760661600151120ustar00rootroot00000000000000package lz4_test import ( "bytes" "io" "io/ioutil" "os" "reflect" "strings" "testing" "github.com/pierrec/lz4" ) func TestReader(t *testing.T) { goldenFiles := []string{ "testdata/e.txt.lz4", "testdata/gettysburg.txt.lz4", "testdata/Mark.Twain-Tom.Sawyer.txt.lz4", "testdata/Mark.Twain-Tom.Sawyer_long.txt.lz4", "testdata/pg1661.txt.lz4", "testdata/pi.txt.lz4", "testdata/random.data.lz4", "testdata/repeat.txt.lz4", "testdata/pg_control.tar.lz4", } for _, fname := range goldenFiles { t.Run(fname, func(t *testing.T) { fname := fname t.Parallel() f, err := os.Open(fname) if err != nil { t.Fatal(err) } defer f.Close() rawfile := strings.TrimSuffix(fname, ".lz4") raw, err := ioutil.ReadFile(rawfile) if err != nil { t.Fatal(err) } var out bytes.Buffer zr := lz4.NewReader(f) n, err := io.Copy(&out, zr) if err != nil { t.Fatal(err) } if got, want := int(n), len(raw); got != want { t.Errorf("invalid sizes: got %d; want %d", got, want) } if got, want := out.Bytes(), raw; !reflect.DeepEqual(got, want) { t.Fatal("uncompressed data does not match original") } if len(raw) < 20 { return } f2, err := os.Open(fname) if err != nil { t.Fatal(err) } defer f2.Close() out.Reset() zr = lz4.NewReader(f2) _, err = io.CopyN(&out, zr, 10) if err != nil { t.Fatal(err) } if !reflect.DeepEqual(out.Bytes(), raw[:10]) { t.Fatal("partial read does not match original") } pos, err := zr.Seek(-1, io.SeekCurrent) if err == nil { t.Fatal("expected error from invalid seek") } if pos != 10 { t.Fatalf("unexpected position %d", pos) } pos, err = zr.Seek(1, io.SeekStart) if err == nil { t.Fatal("expected error from invalid seek") } if pos != 10 { t.Fatalf("unexpected position %d", pos) } pos, err = zr.Seek(-1, io.SeekEnd) if err == nil { t.Fatal("expected error from invalid seek") } if pos != 10 { t.Fatalf("unexpected position %d", pos) } pos, err = zr.Seek(int64(len(raw)-20), io.SeekCurrent) if err != nil { t.Fatal(err) } if pos != int64(len(raw)-10) { t.Fatalf("unexpected position %d", pos) } out.Reset() _, err = io.CopyN(&out, zr, 10) if err != nil { t.Fatal(err) } if !reflect.DeepEqual(out.Bytes(), raw[len(raw)-10:]) { t.Fatal("after seek, partial read does not match original") } }) } } lz4-2.5.2/testdata/000077500000000000000000000000001364760661600140615ustar00rootroot00000000000000lz4-2.5.2/testdata/Mark.Twain-Tom.Sawyer.txt000066400000000000000000013654131364760661600206200ustar00rootroot00000000000000Produced by David Widger. The previous edition was updated by Jose Menendez. THE ADVENTURES OF TOM SAWYER BY MARK TWAIN (Samuel Langhorne Clemens) P R E F A C E MOST of the adventures recorded in this book really occurred; one or two were experiences of my own, the rest those of boys who were schoolmates of mine. Huck Finn is drawn from life; Tom Sawyer also, but not from an individual--he is a combination of the characteristics of three boys whom I knew, and therefore belongs to the composite order of architecture. The odd superstitions touched upon were all prevalent among children and slaves in the West at the period of this story--that is to say, thirty or forty years ago. Although my book is intended mainly for the entertainment of boys and girls, I hope it will not be shunned by men and women on that account, for part of my plan has been to try to pleasantly remind adults of what they once were themselves, and of how they felt and thought and talked, and what queer enterprises they sometimes engaged in. THE AUTHOR. HARTFORD, 1876. T O M S A W Y E R CHAPTER I "TOM!" No answer. "TOM!" No answer. "What's gone with that boy, I wonder? You TOM!" No answer. The old lady pulled her spectacles down and looked over them about the room; then she put them up and looked out under them. She seldom or never looked THROUGH them for so small a thing as a boy; they were her state pair, the pride of her heart, and were built for "style," not service--she could have seen through a pair of stove-lids just as well. She looked perplexed for a moment, and then said, not fiercely, but still loud enough for the furniture to hear: "Well, I lay if I get hold of you I'll--" She did not finish, for by this time she was bending down and punching under the bed with the broom, and so she needed breath to punctuate the punches with. She resurrected nothing but the cat. "I never did see the beat of that boy!" She went to the open door and stood in it and looked out among the tomato vines and "jimpson" weeds that constituted the garden. No Tom. So she lifted up her voice at an angle calculated for distance and shouted: "Y-o-u-u TOM!" There was a slight noise behind her and she turned just in time to seize a small boy by the slack of his roundabout and arrest his flight. "There! I might 'a' thought of that closet. What you been doing in there?" "Nothing." "Nothing! Look at your hands. And look at your mouth. What IS that truck?" "I don't know, aunt." "Well, I know. It's jam--that's what it is. Forty times I've said if you didn't let that jam alone I'd skin you. Hand me that switch." The switch hovered in the air--the peril was desperate-- "My! Look behind you, aunt!" The old lady whirled round, and snatched her skirts out of danger. The lad fled on the instant, scrambled up the high board-fence, and disappeared over it. His aunt Polly stood surprised a moment, and then broke into a gentle laugh. "Hang the boy, can't I never learn anything? Ain't he played me tricks enough like that for me to be looking out for him by this time? But old fools is the biggest fools there is. Can't learn an old dog new tricks, as the saying is. But my goodness, he never plays them alike, two days, and how is a body to know what's coming? He 'pears to know just how long he can torment me before I get my dander up, and he knows if he can make out to put me off for a minute or make me laugh, it's all down again and I can't hit him a lick. I ain't doing my duty by that boy, and that's the Lord's truth, goodness knows. Spare the rod and spile the child, as the Good Book says. I'm a laying up sin and suffering for us both, I know. He's full of the Old Scratch, but laws-a-me! he's my own dead sister's boy, poor thing, and I ain't got the heart to lash him, somehow. Every time I let him off, my conscience does hurt me so, and every time I hit him my old heart most breaks. Well-a-well, man that is born of woman is of few days and full of trouble, as the Scripture says, and I reckon it's so. He'll play hookey this evening, * and [* Southwestern for "afternoon"] I'll just be obleeged to make him work, to-morrow, to punish him. It's mighty hard to make him work Saturdays, when all the boys is having holiday, but he hates work more than he hates anything else, and I've GOT to do some of my duty by him, or I'll be the ruination of the child." Tom did play hookey, and he had a very good time. He got back home barely in season to help Jim, the small colored boy, saw next-day's wood and split the kindlings before supper--at least he was there in time to tell his adventures to Jim while Jim did three-fourths of the work. Tom's younger brother (or rather half-brother) Sid was already through with his part of the work (picking up chips), for he was a quiet boy, and had no adventurous, troublesome ways. While Tom was eating his supper, and stealing sugar as opportunity offered, Aunt Polly asked him questions that were full of guile, and very deep--for she wanted to trap him into damaging revealments. Like many other simple-hearted souls, it was her pet vanity to believe she was endowed with a talent for dark and mysterious diplomacy, and she loved to contemplate her most transparent devices as marvels of low cunning. Said she: "Tom, it was middling warm in school, warn't it?" "Yes'm." "Powerful warm, warn't it?" "Yes'm." "Didn't you want to go in a-swimming, Tom?" A bit of a scare shot through Tom--a touch of uncomfortable suspicion. He searched Aunt Polly's face, but it told him nothing. So he said: "No'm--well, not very much." The old lady reached out her hand and felt Tom's shirt, and said: "But you ain't too warm now, though." And it flattered her to reflect that she had discovered that the shirt was dry without anybody knowing that that was what she had in her mind. But in spite of her, Tom knew where the wind lay, now. So he forestalled what might be the next move: "Some of us pumped on our heads--mine's damp yet. See?" Aunt Polly was vexed to think she had overlooked that bit of circumstantial evidence, and missed a trick. Then she had a new inspiration: "Tom, you didn't have to undo your shirt collar where I sewed it, to pump on your head, did you? Unbutton your jacket!" The trouble vanished out of Tom's face. He opened his jacket. His shirt collar was securely sewed. "Bother! Well, go 'long with you. I'd made sure you'd played hookey and been a-swimming. But I forgive ye, Tom. I reckon you're a kind of a singed cat, as the saying is--better'n you look. THIS time." She was half sorry her sagacity had miscarried, and half glad that Tom had stumbled into obedient conduct for once. But Sidney said: "Well, now, if I didn't think you sewed his collar with white thread, but it's black." "Why, I did sew it with white! Tom!" But Tom did not wait for the rest. As he went out at the door he said: "Siddy, I'll lick you for that." In a safe place Tom examined two large needles which were thrust into the lapels of his jacket, and had thread bound about them--one needle carried white thread and the other black. He said: "She'd never noticed if it hadn't been for Sid. Confound it! sometimes she sews it with white, and sometimes she sews it with black. I wish to geeminy she'd stick to one or t'other--I can't keep the run of 'em. But I bet you I'll lam Sid for that. I'll learn him!" He was not the Model Boy of the village. He knew the model boy very well though--and loathed him. Within two minutes, or even less, he had forgotten all his troubles. Not because his troubles were one whit less heavy and bitter to him than a man's are to a man, but because a new and powerful interest bore them down and drove them out of his mind for the time--just as men's misfortunes are forgotten in the excitement of new enterprises. This new interest was a valued novelty in whistling, which he had just acquired from a negro, and he was suffering to practise it undisturbed. It consisted in a peculiar bird-like turn, a sort of liquid warble, produced by touching the tongue to the roof of the mouth at short intervals in the midst of the music--the reader probably remembers how to do it, if he has ever been a boy. Diligence and attention soon gave him the knack of it, and he strode down the street with his mouth full of harmony and his soul full of gratitude. He felt much as an astronomer feels who has discovered a new planet--no doubt, as far as strong, deep, unalloyed pleasure is concerned, the advantage was with the boy, not the astronomer. The summer evenings were long. It was not dark, yet. Presently Tom checked his whistle. A stranger was before him--a boy a shade larger than himself. A new-comer of any age or either sex was an impressive curiosity in the poor little shabby village of St. Petersburg. This boy was well dressed, too--well dressed on a week-day. This was simply astounding. His cap was a dainty thing, his close-buttoned blue cloth roundabout was new and natty, and so were his pantaloons. He had shoes on--and it was only Friday. He even wore a necktie, a bright bit of ribbon. He had a citified air about him that ate into Tom's vitals. The more Tom stared at the splendid marvel, the higher he turned up his nose at his finery and the shabbier and shabbier his own outfit seemed to him to grow. Neither boy spoke. If one moved, the other moved--but only sidewise, in a circle; they kept face to face and eye to eye all the time. Finally Tom said: "I can lick you!" "I'd like to see you try it." "Well, I can do it." "No you can't, either." "Yes I can." "No you can't." "I can." "You can't." "Can!" "Can't!" An uncomfortable pause. Then Tom said: "What's your name?" "'Tisn't any of your business, maybe." "Well I 'low I'll MAKE it my business." "Well why don't you?" "If you say much, I will." "Much--much--MUCH. There now." "Oh, you think you're mighty smart, DON'T you? I could lick you with one hand tied behind me, if I wanted to." "Well why don't you DO it? You SAY you can do it." "Well I WILL, if you fool with me." "Oh yes--I've seen whole families in the same fix." "Smarty! You think you're SOME, now, DON'T you? Oh, what a hat!" "You can lump that hat if you don't like it. I dare you to knock it off--and anybody that'll take a dare will suck eggs." "You're a liar!" "You're another." "You're a fighting liar and dasn't take it up." "Aw--take a walk!" "Say--if you give me much more of your sass I'll take and bounce a rock off'n your head." "Oh, of COURSE you will." "Well I WILL." "Well why don't you DO it then? What do you keep SAYING you will for? Why don't you DO it? It's because you're afraid." "I AIN'T afraid." "You are." "I ain't." "You are." Another pause, and more eying and sidling around each other. Presently they were shoulder to shoulder. Tom said: "Get away from here!" "Go away yourself!" "I won't." "I won't either." So they stood, each with a foot placed at an angle as a brace, and both shoving with might and main, and glowering at each other with hate. But neither could get an advantage. After struggling till both were hot and flushed, each relaxed his strain with watchful caution, and Tom said: "You're a coward and a pup. I'll tell my big brother on you, and he can thrash you with his little finger, and I'll make him do it, too." "What do I care for your big brother? I've got a brother that's bigger than he is--and what's more, he can throw him over that fence, too." [Both brothers were imaginary.] "That's a lie." "YOUR saying so don't make it so." Tom drew a line in the dust with his big toe, and said: "I dare you to step over that, and I'll lick you till you can't stand up. Anybody that'll take a dare will steal sheep." The new boy stepped over promptly, and said: "Now you said you'd do it, now let's see you do it." "Don't you crowd me now; you better look out." "Well, you SAID you'd do it--why don't you do it?" "By jingo! for two cents I WILL do it." The new boy took two broad coppers out of his pocket and held them out with derision. Tom struck them to the ground. In an instant both boys were rolling and tumbling in the dirt, gripped together like cats; and for the space of a minute they tugged and tore at each other's hair and clothes, punched and scratched each other's nose, and covered themselves with dust and glory. Presently the confusion took form, and through the fog of battle Tom appeared, seated astride the new boy, and pounding him with his fists. "Holler 'nuff!" said he. The boy only struggled to free himself. He was crying--mainly from rage. "Holler 'nuff!"--and the pounding went on. At last the stranger got out a smothered "'Nuff!" and Tom let him up and said: "Now that'll learn you. Better look out who you're fooling with next time." The new boy went off brushing the dust from his clothes, sobbing, snuffling, and occasionally looking back and shaking his head and threatening what he would do to Tom the "next time he caught him out." To which Tom responded with jeers, and started off in high feather, and as soon as his back was turned the new boy snatched up a stone, threw it and hit him between the shoulders and then turned tail and ran like an antelope. Tom chased the traitor home, and thus found out where he lived. He then held a position at the gate for some time, daring the enemy to come outside, but the enemy only made faces at him through the window and declined. At last the enemy's mother appeared, and called Tom a bad, vicious, vulgar child, and ordered him away. So he went away; but he said he "'lowed" to "lay" for that boy. He got home pretty late that night, and when he climbed cautiously in at the window, he uncovered an ambuscade, in the person of his aunt; and when she saw the state his clothes were in her resolution to turn his Saturday holiday into captivity at hard labor became adamantine in its firmness. CHAPTER II SATURDAY morning was come, and all the summer world was bright and fresh, and brimming with life. There was a song in every heart; and if the heart was young the music issued at the lips. There was cheer in every face and a spring in every step. The locust-trees were in bloom and the fragrance of the blossoms filled the air. Cardiff Hill, beyond the village and above it, was green with vegetation and it lay just far enough away to seem a Delectable Land, dreamy, reposeful, and inviting. Tom appeared on the sidewalk with a bucket of whitewash and a long-handled brush. He surveyed the fence, and all gladness left him and a deep melancholy settled down upon his spirit. Thirty yards of board fence nine feet high. Life to him seemed hollow, and existence but a burden. Sighing, he dipped his brush and passed it along the topmost plank; repeated the operation; did it again; compared the insignificant whitewashed streak with the far-reaching continent of unwhitewashed fence, and sat down on a tree-box discouraged. Jim came skipping out at the gate with a tin pail, and singing Buffalo Gals. Bringing water from the town pump had always been hateful work in Tom's eyes, before, but now it did not strike him so. He remembered that there was company at the pump. White, mulatto, and negro boys and girls were always there waiting their turns, resting, trading playthings, quarrelling, fighting, skylarking. And he remembered that although the pump was only a hundred and fifty yards off, Jim never got back with a bucket of water under an hour--and even then somebody generally had to go after him. Tom said: "Say, Jim, I'll fetch the water if you'll whitewash some." Jim shook his head and said: "Can't, Mars Tom. Ole missis, she tole me I got to go an' git dis water an' not stop foolin' roun' wid anybody. She say she spec' Mars Tom gwine to ax me to whitewash, an' so she tole me go 'long an' 'tend to my own business--she 'lowed SHE'D 'tend to de whitewashin'." "Oh, never you mind what she said, Jim. That's the way she always talks. Gimme the bucket--I won't be gone only a a minute. SHE won't ever know." "Oh, I dasn't, Mars Tom. Ole missis she'd take an' tar de head off'n me. 'Deed she would." "SHE! She never licks anybody--whacks 'em over the head with her thimble--and who cares for that, I'd like to know. She talks awful, but talk don't hurt--anyways it don't if she don't cry. Jim, I'll give you a marvel. I'll give you a white alley!" Jim began to waver. "White alley, Jim! And it's a bully taw." "My! Dat's a mighty gay marvel, I tell you! But Mars Tom I's powerful 'fraid ole missis--" "And besides, if you will I'll show you my sore toe." Jim was only human--this attraction was too much for him. He put down his pail, took the white alley, and bent over the toe with absorbing interest while the bandage was being unwound. In another moment he was flying down the street with his pail and a tingling rear, Tom was whitewashing with vigor, and Aunt Polly was retiring from the field with a slipper in her hand and triumph in her eye. But Tom's energy did not last. He began to think of the fun he had planned for this day, and his sorrows multiplied. Soon the free boys would come tripping along on all sorts of delicious expeditions, and they would make a world of fun of him for having to work--the very thought of it burnt him like fire. He got out his worldly wealth and examined it--bits of toys, marbles, and trash; enough to buy an exchange of WORK, maybe, but not half enough to buy so much as half an hour of pure freedom. So he returned his straitened means to his pocket, and gave up the idea of trying to buy the boys. At this dark and hopeless moment an inspiration burst upon him! Nothing less than a great, magnificent inspiration. He took up his brush and went tranquilly to work. Ben Rogers hove in sight presently--the very boy, of all boys, whose ridicule he had been dreading. Ben's gait was the hop-skip-and-jump--proof enough that his heart was light and his anticipations high. He was eating an apple, and giving a long, melodious whoop, at intervals, followed by a deep-toned ding-dong-dong, ding-dong-dong, for he was personating a steamboat. As he drew near, he slackened speed, took the middle of the street, leaned far over to starboard and rounded to ponderously and with laborious pomp and circumstance--for he was personating the Big Missouri, and considered himself to be drawing nine feet of water. He was boat and captain and engine-bells combined, so he had to imagine himself standing on his own hurricane-deck giving the orders and executing them: "Stop her, sir! Ting-a-ling-ling!" The headway ran almost out, and he drew up slowly toward the sidewalk. "Ship up to back! Ting-a-ling-ling!" His arms straightened and stiffened down his sides. "Set her back on the stabboard! Ting-a-ling-ling! Chow! ch-chow-wow! Chow!" His right hand, meantime, describing stately circles--for it was representing a forty-foot wheel. "Let her go back on the labboard! Ting-a-lingling! Chow-ch-chow-chow!" The left hand began to describe circles. "Stop the stabboard! Ting-a-ling-ling! Stop the labboard! Come ahead on the stabboard! Stop her! Let your outside turn over slow! Ting-a-ling-ling! Chow-ow-ow! Get out that head-line! LIVELY now! Come--out with your spring-line--what're you about there! Take a turn round that stump with the bight of it! Stand by that stage, now--let her go! Done with the engines, sir! Ting-a-ling-ling! SH'T! S'H'T! SH'T!" (trying the gauge-cocks). Tom went on whitewashing--paid no attention to the steamboat. Ben stared a moment and then said: "Hi-YI! YOU'RE up a stump, ain't you!" No answer. Tom surveyed his last touch with the eye of an artist, then he gave his brush another gentle sweep and surveyed the result, as before. Ben ranged up alongside of him. Tom's mouth watered for the apple, but he stuck to his work. Ben said: "Hello, old chap, you got to work, hey?" Tom wheeled suddenly and said: "Why, it's you, Ben! I warn't noticing." "Say--I'm going in a-swimming, I am. Don't you wish you could? But of course you'd druther WORK--wouldn't you? Course you would!" Tom contemplated the boy a bit, and said: "What do you call work?" "Why, ain't THAT work?" Tom resumed his whitewashing, and answered carelessly: "Well, maybe it is, and maybe it ain't. All I know, is, it suits Tom Sawyer." "Oh come, now, you don't mean to let on that you LIKE it?" The brush continued to move. "Like it? Well, I don't see why I oughtn't to like it. Does a boy get a chance to whitewash a fence every day?" That put the thing in a new light. Ben stopped nibbling his apple. Tom swept his brush daintily back and forth--stepped back to note the effect--added a touch here and there--criticised the effect again--Ben watching every move and getting more and more interested, more and more absorbed. Presently he said: "Say, Tom, let ME whitewash a little." Tom considered, was about to consent; but he altered his mind: "No--no--I reckon it wouldn't hardly do, Ben. You see, Aunt Polly's awful particular about this fence--right here on the street, you know --but if it was the back fence I wouldn't mind and SHE wouldn't. Yes, she's awful particular about this fence; it's got to be done very careful; I reckon there ain't one boy in a thousand, maybe two thousand, that can do it the way it's got to be done." "No--is that so? Oh come, now--lemme just try. Only just a little--I'd let YOU, if you was me, Tom." "Ben, I'd like to, honest injun; but Aunt Polly--well, Jim wanted to do it, but she wouldn't let him; Sid wanted to do it, and she wouldn't let Sid. Now don't you see how I'm fixed? If you was to tackle this fence and anything was to happen to it--" "Oh, shucks, I'll be just as careful. Now lemme try. Say--I'll give you the core of my apple." "Well, here--No, Ben, now don't. I'm afeard--" "I'll give you ALL of it!" Tom gave up the brush with reluctance in his face, but alacrity in his heart. And while the late steamer Big Missouri worked and sweated in the sun, the retired artist sat on a barrel in the shade close by, dangled his legs, munched his apple, and planned the slaughter of more innocents. There was no lack of material; boys happened along every little while; they came to jeer, but remained to whitewash. By the time Ben was fagged out, Tom had traded the next chance to Billy Fisher for a kite, in good repair; and when he played out, Johnny Miller bought in for a dead rat and a string to swing it with--and so on, and so on, hour after hour. And when the middle of the afternoon came, from being a poor poverty-stricken boy in the morning, Tom was literally rolling in wealth. He had besides the things before mentioned, twelve marbles, part of a jews-harp, a piece of blue bottle-glass to look through, a spool cannon, a key that wouldn't unlock anything, a fragment of chalk, a glass stopper of a decanter, a tin soldier, a couple of tadpoles, six fire-crackers, a kitten with only one eye, a brass doorknob, a dog-collar--but no dog--the handle of a knife, four pieces of orange-peel, and a dilapidated old window sash. He had had a nice, good, idle time all the while--plenty of company --and the fence had three coats of whitewash on it! If he hadn't run out of whitewash he would have bankrupted every boy in the village. Tom said to himself that it was not such a hollow world, after all. He had discovered a great law of human action, without knowing it--namely, that in order to make a man or a boy covet a thing, it is only necessary to make the thing difficult to attain. If he had been a great and wise philosopher, like the writer of this book, he would now have comprehended that Work consists of whatever a body is OBLIGED to do, and that Play consists of whatever a body is not obliged to do. And this would help him to understand why constructing artificial flowers or performing on a tread-mill is work, while rolling ten-pins or climbing Mont Blanc is only amusement. There are wealthy gentlemen in England who drive four-horse passenger-coaches twenty or thirty miles on a daily line, in the summer, because the privilege costs them considerable money; but if they were offered wages for the service, that would turn it into work and then they would resign. The boy mused awhile over the substantial change which had taken place in his worldly circumstances, and then wended toward headquarters to report. CHAPTER III TOM presented himself before Aunt Polly, who was sitting by an open window in a pleasant rearward apartment, which was bedroom, breakfast-room, dining-room, and library, combined. The balmy summer air, the restful quiet, the odor of the flowers, and the drowsing murmur of the bees had had their effect, and she was nodding over her knitting --for she had no company but the cat, and it was asleep in her lap. Her spectacles were propped up on her gray head for safety. She had thought that of course Tom had deserted long ago, and she wondered at seeing him place himself in her power again in this intrepid way. He said: "Mayn't I go and play now, aunt?" "What, a'ready? How much have you done?" "It's all done, aunt." "Tom, don't lie to me--I can't bear it." "I ain't, aunt; it IS all done." Aunt Polly placed small trust in such evidence. She went out to see for herself; and she would have been content to find twenty per cent. of Tom's statement true. When she found the entire fence whitewashed, and not only whitewashed but elaborately coated and recoated, and even a streak added to the ground, her astonishment was almost unspeakable. She said: "Well, I never! There's no getting round it, you can work when you're a mind to, Tom." And then she diluted the compliment by adding, "But it's powerful seldom you're a mind to, I'm bound to say. Well, go 'long and play; but mind you get back some time in a week, or I'll tan you." She was so overcome by the splendor of his achievement that she took him into the closet and selected a choice apple and delivered it to him, along with an improving lecture upon the added value and flavor a treat took to itself when it came without sin through virtuous effort. And while she closed with a happy Scriptural flourish, he "hooked" a doughnut. Then he skipped out, and saw Sid just starting up the outside stairway that led to the back rooms on the second floor. Clods were handy and the air was full of them in a twinkling. They raged around Sid like a hail-storm; and before Aunt Polly could collect her surprised faculties and sally to the rescue, six or seven clods had taken personal effect, and Tom was over the fence and gone. There was a gate, but as a general thing he was too crowded for time to make use of it. His soul was at peace, now that he had settled with Sid for calling attention to his black thread and getting him into trouble. Tom skirted the block, and came round into a muddy alley that led by the back of his aunt's cow-stable. He presently got safely beyond the reach of capture and punishment, and hastened toward the public square of the village, where two "military" companies of boys had met for conflict, according to previous appointment. Tom was General of one of these armies, Joe Harper (a bosom friend) General of the other. These two great commanders did not condescend to fight in person--that being better suited to the still smaller fry--but sat together on an eminence and conducted the field operations by orders delivered through aides-de-camp. Tom's army won a great victory, after a long and hard-fought battle. Then the dead were counted, prisoners exchanged, the terms of the next disagreement agreed upon, and the day for the necessary battle appointed; after which the armies fell into line and marched away, and Tom turned homeward alone. As he was passing by the house where Jeff Thatcher lived, he saw a new girl in the garden--a lovely little blue-eyed creature with yellow hair plaited into two long-tails, white summer frock and embroidered pantalettes. The fresh-crowned hero fell without firing a shot. A certain Amy Lawrence vanished out of his heart and left not even a memory of herself behind. He had thought he loved her to distraction; he had regarded his passion as adoration; and behold it was only a poor little evanescent partiality. He had been months winning her; she had confessed hardly a week ago; he had been the happiest and the proudest boy in the world only seven short days, and here in one instant of time she had gone out of his heart like a casual stranger whose visit is done. He worshipped this new angel with furtive eye, till he saw that she had discovered him; then he pretended he did not know she was present, and began to "show off" in all sorts of absurd boyish ways, in order to win her admiration. He kept up this grotesque foolishness for some time; but by-and-by, while he was in the midst of some dangerous gymnastic performances, he glanced aside and saw that the little girl was wending her way toward the house. Tom came up to the fence and leaned on it, grieving, and hoping she would tarry yet awhile longer. She halted a moment on the steps and then moved toward the door. Tom heaved a great sigh as she put her foot on the threshold. But his face lit up, right away, for she tossed a pansy over the fence a moment before she disappeared. The boy ran around and stopped within a foot or two of the flower, and then shaded his eyes with his hand and began to look down street as if he had discovered something of interest going on in that direction. Presently he picked up a straw and began trying to balance it on his nose, with his head tilted far back; and as he moved from side to side, in his efforts, he edged nearer and nearer toward the pansy; finally his bare foot rested upon it, his pliant toes closed upon it, and he hopped away with the treasure and disappeared round the corner. But only for a minute--only while he could button the flower inside his jacket, next his heart--or next his stomach, possibly, for he was not much posted in anatomy, and not hypercritical, anyway. He returned, now, and hung about the fence till nightfall, "showing off," as before; but the girl never exhibited herself again, though Tom comforted himself a little with the hope that she had been near some window, meantime, and been aware of his attentions. Finally he strode home reluctantly, with his poor head full of visions. All through supper his spirits were so high that his aunt wondered "what had got into the child." He took a good scolding about clodding Sid, and did not seem to mind it in the least. He tried to steal sugar under his aunt's very nose, and got his knuckles rapped for it. He said: "Aunt, you don't whack Sid when he takes it." "Well, Sid don't torment a body the way you do. You'd be always into that sugar if I warn't watching you." Presently she stepped into the kitchen, and Sid, happy in his immunity, reached for the sugar-bowl--a sort of glorying over Tom which was wellnigh unbearable. But Sid's fingers slipped and the bowl dropped and broke. Tom was in ecstasies. In such ecstasies that he even controlled his tongue and was silent. He said to himself that he would not speak a word, even when his aunt came in, but would sit perfectly still till she asked who did the mischief; and then he would tell, and there would be nothing so good in the world as to see that pet model "catch it." He was so brimful of exultation that he could hardly hold himself when the old lady came back and stood above the wreck discharging lightnings of wrath from over her spectacles. He said to himself, "Now it's coming!" And the next instant he was sprawling on the floor! The potent palm was uplifted to strike again when Tom cried out: "Hold on, now, what 'er you belting ME for?--Sid broke it!" Aunt Polly paused, perplexed, and Tom looked for healing pity. But when she got her tongue again, she only said: "Umf! Well, you didn't get a lick amiss, I reckon. You been into some other audacious mischief when I wasn't around, like enough." Then her conscience reproached her, and she yearned to say something kind and loving; but she judged that this would be construed into a confession that she had been in the wrong, and discipline forbade that. So she kept silence, and went about her affairs with a troubled heart. Tom sulked in a corner and exalted his woes. He knew that in her heart his aunt was on her knees to him, and he was morosely gratified by the consciousness of it. He would hang out no signals, he would take notice of none. He knew that a yearning glance fell upon him, now and then, through a film of tears, but he refused recognition of it. He pictured himself lying sick unto death and his aunt bending over him beseeching one little forgiving word, but he would turn his face to the wall, and die with that word unsaid. Ah, how would she feel then? And he pictured himself brought home from the river, dead, with his curls all wet, and his sore heart at rest. How she would throw herself upon him, and how her tears would fall like rain, and her lips pray God to give her back her boy and she would never, never abuse him any more! But he would lie there cold and white and make no sign--a poor little sufferer, whose griefs were at an end. He so worked upon his feelings with the pathos of these dreams, that he had to keep swallowing, he was so like to choke; and his eyes swam in a blur of water, which overflowed when he winked, and ran down and trickled from the end of his nose. And such a luxury to him was this petting of his sorrows, that he could not bear to have any worldly cheeriness or any grating delight intrude upon it; it was too sacred for such contact; and so, presently, when his cousin Mary danced in, all alive with the joy of seeing home again after an age-long visit of one week to the country, he got up and moved in clouds and darkness out at one door as she brought song and sunshine in at the other. He wandered far from the accustomed haunts of boys, and sought desolate places that were in harmony with his spirit. A log raft in the river invited him, and he seated himself on its outer edge and contemplated the dreary vastness of the stream, wishing, the while, that he could only be drowned, all at once and unconsciously, without undergoing the uncomfortable routine devised by nature. Then he thought of his flower. He got it out, rumpled and wilted, and it mightily increased his dismal felicity. He wondered if she would pity him if she knew? Would she cry, and wish that she had a right to put her arms around his neck and comfort him? Or would she turn coldly away like all the hollow world? This picture brought such an agony of pleasurable suffering that he worked it over and over again in his mind and set it up in new and varied lights, till he wore it threadbare. At last he rose up sighing and departed in the darkness. About half-past nine or ten o'clock he came along the deserted street to where the Adored Unknown lived; he paused a moment; no sound fell upon his listening ear; a candle was casting a dull glow upon the curtain of a second-story window. Was the sacred presence there? He climbed the fence, threaded his stealthy way through the plants, till he stood under that window; he looked up at it long, and with emotion; then he laid him down on the ground under it, disposing himself upon his back, with his hands clasped upon his breast and holding his poor wilted flower. And thus he would die--out in the cold world, with no shelter over his homeless head, no friendly hand to wipe the death-damps from his brow, no loving face to bend pityingly over him when the great agony came. And thus SHE would see him when she looked out upon the glad morning, and oh! would she drop one little tear upon his poor, lifeless form, would she heave one little sigh to see a bright young life so rudely blighted, so untimely cut down? The window went up, a maid-servant's discordant voice profaned the holy calm, and a deluge of water drenched the prone martyr's remains! The strangling hero sprang up with a relieving snort. There was a whiz as of a missile in the air, mingled with the murmur of a curse, a sound as of shivering glass followed, and a small, vague form went over the fence and shot away in the gloom. Not long after, as Tom, all undressed for bed, was surveying his drenched garments by the light of a tallow dip, Sid woke up; but if he had any dim idea of making any "references to allusions," he thought better of it and held his peace, for there was danger in Tom's eye. Tom turned in without the added vexation of prayers, and Sid made mental note of the omission. CHAPTER IV THE sun rose upon a tranquil world, and beamed down upon the peaceful village like a benediction. Breakfast over, Aunt Polly had family worship: it began with a prayer built from the ground up of solid courses of Scriptural quotations, welded together with a thin mortar of originality; and from the summit of this she delivered a grim chapter of the Mosaic Law, as from Sinai. Then Tom girded up his loins, so to speak, and went to work to "get his verses." Sid had learned his lesson days before. Tom bent all his energies to the memorizing of five verses, and he chose part of the Sermon on the Mount, because he could find no verses that were shorter. At the end of half an hour Tom had a vague general idea of his lesson, but no more, for his mind was traversing the whole field of human thought, and his hands were busy with distracting recreations. Mary took his book to hear him recite, and he tried to find his way through the fog: "Blessed are the--a--a--" "Poor"-- "Yes--poor; blessed are the poor--a--a--" "In spirit--" "In spirit; blessed are the poor in spirit, for they--they--" "THEIRS--" "For THEIRS. Blessed are the poor in spirit, for theirs is the kingdom of heaven. Blessed are they that mourn, for they--they--" "Sh--" "For they--a--" "S, H, A--" "For they S, H--Oh, I don't know what it is!" "SHALL!" "Oh, SHALL! for they shall--for they shall--a--a--shall mourn--a--a-- blessed are they that shall--they that--a--they that shall mourn, for they shall--a--shall WHAT? Why don't you tell me, Mary?--what do you want to be so mean for?" "Oh, Tom, you poor thick-headed thing, I'm not teasing you. I wouldn't do that. You must go and learn it again. Don't you be discouraged, Tom, you'll manage it--and if you do, I'll give you something ever so nice. There, now, that's a good boy." "All right! What is it, Mary, tell me what it is." "Never you mind, Tom. You know if I say it's nice, it is nice." "You bet you that's so, Mary. All right, I'll tackle it again." And he did "tackle it again"--and under the double pressure of curiosity and prospective gain he did it with such spirit that he accomplished a shining success. Mary gave him a brand-new "Barlow" knife worth twelve and a half cents; and the convulsion of delight that swept his system shook him to his foundations. True, the knife would not cut anything, but it was a "sure-enough" Barlow, and there was inconceivable grandeur in that--though where the Western boys ever got the idea that such a weapon could possibly be counterfeited to its injury is an imposing mystery and will always remain so, perhaps. Tom contrived to scarify the cupboard with it, and was arranging to begin on the bureau, when he was called off to dress for Sunday-school. Mary gave him a tin basin of water and a piece of soap, and he went outside the door and set the basin on a little bench there; then he dipped the soap in the water and laid it down; turned up his sleeves; poured out the water on the ground, gently, and then entered the kitchen and began to wipe his face diligently on the towel behind the door. But Mary removed the towel and said: "Now ain't you ashamed, Tom. You mustn't be so bad. Water won't hurt you." Tom was a trifle disconcerted. The basin was refilled, and this time he stood over it a little while, gathering resolution; took in a big breath and began. When he entered the kitchen presently, with both eyes shut and groping for the towel with his hands, an honorable testimony of suds and water was dripping from his face. But when he emerged from the towel, he was not yet satisfactory, for the clean territory stopped short at his chin and his jaws, like a mask; below and beyond this line there was a dark expanse of unirrigated soil that spread downward in front and backward around his neck. Mary took him in hand, and when she was done with him he was a man and a brother, without distinction of color, and his saturated hair was neatly brushed, and its short curls wrought into a dainty and symmetrical general effect. [He privately smoothed out the curls, with labor and difficulty, and plastered his hair close down to his head; for he held curls to be effeminate, and his own filled his life with bitterness.] Then Mary got out a suit of his clothing that had been used only on Sundays during two years--they were simply called his "other clothes"--and so by that we know the size of his wardrobe. The girl "put him to rights" after he had dressed himself; she buttoned his neat roundabout up to his chin, turned his vast shirt collar down over his shoulders, brushed him off and crowned him with his speckled straw hat. He now looked exceedingly improved and uncomfortable. He was fully as uncomfortable as he looked; for there was a restraint about whole clothes and cleanliness that galled him. He hoped that Mary would forget his shoes, but the hope was blighted; she coated them thoroughly with tallow, as was the custom, and brought them out. He lost his temper and said he was always being made to do everything he didn't want to do. But Mary said, persuasively: "Please, Tom--that's a good boy." So he got into the shoes snarling. Mary was soon ready, and the three children set out for Sunday-school--a place that Tom hated with his whole heart; but Sid and Mary were fond of it. Sabbath-school hours were from nine to half-past ten; and then church service. Two of the children always remained for the sermon voluntarily, and the other always remained too--for stronger reasons. The church's high-backed, uncushioned pews would seat about three hundred persons; the edifice was but a small, plain affair, with a sort of pine board tree-box on top of it for a steeple. At the door Tom dropped back a step and accosted a Sunday-dressed comrade: "Say, Billy, got a yaller ticket?" "Yes." "What'll you take for her?" "What'll you give?" "Piece of lickrish and a fish-hook." "Less see 'em." Tom exhibited. They were satisfactory, and the property changed hands. Then Tom traded a couple of white alleys for three red tickets, and some small trifle or other for a couple of blue ones. He waylaid other boys as they came, and went on buying tickets of various colors ten or fifteen minutes longer. He entered the church, now, with a swarm of clean and noisy boys and girls, proceeded to his seat and started a quarrel with the first boy that came handy. The teacher, a grave, elderly man, interfered; then turned his back a moment and Tom pulled a boy's hair in the next bench, and was absorbed in his book when the boy turned around; stuck a pin in another boy, presently, in order to hear him say "Ouch!" and got a new reprimand from his teacher. Tom's whole class were of a pattern--restless, noisy, and troublesome. When they came to recite their lessons, not one of them knew his verses perfectly, but had to be prompted all along. However, they worried through, and each got his reward--in small blue tickets, each with a passage of Scripture on it; each blue ticket was pay for two verses of the recitation. Ten blue tickets equalled a red one, and could be exchanged for it; ten red tickets equalled a yellow one; for ten yellow tickets the superintendent gave a very plainly bound Bible (worth forty cents in those easy times) to the pupil. How many of my readers would have the industry and application to memorize two thousand verses, even for a Dore Bible? And yet Mary had acquired two Bibles in this way--it was the patient work of two years--and a boy of German parentage had won four or five. He once recited three thousand verses without stopping; but the strain upon his mental faculties was too great, and he was little better than an idiot from that day forth--a grievous misfortune for the school, for on great occasions, before company, the superintendent (as Tom expressed it) had always made this boy come out and "spread himself." Only the older pupils managed to keep their tickets and stick to their tedious work long enough to get a Bible, and so the delivery of one of these prizes was a rare and noteworthy circumstance; the successful pupil was so great and conspicuous for that day that on the spot every scholar's heart was fired with a fresh ambition that often lasted a couple of weeks. It is possible that Tom's mental stomach had never really hungered for one of those prizes, but unquestionably his entire being had for many a day longed for the glory and the eclat that came with it. In due course the superintendent stood up in front of the pulpit, with a closed hymn-book in his hand and his forefinger inserted between its leaves, and commanded attention. When a Sunday-school superintendent makes his customary little speech, a hymn-book in the hand is as necessary as is the inevitable sheet of music in the hand of a singer who stands forward on the platform and sings a solo at a concert --though why, is a mystery: for neither the hymn-book nor the sheet of music is ever referred to by the sufferer. This superintendent was a slim creature of thirty-five, with a sandy goatee and short sandy hair; he wore a stiff standing-collar whose upper edge almost reached his ears and whose sharp points curved forward abreast the corners of his mouth--a fence that compelled a straight lookout ahead, and a turning of the whole body when a side view was required; his chin was propped on a spreading cravat which was as broad and as long as a bank-note, and had fringed ends; his boot toes were turned sharply up, in the fashion of the day, like sleigh-runners--an effect patiently and laboriously produced by the young men by sitting with their toes pressed against a wall for hours together. Mr. Walters was very earnest of mien, and very sincere and honest at heart; and he held sacred things and places in such reverence, and so separated them from worldly matters, that unconsciously to himself his Sunday-school voice had acquired a peculiar intonation which was wholly absent on week-days. He began after this fashion: "Now, children, I want you all to sit up just as straight and pretty as you can and give me all your attention for a minute or two. There --that is it. That is the way good little boys and girls should do. I see one little girl who is looking out of the window--I am afraid she thinks I am out there somewhere--perhaps up in one of the trees making a speech to the little birds. [Applausive titter.] I want to tell you how good it makes me feel to see so many bright, clean little faces assembled in a place like this, learning to do right and be good." And so forth and so on. It is not necessary to set down the rest of the oration. It was of a pattern which does not vary, and so it is familiar to us all. The latter third of the speech was marred by the resumption of fights and other recreations among certain of the bad boys, and by fidgetings and whisperings that extended far and wide, washing even to the bases of isolated and incorruptible rocks like Sid and Mary. But now every sound ceased suddenly, with the subsidence of Mr. Walters' voice, and the conclusion of the speech was received with a burst of silent gratitude. A good part of the whispering had been occasioned by an event which was more or less rare--the entrance of visitors: lawyer Thatcher, accompanied by a very feeble and aged man; a fine, portly, middle-aged gentleman with iron-gray hair; and a dignified lady who was doubtless the latter's wife. The lady was leading a child. Tom had been restless and full of chafings and repinings; conscience-smitten, too--he could not meet Amy Lawrence's eye, he could not brook her loving gaze. But when he saw this small new-comer his soul was all ablaze with bliss in a moment. The next moment he was "showing off" with all his might --cuffing boys, pulling hair, making faces--in a word, using every art that seemed likely to fascinate a girl and win her applause. His exaltation had but one alloy--the memory of his humiliation in this angel's garden--and that record in sand was fast washing out, under the waves of happiness that were sweeping over it now. The visitors were given the highest seat of honor, and as soon as Mr. Walters' speech was finished, he introduced them to the school. The middle-aged man turned out to be a prodigious personage--no less a one than the county judge--altogether the most august creation these children had ever looked upon--and they wondered what kind of material he was made of--and they half wanted to hear him roar, and were half afraid he might, too. He was from Constantinople, twelve miles away--so he had travelled, and seen the world--these very eyes had looked upon the county court-house--which was said to have a tin roof. The awe which these reflections inspired was attested by the impressive silence and the ranks of staring eyes. This was the great Judge Thatcher, brother of their own lawyer. Jeff Thatcher immediately went forward, to be familiar with the great man and be envied by the school. It would have been music to his soul to hear the whisperings: "Look at him, Jim! He's a going up there. Say--look! he's a going to shake hands with him--he IS shaking hands with him! By jings, don't you wish you was Jeff?" Mr. Walters fell to "showing off," with all sorts of official bustlings and activities, giving orders, delivering judgments, discharging directions here, there, everywhere that he could find a target. The librarian "showed off"--running hither and thither with his arms full of books and making a deal of the splutter and fuss that insect authority delights in. The young lady teachers "showed off" --bending sweetly over pupils that were lately being boxed, lifting pretty warning fingers at bad little boys and patting good ones lovingly. The young gentlemen teachers "showed off" with small scoldings and other little displays of authority and fine attention to discipline--and most of the teachers, of both sexes, found business up at the library, by the pulpit; and it was business that frequently had to be done over again two or three times (with much seeming vexation). The little girls "showed off" in various ways, and the little boys "showed off" with such diligence that the air was thick with paper wads and the murmur of scufflings. And above it all the great man sat and beamed a majestic judicial smile upon all the house, and warmed himself in the sun of his own grandeur--for he was "showing off," too. There was only one thing wanting to make Mr. Walters' ecstasy complete, and that was a chance to deliver a Bible-prize and exhibit a prodigy. Several pupils had a few yellow tickets, but none had enough --he had been around among the star pupils inquiring. He would have given worlds, now, to have that German lad back again with a sound mind. And now at this moment, when hope was dead, Tom Sawyer came forward with nine yellow tickets, nine red tickets, and ten blue ones, and demanded a Bible. This was a thunderbolt out of a clear sky. Walters was not expecting an application from this source for the next ten years. But there was no getting around it--here were the certified checks, and they were good for their face. Tom was therefore elevated to a place with the Judge and the other elect, and the great news was announced from headquarters. It was the most stunning surprise of the decade, and so profound was the sensation that it lifted the new hero up to the judicial one's altitude, and the school had two marvels to gaze upon in place of one. The boys were all eaten up with envy--but those that suffered the bitterest pangs were those who perceived too late that they themselves had contributed to this hated splendor by trading tickets to Tom for the wealth he had amassed in selling whitewashing privileges. These despised themselves, as being the dupes of a wily fraud, a guileful snake in the grass. The prize was delivered to Tom with as much effusion as the superintendent could pump up under the circumstances; but it lacked somewhat of the true gush, for the poor fellow's instinct taught him that there was a mystery here that could not well bear the light, perhaps; it was simply preposterous that this boy had warehoused two thousand sheaves of Scriptural wisdom on his premises--a dozen would strain his capacity, without a doubt. Amy Lawrence was proud and glad, and she tried to make Tom see it in her face--but he wouldn't look. She wondered; then she was just a grain troubled; next a dim suspicion came and went--came again; she watched; a furtive glance told her worlds--and then her heart broke, and she was jealous, and angry, and the tears came and she hated everybody. Tom most of all (she thought). Tom was introduced to the Judge; but his tongue was tied, his breath would hardly come, his heart quaked--partly because of the awful greatness of the man, but mainly because he was her parent. He would have liked to fall down and worship him, if it were in the dark. The Judge put his hand on Tom's head and called him a fine little man, and asked him what his name was. The boy stammered, gasped, and got it out: "Tom." "Oh, no, not Tom--it is--" "Thomas." "Ah, that's it. I thought there was more to it, maybe. That's very well. But you've another one I daresay, and you'll tell it to me, won't you?" "Tell the gentleman your other name, Thomas," said Walters, "and say sir. You mustn't forget your manners." "Thomas Sawyer--sir." "That's it! That's a good boy. Fine boy. Fine, manly little fellow. Two thousand verses is a great many--very, very great many. And you never can be sorry for the trouble you took to learn them; for knowledge is worth more than anything there is in the world; it's what makes great men and good men; you'll be a great man and a good man yourself, some day, Thomas, and then you'll look back and say, It's all owing to the precious Sunday-school privileges of my boyhood--it's all owing to my dear teachers that taught me to learn--it's all owing to the good superintendent, who encouraged me, and watched over me, and gave me a beautiful Bible--a splendid elegant Bible--to keep and have it all for my own, always--it's all owing to right bringing up! That is what you will say, Thomas--and you wouldn't take any money for those two thousand verses--no indeed you wouldn't. And now you wouldn't mind telling me and this lady some of the things you've learned--no, I know you wouldn't--for we are proud of little boys that learn. Now, no doubt you know the names of all the twelve disciples. Won't you tell us the names of the first two that were appointed?" Tom was tugging at a button-hole and looking sheepish. He blushed, now, and his eyes fell. Mr. Walters' heart sank within him. He said to himself, it is not possible that the boy can answer the simplest question--why DID the Judge ask him? Yet he felt obliged to speak up and say: "Answer the gentleman, Thomas--don't be afraid." Tom still hung fire. "Now I know you'll tell me," said the lady. "The names of the first two disciples were--" "DAVID AND GOLIAH!" Let us draw the curtain of charity over the rest of the scene. CHAPTER V ABOUT half-past ten the cracked bell of the small church began to ring, and presently the people began to gather for the morning sermon. The Sunday-school children distributed themselves about the house and occupied pews with their parents, so as to be under supervision. Aunt Polly came, and Tom and Sid and Mary sat with her--Tom being placed next the aisle, in order that he might be as far away from the open window and the seductive outside summer scenes as possible. The crowd filed up the aisles: the aged and needy postmaster, who had seen better days; the mayor and his wife--for they had a mayor there, among other unnecessaries; the justice of the peace; the widow Douglass, fair, smart, and forty, a generous, good-hearted soul and well-to-do, her hill mansion the only palace in the town, and the most hospitable and much the most lavish in the matter of festivities that St. Petersburg could boast; the bent and venerable Major and Mrs. Ward; lawyer Riverson, the new notable from a distance; next the belle of the village, followed by a troop of lawn-clad and ribbon-decked young heart-breakers; then all the young clerks in town in a body--for they had stood in the vestibule sucking their cane-heads, a circling wall of oiled and simpering admirers, till the last girl had run their gantlet; and last of all came the Model Boy, Willie Mufferson, taking as heedful care of his mother as if she were cut glass. He always brought his mother to church, and was the pride of all the matrons. The boys all hated him, he was so good. And besides, he had been "thrown up to them" so much. His white handkerchief was hanging out of his pocket behind, as usual on Sundays--accidentally. Tom had no handkerchief, and he looked upon boys who had as snobs. The congregation being fully assembled, now, the bell rang once more, to warn laggards and stragglers, and then a solemn hush fell upon the church which was only broken by the tittering and whispering of the choir in the gallery. The choir always tittered and whispered all through service. There was once a church choir that was not ill-bred, but I have forgotten where it was, now. It was a great many years ago, and I can scarcely remember anything about it, but I think it was in some foreign country. The minister gave out the hymn, and read it through with a relish, in a peculiar style which was much admired in that part of the country. His voice began on a medium key and climbed steadily up till it reached a certain point, where it bore with strong emphasis upon the topmost word and then plunged down as if from a spring-board: Shall I be car-ri-ed toe the skies, on flow'ry BEDS of ease, Whilst others fight to win the prize, and sail thro' BLOODY seas? He was regarded as a wonderful reader. At church "sociables" he was always called upon to read poetry; and when he was through, the ladies would lift up their hands and let them fall helplessly in their laps, and "wall" their eyes, and shake their heads, as much as to say, "Words cannot express it; it is too beautiful, TOO beautiful for this mortal earth." After the hymn had been sung, the Rev. Mr. Sprague turned himself into a bulletin-board, and read off "notices" of meetings and societies and things till it seemed that the list would stretch out to the crack of doom--a queer custom which is still kept up in America, even in cities, away here in this age of abundant newspapers. Often, the less there is to justify a traditional custom, the harder it is to get rid of it. And now the minister prayed. A good, generous prayer it was, and went into details: it pleaded for the church, and the little children of the church; for the other churches of the village; for the village itself; for the county; for the State; for the State officers; for the United States; for the churches of the United States; for Congress; for the President; for the officers of the Government; for poor sailors, tossed by stormy seas; for the oppressed millions groaning under the heel of European monarchies and Oriental despotisms; for such as have the light and the good tidings, and yet have not eyes to see nor ears to hear withal; for the heathen in the far islands of the sea; and closed with a supplication that the words he was about to speak might find grace and favor, and be as seed sown in fertile ground, yielding in time a grateful harvest of good. Amen. There was a rustling of dresses, and the standing congregation sat down. The boy whose history this book relates did not enjoy the prayer, he only endured it--if he even did that much. He was restive all through it; he kept tally of the details of the prayer, unconsciously --for he was not listening, but he knew the ground of old, and the clergyman's regular route over it--and when a little trifle of new matter was interlarded, his ear detected it and his whole nature resented it; he considered additions unfair, and scoundrelly. In the midst of the prayer a fly had lit on the back of the pew in front of him and tortured his spirit by calmly rubbing its hands together, embracing its head with its arms, and polishing it so vigorously that it seemed to almost part company with the body, and the slender thread of a neck was exposed to view; scraping its wings with its hind legs and smoothing them to its body as if they had been coat-tails; going through its whole toilet as tranquilly as if it knew it was perfectly safe. As indeed it was; for as sorely as Tom's hands itched to grab for it they did not dare--he believed his soul would be instantly destroyed if he did such a thing while the prayer was going on. But with the closing sentence his hand began to curve and steal forward; and the instant the "Amen" was out the fly was a prisoner of war. His aunt detected the act and made him let it go. The minister gave out his text and droned along monotonously through an argument that was so prosy that many a head by and by began to nod --and yet it was an argument that dealt in limitless fire and brimstone and thinned the predestined elect down to a company so small as to be hardly worth the saving. Tom counted the pages of the sermon; after church he always knew how many pages there had been, but he seldom knew anything else about the discourse. However, this time he was really interested for a little while. The minister made a grand and moving picture of the assembling together of the world's hosts at the millennium when the lion and the lamb should lie down together and a little child should lead them. But the pathos, the lesson, the moral of the great spectacle were lost upon the boy; he only thought of the conspicuousness of the principal character before the on-looking nations; his face lit with the thought, and he said to himself that he wished he could be that child, if it was a tame lion. Now he lapsed into suffering again, as the dry argument was resumed. Presently he bethought him of a treasure he had and got it out. It was a large black beetle with formidable jaws--a "pinchbug," he called it. It was in a percussion-cap box. The first thing the beetle did was to take him by the finger. A natural fillip followed, the beetle went floundering into the aisle and lit on its back, and the hurt finger went into the boy's mouth. The beetle lay there working its helpless legs, unable to turn over. Tom eyed it, and longed for it; but it was safe out of his reach. Other people uninterested in the sermon found relief in the beetle, and they eyed it too. Presently a vagrant poodle dog came idling along, sad at heart, lazy with the summer softness and the quiet, weary of captivity, sighing for change. He spied the beetle; the drooping tail lifted and wagged. He surveyed the prize; walked around it; smelt at it from a safe distance; walked around it again; grew bolder, and took a closer smell; then lifted his lip and made a gingerly snatch at it, just missing it; made another, and another; began to enjoy the diversion; subsided to his stomach with the beetle between his paws, and continued his experiments; grew weary at last, and then indifferent and absent-minded. His head nodded, and little by little his chin descended and touched the enemy, who seized it. There was a sharp yelp, a flirt of the poodle's head, and the beetle fell a couple of yards away, and lit on its back once more. The neighboring spectators shook with a gentle inward joy, several faces went behind fans and handkerchiefs, and Tom was entirely happy. The dog looked foolish, and probably felt so; but there was resentment in his heart, too, and a craving for revenge. So he went to the beetle and began a wary attack on it again; jumping at it from every point of a circle, lighting with his fore-paws within an inch of the creature, making even closer snatches at it with his teeth, and jerking his head till his ears flapped again. But he grew tired once more, after a while; tried to amuse himself with a fly but found no relief; followed an ant around, with his nose close to the floor, and quickly wearied of that; yawned, sighed, forgot the beetle entirely, and sat down on it. Then there was a wild yelp of agony and the poodle went sailing up the aisle; the yelps continued, and so did the dog; he crossed the house in front of the altar; he flew down the other aisle; he crossed before the doors; he clamored up the home-stretch; his anguish grew with his progress, till presently he was but a woolly comet moving in its orbit with the gleam and the speed of light. At last the frantic sufferer sheered from its course, and sprang into its master's lap; he flung it out of the window, and the voice of distress quickly thinned away and died in the distance. By this time the whole church was red-faced and suffocating with suppressed laughter, and the sermon had come to a dead standstill. The discourse was resumed presently, but it went lame and halting, all possibility of impressiveness being at an end; for even the gravest sentiments were constantly being received with a smothered burst of unholy mirth, under cover of some remote pew-back, as if the poor parson had said a rarely facetious thing. It was a genuine relief to the whole congregation when the ordeal was over and the benediction pronounced. Tom Sawyer went home quite cheerful, thinking to himself that there was some satisfaction about divine service when there was a bit of variety in it. He had but one marring thought; he was willing that the dog should play with his pinchbug, but he did not think it was upright in him to carry it off. CHAPTER VI MONDAY morning found Tom Sawyer miserable. Monday morning always found him so--because it began another week's slow suffering in school. He generally began that day with wishing he had had no intervening holiday, it made the going into captivity and fetters again so much more odious. Tom lay thinking. Presently it occurred to him that he wished he was sick; then he could stay home from school. Here was a vague possibility. He canvassed his system. No ailment was found, and he investigated again. This time he thought he could detect colicky symptoms, and he began to encourage them with considerable hope. But they soon grew feeble, and presently died wholly away. He reflected further. Suddenly he discovered something. One of his upper front teeth was loose. This was lucky; he was about to begin to groan, as a "starter," as he called it, when it occurred to him that if he came into court with that argument, his aunt would pull it out, and that would hurt. So he thought he would hold the tooth in reserve for the present, and seek further. Nothing offered for some little time, and then he remembered hearing the doctor tell about a certain thing that laid up a patient for two or three weeks and threatened to make him lose a finger. So the boy eagerly drew his sore toe from under the sheet and held it up for inspection. But now he did not know the necessary symptoms. However, it seemed well worth while to chance it, so he fell to groaning with considerable spirit. But Sid slept on unconscious. Tom groaned louder, and fancied that he began to feel pain in the toe. No result from Sid. Tom was panting with his exertions by this time. He took a rest and then swelled himself up and fetched a succession of admirable groans. Sid snored on. Tom was aggravated. He said, "Sid, Sid!" and shook him. This course worked well, and Tom began to groan again. Sid yawned, stretched, then brought himself up on his elbow with a snort, and began to stare at Tom. Tom went on groaning. Sid said: "Tom! Say, Tom!" [No response.] "Here, Tom! TOM! What is the matter, Tom?" And he shook him and looked in his face anxiously. Tom moaned out: "Oh, don't, Sid. Don't joggle me." "Why, what's the matter, Tom? I must call auntie." "No--never mind. It'll be over by and by, maybe. Don't call anybody." "But I must! DON'T groan so, Tom, it's awful. How long you been this way?" "Hours. Ouch! Oh, don't stir so, Sid, you'll kill me." "Tom, why didn't you wake me sooner? Oh, Tom, DON'T! It makes my flesh crawl to hear you. Tom, what is the matter?" "I forgive you everything, Sid. [Groan.] Everything you've ever done to me. When I'm gone--" "Oh, Tom, you ain't dying, are you? Don't, Tom--oh, don't. Maybe--" "I forgive everybody, Sid. [Groan.] Tell 'em so, Sid. And Sid, you give my window-sash and my cat with one eye to that new girl that's come to town, and tell her--" But Sid had snatched his clothes and gone. Tom was suffering in reality, now, so handsomely was his imagination working, and so his groans had gathered quite a genuine tone. Sid flew down-stairs and said: "Oh, Aunt Polly, come! Tom's dying!" "Dying!" "Yes'm. Don't wait--come quick!" "Rubbage! I don't believe it!" But she fled up-stairs, nevertheless, with Sid and Mary at her heels. And her face grew white, too, and her lip trembled. When she reached the bedside she gasped out: "You, Tom! Tom, what's the matter with you?" "Oh, auntie, I'm--" "What's the matter with you--what is the matter with you, child?" "Oh, auntie, my sore toe's mortified!" The old lady sank down into a chair and laughed a little, then cried a little, then did both together. This restored her and she said: "Tom, what a turn you did give me. Now you shut up that nonsense and climb out of this." The groans ceased and the pain vanished from the toe. The boy felt a little foolish, and he said: "Aunt Polly, it SEEMED mortified, and it hurt so I never minded my tooth at all." "Your tooth, indeed! What's the matter with your tooth?" "One of them's loose, and it aches perfectly awful." "There, there, now, don't begin that groaning again. Open your mouth. Well--your tooth IS loose, but you're not going to die about that. Mary, get me a silk thread, and a chunk of fire out of the kitchen." Tom said: "Oh, please, auntie, don't pull it out. It don't hurt any more. I wish I may never stir if it does. Please don't, auntie. I don't want to stay home from school." "Oh, you don't, don't you? So all this row was because you thought you'd get to stay home from school and go a-fishing? Tom, Tom, I love you so, and you seem to try every way you can to break my old heart with your outrageousness." By this time the dental instruments were ready. The old lady made one end of the silk thread fast to Tom's tooth with a loop and tied the other to the bedpost. Then she seized the chunk of fire and suddenly thrust it almost into the boy's face. The tooth hung dangling by the bedpost, now. But all trials bring their compensations. As Tom wended to school after breakfast, he was the envy of every boy he met because the gap in his upper row of teeth enabled him to expectorate in a new and admirable way. He gathered quite a following of lads interested in the exhibition; and one that had cut his finger and had been a centre of fascination and homage up to this time, now found himself suddenly without an adherent, and shorn of his glory. His heart was heavy, and he said with a disdain which he did not feel that it wasn't anything to spit like Tom Sawyer; but another boy said, "Sour grapes!" and he wandered away a dismantled hero. Shortly Tom came upon the juvenile pariah of the village, Huckleberry Finn, son of the town drunkard. Huckleberry was cordially hated and dreaded by all the mothers of the town, because he was idle and lawless and vulgar and bad--and because all their children admired him so, and delighted in his forbidden society, and wished they dared to be like him. Tom was like the rest of the respectable boys, in that he envied Huckleberry his gaudy outcast condition, and was under strict orders not to play with him. So he played with him every time he got a chance. Huckleberry was always dressed in the cast-off clothes of full-grown men, and they were in perennial bloom and fluttering with rags. His hat was a vast ruin with a wide crescent lopped out of its brim; his coat, when he wore one, hung nearly to his heels and had the rearward buttons far down the back; but one suspender supported his trousers; the seat of the trousers bagged low and contained nothing, the fringed legs dragged in the dirt when not rolled up. Huckleberry came and went, at his own free will. He slept on doorsteps in fine weather and in empty hogsheads in wet; he did not have to go to school or to church, or call any being master or obey anybody; he could go fishing or swimming when and where he chose, and stay as long as it suited him; nobody forbade him to fight; he could sit up as late as he pleased; he was always the first boy that went barefoot in the spring and the last to resume leather in the fall; he never had to wash, nor put on clean clothes; he could swear wonderfully. In a word, everything that goes to make life precious that boy had. So thought every harassed, hampered, respectable boy in St. Petersburg. Tom hailed the romantic outcast: "Hello, Huckleberry!" "Hello yourself, and see how you like it." "What's that you got?" "Dead cat." "Lemme see him, Huck. My, he's pretty stiff. Where'd you get him?" "Bought him off'n a boy." "What did you give?" "I give a blue ticket and a bladder that I got at the slaughter-house." "Where'd you get the blue ticket?" "Bought it off'n Ben Rogers two weeks ago for a hoop-stick." "Say--what is dead cats good for, Huck?" "Good for? Cure warts with." "No! Is that so? I know something that's better." "I bet you don't. What is it?" "Why, spunk-water." "Spunk-water! I wouldn't give a dern for spunk-water." "You wouldn't, wouldn't you? D'you ever try it?" "No, I hain't. But Bob Tanner did." "Who told you so!" "Why, he told Jeff Thatcher, and Jeff told Johnny Baker, and Johnny told Jim Hollis, and Jim told Ben Rogers, and Ben told a nigger, and the nigger told me. There now!" "Well, what of it? They'll all lie. Leastways all but the nigger. I don't know HIM. But I never see a nigger that WOULDN'T lie. Shucks! Now you tell me how Bob Tanner done it, Huck." "Why, he took and dipped his hand in a rotten stump where the rain-water was." "In the daytime?" "Certainly." "With his face to the stump?" "Yes. Least I reckon so." "Did he say anything?" "I don't reckon he did. I don't know." "Aha! Talk about trying to cure warts with spunk-water such a blame fool way as that! Why, that ain't a-going to do any good. You got to go all by yourself, to the middle of the woods, where you know there's a spunk-water stump, and just as it's midnight you back up against the stump and jam your hand in and say: 'Barley-corn, barley-corn, injun-meal shorts, Spunk-water, spunk-water, swaller these warts,' and then walk away quick, eleven steps, with your eyes shut, and then turn around three times and walk home without speaking to anybody. Because if you speak the charm's busted." "Well, that sounds like a good way; but that ain't the way Bob Tanner done." "No, sir, you can bet he didn't, becuz he's the wartiest boy in this town; and he wouldn't have a wart on him if he'd knowed how to work spunk-water. I've took off thousands of warts off of my hands that way, Huck. I play with frogs so much that I've always got considerable many warts. Sometimes I take 'em off with a bean." "Yes, bean's good. I've done that." "Have you? What's your way?" "You take and split the bean, and cut the wart so as to get some blood, and then you put the blood on one piece of the bean and take and dig a hole and bury it 'bout midnight at the crossroads in the dark of the moon, and then you burn up the rest of the bean. You see that piece that's got the blood on it will keep drawing and drawing, trying to fetch the other piece to it, and so that helps the blood to draw the wart, and pretty soon off she comes." "Yes, that's it, Huck--that's it; though when you're burying it if you say 'Down bean; off wart; come no more to bother me!' it's better. That's the way Joe Harper does, and he's been nearly to Coonville and most everywheres. But say--how do you cure 'em with dead cats?" "Why, you take your cat and go and get in the graveyard 'long about midnight when somebody that was wicked has been buried; and when it's midnight a devil will come, or maybe two or three, but you can't see 'em, you can only hear something like the wind, or maybe hear 'em talk; and when they're taking that feller away, you heave your cat after 'em and say, 'Devil follow corpse, cat follow devil, warts follow cat, I'm done with ye!' That'll fetch ANY wart." "Sounds right. D'you ever try it, Huck?" "No, but old Mother Hopkins told me." "Well, I reckon it's so, then. Becuz they say she's a witch." "Say! Why, Tom, I KNOW she is. She witched pap. Pap says so his own self. He come along one day, and he see she was a-witching him, so he took up a rock, and if she hadn't dodged, he'd a got her. Well, that very night he rolled off'n a shed wher' he was a layin drunk, and broke his arm." "Why, that's awful. How did he know she was a-witching him?" "Lord, pap can tell, easy. Pap says when they keep looking at you right stiddy, they're a-witching you. Specially if they mumble. Becuz when they mumble they're saying the Lord's Prayer backards." "Say, Hucky, when you going to try the cat?" "To-night. I reckon they'll come after old Hoss Williams to-night." "But they buried him Saturday. Didn't they get him Saturday night?" "Why, how you talk! How could their charms work till midnight?--and THEN it's Sunday. Devils don't slosh around much of a Sunday, I don't reckon." "I never thought of that. That's so. Lemme go with you?" "Of course--if you ain't afeard." "Afeard! 'Tain't likely. Will you meow?" "Yes--and you meow back, if you get a chance. Last time, you kep' me a-meowing around till old Hays went to throwing rocks at me and says 'Dern that cat!' and so I hove a brick through his window--but don't you tell." "I won't. I couldn't meow that night, becuz auntie was watching me, but I'll meow this time. Say--what's that?" "Nothing but a tick." "Where'd you get him?" "Out in the woods." "What'll you take for him?" "I don't know. I don't want to sell him." "All right. It's a mighty small tick, anyway." "Oh, anybody can run a tick down that don't belong to them. I'm satisfied with it. It's a good enough tick for me." "Sho, there's ticks a plenty. I could have a thousand of 'em if I wanted to." "Well, why don't you? Becuz you know mighty well you can't. This is a pretty early tick, I reckon. It's the first one I've seen this year." "Say, Huck--I'll give you my tooth for him." "Less see it." Tom got out a bit of paper and carefully unrolled it. Huckleberry viewed it wistfully. The temptation was very strong. At last he said: "Is it genuwyne?" Tom lifted his lip and showed the vacancy. "Well, all right," said Huckleberry, "it's a trade." Tom enclosed the tick in the percussion-cap box that had lately been the pinchbug's prison, and the boys separated, each feeling wealthier than before. When Tom reached the little isolated frame schoolhouse, he strode in briskly, with the manner of one who had come with all honest speed. He hung his hat on a peg and flung himself into his seat with business-like alacrity. The master, throned on high in his great splint-bottom arm-chair, was dozing, lulled by the drowsy hum of study. The interruption roused him. "Thomas Sawyer!" Tom knew that when his name was pronounced in full, it meant trouble. "Sir!" "Come up here. Now, sir, why are you late again, as usual?" Tom was about to take refuge in a lie, when he saw two long tails of yellow hair hanging down a back that he recognized by the electric sympathy of love; and by that form was THE ONLY VACANT PLACE on the girls' side of the schoolhouse. He instantly said: "I STOPPED TO TALK WITH HUCKLEBERRY FINN!" The master's pulse stood still, and he stared helplessly. The buzz of study ceased. The pupils wondered if this foolhardy boy had lost his mind. The master said: "You--you did what?" "Stopped to talk with Huckleberry Finn." There was no mistaking the words. "Thomas Sawyer, this is the most astounding confession I have ever listened to. No mere ferule will answer for this offence. Take off your jacket." The master's arm performed until it was tired and the stock of switches notably diminished. Then the order followed: "Now, sir, go and sit with the girls! And let this be a warning to you." The titter that rippled around the room appeared to abash the boy, but in reality that result was caused rather more by his worshipful awe of his unknown idol and the dread pleasure that lay in his high good fortune. He sat down upon the end of the pine bench and the girl hitched herself away from him with a toss of her head. Nudges and winks and whispers traversed the room, but Tom sat still, with his arms upon the long, low desk before him, and seemed to study his book. By and by attention ceased from him, and the accustomed school murmur rose upon the dull air once more. Presently the boy began to steal furtive glances at the girl. She observed it, "made a mouth" at him and gave him the back of her head for the space of a minute. When she cautiously faced around again, a peach lay before her. She thrust it away. Tom gently put it back. She thrust it away again, but with less animosity. Tom patiently returned it to its place. Then she let it remain. Tom scrawled on his slate, "Please take it--I got more." The girl glanced at the words, but made no sign. Now the boy began to draw something on the slate, hiding his work with his left hand. For a time the girl refused to notice; but her human curiosity presently began to manifest itself by hardly perceptible signs. The boy worked on, apparently unconscious. The girl made a sort of noncommittal attempt to see, but the boy did not betray that he was aware of it. At last she gave in and hesitatingly whispered: "Let me see it." Tom partly uncovered a dismal caricature of a house with two gable ends to it and a corkscrew of smoke issuing from the chimney. Then the girl's interest began to fasten itself upon the work and she forgot everything else. When it was finished, she gazed a moment, then whispered: "It's nice--make a man." The artist erected a man in the front yard, that resembled a derrick. He could have stepped over the house; but the girl was not hypercritical; she was satisfied with the monster, and whispered: "It's a beautiful man--now make me coming along." Tom drew an hour-glass with a full moon and straw limbs to it and armed the spreading fingers with a portentous fan. The girl said: "It's ever so nice--I wish I could draw." "It's easy," whispered Tom, "I'll learn you." "Oh, will you? When?" "At noon. Do you go home to dinner?" "I'll stay if you will." "Good--that's a whack. What's your name?" "Becky Thatcher. What's yours? Oh, I know. It's Thomas Sawyer." "That's the name they lick me by. I'm Tom when I'm good. You call me Tom, will you?" "Yes." Now Tom began to scrawl something on the slate, hiding the words from the girl. But she was not backward this time. She begged to see. Tom said: "Oh, it ain't anything." "Yes it is." "No it ain't. You don't want to see." "Yes I do, indeed I do. Please let me." "You'll tell." "No I won't--deed and deed and double deed won't." "You won't tell anybody at all? Ever, as long as you live?" "No, I won't ever tell ANYbody. Now let me." "Oh, YOU don't want to see!" "Now that you treat me so, I WILL see." And she put her small hand upon his and a little scuffle ensued, Tom pretending to resist in earnest but letting his hand slip by degrees till these words were revealed: "I LOVE YOU." "Oh, you bad thing!" And she hit his hand a smart rap, but reddened and looked pleased, nevertheless. Just at this juncture the boy felt a slow, fateful grip closing on his ear, and a steady lifting impulse. In that wise he was borne across the house and deposited in his own seat, under a peppering fire of giggles from the whole school. Then the master stood over him during a few awful moments, and finally moved away to his throne without saying a word. But although Tom's ear tingled, his heart was jubilant. As the school quieted down Tom made an honest effort to study, but the turmoil within him was too great. In turn he took his place in the reading class and made a botch of it; then in the geography class and turned lakes into mountains, mountains into rivers, and rivers into continents, till chaos was come again; then in the spelling class, and got "turned down," by a succession of mere baby words, till he brought up at the foot and yielded up the pewter medal which he had worn with ostentation for months. CHAPTER VII THE harder Tom tried to fasten his mind on his book, the more his ideas wandered. So at last, with a sigh and a yawn, he gave it up. It seemed to him that the noon recess would never come. The air was utterly dead. There was not a breath stirring. It was the sleepiest of sleepy days. The drowsing murmur of the five and twenty studying scholars soothed the soul like the spell that is in the murmur of bees. Away off in the flaming sunshine, Cardiff Hill lifted its soft green sides through a shimmering veil of heat, tinted with the purple of distance; a few birds floated on lazy wing high in the air; no other living thing was visible but some cows, and they were asleep. Tom's heart ached to be free, or else to have something of interest to do to pass the dreary time. His hand wandered into his pocket and his face lit up with a glow of gratitude that was prayer, though he did not know it. Then furtively the percussion-cap box came out. He released the tick and put him on the long flat desk. The creature probably glowed with a gratitude that amounted to prayer, too, at this moment, but it was premature: for when he started thankfully to travel off, Tom turned him aside with a pin and made him take a new direction. Tom's bosom friend sat next him, suffering just as Tom had been, and now he was deeply and gratefully interested in this entertainment in an instant. This bosom friend was Joe Harper. The two boys were sworn friends all the week, and embattled enemies on Saturdays. Joe took a pin out of his lapel and began to assist in exercising the prisoner. The sport grew in interest momently. Soon Tom said that they were interfering with each other, and neither getting the fullest benefit of the tick. So he put Joe's slate on the desk and drew a line down the middle of it from top to bottom. "Now," said he, "as long as he is on your side you can stir him up and I'll let him alone; but if you let him get away and get on my side, you're to leave him alone as long as I can keep him from crossing over." "All right, go ahead; start him up." The tick escaped from Tom, presently, and crossed the equator. Joe harassed him awhile, and then he got away and crossed back again. This change of base occurred often. While one boy was worrying the tick with absorbing interest, the other would look on with interest as strong, the two heads bowed together over the slate, and the two souls dead to all things else. At last luck seemed to settle and abide with Joe. The tick tried this, that, and the other course, and got as excited and as anxious as the boys themselves, but time and again just as he would have victory in his very grasp, so to speak, and Tom's fingers would be twitching to begin, Joe's pin would deftly head him off, and keep possession. At last Tom could stand it no longer. The temptation was too strong. So he reached out and lent a hand with his pin. Joe was angry in a moment. Said he: "Tom, you let him alone." "I only just want to stir him up a little, Joe." "No, sir, it ain't fair; you just let him alone." "Blame it, I ain't going to stir him much." "Let him alone, I tell you." "I won't!" "You shall--he's on my side of the line." "Look here, Joe Harper, whose is that tick?" "I don't care whose tick he is--he's on my side of the line, and you sha'n't touch him." "Well, I'll just bet I will, though. He's my tick and I'll do what I blame please with him, or die!" A tremendous whack came down on Tom's shoulders, and its duplicate on Joe's; and for the space of two minutes the dust continued to fly from the two jackets and the whole school to enjoy it. The boys had been too absorbed to notice the hush that had stolen upon the school awhile before when the master came tiptoeing down the room and stood over them. He had contemplated a good part of the performance before he contributed his bit of variety to it. When school broke up at noon, Tom flew to Becky Thatcher, and whispered in her ear: "Put on your bonnet and let on you're going home; and when you get to the corner, give the rest of 'em the slip, and turn down through the lane and come back. I'll go the other way and come it over 'em the same way." So the one went off with one group of scholars, and the other with another. In a little while the two met at the bottom of the lane, and when they reached the school they had it all to themselves. Then they sat together, with a slate before them, and Tom gave Becky the pencil and held her hand in his, guiding it, and so created another surprising house. When the interest in art began to wane, the two fell to talking. Tom was swimming in bliss. He said: "Do you love rats?" "No! I hate them!" "Well, I do, too--LIVE ones. But I mean dead ones, to swing round your head with a string." "No, I don't care for rats much, anyway. What I like is chewing-gum." "Oh, I should say so! I wish I had some now." "Do you? I've got some. I'll let you chew it awhile, but you must give it back to me." That was agreeable, so they chewed it turn about, and dangled their legs against the bench in excess of contentment. "Was you ever at a circus?" said Tom. "Yes, and my pa's going to take me again some time, if I'm good." "I been to the circus three or four times--lots of times. Church ain't shucks to a circus. There's things going on at a circus all the time. I'm going to be a clown in a circus when I grow up." "Oh, are you! That will be nice. They're so lovely, all spotted up." "Yes, that's so. And they get slathers of money--most a dollar a day, Ben Rogers says. Say, Becky, was you ever engaged?" "What's that?" "Why, engaged to be married." "No." "Would you like to?" "I reckon so. I don't know. What is it like?" "Like? Why it ain't like anything. You only just tell a boy you won't ever have anybody but him, ever ever ever, and then you kiss and that's all. Anybody can do it." "Kiss? What do you kiss for?" "Why, that, you know, is to--well, they always do that." "Everybody?" "Why, yes, everybody that's in love with each other. Do you remember what I wrote on the slate?" "Ye--yes." "What was it?" "I sha'n't tell you." "Shall I tell YOU?" "Ye--yes--but some other time." "No, now." "No, not now--to-morrow." "Oh, no, NOW. Please, Becky--I'll whisper it, I'll whisper it ever so easy." Becky hesitating, Tom took silence for consent, and passed his arm about her waist and whispered the tale ever so softly, with his mouth close to her ear. And then he added: "Now you whisper it to me--just the same." She resisted, for a while, and then said: "You turn your face away so you can't see, and then I will. But you mustn't ever tell anybody--WILL you, Tom? Now you won't, WILL you?" "No, indeed, indeed I won't. Now, Becky." He turned his face away. She bent timidly around till her breath stirred his curls and whispered, "I--love--you!" Then she sprang away and ran around and around the desks and benches, with Tom after her, and took refuge in a corner at last, with her little white apron to her face. Tom clasped her about her neck and pleaded: "Now, Becky, it's all done--all over but the kiss. Don't you be afraid of that--it ain't anything at all. Please, Becky." And he tugged at her apron and the hands. By and by she gave up, and let her hands drop; her face, all glowing with the struggle, came up and submitted. Tom kissed the red lips and said: "Now it's all done, Becky. And always after this, you know, you ain't ever to love anybody but me, and you ain't ever to marry anybody but me, ever never and forever. Will you?" "No, I'll never love anybody but you, Tom, and I'll never marry anybody but you--and you ain't to ever marry anybody but me, either." "Certainly. Of course. That's PART of it. And always coming to school or when we're going home, you're to walk with me, when there ain't anybody looking--and you choose me and I choose you at parties, because that's the way you do when you're engaged." "It's so nice. I never heard of it before." "Oh, it's ever so gay! Why, me and Amy Lawrence--" The big eyes told Tom his blunder and he stopped, confused. "Oh, Tom! Then I ain't the first you've ever been engaged to!" The child began to cry. Tom said: "Oh, don't cry, Becky, I don't care for her any more." "Yes, you do, Tom--you know you do." Tom tried to put his arm about her neck, but she pushed him away and turned her face to the wall, and went on crying. Tom tried again, with soothing words in his mouth, and was repulsed again. Then his pride was up, and he strode away and went outside. He stood about, restless and uneasy, for a while, glancing at the door, every now and then, hoping she would repent and come to find him. But she did not. Then he began to feel badly and fear that he was in the wrong. It was a hard struggle with him to make new advances, now, but he nerved himself to it and entered. She was still standing back there in the corner, sobbing, with her face to the wall. Tom's heart smote him. He went to her and stood a moment, not knowing exactly how to proceed. Then he said hesitatingly: "Becky, I--I don't care for anybody but you." No reply--but sobs. "Becky"--pleadingly. "Becky, won't you say something?" More sobs. Tom got out his chiefest jewel, a brass knob from the top of an andiron, and passed it around her so that she could see it, and said: "Please, Becky, won't you take it?" She struck it to the floor. Then Tom marched out of the house and over the hills and far away, to return to school no more that day. Presently Becky began to suspect. She ran to the door; he was not in sight; she flew around to the play-yard; he was not there. Then she called: "Tom! Come back, Tom!" She listened intently, but there was no answer. She had no companions but silence and loneliness. So she sat down to cry again and upbraid herself; and by this time the scholars began to gather again, and she had to hide her griefs and still her broken heart and take up the cross of a long, dreary, aching afternoon, with none among the strangers about her to exchange sorrows with. CHAPTER VIII TOM dodged hither and thither through lanes until he was well out of the track of returning scholars, and then fell into a moody jog. He crossed a small "branch" two or three times, because of a prevailing juvenile superstition that to cross water baffled pursuit. Half an hour later he was disappearing behind the Douglas mansion on the summit of Cardiff Hill, and the schoolhouse was hardly distinguishable away off in the valley behind him. He entered a dense wood, picked his pathless way to the centre of it, and sat down on a mossy spot under a spreading oak. There was not even a zephyr stirring; the dead noonday heat had even stilled the songs of the birds; nature lay in a trance that was broken by no sound but the occasional far-off hammering of a woodpecker, and this seemed to render the pervading silence and sense of loneliness the more profound. The boy's soul was steeped in melancholy; his feelings were in happy accord with his surroundings. He sat long with his elbows on his knees and his chin in his hands, meditating. It seemed to him that life was but a trouble, at best, and he more than half envied Jimmy Hodges, so lately released; it must be very peaceful, he thought, to lie and slumber and dream forever and ever, with the wind whispering through the trees and caressing the grass and the flowers over the grave, and nothing to bother and grieve about, ever any more. If he only had a clean Sunday-school record he could be willing to go, and be done with it all. Now as to this girl. What had he done? Nothing. He had meant the best in the world, and been treated like a dog--like a very dog. She would be sorry some day--maybe when it was too late. Ah, if he could only die TEMPORARILY! But the elastic heart of youth cannot be compressed into one constrained shape long at a time. Tom presently began to drift insensibly back into the concerns of this life again. What if he turned his back, now, and disappeared mysteriously? What if he went away--ever so far away, into unknown countries beyond the seas--and never came back any more! How would she feel then! The idea of being a clown recurred to him now, only to fill him with disgust. For frivolity and jokes and spotted tights were an offense, when they intruded themselves upon a spirit that was exalted into the vague august realm of the romantic. No, he would be a soldier, and return after long years, all war-worn and illustrious. No--better still, he would join the Indians, and hunt buffaloes and go on the warpath in the mountain ranges and the trackless great plains of the Far West, and away in the future come back a great chief, bristling with feathers, hideous with paint, and prance into Sunday-school, some drowsy summer morning, with a bloodcurdling war-whoop, and sear the eyeballs of all his companions with unappeasable envy. But no, there was something gaudier even than this. He would be a pirate! That was it! NOW his future lay plain before him, and glowing with unimaginable splendor. How his name would fill the world, and make people shudder! How gloriously he would go plowing the dancing seas, in his long, low, black-hulled racer, the Spirit of the Storm, with his grisly flag flying at the fore! And at the zenith of his fame, how he would suddenly appear at the old village and stalk into church, brown and weather-beaten, in his black velvet doublet and trunks, his great jack-boots, his crimson sash, his belt bristling with horse-pistols, his crime-rusted cutlass at his side, his slouch hat with waving plumes, his black flag unfurled, with the skull and crossbones on it, and hear with swelling ecstasy the whisperings, "It's Tom Sawyer the Pirate!--the Black Avenger of the Spanish Main!" Yes, it was settled; his career was determined. He would run away from home and enter upon it. He would start the very next morning. Therefore he must now begin to get ready. He would collect his resources together. He went to a rotten log near at hand and began to dig under one end of it with his Barlow knife. He soon struck wood that sounded hollow. He put his hand there and uttered this incantation impressively: "What hasn't come here, come! What's here, stay here!" Then he scraped away the dirt, and exposed a pine shingle. He took it up and disclosed a shapely little treasure-house whose bottom and sides were of shingles. In it lay a marble. Tom's astonishment was boundless! He scratched his head with a perplexed air, and said: "Well, that beats anything!" Then he tossed the marble away pettishly, and stood cogitating. The truth was, that a superstition of his had failed, here, which he and all his comrades had always looked upon as infallible. If you buried a marble with certain necessary incantations, and left it alone a fortnight, and then opened the place with the incantation he had just used, you would find that all the marbles you had ever lost had gathered themselves together there, meantime, no matter how widely they had been separated. But now, this thing had actually and unquestionably failed. Tom's whole structure of faith was shaken to its foundations. He had many a time heard of this thing succeeding but never of its failing before. It did not occur to him that he had tried it several times before, himself, but could never find the hiding-places afterward. He puzzled over the matter some time, and finally decided that some witch had interfered and broken the charm. He thought he would satisfy himself on that point; so he searched around till he found a small sandy spot with a little funnel-shaped depression in it. He laid himself down and put his mouth close to this depression and called-- "Doodle-bug, doodle-bug, tell me what I want to know! Doodle-bug, doodle-bug, tell me what I want to know!" The sand began to work, and presently a small black bug appeared for a second and then darted under again in a fright. "He dasn't tell! So it WAS a witch that done it. I just knowed it." He well knew the futility of trying to contend against witches, so he gave up discouraged. But it occurred to him that he might as well have the marble he had just thrown away, and therefore he went and made a patient search for it. But he could not find it. Now he went back to his treasure-house and carefully placed himself just as he had been standing when he tossed the marble away; then he took another marble from his pocket and tossed it in the same way, saying: "Brother, go find your brother!" He watched where it stopped, and went there and looked. But it must have fallen short or gone too far; so he tried twice more. The last repetition was successful. The two marbles lay within a foot of each other. Just here the blast of a toy tin trumpet came faintly down the green aisles of the forest. Tom flung off his jacket and trousers, turned a suspender into a belt, raked away some brush behind the rotten log, disclosing a rude bow and arrow, a lath sword and a tin trumpet, and in a moment had seized these things and bounded away, barelegged, with fluttering shirt. He presently halted under a great elm, blew an answering blast, and then began to tiptoe and look warily out, this way and that. He said cautiously--to an imaginary company: "Hold, my merry men! Keep hid till I blow." Now appeared Joe Harper, as airily clad and elaborately armed as Tom. Tom called: "Hold! Who comes here into Sherwood Forest without my pass?" "Guy of Guisborne wants no man's pass. Who art thou that--that--" "Dares to hold such language," said Tom, prompting--for they talked "by the book," from memory. "Who art thou that dares to hold such language?" "I, indeed! I am Robin Hood, as thy caitiff carcase soon shall know." "Then art thou indeed that famous outlaw? Right gladly will I dispute with thee the passes of the merry wood. Have at thee!" They took their lath swords, dumped their other traps on the ground, struck a fencing attitude, foot to foot, and began a grave, careful combat, "two up and two down." Presently Tom said: "Now, if you've got the hang, go it lively!" So they "went it lively," panting and perspiring with the work. By and by Tom shouted: "Fall! fall! Why don't you fall?" "I sha'n't! Why don't you fall yourself? You're getting the worst of it." "Why, that ain't anything. I can't fall; that ain't the way it is in the book. The book says, 'Then with one back-handed stroke he slew poor Guy of Guisborne.' You're to turn around and let me hit you in the back." There was no getting around the authorities, so Joe turned, received the whack and fell. "Now," said Joe, getting up, "you got to let me kill YOU. That's fair." "Why, I can't do that, it ain't in the book." "Well, it's blamed mean--that's all." "Well, say, Joe, you can be Friar Tuck or Much the miller's son, and lam me with a quarter-staff; or I'll be the Sheriff of Nottingham and you be Robin Hood a little while and kill me." This was satisfactory, and so these adventures were carried out. Then Tom became Robin Hood again, and was allowed by the treacherous nun to bleed his strength away through his neglected wound. And at last Joe, representing a whole tribe of weeping outlaws, dragged him sadly forth, gave his bow into his feeble hands, and Tom said, "Where this arrow falls, there bury poor Robin Hood under the greenwood tree." Then he shot the arrow and fell back and would have died, but he lit on a nettle and sprang up too gaily for a corpse. The boys dressed themselves, hid their accoutrements, and went off grieving that there were no outlaws any more, and wondering what modern civilization could claim to have done to compensate for their loss. They said they would rather be outlaws a year in Sherwood Forest than President of the United States forever. CHAPTER IX AT half-past nine, that night, Tom and Sid were sent to bed, as usual. They said their prayers, and Sid was soon asleep. Tom lay awake and waited, in restless impatience. When it seemed to him that it must be nearly daylight, he heard the clock strike ten! This was despair. He would have tossed and fidgeted, as his nerves demanded, but he was afraid he might wake Sid. So he lay still, and stared up into the dark. Everything was dismally still. By and by, out of the stillness, little, scarcely perceptible noises began to emphasize themselves. The ticking of the clock began to bring itself into notice. Old beams began to crack mysteriously. The stairs creaked faintly. Evidently spirits were abroad. A measured, muffled snore issued from Aunt Polly's chamber. And now the tiresome chirping of a cricket that no human ingenuity could locate, began. Next the ghastly ticking of a deathwatch in the wall at the bed's head made Tom shudder--it meant that somebody's days were numbered. Then the howl of a far-off dog rose on the night air, and was answered by a fainter howl from a remoter distance. Tom was in an agony. At last he was satisfied that time had ceased and eternity begun; he began to doze, in spite of himself; the clock chimed eleven, but he did not hear it. And then there came, mingling with his half-formed dreams, a most melancholy caterwauling. The raising of a neighboring window disturbed him. A cry of "Scat! you devil!" and the crash of an empty bottle against the back of his aunt's woodshed brought him wide awake, and a single minute later he was dressed and out of the window and creeping along the roof of the "ell" on all fours. He "meow'd" with caution once or twice, as he went; then jumped to the roof of the woodshed and thence to the ground. Huckleberry Finn was there, with his dead cat. The boys moved off and disappeared in the gloom. At the end of half an hour they were wading through the tall grass of the graveyard. It was a graveyard of the old-fashioned Western kind. It was on a hill, about a mile and a half from the village. It had a crazy board fence around it, which leaned inward in places, and outward the rest of the time, but stood upright nowhere. Grass and weeds grew rank over the whole cemetery. All the old graves were sunken in, there was not a tombstone on the place; round-topped, worm-eaten boards staggered over the graves, leaning for support and finding none. "Sacred to the memory of" So-and-So had been painted on them once, but it could no longer have been read, on the most of them, now, even if there had been light. A faint wind moaned through the trees, and Tom feared it might be the spirits of the dead, complaining at being disturbed. The boys talked little, and only under their breath, for the time and the place and the pervading solemnity and silence oppressed their spirits. They found the sharp new heap they were seeking, and ensconced themselves within the protection of three great elms that grew in a bunch within a few feet of the grave. Then they waited in silence for what seemed a long time. The hooting of a distant owl was all the sound that troubled the dead stillness. Tom's reflections grew oppressive. He must force some talk. So he said in a whisper: "Hucky, do you believe the dead people like it for us to be here?" Huckleberry whispered: "I wisht I knowed. It's awful solemn like, AIN'T it?" "I bet it is." There was a considerable pause, while the boys canvassed this matter inwardly. Then Tom whispered: "Say, Hucky--do you reckon Hoss Williams hears us talking?" "O' course he does. Least his sperrit does." Tom, after a pause: "I wish I'd said Mister Williams. But I never meant any harm. Everybody calls him Hoss." "A body can't be too partic'lar how they talk 'bout these-yer dead people, Tom." This was a damper, and conversation died again. Presently Tom seized his comrade's arm and said: "Sh!" "What is it, Tom?" And the two clung together with beating hearts. "Sh! There 'tis again! Didn't you hear it?" "I--" "There! Now you hear it." "Lord, Tom, they're coming! They're coming, sure. What'll we do?" "I dono. Think they'll see us?" "Oh, Tom, they can see in the dark, same as cats. I wisht I hadn't come." "Oh, don't be afeard. I don't believe they'll bother us. We ain't doing any harm. If we keep perfectly still, maybe they won't notice us at all." "I'll try to, Tom, but, Lord, I'm all of a shiver." "Listen!" The boys bent their heads together and scarcely breathed. A muffled sound of voices floated up from the far end of the graveyard. "Look! See there!" whispered Tom. "What is it?" "It's devil-fire. Oh, Tom, this is awful." Some vague figures approached through the gloom, swinging an old-fashioned tin lantern that freckled the ground with innumerable little spangles of light. Presently Huckleberry whispered with a shudder: "It's the devils sure enough. Three of 'em! Lordy, Tom, we're goners! Can you pray?" "I'll try, but don't you be afeard. They ain't going to hurt us. 'Now I lay me down to sleep, I--'" "Sh!" "What is it, Huck?" "They're HUMANS! One of 'em is, anyway. One of 'em's old Muff Potter's voice." "No--'tain't so, is it?" "I bet I know it. Don't you stir nor budge. He ain't sharp enough to notice us. Drunk, the same as usual, likely--blamed old rip!" "All right, I'll keep still. Now they're stuck. Can't find it. Here they come again. Now they're hot. Cold again. Hot again. Red hot! They're p'inted right, this time. Say, Huck, I know another o' them voices; it's Injun Joe." "That's so--that murderin' half-breed! I'd druther they was devils a dern sight. What kin they be up to?" The whisper died wholly out, now, for the three men had reached the grave and stood within a few feet of the boys' hiding-place. "Here it is," said the third voice; and the owner of it held the lantern up and revealed the face of young Doctor Robinson. Potter and Injun Joe were carrying a handbarrow with a rope and a couple of shovels on it. They cast down their load and began to open the grave. The doctor put the lantern at the head of the grave and came and sat down with his back against one of the elm trees. He was so close the boys could have touched him. "Hurry, men!" he said, in a low voice; "the moon might come out at any moment." They growled a response and went on digging. For some time there was no noise but the grating sound of the spades discharging their freight of mould and gravel. It was very monotonous. Finally a spade struck upon the coffin with a dull woody accent, and within another minute or two the men had hoisted it out on the ground. They pried off the lid with their shovels, got out the body and dumped it rudely on the ground. The moon drifted from behind the clouds and exposed the pallid face. The barrow was got ready and the corpse placed on it, covered with a blanket, and bound to its place with the rope. Potter took out a large spring-knife and cut off the dangling end of the rope and then said: "Now the cussed thing's ready, Sawbones, and you'll just out with another five, or here she stays." "That's the talk!" said Injun Joe. "Look here, what does this mean?" said the doctor. "You required your pay in advance, and I've paid you." "Yes, and you done more than that," said Injun Joe, approaching the doctor, who was now standing. "Five years ago you drove me away from your father's kitchen one night, when I come to ask for something to eat, and you said I warn't there for any good; and when I swore I'd get even with you if it took a hundred years, your father had me jailed for a vagrant. Did you think I'd forget? The Injun blood ain't in me for nothing. And now I've GOT you, and you got to SETTLE, you know!" He was threatening the doctor, with his fist in his face, by this time. The doctor struck out suddenly and stretched the ruffian on the ground. Potter dropped his knife, and exclaimed: "Here, now, don't you hit my pard!" and the next moment he had grappled with the doctor and the two were struggling with might and main, trampling the grass and tearing the ground with their heels. Injun Joe sprang to his feet, his eyes flaming with passion, snatched up Potter's knife, and went creeping, catlike and stooping, round and round about the combatants, seeking an opportunity. All at once the doctor flung himself free, seized the heavy headboard of Williams' grave and felled Potter to the earth with it--and in the same instant the half-breed saw his chance and drove the knife to the hilt in the young man's breast. He reeled and fell partly upon Potter, flooding him with his blood, and in the same moment the clouds blotted out the dreadful spectacle and the two frightened boys went speeding away in the dark. Presently, when the moon emerged again, Injun Joe was standing over the two forms, contemplating them. The doctor murmured inarticulately, gave a long gasp or two and was still. The half-breed muttered: "THAT score is settled--damn you." Then he robbed the body. After which he put the fatal knife in Potter's open right hand, and sat down on the dismantled coffin. Three --four--five minutes passed, and then Potter began to stir and moan. His hand closed upon the knife; he raised it, glanced at it, and let it fall, with a shudder. Then he sat up, pushing the body from him, and gazed at it, and then around him, confusedly. His eyes met Joe's. "Lord, how is this, Joe?" he said. "It's a dirty business," said Joe, without moving. "What did you do it for?" "I! I never done it!" "Look here! That kind of talk won't wash." Potter trembled and grew white. "I thought I'd got sober. I'd no business to drink to-night. But it's in my head yet--worse'n when we started here. I'm all in a muddle; can't recollect anything of it, hardly. Tell me, Joe--HONEST, now, old feller--did I do it? Joe, I never meant to--'pon my soul and honor, I never meant to, Joe. Tell me how it was, Joe. Oh, it's awful--and him so young and promising." "Why, you two was scuffling, and he fetched you one with the headboard and you fell flat; and then up you come, all reeling and staggering like, and snatched the knife and jammed it into him, just as he fetched you another awful clip--and here you've laid, as dead as a wedge til now." "Oh, I didn't know what I was a-doing. I wish I may die this minute if I did. It was all on account of the whiskey and the excitement, I reckon. I never used a weepon in my life before, Joe. I've fought, but never with weepons. They'll all say that. Joe, don't tell! Say you won't tell, Joe--that's a good feller. I always liked you, Joe, and stood up for you, too. Don't you remember? You WON'T tell, WILL you, Joe?" And the poor creature dropped on his knees before the stolid murderer, and clasped his appealing hands. "No, you've always been fair and square with me, Muff Potter, and I won't go back on you. There, now, that's as fair as a man can say." "Oh, Joe, you're an angel. I'll bless you for this the longest day I live." And Potter began to cry. "Come, now, that's enough of that. This ain't any time for blubbering. You be off yonder way and I'll go this. Move, now, and don't leave any tracks behind you." Potter started on a trot that quickly increased to a run. The half-breed stood looking after him. He muttered: "If he's as much stunned with the lick and fuddled with the rum as he had the look of being, he won't think of the knife till he's gone so far he'll be afraid to come back after it to such a place by himself --chicken-heart!" Two or three minutes later the murdered man, the blanketed corpse, the lidless coffin, and the open grave were under no inspection but the moon's. The stillness was complete again, too. CHAPTER X THE two boys flew on and on, toward the village, speechless with horror. They glanced backward over their shoulders from time to time, apprehensively, as if they feared they might be followed. Every stump that started up in their path seemed a man and an enemy, and made them catch their breath; and as they sped by some outlying cottages that lay near the village, the barking of the aroused watch-dogs seemed to give wings to their feet. "If we can only get to the old tannery before we break down!" whispered Tom, in short catches between breaths. "I can't stand it much longer." Huckleberry's hard pantings were his only reply, and the boys fixed their eyes on the goal of their hopes and bent to their work to win it. They gained steadily on it, and at last, breast to breast, they burst through the open door and fell grateful and exhausted in the sheltering shadows beyond. By and by their pulses slowed down, and Tom whispered: "Huckleberry, what do you reckon'll come of this?" "If Doctor Robinson dies, I reckon hanging'll come of it." "Do you though?" "Why, I KNOW it, Tom." Tom thought a while, then he said: "Who'll tell? We?" "What are you talking about? S'pose something happened and Injun Joe DIDN'T hang? Why, he'd kill us some time or other, just as dead sure as we're a laying here." "That's just what I was thinking to myself, Huck." "If anybody tells, let Muff Potter do it, if he's fool enough. He's generally drunk enough." Tom said nothing--went on thinking. Presently he whispered: "Huck, Muff Potter don't know it. How can he tell?" "What's the reason he don't know it?" "Because he'd just got that whack when Injun Joe done it. D'you reckon he could see anything? D'you reckon he knowed anything?" "By hokey, that's so, Tom!" "And besides, look-a-here--maybe that whack done for HIM!" "No, 'taint likely, Tom. He had liquor in him; I could see that; and besides, he always has. Well, when pap's full, you might take and belt him over the head with a church and you couldn't phase him. He says so, his own self. So it's the same with Muff Potter, of course. But if a man was dead sober, I reckon maybe that whack might fetch him; I dono." After another reflective silence, Tom said: "Hucky, you sure you can keep mum?" "Tom, we GOT to keep mum. You know that. That Injun devil wouldn't make any more of drownding us than a couple of cats, if we was to squeak 'bout this and they didn't hang him. Now, look-a-here, Tom, less take and swear to one another--that's what we got to do--swear to keep mum." "I'm agreed. It's the best thing. Would you just hold hands and swear that we--" "Oh no, that wouldn't do for this. That's good enough for little rubbishy common things--specially with gals, cuz THEY go back on you anyway, and blab if they get in a huff--but there orter be writing 'bout a big thing like this. And blood." Tom's whole being applauded this idea. It was deep, and dark, and awful; the hour, the circumstances, the surroundings, were in keeping with it. He picked up a clean pine shingle that lay in the moonlight, took a little fragment of "red keel" out of his pocket, got the moon on his work, and painfully scrawled these lines, emphasizing each slow down-stroke by clamping his tongue between his teeth, and letting up the pressure on the up-strokes. [See next page.] "Huck Finn and Tom Sawyer swears they will keep mum about This and They wish They may Drop down dead in Their Tracks if They ever Tell and Rot." Huckleberry was filled with admiration of Tom's facility in writing, and the sublimity of his language. He at once took a pin from his lapel and was going to prick his flesh, but Tom said: "Hold on! Don't do that. A pin's brass. It might have verdigrease on it." "What's verdigrease?" "It's p'ison. That's what it is. You just swaller some of it once --you'll see." So Tom unwound the thread from one of his needles, and each boy pricked the ball of his thumb and squeezed out a drop of blood. In time, after many squeezes, Tom managed to sign his initials, using the ball of his little finger for a pen. Then he showed Huckleberry how to make an H and an F, and the oath was complete. They buried the shingle close to the wall, with some dismal ceremonies and incantations, and the fetters that bound their tongues were considered to be locked and the key thrown away. A figure crept stealthily through a break in the other end of the ruined building, now, but they did not notice it. "Tom," whispered Huckleberry, "does this keep us from EVER telling --ALWAYS?" "Of course it does. It don't make any difference WHAT happens, we got to keep mum. We'd drop down dead--don't YOU know that?" "Yes, I reckon that's so." They continued to whisper for some little time. Presently a dog set up a long, lugubrious howl just outside--within ten feet of them. The boys clasped each other suddenly, in an agony of fright. "Which of us does he mean?" gasped Huckleberry. "I dono--peep through the crack. Quick!" "No, YOU, Tom!" "I can't--I can't DO it, Huck!" "Please, Tom. There 'tis again!" "Oh, lordy, I'm thankful!" whispered Tom. "I know his voice. It's Bull Harbison." * [* If Mr. Harbison owned a slave named Bull, Tom would have spoken of him as "Harbison's Bull," but a son or a dog of that name was "Bull Harbison."] "Oh, that's good--I tell you, Tom, I was most scared to death; I'd a bet anything it was a STRAY dog." The dog howled again. The boys' hearts sank once more. "Oh, my! that ain't no Bull Harbison!" whispered Huckleberry. "DO, Tom!" Tom, quaking with fear, yielded, and put his eye to the crack. His whisper was hardly audible when he said: "Oh, Huck, IT S A STRAY DOG!" "Quick, Tom, quick! Who does he mean?" "Huck, he must mean us both--we're right together." "Oh, Tom, I reckon we're goners. I reckon there ain't no mistake 'bout where I'LL go to. I been so wicked." "Dad fetch it! This comes of playing hookey and doing everything a feller's told NOT to do. I might a been good, like Sid, if I'd a tried --but no, I wouldn't, of course. But if ever I get off this time, I lay I'll just WALLER in Sunday-schools!" And Tom began to snuffle a little. "YOU bad!" and Huckleberry began to snuffle too. "Consound it, Tom Sawyer, you're just old pie, 'longside o' what I am. Oh, LORDY, lordy, lordy, I wisht I only had half your chance." Tom choked off and whispered: "Look, Hucky, look! He's got his BACK to us!" Hucky looked, with joy in his heart. "Well, he has, by jingoes! Did he before?" "Yes, he did. But I, like a fool, never thought. Oh, this is bully, you know. NOW who can he mean?" The howling stopped. Tom pricked up his ears. "Sh! What's that?" he whispered. "Sounds like--like hogs grunting. No--it's somebody snoring, Tom." "That IS it! Where 'bouts is it, Huck?" "I bleeve it's down at 'tother end. Sounds so, anyway. Pap used to sleep there, sometimes, 'long with the hogs, but laws bless you, he just lifts things when HE snores. Besides, I reckon he ain't ever coming back to this town any more." The spirit of adventure rose in the boys' souls once more. "Hucky, do you das't to go if I lead?" "I don't like to, much. Tom, s'pose it's Injun Joe!" Tom quailed. But presently the temptation rose up strong again and the boys agreed to try, with the understanding that they would take to their heels if the snoring stopped. So they went tiptoeing stealthily down, the one behind the other. When they had got to within five steps of the snorer, Tom stepped on a stick, and it broke with a sharp snap. The man moaned, writhed a little, and his face came into the moonlight. It was Muff Potter. The boys' hearts had stood still, and their hopes too, when the man moved, but their fears passed away now. They tiptoed out, through the broken weather-boarding, and stopped at a little distance to exchange a parting word. That long, lugubrious howl rose on the night air again! They turned and saw the strange dog standing within a few feet of where Potter was lying, and FACING Potter, with his nose pointing heavenward. "Oh, geeminy, it's HIM!" exclaimed both boys, in a breath. "Say, Tom--they say a stray dog come howling around Johnny Miller's house, 'bout midnight, as much as two weeks ago; and a whippoorwill come in and lit on the banisters and sung, the very same evening; and there ain't anybody dead there yet." "Well, I know that. And suppose there ain't. Didn't Gracie Miller fall in the kitchen fire and burn herself terrible the very next Saturday?" "Yes, but she ain't DEAD. And what's more, she's getting better, too." "All right, you wait and see. She's a goner, just as dead sure as Muff Potter's a goner. That's what the niggers say, and they know all about these kind of things, Huck." Then they separated, cogitating. When Tom crept in at his bedroom window the night was almost spent. He undressed with excessive caution, and fell asleep congratulating himself that nobody knew of his escapade. He was not aware that the gently-snoring Sid was awake, and had been so for an hour. When Tom awoke, Sid was dressed and gone. There was a late look in the light, a late sense in the atmosphere. He was startled. Why had he not been called--persecuted till he was up, as usual? The thought filled him with bodings. Within five minutes he was dressed and down-stairs, feeling sore and drowsy. The family were still at table, but they had finished breakfast. There was no voice of rebuke; but there were averted eyes; there was a silence and an air of solemnity that struck a chill to the culprit's heart. He sat down and tried to seem gay, but it was up-hill work; it roused no smile, no response, and he lapsed into silence and let his heart sink down to the depths. After breakfast his aunt took him aside, and Tom almost brightened in the hope that he was going to be flogged; but it was not so. His aunt wept over him and asked him how he could go and break her old heart so; and finally told him to go on, and ruin himself and bring her gray hairs with sorrow to the grave, for it was no use for her to try any more. This was worse than a thousand whippings, and Tom's heart was sorer now than his body. He cried, he pleaded for forgiveness, promised to reform over and over again, and then received his dismissal, feeling that he had won but an imperfect forgiveness and established but a feeble confidence. He left the presence too miserable to even feel revengeful toward Sid; and so the latter's prompt retreat through the back gate was unnecessary. He moped to school gloomy and sad, and took his flogging, along with Joe Harper, for playing hookey the day before, with the air of one whose heart was busy with heavier woes and wholly dead to trifles. Then he betook himself to his seat, rested his elbows on his desk and his jaws in his hands, and stared at the wall with the stony stare of suffering that has reached the limit and can no further go. His elbow was pressing against some hard substance. After a long time he slowly and sadly changed his position, and took up this object with a sigh. It was in a paper. He unrolled it. A long, lingering, colossal sigh followed, and his heart broke. It was his brass andiron knob! This final feather broke the camel's back. CHAPTER XI CLOSE upon the hour of noon the whole village was suddenly electrified with the ghastly news. No need of the as yet undreamed-of telegraph; the tale flew from man to man, from group to group, from house to house, with little less than telegraphic speed. Of course the schoolmaster gave holiday for that afternoon; the town would have thought strangely of him if he had not. A gory knife had been found close to the murdered man, and it had been recognized by somebody as belonging to Muff Potter--so the story ran. And it was said that a belated citizen had come upon Potter washing himself in the "branch" about one or two o'clock in the morning, and that Potter had at once sneaked off--suspicious circumstances, especially the washing which was not a habit with Potter. It was also said that the town had been ransacked for this "murderer" (the public are not slow in the matter of sifting evidence and arriving at a verdict), but that he could not be found. Horsemen had departed down all the roads in every direction, and the Sheriff "was confident" that he would be captured before night. All the town was drifting toward the graveyard. Tom's heartbreak vanished and he joined the procession, not because he would not a thousand times rather go anywhere else, but because an awful, unaccountable fascination drew him on. Arrived at the dreadful place, he wormed his small body through the crowd and saw the dismal spectacle. It seemed to him an age since he was there before. Somebody pinched his arm. He turned, and his eyes met Huckleberry's. Then both looked elsewhere at once, and wondered if anybody had noticed anything in their mutual glance. But everybody was talking, and intent upon the grisly spectacle before them. "Poor fellow!" "Poor young fellow!" "This ought to be a lesson to grave robbers!" "Muff Potter'll hang for this if they catch him!" This was the drift of remark; and the minister said, "It was a judgment; His hand is here." Now Tom shivered from head to heel; for his eye fell upon the stolid face of Injun Joe. At this moment the crowd began to sway and struggle, and voices shouted, "It's him! it's him! he's coming himself!" "Who? Who?" from twenty voices. "Muff Potter!" "Hallo, he's stopped!--Look out, he's turning! Don't let him get away!" People in the branches of the trees over Tom's head said he wasn't trying to get away--he only looked doubtful and perplexed. "Infernal impudence!" said a bystander; "wanted to come and take a quiet look at his work, I reckon--didn't expect any company." The crowd fell apart, now, and the Sheriff came through, ostentatiously leading Potter by the arm. The poor fellow's face was haggard, and his eyes showed the fear that was upon him. When he stood before the murdered man, he shook as with a palsy, and he put his face in his hands and burst into tears. "I didn't do it, friends," he sobbed; "'pon my word and honor I never done it." "Who's accused you?" shouted a voice. This shot seemed to carry home. Potter lifted his face and looked around him with a pathetic hopelessness in his eyes. He saw Injun Joe, and exclaimed: "Oh, Injun Joe, you promised me you'd never--" "Is that your knife?" and it was thrust before him by the Sheriff. Potter would have fallen if they had not caught him and eased him to the ground. Then he said: "Something told me 't if I didn't come back and get--" He shuddered; then waved his nerveless hand with a vanquished gesture and said, "Tell 'em, Joe, tell 'em--it ain't any use any more." Then Huckleberry and Tom stood dumb and staring, and heard the stony-hearted liar reel off his serene statement, they expecting every moment that the clear sky would deliver God's lightnings upon his head, and wondering to see how long the stroke was delayed. And when he had finished and still stood alive and whole, their wavering impulse to break their oath and save the poor betrayed prisoner's life faded and vanished away, for plainly this miscreant had sold himself to Satan and it would be fatal to meddle with the property of such a power as that. "Why didn't you leave? What did you want to come here for?" somebody said. "I couldn't help it--I couldn't help it," Potter moaned. "I wanted to run away, but I couldn't seem to come anywhere but here." And he fell to sobbing again. Injun Joe repeated his statement, just as calmly, a few minutes afterward on the inquest, under oath; and the boys, seeing that the lightnings were still withheld, were confirmed in their belief that Joe had sold himself to the devil. He was now become, to them, the most balefully interesting object they had ever looked upon, and they could not take their fascinated eyes from his face. They inwardly resolved to watch him nights, when opportunity should offer, in the hope of getting a glimpse of his dread master. Injun Joe helped to raise the body of the murdered man and put it in a wagon for removal; and it was whispered through the shuddering crowd that the wound bled a little! The boys thought that this happy circumstance would turn suspicion in the right direction; but they were disappointed, for more than one villager remarked: "It was within three feet of Muff Potter when it done it." Tom's fearful secret and gnawing conscience disturbed his sleep for as much as a week after this; and at breakfast one morning Sid said: "Tom, you pitch around and talk in your sleep so much that you keep me awake half the time." Tom blanched and dropped his eyes. "It's a bad sign," said Aunt Polly, gravely. "What you got on your mind, Tom?" "Nothing. Nothing 't I know of." But the boy's hand shook so that he spilled his coffee. "And you do talk such stuff," Sid said. "Last night you said, 'It's blood, it's blood, that's what it is!' You said that over and over. And you said, 'Don't torment me so--I'll tell!' Tell WHAT? What is it you'll tell?" Everything was swimming before Tom. There is no telling what might have happened, now, but luckily the concern passed out of Aunt Polly's face and she came to Tom's relief without knowing it. She said: "Sho! It's that dreadful murder. I dream about it most every night myself. Sometimes I dream it's me that done it." Mary said she had been affected much the same way. Sid seemed satisfied. Tom got out of the presence as quick as he plausibly could, and after that he complained of toothache for a week, and tied up his jaws every night. He never knew that Sid lay nightly watching, and frequently slipped the bandage free and then leaned on his elbow listening a good while at a time, and afterward slipped the bandage back to its place again. Tom's distress of mind wore off gradually and the toothache grew irksome and was discarded. If Sid really managed to make anything out of Tom's disjointed mutterings, he kept it to himself. It seemed to Tom that his schoolmates never would get done holding inquests on dead cats, and thus keeping his trouble present to his mind. Sid noticed that Tom never was coroner at one of these inquiries, though it had been his habit to take the lead in all new enterprises; he noticed, too, that Tom never acted as a witness--and that was strange; and Sid did not overlook the fact that Tom even showed a marked aversion to these inquests, and always avoided them when he could. Sid marvelled, but said nothing. However, even inquests went out of vogue at last, and ceased to torture Tom's conscience. Every day or two, during this time of sorrow, Tom watched his opportunity and went to the little grated jail-window and smuggled such small comforts through to the "murderer" as he could get hold of. The jail was a trifling little brick den that stood in a marsh at the edge of the village, and no guards were afforded for it; indeed, it was seldom occupied. These offerings greatly helped to ease Tom's conscience. The villagers had a strong desire to tar-and-feather Injun Joe and ride him on a rail, for body-snatching, but so formidable was his character that nobody could be found who was willing to take the lead in the matter, so it was dropped. He had been careful to begin both of his inquest-statements with the fight, without confessing the grave-robbery that preceded it; therefore it was deemed wisest not to try the case in the courts at present. CHAPTER XII ONE of the reasons why Tom's mind had drifted away from its secret troubles was, that it had found a new and weighty matter to interest itself about. Becky Thatcher had stopped coming to school. Tom had struggled with his pride a few days, and tried to "whistle her down the wind," but failed. He began to find himself hanging around her father's house, nights, and feeling very miserable. She was ill. What if she should die! There was distraction in the thought. He no longer took an interest in war, nor even in piracy. The charm of life was gone; there was nothing but dreariness left. He put his hoop away, and his bat; there was no joy in them any more. His aunt was concerned. She began to try all manner of remedies on him. She was one of those people who are infatuated with patent medicines and all new-fangled methods of producing health or mending it. She was an inveterate experimenter in these things. When something fresh in this line came out she was in a fever, right away, to try it; not on herself, for she was never ailing, but on anybody else that came handy. She was a subscriber for all the "Health" periodicals and phrenological frauds; and the solemn ignorance they were inflated with was breath to her nostrils. All the "rot" they contained about ventilation, and how to go to bed, and how to get up, and what to eat, and what to drink, and how much exercise to take, and what frame of mind to keep one's self in, and what sort of clothing to wear, was all gospel to her, and she never observed that her health-journals of the current month customarily upset everything they had recommended the month before. She was as simple-hearted and honest as the day was long, and so she was an easy victim. She gathered together her quack periodicals and her quack medicines, and thus armed with death, went about on her pale horse, metaphorically speaking, with "hell following after." But she never suspected that she was not an angel of healing and the balm of Gilead in disguise, to the suffering neighbors. The water treatment was new, now, and Tom's low condition was a windfall to her. She had him out at daylight every morning, stood him up in the woodshed and drowned him with a deluge of cold water; then she scrubbed him down with a towel like a file, and so brought him to; then she rolled him up in a wet sheet and put him away under blankets till she sweated his soul clean and "the yellow stains of it came through his pores"--as Tom said. Yet notwithstanding all this, the boy grew more and more melancholy and pale and dejected. She added hot baths, sitz baths, shower baths, and plunges. The boy remained as dismal as a hearse. She began to assist the water with a slim oatmeal diet and blister-plasters. She calculated his capacity as she would a jug's, and filled him up every day with quack cure-alls. Tom had become indifferent to persecution by this time. This phase filled the old lady's heart with consternation. This indifference must be broken up at any cost. Now she heard of Pain-killer for the first time. She ordered a lot at once. She tasted it and was filled with gratitude. It was simply fire in a liquid form. She dropped the water treatment and everything else, and pinned her faith to Pain-killer. She gave Tom a teaspoonful and watched with the deepest anxiety for the result. Her troubles were instantly at rest, her soul at peace again; for the "indifference" was broken up. The boy could not have shown a wilder, heartier interest, if she had built a fire under him. Tom felt that it was time to wake up; this sort of life might be romantic enough, in his blighted condition, but it was getting to have too little sentiment and too much distracting variety about it. So he thought over various plans for relief, and finally hit pon that of professing to be fond of Pain-killer. He asked for it so often that he became a nuisance, and his aunt ended by telling him to help himself and quit bothering her. If it had been Sid, she would have had no misgivings to alloy her delight; but since it was Tom, she watched the bottle clandestinely. She found that the medicine did really diminish, but it did not occur to her that the boy was mending the health of a crack in the sitting-room floor with it. One day Tom was in the act of dosing the crack when his aunt's yellow cat came along, purring, eying the teaspoon avariciously, and begging for a taste. Tom said: "Don't ask for it unless you want it, Peter." But Peter signified that he did want it. "You better make sure." Peter was sure. "Now you've asked for it, and I'll give it to you, because there ain't anything mean about me; but if you find you don't like it, you mustn't blame anybody but your own self." Peter was agreeable. So Tom pried his mouth open and poured down the Pain-killer. Peter sprang a couple of yards in the air, and then delivered a war-whoop and set off round and round the room, banging against furniture, upsetting flower-pots, and making general havoc. Next he rose on his hind feet and pranced around, in a frenzy of enjoyment, with his head over his shoulder and his voice proclaiming his unappeasable happiness. Then he went tearing around the house again spreading chaos and destruction in his path. Aunt Polly entered in time to see him throw a few double summersets, deliver a final mighty hurrah, and sail through the open window, carrying the rest of the flower-pots with him. The old lady stood petrified with astonishment, peering over her glasses; Tom lay on the floor expiring with laughter. "Tom, what on earth ails that cat?" "I don't know, aunt," gasped the boy. "Why, I never see anything like it. What did make him act so?" "Deed I don't know, Aunt Polly; cats always act so when they're having a good time." "They do, do they?" There was something in the tone that made Tom apprehensive. "Yes'm. That is, I believe they do." "You DO?" "Yes'm." The old lady was bending down, Tom watching, with interest emphasized by anxiety. Too late he divined her "drift." The handle of the telltale teaspoon was visible under the bed-valance. Aunt Polly took it, held it up. Tom winced, and dropped his eyes. Aunt Polly raised him by the usual handle--his ear--and cracked his head soundly with her thimble. "Now, sir, what did you want to treat that poor dumb beast so, for?" "I done it out of pity for him--because he hadn't any aunt." "Hadn't any aunt!--you numskull. What has that got to do with it?" "Heaps. Because if he'd had one she'd a burnt him out herself! She'd a roasted his bowels out of him 'thout any more feeling than if he was a human!" Aunt Polly felt a sudden pang of remorse. This was putting the thing in a new light; what was cruelty to a cat MIGHT be cruelty to a boy, too. She began to soften; she felt sorry. Her eyes watered a little, and she put her hand on Tom's head and said gently: "I was meaning for the best, Tom. And, Tom, it DID do you good." Tom looked up in her face with just a perceptible twinkle peeping through his gravity. "I know you was meaning for the best, aunty, and so was I with Peter. It done HIM good, too. I never see him get around so since--" "Oh, go 'long with you, Tom, before you aggravate me again. And you try and see if you can't be a good boy, for once, and you needn't take any more medicine." Tom reached school ahead of time. It was noticed that this strange thing had been occurring every day latterly. And now, as usual of late, he hung about the gate of the schoolyard instead of playing with his comrades. He was sick, he said, and he looked it. He tried to seem to be looking everywhere but whither he really was looking--down the road. Presently Jeff Thatcher hove in sight, and Tom's face lighted; he gazed a moment, and then turned sorrowfully away. When Jeff arrived, Tom accosted him; and "led up" warily to opportunities for remark about Becky, but the giddy lad never could see the bait. Tom watched and watched, hoping whenever a frisking frock came in sight, and hating the owner of it as soon as he saw she was not the right one. At last frocks ceased to appear, and he dropped hopelessly into the dumps; he entered the empty schoolhouse and sat down to suffer. Then one more frock passed in at the gate, and Tom's heart gave a great bound. The next instant he was out, and "going on" like an Indian; yelling, laughing, chasing boys, jumping over the fence at risk of life and limb, throwing handsprings, standing on his head--doing all the heroic things he could conceive of, and keeping a furtive eye out, all the while, to see if Becky Thatcher was noticing. But she seemed to be unconscious of it all; she never looked. Could it be possible that she was not aware that he was there? He carried his exploits to her immediate vicinity; came war-whooping around, snatched a boy's cap, hurled it to the roof of the schoolhouse, broke through a group of boys, tumbling them in every direction, and fell sprawling, himself, under Becky's nose, almost upsetting her--and she turned, with her nose in the air, and he heard her say: "Mf! some people think they're mighty smart--always showing off!" Tom's cheeks burned. He gathered himself up and sneaked off, crushed and crestfallen. CHAPTER XIII TOM'S mind was made up now. He was gloomy and desperate. He was a forsaken, friendless boy, he said; nobody loved him; when they found out what they had driven him to, perhaps they would be sorry; he had tried to do right and get along, but they would not let him; since nothing would do them but to be rid of him, let it be so; and let them blame HIM for the consequences--why shouldn't they? What right had the friendless to complain? Yes, they had forced him to it at last: he would lead a life of crime. There was no choice. By this time he was far down Meadow Lane, and the bell for school to "take up" tinkled faintly upon his ear. He sobbed, now, to think he should never, never hear that old familiar sound any more--it was very hard, but it was forced on him; since he was driven out into the cold world, he must submit--but he forgave them. Then the sobs came thick and fast. Just at this point he met his soul's sworn comrade, Joe Harper --hard-eyed, and with evidently a great and dismal purpose in his heart. Plainly here were "two souls with but a single thought." Tom, wiping his eyes with his sleeve, began to blubber out something about a resolution to escape from hard usage and lack of sympathy at home by roaming abroad into the great world never to return; and ended by hoping that Joe would not forget him. But it transpired that this was a request which Joe had just been going to make of Tom, and had come to hunt him up for that purpose. His mother had whipped him for drinking some cream which he had never tasted and knew nothing about; it was plain that she was tired of him and wished him to go; if she felt that way, there was nothing for him to do but succumb; he hoped she would be happy, and never regret having driven her poor boy out into the unfeeling world to suffer and die. As the two boys walked sorrowing along, they made a new compact to stand by each other and be brothers and never separate till death relieved them of their troubles. Then they began to lay their plans. Joe was for being a hermit, and living on crusts in a remote cave, and dying, some time, of cold and want and grief; but after listening to Tom, he conceded that there were some conspicuous advantages about a life of crime, and so he consented to be a pirate. Three miles below St. Petersburg, at a point where the Mississippi River was a trifle over a mile wide, there was a long, narrow, wooded island, with a shallow bar at the head of it, and this offered well as a rendezvous. It was not inhabited; it lay far over toward the further shore, abreast a dense and almost wholly unpeopled forest. So Jackson's Island was chosen. Who were to be the subjects of their piracies was a matter that did not occur to them. Then they hunted up Huckleberry Finn, and he joined them promptly, for all careers were one to him; he was indifferent. They presently separated to meet at a lonely spot on the river-bank two miles above the village at the favorite hour--which was midnight. There was a small log raft there which they meant to capture. Each would bring hooks and lines, and such provision as he could steal in the most dark and mysterious way--as became outlaws. And before the afternoon was done, they had all managed to enjoy the sweet glory of spreading the fact that pretty soon the town would "hear something." All who got this vague hint were cautioned to "be mum and wait." About midnight Tom arrived with a boiled ham and a few trifles, and stopped in a dense undergrowth on a small bluff overlooking the meeting-place. It was starlight, and very still. The mighty river lay like an ocean at rest. Tom listened a moment, but no sound disturbed the quiet. Then he gave a low, distinct whistle. It was answered from under the bluff. Tom whistled twice more; these signals were answered in the same way. Then a guarded voice said: "Who goes there?" "Tom Sawyer, the Black Avenger of the Spanish Main. Name your names." "Huck Finn the Red-Handed, and Joe Harper the Terror of the Seas." Tom had furnished these titles, from his favorite literature. "'Tis well. Give the countersign." Two hoarse whispers delivered the same awful word simultaneously to the brooding night: "BLOOD!" Then Tom tumbled his ham over the bluff and let himself down after it, tearing both skin and clothes to some extent in the effort. There was an easy, comfortable path along the shore under the bluff, but it lacked the advantages of difficulty and danger so valued by a pirate. The Terror of the Seas had brought a side of bacon, and had about worn himself out with getting it there. Finn the Red-Handed had stolen a skillet and a quantity of half-cured leaf tobacco, and had also brought a few corn-cobs to make pipes with. But none of the pirates smoked or "chewed" but himself. The Black Avenger of the Spanish Main said it would never do to start without some fire. That was a wise thought; matches were hardly known there in that day. They saw a fire smouldering upon a great raft a hundred yards above, and they went stealthily thither and helped themselves to a chunk. They made an imposing adventure of it, saying, "Hist!" every now and then, and suddenly halting with finger on lip; moving with hands on imaginary dagger-hilts; and giving orders in dismal whispers that if "the foe" stirred, to "let him have it to the hilt," because "dead men tell no tales." They knew well enough that the raftsmen were all down at the village laying in stores or having a spree, but still that was no excuse for their conducting this thing in an unpiratical way. They shoved off, presently, Tom in command, Huck at the after oar and Joe at the forward. Tom stood amidships, gloomy-browed, and with folded arms, and gave his orders in a low, stern whisper: "Luff, and bring her to the wind!" "Aye-aye, sir!" "Steady, steady-y-y-y!" "Steady it is, sir!" "Let her go off a point!" "Point it is, sir!" As the boys steadily and monotonously drove the raft toward mid-stream it was no doubt understood that these orders were given only for "style," and were not intended to mean anything in particular. "What sail's she carrying?" "Courses, tops'ls, and flying-jib, sir." "Send the r'yals up! Lay out aloft, there, half a dozen of ye --foretopmaststuns'l! Lively, now!" "Aye-aye, sir!" "Shake out that maintogalans'l! Sheets and braces! NOW my hearties!" "Aye-aye, sir!" "Hellum-a-lee--hard a port! Stand by to meet her when she comes! Port, port! NOW, men! With a will! Stead-y-y-y!" "Steady it is, sir!" The raft drew beyond the middle of the river; the boys pointed her head right, and then lay on their oars. The river was not high, so there was not more than a two or three mile current. Hardly a word was said during the next three-quarters of an hour. Now the raft was passing before the distant town. Two or three glimmering lights showed where it lay, peacefully sleeping, beyond the vague vast sweep of star-gemmed water, unconscious of the tremendous event that was happening. The Black Avenger stood still with folded arms, "looking his last" upon the scene of his former joys and his later sufferings, and wishing "she" could see him now, abroad on the wild sea, facing peril and death with dauntless heart, going to his doom with a grim smile on his lips. It was but a small strain on his imagination to remove Jackson's Island beyond eyeshot of the village, and so he "looked his last" with a broken and satisfied heart. The other pirates were looking their last, too; and they all looked so long that they came near letting the current drift them out of the range of the island. But they discovered the danger in time, and made shift to avert it. About two o'clock in the morning the raft grounded on the bar two hundred yards above the head of the island, and they waded back and forth until they had landed their freight. Part of the little raft's belongings consisted of an old sail, and this they spread over a nook in the bushes for a tent to shelter their provisions; but they themselves would sleep in the open air in good weather, as became outlaws. They built a fire against the side of a great log twenty or thirty steps within the sombre depths of the forest, and then cooked some bacon in the frying-pan for supper, and used up half of the corn "pone" stock they had brought. It seemed glorious sport to be feasting in that wild, free way in the virgin forest of an unexplored and uninhabited island, far from the haunts of men, and they said they never would return to civilization. The climbing fire lit up their faces and threw its ruddy glare upon the pillared tree-trunks of their forest temple, and upon the varnished foliage and festooning vines. When the last crisp slice of bacon was gone, and the last allowance of corn pone devoured, the boys stretched themselves out on the grass, filled with contentment. They could have found a cooler place, but they would not deny themselves such a romantic feature as the roasting camp-fire. "AIN'T it gay?" said Joe. "It's NUTS!" said Tom. "What would the boys say if they could see us?" "Say? Well, they'd just die to be here--hey, Hucky!" "I reckon so," said Huckleberry; "anyways, I'm suited. I don't want nothing better'n this. I don't ever get enough to eat, gen'ally--and here they can't come and pick at a feller and bullyrag him so." "It's just the life for me," said Tom. "You don't have to get up, mornings, and you don't have to go to school, and wash, and all that blame foolishness. You see a pirate don't have to do ANYTHING, Joe, when he's ashore, but a hermit HE has to be praying considerable, and then he don't have any fun, anyway, all by himself that way." "Oh yes, that's so," said Joe, "but I hadn't thought much about it, you know. I'd a good deal rather be a pirate, now that I've tried it." "You see," said Tom, "people don't go much on hermits, nowadays, like they used to in old times, but a pirate's always respected. And a hermit's got to sleep on the hardest place he can find, and put sackcloth and ashes on his head, and stand out in the rain, and--" "What does he put sackcloth and ashes on his head for?" inquired Huck. "I dono. But they've GOT to do it. Hermits always do. You'd have to do that if you was a hermit." "Dern'd if I would," said Huck. "Well, what would you do?" "I dono. But I wouldn't do that." "Why, Huck, you'd HAVE to. How'd you get around it?" "Why, I just wouldn't stand it. I'd run away." "Run away! Well, you WOULD be a nice old slouch of a hermit. You'd be a disgrace." The Red-Handed made no response, being better employed. He had finished gouging out a cob, and now he fitted a weed stem to it, loaded it with tobacco, and was pressing a coal to the charge and blowing a cloud of fragrant smoke--he was in the full bloom of luxurious contentment. The other pirates envied him this majestic vice, and secretly resolved to acquire it shortly. Presently Huck said: "What does pirates have to do?" Tom said: "Oh, they have just a bully time--take ships and burn them, and get the money and bury it in awful places in their island where there's ghosts and things to watch it, and kill everybody in the ships--make 'em walk a plank." "And they carry the women to the island," said Joe; "they don't kill the women." "No," assented Tom, "they don't kill the women--they're too noble. And the women's always beautiful, too. "And don't they wear the bulliest clothes! Oh no! All gold and silver and di'monds," said Joe, with enthusiasm. "Who?" said Huck. "Why, the pirates." Huck scanned his own clothing forlornly. "I reckon I ain't dressed fitten for a pirate," said he, with a regretful pathos in his voice; "but I ain't got none but these." But the other boys told him the fine clothes would come fast enough, after they should have begun their adventures. They made him understand that his poor rags would do to begin with, though it was customary for wealthy pirates to start with a proper wardrobe. Gradually their talk died out and drowsiness began to steal upon the eyelids of the little waifs. The pipe dropped from the fingers of the Red-Handed, and he slept the sleep of the conscience-free and the weary. The Terror of the Seas and the Black Avenger of the Spanish Main had more difficulty in getting to sleep. They said their prayers inwardly, and lying down, since there was nobody there with authority to make them kneel and recite aloud; in truth, they had a mind not to say them at all, but they were afraid to proceed to such lengths as that, lest they might call down a sudden and special thunderbolt from heaven. Then at once they reached and hovered upon the imminent verge of sleep--but an intruder came, now, that would not "down." It was conscience. They began to feel a vague fear that they had been doing wrong to run away; and next they thought of the stolen meat, and then the real torture came. They tried to argue it away by reminding conscience that they had purloined sweetmeats and apples scores of times; but conscience was not to be appeased by such thin plausibilities; it seemed to them, in the end, that there was no getting around the stubborn fact that taking sweetmeats was only "hooking," while taking bacon and hams and such valuables was plain simple stealing--and there was a command against that in the Bible. So they inwardly resolved that so long as they remained in the business, their piracies should not again be sullied with the crime of stealing. Then conscience granted a truce, and these curiously inconsistent pirates fell peacefully to sleep. CHAPTER XIV WHEN Tom awoke in the morning, he wondered where he was. He sat up and rubbed his eyes and looked around. Then he comprehended. It was the cool gray dawn, and there was a delicious sense of repose and peace in the deep pervading calm and silence of the woods. Not a leaf stirred; not a sound obtruded upon great Nature's meditation. Beaded dewdrops stood upon the leaves and grasses. A white layer of ashes covered the fire, and a thin blue breath of smoke rose straight into the air. Joe and Huck still slept. Now, far away in the woods a bird called; another answered; presently the hammering of a woodpecker was heard. Gradually the cool dim gray of the morning whitened, and as gradually sounds multiplied and life manifested itself. The marvel of Nature shaking off sleep and going to work unfolded itself to the musing boy. A little green worm came crawling over a dewy leaf, lifting two-thirds of his body into the air from time to time and "sniffing around," then proceeding again--for he was measuring, Tom said; and when the worm approached him, of its own accord, he sat as still as a stone, with his hopes rising and falling, by turns, as the creature still came toward him or seemed inclined to go elsewhere; and when at last it considered a painful moment with its curved body in the air and then came decisively down upon Tom's leg and began a journey over him, his whole heart was glad--for that meant that he was going to have a new suit of clothes--without the shadow of a doubt a gaudy piratical uniform. Now a procession of ants appeared, from nowhere in particular, and went about their labors; one struggled manfully by with a dead spider five times as big as itself in its arms, and lugged it straight up a tree-trunk. A brown spotted lady-bug climbed the dizzy height of a grass blade, and Tom bent down close to it and said, "Lady-bug, lady-bug, fly away home, your house is on fire, your children's alone," and she took wing and went off to see about it --which did not surprise the boy, for he knew of old that this insect was credulous about conflagrations, and he had practised upon its simplicity more than once. A tumblebug came next, heaving sturdily at its ball, and Tom touched the creature, to see it shut its legs against its body and pretend to be dead. The birds were fairly rioting by this time. A catbird, the Northern mocker, lit in a tree over Tom's head, and trilled out her imitations of her neighbors in a rapture of enjoyment; then a shrill jay swept down, a flash of blue flame, and stopped on a twig almost within the boy's reach, cocked his head to one side and eyed the strangers with a consuming curiosity; a gray squirrel and a big fellow of the "fox" kind came skurrying along, sitting up at intervals to inspect and chatter at the boys, for the wild things had probably never seen a human being before and scarcely knew whether to be afraid or not. All Nature was wide awake and stirring, now; long lances of sunlight pierced down through the dense foliage far and near, and a few butterflies came fluttering upon the scene. Tom stirred up the other pirates and they all clattered away with a shout, and in a minute or two were stripped and chasing after and tumbling over each other in the shallow limpid water of the white sandbar. They felt no longing for the little village sleeping in the distance beyond the majestic waste of water. A vagrant current or a slight rise in the river had carried off their raft, but this only gratified them, since its going was something like burning the bridge between them and civilization. They came back to camp wonderfully refreshed, glad-hearted, and ravenous; and they soon had the camp-fire blazing up again. Huck found a spring of clear cold water close by, and the boys made cups of broad oak or hickory leaves, and felt that water, sweetened with such a wildwood charm as that, would be a good enough substitute for coffee. While Joe was slicing bacon for breakfast, Tom and Huck asked him to hold on a minute; they stepped to a promising nook in the river-bank and threw in their lines; almost immediately they had reward. Joe had not had time to get impatient before they were back again with some handsome bass, a couple of sun-perch and a small catfish--provisions enough for quite a family. They fried the fish with the bacon, and were astonished; for no fish had ever seemed so delicious before. They did not know that the quicker a fresh-water fish is on the fire after he is caught the better he is; and they reflected little upon what a sauce open-air sleeping, open-air exercise, bathing, and a large ingredient of hunger make, too. They lay around in the shade, after breakfast, while Huck had a smoke, and then went off through the woods on an exploring expedition. They tramped gayly along, over decaying logs, through tangled underbrush, among solemn monarchs of the forest, hung from their crowns to the ground with a drooping regalia of grape-vines. Now and then they came upon snug nooks carpeted with grass and jeweled with flowers. They found plenty of things to be delighted with, but nothing to be astonished at. They discovered that the island was about three miles long and a quarter of a mile wide, and that the shore it lay closest to was only separated from it by a narrow channel hardly two hundred yards wide. They took a swim about every hour, so it was close upon the middle of the afternoon when they got back to camp. They were too hungry to stop to fish, but they fared sumptuously upon cold ham, and then threw themselves down in the shade to talk. But the talk soon began to drag, and then died. The stillness, the solemnity that brooded in the woods, and the sense of loneliness, began to tell upon the spirits of the boys. They fell to thinking. A sort of undefined longing crept upon them. This took dim shape, presently--it was budding homesickness. Even Finn the Red-Handed was dreaming of his doorsteps and empty hogsheads. But they were all ashamed of their weakness, and none was brave enough to speak his thought. For some time, now, the boys had been dully conscious of a peculiar sound in the distance, just as one sometimes is of the ticking of a clock which he takes no distinct note of. But now this mysterious sound became more pronounced, and forced a recognition. The boys started, glanced at each other, and then each assumed a listening attitude. There was a long silence, profound and unbroken; then a deep, sullen boom came floating down out of the distance. "What is it!" exclaimed Joe, under his breath. "I wonder," said Tom in a whisper. "'Tain't thunder," said Huckleberry, in an awed tone, "becuz thunder--" "Hark!" said Tom. "Listen--don't talk." They waited a time that seemed an age, and then the same muffled boom troubled the solemn hush. "Let's go and see." They sprang to their feet and hurried to the shore toward the town. They parted the bushes on the bank and peered out over the water. The little steam ferryboat was about a mile below the village, drifting with the current. Her broad deck seemed crowded with people. There were a great many skiffs rowing about or floating with the stream in the neighborhood of the ferryboat, but the boys could not determine what the men in them were doing. Presently a great jet of white smoke burst from the ferryboat's side, and as it expanded and rose in a lazy cloud, that same dull throb of sound was borne to the listeners again. "I know now!" exclaimed Tom; "somebody's drownded!" "That's it!" said Huck; "they done that last summer, when Bill Turner got drownded; they shoot a cannon over the water, and that makes him come up to the top. Yes, and they take loaves of bread and put quicksilver in 'em and set 'em afloat, and wherever there's anybody that's drownded, they'll float right there and stop." "Yes, I've heard about that," said Joe. "I wonder what makes the bread do that." "Oh, it ain't the bread, so much," said Tom; "I reckon it's mostly what they SAY over it before they start it out." "But they don't say anything over it," said Huck. "I've seen 'em and they don't." "Well, that's funny," said Tom. "But maybe they say it to themselves. Of COURSE they do. Anybody might know that." The other boys agreed that there was reason in what Tom said, because an ignorant lump of bread, uninstructed by an incantation, could not be expected to act very intelligently when set upon an errand of such gravity. "By jings, I wish I was over there, now," said Joe. "I do too" said Huck "I'd give heaps to know who it is." The boys still listened and watched. Presently a revealing thought flashed through Tom's mind, and he exclaimed: "Boys, I know who's drownded--it's us!" They felt like heroes in an instant. Here was a gorgeous triumph; they were missed; they were mourned; hearts were breaking on their account; tears were being shed; accusing memories of unkindness to these poor lost lads were rising up, and unavailing regrets and remorse were being indulged; and best of all, the departed were the talk of the whole town, and the envy of all the boys, as far as this dazzling notoriety was concerned. This was fine. It was worth while to be a pirate, after all. As twilight drew on, the ferryboat went back to her accustomed business and the skiffs disappeared. The pirates returned to camp. They were jubilant with vanity over their new grandeur and the illustrious trouble they were making. They caught fish, cooked supper and ate it, and then fell to guessing at what the village was thinking and saying about them; and the pictures they drew of the public distress on their account were gratifying to look upon--from their point of view. But when the shadows of night closed them in, they gradually ceased to talk, and sat gazing into the fire, with their minds evidently wandering elsewhere. The excitement was gone, now, and Tom and Joe could not keep back thoughts of certain persons at home who were not enjoying this fine frolic as much as they were. Misgivings came; they grew troubled and unhappy; a sigh or two escaped, unawares. By and by Joe timidly ventured upon a roundabout "feeler" as to how the others might look upon a return to civilization--not right now, but-- Tom withered him with derision! Huck, being uncommitted as yet, joined in with Tom, and the waverer quickly "explained," and was glad to get out of the scrape with as little taint of chicken-hearted homesickness clinging to his garments as he could. Mutiny was effectually laid to rest for the moment. As the night deepened, Huck began to nod, and presently to snore. Joe followed next. Tom lay upon his elbow motionless, for some time, watching the two intently. At last he got up cautiously, on his knees, and went searching among the grass and the flickering reflections flung by the camp-fire. He picked up and inspected several large semi-cylinders of the thin white bark of a sycamore, and finally chose two which seemed to suit him. Then he knelt by the fire and painfully wrote something upon each of these with his "red keel"; one he rolled up and put in his jacket pocket, and the other he put in Joe's hat and removed it to a little distance from the owner. And he also put into the hat certain schoolboy treasures of almost inestimable value--among them a lump of chalk, an India-rubber ball, three fishhooks, and one of that kind of marbles known as a "sure 'nough crystal." Then he tiptoed his way cautiously among the trees till he felt that he was out of hearing, and straightway broke into a keen run in the direction of the sandbar. CHAPTER XV A FEW minutes later Tom was in the shoal water of the bar, wading toward the Illinois shore. Before the depth reached his middle he was half-way over; the current would permit no more wading, now, so he struck out confidently to swim the remaining hundred yards. He swam quartering upstream, but still was swept downward rather faster than he had expected. However, he reached the shore finally, and drifted along till he found a low place and drew himself out. He put his hand on his jacket pocket, found his piece of bark safe, and then struck through the woods, following the shore, with streaming garments. Shortly before ten o'clock he came out into an open place opposite the village, and saw the ferryboat lying in the shadow of the trees and the high bank. Everything was quiet under the blinking stars. He crept down the bank, watching with all his eyes, slipped into the water, swam three or four strokes and climbed into the skiff that did "yawl" duty at the boat's stern. He laid himself down under the thwarts and waited, panting. Presently the cracked bell tapped and a voice gave the order to "cast off." A minute or two later the skiff's head was standing high up, against the boat's swell, and the voyage was begun. Tom felt happy in his success, for he knew it was the boat's last trip for the night. At the end of a long twelve or fifteen minutes the wheels stopped, and Tom slipped overboard and swam ashore in the dusk, landing fifty yards downstream, out of danger of possible stragglers. He flew along unfrequented alleys, and shortly found himself at his aunt's back fence. He climbed over, approached the "ell," and looked in at the sitting-room window, for a light was burning there. There sat Aunt Polly, Sid, Mary, and Joe Harper's mother, grouped together, talking. They were by the bed, and the bed was between them and the door. Tom went to the door and began to softly lift the latch; then he pressed gently and the door yielded a crack; he continued pushing cautiously, and quaking every time it creaked, till he judged he might squeeze through on his knees; so he put his head through and began, warily. "What makes the candle blow so?" said Aunt Polly. Tom hurried up. "Why, that door's open, I believe. Why, of course it is. No end of strange things now. Go 'long and shut it, Sid." Tom disappeared under the bed just in time. He lay and "breathed" himself for a time, and then crept to where he could almost touch his aunt's foot. "But as I was saying," said Aunt Polly, "he warn't BAD, so to say --only mischEEvous. Only just giddy, and harum-scarum, you know. He warn't any more responsible than a colt. HE never meant any harm, and he was the best-hearted boy that ever was"--and she began to cry. "It was just so with my Joe--always full of his devilment, and up to every kind of mischief, but he was just as unselfish and kind as he could be--and laws bless me, to think I went and whipped him for taking that cream, never once recollecting that I throwed it out myself because it was sour, and I never to see him again in this world, never, never, never, poor abused boy!" And Mrs. Harper sobbed as if her heart would break. "I hope Tom's better off where he is," said Sid, "but if he'd been better in some ways--" "SID!" Tom felt the glare of the old lady's eye, though he could not see it. "Not a word against my Tom, now that he's gone! God'll take care of HIM--never you trouble YOURself, sir! Oh, Mrs. Harper, I don't know how to give him up! I don't know how to give him up! He was such a comfort to me, although he tormented my old heart out of me, 'most." "The Lord giveth and the Lord hath taken away--Blessed be the name of the Lord! But it's so hard--Oh, it's so hard! Only last Saturday my Joe busted a firecracker right under my nose and I knocked him sprawling. Little did I know then, how soon--Oh, if it was to do over again I'd hug him and bless him for it." "Yes, yes, yes, I know just how you feel, Mrs. Harper, I know just exactly how you feel. No longer ago than yesterday noon, my Tom took and filled the cat full of Pain-killer, and I did think the cretur would tear the house down. And God forgive me, I cracked Tom's head with my thimble, poor boy, poor dead boy. But he's out of all his troubles now. And the last words I ever heard him say was to reproach--" But this memory was too much for the old lady, and she broke entirely down. Tom was snuffling, now, himself--and more in pity of himself than anybody else. He could hear Mary crying, and putting in a kindly word for him from time to time. He began to have a nobler opinion of himself than ever before. Still, he was sufficiently touched by his aunt's grief to long to rush out from under the bed and overwhelm her with joy--and the theatrical gorgeousness of the thing appealed strongly to his nature, too, but he resisted and lay still. He went on listening, and gathered by odds and ends that it was conjectured at first that the boys had got drowned while taking a swim; then the small raft had been missed; next, certain boys said the missing lads had promised that the village should "hear something" soon; the wise-heads had "put this and that together" and decided that the lads had gone off on that raft and would turn up at the next town below, presently; but toward noon the raft had been found, lodged against the Missouri shore some five or six miles below the village --and then hope perished; they must be drowned, else hunger would have driven them home by nightfall if not sooner. It was believed that the search for the bodies had been a fruitless effort merely because the drowning must have occurred in mid-channel, since the boys, being good swimmers, would otherwise have escaped to shore. This was Wednesday night. If the bodies continued missing until Sunday, all hope would be given over, and the funerals would be preached on that morning. Tom shuddered. Mrs. Harper gave a sobbing good-night and turned to go. Then with a mutual impulse the two bereaved women flung themselves into each other's arms and had a good, consoling cry, and then parted. Aunt Polly was tender far beyond her wont, in her good-night to Sid and Mary. Sid snuffled a bit and Mary went off crying with all her heart. Aunt Polly knelt down and prayed for Tom so touchingly, so appealingly, and with such measureless love in her words and her old trembling voice, that he was weltering in tears again, long before she was through. He had to keep still long after she went to bed, for she kept making broken-hearted ejaculations from time to time, tossing unrestfully, and turning over. But at last she was still, only moaning a little in her sleep. Now the boy stole out, rose gradually by the bedside, shaded the candle-light with his hand, and stood regarding her. His heart was full of pity for her. He took out his sycamore scroll and placed it by the candle. But something occurred to him, and he lingered considering. His face lighted with a happy solution of his thought; he put the bark hastily in his pocket. Then he bent over and kissed the faded lips, and straightway made his stealthy exit, latching the door behind him. He threaded his way back to the ferry landing, found nobody at large there, and walked boldly on board the boat, for he knew she was tenantless except that there was a watchman, who always turned in and slept like a graven image. He untied the skiff at the stern, slipped into it, and was soon rowing cautiously upstream. When he had pulled a mile above the village, he started quartering across and bent himself stoutly to his work. He hit the landing on the other side neatly, for this was a familiar bit of work to him. He was moved to capture the skiff, arguing that it might be considered a ship and therefore legitimate prey for a pirate, but he knew a thorough search would be made for it and that might end in revelations. So he stepped ashore and entered the woods. He sat down and took a long rest, torturing himself meanwhile to keep awake, and then started warily down the home-stretch. The night was far spent. It was broad daylight before he found himself fairly abreast the island bar. He rested again until the sun was well up and gilding the great river with its splendor, and then he plunged into the stream. A little later he paused, dripping, upon the threshold of the camp, and heard Joe say: "No, Tom's true-blue, Huck, and he'll come back. He won't desert. He knows that would be a disgrace to a pirate, and Tom's too proud for that sort of thing. He's up to something or other. Now I wonder what?" "Well, the things is ours, anyway, ain't they?" "Pretty near, but not yet, Huck. The writing says they are if he ain't back here to breakfast." "Which he is!" exclaimed Tom, with fine dramatic effect, stepping grandly into camp. A sumptuous breakfast of bacon and fish was shortly provided, and as the boys set to work upon it, Tom recounted (and adorned) his adventures. They were a vain and boastful company of heroes when the tale was done. Then Tom hid himself away in a shady nook to sleep till noon, and the other pirates got ready to fish and explore. CHAPTER XVI AFTER dinner all the gang turned out to hunt for turtle eggs on the bar. They went about poking sticks into the sand, and when they found a soft place they went down on their knees and dug with their hands. Sometimes they would take fifty or sixty eggs out of one hole. They were perfectly round white things a trifle smaller than an English walnut. They had a famous fried-egg feast that night, and another on Friday morning. After breakfast they went whooping and prancing out on the bar, and chased each other round and round, shedding clothes as they went, until they were naked, and then continued the frolic far away up the shoal water of the bar, against the stiff current, which latter tripped their legs from under them from time to time and greatly increased the fun. And now and then they stooped in a group and splashed water in each other's faces with their palms, gradually approaching each other, with averted faces to avoid the strangling sprays, and finally gripping and struggling till the best man ducked his neighbor, and then they all went under in a tangle of white legs and arms and came up blowing, sputtering, laughing, and gasping for breath at one and the same time. When they were well exhausted, they would run out and sprawl on the dry, hot sand, and lie there and cover themselves up with it, and by and by break for the water again and go through the original performance once more. Finally it occurred to them that their naked skin represented flesh-colored "tights" very fairly; so they drew a ring in the sand and had a circus--with three clowns in it, for none would yield this proudest post to his neighbor. Next they got their marbles and played "knucks" and "ring-taw" and "keeps" till that amusement grew stale. Then Joe and Huck had another swim, but Tom would not venture, because he found that in kicking off his trousers he had kicked his string of rattlesnake rattles off his ankle, and he wondered how he had escaped cramp so long without the protection of this mysterious charm. He did not venture again until he had found it, and by that time the other boys were tired and ready to rest. They gradually wandered apart, dropped into the "dumps," and fell to gazing longingly across the wide river to where the village lay drowsing in the sun. Tom found himself writing "BECKY" in the sand with his big toe; he scratched it out, and was angry with himself for his weakness. But he wrote it again, nevertheless; he could not help it. He erased it once more and then took himself out of temptation by driving the other boys together and joining them. But Joe's spirits had gone down almost beyond resurrection. He was so homesick that he could hardly endure the misery of it. The tears lay very near the surface. Huck was melancholy, too. Tom was downhearted, but tried hard not to show it. He had a secret which he was not ready to tell, yet, but if this mutinous depression was not broken up soon, he would have to bring it out. He said, with a great show of cheerfulness: "I bet there's been pirates on this island before, boys. We'll explore it again. They've hid treasures here somewhere. How'd you feel to light on a rotten chest full of gold and silver--hey?" But it roused only faint enthusiasm, which faded out, with no reply. Tom tried one or two other seductions; but they failed, too. It was discouraging work. Joe sat poking up the sand with a stick and looking very gloomy. Finally he said: "Oh, boys, let's give it up. I want to go home. It's so lonesome." "Oh no, Joe, you'll feel better by and by," said Tom. "Just think of the fishing that's here." "I don't care for fishing. I want to go home." "But, Joe, there ain't such another swimming-place anywhere." "Swimming's no good. I don't seem to care for it, somehow, when there ain't anybody to say I sha'n't go in. I mean to go home." "Oh, shucks! Baby! You want to see your mother, I reckon." "Yes, I DO want to see my mother--and you would, too, if you had one. I ain't any more baby than you are." And Joe snuffled a little. "Well, we'll let the cry-baby go home to his mother, won't we, Huck? Poor thing--does it want to see its mother? And so it shall. You like it here, don't you, Huck? We'll stay, won't we?" Huck said, "Y-e-s"--without any heart in it. "I'll never speak to you again as long as I live," said Joe, rising. "There now!" And he moved moodily away and began to dress himself. "Who cares!" said Tom. "Nobody wants you to. Go 'long home and get laughed at. Oh, you're a nice pirate. Huck and me ain't cry-babies. We'll stay, won't we, Huck? Let him go if he wants to. I reckon we can get along without him, per'aps." But Tom was uneasy, nevertheless, and was alarmed to see Joe go sullenly on with his dressing. And then it was discomforting to see Huck eying Joe's preparations so wistfully, and keeping up such an ominous silence. Presently, without a parting word, Joe began to wade off toward the Illinois shore. Tom's heart began to sink. He glanced at Huck. Huck could not bear the look, and dropped his eyes. Then he said: "I want to go, too, Tom. It was getting so lonesome anyway, and now it'll be worse. Let's us go, too, Tom." "I won't! You can all go, if you want to. I mean to stay." "Tom, I better go." "Well, go 'long--who's hendering you." Huck began to pick up his scattered clothes. He said: "Tom, I wisht you'd come, too. Now you think it over. We'll wait for you when we get to shore." "Well, you'll wait a blame long time, that's all." Huck started sorrowfully away, and Tom stood looking after him, with a strong desire tugging at his heart to yield his pride and go along too. He hoped the boys would stop, but they still waded slowly on. It suddenly dawned on Tom that it was become very lonely and still. He made one final struggle with his pride, and then darted after his comrades, yelling: "Wait! Wait! I want to tell you something!" They presently stopped and turned around. When he got to where they were, he began unfolding his secret, and they listened moodily till at last they saw the "point" he was driving at, and then they set up a war-whoop of applause and said it was "splendid!" and said if he had told them at first, they wouldn't have started away. He made a plausible excuse; but his real reason had been the fear that not even the secret would keep them with him any very great length of time, and so he had meant to hold it in reserve as a last seduction. The lads came gayly back and went at their sports again with a will, chattering all the time about Tom's stupendous plan and admiring the genius of it. After a dainty egg and fish dinner, Tom said he wanted to learn to smoke, now. Joe caught at the idea and said he would like to try, too. So Huck made pipes and filled them. These novices had never smoked anything before but cigars made of grape-vine, and they "bit" the tongue, and were not considered manly anyway. Now they stretched themselves out on their elbows and began to puff, charily, and with slender confidence. The smoke had an unpleasant taste, and they gagged a little, but Tom said: "Why, it's just as easy! If I'd a knowed this was all, I'd a learnt long ago." "So would I," said Joe. "It's just nothing." "Why, many a time I've looked at people smoking, and thought well I wish I could do that; but I never thought I could," said Tom. "That's just the way with me, hain't it, Huck? You've heard me talk just that way--haven't you, Huck? I'll leave it to Huck if I haven't." "Yes--heaps of times," said Huck. "Well, I have too," said Tom; "oh, hundreds of times. Once down by the slaughter-house. Don't you remember, Huck? Bob Tanner was there, and Johnny Miller, and Jeff Thatcher, when I said it. Don't you remember, Huck, 'bout me saying that?" "Yes, that's so," said Huck. "That was the day after I lost a white alley. No, 'twas the day before." "There--I told you so," said Tom. "Huck recollects it." "I bleeve I could smoke this pipe all day," said Joe. "I don't feel sick." "Neither do I," said Tom. "I could smoke it all day. But I bet you Jeff Thatcher couldn't." "Jeff Thatcher! Why, he'd keel over just with two draws. Just let him try it once. HE'D see!" "I bet he would. And Johnny Miller--I wish could see Johnny Miller tackle it once." "Oh, don't I!" said Joe. "Why, I bet you Johnny Miller couldn't any more do this than nothing. Just one little snifter would fetch HIM." "'Deed it would, Joe. Say--I wish the boys could see us now." "So do I." "Say--boys, don't say anything about it, and some time when they're around, I'll come up to you and say, 'Joe, got a pipe? I want a smoke.' And you'll say, kind of careless like, as if it warn't anything, you'll say, 'Yes, I got my OLD pipe, and another one, but my tobacker ain't very good.' And I'll say, 'Oh, that's all right, if it's STRONG enough.' And then you'll out with the pipes, and we'll light up just as ca'm, and then just see 'em look!" "By jings, that'll be gay, Tom! I wish it was NOW!" "So do I! And when we tell 'em we learned when we was off pirating, won't they wish they'd been along?" "Oh, I reckon not! I'll just BET they will!" So the talk ran on. But presently it began to flag a trifle, and grow disjointed. The silences widened; the expectoration marvellously increased. Every pore inside the boys' cheeks became a spouting fountain; they could scarcely bail out the cellars under their tongues fast enough to prevent an inundation; little overflowings down their throats occurred in spite of all they could do, and sudden retchings followed every time. Both boys were looking very pale and miserable, now. Joe's pipe dropped from his nerveless fingers. Tom's followed. Both fountains were going furiously and both pumps bailing with might and main. Joe said feebly: "I've lost my knife. I reckon I better go and find it." Tom said, with quivering lips and halting utterance: "I'll help you. You go over that way and I'll hunt around by the spring. No, you needn't come, Huck--we can find it." So Huck sat down again, and waited an hour. Then he found it lonesome, and went to find his comrades. They were wide apart in the woods, both very pale, both fast asleep. But something informed him that if they had had any trouble they had got rid of it. They were not talkative at supper that night. They had a humble look, and when Huck prepared his pipe after the meal and was going to prepare theirs, they said no, they were not feeling very well--something they ate at dinner had disagreed with them. About midnight Joe awoke, and called the boys. There was a brooding oppressiveness in the air that seemed to bode something. The boys huddled themselves together and sought the friendly companionship of the fire, though the dull dead heat of the breathless atmosphere was stifling. They sat still, intent and waiting. The solemn hush continued. Beyond the light of the fire everything was swallowed up in the blackness of darkness. Presently there came a quivering glow that vaguely revealed the foliage for a moment and then vanished. By and by another came, a little stronger. Then another. Then a faint moan came sighing through the branches of the forest and the boys felt a fleeting breath upon their cheeks, and shuddered with the fancy that the Spirit of the Night had gone by. There was a pause. Now a weird flash turned night into day and showed every little grass-blade, separate and distinct, that grew about their feet. And it showed three white, startled faces, too. A deep peal of thunder went rolling and tumbling down the heavens and lost itself in sullen rumblings in the distance. A sweep of chilly air passed by, rustling all the leaves and snowing the flaky ashes broadcast about the fire. Another fierce glare lit up the forest and an instant crash followed that seemed to rend the tree-tops right over the boys' heads. They clung together in terror, in the thick gloom that followed. A few big rain-drops fell pattering upon the leaves. "Quick! boys, go for the tent!" exclaimed Tom. They sprang away, stumbling over roots and among vines in the dark, no two plunging in the same direction. A furious blast roared through the trees, making everything sing as it went. One blinding flash after another came, and peal on peal of deafening thunder. And now a drenching rain poured down and the rising hurricane drove it in sheets along the ground. The boys cried out to each other, but the roaring wind and the booming thunder-blasts drowned their voices utterly. However, one by one they straggled in at last and took shelter under the tent, cold, scared, and streaming with water; but to have company in misery seemed something to be grateful for. They could not talk, the old sail flapped so furiously, even if the other noises would have allowed them. The tempest rose higher and higher, and presently the sail tore loose from its fastenings and went winging away on the blast. The boys seized each others' hands and fled, with many tumblings and bruises, to the shelter of a great oak that stood upon the river-bank. Now the battle was at its highest. Under the ceaseless conflagration of lightning that flamed in the skies, everything below stood out in clean-cut and shadowless distinctness: the bending trees, the billowy river, white with foam, the driving spray of spume-flakes, the dim outlines of the high bluffs on the other side, glimpsed through the drifting cloud-rack and the slanting veil of rain. Every little while some giant tree yielded the fight and fell crashing through the younger growth; and the unflagging thunder-peals came now in ear-splitting explosive bursts, keen and sharp, and unspeakably appalling. The storm culminated in one matchless effort that seemed likely to tear the island to pieces, burn it up, drown it to the tree-tops, blow it away, and deafen every creature in it, all at one and the same moment. It was a wild night for homeless young heads to be out in. But at last the battle was done, and the forces retired with weaker and weaker threatenings and grumblings, and peace resumed her sway. The boys went back to camp, a good deal awed; but they found there was still something to be thankful for, because the great sycamore, the shelter of their beds, was a ruin, now, blasted by the lightnings, and they were not under it when the catastrophe happened. Everything in camp was drenched, the camp-fire as well; for they were but heedless lads, like their generation, and had made no provision against rain. Here was matter for dismay, for they were soaked through and chilled. They were eloquent in their distress; but they presently discovered that the fire had eaten so far up under the great log it had been built against (where it curved upward and separated itself from the ground), that a handbreadth or so of it had escaped wetting; so they patiently wrought until, with shreds and bark gathered from the under sides of sheltered logs, they coaxed the fire to burn again. Then they piled on great dead boughs till they had a roaring furnace, and were glad-hearted once more. They dried their boiled ham and had a feast, and after that they sat by the fire and expanded and glorified their midnight adventure until morning, for there was not a dry spot to sleep on, anywhere around. As the sun began to steal in upon the boys, drowsiness came over them, and they went out on the sandbar and lay down to sleep. They got scorched out by and by, and drearily set about getting breakfast. After the meal they felt rusty, and stiff-jointed, and a little homesick once more. Tom saw the signs, and fell to cheering up the pirates as well as he could. But they cared nothing for marbles, or circus, or swimming, or anything. He reminded them of the imposing secret, and raised a ray of cheer. While it lasted, he got them interested in a new device. This was to knock off being pirates, for a while, and be Indians for a change. They were attracted by this idea; so it was not long before they were stripped, and striped from head to heel with black mud, like so many zebras--all of them chiefs, of course--and then they went tearing through the woods to attack an English settlement. By and by they separated into three hostile tribes, and darted upon each other from ambush with dreadful war-whoops, and killed and scalped each other by thousands. It was a gory day. Consequently it was an extremely satisfactory one. They assembled in camp toward supper-time, hungry and happy; but now a difficulty arose--hostile Indians could not break the bread of hospitality together without first making peace, and this was a simple impossibility without smoking a pipe of peace. There was no other process that ever they had heard of. Two of the savages almost wished they had remained pirates. However, there was no other way; so with such show of cheerfulness as they could muster they called for the pipe and took their whiff as it passed, in due form. And behold, they were glad they had gone into savagery, for they had gained something; they found that they could now smoke a little without having to go and hunt for a lost knife; they did not get sick enough to be seriously uncomfortable. They were not likely to fool away this high promise for lack of effort. No, they practised cautiously, after supper, with right fair success, and so they spent a jubilant evening. They were prouder and happier in their new acquirement than they would have been in the scalping and skinning of the Six Nations. We will leave them to smoke and chatter and brag, since we have no further use for them at present. CHAPTER XVII BUT there was no hilarity in the little town that same tranquil Saturday afternoon. The Harpers, and Aunt Polly's family, were being put into mourning, with great grief and many tears. An unusual quiet possessed the village, although it was ordinarily quiet enough, in all conscience. The villagers conducted their concerns with an absent air, and talked little; but they sighed often. The Saturday holiday seemed a burden to the children. They had no heart in their sports, and gradually gave them up. In the afternoon Becky Thatcher found herself moping about the deserted schoolhouse yard, and feeling very melancholy. But she found nothing there to comfort her. She soliloquized: "Oh, if I only had a brass andiron-knob again! But I haven't got anything now to remember him by." And she choked back a little sob. Presently she stopped, and said to herself: "It was right here. Oh, if it was to do over again, I wouldn't say that--I wouldn't say it for the whole world. But he's gone now; I'll never, never, never see him any more." This thought broke her down, and she wandered away, with tears rolling down her cheeks. Then quite a group of boys and girls--playmates of Tom's and Joe's--came by, and stood looking over the paling fence and talking in reverent tones of how Tom did so-and-so the last time they saw him, and how Joe said this and that small trifle (pregnant with awful prophecy, as they could easily see now!)--and each speaker pointed out the exact spot where the lost lads stood at the time, and then added something like "and I was a-standing just so--just as I am now, and as if you was him--I was as close as that--and he smiled, just this way--and then something seemed to go all over me, like--awful, you know--and I never thought what it meant, of course, but I can see now!" Then there was a dispute about who saw the dead boys last in life, and many claimed that dismal distinction, and offered evidences, more or less tampered with by the witness; and when it was ultimately decided who DID see the departed last, and exchanged the last words with them, the lucky parties took upon themselves a sort of sacred importance, and were gaped at and envied by all the rest. One poor chap, who had no other grandeur to offer, said with tolerably manifest pride in the remembrance: "Well, Tom Sawyer he licked me once." But that bid for glory was a failure. Most of the boys could say that, and so that cheapened the distinction too much. The group loitered away, still recalling memories of the lost heroes, in awed voices. When the Sunday-school hour was finished, the next morning, the bell began to toll, instead of ringing in the usual way. It was a very still Sabbath, and the mournful sound seemed in keeping with the musing hush that lay upon nature. The villagers began to gather, loitering a moment in the vestibule to converse in whispers about the sad event. But there was no whispering in the house; only the funereal rustling of dresses as the women gathered to their seats disturbed the silence there. None could remember when the little church had been so full before. There was finally a waiting pause, an expectant dumbness, and then Aunt Polly entered, followed by Sid and Mary, and they by the Harper family, all in deep black, and the whole congregation, the old minister as well, rose reverently and stood until the mourners were seated in the front pew. There was another communing silence, broken at intervals by muffled sobs, and then the minister spread his hands abroad and prayed. A moving hymn was sung, and the text followed: "I am the Resurrection and the Life." As the service proceeded, the clergyman drew such pictures of the graces, the winning ways, and the rare promise of the lost lads that every soul there, thinking he recognized these pictures, felt a pang in remembering that he had persistently blinded himself to them always before, and had as persistently seen only faults and flaws in the poor boys. The minister related many a touching incident in the lives of the departed, too, which illustrated their sweet, generous natures, and the people could easily see, now, how noble and beautiful those episodes were, and remembered with grief that at the time they occurred they had seemed rank rascalities, well deserving of the cowhide. The congregation became more and more moved, as the pathetic tale went on, till at last the whole company broke down and joined the weeping mourners in a chorus of anguished sobs, the preacher himself giving way to his feelings, and crying in the pulpit. There was a rustle in the gallery, which nobody noticed; a moment later the church door creaked; the minister raised his streaming eyes above his handkerchief, and stood transfixed! First one and then another pair of eyes followed the minister's, and then almost with one impulse the congregation rose and stared while the three dead boys came marching up the aisle, Tom in the lead, Joe next, and Huck, a ruin of drooping rags, sneaking sheepishly in the rear! They had been hid in the unused gallery listening to their own funeral sermon! Aunt Polly, Mary, and the Harpers threw themselves upon their restored ones, smothered them with kisses and poured out thanksgivings, while poor Huck stood abashed and uncomfortable, not knowing exactly what to do or where to hide from so many unwelcoming eyes. He wavered, and started to slink away, but Tom seized him and said: "Aunt Polly, it ain't fair. Somebody's got to be glad to see Huck." "And so they shall. I'm glad to see him, poor motherless thing!" And the loving attentions Aunt Polly lavished upon him were the one thing capable of making him more uncomfortable than he was before. Suddenly the minister shouted at the top of his voice: "Praise God from whom all blessings flow--SING!--and put your hearts in it!" And they did. Old Hundred swelled up with a triumphant burst, and while it shook the rafters Tom Sawyer the Pirate looked around upon the envying juveniles about him and confessed in his heart that this was the proudest moment of his life. As the "sold" congregation trooped out they said they would almost be willing to be made ridiculous again to hear Old Hundred sung like that once more. Tom got more cuffs and kisses that day--according to Aunt Polly's varying moods--than he had earned before in a year; and he hardly knew which expressed the most gratefulness to God and affection for himself. CHAPTER XVIII THAT was Tom's great secret--the scheme to return home with his brother pirates and attend their own funerals. They had paddled over to the Missouri shore on a log, at dusk on Saturday, landing five or six miles below the village; they had slept in the woods at the edge of the town till nearly daylight, and had then crept through back lanes and alleys and finished their sleep in the gallery of the church among a chaos of invalided benches. At breakfast, Monday morning, Aunt Polly and Mary were very loving to Tom, and very attentive to his wants. There was an unusual amount of talk. In the course of it Aunt Polly said: "Well, I don't say it wasn't a fine joke, Tom, to keep everybody suffering 'most a week so you boys had a good time, but it is a pity you could be so hard-hearted as to let me suffer so. If you could come over on a log to go to your funeral, you could have come over and give me a hint some way that you warn't dead, but only run off." "Yes, you could have done that, Tom," said Mary; "and I believe you would if you had thought of it." "Would you, Tom?" said Aunt Polly, her face lighting wistfully. "Say, now, would you, if you'd thought of it?" "I--well, I don't know. 'Twould 'a' spoiled everything." "Tom, I hoped you loved me that much," said Aunt Polly, with a grieved tone that discomforted the boy. "It would have been something if you'd cared enough to THINK of it, even if you didn't DO it." "Now, auntie, that ain't any harm," pleaded Mary; "it's only Tom's giddy way--he is always in such a rush that he never thinks of anything." "More's the pity. Sid would have thought. And Sid would have come and DONE it, too. Tom, you'll look back, some day, when it's too late, and wish you'd cared a little more for me when it would have cost you so little." "Now, auntie, you know I do care for you," said Tom. "I'd know it better if you acted more like it." "I wish now I'd thought," said Tom, with a repentant tone; "but I dreamt about you, anyway. That's something, ain't it?" "It ain't much--a cat does that much--but it's better than nothing. What did you dream?" "Why, Wednesday night I dreamt that you was sitting over there by the bed, and Sid was sitting by the woodbox, and Mary next to him." "Well, so we did. So we always do. I'm glad your dreams could take even that much trouble about us." "And I dreamt that Joe Harper's mother was here." "Why, she was here! Did you dream any more?" "Oh, lots. But it's so dim, now." "Well, try to recollect--can't you?" "Somehow it seems to me that the wind--the wind blowed the--the--" "Try harder, Tom! The wind did blow something. Come!" Tom pressed his fingers on his forehead an anxious minute, and then said: "I've got it now! I've got it now! It blowed the candle!" "Mercy on us! Go on, Tom--go on!" "And it seems to me that you said, 'Why, I believe that that door--'" "Go ON, Tom!" "Just let me study a moment--just a moment. Oh, yes--you said you believed the door was open." "As I'm sitting here, I did! Didn't I, Mary! Go on!" "And then--and then--well I won't be certain, but it seems like as if you made Sid go and--and--" "Well? Well? What did I make him do, Tom? What did I make him do?" "You made him--you--Oh, you made him shut it." "Well, for the land's sake! I never heard the beat of that in all my days! Don't tell ME there ain't anything in dreams, any more. Sereny Harper shall know of this before I'm an hour older. I'd like to see her get around THIS with her rubbage 'bout superstition. Go on, Tom!" "Oh, it's all getting just as bright as day, now. Next you said I warn't BAD, only mischeevous and harum-scarum, and not any more responsible than--than--I think it was a colt, or something." "And so it was! Well, goodness gracious! Go on, Tom!" "And then you began to cry." "So I did. So I did. Not the first time, neither. And then--" "Then Mrs. Harper she began to cry, and said Joe was just the same, and she wished she hadn't whipped him for taking cream when she'd throwed it out her own self--" "Tom! The sperrit was upon you! You was a prophesying--that's what you was doing! Land alive, go on, Tom!" "Then Sid he said--he said--" "I don't think I said anything," said Sid. "Yes you did, Sid," said Mary. "Shut your heads and let Tom go on! What did he say, Tom?" "He said--I THINK he said he hoped I was better off where I was gone to, but if I'd been better sometimes--" "THERE, d'you hear that! It was his very words!" "And you shut him up sharp." "I lay I did! There must 'a' been an angel there. There WAS an angel there, somewheres!" "And Mrs. Harper told about Joe scaring her with a firecracker, and you told about Peter and the Painkiller--" "Just as true as I live!" "And then there was a whole lot of talk 'bout dragging the river for us, and 'bout having the funeral Sunday, and then you and old Miss Harper hugged and cried, and she went." "It happened just so! It happened just so, as sure as I'm a-sitting in these very tracks. Tom, you couldn't told it more like if you'd 'a' seen it! And then what? Go on, Tom!" "Then I thought you prayed for me--and I could see you and hear every word you said. And you went to bed, and I was so sorry that I took and wrote on a piece of sycamore bark, 'We ain't dead--we are only off being pirates,' and put it on the table by the candle; and then you looked so good, laying there asleep, that I thought I went and leaned over and kissed you on the lips." "Did you, Tom, DID you! I just forgive you everything for that!" And she seized the boy in a crushing embrace that made him feel like the guiltiest of villains. "It was very kind, even though it was only a--dream," Sid soliloquized just audibly. "Shut up, Sid! A body does just the same in a dream as he'd do if he was awake. Here's a big Milum apple I've been saving for you, Tom, if you was ever found again--now go 'long to school. I'm thankful to the good God and Father of us all I've got you back, that's long-suffering and merciful to them that believe on Him and keep His word, though goodness knows I'm unworthy of it, but if only the worthy ones got His blessings and had His hand to help them over the rough places, there's few enough would smile here or ever enter into His rest when the long night comes. Go 'long Sid, Mary, Tom--take yourselves off--you've hendered me long enough." The children left for school, and the old lady to call on Mrs. Harper and vanquish her realism with Tom's marvellous dream. Sid had better judgment than to utter the thought that was in his mind as he left the house. It was this: "Pretty thin--as long a dream as that, without any mistakes in it!" What a hero Tom was become, now! He did not go skipping and prancing, but moved with a dignified swagger as became a pirate who felt that the public eye was on him. And indeed it was; he tried not to seem to see the looks or hear the remarks as he passed along, but they were food and drink to him. Smaller boys than himself flocked at his heels, as proud to be seen with him, and tolerated by him, as if he had been the drummer at the head of a procession or the elephant leading a menagerie into town. Boys of his own size pretended not to know he had been away at all; but they were consuming with envy, nevertheless. They would have given anything to have that swarthy suntanned skin of his, and his glittering notoriety; and Tom would not have parted with either for a circus. At school the children made so much of him and of Joe, and delivered such eloquent admiration from their eyes, that the two heroes were not long in becoming insufferably "stuck-up." They began to tell their adventures to hungry listeners--but they only began; it was not a thing likely to have an end, with imaginations like theirs to furnish material. And finally, when they got out their pipes and went serenely puffing around, the very summit of glory was reached. Tom decided that he could be independent of Becky Thatcher now. Glory was sufficient. He would live for glory. Now that he was distinguished, maybe she would be wanting to "make up." Well, let her--she should see that he could be as indifferent as some other people. Presently she arrived. Tom pretended not to see her. He moved away and joined a group of boys and girls and began to talk. Soon he observed that she was tripping gayly back and forth with flushed face and dancing eyes, pretending to be busy chasing schoolmates, and screaming with laughter when she made a capture; but he noticed that she always made her captures in his vicinity, and that she seemed to cast a conscious eye in his direction at such times, too. It gratified all the vicious vanity that was in him; and so, instead of winning him, it only "set him up" the more and made him the more diligent to avoid betraying that he knew she was about. Presently she gave over skylarking, and moved irresolutely about, sighing once or twice and glancing furtively and wistfully toward Tom. Then she observed that now Tom was talking more particularly to Amy Lawrence than to any one else. She felt a sharp pang and grew disturbed and uneasy at once. She tried to go away, but her feet were treacherous, and carried her to the group instead. She said to a girl almost at Tom's elbow--with sham vivacity: "Why, Mary Austin! you bad girl, why didn't you come to Sunday-school?" "I did come--didn't you see me?" "Why, no! Did you? Where did you sit?" "I was in Miss Peters' class, where I always go. I saw YOU." "Did you? Why, it's funny I didn't see you. I wanted to tell you about the picnic." "Oh, that's jolly. Who's going to give it?" "My ma's going to let me have one." "Oh, goody; I hope she'll let ME come." "Well, she will. The picnic's for me. She'll let anybody come that I want, and I want you." "That's ever so nice. When is it going to be?" "By and by. Maybe about vacation." "Oh, won't it be fun! You going to have all the girls and boys?" "Yes, every one that's friends to me--or wants to be"; and she glanced ever so furtively at Tom, but he talked right along to Amy Lawrence about the terrible storm on the island, and how the lightning tore the great sycamore tree "all to flinders" while he was "standing within three feet of it." "Oh, may I come?" said Grace Miller. "Yes." "And me?" said Sally Rogers. "Yes." "And me, too?" said Susy Harper. "And Joe?" "Yes." And so on, with clapping of joyful hands till all the group had begged for invitations but Tom and Amy. Then Tom turned coolly away, still talking, and took Amy with him. Becky's lips trembled and the tears came to her eyes; she hid these signs with a forced gayety and went on chattering, but the life had gone out of the picnic, now, and out of everything else; she got away as soon as she could and hid herself and had what her sex call "a good cry." Then she sat moody, with wounded pride, till the bell rang. She roused up, now, with a vindictive cast in her eye, and gave her plaited tails a shake and said she knew what SHE'D do. At recess Tom continued his flirtation with Amy with jubilant self-satisfaction. And he kept drifting about to find Becky and lacerate her with the performance. At last he spied her, but there was a sudden falling of his mercury. She was sitting cosily on a little bench behind the schoolhouse looking at a picture-book with Alfred Temple--and so absorbed were they, and their heads so close together over the book, that they did not seem to be conscious of anything in the world besides. Jealousy ran red-hot through Tom's veins. He began to hate himself for throwing away the chance Becky had offered for a reconciliation. He called himself a fool, and all the hard names he could think of. He wanted to cry with vexation. Amy chatted happily along, as they walked, for her heart was singing, but Tom's tongue had lost its function. He did not hear what Amy was saying, and whenever she paused expectantly he could only stammer an awkward assent, which was as often misplaced as otherwise. He kept drifting to the rear of the schoolhouse, again and again, to sear his eyeballs with the hateful spectacle there. He could not help it. And it maddened him to see, as he thought he saw, that Becky Thatcher never once suspected that he was even in the land of the living. But she did see, nevertheless; and she knew she was winning her fight, too, and was glad to see him suffer as she had suffered. Amy's happy prattle became intolerable. Tom hinted at things he had to attend to; things that must be done; and time was fleeting. But in vain--the girl chirped on. Tom thought, "Oh, hang her, ain't I ever going to get rid of her?" At last he must be attending to those things--and she said artlessly that she would be "around" when school let out. And he hastened away, hating her for it. "Any other boy!" Tom thought, grating his teeth. "Any boy in the whole town but that Saint Louis smarty that thinks he dresses so fine and is aristocracy! Oh, all right, I licked you the first day you ever saw this town, mister, and I'll lick you again! You just wait till I catch you out! I'll just take and--" And he went through the motions of thrashing an imaginary boy --pummelling the air, and kicking and gouging. "Oh, you do, do you? You holler 'nough, do you? Now, then, let that learn you!" And so the imaginary flogging was finished to his satisfaction. Tom fled home at noon. His conscience could not endure any more of Amy's grateful happiness, and his jealousy could bear no more of the other distress. Becky resumed her picture inspections with Alfred, but as the minutes dragged along and no Tom came to suffer, her triumph began to cloud and she lost interest; gravity and absent-mindedness followed, and then melancholy; two or three times she pricked up her ear at a footstep, but it was a false hope; no Tom came. At last she grew entirely miserable and wished she hadn't carried it so far. When poor Alfred, seeing that he was losing her, he did not know how, kept exclaiming: "Oh, here's a jolly one! look at this!" she lost patience at last, and said, "Oh, don't bother me! I don't care for them!" and burst into tears, and got up and walked away. Alfred dropped alongside and was going to try to comfort her, but she said: "Go away and leave me alone, can't you! I hate you!" So the boy halted, wondering what he could have done--for she had said she would look at pictures all through the nooning--and she walked on, crying. Then Alfred went musing into the deserted schoolhouse. He was humiliated and angry. He easily guessed his way to the truth--the girl had simply made a convenience of him to vent her spite upon Tom Sawyer. He was far from hating Tom the less when this thought occurred to him. He wished there was some way to get that boy into trouble without much risk to himself. Tom's spelling-book fell under his eye. Here was his opportunity. He gratefully opened to the lesson for the afternoon and poured ink upon the page. Becky, glancing in at a window behind him at the moment, saw the act, and moved on, without discovering herself. She started homeward, now, intending to find Tom and tell him; Tom would be thankful and their troubles would be healed. Before she was half way home, however, she had changed her mind. The thought of Tom's treatment of her when she was talking about her picnic came scorching back and filled her with shame. She resolved to let him get whipped on the damaged spelling-book's account, and to hate him forever, into the bargain. CHAPTER XIX TOM arrived at home in a dreary mood, and the first thing his aunt said to him showed him that he had brought his sorrows to an unpromising market: "Tom, I've a notion to skin you alive!" "Auntie, what have I done?" "Well, you've done enough. Here I go over to Sereny Harper, like an old softy, expecting I'm going to make her believe all that rubbage about that dream, when lo and behold you she'd found out from Joe that you was over here and heard all the talk we had that night. Tom, I don't know what is to become of a boy that will act like that. It makes me feel so bad to think you could let me go to Sereny Harper and make such a fool of myself and never say a word." This was a new aspect of the thing. His smartness of the morning had seemed to Tom a good joke before, and very ingenious. It merely looked mean and shabby now. He hung his head and could not think of anything to say for a moment. Then he said: "Auntie, I wish I hadn't done it--but I didn't think." "Oh, child, you never think. You never think of anything but your own selfishness. You could think to come all the way over here from Jackson's Island in the night to laugh at our troubles, and you could think to fool me with a lie about a dream; but you couldn't ever think to pity us and save us from sorrow." "Auntie, I know now it was mean, but I didn't mean to be mean. I didn't, honest. And besides, I didn't come over here to laugh at you that night." "What did you come for, then?" "It was to tell you not to be uneasy about us, because we hadn't got drownded." "Tom, Tom, I would be the thankfullest soul in this world if I could believe you ever had as good a thought as that, but you know you never did--and I know it, Tom." "Indeed and 'deed I did, auntie--I wish I may never stir if I didn't." "Oh, Tom, don't lie--don't do it. It only makes things a hundred times worse." "It ain't a lie, auntie; it's the truth. I wanted to keep you from grieving--that was all that made me come." "I'd give the whole world to believe that--it would cover up a power of sins, Tom. I'd 'most be glad you'd run off and acted so bad. But it ain't reasonable; because, why didn't you tell me, child?" "Why, you see, when you got to talking about the funeral, I just got all full of the idea of our coming and hiding in the church, and I couldn't somehow bear to spoil it. So I just put the bark back in my pocket and kept mum." "What bark?" "The bark I had wrote on to tell you we'd gone pirating. I wish, now, you'd waked up when I kissed you--I do, honest." The hard lines in his aunt's face relaxed and a sudden tenderness dawned in her eyes. "DID you kiss me, Tom?" "Why, yes, I did." "Are you sure you did, Tom?" "Why, yes, I did, auntie--certain sure." "What did you kiss me for, Tom?" "Because I loved you so, and you laid there moaning and I was so sorry." The words sounded like truth. The old lady could not hide a tremor in her voice when she said: "Kiss me again, Tom!--and be off with you to school, now, and don't bother me any more." The moment he was gone, she ran to a closet and got out the ruin of a jacket which Tom had gone pirating in. Then she stopped, with it in her hand, and said to herself: "No, I don't dare. Poor boy, I reckon he's lied about it--but it's a blessed, blessed lie, there's such a comfort come from it. I hope the Lord--I KNOW the Lord will forgive him, because it was such goodheartedness in him to tell it. But I don't want to find out it's a lie. I won't look." She put the jacket away, and stood by musing a minute. Twice she put out her hand to take the garment again, and twice she refrained. Once more she ventured, and this time she fortified herself with the thought: "It's a good lie--it's a good lie--I won't let it grieve me." So she sought the jacket pocket. A moment later she was reading Tom's piece of bark through flowing tears and saying: "I could forgive the boy, now, if he'd committed a million sins!" CHAPTER XX THERE was something about Aunt Polly's manner, when she kissed Tom, that swept away his low spirits and made him lighthearted and happy again. He started to school and had the luck of coming upon Becky Thatcher at the head of Meadow Lane. His mood always determined his manner. Without a moment's hesitation he ran to her and said: "I acted mighty mean to-day, Becky, and I'm so sorry. I won't ever, ever do that way again, as long as ever I live--please make up, won't you?" The girl stopped and looked him scornfully in the face: "I'll thank you to keep yourself TO yourself, Mr. Thomas Sawyer. I'll never speak to you again." She tossed her head and passed on. Tom was so stunned that he had not even presence of mind enough to say "Who cares, Miss Smarty?" until the right time to say it had gone by. So he said nothing. But he was in a fine rage, nevertheless. He moped into the schoolyard wishing she were a boy, and imagining how he would trounce her if she were. He presently encountered her and delivered a stinging remark as he passed. She hurled one in return, and the angry breach was complete. It seemed to Becky, in her hot resentment, that she could hardly wait for school to "take in," she was so impatient to see Tom flogged for the injured spelling-book. If she had had any lingering notion of exposing Alfred Temple, Tom's offensive fling had driven it entirely away. Poor girl, she did not know how fast she was nearing trouble herself. The master, Mr. Dobbins, had reached middle age with an unsatisfied ambition. The darling of his desires was, to be a doctor, but poverty had decreed that he should be nothing higher than a village schoolmaster. Every day he took a mysterious book out of his desk and absorbed himself in it at times when no classes were reciting. He kept that book under lock and key. There was not an urchin in school but was perishing to have a glimpse of it, but the chance never came. Every boy and girl had a theory about the nature of that book; but no two theories were alike, and there was no way of getting at the facts in the case. Now, as Becky was passing by the desk, which stood near the door, she noticed that the key was in the lock! It was a precious moment. She glanced around; found herself alone, and the next instant she had the book in her hands. The title-page--Professor Somebody's ANATOMY--carried no information to her mind; so she began to turn the leaves. She came at once upon a handsomely engraved and colored frontispiece--a human figure, stark naked. At that moment a shadow fell on the page and Tom Sawyer stepped in at the door and caught a glimpse of the picture. Becky snatched at the book to close it, and had the hard luck to tear the pictured page half down the middle. She thrust the volume into the desk, turned the key, and burst out crying with shame and vexation. "Tom Sawyer, you are just as mean as you can be, to sneak up on a person and look at what they're looking at." "How could I know you was looking at anything?" "You ought to be ashamed of yourself, Tom Sawyer; you know you're going to tell on me, and oh, what shall I do, what shall I do! I'll be whipped, and I never was whipped in school." Then she stamped her little foot and said: "BE so mean if you want to! I know something that's going to happen. You just wait and you'll see! Hateful, hateful, hateful!"--and she flung out of the house with a new explosion of crying. Tom stood still, rather flustered by this onslaught. Presently he said to himself: "What a curious kind of a fool a girl is! Never been licked in school! Shucks! What's a licking! That's just like a girl--they're so thin-skinned and chicken-hearted. Well, of course I ain't going to tell old Dobbins on this little fool, because there's other ways of getting even on her, that ain't so mean; but what of it? Old Dobbins will ask who it was tore his book. Nobody'll answer. Then he'll do just the way he always does--ask first one and then t'other, and when he comes to the right girl he'll know it, without any telling. Girls' faces always tell on them. They ain't got any backbone. She'll get licked. Well, it's a kind of a tight place for Becky Thatcher, because there ain't any way out of it." Tom conned the thing a moment longer, and then added: "All right, though; she'd like to see me in just such a fix--let her sweat it out!" Tom joined the mob of skylarking scholars outside. In a few moments the master arrived and school "took in." Tom did not feel a strong interest in his studies. Every time he stole a glance at the girls' side of the room Becky's face troubled him. Considering all things, he did not want to pity her, and yet it was all he could do to help it. He could get up no exultation that was really worthy the name. Presently the spelling-book discovery was made, and Tom's mind was entirely full of his own matters for a while after that. Becky roused up from her lethargy of distress and showed good interest in the proceedings. She did not expect that Tom could get out of his trouble by denying that he spilt the ink on the book himself; and she was right. The denial only seemed to make the thing worse for Tom. Becky supposed she would be glad of that, and she tried to believe she was glad of it, but she found she was not certain. When the worst came to the worst, she had an impulse to get up and tell on Alfred Temple, but she made an effort and forced herself to keep still--because, said she to herself, "he'll tell about me tearing the picture sure. I wouldn't say a word, not to save his life!" Tom took his whipping and went back to his seat not at all broken-hearted, for he thought it was possible that he had unknowingly upset the ink on the spelling-book himself, in some skylarking bout--he had denied it for form's sake and because it was custom, and had stuck to the denial from principle. A whole hour drifted by, the master sat nodding in his throne, the air was drowsy with the hum of study. By and by, Mr. Dobbins straightened himself up, yawned, then unlocked his desk, and reached for his book, but seemed undecided whether to take it out or leave it. Most of the pupils glanced up languidly, but there were two among them that watched his movements with intent eyes. Mr. Dobbins fingered his book absently for a while, then took it out and settled himself in his chair to read! Tom shot a glance at Becky. He had seen a hunted and helpless rabbit look as she did, with a gun levelled at its head. Instantly he forgot his quarrel with her. Quick--something must be done! done in a flash, too! But the very imminence of the emergency paralyzed his invention. Good!--he had an inspiration! He would run and snatch the book, spring through the door and fly. But his resolution shook for one little instant, and the chance was lost--the master opened the volume. If Tom only had the wasted opportunity back again! Too late. There was no help for Becky now, he said. The next moment the master faced the school. Every eye sank under his gaze. There was that in it which smote even the innocent with fear. There was silence while one might count ten --the master was gathering his wrath. Then he spoke: "Who tore this book?" There was not a sound. One could have heard a pin drop. The stillness continued; the master searched face after face for signs of guilt. "Benjamin Rogers, did you tear this book?" A denial. Another pause. "Joseph Harper, did you?" Another denial. Tom's uneasiness grew more and more intense under the slow torture of these proceedings. The master scanned the ranks of boys--considered a while, then turned to the girls: "Amy Lawrence?" A shake of the head. "Gracie Miller?" The same sign. "Susan Harper, did you do this?" Another negative. The next girl was Becky Thatcher. Tom was trembling from head to foot with excitement and a sense of the hopelessness of the situation. "Rebecca Thatcher" [Tom glanced at her face--it was white with terror] --"did you tear--no, look me in the face" [her hands rose in appeal] --"did you tear this book?" A thought shot like lightning through Tom's brain. He sprang to his feet and shouted--"I done it!" The school stared in perplexity at this incredible folly. Tom stood a moment, to gather his dismembered faculties; and when he stepped forward to go to his punishment the surprise, the gratitude, the adoration that shone upon him out of poor Becky's eyes seemed pay enough for a hundred floggings. Inspired by the splendor of his own act, he took without an outcry the most merciless flaying that even Mr. Dobbins had ever administered; and also received with indifference the added cruelty of a command to remain two hours after school should be dismissed--for he knew who would wait for him outside till his captivity was done, and not count the tedious time as loss, either. Tom went to bed that night planning vengeance against Alfred Temple; for with shame and repentance Becky had told him all, not forgetting her own treachery; but even the longing for vengeance had to give way, soon, to pleasanter musings, and he fell asleep at last with Becky's latest words lingering dreamily in his ear-- "Tom, how COULD you be so noble!" CHAPTER XXI VACATION was approaching. The schoolmaster, always severe, grew severer and more exacting than ever, for he wanted the school to make a good showing on "Examination" day. His rod and his ferule were seldom idle now--at least among the smaller pupils. Only the biggest boys, and young ladies of eighteen and twenty, escaped lashing. Mr. Dobbins' lashings were very vigorous ones, too; for although he carried, under his wig, a perfectly bald and shiny head, he had only reached middle age, and there was no sign of feebleness in his muscle. As the great day approached, all the tyranny that was in him came to the surface; he seemed to take a vindictive pleasure in punishing the least shortcomings. The consequence was, that the smaller boys spent their days in terror and suffering and their nights in plotting revenge. They threw away no opportunity to do the master a mischief. But he kept ahead all the time. The retribution that followed every vengeful success was so sweeping and majestic that the boys always retired from the field badly worsted. At last they conspired together and hit upon a plan that promised a dazzling victory. They swore in the sign-painter's boy, told him the scheme, and asked his help. He had his own reasons for being delighted, for the master boarded in his father's family and had given the boy ample cause to hate him. The master's wife would go on a visit to the country in a few days, and there would be nothing to interfere with the plan; the master always prepared himself for great occasions by getting pretty well fuddled, and the sign-painter's boy said that when the dominie had reached the proper condition on Examination Evening he would "manage the thing" while he napped in his chair; then he would have him awakened at the right time and hurried away to school. In the fulness of time the interesting occasion arrived. At eight in the evening the schoolhouse was brilliantly lighted, and adorned with wreaths and festoons of foliage and flowers. The master sat throned in his great chair upon a raised platform, with his blackboard behind him. He was looking tolerably mellow. Three rows of benches on each side and six rows in front of him were occupied by the dignitaries of the town and by the parents of the pupils. To his left, back of the rows of citizens, was a spacious temporary platform upon which were seated the scholars who were to take part in the exercises of the evening; rows of small boys, washed and dressed to an intolerable state of discomfort; rows of gawky big boys; snowbanks of girls and young ladies clad in lawn and muslin and conspicuously conscious of their bare arms, their grandmothers' ancient trinkets, their bits of pink and blue ribbon and the flowers in their hair. All the rest of the house was filled with non-participating scholars. The exercises began. A very little boy stood up and sheepishly recited, "You'd scarce expect one of my age to speak in public on the stage," etc.--accompanying himself with the painfully exact and spasmodic gestures which a machine might have used--supposing the machine to be a trifle out of order. But he got through safely, though cruelly scared, and got a fine round of applause when he made his manufactured bow and retired. A little shamefaced girl lisped, "Mary had a little lamb," etc., performed a compassion-inspiring curtsy, got her meed of applause, and sat down flushed and happy. Tom Sawyer stepped forward with conceited confidence and soared into the unquenchable and indestructible "Give me liberty or give me death" speech, with fine fury and frantic gesticulation, and broke down in the middle of it. A ghastly stage-fright seized him, his legs quaked under him and he was like to choke. True, he had the manifest sympathy of the house but he had the house's silence, too, which was even worse than its sympathy. The master frowned, and this completed the disaster. Tom struggled awhile and then retired, utterly defeated. There was a weak attempt at applause, but it died early. "The Boy Stood on the Burning Deck" followed; also "The Assyrian Came Down," and other declamatory gems. Then there were reading exercises, and a spelling fight. The meagre Latin class recited with honor. The prime feature of the evening was in order, now--original "compositions" by the young ladies. Each in her turn stepped forward to the edge of the platform, cleared her throat, held up her manuscript (tied with dainty ribbon), and proceeded to read, with labored attention to "expression" and punctuation. The themes were the same that had been illuminated upon similar occasions by their mothers before them, their grandmothers, and doubtless all their ancestors in the female line clear back to the Crusades. "Friendship" was one; "Memories of Other Days"; "Religion in History"; "Dream Land"; "The Advantages of Culture"; "Forms of Political Government Compared and Contrasted"; "Melancholy"; "Filial Love"; "Heart Longings," etc., etc. A prevalent feature in these compositions was a nursed and petted melancholy; another was a wasteful and opulent gush of "fine language"; another was a tendency to lug in by the ears particularly prized words and phrases until they were worn entirely out; and a peculiarity that conspicuously marked and marred them was the inveterate and intolerable sermon that wagged its crippled tail at the end of each and every one of them. No matter what the subject might be, a brain-racking effort was made to squirm it into some aspect or other that the moral and religious mind could contemplate with edification. The glaring insincerity of these sermons was not sufficient to compass the banishment of the fashion from the schools, and it is not sufficient to-day; it never will be sufficient while the world stands, perhaps. There is no school in all our land where the young ladies do not feel obliged to close their compositions with a sermon; and you will find that the sermon of the most frivolous and the least religious girl in the school is always the longest and the most relentlessly pious. But enough of this. Homely truth is unpalatable. Let us return to the "Examination." The first composition that was read was one entitled "Is this, then, Life?" Perhaps the reader can endure an extract from it: "In the common walks of life, with what delightful emotions does the youthful mind look forward to some anticipated scene of festivity! Imagination is busy sketching rose-tinted pictures of joy. In fancy, the voluptuous votary of fashion sees herself amid the festive throng, 'the observed of all observers.' Her graceful form, arrayed in snowy robes, is whirling through the mazes of the joyous dance; her eye is brightest, her step is lightest in the gay assembly. "In such delicious fancies time quickly glides by, and the welcome hour arrives for her entrance into the Elysian world, of which she has had such bright dreams. How fairy-like does everything appear to her enchanted vision! Each new scene is more charming than the last. But after a while she finds that beneath this goodly exterior, all is vanity, the flattery which once charmed her soul, now grates harshly upon her ear; the ball-room has lost its charms; and with wasted health and imbittered heart, she turns away with the conviction that earthly pleasures cannot satisfy the longings of the soul!" And so forth and so on. There was a buzz of gratification from time to time during the reading, accompanied by whispered ejaculations of "How sweet!" "How eloquent!" "So true!" etc., and after the thing had closed with a peculiarly afflicting sermon the applause was enthusiastic. Then arose a slim, melancholy girl, whose face had the "interesting" paleness that comes of pills and indigestion, and read a "poem." Two stanzas of it will do: "A MISSOURI MAIDEN'S FAREWELL TO ALABAMA "Alabama, good-bye! I love thee well! But yet for a while do I leave thee now! Sad, yes, sad thoughts of thee my heart doth swell, And burning recollections throng my brow! For I have wandered through thy flowery woods; Have roamed and read near Tallapoosa's stream; Have listened to Tallassee's warring floods, And wooed on Coosa's side Aurora's beam. "Yet shame I not to bear an o'er-full heart, Nor blush to turn behind my tearful eyes; 'Tis from no stranger land I now must part, 'Tis to no strangers left I yield these sighs. Welcome and home were mine within this State, Whose vales I leave--whose spires fade fast from me And cold must be mine eyes, and heart, and tete, When, dear Alabama! they turn cold on thee!" There were very few there who knew what "tete" meant, but the poem was very satisfactory, nevertheless. Next appeared a dark-complexioned, black-eyed, black-haired young lady, who paused an impressive moment, assumed a tragic expression, and began to read in a measured, solemn tone: "A VISION "Dark and tempestuous was night. Around the throne on high not a single star quivered; but the deep intonations of the heavy thunder constantly vibrated upon the ear; whilst the terrific lightning revelled in angry mood through the cloudy chambers of heaven, seeming to scorn the power exerted over its terror by the illustrious Franklin! Even the boisterous winds unanimously came forth from their mystic homes, and blustered about as if to enhance by their aid the wildness of the scene. "At such a time, so dark, so dreary, for human sympathy my very spirit sighed; but instead thereof, "'My dearest friend, my counsellor, my comforter and guide--My joy in grief, my second bliss in joy,' came to my side. She moved like one of those bright beings pictured in the sunny walks of fancy's Eden by the romantic and young, a queen of beauty unadorned save by her own transcendent loveliness. So soft was her step, it failed to make even a sound, and but for the magical thrill imparted by her genial touch, as other unobtrusive beauties, she would have glided away un-perceived--unsought. A strange sadness rested upon her features, like icy tears upon the robe of December, as she pointed to the contending elements without, and bade me contemplate the two beings presented." This nightmare occupied some ten pages of manuscript and wound up with a sermon so destructive of all hope to non-Presbyterians that it took the first prize. This composition was considered to be the very finest effort of the evening. The mayor of the village, in delivering the prize to the author of it, made a warm speech in which he said that it was by far the most "eloquent" thing he had ever listened to, and that Daniel Webster himself might well be proud of it. It may be remarked, in passing, that the number of compositions in which the word "beauteous" was over-fondled, and human experience referred to as "life's page," was up to the usual average. Now the master, mellow almost to the verge of geniality, put his chair aside, turned his back to the audience, and began to draw a map of America on the blackboard, to exercise the geography class upon. But he made a sad business of it with his unsteady hand, and a smothered titter rippled over the house. He knew what the matter was, and set himself to right it. He sponged out lines and remade them; but he only distorted them more than ever, and the tittering was more pronounced. He threw his entire attention upon his work, now, as if determined not to be put down by the mirth. He felt that all eyes were fastened upon him; he imagined he was succeeding, and yet the tittering continued; it even manifestly increased. And well it might. There was a garret above, pierced with a scuttle over his head; and down through this scuttle came a cat, suspended around the haunches by a string; she had a rag tied about her head and jaws to keep her from mewing; as she slowly descended she curved upward and clawed at the string, she swung downward and clawed at the intangible air. The tittering rose higher and higher--the cat was within six inches of the absorbed teacher's head--down, down, a little lower, and she grabbed his wig with her desperate claws, clung to it, and was snatched up into the garret in an instant with her trophy still in her possession! And how the light did blaze abroad from the master's bald pate--for the sign-painter's boy had GILDED it! That broke up the meeting. The boys were avenged. Vacation had come. NOTE:--The pretended "compositions" quoted in this chapter are taken without alteration from a volume entitled "Prose and Poetry, by a Western Lady"--but they are exactly and precisely after the schoolgirl pattern, and hence are much happier than any mere imitations could be. CHAPTER XXII TOM joined the new order of Cadets of Temperance, being attracted by the showy character of their "regalia." He promised to abstain from smoking, chewing, and profanity as long as he remained a member. Now he found out a new thing--namely, that to promise not to do a thing is the surest way in the world to make a body want to go and do that very thing. Tom soon found himself tormented with a desire to drink and swear; the desire grew to be so intense that nothing but the hope of a chance to display himself in his red sash kept him from withdrawing from the order. Fourth of July was coming; but he soon gave that up --gave it up before he had worn his shackles over forty-eight hours--and fixed his hopes upon old Judge Frazer, justice of the peace, who was apparently on his deathbed and would have a big public funeral, since he was so high an official. During three days Tom was deeply concerned about the Judge's condition and hungry for news of it. Sometimes his hopes ran high--so high that he would venture to get out his regalia and practise before the looking-glass. But the Judge had a most discouraging way of fluctuating. At last he was pronounced upon the mend--and then convalescent. Tom was disgusted; and felt a sense of injury, too. He handed in his resignation at once--and that night the Judge suffered a relapse and died. Tom resolved that he would never trust a man like that again. The funeral was a fine thing. The Cadets paraded in a style calculated to kill the late member with envy. Tom was a free boy again, however --there was something in that. He could drink and swear, now--but found to his surprise that he did not want to. The simple fact that he could, took the desire away, and the charm of it. Tom presently wondered to find that his coveted vacation was beginning to hang a little heavily on his hands. He attempted a diary--but nothing happened during three days, and so he abandoned it. The first of all the negro minstrel shows came to town, and made a sensation. Tom and Joe Harper got up a band of performers and were happy for two days. Even the Glorious Fourth was in some sense a failure, for it rained hard, there was no procession in consequence, and the greatest man in the world (as Tom supposed), Mr. Benton, an actual United States Senator, proved an overwhelming disappointment--for he was not twenty-five feet high, nor even anywhere in the neighborhood of it. A circus came. The boys played circus for three days afterward in tents made of rag carpeting--admission, three pins for boys, two for girls--and then circusing was abandoned. A phrenologist and a mesmerizer came--and went again and left the village duller and drearier than ever. There were some boys-and-girls' parties, but they were so few and so delightful that they only made the aching voids between ache the harder. Becky Thatcher was gone to her Constantinople home to stay with her parents during vacation--so there was no bright side to life anywhere. The dreadful secret of the murder was a chronic misery. It was a very cancer for permanency and pain. Then came the measles. During two long weeks Tom lay a prisoner, dead to the world and its happenings. He was very ill, he was interested in nothing. When he got upon his feet at last and moved feebly down-town, a melancholy change had come over everything and every creature. There had been a "revival," and everybody had "got religion," not only the adults, but even the boys and girls. Tom went about, hoping against hope for the sight of one blessed sinful face, but disappointment crossed him everywhere. He found Joe Harper studying a Testament, and turned sadly away from the depressing spectacle. He sought Ben Rogers, and found him visiting the poor with a basket of tracts. He hunted up Jim Hollis, who called his attention to the precious blessing of his late measles as a warning. Every boy he encountered added another ton to his depression; and when, in desperation, he flew for refuge at last to the bosom of Huckleberry Finn and was received with a Scriptural quotation, his heart broke and he crept home and to bed realizing that he alone of all the town was lost, forever and forever. And that night there came on a terrific storm, with driving rain, awful claps of thunder and blinding sheets of lightning. He covered his head with the bedclothes and waited in a horror of suspense for his doom; for he had not the shadow of a doubt that all this hubbub was about him. He believed he had taxed the forbearance of the powers above to the extremity of endurance and that this was the result. It might have seemed to him a waste of pomp and ammunition to kill a bug with a battery of artillery, but there seemed nothing incongruous about the getting up such an expensive thunderstorm as this to knock the turf from under an insect like himself. By and by the tempest spent itself and died without accomplishing its object. The boy's first impulse was to be grateful, and reform. His second was to wait--for there might not be any more storms. The next day the doctors were back; Tom had relapsed. The three weeks he spent on his back this time seemed an entire age. When he got abroad at last he was hardly grateful that he had been spared, remembering how lonely was his estate, how companionless and forlorn he was. He drifted listlessly down the street and found Jim Hollis acting as judge in a juvenile court that was trying a cat for murder, in the presence of her victim, a bird. He found Joe Harper and Huck Finn up an alley eating a stolen melon. Poor lads! they--like Tom--had suffered a relapse. CHAPTER XXIII AT last the sleepy atmosphere was stirred--and vigorously: the murder trial came on in the court. It became the absorbing topic of village talk immediately. Tom could not get away from it. Every reference to the murder sent a shudder to his heart, for his troubled conscience and fears almost persuaded him that these remarks were put forth in his hearing as "feelers"; he did not see how he could be suspected of knowing anything about the murder, but still he could not be comfortable in the midst of this gossip. It kept him in a cold shiver all the time. He took Huck to a lonely place to have a talk with him. It would be some relief to unseal his tongue for a little while; to divide his burden of distress with another sufferer. Moreover, he wanted to assure himself that Huck had remained discreet. "Huck, have you ever told anybody about--that?" "'Bout what?" "You know what." "Oh--'course I haven't." "Never a word?" "Never a solitary word, so help me. What makes you ask?" "Well, I was afeard." "Why, Tom Sawyer, we wouldn't be alive two days if that got found out. YOU know that." Tom felt more comfortable. After a pause: "Huck, they couldn't anybody get you to tell, could they?" "Get me to tell? Why, if I wanted that half-breed devil to drownd me they could get me to tell. They ain't no different way." "Well, that's all right, then. I reckon we're safe as long as we keep mum. But let's swear again, anyway. It's more surer." "I'm agreed." So they swore again with dread solemnities. "What is the talk around, Huck? I've heard a power of it." "Talk? Well, it's just Muff Potter, Muff Potter, Muff Potter all the time. It keeps me in a sweat, constant, so's I want to hide som'ers." "That's just the same way they go on round me. I reckon he's a goner. Don't you feel sorry for him, sometimes?" "Most always--most always. He ain't no account; but then he hain't ever done anything to hurt anybody. Just fishes a little, to get money to get drunk on--and loafs around considerable; but lord, we all do that--leastways most of us--preachers and such like. But he's kind of good--he give me half a fish, once, when there warn't enough for two; and lots of times he's kind of stood by me when I was out of luck." "Well, he's mended kites for me, Huck, and knitted hooks on to my line. I wish we could get him out of there." "My! we couldn't get him out, Tom. And besides, 'twouldn't do any good; they'd ketch him again." "Yes--so they would. But I hate to hear 'em abuse him so like the dickens when he never done--that." "I do too, Tom. Lord, I hear 'em say he's the bloodiest looking villain in this country, and they wonder he wasn't ever hung before." "Yes, they talk like that, all the time. I've heard 'em say that if he was to get free they'd lynch him." "And they'd do it, too." The boys had a long talk, but it brought them little comfort. As the twilight drew on, they found themselves hanging about the neighborhood of the little isolated jail, perhaps with an undefined hope that something would happen that might clear away their difficulties. But nothing happened; there seemed to be no angels or fairies interested in this luckless captive. The boys did as they had often done before--went to the cell grating and gave Potter some tobacco and matches. He was on the ground floor and there were no guards. His gratitude for their gifts had always smote their consciences before--it cut deeper than ever, this time. They felt cowardly and treacherous to the last degree when Potter said: "You've been mighty good to me, boys--better'n anybody else in this town. And I don't forget it, I don't. Often I says to myself, says I, 'I used to mend all the boys' kites and things, and show 'em where the good fishin' places was, and befriend 'em what I could, and now they've all forgot old Muff when he's in trouble; but Tom don't, and Huck don't--THEY don't forget him, says I, 'and I don't forget them.' Well, boys, I done an awful thing--drunk and crazy at the time--that's the only way I account for it--and now I got to swing for it, and it's right. Right, and BEST, too, I reckon--hope so, anyway. Well, we won't talk about that. I don't want to make YOU feel bad; you've befriended me. But what I want to say, is, don't YOU ever get drunk--then you won't ever get here. Stand a litter furder west--so--that's it; it's a prime comfort to see faces that's friendly when a body's in such a muck of trouble, and there don't none come here but yourn. Good friendly faces--good friendly faces. Git up on one another's backs and let me touch 'em. That's it. Shake hands--yourn'll come through the bars, but mine's too big. Little hands, and weak--but they've helped Muff Potter a power, and they'd help him more if they could." Tom went home miserable, and his dreams that night were full of horrors. The next day and the day after, he hung about the court-room, drawn by an almost irresistible impulse to go in, but forcing himself to stay out. Huck was having the same experience. They studiously avoided each other. Each wandered away, from time to time, but the same dismal fascination always brought them back presently. Tom kept his ears open when idlers sauntered out of the court-room, but invariably heard distressing news--the toils were closing more and more relentlessly around poor Potter. At the end of the second day the village talk was to the effect that Injun Joe's evidence stood firm and unshaken, and that there was not the slightest question as to what the jury's verdict would be. Tom was out late, that night, and came to bed through the window. He was in a tremendous state of excitement. It was hours before he got to sleep. All the village flocked to the court-house the next morning, for this was to be the great day. Both sexes were about equally represented in the packed audience. After a long wait the jury filed in and took their places; shortly afterward, Potter, pale and haggard, timid and hopeless, was brought in, with chains upon him, and seated where all the curious eyes could stare at him; no less conspicuous was Injun Joe, stolid as ever. There was another pause, and then the judge arrived and the sheriff proclaimed the opening of the court. The usual whisperings among the lawyers and gathering together of papers followed. These details and accompanying delays worked up an atmosphere of preparation that was as impressive as it was fascinating. Now a witness was called who testified that he found Muff Potter washing in the brook, at an early hour of the morning that the murder was discovered, and that he immediately sneaked away. After some further questioning, counsel for the prosecution said: "Take the witness." The prisoner raised his eyes for a moment, but dropped them again when his own counsel said: "I have no questions to ask him." The next witness proved the finding of the knife near the corpse. Counsel for the prosecution said: "Take the witness." "I have no questions to ask him," Potter's lawyer replied. A third witness swore he had often seen the knife in Potter's possession. "Take the witness." Counsel for Potter declined to question him. The faces of the audience began to betray annoyance. Did this attorney mean to throw away his client's life without an effort? Several witnesses deposed concerning Potter's guilty behavior when brought to the scene of the murder. They were allowed to leave the stand without being cross-questioned. Every detail of the damaging circumstances that occurred in the graveyard upon that morning which all present remembered so well was brought out by credible witnesses, but none of them were cross-examined by Potter's lawyer. The perplexity and dissatisfaction of the house expressed itself in murmurs and provoked a reproof from the bench. Counsel for the prosecution now said: "By the oaths of citizens whose simple word is above suspicion, we have fastened this awful crime, beyond all possibility of question, upon the unhappy prisoner at the bar. We rest our case here." A groan escaped from poor Potter, and he put his face in his hands and rocked his body softly to and fro, while a painful silence reigned in the court-room. Many men were moved, and many women's compassion testified itself in tears. Counsel for the defence rose and said: "Your honor, in our remarks at the opening of this trial, we foreshadowed our purpose to prove that our client did this fearful deed while under the influence of a blind and irresponsible delirium produced by drink. We have changed our mind. We shall not offer that plea." [Then to the clerk:] "Call Thomas Sawyer!" A puzzled amazement awoke in every face in the house, not even excepting Potter's. Every eye fastened itself with wondering interest upon Tom as he rose and took his place upon the stand. The boy looked wild enough, for he was badly scared. The oath was administered. "Thomas Sawyer, where were you on the seventeenth of June, about the hour of midnight?" Tom glanced at Injun Joe's iron face and his tongue failed him. The audience listened breathless, but the words refused to come. After a few moments, however, the boy got a little of his strength back, and managed to put enough of it into his voice to make part of the house hear: "In the graveyard!" "A little bit louder, please. Don't be afraid. You were--" "In the graveyard." A contemptuous smile flitted across Injun Joe's face. "Were you anywhere near Horse Williams' grave?" "Yes, sir." "Speak up--just a trifle louder. How near were you?" "Near as I am to you." "Were you hidden, or not?" "I was hid." "Where?" "Behind the elms that's on the edge of the grave." Injun Joe gave a barely perceptible start. "Any one with you?" "Yes, sir. I went there with--" "Wait--wait a moment. Never mind mentioning your companion's name. We will produce him at the proper time. Did you carry anything there with you." Tom hesitated and looked confused. "Speak out, my boy--don't be diffident. The truth is always respectable. What did you take there?" "Only a--a--dead cat." There was a ripple of mirth, which the court checked. "We will produce the skeleton of that cat. Now, my boy, tell us everything that occurred--tell it in your own way--don't skip anything, and don't be afraid." Tom began--hesitatingly at first, but as he warmed to his subject his words flowed more and more easily; in a little while every sound ceased but his own voice; every eye fixed itself upon him; with parted lips and bated breath the audience hung upon his words, taking no note of time, rapt in the ghastly fascinations of the tale. The strain upon pent emotion reached its climax when the boy said: "--and as the doctor fetched the board around and Muff Potter fell, Injun Joe jumped with the knife and--" Crash! Quick as lightning the half-breed sprang for a window, tore his way through all opposers, and was gone! CHAPTER XXIV TOM was a glittering hero once more--the pet of the old, the envy of the young. His name even went into immortal print, for the village paper magnified him. There were some that believed he would be President, yet, if he escaped hanging. As usual, the fickle, unreasoning world took Muff Potter to its bosom and fondled him as lavishly as it had abused him before. But that sort of conduct is to the world's credit; therefore it is not well to find fault with it. Tom's days were days of splendor and exultation to him, but his nights were seasons of horror. Injun Joe infested all his dreams, and always with doom in his eye. Hardly any temptation could persuade the boy to stir abroad after nightfall. Poor Huck was in the same state of wretchedness and terror, for Tom had told the whole story to the lawyer the night before the great day of the trial, and Huck was sore afraid that his share in the business might leak out, yet, notwithstanding Injun Joe's flight had saved him the suffering of testifying in court. The poor fellow had got the attorney to promise secrecy, but what of that? Since Tom's harassed conscience had managed to drive him to the lawyer's house by night and wring a dread tale from lips that had been sealed with the dismalest and most formidable of oaths, Huck's confidence in the human race was well-nigh obliterated. Daily Muff Potter's gratitude made Tom glad he had spoken; but nightly he wished he had sealed up his tongue. Half the time Tom was afraid Injun Joe would never be captured; the other half he was afraid he would be. He felt sure he never could draw a safe breath again until that man was dead and he had seen the corpse. Rewards had been offered, the country had been scoured, but no Injun Joe was found. One of those omniscient and awe-inspiring marvels, a detective, came up from St. Louis, moused around, shook his head, looked wise, and made that sort of astounding success which members of that craft usually achieve. That is to say, he "found a clew." But you can't hang a "clew" for murder, and so after that detective had got through and gone home, Tom felt just as insecure as he was before. The slow days drifted on, and each left behind it a slightly lightened weight of apprehension. CHAPTER XXV THERE comes a time in every rightly-constructed boy's life when he has a raging desire to go somewhere and dig for hidden treasure. This desire suddenly came upon Tom one day. He sallied out to find Joe Harper, but failed of success. Next he sought Ben Rogers; he had gone fishing. Presently he stumbled upon Huck Finn the Red-Handed. Huck would answer. Tom took him to a private place and opened the matter to him confidentially. Huck was willing. Huck was always willing to take a hand in any enterprise that offered entertainment and required no capital, for he had a troublesome superabundance of that sort of time which is not money. "Where'll we dig?" said Huck. "Oh, most anywhere." "Why, is it hid all around?" "No, indeed it ain't. It's hid in mighty particular places, Huck --sometimes on islands, sometimes in rotten chests under the end of a limb of an old dead tree, just where the shadow falls at midnight; but mostly under the floor in ha'nted houses." "Who hides it?" "Why, robbers, of course--who'd you reckon? Sunday-school sup'rintendents?" "I don't know. If 'twas mine I wouldn't hide it; I'd spend it and have a good time." "So would I. But robbers don't do that way. They always hide it and leave it there." "Don't they come after it any more?" "No, they think they will, but they generally forget the marks, or else they die. Anyway, it lays there a long time and gets rusty; and by and by somebody finds an old yellow paper that tells how to find the marks--a paper that's got to be ciphered over about a week because it's mostly signs and hy'roglyphics." "Hyro--which?" "Hy'roglyphics--pictures and things, you know, that don't seem to mean anything." "Have you got one of them papers, Tom?" "No." "Well then, how you going to find the marks?" "I don't want any marks. They always bury it under a ha'nted house or on an island, or under a dead tree that's got one limb sticking out. Well, we've tried Jackson's Island a little, and we can try it again some time; and there's the old ha'nted house up the Still-House branch, and there's lots of dead-limb trees--dead loads of 'em." "Is it under all of them?" "How you talk! No!" "Then how you going to know which one to go for?" "Go for all of 'em!" "Why, Tom, it'll take all summer." "Well, what of that? Suppose you find a brass pot with a hundred dollars in it, all rusty and gray, or rotten chest full of di'monds. How's that?" Huck's eyes glowed. "That's bully. Plenty bully enough for me. Just you gimme the hundred dollars and I don't want no di'monds." "All right. But I bet you I ain't going to throw off on di'monds. Some of 'em's worth twenty dollars apiece--there ain't any, hardly, but's worth six bits or a dollar." "No! Is that so?" "Cert'nly--anybody'll tell you so. Hain't you ever seen one, Huck?" "Not as I remember." "Oh, kings have slathers of them." "Well, I don' know no kings, Tom." "I reckon you don't. But if you was to go to Europe you'd see a raft of 'em hopping around." "Do they hop?" "Hop?--your granny! No!" "Well, what did you say they did, for?" "Shucks, I only meant you'd SEE 'em--not hopping, of course--what do they want to hop for?--but I mean you'd just see 'em--scattered around, you know, in a kind of a general way. Like that old humpbacked Richard." "Richard? What's his other name?" "He didn't have any other name. Kings don't have any but a given name." "No?" "But they don't." "Well, if they like it, Tom, all right; but I don't want to be a king and have only just a given name, like a nigger. But say--where you going to dig first?" "Well, I don't know. S'pose we tackle that old dead-limb tree on the hill t'other side of Still-House branch?" "I'm agreed." So they got a crippled pick and a shovel, and set out on their three-mile tramp. They arrived hot and panting, and threw themselves down in the shade of a neighboring elm to rest and have a smoke. "I like this," said Tom. "So do I." "Say, Huck, if we find a treasure here, what you going to do with your share?" "Well, I'll have pie and a glass of soda every day, and I'll go to every circus that comes along. I bet I'll have a gay time." "Well, ain't you going to save any of it?" "Save it? What for?" "Why, so as to have something to live on, by and by." "Oh, that ain't any use. Pap would come back to thish-yer town some day and get his claws on it if I didn't hurry up, and I tell you he'd clean it out pretty quick. What you going to do with yourn, Tom?" "I'm going to buy a new drum, and a sure-'nough sword, and a red necktie and a bull pup, and get married." "Married!" "That's it." "Tom, you--why, you ain't in your right mind." "Wait--you'll see." "Well, that's the foolishest thing you could do. Look at pap and my mother. Fight! Why, they used to fight all the time. I remember, mighty well." "That ain't anything. The girl I'm going to marry won't fight." "Tom, I reckon they're all alike. They'll all comb a body. Now you better think 'bout this awhile. I tell you you better. What's the name of the gal?" "It ain't a gal at all--it's a girl." "It's all the same, I reckon; some says gal, some says girl--both's right, like enough. Anyway, what's her name, Tom?" "I'll tell you some time--not now." "All right--that'll do. Only if you get married I'll be more lonesomer than ever." "No you won't. You'll come and live with me. Now stir out of this and we'll go to digging." They worked and sweated for half an hour. No result. They toiled another half-hour. Still no result. Huck said: "Do they always bury it as deep as this?" "Sometimes--not always. Not generally. I reckon we haven't got the right place." So they chose a new spot and began again. The labor dragged a little, but still they made progress. They pegged away in silence for some time. Finally Huck leaned on his shovel, swabbed the beaded drops from his brow with his sleeve, and said: "Where you going to dig next, after we get this one?" "I reckon maybe we'll tackle the old tree that's over yonder on Cardiff Hill back of the widow's." "I reckon that'll be a good one. But won't the widow take it away from us, Tom? It's on her land." "SHE take it away! Maybe she'd like to try it once. Whoever finds one of these hid treasures, it belongs to him. It don't make any difference whose land it's on." That was satisfactory. The work went on. By and by Huck said: "Blame it, we must be in the wrong place again. What do you think?" "It is mighty curious, Huck. I don't understand it. Sometimes witches interfere. I reckon maybe that's what's the trouble now." "Shucks! Witches ain't got no power in the daytime." "Well, that's so. I didn't think of that. Oh, I know what the matter is! What a blamed lot of fools we are! You got to find out where the shadow of the limb falls at midnight, and that's where you dig!" "Then consound it, we've fooled away all this work for nothing. Now hang it all, we got to come back in the night. It's an awful long way. Can you get out?" "I bet I will. We've got to do it to-night, too, because if somebody sees these holes they'll know in a minute what's here and they'll go for it." "Well, I'll come around and maow to-night." "All right. Let's hide the tools in the bushes." The boys were there that night, about the appointed time. They sat in the shadow waiting. It was a lonely place, and an hour made solemn by old traditions. Spirits whispered in the rustling leaves, ghosts lurked in the murky nooks, the deep baying of a hound floated up out of the distance, an owl answered with his sepulchral note. The boys were subdued by these solemnities, and talked little. By and by they judged that twelve had come; they marked where the shadow fell, and began to dig. Their hopes commenced to rise. Their interest grew stronger, and their industry kept pace with it. The hole deepened and still deepened, but every time their hearts jumped to hear the pick strike upon something, they only suffered a new disappointment. It was only a stone or a chunk. At last Tom said: "It ain't any use, Huck, we're wrong again." "Well, but we CAN'T be wrong. We spotted the shadder to a dot." "I know it, but then there's another thing." "What's that?". "Why, we only guessed at the time. Like enough it was too late or too early." Huck dropped his shovel. "That's it," said he. "That's the very trouble. We got to give this one up. We can't ever tell the right time, and besides this kind of thing's too awful, here this time of night with witches and ghosts a-fluttering around so. I feel as if something's behind me all the time; and I'm afeard to turn around, becuz maybe there's others in front a-waiting for a chance. I been creeping all over, ever since I got here." "Well, I've been pretty much so, too, Huck. They most always put in a dead man when they bury a treasure under a tree, to look out for it." "Lordy!" "Yes, they do. I've always heard that." "Tom, I don't like to fool around much where there's dead people. A body's bound to get into trouble with 'em, sure." "I don't like to stir 'em up, either. S'pose this one here was to stick his skull out and say something!" "Don't Tom! It's awful." "Well, it just is. Huck, I don't feel comfortable a bit." "Say, Tom, let's give this place up, and try somewheres else." "All right, I reckon we better." "What'll it be?" Tom considered awhile; and then said: "The ha'nted house. That's it!" "Blame it, I don't like ha'nted houses, Tom. Why, they're a dern sight worse'n dead people. Dead people might talk, maybe, but they don't come sliding around in a shroud, when you ain't noticing, and peep over your shoulder all of a sudden and grit their teeth, the way a ghost does. I couldn't stand such a thing as that, Tom--nobody could." "Yes, but, Huck, ghosts don't travel around only at night. They won't hender us from digging there in the daytime." "Well, that's so. But you know mighty well people don't go about that ha'nted house in the day nor the night." "Well, that's mostly because they don't like to go where a man's been murdered, anyway--but nothing's ever been seen around that house except in the night--just some blue lights slipping by the windows--no regular ghosts." "Well, where you see one of them blue lights flickering around, Tom, you can bet there's a ghost mighty close behind it. It stands to reason. Becuz you know that they don't anybody but ghosts use 'em." "Yes, that's so. But anyway they don't come around in the daytime, so what's the use of our being afeard?" "Well, all right. We'll tackle the ha'nted house if you say so--but I reckon it's taking chances." They had started down the hill by this time. There in the middle of the moonlit valley below them stood the "ha'nted" house, utterly isolated, its fences gone long ago, rank weeds smothering the very doorsteps, the chimney crumbled to ruin, the window-sashes vacant, a corner of the roof caved in. The boys gazed awhile, half expecting to see a blue light flit past a window; then talking in a low tone, as befitted the time and the circumstances, they struck far off to the right, to give the haunted house a wide berth, and took their way homeward through the woods that adorned the rearward side of Cardiff Hill. CHAPTER XXVI ABOUT noon the next day the boys arrived at the dead tree; they had come for their tools. Tom was impatient to go to the haunted house; Huck was measurably so, also--but suddenly said: "Lookyhere, Tom, do you know what day it is?" Tom mentally ran over the days of the week, and then quickly lifted his eyes with a startled look in them-- "My! I never once thought of it, Huck!" "Well, I didn't neither, but all at once it popped onto me that it was Friday." "Blame it, a body can't be too careful, Huck. We might 'a' got into an awful scrape, tackling such a thing on a Friday." "MIGHT! Better say we WOULD! There's some lucky days, maybe, but Friday ain't." "Any fool knows that. I don't reckon YOU was the first that found it out, Huck." "Well, I never said I was, did I? And Friday ain't all, neither. I had a rotten bad dream last night--dreampt about rats." "No! Sure sign of trouble. Did they fight?" "No." "Well, that's good, Huck. When they don't fight it's only a sign that there's trouble around, you know. All we got to do is to look mighty sharp and keep out of it. We'll drop this thing for to-day, and play. Do you know Robin Hood, Huck?" "No. Who's Robin Hood?" "Why, he was one of the greatest men that was ever in England--and the best. He was a robber." "Cracky, I wisht I was. Who did he rob?" "Only sheriffs and bishops and rich people and kings, and such like. But he never bothered the poor. He loved 'em. He always divided up with 'em perfectly square." "Well, he must 'a' been a brick." "I bet you he was, Huck. Oh, he was the noblest man that ever was. They ain't any such men now, I can tell you. He could lick any man in England, with one hand tied behind him; and he could take his yew bow and plug a ten-cent piece every time, a mile and a half." "What's a YEW bow?" "I don't know. It's some kind of a bow, of course. And if he hit that dime only on the edge he would set down and cry--and curse. But we'll play Robin Hood--it's nobby fun. I'll learn you." "I'm agreed." So they played Robin Hood all the afternoon, now and then casting a yearning eye down upon the haunted house and passing a remark about the morrow's prospects and possibilities there. As the sun began to sink into the west they took their way homeward athwart the long shadows of the trees and soon were buried from sight in the forests of Cardiff Hill. On Saturday, shortly after noon, the boys were at the dead tree again. They had a smoke and a chat in the shade, and then dug a little in their last hole, not with great hope, but merely because Tom said there were so many cases where people had given up a treasure after getting down within six inches of it, and then somebody else had come along and turned it up with a single thrust of a shovel. The thing failed this time, however, so the boys shouldered their tools and went away feeling that they had not trifled with fortune, but had fulfilled all the requirements that belong to the business of treasure-hunting. When they reached the haunted house there was something so weird and grisly about the dead silence that reigned there under the baking sun, and something so depressing about the loneliness and desolation of the place, that they were afraid, for a moment, to venture in. Then they crept to the door and took a trembling peep. They saw a weed-grown, floorless room, unplastered, an ancient fireplace, vacant windows, a ruinous staircase; and here, there, and everywhere hung ragged and abandoned cobwebs. They presently entered, softly, with quickened pulses, talking in whispers, ears alert to catch the slightest sound, and muscles tense and ready for instant retreat. In a little while familiarity modified their fears and they gave the place a critical and interested examination, rather admiring their own boldness, and wondering at it, too. Next they wanted to look up-stairs. This was something like cutting off retreat, but they got to daring each other, and of course there could be but one result--they threw their tools into a corner and made the ascent. Up there were the same signs of decay. In one corner they found a closet that promised mystery, but the promise was a fraud--there was nothing in it. Their courage was up now and well in hand. They were about to go down and begin work when-- "Sh!" said Tom. "What is it?" whispered Huck, blanching with fright. "Sh!... There!... Hear it?" "Yes!... Oh, my! Let's run!" "Keep still! Don't you budge! They're coming right toward the door." The boys stretched themselves upon the floor with their eyes to knot-holes in the planking, and lay waiting, in a misery of fear. "They've stopped.... No--coming.... Here they are. Don't whisper another word, Huck. My goodness, I wish I was out of this!" Two men entered. Each boy said to himself: "There's the old deaf and dumb Spaniard that's been about town once or twice lately--never saw t'other man before." "T'other" was a ragged, unkempt creature, with nothing very pleasant in his face. The Spaniard was wrapped in a serape; he had bushy white whiskers; long white hair flowed from under his sombrero, and he wore green goggles. When they came in, "t'other" was talking in a low voice; they sat down on the ground, facing the door, with their backs to the wall, and the speaker continued his remarks. His manner became less guarded and his words more distinct as he proceeded: "No," said he, "I've thought it all over, and I don't like it. It's dangerous." "Dangerous!" grunted the "deaf and dumb" Spaniard--to the vast surprise of the boys. "Milksop!" This voice made the boys gasp and quake. It was Injun Joe's! There was silence for some time. Then Joe said: "What's any more dangerous than that job up yonder--but nothing's come of it." "That's different. Away up the river so, and not another house about. 'Twon't ever be known that we tried, anyway, long as we didn't succeed." "Well, what's more dangerous than coming here in the daytime!--anybody would suspicion us that saw us." "I know that. But there warn't any other place as handy after that fool of a job. I want to quit this shanty. I wanted to yesterday, only it warn't any use trying to stir out of here, with those infernal boys playing over there on the hill right in full view." "Those infernal boys" quaked again under the inspiration of this remark, and thought how lucky it was that they had remembered it was Friday and concluded to wait a day. They wished in their hearts they had waited a year. The two men got out some food and made a luncheon. After a long and thoughtful silence, Injun Joe said: "Look here, lad--you go back up the river where you belong. Wait there till you hear from me. I'll take the chances on dropping into this town just once more, for a look. We'll do that 'dangerous' job after I've spied around a little and think things look well for it. Then for Texas! We'll leg it together!" This was satisfactory. Both men presently fell to yawning, and Injun Joe said: "I'm dead for sleep! It's your turn to watch." He curled down in the weeds and soon began to snore. His comrade stirred him once or twice and he became quiet. Presently the watcher began to nod; his head drooped lower and lower, both men began to snore now. The boys drew a long, grateful breath. Tom whispered: "Now's our chance--come!" Huck said: "I can't--I'd die if they was to wake." Tom urged--Huck held back. At last Tom rose slowly and softly, and started alone. But the first step he made wrung such a hideous creak from the crazy floor that he sank down almost dead with fright. He never made a second attempt. The boys lay there counting the dragging moments till it seemed to them that time must be done and eternity growing gray; and then they were grateful to note that at last the sun was setting. Now one snore ceased. Injun Joe sat up, stared around--smiled grimly upon his comrade, whose head was drooping upon his knees--stirred him up with his foot and said: "Here! YOU'RE a watchman, ain't you! All right, though--nothing's happened." "My! have I been asleep?" "Oh, partly, partly. Nearly time for us to be moving, pard. What'll we do with what little swag we've got left?" "I don't know--leave it here as we've always done, I reckon. No use to take it away till we start south. Six hundred and fifty in silver's something to carry." "Well--all right--it won't matter to come here once more." "No--but I'd say come in the night as we used to do--it's better." "Yes: but look here; it may be a good while before I get the right chance at that job; accidents might happen; 'tain't in such a very good place; we'll just regularly bury it--and bury it deep." "Good idea," said the comrade, who walked across the room, knelt down, raised one of the rearward hearth-stones and took out a bag that jingled pleasantly. He subtracted from it twenty or thirty dollars for himself and as much for Injun Joe, and passed the bag to the latter, who was on his knees in the corner, now, digging with his bowie-knife. The boys forgot all their fears, all their miseries in an instant. With gloating eyes they watched every movement. Luck!--the splendor of it was beyond all imagination! Six hundred dollars was money enough to make half a dozen boys rich! Here was treasure-hunting under the happiest auspices--there would not be any bothersome uncertainty as to where to dig. They nudged each other every moment--eloquent nudges and easily understood, for they simply meant--"Oh, but ain't you glad NOW we're here!" Joe's knife struck upon something. "Hello!" said he. "What is it?" said his comrade. "Half-rotten plank--no, it's a box, I believe. Here--bear a hand and we'll see what it's here for. Never mind, I've broke a hole." He reached his hand in and drew it out-- "Man, it's money!" The two men examined the handful of coins. They were gold. The boys above were as excited as themselves, and as delighted. Joe's comrade said: "We'll make quick work of this. There's an old rusty pick over amongst the weeds in the corner the other side of the fireplace--I saw it a minute ago." He ran and brought the boys' pick and shovel. Injun Joe took the pick, looked it over critically, shook his head, muttered something to himself, and then began to use it. The box was soon unearthed. It was not very large; it was iron bound and had been very strong before the slow years had injured it. The men contemplated the treasure awhile in blissful silence. "Pard, there's thousands of dollars here," said Injun Joe. "'Twas always said that Murrel's gang used to be around here one summer," the stranger observed. "I know it," said Injun Joe; "and this looks like it, I should say." "Now you won't need to do that job." The half-breed frowned. Said he: "You don't know me. Least you don't know all about that thing. 'Tain't robbery altogether--it's REVENGE!" and a wicked light flamed in his eyes. "I'll need your help in it. When it's finished--then Texas. Go home to your Nance and your kids, and stand by till you hear from me." "Well--if you say so; what'll we do with this--bury it again?" "Yes. [Ravishing delight overhead.] NO! by the great Sachem, no! [Profound distress overhead.] I'd nearly forgot. That pick had fresh earth on it! [The boys were sick with terror in a moment.] What business has a pick and a shovel here? What business with fresh earth on them? Who brought them here--and where are they gone? Have you heard anybody?--seen anybody? What! bury it again and leave them to come and see the ground disturbed? Not exactly--not exactly. We'll take it to my den." "Why, of course! Might have thought of that before. You mean Number One?" "No--Number Two--under the cross. The other place is bad--too common." "All right. It's nearly dark enough to start." Injun Joe got up and went about from window to window cautiously peeping out. Presently he said: "Who could have brought those tools here? Do you reckon they can be up-stairs?" The boys' breath forsook them. Injun Joe put his hand on his knife, halted a moment, undecided, and then turned toward the stairway. The boys thought of the closet, but their strength was gone. The steps came creaking up the stairs--the intolerable distress of the situation woke the stricken resolution of the lads--they were about to spring for the closet, when there was a crash of rotten timbers and Injun Joe landed on the ground amid the debris of the ruined stairway. He gathered himself up cursing, and his comrade said: "Now what's the use of all that? If it's anybody, and they're up there, let them STAY there--who cares? If they want to jump down, now, and get into trouble, who objects? It will be dark in fifteen minutes --and then let them follow us if they want to. I'm willing. In my opinion, whoever hove those things in here caught a sight of us and took us for ghosts or devils or something. I'll bet they're running yet." Joe grumbled awhile; then he agreed with his friend that what daylight was left ought to be economized in getting things ready for leaving. Shortly afterward they slipped out of the house in the deepening twilight, and moved toward the river with their precious box. Tom and Huck rose up, weak but vastly relieved, and stared after them through the chinks between the logs of the house. Follow? Not they. They were content to reach ground again without broken necks, and take the townward track over the hill. They did not talk much. They were too much absorbed in hating themselves--hating the ill luck that made them take the spade and the pick there. But for that, Injun Joe never would have suspected. He would have hidden the silver with the gold to wait there till his "revenge" was satisfied, and then he would have had the misfortune to find that money turn up missing. Bitter, bitter luck that the tools were ever brought there! They resolved to keep a lookout for that Spaniard when he should come to town spying out for chances to do his revengeful job, and follow him to "Number Two," wherever that might be. Then a ghastly thought occurred to Tom. "Revenge? What if he means US, Huck!" "Oh, don't!" said Huck, nearly fainting. They talked it all over, and as they entered town they agreed to believe that he might possibly mean somebody else--at least that he might at least mean nobody but Tom, since only Tom had testified. Very, very small comfort it was to Tom to be alone in danger! Company would be a palpable improvement, he thought. CHAPTER XXVII THE adventure of the day mightily tormented Tom's dreams that night. Four times he had his hands on that rich treasure and four times it wasted to nothingness in his fingers as sleep forsook him and wakefulness brought back the hard reality of his misfortune. As he lay in the early morning recalling the incidents of his great adventure, he noticed that they seemed curiously subdued and far away--somewhat as if they had happened in another world, or in a time long gone by. Then it occurred to him that the great adventure itself must be a dream! There was one very strong argument in favor of this idea--namely, that the quantity of coin he had seen was too vast to be real. He had never seen as much as fifty dollars in one mass before, and he was like all boys of his age and station in life, in that he imagined that all references to "hundreds" and "thousands" were mere fanciful forms of speech, and that no such sums really existed in the world. He never had supposed for a moment that so large a sum as a hundred dollars was to be found in actual money in any one's possession. If his notions of hidden treasure had been analyzed, they would have been found to consist of a handful of real dimes and a bushel of vague, splendid, ungraspable dollars. But the incidents of his adventure grew sensibly sharper and clearer under the attrition of thinking them over, and so he presently found himself leaning to the impression that the thing might not have been a dream, after all. This uncertainty must be swept away. He would snatch a hurried breakfast and go and find Huck. Huck was sitting on the gunwale of a flatboat, listlessly dangling his feet in the water and looking very melancholy. Tom concluded to let Huck lead up to the subject. If he did not do it, then the adventure would be proved to have been only a dream. "Hello, Huck!" "Hello, yourself." Silence, for a minute. "Tom, if we'd 'a' left the blame tools at the dead tree, we'd 'a' got the money. Oh, ain't it awful!" "'Tain't a dream, then, 'tain't a dream! Somehow I most wish it was. Dog'd if I don't, Huck." "What ain't a dream?" "Oh, that thing yesterday. I been half thinking it was." "Dream! If them stairs hadn't broke down you'd 'a' seen how much dream it was! I've had dreams enough all night--with that patch-eyed Spanish devil going for me all through 'em--rot him!" "No, not rot him. FIND him! Track the money!" "Tom, we'll never find him. A feller don't have only one chance for such a pile--and that one's lost. I'd feel mighty shaky if I was to see him, anyway." "Well, so'd I; but I'd like to see him, anyway--and track him out--to his Number Two." "Number Two--yes, that's it. I been thinking 'bout that. But I can't make nothing out of it. What do you reckon it is?" "I dono. It's too deep. Say, Huck--maybe it's the number of a house!" "Goody!... No, Tom, that ain't it. If it is, it ain't in this one-horse town. They ain't no numbers here." "Well, that's so. Lemme think a minute. Here--it's the number of a room--in a tavern, you know!" "Oh, that's the trick! They ain't only two taverns. We can find out quick." "You stay here, Huck, till I come." Tom was off at once. He did not care to have Huck's company in public places. He was gone half an hour. He found that in the best tavern, No. 2 had long been occupied by a young lawyer, and was still so occupied. In the less ostentatious house, No. 2 was a mystery. The tavern-keeper's young son said it was kept locked all the time, and he never saw anybody go into it or come out of it except at night; he did not know any particular reason for this state of things; had had some little curiosity, but it was rather feeble; had made the most of the mystery by entertaining himself with the idea that that room was "ha'nted"; had noticed that there was a light in there the night before. "That's what I've found out, Huck. I reckon that's the very No. 2 we're after." "I reckon it is, Tom. Now what you going to do?" "Lemme think." Tom thought a long time. Then he said: "I'll tell you. The back door of that No. 2 is the door that comes out into that little close alley between the tavern and the old rattle trap of a brick store. Now you get hold of all the door-keys you can find, and I'll nip all of auntie's, and the first dark night we'll go there and try 'em. And mind you, keep a lookout for Injun Joe, because he said he was going to drop into town and spy around once more for a chance to get his revenge. If you see him, you just follow him; and if he don't go to that No. 2, that ain't the place." "Lordy, I don't want to foller him by myself!" "Why, it'll be night, sure. He mightn't ever see you--and if he did, maybe he'd never think anything." "Well, if it's pretty dark I reckon I'll track him. I dono--I dono. I'll try." "You bet I'll follow him, if it's dark, Huck. Why, he might 'a' found out he couldn't get his revenge, and be going right after that money." "It's so, Tom, it's so. I'll foller him; I will, by jingoes!" "Now you're TALKING! Don't you ever weaken, Huck, and I won't." CHAPTER XXVIII THAT night Tom and Huck were ready for their adventure. They hung about the neighborhood of the tavern until after nine, one watching the alley at a distance and the other the tavern door. Nobody entered the alley or left it; nobody resembling the Spaniard entered or left the tavern door. The night promised to be a fair one; so Tom went home with the understanding that if a considerable degree of darkness came on, Huck was to come and "maow," whereupon he would slip out and try the keys. But the night remained clear, and Huck closed his watch and retired to bed in an empty sugar hogshead about twelve. Tuesday the boys had the same ill luck. Also Wednesday. But Thursday night promised better. Tom slipped out in good season with his aunt's old tin lantern, and a large towel to blindfold it with. He hid the lantern in Huck's sugar hogshead and the watch began. An hour before midnight the tavern closed up and its lights (the only ones thereabouts) were put out. No Spaniard had been seen. Nobody had entered or left the alley. Everything was auspicious. The blackness of darkness reigned, the perfect stillness was interrupted only by occasional mutterings of distant thunder. Tom got his lantern, lit it in the hogshead, wrapped it closely in the towel, and the two adventurers crept in the gloom toward the tavern. Huck stood sentry and Tom felt his way into the alley. Then there was a season of waiting anxiety that weighed upon Huck's spirits like a mountain. He began to wish he could see a flash from the lantern--it would frighten him, but it would at least tell him that Tom was alive yet. It seemed hours since Tom had disappeared. Surely he must have fainted; maybe he was dead; maybe his heart had burst under terror and excitement. In his uneasiness Huck found himself drawing closer and closer to the alley; fearing all sorts of dreadful things, and momentarily expecting some catastrophe to happen that would take away his breath. There was not much to take away, for he seemed only able to inhale it by thimblefuls, and his heart would soon wear itself out, the way it was beating. Suddenly there was a flash of light and Tom came tearing by him: "Run!" said he; "run, for your life!" He needn't have repeated it; once was enough; Huck was making thirty or forty miles an hour before the repetition was uttered. The boys never stopped till they reached the shed of a deserted slaughter-house at the lower end of the village. Just as they got within its shelter the storm burst and the rain poured down. As soon as Tom got his breath he said: "Huck, it was awful! I tried two of the keys, just as soft as I could; but they seemed to make such a power of racket that I couldn't hardly get my breath I was so scared. They wouldn't turn in the lock, either. Well, without noticing what I was doing, I took hold of the knob, and open comes the door! It warn't locked! I hopped in, and shook off the towel, and, GREAT CAESAR'S GHOST!" "What!--what'd you see, Tom?" "Huck, I most stepped onto Injun Joe's hand!" "No!" "Yes! He was lying there, sound asleep on the floor, with his old patch on his eye and his arms spread out." "Lordy, what did you do? Did he wake up?" "No, never budged. Drunk, I reckon. I just grabbed that towel and started!" "I'd never 'a' thought of the towel, I bet!" "Well, I would. My aunt would make me mighty sick if I lost it." "Say, Tom, did you see that box?" "Huck, I didn't wait to look around. I didn't see the box, I didn't see the cross. I didn't see anything but a bottle and a tin cup on the floor by Injun Joe; yes, I saw two barrels and lots more bottles in the room. Don't you see, now, what's the matter with that ha'nted room?" "How?" "Why, it's ha'nted with whiskey! Maybe ALL the Temperance Taverns have got a ha'nted room, hey, Huck?" "Well, I reckon maybe that's so. Who'd 'a' thought such a thing? But say, Tom, now's a mighty good time to get that box, if Injun Joe's drunk." "It is, that! You try it!" Huck shuddered. "Well, no--I reckon not." "And I reckon not, Huck. Only one bottle alongside of Injun Joe ain't enough. If there'd been three, he'd be drunk enough and I'd do it." There was a long pause for reflection, and then Tom said: "Lookyhere, Huck, less not try that thing any more till we know Injun Joe's not in there. It's too scary. Now, if we watch every night, we'll be dead sure to see him go out, some time or other, and then we'll snatch that box quicker'n lightning." "Well, I'm agreed. I'll watch the whole night long, and I'll do it every night, too, if you'll do the other part of the job." "All right, I will. All you got to do is to trot up Hooper Street a block and maow--and if I'm asleep, you throw some gravel at the window and that'll fetch me." "Agreed, and good as wheat!" "Now, Huck, the storm's over, and I'll go home. It'll begin to be daylight in a couple of hours. You go back and watch that long, will you?" "I said I would, Tom, and I will. I'll ha'nt that tavern every night for a year! I'll sleep all day and I'll stand watch all night." "That's all right. Now, where you going to sleep?" "In Ben Rogers' hayloft. He lets me, and so does his pap's nigger man, Uncle Jake. I tote water for Uncle Jake whenever he wants me to, and any time I ask him he gives me a little something to eat if he can spare it. That's a mighty good nigger, Tom. He likes me, becuz I don't ever act as if I was above him. Sometime I've set right down and eat WITH him. But you needn't tell that. A body's got to do things when he's awful hungry he wouldn't want to do as a steady thing." "Well, if I don't want you in the daytime, I'll let you sleep. I won't come bothering around. Any time you see something's up, in the night, just skip right around and maow." CHAPTER XXIX THE first thing Tom heard on Friday morning was a glad piece of news --Judge Thatcher's family had come back to town the night before. Both Injun Joe and the treasure sunk into secondary importance for a moment, and Becky took the chief place in the boy's interest. He saw her and they had an exhausting good time playing "hi-spy" and "gully-keeper" with a crowd of their school-mates. The day was completed and crowned in a peculiarly satisfactory way: Becky teased her mother to appoint the next day for the long-promised and long-delayed picnic, and she consented. The child's delight was boundless; and Tom's not more moderate. The invitations were sent out before sunset, and straightway the young folks of the village were thrown into a fever of preparation and pleasurable anticipation. Tom's excitement enabled him to keep awake until a pretty late hour, and he had good hopes of hearing Huck's "maow," and of having his treasure to astonish Becky and the picnickers with, next day; but he was disappointed. No signal came that night. Morning came, eventually, and by ten or eleven o'clock a giddy and rollicking company were gathered at Judge Thatcher's, and everything was ready for a start. It was not the custom for elderly people to mar the picnics with their presence. The children were considered safe enough under the wings of a few young ladies of eighteen and a few young gentlemen of twenty-three or thereabouts. The old steam ferryboat was chartered for the occasion; presently the gay throng filed up the main street laden with provision-baskets. Sid was sick and had to miss the fun; Mary remained at home to entertain him. The last thing Mrs. Thatcher said to Becky, was: "You'll not get back till late. Perhaps you'd better stay all night with some of the girls that live near the ferry-landing, child." "Then I'll stay with Susy Harper, mamma." "Very well. And mind and behave yourself and don't be any trouble." Presently, as they tripped along, Tom said to Becky: "Say--I'll tell you what we'll do. 'Stead of going to Joe Harper's we'll climb right up the hill and stop at the Widow Douglas'. She'll have ice-cream! She has it most every day--dead loads of it. And she'll be awful glad to have us." "Oh, that will be fun!" Then Becky reflected a moment and said: "But what will mamma say?" "How'll she ever know?" The girl turned the idea over in her mind, and said reluctantly: "I reckon it's wrong--but--" "But shucks! Your mother won't know, and so what's the harm? All she wants is that you'll be safe; and I bet you she'd 'a' said go there if she'd 'a' thought of it. I know she would!" The Widow Douglas' splendid hospitality was a tempting bait. It and Tom's persuasions presently carried the day. So it was decided to say nothing anybody about the night's programme. Presently it occurred to Tom that maybe Huck might come this very night and give the signal. The thought took a deal of the spirit out of his anticipations. Still he could not bear to give up the fun at Widow Douglas'. And why should he give it up, he reasoned--the signal did not come the night before, so why should it be any more likely to come to-night? The sure fun of the evening outweighed the uncertain treasure; and, boy-like, he determined to yield to the stronger inclination and not allow himself to think of the box of money another time that day. Three miles below town the ferryboat stopped at the mouth of a woody hollow and tied up. The crowd swarmed ashore and soon the forest distances and craggy heights echoed far and near with shoutings and laughter. All the different ways of getting hot and tired were gone through with, and by-and-by the rovers straggled back to camp fortified with responsible appetites, and then the destruction of the good things began. After the feast there was a refreshing season of rest and chat in the shade of spreading oaks. By-and-by somebody shouted: "Who's ready for the cave?" Everybody was. Bundles of candles were procured, and straightway there was a general scamper up the hill. The mouth of the cave was up the hillside--an opening shaped like a letter A. Its massive oaken door stood unbarred. Within was a small chamber, chilly as an ice-house, and walled by Nature with solid limestone that was dewy with a cold sweat. It was romantic and mysterious to stand here in the deep gloom and look out upon the green valley shining in the sun. But the impressiveness of the situation quickly wore off, and the romping began again. The moment a candle was lighted there was a general rush upon the owner of it; a struggle and a gallant defence followed, but the candle was soon knocked down or blown out, and then there was a glad clamor of laughter and a new chase. But all things have an end. By-and-by the procession went filing down the steep descent of the main avenue, the flickering rank of lights dimly revealing the lofty walls of rock almost to their point of junction sixty feet overhead. This main avenue was not more than eight or ten feet wide. Every few steps other lofty and still narrower crevices branched from it on either hand--for McDougal's cave was but a vast labyrinth of crooked aisles that ran into each other and out again and led nowhere. It was said that one might wander days and nights together through its intricate tangle of rifts and chasms, and never find the end of the cave; and that he might go down, and down, and still down, into the earth, and it was just the same--labyrinth under labyrinth, and no end to any of them. No man "knew" the cave. That was an impossible thing. Most of the young men knew a portion of it, and it was not customary to venture much beyond this known portion. Tom Sawyer knew as much of the cave as any one. The procession moved along the main avenue some three-quarters of a mile, and then groups and couples began to slip aside into branch avenues, fly along the dismal corridors, and take each other by surprise at points where the corridors joined again. Parties were able to elude each other for the space of half an hour without going beyond the "known" ground. By-and-by, one group after another came straggling back to the mouth of the cave, panting, hilarious, smeared from head to foot with tallow drippings, daubed with clay, and entirely delighted with the success of the day. Then they were astonished to find that they had been taking no note of time and that night was about at hand. The clanging bell had been calling for half an hour. However, this sort of close to the day's adventures was romantic and therefore satisfactory. When the ferryboat with her wild freight pushed into the stream, nobody cared sixpence for the wasted time but the captain of the craft. Huck was already upon his watch when the ferryboat's lights went glinting past the wharf. He heard no noise on board, for the young people were as subdued and still as people usually are who are nearly tired to death. He wondered what boat it was, and why she did not stop at the wharf--and then he dropped her out of his mind and put his attention upon his business. The night was growing cloudy and dark. Ten o'clock came, and the noise of vehicles ceased, scattered lights began to wink out, all straggling foot-passengers disappeared, the village betook itself to its slumbers and left the small watcher alone with the silence and the ghosts. Eleven o'clock came, and the tavern lights were put out; darkness everywhere, now. Huck waited what seemed a weary long time, but nothing happened. His faith was weakening. Was there any use? Was there really any use? Why not give it up and turn in? A noise fell upon his ear. He was all attention in an instant. The alley door closed softly. He sprang to the corner of the brick store. The next moment two men brushed by him, and one seemed to have something under his arm. It must be that box! So they were going to remove the treasure. Why call Tom now? It would be absurd--the men would get away with the box and never be found again. No, he would stick to their wake and follow them; he would trust to the darkness for security from discovery. So communing with himself, Huck stepped out and glided along behind the men, cat-like, with bare feet, allowing them to keep just far enough ahead not to be invisible. They moved up the river street three blocks, then turned to the left up a cross-street. They went straight ahead, then, until they came to the path that led up Cardiff Hill; this they took. They passed by the old Welshman's house, half-way up the hill, without hesitating, and still climbed upward. Good, thought Huck, they will bury it in the old quarry. But they never stopped at the quarry. They passed on, up the summit. They plunged into the narrow path between the tall sumach bushes, and were at once hidden in the gloom. Huck closed up and shortened his distance, now, for they would never be able to see him. He trotted along awhile; then slackened his pace, fearing he was gaining too fast; moved on a piece, then stopped altogether; listened; no sound; none, save that he seemed to hear the beating of his own heart. The hooting of an owl came over the hill--ominous sound! But no footsteps. Heavens, was everything lost! He was about to spring with winged feet, when a man cleared his throat not four feet from him! Huck's heart shot into his throat, but he swallowed it again; and then he stood there shaking as if a dozen agues had taken charge of him at once, and so weak that he thought he must surely fall to the ground. He knew where he was. He knew he was within five steps of the stile leading into Widow Douglas' grounds. Very well, he thought, let them bury it there; it won't be hard to find. Now there was a voice--a very low voice--Injun Joe's: "Damn her, maybe she's got company--there's lights, late as it is." "I can't see any." This was that stranger's voice--the stranger of the haunted house. A deadly chill went to Huck's heart--this, then, was the "revenge" job! His thought was, to fly. Then he remembered that the Widow Douglas had been kind to him more than once, and maybe these men were going to murder her. He wished he dared venture to warn her; but he knew he didn't dare--they might come and catch him. He thought all this and more in the moment that elapsed between the stranger's remark and Injun Joe's next--which was-- "Because the bush is in your way. Now--this way--now you see, don't you?" "Yes. Well, there IS company there, I reckon. Better give it up." "Give it up, and I just leaving this country forever! Give it up and maybe never have another chance. I tell you again, as I've told you before, I don't care for her swag--you may have it. But her husband was rough on me--many times he was rough on me--and mainly he was the justice of the peace that jugged me for a vagrant. And that ain't all. It ain't a millionth part of it! He had me HORSEWHIPPED!--horsewhipped in front of the jail, like a nigger!--with all the town looking on! HORSEWHIPPED!--do you understand? He took advantage of me and died. But I'll take it out of HER." "Oh, don't kill her! Don't do that!" "Kill? Who said anything about killing? I would kill HIM if he was here; but not her. When you want to get revenge on a woman you don't kill her--bosh! you go for her looks. You slit her nostrils--you notch her ears like a sow!" "By God, that's--" "Keep your opinion to yourself! It will be safest for you. I'll tie her to the bed. If she bleeds to death, is that my fault? I'll not cry, if she does. My friend, you'll help me in this thing--for MY sake --that's why you're here--I mightn't be able alone. If you flinch, I'll kill you. Do you understand that? And if I have to kill you, I'll kill her--and then I reckon nobody'll ever know much about who done this business." "Well, if it's got to be done, let's get at it. The quicker the better--I'm all in a shiver." "Do it NOW? And company there? Look here--I'll get suspicious of you, first thing you know. No--we'll wait till the lights are out--there's no hurry." Huck felt that a silence was going to ensue--a thing still more awful than any amount of murderous talk; so he held his breath and stepped gingerly back; planted his foot carefully and firmly, after balancing, one-legged, in a precarious way and almost toppling over, first on one side and then on the other. He took another step back, with the same elaboration and the same risks; then another and another, and--a twig snapped under his foot! His breath stopped and he listened. There was no sound--the stillness was perfect. His gratitude was measureless. Now he turned in his tracks, between the walls of sumach bushes--turned himself as carefully as if he were a ship--and then stepped quickly but cautiously along. When he emerged at the quarry he felt secure, and so he picked up his nimble heels and flew. Down, down he sped, till he reached the Welshman's. He banged at the door, and presently the heads of the old man and his two stalwart sons were thrust from windows. "What's the row there? Who's banging? What do you want?" "Let me in--quick! I'll tell everything." "Why, who are you?" "Huckleberry Finn--quick, let me in!" "Huckleberry Finn, indeed! It ain't a name to open many doors, I judge! But let him in, lads, and let's see what's the trouble." "Please don't ever tell I told you," were Huck's first words when he got in. "Please don't--I'd be killed, sure--but the widow's been good friends to me sometimes, and I want to tell--I WILL tell if you'll promise you won't ever say it was me." "By George, he HAS got something to tell, or he wouldn't act so!" exclaimed the old man; "out with it and nobody here'll ever tell, lad." Three minutes later the old man and his sons, well armed, were up the hill, and just entering the sumach path on tiptoe, their weapons in their hands. Huck accompanied them no further. He hid behind a great bowlder and fell to listening. There was a lagging, anxious silence, and then all of a sudden there was an explosion of firearms and a cry. Huck waited for no particulars. He sprang away and sped down the hill as fast as his legs could carry him. CHAPTER XXX AS the earliest suspicion of dawn appeared on Sunday morning, Huck came groping up the hill and rapped gently at the old Welshman's door. The inmates were asleep, but it was a sleep that was set on a hair-trigger, on account of the exciting episode of the night. A call came from a window: "Who's there!" Huck's scared voice answered in a low tone: "Please let me in! It's only Huck Finn!" "It's a name that can open this door night or day, lad!--and welcome!" These were strange words to the vagabond boy's ears, and the pleasantest he had ever heard. He could not recollect that the closing word had ever been applied in his case before. The door was quickly unlocked, and he entered. Huck was given a seat and the old man and his brace of tall sons speedily dressed themselves. "Now, my boy, I hope you're good and hungry, because breakfast will be ready as soon as the sun's up, and we'll have a piping hot one, too --make yourself easy about that! I and the boys hoped you'd turn up and stop here last night." "I was awful scared," said Huck, "and I run. I took out when the pistols went off, and I didn't stop for three mile. I've come now becuz I wanted to know about it, you know; and I come before daylight becuz I didn't want to run across them devils, even if they was dead." "Well, poor chap, you do look as if you'd had a hard night of it--but there's a bed here for you when you've had your breakfast. No, they ain't dead, lad--we are sorry enough for that. You see we knew right where to put our hands on them, by your description; so we crept along on tiptoe till we got within fifteen feet of them--dark as a cellar that sumach path was--and just then I found I was going to sneeze. It was the meanest kind of luck! I tried to keep it back, but no use --'twas bound to come, and it did come! I was in the lead with my pistol raised, and when the sneeze started those scoundrels a-rustling to get out of the path, I sung out, 'Fire boys!' and blazed away at the place where the rustling was. So did the boys. But they were off in a jiffy, those villains, and we after them, down through the woods. I judge we never touched them. They fired a shot apiece as they started, but their bullets whizzed by and didn't do us any harm. As soon as we lost the sound of their feet we quit chasing, and went down and stirred up the constables. They got a posse together, and went off to guard the river bank, and as soon as it is light the sheriff and a gang are going to beat up the woods. My boys will be with them presently. I wish we had some sort of description of those rascals--'twould help a good deal. But you couldn't see what they were like, in the dark, lad, I suppose?" "Oh yes; I saw them down-town and follered them." "Splendid! Describe them--describe them, my boy!" "One's the old deaf and dumb Spaniard that's ben around here once or twice, and t'other's a mean-looking, ragged--" "That's enough, lad, we know the men! Happened on them in the woods back of the widow's one day, and they slunk away. Off with you, boys, and tell the sheriff--get your breakfast to-morrow morning!" The Welshman's sons departed at once. As they were leaving the room Huck sprang up and exclaimed: "Oh, please don't tell ANYbody it was me that blowed on them! Oh, please!" "All right if you say it, Huck, but you ought to have the credit of what you did." "Oh no, no! Please don't tell!" When the young men were gone, the old Welshman said: "They won't tell--and I won't. But why don't you want it known?" Huck would not explain, further than to say that he already knew too much about one of those men and would not have the man know that he knew anything against him for the whole world--he would be killed for knowing it, sure. The old man promised secrecy once more, and said: "How did you come to follow these fellows, lad? Were they looking suspicious?" Huck was silent while he framed a duly cautious reply. Then he said: "Well, you see, I'm a kind of a hard lot,--least everybody says so, and I don't see nothing agin it--and sometimes I can't sleep much, on account of thinking about it and sort of trying to strike out a new way of doing. That was the way of it last night. I couldn't sleep, and so I come along up-street 'bout midnight, a-turning it all over, and when I got to that old shackly brick store by the Temperance Tavern, I backed up agin the wall to have another think. Well, just then along comes these two chaps slipping along close by me, with something under their arm, and I reckoned they'd stole it. One was a-smoking, and t'other one wanted a light; so they stopped right before me and the cigars lit up their faces and I see that the big one was the deaf and dumb Spaniard, by his white whiskers and the patch on his eye, and t'other one was a rusty, ragged-looking devil." "Could you see the rags by the light of the cigars?" This staggered Huck for a moment. Then he said: "Well, I don't know--but somehow it seems as if I did." "Then they went on, and you--" "Follered 'em--yes. That was it. I wanted to see what was up--they sneaked along so. I dogged 'em to the widder's stile, and stood in the dark and heard the ragged one beg for the widder, and the Spaniard swear he'd spile her looks just as I told you and your two--" "What! The DEAF AND DUMB man said all that!" Huck had made another terrible mistake! He was trying his best to keep the old man from getting the faintest hint of who the Spaniard might be, and yet his tongue seemed determined to get him into trouble in spite of all he could do. He made several efforts to creep out of his scrape, but the old man's eye was upon him and he made blunder after blunder. Presently the Welshman said: "My boy, don't be afraid of me. I wouldn't hurt a hair of your head for all the world. No--I'd protect you--I'd protect you. This Spaniard is not deaf and dumb; you've let that slip without intending it; you can't cover that up now. You know something about that Spaniard that you want to keep dark. Now trust me--tell me what it is, and trust me --I won't betray you." Huck looked into the old man's honest eyes a moment, then bent over and whispered in his ear: "'Tain't a Spaniard--it's Injun Joe!" The Welshman almost jumped out of his chair. In a moment he said: "It's all plain enough, now. When you talked about notching ears and slitting noses I judged that that was your own embellishment, because white men don't take that sort of revenge. But an Injun! That's a different matter altogether." During breakfast the talk went on, and in the course of it the old man said that the last thing which he and his sons had done, before going to bed, was to get a lantern and examine the stile and its vicinity for marks of blood. They found none, but captured a bulky bundle of-- "Of WHAT?" If the words had been lightning they could not have leaped with a more stunning suddenness from Huck's blanched lips. His eyes were staring wide, now, and his breath suspended--waiting for the answer. The Welshman started--stared in return--three seconds--five seconds--ten --then replied: "Of burglar's tools. Why, what's the MATTER with you?" Huck sank back, panting gently, but deeply, unutterably grateful. The Welshman eyed him gravely, curiously--and presently said: "Yes, burglar's tools. That appears to relieve you a good deal. But what did give you that turn? What were YOU expecting we'd found?" Huck was in a close place--the inquiring eye was upon him--he would have given anything for material for a plausible answer--nothing suggested itself--the inquiring eye was boring deeper and deeper--a senseless reply offered--there was no time to weigh it, so at a venture he uttered it--feebly: "Sunday-school books, maybe." Poor Huck was too distressed to smile, but the old man laughed loud and joyously, shook up the details of his anatomy from head to foot, and ended by saying that such a laugh was money in a-man's pocket, because it cut down the doctor's bill like everything. Then he added: "Poor old chap, you're white and jaded--you ain't well a bit--no wonder you're a little flighty and off your balance. But you'll come out of it. Rest and sleep will fetch you out all right, I hope." Huck was irritated to think he had been such a goose and betrayed such a suspicious excitement, for he had dropped the idea that the parcel brought from the tavern was the treasure, as soon as he had heard the talk at the widow's stile. He had only thought it was not the treasure, however--he had not known that it wasn't--and so the suggestion of a captured bundle was too much for his self-possession. But on the whole he felt glad the little episode had happened, for now he knew beyond all question that that bundle was not THE bundle, and so his mind was at rest and exceedingly comfortable. In fact, everything seemed to be drifting just in the right direction, now; the treasure must be still in No. 2, the men would be captured and jailed that day, and he and Tom could seize the gold that night without any trouble or any fear of interruption. Just as breakfast was completed there was a knock at the door. Huck jumped for a hiding-place, for he had no mind to be connected even remotely with the late event. The Welshman admitted several ladies and gentlemen, among them the Widow Douglas, and noticed that groups of citizens were climbing up the hill--to stare at the stile. So the news had spread. The Welshman had to tell the story of the night to the visitors. The widow's gratitude for her preservation was outspoken. "Don't say a word about it, madam. There's another that you're more beholden to than you are to me and my boys, maybe, but he don't allow me to tell his name. We wouldn't have been there but for him." Of course this excited a curiosity so vast that it almost belittled the main matter--but the Welshman allowed it to eat into the vitals of his visitors, and through them be transmitted to the whole town, for he refused to part with his secret. When all else had been learned, the widow said: "I went to sleep reading in bed and slept straight through all that noise. Why didn't you come and wake me?" "We judged it warn't worth while. Those fellows warn't likely to come again--they hadn't any tools left to work with, and what was the use of waking you up and scaring you to death? My three negro men stood guard at your house all the rest of the night. They've just come back." More visitors came, and the story had to be told and retold for a couple of hours more. There was no Sabbath-school during day-school vacation, but everybody was early at church. The stirring event was well canvassed. News came that not a sign of the two villains had been yet discovered. When the sermon was finished, Judge Thatcher's wife dropped alongside of Mrs. Harper as she moved down the aisle with the crowd and said: "Is my Becky going to sleep all day? I just expected she would be tired to death." "Your Becky?" "Yes," with a startled look--"didn't she stay with you last night?" "Why, no." Mrs. Thatcher turned pale, and sank into a pew, just as Aunt Polly, talking briskly with a friend, passed by. Aunt Polly said: "Good-morning, Mrs. Thatcher. Good-morning, Mrs. Harper. I've got a boy that's turned up missing. I reckon my Tom stayed at your house last night--one of you. And now he's afraid to come to church. I've got to settle with him." Mrs. Thatcher shook her head feebly and turned paler than ever. "He didn't stay with us," said Mrs. Harper, beginning to look uneasy. A marked anxiety came into Aunt Polly's face. "Joe Harper, have you seen my Tom this morning?" "No'm." "When did you see him last?" Joe tried to remember, but was not sure he could say. The people had stopped moving out of church. Whispers passed along, and a boding uneasiness took possession of every countenance. Children were anxiously questioned, and young teachers. They all said they had not noticed whether Tom and Becky were on board the ferryboat on the homeward trip; it was dark; no one thought of inquiring if any one was missing. One young man finally blurted out his fear that they were still in the cave! Mrs. Thatcher swooned away. Aunt Polly fell to crying and wringing her hands. The alarm swept from lip to lip, from group to group, from street to street, and within five minutes the bells were wildly clanging and the whole town was up! The Cardiff Hill episode sank into instant insignificance, the burglars were forgotten, horses were saddled, skiffs were manned, the ferryboat ordered out, and before the horror was half an hour old, two hundred men were pouring down highroad and river toward the cave. All the long afternoon the village seemed empty and dead. Many women visited Aunt Polly and Mrs. Thatcher and tried to comfort them. They cried with them, too, and that was still better than words. All the tedious night the town waited for news; but when the morning dawned at last, all the word that came was, "Send more candles--and send food." Mrs. Thatcher was almost crazed; and Aunt Polly, also. Judge Thatcher sent messages of hope and encouragement from the cave, but they conveyed no real cheer. The old Welshman came home toward daylight, spattered with candle-grease, smeared with clay, and almost worn out. He found Huck still in the bed that had been provided for him, and delirious with fever. The physicians were all at the cave, so the Widow Douglas came and took charge of the patient. She said she would do her best by him, because, whether he was good, bad, or indifferent, he was the Lord's, and nothing that was the Lord's was a thing to be neglected. The Welshman said Huck had good spots in him, and the widow said: "You can depend on it. That's the Lord's mark. He don't leave it off. He never does. Puts it somewhere on every creature that comes from his hands." Early in the forenoon parties of jaded men began to straggle into the village, but the strongest of the citizens continued searching. All the news that could be gained was that remotenesses of the cavern were being ransacked that had never been visited before; that every corner and crevice was going to be thoroughly searched; that wherever one wandered through the maze of passages, lights were to be seen flitting hither and thither in the distance, and shoutings and pistol-shots sent their hollow reverberations to the ear down the sombre aisles. In one place, far from the section usually traversed by tourists, the names "BECKY & TOM" had been found traced upon the rocky wall with candle-smoke, and near at hand a grease-soiled bit of ribbon. Mrs. Thatcher recognized the ribbon and cried over it. She said it was the last relic she should ever have of her child; and that no other memorial of her could ever be so precious, because this one parted latest from the living body before the awful death came. Some said that now and then, in the cave, a far-away speck of light would glimmer, and then a glorious shout would burst forth and a score of men go trooping down the echoing aisle--and then a sickening disappointment always followed; the children were not there; it was only a searcher's light. Three dreadful days and nights dragged their tedious hours along, and the village sank into a hopeless stupor. No one had heart for anything. The accidental discovery, just made, that the proprietor of the Temperance Tavern kept liquor on his premises, scarcely fluttered the public pulse, tremendous as the fact was. In a lucid interval, Huck feebly led up to the subject of taverns, and finally asked--dimly dreading the worst--if anything had been discovered at the Temperance Tavern since he had been ill. "Yes," said the widow. Huck started up in bed, wild-eyed: "What? What was it?" "Liquor!--and the place has been shut up. Lie down, child--what a turn you did give me!" "Only tell me just one thing--only just one--please! Was it Tom Sawyer that found it?" The widow burst into tears. "Hush, hush, child, hush! I've told you before, you must NOT talk. You are very, very sick!" Then nothing but liquor had been found; there would have been a great powwow if it had been the gold. So the treasure was gone forever--gone forever! But what could she be crying about? Curious that she should cry. These thoughts worked their dim way through Huck's mind, and under the weariness they gave him he fell asleep. The widow said to herself: "There--he's asleep, poor wreck. Tom Sawyer find it! Pity but somebody could find Tom Sawyer! Ah, there ain't many left, now, that's got hope enough, or strength enough, either, to go on searching." CHAPTER XXXI NOW to return to Tom and Becky's share in the picnic. They tripped along the murky aisles with the rest of the company, visiting the familiar wonders of the cave--wonders dubbed with rather over-descriptive names, such as "The Drawing-Room," "The Cathedral," "Aladdin's Palace," and so on. Presently the hide-and-seek frolicking began, and Tom and Becky engaged in it with zeal until the exertion began to grow a trifle wearisome; then they wandered down a sinuous avenue holding their candles aloft and reading the tangled web-work of names, dates, post-office addresses, and mottoes with which the rocky walls had been frescoed (in candle-smoke). Still drifting along and talking, they scarcely noticed that they were now in a part of the cave whose walls were not frescoed. They smoked their own names under an overhanging shelf and moved on. Presently they came to a place where a little stream of water, trickling over a ledge and carrying a limestone sediment with it, had, in the slow-dragging ages, formed a laced and ruffled Niagara in gleaming and imperishable stone. Tom squeezed his small body behind it in order to illuminate it for Becky's gratification. He found that it curtained a sort of steep natural stairway which was enclosed between narrow walls, and at once the ambition to be a discoverer seized him. Becky responded to his call, and they made a smoke-mark for future guidance, and started upon their quest. They wound this way and that, far down into the secret depths of the cave, made another mark, and branched off in search of novelties to tell the upper world about. In one place they found a spacious cavern, from whose ceiling depended a multitude of shining stalactites of the length and circumference of a man's leg; they walked all about it, wondering and admiring, and presently left it by one of the numerous passages that opened into it. This shortly brought them to a bewitching spring, whose basin was incrusted with a frostwork of glittering crystals; it was in the midst of a cavern whose walls were supported by many fantastic pillars which had been formed by the joining of great stalactites and stalagmites together, the result of the ceaseless water-drip of centuries. Under the roof vast knots of bats had packed themselves together, thousands in a bunch; the lights disturbed the creatures and they came flocking down by hundreds, squeaking and darting furiously at the candles. Tom knew their ways and the danger of this sort of conduct. He seized Becky's hand and hurried her into the first corridor that offered; and none too soon, for a bat struck Becky's light out with its wing while she was passing out of the cavern. The bats chased the children a good distance; but the fugitives plunged into every new passage that offered, and at last got rid of the perilous things. Tom found a subterranean lake, shortly, which stretched its dim length away until its shape was lost in the shadows. He wanted to explore its borders, but concluded that it would be best to sit down and rest awhile, first. Now, for the first time, the deep stillness of the place laid a clammy hand upon the spirits of the children. Becky said: "Why, I didn't notice, but it seems ever so long since I heard any of the others." "Come to think, Becky, we are away down below them--and I don't know how far away north, or south, or east, or whichever it is. We couldn't hear them here." Becky grew apprehensive. "I wonder how long we've been down here, Tom? We better start back." "Yes, I reckon we better. P'raps we better." "Can you find the way, Tom? It's all a mixed-up crookedness to me." "I reckon I could find it--but then the bats. If they put our candles out it will be an awful fix. Let's try some other way, so as not to go through there." "Well. But I hope we won't get lost. It would be so awful!" and the girl shuddered at the thought of the dreadful possibilities. They started through a corridor, and traversed it in silence a long way, glancing at each new opening, to see if there was anything familiar about the look of it; but they were all strange. Every time Tom made an examination, Becky would watch his face for an encouraging sign, and he would say cheerily: "Oh, it's all right. This ain't the one, but we'll come to it right away!" But he felt less and less hopeful with each failure, and presently began to turn off into diverging avenues at sheer random, in desperate hope of finding the one that was wanted. He still said it was "all right," but there was such a leaden dread at his heart that the words had lost their ring and sounded just as if he had said, "All is lost!" Becky clung to his side in an anguish of fear, and tried hard to keep back the tears, but they would come. At last she said: "Oh, Tom, never mind the bats, let's go back that way! We seem to get worse and worse off all the time." "Listen!" said he. Profound silence; silence so deep that even their breathings were conspicuous in the hush. Tom shouted. The call went echoing down the empty aisles and died out in the distance in a faint sound that resembled a ripple of mocking laughter. "Oh, don't do it again, Tom, it is too horrid," said Becky. "It is horrid, but I better, Becky; they might hear us, you know," and he shouted again. The "might" was even a chillier horror than the ghostly laughter, it so confessed a perishing hope. The children stood still and listened; but there was no result. Tom turned upon the back track at once, and hurried his steps. It was but a little while before a certain indecision in his manner revealed another fearful fact to Becky--he could not find his way back! "Oh, Tom, you didn't make any marks!" "Becky, I was such a fool! Such a fool! I never thought we might want to come back! No--I can't find the way. It's all mixed up." "Tom, Tom, we're lost! we're lost! We never can get out of this awful place! Oh, why DID we ever leave the others!" She sank to the ground and burst into such a frenzy of crying that Tom was appalled with the idea that she might die, or lose her reason. He sat down by her and put his arms around her; she buried her face in his bosom, she clung to him, she poured out her terrors, her unavailing regrets, and the far echoes turned them all to jeering laughter. Tom begged her to pluck up hope again, and she said she could not. He fell to blaming and abusing himself for getting her into this miserable situation; this had a better effect. She said she would try to hope again, she would get up and follow wherever he might lead if only he would not talk like that any more. For he was no more to blame than she, she said. So they moved on again--aimlessly--simply at random--all they could do was to move, keep moving. For a little while, hope made a show of reviving--not with any reason to back it, but only because it is its nature to revive when the spring has not been taken out of it by age and familiarity with failure. By-and-by Tom took Becky's candle and blew it out. This economy meant so much! Words were not needed. Becky understood, and her hope died again. She knew that Tom had a whole candle and three or four pieces in his pockets--yet he must economize. By-and-by, fatigue began to assert its claims; the children tried to pay attention, for it was dreadful to think of sitting down when time was grown to be so precious, moving, in some direction, in any direction, was at least progress and might bear fruit; but to sit down was to invite death and shorten its pursuit. At last Becky's frail limbs refused to carry her farther. She sat down. Tom rested with her, and they talked of home, and the friends there, and the comfortable beds and, above all, the light! Becky cried, and Tom tried to think of some way of comforting her, but all his encouragements were grown threadbare with use, and sounded like sarcasms. Fatigue bore so heavily upon Becky that she drowsed off to sleep. Tom was grateful. He sat looking into her drawn face and saw it grow smooth and natural under the influence of pleasant dreams; and by-and-by a smile dawned and rested there. The peaceful face reflected somewhat of peace and healing into his own spirit, and his thoughts wandered away to bygone times and dreamy memories. While he was deep in his musings, Becky woke up with a breezy little laugh--but it was stricken dead upon her lips, and a groan followed it. "Oh, how COULD I sleep! I wish I never, never had waked! No! No, I don't, Tom! Don't look so! I won't say it again." "I'm glad you've slept, Becky; you'll feel rested, now, and we'll find the way out." "We can try, Tom; but I've seen such a beautiful country in my dream. I reckon we are going there." "Maybe not, maybe not. Cheer up, Becky, and let's go on trying." They rose up and wandered along, hand in hand and hopeless. They tried to estimate how long they had been in the cave, but all they knew was that it seemed days and weeks, and yet it was plain that this could not be, for their candles were not gone yet. A long time after this--they could not tell how long--Tom said they must go softly and listen for dripping water--they must find a spring. They found one presently, and Tom said it was time to rest again. Both were cruelly tired, yet Becky said she thought she could go a little farther. She was surprised to hear Tom dissent. She could not understand it. They sat down, and Tom fastened his candle to the wall in front of them with some clay. Thought was soon busy; nothing was said for some time. Then Becky broke the silence: "Tom, I am so hungry!" Tom took something out of his pocket. "Do you remember this?" said he. Becky almost smiled. "It's our wedding-cake, Tom." "Yes--I wish it was as big as a barrel, for it's all we've got." "I saved it from the picnic for us to dream on, Tom, the way grown-up people do with wedding-cake--but it'll be our--" She dropped the sentence where it was. Tom divided the cake and Becky ate with good appetite, while Tom nibbled at his moiety. There was abundance of cold water to finish the feast with. By-and-by Becky suggested that they move on again. Tom was silent a moment. Then he said: "Becky, can you bear it if I tell you something?" Becky's face paled, but she thought she could. "Well, then, Becky, we must stay here, where there's water to drink. That little piece is our last candle!" Becky gave loose to tears and wailings. Tom did what he could to comfort her, but with little effect. At length Becky said: "Tom!" "Well, Becky?" "They'll miss us and hunt for us!" "Yes, they will! Certainly they will!" "Maybe they're hunting for us now, Tom." "Why, I reckon maybe they are. I hope they are." "When would they miss us, Tom?" "When they get back to the boat, I reckon." "Tom, it might be dark then--would they notice we hadn't come?" "I don't know. But anyway, your mother would miss you as soon as they got home." A frightened look in Becky's face brought Tom to his senses and he saw that he had made a blunder. Becky was not to have gone home that night! The children became silent and thoughtful. In a moment a new burst of grief from Becky showed Tom that the thing in his mind had struck hers also--that the Sabbath morning might be half spent before Mrs. Thatcher discovered that Becky was not at Mrs. Harper's. The children fastened their eyes upon their bit of candle and watched it melt slowly and pitilessly away; saw the half inch of wick stand alone at last; saw the feeble flame rise and fall, climb the thin column of smoke, linger at its top a moment, and then--the horror of utter darkness reigned! How long afterward it was that Becky came to a slow consciousness that she was crying in Tom's arms, neither could tell. All that they knew was, that after what seemed a mighty stretch of time, both awoke out of a dead stupor of sleep and resumed their miseries once more. Tom said it might be Sunday, now--maybe Monday. He tried to get Becky to talk, but her sorrows were too oppressive, all her hopes were gone. Tom said that they must have been missed long ago, and no doubt the search was going on. He would shout and maybe some one would come. He tried it; but in the darkness the distant echoes sounded so hideously that he tried it no more. The hours wasted away, and hunger came to torment the captives again. A portion of Tom's half of the cake was left; they divided and ate it. But they seemed hungrier than before. The poor morsel of food only whetted desire. By-and-by Tom said: "SH! Did you hear that?" Both held their breath and listened. There was a sound like the faintest, far-off shout. Instantly Tom answered it, and leading Becky by the hand, started groping down the corridor in its direction. Presently he listened again; again the sound was heard, and apparently a little nearer. "It's them!" said Tom; "they're coming! Come along, Becky--we're all right now!" The joy of the prisoners was almost overwhelming. Their speed was slow, however, because pitfalls were somewhat common, and had to be guarded against. They shortly came to one and had to stop. It might be three feet deep, it might be a hundred--there was no passing it at any rate. Tom got down on his breast and reached as far down as he could. No bottom. They must stay there and wait until the searchers came. They listened; evidently the distant shoutings were growing more distant! a moment or two more and they had gone altogether. The heart-sinking misery of it! Tom whooped until he was hoarse, but it was of no use. He talked hopefully to Becky; but an age of anxious waiting passed and no sounds came again. The children groped their way back to the spring. The weary time dragged on; they slept again, and awoke famished and woe-stricken. Tom believed it must be Tuesday by this time. Now an idea struck him. There were some side passages near at hand. It would be better to explore some of these than bear the weight of the heavy time in idleness. He took a kite-line from his pocket, tied it to a projection, and he and Becky started, Tom in the lead, unwinding the line as he groped along. At the end of twenty steps the corridor ended in a "jumping-off place." Tom got down on his knees and felt below, and then as far around the corner as he could reach with his hands conveniently; he made an effort to stretch yet a little farther to the right, and at that moment, not twenty yards away, a human hand, holding a candle, appeared from behind a rock! Tom lifted up a glorious shout, and instantly that hand was followed by the body it belonged to--Injun Joe's! Tom was paralyzed; he could not move. He was vastly gratified the next moment, to see the "Spaniard" take to his heels and get himself out of sight. Tom wondered that Joe had not recognized his voice and come over and killed him for testifying in court. But the echoes must have disguised the voice. Without doubt, that was it, he reasoned. Tom's fright weakened every muscle in his body. He said to himself that if he had strength enough to get back to the spring he would stay there, and nothing should tempt him to run the risk of meeting Injun Joe again. He was careful to keep from Becky what it was he had seen. He told her he had only shouted "for luck." But hunger and wretchedness rise superior to fears in the long run. Another tedious wait at the spring and another long sleep brought changes. The children awoke tortured with a raging hunger. Tom believed that it must be Wednesday or Thursday or even Friday or Saturday, now, and that the search had been given over. He proposed to explore another passage. He felt willing to risk Injun Joe and all other terrors. But Becky was very weak. She had sunk into a dreary apathy and would not be roused. She said she would wait, now, where she was, and die--it would not be long. She told Tom to go with the kite-line and explore if he chose; but she implored him to come back every little while and speak to her; and she made him promise that when the awful time came, he would stay by her and hold her hand until all was over. Tom kissed her, with a choking sensation in his throat, and made a show of being confident of finding the searchers or an escape from the cave; then he took the kite-line in his hand and went groping down one of the passages on his hands and knees, distressed with hunger and sick with bodings of coming doom. CHAPTER XXXII TUESDAY afternoon came, and waned to the twilight. The village of St. Petersburg still mourned. The lost children had not been found. Public prayers had been offered up for them, and many and many a private prayer that had the petitioner's whole heart in it; but still no good news came from the cave. The majority of the searchers had given up the quest and gone back to their daily avocations, saying that it was plain the children could never be found. Mrs. Thatcher was very ill, and a great part of the time delirious. People said it was heartbreaking to hear her call her child, and raise her head and listen a whole minute at a time, then lay it wearily down again with a moan. Aunt Polly had drooped into a settled melancholy, and her gray hair had grown almost white. The village went to its rest on Tuesday night, sad and forlorn. Away in the middle of the night a wild peal burst from the village bells, and in a moment the streets were swarming with frantic half-clad people, who shouted, "Turn out! turn out! they're found! they're found!" Tin pans and horns were added to the din, the population massed itself and moved toward the river, met the children coming in an open carriage drawn by shouting citizens, thronged around it, joined its homeward march, and swept magnificently up the main street roaring huzzah after huzzah! The village was illuminated; nobody went to bed again; it was the greatest night the little town had ever seen. During the first half-hour a procession of villagers filed through Judge Thatcher's house, seized the saved ones and kissed them, squeezed Mrs. Thatcher's hand, tried to speak but couldn't--and drifted out raining tears all over the place. Aunt Polly's happiness was complete, and Mrs. Thatcher's nearly so. It would be complete, however, as soon as the messenger dispatched with the great news to the cave should get the word to her husband. Tom lay upon a sofa with an eager auditory about him and told the history of the wonderful adventure, putting in many striking additions to adorn it withal; and closed with a description of how he left Becky and went on an exploring expedition; how he followed two avenues as far as his kite-line would reach; how he followed a third to the fullest stretch of the kite-line, and was about to turn back when he glimpsed a far-off speck that looked like daylight; dropped the line and groped toward it, pushed his head and shoulders through a small hole, and saw the broad Mississippi rolling by! And if it had only happened to be night he would not have seen that speck of daylight and would not have explored that passage any more! He told how he went back for Becky and broke the good news and she told him not to fret her with such stuff, for she was tired, and knew she was going to die, and wanted to. He described how he labored with her and convinced her; and how she almost died for joy when she had groped to where she actually saw the blue speck of daylight; how he pushed his way out at the hole and then helped her out; how they sat there and cried for gladness; how some men came along in a skiff and Tom hailed them and told them their situation and their famished condition; how the men didn't believe the wild tale at first, "because," said they, "you are five miles down the river below the valley the cave is in" --then took them aboard, rowed to a house, gave them supper, made them rest till two or three hours after dark and then brought them home. Before day-dawn, Judge Thatcher and the handful of searchers with him were tracked out, in the cave, by the twine clews they had strung behind them, and informed of the great news. Three days and nights of toil and hunger in the cave were not to be shaken off at once, as Tom and Becky soon discovered. They were bedridden all of Wednesday and Thursday, and seemed to grow more and more tired and worn, all the time. Tom got about, a little, on Thursday, was down-town Friday, and nearly as whole as ever Saturday; but Becky did not leave her room until Sunday, and then she looked as if she had passed through a wasting illness. Tom learned of Huck's sickness and went to see him on Friday, but could not be admitted to the bedroom; neither could he on Saturday or Sunday. He was admitted daily after that, but was warned to keep still about his adventure and introduce no exciting topic. The Widow Douglas stayed by to see that he obeyed. At home Tom learned of the Cardiff Hill event; also that the "ragged man's" body had eventually been found in the river near the ferry-landing; he had been drowned while trying to escape, perhaps. About a fortnight after Tom's rescue from the cave, he started off to visit Huck, who had grown plenty strong enough, now, to hear exciting talk, and Tom had some that would interest him, he thought. Judge Thatcher's house was on Tom's way, and he stopped to see Becky. The Judge and some friends set Tom to talking, and some one asked him ironically if he wouldn't like to go to the cave again. Tom said he thought he wouldn't mind it. The Judge said: "Well, there are others just like you, Tom, I've not the least doubt. But we have taken care of that. Nobody will get lost in that cave any more." "Why?" "Because I had its big door sheathed with boiler iron two weeks ago, and triple-locked--and I've got the keys." Tom turned as white as a sheet. "What's the matter, boy! Here, run, somebody! Fetch a glass of water!" The water was brought and thrown into Tom's face. "Ah, now you're all right. What was the matter with you, Tom?" "Oh, Judge, Injun Joe's in the cave!" CHAPTER XXXIII WITHIN a few minutes the news had spread, and a dozen skiff-loads of men were on their way to McDougal's cave, and the ferryboat, well filled with passengers, soon followed. Tom Sawyer was in the skiff that bore Judge Thatcher. When the cave door was unlocked, a sorrowful sight presented itself in the dim twilight of the place. Injun Joe lay stretched upon the ground, dead, with his face close to the crack of the door, as if his longing eyes had been fixed, to the latest moment, upon the light and the cheer of the free world outside. Tom was touched, for he knew by his own experience how this wretch had suffered. His pity was moved, but nevertheless he felt an abounding sense of relief and security, now, which revealed to him in a degree which he had not fully appreciated before how vast a weight of dread had been lying upon him since the day he lifted his voice against this bloody-minded outcast. Injun Joe's bowie-knife lay close by, its blade broken in two. The great foundation-beam of the door had been chipped and hacked through, with tedious labor; useless labor, too, it was, for the native rock formed a sill outside it, and upon that stubborn material the knife had wrought no effect; the only damage done was to the knife itself. But if there had been no stony obstruction there the labor would have been useless still, for if the beam had been wholly cut away Injun Joe could not have squeezed his body under the door, and he knew it. So he had only hacked that place in order to be doing something--in order to pass the weary time--in order to employ his tortured faculties. Ordinarily one could find half a dozen bits of candle stuck around in the crevices of this vestibule, left there by tourists; but there were none now. The prisoner had searched them out and eaten them. He had also contrived to catch a few bats, and these, also, he had eaten, leaving only their claws. The poor unfortunate had starved to death. In one place, near at hand, a stalagmite had been slowly growing up from the ground for ages, builded by the water-drip from a stalactite overhead. The captive had broken off the stalagmite, and upon the stump had placed a stone, wherein he had scooped a shallow hollow to catch the precious drop that fell once in every three minutes with the dreary regularity of a clock-tick--a dessertspoonful once in four and twenty hours. That drop was falling when the Pyramids were new; when Troy fell; when the foundations of Rome were laid; when Christ was crucified; when the Conqueror created the British empire; when Columbus sailed; when the massacre at Lexington was "news." It is falling now; it will still be falling when all these things shall have sunk down the afternoon of history, and the twilight of tradition, and been swallowed up in the thick night of oblivion. Has everything a purpose and a mission? Did this drop fall patiently during five thousand years to be ready for this flitting human insect's need? and has it another important object to accomplish ten thousand years to come? No matter. It is many and many a year since the hapless half-breed scooped out the stone to catch the priceless drops, but to this day the tourist stares longest at that pathetic stone and that slow-dropping water when he comes to see the wonders of McDougal's cave. Injun Joe's cup stands first in the list of the cavern's marvels; even "Aladdin's Palace" cannot rival it. Injun Joe was buried near the mouth of the cave; and people flocked there in boats and wagons from the towns and from all the farms and hamlets for seven miles around; they brought their children, and all sorts of provisions, and confessed that they had had almost as satisfactory a time at the funeral as they could have had at the hanging. This funeral stopped the further growth of one thing--the petition to the governor for Injun Joe's pardon. The petition had been largely signed; many tearful and eloquent meetings had been held, and a committee of sappy women been appointed to go in deep mourning and wail around the governor, and implore him to be a merciful ass and trample his duty under foot. Injun Joe was believed to have killed five citizens of the village, but what of that? If he had been Satan himself there would have been plenty of weaklings ready to scribble their names to a pardon-petition, and drip a tear on it from their permanently impaired and leaky water-works. The morning after the funeral Tom took Huck to a private place to have an important talk. Huck had learned all about Tom's adventure from the Welshman and the Widow Douglas, by this time, but Tom said he reckoned there was one thing they had not told him; that thing was what he wanted to talk about now. Huck's face saddened. He said: "I know what it is. You got into No. 2 and never found anything but whiskey. Nobody told me it was you; but I just knowed it must 'a' ben you, soon as I heard 'bout that whiskey business; and I knowed you hadn't got the money becuz you'd 'a' got at me some way or other and told me even if you was mum to everybody else. Tom, something's always told me we'd never get holt of that swag." "Why, Huck, I never told on that tavern-keeper. YOU know his tavern was all right the Saturday I went to the picnic. Don't you remember you was to watch there that night?" "Oh yes! Why, it seems 'bout a year ago. It was that very night that I follered Injun Joe to the widder's." "YOU followed him?" "Yes--but you keep mum. I reckon Injun Joe's left friends behind him, and I don't want 'em souring on me and doing me mean tricks. If it hadn't ben for me he'd be down in Texas now, all right." Then Huck told his entire adventure in confidence to Tom, who had only heard of the Welshman's part of it before. "Well," said Huck, presently, coming back to the main question, "whoever nipped the whiskey in No. 2, nipped the money, too, I reckon --anyways it's a goner for us, Tom." "Huck, that money wasn't ever in No. 2!" "What!" Huck searched his comrade's face keenly. "Tom, have you got on the track of that money again?" "Huck, it's in the cave!" Huck's eyes blazed. "Say it again, Tom." "The money's in the cave!" "Tom--honest injun, now--is it fun, or earnest?" "Earnest, Huck--just as earnest as ever I was in my life. Will you go in there with me and help get it out?" "I bet I will! I will if it's where we can blaze our way to it and not get lost." "Huck, we can do that without the least little bit of trouble in the world." "Good as wheat! What makes you think the money's--" "Huck, you just wait till we get in there. If we don't find it I'll agree to give you my drum and every thing I've got in the world. I will, by jings." "All right--it's a whiz. When do you say?" "Right now, if you say it. Are you strong enough?" "Is it far in the cave? I ben on my pins a little, three or four days, now, but I can't walk more'n a mile, Tom--least I don't think I could." "It's about five mile into there the way anybody but me would go, Huck, but there's a mighty short cut that they don't anybody but me know about. Huck, I'll take you right to it in a skiff. I'll float the skiff down there, and I'll pull it back again all by myself. You needn't ever turn your hand over." "Less start right off, Tom." "All right. We want some bread and meat, and our pipes, and a little bag or two, and two or three kite-strings, and some of these new-fangled things they call lucifer matches. I tell you, many's the time I wished I had some when I was in there before." A trifle after noon the boys borrowed a small skiff from a citizen who was absent, and got under way at once. When they were several miles below "Cave Hollow," Tom said: "Now you see this bluff here looks all alike all the way down from the cave hollow--no houses, no wood-yards, bushes all alike. But do you see that white place up yonder where there's been a landslide? Well, that's one of my marks. We'll get ashore, now." They landed. "Now, Huck, where we're a-standing you could touch that hole I got out of with a fishing-pole. See if you can find it." Huck searched all the place about, and found nothing. Tom proudly marched into a thick clump of sumach bushes and said: "Here you are! Look at it, Huck; it's the snuggest hole in this country. You just keep mum about it. All along I've been wanting to be a robber, but I knew I'd got to have a thing like this, and where to run across it was the bother. We've got it now, and we'll keep it quiet, only we'll let Joe Harper and Ben Rogers in--because of course there's got to be a Gang, or else there wouldn't be any style about it. Tom Sawyer's Gang--it sounds splendid, don't it, Huck?" "Well, it just does, Tom. And who'll we rob?" "Oh, most anybody. Waylay people--that's mostly the way." "And kill them?" "No, not always. Hive them in the cave till they raise a ransom." "What's a ransom?" "Money. You make them raise all they can, off'n their friends; and after you've kept them a year, if it ain't raised then you kill them. That's the general way. Only you don't kill the women. You shut up the women, but you don't kill them. They're always beautiful and rich, and awfully scared. You take their watches and things, but you always take your hat off and talk polite. They ain't anybody as polite as robbers --you'll see that in any book. Well, the women get to loving you, and after they've been in the cave a week or two weeks they stop crying and after that you couldn't get them to leave. If you drove them out they'd turn right around and come back. It's so in all the books." "Why, it's real bully, Tom. I believe it's better'n to be a pirate." "Yes, it's better in some ways, because it's close to home and circuses and all that." By this time everything was ready and the boys entered the hole, Tom in the lead. They toiled their way to the farther end of the tunnel, then made their spliced kite-strings fast and moved on. A few steps brought them to the spring, and Tom felt a shudder quiver all through him. He showed Huck the fragment of candle-wick perched on a lump of clay against the wall, and described how he and Becky had watched the flame struggle and expire. The boys began to quiet down to whispers, now, for the stillness and gloom of the place oppressed their spirits. They went on, and presently entered and followed Tom's other corridor until they reached the "jumping-off place." The candles revealed the fact that it was not really a precipice, but only a steep clay hill twenty or thirty feet high. Tom whispered: "Now I'll show you something, Huck." He held his candle aloft and said: "Look as far around the corner as you can. Do you see that? There--on the big rock over yonder--done with candle-smoke." "Tom, it's a CROSS!" "NOW where's your Number Two? 'UNDER THE CROSS,' hey? Right yonder's where I saw Injun Joe poke up his candle, Huck!" Huck stared at the mystic sign awhile, and then said with a shaky voice: "Tom, less git out of here!" "What! and leave the treasure?" "Yes--leave it. Injun Joe's ghost is round about there, certain." "No it ain't, Huck, no it ain't. It would ha'nt the place where he died--away out at the mouth of the cave--five mile from here." "No, Tom, it wouldn't. It would hang round the money. I know the ways of ghosts, and so do you." Tom began to fear that Huck was right. Misgivings gathered in his mind. But presently an idea occurred to him-- "Lookyhere, Huck, what fools we're making of ourselves! Injun Joe's ghost ain't a going to come around where there's a cross!" The point was well taken. It had its effect. "Tom, I didn't think of that. But that's so. It's luck for us, that cross is. I reckon we'll climb down there and have a hunt for that box." Tom went first, cutting rude steps in the clay hill as he descended. Huck followed. Four avenues opened out of the small cavern which the great rock stood in. The boys examined three of them with no result. They found a small recess in the one nearest the base of the rock, with a pallet of blankets spread down in it; also an old suspender, some bacon rind, and the well-gnawed bones of two or three fowls. But there was no money-box. The lads searched and researched this place, but in vain. Tom said: "He said UNDER the cross. Well, this comes nearest to being under the cross. It can't be under the rock itself, because that sets solid on the ground." They searched everywhere once more, and then sat down discouraged. Huck could suggest nothing. By-and-by Tom said: "Lookyhere, Huck, there's footprints and some candle-grease on the clay about one side of this rock, but not on the other sides. Now, what's that for? I bet you the money IS under the rock. I'm going to dig in the clay." "That ain't no bad notion, Tom!" said Huck with animation. Tom's "real Barlow" was out at once, and he had not dug four inches before he struck wood. "Hey, Huck!--you hear that?" Huck began to dig and scratch now. Some boards were soon uncovered and removed. They had concealed a natural chasm which led under the rock. Tom got into this and held his candle as far under the rock as he could, but said he could not see to the end of the rift. He proposed to explore. He stooped and passed under; the narrow way descended gradually. He followed its winding course, first to the right, then to the left, Huck at his heels. Tom turned a short curve, by-and-by, and exclaimed: "My goodness, Huck, lookyhere!" It was the treasure-box, sure enough, occupying a snug little cavern, along with an empty powder-keg, a couple of guns in leather cases, two or three pairs of old moccasins, a leather belt, and some other rubbish well soaked with the water-drip. "Got it at last!" said Huck, ploughing among the tarnished coins with his hand. "My, but we're rich, Tom!" "Huck, I always reckoned we'd get it. It's just too good to believe, but we HAVE got it, sure! Say--let's not fool around here. Let's snake it out. Lemme see if I can lift the box." It weighed about fifty pounds. Tom could lift it, after an awkward fashion, but could not carry it conveniently. "I thought so," he said; "THEY carried it like it was heavy, that day at the ha'nted house. I noticed that. I reckon I was right to think of fetching the little bags along." The money was soon in the bags and the boys took it up to the cross rock. "Now less fetch the guns and things," said Huck. "No, Huck--leave them there. They're just the tricks to have when we go to robbing. We'll keep them there all the time, and we'll hold our orgies there, too. It's an awful snug place for orgies." "What orgies?" "I dono. But robbers always have orgies, and of course we've got to have them, too. Come along, Huck, we've been in here a long time. It's getting late, I reckon. I'm hungry, too. We'll eat and smoke when we get to the skiff." They presently emerged into the clump of sumach bushes, looked warily out, found the coast clear, and were soon lunching and smoking in the skiff. As the sun dipped toward the horizon they pushed out and got under way. Tom skimmed up the shore through the long twilight, chatting cheerily with Huck, and landed shortly after dark. "Now, Huck," said Tom, "we'll hide the money in the loft of the widow's woodshed, and I'll come up in the morning and we'll count it and divide, and then we'll hunt up a place out in the woods for it where it will be safe. Just you lay quiet here and watch the stuff till I run and hook Benny Taylor's little wagon; I won't be gone a minute." He disappeared, and presently returned with the wagon, put the two small sacks into it, threw some old rags on top of them, and started off, dragging his cargo behind him. When the boys reached the Welshman's house, they stopped to rest. Just as they were about to move on, the Welshman stepped out and said: "Hallo, who's that?" "Huck and Tom Sawyer." "Good! Come along with me, boys, you are keeping everybody waiting. Here--hurry up, trot ahead--I'll haul the wagon for you. Why, it's not as light as it might be. Got bricks in it?--or old metal?" "Old metal," said Tom. "I judged so; the boys in this town will take more trouble and fool away more time hunting up six bits' worth of old iron to sell to the foundry than they would to make twice the money at regular work. But that's human nature--hurry along, hurry along!" The boys wanted to know what the hurry was about. "Never mind; you'll see, when we get to the Widow Douglas'." Huck said with some apprehension--for he was long used to being falsely accused: "Mr. Jones, we haven't been doing nothing." The Welshman laughed. "Well, I don't know, Huck, my boy. I don't know about that. Ain't you and the widow good friends?" "Yes. Well, she's ben good friends to me, anyway." "All right, then. What do you want to be afraid for?" This question was not entirely answered in Huck's slow mind before he found himself pushed, along with Tom, into Mrs. Douglas' drawing-room. Mr. Jones left the wagon near the door and followed. The place was grandly lighted, and everybody that was of any consequence in the village was there. The Thatchers were there, the Harpers, the Rogerses, Aunt Polly, Sid, Mary, the minister, the editor, and a great many more, and all dressed in their best. The widow received the boys as heartily as any one could well receive two such looking beings. They were covered with clay and candle-grease. Aunt Polly blushed crimson with humiliation, and frowned and shook her head at Tom. Nobody suffered half as much as the two boys did, however. Mr. Jones said: "Tom wasn't at home, yet, so I gave him up; but I stumbled on him and Huck right at my door, and so I just brought them along in a hurry." "And you did just right," said the widow. "Come with me, boys." She took them to a bedchamber and said: "Now wash and dress yourselves. Here are two new suits of clothes --shirts, socks, everything complete. They're Huck's--no, no thanks, Huck--Mr. Jones bought one and I the other. But they'll fit both of you. Get into them. We'll wait--come down when you are slicked up enough." Then she left. CHAPTER XXXIV HUCK said: "Tom, we can slope, if we can find a rope. The window ain't high from the ground." "Shucks! what do you want to slope for?" "Well, I ain't used to that kind of a crowd. I can't stand it. I ain't going down there, Tom." "Oh, bother! It ain't anything. I don't mind it a bit. I'll take care of you." Sid appeared. "Tom," said he, "auntie has been waiting for you all the afternoon. Mary got your Sunday clothes ready, and everybody's been fretting about you. Say--ain't this grease and clay, on your clothes?" "Now, Mr. Siddy, you jist 'tend to your own business. What's all this blow-out about, anyway?" "It's one of the widow's parties that she's always having. This time it's for the Welshman and his sons, on account of that scrape they helped her out of the other night. And say--I can tell you something, if you want to know." "Well, what?" "Why, old Mr. Jones is going to try to spring something on the people here to-night, but I overheard him tell auntie to-day about it, as a secret, but I reckon it's not much of a secret now. Everybody knows --the widow, too, for all she tries to let on she don't. Mr. Jones was bound Huck should be here--couldn't get along with his grand secret without Huck, you know!" "Secret about what, Sid?" "About Huck tracking the robbers to the widow's. I reckon Mr. Jones was going to make a grand time over his surprise, but I bet you it will drop pretty flat." Sid chuckled in a very contented and satisfied way. "Sid, was it you that told?" "Oh, never mind who it was. SOMEBODY told--that's enough." "Sid, there's only one person in this town mean enough to do that, and that's you. If you had been in Huck's place you'd 'a' sneaked down the hill and never told anybody on the robbers. You can't do any but mean things, and you can't bear to see anybody praised for doing good ones. There--no thanks, as the widow says"--and Tom cuffed Sid's ears and helped him to the door with several kicks. "Now go and tell auntie if you dare--and to-morrow you'll catch it!" Some minutes later the widow's guests were at the supper-table, and a dozen children were propped up at little side-tables in the same room, after the fashion of that country and that day. At the proper time Mr. Jones made his little speech, in which he thanked the widow for the honor she was doing himself and his sons, but said that there was another person whose modesty-- And so forth and so on. He sprung his secret about Huck's share in the adventure in the finest dramatic manner he was master of, but the surprise it occasioned was largely counterfeit and not as clamorous and effusive as it might have been under happier circumstances. However, the widow made a pretty fair show of astonishment, and heaped so many compliments and so much gratitude upon Huck that he almost forgot the nearly intolerable discomfort of his new clothes in the entirely intolerable discomfort of being set up as a target for everybody's gaze and everybody's laudations. The widow said she meant to give Huck a home under her roof and have him educated; and that when she could spare the money she would start him in business in a modest way. Tom's chance was come. He said: "Huck don't need it. Huck's rich." Nothing but a heavy strain upon the good manners of the company kept back the due and proper complimentary laugh at this pleasant joke. But the silence was a little awkward. Tom broke it: "Huck's got money. Maybe you don't believe it, but he's got lots of it. Oh, you needn't smile--I reckon I can show you. You just wait a minute." Tom ran out of doors. The company looked at each other with a perplexed interest--and inquiringly at Huck, who was tongue-tied. "Sid, what ails Tom?" said Aunt Polly. "He--well, there ain't ever any making of that boy out. I never--" Tom entered, struggling with the weight of his sacks, and Aunt Polly did not finish her sentence. Tom poured the mass of yellow coin upon the table and said: "There--what did I tell you? Half of it's Huck's and half of it's mine!" The spectacle took the general breath away. All gazed, nobody spoke for a moment. Then there was a unanimous call for an explanation. Tom said he could furnish it, and he did. The tale was long, but brimful of interest. There was scarcely an interruption from any one to break the charm of its flow. When he had finished, Mr. Jones said: "I thought I had fixed up a little surprise for this occasion, but it don't amount to anything now. This one makes it sing mighty small, I'm willing to allow." The money was counted. The sum amounted to a little over twelve thousand dollars. It was more than any one present had ever seen at one time before, though several persons were there who were worth considerably more than that in property. CHAPTER XXXV THE reader may rest satisfied that Tom's and Huck's windfall made a mighty stir in the poor little village of St. Petersburg. So vast a sum, all in actual cash, seemed next to incredible. It was talked about, gloated over, glorified, until the reason of many of the citizens tottered under the strain of the unhealthy excitement. Every "haunted" house in St. Petersburg and the neighboring villages was dissected, plank by plank, and its foundations dug up and ransacked for hidden treasure--and not by boys, but men--pretty grave, unromantic men, too, some of them. Wherever Tom and Huck appeared they were courted, admired, stared at. The boys were not able to remember that their remarks had possessed weight before; but now their sayings were treasured and repeated; everything they did seemed somehow to be regarded as remarkable; they had evidently lost the power of doing and saying commonplace things; moreover, their past history was raked up and discovered to bear marks of conspicuous originality. The village paper published biographical sketches of the boys. The Widow Douglas put Huck's money out at six per cent., and Judge Thatcher did the same with Tom's at Aunt Polly's request. Each lad had an income, now, that was simply prodigious--a dollar for every week-day in the year and half of the Sundays. It was just what the minister got --no, it was what he was promised--he generally couldn't collect it. A dollar and a quarter a week would board, lodge, and school a boy in those old simple days--and clothe him and wash him, too, for that matter. Judge Thatcher had conceived a great opinion of Tom. He said that no commonplace boy would ever have got his daughter out of the cave. When Becky told her father, in strict confidence, how Tom had taken her whipping at school, the Judge was visibly moved; and when she pleaded grace for the mighty lie which Tom had told in order to shift that whipping from her shoulders to his own, the Judge said with a fine outburst that it was a noble, a generous, a magnanimous lie--a lie that was worthy to hold up its head and march down through history breast to breast with George Washington's lauded Truth about the hatchet! Becky thought her father had never looked so tall and so superb as when he walked the floor and stamped his foot and said that. She went straight off and told Tom about it. Judge Thatcher hoped to see Tom a great lawyer or a great soldier some day. He said he meant to look to it that Tom should be admitted to the National Military Academy and afterward trained in the best law school in the country, in order that he might be ready for either career or both. Huck Finn's wealth and the fact that he was now under the Widow Douglas' protection introduced him into society--no, dragged him into it, hurled him into it--and his sufferings were almost more than he could bear. The widow's servants kept him clean and neat, combed and brushed, and they bedded him nightly in unsympathetic sheets that had not one little spot or stain which he could press to his heart and know for a friend. He had to eat with a knife and fork; he had to use napkin, cup, and plate; he had to learn his book, he had to go to church; he had to talk so properly that speech was become insipid in his mouth; whithersoever he turned, the bars and shackles of civilization shut him in and bound him hand and foot. He bravely bore his miseries three weeks, and then one day turned up missing. For forty-eight hours the widow hunted for him everywhere in great distress. The public were profoundly concerned; they searched high and low, they dragged the river for his body. Early the third morning Tom Sawyer wisely went poking among some old empty hogsheads down behind the abandoned slaughter-house, and in one of them he found the refugee. Huck had slept there; he had just breakfasted upon some stolen odds and ends of food, and was lying off, now, in comfort, with his pipe. He was unkempt, uncombed, and clad in the same old ruin of rags that had made him picturesque in the days when he was free and happy. Tom routed him out, told him the trouble he had been causing, and urged him to go home. Huck's face lost its tranquil content, and took a melancholy cast. He said: "Don't talk about it, Tom. I've tried it, and it don't work; it don't work, Tom. It ain't for me; I ain't used to it. The widder's good to me, and friendly; but I can't stand them ways. She makes me get up just at the same time every morning; she makes me wash, they comb me all to thunder; she won't let me sleep in the woodshed; I got to wear them blamed clothes that just smothers me, Tom; they don't seem to any air git through 'em, somehow; and they're so rotten nice that I can't set down, nor lay down, nor roll around anywher's; I hain't slid on a cellar-door for--well, it 'pears to be years; I got to go to church and sweat and sweat--I hate them ornery sermons! I can't ketch a fly in there, I can't chaw. I got to wear shoes all Sunday. The widder eats by a bell; she goes to bed by a bell; she gits up by a bell--everything's so awful reg'lar a body can't stand it." "Well, everybody does that way, Huck." "Tom, it don't make no difference. I ain't everybody, and I can't STAND it. It's awful to be tied up so. And grub comes too easy--I don't take no interest in vittles, that way. I got to ask to go a-fishing; I got to ask to go in a-swimming--dern'd if I hain't got to ask to do everything. Well, I'd got to talk so nice it wasn't no comfort--I'd got to go up in the attic and rip out awhile, every day, to git a taste in my mouth, or I'd a died, Tom. The widder wouldn't let me smoke; she wouldn't let me yell, she wouldn't let me gape, nor stretch, nor scratch, before folks--" [Then with a spasm of special irritation and injury]--"And dad fetch it, she prayed all the time! I never see such a woman! I HAD to shove, Tom--I just had to. And besides, that school's going to open, and I'd a had to go to it--well, I wouldn't stand THAT, Tom. Looky here, Tom, being rich ain't what it's cracked up to be. It's just worry and worry, and sweat and sweat, and a-wishing you was dead all the time. Now these clothes suits me, and this bar'l suits me, and I ain't ever going to shake 'em any more. Tom, I wouldn't ever got into all this trouble if it hadn't 'a' ben for that money; now you just take my sheer of it along with your'n, and gimme a ten-center sometimes--not many times, becuz I don't give a dern for a thing 'thout it's tollable hard to git--and you go and beg off for me with the widder." "Oh, Huck, you know I can't do that. 'Tain't fair; and besides if you'll try this thing just a while longer you'll come to like it." "Like it! Yes--the way I'd like a hot stove if I was to set on it long enough. No, Tom, I won't be rich, and I won't live in them cussed smothery houses. I like the woods, and the river, and hogsheads, and I'll stick to 'em, too. Blame it all! just as we'd got guns, and a cave, and all just fixed to rob, here this dern foolishness has got to come up and spile it all!" Tom saw his opportunity-- "Lookyhere, Huck, being rich ain't going to keep me back from turning robber." "No! Oh, good-licks; are you in real dead-wood earnest, Tom?" "Just as dead earnest as I'm sitting here. But Huck, we can't let you into the gang if you ain't respectable, you know." Huck's joy was quenched. "Can't let me in, Tom? Didn't you let me go for a pirate?" "Yes, but that's different. A robber is more high-toned than what a pirate is--as a general thing. In most countries they're awful high up in the nobility--dukes and such." "Now, Tom, hain't you always ben friendly to me? You wouldn't shet me out, would you, Tom? You wouldn't do that, now, WOULD you, Tom?" "Huck, I wouldn't want to, and I DON'T want to--but what would people say? Why, they'd say, 'Mph! Tom Sawyer's Gang! pretty low characters in it!' They'd mean you, Huck. You wouldn't like that, and I wouldn't." Huck was silent for some time, engaged in a mental struggle. Finally he said: "Well, I'll go back to the widder for a month and tackle it and see if I can come to stand it, if you'll let me b'long to the gang, Tom." "All right, Huck, it's a whiz! Come along, old chap, and I'll ask the widow to let up on you a little, Huck." "Will you, Tom--now will you? That's good. If she'll let up on some of the roughest things, I'll smoke private and cuss private, and crowd through or bust. When you going to start the gang and turn robbers?" "Oh, right off. We'll get the boys together and have the initiation to-night, maybe." "Have the which?" "Have the initiation." "What's that?" "It's to swear to stand by one another, and never tell the gang's secrets, even if you're chopped all to flinders, and kill anybody and all his family that hurts one of the gang." "That's gay--that's mighty gay, Tom, I tell you." "Well, I bet it is. And all that swearing's got to be done at midnight, in the lonesomest, awfulest place you can find--a ha'nted house is the best, but they're all ripped up now." "Well, midnight's good, anyway, Tom." "Yes, so it is. And you've got to swear on a coffin, and sign it with blood." "Now, that's something LIKE! Why, it's a million times bullier than pirating. I'll stick to the widder till I rot, Tom; and if I git to be a reg'lar ripper of a robber, and everybody talking 'bout it, I reckon she'll be proud she snaked me in out of the wet." CONCLUSION SO endeth this chronicle. It being strictly a history of a BOY, it must stop here; the story could not go much further without becoming the history of a MAN. When one writes a novel about grown people, he knows exactly where to stop--that is, with a marriage; but when he writes of juveniles, he must stop where he best can. Most of the characters that perform in this book still live, and are prosperous and happy. Some day it may seem worth while to take up the story of the younger ones again and see what sort of men and women they turned out to be; therefore it will be wisest not to reveal any of that part of their lives at present. lz4-2.5.2/testdata/Mark.Twain-Tom.Sawyer.txt.lz4000066400000000000000000007646231364760661600213350ustar00rootroot00000000000000"Md`)Produced by David Widger. The previous edition was updat2Jose Menendez.  THE ADVENTURES OF TOM SAWYER / /BY# MARK TWAIN' (Samuel Langhorne Clemens)P R E F A C E MOST of the adventures recorded in this book really occurred; one or two were experiences of my own, the rest those of boys who were schoolmates of mine. Huck Finn is drawn from life; Tom Sawyer also, but not$an individual--he is a combina characteristics of threem I knew, and therefore belongs to<"composite order of architecture. The odd superstzs touched upon A allalent among children and slavese West atbperiodis story--that isay, thirty or forty years ago. Although myis intended mainly fornentertainmentand girls, I hope it will not be shunn1menVwomen on account, for par\my plan has beenx!ry to pleasantly remind adults of what they onceathemselvesqof how &Afelt aalked,}what queerbprises=sometimes engag>4. z!dUTHOR. HARTFORD, 1876T%T O M S A W Y E R CHAPTER I "TOM!" No answer.What's gone withboy, I wonder? You Rld lady pulled her spectacles dowlooked ovebam abou room; then she pAm up:cut und?. She seldom or never+THROUGH them so small a thing as a boywy<her state pair,pride ofRheartXwere built`"style," not service--she could have seen thrae of stove-lids just as well. Sheperplexednsa momen8Aaid,fiercely6still loud enyfurniture to hear: "Well, I lay if I get holIyou I'll--" 3didsQnish,"byTAtimewVnding punching D bedre broomj!soGneeded breathqunctuat Q!esBresurrectebZ cat. "I 6adid seIA beaCboy!Awenthe open door 1tooLiRuthe tomato vineG "jimpson" weedswconstitute garden. No Tom. S AliftW voice at an angle calculfor distance and shouted: "Y-o-u-QThere/ a slight noise behinhe turned"into seize al2boye slack of his roundaand ar?Qhis fwA. "Q! I m5'a'closet. What you;doing in b?" "N. r! Look 9r hands. AndqSmouthb!ISa truckXI don't know, auntcDknow. It's jam!'s it is. FWAI've if you didn't lety jam alone I'd skin you. Hand me%rswitch.a hoverTair--Sldesperate-- "My 2you!Xrwhirled1nather skirts dof dan lad fled oinstant, scramblthe high board-fenceg disappearTit. Hisc Polly"sud9broke into a gentle laugh. "Hadcan't 5learn anyQ? Ain't he playecricks y3lik1for2o b1ing$rfor him6E? But old fools i biggest SCsdog new1, a0 saying is.bmy goodness, heAplay/m alike, two days3 2how qbody to 's coming? He 'p !just how long n torment me b Qmy da!up he knows if he can makeD!toAame offa minute or'1me a, it's down agaiI1hita lick. I afcmy dut/tthe Lord's truth,bb. Sparx2rodNpile the child, Good Book says. I'Cup ssuffering for us bothHe's fullG(e Old Scratch, but laws-a-me! he's my own dead sister's!po- 2ing!go U lash him, somehow. Every8BI lefoff, my conscj does hur"so_e=!myheart most,ks. Well-a-wAman !rnI aoman iU 1few)droublea Scrip< DsaysbreckonT!sol!llc hookeAeven4*B[* Southwestern"afternoon"]s jbe obleeged to make him work, to-morrow, sish himIYy har= work SaturQ when !oyrhaving holida[ he hatesB more thanB elsGOT to do8 ofIrhim, orbu1ildhom dideAd a +Agoodm. He got back home barely in seaso}help Jim : rcoloredsaw next-day's wo"likindlingssupper--as+w!reime to tell( to Jim while did three-fourth1the . Tom's younger brother (or ra Shalf-Q) Sidalready Awith2theS(pick{qchips),ba quieJehad noDous,Vsome ways. W1Tom1eatv#is>stealing sugar as opportunity offered, Aasked him questions/ Ewere1gui1nd 6deep--for sn ao trapMinto damaging revealments. Like many {simple-hearted souls,>as her pet vanitFabelievA was endow! 2a t@ 1arkbmysterious diplomac|she lovecontemplatex*transparent devices as marvel[low cunning. SaiVu: "Tom1midQ warmRchool, warn't it8 QYes'm+ Powerful1'D byou wa go in a-swimmNTom?" A bim a scare shv!Tom--a touch of uncomfortable suspicion. He sear I's face, but it tolW!no. So he said: "No'm-y2not&mu I 1realoY Sshirta"Bu1tooJ though." it flatt her to reflects2Cdisc/ ' 2hirdry without any rknowingG41was 8!haher mindm tin spitZ! whind lay, I Zforestalle )next move: "Som`us pumped on eads--mine's damp yet. SeeB8rwas vex:Uthinkoverlook(vq circum ial evid missed a 4. Tnew inspiration^ 1hav$undo yourrcollar =I sewed it, to pump on/Qhead,3you? Unbuttjacket!"s#of\2facNAopen]s@a. His as securelyQ. "B"! 1Ago ' BwithI'd made sure you'#edQ A 8bee aI forgive ye^. you're a kina singed cat  --better':!. THIS time. as half sorry her sagacity had miscarried,3gla?Tom had stumbled\obedient conductconce. But SidneyId82you{Pith whiteNBad, 's blackBWhy,OA sew8r! Tom!" rnot waitdt. As J%ouIq5bSiddy, 2licabIn a safe plac/examinedBlarg2les which wer1ust\c 3lapdf boundTm--on^  D3theH& HSShe'danoticed if it hafor Sid. Conf6it!! s"ws& &I wish to geeminy s stick to one or t'other--Akeeprun of 'emse I bet%A lamX qearn hi4He was ne Model BoybvillaghkAhe m&1boyOS well1--a1athm. Withins, or even less, Cgott 5his 1. NQcause>sV1onePa heavyBbittj2him a man's oN_aTand p interest bd &emVAdrov/m1hisi,1the!--ras men's misf2 eiaexcite!of. This newwas a valupAveltU awhistl just acquiredb negrohto practise it undisturbed. It conma peculiar bird-likb, a sovAliqu wrble, pW  iatongue the roof at short 5valAmids@the musicxreader probably remembers how !it.4r. Dilige attention soon gave him#kn{i< he strodeF Vtreet full of harmon1his gratitud Amucha n astronomer feels who hasg planet--no doubqfar as Eg, deep, unalloyedu concerned,advantagFAwith!boO t$XComerRsumme4rlong. Inot dark,2 Presently Tom chechustle. A stranger!hi boy a shade larger'himself. A new-cAof any ageither sexXan impressive curiosioor little shabby\ of St. PetersburgA boy{`Qdress\"oo  on a week-day<was simply astou B cap dainty 9 ,W-buttoned blue cloth 31#Rnatty0"sohis pantaloons had shoes on#iGonly Fri"He!wo necktie, a brd it of ribbon0had a citified air|aat aten5 avitals B mor!stasplendid}1hig!oshis finerUhabbi his own outfit seemed  to grow. N]boy spoke. If1mova--but Nsidewise, inrcle; they kept face toaand eyqeye allX b Final[ you!" "I'd oyou try i,  8$doN> can't, .-'Y?1CanACan'A +An\Qpausen! Aname"a'Tisn'c2 ofBbusiAmaybx r I 'low^ MAKE it my0Well why don't youhI\2 sa, I will3qMuch--mAMUCH!reb" "Oh^ 're mighty sm)!QDON'Tm# I ! one hand tiedn!meIr DO it? You SAY yaI WILLTyou fool "Oh yes--een whole familiesame fixqSmarty!| CSOME 2Oh,Qa hat+AR lump-%it. I darcck it offxqll takeb!re suck eggsYda liarn %fighting.O!dafQit up1AAw--aa walkXSSay--me much morBsass@nd bounce a rof~oOh, of COURSE+ ; then? What P eSAYINGTx for? W>@? XQfraidyxI AIN'TbYou arN+A3/Qeying"sihaR eachm t"we2uld  .Get away Ahere"GoyourselfDI wo B"Sobstood,X ba foot"as a bra' both shoving 2ainBglow"atg1Q hate" n"gex . After struggl ill both <"hoydflushecrelaxe Qtrainx watchful cautionj|acowardca pup.1ell%igozQthras'y4his bfinger.I'll make himQ, toosI care forj{R? I'v2Ba brbfVs big Be isawhat's,Ahrow'3at !T[Bothas imaginary.]$WBa li=DYOUR#soAit srew a line 7dus cbig toh<Ldo step(aF f''t stand up. Ateal sheeFTz!w{ 1tepv-Dmptl 1Now"sa$'dnow let's D crowd m;JCbettI)8 ouD yg(IDh*--Wd[By jingo!Xtwo cents Atookbroad coppersApockQd hel  cderisionRtruck*t! g0. In an instantR boys1rol Aand 5ing;1gritogetherQcats;>f!ae spac"Rtuggetm A's hI 1nd es, punch3QscratT's no,covered -#:'ry* confusion2for) ;the fog of baIDTom %, seatedU!id# p sts. "Holler 'nuff!"3 heaboy on%1fre*Hcrying--.rom rage. d went on. At last#go1 sm bed "'N1andR"1up z 8jyou. Bny 1foo+Qnext  3qff brus*DfromWthes, sobbing, snuffand occasioo &Aback1sha1his;threaten1hat1oul=Q"next 2ugh\#ToTom respo0Rjeers"st7off in high feath2 as!as4was*3 sn?up a stone,2w i "hiqbetween7 ss-\1ail1ran  btelopeQchase6 traitor homsRthus ere he livednaa posia2gat2som9A, da the enemQ c utside, bu>only made2s ab windotdeclined. %Jand called#a bad, vicious, vulgar&and ordZ1him} went away;!he\ he "'lowed" to "lay"s'.g1gott pretty late#RnightAwhenAlimbutiously in a4 s, he unl an ambuscade,-dperson,Qaunt;g"aw]2tat nGQresolN 1 toT his %%2captivity ard labor became adamantinr$its firmness.A2I SATURDAY mora)2all4Qworld#.and fresh[Qbrimm-1ith5Pq.oeRevery:(;bif the`${music issued 2lip`Zcheer in Y~and a sp&tAstep locust-treQbloom bragranthe blossoms fill air. Cardiff Hill, beyonabove it,!grith vegetand it lay (4farZ, !to a Delec"Land, dreamy, reposefulinviting. 1ppe-2alkAa bu| of whitewasha long-handledcsurvey  |all glak,B lefoand a deep melancholy settledAuponaspiritmrty yardsQoard k nine feet/s. Life Q holl/nd existence^Ba bu{1ASigh)Bhe d 2his9Qpassea sopmost plank; rep the operB; di8gain; comp/ignificant qed streaqar-reac!co7'un8s"wntree-boxuraged. Jim 3Tskipp.!atva tin paiTsinging Buffalo G#BrQwater  (rwn pumpKRlwayshateful work in@Seyes,Dq now itJnot strik 1 so\%1ompQpump. White, mulatto/Qnegro! 9there wai'Qtheirqs, rest?trading plays, quarren $, g, skylarking. A. "alAwas only a hundWd fif!!f,43got)  under an hour. "ev an somesgenerallyto go after him. U1Say,=Bfetcp'7'll`"soJim shook :w, Mars Tom. Ole missis, she tol|IAn' g<s3an'F#op ' roun' wif_61sayZQspec'zEAgwingAax m ,rs5$an' 'tend to my ownQ--sheed SHE'D+f to de/5in'Ayou 6;Cwhatt!id#. SSthe w talks. Gimm $--qbe gonerC a a\!R. SHEx ever k.I9 she'd take)Qtar dd me. 'DeedBwoulfASHE!:Tlicks--whacks 'e}URimble1whosE ,p5C }w%1 awP1but6hurt--any#it!if$1crygyou a marvel" aKQ alle8Jim bega.waver. "%!D2 bully taQMy! Da3gayb, I teQ! But5I's" 'fraid aissis--" "And besides,R will#shQmy so:"Ji- human--this attrac  "ooH251put( 2il,a"ntZebsorbing!3estu/ 4andS being unwR; VAs fl3dowI k!p?JgQrear,jAwas "waCvigo.was reti3rRfielda slipperZ {and triumphEeye.''s energyeAlastq}Tthink%!fuE 1had !ne\%2#daH"rrows multiplied. So~ 1fre!s #trk !onL Asort 2delXBd)Bb they J$a Sof fu m2!to|)9Rvery r rit burn like fire%2hiscly wealt-  (bit--bitoys, marble trash; ;8to buy an exchange of WORK, maybnot half7s,*an hour of purk4dom.#retraitened meansB "s rgave up 1dea r=1oys4AdarkN hopeless7-d burst Qm! No=  3than a great, ma1 8entC 6! >qtranqui. Ben Rog%v-sp# boy, ofbwhose ridicule dreadingdS's ga" the hop-skip-and-jump--proojris hear7lis anticipa2AhighM3ran appl1 gie1a la%melodious whoop, at vals, foljB by -toned ding-do,, a* a steamboat. As henhe slack}1spey"1ookhQmiddlU, leaned faro starboard rounded to ponder#an-ious pomp3/Oce--the Big Missouri (self to be drawing"of 1boac capta9engine-bellbined, s,o7 Qself  <own hurricane-deck 2the~sQexecuAthemR1Atop tsir! Ting-a-linga!" The$way ran almos he drew up slowly towarq. "ShipToo backmsHis arm"ghand stiffen8AidesZaet herW mAstab%h Chow! ch-chow-wow! rQhand,"escribingly circlesC3 rePing a forty-'wheel. "Lg l-chow!" Thej5 e "to &Come ahead W0her! Letg*mslow! W-A! GeO ead-line! LIVELY nome--out d"- #t'Q#'t q Take at(hRstumpMQthe bof it! StSy*age, now--lg go! D`GesH SH'T! S'tH'T!" (She gauge-cocks)op-. R--paix9!, yDBen (n "Hi-YI! YOU'RE:ump, ain' nH 3hisPFouchI!eyan artist(!n vi\ gentle sweecthe result, as $R rang4)alongsidv',Uwater #e (n"tu1 k]! "Hello, old chap,Mmwork, hey?"heeled suddenJn31it', Ben! IC9TnoticDSay--I'm goBa-swi, I am. DoQ wishacould? Aof c# you'd druaWORK--0 ?5? C)I (6(omR:dboy a big%2cal!?"yIATHATy +SresumC \Aansw1carG 3ly:% S it iU q. All I,$it suits Tom SawyerP dV1meaQ!le{`you LIKE!3Thep u}1movALike(yIYsee why I oughtn'Gl-. Does a$"get a chanW+# a fence every da}Rhat pz-Q in aSlight!to AnibbAppleR swep daintilyUxorth--steI"ba<1notK effect--addeAhere|there--critici=5 again--Ben wat2mov@1getm`!!nd$ bested, absorbed. P 5 heTom, let MEOa littl _o consent"alnhis mind: "No--no--LBl"n'ly do, Ben. Y7'e,1's  particula.u a--righ eNQknow -R if if 2theC& I^3and. Yes, she's 2; iNcbe dontcareful; v"onmRthous aybe two can do i?wayybNo--is6Hso? --lemme R5try. Only--I'd let YOUQas meJfWBen, ., honest injun; but-D$nn!o 6she}1im;7/!, "/Sid. Nowy` how I'm fixed? IfEq tackleb[C&Qhappe+"itOh, shucksbQ3as lgA youocK,#mySPFN2?GRfeardW3ALL areluct|ig @qalacritW. AndR3lat )erAb workeZ"sw>1in !un( #ed< 1 saa barrel i- shade close by, danglQslegs, m^& aplanne! s0Iter of more innocBT33o ln6material;ed along :; they ca6BjeerArema2A. Bytime Ben\!faY'1outd!ra1he $+Billy Fisher for a kit!good repair;">out, Johnny Miller b in for a1Ir! a!ngw  uCso o, R hourHT hour8 afternoon>," a5poverty-stricken; !2swas lit )3 in2. HhW"s r q mentioetwelveA par6 a jews-harp, a piece of blue bottle-glass to lrough, a spool cann2B key|u unlock1, a!mchalk, a ca decantU& tin soldiQcouplQtadposix fire-crack&r kitten only one eyJ6ass doorknob, a dog-Asbno dog]3hana knife, four1as of o C-peea dilapid)old window sash 1hada nice, good, idlM#th--plenty of0 { 2encQthree coa !on%#If2n't9>9ut ) have bankrupted+Bvill)d2aidaF3tnot such a!,Yqall. HexA3dis8+ a great lawRuman |,"ouQing it--namely, ."inDKaa man boy covet a} s !isG necessary;^ difficul" vattain.U3! and wise philosopche wri 1boo:A now comprehen>qat Work $isaatever dy is OBLIGEDj,<OPlay< not oblig# do. And B helyIto under* :U1ruc artificial flowers or perfor&"ad-mill is ten-pins or climMont Blanc amusement 3are2y gentlemen in Englho driveb-horseJ$nger-coaches tw}r thirty miles Qdaily0q(summer, becaus@privilege costs themable moneym iOy"IKc wages#e XAturnhn3txsresign.oy mused atsubstantialg!chRtakenC X `whheadquarters to report(sI TOM , ]q l"sirby an open {@leasant rearwBpartYwas bedroom, breakfast-s dining and library,|c balmy D air* stful quieeq odor o%Y@.rowsing murmur (AbeeshFeir effec!he rnoddingh" "sh5n,%1but#caLdasleeplap. Her spectacl)1progQup onAgray for safety.%" urse Tomdeserted #ag&` !ndqa0 'iRpower p_repid wayN said: "Mayn't I go=BplayKCaunt&'ready? How mu Adone*AIt'sd.XCTom,1liegBe--I= bear itIb<u; it ISRF." dY1truxevidencezw uBsee LRrselfe a1uld^MDfind1perQ4C. ofAstat true. Whenfse entir*"ed1noteQately QrecoaM!an!n aeak ad8ogw astonish 4was#unspeakable. S|bnever!m U's no^# i1canS whenM2 %Ad to B." A!AdiluO!he !liAby a, "But it#s seldoma aRI'm bsro say. go 'long$pl/Aryou getd3som in a week, or(tan you." &awas sokbcome bSsplenSchiev1hattook him#th&tsE- choice appleQdelivit to him,C"ov Rcture 3theBvaluNflavor a treatAo it uit came~ "siT9ugh virtuous effbsd: a happy Scriptur Qurisho"hooked" bughnutn !kieqand saw^just start%pHstairwayll OUroomsecond floor. ClodsAhand$ @!irgXmtwinkling y52d a #Si'a hail-stormx ! c4acollec+ surprised faculties#sa9"1cueQ or s0+Bclod7tersonal<G} !fe?bnd gon9BrSa gat#eneral t h&2too9iY$!usTit. HGrt peace+ /"SiWAcall"tt s black $6+n1rouC1skipQlock,into a muddy allaled byBback%s aunt's cow-stT4 He aly gotrly beyo  reach of capdand puQhasteR the public square. 1, wtwo "military"/1nie02boy"met for confliY AccorO qto prev#sappointt <G% of one of these armies, Joe Harper (a bosom friend)<qthe oth#@hese two great commay ! dYt condesc,"fi!--DAbettIil2Rstill<ber frys !geon an eminence/Qconduield operations bysD aides-de-camp's army wX uvictory+ nd hard-f@ 1 ba# T were counprisoners 'd, the terms rdisagre d7y $ay 03ed;X 4R fell?and march "ayhTom turned home slone. Q!as &3useJeff Thatc=1ved_saw a new girl e garden--a love^<blue-eyed creaturQ yellir plaite1two-tails, white 2 frd embroi  )JQettes3 fresh-crow2ero4without f^+a shot. A certain Amy Lawrenc2U3his6 !efoJa memory  Gm 1 he#d to distr#; !rePdKssion as adogi o + ~Aevant partialit pmonths win8bher; sTessed b ago; $ <bappiesOroudest Rworld WQshort_e!inRinstactime ssgu a casual=)visit is dH"sh this new ange's furtiv -shqchim; tf Bpretq6 Aknow\4was %"show off" in 2sorabsurd boyish ways,# wBadmi%{Bkept is grotesque foolishnessome time;, by-and-by,  )s Adang) gymnastiche glancZ@!idy MCthe girl was we(xher wayO $upn r leanedq, griev5b+Roping! tarry yetblonger 1halA1 moO orsteps as3n m]2war2doo?%Q heav great sigh asp$Ar for threshold.#1his=! lI", Qhe toqa pansyG L ! ss): boy ranh  Uad with Tr twoY Aeyes= ]Cdown d as ifBsome %of!a goingnHdirection. P- he pick:&w#ry !ba! iO,aead tifar backSas hefrom side8aide, iO edged nearer B; finally his bare-#W3(liant toes) 2e haBaway the treasu#B rouq cornerb only minute--(v Cbutt,$1 inhis jacket, nexheart--orstomach, possiblAnot 82pos<s anatomE1ypercriticaZByway"re # 4ung#<nightfall,ing off," a16 2irl exhibite$, though Tom comfor$wa 3hop@Abeen>,*een awar&P  Bs. FX he strode home !H[2oorfull of visions. Allasupper.cspirit"soCrunt won "what had #inV child." He took aa scoldrbout clB Sidp1seee!miY(qe leastQtriedIugar undGveryG"goknuckles raQ!foxc "Aundon't whackmhe takesQWell,/1torsRa bod 1way"do. You'd b9  bsugar ifq*watchingu sezckitche Xs immunity, l"heC-bowl--a sor&2glog2Tom/Fllnigh unbear_#'sMs6`Rowl d1LVbrokeFin ecstasies*JB (!he controlP#Rtongu!il5 toF Bpeak6!d,^1in,18A sit0 bectly Lyshe askejimischief|u! tCrRbe noA"soE  !asefpet model "catch2 Heo brimfuQexultR1 Thold Qcld lad($#ba DstooFCthe wreck discharging lightnings of wrath(#Y v, "Now iVm2At gQspraw1on 2loo potent palm#ups!to($"keTom cried out: "Ho 1'erbelting ME for?--SiK it!faused,\vl1heapABut 1shes5herQgain,W RUmf! 4youbget a lick amiss,)Wsome other audacious I wasn't az enough." Then her conscience reprgeqshe yeaato say'3 ki l;ashe ju - !beo4tru!a Zr7T cipline forbadhA. Soh rsilence2d1bffairs av2rt.|1ulk# a W 1exa chis woBknew3Qheartb Bas ojAkneen was morosely gratified b 1ous\)OAhangno signal take notice of nona3ingR fell upon"no dthen, _aa film Bears~f recognition!pilasick u6lBeath=bim besee}5 onforgiving*u]cds facew rand die word unsaid. Ah,+Hs !el2? A b$ZK Qiver,  Qcurlsw9<8Dsore .sEhrow 1ow 4earxfall like r(ps pray GoAgiveAbackG!bog\  , AabusY9_Rmore!k.blie thlsi02--a =0 suffererP"se grief C*# e$so, as feelBwithASathosse dreams,hto keep swall ,Qlike to choke03swaqAblurP"at1ichEAflow}xr winkedran down*l?XAose.| ba luxu'"hi:op17gsorrowXnot bear to have"ly'Lixrng deligh\ Brude0Cit; <too sacr/rcontact7Tso, pU,his cousin Ma31in,!EalivAe jo!sesB4hom+ an age-longbof oner aountry!go~in cloudBdark Qut atKDdoor|Bsongunshine in at@1"wa B fars the accustom"1unt=?S` desolated"suwere ind9. A log rafqthe rivGvT"imfQhe se!i on its outer edg Aempl+reary vast*6stream, wis4L Rhile,_ u rly be djQt oncs5 un6c1the&'routine devisWn9N*Y+Cflowt>got it out, rumple!ila 'Fily increais dismal felic) %HeFQ1pitu knew? WOrshe crym8! L! r%toRarms #ne  him? Or2she(!co1all bhollowU(1? Tuch an agony of pleasu ) ` t1 i m\ set it up in new0!vaosTswore ithbare. At last he rosei?NJAdepa4l A. A half-past nine or ten o'cT/"he93alo+'street tothe Adored Unknown ;X{ `; no sound  3lisdVear; a c/qwas casa dull glowbthe cuCof aX"r-story Q. Wascbre? He+,j*s stealthyf/ !thn3 he1und]#at j Aup aC#,ith emotion; Claid]$wn9#g bit, disposingpAuponp Gback hands clasphis breah41his 5*1thutdie--ou~ jyno shelterqomeless-C, no "ly@Qto wie death-dampsR!ow8  2benvTinglyqmthe great3cams4SHE:!eeww4'E outvT glad/U,p4oh!A!hev Atear>poor, lifWform,=>Dsigh~1a ba youngE so rudely b:*Duntimely cut ? Aup, a maid-servant'cordant voice profan" holy cal[qa delugAwater dren#rone martyr's5"s!astrangvhero sprang uAa relieving snort%awhiz aPa missil/vir, mingleam"rm Qa curHBshiv1glal a"Q, vag rAv!e >Bshotvgloom. No!Q, as +all undressed for bZ omission. CHAPTER IV THE sun 5!2Qanqui@"ld]DbeamWF'eaceful village~a benediY Breakfas,M had family worship: it bega# ab built6up of solid .Scriptural quot/s, welded`%A a thin mortar of originality SNBsummf  7she+a grim chapter xMosaic LawKaSinai.Q gird Qloinsto speakh2bto "geverses." Sidlhis lesson/"c beforAbentt his energies5 smemoriz\CfiveeAhe c$"8the Sermo!Mobecause 2uld.#noO, were shorter. Aalf an hourugeneralw!no;wn =Qraver) %olN'Bf hu-3 33bus $Qng re%ions. Mary took<1booAhearPSrecitahe tri!|] Gog: "Bl!ar 1--a " "Poor"-- "Yes--poor; b025#In? :$ i/Ubthey--" "THEIRS BFor +. LRirs i kingdom ofnEy>_mourn&ShzS, H, A S, H--Oh, IO$"wh is!" "SHALL BOh, # fb shall-- *Y/ I 5iWHAT? Why3youfi!e,1?--do you w !! bmmean for?2yourthick-h (, I'm not tea[1youpyC1 do. You must32leaI75. D"be"buraged you'll manage it--f 2do,11Agive #ever so nice. There, that's0boy." "All{1! Ws;"TMary,K C+'4Neryou minMbsay it's,< AbYou be"sou%. Qtackl ;3" [did ""*2und double pressur;-curiositprospective ga2 diA)2ithD he accomplishe% 1hin SuccesQ gave  a brand-new "Barlow" knifqth twel2d aSRcentstZSnvulsGthatGVsysteL[ DDoundTrue, the cut anything, buwas a "sure-t"" 5t  inconceivable grandeur_!Bat--lBWestern boys >A got N|a weapon1#qunterfeZ3a injur<3obmysterDwill] erhaps. Tom"ri' scarify82cupuR\ "it )ArrancCgin F dbureau" !ca\ qoff to  eSunday-school. FLrtin bas 8andmABsoap!he  3"oo21setMne$Rbench2; ta$ d+be soapeiy; sleeves; poured>& ,W=y~Senterqkitchen F ?ace diligentlyFStowel|-g"oo&&Q remo,5and2Now49lhashamesmustn'tVbad. Water wShurt c#"Tosa triflVncert;sin was refillAthis3xm&ito'b, gathaf;/% ebig brGU9(hen nDboth eyes sh8Bd grC+t.[ , 1nor&testimony of sudsR>2ripT Aface mse emergf>x,fnot yet satisfactoryQclean territory2DJBrt a%2chiohis jaws,mask; bel_p4dis lin1 dark expan5qunirrigyBsoil]aspread7,rin fronlAback  2himBnwhen sheY%dR4him$Ba maqa broth1adistin of color)Aaturh7neatly brushe2its curls w]Ainto2intsymmetrical effect. [5!iv;w smoothL[3labdifficultQBplasNI3airAI]3qhead; f(] effemin71andBown  lith bitterness.] Thenr!go! aP1 ofF#cl%13use 1#on Bs duvH!wo s> were simp1"ot%#clothes& "soJRat we qthe sizV brdrobe3D"put`"s" !!S; she+Qneat "/m,his vast shirt MGB oveshoulders,soff and c V-QspeckSrtraw ha)1nowHed exceedWAimprcand un2abl"was fully as E as OOTa restraint e lgAm. H-"atU b forgeCshoe"5!peZ61 cothem tho"ly/#taHis9Bthe 9rthem ouH2losStempem~z bm$o do everything + "do2Mar&&rsuasiveTPlease, Tom-- 3So &zhoes snarlingJ(son read9/hree children se3for "!latat Tom hd heart; but3andbere foÊit. Sabbath`-from nin$Aten;B church service. Two  "ermon voluntarilV :2too!ger reas.TZ urch's high-backed, uncushi$BpewsU!~h4d persons r edific_bWmall, plain,'a sort of pifR6ard*kQon totia steeplB Tom droppe(ps2acc0a comrader]2ay,N,o)2a y*;aticketYes." "What'e'Agive:APieclickrish fish-hookX2LesExa'em." 5(0 ? W property :!tr=cMwhite alleysb  E6Tsmall+ #oro9forSsblue on(1way ,b boys Sy camwent on buyingz0qarious  s ten or fifteen minutes l !/ qqa swarm; #leg Rnoisy: irls, proceeE!se &dAed a quarr84Airst5jAcameyQ teac a grave, elderly man, interferedGny-61and!pura boy's !inM +-;"Dwas }W# i}2ook the boy  ;[aa pin w I boyk%8 hear him say "Ouch!"got a new reprimandJ 'csle clasWqof a pa --restless,8r\Csome> Qthey to recite their@w%~am knewuverses /,!habe prompv8ong. Howe)worried @2reward--in T blue,,q passagl"e '(;2pay#woA of 5*2eciY. TenuB equa#onc7$Tbe ex^qfor it;0Cyellow onep #enV> Wqsuperin;"ntat1ly bound Bible (forty centsose easy3s) SQpupil2 maH$!myKe* (the industbapplic$toeTthousand]H2 BDore? And yet MaryL2two%is way--it the patie5!rk!^  oy of German parentage had wonRqor five3onc#ed i out stopp/{Ctraihis mental facultiesyCtoo (hRand h~+Abett {D idil0dth--a grievouC2he :"onpR occa$y company f(1 exbed it) 1hisfcome out and "(b." OnlRolderts13Bkeep}Li]1tedRlong  to get a2[s6y*sse prizaa rarenoteworthy circumstancer32fuls?conspicuous for  ;AspotEyQlar'stQ4fir"a fresh amb/that often_')ed\weeks. It is{ecTom's qstomachn areallyB:1for#.o. unquestion6-Sntire& hNPa day lonQglory,qthe ecl+!atcI In due ca Astoow 2in {e pulpit" a6d hymn-bookh)!ndcforefi"O(between its leave Fd attentioG  ! m09>y,4aryAspee  RGs asoEBas i ainevitAsheez@&sq who stu'1forAplat<$ings a solo atn %!y,:Qneithen sa refer.01. T  V slimEirty-five a sandy goate Qhair;1ore 2iff!Cing-"wh*per edge almostD:rhis ear-asharp %Ibs curvqa(orners of his f--a fencRcompe l1ght2outh,a turning "e Bbody a side viewqQrequiW hp1! o2ing cravat which?as broad}sE bank-note,!ri Bendspboot toe G8Qly up@ athe farche day sleigh-runners--an effect"l hiously producedTe young men by s'T{Does against a wall hours together. Mr. WaltE as very earnesBmienSsince1honFt1 yhBplac% 2rev'^so separaJ2hemU +Aly m4 "s,% /_Amsel BvoicI  a peculiar inton (wholly absweek-days. He beganSthis : "Now, , I want you` Qto sivjust as3andj1 as1c\ d mV yourBz.!wo!rea_Sit. T etay good2boygirls sh# do. I see one+girl who is1ingtindow--I am av1she1ks !ouGre somewpbsperhaps#one trees making ax irds. [Applausive t$.]"to"ryou howit makes me feee"any bright,/mfaces assembllike this, lea Iu!be|!."[rso fortETso on Fnot ?!toK5Qt1 or9!waa2doeR3vard#so=" familiar to us all. The lpQ thirawas ma2+aresump` of fights andZ& among certai.a;#"s,%y fidgetingGAwhisN"gsextended far4wide, was1eve \ses of i5d0incorruptible rocks"Si!Mary. But now1y sGceasl Qubsid(ofY' EDncluz"<\freceivZ burst of<t gratitude. APP)-7 DS san even1mor less rare-- Rntranvisitors: lawyer Thatcher, ac i`Eafeebleoaged man;,ne, portly, middle-aged gentlem+iron-gray hair^a dignifie@N\doubtless`q's wife.Cas la.*EEchaf1rep$s; conscience-smbq, too--]$uld not meet Amy Law .'s eye, & not brook her loving gaze. Buty1M#isftnew-com1oulall ablazebliss in vCnextBQ"show2ff"=+ might --cuffingfR, pulu0'0$akG2s aq=u+$every art aseemedufascinate a9w:&2r aqe. His k?uBalloV*y 1 hu!in angel's garden--and Qrecor5!wat]out, underk1wavW happU2AweepRO9MaO !gi"stdof hon as soon as Mr. '<1fin?']4int=   D man o be a prodigiousqage--no}A a o!a  county judge--alh  baugust !io6s1hadn`$oerT!devqhat kin;i Tde of"ey'1wan] N-#oa]Shalf "heu rom Constantinople,j(miles away--so heAtrav ,1see g"se1Aeyes3dVcourt-house-- 1saihave a tin roofR awe +iBreflMbs inspbas attL!imE 2ivex!cethe rankstaring eyesw great Judge)# cir ownO.Uaimmedi"n'u, to be11eatand be envbRchool) -been musicY$1 ~: "Look$m, Jim! He's a f<ure. Say--look! h"rto shakRs1him6RIS shH ! By jings,d.Ayou ;1youJeff?" 1fel,Asortofficial bustlactivities, gitorders,21ingments, dischar)4dirk2her!+1re,y r81a targetc2ian!ed-D9t  krhis armE"1 of$ m`ca dealQ splu1uss insect authon@Bs in@84adys4 --Dsweetly ov[s|l!boxed, lifting # wW f~s at ba ApattBood ones Sln /ensmall scoldof qdisplayD&E1ineVnx!tobipline<S"s,th sexes, found bus\Aup aB$y,I' kB6ffrequently had ',"reSa1s (Qmuch seeiK7").- Qittle 5 in$wa 3Xboys wuch diligVDthe (E1+paper wads9Qscuff.above it  ;Rman s beamed a majestic jud smile upon@,dwarmed h Ae su uhis own."!he& Rtoo. e1qonly on]!ngR\Jmakeh ecstasy completwas a ch $to-gZxhibit a y. SeveraNTa fewe!b2n b !ar #4tarYinquiringq3hav! t worlds{2German la8##ga:A a srmind. AndG#is ,r&2dea- Sawyer  Mnine6redY #onQ dema @a thunderboltaa clear sky2 waQexpec"ic^ %Qsourc ten years. BubsRno geEBit--"erAcertf check#d-#ird-.therefore elevated toK_3the@ B#heNSelectW1new| a annouGheadquarterp |#stFbsurpriB-the decad=bso pro>Bsensa}!itenew hero ups C!on l Xtwo marvels to gazt#injbof oneBboysall eaten upBenvy--but tb)est pangI-swho perstoo latDS themselv contribub athis hsplendor by trad01 to't wealth+bamasseelling whiteprivileges s]D2pisC, asUrthe dupa wily fraud, a guileful snakeRgrass !4was;ew 2Tomo"as%2eff superin"nt pump upI7!s;it lacke&wS-true gush< IQoor f' tinct taughZ- zX not well bea]l  ;0s.preposterou8 cp !hae)Q thou[!sh $al wisdom on@remises--a dozen ,#capacity,Rout a8. wBprou3glaH0sH<T1Tom it in heL-ouldn't look. S1nde+ss grain %"d;zZa dim suspicionbG(b--came P-! wnEd; a1`#glrld her ] her heart brokMs jealouaangry,t'&rs3shebody. Tom G!of (Hhought). )asohis tongue,Qtied,J4 rdly comequaked--part75cau awful greatnes rthe manGmain6H$ have likBfall00borship!ifqLq1ark # ph an Tom'!ca9Rhim aC * sand ask!qhis nam?hwstammered, gaspe!goUout: "Tom." "Oh, no,QTom--=aThomas'"Ah~'s it. I7!or\ it, maybe{'W well. But you've)one I daresay""llit to me,6 you?" "TellQ "an"Qother", ","'Walters, "5!fay sirX=n't forger mannerI Q--sir1it!B's ay1boy\ t, manly0 Q. TwoLverses is aEmany--very,(b many.'2ou $can be sorryUQ*c you tOAAlearm( knowledge is worthchan an@1<3is pa; it's4#e  Dmen;V$^d3Qman yC$Alf, -5day'#okR,Y9ay, It' R <)1rec ;A1 ofDoyhood-- Gvmy dear-5tha^mU<  Jood ,L$en? H.)3 ga beautifulI*\d id elegant'"anH  for my own, always right brin"upA is |2you<{!~&take any mone^ose tZZindeeE1nown't mind t $ m+ "isB2 hylearned--no, I know --for we are4$of3boyG!. 1no vAknow2nam^r, es. Won'Lbtell u9the first3tha`!ap$Fed?"l1tuga_utton-ho sheepishblushed, nowz1his! fO'MAsankm ain himH_\ETAposshtc2sweb K Dest (--why DIDH=ask him? Yet hBrt obligspeak up say: "Ad'1--d}#be!.L_hung fire."*$me\ady. "TF twoeDAVID AND GOLIAH!" Let us dr%cu3 rcharity tYsceneJV ABOUTQtcracked be%$th3church begaBring01epeople(1 ga||"mobsermon. childrenHA 5!e C and occupi5ith thei s, so as K{Kd. Aunt Polly zTom and472sataher--TomL%"d G8sleB2!ha9A be GrE9the{e seductive `AbsummerEs asQ. The crowd fil/"s: 1gedneedy postmast=!hosseen better days C may<"hiJ "ha$y3re,| 4 unmp#ieOejusticRpeacei widow Douglass, fair, smartQforty!ene,O2-he4Asoul well-to-do, her hill mansj only palactAChosp+and muchKmost lavish 't of fes,St. Petersburg [RboastAbentxQvener,3MajsMrs. Ward;  Riverson,bnew noaACance_1ther village, followRa tro8lawn-cla.ribbon-de!3 p-breakern#q clerks!owfa body;C hadTG vestibule sucD!cane-heads, a circn!!wa! o !imcg admirers, ti Alast!ru ir gantlet; and/AcamedModel Boy, Willie MuffFs heedful carlS25 asXere cut 2x ! b=tN,>#to, v1prisrmatrons(2ll vh !so0. qbesides2hada"throw;3 Qm" so. His whit.kerchiefZhF#q pocket behind, as usual ons--accidental$)noa!hef1ed ytas snobcongregapHefully (: 'T1once, to warn laggard0straggler a solemn hush f p! <Q+vdbrokenBtitt=8and& choir is galler=GF!edthrough =conce adQY Pill-bred, but I rforgottgh!rea[ !y [B agoV.I can scarcely rememb?_="itI kg1 in foreignj#"ry* minister & "ou3hym-1rea a relish, in a peculiar styleZeat part His voic on a medium key&Zasteadi:/i0% a"* rBbore1strY5umphasis topmost wor splunged8spring-board: Shall I be car-ri-ed to!sk !on flow'ry BEDS of ease, Whilsts+OIH sail thro' BLOODY seas? Hqregardeadful readKZt"sociables" h= #R>!to;r poetry,Cwhen32ughcqladies l3 up<3han let them fall helplesslyrir lapsc"wall"C!eynB1k\!irZ5s, u say, "Words cannot71 itfis tooV, TOO is mortal earth." Aft 2hym~&Bsung2RevtSprague#' into a bulletinGuoff "notices"ge,qocietiej-1i#)o4 2st qstretch of doom--a queer custom#is vin America#cities, away x4)1 agAabunZnewspapers. Often3Eless, to justifm 1adi7l3charder4t~1 riu'ittprayed. -, N#wabwent iIhtails: it pleadea rBttle),3rend:7=eip ' itself; ?y([State officersqUnited . ' 'C)s5A Pre.t_q Governm$poor sailors, tossed bK1rmyM ppressed millions groaningeel of European monan  A Ori5 despotism1sucDght 2tid?'rand yet-M!yeusee nor !to &alRheath)the far islB seaZaclosedW a su Twords!abmfind gra)RfavorVcseed sm fertile ground, yie%Qime a?0Charv9good. AmenP!re 3a r(Q of dP5thev8! cPy sat down whose historybook relates disQenjoyQB, he< Aendu}Qt--ifN1ven9J r  it; he kept v y a62 --F6notgc#, qBzc of olvthe clergyman'ular rout}&VaiQtriflsRnew m3 terlardedear detected iWhole nature resen!considered adAs unqcoundre I |/B a fU'R lit  " bAew i#nMmaAtorthis spirit by calmly rubbing iti d8, embrac"eah,3armpz}& so vigorous7at eo$;part companyBbodyvthe slend9read of a neck!1expto view; scra0Qits w rind leg'AsmooT !toCbodyK|been coat-;~,&le toilet as tranquib if it.)$E safe. As!ras soreEaitched@rab for iyQnot dY4}4iev3oulbe instantly destroyed 3did qg whileB was2 onhhVqsentenca curveTstealq.Cthe ra"Amen"r!hewas a prisonwar. His aunt bthe acmade him let it go rhis tex8droned along monoton an argumea %"symҵBb &byBnod 3y Wdealt in limit 2firMbrimstonSthinnpredestined& Eto aso smallSo be !2worA sav1)2Tom_&ag ;; $ % h2how:t#aseldom: Delseqhe disc MH"is!he8qreally {16forE*a grand and moving picJH"&+=world's hosts at the millennium*B !onc aamb sh"%liS[ , ,!eaAm G2hos 5les1mor/C theEspectacle werQahe boy v# D" principal character beforEaon-look<>!s;#1fac" oirhimselfYhe wishe",Q tame lionf!w 8Qpsed (ing again,fhe dryQumed. eHpA him treasur # a large black beetlformidable jaws--a "pinchbug,"8#Rit. I/=ercussion-cap boxhm1did/bto tak)b' Afingal fillipgIbfloundKZ2isl1its !ur ger went1's Co!lart5its" legs, unAto turn over!ey !lo1forF^!ofCt. Other'uncR]1q relief# wyof too. Wa vagrant poodle dog<1idllong, sad atM vt, lazyI1oft e quiet, weary of captiv(1sig"Bfor LMs;HAdrooz Ataile8bwagged:1urvrize; walked a it; smelt a87afeu4 4; grew bPJUA6rY1l; Trhis lipqade a gzly snatch,YA misa;3it;/nn %; g diversion; subsid  Stomac)W betweenm3pawh scontinu experiments; !ath Aindi- absent-mindi(1nod ittle byrhis chin descen/]u he enemyAseiz[2re sharp yelp&li' fell a couple of yards away, S}Amore neighboring spectators shook)a! inward joy, s2afaces rA fanI s)_aentire #ppXdog looked fo8 4probably felt so r1entc iheart, tooBaG>or revenge. So .n:9gan a wary attMnWQ jumpfRevery2B, lightingP!hiKJae-pawsin an inchB2YouUX O=3Oh,Q, I'm,/"W4=--wQa, chil9 X!my!R toe'+ified!" J#ol[UBsankqa chairB#%ed! cEB"a did both0,Arestwh/d<P," ayou did Ce. N ;1shus aonsensCd climb"thg{$ThS ceasrain van Afrom!to   ' it SEEMEDi"itTBso I B my aat allqQYour ,#K+ Sthem' aperfectly" "Ther|Tdon't Ahat @'Open your q Well--4 IS1butcre notwVto diG!at. Mary, gec>aa silk a['1Rnk ofq"ek$2n." !pl/j7 Churt=!re~ish I mayO%qdoes. P_@.1wan-]stay Don'tyou? So all this row wGE1youM>ght you'd7i ibgo a-f*?yI love you"1+!ou !ryQy waycQbreakX?l !t soutrage!=." dental instru?S read #%on8theA fasRTom's:Ra loo& #tiod edpost. TBseiz* n^QthrusI($inR2oy' U hung dangb- } Rrials@*1qcompenst+s'#enrschool >fast, he6qthe envc( 1 bo"5metSfap in 1row&eeth enab 3 toMRorate!1new<>4 s9ing of lad9G%in the exhib@0;2oneShad c ' 2hadr a centre of fasc and homage2o[Qnow f:OJout an adheren Tshorn!Rglory'QheartyBheav 3a disdaibZit wasn' o spit like;our grapes!"%e wanderh dismantero. Shortlyb3camMthe juvenile pariah5he n;Huckleberry Finn, sthe town drunkard.,-Qcordi2hat dreaded by "e s{t 2idllawless and vulgarRbad--zPxk?eq delighV-forbidden societyAthey dared( B!om @!reNCRboys,faxenvied >his gaudy outcast cond;as under strictIQrs no8Mm1Splaye3him1timf2got% Ince.c!slways de cast-off of full-grown meAthey  in perennial bloomRflutt sCrags{!ata vast ruina wide crescent lop a of itp!m;ecoat, +72ne,Bnear^2his[ !haQ rear!buttons farY ; 2ack1oneMeaupportos trousers;Ceat ! b$A low~contained n A friM&rlegs dr4Bdirtanot ro[Iup. 1and?A, at"own free3Yrteps inKDweat in empty hogs> in wet;3Qto go2 orurch, ornmaster or obeyXcould go  or swimW1herCchos1sta/long as it suim; nobody forbadfd to fiyhras late! p8 d3t)2boybarefoot e:+ # lsAfalli1to wash, nor put onf0wear wonderfully. In !rdJ8tQEgoesxlife preca1hadgrthought\ harassed, hampered, ; inkBR!ha!AJtomantic : "Hello$!" K ee how youI it.a A gott rDead ca%RLemmeC"imp. My, he'tty stiff\Are'diqget himQB2himR a bo#di4zI a blue ti@1and"adBat ItVter-hous1 T#itBen RogersI!goa hoop-stickE6SayU!cats good for2hGA? Cu1rtsHbNo! Is 3so?JS some* Gb3BI beedon't.ibaspunk-?5S! I wouldn'tqAdern 85You-,  $D'OD tryqNo, I h DQBob TOA didrWho tol!so"he Wa5Johnny Bak im Hollis8'ld2Benmca niggLC them bre now2ellt? They'll lie. Least<1all WA. I 2HIM(I%ee WOULDN'T\Shucks! NL!te`lbone itvQnd di=2a r/BSstumpLthe rainQA wasPI qdaytimeClith his fac Atump-3Yes* I reckon so[ADid j By an3"I :.lAknow@Aha! Talk2tryx * c such a blame fool,c@Aat! @S a-goVado any2. YV rbrself, e middle Qwoods\5Y's a Btump1jus'7rmidnighrback up!s qand jam/Q: 'Barley-corn, b injun-meal shorts, ^ {q, swalle_&drts,' 1n w way quick, eleven steps,(eyes shuthen turn.<BtimeYAhomeDrout spe+ttbody. B#f$Wcharm's bustesounds likxrood way !!wthe wayB donNo, sir,x1cann't, becuzoGartiest cis towT!BE1war 2him!!'dU!ed*xto workYS. I'v1offs'9"of off of my9sAway,m 7. I Tfrogsv$*`U 5got;"Qmany gb. SomeI!'eFNSnYes, bean'~de%1Havk?,"'sSway?" "Youd6 2pli!be#nN1getb blood"thN# p3 on one piec!be,d{q dig a *1t '`?aY+"rorqdark of6mooQ burn/ s}3 2ean#se Uq=.ll keep drawN$nd ,mA feteXFv+1"soQhelpsh!toOA the.Rf!sof}Qcomes %--;"gh,"bui$you say 'Down;awart; 1no @'Bto bgme!' i " T 3y Joe Harper doe!he1'enCoonville and mosQ bwheres#say--how do:"urA b!ak1r c+Enm?graveyard '%Ubout wwXromebodywas wicked hen buried3Fit'sFqa deviloP, or maybe%,3 't see 'emcan only+ u7indYAhear9Qtalk;|they're tahat feBawaym#he<<01'emGqsay, 'D  corpse,i,A1cat,Qye!' ;2ll 91ANY7b." "Stnright.}  "No@Rold MrHopkins mz !soqAn. BQsay sra witch#ay AKNOWQis. S$*$pap. Pap says so his own self. H! axAone *a#!eeUawas a-Sring himC !e T'Brock9i!ha AdodgQe'd a>e)that very > $heFoff'n a shed wher' s a layisQbrokes1arm"W#!diOknowLord, papGeasyK1loo- *q stiddyDyou. Spec"ifcmumble d$b're saS he Lord's Prayer backards2Sayy y:"trB1cat1To-. .old Hoss Williams t8a" "Buy him Saturday. D` ?qtalk! H5uldbAarmsF d till -?--and THEN2Sun|Sevils Tslosh 1muca,2, I' L!nLaBso. #goT!f'"--$Rafear A B! 'T qlikely.djAmeow1Yes#, Z'geR Last timeOkep' me a-me8!arA1ays( r&rocks at mJb 'DernQcat!'qso I ho Abric{!hiDsdow--bu+BbwTIn't meowe bauntiea#me|Q4'll8!is%. 3!'sOLqNothingaS%Ou1-3at'AtakeG .Uqell himHAAll 4. It's aIqy smallr, anywa#anybody3runw6ae1 bem. I'm satisfiiwF!enAtick"Sh!tiu plenty  1 ofrif I walCo2whyn1#wed!cawT&Cs a Q2onef YAyear,b--I'llbyou my  ALessi1Tom1 bi$pauAcare3 un$Git. ~a viewe#Awist-. The temptation+strong. At%he"Is it genuwyn4Tom>'>!shthe vacancy.a!,"YB, "iAtradTom enclosQ8 A@lately be94#'sG"th separated, each fee !wealthier thfore. When Tomy'ittle isolated frame ,trode in briskly=P!ofY1who AwithQhonesbed. Heahis haQa peg52fluT BselfJ4}31eatI r-clacrit", throned on hig1reat splint-bottom arm-',R1doz)!luW" drowsy hum of study. The51rupcd "Thomas Sawyer!(Ghis name{f7 in full&!me$rouble. "SiO"Come upcRS. Nowbwhy ar2gaiN3cusual?= "to Srefugz"3lie' Pw ; ails of yellow hair hangingoae recogn$PHric sympathy of4%;&bat forTHE ONLY VACANT PLACE girls' sZ QinstaE STOPPED TO TALK WITH HUCKLEBERRY FINNY's pulse\:Qhe st helplessbuzz of 5r ceasedcpupilse) foolhardyaqhad los% u/:9*(d did w"Stqto talk@ Finn." (eno mis}e words,!isE!motounding confessionYever listen!. No mere ferul answer f4is offen%1akeyour jackej  's arm performed until it!ti#>Qstock1wit) _y diminish`A ordllowed: "l!goVs!th! And let)bSt0xr titter-VripplE{qom appe^rto abasiboy, but in .G14was caused rather0!byworshipful aw%his unkn Sd(&IAead _#urRlay icgood fortuntss Rwn upk(1pinc<c0)'Qirl h,away from himaa toss$&nd. NudgesBwink$qwhisperO4verQroom, rTom satW!hiIs "Aong,"CdeskO1eem[book. Byby atten$DNjX#ed murmur rose]AdullxEPresentlboy beganqeal furdaglance robserved it, "4G,2" a8and gave hi-HbackRe spa\ta minut2she caut4duQ, a p5layi"erthrust it away1g!pu>Kback,^2butC&Bimos;$om9Sly reZiqits plaz!heit remaindscrawlts slate, ", Bit--2  -3" TdJ uno sign. Now draw some *!hi 1eft;q. For a31ref:2to ~[Sher human curi@Axq manifeby hardly perceptibles !boPkAr, apparunconsciou+Qa sor^ noncommittalnmpt to s6 did not betra/h Aawar&itM 2she!inQhesitB$lyb!Le  Apart 6=*l caricatusra housetwo gable ends}a corkscreC,smoke issuingS!thn[AmneyX" "'s !es0Bfast6elfeAworkqshe forgot $D els`f6, she gazedAAment)n ,It's nice--make a ma artist erectH$an%front yard,qresembl(qderricka 4~1ste\ !ovgek&not hypercritical;Kwas " Const! a beautiful man--now me cominggom drew an hour-glassa full moontraw limb1 arhe sprea1finE$a portentous fanwL #t'#soI wish IPddraw."feasy,"q Tom, "1TlearnB"Oh,i#AWhen At noon. D 2 goh1to dinner&PDstayAwillrGood--tAa whas your] EBecky Thatcp5yours? Oh,$& l1theU they lick me by. I'mIAwhen \2YouW)1me Yes." Now<N  tl1rdsW /1"gg1see !Oh~Uain't" Yes it i5"No'#wX5I do, indeed I do. 4letVYou'll teNo I won't--9Fand Rouble%"ou3G6A? Evs ! aA liv!6&M! e3ell ANYbodysOh, YOU!Lyou trea#o, I WILL see."+ 1sheher small =  Dnd aQscuffLAsuedq pretento resist in earnrut letts_ slip by degrees till thesdA4vealed: "I LOVE YOUj"OhMb-Fing!1hit hsmart rapreddened >b 2ed,~&theless. J[$K junctureboy felt a slow, fateful gripM3CB earp a steady 1 im+zSwise Aborne acros Gposi0own seat, undwNBpeppX/a7f giggles i!tna~-Cstooqhim dur;q few aw_bomentsfinally moved IsU4out5ba word3"al Tom's ear tingled$EBhearWjubilant. A rquieted 3Tom nQefforX Bstud the turmoilRin hitoo greatqurn he h#hi  Bclas1}1 boef it; theOgeography4 Alake3 o mountains, Srivery r contintill chaos wask  Aspelc got "adown,"3S succ`"ofG1babA dN3he C2 up=ae footyielded upkpewter medalj worn with osten|for months. CHAPTER VII THE er Tom triedl shis min,# " mXs ideas wandered.9,b a sig:a yawn, he gave 0V. It $anoon r4Fb wouldm} air was 3Aly dc#t a breath stirring. IRleepi$ sleepy day drowsing<Re fivUtwenty studying scholars soothe/soul lik= #is_bees. AwayE1fla sunshine, Cardiff Hills soft green sides th[ a shimmBveilaat, ti| the purple`iWa few birds float Q lazya!ir; no other liv*bwas vi$x1but7 4 co^W Cwerer's hear=!be3A, or 3 toA  fE to do to paq drearyH4. HcQ into%poO0his face l"gl%:gratitude3wasa#, ) not know i!enXJ3ivexrcame oua him a"Va pin"!6newx 3's bosom friend sat nexb, suff!ju9;4nowMadeeply{"grm& 2ent.1menj3an  7was'rtwo boy r sworn s|1eek embattled enemies on"!s.^took a pinBJAapel #as q exerci1er.AsporZwwU<rly. SooG 6}Beach neither g g1ull denefit*!ti<!o Qt JoeAQ4ate 1rew "neFthe D/!it C top)Btom. ","Whe, " Ahe iqByoury9nbq him up)qI'll leB!e; "2get d)et on my[,@re to leXalone I can keepQfrom  S v!, go ahead; star!upb escaped!pae equator{6DawhiPtU:5G݁ghis changbase occurred often. Wg"onZ !wa5r^&t7r absorbNHYblook o? #as 3, t9b 1ogeo|QsoulsC to B1ngsVluck  S b JE !hicd&atxDcour9rQs exc Xs anxiouh|!thH mselves,<0Egain:Auld evictorfvery graspn)"to#1 cbe twi%to begin,3pin'Bdeft+Rd him;1andTk W)gl:n(uno longzQemptaswas toocqreachedFand lent a11pin 2ang a. Said he: "KbI onlyd1wan TU2#NoJ a fair;e' ~3QBlame>I'!go l#mu+L?b, I teK|"!" shall--+#liALook !a, whos\ 1ickICcare$m /ha'n't touch %%,Qbet I . He's my/do what I 51him die!" A tremendous sdown oneshouldits duplic r!s3twoW dustbRto flbjackety[ to enjoy had been tooS]sBhushhad stolencschool wCetiptoe"\nVd (Hcontempl (p4~performance |!heQributs'Z%broke up a flew to P1 in ear: "PutHabonnetlcyou'reBhome11you)5\rcorner,'.2 'eAslip|rthe lanAcome.!goQoAYcame way." S6"ne+5one group of -gCith EF. InL:*"et e #la.:qthey ha {Uy sat," a5JBthemQ)3ave the pencil 0.Jriin his, gui 4 3ed a surpr !. #(t&Gn ar2w#fealking. ToAswim]in blissS}%!DoLlove rats?" r! I hatM do, too--LIVE onesI mean dead,qwing rouSr heaAa stq[1for much, anywMA likIchewing-gum<l25o! 8qome now/?8"go1letAchewV3 2youUqgive itQ3 to8AThat`agreeable& hey cheweBturn'Y?K!irSk,!!stRbench "cet#ntment. "W>)an/circus? T #YeQmy pa7!"mew*Atime/ET" "I)f three or fouryQs--lo:. Churchr shucksbD-C (on/; qbe a cl5%nWScI grow )"! ill be nice1y'rBAlove ll spottAL1so.=v1getAhers of money--' dollar a4 cBsBSay,_+bengageSWjt`(2!b ٪"ieN.+ 2youC!to.E so.CknowqQis it2/Like? WhyG You S Qa boyRawon't \ FZ\ Zcyou kiPw all. Anybody%#do.b"Kiss?d=1for2X Ynow, is to--well[yIoAEverqH2yes+'Y8 ". z remember m F wrobbYe--yeW]YC%I  TShall 8YOUHB--bu5No, t now--to-morr8Oh, no, NOW7!--Vrwhisper aso easLQ #o took silenc Acons"and passedBarm Arher waiS]QT talezC7/outh closuher earn he add\$2Now!--d t-P3ShePj" a^2You vBfaceBs^23 seI;I~you mustn'<[--WILL you]?&,!N  .a." He n\DidlyZ(her breath stirr?Bcurl , "I--loveP-.(r sprang#tand ranfs+YCes, with1aft*uy/x Cher 1JQaprone1ped"nehV pleaSWn]ll done--all a. Don' be afraid Eat--+?+ll. Qhe tu{"aD YhandsA+2she us  qs drop;Qface,rglowingy"truggle,,O submitt-!omqred lip 3rNow it'ACdoneEPBt 2yout0mk+@!toXy,2 meand forever. Wi 3'll)u!LLkmarry +2--aX - 3ith)CEly. :. u's PART{)I('U*we^w02me, Rthere<Rchoos Dnd It parties, bE  1wayeO4're DIt'sW'3. IRheard -|%'g>mSAmy Lawrence--b2bigF1tol{ ~DlundUe stopped,1Sused. BTom!,/irst you'v3 to"W chil2cry94Oh,trk I"arshy   1you1Tom3 kndd i  BneckJ j%sg0%im!Qrhe wall1wen\bcrying05  ing word GQas req$: (!pr4as he strodWQbutsideY,2lesquneasy,: Sglanc2oorMQy nowthen, hoping she.RrepenSato fin:4shee-e f!barnd feari.;'roS!ea hard2himke new advancesM ,Nqhe nervRmself{Q and _]"zstill stan797, sobbing.!'sDt smote himD ?2 ,ing exacoQproce-ge said aly: "* ], I--\ A." f4ply 4bs.D1"--/tingly. Y !mea?" MoDTom got ou( chiefest jewel, a brass knobToan andiron2{ $itd h,2thaq,{/3w * y Sc3uckY the flooruTom marH.:C hilR 1far[!rez1 noday. Presently 3buspect rRT1was7in sight. < 2play-yard7SthereU1she,v Cc, Tom!/alisten}trL7had no companions l oneliness. So s t`Ro cryfp1upb herself;qby thisZ L1gata3gai[ashe hatAhide+Qgrief?6cbroken aK of a long, $Q, achhfternoon6! nk#mo Astra/VSto exbsorrow/ q'I TOM dodged hp t through lanes96H@&ou!r51ing3larinto a moody jog. He va,"branch"9"reDH  6prevailing juvenile superstiti!0 c water baffled pursuit. HalfC1! l$2disD93ing[#Douglas mansion jbe summ"'Z ,1wasly distinguishablCoff Cdvalleya a deny-od, picks pathless wa>r2ent;4.!onssy spot,spreading oakrnot even a zephyr(*_anoonda(at had 260 Tsongscbirds;:1 lasa trancCwas Vby no sound the occasional far-off hamme,of a woodpeckiBm 1 re .1rva|wense of|*sprofoun=Rboy'su)w!1eep melancholy;o A3s w<happy accorqhis sur1ingA sat< )oAlbowhis kneeO2n i.S, med69 * rhat lifbut a tr=1, at bes! +3orlRQbeen 2!eda2g--Q very dog#" by some day--maybe wh@8too late. Ah %die TEMPORARILY! Buselastic]o?ath can4e8Aresssqto one {rained shap*46Tom_&drift insensiblyJXZconcern"is7|.T cack, nowmed mysteriously? aaway--A'so3 ?countries beyoBseasQcame S! How 1sheF then! The idea of beQ recu,mto fill himdisgust. For frivolyR jokewStight"anAsy intrude`/1 upbspiritwas exalt3vague august AEthe romantic. Nota soldi<,"yell war-woraillust. No--bette4ld#joIndians,unt buffalo$$gowawarpatr4x2S rang-the trackgreat plaite Far W 0QfuturM+A q, brist2with feathers, hidej$ith pain,bprance. ,(QrowsyN $er|a bloodcurdssar-whoose eyeballaG unappeasu envy. But noOb gaudin than thi/dpirateas it! NOWK2lay~ #"im"glaimaginsplendor. HowMHQould c people shudder1glo(AS go p{%2seaf"hiu,1, l'qlack-hu 2racZ02e SsFc StormHIisly flag flyA fore! And at the zenith ofQfame,suddenlyDIold village8Cstalcb, broww-beaten, black velvet d ArunkCjack-bootcrimson sash,AbeltJ"horse-pistol9e-rusted cutlass atCAsideM2 sl4("atTwaving plumeIcunfurledthe skull Abone*  Bhear[2sweobecstas>$G #s,3TomJ, P--the Black Avengerpanish Main!"  j,d Acare's determined)2runfrom hom Renter' /\.2theDnext[ Afore rust now+1 to&Wreadybcollecresources %)Aent rotten log nv%'an2digu 5 onFihis Barlow knif1oonrck wood ed hollow"puusand uttwis incan~,i8 dively:bhasn'tDhereovW!st 2re!^rbcraped`"ir Q expo pine sh9:i8and dis(chapely,2 trcH-[5hos'and sides wer/ds'iHra marbl 's astonishmenboundless! He scratc Ss hea a perplexed air7RWell,1bea*y> +Btoss5pettishlyStood cogitatUsuth wasfa Mqhad fai91and0-Brade0AlookR$on as infallibl byou bu OLcertain necessarylsBleft  fortnigh'BCopenCplac"8theP" h ajust uh3yout%a1s2had1los.  t0 H,9 |&Qno ma how widely+}Qk"w,~ bctuallunquestionably *-DtrucF2faiQ shak"-Q its Bs. H"Cmany C Rasuccee3but{aof itsAfore:Q occu2himtit several timesC, himself,n;1e h*-scs2warvpuzzledy!an\decided $Qwitchainterf Bharmhought he tsatisfy at point; soe!ar<1he Csand aqfunnel-Qd depo!itJ9=$ F2 toyG and called-- "Doodle-bug, d $'#mev0Wgknow! 5 5*! sn1egaBwork"3bug e a secon2darted um)fright. "He dtell! So it WAS aAdonef !I ;%!knv5'"HeDknew2 iQof tr to contens#chahe gav^"Ś$ag%iT`he might asAhave>  w1 ,Oatheref@Btwicl.last repe2wasRssful$0Qs layU1foo Qeach a. Jus^%ebYntoy tin trumpet 3faintly dow%green aisle~QorestWoff his jacke|trousers,$ a suspe9belt, rakN Tbrush 4thelSlog, 8 n rude bow1arr| lath sword4in A7$Bseizse thingSbound, barelegg 1 fls "AhirtL7halfelm, blew an answ@9atiptoelook warily outk1way2thasaid cautp--to an }!ryH!an Hold, my merry men! K;BI bl06Nowf>q, as aiAcladbelaborarmed as Tom. Tom]Hold! Who s7ASher BFore_qhout my+q?" "GuGuisborneVAan's).^1art-L--" "Dar  hold such language=Tom, prompting--fo8y talked "se book," qmemory.l ~/ dsI*! I am Robin Hoodkthy caitiff carcas:Ahall%." "ThenRindee% famous outlaw? Rvgladly will I dispute#2the=Fpass3wood. Have aeyWtheirqs, dump4eir.Brapsf e ground, struck a fencttitude,!to61kBv) reful combat, "two up andfdown."p!E Tom aNow, i a've goQ hang=Ait lM!61y "a," panhK !er k. By and bhouted: "Fall!K8! W`+ sha'n't"Nrself? Y(AAwors!it/4Whyh M@!'tv;A#ay it is inVbook says, ' Qone boa[stroke he slew poor $.'!toNr ,ame hit oQ." T#>PFuthoriti 1Joebed, received!whE@nd fell.&"4U Joe,^up, "you8o(N2 ki1*Ffair{f!docE_/ell, it's blameC's aQBsay, you can be Friar Tuck or MucAmillD[ss%R lam M h a quarter-staff; or I'll bSheriff of NottinghamJe w9h?Bill 0AThis a@#soadventures were cr4FATheni!beB6 L!wa- !by treacherous nun to ble s strength away 1ughneglected w- 4And/}! r 1entAtribAweepOC4s, R|Qhim sbforth,V m"ow(his feeble hands", e" Q fallTere buryuu 1eenqtree." She shT$ b&would have diedQhe li>+Aa ne0and sprang upMAaily a corpse.->dA, hi!ira!Gutre Ooff grieao <$noz4u3mor Bwond what modern civiliz= claim to h Qensatiloss. They;F-rather be year in than Presiden the United States 0 CHAPTER IX AT half-past nine!ToB Sid\1senm"be[usualir prayer='(onqK Aawak waited, in rest"imc<{it seem0q be nearly dayldhAlock;Bke taqdespair&and fidge#asrves demQ, buttbas afr+aSid. S12lay,%!st"upJark. EverLDsdismall<2C by,'YSness,a, scarceo[fnoisesemphasizeSC ticking aHh Ato b!itS-A1. O+"&ame! cT(!cstairs creakently. Ev1ly 6 !ts abroad. A m#Rd, mu(snore issued Aunt Polly's chamberA now4tiresome chirqf a cri!thA human ingenuity locate,JQ. NexV ghastly?SdeathwatcDwall bed's head made E--it#abody'sMPnumberedUBhowl{far-off dog roseg 3wasAa fa<K a$r O./an agony. At ih| 1ied+had ceas@d eternity begun;00 to doze$Aspit2e)chimed elevenl0A;#%8me, mingl Ahis !formed dreams, a most ' caterwaulwA raix&of a neighbo)awindow81urbSqm. A cra"Scat! devil!" aQ cras<an empty bo;z}ais aunt'sCSshed T#"dea single minute laterl.jr$al,Sroof 3"ell" on all fours. He "meow'd" withn once orpn jumped  g3]*QL. Huckleberry Finn washis dead cat #ysAW1off\A,#edO#a gloom%thh," (all grass4graveyard. It &old-fashioned#ern kind13on a hill,5Da miK'ERillag1hadazy board fencet $itcAlean 1warY1outek$th!buZod upright nos1. G n!ed!ew rank M ? cemetery. A2old*spsunken in,Mnot a tombston!; {-worm-eaten qs stagg#Rover $ aves, leanaor suppor 1finnone. "Sacred) of" So-and-Soabeen pdm#="ittLR have7Sread,5am, now*1n i3 r7lFA wind mo $re1Tom5| {\, complai(#atw(x\<R6nly ir breath6[ -Solemn(Q silew&ppX $irvyo! t arp new hea1yk1eek6ansconcQemsel2ithq protec0ree great elms$grew in a bunch?-WDfeet " "y U  42for H "a 1imeS hoot abant ow.]"btroubl !ne om's refld1ive%.aforce Dtalk) Qsaid $: "Hucky, do&ɘ6 ead peopleGZ3 usDqhere?" Zed: "I wisht I@eEQ's aw3Zs, AIN'T36Q"I beAis."ea considerable pau*"il\Scanva "#iss inward! n_ %ASay,3y-- reckon Hoss WilliamssI1#O'Q he does. Least8rsperrit"7, +a+2 I' #u MisterxI`  Aany l DQs him#A "n'Foo partic'lar1(tXalk 'boutase-yer  Ra damnd convers3die!. Qw Ahis comrade's armE1sai:Sh!" "What is it~$?"i nc%Atogeq!be#2ts.K C'tis again! z1you+{0Q! Now"OALordTHcoming! TQ, surmat'll we do/I dono. Thiny'll see us!'OhbA can!in^ Qdark,M as cats. ihadn't comecOh, doay!. Aliev<1bus. We(a doingl If we keep perfectlyR, may1y waB us N$I'll try toRbut, Y1I'mbBof a shiverListen!"be1!ir s e tof voices float% 4far`(A "Look! Se;Fre!"M  w-fire. Cis it." Somv/1figaapproaK'!Rloom,M tin lanternaTfrecka  innumerable spanglek  K#a d!t' sya. ThrexA'em!yQwe'reqrs! CanBprayNB:BThey! gto hurt us. 'Now I5#meo sleep, I--'"8 AHuckHUMANS! On! iWyway.'s old Muff Potter's }aNo--'tqu so, is AjDYyou stir nor budgBCharpfE to q. DrunkBausual,Cly--qold ripAAll O !, 4stiI5tstuck. Can'"1Herq#Dy coN.[8hot. Col2B Hot. Red hot!'re p'inted?r ,q"!o'qs; it's Injun Jo(2ThaFD--that mur!' breed! I'd druthe Zdevils a der'>!. ky be up t4The.| Dnow,! t 1men $re!e 1     ' hiding- Q. "H?9Dt is Qhird ;\*:wner of it hel TTreveaV1fac young Docts_`1carryingYcbarrowTA rop a coupldshovels onCcast#lo=!c2opeUF7" d1putd|_R56karH2ack1st fX2elm  Q closIhave tou1himurry, men!" !idTa low"#on/1com at any moaRJy growled a responsgan digg'Fo(*2 no# b<"gr s)Qspadetbchargiir freighw Amouldlsvery monotonous. FinaX Q upongScoffia dull wood*<2entO4'Ror twyRhoistdg>Sy pritd!$irB, goB!dyF!Qit ru - `TdriftQbehinb cloud(0allid faN4he P!as3reaaorpse "it, coverea blanke>buCope.Q tookQa large spring-knifkc;#da3z Tthen " Nm$cu Bng's, Sawboned you'll*"ou$ Afive\$ s?y alk!" sai.] BdoesSmean?3te. "You require3r p?Sdvanc(I've pai#'4B don(B tha ,; r Q, who Dnow @*q. "FiveBs agqdrove my q your fX's kitchen, when Ito ask f@(c to eaK3youWa warn'!!re2any goodWswore I'd get,AzQyou iuaa hundcgears, RAme j1 for a vagrant. Dta thinkiqforget?I^Sbloodq Ain m1 no.2nowvGOT yougot to SETTLE"r!" He EQreate<,e !isy Bace,n!2is  Tq8E1retacuffian dropped his !exDCHered #hi^(&rd~b next ! h-t grapplF "wo)Rstrug'!and main, trampl% gFtear@3'rheels. !JoaAfeeta81 ey2%am!pa1nQ, snaQ3 up'/V"cr"Q, catYEAtoopCand  w'Tants,Q an oCunitwat onceQ,d free,62Aeavy5 of'n fҲt(Rearth"it8? c YiL A sawXCchanSj2theb1hilthe young man's breas+Qreele4BGqpartly , floodi  l* `ablotteXAreadcpectacf1 Bened Aspee!awHdark%> remergedO , '8two formsPRtempl }aamurmurulately, gw*gasp or two%2wasKm- rTHAT sc; :Q--damF0Rrobbe8body. After h9the fatal2in r's open R hand M dismantled } --four--fivss passeJ7.mB za1. H1nd dw#; !ed1gla!atand let it falla>g)sat up, push2bodA himLJ gaz]aK&confusedlymet Joe's1rd,ie, Joe?u .a:ay busi%#2Joeout moving.d]d+[%I!!it{] 3! TRT 3alkdewash."YAtremDI ew white.1ghtagot so"!I'BM!r!o-@it's in m* yet--worse'nw= rted here.vmuddle; c!$re=#an$gQ, harqTell me}--HONEST`Aold ar--didB it?zJ(qto--'poAsoulhonor, I nevt1ant5Joezc#Oh$+Qhim s, ad prom! -1youC?ay1inga he fe6G ) Bflat !up:3comX1reeX[ding li!.Ajammz%.5 'asE you7S clip ere you've lai'!as a wedge til nowbd{Uwawas a- I may die1if B1all on accou(bwhiskevV!axcitem"I .uC$ weepon Elife:) fUO_;uAy'llsay that.( V8ray you Atelle--that's a  4. I_2lik</U !upE { etoo. D remember? You WON'Tc]a, WILL  A/ApoorS'Eture o SkneesUrstolid G#alaspedQappeaa,.)4'veA #fanbsquarej 8me,N# I<#go$n :MsXs a man can sayIy0an angel.bQ*1you^!he0est day I live.> ?Ccry.d 40$#isc 1anyYsQblubb. You be off yonder wa!go+T. Mov 3and5!leny tracksX"onM(quickly increaseQa run  &)He8 If he's as much stunne Q lickfL2rum2 halzAf bel#he1eBtillzgone so far he'll be +}-e\!it:Ruch a>% b= --chicken-hear1TwoO tqs laterD0Rd manv ArpseA lid 2the ?+urno insp8!b moon' ness was completet 9too-X THE two Aflewqnd on, towarkaspeechwith horror*y Aback;%?aulders|!to, apprehens95'$yA$m &be followed. EVastump #up'Air p9&.'and an enemyw[+athem c+:bbreath"as"by"Aoutlacottag41yy.=21ark1*aroused +H-dogRagive wq:qir feet Af weqonly ge=ld tannery!wegk down!" whisp&1Tom|<Qtween5dths. "4AstanRmuch ]&ucC)'s hard pantAwere-1repboys fixed sSeyes z 1goaDBhope"4ir work to win it. ained steadily]1st,s8y burst open doo cgratef BexhaIiBshel, shadows beyond. Beir pulses s4Tomac2 2'lli!BIf D dies, I61 hav>!it?D m !?" y, I KNOW 1Tom#om&2t a$JEn he #1Whosell? WePBat aj  ing about? S'pos%!th1appEand q DIDN'T!? he'd kill usLvoO:  sure as *g <@  ~o myself, HuW8q"If anyAtell)t 3, i)Cfool. He's generTdrunky%U !--2 E s C "itrN!ca#teJ:#sQreaso 8QBecau>&"'d1geSwhack"F. D'3 he*5seeT?$ \7!" "By hoke:$'s-!" "And besides, look-a-here--maybeqfor HIM<No, 'taint likely ^GQliquo5ghim; I#th  |h Rhas. 9pap's full Atake/belt him&3hea< a church)2youn't phase 1say his own selfZ)i3sam !C, of(Fqf a manjJGoberZ W&)dono." .*$ve*p)2you#"an!1mumw%to.*  #atadevil 5Rn't myQy morWdrownding us&a Acats!weto squea(iF+"ha!. X>u, less swear to one/Z"weveo do--0qkeep mu"greed. I Xk1. W2youAholds_Un we--" "Oh no @! dA thi . for little rubbishy commokngs--speciwith gals, cuz THEY!c anywa ablab i: huff--but!or%^e writing Ra big BClood2's m0 applauduis ideao1BdeepAdark  t;1our3 circumstances1surRings, ijbe pick'ya cleaniOlvAmoon'", KGr fragmes"red keel"7 f 1pocDkK1 onV#wo0fully scra!'these lines, emphasizing each slow down-stroke by clam~7his tongue AeethRQ lettpApresQCe upW&s. [See next page.] "Huck Finn and Tom SawyersCs!ndI+Awish may Dropd!ea6 QTheirT"if33eve1ellX!Ro  p5filKadmiration of~acility inA, an sublimityQlangu3HC'4pinqs lapelH6was(Qprick,QfleshWN Hold on!!dob. A pi1assA8have verdigre#n Qp'iso$/ swaller somic --you,a." SoSunwou8bthread"%his needl!Aboy  1e b.QthumbcsqueezBa drfA. In,{Dmany2!s,amanage2sig!Qiniti9u~8Hthe ~ finger fo/e3ashowed  1ph"! HQan F, 1ath%2bur9!e 1le q5 to:,dismal ceremoniaincantfqfettersJ$ b#ir8consider(Qbe loF"keArwn away4!ig[AreptURlthil(!ugX$Dreak[Wother#A ruiEAuild2nowLQQ*iVTom,"6, "#uYAEVERf ing --ALWAYS?" "O r it doe]cdon't y difference WHATv xY got J BWe'd"--Q6YOUe Ywts rcontinuHtime a dog set up a long, lugubrious<outside--within tenc*md boys q",qan agon+!.ich of us^4 he;%!ga4 dono--peep througw crack. Quick 1YOU#-- 1 DO#Hu2aPlease1 72h, lordy0thankful0I2his)4 Bull Harb`" * [* If Mr. y+d a slave named Bullk spoken of him as "Dl!,"aa son 2dog!atZn"]   1--I" ( most scadI'd a betmM a STRAY dog he dog howledv~W'3Ats s:"nc&.2my!%!no'I IA "DOM! Q, quabAwith?t, yield !Z%eytrDHis z"waly audible"Ohr, IT S A1DOG1, qK Who7Amust3 us both--Uright"5.+vgoners.EU1misM   V< I'LL go to. I been so wM m2Dad_1Thites of p1$oo!do BveryD a's told Ndpaxgood, like S-fr tried !noaever I 2off time, I lay I'lWALLER if"s!7Tom0"nx4( . "YOU bad!"7Q"Cons!it ^ ld pie, 'longside o' BI amTLORDY 9 only had half your chanceom chokeds6andh: "LookyA! He?9BACK to us(ucky looked!joh "hil9he has, by jingoes! DFRbefor.bhe didpIS#l,e"!this bully, y. NOW whowing stopped. Tom !up ears. "Sh! k BthatI#0!ed"Qounds--like hogs grunting. No--it'!!snC mqThat ISkWAbout"it8I bleeve3Uat 't| #. Bso, a. Pap rRto sl{Aere, Stimesv t$"gs laws bless<1he Rlifts1s'HE snores. Buhever comOto5own{hXEdventure rfZsouls`/Qdas't`o`S leadR 1to,2, s~ts quailep_7the temp #up܎:7 3oys#ryJAnder{2ing'7 @#to@Sheels Se !y 4btiptoe  , 4oneJ CthervJ~4hadlqwithin 'qsteps o|!er'pBstic  it brokera sharp snap.man moan]erithedp his face came inK . It was"ha+rd still\|C too)Aved, )Dfear|(? A nowlypid out, n weather-boar& $-%at2 di# sQa paraword. J qrose on5'B air!w1tur n+!th-2ang  Ua fewQ Xt.Awas $cFACING7nose poi* heavenward! geeminy,VHIM!".A botds a!--say a stray dog3ai Johnny Miller's house,A mid2,!#as.eks ago;6 ppoorwill=1 in4litbanisterZ2ung|aame ev?0U L#B}!yej W"ndyE#se 2. D&cGracieT falls2Afirebcrself terr next Saturd;#Ye@sBDEADwhat's moche's gbetter, too:you waitbsee. Ss# ,Cure  z,)a niggers sN:2all *h<7c,dWBSihis bedroom Kh"al Apent3$ss]$excessive cautionCfelliP congratuP.2himMRCknew escapaden1was _Raware3the gently-Qas awake$Y bv5. eawoke,=1andCraa lateq ! ig# lAsens&the atmosp+HA%##Wh% ae not called--persecuted till As upRusualK4  KLtW.%Nairs, feelowadrowsyr family R at tԌ!bu finishedQkfastAI"no of rebuk)Nwere averted eyes;:!anA'ofCHthat struck a chillhe culprit' s He sat "nd &reem gay2it -Nwork; it E$no smile, no; he lapsed "leyheart sin'$tdepths.HNN"idG bbened ir3hop>g2Gflogged;Tianot so aunt wept overxand ask*m-E !gobreak her[!o;rfinally3him o{"ru&3andRher gray hair '1 so=~ '?2 usZ hT: try any more.Z!waCan a thous"ppgaA was sorer nQ:"anL1odycried, he pleaded for forgiveTpromised to reforh 2andj {.[jdismissal, !!he_1wonan imperfec51cestablut a feeblfidence. He lefk  Ro misC vAl ren4ful(2Sids 2 laB prompt retre back gat unnecessar_!mo^o school O%3sad41ook+}hqJoe HarHDwondered i-!ha!ic%nir mutuala<Abody2Dtalk r intentlthe grisly "them. "Poor fellow!" 9T+Cught a)Son toG@=grs!" "T2'll) iy catch him!" This ift of remark"milB, "IzQa jud';=frNow Tom shivxAfromA to heel; >D stooG3 of+3JoeZ$isB12beg}s6Bbe, andas shoute!'s  Aim! 7com!!"U!o? Who?"ctwentyT8. }1QHallo0s1!--=3out!tuM{&Am gey!" PeoplCrees over\'Aheadrrn't tryYB--he4doubtful and perplexed. "Infernal impu "!"aAa by~er; "wanosand take a quiet$aFwork12--dQexpec 263any=part, now u- b, oste%Ausly]3ingC" bt#arq#pa's facw haggar &the fear tha .W bstood 1urdman, he shook ara palsy4bface iNBhand@ QburstJa tears P!do#friends,&sobbed; "'pon my pThonor> z0iho's accTyou?"F" aYicarry home.xCliftme1and3ed ` thetic hopelessnes5sw!:"*Q, youaaised m/"'dD."Is ?V i4himM#. msiy anot ca=1easmhe ground. TO*BSome!1tole't if 8Ond get--"-1hud Qn wavr4f2les` ra vanquSgestus?"Tell 'em, Joewv'em--itl0n,1tooMbEstar`#he  2-he8 liar reel offrene sta?_# FaFlear skydeliver God's Eningmp]f1seeAroke3tdelayedrAen hP  JJ3illBaliv'!iraimpulsx  BoathE!avubetrayed prisonerafe fad d 5wayBinlySmiscreant1solrto Sata.#itIbe fatalReddle]~ Rroper-1sucQower - a"$hyyou leave?"DwoC|d Qfor?"ab BsaidRn't help it--$,"amoanedx:2 ru+ ?1see} 3but he fell to5. d repea)BjustZSlmly,minutes after inquest,=Foath 1seeCwerewithheld1q 1rme20qbbeliefH1Joej h Aevilw become,Bm most balefully interes1hadDA , yB not+ M  bey inwu(bresolv w= nights,d#1L should offer,Ih%ofPa glimpshis dread  3hel2rai !of[NRput ia wagone rremovalQwhisp3 Q 2ingv  l0!blqlittle!vDboys&tXappy Tturn  E$th\)wBtheyQdisap "ed1morEn onarked: !three feet of . 7it O AfearL1ecrx+ad gnawonscienc /iqs sleepvAas ms a weekG1at Afast_~3Tom/' !alCyourx1so t3youp8!e B hal9"ti^rTom blaband dr"c H's a bad sign, Aunt Polly,*dly. "WzRgot oB min_d?" "NQ % '[Aof."k23oy'shook soaQhe spcoffee. "An 2 doTustuff,"Ur. "Last said, 'It's 2" t it is!' Y7Aoverover. And y!, 'Don't tor6me so--I'll-"!'S5CWHATQis it$V?" E+  1Tom( re is no\2ing*+ Qhappe\1BluckF2cern passedm7S's fas3 torwithout kno.!it" Aho! W3ful1. Im!ity4 my24Q3its7  S%Lqfound a-Sightypr itself . Becky Thatcherd"st #tolMT had EQhis pia few day<'"whistle her dow+!,"1fai)&HeTfind `"ha her father's Lqand feeI%< was ill.rif she p2 diP)9a3qno longbdok an `@tar, norq piracy charm of lifCgoneMadreari2lef}hoop away,#Bat; $!wa 3joym3 His aunt "ed& 'rll mannqremedieS2him06wasRose prwho are infatuqwith pamedicinea-fanglWthods of produc2 or mend:an inveterate experimA3 in-s. When sRfresh'cis lin Sout s!in'*{2it;Kn herselfp?iling, bu/!el"at Whandy subscribert-!ll#!"H" periodicalNphrenological frauds olemn ignorance %B inf#1was^th)strils. A "rot" they cont about ventilR !ow$odRet upj/Ro eat$Cdrinl42howQexercI 2 22frag?!onTDelf *.1sor#clto wear,&all gospeӲs=aver obser!ha! h-journalscurrent month customarily upseXhad recommenO <Rbefor21s simple aonest e 1was+5 soan easy vict!gaQ$d <]quackydthus arm:'bdeath, .9 pale horse, metaphorici 1spe> "hell foll"Qsuspe `aot an &1 of[$$1balQGilea6 disguise&he) neighbors.n!wa6 creatmee3new/,low cond|)f$e!haRaat dayN*,bhim upehi}!wn mBqa delug Bcoldn she scrubb3a towel liki7Aso b?t him tona*Bhim Aa wemYqblankets 1Aweatas soulw1 "the yellow stainsiV a his pores"--as7!Ye rwithstabAhis,boy grew morh  melancholyp!ej|added hot baths, sitz hFClung,A boyX#"inbdismalShearsRassisslim oatmeal dizbr-plastersb calcuhis capacitn)Hould a jug'sfSevery day}3cure-all-#om come indifferQ32ionn!!isfW_0cphase r1the1Tlady'L,constern;ice must b9!upny cost. Now?of Pain-killthe first a She otd a lot)Ua tasteD 3as with gratitud'Rimply7in a liqui0 J  {2and&P3els2!piZO iA gav a teaspoon# 6Xeepest anxietB,qe resul &r mstantly at rest,Zat peace again; for""?broken up` #bo+1hav!#wn a wilder,i , built arunder him.3feli.to wake up;-Klife might be romantic enough, iQblighy, , c1getyD tooiAsent "oo  %ng it. So heat over%!ouC!nsd ,X1finchit poO fo+n# 4Qfor in4ofthe became a nuisanch Rby teeZT help'2Aquit)q >Ieqen Sid,had no misgivto alloy!dePEsinc&3TomMF bottle clandp#el (" !rebdiminish" !itW Cccura t5was t!ltIta crack !siG-room floorit. One day athe ac 3dos  Sy"#'su$ c along, pur#eA(%heHR avar.lqbegginga({said: "Don't askit unlessAwant&Peter." But s1ifi# W2. "You better make suh$?ure. "Now you'v( give it to you, because E $ #m"mebiEQyou d,mustn't bl8Ebut your W agreeableEH mouth open)Voured.Sprang a couple of y+Aair,LSthen %ed a war-whoopsL!f & the room, b st furniture,/ flower-pom*  }Z havoc. NextiRose o}"hi6,#pr ja frenzy of enjoyment,<2his,F !jL proclaimingunappeasrhappines % Atear ?ahouse a spreaQchaos>destruct! Gath.U!edDime r&!im/w$double summersets, 2naly hurrah,AsailG1ughVt, carryK1res^Gthe ZGm. T  Bpetr astonish2 peer glasses;Alay ;qor expiaKRlaugh?#"on earth ails@Tcat?"N'u, aunt,"O. "Why,+i!diaact sogcDeed IWknow,e; catsq6kthey're having c A" "$ado, dof'?"Btonemade TombD1es'at is, I belie<(2y dAaYou DO1-  Qdown,n 3ingwAinte>emphasized by{ R. Too?@!viAer "f.R handthe telltale 1visC ed-valanceUi ald it tom winc 9yesBAraism Qe usuandle--5"ar.csoundlj %DimblS, sir (1tre"at)dumb beast so #pi Thim--Zd!nyj." "H!--you numskuhQat goA"do iqHeaps. BRbif he'?Qone sqa burntF4out2! S2 ro 0QowelsX!of3'w"n,PBthanra human!" Z!fe: sudden pang6o1Thi1 pu yhl |6 ruelty to a cat MIGHT beboy, too  soften; 2sor=r0',I Rshe p<'3 onDheadd gently)'qmeaning -!stQ. And , it DID d !-&om)" i Bfacejust a percepttwinkle peepinggravity. "/!haf Q%ton-B? Ye*BforcX," adR: he 1lea!if!cr`wqno choi("By` `h2farFMeadow Lan,t !ll to "take up" t, Qd fai#up"eaG;, !Fink %,Bhear old familia!nd rmore--i Bhard0v$ou<ld worldc]submit--b A for1theQ sobs.a thick@O1 JW  2poi7m_'s sworn T , Joe Harper --hard-eyCwithD5tlyand dismal purp=Srt. P 9b were "two(but a singl&" Tom, wi 9#ye1fleeve,qblubberBsome about a 6p to escape from hard usag1lacsympathy at= by roamBbroaOFto return"3by  Athatm=1not"m.it transpir was a reques !chK2hadKRbeen  nIkN3#a)1hun1 up_. His mo ad whippfor drin ScreamhX  d knew ;*1plaUtCwishto go; if.<!waXpl but succumb2opebe happy0a regretDing ;"erW1boyxA $un) ddie. As=wEwalk gClong7 +compact to u 8 byePQthersqseparate till death rgm2 ikyj3lay.:tplans. "Qfor b2;a hermitC1livb qn crustJa remote cav1 dy O a#rand wannRgriefQ% m31to 1he U S&a4~_conspicuous advantages1 a "so ansente!pi Three miles below St.easburg,|!wthe Mississippi Riv "a OaWQ wide"a !qnarrow,%ed islanS \6$2bare  o"d well as a rendezvous%1 in2!edrlay farQtowarL her shore, abrvba densk{Twholly un o1estJackson's IC chosen. Whon!*aubject%Qiracis a matted2 ]Ay hu(up}R Finn8 JmRqly, for rcareersho hhe was$jy,75tlykmtu#!ne;I$ot]river-bank two,vn1favorite hour--4\csmall log rafIthey meanLLd. EachJr,2ookl6)such provisiA4d steal amost dnd myste!way--as bec +butlaws_:2bef=eV<n2donC ."agsweet glory of b~h12ttythe towne"hear ." All whohis vague hint!!cas"be mumTqit." AD Tom@a boiled ha9c a fewKs 1%ingrowth onQbluffMthe meeting-8VstarlBveryAMT lay !oc& $%.6ed Qbut n3 m Q>the quietenN!ve%w, distinc$ 6stlAansw 1bd twic; these sig, K&e ;bThen af5ed voice!We!reTom SawyK^he Black Avenger Spanish Main. Name your namesuck FinnEuRed-HanVj VTerro]2easw BBfurnq rtitles,56hisIliteraturA'TisEC. Gicountersignwo hoarse whispers !e Hawful word simultaneJ"torrooding<: "BLOOD!" 2Tom6 sQUC4Bdown4 it, teaboth skin1F/!es~ome extenXB'BfforF {., comfortable path (Bit l!of pCicul8!da/rso valu[&  b d4bac3had Tworn 2outy'"it $.gstolen a sg* ntity of half-c#leaf tobaccosVad al- corn-cob 3pip/.3An3e s smoked or "chewed"A saik !do2tar"z)J ! w1hought; m]ahardly'@Z"reaat dayqy saw aWa smoulJgG1a hWd$3aboy qwent stc'@ 5andjErhemselvsa chunk Rn impR'adventurLbit, sa r"Hist!"[A nowT2theV suddenly halt!fion lip; movM on imaginary dagger-hilt4!gi1orders inX"ifj/Dfoe"cc, to "%W)'K dilt," " "dead men tell no taleWhey knew2 en< raftsmen 3allQ lC in stores or haae2{]D exc^ aconduc` /1 un"AicalAOPved off, ,iEmx CHuck after oar!Jo=D qorward.>stood amidships,r-browedwith folded arm/7hisTstern_: "LuffKbI"wind!" "Aye-aye, siraSteadyNAady-f it is/!Le!t go off 1P 0Aboys 2dilcly droGd mid-stream vno doubtET"gonly for "style,O! t!to E any&particular&a?"l'?1 '?" "Courses, tops'lflying-jib?"Se  r'yals up! La[Saloft,$! a dozen of ye --foretopmaststuns'l! Lively, now1hak\/maintogala@RSheet braces! NOW my heartiesWHellum-a-leeKTrt! SX2wJ4comes! Port, 1NOW, men! With a will!  T\ drew beyoc7mid#&   ed her head7?then lay oi)Hnot high, s  B notathan aEor t=C82. Ha Awas j!duthe next;-quarter ran hour2t1wasGing BdistXwn. Taglimmenlights showed rit lay,1 "sl#,j vast sweep ofAa-gemmed water,the tremendous ev:4!ha happening. 7 7" his last"-Q Ascen!hirmer joy06ter8wishing "she"2rsee himuQabroathe wild sea,~ng periladeath Qdauntj%, his doom| a grim so/rlips. I,!bu mall strain'0R,!to&vet Island 6aeyeshoN'Cthe ["edZ!a vnqsatisfi\a' p last, to q3so I y came near let#e \Q drif)m\ArangQthe i< oediscov "j !inF%qmade sh\o avert it. About'clock ip1morU'Agrout+1bar8 B thewaded backzforth until Ahad 2"d ffreight. ParRlittl|'ngings consist an old sail"isgaspreadIr a nook ce bush$1a tbo shel6eir"s u TsleepVqopen aiDgoodq., .!y6/sk J log twentyirty stepk  sombre depth 4estDen cme bacon1fryb!anI1suprgAand fY"upcorn "pone" stockw4had;seemed glorious sporuAfeas%at wild, freee virginunexplor%5 un CR, far61 2aunm Ba returcivilizations a climbO&!ir3 up6Bfacethrew its ruddy glare the pillared tree-trunk$irbtemple?X aDfoli>afestoovines. W'!he crisp slice of ""on,qallowan* pone devou Bstre'3outt grass,Q;contentmenyBhave3" a coolecZ Qthey 9dena romantic feaZ 2 roh camp-fi2AIN'T it gay?" !JoIt's NUTS!Tom. "WhathHA Aay ikasee us Say? WellB y'd just die to b&be--hey y I reckon so, 2; "͉s, I'm suited. M/u't want"better'n$Aever@#Cgen'ally--and > Rcan'tXband pikAa fe<Z qullyragDso."HAthe dfor meXY6!toCup, y(!ch{"sh 'at blame foolish5uYou see 3do ANYTHING, Joe, ) aa[hermit HE haRbe pr0dxm# t0naany fuQyway,%by&tt!ayPAOh y What's \ "but I hadn't thought muchFqit, youT. I'd-deal rather b mq I've tN(!itC3, "'"go}#onsQ!adQlike ^^Ato is`Ce's M'respectedr2 a Q's goWhhardest 6Ican finput sackYa 3hea)s<=$1raiAd--"5at does he put V for?" inquireZ0Fdono s've GOTV.6rmi5!do2:1do 3/5wasDern'd if Iww'v?an't do%`#WhY:'d HAVE toP'N0!itY6I3n'tv"it2run.S" "R "! you WOULDnld slouc<0be a disgrace U no respon*ecemploy)chad fiqgouging Qa cobQ now A"tt:e', loaded it) was pressing Qal toRchargAblow! cloud of fragrant smokj&iMfull bloomp-1uxu   ) envied himW majestic vicM secretly &vqacquire?hortly. 0AHuck:Q1pirT?E+,"Oh^#n1a batime--(b 2hem3get "nebury it in ?6#ir $ w!re's ghost Fings]i kill everybod --make 'em walk a plankSA y!wo "q Joe; "YAkill5RsNo," asT## 2g--they're too noble}Tbeautiful, too.Awear[bulliest }es! Oh no! All goldsilver and di'mondswith enthusiasm#o? !hy#MB." o"caDbis own orlornly I ain't dressed. h"a &ful pathoH=;Z#go3!bu1$sex@Ftoys tolbe fine#escome fast,a h0Sbegun <W^2him!^2his'4rags}Qbegin,l(Lqy for wy  a proper wardrobe. Gradu5talk diedk ;vwsiness6'[z t eyelidm fBwaifF pip3ub9U (Drhe slep qcience-aR wearL ta} 3 :J%in . 1saiYayers inwardlya, sinc Dith authority them kneeXQrecitC1ud;h"ru2d a0!no$s(1m a,,were afrro proceU lengths asS, les:might call2 a dspecial thAbolt3 c6cn at o Qy rea1ando7'reimminent verge of O.an intruder( ,: not "down." F ,4e>41egafe$fWhad been doing wroD -#eytb. 3meaAthen!rezr^CcameY to argue it away by remindingzhad purloined1tme@nd applesfAs ofKB C!thin plausibilities;E!m,che end? R!ar%the stubborn&"ta-was only "hooking,"F6,O"am@valuableCplain simpleSing--Oa command againaMi"Sov  5hat;a4 "bub", )U2not~Q be sd.!thl}Ume of.3$ e؍uP Lc 39]dstent # Hfell CHAPTER XIV WHENCawok!, he wond% he was. He sat5Q rubb Rs eye'ny"omBd#ool gray dawT#ya%-8of reposKdeep pervading calmGBsilewoods. Not a leaf r!!; ! s!ob|great Nature's medit!Bedewdrops W 2upowCleavQgrassBQ whitY!xcPathe fi,Dblue3werK|some hand$r it laydst to (/Bdit by a narrow channel hardlybhundred yards widetook a swim | hour, so i the midd#thEnoon2Yy got6ptoo hungrRtop tdthey fared sumptu"ha-%themselves $balk. B_S soontto drag!en6} 2itybrooded pG! s of loneliFsFtellUaspirit1oysy!toking. A sorQundef,e creptWmVdim shape'6#--budding homesick'Even Finq Red-Ha.was drea doorsteps\empty hogsheads~all ashame",1weayC none was brave to speak &a. For A Aboysbeen dullyM!ouna peculiar A ,2"sometimes i>2!ic"ofZ##ckAk"ke6>!no' #(isAA1 befpronouY!fo a recogn72 st a glanc4 \aassume1ist23 atfR Thera ,R, pro_band unK1;Yqa deep,ren boomK floating downDn.#is it!" exclaimed Joe,S. "I [!2Tomi whisper. "'T@!8thu+@Dan awed tone, "becuz4'bHark!")qTom. "L7q--don't\#."2wai% 4hatSan agV] ame muffled boom trouble$| hush. "Le(5seevBspraVAfeet%"hu_ MjS1ownp1y pCy u(1ankM!pe2out+2ated 9!steam ferryboakTabout1bel' v,3Aing @, urrent. Her T deckMScrowd b*<!re^# amany skiffs ,T&oru9 neighborhooBcoul{determine what em&!jeSwhitedburst z E's sKas it expSand rNa lazy cloud, tAsames Cb ofz1orn steners again{ 9now Tom; "somebody's drownded!`HGHuck&*last summer,\Bill Turner gotVvy shoot a cannon ov$at makes him comRdtop. Ytake loavBbreaRAput &q in 'em2set Tyr,anybody!!, L'1ll =9i #!op'I've heardDthatUJoe. qread dolR!Oh)](Ld, so muchW&it's mostly v 72SAYib it ou%. "y >6say<iqHuck. "p r@O1XWfunny. "But mayb!sa)E . Of COURSEb do. A1$<Tboys agre=AQreaso(1TomF,@% a!uat lump3Buninfeescaped, unawaR.Bby Joe timidly H1&ra roundB"feeler"3o hI rothers  # aa ;D--no[_but-- Tom!er derision!, uncommit s yet, join"Towaverer quickly "ex)#ed 1wasTT g f<ascrape4 as#tachicken-hearted a cling-o his garme"!s z&uld. MutinybeffectV/1laid$qrest fo{s moment."heMQened,&#no&H to snoreTQ foll13nexc#laG)lbow motioq,>V %@1twosntly. AT he got up cautiously,7CkneeZ#BsearQ<the flickerflections flung%!he"*!piJ !upDed several| semi-cylinder:3hinAbark%t sycamo)1finchose two whichto suit himin #3lt #fi&ly wroteV@shis "red keel";4qhe rollBB!pu"his jacket pocketFtM $he+Joe's hab remov$lD  owner. A CalsoQto the hatschoolboy treas most inestimable value--5m a #ch India-rubber b ree fishhook@$oEQthat !of marbles n as a "sure 'Lcrystal."tiptoed his way #!s Y "he  h drhearingstraightwayc=a keen ru  "irr \-V A FEWsirX&!waM ) BhoalNbar, wading qIllinoi].re. Befoc depth rea,%Chis  half-waF  a:" p="no%},#aso he k]1wimKremainingOSswam bing ups   $=faster than dcted. However, 1Zr6$al3AdrifUlong BoundUR plac~JfRmAis hA N6Aiecexark safP .R#,35ing. Shortly before tenFecn openroppositBDvillA saw2 ly ? Btree- the high8. Everything^quiet undCe bl- !stK2He dkRGZ1alleyes, sli!c, swamor four strokXclimb7(I)"yawl" dutyEPboat's stern!1thw)ited, panting. ;!ra!qbell taavoice gagH1 or:o "cast off." A]j "la("'sh]ZsAup, s 1 swQ4voy abegun.M in his succ7!fom*ait was2^AtripB 2. A/e!a HRtwelvcifteenSwheels stoppedDTom aoverbo."ndaLysdusk, lSfifty6Bdownk,<rof dangpossible stragglrHe flewY unfrequenl3leys$]C:r aunt's QfencehoRapprothe "ellE lBin a+)1-ro Bndow"a 8was,& r/ Aunt Po:Sid, MaryfJoe Harper's mother, grouped togeB talTH s b ' &the doort B dook softly lifBlatcn he pressed gHyielded a crack; ntinued push,G= band quQevery it creaked,wQjudge  squeeze~9ugh ;i #hiq, warilWcqweblow s=I5up. >CAor's , I believe. Why, of coursr-cis. No , gs now. Go 'longqshut itF"."j"edM"la"Ded" 7`|C"tould almo\"!uc nSfoot.#asJ "Q rn't BAD, so ay --only mischEEvous. OnlyRgiddyharum-scarum, F3He Z2any bresponoa colt. HE never mean12hart@2]%st2boy:awas"--g&he!cr[Irjust so{my Joe--always full ofdevilmentbup to  rischief G`as unselfis'3Das h"belaws bless m&w2k I.an!htz#m,:once recolEAat I3wed myself ]Yis6$Sand IP1Ahim Xgi#ldv!, R abus!!" CMrs.ba sobbebif her3 3hope Tom'Jvter offi*BB"butQ'd been 5in some ways--" "SID!"the glare 2 olc3s's eye,yBnot 12. "g9N_%st my Tom,"Qat hene! God' Cke ctQHIM--F< YOURself, sir! Oh,G2, IuR know=odim up!!!!Hesuch a comforjla he tohQed myJme, 'mosrThe Lor,!th2tqhath taSrway--Blb 1nam"21!w$Ait'sKard--Oh,! Saturday my Jo<#er bmy nos D him sprawl%aLittleH $K !n,TCsoonfKto do over K1hug3and1him6 IeYes, yj1howMfeeljust exactly/longer agoqQyeste(Snoon, took and f3to tPain-killI$ ct@e house down!Go%Agive"I  ''="my thimbleY3boy 1deaab P  H"An'rwords I7Ahear2 sa6Rto re 2#Bu\6Tmemor$X1the$la3sheqentirely as snuff;:T now,Nm Bpitythan anybody elsP #ou E cry -"pu^4Q%kindly word #imm$oY)DFa nobler opin$ H1befdStill,rsuffici Bhis  grief tB!sh] tIoverwhelm herB joy;eeatrical>aappealKarongly0is naturAo, b]R resiJbnd layX*R. He&on'F#ga|qby odds;Bends+ conjectured at fir!atP(/#e#le+;M+ec0rraft ha Unext,2]she missing ladspromised!shqB"heaQq" soon;Qwise-8*$"pA %atU "Sdecidk8g`fC"at tturn upnext town below,;|N(found, lodgede Missouri pQ"fisix miles t| nBperitIbust be`%1ed,1 hu have driv4rhome byqfall if5U1soo/  W searRbodieb!8Qfruit !ef Amere2cau; 2ingaoccurr} mid-channel, sinc Qbeing swimmers,otherwiseSBesca|r Wednesday A. Ifsuntil Sunday,3opexAbe g\!ndMfunerals&$ p"onA shuddered. g>Dsobb-j0 2go.  a mutual impuly two bereavedMA flu =/5Qeach Pb's armvQhad a|,A-o{!#cr jwparted.q was te+ far beyon`Q wontu+cRto SiMary. Sid red a biCMary<#ff 6. and prayeM so touchingly, so 62ith qmeasure1lov8OGer old tremb/Avoic  3welin tears ,B sheK&9h Rstill3A5#shZ"dsrmaking -sejacula1romB, tounrestfu and turn:Q "at* "as", !oa.| sleep. Nboy stole @;*cgradua;Aside, sha"e b-light=#andQstood4r Gher. HisIrfull ofA $e [5hisxq scroll.+ARto hi he lingRconsi"R face,arUsolutW "s x Bt; h(ark hastily iv9 !ntv k[2lipAmade#stORexit,pWabehindxAthreYhis way backmhB!no \Arge ! S2ldly on 2oatwc tenanRxceptWahAman,(xiE slept like?ven imag] CuntiGS 7 zi-<$on. 2 up. When h!pu`!a V6$abhGD, he2S quarrCacro  Qstout Awork !hiT !e , side neatlyn" ts a familiaraof wor1himYBwas &Aptur 3b, arguLRat it;1 beFAshipfore legitimate prey!qpirate, a thorough @ 1be Cfor z!enCreve8B. Soo<a qand entBoodsslwM`arest, torturin Cmean o keep aw:!an]n;Vhome-stretch far spent road dayJ"he r*DRabrea  rVA barr{JO k !unzbwell u1gilI:2eat=its splendorhe plungtream. A "he paused, dripp" treshold2cam + Joe say: "No,]true-blue, Huckqhe'll cl "ac?won't deser2zstm uZ>ğtoo proudfaat sorXI a. He'sBo2 ora55C whac[8/!e 0s is ourz^i4hey?" "Pretty nearKrnot yet_1wriIAsays:B aregO 2her+? W$\he is_2fine dramatic effect, @Aing +l.o%F. AW:o "co2fisshortly provide?2as WQys sea G!itGunted (and adorned)#Qadven*% Ba vaRA boa_ P"anp."wh p>AdoneHn 5hid)BawayAshadwQsleep 9!ss&'ready to$]>e#I AFTER dinner 4ang !ou-hunt for turtle egg+ 22nt *,poking sticks s yba soft vNe eir knees#duJ!A5. S9tAould{|igSsixty<cone ho6Qy werfectly round'ea trifle smaller`an English walnut famous fried-egg(gHCnighFanother on FridaBnq!1AftK7o%cwhoopi ua|s chased(j2anda, shedclothes ,  _tere nakePthe frolic far1 upqshoal wstiff current, wYtlatter {GC leg 1unde7^1cre qun. AndX9 !op) osplashed iY)Rfacesw palms, !7ing#Q aver-@Grto avoiQsprayQd finb g! "ug,jt0 st man du$s (9TAall WQtangl6S"egucame up b%b, sput q, laughqand gas1forth at on{ )BQ7imeh|aexhaus$1runBand  dry, hot!li ?+3covB_"up !by.!byk2terjo original performance onc/>3. FQit ocX /Hn skin re ed flesh-colored "tights"F6afairly!#qdrew a i circus--&bclownsP* b none  |"R thisRest p  `a. NexAy go %ir:+l"knucks""ring-taw "keeps"at amusement grew stanH1and a BTom Cnot ,; kEin k;@f;trousers %kiY!stfof rattlesnake his anklehq U!hecramp so lo8xhe prot+ @Bchar )di *Btime6Bboys!ti%ndwD res#waapart, dropYq"dumps, fell to3!lo1$ly"thEj Ato wlay drow1un.s u  r"BECKY" big toe;*Acrat`!9Angry5 1forD weaknessXqhe wrot!f ,!!thgcnot help i !er&itAEtookz"ouc Aempt# by driving 7a toget7!nd 3 m. But Joe's D1hadhn$Abeyo Bsurr.q $o 2Rhardly endBa miserB iIerlay ver surface.was melancholy, too"waeFhearted, bu)e~A noty 3howexa secret}^ to tell,B "this mutinous d2sio72not#asoon, Quld h$+1o b6Y@Bsaid2eatof cheerfulness: "I beY>Ebeen F 4is 1efooys. We'll( VgAThey>'ide1lasomewhY6UHow'd ight on a rotten chesto% f#--But it roused onlnt enthusiasm 2fad no reply. Tom!onz+3two!se}Aons;KAfail($ooI discouragz!k.M%sa  %" a A!lo%fgloomysid: "Oh, let's !!it up. I wango home. It'sQesometOh no, Joe''ll feel be- b{($by (T?!JuD 1inkah2?C" "u$ $4for)"(t) Bing- 2anyJS" "SQ's no.$Bseemp1it,0chow, w 2re t7! to say I sha'n't go in. I me b"shucks! Baby! Yousee your4,XAYes, I DO0#my.B--an)A, ifhyBe. Ih$2 ban(Bare.c'U"%ed.wlQ cry-I m,"we A? Po08aing--d8?t$it<?'so it shall.2alike i+Xe, don't you`sFstay|?ir"Y-e-s" !ou  . "I'll:Q spea-2you2 as- as I live.1ris\!"TQnow!"&9ved moodi [6and&#d<t!ho#1s!"hNQwants'to\,$ho1et  ed at. Ohr#3iceTand m[Ries.  V,A? Le0f#unts to. we can get0{aper'apAB< as uneasy Blarm 1seeGgo sullenly on/ sUAing.5# QmfortK Huck eying"prjO9Xso wiy5 such an om%K. Presently,v2 paxAwordwade offh"the Illinoie'AAsinkQglanc bU'3loo> `;yVYI#gog!ItfM L4  it'll be worse. J*usR"=)1canKgqAstay27+I!gosWell, g/--who's h ing you.+QCpickR scatqclothesjvtAwish4'd ol3youi`.wait for youq!weCV""3ra blameh5all!st q sorrowR awayM3Tom _Ba!6ng desire tug!at;#to ]#gotoo. He hsf stop,; sw Aslow. It suddAdawn y awas bemBverypQcT3. H2one Y-d?s comrades, yelling: "Wait! (tell you some!F#y j!ly1ped$SaCgM zh5e1ingc yK|cCat ly saw the "C"s # aN set up a war-whoop of apCk#1saiTRwas "Aid!"3qhad tol]m(,#2n't away. He made a uible excuse;O!hipIl reason "be:" fa#ev<T#DthemmA ^great length ofSs$so#men 1hol eserve as a A .B ladNCa gayly:4:9 ir sports will, cha6!im #ut:stupendous plan`Aadmi)wenius of it. Aba dainA and ,!he*ed to lear bsmoke, 5Joe caughQ ideaSBlike to trysXQpipes7!fi 2the@se noviceY1 d\Lbut cigarsPof grape-vinGQ"bit" Stongu8not manly anyway. $yo'Vir elbow1uffBrilyd!slr confid9AThe an unpleasant tastGgagg Why, it's@0as easy! If0a2e/sCall,"t + #SoI4 E. "Ic!no'hy, many aI've lookA peonm$ well I wish I!do's; but I 1%Tom. "T!aRme, h$it 1You1earK Stalk <k--have o qleave iKAif In't." "Yes--5MosUHuck.$7D too Tom; "oh,ZCR. OncW1 1e s5 ter-house. Do rememberBob Tann771 thand Johnny M1 ,Ilcf 1, 'ame say  !Ye\ !. B#ay I lost a white alley. No, 't*.z --I told[1. "472s iI bleeve4Apipe4dayMfeel sickNeither do>}]$itV1. B!be  4\ !! 7keel over wtwo draws. !le D tryB. HE'D see! !beRwould !A--I  Aa tackl2onc 3Oh,)2I!"G@s:youI any more%an!onqtle sni fetch HIM." "'Deed2oul U. Say aus now?!So ay--boys!saH !i BsomeRy're = ,W Qup toQay, 'got a pipe?aPae.' An2'll31kin%1carO like, as6rX  pIamy OLDw", (03 on'rmy toba+bCin'tood.' AndZ1Oh,'" r 's STRONG e3G= $ouhO1igh ras ca'm!Eqsee 'em-S4thagay, Tom 1ish0aas NOW5!!we \"weQerwas offQing, 27 w#y' dalong?Bnot!M4BET@ll!" Sotalk ran onV &itEflag"'grow disjointedBilen adened;erexpectol marvellously ]!^ry pore ip <boys' cheekame a spouting fountainiyj2bai the cellars   rs fast Kb to pran inund;2overflowing+M throatsqin spitx 2all*"doF = Fings"Metime. BothY1ere2ing2pal miserable, 'from his nervtfingersx!. t_ygoing furBboth pumps baiB"Mm|\)id feebld) =Wknife]hCfind Bquiv2lipb 1halutterance2'llyou. You go j`Rhunt r? !pro!No needn'tvHuck--wdS ,BgainAwait!Q hourCr%itpK'"to Dhis :yswide ap oods, both U!pa Aoth a1 0informed him2 if#ha!ny trouble agot riQ"itnot talkative atT}Snight4Rhumbl1henQ prepCdp "ft meal andBparez\ "ey[2no, 1fee,well--some+1 at )mӂisagreedQ2 A !id!aw-dand ca0{ding oppressive:#ai83see02bodiNXa huddl  !so1thet(Cndly*vionshipr4F/} 2ullj=aheat o  breathless atmospA sti<Ty sat94%Awaitholemn hush 7b. Beyo{jfire eK3swaSQup inAblac`!Hr  &aaAglow  vaguely revea^ foliage for a momTavanish4by " crc1str?#n & faint moanA siguL"th0 tranchesRforesboys felt a fleeting ,ywshudder fancy tha?S! Nd !!by/. Now a weird flash,! n?Ainto  hgrass-blade,=i and distinct %aBfeet $it[three white,/tled facoo. A deep pea "thP1rol:and tumbling "r heavenGlostw# r4Qdista$A Ƙ chilly air passed by, rustlingjyn!sn the flaky ashes broadcast !ir TfiercElm FN% stant crashD#retree-tops r'Mic:p$in terror,x%athick 6!p~q. A fewsurain-dropCl paf* .. "Quick!!W"foLtent0csprangs\Broot4amoQdark,awo plu&same direction{ blast ro trees, making &as it went. One blind yH #ndnbf deafJhFnow a drenchinv1 po@#heK hurricane droveGsheets a`c0Qround<" c#u Beach#,the roarafoj-C!s >eir voices7 ly. However, one by; O 8\ook shelterk  .Qcold, /Qstrea5 ,;o%!y =?DseryR1o b teful foK  x 1 olBl fl{Q$soW2ly,0 Wd noise1hav[A The6(esS!er:qhigher, Zthe sail to "se/1its ]4X"wiCaway- %. Iseiz0"s'1}Rfled, ye bruises, toԁ2oak`U86d-bank.b battlsTst. U}R ceas conflagrf of lightnR flamii*AkiesSbelowout in clean-cuTTless Qness:"be:the billowy ,<Bfoam$@Z0 of spume-flakIhe dim outlinSdbluffsoside, glimpUD drifting cloud-rZ1lan1veirmE "L9 some giree yielR>! fand fell younger growth;Vthe unflagg/ S-pealnow in ear-splitting explosive bursts, keeBshar8 unspeakably appa[storm culminatone matcy ceffort# qlikely *+9q to pieQburn ,! ig, blow itBand rq creatuA it,av" 2. IKra wild rfor hom#}Q. Buk}'do forces retir Aweakd h threag  peace resumed her swa  %nt>Scamp,YC! d3wed3hey`Q was Sthankp07eat"^Dthe  ir beds, was a ruinTJQblast? w uwere no3Rt whecatastropppened. |! i pz!ed9A-fir/Qwell;5 t-v-AheedSlads,3Bgene0ymade no prova +/#stHc! m pbdismay2|Q soak3t eloquent iNHtres/,%,1verY0 [aten so far up HQlog iL  dbuilt !(wW it curved upK\3 &$edn Afromground),%a-breadth or so# \V2!weB; soCpatitj-t7kashreds+qbark gaBthe 2sid#qed logs+ay coax61"toQ. TheRy pil=$5boughs ti]# r furnac<|# glad-heaV751g1y d{ , !boo"haOXD feanN ][3satJd aexpandd glorified8Q<]9ndry spot to sleep %6-B. A@6sunssteal iN2oys !si!ov"em sandbar2lay1<Ogot scorche.8drearily se(breakfas"CrustJcstiff-4mhomesick once;:%Bsignbto cherTup thp+;ɹ2C. Buc 1not %fo6, or circu .E, or"%Aremi1$ imposing &aa ray 6eer. WhioD, he`7mRa new devicaK Hqo knockcbeing aq e"be*c!nspqa changOHeattracis idea; sonzs;m^head to heel black mud, like so zebras--alB Zchiefs, of course/aEwent* `A"tt%=s settleQg!By|yn ree hostile trib(Vupon @ bambushdreadful 'kQ%hcalpedHvousands  gory day. Conse$lyan extremelisfactory one. rassembl\Dcamp-rsupper-*<|`KYj4but[ifficulty arose--!d]1notk of hospitalityR-1fir<8 ,: qsimple nAsibiI@"smv2 ofER processeLDaof. Tw davages;7wF 3hadd$ed%. oD}2 wa;with such show 6! aCSmuste# Apipe# 1tooqir whiffA tqdue for1h1gladBgone"rya0Rhad g;S e now smokeA hav Ao go^;Aget 67d be se#un02abl1not AfoolG jhigh promis, #of }practised cautbafter R dfair success y spent a jubilanAning\FeRhappiw new acquirp#would have iwnd skinning"QSix N s. We will$toqnd chatL?And bsince we=nther use >, . CHAPTER XVII BUT} hilarity ?Btowntranquil eZafternoons Harper~Aunt Polly's famiE22ereS3 pumourning QgriefXP . An unusual quiet possess= village, althoug"Rordini 8 !all consci*Ir!du ssaan abs^#ir+ nblittle*sighed ofte.Ftholidayqa burdeL !Shildr61 no) Rsportz h>gUbup. I Becky Thatch1!unqself moB2abo Q dese5 aschoolc)C yar1feevery melancholy sDund  t73to FPShe soliloquize:if I onla brass andiron-knob-!:(*Dgot ` e%to * him by." And she choked besob. 5)7sto CXo9!tchere. iRto dog  x( say that' n3 the whole wor Bhe'snow; I'll <.6A seeb.12is 3t broke )1wn,qP!ndCawayQ down9Uun quite1F!ofs Vgirls--playmates of /and Joe's-- b 1ood2!Qv1 pazfence andfNArentqhow Tom]rso-and-+d2ime"csaw hi6'6how#3andmrifle (pregnant# awful prophecyu(2eas "!)  er point>tWu2actwC"heClads" 8addNpa"and IBa-stR just so-- as I am nowOf)qwas hima Aclos e smiled,Y ?2way!th!l+"me !--R, you knowD!I wZ5Wmeant ,C/1can TL a dispute5who-Bdead.cin lif`Qclaimat dismal|qand offLevidences, more or l: 1amp!DwithVrwitnessDwhen ultimately decided who DIDrthe depl"exCwordthem, the luckR2ies Aupon1selA sor"sacred importanf z1apeand envie=che respoor chap, whono other&z"toF,)tolerably 2c pride 01'Z9# ucked me-BRat bi Rglory failure. Most s "athat cheapen&!1incWWa=4loitered zs2rec2r memori!osu2oes3wedC. W\-B hou 1UfinisFnextell begaoll, inst# r  @I1a vtill Sabbath2the ful sound %in<he musing9%TlSM#on` &rs,V5ing$ vestibulQnversCwhispers#1nt.zQthereF$no/Athe 4 ;g]6eal"of dresses +f womenZ<eir seatsZ3urbJ= T. Nonpi&er q churchd!beS full5. TXMa&Q paus expectant dumbn  CV,D#Rby SiEMary yV C ball in$2 qcongregb old ministere, roselBntileos Bseatront pew$ncommuning2., broken atvals by muffc5obsbaspread,hands abroa5prayed. A mov1ymnEsungRF tex<$q: "I amRH Qe Lif2EQervic'Dceedclergyman dmLuch picturA gra  6wayA rarZbthat e4!ou)!in9Acogn!Uthese,(!pa5!herpersist"bl1him rm always Ys?BseenRfault( Sflawsg +1relaGaa toucIqincidenm&iv`e:RqillustrN.Rweet,X3ous%s people !, how nobl_ beautifose episodespt  O rank rascalit"}.bcowhid 1 be@ \ 2and D pathetic tale1n, e"at r rcompany aand jo( !erba chor swelled upa triumphant&,6c it sh! r-s0ASawycre Pirat3#eds k-1envQjuvenkGDBconf"in%$ea&"s oudest momen_1hisq j"sold"Utroop"ey6 jsbe will;"beFBridiculouCtp UuB I" Tom go81e c )esd!cc4R's vatmoods--uhad earned YByear he hardly knew which expro85ostK,!Rto GozBaffe' BqI THAT !--RchemeoAturn'bhis brpI Qatten sa y had pa4o& mo'og, at dusk on 3, lmvesg+t6; U slep   1edg7Bthe 1ill nearly dayligh`UcreptZback lan@ TsleepE  0a chaos of invalid21nchA>f fMonday2 kSto To1tivhis want Aamou1. Id!ttI<@3say> fine jokB, toHeverybody suffe'G'most a week soAboysra good 1but01s aMjC you% Qbe sop-Aed aNrlet me ob so. I-QcouldO:U overtrl1hav| eN&Aive -=2hin9D1tha" warn't d 2but qrun off=Yesedat, Tom,";Mary; "and I believR OihAoughLCW1youR?Rg!, }#ac7iZstfully. "Say<", mJr'p?" "I--w*know. 'T?b'a' sp'NILryou lov UDmuchwith a grieved tB discomfo5Gv!me! c enough to THINKc, even+ didn't DOqNTuntie)vUany harm," pleadeBit's giddy way--he is2 inba rush%he|uinks ofrUaMore's Qpity.\. AndAcomeADONEj.1too'1'll !, 0!da 'Q late DQyou'dSd+"dfor me>Acost&2so 9 j1you V` for you5H2I'd)ADtterakDlike!I Vnow IVsrepenta1; "s dreamt@1any(I,,L much--a cj$$'s!no2. W QWhy, Wednesday night I!tZsu ! bl # b 8+ woodbox A nex Uhim."TRso we9 S 'do ByourQtake  0?8 !usfD<$Jo#'s -uhy, sheA! DiHNOh, lotsso dim, nowWtHa--can'lIRSomehAseem2ind ewind b)6.{1"Trh1der9s[2p. Come!"6  !hioo$ aforehe anxious minud then *AI've i[(.! t rr!" "Mercy on us! Go]-Tom--go on#R< 1you.1, '*door--'" "Go ON]VEJust;ctudy a . Oh, yes--rS you dkwas openeAs I'mMGQI didZn't I, MaryA[}Bthen^r I won'obertaine9Qas if4 Amade'P/cWell? -I make him do%Yb1himB--Ohyahim sh   M"land's sake! IAhear% b@my days! Dstell ME1any! i 1amswV. Sereny 4& i^an hour older.^Pther getCTHISj er rubbage 'superstition.#1t's/!!brbas dayVF Nex3 I r BBAD,NmischeevousM )"an+ responsibl3n1--Ik a colt,28 Pd$"! AgoodjgracioF you(1cryU"So& "Nof* nM)" "Then Mrs.e@2cryf "JotF3ame:C2she !ha SwhippERcreamshe'd thrit out he"CselfRsperrA1cyou! Ya#Qsying2t's1youdoing! Land ae]Gno!SiAsaidd  D" " O ! IRLBSid. did, SidMary. "Sh.d"leU"heL1TomSHI{ !h^6$off whereM$gone to,  fDbeen0sometimesTHERE, d'youd that!:92his8 QwordsG"Anhim up sharpTI lay must 'a'an angelcere WAS W xCtoldZ 1Joe>`a firecracker73Pet\ainkilleraas truPeI liveQ/!loCtalk%dr;Qe riv)1r ud%3havHCA Suna qand old MissRhuggeH4cri  "en bIt hap"!so 2surT'm a- sftracks /2n't`i.Zq 'a' se" %! \what?Ie3youq, " IwBhear`C wor2aid  !en  Pso sorryq I tookRwrote4piece of; bark, 'W}dead--we are only off 4'p %T tabl_  ;'hCyou sdA, lacasleepv8Iand leaned2lip6 D ,&I;bforgivqhm#at4she4crushing embracpt, feel lik( guiltie%villains.#wackind,  Dough~a--dream," , faudibl!up! A body doeV as he'd do if heVyA. Hea*FMilum apple  s 1was-,t--now gto school.=qto the Oc1Fat2f ui  ~2ack>'d-F1ing"Bmercy [l#t q on HimHis word, Bknow unworthy ofa 1nesR FHis *ad His hand+slp themEugh placere's fewAsmil 2e o= t{%4wHis res>long nightUDs. G2Sid >Q--tak+r)1off( 've henderClong.e children lefw old lady to call o vanquish her realism!sq marvelu(3had1Q judg_"toF_pi4"mi,"hethe house.XAthis zrthin--az\Bthatdout any mistakekWhat a hero/a, now! Henot go skipp~(%Rncingm"a dignifi!agƌXa@ who felthe public eyEm|cindeed; he triesto seem2 th2s ooaremark-he passed along?tW5Afooddrink toSmaller boysl%1flo+cels, as A to 6"enw"le$#bys the drummer1heaQ cession Ae elephant lead menagerie :own. Boys ofown size pretendVIknowaway at all'4were consu with envy,bthelesW EUgiven& i#av1swasuntanne6?his glittnotoriety3Tom !no# Ae pa1ithBr a =e3Dbaso muc}bbof JoeAdeli!9eloquent admir)݅*"eyT1two"esMAnot "inCsuff+."stuck-up."s#1tel ir adventures]5ungy#2ers9B;c@ 9ran end,aimagins}!irrfurnish material+,yorir pipewent serenely puffAroun Q Qsummi; glory wadCchedOQdecidbe independen@ ]6now. Glorysufficient. He_2liv|R. Now !heTdisti?'a, maybJ?qbe want o "make  !le!-- h  qas indi1Qnt as other people. 6 arrived. !seAawayQjoinetrroup of5%Oalk. Soo#!obed$s%3 trYQgaylyR ERforthi1fluJAfacedL Hbe busy chasing4mat?so4th a 2sheV a captur9h$icI3shea+/Cher 1vicinity&89qto cast!nsS eye =gPW1ch ~RI"i2!viFc vanit wB him)so0Awinn!im&only "set "#moE6himSdiligAavoirc at he knewKboutR gave~ qskylark`;+ved irresolutelyBQ, sig 1onc 3twi#glafurtiv45nd @QTom. 2snu71was1ing  particul0"to Amy Lawr7 Dne else. SheArp pRwnd grew1and uneasyKc=2tri1go away, but 2eet8t+2ous:1car71her"he "to a girl*as"'s%g!--)sham vivacity:Mary Austin!  A, wh&"n', #to-n?Cih!#--*Qee me"Why, no! d1? W1sit(Ix!ins' classu1go.Xw YOU!? oit's funn!n'+D you>uw2you 'QicnicU%Oh!jolly. Whol)XMy maa}5oneRcgoody;  she'll let ME com)Hieill. T#'s<!any#AbI wantQI)!ev4# nice. W7Fs itbBAQby. M r1vacBk fun! YouM r1oysAYes,tfriends to me--or3be""he:4ed Ay calked d"lo   the terr$Tstormbisland[h9P#nr PNq tree "o flinders".c";rwithin EYBfeet6lQmay I#G]rMiller.P.1And 1Sally Rogers&+usy Harper. "And Jo[Aon, g2claiof joyful"s 0 ogged for invitNs"To]1Amynturned coollyPcstill Atook# 's lips tremblAbars ca1her;Y!hi$se signsa forced gayet con cha tfJ7?!ouny 1got( !on aand hi61rand had4rher sex4"x'xGsat moodywounded pride,qll rang roused upua vindictive cast Y1gav| plaited tailsik, swhat SHE'D do arecesscontinuedBflirO jubilant self-satisfacAnd he kept )Uarto findG1lacerformance. At las AspieEsudden fa-rmercuryb#bcosilylittle bench behi/BhousT 4t a27S-booklfred Temple--and so absorbed2hey #so?Atoge Rbook, 1didby 5 ofsq+lB besides. Jealousy ran red-hveins. H1hat  2for "waqcchanceQhad o  a reconcili. He callc-r a foolhe hard names a!ofD~#cr3vexd!Am tted happily1, a'y!, 8.e!rt= Asing 3butRtongu{8!it 4He Bhear+,Aas s BwhenZexpectantly h;!onu1ammh awkward assent, (/N sFA misQd as Awise !toaBrear! ,0q and ag%#ato sea eyeball"=1ate>!clryj belp itqit maddUL q5Bough"aw;  ]Thatcher\ once suspe(`iC# lthe living. But3did59 +Ber f%/3toosas glad#Tuffer^3haded. Amy's happy pra<$inA!e.!hiac g&,o attend to; s must be doneAtimeUfleetin vain--N chirpedkT`, "Oh, hang hi%k  aget rioXher?" r those 9he said artlessly !ou" """ chool leJeShe hax3hl, t. "Any(Qboy!"p#gr3is teeth yGH1#buSaint Louis smartd20and is aristocracy! Oh, c a, I lij1youfirst dayuWqaw thisa, mistAnd I 1ick.Y just wait_ I catch you out!9%1tak  ermotionsZArash+n+r= --pumme>hI1kic&>and gouging.{you do, du0? You ho',Qthen,?learn you!" r Fthe Qflogg'as2o 15fome at noon. His L not enduByD3 of4 iAThis jHtbear noAB thea distrf'Rresum) 1 in'h bAlfredI*sy"">!no#to,Ktriumph BclouG 3she/nterest; gravi absent-mindV-s followeGthenLR; two2ree -"pr!up2ear footstep" iba fals%;i Ashe bentire({1 wisbEdn'tjit so faVsen poor Q, see!loP2notV)Ahow,E exclaiming: " aO one! look"1s!"{1pat(Oc at la99S saiddon't bo| Sme! I2carathem!"` LBearsagot up)Cwalkq2. dA dro'alongside+s-}2"buRsaid:,2awa&leave me 5e, .1! I1 Shalted, won# waZdone--forCFaid }i !snooning #hej on, crytC!mu Z?he O qwas humO egQangry!ea bguesseE Vtruth Rimplya;Gn0nXAventRspitee)I". far fromh=be lessPDBdGZ !3g~to trouble withoutS riskTAselfR's spn Cfell^ 4. HMhis opportunitZ!ly.e !onLfternoon/T?&inKr page. ,pi cwindowm R#ou5vP. She startward, now, inten28tell him;~ thankful%healed. Before s half way4, hh1sheSchang$migi 4 of Sreatm!heS@C her came scorc9R:S sham|yvz6 ge,!ondamaged i's account*"tohim forever,Ohe bargainVIX TOM 1 at:'adrearyoa_sm Qaunt R k1 sh\-Qhad b tQorrow an unprom$kmarket: "Tom, &1a n  2kind live!" "Auntie,o2aved&e?4Ryou'v ! e I-vTSerenM,ran old softy, expectingAor!o ZL :g$atn0 2hat4,!loRbehol{ s'3fouf!Jot7 2wasabtalk wt&, I don'1 $Q of a9will act  that. It makes me feel so b [-go\A andG!L l of myself never say a word." Thisa new at  %  3nes( aLH!toueCjokeBvery ingeniouse *A mear shabby !He "2heaA"no5ken71 to,#4he IBdn'tvit--butCT2Oh,i#'!k. c0your ownrishness66T Lfrom Jackson's I?2 to $urt yoo?\:ASa liem<%91n'tC to pityk* Rve usXCsorr8q!knJ8was mean,!#I J CB. I s, hones1),. Ayou &W<ibme forI"toV1you'&us™(n't got p!del!th nkfullestMi} 2wor>I7bhad asta !"atY2you ever did !it." "Inde ' 1, a%--52mayOQ stir2H!OhT Rlie--,!do[QIt on 1kesPcgs a hUFbtimes *<a; it'sH0 F. I k,1you @?X4"at)"&me2I'dLW#it Z power of sinsV72'mo}you'd run eand acted2it reasonable;n #me  %Ryou g y 22, IFgot all fulRthe idea ofa' the churchI("n'GBh2 a$Qspoil$Sotpbark back in my po 1andjA mumkW.1arkq2ark 13we'+ d 1wak8qI kissee--I doL6linS%aunt's face relax[! t.Sness %inq. "DIDqkiss meM !Ar.3 su ?did2Dq--certa|ArmRz ~Because IBcobyou laBare moa-Band "3ZBds sz Aruth.* tremor inRvoice&K9E!!bexAwithbf1 o " hTgashe raqa.!goAruin$1 ja#T c in. T0 _vher hand< erself: "No, 't dare. Poor boy, I reck(+ #ed bit's a1!leBlie,7's such aQ1romaI hopeLord--I KNOW BLord 1forr_.Qisuch goodheartd"it3"wa'#fi 1lielook." ShexCawayRttood bya|b. Twic-Dput 21takA garUand t:refrained. Once m1ven1rhis timo3forN)3Wc}:> llie--i!et%1rieR." SoG3. Aa E, J7y"flQtearsix3: "Athe Bnow,}5'|'mitted a millionl)!"X THEREAsomeAunt Polly's manner"~!BTom,; Bswep low spiriVBhim lightRhappy6. Hp&A luc YBupon O8e of Meadow Lane Dmood+determined3. W|Bc's hes$ h]; Iamighty to-day,6I'm 9 ,#2 do!4ive--pleaseB up,S you?vDgirlKRA him<dnfully( face: "b3thac. 65 TO , Mr. Thomas Sawyer.i AspeaM 2youR!to*h a!pa!onCd stunn-1 noYnkh!ce(inIrsay "WhHs, Miss S&?"j[ ?$&it%dby. So$1 no(OQin a Rrage, 03He mopedAyardf1ingObwere azBand ing how hebtrounc%if:iatly en#erd 2R a st"y remarkQ5. She hursWbreturnngry breachcomplete. It EY$to Bhot 0Rment,s#AQAwait)Q to "02in,was so im see Tom flo\injur2. I;1hadany lingl!noQbof exprAlfred %,aoffens;2lqad driv=vaway. Poor girl dOrhow faswas near. The maMr. DobbK n͢middle agean unsatisu3ambDqThe dar!ofdesires was3#be a doctorqpovertyWdecreshould be*Q highan a village q. Every he took a mystmQ book>CVk and&$1 in;{s "no6.5Breci8"R$! t& 3ookJ#lo21key#rqot an utMwas perisve a glimp[Q@Bance+T came1boy8c theor-1 Qnaturqno two 1iCalik6t way of getting5ats in Base. "as1pas!by4Ddesk% 1nea~R door t3tX)5ae lockADrecious H  glanced around;>B next instantHOs1The title-page--Professor Somebody's ANATOMY--carried no informa/mind; so s+!ga1tur s"cau!3oncaomely engravW frontis> --a human figure,qk naked !CK+dow fell Apage}3TomA ste$inAdoor&fcaught tpicture!bsnatchs"to >aR hard BSdindpeEathrustfvolumej2tur@Ce ke  out crying'1 shand vexF. ",2are1 asacan be4sneak up on a persou"wh 8y'r+." "How yH2looS$ta?" "Y$Abe a  ;wfyou're&tell on m1#ohQshall) !! 1 be whipp ICwas 3%P astampe,!fokdRBE soU i!% *2'E*. %&and you'll see! Hateful^' "!"she flungthe housd*cexplos>\:still, rather flustereC1onsBt. P+ O+  !Whi"cu&k," aCqis! Nev2xen lick! Shucks! What's a#Sing! 4ClikeS$--so thin-ski and chicken-". 4Aof c4 # Iq)t$ldV3'is lA's o@Gwaysa even a<&|tC7? Oxktask whof%3his book. Nb'll answe en he'll doUay hekoes--ask firs\An t'wOns" jiBing. Girls' facese*9yMM2bonT1'll .i  hatight - ', p1any#ou.*!coCDJ'added: "All,3"'dQto se"inQfix--!er sweat i"!")4joi0gmob of: lars outsideC[ags  !nd:ol "took in Afeel rong interests studies% #hea 1 at gc side Broom !'sX d him. ConsiL&3alltT, he 4Bpity`B$et+2all1uldo-/"HeVup no exultd!lly worth[ n  \ %Qdisco@ 6#adeHH Sfull I own matterE9a~72aft "t.64&er lethargE *"Xgood the proceeding _! 3Tom"ge(&aby denrhe spil2inkCw  >/sSG:adenialr mn4TomssupposeV A gla{Bthat%sJmergency paralyzbinvention. Good!--han inspir4! Hk"ruXbook, spring thi)"3fly5NAolutAhooke$ont" i)was lostl ,rTom onl9{ Wsted , bQ! Toorkn Sw *O  Bfacex1. Eeye sank under AgazeLv9smote even Pbnocent/Hfear>1sil%B onez count ten =kAatheV.#raH npoke: "Who  book?" nNsound. On 1havxrd a pin,1a still!continued;CAsear-4fac|  for sign uilt. "Benjamin@,!tuS?" AA. Ane  pause. "Joseph HarperD5+;I uneasinessE2and4#sethe slow tor+es TFDscant ranks of boys--c ,ed!ur3 : "Amy Lawrenc,eA shak head. "Gracie MillerQ samerYLusan! 8his)rnegativ(2waslMA was"bling fromcto fooQexcitG and a sa!op_!of/Rsitua "Rebeccazc" [Tomhf#--I!Cwhitterror] --"]R--no,4(me6b" [herA rosmappealE?XAG29lik;Da%br(3prafcis feehouted--"I:"t!}BstarperplexitH6incredible fF3Tom!"a C, toHqdismembfacultiesk wYNA for=#to-his punish"=burpris gratitudB adosCshon64himBpoorv!'st Bpay /O)1 IBed b~splendor qown actv Sb outcr7most merciless fla DMr. 2had8,badminiBalso receiSN!ce"added crueltaa comm o remain Shours0ld be dismissed-- knew who #wa k]h;his captivit3don he tedious s, either$C6bto bed, planning venge jgainst ; ;arepent5#ol4"ll^ 3for 3'jq "ry8"thV1ingHW %way, soon, to !Santer'%she fell asleep at las's latest0sdreamily inRear--, how COULDbe so nobl23XI VACATIONapproaching),nKqsevere, rjQexact1han[,i!a .!shV on "Examin" day. His rodkhis ferul8! seldom idle now--)=&st # sUpupils. Onlabigges7 young ladie}e e twenty, escaped la #' Ss wer vigorous onO!; lC he \,K6 wig, a perfectly balQshiny=#, Ronly d'B ageq T of feebleJMmuscle. }great day "ed?byranny#waEc=face; hec! H)!ur?Ie least V2comTnQnsequ Y1boy59 air dayNp8Fz)1plo1 rezy threw away noo "to'  a mischief y a$J"im\r retrib8 & rfollowe*yCful vCso s|Qmajes^| from the field bad#stBtthey co2tog_Ԝ#lag7 QdazzlaictoryBy swaign-pa."'s(BCchem3askEhelp0s v`1deldRboard Rather's f]3K$giboy ample -rto hateFTd's wifHBgo o"!sitSuntrySew da~J#1to !4fer !he O Aprep f3forQoccasAA3by 8Zty well fuddl Q boy  the domini roper condw$G on A Eveh1q"manage"Bhe n[ <9Vwaken hhurried #toB. I!fu; "im!esHc arriv0+" iewas brilli' Cdorn wreathsbfestooDfoli!xflowers! s 1ronH 2 {d platform,< Alack=#? tolerably mellow. Three rows of benches on *(!si\Rd six%1in "c m.foccupi dignitarw1own)% aparentusTg left, backh citizens,Dba spac emporary5u@"th&Blars3 !er1taktexercise ; 1of S"he"drY0"toxae statdiscomfort; gawky bigRs; snowb_ X clad in lawBmuslHKbcuousl,ir bare armsir grandmothers' ancient trinket&2 biApinkblue ribboLir hair. A>/!tas fillKnon-participa.%2. Ac"3boy!upsheepishly recia"You'd scarce expecaof my o speak in public stage," etc.--ac5ing#ai-r Vpasmodic gesturech a machine mahave u csuppos ' a trifle]aorder."he*7safely, though cruellye}3g9afine r!offHD?dp! manufactured bowqD. A u1lis$B"Mar a+Clamb]#, Qgbssion- aurtsy,yher mee,ru!wn#ShappydSawyer ӕited confid o1int)1 un hGindestruct"Give me liberty orme death" speech1furc frant4Aicult  $ia middlit. A ghastly "-fbAseiz m, his leg5ked m=  to choke. True  1nif/!ir tterly defeab a( attempt at,it died early. "The Boy StoodC" BӘa Deck"!owPAlso 3Assyrian Came Down,"!ot{eclamatory gemV"rerd,a& f^ meagre Latin class ,Qhonor prime fea41ing"in,original "compos\ 3s" a. Each-!er: !to<qedge ofr 1cle.1roal anuscript (tis dainty)F"eqCreadQlabor t to "expreDpunc!1the.r had been illuJ;on similar  Sb befor^, doubtlessir ancestoremale line F nCrusades. "F[Ahip"wone; "MbOther Days"; "ReligioHistory"; "Dream Land";qdvantagv  Culture"; "Form Political Government Comp and Contrasted"; "MelancholrFilial LovVrHeart L#sp A prevalentY!se\ca nurspetted m|B; an>asteful and opue1gusf"language"; <qtendenc dlug inRears 6 ularly prizedphrases until+ Fwornx%3outr peculiRthat ZX CmarkBmarrlahe inveterata r sermonwits crippled tail  Ae eneach andby one E m. No matter wCssubjectG Rbe, aA-rac 7$ & quirm it into some as "r AFa" rQus mi} !ul*templateAaedificG glaring insincerid"_not suffi o1assYabanish  fashion'Lit iT to-day; it never will bex,orld stands, perhaps. #]5ll our l$2herD1 do$feel obligwAclos.!iru1ithkBrmon|/aill fi >#MfrivolouT  Dgirl1dongest9XQrelenhly pious. Butis. Homely truth is unpalatable. Let u2oK"!."QXfirstNas read9one enti#1"Is (n, Life?" Pgreader can endur_'bxtractNit: "I5common wal S life(ful emot!do/ERthful9ly"1warvsome an qed scen 2fesc! Imag is busy sketchingt-tinted3Prjoy. Inû voluptuous votary}TEsees`(1amiA3 ei ng, 'the observe4allrs.' Her gracRarray7snowy robes, is whir! f"uga1maz3joyous dance;E eye is b !es rY 3 is#st gay assembly.-BdeliIf"#quickly glides by, welcome hourRs for1ntrBintoe Elysia cld, of bshe ha2 g\w fairy-li eF !ry appear kher encharvision! 3newjis more charm}aBlastfas1nds{Aenea@ais goo߁xterior,#is vanitflattery3onc 1souqw graterharshly1ar;ball-roomCqlost it4sF%Rhealttaimbitt= Qheart1she bs away1Fnvicaearthl8s cannot satisf U1ing1theHJq!" AndV#or3so D!rea buzz of g/1to 3durB $, Qwhisp4ejaf"How sweet!" 5qeloquenSo true!l had closed jc ly affli e\enthusiastic n arose a slim,X8r, whoseK07' "C" paU42comMTpillssigestioX>`a "poem." Two stanza&"it=!do+ "A MISSOURI MAIDEN'S FAREWELL TO ALABAMA-qlabama,%-bye! I love1! qBut yetLzCdo I:+1thec/1Sad1, sQought(!myR~bt doth And bqrecollesng my brhRFor IAwandH|!th[wSoods;Have roamN a;Tallapoosa's stream53blisten, *ssee's warhfloodswooed on CTide Aurora's beamA "YeM8Ame I to bear an o'er-full4`Nor blush4urnmy tearful eyeB'Tisno strange% RI nowa+pm2(to0s left I yield; Qighs.[W|sand hom2min  is StateW1TvalesL"--F!spq?fade fas (1col ag3eyex 9eoen, dear ! BturnQISee!" c Bwere4few$ho $at "tete" meKl"bu "po S very|ractory, theless. Next/ed a dark-UBxionEIfack-ey Qhaire qng ladyQ paus2 im'vwJa, assu tragic ex$n Q " m~ d, solemn tone:A VISIONN2Darbtempes 2was5 2. Aq on highA+2ingr quivered; butAdeep0"na T heavy thund "coE-qly vibr 1ar;s]rerrific n .gry mood-de cloudy chamberheaven, seebo scorQpowerXted over itsAor b,allustrFranklin! EvqisterouYwinds unanimaM"th mystic /Qblust?3as if to enhanceBir a Q wild!#. . "At5 a$A, so Rrearyv human "mymspirit sigh@eQbereof,k1'Mye#iend, my counsellorand guide--My jop Qgrief,second blis[in joy,'RQto my1. S#ve^9o. Z 3ose p!s !d Qe sun9lks of fancy's Edekromantic , a queen of beauty un#qsave by !ow_ctransc xAlovevPsGAsoft 1, iqQfaile2mak a sound,"bu1mag0thrill impartedgenial touch, ather unobtrui< Bhave away un-perceived--unse4. A1 sau res4herf1s, "ic5s e robe of December,21poi 0nd]Aelemtcwithoub0Tg5two"bresentV3Thi;(ma)1tenB}h1oundwith a 5so v all hope to non-PresbyterianN  #!okApriz%1osi~ Gwas /Qto be sfinest >81.cTmayorvillage, in deliveJ  rhe auth6 it, made a warm speech i Bhe sQby faT"b "" !heE  that Daniel Webster well be prouit. It may be rel2ng,xthe numbes in whiz4aword "4Qeous"over-fondlegxrience referras "life'sS,E$upeusual aver`1Now}m,"1 alA ver3k1putchair aside, !ed9 !udldraw a map of America #A, toa"ci geographyoupon. But he 9sad busi] !thu|&y 8SQa smod titter S!ov*=!e '/ nB wasDset =Ato r !it:sponged out2Qs and=dbm" he only dted themQE!evn E&ApronGMd$)$hi'>J his worky(if@PBnot uput dowQmirthBfelt"al B wer #en him; he i| was succeedingFyt;\5uit even6ly increased.Q igarret above, pieta scuttle 1his|,@$is- came a cat,nended a$ q haunch a string;1had&!g V 4PEjaws=qrom mewDslowly de#Q curvwAward-Aclaw,swung down-qintangi!!irRxKahigher2 --the cawb six i"absorbed teacher's head--down, "$owshe grabbu2wigNher despEclaws, cluS4iw1nat7u ", " i} Yr trophy7" ibposses 1And0Qthe ldid blaze abroadx's bald pate--fo 3, boy had GILDED it! That broke upEmeet3boyavenged. Vacn  3com NOTE:--The'+"a" quotaS tpter are taken%out alteriBfrom avolumeqtled "P7and Poetry, Western Lady"--yj1exa%0݇Qecise  *agirl pQhenceEAmuch9 Aappi"anYcere imUs be. CHAPTER XXII TOM joew order of CadetTemperance, r attracN  1howw@ "regalia." H3misRbstai^Q smok9!ch,Aprof as longSArema1a m OQ he fn thing--nam&a1 noBdo a+" iZasurestO  3 body wanA!goVQvery Pv$b soon W!rm] q# aQc to drc)q swear;Rgrew %so:!nor jL bof a c6to display i8red sash kept himwithdrawing from . Fourth of JulT61;Qon gaat up --iC"A2worrshackle7 1y-ehours--and fix0Bhope? old Judge Frazer, justic)Beacewas appares'"bei/ Ta big*funeral,  o9an official. Du( ree days[;Bdeep+rcerned 62the' d Qungry1newit. Sometimese: "ra$--#heRventuj1get Chis practiseO.R-glasrmost discourag yJbluctuabAt las'as ~Amend then convaltQwas disgust9'qnd felt !ns&injury, too !haQsigna,tat onceq"at#Bsuffc relapBdiedrresolve kP! trust a mand@T+Cpara a style calculated to killClate^Benvy$1fre[m@!reAsome!a La swears Ors surpr 1dids7Qsimpl| hga, tookBaway Charm  GDqly wondQto fiIacoveted vGwas beginning -4&ng Cheav}M ands. He attempt$BiaryPLed dso he abandonedT?!rsanegro minstrell!s cto tow aa sensand Joe Harper+-up a band of e-r were happm1twonGloriousbwas in a failureWAit rFT&, encx ! i!seI-e&t! aeatestBAin tabrld (aT!/ed), Mr. Bento actual Uniteds Senator, prov overwhelYQdisapXBment Gwenty-five feoqgh, nor +Q anyw;neighborhoosrA circu qboys pl"J @#  in tentsof rag carpetAadmi ,@2pinOB;two for girls#ens. A phrenologisa mesmerizerI3wen1lef H8_Udrear "evf>=BwereUeCAand-'(1es,jDthey,A fews6so $(Bonly2 the aching voids between acae hard= Thatcher1gon}bher Co_ ainopleat!Bher ks } bm1sidaElifeP.dreadful secre*athe mu  chronic miseryєaR canc^ q permanX* 2aingnmeasles. wo long weekl Mprisoner, dea}1andw"Aings1wasQ ill,;O !no3. W2cgot up aU3andafeebly{-$"!achange3com./$"nd2 cr.rb* "revival/0 had "got *1n,"{Bdult"thyLbbhopingsst hope!1e s$ of one blesOQinful"- A cro(Ahim Qwhere9Qstudy Testament4Rsadly9- "deng spectacl_  Ben RogersKvhim visi6 #ooca baskBractE!huup Jim Hollis B calLs]KK{2ous0ing of hisA 2 as DningSboy he encounti!ad2nother tfV Aon; 1hend ion, he flew for refuge a) F bosom of Huckleberry Fin! bwas re+Scriptural quotjirw_ re crept!an!be"2lizat he alXA allw!st4and .%Bnv=&st:Adrivain, awful clap ]/blinding she81cov!the bedclothe"ai! a horrosuspensehis doom; not the shadow of a doub  is hubbub was 1himrSdQtlm!thtgbearanowers aboveMQextremitp Bendu2h.i the result have seeme1him!st[ApompiRammunp Ca bu3a b(of artille+;b incongruou' E3 up+n'2 asrto knoc+ Bturf! insect likeB. Bbtempest spent itPcand diQout accomplis9its objectc boy's bimpulsgratefulreform. His +EwaitC"re>bbe anyDsK"dadoctors were back;w4hadd 3 heU!baO!is2!%an})ge . ehardly4D1spa#"reing how loneWQstate companionlesAforl@oPdrifted listless Btree+p41 acuqas judg a juvenile courr1cat her victim, a bird and Huckup an alley e@ a stolen melon. Poor lads! they--tTom--ha7E SI ATkhe sleepy atmospStirrevigorously:3e trial4k!betAsorbWtopic ofe talk immediately xyBaway$itArefeQO ; sent a shudd his heartroubled consc i[5LQpersu2himBthes#rkr!pu tqas "feelers";1seen-Rld beaqof knowz n -  Fnot be comforc2ae mids, agossip1kep(rshiver e"Hu##a 1pla+!a Sm. Itb QreliedbunsealAonguwhile; to divide)iburden[l87r. MoreoqBhe w/to assur-m discreet. "Huck,1you" told anybodh--that?" "'Bout wYou know." "Oh--'course IZ"n'Never a wordLAsoli2Qword,|Qelp mat makes you ask:qWell, I\ aafeardbVWhy, ?B, wen't be aliv$1dayQ #go out. YOUt2TomWmore A. AfnQ pausnQ5n'tL1get!to\,"Q they"Ge[!? !if half-breed deviLzF me z) gO$y ain't no diMn>Uthat's all(!&n.twe're safe %   we keep mum. But let's swi-1gai1ywa'!Qsurer}I'm agreeS# ry swore? , solemniti"%S talk,yQ? I'vBrd al " "Talk? Pit's just Muff Potter, $the timepReps mg!t,tant, so'sd7A'ersT{"ju9+Q samebgo on p reckon he's a goner. Don'gfeel sorhBhim,AimesqMost always-- *raccount thfA don %ur. Just fis 4 B, toSoney drunk onfSloafsFiderable; l-!we2do |MBwaysu&of us--pr s <+Blike@!ki?PE--heBahalf aB, onre Krn't enough4 2two"lo eEQby me?sqof luck!meBkite"me,knitted hooks%o my line. I wish w"geot$u" "My!&"n')W. And besides, 'tn't do any=;'d ketch{ AgaincYes--s>aI hate;ear 'em abus2 so the dickens6"he/fI do tooL)I[2say&toodiest i ip n !!an ver hung befoO1Yes=y+%7~Qif heK)1frery'd lyn^A'"it'" The boys]"aQtalk,Csit broum1. A# twilight drew #ey themselves ha6 * leAisol80Ejailz=an undefinp8d; z-m!clow;!irAicul+T But =eno angels or fairies i! tYss captiveAboys#\!ey~Qoften%!-- AcellYring andk qtobaccobmatche-;n gBfloo% rno guar"isl2tud /Qgifts Q smott!irL "s --it cut deep,lx@ 2cowASand t!ou2the Sdegreaid: "You've beenQy goo1me,--better'nw 1elsthis town1I d+forget it,Q. Oft1sayrmyself,I, 'I us\AmendMCoys'.Bings:Ashowfishin' place01befD4Bat I1 2nowjcve allaB oldthe's in92TomIQHuck b--THEYP)" '5-!them.' Well, "eBwful$"--and crazy  #--w athe on*1y I!un2 itnow I go:Qswingxiit's right. RighABEST, b--hope  we won't4at.! make YOUl dbad; yCed mh<say, is,p2YOUG !--m 3youSStandR er furder west--soSit; it'smBAee fw"lya&C5 Aa muP Rtf1non$ ae heregyourn. Gooda w"--"ly. Git up on Hother's backYl touch 'em. = Qit. S}`qhands--}1'lln1 th-Abars mine's too big. LittlBweak--buyQ 3lpel ^ 2shelp hi*.iy"."!home mis CnBream#full of se next day{e fter, he rt-room, dra@. irresist`,(1in,tforcing( to stayF| 1hav (1qy studi~a avoidpL"ch4FKTkelet !atdD Now,7#A us t** b--telleown waEskipp,h+sbegan--}AinglRfirst"as"rmtQubjec f  easily;ln! sdceased buP own voice;&ixAhim;qed lipsbEBhung!higads, ta]\no note of"d, rapt1ghaCR!on 1ale#q straina pent emoq q climax 5boyJ "!asdoctor fetcheETboard+"ag fell,@Cjump-P?1andCrash! Quick$Cighte}%Cspra|aa, torem1alloAsers gone! CHAPTER XXIV TOM1a gring hero onc>e>%pe2old-Aenvyhbng. HiR eveninto immortal prin;* paper magnyhat believe be Presid Byet,  * . As usualfickle, unreask9s % to its bosomBfond3 Alavi@XRas itb} !&Bsort of conducO&o"'s"t;fIp'#noJto find faulQh it.!'sv: of splendor and exul2 J2hiss were s?.  infeste=s Ddoomz deye. H!y aUcould', 1boy"tir abroadafall. Poor HuckiH 1samI"wrrand terror "ad*p7!ho!or* Awyer Qgreat V 6and4sor01hara y Jumight ldnotwithsta_A's f!sa!im+QZyq N.#4afellowDhe attornepromise secrecyqwhat of? Since }Sharasy![2 Bdrivp%c c'&Rse bywaad2lip ^been sealnsdismaler;most formidab=aoaths,a's conchuman race`well-nigh obliteratcXDaily2'"1madA gla\0Rpoken%!Vly he wish%1up " c. Hal"imZS nT 3be dVa othercY@ >+ He felt sure heMbdraw a+again until1man92dea,y@ Rewardselvcountryrscoured"no2 Jofound. Oose omniscind awe-inspi^marvels, a detective,1"upoSt. Louis, mo"ar@S$shhead, looksort of astouQ succ  3sZb craft!lyu=!ev1at ' say, he " a clew."n you can't hang a "clew" for#soZoEgot ]qnd gone8. s-63ure3was,. R slowdrifted obleft b Cit a"ly qened we"of apprehenV THERE comesVqrightly{1tru+26_)has a rag1sirrgo someqand digRV}1sur3is 9suddenlyU3one{e sallied+R Joe ~Bfailed of8. Next h<;!a %gwTtumbl@FI2FinRed-Handed." qanswer.m3 private-#op$e matter to >{kbtially`*Awill>  o take a hanwy enterpri RferedBtainnd required no capital a&u superabundanc)Rtime r rmoney. 'll we dig?" sair. "Oh,5.Uq." "Wh%D i[ e?" "No, inde  /a. It's-"in=y bicular5 --/ on islands,Atime@ rotten chests!envaa limbSn old@Bree,0c;falls at 1 mo aQfloor) ba'nted0Who hides iWhy, robbers, K urse--who'0? Sunday-school sup'rintendentsXIknow. If 'twas mine I Cide it; I'd9!nd1 a _&1o;1 I.l"do!XUf and leave it "ADon'y0Cy moA!No y)k,w$B#qy generUQforgeT 0q, or elJey die. Anyway, it  t 1a l "im gets rusty;!by- !bycbody finds<yx  Xtells howAthe 2--a  o be ciphCovera week because it'stBsign hy'roglyphicjaHyro--H"--picture>qthings,]Qknow,1seeTmean u1Hav1d got o"emas, Tom|!No0Well then,: Afind #61wan^ esbury itas or on a"ea t0Eat'sAsticTout. *!'v ed Jackson's I}iwe can tQagain/R timeSy' -1 up Still-House branch,=qlots of-StreesnAload1'emI#ll Htalk! NoTA81ichJ1forG _1'emI1Tom/6#llll summerf 2? SI#a brass po-a hundred dollar,"llAgray2 fudi'monds. HowaHuck's eyes gX1!bubPlenty4qme. Jus R gimmM Iand &noT" "AT8~QI betI:k!foff onDb Some 'Qth tw3Rapiec"#reWaany, hn2's <six bits oHvaNo! Is1 soCert'nly--anybody'llyou so. Hever seen on5E!No7I!nOh, kingsA sla|$S_"no5$I reckon@i!if3wasto Europ!'d.Qa rafr'em hopGr b" "Do1hopBHop?_-u grannylN2say>1did CShucks, IJ1ean'd SEE 'em--not V Yto hop for?--but IRQ 2seeV3scal &, 28$ aBLike!ol]pbacked Richar* 2? W_2his,Q nameRHe di'ny"1. K!but a givenIN!Bu.yiy like it-R 54D,Xa niggeroRsay--t Eyou  1irsn< S'pose we tacklj ) hill t'8side ofjrI'm agreea<got a crippled pickea shovel1setwir three-TtrampV*"hoCrpantingE]/7T downH2shaa neighbo!elq#- smoke. "ISthis, Tom. "So do I 2SayP$weCtreaF#re 1do 0your sha ZBI'll3pie5MU 3oda2day1Rgo toV&fSlong.0aQa gayrnbsn S sa"tod h AlivebM1!byy#OhP |any use. PapY CcomemFo thish-ybwQR2 daR\5as clawiIurry up,ZIjhe'd clea3out pretty quick.tn$buy a new drumua sure-'Whearts jum8ao hear[strike upoFyb"$#ed3dis <+Aa str a chunk. AtDE5Tomv -rxrbut we CAN'T b&. We spottv)AshadX2bo a doI$tF1the6re';"tthat?".wpAguesoyH Menough i1too5> or too earlAHuck 7ped .tat's it9Ahe. !'sDveryLLFaone upBcan'| 2thea1sidL$is` ',8C%Y#ofy%> ;2 a-fluttY&Zbafeel aP$'s!mNZ;'AfearTCturn)%uz'V front a-<Qa cha I been creeXAll o1ever since I DBI've=smuch soAHuck6y mN put in a de&# why bury. e, to lookGLordy!" "Yey3 7If !toRPpeople. A h1s b!toDintoQ'em, "L" "r2stiRMup, eitherjf2onet! 2.Akull !ay" DCTom!2wfu"it "is^U3a b,QSay, <lp~ d"trARs els?%,  $weY 5bconsid|/;dJ:The%. G  4s.c 're a dern sight worse'n  D lVN,lyocome slid rshroud,nUnoticApeep shoulder3f a:%!1griqir teet"Ra does. I Bn't qsuch a NPa--nobody 1Kt2but, dUtraveU 1 heu_! 1But <{#goCYthat fA norg 4v emostly M J#go5 Qa manaen mur, anyway | E"erODseen5 # except b--justLBblue'Rs sli& q window regular Gsl![Xflick5acan beu4h!cl~Qehind Irs to reason. Be1any2butAs us<pEDcomebP`f, so wl!us3our?7a<W$ df^#I it's tak@A y(qstartedffhy) TAmidd- oonlit valley bel[em stoodR""M&!, 4ly Ra, its S=s*ago, rank weeds she very doorstep chimney crQ)qto ruinq  -sashes vacant, a corneraroof c/!in1 boz*, half expectAo se. flit pas%Qindow n1ing 14 as befitte8 b:m y struck far of\Rthe rO Qe haua wide berth A*qway hom. r,Boods6 earward si_j Hill.4VI ABOUT noo$ 2 daNgG4tre=Ahad ffN"ir$Q. Tom impatien#go ;( Qwas mAablyc $alC%ly Lookyhere1 dowday it isbmentally ran%$V3eekhen quickly liftedG# a2led 3m--WI0once though,iE\un kKrR it pE conto m` a Fridap   can't be too careful8 A 'a'  1an scrape, :ing2Won a z MIGHT! Better say we WOULD!"'slucky days= $"ny BknowbP1YOUf2the:f 1it ;AHuckRn1said I was, did I? AndT all,.O_d a rotten bad3msdreampt1rat"No! Sure sign ofB F"ey{s'NotCgood% WL d*1ign  G,-2. A-_Udo is  by shark Zi Cdroph}5to-{ wplay. DuRobin Hg Who'sqWhy, he greatest m"evrEngland:the best. HGca robb Cracky, I wisht. Who did he robOnly sheriffs bbishop Crich2 RkingsR=9Q But naver bolloved 'em1divQ!upx 'em perfectly squa-h2'a'r Sa bri I 3youW[!Oh9qhe noblaaOT"R was.!men now, I can1youN R lick-can in ,a one he4iedD Ahim;NhEAtake!yew bow and plug a ten-cent piece"c, a mia3s a YEW bowIM /t7w, of cours.d if he hi| Bdime`Aedgepould set aand cr(2d cOB'll play!--nobby fun.AlearQF m% t\dfternoon, nowmy1casQ aa year=2eye#up qnd passs remark .1orr+prospect9Iibere. A5suna sink sey tookEway 5 aathwar| cshadowN6e,soon were buriAITsight8H(- Y On Saturday, shortlyV^  R bHnT4hadd&Ua chaCshaddEGir last hole*;]great hopeaGmere<oIqcases wz "pet#ad )(upafter getting down~qx inchep Y-O an some d1! aqand turZJt a single th{bshovel' Afail !isO a, howesDc+ BwentTfeeling jvshad notEds fortunehad fulfillep requirements <%of<71-hu(6. Rreach T 1{ so weirPv grislyBsile at reign^Rthe bAsun,{ bSdepre$Cbelines!dem"io he place[(3fra,# aHM Qventu7 ty creptD#do?!mbp_VT aw a weed-grown, floorless room, unplastx;aan anc CfireVs, a ruinous staircaser#er%ud hung E#nd abandoned cobwebsn#tl73ed,MC ened puls,s, ears ale\BcatcYDXRsoundAmuscAenseQready instant retreat. In a+Nfamiliarity modTReir f Qy gavm,Qtical#iYsted examinC, rather admi+[bown boƑ Qwonde"at it, too. Nexk1up-+isMqlike cu]!goqdaring ; =! abe but I&!--L,=Sto a 02and scent. Up\NBame 53qcay. InpJoC a@d mystery"qa fraud1 inCr courag4xwAH4n hM Lo go down and begin#1hen}BSh!" CTom. is it?" Huck, blanchingrG!..re!... HearDa "Yes:#y!(!run!" "Keep1! D you budge! 're coming p! tcr 1doo #stC./Rfloorto knot-hole!th bushy white whiskers; long hair flowed from u!hiRbrero dGe green gogglesec7'Cn, " Xa low voice; @#sa gr$Q, facAback{sthe wal12the=er continued ^ s. His mann\less guarF{0words more distincFLproceeded: Q, "I'!it oB 5andi,& dangerouDR!" grTthe "e dumb"A--to#svast su?boys. "Milksop+2his~ 2gasQquakeEwas O!'s +<!swag we'veAleftr--leave it( &'v !'B. No2!o i.f!wet south. SixfCmDfift5Qver'sDto carry%eWell--#r EKG m No--but I'd say(j2 us#doe9:Alook; it may5(" bTI,6!e  J!! ; accidentsi !B; 'tY$inu2ver9;i6f%l[+qh+qit deepDGood idea !thrRqwho walv Qcrossroom, knelt#, gv"qhearth-/atook o9A1bag Q jing?qleasantLe subtracW9Qrom i0nڼcthirty#Dcs for G"as+6for8e latter, #s <,(Q8owie-knifeUforgo<,bmiserig$an@. With gloaq ,A mov7q. Luck!f splendor of Qs bey%sll imag+!qETmoney/Ato mcalf a dozen rich! H sd1theaiest a !esrNDabother uncertainty as to w44to }2y nudged each ;--eloquent)r easilyRstood simply meant--"Oh,you glad NOW we'rbB!" mVTknife%Uupon . "Hello!" C he.?2sai4Calf-e"plank--no, it'sy!x,4Rlieve1--b`!w 2see<Kfor. Never mind, qbroke a3 [2hisWbin and i p3ManDU  rhandful8$ingold. Thejb abovebas excW cmselveY!as delighted.NwRquick4Bv$ban oldM24over amongst >#)5sid"a--I sa5#a 74agohaX|iaBoys'5andn X1the$b, look5ly, shookUA mut4 toM3  5use5Abox aoon un$edXA not *R larg!#wad2bou:Bbeen+dstrong5the slow>s+Qinjur c|5the" ain bliss3. "PardrthousanL Shere,p. "'Twas alwaysX Murrel's gangCQbe aruone summer,".stranger observ53; "vs looksPHI2 sa* sNow you $neRjob." Ʉfrowned. Se: "You# me. Leasx&k"lla A. 'T@ robbery alv\ REVENGE!"a wicked R flameBhis GR"I'llyour helpRBWhen finishednn Texas. Go homH<NT#anK3kidM1b %0$Sell--Bqsay so;ew  w dthis-- k Yes. [Ravishing overhead.] NO!- e great Sachem, no! [Prof[distress;1I'd---at least4 \Smean =but Tom, si%1nlyhad testifiSVery,mPDfortBAalond! Compan!be a palpCimpr5, h . CHAPTER XXVIId adventur4"ayily torme RTom's5s . Four times hE!s !atSFnd f6ait was:rhingnes5igers as  !hi wakeful4bEfAt bae hard realit'Fhis 1. AClay |AmornO(1ecaincidentsJND, he noticed%~dseemedL4ly Hand far away--someD ;3had#tworld, MfAlong " b3 :n i5him u itselfa$3onetrong argumentW Bavorj is idea--namely,sc quantDcoin2fAoo vkAreal Qhad nTseen !as in one massShe wa1all "ag"st in life,&Aimag= call re\Os7!s""  " were mere fanciful formCaspeech Zno such sumP qlly exiEpposed forf w"so= a sum as a 6z be found in actualy one's Ԁ" Ianotion treasurbeen analyze.yxy=Ansis 'a areal dgand a bushel of vague,id, ungras{`A. BR^K"en Ssharp!clearer (Vattri !inTAthem?h so he"`1himk1leae(impressi6q#no2a dream, a )isQsweptg:~ snatch a hurried breakfast!go2fin.ik e gunwalB a flatboat, listlessly dang+2t !ee3"atbs2ingamelancholy. TomC&2letslead up@1 su e did not do its1be 2q `o!xEGelloylf." Silence ab-om, if we'd 'a'Y 4lam' a"Vtree,0!go D. Oh$! 1fulF $,Somehow I most'x. Dog'd if I ." "What!K%Oh6ing ).U"en"QDream! Iymss hadn' down you8)1how  Q!xhf%Deams|2allpL#--()[tch-eyedZ 1sh l4 gom*!thR 'em--rot himm1No,_a. FIND! T /1Tom#llXhim. A fellerq ~3one Q for a pile-- a2's lost. I'd feel1ry shakysee him, anyw+qso'd I;2I'd,2 2z#'Aut--&s < 1--y95N'Bthat2&7/!ouAit. !dofreckonB"oQtoo d62Say--maybe inRs$'"Goody!... No, rRain'tfv5, is one-hort!wn3 y=#noq,@so. LemmkKS Here r room-- QavernQ know;Qtrick s3two?s. We cansout qui You stay hereU,zI come." DAoff c1caracHuck's~rbpublic#s"as G!an hour& EbestNo. 2 had# a young lawyutill so-. In the l&astentaa housek! 2#a 5 -keeper'sr2son  kept lock$)ll3tim82he 4sawq go int W!or}(A exct;Ymny particular reason> x1gs;Er Come ' BsityD8bfeeble98wVe6r by ent"Ding % ae ideaC"roG "ha'nted"e  r a  !re[) BwhatOYD'Kvery No. 2"$af&/Qit isE$. ?C youqQto doNE_(ngE2tell yous$do "at" icomes out J1los )ey e!a3?Qtrap Jbrick stor"`qet holdmdoor-keys1nip-of auntie'=,Bdark'"goS ry 'em. And mi,n, because he E#!to/|2tow 4spy 3)N#a "to 6youjyou just fGQ him;_Rif he 2 go >"1laca"LordyI !fovhim by myself+hsit'll b%", ov"He\Dn't B youRdid, b4he'A any' "ifU8n. 3o-- 1YouE<cBdark!. 3'a' out he coul f< #ber,&DOCs so{1; IP, by jingoesw"'re TALKING! Don'7|bweakenaI won' sI THAT#1TomQILy hung a e neighborhooo{nine, one watch52he PAat a ="K1thePdoor. NoF"orN Rit; n%aresembp2the 5ard=3te#Th promise]`fair one; sowent home`rat if adWAegre,Adark1cami AcomeT"maowupon he would slipthe keysE aclear,XmAclos2s(Tretiryan empty sugar hogs0welve. Tuesdac/&amE. Also Wedn/Thursday bbetter8"in$.sf0aunt's old tin lant 6 Qtoweldrlindfol 1ithh? <1 inp-'s began. A WB mid#v!upB2its1s ( !s 'd"s)!pu)*%02had Eseen+Dhad / }b. EverrV,3iou"Bblac5of SreignA peruQstill#waVbruptedby occasional/)#ofAt th<ggs1liti n~,=tl: Bowelx&wo2rs D A glokw>y.stood sentryrTom fel3wayZTjz  !of8ing anxiety$weighed iga(a mountainh$%sh?ra flashH$ C--it.f"en!buZO6ell- alive yet. I4s1Tomdisappeared. Surely"us Ded; &A was7`+!rtQaburst #D'Band ,G'1 In4auneasi L rdrawing-DrK a; fear rdreadful ] $/1ari1pecm0some catastroph 2Atake 1792not&to,]$heUable to inhale it(imbleful- TK$ar Athe beating. S1Tn"ofh%tEby him: "Run!"he; "runAyourt!" He needn',Q repe drit; onc ;#mairty or forty miles,RrepetCwas -3. Tj!tor  "J1sheʁerted sl#1er- e lower en/the villagxa By goin its shelter]Sstorm xrain poubwn. AsxJ] 0AHuckwas awful! I t3twob keys, aas sofI R; butsto make of racket=rdly get myRso scBT1bn't tuVck, either. Well,?!ou.Ticingkboing, I tookcthe kn!A ope@e !H&E@R! I h1in,!sh5fP, GREAT CAESAR'S GHOST What!--whatQ'seo1steFonto's hand!" "NoAYes!A#Ras ly s%asleep oARfloor4?Aold 5"ey his arms sprea[d1did Tdo? D0Bke u91 budged. Drunk, 2. IjUgrabbBAowel F+usIX'a' thoughS33tIx. My aunmby sick3alost iM A"Say,1box!diw@o_00.-}44 /8 .:ea bott|Sdtin cu 6 by(!; I saw two barrelslots moreUs S.u2now'!Fmatt'3at R roomTr!it mG o1ALLaTemperTYs have got aeC, hepd[3Who8u? But sAnow'Rightyt 1timg&ifqb's dru""Ithat! YouiQshuddIEno--"nom5And-B not3. O1  alongsidf, :u'< three, h  -&@oaTp*for reflectioZ+ S:38oky82les#tr 1 an#e}wwcR Joe'5'reQscaryhw eSnight# bp"su2 go  "orbwe'll Gbox quicker'n nJV<the wholBlongj%ido it 1too3you"<Ather4$"A= bill. A.v!to{"tr0Hooper Street a block EmaowWRthrow:bgravel=e0 3bfetch 1T"Agre01goo'Awhea*B"Now,  T's ov*bgo hom2gin" , %Qcoupl" +2"go61will youe!I TJ]t5#Ryear! Ev "damF&st2allIawooo[nǑ' hayloftZTlets nqso does pap's nigger man, Uncle JKA toteex  B wheahe wan`" t}JA any I ask him QzQves mGiBsomeBto eWhe can spare  !ik\r, becuzP'[" aL Bwas 3;him. SometimeQset rdeat WITH/1But  A body'sv!thwhen he' sr: 1n'tBas a steadyd-wXK,q"le.?A com hAS's up2'!, Cskip, @*."*IX THE firsR1earQ4QFridan glad piecnews --Judge ThG's familyL*7- before. Both 9o &Bsunksecondary import, and Beckyv the chiefCboy'="esSsaw h%tad an exhausi&1pla "hi-spy"c"gullyu!" $da crow2ir S-mate1day^scomplet[DRcrownsa peculi9satisfactory way:!ea[Aer mK to appointnext day foUlong-z1and\-delayed picnicfshe consentechild'>boundless;,Xore moderat.R invi*slAsent^s sunsettraightwayA AfolkLn4Ra fevapreparu(bpleasu6qanticip6's q enable90" ap dntil aQlate houh%%:vt!ofd1ingO4's s!an(ahaving to astonish1nickers with,2; b\3was$"oiNo signal c'vC. Mqcame, eBallyby ten or eleven o'cQ giddq rollic!c;/!ga  4_s -ro.UQustomelderly peop2 ma#;p$*!ce2ren@sed safe R unde9AwingAa feh"1dieeAe# gentlemeqtwenty-  sreabout1oldqm ferryboatQchart;t7! g<.flJ9r main sg Cladeprovision-baskets. Sid1andato mis/ fun; Mary remain!hovBtainT9nTMrs. 6 "tob, was:d7?oBback lIaPerhap H Astay   eRgirlslive neah"-lQ,c !y aSusy H,q, mamma+AVeryO. And mind !bey%yourself3bmR9T." P,"trQalong` 1: "Say-- 2you8 ntQ'Stead 3Joe2's *SclimbE!up AhillDstop` Widow Douglas'. She'll ice-cream! SsoJ"os Ai!--|+Aload8"it4sH#be t&!usg"Oh[ K/2un!?=nC%ed3But2illA say How'll shH6Rknow?^Q girl!edidea over a1r reluctantly(it's wrongK3--"shucks! Youg ! k REo!'sQharm?_sN1nts[!hao '"Bsafe4I b 1'a'" 6if IAwoulT splendid hos"itaa tempP 2baiand Tom's persuas02car+S q. So it>u Qay no? anybody?t 's programme. i1 itv(!rrJM)^7+''XAgiveZ ;took a deaV%s!ofAs. S"het&I"tolmfun atAnd why sh1he 5!it: h"qsoned--/c! W, so Ti2mor l^>o-night? T6QrA eveV 4out6theM1, boy-lik2 determined to yiel +5Aclin Tnot a{9t Qk of 0ox of money5  day. ThreeVbelow >EboatayAmouta woody hh& 1ied|3The* swarmed ashoreAorest distancescraggy hxs echoed farQshoutDand 95theØ1get!ho " Egone=y mry-and-barovers Sggledao camp31ifi th responsible appetitesVt destrucHJ" "L>2 feoC!reBFFing ( 2resbchat i2shaspreading oaks. BAsomef[ed: "Who' the cave?" Ever!wa5$. b of ca \Bproc   a general scamperhT+x0' hillside--an opshaped likO A. Its mass׎2ake&& !unbarred. WK small chamberM Aly a2ice" w0by Natur% solid limeston w 1a c& rweat. I1romJmysterious!t %erdeep gloom/look out upr!grKC'"sh--""un?1O6!ve!UDly wore offdQrompiDL2ganjIcment al]  Frush2ownit; a struggugallant~f1ed,62ursoon kn)/or blownlad clamop and a new chaseB3allQ havex(ndlrocession (!fiv(eep descenW4ain avenue,p!fl0qing ranGOVs dimly reveaYf!llqrock al5t1ir er of jun sixty feet overhead. Thisnot more than "en?Cwide?&nSstepsy%ill narr crevices bran@!from it on--for McDougal's`Rbut a%D7imepqraft.  blready.w's went gliW# p a wharfCAhear!noise on board(   C3as $usually are whornearly cto dea.AwondnQwhat 1de:Rstop w<<dropped her88'put his atten *rusiness`Bclou dark. Ten eKf vehicles ceased, sca) abegan ,#nk !ll 2foot-passengerkp |)1 be$itt)l <2lef| = qwatcher qthe silae ghosts. E  Swere /;/ Qevery$A$it1see weary long 2:b)u3},ed. His faith wasB4bing. Wvy use? "reA Whyk)C? AFfell~"ea;&l U instantQ Bdoord*^Tprangqx8$ Ti two men br,%onW- z Runder!rm0 ]Cbox! So sto remoE.Bcall Tom now?Ibe absurd--1en  get awayq #$anc7EDNo, c stick1!ire!foAthem<k5truP for security^discoverQcommuG3Rmself#*!ut Eglidg 2beh!e men, cat-like,qbare fe~!ll_E the8*5far&!noqbe invi  y |GP q blocks0n^ left upJ2ss-8y?"E,!qcame to% !pa}1Cardiff Hill;5Ctookfthe old Welshman's Whalf-m(hi-1hes!ng Qclimbward. Good, 5*VSdury itold quarryC) "stfa &-3on,b summixy plung.T7 1run 1ook whe pistols wekf#I Astop$t..Scome now becuz 7# 5it,7 ;I:lF3 I x1wan7runo}m devils88! i,2 deUph2hapAdo l?  Byou'aO1a--but +b's a bM!e2you:Ryou'v^Fyour=A. No"y U Adead--we are sorryC|#atCee wiqright w!toq#ou6 Rm, bydescription #weOaC = !we?RfteenTnAm--dis a cellard2was(sn I fouE sneeze. It wHmeanest kin16!lu " t3o keep it bp use --'twas bjt!it(#I iR lead/ 2my :3theR star-ose scoundr Q-rust*6! pbI sung"B'Fir!!'cblazedtt5he aqwas. So".  2offrjiffy, svillainwZ4N  a%oods. I B we eatouche|mydgAot a y4  bullets whizzed bdo us any harm. Ak!we9 the sou$Tw at chas2entS }!tio5_>ctablesgot a posse fH1offuV R bank&Cit i+qsheriffaa gangE bea8}"My}!.\XAsh wz"A sor2 ose rascals2H uadeal. But you cy  dRlike,euY2ladQpposetOh yes;JAown-(and follc AthemSplendid! Db2m--d BOne'B!olfdumb SpaniQben a*;once or twicQt'oth[sa mean-", VTP men! Happeng Dthem1R back2one 2andoQslunkR. OffAyou, 8ellfA--ge to-morrow Y Y"2depS!1. A__qe room   : "Oh, ptell ANYbod bR! Oh, eAG_ gByou -N%credit of w:1 di"Oh no, no! DVA!" )B men g  o said: "T2 7w Cwon'B2whyoia#n?  explain,!tothat he al Aknewn w"on3 Ahose!+4manUv 2anyHast him Juworld--c& for knowing it% ?d secrecy3morW1How&se fellowsA? We!ey Ding &usea!t #ramed a duly H rep -S lot,--leasyrsays soI5see)ragin it@ =much, on #!inx }3tryQstrik a new way of do7"ay u ' I,BleepQso I r  up-street 'bout midf a, a-tu~fg - AI go old shackly brick store by WP1, I3 Red upO%ll#2k.  %bcomes fQtwo c B"slf0%lose by me,+1unddreir arm'( V y'd stole1OneAa-sm3b one wah, !ri.s\ !me"igACt upBfaceIy og 1ig - eA, bywhite whiskerQ xT `ua rustyo a." "CmDrags ?Cis staggq5forA !n ?5Aknow Qhow i#msCIQTJy o52you<Fb'em--y eiO&to| awas up8y sneakedsso. I do$!'4+1iddDstilG& $ d:# JgVe begK%heX swear he'd sp;rr looks'as}2two  What! The DEAF AND DUMB ma8ia4at!!'aderrible mistake! H63his.jC Ru>sthe fai+i2 whNK smight bQ1yetdtongue/0@$to in spitball heFr do. He several efforts to creep!of1scrape, R's ey 1mh["bl5 9. P  ,be afrai!me 6 hurt a hair o qr head v3=I'd protec !. 1 is ;#leAslipout intend+ D. up now. YGEthat4 K q. Now tAme-- m S it i"3 -- a betra Alookit!ho51eye Qomenton bent over 9ear: "'Tab--it'sO'1 Joz ) gjumped chair. InWQ 1ll ,pe 4you{m#2ing#and slitting noses2wasown embellish 3men3tak1sorYrrevenge\"an #! a different matt242q." Dur7B&:alk! c Y 1 sades (h2hishad done,_ C#!d,^a7eqexamine,its vicinity AmarkP Qblood11y fnvut captured a bulky bundle of)Of WHAT?" IfqBwordBbeenn 3hey leaped withcqre stun0O!5AblanBlips]!-were star1ide3Qreath$ended--wao! )tarted--st?+in return--1QRgs--fiv1ten%!end i<f burglar's toolsY4,G' bMATTER sank back, pan5deeply, unaEably !eyt/m gravely, cur!V--and= NYes,appears to relieveB Butcdid gi# 3urn9!YOU expecBwe'd2?" a \H a inqui *Q havenfor material$ aa plau4#-- suggesteR?elf|!boadeeper --a senseless1y o~dK^/!noq+ to weighiokventure he c it--feebly: "-+T books, maybe." Poortoo distress!sma Cqed loudfjoyouseb detai$.Ratomy1hea Bfoot%b by sahat such armoney in a- pocket, q it cutoctor's bill likM Aadde!olG!p,y2re Z !a5Byou awell a bit--no wo8aqf #of8 Z'.*!ouit. Rest6Rsleep6Afetc2all_#brritat<6 heaBgoos!ed{! a)!icM!esf"aroppednBideaarcel b%.K%2Avern]9. c talk 3XW ahad on%rought i3"nod however "ha"kn/ bwasn't!sot%a qoo much:Helf-w!Bu![ 4'2gla@. Shad hnt!no4 beyond all qusnot THE,Oo mind was at rkexceedingly comfortaban factC Q drifbjust iD dir_`Anow;WA musw ;) in No. 2 zy!ilybat dayhATom a seizeo3golS \1out !or fear of interruption. Ju# pYea knoc9#l ` 0 hiding-"noX connecte!n remotely1lat admittedtRladiev gentlemen, amo*Widow Dougla Tnoticngroups of citizeny bclimbi2the hill--to 7 S\Qnews xBprea h(h the stor$Z'he visitor#gratitude"erbrvatiooutspoken. "Don't}a# it, madaGre's]z"'r beholdeQthan -Tre todmy boyc#he ballow Atellsname. WAn't ] v2butim." Of $&uriosity so va|"be1d tV#in )twa to eaAvita'mm be trans }Dtownb refus"BpartjCcretorall els> qlearnedO  I "to% rJ9"ypV8a noise L#Rake m:rWe judg0j2worMgQle. T"dlikely! !--Shadn'CoolsBao work pAhe u1 waGbyou up4carDR? My BnegrAstood guard sr houseeLmk By've`ack." More!C cam"beD,aand re G couple of hours more.G tSabbath d 1vacecQ1 waVly at churchQ stir1Beven` canvassed. NewV#n Dsign5two! 5yetA#edthe sermfinished, Judge ThDu's wife alongsidRMrs. mZQ as sI6ved1 Qaisle;-BcrowqIs my Becky>all day? I !edhB tirQdeathBYourS(RYes,"a;!tlp Sok--"T"sa2youIQnightEE/!noa kced palh$sabba pew,as Aunt Polly, ing brisklwa5pG by.64qGood-mo), A 'got a boy up missing.o1 myD!st Qlast !#--7you. AndY $'snvtto sett'q  "he H andar than7d. "HeB$us(`b, begi !to uneasy. A marked anxietCc's face. "JoeVSK?Y1No'b"1didqsee hima?" Jo="wa!su7 "ayWQpeopl amoving %ofWs}3aloD a boding Aines&k 1 ofzy counten\'of!if  .!On!ngfinally blurt2his  !we4ill Zcave! swooned awa f#Ao crrringing'Bands alarm swept/lip to lip,Agrou 2to ithin five minutesCbell fwildlyN6he "upF/EJ insignificanD<xforgotten, horsesaddled, skiff4man !!rd#ou1bef{nDrror was half an old, two h)dbcere po6aighroaA riv gC. A Blong091nooge seemed emptydead. Many women (ed9#anPa'q They cC)2too"wa/"l N;z#. tedious022ews/>wA dawqt last,   was, "Send candlesrsend food."4wasqcrazed;L{, also. sent messages! p encouragVtWaonveyereal cheT3 ]3h4'BdaylpQspattRwith -grease, smeTBclay Bworn7#HeJHuck#behad been provid%3 hi"Adelic feveruhysiciano4allrcave, s  ook chargg "ient. She ! s B herb4,'ahe was@Q, bad;7%in,fBr Lord'sKu !R"a \neglectez"aik good spotvQ-`"You can depen(>2at'xAmarkdon't lea9Doff. He n3does. Puts"2ome)0$on"re\Ccome(Bhis TA" E AforeRparti3jad Q ctraggl< bGllag strongeswEthe qcontinuxAarch gBnewsbe gaineBness]7edhansack71vis;Y S cornAZ ,o#ly#edCver one wan4z"pax!, [wcseen fE hit Bdist@qhouting0-shots sentr9:)1berrthe earthe sombr Qs. In&ar1sec21usu. rtravers/rtouristI7s "BECKY & TOM"DbtracedbRL=2cky'#Csmok near at h =1-so!biqribbon.   recogniz'e%>4hover ii7crh. !ofiAno omemorial )@be so precious Q this parted latestqliving h*RawfulpV! c.3SomzAw ann/a far-away speck ofzWglimm*&rn a gloKDshou)~fAscor'men go tro:1dow echoingz1aa sick; Vointment always f!e  a 0 donly a2r'st ree dreadD2^ 2s d#0 ]% jt # a hopeless stupor. N 0_;accidentaly, just made,groprietorS ++Tiquor)premises,qcely fl3  public pulse, tremendou)1the 2 wa5qa lucid%Rrval,lasubjecta asked--dimly 7" worst-- W.! Thd sinceaEill.p.h "stSup inr#bild-ey1vWhat? W)$Lm;lace has shut up. Lie dV! a&&+!me!" "Only02 meQing--&one--please! Was it Tom Sawyer TT burse>"Hush, h !Byou 5 must NOT talky'Bare very sick!zAn no5 bu1rF t powwow if i the gold. Sctreasu2gon Ugone MmJ$e bout? CuM +@TR.2houoD1dimu/7$3min^uF the wearrhey gavhh(|?&. o herself: "TNJh/poor wreck. find it! Pitysomebody !KR! Ah,j!PDAleftIThope ^5or strength either, to go on| E CHAPTER XXXI NOW to%1 toZ's shareapicnic*By trNathe murkyqSVr ompany, visit familiar !eI$--adubbedw rather over7ptive nam uch as "The Drawing-Room,"Cathedral," "Aladdin's Palace,"\so on+hide-and-seek fro^u b AengaBn itzeal until!exertionDrow a trifle Asomen6 a sinuous avenue hol+-/kf #tangled web-work of Idates, post-office addrU rmottoes~) g walls rescoed (in ). Still Uand talk:CscarcelyM3nowXK"ar!H! w+tq. They b2ownPK!anphHA she[.ed,yD   2 a am of watrickling over a ledgkQcarry k sedimenVuit, had Qslow-y 81gesm3= and ruffled Niagara in gleam5nd imperishabAone.%squeezed his smallP h in order to illuminate i q's gratAtion rit curta,]jnatural stairwaywas encloZ etween na9ce the ambi Ya r"bd him. respondehis call,1hey_ " aM-mark for future guid oqir quesAey wD, "waBthatXAinto depths ofL  2Bmark|g$ed?( of novelties to @!the upper worl. 3oneQa spa s", L1cei3muld"Rof sh[stalactit" land circuml.c7 [' H) 1kedG" OQadmir_ +1lef~bnumerous Aopen?0#toi artly bm Qbewit2 sp}Rbasint(dncrustsa frosta glitt crystals Amidsa| supported by rfantastic pillarsR# ?Q8"joof great katalagmCtogehe resul1eas  Q-dripqenturies. UnIZaof vast(ts of batfp themselvwaousand#qa bunch(s+3urb flockings 4 byrs, sque"and darting f  FCkneww4the danger%isqconduct'#'snd hurried herthe first kDffern qoo soon)Q a ba#Duck gGmits wing ,ugitives plungnevery newr#ag!atRb got r5the perilous 7 ubterranean lake,,a stret?its dim 3way !it@ p!lo2shaQrHe wantLexplore its b;,0t conclur!habe best to sit#Ast a9TR. NowO1timbe deepA lai&Rlammygb spiri@*Why, I didn't ,it seems1so M gaI hearY!ot+:m bthink,#, 9Hqdown beLhem--and:!n'=Qw howK/north, or sou AeastQwhichit is. W8Dn't >bm0Cweek9!ye"qwas plaT"at cf 2 beAthei8 3dleAnot cyet. Aqime aft"isZ< P CR--Tom qgo softlo for dripp`BaterZ3 aMf satR Bothcruelly tired, ye CssMfuld go 73 .Tom dissenD F2not>!st8D !ey'2 fae-bin froPBthemTrclay. Toon busy;G'1aid* 7Atimeh^broke the:AI am DAungr5J!me!!of . "Do you remembP"?"4he.Zbalmost1d|'s our wedding-cakeMSYes--!asTQas a 6li"goaI saveA&"us to dream onyF1way$n-up people do'll be ourSS"pp<Q sentP6  Bdivi#Re cakw 3 atT2appetite,Tom nibbled a:amoietys abunda"co"RfinisfQ with. By-and-byGtey move on 'yilent a mom"qThen he:z1can/ rit if In1you k#?"8'4pal}`.Qnw 1stamB!er Bre's ink. Thatw " iClast6 ! gave loos)S&il#diA{to comfor$ `$AtU!C"?")y'll miss uKChunt4rwill! Cl"!ithey're hun Ror us,laDare.Bhen $S"Whby get o the boatHM#itbe dark then--enotice w/1n'tnbIaanywayNr mother8you"bthey got q." A fBened "inT"brfSSsenseRe sawh made a blunderw% _hs2hat08! Tebecame$ndO uful. In a new burst of grief21 sh  ^ g"ingQstruc@s also--QCR:half spent before Mrs. Thatcher discov M""at/Harper's. 2 GR !biqno doub2:)Bwas a !on/M $on1it; }!%esso hideouswbat he 2$itG!waa5ger1torX,K [/s A portio0h z was left;Q Band ,.~dhungriD poor morsel of food whetted desir c : "SH! DiuAthat 2othyV " aq like the faintest, far-off. InstantlAanswYul|/d M)Uhand,@"*gr7 corridorG0s4. P  s(R ;.BV%Rappar a BnearU DthemdTom; "coming! Come"-- b now!"54joy,rprisone overwhelmFT2spe[ %moTswarmingfrantic half-clad pT, whowA, "T2Vut! t F " Tin panChorn 6addAdin,#Qpopul massed g}*!to ver, met=in an open carriage%"byaitizendrongedA it, joined itsWRmarchswept magnific? Q main et roaring huzzah* !was illuminated;~Pb;ar3est(t!tt w0Cever_ 2Dur%re firsthour a processars fil rough Judge-'s house,f<n"sa+,ejsqueezedt'", to speak butn't--and dr out rainiY"rs veK& c1ppi% romplete nearly so5[ a messe AdispSdkH#2cav2!ldv"!orL 1usbNTom lay 0aa sofaXWasuditory71him=1tol~A his!ofwonderful adjB, puR+"inAstri1add adorn it1"al JCudescriptOahow he %tent on Bexpel;7'Btwo Fs!as0* ARa thi^aullest4tchM3wasT"to he glimpsed aD speh6Clook*A day ;"2lin Oit, pushedshouldersa small hol1sawbroad Mississippi ro by! And if it5 F0Rappen#beVhU@ !se* 2at %oft/d[ %4rore! Hec7for/I%j @ @"imoAo fr.r$such stuff, $  &# w Sto diR~?ɆU laboher and convincg %"hoe@Q died1joy A she  actually>lueG he >1wayI& !anbn help2 ou?gAat t]for gladness+some men a8Qskiff cTom haI!em G33con rddidn'tE=qild talfirst, "#,"Dahey, "Q"$re]2les> bhWavalley cave is in" n m aboard, rowFa""gam supperqGthem rest G 1two4hreDdarkn.Fhome. B!day-dawn,=q handfu% Ahim Rtrackg,5R+twine clewyctrung +sformed A. T+# }BtoiluPi~Rbe sh3'ffA9s#Foon " y bedriddenFf}5and~to grow mo7 QBwornP ><2got,MV, on e"wa- {a"as  `"di8her room1Sun34she$ash1hadT'edk1wasaillnes#$omi of Huck's sickm Rto seoAbut be admitDthe bedroom; neit5- Uhe onB or H-x-bwas wam8; s introduce no exciQtopicL Widow Douglas staye1thaKaobeyed/Ahome? the Cardiff Hill event; alsoDthe "ragged man's" bod-%  ;6 erry-landing2had7Adrow&\trying to , perhaps. About a fortiVrescu E, he a visit:yi#plGrong enough!toc2Tom'Aintel:.., A waswm,t " ome friend4Tom$2ing>2oneW him ironicsqn't lik%!goHRy10he thoughqRn't mqO said: "Well,1others jusuQyou, )3I'v| ast doubt.)Ave t3caraat. NoAwill !atA anyH*)*Because Iits big do $atb boiler ironP weeks agoriple-lockedO"goTbkeys."tjite as a sheet.1at' matter, boy! H,Arun,qbody! F=aa glasL1!" "* gba!!thJface. "Aqall right. W1a M#Oh,'[cave!vXIII WITHIN a fewj2new1spr.%b dozen b-loads3nq @!to McDougal'sE1boatll fill#pak"s,5 CSawy[deDD bor4. -bbwas un4,%rrrowfulFeCelf sqdim twi xD lay^1ed )@,)"hiQ closrthe cra} "thif his longing f+dfixed,>clatest,,s cheer CfreeQcoutsidwas touchedd v-tick--a dessertspoonVZ2fou&J3was fallingsPyramids' Bnew;Troy fell#this of Rome7Claid(bChristtrucifiethe Conqueror creat British empireJolumbus sailEqmassacrqLexingtons"news." K2now3ill=4be #whBthesy3gU"ll\Bsunk2then| 3of ,w "raCw;} ]c thickof oblivion. Hoa purpos Aa mi=? Did thisR pati$d!fi ousand yearsready forD2flihuman insect's need?has it another important object to accomplish  xcome? No .Band 2hap alf-bree1out ^>Qprice8drops, bu3a(e !t patheticslow-droppVBater@!hey8e1seeb!< .b's cupC6Ts firde list2bcavernmnQvels; 4b" cannot rival i 4xKn,VB BcaveI flocked in boatsfwagons|3towAfromthe farm1 hamletsseven miles|I >1ugh%irYSrall sorAprov~NsUO/3hadN! as satisfactory a%. funeral y"av&1 ha Y%is5Ir*Bgrow[#oni#agovernIrcpardon5k qlargelyT2ed;Qqtearfuleloquent meet<$he#a committeJCsappt!apBo inrRF%1ingjSwail timplore*be a mercis trample $ut| Gfoot/h0"tokfive citizenwt&+idat? If. ASataC Cselfe$/!ofl)SlingsRto scribblir names-a tear on itLir permans impair Rleaky{Q-work"2TomAvHuck to& gave anRtalk.3!haw1rneQ aboum'the Welshmant, !is}Yq>s!? old him; R  5he TS talk2now's face saddenedw bI knowJit is. You got5QNo. 233 anbut whiskeytold me itAyou;aI justp must 'a' ben ]usoon as\'fA bus|"em8q hadn'tt)ney becuzdl!go!me ! w Dand aif you!musdB els's alwaysG4we';uget holT swag, Huck, I-It-keeper. YOUF -" I"DD.mI D1youHAto w   yes! Why, it seems!ag#8> CI folleredK-YOU foll1him2Yes]2youqcmum. ISS"'s;Q2himI don't want 'em soV Bon m me mean 6s. If itpben for me he'5V ain Tex@&w,.ns entire+%in-5Aonly* Ofit before.lp:,'!ba@ main question, "whoever nipp "in(, --anyways it's a g.afor us;G wasn't n!;Bat!"Lphis comradekeenly. "Tom,agot onO twQagainti1 cave!" cblazed. "SayM FgainT*"Tom--hone 1junf--is it funV!strEarnest;!--^$as# f ! ILlife. WiF#go"reAhelpZRit ounsI bet IxE2 ifwCRe can5 ouV  6"doDwith dlittleBatroubl the worl?aGood aat! What makesRthinkoney's--2you;rtill wef!re#we1mit I'll aSto giVqmy drum71&Cq I will0jxGT" "A!--va whiz. [!do1say "Ri$w,say it. Are*4IWaPave? I ben o-cpins a,"oradays, tbut I caKlk more'n a "--IAI$.">q G$qanybodyRm 1go,1^Qmight,Drt cK]  N ; ,Gri.bskiff.&2flo] ["re I'll pull itj_by myself A neeturn yourq$Q over2Lw2artA offm@B. We"bT32eatour pipes bag or two T%kite-stru ese new-fp!thA ycall lucifer m+rs. I te, "'s1imetbshed I2omeD" Aqaafter the boys borU&) #a W B whoU Cbsen(got undec^were sev` below "Cave H%," R: "NNis bluff herJ$s!Balik d5--no houses, no wood-yards, busheRO"ee5whi4 Rup yok#'s4 landslide? Aat'sof my marks. We' aashore.yG97inU're a-sta#8'6ahole I bout of~Qa fispole. See#4can.Biplace abou$P proudly mar"a clump of sumachncc: "Heare! Look at i;athe snuggesDis country9 "ll2Drwanting/ a robberrknew I'rto have1ng 3thi1o run acros]vAther!ve1it :&2'llit quiet,1let< K:aBen RoU1Cin--*$ o@ be a GangC #lsj* any styl it. Tom Sawyer'sA:1sou$plendid,L?  "it3doe And who'c1rob/aOh, mo6. Waylay people--W$!lyV2wayRnd ki "No-@Q. Hivm# t4y26a ransomUeWhat'sCMoneg3makR<y can, off'$ir{ b; and you've kep.mqit ain'2!seV2. T!enkway. Onlyb women1shu`9 2men5Cm. T5Fb beautqnd rich awfully scaredgt"irI!es5sZStake t|+"nd4pol7y!3 as3 ass --you'llMany book. cto lovXfter they,m s a week y stop cr!eRto le'i4dro Ay'd  { Raroun2com9. It's so insy real bully' $ Ibdbetter'n a piratQC"YesF&^7way Cit's6"!toQQccircus\!at{@y+ %1andaboys ew)#ho\  $ l0Qy toi#*a7tunnel, then madir spliced 1 fadK$a on. A&E z'%pr)Tom felt ams quiver him. HeQCragm> -wick pexSon a oC cla$De wa; t2ox*_ d flame struggl)AexpiQTf!ga4 o whispers,!foS-d gloommcoppresBirit yYBpres:ar 0LQuntilE reaAG,Wndles%rhe factx not really a, BpiceLa steep DhillFirty feet highW @eW+2Now@ AshowY.  Ae he+sa aloft+` sNAorne7ban. Doi!ee? There--0big rock over$ S--donKp}3TomCqa CROSS2NOWZ '{ r Number Two? 'UNDER THE2,' hey?  2's eI saw &# p`+r stared Qe mys Qign afB 6R shaky voice:qless gi} " o QWhat!>treasureVRYes--6it.'s ghost is  ere, certain."B 81, nKB. It Q ha'nk8Qhe di,Away /%2mou!Vave--z ChereS \wouldy#ngkJ 4"ofV #so & &omi3feaX5. Misgivm!ga+d}CR mind 7Lc him--)ym$Sfools m@of ourselves! & a 8|; Z!a = !R poin`#wen1had)teffect.I6_"atA #so/EluckxQthat {7 isJ VpS AhuntG4box5wen77c -ink of fetc4theBbagsFS@B1soog oys tookr1 tofm a rock. qw less w!#gue*<,Q2<  `3'reOEickswhen we go to robbingNSe tim hold our orgieCsre, too ful snug9 ) 0CW@ bI dono P%;#ofT% wWCto hem,] /"ing!a Btime getting late, chungry`We'll eat0bUwe gec6y Temerg4/ 0ed warily f 5oast clear!weZbon lun$in ! Ac sun d#Bowar[Rhoriz] Ay pun  kimmed uDe@KR2wil1chai 91ilyZ7 alandedI3tlyd4dar7c"!id!in 1lof the widow's woodshedrAI'll.3 up*ev1 it(Upa?!unna!ou"od!.#it"it=be safe. Jus 3lay\-  Atuff1 I nd hook Benny Taylor'swagon; Iqbe gone!"nuHe disappear#re agon, putcBtwo Rsacks!"itA"w"ld,Qon to!tarted off, dragging7rgo'|h+"'sh &tgay9q fy1 on: Pp~ allo, whop  nLWGood!1me,, !ar&Gpingy*waiting. Hhurry up, trot ahead--Ahaul~Vyou. qnot as b as it4# be. Got b;in it?--orQmetalO+4tal2Tomjudged so9 1boyGthis townAtake0$%sol away1imeNing up six bits' woraold irNS sellh foundry thaz3y w; 8wic'$at6 work. But that's:4Fnatux ",  '!"!wa1to [$Ch#wa$ever mind; !n&% !E'1uckGRf=hension--for heub} falsely accus; r. Jones, we haven't!Udoing Rlaugh!'-,ymy boy.i that. Ain'bgDgood+%Ye_"sh"nA &B to #yw%"n.-(n,%to be afraid for?%is+J3not+qly answ"!inq's slow$ ~1S,;into Mrs.# dXeroom. 3 le nae doorz3gwas grandlyn1bod4tof any consequenceu2&~ ThatchersQkB Har3the!es, Aunt Polly, Sid, Mac he minister3beditor-qa great0&)?all dressX bAThe a recei;<RBartiJdany onP#we!iv such loP Dare cov Bwith:and. 2 bl[ rcrimson rhumiliaUNHv u at TomFAsuffhalf as muchQboys "however. Mr. Bn't at home, yet, so I gave him up;5$astumbl2anda Qat myG"br "Bin a(0!An1B did3Sv 1. "TyNr." She cto a bedchanRNow washI% y. Here arnew suit$ clothes --shirts, socks, .UCy're+A--nobthanks*&--b! And IY%Bz y'll fit boyou. Get Dthem await--Bdown 1youRslick .3n s \rV HUCKD! "we can slope, ifu'Ra rop" high fro"Shucks!D d|%IQrthat kiUfa crowd.,^(8 athere,a"|&4! I"an!miRA a bX'Scare Q" Silm .vhe, "auntie has been  afternoon. Mary(your Sundayb readyU 7aen fre  . baAthisus qclay, o;ra)Mr. Siddy jist 'tend toT own busiO#'sis blow-nb`It's one2#atx1havtime it'sF 1andl sons, on=uw"Vcrape they helpej9&of4'Rsay--h, 21, i yk+wK  Fold 2is to try toq#_ J( C1to-,overheard himvbto-dayvas a secre"B it' lRof a (XE RknowsSL##1allf!trro let oz!doVQwas bqHuck sh !be!--xn't geta yG1outAknowS"AwhatA'zAtracYAbbero'V  a  BovercurprisQ#AI be4 drop pretty flatWbchuckl aa verygEe aatisfiZy. "Sid, ib2tol3Oh,:Qwho i# . SOMEBODY told--3 @ZJl_ Dpers:Cmean:R to d XI7<x !you'd 'a' sne sn9EtoldZ)0)Tdo an{21an !y&~mo_Tp(+J >  cones. X$nn:N  says"--Dcuffed Sid's {i  0k8q"Now go"if2arenQto-moFit!" Som Autes'GSguest a WD-tab[$ua dozen@/"pr!upittle side;F1e sixQoom, {t1at r vAbproperl Amadev4 speech, iY!!heOkNHB honPQF [T was Dwhose modesty-- A: fo)sHe spru+{a'Er adventu finest dramatic mann_ master ofDthe B it !onJs largelyFerfe8 as clamorousNeffusivechappier K+amstanc  &, ( air show of astonishment,AheapF compliment2 so: ntude upon)(a he al/Rforgoanearlyv l܎K!Amfor%this new2 K :k set up as a targeh  \gaze laudations <"sh<2giv s a homesher rooave him educated;Rcs-Fuld spar2 sAtartFi  \'s chancrcome. H#F32uck"2 ne's rich." Noa heavy strain2the9 tmpany kept baBe du E:2aryis pleasant jos5DsilearawkwardObroke it@(AMayb. cbut he0!lo it. Oh, you%n't smile--  1eY;&a 'tTom ran Bdoor1looked at eacha perplexbterestuinquiringly a_ Ttongue-ti* #ls Tom?"P. "He--well - any making at boy out. I(<4Tom}/,q#Dggli{Eeigh,2 di"afinishsentenceCpourU1masyellow coQ the C^Cqwhat dih ? Half of FRmine! spectacl1 general{way. All gazed, nwpoke for a momentn a unanimous :.n explan  #1fur5i nd he did^B tal!bumful of _,ca scarc!n rruptiony!tok the char/its flow|che had"edAJoneM)d: I,x^Jf#%isP2it BamoupC nowone makeFBsingy), I'm wilbto allhT3was[3sumt"edRG over twelve thousand dollarsr-!as+ 7 [Qaresentever seenl`e time before, "  Q N"ho1 worth consido7av,tyaV THEer may rest Aaj's windfall33$a j4tirDpoor(vof St. o. So vast a sum, in actual cash, seemed nexincrediblejqtalked , gloated0rified, until thOs' mTJdtotter&2*'e unhealthy excite "haunted" housq 2 anneighboring villzwas dissected, plank by U3oun1 duand ransafor hidden treasu Qnot b=st men--0 grave, unromantic menWmH1Tom >Q cour2adm(gz1qnot abl|arememb~2at 4bremarkLqpossessJ&};3now1say0Twere dBrepe 4didvrsomehow regardedv8Aableyidently lo{5power of doV'2nd r common !s;5#ovir past historr!up X v2ar " of conspicuous originalityto paper published biographical sketcheNt.1 # p>#'s !ousix per cent.dJudge " lt's request. Each lad had an incBnow, was simply prodigious--a9D-dayC8Ayear7?2jus  got --no, hpromised--MrcollectD Ha quarter a7 board, lodgd school a <^1ose  be daysF 2 hiBwashbrmatter.  ,@RopiniR 8no 3boy!goz daughtPAcavepqn Beckyd@ 1fatzwin strictCw!ceA TomAtake&a whippt6  dy2isiFv  Cplea,!ceK4thei3lie-w!olorder to shi*&at!hemo8own3saiTaq outburh$atyBa nod !ou<,5magz lie--a litaworthyzaold up-2hea-Rmarch1]breast to George WaBton's lauded TruthU"ratchet!mQ 7ghtzU bso talSso superb wR walk4 fl qstamped\AfootdVv!2Shec:straight of1tol#/it"op& 1seexqlawyer  soldier some day0look to i"T#!AdmitkY National Military AcademRafter(Qraine!es  9[Amigh9'Ieither care both. Finn's w0 qsthe fac#now undeQ_ Douglas' protec introduced him)"society--no2' it, hurluis suffer%1mornj1R bear?servants1cle 1d naHQcombeC1 br hCbeddly in unsympathet3ets2ad 3e[ spot or stx~uld pres/2earQknow yK$!haE#eaba knifufork; h%use napkin, cupXplate&QlearndWbook,@go to church2stalk so "lyaspeechT become insipid in hisX; whithersoXees"edC2bar ashackl civiliz;B shuiQbound1han foot. He bravely b4is miser|1ree!thTLSe day up missFor forty-e\Qhours^g! hO j2himw2in Qdistress. The cS profoundoncerned;~7u E %eyF- @1forqbody. EThird V)r wiselyPp*$Qamong old empty hogsheads down*]AbandU#sl-T p'inQm he $rrefugeeL had slepor breakfastoB stolen odd61end Bfoodbwas ly<f in comfort969"ipwas unkempt, unM1cla old ruin of +,had madepicturesqueRays ws01frea happy[S routvBout,"his"*been causing,s 3urg=Qto go gr's face its tranquilv took a melancholy cas63RDon't X CI'vey #itwT work6"T;"#"it:~U 2to :)d("ly_&7#them waysA!mex!up% / Bsameq 7+9Awashy comb mLo thunder0w&let me sleepJ/a; I go61wea[m blamed cloth!atA smo?" m#'dg1seeany air git A'em,Show; !y'1 rotten ni,a=!et, nor lay^ croll a@nywher's; I hai"liD cellar-doErit 'pea b A  and swea q--I hatm!m Cy sermons!Aketc xK,[chaw.Qshoes$w eats by a bell1goeybed by fits up!--VK's so awful reg'lar)dy!it_(,>#dvhat way, Huck(&qmake no differI`Qybodyq STAND &3t's1 ti so. And grub como easy--I# t{!esvittles,}3askAa-fi 1; I  in a-swimming--dern'd if{AQ1do 6t". H!I'42 to"sodn't no(#--. OuRattic"ipRSwhileA daym1git!st"my , or I'd a died, TomnKBAmokeu y?5Bgapeqstretch Q scra before folks--" [The+a spasm ofsial irrit and injury]--"And dad fq"itaprayedNDime!A see, a woman! I HAD1ove2--I yUbesidHZ5's $Copen_<S$it%I G!st"QHAT, QLooky%,0S rich@what it's crack); Bworr  9 2a-wwas dead <2. N7%seBsuitis bar'l %shake 'emmc>B got into%isAif in't 'a' ben Kmoney; ntake my sh@&Syour'gimme a ten-centtimes--not manyX#s,K_# Ra derR2'th's tollable hyx4you$qbeg offSQidderv"OhK3d6%Rt. 'TBfair if you'll try^;B!a UQ longI*e $tok<Like it! Yes--bay I'd&a hot stovAI was(!itcLC. No7Brichi4liv m cussed y_Bs. I6oodv  Rf  I'll stictoo. BlamBall!QSas we3gun_1a c*"ll+AfixeEArob,p&olishness has  k"up5pil~x1sawx opportuni%"CDhereHECUevYnturning 'qNo! Oh, -licks; ara!qin real3-wood earnest)J+CbR'm siV-?5But<l)#qgang ifarespec5R's jo3h!!C"inq Didn't[!go~a piraterYes, bu%'sRt. A 7 zfAgh-ti7"a NQ is--rgeneral~A. InTr!ri 6  Qup inQnobilRdukes03uchw,! aS2lwme? YouhC  A youP *nVWOULD+B" "wR%,tI DON'TR--but(vpeople say? Why 'd say, 'Mph! V#!  low characters in it!' TCU+ {h+`$t*#so , engaged%Tental"#e. Finally h# Rll go}aba monttC!nd1if  `3it,49XRme b't>%Q gang e_b, it'sQz! Coxo8X`2and G>Toh# a[oEWill/!--yg2? Tggood. If sheUt"ofroughestK"s,@qprivate-Dcussdcrowd ror bust] Astar/4NCturn$s? 3right offBB@Atogem"avQiniti  0Qmaybe(H(Lj;+W6t$12Bto sn9Cone [+ O#te rgang's 8+sd nNre choppl o flinder qkill an 2 anV his famiWhurtsX%ay9/e3y g8,!_3E bet it is3 "at1ing Abe dt midnightthe lonesom|3est@ you can find--a ha'nted " ib:-Bll rNB3up M#yw{(socyou've3 on a coffi 1sigh with bloodOt)Bsome RLIKE!frmillion )X!ieh n 8 s QidderAR I ro 8#gi% acr of aRLbody tal('-&itD bu+!sn!,wet." CONCLUSION SO endeth schronicP$G strictly a}!BOY, it kAstop ;Sstoryz!nofEmuch)p"wi becoming ^3MANone writes a!! a Sgrown*Q, he O4A exarto stopOB is,a marriage) iof juveniles, he W can. Mosgyrperform still liveare prospc2Som.it may seem ZQke upzyounger ones agaiM9 1sor"meAwomey turned@krRit wiwRwisesyOto reveaH&Rat pacQtheirs at present. @Wlz4-2.5.2/testdata/Mark.Twain-Tom.Sawyer_long.txt000066400000000000000000202145711364760661600216360ustar00rootroot00000000000000Produced by David Widger. The previous edition was updated by Jose Menendez. THE ADVENTURES OF TOM SAWYER BY MARK TWAIN (Samuel Langhorne Clemens) P R E F A C E MOST of the adventures recorded in this book really occurred; one or two were experiences of my own, the rest those of boys who were schoolmates of mine. Huck Finn is drawn from life; Tom Sawyer also, but not from an individual--he is a combination of the characteristics of three boys whom I knew, and therefore belongs to the composite order of architecture. The odd superstitions touched upon were all prevalent among children and slaves in the West at the period of this story--that is to say, thirty or forty years ago. Although my book is intended mainly for the entertainment of boys and girls, I hope it will not be shunned by men and women on that account, for part of my plan has been to try to pleasantly remind adults of what they once were themselves, and of how they felt and thought and talked, and what queer enterprises they sometimes engaged in. THE AUTHOR. HARTFORD, 1876. T O M S A W Y E R CHAPTER I "TOM!" No answer. "TOM!" No answer. "What's gone with that boy, I wonder? You TOM!" No answer. The old lady pulled her spectacles down and looked over them about the room; then she put them up and looked out under them. She seldom or never looked THROUGH them for so small a thing as a boy; they were her state pair, the pride of her heart, and were built for "style," not service--she could have seen through a pair of stove-lids just as well. She looked perplexed for a moment, and then said, not fiercely, but still loud enough for the furniture to hear: "Well, I lay if I get hold of you I'll--" She did not finish, for by this time she was bending down and punching under the bed with the broom, and so she needed breath to punctuate the punches with. She resurrected nothing but the cat. "I never did see the beat of that boy!" She went to the open door and stood in it and looked out among the tomato vines and "jimpson" weeds that constituted the garden. No Tom. So she lifted up her voice at an angle calculated for distance and shouted: "Y-o-u-u TOM!" There was a slight noise behind her and she turned just in time to seize a small boy by the slack of his roundabout and arrest his flight. "There! I might 'a' thought of that closet. What you been doing in there?" "Nothing." "Nothing! Look at your hands. And look at your mouth. What IS that truck?" "I don't know, aunt." "Well, I know. It's jam--that's what it is. Forty times I've said if you didn't let that jam alone I'd skin you. Hand me that switch." The switch hovered in the air--the peril was desperate-- "My! Look behind you, aunt!" The old lady whirled round, and snatched her skirts out of danger. The lad fled on the instant, scrambled up the high board-fence, and disappeared over it. His aunt Polly stood surprised a moment, and then broke into a gentle laugh. "Hang the boy, can't I never learn anything? Ain't he played me tricks enough like that for me to be looking out for him by this time? But old fools is the biggest fools there is. Can't learn an old dog new tricks, as the saying is. But my goodness, he never plays them alike, two days, and how is a body to know what's coming? He 'pears to know just how long he can torment me before I get my dander up, and he knows if he can make out to put me off for a minute or make me laugh, it's all down again and I can't hit him a lick. I ain't doing my duty by that boy, and that's the Lord's truth, goodness knows. Spare the rod and spile the child, as the Good Book says. I'm a laying up sin and suffering for us both, I know. He's full of the Old Scratch, but laws-a-me! he's my own dead sister's boy, poor thing, and I ain't got the heart to lash him, somehow. Every time I let him off, my conscience does hurt me so, and every time I hit him my old heart most breaks. Well-a-well, man that is born of woman is of few days and full of trouble, as the Scripture says, and I reckon it's so. He'll play hookey this evening, * and [* Southwestern for "afternoon"] I'll just be obleeged to make him work, to-morrow, to punish him. It's mighty hard to make him work Saturdays, when all the boys is having holiday, but he hates work more than he hates anything else, and I've GOT to do some of my duty by him, or I'll be the ruination of the child." Tom did play hookey, and he had a very good time. He got back home barely in season to help Jim, the small colored boy, saw next-day's wood and split the kindlings before supper--at least he was there in time to tell his adventures to Jim while Jim did three-fourths of the work. Tom's younger brother (or rather half-brother) Sid was already through with his part of the work (picking up chips), for he was a quiet boy, and had no adventurous, troublesome ways. While Tom was eating his supper, and stealing sugar as opportunity offered, Aunt Polly asked him questions that were full of guile, and very deep--for she wanted to trap him into damaging revealments. Like many other simple-hearted souls, it was her pet vanity to believe she was endowed with a talent for dark and mysterious diplomacy, and she loved to contemplate her most transparent devices as marvels of low cunning. Said she: "Tom, it was middling warm in school, warn't it?" "Yes'm." "Powerful warm, warn't it?" "Yes'm." "Didn't you want to go in a-swimming, Tom?" A bit of a scare shot through Tom--a touch of uncomfortable suspicion. He searched Aunt Polly's face, but it told him nothing. So he said: "No'm--well, not very much." The old lady reached out her hand and felt Tom's shirt, and said: "But you ain't too warm now, though." And it flattered her to reflect that she had discovered that the shirt was dry without anybody knowing that that was what she had in her mind. But in spite of her, Tom knew where the wind lay, now. So he forestalled what might be the next move: "Some of us pumped on our heads--mine's damp yet. See?" Aunt Polly was vexed to think she had overlooked that bit of circumstantial evidence, and missed a trick. Then she had a new inspiration: "Tom, you didn't have to undo your shirt collar where I sewed it, to pump on your head, did you? Unbutton your jacket!" The trouble vanished out of Tom's face. He opened his jacket. His shirt collar was securely sewed. "Bother! Well, go 'long with you. I'd made sure you'd played hookey and been a-swimming. But I forgive ye, Tom. I reckon you're a kind of a singed cat, as the saying is--better'n you look. THIS time." She was half sorry her sagacity had miscarried, and half glad that Tom had stumbled into obedient conduct for once. But Sidney said: "Well, now, if I didn't think you sewed his collar with white thread, but it's black." "Why, I did sew it with white! Tom!" But Tom did not wait for the rest. As he went out at the door he said: "Siddy, I'll lick you for that." In a safe place Tom examined two large needles which were thrust into the lapels of his jacket, and had thread bound about them--one needle carried white thread and the other black. He said: "She'd never noticed if it hadn't been for Sid. Confound it! sometimes she sews it with white, and sometimes she sews it with black. I wish to geeminy she'd stick to one or t'other--I can't keep the run of 'em. But I bet you I'll lam Sid for that. I'll learn him!" He was not the Model Boy of the village. He knew the model boy very well though--and loathed him. Within two minutes, or even less, he had forgotten all his troubles. Not because his troubles were one whit less heavy and bitter to him than a man's are to a man, but because a new and powerful interest bore them down and drove them out of his mind for the time--just as men's misfortunes are forgotten in the excitement of new enterprises. This new interest was a valued novelty in whistling, which he had just acquired from a negro, and he was suffering to practise it undisturbed. It consisted in a peculiar bird-like turn, a sort of liquid warble, produced by touching the tongue to the roof of the mouth at short intervals in the midst of the music--the reader probably remembers how to do it, if he has ever been a boy. Diligence and attention soon gave him the knack of it, and he strode down the street with his mouth full of harmony and his soul full of gratitude. He felt much as an astronomer feels who has discovered a new planet--no doubt, as far as strong, deep, unalloyed pleasure is concerned, the advantage was with the boy, not the astronomer. The summer evenings were long. It was not dark, yet. Presently Tom checked his whistle. A stranger was before him--a boy a shade larger than himself. A new-comer of any age or either sex was an impressive curiosity in the poor little shabby village of St. Petersburg. This boy was well dressed, too--well dressed on a week-day. This was simply astounding. His cap was a dainty thing, his close-buttoned blue cloth roundabout was new and natty, and so were his pantaloons. He had shoes on--and it was only Friday. He even wore a necktie, a bright bit of ribbon. He had a citified air about him that ate into Tom's vitals. The more Tom stared at the splendid marvel, the higher he turned up his nose at his finery and the shabbier and shabbier his own outfit seemed to him to grow. Neither boy spoke. If one moved, the other moved--but only sidewise, in a circle; they kept face to face and eye to eye all the time. Finally Tom said: "I can lick you!" "I'd like to see you try it." "Well, I can do it." "No you can't, either." "Yes I can." "No you can't." "I can." "You can't." "Can!" "Can't!" An uncomfortable pause. Then Tom said: "What's your name?" "'Tisn't any of your business, maybe." "Well I 'low I'll MAKE it my business." "Well why don't you?" "If you say much, I will." "Much--much--MUCH. There now." "Oh, you think you're mighty smart, DON'T you? I could lick you with one hand tied behind me, if I wanted to." "Well why don't you DO it? You SAY you can do it." "Well I WILL, if you fool with me." "Oh yes--I've seen whole families in the same fix." "Smarty! You think you're SOME, now, DON'T you? Oh, what a hat!" "You can lump that hat if you don't like it. I dare you to knock it off--and anybody that'll take a dare will suck eggs." "You're a liar!" "You're another." "You're a fighting liar and dasn't take it up." "Aw--take a walk!" "Say--if you give me much more of your sass I'll take and bounce a rock off'n your head." "Oh, of COURSE you will." "Well I WILL." "Well why don't you DO it then? What do you keep SAYING you will for? Why don't you DO it? It's because you're afraid." "I AIN'T afraid." "You are." "I ain't." "You are." Another pause, and more eying and sidling around each other. Presently they were shoulder to shoulder. Tom said: "Get away from here!" "Go away yourself!" "I won't." "I won't either." So they stood, each with a foot placed at an angle as a brace, and both shoving with might and main, and glowering at each other with hate. But neither could get an advantage. After struggling till both were hot and flushed, each relaxed his strain with watchful caution, and Tom said: "You're a coward and a pup. I'll tell my big brother on you, and he can thrash you with his little finger, and I'll make him do it, too." "What do I care for your big brother? I've got a brother that's bigger than he is--and what's more, he can throw him over that fence, too." [Both brothers were imaginary.] "That's a lie." "YOUR saying so don't make it so." Tom drew a line in the dust with his big toe, and said: "I dare you to step over that, and I'll lick you till you can't stand up. Anybody that'll take a dare will steal sheep." The new boy stepped over promptly, and said: "Now you said you'd do it, now let's see you do it." "Don't you crowd me now; you better look out." "Well, you SAID you'd do it--why don't you do it?" "By jingo! for two cents I WILL do it." The new boy took two broad coppers out of his pocket and held them out with derision. Tom struck them to the ground. In an instant both boys were rolling and tumbling in the dirt, gripped together like cats; and for the space of a minute they tugged and tore at each other's hair and clothes, punched and scratched each other's nose, and covered themselves with dust and glory. Presently the confusion took form, and through the fog of battle Tom appeared, seated astride the new boy, and pounding him with his fists. "Holler 'nuff!" said he. The boy only struggled to free himself. He was crying--mainly from rage. "Holler 'nuff!"--and the pounding went on. At last the stranger got out a smothered "'Nuff!" and Tom let him up and said: "Now that'll learn you. Better look out who you're fooling with next time." The new boy went off brushing the dust from his clothes, sobbing, snuffling, and occasionally looking back and shaking his head and threatening what he would do to Tom the "next time he caught him out." To which Tom responded with jeers, and started off in high feather, and as soon as his back was turned the new boy snatched up a stone, threw it and hit him between the shoulders and then turned tail and ran like an antelope. Tom chased the traitor home, and thus found out where he lived. He then held a position at the gate for some time, daring the enemy to come outside, but the enemy only made faces at him through the window and declined. At last the enemy's mother appeared, and called Tom a bad, vicious, vulgar child, and ordered him away. So he went away; but he said he "'lowed" to "lay" for that boy. He got home pretty late that night, and when he climbed cautiously in at the window, he uncovered an ambuscade, in the person of his aunt; and when she saw the state his clothes were in her resolution to turn his Saturday holiday into captivity at hard labor became adamantine in its firmness. CHAPTER II SATURDAY morning was come, and all the summer world was bright and fresh, and brimming with life. There was a song in every heart; and if the heart was young the music issued at the lips. There was cheer in every face and a spring in every step. The locust-trees were in bloom and the fragrance of the blossoms filled the air. Cardiff Hill, beyond the village and above it, was green with vegetation and it lay just far enough away to seem a Delectable Land, dreamy, reposeful, and inviting. Tom appeared on the sidewalk with a bucket of whitewash and a long-handled brush. He surveyed the fence, and all gladness left him and a deep melancholy settled down upon his spirit. Thirty yards of board fence nine feet high. Life to him seemed hollow, and existence but a burden. Sighing, he dipped his brush and passed it along the topmost plank; repeated the operation; did it again; compared the insignificant whitewashed streak with the far-reaching continent of unwhitewashed fence, and sat down on a tree-box discouraged. Jim came skipping out at the gate with a tin pail, and singing Buffalo Gals. Bringing water from the town pump had always been hateful work in Tom's eyes, before, but now it did not strike him so. He remembered that there was company at the pump. White, mulatto, and negro boys and girls were always there waiting their turns, resting, trading playthings, quarrelling, fighting, skylarking. And he remembered that although the pump was only a hundred and fifty yards off, Jim never got back with a bucket of water under an hour--and even then somebody generally had to go after him. Tom said: "Say, Jim, I'll fetch the water if you'll whitewash some." Jim shook his head and said: "Can't, Mars Tom. Ole missis, she tole me I got to go an' git dis water an' not stop foolin' roun' wid anybody. She say she spec' Mars Tom gwine to ax me to whitewash, an' so she tole me go 'long an' 'tend to my own business--she 'lowed SHE'D 'tend to de whitewashin'." "Oh, never you mind what she said, Jim. That's the way she always talks. Gimme the bucket--I won't be gone only a a minute. SHE won't ever know." "Oh, I dasn't, Mars Tom. Ole missis she'd take an' tar de head off'n me. 'Deed she would." "SHE! She never licks anybody--whacks 'em over the head with her thimble--and who cares for that, I'd like to know. She talks awful, but talk don't hurt--anyways it don't if she don't cry. Jim, I'll give you a marvel. I'll give you a white alley!" Jim began to waver. "White alley, Jim! And it's a bully taw." "My! Dat's a mighty gay marvel, I tell you! But Mars Tom I's powerful 'fraid ole missis--" "And besides, if you will I'll show you my sore toe." Jim was only human--this attraction was too much for him. He put down his pail, took the white alley, and bent over the toe with absorbing interest while the bandage was being unwound. In another moment he was flying down the street with his pail and a tingling rear, Tom was whitewashing with vigor, and Aunt Polly was retiring from the field with a slipper in her hand and triumph in her eye. But Tom's energy did not last. He began to think of the fun he had planned for this day, and his sorrows multiplied. Soon the free boys would come tripping along on all sorts of delicious expeditions, and they would make a world of fun of him for having to work--the very thought of it burnt him like fire. He got out his worldly wealth and examined it--bits of toys, marbles, and trash; enough to buy an exchange of WORK, maybe, but not half enough to buy so much as half an hour of pure freedom. So he returned his straitened means to his pocket, and gave up the idea of trying to buy the boys. At this dark and hopeless moment an inspiration burst upon him! Nothing less than a great, magnificent inspiration. He took up his brush and went tranquilly to work. Ben Rogers hove in sight presently--the very boy, of all boys, whose ridicule he had been dreading. Ben's gait was the hop-skip-and-jump--proof enough that his heart was light and his anticipations high. He was eating an apple, and giving a long, melodious whoop, at intervals, followed by a deep-toned ding-dong-dong, ding-dong-dong, for he was personating a steamboat. As he drew near, he slackened speed, took the middle of the street, leaned far over to starboard and rounded to ponderously and with laborious pomp and circumstance--for he was personating the Big Missouri, and considered himself to be drawing nine feet of water. He was boat and captain and engine-bells combined, so he had to imagine himself standing on his own hurricane-deck giving the orders and executing them: "Stop her, sir! Ting-a-ling-ling!" The headway ran almost out, and he drew up slowly toward the sidewalk. "Ship up to back! Ting-a-ling-ling!" His arms straightened and stiffened down his sides. "Set her back on the stabboard! Ting-a-ling-ling! Chow! ch-chow-wow! Chow!" His right hand, meantime, describing stately circles--for it was representing a forty-foot wheel. "Let her go back on the labboard! Ting-a-lingling! Chow-ch-chow-chow!" The left hand began to describe circles. "Stop the stabboard! Ting-a-ling-ling! Stop the labboard! Come ahead on the stabboard! Stop her! Let your outside turn over slow! Ting-a-ling-ling! Chow-ow-ow! Get out that head-line! LIVELY now! Come--out with your spring-line--what're you about there! Take a turn round that stump with the bight of it! Stand by that stage, now--let her go! Done with the engines, sir! Ting-a-ling-ling! SH'T! S'H'T! SH'T!" (trying the gauge-cocks). Tom went on whitewashing--paid no attention to the steamboat. Ben stared a moment and then said: "Hi-YI! YOU'RE up a stump, ain't you!" No answer. Tom surveyed his last touch with the eye of an artist, then he gave his brush another gentle sweep and surveyed the result, as before. Ben ranged up alongside of him. Tom's mouth watered for the apple, but he stuck to his work. Ben said: "Hello, old chap, you got to work, hey?" Tom wheeled suddenly and said: "Why, it's you, Ben! I warn't noticing." "Say--I'm going in a-swimming, I am. Don't you wish you could? But of course you'd druther WORK--wouldn't you? Course you would!" Tom contemplated the boy a bit, and said: "What do you call work?" "Why, ain't THAT work?" Tom resumed his whitewashing, and answered carelessly: "Well, maybe it is, and maybe it ain't. All I know, is, it suits Tom Sawyer." "Oh come, now, you don't mean to let on that you LIKE it?" The brush continued to move. "Like it? Well, I don't see why I oughtn't to like it. Does a boy get a chance to whitewash a fence every day?" That put the thing in a new light. Ben stopped nibbling his apple. Tom swept his brush daintily back and forth--stepped back to note the effect--added a touch here and there--criticised the effect again--Ben watching every move and getting more and more interested, more and more absorbed. Presently he said: "Say, Tom, let ME whitewash a little." Tom considered, was about to consent; but he altered his mind: "No--no--I reckon it wouldn't hardly do, Ben. You see, Aunt Polly's awful particular about this fence--right here on the street, you know --but if it was the back fence I wouldn't mind and SHE wouldn't. Yes, she's awful particular about this fence; it's got to be done very careful; I reckon there ain't one boy in a thousand, maybe two thousand, that can do it the way it's got to be done." "No--is that so? Oh come, now--lemme just try. Only just a little--I'd let YOU, if you was me, Tom." "Ben, I'd like to, honest injun; but Aunt Polly--well, Jim wanted to do it, but she wouldn't let him; Sid wanted to do it, and she wouldn't let Sid. Now don't you see how I'm fixed? If you was to tackle this fence and anything was to happen to it--" "Oh, shucks, I'll be just as careful. Now lemme try. Say--I'll give you the core of my apple." "Well, here--No, Ben, now don't. I'm afeard--" "I'll give you ALL of it!" Tom gave up the brush with reluctance in his face, but alacrity in his heart. And while the late steamer Big Missouri worked and sweated in the sun, the retired artist sat on a barrel in the shade close by, dangled his legs, munched his apple, and planned the slaughter of more innocents. There was no lack of material; boys happened along every little while; they came to jeer, but remained to whitewash. By the time Ben was fagged out, Tom had traded the next chance to Billy Fisher for a kite, in good repair; and when he played out, Johnny Miller bought in for a dead rat and a string to swing it with--and so on, and so on, hour after hour. And when the middle of the afternoon came, from being a poor poverty-stricken boy in the morning, Tom was literally rolling in wealth. He had besides the things before mentioned, twelve marbles, part of a jews-harp, a piece of blue bottle-glass to look through, a spool cannon, a key that wouldn't unlock anything, a fragment of chalk, a glass stopper of a decanter, a tin soldier, a couple of tadpoles, six fire-crackers, a kitten with only one eye, a brass doorknob, a dog-collar--but no dog--the handle of a knife, four pieces of orange-peel, and a dilapidated old window sash. He had had a nice, good, idle time all the while--plenty of company --and the fence had three coats of whitewash on it! If he hadn't run out of whitewash he would have bankrupted every boy in the village. Tom said to himself that it was not such a hollow world, after all. He had discovered a great law of human action, without knowing it--namely, that in order to make a man or a boy covet a thing, it is only necessary to make the thing difficult to attain. If he had been a great and wise philosopher, like the writer of this book, he would now have comprehended that Work consists of whatever a body is OBLIGED to do, and that Play consists of whatever a body is not obliged to do. And this would help him to understand why constructing artificial flowers or performing on a tread-mill is work, while rolling ten-pins or climbing Mont Blanc is only amusement. There are wealthy gentlemen in England who drive four-horse passenger-coaches twenty or thirty miles on a daily line, in the summer, because the privilege costs them considerable money; but if they were offered wages for the service, that would turn it into work and then they would resign. The boy mused awhile over the substantial change which had taken place in his worldly circumstances, and then wended toward headquarters to report. CHAPTER III TOM presented himself before Aunt Polly, who was sitting by an open window in a pleasant rearward apartment, which was bedroom, breakfast-room, dining-room, and library, combined. The balmy summer air, the restful quiet, the odor of the flowers, and the drowsing murmur of the bees had had their effect, and she was nodding over her knitting --for she had no company but the cat, and it was asleep in her lap. Her spectacles were propped up on her gray head for safety. She had thought that of course Tom had deserted long ago, and she wondered at seeing him place himself in her power again in this intrepid way. He said: "Mayn't I go and play now, aunt?" "What, a'ready? How much have you done?" "It's all done, aunt." "Tom, don't lie to me--I can't bear it." "I ain't, aunt; it IS all done." Aunt Polly placed small trust in such evidence. She went out to see for herself; and she would have been content to find twenty per cent. of Tom's statement true. When she found the entire fence whitewashed, and not only whitewashed but elaborately coated and recoated, and even a streak added to the ground, her astonishment was almost unspeakable. She said: "Well, I never! There's no getting round it, you can work when you're a mind to, Tom." And then she diluted the compliment by adding, "But it's powerful seldom you're a mind to, I'm bound to say. Well, go 'long and play; but mind you get back some time in a week, or I'll tan you." She was so overcome by the splendor of his achievement that she took him into the closet and selected a choice apple and delivered it to him, along with an improving lecture upon the added value and flavor a treat took to itself when it came without sin through virtuous effort. And while she closed with a happy Scriptural flourish, he "hooked" a doughnut. Then he skipped out, and saw Sid just starting up the outside stairway that led to the back rooms on the second floor. Clods were handy and the air was full of them in a twinkling. They raged around Sid like a hail-storm; and before Aunt Polly could collect her surprised faculties and sally to the rescue, six or seven clods had taken personal effect, and Tom was over the fence and gone. There was a gate, but as a general thing he was too crowded for time to make use of it. His soul was at peace, now that he had settled with Sid for calling attention to his black thread and getting him into trouble. Tom skirted the block, and came round into a muddy alley that led by the back of his aunt's cow-stable. He presently got safely beyond the reach of capture and punishment, and hastened toward the public square of the village, where two "military" companies of boys had met for conflict, according to previous appointment. Tom was General of one of these armies, Joe Harper (a bosom friend) General of the other. These two great commanders did not condescend to fight in person--that being better suited to the still smaller fry--but sat together on an eminence and conducted the field operations by orders delivered through aides-de-camp. Tom's army won a great victory, after a long and hard-fought battle. Then the dead were counted, prisoners exchanged, the terms of the next disagreement agreed upon, and the day for the necessary battle appointed; after which the armies fell into line and marched away, and Tom turned homeward alone. As he was passing by the house where Jeff Thatcher lived, he saw a new girl in the garden--a lovely little blue-eyed creature with yellow hair plaited into two long-tails, white summer frock and embroidered pantalettes. The fresh-crowned hero fell without firing a shot. A certain Amy Lawrence vanished out of his heart and left not even a memory of herself behind. He had thought he loved her to distraction; he had regarded his passion as adoration; and behold it was only a poor little evanescent partiality. He had been months winning her; she had confessed hardly a week ago; he had been the happiest and the proudest boy in the world only seven short days, and here in one instant of time she had gone out of his heart like a casual stranger whose visit is done. He worshipped this new angel with furtive eye, till he saw that she had discovered him; then he pretended he did not know she was present, and began to "show off" in all sorts of absurd boyish ways, in order to win her admiration. He kept up this grotesque foolishness for some time; but by-and-by, while he was in the midst of some dangerous gymnastic performances, he glanced aside and saw that the little girl was wending her way toward the house. Tom came up to the fence and leaned on it, grieving, and hoping she would tarry yet awhile longer. She halted a moment on the steps and then moved toward the door. Tom heaved a great sigh as she put her foot on the threshold. But his face lit up, right away, for she tossed a pansy over the fence a moment before she disappeared. The boy ran around and stopped within a foot or two of the flower, and then shaded his eyes with his hand and began to look down street as if he had discovered something of interest going on in that direction. Presently he picked up a straw and began trying to balance it on his nose, with his head tilted far back; and as he moved from side to side, in his efforts, he edged nearer and nearer toward the pansy; finally his bare foot rested upon it, his pliant toes closed upon it, and he hopped away with the treasure and disappeared round the corner. But only for a minute--only while he could button the flower inside his jacket, next his heart--or next his stomach, possibly, for he was not much posted in anatomy, and not hypercritical, anyway. He returned, now, and hung about the fence till nightfall, "showing off," as before; but the girl never exhibited herself again, though Tom comforted himself a little with the hope that she had been near some window, meantime, and been aware of his attentions. Finally he strode home reluctantly, with his poor head full of visions. All through supper his spirits were so high that his aunt wondered "what had got into the child." He took a good scolding about clodding Sid, and did not seem to mind it in the least. He tried to steal sugar under his aunt's very nose, and got his knuckles rapped for it. He said: "Aunt, you don't whack Sid when he takes it." "Well, Sid don't torment a body the way you do. You'd be always into that sugar if I warn't watching you." Presently she stepped into the kitchen, and Sid, happy in his immunity, reached for the sugar-bowl--a sort of glorying over Tom which was wellnigh unbearable. But Sid's fingers slipped and the bowl dropped and broke. Tom was in ecstasies. In such ecstasies that he even controlled his tongue and was silent. He said to himself that he would not speak a word, even when his aunt came in, but would sit perfectly still till she asked who did the mischief; and then he would tell, and there would be nothing so good in the world as to see that pet model "catch it." He was so brimful of exultation that he could hardly hold himself when the old lady came back and stood above the wreck discharging lightnings of wrath from over her spectacles. He said to himself, "Now it's coming!" And the next instant he was sprawling on the floor! The potent palm was uplifted to strike again when Tom cried out: "Hold on, now, what 'er you belting ME for?--Sid broke it!" Aunt Polly paused, perplexed, and Tom looked for healing pity. But when she got her tongue again, she only said: "Umf! Well, you didn't get a lick amiss, I reckon. You been into some other audacious mischief when I wasn't around, like enough." Then her conscience reproached her, and she yearned to say something kind and loving; but she judged that this would be construed into a confession that she had been in the wrong, and discipline forbade that. So she kept silence, and went about her affairs with a troubled heart. Tom sulked in a corner and exalted his woes. He knew that in her heart his aunt was on her knees to him, and he was morosely gratified by the consciousness of it. He would hang out no signals, he would take notice of none. He knew that a yearning glance fell upon him, now and then, through a film of tears, but he refused recognition of it. He pictured himself lying sick unto death and his aunt bending over him beseeching one little forgiving word, but he would turn his face to the wall, and die with that word unsaid. Ah, how would she feel then? And he pictured himself brought home from the river, dead, with his curls all wet, and his sore heart at rest. How she would throw herself upon him, and how her tears would fall like rain, and her lips pray God to give her back her boy and she would never, never abuse him any more! But he would lie there cold and white and make no sign--a poor little sufferer, whose griefs were at an end. He so worked upon his feelings with the pathos of these dreams, that he had to keep swallowing, he was so like to choke; and his eyes swam in a blur of water, which overflowed when he winked, and ran down and trickled from the end of his nose. And such a luxury to him was this petting of his sorrows, that he could not bear to have any worldly cheeriness or any grating delight intrude upon it; it was too sacred for such contact; and so, presently, when his cousin Mary danced in, all alive with the joy of seeing home again after an age-long visit of one week to the country, he got up and moved in clouds and darkness out at one door as she brought song and sunshine in at the other. He wandered far from the accustomed haunts of boys, and sought desolate places that were in harmony with his spirit. A log raft in the river invited him, and he seated himself on its outer edge and contemplated the dreary vastness of the stream, wishing, the while, that he could only be drowned, all at once and unconsciously, without undergoing the uncomfortable routine devised by nature. Then he thought of his flower. He got it out, rumpled and wilted, and it mightily increased his dismal felicity. He wondered if she would pity him if she knew? Would she cry, and wish that she had a right to put her arms around his neck and comfort him? Or would she turn coldly away like all the hollow world? This picture brought such an agony of pleasurable suffering that he worked it over and over again in his mind and set it up in new and varied lights, till he wore it threadbare. At last he rose up sighing and departed in the darkness. About half-past nine or ten o'clock he came along the deserted street to where the Adored Unknown lived; he paused a moment; no sound fell upon his listening ear; a candle was casting a dull glow upon the curtain of a second-story window. Was the sacred presence there? He climbed the fence, threaded his stealthy way through the plants, till he stood under that window; he looked up at it long, and with emotion; then he laid him down on the ground under it, disposing himself upon his back, with his hands clasped upon his breast and holding his poor wilted flower. And thus he would die--out in the cold world, with no shelter over his homeless head, no friendly hand to wipe the death-damps from his brow, no loving face to bend pityingly over him when the great agony came. And thus SHE would see him when she looked out upon the glad morning, and oh! would she drop one little tear upon his poor, lifeless form, would she heave one little sigh to see a bright young life so rudely blighted, so untimely cut down? The window went up, a maid-servant's discordant voice profaned the holy calm, and a deluge of water drenched the prone martyr's remains! The strangling hero sprang up with a relieving snort. There was a whiz as of a missile in the air, mingled with the murmur of a curse, a sound as of shivering glass followed, and a small, vague form went over the fence and shot away in the gloom. Not long after, as Tom, all undressed for bed, was surveying his drenched garments by the light of a tallow dip, Sid woke up; but if he had any dim idea of making any "references to allusions," he thought better of it and held his peace, for there was danger in Tom's eye. Tom turned in without the added vexation of prayers, and Sid made mental note of the omission. CHAPTER IV THE sun rose upon a tranquil world, and beamed down upon the peaceful village like a benediction. Breakfast over, Aunt Polly had family worship: it began with a prayer built from the ground up of solid courses of Scriptural quotations, welded together with a thin mortar of originality; and from the summit of this she delivered a grim chapter of the Mosaic Law, as from Sinai. Then Tom girded up his loins, so to speak, and went to work to "get his verses." Sid had learned his lesson days before. Tom bent all his energies to the memorizing of five verses, and he chose part of the Sermon on the Mount, because he could find no verses that were shorter. At the end of half an hour Tom had a vague general idea of his lesson, but no more, for his mind was traversing the whole field of human thought, and his hands were busy with distracting recreations. Mary took his book to hear him recite, and he tried to find his way through the fog: "Blessed are the--a--a--" "Poor"-- "Yes--poor; blessed are the poor--a--a--" "In spirit--" "In spirit; blessed are the poor in spirit, for they--they--" "THEIRS--" "For THEIRS. Blessed are the poor in spirit, for theirs is the kingdom of heaven. Blessed are they that mourn, for they--they--" "Sh--" "For they--a--" "S, H, A--" "For they S, H--Oh, I don't know what it is!" "SHALL!" "Oh, SHALL! for they shall--for they shall--a--a--shall mourn--a--a-- blessed are they that shall--they that--a--they that shall mourn, for they shall--a--shall WHAT? Why don't you tell me, Mary?--what do you want to be so mean for?" "Oh, Tom, you poor thick-headed thing, I'm not teasing you. I wouldn't do that. You must go and learn it again. Don't you be discouraged, Tom, you'll manage it--and if you do, I'll give you something ever so nice. There, now, that's a good boy." "All right! What is it, Mary, tell me what it is." "Never you mind, Tom. You know if I say it's nice, it is nice." "You bet you that's so, Mary. All right, I'll tackle it again." And he did "tackle it again"--and under the double pressure of curiosity and prospective gain he did it with such spirit that he accomplished a shining success. Mary gave him a brand-new "Barlow" knife worth twelve and a half cents; and the convulsion of delight that swept his system shook him to his foundations. True, the knife would not cut anything, but it was a "sure-enough" Barlow, and there was inconceivable grandeur in that--though where the Western boys ever got the idea that such a weapon could possibly be counterfeited to its injury is an imposing mystery and will always remain so, perhaps. Tom contrived to scarify the cupboard with it, and was arranging to begin on the bureau, when he was called off to dress for Sunday-school. Mary gave him a tin basin of water and a piece of soap, and he went outside the door and set the basin on a little bench there; then he dipped the soap in the water and laid it down; turned up his sleeves; poured out the water on the ground, gently, and then entered the kitchen and began to wipe his face diligently on the towel behind the door. But Mary removed the towel and said: "Now ain't you ashamed, Tom. You mustn't be so bad. Water won't hurt you." Tom was a trifle disconcerted. The basin was refilled, and this time he stood over it a little while, gathering resolution; took in a big breath and began. When he entered the kitchen presently, with both eyes shut and groping for the towel with his hands, an honorable testimony of suds and water was dripping from his face. But when he emerged from the towel, he was not yet satisfactory, for the clean territory stopped short at his chin and his jaws, like a mask; below and beyond this line there was a dark expanse of unirrigated soil that spread downward in front and backward around his neck. Mary took him in hand, and when she was done with him he was a man and a brother, without distinction of color, and his saturated hair was neatly brushed, and its short curls wrought into a dainty and symmetrical general effect. [He privately smoothed out the curls, with labor and difficulty, and plastered his hair close down to his head; for he held curls to be effeminate, and his own filled his life with bitterness.] Then Mary got out a suit of his clothing that had been used only on Sundays during two years--they were simply called his "other clothes"--and so by that we know the size of his wardrobe. The girl "put him to rights" after he had dressed himself; she buttoned his neat roundabout up to his chin, turned his vast shirt collar down over his shoulders, brushed him off and crowned him with his speckled straw hat. He now looked exceedingly improved and uncomfortable. He was fully as uncomfortable as he looked; for there was a restraint about whole clothes and cleanliness that galled him. He hoped that Mary would forget his shoes, but the hope was blighted; she coated them thoroughly with tallow, as was the custom, and brought them out. He lost his temper and said he was always being made to do everything he didn't want to do. But Mary said, persuasively: "Please, Tom--that's a good boy." So he got into the shoes snarling. Mary was soon ready, and the three children set out for Sunday-school--a place that Tom hated with his whole heart; but Sid and Mary were fond of it. Sabbath-school hours were from nine to half-past ten; and then church service. Two of the children always remained for the sermon voluntarily, and the other always remained too--for stronger reasons. The church's high-backed, uncushioned pews would seat about three hundred persons; the edifice was but a small, plain affair, with a sort of pine board tree-box on top of it for a steeple. At the door Tom dropped back a step and accosted a Sunday-dressed comrade: "Say, Billy, got a yaller ticket?" "Yes." "What'll you take for her?" "What'll you give?" "Piece of lickrish and a fish-hook." "Less see 'em." Tom exhibited. They were satisfactory, and the property changed hands. Then Tom traded a couple of white alleys for three red tickets, and some small trifle or other for a couple of blue ones. He waylaid other boys as they came, and went on buying tickets of various colors ten or fifteen minutes longer. He entered the church, now, with a swarm of clean and noisy boys and girls, proceeded to his seat and started a quarrel with the first boy that came handy. The teacher, a grave, elderly man, interfered; then turned his back a moment and Tom pulled a boy's hair in the next bench, and was absorbed in his book when the boy turned around; stuck a pin in another boy, presently, in order to hear him say "Ouch!" and got a new reprimand from his teacher. Tom's whole class were of a pattern--restless, noisy, and troublesome. When they came to recite their lessons, not one of them knew his verses perfectly, but had to be prompted all along. However, they worried through, and each got his reward--in small blue tickets, each with a passage of Scripture on it; each blue ticket was pay for two verses of the recitation. Ten blue tickets equalled a red one, and could be exchanged for it; ten red tickets equalled a yellow one; for ten yellow tickets the superintendent gave a very plainly bound Bible (worth forty cents in those easy times) to the pupil. How many of my readers would have the industry and application to memorize two thousand verses, even for a Dore Bible? And yet Mary had acquired two Bibles in this way--it was the patient work of two years--and a boy of German parentage had won four or five. He once recited three thousand verses without stopping; but the strain upon his mental faculties was too great, and he was little better than an idiot from that day forth--a grievous misfortune for the school, for on great occasions, before company, the superintendent (as Tom expressed it) had always made this boy come out and "spread himself." Only the older pupils managed to keep their tickets and stick to their tedious work long enough to get a Bible, and so the delivery of one of these prizes was a rare and noteworthy circumstance; the successful pupil was so great and conspicuous for that day that on the spot every scholar's heart was fired with a fresh ambition that often lasted a couple of weeks. It is possible that Tom's mental stomach had never really hungered for one of those prizes, but unquestionably his entire being had for many a day longed for the glory and the eclat that came with it. In due course the superintendent stood up in front of the pulpit, with a closed hymn-book in his hand and his forefinger inserted between its leaves, and commanded attention. When a Sunday-school superintendent makes his customary little speech, a hymn-book in the hand is as necessary as is the inevitable sheet of music in the hand of a singer who stands forward on the platform and sings a solo at a concert --though why, is a mystery: for neither the hymn-book nor the sheet of music is ever referred to by the sufferer. This superintendent was a slim creature of thirty-five, with a sandy goatee and short sandy hair; he wore a stiff standing-collar whose upper edge almost reached his ears and whose sharp points curved forward abreast the corners of his mouth--a fence that compelled a straight lookout ahead, and a turning of the whole body when a side view was required; his chin was propped on a spreading cravat which was as broad and as long as a bank-note, and had fringed ends; his boot toes were turned sharply up, in the fashion of the day, like sleigh-runners--an effect patiently and laboriously produced by the young men by sitting with their toes pressed against a wall for hours together. Mr. Walters was very earnest of mien, and very sincere and honest at heart; and he held sacred things and places in such reverence, and so separated them from worldly matters, that unconsciously to himself his Sunday-school voice had acquired a peculiar intonation which was wholly absent on week-days. He began after this fashion: "Now, children, I want you all to sit up just as straight and pretty as you can and give me all your attention for a minute or two. There --that is it. That is the way good little boys and girls should do. I see one little girl who is looking out of the window--I am afraid she thinks I am out there somewhere--perhaps up in one of the trees making a speech to the little birds. [Applausive titter.] I want to tell you how good it makes me feel to see so many bright, clean little faces assembled in a place like this, learning to do right and be good." And so forth and so on. It is not necessary to set down the rest of the oration. It was of a pattern which does not vary, and so it is familiar to us all. The latter third of the speech was marred by the resumption of fights and other recreations among certain of the bad boys, and by fidgetings and whisperings that extended far and wide, washing even to the bases of isolated and incorruptible rocks like Sid and Mary. But now every sound ceased suddenly, with the subsidence of Mr. Walters' voice, and the conclusion of the speech was received with a burst of silent gratitude. A good part of the whispering had been occasioned by an event which was more or less rare--the entrance of visitors: lawyer Thatcher, accompanied by a very feeble and aged man; a fine, portly, middle-aged gentleman with iron-gray hair; and a dignified lady who was doubtless the latter's wife. The lady was leading a child. Tom had been restless and full of chafings and repinings; conscience-smitten, too--he could not meet Amy Lawrence's eye, he could not brook her loving gaze. But when he saw this small new-comer his soul was all ablaze with bliss in a moment. The next moment he was "showing off" with all his might --cuffing boys, pulling hair, making faces--in a word, using every art that seemed likely to fascinate a girl and win her applause. His exaltation had but one alloy--the memory of his humiliation in this angel's garden--and that record in sand was fast washing out, under the waves of happiness that were sweeping over it now. The visitors were given the highest seat of honor, and as soon as Mr. Walters' speech was finished, he introduced them to the school. The middle-aged man turned out to be a prodigious personage--no less a one than the county judge--altogether the most august creation these children had ever looked upon--and they wondered what kind of material he was made of--and they half wanted to hear him roar, and were half afraid he might, too. He was from Constantinople, twelve miles away--so he had travelled, and seen the world--these very eyes had looked upon the county court-house--which was said to have a tin roof. The awe which these reflections inspired was attested by the impressive silence and the ranks of staring eyes. This was the great Judge Thatcher, brother of their own lawyer. Jeff Thatcher immediately went forward, to be familiar with the great man and be envied by the school. It would have been music to his soul to hear the whisperings: "Look at him, Jim! He's a going up there. Say--look! he's a going to shake hands with him--he IS shaking hands with him! By jings, don't you wish you was Jeff?" Mr. Walters fell to "showing off," with all sorts of official bustlings and activities, giving orders, delivering judgments, discharging directions here, there, everywhere that he could find a target. The librarian "showed off"--running hither and thither with his arms full of books and making a deal of the splutter and fuss that insect authority delights in. The young lady teachers "showed off" --bending sweetly over pupils that were lately being boxed, lifting pretty warning fingers at bad little boys and patting good ones lovingly. The young gentlemen teachers "showed off" with small scoldings and other little displays of authority and fine attention to discipline--and most of the teachers, of both sexes, found business up at the library, by the pulpit; and it was business that frequently had to be done over again two or three times (with much seeming vexation). The little girls "showed off" in various ways, and the little boys "showed off" with such diligence that the air was thick with paper wads and the murmur of scufflings. And above it all the great man sat and beamed a majestic judicial smile upon all the house, and warmed himself in the sun of his own grandeur--for he was "showing off," too. There was only one thing wanting to make Mr. Walters' ecstasy complete, and that was a chance to deliver a Bible-prize and exhibit a prodigy. Several pupils had a few yellow tickets, but none had enough --he had been around among the star pupils inquiring. He would have given worlds, now, to have that German lad back again with a sound mind. And now at this moment, when hope was dead, Tom Sawyer came forward with nine yellow tickets, nine red tickets, and ten blue ones, and demanded a Bible. This was a thunderbolt out of a clear sky. Walters was not expecting an application from this source for the next ten years. But there was no getting around it--here were the certified checks, and they were good for their face. Tom was therefore elevated to a place with the Judge and the other elect, and the great news was announced from headquarters. It was the most stunning surprise of the decade, and so profound was the sensation that it lifted the new hero up to the judicial one's altitude, and the school had two marvels to gaze upon in place of one. The boys were all eaten up with envy--but those that suffered the bitterest pangs were those who perceived too late that they themselves had contributed to this hated splendor by trading tickets to Tom for the wealth he had amassed in selling whitewashing privileges. These despised themselves, as being the dupes of a wily fraud, a guileful snake in the grass. The prize was delivered to Tom with as much effusion as the superintendent could pump up under the circumstances; but it lacked somewhat of the true gush, for the poor fellow's instinct taught him that there was a mystery here that could not well bear the light, perhaps; it was simply preposterous that this boy had warehoused two thousand sheaves of Scriptural wisdom on his premises--a dozen would strain his capacity, without a doubt. Amy Lawrence was proud and glad, and she tried to make Tom see it in her face--but he wouldn't look. She wondered; then she was just a grain troubled; next a dim suspicion came and went--came again; she watched; a furtive glance told her worlds--and then her heart broke, and she was jealous, and angry, and the tears came and she hated everybody. Tom most of all (she thought). Tom was introduced to the Judge; but his tongue was tied, his breath would hardly come, his heart quaked--partly because of the awful greatness of the man, but mainly because he was her parent. He would have liked to fall down and worship him, if it were in the dark. The Judge put his hand on Tom's head and called him a fine little man, and asked him what his name was. The boy stammered, gasped, and got it out: "Tom." "Oh, no, not Tom--it is--" "Thomas." "Ah, that's it. I thought there was more to it, maybe. That's very well. But you've another one I daresay, and you'll tell it to me, won't you?" "Tell the gentleman your other name, Thomas," said Walters, "and say sir. You mustn't forget your manners." "Thomas Sawyer--sir." "That's it! That's a good boy. Fine boy. Fine, manly little fellow. Two thousand verses is a great many--very, very great many. And you never can be sorry for the trouble you took to learn them; for knowledge is worth more than anything there is in the world; it's what makes great men and good men; you'll be a great man and a good man yourself, some day, Thomas, and then you'll look back and say, It's all owing to the precious Sunday-school privileges of my boyhood--it's all owing to my dear teachers that taught me to learn--it's all owing to the good superintendent, who encouraged me, and watched over me, and gave me a beautiful Bible--a splendid elegant Bible--to keep and have it all for my own, always--it's all owing to right bringing up! That is what you will say, Thomas--and you wouldn't take any money for those two thousand verses--no indeed you wouldn't. And now you wouldn't mind telling me and this lady some of the things you've learned--no, I know you wouldn't--for we are proud of little boys that learn. Now, no doubt you know the names of all the twelve disciples. Won't you tell us the names of the first two that were appointed?" Tom was tugging at a button-hole and looking sheepish. He blushed, now, and his eyes fell. Mr. Walters' heart sank within him. He said to himself, it is not possible that the boy can answer the simplest question--why DID the Judge ask him? Yet he felt obliged to speak up and say: "Answer the gentleman, Thomas--don't be afraid." Tom still hung fire. "Now I know you'll tell me," said the lady. "The names of the first two disciples were--" "DAVID AND GOLIAH!" Let us draw the curtain of charity over the rest of the scene. CHAPTER V ABOUT half-past ten the cracked bell of the small church began to ring, and presently the people began to gather for the morning sermon. The Sunday-school children distributed themselves about the house and occupied pews with their parents, so as to be under supervision. Aunt Polly came, and Tom and Sid and Mary sat with her--Tom being placed next the aisle, in order that he might be as far away from the open window and the seductive outside summer scenes as possible. The crowd filed up the aisles: the aged and needy postmaster, who had seen better days; the mayor and his wife--for they had a mayor there, among other unnecessaries; the justice of the peace; the widow Douglass, fair, smart, and forty, a generous, good-hearted soul and well-to-do, her hill mansion the only palace in the town, and the most hospitable and much the most lavish in the matter of festivities that St. Petersburg could boast; the bent and venerable Major and Mrs. Ward; lawyer Riverson, the new notable from a distance; next the belle of the village, followed by a troop of lawn-clad and ribbon-decked young heart-breakers; then all the young clerks in town in a body--for they had stood in the vestibule sucking their cane-heads, a circling wall of oiled and simpering admirers, till the last girl had run their gantlet; and last of all came the Model Boy, Willie Mufferson, taking as heedful care of his mother as if she were cut glass. He always brought his mother to church, and was the pride of all the matrons. The boys all hated him, he was so good. And besides, he had been "thrown up to them" so much. His white handkerchief was hanging out of his pocket behind, as usual on Sundays--accidentally. Tom had no handkerchief, and he looked upon boys who had as snobs. The congregation being fully assembled, now, the bell rang once more, to warn laggards and stragglers, and then a solemn hush fell upon the church which was only broken by the tittering and whispering of the choir in the gallery. The choir always tittered and whispered all through service. There was once a church choir that was not ill-bred, but I have forgotten where it was, now. It was a great many years ago, and I can scarcely remember anything about it, but I think it was in some foreign country. The minister gave out the hymn, and read it through with a relish, in a peculiar style which was much admired in that part of the country. His voice began on a medium key and climbed steadily up till it reached a certain point, where it bore with strong emphasis upon the topmost word and then plunged down as if from a spring-board: Shall I be car-ri-ed toe the skies, on flow'ry BEDS of ease, Whilst others fight to win the prize, and sail thro' BLOODY seas? He was regarded as a wonderful reader. At church "sociables" he was always called upon to read poetry; and when he was through, the ladies would lift up their hands and let them fall helplessly in their laps, and "wall" their eyes, and shake their heads, as much as to say, "Words cannot express it; it is too beautiful, TOO beautiful for this mortal earth." After the hymn had been sung, the Rev. Mr. Sprague turned himself into a bulletin-board, and read off "notices" of meetings and societies and things till it seemed that the list would stretch out to the crack of doom--a queer custom which is still kept up in America, even in cities, away here in this age of abundant newspapers. Often, the less there is to justify a traditional custom, the harder it is to get rid of it. And now the minister prayed. A good, generous prayer it was, and went into details: it pleaded for the church, and the little children of the church; for the other churches of the village; for the village itself; for the county; for the State; for the State officers; for the United States; for the churches of the United States; for Congress; for the President; for the officers of the Government; for poor sailors, tossed by stormy seas; for the oppressed millions groaning under the heel of European monarchies and Oriental despotisms; for such as have the light and the good tidings, and yet have not eyes to see nor ears to hear withal; for the heathen in the far islands of the sea; and closed with a supplication that the words he was about to speak might find grace and favor, and be as seed sown in fertile ground, yielding in time a grateful harvest of good. Amen. There was a rustling of dresses, and the standing congregation sat down. The boy whose history this book relates did not enjoy the prayer, he only endured it--if he even did that much. He was restive all through it; he kept tally of the details of the prayer, unconsciously --for he was not listening, but he knew the ground of old, and the clergyman's regular route over it--and when a little trifle of new matter was interlarded, his ear detected it and his whole nature resented it; he considered additions unfair, and scoundrelly. In the midst of the prayer a fly had lit on the back of the pew in front of him and tortured his spirit by calmly rubbing its hands together, embracing its head with its arms, and polishing it so vigorously that it seemed to almost part company with the body, and the slender thread of a neck was exposed to view; scraping its wings with its hind legs and smoothing them to its body as if they had been coat-tails; going through its whole toilet as tranquilly as if it knew it was perfectly safe. As indeed it was; for as sorely as Tom's hands itched to grab for it they did not dare--he believed his soul would be instantly destroyed if he did such a thing while the prayer was going on. But with the closing sentence his hand began to curve and steal forward; and the instant the "Amen" was out the fly was a prisoner of war. His aunt detected the act and made him let it go. The minister gave out his text and droned along monotonously through an argument that was so prosy that many a head by and by began to nod --and yet it was an argument that dealt in limitless fire and brimstone and thinned the predestined elect down to a company so small as to be hardly worth the saving. Tom counted the pages of the sermon; after church he always knew how many pages there had been, but he seldom knew anything else about the discourse. However, this time he was really interested for a little while. The minister made a grand and moving picture of the assembling together of the world's hosts at the millennium when the lion and the lamb should lie down together and a little child should lead them. But the pathos, the lesson, the moral of the great spectacle were lost upon the boy; he only thought of the conspicuousness of the principal character before the on-looking nations; his face lit with the thought, and he said to himself that he wished he could be that child, if it was a tame lion. Now he lapsed into suffering again, as the dry argument was resumed. Presently he bethought him of a treasure he had and got it out. It was a large black beetle with formidable jaws--a "pinchbug," he called it. It was in a percussion-cap box. The first thing the beetle did was to take him by the finger. A natural fillip followed, the beetle went floundering into the aisle and lit on its back, and the hurt finger went into the boy's mouth. The beetle lay there working its helpless legs, unable to turn over. Tom eyed it, and longed for it; but it was safe out of his reach. Other people uninterested in the sermon found relief in the beetle, and they eyed it too. Presently a vagrant poodle dog came idling along, sad at heart, lazy with the summer softness and the quiet, weary of captivity, sighing for change. He spied the beetle; the drooping tail lifted and wagged. He surveyed the prize; walked around it; smelt at it from a safe distance; walked around it again; grew bolder, and took a closer smell; then lifted his lip and made a gingerly snatch at it, just missing it; made another, and another; began to enjoy the diversion; subsided to his stomach with the beetle between his paws, and continued his experiments; grew weary at last, and then indifferent and absent-minded. His head nodded, and little by little his chin descended and touched the enemy, who seized it. There was a sharp yelp, a flirt of the poodle's head, and the beetle fell a couple of yards away, and lit on its back once more. The neighboring spectators shook with a gentle inward joy, several faces went behind fans and handkerchiefs, and Tom was entirely happy. The dog looked foolish, and probably felt so; but there was resentment in his heart, too, and a craving for revenge. So he went to the beetle and began a wary attack on it again; jumping at it from every point of a circle, lighting with his fore-paws within an inch of the creature, making even closer snatches at it with his teeth, and jerking his head till his ears flapped again. But he grew tired once more, after a while; tried to amuse himself with a fly but found no relief; followed an ant around, with his nose close to the floor, and quickly wearied of that; yawned, sighed, forgot the beetle entirely, and sat down on it. Then there was a wild yelp of agony and the poodle went sailing up the aisle; the yelps continued, and so did the dog; he crossed the house in front of the altar; he flew down the other aisle; he crossed before the doors; he clamored up the home-stretch; his anguish grew with his progress, till presently he was but a woolly comet moving in its orbit with the gleam and the speed of light. At last the frantic sufferer sheered from its course, and sprang into its master's lap; he flung it out of the window, and the voice of distress quickly thinned away and died in the distance. By this time the whole church was red-faced and suffocating with suppressed laughter, and the sermon had come to a dead standstill. The discourse was resumed presently, but it went lame and halting, all possibility of impressiveness being at an end; for even the gravest sentiments were constantly being received with a smothered burst of unholy mirth, under cover of some remote pew-back, as if the poor parson had said a rarely facetious thing. It was a genuine relief to the whole congregation when the ordeal was over and the benediction pronounced. Tom Sawyer went home quite cheerful, thinking to himself that there was some satisfaction about divine service when there was a bit of variety in it. He had but one marring thought; he was willing that the dog should play with his pinchbug, but he did not think it was upright in him to carry it off. CHAPTER VI MONDAY morning found Tom Sawyer miserable. Monday morning always found him so--because it began another week's slow suffering in school. He generally began that day with wishing he had had no intervening holiday, it made the going into captivity and fetters again so much more odious. Tom lay thinking. Presently it occurred to him that he wished he was sick; then he could stay home from school. Here was a vague possibility. He canvassed his system. No ailment was found, and he investigated again. This time he thought he could detect colicky symptoms, and he began to encourage them with considerable hope. But they soon grew feeble, and presently died wholly away. He reflected further. Suddenly he discovered something. One of his upper front teeth was loose. This was lucky; he was about to begin to groan, as a "starter," as he called it, when it occurred to him that if he came into court with that argument, his aunt would pull it out, and that would hurt. So he thought he would hold the tooth in reserve for the present, and seek further. Nothing offered for some little time, and then he remembered hearing the doctor tell about a certain thing that laid up a patient for two or three weeks and threatened to make him lose a finger. So the boy eagerly drew his sore toe from under the sheet and held it up for inspection. But now he did not know the necessary symptoms. However, it seemed well worth while to chance it, so he fell to groaning with considerable spirit. But Sid slept on unconscious. Tom groaned louder, and fancied that he began to feel pain in the toe. No result from Sid. Tom was panting with his exertions by this time. He took a rest and then swelled himself up and fetched a succession of admirable groans. Sid snored on. Tom was aggravated. He said, "Sid, Sid!" and shook him. This course worked well, and Tom began to groan again. Sid yawned, stretched, then brought himself up on his elbow with a snort, and began to stare at Tom. Tom went on groaning. Sid said: "Tom! Say, Tom!" [No response.] "Here, Tom! TOM! What is the matter, Tom?" And he shook him and looked in his face anxiously. Tom moaned out: "Oh, don't, Sid. Don't joggle me." "Why, what's the matter, Tom? I must call auntie." "No--never mind. It'll be over by and by, maybe. Don't call anybody." "But I must! DON'T groan so, Tom, it's awful. How long you been this way?" "Hours. Ouch! Oh, don't stir so, Sid, you'll kill me." "Tom, why didn't you wake me sooner? Oh, Tom, DON'T! It makes my flesh crawl to hear you. Tom, what is the matter?" "I forgive you everything, Sid. [Groan.] Everything you've ever done to me. When I'm gone--" "Oh, Tom, you ain't dying, are you? Don't, Tom--oh, don't. Maybe--" "I forgive everybody, Sid. [Groan.] Tell 'em so, Sid. And Sid, you give my window-sash and my cat with one eye to that new girl that's come to town, and tell her--" But Sid had snatched his clothes and gone. Tom was suffering in reality, now, so handsomely was his imagination working, and so his groans had gathered quite a genuine tone. Sid flew down-stairs and said: "Oh, Aunt Polly, come! Tom's dying!" "Dying!" "Yes'm. Don't wait--come quick!" "Rubbage! I don't believe it!" But she fled up-stairs, nevertheless, with Sid and Mary at her heels. And her face grew white, too, and her lip trembled. When she reached the bedside she gasped out: "You, Tom! Tom, what's the matter with you?" "Oh, auntie, I'm--" "What's the matter with you--what is the matter with you, child?" "Oh, auntie, my sore toe's mortified!" The old lady sank down into a chair and laughed a little, then cried a little, then did both together. This restored her and she said: "Tom, what a turn you did give me. Now you shut up that nonsense and climb out of this." The groans ceased and the pain vanished from the toe. The boy felt a little foolish, and he said: "Aunt Polly, it SEEMED mortified, and it hurt so I never minded my tooth at all." "Your tooth, indeed! What's the matter with your tooth?" "One of them's loose, and it aches perfectly awful." "There, there, now, don't begin that groaning again. Open your mouth. Well--your tooth IS loose, but you're not going to die about that. Mary, get me a silk thread, and a chunk of fire out of the kitchen." Tom said: "Oh, please, auntie, don't pull it out. It don't hurt any more. I wish I may never stir if it does. Please don't, auntie. I don't want to stay home from school." "Oh, you don't, don't you? So all this row was because you thought you'd get to stay home from school and go a-fishing? Tom, Tom, I love you so, and you seem to try every way you can to break my old heart with your outrageousness." By this time the dental instruments were ready. The old lady made one end of the silk thread fast to Tom's tooth with a loop and tied the other to the bedpost. Then she seized the chunk of fire and suddenly thrust it almost into the boy's face. The tooth hung dangling by the bedpost, now. But all trials bring their compensations. As Tom wended to school after breakfast, he was the envy of every boy he met because the gap in his upper row of teeth enabled him to expectorate in a new and admirable way. He gathered quite a following of lads interested in the exhibition; and one that had cut his finger and had been a centre of fascination and homage up to this time, now found himself suddenly without an adherent, and shorn of his glory. His heart was heavy, and he said with a disdain which he did not feel that it wasn't anything to spit like Tom Sawyer; but another boy said, "Sour grapes!" and he wandered away a dismantled hero. Shortly Tom came upon the juvenile pariah of the village, Huckleberry Finn, son of the town drunkard. Huckleberry was cordially hated and dreaded by all the mothers of the town, because he was idle and lawless and vulgar and bad--and because all their children admired him so, and delighted in his forbidden society, and wished they dared to be like him. Tom was like the rest of the respectable boys, in that he envied Huckleberry his gaudy outcast condition, and was under strict orders not to play with him. So he played with him every time he got a chance. Huckleberry was always dressed in the cast-off clothes of full-grown men, and they were in perennial bloom and fluttering with rags. His hat was a vast ruin with a wide crescent lopped out of its brim; his coat, when he wore one, hung nearly to his heels and had the rearward buttons far down the back; but one suspender supported his trousers; the seat of the trousers bagged low and contained nothing, the fringed legs dragged in the dirt when not rolled up. Huckleberry came and went, at his own free will. He slept on doorsteps in fine weather and in empty hogsheads in wet; he did not have to go to school or to church, or call any being master or obey anybody; he could go fishing or swimming when and where he chose, and stay as long as it suited him; nobody forbade him to fight; he could sit up as late as he pleased; he was always the first boy that went barefoot in the spring and the last to resume leather in the fall; he never had to wash, nor put on clean clothes; he could swear wonderfully. In a word, everything that goes to make life precious that boy had. So thought every harassed, hampered, respectable boy in St. Petersburg. Tom hailed the romantic outcast: "Hello, Huckleberry!" "Hello yourself, and see how you like it." "What's that you got?" "Dead cat." "Lemme see him, Huck. My, he's pretty stiff. Where'd you get him?" "Bought him off'n a boy." "What did you give?" "I give a blue ticket and a bladder that I got at the slaughter-house." "Where'd you get the blue ticket?" "Bought it off'n Ben Rogers two weeks ago for a hoop-stick." "Say--what is dead cats good for, Huck?" "Good for? Cure warts with." "No! Is that so? I know something that's better." "I bet you don't. What is it?" "Why, spunk-water." "Spunk-water! I wouldn't give a dern for spunk-water." "You wouldn't, wouldn't you? D'you ever try it?" "No, I hain't. But Bob Tanner did." "Who told you so!" "Why, he told Jeff Thatcher, and Jeff told Johnny Baker, and Johnny told Jim Hollis, and Jim told Ben Rogers, and Ben told a nigger, and the nigger told me. There now!" "Well, what of it? They'll all lie. Leastways all but the nigger. I don't know HIM. But I never see a nigger that WOULDN'T lie. Shucks! Now you tell me how Bob Tanner done it, Huck." "Why, he took and dipped his hand in a rotten stump where the rain-water was." "In the daytime?" "Certainly." "With his face to the stump?" "Yes. Least I reckon so." "Did he say anything?" "I don't reckon he did. I don't know." "Aha! Talk about trying to cure warts with spunk-water such a blame fool way as that! Why, that ain't a-going to do any good. You got to go all by yourself, to the middle of the woods, where you know there's a spunk-water stump, and just as it's midnight you back up against the stump and jam your hand in and say: 'Barley-corn, barley-corn, injun-meal shorts, Spunk-water, spunk-water, swaller these warts,' and then walk away quick, eleven steps, with your eyes shut, and then turn around three times and walk home without speaking to anybody. Because if you speak the charm's busted." "Well, that sounds like a good way; but that ain't the way Bob Tanner done." "No, sir, you can bet he didn't, becuz he's the wartiest boy in this town; and he wouldn't have a wart on him if he'd knowed how to work spunk-water. I've took off thousands of warts off of my hands that way, Huck. I play with frogs so much that I've always got considerable many warts. Sometimes I take 'em off with a bean." "Yes, bean's good. I've done that." "Have you? What's your way?" "You take and split the bean, and cut the wart so as to get some blood, and then you put the blood on one piece of the bean and take and dig a hole and bury it 'bout midnight at the crossroads in the dark of the moon, and then you burn up the rest of the bean. You see that piece that's got the blood on it will keep drawing and drawing, trying to fetch the other piece to it, and so that helps the blood to draw the wart, and pretty soon off she comes." "Yes, that's it, Huck--that's it; though when you're burying it if you say 'Down bean; off wart; come no more to bother me!' it's better. That's the way Joe Harper does, and he's been nearly to Coonville and most everywheres. But say--how do you cure 'em with dead cats?" "Why, you take your cat and go and get in the graveyard 'long about midnight when somebody that was wicked has been buried; and when it's midnight a devil will come, or maybe two or three, but you can't see 'em, you can only hear something like the wind, or maybe hear 'em talk; and when they're taking that feller away, you heave your cat after 'em and say, 'Devil follow corpse, cat follow devil, warts follow cat, I'm done with ye!' That'll fetch ANY wart." "Sounds right. D'you ever try it, Huck?" "No, but old Mother Hopkins told me." "Well, I reckon it's so, then. Becuz they say she's a witch." "Say! Why, Tom, I KNOW she is. She witched pap. Pap says so his own self. He come along one day, and he see she was a-witching him, so he took up a rock, and if she hadn't dodged, he'd a got her. Well, that very night he rolled off'n a shed wher' he was a layin drunk, and broke his arm." "Why, that's awful. How did he know she was a-witching him?" "Lord, pap can tell, easy. Pap says when they keep looking at you right stiddy, they're a-witching you. Specially if they mumble. Becuz when they mumble they're saying the Lord's Prayer backards." "Say, Hucky, when you going to try the cat?" "To-night. I reckon they'll come after old Hoss Williams to-night." "But they buried him Saturday. Didn't they get him Saturday night?" "Why, how you talk! How could their charms work till midnight?--and THEN it's Sunday. Devils don't slosh around much of a Sunday, I don't reckon." "I never thought of that. That's so. Lemme go with you?" "Of course--if you ain't afeard." "Afeard! 'Tain't likely. Will you meow?" "Yes--and you meow back, if you get a chance. Last time, you kep' me a-meowing around till old Hays went to throwing rocks at me and says 'Dern that cat!' and so I hove a brick through his window--but don't you tell." "I won't. I couldn't meow that night, becuz auntie was watching me, but I'll meow this time. Say--what's that?" "Nothing but a tick." "Where'd you get him?" "Out in the woods." "What'll you take for him?" "I don't know. I don't want to sell him." "All right. It's a mighty small tick, anyway." "Oh, anybody can run a tick down that don't belong to them. I'm satisfied with it. It's a good enough tick for me." "Sho, there's ticks a plenty. I could have a thousand of 'em if I wanted to." "Well, why don't you? Becuz you know mighty well you can't. This is a pretty early tick, I reckon. It's the first one I've seen this year." "Say, Huck--I'll give you my tooth for him." "Less see it." Tom got out a bit of paper and carefully unrolled it. Huckleberry viewed it wistfully. The temptation was very strong. At last he said: "Is it genuwyne?" Tom lifted his lip and showed the vacancy. "Well, all right," said Huckleberry, "it's a trade." Tom enclosed the tick in the percussion-cap box that had lately been the pinchbug's prison, and the boys separated, each feeling wealthier than before. When Tom reached the little isolated frame schoolhouse, he strode in briskly, with the manner of one who had come with all honest speed. He hung his hat on a peg and flung himself into his seat with business-like alacrity. The master, throned on high in his great splint-bottom arm-chair, was dozing, lulled by the drowsy hum of study. The interruption roused him. "Thomas Sawyer!" Tom knew that when his name was pronounced in full, it meant trouble. "Sir!" "Come up here. Now, sir, why are you late again, as usual?" Tom was about to take refuge in a lie, when he saw two long tails of yellow hair hanging down a back that he recognized by the electric sympathy of love; and by that form was THE ONLY VACANT PLACE on the girls' side of the schoolhouse. He instantly said: "I STOPPED TO TALK WITH HUCKLEBERRY FINN!" The master's pulse stood still, and he stared helplessly. The buzz of study ceased. The pupils wondered if this foolhardy boy had lost his mind. The master said: "You--you did what?" "Stopped to talk with Huckleberry Finn." There was no mistaking the words. "Thomas Sawyer, this is the most astounding confession I have ever listened to. No mere ferule will answer for this offence. Take off your jacket." The master's arm performed until it was tired and the stock of switches notably diminished. Then the order followed: "Now, sir, go and sit with the girls! And let this be a warning to you." The titter that rippled around the room appeared to abash the boy, but in reality that result was caused rather more by his worshipful awe of his unknown idol and the dread pleasure that lay in his high good fortune. He sat down upon the end of the pine bench and the girl hitched herself away from him with a toss of her head. Nudges and winks and whispers traversed the room, but Tom sat still, with his arms upon the long, low desk before him, and seemed to study his book. By and by attention ceased from him, and the accustomed school murmur rose upon the dull air once more. Presently the boy began to steal furtive glances at the girl. She observed it, "made a mouth" at him and gave him the back of her head for the space of a minute. When she cautiously faced around again, a peach lay before her. She thrust it away. Tom gently put it back. She thrust it away again, but with less animosity. Tom patiently returned it to its place. Then she let it remain. Tom scrawled on his slate, "Please take it--I got more." The girl glanced at the words, but made no sign. Now the boy began to draw something on the slate, hiding his work with his left hand. For a time the girl refused to notice; but her human curiosity presently began to manifest itself by hardly perceptible signs. The boy worked on, apparently unconscious. The girl made a sort of noncommittal attempt to see, but the boy did not betray that he was aware of it. At last she gave in and hesitatingly whispered: "Let me see it." Tom partly uncovered a dismal caricature of a house with two gable ends to it and a corkscrew of smoke issuing from the chimney. Then the girl's interest began to fasten itself upon the work and she forgot everything else. When it was finished, she gazed a moment, then whispered: "It's nice--make a man." The artist erected a man in the front yard, that resembled a derrick. He could have stepped over the house; but the girl was not hypercritical; she was satisfied with the monster, and whispered: "It's a beautiful man--now make me coming along." Tom drew an hour-glass with a full moon and straw limbs to it and armed the spreading fingers with a portentous fan. The girl said: "It's ever so nice--I wish I could draw." "It's easy," whispered Tom, "I'll learn you." "Oh, will you? When?" "At noon. Do you go home to dinner?" "I'll stay if you will." "Good--that's a whack. What's your name?" "Becky Thatcher. What's yours? Oh, I know. It's Thomas Sawyer." "That's the name they lick me by. I'm Tom when I'm good. You call me Tom, will you?" "Yes." Now Tom began to scrawl something on the slate, hiding the words from the girl. But she was not backward this time. She begged to see. Tom said: "Oh, it ain't anything." "Yes it is." "No it ain't. You don't want to see." "Yes I do, indeed I do. Please let me." "You'll tell." "No I won't--deed and deed and double deed won't." "You won't tell anybody at all? Ever, as long as you live?" "No, I won't ever tell ANYbody. Now let me." "Oh, YOU don't want to see!" "Now that you treat me so, I WILL see." And she put her small hand upon his and a little scuffle ensued, Tom pretending to resist in earnest but letting his hand slip by degrees till these words were revealed: "I LOVE YOU." "Oh, you bad thing!" And she hit his hand a smart rap, but reddened and looked pleased, nevertheless. Just at this juncture the boy felt a slow, fateful grip closing on his ear, and a steady lifting impulse. In that wise he was borne across the house and deposited in his own seat, under a peppering fire of giggles from the whole school. Then the master stood over him during a few awful moments, and finally moved away to his throne without saying a word. But although Tom's ear tingled, his heart was jubilant. As the school quieted down Tom made an honest effort to study, but the turmoil within him was too great. In turn he took his place in the reading class and made a botch of it; then in the geography class and turned lakes into mountains, mountains into rivers, and rivers into continents, till chaos was come again; then in the spelling class, and got "turned down," by a succession of mere baby words, till he brought up at the foot and yielded up the pewter medal which he had worn with ostentation for months. CHAPTER VII THE harder Tom tried to fasten his mind on his book, the more his ideas wandered. So at last, with a sigh and a yawn, he gave it up. It seemed to him that the noon recess would never come. The air was utterly dead. There was not a breath stirring. It was the sleepiest of sleepy days. The drowsing murmur of the five and twenty studying scholars soothed the soul like the spell that is in the murmur of bees. Away off in the flaming sunshine, Cardiff Hill lifted its soft green sides through a shimmering veil of heat, tinted with the purple of distance; a few birds floated on lazy wing high in the air; no other living thing was visible but some cows, and they were asleep. Tom's heart ached to be free, or else to have something of interest to do to pass the dreary time. His hand wandered into his pocket and his face lit up with a glow of gratitude that was prayer, though he did not know it. Then furtively the percussion-cap box came out. He released the tick and put him on the long flat desk. The creature probably glowed with a gratitude that amounted to prayer, too, at this moment, but it was premature: for when he started thankfully to travel off, Tom turned him aside with a pin and made him take a new direction. Tom's bosom friend sat next him, suffering just as Tom had been, and now he was deeply and gratefully interested in this entertainment in an instant. This bosom friend was Joe Harper. The two boys were sworn friends all the week, and embattled enemies on Saturdays. Joe took a pin out of his lapel and began to assist in exercising the prisoner. The sport grew in interest momently. Soon Tom said that they were interfering with each other, and neither getting the fullest benefit of the tick. So he put Joe's slate on the desk and drew a line down the middle of it from top to bottom. "Now," said he, "as long as he is on your side you can stir him up and I'll let him alone; but if you let him get away and get on my side, you're to leave him alone as long as I can keep him from crossing over." "All right, go ahead; start him up." The tick escaped from Tom, presently, and crossed the equator. Joe harassed him awhile, and then he got away and crossed back again. This change of base occurred often. While one boy was worrying the tick with absorbing interest, the other would look on with interest as strong, the two heads bowed together over the slate, and the two souls dead to all things else. At last luck seemed to settle and abide with Joe. The tick tried this, that, and the other course, and got as excited and as anxious as the boys themselves, but time and again just as he would have victory in his very grasp, so to speak, and Tom's fingers would be twitching to begin, Joe's pin would deftly head him off, and keep possession. At last Tom could stand it no longer. The temptation was too strong. So he reached out and lent a hand with his pin. Joe was angry in a moment. Said he: "Tom, you let him alone." "I only just want to stir him up a little, Joe." "No, sir, it ain't fair; you just let him alone." "Blame it, I ain't going to stir him much." "Let him alone, I tell you." "I won't!" "You shall--he's on my side of the line." "Look here, Joe Harper, whose is that tick?" "I don't care whose tick he is--he's on my side of the line, and you sha'n't touch him." "Well, I'll just bet I will, though. He's my tick and I'll do what I blame please with him, or die!" A tremendous whack came down on Tom's shoulders, and its duplicate on Joe's; and for the space of two minutes the dust continued to fly from the two jackets and the whole school to enjoy it. The boys had been too absorbed to notice the hush that had stolen upon the school awhile before when the master came tiptoeing down the room and stood over them. He had contemplated a good part of the performance before he contributed his bit of variety to it. When school broke up at noon, Tom flew to Becky Thatcher, and whispered in her ear: "Put on your bonnet and let on you're going home; and when you get to the corner, give the rest of 'em the slip, and turn down through the lane and come back. I'll go the other way and come it over 'em the same way." So the one went off with one group of scholars, and the other with another. In a little while the two met at the bottom of the lane, and when they reached the school they had it all to themselves. Then they sat together, with a slate before them, and Tom gave Becky the pencil and held her hand in his, guiding it, and so created another surprising house. When the interest in art began to wane, the two fell to talking. Tom was swimming in bliss. He said: "Do you love rats?" "No! I hate them!" "Well, I do, too--LIVE ones. But I mean dead ones, to swing round your head with a string." "No, I don't care for rats much, anyway. What I like is chewing-gum." "Oh, I should say so! I wish I had some now." "Do you? I've got some. I'll let you chew it awhile, but you must give it back to me." That was agreeable, so they chewed it turn about, and dangled their legs against the bench in excess of contentment. "Was you ever at a circus?" said Tom. "Yes, and my pa's going to take me again some time, if I'm good." "I been to the circus three or four times--lots of times. Church ain't shucks to a circus. There's things going on at a circus all the time. I'm going to be a clown in a circus when I grow up." "Oh, are you! That will be nice. They're so lovely, all spotted up." "Yes, that's so. And they get slathers of money--most a dollar a day, Ben Rogers says. Say, Becky, was you ever engaged?" "What's that?" "Why, engaged to be married." "No." "Would you like to?" "I reckon so. I don't know. What is it like?" "Like? Why it ain't like anything. You only just tell a boy you won't ever have anybody but him, ever ever ever, and then you kiss and that's all. Anybody can do it." "Kiss? What do you kiss for?" "Why, that, you know, is to--well, they always do that." "Everybody?" "Why, yes, everybody that's in love with each other. Do you remember what I wrote on the slate?" "Ye--yes." "What was it?" "I sha'n't tell you." "Shall I tell YOU?" "Ye--yes--but some other time." "No, now." "No, not now--to-morrow." "Oh, no, NOW. Please, Becky--I'll whisper it, I'll whisper it ever so easy." Becky hesitating, Tom took silence for consent, and passed his arm about her waist and whispered the tale ever so softly, with his mouth close to her ear. And then he added: "Now you whisper it to me--just the same." She resisted, for a while, and then said: "You turn your face away so you can't see, and then I will. But you mustn't ever tell anybody--WILL you, Tom? Now you won't, WILL you?" "No, indeed, indeed I won't. Now, Becky." He turned his face away. She bent timidly around till her breath stirred his curls and whispered, "I--love--you!" Then she sprang away and ran around and around the desks and benches, with Tom after her, and took refuge in a corner at last, with her little white apron to her face. Tom clasped her about her neck and pleaded: "Now, Becky, it's all done--all over but the kiss. Don't you be afraid of that--it ain't anything at all. Please, Becky." And he tugged at her apron and the hands. By and by she gave up, and let her hands drop; her face, all glowing with the struggle, came up and submitted. Tom kissed the red lips and said: "Now it's all done, Becky. And always after this, you know, you ain't ever to love anybody but me, and you ain't ever to marry anybody but me, ever never and forever. Will you?" "No, I'll never love anybody but you, Tom, and I'll never marry anybody but you--and you ain't to ever marry anybody but me, either." "Certainly. Of course. That's PART of it. And always coming to school or when we're going home, you're to walk with me, when there ain't anybody looking--and you choose me and I choose you at parties, because that's the way you do when you're engaged." "It's so nice. I never heard of it before." "Oh, it's ever so gay! Why, me and Amy Lawrence--" The big eyes told Tom his blunder and he stopped, confused. "Oh, Tom! Then I ain't the first you've ever been engaged to!" The child began to cry. Tom said: "Oh, don't cry, Becky, I don't care for her any more." "Yes, you do, Tom--you know you do." Tom tried to put his arm about her neck, but she pushed him away and turned her face to the wall, and went on crying. Tom tried again, with soothing words in his mouth, and was repulsed again. Then his pride was up, and he strode away and went outside. He stood about, restless and uneasy, for a while, glancing at the door, every now and then, hoping she would repent and come to find him. But she did not. Then he began to feel badly and fear that he was in the wrong. It was a hard struggle with him to make new advances, now, but he nerved himself to it and entered. She was still standing back there in the corner, sobbing, with her face to the wall. Tom's heart smote him. He went to her and stood a moment, not knowing exactly how to proceed. Then he said hesitatingly: "Becky, I--I don't care for anybody but you." No reply--but sobs. "Becky"--pleadingly. "Becky, won't you say something?" More sobs. Tom got out his chiefest jewel, a brass knob from the top of an andiron, and passed it around her so that she could see it, and said: "Please, Becky, won't you take it?" She struck it to the floor. Then Tom marched out of the house and over the hills and far away, to return to school no more that day. Presently Becky began to suspect. She ran to the door; he was not in sight; she flew around to the play-yard; he was not there. Then she called: "Tom! Come back, Tom!" She listened intently, but there was no answer. She had no companions but silence and loneliness. So she sat down to cry again and upbraid herself; and by this time the scholars began to gather again, and she had to hide her griefs and still her broken heart and take up the cross of a long, dreary, aching afternoon, with none among the strangers about her to exchange sorrows with. CHAPTER VIII TOM dodged hither and thither through lanes until he was well out of the track of returning scholars, and then fell into a moody jog. He crossed a small "branch" two or three times, because of a prevailing juvenile superstition that to cross water baffled pursuit. Half an hour later he was disappearing behind the Douglas mansion on the summit of Cardiff Hill, and the schoolhouse was hardly distinguishable away off in the valley behind him. He entered a dense wood, picked his pathless way to the centre of it, and sat down on a mossy spot under a spreading oak. There was not even a zephyr stirring; the dead noonday heat had even stilled the songs of the birds; nature lay in a trance that was broken by no sound but the occasional far-off hammering of a woodpecker, and this seemed to render the pervading silence and sense of loneliness the more profound. The boy's soul was steeped in melancholy; his feelings were in happy accord with his surroundings. He sat long with his elbows on his knees and his chin in his hands, meditating. It seemed to him that life was but a trouble, at best, and he more than half envied Jimmy Hodges, so lately released; it must be very peaceful, he thought, to lie and slumber and dream forever and ever, with the wind whispering through the trees and caressing the grass and the flowers over the grave, and nothing to bother and grieve about, ever any more. If he only had a clean Sunday-school record he could be willing to go, and be done with it all. Now as to this girl. What had he done? Nothing. He had meant the best in the world, and been treated like a dog--like a very dog. She would be sorry some day--maybe when it was too late. Ah, if he could only die TEMPORARILY! But the elastic heart of youth cannot be compressed into one constrained shape long at a time. Tom presently began to drift insensibly back into the concerns of this life again. What if he turned his back, now, and disappeared mysteriously? What if he went away--ever so far away, into unknown countries beyond the seas--and never came back any more! How would she feel then! The idea of being a clown recurred to him now, only to fill him with disgust. For frivolity and jokes and spotted tights were an offense, when they intruded themselves upon a spirit that was exalted into the vague august realm of the romantic. No, he would be a soldier, and return after long years, all war-worn and illustrious. No--better still, he would join the Indians, and hunt buffaloes and go on the warpath in the mountain ranges and the trackless great plains of the Far West, and away in the future come back a great chief, bristling with feathers, hideous with paint, and prance into Sunday-school, some drowsy summer morning, with a bloodcurdling war-whoop, and sear the eyeballs of all his companions with unappeasable envy. But no, there was something gaudier even than this. He would be a pirate! That was it! NOW his future lay plain before him, and glowing with unimaginable splendor. How his name would fill the world, and make people shudder! How gloriously he would go plowing the dancing seas, in his long, low, black-hulled racer, the Spirit of the Storm, with his grisly flag flying at the fore! And at the zenith of his fame, how he would suddenly appear at the old village and stalk into church, brown and weather-beaten, in his black velvet doublet and trunks, his great jack-boots, his crimson sash, his belt bristling with horse-pistols, his crime-rusted cutlass at his side, his slouch hat with waving plumes, his black flag unfurled, with the skull and crossbones on it, and hear with swelling ecstasy the whisperings, "It's Tom Sawyer the Pirate!--the Black Avenger of the Spanish Main!" Yes, it was settled; his career was determined. He would run away from home and enter upon it. He would start the very next morning. Therefore he must now begin to get ready. He would collect his resources together. He went to a rotten log near at hand and began to dig under one end of it with his Barlow knife. He soon struck wood that sounded hollow. He put his hand there and uttered this incantation impressively: "What hasn't come here, come! What's here, stay here!" Then he scraped away the dirt, and exposed a pine shingle. He took it up and disclosed a shapely little treasure-house whose bottom and sides were of shingles. In it lay a marble. Tom's astonishment was boundless! He scratched his head with a perplexed air, and said: "Well, that beats anything!" Then he tossed the marble away pettishly, and stood cogitating. The truth was, that a superstition of his had failed, here, which he and all his comrades had always looked upon as infallible. If you buried a marble with certain necessary incantations, and left it alone a fortnight, and then opened the place with the incantation he had just used, you would find that all the marbles you had ever lost had gathered themselves together there, meantime, no matter how widely they had been separated. But now, this thing had actually and unquestionably failed. Tom's whole structure of faith was shaken to its foundations. He had many a time heard of this thing succeeding but never of its failing before. It did not occur to him that he had tried it several times before, himself, but could never find the hiding-places afterward. He puzzled over the matter some time, and finally decided that some witch had interfered and broken the charm. He thought he would satisfy himself on that point; so he searched around till he found a small sandy spot with a little funnel-shaped depression in it. He laid himself down and put his mouth close to this depression and called-- "Doodle-bug, doodle-bug, tell me what I want to know! Doodle-bug, doodle-bug, tell me what I want to know!" The sand began to work, and presently a small black bug appeared for a second and then darted under again in a fright. "He dasn't tell! So it WAS a witch that done it. I just knowed it." He well knew the futility of trying to contend against witches, so he gave up discouraged. But it occurred to him that he might as well have the marble he had just thrown away, and therefore he went and made a patient search for it. But he could not find it. Now he went back to his treasure-house and carefully placed himself just as he had been standing when he tossed the marble away; then he took another marble from his pocket and tossed it in the same way, saying: "Brother, go find your brother!" He watched where it stopped, and went there and looked. But it must have fallen short or gone too far; so he tried twice more. The last repetition was successful. The two marbles lay within a foot of each other. Just here the blast of a toy tin trumpet came faintly down the green aisles of the forest. Tom flung off his jacket and trousers, turned a suspender into a belt, raked away some brush behind the rotten log, disclosing a rude bow and arrow, a lath sword and a tin trumpet, and in a moment had seized these things and bounded away, barelegged, with fluttering shirt. He presently halted under a great elm, blew an answering blast, and then began to tiptoe and look warily out, this way and that. He said cautiously--to an imaginary company: "Hold, my merry men! Keep hid till I blow." Now appeared Joe Harper, as airily clad and elaborately armed as Tom. Tom called: "Hold! Who comes here into Sherwood Forest without my pass?" "Guy of Guisborne wants no man's pass. Who art thou that--that--" "Dares to hold such language," said Tom, prompting--for they talked "by the book," from memory. "Who art thou that dares to hold such language?" "I, indeed! I am Robin Hood, as thy caitiff carcase soon shall know." "Then art thou indeed that famous outlaw? Right gladly will I dispute with thee the passes of the merry wood. Have at thee!" They took their lath swords, dumped their other traps on the ground, struck a fencing attitude, foot to foot, and began a grave, careful combat, "two up and two down." Presently Tom said: "Now, if you've got the hang, go it lively!" So they "went it lively," panting and perspiring with the work. By and by Tom shouted: "Fall! fall! Why don't you fall?" "I sha'n't! Why don't you fall yourself? You're getting the worst of it." "Why, that ain't anything. I can't fall; that ain't the way it is in the book. The book says, 'Then with one back-handed stroke he slew poor Guy of Guisborne.' You're to turn around and let me hit you in the back." There was no getting around the authorities, so Joe turned, received the whack and fell. "Now," said Joe, getting up, "you got to let me kill YOU. That's fair." "Why, I can't do that, it ain't in the book." "Well, it's blamed mean--that's all." "Well, say, Joe, you can be Friar Tuck or Much the miller's son, and lam me with a quarter-staff; or I'll be the Sheriff of Nottingham and you be Robin Hood a little while and kill me." This was satisfactory, and so these adventures were carried out. Then Tom became Robin Hood again, and was allowed by the treacherous nun to bleed his strength away through his neglected wound. And at last Joe, representing a whole tribe of weeping outlaws, dragged him sadly forth, gave his bow into his feeble hands, and Tom said, "Where this arrow falls, there bury poor Robin Hood under the greenwood tree." Then he shot the arrow and fell back and would have died, but he lit on a nettle and sprang up too gaily for a corpse. The boys dressed themselves, hid their accoutrements, and went off grieving that there were no outlaws any more, and wondering what modern civilization could claim to have done to compensate for their loss. They said they would rather be outlaws a year in Sherwood Forest than President of the United States forever. CHAPTER IX AT half-past nine, that night, Tom and Sid were sent to bed, as usual. They said their prayers, and Sid was soon asleep. Tom lay awake and waited, in restless impatience. When it seemed to him that it must be nearly daylight, he heard the clock strike ten! This was despair. He would have tossed and fidgeted, as his nerves demanded, but he was afraid he might wake Sid. So he lay still, and stared up into the dark. Everything was dismally still. By and by, out of the stillness, little, scarcely perceptible noises began to emphasize themselves. The ticking of the clock began to bring itself into notice. Old beams began to crack mysteriously. The stairs creaked faintly. Evidently spirits were abroad. A measured, muffled snore issued from Aunt Polly's chamber. And now the tiresome chirping of a cricket that no human ingenuity could locate, began. Next the ghastly ticking of a deathwatch in the wall at the bed's head made Tom shudder--it meant that somebody's days were numbered. Then the howl of a far-off dog rose on the night air, and was answered by a fainter howl from a remoter distance. Tom was in an agony. At last he was satisfied that time had ceased and eternity begun; he began to doze, in spite of himself; the clock chimed eleven, but he did not hear it. And then there came, mingling with his half-formed dreams, a most melancholy caterwauling. The raising of a neighboring window disturbed him. A cry of "Scat! you devil!" and the crash of an empty bottle against the back of his aunt's woodshed brought him wide awake, and a single minute later he was dressed and out of the window and creeping along the roof of the "ell" on all fours. He "meow'd" with caution once or twice, as he went; then jumped to the roof of the woodshed and thence to the ground. Huckleberry Finn was there, with his dead cat. The boys moved off and disappeared in the gloom. At the end of half an hour they were wading through the tall grass of the graveyard. It was a graveyard of the old-fashioned Western kind. It was on a hill, about a mile and a half from the village. It had a crazy board fence around it, which leaned inward in places, and outward the rest of the time, but stood upright nowhere. Grass and weeds grew rank over the whole cemetery. All the old graves were sunken in, there was not a tombstone on the place; round-topped, worm-eaten boards staggered over the graves, leaning for support and finding none. "Sacred to the memory of" So-and-So had been painted on them once, but it could no longer have been read, on the most of them, now, even if there had been light. A faint wind moaned through the trees, and Tom feared it might be the spirits of the dead, complaining at being disturbed. The boys talked little, and only under their breath, for the time and the place and the pervading solemnity and silence oppressed their spirits. They found the sharp new heap they were seeking, and ensconced themselves within the protection of three great elms that grew in a bunch within a few feet of the grave. Then they waited in silence for what seemed a long time. The hooting of a distant owl was all the sound that troubled the dead stillness. Tom's reflections grew oppressive. He must force some talk. So he said in a whisper: "Hucky, do you believe the dead people like it for us to be here?" Huckleberry whispered: "I wisht I knowed. It's awful solemn like, AIN'T it?" "I bet it is." There was a considerable pause, while the boys canvassed this matter inwardly. Then Tom whispered: "Say, Hucky--do you reckon Hoss Williams hears us talking?" "O' course he does. Least his sperrit does." Tom, after a pause: "I wish I'd said Mister Williams. But I never meant any harm. Everybody calls him Hoss." "A body can't be too partic'lar how they talk 'bout these-yer dead people, Tom." This was a damper, and conversation died again. Presently Tom seized his comrade's arm and said: "Sh!" "What is it, Tom?" And the two clung together with beating hearts. "Sh! There 'tis again! Didn't you hear it?" "I--" "There! Now you hear it." "Lord, Tom, they're coming! They're coming, sure. What'll we do?" "I dono. Think they'll see us?" "Oh, Tom, they can see in the dark, same as cats. I wisht I hadn't come." "Oh, don't be afeard. I don't believe they'll bother us. We ain't doing any harm. If we keep perfectly still, maybe they won't notice us at all." "I'll try to, Tom, but, Lord, I'm all of a shiver." "Listen!" The boys bent their heads together and scarcely breathed. A muffled sound of voices floated up from the far end of the graveyard. "Look! See there!" whispered Tom. "What is it?" "It's devil-fire. Oh, Tom, this is awful." Some vague figures approached through the gloom, swinging an old-fashioned tin lantern that freckled the ground with innumerable little spangles of light. Presently Huckleberry whispered with a shudder: "It's the devils sure enough. Three of 'em! Lordy, Tom, we're goners! Can you pray?" "I'll try, but don't you be afeard. They ain't going to hurt us. 'Now I lay me down to sleep, I--'" "Sh!" "What is it, Huck?" "They're HUMANS! One of 'em is, anyway. One of 'em's old Muff Potter's voice." "No--'tain't so, is it?" "I bet I know it. Don't you stir nor budge. He ain't sharp enough to notice us. Drunk, the same as usual, likely--blamed old rip!" "All right, I'll keep still. Now they're stuck. Can't find it. Here they come again. Now they're hot. Cold again. Hot again. Red hot! They're p'inted right, this time. Say, Huck, I know another o' them voices; it's Injun Joe." "That's so--that murderin' half-breed! I'd druther they was devils a dern sight. What kin they be up to?" The whisper died wholly out, now, for the three men had reached the grave and stood within a few feet of the boys' hiding-place. "Here it is," said the third voice; and the owner of it held the lantern up and revealed the face of young Doctor Robinson. Potter and Injun Joe were carrying a handbarrow with a rope and a couple of shovels on it. They cast down their load and began to open the grave. The doctor put the lantern at the head of the grave and came and sat down with his back against one of the elm trees. He was so close the boys could have touched him. "Hurry, men!" he said, in a low voice; "the moon might come out at any moment." They growled a response and went on digging. For some time there was no noise but the grating sound of the spades discharging their freight of mould and gravel. It was very monotonous. Finally a spade struck upon the coffin with a dull woody accent, and within another minute or two the men had hoisted it out on the ground. They pried off the lid with their shovels, got out the body and dumped it rudely on the ground. The moon drifted from behind the clouds and exposed the pallid face. The barrow was got ready and the corpse placed on it, covered with a blanket, and bound to its place with the rope. Potter took out a large spring-knife and cut off the dangling end of the rope and then said: "Now the cussed thing's ready, Sawbones, and you'll just out with another five, or here she stays." "That's the talk!" said Injun Joe. "Look here, what does this mean?" said the doctor. "You required your pay in advance, and I've paid you." "Yes, and you done more than that," said Injun Joe, approaching the doctor, who was now standing. "Five years ago you drove me away from your father's kitchen one night, when I come to ask for something to eat, and you said I warn't there for any good; and when I swore I'd get even with you if it took a hundred years, your father had me jailed for a vagrant. Did you think I'd forget? The Injun blood ain't in me for nothing. And now I've GOT you, and you got to SETTLE, you know!" He was threatening the doctor, with his fist in his face, by this time. The doctor struck out suddenly and stretched the ruffian on the ground. Potter dropped his knife, and exclaimed: "Here, now, don't you hit my pard!" and the next moment he had grappled with the doctor and the two were struggling with might and main, trampling the grass and tearing the ground with their heels. Injun Joe sprang to his feet, his eyes flaming with passion, snatched up Potter's knife, and went creeping, catlike and stooping, round and round about the combatants, seeking an opportunity. All at once the doctor flung himself free, seized the heavy headboard of Williams' grave and felled Potter to the earth with it--and in the same instant the half-breed saw his chance and drove the knife to the hilt in the young man's breast. He reeled and fell partly upon Potter, flooding him with his blood, and in the same moment the clouds blotted out the dreadful spectacle and the two frightened boys went speeding away in the dark. Presently, when the moon emerged again, Injun Joe was standing over the two forms, contemplating them. The doctor murmured inarticulately, gave a long gasp or two and was still. The half-breed muttered: "THAT score is settled--damn you." Then he robbed the body. After which he put the fatal knife in Potter's open right hand, and sat down on the dismantled coffin. Three --four--five minutes passed, and then Potter began to stir and moan. His hand closed upon the knife; he raised it, glanced at it, and let it fall, with a shudder. Then he sat up, pushing the body from him, and gazed at it, and then around him, confusedly. His eyes met Joe's. "Lord, how is this, Joe?" he said. "It's a dirty business," said Joe, without moving. "What did you do it for?" "I! I never done it!" "Look here! That kind of talk won't wash." Potter trembled and grew white. "I thought I'd got sober. I'd no business to drink to-night. But it's in my head yet--worse'n when we started here. I'm all in a muddle; can't recollect anything of it, hardly. Tell me, Joe--HONEST, now, old feller--did I do it? Joe, I never meant to--'pon my soul and honor, I never meant to, Joe. Tell me how it was, Joe. Oh, it's awful--and him so young and promising." "Why, you two was scuffling, and he fetched you one with the headboard and you fell flat; and then up you come, all reeling and staggering like, and snatched the knife and jammed it into him, just as he fetched you another awful clip--and here you've laid, as dead as a wedge til now." "Oh, I didn't know what I was a-doing. I wish I may die this minute if I did. It was all on account of the whiskey and the excitement, I reckon. I never used a weepon in my life before, Joe. I've fought, but never with weepons. They'll all say that. Joe, don't tell! Say you won't tell, Joe--that's a good feller. I always liked you, Joe, and stood up for you, too. Don't you remember? You WON'T tell, WILL you, Joe?" And the poor creature dropped on his knees before the stolid murderer, and clasped his appealing hands. "No, you've always been fair and square with me, Muff Potter, and I won't go back on you. There, now, that's as fair as a man can say." "Oh, Joe, you're an angel. I'll bless you for this the longest day I live." And Potter began to cry. "Come, now, that's enough of that. This ain't any time for blubbering. You be off yonder way and I'll go this. Move, now, and don't leave any tracks behind you." Potter started on a trot that quickly increased to a run. The half-breed stood looking after him. He muttered: "If he's as much stunned with the lick and fuddled with the rum as he had the look of being, he won't think of the knife till he's gone so far he'll be afraid to come back after it to such a place by himself --chicken-heart!" Two or three minutes later the murdered man, the blanketed corpse, the lidless coffin, and the open grave were under no inspection but the moon's. The stillness was complete again, too. CHAPTER X THE two boys flew on and on, toward the village, speechless with horror. They glanced backward over their shoulders from time to time, apprehensively, as if they feared they might be followed. Every stump that started up in their path seemed a man and an enemy, and made them catch their breath; and as they sped by some outlying cottages that lay near the village, the barking of the aroused watch-dogs seemed to give wings to their feet. "If we can only get to the old tannery before we break down!" whispered Tom, in short catches between breaths. "I can't stand it much longer." Huckleberry's hard pantings were his only reply, and the boys fixed their eyes on the goal of their hopes and bent to their work to win it. They gained steadily on it, and at last, breast to breast, they burst through the open door and fell grateful and exhausted in the sheltering shadows beyond. By and by their pulses slowed down, and Tom whispered: "Huckleberry, what do you reckon'll come of this?" "If Doctor Robinson dies, I reckon hanging'll come of it." "Do you though?" "Why, I KNOW it, Tom." Tom thought a while, then he said: "Who'll tell? We?" "What are you talking about? S'pose something happened and Injun Joe DIDN'T hang? Why, he'd kill us some time or other, just as dead sure as we're a laying here." "That's just what I was thinking to myself, Huck." "If anybody tells, let Muff Potter do it, if he's fool enough. He's generally drunk enough." Tom said nothing--went on thinking. Presently he whispered: "Huck, Muff Potter don't know it. How can he tell?" "What's the reason he don't know it?" "Because he'd just got that whack when Injun Joe done it. D'you reckon he could see anything? D'you reckon he knowed anything?" "By hokey, that's so, Tom!" "And besides, look-a-here--maybe that whack done for HIM!" "No, 'taint likely, Tom. He had liquor in him; I could see that; and besides, he always has. Well, when pap's full, you might take and belt him over the head with a church and you couldn't phase him. He says so, his own self. So it's the same with Muff Potter, of course. But if a man was dead sober, I reckon maybe that whack might fetch him; I dono." After another reflective silence, Tom said: "Hucky, you sure you can keep mum?" "Tom, we GOT to keep mum. You know that. That Injun devil wouldn't make any more of drownding us than a couple of cats, if we was to squeak 'bout this and they didn't hang him. Now, look-a-here, Tom, less take and swear to one another--that's what we got to do--swear to keep mum." "I'm agreed. It's the best thing. Would you just hold hands and swear that we--" "Oh no, that wouldn't do for this. That's good enough for little rubbishy common things--specially with gals, cuz THEY go back on you anyway, and blab if they get in a huff--but there orter be writing 'bout a big thing like this. And blood." Tom's whole being applauded this idea. It was deep, and dark, and awful; the hour, the circumstances, the surroundings, were in keeping with it. He picked up a clean pine shingle that lay in the moonlight, took a little fragment of "red keel" out of his pocket, got the moon on his work, and painfully scrawled these lines, emphasizing each slow down-stroke by clamping his tongue between his teeth, and letting up the pressure on the up-strokes. [See next page.] "Huck Finn and Tom Sawyer swears they will keep mum about This and They wish They may Drop down dead in Their Tracks if They ever Tell and Rot." Huckleberry was filled with admiration of Tom's facility in writing, and the sublimity of his language. He at once took a pin from his lapel and was going to prick his flesh, but Tom said: "Hold on! Don't do that. A pin's brass. It might have verdigrease on it." "What's verdigrease?" "It's p'ison. That's what it is. You just swaller some of it once --you'll see." So Tom unwound the thread from one of his needles, and each boy pricked the ball of his thumb and squeezed out a drop of blood. In time, after many squeezes, Tom managed to sign his initials, using the ball of his little finger for a pen. Then he showed Huckleberry how to make an H and an F, and the oath was complete. They buried the shingle close to the wall, with some dismal ceremonies and incantations, and the fetters that bound their tongues were considered to be locked and the key thrown away. A figure crept stealthily through a break in the other end of the ruined building, now, but they did not notice it. "Tom," whispered Huckleberry, "does this keep us from EVER telling --ALWAYS?" "Of course it does. It don't make any difference WHAT happens, we got to keep mum. We'd drop down dead--don't YOU know that?" "Yes, I reckon that's so." They continued to whisper for some little time. Presently a dog set up a long, lugubrious howl just outside--within ten feet of them. The boys clasped each other suddenly, in an agony of fright. "Which of us does he mean?" gasped Huckleberry. "I dono--peep through the crack. Quick!" "No, YOU, Tom!" "I can't--I can't DO it, Huck!" "Please, Tom. There 'tis again!" "Oh, lordy, I'm thankful!" whispered Tom. "I know his voice. It's Bull Harbison." * [* If Mr. Harbison owned a slave named Bull, Tom would have spoken of him as "Harbison's Bull," but a son or a dog of that name was "Bull Harbison."] "Oh, that's good--I tell you, Tom, I was most scared to death; I'd a bet anything it was a STRAY dog." The dog howled again. The boys' hearts sank once more. "Oh, my! that ain't no Bull Harbison!" whispered Huckleberry. "DO, Tom!" Tom, quaking with fear, yielded, and put his eye to the crack. His whisper was hardly audible when he said: "Oh, Huck, IT S A STRAY DOG!" "Quick, Tom, quick! Who does he mean?" "Huck, he must mean us both--we're right together." "Oh, Tom, I reckon we're goners. I reckon there ain't no mistake 'bout where I'LL go to. I been so wicked." "Dad fetch it! This comes of playing hookey and doing everything a feller's told NOT to do. I might a been good, like Sid, if I'd a tried --but no, I wouldn't, of course. But if ever I get off this time, I lay I'll just WALLER in Sunday-schools!" And Tom began to snuffle a little. "YOU bad!" and Huckleberry began to snuffle too. "Consound it, Tom Sawyer, you're just old pie, 'longside o' what I am. Oh, LORDY, lordy, lordy, I wisht I only had half your chance." Tom choked off and whispered: "Look, Hucky, look! He's got his BACK to us!" Hucky looked, with joy in his heart. "Well, he has, by jingoes! Did he before?" "Yes, he did. But I, like a fool, never thought. Oh, this is bully, you know. NOW who can he mean?" The howling stopped. Tom pricked up his ears. "Sh! What's that?" he whispered. "Sounds like--like hogs grunting. No--it's somebody snoring, Tom." "That IS it! Where 'bouts is it, Huck?" "I bleeve it's down at 'tother end. Sounds so, anyway. Pap used to sleep there, sometimes, 'long with the hogs, but laws bless you, he just lifts things when HE snores. Besides, I reckon he ain't ever coming back to this town any more." The spirit of adventure rose in the boys' souls once more. "Hucky, do you das't to go if I lead?" "I don't like to, much. Tom, s'pose it's Injun Joe!" Tom quailed. But presently the temptation rose up strong again and the boys agreed to try, with the understanding that they would take to their heels if the snoring stopped. So they went tiptoeing stealthily down, the one behind the other. When they had got to within five steps of the snorer, Tom stepped on a stick, and it broke with a sharp snap. The man moaned, writhed a little, and his face came into the moonlight. It was Muff Potter. The boys' hearts had stood still, and their hopes too, when the man moved, but their fears passed away now. They tiptoed out, through the broken weather-boarding, and stopped at a little distance to exchange a parting word. That long, lugubrious howl rose on the night air again! They turned and saw the strange dog standing within a few feet of where Potter was lying, and FACING Potter, with his nose pointing heavenward. "Oh, geeminy, it's HIM!" exclaimed both boys, in a breath. "Say, Tom--they say a stray dog come howling around Johnny Miller's house, 'bout midnight, as much as two weeks ago; and a whippoorwill come in and lit on the banisters and sung, the very same evening; and there ain't anybody dead there yet." "Well, I know that. And suppose there ain't. Didn't Gracie Miller fall in the kitchen fire and burn herself terrible the very next Saturday?" "Yes, but she ain't DEAD. And what's more, she's getting better, too." "All right, you wait and see. She's a goner, just as dead sure as Muff Potter's a goner. That's what the niggers say, and they know all about these kind of things, Huck." Then they separated, cogitating. When Tom crept in at his bedroom window the night was almost spent. He undressed with excessive caution, and fell asleep congratulating himself that nobody knew of his escapade. He was not aware that the gently-snoring Sid was awake, and had been so for an hour. When Tom awoke, Sid was dressed and gone. There was a late look in the light, a late sense in the atmosphere. He was startled. Why had he not been called--persecuted till he was up, as usual? The thought filled him with bodings. Within five minutes he was dressed and down-stairs, feeling sore and drowsy. The family were still at table, but they had finished breakfast. There was no voice of rebuke; but there were averted eyes; there was a silence and an air of solemnity that struck a chill to the culprit's heart. He sat down and tried to seem gay, but it was up-hill work; it roused no smile, no response, and he lapsed into silence and let his heart sink down to the depths. After breakfast his aunt took him aside, and Tom almost brightened in the hope that he was going to be flogged; but it was not so. His aunt wept over him and asked him how he could go and break her old heart so; and finally told him to go on, and ruin himself and bring her gray hairs with sorrow to the grave, for it was no use for her to try any more. This was worse than a thousand whippings, and Tom's heart was sorer now than his body. He cried, he pleaded for forgiveness, promised to reform over and over again, and then received his dismissal, feeling that he had won but an imperfect forgiveness and established but a feeble confidence. He left the presence too miserable to even feel revengeful toward Sid; and so the latter's prompt retreat through the back gate was unnecessary. He moped to school gloomy and sad, and took his flogging, along with Joe Harper, for playing hookey the day before, with the air of one whose heart was busy with heavier woes and wholly dead to trifles. Then he betook himself to his seat, rested his elbows on his desk and his jaws in his hands, and stared at the wall with the stony stare of suffering that has reached the limit and can no further go. His elbow was pressing against some hard substance. After a long time he slowly and sadly changed his position, and took up this object with a sigh. It was in a paper. He unrolled it. A long, lingering, colossal sigh followed, and his heart broke. It was his brass andiron knob! This final feather broke the camel's back. CHAPTER XI CLOSE upon the hour of noon the whole village was suddenly electrified with the ghastly news. No need of the as yet undreamed-of telegraph; the tale flew from man to man, from group to group, from house to house, with little less than telegraphic speed. Of course the schoolmaster gave holiday for that afternoon; the town would have thought strangely of him if he had not. A gory knife had been found close to the murdered man, and it had been recognized by somebody as belonging to Muff Potter--so the story ran. And it was said that a belated citizen had come upon Potter washing himself in the "branch" about one or two o'clock in the morning, and that Potter had at once sneaked off--suspicious circumstances, especially the washing which was not a habit with Potter. It was also said that the town had been ransacked for this "murderer" (the public are not slow in the matter of sifting evidence and arriving at a verdict), but that he could not be found. Horsemen had departed down all the roads in every direction, and the Sheriff "was confident" that he would be captured before night. All the town was drifting toward the graveyard. Tom's heartbreak vanished and he joined the procession, not because he would not a thousand times rather go anywhere else, but because an awful, unaccountable fascination drew him on. Arrived at the dreadful place, he wormed his small body through the crowd and saw the dismal spectacle. It seemed to him an age since he was there before. Somebody pinched his arm. He turned, and his eyes met Huckleberry's. Then both looked elsewhere at once, and wondered if anybody had noticed anything in their mutual glance. But everybody was talking, and intent upon the grisly spectacle before them. "Poor fellow!" "Poor young fellow!" "This ought to be a lesson to grave robbers!" "Muff Potter'll hang for this if they catch him!" This was the drift of remark; and the minister said, "It was a judgment; His hand is here." Now Tom shivered from head to heel; for his eye fell upon the stolid face of Injun Joe. At this moment the crowd began to sway and struggle, and voices shouted, "It's him! it's him! he's coming himself!" "Who? Who?" from twenty voices. "Muff Potter!" "Hallo, he's stopped!--Look out, he's turning! Don't let him get away!" People in the branches of the trees over Tom's head said he wasn't trying to get away--he only looked doubtful and perplexed. "Infernal impudence!" said a bystander; "wanted to come and take a quiet look at his work, I reckon--didn't expect any company." The crowd fell apart, now, and the Sheriff came through, ostentatiously leading Potter by the arm. The poor fellow's face was haggard, and his eyes showed the fear that was upon him. When he stood before the murdered man, he shook as with a palsy, and he put his face in his hands and burst into tears. "I didn't do it, friends," he sobbed; "'pon my word and honor I never done it." "Who's accused you?" shouted a voice. This shot seemed to carry home. Potter lifted his face and looked around him with a pathetic hopelessness in his eyes. He saw Injun Joe, and exclaimed: "Oh, Injun Joe, you promised me you'd never--" "Is that your knife?" and it was thrust before him by the Sheriff. Potter would have fallen if they had not caught him and eased him to the ground. Then he said: "Something told me 't if I didn't come back and get--" He shuddered; then waved his nerveless hand with a vanquished gesture and said, "Tell 'em, Joe, tell 'em--it ain't any use any more." Then Huckleberry and Tom stood dumb and staring, and heard the stony-hearted liar reel off his serene statement, they expecting every moment that the clear sky would deliver God's lightnings upon his head, and wondering to see how long the stroke was delayed. And when he had finished and still stood alive and whole, their wavering impulse to break their oath and save the poor betrayed prisoner's life faded and vanished away, for plainly this miscreant had sold himself to Satan and it would be fatal to meddle with the property of such a power as that. "Why didn't you leave? What did you want to come here for?" somebody said. "I couldn't help it--I couldn't help it," Potter moaned. "I wanted to run away, but I couldn't seem to come anywhere but here." And he fell to sobbing again. Injun Joe repeated his statement, just as calmly, a few minutes afterward on the inquest, under oath; and the boys, seeing that the lightnings were still withheld, were confirmed in their belief that Joe had sold himself to the devil. He was now become, to them, the most balefully interesting object they had ever looked upon, and they could not take their fascinated eyes from his face. They inwardly resolved to watch him nights, when opportunity should offer, in the hope of getting a glimpse of his dread master. Injun Joe helped to raise the body of the murdered man and put it in a wagon for removal; and it was whispered through the shuddering crowd that the wound bled a little! The boys thought that this happy circumstance would turn suspicion in the right direction; but they were disappointed, for more than one villager remarked: "It was within three feet of Muff Potter when it done it." Tom's fearful secret and gnawing conscience disturbed his sleep for as much as a week after this; and at breakfast one morning Sid said: "Tom, you pitch around and talk in your sleep so much that you keep me awake half the time." Tom blanched and dropped his eyes. "It's a bad sign," said Aunt Polly, gravely. "What you got on your mind, Tom?" "Nothing. Nothing 't I know of." But the boy's hand shook so that he spilled his coffee. "And you do talk such stuff," Sid said. "Last night you said, 'It's blood, it's blood, that's what it is!' You said that over and over. And you said, 'Don't torment me so--I'll tell!' Tell WHAT? What is it you'll tell?" Everything was swimming before Tom. There is no telling what might have happened, now, but luckily the concern passed out of Aunt Polly's face and she came to Tom's relief without knowing it. She said: "Sho! It's that dreadful murder. I dream about it most every night myself. Sometimes I dream it's me that done it." Mary said she had been affected much the same way. Sid seemed satisfied. Tom got out of the presence as quick as he plausibly could, and after that he complained of toothache for a week, and tied up his jaws every night. He never knew that Sid lay nightly watching, and frequently slipped the bandage free and then leaned on his elbow listening a good while at a time, and afterward slipped the bandage back to its place again. Tom's distress of mind wore off gradually and the toothache grew irksome and was discarded. If Sid really managed to make anything out of Tom's disjointed mutterings, he kept it to himself. It seemed to Tom that his schoolmates never would get done holding inquests on dead cats, and thus keeping his trouble present to his mind. Sid noticed that Tom never was coroner at one of these inquiries, though it had been his habit to take the lead in all new enterprises; he noticed, too, that Tom never acted as a witness--and that was strange; and Sid did not overlook the fact that Tom even showed a marked aversion to these inquests, and always avoided them when he could. Sid marvelled, but said nothing. However, even inquests went out of vogue at last, and ceased to torture Tom's conscience. Every day or two, during this time of sorrow, Tom watched his opportunity and went to the little grated jail-window and smuggled such small comforts through to the "murderer" as he could get hold of. The jail was a trifling little brick den that stood in a marsh at the edge of the village, and no guards were afforded for it; indeed, it was seldom occupied. These offerings greatly helped to ease Tom's conscience. The villagers had a strong desire to tar-and-feather Injun Joe and ride him on a rail, for body-snatching, but so formidable was his character that nobody could be found who was willing to take the lead in the matter, so it was dropped. He had been careful to begin both of his inquest-statements with the fight, without confessing the grave-robbery that preceded it; therefore it was deemed wisest not to try the case in the courts at present. CHAPTER XII ONE of the reasons why Tom's mind had drifted away from its secret troubles was, that it had found a new and weighty matter to interest itself about. Becky Thatcher had stopped coming to school. Tom had struggled with his pride a few days, and tried to "whistle her down the wind," but failed. He began to find himself hanging around her father's house, nights, and feeling very miserable. She was ill. What if she should die! There was distraction in the thought. He no longer took an interest in war, nor even in piracy. The charm of life was gone; there was nothing but dreariness left. He put his hoop away, and his bat; there was no joy in them any more. His aunt was concerned. She began to try all manner of remedies on him. She was one of those people who are infatuated with patent medicines and all new-fangled methods of producing health or mending it. She was an inveterate experimenter in these things. When something fresh in this line came out she was in a fever, right away, to try it; not on herself, for she was never ailing, but on anybody else that came handy. She was a subscriber for all the "Health" periodicals and phrenological frauds; and the solemn ignorance they were inflated with was breath to her nostrils. All the "rot" they contained about ventilation, and how to go to bed, and how to get up, and what to eat, and what to drink, and how much exercise to take, and what frame of mind to keep one's self in, and what sort of clothing to wear, was all gospel to her, and she never observed that her health-journals of the current month customarily upset everything they had recommended the month before. She was as simple-hearted and honest as the day was long, and so she was an easy victim. She gathered together her quack periodicals and her quack medicines, and thus armed with death, went about on her pale horse, metaphorically speaking, with "hell following after." But she never suspected that she was not an angel of healing and the balm of Gilead in disguise, to the suffering neighbors. The water treatment was new, now, and Tom's low condition was a windfall to her. She had him out at daylight every morning, stood him up in the woodshed and drowned him with a deluge of cold water; then she scrubbed him down with a towel like a file, and so brought him to; then she rolled him up in a wet sheet and put him away under blankets till she sweated his soul clean and "the yellow stains of it came through his pores"--as Tom said. Yet notwithstanding all this, the boy grew more and more melancholy and pale and dejected. She added hot baths, sitz baths, shower baths, and plunges. The boy remained as dismal as a hearse. She began to assist the water with a slim oatmeal diet and blister-plasters. She calculated his capacity as she would a jug's, and filled him up every day with quack cure-alls. Tom had become indifferent to persecution by this time. This phase filled the old lady's heart with consternation. This indifference must be broken up at any cost. Now she heard of Pain-killer for the first time. She ordered a lot at once. She tasted it and was filled with gratitude. It was simply fire in a liquid form. She dropped the water treatment and everything else, and pinned her faith to Pain-killer. She gave Tom a teaspoonful and watched with the deepest anxiety for the result. Her troubles were instantly at rest, her soul at peace again; for the "indifference" was broken up. The boy could not have shown a wilder, heartier interest, if she had built a fire under him. Tom felt that it was time to wake up; this sort of life might be romantic enough, in his blighted condition, but it was getting to have too little sentiment and too much distracting variety about it. So he thought over various plans for relief, and finally hit pon that of professing to be fond of Pain-killer. He asked for it so often that he became a nuisance, and his aunt ended by telling him to help himself and quit bothering her. If it had been Sid, she would have had no misgivings to alloy her delight; but since it was Tom, she watched the bottle clandestinely. She found that the medicine did really diminish, but it did not occur to her that the boy was mending the health of a crack in the sitting-room floor with it. One day Tom was in the act of dosing the crack when his aunt's yellow cat came along, purring, eying the teaspoon avariciously, and begging for a taste. Tom said: "Don't ask for it unless you want it, Peter." But Peter signified that he did want it. "You better make sure." Peter was sure. "Now you've asked for it, and I'll give it to you, because there ain't anything mean about me; but if you find you don't like it, you mustn't blame anybody but your own self." Peter was agreeable. So Tom pried his mouth open and poured down the Pain-killer. Peter sprang a couple of yards in the air, and then delivered a war-whoop and set off round and round the room, banging against furniture, upsetting flower-pots, and making general havoc. Next he rose on his hind feet and pranced around, in a frenzy of enjoyment, with his head over his shoulder and his voice proclaiming his unappeasable happiness. Then he went tearing around the house again spreading chaos and destruction in his path. Aunt Polly entered in time to see him throw a few double summersets, deliver a final mighty hurrah, and sail through the open window, carrying the rest of the flower-pots with him. The old lady stood petrified with astonishment, peering over her glasses; Tom lay on the floor expiring with laughter. "Tom, what on earth ails that cat?" "I don't know, aunt," gasped the boy. "Why, I never see anything like it. What did make him act so?" "Deed I don't know, Aunt Polly; cats always act so when they're having a good time." "They do, do they?" There was something in the tone that made Tom apprehensive. "Yes'm. That is, I believe they do." "You DO?" "Yes'm." The old lady was bending down, Tom watching, with interest emphasized by anxiety. Too late he divined her "drift." The handle of the telltale teaspoon was visible under the bed-valance. Aunt Polly took it, held it up. Tom winced, and dropped his eyes. Aunt Polly raised him by the usual handle--his ear--and cracked his head soundly with her thimble. "Now, sir, what did you want to treat that poor dumb beast so, for?" "I done it out of pity for him--because he hadn't any aunt." "Hadn't any aunt!--you numskull. What has that got to do with it?" "Heaps. Because if he'd had one she'd a burnt him out herself! She'd a roasted his bowels out of him 'thout any more feeling than if he was a human!" Aunt Polly felt a sudden pang of remorse. This was putting the thing in a new light; what was cruelty to a cat MIGHT be cruelty to a boy, too. She began to soften; she felt sorry. Her eyes watered a little, and she put her hand on Tom's head and said gently: "I was meaning for the best, Tom. And, Tom, it DID do you good." Tom looked up in her face with just a perceptible twinkle peeping through his gravity. "I know you was meaning for the best, aunty, and so was I with Peter. It done HIM good, too. I never see him get around so since--" "Oh, go 'long with you, Tom, before you aggravate me again. And you try and see if you can't be a good boy, for once, and you needn't take any more medicine." Tom reached school ahead of time. It was noticed that this strange thing had been occurring every day latterly. And now, as usual of late, he hung about the gate of the schoolyard instead of playing with his comrades. He was sick, he said, and he looked it. He tried to seem to be looking everywhere but whither he really was looking--down the road. Presently Jeff Thatcher hove in sight, and Tom's face lighted; he gazed a moment, and then turned sorrowfully away. When Jeff arrived, Tom accosted him; and "led up" warily to opportunities for remark about Becky, but the giddy lad never could see the bait. Tom watched and watched, hoping whenever a frisking frock came in sight, and hating the owner of it as soon as he saw she was not the right one. At last frocks ceased to appear, and he dropped hopelessly into the dumps; he entered the empty schoolhouse and sat down to suffer. Then one more frock passed in at the gate, and Tom's heart gave a great bound. The next instant he was out, and "going on" like an Indian; yelling, laughing, chasing boys, jumping over the fence at risk of life and limb, throwing handsprings, standing on his head--doing all the heroic things he could conceive of, and keeping a furtive eye out, all the while, to see if Becky Thatcher was noticing. But she seemed to be unconscious of it all; she never looked. Could it be possible that she was not aware that he was there? He carried his exploits to her immediate vicinity; came war-whooping around, snatched a boy's cap, hurled it to the roof of the schoolhouse, broke through a group of boys, tumbling them in every direction, and fell sprawling, himself, under Becky's nose, almost upsetting her--and she turned, with her nose in the air, and he heard her say: "Mf! some people think they're mighty smart--always showing off!" Tom's cheeks burned. He gathered himself up and sneaked off, crushed and crestfallen. CHAPTER XIII TOM'S mind was made up now. He was gloomy and desperate. He was a forsaken, friendless boy, he said; nobody loved him; when they found out what they had driven him to, perhaps they would be sorry; he had tried to do right and get along, but they would not let him; since nothing would do them but to be rid of him, let it be so; and let them blame HIM for the consequences--why shouldn't they? What right had the friendless to complain? Yes, they had forced him to it at last: he would lead a life of crime. There was no choice. By this time he was far down Meadow Lane, and the bell for school to "take up" tinkled faintly upon his ear. He sobbed, now, to think he should never, never hear that old familiar sound any more--it was very hard, but it was forced on him; since he was driven out into the cold world, he must submit--but he forgave them. Then the sobs came thick and fast. Just at this point he met his soul's sworn comrade, Joe Harper --hard-eyed, and with evidently a great and dismal purpose in his heart. Plainly here were "two souls with but a single thought." Tom, wiping his eyes with his sleeve, began to blubber out something about a resolution to escape from hard usage and lack of sympathy at home by roaming abroad into the great world never to return; and ended by hoping that Joe would not forget him. But it transpired that this was a request which Joe had just been going to make of Tom, and had come to hunt him up for that purpose. His mother had whipped him for drinking some cream which he had never tasted and knew nothing about; it was plain that she was tired of him and wished him to go; if she felt that way, there was nothing for him to do but succumb; he hoped she would be happy, and never regret having driven her poor boy out into the unfeeling world to suffer and die. As the two boys walked sorrowing along, they made a new compact to stand by each other and be brothers and never separate till death relieved them of their troubles. Then they began to lay their plans. Joe was for being a hermit, and living on crusts in a remote cave, and dying, some time, of cold and want and grief; but after listening to Tom, he conceded that there were some conspicuous advantages about a life of crime, and so he consented to be a pirate. Three miles below St. Petersburg, at a point where the Mississippi River was a trifle over a mile wide, there was a long, narrow, wooded island, with a shallow bar at the head of it, and this offered well as a rendezvous. It was not inhabited; it lay far over toward the further shore, abreast a dense and almost wholly unpeopled forest. So Jackson's Island was chosen. Who were to be the subjects of their piracies was a matter that did not occur to them. Then they hunted up Huckleberry Finn, and he joined them promptly, for all careers were one to him; he was indifferent. They presently separated to meet at a lonely spot on the river-bank two miles above the village at the favorite hour--which was midnight. There was a small log raft there which they meant to capture. Each would bring hooks and lines, and such provision as he could steal in the most dark and mysterious way--as became outlaws. And before the afternoon was done, they had all managed to enjoy the sweet glory of spreading the fact that pretty soon the town would "hear something." All who got this vague hint were cautioned to "be mum and wait." About midnight Tom arrived with a boiled ham and a few trifles, and stopped in a dense undergrowth on a small bluff overlooking the meeting-place. It was starlight, and very still. The mighty river lay like an ocean at rest. Tom listened a moment, but no sound disturbed the quiet. Then he gave a low, distinct whistle. It was answered from under the bluff. Tom whistled twice more; these signals were answered in the same way. Then a guarded voice said: "Who goes there?" "Tom Sawyer, the Black Avenger of the Spanish Main. Name your names." "Huck Finn the Red-Handed, and Joe Harper the Terror of the Seas." Tom had furnished these titles, from his favorite literature. "'Tis well. Give the countersign." Two hoarse whispers delivered the same awful word simultaneously to the brooding night: "BLOOD!" Then Tom tumbled his ham over the bluff and let himself down after it, tearing both skin and clothes to some extent in the effort. There was an easy, comfortable path along the shore under the bluff, but it lacked the advantages of difficulty and danger so valued by a pirate. The Terror of the Seas had brought a side of bacon, and had about worn himself out with getting it there. Finn the Red-Handed had stolen a skillet and a quantity of half-cured leaf tobacco, and had also brought a few corn-cobs to make pipes with. But none of the pirates smoked or "chewed" but himself. The Black Avenger of the Spanish Main said it would never do to start without some fire. That was a wise thought; matches were hardly known there in that day. They saw a fire smouldering upon a great raft a hundred yards above, and they went stealthily thither and helped themselves to a chunk. They made an imposing adventure of it, saying, "Hist!" every now and then, and suddenly halting with finger on lip; moving with hands on imaginary dagger-hilts; and giving orders in dismal whispers that if "the foe" stirred, to "let him have it to the hilt," because "dead men tell no tales." They knew well enough that the raftsmen were all down at the village laying in stores or having a spree, but still that was no excuse for their conducting this thing in an unpiratical way. They shoved off, presently, Tom in command, Huck at the after oar and Joe at the forward. Tom stood amidships, gloomy-browed, and with folded arms, and gave his orders in a low, stern whisper: "Luff, and bring her to the wind!" "Aye-aye, sir!" "Steady, steady-y-y-y!" "Steady it is, sir!" "Let her go off a point!" "Point it is, sir!" As the boys steadily and monotonously drove the raft toward mid-stream it was no doubt understood that these orders were given only for "style," and were not intended to mean anything in particular. "What sail's she carrying?" "Courses, tops'ls, and flying-jib, sir." "Send the r'yals up! Lay out aloft, there, half a dozen of ye --foretopmaststuns'l! Lively, now!" "Aye-aye, sir!" "Shake out that maintogalans'l! Sheets and braces! NOW my hearties!" "Aye-aye, sir!" "Hellum-a-lee--hard a port! Stand by to meet her when she comes! Port, port! NOW, men! With a will! Stead-y-y-y!" "Steady it is, sir!" The raft drew beyond the middle of the river; the boys pointed her head right, and then lay on their oars. The river was not high, so there was not more than a two or three mile current. Hardly a word was said during the next three-quarters of an hour. Now the raft was passing before the distant town. Two or three glimmering lights showed where it lay, peacefully sleeping, beyond the vague vast sweep of star-gemmed water, unconscious of the tremendous event that was happening. The Black Avenger stood still with folded arms, "looking his last" upon the scene of his former joys and his later sufferings, and wishing "she" could see him now, abroad on the wild sea, facing peril and death with dauntless heart, going to his doom with a grim smile on his lips. It was but a small strain on his imagination to remove Jackson's Island beyond eyeshot of the village, and so he "looked his last" with a broken and satisfied heart. The other pirates were looking their last, too; and they all looked so long that they came near letting the current drift them out of the range of the island. But they discovered the danger in time, and made shift to avert it. About two o'clock in the morning the raft grounded on the bar two hundred yards above the head of the island, and they waded back and forth until they had landed their freight. Part of the little raft's belongings consisted of an old sail, and this they spread over a nook in the bushes for a tent to shelter their provisions; but they themselves would sleep in the open air in good weather, as became outlaws. They built a fire against the side of a great log twenty or thirty steps within the sombre depths of the forest, and then cooked some bacon in the frying-pan for supper, and used up half of the corn "pone" stock they had brought. It seemed glorious sport to be feasting in that wild, free way in the virgin forest of an unexplored and uninhabited island, far from the haunts of men, and they said they never would return to civilization. The climbing fire lit up their faces and threw its ruddy glare upon the pillared tree-trunks of their forest temple, and upon the varnished foliage and festooning vines. When the last crisp slice of bacon was gone, and the last allowance of corn pone devoured, the boys stretched themselves out on the grass, filled with contentment. They could have found a cooler place, but they would not deny themselves such a romantic feature as the roasting camp-fire. "AIN'T it gay?" said Joe. "It's NUTS!" said Tom. "What would the boys say if they could see us?" "Say? Well, they'd just die to be here--hey, Hucky!" "I reckon so," said Huckleberry; "anyways, I'm suited. I don't want nothing better'n this. I don't ever get enough to eat, gen'ally--and here they can't come and pick at a feller and bullyrag him so." "It's just the life for me," said Tom. "You don't have to get up, mornings, and you don't have to go to school, and wash, and all that blame foolishness. You see a pirate don't have to do ANYTHING, Joe, when he's ashore, but a hermit HE has to be praying considerable, and then he don't have any fun, anyway, all by himself that way." "Oh yes, that's so," said Joe, "but I hadn't thought much about it, you know. I'd a good deal rather be a pirate, now that I've tried it." "You see," said Tom, "people don't go much on hermits, nowadays, like they used to in old times, but a pirate's always respected. And a hermit's got to sleep on the hardest place he can find, and put sackcloth and ashes on his head, and stand out in the rain, and--" "What does he put sackcloth and ashes on his head for?" inquired Huck. "I dono. But they've GOT to do it. Hermits always do. You'd have to do that if you was a hermit." "Dern'd if I would," said Huck. "Well, what would you do?" "I dono. But I wouldn't do that." "Why, Huck, you'd HAVE to. How'd you get around it?" "Why, I just wouldn't stand it. I'd run away." "Run away! Well, you WOULD be a nice old slouch of a hermit. You'd be a disgrace." The Red-Handed made no response, being better employed. He had finished gouging out a cob, and now he fitted a weed stem to it, loaded it with tobacco, and was pressing a coal to the charge and blowing a cloud of fragrant smoke--he was in the full bloom of luxurious contentment. The other pirates envied him this majestic vice, and secretly resolved to acquire it shortly. Presently Huck said: "What does pirates have to do?" Tom said: "Oh, they have just a bully time--take ships and burn them, and get the money and bury it in awful places in their island where there's ghosts and things to watch it, and kill everybody in the ships--make 'em walk a plank." "And they carry the women to the island," said Joe; "they don't kill the women." "No," assented Tom, "they don't kill the women--they're too noble. And the women's always beautiful, too. "And don't they wear the bulliest clothes! Oh no! All gold and silver and di'monds," said Joe, with enthusiasm. "Who?" said Huck. "Why, the pirates." Huck scanned his own clothing forlornly. "I reckon I ain't dressed fitten for a pirate," said he, with a regretful pathos in his voice; "but I ain't got none but these." But the other boys told him the fine clothes would come fast enough, after they should have begun their adventures. They made him understand that his poor rags would do to begin with, though it was customary for wealthy pirates to start with a proper wardrobe. Gradually their talk died out and drowsiness began to steal upon the eyelids of the little waifs. The pipe dropped from the fingers of the Red-Handed, and he slept the sleep of the conscience-free and the weary. The Terror of the Seas and the Black Avenger of the Spanish Main had more difficulty in getting to sleep. They said their prayers inwardly, and lying down, since there was nobody there with authority to make them kneel and recite aloud; in truth, they had a mind not to say them at all, but they were afraid to proceed to such lengths as that, lest they might call down a sudden and special thunderbolt from heaven. Then at once they reached and hovered upon the imminent verge of sleep--but an intruder came, now, that would not "down." It was conscience. They began to feel a vague fear that they had been doing wrong to run away; and next they thought of the stolen meat, and then the real torture came. They tried to argue it away by reminding conscience that they had purloined sweetmeats and apples scores of times; but conscience was not to be appeased by such thin plausibilities; it seemed to them, in the end, that there was no getting around the stubborn fact that taking sweetmeats was only "hooking," while taking bacon and hams and such valuables was plain simple stealing--and there was a command against that in the Bible. So they inwardly resolved that so long as they remained in the business, their piracies should not again be sullied with the crime of stealing. Then conscience granted a truce, and these curiously inconsistent pirates fell peacefully to sleep. CHAPTER XIV WHEN Tom awoke in the morning, he wondered where he was. He sat up and rubbed his eyes and looked around. Then he comprehended. It was the cool gray dawn, and there was a delicious sense of repose and peace in the deep pervading calm and silence of the woods. Not a leaf stirred; not a sound obtruded upon great Nature's meditation. Beaded dewdrops stood upon the leaves and grasses. A white layer of ashes covered the fire, and a thin blue breath of smoke rose straight into the air. Joe and Huck still slept. Now, far away in the woods a bird called; another answered; presently the hammering of a woodpecker was heard. Gradually the cool dim gray of the morning whitened, and as gradually sounds multiplied and life manifested itself. The marvel of Nature shaking off sleep and going to work unfolded itself to the musing boy. A little green worm came crawling over a dewy leaf, lifting two-thirds of his body into the air from time to time and "sniffing around," then proceeding again--for he was measuring, Tom said; and when the worm approached him, of its own accord, he sat as still as a stone, with his hopes rising and falling, by turns, as the creature still came toward him or seemed inclined to go elsewhere; and when at last it considered a painful moment with its curved body in the air and then came decisively down upon Tom's leg and began a journey over him, his whole heart was glad--for that meant that he was going to have a new suit of clothes--without the shadow of a doubt a gaudy piratical uniform. Now a procession of ants appeared, from nowhere in particular, and went about their labors; one struggled manfully by with a dead spider five times as big as itself in its arms, and lugged it straight up a tree-trunk. A brown spotted lady-bug climbed the dizzy height of a grass blade, and Tom bent down close to it and said, "Lady-bug, lady-bug, fly away home, your house is on fire, your children's alone," and she took wing and went off to see about it --which did not surprise the boy, for he knew of old that this insect was credulous about conflagrations, and he had practised upon its simplicity more than once. A tumblebug came next, heaving sturdily at its ball, and Tom touched the creature, to see it shut its legs against its body and pretend to be dead. The birds were fairly rioting by this time. A catbird, the Northern mocker, lit in a tree over Tom's head, and trilled out her imitations of her neighbors in a rapture of enjoyment; then a shrill jay swept down, a flash of blue flame, and stopped on a twig almost within the boy's reach, cocked his head to one side and eyed the strangers with a consuming curiosity; a gray squirrel and a big fellow of the "fox" kind came skurrying along, sitting up at intervals to inspect and chatter at the boys, for the wild things had probably never seen a human being before and scarcely knew whether to be afraid or not. All Nature was wide awake and stirring, now; long lances of sunlight pierced down through the dense foliage far and near, and a few butterflies came fluttering upon the scene. Tom stirred up the other pirates and they all clattered away with a shout, and in a minute or two were stripped and chasing after and tumbling over each other in the shallow limpid water of the white sandbar. They felt no longing for the little village sleeping in the distance beyond the majestic waste of water. A vagrant current or a slight rise in the river had carried off their raft, but this only gratified them, since its going was something like burning the bridge between them and civilization. They came back to camp wonderfully refreshed, glad-hearted, and ravenous; and they soon had the camp-fire blazing up again. Huck found a spring of clear cold water close by, and the boys made cups of broad oak or hickory leaves, and felt that water, sweetened with such a wildwood charm as that, would be a good enough substitute for coffee. While Joe was slicing bacon for breakfast, Tom and Huck asked him to hold on a minute; they stepped to a promising nook in the river-bank and threw in their lines; almost immediately they had reward. Joe had not had time to get impatient before they were back again with some handsome bass, a couple of sun-perch and a small catfish--provisions enough for quite a family. They fried the fish with the bacon, and were astonished; for no fish had ever seemed so delicious before. They did not know that the quicker a fresh-water fish is on the fire after he is caught the better he is; and they reflected little upon what a sauce open-air sleeping, open-air exercise, bathing, and a large ingredient of hunger make, too. They lay around in the shade, after breakfast, while Huck had a smoke, and then went off through the woods on an exploring expedition. They tramped gayly along, over decaying logs, through tangled underbrush, among solemn monarchs of the forest, hung from their crowns to the ground with a drooping regalia of grape-vines. Now and then they came upon snug nooks carpeted with grass and jeweled with flowers. They found plenty of things to be delighted with, but nothing to be astonished at. They discovered that the island was about three miles long and a quarter of a mile wide, and that the shore it lay closest to was only separated from it by a narrow channel hardly two hundred yards wide. They took a swim about every hour, so it was close upon the middle of the afternoon when they got back to camp. They were too hungry to stop to fish, but they fared sumptuously upon cold ham, and then threw themselves down in the shade to talk. But the talk soon began to drag, and then died. The stillness, the solemnity that brooded in the woods, and the sense of loneliness, began to tell upon the spirits of the boys. They fell to thinking. A sort of undefined longing crept upon them. This took dim shape, presently--it was budding homesickness. Even Finn the Red-Handed was dreaming of his doorsteps and empty hogsheads. But they were all ashamed of their weakness, and none was brave enough to speak his thought. For some time, now, the boys had been dully conscious of a peculiar sound in the distance, just as one sometimes is of the ticking of a clock which he takes no distinct note of. But now this mysterious sound became more pronounced, and forced a recognition. The boys started, glanced at each other, and then each assumed a listening attitude. There was a long silence, profound and unbroken; then a deep, sullen boom came floating down out of the distance. "What is it!" exclaimed Joe, under his breath. "I wonder," said Tom in a whisper. "'Tain't thunder," said Huckleberry, in an awed tone, "becuz thunder--" "Hark!" said Tom. "Listen--don't talk." They waited a time that seemed an age, and then the same muffled boom troubled the solemn hush. "Let's go and see." They sprang to their feet and hurried to the shore toward the town. They parted the bushes on the bank and peered out over the water. The little steam ferryboat was about a mile below the village, drifting with the current. Her broad deck seemed crowded with people. There were a great many skiffs rowing about or floating with the stream in the neighborhood of the ferryboat, but the boys could not determine what the men in them were doing. Presently a great jet of white smoke burst from the ferryboat's side, and as it expanded and rose in a lazy cloud, that same dull throb of sound was borne to the listeners again. "I know now!" exclaimed Tom; "somebody's drownded!" "That's it!" said Huck; "they done that last summer, when Bill Turner got drownded; they shoot a cannon over the water, and that makes him come up to the top. Yes, and they take loaves of bread and put quicksilver in 'em and set 'em afloat, and wherever there's anybody that's drownded, they'll float right there and stop." "Yes, I've heard about that," said Joe. "I wonder what makes the bread do that." "Oh, it ain't the bread, so much," said Tom; "I reckon it's mostly what they SAY over it before they start it out." "But they don't say anything over it," said Huck. "I've seen 'em and they don't." "Well, that's funny," said Tom. "But maybe they say it to themselves. Of COURSE they do. Anybody might know that." The other boys agreed that there was reason in what Tom said, because an ignorant lump of bread, uninstructed by an incantation, could not be expected to act very intelligently when set upon an errand of such gravity. "By jings, I wish I was over there, now," said Joe. "I do too" said Huck "I'd give heaps to know who it is." The boys still listened and watched. Presently a revealing thought flashed through Tom's mind, and he exclaimed: "Boys, I know who's drownded--it's us!" They felt like heroes in an instant. Here was a gorgeous triumph; they were missed; they were mourned; hearts were breaking on their account; tears were being shed; accusing memories of unkindness to these poor lost lads were rising up, and unavailing regrets and remorse were being indulged; and best of all, the departed were the talk of the whole town, and the envy of all the boys, as far as this dazzling notoriety was concerned. This was fine. It was worth while to be a pirate, after all. As twilight drew on, the ferryboat went back to her accustomed business and the skiffs disappeared. The pirates returned to camp. They were jubilant with vanity over their new grandeur and the illustrious trouble they were making. They caught fish, cooked supper and ate it, and then fell to guessing at what the village was thinking and saying about them; and the pictures they drew of the public distress on their account were gratifying to look upon--from their point of view. But when the shadows of night closed them in, they gradually ceased to talk, and sat gazing into the fire, with their minds evidently wandering elsewhere. The excitement was gone, now, and Tom and Joe could not keep back thoughts of certain persons at home who were not enjoying this fine frolic as much as they were. Misgivings came; they grew troubled and unhappy; a sigh or two escaped, unawares. By and by Joe timidly ventured upon a roundabout "feeler" as to how the others might look upon a return to civilization--not right now, but-- Tom withered him with derision! Huck, being uncommitted as yet, joined in with Tom, and the waverer quickly "explained," and was glad to get out of the scrape with as little taint of chicken-hearted homesickness clinging to his garments as he could. Mutiny was effectually laid to rest for the moment. As the night deepened, Huck began to nod, and presently to snore. Joe followed next. Tom lay upon his elbow motionless, for some time, watching the two intently. At last he got up cautiously, on his knees, and went searching among the grass and the flickering reflections flung by the camp-fire. He picked up and inspected several large semi-cylinders of the thin white bark of a sycamore, and finally chose two which seemed to suit him. Then he knelt by the fire and painfully wrote something upon each of these with his "red keel"; one he rolled up and put in his jacket pocket, and the other he put in Joe's hat and removed it to a little distance from the owner. And he also put into the hat certain schoolboy treasures of almost inestimable value--among them a lump of chalk, an India-rubber ball, three fishhooks, and one of that kind of marbles known as a "sure 'nough crystal." Then he tiptoed his way cautiously among the trees till he felt that he was out of hearing, and straightway broke into a keen run in the direction of the sandbar. CHAPTER XV A FEW minutes later Tom was in the shoal water of the bar, wading toward the Illinois shore. Before the depth reached his middle he was half-way over; the current would permit no more wading, now, so he struck out confidently to swim the remaining hundred yards. He swam quartering upstream, but still was swept downward rather faster than he had expected. However, he reached the shore finally, and drifted along till he found a low place and drew himself out. He put his hand on his jacket pocket, found his piece of bark safe, and then struck through the woods, following the shore, with streaming garments. Shortly before ten o'clock he came out into an open place opposite the village, and saw the ferryboat lying in the shadow of the trees and the high bank. Everything was quiet under the blinking stars. He crept down the bank, watching with all his eyes, slipped into the water, swam three or four strokes and climbed into the skiff that did "yawl" duty at the boat's stern. He laid himself down under the thwarts and waited, panting. Presently the cracked bell tapped and a voice gave the order to "cast off." A minute or two later the skiff's head was standing high up, against the boat's swell, and the voyage was begun. Tom felt happy in his success, for he knew it was the boat's last trip for the night. At the end of a long twelve or fifteen minutes the wheels stopped, and Tom slipped overboard and swam ashore in the dusk, landing fifty yards downstream, out of danger of possible stragglers. He flew along unfrequented alleys, and shortly found himself at his aunt's back fence. He climbed over, approached the "ell," and looked in at the sitting-room window, for a light was burning there. There sat Aunt Polly, Sid, Mary, and Joe Harper's mother, grouped together, talking. They were by the bed, and the bed was between them and the door. Tom went to the door and began to softly lift the latch; then he pressed gently and the door yielded a crack; he continued pushing cautiously, and quaking every time it creaked, till he judged he might squeeze through on his knees; so he put his head through and began, warily. "What makes the candle blow so?" said Aunt Polly. Tom hurried up. "Why, that door's open, I believe. Why, of course it is. No end of strange things now. Go 'long and shut it, Sid." Tom disappeared under the bed just in time. He lay and "breathed" himself for a time, and then crept to where he could almost touch his aunt's foot. "But as I was saying," said Aunt Polly, "he warn't BAD, so to say --only mischEEvous. Only just giddy, and harum-scarum, you know. He warn't any more responsible than a colt. HE never meant any harm, and he was the best-hearted boy that ever was"--and she began to cry. "It was just so with my Joe--always full of his devilment, and up to every kind of mischief, but he was just as unselfish and kind as he could be--and laws bless me, to think I went and whipped him for taking that cream, never once recollecting that I throwed it out myself because it was sour, and I never to see him again in this world, never, never, never, poor abused boy!" And Mrs. Harper sobbed as if her heart would break. "I hope Tom's better off where he is," said Sid, "but if he'd been better in some ways--" "SID!" Tom felt the glare of the old lady's eye, though he could not see it. "Not a word against my Tom, now that he's gone! God'll take care of HIM--never you trouble YOURself, sir! Oh, Mrs. Harper, I don't know how to give him up! I don't know how to give him up! He was such a comfort to me, although he tormented my old heart out of me, 'most." "The Lord giveth and the Lord hath taken away--Blessed be the name of the Lord! But it's so hard--Oh, it's so hard! Only last Saturday my Joe busted a firecracker right under my nose and I knocked him sprawling. Little did I know then, how soon--Oh, if it was to do over again I'd hug him and bless him for it." "Yes, yes, yes, I know just how you feel, Mrs. Harper, I know just exactly how you feel. No longer ago than yesterday noon, my Tom took and filled the cat full of Pain-killer, and I did think the cretur would tear the house down. And God forgive me, I cracked Tom's head with my thimble, poor boy, poor dead boy. But he's out of all his troubles now. And the last words I ever heard him say was to reproach--" But this memory was too much for the old lady, and she broke entirely down. Tom was snuffling, now, himself--and more in pity of himself than anybody else. He could hear Mary crying, and putting in a kindly word for him from time to time. He began to have a nobler opinion of himself than ever before. Still, he was sufficiently touched by his aunt's grief to long to rush out from under the bed and overwhelm her with joy--and the theatrical gorgeousness of the thing appealed strongly to his nature, too, but he resisted and lay still. He went on listening, and gathered by odds and ends that it was conjectured at first that the boys had got drowned while taking a swim; then the small raft had been missed; next, certain boys said the missing lads had promised that the village should "hear something" soon; the wise-heads had "put this and that together" and decided that the lads had gone off on that raft and would turn up at the next town below, presently; but toward noon the raft had been found, lodged against the Missouri shore some five or six miles below the village --and then hope perished; they must be drowned, else hunger would have driven them home by nightfall if not sooner. It was believed that the search for the bodies had been a fruitless effort merely because the drowning must have occurred in mid-channel, since the boys, being good swimmers, would otherwise have escaped to shore. This was Wednesday night. If the bodies continued missing until Sunday, all hope would be given over, and the funerals would be preached on that morning. Tom shuddered. Mrs. Harper gave a sobbing good-night and turned to go. Then with a mutual impulse the two bereaved women flung themselves into each other's arms and had a good, consoling cry, and then parted. Aunt Polly was tender far beyond her wont, in her good-night to Sid and Mary. Sid snuffled a bit and Mary went off crying with all her heart. Aunt Polly knelt down and prayed for Tom so touchingly, so appealingly, and with such measureless love in her words and her old trembling voice, that he was weltering in tears again, long before she was through. He had to keep still long after she went to bed, for she kept making broken-hearted ejaculations from time to time, tossing unrestfully, and turning over. But at last she was still, only moaning a little in her sleep. Now the boy stole out, rose gradually by the bedside, shaded the candle-light with his hand, and stood regarding her. His heart was full of pity for her. He took out his sycamore scroll and placed it by the candle. But something occurred to him, and he lingered considering. His face lighted with a happy solution of his thought; he put the bark hastily in his pocket. Then he bent over and kissed the faded lips, and straightway made his stealthy exit, latching the door behind him. He threaded his way back to the ferry landing, found nobody at large there, and walked boldly on board the boat, for he knew she was tenantless except that there was a watchman, who always turned in and slept like a graven image. He untied the skiff at the stern, slipped into it, and was soon rowing cautiously upstream. When he had pulled a mile above the village, he started quartering across and bent himself stoutly to his work. He hit the landing on the other side neatly, for this was a familiar bit of work to him. He was moved to capture the skiff, arguing that it might be considered a ship and therefore legitimate prey for a pirate, but he knew a thorough search would be made for it and that might end in revelations. So he stepped ashore and entered the woods. He sat down and took a long rest, torturing himself meanwhile to keep awake, and then started warily down the home-stretch. The night was far spent. It was broad daylight before he found himself fairly abreast the island bar. He rested again until the sun was well up and gilding the great river with its splendor, and then he plunged into the stream. A little later he paused, dripping, upon the threshold of the camp, and heard Joe say: "No, Tom's true-blue, Huck, and he'll come back. He won't desert. He knows that would be a disgrace to a pirate, and Tom's too proud for that sort of thing. He's up to something or other. Now I wonder what?" "Well, the things is ours, anyway, ain't they?" "Pretty near, but not yet, Huck. The writing says they are if he ain't back here to breakfast." "Which he is!" exclaimed Tom, with fine dramatic effect, stepping grandly into camp. A sumptuous breakfast of bacon and fish was shortly provided, and as the boys set to work upon it, Tom recounted (and adorned) his adventures. They were a vain and boastful company of heroes when the tale was done. Then Tom hid himself away in a shady nook to sleep till noon, and the other pirates got ready to fish and explore. CHAPTER XVI AFTER dinner all the gang turned out to hunt for turtle eggs on the bar. They went about poking sticks into the sand, and when they found a soft place they went down on their knees and dug with their hands. Sometimes they would take fifty or sixty eggs out of one hole. They were perfectly round white things a trifle smaller than an English walnut. They had a famous fried-egg feast that night, and another on Friday morning. After breakfast they went whooping and prancing out on the bar, and chased each other round and round, shedding clothes as they went, until they were naked, and then continued the frolic far away up the shoal water of the bar, against the stiff current, which latter tripped their legs from under them from time to time and greatly increased the fun. And now and then they stooped in a group and splashed water in each other's faces with their palms, gradually approaching each other, with averted faces to avoid the strangling sprays, and finally gripping and struggling till the best man ducked his neighbor, and then they all went under in a tangle of white legs and arms and came up blowing, sputtering, laughing, and gasping for breath at one and the same time. When they were well exhausted, they would run out and sprawl on the dry, hot sand, and lie there and cover themselves up with it, and by and by break for the water again and go through the original performance once more. Finally it occurred to them that their naked skin represented flesh-colored "tights" very fairly; so they drew a ring in the sand and had a circus--with three clowns in it, for none would yield this proudest post to his neighbor. Next they got their marbles and played "knucks" and "ring-taw" and "keeps" till that amusement grew stale. Then Joe and Huck had another swim, but Tom would not venture, because he found that in kicking off his trousers he had kicked his string of rattlesnake rattles off his ankle, and he wondered how he had escaped cramp so long without the protection of this mysterious charm. He did not venture again until he had found it, and by that time the other boys were tired and ready to rest. They gradually wandered apart, dropped into the "dumps," and fell to gazing longingly across the wide river to where the village lay drowsing in the sun. Tom found himself writing "BECKY" in the sand with his big toe; he scratched it out, and was angry with himself for his weakness. But he wrote it again, nevertheless; he could not help it. He erased it once more and then took himself out of temptation by driving the other boys together and joining them. But Joe's spirits had gone down almost beyond resurrection. He was so homesick that he could hardly endure the misery of it. The tears lay very near the surface. Huck was melancholy, too. Tom was downhearted, but tried hard not to show it. He had a secret which he was not ready to tell, yet, but if this mutinous depression was not broken up soon, he would have to bring it out. He said, with a great show of cheerfulness: "I bet there's been pirates on this island before, boys. We'll explore it again. They've hid treasures here somewhere. How'd you feel to light on a rotten chest full of gold and silver--hey?" But it roused only faint enthusiasm, which faded out, with no reply. Tom tried one or two other seductions; but they failed, too. It was discouraging work. Joe sat poking up the sand with a stick and looking very gloomy. Finally he said: "Oh, boys, let's give it up. I want to go home. It's so lonesome." "Oh no, Joe, you'll feel better by and by," said Tom. "Just think of the fishing that's here." "I don't care for fishing. I want to go home." "But, Joe, there ain't such another swimming-place anywhere." "Swimming's no good. I don't seem to care for it, somehow, when there ain't anybody to say I sha'n't go in. I mean to go home." "Oh, shucks! Baby! You want to see your mother, I reckon." "Yes, I DO want to see my mother--and you would, too, if you had one. I ain't any more baby than you are." And Joe snuffled a little. "Well, we'll let the cry-baby go home to his mother, won't we, Huck? Poor thing--does it want to see its mother? And so it shall. You like it here, don't you, Huck? We'll stay, won't we?" Huck said, "Y-e-s"--without any heart in it. "I'll never speak to you again as long as I live," said Joe, rising. "There now!" And he moved moodily away and began to dress himself. "Who cares!" said Tom. "Nobody wants you to. Go 'long home and get laughed at. Oh, you're a nice pirate. Huck and me ain't cry-babies. We'll stay, won't we, Huck? Let him go if he wants to. I reckon we can get along without him, per'aps." But Tom was uneasy, nevertheless, and was alarmed to see Joe go sullenly on with his dressing. And then it was discomforting to see Huck eying Joe's preparations so wistfully, and keeping up such an ominous silence. Presently, without a parting word, Joe began to wade off toward the Illinois shore. Tom's heart began to sink. He glanced at Huck. Huck could not bear the look, and dropped his eyes. Then he said: "I want to go, too, Tom. It was getting so lonesome anyway, and now it'll be worse. Let's us go, too, Tom." "I won't! You can all go, if you want to. I mean to stay." "Tom, I better go." "Well, go 'long--who's hendering you." Huck began to pick up his scattered clothes. He said: "Tom, I wisht you'd come, too. Now you think it over. We'll wait for you when we get to shore." "Well, you'll wait a blame long time, that's all." Huck started sorrowfully away, and Tom stood looking after him, with a strong desire tugging at his heart to yield his pride and go along too. He hoped the boys would stop, but they still waded slowly on. It suddenly dawned on Tom that it was become very lonely and still. He made one final struggle with his pride, and then darted after his comrades, yelling: "Wait! Wait! I want to tell you something!" They presently stopped and turned around. When he got to where they were, he began unfolding his secret, and they listened moodily till at last they saw the "point" he was driving at, and then they set up a war-whoop of applause and said it was "splendid!" and said if he had told them at first, they wouldn't have started away. He made a plausible excuse; but his real reason had been the fear that not even the secret would keep them with him any very great length of time, and so he had meant to hold it in reserve as a last seduction. The lads came gayly back and went at their sports again with a will, chattering all the time about Tom's stupendous plan and admiring the genius of it. After a dainty egg and fish dinner, Tom said he wanted to learn to smoke, now. Joe caught at the idea and said he would like to try, too. So Huck made pipes and filled them. These novices had never smoked anything before but cigars made of grape-vine, and they "bit" the tongue, and were not considered manly anyway. Now they stretched themselves out on their elbows and began to puff, charily, and with slender confidence. The smoke had an unpleasant taste, and they gagged a little, but Tom said: "Why, it's just as easy! If I'd a knowed this was all, I'd a learnt long ago." "So would I," said Joe. "It's just nothing." "Why, many a time I've looked at people smoking, and thought well I wish I could do that; but I never thought I could," said Tom. "That's just the way with me, hain't it, Huck? You've heard me talk just that way--haven't you, Huck? I'll leave it to Huck if I haven't." "Yes--heaps of times," said Huck. "Well, I have too," said Tom; "oh, hundreds of times. Once down by the slaughter-house. Don't you remember, Huck? Bob Tanner was there, and Johnny Miller, and Jeff Thatcher, when I said it. Don't you remember, Huck, 'bout me saying that?" "Yes, that's so," said Huck. "That was the day after I lost a white alley. No, 'twas the day before." "There--I told you so," said Tom. "Huck recollects it." "I bleeve I could smoke this pipe all day," said Joe. "I don't feel sick." "Neither do I," said Tom. "I could smoke it all day. But I bet you Jeff Thatcher couldn't." "Jeff Thatcher! Why, he'd keel over just with two draws. Just let him try it once. HE'D see!" "I bet he would. And Johnny Miller--I wish could see Johnny Miller tackle it once." "Oh, don't I!" said Joe. "Why, I bet you Johnny Miller couldn't any more do this than nothing. Just one little snifter would fetch HIM." "'Deed it would, Joe. Say--I wish the boys could see us now." "So do I." "Say--boys, don't say anything about it, and some time when they're around, I'll come up to you and say, 'Joe, got a pipe? I want a smoke.' And you'll say, kind of careless like, as if it warn't anything, you'll say, 'Yes, I got my OLD pipe, and another one, but my tobacker ain't very good.' And I'll say, 'Oh, that's all right, if it's STRONG enough.' And then you'll out with the pipes, and we'll light up just as ca'm, and then just see 'em look!" "By jings, that'll be gay, Tom! I wish it was NOW!" "So do I! And when we tell 'em we learned when we was off pirating, won't they wish they'd been along?" "Oh, I reckon not! I'll just BET they will!" So the talk ran on. But presently it began to flag a trifle, and grow disjointed. The silences widened; the expectoration marvellously increased. Every pore inside the boys' cheeks became a spouting fountain; they could scarcely bail out the cellars under their tongues fast enough to prevent an inundation; little overflowings down their throats occurred in spite of all they could do, and sudden retchings followed every time. Both boys were looking very pale and miserable, now. Joe's pipe dropped from his nerveless fingers. Tom's followed. Both fountains were going furiously and both pumps bailing with might and main. Joe said feebly: "I've lost my knife. I reckon I better go and find it." Tom said, with quivering lips and halting utterance: "I'll help you. You go over that way and I'll hunt around by the spring. No, you needn't come, Huck--we can find it." So Huck sat down again, and waited an hour. Then he found it lonesome, and went to find his comrades. They were wide apart in the woods, both very pale, both fast asleep. But something informed him that if they had had any trouble they had got rid of it. They were not talkative at supper that night. They had a humble look, and when Huck prepared his pipe after the meal and was going to prepare theirs, they said no, they were not feeling very well--something they ate at dinner had disagreed with them. About midnight Joe awoke, and called the boys. There was a brooding oppressiveness in the air that seemed to bode something. The boys huddled themselves together and sought the friendly companionship of the fire, though the dull dead heat of the breathless atmosphere was stifling. They sat still, intent and waiting. The solemn hush continued. Beyond the light of the fire everything was swallowed up in the blackness of darkness. Presently there came a quivering glow that vaguely revealed the foliage for a moment and then vanished. By and by another came, a little stronger. Then another. Then a faint moan came sighing through the branches of the forest and the boys felt a fleeting breath upon their cheeks, and shuddered with the fancy that the Spirit of the Night had gone by. There was a pause. Now a weird flash turned night into day and showed every little grass-blade, separate and distinct, that grew about their feet. And it showed three white, startled faces, too. A deep peal of thunder went rolling and tumbling down the heavens and lost itself in sullen rumblings in the distance. A sweep of chilly air passed by, rustling all the leaves and snowing the flaky ashes broadcast about the fire. Another fierce glare lit up the forest and an instant crash followed that seemed to rend the tree-tops right over the boys' heads. They clung together in terror, in the thick gloom that followed. A few big rain-drops fell pattering upon the leaves. "Quick! boys, go for the tent!" exclaimed Tom. They sprang away, stumbling over roots and among vines in the dark, no two plunging in the same direction. A furious blast roared through the trees, making everything sing as it went. One blinding flash after another came, and peal on peal of deafening thunder. And now a drenching rain poured down and the rising hurricane drove it in sheets along the ground. The boys cried out to each other, but the roaring wind and the booming thunder-blasts drowned their voices utterly. However, one by one they straggled in at last and took shelter under the tent, cold, scared, and streaming with water; but to have company in misery seemed something to be grateful for. They could not talk, the old sail flapped so furiously, even if the other noises would have allowed them. The tempest rose higher and higher, and presently the sail tore loose from its fastenings and went winging away on the blast. The boys seized each others' hands and fled, with many tumblings and bruises, to the shelter of a great oak that stood upon the river-bank. Now the battle was at its highest. Under the ceaseless conflagration of lightning that flamed in the skies, everything below stood out in clean-cut and shadowless distinctness: the bending trees, the billowy river, white with foam, the driving spray of spume-flakes, the dim outlines of the high bluffs on the other side, glimpsed through the drifting cloud-rack and the slanting veil of rain. Every little while some giant tree yielded the fight and fell crashing through the younger growth; and the unflagging thunder-peals came now in ear-splitting explosive bursts, keen and sharp, and unspeakably appalling. The storm culminated in one matchless effort that seemed likely to tear the island to pieces, burn it up, drown it to the tree-tops, blow it away, and deafen every creature in it, all at one and the same moment. It was a wild night for homeless young heads to be out in. But at last the battle was done, and the forces retired with weaker and weaker threatenings and grumblings, and peace resumed her sway. The boys went back to camp, a good deal awed; but they found there was still something to be thankful for, because the great sycamore, the shelter of their beds, was a ruin, now, blasted by the lightnings, and they were not under it when the catastrophe happened. Everything in camp was drenched, the camp-fire as well; for they were but heedless lads, like their generation, and had made no provision against rain. Here was matter for dismay, for they were soaked through and chilled. They were eloquent in their distress; but they presently discovered that the fire had eaten so far up under the great log it had been built against (where it curved upward and separated itself from the ground), that a handbreadth or so of it had escaped wetting; so they patiently wrought until, with shreds and bark gathered from the under sides of sheltered logs, they coaxed the fire to burn again. Then they piled on great dead boughs till they had a roaring furnace, and were glad-hearted once more. They dried their boiled ham and had a feast, and after that they sat by the fire and expanded and glorified their midnight adventure until morning, for there was not a dry spot to sleep on, anywhere around. As the sun began to steal in upon the boys, drowsiness came over them, and they went out on the sandbar and lay down to sleep. They got scorched out by and by, and drearily set about getting breakfast. After the meal they felt rusty, and stiff-jointed, and a little homesick once more. Tom saw the signs, and fell to cheering up the pirates as well as he could. But they cared nothing for marbles, or circus, or swimming, or anything. He reminded them of the imposing secret, and raised a ray of cheer. While it lasted, he got them interested in a new device. This was to knock off being pirates, for a while, and be Indians for a change. They were attracted by this idea; so it was not long before they were stripped, and striped from head to heel with black mud, like so many zebras--all of them chiefs, of course--and then they went tearing through the woods to attack an English settlement. By and by they separated into three hostile tribes, and darted upon each other from ambush with dreadful war-whoops, and killed and scalped each other by thousands. It was a gory day. Consequently it was an extremely satisfactory one. They assembled in camp toward supper-time, hungry and happy; but now a difficulty arose--hostile Indians could not break the bread of hospitality together without first making peace, and this was a simple impossibility without smoking a pipe of peace. There was no other process that ever they had heard of. Two of the savages almost wished they had remained pirates. However, there was no other way; so with such show of cheerfulness as they could muster they called for the pipe and took their whiff as it passed, in due form. And behold, they were glad they had gone into savagery, for they had gained something; they found that they could now smoke a little without having to go and hunt for a lost knife; they did not get sick enough to be seriously uncomfortable. They were not likely to fool away this high promise for lack of effort. No, they practised cautiously, after supper, with right fair success, and so they spent a jubilant evening. They were prouder and happier in their new acquirement than they would have been in the scalping and skinning of the Six Nations. We will leave them to smoke and chatter and brag, since we have no further use for them at present. CHAPTER XVII BUT there was no hilarity in the little town that same tranquil Saturday afternoon. The Harpers, and Aunt Polly's family, were being put into mourning, with great grief and many tears. An unusual quiet possessed the village, although it was ordinarily quiet enough, in all conscience. The villagers conducted their concerns with an absent air, and talked little; but they sighed often. The Saturday holiday seemed a burden to the children. They had no heart in their sports, and gradually gave them up. In the afternoon Becky Thatcher found herself moping about the deserted schoolhouse yard, and feeling very melancholy. But she found nothing there to comfort her. She soliloquized: "Oh, if I only had a brass andiron-knob again! But I haven't got anything now to remember him by." And she choked back a little sob. Presently she stopped, and said to herself: "It was right here. Oh, if it was to do over again, I wouldn't say that--I wouldn't say it for the whole world. But he's gone now; I'll never, never, never see him any more." This thought broke her down, and she wandered away, with tears rolling down her cheeks. Then quite a group of boys and girls--playmates of Tom's and Joe's--came by, and stood looking over the paling fence and talking in reverent tones of how Tom did so-and-so the last time they saw him, and how Joe said this and that small trifle (pregnant with awful prophecy, as they could easily see now!)--and each speaker pointed out the exact spot where the lost lads stood at the time, and then added something like "and I was a-standing just so--just as I am now, and as if you was him--I was as close as that--and he smiled, just this way--and then something seemed to go all over me, like--awful, you know--and I never thought what it meant, of course, but I can see now!" Then there was a dispute about who saw the dead boys last in life, and many claimed that dismal distinction, and offered evidences, more or less tampered with by the witness; and when it was ultimately decided who DID see the departed last, and exchanged the last words with them, the lucky parties took upon themselves a sort of sacred importance, and were gaped at and envied by all the rest. One poor chap, who had no other grandeur to offer, said with tolerably manifest pride in the remembrance: "Well, Tom Sawyer he licked me once." But that bid for glory was a failure. Most of the boys could say that, and so that cheapened the distinction too much. The group loitered away, still recalling memories of the lost heroes, in awed voices. When the Sunday-school hour was finished, the next morning, the bell began to toll, instead of ringing in the usual way. It was a very still Sabbath, and the mournful sound seemed in keeping with the musing hush that lay upon nature. The villagers began to gather, loitering a moment in the vestibule to converse in whispers about the sad event. But there was no whispering in the house; only the funereal rustling of dresses as the women gathered to their seats disturbed the silence there. None could remember when the little church had been so full before. There was finally a waiting pause, an expectant dumbness, and then Aunt Polly entered, followed by Sid and Mary, and they by the Harper family, all in deep black, and the whole congregation, the old minister as well, rose reverently and stood until the mourners were seated in the front pew. There was another communing silence, broken at intervals by muffled sobs, and then the minister spread his hands abroad and prayed. A moving hymn was sung, and the text followed: "I am the Resurrection and the Life." As the service proceeded, the clergyman drew such pictures of the graces, the winning ways, and the rare promise of the lost lads that every soul there, thinking he recognized these pictures, felt a pang in remembering that he had persistently blinded himself to them always before, and had as persistently seen only faults and flaws in the poor boys. The minister related many a touching incident in the lives of the departed, too, which illustrated their sweet, generous natures, and the people could easily see, now, how noble and beautiful those episodes were, and remembered with grief that at the time they occurred they had seemed rank rascalities, well deserving of the cowhide. The congregation became more and more moved, as the pathetic tale went on, till at last the whole company broke down and joined the weeping mourners in a chorus of anguished sobs, the preacher himself giving way to his feelings, and crying in the pulpit. There was a rustle in the gallery, which nobody noticed; a moment later the church door creaked; the minister raised his streaming eyes above his handkerchief, and stood transfixed! First one and then another pair of eyes followed the minister's, and then almost with one impulse the congregation rose and stared while the three dead boys came marching up the aisle, Tom in the lead, Joe next, and Huck, a ruin of drooping rags, sneaking sheepishly in the rear! They had been hid in the unused gallery listening to their own funeral sermon! Aunt Polly, Mary, and the Harpers threw themselves upon their restored ones, smothered them with kisses and poured out thanksgivings, while poor Huck stood abashed and uncomfortable, not knowing exactly what to do or where to hide from so many unwelcoming eyes. He wavered, and started to slink away, but Tom seized him and said: "Aunt Polly, it ain't fair. Somebody's got to be glad to see Huck." "And so they shall. I'm glad to see him, poor motherless thing!" And the loving attentions Aunt Polly lavished upon him were the one thing capable of making him more uncomfortable than he was before. Suddenly the minister shouted at the top of his voice: "Praise God from whom all blessings flow--SING!--and put your hearts in it!" And they did. Old Hundred swelled up with a triumphant burst, and while it shook the rafters Tom Sawyer the Pirate looked around upon the envying juveniles about him and confessed in his heart that this was the proudest moment of his life. As the "sold" congregation trooped out they said they would almost be willing to be made ridiculous again to hear Old Hundred sung like that once more. Tom got more cuffs and kisses that day--according to Aunt Polly's varying moods--than he had earned before in a year; and he hardly knew which expressed the most gratefulness to God and affection for himself. CHAPTER XVIII THAT was Tom's great secret--the scheme to return home with his brother pirates and attend their own funerals. They had paddled over to the Missouri shore on a log, at dusk on Saturday, landing five or six miles below the village; they had slept in the woods at the edge of the town till nearly daylight, and had then crept through back lanes and alleys and finished their sleep in the gallery of the church among a chaos of invalided benches. At breakfast, Monday morning, Aunt Polly and Mary were very loving to Tom, and very attentive to his wants. There was an unusual amount of talk. In the course of it Aunt Polly said: "Well, I don't say it wasn't a fine joke, Tom, to keep everybody suffering 'most a week so you boys had a good time, but it is a pity you could be so hard-hearted as to let me suffer so. If you could come over on a log to go to your funeral, you could have come over and give me a hint some way that you warn't dead, but only run off." "Yes, you could have done that, Tom," said Mary; "and I believe you would if you had thought of it." "Would you, Tom?" said Aunt Polly, her face lighting wistfully. "Say, now, would you, if you'd thought of it?" "I--well, I don't know. 'Twould 'a' spoiled everything." "Tom, I hoped you loved me that much," said Aunt Polly, with a grieved tone that discomforted the boy. "It would have been something if you'd cared enough to THINK of it, even if you didn't DO it." "Now, auntie, that ain't any harm," pleaded Mary; "it's only Tom's giddy way--he is always in such a rush that he never thinks of anything." "More's the pity. Sid would have thought. And Sid would have come and DONE it, too. Tom, you'll look back, some day, when it's too late, and wish you'd cared a little more for me when it would have cost you so little." "Now, auntie, you know I do care for you," said Tom. "I'd know it better if you acted more like it." "I wish now I'd thought," said Tom, with a repentant tone; "but I dreamt about you, anyway. That's something, ain't it?" "It ain't much--a cat does that much--but it's better than nothing. What did you dream?" "Why, Wednesday night I dreamt that you was sitting over there by the bed, and Sid was sitting by the woodbox, and Mary next to him." "Well, so we did. So we always do. I'm glad your dreams could take even that much trouble about us." "And I dreamt that Joe Harper's mother was here." "Why, she was here! Did you dream any more?" "Oh, lots. But it's so dim, now." "Well, try to recollect--can't you?" "Somehow it seems to me that the wind--the wind blowed the--the--" "Try harder, Tom! The wind did blow something. Come!" Tom pressed his fingers on his forehead an anxious minute, and then said: "I've got it now! I've got it now! It blowed the candle!" "Mercy on us! Go on, Tom--go on!" "And it seems to me that you said, 'Why, I believe that that door--'" "Go ON, Tom!" "Just let me study a moment--just a moment. Oh, yes--you said you believed the door was open." "As I'm sitting here, I did! Didn't I, Mary! Go on!" "And then--and then--well I won't be certain, but it seems like as if you made Sid go and--and--" "Well? Well? What did I make him do, Tom? What did I make him do?" "You made him--you--Oh, you made him shut it." "Well, for the land's sake! I never heard the beat of that in all my days! Don't tell ME there ain't anything in dreams, any more. Sereny Harper shall know of this before I'm an hour older. I'd like to see her get around THIS with her rubbage 'bout superstition. Go on, Tom!" "Oh, it's all getting just as bright as day, now. Next you said I warn't BAD, only mischeevous and harum-scarum, and not any more responsible than--than--I think it was a colt, or something." "And so it was! Well, goodness gracious! Go on, Tom!" "And then you began to cry." "So I did. So I did. Not the first time, neither. And then--" "Then Mrs. Harper she began to cry, and said Joe was just the same, and she wished she hadn't whipped him for taking cream when she'd throwed it out her own self--" "Tom! The sperrit was upon you! You was a prophesying--that's what you was doing! Land alive, go on, Tom!" "Then Sid he said--he said--" "I don't think I said anything," said Sid. "Yes you did, Sid," said Mary. "Shut your heads and let Tom go on! What did he say, Tom?" "He said--I THINK he said he hoped I was better off where I was gone to, but if I'd been better sometimes--" "THERE, d'you hear that! It was his very words!" "And you shut him up sharp." "I lay I did! There must 'a' been an angel there. There WAS an angel there, somewheres!" "And Mrs. Harper told about Joe scaring her with a firecracker, and you told about Peter and the Painkiller--" "Just as true as I live!" "And then there was a whole lot of talk 'bout dragging the river for us, and 'bout having the funeral Sunday, and then you and old Miss Harper hugged and cried, and she went." "It happened just so! It happened just so, as sure as I'm a-sitting in these very tracks. Tom, you couldn't told it more like if you'd 'a' seen it! And then what? Go on, Tom!" "Then I thought you prayed for me--and I could see you and hear every word you said. And you went to bed, and I was so sorry that I took and wrote on a piece of sycamore bark, 'We ain't dead--we are only off being pirates,' and put it on the table by the candle; and then you looked so good, laying there asleep, that I thought I went and leaned over and kissed you on the lips." "Did you, Tom, DID you! I just forgive you everything for that!" And she seized the boy in a crushing embrace that made him feel like the guiltiest of villains. "It was very kind, even though it was only a--dream," Sid soliloquized just audibly. "Shut up, Sid! A body does just the same in a dream as he'd do if he was awake. Here's a big Milum apple I've been saving for you, Tom, if you was ever found again--now go 'long to school. I'm thankful to the good God and Father of us all I've got you back, that's long-suffering and merciful to them that believe on Him and keep His word, though goodness knows I'm unworthy of it, but if only the worthy ones got His blessings and had His hand to help them over the rough places, there's few enough would smile here or ever enter into His rest when the long night comes. Go 'long Sid, Mary, Tom--take yourselves off--you've hendered me long enough." The children left for school, and the old lady to call on Mrs. Harper and vanquish her realism with Tom's marvellous dream. Sid had better judgment than to utter the thought that was in his mind as he left the house. It was this: "Pretty thin--as long a dream as that, without any mistakes in it!" What a hero Tom was become, now! He did not go skipping and prancing, but moved with a dignified swagger as became a pirate who felt that the public eye was on him. And indeed it was; he tried not to seem to see the looks or hear the remarks as he passed along, but they were food and drink to him. Smaller boys than himself flocked at his heels, as proud to be seen with him, and tolerated by him, as if he had been the drummer at the head of a procession or the elephant leading a menagerie into town. Boys of his own size pretended not to know he had been away at all; but they were consuming with envy, nevertheless. They would have given anything to have that swarthy suntanned skin of his, and his glittering notoriety; and Tom would not have parted with either for a circus. At school the children made so much of him and of Joe, and delivered such eloquent admiration from their eyes, that the two heroes were not long in becoming insufferably "stuck-up." They began to tell their adventures to hungry listeners--but they only began; it was not a thing likely to have an end, with imaginations like theirs to furnish material. And finally, when they got out their pipes and went serenely puffing around, the very summit of glory was reached. Tom decided that he could be independent of Becky Thatcher now. Glory was sufficient. He would live for glory. Now that he was distinguished, maybe she would be wanting to "make up." Well, let her--she should see that he could be as indifferent as some other people. Presently she arrived. Tom pretended not to see her. He moved away and joined a group of boys and girls and began to talk. Soon he observed that she was tripping gayly back and forth with flushed face and dancing eyes, pretending to be busy chasing schoolmates, and screaming with laughter when she made a capture; but he noticed that she always made her captures in his vicinity, and that she seemed to cast a conscious eye in his direction at such times, too. It gratified all the vicious vanity that was in him; and so, instead of winning him, it only "set him up" the more and made him the more diligent to avoid betraying that he knew she was about. Presently she gave over skylarking, and moved irresolutely about, sighing once or twice and glancing furtively and wistfully toward Tom. Then she observed that now Tom was talking more particularly to Amy Lawrence than to any one else. She felt a sharp pang and grew disturbed and uneasy at once. She tried to go away, but her feet were treacherous, and carried her to the group instead. She said to a girl almost at Tom's elbow--with sham vivacity: "Why, Mary Austin! you bad girl, why didn't you come to Sunday-school?" "I did come--didn't you see me?" "Why, no! Did you? Where did you sit?" "I was in Miss Peters' class, where I always go. I saw YOU." "Did you? Why, it's funny I didn't see you. I wanted to tell you about the picnic." "Oh, that's jolly. Who's going to give it?" "My ma's going to let me have one." "Oh, goody; I hope she'll let ME come." "Well, she will. The picnic's for me. She'll let anybody come that I want, and I want you." "That's ever so nice. When is it going to be?" "By and by. Maybe about vacation." "Oh, won't it be fun! You going to have all the girls and boys?" "Yes, every one that's friends to me--or wants to be"; and she glanced ever so furtively at Tom, but he talked right along to Amy Lawrence about the terrible storm on the island, and how the lightning tore the great sycamore tree "all to flinders" while he was "standing within three feet of it." "Oh, may I come?" said Grace Miller. "Yes." "And me?" said Sally Rogers. "Yes." "And me, too?" said Susy Harper. "And Joe?" "Yes." And so on, with clapping of joyful hands till all the group had begged for invitations but Tom and Amy. Then Tom turned coolly away, still talking, and took Amy with him. Becky's lips trembled and the tears came to her eyes; she hid these signs with a forced gayety and went on chattering, but the life had gone out of the picnic, now, and out of everything else; she got away as soon as she could and hid herself and had what her sex call "a good cry." Then she sat moody, with wounded pride, till the bell rang. She roused up, now, with a vindictive cast in her eye, and gave her plaited tails a shake and said she knew what SHE'D do. At recess Tom continued his flirtation with Amy with jubilant self-satisfaction. And he kept drifting about to find Becky and lacerate her with the performance. At last he spied her, but there was a sudden falling of his mercury. She was sitting cosily on a little bench behind the schoolhouse looking at a picture-book with Alfred Temple--and so absorbed were they, and their heads so close together over the book, that they did not seem to be conscious of anything in the world besides. Jealousy ran red-hot through Tom's veins. He began to hate himself for throwing away the chance Becky had offered for a reconciliation. He called himself a fool, and all the hard names he could think of. He wanted to cry with vexation. Amy chatted happily along, as they walked, for her heart was singing, but Tom's tongue had lost its function. He did not hear what Amy was saying, and whenever she paused expectantly he could only stammer an awkward assent, which was as often misplaced as otherwise. He kept drifting to the rear of the schoolhouse, again and again, to sear his eyeballs with the hateful spectacle there. He could not help it. And it maddened him to see, as he thought he saw, that Becky Thatcher never once suspected that he was even in the land of the living. But she did see, nevertheless; and she knew she was winning her fight, too, and was glad to see him suffer as she had suffered. Amy's happy prattle became intolerable. Tom hinted at things he had to attend to; things that must be done; and time was fleeting. But in vain--the girl chirped on. Tom thought, "Oh, hang her, ain't I ever going to get rid of her?" At last he must be attending to those things--and she said artlessly that she would be "around" when school let out. And he hastened away, hating her for it. "Any other boy!" Tom thought, grating his teeth. "Any boy in the whole town but that Saint Louis smarty that thinks he dresses so fine and is aristocracy! Oh, all right, I licked you the first day you ever saw this town, mister, and I'll lick you again! You just wait till I catch you out! I'll just take and--" And he went through the motions of thrashing an imaginary boy --pummelling the air, and kicking and gouging. "Oh, you do, do you? You holler 'nough, do you? Now, then, let that learn you!" And so the imaginary flogging was finished to his satisfaction. Tom fled home at noon. His conscience could not endure any more of Amy's grateful happiness, and his jealousy could bear no more of the other distress. Becky resumed her picture inspections with Alfred, but as the minutes dragged along and no Tom came to suffer, her triumph began to cloud and she lost interest; gravity and absent-mindedness followed, and then melancholy; two or three times she pricked up her ear at a footstep, but it was a false hope; no Tom came. At last she grew entirely miserable and wished she hadn't carried it so far. When poor Alfred, seeing that he was losing her, he did not know how, kept exclaiming: "Oh, here's a jolly one! look at this!" she lost patience at last, and said, "Oh, don't bother me! I don't care for them!" and burst into tears, and got up and walked away. Alfred dropped alongside and was going to try to comfort her, but she said: "Go away and leave me alone, can't you! I hate you!" So the boy halted, wondering what he could have done--for she had said she would look at pictures all through the nooning--and she walked on, crying. Then Alfred went musing into the deserted schoolhouse. He was humiliated and angry. He easily guessed his way to the truth--the girl had simply made a convenience of him to vent her spite upon Tom Sawyer. He was far from hating Tom the less when this thought occurred to him. He wished there was some way to get that boy into trouble without much risk to himself. Tom's spelling-book fell under his eye. Here was his opportunity. He gratefully opened to the lesson for the afternoon and poured ink upon the page. Becky, glancing in at a window behind him at the moment, saw the act, and moved on, without discovering herself. She started homeward, now, intending to find Tom and tell him; Tom would be thankful and their troubles would be healed. Before she was half way home, however, she had changed her mind. The thought of Tom's treatment of her when she was talking about her picnic came scorching back and filled her with shame. She resolved to let him get whipped on the damaged spelling-book's account, and to hate him forever, into the bargain. CHAPTER XIX TOM arrived at home in a dreary mood, and the first thing his aunt said to him showed him that he had brought his sorrows to an unpromising market: "Tom, I've a notion to skin you alive!" "Auntie, what have I done?" "Well, you've done enough. Here I go over to Sereny Harper, like an old softy, expecting I'm going to make her believe all that rubbage about that dream, when lo and behold you she'd found out from Joe that you was over here and heard all the talk we had that night. Tom, I don't know what is to become of a boy that will act like that. It makes me feel so bad to think you could let me go to Sereny Harper and make such a fool of myself and never say a word." This was a new aspect of the thing. His smartness of the morning had seemed to Tom a good joke before, and very ingenious. It merely looked mean and shabby now. He hung his head and could not think of anything to say for a moment. Then he said: "Auntie, I wish I hadn't done it--but I didn't think." "Oh, child, you never think. You never think of anything but your own selfishness. You could think to come all the way over here from Jackson's Island in the night to laugh at our troubles, and you could think to fool me with a lie about a dream; but you couldn't ever think to pity us and save us from sorrow." "Auntie, I know now it was mean, but I didn't mean to be mean. I didn't, honest. And besides, I didn't come over here to laugh at you that night." "What did you come for, then?" "It was to tell you not to be uneasy about us, because we hadn't got drownded." "Tom, Tom, I would be the thankfullest soul in this world if I could believe you ever had as good a thought as that, but you know you never did--and I know it, Tom." "Indeed and 'deed I did, auntie--I wish I may never stir if I didn't." "Oh, Tom, don't lie--don't do it. It only makes things a hundred times worse." "It ain't a lie, auntie; it's the truth. I wanted to keep you from grieving--that was all that made me come." "I'd give the whole world to believe that--it would cover up a power of sins, Tom. I'd 'most be glad you'd run off and acted so bad. But it ain't reasonable; because, why didn't you tell me, child?" "Why, you see, when you got to talking about the funeral, I just got all full of the idea of our coming and hiding in the church, and I couldn't somehow bear to spoil it. So I just put the bark back in my pocket and kept mum." "What bark?" "The bark I had wrote on to tell you we'd gone pirating. I wish, now, you'd waked up when I kissed you--I do, honest." The hard lines in his aunt's face relaxed and a sudden tenderness dawned in her eyes. "DID you kiss me, Tom?" "Why, yes, I did." "Are you sure you did, Tom?" "Why, yes, I did, auntie--certain sure." "What did you kiss me for, Tom?" "Because I loved you so, and you laid there moaning and I was so sorry." The words sounded like truth. The old lady could not hide a tremor in her voice when she said: "Kiss me again, Tom!--and be off with you to school, now, and don't bother me any more." The moment he was gone, she ran to a closet and got out the ruin of a jacket which Tom had gone pirating in. Then she stopped, with it in her hand, and said to herself: "No, I don't dare. Poor boy, I reckon he's lied about it--but it's a blessed, blessed lie, there's such a comfort come from it. I hope the Lord--I KNOW the Lord will forgive him, because it was such goodheartedness in him to tell it. But I don't want to find out it's a lie. I won't look." She put the jacket away, and stood by musing a minute. Twice she put out her hand to take the garment again, and twice she refrained. Once more she ventured, and this time she fortified herself with the thought: "It's a good lie--it's a good lie--I won't let it grieve me." So she sought the jacket pocket. A moment later she was reading Tom's piece of bark through flowing tears and saying: "I could forgive the boy, now, if he'd committed a million sins!" CHAPTER XX THERE was something about Aunt Polly's manner, when she kissed Tom, that swept away his low spirits and made him lighthearted and happy again. He started to school and had the luck of coming upon Becky Thatcher at the head of Meadow Lane. His mood always determined his manner. Without a moment's hesitation he ran to her and said: "I acted mighty mean to-day, Becky, and I'm so sorry. I won't ever, ever do that way again, as long as ever I live--please make up, won't you?" The girl stopped and looked him scornfully in the face: "I'll thank you to keep yourself TO yourself, Mr. Thomas Sawyer. I'll never speak to you again." She tossed her head and passed on. Tom was so stunned that he had not even presence of mind enough to say "Who cares, Miss Smarty?" until the right time to say it had gone by. So he said nothing. But he was in a fine rage, nevertheless. He moped into the schoolyard wishing she were a boy, and imagining how he would trounce her if she were. He presently encountered her and delivered a stinging remark as he passed. She hurled one in return, and the angry breach was complete. It seemed to Becky, in her hot resentment, that she could hardly wait for school to "take in," she was so impatient to see Tom flogged for the injured spelling-book. If she had had any lingering notion of exposing Alfred Temple, Tom's offensive fling had driven it entirely away. Poor girl, she did not know how fast she was nearing trouble herself. The master, Mr. Dobbins, had reached middle age with an unsatisfied ambition. The darling of his desires was, to be a doctor, but poverty had decreed that he should be nothing higher than a village schoolmaster. Every day he took a mysterious book out of his desk and absorbed himself in it at times when no classes were reciting. He kept that book under lock and key. There was not an urchin in school but was perishing to have a glimpse of it, but the chance never came. Every boy and girl had a theory about the nature of that book; but no two theories were alike, and there was no way of getting at the facts in the case. Now, as Becky was passing by the desk, which stood near the door, she noticed that the key was in the lock! It was a precious moment. She glanced around; found herself alone, and the next instant she had the book in her hands. The title-page--Professor Somebody's ANATOMY--carried no information to her mind; so she began to turn the leaves. She came at once upon a handsomely engraved and colored frontispiece--a human figure, stark naked. At that moment a shadow fell on the page and Tom Sawyer stepped in at the door and caught a glimpse of the picture. Becky snatched at the book to close it, and had the hard luck to tear the pictured page half down the middle. She thrust the volume into the desk, turned the key, and burst out crying with shame and vexation. "Tom Sawyer, you are just as mean as you can be, to sneak up on a person and look at what they're looking at." "How could I know you was looking at anything?" "You ought to be ashamed of yourself, Tom Sawyer; you know you're going to tell on me, and oh, what shall I do, what shall I do! I'll be whipped, and I never was whipped in school." Then she stamped her little foot and said: "BE so mean if you want to! I know something that's going to happen. You just wait and you'll see! Hateful, hateful, hateful!"--and she flung out of the house with a new explosion of crying. Tom stood still, rather flustered by this onslaught. Presently he said to himself: "What a curious kind of a fool a girl is! Never been licked in school! Shucks! What's a licking! That's just like a girl--they're so thin-skinned and chicken-hearted. Well, of course I ain't going to tell old Dobbins on this little fool, because there's other ways of getting even on her, that ain't so mean; but what of it? Old Dobbins will ask who it was tore his book. Nobody'll answer. Then he'll do just the way he always does--ask first one and then t'other, and when he comes to the right girl he'll know it, without any telling. Girls' faces always tell on them. They ain't got any backbone. She'll get licked. Well, it's a kind of a tight place for Becky Thatcher, because there ain't any way out of it." Tom conned the thing a moment longer, and then added: "All right, though; she'd like to see me in just such a fix--let her sweat it out!" Tom joined the mob of skylarking scholars outside. In a few moments the master arrived and school "took in." Tom did not feel a strong interest in his studies. Every time he stole a glance at the girls' side of the room Becky's face troubled him. Considering all things, he did not want to pity her, and yet it was all he could do to help it. He could get up no exultation that was really worthy the name. Presently the spelling-book discovery was made, and Tom's mind was entirely full of his own matters for a while after that. Becky roused up from her lethargy of distress and showed good interest in the proceedings. She did not expect that Tom could get out of his trouble by denying that he spilt the ink on the book himself; and she was right. The denial only seemed to make the thing worse for Tom. Becky supposed she would be glad of that, and she tried to believe she was glad of it, but she found she was not certain. When the worst came to the worst, she had an impulse to get up and tell on Alfred Temple, but she made an effort and forced herself to keep still--because, said she to herself, "he'll tell about me tearing the picture sure. I wouldn't say a word, not to save his life!" Tom took his whipping and went back to his seat not at all broken-hearted, for he thought it was possible that he had unknowingly upset the ink on the spelling-book himself, in some skylarking bout--he had denied it for form's sake and because it was custom, and had stuck to the denial from principle. A whole hour drifted by, the master sat nodding in his throne, the air was drowsy with the hum of study. By and by, Mr. Dobbins straightened himself up, yawned, then unlocked his desk, and reached for his book, but seemed undecided whether to take it out or leave it. Most of the pupils glanced up languidly, but there were two among them that watched his movements with intent eyes. Mr. Dobbins fingered his book absently for a while, then took it out and settled himself in his chair to read! Tom shot a glance at Becky. He had seen a hunted and helpless rabbit look as she did, with a gun levelled at its head. Instantly he forgot his quarrel with her. Quick--something must be done! done in a flash, too! But the very imminence of the emergency paralyzed his invention. Good!--he had an inspiration! He would run and snatch the book, spring through the door and fly. But his resolution shook for one little instant, and the chance was lost--the master opened the volume. If Tom only had the wasted opportunity back again! Too late. There was no help for Becky now, he said. The next moment the master faced the school. Every eye sank under his gaze. There was that in it which smote even the innocent with fear. There was silence while one might count ten --the master was gathering his wrath. Then he spoke: "Who tore this book?" There was not a sound. One could have heard a pin drop. The stillness continued; the master searched face after face for signs of guilt. "Benjamin Rogers, did you tear this book?" A denial. Another pause. "Joseph Harper, did you?" Another denial. Tom's uneasiness grew more and more intense under the slow torture of these proceedings. The master scanned the ranks of boys--considered a while, then turned to the girls: "Amy Lawrence?" A shake of the head. "Gracie Miller?" The same sign. "Susan Harper, did you do this?" Another negative. The next girl was Becky Thatcher. Tom was trembling from head to foot with excitement and a sense of the hopelessness of the situation. "Rebecca Thatcher" [Tom glanced at her face--it was white with terror] --"did you tear--no, look me in the face" [her hands rose in appeal] --"did you tear this book?" A thought shot like lightning through Tom's brain. He sprang to his feet and shouted--"I done it!" The school stared in perplexity at this incredible folly. Tom stood a moment, to gather his dismembered faculties; and when he stepped forward to go to his punishment the surprise, the gratitude, the adoration that shone upon him out of poor Becky's eyes seemed pay enough for a hundred floggings. Inspired by the splendor of his own act, he took without an outcry the most merciless flaying that even Mr. Dobbins had ever administered; and also received with indifference the added cruelty of a command to remain two hours after school should be dismissed--for he knew who would wait for him outside till his captivity was done, and not count the tedious time as loss, either. Tom went to bed that night planning vengeance against Alfred Temple; for with shame and repentance Becky had told him all, not forgetting her own treachery; but even the longing for vengeance had to give way, soon, to pleasanter musings, and he fell asleep at last with Becky's latest words lingering dreamily in his ear-- "Tom, how COULD you be so noble!" CHAPTER XXI VACATION was approaching. The schoolmaster, always severe, grew severer and more exacting than ever, for he wanted the school to make a good showing on "Examination" day. His rod and his ferule were seldom idle now--at least among the smaller pupils. Only the biggest boys, and young ladies of eighteen and twenty, escaped lashing. Mr. Dobbins' lashings were very vigorous ones, too; for although he carried, under his wig, a perfectly bald and shiny head, he had only reached middle age, and there was no sign of feebleness in his muscle. As the great day approached, all the tyranny that was in him came to the surface; he seemed to take a vindictive pleasure in punishing the least shortcomings. The consequence was, that the smaller boys spent their days in terror and suffering and their nights in plotting revenge. They threw away no opportunity to do the master a mischief. But he kept ahead all the time. The retribution that followed every vengeful success was so sweeping and majestic that the boys always retired from the field badly worsted. At last they conspired together and hit upon a plan that promised a dazzling victory. They swore in the sign-painter's boy, told him the scheme, and asked his help. He had his own reasons for being delighted, for the master boarded in his father's family and had given the boy ample cause to hate him. The master's wife would go on a visit to the country in a few days, and there would be nothing to interfere with the plan; the master always prepared himself for great occasions by getting pretty well fuddled, and the sign-painter's boy said that when the dominie had reached the proper condition on Examination Evening he would "manage the thing" while he napped in his chair; then he would have him awakened at the right time and hurried away to school. In the fulness of time the interesting occasion arrived. At eight in the evening the schoolhouse was brilliantly lighted, and adorned with wreaths and festoons of foliage and flowers. The master sat throned in his great chair upon a raised platform, with his blackboard behind him. He was looking tolerably mellow. Three rows of benches on each side and six rows in front of him were occupied by the dignitaries of the town and by the parents of the pupils. To his left, back of the rows of citizens, was a spacious temporary platform upon which were seated the scholars who were to take part in the exercises of the evening; rows of small boys, washed and dressed to an intolerable state of discomfort; rows of gawky big boys; snowbanks of girls and young ladies clad in lawn and muslin and conspicuously conscious of their bare arms, their grandmothers' ancient trinkets, their bits of pink and blue ribbon and the flowers in their hair. All the rest of the house was filled with non-participating scholars. The exercises began. A very little boy stood up and sheepishly recited, "You'd scarce expect one of my age to speak in public on the stage," etc.--accompanying himself with the painfully exact and spasmodic gestures which a machine might have used--supposing the machine to be a trifle out of order. But he got through safely, though cruelly scared, and got a fine round of applause when he made his manufactured bow and retired. A little shamefaced girl lisped, "Mary had a little lamb," etc., performed a compassion-inspiring curtsy, got her meed of applause, and sat down flushed and happy. Tom Sawyer stepped forward with conceited confidence and soared into the unquenchable and indestructible "Give me liberty or give me death" speech, with fine fury and frantic gesticulation, and broke down in the middle of it. A ghastly stage-fright seized him, his legs quaked under him and he was like to choke. True, he had the manifest sympathy of the house but he had the house's silence, too, which was even worse than its sympathy. The master frowned, and this completed the disaster. Tom struggled awhile and then retired, utterly defeated. There was a weak attempt at applause, but it died early. "The Boy Stood on the Burning Deck" followed; also "The Assyrian Came Down," and other declamatory gems. Then there were reading exercises, and a spelling fight. The meagre Latin class recited with honor. The prime feature of the evening was in order, now--original "compositions" by the young ladies. Each in her turn stepped forward to the edge of the platform, cleared her throat, held up her manuscript (tied with dainty ribbon), and proceeded to read, with labored attention to "expression" and punctuation. The themes were the same that had been illuminated upon similar occasions by their mothers before them, their grandmothers, and doubtless all their ancestors in the female line clear back to the Crusades. "Friendship" was one; "Memories of Other Days"; "Religion in History"; "Dream Land"; "The Advantages of Culture"; "Forms of Political Government Compared and Contrasted"; "Melancholy"; "Filial Love"; "Heart Longings," etc., etc. A prevalent feature in these compositions was a nursed and petted melancholy; another was a wasteful and opulent gush of "fine language"; another was a tendency to lug in by the ears particularly prized words and phrases until they were worn entirely out; and a peculiarity that conspicuously marked and marred them was the inveterate and intolerable sermon that wagged its crippled tail at the end of each and every one of them. No matter what the subject might be, a brain-racking effort was made to squirm it into some aspect or other that the moral and religious mind could contemplate with edification. The glaring insincerity of these sermons was not sufficient to compass the banishment of the fashion from the schools, and it is not sufficient to-day; it never will be sufficient while the world stands, perhaps. There is no school in all our land where the young ladies do not feel obliged to close their compositions with a sermon; and you will find that the sermon of the most frivolous and the least religious girl in the school is always the longest and the most relentlessly pious. But enough of this. Homely truth is unpalatable. Let us return to the "Examination." The first composition that was read was one entitled "Is this, then, Life?" Perhaps the reader can endure an extract from it: "In the common walks of life, with what delightful emotions does the youthful mind look forward to some anticipated scene of festivity! Imagination is busy sketching rose-tinted pictures of joy. In fancy, the voluptuous votary of fashion sees herself amid the festive throng, 'the observed of all observers.' Her graceful form, arrayed in snowy robes, is whirling through the mazes of the joyous dance; her eye is brightest, her step is lightest in the gay assembly. "In such delicious fancies time quickly glides by, and the welcome hour arrives for her entrance into the Elysian world, of which she has had such bright dreams. How fairy-like does everything appear to her enchanted vision! Each new scene is more charming than the last. But after a while she finds that beneath this goodly exterior, all is vanity, the flattery which once charmed her soul, now grates harshly upon her ear; the ball-room has lost its charms; and with wasted health and imbittered heart, she turns away with the conviction that earthly pleasures cannot satisfy the longings of the soul!" And so forth and so on. There was a buzz of gratification from time to time during the reading, accompanied by whispered ejaculations of "How sweet!" "How eloquent!" "So true!" etc., and after the thing had closed with a peculiarly afflicting sermon the applause was enthusiastic. Then arose a slim, melancholy girl, whose face had the "interesting" paleness that comes of pills and indigestion, and read a "poem." Two stanzas of it will do: "A MISSOURI MAIDEN'S FAREWELL TO ALABAMA "Alabama, good-bye! I love thee well! But yet for a while do I leave thee now! Sad, yes, sad thoughts of thee my heart doth swell, And burning recollections throng my brow! For I have wandered through thy flowery woods; Have roamed and read near Tallapoosa's stream; Have listened to Tallassee's warring floods, And wooed on Coosa's side Aurora's beam. "Yet shame I not to bear an o'er-full heart, Nor blush to turn behind my tearful eyes; 'Tis from no stranger land I now must part, 'Tis to no strangers left I yield these sighs. Welcome and home were mine within this State, Whose vales I leave--whose spires fade fast from me And cold must be mine eyes, and heart, and tete, When, dear Alabama! they turn cold on thee!" There were very few there who knew what "tete" meant, but the poem was very satisfactory, nevertheless. Next appeared a dark-complexioned, black-eyed, black-haired young lady, who paused an impressive moment, assumed a tragic expression, and began to read in a measured, solemn tone: "A VISION "Dark and tempestuous was night. Around the throne on high not a single star quivered; but the deep intonations of the heavy thunder constantly vibrated upon the ear; whilst the terrific lightning revelled in angry mood through the cloudy chambers of heaven, seeming to scorn the power exerted over its terror by the illustrious Franklin! Even the boisterous winds unanimously came forth from their mystic homes, and blustered about as if to enhance by their aid the wildness of the scene. "At such a time, so dark, so dreary, for human sympathy my very spirit sighed; but instead thereof, "'My dearest friend, my counsellor, my comforter and guide--My joy in grief, my second bliss in joy,' came to my side. She moved like one of those bright beings pictured in the sunny walks of fancy's Eden by the romantic and young, a queen of beauty unadorned save by her own transcendent loveliness. So soft was her step, it failed to make even a sound, and but for the magical thrill imparted by her genial touch, as other unobtrusive beauties, she would have glided away un-perceived--unsought. A strange sadness rested upon her features, like icy tears upon the robe of December, as she pointed to the contending elements without, and bade me contemplate the two beings presented." This nightmare occupied some ten pages of manuscript and wound up with a sermon so destructive of all hope to non-Presbyterians that it took the first prize. This composition was considered to be the very finest effort of the evening. The mayor of the village, in delivering the prize to the author of it, made a warm speech in which he said that it was by far the most "eloquent" thing he had ever listened to, and that Daniel Webster himself might well be proud of it. It may be remarked, in passing, that the number of compositions in which the word "beauteous" was over-fondled, and human experience referred to as "life's page," was up to the usual average. Now the master, mellow almost to the verge of geniality, put his chair aside, turned his back to the audience, and began to draw a map of America on the blackboard, to exercise the geography class upon. But he made a sad business of it with his unsteady hand, and a smothered titter rippled over the house. He knew what the matter was, and set himself to right it. He sponged out lines and remade them; but he only distorted them more than ever, and the tittering was more pronounced. He threw his entire attention upon his work, now, as if determined not to be put down by the mirth. He felt that all eyes were fastened upon him; he imagined he was succeeding, and yet the tittering continued; it even manifestly increased. And well it might. There was a garret above, pierced with a scuttle over his head; and down through this scuttle came a cat, suspended around the haunches by a string; she had a rag tied about her head and jaws to keep her from mewing; as she slowly descended she curved upward and clawed at the string, she swung downward and clawed at the intangible air. The tittering rose higher and higher--the cat was within six inches of the absorbed teacher's head--down, down, a little lower, and she grabbed his wig with her desperate claws, clung to it, and was snatched up into the garret in an instant with her trophy still in her possession! And how the light did blaze abroad from the master's bald pate--for the sign-painter's boy had GILDED it! That broke up the meeting. The boys were avenged. Vacation had come. NOTE:--The pretended "compositions" quoted in this chapter are taken without alteration from a volume entitled "Prose and Poetry, by a Western Lady"--but they are exactly and precisely after the schoolgirl pattern, and hence are much happier than any mere imitations could be. CHAPTER XXII TOM joined the new order of Cadets of Temperance, being attracted by the showy character of their "regalia." He promised to abstain from smoking, chewing, and profanity as long as he remained a member. Now he found out a new thing--namely, that to promise not to do a thing is the surest way in the world to make a body want to go and do that very thing. Tom soon found himself tormented with a desire to drink and swear; the desire grew to be so intense that nothing but the hope of a chance to display himself in his red sash kept him from withdrawing from the order. Fourth of July was coming; but he soon gave that up --gave it up before he had worn his shackles over forty-eight hours--and fixed his hopes upon old Judge Frazer, justice of the peace, who was apparently on his deathbed and would have a big public funeral, since he was so high an official. During three days Tom was deeply concerned about the Judge's condition and hungry for news of it. Sometimes his hopes ran high--so high that he would venture to get out his regalia and practise before the looking-glass. But the Judge had a most discouraging way of fluctuating. At last he was pronounced upon the mend--and then convalescent. Tom was disgusted; and felt a sense of injury, too. He handed in his resignation at once--and that night the Judge suffered a relapse and died. Tom resolved that he would never trust a man like that again. The funeral was a fine thing. The Cadets paraded in a style calculated to kill the late member with envy. Tom was a free boy again, however --there was something in that. He could drink and swear, now--but found to his surprise that he did not want to. The simple fact that he could, took the desire away, and the charm of it. Tom presently wondered to find that his coveted vacation was beginning to hang a little heavily on his hands. He attempted a diary--but nothing happened during three days, and so he abandoned it. The first of all the negro minstrel shows came to town, and made a sensation. Tom and Joe Harper got up a band of performers and were happy for two days. Even the Glorious Fourth was in some sense a failure, for it rained hard, there was no procession in consequence, and the greatest man in the world (as Tom supposed), Mr. Benton, an actual United States Senator, proved an overwhelming disappointment--for he was not twenty-five feet high, nor even anywhere in the neighborhood of it. A circus came. The boys played circus for three days afterward in tents made of rag carpeting--admission, three pins for boys, two for girls--and then circusing was abandoned. A phrenologist and a mesmerizer came--and went again and left the village duller and drearier than ever. There were some boys-and-girls' parties, but they were so few and so delightful that they only made the aching voids between ache the harder. Becky Thatcher was gone to her Constantinople home to stay with her parents during vacation--so there was no bright side to life anywhere. The dreadful secret of the murder was a chronic misery. It was a very cancer for permanency and pain. Then came the measles. During two long weeks Tom lay a prisoner, dead to the world and its happenings. He was very ill, he was interested in nothing. When he got upon his feet at last and moved feebly down-town, a melancholy change had come over everything and every creature. There had been a "revival," and everybody had "got religion," not only the adults, but even the boys and girls. Tom went about, hoping against hope for the sight of one blessed sinful face, but disappointment crossed him everywhere. He found Joe Harper studying a Testament, and turned sadly away from the depressing spectacle. He sought Ben Rogers, and found him visiting the poor with a basket of tracts. He hunted up Jim Hollis, who called his attention to the precious blessing of his late measles as a warning. Every boy he encountered added another ton to his depression; and when, in desperation, he flew for refuge at last to the bosom of Huckleberry Finn and was received with a Scriptural quotation, his heart broke and he crept home and to bed realizing that he alone of all the town was lost, forever and forever. And that night there came on a terrific storm, with driving rain, awful claps of thunder and blinding sheets of lightning. He covered his head with the bedclothes and waited in a horror of suspense for his doom; for he had not the shadow of a doubt that all this hubbub was about him. He believed he had taxed the forbearance of the powers above to the extremity of endurance and that this was the result. It might have seemed to him a waste of pomp and ammunition to kill a bug with a battery of artillery, but there seemed nothing incongruous about the getting up such an expensive thunderstorm as this to knock the turf from under an insect like himself. By and by the tempest spent itself and died without accomplishing its object. The boy's first impulse was to be grateful, and reform. His second was to wait--for there might not be any more storms. The next day the doctors were back; Tom had relapsed. The three weeks he spent on his back this time seemed an entire age. When he got abroad at last he was hardly grateful that he had been spared, remembering how lonely was his estate, how companionless and forlorn he was. He drifted listlessly down the street and found Jim Hollis acting as judge in a juvenile court that was trying a cat for murder, in the presence of her victim, a bird. He found Joe Harper and Huck Finn up an alley eating a stolen melon. Poor lads! they--like Tom--had suffered a relapse. CHAPTER XXIII AT last the sleepy atmosphere was stirred--and vigorously: the murder trial came on in the court. It became the absorbing topic of village talk immediately. Tom could not get away from it. Every reference to the murder sent a shudder to his heart, for his troubled conscience and fears almost persuaded him that these remarks were put forth in his hearing as "feelers"; he did not see how he could be suspected of knowing anything about the murder, but still he could not be comfortable in the midst of this gossip. It kept him in a cold shiver all the time. He took Huck to a lonely place to have a talk with him. It would be some relief to unseal his tongue for a little while; to divide his burden of distress with another sufferer. Moreover, he wanted to assure himself that Huck had remained discreet. "Huck, have you ever told anybody about--that?" "'Bout what?" "You know what." "Oh--'course I haven't." "Never a word?" "Never a solitary word, so help me. What makes you ask?" "Well, I was afeard." "Why, Tom Sawyer, we wouldn't be alive two days if that got found out. YOU know that." Tom felt more comfortable. After a pause: "Huck, they couldn't anybody get you to tell, could they?" "Get me to tell? Why, if I wanted that half-breed devil to drownd me they could get me to tell. They ain't no different way." "Well, that's all right, then. I reckon we're safe as long as we keep mum. But let's swear again, anyway. It's more surer." "I'm agreed." So they swore again with dread solemnities. "What is the talk around, Huck? I've heard a power of it." "Talk? Well, it's just Muff Potter, Muff Potter, Muff Potter all the time. It keeps me in a sweat, constant, so's I want to hide som'ers." "That's just the same way they go on round me. I reckon he's a goner. Don't you feel sorry for him, sometimes?" "Most always--most always. He ain't no account; but then he hain't ever done anything to hurt anybody. Just fishes a little, to get money to get drunk on--and loafs around considerable; but lord, we all do that--leastways most of us--preachers and such like. But he's kind of good--he give me half a fish, once, when there warn't enough for two; and lots of times he's kind of stood by me when I was out of luck." "Well, he's mended kites for me, Huck, and knitted hooks on to my line. I wish we could get him out of there." "My! we couldn't get him out, Tom. And besides, 'twouldn't do any good; they'd ketch him again." "Yes--so they would. But I hate to hear 'em abuse him so like the dickens when he never done--that." "I do too, Tom. Lord, I hear 'em say he's the bloodiest looking villain in this country, and they wonder he wasn't ever hung before." "Yes, they talk like that, all the time. I've heard 'em say that if he was to get free they'd lynch him." "And they'd do it, too." The boys had a long talk, but it brought them little comfort. As the twilight drew on, they found themselves hanging about the neighborhood of the little isolated jail, perhaps with an undefined hope that something would happen that might clear away their difficulties. But nothing happened; there seemed to be no angels or fairies interested in this luckless captive. The boys did as they had often done before--went to the cell grating and gave Potter some tobacco and matches. He was on the ground floor and there were no guards. His gratitude for their gifts had always smote their consciences before--it cut deeper than ever, this time. They felt cowardly and treacherous to the last degree when Potter said: "You've been mighty good to me, boys--better'n anybody else in this town. And I don't forget it, I don't. Often I says to myself, says I, 'I used to mend all the boys' kites and things, and show 'em where the good fishin' places was, and befriend 'em what I could, and now they've all forgot old Muff when he's in trouble; but Tom don't, and Huck don't--THEY don't forget him, says I, 'and I don't forget them.' Well, boys, I done an awful thing--drunk and crazy at the time--that's the only way I account for it--and now I got to swing for it, and it's right. Right, and BEST, too, I reckon--hope so, anyway. Well, we won't talk about that. I don't want to make YOU feel bad; you've befriended me. But what I want to say, is, don't YOU ever get drunk--then you won't ever get here. Stand a litter furder west--so--that's it; it's a prime comfort to see faces that's friendly when a body's in such a muck of trouble, and there don't none come here but yourn. Good friendly faces--good friendly faces. Git up on one another's backs and let me touch 'em. That's it. Shake hands--yourn'll come through the bars, but mine's too big. Little hands, and weak--but they've helped Muff Potter a power, and they'd help him more if they could." Tom went home miserable, and his dreams that night were full of horrors. The next day and the day after, he hung about the court-room, drawn by an almost irresistible impulse to go in, but forcing himself to stay out. Huck was having the same experience. They studiously avoided each other. Each wandered away, from time to time, but the same dismal fascination always brought them back presently. Tom kept his ears open when idlers sauntered out of the court-room, but invariably heard distressing news--the toils were closing more and more relentlessly around poor Potter. At the end of the second day the village talk was to the effect that Injun Joe's evidence stood firm and unshaken, and that there was not the slightest question as to what the jury's verdict would be. Tom was out late, that night, and came to bed through the window. He was in a tremendous state of excitement. It was hours before he got to sleep. All the village flocked to the court-house the next morning, for this was to be the great day. Both sexes were about equally represented in the packed audience. After a long wait the jury filed in and took their places; shortly afterward, Potter, pale and haggard, timid and hopeless, was brought in, with chains upon him, and seated where all the curious eyes could stare at him; no less conspicuous was Injun Joe, stolid as ever. There was another pause, and then the judge arrived and the sheriff proclaimed the opening of the court. The usual whisperings among the lawyers and gathering together of papers followed. These details and accompanying delays worked up an atmosphere of preparation that was as impressive as it was fascinating. Now a witness was called who testified that he found Muff Potter washing in the brook, at an early hour of the morning that the murder was discovered, and that he immediately sneaked away. After some further questioning, counsel for the prosecution said: "Take the witness." The prisoner raised his eyes for a moment, but dropped them again when his own counsel said: "I have no questions to ask him." The next witness proved the finding of the knife near the corpse. Counsel for the prosecution said: "Take the witness." "I have no questions to ask him," Potter's lawyer replied. A third witness swore he had often seen the knife in Potter's possession. "Take the witness." Counsel for Potter declined to question him. The faces of the audience began to betray annoyance. Did this attorney mean to throw away his client's life without an effort? Several witnesses deposed concerning Potter's guilty behavior when brought to the scene of the murder. They were allowed to leave the stand without being cross-questioned. Every detail of the damaging circumstances that occurred in the graveyard upon that morning which all present remembered so well was brought out by credible witnesses, but none of them were cross-examined by Potter's lawyer. The perplexity and dissatisfaction of the house expressed itself in murmurs and provoked a reproof from the bench. Counsel for the prosecution now said: "By the oaths of citizens whose simple word is above suspicion, we have fastened this awful crime, beyond all possibility of question, upon the unhappy prisoner at the bar. We rest our case here." A groan escaped from poor Potter, and he put his face in his hands and rocked his body softly to and fro, while a painful silence reigned in the court-room. Many men were moved, and many women's compassion testified itself in tears. Counsel for the defence rose and said: "Your honor, in our remarks at the opening of this trial, we foreshadowed our purpose to prove that our client did this fearful deed while under the influence of a blind and irresponsible delirium produced by drink. We have changed our mind. We shall not offer that plea." [Then to the clerk:] "Call Thomas Sawyer!" A puzzled amazement awoke in every face in the house, not even excepting Potter's. Every eye fastened itself with wondering interest upon Tom as he rose and took his place upon the stand. The boy looked wild enough, for he was badly scared. The oath was administered. "Thomas Sawyer, where were you on the seventeenth of June, about the hour of midnight?" Tom glanced at Injun Joe's iron face and his tongue failed him. The audience listened breathless, but the words refused to come. After a few moments, however, the boy got a little of his strength back, and managed to put enough of it into his voice to make part of the house hear: "In the graveyard!" "A little bit louder, please. Don't be afraid. You were--" "In the graveyard." A contemptuous smile flitted across Injun Joe's face. "Were you anywhere near Horse Williams' grave?" "Yes, sir." "Speak up--just a trifle louder. How near were you?" "Near as I am to you." "Were you hidden, or not?" "I was hid." "Where?" "Behind the elms that's on the edge of the grave." Injun Joe gave a barely perceptible start. "Any one with you?" "Yes, sir. I went there with--" "Wait--wait a moment. Never mind mentioning your companion's name. We will produce him at the proper time. Did you carry anything there with you." Tom hesitated and looked confused. "Speak out, my boy--don't be diffident. The truth is always respectable. What did you take there?" "Only a--a--dead cat." There was a ripple of mirth, which the court checked. "We will produce the skeleton of that cat. Now, my boy, tell us everything that occurred--tell it in your own way--don't skip anything, and don't be afraid." Tom began--hesitatingly at first, but as he warmed to his subject his words flowed more and more easily; in a little while every sound ceased but his own voice; every eye fixed itself upon him; with parted lips and bated breath the audience hung upon his words, taking no note of time, rapt in the ghastly fascinations of the tale. The strain upon pent emotion reached its climax when the boy said: "--and as the doctor fetched the board around and Muff Potter fell, Injun Joe jumped with the knife and--" Crash! Quick as lightning the half-breed sprang for a window, tore his way through all opposers, and was gone! CHAPTER XXIV TOM was a glittering hero once more--the pet of the old, the envy of the young. His name even went into immortal print, for the village paper magnified him. There were some that believed he would be President, yet, if he escaped hanging. As usual, the fickle, unreasoning world took Muff Potter to its bosom and fondled him as lavishly as it had abused him before. But that sort of conduct is to the world's credit; therefore it is not well to find fault with it. Tom's days were days of splendor and exultation to him, but his nights were seasons of horror. Injun Joe infested all his dreams, and always with doom in his eye. Hardly any temptation could persuade the boy to stir abroad after nightfall. Poor Huck was in the same state of wretchedness and terror, for Tom had told the whole story to the lawyer the night before the great day of the trial, and Huck was sore afraid that his share in the business might leak out, yet, notwithstanding Injun Joe's flight had saved him the suffering of testifying in court. The poor fellow had got the attorney to promise secrecy, but what of that? Since Tom's harassed conscience had managed to drive him to the lawyer's house by night and wring a dread tale from lips that had been sealed with the dismalest and most formidable of oaths, Huck's confidence in the human race was well-nigh obliterated. Daily Muff Potter's gratitude made Tom glad he had spoken; but nightly he wished he had sealed up his tongue. Half the time Tom was afraid Injun Joe would never be captured; the other half he was afraid he would be. He felt sure he never could draw a safe breath again until that man was dead and he had seen the corpse. Rewards had been offered, the country had been scoured, but no Injun Joe was found. One of those omniscient and awe-inspiring marvels, a detective, came up from St. Louis, moused around, shook his head, looked wise, and made that sort of astounding success which members of that craft usually achieve. That is to say, he "found a clew." But you can't hang a "clew" for murder, and so after that detective had got through and gone home, Tom felt just as insecure as he was before. The slow days drifted on, and each left behind it a slightly lightened weight of apprehension. CHAPTER XXV THERE comes a time in every rightly-constructed boy's life when he has a raging desire to go somewhere and dig for hidden treasure. This desire suddenly came upon Tom one day. He sallied out to find Joe Harper, but failed of success. Next he sought Ben Rogers; he had gone fishing. Presently he stumbled upon Huck Finn the Red-Handed. Huck would answer. Tom took him to a private place and opened the matter to him confidentially. Huck was willing. Huck was always willing to take a hand in any enterprise that offered entertainment and required no capital, for he had a troublesome superabundance of that sort of time which is not money. "Where'll we dig?" said Huck. "Oh, most anywhere." "Why, is it hid all around?" "No, indeed it ain't. It's hid in mighty particular places, Huck --sometimes on islands, sometimes in rotten chests under the end of a limb of an old dead tree, just where the shadow falls at midnight; but mostly under the floor in ha'nted houses." "Who hides it?" "Why, robbers, of course--who'd you reckon? Sunday-school sup'rintendents?" "I don't know. If 'twas mine I wouldn't hide it; I'd spend it and have a good time." "So would I. But robbers don't do that way. They always hide it and leave it there." "Don't they come after it any more?" "No, they think they will, but they generally forget the marks, or else they die. Anyway, it lays there a long time and gets rusty; and by and by somebody finds an old yellow paper that tells how to find the marks--a paper that's got to be ciphered over about a week because it's mostly signs and hy'roglyphics." "Hyro--which?" "Hy'roglyphics--pictures and things, you know, that don't seem to mean anything." "Have you got one of them papers, Tom?" "No." "Well then, how you going to find the marks?" "I don't want any marks. They always bury it under a ha'nted house or on an island, or under a dead tree that's got one limb sticking out. Well, we've tried Jackson's Island a little, and we can try it again some time; and there's the old ha'nted house up the Still-House branch, and there's lots of dead-limb trees--dead loads of 'em." "Is it under all of them?" "How you talk! No!" "Then how you going to know which one to go for?" "Go for all of 'em!" "Why, Tom, it'll take all summer." "Well, what of that? Suppose you find a brass pot with a hundred dollars in it, all rusty and gray, or rotten chest full of di'monds. How's that?" Huck's eyes glowed. "That's bully. Plenty bully enough for me. Just you gimme the hundred dollars and I don't want no di'monds." "All right. But I bet you I ain't going to throw off on di'monds. Some of 'em's worth twenty dollars apiece--there ain't any, hardly, but's worth six bits or a dollar." "No! Is that so?" "Cert'nly--anybody'll tell you so. Hain't you ever seen one, Huck?" "Not as I remember." "Oh, kings have slathers of them." "Well, I don' know no kings, Tom." "I reckon you don't. But if you was to go to Europe you'd see a raft of 'em hopping around." "Do they hop?" "Hop?--your granny! No!" "Well, what did you say they did, for?" "Shucks, I only meant you'd SEE 'em--not hopping, of course--what do they want to hop for?--but I mean you'd just see 'em--scattered around, you know, in a kind of a general way. Like that old humpbacked Richard." "Richard? What's his other name?" "He didn't have any other name. Kings don't have any but a given name." "No?" "But they don't." "Well, if they like it, Tom, all right; but I don't want to be a king and have only just a given name, like a nigger. But say--where you going to dig first?" "Well, I don't know. S'pose we tackle that old dead-limb tree on the hill t'other side of Still-House branch?" "I'm agreed." So they got a crippled pick and a shovel, and set out on their three-mile tramp. They arrived hot and panting, and threw themselves down in the shade of a neighboring elm to rest and have a smoke. "I like this," said Tom. "So do I." "Say, Huck, if we find a treasure here, what you going to do with your share?" "Well, I'll have pie and a glass of soda every day, and I'll go to every circus that comes along. I bet I'll have a gay time." "Well, ain't you going to save any of it?" "Save it? What for?" "Why, so as to have something to live on, by and by." "Oh, that ain't any use. Pap would come back to thish-yer town some day and get his claws on it if I didn't hurry up, and I tell you he'd clean it out pretty quick. What you going to do with yourn, Tom?" "I'm going to buy a new drum, and a sure-'nough sword, and a red necktie and a bull pup, and get married." "Married!" "That's it." "Tom, you--why, you ain't in your right mind." "Wait--you'll see." "Well, that's the foolishest thing you could do. Look at pap and my mother. Fight! Why, they used to fight all the time. I remember, mighty well." "That ain't anything. The girl I'm going to marry won't fight." "Tom, I reckon they're all alike. They'll all comb a body. Now you better think 'bout this awhile. I tell you you better. What's the name of the gal?" "It ain't a gal at all--it's a girl." "It's all the same, I reckon; some says gal, some says girl--both's right, like enough. Anyway, what's her name, Tom?" "I'll tell you some time--not now." "All right--that'll do. Only if you get married I'll be more lonesomer than ever." "No you won't. You'll come and live with me. Now stir out of this and we'll go to digging." They worked and sweated for half an hour. No result. They toiled another half-hour. Still no result. Huck said: "Do they always bury it as deep as this?" "Sometimes--not always. Not generally. I reckon we haven't got the right place." So they chose a new spot and began again. The labor dragged a little, but still they made progress. They pegged away in silence for some time. Finally Huck leaned on his shovel, swabbed the beaded drops from his brow with his sleeve, and said: "Where you going to dig next, after we get this one?" "I reckon maybe we'll tackle the old tree that's over yonder on Cardiff Hill back of the widow's." "I reckon that'll be a good one. But won't the widow take it away from us, Tom? It's on her land." "SHE take it away! Maybe she'd like to try it once. Whoever finds one of these hid treasures, it belongs to him. It don't make any difference whose land it's on." That was satisfactory. The work went on. By and by Huck said: "Blame it, we must be in the wrong place again. What do you think?" "It is mighty curious, Huck. I don't understand it. Sometimes witches interfere. I reckon maybe that's what's the trouble now." "Shucks! Witches ain't got no power in the daytime." "Well, that's so. I didn't think of that. Oh, I know what the matter is! What a blamed lot of fools we are! You got to find out where the shadow of the limb falls at midnight, and that's where you dig!" "Then consound it, we've fooled away all this work for nothing. Now hang it all, we got to come back in the night. It's an awful long way. Can you get out?" "I bet I will. We've got to do it to-night, too, because if somebody sees these holes they'll know in a minute what's here and they'll go for it." "Well, I'll come around and maow to-night." "All right. Let's hide the tools in the bushes." The boys were there that night, about the appointed time. They sat in the shadow waiting. It was a lonely place, and an hour made solemn by old traditions. Spirits whispered in the rustling leaves, ghosts lurked in the murky nooks, the deep baying of a hound floated up out of the distance, an owl answered with his sepulchral note. The boys were subdued by these solemnities, and talked little. By and by they judged that twelve had come; they marked where the shadow fell, and began to dig. Their hopes commenced to rise. Their interest grew stronger, and their industry kept pace with it. The hole deepened and still deepened, but every time their hearts jumped to hear the pick strike upon something, they only suffered a new disappointment. It was only a stone or a chunk. At last Tom said: "It ain't any use, Huck, we're wrong again." "Well, but we CAN'T be wrong. We spotted the shadder to a dot." "I know it, but then there's another thing." "What's that?". "Why, we only guessed at the time. Like enough it was too late or too early." Huck dropped his shovel. "That's it," said he. "That's the very trouble. We got to give this one up. We can't ever tell the right time, and besides this kind of thing's too awful, here this time of night with witches and ghosts a-fluttering around so. I feel as if something's behind me all the time; and I'm afeard to turn around, becuz maybe there's others in front a-waiting for a chance. I been creeping all over, ever since I got here." "Well, I've been pretty much so, too, Huck. They most always put in a dead man when they bury a treasure under a tree, to look out for it." "Lordy!" "Yes, they do. I've always heard that." "Tom, I don't like to fool around much where there's dead people. A body's bound to get into trouble with 'em, sure." "I don't like to stir 'em up, either. S'pose this one here was to stick his skull out and say something!" "Don't Tom! It's awful." "Well, it just is. Huck, I don't feel comfortable a bit." "Say, Tom, let's give this place up, and try somewheres else." "All right, I reckon we better." "What'll it be?" Tom considered awhile; and then said: "The ha'nted house. That's it!" "Blame it, I don't like ha'nted houses, Tom. Why, they're a dern sight worse'n dead people. Dead people might talk, maybe, but they don't come sliding around in a shroud, when you ain't noticing, and peep over your shoulder all of a sudden and grit their teeth, the way a ghost does. I couldn't stand such a thing as that, Tom--nobody could." "Yes, but, Huck, ghosts don't travel around only at night. They won't hender us from digging there in the daytime." "Well, that's so. But you know mighty well people don't go about that ha'nted house in the day nor the night." "Well, that's mostly because they don't like to go where a man's been murdered, anyway--but nothing's ever been seen around that house except in the night--just some blue lights slipping by the windows--no regular ghosts." "Well, where you see one of them blue lights flickering around, Tom, you can bet there's a ghost mighty close behind it. It stands to reason. Becuz you know that they don't anybody but ghosts use 'em." "Yes, that's so. But anyway they don't come around in the daytime, so what's the use of our being afeard?" "Well, all right. We'll tackle the ha'nted house if you say so--but I reckon it's taking chances." They had started down the hill by this time. There in the middle of the moonlit valley below them stood the "ha'nted" house, utterly isolated, its fences gone long ago, rank weeds smothering the very doorsteps, the chimney crumbled to ruin, the window-sashes vacant, a corner of the roof caved in. The boys gazed awhile, half expecting to see a blue light flit past a window; then talking in a low tone, as befitted the time and the circumstances, they struck far off to the right, to give the haunted house a wide berth, and took their way homeward through the woods that adorned the rearward side of Cardiff Hill. CHAPTER XXVI ABOUT noon the next day the boys arrived at the dead tree; they had come for their tools. Tom was impatient to go to the haunted house; Huck was measurably so, also--but suddenly said: "Lookyhere, Tom, do you know what day it is?" Tom mentally ran over the days of the week, and then quickly lifted his eyes with a startled look in them-- "My! I never once thought of it, Huck!" "Well, I didn't neither, but all at once it popped onto me that it was Friday." "Blame it, a body can't be too careful, Huck. We might 'a' got into an awful scrape, tackling such a thing on a Friday." "MIGHT! Better say we WOULD! There's some lucky days, maybe, but Friday ain't." "Any fool knows that. I don't reckon YOU was the first that found it out, Huck." "Well, I never said I was, did I? And Friday ain't all, neither. I had a rotten bad dream last night--dreampt about rats." "No! Sure sign of trouble. Did they fight?" "No." "Well, that's good, Huck. When they don't fight it's only a sign that there's trouble around, you know. All we got to do is to look mighty sharp and keep out of it. We'll drop this thing for to-day, and play. Do you know Robin Hood, Huck?" "No. Who's Robin Hood?" "Why, he was one of the greatest men that was ever in England--and the best. He was a robber." "Cracky, I wisht I was. Who did he rob?" "Only sheriffs and bishops and rich people and kings, and such like. But he never bothered the poor. He loved 'em. He always divided up with 'em perfectly square." "Well, he must 'a' been a brick." "I bet you he was, Huck. Oh, he was the noblest man that ever was. They ain't any such men now, I can tell you. He could lick any man in England, with one hand tied behind him; and he could take his yew bow and plug a ten-cent piece every time, a mile and a half." "What's a YEW bow?" "I don't know. It's some kind of a bow, of course. And if he hit that dime only on the edge he would set down and cry--and curse. But we'll play Robin Hood--it's nobby fun. I'll learn you." "I'm agreed." So they played Robin Hood all the afternoon, now and then casting a yearning eye down upon the haunted house and passing a remark about the morrow's prospects and possibilities there. As the sun began to sink into the west they took their way homeward athwart the long shadows of the trees and soon were buried from sight in the forests of Cardiff Hill. On Saturday, shortly after noon, the boys were at the dead tree again. They had a smoke and a chat in the shade, and then dug a little in their last hole, not with great hope, but merely because Tom said there were so many cases where people had given up a treasure after getting down within six inches of it, and then somebody else had come along and turned it up with a single thrust of a shovel. The thing failed this time, however, so the boys shouldered their tools and went away feeling that they had not trifled with fortune, but had fulfilled all the requirements that belong to the business of treasure-hunting. When they reached the haunted house there was something so weird and grisly about the dead silence that reigned there under the baking sun, and something so depressing about the loneliness and desolation of the place, that they were afraid, for a moment, to venture in. Then they crept to the door and took a trembling peep. They saw a weed-grown, floorless room, unplastered, an ancient fireplace, vacant windows, a ruinous staircase; and here, there, and everywhere hung ragged and abandoned cobwebs. They presently entered, softly, with quickened pulses, talking in whispers, ears alert to catch the slightest sound, and muscles tense and ready for instant retreat. In a little while familiarity modified their fears and they gave the place a critical and interested examination, rather admiring their own boldness, and wondering at it, too. Next they wanted to look up-stairs. This was something like cutting off retreat, but they got to daring each other, and of course there could be but one result--they threw their tools into a corner and made the ascent. Up there were the same signs of decay. In one corner they found a closet that promised mystery, but the promise was a fraud--there was nothing in it. Their courage was up now and well in hand. They were about to go down and begin work when-- "Sh!" said Tom. "What is it?" whispered Huck, blanching with fright. "Sh!... There!... Hear it?" "Yes!... Oh, my! Let's run!" "Keep still! Don't you budge! They're coming right toward the door." The boys stretched themselves upon the floor with their eyes to knot-holes in the planking, and lay waiting, in a misery of fear. "They've stopped.... No--coming.... Here they are. Don't whisper another word, Huck. My goodness, I wish I was out of this!" Two men entered. Each boy said to himself: "There's the old deaf and dumb Spaniard that's been about town once or twice lately--never saw t'other man before." "T'other" was a ragged, unkempt creature, with nothing very pleasant in his face. The Spaniard was wrapped in a serape; he had bushy white whiskers; long white hair flowed from under his sombrero, and he wore green goggles. When they came in, "t'other" was talking in a low voice; they sat down on the ground, facing the door, with their backs to the wall, and the speaker continued his remarks. His manner became less guarded and his words more distinct as he proceeded: "No," said he, "I've thought it all over, and I don't like it. It's dangerous." "Dangerous!" grunted the "deaf and dumb" Spaniard--to the vast surprise of the boys. "Milksop!" This voice made the boys gasp and quake. It was Injun Joe's! There was silence for some time. Then Joe said: "What's any more dangerous than that job up yonder--but nothing's come of it." "That's different. Away up the river so, and not another house about. 'Twon't ever be known that we tried, anyway, long as we didn't succeed." "Well, what's more dangerous than coming here in the daytime!--anybody would suspicion us that saw us." "I know that. But there warn't any other place as handy after that fool of a job. I want to quit this shanty. I wanted to yesterday, only it warn't any use trying to stir out of here, with those infernal boys playing over there on the hill right in full view." "Those infernal boys" quaked again under the inspiration of this remark, and thought how lucky it was that they had remembered it was Friday and concluded to wait a day. They wished in their hearts they had waited a year. The two men got out some food and made a luncheon. After a long and thoughtful silence, Injun Joe said: "Look here, lad--you go back up the river where you belong. Wait there till you hear from me. I'll take the chances on dropping into this town just once more, for a look. We'll do that 'dangerous' job after I've spied around a little and think things look well for it. Then for Texas! We'll leg it together!" This was satisfactory. Both men presently fell to yawning, and Injun Joe said: "I'm dead for sleep! It's your turn to watch." He curled down in the weeds and soon began to snore. His comrade stirred him once or twice and he became quiet. Presently the watcher began to nod; his head drooped lower and lower, both men began to snore now. The boys drew a long, grateful breath. Tom whispered: "Now's our chance--come!" Huck said: "I can't--I'd die if they was to wake." Tom urged--Huck held back. At last Tom rose slowly and softly, and started alone. But the first step he made wrung such a hideous creak from the crazy floor that he sank down almost dead with fright. He never made a second attempt. The boys lay there counting the dragging moments till it seemed to them that time must be done and eternity growing gray; and then they were grateful to note that at last the sun was setting. Now one snore ceased. Injun Joe sat up, stared around--smiled grimly upon his comrade, whose head was drooping upon his knees--stirred him up with his foot and said: "Here! YOU'RE a watchman, ain't you! All right, though--nothing's happened." "My! have I been asleep?" "Oh, partly, partly. Nearly time for us to be moving, pard. What'll we do with what little swag we've got left?" "I don't know--leave it here as we've always done, I reckon. No use to take it away till we start south. Six hundred and fifty in silver's something to carry." "Well--all right--it won't matter to come here once more." "No--but I'd say come in the night as we used to do--it's better." "Yes: but look here; it may be a good while before I get the right chance at that job; accidents might happen; 'tain't in such a very good place; we'll just regularly bury it--and bury it deep." "Good idea," said the comrade, who walked across the room, knelt down, raised one of the rearward hearth-stones and took out a bag that jingled pleasantly. He subtracted from it twenty or thirty dollars for himself and as much for Injun Joe, and passed the bag to the latter, who was on his knees in the corner, now, digging with his bowie-knife. The boys forgot all their fears, all their miseries in an instant. With gloating eyes they watched every movement. Luck!--the splendor of it was beyond all imagination! Six hundred dollars was money enough to make half a dozen boys rich! Here was treasure-hunting under the happiest auspices--there would not be any bothersome uncertainty as to where to dig. They nudged each other every moment--eloquent nudges and easily understood, for they simply meant--"Oh, but ain't you glad NOW we're here!" Joe's knife struck upon something. "Hello!" said he. "What is it?" said his comrade. "Half-rotten plank--no, it's a box, I believe. Here--bear a hand and we'll see what it's here for. Never mind, I've broke a hole." He reached his hand in and drew it out-- "Man, it's money!" The two men examined the handful of coins. They were gold. The boys above were as excited as themselves, and as delighted. Joe's comrade said: "We'll make quick work of this. There's an old rusty pick over amongst the weeds in the corner the other side of the fireplace--I saw it a minute ago." He ran and brought the boys' pick and shovel. Injun Joe took the pick, looked it over critically, shook his head, muttered something to himself, and then began to use it. The box was soon unearthed. It was not very large; it was iron bound and had been very strong before the slow years had injured it. The men contemplated the treasure awhile in blissful silence. "Pard, there's thousands of dollars here," said Injun Joe. "'Twas always said that Murrel's gang used to be around here one summer," the stranger observed. "I know it," said Injun Joe; "and this looks like it, I should say." "Now you won't need to do that job." The half-breed frowned. Said he: "You don't know me. Least you don't know all about that thing. 'Tain't robbery altogether--it's REVENGE!" and a wicked light flamed in his eyes. "I'll need your help in it. When it's finished--then Texas. Go home to your Nance and your kids, and stand by till you hear from me." "Well--if you say so; what'll we do with this--bury it again?" "Yes. [Ravishing delight overhead.] NO! by the great Sachem, no! [Profound distress overhead.] I'd nearly forgot. That pick had fresh earth on it! [The boys were sick with terror in a moment.] What business has a pick and a shovel here? What business with fresh earth on them? Who brought them here--and where are they gone? Have you heard anybody?--seen anybody? What! bury it again and leave them to come and see the ground disturbed? Not exactly--not exactly. We'll take it to my den." "Why, of course! Might have thought of that before. You mean Number One?" "No--Number Two--under the cross. The other place is bad--too common." "All right. It's nearly dark enough to start." Injun Joe got up and went about from window to window cautiously peeping out. Presently he said: "Who could have brought those tools here? Do you reckon they can be up-stairs?" The boys' breath forsook them. Injun Joe put his hand on his knife, halted a moment, undecided, and then turned toward the stairway. The boys thought of the closet, but their strength was gone. The steps came creaking up the stairs--the intolerable distress of the situation woke the stricken resolution of the lads--they were about to spring for the closet, when there was a crash of rotten timbers and Injun Joe landed on the ground amid the debris of the ruined stairway. He gathered himself up cursing, and his comrade said: "Now what's the use of all that? If it's anybody, and they're up there, let them STAY there--who cares? If they want to jump down, now, and get into trouble, who objects? It will be dark in fifteen minutes --and then let them follow us if they want to. I'm willing. In my opinion, whoever hove those things in here caught a sight of us and took us for ghosts or devils or something. I'll bet they're running yet." Joe grumbled awhile; then he agreed with his friend that what daylight was left ought to be economized in getting things ready for leaving. Shortly afterward they slipped out of the house in the deepening twilight, and moved toward the river with their precious box. Tom and Huck rose up, weak but vastly relieved, and stared after them through the chinks between the logs of the house. Follow? Not they. They were content to reach ground again without broken necks, and take the townward track over the hill. They did not talk much. They were too much absorbed in hating themselves--hating the ill luck that made them take the spade and the pick there. But for that, Injun Joe never would have suspected. He would have hidden the silver with the gold to wait there till his "revenge" was satisfied, and then he would have had the misfortune to find that money turn up missing. Bitter, bitter luck that the tools were ever brought there! They resolved to keep a lookout for that Spaniard when he should come to town spying out for chances to do his revengeful job, and follow him to "Number Two," wherever that might be. Then a ghastly thought occurred to Tom. "Revenge? What if he means US, Huck!" "Oh, don't!" said Huck, nearly fainting. They talked it all over, and as they entered town they agreed to believe that he might possibly mean somebody else--at least that he might at least mean nobody but Tom, since only Tom had testified. Very, very small comfort it was to Tom to be alone in danger! Company would be a palpable improvement, he thought. CHAPTER XXVII THE adventure of the day mightily tormented Tom's dreams that night. Four times he had his hands on that rich treasure and four times it wasted to nothingness in his fingers as sleep forsook him and wakefulness brought back the hard reality of his misfortune. As he lay in the early morning recalling the incidents of his great adventure, he noticed that they seemed curiously subdued and far away--somewhat as if they had happened in another world, or in a time long gone by. Then it occurred to him that the great adventure itself must be a dream! There was one very strong argument in favor of this idea--namely, that the quantity of coin he had seen was too vast to be real. He had never seen as much as fifty dollars in one mass before, and he was like all boys of his age and station in life, in that he imagined that all references to "hundreds" and "thousands" were mere fanciful forms of speech, and that no such sums really existed in the world. He never had supposed for a moment that so large a sum as a hundred dollars was to be found in actual money in any one's possession. If his notions of hidden treasure had been analyzed, they would have been found to consist of a handful of real dimes and a bushel of vague, splendid, ungraspable dollars. But the incidents of his adventure grew sensibly sharper and clearer under the attrition of thinking them over, and so he presently found himself leaning to the impression that the thing might not have been a dream, after all. This uncertainty must be swept away. He would snatch a hurried breakfast and go and find Huck. Huck was sitting on the gunwale of a flatboat, listlessly dangling his feet in the water and looking very melancholy. Tom concluded to let Huck lead up to the subject. If he did not do it, then the adventure would be proved to have been only a dream. "Hello, Huck!" "Hello, yourself." Silence, for a minute. "Tom, if we'd 'a' left the blame tools at the dead tree, we'd 'a' got the money. Oh, ain't it awful!" "'Tain't a dream, then, 'tain't a dream! Somehow I most wish it was. Dog'd if I don't, Huck." "What ain't a dream?" "Oh, that thing yesterday. I been half thinking it was." "Dream! If them stairs hadn't broke down you'd 'a' seen how much dream it was! I've had dreams enough all night--with that patch-eyed Spanish devil going for me all through 'em--rot him!" "No, not rot him. FIND him! Track the money!" "Tom, we'll never find him. A feller don't have only one chance for such a pile--and that one's lost. I'd feel mighty shaky if I was to see him, anyway." "Well, so'd I; but I'd like to see him, anyway--and track him out--to his Number Two." "Number Two--yes, that's it. I been thinking 'bout that. But I can't make nothing out of it. What do you reckon it is?" "I dono. It's too deep. Say, Huck--maybe it's the number of a house!" "Goody!... No, Tom, that ain't it. If it is, it ain't in this one-horse town. They ain't no numbers here." "Well, that's so. Lemme think a minute. Here--it's the number of a room--in a tavern, you know!" "Oh, that's the trick! They ain't only two taverns. We can find out quick." "You stay here, Huck, till I come." Tom was off at once. He did not care to have Huck's company in public places. He was gone half an hour. He found that in the best tavern, No. 2 had long been occupied by a young lawyer, and was still so occupied. In the less ostentatious house, No. 2 was a mystery. The tavern-keeper's young son said it was kept locked all the time, and he never saw anybody go into it or come out of it except at night; he did not know any particular reason for this state of things; had had some little curiosity, but it was rather feeble; had made the most of the mystery by entertaining himself with the idea that that room was "ha'nted"; had noticed that there was a light in there the night before. "That's what I've found out, Huck. I reckon that's the very No. 2 we're after." "I reckon it is, Tom. Now what you going to do?" "Lemme think." Tom thought a long time. Then he said: "I'll tell you. The back door of that No. 2 is the door that comes out into that little close alley between the tavern and the old rattle trap of a brick store. Now you get hold of all the door-keys you can find, and I'll nip all of auntie's, and the first dark night we'll go there and try 'em. And mind you, keep a lookout for Injun Joe, because he said he was going to drop into town and spy around once more for a chance to get his revenge. If you see him, you just follow him; and if he don't go to that No. 2, that ain't the place." "Lordy, I don't want to foller him by myself!" "Why, it'll be night, sure. He mightn't ever see you--and if he did, maybe he'd never think anything." "Well, if it's pretty dark I reckon I'll track him. I dono--I dono. I'll try." "You bet I'll follow him, if it's dark, Huck. Why, he might 'a' found out he couldn't get his revenge, and be going right after that money." "It's so, Tom, it's so. I'll foller him; I will, by jingoes!" "Now you're TALKING! Don't you ever weaken, Huck, and I won't." CHAPTER XXVIII THAT night Tom and Huck were ready for their adventure. They hung about the neighborhood of the tavern until after nine, one watching the alley at a distance and the other the tavern door. Nobody entered the alley or left it; nobody resembling the Spaniard entered or left the tavern door. The night promised to be a fair one; so Tom went home with the understanding that if a considerable degree of darkness came on, Huck was to come and "maow," whereupon he would slip out and try the keys. But the night remained clear, and Huck closed his watch and retired to bed in an empty sugar hogshead about twelve. Tuesday the boys had the same ill luck. Also Wednesday. But Thursday night promised better. Tom slipped out in good season with his aunt's old tin lantern, and a large towel to blindfold it with. He hid the lantern in Huck's sugar hogshead and the watch began. An hour before midnight the tavern closed up and its lights (the only ones thereabouts) were put out. No Spaniard had been seen. Nobody had entered or left the alley. Everything was auspicious. The blackness of darkness reigned, the perfect stillness was interrupted only by occasional mutterings of distant thunder. Tom got his lantern, lit it in the hogshead, wrapped it closely in the towel, and the two adventurers crept in the gloom toward the tavern. Huck stood sentry and Tom felt his way into the alley. Then there was a season of waiting anxiety that weighed upon Huck's spirits like a mountain. He began to wish he could see a flash from the lantern--it would frighten him, but it would at least tell him that Tom was alive yet. It seemed hours since Tom had disappeared. Surely he must have fainted; maybe he was dead; maybe his heart had burst under terror and excitement. In his uneasiness Huck found himself drawing closer and closer to the alley; fearing all sorts of dreadful things, and momentarily expecting some catastrophe to happen that would take away his breath. There was not much to take away, for he seemed only able to inhale it by thimblefuls, and his heart would soon wear itself out, the way it was beating. Suddenly there was a flash of light and Tom came tearing by him: "Run!" said he; "run, for your life!" He needn't have repeated it; once was enough; Huck was making thirty or forty miles an hour before the repetition was uttered. The boys never stopped till they reached the shed of a deserted slaughter-house at the lower end of the village. Just as they got within its shelter the storm burst and the rain poured down. As soon as Tom got his breath he said: "Huck, it was awful! I tried two of the keys, just as soft as I could; but they seemed to make such a power of racket that I couldn't hardly get my breath I was so scared. They wouldn't turn in the lock, either. Well, without noticing what I was doing, I took hold of the knob, and open comes the door! It warn't locked! I hopped in, and shook off the towel, and, GREAT CAESAR'S GHOST!" "What!--what'd you see, Tom?" "Huck, I most stepped onto Injun Joe's hand!" "No!" "Yes! He was lying there, sound asleep on the floor, with his old patch on his eye and his arms spread out." "Lordy, what did you do? Did he wake up?" "No, never budged. Drunk, I reckon. I just grabbed that towel and started!" "I'd never 'a' thought of the towel, I bet!" "Well, I would. My aunt would make me mighty sick if I lost it." "Say, Tom, did you see that box?" "Huck, I didn't wait to look around. I didn't see the box, I didn't see the cross. I didn't see anything but a bottle and a tin cup on the floor by Injun Joe; yes, I saw two barrels and lots more bottles in the room. Don't you see, now, what's the matter with that ha'nted room?" "How?" "Why, it's ha'nted with whiskey! Maybe ALL the Temperance Taverns have got a ha'nted room, hey, Huck?" "Well, I reckon maybe that's so. Who'd 'a' thought such a thing? But say, Tom, now's a mighty good time to get that box, if Injun Joe's drunk." "It is, that! You try it!" Huck shuddered. "Well, no--I reckon not." "And I reckon not, Huck. Only one bottle alongside of Injun Joe ain't enough. If there'd been three, he'd be drunk enough and I'd do it." There was a long pause for reflection, and then Tom said: "Lookyhere, Huck, less not try that thing any more till we know Injun Joe's not in there. It's too scary. Now, if we watch every night, we'll be dead sure to see him go out, some time or other, and then we'll snatch that box quicker'n lightning." "Well, I'm agreed. I'll watch the whole night long, and I'll do it every night, too, if you'll do the other part of the job." "All right, I will. All you got to do is to trot up Hooper Street a block and maow--and if I'm asleep, you throw some gravel at the window and that'll fetch me." "Agreed, and good as wheat!" "Now, Huck, the storm's over, and I'll go home. It'll begin to be daylight in a couple of hours. You go back and watch that long, will you?" "I said I would, Tom, and I will. I'll ha'nt that tavern every night for a year! I'll sleep all day and I'll stand watch all night." "That's all right. Now, where you going to sleep?" "In Ben Rogers' hayloft. He lets me, and so does his pap's nigger man, Uncle Jake. I tote water for Uncle Jake whenever he wants me to, and any time I ask him he gives me a little something to eat if he can spare it. That's a mighty good nigger, Tom. He likes me, becuz I don't ever act as if I was above him. Sometime I've set right down and eat WITH him. But you needn't tell that. A body's got to do things when he's awful hungry he wouldn't want to do as a steady thing." "Well, if I don't want you in the daytime, I'll let you sleep. I won't come bothering around. Any time you see something's up, in the night, just skip right around and maow." CHAPTER XXIX THE first thing Tom heard on Friday morning was a glad piece of news --Judge Thatcher's family had come back to town the night before. Both Injun Joe and the treasure sunk into secondary importance for a moment, and Becky took the chief place in the boy's interest. He saw her and they had an exhausting good time playing "hi-spy" and "gully-keeper" with a crowd of their school-mates. The day was completed and crowned in a peculiarly satisfactory way: Becky teased her mother to appoint the next day for the long-promised and long-delayed picnic, and she consented. The child's delight was boundless; and Tom's not more moderate. The invitations were sent out before sunset, and straightway the young folks of the village were thrown into a fever of preparation and pleasurable anticipation. Tom's excitement enabled him to keep awake until a pretty late hour, and he had good hopes of hearing Huck's "maow," and of having his treasure to astonish Becky and the picnickers with, next day; but he was disappointed. No signal came that night. Morning came, eventually, and by ten or eleven o'clock a giddy and rollicking company were gathered at Judge Thatcher's, and everything was ready for a start. It was not the custom for elderly people to mar the picnics with their presence. The children were considered safe enough under the wings of a few young ladies of eighteen and a few young gentlemen of twenty-three or thereabouts. The old steam ferryboat was chartered for the occasion; presently the gay throng filed up the main street laden with provision-baskets. Sid was sick and had to miss the fun; Mary remained at home to entertain him. The last thing Mrs. Thatcher said to Becky, was: "You'll not get back till late. Perhaps you'd better stay all night with some of the girls that live near the ferry-landing, child." "Then I'll stay with Susy Harper, mamma." "Very well. And mind and behave yourself and don't be any trouble." Presently, as they tripped along, Tom said to Becky: "Say--I'll tell you what we'll do. 'Stead of going to Joe Harper's we'll climb right up the hill and stop at the Widow Douglas'. She'll have ice-cream! She has it most every day--dead loads of it. And she'll be awful glad to have us." "Oh, that will be fun!" Then Becky reflected a moment and said: "But what will mamma say?" "How'll she ever know?" The girl turned the idea over in her mind, and said reluctantly: "I reckon it's wrong--but--" "But shucks! Your mother won't know, and so what's the harm? All she wants is that you'll be safe; and I bet you she'd 'a' said go there if she'd 'a' thought of it. I know she would!" The Widow Douglas' splendid hospitality was a tempting bait. It and Tom's persuasions presently carried the day. So it was decided to say nothing anybody about the night's programme. Presently it occurred to Tom that maybe Huck might come this very night and give the signal. The thought took a deal of the spirit out of his anticipations. Still he could not bear to give up the fun at Widow Douglas'. And why should he give it up, he reasoned--the signal did not come the night before, so why should it be any more likely to come to-night? The sure fun of the evening outweighed the uncertain treasure; and, boy-like, he determined to yield to the stronger inclination and not allow himself to think of the box of money another time that day. Three miles below town the ferryboat stopped at the mouth of a woody hollow and tied up. The crowd swarmed ashore and soon the forest distances and craggy heights echoed far and near with shoutings and laughter. All the different ways of getting hot and tired were gone through with, and by-and-by the rovers straggled back to camp fortified with responsible appetites, and then the destruction of the good things began. After the feast there was a refreshing season of rest and chat in the shade of spreading oaks. By-and-by somebody shouted: "Who's ready for the cave?" Everybody was. Bundles of candles were procured, and straightway there was a general scamper up the hill. The mouth of the cave was up the hillside--an opening shaped like a letter A. Its massive oaken door stood unbarred. Within was a small chamber, chilly as an ice-house, and walled by Nature with solid limestone that was dewy with a cold sweat. It was romantic and mysterious to stand here in the deep gloom and look out upon the green valley shining in the sun. But the impressiveness of the situation quickly wore off, and the romping began again. The moment a candle was lighted there was a general rush upon the owner of it; a struggle and a gallant defence followed, but the candle was soon knocked down or blown out, and then there was a glad clamor of laughter and a new chase. But all things have an end. By-and-by the procession went filing down the steep descent of the main avenue, the flickering rank of lights dimly revealing the lofty walls of rock almost to their point of junction sixty feet overhead. This main avenue was not more than eight or ten feet wide. Every few steps other lofty and still narrower crevices branched from it on either hand--for McDougal's cave was but a vast labyrinth of crooked aisles that ran into each other and out again and led nowhere. It was said that one might wander days and nights together through its intricate tangle of rifts and chasms, and never find the end of the cave; and that he might go down, and down, and still down, into the earth, and it was just the same--labyrinth under labyrinth, and no end to any of them. No man "knew" the cave. That was an impossible thing. Most of the young men knew a portion of it, and it was not customary to venture much beyond this known portion. Tom Sawyer knew as much of the cave as any one. The procession moved along the main avenue some three-quarters of a mile, and then groups and couples began to slip aside into branch avenues, fly along the dismal corridors, and take each other by surprise at points where the corridors joined again. Parties were able to elude each other for the space of half an hour without going beyond the "known" ground. By-and-by, one group after another came straggling back to the mouth of the cave, panting, hilarious, smeared from head to foot with tallow drippings, daubed with clay, and entirely delighted with the success of the day. Then they were astonished to find that they had been taking no note of time and that night was about at hand. The clanging bell had been calling for half an hour. However, this sort of close to the day's adventures was romantic and therefore satisfactory. When the ferryboat with her wild freight pushed into the stream, nobody cared sixpence for the wasted time but the captain of the craft. Huck was already upon his watch when the ferryboat's lights went glinting past the wharf. He heard no noise on board, for the young people were as subdued and still as people usually are who are nearly tired to death. He wondered what boat it was, and why she did not stop at the wharf--and then he dropped her out of his mind and put his attention upon his business. The night was growing cloudy and dark. Ten o'clock came, and the noise of vehicles ceased, scattered lights began to wink out, all straggling foot-passengers disappeared, the village betook itself to its slumbers and left the small watcher alone with the silence and the ghosts. Eleven o'clock came, and the tavern lights were put out; darkness everywhere, now. Huck waited what seemed a weary long time, but nothing happened. His faith was weakening. Was there any use? Was there really any use? Why not give it up and turn in? A noise fell upon his ear. He was all attention in an instant. The alley door closed softly. He sprang to the corner of the brick store. The next moment two men brushed by him, and one seemed to have something under his arm. It must be that box! So they were going to remove the treasure. Why call Tom now? It would be absurd--the men would get away with the box and never be found again. No, he would stick to their wake and follow them; he would trust to the darkness for security from discovery. So communing with himself, Huck stepped out and glided along behind the men, cat-like, with bare feet, allowing them to keep just far enough ahead not to be invisible. They moved up the river street three blocks, then turned to the left up a cross-street. They went straight ahead, then, until they came to the path that led up Cardiff Hill; this they took. They passed by the old Welshman's house, half-way up the hill, without hesitating, and still climbed upward. Good, thought Huck, they will bury it in the old quarry. But they never stopped at the quarry. They passed on, up the summit. They plunged into the narrow path between the tall sumach bushes, and were at once hidden in the gloom. Huck closed up and shortened his distance, now, for they would never be able to see him. He trotted along awhile; then slackened his pace, fearing he was gaining too fast; moved on a piece, then stopped altogether; listened; no sound; none, save that he seemed to hear the beating of his own heart. The hooting of an owl came over the hill--ominous sound! But no footsteps. Heavens, was everything lost! He was about to spring with winged feet, when a man cleared his throat not four feet from him! Huck's heart shot into his throat, but he swallowed it again; and then he stood there shaking as if a dozen agues had taken charge of him at once, and so weak that he thought he must surely fall to the ground. He knew where he was. He knew he was within five steps of the stile leading into Widow Douglas' grounds. Very well, he thought, let them bury it there; it won't be hard to find. Now there was a voice--a very low voice--Injun Joe's: "Damn her, maybe she's got company--there's lights, late as it is." "I can't see any." This was that stranger's voice--the stranger of the haunted house. A deadly chill went to Huck's heart--this, then, was the "revenge" job! His thought was, to fly. Then he remembered that the Widow Douglas had been kind to him more than once, and maybe these men were going to murder her. He wished he dared venture to warn her; but he knew he didn't dare--they might come and catch him. He thought all this and more in the moment that elapsed between the stranger's remark and Injun Joe's next--which was-- "Because the bush is in your way. Now--this way--now you see, don't you?" "Yes. Well, there IS company there, I reckon. Better give it up." "Give it up, and I just leaving this country forever! Give it up and maybe never have another chance. I tell you again, as I've told you before, I don't care for her swag--you may have it. But her husband was rough on me--many times he was rough on me--and mainly he was the justice of the peace that jugged me for a vagrant. And that ain't all. It ain't a millionth part of it! He had me HORSEWHIPPED!--horsewhipped in front of the jail, like a nigger!--with all the town looking on! HORSEWHIPPED!--do you understand? He took advantage of me and died. But I'll take it out of HER." "Oh, don't kill her! Don't do that!" "Kill? Who said anything about killing? I would kill HIM if he was here; but not her. When you want to get revenge on a woman you don't kill her--bosh! you go for her looks. You slit her nostrils--you notch her ears like a sow!" "By God, that's--" "Keep your opinion to yourself! It will be safest for you. I'll tie her to the bed. If she bleeds to death, is that my fault? I'll not cry, if she does. My friend, you'll help me in this thing--for MY sake --that's why you're here--I mightn't be able alone. If you flinch, I'll kill you. Do you understand that? And if I have to kill you, I'll kill her--and then I reckon nobody'll ever know much about who done this business." "Well, if it's got to be done, let's get at it. The quicker the better--I'm all in a shiver." "Do it NOW? And company there? Look here--I'll get suspicious of you, first thing you know. No--we'll wait till the lights are out--there's no hurry." Huck felt that a silence was going to ensue--a thing still more awful than any amount of murderous talk; so he held his breath and stepped gingerly back; planted his foot carefully and firmly, after balancing, one-legged, in a precarious way and almost toppling over, first on one side and then on the other. He took another step back, with the same elaboration and the same risks; then another and another, and--a twig snapped under his foot! His breath stopped and he listened. There was no sound--the stillness was perfect. His gratitude was measureless. Now he turned in his tracks, between the walls of sumach bushes--turned himself as carefully as if he were a ship--and then stepped quickly but cautiously along. When he emerged at the quarry he felt secure, and so he picked up his nimble heels and flew. Down, down he sped, till he reached the Welshman's. He banged at the door, and presently the heads of the old man and his two stalwart sons were thrust from windows. "What's the row there? Who's banging? What do you want?" "Let me in--quick! I'll tell everything." "Why, who are you?" "Huckleberry Finn--quick, let me in!" "Huckleberry Finn, indeed! It ain't a name to open many doors, I judge! But let him in, lads, and let's see what's the trouble." "Please don't ever tell I told you," were Huck's first words when he got in. "Please don't--I'd be killed, sure--but the widow's been good friends to me sometimes, and I want to tell--I WILL tell if you'll promise you won't ever say it was me." "By George, he HAS got something to tell, or he wouldn't act so!" exclaimed the old man; "out with it and nobody here'll ever tell, lad." Three minutes later the old man and his sons, well armed, were up the hill, and just entering the sumach path on tiptoe, their weapons in their hands. Huck accompanied them no further. He hid behind a great bowlder and fell to listening. There was a lagging, anxious silence, and then all of a sudden there was an explosion of firearms and a cry. Huck waited for no particulars. He sprang away and sped down the hill as fast as his legs could carry him. CHAPTER XXX AS the earliest suspicion of dawn appeared on Sunday morning, Huck came groping up the hill and rapped gently at the old Welshman's door. The inmates were asleep, but it was a sleep that was set on a hair-trigger, on account of the exciting episode of the night. A call came from a window: "Who's there!" Huck's scared voice answered in a low tone: "Please let me in! It's only Huck Finn!" "It's a name that can open this door night or day, lad!--and welcome!" These were strange words to the vagabond boy's ears, and the pleasantest he had ever heard. He could not recollect that the closing word had ever been applied in his case before. The door was quickly unlocked, and he entered. Huck was given a seat and the old man and his brace of tall sons speedily dressed themselves. "Now, my boy, I hope you're good and hungry, because breakfast will be ready as soon as the sun's up, and we'll have a piping hot one, too --make yourself easy about that! I and the boys hoped you'd turn up and stop here last night." "I was awful scared," said Huck, "and I run. I took out when the pistols went off, and I didn't stop for three mile. I've come now becuz I wanted to know about it, you know; and I come before daylight becuz I didn't want to run across them devils, even if they was dead." "Well, poor chap, you do look as if you'd had a hard night of it--but there's a bed here for you when you've had your breakfast. No, they ain't dead, lad--we are sorry enough for that. You see we knew right where to put our hands on them, by your description; so we crept along on tiptoe till we got within fifteen feet of them--dark as a cellar that sumach path was--and just then I found I was going to sneeze. It was the meanest kind of luck! I tried to keep it back, but no use --'twas bound to come, and it did come! I was in the lead with my pistol raised, and when the sneeze started those scoundrels a-rustling to get out of the path, I sung out, 'Fire boys!' and blazed away at the place where the rustling was. So did the boys. But they were off in a jiffy, those villains, and we after them, down through the woods. I judge we never touched them. They fired a shot apiece as they started, but their bullets whizzed by and didn't do us any harm. As soon as we lost the sound of their feet we quit chasing, and went down and stirred up the constables. They got a posse together, and went off to guard the river bank, and as soon as it is light the sheriff and a gang are going to beat up the woods. My boys will be with them presently. I wish we had some sort of description of those rascals--'twould help a good deal. But you couldn't see what they were like, in the dark, lad, I suppose?" "Oh yes; I saw them down-town and follered them." "Splendid! Describe them--describe them, my boy!" "One's the old deaf and dumb Spaniard that's ben around here once or twice, and t'other's a mean-looking, ragged--" "That's enough, lad, we know the men! Happened on them in the woods back of the widow's one day, and they slunk away. Off with you, boys, and tell the sheriff--get your breakfast to-morrow morning!" The Welshman's sons departed at once. As they were leaving the room Huck sprang up and exclaimed: "Oh, please don't tell ANYbody it was me that blowed on them! Oh, please!" "All right if you say it, Huck, but you ought to have the credit of what you did." "Oh no, no! Please don't tell!" When the young men were gone, the old Welshman said: "They won't tell--and I won't. But why don't you want it known?" Huck would not explain, further than to say that he already knew too much about one of those men and would not have the man know that he knew anything against him for the whole world--he would be killed for knowing it, sure. The old man promised secrecy once more, and said: "How did you come to follow these fellows, lad? Were they looking suspicious?" Huck was silent while he framed a duly cautious reply. Then he said: "Well, you see, I'm a kind of a hard lot,--least everybody says so, and I don't see nothing agin it--and sometimes I can't sleep much, on account of thinking about it and sort of trying to strike out a new way of doing. That was the way of it last night. I couldn't sleep, and so I come along up-street 'bout midnight, a-turning it all over, and when I got to that old shackly brick store by the Temperance Tavern, I backed up agin the wall to have another think. Well, just then along comes these two chaps slipping along close by me, with something under their arm, and I reckoned they'd stole it. One was a-smoking, and t'other one wanted a light; so they stopped right before me and the cigars lit up their faces and I see that the big one was the deaf and dumb Spaniard, by his white whiskers and the patch on his eye, and t'other one was a rusty, ragged-looking devil." "Could you see the rags by the light of the cigars?" This staggered Huck for a moment. Then he said: "Well, I don't know--but somehow it seems as if I did." "Then they went on, and you--" "Follered 'em--yes. That was it. I wanted to see what was up--they sneaked along so. I dogged 'em to the widder's stile, and stood in the dark and heard the ragged one beg for the widder, and the Spaniard swear he'd spile her looks just as I told you and your two--" "What! The DEAF AND DUMB man said all that!" Huck had made another terrible mistake! He was trying his best to keep the old man from getting the faintest hint of who the Spaniard might be, and yet his tongue seemed determined to get him into trouble in spite of all he could do. He made several efforts to creep out of his scrape, but the old man's eye was upon him and he made blunder after blunder. Presently the Welshman said: "My boy, don't be afraid of me. I wouldn't hurt a hair of your head for all the world. No--I'd protect you--I'd protect you. This Spaniard is not deaf and dumb; you've let that slip without intending it; you can't cover that up now. You know something about that Spaniard that you want to keep dark. Now trust me--tell me what it is, and trust me --I won't betray you." Huck looked into the old man's honest eyes a moment, then bent over and whispered in his ear: "'Tain't a Spaniard--it's Injun Joe!" The Welshman almost jumped out of his chair. In a moment he said: "It's all plain enough, now. When you talked about notching ears and slitting noses I judged that that was your own embellishment, because white men don't take that sort of revenge. But an Injun! That's a different matter altogether." During breakfast the talk went on, and in the course of it the old man said that the last thing which he and his sons had done, before going to bed, was to get a lantern and examine the stile and its vicinity for marks of blood. They found none, but captured a bulky bundle of-- "Of WHAT?" If the words had been lightning they could not have leaped with a more stunning suddenness from Huck's blanched lips. His eyes were staring wide, now, and his breath suspended--waiting for the answer. The Welshman started--stared in return--three seconds--five seconds--ten --then replied: "Of burglar's tools. Why, what's the MATTER with you?" Huck sank back, panting gently, but deeply, unutterably grateful. The Welshman eyed him gravely, curiously--and presently said: "Yes, burglar's tools. That appears to relieve you a good deal. But what did give you that turn? What were YOU expecting we'd found?" Huck was in a close place--the inquiring eye was upon him--he would have given anything for material for a plausible answer--nothing suggested itself--the inquiring eye was boring deeper and deeper--a senseless reply offered--there was no time to weigh it, so at a venture he uttered it--feebly: "Sunday-school books, maybe." Poor Huck was too distressed to smile, but the old man laughed loud and joyously, shook up the details of his anatomy from head to foot, and ended by saying that such a laugh was money in a-man's pocket, because it cut down the doctor's bill like everything. Then he added: "Poor old chap, you're white and jaded--you ain't well a bit--no wonder you're a little flighty and off your balance. But you'll come out of it. Rest and sleep will fetch you out all right, I hope." Huck was irritated to think he had been such a goose and betrayed such a suspicious excitement, for he had dropped the idea that the parcel brought from the tavern was the treasure, as soon as he had heard the talk at the widow's stile. He had only thought it was not the treasure, however--he had not known that it wasn't--and so the suggestion of a captured bundle was too much for his self-possession. But on the whole he felt glad the little episode had happened, for now he knew beyond all question that that bundle was not THE bundle, and so his mind was at rest and exceedingly comfortable. In fact, everything seemed to be drifting just in the right direction, now; the treasure must be still in No. 2, the men would be captured and jailed that day, and he and Tom could seize the gold that night without any trouble or any fear of interruption. Just as breakfast was completed there was a knock at the door. Huck jumped for a hiding-place, for he had no mind to be connected even remotely with the late event. The Welshman admitted several ladies and gentlemen, among them the Widow Douglas, and noticed that groups of citizens were climbing up the hill--to stare at the stile. So the news had spread. The Welshman had to tell the story of the night to the visitors. The widow's gratitude for her preservation was outspoken. "Don't say a word about it, madam. There's another that you're more beholden to than you are to me and my boys, maybe, but he don't allow me to tell his name. We wouldn't have been there but for him." Of course this excited a curiosity so vast that it almost belittled the main matter--but the Welshman allowed it to eat into the vitals of his visitors, and through them be transmitted to the whole town, for he refused to part with his secret. When all else had been learned, the widow said: "I went to sleep reading in bed and slept straight through all that noise. Why didn't you come and wake me?" "We judged it warn't worth while. Those fellows warn't likely to come again--they hadn't any tools left to work with, and what was the use of waking you up and scaring you to death? My three negro men stood guard at your house all the rest of the night. They've just come back." More visitors came, and the story had to be told and retold for a couple of hours more. There was no Sabbath-school during day-school vacation, but everybody was early at church. The stirring event was well canvassed. News came that not a sign of the two villains had been yet discovered. When the sermon was finished, Judge Thatcher's wife dropped alongside of Mrs. Harper as she moved down the aisle with the crowd and said: "Is my Becky going to sleep all day? I just expected she would be tired to death." "Your Becky?" "Yes," with a startled look--"didn't she stay with you last night?" "Why, no." Mrs. Thatcher turned pale, and sank into a pew, just as Aunt Polly, talking briskly with a friend, passed by. Aunt Polly said: "Good-morning, Mrs. Thatcher. Good-morning, Mrs. Harper. I've got a boy that's turned up missing. I reckon my Tom stayed at your house last night--one of you. And now he's afraid to come to church. I've got to settle with him." Mrs. Thatcher shook her head feebly and turned paler than ever. "He didn't stay with us," said Mrs. Harper, beginning to look uneasy. A marked anxiety came into Aunt Polly's face. "Joe Harper, have you seen my Tom this morning?" "No'm." "When did you see him last?" Joe tried to remember, but was not sure he could say. The people had stopped moving out of church. Whispers passed along, and a boding uneasiness took possession of every countenance. Children were anxiously questioned, and young teachers. They all said they had not noticed whether Tom and Becky were on board the ferryboat on the homeward trip; it was dark; no one thought of inquiring if any one was missing. One young man finally blurted out his fear that they were still in the cave! Mrs. Thatcher swooned away. Aunt Polly fell to crying and wringing her hands. The alarm swept from lip to lip, from group to group, from street to street, and within five minutes the bells were wildly clanging and the whole town was up! The Cardiff Hill episode sank into instant insignificance, the burglars were forgotten, horses were saddled, skiffs were manned, the ferryboat ordered out, and before the horror was half an hour old, two hundred men were pouring down highroad and river toward the cave. All the long afternoon the village seemed empty and dead. Many women visited Aunt Polly and Mrs. Thatcher and tried to comfort them. They cried with them, too, and that was still better than words. All the tedious night the town waited for news; but when the morning dawned at last, all the word that came was, "Send more candles--and send food." Mrs. Thatcher was almost crazed; and Aunt Polly, also. Judge Thatcher sent messages of hope and encouragement from the cave, but they conveyed no real cheer. The old Welshman came home toward daylight, spattered with candle-grease, smeared with clay, and almost worn out. He found Huck still in the bed that had been provided for him, and delirious with fever. The physicians were all at the cave, so the Widow Douglas came and took charge of the patient. She said she would do her best by him, because, whether he was good, bad, or indifferent, he was the Lord's, and nothing that was the Lord's was a thing to be neglected. The Welshman said Huck had good spots in him, and the widow said: "You can depend on it. That's the Lord's mark. He don't leave it off. He never does. Puts it somewhere on every creature that comes from his hands." Early in the forenoon parties of jaded men began to straggle into the village, but the strongest of the citizens continued searching. All the news that could be gained was that remotenesses of the cavern were being ransacked that had never been visited before; that every corner and crevice was going to be thoroughly searched; that wherever one wandered through the maze of passages, lights were to be seen flitting hither and thither in the distance, and shoutings and pistol-shots sent their hollow reverberations to the ear down the sombre aisles. In one place, far from the section usually traversed by tourists, the names "BECKY & TOM" had been found traced upon the rocky wall with candle-smoke, and near at hand a grease-soiled bit of ribbon. Mrs. Thatcher recognized the ribbon and cried over it. She said it was the last relic she should ever have of her child; and that no other memorial of her could ever be so precious, because this one parted latest from the living body before the awful death came. Some said that now and then, in the cave, a far-away speck of light would glimmer, and then a glorious shout would burst forth and a score of men go trooping down the echoing aisle--and then a sickening disappointment always followed; the children were not there; it was only a searcher's light. Three dreadful days and nights dragged their tedious hours along, and the village sank into a hopeless stupor. No one had heart for anything. The accidental discovery, just made, that the proprietor of the Temperance Tavern kept liquor on his premises, scarcely fluttered the public pulse, tremendous as the fact was. In a lucid interval, Huck feebly led up to the subject of taverns, and finally asked--dimly dreading the worst--if anything had been discovered at the Temperance Tavern since he had been ill. "Yes," said the widow. Huck started up in bed, wild-eyed: "What? What was it?" "Liquor!--and the place has been shut up. Lie down, child--what a turn you did give me!" "Only tell me just one thing--only just one--please! Was it Tom Sawyer that found it?" The widow burst into tears. "Hush, hush, child, hush! I've told you before, you must NOT talk. You are very, very sick!" Then nothing but liquor had been found; there would have been a great powwow if it had been the gold. So the treasure was gone forever--gone forever! But what could she be crying about? Curious that she should cry. These thoughts worked their dim way through Huck's mind, and under the weariness they gave him he fell asleep. The widow said to herself: "There--he's asleep, poor wreck. Tom Sawyer find it! Pity but somebody could find Tom Sawyer! Ah, there ain't many left, now, that's got hope enough, or strength enough, either, to go on searching." CHAPTER XXXI NOW to return to Tom and Becky's share in the picnic. They tripped along the murky aisles with the rest of the company, visiting the familiar wonders of the cave--wonders dubbed with rather over-descriptive names, such as "The Drawing-Room," "The Cathedral," "Aladdin's Palace," and so on. Presently the hide-and-seek frolicking began, and Tom and Becky engaged in it with zeal until the exertion began to grow a trifle wearisome; then they wandered down a sinuous avenue holding their candles aloft and reading the tangled web-work of names, dates, post-office addresses, and mottoes with which the rocky walls had been frescoed (in candle-smoke). Still drifting along and talking, they scarcely noticed that they were now in a part of the cave whose walls were not frescoed. They smoked their own names under an overhanging shelf and moved on. Presently they came to a place where a little stream of water, trickling over a ledge and carrying a limestone sediment with it, had, in the slow-dragging ages, formed a laced and ruffled Niagara in gleaming and imperishable stone. Tom squeezed his small body behind it in order to illuminate it for Becky's gratification. He found that it curtained a sort of steep natural stairway which was enclosed between narrow walls, and at once the ambition to be a discoverer seized him. Becky responded to his call, and they made a smoke-mark for future guidance, and started upon their quest. They wound this way and that, far down into the secret depths of the cave, made another mark, and branched off in search of novelties to tell the upper world about. In one place they found a spacious cavern, from whose ceiling depended a multitude of shining stalactites of the length and circumference of a man's leg; they walked all about it, wondering and admiring, and presently left it by one of the numerous passages that opened into it. This shortly brought them to a bewitching spring, whose basin was incrusted with a frostwork of glittering crystals; it was in the midst of a cavern whose walls were supported by many fantastic pillars which had been formed by the joining of great stalactites and stalagmites together, the result of the ceaseless water-drip of centuries. Under the roof vast knots of bats had packed themselves together, thousands in a bunch; the lights disturbed the creatures and they came flocking down by hundreds, squeaking and darting furiously at the candles. Tom knew their ways and the danger of this sort of conduct. He seized Becky's hand and hurried her into the first corridor that offered; and none too soon, for a bat struck Becky's light out with its wing while she was passing out of the cavern. The bats chased the children a good distance; but the fugitives plunged into every new passage that offered, and at last got rid of the perilous things. Tom found a subterranean lake, shortly, which stretched its dim length away until its shape was lost in the shadows. He wanted to explore its borders, but concluded that it would be best to sit down and rest awhile, first. Now, for the first time, the deep stillness of the place laid a clammy hand upon the spirits of the children. Becky said: "Why, I didn't notice, but it seems ever so long since I heard any of the others." "Come to think, Becky, we are away down below them--and I don't know how far away north, or south, or east, or whichever it is. We couldn't hear them here." Becky grew apprehensive. "I wonder how long we've been down here, Tom? We better start back." "Yes, I reckon we better. P'raps we better." "Can you find the way, Tom? It's all a mixed-up crookedness to me." "I reckon I could find it--but then the bats. If they put our candles out it will be an awful fix. Let's try some other way, so as not to go through there." "Well. But I hope we won't get lost. It would be so awful!" and the girl shuddered at the thought of the dreadful possibilities. They started through a corridor, and traversed it in silence a long way, glancing at each new opening, to see if there was anything familiar about the look of it; but they were all strange. Every time Tom made an examination, Becky would watch his face for an encouraging sign, and he would say cheerily: "Oh, it's all right. This ain't the one, but we'll come to it right away!" But he felt less and less hopeful with each failure, and presently began to turn off into diverging avenues at sheer random, in desperate hope of finding the one that was wanted. He still said it was "all right," but there was such a leaden dread at his heart that the words had lost their ring and sounded just as if he had said, "All is lost!" Becky clung to his side in an anguish of fear, and tried hard to keep back the tears, but they would come. At last she said: "Oh, Tom, never mind the bats, let's go back that way! We seem to get worse and worse off all the time." "Listen!" said he. Profound silence; silence so deep that even their breathings were conspicuous in the hush. Tom shouted. The call went echoing down the empty aisles and died out in the distance in a faint sound that resembled a ripple of mocking laughter. "Oh, don't do it again, Tom, it is too horrid," said Becky. "It is horrid, but I better, Becky; they might hear us, you know," and he shouted again. The "might" was even a chillier horror than the ghostly laughter, it so confessed a perishing hope. The children stood still and listened; but there was no result. Tom turned upon the back track at once, and hurried his steps. It was but a little while before a certain indecision in his manner revealed another fearful fact to Becky--he could not find his way back! "Oh, Tom, you didn't make any marks!" "Becky, I was such a fool! Such a fool! I never thought we might want to come back! No--I can't find the way. It's all mixed up." "Tom, Tom, we're lost! we're lost! We never can get out of this awful place! Oh, why DID we ever leave the others!" She sank to the ground and burst into such a frenzy of crying that Tom was appalled with the idea that she might die, or lose her reason. He sat down by her and put his arms around her; she buried her face in his bosom, she clung to him, she poured out her terrors, her unavailing regrets, and the far echoes turned them all to jeering laughter. Tom begged her to pluck up hope again, and she said she could not. He fell to blaming and abusing himself for getting her into this miserable situation; this had a better effect. She said she would try to hope again, she would get up and follow wherever he might lead if only he would not talk like that any more. For he was no more to blame than she, she said. So they moved on again--aimlessly--simply at random--all they could do was to move, keep moving. For a little while, hope made a show of reviving--not with any reason to back it, but only because it is its nature to revive when the spring has not been taken out of it by age and familiarity with failure. By-and-by Tom took Becky's candle and blew it out. This economy meant so much! Words were not needed. Becky understood, and her hope died again. She knew that Tom had a whole candle and three or four pieces in his pockets--yet he must economize. By-and-by, fatigue began to assert its claims; the children tried to pay attention, for it was dreadful to think of sitting down when time was grown to be so precious, moving, in some direction, in any direction, was at least progress and might bear fruit; but to sit down was to invite death and shorten its pursuit. At last Becky's frail limbs refused to carry her farther. She sat down. Tom rested with her, and they talked of home, and the friends there, and the comfortable beds and, above all, the light! Becky cried, and Tom tried to think of some way of comforting her, but all his encouragements were grown threadbare with use, and sounded like sarcasms. Fatigue bore so heavily upon Becky that she drowsed off to sleep. Tom was grateful. He sat looking into her drawn face and saw it grow smooth and natural under the influence of pleasant dreams; and by-and-by a smile dawned and rested there. The peaceful face reflected somewhat of peace and healing into his own spirit, and his thoughts wandered away to bygone times and dreamy memories. While he was deep in his musings, Becky woke up with a breezy little laugh--but it was stricken dead upon her lips, and a groan followed it. "Oh, how COULD I sleep! I wish I never, never had waked! No! No, I don't, Tom! Don't look so! I won't say it again." "I'm glad you've slept, Becky; you'll feel rested, now, and we'll find the way out." "We can try, Tom; but I've seen such a beautiful country in my dream. I reckon we are going there." "Maybe not, maybe not. Cheer up, Becky, and let's go on trying." They rose up and wandered along, hand in hand and hopeless. They tried to estimate how long they had been in the cave, but all they knew was that it seemed days and weeks, and yet it was plain that this could not be, for their candles were not gone yet. A long time after this--they could not tell how long--Tom said they must go softly and listen for dripping water--they must find a spring. They found one presently, and Tom said it was time to rest again. Both were cruelly tired, yet Becky said she thought she could go a little farther. She was surprised to hear Tom dissent. She could not understand it. They sat down, and Tom fastened his candle to the wall in front of them with some clay. Thought was soon busy; nothing was said for some time. Then Becky broke the silence: "Tom, I am so hungry!" Tom took something out of his pocket. "Do you remember this?" said he. Becky almost smiled. "It's our wedding-cake, Tom." "Yes--I wish it was as big as a barrel, for it's all we've got." "I saved it from the picnic for us to dream on, Tom, the way grown-up people do with wedding-cake--but it'll be our--" She dropped the sentence where it was. Tom divided the cake and Becky ate with good appetite, while Tom nibbled at his moiety. There was abundance of cold water to finish the feast with. By-and-by Becky suggested that they move on again. Tom was silent a moment. Then he said: "Becky, can you bear it if I tell you something?" Becky's face paled, but she thought she could. "Well, then, Becky, we must stay here, where there's water to drink. That little piece is our last candle!" Becky gave loose to tears and wailings. Tom did what he could to comfort her, but with little effect. At length Becky said: "Tom!" "Well, Becky?" "They'll miss us and hunt for us!" "Yes, they will! Certainly they will!" "Maybe they're hunting for us now, Tom." "Why, I reckon maybe they are. I hope they are." "When would they miss us, Tom?" "When they get back to the boat, I reckon." "Tom, it might be dark then--would they notice we hadn't come?" "I don't know. But anyway, your mother would miss you as soon as they got home." A frightened look in Becky's face brought Tom to his senses and he saw that he had made a blunder. Becky was not to have gone home that night! The children became silent and thoughtful. In a moment a new burst of grief from Becky showed Tom that the thing in his mind had struck hers also--that the Sabbath morning might be half spent before Mrs. Thatcher discovered that Becky was not at Mrs. Harper's. The children fastened their eyes upon their bit of candle and watched it melt slowly and pitilessly away; saw the half inch of wick stand alone at last; saw the feeble flame rise and fall, climb the thin column of smoke, linger at its top a moment, and then--the horror of utter darkness reigned! How long afterward it was that Becky came to a slow consciousness that she was crying in Tom's arms, neither could tell. All that they knew was, that after what seemed a mighty stretch of time, both awoke out of a dead stupor of sleep and resumed their miseries once more. Tom said it might be Sunday, now--maybe Monday. He tried to get Becky to talk, but her sorrows were too oppressive, all her hopes were gone. Tom said that they must have been missed long ago, and no doubt the search was going on. He would shout and maybe some one would come. He tried it; but in the darkness the distant echoes sounded so hideously that he tried it no more. The hours wasted away, and hunger came to torment the captives again. A portion of Tom's half of the cake was left; they divided and ate it. But they seemed hungrier than before. The poor morsel of food only whetted desire. By-and-by Tom said: "SH! Did you hear that?" Both held their breath and listened. There was a sound like the faintest, far-off shout. Instantly Tom answered it, and leading Becky by the hand, started groping down the corridor in its direction. Presently he listened again; again the sound was heard, and apparently a little nearer. "It's them!" said Tom; "they're coming! Come along, Becky--we're all right now!" The joy of the prisoners was almost overwhelming. Their speed was slow, however, because pitfalls were somewhat common, and had to be guarded against. They shortly came to one and had to stop. It might be three feet deep, it might be a hundred--there was no passing it at any rate. Tom got down on his breast and reached as far down as he could. No bottom. They must stay there and wait until the searchers came. They listened; evidently the distant shoutings were growing more distant! a moment or two more and they had gone altogether. The heart-sinking misery of it! Tom whooped until he was hoarse, but it was of no use. He talked hopefully to Becky; but an age of anxious waiting passed and no sounds came again. The children groped their way back to the spring. The weary time dragged on; they slept again, and awoke famished and woe-stricken. Tom believed it must be Tuesday by this time. Now an idea struck him. There were some side passages near at hand. It would be better to explore some of these than bear the weight of the heavy time in idleness. He took a kite-line from his pocket, tied it to a projection, and he and Becky started, Tom in the lead, unwinding the line as he groped along. At the end of twenty steps the corridor ended in a "jumping-off place." Tom got down on his knees and felt below, and then as far around the corner as he could reach with his hands conveniently; he made an effort to stretch yet a little farther to the right, and at that moment, not twenty yards away, a human hand, holding a candle, appeared from behind a rock! Tom lifted up a glorious shout, and instantly that hand was followed by the body it belonged to--Injun Joe's! Tom was paralyzed; he could not move. He was vastly gratified the next moment, to see the "Spaniard" take to his heels and get himself out of sight. Tom wondered that Joe had not recognized his voice and come over and killed him for testifying in court. But the echoes must have disguised the voice. Without doubt, that was it, he reasoned. Tom's fright weakened every muscle in his body. He said to himself that if he had strength enough to get back to the spring he would stay there, and nothing should tempt him to run the risk of meeting Injun Joe again. He was careful to keep from Becky what it was he had seen. He told her he had only shouted "for luck." But hunger and wretchedness rise superior to fears in the long run. Another tedious wait at the spring and another long sleep brought changes. The children awoke tortured with a raging hunger. Tom believed that it must be Wednesday or Thursday or even Friday or Saturday, now, and that the search had been given over. He proposed to explore another passage. He felt willing to risk Injun Joe and all other terrors. But Becky was very weak. She had sunk into a dreary apathy and would not be roused. She said she would wait, now, where she was, and die--it would not be long. She told Tom to go with the kite-line and explore if he chose; but she implored him to come back every little while and speak to her; and she made him promise that when the awful time came, he would stay by her and hold her hand until all was over. Tom kissed her, with a choking sensation in his throat, and made a show of being confident of finding the searchers or an escape from the cave; then he took the kite-line in his hand and went groping down one of the passages on his hands and knees, distressed with hunger and sick with bodings of coming doom. CHAPTER XXXII TUESDAY afternoon came, and waned to the twilight. The village of St. Petersburg still mourned. The lost children had not been found. Public prayers had been offered up for them, and many and many a private prayer that had the petitioner's whole heart in it; but still no good news came from the cave. The majority of the searchers had given up the quest and gone back to their daily avocations, saying that it was plain the children could never be found. Mrs. Thatcher was very ill, and a great part of the time delirious. People said it was heartbreaking to hear her call her child, and raise her head and listen a whole minute at a time, then lay it wearily down again with a moan. Aunt Polly had drooped into a settled melancholy, and her gray hair had grown almost white. The village went to its rest on Tuesday night, sad and forlorn. Away in the middle of the night a wild peal burst from the village bells, and in a moment the streets were swarming with frantic half-clad people, who shouted, "Turn out! turn out! they're found! they're found!" Tin pans and horns were added to the din, the population massed itself and moved toward the river, met the children coming in an open carriage drawn by shouting citizens, thronged around it, joined its homeward march, and swept magnificently up the main street roaring huzzah after huzzah! The village was illuminated; nobody went to bed again; it was the greatest night the little town had ever seen. During the first half-hour a procession of villagers filed through Judge Thatcher's house, seized the saved ones and kissed them, squeezed Mrs. Thatcher's hand, tried to speak but couldn't--and drifted out raining tears all over the place. Aunt Polly's happiness was complete, and Mrs. Thatcher's nearly so. It would be complete, however, as soon as the messenger dispatched with the great news to the cave should get the word to her husband. Tom lay upon a sofa with an eager auditory about him and told the history of the wonderful adventure, putting in many striking additions to adorn it withal; and closed with a description of how he left Becky and went on an exploring expedition; how he followed two avenues as far as his kite-line would reach; how he followed a third to the fullest stretch of the kite-line, and was about to turn back when he glimpsed a far-off speck that looked like daylight; dropped the line and groped toward it, pushed his head and shoulders through a small hole, and saw the broad Mississippi rolling by! And if it had only happened to be night he would not have seen that speck of daylight and would not have explored that passage any more! He told how he went back for Becky and broke the good news and she told him not to fret her with such stuff, for she was tired, and knew she was going to die, and wanted to. He described how he labored with her and convinced her; and how she almost died for joy when she had groped to where she actually saw the blue speck of daylight; how he pushed his way out at the hole and then helped her out; how they sat there and cried for gladness; how some men came along in a skiff and Tom hailed them and told them their situation and their famished condition; how the men didn't believe the wild tale at first, "because," said they, "you are five miles down the river below the valley the cave is in" --then took them aboard, rowed to a house, gave them supper, made them rest till two or three hours after dark and then brought them home. Before day-dawn, Judge Thatcher and the handful of searchers with him were tracked out, in the cave, by the twine clews they had strung behind them, and informed of the great news. Three days and nights of toil and hunger in the cave were not to be shaken off at once, as Tom and Becky soon discovered. They were bedridden all of Wednesday and Thursday, and seemed to grow more and more tired and worn, all the time. Tom got about, a little, on Thursday, was down-town Friday, and nearly as whole as ever Saturday; but Becky did not leave her room until Sunday, and then she looked as if she had passed through a wasting illness. Tom learned of Huck's sickness and went to see him on Friday, but could not be admitted to the bedroom; neither could he on Saturday or Sunday. He was admitted daily after that, but was warned to keep still about his adventure and introduce no exciting topic. The Widow Douglas stayed by to see that he obeyed. At home Tom learned of the Cardiff Hill event; also that the "ragged man's" body had eventually been found in the river near the ferry-landing; he had been drowned while trying to escape, perhaps. About a fortnight after Tom's rescue from the cave, he started off to visit Huck, who had grown plenty strong enough, now, to hear exciting talk, and Tom had some that would interest him, he thought. Judge Thatcher's house was on Tom's way, and he stopped to see Becky. The Judge and some friends set Tom to talking, and some one asked him ironically if he wouldn't like to go to the cave again. Tom said he thought he wouldn't mind it. The Judge said: "Well, there are others just like you, Tom, I've not the least doubt. But we have taken care of that. Nobody will get lost in that cave any more." "Why?" "Because I had its big door sheathed with boiler iron two weeks ago, and triple-locked--and I've got the keys." Tom turned as white as a sheet. "What's the matter, boy! Here, run, somebody! Fetch a glass of water!" The water was brought and thrown into Tom's face. "Ah, now you're all right. What was the matter with you, Tom?" "Oh, Judge, Injun Joe's in the cave!" CHAPTER XXXIII WITHIN a few minutes the news had spread, and a dozen skiff-loads of men were on their way to McDougal's cave, and the ferryboat, well filled with passengers, soon followed. Tom Sawyer was in the skiff that bore Judge Thatcher. When the cave door was unlocked, a sorrowful sight presented itself in the dim twilight of the place. Injun Joe lay stretched upon the ground, dead, with his face close to the crack of the door, as if his longing eyes had been fixed, to the latest moment, upon the light and the cheer of the free world outside. Tom was touched, for he knew by his own experience how this wretch had suffered. His pity was moved, but nevertheless he felt an abounding sense of relief and security, now, which revealed to him in a degree which he had not fully appreciated before how vast a weight of dread had been lying upon him since the day he lifted his voice against this bloody-minded outcast. Injun Joe's bowie-knife lay close by, its blade broken in two. The great foundation-beam of the door had been chipped and hacked through, with tedious labor; useless labor, too, it was, for the native rock formed a sill outside it, and upon that stubborn material the knife had wrought no effect; the only damage done was to the knife itself. But if there had been no stony obstruction there the labor would have been useless still, for if the beam had been wholly cut away Injun Joe could not have squeezed his body under the door, and he knew it. So he had only hacked that place in order to be doing something--in order to pass the weary time--in order to employ his tortured faculties. Ordinarily one could find half a dozen bits of candle stuck around in the crevices of this vestibule, left there by tourists; but there were none now. The prisoner had searched them out and eaten them. He had also contrived to catch a few bats, and these, also, he had eaten, leaving only their claws. The poor unfortunate had starved to death. In one place, near at hand, a stalagmite had been slowly growing up from the ground for ages, builded by the water-drip from a stalactite overhead. The captive had broken off the stalagmite, and upon the stump had placed a stone, wherein he had scooped a shallow hollow to catch the precious drop that fell once in every three minutes with the dreary regularity of a clock-tick--a dessertspoonful once in four and twenty hours. That drop was falling when the Pyramids were new; when Troy fell; when the foundations of Rome were laid; when Christ was crucified; when the Conqueror created the British empire; when Columbus sailed; when the massacre at Lexington was "news." It is falling now; it will still be falling when all these things shall have sunk down the afternoon of history, and the twilight of tradition, and been swallowed up in the thick night of oblivion. Has everything a purpose and a mission? Did this drop fall patiently during five thousand years to be ready for this flitting human insect's need? and has it another important object to accomplish ten thousand years to come? No matter. It is many and many a year since the hapless half-breed scooped out the stone to catch the priceless drops, but to this day the tourist stares longest at that pathetic stone and that slow-dropping water when he comes to see the wonders of McDougal's cave. Injun Joe's cup stands first in the list of the cavern's marvels; even "Aladdin's Palace" cannot rival it. Injun Joe was buried near the mouth of the cave; and people flocked there in boats and wagons from the towns and from all the farms and hamlets for seven miles around; they brought their children, and all sorts of provisions, and confessed that they had had almost as satisfactory a time at the funeral as they could have had at the hanging. This funeral stopped the further growth of one thing--the petition to the governor for Injun Joe's pardon. The petition had been largely signed; many tearful and eloquent meetings had been held, and a committee of sappy women been appointed to go in deep mourning and wail around the governor, and implore him to be a merciful ass and trample his duty under foot. Injun Joe was believed to have killed five citizens of the village, but what of that? If he had been Satan himself there would have been plenty of weaklings ready to scribble their names to a pardon-petition, and drip a tear on it from their permanently impaired and leaky water-works. The morning after the funeral Tom took Huck to a private place to have an important talk. Huck had learned all about Tom's adventure from the Welshman and the Widow Douglas, by this time, but Tom said he reckoned there was one thing they had not told him; that thing was what he wanted to talk about now. Huck's face saddened. He said: "I know what it is. You got into No. 2 and never found anything but whiskey. Nobody told me it was you; but I just knowed it must 'a' ben you, soon as I heard 'bout that whiskey business; and I knowed you hadn't got the money becuz you'd 'a' got at me some way or other and told me even if you was mum to everybody else. Tom, something's always told me we'd never get holt of that swag." "Why, Huck, I never told on that tavern-keeper. YOU know his tavern was all right the Saturday I went to the picnic. Don't you remember you was to watch there that night?" "Oh yes! Why, it seems 'bout a year ago. It was that very night that I follered Injun Joe to the widder's." "YOU followed him?" "Yes--but you keep mum. I reckon Injun Joe's left friends behind him, and I don't want 'em souring on me and doing me mean tricks. If it hadn't ben for me he'd be down in Texas now, all right." Then Huck told his entire adventure in confidence to Tom, who had only heard of the Welshman's part of it before. "Well," said Huck, presently, coming back to the main question, "whoever nipped the whiskey in No. 2, nipped the money, too, I reckon --anyways it's a goner for us, Tom." "Huck, that money wasn't ever in No. 2!" "What!" Huck searched his comrade's face keenly. "Tom, have you got on the track of that money again?" "Huck, it's in the cave!" Huck's eyes blazed. "Say it again, Tom." "The money's in the cave!" "Tom--honest injun, now--is it fun, or earnest?" "Earnest, Huck--just as earnest as ever I was in my life. Will you go in there with me and help get it out?" "I bet I will! I will if it's where we can blaze our way to it and not get lost." "Huck, we can do that without the least little bit of trouble in the world." "Good as wheat! What makes you think the money's--" "Huck, you just wait till we get in there. If we don't find it I'll agree to give you my drum and every thing I've got in the world. I will, by jings." "All right--it's a whiz. When do you say?" "Right now, if you say it. Are you strong enough?" "Is it far in the cave? I ben on my pins a little, three or four days, now, but I can't walk more'n a mile, Tom--least I don't think I could." "It's about five mile into there the way anybody but me would go, Huck, but there's a mighty short cut that they don't anybody but me know about. Huck, I'll take you right to it in a skiff. I'll float the skiff down there, and I'll pull it back again all by myself. You needn't ever turn your hand over." "Less start right off, Tom." "All right. We want some bread and meat, and our pipes, and a little bag or two, and two or three kite-strings, and some of these new-fangled things they call lucifer matches. I tell you, many's the time I wished I had some when I was in there before." A trifle after noon the boys borrowed a small skiff from a citizen who was absent, and got under way at once. When they were several miles below "Cave Hollow," Tom said: "Now you see this bluff here looks all alike all the way down from the cave hollow--no houses, no wood-yards, bushes all alike. But do you see that white place up yonder where there's been a landslide? Well, that's one of my marks. We'll get ashore, now." They landed. "Now, Huck, where we're a-standing you could touch that hole I got out of with a fishing-pole. See if you can find it." Huck searched all the place about, and found nothing. Tom proudly marched into a thick clump of sumach bushes and said: "Here you are! Look at it, Huck; it's the snuggest hole in this country. You just keep mum about it. All along I've been wanting to be a robber, but I knew I'd got to have a thing like this, and where to run across it was the bother. We've got it now, and we'll keep it quiet, only we'll let Joe Harper and Ben Rogers in--because of course there's got to be a Gang, or else there wouldn't be any style about it. Tom Sawyer's Gang--it sounds splendid, don't it, Huck?" "Well, it just does, Tom. And who'll we rob?" "Oh, most anybody. Waylay people--that's mostly the way." "And kill them?" "No, not always. Hive them in the cave till they raise a ransom." "What's a ransom?" "Money. You make them raise all they can, off'n their friends; and after you've kept them a year, if it ain't raised then you kill them. That's the general way. Only you don't kill the women. You shut up the women, but you don't kill them. They're always beautiful and rich, and awfully scared. You take their watches and things, but you always take your hat off and talk polite. They ain't anybody as polite as robbers --you'll see that in any book. Well, the women get to loving you, and after they've been in the cave a week or two weeks they stop crying and after that you couldn't get them to leave. If you drove them out they'd turn right around and come back. It's so in all the books." "Why, it's real bully, Tom. I believe it's better'n to be a pirate." "Yes, it's better in some ways, because it's close to home and circuses and all that." By this time everything was ready and the boys entered the hole, Tom in the lead. They toiled their way to the farther end of the tunnel, then made their spliced kite-strings fast and moved on. A few steps brought them to the spring, and Tom felt a shudder quiver all through him. He showed Huck the fragment of candle-wick perched on a lump of clay against the wall, and described how he and Becky had watched the flame struggle and expire. The boys began to quiet down to whispers, now, for the stillness and gloom of the place oppressed their spirits. They went on, and presently entered and followed Tom's other corridor until they reached the "jumping-off place." The candles revealed the fact that it was not really a precipice, but only a steep clay hill twenty or thirty feet high. Tom whispered: "Now I'll show you something, Huck." He held his candle aloft and said: "Look as far around the corner as you can. Do you see that? There--on the big rock over yonder--done with candle-smoke." "Tom, it's a CROSS!" "NOW where's your Number Two? 'UNDER THE CROSS,' hey? Right yonder's where I saw Injun Joe poke up his candle, Huck!" Huck stared at the mystic sign awhile, and then said with a shaky voice: "Tom, less git out of here!" "What! and leave the treasure?" "Yes--leave it. Injun Joe's ghost is round about there, certain." "No it ain't, Huck, no it ain't. It would ha'nt the place where he died--away out at the mouth of the cave--five mile from here." "No, Tom, it wouldn't. It would hang round the money. I know the ways of ghosts, and so do you." Tom began to fear that Huck was right. Misgivings gathered in his mind. But presently an idea occurred to him-- "Lookyhere, Huck, what fools we're making of ourselves! Injun Joe's ghost ain't a going to come around where there's a cross!" The point was well taken. It had its effect. "Tom, I didn't think of that. But that's so. It's luck for us, that cross is. I reckon we'll climb down there and have a hunt for that box." Tom went first, cutting rude steps in the clay hill as he descended. Huck followed. Four avenues opened out of the small cavern which the great rock stood in. The boys examined three of them with no result. They found a small recess in the one nearest the base of the rock, with a pallet of blankets spread down in it; also an old suspender, some bacon rind, and the well-gnawed bones of two or three fowls. But there was no money-box. The lads searched and researched this place, but in vain. Tom said: "He said UNDER the cross. Well, this comes nearest to being under the cross. It can't be under the rock itself, because that sets solid on the ground." They searched everywhere once more, and then sat down discouraged. Huck could suggest nothing. By-and-by Tom said: "Lookyhere, Huck, there's footprints and some candle-grease on the clay about one side of this rock, but not on the other sides. Now, what's that for? I bet you the money IS under the rock. I'm going to dig in the clay." "That ain't no bad notion, Tom!" said Huck with animation. Tom's "real Barlow" was out at once, and he had not dug four inches before he struck wood. "Hey, Huck!--you hear that?" Huck began to dig and scratch now. Some boards were soon uncovered and removed. They had concealed a natural chasm which led under the rock. Tom got into this and held his candle as far under the rock as he could, but said he could not see to the end of the rift. He proposed to explore. He stooped and passed under; the narrow way descended gradually. He followed its winding course, first to the right, then to the left, Huck at his heels. Tom turned a short curve, by-and-by, and exclaimed: "My goodness, Huck, lookyhere!" It was the treasure-box, sure enough, occupying a snug little cavern, along with an empty powder-keg, a couple of guns in leather cases, two or three pairs of old moccasins, a leather belt, and some other rubbish well soaked with the water-drip. "Got it at last!" said Huck, ploughing among the tarnished coins with his hand. "My, but we're rich, Tom!" "Huck, I always reckoned we'd get it. It's just too good to believe, but we HAVE got it, sure! Say--let's not fool around here. Let's snake it out. Lemme see if I can lift the box." It weighed about fifty pounds. Tom could lift it, after an awkward fashion, but could not carry it conveniently. "I thought so," he said; "THEY carried it like it was heavy, that day at the ha'nted house. I noticed that. I reckon I was right to think of fetching the little bags along." The money was soon in the bags and the boys took it up to the cross rock. "Now less fetch the guns and things," said Huck. "No, Huck--leave them there. They're just the tricks to have when we go to robbing. We'll keep them there all the time, and we'll hold our orgies there, too. It's an awful snug place for orgies." "What orgies?" "I dono. But robbers always have orgies, and of course we've got to have them, too. Come along, Huck, we've been in here a long time. It's getting late, I reckon. I'm hungry, too. We'll eat and smoke when we get to the skiff." They presently emerged into the clump of sumach bushes, looked warily out, found the coast clear, and were soon lunching and smoking in the skiff. As the sun dipped toward the horizon they pushed out and got under way. Tom skimmed up the shore through the long twilight, chatting cheerily with Huck, and landed shortly after dark. "Now, Huck," said Tom, "we'll hide the money in the loft of the widow's woodshed, and I'll come up in the morning and we'll count it and divide, and then we'll hunt up a place out in the woods for it where it will be safe. Just you lay quiet here and watch the stuff till I run and hook Benny Taylor's little wagon; I won't be gone a minute." He disappeared, and presently returned with the wagon, put the two small sacks into it, threw some old rags on top of them, and started off, dragging his cargo behind him. When the boys reached the Welshman's house, they stopped to rest. Just as they were about to move on, the Welshman stepped out and said: "Hallo, who's that?" "Huck and Tom Sawyer." "Good! Come along with me, boys, you are keeping everybody waiting. Here--hurry up, trot ahead--I'll haul the wagon for you. Why, it's not as light as it might be. Got bricks in it?--or old metal?" "Old metal," said Tom. "I judged so; the boys in this town will take more trouble and fool away more time hunting up six bits' worth of old iron to sell to the foundry than they would to make twice the money at regular work. But that's human nature--hurry along, hurry along!" The boys wanted to know what the hurry was about. "Never mind; you'll see, when we get to the Widow Douglas'." Huck said with some apprehension--for he was long used to being falsely accused: "Mr. Jones, we haven't been doing nothing." The Welshman laughed. "Well, I don't know, Huck, my boy. I don't know about that. Ain't you and the widow good friends?" "Yes. Well, she's ben good friends to me, anyway." "All right, then. What do you want to be afraid for?" This question was not entirely answered in Huck's slow mind before he found himself pushed, along with Tom, into Mrs. Douglas' drawing-room. Mr. Jones left the wagon near the door and followed. The place was grandly lighted, and everybody that was of any consequence in the village was there. The Thatchers were there, the Harpers, the Rogerses, Aunt Polly, Sid, Mary, the minister, the editor, and a great many more, and all dressed in their best. The widow received the boys as heartily as any one could well receive two such looking beings. They were covered with clay and candle-grease. Aunt Polly blushed crimson with humiliation, and frowned and shook her head at Tom. Nobody suffered half as much as the two boys did, however. Mr. Jones said: "Tom wasn't at home, yet, so I gave him up; but I stumbled on him and Huck right at my door, and so I just brought them along in a hurry." "And you did just right," said the widow. "Come with me, boys." She took them to a bedchamber and said: "Now wash and dress yourselves. Here are two new suits of clothes --shirts, socks, everything complete. They're Huck's--no, no thanks, Huck--Mr. Jones bought one and I the other. But they'll fit both of you. Get into them. We'll wait--come down when you are slicked up enough." Then she left. CHAPTER XXXIV HUCK said: "Tom, we can slope, if we can find a rope. The window ain't high from the ground." "Shucks! what do you want to slope for?" "Well, I ain't used to that kind of a crowd. I can't stand it. I ain't going down there, Tom." "Oh, bother! It ain't anything. I don't mind it a bit. I'll take care of you." Sid appeared. "Tom," said he, "auntie has been waiting for you all the afternoon. Mary got your Sunday clothes ready, and everybody's been fretting about you. Say--ain't this grease and clay, on your clothes?" "Now, Mr. Siddy, you jist 'tend to your own business. What's all this blow-out about, anyway?" "It's one of the widow's parties that she's always having. This time it's for the Welshman and his sons, on account of that scrape they helped her out of the other night. And say--I can tell you something, if you want to know." "Well, what?" "Why, old Mr. Jones is going to try to spring something on the people here to-night, but I overheard him tell auntie to-day about it, as a secret, but I reckon it's not much of a secret now. Everybody knows --the widow, too, for all she tries to let on she don't. Mr. Jones was bound Huck should be here--couldn't get along with his grand secret without Huck, you know!" "Secret about what, Sid?" "About Huck tracking the robbers to the widow's. I reckon Mr. Jones was going to make a grand time over his surprise, but I bet you it will drop pretty flat." Sid chuckled in a very contented and satisfied way. "Sid, was it you that told?" "Oh, never mind who it was. SOMEBODY told--that's enough." "Sid, there's only one person in this town mean enough to do that, and that's you. If you had been in Huck's place you'd 'a' sneaked down the hill and never told anybody on the robbers. You can't do any but mean things, and you can't bear to see anybody praised for doing good ones. There--no thanks, as the widow says"--and Tom cuffed Sid's ears and helped him to the door with several kicks. "Now go and tell auntie if you dare--and to-morrow you'll catch it!" Some minutes later the widow's guests were at the supper-table, and a dozen children were propped up at little side-tables in the same room, after the fashion of that country and that day. At the proper time Mr. Jones made his little speech, in which he thanked the widow for the honor she was doing himself and his sons, but said that there was another person whose modesty-- And so forth and so on. He sprung his secret about Huck's share in the adventure in the finest dramatic manner he was master of, but the surprise it occasioned was largely counterfeit and not as clamorous and effusive as it might have been under happier circumstances. However, the widow made a pretty fair show of astonishment, and heaped so many compliments and so much gratitude upon Huck that he almost forgot the nearly intolerable discomfort of his new clothes in the entirely intolerable discomfort of being set up as a target for everybody's gaze and everybody's laudations. The widow said she meant to give Huck a home under her roof and have him educated; and that when she could spare the money she would start him in business in a modest way. Tom's chance was come. He said: "Huck don't need it. Huck's rich." Nothing but a heavy strain upon the good manners of the company kept back the due and proper complimentary laugh at this pleasant joke. But the silence was a little awkward. Tom broke it: "Huck's got money. Maybe you don't believe it, but he's got lots of it. Oh, you needn't smile--I reckon I can show you. You just wait a minute." Tom ran out of doors. The company looked at each other with a perplexed interest--and inquiringly at Huck, who was tongue-tied. "Sid, what ails Tom?" said Aunt Polly. "He--well, there ain't ever any making of that boy out. I never--" Tom entered, struggling with the weight of his sacks, and Aunt Polly did not finish her sentence. Tom poured the mass of yellow coin upon the table and said: "There--what did I tell you? Half of it's Huck's and half of it's mine!" The spectacle took the general breath away. All gazed, nobody spoke for a moment. Then there was a unanimous call for an explanation. Tom said he could furnish it, and he did. The tale was long, but brimful of interest. There was scarcely an interruption from any one to break the charm of its flow. When he had finished, Mr. Jones said: "I thought I had fixed up a little surprise for this occasion, but it don't amount to anything now. This one makes it sing mighty small, I'm willing to allow." The money was counted. The sum amounted to a little over twelve thousand dollars. It was more than any one present had ever seen at one time before, though several persons were there who were worth considerably more than that in property. CHAPTER XXXV THE reader may rest satisfied that Tom's and Huck's windfall made a mighty stir in the poor little village of St. Petersburg. So vast a sum, all in actual cash, seemed next to incredible. It was talked about, gloated over, glorified, until the reason of many of the citizens tottered under the strain of the unhealthy excitement. Every "haunted" house in St. Petersburg and the neighboring villages was dissected, plank by plank, and its foundations dug up and ransacked for hidden treasure--and not by boys, but men--pretty grave, unromantic men, too, some of them. Wherever Tom and Huck appeared they were courted, admired, stared at. The boys were not able to remember that their remarks had possessed weight before; but now their sayings were treasured and repeated; everything they did seemed somehow to be regarded as remarkable; they had evidently lost the power of doing and saying commonplace things; moreover, their past history was raked up and discovered to bear marks of conspicuous originality. The village paper published biographical sketches of the boys. The Widow Douglas put Huck's money out at six per cent., and Judge Thatcher did the same with Tom's at Aunt Polly's request. Each lad had an income, now, that was simply prodigious--a dollar for every week-day in the year and half of the Sundays. It was just what the minister got --no, it was what he was promised--he generally couldn't collect it. A dollar and a quarter a week would board, lodge, and school a boy in those old simple days--and clothe him and wash him, too, for that matter. Judge Thatcher had conceived a great opinion of Tom. He said that no commonplace boy would ever have got his daughter out of the cave. When Becky told her father, in strict confidence, how Tom had taken her whipping at school, the Judge was visibly moved; and when she pleaded grace for the mighty lie which Tom had told in order to shift that whipping from her shoulders to his own, the Judge said with a fine outburst that it was a noble, a generous, a magnanimous lie--a lie that was worthy to hold up its head and march down through history breast to breast with George Washington's lauded Truth about the hatchet! Becky thought her father had never looked so tall and so superb as when he walked the floor and stamped his foot and said that. She went straight off and told Tom about it. Judge Thatcher hoped to see Tom a great lawyer or a great soldier some day. He said he meant to look to it that Tom should be admitted to the National Military Academy and afterward trained in the best law school in the country, in order that he might be ready for either career or both. Huck Finn's wealth and the fact that he was now under the Widow Douglas' protection introduced him into society--no, dragged him into it, hurled him into it--and his sufferings were almost more than he could bear. The widow's servants kept him clean and neat, combed and brushed, and they bedded him nightly in unsympathetic sheets that had not one little spot or stain which he could press to his heart and know for a friend. He had to eat with a knife and fork; he had to use napkin, cup, and plate; he had to learn his book, he had to go to church; he had to talk so properly that speech was become insipid in his mouth; whithersoever he turned, the bars and shackles of civilization shut him in and bound him hand and foot. He bravely bore his miseries three weeks, and then one day turned up missing. For forty-eight hours the widow hunted for him everywhere in great distress. The public were profoundly concerned; they searched high and low, they dragged the river for his body. Early the third morning Tom Sawyer wisely went poking among some old empty hogsheads down behind the abandoned slaughter-house, and in one of them he found the refugee. Huck had slept there; he had just breakfasted upon some stolen odds and ends of food, and was lying off, now, in comfort, with his pipe. He was unkempt, uncombed, and clad in the same old ruin of rags that had made him picturesque in the days when he was free and happy. Tom routed him out, told him the trouble he had been causing, and urged him to go home. Huck's face lost its tranquil content, and took a melancholy cast. He said: "Don't talk about it, Tom. I've tried it, and it don't work; it don't work, Tom. It ain't for me; I ain't used to it. The widder's good to me, and friendly; but I can't stand them ways. She makes me get up just at the same time every morning; she makes me wash, they comb me all to thunder; she won't let me sleep in the woodshed; I got to wear them blamed clothes that just smothers me, Tom; they don't seem to any air git through 'em, somehow; and they're so rotten nice that I can't set down, nor lay down, nor roll around anywher's; I hain't slid on a cellar-door for--well, it 'pears to be years; I got to go to church and sweat and sweat--I hate them ornery sermons! I can't ketch a fly in there, I can't chaw. I got to wear shoes all Sunday. The widder eats by a bell; she goes to bed by a bell; she gits up by a bell--everything's so awful reg'lar a body can't stand it." "Well, everybody does that way, Huck." "Tom, it don't make no difference. I ain't everybody, and I can't STAND it. It's awful to be tied up so. And grub comes too easy--I don't take no interest in vittles, that way. I got to ask to go a-fishing; I got to ask to go in a-swimming--dern'd if I hain't got to ask to do everything. Well, I'd got to talk so nice it wasn't no comfort--I'd got to go up in the attic and rip out awhile, every day, to git a taste in my mouth, or I'd a died, Tom. The widder wouldn't let me smoke; she wouldn't let me yell, she wouldn't let me gape, nor stretch, nor scratch, before folks--" [Then with a spasm of special irritation and injury]--"And dad fetch it, she prayed all the time! I never see such a woman! I HAD to shove, Tom--I just had to. And besides, that school's going to open, and I'd a had to go to it--well, I wouldn't stand THAT, Tom. Looky here, Tom, being rich ain't what it's cracked up to be. It's just worry and worry, and sweat and sweat, and a-wishing you was dead all the time. Now these clothes suits me, and this bar'l suits me, and I ain't ever going to shake 'em any more. Tom, I wouldn't ever got into all this trouble if it hadn't 'a' ben for that money; now you just take my sheer of it along with your'n, and gimme a ten-center sometimes--not many times, becuz I don't give a dern for a thing 'thout it's tollable hard to git--and you go and beg off for me with the widder." "Oh, Huck, you know I can't do that. 'Tain't fair; and besides if you'll try this thing just a while longer you'll come to like it." "Like it! Yes--the way I'd like a hot stove if I was to set on it long enough. No, Tom, I won't be rich, and I won't live in them cussed smothery houses. I like the woods, and the river, and hogsheads, and I'll stick to 'em, too. Blame it all! just as we'd got guns, and a cave, and all just fixed to rob, here this dern foolishness has got to come up and spile it all!" Tom saw his opportunity-- "Lookyhere, Huck, being rich ain't going to keep me back from turning robber." "No! Oh, good-licks; are you in real dead-wood earnest, Tom?" "Just as dead earnest as I'm sitting here. But Huck, we can't let you into the gang if you ain't respectable, you know." Huck's joy was quenched. "Can't let me in, Tom? Didn't you let me go for a pirate?" "Yes, but that's different. A robber is more high-toned than what a pirate is--as a general thing. In most countries they're awful high up in the nobility--dukes and such." "Now, Tom, hain't you always ben friendly to me? You wouldn't shet me out, would you, Tom? You wouldn't do that, now, WOULD you, Tom?" "Huck, I wouldn't want to, and I DON'T want to--but what would people say? Why, they'd say, 'Mph! Tom Sawyer's Gang! pretty low characters in it!' They'd mean you, Huck. You wouldn't like that, and I wouldn't." Huck was silent for some time, engaged in a mental struggle. Finally he said: "Well, I'll go back to the widder for a month and tackle it and see if I can come to stand it, if you'll let me b'long to the gang, Tom." "All right, Huck, it's a whiz! Come along, old chap, and I'll ask the widow to let up on you a little, Huck." "Will you, Tom--now will you? That's good. If she'll let up on some of the roughest things, I'll smoke private and cuss private, and crowd through or bust. When you going to start the gang and turn robbers?" "Oh, right off. We'll get the boys together and have the initiation to-night, maybe." "Have the which?" "Have the initiation." "What's that?" "It's to swear to stand by one another, and never tell the gang's secrets, even if you're chopped all to flinders, and kill anybody and all his family that hurts one of the gang." "That's gay--that's mighty gay, Tom, I tell you." "Well, I bet it is. And all that swearing's got to be done at midnight, in the lonesomest, awfulest place you can find--a ha'nted house is the best, but they're all ripped up now." "Well, midnight's good, anyway, Tom." "Yes, so it is. And you've got to swear on a coffin, and sign it with blood." "Now, that's something LIKE! Why, it's a million times bullier than pirating. I'll stick to the widder till I rot, Tom; and if I git to be a reg'lar ripper of a robber, and everybody talking 'bout it, I reckon she'll be proud she snaked me in out of the wet." CONCLUSION SO endeth this chronicle. It being strictly a history of a BOY, it must stop here; the story could not go much further without becoming the history of a MAN. When one writes a novel about grown people, he knows exactly where to stop--that is, with a marriage; but when he writes of juveniles, he must stop where he best can. Most of the characters that perform in this book still live, and are prosperous and happy. Some day it may seem worth while to take up the story of the younger ones again and see what sort of men and women they turned out to be; therefore it will be wisest not to reveal any of that part of their lives at present. Produced by David Widger. The previous edition was updated by Jose Menendez. THE ADVENTURES OF TOM SAWYER BY MARK TWAIN (Samuel Langhorne Clemens) P R E F A C E MOST of the adventures recorded in this book really occurred; one or two were experiences of my own, the rest those of boys who were schoolmates of mine. Huck Finn is drawn from life; Tom Sawyer also, but not from an individual--he is a combination of the characteristics of three boys whom I knew, and therefore belongs to the composite order of architecture. The odd superstitions touched upon were all prevalent among children and slaves in the West at the period of this story--that is to say, thirty or forty years ago. Although my book is intended mainly for the entertainment of boys and girls, I hope it will not be shunned by men and women on that account, for part of my plan has been to try to pleasantly remind adults of what they once were themselves, and of how they felt and thought and talked, and what queer enterprises they sometimes engaged in. THE AUTHOR. HARTFORD, 1876. T O M S A W Y E R CHAPTER I "TOM!" No answer. "TOM!" No answer. "What's gone with that boy, I wonder? You TOM!" No answer. The old lady pulled her spectacles down and looked over them about the room; then she put them up and looked out under them. She seldom or never looked THROUGH them for so small a thing as a boy; they were her state pair, the pride of her heart, and were built for "style," not service--she could have seen through a pair of stove-lids just as well. She looked perplexed for a moment, and then said, not fiercely, but still loud enough for the furniture to hear: "Well, I lay if I get hold of you I'll--" She did not finish, for by this time she was bending down and punching under the bed with the broom, and so she needed breath to punctuate the punches with. She resurrected nothing but the cat. "I never did see the beat of that boy!" She went to the open door and stood in it and looked out among the tomato vines and "jimpson" weeds that constituted the garden. No Tom. So she lifted up her voice at an angle calculated for distance and shouted: "Y-o-u-u TOM!" There was a slight noise behind her and she turned just in time to seize a small boy by the slack of his roundabout and arrest his flight. "There! I might 'a' thought of that closet. What you been doing in there?" "Nothing." "Nothing! Look at your hands. And look at your mouth. What IS that truck?" "I don't know, aunt." "Well, I know. It's jam--that's what it is. Forty times I've said if you didn't let that jam alone I'd skin you. Hand me that switch." The switch hovered in the air--the peril was desperate-- "My! Look behind you, aunt!" The old lady whirled round, and snatched her skirts out of danger. The lad fled on the instant, scrambled up the high board-fence, and disappeared over it. His aunt Polly stood surprised a moment, and then broke into a gentle laugh. "Hang the boy, can't I never learn anything? Ain't he played me tricks enough like that for me to be looking out for him by this time? But old fools is the biggest fools there is. Can't learn an old dog new tricks, as the saying is. But my goodness, he never plays them alike, two days, and how is a body to know what's coming? He 'pears to know just how long he can torment me before I get my dander up, and he knows if he can make out to put me off for a minute or make me laugh, it's all down again and I can't hit him a lick. I ain't doing my duty by that boy, and that's the Lord's truth, goodness knows. Spare the rod and spile the child, as the Good Book says. I'm a laying up sin and suffering for us both, I know. He's full of the Old Scratch, but laws-a-me! he's my own dead sister's boy, poor thing, and I ain't got the heart to lash him, somehow. Every time I let him off, my conscience does hurt me so, and every time I hit him my old heart most breaks. Well-a-well, man that is born of woman is of few days and full of trouble, as the Scripture says, and I reckon it's so. He'll play hookey this evening, * and [* Southwestern for "afternoon"] I'll just be obleeged to make him work, to-morrow, to punish him. It's mighty hard to make him work Saturdays, when all the boys is having holiday, but he hates work more than he hates anything else, and I've GOT to do some of my duty by him, or I'll be the ruination of the child." Tom did play hookey, and he had a very good time. He got back home barely in season to help Jim, the small colored boy, saw next-day's wood and split the kindlings before supper--at least he was there in time to tell his adventures to Jim while Jim did three-fourths of the work. Tom's younger brother (or rather half-brother) Sid was already through with his part of the work (picking up chips), for he was a quiet boy, and had no adventurous, troublesome ways. While Tom was eating his supper, and stealing sugar as opportunity offered, Aunt Polly asked him questions that were full of guile, and very deep--for she wanted to trap him into damaging revealments. Like many other simple-hearted souls, it was her pet vanity to believe she was endowed with a talent for dark and mysterious diplomacy, and she loved to contemplate her most transparent devices as marvels of low cunning. Said she: "Tom, it was middling warm in school, warn't it?" "Yes'm." "Powerful warm, warn't it?" "Yes'm." "Didn't you want to go in a-swimming, Tom?" A bit of a scare shot through Tom--a touch of uncomfortable suspicion. He searched Aunt Polly's face, but it told him nothing. So he said: "No'm--well, not very much." The old lady reached out her hand and felt Tom's shirt, and said: "But you ain't too warm now, though." And it flattered her to reflect that she had discovered that the shirt was dry without anybody knowing that that was what she had in her mind. But in spite of her, Tom knew where the wind lay, now. So he forestalled what might be the next move: "Some of us pumped on our heads--mine's damp yet. See?" Aunt Polly was vexed to think she had overlooked that bit of circumstantial evidence, and missed a trick. Then she had a new inspiration: "Tom, you didn't have to undo your shirt collar where I sewed it, to pump on your head, did you? Unbutton your jacket!" The trouble vanished out of Tom's face. He opened his jacket. His shirt collar was securely sewed. "Bother! Well, go 'long with you. I'd made sure you'd played hookey and been a-swimming. But I forgive ye, Tom. I reckon you're a kind of a singed cat, as the saying is--better'n you look. THIS time." She was half sorry her sagacity had miscarried, and half glad that Tom had stumbled into obedient conduct for once. But Sidney said: "Well, now, if I didn't think you sewed his collar with white thread, but it's black." "Why, I did sew it with white! Tom!" But Tom did not wait for the rest. As he went out at the door he said: "Siddy, I'll lick you for that." In a safe place Tom examined two large needles which were thrust into the lapels of his jacket, and had thread bound about them--one needle carried white thread and the other black. He said: "She'd never noticed if it hadn't been for Sid. Confound it! sometimes she sews it with white, and sometimes she sews it with black. I wish to geeminy she'd stick to one or t'other--I can't keep the run of 'em. But I bet you I'll lam Sid for that. I'll learn him!" He was not the Model Boy of the village. He knew the model boy very well though--and loathed him. Within two minutes, or even less, he had forgotten all his troubles. Not because his troubles were one whit less heavy and bitter to him than a man's are to a man, but because a new and powerful interest bore them down and drove them out of his mind for the time--just as men's misfortunes are forgotten in the excitement of new enterprises. This new interest was a valued novelty in whistling, which he had just acquired from a negro, and he was suffering to practise it undisturbed. It consisted in a peculiar bird-like turn, a sort of liquid warble, produced by touching the tongue to the roof of the mouth at short intervals in the midst of the music--the reader probably remembers how to do it, if he has ever been a boy. Diligence and attention soon gave him the knack of it, and he strode down the street with his mouth full of harmony and his soul full of gratitude. He felt much as an astronomer feels who has discovered a new planet--no doubt, as far as strong, deep, unalloyed pleasure is concerned, the advantage was with the boy, not the astronomer. The summer evenings were long. It was not dark, yet. Presently Tom checked his whistle. A stranger was before him--a boy a shade larger than himself. A new-comer of any age or either sex was an impressive curiosity in the poor little shabby village of St. Petersburg. This boy was well dressed, too--well dressed on a week-day. This was simply astounding. His cap was a dainty thing, his close-buttoned blue cloth roundabout was new and natty, and so were his pantaloons. He had shoes on--and it was only Friday. He even wore a necktie, a bright bit of ribbon. He had a citified air about him that ate into Tom's vitals. The more Tom stared at the splendid marvel, the higher he turned up his nose at his finery and the shabbier and shabbier his own outfit seemed to him to grow. Neither boy spoke. If one moved, the other moved--but only sidewise, in a circle; they kept face to face and eye to eye all the time. Finally Tom said: "I can lick you!" "I'd like to see you try it." "Well, I can do it." "No you can't, either." "Yes I can." "No you can't." "I can." "You can't." "Can!" "Can't!" An uncomfortable pause. Then Tom said: "What's your name?" "'Tisn't any of your business, maybe." "Well I 'low I'll MAKE it my business." "Well why don't you?" "If you say much, I will." "Much--much--MUCH. There now." "Oh, you think you're mighty smart, DON'T you? I could lick you with one hand tied behind me, if I wanted to." "Well why don't you DO it? You SAY you can do it." "Well I WILL, if you fool with me." "Oh yes--I've seen whole families in the same fix." "Smarty! You think you're SOME, now, DON'T you? Oh, what a hat!" "You can lump that hat if you don't like it. I dare you to knock it off--and anybody that'll take a dare will suck eggs." "You're a liar!" "You're another." "You're a fighting liar and dasn't take it up." "Aw--take a walk!" "Say--if you give me much more of your sass I'll take and bounce a rock off'n your head." "Oh, of COURSE you will." "Well I WILL." "Well why don't you DO it then? What do you keep SAYING you will for? Why don't you DO it? It's because you're afraid." "I AIN'T afraid." "You are." "I ain't." "You are." Another pause, and more eying and sidling around each other. Presently they were shoulder to shoulder. Tom said: "Get away from here!" "Go away yourself!" "I won't." "I won't either." So they stood, each with a foot placed at an angle as a brace, and both shoving with might and main, and glowering at each other with hate. But neither could get an advantage. After struggling till both were hot and flushed, each relaxed his strain with watchful caution, and Tom said: "You're a coward and a pup. I'll tell my big brother on you, and he can thrash you with his little finger, and I'll make him do it, too." "What do I care for your big brother? I've got a brother that's bigger than he is--and what's more, he can throw him over that fence, too." [Both brothers were imaginary.] "That's a lie." "YOUR saying so don't make it so." Tom drew a line in the dust with his big toe, and said: "I dare you to step over that, and I'll lick you till you can't stand up. Anybody that'll take a dare will steal sheep." The new boy stepped over promptly, and said: "Now you said you'd do it, now let's see you do it." "Don't you crowd me now; you better look out." "Well, you SAID you'd do it--why don't you do it?" "By jingo! for two cents I WILL do it." The new boy took two broad coppers out of his pocket and held them out with derision. Tom struck them to the ground. In an instant both boys were rolling and tumbling in the dirt, gripped together like cats; and for the space of a minute they tugged and tore at each other's hair and clothes, punched and scratched each other's nose, and covered themselves with dust and glory. Presently the confusion took form, and through the fog of battle Tom appeared, seated astride the new boy, and pounding him with his fists. "Holler 'nuff!" said he. The boy only struggled to free himself. He was crying--mainly from rage. "Holler 'nuff!"--and the pounding went on. At last the stranger got out a smothered "'Nuff!" and Tom let him up and said: "Now that'll learn you. Better look out who you're fooling with next time." The new boy went off brushing the dust from his clothes, sobbing, snuffling, and occasionally looking back and shaking his head and threatening what he would do to Tom the "next time he caught him out." To which Tom responded with jeers, and started off in high feather, and as soon as his back was turned the new boy snatched up a stone, threw it and hit him between the shoulders and then turned tail and ran like an antelope. Tom chased the traitor home, and thus found out where he lived. He then held a position at the gate for some time, daring the enemy to come outside, but the enemy only made faces at him through the window and declined. At last the enemy's mother appeared, and called Tom a bad, vicious, vulgar child, and ordered him away. So he went away; but he said he "'lowed" to "lay" for that boy. He got home pretty late that night, and when he climbed cautiously in at the window, he uncovered an ambuscade, in the person of his aunt; and when she saw the state his clothes were in her resolution to turn his Saturday holiday into captivity at hard labor became adamantine in its firmness. CHAPTER II SATURDAY morning was come, and all the summer world was bright and fresh, and brimming with life. There was a song in every heart; and if the heart was young the music issued at the lips. There was cheer in every face and a spring in every step. The locust-trees were in bloom and the fragrance of the blossoms filled the air. Cardiff Hill, beyond the village and above it, was green with vegetation and it lay just far enough away to seem a Delectable Land, dreamy, reposeful, and inviting. Tom appeared on the sidewalk with a bucket of whitewash and a long-handled brush. He surveyed the fence, and all gladness left him and a deep melancholy settled down upon his spirit. Thirty yards of board fence nine feet high. Life to him seemed hollow, and existence but a burden. Sighing, he dipped his brush and passed it along the topmost plank; repeated the operation; did it again; compared the insignificant whitewashed streak with the far-reaching continent of unwhitewashed fence, and sat down on a tree-box discouraged. Jim came skipping out at the gate with a tin pail, and singing Buffalo Gals. Bringing water from the town pump had always been hateful work in Tom's eyes, before, but now it did not strike him so. He remembered that there was company at the pump. White, mulatto, and negro boys and girls were always there waiting their turns, resting, trading playthings, quarrelling, fighting, skylarking. And he remembered that although the pump was only a hundred and fifty yards off, Jim never got back with a bucket of water under an hour--and even then somebody generally had to go after him. Tom said: "Say, Jim, I'll fetch the water if you'll whitewash some." Jim shook his head and said: "Can't, Mars Tom. Ole missis, she tole me I got to go an' git dis water an' not stop foolin' roun' wid anybody. She say she spec' Mars Tom gwine to ax me to whitewash, an' so she tole me go 'long an' 'tend to my own business--she 'lowed SHE'D 'tend to de whitewashin'." "Oh, never you mind what she said, Jim. That's the way she always talks. Gimme the bucket--I won't be gone only a a minute. SHE won't ever know." "Oh, I dasn't, Mars Tom. Ole missis she'd take an' tar de head off'n me. 'Deed she would." "SHE! She never licks anybody--whacks 'em over the head with her thimble--and who cares for that, I'd like to know. She talks awful, but talk don't hurt--anyways it don't if she don't cry. Jim, I'll give you a marvel. I'll give you a white alley!" Jim began to waver. "White alley, Jim! And it's a bully taw." "My! Dat's a mighty gay marvel, I tell you! But Mars Tom I's powerful 'fraid ole missis--" "And besides, if you will I'll show you my sore toe." Jim was only human--this attraction was too much for him. He put down his pail, took the white alley, and bent over the toe with absorbing interest while the bandage was being unwound. In another moment he was flying down the street with his pail and a tingling rear, Tom was whitewashing with vigor, and Aunt Polly was retiring from the field with a slipper in her hand and triumph in her eye. But Tom's energy did not last. He began to think of the fun he had planned for this day, and his sorrows multiplied. Soon the free boys would come tripping along on all sorts of delicious expeditions, and they would make a world of fun of him for having to work--the very thought of it burnt him like fire. He got out his worldly wealth and examined it--bits of toys, marbles, and trash; enough to buy an exchange of WORK, maybe, but not half enough to buy so much as half an hour of pure freedom. So he returned his straitened means to his pocket, and gave up the idea of trying to buy the boys. At this dark and hopeless moment an inspiration burst upon him! Nothing less than a great, magnificent inspiration. He took up his brush and went tranquilly to work. Ben Rogers hove in sight presently--the very boy, of all boys, whose ridicule he had been dreading. Ben's gait was the hop-skip-and-jump--proof enough that his heart was light and his anticipations high. He was eating an apple, and giving a long, melodious whoop, at intervals, followed by a deep-toned ding-dong-dong, ding-dong-dong, for he was personating a steamboat. As he drew near, he slackened speed, took the middle of the street, leaned far over to starboard and rounded to ponderously and with laborious pomp and circumstance--for he was personating the Big Missouri, and considered himself to be drawing nine feet of water. He was boat and captain and engine-bells combined, so he had to imagine himself standing on his own hurricane-deck giving the orders and executing them: "Stop her, sir! Ting-a-ling-ling!" The headway ran almost out, and he drew up slowly toward the sidewalk. "Ship up to back! Ting-a-ling-ling!" His arms straightened and stiffened down his sides. "Set her back on the stabboard! Ting-a-ling-ling! Chow! ch-chow-wow! Chow!" His right hand, meantime, describing stately circles--for it was representing a forty-foot wheel. "Let her go back on the labboard! Ting-a-lingling! Chow-ch-chow-chow!" The left hand began to describe circles. "Stop the stabboard! Ting-a-ling-ling! Stop the labboard! Come ahead on the stabboard! Stop her! Let your outside turn over slow! Ting-a-ling-ling! Chow-ow-ow! Get out that head-line! LIVELY now! Come--out with your spring-line--what're you about there! Take a turn round that stump with the bight of it! Stand by that stage, now--let her go! Done with the engines, sir! Ting-a-ling-ling! SH'T! S'H'T! SH'T!" (trying the gauge-cocks). Tom went on whitewashing--paid no attention to the steamboat. Ben stared a moment and then said: "Hi-YI! YOU'RE up a stump, ain't you!" No answer. Tom surveyed his last touch with the eye of an artist, then he gave his brush another gentle sweep and surveyed the result, as before. Ben ranged up alongside of him. Tom's mouth watered for the apple, but he stuck to his work. Ben said: "Hello, old chap, you got to work, hey?" Tom wheeled suddenly and said: "Why, it's you, Ben! I warn't noticing." "Say--I'm going in a-swimming, I am. Don't you wish you could? But of course you'd druther WORK--wouldn't you? Course you would!" Tom contemplated the boy a bit, and said: "What do you call work?" "Why, ain't THAT work?" Tom resumed his whitewashing, and answered carelessly: "Well, maybe it is, and maybe it ain't. All I know, is, it suits Tom Sawyer." "Oh come, now, you don't mean to let on that you LIKE it?" The brush continued to move. "Like it? Well, I don't see why I oughtn't to like it. Does a boy get a chance to whitewash a fence every day?" That put the thing in a new light. Ben stopped nibbling his apple. Tom swept his brush daintily back and forth--stepped back to note the effect--added a touch here and there--criticised the effect again--Ben watching every move and getting more and more interested, more and more absorbed. Presently he said: "Say, Tom, let ME whitewash a little." Tom considered, was about to consent; but he altered his mind: "No--no--I reckon it wouldn't hardly do, Ben. You see, Aunt Polly's awful particular about this fence--right here on the street, you know --but if it was the back fence I wouldn't mind and SHE wouldn't. Yes, she's awful particular about this fence; it's got to be done very careful; I reckon there ain't one boy in a thousand, maybe two thousand, that can do it the way it's got to be done." "No--is that so? Oh come, now--lemme just try. Only just a little--I'd let YOU, if you was me, Tom." "Ben, I'd like to, honest injun; but Aunt Polly--well, Jim wanted to do it, but she wouldn't let him; Sid wanted to do it, and she wouldn't let Sid. Now don't you see how I'm fixed? If you was to tackle this fence and anything was to happen to it--" "Oh, shucks, I'll be just as careful. Now lemme try. Say--I'll give you the core of my apple." "Well, here--No, Ben, now don't. I'm afeard--" "I'll give you ALL of it!" Tom gave up the brush with reluctance in his face, but alacrity in his heart. And while the late steamer Big Missouri worked and sweated in the sun, the retired artist sat on a barrel in the shade close by, dangled his legs, munched his apple, and planned the slaughter of more innocents. There was no lack of material; boys happened along every little while; they came to jeer, but remained to whitewash. By the time Ben was fagged out, Tom had traded the next chance to Billy Fisher for a kite, in good repair; and when he played out, Johnny Miller bought in for a dead rat and a string to swing it with--and so on, and so on, hour after hour. And when the middle of the afternoon came, from being a poor poverty-stricken boy in the morning, Tom was literally rolling in wealth. He had besides the things before mentioned, twelve marbles, part of a jews-harp, a piece of blue bottle-glass to look through, a spool cannon, a key that wouldn't unlock anything, a fragment of chalk, a glass stopper of a decanter, a tin soldier, a couple of tadpoles, six fire-crackers, a kitten with only one eye, a brass doorknob, a dog-collar--but no dog--the handle of a knife, four pieces of orange-peel, and a dilapidated old window sash. He had had a nice, good, idle time all the while--plenty of company --and the fence had three coats of whitewash on it! If he hadn't run out of whitewash he would have bankrupted every boy in the village. Tom said to himself that it was not such a hollow world, after all. He had discovered a great law of human action, without knowing it--namely, that in order to make a man or a boy covet a thing, it is only necessary to make the thing difficult to attain. If he had been a great and wise philosopher, like the writer of this book, he would now have comprehended that Work consists of whatever a body is OBLIGED to do, and that Play consists of whatever a body is not obliged to do. And this would help him to understand why constructing artificial flowers or performing on a tread-mill is work, while rolling ten-pins or climbing Mont Blanc is only amusement. There are wealthy gentlemen in England who drive four-horse passenger-coaches twenty or thirty miles on a daily line, in the summer, because the privilege costs them considerable money; but if they were offered wages for the service, that would turn it into work and then they would resign. The boy mused awhile over the substantial change which had taken place in his worldly circumstances, and then wended toward headquarters to report. CHAPTER III TOM presented himself before Aunt Polly, who was sitting by an open window in a pleasant rearward apartment, which was bedroom, breakfast-room, dining-room, and library, combined. The balmy summer air, the restful quiet, the odor of the flowers, and the drowsing murmur of the bees had had their effect, and she was nodding over her knitting --for she had no company but the cat, and it was asleep in her lap. Her spectacles were propped up on her gray head for safety. She had thought that of course Tom had deserted long ago, and she wondered at seeing him place himself in her power again in this intrepid way. He said: "Mayn't I go and play now, aunt?" "What, a'ready? How much have you done?" "It's all done, aunt." "Tom, don't lie to me--I can't bear it." "I ain't, aunt; it IS all done." Aunt Polly placed small trust in such evidence. She went out to see for herself; and she would have been content to find twenty per cent. of Tom's statement true. When she found the entire fence whitewashed, and not only whitewashed but elaborately coated and recoated, and even a streak added to the ground, her astonishment was almost unspeakable. She said: "Well, I never! There's no getting round it, you can work when you're a mind to, Tom." And then she diluted the compliment by adding, "But it's powerful seldom you're a mind to, I'm bound to say. Well, go 'long and play; but mind you get back some time in a week, or I'll tan you." She was so overcome by the splendor of his achievement that she took him into the closet and selected a choice apple and delivered it to him, along with an improving lecture upon the added value and flavor a treat took to itself when it came without sin through virtuous effort. And while she closed with a happy Scriptural flourish, he "hooked" a doughnut. Then he skipped out, and saw Sid just starting up the outside stairway that led to the back rooms on the second floor. Clods were handy and the air was full of them in a twinkling. They raged around Sid like a hail-storm; and before Aunt Polly could collect her surprised faculties and sally to the rescue, six or seven clods had taken personal effect, and Tom was over the fence and gone. There was a gate, but as a general thing he was too crowded for time to make use of it. His soul was at peace, now that he had settled with Sid for calling attention to his black thread and getting him into trouble. Tom skirted the block, and came round into a muddy alley that led by the back of his aunt's cow-stable. He presently got safely beyond the reach of capture and punishment, and hastened toward the public square of the village, where two "military" companies of boys had met for conflict, according to previous appointment. Tom was General of one of these armies, Joe Harper (a bosom friend) General of the other. These two great commanders did not condescend to fight in person--that being better suited to the still smaller fry--but sat together on an eminence and conducted the field operations by orders delivered through aides-de-camp. Tom's army won a great victory, after a long and hard-fought battle. Then the dead were counted, prisoners exchanged, the terms of the next disagreement agreed upon, and the day for the necessary battle appointed; after which the armies fell into line and marched away, and Tom turned homeward alone. As he was passing by the house where Jeff Thatcher lived, he saw a new girl in the garden--a lovely little blue-eyed creature with yellow hair plaited into two long-tails, white summer frock and embroidered pantalettes. The fresh-crowned hero fell without firing a shot. A certain Amy Lawrence vanished out of his heart and left not even a memory of herself behind. He had thought he loved her to distraction; he had regarded his passion as adoration; and behold it was only a poor little evanescent partiality. He had been months winning her; she had confessed hardly a week ago; he had been the happiest and the proudest boy in the world only seven short days, and here in one instant of time she had gone out of his heart like a casual stranger whose visit is done. He worshipped this new angel with furtive eye, till he saw that she had discovered him; then he pretended he did not know she was present, and began to "show off" in all sorts of absurd boyish ways, in order to win her admiration. He kept up this grotesque foolishness for some time; but by-and-by, while he was in the midst of some dangerous gymnastic performances, he glanced aside and saw that the little girl was wending her way toward the house. Tom came up to the fence and leaned on it, grieving, and hoping she would tarry yet awhile longer. She halted a moment on the steps and then moved toward the door. Tom heaved a great sigh as she put her foot on the threshold. But his face lit up, right away, for she tossed a pansy over the fence a moment before she disappeared. The boy ran around and stopped within a foot or two of the flower, and then shaded his eyes with his hand and began to look down street as if he had discovered something of interest going on in that direction. Presently he picked up a straw and began trying to balance it on his nose, with his head tilted far back; and as he moved from side to side, in his efforts, he edged nearer and nearer toward the pansy; finally his bare foot rested upon it, his pliant toes closed upon it, and he hopped away with the treasure and disappeared round the corner. But only for a minute--only while he could button the flower inside his jacket, next his heart--or next his stomach, possibly, for he was not much posted in anatomy, and not hypercritical, anyway. He returned, now, and hung about the fence till nightfall, "showing off," as before; but the girl never exhibited herself again, though Tom comforted himself a little with the hope that she had been near some window, meantime, and been aware of his attentions. Finally he strode home reluctantly, with his poor head full of visions. All through supper his spirits were so high that his aunt wondered "what had got into the child." He took a good scolding about clodding Sid, and did not seem to mind it in the least. He tried to steal sugar under his aunt's very nose, and got his knuckles rapped for it. He said: "Aunt, you don't whack Sid when he takes it." "Well, Sid don't torment a body the way you do. You'd be always into that sugar if I warn't watching you." Presently she stepped into the kitchen, and Sid, happy in his immunity, reached for the sugar-bowl--a sort of glorying over Tom which was wellnigh unbearable. But Sid's fingers slipped and the bowl dropped and broke. Tom was in ecstasies. In such ecstasies that he even controlled his tongue and was silent. He said to himself that he would not speak a word, even when his aunt came in, but would sit perfectly still till she asked who did the mischief; and then he would tell, and there would be nothing so good in the world as to see that pet model "catch it." He was so brimful of exultation that he could hardly hold himself when the old lady came back and stood above the wreck discharging lightnings of wrath from over her spectacles. He said to himself, "Now it's coming!" And the next instant he was sprawling on the floor! The potent palm was uplifted to strike again when Tom cried out: "Hold on, now, what 'er you belting ME for?--Sid broke it!" Aunt Polly paused, perplexed, and Tom looked for healing pity. But when she got her tongue again, she only said: "Umf! Well, you didn't get a lick amiss, I reckon. You been into some other audacious mischief when I wasn't around, like enough." Then her conscience reproached her, and she yearned to say something kind and loving; but she judged that this would be construed into a confession that she had been in the wrong, and discipline forbade that. So she kept silence, and went about her affairs with a troubled heart. Tom sulked in a corner and exalted his woes. He knew that in her heart his aunt was on her knees to him, and he was morosely gratified by the consciousness of it. He would hang out no signals, he would take notice of none. He knew that a yearning glance fell upon him, now and then, through a film of tears, but he refused recognition of it. He pictured himself lying sick unto death and his aunt bending over him beseeching one little forgiving word, but he would turn his face to the wall, and die with that word unsaid. Ah, how would she feel then? And he pictured himself brought home from the river, dead, with his curls all wet, and his sore heart at rest. How she would throw herself upon him, and how her tears would fall like rain, and her lips pray God to give her back her boy and she would never, never abuse him any more! But he would lie there cold and white and make no sign--a poor little sufferer, whose griefs were at an end. He so worked upon his feelings with the pathos of these dreams, that he had to keep swallowing, he was so like to choke; and his eyes swam in a blur of water, which overflowed when he winked, and ran down and trickled from the end of his nose. And such a luxury to him was this petting of his sorrows, that he could not bear to have any worldly cheeriness or any grating delight intrude upon it; it was too sacred for such contact; and so, presently, when his cousin Mary danced in, all alive with the joy of seeing home again after an age-long visit of one week to the country, he got up and moved in clouds and darkness out at one door as she brought song and sunshine in at the other. He wandered far from the accustomed haunts of boys, and sought desolate places that were in harmony with his spirit. A log raft in the river invited him, and he seated himself on its outer edge and contemplated the dreary vastness of the stream, wishing, the while, that he could only be drowned, all at once and unconsciously, without undergoing the uncomfortable routine devised by nature. Then he thought of his flower. He got it out, rumpled and wilted, and it mightily increased his dismal felicity. He wondered if she would pity him if she knew? Would she cry, and wish that she had a right to put her arms around his neck and comfort him? Or would she turn coldly away like all the hollow world? This picture brought such an agony of pleasurable suffering that he worked it over and over again in his mind and set it up in new and varied lights, till he wore it threadbare. At last he rose up sighing and departed in the darkness. About half-past nine or ten o'clock he came along the deserted street to where the Adored Unknown lived; he paused a moment; no sound fell upon his listening ear; a candle was casting a dull glow upon the curtain of a second-story window. Was the sacred presence there? He climbed the fence, threaded his stealthy way through the plants, till he stood under that window; he looked up at it long, and with emotion; then he laid him down on the ground under it, disposing himself upon his back, with his hands clasped upon his breast and holding his poor wilted flower. And thus he would die--out in the cold world, with no shelter over his homeless head, no friendly hand to wipe the death-damps from his brow, no loving face to bend pityingly over him when the great agony came. And thus SHE would see him when she looked out upon the glad morning, and oh! would she drop one little tear upon his poor, lifeless form, would she heave one little sigh to see a bright young life so rudely blighted, so untimely cut down? The window went up, a maid-servant's discordant voice profaned the holy calm, and a deluge of water drenched the prone martyr's remains! The strangling hero sprang up with a relieving snort. There was a whiz as of a missile in the air, mingled with the murmur of a curse, a sound as of shivering glass followed, and a small, vague form went over the fence and shot away in the gloom. Not long after, as Tom, all undressed for bed, was surveying his drenched garments by the light of a tallow dip, Sid woke up; but if he had any dim idea of making any "references to allusions," he thought better of it and held his peace, for there was danger in Tom's eye. Tom turned in without the added vexation of prayers, and Sid made mental note of the omission. CHAPTER IV THE sun rose upon a tranquil world, and beamed down upon the peaceful village like a benediction. Breakfast over, Aunt Polly had family worship: it began with a prayer built from the ground up of solid courses of Scriptural quotations, welded together with a thin mortar of originality; and from the summit of this she delivered a grim chapter of the Mosaic Law, as from Sinai. Then Tom girded up his loins, so to speak, and went to work to "get his verses." Sid had learned his lesson days before. Tom bent all his energies to the memorizing of five verses, and he chose part of the Sermon on the Mount, because he could find no verses that were shorter. At the end of half an hour Tom had a vague general idea of his lesson, but no more, for his mind was traversing the whole field of human thought, and his hands were busy with distracting recreations. Mary took his book to hear him recite, and he tried to find his way through the fog: "Blessed are the--a--a--" "Poor"-- "Yes--poor; blessed are the poor--a--a--" "In spirit--" "In spirit; blessed are the poor in spirit, for they--they--" "THEIRS--" "For THEIRS. Blessed are the poor in spirit, for theirs is the kingdom of heaven. Blessed are they that mourn, for they--they--" "Sh--" "For they--a--" "S, H, A--" "For they S, H--Oh, I don't know what it is!" "SHALL!" "Oh, SHALL! for they shall--for they shall--a--a--shall mourn--a--a-- blessed are they that shall--they that--a--they that shall mourn, for they shall--a--shall WHAT? Why don't you tell me, Mary?--what do you want to be so mean for?" "Oh, Tom, you poor thick-headed thing, I'm not teasing you. I wouldn't do that. You must go and learn it again. Don't you be discouraged, Tom, you'll manage it--and if you do, I'll give you something ever so nice. There, now, that's a good boy." "All right! What is it, Mary, tell me what it is." "Never you mind, Tom. You know if I say it's nice, it is nice." "You bet you that's so, Mary. All right, I'll tackle it again." And he did "tackle it again"--and under the double pressure of curiosity and prospective gain he did it with such spirit that he accomplished a shining success. Mary gave him a brand-new "Barlow" knife worth twelve and a half cents; and the convulsion of delight that swept his system shook him to his foundations. True, the knife would not cut anything, but it was a "sure-enough" Barlow, and there was inconceivable grandeur in that--though where the Western boys ever got the idea that such a weapon could possibly be counterfeited to its injury is an imposing mystery and will always remain so, perhaps. Tom contrived to scarify the cupboard with it, and was arranging to begin on the bureau, when he was called off to dress for Sunday-school. Mary gave him a tin basin of water and a piece of soap, and he went outside the door and set the basin on a little bench there; then he dipped the soap in the water and laid it down; turned up his sleeves; poured out the water on the ground, gently, and then entered the kitchen and began to wipe his face diligently on the towel behind the door. But Mary removed the towel and said: "Now ain't you ashamed, Tom. You mustn't be so bad. Water won't hurt you." Tom was a trifle disconcerted. The basin was refilled, and this time he stood over it a little while, gathering resolution; took in a big breath and began. When he entered the kitchen presently, with both eyes shut and groping for the towel with his hands, an honorable testimony of suds and water was dripping from his face. But when he emerged from the towel, he was not yet satisfactory, for the clean territory stopped short at his chin and his jaws, like a mask; below and beyond this line there was a dark expanse of unirrigated soil that spread downward in front and backward around his neck. Mary took him in hand, and when she was done with him he was a man and a brother, without distinction of color, and his saturated hair was neatly brushed, and its short curls wrought into a dainty and symmetrical general effect. [He privately smoothed out the curls, with labor and difficulty, and plastered his hair close down to his head; for he held curls to be effeminate, and his own filled his life with bitterness.] Then Mary got out a suit of his clothing that had been used only on Sundays during two years--they were simply called his "other clothes"--and so by that we know the size of his wardrobe. The girl "put him to rights" after he had dressed himself; she buttoned his neat roundabout up to his chin, turned his vast shirt collar down over his shoulders, brushed him off and crowned him with his speckled straw hat. He now looked exceedingly improved and uncomfortable. He was fully as uncomfortable as he looked; for there was a restraint about whole clothes and cleanliness that galled him. He hoped that Mary would forget his shoes, but the hope was blighted; she coated them thoroughly with tallow, as was the custom, and brought them out. He lost his temper and said he was always being made to do everything he didn't want to do. But Mary said, persuasively: "Please, Tom--that's a good boy." So he got into the shoes snarling. Mary was soon ready, and the three children set out for Sunday-school--a place that Tom hated with his whole heart; but Sid and Mary were fond of it. Sabbath-school hours were from nine to half-past ten; and then church service. Two of the children always remained for the sermon voluntarily, and the other always remained too--for stronger reasons. The church's high-backed, uncushioned pews would seat about three hundred persons; the edifice was but a small, plain affair, with a sort of pine board tree-box on top of it for a steeple. At the door Tom dropped back a step and accosted a Sunday-dressed comrade: "Say, Billy, got a yaller ticket?" "Yes." "What'll you take for her?" "What'll you give?" "Piece of lickrish and a fish-hook." "Less see 'em." Tom exhibited. They were satisfactory, and the property changed hands. Then Tom traded a couple of white alleys for three red tickets, and some small trifle or other for a couple of blue ones. He waylaid other boys as they came, and went on buying tickets of various colors ten or fifteen minutes longer. He entered the church, now, with a swarm of clean and noisy boys and girls, proceeded to his seat and started a quarrel with the first boy that came handy. The teacher, a grave, elderly man, interfered; then turned his back a moment and Tom pulled a boy's hair in the next bench, and was absorbed in his book when the boy turned around; stuck a pin in another boy, presently, in order to hear him say "Ouch!" and got a new reprimand from his teacher. Tom's whole class were of a pattern--restless, noisy, and troublesome. When they came to recite their lessons, not one of them knew his verses perfectly, but had to be prompted all along. However, they worried through, and each got his reward--in small blue tickets, each with a passage of Scripture on it; each blue ticket was pay for two verses of the recitation. Ten blue tickets equalled a red one, and could be exchanged for it; ten red tickets equalled a yellow one; for ten yellow tickets the superintendent gave a very plainly bound Bible (worth forty cents in those easy times) to the pupil. How many of my readers would have the industry and application to memorize two thousand verses, even for a Dore Bible? And yet Mary had acquired two Bibles in this way--it was the patient work of two years--and a boy of German parentage had won four or five. He once recited three thousand verses without stopping; but the strain upon his mental faculties was too great, and he was little better than an idiot from that day forth--a grievous misfortune for the school, for on great occasions, before company, the superintendent (as Tom expressed it) had always made this boy come out and "spread himself." Only the older pupils managed to keep their tickets and stick to their tedious work long enough to get a Bible, and so the delivery of one of these prizes was a rare and noteworthy circumstance; the successful pupil was so great and conspicuous for that day that on the spot every scholar's heart was fired with a fresh ambition that often lasted a couple of weeks. It is possible that Tom's mental stomach had never really hungered for one of those prizes, but unquestionably his entire being had for many a day longed for the glory and the eclat that came with it. In due course the superintendent stood up in front of the pulpit, with a closed hymn-book in his hand and his forefinger inserted between its leaves, and commanded attention. When a Sunday-school superintendent makes his customary little speech, a hymn-book in the hand is as necessary as is the inevitable sheet of music in the hand of a singer who stands forward on the platform and sings a solo at a concert --though why, is a mystery: for neither the hymn-book nor the sheet of music is ever referred to by the sufferer. This superintendent was a slim creature of thirty-five, with a sandy goatee and short sandy hair; he wore a stiff standing-collar whose upper edge almost reached his ears and whose sharp points curved forward abreast the corners of his mouth--a fence that compelled a straight lookout ahead, and a turning of the whole body when a side view was required; his chin was propped on a spreading cravat which was as broad and as long as a bank-note, and had fringed ends; his boot toes were turned sharply up, in the fashion of the day, like sleigh-runners--an effect patiently and laboriously produced by the young men by sitting with their toes pressed against a wall for hours together. Mr. Walters was very earnest of mien, and very sincere and honest at heart; and he held sacred things and places in such reverence, and so separated them from worldly matters, that unconsciously to himself his Sunday-school voice had acquired a peculiar intonation which was wholly absent on week-days. He began after this fashion: "Now, children, I want you all to sit up just as straight and pretty as you can and give me all your attention for a minute or two. There --that is it. That is the way good little boys and girls should do. I see one little girl who is looking out of the window--I am afraid she thinks I am out there somewhere--perhaps up in one of the trees making a speech to the little birds. [Applausive titter.] I want to tell you how good it makes me feel to see so many bright, clean little faces assembled in a place like this, learning to do right and be good." And so forth and so on. It is not necessary to set down the rest of the oration. It was of a pattern which does not vary, and so it is familiar to us all. The latter third of the speech was marred by the resumption of fights and other recreations among certain of the bad boys, and by fidgetings and whisperings that extended far and wide, washing even to the bases of isolated and incorruptible rocks like Sid and Mary. But now every sound ceased suddenly, with the subsidence of Mr. Walters' voice, and the conclusion of the speech was received with a burst of silent gratitude. A good part of the whispering had been occasioned by an event which was more or less rare--the entrance of visitors: lawyer Thatcher, accompanied by a very feeble and aged man; a fine, portly, middle-aged gentleman with iron-gray hair; and a dignified lady who was doubtless the latter's wife. The lady was leading a child. Tom had been restless and full of chafings and repinings; conscience-smitten, too--he could not meet Amy Lawrence's eye, he could not brook her loving gaze. But when he saw this small new-comer his soul was all ablaze with bliss in a moment. The next moment he was "showing off" with all his might --cuffing boys, pulling hair, making faces--in a word, using every art that seemed likely to fascinate a girl and win her applause. His exaltation had but one alloy--the memory of his humiliation in this angel's garden--and that record in sand was fast washing out, under the waves of happiness that were sweeping over it now. The visitors were given the highest seat of honor, and as soon as Mr. Walters' speech was finished, he introduced them to the school. The middle-aged man turned out to be a prodigious personage--no less a one than the county judge--altogether the most august creation these children had ever looked upon--and they wondered what kind of material he was made of--and they half wanted to hear him roar, and were half afraid he might, too. He was from Constantinople, twelve miles away--so he had travelled, and seen the world--these very eyes had looked upon the county court-house--which was said to have a tin roof. The awe which these reflections inspired was attested by the impressive silence and the ranks of staring eyes. This was the great Judge Thatcher, brother of their own lawyer. Jeff Thatcher immediately went forward, to be familiar with the great man and be envied by the school. It would have been music to his soul to hear the whisperings: "Look at him, Jim! He's a going up there. Say--look! he's a going to shake hands with him--he IS shaking hands with him! By jings, don't you wish you was Jeff?" Mr. Walters fell to "showing off," with all sorts of official bustlings and activities, giving orders, delivering judgments, discharging directions here, there, everywhere that he could find a target. The librarian "showed off"--running hither and thither with his arms full of books and making a deal of the splutter and fuss that insect authority delights in. The young lady teachers "showed off" --bending sweetly over pupils that were lately being boxed, lifting pretty warning fingers at bad little boys and patting good ones lovingly. The young gentlemen teachers "showed off" with small scoldings and other little displays of authority and fine attention to discipline--and most of the teachers, of both sexes, found business up at the library, by the pulpit; and it was business that frequently had to be done over again two or three times (with much seeming vexation). The little girls "showed off" in various ways, and the little boys "showed off" with such diligence that the air was thick with paper wads and the murmur of scufflings. And above it all the great man sat and beamed a majestic judicial smile upon all the house, and warmed himself in the sun of his own grandeur--for he was "showing off," too. There was only one thing wanting to make Mr. Walters' ecstasy complete, and that was a chance to deliver a Bible-prize and exhibit a prodigy. Several pupils had a few yellow tickets, but none had enough --he had been around among the star pupils inquiring. He would have given worlds, now, to have that German lad back again with a sound mind. And now at this moment, when hope was dead, Tom Sawyer came forward with nine yellow tickets, nine red tickets, and ten blue ones, and demanded a Bible. This was a thunderbolt out of a clear sky. Walters was not expecting an application from this source for the next ten years. But there was no getting around it--here were the certified checks, and they were good for their face. Tom was therefore elevated to a place with the Judge and the other elect, and the great news was announced from headquarters. It was the most stunning surprise of the decade, and so profound was the sensation that it lifted the new hero up to the judicial one's altitude, and the school had two marvels to gaze upon in place of one. The boys were all eaten up with envy--but those that suffered the bitterest pangs were those who perceived too late that they themselves had contributed to this hated splendor by trading tickets to Tom for the wealth he had amassed in selling whitewashing privileges. These despised themselves, as being the dupes of a wily fraud, a guileful snake in the grass. The prize was delivered to Tom with as much effusion as the superintendent could pump up under the circumstances; but it lacked somewhat of the true gush, for the poor fellow's instinct taught him that there was a mystery here that could not well bear the light, perhaps; it was simply preposterous that this boy had warehoused two thousand sheaves of Scriptural wisdom on his premises--a dozen would strain his capacity, without a doubt. Amy Lawrence was proud and glad, and she tried to make Tom see it in her face--but he wouldn't look. She wondered; then she was just a grain troubled; next a dim suspicion came and went--came again; she watched; a furtive glance told her worlds--and then her heart broke, and she was jealous, and angry, and the tears came and she hated everybody. Tom most of all (she thought). Tom was introduced to the Judge; but his tongue was tied, his breath would hardly come, his heart quaked--partly because of the awful greatness of the man, but mainly because he was her parent. He would have liked to fall down and worship him, if it were in the dark. The Judge put his hand on Tom's head and called him a fine little man, and asked him what his name was. The boy stammered, gasped, and got it out: "Tom." "Oh, no, not Tom--it is--" "Thomas." "Ah, that's it. I thought there was more to it, maybe. That's very well. But you've another one I daresay, and you'll tell it to me, won't you?" "Tell the gentleman your other name, Thomas," said Walters, "and say sir. You mustn't forget your manners." "Thomas Sawyer--sir." "That's it! That's a good boy. Fine boy. Fine, manly little fellow. Two thousand verses is a great many--very, very great many. And you never can be sorry for the trouble you took to learn them; for knowledge is worth more than anything there is in the world; it's what makes great men and good men; you'll be a great man and a good man yourself, some day, Thomas, and then you'll look back and say, It's all owing to the precious Sunday-school privileges of my boyhood--it's all owing to my dear teachers that taught me to learn--it's all owing to the good superintendent, who encouraged me, and watched over me, and gave me a beautiful Bible--a splendid elegant Bible--to keep and have it all for my own, always--it's all owing to right bringing up! That is what you will say, Thomas--and you wouldn't take any money for those two thousand verses--no indeed you wouldn't. And now you wouldn't mind telling me and this lady some of the things you've learned--no, I know you wouldn't--for we are proud of little boys that learn. Now, no doubt you know the names of all the twelve disciples. Won't you tell us the names of the first two that were appointed?" Tom was tugging at a button-hole and looking sheepish. He blushed, now, and his eyes fell. Mr. Walters' heart sank within him. He said to himself, it is not possible that the boy can answer the simplest question--why DID the Judge ask him? Yet he felt obliged to speak up and say: "Answer the gentleman, Thomas--don't be afraid." Tom still hung fire. "Now I know you'll tell me," said the lady. "The names of the first two disciples were--" "DAVID AND GOLIAH!" Let us draw the curtain of charity over the rest of the scene. CHAPTER V ABOUT half-past ten the cracked bell of the small church began to ring, and presently the people began to gather for the morning sermon. The Sunday-school children distributed themselves about the house and occupied pews with their parents, so as to be under supervision. Aunt Polly came, and Tom and Sid and Mary sat with her--Tom being placed next the aisle, in order that he might be as far away from the open window and the seductive outside summer scenes as possible. The crowd filed up the aisles: the aged and needy postmaster, who had seen better days; the mayor and his wife--for they had a mayor there, among other unnecessaries; the justice of the peace; the widow Douglass, fair, smart, and forty, a generous, good-hearted soul and well-to-do, her hill mansion the only palace in the town, and the most hospitable and much the most lavish in the matter of festivities that St. Petersburg could boast; the bent and venerable Major and Mrs. Ward; lawyer Riverson, the new notable from a distance; next the belle of the village, followed by a troop of lawn-clad and ribbon-decked young heart-breakers; then all the young clerks in town in a body--for they had stood in the vestibule sucking their cane-heads, a circling wall of oiled and simpering admirers, till the last girl had run their gantlet; and last of all came the Model Boy, Willie Mufferson, taking as heedful care of his mother as if she were cut glass. He always brought his mother to church, and was the pride of all the matrons. The boys all hated him, he was so good. And besides, he had been "thrown up to them" so much. His white handkerchief was hanging out of his pocket behind, as usual on Sundays--accidentally. Tom had no handkerchief, and he looked upon boys who had as snobs. The congregation being fully assembled, now, the bell rang once more, to warn laggards and stragglers, and then a solemn hush fell upon the church which was only broken by the tittering and whispering of the choir in the gallery. The choir always tittered and whispered all through service. There was once a church choir that was not ill-bred, but I have forgotten where it was, now. It was a great many years ago, and I can scarcely remember anything about it, but I think it was in some foreign country. The minister gave out the hymn, and read it through with a relish, in a peculiar style which was much admired in that part of the country. His voice began on a medium key and climbed steadily up till it reached a certain point, where it bore with strong emphasis upon the topmost word and then plunged down as if from a spring-board: Shall I be car-ri-ed toe the skies, on flow'ry BEDS of ease, Whilst others fight to win the prize, and sail thro' BLOODY seas? He was regarded as a wonderful reader. At church "sociables" he was always called upon to read poetry; and when he was through, the ladies would lift up their hands and let them fall helplessly in their laps, and "wall" their eyes, and shake their heads, as much as to say, "Words cannot express it; it is too beautiful, TOO beautiful for this mortal earth." After the hymn had been sung, the Rev. Mr. Sprague turned himself into a bulletin-board, and read off "notices" of meetings and societies and things till it seemed that the list would stretch out to the crack of doom--a queer custom which is still kept up in America, even in cities, away here in this age of abundant newspapers. Often, the less there is to justify a traditional custom, the harder it is to get rid of it. And now the minister prayed. A good, generous prayer it was, and went into details: it pleaded for the church, and the little children of the church; for the other churches of the village; for the village itself; for the county; for the State; for the State officers; for the United States; for the churches of the United States; for Congress; for the President; for the officers of the Government; for poor sailors, tossed by stormy seas; for the oppressed millions groaning under the heel of European monarchies and Oriental despotisms; for such as have the light and the good tidings, and yet have not eyes to see nor ears to hear withal; for the heathen in the far islands of the sea; and closed with a supplication that the words he was about to speak might find grace and favor, and be as seed sown in fertile ground, yielding in time a grateful harvest of good. Amen. There was a rustling of dresses, and the standing congregation sat down. The boy whose history this book relates did not enjoy the prayer, he only endured it--if he even did that much. He was restive all through it; he kept tally of the details of the prayer, unconsciously --for he was not listening, but he knew the ground of old, and the clergyman's regular route over it--and when a little trifle of new matter was interlarded, his ear detected it and his whole nature resented it; he considered additions unfair, and scoundrelly. In the midst of the prayer a fly had lit on the back of the pew in front of him and tortured his spirit by calmly rubbing its hands together, embracing its head with its arms, and polishing it so vigorously that it seemed to almost part company with the body, and the slender thread of a neck was exposed to view; scraping its wings with its hind legs and smoothing them to its body as if they had been coat-tails; going through its whole toilet as tranquilly as if it knew it was perfectly safe. As indeed it was; for as sorely as Tom's hands itched to grab for it they did not dare--he believed his soul would be instantly destroyed if he did such a thing while the prayer was going on. But with the closing sentence his hand began to curve and steal forward; and the instant the "Amen" was out the fly was a prisoner of war. His aunt detected the act and made him let it go. The minister gave out his text and droned along monotonously through an argument that was so prosy that many a head by and by began to nod --and yet it was an argument that dealt in limitless fire and brimstone and thinned the predestined elect down to a company so small as to be hardly worth the saving. Tom counted the pages of the sermon; after church he always knew how many pages there had been, but he seldom knew anything else about the discourse. However, this time he was really interested for a little while. The minister made a grand and moving picture of the assembling together of the world's hosts at the millennium when the lion and the lamb should lie down together and a little child should lead them. But the pathos, the lesson, the moral of the great spectacle were lost upon the boy; he only thought of the conspicuousness of the principal character before the on-looking nations; his face lit with the thought, and he said to himself that he wished he could be that child, if it was a tame lion. Now he lapsed into suffering again, as the dry argument was resumed. Presently he bethought him of a treasure he had and got it out. It was a large black beetle with formidable jaws--a "pinchbug," he called it. It was in a percussion-cap box. The first thing the beetle did was to take him by the finger. A natural fillip followed, the beetle went floundering into the aisle and lit on its back, and the hurt finger went into the boy's mouth. The beetle lay there working its helpless legs, unable to turn over. Tom eyed it, and longed for it; but it was safe out of his reach. Other people uninterested in the sermon found relief in the beetle, and they eyed it too. Presently a vagrant poodle dog came idling along, sad at heart, lazy with the summer softness and the quiet, weary of captivity, sighing for change. He spied the beetle; the drooping tail lifted and wagged. He surveyed the prize; walked around it; smelt at it from a safe distance; walked around it again; grew bolder, and took a closer smell; then lifted his lip and made a gingerly snatch at it, just missing it; made another, and another; began to enjoy the diversion; subsided to his stomach with the beetle between his paws, and continued his experiments; grew weary at last, and then indifferent and absent-minded. His head nodded, and little by little his chin descended and touched the enemy, who seized it. There was a sharp yelp, a flirt of the poodle's head, and the beetle fell a couple of yards away, and lit on its back once more. The neighboring spectators shook with a gentle inward joy, several faces went behind fans and handkerchiefs, and Tom was entirely happy. The dog looked foolish, and probably felt so; but there was resentment in his heart, too, and a craving for revenge. So he went to the beetle and began a wary attack on it again; jumping at it from every point of a circle, lighting with his fore-paws within an inch of the creature, making even closer snatches at it with his teeth, and jerking his head till his ears flapped again. But he grew tired once more, after a while; tried to amuse himself with a fly but found no relief; followed an ant around, with his nose close to the floor, and quickly wearied of that; yawned, sighed, forgot the beetle entirely, and sat down on it. Then there was a wild yelp of agony and the poodle went sailing up the aisle; the yelps continued, and so did the dog; he crossed the house in front of the altar; he flew down the other aisle; he crossed before the doors; he clamored up the home-stretch; his anguish grew with his progress, till presently he was but a woolly comet moving in its orbit with the gleam and the speed of light. At last the frantic sufferer sheered from its course, and sprang into its master's lap; he flung it out of the window, and the voice of distress quickly thinned away and died in the distance. By this time the whole church was red-faced and suffocating with suppressed laughter, and the sermon had come to a dead standstill. The discourse was resumed presently, but it went lame and halting, all possibility of impressiveness being at an end; for even the gravest sentiments were constantly being received with a smothered burst of unholy mirth, under cover of some remote pew-back, as if the poor parson had said a rarely facetious thing. It was a genuine relief to the whole congregation when the ordeal was over and the benediction pronounced. Tom Sawyer went home quite cheerful, thinking to himself that there was some satisfaction about divine service when there was a bit of variety in it. He had but one marring thought; he was willing that the dog should play with his pinchbug, but he did not think it was upright in him to carry it off. CHAPTER VI MONDAY morning found Tom Sawyer miserable. Monday morning always found him so--because it began another week's slow suffering in school. He generally began that day with wishing he had had no intervening holiday, it made the going into captivity and fetters again so much more odious. Tom lay thinking. Presently it occurred to him that he wished he was sick; then he could stay home from school. Here was a vague possibility. He canvassed his system. No ailment was found, and he investigated again. This time he thought he could detect colicky symptoms, and he began to encourage them with considerable hope. But they soon grew feeble, and presently died wholly away. He reflected further. Suddenly he discovered something. One of his upper front teeth was loose. This was lucky; he was about to begin to groan, as a "starter," as he called it, when it occurred to him that if he came into court with that argument, his aunt would pull it out, and that would hurt. So he thought he would hold the tooth in reserve for the present, and seek further. Nothing offered for some little time, and then he remembered hearing the doctor tell about a certain thing that laid up a patient for two or three weeks and threatened to make him lose a finger. So the boy eagerly drew his sore toe from under the sheet and held it up for inspection. But now he did not know the necessary symptoms. However, it seemed well worth while to chance it, so he fell to groaning with considerable spirit. But Sid slept on unconscious. Tom groaned louder, and fancied that he began to feel pain in the toe. No result from Sid. Tom was panting with his exertions by this time. He took a rest and then swelled himself up and fetched a succession of admirable groans. Sid snored on. Tom was aggravated. He said, "Sid, Sid!" and shook him. This course worked well, and Tom began to groan again. Sid yawned, stretched, then brought himself up on his elbow with a snort, and began to stare at Tom. Tom went on groaning. Sid said: "Tom! Say, Tom!" [No response.] "Here, Tom! TOM! What is the matter, Tom?" And he shook him and looked in his face anxiously. Tom moaned out: "Oh, don't, Sid. Don't joggle me." "Why, what's the matter, Tom? I must call auntie." "No--never mind. It'll be over by and by, maybe. Don't call anybody." "But I must! DON'T groan so, Tom, it's awful. How long you been this way?" "Hours. Ouch! Oh, don't stir so, Sid, you'll kill me." "Tom, why didn't you wake me sooner? Oh, Tom, DON'T! It makes my flesh crawl to hear you. Tom, what is the matter?" "I forgive you everything, Sid. [Groan.] Everything you've ever done to me. When I'm gone--" "Oh, Tom, you ain't dying, are you? Don't, Tom--oh, don't. Maybe--" "I forgive everybody, Sid. [Groan.] Tell 'em so, Sid. And Sid, you give my window-sash and my cat with one eye to that new girl that's come to town, and tell her--" But Sid had snatched his clothes and gone. Tom was suffering in reality, now, so handsomely was his imagination working, and so his groans had gathered quite a genuine tone. Sid flew down-stairs and said: "Oh, Aunt Polly, come! Tom's dying!" "Dying!" "Yes'm. Don't wait--come quick!" "Rubbage! I don't believe it!" But she fled up-stairs, nevertheless, with Sid and Mary at her heels. And her face grew white, too, and her lip trembled. When she reached the bedside she gasped out: "You, Tom! Tom, what's the matter with you?" "Oh, auntie, I'm--" "What's the matter with you--what is the matter with you, child?" "Oh, auntie, my sore toe's mortified!" The old lady sank down into a chair and laughed a little, then cried a little, then did both together. This restored her and she said: "Tom, what a turn you did give me. Now you shut up that nonsense and climb out of this." The groans ceased and the pain vanished from the toe. The boy felt a little foolish, and he said: "Aunt Polly, it SEEMED mortified, and it hurt so I never minded my tooth at all." "Your tooth, indeed! What's the matter with your tooth?" "One of them's loose, and it aches perfectly awful." "There, there, now, don't begin that groaning again. Open your mouth. Well--your tooth IS loose, but you're not going to die about that. Mary, get me a silk thread, and a chunk of fire out of the kitchen." Tom said: "Oh, please, auntie, don't pull it out. It don't hurt any more. I wish I may never stir if it does. Please don't, auntie. I don't want to stay home from school." "Oh, you don't, don't you? So all this row was because you thought you'd get to stay home from school and go a-fishing? Tom, Tom, I love you so, and you seem to try every way you can to break my old heart with your outrageousness." By this time the dental instruments were ready. The old lady made one end of the silk thread fast to Tom's tooth with a loop and tied the other to the bedpost. Then she seized the chunk of fire and suddenly thrust it almost into the boy's face. The tooth hung dangling by the bedpost, now. But all trials bring their compensations. As Tom wended to school after breakfast, he was the envy of every boy he met because the gap in his upper row of teeth enabled him to expectorate in a new and admirable way. He gathered quite a following of lads interested in the exhibition; and one that had cut his finger and had been a centre of fascination and homage up to this time, now found himself suddenly without an adherent, and shorn of his glory. His heart was heavy, and he said with a disdain which he did not feel that it wasn't anything to spit like Tom Sawyer; but another boy said, "Sour grapes!" and he wandered away a dismantled hero. Shortly Tom came upon the juvenile pariah of the village, Huckleberry Finn, son of the town drunkard. Huckleberry was cordially hated and dreaded by all the mothers of the town, because he was idle and lawless and vulgar and bad--and because all their children admired him so, and delighted in his forbidden society, and wished they dared to be like him. Tom was like the rest of the respectable boys, in that he envied Huckleberry his gaudy outcast condition, and was under strict orders not to play with him. So he played with him every time he got a chance. Huckleberry was always dressed in the cast-off clothes of full-grown men, and they were in perennial bloom and fluttering with rags. His hat was a vast ruin with a wide crescent lopped out of its brim; his coat, when he wore one, hung nearly to his heels and had the rearward buttons far down the back; but one suspender supported his trousers; the seat of the trousers bagged low and contained nothing, the fringed legs dragged in the dirt when not rolled up. Huckleberry came and went, at his own free will. He slept on doorsteps in fine weather and in empty hogsheads in wet; he did not have to go to school or to church, or call any being master or obey anybody; he could go fishing or swimming when and where he chose, and stay as long as it suited him; nobody forbade him to fight; he could sit up as late as he pleased; he was always the first boy that went barefoot in the spring and the last to resume leather in the fall; he never had to wash, nor put on clean clothes; he could swear wonderfully. In a word, everything that goes to make life precious that boy had. So thought every harassed, hampered, respectable boy in St. Petersburg. Tom hailed the romantic outcast: "Hello, Huckleberry!" "Hello yourself, and see how you like it." "What's that you got?" "Dead cat." "Lemme see him, Huck. My, he's pretty stiff. Where'd you get him?" "Bought him off'n a boy." "What did you give?" "I give a blue ticket and a bladder that I got at the slaughter-house." "Where'd you get the blue ticket?" "Bought it off'n Ben Rogers two weeks ago for a hoop-stick." "Say--what is dead cats good for, Huck?" "Good for? Cure warts with." "No! Is that so? I know something that's better." "I bet you don't. What is it?" "Why, spunk-water." "Spunk-water! I wouldn't give a dern for spunk-water." "You wouldn't, wouldn't you? D'you ever try it?" "No, I hain't. But Bob Tanner did." "Who told you so!" "Why, he told Jeff Thatcher, and Jeff told Johnny Baker, and Johnny told Jim Hollis, and Jim told Ben Rogers, and Ben told a nigger, and the nigger told me. There now!" "Well, what of it? They'll all lie. Leastways all but the nigger. I don't know HIM. But I never see a nigger that WOULDN'T lie. Shucks! Now you tell me how Bob Tanner done it, Huck." "Why, he took and dipped his hand in a rotten stump where the rain-water was." "In the daytime?" "Certainly." "With his face to the stump?" "Yes. Least I reckon so." "Did he say anything?" "I don't reckon he did. I don't know." "Aha! Talk about trying to cure warts with spunk-water such a blame fool way as that! Why, that ain't a-going to do any good. You got to go all by yourself, to the middle of the woods, where you know there's a spunk-water stump, and just as it's midnight you back up against the stump and jam your hand in and say: 'Barley-corn, barley-corn, injun-meal shorts, Spunk-water, spunk-water, swaller these warts,' and then walk away quick, eleven steps, with your eyes shut, and then turn around three times and walk home without speaking to anybody. Because if you speak the charm's busted." "Well, that sounds like a good way; but that ain't the way Bob Tanner done." "No, sir, you can bet he didn't, becuz he's the wartiest boy in this town; and he wouldn't have a wart on him if he'd knowed how to work spunk-water. I've took off thousands of warts off of my hands that way, Huck. I play with frogs so much that I've always got considerable many warts. Sometimes I take 'em off with a bean." "Yes, bean's good. I've done that." "Have you? What's your way?" "You take and split the bean, and cut the wart so as to get some blood, and then you put the blood on one piece of the bean and take and dig a hole and bury it 'bout midnight at the crossroads in the dark of the moon, and then you burn up the rest of the bean. You see that piece that's got the blood on it will keep drawing and drawing, trying to fetch the other piece to it, and so that helps the blood to draw the wart, and pretty soon off she comes." "Yes, that's it, Huck--that's it; though when you're burying it if you say 'Down bean; off wart; come no more to bother me!' it's better. That's the way Joe Harper does, and he's been nearly to Coonville and most everywheres. But say--how do you cure 'em with dead cats?" "Why, you take your cat and go and get in the graveyard 'long about midnight when somebody that was wicked has been buried; and when it's midnight a devil will come, or maybe two or three, but you can't see 'em, you can only hear something like the wind, or maybe hear 'em talk; and when they're taking that feller away, you heave your cat after 'em and say, 'Devil follow corpse, cat follow devil, warts follow cat, I'm done with ye!' That'll fetch ANY wart." "Sounds right. D'you ever try it, Huck?" "No, but old Mother Hopkins told me." "Well, I reckon it's so, then. Becuz they say she's a witch." "Say! Why, Tom, I KNOW she is. She witched pap. Pap says so his own self. He come along one day, and he see she was a-witching him, so he took up a rock, and if she hadn't dodged, he'd a got her. Well, that very night he rolled off'n a shed wher' he was a layin drunk, and broke his arm." "Why, that's awful. How did he know she was a-witching him?" "Lord, pap can tell, easy. Pap says when they keep looking at you right stiddy, they're a-witching you. Specially if they mumble. Becuz when they mumble they're saying the Lord's Prayer backards." "Say, Hucky, when you going to try the cat?" "To-night. I reckon they'll come after old Hoss Williams to-night." "But they buried him Saturday. Didn't they get him Saturday night?" "Why, how you talk! How could their charms work till midnight?--and THEN it's Sunday. Devils don't slosh around much of a Sunday, I don't reckon." "I never thought of that. That's so. Lemme go with you?" "Of course--if you ain't afeard." "Afeard! 'Tain't likely. Will you meow?" "Yes--and you meow back, if you get a chance. Last time, you kep' me a-meowing around till old Hays went to throwing rocks at me and says 'Dern that cat!' and so I hove a brick through his window--but don't you tell." "I won't. I couldn't meow that night, becuz auntie was watching me, but I'll meow this time. Say--what's that?" "Nothing but a tick." "Where'd you get him?" "Out in the woods." "What'll you take for him?" "I don't know. I don't want to sell him." "All right. It's a mighty small tick, anyway." "Oh, anybody can run a tick down that don't belong to them. I'm satisfied with it. It's a good enough tick for me." "Sho, there's ticks a plenty. I could have a thousand of 'em if I wanted to." "Well, why don't you? Becuz you know mighty well you can't. This is a pretty early tick, I reckon. It's the first one I've seen this year." "Say, Huck--I'll give you my tooth for him." "Less see it." Tom got out a bit of paper and carefully unrolled it. Huckleberry viewed it wistfully. The temptation was very strong. At last he said: "Is it genuwyne?" Tom lifted his lip and showed the vacancy. "Well, all right," said Huckleberry, "it's a trade." Tom enclosed the tick in the percussion-cap box that had lately been the pinchbug's prison, and the boys separated, each feeling wealthier than before. When Tom reached the little isolated frame schoolhouse, he strode in briskly, with the manner of one who had come with all honest speed. He hung his hat on a peg and flung himself into his seat with business-like alacrity. The master, throned on high in his great splint-bottom arm-chair, was dozing, lulled by the drowsy hum of study. The interruption roused him. "Thomas Sawyer!" Tom knew that when his name was pronounced in full, it meant trouble. "Sir!" "Come up here. Now, sir, why are you late again, as usual?" Tom was about to take refuge in a lie, when he saw two long tails of yellow hair hanging down a back that he recognized by the electric sympathy of love; and by that form was THE ONLY VACANT PLACE on the girls' side of the schoolhouse. He instantly said: "I STOPPED TO TALK WITH HUCKLEBERRY FINN!" The master's pulse stood still, and he stared helplessly. The buzz of study ceased. The pupils wondered if this foolhardy boy had lost his mind. The master said: "You--you did what?" "Stopped to talk with Huckleberry Finn." There was no mistaking the words. "Thomas Sawyer, this is the most astounding confession I have ever listened to. No mere ferule will answer for this offence. Take off your jacket." The master's arm performed until it was tired and the stock of switches notably diminished. Then the order followed: "Now, sir, go and sit with the girls! And let this be a warning to you." The titter that rippled around the room appeared to abash the boy, but in reality that result was caused rather more by his worshipful awe of his unknown idol and the dread pleasure that lay in his high good fortune. He sat down upon the end of the pine bench and the girl hitched herself away from him with a toss of her head. Nudges and winks and whispers traversed the room, but Tom sat still, with his arms upon the long, low desk before him, and seemed to study his book. By and by attention ceased from him, and the accustomed school murmur rose upon the dull air once more. Presently the boy began to steal furtive glances at the girl. She observed it, "made a mouth" at him and gave him the back of her head for the space of a minute. When she cautiously faced around again, a peach lay before her. She thrust it away. Tom gently put it back. She thrust it away again, but with less animosity. Tom patiently returned it to its place. Then she let it remain. Tom scrawled on his slate, "Please take it--I got more." The girl glanced at the words, but made no sign. Now the boy began to draw something on the slate, hiding his work with his left hand. For a time the girl refused to notice; but her human curiosity presently began to manifest itself by hardly perceptible signs. The boy worked on, apparently unconscious. The girl made a sort of noncommittal attempt to see, but the boy did not betray that he was aware of it. At last she gave in and hesitatingly whispered: "Let me see it." Tom partly uncovered a dismal caricature of a house with two gable ends to it and a corkscrew of smoke issuing from the chimney. Then the girl's interest began to fasten itself upon the work and she forgot everything else. When it was finished, she gazed a moment, then whispered: "It's nice--make a man." The artist erected a man in the front yard, that resembled a derrick. He could have stepped over the house; but the girl was not hypercritical; she was satisfied with the monster, and whispered: "It's a beautiful man--now make me coming along." Tom drew an hour-glass with a full moon and straw limbs to it and armed the spreading fingers with a portentous fan. The girl said: "It's ever so nice--I wish I could draw." "It's easy," whispered Tom, "I'll learn you." "Oh, will you? When?" "At noon. Do you go home to dinner?" "I'll stay if you will." "Good--that's a whack. What's your name?" "Becky Thatcher. What's yours? Oh, I know. It's Thomas Sawyer." "That's the name they lick me by. I'm Tom when I'm good. You call me Tom, will you?" "Yes." Now Tom began to scrawl something on the slate, hiding the words from the girl. But she was not backward this time. She begged to see. Tom said: "Oh, it ain't anything." "Yes it is." "No it ain't. You don't want to see." "Yes I do, indeed I do. Please let me." "You'll tell." "No I won't--deed and deed and double deed won't." "You won't tell anybody at all? Ever, as long as you live?" "No, I won't ever tell ANYbody. Now let me." "Oh, YOU don't want to see!" "Now that you treat me so, I WILL see." And she put her small hand upon his and a little scuffle ensued, Tom pretending to resist in earnest but letting his hand slip by degrees till these words were revealed: "I LOVE YOU." "Oh, you bad thing!" And she hit his hand a smart rap, but reddened and looked pleased, nevertheless. Just at this juncture the boy felt a slow, fateful grip closing on his ear, and a steady lifting impulse. In that wise he was borne across the house and deposited in his own seat, under a peppering fire of giggles from the whole school. Then the master stood over him during a few awful moments, and finally moved away to his throne without saying a word. But although Tom's ear tingled, his heart was jubilant. As the school quieted down Tom made an honest effort to study, but the turmoil within him was too great. In turn he took his place in the reading class and made a botch of it; then in the geography class and turned lakes into mountains, mountains into rivers, and rivers into continents, till chaos was come again; then in the spelling class, and got "turned down," by a succession of mere baby words, till he brought up at the foot and yielded up the pewter medal which he had worn with ostentation for months. CHAPTER VII THE harder Tom tried to fasten his mind on his book, the more his ideas wandered. So at last, with a sigh and a yawn, he gave it up. It seemed to him that the noon recess would never come. The air was utterly dead. There was not a breath stirring. It was the sleepiest of sleepy days. The drowsing murmur of the five and twenty studying scholars soothed the soul like the spell that is in the murmur of bees. Away off in the flaming sunshine, Cardiff Hill lifted its soft green sides through a shimmering veil of heat, tinted with the purple of distance; a few birds floated on lazy wing high in the air; no other living thing was visible but some cows, and they were asleep. Tom's heart ached to be free, or else to have something of interest to do to pass the dreary time. His hand wandered into his pocket and his face lit up with a glow of gratitude that was prayer, though he did not know it. Then furtively the percussion-cap box came out. He released the tick and put him on the long flat desk. The creature probably glowed with a gratitude that amounted to prayer, too, at this moment, but it was premature: for when he started thankfully to travel off, Tom turned him aside with a pin and made him take a new direction. Tom's bosom friend sat next him, suffering just as Tom had been, and now he was deeply and gratefully interested in this entertainment in an instant. This bosom friend was Joe Harper. The two boys were sworn friends all the week, and embattled enemies on Saturdays. Joe took a pin out of his lapel and began to assist in exercising the prisoner. The sport grew in interest momently. Soon Tom said that they were interfering with each other, and neither getting the fullest benefit of the tick. So he put Joe's slate on the desk and drew a line down the middle of it from top to bottom. "Now," said he, "as long as he is on your side you can stir him up and I'll let him alone; but if you let him get away and get on my side, you're to leave him alone as long as I can keep him from crossing over." "All right, go ahead; start him up." The tick escaped from Tom, presently, and crossed the equator. Joe harassed him awhile, and then he got away and crossed back again. This change of base occurred often. While one boy was worrying the tick with absorbing interest, the other would look on with interest as strong, the two heads bowed together over the slate, and the two souls dead to all things else. At last luck seemed to settle and abide with Joe. The tick tried this, that, and the other course, and got as excited and as anxious as the boys themselves, but time and again just as he would have victory in his very grasp, so to speak, and Tom's fingers would be twitching to begin, Joe's pin would deftly head him off, and keep possession. At last Tom could stand it no longer. The temptation was too strong. So he reached out and lent a hand with his pin. Joe was angry in a moment. Said he: "Tom, you let him alone." "I only just want to stir him up a little, Joe." "No, sir, it ain't fair; you just let him alone." "Blame it, I ain't going to stir him much." "Let him alone, I tell you." "I won't!" "You shall--he's on my side of the line." "Look here, Joe Harper, whose is that tick?" "I don't care whose tick he is--he's on my side of the line, and you sha'n't touch him." "Well, I'll just bet I will, though. He's my tick and I'll do what I blame please with him, or die!" A tremendous whack came down on Tom's shoulders, and its duplicate on Joe's; and for the space of two minutes the dust continued to fly from the two jackets and the whole school to enjoy it. The boys had been too absorbed to notice the hush that had stolen upon the school awhile before when the master came tiptoeing down the room and stood over them. He had contemplated a good part of the performance before he contributed his bit of variety to it. When school broke up at noon, Tom flew to Becky Thatcher, and whispered in her ear: "Put on your bonnet and let on you're going home; and when you get to the corner, give the rest of 'em the slip, and turn down through the lane and come back. I'll go the other way and come it over 'em the same way." So the one went off with one group of scholars, and the other with another. In a little while the two met at the bottom of the lane, and when they reached the school they had it all to themselves. Then they sat together, with a slate before them, and Tom gave Becky the pencil and held her hand in his, guiding it, and so created another surprising house. When the interest in art began to wane, the two fell to talking. Tom was swimming in bliss. He said: "Do you love rats?" "No! I hate them!" "Well, I do, too--LIVE ones. But I mean dead ones, to swing round your head with a string." "No, I don't care for rats much, anyway. What I like is chewing-gum." "Oh, I should say so! I wish I had some now." "Do you? I've got some. I'll let you chew it awhile, but you must give it back to me." That was agreeable, so they chewed it turn about, and dangled their legs against the bench in excess of contentment. "Was you ever at a circus?" said Tom. "Yes, and my pa's going to take me again some time, if I'm good." "I been to the circus three or four times--lots of times. Church ain't shucks to a circus. There's things going on at a circus all the time. I'm going to be a clown in a circus when I grow up." "Oh, are you! That will be nice. They're so lovely, all spotted up." "Yes, that's so. And they get slathers of money--most a dollar a day, Ben Rogers says. Say, Becky, was you ever engaged?" "What's that?" "Why, engaged to be married." "No." "Would you like to?" "I reckon so. I don't know. What is it like?" "Like? Why it ain't like anything. You only just tell a boy you won't ever have anybody but him, ever ever ever, and then you kiss and that's all. Anybody can do it." "Kiss? What do you kiss for?" "Why, that, you know, is to--well, they always do that." "Everybody?" "Why, yes, everybody that's in love with each other. Do you remember what I wrote on the slate?" "Ye--yes." "What was it?" "I sha'n't tell you." "Shall I tell YOU?" "Ye--yes--but some other time." "No, now." "No, not now--to-morrow." "Oh, no, NOW. Please, Becky--I'll whisper it, I'll whisper it ever so easy." Becky hesitating, Tom took silence for consent, and passed his arm about her waist and whispered the tale ever so softly, with his mouth close to her ear. And then he added: "Now you whisper it to me--just the same." She resisted, for a while, and then said: "You turn your face away so you can't see, and then I will. But you mustn't ever tell anybody--WILL you, Tom? Now you won't, WILL you?" "No, indeed, indeed I won't. Now, Becky." He turned his face away. She bent timidly around till her breath stirred his curls and whispered, "I--love--you!" Then she sprang away and ran around and around the desks and benches, with Tom after her, and took refuge in a corner at last, with her little white apron to her face. Tom clasped her about her neck and pleaded: "Now, Becky, it's all done--all over but the kiss. Don't you be afraid of that--it ain't anything at all. Please, Becky." And he tugged at her apron and the hands. By and by she gave up, and let her hands drop; her face, all glowing with the struggle, came up and submitted. Tom kissed the red lips and said: "Now it's all done, Becky. And always after this, you know, you ain't ever to love anybody but me, and you ain't ever to marry anybody but me, ever never and forever. Will you?" "No, I'll never love anybody but you, Tom, and I'll never marry anybody but you--and you ain't to ever marry anybody but me, either." "Certainly. Of course. That's PART of it. And always coming to school or when we're going home, you're to walk with me, when there ain't anybody looking--and you choose me and I choose you at parties, because that's the way you do when you're engaged." "It's so nice. I never heard of it before." "Oh, it's ever so gay! Why, me and Amy Lawrence--" The big eyes told Tom his blunder and he stopped, confused. "Oh, Tom! Then I ain't the first you've ever been engaged to!" The child began to cry. Tom said: "Oh, don't cry, Becky, I don't care for her any more." "Yes, you do, Tom--you know you do." Tom tried to put his arm about her neck, but she pushed him away and turned her face to the wall, and went on crying. Tom tried again, with soothing words in his mouth, and was repulsed again. Then his pride was up, and he strode away and went outside. He stood about, restless and uneasy, for a while, glancing at the door, every now and then, hoping she would repent and come to find him. But she did not. Then he began to feel badly and fear that he was in the wrong. It was a hard struggle with him to make new advances, now, but he nerved himself to it and entered. She was still standing back there in the corner, sobbing, with her face to the wall. Tom's heart smote him. He went to her and stood a moment, not knowing exactly how to proceed. Then he said hesitatingly: "Becky, I--I don't care for anybody but you." No reply--but sobs. "Becky"--pleadingly. "Becky, won't you say something?" More sobs. Tom got out his chiefest jewel, a brass knob from the top of an andiron, and passed it around her so that she could see it, and said: "Please, Becky, won't you take it?" She struck it to the floor. Then Tom marched out of the house and over the hills and far away, to return to school no more that day. Presently Becky began to suspect. She ran to the door; he was not in sight; she flew around to the play-yard; he was not there. Then she called: "Tom! Come back, Tom!" She listened intently, but there was no answer. She had no companions but silence and loneliness. So she sat down to cry again and upbraid herself; and by this time the scholars began to gather again, and she had to hide her griefs and still her broken heart and take up the cross of a long, dreary, aching afternoon, with none among the strangers about her to exchange sorrows with. CHAPTER VIII TOM dodged hither and thither through lanes until he was well out of the track of returning scholars, and then fell into a moody jog. He crossed a small "branch" two or three times, because of a prevailing juvenile superstition that to cross water baffled pursuit. Half an hour later he was disappearing behind the Douglas mansion on the summit of Cardiff Hill, and the schoolhouse was hardly distinguishable away off in the valley behind him. He entered a dense wood, picked his pathless way to the centre of it, and sat down on a mossy spot under a spreading oak. There was not even a zephyr stirring; the dead noonday heat had even stilled the songs of the birds; nature lay in a trance that was broken by no sound but the occasional far-off hammering of a woodpecker, and this seemed to render the pervading silence and sense of loneliness the more profound. The boy's soul was steeped in melancholy; his feelings were in happy accord with his surroundings. He sat long with his elbows on his knees and his chin in his hands, meditating. It seemed to him that life was but a trouble, at best, and he more than half envied Jimmy Hodges, so lately released; it must be very peaceful, he thought, to lie and slumber and dream forever and ever, with the wind whispering through the trees and caressing the grass and the flowers over the grave, and nothing to bother and grieve about, ever any more. If he only had a clean Sunday-school record he could be willing to go, and be done with it all. Now as to this girl. What had he done? Nothing. He had meant the best in the world, and been treated like a dog--like a very dog. She would be sorry some day--maybe when it was too late. Ah, if he could only die TEMPORARILY! But the elastic heart of youth cannot be compressed into one constrained shape long at a time. Tom presently began to drift insensibly back into the concerns of this life again. What if he turned his back, now, and disappeared mysteriously? What if he went away--ever so far away, into unknown countries beyond the seas--and never came back any more! How would she feel then! The idea of being a clown recurred to him now, only to fill him with disgust. For frivolity and jokes and spotted tights were an offense, when they intruded themselves upon a spirit that was exalted into the vague august realm of the romantic. No, he would be a soldier, and return after long years, all war-worn and illustrious. No--better still, he would join the Indians, and hunt buffaloes and go on the warpath in the mountain ranges and the trackless great plains of the Far West, and away in the future come back a great chief, bristling with feathers, hideous with paint, and prance into Sunday-school, some drowsy summer morning, with a bloodcurdling war-whoop, and sear the eyeballs of all his companions with unappeasable envy. But no, there was something gaudier even than this. He would be a pirate! That was it! NOW his future lay plain before him, and glowing with unimaginable splendor. How his name would fill the world, and make people shudder! How gloriously he would go plowing the dancing seas, in his long, low, black-hulled racer, the Spirit of the Storm, with his grisly flag flying at the fore! And at the zenith of his fame, how he would suddenly appear at the old village and stalk into church, brown and weather-beaten, in his black velvet doublet and trunks, his great jack-boots, his crimson sash, his belt bristling with horse-pistols, his crime-rusted cutlass at his side, his slouch hat with waving plumes, his black flag unfurled, with the skull and crossbones on it, and hear with swelling ecstasy the whisperings, "It's Tom Sawyer the Pirate!--the Black Avenger of the Spanish Main!" Yes, it was settled; his career was determined. He would run away from home and enter upon it. He would start the very next morning. Therefore he must now begin to get ready. He would collect his resources together. He went to a rotten log near at hand and began to dig under one end of it with his Barlow knife. He soon struck wood that sounded hollow. He put his hand there and uttered this incantation impressively: "What hasn't come here, come! What's here, stay here!" Then he scraped away the dirt, and exposed a pine shingle. He took it up and disclosed a shapely little treasure-house whose bottom and sides were of shingles. In it lay a marble. Tom's astonishment was boundless! He scratched his head with a perplexed air, and said: "Well, that beats anything!" Then he tossed the marble away pettishly, and stood cogitating. The truth was, that a superstition of his had failed, here, which he and all his comrades had always looked upon as infallible. If you buried a marble with certain necessary incantations, and left it alone a fortnight, and then opened the place with the incantation he had just used, you would find that all the marbles you had ever lost had gathered themselves together there, meantime, no matter how widely they had been separated. But now, this thing had actually and unquestionably failed. Tom's whole structure of faith was shaken to its foundations. He had many a time heard of this thing succeeding but never of its failing before. It did not occur to him that he had tried it several times before, himself, but could never find the hiding-places afterward. He puzzled over the matter some time, and finally decided that some witch had interfered and broken the charm. He thought he would satisfy himself on that point; so he searched around till he found a small sandy spot with a little funnel-shaped depression in it. He laid himself down and put his mouth close to this depression and called-- "Doodle-bug, doodle-bug, tell me what I want to know! Doodle-bug, doodle-bug, tell me what I want to know!" The sand began to work, and presently a small black bug appeared for a second and then darted under again in a fright. "He dasn't tell! So it WAS a witch that done it. I just knowed it." He well knew the futility of trying to contend against witches, so he gave up discouraged. But it occurred to him that he might as well have the marble he had just thrown away, and therefore he went and made a patient search for it. But he could not find it. Now he went back to his treasure-house and carefully placed himself just as he had been standing when he tossed the marble away; then he took another marble from his pocket and tossed it in the same way, saying: "Brother, go find your brother!" He watched where it stopped, and went there and looked. But it must have fallen short or gone too far; so he tried twice more. The last repetition was successful. The two marbles lay within a foot of each other. Just here the blast of a toy tin trumpet came faintly down the green aisles of the forest. Tom flung off his jacket and trousers, turned a suspender into a belt, raked away some brush behind the rotten log, disclosing a rude bow and arrow, a lath sword and a tin trumpet, and in a moment had seized these things and bounded away, barelegged, with fluttering shirt. He presently halted under a great elm, blew an answering blast, and then began to tiptoe and look warily out, this way and that. He said cautiously--to an imaginary company: "Hold, my merry men! Keep hid till I blow." Now appeared Joe Harper, as airily clad and elaborately armed as Tom. Tom called: "Hold! Who comes here into Sherwood Forest without my pass?" "Guy of Guisborne wants no man's pass. Who art thou that--that--" "Dares to hold such language," said Tom, prompting--for they talked "by the book," from memory. "Who art thou that dares to hold such language?" "I, indeed! I am Robin Hood, as thy caitiff carcase soon shall know." "Then art thou indeed that famous outlaw? Right gladly will I dispute with thee the passes of the merry wood. Have at thee!" They took their lath swords, dumped their other traps on the ground, struck a fencing attitude, foot to foot, and began a grave, careful combat, "two up and two down." Presently Tom said: "Now, if you've got the hang, go it lively!" So they "went it lively," panting and perspiring with the work. By and by Tom shouted: "Fall! fall! Why don't you fall?" "I sha'n't! Why don't you fall yourself? You're getting the worst of it." "Why, that ain't anything. I can't fall; that ain't the way it is in the book. The book says, 'Then with one back-handed stroke he slew poor Guy of Guisborne.' You're to turn around and let me hit you in the back." There was no getting around the authorities, so Joe turned, received the whack and fell. "Now," said Joe, getting up, "you got to let me kill YOU. That's fair." "Why, I can't do that, it ain't in the book." "Well, it's blamed mean--that's all." "Well, say, Joe, you can be Friar Tuck or Much the miller's son, and lam me with a quarter-staff; or I'll be the Sheriff of Nottingham and you be Robin Hood a little while and kill me." This was satisfactory, and so these adventures were carried out. Then Tom became Robin Hood again, and was allowed by the treacherous nun to bleed his strength away through his neglected wound. And at last Joe, representing a whole tribe of weeping outlaws, dragged him sadly forth, gave his bow into his feeble hands, and Tom said, "Where this arrow falls, there bury poor Robin Hood under the greenwood tree." Then he shot the arrow and fell back and would have died, but he lit on a nettle and sprang up too gaily for a corpse. The boys dressed themselves, hid their accoutrements, and went off grieving that there were no outlaws any more, and wondering what modern civilization could claim to have done to compensate for their loss. They said they would rather be outlaws a year in Sherwood Forest than President of the United States forever. CHAPTER IX AT half-past nine, that night, Tom and Sid were sent to bed, as usual. They said their prayers, and Sid was soon asleep. Tom lay awake and waited, in restless impatience. When it seemed to him that it must be nearly daylight, he heard the clock strike ten! This was despair. He would have tossed and fidgeted, as his nerves demanded, but he was afraid he might wake Sid. So he lay still, and stared up into the dark. Everything was dismally still. By and by, out of the stillness, little, scarcely perceptible noises began to emphasize themselves. The ticking of the clock began to bring itself into notice. Old beams began to crack mysteriously. The stairs creaked faintly. Evidently spirits were abroad. A measured, muffled snore issued from Aunt Polly's chamber. And now the tiresome chirping of a cricket that no human ingenuity could locate, began. Next the ghastly ticking of a deathwatch in the wall at the bed's head made Tom shudder--it meant that somebody's days were numbered. Then the howl of a far-off dog rose on the night air, and was answered by a fainter howl from a remoter distance. Tom was in an agony. At last he was satisfied that time had ceased and eternity begun; he began to doze, in spite of himself; the clock chimed eleven, but he did not hear it. And then there came, mingling with his half-formed dreams, a most melancholy caterwauling. The raising of a neighboring window disturbed him. A cry of "Scat! you devil!" and the crash of an empty bottle against the back of his aunt's woodshed brought him wide awake, and a single minute later he was dressed and out of the window and creeping along the roof of the "ell" on all fours. He "meow'd" with caution once or twice, as he went; then jumped to the roof of the woodshed and thence to the ground. Huckleberry Finn was there, with his dead cat. The boys moved off and disappeared in the gloom. At the end of half an hour they were wading through the tall grass of the graveyard. It was a graveyard of the old-fashioned Western kind. It was on a hill, about a mile and a half from the village. It had a crazy board fence around it, which leaned inward in places, and outward the rest of the time, but stood upright nowhere. Grass and weeds grew rank over the whole cemetery. All the old graves were sunken in, there was not a tombstone on the place; round-topped, worm-eaten boards staggered over the graves, leaning for support and finding none. "Sacred to the memory of" So-and-So had been painted on them once, but it could no longer have been read, on the most of them, now, even if there had been light. A faint wind moaned through the trees, and Tom feared it might be the spirits of the dead, complaining at being disturbed. The boys talked little, and only under their breath, for the time and the place and the pervading solemnity and silence oppressed their spirits. They found the sharp new heap they were seeking, and ensconced themselves within the protection of three great elms that grew in a bunch within a few feet of the grave. Then they waited in silence for what seemed a long time. The hooting of a distant owl was all the sound that troubled the dead stillness. Tom's reflections grew oppressive. He must force some talk. So he said in a whisper: "Hucky, do you believe the dead people like it for us to be here?" Huckleberry whispered: "I wisht I knowed. It's awful solemn like, AIN'T it?" "I bet it is." There was a considerable pause, while the boys canvassed this matter inwardly. Then Tom whispered: "Say, Hucky--do you reckon Hoss Williams hears us talking?" "O' course he does. Least his sperrit does." Tom, after a pause: "I wish I'd said Mister Williams. But I never meant any harm. Everybody calls him Hoss." "A body can't be too partic'lar how they talk 'bout these-yer dead people, Tom." This was a damper, and conversation died again. Presently Tom seized his comrade's arm and said: "Sh!" "What is it, Tom?" And the two clung together with beating hearts. "Sh! There 'tis again! Didn't you hear it?" "I--" "There! Now you hear it." "Lord, Tom, they're coming! They're coming, sure. What'll we do?" "I dono. Think they'll see us?" "Oh, Tom, they can see in the dark, same as cats. I wisht I hadn't come." "Oh, don't be afeard. I don't believe they'll bother us. We ain't doing any harm. If we keep perfectly still, maybe they won't notice us at all." "I'll try to, Tom, but, Lord, I'm all of a shiver." "Listen!" The boys bent their heads together and scarcely breathed. A muffled sound of voices floated up from the far end of the graveyard. "Look! See there!" whispered Tom. "What is it?" "It's devil-fire. Oh, Tom, this is awful." Some vague figures approached through the gloom, swinging an old-fashioned tin lantern that freckled the ground with innumerable little spangles of light. Presently Huckleberry whispered with a shudder: "It's the devils sure enough. Three of 'em! Lordy, Tom, we're goners! Can you pray?" "I'll try, but don't you be afeard. They ain't going to hurt us. 'Now I lay me down to sleep, I--'" "Sh!" "What is it, Huck?" "They're HUMANS! One of 'em is, anyway. One of 'em's old Muff Potter's voice." "No--'tain't so, is it?" "I bet I know it. Don't you stir nor budge. He ain't sharp enough to notice us. Drunk, the same as usual, likely--blamed old rip!" "All right, I'll keep still. Now they're stuck. Can't find it. Here they come again. Now they're hot. Cold again. Hot again. Red hot! They're p'inted right, this time. Say, Huck, I know another o' them voices; it's Injun Joe." "That's so--that murderin' half-breed! I'd druther they was devils a dern sight. What kin they be up to?" The whisper died wholly out, now, for the three men had reached the grave and stood within a few feet of the boys' hiding-place. "Here it is," said the third voice; and the owner of it held the lantern up and revealed the face of young Doctor Robinson. Potter and Injun Joe were carrying a handbarrow with a rope and a couple of shovels on it. They cast down their load and began to open the grave. The doctor put the lantern at the head of the grave and came and sat down with his back against one of the elm trees. He was so close the boys could have touched him. "Hurry, men!" he said, in a low voice; "the moon might come out at any moment." They growled a response and went on digging. For some time there was no noise but the grating sound of the spades discharging their freight of mould and gravel. It was very monotonous. Finally a spade struck upon the coffin with a dull woody accent, and within another minute or two the men had hoisted it out on the ground. They pried off the lid with their shovels, got out the body and dumped it rudely on the ground. The moon drifted from behind the clouds and exposed the pallid face. The barrow was got ready and the corpse placed on it, covered with a blanket, and bound to its place with the rope. Potter took out a large spring-knife and cut off the dangling end of the rope and then said: "Now the cussed thing's ready, Sawbones, and you'll just out with another five, or here she stays." "That's the talk!" said Injun Joe. "Look here, what does this mean?" said the doctor. "You required your pay in advance, and I've paid you." "Yes, and you done more than that," said Injun Joe, approaching the doctor, who was now standing. "Five years ago you drove me away from your father's kitchen one night, when I come to ask for something to eat, and you said I warn't there for any good; and when I swore I'd get even with you if it took a hundred years, your father had me jailed for a vagrant. Did you think I'd forget? The Injun blood ain't in me for nothing. And now I've GOT you, and you got to SETTLE, you know!" He was threatening the doctor, with his fist in his face, by this time. The doctor struck out suddenly and stretched the ruffian on the ground. Potter dropped his knife, and exclaimed: "Here, now, don't you hit my pard!" and the next moment he had grappled with the doctor and the two were struggling with might and main, trampling the grass and tearing the ground with their heels. Injun Joe sprang to his feet, his eyes flaming with passion, snatched up Potter's knife, and went creeping, catlike and stooping, round and round about the combatants, seeking an opportunity. All at once the doctor flung himself free, seized the heavy headboard of Williams' grave and felled Potter to the earth with it--and in the same instant the half-breed saw his chance and drove the knife to the hilt in the young man's breast. He reeled and fell partly upon Potter, flooding him with his blood, and in the same moment the clouds blotted out the dreadful spectacle and the two frightened boys went speeding away in the dark. Presently, when the moon emerged again, Injun Joe was standing over the two forms, contemplating them. The doctor murmured inarticulately, gave a long gasp or two and was still. The half-breed muttered: "THAT score is settled--damn you." Then he robbed the body. After which he put the fatal knife in Potter's open right hand, and sat down on the dismantled coffin. Three --four--five minutes passed, and then Potter began to stir and moan. His hand closed upon the knife; he raised it, glanced at it, and let it fall, with a shudder. Then he sat up, pushing the body from him, and gazed at it, and then around him, confusedly. His eyes met Joe's. "Lord, how is this, Joe?" he said. "It's a dirty business," said Joe, without moving. "What did you do it for?" "I! I never done it!" "Look here! That kind of talk won't wash." Potter trembled and grew white. "I thought I'd got sober. I'd no business to drink to-night. But it's in my head yet--worse'n when we started here. I'm all in a muddle; can't recollect anything of it, hardly. Tell me, Joe--HONEST, now, old feller--did I do it? Joe, I never meant to--'pon my soul and honor, I never meant to, Joe. Tell me how it was, Joe. Oh, it's awful--and him so young and promising." "Why, you two was scuffling, and he fetched you one with the headboard and you fell flat; and then up you come, all reeling and staggering like, and snatched the knife and jammed it into him, just as he fetched you another awful clip--and here you've laid, as dead as a wedge til now." "Oh, I didn't know what I was a-doing. I wish I may die this minute if I did. It was all on account of the whiskey and the excitement, I reckon. I never used a weepon in my life before, Joe. I've fought, but never with weepons. They'll all say that. Joe, don't tell! Say you won't tell, Joe--that's a good feller. I always liked you, Joe, and stood up for you, too. Don't you remember? You WON'T tell, WILL you, Joe?" And the poor creature dropped on his knees before the stolid murderer, and clasped his appealing hands. "No, you've always been fair and square with me, Muff Potter, and I won't go back on you. There, now, that's as fair as a man can say." "Oh, Joe, you're an angel. I'll bless you for this the longest day I live." And Potter began to cry. "Come, now, that's enough of that. This ain't any time for blubbering. You be off yonder way and I'll go this. Move, now, and don't leave any tracks behind you." Potter started on a trot that quickly increased to a run. The half-breed stood looking after him. He muttered: "If he's as much stunned with the lick and fuddled with the rum as he had the look of being, he won't think of the knife till he's gone so far he'll be afraid to come back after it to such a place by himself --chicken-heart!" Two or three minutes later the murdered man, the blanketed corpse, the lidless coffin, and the open grave were under no inspection but the moon's. The stillness was complete again, too. CHAPTER X THE two boys flew on and on, toward the village, speechless with horror. They glanced backward over their shoulders from time to time, apprehensively, as if they feared they might be followed. Every stump that started up in their path seemed a man and an enemy, and made them catch their breath; and as they sped by some outlying cottages that lay near the village, the barking of the aroused watch-dogs seemed to give wings to their feet. "If we can only get to the old tannery before we break down!" whispered Tom, in short catches between breaths. "I can't stand it much longer." Huckleberry's hard pantings were his only reply, and the boys fixed their eyes on the goal of their hopes and bent to their work to win it. They gained steadily on it, and at last, breast to breast, they burst through the open door and fell grateful and exhausted in the sheltering shadows beyond. By and by their pulses slowed down, and Tom whispered: "Huckleberry, what do you reckon'll come of this?" "If Doctor Robinson dies, I reckon hanging'll come of it." "Do you though?" "Why, I KNOW it, Tom." Tom thought a while, then he said: "Who'll tell? We?" "What are you talking about? S'pose something happened and Injun Joe DIDN'T hang? Why, he'd kill us some time or other, just as dead sure as we're a laying here." "That's just what I was thinking to myself, Huck." "If anybody tells, let Muff Potter do it, if he's fool enough. He's generally drunk enough." Tom said nothing--went on thinking. Presently he whispered: "Huck, Muff Potter don't know it. How can he tell?" "What's the reason he don't know it?" "Because he'd just got that whack when Injun Joe done it. D'you reckon he could see anything? D'you reckon he knowed anything?" "By hokey, that's so, Tom!" "And besides, look-a-here--maybe that whack done for HIM!" "No, 'taint likely, Tom. He had liquor in him; I could see that; and besides, he always has. Well, when pap's full, you might take and belt him over the head with a church and you couldn't phase him. He says so, his own self. So it's the same with Muff Potter, of course. But if a man was dead sober, I reckon maybe that whack might fetch him; I dono." After another reflective silence, Tom said: "Hucky, you sure you can keep mum?" "Tom, we GOT to keep mum. You know that. That Injun devil wouldn't make any more of drownding us than a couple of cats, if we was to squeak 'bout this and they didn't hang him. Now, look-a-here, Tom, less take and swear to one another--that's what we got to do--swear to keep mum." "I'm agreed. It's the best thing. Would you just hold hands and swear that we--" "Oh no, that wouldn't do for this. That's good enough for little rubbishy common things--specially with gals, cuz THEY go back on you anyway, and blab if they get in a huff--but there orter be writing 'bout a big thing like this. And blood." Tom's whole being applauded this idea. It was deep, and dark, and awful; the hour, the circumstances, the surroundings, were in keeping with it. He picked up a clean pine shingle that lay in the moonlight, took a little fragment of "red keel" out of his pocket, got the moon on his work, and painfully scrawled these lines, emphasizing each slow down-stroke by clamping his tongue between his teeth, and letting up the pressure on the up-strokes. [See next page.] "Huck Finn and Tom Sawyer swears they will keep mum about This and They wish They may Drop down dead in Their Tracks if They ever Tell and Rot." Huckleberry was filled with admiration of Tom's facility in writing, and the sublimity of his language. He at once took a pin from his lapel and was going to prick his flesh, but Tom said: "Hold on! Don't do that. A pin's brass. It might have verdigrease on it." "What's verdigrease?" "It's p'ison. That's what it is. You just swaller some of it once --you'll see." So Tom unwound the thread from one of his needles, and each boy pricked the ball of his thumb and squeezed out a drop of blood. In time, after many squeezes, Tom managed to sign his initials, using the ball of his little finger for a pen. Then he showed Huckleberry how to make an H and an F, and the oath was complete. They buried the shingle close to the wall, with some dismal ceremonies and incantations, and the fetters that bound their tongues were considered to be locked and the key thrown away. A figure crept stealthily through a break in the other end of the ruined building, now, but they did not notice it. "Tom," whispered Huckleberry, "does this keep us from EVER telling --ALWAYS?" "Of course it does. It don't make any difference WHAT happens, we got to keep mum. We'd drop down dead--don't YOU know that?" "Yes, I reckon that's so." They continued to whisper for some little time. Presently a dog set up a long, lugubrious howl just outside--within ten feet of them. The boys clasped each other suddenly, in an agony of fright. "Which of us does he mean?" gasped Huckleberry. "I dono--peep through the crack. Quick!" "No, YOU, Tom!" "I can't--I can't DO it, Huck!" "Please, Tom. There 'tis again!" "Oh, lordy, I'm thankful!" whispered Tom. "I know his voice. It's Bull Harbison." * [* If Mr. Harbison owned a slave named Bull, Tom would have spoken of him as "Harbison's Bull," but a son or a dog of that name was "Bull Harbison."] "Oh, that's good--I tell you, Tom, I was most scared to death; I'd a bet anything it was a STRAY dog." The dog howled again. The boys' hearts sank once more. "Oh, my! that ain't no Bull Harbison!" whispered Huckleberry. "DO, Tom!" Tom, quaking with fear, yielded, and put his eye to the crack. His whisper was hardly audible when he said: "Oh, Huck, IT S A STRAY DOG!" "Quick, Tom, quick! Who does he mean?" "Huck, he must mean us both--we're right together." "Oh, Tom, I reckon we're goners. I reckon there ain't no mistake 'bout where I'LL go to. I been so wicked." "Dad fetch it! This comes of playing hookey and doing everything a feller's told NOT to do. I might a been good, like Sid, if I'd a tried --but no, I wouldn't, of course. But if ever I get off this time, I lay I'll just WALLER in Sunday-schools!" And Tom began to snuffle a little. "YOU bad!" and Huckleberry began to snuffle too. "Consound it, Tom Sawyer, you're just old pie, 'longside o' what I am. Oh, LORDY, lordy, lordy, I wisht I only had half your chance." Tom choked off and whispered: "Look, Hucky, look! He's got his BACK to us!" Hucky looked, with joy in his heart. "Well, he has, by jingoes! Did he before?" "Yes, he did. But I, like a fool, never thought. Oh, this is bully, you know. NOW who can he mean?" The howling stopped. Tom pricked up his ears. "Sh! What's that?" he whispered. "Sounds like--like hogs grunting. No--it's somebody snoring, Tom." "That IS it! Where 'bouts is it, Huck?" "I bleeve it's down at 'tother end. Sounds so, anyway. Pap used to sleep there, sometimes, 'long with the hogs, but laws bless you, he just lifts things when HE snores. Besides, I reckon he ain't ever coming back to this town any more." The spirit of adventure rose in the boys' souls once more. "Hucky, do you das't to go if I lead?" "I don't like to, much. Tom, s'pose it's Injun Joe!" Tom quailed. But presently the temptation rose up strong again and the boys agreed to try, with the understanding that they would take to their heels if the snoring stopped. So they went tiptoeing stealthily down, the one behind the other. When they had got to within five steps of the snorer, Tom stepped on a stick, and it broke with a sharp snap. The man moaned, writhed a little, and his face came into the moonlight. It was Muff Potter. The boys' hearts had stood still, and their hopes too, when the man moved, but their fears passed away now. They tiptoed out, through the broken weather-boarding, and stopped at a little distance to exchange a parting word. That long, lugubrious howl rose on the night air again! They turned and saw the strange dog standing within a few feet of where Potter was lying, and FACING Potter, with his nose pointing heavenward. "Oh, geeminy, it's HIM!" exclaimed both boys, in a breath. "Say, Tom--they say a stray dog come howling around Johnny Miller's house, 'bout midnight, as much as two weeks ago; and a whippoorwill come in and lit on the banisters and sung, the very same evening; and there ain't anybody dead there yet." "Well, I know that. And suppose there ain't. Didn't Gracie Miller fall in the kitchen fire and burn herself terrible the very next Saturday?" "Yes, but she ain't DEAD. And what's more, she's getting better, too." "All right, you wait and see. She's a goner, just as dead sure as Muff Potter's a goner. That's what the niggers say, and they know all about these kind of things, Huck." Then they separated, cogitating. When Tom crept in at his bedroom window the night was almost spent. He undressed with excessive caution, and fell asleep congratulating himself that nobody knew of his escapade. He was not aware that the gently-snoring Sid was awake, and had been so for an hour. When Tom awoke, Sid was dressed and gone. There was a late look in the light, a late sense in the atmosphere. He was startled. Why had he not been called--persecuted till he was up, as usual? The thought filled him with bodings. Within five minutes he was dressed and down-stairs, feeling sore and drowsy. The family were still at table, but they had finished breakfast. There was no voice of rebuke; but there were averted eyes; there was a silence and an air of solemnity that struck a chill to the culprit's heart. He sat down and tried to seem gay, but it was up-hill work; it roused no smile, no response, and he lapsed into silence and let his heart sink down to the depths. After breakfast his aunt took him aside, and Tom almost brightened in the hope that he was going to be flogged; but it was not so. His aunt wept over him and asked him how he could go and break her old heart so; and finally told him to go on, and ruin himself and bring her gray hairs with sorrow to the grave, for it was no use for her to try any more. This was worse than a thousand whippings, and Tom's heart was sorer now than his body. He cried, he pleaded for forgiveness, promised to reform over and over again, and then received his dismissal, feeling that he had won but an imperfect forgiveness and established but a feeble confidence. He left the presence too miserable to even feel revengeful toward Sid; and so the latter's prompt retreat through the back gate was unnecessary. He moped to school gloomy and sad, and took his flogging, along with Joe Harper, for playing hookey the day before, with the air of one whose heart was busy with heavier woes and wholly dead to trifles. Then he betook himself to his seat, rested his elbows on his desk and his jaws in his hands, and stared at the wall with the stony stare of suffering that has reached the limit and can no further go. His elbow was pressing against some hard substance. After a long time he slowly and sadly changed his position, and took up this object with a sigh. It was in a paper. He unrolled it. A long, lingering, colossal sigh followed, and his heart broke. It was his brass andiron knob! This final feather broke the camel's back. CHAPTER XI CLOSE upon the hour of noon the whole village was suddenly electrified with the ghastly news. No need of the as yet undreamed-of telegraph; the tale flew from man to man, from group to group, from house to house, with little less than telegraphic speed. Of course the schoolmaster gave holiday for that afternoon; the town would have thought strangely of him if he had not. A gory knife had been found close to the murdered man, and it had been recognized by somebody as belonging to Muff Potter--so the story ran. And it was said that a belated citizen had come upon Potter washing himself in the "branch" about one or two o'clock in the morning, and that Potter had at once sneaked off--suspicious circumstances, especially the washing which was not a habit with Potter. It was also said that the town had been ransacked for this "murderer" (the public are not slow in the matter of sifting evidence and arriving at a verdict), but that he could not be found. Horsemen had departed down all the roads in every direction, and the Sheriff "was confident" that he would be captured before night. All the town was drifting toward the graveyard. Tom's heartbreak vanished and he joined the procession, not because he would not a thousand times rather go anywhere else, but because an awful, unaccountable fascination drew him on. Arrived at the dreadful place, he wormed his small body through the crowd and saw the dismal spectacle. It seemed to him an age since he was there before. Somebody pinched his arm. He turned, and his eyes met Huckleberry's. Then both looked elsewhere at once, and wondered if anybody had noticed anything in their mutual glance. But everybody was talking, and intent upon the grisly spectacle before them. "Poor fellow!" "Poor young fellow!" "This ought to be a lesson to grave robbers!" "Muff Potter'll hang for this if they catch him!" This was the drift of remark; and the minister said, "It was a judgment; His hand is here." Now Tom shivered from head to heel; for his eye fell upon the stolid face of Injun Joe. At this moment the crowd began to sway and struggle, and voices shouted, "It's him! it's him! he's coming himself!" "Who? Who?" from twenty voices. "Muff Potter!" "Hallo, he's stopped!--Look out, he's turning! Don't let him get away!" People in the branches of the trees over Tom's head said he wasn't trying to get away--he only looked doubtful and perplexed. "Infernal impudence!" said a bystander; "wanted to come and take a quiet look at his work, I reckon--didn't expect any company." The crowd fell apart, now, and the Sheriff came through, ostentatiously leading Potter by the arm. The poor fellow's face was haggard, and his eyes showed the fear that was upon him. When he stood before the murdered man, he shook as with a palsy, and he put his face in his hands and burst into tears. "I didn't do it, friends," he sobbed; "'pon my word and honor I never done it." "Who's accused you?" shouted a voice. This shot seemed to carry home. Potter lifted his face and looked around him with a pathetic hopelessness in his eyes. He saw Injun Joe, and exclaimed: "Oh, Injun Joe, you promised me you'd never--" "Is that your knife?" and it was thrust before him by the Sheriff. Potter would have fallen if they had not caught him and eased him to the ground. Then he said: "Something told me 't if I didn't come back and get--" He shuddered; then waved his nerveless hand with a vanquished gesture and said, "Tell 'em, Joe, tell 'em--it ain't any use any more." Then Huckleberry and Tom stood dumb and staring, and heard the stony-hearted liar reel off his serene statement, they expecting every moment that the clear sky would deliver God's lightnings upon his head, and wondering to see how long the stroke was delayed. And when he had finished and still stood alive and whole, their wavering impulse to break their oath and save the poor betrayed prisoner's life faded and vanished away, for plainly this miscreant had sold himself to Satan and it would be fatal to meddle with the property of such a power as that. "Why didn't you leave? What did you want to come here for?" somebody said. "I couldn't help it--I couldn't help it," Potter moaned. "I wanted to run away, but I couldn't seem to come anywhere but here." And he fell to sobbing again. Injun Joe repeated his statement, just as calmly, a few minutes afterward on the inquest, under oath; and the boys, seeing that the lightnings were still withheld, were confirmed in their belief that Joe had sold himself to the devil. He was now become, to them, the most balefully interesting object they had ever looked upon, and they could not take their fascinated eyes from his face. They inwardly resolved to watch him nights, when opportunity should offer, in the hope of getting a glimpse of his dread master. Injun Joe helped to raise the body of the murdered man and put it in a wagon for removal; and it was whispered through the shuddering crowd that the wound bled a little! The boys thought that this happy circumstance would turn suspicion in the right direction; but they were disappointed, for more than one villager remarked: "It was within three feet of Muff Potter when it done it." Tom's fearful secret and gnawing conscience disturbed his sleep for as much as a week after this; and at breakfast one morning Sid said: "Tom, you pitch around and talk in your sleep so much that you keep me awake half the time." Tom blanched and dropped his eyes. "It's a bad sign," said Aunt Polly, gravely. "What you got on your mind, Tom?" "Nothing. Nothing 't I know of." But the boy's hand shook so that he spilled his coffee. "And you do talk such stuff," Sid said. "Last night you said, 'It's blood, it's blood, that's what it is!' You said that over and over. And you said, 'Don't torment me so--I'll tell!' Tell WHAT? What is it you'll tell?" Everything was swimming before Tom. There is no telling what might have happened, now, but luckily the concern passed out of Aunt Polly's face and she came to Tom's relief without knowing it. She said: "Sho! It's that dreadful murder. I dream about it most every night myself. Sometimes I dream it's me that done it." Mary said she had been affected much the same way. Sid seemed satisfied. Tom got out of the presence as quick as he plausibly could, and after that he complained of toothache for a week, and tied up his jaws every night. He never knew that Sid lay nightly watching, and frequently slipped the bandage free and then leaned on his elbow listening a good while at a time, and afterward slipped the bandage back to its place again. Tom's distress of mind wore off gradually and the toothache grew irksome and was discarded. If Sid really managed to make anything out of Tom's disjointed mutterings, he kept it to himself. It seemed to Tom that his schoolmates never would get done holding inquests on dead cats, and thus keeping his trouble present to his mind. Sid noticed that Tom never was coroner at one of these inquiries, though it had been his habit to take the lead in all new enterprises; he noticed, too, that Tom never acted as a witness--and that was strange; and Sid did not overlook the fact that Tom even showed a marked aversion to these inquests, and always avoided them when he could. Sid marvelled, but said nothing. However, even inquests went out of vogue at last, and ceased to torture Tom's conscience. Every day or two, during this time of sorrow, Tom watched his opportunity and went to the little grated jail-window and smuggled such small comforts through to the "murderer" as he could get hold of. The jail was a trifling little brick den that stood in a marsh at the edge of the village, and no guards were afforded for it; indeed, it was seldom occupied. These offerings greatly helped to ease Tom's conscience. The villagers had a strong desire to tar-and-feather Injun Joe and ride him on a rail, for body-snatching, but so formidable was his character that nobody could be found who was willing to take the lead in the matter, so it was dropped. He had been careful to begin both of his inquest-statements with the fight, without confessing the grave-robbery that preceded it; therefore it was deemed wisest not to try the case in the courts at present. CHAPTER XII ONE of the reasons why Tom's mind had drifted away from its secret troubles was, that it had found a new and weighty matter to interest itself about. Becky Thatcher had stopped coming to school. Tom had struggled with his pride a few days, and tried to "whistle her down the wind," but failed. He began to find himself hanging around her father's house, nights, and feeling very miserable. She was ill. What if she should die! There was distraction in the thought. He no longer took an interest in war, nor even in piracy. The charm of life was gone; there was nothing but dreariness left. He put his hoop away, and his bat; there was no joy in them any more. His aunt was concerned. She began to try all manner of remedies on him. She was one of those people who are infatuated with patent medicines and all new-fangled methods of producing health or mending it. She was an inveterate experimenter in these things. When something fresh in this line came out she was in a fever, right away, to try it; not on herself, for she was never ailing, but on anybody else that came handy. She was a subscriber for all the "Health" periodicals and phrenological frauds; and the solemn ignorance they were inflated with was breath to her nostrils. All the "rot" they contained about ventilation, and how to go to bed, and how to get up, and what to eat, and what to drink, and how much exercise to take, and what frame of mind to keep one's self in, and what sort of clothing to wear, was all gospel to her, and she never observed that her health-journals of the current month customarily upset everything they had recommended the month before. She was as simple-hearted and honest as the day was long, and so she was an easy victim. She gathered together her quack periodicals and her quack medicines, and thus armed with death, went about on her pale horse, metaphorically speaking, with "hell following after." But she never suspected that she was not an angel of healing and the balm of Gilead in disguise, to the suffering neighbors. The water treatment was new, now, and Tom's low condition was a windfall to her. She had him out at daylight every morning, stood him up in the woodshed and drowned him with a deluge of cold water; then she scrubbed him down with a towel like a file, and so brought him to; then she rolled him up in a wet sheet and put him away under blankets till she sweated his soul clean and "the yellow stains of it came through his pores"--as Tom said. Yet notwithstanding all this, the boy grew more and more melancholy and pale and dejected. She added hot baths, sitz baths, shower baths, and plunges. The boy remained as dismal as a hearse. She began to assist the water with a slim oatmeal diet and blister-plasters. She calculated his capacity as she would a jug's, and filled him up every day with quack cure-alls. Tom had become indifferent to persecution by this time. This phase filled the old lady's heart with consternation. This indifference must be broken up at any cost. Now she heard of Pain-killer for the first time. She ordered a lot at once. She tasted it and was filled with gratitude. It was simply fire in a liquid form. She dropped the water treatment and everything else, and pinned her faith to Pain-killer. She gave Tom a teaspoonful and watched with the deepest anxiety for the result. Her troubles were instantly at rest, her soul at peace again; for the "indifference" was broken up. The boy could not have shown a wilder, heartier interest, if she had built a fire under him. Tom felt that it was time to wake up; this sort of life might be romantic enough, in his blighted condition, but it was getting to have too little sentiment and too much distracting variety about it. So he thought over various plans for relief, and finally hit pon that of professing to be fond of Pain-killer. He asked for it so often that he became a nuisance, and his aunt ended by telling him to help himself and quit bothering her. If it had been Sid, she would have had no misgivings to alloy her delight; but since it was Tom, she watched the bottle clandestinely. She found that the medicine did really diminish, but it did not occur to her that the boy was mending the health of a crack in the sitting-room floor with it. One day Tom was in the act of dosing the crack when his aunt's yellow cat came along, purring, eying the teaspoon avariciously, and begging for a taste. Tom said: "Don't ask for it unless you want it, Peter." But Peter signified that he did want it. "You better make sure." Peter was sure. "Now you've asked for it, and I'll give it to you, because there ain't anything mean about me; but if you find you don't like it, you mustn't blame anybody but your own self." Peter was agreeable. So Tom pried his mouth open and poured down the Pain-killer. Peter sprang a couple of yards in the air, and then delivered a war-whoop and set off round and round the room, banging against furniture, upsetting flower-pots, and making general havoc. Next he rose on his hind feet and pranced around, in a frenzy of enjoyment, with his head over his shoulder and his voice proclaiming his unappeasable happiness. Then he went tearing around the house again spreading chaos and destruction in his path. Aunt Polly entered in time to see him throw a few double summersets, deliver a final mighty hurrah, and sail through the open window, carrying the rest of the flower-pots with him. The old lady stood petrified with astonishment, peering over her glasses; Tom lay on the floor expiring with laughter. "Tom, what on earth ails that cat?" "I don't know, aunt," gasped the boy. "Why, I never see anything like it. What did make him act so?" "Deed I don't know, Aunt Polly; cats always act so when they're having a good time." "They do, do they?" There was something in the tone that made Tom apprehensive. "Yes'm. That is, I believe they do." "You DO?" "Yes'm." The old lady was bending down, Tom watching, with interest emphasized by anxiety. Too late he divined her "drift." The handle of the telltale teaspoon was visible under the bed-valance. Aunt Polly took it, held it up. Tom winced, and dropped his eyes. Aunt Polly raised him by the usual handle--his ear--and cracked his head soundly with her thimble. "Now, sir, what did you want to treat that poor dumb beast so, for?" "I done it out of pity for him--because he hadn't any aunt." "Hadn't any aunt!--you numskull. What has that got to do with it?" "Heaps. Because if he'd had one she'd a burnt him out herself! She'd a roasted his bowels out of him 'thout any more feeling than if he was a human!" Aunt Polly felt a sudden pang of remorse. This was putting the thing in a new light; what was cruelty to a cat MIGHT be cruelty to a boy, too. She began to soften; she felt sorry. Her eyes watered a little, and she put her hand on Tom's head and said gently: "I was meaning for the best, Tom. And, Tom, it DID do you good." Tom looked up in her face with just a perceptible twinkle peeping through his gravity. "I know you was meaning for the best, aunty, and so was I with Peter. It done HIM good, too. I never see him get around so since--" "Oh, go 'long with you, Tom, before you aggravate me again. And you try and see if you can't be a good boy, for once, and you needn't take any more medicine." Tom reached school ahead of time. It was noticed that this strange thing had been occurring every day latterly. And now, as usual of late, he hung about the gate of the schoolyard instead of playing with his comrades. He was sick, he said, and he looked it. He tried to seem to be looking everywhere but whither he really was looking--down the road. Presently Jeff Thatcher hove in sight, and Tom's face lighted; he gazed a moment, and then turned sorrowfully away. When Jeff arrived, Tom accosted him; and "led up" warily to opportunities for remark about Becky, but the giddy lad never could see the bait. Tom watched and watched, hoping whenever a frisking frock came in sight, and hating the owner of it as soon as he saw she was not the right one. At last frocks ceased to appear, and he dropped hopelessly into the dumps; he entered the empty schoolhouse and sat down to suffer. Then one more frock passed in at the gate, and Tom's heart gave a great bound. The next instant he was out, and "going on" like an Indian; yelling, laughing, chasing boys, jumping over the fence at risk of life and limb, throwing handsprings, standing on his head--doing all the heroic things he could conceive of, and keeping a furtive eye out, all the while, to see if Becky Thatcher was noticing. But she seemed to be unconscious of it all; she never looked. Could it be possible that she was not aware that he was there? He carried his exploits to her immediate vicinity; came war-whooping around, snatched a boy's cap, hurled it to the roof of the schoolhouse, broke through a group of boys, tumbling them in every direction, and fell sprawling, himself, under Becky's nose, almost upsetting her--and she turned, with her nose in the air, and he heard her say: "Mf! some people think they're mighty smart--always showing off!" Tom's cheeks burned. He gathered himself up and sneaked off, crushed and crestfallen. CHAPTER XIII TOM'S mind was made up now. He was gloomy and desperate. He was a forsaken, friendless boy, he said; nobody loved him; when they found out what they had driven him to, perhaps they would be sorry; he had tried to do right and get along, but they would not let him; since nothing would do them but to be rid of him, let it be so; and let them blame HIM for the consequences--why shouldn't they? What right had the friendless to complain? Yes, they had forced him to it at last: he would lead a life of crime. There was no choice. By this time he was far down Meadow Lane, and the bell for school to "take up" tinkled faintly upon his ear. He sobbed, now, to think he should never, never hear that old familiar sound any more--it was very hard, but it was forced on him; since he was driven out into the cold world, he must submit--but he forgave them. Then the sobs came thick and fast. Just at this point he met his soul's sworn comrade, Joe Harper --hard-eyed, and with evidently a great and dismal purpose in his heart. Plainly here were "two souls with but a single thought." Tom, wiping his eyes with his sleeve, began to blubber out something about a resolution to escape from hard usage and lack of sympathy at home by roaming abroad into the great world never to return; and ended by hoping that Joe would not forget him. But it transpired that this was a request which Joe had just been going to make of Tom, and had come to hunt him up for that purpose. His mother had whipped him for drinking some cream which he had never tasted and knew nothing about; it was plain that she was tired of him and wished him to go; if she felt that way, there was nothing for him to do but succumb; he hoped she would be happy, and never regret having driven her poor boy out into the unfeeling world to suffer and die. As the two boys walked sorrowing along, they made a new compact to stand by each other and be brothers and never separate till death relieved them of their troubles. Then they began to lay their plans. Joe was for being a hermit, and living on crusts in a remote cave, and dying, some time, of cold and want and grief; but after listening to Tom, he conceded that there were some conspicuous advantages about a life of crime, and so he consented to be a pirate. Three miles below St. Petersburg, at a point where the Mississippi River was a trifle over a mile wide, there was a long, narrow, wooded island, with a shallow bar at the head of it, and this offered well as a rendezvous. It was not inhabited; it lay far over toward the further shore, abreast a dense and almost wholly unpeopled forest. So Jackson's Island was chosen. Who were to be the subjects of their piracies was a matter that did not occur to them. Then they hunted up Huckleberry Finn, and he joined them promptly, for all careers were one to him; he was indifferent. They presently separated to meet at a lonely spot on the river-bank two miles above the village at the favorite hour--which was midnight. There was a small log raft there which they meant to capture. Each would bring hooks and lines, and such provision as he could steal in the most dark and mysterious way--as became outlaws. And before the afternoon was done, they had all managed to enjoy the sweet glory of spreading the fact that pretty soon the town would "hear something." All who got this vague hint were cautioned to "be mum and wait." About midnight Tom arrived with a boiled ham and a few trifles, and stopped in a dense undergrowth on a small bluff overlooking the meeting-place. It was starlight, and very still. The mighty river lay like an ocean at rest. Tom listened a moment, but no sound disturbed the quiet. Then he gave a low, distinct whistle. It was answered from under the bluff. Tom whistled twice more; these signals were answered in the same way. Then a guarded voice said: "Who goes there?" "Tom Sawyer, the Black Avenger of the Spanish Main. Name your names." "Huck Finn the Red-Handed, and Joe Harper the Terror of the Seas." Tom had furnished these titles, from his favorite literature. "'Tis well. Give the countersign." Two hoarse whispers delivered the same awful word simultaneously to the brooding night: "BLOOD!" Then Tom tumbled his ham over the bluff and let himself down after it, tearing both skin and clothes to some extent in the effort. There was an easy, comfortable path along the shore under the bluff, but it lacked the advantages of difficulty and danger so valued by a pirate. The Terror of the Seas had brought a side of bacon, and had about worn himself out with getting it there. Finn the Red-Handed had stolen a skillet and a quantity of half-cured leaf tobacco, and had also brought a few corn-cobs to make pipes with. But none of the pirates smoked or "chewed" but himself. The Black Avenger of the Spanish Main said it would never do to start without some fire. That was a wise thought; matches were hardly known there in that day. They saw a fire smouldering upon a great raft a hundred yards above, and they went stealthily thither and helped themselves to a chunk. They made an imposing adventure of it, saying, "Hist!" every now and then, and suddenly halting with finger on lip; moving with hands on imaginary dagger-hilts; and giving orders in dismal whispers that if "the foe" stirred, to "let him have it to the hilt," because "dead men tell no tales." They knew well enough that the raftsmen were all down at the village laying in stores or having a spree, but still that was no excuse for their conducting this thing in an unpiratical way. They shoved off, presently, Tom in command, Huck at the after oar and Joe at the forward. Tom stood amidships, gloomy-browed, and with folded arms, and gave his orders in a low, stern whisper: "Luff, and bring her to the wind!" "Aye-aye, sir!" "Steady, steady-y-y-y!" "Steady it is, sir!" "Let her go off a point!" "Point it is, sir!" As the boys steadily and monotonously drove the raft toward mid-stream it was no doubt understood that these orders were given only for "style," and were not intended to mean anything in particular. "What sail's she carrying?" "Courses, tops'ls, and flying-jib, sir." "Send the r'yals up! Lay out aloft, there, half a dozen of ye --foretopmaststuns'l! Lively, now!" "Aye-aye, sir!" "Shake out that maintogalans'l! Sheets and braces! NOW my hearties!" "Aye-aye, sir!" "Hellum-a-lee--hard a port! Stand by to meet her when she comes! Port, port! NOW, men! With a will! Stead-y-y-y!" "Steady it is, sir!" The raft drew beyond the middle of the river; the boys pointed her head right, and then lay on their oars. The river was not high, so there was not more than a two or three mile current. Hardly a word was said during the next three-quarters of an hour. Now the raft was passing before the distant town. Two or three glimmering lights showed where it lay, peacefully sleeping, beyond the vague vast sweep of star-gemmed water, unconscious of the tremendous event that was happening. The Black Avenger stood still with folded arms, "looking his last" upon the scene of his former joys and his later sufferings, and wishing "she" could see him now, abroad on the wild sea, facing peril and death with dauntless heart, going to his doom with a grim smile on his lips. It was but a small strain on his imagination to remove Jackson's Island beyond eyeshot of the village, and so he "looked his last" with a broken and satisfied heart. The other pirates were looking their last, too; and they all looked so long that they came near letting the current drift them out of the range of the island. But they discovered the danger in time, and made shift to avert it. About two o'clock in the morning the raft grounded on the bar two hundred yards above the head of the island, and they waded back and forth until they had landed their freight. Part of the little raft's belongings consisted of an old sail, and this they spread over a nook in the bushes for a tent to shelter their provisions; but they themselves would sleep in the open air in good weather, as became outlaws. They built a fire against the side of a great log twenty or thirty steps within the sombre depths of the forest, and then cooked some bacon in the frying-pan for supper, and used up half of the corn "pone" stock they had brought. It seemed glorious sport to be feasting in that wild, free way in the virgin forest of an unexplored and uninhabited island, far from the haunts of men, and they said they never would return to civilization. The climbing fire lit up their faces and threw its ruddy glare upon the pillared tree-trunks of their forest temple, and upon the varnished foliage and festooning vines. When the last crisp slice of bacon was gone, and the last allowance of corn pone devoured, the boys stretched themselves out on the grass, filled with contentment. They could have found a cooler place, but they would not deny themselves such a romantic feature as the roasting camp-fire. "AIN'T it gay?" said Joe. "It's NUTS!" said Tom. "What would the boys say if they could see us?" "Say? Well, they'd just die to be here--hey, Hucky!" "I reckon so," said Huckleberry; "anyways, I'm suited. I don't want nothing better'n this. I don't ever get enough to eat, gen'ally--and here they can't come and pick at a feller and bullyrag him so." "It's just the life for me," said Tom. "You don't have to get up, mornings, and you don't have to go to school, and wash, and all that blame foolishness. You see a pirate don't have to do ANYTHING, Joe, when he's ashore, but a hermit HE has to be praying considerable, and then he don't have any fun, anyway, all by himself that way." "Oh yes, that's so," said Joe, "but I hadn't thought much about it, you know. I'd a good deal rather be a pirate, now that I've tried it." "You see," said Tom, "people don't go much on hermits, nowadays, like they used to in old times, but a pirate's always respected. And a hermit's got to sleep on the hardest place he can find, and put sackcloth and ashes on his head, and stand out in the rain, and--" "What does he put sackcloth and ashes on his head for?" inquired Huck. "I dono. But they've GOT to do it. Hermits always do. You'd have to do that if you was a hermit." "Dern'd if I would," said Huck. "Well, what would you do?" "I dono. But I wouldn't do that." "Why, Huck, you'd HAVE to. How'd you get around it?" "Why, I just wouldn't stand it. I'd run away." "Run away! Well, you WOULD be a nice old slouch of a hermit. You'd be a disgrace." The Red-Handed made no response, being better employed. He had finished gouging out a cob, and now he fitted a weed stem to it, loaded it with tobacco, and was pressing a coal to the charge and blowing a cloud of fragrant smoke--he was in the full bloom of luxurious contentment. The other pirates envied him this majestic vice, and secretly resolved to acquire it shortly. Presently Huck said: "What does pirates have to do?" Tom said: "Oh, they have just a bully time--take ships and burn them, and get the money and bury it in awful places in their island where there's ghosts and things to watch it, and kill everybody in the ships--make 'em walk a plank." "And they carry the women to the island," said Joe; "they don't kill the women." "No," assented Tom, "they don't kill the women--they're too noble. And the women's always beautiful, too. "And don't they wear the bulliest clothes! Oh no! All gold and silver and di'monds," said Joe, with enthusiasm. "Who?" said Huck. "Why, the pirates." Huck scanned his own clothing forlornly. "I reckon I ain't dressed fitten for a pirate," said he, with a regretful pathos in his voice; "but I ain't got none but these." But the other boys told him the fine clothes would come fast enough, after they should have begun their adventures. They made him understand that his poor rags would do to begin with, though it was customary for wealthy pirates to start with a proper wardrobe. Gradually their talk died out and drowsiness began to steal upon the eyelids of the little waifs. The pipe dropped from the fingers of the Red-Handed, and he slept the sleep of the conscience-free and the weary. The Terror of the Seas and the Black Avenger of the Spanish Main had more difficulty in getting to sleep. They said their prayers inwardly, and lying down, since there was nobody there with authority to make them kneel and recite aloud; in truth, they had a mind not to say them at all, but they were afraid to proceed to such lengths as that, lest they might call down a sudden and special thunderbolt from heaven. Then at once they reached and hovered upon the imminent verge of sleep--but an intruder came, now, that would not "down." It was conscience. They began to feel a vague fear that they had been doing wrong to run away; and next they thought of the stolen meat, and then the real torture came. They tried to argue it away by reminding conscience that they had purloined sweetmeats and apples scores of times; but conscience was not to be appeased by such thin plausibilities; it seemed to them, in the end, that there was no getting around the stubborn fact that taking sweetmeats was only "hooking," while taking bacon and hams and such valuables was plain simple stealing--and there was a command against that in the Bible. So they inwardly resolved that so long as they remained in the business, their piracies should not again be sullied with the crime of stealing. Then conscience granted a truce, and these curiously inconsistent pirates fell peacefully to sleep. CHAPTER XIV WHEN Tom awoke in the morning, he wondered where he was. He sat up and rubbed his eyes and looked around. Then he comprehended. It was the cool gray dawn, and there was a delicious sense of repose and peace in the deep pervading calm and silence of the woods. Not a leaf stirred; not a sound obtruded upon great Nature's meditation. Beaded dewdrops stood upon the leaves and grasses. A white layer of ashes covered the fire, and a thin blue breath of smoke rose straight into the air. Joe and Huck still slept. Now, far away in the woods a bird called; another answered; presently the hammering of a woodpecker was heard. Gradually the cool dim gray of the morning whitened, and as gradually sounds multiplied and life manifested itself. The marvel of Nature shaking off sleep and going to work unfolded itself to the musing boy. A little green worm came crawling over a dewy leaf, lifting two-thirds of his body into the air from time to time and "sniffing around," then proceeding again--for he was measuring, Tom said; and when the worm approached him, of its own accord, he sat as still as a stone, with his hopes rising and falling, by turns, as the creature still came toward him or seemed inclined to go elsewhere; and when at last it considered a painful moment with its curved body in the air and then came decisively down upon Tom's leg and began a journey over him, his whole heart was glad--for that meant that he was going to have a new suit of clothes--without the shadow of a doubt a gaudy piratical uniform. Now a procession of ants appeared, from nowhere in particular, and went about their labors; one struggled manfully by with a dead spider five times as big as itself in its arms, and lugged it straight up a tree-trunk. A brown spotted lady-bug climbed the dizzy height of a grass blade, and Tom bent down close to it and said, "Lady-bug, lady-bug, fly away home, your house is on fire, your children's alone," and she took wing and went off to see about it --which did not surprise the boy, for he knew of old that this insect was credulous about conflagrations, and he had practised upon its simplicity more than once. A tumblebug came next, heaving sturdily at its ball, and Tom touched the creature, to see it shut its legs against its body and pretend to be dead. The birds were fairly rioting by this time. A catbird, the Northern mocker, lit in a tree over Tom's head, and trilled out her imitations of her neighbors in a rapture of enjoyment; then a shrill jay swept down, a flash of blue flame, and stopped on a twig almost within the boy's reach, cocked his head to one side and eyed the strangers with a consuming curiosity; a gray squirrel and a big fellow of the "fox" kind came skurrying along, sitting up at intervals to inspect and chatter at the boys, for the wild things had probably never seen a human being before and scarcely knew whether to be afraid or not. All Nature was wide awake and stirring, now; long lances of sunlight pierced down through the dense foliage far and near, and a few butterflies came fluttering upon the scene. Tom stirred up the other pirates and they all clattered away with a shout, and in a minute or two were stripped and chasing after and tumbling over each other in the shallow limpid water of the white sandbar. They felt no longing for the little village sleeping in the distance beyond the majestic waste of water. A vagrant current or a slight rise in the river had carried off their raft, but this only gratified them, since its going was something like burning the bridge between them and civilization. They came back to camp wonderfully refreshed, glad-hearted, and ravenous; and they soon had the camp-fire blazing up again. Huck found a spring of clear cold water close by, and the boys made cups of broad oak or hickory leaves, and felt that water, sweetened with such a wildwood charm as that, would be a good enough substitute for coffee. While Joe was slicing bacon for breakfast, Tom and Huck asked him to hold on a minute; they stepped to a promising nook in the river-bank and threw in their lines; almost immediately they had reward. Joe had not had time to get impatient before they were back again with some handsome bass, a couple of sun-perch and a small catfish--provisions enough for quite a family. They fried the fish with the bacon, and were astonished; for no fish had ever seemed so delicious before. They did not know that the quicker a fresh-water fish is on the fire after he is caught the better he is; and they reflected little upon what a sauce open-air sleeping, open-air exercise, bathing, and a large ingredient of hunger make, too. They lay around in the shade, after breakfast, while Huck had a smoke, and then went off through the woods on an exploring expedition. They tramped gayly along, over decaying logs, through tangled underbrush, among solemn monarchs of the forest, hung from their crowns to the ground with a drooping regalia of grape-vines. Now and then they came upon snug nooks carpeted with grass and jeweled with flowers. They found plenty of things to be delighted with, but nothing to be astonished at. They discovered that the island was about three miles long and a quarter of a mile wide, and that the shore it lay closest to was only separated from it by a narrow channel hardly two hundred yards wide. They took a swim about every hour, so it was close upon the middle of the afternoon when they got back to camp. They were too hungry to stop to fish, but they fared sumptuously upon cold ham, and then threw themselves down in the shade to talk. But the talk soon began to drag, and then died. The stillness, the solemnity that brooded in the woods, and the sense of loneliness, began to tell upon the spirits of the boys. They fell to thinking. A sort of undefined longing crept upon them. This took dim shape, presently--it was budding homesickness. Even Finn the Red-Handed was dreaming of his doorsteps and empty hogsheads. But they were all ashamed of their weakness, and none was brave enough to speak his thought. For some time, now, the boys had been dully conscious of a peculiar sound in the distance, just as one sometimes is of the ticking of a clock which he takes no distinct note of. But now this mysterious sound became more pronounced, and forced a recognition. The boys started, glanced at each other, and then each assumed a listening attitude. There was a long silence, profound and unbroken; then a deep, sullen boom came floating down out of the distance. "What is it!" exclaimed Joe, under his breath. "I wonder," said Tom in a whisper. "'Tain't thunder," said Huckleberry, in an awed tone, "becuz thunder--" "Hark!" said Tom. "Listen--don't talk." They waited a time that seemed an age, and then the same muffled boom troubled the solemn hush. "Let's go and see." They sprang to their feet and hurried to the shore toward the town. They parted the bushes on the bank and peered out over the water. The little steam ferryboat was about a mile below the village, drifting with the current. Her broad deck seemed crowded with people. There were a great many skiffs rowing about or floating with the stream in the neighborhood of the ferryboat, but the boys could not determine what the men in them were doing. Presently a great jet of white smoke burst from the ferryboat's side, and as it expanded and rose in a lazy cloud, that same dull throb of sound was borne to the listeners again. "I know now!" exclaimed Tom; "somebody's drownded!" "That's it!" said Huck; "they done that last summer, when Bill Turner got drownded; they shoot a cannon over the water, and that makes him come up to the top. Yes, and they take loaves of bread and put quicksilver in 'em and set 'em afloat, and wherever there's anybody that's drownded, they'll float right there and stop." "Yes, I've heard about that," said Joe. "I wonder what makes the bread do that." "Oh, it ain't the bread, so much," said Tom; "I reckon it's mostly what they SAY over it before they start it out." "But they don't say anything over it," said Huck. "I've seen 'em and they don't." "Well, that's funny," said Tom. "But maybe they say it to themselves. Of COURSE they do. Anybody might know that." The other boys agreed that there was reason in what Tom said, because an ignorant lump of bread, uninstructed by an incantation, could not be expected to act very intelligently when set upon an errand of such gravity. "By jings, I wish I was over there, now," said Joe. "I do too" said Huck "I'd give heaps to know who it is." The boys still listened and watched. Presently a revealing thought flashed through Tom's mind, and he exclaimed: "Boys, I know who's drownded--it's us!" They felt like heroes in an instant. Here was a gorgeous triumph; they were missed; they were mourned; hearts were breaking on their account; tears were being shed; accusing memories of unkindness to these poor lost lads were rising up, and unavailing regrets and remorse were being indulged; and best of all, the departed were the talk of the whole town, and the envy of all the boys, as far as this dazzling notoriety was concerned. This was fine. It was worth while to be a pirate, after all. As twilight drew on, the ferryboat went back to her accustomed business and the skiffs disappeared. The pirates returned to camp. They were jubilant with vanity over their new grandeur and the illustrious trouble they were making. They caught fish, cooked supper and ate it, and then fell to guessing at what the village was thinking and saying about them; and the pictures they drew of the public distress on their account were gratifying to look upon--from their point of view. But when the shadows of night closed them in, they gradually ceased to talk, and sat gazing into the fire, with their minds evidently wandering elsewhere. The excitement was gone, now, and Tom and Joe could not keep back thoughts of certain persons at home who were not enjoying this fine frolic as much as they were. Misgivings came; they grew troubled and unhappy; a sigh or two escaped, unawares. By and by Joe timidly ventured upon a roundabout "feeler" as to how the others might look upon a return to civilization--not right now, but-- Tom withered him with derision! Huck, being uncommitted as yet, joined in with Tom, and the waverer quickly "explained," and was glad to get out of the scrape with as little taint of chicken-hearted homesickness clinging to his garments as he could. Mutiny was effectually laid to rest for the moment. As the night deepened, Huck began to nod, and presently to snore. Joe followed next. Tom lay upon his elbow motionless, for some time, watching the two intently. At last he got up cautiously, on his knees, and went searching among the grass and the flickering reflections flung by the camp-fire. He picked up and inspected several large semi-cylinders of the thin white bark of a sycamore, and finally chose two which seemed to suit him. Then he knelt by the fire and painfully wrote something upon each of these with his "red keel"; one he rolled up and put in his jacket pocket, and the other he put in Joe's hat and removed it to a little distance from the owner. And he also put into the hat certain schoolboy treasures of almost inestimable value--among them a lump of chalk, an India-rubber ball, three fishhooks, and one of that kind of marbles known as a "sure 'nough crystal." Then he tiptoed his way cautiously among the trees till he felt that he was out of hearing, and straightway broke into a keen run in the direction of the sandbar. CHAPTER XV A FEW minutes later Tom was in the shoal water of the bar, wading toward the Illinois shore. Before the depth reached his middle he was half-way over; the current would permit no more wading, now, so he struck out confidently to swim the remaining hundred yards. He swam quartering upstream, but still was swept downward rather faster than he had expected. However, he reached the shore finally, and drifted along till he found a low place and drew himself out. He put his hand on his jacket pocket, found his piece of bark safe, and then struck through the woods, following the shore, with streaming garments. Shortly before ten o'clock he came out into an open place opposite the village, and saw the ferryboat lying in the shadow of the trees and the high bank. Everything was quiet under the blinking stars. He crept down the bank, watching with all his eyes, slipped into the water, swam three or four strokes and climbed into the skiff that did "yawl" duty at the boat's stern. He laid himself down under the thwarts and waited, panting. Presently the cracked bell tapped and a voice gave the order to "cast off." A minute or two later the skiff's head was standing high up, against the boat's swell, and the voyage was begun. Tom felt happy in his success, for he knew it was the boat's last trip for the night. At the end of a long twelve or fifteen minutes the wheels stopped, and Tom slipped overboard and swam ashore in the dusk, landing fifty yards downstream, out of danger of possible stragglers. He flew along unfrequented alleys, and shortly found himself at his aunt's back fence. He climbed over, approached the "ell," and looked in at the sitting-room window, for a light was burning there. There sat Aunt Polly, Sid, Mary, and Joe Harper's mother, grouped together, talking. They were by the bed, and the bed was between them and the door. Tom went to the door and began to softly lift the latch; then he pressed gently and the door yielded a crack; he continued pushing cautiously, and quaking every time it creaked, till he judged he might squeeze through on his knees; so he put his head through and began, warily. "What makes the candle blow so?" said Aunt Polly. Tom hurried up. "Why, that door's open, I believe. Why, of course it is. No end of strange things now. Go 'long and shut it, Sid." Tom disappeared under the bed just in time. He lay and "breathed" himself for a time, and then crept to where he could almost touch his aunt's foot. "But as I was saying," said Aunt Polly, "he warn't BAD, so to say --only mischEEvous. Only just giddy, and harum-scarum, you know. He warn't any more responsible than a colt. HE never meant any harm, and he was the best-hearted boy that ever was"--and she began to cry. "It was just so with my Joe--always full of his devilment, and up to every kind of mischief, but he was just as unselfish and kind as he could be--and laws bless me, to think I went and whipped him for taking that cream, never once recollecting that I throwed it out myself because it was sour, and I never to see him again in this world, never, never, never, poor abused boy!" And Mrs. Harper sobbed as if her heart would break. "I hope Tom's better off where he is," said Sid, "but if he'd been better in some ways--" "SID!" Tom felt the glare of the old lady's eye, though he could not see it. "Not a word against my Tom, now that he's gone! God'll take care of HIM--never you trouble YOURself, sir! Oh, Mrs. Harper, I don't know how to give him up! I don't know how to give him up! He was such a comfort to me, although he tormented my old heart out of me, 'most." "The Lord giveth and the Lord hath taken away--Blessed be the name of the Lord! But it's so hard--Oh, it's so hard! Only last Saturday my Joe busted a firecracker right under my nose and I knocked him sprawling. Little did I know then, how soon--Oh, if it was to do over again I'd hug him and bless him for it." "Yes, yes, yes, I know just how you feel, Mrs. Harper, I know just exactly how you feel. No longer ago than yesterday noon, my Tom took and filled the cat full of Pain-killer, and I did think the cretur would tear the house down. And God forgive me, I cracked Tom's head with my thimble, poor boy, poor dead boy. But he's out of all his troubles now. And the last words I ever heard him say was to reproach--" But this memory was too much for the old lady, and she broke entirely down. Tom was snuffling, now, himself--and more in pity of himself than anybody else. He could hear Mary crying, and putting in a kindly word for him from time to time. He began to have a nobler opinion of himself than ever before. Still, he was sufficiently touched by his aunt's grief to long to rush out from under the bed and overwhelm her with joy--and the theatrical gorgeousness of the thing appealed strongly to his nature, too, but he resisted and lay still. He went on listening, and gathered by odds and ends that it was conjectured at first that the boys had got drowned while taking a swim; then the small raft had been missed; next, certain boys said the missing lads had promised that the village should "hear something" soon; the wise-heads had "put this and that together" and decided that the lads had gone off on that raft and would turn up at the next town below, presently; but toward noon the raft had been found, lodged against the Missouri shore some five or six miles below the village --and then hope perished; they must be drowned, else hunger would have driven them home by nightfall if not sooner. It was believed that the search for the bodies had been a fruitless effort merely because the drowning must have occurred in mid-channel, since the boys, being good swimmers, would otherwise have escaped to shore. This was Wednesday night. If the bodies continued missing until Sunday, all hope would be given over, and the funerals would be preached on that morning. Tom shuddered. Mrs. Harper gave a sobbing good-night and turned to go. Then with a mutual impulse the two bereaved women flung themselves into each other's arms and had a good, consoling cry, and then parted. Aunt Polly was tender far beyond her wont, in her good-night to Sid and Mary. Sid snuffled a bit and Mary went off crying with all her heart. Aunt Polly knelt down and prayed for Tom so touchingly, so appealingly, and with such measureless love in her words and her old trembling voice, that he was weltering in tears again, long before she was through. He had to keep still long after she went to bed, for she kept making broken-hearted ejaculations from time to time, tossing unrestfully, and turning over. But at last she was still, only moaning a little in her sleep. Now the boy stole out, rose gradually by the bedside, shaded the candle-light with his hand, and stood regarding her. His heart was full of pity for her. He took out his sycamore scroll and placed it by the candle. But something occurred to him, and he lingered considering. His face lighted with a happy solution of his thought; he put the bark hastily in his pocket. Then he bent over and kissed the faded lips, and straightway made his stealthy exit, latching the door behind him. He threaded his way back to the ferry landing, found nobody at large there, and walked boldly on board the boat, for he knew she was tenantless except that there was a watchman, who always turned in and slept like a graven image. He untied the skiff at the stern, slipped into it, and was soon rowing cautiously upstream. When he had pulled a mile above the village, he started quartering across and bent himself stoutly to his work. He hit the landing on the other side neatly, for this was a familiar bit of work to him. He was moved to capture the skiff, arguing that it might be considered a ship and therefore legitimate prey for a pirate, but he knew a thorough search would be made for it and that might end in revelations. So he stepped ashore and entered the woods. He sat down and took a long rest, torturing himself meanwhile to keep awake, and then started warily down the home-stretch. The night was far spent. It was broad daylight before he found himself fairly abreast the island bar. He rested again until the sun was well up and gilding the great river with its splendor, and then he plunged into the stream. A little later he paused, dripping, upon the threshold of the camp, and heard Joe say: "No, Tom's true-blue, Huck, and he'll come back. He won't desert. He knows that would be a disgrace to a pirate, and Tom's too proud for that sort of thing. He's up to something or other. Now I wonder what?" "Well, the things is ours, anyway, ain't they?" "Pretty near, but not yet, Huck. The writing says they are if he ain't back here to breakfast." "Which he is!" exclaimed Tom, with fine dramatic effect, stepping grandly into camp. A sumptuous breakfast of bacon and fish was shortly provided, and as the boys set to work upon it, Tom recounted (and adorned) his adventures. They were a vain and boastful company of heroes when the tale was done. Then Tom hid himself away in a shady nook to sleep till noon, and the other pirates got ready to fish and explore. CHAPTER XVI AFTER dinner all the gang turned out to hunt for turtle eggs on the bar. They went about poking sticks into the sand, and when they found a soft place they went down on their knees and dug with their hands. Sometimes they would take fifty or sixty eggs out of one hole. They were perfectly round white things a trifle smaller than an English walnut. They had a famous fried-egg feast that night, and another on Friday morning. After breakfast they went whooping and prancing out on the bar, and chased each other round and round, shedding clothes as they went, until they were naked, and then continued the frolic far away up the shoal water of the bar, against the stiff current, which latter tripped their legs from under them from time to time and greatly increased the fun. And now and then they stooped in a group and splashed water in each other's faces with their palms, gradually approaching each other, with averted faces to avoid the strangling sprays, and finally gripping and struggling till the best man ducked his neighbor, and then they all went under in a tangle of white legs and arms and came up blowing, sputtering, laughing, and gasping for breath at one and the same time. When they were well exhausted, they would run out and sprawl on the dry, hot sand, and lie there and cover themselves up with it, and by and by break for the water again and go through the original performance once more. Finally it occurred to them that their naked skin represented flesh-colored "tights" very fairly; so they drew a ring in the sand and had a circus--with three clowns in it, for none would yield this proudest post to his neighbor. Next they got their marbles and played "knucks" and "ring-taw" and "keeps" till that amusement grew stale. Then Joe and Huck had another swim, but Tom would not venture, because he found that in kicking off his trousers he had kicked his string of rattlesnake rattles off his ankle, and he wondered how he had escaped cramp so long without the protection of this mysterious charm. He did not venture again until he had found it, and by that time the other boys were tired and ready to rest. They gradually wandered apart, dropped into the "dumps," and fell to gazing longingly across the wide river to where the village lay drowsing in the sun. Tom found himself writing "BECKY" in the sand with his big toe; he scratched it out, and was angry with himself for his weakness. But he wrote it again, nevertheless; he could not help it. He erased it once more and then took himself out of temptation by driving the other boys together and joining them. But Joe's spirits had gone down almost beyond resurrection. He was so homesick that he could hardly endure the misery of it. The tears lay very near the surface. Huck was melancholy, too. Tom was downhearted, but tried hard not to show it. He had a secret which he was not ready to tell, yet, but if this mutinous depression was not broken up soon, he would have to bring it out. He said, with a great show of cheerfulness: "I bet there's been pirates on this island before, boys. We'll explore it again. They've hid treasures here somewhere. How'd you feel to light on a rotten chest full of gold and silver--hey?" But it roused only faint enthusiasm, which faded out, with no reply. Tom tried one or two other seductions; but they failed, too. It was discouraging work. Joe sat poking up the sand with a stick and looking very gloomy. Finally he said: "Oh, boys, let's give it up. I want to go home. It's so lonesome." "Oh no, Joe, you'll feel better by and by," said Tom. "Just think of the fishing that's here." "I don't care for fishing. I want to go home." "But, Joe, there ain't such another swimming-place anywhere." "Swimming's no good. I don't seem to care for it, somehow, when there ain't anybody to say I sha'n't go in. I mean to go home." "Oh, shucks! Baby! You want to see your mother, I reckon." "Yes, I DO want to see my mother--and you would, too, if you had one. I ain't any more baby than you are." And Joe snuffled a little. "Well, we'll let the cry-baby go home to his mother, won't we, Huck? Poor thing--does it want to see its mother? And so it shall. You like it here, don't you, Huck? We'll stay, won't we?" Huck said, "Y-e-s"--without any heart in it. "I'll never speak to you again as long as I live," said Joe, rising. "There now!" And he moved moodily away and began to dress himself. "Who cares!" said Tom. "Nobody wants you to. Go 'long home and get laughed at. Oh, you're a nice pirate. Huck and me ain't cry-babies. We'll stay, won't we, Huck? Let him go if he wants to. I reckon we can get along without him, per'aps." But Tom was uneasy, nevertheless, and was alarmed to see Joe go sullenly on with his dressing. And then it was discomforting to see Huck eying Joe's preparations so wistfully, and keeping up such an ominous silence. Presently, without a parting word, Joe began to wade off toward the Illinois shore. Tom's heart began to sink. He glanced at Huck. Huck could not bear the look, and dropped his eyes. Then he said: "I want to go, too, Tom. It was getting so lonesome anyway, and now it'll be worse. Let's us go, too, Tom." "I won't! You can all go, if you want to. I mean to stay." "Tom, I better go." "Well, go 'long--who's hendering you." Huck began to pick up his scattered clothes. He said: "Tom, I wisht you'd come, too. Now you think it over. We'll wait for you when we get to shore." "Well, you'll wait a blame long time, that's all." Huck started sorrowfully away, and Tom stood looking after him, with a strong desire tugging at his heart to yield his pride and go along too. He hoped the boys would stop, but they still waded slowly on. It suddenly dawned on Tom that it was become very lonely and still. He made one final struggle with his pride, and then darted after his comrades, yelling: "Wait! Wait! I want to tell you something!" They presently stopped and turned around. When he got to where they were, he began unfolding his secret, and they listened moodily till at last they saw the "point" he was driving at, and then they set up a war-whoop of applause and said it was "splendid!" and said if he had told them at first, they wouldn't have started away. He made a plausible excuse; but his real reason had been the fear that not even the secret would keep them with him any very great length of time, and so he had meant to hold it in reserve as a last seduction. The lads came gayly back and went at their sports again with a will, chattering all the time about Tom's stupendous plan and admiring the genius of it. After a dainty egg and fish dinner, Tom said he wanted to learn to smoke, now. Joe caught at the idea and said he would like to try, too. So Huck made pipes and filled them. These novices had never smoked anything before but cigars made of grape-vine, and they "bit" the tongue, and were not considered manly anyway. Now they stretched themselves out on their elbows and began to puff, charily, and with slender confidence. The smoke had an unpleasant taste, and they gagged a little, but Tom said: "Why, it's just as easy! If I'd a knowed this was all, I'd a learnt long ago." "So would I," said Joe. "It's just nothing." "Why, many a time I've looked at people smoking, and thought well I wish I could do that; but I never thought I could," said Tom. "That's just the way with me, hain't it, Huck? You've heard me talk just that way--haven't you, Huck? I'll leave it to Huck if I haven't." "Yes--heaps of times," said Huck. "Well, I have too," said Tom; "oh, hundreds of times. Once down by the slaughter-house. Don't you remember, Huck? Bob Tanner was there, and Johnny Miller, and Jeff Thatcher, when I said it. Don't you remember, Huck, 'bout me saying that?" "Yes, that's so," said Huck. "That was the day after I lost a white alley. No, 'twas the day before." "There--I told you so," said Tom. "Huck recollects it." "I bleeve I could smoke this pipe all day," said Joe. "I don't feel sick." "Neither do I," said Tom. "I could smoke it all day. But I bet you Jeff Thatcher couldn't." "Jeff Thatcher! Why, he'd keel over just with two draws. Just let him try it once. HE'D see!" "I bet he would. And Johnny Miller--I wish could see Johnny Miller tackle it once." "Oh, don't I!" said Joe. "Why, I bet you Johnny Miller couldn't any more do this than nothing. Just one little snifter would fetch HIM." "'Deed it would, Joe. Say--I wish the boys could see us now." "So do I." "Say--boys, don't say anything about it, and some time when they're around, I'll come up to you and say, 'Joe, got a pipe? I want a smoke.' And you'll say, kind of careless like, as if it warn't anything, you'll say, 'Yes, I got my OLD pipe, and another one, but my tobacker ain't very good.' And I'll say, 'Oh, that's all right, if it's STRONG enough.' And then you'll out with the pipes, and we'll light up just as ca'm, and then just see 'em look!" "By jings, that'll be gay, Tom! I wish it was NOW!" "So do I! And when we tell 'em we learned when we was off pirating, won't they wish they'd been along?" "Oh, I reckon not! I'll just BET they will!" So the talk ran on. But presently it began to flag a trifle, and grow disjointed. The silences widened; the expectoration marvellously increased. Every pore inside the boys' cheeks became a spouting fountain; they could scarcely bail out the cellars under their tongues fast enough to prevent an inundation; little overflowings down their throats occurred in spite of all they could do, and sudden retchings followed every time. Both boys were looking very pale and miserable, now. Joe's pipe dropped from his nerveless fingers. Tom's followed. Both fountains were going furiously and both pumps bailing with might and main. Joe said feebly: "I've lost my knife. I reckon I better go and find it." Tom said, with quivering lips and halting utterance: "I'll help you. You go over that way and I'll hunt around by the spring. No, you needn't come, Huck--we can find it." So Huck sat down again, and waited an hour. Then he found it lonesome, and went to find his comrades. They were wide apart in the woods, both very pale, both fast asleep. But something informed him that if they had had any trouble they had got rid of it. They were not talkative at supper that night. They had a humble look, and when Huck prepared his pipe after the meal and was going to prepare theirs, they said no, they were not feeling very well--something they ate at dinner had disagreed with them. About midnight Joe awoke, and called the boys. There was a brooding oppressiveness in the air that seemed to bode something. The boys huddled themselves together and sought the friendly companionship of the fire, though the dull dead heat of the breathless atmosphere was stifling. They sat still, intent and waiting. The solemn hush continued. Beyond the light of the fire everything was swallowed up in the blackness of darkness. Presently there came a quivering glow that vaguely revealed the foliage for a moment and then vanished. By and by another came, a little stronger. Then another. Then a faint moan came sighing through the branches of the forest and the boys felt a fleeting breath upon their cheeks, and shuddered with the fancy that the Spirit of the Night had gone by. There was a pause. Now a weird flash turned night into day and showed every little grass-blade, separate and distinct, that grew about their feet. And it showed three white, startled faces, too. A deep peal of thunder went rolling and tumbling down the heavens and lost itself in sullen rumblings in the distance. A sweep of chilly air passed by, rustling all the leaves and snowing the flaky ashes broadcast about the fire. Another fierce glare lit up the forest and an instant crash followed that seemed to rend the tree-tops right over the boys' heads. They clung together in terror, in the thick gloom that followed. A few big rain-drops fell pattering upon the leaves. "Quick! boys, go for the tent!" exclaimed Tom. They sprang away, stumbling over roots and among vines in the dark, no two plunging in the same direction. A furious blast roared through the trees, making everything sing as it went. One blinding flash after another came, and peal on peal of deafening thunder. And now a drenching rain poured down and the rising hurricane drove it in sheets along the ground. The boys cried out to each other, but the roaring wind and the booming thunder-blasts drowned their voices utterly. However, one by one they straggled in at last and took shelter under the tent, cold, scared, and streaming with water; but to have company in misery seemed something to be grateful for. They could not talk, the old sail flapped so furiously, even if the other noises would have allowed them. The tempest rose higher and higher, and presently the sail tore loose from its fastenings and went winging away on the blast. The boys seized each others' hands and fled, with many tumblings and bruises, to the shelter of a great oak that stood upon the river-bank. Now the battle was at its highest. Under the ceaseless conflagration of lightning that flamed in the skies, everything below stood out in clean-cut and shadowless distinctness: the bending trees, the billowy river, white with foam, the driving spray of spume-flakes, the dim outlines of the high bluffs on the other side, glimpsed through the drifting cloud-rack and the slanting veil of rain. Every little while some giant tree yielded the fight and fell crashing through the younger growth; and the unflagging thunder-peals came now in ear-splitting explosive bursts, keen and sharp, and unspeakably appalling. The storm culminated in one matchless effort that seemed likely to tear the island to pieces, burn it up, drown it to the tree-tops, blow it away, and deafen every creature in it, all at one and the same moment. It was a wild night for homeless young heads to be out in. But at last the battle was done, and the forces retired with weaker and weaker threatenings and grumblings, and peace resumed her sway. The boys went back to camp, a good deal awed; but they found there was still something to be thankful for, because the great sycamore, the shelter of their beds, was a ruin, now, blasted by the lightnings, and they were not under it when the catastrophe happened. Everything in camp was drenched, the camp-fire as well; for they were but heedless lads, like their generation, and had made no provision against rain. Here was matter for dismay, for they were soaked through and chilled. They were eloquent in their distress; but they presently discovered that the fire had eaten so far up under the great log it had been built against (where it curved upward and separated itself from the ground), that a handbreadth or so of it had escaped wetting; so they patiently wrought until, with shreds and bark gathered from the under sides of sheltered logs, they coaxed the fire to burn again. Then they piled on great dead boughs till they had a roaring furnace, and were glad-hearted once more. They dried their boiled ham and had a feast, and after that they sat by the fire and expanded and glorified their midnight adventure until morning, for there was not a dry spot to sleep on, anywhere around. As the sun began to steal in upon the boys, drowsiness came over them, and they went out on the sandbar and lay down to sleep. They got scorched out by and by, and drearily set about getting breakfast. After the meal they felt rusty, and stiff-jointed, and a little homesick once more. Tom saw the signs, and fell to cheering up the pirates as well as he could. But they cared nothing for marbles, or circus, or swimming, or anything. He reminded them of the imposing secret, and raised a ray of cheer. While it lasted, he got them interested in a new device. This was to knock off being pirates, for a while, and be Indians for a change. They were attracted by this idea; so it was not long before they were stripped, and striped from head to heel with black mud, like so many zebras--all of them chiefs, of course--and then they went tearing through the woods to attack an English settlement. By and by they separated into three hostile tribes, and darted upon each other from ambush with dreadful war-whoops, and killed and scalped each other by thousands. It was a gory day. Consequently it was an extremely satisfactory one. They assembled in camp toward supper-time, hungry and happy; but now a difficulty arose--hostile Indians could not break the bread of hospitality together without first making peace, and this was a simple impossibility without smoking a pipe of peace. There was no other process that ever they had heard of. Two of the savages almost wished they had remained pirates. However, there was no other way; so with such show of cheerfulness as they could muster they called for the pipe and took their whiff as it passed, in due form. And behold, they were glad they had gone into savagery, for they had gained something; they found that they could now smoke a little without having to go and hunt for a lost knife; they did not get sick enough to be seriously uncomfortable. They were not likely to fool away this high promise for lack of effort. No, they practised cautiously, after supper, with right fair success, and so they spent a jubilant evening. They were prouder and happier in their new acquirement than they would have been in the scalping and skinning of the Six Nations. We will leave them to smoke and chatter and brag, since we have no further use for them at present. CHAPTER XVII BUT there was no hilarity in the little town that same tranquil Saturday afternoon. The Harpers, and Aunt Polly's family, were being put into mourning, with great grief and many tears. An unusual quiet possessed the village, although it was ordinarily quiet enough, in all conscience. The villagers conducted their concerns with an absent air, and talked little; but they sighed often. The Saturday holiday seemed a burden to the children. They had no heart in their sports, and gradually gave them up. In the afternoon Becky Thatcher found herself moping about the deserted schoolhouse yard, and feeling very melancholy. But she found nothing there to comfort her. She soliloquized: "Oh, if I only had a brass andiron-knob again! But I haven't got anything now to remember him by." And she choked back a little sob. Presently she stopped, and said to herself: "It was right here. Oh, if it was to do over again, I wouldn't say that--I wouldn't say it for the whole world. But he's gone now; I'll never, never, never see him any more." This thought broke her down, and she wandered away, with tears rolling down her cheeks. Then quite a group of boys and girls--playmates of Tom's and Joe's--came by, and stood looking over the paling fence and talking in reverent tones of how Tom did so-and-so the last time they saw him, and how Joe said this and that small trifle (pregnant with awful prophecy, as they could easily see now!)--and each speaker pointed out the exact spot where the lost lads stood at the time, and then added something like "and I was a-standing just so--just as I am now, and as if you was him--I was as close as that--and he smiled, just this way--and then something seemed to go all over me, like--awful, you know--and I never thought what it meant, of course, but I can see now!" Then there was a dispute about who saw the dead boys last in life, and many claimed that dismal distinction, and offered evidences, more or less tampered with by the witness; and when it was ultimately decided who DID see the departed last, and exchanged the last words with them, the lucky parties took upon themselves a sort of sacred importance, and were gaped at and envied by all the rest. One poor chap, who had no other grandeur to offer, said with tolerably manifest pride in the remembrance: "Well, Tom Sawyer he licked me once." But that bid for glory was a failure. Most of the boys could say that, and so that cheapened the distinction too much. The group loitered away, still recalling memories of the lost heroes, in awed voices. When the Sunday-school hour was finished, the next morning, the bell began to toll, instead of ringing in the usual way. It was a very still Sabbath, and the mournful sound seemed in keeping with the musing hush that lay upon nature. The villagers began to gather, loitering a moment in the vestibule to converse in whispers about the sad event. But there was no whispering in the house; only the funereal rustling of dresses as the women gathered to their seats disturbed the silence there. None could remember when the little church had been so full before. There was finally a waiting pause, an expectant dumbness, and then Aunt Polly entered, followed by Sid and Mary, and they by the Harper family, all in deep black, and the whole congregation, the old minister as well, rose reverently and stood until the mourners were seated in the front pew. There was another communing silence, broken at intervals by muffled sobs, and then the minister spread his hands abroad and prayed. A moving hymn was sung, and the text followed: "I am the Resurrection and the Life." As the service proceeded, the clergyman drew such pictures of the graces, the winning ways, and the rare promise of the lost lads that every soul there, thinking he recognized these pictures, felt a pang in remembering that he had persistently blinded himself to them always before, and had as persistently seen only faults and flaws in the poor boys. The minister related many a touching incident in the lives of the departed, too, which illustrated their sweet, generous natures, and the people could easily see, now, how noble and beautiful those episodes were, and remembered with grief that at the time they occurred they had seemed rank rascalities, well deserving of the cowhide. The congregation became more and more moved, as the pathetic tale went on, till at last the whole company broke down and joined the weeping mourners in a chorus of anguished sobs, the preacher himself giving way to his feelings, and crying in the pulpit. There was a rustle in the gallery, which nobody noticed; a moment later the church door creaked; the minister raised his streaming eyes above his handkerchief, and stood transfixed! First one and then another pair of eyes followed the minister's, and then almost with one impulse the congregation rose and stared while the three dead boys came marching up the aisle, Tom in the lead, Joe next, and Huck, a ruin of drooping rags, sneaking sheepishly in the rear! They had been hid in the unused gallery listening to their own funeral sermon! Aunt Polly, Mary, and the Harpers threw themselves upon their restored ones, smothered them with kisses and poured out thanksgivings, while poor Huck stood abashed and uncomfortable, not knowing exactly what to do or where to hide from so many unwelcoming eyes. He wavered, and started to slink away, but Tom seized him and said: "Aunt Polly, it ain't fair. Somebody's got to be glad to see Huck." "And so they shall. I'm glad to see him, poor motherless thing!" And the loving attentions Aunt Polly lavished upon him were the one thing capable of making him more uncomfortable than he was before. Suddenly the minister shouted at the top of his voice: "Praise God from whom all blessings flow--SING!--and put your hearts in it!" And they did. Old Hundred swelled up with a triumphant burst, and while it shook the rafters Tom Sawyer the Pirate looked around upon the envying juveniles about him and confessed in his heart that this was the proudest moment of his life. As the "sold" congregation trooped out they said they would almost be willing to be made ridiculous again to hear Old Hundred sung like that once more. Tom got more cuffs and kisses that day--according to Aunt Polly's varying moods--than he had earned before in a year; and he hardly knew which expressed the most gratefulness to God and affection for himself. CHAPTER XVIII THAT was Tom's great secret--the scheme to return home with his brother pirates and attend their own funerals. They had paddled over to the Missouri shore on a log, at dusk on Saturday, landing five or six miles below the village; they had slept in the woods at the edge of the town till nearly daylight, and had then crept through back lanes and alleys and finished their sleep in the gallery of the church among a chaos of invalided benches. At breakfast, Monday morning, Aunt Polly and Mary were very loving to Tom, and very attentive to his wants. There was an unusual amount of talk. In the course of it Aunt Polly said: "Well, I don't say it wasn't a fine joke, Tom, to keep everybody suffering 'most a week so you boys had a good time, but it is a pity you could be so hard-hearted as to let me suffer so. If you could come over on a log to go to your funeral, you could have come over and give me a hint some way that you warn't dead, but only run off." "Yes, you could have done that, Tom," said Mary; "and I believe you would if you had thought of it." "Would you, Tom?" said Aunt Polly, her face lighting wistfully. "Say, now, would you, if you'd thought of it?" "I--well, I don't know. 'Twould 'a' spoiled everything." "Tom, I hoped you loved me that much," said Aunt Polly, with a grieved tone that discomforted the boy. "It would have been something if you'd cared enough to THINK of it, even if you didn't DO it." "Now, auntie, that ain't any harm," pleaded Mary; "it's only Tom's giddy way--he is always in such a rush that he never thinks of anything." "More's the pity. Sid would have thought. And Sid would have come and DONE it, too. Tom, you'll look back, some day, when it's too late, and wish you'd cared a little more for me when it would have cost you so little." "Now, auntie, you know I do care for you," said Tom. "I'd know it better if you acted more like it." "I wish now I'd thought," said Tom, with a repentant tone; "but I dreamt about you, anyway. That's something, ain't it?" "It ain't much--a cat does that much--but it's better than nothing. What did you dream?" "Why, Wednesday night I dreamt that you was sitting over there by the bed, and Sid was sitting by the woodbox, and Mary next to him." "Well, so we did. So we always do. I'm glad your dreams could take even that much trouble about us." "And I dreamt that Joe Harper's mother was here." "Why, she was here! Did you dream any more?" "Oh, lots. But it's so dim, now." "Well, try to recollect--can't you?" "Somehow it seems to me that the wind--the wind blowed the--the--" "Try harder, Tom! The wind did blow something. Come!" Tom pressed his fingers on his forehead an anxious minute, and then said: "I've got it now! I've got it now! It blowed the candle!" "Mercy on us! Go on, Tom--go on!" "And it seems to me that you said, 'Why, I believe that that door--'" "Go ON, Tom!" "Just let me study a moment--just a moment. Oh, yes--you said you believed the door was open." "As I'm sitting here, I did! Didn't I, Mary! Go on!" "And then--and then--well I won't be certain, but it seems like as if you made Sid go and--and--" "Well? Well? What did I make him do, Tom? What did I make him do?" "You made him--you--Oh, you made him shut it." "Well, for the land's sake! I never heard the beat of that in all my days! Don't tell ME there ain't anything in dreams, any more. Sereny Harper shall know of this before I'm an hour older. I'd like to see her get around THIS with her rubbage 'bout superstition. Go on, Tom!" "Oh, it's all getting just as bright as day, now. Next you said I warn't BAD, only mischeevous and harum-scarum, and not any more responsible than--than--I think it was a colt, or something." "And so it was! Well, goodness gracious! Go on, Tom!" "And then you began to cry." "So I did. So I did. Not the first time, neither. And then--" "Then Mrs. Harper she began to cry, and said Joe was just the same, and she wished she hadn't whipped him for taking cream when she'd throwed it out her own self--" "Tom! The sperrit was upon you! You was a prophesying--that's what you was doing! Land alive, go on, Tom!" "Then Sid he said--he said--" "I don't think I said anything," said Sid. "Yes you did, Sid," said Mary. "Shut your heads and let Tom go on! What did he say, Tom?" "He said--I THINK he said he hoped I was better off where I was gone to, but if I'd been better sometimes--" "THERE, d'you hear that! It was his very words!" "And you shut him up sharp." "I lay I did! There must 'a' been an angel there. There WAS an angel there, somewheres!" "And Mrs. Harper told about Joe scaring her with a firecracker, and you told about Peter and the Painkiller--" "Just as true as I live!" "And then there was a whole lot of talk 'bout dragging the river for us, and 'bout having the funeral Sunday, and then you and old Miss Harper hugged and cried, and she went." "It happened just so! It happened just so, as sure as I'm a-sitting in these very tracks. Tom, you couldn't told it more like if you'd 'a' seen it! And then what? Go on, Tom!" "Then I thought you prayed for me--and I could see you and hear every word you said. And you went to bed, and I was so sorry that I took and wrote on a piece of sycamore bark, 'We ain't dead--we are only off being pirates,' and put it on the table by the candle; and then you looked so good, laying there asleep, that I thought I went and leaned over and kissed you on the lips." "Did you, Tom, DID you! I just forgive you everything for that!" And she seized the boy in a crushing embrace that made him feel like the guiltiest of villains. "It was very kind, even though it was only a--dream," Sid soliloquized just audibly. "Shut up, Sid! A body does just the same in a dream as he'd do if he was awake. Here's a big Milum apple I've been saving for you, Tom, if you was ever found again--now go 'long to school. I'm thankful to the good God and Father of us all I've got you back, that's long-suffering and merciful to them that believe on Him and keep His word, though goodness knows I'm unworthy of it, but if only the worthy ones got His blessings and had His hand to help them over the rough places, there's few enough would smile here or ever enter into His rest when the long night comes. Go 'long Sid, Mary, Tom--take yourselves off--you've hendered me long enough." The children left for school, and the old lady to call on Mrs. Harper and vanquish her realism with Tom's marvellous dream. Sid had better judgment than to utter the thought that was in his mind as he left the house. It was this: "Pretty thin--as long a dream as that, without any mistakes in it!" What a hero Tom was become, now! He did not go skipping and prancing, but moved with a dignified swagger as became a pirate who felt that the public eye was on him. And indeed it was; he tried not to seem to see the looks or hear the remarks as he passed along, but they were food and drink to him. Smaller boys than himself flocked at his heels, as proud to be seen with him, and tolerated by him, as if he had been the drummer at the head of a procession or the elephant leading a menagerie into town. Boys of his own size pretended not to know he had been away at all; but they were consuming with envy, nevertheless. They would have given anything to have that swarthy suntanned skin of his, and his glittering notoriety; and Tom would not have parted with either for a circus. At school the children made so much of him and of Joe, and delivered such eloquent admiration from their eyes, that the two heroes were not long in becoming insufferably "stuck-up." They began to tell their adventures to hungry listeners--but they only began; it was not a thing likely to have an end, with imaginations like theirs to furnish material. And finally, when they got out their pipes and went serenely puffing around, the very summit of glory was reached. Tom decided that he could be independent of Becky Thatcher now. Glory was sufficient. He would live for glory. Now that he was distinguished, maybe she would be wanting to "make up." Well, let her--she should see that he could be as indifferent as some other people. Presently she arrived. Tom pretended not to see her. He moved away and joined a group of boys and girls and began to talk. Soon he observed that she was tripping gayly back and forth with flushed face and dancing eyes, pretending to be busy chasing schoolmates, and screaming with laughter when she made a capture; but he noticed that she always made her captures in his vicinity, and that she seemed to cast a conscious eye in his direction at such times, too. It gratified all the vicious vanity that was in him; and so, instead of winning him, it only "set him up" the more and made him the more diligent to avoid betraying that he knew she was about. Presently she gave over skylarking, and moved irresolutely about, sighing once or twice and glancing furtively and wistfully toward Tom. Then she observed that now Tom was talking more particularly to Amy Lawrence than to any one else. She felt a sharp pang and grew disturbed and uneasy at once. She tried to go away, but her feet were treacherous, and carried her to the group instead. She said to a girl almost at Tom's elbow--with sham vivacity: "Why, Mary Austin! you bad girl, why didn't you come to Sunday-school?" "I did come--didn't you see me?" "Why, no! Did you? Where did you sit?" "I was in Miss Peters' class, where I always go. I saw YOU." "Did you? Why, it's funny I didn't see you. I wanted to tell you about the picnic." "Oh, that's jolly. Who's going to give it?" "My ma's going to let me have one." "Oh, goody; I hope she'll let ME come." "Well, she will. The picnic's for me. She'll let anybody come that I want, and I want you." "That's ever so nice. When is it going to be?" "By and by. Maybe about vacation." "Oh, won't it be fun! You going to have all the girls and boys?" "Yes, every one that's friends to me--or wants to be"; and she glanced ever so furtively at Tom, but he talked right along to Amy Lawrence about the terrible storm on the island, and how the lightning tore the great sycamore tree "all to flinders" while he was "standing within three feet of it." "Oh, may I come?" said Grace Miller. "Yes." "And me?" said Sally Rogers. "Yes." "And me, too?" said Susy Harper. "And Joe?" "Yes." And so on, with clapping of joyful hands till all the group had begged for invitations but Tom and Amy. Then Tom turned coolly away, still talking, and took Amy with him. Becky's lips trembled and the tears came to her eyes; she hid these signs with a forced gayety and went on chattering, but the life had gone out of the picnic, now, and out of everything else; she got away as soon as she could and hid herself and had what her sex call "a good cry." Then she sat moody, with wounded pride, till the bell rang. She roused up, now, with a vindictive cast in her eye, and gave her plaited tails a shake and said she knew what SHE'D do. At recess Tom continued his flirtation with Amy with jubilant self-satisfaction. And he kept drifting about to find Becky and lacerate her with the performance. At last he spied her, but there was a sudden falling of his mercury. She was sitting cosily on a little bench behind the schoolhouse looking at a picture-book with Alfred Temple--and so absorbed were they, and their heads so close together over the book, that they did not seem to be conscious of anything in the world besides. Jealousy ran red-hot through Tom's veins. He began to hate himself for throwing away the chance Becky had offered for a reconciliation. He called himself a fool, and all the hard names he could think of. He wanted to cry with vexation. Amy chatted happily along, as they walked, for her heart was singing, but Tom's tongue had lost its function. He did not hear what Amy was saying, and whenever she paused expectantly he could only stammer an awkward assent, which was as often misplaced as otherwise. He kept drifting to the rear of the schoolhouse, again and again, to sear his eyeballs with the hateful spectacle there. He could not help it. And it maddened him to see, as he thought he saw, that Becky Thatcher never once suspected that he was even in the land of the living. But she did see, nevertheless; and she knew she was winning her fight, too, and was glad to see him suffer as she had suffered. Amy's happy prattle became intolerable. Tom hinted at things he had to attend to; things that must be done; and time was fleeting. But in vain--the girl chirped on. Tom thought, "Oh, hang her, ain't I ever going to get rid of her?" At last he must be attending to those things--and she said artlessly that she would be "around" when school let out. And he hastened away, hating her for it. "Any other boy!" Tom thought, grating his teeth. "Any boy in the whole town but that Saint Louis smarty that thinks he dresses so fine and is aristocracy! Oh, all right, I licked you the first day you ever saw this town, mister, and I'll lick you again! You just wait till I catch you out! I'll just take and--" And he went through the motions of thrashing an imaginary boy --pummelling the air, and kicking and gouging. "Oh, you do, do you? You holler 'nough, do you? Now, then, let that learn you!" And so the imaginary flogging was finished to his satisfaction. Tom fled home at noon. His conscience could not endure any more of Amy's grateful happiness, and his jealousy could bear no more of the other distress. Becky resumed her picture inspections with Alfred, but as the minutes dragged along and no Tom came to suffer, her triumph began to cloud and she lost interest; gravity and absent-mindedness followed, and then melancholy; two or three times she pricked up her ear at a footstep, but it was a false hope; no Tom came. At last she grew entirely miserable and wished she hadn't carried it so far. When poor Alfred, seeing that he was losing her, he did not know how, kept exclaiming: "Oh, here's a jolly one! look at this!" she lost patience at last, and said, "Oh, don't bother me! I don't care for them!" and burst into tears, and got up and walked away. Alfred dropped alongside and was going to try to comfort her, but she said: "Go away and leave me alone, can't you! I hate you!" So the boy halted, wondering what he could have done--for she had said she would look at pictures all through the nooning--and she walked on, crying. Then Alfred went musing into the deserted schoolhouse. He was humiliated and angry. He easily guessed his way to the truth--the girl had simply made a convenience of him to vent her spite upon Tom Sawyer. He was far from hating Tom the less when this thought occurred to him. He wished there was some way to get that boy into trouble without much risk to himself. Tom's spelling-book fell under his eye. Here was his opportunity. He gratefully opened to the lesson for the afternoon and poured ink upon the page. Becky, glancing in at a window behind him at the moment, saw the act, and moved on, without discovering herself. She started homeward, now, intending to find Tom and tell him; Tom would be thankful and their troubles would be healed. Before she was half way home, however, she had changed her mind. The thought of Tom's treatment of her when she was talking about her picnic came scorching back and filled her with shame. She resolved to let him get whipped on the damaged spelling-book's account, and to hate him forever, into the bargain. CHAPTER XIX TOM arrived at home in a dreary mood, and the first thing his aunt said to him showed him that he had brought his sorrows to an unpromising market: "Tom, I've a notion to skin you alive!" "Auntie, what have I done?" "Well, you've done enough. Here I go over to Sereny Harper, like an old softy, expecting I'm going to make her believe all that rubbage about that dream, when lo and behold you she'd found out from Joe that you was over here and heard all the talk we had that night. Tom, I don't know what is to become of a boy that will act like that. It makes me feel so bad to think you could let me go to Sereny Harper and make such a fool of myself and never say a word." This was a new aspect of the thing. His smartness of the morning had seemed to Tom a good joke before, and very ingenious. It merely looked mean and shabby now. He hung his head and could not think of anything to say for a moment. Then he said: "Auntie, I wish I hadn't done it--but I didn't think." "Oh, child, you never think. You never think of anything but your own selfishness. You could think to come all the way over here from Jackson's Island in the night to laugh at our troubles, and you could think to fool me with a lie about a dream; but you couldn't ever think to pity us and save us from sorrow." "Auntie, I know now it was mean, but I didn't mean to be mean. I didn't, honest. And besides, I didn't come over here to laugh at you that night." "What did you come for, then?" "It was to tell you not to be uneasy about us, because we hadn't got drownded." "Tom, Tom, I would be the thankfullest soul in this world if I could believe you ever had as good a thought as that, but you know you never did--and I know it, Tom." "Indeed and 'deed I did, auntie--I wish I may never stir if I didn't." "Oh, Tom, don't lie--don't do it. It only makes things a hundred times worse." "It ain't a lie, auntie; it's the truth. I wanted to keep you from grieving--that was all that made me come." "I'd give the whole world to believe that--it would cover up a power of sins, Tom. I'd 'most be glad you'd run off and acted so bad. But it ain't reasonable; because, why didn't you tell me, child?" "Why, you see, when you got to talking about the funeral, I just got all full of the idea of our coming and hiding in the church, and I couldn't somehow bear to spoil it. So I just put the bark back in my pocket and kept mum." "What bark?" "The bark I had wrote on to tell you we'd gone pirating. I wish, now, you'd waked up when I kissed you--I do, honest." The hard lines in his aunt's face relaxed and a sudden tenderness dawned in her eyes. "DID you kiss me, Tom?" "Why, yes, I did." "Are you sure you did, Tom?" "Why, yes, I did, auntie--certain sure." "What did you kiss me for, Tom?" "Because I loved you so, and you laid there moaning and I was so sorry." The words sounded like truth. The old lady could not hide a tremor in her voice when she said: "Kiss me again, Tom!--and be off with you to school, now, and don't bother me any more." The moment he was gone, she ran to a closet and got out the ruin of a jacket which Tom had gone pirating in. Then she stopped, with it in her hand, and said to herself: "No, I don't dare. Poor boy, I reckon he's lied about it--but it's a blessed, blessed lie, there's such a comfort come from it. I hope the Lord--I KNOW the Lord will forgive him, because it was such goodheartedness in him to tell it. But I don't want to find out it's a lie. I won't look." She put the jacket away, and stood by musing a minute. Twice she put out her hand to take the garment again, and twice she refrained. Once more she ventured, and this time she fortified herself with the thought: "It's a good lie--it's a good lie--I won't let it grieve me." So she sought the jacket pocket. A moment later she was reading Tom's piece of bark through flowing tears and saying: "I could forgive the boy, now, if he'd committed a million sins!" CHAPTER XX THERE was something about Aunt Polly's manner, when she kissed Tom, that swept away his low spirits and made him lighthearted and happy again. He started to school and had the luck of coming upon Becky Thatcher at the head of Meadow Lane. His mood always determined his manner. Without a moment's hesitation he ran to her and said: "I acted mighty mean to-day, Becky, and I'm so sorry. I won't ever, ever do that way again, as long as ever I live--please make up, won't you?" The girl stopped and looked him scornfully in the face: "I'll thank you to keep yourself TO yourself, Mr. Thomas Sawyer. I'll never speak to you again." She tossed her head and passed on. Tom was so stunned that he had not even presence of mind enough to say "Who cares, Miss Smarty?" until the right time to say it had gone by. So he said nothing. But he was in a fine rage, nevertheless. He moped into the schoolyard wishing she were a boy, and imagining how he would trounce her if she were. He presently encountered her and delivered a stinging remark as he passed. She hurled one in return, and the angry breach was complete. It seemed to Becky, in her hot resentment, that she could hardly wait for school to "take in," she was so impatient to see Tom flogged for the injured spelling-book. If she had had any lingering notion of exposing Alfred Temple, Tom's offensive fling had driven it entirely away. Poor girl, she did not know how fast she was nearing trouble herself. The master, Mr. Dobbins, had reached middle age with an unsatisfied ambition. The darling of his desires was, to be a doctor, but poverty had decreed that he should be nothing higher than a village schoolmaster. Every day he took a mysterious book out of his desk and absorbed himself in it at times when no classes were reciting. He kept that book under lock and key. There was not an urchin in school but was perishing to have a glimpse of it, but the chance never came. Every boy and girl had a theory about the nature of that book; but no two theories were alike, and there was no way of getting at the facts in the case. Now, as Becky was passing by the desk, which stood near the door, she noticed that the key was in the lock! It was a precious moment. She glanced around; found herself alone, and the next instant she had the book in her hands. The title-page--Professor Somebody's ANATOMY--carried no information to her mind; so she began to turn the leaves. She came at once upon a handsomely engraved and colored frontispiece--a human figure, stark naked. At that moment a shadow fell on the page and Tom Sawyer stepped in at the door and caught a glimpse of the picture. Becky snatched at the book to close it, and had the hard luck to tear the pictured page half down the middle. She thrust the volume into the desk, turned the key, and burst out crying with shame and vexation. "Tom Sawyer, you are just as mean as you can be, to sneak up on a person and look at what they're looking at." "How could I know you was looking at anything?" "You ought to be ashamed of yourself, Tom Sawyer; you know you're going to tell on me, and oh, what shall I do, what shall I do! I'll be whipped, and I never was whipped in school." Then she stamped her little foot and said: "BE so mean if you want to! I know something that's going to happen. You just wait and you'll see! Hateful, hateful, hateful!"--and she flung out of the house with a new explosion of crying. Tom stood still, rather flustered by this onslaught. Presently he said to himself: "What a curious kind of a fool a girl is! Never been licked in school! Shucks! What's a licking! That's just like a girl--they're so thin-skinned and chicken-hearted. Well, of course I ain't going to tell old Dobbins on this little fool, because there's other ways of getting even on her, that ain't so mean; but what of it? Old Dobbins will ask who it was tore his book. Nobody'll answer. Then he'll do just the way he always does--ask first one and then t'other, and when he comes to the right girl he'll know it, without any telling. Girls' faces always tell on them. They ain't got any backbone. She'll get licked. Well, it's a kind of a tight place for Becky Thatcher, because there ain't any way out of it." Tom conned the thing a moment longer, and then added: "All right, though; she'd like to see me in just such a fix--let her sweat it out!" Tom joined the mob of skylarking scholars outside. In a few moments the master arrived and school "took in." Tom did not feel a strong interest in his studies. Every time he stole a glance at the girls' side of the room Becky's face troubled him. Considering all things, he did not want to pity her, and yet it was all he could do to help it. He could get up no exultation that was really worthy the name. Presently the spelling-book discovery was made, and Tom's mind was entirely full of his own matters for a while after that. Becky roused up from her lethargy of distress and showed good interest in the proceedings. She did not expect that Tom could get out of his trouble by denying that he spilt the ink on the book himself; and she was right. The denial only seemed to make the thing worse for Tom. Becky supposed she would be glad of that, and she tried to believe she was glad of it, but she found she was not certain. When the worst came to the worst, she had an impulse to get up and tell on Alfred Temple, but she made an effort and forced herself to keep still--because, said she to herself, "he'll tell about me tearing the picture sure. I wouldn't say a word, not to save his life!" Tom took his whipping and went back to his seat not at all broken-hearted, for he thought it was possible that he had unknowingly upset the ink on the spelling-book himself, in some skylarking bout--he had denied it for form's sake and because it was custom, and had stuck to the denial from principle. A whole hour drifted by, the master sat nodding in his throne, the air was drowsy with the hum of study. By and by, Mr. Dobbins straightened himself up, yawned, then unlocked his desk, and reached for his book, but seemed undecided whether to take it out or leave it. Most of the pupils glanced up languidly, but there were two among them that watched his movements with intent eyes. Mr. Dobbins fingered his book absently for a while, then took it out and settled himself in his chair to read! Tom shot a glance at Becky. He had seen a hunted and helpless rabbit look as she did, with a gun levelled at its head. Instantly he forgot his quarrel with her. Quick--something must be done! done in a flash, too! But the very imminence of the emergency paralyzed his invention. Good!--he had an inspiration! He would run and snatch the book, spring through the door and fly. But his resolution shook for one little instant, and the chance was lost--the master opened the volume. If Tom only had the wasted opportunity back again! Too late. There was no help for Becky now, he said. The next moment the master faced the school. Every eye sank under his gaze. There was that in it which smote even the innocent with fear. There was silence while one might count ten --the master was gathering his wrath. Then he spoke: "Who tore this book?" There was not a sound. One could have heard a pin drop. The stillness continued; the master searched face after face for signs of guilt. "Benjamin Rogers, did you tear this book?" A denial. Another pause. "Joseph Harper, did you?" Another denial. Tom's uneasiness grew more and more intense under the slow torture of these proceedings. The master scanned the ranks of boys--considered a while, then turned to the girls: "Amy Lawrence?" A shake of the head. "Gracie Miller?" The same sign. "Susan Harper, did you do this?" Another negative. The next girl was Becky Thatcher. Tom was trembling from head to foot with excitement and a sense of the hopelessness of the situation. "Rebecca Thatcher" [Tom glanced at her face--it was white with terror] --"did you tear--no, look me in the face" [her hands rose in appeal] --"did you tear this book?" A thought shot like lightning through Tom's brain. He sprang to his feet and shouted--"I done it!" The school stared in perplexity at this incredible folly. Tom stood a moment, to gather his dismembered faculties; and when he stepped forward to go to his punishment the surprise, the gratitude, the adoration that shone upon him out of poor Becky's eyes seemed pay enough for a hundred floggings. Inspired by the splendor of his own act, he took without an outcry the most merciless flaying that even Mr. Dobbins had ever administered; and also received with indifference the added cruelty of a command to remain two hours after school should be dismissed--for he knew who would wait for him outside till his captivity was done, and not count the tedious time as loss, either. Tom went to bed that night planning vengeance against Alfred Temple; for with shame and repentance Becky had told him all, not forgetting her own treachery; but even the longing for vengeance had to give way, soon, to pleasanter musings, and he fell asleep at last with Becky's latest words lingering dreamily in his ear-- "Tom, how COULD you be so noble!" CHAPTER XXI VACATION was approaching. The schoolmaster, always severe, grew severer and more exacting than ever, for he wanted the school to make a good showing on "Examination" day. His rod and his ferule were seldom idle now--at least among the smaller pupils. Only the biggest boys, and young ladies of eighteen and twenty, escaped lashing. Mr. Dobbins' lashings were very vigorous ones, too; for although he carried, under his wig, a perfectly bald and shiny head, he had only reached middle age, and there was no sign of feebleness in his muscle. As the great day approached, all the tyranny that was in him came to the surface; he seemed to take a vindictive pleasure in punishing the least shortcomings. The consequence was, that the smaller boys spent their days in terror and suffering and their nights in plotting revenge. They threw away no opportunity to do the master a mischief. But he kept ahead all the time. The retribution that followed every vengeful success was so sweeping and majestic that the boys always retired from the field badly worsted. At last they conspired together and hit upon a plan that promised a dazzling victory. They swore in the sign-painter's boy, told him the scheme, and asked his help. He had his own reasons for being delighted, for the master boarded in his father's family and had given the boy ample cause to hate him. The master's wife would go on a visit to the country in a few days, and there would be nothing to interfere with the plan; the master always prepared himself for great occasions by getting pretty well fuddled, and the sign-painter's boy said that when the dominie had reached the proper condition on Examination Evening he would "manage the thing" while he napped in his chair; then he would have him awakened at the right time and hurried away to school. In the fulness of time the interesting occasion arrived. At eight in the evening the schoolhouse was brilliantly lighted, and adorned with wreaths and festoons of foliage and flowers. The master sat throned in his great chair upon a raised platform, with his blackboard behind him. He was looking tolerably mellow. Three rows of benches on each side and six rows in front of him were occupied by the dignitaries of the town and by the parents of the pupils. To his left, back of the rows of citizens, was a spacious temporary platform upon which were seated the scholars who were to take part in the exercises of the evening; rows of small boys, washed and dressed to an intolerable state of discomfort; rows of gawky big boys; snowbanks of girls and young ladies clad in lawn and muslin and conspicuously conscious of their bare arms, their grandmothers' ancient trinkets, their bits of pink and blue ribbon and the flowers in their hair. All the rest of the house was filled with non-participating scholars. The exercises began. A very little boy stood up and sheepishly recited, "You'd scarce expect one of my age to speak in public on the stage," etc.--accompanying himself with the painfully exact and spasmodic gestures which a machine might have used--supposing the machine to be a trifle out of order. But he got through safely, though cruelly scared, and got a fine round of applause when he made his manufactured bow and retired. A little shamefaced girl lisped, "Mary had a little lamb," etc., performed a compassion-inspiring curtsy, got her meed of applause, and sat down flushed and happy. Tom Sawyer stepped forward with conceited confidence and soared into the unquenchable and indestructible "Give me liberty or give me death" speech, with fine fury and frantic gesticulation, and broke down in the middle of it. A ghastly stage-fright seized him, his legs quaked under him and he was like to choke. True, he had the manifest sympathy of the house but he had the house's silence, too, which was even worse than its sympathy. The master frowned, and this completed the disaster. Tom struggled awhile and then retired, utterly defeated. There was a weak attempt at applause, but it died early. "The Boy Stood on the Burning Deck" followed; also "The Assyrian Came Down," and other declamatory gems. Then there were reading exercises, and a spelling fight. The meagre Latin class recited with honor. The prime feature of the evening was in order, now--original "compositions" by the young ladies. Each in her turn stepped forward to the edge of the platform, cleared her throat, held up her manuscript (tied with dainty ribbon), and proceeded to read, with labored attention to "expression" and punctuation. The themes were the same that had been illuminated upon similar occasions by their mothers before them, their grandmothers, and doubtless all their ancestors in the female line clear back to the Crusades. "Friendship" was one; "Memories of Other Days"; "Religion in History"; "Dream Land"; "The Advantages of Culture"; "Forms of Political Government Compared and Contrasted"; "Melancholy"; "Filial Love"; "Heart Longings," etc., etc. A prevalent feature in these compositions was a nursed and petted melancholy; another was a wasteful and opulent gush of "fine language"; another was a tendency to lug in by the ears particularly prized words and phrases until they were worn entirely out; and a peculiarity that conspicuously marked and marred them was the inveterate and intolerable sermon that wagged its crippled tail at the end of each and every one of them. No matter what the subject might be, a brain-racking effort was made to squirm it into some aspect or other that the moral and religious mind could contemplate with edification. The glaring insincerity of these sermons was not sufficient to compass the banishment of the fashion from the schools, and it is not sufficient to-day; it never will be sufficient while the world stands, perhaps. There is no school in all our land where the young ladies do not feel obliged to close their compositions with a sermon; and you will find that the sermon of the most frivolous and the least religious girl in the school is always the longest and the most relentlessly pious. But enough of this. Homely truth is unpalatable. Let us return to the "Examination." The first composition that was read was one entitled "Is this, then, Life?" Perhaps the reader can endure an extract from it: "In the common walks of life, with what delightful emotions does the youthful mind look forward to some anticipated scene of festivity! Imagination is busy sketching rose-tinted pictures of joy. In fancy, the voluptuous votary of fashion sees herself amid the festive throng, 'the observed of all observers.' Her graceful form, arrayed in snowy robes, is whirling through the mazes of the joyous dance; her eye is brightest, her step is lightest in the gay assembly. "In such delicious fancies time quickly glides by, and the welcome hour arrives for her entrance into the Elysian world, of which she has had such bright dreams. How fairy-like does everything appear to her enchanted vision! Each new scene is more charming than the last. But after a while she finds that beneath this goodly exterior, all is vanity, the flattery which once charmed her soul, now grates harshly upon her ear; the ball-room has lost its charms; and with wasted health and imbittered heart, she turns away with the conviction that earthly pleasures cannot satisfy the longings of the soul!" And so forth and so on. There was a buzz of gratification from time to time during the reading, accompanied by whispered ejaculations of "How sweet!" "How eloquent!" "So true!" etc., and after the thing had closed with a peculiarly afflicting sermon the applause was enthusiastic. Then arose a slim, melancholy girl, whose face had the "interesting" paleness that comes of pills and indigestion, and read a "poem." Two stanzas of it will do: "A MISSOURI MAIDEN'S FAREWELL TO ALABAMA "Alabama, good-bye! I love thee well! But yet for a while do I leave thee now! Sad, yes, sad thoughts of thee my heart doth swell, And burning recollections throng my brow! For I have wandered through thy flowery woods; Have roamed and read near Tallapoosa's stream; Have listened to Tallassee's warring floods, And wooed on Coosa's side Aurora's beam. "Yet shame I not to bear an o'er-full heart, Nor blush to turn behind my tearful eyes; 'Tis from no stranger land I now must part, 'Tis to no strangers left I yield these sighs. Welcome and home were mine within this State, Whose vales I leave--whose spires fade fast from me And cold must be mine eyes, and heart, and tete, When, dear Alabama! they turn cold on thee!" There were very few there who knew what "tete" meant, but the poem was very satisfactory, nevertheless. Next appeared a dark-complexioned, black-eyed, black-haired young lady, who paused an impressive moment, assumed a tragic expression, and began to read in a measured, solemn tone: "A VISION "Dark and tempestuous was night. Around the throne on high not a single star quivered; but the deep intonations of the heavy thunder constantly vibrated upon the ear; whilst the terrific lightning revelled in angry mood through the cloudy chambers of heaven, seeming to scorn the power exerted over its terror by the illustrious Franklin! Even the boisterous winds unanimously came forth from their mystic homes, and blustered about as if to enhance by their aid the wildness of the scene. "At such a time, so dark, so dreary, for human sympathy my very spirit sighed; but instead thereof, "'My dearest friend, my counsellor, my comforter and guide--My joy in grief, my second bliss in joy,' came to my side. She moved like one of those bright beings pictured in the sunny walks of fancy's Eden by the romantic and young, a queen of beauty unadorned save by her own transcendent loveliness. So soft was her step, it failed to make even a sound, and but for the magical thrill imparted by her genial touch, as other unobtrusive beauties, she would have glided away un-perceived--unsought. A strange sadness rested upon her features, like icy tears upon the robe of December, as she pointed to the contending elements without, and bade me contemplate the two beings presented." This nightmare occupied some ten pages of manuscript and wound up with a sermon so destructive of all hope to non-Presbyterians that it took the first prize. This composition was considered to be the very finest effort of the evening. The mayor of the village, in delivering the prize to the author of it, made a warm speech in which he said that it was by far the most "eloquent" thing he had ever listened to, and that Daniel Webster himself might well be proud of it. It may be remarked, in passing, that the number of compositions in which the word "beauteous" was over-fondled, and human experience referred to as "life's page," was up to the usual average. Now the master, mellow almost to the verge of geniality, put his chair aside, turned his back to the audience, and began to draw a map of America on the blackboard, to exercise the geography class upon. But he made a sad business of it with his unsteady hand, and a smothered titter rippled over the house. He knew what the matter was, and set himself to right it. He sponged out lines and remade them; but he only distorted them more than ever, and the tittering was more pronounced. He threw his entire attention upon his work, now, as if determined not to be put down by the mirth. He felt that all eyes were fastened upon him; he imagined he was succeeding, and yet the tittering continued; it even manifestly increased. And well it might. There was a garret above, pierced with a scuttle over his head; and down through this scuttle came a cat, suspended around the haunches by a string; she had a rag tied about her head and jaws to keep her from mewing; as she slowly descended she curved upward and clawed at the string, she swung downward and clawed at the intangible air. The tittering rose higher and higher--the cat was within six inches of the absorbed teacher's head--down, down, a little lower, and she grabbed his wig with her desperate claws, clung to it, and was snatched up into the garret in an instant with her trophy still in her possession! And how the light did blaze abroad from the master's bald pate--for the sign-painter's boy had GILDED it! That broke up the meeting. The boys were avenged. Vacation had come. NOTE:--The pretended "compositions" quoted in this chapter are taken without alteration from a volume entitled "Prose and Poetry, by a Western Lady"--but they are exactly and precisely after the schoolgirl pattern, and hence are much happier than any mere imitations could be. CHAPTER XXII TOM joined the new order of Cadets of Temperance, being attracted by the showy character of their "regalia." He promised to abstain from smoking, chewing, and profanity as long as he remained a member. Now he found out a new thing--namely, that to promise not to do a thing is the surest way in the world to make a body want to go and do that very thing. Tom soon found himself tormented with a desire to drink and swear; the desire grew to be so intense that nothing but the hope of a chance to display himself in his red sash kept him from withdrawing from the order. Fourth of July was coming; but he soon gave that up --gave it up before he had worn his shackles over forty-eight hours--and fixed his hopes upon old Judge Frazer, justice of the peace, who was apparently on his deathbed and would have a big public funeral, since he was so high an official. During three days Tom was deeply concerned about the Judge's condition and hungry for news of it. Sometimes his hopes ran high--so high that he would venture to get out his regalia and practise before the looking-glass. But the Judge had a most discouraging way of fluctuating. At last he was pronounced upon the mend--and then convalescent. Tom was disgusted; and felt a sense of injury, too. He handed in his resignation at once--and that night the Judge suffered a relapse and died. Tom resolved that he would never trust a man like that again. The funeral was a fine thing. The Cadets paraded in a style calculated to kill the late member with envy. Tom was a free boy again, however --there was something in that. He could drink and swear, now--but found to his surprise that he did not want to. The simple fact that he could, took the desire away, and the charm of it. Tom presently wondered to find that his coveted vacation was beginning to hang a little heavily on his hands. He attempted a diary--but nothing happened during three days, and so he abandoned it. The first of all the negro minstrel shows came to town, and made a sensation. Tom and Joe Harper got up a band of performers and were happy for two days. Even the Glorious Fourth was in some sense a failure, for it rained hard, there was no procession in consequence, and the greatest man in the world (as Tom supposed), Mr. Benton, an actual United States Senator, proved an overwhelming disappointment--for he was not twenty-five feet high, nor even anywhere in the neighborhood of it. A circus came. The boys played circus for three days afterward in tents made of rag carpeting--admission, three pins for boys, two for girls--and then circusing was abandoned. A phrenologist and a mesmerizer came--and went again and left the village duller and drearier than ever. There were some boys-and-girls' parties, but they were so few and so delightful that they only made the aching voids between ache the harder. Becky Thatcher was gone to her Constantinople home to stay with her parents during vacation--so there was no bright side to life anywhere. The dreadful secret of the murder was a chronic misery. It was a very cancer for permanency and pain. Then came the measles. During two long weeks Tom lay a prisoner, dead to the world and its happenings. He was very ill, he was interested in nothing. When he got upon his feet at last and moved feebly down-town, a melancholy change had come over everything and every creature. There had been a "revival," and everybody had "got religion," not only the adults, but even the boys and girls. Tom went about, hoping against hope for the sight of one blessed sinful face, but disappointment crossed him everywhere. He found Joe Harper studying a Testament, and turned sadly away from the depressing spectacle. He sought Ben Rogers, and found him visiting the poor with a basket of tracts. He hunted up Jim Hollis, who called his attention to the precious blessing of his late measles as a warning. Every boy he encountered added another ton to his depression; and when, in desperation, he flew for refuge at last to the bosom of Huckleberry Finn and was received with a Scriptural quotation, his heart broke and he crept home and to bed realizing that he alone of all the town was lost, forever and forever. And that night there came on a terrific storm, with driving rain, awful claps of thunder and blinding sheets of lightning. He covered his head with the bedclothes and waited in a horror of suspense for his doom; for he had not the shadow of a doubt that all this hubbub was about him. He believed he had taxed the forbearance of the powers above to the extremity of endurance and that this was the result. It might have seemed to him a waste of pomp and ammunition to kill a bug with a battery of artillery, but there seemed nothing incongruous about the getting up such an expensive thunderstorm as this to knock the turf from under an insect like himself. By and by the tempest spent itself and died without accomplishing its object. The boy's first impulse was to be grateful, and reform. His second was to wait--for there might not be any more storms. The next day the doctors were back; Tom had relapsed. The three weeks he spent on his back this time seemed an entire age. When he got abroad at last he was hardly grateful that he had been spared, remembering how lonely was his estate, how companionless and forlorn he was. He drifted listlessly down the street and found Jim Hollis acting as judge in a juvenile court that was trying a cat for murder, in the presence of her victim, a bird. He found Joe Harper and Huck Finn up an alley eating a stolen melon. Poor lads! they--like Tom--had suffered a relapse. CHAPTER XXIII AT last the sleepy atmosphere was stirred--and vigorously: the murder trial came on in the court. It became the absorbing topic of village talk immediately. Tom could not get away from it. Every reference to the murder sent a shudder to his heart, for his troubled conscience and fears almost persuaded him that these remarks were put forth in his hearing as "feelers"; he did not see how he could be suspected of knowing anything about the murder, but still he could not be comfortable in the midst of this gossip. It kept him in a cold shiver all the time. He took Huck to a lonely place to have a talk with him. It would be some relief to unseal his tongue for a little while; to divide his burden of distress with another sufferer. Moreover, he wanted to assure himself that Huck had remained discreet. "Huck, have you ever told anybody about--that?" "'Bout what?" "You know what." "Oh--'course I haven't." "Never a word?" "Never a solitary word, so help me. What makes you ask?" "Well, I was afeard." "Why, Tom Sawyer, we wouldn't be alive two days if that got found out. YOU know that." Tom felt more comfortable. After a pause: "Huck, they couldn't anybody get you to tell, could they?" "Get me to tell? Why, if I wanted that half-breed devil to drownd me they could get me to tell. They ain't no different way." "Well, that's all right, then. I reckon we're safe as long as we keep mum. But let's swear again, anyway. It's more surer." "I'm agreed." So they swore again with dread solemnities. "What is the talk around, Huck? I've heard a power of it." "Talk? Well, it's just Muff Potter, Muff Potter, Muff Potter all the time. It keeps me in a sweat, constant, so's I want to hide som'ers." "That's just the same way they go on round me. I reckon he's a goner. Don't you feel sorry for him, sometimes?" "Most always--most always. He ain't no account; but then he hain't ever done anything to hurt anybody. Just fishes a little, to get money to get drunk on--and loafs around considerable; but lord, we all do that--leastways most of us--preachers and such like. But he's kind of good--he give me half a fish, once, when there warn't enough for two; and lots of times he's kind of stood by me when I was out of luck." "Well, he's mended kites for me, Huck, and knitted hooks on to my line. I wish we could get him out of there." "My! we couldn't get him out, Tom. And besides, 'twouldn't do any good; they'd ketch him again." "Yes--so they would. But I hate to hear 'em abuse him so like the dickens when he never done--that." "I do too, Tom. Lord, I hear 'em say he's the bloodiest looking villain in this country, and they wonder he wasn't ever hung before." "Yes, they talk like that, all the time. I've heard 'em say that if he was to get free they'd lynch him." "And they'd do it, too." The boys had a long talk, but it brought them little comfort. As the twilight drew on, they found themselves hanging about the neighborhood of the little isolated jail, perhaps with an undefined hope that something would happen that might clear away their difficulties. But nothing happened; there seemed to be no angels or fairies interested in this luckless captive. The boys did as they had often done before--went to the cell grating and gave Potter some tobacco and matches. He was on the ground floor and there were no guards. His gratitude for their gifts had always smote their consciences before--it cut deeper than ever, this time. They felt cowardly and treacherous to the last degree when Potter said: "You've been mighty good to me, boys--better'n anybody else in this town. And I don't forget it, I don't. Often I says to myself, says I, 'I used to mend all the boys' kites and things, and show 'em where the good fishin' places was, and befriend 'em what I could, and now they've all forgot old Muff when he's in trouble; but Tom don't, and Huck don't--THEY don't forget him, says I, 'and I don't forget them.' Well, boys, I done an awful thing--drunk and crazy at the time--that's the only way I account for it--and now I got to swing for it, and it's right. Right, and BEST, too, I reckon--hope so, anyway. Well, we won't talk about that. I don't want to make YOU feel bad; you've befriended me. But what I want to say, is, don't YOU ever get drunk--then you won't ever get here. Stand a litter furder west--so--that's it; it's a prime comfort to see faces that's friendly when a body's in such a muck of trouble, and there don't none come here but yourn. Good friendly faces--good friendly faces. Git up on one another's backs and let me touch 'em. That's it. Shake hands--yourn'll come through the bars, but mine's too big. Little hands, and weak--but they've helped Muff Potter a power, and they'd help him more if they could." Tom went home miserable, and his dreams that night were full of horrors. The next day and the day after, he hung about the court-room, drawn by an almost irresistible impulse to go in, but forcing himself to stay out. Huck was having the same experience. They studiously avoided each other. Each wandered away, from time to time, but the same dismal fascination always brought them back presently. Tom kept his ears open when idlers sauntered out of the court-room, but invariably heard distressing news--the toils were closing more and more relentlessly around poor Potter. At the end of the second day the village talk was to the effect that Injun Joe's evidence stood firm and unshaken, and that there was not the slightest question as to what the jury's verdict would be. Tom was out late, that night, and came to bed through the window. He was in a tremendous state of excitement. It was hours before he got to sleep. All the village flocked to the court-house the next morning, for this was to be the great day. Both sexes were about equally represented in the packed audience. After a long wait the jury filed in and took their places; shortly afterward, Potter, pale and haggard, timid and hopeless, was brought in, with chains upon him, and seated where all the curious eyes could stare at him; no less conspicuous was Injun Joe, stolid as ever. There was another pause, and then the judge arrived and the sheriff proclaimed the opening of the court. The usual whisperings among the lawyers and gathering together of papers followed. These details and accompanying delays worked up an atmosphere of preparation that was as impressive as it was fascinating. Now a witness was called who testified that he found Muff Potter washing in the brook, at an early hour of the morning that the murder was discovered, and that he immediately sneaked away. After some further questioning, counsel for the prosecution said: "Take the witness." The prisoner raised his eyes for a moment, but dropped them again when his own counsel said: "I have no questions to ask him." The next witness proved the finding of the knife near the corpse. Counsel for the prosecution said: "Take the witness." "I have no questions to ask him," Potter's lawyer replied. A third witness swore he had often seen the knife in Potter's possession. "Take the witness." Counsel for Potter declined to question him. The faces of the audience began to betray annoyance. Did this attorney mean to throw away his client's life without an effort? Several witnesses deposed concerning Potter's guilty behavior when brought to the scene of the murder. They were allowed to leave the stand without being cross-questioned. Every detail of the damaging circumstances that occurred in the graveyard upon that morning which all present remembered so well was brought out by credible witnesses, but none of them were cross-examined by Potter's lawyer. The perplexity and dissatisfaction of the house expressed itself in murmurs and provoked a reproof from the bench. Counsel for the prosecution now said: "By the oaths of citizens whose simple word is above suspicion, we have fastened this awful crime, beyond all possibility of question, upon the unhappy prisoner at the bar. We rest our case here." A groan escaped from poor Potter, and he put his face in his hands and rocked his body softly to and fro, while a painful silence reigned in the court-room. Many men were moved, and many women's compassion testified itself in tears. Counsel for the defence rose and said: "Your honor, in our remarks at the opening of this trial, we foreshadowed our purpose to prove that our client did this fearful deed while under the influence of a blind and irresponsible delirium produced by drink. We have changed our mind. We shall not offer that plea." [Then to the clerk:] "Call Thomas Sawyer!" A puzzled amazement awoke in every face in the house, not even excepting Potter's. Every eye fastened itself with wondering interest upon Tom as he rose and took his place upon the stand. The boy looked wild enough, for he was badly scared. The oath was administered. "Thomas Sawyer, where were you on the seventeenth of June, about the hour of midnight?" Tom glanced at Injun Joe's iron face and his tongue failed him. The audience listened breathless, but the words refused to come. After a few moments, however, the boy got a little of his strength back, and managed to put enough of it into his voice to make part of the house hear: "In the graveyard!" "A little bit louder, please. Don't be afraid. You were--" "In the graveyard." A contemptuous smile flitted across Injun Joe's face. "Were you anywhere near Horse Williams' grave?" "Yes, sir." "Speak up--just a trifle louder. How near were you?" "Near as I am to you." "Were you hidden, or not?" "I was hid." "Where?" "Behind the elms that's on the edge of the grave." Injun Joe gave a barely perceptible start. "Any one with you?" "Yes, sir. I went there with--" "Wait--wait a moment. Never mind mentioning your companion's name. We will produce him at the proper time. Did you carry anything there with you." Tom hesitated and looked confused. "Speak out, my boy--don't be diffident. The truth is always respectable. What did you take there?" "Only a--a--dead cat." There was a ripple of mirth, which the court checked. "We will produce the skeleton of that cat. Now, my boy, tell us everything that occurred--tell it in your own way--don't skip anything, and don't be afraid." Tom began--hesitatingly at first, but as he warmed to his subject his words flowed more and more easily; in a little while every sound ceased but his own voice; every eye fixed itself upon him; with parted lips and bated breath the audience hung upon his words, taking no note of time, rapt in the ghastly fascinations of the tale. The strain upon pent emotion reached its climax when the boy said: "--and as the doctor fetched the board around and Muff Potter fell, Injun Joe jumped with the knife and--" Crash! Quick as lightning the half-breed sprang for a window, tore his way through all opposers, and was gone! CHAPTER XXIV TOM was a glittering hero once more--the pet of the old, the envy of the young. His name even went into immortal print, for the village paper magnified him. There were some that believed he would be President, yet, if he escaped hanging. As usual, the fickle, unreasoning world took Muff Potter to its bosom and fondled him as lavishly as it had abused him before. But that sort of conduct is to the world's credit; therefore it is not well to find fault with it. Tom's days were days of splendor and exultation to him, but his nights were seasons of horror. Injun Joe infested all his dreams, and always with doom in his eye. Hardly any temptation could persuade the boy to stir abroad after nightfall. Poor Huck was in the same state of wretchedness and terror, for Tom had told the whole story to the lawyer the night before the great day of the trial, and Huck was sore afraid that his share in the business might leak out, yet, notwithstanding Injun Joe's flight had saved him the suffering of testifying in court. The poor fellow had got the attorney to promise secrecy, but what of that? Since Tom's harassed conscience had managed to drive him to the lawyer's house by night and wring a dread tale from lips that had been sealed with the dismalest and most formidable of oaths, Huck's confidence in the human race was well-nigh obliterated. Daily Muff Potter's gratitude made Tom glad he had spoken; but nightly he wished he had sealed up his tongue. Half the time Tom was afraid Injun Joe would never be captured; the other half he was afraid he would be. He felt sure he never could draw a safe breath again until that man was dead and he had seen the corpse. Rewards had been offered, the country had been scoured, but no Injun Joe was found. One of those omniscient and awe-inspiring marvels, a detective, came up from St. Louis, moused around, shook his head, looked wise, and made that sort of astounding success which members of that craft usually achieve. That is to say, he "found a clew." But you can't hang a "clew" for murder, and so after that detective had got through and gone home, Tom felt just as insecure as he was before. The slow days drifted on, and each left behind it a slightly lightened weight of apprehension. CHAPTER XXV THERE comes a time in every rightly-constructed boy's life when he has a raging desire to go somewhere and dig for hidden treasure. This desire suddenly came upon Tom one day. He sallied out to find Joe Harper, but failed of success. Next he sought Ben Rogers; he had gone fishing. Presently he stumbled upon Huck Finn the Red-Handed. Huck would answer. Tom took him to a private place and opened the matter to him confidentially. Huck was willing. Huck was always willing to take a hand in any enterprise that offered entertainment and required no capital, for he had a troublesome superabundance of that sort of time which is not money. "Where'll we dig?" said Huck. "Oh, most anywhere." "Why, is it hid all around?" "No, indeed it ain't. It's hid in mighty particular places, Huck --sometimes on islands, sometimes in rotten chests under the end of a limb of an old dead tree, just where the shadow falls at midnight; but mostly under the floor in ha'nted houses." "Who hides it?" "Why, robbers, of course--who'd you reckon? Sunday-school sup'rintendents?" "I don't know. If 'twas mine I wouldn't hide it; I'd spend it and have a good time." "So would I. But robbers don't do that way. They always hide it and leave it there." "Don't they come after it any more?" "No, they think they will, but they generally forget the marks, or else they die. Anyway, it lays there a long time and gets rusty; and by and by somebody finds an old yellow paper that tells how to find the marks--a paper that's got to be ciphered over about a week because it's mostly signs and hy'roglyphics." "Hyro--which?" "Hy'roglyphics--pictures and things, you know, that don't seem to mean anything." "Have you got one of them papers, Tom?" "No." "Well then, how you going to find the marks?" "I don't want any marks. They always bury it under a ha'nted house or on an island, or under a dead tree that's got one limb sticking out. Well, we've tried Jackson's Island a little, and we can try it again some time; and there's the old ha'nted house up the Still-House branch, and there's lots of dead-limb trees--dead loads of 'em." "Is it under all of them?" "How you talk! No!" "Then how you going to know which one to go for?" "Go for all of 'em!" "Why, Tom, it'll take all summer." "Well, what of that? Suppose you find a brass pot with a hundred dollars in it, all rusty and gray, or rotten chest full of di'monds. How's that?" Huck's eyes glowed. "That's bully. Plenty bully enough for me. Just you gimme the hundred dollars and I don't want no di'monds." "All right. But I bet you I ain't going to throw off on di'monds. Some of 'em's worth twenty dollars apiece--there ain't any, hardly, but's worth six bits or a dollar." "No! Is that so?" "Cert'nly--anybody'll tell you so. Hain't you ever seen one, Huck?" "Not as I remember." "Oh, kings have slathers of them." "Well, I don' know no kings, Tom." "I reckon you don't. But if you was to go to Europe you'd see a raft of 'em hopping around." "Do they hop?" "Hop?--your granny! No!" "Well, what did you say they did, for?" "Shucks, I only meant you'd SEE 'em--not hopping, of course--what do they want to hop for?--but I mean you'd just see 'em--scattered around, you know, in a kind of a general way. Like that old humpbacked Richard." "Richard? What's his other name?" "He didn't have any other name. Kings don't have any but a given name." "No?" "But they don't." "Well, if they like it, Tom, all right; but I don't want to be a king and have only just a given name, like a nigger. But say--where you going to dig first?" "Well, I don't know. S'pose we tackle that old dead-limb tree on the hill t'other side of Still-House branch?" "I'm agreed." So they got a crippled pick and a shovel, and set out on their three-mile tramp. They arrived hot and panting, and threw themselves down in the shade of a neighboring elm to rest and have a smoke. "I like this," said Tom. "So do I." "Say, Huck, if we find a treasure here, what you going to do with your share?" "Well, I'll have pie and a glass of soda every day, and I'll go to every circus that comes along. I bet I'll have a gay time." "Well, ain't you going to save any of it?" "Save it? What for?" "Why, so as to have something to live on, by and by." "Oh, that ain't any use. Pap would come back to thish-yer town some day and get his claws on it if I didn't hurry up, and I tell you he'd clean it out pretty quick. What you going to do with yourn, Tom?" "I'm going to buy a new drum, and a sure-'nough sword, and a red necktie and a bull pup, and get married." "Married!" "That's it." "Tom, you--why, you ain't in your right mind." "Wait--you'll see." "Well, that's the foolishest thing you could do. Look at pap and my mother. Fight! Why, they used to fight all the time. I remember, mighty well." "That ain't anything. The girl I'm going to marry won't fight." "Tom, I reckon they're all alike. They'll all comb a body. Now you better think 'bout this awhile. I tell you you better. What's the name of the gal?" "It ain't a gal at all--it's a girl." "It's all the same, I reckon; some says gal, some says girl--both's right, like enough. Anyway, what's her name, Tom?" "I'll tell you some time--not now." "All right--that'll do. Only if you get married I'll be more lonesomer than ever." "No you won't. You'll come and live with me. Now stir out of this and we'll go to digging." They worked and sweated for half an hour. No result. They toiled another half-hour. Still no result. Huck said: "Do they always bury it as deep as this?" "Sometimes--not always. Not generally. I reckon we haven't got the right place." So they chose a new spot and began again. The labor dragged a little, but still they made progress. They pegged away in silence for some time. Finally Huck leaned on his shovel, swabbed the beaded drops from his brow with his sleeve, and said: "Where you going to dig next, after we get this one?" "I reckon maybe we'll tackle the old tree that's over yonder on Cardiff Hill back of the widow's." "I reckon that'll be a good one. But won't the widow take it away from us, Tom? It's on her land." "SHE take it away! Maybe she'd like to try it once. Whoever finds one of these hid treasures, it belongs to him. It don't make any difference whose land it's on." That was satisfactory. The work went on. By and by Huck said: "Blame it, we must be in the wrong place again. What do you think?" "It is mighty curious, Huck. I don't understand it. Sometimes witches interfere. I reckon maybe that's what's the trouble now." "Shucks! Witches ain't got no power in the daytime." "Well, that's so. I didn't think of that. Oh, I know what the matter is! What a blamed lot of fools we are! You got to find out where the shadow of the limb falls at midnight, and that's where you dig!" "Then consound it, we've fooled away all this work for nothing. Now hang it all, we got to come back in the night. It's an awful long way. Can you get out?" "I bet I will. We've got to do it to-night, too, because if somebody sees these holes they'll know in a minute what's here and they'll go for it." "Well, I'll come around and maow to-night." "All right. Let's hide the tools in the bushes." The boys were there that night, about the appointed time. They sat in the shadow waiting. It was a lonely place, and an hour made solemn by old traditions. Spirits whispered in the rustling leaves, ghosts lurked in the murky nooks, the deep baying of a hound floated up out of the distance, an owl answered with his sepulchral note. The boys were subdued by these solemnities, and talked little. By and by they judged that twelve had come; they marked where the shadow fell, and began to dig. Their hopes commenced to rise. Their interest grew stronger, and their industry kept pace with it. The hole deepened and still deepened, but every time their hearts jumped to hear the pick strike upon something, they only suffered a new disappointment. It was only a stone or a chunk. At last Tom said: "It ain't any use, Huck, we're wrong again." "Well, but we CAN'T be wrong. We spotted the shadder to a dot." "I know it, but then there's another thing." "What's that?". "Why, we only guessed at the time. Like enough it was too late or too early." Huck dropped his shovel. "That's it," said he. "That's the very trouble. We got to give this one up. We can't ever tell the right time, and besides this kind of thing's too awful, here this time of night with witches and ghosts a-fluttering around so. I feel as if something's behind me all the time; and I'm afeard to turn around, becuz maybe there's others in front a-waiting for a chance. I been creeping all over, ever since I got here." "Well, I've been pretty much so, too, Huck. They most always put in a dead man when they bury a treasure under a tree, to look out for it." "Lordy!" "Yes, they do. I've always heard that." "Tom, I don't like to fool around much where there's dead people. A body's bound to get into trouble with 'em, sure." "I don't like to stir 'em up, either. S'pose this one here was to stick his skull out and say something!" "Don't Tom! It's awful." "Well, it just is. Huck, I don't feel comfortable a bit." "Say, Tom, let's give this place up, and try somewheres else." "All right, I reckon we better." "What'll it be?" Tom considered awhile; and then said: "The ha'nted house. That's it!" "Blame it, I don't like ha'nted houses, Tom. Why, they're a dern sight worse'n dead people. Dead people might talk, maybe, but they don't come sliding around in a shroud, when you ain't noticing, and peep over your shoulder all of a sudden and grit their teeth, the way a ghost does. I couldn't stand such a thing as that, Tom--nobody could." "Yes, but, Huck, ghosts don't travel around only at night. They won't hender us from digging there in the daytime." "Well, that's so. But you know mighty well people don't go about that ha'nted house in the day nor the night." "Well, that's mostly because they don't like to go where a man's been murdered, anyway--but nothing's ever been seen around that house except in the night--just some blue lights slipping by the windows--no regular ghosts." "Well, where you see one of them blue lights flickering around, Tom, you can bet there's a ghost mighty close behind it. It stands to reason. Becuz you know that they don't anybody but ghosts use 'em." "Yes, that's so. But anyway they don't come around in the daytime, so what's the use of our being afeard?" "Well, all right. We'll tackle the ha'nted house if you say so--but I reckon it's taking chances." They had started down the hill by this time. There in the middle of the moonlit valley below them stood the "ha'nted" house, utterly isolated, its fences gone long ago, rank weeds smothering the very doorsteps, the chimney crumbled to ruin, the window-sashes vacant, a corner of the roof caved in. The boys gazed awhile, half expecting to see a blue light flit past a window; then talking in a low tone, as befitted the time and the circumstances, they struck far off to the right, to give the haunted house a wide berth, and took their way homeward through the woods that adorned the rearward side of Cardiff Hill. CHAPTER XXVI ABOUT noon the next day the boys arrived at the dead tree; they had come for their tools. Tom was impatient to go to the haunted house; Huck was measurably so, also--but suddenly said: "Lookyhere, Tom, do you know what day it is?" Tom mentally ran over the days of the week, and then quickly lifted his eyes with a startled look in them-- "My! I never once thought of it, Huck!" "Well, I didn't neither, but all at once it popped onto me that it was Friday." "Blame it, a body can't be too careful, Huck. We might 'a' got into an awful scrape, tackling such a thing on a Friday." "MIGHT! Better say we WOULD! There's some lucky days, maybe, but Friday ain't." "Any fool knows that. I don't reckon YOU was the first that found it out, Huck." "Well, I never said I was, did I? And Friday ain't all, neither. I had a rotten bad dream last night--dreampt about rats." "No! Sure sign of trouble. Did they fight?" "No." "Well, that's good, Huck. When they don't fight it's only a sign that there's trouble around, you know. All we got to do is to look mighty sharp and keep out of it. We'll drop this thing for to-day, and play. Do you know Robin Hood, Huck?" "No. Who's Robin Hood?" "Why, he was one of the greatest men that was ever in England--and the best. He was a robber." "Cracky, I wisht I was. Who did he rob?" "Only sheriffs and bishops and rich people and kings, and such like. But he never bothered the poor. He loved 'em. He always divided up with 'em perfectly square." "Well, he must 'a' been a brick." "I bet you he was, Huck. Oh, he was the noblest man that ever was. They ain't any such men now, I can tell you. He could lick any man in England, with one hand tied behind him; and he could take his yew bow and plug a ten-cent piece every time, a mile and a half." "What's a YEW bow?" "I don't know. It's some kind of a bow, of course. And if he hit that dime only on the edge he would set down and cry--and curse. But we'll play Robin Hood--it's nobby fun. I'll learn you." "I'm agreed." So they played Robin Hood all the afternoon, now and then casting a yearning eye down upon the haunted house and passing a remark about the morrow's prospects and possibilities there. As the sun began to sink into the west they took their way homeward athwart the long shadows of the trees and soon were buried from sight in the forests of Cardiff Hill. On Saturday, shortly after noon, the boys were at the dead tree again. They had a smoke and a chat in the shade, and then dug a little in their last hole, not with great hope, but merely because Tom said there were so many cases where people had given up a treasure after getting down within six inches of it, and then somebody else had come along and turned it up with a single thrust of a shovel. The thing failed this time, however, so the boys shouldered their tools and went away feeling that they had not trifled with fortune, but had fulfilled all the requirements that belong to the business of treasure-hunting. When they reached the haunted house there was something so weird and grisly about the dead silence that reigned there under the baking sun, and something so depressing about the loneliness and desolation of the place, that they were afraid, for a moment, to venture in. Then they crept to the door and took a trembling peep. They saw a weed-grown, floorless room, unplastered, an ancient fireplace, vacant windows, a ruinous staircase; and here, there, and everywhere hung ragged and abandoned cobwebs. They presently entered, softly, with quickened pulses, talking in whispers, ears alert to catch the slightest sound, and muscles tense and ready for instant retreat. In a little while familiarity modified their fears and they gave the place a critical and interested examination, rather admiring their own boldness, and wondering at it, too. Next they wanted to look up-stairs. This was something like cutting off retreat, but they got to daring each other, and of course there could be but one result--they threw their tools into a corner and made the ascent. Up there were the same signs of decay. In one corner they found a closet that promised mystery, but the promise was a fraud--there was nothing in it. Their courage was up now and well in hand. They were about to go down and begin work when-- "Sh!" said Tom. "What is it?" whispered Huck, blanching with fright. "Sh!... There!... Hear it?" "Yes!... Oh, my! Let's run!" "Keep still! Don't you budge! They're coming right toward the door." The boys stretched themselves upon the floor with their eyes to knot-holes in the planking, and lay waiting, in a misery of fear. "They've stopped.... No--coming.... Here they are. Don't whisper another word, Huck. My goodness, I wish I was out of this!" Two men entered. Each boy said to himself: "There's the old deaf and dumb Spaniard that's been about town once or twice lately--never saw t'other man before." "T'other" was a ragged, unkempt creature, with nothing very pleasant in his face. The Spaniard was wrapped in a serape; he had bushy white whiskers; long white hair flowed from under his sombrero, and he wore green goggles. When they came in, "t'other" was talking in a low voice; they sat down on the ground, facing the door, with their backs to the wall, and the speaker continued his remarks. His manner became less guarded and his words more distinct as he proceeded: "No," said he, "I've thought it all over, and I don't like it. It's dangerous." "Dangerous!" grunted the "deaf and dumb" Spaniard--to the vast surprise of the boys. "Milksop!" This voice made the boys gasp and quake. It was Injun Joe's! There was silence for some time. Then Joe said: "What's any more dangerous than that job up yonder--but nothing's come of it." "That's different. Away up the river so, and not another house about. 'Twon't ever be known that we tried, anyway, long as we didn't succeed." "Well, what's more dangerous than coming here in the daytime!--anybody would suspicion us that saw us." "I know that. But there warn't any other place as handy after that fool of a job. I want to quit this shanty. I wanted to yesterday, only it warn't any use trying to stir out of here, with those infernal boys playing over there on the hill right in full view." "Those infernal boys" quaked again under the inspiration of this remark, and thought how lucky it was that they had remembered it was Friday and concluded to wait a day. They wished in their hearts they had waited a year. The two men got out some food and made a luncheon. After a long and thoughtful silence, Injun Joe said: "Look here, lad--you go back up the river where you belong. Wait there till you hear from me. I'll take the chances on dropping into this town just once more, for a look. We'll do that 'dangerous' job after I've spied around a little and think things look well for it. Then for Texas! We'll leg it together!" This was satisfactory. Both men presently fell to yawning, and Injun Joe said: "I'm dead for sleep! It's your turn to watch." He curled down in the weeds and soon began to snore. His comrade stirred him once or twice and he became quiet. Presently the watcher began to nod; his head drooped lower and lower, both men began to snore now. The boys drew a long, grateful breath. Tom whispered: "Now's our chance--come!" Huck said: "I can't--I'd die if they was to wake." Tom urged--Huck held back. At last Tom rose slowly and softly, and started alone. But the first step he made wrung such a hideous creak from the crazy floor that he sank down almost dead with fright. He never made a second attempt. The boys lay there counting the dragging moments till it seemed to them that time must be done and eternity growing gray; and then they were grateful to note that at last the sun was setting. Now one snore ceased. Injun Joe sat up, stared around--smiled grimly upon his comrade, whose head was drooping upon his knees--stirred him up with his foot and said: "Here! YOU'RE a watchman, ain't you! All right, though--nothing's happened." "My! have I been asleep?" "Oh, partly, partly. Nearly time for us to be moving, pard. What'll we do with what little swag we've got left?" "I don't know--leave it here as we've always done, I reckon. No use to take it away till we start south. Six hundred and fifty in silver's something to carry." "Well--all right--it won't matter to come here once more." "No--but I'd say come in the night as we used to do--it's better." "Yes: but look here; it may be a good while before I get the right chance at that job; accidents might happen; 'tain't in such a very good place; we'll just regularly bury it--and bury it deep." "Good idea," said the comrade, who walked across the room, knelt down, raised one of the rearward hearth-stones and took out a bag that jingled pleasantly. He subtracted from it twenty or thirty dollars for himself and as much for Injun Joe, and passed the bag to the latter, who was on his knees in the corner, now, digging with his bowie-knife. The boys forgot all their fears, all their miseries in an instant. With gloating eyes they watched every movement. Luck!--the splendor of it was beyond all imagination! Six hundred dollars was money enough to make half a dozen boys rich! Here was treasure-hunting under the happiest auspices--there would not be any bothersome uncertainty as to where to dig. They nudged each other every moment--eloquent nudges and easily understood, for they simply meant--"Oh, but ain't you glad NOW we're here!" Joe's knife struck upon something. "Hello!" said he. "What is it?" said his comrade. "Half-rotten plank--no, it's a box, I believe. Here--bear a hand and we'll see what it's here for. Never mind, I've broke a hole." He reached his hand in and drew it out-- "Man, it's money!" The two men examined the handful of coins. They were gold. The boys above were as excited as themselves, and as delighted. Joe's comrade said: "We'll make quick work of this. There's an old rusty pick over amongst the weeds in the corner the other side of the fireplace--I saw it a minute ago." He ran and brought the boys' pick and shovel. Injun Joe took the pick, looked it over critically, shook his head, muttered something to himself, and then began to use it. The box was soon unearthed. It was not very large; it was iron bound and had been very strong before the slow years had injured it. The men contemplated the treasure awhile in blissful silence. "Pard, there's thousands of dollars here," said Injun Joe. "'Twas always said that Murrel's gang used to be around here one summer," the stranger observed. "I know it," said Injun Joe; "and this looks like it, I should say." "Now you won't need to do that job." The half-breed frowned. Said he: "You don't know me. Least you don't know all about that thing. 'Tain't robbery altogether--it's REVENGE!" and a wicked light flamed in his eyes. "I'll need your help in it. When it's finished--then Texas. Go home to your Nance and your kids, and stand by till you hear from me." "Well--if you say so; what'll we do with this--bury it again?" "Yes. [Ravishing delight overhead.] NO! by the great Sachem, no! [Profound distress overhead.] I'd nearly forgot. That pick had fresh earth on it! [The boys were sick with terror in a moment.] What business has a pick and a shovel here? What business with fresh earth on them? Who brought them here--and where are they gone? Have you heard anybody?--seen anybody? What! bury it again and leave them to come and see the ground disturbed? Not exactly--not exactly. We'll take it to my den." "Why, of course! Might have thought of that before. You mean Number One?" "No--Number Two--under the cross. The other place is bad--too common." "All right. It's nearly dark enough to start." Injun Joe got up and went about from window to window cautiously peeping out. Presently he said: "Who could have brought those tools here? Do you reckon they can be up-stairs?" The boys' breath forsook them. Injun Joe put his hand on his knife, halted a moment, undecided, and then turned toward the stairway. The boys thought of the closet, but their strength was gone. The steps came creaking up the stairs--the intolerable distress of the situation woke the stricken resolution of the lads--they were about to spring for the closet, when there was a crash of rotten timbers and Injun Joe landed on the ground amid the debris of the ruined stairway. He gathered himself up cursing, and his comrade said: "Now what's the use of all that? If it's anybody, and they're up there, let them STAY there--who cares? If they want to jump down, now, and get into trouble, who objects? It will be dark in fifteen minutes --and then let them follow us if they want to. I'm willing. In my opinion, whoever hove those things in here caught a sight of us and took us for ghosts or devils or something. I'll bet they're running yet." Joe grumbled awhile; then he agreed with his friend that what daylight was left ought to be economized in getting things ready for leaving. Shortly afterward they slipped out of the house in the deepening twilight, and moved toward the river with their precious box. Tom and Huck rose up, weak but vastly relieved, and stared after them through the chinks between the logs of the house. Follow? Not they. They were content to reach ground again without broken necks, and take the townward track over the hill. They did not talk much. They were too much absorbed in hating themselves--hating the ill luck that made them take the spade and the pick there. But for that, Injun Joe never would have suspected. He would have hidden the silver with the gold to wait there till his "revenge" was satisfied, and then he would have had the misfortune to find that money turn up missing. Bitter, bitter luck that the tools were ever brought there! They resolved to keep a lookout for that Spaniard when he should come to town spying out for chances to do his revengeful job, and follow him to "Number Two," wherever that might be. Then a ghastly thought occurred to Tom. "Revenge? What if he means US, Huck!" "Oh, don't!" said Huck, nearly fainting. They talked it all over, and as they entered town they agreed to believe that he might possibly mean somebody else--at least that he might at least mean nobody but Tom, since only Tom had testified. Very, very small comfort it was to Tom to be alone in danger! Company would be a palpable improvement, he thought. CHAPTER XXVII THE adventure of the day mightily tormented Tom's dreams that night. Four times he had his hands on that rich treasure and four times it wasted to nothingness in his fingers as sleep forsook him and wakefulness brought back the hard reality of his misfortune. As he lay in the early morning recalling the incidents of his great adventure, he noticed that they seemed curiously subdued and far away--somewhat as if they had happened in another world, or in a time long gone by. Then it occurred to him that the great adventure itself must be a dream! There was one very strong argument in favor of this idea--namely, that the quantity of coin he had seen was too vast to be real. He had never seen as much as fifty dollars in one mass before, and he was like all boys of his age and station in life, in that he imagined that all references to "hundreds" and "thousands" were mere fanciful forms of speech, and that no such sums really existed in the world. He never had supposed for a moment that so large a sum as a hundred dollars was to be found in actual money in any one's possession. If his notions of hidden treasure had been analyzed, they would have been found to consist of a handful of real dimes and a bushel of vague, splendid, ungraspable dollars. But the incidents of his adventure grew sensibly sharper and clearer under the attrition of thinking them over, and so he presently found himself leaning to the impression that the thing might not have been a dream, after all. This uncertainty must be swept away. He would snatch a hurried breakfast and go and find Huck. Huck was sitting on the gunwale of a flatboat, listlessly dangling his feet in the water and looking very melancholy. Tom concluded to let Huck lead up to the subject. If he did not do it, then the adventure would be proved to have been only a dream. "Hello, Huck!" "Hello, yourself." Silence, for a minute. "Tom, if we'd 'a' left the blame tools at the dead tree, we'd 'a' got the money. Oh, ain't it awful!" "'Tain't a dream, then, 'tain't a dream! Somehow I most wish it was. Dog'd if I don't, Huck." "What ain't a dream?" "Oh, that thing yesterday. I been half thinking it was." "Dream! If them stairs hadn't broke down you'd 'a' seen how much dream it was! I've had dreams enough all night--with that patch-eyed Spanish devil going for me all through 'em--rot him!" "No, not rot him. FIND him! Track the money!" "Tom, we'll never find him. A feller don't have only one chance for such a pile--and that one's lost. I'd feel mighty shaky if I was to see him, anyway." "Well, so'd I; but I'd like to see him, anyway--and track him out--to his Number Two." "Number Two--yes, that's it. I been thinking 'bout that. But I can't make nothing out of it. What do you reckon it is?" "I dono. It's too deep. Say, Huck--maybe it's the number of a house!" "Goody!... No, Tom, that ain't it. If it is, it ain't in this one-horse town. They ain't no numbers here." "Well, that's so. Lemme think a minute. Here--it's the number of a room--in a tavern, you know!" "Oh, that's the trick! They ain't only two taverns. We can find out quick." "You stay here, Huck, till I come." Tom was off at once. He did not care to have Huck's company in public places. He was gone half an hour. He found that in the best tavern, No. 2 had long been occupied by a young lawyer, and was still so occupied. In the less ostentatious house, No. 2 was a mystery. The tavern-keeper's young son said it was kept locked all the time, and he never saw anybody go into it or come out of it except at night; he did not know any particular reason for this state of things; had had some little curiosity, but it was rather feeble; had made the most of the mystery by entertaining himself with the idea that that room was "ha'nted"; had noticed that there was a light in there the night before. "That's what I've found out, Huck. I reckon that's the very No. 2 we're after." "I reckon it is, Tom. Now what you going to do?" "Lemme think." Tom thought a long time. Then he said: "I'll tell you. The back door of that No. 2 is the door that comes out into that little close alley between the tavern and the old rattle trap of a brick store. Now you get hold of all the door-keys you can find, and I'll nip all of auntie's, and the first dark night we'll go there and try 'em. And mind you, keep a lookout for Injun Joe, because he said he was going to drop into town and spy around once more for a chance to get his revenge. If you see him, you just follow him; and if he don't go to that No. 2, that ain't the place." "Lordy, I don't want to foller him by myself!" "Why, it'll be night, sure. He mightn't ever see you--and if he did, maybe he'd never think anything." "Well, if it's pretty dark I reckon I'll track him. I dono--I dono. I'll try." "You bet I'll follow him, if it's dark, Huck. Why, he might 'a' found out he couldn't get his revenge, and be going right after that money." "It's so, Tom, it's so. I'll foller him; I will, by jingoes!" "Now you're TALKING! Don't you ever weaken, Huck, and I won't." CHAPTER XXVIII THAT night Tom and Huck were ready for their adventure. They hung about the neighborhood of the tavern until after nine, one watching the alley at a distance and the other the tavern door. Nobody entered the alley or left it; nobody resembling the Spaniard entered or left the tavern door. The night promised to be a fair one; so Tom went home with the understanding that if a considerable degree of darkness came on, Huck was to come and "maow," whereupon he would slip out and try the keys. But the night remained clear, and Huck closed his watch and retired to bed in an empty sugar hogshead about twelve. Tuesday the boys had the same ill luck. Also Wednesday. But Thursday night promised better. Tom slipped out in good season with his aunt's old tin lantern, and a large towel to blindfold it with. He hid the lantern in Huck's sugar hogshead and the watch began. An hour before midnight the tavern closed up and its lights (the only ones thereabouts) were put out. No Spaniard had been seen. Nobody had entered or left the alley. Everything was auspicious. The blackness of darkness reigned, the perfect stillness was interrupted only by occasional mutterings of distant thunder. Tom got his lantern, lit it in the hogshead, wrapped it closely in the towel, and the two adventurers crept in the gloom toward the tavern. Huck stood sentry and Tom felt his way into the alley. Then there was a season of waiting anxiety that weighed upon Huck's spirits like a mountain. He began to wish he could see a flash from the lantern--it would frighten him, but it would at least tell him that Tom was alive yet. It seemed hours since Tom had disappeared. Surely he must have fainted; maybe he was dead; maybe his heart had burst under terror and excitement. In his uneasiness Huck found himself drawing closer and closer to the alley; fearing all sorts of dreadful things, and momentarily expecting some catastrophe to happen that would take away his breath. There was not much to take away, for he seemed only able to inhale it by thimblefuls, and his heart would soon wear itself out, the way it was beating. Suddenly there was a flash of light and Tom came tearing by him: "Run!" said he; "run, for your life!" He needn't have repeated it; once was enough; Huck was making thirty or forty miles an hour before the repetition was uttered. The boys never stopped till they reached the shed of a deserted slaughter-house at the lower end of the village. Just as they got within its shelter the storm burst and the rain poured down. As soon as Tom got his breath he said: "Huck, it was awful! I tried two of the keys, just as soft as I could; but they seemed to make such a power of racket that I couldn't hardly get my breath I was so scared. They wouldn't turn in the lock, either. Well, without noticing what I was doing, I took hold of the knob, and open comes the door! It warn't locked! I hopped in, and shook off the towel, and, GREAT CAESAR'S GHOST!" "What!--what'd you see, Tom?" "Huck, I most stepped onto Injun Joe's hand!" "No!" "Yes! He was lying there, sound asleep on the floor, with his old patch on his eye and his arms spread out." "Lordy, what did you do? Did he wake up?" "No, never budged. Drunk, I reckon. I just grabbed that towel and started!" "I'd never 'a' thought of the towel, I bet!" "Well, I would. My aunt would make me mighty sick if I lost it." "Say, Tom, did you see that box?" "Huck, I didn't wait to look around. I didn't see the box, I didn't see the cross. I didn't see anything but a bottle and a tin cup on the floor by Injun Joe; yes, I saw two barrels and lots more bottles in the room. Don't you see, now, what's the matter with that ha'nted room?" "How?" "Why, it's ha'nted with whiskey! Maybe ALL the Temperance Taverns have got a ha'nted room, hey, Huck?" "Well, I reckon maybe that's so. Who'd 'a' thought such a thing? But say, Tom, now's a mighty good time to get that box, if Injun Joe's drunk." "It is, that! You try it!" Huck shuddered. "Well, no--I reckon not." "And I reckon not, Huck. Only one bottle alongside of Injun Joe ain't enough. If there'd been three, he'd be drunk enough and I'd do it." There was a long pause for reflection, and then Tom said: "Lookyhere, Huck, less not try that thing any more till we know Injun Joe's not in there. It's too scary. Now, if we watch every night, we'll be dead sure to see him go out, some time or other, and then we'll snatch that box quicker'n lightning." "Well, I'm agreed. I'll watch the whole night long, and I'll do it every night, too, if you'll do the other part of the job." "All right, I will. All you got to do is to trot up Hooper Street a block and maow--and if I'm asleep, you throw some gravel at the window and that'll fetch me." "Agreed, and good as wheat!" "Now, Huck, the storm's over, and I'll go home. It'll begin to be daylight in a couple of hours. You go back and watch that long, will you?" "I said I would, Tom, and I will. I'll ha'nt that tavern every night for a year! I'll sleep all day and I'll stand watch all night." "That's all right. Now, where you going to sleep?" "In Ben Rogers' hayloft. He lets me, and so does his pap's nigger man, Uncle Jake. I tote water for Uncle Jake whenever he wants me to, and any time I ask him he gives me a little something to eat if he can spare it. That's a mighty good nigger, Tom. He likes me, becuz I don't ever act as if I was above him. Sometime I've set right down and eat WITH him. But you needn't tell that. A body's got to do things when he's awful hungry he wouldn't want to do as a steady thing." "Well, if I don't want you in the daytime, I'll let you sleep. I won't come bothering around. Any time you see something's up, in the night, just skip right around and maow." CHAPTER XXIX THE first thing Tom heard on Friday morning was a glad piece of news --Judge Thatcher's family had come back to town the night before. Both Injun Joe and the treasure sunk into secondary importance for a moment, and Becky took the chief place in the boy's interest. He saw her and they had an exhausting good time playing "hi-spy" and "gully-keeper" with a crowd of their school-mates. The day was completed and crowned in a peculiarly satisfactory way: Becky teased her mother to appoint the next day for the long-promised and long-delayed picnic, and she consented. The child's delight was boundless; and Tom's not more moderate. The invitations were sent out before sunset, and straightway the young folks of the village were thrown into a fever of preparation and pleasurable anticipation. Tom's excitement enabled him to keep awake until a pretty late hour, and he had good hopes of hearing Huck's "maow," and of having his treasure to astonish Becky and the picnickers with, next day; but he was disappointed. No signal came that night. Morning came, eventually, and by ten or eleven o'clock a giddy and rollicking company were gathered at Judge Thatcher's, and everything was ready for a start. It was not the custom for elderly people to mar the picnics with their presence. The children were considered safe enough under the wings of a few young ladies of eighteen and a few young gentlemen of twenty-three or thereabouts. The old steam ferryboat was chartered for the occasion; presently the gay throng filed up the main street laden with provision-baskets. Sid was sick and had to miss the fun; Mary remained at home to entertain him. The last thing Mrs. Thatcher said to Becky, was: "You'll not get back till late. Perhaps you'd better stay all night with some of the girls that live near the ferry-landing, child." "Then I'll stay with Susy Harper, mamma." "Very well. And mind and behave yourself and don't be any trouble." Presently, as they tripped along, Tom said to Becky: "Say--I'll tell you what we'll do. 'Stead of going to Joe Harper's we'll climb right up the hill and stop at the Widow Douglas'. She'll have ice-cream! She has it most every day--dead loads of it. And she'll be awful glad to have us." "Oh, that will be fun!" Then Becky reflected a moment and said: "But what will mamma say?" "How'll she ever know?" The girl turned the idea over in her mind, and said reluctantly: "I reckon it's wrong--but--" "But shucks! Your mother won't know, and so what's the harm? All she wants is that you'll be safe; and I bet you she'd 'a' said go there if she'd 'a' thought of it. I know she would!" The Widow Douglas' splendid hospitality was a tempting bait. It and Tom's persuasions presently carried the day. So it was decided to say nothing anybody about the night's programme. Presently it occurred to Tom that maybe Huck might come this very night and give the signal. The thought took a deal of the spirit out of his anticipations. Still he could not bear to give up the fun at Widow Douglas'. And why should he give it up, he reasoned--the signal did not come the night before, so why should it be any more likely to come to-night? The sure fun of the evening outweighed the uncertain treasure; and, boy-like, he determined to yield to the stronger inclination and not allow himself to think of the box of money another time that day. Three miles below town the ferryboat stopped at the mouth of a woody hollow and tied up. The crowd swarmed ashore and soon the forest distances and craggy heights echoed far and near with shoutings and laughter. All the different ways of getting hot and tired were gone through with, and by-and-by the rovers straggled back to camp fortified with responsible appetites, and then the destruction of the good things began. After the feast there was a refreshing season of rest and chat in the shade of spreading oaks. By-and-by somebody shouted: "Who's ready for the cave?" Everybody was. Bundles of candles were procured, and straightway there was a general scamper up the hill. The mouth of the cave was up the hillside--an opening shaped like a letter A. Its massive oaken door stood unbarred. Within was a small chamber, chilly as an ice-house, and walled by Nature with solid limestone that was dewy with a cold sweat. It was romantic and mysterious to stand here in the deep gloom and look out upon the green valley shining in the sun. But the impressiveness of the situation quickly wore off, and the romping began again. The moment a candle was lighted there was a general rush upon the owner of it; a struggle and a gallant defence followed, but the candle was soon knocked down or blown out, and then there was a glad clamor of laughter and a new chase. But all things have an end. By-and-by the procession went filing down the steep descent of the main avenue, the flickering rank of lights dimly revealing the lofty walls of rock almost to their point of junction sixty feet overhead. This main avenue was not more than eight or ten feet wide. Every few steps other lofty and still narrower crevices branched from it on either hand--for McDougal's cave was but a vast labyrinth of crooked aisles that ran into each other and out again and led nowhere. It was said that one might wander days and nights together through its intricate tangle of rifts and chasms, and never find the end of the cave; and that he might go down, and down, and still down, into the earth, and it was just the same--labyrinth under labyrinth, and no end to any of them. No man "knew" the cave. That was an impossible thing. Most of the young men knew a portion of it, and it was not customary to venture much beyond this known portion. Tom Sawyer knew as much of the cave as any one. The procession moved along the main avenue some three-quarters of a mile, and then groups and couples began to slip aside into branch avenues, fly along the dismal corridors, and take each other by surprise at points where the corridors joined again. Parties were able to elude each other for the space of half an hour without going beyond the "known" ground. By-and-by, one group after another came straggling back to the mouth of the cave, panting, hilarious, smeared from head to foot with tallow drippings, daubed with clay, and entirely delighted with the success of the day. Then they were astonished to find that they had been taking no note of time and that night was about at hand. The clanging bell had been calling for half an hour. However, this sort of close to the day's adventures was romantic and therefore satisfactory. When the ferryboat with her wild freight pushed into the stream, nobody cared sixpence for the wasted time but the captain of the craft. Huck was already upon his watch when the ferryboat's lights went glinting past the wharf. He heard no noise on board, for the young people were as subdued and still as people usually are who are nearly tired to death. He wondered what boat it was, and why she did not stop at the wharf--and then he dropped her out of his mind and put his attention upon his business. The night was growing cloudy and dark. Ten o'clock came, and the noise of vehicles ceased, scattered lights began to wink out, all straggling foot-passengers disappeared, the village betook itself to its slumbers and left the small watcher alone with the silence and the ghosts. Eleven o'clock came, and the tavern lights were put out; darkness everywhere, now. Huck waited what seemed a weary long time, but nothing happened. His faith was weakening. Was there any use? Was there really any use? Why not give it up and turn in? A noise fell upon his ear. He was all attention in an instant. The alley door closed softly. He sprang to the corner of the brick store. The next moment two men brushed by him, and one seemed to have something under his arm. It must be that box! So they were going to remove the treasure. Why call Tom now? It would be absurd--the men would get away with the box and never be found again. No, he would stick to their wake and follow them; he would trust to the darkness for security from discovery. So communing with himself, Huck stepped out and glided along behind the men, cat-like, with bare feet, allowing them to keep just far enough ahead not to be invisible. They moved up the river street three blocks, then turned to the left up a cross-street. They went straight ahead, then, until they came to the path that led up Cardiff Hill; this they took. They passed by the old Welshman's house, half-way up the hill, without hesitating, and still climbed upward. Good, thought Huck, they will bury it in the old quarry. But they never stopped at the quarry. They passed on, up the summit. They plunged into the narrow path between the tall sumach bushes, and were at once hidden in the gloom. Huck closed up and shortened his distance, now, for they would never be able to see him. He trotted along awhile; then slackened his pace, fearing he was gaining too fast; moved on a piece, then stopped altogether; listened; no sound; none, save that he seemed to hear the beating of his own heart. The hooting of an owl came over the hill--ominous sound! But no footsteps. Heavens, was everything lost! He was about to spring with winged feet, when a man cleared his throat not four feet from him! Huck's heart shot into his throat, but he swallowed it again; and then he stood there shaking as if a dozen agues had taken charge of him at once, and so weak that he thought he must surely fall to the ground. He knew where he was. He knew he was within five steps of the stile leading into Widow Douglas' grounds. Very well, he thought, let them bury it there; it won't be hard to find. Now there was a voice--a very low voice--Injun Joe's: "Damn her, maybe she's got company--there's lights, late as it is." "I can't see any." This was that stranger's voice--the stranger of the haunted house. A deadly chill went to Huck's heart--this, then, was the "revenge" job! His thought was, to fly. Then he remembered that the Widow Douglas had been kind to him more than once, and maybe these men were going to murder her. He wished he dared venture to warn her; but he knew he didn't dare--they might come and catch him. He thought all this and more in the moment that elapsed between the stranger's remark and Injun Joe's next--which was-- "Because the bush is in your way. Now--this way--now you see, don't you?" "Yes. Well, there IS company there, I reckon. Better give it up." "Give it up, and I just leaving this country forever! Give it up and maybe never have another chance. I tell you again, as I've told you before, I don't care for her swag--you may have it. But her husband was rough on me--many times he was rough on me--and mainly he was the justice of the peace that jugged me for a vagrant. And that ain't all. It ain't a millionth part of it! He had me HORSEWHIPPED!--horsewhipped in front of the jail, like a nigger!--with all the town looking on! HORSEWHIPPED!--do you understand? He took advantage of me and died. But I'll take it out of HER." "Oh, don't kill her! Don't do that!" "Kill? Who said anything about killing? I would kill HIM if he was here; but not her. When you want to get revenge on a woman you don't kill her--bosh! you go for her looks. You slit her nostrils--you notch her ears like a sow!" "By God, that's--" "Keep your opinion to yourself! It will be safest for you. I'll tie her to the bed. If she bleeds to death, is that my fault? I'll not cry, if she does. My friend, you'll help me in this thing--for MY sake --that's why you're here--I mightn't be able alone. If you flinch, I'll kill you. Do you understand that? And if I have to kill you, I'll kill her--and then I reckon nobody'll ever know much about who done this business." "Well, if it's got to be done, let's get at it. The quicker the better--I'm all in a shiver." "Do it NOW? And company there? Look here--I'll get suspicious of you, first thing you know. No--we'll wait till the lights are out--there's no hurry." Huck felt that a silence was going to ensue--a thing still more awful than any amount of murderous talk; so he held his breath and stepped gingerly back; planted his foot carefully and firmly, after balancing, one-legged, in a precarious way and almost toppling over, first on one side and then on the other. He took another step back, with the same elaboration and the same risks; then another and another, and--a twig snapped under his foot! His breath stopped and he listened. There was no sound--the stillness was perfect. His gratitude was measureless. Now he turned in his tracks, between the walls of sumach bushes--turned himself as carefully as if he were a ship--and then stepped quickly but cautiously along. When he emerged at the quarry he felt secure, and so he picked up his nimble heels and flew. Down, down he sped, till he reached the Welshman's. He banged at the door, and presently the heads of the old man and his two stalwart sons were thrust from windows. "What's the row there? Who's banging? What do you want?" "Let me in--quick! I'll tell everything." "Why, who are you?" "Huckleberry Finn--quick, let me in!" "Huckleberry Finn, indeed! It ain't a name to open many doors, I judge! But let him in, lads, and let's see what's the trouble." "Please don't ever tell I told you," were Huck's first words when he got in. "Please don't--I'd be killed, sure--but the widow's been good friends to me sometimes, and I want to tell--I WILL tell if you'll promise you won't ever say it was me." "By George, he HAS got something to tell, or he wouldn't act so!" exclaimed the old man; "out with it and nobody here'll ever tell, lad." Three minutes later the old man and his sons, well armed, were up the hill, and just entering the sumach path on tiptoe, their weapons in their hands. Huck accompanied them no further. He hid behind a great bowlder and fell to listening. There was a lagging, anxious silence, and then all of a sudden there was an explosion of firearms and a cry. Huck waited for no particulars. He sprang away and sped down the hill as fast as his legs could carry him. CHAPTER XXX AS the earliest suspicion of dawn appeared on Sunday morning, Huck came groping up the hill and rapped gently at the old Welshman's door. The inmates were asleep, but it was a sleep that was set on a hair-trigger, on account of the exciting episode of the night. A call came from a window: "Who's there!" Huck's scared voice answered in a low tone: "Please let me in! It's only Huck Finn!" "It's a name that can open this door night or day, lad!--and welcome!" These were strange words to the vagabond boy's ears, and the pleasantest he had ever heard. He could not recollect that the closing word had ever been applied in his case before. The door was quickly unlocked, and he entered. Huck was given a seat and the old man and his brace of tall sons speedily dressed themselves. "Now, my boy, I hope you're good and hungry, because breakfast will be ready as soon as the sun's up, and we'll have a piping hot one, too --make yourself easy about that! I and the boys hoped you'd turn up and stop here last night." "I was awful scared," said Huck, "and I run. I took out when the pistols went off, and I didn't stop for three mile. I've come now becuz I wanted to know about it, you know; and I come before daylight becuz I didn't want to run across them devils, even if they was dead." "Well, poor chap, you do look as if you'd had a hard night of it--but there's a bed here for you when you've had your breakfast. No, they ain't dead, lad--we are sorry enough for that. You see we knew right where to put our hands on them, by your description; so we crept along on tiptoe till we got within fifteen feet of them--dark as a cellar that sumach path was--and just then I found I was going to sneeze. It was the meanest kind of luck! I tried to keep it back, but no use --'twas bound to come, and it did come! I was in the lead with my pistol raised, and when the sneeze started those scoundrels a-rustling to get out of the path, I sung out, 'Fire boys!' and blazed away at the place where the rustling was. So did the boys. But they were off in a jiffy, those villains, and we after them, down through the woods. I judge we never touched them. They fired a shot apiece as they started, but their bullets whizzed by and didn't do us any harm. As soon as we lost the sound of their feet we quit chasing, and went down and stirred up the constables. They got a posse together, and went off to guard the river bank, and as soon as it is light the sheriff and a gang are going to beat up the woods. My boys will be with them presently. I wish we had some sort of description of those rascals--'twould help a good deal. But you couldn't see what they were like, in the dark, lad, I suppose?" "Oh yes; I saw them down-town and follered them." "Splendid! Describe them--describe them, my boy!" "One's the old deaf and dumb Spaniard that's ben around here once or twice, and t'other's a mean-looking, ragged--" "That's enough, lad, we know the men! Happened on them in the woods back of the widow's one day, and they slunk away. Off with you, boys, and tell the sheriff--get your breakfast to-morrow morning!" The Welshman's sons departed at once. As they were leaving the room Huck sprang up and exclaimed: "Oh, please don't tell ANYbody it was me that blowed on them! Oh, please!" "All right if you say it, Huck, but you ought to have the credit of what you did." "Oh no, no! Please don't tell!" When the young men were gone, the old Welshman said: "They won't tell--and I won't. But why don't you want it known?" Huck would not explain, further than to say that he already knew too much about one of those men and would not have the man know that he knew anything against him for the whole world--he would be killed for knowing it, sure. The old man promised secrecy once more, and said: "How did you come to follow these fellows, lad? Were they looking suspicious?" Huck was silent while he framed a duly cautious reply. Then he said: "Well, you see, I'm a kind of a hard lot,--least everybody says so, and I don't see nothing agin it--and sometimes I can't sleep much, on account of thinking about it and sort of trying to strike out a new way of doing. That was the way of it last night. I couldn't sleep, and so I come along up-street 'bout midnight, a-turning it all over, and when I got to that old shackly brick store by the Temperance Tavern, I backed up agin the wall to have another think. Well, just then along comes these two chaps slipping along close by me, with something under their arm, and I reckoned they'd stole it. One was a-smoking, and t'other one wanted a light; so they stopped right before me and the cigars lit up their faces and I see that the big one was the deaf and dumb Spaniard, by his white whiskers and the patch on his eye, and t'other one was a rusty, ragged-looking devil." "Could you see the rags by the light of the cigars?" This staggered Huck for a moment. Then he said: "Well, I don't know--but somehow it seems as if I did." "Then they went on, and you--" "Follered 'em--yes. That was it. I wanted to see what was up--they sneaked along so. I dogged 'em to the widder's stile, and stood in the dark and heard the ragged one beg for the widder, and the Spaniard swear he'd spile her looks just as I told you and your two--" "What! The DEAF AND DUMB man said all that!" Huck had made another terrible mistake! He was trying his best to keep the old man from getting the faintest hint of who the Spaniard might be, and yet his tongue seemed determined to get him into trouble in spite of all he could do. He made several efforts to creep out of his scrape, but the old man's eye was upon him and he made blunder after blunder. Presently the Welshman said: "My boy, don't be afraid of me. I wouldn't hurt a hair of your head for all the world. No--I'd protect you--I'd protect you. This Spaniard is not deaf and dumb; you've let that slip without intending it; you can't cover that up now. You know something about that Spaniard that you want to keep dark. Now trust me--tell me what it is, and trust me --I won't betray you." Huck looked into the old man's honest eyes a moment, then bent over and whispered in his ear: "'Tain't a Spaniard--it's Injun Joe!" The Welshman almost jumped out of his chair. In a moment he said: "It's all plain enough, now. When you talked about notching ears and slitting noses I judged that that was your own embellishment, because white men don't take that sort of revenge. But an Injun! That's a different matter altogether." During breakfast the talk went on, and in the course of it the old man said that the last thing which he and his sons had done, before going to bed, was to get a lantern and examine the stile and its vicinity for marks of blood. They found none, but captured a bulky bundle of-- "Of WHAT?" If the words had been lightning they could not have leaped with a more stunning suddenness from Huck's blanched lips. His eyes were staring wide, now, and his breath suspended--waiting for the answer. The Welshman started--stared in return--three seconds--five seconds--ten --then replied: "Of burglar's tools. Why, what's the MATTER with you?" Huck sank back, panting gently, but deeply, unutterably grateful. The Welshman eyed him gravely, curiously--and presently said: "Yes, burglar's tools. That appears to relieve you a good deal. But what did give you that turn? What were YOU expecting we'd found?" Huck was in a close place--the inquiring eye was upon him--he would have given anything for material for a plausible answer--nothing suggested itself--the inquiring eye was boring deeper and deeper--a senseless reply offered--there was no time to weigh it, so at a venture he uttered it--feebly: "Sunday-school books, maybe." Poor Huck was too distressed to smile, but the old man laughed loud and joyously, shook up the details of his anatomy from head to foot, and ended by saying that such a laugh was money in a-man's pocket, because it cut down the doctor's bill like everything. Then he added: "Poor old chap, you're white and jaded--you ain't well a bit--no wonder you're a little flighty and off your balance. But you'll come out of it. Rest and sleep will fetch you out all right, I hope." Huck was irritated to think he had been such a goose and betrayed such a suspicious excitement, for he had dropped the idea that the parcel brought from the tavern was the treasure, as soon as he had heard the talk at the widow's stile. He had only thought it was not the treasure, however--he had not known that it wasn't--and so the suggestion of a captured bundle was too much for his self-possession. But on the whole he felt glad the little episode had happened, for now he knew beyond all question that that bundle was not THE bundle, and so his mind was at rest and exceedingly comfortable. In fact, everything seemed to be drifting just in the right direction, now; the treasure must be still in No. 2, the men would be captured and jailed that day, and he and Tom could seize the gold that night without any trouble or any fear of interruption. Just as breakfast was completed there was a knock at the door. Huck jumped for a hiding-place, for he had no mind to be connected even remotely with the late event. The Welshman admitted several ladies and gentlemen, among them the Widow Douglas, and noticed that groups of citizens were climbing up the hill--to stare at the stile. So the news had spread. The Welshman had to tell the story of the night to the visitors. The widow's gratitude for her preservation was outspoken. "Don't say a word about it, madam. There's another that you're more beholden to than you are to me and my boys, maybe, but he don't allow me to tell his name. We wouldn't have been there but for him." Of course this excited a curiosity so vast that it almost belittled the main matter--but the Welshman allowed it to eat into the vitals of his visitors, and through them be transmitted to the whole town, for he refused to part with his secret. When all else had been learned, the widow said: "I went to sleep reading in bed and slept straight through all that noise. Why didn't you come and wake me?" "We judged it warn't worth while. Those fellows warn't likely to come again--they hadn't any tools left to work with, and what was the use of waking you up and scaring you to death? My three negro men stood guard at your house all the rest of the night. They've just come back." More visitors came, and the story had to be told and retold for a couple of hours more. There was no Sabbath-school during day-school vacation, but everybody was early at church. The stirring event was well canvassed. News came that not a sign of the two villains had been yet discovered. When the sermon was finished, Judge Thatcher's wife dropped alongside of Mrs. Harper as she moved down the aisle with the crowd and said: "Is my Becky going to sleep all day? I just expected she would be tired to death." "Your Becky?" "Yes," with a startled look--"didn't she stay with you last night?" "Why, no." Mrs. Thatcher turned pale, and sank into a pew, just as Aunt Polly, talking briskly with a friend, passed by. Aunt Polly said: "Good-morning, Mrs. Thatcher. Good-morning, Mrs. Harper. I've got a boy that's turned up missing. I reckon my Tom stayed at your house last night--one of you. And now he's afraid to come to church. I've got to settle with him." Mrs. Thatcher shook her head feebly and turned paler than ever. "He didn't stay with us," said Mrs. Harper, beginning to look uneasy. A marked anxiety came into Aunt Polly's face. "Joe Harper, have you seen my Tom this morning?" "No'm." "When did you see him last?" Joe tried to remember, but was not sure he could say. The people had stopped moving out of church. Whispers passed along, and a boding uneasiness took possession of every countenance. Children were anxiously questioned, and young teachers. They all said they had not noticed whether Tom and Becky were on board the ferryboat on the homeward trip; it was dark; no one thought of inquiring if any one was missing. One young man finally blurted out his fear that they were still in the cave! Mrs. Thatcher swooned away. Aunt Polly fell to crying and wringing her hands. The alarm swept from lip to lip, from group to group, from street to street, and within five minutes the bells were wildly clanging and the whole town was up! The Cardiff Hill episode sank into instant insignificance, the burglars were forgotten, horses were saddled, skiffs were manned, the ferryboat ordered out, and before the horror was half an hour old, two hundred men were pouring down highroad and river toward the cave. All the long afternoon the village seemed empty and dead. Many women visited Aunt Polly and Mrs. Thatcher and tried to comfort them. They cried with them, too, and that was still better than words. All the tedious night the town waited for news; but when the morning dawned at last, all the word that came was, "Send more candles--and send food." Mrs. Thatcher was almost crazed; and Aunt Polly, also. Judge Thatcher sent messages of hope and encouragement from the cave, but they conveyed no real cheer. The old Welshman came home toward daylight, spattered with candle-grease, smeared with clay, and almost worn out. He found Huck still in the bed that had been provided for him, and delirious with fever. The physicians were all at the cave, so the Widow Douglas came and took charge of the patient. She said she would do her best by him, because, whether he was good, bad, or indifferent, he was the Lord's, and nothing that was the Lord's was a thing to be neglected. The Welshman said Huck had good spots in him, and the widow said: "You can depend on it. That's the Lord's mark. He don't leave it off. He never does. Puts it somewhere on every creature that comes from his hands." Early in the forenoon parties of jaded men began to straggle into the village, but the strongest of the citizens continued searching. All the news that could be gained was that remotenesses of the cavern were being ransacked that had never been visited before; that every corner and crevice was going to be thoroughly searched; that wherever one wandered through the maze of passages, lights were to be seen flitting hither and thither in the distance, and shoutings and pistol-shots sent their hollow reverberations to the ear down the sombre aisles. In one place, far from the section usually traversed by tourists, the names "BECKY & TOM" had been found traced upon the rocky wall with candle-smoke, and near at hand a grease-soiled bit of ribbon. Mrs. Thatcher recognized the ribbon and cried over it. She said it was the last relic she should ever have of her child; and that no other memorial of her could ever be so precious, because this one parted latest from the living body before the awful death came. Some said that now and then, in the cave, a far-away speck of light would glimmer, and then a glorious shout would burst forth and a score of men go trooping down the echoing aisle--and then a sickening disappointment always followed; the children were not there; it was only a searcher's light. Three dreadful days and nights dragged their tedious hours along, and the village sank into a hopeless stupor. No one had heart for anything. The accidental discovery, just made, that the proprietor of the Temperance Tavern kept liquor on his premises, scarcely fluttered the public pulse, tremendous as the fact was. In a lucid interval, Huck feebly led up to the subject of taverns, and finally asked--dimly dreading the worst--if anything had been discovered at the Temperance Tavern since he had been ill. "Yes," said the widow. Huck started up in bed, wild-eyed: "What? What was it?" "Liquor!--and the place has been shut up. Lie down, child--what a turn you did give me!" "Only tell me just one thing--only just one--please! Was it Tom Sawyer that found it?" The widow burst into tears. "Hush, hush, child, hush! I've told you before, you must NOT talk. You are very, very sick!" Then nothing but liquor had been found; there would have been a great powwow if it had been the gold. So the treasure was gone forever--gone forever! But what could she be crying about? Curious that she should cry. These thoughts worked their dim way through Huck's mind, and under the weariness they gave him he fell asleep. The widow said to herself: "There--he's asleep, poor wreck. Tom Sawyer find it! Pity but somebody could find Tom Sawyer! Ah, there ain't many left, now, that's got hope enough, or strength enough, either, to go on searching." CHAPTER XXXI NOW to return to Tom and Becky's share in the picnic. They tripped along the murky aisles with the rest of the company, visiting the familiar wonders of the cave--wonders dubbed with rather over-descriptive names, such as "The Drawing-Room," "The Cathedral," "Aladdin's Palace," and so on. Presently the hide-and-seek frolicking began, and Tom and Becky engaged in it with zeal until the exertion began to grow a trifle wearisome; then they wandered down a sinuous avenue holding their candles aloft and reading the tangled web-work of names, dates, post-office addresses, and mottoes with which the rocky walls had been frescoed (in candle-smoke). Still drifting along and talking, they scarcely noticed that they were now in a part of the cave whose walls were not frescoed. They smoked their own names under an overhanging shelf and moved on. Presently they came to a place where a little stream of water, trickling over a ledge and carrying a limestone sediment with it, had, in the slow-dragging ages, formed a laced and ruffled Niagara in gleaming and imperishable stone. Tom squeezed his small body behind it in order to illuminate it for Becky's gratification. He found that it curtained a sort of steep natural stairway which was enclosed between narrow walls, and at once the ambition to be a discoverer seized him. Becky responded to his call, and they made a smoke-mark for future guidance, and started upon their quest. They wound this way and that, far down into the secret depths of the cave, made another mark, and branched off in search of novelties to tell the upper world about. In one place they found a spacious cavern, from whose ceiling depended a multitude of shining stalactites of the length and circumference of a man's leg; they walked all about it, wondering and admiring, and presently left it by one of the numerous passages that opened into it. This shortly brought them to a bewitching spring, whose basin was incrusted with a frostwork of glittering crystals; it was in the midst of a cavern whose walls were supported by many fantastic pillars which had been formed by the joining of great stalactites and stalagmites together, the result of the ceaseless water-drip of centuries. Under the roof vast knots of bats had packed themselves together, thousands in a bunch; the lights disturbed the creatures and they came flocking down by hundreds, squeaking and darting furiously at the candles. Tom knew their ways and the danger of this sort of conduct. He seized Becky's hand and hurried her into the first corridor that offered; and none too soon, for a bat struck Becky's light out with its wing while she was passing out of the cavern. The bats chased the children a good distance; but the fugitives plunged into every new passage that offered, and at last got rid of the perilous things. Tom found a subterranean lake, shortly, which stretched its dim length away until its shape was lost in the shadows. He wanted to explore its borders, but concluded that it would be best to sit down and rest awhile, first. Now, for the first time, the deep stillness of the place laid a clammy hand upon the spirits of the children. Becky said: "Why, I didn't notice, but it seems ever so long since I heard any of the others." "Come to think, Becky, we are away down below them--and I don't know how far away north, or south, or east, or whichever it is. We couldn't hear them here." Becky grew apprehensive. "I wonder how long we've been down here, Tom? We better start back." "Yes, I reckon we better. P'raps we better." "Can you find the way, Tom? It's all a mixed-up crookedness to me." "I reckon I could find it--but then the bats. If they put our candles out it will be an awful fix. Let's try some other way, so as not to go through there." "Well. But I hope we won't get lost. It would be so awful!" and the girl shuddered at the thought of the dreadful possibilities. They started through a corridor, and traversed it in silence a long way, glancing at each new opening, to see if there was anything familiar about the look of it; but they were all strange. Every time Tom made an examination, Becky would watch his face for an encouraging sign, and he would say cheerily: "Oh, it's all right. This ain't the one, but we'll come to it right away!" But he felt less and less hopeful with each failure, and presently began to turn off into diverging avenues at sheer random, in desperate hope of finding the one that was wanted. He still said it was "all right," but there was such a leaden dread at his heart that the words had lost their ring and sounded just as if he had said, "All is lost!" Becky clung to his side in an anguish of fear, and tried hard to keep back the tears, but they would come. At last she said: "Oh, Tom, never mind the bats, let's go back that way! We seem to get worse and worse off all the time." "Listen!" said he. Profound silence; silence so deep that even their breathings were conspicuous in the hush. Tom shouted. The call went echoing down the empty aisles and died out in the distance in a faint sound that resembled a ripple of mocking laughter. "Oh, don't do it again, Tom, it is too horrid," said Becky. "It is horrid, but I better, Becky; they might hear us, you know," and he shouted again. The "might" was even a chillier horror than the ghostly laughter, it so confessed a perishing hope. The children stood still and listened; but there was no result. Tom turned upon the back track at once, and hurried his steps. It was but a little while before a certain indecision in his manner revealed another fearful fact to Becky--he could not find his way back! "Oh, Tom, you didn't make any marks!" "Becky, I was such a fool! Such a fool! I never thought we might want to come back! No--I can't find the way. It's all mixed up." "Tom, Tom, we're lost! we're lost! We never can get out of this awful place! Oh, why DID we ever leave the others!" She sank to the ground and burst into such a frenzy of crying that Tom was appalled with the idea that she might die, or lose her reason. He sat down by her and put his arms around her; she buried her face in his bosom, she clung to him, she poured out her terrors, her unavailing regrets, and the far echoes turned them all to jeering laughter. Tom begged her to pluck up hope again, and she said she could not. He fell to blaming and abusing himself for getting her into this miserable situation; this had a better effect. She said she would try to hope again, she would get up and follow wherever he might lead if only he would not talk like that any more. For he was no more to blame than she, she said. So they moved on again--aimlessly--simply at random--all they could do was to move, keep moving. For a little while, hope made a show of reviving--not with any reason to back it, but only because it is its nature to revive when the spring has not been taken out of it by age and familiarity with failure. By-and-by Tom took Becky's candle and blew it out. This economy meant so much! Words were not needed. Becky understood, and her hope died again. She knew that Tom had a whole candle and three or four pieces in his pockets--yet he must economize. By-and-by, fatigue began to assert its claims; the children tried to pay attention, for it was dreadful to think of sitting down when time was grown to be so precious, moving, in some direction, in any direction, was at least progress and might bear fruit; but to sit down was to invite death and shorten its pursuit. At last Becky's frail limbs refused to carry her farther. She sat down. Tom rested with her, and they talked of home, and the friends there, and the comfortable beds and, above all, the light! Becky cried, and Tom tried to think of some way of comforting her, but all his encouragements were grown threadbare with use, and sounded like sarcasms. Fatigue bore so heavily upon Becky that she drowsed off to sleep. Tom was grateful. He sat looking into her drawn face and saw it grow smooth and natural under the influence of pleasant dreams; and by-and-by a smile dawned and rested there. The peaceful face reflected somewhat of peace and healing into his own spirit, and his thoughts wandered away to bygone times and dreamy memories. While he was deep in his musings, Becky woke up with a breezy little laugh--but it was stricken dead upon her lips, and a groan followed it. "Oh, how COULD I sleep! I wish I never, never had waked! No! No, I don't, Tom! Don't look so! I won't say it again." "I'm glad you've slept, Becky; you'll feel rested, now, and we'll find the way out." "We can try, Tom; but I've seen such a beautiful country in my dream. I reckon we are going there." "Maybe not, maybe not. Cheer up, Becky, and let's go on trying." They rose up and wandered along, hand in hand and hopeless. They tried to estimate how long they had been in the cave, but all they knew was that it seemed days and weeks, and yet it was plain that this could not be, for their candles were not gone yet. A long time after this--they could not tell how long--Tom said they must go softly and listen for dripping water--they must find a spring. They found one presently, and Tom said it was time to rest again. Both were cruelly tired, yet Becky said she thought she could go a little farther. She was surprised to hear Tom dissent. She could not understand it. They sat down, and Tom fastened his candle to the wall in front of them with some clay. Thought was soon busy; nothing was said for some time. Then Becky broke the silence: "Tom, I am so hungry!" Tom took something out of his pocket. "Do you remember this?" said he. Becky almost smiled. "It's our wedding-cake, Tom." "Yes--I wish it was as big as a barrel, for it's all we've got." "I saved it from the picnic for us to dream on, Tom, the way grown-up people do with wedding-cake--but it'll be our--" She dropped the sentence where it was. Tom divided the cake and Becky ate with good appetite, while Tom nibbled at his moiety. There was abundance of cold water to finish the feast with. By-and-by Becky suggested that they move on again. Tom was silent a moment. Then he said: "Becky, can you bear it if I tell you something?" Becky's face paled, but she thought she could. "Well, then, Becky, we must stay here, where there's water to drink. That little piece is our last candle!" Becky gave loose to tears and wailings. Tom did what he could to comfort her, but with little effect. At length Becky said: "Tom!" "Well, Becky?" "They'll miss us and hunt for us!" "Yes, they will! Certainly they will!" "Maybe they're hunting for us now, Tom." "Why, I reckon maybe they are. I hope they are." "When would they miss us, Tom?" "When they get back to the boat, I reckon." "Tom, it might be dark then--would they notice we hadn't come?" "I don't know. But anyway, your mother would miss you as soon as they got home." A frightened look in Becky's face brought Tom to his senses and he saw that he had made a blunder. Becky was not to have gone home that night! The children became silent and thoughtful. In a moment a new burst of grief from Becky showed Tom that the thing in his mind had struck hers also--that the Sabbath morning might be half spent before Mrs. Thatcher discovered that Becky was not at Mrs. Harper's. The children fastened their eyes upon their bit of candle and watched it melt slowly and pitilessly away; saw the half inch of wick stand alone at last; saw the feeble flame rise and fall, climb the thin column of smoke, linger at its top a moment, and then--the horror of utter darkness reigned! How long afterward it was that Becky came to a slow consciousness that she was crying in Tom's arms, neither could tell. All that they knew was, that after what seemed a mighty stretch of time, both awoke out of a dead stupor of sleep and resumed their miseries once more. Tom said it might be Sunday, now--maybe Monday. He tried to get Becky to talk, but her sorrows were too oppressive, all her hopes were gone. Tom said that they must have been missed long ago, and no doubt the search was going on. He would shout and maybe some one would come. He tried it; but in the darkness the distant echoes sounded so hideously that he tried it no more. The hours wasted away, and hunger came to torment the captives again. A portion of Tom's half of the cake was left; they divided and ate it. But they seemed hungrier than before. The poor morsel of food only whetted desire. By-and-by Tom said: "SH! Did you hear that?" Both held their breath and listened. There was a sound like the faintest, far-off shout. Instantly Tom answered it, and leading Becky by the hand, started groping down the corridor in its direction. Presently he listened again; again the sound was heard, and apparently a little nearer. "It's them!" said Tom; "they're coming! Come along, Becky--we're all right now!" The joy of the prisoners was almost overwhelming. Their speed was slow, however, because pitfalls were somewhat common, and had to be guarded against. They shortly came to one and had to stop. It might be three feet deep, it might be a hundred--there was no passing it at any rate. Tom got down on his breast and reached as far down as he could. No bottom. They must stay there and wait until the searchers came. They listened; evidently the distant shoutings were growing more distant! a moment or two more and they had gone altogether. The heart-sinking misery of it! Tom whooped until he was hoarse, but it was of no use. He talked hopefully to Becky; but an age of anxious waiting passed and no sounds came again. The children groped their way back to the spring. The weary time dragged on; they slept again, and awoke famished and woe-stricken. Tom believed it must be Tuesday by this time. Now an idea struck him. There were some side passages near at hand. It would be better to explore some of these than bear the weight of the heavy time in idleness. He took a kite-line from his pocket, tied it to a projection, and he and Becky started, Tom in the lead, unwinding the line as he groped along. At the end of twenty steps the corridor ended in a "jumping-off place." Tom got down on his knees and felt below, and then as far around the corner as he could reach with his hands conveniently; he made an effort to stretch yet a little farther to the right, and at that moment, not twenty yards away, a human hand, holding a candle, appeared from behind a rock! Tom lifted up a glorious shout, and instantly that hand was followed by the body it belonged to--Injun Joe's! Tom was paralyzed; he could not move. He was vastly gratified the next moment, to see the "Spaniard" take to his heels and get himself out of sight. Tom wondered that Joe had not recognized his voice and come over and killed him for testifying in court. But the echoes must have disguised the voice. Without doubt, that was it, he reasoned. Tom's fright weakened every muscle in his body. He said to himself that if he had strength enough to get back to the spring he would stay there, and nothing should tempt him to run the risk of meeting Injun Joe again. He was careful to keep from Becky what it was he had seen. He told her he had only shouted "for luck." But hunger and wretchedness rise superior to fears in the long run. Another tedious wait at the spring and another long sleep brought changes. The children awoke tortured with a raging hunger. Tom believed that it must be Wednesday or Thursday or even Friday or Saturday, now, and that the search had been given over. He proposed to explore another passage. He felt willing to risk Injun Joe and all other terrors. But Becky was very weak. She had sunk into a dreary apathy and would not be roused. She said she would wait, now, where she was, and die--it would not be long. She told Tom to go with the kite-line and explore if he chose; but she implored him to come back every little while and speak to her; and she made him promise that when the awful time came, he would stay by her and hold her hand until all was over. Tom kissed her, with a choking sensation in his throat, and made a show of being confident of finding the searchers or an escape from the cave; then he took the kite-line in his hand and went groping down one of the passages on his hands and knees, distressed with hunger and sick with bodings of coming doom. CHAPTER XXXII TUESDAY afternoon came, and waned to the twilight. The village of St. Petersburg still mourned. The lost children had not been found. Public prayers had been offered up for them, and many and many a private prayer that had the petitioner's whole heart in it; but still no good news came from the cave. The majority of the searchers had given up the quest and gone back to their daily avocations, saying that it was plain the children could never be found. Mrs. Thatcher was very ill, and a great part of the time delirious. People said it was heartbreaking to hear her call her child, and raise her head and listen a whole minute at a time, then lay it wearily down again with a moan. Aunt Polly had drooped into a settled melancholy, and her gray hair had grown almost white. The village went to its rest on Tuesday night, sad and forlorn. Away in the middle of the night a wild peal burst from the village bells, and in a moment the streets were swarming with frantic half-clad people, who shouted, "Turn out! turn out! they're found! they're found!" Tin pans and horns were added to the din, the population massed itself and moved toward the river, met the children coming in an open carriage drawn by shouting citizens, thronged around it, joined its homeward march, and swept magnificently up the main street roaring huzzah after huzzah! The village was illuminated; nobody went to bed again; it was the greatest night the little town had ever seen. During the first half-hour a procession of villagers filed through Judge Thatcher's house, seized the saved ones and kissed them, squeezed Mrs. Thatcher's hand, tried to speak but couldn't--and drifted out raining tears all over the place. Aunt Polly's happiness was complete, and Mrs. Thatcher's nearly so. It would be complete, however, as soon as the messenger dispatched with the great news to the cave should get the word to her husband. Tom lay upon a sofa with an eager auditory about him and told the history of the wonderful adventure, putting in many striking additions to adorn it withal; and closed with a description of how he left Becky and went on an exploring expedition; how he followed two avenues as far as his kite-line would reach; how he followed a third to the fullest stretch of the kite-line, and was about to turn back when he glimpsed a far-off speck that looked like daylight; dropped the line and groped toward it, pushed his head and shoulders through a small hole, and saw the broad Mississippi rolling by! And if it had only happened to be night he would not have seen that speck of daylight and would not have explored that passage any more! He told how he went back for Becky and broke the good news and she told him not to fret her with such stuff, for she was tired, and knew she was going to die, and wanted to. He described how he labored with her and convinced her; and how she almost died for joy when she had groped to where she actually saw the blue speck of daylight; how he pushed his way out at the hole and then helped her out; how they sat there and cried for gladness; how some men came along in a skiff and Tom hailed them and told them their situation and their famished condition; how the men didn't believe the wild tale at first, "because," said they, "you are five miles down the river below the valley the cave is in" --then took them aboard, rowed to a house, gave them supper, made them rest till two or three hours after dark and then brought them home. Before day-dawn, Judge Thatcher and the handful of searchers with him were tracked out, in the cave, by the twine clews they had strung behind them, and informed of the great news. Three days and nights of toil and hunger in the cave were not to be shaken off at once, as Tom and Becky soon discovered. They were bedridden all of Wednesday and Thursday, and seemed to grow more and more tired and worn, all the time. Tom got about, a little, on Thursday, was down-town Friday, and nearly as whole as ever Saturday; but Becky did not leave her room until Sunday, and then she looked as if she had passed through a wasting illness. Tom learned of Huck's sickness and went to see him on Friday, but could not be admitted to the bedroom; neither could he on Saturday or Sunday. He was admitted daily after that, but was warned to keep still about his adventure and introduce no exciting topic. The Widow Douglas stayed by to see that he obeyed. At home Tom learned of the Cardiff Hill event; also that the "ragged man's" body had eventually been found in the river near the ferry-landing; he had been drowned while trying to escape, perhaps. About a fortnight after Tom's rescue from the cave, he started off to visit Huck, who had grown plenty strong enough, now, to hear exciting talk, and Tom had some that would interest him, he thought. Judge Thatcher's house was on Tom's way, and he stopped to see Becky. The Judge and some friends set Tom to talking, and some one asked him ironically if he wouldn't like to go to the cave again. Tom said he thought he wouldn't mind it. The Judge said: "Well, there are others just like you, Tom, I've not the least doubt. But we have taken care of that. Nobody will get lost in that cave any more." "Why?" "Because I had its big door sheathed with boiler iron two weeks ago, and triple-locked--and I've got the keys." Tom turned as white as a sheet. "What's the matter, boy! Here, run, somebody! Fetch a glass of water!" The water was brought and thrown into Tom's face. "Ah, now you're all right. What was the matter with you, Tom?" "Oh, Judge, Injun Joe's in the cave!" CHAPTER XXXIII WITHIN a few minutes the news had spread, and a dozen skiff-loads of men were on their way to McDougal's cave, and the ferryboat, well filled with passengers, soon followed. Tom Sawyer was in the skiff that bore Judge Thatcher. When the cave door was unlocked, a sorrowful sight presented itself in the dim twilight of the place. Injun Joe lay stretched upon the ground, dead, with his face close to the crack of the door, as if his longing eyes had been fixed, to the latest moment, upon the light and the cheer of the free world outside. Tom was touched, for he knew by his own experience how this wretch had suffered. His pity was moved, but nevertheless he felt an abounding sense of relief and security, now, which revealed to him in a degree which he had not fully appreciated before how vast a weight of dread had been lying upon him since the day he lifted his voice against this bloody-minded outcast. Injun Joe's bowie-knife lay close by, its blade broken in two. The great foundation-beam of the door had been chipped and hacked through, with tedious labor; useless labor, too, it was, for the native rock formed a sill outside it, and upon that stubborn material the knife had wrought no effect; the only damage done was to the knife itself. But if there had been no stony obstruction there the labor would have been useless still, for if the beam had been wholly cut away Injun Joe could not have squeezed his body under the door, and he knew it. So he had only hacked that place in order to be doing something--in order to pass the weary time--in order to employ his tortured faculties. Ordinarily one could find half a dozen bits of candle stuck around in the crevices of this vestibule, left there by tourists; but there were none now. The prisoner had searched them out and eaten them. He had also contrived to catch a few bats, and these, also, he had eaten, leaving only their claws. The poor unfortunate had starved to death. In one place, near at hand, a stalagmite had been slowly growing up from the ground for ages, builded by the water-drip from a stalactite overhead. The captive had broken off the stalagmite, and upon the stump had placed a stone, wherein he had scooped a shallow hollow to catch the precious drop that fell once in every three minutes with the dreary regularity of a clock-tick--a dessertspoonful once in four and twenty hours. That drop was falling when the Pyramids were new; when Troy fell; when the foundations of Rome were laid; when Christ was crucified; when the Conqueror created the British empire; when Columbus sailed; when the massacre at Lexington was "news." It is falling now; it will still be falling when all these things shall have sunk down the afternoon of history, and the twilight of tradition, and been swallowed up in the thick night of oblivion. Has everything a purpose and a mission? Did this drop fall patiently during five thousand years to be ready for this flitting human insect's need? and has it another important object to accomplish ten thousand years to come? No matter. It is many and many a year since the hapless half-breed scooped out the stone to catch the priceless drops, but to this day the tourist stares longest at that pathetic stone and that slow-dropping water when he comes to see the wonders of McDougal's cave. Injun Joe's cup stands first in the list of the cavern's marvels; even "Aladdin's Palace" cannot rival it. Injun Joe was buried near the mouth of the cave; and people flocked there in boats and wagons from the towns and from all the farms and hamlets for seven miles around; they brought their children, and all sorts of provisions, and confessed that they had had almost as satisfactory a time at the funeral as they could have had at the hanging. This funeral stopped the further growth of one thing--the petition to the governor for Injun Joe's pardon. The petition had been largely signed; many tearful and eloquent meetings had been held, and a committee of sappy women been appointed to go in deep mourning and wail around the governor, and implore him to be a merciful ass and trample his duty under foot. Injun Joe was believed to have killed five citizens of the village, but what of that? If he had been Satan himself there would have been plenty of weaklings ready to scribble their names to a pardon-petition, and drip a tear on it from their permanently impaired and leaky water-works. The morning after the funeral Tom took Huck to a private place to have an important talk. Huck had learned all about Tom's adventure from the Welshman and the Widow Douglas, by this time, but Tom said he reckoned there was one thing they had not told him; that thing was what he wanted to talk about now. Huck's face saddened. He said: "I know what it is. You got into No. 2 and never found anything but whiskey. Nobody told me it was you; but I just knowed it must 'a' ben you, soon as I heard 'bout that whiskey business; and I knowed you hadn't got the money becuz you'd 'a' got at me some way or other and told me even if you was mum to everybody else. Tom, something's always told me we'd never get holt of that swag." "Why, Huck, I never told on that tavern-keeper. YOU know his tavern was all right the Saturday I went to the picnic. Don't you remember you was to watch there that night?" "Oh yes! Why, it seems 'bout a year ago. It was that very night that I follered Injun Joe to the widder's." "YOU followed him?" "Yes--but you keep mum. I reckon Injun Joe's left friends behind him, and I don't want 'em souring on me and doing me mean tricks. If it hadn't ben for me he'd be down in Texas now, all right." Then Huck told his entire adventure in confidence to Tom, who had only heard of the Welshman's part of it before. "Well," said Huck, presently, coming back to the main question, "whoever nipped the whiskey in No. 2, nipped the money, too, I reckon --anyways it's a goner for us, Tom." "Huck, that money wasn't ever in No. 2!" "What!" Huck searched his comrade's face keenly. "Tom, have you got on the track of that money again?" "Huck, it's in the cave!" Huck's eyes blazed. "Say it again, Tom." "The money's in the cave!" "Tom--honest injun, now--is it fun, or earnest?" "Earnest, Huck--just as earnest as ever I was in my life. Will you go in there with me and help get it out?" "I bet I will! I will if it's where we can blaze our way to it and not get lost." "Huck, we can do that without the least little bit of trouble in the world." "Good as wheat! What makes you think the money's--" "Huck, you just wait till we get in there. If we don't find it I'll agree to give you my drum and every thing I've got in the world. I will, by jings." "All right--it's a whiz. When do you say?" "Right now, if you say it. Are you strong enough?" "Is it far in the cave? I ben on my pins a little, three or four days, now, but I can't walk more'n a mile, Tom--least I don't think I could." "It's about five mile into there the way anybody but me would go, Huck, but there's a mighty short cut that they don't anybody but me know about. Huck, I'll take you right to it in a skiff. I'll float the skiff down there, and I'll pull it back again all by myself. You needn't ever turn your hand over." "Less start right off, Tom." "All right. We want some bread and meat, and our pipes, and a little bag or two, and two or three kite-strings, and some of these new-fangled things they call lucifer matches. I tell you, many's the time I wished I had some when I was in there before." A trifle after noon the boys borrowed a small skiff from a citizen who was absent, and got under way at once. When they were several miles below "Cave Hollow," Tom said: "Now you see this bluff here looks all alike all the way down from the cave hollow--no houses, no wood-yards, bushes all alike. But do you see that white place up yonder where there's been a landslide? Well, that's one of my marks. We'll get ashore, now." They landed. "Now, Huck, where we're a-standing you could touch that hole I got out of with a fishing-pole. See if you can find it." Huck searched all the place about, and found nothing. Tom proudly marched into a thick clump of sumach bushes and said: "Here you are! Look at it, Huck; it's the snuggest hole in this country. You just keep mum about it. All along I've been wanting to be a robber, but I knew I'd got to have a thing like this, and where to run across it was the bother. We've got it now, and we'll keep it quiet, only we'll let Joe Harper and Ben Rogers in--because of course there's got to be a Gang, or else there wouldn't be any style about it. Tom Sawyer's Gang--it sounds splendid, don't it, Huck?" "Well, it just does, Tom. And who'll we rob?" "Oh, most anybody. Waylay people--that's mostly the way." "And kill them?" "No, not always. Hive them in the cave till they raise a ransom." "What's a ransom?" "Money. You make them raise all they can, off'n their friends; and after you've kept them a year, if it ain't raised then you kill them. That's the general way. Only you don't kill the women. You shut up the women, but you don't kill them. They're always beautiful and rich, and awfully scared. You take their watches and things, but you always take your hat off and talk polite. They ain't anybody as polite as robbers --you'll see that in any book. Well, the women get to loving you, and after they've been in the cave a week or two weeks they stop crying and after that you couldn't get them to leave. If you drove them out they'd turn right around and come back. It's so in all the books." "Why, it's real bully, Tom. I believe it's better'n to be a pirate." "Yes, it's better in some ways, because it's close to home and circuses and all that." By this time everything was ready and the boys entered the hole, Tom in the lead. They toiled their way to the farther end of the tunnel, then made their spliced kite-strings fast and moved on. A few steps brought them to the spring, and Tom felt a shudder quiver all through him. He showed Huck the fragment of candle-wick perched on a lump of clay against the wall, and described how he and Becky had watched the flame struggle and expire. The boys began to quiet down to whispers, now, for the stillness and gloom of the place oppressed their spirits. They went on, and presently entered and followed Tom's other corridor until they reached the "jumping-off place." The candles revealed the fact that it was not really a precipice, but only a steep clay hill twenty or thirty feet high. Tom whispered: "Now I'll show you something, Huck." He held his candle aloft and said: "Look as far around the corner as you can. Do you see that? There--on the big rock over yonder--done with candle-smoke." "Tom, it's a CROSS!" "NOW where's your Number Two? 'UNDER THE CROSS,' hey? Right yonder's where I saw Injun Joe poke up his candle, Huck!" Huck stared at the mystic sign awhile, and then said with a shaky voice: "Tom, less git out of here!" "What! and leave the treasure?" "Yes--leave it. Injun Joe's ghost is round about there, certain." "No it ain't, Huck, no it ain't. It would ha'nt the place where he died--away out at the mouth of the cave--five mile from here." "No, Tom, it wouldn't. It would hang round the money. I know the ways of ghosts, and so do you." Tom began to fear that Huck was right. Misgivings gathered in his mind. But presently an idea occurred to him-- "Lookyhere, Huck, what fools we're making of ourselves! Injun Joe's ghost ain't a going to come around where there's a cross!" The point was well taken. It had its effect. "Tom, I didn't think of that. But that's so. It's luck for us, that cross is. I reckon we'll climb down there and have a hunt for that box." Tom went first, cutting rude steps in the clay hill as he descended. Huck followed. Four avenues opened out of the small cavern which the great rock stood in. The boys examined three of them with no result. They found a small recess in the one nearest the base of the rock, with a pallet of blankets spread down in it; also an old suspender, some bacon rind, and the well-gnawed bones of two or three fowls. But there was no money-box. The lads searched and researched this place, but in vain. Tom said: "He said UNDER the cross. Well, this comes nearest to being under the cross. It can't be under the rock itself, because that sets solid on the ground." They searched everywhere once more, and then sat down discouraged. Huck could suggest nothing. By-and-by Tom said: "Lookyhere, Huck, there's footprints and some candle-grease on the clay about one side of this rock, but not on the other sides. Now, what's that for? I bet you the money IS under the rock. I'm going to dig in the clay." "That ain't no bad notion, Tom!" said Huck with animation. Tom's "real Barlow" was out at once, and he had not dug four inches before he struck wood. "Hey, Huck!--you hear that?" Huck began to dig and scratch now. Some boards were soon uncovered and removed. They had concealed a natural chasm which led under the rock. Tom got into this and held his candle as far under the rock as he could, but said he could not see to the end of the rift. He proposed to explore. He stooped and passed under; the narrow way descended gradually. He followed its winding course, first to the right, then to the left, Huck at his heels. Tom turned a short curve, by-and-by, and exclaimed: "My goodness, Huck, lookyhere!" It was the treasure-box, sure enough, occupying a snug little cavern, along with an empty powder-keg, a couple of guns in leather cases, two or three pairs of old moccasins, a leather belt, and some other rubbish well soaked with the water-drip. "Got it at last!" said Huck, ploughing among the tarnished coins with his hand. "My, but we're rich, Tom!" "Huck, I always reckoned we'd get it. It's just too good to believe, but we HAVE got it, sure! Say--let's not fool around here. Let's snake it out. Lemme see if I can lift the box." It weighed about fifty pounds. Tom could lift it, after an awkward fashion, but could not carry it conveniently. "I thought so," he said; "THEY carried it like it was heavy, that day at the ha'nted house. I noticed that. I reckon I was right to think of fetching the little bags along." The money was soon in the bags and the boys took it up to the cross rock. "Now less fetch the guns and things," said Huck. "No, Huck--leave them there. They're just the tricks to have when we go to robbing. We'll keep them there all the time, and we'll hold our orgies there, too. It's an awful snug place for orgies." "What orgies?" "I dono. But robbers always have orgies, and of course we've got to have them, too. Come along, Huck, we've been in here a long time. It's getting late, I reckon. I'm hungry, too. We'll eat and smoke when we get to the skiff." They presently emerged into the clump of sumach bushes, looked warily out, found the coast clear, and were soon lunching and smoking in the skiff. As the sun dipped toward the horizon they pushed out and got under way. Tom skimmed up the shore through the long twilight, chatting cheerily with Huck, and landed shortly after dark. "Now, Huck," said Tom, "we'll hide the money in the loft of the widow's woodshed, and I'll come up in the morning and we'll count it and divide, and then we'll hunt up a place out in the woods for it where it will be safe. Just you lay quiet here and watch the stuff till I run and hook Benny Taylor's little wagon; I won't be gone a minute." He disappeared, and presently returned with the wagon, put the two small sacks into it, threw some old rags on top of them, and started off, dragging his cargo behind him. When the boys reached the Welshman's house, they stopped to rest. Just as they were about to move on, the Welshman stepped out and said: "Hallo, who's that?" "Huck and Tom Sawyer." "Good! Come along with me, boys, you are keeping everybody waiting. Here--hurry up, trot ahead--I'll haul the wagon for you. Why, it's not as light as it might be. Got bricks in it?--or old metal?" "Old metal," said Tom. "I judged so; the boys in this town will take more trouble and fool away more time hunting up six bits' worth of old iron to sell to the foundry than they would to make twice the money at regular work. But that's human nature--hurry along, hurry along!" The boys wanted to know what the hurry was about. "Never mind; you'll see, when we get to the Widow Douglas'." Huck said with some apprehension--for he was long used to being falsely accused: "Mr. Jones, we haven't been doing nothing." The Welshman laughed. "Well, I don't know, Huck, my boy. I don't know about that. Ain't you and the widow good friends?" "Yes. Well, she's ben good friends to me, anyway." "All right, then. What do you want to be afraid for?" This question was not entirely answered in Huck's slow mind before he found himself pushed, along with Tom, into Mrs. Douglas' drawing-room. Mr. Jones left the wagon near the door and followed. The place was grandly lighted, and everybody that was of any consequence in the village was there. The Thatchers were there, the Harpers, the Rogerses, Aunt Polly, Sid, Mary, the minister, the editor, and a great many more, and all dressed in their best. The widow received the boys as heartily as any one could well receive two such looking beings. They were covered with clay and candle-grease. Aunt Polly blushed crimson with humiliation, and frowned and shook her head at Tom. Nobody suffered half as much as the two boys did, however. Mr. Jones said: "Tom wasn't at home, yet, so I gave him up; but I stumbled on him and Huck right at my door, and so I just brought them along in a hurry." "And you did just right," said the widow. "Come with me, boys." She took them to a bedchamber and said: "Now wash and dress yourselves. Here are two new suits of clothes --shirts, socks, everything complete. They're Huck's--no, no thanks, Huck--Mr. Jones bought one and I the other. But they'll fit both of you. Get into them. We'll wait--come down when you are slicked up enough." Then she left. CHAPTER XXXIV HUCK said: "Tom, we can slope, if we can find a rope. The window ain't high from the ground." "Shucks! what do you want to slope for?" "Well, I ain't used to that kind of a crowd. I can't stand it. I ain't going down there, Tom." "Oh, bother! It ain't anything. I don't mind it a bit. I'll take care of you." Sid appeared. "Tom," said he, "auntie has been waiting for you all the afternoon. Mary got your Sunday clothes ready, and everybody's been fretting about you. Say--ain't this grease and clay, on your clothes?" "Now, Mr. Siddy, you jist 'tend to your own business. What's all this blow-out about, anyway?" "It's one of the widow's parties that she's always having. This time it's for the Welshman and his sons, on account of that scrape they helped her out of the other night. And say--I can tell you something, if you want to know." "Well, what?" "Why, old Mr. Jones is going to try to spring something on the people here to-night, but I overheard him tell auntie to-day about it, as a secret, but I reckon it's not much of a secret now. Everybody knows --the widow, too, for all she tries to let on she don't. Mr. Jones was bound Huck should be here--couldn't get along with his grand secret without Huck, you know!" "Secret about what, Sid?" "About Huck tracking the robbers to the widow's. I reckon Mr. Jones was going to make a grand time over his surprise, but I bet you it will drop pretty flat." Sid chuckled in a very contented and satisfied way. "Sid, was it you that told?" "Oh, never mind who it was. SOMEBODY told--that's enough." "Sid, there's only one person in this town mean enough to do that, and that's you. If you had been in Huck's place you'd 'a' sneaked down the hill and never told anybody on the robbers. You can't do any but mean things, and you can't bear to see anybody praised for doing good ones. There--no thanks, as the widow says"--and Tom cuffed Sid's ears and helped him to the door with several kicks. "Now go and tell auntie if you dare--and to-morrow you'll catch it!" Some minutes later the widow's guests were at the supper-table, and a dozen children were propped up at little side-tables in the same room, after the fashion of that country and that day. At the proper time Mr. Jones made his little speech, in which he thanked the widow for the honor she was doing himself and his sons, but said that there was another person whose modesty-- And so forth and so on. He sprung his secret about Huck's share in the adventure in the finest dramatic manner he was master of, but the surprise it occasioned was largely counterfeit and not as clamorous and effusive as it might have been under happier circumstances. However, the widow made a pretty fair show of astonishment, and heaped so many compliments and so much gratitude upon Huck that he almost forgot the nearly intolerable discomfort of his new clothes in the entirely intolerable discomfort of being set up as a target for everybody's gaze and everybody's laudations. The widow said she meant to give Huck a home under her roof and have him educated; and that when she could spare the money she would start him in business in a modest way. Tom's chance was come. He said: "Huck don't need it. Huck's rich." Nothing but a heavy strain upon the good manners of the company kept back the due and proper complimentary laugh at this pleasant joke. But the silence was a little awkward. Tom broke it: "Huck's got money. Maybe you don't believe it, but he's got lots of it. Oh, you needn't smile--I reckon I can show you. You just wait a minute." Tom ran out of doors. The company looked at each other with a perplexed interest--and inquiringly at Huck, who was tongue-tied. "Sid, what ails Tom?" said Aunt Polly. "He--well, there ain't ever any making of that boy out. I never--" Tom entered, struggling with the weight of his sacks, and Aunt Polly did not finish her sentence. Tom poured the mass of yellow coin upon the table and said: "There--what did I tell you? Half of it's Huck's and half of it's mine!" The spectacle took the general breath away. All gazed, nobody spoke for a moment. Then there was a unanimous call for an explanation. Tom said he could furnish it, and he did. The tale was long, but brimful of interest. There was scarcely an interruption from any one to break the charm of its flow. When he had finished, Mr. Jones said: "I thought I had fixed up a little surprise for this occasion, but it don't amount to anything now. This one makes it sing mighty small, I'm willing to allow." The money was counted. The sum amounted to a little over twelve thousand dollars. It was more than any one present had ever seen at one time before, though several persons were there who were worth considerably more than that in property. CHAPTER XXXV THE reader may rest satisfied that Tom's and Huck's windfall made a mighty stir in the poor little village of St. Petersburg. So vast a sum, all in actual cash, seemed next to incredible. It was talked about, gloated over, glorified, until the reason of many of the citizens tottered under the strain of the unhealthy excitement. Every "haunted" house in St. Petersburg and the neighboring villages was dissected, plank by plank, and its foundations dug up and ransacked for hidden treasure--and not by boys, but men--pretty grave, unromantic men, too, some of them. Wherever Tom and Huck appeared they were courted, admired, stared at. The boys were not able to remember that their remarks had possessed weight before; but now their sayings were treasured and repeated; everything they did seemed somehow to be regarded as remarkable; they had evidently lost the power of doing and saying commonplace things; moreover, their past history was raked up and discovered to bear marks of conspicuous originality. The village paper published biographical sketches of the boys. The Widow Douglas put Huck's money out at six per cent., and Judge Thatcher did the same with Tom's at Aunt Polly's request. Each lad had an income, now, that was simply prodigious--a dollar for every week-day in the year and half of the Sundays. It was just what the minister got --no, it was what he was promised--he generally couldn't collect it. A dollar and a quarter a week would board, lodge, and school a boy in those old simple days--and clothe him and wash him, too, for that matter. Judge Thatcher had conceived a great opinion of Tom. He said that no commonplace boy would ever have got his daughter out of the cave. When Becky told her father, in strict confidence, how Tom had taken her whipping at school, the Judge was visibly moved; and when she pleaded grace for the mighty lie which Tom had told in order to shift that whipping from her shoulders to his own, the Judge said with a fine outburst that it was a noble, a generous, a magnanimous lie--a lie that was worthy to hold up its head and march down through history breast to breast with George Washington's lauded Truth about the hatchet! Becky thought her father had never looked so tall and so superb as when he walked the floor and stamped his foot and said that. She went straight off and told Tom about it. Judge Thatcher hoped to see Tom a great lawyer or a great soldier some day. He said he meant to look to it that Tom should be admitted to the National Military Academy and afterward trained in the best law school in the country, in order that he might be ready for either career or both. Huck Finn's wealth and the fact that he was now under the Widow Douglas' protection introduced him into society--no, dragged him into it, hurled him into it--and his sufferings were almost more than he could bear. The widow's servants kept him clean and neat, combed and brushed, and they bedded him nightly in unsympathetic sheets that had not one little spot or stain which he could press to his heart and know for a friend. He had to eat with a knife and fork; he had to use napkin, cup, and plate; he had to learn his book, he had to go to church; he had to talk so properly that speech was become insipid in his mouth; whithersoever he turned, the bars and shackles of civilization shut him in and bound him hand and foot. He bravely bore his miseries three weeks, and then one day turned up missing. For forty-eight hours the widow hunted for him everywhere in great distress. The public were profoundly concerned; they searched high and low, they dragged the river for his body. Early the third morning Tom Sawyer wisely went poking among some old empty hogsheads down behind the abandoned slaughter-house, and in one of them he found the refugee. Huck had slept there; he had just breakfasted upon some stolen odds and ends of food, and was lying off, now, in comfort, with his pipe. He was unkempt, uncombed, and clad in the same old ruin of rags that had made him picturesque in the days when he was free and happy. Tom routed him out, told him the trouble he had been causing, and urged him to go home. Huck's face lost its tranquil content, and took a melancholy cast. He said: "Don't talk about it, Tom. I've tried it, and it don't work; it don't work, Tom. It ain't for me; I ain't used to it. The widder's good to me, and friendly; but I can't stand them ways. She makes me get up just at the same time every morning; she makes me wash, they comb me all to thunder; she won't let me sleep in the woodshed; I got to wear them blamed clothes that just smothers me, Tom; they don't seem to any air git through 'em, somehow; and they're so rotten nice that I can't set down, nor lay down, nor roll around anywher's; I hain't slid on a cellar-door for--well, it 'pears to be years; I got to go to church and sweat and sweat--I hate them ornery sermons! I can't ketch a fly in there, I can't chaw. I got to wear shoes all Sunday. The widder eats by a bell; she goes to bed by a bell; she gits up by a bell--everything's so awful reg'lar a body can't stand it." "Well, everybody does that way, Huck." "Tom, it don't make no difference. I ain't everybody, and I can't STAND it. It's awful to be tied up so. And grub comes too easy--I don't take no interest in vittles, that way. I got to ask to go a-fishing; I got to ask to go in a-swimming--dern'd if I hain't got to ask to do everything. Well, I'd got to talk so nice it wasn't no comfort--I'd got to go up in the attic and rip out awhile, every day, to git a taste in my mouth, or I'd a died, Tom. The widder wouldn't let me smoke; she wouldn't let me yell, she wouldn't let me gape, nor stretch, nor scratch, before folks--" [Then with a spasm of special irritation and injury]--"And dad fetch it, she prayed all the time! I never see such a woman! I HAD to shove, Tom--I just had to. And besides, that school's going to open, and I'd a had to go to it--well, I wouldn't stand THAT, Tom. Looky here, Tom, being rich ain't what it's cracked up to be. It's just worry and worry, and sweat and sweat, and a-wishing you was dead all the time. Now these clothes suits me, and this bar'l suits me, and I ain't ever going to shake 'em any more. Tom, I wouldn't ever got into all this trouble if it hadn't 'a' ben for that money; now you just take my sheer of it along with your'n, and gimme a ten-center sometimes--not many times, becuz I don't give a dern for a thing 'thout it's tollable hard to git--and you go and beg off for me with the widder." "Oh, Huck, you know I can't do that. 'Tain't fair; and besides if you'll try this thing just a while longer you'll come to like it." "Like it! Yes--the way I'd like a hot stove if I was to set on it long enough. No, Tom, I won't be rich, and I won't live in them cussed smothery houses. I like the woods, and the river, and hogsheads, and I'll stick to 'em, too. Blame it all! just as we'd got guns, and a cave, and all just fixed to rob, here this dern foolishness has got to come up and spile it all!" Tom saw his opportunity-- "Lookyhere, Huck, being rich ain't going to keep me back from turning robber." "No! Oh, good-licks; are you in real dead-wood earnest, Tom?" "Just as dead earnest as I'm sitting here. But Huck, we can't let you into the gang if you ain't respectable, you know." Huck's joy was quenched. "Can't let me in, Tom? Didn't you let me go for a pirate?" "Yes, but that's different. A robber is more high-toned than what a pirate is--as a general thing. In most countries they're awful high up in the nobility--dukes and such." "Now, Tom, hain't you always ben friendly to me? You wouldn't shet me out, would you, Tom? You wouldn't do that, now, WOULD you, Tom?" "Huck, I wouldn't want to, and I DON'T want to--but what would people say? Why, they'd say, 'Mph! Tom Sawyer's Gang! pretty low characters in it!' They'd mean you, Huck. You wouldn't like that, and I wouldn't." Huck was silent for some time, engaged in a mental struggle. Finally he said: "Well, I'll go back to the widder for a month and tackle it and see if I can come to stand it, if you'll let me b'long to the gang, Tom." "All right, Huck, it's a whiz! Come along, old chap, and I'll ask the widow to let up on you a little, Huck." "Will you, Tom--now will you? That's good. If she'll let up on some of the roughest things, I'll smoke private and cuss private, and crowd through or bust. When you going to start the gang and turn robbers?" "Oh, right off. We'll get the boys together and have the initiation to-night, maybe." "Have the which?" "Have the initiation." "What's that?" "It's to swear to stand by one another, and never tell the gang's secrets, even if you're chopped all to flinders, and kill anybody and all his family that hurts one of the gang." "That's gay--that's mighty gay, Tom, I tell you." "Well, I bet it is. And all that swearing's got to be done at midnight, in the lonesomest, awfulest place you can find--a ha'nted house is the best, but they're all ripped up now." "Well, midnight's good, anyway, Tom." "Yes, so it is. And you've got to swear on a coffin, and sign it with blood." "Now, that's something LIKE! Why, it's a million times bullier than pirating. I'll stick to the widder till I rot, Tom; and if I git to be a reg'lar ripper of a robber, and everybody talking 'bout it, I reckon she'll be proud she snaked me in out of the wet." CONCLUSION SO endeth this chronicle. It being strictly a history of a BOY, it must stop here; the story could not go much further without becoming the history of a MAN. When one writes a novel about grown people, he knows exactly where to stop--that is, with a marriage; but when he writes of juveniles, he must stop where he best can. Most of the characters that perform in this book still live, and are prosperous and happy. Some day it may seem worth while to take up the story of the younger ones again and see what sort of men and women they turned out to be; therefore it will be wisest not to reveal any of that part of their lives at present. Produced by David Widger. The previous edition was updated by Jose Menendez. THE ADVENTURES OF TOM SAWYER BY MARK TWAIN (Samuel Langhorne Clemens) P R E F A C E MOST of the adventures recorded in this book really occurred; one or two were experiences of my own, the rest those of boys who were schoolmates of mine. Huck Finn is drawn from life; Tom Sawyer also, but not from an individual--he is a combination of the characteristics of three boys whom I knew, and therefore belongs to the composite order of architecture. The odd superstitions touched upon were all prevalent among children and slaves in the West at the period of this story--that is to say, thirty or forty years ago. Although my book is intended mainly for the entertainment of boys and girls, I hope it will not be shunned by men and women on that account, for part of my plan has been to try to pleasantly remind adults of what they once were themselves, and of how they felt and thought and talked, and what queer enterprises they sometimes engaged in. THE AUTHOR. HARTFORD, 1876. T O M S A W Y E R CHAPTER I "TOM!" No answer. "TOM!" No answer. "What's gone with that boy, I wonder? You TOM!" No answer. The old lady pulled her spectacles down and looked over them about the room; then she put them up and looked out under them. She seldom or never looked THROUGH them for so small a thing as a boy; they were her state pair, the pride of her heart, and were built for "style," not service--she could have seen through a pair of stove-lids just as well. She looked perplexed for a moment, and then said, not fiercely, but still loud enough for the furniture to hear: "Well, I lay if I get hold of you I'll--" She did not finish, for by this time she was bending down and punching under the bed with the broom, and so she needed breath to punctuate the punches with. She resurrected nothing but the cat. "I never did see the beat of that boy!" She went to the open door and stood in it and looked out among the tomato vines and "jimpson" weeds that constituted the garden. No Tom. So she lifted up her voice at an angle calculated for distance and shouted: "Y-o-u-u TOM!" There was a slight noise behind her and she turned just in time to seize a small boy by the slack of his roundabout and arrest his flight. "There! I might 'a' thought of that closet. What you been doing in there?" "Nothing." "Nothing! Look at your hands. And look at your mouth. What IS that truck?" "I don't know, aunt." "Well, I know. It's jam--that's what it is. Forty times I've said if you didn't let that jam alone I'd skin you. Hand me that switch." The switch hovered in the air--the peril was desperate-- "My! Look behind you, aunt!" The old lady whirled round, and snatched her skirts out of danger. The lad fled on the instant, scrambled up the high board-fence, and disappeared over it. His aunt Polly stood surprised a moment, and then broke into a gentle laugh. "Hang the boy, can't I never learn anything? Ain't he played me tricks enough like that for me to be looking out for him by this time? But old fools is the biggest fools there is. Can't learn an old dog new tricks, as the saying is. But my goodness, he never plays them alike, two days, and how is a body to know what's coming? He 'pears to know just how long he can torment me before I get my dander up, and he knows if he can make out to put me off for a minute or make me laugh, it's all down again and I can't hit him a lick. I ain't doing my duty by that boy, and that's the Lord's truth, goodness knows. Spare the rod and spile the child, as the Good Book says. I'm a laying up sin and suffering for us both, I know. He's full of the Old Scratch, but laws-a-me! he's my own dead sister's boy, poor thing, and I ain't got the heart to lash him, somehow. Every time I let him off, my conscience does hurt me so, and every time I hit him my old heart most breaks. Well-a-well, man that is born of woman is of few days and full of trouble, as the Scripture says, and I reckon it's so. He'll play hookey this evening, * and [* Southwestern for "afternoon"] I'll just be obleeged to make him work, to-morrow, to punish him. It's mighty hard to make him work Saturdays, when all the boys is having holiday, but he hates work more than he hates anything else, and I've GOT to do some of my duty by him, or I'll be the ruination of the child." Tom did play hookey, and he had a very good time. He got back home barely in season to help Jim, the small colored boy, saw next-day's wood and split the kindlings before supper--at least he was there in time to tell his adventures to Jim while Jim did three-fourths of the work. Tom's younger brother (or rather half-brother) Sid was already through with his part of the work (picking up chips), for he was a quiet boy, and had no adventurous, troublesome ways. While Tom was eating his supper, and stealing sugar as opportunity offered, Aunt Polly asked him questions that were full of guile, and very deep--for she wanted to trap him into damaging revealments. Like many other simple-hearted souls, it was her pet vanity to believe she was endowed with a talent for dark and mysterious diplomacy, and she loved to contemplate her most transparent devices as marvels of low cunning. Said she: "Tom, it was middling warm in school, warn't it?" "Yes'm." "Powerful warm, warn't it?" "Yes'm." "Didn't you want to go in a-swimming, Tom?" A bit of a scare shot through Tom--a touch of uncomfortable suspicion. He searched Aunt Polly's face, but it told him nothing. So he said: "No'm--well, not very much." The old lady reached out her hand and felt Tom's shirt, and said: "But you ain't too warm now, though." And it flattered her to reflect that she had discovered that the shirt was dry without anybody knowing that that was what she had in her mind. But in spite of her, Tom knew where the wind lay, now. So he forestalled what might be the next move: "Some of us pumped on our heads--mine's damp yet. See?" Aunt Polly was vexed to think she had overlooked that bit of circumstantial evidence, and missed a trick. Then she had a new inspiration: "Tom, you didn't have to undo your shirt collar where I sewed it, to pump on your head, did you? Unbutton your jacket!" The trouble vanished out of Tom's face. He opened his jacket. His shirt collar was securely sewed. "Bother! Well, go 'long with you. I'd made sure you'd played hookey and been a-swimming. But I forgive ye, Tom. I reckon you're a kind of a singed cat, as the saying is--better'n you look. THIS time." She was half sorry her sagacity had miscarried, and half glad that Tom had stumbled into obedient conduct for once. But Sidney said: "Well, now, if I didn't think you sewed his collar with white thread, but it's black." "Why, I did sew it with white! Tom!" But Tom did not wait for the rest. As he went out at the door he said: "Siddy, I'll lick you for that." In a safe place Tom examined two large needles which were thrust into the lapels of his jacket, and had thread bound about them--one needle carried white thread and the other black. He said: "She'd never noticed if it hadn't been for Sid. Confound it! sometimes she sews it with white, and sometimes she sews it with black. I wish to geeminy she'd stick to one or t'other--I can't keep the run of 'em. But I bet you I'll lam Sid for that. I'll learn him!" He was not the Model Boy of the village. He knew the model boy very well though--and loathed him. Within two minutes, or even less, he had forgotten all his troubles. Not because his troubles were one whit less heavy and bitter to him than a man's are to a man, but because a new and powerful interest bore them down and drove them out of his mind for the time--just as men's misfortunes are forgotten in the excitement of new enterprises. This new interest was a valued novelty in whistling, which he had just acquired from a negro, and he was suffering to practise it undisturbed. It consisted in a peculiar bird-like turn, a sort of liquid warble, produced by touching the tongue to the roof of the mouth at short intervals in the midst of the music--the reader probably remembers how to do it, if he has ever been a boy. Diligence and attention soon gave him the knack of it, and he strode down the street with his mouth full of harmony and his soul full of gratitude. He felt much as an astronomer feels who has discovered a new planet--no doubt, as far as strong, deep, unalloyed pleasure is concerned, the advantage was with the boy, not the astronomer. The summer evenings were long. It was not dark, yet. Presently Tom checked his whistle. A stranger was before him--a boy a shade larger than himself. A new-comer of any age or either sex was an impressive curiosity in the poor little shabby village of St. Petersburg. This boy was well dressed, too--well dressed on a week-day. This was simply astounding. His cap was a dainty thing, his close-buttoned blue cloth roundabout was new and natty, and so were his pantaloons. He had shoes on--and it was only Friday. He even wore a necktie, a bright bit of ribbon. He had a citified air about him that ate into Tom's vitals. The more Tom stared at the splendid marvel, the higher he turned up his nose at his finery and the shabbier and shabbier his own outfit seemed to him to grow. Neither boy spoke. If one moved, the other moved--but only sidewise, in a circle; they kept face to face and eye to eye all the time. Finally Tom said: "I can lick you!" "I'd like to see you try it." "Well, I can do it." "No you can't, either." "Yes I can." "No you can't." "I can." "You can't." "Can!" "Can't!" An uncomfortable pause. Then Tom said: "What's your name?" "'Tisn't any of your business, maybe." "Well I 'low I'll MAKE it my business." "Well why don't you?" "If you say much, I will." "Much--much--MUCH. There now." "Oh, you think you're mighty smart, DON'T you? I could lick you with one hand tied behind me, if I wanted to." "Well why don't you DO it? You SAY you can do it." "Well I WILL, if you fool with me." "Oh yes--I've seen whole families in the same fix." "Smarty! You think you're SOME, now, DON'T you? Oh, what a hat!" "You can lump that hat if you don't like it. I dare you to knock it off--and anybody that'll take a dare will suck eggs." "You're a liar!" "You're another." "You're a fighting liar and dasn't take it up." "Aw--take a walk!" "Say--if you give me much more of your sass I'll take and bounce a rock off'n your head." "Oh, of COURSE you will." "Well I WILL." "Well why don't you DO it then? What do you keep SAYING you will for? Why don't you DO it? It's because you're afraid." "I AIN'T afraid." "You are." "I ain't." "You are." Another pause, and more eying and sidling around each other. Presently they were shoulder to shoulder. Tom said: "Get away from here!" "Go away yourself!" "I won't." "I won't either." So they stood, each with a foot placed at an angle as a brace, and both shoving with might and main, and glowering at each other with hate. But neither could get an advantage. After struggling till both were hot and flushed, each relaxed his strain with watchful caution, and Tom said: "You're a coward and a pup. I'll tell my big brother on you, and he can thrash you with his little finger, and I'll make him do it, too." "What do I care for your big brother? I've got a brother that's bigger than he is--and what's more, he can throw him over that fence, too." [Both brothers were imaginary.] "That's a lie." "YOUR saying so don't make it so." Tom drew a line in the dust with his big toe, and said: "I dare you to step over that, and I'll lick you till you can't stand up. Anybody that'll take a dare will steal sheep." The new boy stepped over promptly, and said: "Now you said you'd do it, now let's see you do it." "Don't you crowd me now; you better look out." "Well, you SAID you'd do it--why don't you do it?" "By jingo! for two cents I WILL do it." The new boy took two broad coppers out of his pocket and held them out with derision. Tom struck them to the ground. In an instant both boys were rolling and tumbling in the dirt, gripped together like cats; and for the space of a minute they tugged and tore at each other's hair and clothes, punched and scratched each other's nose, and covered themselves with dust and glory. Presently the confusion took form, and through the fog of battle Tom appeared, seated astride the new boy, and pounding him with his fists. "Holler 'nuff!" said he. The boy only struggled to free himself. He was crying--mainly from rage. "Holler 'nuff!"--and the pounding went on. At last the stranger got out a smothered "'Nuff!" and Tom let him up and said: "Now that'll learn you. Better look out who you're fooling with next time." The new boy went off brushing the dust from his clothes, sobbing, snuffling, and occasionally looking back and shaking his head and threatening what he would do to Tom the "next time he caught him out." To which Tom responded with jeers, and started off in high feather, and as soon as his back was turned the new boy snatched up a stone, threw it and hit him between the shoulders and then turned tail and ran like an antelope. Tom chased the traitor home, and thus found out where he lived. He then held a position at the gate for some time, daring the enemy to come outside, but the enemy only made faces at him through the window and declined. At last the enemy's mother appeared, and called Tom a bad, vicious, vulgar child, and ordered him away. So he went away; but he said he "'lowed" to "lay" for that boy. He got home pretty late that night, and when he climbed cautiously in at the window, he uncovered an ambuscade, in the person of his aunt; and when she saw the state his clothes were in her resolution to turn his Saturday holiday into captivity at hard labor became adamantine in its firmness. CHAPTER II SATURDAY morning was come, and all the summer world was bright and fresh, and brimming with life. There was a song in every heart; and if the heart was young the music issued at the lips. There was cheer in every face and a spring in every step. The locust-trees were in bloom and the fragrance of the blossoms filled the air. Cardiff Hill, beyond the village and above it, was green with vegetation and it lay just far enough away to seem a Delectable Land, dreamy, reposeful, and inviting. Tom appeared on the sidewalk with a bucket of whitewash and a long-handled brush. He surveyed the fence, and all gladness left him and a deep melancholy settled down upon his spirit. Thirty yards of board fence nine feet high. Life to him seemed hollow, and existence but a burden. Sighing, he dipped his brush and passed it along the topmost plank; repeated the operation; did it again; compared the insignificant whitewashed streak with the far-reaching continent of unwhitewashed fence, and sat down on a tree-box discouraged. Jim came skipping out at the gate with a tin pail, and singing Buffalo Gals. Bringing water from the town pump had always been hateful work in Tom's eyes, before, but now it did not strike him so. He remembered that there was company at the pump. White, mulatto, and negro boys and girls were always there waiting their turns, resting, trading playthings, quarrelling, fighting, skylarking. And he remembered that although the pump was only a hundred and fifty yards off, Jim never got back with a bucket of water under an hour--and even then somebody generally had to go after him. Tom said: "Say, Jim, I'll fetch the water if you'll whitewash some." Jim shook his head and said: "Can't, Mars Tom. Ole missis, she tole me I got to go an' git dis water an' not stop foolin' roun' wid anybody. She say she spec' Mars Tom gwine to ax me to whitewash, an' so she tole me go 'long an' 'tend to my own business--she 'lowed SHE'D 'tend to de whitewashin'." "Oh, never you mind what she said, Jim. That's the way she always talks. Gimme the bucket--I won't be gone only a a minute. SHE won't ever know." "Oh, I dasn't, Mars Tom. Ole missis she'd take an' tar de head off'n me. 'Deed she would." "SHE! She never licks anybody--whacks 'em over the head with her thimble--and who cares for that, I'd like to know. She talks awful, but talk don't hurt--anyways it don't if she don't cry. Jim, I'll give you a marvel. I'll give you a white alley!" Jim began to waver. "White alley, Jim! And it's a bully taw." "My! Dat's a mighty gay marvel, I tell you! But Mars Tom I's powerful 'fraid ole missis--" "And besides, if you will I'll show you my sore toe." Jim was only human--this attraction was too much for him. He put down his pail, took the white alley, and bent over the toe with absorbing interest while the bandage was being unwound. In another moment he was flying down the street with his pail and a tingling rear, Tom was whitewashing with vigor, and Aunt Polly was retiring from the field with a slipper in her hand and triumph in her eye. But Tom's energy did not last. He began to think of the fun he had planned for this day, and his sorrows multiplied. Soon the free boys would come tripping along on all sorts of delicious expeditions, and they would make a world of fun of him for having to work--the very thought of it burnt him like fire. He got out his worldly wealth and examined it--bits of toys, marbles, and trash; enough to buy an exchange of WORK, maybe, but not half enough to buy so much as half an hour of pure freedom. So he returned his straitened means to his pocket, and gave up the idea of trying to buy the boys. At this dark and hopeless moment an inspiration burst upon him! Nothing less than a great, magnificent inspiration. He took up his brush and went tranquilly to work. Ben Rogers hove in sight presently--the very boy, of all boys, whose ridicule he had been dreading. Ben's gait was the hop-skip-and-jump--proof enough that his heart was light and his anticipations high. He was eating an apple, and giving a long, melodious whoop, at intervals, followed by a deep-toned ding-dong-dong, ding-dong-dong, for he was personating a steamboat. As he drew near, he slackened speed, took the middle of the street, leaned far over to starboard and rounded to ponderously and with laborious pomp and circumstance--for he was personating the Big Missouri, and considered himself to be drawing nine feet of water. He was boat and captain and engine-bells combined, so he had to imagine himself standing on his own hurricane-deck giving the orders and executing them: "Stop her, sir! Ting-a-ling-ling!" The headway ran almost out, and he drew up slowly toward the sidewalk. "Ship up to back! Ting-a-ling-ling!" His arms straightened and stiffened down his sides. "Set her back on the stabboard! Ting-a-ling-ling! Chow! ch-chow-wow! Chow!" His right hand, meantime, describing stately circles--for it was representing a forty-foot wheel. "Let her go back on the labboard! Ting-a-lingling! Chow-ch-chow-chow!" The left hand began to describe circles. "Stop the stabboard! Ting-a-ling-ling! Stop the labboard! Come ahead on the stabboard! Stop her! Let your outside turn over slow! Ting-a-ling-ling! Chow-ow-ow! Get out that head-line! LIVELY now! Come--out with your spring-line--what're you about there! Take a turn round that stump with the bight of it! Stand by that stage, now--let her go! Done with the engines, sir! Ting-a-ling-ling! SH'T! S'H'T! SH'T!" (trying the gauge-cocks). Tom went on whitewashing--paid no attention to the steamboat. Ben stared a moment and then said: "Hi-YI! YOU'RE up a stump, ain't you!" No answer. Tom surveyed his last touch with the eye of an artist, then he gave his brush another gentle sweep and surveyed the result, as before. Ben ranged up alongside of him. Tom's mouth watered for the apple, but he stuck to his work. Ben said: "Hello, old chap, you got to work, hey?" Tom wheeled suddenly and said: "Why, it's you, Ben! I warn't noticing." "Say--I'm going in a-swimming, I am. Don't you wish you could? But of course you'd druther WORK--wouldn't you? Course you would!" Tom contemplated the boy a bit, and said: "What do you call work?" "Why, ain't THAT work?" Tom resumed his whitewashing, and answered carelessly: "Well, maybe it is, and maybe it ain't. All I know, is, it suits Tom Sawyer." "Oh come, now, you don't mean to let on that you LIKE it?" The brush continued to move. "Like it? Well, I don't see why I oughtn't to like it. Does a boy get a chance to whitewash a fence every day?" That put the thing in a new light. Ben stopped nibbling his apple. Tom swept his brush daintily back and forth--stepped back to note the effect--added a touch here and there--criticised the effect again--Ben watching every move and getting more and more interested, more and more absorbed. Presently he said: "Say, Tom, let ME whitewash a little." Tom considered, was about to consent; but he altered his mind: "No--no--I reckon it wouldn't hardly do, Ben. You see, Aunt Polly's awful particular about this fence--right here on the street, you know --but if it was the back fence I wouldn't mind and SHE wouldn't. Yes, she's awful particular about this fence; it's got to be done very careful; I reckon there ain't one boy in a thousand, maybe two thousand, that can do it the way it's got to be done." "No--is that so? Oh come, now--lemme just try. Only just a little--I'd let YOU, if you was me, Tom." "Ben, I'd like to, honest injun; but Aunt Polly--well, Jim wanted to do it, but she wouldn't let him; Sid wanted to do it, and she wouldn't let Sid. Now don't you see how I'm fixed? If you was to tackle this fence and anything was to happen to it--" "Oh, shucks, I'll be just as careful. Now lemme try. Say--I'll give you the core of my apple." "Well, here--No, Ben, now don't. I'm afeard--" "I'll give you ALL of it!" Tom gave up the brush with reluctance in his face, but alacrity in his heart. And while the late steamer Big Missouri worked and sweated in the sun, the retired artist sat on a barrel in the shade close by, dangled his legs, munched his apple, and planned the slaughter of more innocents. There was no lack of material; boys happened along every little while; they came to jeer, but remained to whitewash. By the time Ben was fagged out, Tom had traded the next chance to Billy Fisher for a kite, in good repair; and when he played out, Johnny Miller bought in for a dead rat and a string to swing it with--and so on, and so on, hour after hour. And when the middle of the afternoon came, from being a poor poverty-stricken boy in the morning, Tom was literally rolling in wealth. He had besides the things before mentioned, twelve marbles, part of a jews-harp, a piece of blue bottle-glass to look through, a spool cannon, a key that wouldn't unlock anything, a fragment of chalk, a glass stopper of a decanter, a tin soldier, a couple of tadpoles, six fire-crackers, a kitten with only one eye, a brass doorknob, a dog-collar--but no dog--the handle of a knife, four pieces of orange-peel, and a dilapidated old window sash. He had had a nice, good, idle time all the while--plenty of company --and the fence had three coats of whitewash on it! If he hadn't run out of whitewash he would have bankrupted every boy in the village. Tom said to himself that it was not such a hollow world, after all. He had discovered a great law of human action, without knowing it--namely, that in order to make a man or a boy covet a thing, it is only necessary to make the thing difficult to attain. If he had been a great and wise philosopher, like the writer of this book, he would now have comprehended that Work consists of whatever a body is OBLIGED to do, and that Play consists of whatever a body is not obliged to do. And this would help him to understand why constructing artificial flowers or performing on a tread-mill is work, while rolling ten-pins or climbing Mont Blanc is only amusement. There are wealthy gentlemen in England who drive four-horse passenger-coaches twenty or thirty miles on a daily line, in the summer, because the privilege costs them considerable money; but if they were offered wages for the service, that would turn it into work and then they would resign. The boy mused awhile over the substantial change which had taken place in his worldly circumstances, and then wended toward headquarters to report. CHAPTER III TOM presented himself before Aunt Polly, who was sitting by an open window in a pleasant rearward apartment, which was bedroom, breakfast-room, dining-room, and library, combined. The balmy summer air, the restful quiet, the odor of the flowers, and the drowsing murmur of the bees had had their effect, and she was nodding over her knitting --for she had no company but the cat, and it was asleep in her lap. Her spectacles were propped up on her gray head for safety. She had thought that of course Tom had deserted long ago, and she wondered at seeing him place himself in her power again in this intrepid way. He said: "Mayn't I go and play now, aunt?" "What, a'ready? How much have you done?" "It's all done, aunt." "Tom, don't lie to me--I can't bear it." "I ain't, aunt; it IS all done." Aunt Polly placed small trust in such evidence. She went out to see for herself; and she would have been content to find twenty per cent. of Tom's statement true. When she found the entire fence whitewashed, and not only whitewashed but elaborately coated and recoated, and even a streak added to the ground, her astonishment was almost unspeakable. She said: "Well, I never! There's no getting round it, you can work when you're a mind to, Tom." And then she diluted the compliment by adding, "But it's powerful seldom you're a mind to, I'm bound to say. Well, go 'long and play; but mind you get back some time in a week, or I'll tan you." She was so overcome by the splendor of his achievement that she took him into the closet and selected a choice apple and delivered it to him, along with an improving lecture upon the added value and flavor a treat took to itself when it came without sin through virtuous effort. And while she closed with a happy Scriptural flourish, he "hooked" a doughnut. Then he skipped out, and saw Sid just starting up the outside stairway that led to the back rooms on the second floor. Clods were handy and the air was full of them in a twinkling. They raged around Sid like a hail-storm; and before Aunt Polly could collect her surprised faculties and sally to the rescue, six or seven clods had taken personal effect, and Tom was over the fence and gone. There was a gate, but as a general thing he was too crowded for time to make use of it. His soul was at peace, now that he had settled with Sid for calling attention to his black thread and getting him into trouble. Tom skirted the block, and came round into a muddy alley that led by the back of his aunt's cow-stable. He presently got safely beyond the reach of capture and punishment, and hastened toward the public square of the village, where two "military" companies of boys had met for conflict, according to previous appointment. Tom was General of one of these armies, Joe Harper (a bosom friend) General of the other. These two great commanders did not condescend to fight in person--that being better suited to the still smaller fry--but sat together on an eminence and conducted the field operations by orders delivered through aides-de-camp. Tom's army won a great victory, after a long and hard-fought battle. Then the dead were counted, prisoners exchanged, the terms of the next disagreement agreed upon, and the day for the necessary battle appointed; after which the armies fell into line and marched away, and Tom turned homeward alone. As he was passing by the house where Jeff Thatcher lived, he saw a new girl in the garden--a lovely little blue-eyed creature with yellow hair plaited into two long-tails, white summer frock and embroidered pantalettes. The fresh-crowned hero fell without firing a shot. A certain Amy Lawrence vanished out of his heart and left not even a memory of herself behind. He had thought he loved her to distraction; he had regarded his passion as adoration; and behold it was only a poor little evanescent partiality. He had been months winning her; she had confessed hardly a week ago; he had been the happiest and the proudest boy in the world only seven short days, and here in one instant of time she had gone out of his heart like a casual stranger whose visit is done. He worshipped this new angel with furtive eye, till he saw that she had discovered him; then he pretended he did not know she was present, and began to "show off" in all sorts of absurd boyish ways, in order to win her admiration. He kept up this grotesque foolishness for some time; but by-and-by, while he was in the midst of some dangerous gymnastic performances, he glanced aside and saw that the little girl was wending her way toward the house. Tom came up to the fence and leaned on it, grieving, and hoping she would tarry yet awhile longer. She halted a moment on the steps and then moved toward the door. Tom heaved a great sigh as she put her foot on the threshold. But his face lit up, right away, for she tossed a pansy over the fence a moment before she disappeared. The boy ran around and stopped within a foot or two of the flower, and then shaded his eyes with his hand and began to look down street as if he had discovered something of interest going on in that direction. Presently he picked up a straw and began trying to balance it on his nose, with his head tilted far back; and as he moved from side to side, in his efforts, he edged nearer and nearer toward the pansy; finally his bare foot rested upon it, his pliant toes closed upon it, and he hopped away with the treasure and disappeared round the corner. But only for a minute--only while he could button the flower inside his jacket, next his heart--or next his stomach, possibly, for he was not much posted in anatomy, and not hypercritical, anyway. He returned, now, and hung about the fence till nightfall, "showing off," as before; but the girl never exhibited herself again, though Tom comforted himself a little with the hope that she had been near some window, meantime, and been aware of his attentions. Finally he strode home reluctantly, with his poor head full of visions. All through supper his spirits were so high that his aunt wondered "what had got into the child." He took a good scolding about clodding Sid, and did not seem to mind it in the least. He tried to steal sugar under his aunt's very nose, and got his knuckles rapped for it. He said: "Aunt, you don't whack Sid when he takes it." "Well, Sid don't torment a body the way you do. You'd be always into that sugar if I warn't watching you." Presently she stepped into the kitchen, and Sid, happy in his immunity, reached for the sugar-bowl--a sort of glorying over Tom which was wellnigh unbearable. But Sid's fingers slipped and the bowl dropped and broke. Tom was in ecstasies. In such ecstasies that he even controlled his tongue and was silent. He said to himself that he would not speak a word, even when his aunt came in, but would sit perfectly still till she asked who did the mischief; and then he would tell, and there would be nothing so good in the world as to see that pet model "catch it." He was so brimful of exultation that he could hardly hold himself when the old lady came back and stood above the wreck discharging lightnings of wrath from over her spectacles. He said to himself, "Now it's coming!" And the next instant he was sprawling on the floor! The potent palm was uplifted to strike again when Tom cried out: "Hold on, now, what 'er you belting ME for?--Sid broke it!" Aunt Polly paused, perplexed, and Tom looked for healing pity. But when she got her tongue again, she only said: "Umf! Well, you didn't get a lick amiss, I reckon. You been into some other audacious mischief when I wasn't around, like enough." Then her conscience reproached her, and she yearned to say something kind and loving; but she judged that this would be construed into a confession that she had been in the wrong, and discipline forbade that. So she kept silence, and went about her affairs with a troubled heart. Tom sulked in a corner and exalted his woes. He knew that in her heart his aunt was on her knees to him, and he was morosely gratified by the consciousness of it. He would hang out no signals, he would take notice of none. He knew that a yearning glance fell upon him, now and then, through a film of tears, but he refused recognition of it. He pictured himself lying sick unto death and his aunt bending over him beseeching one little forgiving word, but he would turn his face to the wall, and die with that word unsaid. Ah, how would she feel then? And he pictured himself brought home from the river, dead, with his curls all wet, and his sore heart at rest. How she would throw herself upon him, and how her tears would fall like rain, and her lips pray God to give her back her boy and she would never, never abuse him any more! But he would lie there cold and white and make no sign--a poor little sufferer, whose griefs were at an end. He so worked upon his feelings with the pathos of these dreams, that he had to keep swallowing, he was so like to choke; and his eyes swam in a blur of water, which overflowed when he winked, and ran down and trickled from the end of his nose. And such a luxury to him was this petting of his sorrows, that he could not bear to have any worldly cheeriness or any grating delight intrude upon it; it was too sacred for such contact; and so, presently, when his cousin Mary danced in, all alive with the joy of seeing home again after an age-long visit of one week to the country, he got up and moved in clouds and darkness out at one door as she brought song and sunshine in at the other. He wandered far from the accustomed haunts of boys, and sought desolate places that were in harmony with his spirit. A log raft in the river invited him, and he seated himself on its outer edge and contemplated the dreary vastness of the stream, wishing, the while, that he could only be drowned, all at once and unconsciously, without undergoing the uncomfortable routine devised by nature. Then he thought of his flower. He got it out, rumpled and wilted, and it mightily increased his dismal felicity. He wondered if she would pity him if she knew? Would she cry, and wish that she had a right to put her arms around his neck and comfort him? Or would she turn coldly away like all the hollow world? This picture brought such an agony of pleasurable suffering that he worked it over and over again in his mind and set it up in new and varied lights, till he wore it threadbare. At last he rose up sighing and departed in the darkness. About half-past nine or ten o'clock he came along the deserted street to where the Adored Unknown lived; he paused a moment; no sound fell upon his listening ear; a candle was casting a dull glow upon the curtain of a second-story window. Was the sacred presence there? He climbed the fence, threaded his stealthy way through the plants, till he stood under that window; he looked up at it long, and with emotion; then he laid him down on the ground under it, disposing himself upon his back, with his hands clasped upon his breast and holding his poor wilted flower. And thus he would die--out in the cold world, with no shelter over his homeless head, no friendly hand to wipe the death-damps from his brow, no loving face to bend pityingly over him when the great agony came. And thus SHE would see him when she looked out upon the glad morning, and oh! would she drop one little tear upon his poor, lifeless form, would she heave one little sigh to see a bright young life so rudely blighted, so untimely cut down? The window went up, a maid-servant's discordant voice profaned the holy calm, and a deluge of water drenched the prone martyr's remains! The strangling hero sprang up with a relieving snort. There was a whiz as of a missile in the air, mingled with the murmur of a curse, a sound as of shivering glass followed, and a small, vague form went over the fence and shot away in the gloom. Not long after, as Tom, all undressed for bed, was surveying his drenched garments by the light of a tallow dip, Sid woke up; but if he had any dim idea of making any "references to allusions," he thought better of it and held his peace, for there was danger in Tom's eye. Tom turned in without the added vexation of prayers, and Sid made mental note of the omission. CHAPTER IV THE sun rose upon a tranquil world, and beamed down upon the peaceful village like a benediction. Breakfast over, Aunt Polly had family worship: it began with a prayer built from the ground up of solid courses of Scriptural quotations, welded together with a thin mortar of originality; and from the summit of this she delivered a grim chapter of the Mosaic Law, as from Sinai. Then Tom girded up his loins, so to speak, and went to work to "get his verses." Sid had learned his lesson days before. Tom bent all his energies to the memorizing of five verses, and he chose part of the Sermon on the Mount, because he could find no verses that were shorter. At the end of half an hour Tom had a vague general idea of his lesson, but no more, for his mind was traversing the whole field of human thought, and his hands were busy with distracting recreations. Mary took his book to hear him recite, and he tried to find his way through the fog: "Blessed are the--a--a--" "Poor"-- "Yes--poor; blessed are the poor--a--a--" "In spirit--" "In spirit; blessed are the poor in spirit, for they--they--" "THEIRS--" "For THEIRS. Blessed are the poor in spirit, for theirs is the kingdom of heaven. Blessed are they that mourn, for they--they--" "Sh--" "For they--a--" "S, H, A--" "For they S, H--Oh, I don't know what it is!" "SHALL!" "Oh, SHALL! for they shall--for they shall--a--a--shall mourn--a--a-- blessed are they that shall--they that--a--they that shall mourn, for they shall--a--shall WHAT? Why don't you tell me, Mary?--what do you want to be so mean for?" "Oh, Tom, you poor thick-headed thing, I'm not teasing you. I wouldn't do that. You must go and learn it again. Don't you be discouraged, Tom, you'll manage it--and if you do, I'll give you something ever so nice. There, now, that's a good boy." "All right! What is it, Mary, tell me what it is." "Never you mind, Tom. You know if I say it's nice, it is nice." "You bet you that's so, Mary. All right, I'll tackle it again." And he did "tackle it again"--and under the double pressure of curiosity and prospective gain he did it with such spirit that he accomplished a shining success. Mary gave him a brand-new "Barlow" knife worth twelve and a half cents; and the convulsion of delight that swept his system shook him to his foundations. True, the knife would not cut anything, but it was a "sure-enough" Barlow, and there was inconceivable grandeur in that--though where the Western boys ever got the idea that such a weapon could possibly be counterfeited to its injury is an imposing mystery and will always remain so, perhaps. Tom contrived to scarify the cupboard with it, and was arranging to begin on the bureau, when he was called off to dress for Sunday-school. Mary gave him a tin basin of water and a piece of soap, and he went outside the door and set the basin on a little bench there; then he dipped the soap in the water and laid it down; turned up his sleeves; poured out the water on the ground, gently, and then entered the kitchen and began to wipe his face diligently on the towel behind the door. But Mary removed the towel and said: "Now ain't you ashamed, Tom. You mustn't be so bad. Water won't hurt you." Tom was a trifle disconcerted. The basin was refilled, and this time he stood over it a little while, gathering resolution; took in a big breath and began. When he entered the kitchen presently, with both eyes shut and groping for the towel with his hands, an honorable testimony of suds and water was dripping from his face. But when he emerged from the towel, he was not yet satisfactory, for the clean territory stopped short at his chin and his jaws, like a mask; below and beyond this line there was a dark expanse of unirrigated soil that spread downward in front and backward around his neck. Mary took him in hand, and when she was done with him he was a man and a brother, without distinction of color, and his saturated hair was neatly brushed, and its short curls wrought into a dainty and symmetrical general effect. [He privately smoothed out the curls, with labor and difficulty, and plastered his hair close down to his head; for he held curls to be effeminate, and his own filled his life with bitterness.] Then Mary got out a suit of his clothing that had been used only on Sundays during two years--they were simply called his "other clothes"--and so by that we know the size of his wardrobe. The girl "put him to rights" after he had dressed himself; she buttoned his neat roundabout up to his chin, turned his vast shirt collar down over his shoulders, brushed him off and crowned him with his speckled straw hat. He now looked exceedingly improved and uncomfortable. He was fully as uncomfortable as he looked; for there was a restraint about whole clothes and cleanliness that galled him. He hoped that Mary would forget his shoes, but the hope was blighted; she coated them thoroughly with tallow, as was the custom, and brought them out. He lost his temper and said he was always being made to do everything he didn't want to do. But Mary said, persuasively: "Please, Tom--that's a good boy." So he got into the shoes snarling. Mary was soon ready, and the three children set out for Sunday-school--a place that Tom hated with his whole heart; but Sid and Mary were fond of it. Sabbath-school hours were from nine to half-past ten; and then church service. Two of the children always remained for the sermon voluntarily, and the other always remained too--for stronger reasons. The church's high-backed, uncushioned pews would seat about three hundred persons; the edifice was but a small, plain affair, with a sort of pine board tree-box on top of it for a steeple. At the door Tom dropped back a step and accosted a Sunday-dressed comrade: "Say, Billy, got a yaller ticket?" "Yes." "What'll you take for her?" "What'll you give?" "Piece of lickrish and a fish-hook." "Less see 'em." Tom exhibited. They were satisfactory, and the property changed hands. Then Tom traded a couple of white alleys for three red tickets, and some small trifle or other for a couple of blue ones. He waylaid other boys as they came, and went on buying tickets of various colors ten or fifteen minutes longer. He entered the church, now, with a swarm of clean and noisy boys and girls, proceeded to his seat and started a quarrel with the first boy that came handy. The teacher, a grave, elderly man, interfered; then turned his back a moment and Tom pulled a boy's hair in the next bench, and was absorbed in his book when the boy turned around; stuck a pin in another boy, presently, in order to hear him say "Ouch!" and got a new reprimand from his teacher. Tom's whole class were of a pattern--restless, noisy, and troublesome. When they came to recite their lessons, not one of them knew his verses perfectly, but had to be prompted all along. However, they worried through, and each got his reward--in small blue tickets, each with a passage of Scripture on it; each blue ticket was pay for two verses of the recitation. Ten blue tickets equalled a red one, and could be exchanged for it; ten red tickets equalled a yellow one; for ten yellow tickets the superintendent gave a very plainly bound Bible (worth forty cents in those easy times) to the pupil. How many of my readers would have the industry and application to memorize two thousand verses, even for a Dore Bible? And yet Mary had acquired two Bibles in this way--it was the patient work of two years--and a boy of German parentage had won four or five. He once recited three thousand verses without stopping; but the strain upon his mental faculties was too great, and he was little better than an idiot from that day forth--a grievous misfortune for the school, for on great occasions, before company, the superintendent (as Tom expressed it) had always made this boy come out and "spread himself." Only the older pupils managed to keep their tickets and stick to their tedious work long enough to get a Bible, and so the delivery of one of these prizes was a rare and noteworthy circumstance; the successful pupil was so great and conspicuous for that day that on the spot every scholar's heart was fired with a fresh ambition that often lasted a couple of weeks. It is possible that Tom's mental stomach had never really hungered for one of those prizes, but unquestionably his entire being had for many a day longed for the glory and the eclat that came with it. In due course the superintendent stood up in front of the pulpit, with a closed hymn-book in his hand and his forefinger inserted between its leaves, and commanded attention. When a Sunday-school superintendent makes his customary little speech, a hymn-book in the hand is as necessary as is the inevitable sheet of music in the hand of a singer who stands forward on the platform and sings a solo at a concert --though why, is a mystery: for neither the hymn-book nor the sheet of music is ever referred to by the sufferer. This superintendent was a slim creature of thirty-five, with a sandy goatee and short sandy hair; he wore a stiff standing-collar whose upper edge almost reached his ears and whose sharp points curved forward abreast the corners of his mouth--a fence that compelled a straight lookout ahead, and a turning of the whole body when a side view was required; his chin was propped on a spreading cravat which was as broad and as long as a bank-note, and had fringed ends; his boot toes were turned sharply up, in the fashion of the day, like sleigh-runners--an effect patiently and laboriously produced by the young men by sitting with their toes pressed against a wall for hours together. Mr. Walters was very earnest of mien, and very sincere and honest at heart; and he held sacred things and places in such reverence, and so separated them from worldly matters, that unconsciously to himself his Sunday-school voice had acquired a peculiar intonation which was wholly absent on week-days. He began after this fashion: "Now, children, I want you all to sit up just as straight and pretty as you can and give me all your attention for a minute or two. There --that is it. That is the way good little boys and girls should do. I see one little girl who is looking out of the window--I am afraid she thinks I am out there somewhere--perhaps up in one of the trees making a speech to the little birds. [Applausive titter.] I want to tell you how good it makes me feel to see so many bright, clean little faces assembled in a place like this, learning to do right and be good." And so forth and so on. It is not necessary to set down the rest of the oration. It was of a pattern which does not vary, and so it is familiar to us all. The latter third of the speech was marred by the resumption of fights and other recreations among certain of the bad boys, and by fidgetings and whisperings that extended far and wide, washing even to the bases of isolated and incorruptible rocks like Sid and Mary. But now every sound ceased suddenly, with the subsidence of Mr. Walters' voice, and the conclusion of the speech was received with a burst of silent gratitude. A good part of the whispering had been occasioned by an event which was more or less rare--the entrance of visitors: lawyer Thatcher, accompanied by a very feeble and aged man; a fine, portly, middle-aged gentleman with iron-gray hair; and a dignified lady who was doubtless the latter's wife. The lady was leading a child. Tom had been restless and full of chafings and repinings; conscience-smitten, too--he could not meet Amy Lawrence's eye, he could not brook her loving gaze. But when he saw this small new-comer his soul was all ablaze with bliss in a moment. The next moment he was "showing off" with all his might --cuffing boys, pulling hair, making faces--in a word, using every art that seemed likely to fascinate a girl and win her applause. His exaltation had but one alloy--the memory of his humiliation in this angel's garden--and that record in sand was fast washing out, under the waves of happiness that were sweeping over it now. The visitors were given the highest seat of honor, and as soon as Mr. Walters' speech was finished, he introduced them to the school. The middle-aged man turned out to be a prodigious personage--no less a one than the county judge--altogether the most august creation these children had ever looked upon--and they wondered what kind of material he was made of--and they half wanted to hear him roar, and were half afraid he might, too. He was from Constantinople, twelve miles away--so he had travelled, and seen the world--these very eyes had looked upon the county court-house--which was said to have a tin roof. The awe which these reflections inspired was attested by the impressive silence and the ranks of staring eyes. This was the great Judge Thatcher, brother of their own lawyer. Jeff Thatcher immediately went forward, to be familiar with the great man and be envied by the school. It would have been music to his soul to hear the whisperings: "Look at him, Jim! He's a going up there. Say--look! he's a going to shake hands with him--he IS shaking hands with him! By jings, don't you wish you was Jeff?" Mr. Walters fell to "showing off," with all sorts of official bustlings and activities, giving orders, delivering judgments, discharging directions here, there, everywhere that he could find a target. The librarian "showed off"--running hither and thither with his arms full of books and making a deal of the splutter and fuss that insect authority delights in. The young lady teachers "showed off" --bending sweetly over pupils that were lately being boxed, lifting pretty warning fingers at bad little boys and patting good ones lovingly. The young gentlemen teachers "showed off" with small scoldings and other little displays of authority and fine attention to discipline--and most of the teachers, of both sexes, found business up at the library, by the pulpit; and it was business that frequently had to be done over again two or three times (with much seeming vexation). The little girls "showed off" in various ways, and the little boys "showed off" with such diligence that the air was thick with paper wads and the murmur of scufflings. And above it all the great man sat and beamed a majestic judicial smile upon all the house, and warmed himself in the sun of his own grandeur--for he was "showing off," too. There was only one thing wanting to make Mr. Walters' ecstasy complete, and that was a chance to deliver a Bible-prize and exhibit a prodigy. Several pupils had a few yellow tickets, but none had enough --he had been around among the star pupils inquiring. He would have given worlds, now, to have that German lad back again with a sound mind. And now at this moment, when hope was dead, Tom Sawyer came forward with nine yellow tickets, nine red tickets, and ten blue ones, and demanded a Bible. This was a thunderbolt out of a clear sky. Walters was not expecting an application from this source for the next ten years. But there was no getting around it--here were the certified checks, and they were good for their face. Tom was therefore elevated to a place with the Judge and the other elect, and the great news was announced from headquarters. It was the most stunning surprise of the decade, and so profound was the sensation that it lifted the new hero up to the judicial one's altitude, and the school had two marvels to gaze upon in place of one. The boys were all eaten up with envy--but those that suffered the bitterest pangs were those who perceived too late that they themselves had contributed to this hated splendor by trading tickets to Tom for the wealth he had amassed in selling whitewashing privileges. These despised themselves, as being the dupes of a wily fraud, a guileful snake in the grass. The prize was delivered to Tom with as much effusion as the superintendent could pump up under the circumstances; but it lacked somewhat of the true gush, for the poor fellow's instinct taught him that there was a mystery here that could not well bear the light, perhaps; it was simply preposterous that this boy had warehoused two thousand sheaves of Scriptural wisdom on his premises--a dozen would strain his capacity, without a doubt. Amy Lawrence was proud and glad, and she tried to make Tom see it in her face--but he wouldn't look. She wondered; then she was just a grain troubled; next a dim suspicion came and went--came again; she watched; a furtive glance told her worlds--and then her heart broke, and she was jealous, and angry, and the tears came and she hated everybody. Tom most of all (she thought). Tom was introduced to the Judge; but his tongue was tied, his breath would hardly come, his heart quaked--partly because of the awful greatness of the man, but mainly because he was her parent. He would have liked to fall down and worship him, if it were in the dark. The Judge put his hand on Tom's head and called him a fine little man, and asked him what his name was. The boy stammered, gasped, and got it out: "Tom." "Oh, no, not Tom--it is--" "Thomas." "Ah, that's it. I thought there was more to it, maybe. That's very well. But you've another one I daresay, and you'll tell it to me, won't you?" "Tell the gentleman your other name, Thomas," said Walters, "and say sir. You mustn't forget your manners." "Thomas Sawyer--sir." "That's it! That's a good boy. Fine boy. Fine, manly little fellow. Two thousand verses is a great many--very, very great many. And you never can be sorry for the trouble you took to learn them; for knowledge is worth more than anything there is in the world; it's what makes great men and good men; you'll be a great man and a good man yourself, some day, Thomas, and then you'll look back and say, It's all owing to the precious Sunday-school privileges of my boyhood--it's all owing to my dear teachers that taught me to learn--it's all owing to the good superintendent, who encouraged me, and watched over me, and gave me a beautiful Bible--a splendid elegant Bible--to keep and have it all for my own, always--it's all owing to right bringing up! That is what you will say, Thomas--and you wouldn't take any money for those two thousand verses--no indeed you wouldn't. And now you wouldn't mind telling me and this lady some of the things you've learned--no, I know you wouldn't--for we are proud of little boys that learn. Now, no doubt you know the names of all the twelve disciples. Won't you tell us the names of the first two that were appointed?" Tom was tugging at a button-hole and looking sheepish. He blushed, now, and his eyes fell. Mr. Walters' heart sank within him. He said to himself, it is not possible that the boy can answer the simplest question--why DID the Judge ask him? Yet he felt obliged to speak up and say: "Answer the gentleman, Thomas--don't be afraid." Tom still hung fire. "Now I know you'll tell me," said the lady. "The names of the first two disciples were--" "DAVID AND GOLIAH!" Let us draw the curtain of charity over the rest of the scene. CHAPTER V ABOUT half-past ten the cracked bell of the small church began to ring, and presently the people began to gather for the morning sermon. The Sunday-school children distributed themselves about the house and occupied pews with their parents, so as to be under supervision. Aunt Polly came, and Tom and Sid and Mary sat with her--Tom being placed next the aisle, in order that he might be as far away from the open window and the seductive outside summer scenes as possible. The crowd filed up the aisles: the aged and needy postmaster, who had seen better days; the mayor and his wife--for they had a mayor there, among other unnecessaries; the justice of the peace; the widow Douglass, fair, smart, and forty, a generous, good-hearted soul and well-to-do, her hill mansion the only palace in the town, and the most hospitable and much the most lavish in the matter of festivities that St. Petersburg could boast; the bent and venerable Major and Mrs. Ward; lawyer Riverson, the new notable from a distance; next the belle of the village, followed by a troop of lawn-clad and ribbon-decked young heart-breakers; then all the young clerks in town in a body--for they had stood in the vestibule sucking their cane-heads, a circling wall of oiled and simpering admirers, till the last girl had run their gantlet; and last of all came the Model Boy, Willie Mufferson, taking as heedful care of his mother as if she were cut glass. He always brought his mother to church, and was the pride of all the matrons. The boys all hated him, he was so good. And besides, he had been "thrown up to them" so much. His white handkerchief was hanging out of his pocket behind, as usual on Sundays--accidentally. Tom had no handkerchief, and he looked upon boys who had as snobs. The congregation being fully assembled, now, the bell rang once more, to warn laggards and stragglers, and then a solemn hush fell upon the church which was only broken by the tittering and whispering of the choir in the gallery. The choir always tittered and whispered all through service. There was once a church choir that was not ill-bred, but I have forgotten where it was, now. It was a great many years ago, and I can scarcely remember anything about it, but I think it was in some foreign country. The minister gave out the hymn, and read it through with a relish, in a peculiar style which was much admired in that part of the country. His voice began on a medium key and climbed steadily up till it reached a certain point, where it bore with strong emphasis upon the topmost word and then plunged down as if from a spring-board: Shall I be car-ri-ed toe the skies, on flow'ry BEDS of ease, Whilst others fight to win the prize, and sail thro' BLOODY seas? He was regarded as a wonderful reader. At church "sociables" he was always called upon to read poetry; and when he was through, the ladies would lift up their hands and let them fall helplessly in their laps, and "wall" their eyes, and shake their heads, as much as to say, "Words cannot express it; it is too beautiful, TOO beautiful for this mortal earth." After the hymn had been sung, the Rev. Mr. Sprague turned himself into a bulletin-board, and read off "notices" of meetings and societies and things till it seemed that the list would stretch out to the crack of doom--a queer custom which is still kept up in America, even in cities, away here in this age of abundant newspapers. Often, the less there is to justify a traditional custom, the harder it is to get rid of it. And now the minister prayed. A good, generous prayer it was, and went into details: it pleaded for the church, and the little children of the church; for the other churches of the village; for the village itself; for the county; for the State; for the State officers; for the United States; for the churches of the United States; for Congress; for the President; for the officers of the Government; for poor sailors, tossed by stormy seas; for the oppressed millions groaning under the heel of European monarchies and Oriental despotisms; for such as have the light and the good tidings, and yet have not eyes to see nor ears to hear withal; for the heathen in the far islands of the sea; and closed with a supplication that the words he was about to speak might find grace and favor, and be as seed sown in fertile ground, yielding in time a grateful harvest of good. Amen. There was a rustling of dresses, and the standing congregation sat down. The boy whose history this book relates did not enjoy the prayer, he only endured it--if he even did that much. He was restive all through it; he kept tally of the details of the prayer, unconsciously --for he was not listening, but he knew the ground of old, and the clergyman's regular route over it--and when a little trifle of new matter was interlarded, his ear detected it and his whole nature resented it; he considered additions unfair, and scoundrelly. In the midst of the prayer a fly had lit on the back of the pew in front of him and tortured his spirit by calmly rubbing its hands together, embracing its head with its arms, and polishing it so vigorously that it seemed to almost part company with the body, and the slender thread of a neck was exposed to view; scraping its wings with its hind legs and smoothing them to its body as if they had been coat-tails; going through its whole toilet as tranquilly as if it knew it was perfectly safe. As indeed it was; for as sorely as Tom's hands itched to grab for it they did not dare--he believed his soul would be instantly destroyed if he did such a thing while the prayer was going on. But with the closing sentence his hand began to curve and steal forward; and the instant the "Amen" was out the fly was a prisoner of war. His aunt detected the act and made him let it go. The minister gave out his text and droned along monotonously through an argument that was so prosy that many a head by and by began to nod --and yet it was an argument that dealt in limitless fire and brimstone and thinned the predestined elect down to a company so small as to be hardly worth the saving. Tom counted the pages of the sermon; after church he always knew how many pages there had been, but he seldom knew anything else about the discourse. However, this time he was really interested for a little while. The minister made a grand and moving picture of the assembling together of the world's hosts at the millennium when the lion and the lamb should lie down together and a little child should lead them. But the pathos, the lesson, the moral of the great spectacle were lost upon the boy; he only thought of the conspicuousness of the principal character before the on-looking nations; his face lit with the thought, and he said to himself that he wished he could be that child, if it was a tame lion. Now he lapsed into suffering again, as the dry argument was resumed. Presently he bethought him of a treasure he had and got it out. It was a large black beetle with formidable jaws--a "pinchbug," he called it. It was in a percussion-cap box. The first thing the beetle did was to take him by the finger. A natural fillip followed, the beetle went floundering into the aisle and lit on its back, and the hurt finger went into the boy's mouth. The beetle lay there working its helpless legs, unable to turn over. Tom eyed it, and longed for it; but it was safe out of his reach. Other people uninterested in the sermon found relief in the beetle, and they eyed it too. Presently a vagrant poodle dog came idling along, sad at heart, lazy with the summer softness and the quiet, weary of captivity, sighing for change. He spied the beetle; the drooping tail lifted and wagged. He surveyed the prize; walked around it; smelt at it from a safe distance; walked around it again; grew bolder, and took a closer smell; then lifted his lip and made a gingerly snatch at it, just missing it; made another, and another; began to enjoy the diversion; subsided to his stomach with the beetle between his paws, and continued his experiments; grew weary at last, and then indifferent and absent-minded. His head nodded, and little by little his chin descended and touched the enemy, who seized it. There was a sharp yelp, a flirt of the poodle's head, and the beetle fell a couple of yards away, and lit on its back once more. The neighboring spectators shook with a gentle inward joy, several faces went behind fans and handkerchiefs, and Tom was entirely happy. The dog looked foolish, and probably felt so; but there was resentment in his heart, too, and a craving for revenge. So he went to the beetle and began a wary attack on it again; jumping at it from every point of a circle, lighting with his fore-paws within an inch of the creature, making even closer snatches at it with his teeth, and jerking his head till his ears flapped again. But he grew tired once more, after a while; tried to amuse himself with a fly but found no relief; followed an ant around, with his nose close to the floor, and quickly wearied of that; yawned, sighed, forgot the beetle entirely, and sat down on it. Then there was a wild yelp of agony and the poodle went sailing up the aisle; the yelps continued, and so did the dog; he crossed the house in front of the altar; he flew down the other aisle; he crossed before the doors; he clamored up the home-stretch; his anguish grew with his progress, till presently he was but a woolly comet moving in its orbit with the gleam and the speed of light. At last the frantic sufferer sheered from its course, and sprang into its master's lap; he flung it out of the window, and the voice of distress quickly thinned away and died in the distance. By this time the whole church was red-faced and suffocating with suppressed laughter, and the sermon had come to a dead standstill. The discourse was resumed presently, but it went lame and halting, all possibility of impressiveness being at an end; for even the gravest sentiments were constantly being received with a smothered burst of unholy mirth, under cover of some remote pew-back, as if the poor parson had said a rarely facetious thing. It was a genuine relief to the whole congregation when the ordeal was over and the benediction pronounced. Tom Sawyer went home quite cheerful, thinking to himself that there was some satisfaction about divine service when there was a bit of variety in it. He had but one marring thought; he was willing that the dog should play with his pinchbug, but he did not think it was upright in him to carry it off. CHAPTER VI MONDAY morning found Tom Sawyer miserable. Monday morning always found him so--because it began another week's slow suffering in school. He generally began that day with wishing he had had no intervening holiday, it made the going into captivity and fetters again so much more odious. Tom lay thinking. Presently it occurred to him that he wished he was sick; then he could stay home from school. Here was a vague possibility. He canvassed his system. No ailment was found, and he investigated again. This time he thought he could detect colicky symptoms, and he began to encourage them with considerable hope. But they soon grew feeble, and presently died wholly away. He reflected further. Suddenly he discovered something. One of his upper front teeth was loose. This was lucky; he was about to begin to groan, as a "starter," as he called it, when it occurred to him that if he came into court with that argument, his aunt would pull it out, and that would hurt. So he thought he would hold the tooth in reserve for the present, and seek further. Nothing offered for some little time, and then he remembered hearing the doctor tell about a certain thing that laid up a patient for two or three weeks and threatened to make him lose a finger. So the boy eagerly drew his sore toe from under the sheet and held it up for inspection. But now he did not know the necessary symptoms. However, it seemed well worth while to chance it, so he fell to groaning with considerable spirit. But Sid slept on unconscious. Tom groaned louder, and fancied that he began to feel pain in the toe. No result from Sid. Tom was panting with his exertions by this time. He took a rest and then swelled himself up and fetched a succession of admirable groans. Sid snored on. Tom was aggravated. He said, "Sid, Sid!" and shook him. This course worked well, and Tom began to groan again. Sid yawned, stretched, then brought himself up on his elbow with a snort, and began to stare at Tom. Tom went on groaning. Sid said: "Tom! Say, Tom!" [No response.] "Here, Tom! TOM! What is the matter, Tom?" And he shook him and looked in his face anxiously. Tom moaned out: "Oh, don't, Sid. Don't joggle me." "Why, what's the matter, Tom? I must call auntie." "No--never mind. It'll be over by and by, maybe. Don't call anybody." "But I must! DON'T groan so, Tom, it's awful. How long you been this way?" "Hours. Ouch! Oh, don't stir so, Sid, you'll kill me." "Tom, why didn't you wake me sooner? Oh, Tom, DON'T! It makes my flesh crawl to hear you. Tom, what is the matter?" "I forgive you everything, Sid. [Groan.] Everything you've ever done to me. When I'm gone--" "Oh, Tom, you ain't dying, are you? Don't, Tom--oh, don't. Maybe--" "I forgive everybody, Sid. [Groan.] Tell 'em so, Sid. And Sid, you give my window-sash and my cat with one eye to that new girl that's come to town, and tell her--" But Sid had snatched his clothes and gone. Tom was suffering in reality, now, so handsomely was his imagination working, and so his groans had gathered quite a genuine tone. Sid flew down-stairs and said: "Oh, Aunt Polly, come! Tom's dying!" "Dying!" "Yes'm. Don't wait--come quick!" "Rubbage! I don't believe it!" But she fled up-stairs, nevertheless, with Sid and Mary at her heels. And her face grew white, too, and her lip trembled. When she reached the bedside she gasped out: "You, Tom! Tom, what's the matter with you?" "Oh, auntie, I'm--" "What's the matter with you--what is the matter with you, child?" "Oh, auntie, my sore toe's mortified!" The old lady sank down into a chair and laughed a little, then cried a little, then did both together. This restored her and she said: "Tom, what a turn you did give me. Now you shut up that nonsense and climb out of this." The groans ceased and the pain vanished from the toe. The boy felt a little foolish, and he said: "Aunt Polly, it SEEMED mortified, and it hurt so I never minded my tooth at all." "Your tooth, indeed! What's the matter with your tooth?" "One of them's loose, and it aches perfectly awful." "There, there, now, don't begin that groaning again. Open your mouth. Well--your tooth IS loose, but you're not going to die about that. Mary, get me a silk thread, and a chunk of fire out of the kitchen." Tom said: "Oh, please, auntie, don't pull it out. It don't hurt any more. I wish I may never stir if it does. Please don't, auntie. I don't want to stay home from school." "Oh, you don't, don't you? So all this row was because you thought you'd get to stay home from school and go a-fishing? Tom, Tom, I love you so, and you seem to try every way you can to break my old heart with your outrageousness." By this time the dental instruments were ready. The old lady made one end of the silk thread fast to Tom's tooth with a loop and tied the other to the bedpost. Then she seized the chunk of fire and suddenly thrust it almost into the boy's face. The tooth hung dangling by the bedpost, now. But all trials bring their compensations. As Tom wended to school after breakfast, he was the envy of every boy he met because the gap in his upper row of teeth enabled him to expectorate in a new and admirable way. He gathered quite a following of lads interested in the exhibition; and one that had cut his finger and had been a centre of fascination and homage up to this time, now found himself suddenly without an adherent, and shorn of his glory. His heart was heavy, and he said with a disdain which he did not feel that it wasn't anything to spit like Tom Sawyer; but another boy said, "Sour grapes!" and he wandered away a dismantled hero. Shortly Tom came upon the juvenile pariah of the village, Huckleberry Finn, son of the town drunkard. Huckleberry was cordially hated and dreaded by all the mothers of the town, because he was idle and lawless and vulgar and bad--and because all their children admired him so, and delighted in his forbidden society, and wished they dared to be like him. Tom was like the rest of the respectable boys, in that he envied Huckleberry his gaudy outcast condition, and was under strict orders not to play with him. So he played with him every time he got a chance. Huckleberry was always dressed in the cast-off clothes of full-grown men, and they were in perennial bloom and fluttering with rags. His hat was a vast ruin with a wide crescent lopped out of its brim; his coat, when he wore one, hung nearly to his heels and had the rearward buttons far down the back; but one suspender supported his trousers; the seat of the trousers bagged low and contained nothing, the fringed legs dragged in the dirt when not rolled up. Huckleberry came and went, at his own free will. He slept on doorsteps in fine weather and in empty hogsheads in wet; he did not have to go to school or to church, or call any being master or obey anybody; he could go fishing or swimming when and where he chose, and stay as long as it suited him; nobody forbade him to fight; he could sit up as late as he pleased; he was always the first boy that went barefoot in the spring and the last to resume leather in the fall; he never had to wash, nor put on clean clothes; he could swear wonderfully. In a word, everything that goes to make life precious that boy had. So thought every harassed, hampered, respectable boy in St. Petersburg. Tom hailed the romantic outcast: "Hello, Huckleberry!" "Hello yourself, and see how you like it." "What's that you got?" "Dead cat." "Lemme see him, Huck. My, he's pretty stiff. Where'd you get him?" "Bought him off'n a boy." "What did you give?" "I give a blue ticket and a bladder that I got at the slaughter-house." "Where'd you get the blue ticket?" "Bought it off'n Ben Rogers two weeks ago for a hoop-stick." "Say--what is dead cats good for, Huck?" "Good for? Cure warts with." "No! Is that so? I know something that's better." "I bet you don't. What is it?" "Why, spunk-water." "Spunk-water! I wouldn't give a dern for spunk-water." "You wouldn't, wouldn't you? D'you ever try it?" "No, I hain't. But Bob Tanner did." "Who told you so!" "Why, he told Jeff Thatcher, and Jeff told Johnny Baker, and Johnny told Jim Hollis, and Jim told Ben Rogers, and Ben told a nigger, and the nigger told me. There now!" "Well, what of it? They'll all lie. Leastways all but the nigger. I don't know HIM. But I never see a nigger that WOULDN'T lie. Shucks! Now you tell me how Bob Tanner done it, Huck." "Why, he took and dipped his hand in a rotten stump where the rain-water was." "In the daytime?" "Certainly." "With his face to the stump?" "Yes. Least I reckon so." "Did he say anything?" "I don't reckon he did. I don't know." "Aha! Talk about trying to cure warts with spunk-water such a blame fool way as that! Why, that ain't a-going to do any good. You got to go all by yourself, to the middle of the woods, where you know there's a spunk-water stump, and just as it's midnight you back up against the stump and jam your hand in and say: 'Barley-corn, barley-corn, injun-meal shorts, Spunk-water, spunk-water, swaller these warts,' and then walk away quick, eleven steps, with your eyes shut, and then turn around three times and walk home without speaking to anybody. Because if you speak the charm's busted." "Well, that sounds like a good way; but that ain't the way Bob Tanner done." "No, sir, you can bet he didn't, becuz he's the wartiest boy in this town; and he wouldn't have a wart on him if he'd knowed how to work spunk-water. I've took off thousands of warts off of my hands that way, Huck. I play with frogs so much that I've always got considerable many warts. Sometimes I take 'em off with a bean." "Yes, bean's good. I've done that." "Have you? What's your way?" "You take and split the bean, and cut the wart so as to get some blood, and then you put the blood on one piece of the bean and take and dig a hole and bury it 'bout midnight at the crossroads in the dark of the moon, and then you burn up the rest of the bean. You see that piece that's got the blood on it will keep drawing and drawing, trying to fetch the other piece to it, and so that helps the blood to draw the wart, and pretty soon off she comes." "Yes, that's it, Huck--that's it; though when you're burying it if you say 'Down bean; off wart; come no more to bother me!' it's better. That's the way Joe Harper does, and he's been nearly to Coonville and most everywheres. But say--how do you cure 'em with dead cats?" "Why, you take your cat and go and get in the graveyard 'long about midnight when somebody that was wicked has been buried; and when it's midnight a devil will come, or maybe two or three, but you can't see 'em, you can only hear something like the wind, or maybe hear 'em talk; and when they're taking that feller away, you heave your cat after 'em and say, 'Devil follow corpse, cat follow devil, warts follow cat, I'm done with ye!' That'll fetch ANY wart." "Sounds right. D'you ever try it, Huck?" "No, but old Mother Hopkins told me." "Well, I reckon it's so, then. Becuz they say she's a witch." "Say! Why, Tom, I KNOW she is. She witched pap. Pap says so his own self. He come along one day, and he see she was a-witching him, so he took up a rock, and if she hadn't dodged, he'd a got her. Well, that very night he rolled off'n a shed wher' he was a layin drunk, and broke his arm." "Why, that's awful. How did he know she was a-witching him?" "Lord, pap can tell, easy. Pap says when they keep looking at you right stiddy, they're a-witching you. Specially if they mumble. Becuz when they mumble they're saying the Lord's Prayer backards." "Say, Hucky, when you going to try the cat?" "To-night. I reckon they'll come after old Hoss Williams to-night." "But they buried him Saturday. Didn't they get him Saturday night?" "Why, how you talk! How could their charms work till midnight?--and THEN it's Sunday. Devils don't slosh around much of a Sunday, I don't reckon." "I never thought of that. That's so. Lemme go with you?" "Of course--if you ain't afeard." "Afeard! 'Tain't likely. Will you meow?" "Yes--and you meow back, if you get a chance. Last time, you kep' me a-meowing around till old Hays went to throwing rocks at me and says 'Dern that cat!' and so I hove a brick through his window--but don't you tell." "I won't. I couldn't meow that night, becuz auntie was watching me, but I'll meow this time. Say--what's that?" "Nothing but a tick." "Where'd you get him?" "Out in the woods." "What'll you take for him?" "I don't know. I don't want to sell him." "All right. It's a mighty small tick, anyway." "Oh, anybody can run a tick down that don't belong to them. I'm satisfied with it. It's a good enough tick for me." "Sho, there's ticks a plenty. I could have a thousand of 'em if I wanted to." "Well, why don't you? Becuz you know mighty well you can't. This is a pretty early tick, I reckon. It's the first one I've seen this year." "Say, Huck--I'll give you my tooth for him." "Less see it." Tom got out a bit of paper and carefully unrolled it. Huckleberry viewed it wistfully. The temptation was very strong. At last he said: "Is it genuwyne?" Tom lifted his lip and showed the vacancy. "Well, all right," said Huckleberry, "it's a trade." Tom enclosed the tick in the percussion-cap box that had lately been the pinchbug's prison, and the boys separated, each feeling wealthier than before. When Tom reached the little isolated frame schoolhouse, he strode in briskly, with the manner of one who had come with all honest speed. He hung his hat on a peg and flung himself into his seat with business-like alacrity. The master, throned on high in his great splint-bottom arm-chair, was dozing, lulled by the drowsy hum of study. The interruption roused him. "Thomas Sawyer!" Tom knew that when his name was pronounced in full, it meant trouble. "Sir!" "Come up here. Now, sir, why are you late again, as usual?" Tom was about to take refuge in a lie, when he saw two long tails of yellow hair hanging down a back that he recognized by the electric sympathy of love; and by that form was THE ONLY VACANT PLACE on the girls' side of the schoolhouse. He instantly said: "I STOPPED TO TALK WITH HUCKLEBERRY FINN!" The master's pulse stood still, and he stared helplessly. The buzz of study ceased. The pupils wondered if this foolhardy boy had lost his mind. The master said: "You--you did what?" "Stopped to talk with Huckleberry Finn." There was no mistaking the words. "Thomas Sawyer, this is the most astounding confession I have ever listened to. No mere ferule will answer for this offence. Take off your jacket." The master's arm performed until it was tired and the stock of switches notably diminished. Then the order followed: "Now, sir, go and sit with the girls! And let this be a warning to you." The titter that rippled around the room appeared to abash the boy, but in reality that result was caused rather more by his worshipful awe of his unknown idol and the dread pleasure that lay in his high good fortune. He sat down upon the end of the pine bench and the girl hitched herself away from him with a toss of her head. Nudges and winks and whispers traversed the room, but Tom sat still, with his arms upon the long, low desk before him, and seemed to study his book. By and by attention ceased from him, and the accustomed school murmur rose upon the dull air once more. Presently the boy began to steal furtive glances at the girl. She observed it, "made a mouth" at him and gave him the back of her head for the space of a minute. When she cautiously faced around again, a peach lay before her. She thrust it away. Tom gently put it back. She thrust it away again, but with less animosity. Tom patiently returned it to its place. Then she let it remain. Tom scrawled on his slate, "Please take it--I got more." The girl glanced at the words, but made no sign. Now the boy began to draw something on the slate, hiding his work with his left hand. For a time the girl refused to notice; but her human curiosity presently began to manifest itself by hardly perceptible signs. The boy worked on, apparently unconscious. The girl made a sort of noncommittal attempt to see, but the boy did not betray that he was aware of it. At last she gave in and hesitatingly whispered: "Let me see it." Tom partly uncovered a dismal caricature of a house with two gable ends to it and a corkscrew of smoke issuing from the chimney. Then the girl's interest began to fasten itself upon the work and she forgot everything else. When it was finished, she gazed a moment, then whispered: "It's nice--make a man." The artist erected a man in the front yard, that resembled a derrick. He could have stepped over the house; but the girl was not hypercritical; she was satisfied with the monster, and whispered: "It's a beautiful man--now make me coming along." Tom drew an hour-glass with a full moon and straw limbs to it and armed the spreading fingers with a portentous fan. The girl said: "It's ever so nice--I wish I could draw." "It's easy," whispered Tom, "I'll learn you." "Oh, will you? When?" "At noon. Do you go home to dinner?" "I'll stay if you will." "Good--that's a whack. What's your name?" "Becky Thatcher. What's yours? Oh, I know. It's Thomas Sawyer." "That's the name they lick me by. I'm Tom when I'm good. You call me Tom, will you?" "Yes." Now Tom began to scrawl something on the slate, hiding the words from the girl. But she was not backward this time. She begged to see. Tom said: "Oh, it ain't anything." "Yes it is." "No it ain't. You don't want to see." "Yes I do, indeed I do. Please let me." "You'll tell." "No I won't--deed and deed and double deed won't." "You won't tell anybody at all? Ever, as long as you live?" "No, I won't ever tell ANYbody. Now let me." "Oh, YOU don't want to see!" "Now that you treat me so, I WILL see." And she put her small hand upon his and a little scuffle ensued, Tom pretending to resist in earnest but letting his hand slip by degrees till these words were revealed: "I LOVE YOU." "Oh, you bad thing!" And she hit his hand a smart rap, but reddened and looked pleased, nevertheless. Just at this juncture the boy felt a slow, fateful grip closing on his ear, and a steady lifting impulse. In that wise he was borne across the house and deposited in his own seat, under a peppering fire of giggles from the whole school. Then the master stood over him during a few awful moments, and finally moved away to his throne without saying a word. But although Tom's ear tingled, his heart was jubilant. As the school quieted down Tom made an honest effort to study, but the turmoil within him was too great. In turn he took his place in the reading class and made a botch of it; then in the geography class and turned lakes into mountains, mountains into rivers, and rivers into continents, till chaos was come again; then in the spelling class, and got "turned down," by a succession of mere baby words, till he brought up at the foot and yielded up the pewter medal which he had worn with ostentation for months. CHAPTER VII THE harder Tom tried to fasten his mind on his book, the more his ideas wandered. So at last, with a sigh and a yawn, he gave it up. It seemed to him that the noon recess would never come. The air was utterly dead. There was not a breath stirring. It was the sleepiest of sleepy days. The drowsing murmur of the five and twenty studying scholars soothed the soul like the spell that is in the murmur of bees. Away off in the flaming sunshine, Cardiff Hill lifted its soft green sides through a shimmering veil of heat, tinted with the purple of distance; a few birds floated on lazy wing high in the air; no other living thing was visible but some cows, and they were asleep. Tom's heart ached to be free, or else to have something of interest to do to pass the dreary time. His hand wandered into his pocket and his face lit up with a glow of gratitude that was prayer, though he did not know it. Then furtively the percussion-cap box came out. He released the tick and put him on the long flat desk. The creature probably glowed with a gratitude that amounted to prayer, too, at this moment, but it was premature: for when he started thankfully to travel off, Tom turned him aside with a pin and made him take a new direction. Tom's bosom friend sat next him, suffering just as Tom had been, and now he was deeply and gratefully interested in this entertainment in an instant. This bosom friend was Joe Harper. The two boys were sworn friends all the week, and embattled enemies on Saturdays. Joe took a pin out of his lapel and began to assist in exercising the prisoner. The sport grew in interest momently. Soon Tom said that they were interfering with each other, and neither getting the fullest benefit of the tick. So he put Joe's slate on the desk and drew a line down the middle of it from top to bottom. "Now," said he, "as long as he is on your side you can stir him up and I'll let him alone; but if you let him get away and get on my side, you're to leave him alone as long as I can keep him from crossing over." "All right, go ahead; start him up." The tick escaped from Tom, presently, and crossed the equator. Joe harassed him awhile, and then he got away and crossed back again. This change of base occurred often. While one boy was worrying the tick with absorbing interest, the other would look on with interest as strong, the two heads bowed together over the slate, and the two souls dead to all things else. At last luck seemed to settle and abide with Joe. The tick tried this, that, and the other course, and got as excited and as anxious as the boys themselves, but time and again just as he would have victory in his very grasp, so to speak, and Tom's fingers would be twitching to begin, Joe's pin would deftly head him off, and keep possession. At last Tom could stand it no longer. The temptation was too strong. So he reached out and lent a hand with his pin. Joe was angry in a moment. Said he: "Tom, you let him alone." "I only just want to stir him up a little, Joe." "No, sir, it ain't fair; you just let him alone." "Blame it, I ain't going to stir him much." "Let him alone, I tell you." "I won't!" "You shall--he's on my side of the line." "Look here, Joe Harper, whose is that tick?" "I don't care whose tick he is--he's on my side of the line, and you sha'n't touch him." "Well, I'll just bet I will, though. He's my tick and I'll do what I blame please with him, or die!" A tremendous whack came down on Tom's shoulders, and its duplicate on Joe's; and for the space of two minutes the dust continued to fly from the two jackets and the whole school to enjoy it. The boys had been too absorbed to notice the hush that had stolen upon the school awhile before when the master came tiptoeing down the room and stood over them. He had contemplated a good part of the performance before he contributed his bit of variety to it. When school broke up at noon, Tom flew to Becky Thatcher, and whispered in her ear: "Put on your bonnet and let on you're going home; and when you get to the corner, give the rest of 'em the slip, and turn down through the lane and come back. I'll go the other way and come it over 'em the same way." So the one went off with one group of scholars, and the other with another. In a little while the two met at the bottom of the lane, and when they reached the school they had it all to themselves. Then they sat together, with a slate before them, and Tom gave Becky the pencil and held her hand in his, guiding it, and so created another surprising house. When the interest in art began to wane, the two fell to talking. Tom was swimming in bliss. He said: "Do you love rats?" "No! I hate them!" "Well, I do, too--LIVE ones. But I mean dead ones, to swing round your head with a string." "No, I don't care for rats much, anyway. What I like is chewing-gum." "Oh, I should say so! I wish I had some now." "Do you? I've got some. I'll let you chew it awhile, but you must give it back to me." That was agreeable, so they chewed it turn about, and dangled their legs against the bench in excess of contentment. "Was you ever at a circus?" said Tom. "Yes, and my pa's going to take me again some time, if I'm good." "I been to the circus three or four times--lots of times. Church ain't shucks to a circus. There's things going on at a circus all the time. I'm going to be a clown in a circus when I grow up." "Oh, are you! That will be nice. They're so lovely, all spotted up." "Yes, that's so. And they get slathers of money--most a dollar a day, Ben Rogers says. Say, Becky, was you ever engaged?" "What's that?" "Why, engaged to be married." "No." "Would you like to?" "I reckon so. I don't know. What is it like?" "Like? Why it ain't like anything. You only just tell a boy you won't ever have anybody but him, ever ever ever, and then you kiss and that's all. Anybody can do it." "Kiss? What do you kiss for?" "Why, that, you know, is to--well, they always do that." "Everybody?" "Why, yes, everybody that's in love with each other. Do you remember what I wrote on the slate?" "Ye--yes." "What was it?" "I sha'n't tell you." "Shall I tell YOU?" "Ye--yes--but some other time." "No, now." "No, not now--to-morrow." "Oh, no, NOW. Please, Becky--I'll whisper it, I'll whisper it ever so easy." Becky hesitating, Tom took silence for consent, and passed his arm about her waist and whispered the tale ever so softly, with his mouth close to her ear. And then he added: "Now you whisper it to me--just the same." She resisted, for a while, and then said: "You turn your face away so you can't see, and then I will. But you mustn't ever tell anybody--WILL you, Tom? Now you won't, WILL you?" "No, indeed, indeed I won't. Now, Becky." He turned his face away. She bent timidly around till her breath stirred his curls and whispered, "I--love--you!" Then she sprang away and ran around and around the desks and benches, with Tom after her, and took refuge in a corner at last, with her little white apron to her face. Tom clasped her about her neck and pleaded: "Now, Becky, it's all done--all over but the kiss. Don't you be afraid of that--it ain't anything at all. Please, Becky." And he tugged at her apron and the hands. By and by she gave up, and let her hands drop; her face, all glowing with the struggle, came up and submitted. Tom kissed the red lips and said: "Now it's all done, Becky. And always after this, you know, you ain't ever to love anybody but me, and you ain't ever to marry anybody but me, ever never and forever. Will you?" "No, I'll never love anybody but you, Tom, and I'll never marry anybody but you--and you ain't to ever marry anybody but me, either." "Certainly. Of course. That's PART of it. And always coming to school or when we're going home, you're to walk with me, when there ain't anybody looking--and you choose me and I choose you at parties, because that's the way you do when you're engaged." "It's so nice. I never heard of it before." "Oh, it's ever so gay! Why, me and Amy Lawrence--" The big eyes told Tom his blunder and he stopped, confused. "Oh, Tom! Then I ain't the first you've ever been engaged to!" The child began to cry. Tom said: "Oh, don't cry, Becky, I don't care for her any more." "Yes, you do, Tom--you know you do." Tom tried to put his arm about her neck, but she pushed him away and turned her face to the wall, and went on crying. Tom tried again, with soothing words in his mouth, and was repulsed again. Then his pride was up, and he strode away and went outside. He stood about, restless and uneasy, for a while, glancing at the door, every now and then, hoping she would repent and come to find him. But she did not. Then he began to feel badly and fear that he was in the wrong. It was a hard struggle with him to make new advances, now, but he nerved himself to it and entered. She was still standing back there in the corner, sobbing, with her face to the wall. Tom's heart smote him. He went to her and stood a moment, not knowing exactly how to proceed. Then he said hesitatingly: "Becky, I--I don't care for anybody but you." No reply--but sobs. "Becky"--pleadingly. "Becky, won't you say something?" More sobs. Tom got out his chiefest jewel, a brass knob from the top of an andiron, and passed it around her so that she could see it, and said: "Please, Becky, won't you take it?" She struck it to the floor. Then Tom marched out of the house and over the hills and far away, to return to school no more that day. Presently Becky began to suspect. She ran to the door; he was not in sight; she flew around to the play-yard; he was not there. Then she called: "Tom! Come back, Tom!" She listened intently, but there was no answer. She had no companions but silence and loneliness. So she sat down to cry again and upbraid herself; and by this time the scholars began to gather again, and she had to hide her griefs and still her broken heart and take up the cross of a long, dreary, aching afternoon, with none among the strangers about her to exchange sorrows with. CHAPTER VIII TOM dodged hither and thither through lanes until he was well out of the track of returning scholars, and then fell into a moody jog. He crossed a small "branch" two or three times, because of a prevailing juvenile superstition that to cross water baffled pursuit. Half an hour later he was disappearing behind the Douglas mansion on the summit of Cardiff Hill, and the schoolhouse was hardly distinguishable away off in the valley behind him. He entered a dense wood, picked his pathless way to the centre of it, and sat down on a mossy spot under a spreading oak. There was not even a zephyr stirring; the dead noonday heat had even stilled the songs of the birds; nature lay in a trance that was broken by no sound but the occasional far-off hammering of a woodpecker, and this seemed to render the pervading silence and sense of loneliness the more profound. The boy's soul was steeped in melancholy; his feelings were in happy accord with his surroundings. He sat long with his elbows on his knees and his chin in his hands, meditating. It seemed to him that life was but a trouble, at best, and he more than half envied Jimmy Hodges, so lately released; it must be very peaceful, he thought, to lie and slumber and dream forever and ever, with the wind whispering through the trees and caressing the grass and the flowers over the grave, and nothing to bother and grieve about, ever any more. If he only had a clean Sunday-school record he could be willing to go, and be done with it all. Now as to this girl. What had he done? Nothing. He had meant the best in the world, and been treated like a dog--like a very dog. She would be sorry some day--maybe when it was too late. Ah, if he could only die TEMPORARILY! But the elastic heart of youth cannot be compressed into one constrained shape long at a time. Tom presently began to drift insensibly back into the concerns of this life again. What if he turned his back, now, and disappeared mysteriously? What if he went away--ever so far away, into unknown countries beyond the seas--and never came back any more! How would she feel then! The idea of being a clown recurred to him now, only to fill him with disgust. For frivolity and jokes and spotted tights were an offense, when they intruded themselves upon a spirit that was exalted into the vague august realm of the romantic. No, he would be a soldier, and return after long years, all war-worn and illustrious. No--better still, he would join the Indians, and hunt buffaloes and go on the warpath in the mountain ranges and the trackless great plains of the Far West, and away in the future come back a great chief, bristling with feathers, hideous with paint, and prance into Sunday-school, some drowsy summer morning, with a bloodcurdling war-whoop, and sear the eyeballs of all his companions with unappeasable envy. But no, there was something gaudier even than this. He would be a pirate! That was it! NOW his future lay plain before him, and glowing with unimaginable splendor. How his name would fill the world, and make people shudder! How gloriously he would go plowing the dancing seas, in his long, low, black-hulled racer, the Spirit of the Storm, with his grisly flag flying at the fore! And at the zenith of his fame, how he would suddenly appear at the old village and stalk into church, brown and weather-beaten, in his black velvet doublet and trunks, his great jack-boots, his crimson sash, his belt bristling with horse-pistols, his crime-rusted cutlass at his side, his slouch hat with waving plumes, his black flag unfurled, with the skull and crossbones on it, and hear with swelling ecstasy the whisperings, "It's Tom Sawyer the Pirate!--the Black Avenger of the Spanish Main!" Yes, it was settled; his career was determined. He would run away from home and enter upon it. He would start the very next morning. Therefore he must now begin to get ready. He would collect his resources together. He went to a rotten log near at hand and began to dig under one end of it with his Barlow knife. He soon struck wood that sounded hollow. He put his hand there and uttered this incantation impressively: "What hasn't come here, come! What's here, stay here!" Then he scraped away the dirt, and exposed a pine shingle. He took it up and disclosed a shapely little treasure-house whose bottom and sides were of shingles. In it lay a marble. Tom's astonishment was boundless! He scratched his head with a perplexed air, and said: "Well, that beats anything!" Then he tossed the marble away pettishly, and stood cogitating. The truth was, that a superstition of his had failed, here, which he and all his comrades had always looked upon as infallible. If you buried a marble with certain necessary incantations, and left it alone a fortnight, and then opened the place with the incantation he had just used, you would find that all the marbles you had ever lost had gathered themselves together there, meantime, no matter how widely they had been separated. But now, this thing had actually and unquestionably failed. Tom's whole structure of faith was shaken to its foundations. He had many a time heard of this thing succeeding but never of its failing before. It did not occur to him that he had tried it several times before, himself, but could never find the hiding-places afterward. He puzzled over the matter some time, and finally decided that some witch had interfered and broken the charm. He thought he would satisfy himself on that point; so he searched around till he found a small sandy spot with a little funnel-shaped depression in it. He laid himself down and put his mouth close to this depression and called-- "Doodle-bug, doodle-bug, tell me what I want to know! Doodle-bug, doodle-bug, tell me what I want to know!" The sand began to work, and presently a small black bug appeared for a second and then darted under again in a fright. "He dasn't tell! So it WAS a witch that done it. I just knowed it." He well knew the futility of trying to contend against witches, so he gave up discouraged. But it occurred to him that he might as well have the marble he had just thrown away, and therefore he went and made a patient search for it. But he could not find it. Now he went back to his treasure-house and carefully placed himself just as he had been standing when he tossed the marble away; then he took another marble from his pocket and tossed it in the same way, saying: "Brother, go find your brother!" He watched where it stopped, and went there and looked. But it must have fallen short or gone too far; so he tried twice more. The last repetition was successful. The two marbles lay within a foot of each other. Just here the blast of a toy tin trumpet came faintly down the green aisles of the forest. Tom flung off his jacket and trousers, turned a suspender into a belt, raked away some brush behind the rotten log, disclosing a rude bow and arrow, a lath sword and a tin trumpet, and in a moment had seized these things and bounded away, barelegged, with fluttering shirt. He presently halted under a great elm, blew an answering blast, and then began to tiptoe and look warily out, this way and that. He said cautiously--to an imaginary company: "Hold, my merry men! Keep hid till I blow." Now appeared Joe Harper, as airily clad and elaborately armed as Tom. Tom called: "Hold! Who comes here into Sherwood Forest without my pass?" "Guy of Guisborne wants no man's pass. Who art thou that--that--" "Dares to hold such language," said Tom, prompting--for they talked "by the book," from memory. "Who art thou that dares to hold such language?" "I, indeed! I am Robin Hood, as thy caitiff carcase soon shall know." "Then art thou indeed that famous outlaw? Right gladly will I dispute with thee the passes of the merry wood. Have at thee!" They took their lath swords, dumped their other traps on the ground, struck a fencing attitude, foot to foot, and began a grave, careful combat, "two up and two down." Presently Tom said: "Now, if you've got the hang, go it lively!" So they "went it lively," panting and perspiring with the work. By and by Tom shouted: "Fall! fall! Why don't you fall?" "I sha'n't! Why don't you fall yourself? You're getting the worst of it." "Why, that ain't anything. I can't fall; that ain't the way it is in the book. The book says, 'Then with one back-handed stroke he slew poor Guy of Guisborne.' You're to turn around and let me hit you in the back." There was no getting around the authorities, so Joe turned, received the whack and fell. "Now," said Joe, getting up, "you got to let me kill YOU. That's fair." "Why, I can't do that, it ain't in the book." "Well, it's blamed mean--that's all." "Well, say, Joe, you can be Friar Tuck or Much the miller's son, and lam me with a quarter-staff; or I'll be the Sheriff of Nottingham and you be Robin Hood a little while and kill me." This was satisfactory, and so these adventures were carried out. Then Tom became Robin Hood again, and was allowed by the treacherous nun to bleed his strength away through his neglected wound. And at last Joe, representing a whole tribe of weeping outlaws, dragged him sadly forth, gave his bow into his feeble hands, and Tom said, "Where this arrow falls, there bury poor Robin Hood under the greenwood tree." Then he shot the arrow and fell back and would have died, but he lit on a nettle and sprang up too gaily for a corpse. The boys dressed themselves, hid their accoutrements, and went off grieving that there were no outlaws any more, and wondering what modern civilization could claim to have done to compensate for their loss. They said they would rather be outlaws a year in Sherwood Forest than President of the United States forever. CHAPTER IX AT half-past nine, that night, Tom and Sid were sent to bed, as usual. They said their prayers, and Sid was soon asleep. Tom lay awake and waited, in restless impatience. When it seemed to him that it must be nearly daylight, he heard the clock strike ten! This was despair. He would have tossed and fidgeted, as his nerves demanded, but he was afraid he might wake Sid. So he lay still, and stared up into the dark. Everything was dismally still. By and by, out of the stillness, little, scarcely perceptible noises began to emphasize themselves. The ticking of the clock began to bring itself into notice. Old beams began to crack mysteriously. The stairs creaked faintly. Evidently spirits were abroad. A measured, muffled snore issued from Aunt Polly's chamber. And now the tiresome chirping of a cricket that no human ingenuity could locate, began. Next the ghastly ticking of a deathwatch in the wall at the bed's head made Tom shudder--it meant that somebody's days were numbered. Then the howl of a far-off dog rose on the night air, and was answered by a fainter howl from a remoter distance. Tom was in an agony. At last he was satisfied that time had ceased and eternity begun; he began to doze, in spite of himself; the clock chimed eleven, but he did not hear it. And then there came, mingling with his half-formed dreams, a most melancholy caterwauling. The raising of a neighboring window disturbed him. A cry of "Scat! you devil!" and the crash of an empty bottle against the back of his aunt's woodshed brought him wide awake, and a single minute later he was dressed and out of the window and creeping along the roof of the "ell" on all fours. He "meow'd" with caution once or twice, as he went; then jumped to the roof of the woodshed and thence to the ground. Huckleberry Finn was there, with his dead cat. The boys moved off and disappeared in the gloom. At the end of half an hour they were wading through the tall grass of the graveyard. It was a graveyard of the old-fashioned Western kind. It was on a hill, about a mile and a half from the village. It had a crazy board fence around it, which leaned inward in places, and outward the rest of the time, but stood upright nowhere. Grass and weeds grew rank over the whole cemetery. All the old graves were sunken in, there was not a tombstone on the place; round-topped, worm-eaten boards staggered over the graves, leaning for support and finding none. "Sacred to the memory of" So-and-So had been painted on them once, but it could no longer have been read, on the most of them, now, even if there had been light. A faint wind moaned through the trees, and Tom feared it might be the spirits of the dead, complaining at being disturbed. The boys talked little, and only under their breath, for the time and the place and the pervading solemnity and silence oppressed their spirits. They found the sharp new heap they were seeking, and ensconced themselves within the protection of three great elms that grew in a bunch within a few feet of the grave. Then they waited in silence for what seemed a long time. The hooting of a distant owl was all the sound that troubled the dead stillness. Tom's reflections grew oppressive. He must force some talk. So he said in a whisper: "Hucky, do you believe the dead people like it for us to be here?" Huckleberry whispered: "I wisht I knowed. It's awful solemn like, AIN'T it?" "I bet it is." There was a considerable pause, while the boys canvassed this matter inwardly. Then Tom whispered: "Say, Hucky--do you reckon Hoss Williams hears us talking?" "O' course he does. Least his sperrit does." Tom, after a pause: "I wish I'd said Mister Williams. But I never meant any harm. Everybody calls him Hoss." "A body can't be too partic'lar how they talk 'bout these-yer dead people, Tom." This was a damper, and conversation died again. Presently Tom seized his comrade's arm and said: "Sh!" "What is it, Tom?" And the two clung together with beating hearts. "Sh! There 'tis again! Didn't you hear it?" "I--" "There! Now you hear it." "Lord, Tom, they're coming! They're coming, sure. What'll we do?" "I dono. Think they'll see us?" "Oh, Tom, they can see in the dark, same as cats. I wisht I hadn't come." "Oh, don't be afeard. I don't believe they'll bother us. We ain't doing any harm. If we keep perfectly still, maybe they won't notice us at all." "I'll try to, Tom, but, Lord, I'm all of a shiver." "Listen!" The boys bent their heads together and scarcely breathed. A muffled sound of voices floated up from the far end of the graveyard. "Look! See there!" whispered Tom. "What is it?" "It's devil-fire. Oh, Tom, this is awful." Some vague figures approached through the gloom, swinging an old-fashioned tin lantern that freckled the ground with innumerable little spangles of light. Presently Huckleberry whispered with a shudder: "It's the devils sure enough. Three of 'em! Lordy, Tom, we're goners! Can you pray?" "I'll try, but don't you be afeard. They ain't going to hurt us. 'Now I lay me down to sleep, I--'" "Sh!" "What is it, Huck?" "They're HUMANS! One of 'em is, anyway. One of 'em's old Muff Potter's voice." "No--'tain't so, is it?" "I bet I know it. Don't you stir nor budge. He ain't sharp enough to notice us. Drunk, the same as usual, likely--blamed old rip!" "All right, I'll keep still. Now they're stuck. Can't find it. Here they come again. Now they're hot. Cold again. Hot again. Red hot! They're p'inted right, this time. Say, Huck, I know another o' them voices; it's Injun Joe." "That's so--that murderin' half-breed! I'd druther they was devils a dern sight. What kin they be up to?" The whisper died wholly out, now, for the three men had reached the grave and stood within a few feet of the boys' hiding-place. "Here it is," said the third voice; and the owner of it held the lantern up and revealed the face of young Doctor Robinson. Potter and Injun Joe were carrying a handbarrow with a rope and a couple of shovels on it. They cast down their load and began to open the grave. The doctor put the lantern at the head of the grave and came and sat down with his back against one of the elm trees. He was so close the boys could have touched him. "Hurry, men!" he said, in a low voice; "the moon might come out at any moment." They growled a response and went on digging. For some time there was no noise but the grating sound of the spades discharging their freight of mould and gravel. It was very monotonous. Finally a spade struck upon the coffin with a dull woody accent, and within another minute or two the men had hoisted it out on the ground. They pried off the lid with their shovels, got out the body and dumped it rudely on the ground. The moon drifted from behind the clouds and exposed the pallid face. The barrow was got ready and the corpse placed on it, covered with a blanket, and bound to its place with the rope. Potter took out a large spring-knife and cut off the dangling end of the rope and then said: "Now the cussed thing's ready, Sawbones, and you'll just out with another five, or here she stays." "That's the talk!" said Injun Joe. "Look here, what does this mean?" said the doctor. "You required your pay in advance, and I've paid you." "Yes, and you done more than that," said Injun Joe, approaching the doctor, who was now standing. "Five years ago you drove me away from your father's kitchen one night, when I come to ask for something to eat, and you said I warn't there for any good; and when I swore I'd get even with you if it took a hundred years, your father had me jailed for a vagrant. Did you think I'd forget? The Injun blood ain't in me for nothing. And now I've GOT you, and you got to SETTLE, you know!" He was threatening the doctor, with his fist in his face, by this time. The doctor struck out suddenly and stretched the ruffian on the ground. Potter dropped his knife, and exclaimed: "Here, now, don't you hit my pard!" and the next moment he had grappled with the doctor and the two were struggling with might and main, trampling the grass and tearing the ground with their heels. Injun Joe sprang to his feet, his eyes flaming with passion, snatched up Potter's knife, and went creeping, catlike and stooping, round and round about the combatants, seeking an opportunity. All at once the doctor flung himself free, seized the heavy headboard of Williams' grave and felled Potter to the earth with it--and in the same instant the half-breed saw his chance and drove the knife to the hilt in the young man's breast. He reeled and fell partly upon Potter, flooding him with his blood, and in the same moment the clouds blotted out the dreadful spectacle and the two frightened boys went speeding away in the dark. Presently, when the moon emerged again, Injun Joe was standing over the two forms, contemplating them. The doctor murmured inarticulately, gave a long gasp or two and was still. The half-breed muttered: "THAT score is settled--damn you." Then he robbed the body. After which he put the fatal knife in Potter's open right hand, and sat down on the dismantled coffin. Three --four--five minutes passed, and then Potter began to stir and moan. His hand closed upon the knife; he raised it, glanced at it, and let it fall, with a shudder. Then he sat up, pushing the body from him, and gazed at it, and then around him, confusedly. His eyes met Joe's. "Lord, how is this, Joe?" he said. "It's a dirty business," said Joe, without moving. "What did you do it for?" "I! I never done it!" "Look here! That kind of talk won't wash." Potter trembled and grew white. "I thought I'd got sober. I'd no business to drink to-night. But it's in my head yet--worse'n when we started here. I'm all in a muddle; can't recollect anything of it, hardly. Tell me, Joe--HONEST, now, old feller--did I do it? Joe, I never meant to--'pon my soul and honor, I never meant to, Joe. Tell me how it was, Joe. Oh, it's awful--and him so young and promising." "Why, you two was scuffling, and he fetched you one with the headboard and you fell flat; and then up you come, all reeling and staggering like, and snatched the knife and jammed it into him, just as he fetched you another awful clip--and here you've laid, as dead as a wedge til now." "Oh, I didn't know what I was a-doing. I wish I may die this minute if I did. It was all on account of the whiskey and the excitement, I reckon. I never used a weepon in my life before, Joe. I've fought, but never with weepons. They'll all say that. Joe, don't tell! Say you won't tell, Joe--that's a good feller. I always liked you, Joe, and stood up for you, too. Don't you remember? You WON'T tell, WILL you, Joe?" And the poor creature dropped on his knees before the stolid murderer, and clasped his appealing hands. "No, you've always been fair and square with me, Muff Potter, and I won't go back on you. There, now, that's as fair as a man can say." "Oh, Joe, you're an angel. I'll bless you for this the longest day I live." And Potter began to cry. "Come, now, that's enough of that. This ain't any time for blubbering. You be off yonder way and I'll go this. Move, now, and don't leave any tracks behind you." Potter started on a trot that quickly increased to a run. The half-breed stood looking after him. He muttered: "If he's as much stunned with the lick and fuddled with the rum as he had the look of being, he won't think of the knife till he's gone so far he'll be afraid to come back after it to such a place by himself --chicken-heart!" Two or three minutes later the murdered man, the blanketed corpse, the lidless coffin, and the open grave were under no inspection but the moon's. The stillness was complete again, too. CHAPTER X THE two boys flew on and on, toward the village, speechless with horror. They glanced backward over their shoulders from time to time, apprehensively, as if they feared they might be followed. Every stump that started up in their path seemed a man and an enemy, and made them catch their breath; and as they sped by some outlying cottages that lay near the village, the barking of the aroused watch-dogs seemed to give wings to their feet. "If we can only get to the old tannery before we break down!" whispered Tom, in short catches between breaths. "I can't stand it much longer." Huckleberry's hard pantings were his only reply, and the boys fixed their eyes on the goal of their hopes and bent to their work to win it. They gained steadily on it, and at last, breast to breast, they burst through the open door and fell grateful and exhausted in the sheltering shadows beyond. By and by their pulses slowed down, and Tom whispered: "Huckleberry, what do you reckon'll come of this?" "If Doctor Robinson dies, I reckon hanging'll come of it." "Do you though?" "Why, I KNOW it, Tom." Tom thought a while, then he said: "Who'll tell? We?" "What are you talking about? S'pose something happened and Injun Joe DIDN'T hang? Why, he'd kill us some time or other, just as dead sure as we're a laying here." "That's just what I was thinking to myself, Huck." "If anybody tells, let Muff Potter do it, if he's fool enough. He's generally drunk enough." Tom said nothing--went on thinking. Presently he whispered: "Huck, Muff Potter don't know it. How can he tell?" "What's the reason he don't know it?" "Because he'd just got that whack when Injun Joe done it. D'you reckon he could see anything? D'you reckon he knowed anything?" "By hokey, that's so, Tom!" "And besides, look-a-here--maybe that whack done for HIM!" "No, 'taint likely, Tom. He had liquor in him; I could see that; and besides, he always has. Well, when pap's full, you might take and belt him over the head with a church and you couldn't phase him. He says so, his own self. So it's the same with Muff Potter, of course. But if a man was dead sober, I reckon maybe that whack might fetch him; I dono." After another reflective silence, Tom said: "Hucky, you sure you can keep mum?" "Tom, we GOT to keep mum. You know that. That Injun devil wouldn't make any more of drownding us than a couple of cats, if we was to squeak 'bout this and they didn't hang him. Now, look-a-here, Tom, less take and swear to one another--that's what we got to do--swear to keep mum." "I'm agreed. It's the best thing. Would you just hold hands and swear that we--" "Oh no, that wouldn't do for this. That's good enough for little rubbishy common things--specially with gals, cuz THEY go back on you anyway, and blab if they get in a huff--but there orter be writing 'bout a big thing like this. And blood." Tom's whole being applauded this idea. It was deep, and dark, and awful; the hour, the circumstances, the surroundings, were in keeping with it. He picked up a clean pine shingle that lay in the moonlight, took a little fragment of "red keel" out of his pocket, got the moon on his work, and painfully scrawled these lines, emphasizing each slow down-stroke by clamping his tongue between his teeth, and letting up the pressure on the up-strokes. [See next page.] "Huck Finn and Tom Sawyer swears they will keep mum about This and They wish They may Drop down dead in Their Tracks if They ever Tell and Rot." Huckleberry was filled with admiration of Tom's facility in writing, and the sublimity of his language. He at once took a pin from his lapel and was going to prick his flesh, but Tom said: "Hold on! Don't do that. A pin's brass. It might have verdigrease on it." "What's verdigrease?" "It's p'ison. That's what it is. You just swaller some of it once --you'll see." So Tom unwound the thread from one of his needles, and each boy pricked the ball of his thumb and squeezed out a drop of blood. In time, after many squeezes, Tom managed to sign his initials, using the ball of his little finger for a pen. Then he showed Huckleberry how to make an H and an F, and the oath was complete. They buried the shingle close to the wall, with some dismal ceremonies and incantations, and the fetters that bound their tongues were considered to be locked and the key thrown away. A figure crept stealthily through a break in the other end of the ruined building, now, but they did not notice it. "Tom," whispered Huckleberry, "does this keep us from EVER telling --ALWAYS?" "Of course it does. It don't make any difference WHAT happens, we got to keep mum. We'd drop down dead--don't YOU know that?" "Yes, I reckon that's so." They continued to whisper for some little time. Presently a dog set up a long, lugubrious howl just outside--within ten feet of them. The boys clasped each other suddenly, in an agony of fright. "Which of us does he mean?" gasped Huckleberry. "I dono--peep through the crack. Quick!" "No, YOU, Tom!" "I can't--I can't DO it, Huck!" "Please, Tom. There 'tis again!" "Oh, lordy, I'm thankful!" whispered Tom. "I know his voice. It's Bull Harbison." * [* If Mr. Harbison owned a slave named Bull, Tom would have spoken of him as "Harbison's Bull," but a son or a dog of that name was "Bull Harbison."] "Oh, that's good--I tell you, Tom, I was most scared to death; I'd a bet anything it was a STRAY dog." The dog howled again. The boys' hearts sank once more. "Oh, my! that ain't no Bull Harbison!" whispered Huckleberry. "DO, Tom!" Tom, quaking with fear, yielded, and put his eye to the crack. His whisper was hardly audible when he said: "Oh, Huck, IT S A STRAY DOG!" "Quick, Tom, quick! Who does he mean?" "Huck, he must mean us both--we're right together." "Oh, Tom, I reckon we're goners. I reckon there ain't no mistake 'bout where I'LL go to. I been so wicked." "Dad fetch it! This comes of playing hookey and doing everything a feller's told NOT to do. I might a been good, like Sid, if I'd a tried --but no, I wouldn't, of course. But if ever I get off this time, I lay I'll just WALLER in Sunday-schools!" And Tom began to snuffle a little. "YOU bad!" and Huckleberry began to snuffle too. "Consound it, Tom Sawyer, you're just old pie, 'longside o' what I am. Oh, LORDY, lordy, lordy, I wisht I only had half your chance." Tom choked off and whispered: "Look, Hucky, look! He's got his BACK to us!" Hucky looked, with joy in his heart. "Well, he has, by jingoes! Did he before?" "Yes, he did. But I, like a fool, never thought. Oh, this is bully, you know. NOW who can he mean?" The howling stopped. Tom pricked up his ears. "Sh! What's that?" he whispered. "Sounds like--like hogs grunting. No--it's somebody snoring, Tom." "That IS it! Where 'bouts is it, Huck?" "I bleeve it's down at 'tother end. Sounds so, anyway. Pap used to sleep there, sometimes, 'long with the hogs, but laws bless you, he just lifts things when HE snores. Besides, I reckon he ain't ever coming back to this town any more." The spirit of adventure rose in the boys' souls once more. "Hucky, do you das't to go if I lead?" "I don't like to, much. Tom, s'pose it's Injun Joe!" Tom quailed. But presently the temptation rose up strong again and the boys agreed to try, with the understanding that they would take to their heels if the snoring stopped. So they went tiptoeing stealthily down, the one behind the other. When they had got to within five steps of the snorer, Tom stepped on a stick, and it broke with a sharp snap. The man moaned, writhed a little, and his face came into the moonlight. It was Muff Potter. The boys' hearts had stood still, and their hopes too, when the man moved, but their fears passed away now. They tiptoed out, through the broken weather-boarding, and stopped at a little distance to exchange a parting word. That long, lugubrious howl rose on the night air again! They turned and saw the strange dog standing within a few feet of where Potter was lying, and FACING Potter, with his nose pointing heavenward. "Oh, geeminy, it's HIM!" exclaimed both boys, in a breath. "Say, Tom--they say a stray dog come howling around Johnny Miller's house, 'bout midnight, as much as two weeks ago; and a whippoorwill come in and lit on the banisters and sung, the very same evening; and there ain't anybody dead there yet." "Well, I know that. And suppose there ain't. Didn't Gracie Miller fall in the kitchen fire and burn herself terrible the very next Saturday?" "Yes, but she ain't DEAD. And what's more, she's getting better, too." "All right, you wait and see. She's a goner, just as dead sure as Muff Potter's a goner. That's what the niggers say, and they know all about these kind of things, Huck." Then they separated, cogitating. When Tom crept in at his bedroom window the night was almost spent. He undressed with excessive caution, and fell asleep congratulating himself that nobody knew of his escapade. He was not aware that the gently-snoring Sid was awake, and had been so for an hour. When Tom awoke, Sid was dressed and gone. There was a late look in the light, a late sense in the atmosphere. He was startled. Why had he not been called--persecuted till he was up, as usual? The thought filled him with bodings. Within five minutes he was dressed and down-stairs, feeling sore and drowsy. The family were still at table, but they had finished breakfast. There was no voice of rebuke; but there were averted eyes; there was a silence and an air of solemnity that struck a chill to the culprit's heart. He sat down and tried to seem gay, but it was up-hill work; it roused no smile, no response, and he lapsed into silence and let his heart sink down to the depths. After breakfast his aunt took him aside, and Tom almost brightened in the hope that he was going to be flogged; but it was not so. His aunt wept over him and asked him how he could go and break her old heart so; and finally told him to go on, and ruin himself and bring her gray hairs with sorrow to the grave, for it was no use for her to try any more. This was worse than a thousand whippings, and Tom's heart was sorer now than his body. He cried, he pleaded for forgiveness, promised to reform over and over again, and then received his dismissal, feeling that he had won but an imperfect forgiveness and established but a feeble confidence. He left the presence too miserable to even feel revengeful toward Sid; and so the latter's prompt retreat through the back gate was unnecessary. He moped to school gloomy and sad, and took his flogging, along with Joe Harper, for playing hookey the day before, with the air of one whose heart was busy with heavier woes and wholly dead to trifles. Then he betook himself to his seat, rested his elbows on his desk and his jaws in his hands, and stared at the wall with the stony stare of suffering that has reached the limit and can no further go. His elbow was pressing against some hard substance. After a long time he slowly and sadly changed his position, and took up this object with a sigh. It was in a paper. He unrolled it. A long, lingering, colossal sigh followed, and his heart broke. It was his brass andiron knob! This final feather broke the camel's back. CHAPTER XI CLOSE upon the hour of noon the whole village was suddenly electrified with the ghastly news. No need of the as yet undreamed-of telegraph; the tale flew from man to man, from group to group, from house to house, with little less than telegraphic speed. Of course the schoolmaster gave holiday for that afternoon; the town would have thought strangely of him if he had not. A gory knife had been found close to the murdered man, and it had been recognized by somebody as belonging to Muff Potter--so the story ran. And it was said that a belated citizen had come upon Potter washing himself in the "branch" about one or two o'clock in the morning, and that Potter had at once sneaked off--suspicious circumstances, especially the washing which was not a habit with Potter. It was also said that the town had been ransacked for this "murderer" (the public are not slow in the matter of sifting evidence and arriving at a verdict), but that he could not be found. Horsemen had departed down all the roads in every direction, and the Sheriff "was confident" that he would be captured before night. All the town was drifting toward the graveyard. Tom's heartbreak vanished and he joined the procession, not because he would not a thousand times rather go anywhere else, but because an awful, unaccountable fascination drew him on. Arrived at the dreadful place, he wormed his small body through the crowd and saw the dismal spectacle. It seemed to him an age since he was there before. Somebody pinched his arm. He turned, and his eyes met Huckleberry's. Then both looked elsewhere at once, and wondered if anybody had noticed anything in their mutual glance. But everybody was talking, and intent upon the grisly spectacle before them. "Poor fellow!" "Poor young fellow!" "This ought to be a lesson to grave robbers!" "Muff Potter'll hang for this if they catch him!" This was the drift of remark; and the minister said, "It was a judgment; His hand is here." Now Tom shivered from head to heel; for his eye fell upon the stolid face of Injun Joe. At this moment the crowd began to sway and struggle, and voices shouted, "It's him! it's him! he's coming himself!" "Who? Who?" from twenty voices. "Muff Potter!" "Hallo, he's stopped!--Look out, he's turning! Don't let him get away!" People in the branches of the trees over Tom's head said he wasn't trying to get away--he only looked doubtful and perplexed. "Infernal impudence!" said a bystander; "wanted to come and take a quiet look at his work, I reckon--didn't expect any company." The crowd fell apart, now, and the Sheriff came through, ostentatiously leading Potter by the arm. The poor fellow's face was haggard, and his eyes showed the fear that was upon him. When he stood before the murdered man, he shook as with a palsy, and he put his face in his hands and burst into tears. "I didn't do it, friends," he sobbed; "'pon my word and honor I never done it." "Who's accused you?" shouted a voice. This shot seemed to carry home. Potter lifted his face and looked around him with a pathetic hopelessness in his eyes. He saw Injun Joe, and exclaimed: "Oh, Injun Joe, you promised me you'd never--" "Is that your knife?" and it was thrust before him by the Sheriff. Potter would have fallen if they had not caught him and eased him to the ground. Then he said: "Something told me 't if I didn't come back and get--" He shuddered; then waved his nerveless hand with a vanquished gesture and said, "Tell 'em, Joe, tell 'em--it ain't any use any more." Then Huckleberry and Tom stood dumb and staring, and heard the stony-hearted liar reel off his serene statement, they expecting every moment that the clear sky would deliver God's lightnings upon his head, and wondering to see how long the stroke was delayed. And when he had finished and still stood alive and whole, their wavering impulse to break their oath and save the poor betrayed prisoner's life faded and vanished away, for plainly this miscreant had sold himself to Satan and it would be fatal to meddle with the property of such a power as that. "Why didn't you leave? What did you want to come here for?" somebody said. "I couldn't help it--I couldn't help it," Potter moaned. "I wanted to run away, but I couldn't seem to come anywhere but here." And he fell to sobbing again. Injun Joe repeated his statement, just as calmly, a few minutes afterward on the inquest, under oath; and the boys, seeing that the lightnings were still withheld, were confirmed in their belief that Joe had sold himself to the devil. He was now become, to them, the most balefully interesting object they had ever looked upon, and they could not take their fascinated eyes from his face. They inwardly resolved to watch him nights, when opportunity should offer, in the hope of getting a glimpse of his dread master. Injun Joe helped to raise the body of the murdered man and put it in a wagon for removal; and it was whispered through the shuddering crowd that the wound bled a little! The boys thought that this happy circumstance would turn suspicion in the right direction; but they were disappointed, for more than one villager remarked: "It was within three feet of Muff Potter when it done it." Tom's fearful secret and gnawing conscience disturbed his sleep for as much as a week after this; and at breakfast one morning Sid said: "Tom, you pitch around and talk in your sleep so much that you keep me awake half the time." Tom blanched and dropped his eyes. "It's a bad sign," said Aunt Polly, gravely. "What you got on your mind, Tom?" "Nothing. Nothing 't I know of." But the boy's hand shook so that he spilled his coffee. "And you do talk such stuff," Sid said. "Last night you said, 'It's blood, it's blood, that's what it is!' You said that over and over. And you said, 'Don't torment me so--I'll tell!' Tell WHAT? What is it you'll tell?" Everything was swimming before Tom. There is no telling what might have happened, now, but luckily the concern passed out of Aunt Polly's face and she came to Tom's relief without knowing it. She said: "Sho! It's that dreadful murder. I dream about it most every night myself. Sometimes I dream it's me that done it." Mary said she had been affected much the same way. Sid seemed satisfied. Tom got out of the presence as quick as he plausibly could, and after that he complained of toothache for a week, and tied up his jaws every night. He never knew that Sid lay nightly watching, and frequently slipped the bandage free and then leaned on his elbow listening a good while at a time, and afterward slipped the bandage back to its place again. Tom's distress of mind wore off gradually and the toothache grew irksome and was discarded. If Sid really managed to make anything out of Tom's disjointed mutterings, he kept it to himself. It seemed to Tom that his schoolmates never would get done holding inquests on dead cats, and thus keeping his trouble present to his mind. Sid noticed that Tom never was coroner at one of these inquiries, though it had been his habit to take the lead in all new enterprises; he noticed, too, that Tom never acted as a witness--and that was strange; and Sid did not overlook the fact that Tom even showed a marked aversion to these inquests, and always avoided them when he could. Sid marvelled, but said nothing. However, even inquests went out of vogue at last, and ceased to torture Tom's conscience. Every day or two, during this time of sorrow, Tom watched his opportunity and went to the little grated jail-window and smuggled such small comforts through to the "murderer" as he could get hold of. The jail was a trifling little brick den that stood in a marsh at the edge of the village, and no guards were afforded for it; indeed, it was seldom occupied. These offerings greatly helped to ease Tom's conscience. The villagers had a strong desire to tar-and-feather Injun Joe and ride him on a rail, for body-snatching, but so formidable was his character that nobody could be found who was willing to take the lead in the matter, so it was dropped. He had been careful to begin both of his inquest-statements with the fight, without confessing the grave-robbery that preceded it; therefore it was deemed wisest not to try the case in the courts at present. CHAPTER XII ONE of the reasons why Tom's mind had drifted away from its secret troubles was, that it had found a new and weighty matter to interest itself about. Becky Thatcher had stopped coming to school. Tom had struggled with his pride a few days, and tried to "whistle her down the wind," but failed. He began to find himself hanging around her father's house, nights, and feeling very miserable. She was ill. What if she should die! There was distraction in the thought. He no longer took an interest in war, nor even in piracy. The charm of life was gone; there was nothing but dreariness left. He put his hoop away, and his bat; there was no joy in them any more. His aunt was concerned. She began to try all manner of remedies on him. She was one of those people who are infatuated with patent medicines and all new-fangled methods of producing health or mending it. She was an inveterate experimenter in these things. When something fresh in this line came out she was in a fever, right away, to try it; not on herself, for she was never ailing, but on anybody else that came handy. She was a subscriber for all the "Health" periodicals and phrenological frauds; and the solemn ignorance they were inflated with was breath to her nostrils. All the "rot" they contained about ventilation, and how to go to bed, and how to get up, and what to eat, and what to drink, and how much exercise to take, and what frame of mind to keep one's self in, and what sort of clothing to wear, was all gospel to her, and she never observed that her health-journals of the current month customarily upset everything they had recommended the month before. She was as simple-hearted and honest as the day was long, and so she was an easy victim. She gathered together her quack periodicals and her quack medicines, and thus armed with death, went about on her pale horse, metaphorically speaking, with "hell following after." But she never suspected that she was not an angel of healing and the balm of Gilead in disguise, to the suffering neighbors. The water treatment was new, now, and Tom's low condition was a windfall to her. She had him out at daylight every morning, stood him up in the woodshed and drowned him with a deluge of cold water; then she scrubbed him down with a towel like a file, and so brought him to; then she rolled him up in a wet sheet and put him away under blankets till she sweated his soul clean and "the yellow stains of it came through his pores"--as Tom said. Yet notwithstanding all this, the boy grew more and more melancholy and pale and dejected. She added hot baths, sitz baths, shower baths, and plunges. The boy remained as dismal as a hearse. She began to assist the water with a slim oatmeal diet and blister-plasters. She calculated his capacity as she would a jug's, and filled him up every day with quack cure-alls. Tom had become indifferent to persecution by this time. This phase filled the old lady's heart with consternation. This indifference must be broken up at any cost. Now she heard of Pain-killer for the first time. She ordered a lot at once. She tasted it and was filled with gratitude. It was simply fire in a liquid form. She dropped the water treatment and everything else, and pinned her faith to Pain-killer. She gave Tom a teaspoonful and watched with the deepest anxiety for the result. Her troubles were instantly at rest, her soul at peace again; for the "indifference" was broken up. The boy could not have shown a wilder, heartier interest, if she had built a fire under him. Tom felt that it was time to wake up; this sort of life might be romantic enough, in his blighted condition, but it was getting to have too little sentiment and too much distracting variety about it. So he thought over various plans for relief, and finally hit pon that of professing to be fond of Pain-killer. He asked for it so often that he became a nuisance, and his aunt ended by telling him to help himself and quit bothering her. If it had been Sid, she would have had no misgivings to alloy her delight; but since it was Tom, she watched the bottle clandestinely. She found that the medicine did really diminish, but it did not occur to her that the boy was mending the health of a crack in the sitting-room floor with it. One day Tom was in the act of dosing the crack when his aunt's yellow cat came along, purring, eying the teaspoon avariciously, and begging for a taste. Tom said: "Don't ask for it unless you want it, Peter." But Peter signified that he did want it. "You better make sure." Peter was sure. "Now you've asked for it, and I'll give it to you, because there ain't anything mean about me; but if you find you don't like it, you mustn't blame anybody but your own self." Peter was agreeable. So Tom pried his mouth open and poured down the Pain-killer. Peter sprang a couple of yards in the air, and then delivered a war-whoop and set off round and round the room, banging against furniture, upsetting flower-pots, and making general havoc. Next he rose on his hind feet and pranced around, in a frenzy of enjoyment, with his head over his shoulder and his voice proclaiming his unappeasable happiness. Then he went tearing around the house again spreading chaos and destruction in his path. Aunt Polly entered in time to see him throw a few double summersets, deliver a final mighty hurrah, and sail through the open window, carrying the rest of the flower-pots with him. The old lady stood petrified with astonishment, peering over her glasses; Tom lay on the floor expiring with laughter. "Tom, what on earth ails that cat?" "I don't know, aunt," gasped the boy. "Why, I never see anything like it. What did make him act so?" "Deed I don't know, Aunt Polly; cats always act so when they're having a good time." "They do, do they?" There was something in the tone that made Tom apprehensive. "Yes'm. That is, I believe they do." "You DO?" "Yes'm." The old lady was bending down, Tom watching, with interest emphasized by anxiety. Too late he divined her "drift." The handle of the telltale teaspoon was visible under the bed-valance. Aunt Polly took it, held it up. Tom winced, and dropped his eyes. Aunt Polly raised him by the usual handle--his ear--and cracked his head soundly with her thimble. "Now, sir, what did you want to treat that poor dumb beast so, for?" "I done it out of pity for him--because he hadn't any aunt." "Hadn't any aunt!--you numskull. What has that got to do with it?" "Heaps. Because if he'd had one she'd a burnt him out herself! She'd a roasted his bowels out of him 'thout any more feeling than if he was a human!" Aunt Polly felt a sudden pang of remorse. This was putting the thing in a new light; what was cruelty to a cat MIGHT be cruelty to a boy, too. She began to soften; she felt sorry. Her eyes watered a little, and she put her hand on Tom's head and said gently: "I was meaning for the best, Tom. And, Tom, it DID do you good." Tom looked up in her face with just a perceptible twinkle peeping through his gravity. "I know you was meaning for the best, aunty, and so was I with Peter. It done HIM good, too. I never see him get around so since--" "Oh, go 'long with you, Tom, before you aggravate me again. And you try and see if you can't be a good boy, for once, and you needn't take any more medicine." Tom reached school ahead of time. It was noticed that this strange thing had been occurring every day latterly. And now, as usual of late, he hung about the gate of the schoolyard instead of playing with his comrades. He was sick, he said, and he looked it. He tried to seem to be looking everywhere but whither he really was looking--down the road. Presently Jeff Thatcher hove in sight, and Tom's face lighted; he gazed a moment, and then turned sorrowfully away. When Jeff arrived, Tom accosted him; and "led up" warily to opportunities for remark about Becky, but the giddy lad never could see the bait. Tom watched and watched, hoping whenever a frisking frock came in sight, and hating the owner of it as soon as he saw she was not the right one. At last frocks ceased to appear, and he dropped hopelessly into the dumps; he entered the empty schoolhouse and sat down to suffer. Then one more frock passed in at the gate, and Tom's heart gave a great bound. The next instant he was out, and "going on" like an Indian; yelling, laughing, chasing boys, jumping over the fence at risk of life and limb, throwing handsprings, standing on his head--doing all the heroic things he could conceive of, and keeping a furtive eye out, all the while, to see if Becky Thatcher was noticing. But she seemed to be unconscious of it all; she never looked. Could it be possible that she was not aware that he was there? He carried his exploits to her immediate vicinity; came war-whooping around, snatched a boy's cap, hurled it to the roof of the schoolhouse, broke through a group of boys, tumbling them in every direction, and fell sprawling, himself, under Becky's nose, almost upsetting her--and she turned, with her nose in the air, and he heard her say: "Mf! some people think they're mighty smart--always showing off!" Tom's cheeks burned. He gathered himself up and sneaked off, crushed and crestfallen. CHAPTER XIII TOM'S mind was made up now. He was gloomy and desperate. He was a forsaken, friendless boy, he said; nobody loved him; when they found out what they had driven him to, perhaps they would be sorry; he had tried to do right and get along, but they would not let him; since nothing would do them but to be rid of him, let it be so; and let them blame HIM for the consequences--why shouldn't they? What right had the friendless to complain? Yes, they had forced him to it at last: he would lead a life of crime. There was no choice. By this time he was far down Meadow Lane, and the bell for school to "take up" tinkled faintly upon his ear. He sobbed, now, to think he should never, never hear that old familiar sound any more--it was very hard, but it was forced on him; since he was driven out into the cold world, he must submit--but he forgave them. Then the sobs came thick and fast. Just at this point he met his soul's sworn comrade, Joe Harper --hard-eyed, and with evidently a great and dismal purpose in his heart. Plainly here were "two souls with but a single thought." Tom, wiping his eyes with his sleeve, began to blubber out something about a resolution to escape from hard usage and lack of sympathy at home by roaming abroad into the great world never to return; and ended by hoping that Joe would not forget him. But it transpired that this was a request which Joe had just been going to make of Tom, and had come to hunt him up for that purpose. His mother had whipped him for drinking some cream which he had never tasted and knew nothing about; it was plain that she was tired of him and wished him to go; if she felt that way, there was nothing for him to do but succumb; he hoped she would be happy, and never regret having driven her poor boy out into the unfeeling world to suffer and die. As the two boys walked sorrowing along, they made a new compact to stand by each other and be brothers and never separate till death relieved them of their troubles. Then they began to lay their plans. Joe was for being a hermit, and living on crusts in a remote cave, and dying, some time, of cold and want and grief; but after listening to Tom, he conceded that there were some conspicuous advantages about a life of crime, and so he consented to be a pirate. Three miles below St. Petersburg, at a point where the Mississippi River was a trifle over a mile wide, there was a long, narrow, wooded island, with a shallow bar at the head of it, and this offered well as a rendezvous. It was not inhabited; it lay far over toward the further shore, abreast a dense and almost wholly unpeopled forest. So Jackson's Island was chosen. Who were to be the subjects of their piracies was a matter that did not occur to them. Then they hunted up Huckleberry Finn, and he joined them promptly, for all careers were one to him; he was indifferent. They presently separated to meet at a lonely spot on the river-bank two miles above the village at the favorite hour--which was midnight. There was a small log raft there which they meant to capture. Each would bring hooks and lines, and such provision as he could steal in the most dark and mysterious way--as became outlaws. And before the afternoon was done, they had all managed to enjoy the sweet glory of spreading the fact that pretty soon the town would "hear something." All who got this vague hint were cautioned to "be mum and wait." About midnight Tom arrived with a boiled ham and a few trifles, and stopped in a dense undergrowth on a small bluff overlooking the meeting-place. It was starlight, and very still. The mighty river lay like an ocean at rest. Tom listened a moment, but no sound disturbed the quiet. Then he gave a low, distinct whistle. It was answered from under the bluff. Tom whistled twice more; these signals were answered in the same way. Then a guarded voice said: "Who goes there?" "Tom Sawyer, the Black Avenger of the Spanish Main. Name your names." "Huck Finn the Red-Handed, and Joe Harper the Terror of the Seas." Tom had furnished these titles, from his favorite literature. "'Tis well. Give the countersign." Two hoarse whispers delivered the same awful word simultaneously to the brooding night: "BLOOD!" Then Tom tumbled his ham over the bluff and let himself down after it, tearing both skin and clothes to some extent in the effort. There was an easy, comfortable path along the shore under the bluff, but it lacked the advantages of difficulty and danger so valued by a pirate. The Terror of the Seas had brought a side of bacon, and had about worn himself out with getting it there. Finn the Red-Handed had stolen a skillet and a quantity of half-cured leaf tobacco, and had also brought a few corn-cobs to make pipes with. But none of the pirates smoked or "chewed" but himself. The Black Avenger of the Spanish Main said it would never do to start without some fire. That was a wise thought; matches were hardly known there in that day. They saw a fire smouldering upon a great raft a hundred yards above, and they went stealthily thither and helped themselves to a chunk. They made an imposing adventure of it, saying, "Hist!" every now and then, and suddenly halting with finger on lip; moving with hands on imaginary dagger-hilts; and giving orders in dismal whispers that if "the foe" stirred, to "let him have it to the hilt," because "dead men tell no tales." They knew well enough that the raftsmen were all down at the village laying in stores or having a spree, but still that was no excuse for their conducting this thing in an unpiratical way. They shoved off, presently, Tom in command, Huck at the after oar and Joe at the forward. Tom stood amidships, gloomy-browed, and with folded arms, and gave his orders in a low, stern whisper: "Luff, and bring her to the wind!" "Aye-aye, sir!" "Steady, steady-y-y-y!" "Steady it is, sir!" "Let her go off a point!" "Point it is, sir!" As the boys steadily and monotonously drove the raft toward mid-stream it was no doubt understood that these orders were given only for "style," and were not intended to mean anything in particular. "What sail's she carrying?" "Courses, tops'ls, and flying-jib, sir." "Send the r'yals up! Lay out aloft, there, half a dozen of ye --foretopmaststuns'l! Lively, now!" "Aye-aye, sir!" "Shake out that maintogalans'l! Sheets and braces! NOW my hearties!" "Aye-aye, sir!" "Hellum-a-lee--hard a port! Stand by to meet her when she comes! Port, port! NOW, men! With a will! Stead-y-y-y!" "Steady it is, sir!" The raft drew beyond the middle of the river; the boys pointed her head right, and then lay on their oars. The river was not high, so there was not more than a two or three mile current. Hardly a word was said during the next three-quarters of an hour. Now the raft was passing before the distant town. Two or three glimmering lights showed where it lay, peacefully sleeping, beyond the vague vast sweep of star-gemmed water, unconscious of the tremendous event that was happening. The Black Avenger stood still with folded arms, "looking his last" upon the scene of his former joys and his later sufferings, and wishing "she" could see him now, abroad on the wild sea, facing peril and death with dauntless heart, going to his doom with a grim smile on his lips. It was but a small strain on his imagination to remove Jackson's Island beyond eyeshot of the village, and so he "looked his last" with a broken and satisfied heart. The other pirates were looking their last, too; and they all looked so long that they came near letting the current drift them out of the range of the island. But they discovered the danger in time, and made shift to avert it. About two o'clock in the morning the raft grounded on the bar two hundred yards above the head of the island, and they waded back and forth until they had landed their freight. Part of the little raft's belongings consisted of an old sail, and this they spread over a nook in the bushes for a tent to shelter their provisions; but they themselves would sleep in the open air in good weather, as became outlaws. They built a fire against the side of a great log twenty or thirty steps within the sombre depths of the forest, and then cooked some bacon in the frying-pan for supper, and used up half of the corn "pone" stock they had brought. It seemed glorious sport to be feasting in that wild, free way in the virgin forest of an unexplored and uninhabited island, far from the haunts of men, and they said they never would return to civilization. The climbing fire lit up their faces and threw its ruddy glare upon the pillared tree-trunks of their forest temple, and upon the varnished foliage and festooning vines. When the last crisp slice of bacon was gone, and the last allowance of corn pone devoured, the boys stretched themselves out on the grass, filled with contentment. They could have found a cooler place, but they would not deny themselves such a romantic feature as the roasting camp-fire. "AIN'T it gay?" said Joe. "It's NUTS!" said Tom. "What would the boys say if they could see us?" "Say? Well, they'd just die to be here--hey, Hucky!" "I reckon so," said Huckleberry; "anyways, I'm suited. I don't want nothing better'n this. I don't ever get enough to eat, gen'ally--and here they can't come and pick at a feller and bullyrag him so." "It's just the life for me," said Tom. "You don't have to get up, mornings, and you don't have to go to school, and wash, and all that blame foolishness. You see a pirate don't have to do ANYTHING, Joe, when he's ashore, but a hermit HE has to be praying considerable, and then he don't have any fun, anyway, all by himself that way." "Oh yes, that's so," said Joe, "but I hadn't thought much about it, you know. I'd a good deal rather be a pirate, now that I've tried it." "You see," said Tom, "people don't go much on hermits, nowadays, like they used to in old times, but a pirate's always respected. And a hermit's got to sleep on the hardest place he can find, and put sackcloth and ashes on his head, and stand out in the rain, and--" "What does he put sackcloth and ashes on his head for?" inquired Huck. "I dono. But they've GOT to do it. Hermits always do. You'd have to do that if you was a hermit." "Dern'd if I would," said Huck. "Well, what would you do?" "I dono. But I wouldn't do that." "Why, Huck, you'd HAVE to. How'd you get around it?" "Why, I just wouldn't stand it. I'd run away." "Run away! Well, you WOULD be a nice old slouch of a hermit. You'd be a disgrace." The Red-Handed made no response, being better employed. He had finished gouging out a cob, and now he fitted a weed stem to it, loaded it with tobacco, and was pressing a coal to the charge and blowing a cloud of fragrant smoke--he was in the full bloom of luxurious contentment. The other pirates envied him this majestic vice, and secretly resolved to acquire it shortly. Presently Huck said: "What does pirates have to do?" Tom said: "Oh, they have just a bully time--take ships and burn them, and get the money and bury it in awful places in their island where there's ghosts and things to watch it, and kill everybody in the ships--make 'em walk a plank." "And they carry the women to the island," said Joe; "they don't kill the women." "No," assented Tom, "they don't kill the women--they're too noble. And the women's always beautiful, too. "And don't they wear the bulliest clothes! Oh no! All gold and silver and di'monds," said Joe, with enthusiasm. "Who?" said Huck. "Why, the pirates." Huck scanned his own clothing forlornly. "I reckon I ain't dressed fitten for a pirate," said he, with a regretful pathos in his voice; "but I ain't got none but these." But the other boys told him the fine clothes would come fast enough, after they should have begun their adventures. They made him understand that his poor rags would do to begin with, though it was customary for wealthy pirates to start with a proper wardrobe. Gradually their talk died out and drowsiness began to steal upon the eyelids of the little waifs. The pipe dropped from the fingers of the Red-Handed, and he slept the sleep of the conscience-free and the weary. The Terror of the Seas and the Black Avenger of the Spanish Main had more difficulty in getting to sleep. They said their prayers inwardly, and lying down, since there was nobody there with authority to make them kneel and recite aloud; in truth, they had a mind not to say them at all, but they were afraid to proceed to such lengths as that, lest they might call down a sudden and special thunderbolt from heaven. Then at once they reached and hovered upon the imminent verge of sleep--but an intruder came, now, that would not "down." It was conscience. They began to feel a vague fear that they had been doing wrong to run away; and next they thought of the stolen meat, and then the real torture came. They tried to argue it away by reminding conscience that they had purloined sweetmeats and apples scores of times; but conscience was not to be appeased by such thin plausibilities; it seemed to them, in the end, that there was no getting around the stubborn fact that taking sweetmeats was only "hooking," while taking bacon and hams and such valuables was plain simple stealing--and there was a command against that in the Bible. So they inwardly resolved that so long as they remained in the business, their piracies should not again be sullied with the crime of stealing. Then conscience granted a truce, and these curiously inconsistent pirates fell peacefully to sleep. CHAPTER XIV WHEN Tom awoke in the morning, he wondered where he was. He sat up and rubbed his eyes and looked around. Then he comprehended. It was the cool gray dawn, and there was a delicious sense of repose and peace in the deep pervading calm and silence of the woods. Not a leaf stirred; not a sound obtruded upon great Nature's meditation. Beaded dewdrops stood upon the leaves and grasses. A white layer of ashes covered the fire, and a thin blue breath of smoke rose straight into the air. Joe and Huck still slept. Now, far away in the woods a bird called; another answered; presently the hammering of a woodpecker was heard. Gradually the cool dim gray of the morning whitened, and as gradually sounds multiplied and life manifested itself. The marvel of Nature shaking off sleep and going to work unfolded itself to the musing boy. A little green worm came crawling over a dewy leaf, lifting two-thirds of his body into the air from time to time and "sniffing around," then proceeding again--for he was measuring, Tom said; and when the worm approached him, of its own accord, he sat as still as a stone, with his hopes rising and falling, by turns, as the creature still came toward him or seemed inclined to go elsewhere; and when at last it considered a painful moment with its curved body in the air and then came decisively down upon Tom's leg and began a journey over him, his whole heart was glad--for that meant that he was going to have a new suit of clothes--without the shadow of a doubt a gaudy piratical uniform. Now a procession of ants appeared, from nowhere in particular, and went about their labors; one struggled manfully by with a dead spider five times as big as itself in its arms, and lugged it straight up a tree-trunk. A brown spotted lady-bug climbed the dizzy height of a grass blade, and Tom bent down close to it and said, "Lady-bug, lady-bug, fly away home, your house is on fire, your children's alone," and she took wing and went off to see about it --which did not surprise the boy, for he knew of old that this insect was credulous about conflagrations, and he had practised upon its simplicity more than once. A tumblebug came next, heaving sturdily at its ball, and Tom touched the creature, to see it shut its legs against its body and pretend to be dead. The birds were fairly rioting by this time. A catbird, the Northern mocker, lit in a tree over Tom's head, and trilled out her imitations of her neighbors in a rapture of enjoyment; then a shrill jay swept down, a flash of blue flame, and stopped on a twig almost within the boy's reach, cocked his head to one side and eyed the strangers with a consuming curiosity; a gray squirrel and a big fellow of the "fox" kind came skurrying along, sitting up at intervals to inspect and chatter at the boys, for the wild things had probably never seen a human being before and scarcely knew whether to be afraid or not. All Nature was wide awake and stirring, now; long lances of sunlight pierced down through the dense foliage far and near, and a few butterflies came fluttering upon the scene. Tom stirred up the other pirates and they all clattered away with a shout, and in a minute or two were stripped and chasing after and tumbling over each other in the shallow limpid water of the white sandbar. They felt no longing for the little village sleeping in the distance beyond the majestic waste of water. A vagrant current or a slight rise in the river had carried off their raft, but this only gratified them, since its going was something like burning the bridge between them and civilization. They came back to camp wonderfully refreshed, glad-hearted, and ravenous; and they soon had the camp-fire blazing up again. Huck found a spring of clear cold water close by, and the boys made cups of broad oak or hickory leaves, and felt that water, sweetened with such a wildwood charm as that, would be a good enough substitute for coffee. While Joe was slicing bacon for breakfast, Tom and Huck asked him to hold on a minute; they stepped to a promising nook in the river-bank and threw in their lines; almost immediately they had reward. Joe had not had time to get impatient before they were back again with some handsome bass, a couple of sun-perch and a small catfish--provisions enough for quite a family. They fried the fish with the bacon, and were astonished; for no fish had ever seemed so delicious before. They did not know that the quicker a fresh-water fish is on the fire after he is caught the better he is; and they reflected little upon what a sauce open-air sleeping, open-air exercise, bathing, and a large ingredient of hunger make, too. They lay around in the shade, after breakfast, while Huck had a smoke, and then went off through the woods on an exploring expedition. They tramped gayly along, over decaying logs, through tangled underbrush, among solemn monarchs of the forest, hung from their crowns to the ground with a drooping regalia of grape-vines. Now and then they came upon snug nooks carpeted with grass and jeweled with flowers. They found plenty of things to be delighted with, but nothing to be astonished at. They discovered that the island was about three miles long and a quarter of a mile wide, and that the shore it lay closest to was only separated from it by a narrow channel hardly two hundred yards wide. They took a swim about every hour, so it was close upon the middle of the afternoon when they got back to camp. They were too hungry to stop to fish, but they fared sumptuously upon cold ham, and then threw themselves down in the shade to talk. But the talk soon began to drag, and then died. The stillness, the solemnity that brooded in the woods, and the sense of loneliness, began to tell upon the spirits of the boys. They fell to thinking. A sort of undefined longing crept upon them. This took dim shape, presently--it was budding homesickness. Even Finn the Red-Handed was dreaming of his doorsteps and empty hogsheads. But they were all ashamed of their weakness, and none was brave enough to speak his thought. For some time, now, the boys had been dully conscious of a peculiar sound in the distance, just as one sometimes is of the ticking of a clock which he takes no distinct note of. But now this mysterious sound became more pronounced, and forced a recognition. The boys started, glanced at each other, and then each assumed a listening attitude. There was a long silence, profound and unbroken; then a deep, sullen boom came floating down out of the distance. "What is it!" exclaimed Joe, under his breath. "I wonder," said Tom in a whisper. "'Tain't thunder," said Huckleberry, in an awed tone, "becuz thunder--" "Hark!" said Tom. "Listen--don't talk." They waited a time that seemed an age, and then the same muffled boom troubled the solemn hush. "Let's go and see." They sprang to their feet and hurried to the shore toward the town. They parted the bushes on the bank and peered out over the water. The little steam ferryboat was about a mile below the village, drifting with the current. Her broad deck seemed crowded with people. There were a great many skiffs rowing about or floating with the stream in the neighborhood of the ferryboat, but the boys could not determine what the men in them were doing. Presently a great jet of white smoke burst from the ferryboat's side, and as it expanded and rose in a lazy cloud, that same dull throb of sound was borne to the listeners again. "I know now!" exclaimed Tom; "somebody's drownded!" "That's it!" said Huck; "they done that last summer, when Bill Turner got drownded; they shoot a cannon over the water, and that makes him come up to the top. Yes, and they take loaves of bread and put quicksilver in 'em and set 'em afloat, and wherever there's anybody that's drownded, they'll float right there and stop." "Yes, I've heard about that," said Joe. "I wonder what makes the bread do that." "Oh, it ain't the bread, so much," said Tom; "I reckon it's mostly what they SAY over it before they start it out." "But they don't say anything over it," said Huck. "I've seen 'em and they don't." "Well, that's funny," said Tom. "But maybe they say it to themselves. Of COURSE they do. Anybody might know that." The other boys agreed that there was reason in what Tom said, because an ignorant lump of bread, uninstructed by an incantation, could not be expected to act very intelligently when set upon an errand of such gravity. "By jings, I wish I was over there, now," said Joe. "I do too" said Huck "I'd give heaps to know who it is." The boys still listened and watched. Presently a revealing thought flashed through Tom's mind, and he exclaimed: "Boys, I know who's drownded--it's us!" They felt like heroes in an instant. Here was a gorgeous triumph; they were missed; they were mourned; hearts were breaking on their account; tears were being shed; accusing memories of unkindness to these poor lost lads were rising up, and unavailing regrets and remorse were being indulged; and best of all, the departed were the talk of the whole town, and the envy of all the boys, as far as this dazzling notoriety was concerned. This was fine. It was worth while to be a pirate, after all. As twilight drew on, the ferryboat went back to her accustomed business and the skiffs disappeared. The pirates returned to camp. They were jubilant with vanity over their new grandeur and the illustrious trouble they were making. They caught fish, cooked supper and ate it, and then fell to guessing at what the village was thinking and saying about them; and the pictures they drew of the public distress on their account were gratifying to look upon--from their point of view. But when the shadows of night closed them in, they gradually ceased to talk, and sat gazing into the fire, with their minds evidently wandering elsewhere. The excitement was gone, now, and Tom and Joe could not keep back thoughts of certain persons at home who were not enjoying this fine frolic as much as they were. Misgivings came; they grew troubled and unhappy; a sigh or two escaped, unawares. By and by Joe timidly ventured upon a roundabout "feeler" as to how the others might look upon a return to civilization--not right now, but-- Tom withered him with derision! Huck, being uncommitted as yet, joined in with Tom, and the waverer quickly "explained," and was glad to get out of the scrape with as little taint of chicken-hearted homesickness clinging to his garments as he could. Mutiny was effectually laid to rest for the moment. As the night deepened, Huck began to nod, and presently to snore. Joe followed next. Tom lay upon his elbow motionless, for some time, watching the two intently. At last he got up cautiously, on his knees, and went searching among the grass and the flickering reflections flung by the camp-fire. He picked up and inspected several large semi-cylinders of the thin white bark of a sycamore, and finally chose two which seemed to suit him. Then he knelt by the fire and painfully wrote something upon each of these with his "red keel"; one he rolled up and put in his jacket pocket, and the other he put in Joe's hat and removed it to a little distance from the owner. And he also put into the hat certain schoolboy treasures of almost inestimable value--among them a lump of chalk, an India-rubber ball, three fishhooks, and one of that kind of marbles known as a "sure 'nough crystal." Then he tiptoed his way cautiously among the trees till he felt that he was out of hearing, and straightway broke into a keen run in the direction of the sandbar. CHAPTER XV A FEW minutes later Tom was in the shoal water of the bar, wading toward the Illinois shore. Before the depth reached his middle he was half-way over; the current would permit no more wading, now, so he struck out confidently to swim the remaining hundred yards. He swam quartering upstream, but still was swept downward rather faster than he had expected. However, he reached the shore finally, and drifted along till he found a low place and drew himself out. He put his hand on his jacket pocket, found his piece of bark safe, and then struck through the woods, following the shore, with streaming garments. Shortly before ten o'clock he came out into an open place opposite the village, and saw the ferryboat lying in the shadow of the trees and the high bank. Everything was quiet under the blinking stars. He crept down the bank, watching with all his eyes, slipped into the water, swam three or four strokes and climbed into the skiff that did "yawl" duty at the boat's stern. He laid himself down under the thwarts and waited, panting. Presently the cracked bell tapped and a voice gave the order to "cast off." A minute or two later the skiff's head was standing high up, against the boat's swell, and the voyage was begun. Tom felt happy in his success, for he knew it was the boat's last trip for the night. At the end of a long twelve or fifteen minutes the wheels stopped, and Tom slipped overboard and swam ashore in the dusk, landing fifty yards downstream, out of danger of possible stragglers. He flew along unfrequented alleys, and shortly found himself at his aunt's back fence. He climbed over, approached the "ell," and looked in at the sitting-room window, for a light was burning there. There sat Aunt Polly, Sid, Mary, and Joe Harper's mother, grouped together, talking. They were by the bed, and the bed was between them and the door. Tom went to the door and began to softly lift the latch; then he pressed gently and the door yielded a crack; he continued pushing cautiously, and quaking every time it creaked, till he judged he might squeeze through on his knees; so he put his head through and began, warily. "What makes the candle blow so?" said Aunt Polly. Tom hurried up. "Why, that door's open, I believe. Why, of course it is. No end of strange things now. Go 'long and shut it, Sid." Tom disappeared under the bed just in time. He lay and "breathed" himself for a time, and then crept to where he could almost touch his aunt's foot. "But as I was saying," said Aunt Polly, "he warn't BAD, so to say --only mischEEvous. Only just giddy, and harum-scarum, you know. He warn't any more responsible than a colt. HE never meant any harm, and he was the best-hearted boy that ever was"--and she began to cry. "It was just so with my Joe--always full of his devilment, and up to every kind of mischief, but he was just as unselfish and kind as he could be--and laws bless me, to think I went and whipped him for taking that cream, never once recollecting that I throwed it out myself because it was sour, and I never to see him again in this world, never, never, never, poor abused boy!" And Mrs. Harper sobbed as if her heart would break. "I hope Tom's better off where he is," said Sid, "but if he'd been better in some ways--" "SID!" Tom felt the glare of the old lady's eye, though he could not see it. "Not a word against my Tom, now that he's gone! God'll take care of HIM--never you trouble YOURself, sir! Oh, Mrs. Harper, I don't know how to give him up! I don't know how to give him up! He was such a comfort to me, although he tormented my old heart out of me, 'most." "The Lord giveth and the Lord hath taken away--Blessed be the name of the Lord! But it's so hard--Oh, it's so hard! Only last Saturday my Joe busted a firecracker right under my nose and I knocked him sprawling. Little did I know then, how soon--Oh, if it was to do over again I'd hug him and bless him for it." "Yes, yes, yes, I know just how you feel, Mrs. Harper, I know just exactly how you feel. No longer ago than yesterday noon, my Tom took and filled the cat full of Pain-killer, and I did think the cretur would tear the house down. And God forgive me, I cracked Tom's head with my thimble, poor boy, poor dead boy. But he's out of all his troubles now. And the last words I ever heard him say was to reproach--" But this memory was too much for the old lady, and she broke entirely down. Tom was snuffling, now, himself--and more in pity of himself than anybody else. He could hear Mary crying, and putting in a kindly word for him from time to time. He began to have a nobler opinion of himself than ever before. Still, he was sufficiently touched by his aunt's grief to long to rush out from under the bed and overwhelm her with joy--and the theatrical gorgeousness of the thing appealed strongly to his nature, too, but he resisted and lay still. He went on listening, and gathered by odds and ends that it was conjectured at first that the boys had got drowned while taking a swim; then the small raft had been missed; next, certain boys said the missing lads had promised that the village should "hear something" soon; the wise-heads had "put this and that together" and decided that the lads had gone off on that raft and would turn up at the next town below, presently; but toward noon the raft had been found, lodged against the Missouri shore some five or six miles below the village --and then hope perished; they must be drowned, else hunger would have driven them home by nightfall if not sooner. It was believed that the search for the bodies had been a fruitless effort merely because the drowning must have occurred in mid-channel, since the boys, being good swimmers, would otherwise have escaped to shore. This was Wednesday night. If the bodies continued missing until Sunday, all hope would be given over, and the funerals would be preached on that morning. Tom shuddered. Mrs. Harper gave a sobbing good-night and turned to go. Then with a mutual impulse the two bereaved women flung themselves into each other's arms and had a good, consoling cry, and then parted. Aunt Polly was tender far beyond her wont, in her good-night to Sid and Mary. Sid snuffled a bit and Mary went off crying with all her heart. Aunt Polly knelt down and prayed for Tom so touchingly, so appealingly, and with such measureless love in her words and her old trembling voice, that he was weltering in tears again, long before she was through. He had to keep still long after she went to bed, for she kept making broken-hearted ejaculations from time to time, tossing unrestfully, and turning over. But at last she was still, only moaning a little in her sleep. Now the boy stole out, rose gradually by the bedside, shaded the candle-light with his hand, and stood regarding her. His heart was full of pity for her. He took out his sycamore scroll and placed it by the candle. But something occurred to him, and he lingered considering. His face lighted with a happy solution of his thought; he put the bark hastily in his pocket. Then he bent over and kissed the faded lips, and straightway made his stealthy exit, latching the door behind him. He threaded his way back to the ferry landing, found nobody at large there, and walked boldly on board the boat, for he knew she was tenantless except that there was a watchman, who always turned in and slept like a graven image. He untied the skiff at the stern, slipped into it, and was soon rowing cautiously upstream. When he had pulled a mile above the village, he started quartering across and bent himself stoutly to his work. He hit the landing on the other side neatly, for this was a familiar bit of work to him. He was moved to capture the skiff, arguing that it might be considered a ship and therefore legitimate prey for a pirate, but he knew a thorough search would be made for it and that might end in revelations. So he stepped ashore and entered the woods. He sat down and took a long rest, torturing himself meanwhile to keep awake, and then started warily down the home-stretch. The night was far spent. It was broad daylight before he found himself fairly abreast the island bar. He rested again until the sun was well up and gilding the great river with its splendor, and then he plunged into the stream. A little later he paused, dripping, upon the threshold of the camp, and heard Joe say: "No, Tom's true-blue, Huck, and he'll come back. He won't desert. He knows that would be a disgrace to a pirate, and Tom's too proud for that sort of thing. He's up to something or other. Now I wonder what?" "Well, the things is ours, anyway, ain't they?" "Pretty near, but not yet, Huck. The writing says they are if he ain't back here to breakfast." "Which he is!" exclaimed Tom, with fine dramatic effect, stepping grandly into camp. A sumptuous breakfast of bacon and fish was shortly provided, and as the boys set to work upon it, Tom recounted (and adorned) his adventures. They were a vain and boastful company of heroes when the tale was done. Then Tom hid himself away in a shady nook to sleep till noon, and the other pirates got ready to fish and explore. CHAPTER XVI AFTER dinner all the gang turned out to hunt for turtle eggs on the bar. They went about poking sticks into the sand, and when they found a soft place they went down on their knees and dug with their hands. Sometimes they would take fifty or sixty eggs out of one hole. They were perfectly round white things a trifle smaller than an English walnut. They had a famous fried-egg feast that night, and another on Friday morning. After breakfast they went whooping and prancing out on the bar, and chased each other round and round, shedding clothes as they went, until they were naked, and then continued the frolic far away up the shoal water of the bar, against the stiff current, which latter tripped their legs from under them from time to time and greatly increased the fun. And now and then they stooped in a group and splashed water in each other's faces with their palms, gradually approaching each other, with averted faces to avoid the strangling sprays, and finally gripping and struggling till the best man ducked his neighbor, and then they all went under in a tangle of white legs and arms and came up blowing, sputtering, laughing, and gasping for breath at one and the same time. When they were well exhausted, they would run out and sprawl on the dry, hot sand, and lie there and cover themselves up with it, and by and by break for the water again and go through the original performance once more. Finally it occurred to them that their naked skin represented flesh-colored "tights" very fairly; so they drew a ring in the sand and had a circus--with three clowns in it, for none would yield this proudest post to his neighbor. Next they got their marbles and played "knucks" and "ring-taw" and "keeps" till that amusement grew stale. Then Joe and Huck had another swim, but Tom would not venture, because he found that in kicking off his trousers he had kicked his string of rattlesnake rattles off his ankle, and he wondered how he had escaped cramp so long without the protection of this mysterious charm. He did not venture again until he had found it, and by that time the other boys were tired and ready to rest. They gradually wandered apart, dropped into the "dumps," and fell to gazing longingly across the wide river to where the village lay drowsing in the sun. Tom found himself writing "BECKY" in the sand with his big toe; he scratched it out, and was angry with himself for his weakness. But he wrote it again, nevertheless; he could not help it. He erased it once more and then took himself out of temptation by driving the other boys together and joining them. But Joe's spirits had gone down almost beyond resurrection. He was so homesick that he could hardly endure the misery of it. The tears lay very near the surface. Huck was melancholy, too. Tom was downhearted, but tried hard not to show it. He had a secret which he was not ready to tell, yet, but if this mutinous depression was not broken up soon, he would have to bring it out. He said, with a great show of cheerfulness: "I bet there's been pirates on this island before, boys. We'll explore it again. They've hid treasures here somewhere. How'd you feel to light on a rotten chest full of gold and silver--hey?" But it roused only faint enthusiasm, which faded out, with no reply. Tom tried one or two other seductions; but they failed, too. It was discouraging work. Joe sat poking up the sand with a stick and looking very gloomy. Finally he said: "Oh, boys, let's give it up. I want to go home. It's so lonesome." "Oh no, Joe, you'll feel better by and by," said Tom. "Just think of the fishing that's here." "I don't care for fishing. I want to go home." "But, Joe, there ain't such another swimming-place anywhere." "Swimming's no good. I don't seem to care for it, somehow, when there ain't anybody to say I sha'n't go in. I mean to go home." "Oh, shucks! Baby! You want to see your mother, I reckon." "Yes, I DO want to see my mother--and you would, too, if you had one. I ain't any more baby than you are." And Joe snuffled a little. "Well, we'll let the cry-baby go home to his mother, won't we, Huck? Poor thing--does it want to see its mother? And so it shall. You like it here, don't you, Huck? We'll stay, won't we?" Huck said, "Y-e-s"--without any heart in it. "I'll never speak to you again as long as I live," said Joe, rising. "There now!" And he moved moodily away and began to dress himself. "Who cares!" said Tom. "Nobody wants you to. Go 'long home and get laughed at. Oh, you're a nice pirate. Huck and me ain't cry-babies. We'll stay, won't we, Huck? Let him go if he wants to. I reckon we can get along without him, per'aps." But Tom was uneasy, nevertheless, and was alarmed to see Joe go sullenly on with his dressing. And then it was discomforting to see Huck eying Joe's preparations so wistfully, and keeping up such an ominous silence. Presently, without a parting word, Joe began to wade off toward the Illinois shore. Tom's heart began to sink. He glanced at Huck. Huck could not bear the look, and dropped his eyes. Then he said: "I want to go, too, Tom. It was getting so lonesome anyway, and now it'll be worse. Let's us go, too, Tom." "I won't! You can all go, if you want to. I mean to stay." "Tom, I better go." "Well, go 'long--who's hendering you." Huck began to pick up his scattered clothes. He said: "Tom, I wisht you'd come, too. Now you think it over. We'll wait for you when we get to shore." "Well, you'll wait a blame long time, that's all." Huck started sorrowfully away, and Tom stood looking after him, with a strong desire tugging at his heart to yield his pride and go along too. He hoped the boys would stop, but they still waded slowly on. It suddenly dawned on Tom that it was become very lonely and still. He made one final struggle with his pride, and then darted after his comrades, yelling: "Wait! Wait! I want to tell you something!" They presently stopped and turned around. When he got to where they were, he began unfolding his secret, and they listened moodily till at last they saw the "point" he was driving at, and then they set up a war-whoop of applause and said it was "splendid!" and said if he had told them at first, they wouldn't have started away. He made a plausible excuse; but his real reason had been the fear that not even the secret would keep them with him any very great length of time, and so he had meant to hold it in reserve as a last seduction. The lads came gayly back and went at their sports again with a will, chattering all the time about Tom's stupendous plan and admiring the genius of it. After a dainty egg and fish dinner, Tom said he wanted to learn to smoke, now. Joe caught at the idea and said he would like to try, too. So Huck made pipes and filled them. These novices had never smoked anything before but cigars made of grape-vine, and they "bit" the tongue, and were not considered manly anyway. Now they stretched themselves out on their elbows and began to puff, charily, and with slender confidence. The smoke had an unpleasant taste, and they gagged a little, but Tom said: "Why, it's just as easy! If I'd a knowed this was all, I'd a learnt long ago." "So would I," said Joe. "It's just nothing." "Why, many a time I've looked at people smoking, and thought well I wish I could do that; but I never thought I could," said Tom. "That's just the way with me, hain't it, Huck? You've heard me talk just that way--haven't you, Huck? I'll leave it to Huck if I haven't." "Yes--heaps of times," said Huck. "Well, I have too," said Tom; "oh, hundreds of times. Once down by the slaughter-house. Don't you remember, Huck? Bob Tanner was there, and Johnny Miller, and Jeff Thatcher, when I said it. Don't you remember, Huck, 'bout me saying that?" "Yes, that's so," said Huck. "That was the day after I lost a white alley. No, 'twas the day before." "There--I told you so," said Tom. "Huck recollects it." "I bleeve I could smoke this pipe all day," said Joe. "I don't feel sick." "Neither do I," said Tom. "I could smoke it all day. But I bet you Jeff Thatcher couldn't." "Jeff Thatcher! Why, he'd keel over just with two draws. Just let him try it once. HE'D see!" "I bet he would. And Johnny Miller--I wish could see Johnny Miller tackle it once." "Oh, don't I!" said Joe. "Why, I bet you Johnny Miller couldn't any more do this than nothing. Just one little snifter would fetch HIM." "'Deed it would, Joe. Say--I wish the boys could see us now." "So do I." "Say--boys, don't say anything about it, and some time when they're around, I'll come up to you and say, 'Joe, got a pipe? I want a smoke.' And you'll say, kind of careless like, as if it warn't anything, you'll say, 'Yes, I got my OLD pipe, and another one, but my tobacker ain't very good.' And I'll say, 'Oh, that's all right, if it's STRONG enough.' And then you'll out with the pipes, and we'll light up just as ca'm, and then just see 'em look!" "By jings, that'll be gay, Tom! I wish it was NOW!" "So do I! And when we tell 'em we learned when we was off pirating, won't they wish they'd been along?" "Oh, I reckon not! I'll just BET they will!" So the talk ran on. But presently it began to flag a trifle, and grow disjointed. The silences widened; the expectoration marvellously increased. Every pore inside the boys' cheeks became a spouting fountain; they could scarcely bail out the cellars under their tongues fast enough to prevent an inundation; little overflowings down their throats occurred in spite of all they could do, and sudden retchings followed every time. Both boys were looking very pale and miserable, now. Joe's pipe dropped from his nerveless fingers. Tom's followed. Both fountains were going furiously and both pumps bailing with might and main. Joe said feebly: "I've lost my knife. I reckon I better go and find it." Tom said, with quivering lips and halting utterance: "I'll help you. You go over that way and I'll hunt around by the spring. No, you needn't come, Huck--we can find it." So Huck sat down again, and waited an hour. Then he found it lonesome, and went to find his comrades. They were wide apart in the woods, both very pale, both fast asleep. But something informed him that if they had had any trouble they had got rid of it. They were not talkative at supper that night. They had a humble look, and when Huck prepared his pipe after the meal and was going to prepare theirs, they said no, they were not feeling very well--something they ate at dinner had disagreed with them. About midnight Joe awoke, and called the boys. There was a brooding oppressiveness in the air that seemed to bode something. The boys huddled themselves together and sought the friendly companionship of the fire, though the dull dead heat of the breathless atmosphere was stifling. They sat still, intent and waiting. The solemn hush continued. Beyond the light of the fire everything was swallowed up in the blackness of darkness. Presently there came a quivering glow that vaguely revealed the foliage for a moment and then vanished. By and by another came, a little stronger. Then another. Then a faint moan came sighing through the branches of the forest and the boys felt a fleeting breath upon their cheeks, and shuddered with the fancy that the Spirit of the Night had gone by. There was a pause. Now a weird flash turned night into day and showed every little grass-blade, separate and distinct, that grew about their feet. And it showed three white, startled faces, too. A deep peal of thunder went rolling and tumbling down the heavens and lost itself in sullen rumblings in the distance. A sweep of chilly air passed by, rustling all the leaves and snowing the flaky ashes broadcast about the fire. Another fierce glare lit up the forest and an instant crash followed that seemed to rend the tree-tops right over the boys' heads. They clung together in terror, in the thick gloom that followed. A few big rain-drops fell pattering upon the leaves. "Quick! boys, go for the tent!" exclaimed Tom. They sprang away, stumbling over roots and among vines in the dark, no two plunging in the same direction. A furious blast roared through the trees, making everything sing as it went. One blinding flash after another came, and peal on peal of deafening thunder. And now a drenching rain poured down and the rising hurricane drove it in sheets along the ground. The boys cried out to each other, but the roaring wind and the booming thunder-blasts drowned their voices utterly. However, one by one they straggled in at last and took shelter under the tent, cold, scared, and streaming with water; but to have company in misery seemed something to be grateful for. They could not talk, the old sail flapped so furiously, even if the other noises would have allowed them. The tempest rose higher and higher, and presently the sail tore loose from its fastenings and went winging away on the blast. The boys seized each others' hands and fled, with many tumblings and bruises, to the shelter of a great oak that stood upon the river-bank. Now the battle was at its highest. Under the ceaseless conflagration of lightning that flamed in the skies, everything below stood out in clean-cut and shadowless distinctness: the bending trees, the billowy river, white with foam, the driving spray of spume-flakes, the dim outlines of the high bluffs on the other side, glimpsed through the drifting cloud-rack and the slanting veil of rain. Every little while some giant tree yielded the fight and fell crashing through the younger growth; and the unflagging thunder-peals came now in ear-splitting explosive bursts, keen and sharp, and unspeakably appalling. The storm culminated in one matchless effort that seemed likely to tear the island to pieces, burn it up, drown it to the tree-tops, blow it away, and deafen every creature in it, all at one and the same moment. It was a wild night for homeless young heads to be out in. But at last the battle was done, and the forces retired with weaker and weaker threatenings and grumblings, and peace resumed her sway. The boys went back to camp, a good deal awed; but they found there was still something to be thankful for, because the great sycamore, the shelter of their beds, was a ruin, now, blasted by the lightnings, and they were not under it when the catastrophe happened. Everything in camp was drenched, the camp-fire as well; for they were but heedless lads, like their generation, and had made no provision against rain. Here was matter for dismay, for they were soaked through and chilled. They were eloquent in their distress; but they presently discovered that the fire had eaten so far up under the great log it had been built against (where it curved upward and separated itself from the ground), that a handbreadth or so of it had escaped wetting; so they patiently wrought until, with shreds and bark gathered from the under sides of sheltered logs, they coaxed the fire to burn again. Then they piled on great dead boughs till they had a roaring furnace, and were glad-hearted once more. They dried their boiled ham and had a feast, and after that they sat by the fire and expanded and glorified their midnight adventure until morning, for there was not a dry spot to sleep on, anywhere around. As the sun began to steal in upon the boys, drowsiness came over them, and they went out on the sandbar and lay down to sleep. They got scorched out by and by, and drearily set about getting breakfast. After the meal they felt rusty, and stiff-jointed, and a little homesick once more. Tom saw the signs, and fell to cheering up the pirates as well as he could. But they cared nothing for marbles, or circus, or swimming, or anything. He reminded them of the imposing secret, and raised a ray of cheer. While it lasted, he got them interested in a new device. This was to knock off being pirates, for a while, and be Indians for a change. They were attracted by this idea; so it was not long before they were stripped, and striped from head to heel with black mud, like so many zebras--all of them chiefs, of course--and then they went tearing through the woods to attack an English settlement. By and by they separated into three hostile tribes, and darted upon each other from ambush with dreadful war-whoops, and killed and scalped each other by thousands. It was a gory day. Consequently it was an extremely satisfactory one. They assembled in camp toward supper-time, hungry and happy; but now a difficulty arose--hostile Indians could not break the bread of hospitality together without first making peace, and this was a simple impossibility without smoking a pipe of peace. There was no other process that ever they had heard of. Two of the savages almost wished they had remained pirates. However, there was no other way; so with such show of cheerfulness as they could muster they called for the pipe and took their whiff as it passed, in due form. And behold, they were glad they had gone into savagery, for they had gained something; they found that they could now smoke a little without having to go and hunt for a lost knife; they did not get sick enough to be seriously uncomfortable. They were not likely to fool away this high promise for lack of effort. No, they practised cautiously, after supper, with right fair success, and so they spent a jubilant evening. They were prouder and happier in their new acquirement than they would have been in the scalping and skinning of the Six Nations. We will leave them to smoke and chatter and brag, since we have no further use for them at present. CHAPTER XVII BUT there was no hilarity in the little town that same tranquil Saturday afternoon. The Harpers, and Aunt Polly's family, were being put into mourning, with great grief and many tears. An unusual quiet possessed the village, although it was ordinarily quiet enough, in all conscience. The villagers conducted their concerns with an absent air, and talked little; but they sighed often. The Saturday holiday seemed a burden to the children. They had no heart in their sports, and gradually gave them up. In the afternoon Becky Thatcher found herself moping about the deserted schoolhouse yard, and feeling very melancholy. But she found nothing there to comfort her. She soliloquized: "Oh, if I only had a brass andiron-knob again! But I haven't got anything now to remember him by." And she choked back a little sob. Presently she stopped, and said to herself: "It was right here. Oh, if it was to do over again, I wouldn't say that--I wouldn't say it for the whole world. But he's gone now; I'll never, never, never see him any more." This thought broke her down, and she wandered away, with tears rolling down her cheeks. Then quite a group of boys and girls--playmates of Tom's and Joe's--came by, and stood looking over the paling fence and talking in reverent tones of how Tom did so-and-so the last time they saw him, and how Joe said this and that small trifle (pregnant with awful prophecy, as they could easily see now!)--and each speaker pointed out the exact spot where the lost lads stood at the time, and then added something like "and I was a-standing just so--just as I am now, and as if you was him--I was as close as that--and he smiled, just this way--and then something seemed to go all over me, like--awful, you know--and I never thought what it meant, of course, but I can see now!" Then there was a dispute about who saw the dead boys last in life, and many claimed that dismal distinction, and offered evidences, more or less tampered with by the witness; and when it was ultimately decided who DID see the departed last, and exchanged the last words with them, the lucky parties took upon themselves a sort of sacred importance, and were gaped at and envied by all the rest. One poor chap, who had no other grandeur to offer, said with tolerably manifest pride in the remembrance: "Well, Tom Sawyer he licked me once." But that bid for glory was a failure. Most of the boys could say that, and so that cheapened the distinction too much. The group loitered away, still recalling memories of the lost heroes, in awed voices. When the Sunday-school hour was finished, the next morning, the bell began to toll, instead of ringing in the usual way. It was a very still Sabbath, and the mournful sound seemed in keeping with the musing hush that lay upon nature. The villagers began to gather, loitering a moment in the vestibule to converse in whispers about the sad event. But there was no whispering in the house; only the funereal rustling of dresses as the women gathered to their seats disturbed the silence there. None could remember when the little church had been so full before. There was finally a waiting pause, an expectant dumbness, and then Aunt Polly entered, followed by Sid and Mary, and they by the Harper family, all in deep black, and the whole congregation, the old minister as well, rose reverently and stood until the mourners were seated in the front pew. There was another communing silence, broken at intervals by muffled sobs, and then the minister spread his hands abroad and prayed. A moving hymn was sung, and the text followed: "I am the Resurrection and the Life." As the service proceeded, the clergyman drew such pictures of the graces, the winning ways, and the rare promise of the lost lads that every soul there, thinking he recognized these pictures, felt a pang in remembering that he had persistently blinded himself to them always before, and had as persistently seen only faults and flaws in the poor boys. The minister related many a touching incident in the lives of the departed, too, which illustrated their sweet, generous natures, and the people could easily see, now, how noble and beautiful those episodes were, and remembered with grief that at the time they occurred they had seemed rank rascalities, well deserving of the cowhide. The congregation became more and more moved, as the pathetic tale went on, till at last the whole company broke down and joined the weeping mourners in a chorus of anguished sobs, the preacher himself giving way to his feelings, and crying in the pulpit. There was a rustle in the gallery, which nobody noticed; a moment later the church door creaked; the minister raised his streaming eyes above his handkerchief, and stood transfixed! First one and then another pair of eyes followed the minister's, and then almost with one impulse the congregation rose and stared while the three dead boys came marching up the aisle, Tom in the lead, Joe next, and Huck, a ruin of drooping rags, sneaking sheepishly in the rear! They had been hid in the unused gallery listening to their own funeral sermon! Aunt Polly, Mary, and the Harpers threw themselves upon their restored ones, smothered them with kisses and poured out thanksgivings, while poor Huck stood abashed and uncomfortable, not knowing exactly what to do or where to hide from so many unwelcoming eyes. He wavered, and started to slink away, but Tom seized him and said: "Aunt Polly, it ain't fair. Somebody's got to be glad to see Huck." "And so they shall. I'm glad to see him, poor motherless thing!" And the loving attentions Aunt Polly lavished upon him were the one thing capable of making him more uncomfortable than he was before. Suddenly the minister shouted at the top of his voice: "Praise God from whom all blessings flow--SING!--and put your hearts in it!" And they did. Old Hundred swelled up with a triumphant burst, and while it shook the rafters Tom Sawyer the Pirate looked around upon the envying juveniles about him and confessed in his heart that this was the proudest moment of his life. As the "sold" congregation trooped out they said they would almost be willing to be made ridiculous again to hear Old Hundred sung like that once more. Tom got more cuffs and kisses that day--according to Aunt Polly's varying moods--than he had earned before in a year; and he hardly knew which expressed the most gratefulness to God and affection for himself. CHAPTER XVIII THAT was Tom's great secret--the scheme to return home with his brother pirates and attend their own funerals. They had paddled over to the Missouri shore on a log, at dusk on Saturday, landing five or six miles below the village; they had slept in the woods at the edge of the town till nearly daylight, and had then crept through back lanes and alleys and finished their sleep in the gallery of the church among a chaos of invalided benches. At breakfast, Monday morning, Aunt Polly and Mary were very loving to Tom, and very attentive to his wants. There was an unusual amount of talk. In the course of it Aunt Polly said: "Well, I don't say it wasn't a fine joke, Tom, to keep everybody suffering 'most a week so you boys had a good time, but it is a pity you could be so hard-hearted as to let me suffer so. If you could come over on a log to go to your funeral, you could have come over and give me a hint some way that you warn't dead, but only run off." "Yes, you could have done that, Tom," said Mary; "and I believe you would if you had thought of it." "Would you, Tom?" said Aunt Polly, her face lighting wistfully. "Say, now, would you, if you'd thought of it?" "I--well, I don't know. 'Twould 'a' spoiled everything." "Tom, I hoped you loved me that much," said Aunt Polly, with a grieved tone that discomforted the boy. "It would have been something if you'd cared enough to THINK of it, even if you didn't DO it." "Now, auntie, that ain't any harm," pleaded Mary; "it's only Tom's giddy way--he is always in such a rush that he never thinks of anything." "More's the pity. Sid would have thought. And Sid would have come and DONE it, too. Tom, you'll look back, some day, when it's too late, and wish you'd cared a little more for me when it would have cost you so little." "Now, auntie, you know I do care for you," said Tom. "I'd know it better if you acted more like it." "I wish now I'd thought," said Tom, with a repentant tone; "but I dreamt about you, anyway. That's something, ain't it?" "It ain't much--a cat does that much--but it's better than nothing. What did you dream?" "Why, Wednesday night I dreamt that you was sitting over there by the bed, and Sid was sitting by the woodbox, and Mary next to him." "Well, so we did. So we always do. I'm glad your dreams could take even that much trouble about us." "And I dreamt that Joe Harper's mother was here." "Why, she was here! Did you dream any more?" "Oh, lots. But it's so dim, now." "Well, try to recollect--can't you?" "Somehow it seems to me that the wind--the wind blowed the--the--" "Try harder, Tom! The wind did blow something. Come!" Tom pressed his fingers on his forehead an anxious minute, and then said: "I've got it now! I've got it now! It blowed the candle!" "Mercy on us! Go on, Tom--go on!" "And it seems to me that you said, 'Why, I believe that that door--'" "Go ON, Tom!" "Just let me study a moment--just a moment. Oh, yes--you said you believed the door was open." "As I'm sitting here, I did! Didn't I, Mary! Go on!" "And then--and then--well I won't be certain, but it seems like as if you made Sid go and--and--" "Well? Well? What did I make him do, Tom? What did I make him do?" "You made him--you--Oh, you made him shut it." "Well, for the land's sake! I never heard the beat of that in all my days! Don't tell ME there ain't anything in dreams, any more. Sereny Harper shall know of this before I'm an hour older. I'd like to see her get around THIS with her rubbage 'bout superstition. Go on, Tom!" "Oh, it's all getting just as bright as day, now. Next you said I warn't BAD, only mischeevous and harum-scarum, and not any more responsible than--than--I think it was a colt, or something." "And so it was! Well, goodness gracious! Go on, Tom!" "And then you began to cry." "So I did. So I did. Not the first time, neither. And then--" "Then Mrs. Harper she began to cry, and said Joe was just the same, and she wished she hadn't whipped him for taking cream when she'd throwed it out her own self--" "Tom! The sperrit was upon you! You was a prophesying--that's what you was doing! Land alive, go on, Tom!" "Then Sid he said--he said--" "I don't think I said anything," said Sid. "Yes you did, Sid," said Mary. "Shut your heads and let Tom go on! What did he say, Tom?" "He said--I THINK he said he hoped I was better off where I was gone to, but if I'd been better sometimes--" "THERE, d'you hear that! It was his very words!" "And you shut him up sharp." "I lay I did! There must 'a' been an angel there. There WAS an angel there, somewheres!" "And Mrs. Harper told about Joe scaring her with a firecracker, and you told about Peter and the Painkiller--" "Just as true as I live!" "And then there was a whole lot of talk 'bout dragging the river for us, and 'bout having the funeral Sunday, and then you and old Miss Harper hugged and cried, and she went." "It happened just so! It happened just so, as sure as I'm a-sitting in these very tracks. Tom, you couldn't told it more like if you'd 'a' seen it! And then what? Go on, Tom!" "Then I thought you prayed for me--and I could see you and hear every word you said. And you went to bed, and I was so sorry that I took and wrote on a piece of sycamore bark, 'We ain't dead--we are only off being pirates,' and put it on the table by the candle; and then you looked so good, laying there asleep, that I thought I went and leaned over and kissed you on the lips." "Did you, Tom, DID you! I just forgive you everything for that!" And she seized the boy in a crushing embrace that made him feel like the guiltiest of villains. "It was very kind, even though it was only a--dream," Sid soliloquized just audibly. "Shut up, Sid! A body does just the same in a dream as he'd do if he was awake. Here's a big Milum apple I've been saving for you, Tom, if you was ever found again--now go 'long to school. I'm thankful to the good God and Father of us all I've got you back, that's long-suffering and merciful to them that believe on Him and keep His word, though goodness knows I'm unworthy of it, but if only the worthy ones got His blessings and had His hand to help them over the rough places, there's few enough would smile here or ever enter into His rest when the long night comes. Go 'long Sid, Mary, Tom--take yourselves off--you've hendered me long enough." The children left for school, and the old lady to call on Mrs. Harper and vanquish her realism with Tom's marvellous dream. Sid had better judgment than to utter the thought that was in his mind as he left the house. It was this: "Pretty thin--as long a dream as that, without any mistakes in it!" What a hero Tom was become, now! He did not go skipping and prancing, but moved with a dignified swagger as became a pirate who felt that the public eye was on him. And indeed it was; he tried not to seem to see the looks or hear the remarks as he passed along, but they were food and drink to him. Smaller boys than himself flocked at his heels, as proud to be seen with him, and tolerated by him, as if he had been the drummer at the head of a procession or the elephant leading a menagerie into town. Boys of his own size pretended not to know he had been away at all; but they were consuming with envy, nevertheless. They would have given anything to have that swarthy suntanned skin of his, and his glittering notoriety; and Tom would not have parted with either for a circus. At school the children made so much of him and of Joe, and delivered such eloquent admiration from their eyes, that the two heroes were not long in becoming insufferably "stuck-up." They began to tell their adventures to hungry listeners--but they only began; it was not a thing likely to have an end, with imaginations like theirs to furnish material. And finally, when they got out their pipes and went serenely puffing around, the very summit of glory was reached. Tom decided that he could be independent of Becky Thatcher now. Glory was sufficient. He would live for glory. Now that he was distinguished, maybe she would be wanting to "make up." Well, let her--she should see that he could be as indifferent as some other people. Presently she arrived. Tom pretended not to see her. He moved away and joined a group of boys and girls and began to talk. Soon he observed that she was tripping gayly back and forth with flushed face and dancing eyes, pretending to be busy chasing schoolmates, and screaming with laughter when she made a capture; but he noticed that she always made her captures in his vicinity, and that she seemed to cast a conscious eye in his direction at such times, too. It gratified all the vicious vanity that was in him; and so, instead of winning him, it only "set him up" the more and made him the more diligent to avoid betraying that he knew she was about. Presently she gave over skylarking, and moved irresolutely about, sighing once or twice and glancing furtively and wistfully toward Tom. Then she observed that now Tom was talking more particularly to Amy Lawrence than to any one else. She felt a sharp pang and grew disturbed and uneasy at once. She tried to go away, but her feet were treacherous, and carried her to the group instead. She said to a girl almost at Tom's elbow--with sham vivacity: "Why, Mary Austin! you bad girl, why didn't you come to Sunday-school?" "I did come--didn't you see me?" "Why, no! Did you? Where did you sit?" "I was in Miss Peters' class, where I always go. I saw YOU." "Did you? Why, it's funny I didn't see you. I wanted to tell you about the picnic." "Oh, that's jolly. Who's going to give it?" "My ma's going to let me have one." "Oh, goody; I hope she'll let ME come." "Well, she will. The picnic's for me. She'll let anybody come that I want, and I want you." "That's ever so nice. When is it going to be?" "By and by. Maybe about vacation." "Oh, won't it be fun! You going to have all the girls and boys?" "Yes, every one that's friends to me--or wants to be"; and she glanced ever so furtively at Tom, but he talked right along to Amy Lawrence about the terrible storm on the island, and how the lightning tore the great sycamore tree "all to flinders" while he was "standing within three feet of it." "Oh, may I come?" said Grace Miller. "Yes." "And me?" said Sally Rogers. "Yes." "And me, too?" said Susy Harper. "And Joe?" "Yes." And so on, with clapping of joyful hands till all the group had begged for invitations but Tom and Amy. Then Tom turned coolly away, still talking, and took Amy with him. Becky's lips trembled and the tears came to her eyes; she hid these signs with a forced gayety and went on chattering, but the life had gone out of the picnic, now, and out of everything else; she got away as soon as she could and hid herself and had what her sex call "a good cry." Then she sat moody, with wounded pride, till the bell rang. She roused up, now, with a vindictive cast in her eye, and gave her plaited tails a shake and said she knew what SHE'D do. At recess Tom continued his flirtation with Amy with jubilant self-satisfaction. And he kept drifting about to find Becky and lacerate her with the performance. At last he spied her, but there was a sudden falling of his mercury. She was sitting cosily on a little bench behind the schoolhouse looking at a picture-book with Alfred Temple--and so absorbed were they, and their heads so close together over the book, that they did not seem to be conscious of anything in the world besides. Jealousy ran red-hot through Tom's veins. He began to hate himself for throwing away the chance Becky had offered for a reconciliation. He called himself a fool, and all the hard names he could think of. He wanted to cry with vexation. Amy chatted happily along, as they walked, for her heart was singing, but Tom's tongue had lost its function. He did not hear what Amy was saying, and whenever she paused expectantly he could only stammer an awkward assent, which was as often misplaced as otherwise. He kept drifting to the rear of the schoolhouse, again and again, to sear his eyeballs with the hateful spectacle there. He could not help it. And it maddened him to see, as he thought he saw, that Becky Thatcher never once suspected that he was even in the land of the living. But she did see, nevertheless; and she knew she was winning her fight, too, and was glad to see him suffer as she had suffered. Amy's happy prattle became intolerable. Tom hinted at things he had to attend to; things that must be done; and time was fleeting. But in vain--the girl chirped on. Tom thought, "Oh, hang her, ain't I ever going to get rid of her?" At last he must be attending to those things--and she said artlessly that she would be "around" when school let out. And he hastened away, hating her for it. "Any other boy!" Tom thought, grating his teeth. "Any boy in the whole town but that Saint Louis smarty that thinks he dresses so fine and is aristocracy! Oh, all right, I licked you the first day you ever saw this town, mister, and I'll lick you again! You just wait till I catch you out! I'll just take and--" And he went through the motions of thrashing an imaginary boy --pummelling the air, and kicking and gouging. "Oh, you do, do you? You holler 'nough, do you? Now, then, let that learn you!" And so the imaginary flogging was finished to his satisfaction. Tom fled home at noon. His conscience could not endure any more of Amy's grateful happiness, and his jealousy could bear no more of the other distress. Becky resumed her picture inspections with Alfred, but as the minutes dragged along and no Tom came to suffer, her triumph began to cloud and she lost interest; gravity and absent-mindedness followed, and then melancholy; two or three times she pricked up her ear at a footstep, but it was a false hope; no Tom came. At last she grew entirely miserable and wished she hadn't carried it so far. When poor Alfred, seeing that he was losing her, he did not know how, kept exclaiming: "Oh, here's a jolly one! look at this!" she lost patience at last, and said, "Oh, don't bother me! I don't care for them!" and burst into tears, and got up and walked away. Alfred dropped alongside and was going to try to comfort her, but she said: "Go away and leave me alone, can't you! I hate you!" So the boy halted, wondering what he could have done--for she had said she would look at pictures all through the nooning--and she walked on, crying. Then Alfred went musing into the deserted schoolhouse. He was humiliated and angry. He easily guessed his way to the truth--the girl had simply made a convenience of him to vent her spite upon Tom Sawyer. He was far from hating Tom the less when this thought occurred to him. He wished there was some way to get that boy into trouble without much risk to himself. Tom's spelling-book fell under his eye. Here was his opportunity. He gratefully opened to the lesson for the afternoon and poured ink upon the page. Becky, glancing in at a window behind him at the moment, saw the act, and moved on, without discovering herself. She started homeward, now, intending to find Tom and tell him; Tom would be thankful and their troubles would be healed. Before she was half way home, however, she had changed her mind. The thought of Tom's treatment of her when she was talking about her picnic came scorching back and filled her with shame. She resolved to let him get whipped on the damaged spelling-book's account, and to hate him forever, into the bargain. CHAPTER XIX TOM arrived at home in a dreary mood, and the first thing his aunt said to him showed him that he had brought his sorrows to an unpromising market: "Tom, I've a notion to skin you alive!" "Auntie, what have I done?" "Well, you've done enough. Here I go over to Sereny Harper, like an old softy, expecting I'm going to make her believe all that rubbage about that dream, when lo and behold you she'd found out from Joe that you was over here and heard all the talk we had that night. Tom, I don't know what is to become of a boy that will act like that. It makes me feel so bad to think you could let me go to Sereny Harper and make such a fool of myself and never say a word." This was a new aspect of the thing. His smartness of the morning had seemed to Tom a good joke before, and very ingenious. It merely looked mean and shabby now. He hung his head and could not think of anything to say for a moment. Then he said: "Auntie, I wish I hadn't done it--but I didn't think." "Oh, child, you never think. You never think of anything but your own selfishness. You could think to come all the way over here from Jackson's Island in the night to laugh at our troubles, and you could think to fool me with a lie about a dream; but you couldn't ever think to pity us and save us from sorrow." "Auntie, I know now it was mean, but I didn't mean to be mean. I didn't, honest. And besides, I didn't come over here to laugh at you that night." "What did you come for, then?" "It was to tell you not to be uneasy about us, because we hadn't got drownded." "Tom, Tom, I would be the thankfullest soul in this world if I could believe you ever had as good a thought as that, but you know you never did--and I know it, Tom." "Indeed and 'deed I did, auntie--I wish I may never stir if I didn't." "Oh, Tom, don't lie--don't do it. It only makes things a hundred times worse." "It ain't a lie, auntie; it's the truth. I wanted to keep you from grieving--that was all that made me come." "I'd give the whole world to believe that--it would cover up a power of sins, Tom. I'd 'most be glad you'd run off and acted so bad. But it ain't reasonable; because, why didn't you tell me, child?" "Why, you see, when you got to talking about the funeral, I just got all full of the idea of our coming and hiding in the church, and I couldn't somehow bear to spoil it. So I just put the bark back in my pocket and kept mum." "What bark?" "The bark I had wrote on to tell you we'd gone pirating. I wish, now, you'd waked up when I kissed you--I do, honest." The hard lines in his aunt's face relaxed and a sudden tenderness dawned in her eyes. "DID you kiss me, Tom?" "Why, yes, I did." "Are you sure you did, Tom?" "Why, yes, I did, auntie--certain sure." "What did you kiss me for, Tom?" "Because I loved you so, and you laid there moaning and I was so sorry." The words sounded like truth. The old lady could not hide a tremor in her voice when she said: "Kiss me again, Tom!--and be off with you to school, now, and don't bother me any more." The moment he was gone, she ran to a closet and got out the ruin of a jacket which Tom had gone pirating in. Then she stopped, with it in her hand, and said to herself: "No, I don't dare. Poor boy, I reckon he's lied about it--but it's a blessed, blessed lie, there's such a comfort come from it. I hope the Lord--I KNOW the Lord will forgive him, because it was such goodheartedness in him to tell it. But I don't want to find out it's a lie. I won't look." She put the jacket away, and stood by musing a minute. Twice she put out her hand to take the garment again, and twice she refrained. Once more she ventured, and this time she fortified herself with the thought: "It's a good lie--it's a good lie--I won't let it grieve me." So she sought the jacket pocket. A moment later she was reading Tom's piece of bark through flowing tears and saying: "I could forgive the boy, now, if he'd committed a million sins!" CHAPTER XX THERE was something about Aunt Polly's manner, when she kissed Tom, that swept away his low spirits and made him lighthearted and happy again. He started to school and had the luck of coming upon Becky Thatcher at the head of Meadow Lane. His mood always determined his manner. Without a moment's hesitation he ran to her and said: "I acted mighty mean to-day, Becky, and I'm so sorry. I won't ever, ever do that way again, as long as ever I live--please make up, won't you?" The girl stopped and looked him scornfully in the face: "I'll thank you to keep yourself TO yourself, Mr. Thomas Sawyer. I'll never speak to you again." She tossed her head and passed on. Tom was so stunned that he had not even presence of mind enough to say "Who cares, Miss Smarty?" until the right time to say it had gone by. So he said nothing. But he was in a fine rage, nevertheless. He moped into the schoolyard wishing she were a boy, and imagining how he would trounce her if she were. He presently encountered her and delivered a stinging remark as he passed. She hurled one in return, and the angry breach was complete. It seemed to Becky, in her hot resentment, that she could hardly wait for school to "take in," she was so impatient to see Tom flogged for the injured spelling-book. If she had had any lingering notion of exposing Alfred Temple, Tom's offensive fling had driven it entirely away. Poor girl, she did not know how fast she was nearing trouble herself. The master, Mr. Dobbins, had reached middle age with an unsatisfied ambition. The darling of his desires was, to be a doctor, but poverty had decreed that he should be nothing higher than a village schoolmaster. Every day he took a mysterious book out of his desk and absorbed himself in it at times when no classes were reciting. He kept that book under lock and key. There was not an urchin in school but was perishing to have a glimpse of it, but the chance never came. Every boy and girl had a theory about the nature of that book; but no two theories were alike, and there was no way of getting at the facts in the case. Now, as Becky was passing by the desk, which stood near the door, she noticed that the key was in the lock! It was a precious moment. She glanced around; found herself alone, and the next instant she had the book in her hands. The title-page--Professor Somebody's ANATOMY--carried no information to her mind; so she began to turn the leaves. She came at once upon a handsomely engraved and colored frontispiece--a human figure, stark naked. At that moment a shadow fell on the page and Tom Sawyer stepped in at the door and caught a glimpse of the picture. Becky snatched at the book to close it, and had the hard luck to tear the pictured page half down the middle. She thrust the volume into the desk, turned the key, and burst out crying with shame and vexation. "Tom Sawyer, you are just as mean as you can be, to sneak up on a person and look at what they're looking at." "How could I know you was looking at anything?" "You ought to be ashamed of yourself, Tom Sawyer; you know you're going to tell on me, and oh, what shall I do, what shall I do! I'll be whipped, and I never was whipped in school." Then she stamped her little foot and said: "BE so mean if you want to! I know something that's going to happen. You just wait and you'll see! Hateful, hateful, hateful!"--and she flung out of the house with a new explosion of crying. Tom stood still, rather flustered by this onslaught. Presently he said to himself: "What a curious kind of a fool a girl is! Never been licked in school! Shucks! What's a licking! That's just like a girl--they're so thin-skinned and chicken-hearted. Well, of course I ain't going to tell old Dobbins on this little fool, because there's other ways of getting even on her, that ain't so mean; but what of it? Old Dobbins will ask who it was tore his book. Nobody'll answer. Then he'll do just the way he always does--ask first one and then t'other, and when he comes to the right girl he'll know it, without any telling. Girls' faces always tell on them. They ain't got any backbone. She'll get licked. Well, it's a kind of a tight place for Becky Thatcher, because there ain't any way out of it." Tom conned the thing a moment longer, and then added: "All right, though; she'd like to see me in just such a fix--let her sweat it out!" Tom joined the mob of skylarking scholars outside. In a few moments the master arrived and school "took in." Tom did not feel a strong interest in his studies. Every time he stole a glance at the girls' side of the room Becky's face troubled him. Considering all things, he did not want to pity her, and yet it was all he could do to help it. He could get up no exultation that was really worthy the name. Presently the spelling-book discovery was made, and Tom's mind was entirely full of his own matters for a while after that. Becky roused up from her lethargy of distress and showed good interest in the proceedings. She did not expect that Tom could get out of his trouble by denying that he spilt the ink on the book himself; and she was right. The denial only seemed to make the thing worse for Tom. Becky supposed she would be glad of that, and she tried to believe she was glad of it, but she found she was not certain. When the worst came to the worst, she had an impulse to get up and tell on Alfred Temple, but she made an effort and forced herself to keep still--because, said she to herself, "he'll tell about me tearing the picture sure. I wouldn't say a word, not to save his life!" Tom took his whipping and went back to his seat not at all broken-hearted, for he thought it was possible that he had unknowingly upset the ink on the spelling-book himself, in some skylarking bout--he had denied it for form's sake and because it was custom, and had stuck to the denial from principle. A whole hour drifted by, the master sat nodding in his throne, the air was drowsy with the hum of study. By and by, Mr. Dobbins straightened himself up, yawned, then unlocked his desk, and reached for his book, but seemed undecided whether to take it out or leave it. Most of the pupils glanced up languidly, but there were two among them that watched his movements with intent eyes. Mr. Dobbins fingered his book absently for a while, then took it out and settled himself in his chair to read! Tom shot a glance at Becky. He had seen a hunted and helpless rabbit look as she did, with a gun levelled at its head. Instantly he forgot his quarrel with her. Quick--something must be done! done in a flash, too! But the very imminence of the emergency paralyzed his invention. Good!--he had an inspiration! He would run and snatch the book, spring through the door and fly. But his resolution shook for one little instant, and the chance was lost--the master opened the volume. If Tom only had the wasted opportunity back again! Too late. There was no help for Becky now, he said. The next moment the master faced the school. Every eye sank under his gaze. There was that in it which smote even the innocent with fear. There was silence while one might count ten --the master was gathering his wrath. Then he spoke: "Who tore this book?" There was not a sound. One could have heard a pin drop. The stillness continued; the master searched face after face for signs of guilt. "Benjamin Rogers, did you tear this book?" A denial. Another pause. "Joseph Harper, did you?" Another denial. Tom's uneasiness grew more and more intense under the slow torture of these proceedings. The master scanned the ranks of boys--considered a while, then turned to the girls: "Amy Lawrence?" A shake of the head. "Gracie Miller?" The same sign. "Susan Harper, did you do this?" Another negative. The next girl was Becky Thatcher. Tom was trembling from head to foot with excitement and a sense of the hopelessness of the situation. "Rebecca Thatcher" [Tom glanced at her face--it was white with terror] --"did you tear--no, look me in the face" [her hands rose in appeal] --"did you tear this book?" A thought shot like lightning through Tom's brain. He sprang to his feet and shouted--"I done it!" The school stared in perplexity at this incredible folly. Tom stood a moment, to gather his dismembered faculties; and when he stepped forward to go to his punishment the surprise, the gratitude, the adoration that shone upon him out of poor Becky's eyes seemed pay enough for a hundred floggings. Inspired by the splendor of his own act, he took without an outcry the most merciless flaying that even Mr. Dobbins had ever administered; and also received with indifference the added cruelty of a command to remain two hours after school should be dismissed--for he knew who would wait for him outside till his captivity was done, and not count the tedious time as loss, either. Tom went to bed that night planning vengeance against Alfred Temple; for with shame and repentance Becky had told him all, not forgetting her own treachery; but even the longing for vengeance had to give way, soon, to pleasanter musings, and he fell asleep at last with Becky's latest words lingering dreamily in his ear-- "Tom, how COULD you be so noble!" CHAPTER XXI VACATION was approaching. The schoolmaster, always severe, grew severer and more exacting than ever, for he wanted the school to make a good showing on "Examination" day. His rod and his ferule were seldom idle now--at least among the smaller pupils. Only the biggest boys, and young ladies of eighteen and twenty, escaped lashing. Mr. Dobbins' lashings were very vigorous ones, too; for although he carried, under his wig, a perfectly bald and shiny head, he had only reached middle age, and there was no sign of feebleness in his muscle. As the great day approached, all the tyranny that was in him came to the surface; he seemed to take a vindictive pleasure in punishing the least shortcomings. The consequence was, that the smaller boys spent their days in terror and suffering and their nights in plotting revenge. They threw away no opportunity to do the master a mischief. But he kept ahead all the time. The retribution that followed every vengeful success was so sweeping and majestic that the boys always retired from the field badly worsted. At last they conspired together and hit upon a plan that promised a dazzling victory. They swore in the sign-painter's boy, told him the scheme, and asked his help. He had his own reasons for being delighted, for the master boarded in his father's family and had given the boy ample cause to hate him. The master's wife would go on a visit to the country in a few days, and there would be nothing to interfere with the plan; the master always prepared himself for great occasions by getting pretty well fuddled, and the sign-painter's boy said that when the dominie had reached the proper condition on Examination Evening he would "manage the thing" while he napped in his chair; then he would have him awakened at the right time and hurried away to school. In the fulness of time the interesting occasion arrived. At eight in the evening the schoolhouse was brilliantly lighted, and adorned with wreaths and festoons of foliage and flowers. The master sat throned in his great chair upon a raised platform, with his blackboard behind him. He was looking tolerably mellow. Three rows of benches on each side and six rows in front of him were occupied by the dignitaries of the town and by the parents of the pupils. To his left, back of the rows of citizens, was a spacious temporary platform upon which were seated the scholars who were to take part in the exercises of the evening; rows of small boys, washed and dressed to an intolerable state of discomfort; rows of gawky big boys; snowbanks of girls and young ladies clad in lawn and muslin and conspicuously conscious of their bare arms, their grandmothers' ancient trinkets, their bits of pink and blue ribbon and the flowers in their hair. All the rest of the house was filled with non-participating scholars. The exercises began. A very little boy stood up and sheepishly recited, "You'd scarce expect one of my age to speak in public on the stage," etc.--accompanying himself with the painfully exact and spasmodic gestures which a machine might have used--supposing the machine to be a trifle out of order. But he got through safely, though cruelly scared, and got a fine round of applause when he made his manufactured bow and retired. A little shamefaced girl lisped, "Mary had a little lamb," etc., performed a compassion-inspiring curtsy, got her meed of applause, and sat down flushed and happy. Tom Sawyer stepped forward with conceited confidence and soared into the unquenchable and indestructible "Give me liberty or give me death" speech, with fine fury and frantic gesticulation, and broke down in the middle of it. A ghastly stage-fright seized him, his legs quaked under him and he was like to choke. True, he had the manifest sympathy of the house but he had the house's silence, too, which was even worse than its sympathy. The master frowned, and this completed the disaster. Tom struggled awhile and then retired, utterly defeated. There was a weak attempt at applause, but it died early. "The Boy Stood on the Burning Deck" followed; also "The Assyrian Came Down," and other declamatory gems. Then there were reading exercises, and a spelling fight. The meagre Latin class recited with honor. The prime feature of the evening was in order, now--original "compositions" by the young ladies. Each in her turn stepped forward to the edge of the platform, cleared her throat, held up her manuscript (tied with dainty ribbon), and proceeded to read, with labored attention to "expression" and punctuation. The themes were the same that had been illuminated upon similar occasions by their mothers before them, their grandmothers, and doubtless all their ancestors in the female line clear back to the Crusades. "Friendship" was one; "Memories of Other Days"; "Religion in History"; "Dream Land"; "The Advantages of Culture"; "Forms of Political Government Compared and Contrasted"; "Melancholy"; "Filial Love"; "Heart Longings," etc., etc. A prevalent feature in these compositions was a nursed and petted melancholy; another was a wasteful and opulent gush of "fine language"; another was a tendency to lug in by the ears particularly prized words and phrases until they were worn entirely out; and a peculiarity that conspicuously marked and marred them was the inveterate and intolerable sermon that wagged its crippled tail at the end of each and every one of them. No matter what the subject might be, a brain-racking effort was made to squirm it into some aspect or other that the moral and religious mind could contemplate with edification. The glaring insincerity of these sermons was not sufficient to compass the banishment of the fashion from the schools, and it is not sufficient to-day; it never will be sufficient while the world stands, perhaps. There is no school in all our land where the young ladies do not feel obliged to close their compositions with a sermon; and you will find that the sermon of the most frivolous and the least religious girl in the school is always the longest and the most relentlessly pious. But enough of this. Homely truth is unpalatable. Let us return to the "Examination." The first composition that was read was one entitled "Is this, then, Life?" Perhaps the reader can endure an extract from it: "In the common walks of life, with what delightful emotions does the youthful mind look forward to some anticipated scene of festivity! Imagination is busy sketching rose-tinted pictures of joy. In fancy, the voluptuous votary of fashion sees herself amid the festive throng, 'the observed of all observers.' Her graceful form, arrayed in snowy robes, is whirling through the mazes of the joyous dance; her eye is brightest, her step is lightest in the gay assembly. "In such delicious fancies time quickly glides by, and the welcome hour arrives for her entrance into the Elysian world, of which she has had such bright dreams. How fairy-like does everything appear to her enchanted vision! Each new scene is more charming than the last. But after a while she finds that beneath this goodly exterior, all is vanity, the flattery which once charmed her soul, now grates harshly upon her ear; the ball-room has lost its charms; and with wasted health and imbittered heart, she turns away with the conviction that earthly pleasures cannot satisfy the longings of the soul!" And so forth and so on. There was a buzz of gratification from time to time during the reading, accompanied by whispered ejaculations of "How sweet!" "How eloquent!" "So true!" etc., and after the thing had closed with a peculiarly afflicting sermon the applause was enthusiastic. Then arose a slim, melancholy girl, whose face had the "interesting" paleness that comes of pills and indigestion, and read a "poem." Two stanzas of it will do: "A MISSOURI MAIDEN'S FAREWELL TO ALABAMA "Alabama, good-bye! I love thee well! But yet for a while do I leave thee now! Sad, yes, sad thoughts of thee my heart doth swell, And burning recollections throng my brow! For I have wandered through thy flowery woods; Have roamed and read near Tallapoosa's stream; Have listened to Tallassee's warring floods, And wooed on Coosa's side Aurora's beam. "Yet shame I not to bear an o'er-full heart, Nor blush to turn behind my tearful eyes; 'Tis from no stranger land I now must part, 'Tis to no strangers left I yield these sighs. Welcome and home were mine within this State, Whose vales I leave--whose spires fade fast from me And cold must be mine eyes, and heart, and tete, When, dear Alabama! they turn cold on thee!" There were very few there who knew what "tete" meant, but the poem was very satisfactory, nevertheless. Next appeared a dark-complexioned, black-eyed, black-haired young lady, who paused an impressive moment, assumed a tragic expression, and began to read in a measured, solemn tone: "A VISION "Dark and tempestuous was night. Around the throne on high not a single star quivered; but the deep intonations of the heavy thunder constantly vibrated upon the ear; whilst the terrific lightning revelled in angry mood through the cloudy chambers of heaven, seeming to scorn the power exerted over its terror by the illustrious Franklin! Even the boisterous winds unanimously came forth from their mystic homes, and blustered about as if to enhance by their aid the wildness of the scene. "At such a time, so dark, so dreary, for human sympathy my very spirit sighed; but instead thereof, "'My dearest friend, my counsellor, my comforter and guide--My joy in grief, my second bliss in joy,' came to my side. She moved like one of those bright beings pictured in the sunny walks of fancy's Eden by the romantic and young, a queen of beauty unadorned save by her own transcendent loveliness. So soft was her step, it failed to make even a sound, and but for the magical thrill imparted by her genial touch, as other unobtrusive beauties, she would have glided away un-perceived--unsought. A strange sadness rested upon her features, like icy tears upon the robe of December, as she pointed to the contending elements without, and bade me contemplate the two beings presented." This nightmare occupied some ten pages of manuscript and wound up with a sermon so destructive of all hope to non-Presbyterians that it took the first prize. This composition was considered to be the very finest effort of the evening. The mayor of the village, in delivering the prize to the author of it, made a warm speech in which he said that it was by far the most "eloquent" thing he had ever listened to, and that Daniel Webster himself might well be proud of it. It may be remarked, in passing, that the number of compositions in which the word "beauteous" was over-fondled, and human experience referred to as "life's page," was up to the usual average. Now the master, mellow almost to the verge of geniality, put his chair aside, turned his back to the audience, and began to draw a map of America on the blackboard, to exercise the geography class upon. But he made a sad business of it with his unsteady hand, and a smothered titter rippled over the house. He knew what the matter was, and set himself to right it. He sponged out lines and remade them; but he only distorted them more than ever, and the tittering was more pronounced. He threw his entire attention upon his work, now, as if determined not to be put down by the mirth. He felt that all eyes were fastened upon him; he imagined he was succeeding, and yet the tittering continued; it even manifestly increased. And well it might. There was a garret above, pierced with a scuttle over his head; and down through this scuttle came a cat, suspended around the haunches by a string; she had a rag tied about her head and jaws to keep her from mewing; as she slowly descended she curved upward and clawed at the string, she swung downward and clawed at the intangible air. The tittering rose higher and higher--the cat was within six inches of the absorbed teacher's head--down, down, a little lower, and she grabbed his wig with her desperate claws, clung to it, and was snatched up into the garret in an instant with her trophy still in her possession! And how the light did blaze abroad from the master's bald pate--for the sign-painter's boy had GILDED it! That broke up the meeting. The boys were avenged. Vacation had come. NOTE:--The pretended "compositions" quoted in this chapter are taken without alteration from a volume entitled "Prose and Poetry, by a Western Lady"--but they are exactly and precisely after the schoolgirl pattern, and hence are much happier than any mere imitations could be. CHAPTER XXII TOM joined the new order of Cadets of Temperance, being attracted by the showy character of their "regalia." He promised to abstain from smoking, chewing, and profanity as long as he remained a member. Now he found out a new thing--namely, that to promise not to do a thing is the surest way in the world to make a body want to go and do that very thing. Tom soon found himself tormented with a desire to drink and swear; the desire grew to be so intense that nothing but the hope of a chance to display himself in his red sash kept him from withdrawing from the order. Fourth of July was coming; but he soon gave that up --gave it up before he had worn his shackles over forty-eight hours--and fixed his hopes upon old Judge Frazer, justice of the peace, who was apparently on his deathbed and would have a big public funeral, since he was so high an official. During three days Tom was deeply concerned about the Judge's condition and hungry for news of it. Sometimes his hopes ran high--so high that he would venture to get out his regalia and practise before the looking-glass. But the Judge had a most discouraging way of fluctuating. At last he was pronounced upon the mend--and then convalescent. Tom was disgusted; and felt a sense of injury, too. He handed in his resignation at once--and that night the Judge suffered a relapse and died. Tom resolved that he would never trust a man like that again. The funeral was a fine thing. The Cadets paraded in a style calculated to kill the late member with envy. Tom was a free boy again, however --there was something in that. He could drink and swear, now--but found to his surprise that he did not want to. The simple fact that he could, took the desire away, and the charm of it. Tom presently wondered to find that his coveted vacation was beginning to hang a little heavily on his hands. He attempted a diary--but nothing happened during three days, and so he abandoned it. The first of all the negro minstrel shows came to town, and made a sensation. Tom and Joe Harper got up a band of performers and were happy for two days. Even the Glorious Fourth was in some sense a failure, for it rained hard, there was no procession in consequence, and the greatest man in the world (as Tom supposed), Mr. Benton, an actual United States Senator, proved an overwhelming disappointment--for he was not twenty-five feet high, nor even anywhere in the neighborhood of it. A circus came. The boys played circus for three days afterward in tents made of rag carpeting--admission, three pins for boys, two for girls--and then circusing was abandoned. A phrenologist and a mesmerizer came--and went again and left the village duller and drearier than ever. There were some boys-and-girls' parties, but they were so few and so delightful that they only made the aching voids between ache the harder. Becky Thatcher was gone to her Constantinople home to stay with her parents during vacation--so there was no bright side to life anywhere. The dreadful secret of the murder was a chronic misery. It was a very cancer for permanency and pain. Then came the measles. During two long weeks Tom lay a prisoner, dead to the world and its happenings. He was very ill, he was interested in nothing. When he got upon his feet at last and moved feebly down-town, a melancholy change had come over everything and every creature. There had been a "revival," and everybody had "got religion," not only the adults, but even the boys and girls. Tom went about, hoping against hope for the sight of one blessed sinful face, but disappointment crossed him everywhere. He found Joe Harper studying a Testament, and turned sadly away from the depressing spectacle. He sought Ben Rogers, and found him visiting the poor with a basket of tracts. He hunted up Jim Hollis, who called his attention to the precious blessing of his late measles as a warning. Every boy he encountered added another ton to his depression; and when, in desperation, he flew for refuge at last to the bosom of Huckleberry Finn and was received with a Scriptural quotation, his heart broke and he crept home and to bed realizing that he alone of all the town was lost, forever and forever. And that night there came on a terrific storm, with driving rain, awful claps of thunder and blinding sheets of lightning. He covered his head with the bedclothes and waited in a horror of suspense for his doom; for he had not the shadow of a doubt that all this hubbub was about him. He believed he had taxed the forbearance of the powers above to the extremity of endurance and that this was the result. It might have seemed to him a waste of pomp and ammunition to kill a bug with a battery of artillery, but there seemed nothing incongruous about the getting up such an expensive thunderstorm as this to knock the turf from under an insect like himself. By and by the tempest spent itself and died without accomplishing its object. The boy's first impulse was to be grateful, and reform. His second was to wait--for there might not be any more storms. The next day the doctors were back; Tom had relapsed. The three weeks he spent on his back this time seemed an entire age. When he got abroad at last he was hardly grateful that he had been spared, remembering how lonely was his estate, how companionless and forlorn he was. He drifted listlessly down the street and found Jim Hollis acting as judge in a juvenile court that was trying a cat for murder, in the presence of her victim, a bird. He found Joe Harper and Huck Finn up an alley eating a stolen melon. Poor lads! they--like Tom--had suffered a relapse. CHAPTER XXIII AT last the sleepy atmosphere was stirred--and vigorously: the murder trial came on in the court. It became the absorbing topic of village talk immediately. Tom could not get away from it. Every reference to the murder sent a shudder to his heart, for his troubled conscience and fears almost persuaded him that these remarks were put forth in his hearing as "feelers"; he did not see how he could be suspected of knowing anything about the murder, but still he could not be comfortable in the midst of this gossip. It kept him in a cold shiver all the time. He took Huck to a lonely place to have a talk with him. It would be some relief to unseal his tongue for a little while; to divide his burden of distress with another sufferer. Moreover, he wanted to assure himself that Huck had remained discreet. "Huck, have you ever told anybody about--that?" "'Bout what?" "You know what." "Oh--'course I haven't." "Never a word?" "Never a solitary word, so help me. What makes you ask?" "Well, I was afeard." "Why, Tom Sawyer, we wouldn't be alive two days if that got found out. YOU know that." Tom felt more comfortable. After a pause: "Huck, they couldn't anybody get you to tell, could they?" "Get me to tell? Why, if I wanted that half-breed devil to drownd me they could get me to tell. They ain't no different way." "Well, that's all right, then. I reckon we're safe as long as we keep mum. But let's swear again, anyway. It's more surer." "I'm agreed." So they swore again with dread solemnities. "What is the talk around, Huck? I've heard a power of it." "Talk? Well, it's just Muff Potter, Muff Potter, Muff Potter all the time. It keeps me in a sweat, constant, so's I want to hide som'ers." "That's just the same way they go on round me. I reckon he's a goner. Don't you feel sorry for him, sometimes?" "Most always--most always. He ain't no account; but then he hain't ever done anything to hurt anybody. Just fishes a little, to get money to get drunk on--and loafs around considerable; but lord, we all do that--leastways most of us--preachers and such like. But he's kind of good--he give me half a fish, once, when there warn't enough for two; and lots of times he's kind of stood by me when I was out of luck." "Well, he's mended kites for me, Huck, and knitted hooks on to my line. I wish we could get him out of there." "My! we couldn't get him out, Tom. And besides, 'twouldn't do any good; they'd ketch him again." "Yes--so they would. But I hate to hear 'em abuse him so like the dickens when he never done--that." "I do too, Tom. Lord, I hear 'em say he's the bloodiest looking villain in this country, and they wonder he wasn't ever hung before." "Yes, they talk like that, all the time. I've heard 'em say that if he was to get free they'd lynch him." "And they'd do it, too." The boys had a long talk, but it brought them little comfort. As the twilight drew on, they found themselves hanging about the neighborhood of the little isolated jail, perhaps with an undefined hope that something would happen that might clear away their difficulties. But nothing happened; there seemed to be no angels or fairies interested in this luckless captive. The boys did as they had often done before--went to the cell grating and gave Potter some tobacco and matches. He was on the ground floor and there were no guards. His gratitude for their gifts had always smote their consciences before--it cut deeper than ever, this time. They felt cowardly and treacherous to the last degree when Potter said: "You've been mighty good to me, boys--better'n anybody else in this town. And I don't forget it, I don't. Often I says to myself, says I, 'I used to mend all the boys' kites and things, and show 'em where the good fishin' places was, and befriend 'em what I could, and now they've all forgot old Muff when he's in trouble; but Tom don't, and Huck don't--THEY don't forget him, says I, 'and I don't forget them.' Well, boys, I done an awful thing--drunk and crazy at the time--that's the only way I account for it--and now I got to swing for it, and it's right. Right, and BEST, too, I reckon--hope so, anyway. Well, we won't talk about that. I don't want to make YOU feel bad; you've befriended me. But what I want to say, is, don't YOU ever get drunk--then you won't ever get here. Stand a litter furder west--so--that's it; it's a prime comfort to see faces that's friendly when a body's in such a muck of trouble, and there don't none come here but yourn. Good friendly faces--good friendly faces. Git up on one another's backs and let me touch 'em. That's it. Shake hands--yourn'll come through the bars, but mine's too big. Little hands, and weak--but they've helped Muff Potter a power, and they'd help him more if they could." Tom went home miserable, and his dreams that night were full of horrors. The next day and the day after, he hung about the court-room, drawn by an almost irresistible impulse to go in, but forcing himself to stay out. Huck was having the same experience. They studiously avoided each other. Each wandered away, from time to time, but the same dismal fascination always brought them back presently. Tom kept his ears open when idlers sauntered out of the court-room, but invariably heard distressing news--the toils were closing more and more relentlessly around poor Potter. At the end of the second day the village talk was to the effect that Injun Joe's evidence stood firm and unshaken, and that there was not the slightest question as to what the jury's verdict would be. Tom was out late, that night, and came to bed through the window. He was in a tremendous state of excitement. It was hours before he got to sleep. All the village flocked to the court-house the next morning, for this was to be the great day. Both sexes were about equally represented in the packed audience. After a long wait the jury filed in and took their places; shortly afterward, Potter, pale and haggard, timid and hopeless, was brought in, with chains upon him, and seated where all the curious eyes could stare at him; no less conspicuous was Injun Joe, stolid as ever. There was another pause, and then the judge arrived and the sheriff proclaimed the opening of the court. The usual whisperings among the lawyers and gathering together of papers followed. These details and accompanying delays worked up an atmosphere of preparation that was as impressive as it was fascinating. Now a witness was called who testified that he found Muff Potter washing in the brook, at an early hour of the morning that the murder was discovered, and that he immediately sneaked away. After some further questioning, counsel for the prosecution said: "Take the witness." The prisoner raised his eyes for a moment, but dropped them again when his own counsel said: "I have no questions to ask him." The next witness proved the finding of the knife near the corpse. Counsel for the prosecution said: "Take the witness." "I have no questions to ask him," Potter's lawyer replied. A third witness swore he had often seen the knife in Potter's possession. "Take the witness." Counsel for Potter declined to question him. The faces of the audience began to betray annoyance. Did this attorney mean to throw away his client's life without an effort? Several witnesses deposed concerning Potter's guilty behavior when brought to the scene of the murder. They were allowed to leave the stand without being cross-questioned. Every detail of the damaging circumstances that occurred in the graveyard upon that morning which all present remembered so well was brought out by credible witnesses, but none of them were cross-examined by Potter's lawyer. The perplexity and dissatisfaction of the house expressed itself in murmurs and provoked a reproof from the bench. Counsel for the prosecution now said: "By the oaths of citizens whose simple word is above suspicion, we have fastened this awful crime, beyond all possibility of question, upon the unhappy prisoner at the bar. We rest our case here." A groan escaped from poor Potter, and he put his face in his hands and rocked his body softly to and fro, while a painful silence reigned in the court-room. Many men were moved, and many women's compassion testified itself in tears. Counsel for the defence rose and said: "Your honor, in our remarks at the opening of this trial, we foreshadowed our purpose to prove that our client did this fearful deed while under the influence of a blind and irresponsible delirium produced by drink. We have changed our mind. We shall not offer that plea." [Then to the clerk:] "Call Thomas Sawyer!" A puzzled amazement awoke in every face in the house, not even excepting Potter's. Every eye fastened itself with wondering interest upon Tom as he rose and took his place upon the stand. The boy looked wild enough, for he was badly scared. The oath was administered. "Thomas Sawyer, where were you on the seventeenth of June, about the hour of midnight?" Tom glanced at Injun Joe's iron face and his tongue failed him. The audience listened breathless, but the words refused to come. After a few moments, however, the boy got a little of his strength back, and managed to put enough of it into his voice to make part of the house hear: "In the graveyard!" "A little bit louder, please. Don't be afraid. You were--" "In the graveyard." A contemptuous smile flitted across Injun Joe's face. "Were you anywhere near Horse Williams' grave?" "Yes, sir." "Speak up--just a trifle louder. How near were you?" "Near as I am to you." "Were you hidden, or not?" "I was hid." "Where?" "Behind the elms that's on the edge of the grave." Injun Joe gave a barely perceptible start. "Any one with you?" "Yes, sir. I went there with--" "Wait--wait a moment. Never mind mentioning your companion's name. We will produce him at the proper time. Did you carry anything there with you." Tom hesitated and looked confused. "Speak out, my boy--don't be diffident. The truth is always respectable. What did you take there?" "Only a--a--dead cat." There was a ripple of mirth, which the court checked. "We will produce the skeleton of that cat. Now, my boy, tell us everything that occurred--tell it in your own way--don't skip anything, and don't be afraid." Tom began--hesitatingly at first, but as he warmed to his subject his words flowed more and more easily; in a little while every sound ceased but his own voice; every eye fixed itself upon him; with parted lips and bated breath the audience hung upon his words, taking no note of time, rapt in the ghastly fascinations of the tale. The strain upon pent emotion reached its climax when the boy said: "--and as the doctor fetched the board around and Muff Potter fell, Injun Joe jumped with the knife and--" Crash! Quick as lightning the half-breed sprang for a window, tore his way through all opposers, and was gone! CHAPTER XXIV TOM was a glittering hero once more--the pet of the old, the envy of the young. His name even went into immortal print, for the village paper magnified him. There were some that believed he would be President, yet, if he escaped hanging. As usual, the fickle, unreasoning world took Muff Potter to its bosom and fondled him as lavishly as it had abused him before. But that sort of conduct is to the world's credit; therefore it is not well to find fault with it. Tom's days were days of splendor and exultation to him, but his nights were seasons of horror. Injun Joe infested all his dreams, and always with doom in his eye. Hardly any temptation could persuade the boy to stir abroad after nightfall. Poor Huck was in the same state of wretchedness and terror, for Tom had told the whole story to the lawyer the night before the great day of the trial, and Huck was sore afraid that his share in the business might leak out, yet, notwithstanding Injun Joe's flight had saved him the suffering of testifying in court. The poor fellow had got the attorney to promise secrecy, but what of that? Since Tom's harassed conscience had managed to drive him to the lawyer's house by night and wring a dread tale from lips that had been sealed with the dismalest and most formidable of oaths, Huck's confidence in the human race was well-nigh obliterated. Daily Muff Potter's gratitude made Tom glad he had spoken; but nightly he wished he had sealed up his tongue. Half the time Tom was afraid Injun Joe would never be captured; the other half he was afraid he would be. He felt sure he never could draw a safe breath again until that man was dead and he had seen the corpse. Rewards had been offered, the country had been scoured, but no Injun Joe was found. One of those omniscient and awe-inspiring marvels, a detective, came up from St. Louis, moused around, shook his head, looked wise, and made that sort of astounding success which members of that craft usually achieve. That is to say, he "found a clew." But you can't hang a "clew" for murder, and so after that detective had got through and gone home, Tom felt just as insecure as he was before. The slow days drifted on, and each left behind it a slightly lightened weight of apprehension. CHAPTER XXV THERE comes a time in every rightly-constructed boy's life when he has a raging desire to go somewhere and dig for hidden treasure. This desire suddenly came upon Tom one day. He sallied out to find Joe Harper, but failed of success. Next he sought Ben Rogers; he had gone fishing. Presently he stumbled upon Huck Finn the Red-Handed. Huck would answer. Tom took him to a private place and opened the matter to him confidentially. Huck was willing. Huck was always willing to take a hand in any enterprise that offered entertainment and required no capital, for he had a troublesome superabundance of that sort of time which is not money. "Where'll we dig?" said Huck. "Oh, most anywhere." "Why, is it hid all around?" "No, indeed it ain't. It's hid in mighty particular places, Huck --sometimes on islands, sometimes in rotten chests under the end of a limb of an old dead tree, just where the shadow falls at midnight; but mostly under the floor in ha'nted houses." "Who hides it?" "Why, robbers, of course--who'd you reckon? Sunday-school sup'rintendents?" "I don't know. If 'twas mine I wouldn't hide it; I'd spend it and have a good time." "So would I. But robbers don't do that way. They always hide it and leave it there." "Don't they come after it any more?" "No, they think they will, but they generally forget the marks, or else they die. Anyway, it lays there a long time and gets rusty; and by and by somebody finds an old yellow paper that tells how to find the marks--a paper that's got to be ciphered over about a week because it's mostly signs and hy'roglyphics." "Hyro--which?" "Hy'roglyphics--pictures and things, you know, that don't seem to mean anything." "Have you got one of them papers, Tom?" "No." "Well then, how you going to find the marks?" "I don't want any marks. They always bury it under a ha'nted house or on an island, or under a dead tree that's got one limb sticking out. Well, we've tried Jackson's Island a little, and we can try it again some time; and there's the old ha'nted house up the Still-House branch, and there's lots of dead-limb trees--dead loads of 'em." "Is it under all of them?" "How you talk! No!" "Then how you going to know which one to go for?" "Go for all of 'em!" "Why, Tom, it'll take all summer." "Well, what of that? Suppose you find a brass pot with a hundred dollars in it, all rusty and gray, or rotten chest full of di'monds. How's that?" Huck's eyes glowed. "That's bully. Plenty bully enough for me. Just you gimme the hundred dollars and I don't want no di'monds." "All right. But I bet you I ain't going to throw off on di'monds. Some of 'em's worth twenty dollars apiece--there ain't any, hardly, but's worth six bits or a dollar." "No! Is that so?" "Cert'nly--anybody'll tell you so. Hain't you ever seen one, Huck?" "Not as I remember." "Oh, kings have slathers of them." "Well, I don' know no kings, Tom." "I reckon you don't. But if you was to go to Europe you'd see a raft of 'em hopping around." "Do they hop?" "Hop?--your granny! No!" "Well, what did you say they did, for?" "Shucks, I only meant you'd SEE 'em--not hopping, of course--what do they want to hop for?--but I mean you'd just see 'em--scattered around, you know, in a kind of a general way. Like that old humpbacked Richard." "Richard? What's his other name?" "He didn't have any other name. Kings don't have any but a given name." "No?" "But they don't." "Well, if they like it, Tom, all right; but I don't want to be a king and have only just a given name, like a nigger. But say--where you going to dig first?" "Well, I don't know. S'pose we tackle that old dead-limb tree on the hill t'other side of Still-House branch?" "I'm agreed." So they got a crippled pick and a shovel, and set out on their three-mile tramp. They arrived hot and panting, and threw themselves down in the shade of a neighboring elm to rest and have a smoke. "I like this," said Tom. "So do I." "Say, Huck, if we find a treasure here, what you going to do with your share?" "Well, I'll have pie and a glass of soda every day, and I'll go to every circus that comes along. I bet I'll have a gay time." "Well, ain't you going to save any of it?" "Save it? What for?" "Why, so as to have something to live on, by and by." "Oh, that ain't any use. Pap would come back to thish-yer town some day and get his claws on it if I didn't hurry up, and I tell you he'd clean it out pretty quick. What you going to do with yourn, Tom?" "I'm going to buy a new drum, and a sure-'nough sword, and a red necktie and a bull pup, and get married." "Married!" "That's it." "Tom, you--why, you ain't in your right mind." "Wait--you'll see." "Well, that's the foolishest thing you could do. Look at pap and my mother. Fight! Why, they used to fight all the time. I remember, mighty well." "That ain't anything. The girl I'm going to marry won't fight." "Tom, I reckon they're all alike. They'll all comb a body. Now you better think 'bout this awhile. I tell you you better. What's the name of the gal?" "It ain't a gal at all--it's a girl." "It's all the same, I reckon; some says gal, some says girl--both's right, like enough. Anyway, what's her name, Tom?" "I'll tell you some time--not now." "All right--that'll do. Only if you get married I'll be more lonesomer than ever." "No you won't. You'll come and live with me. Now stir out of this and we'll go to digging." They worked and sweated for half an hour. No result. They toiled another half-hour. Still no result. Huck said: "Do they always bury it as deep as this?" "Sometimes--not always. Not generally. I reckon we haven't got the right place." So they chose a new spot and began again. The labor dragged a little, but still they made progress. They pegged away in silence for some time. Finally Huck leaned on his shovel, swabbed the beaded drops from his brow with his sleeve, and said: "Where you going to dig next, after we get this one?" "I reckon maybe we'll tackle the old tree that's over yonder on Cardiff Hill back of the widow's." "I reckon that'll be a good one. But won't the widow take it away from us, Tom? It's on her land." "SHE take it away! Maybe she'd like to try it once. Whoever finds one of these hid treasures, it belongs to him. It don't make any difference whose land it's on." That was satisfactory. The work went on. By and by Huck said: "Blame it, we must be in the wrong place again. What do you think?" "It is mighty curious, Huck. I don't understand it. Sometimes witches interfere. I reckon maybe that's what's the trouble now." "Shucks! Witches ain't got no power in the daytime." "Well, that's so. I didn't think of that. Oh, I know what the matter is! What a blamed lot of fools we are! You got to find out where the shadow of the limb falls at midnight, and that's where you dig!" "Then consound it, we've fooled away all this work for nothing. Now hang it all, we got to come back in the night. It's an awful long way. Can you get out?" "I bet I will. We've got to do it to-night, too, because if somebody sees these holes they'll know in a minute what's here and they'll go for it." "Well, I'll come around and maow to-night." "All right. Let's hide the tools in the bushes." The boys were there that night, about the appointed time. They sat in the shadow waiting. It was a lonely place, and an hour made solemn by old traditions. Spirits whispered in the rustling leaves, ghosts lurked in the murky nooks, the deep baying of a hound floated up out of the distance, an owl answered with his sepulchral note. The boys were subdued by these solemnities, and talked little. By and by they judged that twelve had come; they marked where the shadow fell, and began to dig. Their hopes commenced to rise. Their interest grew stronger, and their industry kept pace with it. The hole deepened and still deepened, but every time their hearts jumped to hear the pick strike upon something, they only suffered a new disappointment. It was only a stone or a chunk. At last Tom said: "It ain't any use, Huck, we're wrong again." "Well, but we CAN'T be wrong. We spotted the shadder to a dot." "I know it, but then there's another thing." "What's that?". "Why, we only guessed at the time. Like enough it was too late or too early." Huck dropped his shovel. "That's it," said he. "That's the very trouble. We got to give this one up. We can't ever tell the right time, and besides this kind of thing's too awful, here this time of night with witches and ghosts a-fluttering around so. I feel as if something's behind me all the time; and I'm afeard to turn around, becuz maybe there's others in front a-waiting for a chance. I been creeping all over, ever since I got here." "Well, I've been pretty much so, too, Huck. They most always put in a dead man when they bury a treasure under a tree, to look out for it." "Lordy!" "Yes, they do. I've always heard that." "Tom, I don't like to fool around much where there's dead people. A body's bound to get into trouble with 'em, sure." "I don't like to stir 'em up, either. S'pose this one here was to stick his skull out and say something!" "Don't Tom! It's awful." "Well, it just is. Huck, I don't feel comfortable a bit." "Say, Tom, let's give this place up, and try somewheres else." "All right, I reckon we better." "What'll it be?" Tom considered awhile; and then said: "The ha'nted house. That's it!" "Blame it, I don't like ha'nted houses, Tom. Why, they're a dern sight worse'n dead people. Dead people might talk, maybe, but they don't come sliding around in a shroud, when you ain't noticing, and peep over your shoulder all of a sudden and grit their teeth, the way a ghost does. I couldn't stand such a thing as that, Tom--nobody could." "Yes, but, Huck, ghosts don't travel around only at night. They won't hender us from digging there in the daytime." "Well, that's so. But you know mighty well people don't go about that ha'nted house in the day nor the night." "Well, that's mostly because they don't like to go where a man's been murdered, anyway--but nothing's ever been seen around that house except in the night--just some blue lights slipping by the windows--no regular ghosts." "Well, where you see one of them blue lights flickering around, Tom, you can bet there's a ghost mighty close behind it. It stands to reason. Becuz you know that they don't anybody but ghosts use 'em." "Yes, that's so. But anyway they don't come around in the daytime, so what's the use of our being afeard?" "Well, all right. We'll tackle the ha'nted house if you say so--but I reckon it's taking chances." They had started down the hill by this time. There in the middle of the moonlit valley below them stood the "ha'nted" house, utterly isolated, its fences gone long ago, rank weeds smothering the very doorsteps, the chimney crumbled to ruin, the window-sashes vacant, a corner of the roof caved in. The boys gazed awhile, half expecting to see a blue light flit past a window; then talking in a low tone, as befitted the time and the circumstances, they struck far off to the right, to give the haunted house a wide berth, and took their way homeward through the woods that adorned the rearward side of Cardiff Hill. CHAPTER XXVI ABOUT noon the next day the boys arrived at the dead tree; they had come for their tools. Tom was impatient to go to the haunted house; Huck was measurably so, also--but suddenly said: "Lookyhere, Tom, do you know what day it is?" Tom mentally ran over the days of the week, and then quickly lifted his eyes with a startled look in them-- "My! I never once thought of it, Huck!" "Well, I didn't neither, but all at once it popped onto me that it was Friday." "Blame it, a body can't be too careful, Huck. We might 'a' got into an awful scrape, tackling such a thing on a Friday." "MIGHT! Better say we WOULD! There's some lucky days, maybe, but Friday ain't." "Any fool knows that. I don't reckon YOU was the first that found it out, Huck." "Well, I never said I was, did I? And Friday ain't all, neither. I had a rotten bad dream last night--dreampt about rats." "No! Sure sign of trouble. Did they fight?" "No." "Well, that's good, Huck. When they don't fight it's only a sign that there's trouble around, you know. All we got to do is to look mighty sharp and keep out of it. We'll drop this thing for to-day, and play. Do you know Robin Hood, Huck?" "No. Who's Robin Hood?" "Why, he was one of the greatest men that was ever in England--and the best. He was a robber." "Cracky, I wisht I was. Who did he rob?" "Only sheriffs and bishops and rich people and kings, and such like. But he never bothered the poor. He loved 'em. He always divided up with 'em perfectly square." "Well, he must 'a' been a brick." "I bet you he was, Huck. Oh, he was the noblest man that ever was. They ain't any such men now, I can tell you. He could lick any man in England, with one hand tied behind him; and he could take his yew bow and plug a ten-cent piece every time, a mile and a half." "What's a YEW bow?" "I don't know. It's some kind of a bow, of course. And if he hit that dime only on the edge he would set down and cry--and curse. But we'll play Robin Hood--it's nobby fun. I'll learn you." "I'm agreed." So they played Robin Hood all the afternoon, now and then casting a yearning eye down upon the haunted house and passing a remark about the morrow's prospects and possibilities there. As the sun began to sink into the west they took their way homeward athwart the long shadows of the trees and soon were buried from sight in the forests of Cardiff Hill. On Saturday, shortly after noon, the boys were at the dead tree again. They had a smoke and a chat in the shade, and then dug a little in their last hole, not with great hope, but merely because Tom said there were so many cases where people had given up a treasure after getting down within six inches of it, and then somebody else had come along and turned it up with a single thrust of a shovel. The thing failed this time, however, so the boys shouldered their tools and went away feeling that they had not trifled with fortune, but had fulfilled all the requirements that belong to the business of treasure-hunting. When they reached the haunted house there was something so weird and grisly about the dead silence that reigned there under the baking sun, and something so depressing about the loneliness and desolation of the place, that they were afraid, for a moment, to venture in. Then they crept to the door and took a trembling peep. They saw a weed-grown, floorless room, unplastered, an ancient fireplace, vacant windows, a ruinous staircase; and here, there, and everywhere hung ragged and abandoned cobwebs. They presently entered, softly, with quickened pulses, talking in whispers, ears alert to catch the slightest sound, and muscles tense and ready for instant retreat. In a little while familiarity modified their fears and they gave the place a critical and interested examination, rather admiring their own boldness, and wondering at it, too. Next they wanted to look up-stairs. This was something like cutting off retreat, but they got to daring each other, and of course there could be but one result--they threw their tools into a corner and made the ascent. Up there were the same signs of decay. In one corner they found a closet that promised mystery, but the promise was a fraud--there was nothing in it. Their courage was up now and well in hand. They were about to go down and begin work when-- "Sh!" said Tom. "What is it?" whispered Huck, blanching with fright. "Sh!... There!... Hear it?" "Yes!... Oh, my! Let's run!" "Keep still! Don't you budge! They're coming right toward the door." The boys stretched themselves upon the floor with their eyes to knot-holes in the planking, and lay waiting, in a misery of fear. "They've stopped.... No--coming.... Here they are. Don't whisper another word, Huck. My goodness, I wish I was out of this!" Two men entered. Each boy said to himself: "There's the old deaf and dumb Spaniard that's been about town once or twice lately--never saw t'other man before." "T'other" was a ragged, unkempt creature, with nothing very pleasant in his face. The Spaniard was wrapped in a serape; he had bushy white whiskers; long white hair flowed from under his sombrero, and he wore green goggles. When they came in, "t'other" was talking in a low voice; they sat down on the ground, facing the door, with their backs to the wall, and the speaker continued his remarks. His manner became less guarded and his words more distinct as he proceeded: "No," said he, "I've thought it all over, and I don't like it. It's dangerous." "Dangerous!" grunted the "deaf and dumb" Spaniard--to the vast surprise of the boys. "Milksop!" This voice made the boys gasp and quake. It was Injun Joe's! There was silence for some time. Then Joe said: "What's any more dangerous than that job up yonder--but nothing's come of it." "That's different. Away up the river so, and not another house about. 'Twon't ever be known that we tried, anyway, long as we didn't succeed." "Well, what's more dangerous than coming here in the daytime!--anybody would suspicion us that saw us." "I know that. But there warn't any other place as handy after that fool of a job. I want to quit this shanty. I wanted to yesterday, only it warn't any use trying to stir out of here, with those infernal boys playing over there on the hill right in full view." "Those infernal boys" quaked again under the inspiration of this remark, and thought how lucky it was that they had remembered it was Friday and concluded to wait a day. They wished in their hearts they had waited a year. The two men got out some food and made a luncheon. After a long and thoughtful silence, Injun Joe said: "Look here, lad--you go back up the river where you belong. Wait there till you hear from me. I'll take the chances on dropping into this town just once more, for a look. We'll do that 'dangerous' job after I've spied around a little and think things look well for it. Then for Texas! We'll leg it together!" This was satisfactory. Both men presently fell to yawning, and Injun Joe said: "I'm dead for sleep! It's your turn to watch." He curled down in the weeds and soon began to snore. His comrade stirred him once or twice and he became quiet. Presently the watcher began to nod; his head drooped lower and lower, both men began to snore now. The boys drew a long, grateful breath. Tom whispered: "Now's our chance--come!" Huck said: "I can't--I'd die if they was to wake." Tom urged--Huck held back. At last Tom rose slowly and softly, and started alone. But the first step he made wrung such a hideous creak from the crazy floor that he sank down almost dead with fright. He never made a second attempt. The boys lay there counting the dragging moments till it seemed to them that time must be done and eternity growing gray; and then they were grateful to note that at last the sun was setting. Now one snore ceased. Injun Joe sat up, stared around--smiled grimly upon his comrade, whose head was drooping upon his knees--stirred him up with his foot and said: "Here! YOU'RE a watchman, ain't you! All right, though--nothing's happened." "My! have I been asleep?" "Oh, partly, partly. Nearly time for us to be moving, pard. What'll we do with what little swag we've got left?" "I don't know--leave it here as we've always done, I reckon. No use to take it away till we start south. Six hundred and fifty in silver's something to carry." "Well--all right--it won't matter to come here once more." "No--but I'd say come in the night as we used to do--it's better." "Yes: but look here; it may be a good while before I get the right chance at that job; accidents might happen; 'tain't in such a very good place; we'll just regularly bury it--and bury it deep." "Good idea," said the comrade, who walked across the room, knelt down, raised one of the rearward hearth-stones and took out a bag that jingled pleasantly. He subtracted from it twenty or thirty dollars for himself and as much for Injun Joe, and passed the bag to the latter, who was on his knees in the corner, now, digging with his bowie-knife. The boys forgot all their fears, all their miseries in an instant. With gloating eyes they watched every movement. Luck!--the splendor of it was beyond all imagination! Six hundred dollars was money enough to make half a dozen boys rich! Here was treasure-hunting under the happiest auspices--there would not be any bothersome uncertainty as to where to dig. They nudged each other every moment--eloquent nudges and easily understood, for they simply meant--"Oh, but ain't you glad NOW we're here!" Joe's knife struck upon something. "Hello!" said he. "What is it?" said his comrade. "Half-rotten plank--no, it's a box, I believe. Here--bear a hand and we'll see what it's here for. Never mind, I've broke a hole." He reached his hand in and drew it out-- "Man, it's money!" The two men examined the handful of coins. They were gold. The boys above were as excited as themselves, and as delighted. Joe's comrade said: "We'll make quick work of this. There's an old rusty pick over amongst the weeds in the corner the other side of the fireplace--I saw it a minute ago." He ran and brought the boys' pick and shovel. Injun Joe took the pick, looked it over critically, shook his head, muttered something to himself, and then began to use it. The box was soon unearthed. It was not very large; it was iron bound and had been very strong before the slow years had injured it. The men contemplated the treasure awhile in blissful silence. "Pard, there's thousands of dollars here," said Injun Joe. "'Twas always said that Murrel's gang used to be around here one summer," the stranger observed. "I know it," said Injun Joe; "and this looks like it, I should say." "Now you won't need to do that job." The half-breed frowned. Said he: "You don't know me. Least you don't know all about that thing. 'Tain't robbery altogether--it's REVENGE!" and a wicked light flamed in his eyes. "I'll need your help in it. When it's finished--then Texas. Go home to your Nance and your kids, and stand by till you hear from me." "Well--if you say so; what'll we do with this--bury it again?" "Yes. [Ravishing delight overhead.] NO! by the great Sachem, no! [Profound distress overhead.] I'd nearly forgot. That pick had fresh earth on it! [The boys were sick with terror in a moment.] What business has a pick and a shovel here? What business with fresh earth on them? Who brought them here--and where are they gone? Have you heard anybody?--seen anybody? What! bury it again and leave them to come and see the ground disturbed? Not exactly--not exactly. We'll take it to my den." "Why, of course! Might have thought of that before. You mean Number One?" "No--Number Two--under the cross. The other place is bad--too common." "All right. It's nearly dark enough to start." Injun Joe got up and went about from window to window cautiously peeping out. Presently he said: "Who could have brought those tools here? Do you reckon they can be up-stairs?" The boys' breath forsook them. Injun Joe put his hand on his knife, halted a moment, undecided, and then turned toward the stairway. The boys thought of the closet, but their strength was gone. The steps came creaking up the stairs--the intolerable distress of the situation woke the stricken resolution of the lads--they were about to spring for the closet, when there was a crash of rotten timbers and Injun Joe landed on the ground amid the debris of the ruined stairway. He gathered himself up cursing, and his comrade said: "Now what's the use of all that? If it's anybody, and they're up there, let them STAY there--who cares? If they want to jump down, now, and get into trouble, who objects? It will be dark in fifteen minutes --and then let them follow us if they want to. I'm willing. In my opinion, whoever hove those things in here caught a sight of us and took us for ghosts or devils or something. I'll bet they're running yet." Joe grumbled awhile; then he agreed with his friend that what daylight was left ought to be economized in getting things ready for leaving. Shortly afterward they slipped out of the house in the deepening twilight, and moved toward the river with their precious box. Tom and Huck rose up, weak but vastly relieved, and stared after them through the chinks between the logs of the house. Follow? Not they. They were content to reach ground again without broken necks, and take the townward track over the hill. They did not talk much. They were too much absorbed in hating themselves--hating the ill luck that made them take the spade and the pick there. But for that, Injun Joe never would have suspected. He would have hidden the silver with the gold to wait there till his "revenge" was satisfied, and then he would have had the misfortune to find that money turn up missing. Bitter, bitter luck that the tools were ever brought there! They resolved to keep a lookout for that Spaniard when he should come to town spying out for chances to do his revengeful job, and follow him to "Number Two," wherever that might be. Then a ghastly thought occurred to Tom. "Revenge? What if he means US, Huck!" "Oh, don't!" said Huck, nearly fainting. They talked it all over, and as they entered town they agreed to believe that he might possibly mean somebody else--at least that he might at least mean nobody but Tom, since only Tom had testified. Very, very small comfort it was to Tom to be alone in danger! Company would be a palpable improvement, he thought. CHAPTER XXVII THE adventure of the day mightily tormented Tom's dreams that night. Four times he had his hands on that rich treasure and four times it wasted to nothingness in his fingers as sleep forsook him and wakefulness brought back the hard reality of his misfortune. As he lay in the early morning recalling the incidents of his great adventure, he noticed that they seemed curiously subdued and far away--somewhat as if they had happened in another world, or in a time long gone by. Then it occurred to him that the great adventure itself must be a dream! There was one very strong argument in favor of this idea--namely, that the quantity of coin he had seen was too vast to be real. He had never seen as much as fifty dollars in one mass before, and he was like all boys of his age and station in life, in that he imagined that all references to "hundreds" and "thousands" were mere fanciful forms of speech, and that no such sums really existed in the world. He never had supposed for a moment that so large a sum as a hundred dollars was to be found in actual money in any one's possession. If his notions of hidden treasure had been analyzed, they would have been found to consist of a handful of real dimes and a bushel of vague, splendid, ungraspable dollars. But the incidents of his adventure grew sensibly sharper and clearer under the attrition of thinking them over, and so he presently found himself leaning to the impression that the thing might not have been a dream, after all. This uncertainty must be swept away. He would snatch a hurried breakfast and go and find Huck. Huck was sitting on the gunwale of a flatboat, listlessly dangling his feet in the water and looking very melancholy. Tom concluded to let Huck lead up to the subject. If he did not do it, then the adventure would be proved to have been only a dream. "Hello, Huck!" "Hello, yourself." Silence, for a minute. "Tom, if we'd 'a' left the blame tools at the dead tree, we'd 'a' got the money. Oh, ain't it awful!" "'Tain't a dream, then, 'tain't a dream! Somehow I most wish it was. Dog'd if I don't, Huck." "What ain't a dream?" "Oh, that thing yesterday. I been half thinking it was." "Dream! If them stairs hadn't broke down you'd 'a' seen how much dream it was! I've had dreams enough all night--with that patch-eyed Spanish devil going for me all through 'em--rot him!" "No, not rot him. FIND him! Track the money!" "Tom, we'll never find him. A feller don't have only one chance for such a pile--and that one's lost. I'd feel mighty shaky if I was to see him, anyway." "Well, so'd I; but I'd like to see him, anyway--and track him out--to his Number Two." "Number Two--yes, that's it. I been thinking 'bout that. But I can't make nothing out of it. What do you reckon it is?" "I dono. It's too deep. Say, Huck--maybe it's the number of a house!" "Goody!... No, Tom, that ain't it. If it is, it ain't in this one-horse town. They ain't no numbers here." "Well, that's so. Lemme think a minute. Here--it's the number of a room--in a tavern, you know!" "Oh, that's the trick! They ain't only two taverns. We can find out quick." "You stay here, Huck, till I come." Tom was off at once. He did not care to have Huck's company in public places. He was gone half an hour. He found that in the best tavern, No. 2 had long been occupied by a young lawyer, and was still so occupied. In the less ostentatious house, No. 2 was a mystery. The tavern-keeper's young son said it was kept locked all the time, and he never saw anybody go into it or come out of it except at night; he did not know any particular reason for this state of things; had had some little curiosity, but it was rather feeble; had made the most of the mystery by entertaining himself with the idea that that room was "ha'nted"; had noticed that there was a light in there the night before. "That's what I've found out, Huck. I reckon that's the very No. 2 we're after." "I reckon it is, Tom. Now what you going to do?" "Lemme think." Tom thought a long time. Then he said: "I'll tell you. The back door of that No. 2 is the door that comes out into that little close alley between the tavern and the old rattle trap of a brick store. Now you get hold of all the door-keys you can find, and I'll nip all of auntie's, and the first dark night we'll go there and try 'em. And mind you, keep a lookout for Injun Joe, because he said he was going to drop into town and spy around once more for a chance to get his revenge. If you see him, you just follow him; and if he don't go to that No. 2, that ain't the place." "Lordy, I don't want to foller him by myself!" "Why, it'll be night, sure. He mightn't ever see you--and if he did, maybe he'd never think anything." "Well, if it's pretty dark I reckon I'll track him. I dono--I dono. I'll try." "You bet I'll follow him, if it's dark, Huck. Why, he might 'a' found out he couldn't get his revenge, and be going right after that money." "It's so, Tom, it's so. I'll foller him; I will, by jingoes!" "Now you're TALKING! Don't you ever weaken, Huck, and I won't." CHAPTER XXVIII THAT night Tom and Huck were ready for their adventure. They hung about the neighborhood of the tavern until after nine, one watching the alley at a distance and the other the tavern door. Nobody entered the alley or left it; nobody resembling the Spaniard entered or left the tavern door. The night promised to be a fair one; so Tom went home with the understanding that if a considerable degree of darkness came on, Huck was to come and "maow," whereupon he would slip out and try the keys. But the night remained clear, and Huck closed his watch and retired to bed in an empty sugar hogshead about twelve. Tuesday the boys had the same ill luck. Also Wednesday. But Thursday night promised better. Tom slipped out in good season with his aunt's old tin lantern, and a large towel to blindfold it with. He hid the lantern in Huck's sugar hogshead and the watch began. An hour before midnight the tavern closed up and its lights (the only ones thereabouts) were put out. No Spaniard had been seen. Nobody had entered or left the alley. Everything was auspicious. The blackness of darkness reigned, the perfect stillness was interrupted only by occasional mutterings of distant thunder. Tom got his lantern, lit it in the hogshead, wrapped it closely in the towel, and the two adventurers crept in the gloom toward the tavern. Huck stood sentry and Tom felt his way into the alley. Then there was a season of waiting anxiety that weighed upon Huck's spirits like a mountain. He began to wish he could see a flash from the lantern--it would frighten him, but it would at least tell him that Tom was alive yet. It seemed hours since Tom had disappeared. Surely he must have fainted; maybe he was dead; maybe his heart had burst under terror and excitement. In his uneasiness Huck found himself drawing closer and closer to the alley; fearing all sorts of dreadful things, and momentarily expecting some catastrophe to happen that would take away his breath. There was not much to take away, for he seemed only able to inhale it by thimblefuls, and his heart would soon wear itself out, the way it was beating. Suddenly there was a flash of light and Tom came tearing by him: "Run!" said he; "run, for your life!" He needn't have repeated it; once was enough; Huck was making thirty or forty miles an hour before the repetition was uttered. The boys never stopped till they reached the shed of a deserted slaughter-house at the lower end of the village. Just as they got within its shelter the storm burst and the rain poured down. As soon as Tom got his breath he said: "Huck, it was awful! I tried two of the keys, just as soft as I could; but they seemed to make such a power of racket that I couldn't hardly get my breath I was so scared. They wouldn't turn in the lock, either. Well, without noticing what I was doing, I took hold of the knob, and open comes the door! It warn't locked! I hopped in, and shook off the towel, and, GREAT CAESAR'S GHOST!" "What!--what'd you see, Tom?" "Huck, I most stepped onto Injun Joe's hand!" "No!" "Yes! He was lying there, sound asleep on the floor, with his old patch on his eye and his arms spread out." "Lordy, what did you do? Did he wake up?" "No, never budged. Drunk, I reckon. I just grabbed that towel and started!" "I'd never 'a' thought of the towel, I bet!" "Well, I would. My aunt would make me mighty sick if I lost it." "Say, Tom, did you see that box?" "Huck, I didn't wait to look around. I didn't see the box, I didn't see the cross. I didn't see anything but a bottle and a tin cup on the floor by Injun Joe; yes, I saw two barrels and lots more bottles in the room. Don't you see, now, what's the matter with that ha'nted room?" "How?" "Why, it's ha'nted with whiskey! Maybe ALL the Temperance Taverns have got a ha'nted room, hey, Huck?" "Well, I reckon maybe that's so. Who'd 'a' thought such a thing? But say, Tom, now's a mighty good time to get that box, if Injun Joe's drunk." "It is, that! You try it!" Huck shuddered. "Well, no--I reckon not." "And I reckon not, Huck. Only one bottle alongside of Injun Joe ain't enough. If there'd been three, he'd be drunk enough and I'd do it." There was a long pause for reflection, and then Tom said: "Lookyhere, Huck, less not try that thing any more till we know Injun Joe's not in there. It's too scary. Now, if we watch every night, we'll be dead sure to see him go out, some time or other, and then we'll snatch that box quicker'n lightning." "Well, I'm agreed. I'll watch the whole night long, and I'll do it every night, too, if you'll do the other part of the job." "All right, I will. All you got to do is to trot up Hooper Street a block and maow--and if I'm asleep, you throw some gravel at the window and that'll fetch me." "Agreed, and good as wheat!" "Now, Huck, the storm's over, and I'll go home. It'll begin to be daylight in a couple of hours. You go back and watch that long, will you?" "I said I would, Tom, and I will. I'll ha'nt that tavern every night for a year! I'll sleep all day and I'll stand watch all night." "That's all right. Now, where you going to sleep?" "In Ben Rogers' hayloft. He lets me, and so does his pap's nigger man, Uncle Jake. I tote water for Uncle Jake whenever he wants me to, and any time I ask him he gives me a little something to eat if he can spare it. That's a mighty good nigger, Tom. He likes me, becuz I don't ever act as if I was above him. Sometime I've set right down and eat WITH him. But you needn't tell that. A body's got to do things when he's awful hungry he wouldn't want to do as a steady thing." "Well, if I don't want you in the daytime, I'll let you sleep. I won't come bothering around. Any time you see something's up, in the night, just skip right around and maow." CHAPTER XXIX THE first thing Tom heard on Friday morning was a glad piece of news --Judge Thatcher's family had come back to town the night before. Both Injun Joe and the treasure sunk into secondary importance for a moment, and Becky took the chief place in the boy's interest. He saw her and they had an exhausting good time playing "hi-spy" and "gully-keeper" with a crowd of their school-mates. The day was completed and crowned in a peculiarly satisfactory way: Becky teased her mother to appoint the next day for the long-promised and long-delayed picnic, and she consented. The child's delight was boundless; and Tom's not more moderate. The invitations were sent out before sunset, and straightway the young folks of the village were thrown into a fever of preparation and pleasurable anticipation. Tom's excitement enabled him to keep awake until a pretty late hour, and he had good hopes of hearing Huck's "maow," and of having his treasure to astonish Becky and the picnickers with, next day; but he was disappointed. No signal came that night. Morning came, eventually, and by ten or eleven o'clock a giddy and rollicking company were gathered at Judge Thatcher's, and everything was ready for a start. It was not the custom for elderly people to mar the picnics with their presence. The children were considered safe enough under the wings of a few young ladies of eighteen and a few young gentlemen of twenty-three or thereabouts. The old steam ferryboat was chartered for the occasion; presently the gay throng filed up the main street laden with provision-baskets. Sid was sick and had to miss the fun; Mary remained at home to entertain him. The last thing Mrs. Thatcher said to Becky, was: "You'll not get back till late. Perhaps you'd better stay all night with some of the girls that live near the ferry-landing, child." "Then I'll stay with Susy Harper, mamma." "Very well. And mind and behave yourself and don't be any trouble." Presently, as they tripped along, Tom said to Becky: "Say--I'll tell you what we'll do. 'Stead of going to Joe Harper's we'll climb right up the hill and stop at the Widow Douglas'. She'll have ice-cream! She has it most every day--dead loads of it. And she'll be awful glad to have us." "Oh, that will be fun!" Then Becky reflected a moment and said: "But what will mamma say?" "How'll she ever know?" The girl turned the idea over in her mind, and said reluctantly: "I reckon it's wrong--but--" "But shucks! Your mother won't know, and so what's the harm? All she wants is that you'll be safe; and I bet you she'd 'a' said go there if she'd 'a' thought of it. I know she would!" The Widow Douglas' splendid hospitality was a tempting bait. It and Tom's persuasions presently carried the day. So it was decided to say nothing anybody about the night's programme. Presently it occurred to Tom that maybe Huck might come this very night and give the signal. The thought took a deal of the spirit out of his anticipations. Still he could not bear to give up the fun at Widow Douglas'. And why should he give it up, he reasoned--the signal did not come the night before, so why should it be any more likely to come to-night? The sure fun of the evening outweighed the uncertain treasure; and, boy-like, he determined to yield to the stronger inclination and not allow himself to think of the box of money another time that day. Three miles below town the ferryboat stopped at the mouth of a woody hollow and tied up. The crowd swarmed ashore and soon the forest distances and craggy heights echoed far and near with shoutings and laughter. All the different ways of getting hot and tired were gone through with, and by-and-by the rovers straggled back to camp fortified with responsible appetites, and then the destruction of the good things began. After the feast there was a refreshing season of rest and chat in the shade of spreading oaks. By-and-by somebody shouted: "Who's ready for the cave?" Everybody was. Bundles of candles were procured, and straightway there was a general scamper up the hill. The mouth of the cave was up the hillside--an opening shaped like a letter A. Its massive oaken door stood unbarred. Within was a small chamber, chilly as an ice-house, and walled by Nature with solid limestone that was dewy with a cold sweat. It was romantic and mysterious to stand here in the deep gloom and look out upon the green valley shining in the sun. But the impressiveness of the situation quickly wore off, and the romping began again. The moment a candle was lighted there was a general rush upon the owner of it; a struggle and a gallant defence followed, but the candle was soon knocked down or blown out, and then there was a glad clamor of laughter and a new chase. But all things have an end. By-and-by the procession went filing down the steep descent of the main avenue, the flickering rank of lights dimly revealing the lofty walls of rock almost to their point of junction sixty feet overhead. This main avenue was not more than eight or ten feet wide. Every few steps other lofty and still narrower crevices branched from it on either hand--for McDougal's cave was but a vast labyrinth of crooked aisles that ran into each other and out again and led nowhere. It was said that one might wander days and nights together through its intricate tangle of rifts and chasms, and never find the end of the cave; and that he might go down, and down, and still down, into the earth, and it was just the same--labyrinth under labyrinth, and no end to any of them. No man "knew" the cave. That was an impossible thing. Most of the young men knew a portion of it, and it was not customary to venture much beyond this known portion. Tom Sawyer knew as much of the cave as any one. The procession moved along the main avenue some three-quarters of a mile, and then groups and couples began to slip aside into branch avenues, fly along the dismal corridors, and take each other by surprise at points where the corridors joined again. Parties were able to elude each other for the space of half an hour without going beyond the "known" ground. By-and-by, one group after another came straggling back to the mouth of the cave, panting, hilarious, smeared from head to foot with tallow drippings, daubed with clay, and entirely delighted with the success of the day. Then they were astonished to find that they had been taking no note of time and that night was about at hand. The clanging bell had been calling for half an hour. However, this sort of close to the day's adventures was romantic and therefore satisfactory. When the ferryboat with her wild freight pushed into the stream, nobody cared sixpence for the wasted time but the captain of the craft. Huck was already upon his watch when the ferryboat's lights went glinting past the wharf. He heard no noise on board, for the young people were as subdued and still as people usually are who are nearly tired to death. He wondered what boat it was, and why she did not stop at the wharf--and then he dropped her out of his mind and put his attention upon his business. The night was growing cloudy and dark. Ten o'clock came, and the noise of vehicles ceased, scattered lights began to wink out, all straggling foot-passengers disappeared, the village betook itself to its slumbers and left the small watcher alone with the silence and the ghosts. Eleven o'clock came, and the tavern lights were put out; darkness everywhere, now. Huck waited what seemed a weary long time, but nothing happened. His faith was weakening. Was there any use? Was there really any use? Why not give it up and turn in? A noise fell upon his ear. He was all attention in an instant. The alley door closed softly. He sprang to the corner of the brick store. The next moment two men brushed by him, and one seemed to have something under his arm. It must be that box! So they were going to remove the treasure. Why call Tom now? It would be absurd--the men would get away with the box and never be found again. No, he would stick to their wake and follow them; he would trust to the darkness for security from discovery. So communing with himself, Huck stepped out and glided along behind the men, cat-like, with bare feet, allowing them to keep just far enough ahead not to be invisible. They moved up the river street three blocks, then turned to the left up a cross-street. They went straight ahead, then, until they came to the path that led up Cardiff Hill; this they took. They passed by the old Welshman's house, half-way up the hill, without hesitating, and still climbed upward. Good, thought Huck, they will bury it in the old quarry. But they never stopped at the quarry. They passed on, up the summit. They plunged into the narrow path between the tall sumach bushes, and were at once hidden in the gloom. Huck closed up and shortened his distance, now, for they would never be able to see him. He trotted along awhile; then slackened his pace, fearing he was gaining too fast; moved on a piece, then stopped altogether; listened; no sound; none, save that he seemed to hear the beating of his own heart. The hooting of an owl came over the hill--ominous sound! But no footsteps. Heavens, was everything lost! He was about to spring with winged feet, when a man cleared his throat not four feet from him! Huck's heart shot into his throat, but he swallowed it again; and then he stood there shaking as if a dozen agues had taken charge of him at once, and so weak that he thought he must surely fall to the ground. He knew where he was. He knew he was within five steps of the stile leading into Widow Douglas' grounds. Very well, he thought, let them bury it there; it won't be hard to find. Now there was a voice--a very low voice--Injun Joe's: "Damn her, maybe she's got company--there's lights, late as it is." "I can't see any." This was that stranger's voice--the stranger of the haunted house. A deadly chill went to Huck's heart--this, then, was the "revenge" job! His thought was, to fly. Then he remembered that the Widow Douglas had been kind to him more than once, and maybe these men were going to murder her. He wished he dared venture to warn her; but he knew he didn't dare--they might come and catch him. He thought all this and more in the moment that elapsed between the stranger's remark and Injun Joe's next--which was-- "Because the bush is in your way. Now--this way--now you see, don't you?" "Yes. Well, there IS company there, I reckon. Better give it up." "Give it up, and I just leaving this country forever! Give it up and maybe never have another chance. I tell you again, as I've told you before, I don't care for her swag--you may have it. But her husband was rough on me--many times he was rough on me--and mainly he was the justice of the peace that jugged me for a vagrant. And that ain't all. It ain't a millionth part of it! He had me HORSEWHIPPED!--horsewhipped in front of the jail, like a nigger!--with all the town looking on! HORSEWHIPPED!--do you understand? He took advantage of me and died. But I'll take it out of HER." "Oh, don't kill her! Don't do that!" "Kill? Who said anything about killing? I would kill HIM if he was here; but not her. When you want to get revenge on a woman you don't kill her--bosh! you go for her looks. You slit her nostrils--you notch her ears like a sow!" "By God, that's--" "Keep your opinion to yourself! It will be safest for you. I'll tie her to the bed. If she bleeds to death, is that my fault? I'll not cry, if she does. My friend, you'll help me in this thing--for MY sake --that's why you're here--I mightn't be able alone. If you flinch, I'll kill you. Do you understand that? And if I have to kill you, I'll kill her--and then I reckon nobody'll ever know much about who done this business." "Well, if it's got to be done, let's get at it. The quicker the better--I'm all in a shiver." "Do it NOW? And company there? Look here--I'll get suspicious of you, first thing you know. No--we'll wait till the lights are out--there's no hurry." Huck felt that a silence was going to ensue--a thing still more awful than any amount of murderous talk; so he held his breath and stepped gingerly back; planted his foot carefully and firmly, after balancing, one-legged, in a precarious way and almost toppling over, first on one side and then on the other. He took another step back, with the same elaboration and the same risks; then another and another, and--a twig snapped under his foot! His breath stopped and he listened. There was no sound--the stillness was perfect. His gratitude was measureless. Now he turned in his tracks, between the walls of sumach bushes--turned himself as carefully as if he were a ship--and then stepped quickly but cautiously along. When he emerged at the quarry he felt secure, and so he picked up his nimble heels and flew. Down, down he sped, till he reached the Welshman's. He banged at the door, and presently the heads of the old man and his two stalwart sons were thrust from windows. "What's the row there? Who's banging? What do you want?" "Let me in--quick! I'll tell everything." "Why, who are you?" "Huckleberry Finn--quick, let me in!" "Huckleberry Finn, indeed! It ain't a name to open many doors, I judge! But let him in, lads, and let's see what's the trouble." "Please don't ever tell I told you," were Huck's first words when he got in. "Please don't--I'd be killed, sure--but the widow's been good friends to me sometimes, and I want to tell--I WILL tell if you'll promise you won't ever say it was me." "By George, he HAS got something to tell, or he wouldn't act so!" exclaimed the old man; "out with it and nobody here'll ever tell, lad." Three minutes later the old man and his sons, well armed, were up the hill, and just entering the sumach path on tiptoe, their weapons in their hands. Huck accompanied them no further. He hid behind a great bowlder and fell to listening. There was a lagging, anxious silence, and then all of a sudden there was an explosion of firearms and a cry. Huck waited for no particulars. He sprang away and sped down the hill as fast as his legs could carry him. CHAPTER XXX AS the earliest suspicion of dawn appeared on Sunday morning, Huck came groping up the hill and rapped gently at the old Welshman's door. The inmates were asleep, but it was a sleep that was set on a hair-trigger, on account of the exciting episode of the night. A call came from a window: "Who's there!" Huck's scared voice answered in a low tone: "Please let me in! It's only Huck Finn!" "It's a name that can open this door night or day, lad!--and welcome!" These were strange words to the vagabond boy's ears, and the pleasantest he had ever heard. He could not recollect that the closing word had ever been applied in his case before. The door was quickly unlocked, and he entered. Huck was given a seat and the old man and his brace of tall sons speedily dressed themselves. "Now, my boy, I hope you're good and hungry, because breakfast will be ready as soon as the sun's up, and we'll have a piping hot one, too --make yourself easy about that! I and the boys hoped you'd turn up and stop here last night." "I was awful scared," said Huck, "and I run. I took out when the pistols went off, and I didn't stop for three mile. I've come now becuz I wanted to know about it, you know; and I come before daylight becuz I didn't want to run across them devils, even if they was dead." "Well, poor chap, you do look as if you'd had a hard night of it--but there's a bed here for you when you've had your breakfast. No, they ain't dead, lad--we are sorry enough for that. You see we knew right where to put our hands on them, by your description; so we crept along on tiptoe till we got within fifteen feet of them--dark as a cellar that sumach path was--and just then I found I was going to sneeze. It was the meanest kind of luck! I tried to keep it back, but no use --'twas bound to come, and it did come! I was in the lead with my pistol raised, and when the sneeze started those scoundrels a-rustling to get out of the path, I sung out, 'Fire boys!' and blazed away at the place where the rustling was. So did the boys. But they were off in a jiffy, those villains, and we after them, down through the woods. I judge we never touched them. They fired a shot apiece as they started, but their bullets whizzed by and didn't do us any harm. As soon as we lost the sound of their feet we quit chasing, and went down and stirred up the constables. They got a posse together, and went off to guard the river bank, and as soon as it is light the sheriff and a gang are going to beat up the woods. My boys will be with them presently. I wish we had some sort of description of those rascals--'twould help a good deal. But you couldn't see what they were like, in the dark, lad, I suppose?" "Oh yes; I saw them down-town and follered them." "Splendid! Describe them--describe them, my boy!" "One's the old deaf and dumb Spaniard that's ben around here once or twice, and t'other's a mean-looking, ragged--" "That's enough, lad, we know the men! Happened on them in the woods back of the widow's one day, and they slunk away. Off with you, boys, and tell the sheriff--get your breakfast to-morrow morning!" The Welshman's sons departed at once. As they were leaving the room Huck sprang up and exclaimed: "Oh, please don't tell ANYbody it was me that blowed on them! Oh, please!" "All right if you say it, Huck, but you ought to have the credit of what you did." "Oh no, no! Please don't tell!" When the young men were gone, the old Welshman said: "They won't tell--and I won't. But why don't you want it known?" Huck would not explain, further than to say that he already knew too much about one of those men and would not have the man know that he knew anything against him for the whole world--he would be killed for knowing it, sure. The old man promised secrecy once more, and said: "How did you come to follow these fellows, lad? Were they looking suspicious?" Huck was silent while he framed a duly cautious reply. Then he said: "Well, you see, I'm a kind of a hard lot,--least everybody says so, and I don't see nothing agin it--and sometimes I can't sleep much, on account of thinking about it and sort of trying to strike out a new way of doing. That was the way of it last night. I couldn't sleep, and so I come along up-street 'bout midnight, a-turning it all over, and when I got to that old shackly brick store by the Temperance Tavern, I backed up agin the wall to have another think. Well, just then along comes these two chaps slipping along close by me, with something under their arm, and I reckoned they'd stole it. One was a-smoking, and t'other one wanted a light; so they stopped right before me and the cigars lit up their faces and I see that the big one was the deaf and dumb Spaniard, by his white whiskers and the patch on his eye, and t'other one was a rusty, ragged-looking devil." "Could you see the rags by the light of the cigars?" This staggered Huck for a moment. Then he said: "Well, I don't know--but somehow it seems as if I did." "Then they went on, and you--" "Follered 'em--yes. That was it. I wanted to see what was up--they sneaked along so. I dogged 'em to the widder's stile, and stood in the dark and heard the ragged one beg for the widder, and the Spaniard swear he'd spile her looks just as I told you and your two--" "What! The DEAF AND DUMB man said all that!" Huck had made another terrible mistake! He was trying his best to keep the old man from getting the faintest hint of who the Spaniard might be, and yet his tongue seemed determined to get him into trouble in spite of all he could do. He made several efforts to creep out of his scrape, but the old man's eye was upon him and he made blunder after blunder. Presently the Welshman said: "My boy, don't be afraid of me. I wouldn't hurt a hair of your head for all the world. No--I'd protect you--I'd protect you. This Spaniard is not deaf and dumb; you've let that slip without intending it; you can't cover that up now. You know something about that Spaniard that you want to keep dark. Now trust me--tell me what it is, and trust me --I won't betray you." Huck looked into the old man's honest eyes a moment, then bent over and whispered in his ear: "'Tain't a Spaniard--it's Injun Joe!" The Welshman almost jumped out of his chair. In a moment he said: "It's all plain enough, now. When you talked about notching ears and slitting noses I judged that that was your own embellishment, because white men don't take that sort of revenge. But an Injun! That's a different matter altogether." During breakfast the talk went on, and in the course of it the old man said that the last thing which he and his sons had done, before going to bed, was to get a lantern and examine the stile and its vicinity for marks of blood. They found none, but captured a bulky bundle of-- "Of WHAT?" If the words had been lightning they could not have leaped with a more stunning suddenness from Huck's blanched lips. His eyes were staring wide, now, and his breath suspended--waiting for the answer. The Welshman started--stared in return--three seconds--five seconds--ten --then replied: "Of burglar's tools. Why, what's the MATTER with you?" Huck sank back, panting gently, but deeply, unutterably grateful. The Welshman eyed him gravely, curiously--and presently said: "Yes, burglar's tools. That appears to relieve you a good deal. But what did give you that turn? What were YOU expecting we'd found?" Huck was in a close place--the inquiring eye was upon him--he would have given anything for material for a plausible answer--nothing suggested itself--the inquiring eye was boring deeper and deeper--a senseless reply offered--there was no time to weigh it, so at a venture he uttered it--feebly: "Sunday-school books, maybe." Poor Huck was too distressed to smile, but the old man laughed loud and joyously, shook up the details of his anatomy from head to foot, and ended by saying that such a laugh was money in a-man's pocket, because it cut down the doctor's bill like everything. Then he added: "Poor old chap, you're white and jaded--you ain't well a bit--no wonder you're a little flighty and off your balance. But you'll come out of it. Rest and sleep will fetch you out all right, I hope." Huck was irritated to think he had been such a goose and betrayed such a suspicious excitement, for he had dropped the idea that the parcel brought from the tavern was the treasure, as soon as he had heard the talk at the widow's stile. He had only thought it was not the treasure, however--he had not known that it wasn't--and so the suggestion of a captured bundle was too much for his self-possession. But on the whole he felt glad the little episode had happened, for now he knew beyond all question that that bundle was not THE bundle, and so his mind was at rest and exceedingly comfortable. In fact, everything seemed to be drifting just in the right direction, now; the treasure must be still in No. 2, the men would be captured and jailed that day, and he and Tom could seize the gold that night without any trouble or any fear of interruption. Just as breakfast was completed there was a knock at the door. Huck jumped for a hiding-place, for he had no mind to be connected even remotely with the late event. The Welshman admitted several ladies and gentlemen, among them the Widow Douglas, and noticed that groups of citizens were climbing up the hill--to stare at the stile. So the news had spread. The Welshman had to tell the story of the night to the visitors. The widow's gratitude for her preservation was outspoken. "Don't say a word about it, madam. There's another that you're more beholden to than you are to me and my boys, maybe, but he don't allow me to tell his name. We wouldn't have been there but for him." Of course this excited a curiosity so vast that it almost belittled the main matter--but the Welshman allowed it to eat into the vitals of his visitors, and through them be transmitted to the whole town, for he refused to part with his secret. When all else had been learned, the widow said: "I went to sleep reading in bed and slept straight through all that noise. Why didn't you come and wake me?" "We judged it warn't worth while. Those fellows warn't likely to come again--they hadn't any tools left to work with, and what was the use of waking you up and scaring you to death? My three negro men stood guard at your house all the rest of the night. They've just come back." More visitors came, and the story had to be told and retold for a couple of hours more. There was no Sabbath-school during day-school vacation, but everybody was early at church. The stirring event was well canvassed. News came that not a sign of the two villains had been yet discovered. When the sermon was finished, Judge Thatcher's wife dropped alongside of Mrs. Harper as she moved down the aisle with the crowd and said: "Is my Becky going to sleep all day? I just expected she would be tired to death." "Your Becky?" "Yes," with a startled look--"didn't she stay with you last night?" "Why, no." Mrs. Thatcher turned pale, and sank into a pew, just as Aunt Polly, talking briskly with a friend, passed by. Aunt Polly said: "Good-morning, Mrs. Thatcher. Good-morning, Mrs. Harper. I've got a boy that's turned up missing. I reckon my Tom stayed at your house last night--one of you. And now he's afraid to come to church. I've got to settle with him." Mrs. Thatcher shook her head feebly and turned paler than ever. "He didn't stay with us," said Mrs. Harper, beginning to look uneasy. A marked anxiety came into Aunt Polly's face. "Joe Harper, have you seen my Tom this morning?" "No'm." "When did you see him last?" Joe tried to remember, but was not sure he could say. The people had stopped moving out of church. Whispers passed along, and a boding uneasiness took possession of every countenance. Children were anxiously questioned, and young teachers. They all said they had not noticed whether Tom and Becky were on board the ferryboat on the homeward trip; it was dark; no one thought of inquiring if any one was missing. One young man finally blurted out his fear that they were still in the cave! Mrs. Thatcher swooned away. Aunt Polly fell to crying and wringing her hands. The alarm swept from lip to lip, from group to group, from street to street, and within five minutes the bells were wildly clanging and the whole town was up! The Cardiff Hill episode sank into instant insignificance, the burglars were forgotten, horses were saddled, skiffs were manned, the ferryboat ordered out, and before the horror was half an hour old, two hundred men were pouring down highroad and river toward the cave. All the long afternoon the village seemed empty and dead. Many women visited Aunt Polly and Mrs. Thatcher and tried to comfort them. They cried with them, too, and that was still better than words. All the tedious night the town waited for news; but when the morning dawned at last, all the word that came was, "Send more candles--and send food." Mrs. Thatcher was almost crazed; and Aunt Polly, also. Judge Thatcher sent messages of hope and encouragement from the cave, but they conveyed no real cheer. The old Welshman came home toward daylight, spattered with candle-grease, smeared with clay, and almost worn out. He found Huck still in the bed that had been provided for him, and delirious with fever. The physicians were all at the cave, so the Widow Douglas came and took charge of the patient. She said she would do her best by him, because, whether he was good, bad, or indifferent, he was the Lord's, and nothing that was the Lord's was a thing to be neglected. The Welshman said Huck had good spots in him, and the widow said: "You can depend on it. That's the Lord's mark. He don't leave it off. He never does. Puts it somewhere on every creature that comes from his hands." Early in the forenoon parties of jaded men began to straggle into the village, but the strongest of the citizens continued searching. All the news that could be gained was that remotenesses of the cavern were being ransacked that had never been visited before; that every corner and crevice was going to be thoroughly searched; that wherever one wandered through the maze of passages, lights were to be seen flitting hither and thither in the distance, and shoutings and pistol-shots sent their hollow reverberations to the ear down the sombre aisles. In one place, far from the section usually traversed by tourists, the names "BECKY & TOM" had been found traced upon the rocky wall with candle-smoke, and near at hand a grease-soiled bit of ribbon. Mrs. Thatcher recognized the ribbon and cried over it. She said it was the last relic she should ever have of her child; and that no other memorial of her could ever be so precious, because this one parted latest from the living body before the awful death came. Some said that now and then, in the cave, a far-away speck of light would glimmer, and then a glorious shout would burst forth and a score of men go trooping down the echoing aisle--and then a sickening disappointment always followed; the children were not there; it was only a searcher's light. Three dreadful days and nights dragged their tedious hours along, and the village sank into a hopeless stupor. No one had heart for anything. The accidental discovery, just made, that the proprietor of the Temperance Tavern kept liquor on his premises, scarcely fluttered the public pulse, tremendous as the fact was. In a lucid interval, Huck feebly led up to the subject of taverns, and finally asked--dimly dreading the worst--if anything had been discovered at the Temperance Tavern since he had been ill. "Yes," said the widow. Huck started up in bed, wild-eyed: "What? What was it?" "Liquor!--and the place has been shut up. Lie down, child--what a turn you did give me!" "Only tell me just one thing--only just one--please! Was it Tom Sawyer that found it?" The widow burst into tears. "Hush, hush, child, hush! I've told you before, you must NOT talk. You are very, very sick!" Then nothing but liquor had been found; there would have been a great powwow if it had been the gold. So the treasure was gone forever--gone forever! But what could she be crying about? Curious that she should cry. These thoughts worked their dim way through Huck's mind, and under the weariness they gave him he fell asleep. The widow said to herself: "There--he's asleep, poor wreck. Tom Sawyer find it! Pity but somebody could find Tom Sawyer! Ah, there ain't many left, now, that's got hope enough, or strength enough, either, to go on searching." CHAPTER XXXI NOW to return to Tom and Becky's share in the picnic. They tripped along the murky aisles with the rest of the company, visiting the familiar wonders of the cave--wonders dubbed with rather over-descriptive names, such as "The Drawing-Room," "The Cathedral," "Aladdin's Palace," and so on. Presently the hide-and-seek frolicking began, and Tom and Becky engaged in it with zeal until the exertion began to grow a trifle wearisome; then they wandered down a sinuous avenue holding their candles aloft and reading the tangled web-work of names, dates, post-office addresses, and mottoes with which the rocky walls had been frescoed (in candle-smoke). Still drifting along and talking, they scarcely noticed that they were now in a part of the cave whose walls were not frescoed. They smoked their own names under an overhanging shelf and moved on. Presently they came to a place where a little stream of water, trickling over a ledge and carrying a limestone sediment with it, had, in the slow-dragging ages, formed a laced and ruffled Niagara in gleaming and imperishable stone. Tom squeezed his small body behind it in order to illuminate it for Becky's gratification. He found that it curtained a sort of steep natural stairway which was enclosed between narrow walls, and at once the ambition to be a discoverer seized him. Becky responded to his call, and they made a smoke-mark for future guidance, and started upon their quest. They wound this way and that, far down into the secret depths of the cave, made another mark, and branched off in search of novelties to tell the upper world about. In one place they found a spacious cavern, from whose ceiling depended a multitude of shining stalactites of the length and circumference of a man's leg; they walked all about it, wondering and admiring, and presently left it by one of the numerous passages that opened into it. This shortly brought them to a bewitching spring, whose basin was incrusted with a frostwork of glittering crystals; it was in the midst of a cavern whose walls were supported by many fantastic pillars which had been formed by the joining of great stalactites and stalagmites together, the result of the ceaseless water-drip of centuries. Under the roof vast knots of bats had packed themselves together, thousands in a bunch; the lights disturbed the creatures and they came flocking down by hundreds, squeaking and darting furiously at the candles. Tom knew their ways and the danger of this sort of conduct. He seized Becky's hand and hurried her into the first corridor that offered; and none too soon, for a bat struck Becky's light out with its wing while she was passing out of the cavern. The bats chased the children a good distance; but the fugitives plunged into every new passage that offered, and at last got rid of the perilous things. Tom found a subterranean lake, shortly, which stretched its dim length away until its shape was lost in the shadows. He wanted to explore its borders, but concluded that it would be best to sit down and rest awhile, first. Now, for the first time, the deep stillness of the place laid a clammy hand upon the spirits of the children. Becky said: "Why, I didn't notice, but it seems ever so long since I heard any of the others." "Come to think, Becky, we are away down below them--and I don't know how far away north, or south, or east, or whichever it is. We couldn't hear them here." Becky grew apprehensive. "I wonder how long we've been down here, Tom? We better start back." "Yes, I reckon we better. P'raps we better." "Can you find the way, Tom? It's all a mixed-up crookedness to me." "I reckon I could find it--but then the bats. If they put our candles out it will be an awful fix. Let's try some other way, so as not to go through there." "Well. But I hope we won't get lost. It would be so awful!" and the girl shuddered at the thought of the dreadful possibilities. They started through a corridor, and traversed it in silence a long way, glancing at each new opening, to see if there was anything familiar about the look of it; but they were all strange. Every time Tom made an examination, Becky would watch his face for an encouraging sign, and he would say cheerily: "Oh, it's all right. This ain't the one, but we'll come to it right away!" But he felt less and less hopeful with each failure, and presently began to turn off into diverging avenues at sheer random, in desperate hope of finding the one that was wanted. He still said it was "all right," but there was such a leaden dread at his heart that the words had lost their ring and sounded just as if he had said, "All is lost!" Becky clung to his side in an anguish of fear, and tried hard to keep back the tears, but they would come. At last she said: "Oh, Tom, never mind the bats, let's go back that way! We seem to get worse and worse off all the time." "Listen!" said he. Profound silence; silence so deep that even their breathings were conspicuous in the hush. Tom shouted. The call went echoing down the empty aisles and died out in the distance in a faint sound that resembled a ripple of mocking laughter. "Oh, don't do it again, Tom, it is too horrid," said Becky. "It is horrid, but I better, Becky; they might hear us, you know," and he shouted again. The "might" was even a chillier horror than the ghostly laughter, it so confessed a perishing hope. The children stood still and listened; but there was no result. Tom turned upon the back track at once, and hurried his steps. It was but a little while before a certain indecision in his manner revealed another fearful fact to Becky--he could not find his way back! "Oh, Tom, you didn't make any marks!" "Becky, I was such a fool! Such a fool! I never thought we might want to come back! No--I can't find the way. It's all mixed up." "Tom, Tom, we're lost! we're lost! We never can get out of this awful place! Oh, why DID we ever leave the others!" She sank to the ground and burst into such a frenzy of crying that Tom was appalled with the idea that she might die, or lose her reason. He sat down by her and put his arms around her; she buried her face in his bosom, she clung to him, she poured out her terrors, her unavailing regrets, and the far echoes turned them all to jeering laughter. Tom begged her to pluck up hope again, and she said she could not. He fell to blaming and abusing himself for getting her into this miserable situation; this had a better effect. She said she would try to hope again, she would get up and follow wherever he might lead if only he would not talk like that any more. For he was no more to blame than she, she said. So they moved on again--aimlessly--simply at random--all they could do was to move, keep moving. For a little while, hope made a show of reviving--not with any reason to back it, but only because it is its nature to revive when the spring has not been taken out of it by age and familiarity with failure. By-and-by Tom took Becky's candle and blew it out. This economy meant so much! Words were not needed. Becky understood, and her hope died again. She knew that Tom had a whole candle and three or four pieces in his pockets--yet he must economize. By-and-by, fatigue began to assert its claims; the children tried to pay attention, for it was dreadful to think of sitting down when time was grown to be so precious, moving, in some direction, in any direction, was at least progress and might bear fruit; but to sit down was to invite death and shorten its pursuit. At last Becky's frail limbs refused to carry her farther. She sat down. Tom rested with her, and they talked of home, and the friends there, and the comfortable beds and, above all, the light! Becky cried, and Tom tried to think of some way of comforting her, but all his encouragements were grown threadbare with use, and sounded like sarcasms. Fatigue bore so heavily upon Becky that she drowsed off to sleep. Tom was grateful. He sat looking into her drawn face and saw it grow smooth and natural under the influence of pleasant dreams; and by-and-by a smile dawned and rested there. The peaceful face reflected somewhat of peace and healing into his own spirit, and his thoughts wandered away to bygone times and dreamy memories. While he was deep in his musings, Becky woke up with a breezy little laugh--but it was stricken dead upon her lips, and a groan followed it. "Oh, how COULD I sleep! I wish I never, never had waked! No! No, I don't, Tom! Don't look so! I won't say it again." "I'm glad you've slept, Becky; you'll feel rested, now, and we'll find the way out." "We can try, Tom; but I've seen such a beautiful country in my dream. I reckon we are going there." "Maybe not, maybe not. Cheer up, Becky, and let's go on trying." They rose up and wandered along, hand in hand and hopeless. They tried to estimate how long they had been in the cave, but all they knew was that it seemed days and weeks, and yet it was plain that this could not be, for their candles were not gone yet. A long time after this--they could not tell how long--Tom said they must go softly and listen for dripping water--they must find a spring. They found one presently, and Tom said it was time to rest again. Both were cruelly tired, yet Becky said she thought she could go a little farther. She was surprised to hear Tom dissent. She could not understand it. They sat down, and Tom fastened his candle to the wall in front of them with some clay. Thought was soon busy; nothing was said for some time. Then Becky broke the silence: "Tom, I am so hungry!" Tom took something out of his pocket. "Do you remember this?" said he. Becky almost smiled. "It's our wedding-cake, Tom." "Yes--I wish it was as big as a barrel, for it's all we've got." "I saved it from the picnic for us to dream on, Tom, the way grown-up people do with wedding-cake--but it'll be our--" She dropped the sentence where it was. Tom divided the cake and Becky ate with good appetite, while Tom nibbled at his moiety. There was abundance of cold water to finish the feast with. By-and-by Becky suggested that they move on again. Tom was silent a moment. Then he said: "Becky, can you bear it if I tell you something?" Becky's face paled, but she thought she could. "Well, then, Becky, we must stay here, where there's water to drink. That little piece is our last candle!" Becky gave loose to tears and wailings. Tom did what he could to comfort her, but with little effect. At length Becky said: "Tom!" "Well, Becky?" "They'll miss us and hunt for us!" "Yes, they will! Certainly they will!" "Maybe they're hunting for us now, Tom." "Why, I reckon maybe they are. I hope they are." "When would they miss us, Tom?" "When they get back to the boat, I reckon." "Tom, it might be dark then--would they notice we hadn't come?" "I don't know. But anyway, your mother would miss you as soon as they got home." A frightened look in Becky's face brought Tom to his senses and he saw that he had made a blunder. Becky was not to have gone home that night! The children became silent and thoughtful. In a moment a new burst of grief from Becky showed Tom that the thing in his mind had struck hers also--that the Sabbath morning might be half spent before Mrs. Thatcher discovered that Becky was not at Mrs. Harper's. The children fastened their eyes upon their bit of candle and watched it melt slowly and pitilessly away; saw the half inch of wick stand alone at last; saw the feeble flame rise and fall, climb the thin column of smoke, linger at its top a moment, and then--the horror of utter darkness reigned! How long afterward it was that Becky came to a slow consciousness that she was crying in Tom's arms, neither could tell. All that they knew was, that after what seemed a mighty stretch of time, both awoke out of a dead stupor of sleep and resumed their miseries once more. Tom said it might be Sunday, now--maybe Monday. He tried to get Becky to talk, but her sorrows were too oppressive, all her hopes were gone. Tom said that they must have been missed long ago, and no doubt the search was going on. He would shout and maybe some one would come. He tried it; but in the darkness the distant echoes sounded so hideously that he tried it no more. The hours wasted away, and hunger came to torment the captives again. A portion of Tom's half of the cake was left; they divided and ate it. But they seemed hungrier than before. The poor morsel of food only whetted desire. By-and-by Tom said: "SH! Did you hear that?" Both held their breath and listened. There was a sound like the faintest, far-off shout. Instantly Tom answered it, and leading Becky by the hand, started groping down the corridor in its direction. Presently he listened again; again the sound was heard, and apparently a little nearer. "It's them!" said Tom; "they're coming! Come along, Becky--we're all right now!" The joy of the prisoners was almost overwhelming. Their speed was slow, however, because pitfalls were somewhat common, and had to be guarded against. They shortly came to one and had to stop. It might be three feet deep, it might be a hundred--there was no passing it at any rate. Tom got down on his breast and reached as far down as he could. No bottom. They must stay there and wait until the searchers came. They listened; evidently the distant shoutings were growing more distant! a moment or two more and they had gone altogether. The heart-sinking misery of it! Tom whooped until he was hoarse, but it was of no use. He talked hopefully to Becky; but an age of anxious waiting passed and no sounds came again. The children groped their way back to the spring. The weary time dragged on; they slept again, and awoke famished and woe-stricken. Tom believed it must be Tuesday by this time. Now an idea struck him. There were some side passages near at hand. It would be better to explore some of these than bear the weight of the heavy time in idleness. He took a kite-line from his pocket, tied it to a projection, and he and Becky started, Tom in the lead, unwinding the line as he groped along. At the end of twenty steps the corridor ended in a "jumping-off place." Tom got down on his knees and felt below, and then as far around the corner as he could reach with his hands conveniently; he made an effort to stretch yet a little farther to the right, and at that moment, not twenty yards away, a human hand, holding a candle, appeared from behind a rock! Tom lifted up a glorious shout, and instantly that hand was followed by the body it belonged to--Injun Joe's! Tom was paralyzed; he could not move. He was vastly gratified the next moment, to see the "Spaniard" take to his heels and get himself out of sight. Tom wondered that Joe had not recognized his voice and come over and killed him for testifying in court. But the echoes must have disguised the voice. Without doubt, that was it, he reasoned. Tom's fright weakened every muscle in his body. He said to himself that if he had strength enough to get back to the spring he would stay there, and nothing should tempt him to run the risk of meeting Injun Joe again. He was careful to keep from Becky what it was he had seen. He told her he had only shouted "for luck." But hunger and wretchedness rise superior to fears in the long run. Another tedious wait at the spring and another long sleep brought changes. The children awoke tortured with a raging hunger. Tom believed that it must be Wednesday or Thursday or even Friday or Saturday, now, and that the search had been given over. He proposed to explore another passage. He felt willing to risk Injun Joe and all other terrors. But Becky was very weak. She had sunk into a dreary apathy and would not be roused. She said she would wait, now, where she was, and die--it would not be long. She told Tom to go with the kite-line and explore if he chose; but she implored him to come back every little while and speak to her; and she made him promise that when the awful time came, he would stay by her and hold her hand until all was over. Tom kissed her, with a choking sensation in his throat, and made a show of being confident of finding the searchers or an escape from the cave; then he took the kite-line in his hand and went groping down one of the passages on his hands and knees, distressed with hunger and sick with bodings of coming doom. CHAPTER XXXII TUESDAY afternoon came, and waned to the twilight. The village of St. Petersburg still mourned. The lost children had not been found. Public prayers had been offered up for them, and many and many a private prayer that had the petitioner's whole heart in it; but still no good news came from the cave. The majority of the searchers had given up the quest and gone back to their daily avocations, saying that it was plain the children could never be found. Mrs. Thatcher was very ill, and a great part of the time delirious. People said it was heartbreaking to hear her call her child, and raise her head and listen a whole minute at a time, then lay it wearily down again with a moan. Aunt Polly had drooped into a settled melancholy, and her gray hair had grown almost white. The village went to its rest on Tuesday night, sad and forlorn. Away in the middle of the night a wild peal burst from the village bells, and in a moment the streets were swarming with frantic half-clad people, who shouted, "Turn out! turn out! they're found! they're found!" Tin pans and horns were added to the din, the population massed itself and moved toward the river, met the children coming in an open carriage drawn by shouting citizens, thronged around it, joined its homeward march, and swept magnificently up the main street roaring huzzah after huzzah! The village was illuminated; nobody went to bed again; it was the greatest night the little town had ever seen. During the first half-hour a procession of villagers filed through Judge Thatcher's house, seized the saved ones and kissed them, squeezed Mrs. Thatcher's hand, tried to speak but couldn't--and drifted out raining tears all over the place. Aunt Polly's happiness was complete, and Mrs. Thatcher's nearly so. It would be complete, however, as soon as the messenger dispatched with the great news to the cave should get the word to her husband. Tom lay upon a sofa with an eager auditory about him and told the history of the wonderful adventure, putting in many striking additions to adorn it withal; and closed with a description of how he left Becky and went on an exploring expedition; how he followed two avenues as far as his kite-line would reach; how he followed a third to the fullest stretch of the kite-line, and was about to turn back when he glimpsed a far-off speck that looked like daylight; dropped the line and groped toward it, pushed his head and shoulders through a small hole, and saw the broad Mississippi rolling by! And if it had only happened to be night he would not have seen that speck of daylight and would not have explored that passage any more! He told how he went back for Becky and broke the good news and she told him not to fret her with such stuff, for she was tired, and knew she was going to die, and wanted to. He described how he labored with her and convinced her; and how she almost died for joy when she had groped to where she actually saw the blue speck of daylight; how he pushed his way out at the hole and then helped her out; how they sat there and cried for gladness; how some men came along in a skiff and Tom hailed them and told them their situation and their famished condition; how the men didn't believe the wild tale at first, "because," said they, "you are five miles down the river below the valley the cave is in" --then took them aboard, rowed to a house, gave them supper, made them rest till two or three hours after dark and then brought them home. Before day-dawn, Judge Thatcher and the handful of searchers with him were tracked out, in the cave, by the twine clews they had strung behind them, and informed of the great news. Three days and nights of toil and hunger in the cave were not to be shaken off at once, as Tom and Becky soon discovered. They were bedridden all of Wednesday and Thursday, and seemed to grow more and more tired and worn, all the time. Tom got about, a little, on Thursday, was down-town Friday, and nearly as whole as ever Saturday; but Becky did not leave her room until Sunday, and then she looked as if she had passed through a wasting illness. Tom learned of Huck's sickness and went to see him on Friday, but could not be admitted to the bedroom; neither could he on Saturday or Sunday. He was admitted daily after that, but was warned to keep still about his adventure and introduce no exciting topic. The Widow Douglas stayed by to see that he obeyed. At home Tom learned of the Cardiff Hill event; also that the "ragged man's" body had eventually been found in the river near the ferry-landing; he had been drowned while trying to escape, perhaps. About a fortnight after Tom's rescue from the cave, he started off to visit Huck, who had grown plenty strong enough, now, to hear exciting talk, and Tom had some that would interest him, he thought. Judge Thatcher's house was on Tom's way, and he stopped to see Becky. The Judge and some friends set Tom to talking, and some one asked him ironically if he wouldn't like to go to the cave again. Tom said he thought he wouldn't mind it. The Judge said: "Well, there are others just like you, Tom, I've not the least doubt. But we have taken care of that. Nobody will get lost in that cave any more." "Why?" "Because I had its big door sheathed with boiler iron two weeks ago, and triple-locked--and I've got the keys." Tom turned as white as a sheet. "What's the matter, boy! Here, run, somebody! Fetch a glass of water!" The water was brought and thrown into Tom's face. "Ah, now you're all right. What was the matter with you, Tom?" "Oh, Judge, Injun Joe's in the cave!" CHAPTER XXXIII WITHIN a few minutes the news had spread, and a dozen skiff-loads of men were on their way to McDougal's cave, and the ferryboat, well filled with passengers, soon followed. Tom Sawyer was in the skiff that bore Judge Thatcher. When the cave door was unlocked, a sorrowful sight presented itself in the dim twilight of the place. Injun Joe lay stretched upon the ground, dead, with his face close to the crack of the door, as if his longing eyes had been fixed, to the latest moment, upon the light and the cheer of the free world outside. Tom was touched, for he knew by his own experience how this wretch had suffered. His pity was moved, but nevertheless he felt an abounding sense of relief and security, now, which revealed to him in a degree which he had not fully appreciated before how vast a weight of dread had been lying upon him since the day he lifted his voice against this bloody-minded outcast. Injun Joe's bowie-knife lay close by, its blade broken in two. The great foundation-beam of the door had been chipped and hacked through, with tedious labor; useless labor, too, it was, for the native rock formed a sill outside it, and upon that stubborn material the knife had wrought no effect; the only damage done was to the knife itself. But if there had been no stony obstruction there the labor would have been useless still, for if the beam had been wholly cut away Injun Joe could not have squeezed his body under the door, and he knew it. So he had only hacked that place in order to be doing something--in order to pass the weary time--in order to employ his tortured faculties. Ordinarily one could find half a dozen bits of candle stuck around in the crevices of this vestibule, left there by tourists; but there were none now. The prisoner had searched them out and eaten them. He had also contrived to catch a few bats, and these, also, he had eaten, leaving only their claws. The poor unfortunate had starved to death. In one place, near at hand, a stalagmite had been slowly growing up from the ground for ages, builded by the water-drip from a stalactite overhead. The captive had broken off the stalagmite, and upon the stump had placed a stone, wherein he had scooped a shallow hollow to catch the precious drop that fell once in every three minutes with the dreary regularity of a clock-tick--a dessertspoonful once in four and twenty hours. That drop was falling when the Pyramids were new; when Troy fell; when the foundations of Rome were laid; when Christ was crucified; when the Conqueror created the British empire; when Columbus sailed; when the massacre at Lexington was "news." It is falling now; it will still be falling when all these things shall have sunk down the afternoon of history, and the twilight of tradition, and been swallowed up in the thick night of oblivion. Has everything a purpose and a mission? Did this drop fall patiently during five thousand years to be ready for this flitting human insect's need? and has it another important object to accomplish ten thousand years to come? No matter. It is many and many a year since the hapless half-breed scooped out the stone to catch the priceless drops, but to this day the tourist stares longest at that pathetic stone and that slow-dropping water when he comes to see the wonders of McDougal's cave. Injun Joe's cup stands first in the list of the cavern's marvels; even "Aladdin's Palace" cannot rival it. Injun Joe was buried near the mouth of the cave; and people flocked there in boats and wagons from the towns and from all the farms and hamlets for seven miles around; they brought their children, and all sorts of provisions, and confessed that they had had almost as satisfactory a time at the funeral as they could have had at the hanging. This funeral stopped the further growth of one thing--the petition to the governor for Injun Joe's pardon. The petition had been largely signed; many tearful and eloquent meetings had been held, and a committee of sappy women been appointed to go in deep mourning and wail around the governor, and implore him to be a merciful ass and trample his duty under foot. Injun Joe was believed to have killed five citizens of the village, but what of that? If he had been Satan himself there would have been plenty of weaklings ready to scribble their names to a pardon-petition, and drip a tear on it from their permanently impaired and leaky water-works. The morning after the funeral Tom took Huck to a private place to have an important talk. Huck had learned all about Tom's adventure from the Welshman and the Widow Douglas, by this time, but Tom said he reckoned there was one thing they had not told him; that thing was what he wanted to talk about now. Huck's face saddened. He said: "I know what it is. You got into No. 2 and never found anything but whiskey. Nobody told me it was you; but I just knowed it must 'a' ben you, soon as I heard 'bout that whiskey business; and I knowed you hadn't got the money becuz you'd 'a' got at me some way or other and told me even if you was mum to everybody else. Tom, something's always told me we'd never get holt of that swag." "Why, Huck, I never told on that tavern-keeper. YOU know his tavern was all right the Saturday I went to the picnic. Don't you remember you was to watch there that night?" "Oh yes! Why, it seems 'bout a year ago. It was that very night that I follered Injun Joe to the widder's." "YOU followed him?" "Yes--but you keep mum. I reckon Injun Joe's left friends behind him, and I don't want 'em souring on me and doing me mean tricks. If it hadn't ben for me he'd be down in Texas now, all right." Then Huck told his entire adventure in confidence to Tom, who had only heard of the Welshman's part of it before. "Well," said Huck, presently, coming back to the main question, "whoever nipped the whiskey in No. 2, nipped the money, too, I reckon --anyways it's a goner for us, Tom." "Huck, that money wasn't ever in No. 2!" "What!" Huck searched his comrade's face keenly. "Tom, have you got on the track of that money again?" "Huck, it's in the cave!" Huck's eyes blazed. "Say it again, Tom." "The money's in the cave!" "Tom--honest injun, now--is it fun, or earnest?" "Earnest, Huck--just as earnest as ever I was in my life. Will you go in there with me and help get it out?" "I bet I will! I will if it's where we can blaze our way to it and not get lost." "Huck, we can do that without the least little bit of trouble in the world." "Good as wheat! What makes you think the money's--" "Huck, you just wait till we get in there. If we don't find it I'll agree to give you my drum and every thing I've got in the world. I will, by jings." "All right--it's a whiz. When do you say?" "Right now, if you say it. Are you strong enough?" "Is it far in the cave? I ben on my pins a little, three or four days, now, but I can't walk more'n a mile, Tom--least I don't think I could." "It's about five mile into there the way anybody but me would go, Huck, but there's a mighty short cut that they don't anybody but me know about. Huck, I'll take you right to it in a skiff. I'll float the skiff down there, and I'll pull it back again all by myself. You needn't ever turn your hand over." "Less start right off, Tom." "All right. We want some bread and meat, and our pipes, and a little bag or two, and two or three kite-strings, and some of these new-fangled things they call lucifer matches. I tell you, many's the time I wished I had some when I was in there before." A trifle after noon the boys borrowed a small skiff from a citizen who was absent, and got under way at once. When they were several miles below "Cave Hollow," Tom said: "Now you see this bluff here looks all alike all the way down from the cave hollow--no houses, no wood-yards, bushes all alike. But do you see that white place up yonder where there's been a landslide? Well, that's one of my marks. We'll get ashore, now." They landed. "Now, Huck, where we're a-standing you could touch that hole I got out of with a fishing-pole. See if you can find it." Huck searched all the place about, and found nothing. Tom proudly marched into a thick clump of sumach bushes and said: "Here you are! Look at it, Huck; it's the snuggest hole in this country. You just keep mum about it. All along I've been wanting to be a robber, but I knew I'd got to have a thing like this, and where to run across it was the bother. We've got it now, and we'll keep it quiet, only we'll let Joe Harper and Ben Rogers in--because of course there's got to be a Gang, or else there wouldn't be any style about it. Tom Sawyer's Gang--it sounds splendid, don't it, Huck?" "Well, it just does, Tom. And who'll we rob?" "Oh, most anybody. Waylay people--that's mostly the way." "And kill them?" "No, not always. Hive them in the cave till they raise a ransom." "What's a ransom?" "Money. You make them raise all they can, off'n their friends; and after you've kept them a year, if it ain't raised then you kill them. That's the general way. Only you don't kill the women. You shut up the women, but you don't kill them. They're always beautiful and rich, and awfully scared. You take their watches and things, but you always take your hat off and talk polite. They ain't anybody as polite as robbers --you'll see that in any book. Well, the women get to loving you, and after they've been in the cave a week or two weeks they stop crying and after that you couldn't get them to leave. If you drove them out they'd turn right around and come back. It's so in all the books." "Why, it's real bully, Tom. I believe it's better'n to be a pirate." "Yes, it's better in some ways, because it's close to home and circuses and all that." By this time everything was ready and the boys entered the hole, Tom in the lead. They toiled their way to the farther end of the tunnel, then made their spliced kite-strings fast and moved on. A few steps brought them to the spring, and Tom felt a shudder quiver all through him. He showed Huck the fragment of candle-wick perched on a lump of clay against the wall, and described how he and Becky had watched the flame struggle and expire. The boys began to quiet down to whispers, now, for the stillness and gloom of the place oppressed their spirits. They went on, and presently entered and followed Tom's other corridor until they reached the "jumping-off place." The candles revealed the fact that it was not really a precipice, but only a steep clay hill twenty or thirty feet high. Tom whispered: "Now I'll show you something, Huck." He held his candle aloft and said: "Look as far around the corner as you can. Do you see that? There--on the big rock over yonder--done with candle-smoke." "Tom, it's a CROSS!" "NOW where's your Number Two? 'UNDER THE CROSS,' hey? Right yonder's where I saw Injun Joe poke up his candle, Huck!" Huck stared at the mystic sign awhile, and then said with a shaky voice: "Tom, less git out of here!" "What! and leave the treasure?" "Yes--leave it. Injun Joe's ghost is round about there, certain." "No it ain't, Huck, no it ain't. It would ha'nt the place where he died--away out at the mouth of the cave--five mile from here." "No, Tom, it wouldn't. It would hang round the money. I know the ways of ghosts, and so do you." Tom began to fear that Huck was right. Misgivings gathered in his mind. But presently an idea occurred to him-- "Lookyhere, Huck, what fools we're making of ourselves! Injun Joe's ghost ain't a going to come around where there's a cross!" The point was well taken. It had its effect. "Tom, I didn't think of that. But that's so. It's luck for us, that cross is. I reckon we'll climb down there and have a hunt for that box." Tom went first, cutting rude steps in the clay hill as he descended. Huck followed. Four avenues opened out of the small cavern which the great rock stood in. The boys examined three of them with no result. They found a small recess in the one nearest the base of the rock, with a pallet of blankets spread down in it; also an old suspender, some bacon rind, and the well-gnawed bones of two or three fowls. But there was no money-box. The lads searched and researched this place, but in vain. Tom said: "He said UNDER the cross. Well, this comes nearest to being under the cross. It can't be under the rock itself, because that sets solid on the ground." They searched everywhere once more, and then sat down discouraged. Huck could suggest nothing. By-and-by Tom said: "Lookyhere, Huck, there's footprints and some candle-grease on the clay about one side of this rock, but not on the other sides. Now, what's that for? I bet you the money IS under the rock. I'm going to dig in the clay." "That ain't no bad notion, Tom!" said Huck with animation. Tom's "real Barlow" was out at once, and he had not dug four inches before he struck wood. "Hey, Huck!--you hear that?" Huck began to dig and scratch now. Some boards were soon uncovered and removed. They had concealed a natural chasm which led under the rock. Tom got into this and held his candle as far under the rock as he could, but said he could not see to the end of the rift. He proposed to explore. He stooped and passed under; the narrow way descended gradually. He followed its winding course, first to the right, then to the left, Huck at his heels. Tom turned a short curve, by-and-by, and exclaimed: "My goodness, Huck, lookyhere!" It was the treasure-box, sure enough, occupying a snug little cavern, along with an empty powder-keg, a couple of guns in leather cases, two or three pairs of old moccasins, a leather belt, and some other rubbish well soaked with the water-drip. "Got it at last!" said Huck, ploughing among the tarnished coins with his hand. "My, but we're rich, Tom!" "Huck, I always reckoned we'd get it. It's just too good to believe, but we HAVE got it, sure! Say--let's not fool around here. Let's snake it out. Lemme see if I can lift the box." It weighed about fifty pounds. Tom could lift it, after an awkward fashion, but could not carry it conveniently. "I thought so," he said; "THEY carried it like it was heavy, that day at the ha'nted house. I noticed that. I reckon I was right to think of fetching the little bags along." The money was soon in the bags and the boys took it up to the cross rock. "Now less fetch the guns and things," said Huck. "No, Huck--leave them there. They're just the tricks to have when we go to robbing. We'll keep them there all the time, and we'll hold our orgies there, too. It's an awful snug place for orgies." "What orgies?" "I dono. But robbers always have orgies, and of course we've got to have them, too. Come along, Huck, we've been in here a long time. It's getting late, I reckon. I'm hungry, too. We'll eat and smoke when we get to the skiff." They presently emerged into the clump of sumach bushes, looked warily out, found the coast clear, and were soon lunching and smoking in the skiff. As the sun dipped toward the horizon they pushed out and got under way. Tom skimmed up the shore through the long twilight, chatting cheerily with Huck, and landed shortly after dark. "Now, Huck," said Tom, "we'll hide the money in the loft of the widow's woodshed, and I'll come up in the morning and we'll count it and divide, and then we'll hunt up a place out in the woods for it where it will be safe. Just you lay quiet here and watch the stuff till I run and hook Benny Taylor's little wagon; I won't be gone a minute." He disappeared, and presently returned with the wagon, put the two small sacks into it, threw some old rags on top of them, and started off, dragging his cargo behind him. When the boys reached the Welshman's house, they stopped to rest. Just as they were about to move on, the Welshman stepped out and said: "Hallo, who's that?" "Huck and Tom Sawyer." "Good! Come along with me, boys, you are keeping everybody waiting. Here--hurry up, trot ahead--I'll haul the wagon for you. Why, it's not as light as it might be. Got bricks in it?--or old metal?" "Old metal," said Tom. "I judged so; the boys in this town will take more trouble and fool away more time hunting up six bits' worth of old iron to sell to the foundry than they would to make twice the money at regular work. But that's human nature--hurry along, hurry along!" The boys wanted to know what the hurry was about. "Never mind; you'll see, when we get to the Widow Douglas'." Huck said with some apprehension--for he was long used to being falsely accused: "Mr. Jones, we haven't been doing nothing." The Welshman laughed. "Well, I don't know, Huck, my boy. I don't know about that. Ain't you and the widow good friends?" "Yes. Well, she's ben good friends to me, anyway." "All right, then. What do you want to be afraid for?" This question was not entirely answered in Huck's slow mind before he found himself pushed, along with Tom, into Mrs. Douglas' drawing-room. Mr. Jones left the wagon near the door and followed. The place was grandly lighted, and everybody that was of any consequence in the village was there. The Thatchers were there, the Harpers, the Rogerses, Aunt Polly, Sid, Mary, the minister, the editor, and a great many more, and all dressed in their best. The widow received the boys as heartily as any one could well receive two such looking beings. They were covered with clay and candle-grease. Aunt Polly blushed crimson with humiliation, and frowned and shook her head at Tom. Nobody suffered half as much as the two boys did, however. Mr. Jones said: "Tom wasn't at home, yet, so I gave him up; but I stumbled on him and Huck right at my door, and so I just brought them along in a hurry." "And you did just right," said the widow. "Come with me, boys." She took them to a bedchamber and said: "Now wash and dress yourselves. Here are two new suits of clothes --shirts, socks, everything complete. They're Huck's--no, no thanks, Huck--Mr. Jones bought one and I the other. But they'll fit both of you. Get into them. We'll wait--come down when you are slicked up enough." Then she left. CHAPTER XXXIV HUCK said: "Tom, we can slope, if we can find a rope. The window ain't high from the ground." "Shucks! what do you want to slope for?" "Well, I ain't used to that kind of a crowd. I can't stand it. I ain't going down there, Tom." "Oh, bother! It ain't anything. I don't mind it a bit. I'll take care of you." Sid appeared. "Tom," said he, "auntie has been waiting for you all the afternoon. Mary got your Sunday clothes ready, and everybody's been fretting about you. Say--ain't this grease and clay, on your clothes?" "Now, Mr. Siddy, you jist 'tend to your own business. What's all this blow-out about, anyway?" "It's one of the widow's parties that she's always having. This time it's for the Welshman and his sons, on account of that scrape they helped her out of the other night. And say--I can tell you something, if you want to know." "Well, what?" "Why, old Mr. Jones is going to try to spring something on the people here to-night, but I overheard him tell auntie to-day about it, as a secret, but I reckon it's not much of a secret now. Everybody knows --the widow, too, for all she tries to let on she don't. Mr. Jones was bound Huck should be here--couldn't get along with his grand secret without Huck, you know!" "Secret about what, Sid?" "About Huck tracking the robbers to the widow's. I reckon Mr. Jones was going to make a grand time over his surprise, but I bet you it will drop pretty flat." Sid chuckled in a very contented and satisfied way. "Sid, was it you that told?" "Oh, never mind who it was. SOMEBODY told--that's enough." "Sid, there's only one person in this town mean enough to do that, and that's you. If you had been in Huck's place you'd 'a' sneaked down the hill and never told anybody on the robbers. You can't do any but mean things, and you can't bear to see anybody praised for doing good ones. There--no thanks, as the widow says"--and Tom cuffed Sid's ears and helped him to the door with several kicks. "Now go and tell auntie if you dare--and to-morrow you'll catch it!" Some minutes later the widow's guests were at the supper-table, and a dozen children were propped up at little side-tables in the same room, after the fashion of that country and that day. At the proper time Mr. Jones made his little speech, in which he thanked the widow for the honor she was doing himself and his sons, but said that there was another person whose modesty-- And so forth and so on. He sprung his secret about Huck's share in the adventure in the finest dramatic manner he was master of, but the surprise it occasioned was largely counterfeit and not as clamorous and effusive as it might have been under happier circumstances. However, the widow made a pretty fair show of astonishment, and heaped so many compliments and so much gratitude upon Huck that he almost forgot the nearly intolerable discomfort of his new clothes in the entirely intolerable discomfort of being set up as a target for everybody's gaze and everybody's laudations. The widow said she meant to give Huck a home under her roof and have him educated; and that when she could spare the money she would start him in business in a modest way. Tom's chance was come. He said: "Huck don't need it. Huck's rich." Nothing but a heavy strain upon the good manners of the company kept back the due and proper complimentary laugh at this pleasant joke. But the silence was a little awkward. Tom broke it: "Huck's got money. Maybe you don't believe it, but he's got lots of it. Oh, you needn't smile--I reckon I can show you. You just wait a minute." Tom ran out of doors. The company looked at each other with a perplexed interest--and inquiringly at Huck, who was tongue-tied. "Sid, what ails Tom?" said Aunt Polly. "He--well, there ain't ever any making of that boy out. I never--" Tom entered, struggling with the weight of his sacks, and Aunt Polly did not finish her sentence. Tom poured the mass of yellow coin upon the table and said: "There--what did I tell you? Half of it's Huck's and half of it's mine!" The spectacle took the general breath away. All gazed, nobody spoke for a moment. Then there was a unanimous call for an explanation. Tom said he could furnish it, and he did. The tale was long, but brimful of interest. There was scarcely an interruption from any one to break the charm of its flow. When he had finished, Mr. Jones said: "I thought I had fixed up a little surprise for this occasion, but it don't amount to anything now. This one makes it sing mighty small, I'm willing to allow." The money was counted. The sum amounted to a little over twelve thousand dollars. It was more than any one present had ever seen at one time before, though several persons were there who were worth considerably more than that in property. CHAPTER XXXV THE reader may rest satisfied that Tom's and Huck's windfall made a mighty stir in the poor little village of St. Petersburg. So vast a sum, all in actual cash, seemed next to incredible. It was talked about, gloated over, glorified, until the reason of many of the citizens tottered under the strain of the unhealthy excitement. Every "haunted" house in St. Petersburg and the neighboring villages was dissected, plank by plank, and its foundations dug up and ransacked for hidden treasure--and not by boys, but men--pretty grave, unromantic men, too, some of them. Wherever Tom and Huck appeared they were courted, admired, stared at. The boys were not able to remember that their remarks had possessed weight before; but now their sayings were treasured and repeated; everything they did seemed somehow to be regarded as remarkable; they had evidently lost the power of doing and saying commonplace things; moreover, their past history was raked up and discovered to bear marks of conspicuous originality. The village paper published biographical sketches of the boys. The Widow Douglas put Huck's money out at six per cent., and Judge Thatcher did the same with Tom's at Aunt Polly's request. Each lad had an income, now, that was simply prodigious--a dollar for every week-day in the year and half of the Sundays. It was just what the minister got --no, it was what he was promised--he generally couldn't collect it. A dollar and a quarter a week would board, lodge, and school a boy in those old simple days--and clothe him and wash him, too, for that matter. Judge Thatcher had conceived a great opinion of Tom. He said that no commonplace boy would ever have got his daughter out of the cave. When Becky told her father, in strict confidence, how Tom had taken her whipping at school, the Judge was visibly moved; and when she pleaded grace for the mighty lie which Tom had told in order to shift that whipping from her shoulders to his own, the Judge said with a fine outburst that it was a noble, a generous, a magnanimous lie--a lie that was worthy to hold up its head and march down through history breast to breast with George Washington's lauded Truth about the hatchet! Becky thought her father had never looked so tall and so superb as when he walked the floor and stamped his foot and said that. She went straight off and told Tom about it. Judge Thatcher hoped to see Tom a great lawyer or a great soldier some day. He said he meant to look to it that Tom should be admitted to the National Military Academy and afterward trained in the best law school in the country, in order that he might be ready for either career or both. Huck Finn's wealth and the fact that he was now under the Widow Douglas' protection introduced him into society--no, dragged him into it, hurled him into it--and his sufferings were almost more than he could bear. The widow's servants kept him clean and neat, combed and brushed, and they bedded him nightly in unsympathetic sheets that had not one little spot or stain which he could press to his heart and know for a friend. He had to eat with a knife and fork; he had to use napkin, cup, and plate; he had to learn his book, he had to go to church; he had to talk so properly that speech was become insipid in his mouth; whithersoever he turned, the bars and shackles of civilization shut him in and bound him hand and foot. He bravely bore his miseries three weeks, and then one day turned up missing. For forty-eight hours the widow hunted for him everywhere in great distress. The public were profoundly concerned; they searched high and low, they dragged the river for his body. Early the third morning Tom Sawyer wisely went poking among some old empty hogsheads down behind the abandoned slaughter-house, and in one of them he found the refugee. Huck had slept there; he had just breakfasted upon some stolen odds and ends of food, and was lying off, now, in comfort, with his pipe. He was unkempt, uncombed, and clad in the same old ruin of rags that had made him picturesque in the days when he was free and happy. Tom routed him out, told him the trouble he had been causing, and urged him to go home. Huck's face lost its tranquil content, and took a melancholy cast. He said: "Don't talk about it, Tom. I've tried it, and it don't work; it don't work, Tom. It ain't for me; I ain't used to it. The widder's good to me, and friendly; but I can't stand them ways. She makes me get up just at the same time every morning; she makes me wash, they comb me all to thunder; she won't let me sleep in the woodshed; I got to wear them blamed clothes that just smothers me, Tom; they don't seem to any air git through 'em, somehow; and they're so rotten nice that I can't set down, nor lay down, nor roll around anywher's; I hain't slid on a cellar-door for--well, it 'pears to be years; I got to go to church and sweat and sweat--I hate them ornery sermons! I can't ketch a fly in there, I can't chaw. I got to wear shoes all Sunday. The widder eats by a bell; she goes to bed by a bell; she gits up by a bell--everything's so awful reg'lar a body can't stand it." "Well, everybody does that way, Huck." "Tom, it don't make no difference. I ain't everybody, and I can't STAND it. It's awful to be tied up so. And grub comes too easy--I don't take no interest in vittles, that way. I got to ask to go a-fishing; I got to ask to go in a-swimming--dern'd if I hain't got to ask to do everything. Well, I'd got to talk so nice it wasn't no comfort--I'd got to go up in the attic and rip out awhile, every day, to git a taste in my mouth, or I'd a died, Tom. The widder wouldn't let me smoke; she wouldn't let me yell, she wouldn't let me gape, nor stretch, nor scratch, before folks--" [Then with a spasm of special irritation and injury]--"And dad fetch it, she prayed all the time! I never see such a woman! I HAD to shove, Tom--I just had to. And besides, that school's going to open, and I'd a had to go to it--well, I wouldn't stand THAT, Tom. Looky here, Tom, being rich ain't what it's cracked up to be. It's just worry and worry, and sweat and sweat, and a-wishing you was dead all the time. Now these clothes suits me, and this bar'l suits me, and I ain't ever going to shake 'em any more. Tom, I wouldn't ever got into all this trouble if it hadn't 'a' ben for that money; now you just take my sheer of it along with your'n, and gimme a ten-center sometimes--not many times, becuz I don't give a dern for a thing 'thout it's tollable hard to git--and you go and beg off for me with the widder." "Oh, Huck, you know I can't do that. 'Tain't fair; and besides if you'll try this thing just a while longer you'll come to like it." "Like it! Yes--the way I'd like a hot stove if I was to set on it long enough. No, Tom, I won't be rich, and I won't live in them cussed smothery houses. I like the woods, and the river, and hogsheads, and I'll stick to 'em, too. Blame it all! just as we'd got guns, and a cave, and all just fixed to rob, here this dern foolishness has got to come up and spile it all!" Tom saw his opportunity-- "Lookyhere, Huck, being rich ain't going to keep me back from turning robber." "No! Oh, good-licks; are you in real dead-wood earnest, Tom?" "Just as dead earnest as I'm sitting here. But Huck, we can't let you into the gang if you ain't respectable, you know." Huck's joy was quenched. "Can't let me in, Tom? Didn't you let me go for a pirate?" "Yes, but that's different. A robber is more high-toned than what a pirate is--as a general thing. In most countries they're awful high up in the nobility--dukes and such." "Now, Tom, hain't you always ben friendly to me? You wouldn't shet me out, would you, Tom? You wouldn't do that, now, WOULD you, Tom?" "Huck, I wouldn't want to, and I DON'T want to--but what would people say? Why, they'd say, 'Mph! Tom Sawyer's Gang! pretty low characters in it!' They'd mean you, Huck. You wouldn't like that, and I wouldn't." Huck was silent for some time, engaged in a mental struggle. Finally he said: "Well, I'll go back to the widder for a month and tackle it and see if I can come to stand it, if you'll let me b'long to the gang, Tom." "All right, Huck, it's a whiz! Come along, old chap, and I'll ask the widow to let up on you a little, Huck." "Will you, Tom--now will you? That's good. If she'll let up on some of the roughest things, I'll smoke private and cuss private, and crowd through or bust. When you going to start the gang and turn robbers?" "Oh, right off. We'll get the boys together and have the initiation to-night, maybe." "Have the which?" "Have the initiation." "What's that?" "It's to swear to stand by one another, and never tell the gang's secrets, even if you're chopped all to flinders, and kill anybody and all his family that hurts one of the gang." "That's gay--that's mighty gay, Tom, I tell you." "Well, I bet it is. And all that swearing's got to be done at midnight, in the lonesomest, awfulest place you can find--a ha'nted house is the best, but they're all ripped up now." "Well, midnight's good, anyway, Tom." "Yes, so it is. And you've got to swear on a coffin, and sign it with blood." "Now, that's something LIKE! Why, it's a million times bullier than pirating. I'll stick to the widder till I rot, Tom; and if I git to be a reg'lar ripper of a robber, and everybody talking 'bout it, I reckon she'll be proud she snaked me in out of the wet." CONCLUSION SO endeth this chronicle. It being strictly a history of a BOY, it must stop here; the story could not go much further without becoming the history of a MAN. When one writes a novel about grown people, he knows exactly where to stop--that is, with a marriage; but when he writes of juveniles, he must stop where he best can. Most of the characters that perform in this book still live, and are prosperous and happy. Some day it may seem worth while to take up the story of the younger ones again and see what sort of men and women they turned out to be; therefore it will be wisest not to reveal any of that part of their lives at present. Produced by David Widger. The previous edition was updated by Jose Menendez. THE ADVENTURES OF TOM SAWYER BY MARK TWAIN (Samuel Langhorne Clemens) P R E F A C E MOST of the adventures recorded in this book really occurred; one or two were experiences of my own, the rest those of boys who were schoolmates of mine. Huck Finn is drawn from life; Tom Sawyer also, but not from an individual--he is a combination of the characteristics of three boys whom I knew, and therefore belongs to the composite order of architecture. The odd superstitions touched upon were all prevalent among children and slaves in the West at the period of this story--that is to say, thirty or forty years ago. Although my book is intended mainly for the entertainment of boys and girls, I hope it will not be shunned by men and women on that account, for part of my plan has been to try to pleasantly remind adults of what they once were themselves, and of how they felt and thought and talked, and what queer enterprises they sometimes engaged in. THE AUTHOR. HARTFORD, 1876. T O M S A W Y E R CHAPTER I "TOM!" No answer. "TOM!" No answer. "What's gone with that boy, I wonder? You TOM!" No answer. The old lady pulled her spectacles down and looked over them about the room; then she put them up and looked out under them. She seldom or never looked THROUGH them for so small a thing as a boy; they were her state pair, the pride of her heart, and were built for "style," not service--she could have seen through a pair of stove-lids just as well. She looked perplexed for a moment, and then said, not fiercely, but still loud enough for the furniture to hear: "Well, I lay if I get hold of you I'll--" She did not finish, for by this time she was bending down and punching under the bed with the broom, and so she needed breath to punctuate the punches with. She resurrected nothing but the cat. "I never did see the beat of that boy!" She went to the open door and stood in it and looked out among the tomato vines and "jimpson" weeds that constituted the garden. No Tom. So she lifted up her voice at an angle calculated for distance and shouted: "Y-o-u-u TOM!" There was a slight noise behind her and she turned just in time to seize a small boy by the slack of his roundabout and arrest his flight. "There! I might 'a' thought of that closet. What you been doing in there?" "Nothing." "Nothing! Look at your hands. And look at your mouth. What IS that truck?" "I don't know, aunt." "Well, I know. It's jam--that's what it is. Forty times I've said if you didn't let that jam alone I'd skin you. Hand me that switch." The switch hovered in the air--the peril was desperate-- "My! Look behind you, aunt!" The old lady whirled round, and snatched her skirts out of danger. The lad fled on the instant, scrambled up the high board-fence, and disappeared over it. His aunt Polly stood surprised a moment, and then broke into a gentle laugh. "Hang the boy, can't I never learn anything? Ain't he played me tricks enough like that for me to be looking out for him by this time? But old fools is the biggest fools there is. Can't learn an old dog new tricks, as the saying is. But my goodness, he never plays them alike, two days, and how is a body to know what's coming? He 'pears to know just how long he can torment me before I get my dander up, and he knows if he can make out to put me off for a minute or make me laugh, it's all down again and I can't hit him a lick. I ain't doing my duty by that boy, and that's the Lord's truth, goodness knows. Spare the rod and spile the child, as the Good Book says. I'm a laying up sin and suffering for us both, I know. He's full of the Old Scratch, but laws-a-me! he's my own dead sister's boy, poor thing, and I ain't got the heart to lash him, somehow. Every time I let him off, my conscience does hurt me so, and every time I hit him my old heart most breaks. Well-a-well, man that is born of woman is of few days and full of trouble, as the Scripture says, and I reckon it's so. He'll play hookey this evening, * and [* Southwestern for "afternoon"] I'll just be obleeged to make him work, to-morrow, to punish him. It's mighty hard to make him work Saturdays, when all the boys is having holiday, but he hates work more than he hates anything else, and I've GOT to do some of my duty by him, or I'll be the ruination of the child." Tom did play hookey, and he had a very good time. He got back home barely in season to help Jim, the small colored boy, saw next-day's wood and split the kindlings before supper--at least he was there in time to tell his adventures to Jim while Jim did three-fourths of the work. Tom's younger brother (or rather half-brother) Sid was already through with his part of the work (picking up chips), for he was a quiet boy, and had no adventurous, troublesome ways. While Tom was eating his supper, and stealing sugar as opportunity offered, Aunt Polly asked him questions that were full of guile, and very deep--for she wanted to trap him into damaging revealments. Like many other simple-hearted souls, it was her pet vanity to believe she was endowed with a talent for dark and mysterious diplomacy, and she loved to contemplate her most transparent devices as marvels of low cunning. Said she: "Tom, it was middling warm in school, warn't it?" "Yes'm." "Powerful warm, warn't it?" "Yes'm." "Didn't you want to go in a-swimming, Tom?" A bit of a scare shot through Tom--a touch of uncomfortable suspicion. He searched Aunt Polly's face, but it told him nothing. So he said: "No'm--well, not very much." The old lady reached out her hand and felt Tom's shirt, and said: "But you ain't too warm now, though." And it flattered her to reflect that she had discovered that the shirt was dry without anybody knowing that that was what she had in her mind. But in spite of her, Tom knew where the wind lay, now. So he forestalled what might be the next move: "Some of us pumped on our heads--mine's damp yet. See?" Aunt Polly was vexed to think she had overlooked that bit of circumstantial evidence, and missed a trick. Then she had a new inspiration: "Tom, you didn't have to undo your shirt collar where I sewed it, to pump on your head, did you? Unbutton your jacket!" The trouble vanished out of Tom's face. He opened his jacket. His shirt collar was securely sewed. "Bother! Well, go 'long with you. I'd made sure you'd played hookey and been a-swimming. But I forgive ye, Tom. I reckon you're a kind of a singed cat, as the saying is--better'n you look. THIS time." She was half sorry her sagacity had miscarried, and half glad that Tom had stumbled into obedient conduct for once. But Sidney said: "Well, now, if I didn't think you sewed his collar with white thread, but it's black." "Why, I did sew it with white! Tom!" But Tom did not wait for the rest. As he went out at the door he said: "Siddy, I'll lick you for that." In a safe place Tom examined two large needles which were thrust into the lapels of his jacket, and had thread bound about them--one needle carried white thread and the other black. He said: "She'd never noticed if it hadn't been for Sid. Confound it! sometimes she sews it with white, and sometimes she sews it with black. I wish to geeminy she'd stick to one or t'other--I can't keep the run of 'em. But I bet you I'll lam Sid for that. I'll learn him!" He was not the Model Boy of the village. He knew the model boy very well though--and loathed him. Within two minutes, or even less, he had forgotten all his troubles. Not because his troubles were one whit less heavy and bitter to him than a man's are to a man, but because a new and powerful interest bore them down and drove them out of his mind for the time--just as men's misfortunes are forgotten in the excitement of new enterprises. This new interest was a valued novelty in whistling, which he had just acquired from a negro, and he was suffering to practise it undisturbed. It consisted in a peculiar bird-like turn, a sort of liquid warble, produced by touching the tongue to the roof of the mouth at short intervals in the midst of the music--the reader probably remembers how to do it, if he has ever been a boy. Diligence and attention soon gave him the knack of it, and he strode down the street with his mouth full of harmony and his soul full of gratitude. He felt much as an astronomer feels who has discovered a new planet--no doubt, as far as strong, deep, unalloyed pleasure is concerned, the advantage was with the boy, not the astronomer. The summer evenings were long. It was not dark, yet. Presently Tom checked his whistle. A stranger was before him--a boy a shade larger than himself. A new-comer of any age or either sex was an impressive curiosity in the poor little shabby village of St. Petersburg. This boy was well dressed, too--well dressed on a week-day. This was simply astounding. His cap was a dainty thing, his close-buttoned blue cloth roundabout was new and natty, and so were his pantaloons. He had shoes on--and it was only Friday. He even wore a necktie, a bright bit of ribbon. He had a citified air about him that ate into Tom's vitals. The more Tom stared at the splendid marvel, the higher he turned up his nose at his finery and the shabbier and shabbier his own outfit seemed to him to grow. Neither boy spoke. If one moved, the other moved--but only sidewise, in a circle; they kept face to face and eye to eye all the time. Finally Tom said: "I can lick you!" "I'd like to see you try it." "Well, I can do it." "No you can't, either." "Yes I can." "No you can't." "I can." "You can't." "Can!" "Can't!" An uncomfortable pause. Then Tom said: "What's your name?" "'Tisn't any of your business, maybe." "Well I 'low I'll MAKE it my business." "Well why don't you?" "If you say much, I will." "Much--much--MUCH. There now." "Oh, you think you're mighty smart, DON'T you? I could lick you with one hand tied behind me, if I wanted to." "Well why don't you DO it? You SAY you can do it." "Well I WILL, if you fool with me." "Oh yes--I've seen whole families in the same fix." "Smarty! You think you're SOME, now, DON'T you? Oh, what a hat!" "You can lump that hat if you don't like it. I dare you to knock it off--and anybody that'll take a dare will suck eggs." "You're a liar!" "You're another." "You're a fighting liar and dasn't take it up." "Aw--take a walk!" "Say--if you give me much more of your sass I'll take and bounce a rock off'n your head." "Oh, of COURSE you will." "Well I WILL." "Well why don't you DO it then? What do you keep SAYING you will for? Why don't you DO it? It's because you're afraid." "I AIN'T afraid." "You are." "I ain't." "You are." Another pause, and more eying and sidling around each other. Presently they were shoulder to shoulder. Tom said: "Get away from here!" "Go away yourself!" "I won't." "I won't either." So they stood, each with a foot placed at an angle as a brace, and both shoving with might and main, and glowering at each other with hate. But neither could get an advantage. After struggling till both were hot and flushed, each relaxed his strain with watchful caution, and Tom said: "You're a coward and a pup. I'll tell my big brother on you, and he can thrash you with his little finger, and I'll make him do it, too." "What do I care for your big brother? I've got a brother that's bigger than he is--and what's more, he can throw him over that fence, too." [Both brothers were imaginary.] "That's a lie." "YOUR saying so don't make it so." Tom drew a line in the dust with his big toe, and said: "I dare you to step over that, and I'll lick you till you can't stand up. Anybody that'll take a dare will steal sheep." The new boy stepped over promptly, and said: "Now you said you'd do it, now let's see you do it." "Don't you crowd me now; you better look out." "Well, you SAID you'd do it--why don't you do it?" "By jingo! for two cents I WILL do it." The new boy took two broad coppers out of his pocket and held them out with derision. Tom struck them to the ground. In an instant both boys were rolling and tumbling in the dirt, gripped together like cats; and for the space of a minute they tugged and tore at each other's hair and clothes, punched and scratched each other's nose, and covered themselves with dust and glory. Presently the confusion took form, and through the fog of battle Tom appeared, seated astride the new boy, and pounding him with his fists. "Holler 'nuff!" said he. The boy only struggled to free himself. He was crying--mainly from rage. "Holler 'nuff!"--and the pounding went on. At last the stranger got out a smothered "'Nuff!" and Tom let him up and said: "Now that'll learn you. Better look out who you're fooling with next time." The new boy went off brushing the dust from his clothes, sobbing, snuffling, and occasionally looking back and shaking his head and threatening what he would do to Tom the "next time he caught him out." To which Tom responded with jeers, and started off in high feather, and as soon as his back was turned the new boy snatched up a stone, threw it and hit him between the shoulders and then turned tail and ran like an antelope. Tom chased the traitor home, and thus found out where he lived. He then held a position at the gate for some time, daring the enemy to come outside, but the enemy only made faces at him through the window and declined. At last the enemy's mother appeared, and called Tom a bad, vicious, vulgar child, and ordered him away. So he went away; but he said he "'lowed" to "lay" for that boy. He got home pretty late that night, and when he climbed cautiously in at the window, he uncovered an ambuscade, in the person of his aunt; and when she saw the state his clothes were in her resolution to turn his Saturday holiday into captivity at hard labor became adamantine in its firmness. CHAPTER II SATURDAY morning was come, and all the summer world was bright and fresh, and brimming with life. There was a song in every heart; and if the heart was young the music issued at the lips. There was cheer in every face and a spring in every step. The locust-trees were in bloom and the fragrance of the blossoms filled the air. Cardiff Hill, beyond the village and above it, was green with vegetation and it lay just far enough away to seem a Delectable Land, dreamy, reposeful, and inviting. Tom appeared on the sidewalk with a bucket of whitewash and a long-handled brush. He surveyed the fence, and all gladness left him and a deep melancholy settled down upon his spirit. Thirty yards of board fence nine feet high. Life to him seemed hollow, and existence but a burden. Sighing, he dipped his brush and passed it along the topmost plank; repeated the operation; did it again; compared the insignificant whitewashed streak with the far-reaching continent of unwhitewashed fence, and sat down on a tree-box discouraged. Jim came skipping out at the gate with a tin pail, and singing Buffalo Gals. Bringing water from the town pump had always been hateful work in Tom's eyes, before, but now it did not strike him so. He remembered that there was company at the pump. White, mulatto, and negro boys and girls were always there waiting their turns, resting, trading playthings, quarrelling, fighting, skylarking. And he remembered that although the pump was only a hundred and fifty yards off, Jim never got back with a bucket of water under an hour--and even then somebody generally had to go after him. Tom said: "Say, Jim, I'll fetch the water if you'll whitewash some." Jim shook his head and said: "Can't, Mars Tom. Ole missis, she tole me I got to go an' git dis water an' not stop foolin' roun' wid anybody. She say she spec' Mars Tom gwine to ax me to whitewash, an' so she tole me go 'long an' 'tend to my own business--she 'lowed SHE'D 'tend to de whitewashin'." "Oh, never you mind what she said, Jim. That's the way she always talks. Gimme the bucket--I won't be gone only a a minute. SHE won't ever know." "Oh, I dasn't, Mars Tom. Ole missis she'd take an' tar de head off'n me. 'Deed she would." "SHE! She never licks anybody--whacks 'em over the head with her thimble--and who cares for that, I'd like to know. She talks awful, but talk don't hurt--anyways it don't if she don't cry. Jim, I'll give you a marvel. I'll give you a white alley!" Jim began to waver. "White alley, Jim! And it's a bully taw." "My! Dat's a mighty gay marvel, I tell you! But Mars Tom I's powerful 'fraid ole missis--" "And besides, if you will I'll show you my sore toe." Jim was only human--this attraction was too much for him. He put down his pail, took the white alley, and bent over the toe with absorbing interest while the bandage was being unwound. In another moment he was flying down the street with his pail and a tingling rear, Tom was whitewashing with vigor, and Aunt Polly was retiring from the field with a slipper in her hand and triumph in her eye. But Tom's energy did not last. He began to think of the fun he had planned for this day, and his sorrows multiplied. Soon the free boys would come tripping along on all sorts of delicious expeditions, and they would make a world of fun of him for having to work--the very thought of it burnt him like fire. He got out his worldly wealth and examined it--bits of toys, marbles, and trash; enough to buy an exchange of WORK, maybe, but not half enough to buy so much as half an hour of pure freedom. So he returned his straitened means to his pocket, and gave up the idea of trying to buy the boys. At this dark and hopeless moment an inspiration burst upon him! Nothing less than a great, magnificent inspiration. He took up his brush and went tranquilly to work. Ben Rogers hove in sight presently--the very boy, of all boys, whose ridicule he had been dreading. Ben's gait was the hop-skip-and-jump--proof enough that his heart was light and his anticipations high. He was eating an apple, and giving a long, melodious whoop, at intervals, followed by a deep-toned ding-dong-dong, ding-dong-dong, for he was personating a steamboat. As he drew near, he slackened speed, took the middle of the street, leaned far over to starboard and rounded to ponderously and with laborious pomp and circumstance--for he was personating the Big Missouri, and considered himself to be drawing nine feet of water. He was boat and captain and engine-bells combined, so he had to imagine himself standing on his own hurricane-deck giving the orders and executing them: "Stop her, sir! Ting-a-ling-ling!" The headway ran almost out, and he drew up slowly toward the sidewalk. "Ship up to back! Ting-a-ling-ling!" His arms straightened and stiffened down his sides. "Set her back on the stabboard! Ting-a-ling-ling! Chow! ch-chow-wow! Chow!" His right hand, meantime, describing stately circles--for it was representing a forty-foot wheel. "Let her go back on the labboard! Ting-a-lingling! Chow-ch-chow-chow!" The left hand began to describe circles. "Stop the stabboard! Ting-a-ling-ling! Stop the labboard! Come ahead on the stabboard! Stop her! Let your outside turn over slow! Ting-a-ling-ling! Chow-ow-ow! Get out that head-line! LIVELY now! Come--out with your spring-line--what're you about there! Take a turn round that stump with the bight of it! Stand by that stage, now--let her go! Done with the engines, sir! Ting-a-ling-ling! SH'T! S'H'T! SH'T!" (trying the gauge-cocks). Tom went on whitewashing--paid no attention to the steamboat. Ben stared a moment and then said: "Hi-YI! YOU'RE up a stump, ain't you!" No answer. Tom surveyed his last touch with the eye of an artist, then he gave his brush another gentle sweep and surveyed the result, as before. Ben ranged up alongside of him. Tom's mouth watered for the apple, but he stuck to his work. Ben said: "Hello, old chap, you got to work, hey?" Tom wheeled suddenly and said: "Why, it's you, Ben! I warn't noticing." "Say--I'm going in a-swimming, I am. Don't you wish you could? But of course you'd druther WORK--wouldn't you? Course you would!" Tom contemplated the boy a bit, and said: "What do you call work?" "Why, ain't THAT work?" Tom resumed his whitewashing, and answered carelessly: "Well, maybe it is, and maybe it ain't. All I know, is, it suits Tom Sawyer." "Oh come, now, you don't mean to let on that you LIKE it?" The brush continued to move. "Like it? Well, I don't see why I oughtn't to like it. Does a boy get a chance to whitewash a fence every day?" That put the thing in a new light. Ben stopped nibbling his apple. Tom swept his brush daintily back and forth--stepped back to note the effect--added a touch here and there--criticised the effect again--Ben watching every move and getting more and more interested, more and more absorbed. Presently he said: "Say, Tom, let ME whitewash a little." Tom considered, was about to consent; but he altered his mind: "No--no--I reckon it wouldn't hardly do, Ben. You see, Aunt Polly's awful particular about this fence--right here on the street, you know --but if it was the back fence I wouldn't mind and SHE wouldn't. Yes, she's awful particular about this fence; it's got to be done very careful; I reckon there ain't one boy in a thousand, maybe two thousand, that can do it the way it's got to be done." "No--is that so? Oh come, now--lemme just try. Only just a little--I'd let YOU, if you was me, Tom." "Ben, I'd like to, honest injun; but Aunt Polly--well, Jim wanted to do it, but she wouldn't let him; Sid wanted to do it, and she wouldn't let Sid. Now don't you see how I'm fixed? If you was to tackle this fence and anything was to happen to it--" "Oh, shucks, I'll be just as careful. Now lemme try. Say--I'll give you the core of my apple." "Well, here--No, Ben, now don't. I'm afeard--" "I'll give you ALL of it!" Tom gave up the brush with reluctance in his face, but alacrity in his heart. And while the late steamer Big Missouri worked and sweated in the sun, the retired artist sat on a barrel in the shade close by, dangled his legs, munched his apple, and planned the slaughter of more innocents. There was no lack of material; boys happened along every little while; they came to jeer, but remained to whitewash. By the time Ben was fagged out, Tom had traded the next chance to Billy Fisher for a kite, in good repair; and when he played out, Johnny Miller bought in for a dead rat and a string to swing it with--and so on, and so on, hour after hour. And when the middle of the afternoon came, from being a poor poverty-stricken boy in the morning, Tom was literally rolling in wealth. He had besides the things before mentioned, twelve marbles, part of a jews-harp, a piece of blue bottle-glass to look through, a spool cannon, a key that wouldn't unlock anything, a fragment of chalk, a glass stopper of a decanter, a tin soldier, a couple of tadpoles, six fire-crackers, a kitten with only one eye, a brass doorknob, a dog-collar--but no dog--the handle of a knife, four pieces of orange-peel, and a dilapidated old window sash. He had had a nice, good, idle time all the while--plenty of company --and the fence had three coats of whitewash on it! If he hadn't run out of whitewash he would have bankrupted every boy in the village. Tom said to himself that it was not such a hollow world, after all. He had discovered a great law of human action, without knowing it--namely, that in order to make a man or a boy covet a thing, it is only necessary to make the thing difficult to attain. If he had been a great and wise philosopher, like the writer of this book, he would now have comprehended that Work consists of whatever a body is OBLIGED to do, and that Play consists of whatever a body is not obliged to do. And this would help him to understand why constructing artificial flowers or performing on a tread-mill is work, while rolling ten-pins or climbing Mont Blanc is only amusement. There are wealthy gentlemen in England who drive four-horse passenger-coaches twenty or thirty miles on a daily line, in the summer, because the privilege costs them considerable money; but if they were offered wages for the service, that would turn it into work and then they would resign. The boy mused awhile over the substantial change which had taken place in his worldly circumstances, and then wended toward headquarters to report. CHAPTER III TOM presented himself before Aunt Polly, who was sitting by an open window in a pleasant rearward apartment, which was bedroom, breakfast-room, dining-room, and library, combined. The balmy summer air, the restful quiet, the odor of the flowers, and the drowsing murmur of the bees had had their effect, and she was nodding over her knitting --for she had no company but the cat, and it was asleep in her lap. Her spectacles were propped up on her gray head for safety. She had thought that of course Tom had deserted long ago, and she wondered at seeing him place himself in her power again in this intrepid way. He said: "Mayn't I go and play now, aunt?" "What, a'ready? How much have you done?" "It's all done, aunt." "Tom, don't lie to me--I can't bear it." "I ain't, aunt; it IS all done." Aunt Polly placed small trust in such evidence. She went out to see for herself; and she would have been content to find twenty per cent. of Tom's statement true. When she found the entire fence whitewashed, and not only whitewashed but elaborately coated and recoated, and even a streak added to the ground, her astonishment was almost unspeakable. She said: "Well, I never! There's no getting round it, you can work when you're a mind to, Tom." And then she diluted the compliment by adding, "But it's powerful seldom you're a mind to, I'm bound to say. Well, go 'long and play; but mind you get back some time in a week, or I'll tan you." She was so overcome by the splendor of his achievement that she took him into the closet and selected a choice apple and delivered it to him, along with an improving lecture upon the added value and flavor a treat took to itself when it came without sin through virtuous effort. And while she closed with a happy Scriptural flourish, he "hooked" a doughnut. Then he skipped out, and saw Sid just starting up the outside stairway that led to the back rooms on the second floor. Clods were handy and the air was full of them in a twinkling. They raged around Sid like a hail-storm; and before Aunt Polly could collect her surprised faculties and sally to the rescue, six or seven clods had taken personal effect, and Tom was over the fence and gone. There was a gate, but as a general thing he was too crowded for time to make use of it. His soul was at peace, now that he had settled with Sid for calling attention to his black thread and getting him into trouble. Tom skirted the block, and came round into a muddy alley that led by the back of his aunt's cow-stable. He presently got safely beyond the reach of capture and punishment, and hastened toward the public square of the village, where two "military" companies of boys had met for conflict, according to previous appointment. Tom was General of one of these armies, Joe Harper (a bosom friend) General of the other. These two great commanders did not condescend to fight in person--that being better suited to the still smaller fry--but sat together on an eminence and conducted the field operations by orders delivered through aides-de-camp. Tom's army won a great victory, after a long and hard-fought battle. Then the dead were counted, prisoners exchanged, the terms of the next disagreement agreed upon, and the day for the necessary battle appointed; after which the armies fell into line and marched away, and Tom turned homeward alone. As he was passing by the house where Jeff Thatcher lived, he saw a new girl in the garden--a lovely little blue-eyed creature with yellow hair plaited into two long-tails, white summer frock and embroidered pantalettes. The fresh-crowned hero fell without firing a shot. A certain Amy Lawrence vanished out of his heart and left not even a memory of herself behind. He had thought he loved her to distraction; he had regarded his passion as adoration; and behold it was only a poor little evanescent partiality. He had been months winning her; she had confessed hardly a week ago; he had been the happiest and the proudest boy in the world only seven short days, and here in one instant of time she had gone out of his heart like a casual stranger whose visit is done. He worshipped this new angel with furtive eye, till he saw that she had discovered him; then he pretended he did not know she was present, and began to "show off" in all sorts of absurd boyish ways, in order to win her admiration. He kept up this grotesque foolishness for some time; but by-and-by, while he was in the midst of some dangerous gymnastic performances, he glanced aside and saw that the little girl was wending her way toward the house. Tom came up to the fence and leaned on it, grieving, and hoping she would tarry yet awhile longer. She halted a moment on the steps and then moved toward the door. Tom heaved a great sigh as she put her foot on the threshold. But his face lit up, right away, for she tossed a pansy over the fence a moment before she disappeared. The boy ran around and stopped within a foot or two of the flower, and then shaded his eyes with his hand and began to look down street as if he had discovered something of interest going on in that direction. Presently he picked up a straw and began trying to balance it on his nose, with his head tilted far back; and as he moved from side to side, in his efforts, he edged nearer and nearer toward the pansy; finally his bare foot rested upon it, his pliant toes closed upon it, and he hopped away with the treasure and disappeared round the corner. But only for a minute--only while he could button the flower inside his jacket, next his heart--or next his stomach, possibly, for he was not much posted in anatomy, and not hypercritical, anyway. He returned, now, and hung about the fence till nightfall, "showing off," as before; but the girl never exhibited herself again, though Tom comforted himself a little with the hope that she had been near some window, meantime, and been aware of his attentions. Finally he strode home reluctantly, with his poor head full of visions. All through supper his spirits were so high that his aunt wondered "what had got into the child." He took a good scolding about clodding Sid, and did not seem to mind it in the least. He tried to steal sugar under his aunt's very nose, and got his knuckles rapped for it. He said: "Aunt, you don't whack Sid when he takes it." "Well, Sid don't torment a body the way you do. You'd be always into that sugar if I warn't watching you." Presently she stepped into the kitchen, and Sid, happy in his immunity, reached for the sugar-bowl--a sort of glorying over Tom which was wellnigh unbearable. But Sid's fingers slipped and the bowl dropped and broke. Tom was in ecstasies. In such ecstasies that he even controlled his tongue and was silent. He said to himself that he would not speak a word, even when his aunt came in, but would sit perfectly still till she asked who did the mischief; and then he would tell, and there would be nothing so good in the world as to see that pet model "catch it." He was so brimful of exultation that he could hardly hold himself when the old lady came back and stood above the wreck discharging lightnings of wrath from over her spectacles. He said to himself, "Now it's coming!" And the next instant he was sprawling on the floor! The potent palm was uplifted to strike again when Tom cried out: "Hold on, now, what 'er you belting ME for?--Sid broke it!" Aunt Polly paused, perplexed, and Tom looked for healing pity. But when she got her tongue again, she only said: "Umf! Well, you didn't get a lick amiss, I reckon. You been into some other audacious mischief when I wasn't around, like enough." Then her conscience reproached her, and she yearned to say something kind and loving; but she judged that this would be construed into a confession that she had been in the wrong, and discipline forbade that. So she kept silence, and went about her affairs with a troubled heart. Tom sulked in a corner and exalted his woes. He knew that in her heart his aunt was on her knees to him, and he was morosely gratified by the consciousness of it. He would hang out no signals, he would take notice of none. He knew that a yearning glance fell upon him, now and then, through a film of tears, but he refused recognition of it. He pictured himself lying sick unto death and his aunt bending over him beseeching one little forgiving word, but he would turn his face to the wall, and die with that word unsaid. Ah, how would she feel then? And he pictured himself brought home from the river, dead, with his curls all wet, and his sore heart at rest. How she would throw herself upon him, and how her tears would fall like rain, and her lips pray God to give her back her boy and she would never, never abuse him any more! But he would lie there cold and white and make no sign--a poor little sufferer, whose griefs were at an end. He so worked upon his feelings with the pathos of these dreams, that he had to keep swallowing, he was so like to choke; and his eyes swam in a blur of water, which overflowed when he winked, and ran down and trickled from the end of his nose. And such a luxury to him was this petting of his sorrows, that he could not bear to have any worldly cheeriness or any grating delight intrude upon it; it was too sacred for such contact; and so, presently, when his cousin Mary danced in, all alive with the joy of seeing home again after an age-long visit of one week to the country, he got up and moved in clouds and darkness out at one door as she brought song and sunshine in at the other. He wandered far from the accustomed haunts of boys, and sought desolate places that were in harmony with his spirit. A log raft in the river invited him, and he seated himself on its outer edge and contemplated the dreary vastness of the stream, wishing, the while, that he could only be drowned, all at once and unconsciously, without undergoing the uncomfortable routine devised by nature. Then he thought of his flower. He got it out, rumpled and wilted, and it mightily increased his dismal felicity. He wondered if she would pity him if she knew? Would she cry, and wish that she had a right to put her arms around his neck and comfort him? Or would she turn coldly away like all the hollow world? This picture brought such an agony of pleasurable suffering that he worked it over and over again in his mind and set it up in new and varied lights, till he wore it threadbare. At last he rose up sighing and departed in the darkness. About half-past nine or ten o'clock he came along the deserted street to where the Adored Unknown lived; he paused a moment; no sound fell upon his listening ear; a candle was casting a dull glow upon the curtain of a second-story window. Was the sacred presence there? He climbed the fence, threaded his stealthy way through the plants, till he stood under that window; he looked up at it long, and with emotion; then he laid him down on the ground under it, disposing himself upon his back, with his hands clasped upon his breast and holding his poor wilted flower. And thus he would die--out in the cold world, with no shelter over his homeless head, no friendly hand to wipe the death-damps from his brow, no loving face to bend pityingly over him when the great agony came. And thus SHE would see him when she looked out upon the glad morning, and oh! would she drop one little tear upon his poor, lifeless form, would she heave one little sigh to see a bright young life so rudely blighted, so untimely cut down? The window went up, a maid-servant's discordant voice profaned the holy calm, and a deluge of water drenched the prone martyr's remains! The strangling hero sprang up with a relieving snort. There was a whiz as of a missile in the air, mingled with the murmur of a curse, a sound as of shivering glass followed, and a small, vague form went over the fence and shot away in the gloom. Not long after, as Tom, all undressed for bed, was surveying his drenched garments by the light of a tallow dip, Sid woke up; but if he had any dim idea of making any "references to allusions," he thought better of it and held his peace, for there was danger in Tom's eye. Tom turned in without the added vexation of prayers, and Sid made mental note of the omission. CHAPTER IV THE sun rose upon a tranquil world, and beamed down upon the peaceful village like a benediction. Breakfast over, Aunt Polly had family worship: it began with a prayer built from the ground up of solid courses of Scriptural quotations, welded together with a thin mortar of originality; and from the summit of this she delivered a grim chapter of the Mosaic Law, as from Sinai. Then Tom girded up his loins, so to speak, and went to work to "get his verses." Sid had learned his lesson days before. Tom bent all his energies to the memorizing of five verses, and he chose part of the Sermon on the Mount, because he could find no verses that were shorter. At the end of half an hour Tom had a vague general idea of his lesson, but no more, for his mind was traversing the whole field of human thought, and his hands were busy with distracting recreations. Mary took his book to hear him recite, and he tried to find his way through the fog: "Blessed are the--a--a--" "Poor"-- "Yes--poor; blessed are the poor--a--a--" "In spirit--" "In spirit; blessed are the poor in spirit, for they--they--" "THEIRS--" "For THEIRS. Blessed are the poor in spirit, for theirs is the kingdom of heaven. Blessed are they that mourn, for they--they--" "Sh--" "For they--a--" "S, H, A--" "For they S, H--Oh, I don't know what it is!" "SHALL!" "Oh, SHALL! for they shall--for they shall--a--a--shall mourn--a--a-- blessed are they that shall--they that--a--they that shall mourn, for they shall--a--shall WHAT? Why don't you tell me, Mary?--what do you want to be so mean for?" "Oh, Tom, you poor thick-headed thing, I'm not teasing you. I wouldn't do that. You must go and learn it again. Don't you be discouraged, Tom, you'll manage it--and if you do, I'll give you something ever so nice. There, now, that's a good boy." "All right! What is it, Mary, tell me what it is." "Never you mind, Tom. You know if I say it's nice, it is nice." "You bet you that's so, Mary. All right, I'll tackle it again." And he did "tackle it again"--and under the double pressure of curiosity and prospective gain he did it with such spirit that he accomplished a shining success. Mary gave him a brand-new "Barlow" knife worth twelve and a half cents; and the convulsion of delight that swept his system shook him to his foundations. True, the knife would not cut anything, but it was a "sure-enough" Barlow, and there was inconceivable grandeur in that--though where the Western boys ever got the idea that such a weapon could possibly be counterfeited to its injury is an imposing mystery and will always remain so, perhaps. Tom contrived to scarify the cupboard with it, and was arranging to begin on the bureau, when he was called off to dress for Sunday-school. Mary gave him a tin basin of water and a piece of soap, and he went outside the door and set the basin on a little bench there; then he dipped the soap in the water and laid it down; turned up his sleeves; poured out the water on the ground, gently, and then entered the kitchen and began to wipe his face diligently on the towel behind the door. But Mary removed the towel and said: "Now ain't you ashamed, Tom. You mustn't be so bad. Water won't hurt you." Tom was a trifle disconcerted. The basin was refilled, and this time he stood over it a little while, gathering resolution; took in a big breath and began. When he entered the kitchen presently, with both eyes shut and groping for the towel with his hands, an honorable testimony of suds and water was dripping from his face. But when he emerged from the towel, he was not yet satisfactory, for the clean territory stopped short at his chin and his jaws, like a mask; below and beyond this line there was a dark expanse of unirrigated soil that spread downward in front and backward around his neck. Mary took him in hand, and when she was done with him he was a man and a brother, without distinction of color, and his saturated hair was neatly brushed, and its short curls wrought into a dainty and symmetrical general effect. [He privately smoothed out the curls, with labor and difficulty, and plastered his hair close down to his head; for he held curls to be effeminate, and his own filled his life with bitterness.] Then Mary got out a suit of his clothing that had been used only on Sundays during two years--they were simply called his "other clothes"--and so by that we know the size of his wardrobe. The girl "put him to rights" after he had dressed himself; she buttoned his neat roundabout up to his chin, turned his vast shirt collar down over his shoulders, brushed him off and crowned him with his speckled straw hat. He now looked exceedingly improved and uncomfortable. He was fully as uncomfortable as he looked; for there was a restraint about whole clothes and cleanliness that galled him. He hoped that Mary would forget his shoes, but the hope was blighted; she coated them thoroughly with tallow, as was the custom, and brought them out. He lost his temper and said he was always being made to do everything he didn't want to do. But Mary said, persuasively: "Please, Tom--that's a good boy." So he got into the shoes snarling. Mary was soon ready, and the three children set out for Sunday-school--a place that Tom hated with his whole heart; but Sid and Mary were fond of it. Sabbath-school hours were from nine to half-past ten; and then church service. Two of the children always remained for the sermon voluntarily, and the other always remained too--for stronger reasons. The church's high-backed, uncushioned pews would seat about three hundred persons; the edifice was but a small, plain affair, with a sort of pine board tree-box on top of it for a steeple. At the door Tom dropped back a step and accosted a Sunday-dressed comrade: "Say, Billy, got a yaller ticket?" "Yes." "What'll you take for her?" "What'll you give?" "Piece of lickrish and a fish-hook." "Less see 'em." Tom exhibited. They were satisfactory, and the property changed hands. Then Tom traded a couple of white alleys for three red tickets, and some small trifle or other for a couple of blue ones. He waylaid other boys as they came, and went on buying tickets of various colors ten or fifteen minutes longer. He entered the church, now, with a swarm of clean and noisy boys and girls, proceeded to his seat and started a quarrel with the first boy that came handy. The teacher, a grave, elderly man, interfered; then turned his back a moment and Tom pulled a boy's hair in the next bench, and was absorbed in his book when the boy turned around; stuck a pin in another boy, presently, in order to hear him say "Ouch!" and got a new reprimand from his teacher. Tom's whole class were of a pattern--restless, noisy, and troublesome. When they came to recite their lessons, not one of them knew his verses perfectly, but had to be prompted all along. However, they worried through, and each got his reward--in small blue tickets, each with a passage of Scripture on it; each blue ticket was pay for two verses of the recitation. Ten blue tickets equalled a red one, and could be exchanged for it; ten red tickets equalled a yellow one; for ten yellow tickets the superintendent gave a very plainly bound Bible (worth forty cents in those easy times) to the pupil. How many of my readers would have the industry and application to memorize two thousand verses, even for a Dore Bible? And yet Mary had acquired two Bibles in this way--it was the patient work of two years--and a boy of German parentage had won four or five. He once recited three thousand verses without stopping; but the strain upon his mental faculties was too great, and he was little better than an idiot from that day forth--a grievous misfortune for the school, for on great occasions, before company, the superintendent (as Tom expressed it) had always made this boy come out and "spread himself." Only the older pupils managed to keep their tickets and stick to their tedious work long enough to get a Bible, and so the delivery of one of these prizes was a rare and noteworthy circumstance; the successful pupil was so great and conspicuous for that day that on the spot every scholar's heart was fired with a fresh ambition that often lasted a couple of weeks. It is possible that Tom's mental stomach had never really hungered for one of those prizes, but unquestionably his entire being had for many a day longed for the glory and the eclat that came with it. In due course the superintendent stood up in front of the pulpit, with a closed hymn-book in his hand and his forefinger inserted between its leaves, and commanded attention. When a Sunday-school superintendent makes his customary little speech, a hymn-book in the hand is as necessary as is the inevitable sheet of music in the hand of a singer who stands forward on the platform and sings a solo at a concert --though why, is a mystery: for neither the hymn-book nor the sheet of music is ever referred to by the sufferer. This superintendent was a slim creature of thirty-five, with a sandy goatee and short sandy hair; he wore a stiff standing-collar whose upper edge almost reached his ears and whose sharp points curved forward abreast the corners of his mouth--a fence that compelled a straight lookout ahead, and a turning of the whole body when a side view was required; his chin was propped on a spreading cravat which was as broad and as long as a bank-note, and had fringed ends; his boot toes were turned sharply up, in the fashion of the day, like sleigh-runners--an effect patiently and laboriously produced by the young men by sitting with their toes pressed against a wall for hours together. Mr. Walters was very earnest of mien, and very sincere and honest at heart; and he held sacred things and places in such reverence, and so separated them from worldly matters, that unconsciously to himself his Sunday-school voice had acquired a peculiar intonation which was wholly absent on week-days. He began after this fashion: "Now, children, I want you all to sit up just as straight and pretty as you can and give me all your attention for a minute or two. There --that is it. That is the way good little boys and girls should do. I see one little girl who is looking out of the window--I am afraid she thinks I am out there somewhere--perhaps up in one of the trees making a speech to the little birds. [Applausive titter.] I want to tell you how good it makes me feel to see so many bright, clean little faces assembled in a place like this, learning to do right and be good." And so forth and so on. It is not necessary to set down the rest of the oration. It was of a pattern which does not vary, and so it is familiar to us all. The latter third of the speech was marred by the resumption of fights and other recreations among certain of the bad boys, and by fidgetings and whisperings that extended far and wide, washing even to the bases of isolated and incorruptible rocks like Sid and Mary. But now every sound ceased suddenly, with the subsidence of Mr. Walters' voice, and the conclusion of the speech was received with a burst of silent gratitude. A good part of the whispering had been occasioned by an event which was more or less rare--the entrance of visitors: lawyer Thatcher, accompanied by a very feeble and aged man; a fine, portly, middle-aged gentleman with iron-gray hair; and a dignified lady who was doubtless the latter's wife. The lady was leading a child. Tom had been restless and full of chafings and repinings; conscience-smitten, too--he could not meet Amy Lawrence's eye, he could not brook her loving gaze. But when he saw this small new-comer his soul was all ablaze with bliss in a moment. The next moment he was "showing off" with all his might --cuffing boys, pulling hair, making faces--in a word, using every art that seemed likely to fascinate a girl and win her applause. His exaltation had but one alloy--the memory of his humiliation in this angel's garden--and that record in sand was fast washing out, under the waves of happiness that were sweeping over it now. The visitors were given the highest seat of honor, and as soon as Mr. Walters' speech was finished, he introduced them to the school. The middle-aged man turned out to be a prodigious personage--no less a one than the county judge--altogether the most august creation these children had ever looked upon--and they wondered what kind of material he was made of--and they half wanted to hear him roar, and were half afraid he might, too. He was from Constantinople, twelve miles away--so he had travelled, and seen the world--these very eyes had looked upon the county court-house--which was said to have a tin roof. The awe which these reflections inspired was attested by the impressive silence and the ranks of staring eyes. This was the great Judge Thatcher, brother of their own lawyer. Jeff Thatcher immediately went forward, to be familiar with the great man and be envied by the school. It would have been music to his soul to hear the whisperings: "Look at him, Jim! He's a going up there. Say--look! he's a going to shake hands with him--he IS shaking hands with him! By jings, don't you wish you was Jeff?" Mr. Walters fell to "showing off," with all sorts of official bustlings and activities, giving orders, delivering judgments, discharging directions here, there, everywhere that he could find a target. The librarian "showed off"--running hither and thither with his arms full of books and making a deal of the splutter and fuss that insect authority delights in. The young lady teachers "showed off" --bending sweetly over pupils that were lately being boxed, lifting pretty warning fingers at bad little boys and patting good ones lovingly. The young gentlemen teachers "showed off" with small scoldings and other little displays of authority and fine attention to discipline--and most of the teachers, of both sexes, found business up at the library, by the pulpit; and it was business that frequently had to be done over again two or three times (with much seeming vexation). The little girls "showed off" in various ways, and the little boys "showed off" with such diligence that the air was thick with paper wads and the murmur of scufflings. And above it all the great man sat and beamed a majestic judicial smile upon all the house, and warmed himself in the sun of his own grandeur--for he was "showing off," too. There was only one thing wanting to make Mr. Walters' ecstasy complete, and that was a chance to deliver a Bible-prize and exhibit a prodigy. Several pupils had a few yellow tickets, but none had enough --he had been around among the star pupils inquiring. He would have given worlds, now, to have that German lad back again with a sound mind. And now at this moment, when hope was dead, Tom Sawyer came forward with nine yellow tickets, nine red tickets, and ten blue ones, and demanded a Bible. This was a thunderbolt out of a clear sky. Walters was not expecting an application from this source for the next ten years. But there was no getting around it--here were the certified checks, and they were good for their face. Tom was therefore elevated to a place with the Judge and the other elect, and the great news was announced from headquarters. It was the most stunning surprise of the decade, and so profound was the sensation that it lifted the new hero up to the judicial one's altitude, and the school had two marvels to gaze upon in place of one. The boys were all eaten up with envy--but those that suffered the bitterest pangs were those who perceived too late that they themselves had contributed to this hated splendor by trading tickets to Tom for the wealth he had amassed in selling whitewashing privileges. These despised themselves, as being the dupes of a wily fraud, a guileful snake in the grass. The prize was delivered to Tom with as much effusion as the superintendent could pump up under the circumstances; but it lacked somewhat of the true gush, for the poor fellow's instinct taught him that there was a mystery here that could not well bear the light, perhaps; it was simply preposterous that this boy had warehoused two thousand sheaves of Scriptural wisdom on his premises--a dozen would strain his capacity, without a doubt. Amy Lawrence was proud and glad, and she tried to make Tom see it in her face--but he wouldn't look. She wondered; then she was just a grain troubled; next a dim suspicion came and went--came again; she watched; a furtive glance told her worlds--and then her heart broke, and she was jealous, and angry, and the tears came and she hated everybody. Tom most of all (she thought). Tom was introduced to the Judge; but his tongue was tied, his breath would hardly come, his heart quaked--partly because of the awful greatness of the man, but mainly because he was her parent. He would have liked to fall down and worship him, if it were in the dark. The Judge put his hand on Tom's head and called him a fine little man, and asked him what his name was. The boy stammered, gasped, and got it out: "Tom." "Oh, no, not Tom--it is--" "Thomas." "Ah, that's it. I thought there was more to it, maybe. That's very well. But you've another one I daresay, and you'll tell it to me, won't you?" "Tell the gentleman your other name, Thomas," said Walters, "and say sir. You mustn't forget your manners." "Thomas Sawyer--sir." "That's it! That's a good boy. Fine boy. Fine, manly little fellow. Two thousand verses is a great many--very, very great many. And you never can be sorry for the trouble you took to learn them; for knowledge is worth more than anything there is in the world; it's what makes great men and good men; you'll be a great man and a good man yourself, some day, Thomas, and then you'll look back and say, It's all owing to the precious Sunday-school privileges of my boyhood--it's all owing to my dear teachers that taught me to learn--it's all owing to the good superintendent, who encouraged me, and watched over me, and gave me a beautiful Bible--a splendid elegant Bible--to keep and have it all for my own, always--it's all owing to right bringing up! That is what you will say, Thomas--and you wouldn't take any money for those two thousand verses--no indeed you wouldn't. And now you wouldn't mind telling me and this lady some of the things you've learned--no, I know you wouldn't--for we are proud of little boys that learn. Now, no doubt you know the names of all the twelve disciples. Won't you tell us the names of the first two that were appointed?" Tom was tugging at a button-hole and looking sheepish. He blushed, now, and his eyes fell. Mr. Walters' heart sank within him. He said to himself, it is not possible that the boy can answer the simplest question--why DID the Judge ask him? Yet he felt obliged to speak up and say: "Answer the gentleman, Thomas--don't be afraid." Tom still hung fire. "Now I know you'll tell me," said the lady. "The names of the first two disciples were--" "DAVID AND GOLIAH!" Let us draw the curtain of charity over the rest of the scene. CHAPTER V ABOUT half-past ten the cracked bell of the small church began to ring, and presently the people began to gather for the morning sermon. The Sunday-school children distributed themselves about the house and occupied pews with their parents, so as to be under supervision. Aunt Polly came, and Tom and Sid and Mary sat with her--Tom being placed next the aisle, in order that he might be as far away from the open window and the seductive outside summer scenes as possible. The crowd filed up the aisles: the aged and needy postmaster, who had seen better days; the mayor and his wife--for they had a mayor there, among other unnecessaries; the justice of the peace; the widow Douglass, fair, smart, and forty, a generous, good-hearted soul and well-to-do, her hill mansion the only palace in the town, and the most hospitable and much the most lavish in the matter of festivities that St. Petersburg could boast; the bent and venerable Major and Mrs. Ward; lawyer Riverson, the new notable from a distance; next the belle of the village, followed by a troop of lawn-clad and ribbon-decked young heart-breakers; then all the young clerks in town in a body--for they had stood in the vestibule sucking their cane-heads, a circling wall of oiled and simpering admirers, till the last girl had run their gantlet; and last of all came the Model Boy, Willie Mufferson, taking as heedful care of his mother as if she were cut glass. He always brought his mother to church, and was the pride of all the matrons. The boys all hated him, he was so good. And besides, he had been "thrown up to them" so much. His white handkerchief was hanging out of his pocket behind, as usual on Sundays--accidentally. Tom had no handkerchief, and he looked upon boys who had as snobs. The congregation being fully assembled, now, the bell rang once more, to warn laggards and stragglers, and then a solemn hush fell upon the church which was only broken by the tittering and whispering of the choir in the gallery. The choir always tittered and whispered all through service. There was once a church choir that was not ill-bred, but I have forgotten where it was, now. It was a great many years ago, and I can scarcely remember anything about it, but I think it was in some foreign country. The minister gave out the hymn, and read it through with a relish, in a peculiar style which was much admired in that part of the country. His voice began on a medium key and climbed steadily up till it reached a certain point, where it bore with strong emphasis upon the topmost word and then plunged down as if from a spring-board: Shall I be car-ri-ed toe the skies, on flow'ry BEDS of ease, Whilst others fight to win the prize, and sail thro' BLOODY seas? He was regarded as a wonderful reader. At church "sociables" he was always called upon to read poetry; and when he was through, the ladies would lift up their hands and let them fall helplessly in their laps, and "wall" their eyes, and shake their heads, as much as to say, "Words cannot express it; it is too beautiful, TOO beautiful for this mortal earth." After the hymn had been sung, the Rev. Mr. Sprague turned himself into a bulletin-board, and read off "notices" of meetings and societies and things till it seemed that the list would stretch out to the crack of doom--a queer custom which is still kept up in America, even in cities, away here in this age of abundant newspapers. Often, the less there is to justify a traditional custom, the harder it is to get rid of it. And now the minister prayed. A good, generous prayer it was, and went into details: it pleaded for the church, and the little children of the church; for the other churches of the village; for the village itself; for the county; for the State; for the State officers; for the United States; for the churches of the United States; for Congress; for the President; for the officers of the Government; for poor sailors, tossed by stormy seas; for the oppressed millions groaning under the heel of European monarchies and Oriental despotisms; for such as have the light and the good tidings, and yet have not eyes to see nor ears to hear withal; for the heathen in the far islands of the sea; and closed with a supplication that the words he was about to speak might find grace and favor, and be as seed sown in fertile ground, yielding in time a grateful harvest of good. Amen. There was a rustling of dresses, and the standing congregation sat down. The boy whose history this book relates did not enjoy the prayer, he only endured it--if he even did that much. He was restive all through it; he kept tally of the details of the prayer, unconsciously --for he was not listening, but he knew the ground of old, and the clergyman's regular route over it--and when a little trifle of new matter was interlarded, his ear detected it and his whole nature resented it; he considered additions unfair, and scoundrelly. In the midst of the prayer a fly had lit on the back of the pew in front of him and tortured his spirit by calmly rubbing its hands together, embracing its head with its arms, and polishing it so vigorously that it seemed to almost part company with the body, and the slender thread of a neck was exposed to view; scraping its wings with its hind legs and smoothing them to its body as if they had been coat-tails; going through its whole toilet as tranquilly as if it knew it was perfectly safe. As indeed it was; for as sorely as Tom's hands itched to grab for it they did not dare--he believed his soul would be instantly destroyed if he did such a thing while the prayer was going on. But with the closing sentence his hand began to curve and steal forward; and the instant the "Amen" was out the fly was a prisoner of war. His aunt detected the act and made him let it go. The minister gave out his text and droned along monotonously through an argument that was so prosy that many a head by and by began to nod --and yet it was an argument that dealt in limitless fire and brimstone and thinned the predestined elect down to a company so small as to be hardly worth the saving. Tom counted the pages of the sermon; after church he always knew how many pages there had been, but he seldom knew anything else about the discourse. However, this time he was really interested for a little while. The minister made a grand and moving picture of the assembling together of the world's hosts at the millennium when the lion and the lamb should lie down together and a little child should lead them. But the pathos, the lesson, the moral of the great spectacle were lost upon the boy; he only thought of the conspicuousness of the principal character before the on-looking nations; his face lit with the thought, and he said to himself that he wished he could be that child, if it was a tame lion. Now he lapsed into suffering again, as the dry argument was resumed. Presently he bethought him of a treasure he had and got it out. It was a large black beetle with formidable jaws--a "pinchbug," he called it. It was in a percussion-cap box. The first thing the beetle did was to take him by the finger. A natural fillip followed, the beetle went floundering into the aisle and lit on its back, and the hurt finger went into the boy's mouth. The beetle lay there working its helpless legs, unable to turn over. Tom eyed it, and longed for it; but it was safe out of his reach. Other people uninterested in the sermon found relief in the beetle, and they eyed it too. Presently a vagrant poodle dog came idling along, sad at heart, lazy with the summer softness and the quiet, weary of captivity, sighing for change. He spied the beetle; the drooping tail lifted and wagged. He surveyed the prize; walked around it; smelt at it from a safe distance; walked around it again; grew bolder, and took a closer smell; then lifted his lip and made a gingerly snatch at it, just missing it; made another, and another; began to enjoy the diversion; subsided to his stomach with the beetle between his paws, and continued his experiments; grew weary at last, and then indifferent and absent-minded. His head nodded, and little by little his chin descended and touched the enemy, who seized it. There was a sharp yelp, a flirt of the poodle's head, and the beetle fell a couple of yards away, and lit on its back once more. The neighboring spectators shook with a gentle inward joy, several faces went behind fans and handkerchiefs, and Tom was entirely happy. The dog looked foolish, and probably felt so; but there was resentment in his heart, too, and a craving for revenge. So he went to the beetle and began a wary attack on it again; jumping at it from every point of a circle, lighting with his fore-paws within an inch of the creature, making even closer snatches at it with his teeth, and jerking his head till his ears flapped again. But he grew tired once more, after a while; tried to amuse himself with a fly but found no relief; followed an ant around, with his nose close to the floor, and quickly wearied of that; yawned, sighed, forgot the beetle entirely, and sat down on it. Then there was a wild yelp of agony and the poodle went sailing up the aisle; the yelps continued, and so did the dog; he crossed the house in front of the altar; he flew down the other aisle; he crossed before the doors; he clamored up the home-stretch; his anguish grew with his progress, till presently he was but a woolly comet moving in its orbit with the gleam and the speed of light. At last the frantic sufferer sheered from its course, and sprang into its master's lap; he flung it out of the window, and the voice of distress quickly thinned away and died in the distance. By this time the whole church was red-faced and suffocating with suppressed laughter, and the sermon had come to a dead standstill. The discourse was resumed presently, but it went lame and halting, all possibility of impressiveness being at an end; for even the gravest sentiments were constantly being received with a smothered burst of unholy mirth, under cover of some remote pew-back, as if the poor parson had said a rarely facetious thing. It was a genuine relief to the whole congregation when the ordeal was over and the benediction pronounced. Tom Sawyer went home quite cheerful, thinking to himself that there was some satisfaction about divine service when there was a bit of variety in it. He had but one marring thought; he was willing that the dog should play with his pinchbug, but he did not think it was upright in him to carry it off. CHAPTER VI MONDAY morning found Tom Sawyer miserable. Monday morning always found him so--because it began another week's slow suffering in school. He generally began that day with wishing he had had no intervening holiday, it made the going into captivity and fetters again so much more odious. Tom lay thinking. Presently it occurred to him that he wished he was sick; then he could stay home from school. Here was a vague possibility. He canvassed his system. No ailment was found, and he investigated again. This time he thought he could detect colicky symptoms, and he began to encourage them with considerable hope. But they soon grew feeble, and presently died wholly away. He reflected further. Suddenly he discovered something. One of his upper front teeth was loose. This was lucky; he was about to begin to groan, as a "starter," as he called it, when it occurred to him that if he came into court with that argument, his aunt would pull it out, and that would hurt. So he thought he would hold the tooth in reserve for the present, and seek further. Nothing offered for some little time, and then he remembered hearing the doctor tell about a certain thing that laid up a patient for two or three weeks and threatened to make him lose a finger. So the boy eagerly drew his sore toe from under the sheet and held it up for inspection. But now he did not know the necessary symptoms. However, it seemed well worth while to chance it, so he fell to groaning with considerable spirit. But Sid slept on unconscious. Tom groaned louder, and fancied that he began to feel pain in the toe. No result from Sid. Tom was panting with his exertions by this time. He took a rest and then swelled himself up and fetched a succession of admirable groans. Sid snored on. Tom was aggravated. He said, "Sid, Sid!" and shook him. This course worked well, and Tom began to groan again. Sid yawned, stretched, then brought himself up on his elbow with a snort, and began to stare at Tom. Tom went on groaning. Sid said: "Tom! Say, Tom!" [No response.] "Here, Tom! TOM! What is the matter, Tom?" And he shook him and looked in his face anxiously. Tom moaned out: "Oh, don't, Sid. Don't joggle me." "Why, what's the matter, Tom? I must call auntie." "No--never mind. It'll be over by and by, maybe. Don't call anybody." "But I must! DON'T groan so, Tom, it's awful. How long you been this way?" "Hours. Ouch! Oh, don't stir so, Sid, you'll kill me." "Tom, why didn't you wake me sooner? Oh, Tom, DON'T! It makes my flesh crawl to hear you. Tom, what is the matter?" "I forgive you everything, Sid. [Groan.] Everything you've ever done to me. When I'm gone--" "Oh, Tom, you ain't dying, are you? Don't, Tom--oh, don't. Maybe--" "I forgive everybody, Sid. [Groan.] Tell 'em so, Sid. And Sid, you give my window-sash and my cat with one eye to that new girl that's come to town, and tell her--" But Sid had snatched his clothes and gone. Tom was suffering in reality, now, so handsomely was his imagination working, and so his groans had gathered quite a genuine tone. Sid flew down-stairs and said: "Oh, Aunt Polly, come! Tom's dying!" "Dying!" "Yes'm. Don't wait--come quick!" "Rubbage! I don't believe it!" But she fled up-stairs, nevertheless, with Sid and Mary at her heels. And her face grew white, too, and her lip trembled. When she reached the bedside she gasped out: "You, Tom! Tom, what's the matter with you?" "Oh, auntie, I'm--" "What's the matter with you--what is the matter with you, child?" "Oh, auntie, my sore toe's mortified!" The old lady sank down into a chair and laughed a little, then cried a little, then did both together. This restored her and she said: "Tom, what a turn you did give me. Now you shut up that nonsense and climb out of this." The groans ceased and the pain vanished from the toe. The boy felt a little foolish, and he said: "Aunt Polly, it SEEMED mortified, and it hurt so I never minded my tooth at all." "Your tooth, indeed! What's the matter with your tooth?" "One of them's loose, and it aches perfectly awful." "There, there, now, don't begin that groaning again. Open your mouth. Well--your tooth IS loose, but you're not going to die about that. Mary, get me a silk thread, and a chunk of fire out of the kitchen." Tom said: "Oh, please, auntie, don't pull it out. It don't hurt any more. I wish I may never stir if it does. Please don't, auntie. I don't want to stay home from school." "Oh, you don't, don't you? So all this row was because you thought you'd get to stay home from school and go a-fishing? Tom, Tom, I love you so, and you seem to try every way you can to break my old heart with your outrageousness." By this time the dental instruments were ready. The old lady made one end of the silk thread fast to Tom's tooth with a loop and tied the other to the bedpost. Then she seized the chunk of fire and suddenly thrust it almost into the boy's face. The tooth hung dangling by the bedpost, now. But all trials bring their compensations. As Tom wended to school after breakfast, he was the envy of every boy he met because the gap in his upper row of teeth enabled him to expectorate in a new and admirable way. He gathered quite a following of lads interested in the exhibition; and one that had cut his finger and had been a centre of fascination and homage up to this time, now found himself suddenly without an adherent, and shorn of his glory. His heart was heavy, and he said with a disdain which he did not feel that it wasn't anything to spit like Tom Sawyer; but another boy said, "Sour grapes!" and he wandered away a dismantled hero. Shortly Tom came upon the juvenile pariah of the village, Huckleberry Finn, son of the town drunkard. Huckleberry was cordially hated and dreaded by all the mothers of the town, because he was idle and lawless and vulgar and bad--and because all their children admired him so, and delighted in his forbidden society, and wished they dared to be like him. Tom was like the rest of the respectable boys, in that he envied Huckleberry his gaudy outcast condition, and was under strict orders not to play with him. So he played with him every time he got a chance. Huckleberry was always dressed in the cast-off clothes of full-grown men, and they were in perennial bloom and fluttering with rags. His hat was a vast ruin with a wide crescent lopped out of its brim; his coat, when he wore one, hung nearly to his heels and had the rearward buttons far down the back; but one suspender supported his trousers; the seat of the trousers bagged low and contained nothing, the fringed legs dragged in the dirt when not rolled up. Huckleberry came and went, at his own free will. He slept on doorsteps in fine weather and in empty hogsheads in wet; he did not have to go to school or to church, or call any being master or obey anybody; he could go fishing or swimming when and where he chose, and stay as long as it suited him; nobody forbade him to fight; he could sit up as late as he pleased; he was always the first boy that went barefoot in the spring and the last to resume leather in the fall; he never had to wash, nor put on clean clothes; he could swear wonderfully. In a word, everything that goes to make life precious that boy had. So thought every harassed, hampered, respectable boy in St. Petersburg. Tom hailed the romantic outcast: "Hello, Huckleberry!" "Hello yourself, and see how you like it." "What's that you got?" "Dead cat." "Lemme see him, Huck. My, he's pretty stiff. Where'd you get him?" "Bought him off'n a boy." "What did you give?" "I give a blue ticket and a bladder that I got at the slaughter-house." "Where'd you get the blue ticket?" "Bought it off'n Ben Rogers two weeks ago for a hoop-stick." "Say--what is dead cats good for, Huck?" "Good for? Cure warts with." "No! Is that so? I know something that's better." "I bet you don't. What is it?" "Why, spunk-water." "Spunk-water! I wouldn't give a dern for spunk-water." "You wouldn't, wouldn't you? D'you ever try it?" "No, I hain't. But Bob Tanner did." "Who told you so!" "Why, he told Jeff Thatcher, and Jeff told Johnny Baker, and Johnny told Jim Hollis, and Jim told Ben Rogers, and Ben told a nigger, and the nigger told me. There now!" "Well, what of it? They'll all lie. Leastways all but the nigger. I don't know HIM. But I never see a nigger that WOULDN'T lie. Shucks! Now you tell me how Bob Tanner done it, Huck." "Why, he took and dipped his hand in a rotten stump where the rain-water was." "In the daytime?" "Certainly." "With his face to the stump?" "Yes. Least I reckon so." "Did he say anything?" "I don't reckon he did. I don't know." "Aha! Talk about trying to cure warts with spunk-water such a blame fool way as that! Why, that ain't a-going to do any good. You got to go all by yourself, to the middle of the woods, where you know there's a spunk-water stump, and just as it's midnight you back up against the stump and jam your hand in and say: 'Barley-corn, barley-corn, injun-meal shorts, Spunk-water, spunk-water, swaller these warts,' and then walk away quick, eleven steps, with your eyes shut, and then turn around three times and walk home without speaking to anybody. Because if you speak the charm's busted." "Well, that sounds like a good way; but that ain't the way Bob Tanner done." "No, sir, you can bet he didn't, becuz he's the wartiest boy in this town; and he wouldn't have a wart on him if he'd knowed how to work spunk-water. I've took off thousands of warts off of my hands that way, Huck. I play with frogs so much that I've always got considerable many warts. Sometimes I take 'em off with a bean." "Yes, bean's good. I've done that." "Have you? What's your way?" "You take and split the bean, and cut the wart so as to get some blood, and then you put the blood on one piece of the bean and take and dig a hole and bury it 'bout midnight at the crossroads in the dark of the moon, and then you burn up the rest of the bean. You see that piece that's got the blood on it will keep drawing and drawing, trying to fetch the other piece to it, and so that helps the blood to draw the wart, and pretty soon off she comes." "Yes, that's it, Huck--that's it; though when you're burying it if you say 'Down bean; off wart; come no more to bother me!' it's better. That's the way Joe Harper does, and he's been nearly to Coonville and most everywheres. But say--how do you cure 'em with dead cats?" "Why, you take your cat and go and get in the graveyard 'long about midnight when somebody that was wicked has been buried; and when it's midnight a devil will come, or maybe two or three, but you can't see 'em, you can only hear something like the wind, or maybe hear 'em talk; and when they're taking that feller away, you heave your cat after 'em and say, 'Devil follow corpse, cat follow devil, warts follow cat, I'm done with ye!' That'll fetch ANY wart." "Sounds right. D'you ever try it, Huck?" "No, but old Mother Hopkins told me." "Well, I reckon it's so, then. Becuz they say she's a witch." "Say! Why, Tom, I KNOW she is. She witched pap. Pap says so his own self. He come along one day, and he see she was a-witching him, so he took up a rock, and if she hadn't dodged, he'd a got her. Well, that very night he rolled off'n a shed wher' he was a layin drunk, and broke his arm." "Why, that's awful. How did he know she was a-witching him?" "Lord, pap can tell, easy. Pap says when they keep looking at you right stiddy, they're a-witching you. Specially if they mumble. Becuz when they mumble they're saying the Lord's Prayer backards." "Say, Hucky, when you going to try the cat?" "To-night. I reckon they'll come after old Hoss Williams to-night." "But they buried him Saturday. Didn't they get him Saturday night?" "Why, how you talk! How could their charms work till midnight?--and THEN it's Sunday. Devils don't slosh around much of a Sunday, I don't reckon." "I never thought of that. That's so. Lemme go with you?" "Of course--if you ain't afeard." "Afeard! 'Tain't likely. Will you meow?" "Yes--and you meow back, if you get a chance. Last time, you kep' me a-meowing around till old Hays went to throwing rocks at me and says 'Dern that cat!' and so I hove a brick through his window--but don't you tell." "I won't. I couldn't meow that night, becuz auntie was watching me, but I'll meow this time. Say--what's that?" "Nothing but a tick." "Where'd you get him?" "Out in the woods." "What'll you take for him?" "I don't know. I don't want to sell him." "All right. It's a mighty small tick, anyway." "Oh, anybody can run a tick down that don't belong to them. I'm satisfied with it. It's a good enough tick for me." "Sho, there's ticks a plenty. I could have a thousand of 'em if I wanted to." "Well, why don't you? Becuz you know mighty well you can't. This is a pretty early tick, I reckon. It's the first one I've seen this year." "Say, Huck--I'll give you my tooth for him." "Less see it." Tom got out a bit of paper and carefully unrolled it. Huckleberry viewed it wistfully. The temptation was very strong. At last he said: "Is it genuwyne?" Tom lifted his lip and showed the vacancy. "Well, all right," said Huckleberry, "it's a trade." Tom enclosed the tick in the percussion-cap box that had lately been the pinchbug's prison, and the boys separated, each feeling wealthier than before. When Tom reached the little isolated frame schoolhouse, he strode in briskly, with the manner of one who had come with all honest speed. He hung his hat on a peg and flung himself into his seat with business-like alacrity. The master, throned on high in his great splint-bottom arm-chair, was dozing, lulled by the drowsy hum of study. The interruption roused him. "Thomas Sawyer!" Tom knew that when his name was pronounced in full, it meant trouble. "Sir!" "Come up here. Now, sir, why are you late again, as usual?" Tom was about to take refuge in a lie, when he saw two long tails of yellow hair hanging down a back that he recognized by the electric sympathy of love; and by that form was THE ONLY VACANT PLACE on the girls' side of the schoolhouse. He instantly said: "I STOPPED TO TALK WITH HUCKLEBERRY FINN!" The master's pulse stood still, and he stared helplessly. The buzz of study ceased. The pupils wondered if this foolhardy boy had lost his mind. The master said: "You--you did what?" "Stopped to talk with Huckleberry Finn." There was no mistaking the words. "Thomas Sawyer, this is the most astounding confession I have ever listened to. No mere ferule will answer for this offence. Take off your jacket." The master's arm performed until it was tired and the stock of switches notably diminished. Then the order followed: "Now, sir, go and sit with the girls! And let this be a warning to you." The titter that rippled around the room appeared to abash the boy, but in reality that result was caused rather more by his worshipful awe of his unknown idol and the dread pleasure that lay in his high good fortune. He sat down upon the end of the pine bench and the girl hitched herself away from him with a toss of her head. Nudges and winks and whispers traversed the room, but Tom sat still, with his arms upon the long, low desk before him, and seemed to study his book. By and by attention ceased from him, and the accustomed school murmur rose upon the dull air once more. Presently the boy began to steal furtive glances at the girl. She observed it, "made a mouth" at him and gave him the back of her head for the space of a minute. When she cautiously faced around again, a peach lay before her. She thrust it away. Tom gently put it back. She thrust it away again, but with less animosity. Tom patiently returned it to its place. Then she let it remain. Tom scrawled on his slate, "Please take it--I got more." The girl glanced at the words, but made no sign. Now the boy began to draw something on the slate, hiding his work with his left hand. For a time the girl refused to notice; but her human curiosity presently began to manifest itself by hardly perceptible signs. The boy worked on, apparently unconscious. The girl made a sort of noncommittal attempt to see, but the boy did not betray that he was aware of it. At last she gave in and hesitatingly whispered: "Let me see it." Tom partly uncovered a dismal caricature of a house with two gable ends to it and a corkscrew of smoke issuing from the chimney. Then the girl's interest began to fasten itself upon the work and she forgot everything else. When it was finished, she gazed a moment, then whispered: "It's nice--make a man." The artist erected a man in the front yard, that resembled a derrick. He could have stepped over the house; but the girl was not hypercritical; she was satisfied with the monster, and whispered: "It's a beautiful man--now make me coming along." Tom drew an hour-glass with a full moon and straw limbs to it and armed the spreading fingers with a portentous fan. The girl said: "It's ever so nice--I wish I could draw." "It's easy," whispered Tom, "I'll learn you." "Oh, will you? When?" "At noon. Do you go home to dinner?" "I'll stay if you will." "Good--that's a whack. What's your name?" "Becky Thatcher. What's yours? Oh, I know. It's Thomas Sawyer." "That's the name they lick me by. I'm Tom when I'm good. You call me Tom, will you?" "Yes." Now Tom began to scrawl something on the slate, hiding the words from the girl. But she was not backward this time. She begged to see. Tom said: "Oh, it ain't anything." "Yes it is." "No it ain't. You don't want to see." "Yes I do, indeed I do. Please let me." "You'll tell." "No I won't--deed and deed and double deed won't." "You won't tell anybody at all? Ever, as long as you live?" "No, I won't ever tell ANYbody. Now let me." "Oh, YOU don't want to see!" "Now that you treat me so, I WILL see." And she put her small hand upon his and a little scuffle ensued, Tom pretending to resist in earnest but letting his hand slip by degrees till these words were revealed: "I LOVE YOU." "Oh, you bad thing!" And she hit his hand a smart rap, but reddened and looked pleased, nevertheless. Just at this juncture the boy felt a slow, fateful grip closing on his ear, and a steady lifting impulse. In that wise he was borne across the house and deposited in his own seat, under a peppering fire of giggles from the whole school. Then the master stood over him during a few awful moments, and finally moved away to his throne without saying a word. But although Tom's ear tingled, his heart was jubilant. As the school quieted down Tom made an honest effort to study, but the turmoil within him was too great. In turn he took his place in the reading class and made a botch of it; then in the geography class and turned lakes into mountains, mountains into rivers, and rivers into continents, till chaos was come again; then in the spelling class, and got "turned down," by a succession of mere baby words, till he brought up at the foot and yielded up the pewter medal which he had worn with ostentation for months. CHAPTER VII THE harder Tom tried to fasten his mind on his book, the more his ideas wandered. So at last, with a sigh and a yawn, he gave it up. It seemed to him that the noon recess would never come. The air was utterly dead. There was not a breath stirring. It was the sleepiest of sleepy days. The drowsing murmur of the five and twenty studying scholars soothed the soul like the spell that is in the murmur of bees. Away off in the flaming sunshine, Cardiff Hill lifted its soft green sides through a shimmering veil of heat, tinted with the purple of distance; a few birds floated on lazy wing high in the air; no other living thing was visible but some cows, and they were asleep. Tom's heart ached to be free, or else to have something of interest to do to pass the dreary time. His hand wandered into his pocket and his face lit up with a glow of gratitude that was prayer, though he did not know it. Then furtively the percussion-cap box came out. He released the tick and put him on the long flat desk. The creature probably glowed with a gratitude that amounted to prayer, too, at this moment, but it was premature: for when he started thankfully to travel off, Tom turned him aside with a pin and made him take a new direction. Tom's bosom friend sat next him, suffering just as Tom had been, and now he was deeply and gratefully interested in this entertainment in an instant. This bosom friend was Joe Harper. The two boys were sworn friends all the week, and embattled enemies on Saturdays. Joe took a pin out of his lapel and began to assist in exercising the prisoner. The sport grew in interest momently. Soon Tom said that they were interfering with each other, and neither getting the fullest benefit of the tick. So he put Joe's slate on the desk and drew a line down the middle of it from top to bottom. "Now," said he, "as long as he is on your side you can stir him up and I'll let him alone; but if you let him get away and get on my side, you're to leave him alone as long as I can keep him from crossing over." "All right, go ahead; start him up." The tick escaped from Tom, presently, and crossed the equator. Joe harassed him awhile, and then he got away and crossed back again. This change of base occurred often. While one boy was worrying the tick with absorbing interest, the other would look on with interest as strong, the two heads bowed together over the slate, and the two souls dead to all things else. At last luck seemed to settle and abide with Joe. The tick tried this, that, and the other course, and got as excited and as anxious as the boys themselves, but time and again just as he would have victory in his very grasp, so to speak, and Tom's fingers would be twitching to begin, Joe's pin would deftly head him off, and keep possession. At last Tom could stand it no longer. The temptation was too strong. So he reached out and lent a hand with his pin. Joe was angry in a moment. Said he: "Tom, you let him alone." "I only just want to stir him up a little, Joe." "No, sir, it ain't fair; you just let him alone." "Blame it, I ain't going to stir him much." "Let him alone, I tell you." "I won't!" "You shall--he's on my side of the line." "Look here, Joe Harper, whose is that tick?" "I don't care whose tick he is--he's on my side of the line, and you sha'n't touch him." "Well, I'll just bet I will, though. He's my tick and I'll do what I blame please with him, or die!" A tremendous whack came down on Tom's shoulders, and its duplicate on Joe's; and for the space of two minutes the dust continued to fly from the two jackets and the whole school to enjoy it. The boys had been too absorbed to notice the hush that had stolen upon the school awhile before when the master came tiptoeing down the room and stood over them. He had contemplated a good part of the performance before he contributed his bit of variety to it. When school broke up at noon, Tom flew to Becky Thatcher, and whispered in her ear: "Put on your bonnet and let on you're going home; and when you get to the corner, give the rest of 'em the slip, and turn down through the lane and come back. I'll go the other way and come it over 'em the same way." So the one went off with one group of scholars, and the other with another. In a little while the two met at the bottom of the lane, and when they reached the school they had it all to themselves. Then they sat together, with a slate before them, and Tom gave Becky the pencil and held her hand in his, guiding it, and so created another surprising house. When the interest in art began to wane, the two fell to talking. Tom was swimming in bliss. He said: "Do you love rats?" "No! I hate them!" "Well, I do, too--LIVE ones. But I mean dead ones, to swing round your head with a string." "No, I don't care for rats much, anyway. What I like is chewing-gum." "Oh, I should say so! I wish I had some now." "Do you? I've got some. I'll let you chew it awhile, but you must give it back to me." That was agreeable, so they chewed it turn about, and dangled their legs against the bench in excess of contentment. "Was you ever at a circus?" said Tom. "Yes, and my pa's going to take me again some time, if I'm good." "I been to the circus three or four times--lots of times. Church ain't shucks to a circus. There's things going on at a circus all the time. I'm going to be a clown in a circus when I grow up." "Oh, are you! That will be nice. They're so lovely, all spotted up." "Yes, that's so. And they get slathers of money--most a dollar a day, Ben Rogers says. Say, Becky, was you ever engaged?" "What's that?" "Why, engaged to be married." "No." "Would you like to?" "I reckon so. I don't know. What is it like?" "Like? Why it ain't like anything. You only just tell a boy you won't ever have anybody but him, ever ever ever, and then you kiss and that's all. Anybody can do it." "Kiss? What do you kiss for?" "Why, that, you know, is to--well, they always do that." "Everybody?" "Why, yes, everybody that's in love with each other. Do you remember what I wrote on the slate?" "Ye--yes." "What was it?" "I sha'n't tell you." "Shall I tell YOU?" "Ye--yes--but some other time." "No, now." "No, not now--to-morrow." "Oh, no, NOW. Please, Becky--I'll whisper it, I'll whisper it ever so easy." Becky hesitating, Tom took silence for consent, and passed his arm about her waist and whispered the tale ever so softly, with his mouth close to her ear. And then he added: "Now you whisper it to me--just the same." She resisted, for a while, and then said: "You turn your face away so you can't see, and then I will. But you mustn't ever tell anybody--WILL you, Tom? Now you won't, WILL you?" "No, indeed, indeed I won't. Now, Becky." He turned his face away. She bent timidly around till her breath stirred his curls and whispered, "I--love--you!" Then she sprang away and ran around and around the desks and benches, with Tom after her, and took refuge in a corner at last, with her little white apron to her face. Tom clasped her about her neck and pleaded: "Now, Becky, it's all done--all over but the kiss. Don't you be afraid of that--it ain't anything at all. Please, Becky." And he tugged at her apron and the hands. By and by she gave up, and let her hands drop; her face, all glowing with the struggle, came up and submitted. Tom kissed the red lips and said: "Now it's all done, Becky. And always after this, you know, you ain't ever to love anybody but me, and you ain't ever to marry anybody but me, ever never and forever. Will you?" "No, I'll never love anybody but you, Tom, and I'll never marry anybody but you--and you ain't to ever marry anybody but me, either." "Certainly. Of course. That's PART of it. And always coming to school or when we're going home, you're to walk with me, when there ain't anybody looking--and you choose me and I choose you at parties, because that's the way you do when you're engaged." "It's so nice. I never heard of it before." "Oh, it's ever so gay! Why, me and Amy Lawrence--" The big eyes told Tom his blunder and he stopped, confused. "Oh, Tom! Then I ain't the first you've ever been engaged to!" The child began to cry. Tom said: "Oh, don't cry, Becky, I don't care for her any more." "Yes, you do, Tom--you know you do." Tom tried to put his arm about her neck, but she pushed him away and turned her face to the wall, and went on crying. Tom tried again, with soothing words in his mouth, and was repulsed again. Then his pride was up, and he strode away and went outside. He stood about, restless and uneasy, for a while, glancing at the door, every now and then, hoping she would repent and come to find him. But she did not. Then he began to feel badly and fear that he was in the wrong. It was a hard struggle with him to make new advances, now, but he nerved himself to it and entered. She was still standing back there in the corner, sobbing, with her face to the wall. Tom's heart smote him. He went to her and stood a moment, not knowing exactly how to proceed. Then he said hesitatingly: "Becky, I--I don't care for anybody but you." No reply--but sobs. "Becky"--pleadingly. "Becky, won't you say something?" More sobs. Tom got out his chiefest jewel, a brass knob from the top of an andiron, and passed it around her so that she could see it, and said: "Please, Becky, won't you take it?" She struck it to the floor. Then Tom marched out of the house and over the hills and far away, to return to school no more that day. Presently Becky began to suspect. She ran to the door; he was not in sight; she flew around to the play-yard; he was not there. Then she called: "Tom! Come back, Tom!" She listened intently, but there was no answer. She had no companions but silence and loneliness. So she sat down to cry again and upbraid herself; and by this time the scholars began to gather again, and she had to hide her griefs and still her broken heart and take up the cross of a long, dreary, aching afternoon, with none among the strangers about her to exchange sorrows with. CHAPTER VIII TOM dodged hither and thither through lanes until he was well out of the track of returning scholars, and then fell into a moody jog. He crossed a small "branch" two or three times, because of a prevailing juvenile superstition that to cross water baffled pursuit. Half an hour later he was disappearing behind the Douglas mansion on the summit of Cardiff Hill, and the schoolhouse was hardly distinguishable away off in the valley behind him. He entered a dense wood, picked his pathless way to the centre of it, and sat down on a mossy spot under a spreading oak. There was not even a zephyr stirring; the dead noonday heat had even stilled the songs of the birds; nature lay in a trance that was broken by no sound but the occasional far-off hammering of a woodpecker, and this seemed to render the pervading silence and sense of loneliness the more profound. The boy's soul was steeped in melancholy; his feelings were in happy accord with his surroundings. He sat long with his elbows on his knees and his chin in his hands, meditating. It seemed to him that life was but a trouble, at best, and he more than half envied Jimmy Hodges, so lately released; it must be very peaceful, he thought, to lie and slumber and dream forever and ever, with the wind whispering through the trees and caressing the grass and the flowers over the grave, and nothing to bother and grieve about, ever any more. If he only had a clean Sunday-school record he could be willing to go, and be done with it all. Now as to this girl. What had he done? Nothing. He had meant the best in the world, and been treated like a dog--like a very dog. She would be sorry some day--maybe when it was too late. Ah, if he could only die TEMPORARILY! But the elastic heart of youth cannot be compressed into one constrained shape long at a time. Tom presently began to drift insensibly back into the concerns of this life again. What if he turned his back, now, and disappeared mysteriously? What if he went away--ever so far away, into unknown countries beyond the seas--and never came back any more! How would she feel then! The idea of being a clown recurred to him now, only to fill him with disgust. For frivolity and jokes and spotted tights were an offense, when they intruded themselves upon a spirit that was exalted into the vague august realm of the romantic. No, he would be a soldier, and return after long years, all war-worn and illustrious. No--better still, he would join the Indians, and hunt buffaloes and go on the warpath in the mountain ranges and the trackless great plains of the Far West, and away in the future come back a great chief, bristling with feathers, hideous with paint, and prance into Sunday-school, some drowsy summer morning, with a bloodcurdling war-whoop, and sear the eyeballs of all his companions with unappeasable envy. But no, there was something gaudier even than this. He would be a pirate! That was it! NOW his future lay plain before him, and glowing with unimaginable splendor. How his name would fill the world, and make people shudder! How gloriously he would go plowing the dancing seas, in his long, low, black-hulled racer, the Spirit of the Storm, with his grisly flag flying at the fore! And at the zenith of his fame, how he would suddenly appear at the old village and stalk into church, brown and weather-beaten, in his black velvet doublet and trunks, his great jack-boots, his crimson sash, his belt bristling with horse-pistols, his crime-rusted cutlass at his side, his slouch hat with waving plumes, his black flag unfurled, with the skull and crossbones on it, and hear with swelling ecstasy the whisperings, "It's Tom Sawyer the Pirate!--the Black Avenger of the Spanish Main!" Yes, it was settled; his career was determined. He would run away from home and enter upon it. He would start the very next morning. Therefore he must now begin to get ready. He would collect his resources together. He went to a rotten log near at hand and began to dig under one end of it with his Barlow knife. He soon struck wood that sounded hollow. He put his hand there and uttered this incantation impressively: "What hasn't come here, come! What's here, stay here!" Then he scraped away the dirt, and exposed a pine shingle. He took it up and disclosed a shapely little treasure-house whose bottom and sides were of shingles. In it lay a marble. Tom's astonishment was boundless! He scratched his head with a perplexed air, and said: "Well, that beats anything!" Then he tossed the marble away pettishly, and stood cogitating. The truth was, that a superstition of his had failed, here, which he and all his comrades had always looked upon as infallible. If you buried a marble with certain necessary incantations, and left it alone a fortnight, and then opened the place with the incantation he had just used, you would find that all the marbles you had ever lost had gathered themselves together there, meantime, no matter how widely they had been separated. But now, this thing had actually and unquestionably failed. Tom's whole structure of faith was shaken to its foundations. He had many a time heard of this thing succeeding but never of its failing before. It did not occur to him that he had tried it several times before, himself, but could never find the hiding-places afterward. He puzzled over the matter some time, and finally decided that some witch had interfered and broken the charm. He thought he would satisfy himself on that point; so he searched around till he found a small sandy spot with a little funnel-shaped depression in it. He laid himself down and put his mouth close to this depression and called-- "Doodle-bug, doodle-bug, tell me what I want to know! Doodle-bug, doodle-bug, tell me what I want to know!" The sand began to work, and presently a small black bug appeared for a second and then darted under again in a fright. "He dasn't tell! So it WAS a witch that done it. I just knowed it." He well knew the futility of trying to contend against witches, so he gave up discouraged. But it occurred to him that he might as well have the marble he had just thrown away, and therefore he went and made a patient search for it. But he could not find it. Now he went back to his treasure-house and carefully placed himself just as he had been standing when he tossed the marble away; then he took another marble from his pocket and tossed it in the same way, saying: "Brother, go find your brother!" He watched where it stopped, and went there and looked. But it must have fallen short or gone too far; so he tried twice more. The last repetition was successful. The two marbles lay within a foot of each other. Just here the blast of a toy tin trumpet came faintly down the green aisles of the forest. Tom flung off his jacket and trousers, turned a suspender into a belt, raked away some brush behind the rotten log, disclosing a rude bow and arrow, a lath sword and a tin trumpet, and in a moment had seized these things and bounded away, barelegged, with fluttering shirt. He presently halted under a great elm, blew an answering blast, and then began to tiptoe and look warily out, this way and that. He said cautiously--to an imaginary company: "Hold, my merry men! Keep hid till I blow." Now appeared Joe Harper, as airily clad and elaborately armed as Tom. Tom called: "Hold! Who comes here into Sherwood Forest without my pass?" "Guy of Guisborne wants no man's pass. Who art thou that--that--" "Dares to hold such language," said Tom, prompting--for they talked "by the book," from memory. "Who art thou that dares to hold such language?" "I, indeed! I am Robin Hood, as thy caitiff carcase soon shall know." "Then art thou indeed that famous outlaw? Right gladly will I dispute with thee the passes of the merry wood. Have at thee!" They took their lath swords, dumped their other traps on the ground, struck a fencing attitude, foot to foot, and began a grave, careful combat, "two up and two down." Presently Tom said: "Now, if you've got the hang, go it lively!" So they "went it lively," panting and perspiring with the work. By and by Tom shouted: "Fall! fall! Why don't you fall?" "I sha'n't! Why don't you fall yourself? You're getting the worst of it." "Why, that ain't anything. I can't fall; that ain't the way it is in the book. The book says, 'Then with one back-handed stroke he slew poor Guy of Guisborne.' You're to turn around and let me hit you in the back." There was no getting around the authorities, so Joe turned, received the whack and fell. "Now," said Joe, getting up, "you got to let me kill YOU. That's fair." "Why, I can't do that, it ain't in the book." "Well, it's blamed mean--that's all." "Well, say, Joe, you can be Friar Tuck or Much the miller's son, and lam me with a quarter-staff; or I'll be the Sheriff of Nottingham and you be Robin Hood a little while and kill me." This was satisfactory, and so these adventures were carried out. Then Tom became Robin Hood again, and was allowed by the treacherous nun to bleed his strength away through his neglected wound. And at last Joe, representing a whole tribe of weeping outlaws, dragged him sadly forth, gave his bow into his feeble hands, and Tom said, "Where this arrow falls, there bury poor Robin Hood under the greenwood tree." Then he shot the arrow and fell back and would have died, but he lit on a nettle and sprang up too gaily for a corpse. The boys dressed themselves, hid their accoutrements, and went off grieving that there were no outlaws any more, and wondering what modern civilization could claim to have done to compensate for their loss. They said they would rather be outlaws a year in Sherwood Forest than President of the United States forever. CHAPTER IX AT half-past nine, that night, Tom and Sid were sent to bed, as usual. They said their prayers, and Sid was soon asleep. Tom lay awake and waited, in restless impatience. When it seemed to him that it must be nearly daylight, he heard the clock strike ten! This was despair. He would have tossed and fidgeted, as his nerves demanded, but he was afraid he might wake Sid. So he lay still, and stared up into the dark. Everything was dismally still. By and by, out of the stillness, little, scarcely perceptible noises began to emphasize themselves. The ticking of the clock began to bring itself into notice. Old beams began to crack mysteriously. The stairs creaked faintly. Evidently spirits were abroad. A measured, muffled snore issued from Aunt Polly's chamber. And now the tiresome chirping of a cricket that no human ingenuity could locate, began. Next the ghastly ticking of a deathwatch in the wall at the bed's head made Tom shudder--it meant that somebody's days were numbered. Then the howl of a far-off dog rose on the night air, and was answered by a fainter howl from a remoter distance. Tom was in an agony. At last he was satisfied that time had ceased and eternity begun; he began to doze, in spite of himself; the clock chimed eleven, but he did not hear it. And then there came, mingling with his half-formed dreams, a most melancholy caterwauling. The raising of a neighboring window disturbed him. A cry of "Scat! you devil!" and the crash of an empty bottle against the back of his aunt's woodshed brought him wide awake, and a single minute later he was dressed and out of the window and creeping along the roof of the "ell" on all fours. He "meow'd" with caution once or twice, as he went; then jumped to the roof of the woodshed and thence to the ground. Huckleberry Finn was there, with his dead cat. The boys moved off and disappeared in the gloom. At the end of half an hour they were wading through the tall grass of the graveyard. It was a graveyard of the old-fashioned Western kind. It was on a hill, about a mile and a half from the village. It had a crazy board fence around it, which leaned inward in places, and outward the rest of the time, but stood upright nowhere. Grass and weeds grew rank over the whole cemetery. All the old graves were sunken in, there was not a tombstone on the place; round-topped, worm-eaten boards staggered over the graves, leaning for support and finding none. "Sacred to the memory of" So-and-So had been painted on them once, but it could no longer have been read, on the most of them, now, even if there had been light. A faint wind moaned through the trees, and Tom feared it might be the spirits of the dead, complaining at being disturbed. The boys talked little, and only under their breath, for the time and the place and the pervading solemnity and silence oppressed their spirits. They found the sharp new heap they were seeking, and ensconced themselves within the protection of three great elms that grew in a bunch within a few feet of the grave. Then they waited in silence for what seemed a long time. The hooting of a distant owl was all the sound that troubled the dead stillness. Tom's reflections grew oppressive. He must force some talk. So he said in a whisper: "Hucky, do you believe the dead people like it for us to be here?" Huckleberry whispered: "I wisht I knowed. It's awful solemn like, AIN'T it?" "I bet it is." There was a considerable pause, while the boys canvassed this matter inwardly. Then Tom whispered: "Say, Hucky--do you reckon Hoss Williams hears us talking?" "O' course he does. Least his sperrit does." Tom, after a pause: "I wish I'd said Mister Williams. But I never meant any harm. Everybody calls him Hoss." "A body can't be too partic'lar how they talk 'bout these-yer dead people, Tom." This was a damper, and conversation died again. Presently Tom seized his comrade's arm and said: "Sh!" "What is it, Tom?" And the two clung together with beating hearts. "Sh! There 'tis again! Didn't you hear it?" "I--" "There! Now you hear it." "Lord, Tom, they're coming! They're coming, sure. What'll we do?" "I dono. Think they'll see us?" "Oh, Tom, they can see in the dark, same as cats. I wisht I hadn't come." "Oh, don't be afeard. I don't believe they'll bother us. We ain't doing any harm. If we keep perfectly still, maybe they won't notice us at all." "I'll try to, Tom, but, Lord, I'm all of a shiver." "Listen!" The boys bent their heads together and scarcely breathed. A muffled sound of voices floated up from the far end of the graveyard. "Look! See there!" whispered Tom. "What is it?" "It's devil-fire. Oh, Tom, this is awful." Some vague figures approached through the gloom, swinging an old-fashioned tin lantern that freckled the ground with innumerable little spangles of light. Presently Huckleberry whispered with a shudder: "It's the devils sure enough. Three of 'em! Lordy, Tom, we're goners! Can you pray?" "I'll try, but don't you be afeard. They ain't going to hurt us. 'Now I lay me down to sleep, I--'" "Sh!" "What is it, Huck?" "They're HUMANS! One of 'em is, anyway. One of 'em's old Muff Potter's voice." "No--'tain't so, is it?" "I bet I know it. Don't you stir nor budge. He ain't sharp enough to notice us. Drunk, the same as usual, likely--blamed old rip!" "All right, I'll keep still. Now they're stuck. Can't find it. Here they come again. Now they're hot. Cold again. Hot again. Red hot! They're p'inted right, this time. Say, Huck, I know another o' them voices; it's Injun Joe." "That's so--that murderin' half-breed! I'd druther they was devils a dern sight. What kin they be up to?" The whisper died wholly out, now, for the three men had reached the grave and stood within a few feet of the boys' hiding-place. "Here it is," said the third voice; and the owner of it held the lantern up and revealed the face of young Doctor Robinson. Potter and Injun Joe were carrying a handbarrow with a rope and a couple of shovels on it. They cast down their load and began to open the grave. The doctor put the lantern at the head of the grave and came and sat down with his back against one of the elm trees. He was so close the boys could have touched him. "Hurry, men!" he said, in a low voice; "the moon might come out at any moment." They growled a response and went on digging. For some time there was no noise but the grating sound of the spades discharging their freight of mould and gravel. It was very monotonous. Finally a spade struck upon the coffin with a dull woody accent, and within another minute or two the men had hoisted it out on the ground. They pried off the lid with their shovels, got out the body and dumped it rudely on the ground. The moon drifted from behind the clouds and exposed the pallid face. The barrow was got ready and the corpse placed on it, covered with a blanket, and bound to its place with the rope. Potter took out a large spring-knife and cut off the dangling end of the rope and then said: "Now the cussed thing's ready, Sawbones, and you'll just out with another five, or here she stays." "That's the talk!" said Injun Joe. "Look here, what does this mean?" said the doctor. "You required your pay in advance, and I've paid you." "Yes, and you done more than that," said Injun Joe, approaching the doctor, who was now standing. "Five years ago you drove me away from your father's kitchen one night, when I come to ask for something to eat, and you said I warn't there for any good; and when I swore I'd get even with you if it took a hundred years, your father had me jailed for a vagrant. Did you think I'd forget? The Injun blood ain't in me for nothing. And now I've GOT you, and you got to SETTLE, you know!" He was threatening the doctor, with his fist in his face, by this time. The doctor struck out suddenly and stretched the ruffian on the ground. Potter dropped his knife, and exclaimed: "Here, now, don't you hit my pard!" and the next moment he had grappled with the doctor and the two were struggling with might and main, trampling the grass and tearing the ground with their heels. Injun Joe sprang to his feet, his eyes flaming with passion, snatched up Potter's knife, and went creeping, catlike and stooping, round and round about the combatants, seeking an opportunity. All at once the doctor flung himself free, seized the heavy headboard of Williams' grave and felled Potter to the earth with it--and in the same instant the half-breed saw his chance and drove the knife to the hilt in the young man's breast. He reeled and fell partly upon Potter, flooding him with his blood, and in the same moment the clouds blotted out the dreadful spectacle and the two frightened boys went speeding away in the dark. Presently, when the moon emerged again, Injun Joe was standing over the two forms, contemplating them. The doctor murmured inarticulately, gave a long gasp or two and was still. The half-breed muttered: "THAT score is settled--damn you." Then he robbed the body. After which he put the fatal knife in Potter's open right hand, and sat down on the dismantled coffin. Three --four--five minutes passed, and then Potter began to stir and moan. His hand closed upon the knife; he raised it, glanced at it, and let it fall, with a shudder. Then he sat up, pushing the body from him, and gazed at it, and then around him, confusedly. His eyes met Joe's. "Lord, how is this, Joe?" he said. "It's a dirty business," said Joe, without moving. "What did you do it for?" "I! I never done it!" "Look here! That kind of talk won't wash." Potter trembled and grew white. "I thought I'd got sober. I'd no business to drink to-night. But it's in my head yet--worse'n when we started here. I'm all in a muddle; can't recollect anything of it, hardly. Tell me, Joe--HONEST, now, old feller--did I do it? Joe, I never meant to--'pon my soul and honor, I never meant to, Joe. Tell me how it was, Joe. Oh, it's awful--and him so young and promising." "Why, you two was scuffling, and he fetched you one with the headboard and you fell flat; and then up you come, all reeling and staggering like, and snatched the knife and jammed it into him, just as he fetched you another awful clip--and here you've laid, as dead as a wedge til now." "Oh, I didn't know what I was a-doing. I wish I may die this minute if I did. It was all on account of the whiskey and the excitement, I reckon. I never used a weepon in my life before, Joe. I've fought, but never with weepons. They'll all say that. Joe, don't tell! Say you won't tell, Joe--that's a good feller. I always liked you, Joe, and stood up for you, too. Don't you remember? You WON'T tell, WILL you, Joe?" And the poor creature dropped on his knees before the stolid murderer, and clasped his appealing hands. "No, you've always been fair and square with me, Muff Potter, and I won't go back on you. There, now, that's as fair as a man can say." "Oh, Joe, you're an angel. I'll bless you for this the longest day I live." And Potter began to cry. "Come, now, that's enough of that. This ain't any time for blubbering. You be off yonder way and I'll go this. Move, now, and don't leave any tracks behind you." Potter started on a trot that quickly increased to a run. The half-breed stood looking after him. He muttered: "If he's as much stunned with the lick and fuddled with the rum as he had the look of being, he won't think of the knife till he's gone so far he'll be afraid to come back after it to such a place by himself --chicken-heart!" Two or three minutes later the murdered man, the blanketed corpse, the lidless coffin, and the open grave were under no inspection but the moon's. The stillness was complete again, too. CHAPTER X THE two boys flew on and on, toward the village, speechless with horror. They glanced backward over their shoulders from time to time, apprehensively, as if they feared they might be followed. Every stump that started up in their path seemed a man and an enemy, and made them catch their breath; and as they sped by some outlying cottages that lay near the village, the barking of the aroused watch-dogs seemed to give wings to their feet. "If we can only get to the old tannery before we break down!" whispered Tom, in short catches between breaths. "I can't stand it much longer." Huckleberry's hard pantings were his only reply, and the boys fixed their eyes on the goal of their hopes and bent to their work to win it. They gained steadily on it, and at last, breast to breast, they burst through the open door and fell grateful and exhausted in the sheltering shadows beyond. By and by their pulses slowed down, and Tom whispered: "Huckleberry, what do you reckon'll come of this?" "If Doctor Robinson dies, I reckon hanging'll come of it." "Do you though?" "Why, I KNOW it, Tom." Tom thought a while, then he said: "Who'll tell? We?" "What are you talking about? S'pose something happened and Injun Joe DIDN'T hang? Why, he'd kill us some time or other, just as dead sure as we're a laying here." "That's just what I was thinking to myself, Huck." "If anybody tells, let Muff Potter do it, if he's fool enough. He's generally drunk enough." Tom said nothing--went on thinking. Presently he whispered: "Huck, Muff Potter don't know it. How can he tell?" "What's the reason he don't know it?" "Because he'd just got that whack when Injun Joe done it. D'you reckon he could see anything? D'you reckon he knowed anything?" "By hokey, that's so, Tom!" "And besides, look-a-here--maybe that whack done for HIM!" "No, 'taint likely, Tom. He had liquor in him; I could see that; and besides, he always has. Well, when pap's full, you might take and belt him over the head with a church and you couldn't phase him. He says so, his own self. So it's the same with Muff Potter, of course. But if a man was dead sober, I reckon maybe that whack might fetch him; I dono." After another reflective silence, Tom said: "Hucky, you sure you can keep mum?" "Tom, we GOT to keep mum. You know that. That Injun devil wouldn't make any more of drownding us than a couple of cats, if we was to squeak 'bout this and they didn't hang him. Now, look-a-here, Tom, less take and swear to one another--that's what we got to do--swear to keep mum." "I'm agreed. It's the best thing. Would you just hold hands and swear that we--" "Oh no, that wouldn't do for this. That's good enough for little rubbishy common things--specially with gals, cuz THEY go back on you anyway, and blab if they get in a huff--but there orter be writing 'bout a big thing like this. And blood." Tom's whole being applauded this idea. It was deep, and dark, and awful; the hour, the circumstances, the surroundings, were in keeping with it. He picked up a clean pine shingle that lay in the moonlight, took a little fragment of "red keel" out of his pocket, got the moon on his work, and painfully scrawled these lines, emphasizing each slow down-stroke by clamping his tongue between his teeth, and letting up the pressure on the up-strokes. [See next page.] "Huck Finn and Tom Sawyer swears they will keep mum about This and They wish They may Drop down dead in Their Tracks if They ever Tell and Rot." Huckleberry was filled with admiration of Tom's facility in writing, and the sublimity of his language. He at once took a pin from his lapel and was going to prick his flesh, but Tom said: "Hold on! Don't do that. A pin's brass. It might have verdigrease on it." "What's verdigrease?" "It's p'ison. That's what it is. You just swaller some of it once --you'll see." So Tom unwound the thread from one of his needles, and each boy pricked the ball of his thumb and squeezed out a drop of blood. In time, after many squeezes, Tom managed to sign his initials, using the ball of his little finger for a pen. Then he showed Huckleberry how to make an H and an F, and the oath was complete. They buried the shingle close to the wall, with some dismal ceremonies and incantations, and the fetters that bound their tongues were considered to be locked and the key thrown away. A figure crept stealthily through a break in the other end of the ruined building, now, but they did not notice it. "Tom," whispered Huckleberry, "does this keep us from EVER telling --ALWAYS?" "Of course it does. It don't make any difference WHAT happens, we got to keep mum. We'd drop down dead--don't YOU know that?" "Yes, I reckon that's so." They continued to whisper for some little time. Presently a dog set up a long, lugubrious howl just outside--within ten feet of them. The boys clasped each other suddenly, in an agony of fright. "Which of us does he mean?" gasped Huckleberry. "I dono--peep through the crack. Quick!" "No, YOU, Tom!" "I can't--I can't DO it, Huck!" "Please, Tom. There 'tis again!" "Oh, lordy, I'm thankful!" whispered Tom. "I know his voice. It's Bull Harbison." * [* If Mr. Harbison owned a slave named Bull, Tom would have spoken of him as "Harbison's Bull," but a son or a dog of that name was "Bull Harbison."] "Oh, that's good--I tell you, Tom, I was most scared to death; I'd a bet anything it was a STRAY dog." The dog howled again. The boys' hearts sank once more. "Oh, my! that ain't no Bull Harbison!" whispered Huckleberry. "DO, Tom!" Tom, quaking with fear, yielded, and put his eye to the crack. His whisper was hardly audible when he said: "Oh, Huck, IT S A STRAY DOG!" "Quick, Tom, quick! Who does he mean?" "Huck, he must mean us both--we're right together." "Oh, Tom, I reckon we're goners. I reckon there ain't no mistake 'bout where I'LL go to. I been so wicked." "Dad fetch it! This comes of playing hookey and doing everything a feller's told NOT to do. I might a been good, like Sid, if I'd a tried --but no, I wouldn't, of course. But if ever I get off this time, I lay I'll just WALLER in Sunday-schools!" And Tom began to snuffle a little. "YOU bad!" and Huckleberry began to snuffle too. "Consound it, Tom Sawyer, you're just old pie, 'longside o' what I am. Oh, LORDY, lordy, lordy, I wisht I only had half your chance." Tom choked off and whispered: "Look, Hucky, look! He's got his BACK to us!" Hucky looked, with joy in his heart. "Well, he has, by jingoes! Did he before?" "Yes, he did. But I, like a fool, never thought. Oh, this is bully, you know. NOW who can he mean?" The howling stopped. Tom pricked up his ears. "Sh! What's that?" he whispered. "Sounds like--like hogs grunting. No--it's somebody snoring, Tom." "That IS it! Where 'bouts is it, Huck?" "I bleeve it's down at 'tother end. Sounds so, anyway. Pap used to sleep there, sometimes, 'long with the hogs, but laws bless you, he just lifts things when HE snores. Besides, I reckon he ain't ever coming back to this town any more." The spirit of adventure rose in the boys' souls once more. "Hucky, do you das't to go if I lead?" "I don't like to, much. Tom, s'pose it's Injun Joe!" Tom quailed. But presently the temptation rose up strong again and the boys agreed to try, with the understanding that they would take to their heels if the snoring stopped. So they went tiptoeing stealthily down, the one behind the other. When they had got to within five steps of the snorer, Tom stepped on a stick, and it broke with a sharp snap. The man moaned, writhed a little, and his face came into the moonlight. It was Muff Potter. The boys' hearts had stood still, and their hopes too, when the man moved, but their fears passed away now. They tiptoed out, through the broken weather-boarding, and stopped at a little distance to exchange a parting word. That long, lugubrious howl rose on the night air again! They turned and saw the strange dog standing within a few feet of where Potter was lying, and FACING Potter, with his nose pointing heavenward. "Oh, geeminy, it's HIM!" exclaimed both boys, in a breath. "Say, Tom--they say a stray dog come howling around Johnny Miller's house, 'bout midnight, as much as two weeks ago; and a whippoorwill come in and lit on the banisters and sung, the very same evening; and there ain't anybody dead there yet." "Well, I know that. And suppose there ain't. Didn't Gracie Miller fall in the kitchen fire and burn herself terrible the very next Saturday?" "Yes, but she ain't DEAD. And what's more, she's getting better, too." "All right, you wait and see. She's a goner, just as dead sure as Muff Potter's a goner. That's what the niggers say, and they know all about these kind of things, Huck." Then they separated, cogitating. When Tom crept in at his bedroom window the night was almost spent. He undressed with excessive caution, and fell asleep congratulating himself that nobody knew of his escapade. He was not aware that the gently-snoring Sid was awake, and had been so for an hour. When Tom awoke, Sid was dressed and gone. There was a late look in the light, a late sense in the atmosphere. He was startled. Why had he not been called--persecuted till he was up, as usual? The thought filled him with bodings. Within five minutes he was dressed and down-stairs, feeling sore and drowsy. The family were still at table, but they had finished breakfast. There was no voice of rebuke; but there were averted eyes; there was a silence and an air of solemnity that struck a chill to the culprit's heart. He sat down and tried to seem gay, but it was up-hill work; it roused no smile, no response, and he lapsed into silence and let his heart sink down to the depths. After breakfast his aunt took him aside, and Tom almost brightened in the hope that he was going to be flogged; but it was not so. His aunt wept over him and asked him how he could go and break her old heart so; and finally told him to go on, and ruin himself and bring her gray hairs with sorrow to the grave, for it was no use for her to try any more. This was worse than a thousand whippings, and Tom's heart was sorer now than his body. He cried, he pleaded for forgiveness, promised to reform over and over again, and then received his dismissal, feeling that he had won but an imperfect forgiveness and established but a feeble confidence. He left the presence too miserable to even feel revengeful toward Sid; and so the latter's prompt retreat through the back gate was unnecessary. He moped to school gloomy and sad, and took his flogging, along with Joe Harper, for playing hookey the day before, with the air of one whose heart was busy with heavier woes and wholly dead to trifles. Then he betook himself to his seat, rested his elbows on his desk and his jaws in his hands, and stared at the wall with the stony stare of suffering that has reached the limit and can no further go. His elbow was pressing against some hard substance. After a long time he slowly and sadly changed his position, and took up this object with a sigh. It was in a paper. He unrolled it. A long, lingering, colossal sigh followed, and his heart broke. It was his brass andiron knob! This final feather broke the camel's back. CHAPTER XI CLOSE upon the hour of noon the whole village was suddenly electrified with the ghastly news. No need of the as yet undreamed-of telegraph; the tale flew from man to man, from group to group, from house to house, with little less than telegraphic speed. Of course the schoolmaster gave holiday for that afternoon; the town would have thought strangely of him if he had not. A gory knife had been found close to the murdered man, and it had been recognized by somebody as belonging to Muff Potter--so the story ran. And it was said that a belated citizen had come upon Potter washing himself in the "branch" about one or two o'clock in the morning, and that Potter had at once sneaked off--suspicious circumstances, especially the washing which was not a habit with Potter. It was also said that the town had been ransacked for this "murderer" (the public are not slow in the matter of sifting evidence and arriving at a verdict), but that he could not be found. Horsemen had departed down all the roads in every direction, and the Sheriff "was confident" that he would be captured before night. All the town was drifting toward the graveyard. Tom's heartbreak vanished and he joined the procession, not because he would not a thousand times rather go anywhere else, but because an awful, unaccountable fascination drew him on. Arrived at the dreadful place, he wormed his small body through the crowd and saw the dismal spectacle. It seemed to him an age since he was there before. Somebody pinched his arm. He turned, and his eyes met Huckleberry's. Then both looked elsewhere at once, and wondered if anybody had noticed anything in their mutual glance. But everybody was talking, and intent upon the grisly spectacle before them. "Poor fellow!" "Poor young fellow!" "This ought to be a lesson to grave robbers!" "Muff Potter'll hang for this if they catch him!" This was the drift of remark; and the minister said, "It was a judgment; His hand is here." Now Tom shivered from head to heel; for his eye fell upon the stolid face of Injun Joe. At this moment the crowd began to sway and struggle, and voices shouted, "It's him! it's him! he's coming himself!" "Who? Who?" from twenty voices. "Muff Potter!" "Hallo, he's stopped!--Look out, he's turning! Don't let him get away!" People in the branches of the trees over Tom's head said he wasn't trying to get away--he only looked doubtful and perplexed. "Infernal impudence!" said a bystander; "wanted to come and take a quiet look at his work, I reckon--didn't expect any company." The crowd fell apart, now, and the Sheriff came through, ostentatiously leading Potter by the arm. The poor fellow's face was haggard, and his eyes showed the fear that was upon him. When he stood before the murdered man, he shook as with a palsy, and he put his face in his hands and burst into tears. "I didn't do it, friends," he sobbed; "'pon my word and honor I never done it." "Who's accused you?" shouted a voice. This shot seemed to carry home. Potter lifted his face and looked around him with a pathetic hopelessness in his eyes. He saw Injun Joe, and exclaimed: "Oh, Injun Joe, you promised me you'd never--" "Is that your knife?" and it was thrust before him by the Sheriff. Potter would have fallen if they had not caught him and eased him to the ground. Then he said: "Something told me 't if I didn't come back and get--" He shuddered; then waved his nerveless hand with a vanquished gesture and said, "Tell 'em, Joe, tell 'em--it ain't any use any more." Then Huckleberry and Tom stood dumb and staring, and heard the stony-hearted liar reel off his serene statement, they expecting every moment that the clear sky would deliver God's lightnings upon his head, and wondering to see how long the stroke was delayed. And when he had finished and still stood alive and whole, their wavering impulse to break their oath and save the poor betrayed prisoner's life faded and vanished away, for plainly this miscreant had sold himself to Satan and it would be fatal to meddle with the property of such a power as that. "Why didn't you leave? What did you want to come here for?" somebody said. "I couldn't help it--I couldn't help it," Potter moaned. "I wanted to run away, but I couldn't seem to come anywhere but here." And he fell to sobbing again. Injun Joe repeated his statement, just as calmly, a few minutes afterward on the inquest, under oath; and the boys, seeing that the lightnings were still withheld, were confirmed in their belief that Joe had sold himself to the devil. He was now become, to them, the most balefully interesting object they had ever looked upon, and they could not take their fascinated eyes from his face. They inwardly resolved to watch him nights, when opportunity should offer, in the hope of getting a glimpse of his dread master. Injun Joe helped to raise the body of the murdered man and put it in a wagon for removal; and it was whispered through the shuddering crowd that the wound bled a little! The boys thought that this happy circumstance would turn suspicion in the right direction; but they were disappointed, for more than one villager remarked: "It was within three feet of Muff Potter when it done it." Tom's fearful secret and gnawing conscience disturbed his sleep for as much as a week after this; and at breakfast one morning Sid said: "Tom, you pitch around and talk in your sleep so much that you keep me awake half the time." Tom blanched and dropped his eyes. "It's a bad sign," said Aunt Polly, gravely. "What you got on your mind, Tom?" "Nothing. Nothing 't I know of." But the boy's hand shook so that he spilled his coffee. "And you do talk such stuff," Sid said. "Last night you said, 'It's blood, it's blood, that's what it is!' You said that over and over. And you said, 'Don't torment me so--I'll tell!' Tell WHAT? What is it you'll tell?" Everything was swimming before Tom. There is no telling what might have happened, now, but luckily the concern passed out of Aunt Polly's face and she came to Tom's relief without knowing it. She said: "Sho! It's that dreadful murder. I dream about it most every night myself. Sometimes I dream it's me that done it." Mary said she had been affected much the same way. Sid seemed satisfied. Tom got out of the presence as quick as he plausibly could, and after that he complained of toothache for a week, and tied up his jaws every night. He never knew that Sid lay nightly watching, and frequently slipped the bandage free and then leaned on his elbow listening a good while at a time, and afterward slipped the bandage back to its place again. Tom's distress of mind wore off gradually and the toothache grew irksome and was discarded. If Sid really managed to make anything out of Tom's disjointed mutterings, he kept it to himself. It seemed to Tom that his schoolmates never would get done holding inquests on dead cats, and thus keeping his trouble present to his mind. Sid noticed that Tom never was coroner at one of these inquiries, though it had been his habit to take the lead in all new enterprises; he noticed, too, that Tom never acted as a witness--and that was strange; and Sid did not overlook the fact that Tom even showed a marked aversion to these inquests, and always avoided them when he could. Sid marvelled, but said nothing. However, even inquests went out of vogue at last, and ceased to torture Tom's conscience. Every day or two, during this time of sorrow, Tom watched his opportunity and went to the little grated jail-window and smuggled such small comforts through to the "murderer" as he could get hold of. The jail was a trifling little brick den that stood in a marsh at the edge of the village, and no guards were afforded for it; indeed, it was seldom occupied. These offerings greatly helped to ease Tom's conscience. The villagers had a strong desire to tar-and-feather Injun Joe and ride him on a rail, for body-snatching, but so formidable was his character that nobody could be found who was willing to take the lead in the matter, so it was dropped. He had been careful to begin both of his inquest-statements with the fight, without confessing the grave-robbery that preceded it; therefore it was deemed wisest not to try the case in the courts at present. CHAPTER XII ONE of the reasons why Tom's mind had drifted away from its secret troubles was, that it had found a new and weighty matter to interest itself about. Becky Thatcher had stopped coming to school. Tom had struggled with his pride a few days, and tried to "whistle her down the wind," but failed. He began to find himself hanging around her father's house, nights, and feeling very miserable. She was ill. What if she should die! There was distraction in the thought. He no longer took an interest in war, nor even in piracy. The charm of life was gone; there was nothing but dreariness left. He put his hoop away, and his bat; there was no joy in them any more. His aunt was concerned. She began to try all manner of remedies on him. She was one of those people who are infatuated with patent medicines and all new-fangled methods of producing health or mending it. She was an inveterate experimenter in these things. When something fresh in this line came out she was in a fever, right away, to try it; not on herself, for she was never ailing, but on anybody else that came handy. She was a subscriber for all the "Health" periodicals and phrenological frauds; and the solemn ignorance they were inflated with was breath to her nostrils. All the "rot" they contained about ventilation, and how to go to bed, and how to get up, and what to eat, and what to drink, and how much exercise to take, and what frame of mind to keep one's self in, and what sort of clothing to wear, was all gospel to her, and she never observed that her health-journals of the current month customarily upset everything they had recommended the month before. She was as simple-hearted and honest as the day was long, and so she was an easy victim. She gathered together her quack periodicals and her quack medicines, and thus armed with death, went about on her pale horse, metaphorically speaking, with "hell following after." But she never suspected that she was not an angel of healing and the balm of Gilead in disguise, to the suffering neighbors. The water treatment was new, now, and Tom's low condition was a windfall to her. She had him out at daylight every morning, stood him up in the woodshed and drowned him with a deluge of cold water; then she scrubbed him down with a towel like a file, and so brought him to; then she rolled him up in a wet sheet and put him away under blankets till she sweated his soul clean and "the yellow stains of it came through his pores"--as Tom said. Yet notwithstanding all this, the boy grew more and more melancholy and pale and dejected. She added hot baths, sitz baths, shower baths, and plunges. The boy remained as dismal as a hearse. She began to assist the water with a slim oatmeal diet and blister-plasters. She calculated his capacity as she would a jug's, and filled him up every day with quack cure-alls. Tom had become indifferent to persecution by this time. This phase filled the old lady's heart with consternation. This indifference must be broken up at any cost. Now she heard of Pain-killer for the first time. She ordered a lot at once. She tasted it and was filled with gratitude. It was simply fire in a liquid form. She dropped the water treatment and everything else, and pinned her faith to Pain-killer. She gave Tom a teaspoonful and watched with the deepest anxiety for the result. Her troubles were instantly at rest, her soul at peace again; for the "indifference" was broken up. The boy could not have shown a wilder, heartier interest, if she had built a fire under him. Tom felt that it was time to wake up; this sort of life might be romantic enough, in his blighted condition, but it was getting to have too little sentiment and too much distracting variety about it. So he thought over various plans for relief, and finally hit pon that of professing to be fond of Pain-killer. He asked for it so often that he became a nuisance, and his aunt ended by telling him to help himself and quit bothering her. If it had been Sid, she would have had no misgivings to alloy her delight; but since it was Tom, she watched the bottle clandestinely. She found that the medicine did really diminish, but it did not occur to her that the boy was mending the health of a crack in the sitting-room floor with it. One day Tom was in the act of dosing the crack when his aunt's yellow cat came along, purring, eying the teaspoon avariciously, and begging for a taste. Tom said: "Don't ask for it unless you want it, Peter." But Peter signified that he did want it. "You better make sure." Peter was sure. "Now you've asked for it, and I'll give it to you, because there ain't anything mean about me; but if you find you don't like it, you mustn't blame anybody but your own self." Peter was agreeable. So Tom pried his mouth open and poured down the Pain-killer. Peter sprang a couple of yards in the air, and then delivered a war-whoop and set off round and round the room, banging against furniture, upsetting flower-pots, and making general havoc. Next he rose on his hind feet and pranced around, in a frenzy of enjoyment, with his head over his shoulder and his voice proclaiming his unappeasable happiness. Then he went tearing around the house again spreading chaos and destruction in his path. Aunt Polly entered in time to see him throw a few double summersets, deliver a final mighty hurrah, and sail through the open window, carrying the rest of the flower-pots with him. The old lady stood petrified with astonishment, peering over her glasses; Tom lay on the floor expiring with laughter. "Tom, what on earth ails that cat?" "I don't know, aunt," gasped the boy. "Why, I never see anything like it. What did make him act so?" "Deed I don't know, Aunt Polly; cats always act so when they're having a good time." "They do, do they?" There was something in the tone that made Tom apprehensive. "Yes'm. That is, I believe they do." "You DO?" "Yes'm." The old lady was bending down, Tom watching, with interest emphasized by anxiety. Too late he divined her "drift." The handle of the telltale teaspoon was visible under the bed-valance. Aunt Polly took it, held it up. Tom winced, and dropped his eyes. Aunt Polly raised him by the usual handle--his ear--and cracked his head soundly with her thimble. "Now, sir, what did you want to treat that poor dumb beast so, for?" "I done it out of pity for him--because he hadn't any aunt." "Hadn't any aunt!--you numskull. What has that got to do with it?" "Heaps. Because if he'd had one she'd a burnt him out herself! She'd a roasted his bowels out of him 'thout any more feeling than if he was a human!" Aunt Polly felt a sudden pang of remorse. This was putting the thing in a new light; what was cruelty to a cat MIGHT be cruelty to a boy, too. She began to soften; she felt sorry. Her eyes watered a little, and she put her hand on Tom's head and said gently: "I was meaning for the best, Tom. And, Tom, it DID do you good." Tom looked up in her face with just a perceptible twinkle peeping through his gravity. "I know you was meaning for the best, aunty, and so was I with Peter. It done HIM good, too. I never see him get around so since--" "Oh, go 'long with you, Tom, before you aggravate me again. And you try and see if you can't be a good boy, for once, and you needn't take any more medicine." Tom reached school ahead of time. It was noticed that this strange thing had been occurring every day latterly. And now, as usual of late, he hung about the gate of the schoolyard instead of playing with his comrades. He was sick, he said, and he looked it. He tried to seem to be looking everywhere but whither he really was looking--down the road. Presently Jeff Thatcher hove in sight, and Tom's face lighted; he gazed a moment, and then turned sorrowfully away. When Jeff arrived, Tom accosted him; and "led up" warily to opportunities for remark about Becky, but the giddy lad never could see the bait. Tom watched and watched, hoping whenever a frisking frock came in sight, and hating the owner of it as soon as he saw she was not the right one. At last frocks ceased to appear, and he dropped hopelessly into the dumps; he entered the empty schoolhouse and sat down to suffer. Then one more frock passed in at the gate, and Tom's heart gave a great bound. The next instant he was out, and "going on" like an Indian; yelling, laughing, chasing boys, jumping over the fence at risk of life and limb, throwing handsprings, standing on his head--doing all the heroic things he could conceive of, and keeping a furtive eye out, all the while, to see if Becky Thatcher was noticing. But she seemed to be unconscious of it all; she never looked. Could it be possible that she was not aware that he was there? He carried his exploits to her immediate vicinity; came war-whooping around, snatched a boy's cap, hurled it to the roof of the schoolhouse, broke through a group of boys, tumbling them in every direction, and fell sprawling, himself, under Becky's nose, almost upsetting her--and she turned, with her nose in the air, and he heard her say: "Mf! some people think they're mighty smart--always showing off!" Tom's cheeks burned. He gathered himself up and sneaked off, crushed and crestfallen. CHAPTER XIII TOM'S mind was made up now. He was gloomy and desperate. He was a forsaken, friendless boy, he said; nobody loved him; when they found out what they had driven him to, perhaps they would be sorry; he had tried to do right and get along, but they would not let him; since nothing would do them but to be rid of him, let it be so; and let them blame HIM for the consequences--why shouldn't they? What right had the friendless to complain? Yes, they had forced him to it at last: he would lead a life of crime. There was no choice. By this time he was far down Meadow Lane, and the bell for school to "take up" tinkled faintly upon his ear. He sobbed, now, to think he should never, never hear that old familiar sound any more--it was very hard, but it was forced on him; since he was driven out into the cold world, he must submit--but he forgave them. Then the sobs came thick and fast. Just at this point he met his soul's sworn comrade, Joe Harper --hard-eyed, and with evidently a great and dismal purpose in his heart. Plainly here were "two souls with but a single thought." Tom, wiping his eyes with his sleeve, began to blubber out something about a resolution to escape from hard usage and lack of sympathy at home by roaming abroad into the great world never to return; and ended by hoping that Joe would not forget him. But it transpired that this was a request which Joe had just been going to make of Tom, and had come to hunt him up for that purpose. His mother had whipped him for drinking some cream which he had never tasted and knew nothing about; it was plain that she was tired of him and wished him to go; if she felt that way, there was nothing for him to do but succumb; he hoped she would be happy, and never regret having driven her poor boy out into the unfeeling world to suffer and die. As the two boys walked sorrowing along, they made a new compact to stand by each other and be brothers and never separate till death relieved them of their troubles. Then they began to lay their plans. Joe was for being a hermit, and living on crusts in a remote cave, and dying, some time, of cold and want and grief; but after listening to Tom, he conceded that there were some conspicuous advantages about a life of crime, and so he consented to be a pirate. Three miles below St. Petersburg, at a point where the Mississippi River was a trifle over a mile wide, there was a long, narrow, wooded island, with a shallow bar at the head of it, and this offered well as a rendezvous. It was not inhabited; it lay far over toward the further shore, abreast a dense and almost wholly unpeopled forest. So Jackson's Island was chosen. Who were to be the subjects of their piracies was a matter that did not occur to them. Then they hunted up Huckleberry Finn, and he joined them promptly, for all careers were one to him; he was indifferent. They presently separated to meet at a lonely spot on the river-bank two miles above the village at the favorite hour--which was midnight. There was a small log raft there which they meant to capture. Each would bring hooks and lines, and such provision as he could steal in the most dark and mysterious way--as became outlaws. And before the afternoon was done, they had all managed to enjoy the sweet glory of spreading the fact that pretty soon the town would "hear something." All who got this vague hint were cautioned to "be mum and wait." About midnight Tom arrived with a boiled ham and a few trifles, and stopped in a dense undergrowth on a small bluff overlooking the meeting-place. It was starlight, and very still. The mighty river lay like an ocean at rest. Tom listened a moment, but no sound disturbed the quiet. Then he gave a low, distinct whistle. It was answered from under the bluff. Tom whistled twice more; these signals were answered in the same way. Then a guarded voice said: "Who goes there?" "Tom Sawyer, the Black Avenger of the Spanish Main. Name your names." "Huck Finn the Red-Handed, and Joe Harper the Terror of the Seas." Tom had furnished these titles, from his favorite literature. "'Tis well. Give the countersign." Two hoarse whispers delivered the same awful word simultaneously to the brooding night: "BLOOD!" Then Tom tumbled his ham over the bluff and let himself down after it, tearing both skin and clothes to some extent in the effort. There was an easy, comfortable path along the shore under the bluff, but it lacked the advantages of difficulty and danger so valued by a pirate. The Terror of the Seas had brought a side of bacon, and had about worn himself out with getting it there. Finn the Red-Handed had stolen a skillet and a quantity of half-cured leaf tobacco, and had also brought a few corn-cobs to make pipes with. But none of the pirates smoked or "chewed" but himself. The Black Avenger of the Spanish Main said it would never do to start without some fire. That was a wise thought; matches were hardly known there in that day. They saw a fire smouldering upon a great raft a hundred yards above, and they went stealthily thither and helped themselves to a chunk. They made an imposing adventure of it, saying, "Hist!" every now and then, and suddenly halting with finger on lip; moving with hands on imaginary dagger-hilts; and giving orders in dismal whispers that if "the foe" stirred, to "let him have it to the hilt," because "dead men tell no tales." They knew well enough that the raftsmen were all down at the village laying in stores or having a spree, but still that was no excuse for their conducting this thing in an unpiratical way. They shoved off, presently, Tom in command, Huck at the after oar and Joe at the forward. Tom stood amidships, gloomy-browed, and with folded arms, and gave his orders in a low, stern whisper: "Luff, and bring her to the wind!" "Aye-aye, sir!" "Steady, steady-y-y-y!" "Steady it is, sir!" "Let her go off a point!" "Point it is, sir!" As the boys steadily and monotonously drove the raft toward mid-stream it was no doubt understood that these orders were given only for "style," and were not intended to mean anything in particular. "What sail's she carrying?" "Courses, tops'ls, and flying-jib, sir." "Send the r'yals up! Lay out aloft, there, half a dozen of ye --foretopmaststuns'l! Lively, now!" "Aye-aye, sir!" "Shake out that maintogalans'l! Sheets and braces! NOW my hearties!" "Aye-aye, sir!" "Hellum-a-lee--hard a port! Stand by to meet her when she comes! Port, port! NOW, men! With a will! Stead-y-y-y!" "Steady it is, sir!" The raft drew beyond the middle of the river; the boys pointed her head right, and then lay on their oars. The river was not high, so there was not more than a two or three mile current. Hardly a word was said during the next three-quarters of an hour. Now the raft was passing before the distant town. Two or three glimmering lights showed where it lay, peacefully sleeping, beyond the vague vast sweep of star-gemmed water, unconscious of the tremendous event that was happening. The Black Avenger stood still with folded arms, "looking his last" upon the scene of his former joys and his later sufferings, and wishing "she" could see him now, abroad on the wild sea, facing peril and death with dauntless heart, going to his doom with a grim smile on his lips. It was but a small strain on his imagination to remove Jackson's Island beyond eyeshot of the village, and so he "looked his last" with a broken and satisfied heart. The other pirates were looking their last, too; and they all looked so long that they came near letting the current drift them out of the range of the island. But they discovered the danger in time, and made shift to avert it. About two o'clock in the morning the raft grounded on the bar two hundred yards above the head of the island, and they waded back and forth until they had landed their freight. Part of the little raft's belongings consisted of an old sail, and this they spread over a nook in the bushes for a tent to shelter their provisions; but they themselves would sleep in the open air in good weather, as became outlaws. They built a fire against the side of a great log twenty or thirty steps within the sombre depths of the forest, and then cooked some bacon in the frying-pan for supper, and used up half of the corn "pone" stock they had brought. It seemed glorious sport to be feasting in that wild, free way in the virgin forest of an unexplored and uninhabited island, far from the haunts of men, and they said they never would return to civilization. The climbing fire lit up their faces and threw its ruddy glare upon the pillared tree-trunks of their forest temple, and upon the varnished foliage and festooning vines. When the last crisp slice of bacon was gone, and the last allowance of corn pone devoured, the boys stretched themselves out on the grass, filled with contentment. They could have found a cooler place, but they would not deny themselves such a romantic feature as the roasting camp-fire. "AIN'T it gay?" said Joe. "It's NUTS!" said Tom. "What would the boys say if they could see us?" "Say? Well, they'd just die to be here--hey, Hucky!" "I reckon so," said Huckleberry; "anyways, I'm suited. I don't want nothing better'n this. I don't ever get enough to eat, gen'ally--and here they can't come and pick at a feller and bullyrag him so." "It's just the life for me," said Tom. "You don't have to get up, mornings, and you don't have to go to school, and wash, and all that blame foolishness. You see a pirate don't have to do ANYTHING, Joe, when he's ashore, but a hermit HE has to be praying considerable, and then he don't have any fun, anyway, all by himself that way." "Oh yes, that's so," said Joe, "but I hadn't thought much about it, you know. I'd a good deal rather be a pirate, now that I've tried it." "You see," said Tom, "people don't go much on hermits, nowadays, like they used to in old times, but a pirate's always respected. And a hermit's got to sleep on the hardest place he can find, and put sackcloth and ashes on his head, and stand out in the rain, and--" "What does he put sackcloth and ashes on his head for?" inquired Huck. "I dono. But they've GOT to do it. Hermits always do. You'd have to do that if you was a hermit." "Dern'd if I would," said Huck. "Well, what would you do?" "I dono. But I wouldn't do that." "Why, Huck, you'd HAVE to. How'd you get around it?" "Why, I just wouldn't stand it. I'd run away." "Run away! Well, you WOULD be a nice old slouch of a hermit. You'd be a disgrace." The Red-Handed made no response, being better employed. He had finished gouging out a cob, and now he fitted a weed stem to it, loaded it with tobacco, and was pressing a coal to the charge and blowing a cloud of fragrant smoke--he was in the full bloom of luxurious contentment. The other pirates envied him this majestic vice, and secretly resolved to acquire it shortly. Presently Huck said: "What does pirates have to do?" Tom said: "Oh, they have just a bully time--take ships and burn them, and get the money and bury it in awful places in their island where there's ghosts and things to watch it, and kill everybody in the ships--make 'em walk a plank." "And they carry the women to the island," said Joe; "they don't kill the women." "No," assented Tom, "they don't kill the women--they're too noble. And the women's always beautiful, too. "And don't they wear the bulliest clothes! Oh no! All gold and silver and di'monds," said Joe, with enthusiasm. "Who?" said Huck. "Why, the pirates." Huck scanned his own clothing forlornly. "I reckon I ain't dressed fitten for a pirate," said he, with a regretful pathos in his voice; "but I ain't got none but these." But the other boys told him the fine clothes would come fast enough, after they should have begun their adventures. They made him understand that his poor rags would do to begin with, though it was customary for wealthy pirates to start with a proper wardrobe. Gradually their talk died out and drowsiness began to steal upon the eyelids of the little waifs. The pipe dropped from the fingers of the Red-Handed, and he slept the sleep of the conscience-free and the weary. The Terror of the Seas and the Black Avenger of the Spanish Main had more difficulty in getting to sleep. They said their prayers inwardly, and lying down, since there was nobody there with authority to make them kneel and recite aloud; in truth, they had a mind not to say them at all, but they were afraid to proceed to such lengths as that, lest they might call down a sudden and special thunderbolt from heaven. Then at once they reached and hovered upon the imminent verge of sleep--but an intruder came, now, that would not "down." It was conscience. They began to feel a vague fear that they had been doing wrong to run away; and next they thought of the stolen meat, and then the real torture came. They tried to argue it away by reminding conscience that they had purloined sweetmeats and apples scores of times; but conscience was not to be appeased by such thin plausibilities; it seemed to them, in the end, that there was no getting around the stubborn fact that taking sweetmeats was only "hooking," while taking bacon and hams and such valuables was plain simple stealing--and there was a command against that in the Bible. So they inwardly resolved that so long as they remained in the business, their piracies should not again be sullied with the crime of stealing. Then conscience granted a truce, and these curiously inconsistent pirates fell peacefully to sleep. CHAPTER XIV WHEN Tom awoke in the morning, he wondered where he was. He sat up and rubbed his eyes and looked around. Then he comprehended. It was the cool gray dawn, and there was a delicious sense of repose and peace in the deep pervading calm and silence of the woods. Not a leaf stirred; not a sound obtruded upon great Nature's meditation. Beaded dewdrops stood upon the leaves and grasses. A white layer of ashes covered the fire, and a thin blue breath of smoke rose straight into the air. Joe and Huck still slept. Now, far away in the woods a bird called; another answered; presently the hammering of a woodpecker was heard. Gradually the cool dim gray of the morning whitened, and as gradually sounds multiplied and life manifested itself. The marvel of Nature shaking off sleep and going to work unfolded itself to the musing boy. A little green worm came crawling over a dewy leaf, lifting two-thirds of his body into the air from time to time and "sniffing around," then proceeding again--for he was measuring, Tom said; and when the worm approached him, of its own accord, he sat as still as a stone, with his hopes rising and falling, by turns, as the creature still came toward him or seemed inclined to go elsewhere; and when at last it considered a painful moment with its curved body in the air and then came decisively down upon Tom's leg and began a journey over him, his whole heart was glad--for that meant that he was going to have a new suit of clothes--without the shadow of a doubt a gaudy piratical uniform. Now a procession of ants appeared, from nowhere in particular, and went about their labors; one struggled manfully by with a dead spider five times as big as itself in its arms, and lugged it straight up a tree-trunk. A brown spotted lady-bug climbed the dizzy height of a grass blade, and Tom bent down close to it and said, "Lady-bug, lady-bug, fly away home, your house is on fire, your children's alone," and she took wing and went off to see about it --which did not surprise the boy, for he knew of old that this insect was credulous about conflagrations, and he had practised upon its simplicity more than once. A tumblebug came next, heaving sturdily at its ball, and Tom touched the creature, to see it shut its legs against its body and pretend to be dead. The birds were fairly rioting by this time. A catbird, the Northern mocker, lit in a tree over Tom's head, and trilled out her imitations of her neighbors in a rapture of enjoyment; then a shrill jay swept down, a flash of blue flame, and stopped on a twig almost within the boy's reach, cocked his head to one side and eyed the strangers with a consuming curiosity; a gray squirrel and a big fellow of the "fox" kind came skurrying along, sitting up at intervals to inspect and chatter at the boys, for the wild things had probably never seen a human being before and scarcely knew whether to be afraid or not. All Nature was wide awake and stirring, now; long lances of sunlight pierced down through the dense foliage far and near, and a few butterflies came fluttering upon the scene. Tom stirred up the other pirates and they all clattered away with a shout, and in a minute or two were stripped and chasing after and tumbling over each other in the shallow limpid water of the white sandbar. They felt no longing for the little village sleeping in the distance beyond the majestic waste of water. A vagrant current or a slight rise in the river had carried off their raft, but this only gratified them, since its going was something like burning the bridge between them and civilization. They came back to camp wonderfully refreshed, glad-hearted, and ravenous; and they soon had the camp-fire blazing up again. Huck found a spring of clear cold water close by, and the boys made cups of broad oak or hickory leaves, and felt that water, sweetened with such a wildwood charm as that, would be a good enough substitute for coffee. While Joe was slicing bacon for breakfast, Tom and Huck asked him to hold on a minute; they stepped to a promising nook in the river-bank and threw in their lines; almost immediately they had reward. Joe had not had time to get impatient before they were back again with some handsome bass, a couple of sun-perch and a small catfish--provisions enough for quite a family. They fried the fish with the bacon, and were astonished; for no fish had ever seemed so delicious before. They did not know that the quicker a fresh-water fish is on the fire after he is caught the better he is; and they reflected little upon what a sauce open-air sleeping, open-air exercise, bathing, and a large ingredient of hunger make, too. They lay around in the shade, after breakfast, while Huck had a smoke, and then went off through the woods on an exploring expedition. They tramped gayly along, over decaying logs, through tangled underbrush, among solemn monarchs of the forest, hung from their crowns to the ground with a drooping regalia of grape-vines. Now and then they came upon snug nooks carpeted with grass and jeweled with flowers. They found plenty of things to be delighted with, but nothing to be astonished at. They discovered that the island was about three miles long and a quarter of a mile wide, and that the shore it lay closest to was only separated from it by a narrow channel hardly two hundred yards wide. They took a swim about every hour, so it was close upon the middle of the afternoon when they got back to camp. They were too hungry to stop to fish, but they fared sumptuously upon cold ham, and then threw themselves down in the shade to talk. But the talk soon began to drag, and then died. The stillness, the solemnity that brooded in the woods, and the sense of loneliness, began to tell upon the spirits of the boys. They fell to thinking. A sort of undefined longing crept upon them. This took dim shape, presently--it was budding homesickness. Even Finn the Red-Handed was dreaming of his doorsteps and empty hogsheads. But they were all ashamed of their weakness, and none was brave enough to speak his thought. For some time, now, the boys had been dully conscious of a peculiar sound in the distance, just as one sometimes is of the ticking of a clock which he takes no distinct note of. But now this mysterious sound became more pronounced, and forced a recognition. The boys started, glanced at each other, and then each assumed a listening attitude. There was a long silence, profound and unbroken; then a deep, sullen boom came floating down out of the distance. "What is it!" exclaimed Joe, under his breath. "I wonder," said Tom in a whisper. "'Tain't thunder," said Huckleberry, in an awed tone, "becuz thunder--" "Hark!" said Tom. "Listen--don't talk." They waited a time that seemed an age, and then the same muffled boom troubled the solemn hush. "Let's go and see." They sprang to their feet and hurried to the shore toward the town. They parted the bushes on the bank and peered out over the water. The little steam ferryboat was about a mile below the village, drifting with the current. Her broad deck seemed crowded with people. There were a great many skiffs rowing about or floating with the stream in the neighborhood of the ferryboat, but the boys could not determine what the men in them were doing. Presently a great jet of white smoke burst from the ferryboat's side, and as it expanded and rose in a lazy cloud, that same dull throb of sound was borne to the listeners again. "I know now!" exclaimed Tom; "somebody's drownded!" "That's it!" said Huck; "they done that last summer, when Bill Turner got drownded; they shoot a cannon over the water, and that makes him come up to the top. Yes, and they take loaves of bread and put quicksilver in 'em and set 'em afloat, and wherever there's anybody that's drownded, they'll float right there and stop." "Yes, I've heard about that," said Joe. "I wonder what makes the bread do that." "Oh, it ain't the bread, so much," said Tom; "I reckon it's mostly what they SAY over it before they start it out." "But they don't say anything over it," said Huck. "I've seen 'em and they don't." "Well, that's funny," said Tom. "But maybe they say it to themselves. Of COURSE they do. Anybody might know that." The other boys agreed that there was reason in what Tom said, because an ignorant lump of bread, uninstructed by an incantation, could not be expected to act very intelligently when set upon an errand of such gravity. "By jings, I wish I was over there, now," said Joe. "I do too" said Huck "I'd give heaps to know who it is." The boys still listened and watched. Presently a revealing thought flashed through Tom's mind, and he exclaimed: "Boys, I know who's drownded--it's us!" They felt like heroes in an instant. Here was a gorgeous triumph; they were missed; they were mourned; hearts were breaking on their account; tears were being shed; accusing memories of unkindness to these poor lost lads were rising up, and unavailing regrets and remorse were being indulged; and best of all, the departed were the talk of the whole town, and the envy of all the boys, as far as this dazzling notoriety was concerned. This was fine. It was worth while to be a pirate, after all. As twilight drew on, the ferryboat went back to her accustomed business and the skiffs disappeared. The pirates returned to camp. They were jubilant with vanity over their new grandeur and the illustrious trouble they were making. They caught fish, cooked supper and ate it, and then fell to guessing at what the village was thinking and saying about them; and the pictures they drew of the public distress on their account were gratifying to look upon--from their point of view. But when the shadows of night closed them in, they gradually ceased to talk, and sat gazing into the fire, with their minds evidently wandering elsewhere. The excitement was gone, now, and Tom and Joe could not keep back thoughts of certain persons at home who were not enjoying this fine frolic as much as they were. Misgivings came; they grew troubled and unhappy; a sigh or two escaped, unawares. By and by Joe timidly ventured upon a roundabout "feeler" as to how the others might look upon a return to civilization--not right now, but-- Tom withered him with derision! Huck, being uncommitted as yet, joined in with Tom, and the waverer quickly "explained," and was glad to get out of the scrape with as little taint of chicken-hearted homesickness clinging to his garments as he could. Mutiny was effectually laid to rest for the moment. As the night deepened, Huck began to nod, and presently to snore. Joe followed next. Tom lay upon his elbow motionless, for some time, watching the two intently. At last he got up cautiously, on his knees, and went searching among the grass and the flickering reflections flung by the camp-fire. He picked up and inspected several large semi-cylinders of the thin white bark of a sycamore, and finally chose two which seemed to suit him. Then he knelt by the fire and painfully wrote something upon each of these with his "red keel"; one he rolled up and put in his jacket pocket, and the other he put in Joe's hat and removed it to a little distance from the owner. And he also put into the hat certain schoolboy treasures of almost inestimable value--among them a lump of chalk, an India-rubber ball, three fishhooks, and one of that kind of marbles known as a "sure 'nough crystal." Then he tiptoed his way cautiously among the trees till he felt that he was out of hearing, and straightway broke into a keen run in the direction of the sandbar. CHAPTER XV A FEW minutes later Tom was in the shoal water of the bar, wading toward the Illinois shore. Before the depth reached his middle he was half-way over; the current would permit no more wading, now, so he struck out confidently to swim the remaining hundred yards. He swam quartering upstream, but still was swept downward rather faster than he had expected. However, he reached the shore finally, and drifted along till he found a low place and drew himself out. He put his hand on his jacket pocket, found his piece of bark safe, and then struck through the woods, following the shore, with streaming garments. Shortly before ten o'clock he came out into an open place opposite the village, and saw the ferryboat lying in the shadow of the trees and the high bank. Everything was quiet under the blinking stars. He crept down the bank, watching with all his eyes, slipped into the water, swam three or four strokes and climbed into the skiff that did "yawl" duty at the boat's stern. He laid himself down under the thwarts and waited, panting. Presently the cracked bell tapped and a voice gave the order to "cast off." A minute or two later the skiff's head was standing high up, against the boat's swell, and the voyage was begun. Tom felt happy in his success, for he knew it was the boat's last trip for the night. At the end of a long twelve or fifteen minutes the wheels stopped, and Tom slipped overboard and swam ashore in the dusk, landing fifty yards downstream, out of danger of possible stragglers. He flew along unfrequented alleys, and shortly found himself at his aunt's back fence. He climbed over, approached the "ell," and looked in at the sitting-room window, for a light was burning there. There sat Aunt Polly, Sid, Mary, and Joe Harper's mother, grouped together, talking. They were by the bed, and the bed was between them and the door. Tom went to the door and began to softly lift the latch; then he pressed gently and the door yielded a crack; he continued pushing cautiously, and quaking every time it creaked, till he judged he might squeeze through on his knees; so he put his head through and began, warily. "What makes the candle blow so?" said Aunt Polly. Tom hurried up. "Why, that door's open, I believe. Why, of course it is. No end of strange things now. Go 'long and shut it, Sid." Tom disappeared under the bed just in time. He lay and "breathed" himself for a time, and then crept to where he could almost touch his aunt's foot. "But as I was saying," said Aunt Polly, "he warn't BAD, so to say --only mischEEvous. Only just giddy, and harum-scarum, you know. He warn't any more responsible than a colt. HE never meant any harm, and he was the best-hearted boy that ever was"--and she began to cry. "It was just so with my Joe--always full of his devilment, and up to every kind of mischief, but he was just as unselfish and kind as he could be--and laws bless me, to think I went and whipped him for taking that cream, never once recollecting that I throwed it out myself because it was sour, and I never to see him again in this world, never, never, never, poor abused boy!" And Mrs. Harper sobbed as if her heart would break. "I hope Tom's better off where he is," said Sid, "but if he'd been better in some ways--" "SID!" Tom felt the glare of the old lady's eye, though he could not see it. "Not a word against my Tom, now that he's gone! God'll take care of HIM--never you trouble YOURself, sir! Oh, Mrs. Harper, I don't know how to give him up! I don't know how to give him up! He was such a comfort to me, although he tormented my old heart out of me, 'most." "The Lord giveth and the Lord hath taken away--Blessed be the name of the Lord! But it's so hard--Oh, it's so hard! Only last Saturday my Joe busted a firecracker right under my nose and I knocked him sprawling. Little did I know then, how soon--Oh, if it was to do over again I'd hug him and bless him for it." "Yes, yes, yes, I know just how you feel, Mrs. Harper, I know just exactly how you feel. No longer ago than yesterday noon, my Tom took and filled the cat full of Pain-killer, and I did think the cretur would tear the house down. And God forgive me, I cracked Tom's head with my thimble, poor boy, poor dead boy. But he's out of all his troubles now. And the last words I ever heard him say was to reproach--" But this memory was too much for the old lady, and she broke entirely down. Tom was snuffling, now, himself--and more in pity of himself than anybody else. He could hear Mary crying, and putting in a kindly word for him from time to time. He began to have a nobler opinion of himself than ever before. Still, he was sufficiently touched by his aunt's grief to long to rush out from under the bed and overwhelm her with joy--and the theatrical gorgeousness of the thing appealed strongly to his nature, too, but he resisted and lay still. He went on listening, and gathered by odds and ends that it was conjectured at first that the boys had got drowned while taking a swim; then the small raft had been missed; next, certain boys said the missing lads had promised that the village should "hear something" soon; the wise-heads had "put this and that together" and decided that the lads had gone off on that raft and would turn up at the next town below, presently; but toward noon the raft had been found, lodged against the Missouri shore some five or six miles below the village --and then hope perished; they must be drowned, else hunger would have driven them home by nightfall if not sooner. It was believed that the search for the bodies had been a fruitless effort merely because the drowning must have occurred in mid-channel, since the boys, being good swimmers, would otherwise have escaped to shore. This was Wednesday night. If the bodies continued missing until Sunday, all hope would be given over, and the funerals would be preached on that morning. Tom shuddered. Mrs. Harper gave a sobbing good-night and turned to go. Then with a mutual impulse the two bereaved women flung themselves into each other's arms and had a good, consoling cry, and then parted. Aunt Polly was tender far beyond her wont, in her good-night to Sid and Mary. Sid snuffled a bit and Mary went off crying with all her heart. Aunt Polly knelt down and prayed for Tom so touchingly, so appealingly, and with such measureless love in her words and her old trembling voice, that he was weltering in tears again, long before she was through. He had to keep still long after she went to bed, for she kept making broken-hearted ejaculations from time to time, tossing unrestfully, and turning over. But at last she was still, only moaning a little in her sleep. Now the boy stole out, rose gradually by the bedside, shaded the candle-light with his hand, and stood regarding her. His heart was full of pity for her. He took out his sycamore scroll and placed it by the candle. But something occurred to him, and he lingered considering. His face lighted with a happy solution of his thought; he put the bark hastily in his pocket. Then he bent over and kissed the faded lips, and straightway made his stealthy exit, latching the door behind him. He threaded his way back to the ferry landing, found nobody at large there, and walked boldly on board the boat, for he knew she was tenantless except that there was a watchman, who always turned in and slept like a graven image. He untied the skiff at the stern, slipped into it, and was soon rowing cautiously upstream. When he had pulled a mile above the village, he started quartering across and bent himself stoutly to his work. He hit the landing on the other side neatly, for this was a familiar bit of work to him. He was moved to capture the skiff, arguing that it might be considered a ship and therefore legitimate prey for a pirate, but he knew a thorough search would be made for it and that might end in revelations. So he stepped ashore and entered the woods. He sat down and took a long rest, torturing himself meanwhile to keep awake, and then started warily down the home-stretch. The night was far spent. It was broad daylight before he found himself fairly abreast the island bar. He rested again until the sun was well up and gilding the great river with its splendor, and then he plunged into the stream. A little later he paused, dripping, upon the threshold of the camp, and heard Joe say: "No, Tom's true-blue, Huck, and he'll come back. He won't desert. He knows that would be a disgrace to a pirate, and Tom's too proud for that sort of thing. He's up to something or other. Now I wonder what?" "Well, the things is ours, anyway, ain't they?" "Pretty near, but not yet, Huck. The writing says they are if he ain't back here to breakfast." "Which he is!" exclaimed Tom, with fine dramatic effect, stepping grandly into camp. A sumptuous breakfast of bacon and fish was shortly provided, and as the boys set to work upon it, Tom recounted (and adorned) his adventures. They were a vain and boastful company of heroes when the tale was done. Then Tom hid himself away in a shady nook to sleep till noon, and the other pirates got ready to fish and explore. CHAPTER XVI AFTER dinner all the gang turned out to hunt for turtle eggs on the bar. They went about poking sticks into the sand, and when they found a soft place they went down on their knees and dug with their hands. Sometimes they would take fifty or sixty eggs out of one hole. They were perfectly round white things a trifle smaller than an English walnut. They had a famous fried-egg feast that night, and another on Friday morning. After breakfast they went whooping and prancing out on the bar, and chased each other round and round, shedding clothes as they went, until they were naked, and then continued the frolic far away up the shoal water of the bar, against the stiff current, which latter tripped their legs from under them from time to time and greatly increased the fun. And now and then they stooped in a group and splashed water in each other's faces with their palms, gradually approaching each other, with averted faces to avoid the strangling sprays, and finally gripping and struggling till the best man ducked his neighbor, and then they all went under in a tangle of white legs and arms and came up blowing, sputtering, laughing, and gasping for breath at one and the same time. When they were well exhausted, they would run out and sprawl on the dry, hot sand, and lie there and cover themselves up with it, and by and by break for the water again and go through the original performance once more. Finally it occurred to them that their naked skin represented flesh-colored "tights" very fairly; so they drew a ring in the sand and had a circus--with three clowns in it, for none would yield this proudest post to his neighbor. Next they got their marbles and played "knucks" and "ring-taw" and "keeps" till that amusement grew stale. Then Joe and Huck had another swim, but Tom would not venture, because he found that in kicking off his trousers he had kicked his string of rattlesnake rattles off his ankle, and he wondered how he had escaped cramp so long without the protection of this mysterious charm. He did not venture again until he had found it, and by that time the other boys were tired and ready to rest. They gradually wandered apart, dropped into the "dumps," and fell to gazing longingly across the wide river to where the village lay drowsing in the sun. Tom found himself writing "BECKY" in the sand with his big toe; he scratched it out, and was angry with himself for his weakness. But he wrote it again, nevertheless; he could not help it. He erased it once more and then took himself out of temptation by driving the other boys together and joining them. But Joe's spirits had gone down almost beyond resurrection. He was so homesick that he could hardly endure the misery of it. The tears lay very near the surface. Huck was melancholy, too. Tom was downhearted, but tried hard not to show it. He had a secret which he was not ready to tell, yet, but if this mutinous depression was not broken up soon, he would have to bring it out. He said, with a great show of cheerfulness: "I bet there's been pirates on this island before, boys. We'll explore it again. They've hid treasures here somewhere. How'd you feel to light on a rotten chest full of gold and silver--hey?" But it roused only faint enthusiasm, which faded out, with no reply. Tom tried one or two other seductions; but they failed, too. It was discouraging work. Joe sat poking up the sand with a stick and looking very gloomy. Finally he said: "Oh, boys, let's give it up. I want to go home. It's so lonesome." "Oh no, Joe, you'll feel better by and by," said Tom. "Just think of the fishing that's here." "I don't care for fishing. I want to go home." "But, Joe, there ain't such another swimming-place anywhere." "Swimming's no good. I don't seem to care for it, somehow, when there ain't anybody to say I sha'n't go in. I mean to go home." "Oh, shucks! Baby! You want to see your mother, I reckon." "Yes, I DO want to see my mother--and you would, too, if you had one. I ain't any more baby than you are." And Joe snuffled a little. "Well, we'll let the cry-baby go home to his mother, won't we, Huck? Poor thing--does it want to see its mother? And so it shall. You like it here, don't you, Huck? We'll stay, won't we?" Huck said, "Y-e-s"--without any heart in it. "I'll never speak to you again as long as I live," said Joe, rising. "There now!" And he moved moodily away and began to dress himself. "Who cares!" said Tom. "Nobody wants you to. Go 'long home and get laughed at. Oh, you're a nice pirate. Huck and me ain't cry-babies. We'll stay, won't we, Huck? Let him go if he wants to. I reckon we can get along without him, per'aps." But Tom was uneasy, nevertheless, and was alarmed to see Joe go sullenly on with his dressing. And then it was discomforting to see Huck eying Joe's preparations so wistfully, and keeping up such an ominous silence. Presently, without a parting word, Joe began to wade off toward the Illinois shore. Tom's heart began to sink. He glanced at Huck. Huck could not bear the look, and dropped his eyes. Then he said: "I want to go, too, Tom. It was getting so lonesome anyway, and now it'll be worse. Let's us go, too, Tom." "I won't! You can all go, if you want to. I mean to stay." "Tom, I better go." "Well, go 'long--who's hendering you." Huck began to pick up his scattered clothes. He said: "Tom, I wisht you'd come, too. Now you think it over. We'll wait for you when we get to shore." "Well, you'll wait a blame long time, that's all." Huck started sorrowfully away, and Tom stood looking after him, with a strong desire tugging at his heart to yield his pride and go along too. He hoped the boys would stop, but they still waded slowly on. It suddenly dawned on Tom that it was become very lonely and still. He made one final struggle with his pride, and then darted after his comrades, yelling: "Wait! Wait! I want to tell you something!" They presently stopped and turned around. When he got to where they were, he began unfolding his secret, and they listened moodily till at last they saw the "point" he was driving at, and then they set up a war-whoop of applause and said it was "splendid!" and said if he had told them at first, they wouldn't have started away. He made a plausible excuse; but his real reason had been the fear that not even the secret would keep them with him any very great length of time, and so he had meant to hold it in reserve as a last seduction. The lads came gayly back and went at their sports again with a will, chattering all the time about Tom's stupendous plan and admiring the genius of it. After a dainty egg and fish dinner, Tom said he wanted to learn to smoke, now. Joe caught at the idea and said he would like to try, too. So Huck made pipes and filled them. These novices had never smoked anything before but cigars made of grape-vine, and they "bit" the tongue, and were not considered manly anyway. Now they stretched themselves out on their elbows and began to puff, charily, and with slender confidence. The smoke had an unpleasant taste, and they gagged a little, but Tom said: "Why, it's just as easy! If I'd a knowed this was all, I'd a learnt long ago." "So would I," said Joe. "It's just nothing." "Why, many a time I've looked at people smoking, and thought well I wish I could do that; but I never thought I could," said Tom. "That's just the way with me, hain't it, Huck? You've heard me talk just that way--haven't you, Huck? I'll leave it to Huck if I haven't." "Yes--heaps of times," said Huck. "Well, I have too," said Tom; "oh, hundreds of times. Once down by the slaughter-house. Don't you remember, Huck? Bob Tanner was there, and Johnny Miller, and Jeff Thatcher, when I said it. Don't you remember, Huck, 'bout me saying that?" "Yes, that's so," said Huck. "That was the day after I lost a white alley. No, 'twas the day before." "There--I told you so," said Tom. "Huck recollects it." "I bleeve I could smoke this pipe all day," said Joe. "I don't feel sick." "Neither do I," said Tom. "I could smoke it all day. But I bet you Jeff Thatcher couldn't." "Jeff Thatcher! Why, he'd keel over just with two draws. Just let him try it once. HE'D see!" "I bet he would. And Johnny Miller--I wish could see Johnny Miller tackle it once." "Oh, don't I!" said Joe. "Why, I bet you Johnny Miller couldn't any more do this than nothing. Just one little snifter would fetch HIM." "'Deed it would, Joe. Say--I wish the boys could see us now." "So do I." "Say--boys, don't say anything about it, and some time when they're around, I'll come up to you and say, 'Joe, got a pipe? I want a smoke.' And you'll say, kind of careless like, as if it warn't anything, you'll say, 'Yes, I got my OLD pipe, and another one, but my tobacker ain't very good.' And I'll say, 'Oh, that's all right, if it's STRONG enough.' And then you'll out with the pipes, and we'll light up just as ca'm, and then just see 'em look!" "By jings, that'll be gay, Tom! I wish it was NOW!" "So do I! And when we tell 'em we learned when we was off pirating, won't they wish they'd been along?" "Oh, I reckon not! I'll just BET they will!" So the talk ran on. But presently it began to flag a trifle, and grow disjointed. The silences widened; the expectoration marvellously increased. Every pore inside the boys' cheeks became a spouting fountain; they could scarcely bail out the cellars under their tongues fast enough to prevent an inundation; little overflowings down their throats occurred in spite of all they could do, and sudden retchings followed every time. Both boys were looking very pale and miserable, now. Joe's pipe dropped from his nerveless fingers. Tom's followed. Both fountains were going furiously and both pumps bailing with might and main. Joe said feebly: "I've lost my knife. I reckon I better go and find it." Tom said, with quivering lips and halting utterance: "I'll help you. You go over that way and I'll hunt around by the spring. No, you needn't come, Huck--we can find it." So Huck sat down again, and waited an hour. Then he found it lonesome, and went to find his comrades. They were wide apart in the woods, both very pale, both fast asleep. But something informed him that if they had had any trouble they had got rid of it. They were not talkative at supper that night. They had a humble look, and when Huck prepared his pipe after the meal and was going to prepare theirs, they said no, they were not feeling very well--something they ate at dinner had disagreed with them. About midnight Joe awoke, and called the boys. There was a brooding oppressiveness in the air that seemed to bode something. The boys huddled themselves together and sought the friendly companionship of the fire, though the dull dead heat of the breathless atmosphere was stifling. They sat still, intent and waiting. The solemn hush continued. Beyond the light of the fire everything was swallowed up in the blackness of darkness. Presently there came a quivering glow that vaguely revealed the foliage for a moment and then vanished. By and by another came, a little stronger. Then another. Then a faint moan came sighing through the branches of the forest and the boys felt a fleeting breath upon their cheeks, and shuddered with the fancy that the Spirit of the Night had gone by. There was a pause. Now a weird flash turned night into day and showed every little grass-blade, separate and distinct, that grew about their feet. And it showed three white, startled faces, too. A deep peal of thunder went rolling and tumbling down the heavens and lost itself in sullen rumblings in the distance. A sweep of chilly air passed by, rustling all the leaves and snowing the flaky ashes broadcast about the fire. Another fierce glare lit up the forest and an instant crash followed that seemed to rend the tree-tops right over the boys' heads. They clung together in terror, in the thick gloom that followed. A few big rain-drops fell pattering upon the leaves. "Quick! boys, go for the tent!" exclaimed Tom. They sprang away, stumbling over roots and among vines in the dark, no two plunging in the same direction. A furious blast roared through the trees, making everything sing as it went. One blinding flash after another came, and peal on peal of deafening thunder. And now a drenching rain poured down and the rising hurricane drove it in sheets along the ground. The boys cried out to each other, but the roaring wind and the booming thunder-blasts drowned their voices utterly. However, one by one they straggled in at last and took shelter under the tent, cold, scared, and streaming with water; but to have company in misery seemed something to be grateful for. They could not talk, the old sail flapped so furiously, even if the other noises would have allowed them. The tempest rose higher and higher, and presently the sail tore loose from its fastenings and went winging away on the blast. The boys seized each others' hands and fled, with many tumblings and bruises, to the shelter of a great oak that stood upon the river-bank. Now the battle was at its highest. Under the ceaseless conflagration of lightning that flamed in the skies, everything below stood out in clean-cut and shadowless distinctness: the bending trees, the billowy river, white with foam, the driving spray of spume-flakes, the dim outlines of the high bluffs on the other side, glimpsed through the drifting cloud-rack and the slanting veil of rain. Every little while some giant tree yielded the fight and fell crashing through the younger growth; and the unflagging thunder-peals came now in ear-splitting explosive bursts, keen and sharp, and unspeakably appalling. The storm culminated in one matchless effort that seemed likely to tear the island to pieces, burn it up, drown it to the tree-tops, blow it away, and deafen every creature in it, all at one and the same moment. It was a wild night for homeless young heads to be out in. But at last the battle was done, and the forces retired with weaker and weaker threatenings and grumblings, and peace resumed her sway. The boys went back to camp, a good deal awed; but they found there was still something to be thankful for, because the great sycamore, the shelter of their beds, was a ruin, now, blasted by the lightnings, and they were not under it when the catastrophe happened. Everything in camp was drenched, the camp-fire as well; for they were but heedless lads, like their generation, and had made no provision against rain. Here was matter for dismay, for they were soaked through and chilled. They were eloquent in their distress; but they presently discovered that the fire had eaten so far up under the great log it had been built against (where it curved upward and separated itself from the ground), that a handbreadth or so of it had escaped wetting; so they patiently wrought until, with shreds and bark gathered from the under sides of sheltered logs, they coaxed the fire to burn again. Then they piled on great dead boughs till they had a roaring furnace, and were glad-hearted once more. They dried their boiled ham and had a feast, and after that they sat by the fire and expanded and glorified their midnight adventure until morning, for there was not a dry spot to sleep on, anywhere around. As the sun began to steal in upon the boys, drowsiness came over them, and they went out on the sandbar and lay down to sleep. They got scorched out by and by, and drearily set about getting breakfast. After the meal they felt rusty, and stiff-jointed, and a little homesick once more. Tom saw the signs, and fell to cheering up the pirates as well as he could. But they cared nothing for marbles, or circus, or swimming, or anything. He reminded them of the imposing secret, and raised a ray of cheer. While it lasted, he got them interested in a new device. This was to knock off being pirates, for a while, and be Indians for a change. They were attracted by this idea; so it was not long before they were stripped, and striped from head to heel with black mud, like so many zebras--all of them chiefs, of course--and then they went tearing through the woods to attack an English settlement. By and by they separated into three hostile tribes, and darted upon each other from ambush with dreadful war-whoops, and killed and scalped each other by thousands. It was a gory day. Consequently it was an extremely satisfactory one. They assembled in camp toward supper-time, hungry and happy; but now a difficulty arose--hostile Indians could not break the bread of hospitality together without first making peace, and this was a simple impossibility without smoking a pipe of peace. There was no other process that ever they had heard of. Two of the savages almost wished they had remained pirates. However, there was no other way; so with such show of cheerfulness as they could muster they called for the pipe and took their whiff as it passed, in due form. And behold, they were glad they had gone into savagery, for they had gained something; they found that they could now smoke a little without having to go and hunt for a lost knife; they did not get sick enough to be seriously uncomfortable. They were not likely to fool away this high promise for lack of effort. No, they practised cautiously, after supper, with right fair success, and so they spent a jubilant evening. They were prouder and happier in their new acquirement than they would have been in the scalping and skinning of the Six Nations. We will leave them to smoke and chatter and brag, since we have no further use for them at present. CHAPTER XVII BUT there was no hilarity in the little town that same tranquil Saturday afternoon. The Harpers, and Aunt Polly's family, were being put into mourning, with great grief and many tears. An unusual quiet possessed the village, although it was ordinarily quiet enough, in all conscience. The villagers conducted their concerns with an absent air, and talked little; but they sighed often. The Saturday holiday seemed a burden to the children. They had no heart in their sports, and gradually gave them up. In the afternoon Becky Thatcher found herself moping about the deserted schoolhouse yard, and feeling very melancholy. But she found nothing there to comfort her. She soliloquized: "Oh, if I only had a brass andiron-knob again! But I haven't got anything now to remember him by." And she choked back a little sob. Presently she stopped, and said to herself: "It was right here. Oh, if it was to do over again, I wouldn't say that--I wouldn't say it for the whole world. But he's gone now; I'll never, never, never see him any more." This thought broke her down, and she wandered away, with tears rolling down her cheeks. Then quite a group of boys and girls--playmates of Tom's and Joe's--came by, and stood looking over the paling fence and talking in reverent tones of how Tom did so-and-so the last time they saw him, and how Joe said this and that small trifle (pregnant with awful prophecy, as they could easily see now!)--and each speaker pointed out the exact spot where the lost lads stood at the time, and then added something like "and I was a-standing just so--just as I am now, and as if you was him--I was as close as that--and he smiled, just this way--and then something seemed to go all over me, like--awful, you know--and I never thought what it meant, of course, but I can see now!" Then there was a dispute about who saw the dead boys last in life, and many claimed that dismal distinction, and offered evidences, more or less tampered with by the witness; and when it was ultimately decided who DID see the departed last, and exchanged the last words with them, the lucky parties took upon themselves a sort of sacred importance, and were gaped at and envied by all the rest. One poor chap, who had no other grandeur to offer, said with tolerably manifest pride in the remembrance: "Well, Tom Sawyer he licked me once." But that bid for glory was a failure. Most of the boys could say that, and so that cheapened the distinction too much. The group loitered away, still recalling memories of the lost heroes, in awed voices. When the Sunday-school hour was finished, the next morning, the bell began to toll, instead of ringing in the usual way. It was a very still Sabbath, and the mournful sound seemed in keeping with the musing hush that lay upon nature. The villagers began to gather, loitering a moment in the vestibule to converse in whispers about the sad event. But there was no whispering in the house; only the funereal rustling of dresses as the women gathered to their seats disturbed the silence there. None could remember when the little church had been so full before. There was finally a waiting pause, an expectant dumbness, and then Aunt Polly entered, followed by Sid and Mary, and they by the Harper family, all in deep black, and the whole congregation, the old minister as well, rose reverently and stood until the mourners were seated in the front pew. There was another communing silence, broken at intervals by muffled sobs, and then the minister spread his hands abroad and prayed. A moving hymn was sung, and the text followed: "I am the Resurrection and the Life." As the service proceeded, the clergyman drew such pictures of the graces, the winning ways, and the rare promise of the lost lads that every soul there, thinking he recognized these pictures, felt a pang in remembering that he had persistently blinded himself to them always before, and had as persistently seen only faults and flaws in the poor boys. The minister related many a touching incident in the lives of the departed, too, which illustrated their sweet, generous natures, and the people could easily see, now, how noble and beautiful those episodes were, and remembered with grief that at the time they occurred they had seemed rank rascalities, well deserving of the cowhide. The congregation became more and more moved, as the pathetic tale went on, till at last the whole company broke down and joined the weeping mourners in a chorus of anguished sobs, the preacher himself giving way to his feelings, and crying in the pulpit. There was a rustle in the gallery, which nobody noticed; a moment later the church door creaked; the minister raised his streaming eyes above his handkerchief, and stood transfixed! First one and then another pair of eyes followed the minister's, and then almost with one impulse the congregation rose and stared while the three dead boys came marching up the aisle, Tom in the lead, Joe next, and Huck, a ruin of drooping rags, sneaking sheepishly in the rear! They had been hid in the unused gallery listening to their own funeral sermon! Aunt Polly, Mary, and the Harpers threw themselves upon their restored ones, smothered them with kisses and poured out thanksgivings, while poor Huck stood abashed and uncomfortable, not knowing exactly what to do or where to hide from so many unwelcoming eyes. He wavered, and started to slink away, but Tom seized him and said: "Aunt Polly, it ain't fair. Somebody's got to be glad to see Huck." "And so they shall. I'm glad to see him, poor motherless thing!" And the loving attentions Aunt Polly lavished upon him were the one thing capable of making him more uncomfortable than he was before. Suddenly the minister shouted at the top of his voice: "Praise God from whom all blessings flow--SING!--and put your hearts in it!" And they did. Old Hundred swelled up with a triumphant burst, and while it shook the rafters Tom Sawyer the Pirate looked around upon the envying juveniles about him and confessed in his heart that this was the proudest moment of his life. As the "sold" congregation trooped out they said they would almost be willing to be made ridiculous again to hear Old Hundred sung like that once more. Tom got more cuffs and kisses that day--according to Aunt Polly's varying moods--than he had earned before in a year; and he hardly knew which expressed the most gratefulness to God and affection for himself. CHAPTER XVIII THAT was Tom's great secret--the scheme to return home with his brother pirates and attend their own funerals. They had paddled over to the Missouri shore on a log, at dusk on Saturday, landing five or six miles below the village; they had slept in the woods at the edge of the town till nearly daylight, and had then crept through back lanes and alleys and finished their sleep in the gallery of the church among a chaos of invalided benches. At breakfast, Monday morning, Aunt Polly and Mary were very loving to Tom, and very attentive to his wants. There was an unusual amount of talk. In the course of it Aunt Polly said: "Well, I don't say it wasn't a fine joke, Tom, to keep everybody suffering 'most a week so you boys had a good time, but it is a pity you could be so hard-hearted as to let me suffer so. If you could come over on a log to go to your funeral, you could have come over and give me a hint some way that you warn't dead, but only run off." "Yes, you could have done that, Tom," said Mary; "and I believe you would if you had thought of it." "Would you, Tom?" said Aunt Polly, her face lighting wistfully. "Say, now, would you, if you'd thought of it?" "I--well, I don't know. 'Twould 'a' spoiled everything." "Tom, I hoped you loved me that much," said Aunt Polly, with a grieved tone that discomforted the boy. "It would have been something if you'd cared enough to THINK of it, even if you didn't DO it." "Now, auntie, that ain't any harm," pleaded Mary; "it's only Tom's giddy way--he is always in such a rush that he never thinks of anything." "More's the pity. Sid would have thought. And Sid would have come and DONE it, too. Tom, you'll look back, some day, when it's too late, and wish you'd cared a little more for me when it would have cost you so little." "Now, auntie, you know I do care for you," said Tom. "I'd know it better if you acted more like it." "I wish now I'd thought," said Tom, with a repentant tone; "but I dreamt about you, anyway. That's something, ain't it?" "It ain't much--a cat does that much--but it's better than nothing. What did you dream?" "Why, Wednesday night I dreamt that you was sitting over there by the bed, and Sid was sitting by the woodbox, and Mary next to him." "Well, so we did. So we always do. I'm glad your dreams could take even that much trouble about us." "And I dreamt that Joe Harper's mother was here." "Why, she was here! Did you dream any more?" "Oh, lots. But it's so dim, now." "Well, try to recollect--can't you?" "Somehow it seems to me that the wind--the wind blowed the--the--" "Try harder, Tom! The wind did blow something. Come!" Tom pressed his fingers on his forehead an anxious minute, and then said: "I've got it now! I've got it now! It blowed the candle!" "Mercy on us! Go on, Tom--go on!" "And it seems to me that you said, 'Why, I believe that that door--'" "Go ON, Tom!" "Just let me study a moment--just a moment. Oh, yes--you said you believed the door was open." "As I'm sitting here, I did! Didn't I, Mary! Go on!" "And then--and then--well I won't be certain, but it seems like as if you made Sid go and--and--" "Well? Well? What did I make him do, Tom? What did I make him do?" "You made him--you--Oh, you made him shut it." "Well, for the land's sake! I never heard the beat of that in all my days! Don't tell ME there ain't anything in dreams, any more. Sereny Harper shall know of this before I'm an hour older. I'd like to see her get around THIS with her rubbage 'bout superstition. Go on, Tom!" "Oh, it's all getting just as bright as day, now. Next you said I warn't BAD, only mischeevous and harum-scarum, and not any more responsible than--than--I think it was a colt, or something." "And so it was! Well, goodness gracious! Go on, Tom!" "And then you began to cry." "So I did. So I did. Not the first time, neither. And then--" "Then Mrs. Harper she began to cry, and said Joe was just the same, and she wished she hadn't whipped him for taking cream when she'd throwed it out her own self--" "Tom! The sperrit was upon you! You was a prophesying--that's what you was doing! Land alive, go on, Tom!" "Then Sid he said--he said--" "I don't think I said anything," said Sid. "Yes you did, Sid," said Mary. "Shut your heads and let Tom go on! What did he say, Tom?" "He said--I THINK he said he hoped I was better off where I was gone to, but if I'd been better sometimes--" "THERE, d'you hear that! It was his very words!" "And you shut him up sharp." "I lay I did! There must 'a' been an angel there. There WAS an angel there, somewheres!" "And Mrs. Harper told about Joe scaring her with a firecracker, and you told about Peter and the Painkiller--" "Just as true as I live!" "And then there was a whole lot of talk 'bout dragging the river for us, and 'bout having the funeral Sunday, and then you and old Miss Harper hugged and cried, and she went." "It happened just so! It happened just so, as sure as I'm a-sitting in these very tracks. Tom, you couldn't told it more like if you'd 'a' seen it! And then what? Go on, Tom!" "Then I thought you prayed for me--and I could see you and hear every word you said. And you went to bed, and I was so sorry that I took and wrote on a piece of sycamore bark, 'We ain't dead--we are only off being pirates,' and put it on the table by the candle; and then you looked so good, laying there asleep, that I thought I went and leaned over and kissed you on the lips." "Did you, Tom, DID you! I just forgive you everything for that!" And she seized the boy in a crushing embrace that made him feel like the guiltiest of villains. "It was very kind, even though it was only a--dream," Sid soliloquized just audibly. "Shut up, Sid! A body does just the same in a dream as he'd do if he was awake. Here's a big Milum apple I've been saving for you, Tom, if you was ever found again--now go 'long to school. I'm thankful to the good God and Father of us all I've got you back, that's long-suffering and merciful to them that believe on Him and keep His word, though goodness knows I'm unworthy of it, but if only the worthy ones got His blessings and had His hand to help them over the rough places, there's few enough would smile here or ever enter into His rest when the long night comes. Go 'long Sid, Mary, Tom--take yourselves off--you've hendered me long enough." The children left for school, and the old lady to call on Mrs. Harper and vanquish her realism with Tom's marvellous dream. Sid had better judgment than to utter the thought that was in his mind as he left the house. It was this: "Pretty thin--as long a dream as that, without any mistakes in it!" What a hero Tom was become, now! He did not go skipping and prancing, but moved with a dignified swagger as became a pirate who felt that the public eye was on him. And indeed it was; he tried not to seem to see the looks or hear the remarks as he passed along, but they were food and drink to him. Smaller boys than himself flocked at his heels, as proud to be seen with him, and tolerated by him, as if he had been the drummer at the head of a procession or the elephant leading a menagerie into town. Boys of his own size pretended not to know he had been away at all; but they were consuming with envy, nevertheless. They would have given anything to have that swarthy suntanned skin of his, and his glittering notoriety; and Tom would not have parted with either for a circus. At school the children made so much of him and of Joe, and delivered such eloquent admiration from their eyes, that the two heroes were not long in becoming insufferably "stuck-up." They began to tell their adventures to hungry listeners--but they only began; it was not a thing likely to have an end, with imaginations like theirs to furnish material. And finally, when they got out their pipes and went serenely puffing around, the very summit of glory was reached. Tom decided that he could be independent of Becky Thatcher now. Glory was sufficient. He would live for glory. Now that he was distinguished, maybe she would be wanting to "make up." Well, let her--she should see that he could be as indifferent as some other people. Presently she arrived. Tom pretended not to see her. He moved away and joined a group of boys and girls and began to talk. Soon he observed that she was tripping gayly back and forth with flushed face and dancing eyes, pretending to be busy chasing schoolmates, and screaming with laughter when she made a capture; but he noticed that she always made her captures in his vicinity, and that she seemed to cast a conscious eye in his direction at such times, too. It gratified all the vicious vanity that was in him; and so, instead of winning him, it only "set him up" the more and made him the more diligent to avoid betraying that he knew she was about. Presently she gave over skylarking, and moved irresolutely about, sighing once or twice and glancing furtively and wistfully toward Tom. Then she observed that now Tom was talking more particularly to Amy Lawrence than to any one else. She felt a sharp pang and grew disturbed and uneasy at once. She tried to go away, but her feet were treacherous, and carried her to the group instead. She said to a girl almost at Tom's elbow--with sham vivacity: "Why, Mary Austin! you bad girl, why didn't you come to Sunday-school?" "I did come--didn't you see me?" "Why, no! Did you? Where did you sit?" "I was in Miss Peters' class, where I always go. I saw YOU." "Did you? Why, it's funny I didn't see you. I wanted to tell you about the picnic." "Oh, that's jolly. Who's going to give it?" "My ma's going to let me have one." "Oh, goody; I hope she'll let ME come." "Well, she will. The picnic's for me. She'll let anybody come that I want, and I want you." "That's ever so nice. When is it going to be?" "By and by. Maybe about vacation." "Oh, won't it be fun! You going to have all the girls and boys?" "Yes, every one that's friends to me--or wants to be"; and she glanced ever so furtively at Tom, but he talked right along to Amy Lawrence about the terrible storm on the island, and how the lightning tore the great sycamore tree "all to flinders" while he was "standing within three feet of it." "Oh, may I come?" said Grace Miller. "Yes." "And me?" said Sally Rogers. "Yes." "And me, too?" said Susy Harper. "And Joe?" "Yes." And so on, with clapping of joyful hands till all the group had begged for invitations but Tom and Amy. Then Tom turned coolly away, still talking, and took Amy with him. Becky's lips trembled and the tears came to her eyes; she hid these signs with a forced gayety and went on chattering, but the life had gone out of the picnic, now, and out of everything else; she got away as soon as she could and hid herself and had what her sex call "a good cry." Then she sat moody, with wounded pride, till the bell rang. She roused up, now, with a vindictive cast in her eye, and gave her plaited tails a shake and said she knew what SHE'D do. At recess Tom continued his flirtation with Amy with jubilant self-satisfaction. And he kept drifting about to find Becky and lacerate her with the performance. At last he spied her, but there was a sudden falling of his mercury. She was sitting cosily on a little bench behind the schoolhouse looking at a picture-book with Alfred Temple--and so absorbed were they, and their heads so close together over the book, that they did not seem to be conscious of anything in the world besides. Jealousy ran red-hot through Tom's veins. He began to hate himself for throwing away the chance Becky had offered for a reconciliation. He called himself a fool, and all the hard names he could think of. He wanted to cry with vexation. Amy chatted happily along, as they walked, for her heart was singing, but Tom's tongue had lost its function. He did not hear what Amy was saying, and whenever she paused expectantly he could only stammer an awkward assent, which was as often misplaced as otherwise. He kept drifting to the rear of the schoolhouse, again and again, to sear his eyeballs with the hateful spectacle there. He could not help it. And it maddened him to see, as he thought he saw, that Becky Thatcher never once suspected that he was even in the land of the living. But she did see, nevertheless; and she knew she was winning her fight, too, and was glad to see him suffer as she had suffered. Amy's happy prattle became intolerable. Tom hinted at things he had to attend to; things that must be done; and time was fleeting. But in vain--the girl chirped on. Tom thought, "Oh, hang her, ain't I ever going to get rid of her?" At last he must be attending to those things--and she said artlessly that she would be "around" when school let out. And he hastened away, hating her for it. "Any other boy!" Tom thought, grating his teeth. "Any boy in the whole town but that Saint Louis smarty that thinks he dresses so fine and is aristocracy! Oh, all right, I licked you the first day you ever saw this town, mister, and I'll lick you again! You just wait till I catch you out! I'll just take and--" And he went through the motions of thrashing an imaginary boy --pummelling the air, and kicking and gouging. "Oh, you do, do you? You holler 'nough, do you? Now, then, let that learn you!" And so the imaginary flogging was finished to his satisfaction. Tom fled home at noon. His conscience could not endure any more of Amy's grateful happiness, and his jealousy could bear no more of the other distress. Becky resumed her picture inspections with Alfred, but as the minutes dragged along and no Tom came to suffer, her triumph began to cloud and she lost interest; gravity and absent-mindedness followed, and then melancholy; two or three times she pricked up her ear at a footstep, but it was a false hope; no Tom came. At last she grew entirely miserable and wished she hadn't carried it so far. When poor Alfred, seeing that he was losing her, he did not know how, kept exclaiming: "Oh, here's a jolly one! look at this!" she lost patience at last, and said, "Oh, don't bother me! I don't care for them!" and burst into tears, and got up and walked away. Alfred dropped alongside and was going to try to comfort her, but she said: "Go away and leave me alone, can't you! I hate you!" So the boy halted, wondering what he could have done--for she had said she would look at pictures all through the nooning--and she walked on, crying. Then Alfred went musing into the deserted schoolhouse. He was humiliated and angry. He easily guessed his way to the truth--the girl had simply made a convenience of him to vent her spite upon Tom Sawyer. He was far from hating Tom the less when this thought occurred to him. He wished there was some way to get that boy into trouble without much risk to himself. Tom's spelling-book fell under his eye. Here was his opportunity. He gratefully opened to the lesson for the afternoon and poured ink upon the page. Becky, glancing in at a window behind him at the moment, saw the act, and moved on, without discovering herself. She started homeward, now, intending to find Tom and tell him; Tom would be thankful and their troubles would be healed. Before she was half way home, however, she had changed her mind. The thought of Tom's treatment of her when she was talking about her picnic came scorching back and filled her with shame. She resolved to let him get whipped on the damaged spelling-book's account, and to hate him forever, into the bargain. CHAPTER XIX TOM arrived at home in a dreary mood, and the first thing his aunt said to him showed him that he had brought his sorrows to an unpromising market: "Tom, I've a notion to skin you alive!" "Auntie, what have I done?" "Well, you've done enough. Here I go over to Sereny Harper, like an old softy, expecting I'm going to make her believe all that rubbage about that dream, when lo and behold you she'd found out from Joe that you was over here and heard all the talk we had that night. Tom, I don't know what is to become of a boy that will act like that. It makes me feel so bad to think you could let me go to Sereny Harper and make such a fool of myself and never say a word." This was a new aspect of the thing. His smartness of the morning had seemed to Tom a good joke before, and very ingenious. It merely looked mean and shabby now. He hung his head and could not think of anything to say for a moment. Then he said: "Auntie, I wish I hadn't done it--but I didn't think." "Oh, child, you never think. You never think of anything but your own selfishness. You could think to come all the way over here from Jackson's Island in the night to laugh at our troubles, and you could think to fool me with a lie about a dream; but you couldn't ever think to pity us and save us from sorrow." "Auntie, I know now it was mean, but I didn't mean to be mean. I didn't, honest. And besides, I didn't come over here to laugh at you that night." "What did you come for, then?" "It was to tell you not to be uneasy about us, because we hadn't got drownded." "Tom, Tom, I would be the thankfullest soul in this world if I could believe you ever had as good a thought as that, but you know you never did--and I know it, Tom." "Indeed and 'deed I did, auntie--I wish I may never stir if I didn't." "Oh, Tom, don't lie--don't do it. It only makes things a hundred times worse." "It ain't a lie, auntie; it's the truth. I wanted to keep you from grieving--that was all that made me come." "I'd give the whole world to believe that--it would cover up a power of sins, Tom. I'd 'most be glad you'd run off and acted so bad. But it ain't reasonable; because, why didn't you tell me, child?" "Why, you see, when you got to talking about the funeral, I just got all full of the idea of our coming and hiding in the church, and I couldn't somehow bear to spoil it. So I just put the bark back in my pocket and kept mum." "What bark?" "The bark I had wrote on to tell you we'd gone pirating. I wish, now, you'd waked up when I kissed you--I do, honest." The hard lines in his aunt's face relaxed and a sudden tenderness dawned in her eyes. "DID you kiss me, Tom?" "Why, yes, I did." "Are you sure you did, Tom?" "Why, yes, I did, auntie--certain sure." "What did you kiss me for, Tom?" "Because I loved you so, and you laid there moaning and I was so sorry." The words sounded like truth. The old lady could not hide a tremor in her voice when she said: "Kiss me again, Tom!--and be off with you to school, now, and don't bother me any more." The moment he was gone, she ran to a closet and got out the ruin of a jacket which Tom had gone pirating in. Then she stopped, with it in her hand, and said to herself: "No, I don't dare. Poor boy, I reckon he's lied about it--but it's a blessed, blessed lie, there's such a comfort come from it. I hope the Lord--I KNOW the Lord will forgive him, because it was such goodheartedness in him to tell it. But I don't want to find out it's a lie. I won't look." She put the jacket away, and stood by musing a minute. Twice she put out her hand to take the garment again, and twice she refrained. Once more she ventured, and this time she fortified herself with the thought: "It's a good lie--it's a good lie--I won't let it grieve me." So she sought the jacket pocket. A moment later she was reading Tom's piece of bark through flowing tears and saying: "I could forgive the boy, now, if he'd committed a million sins!" CHAPTER XX THERE was something about Aunt Polly's manner, when she kissed Tom, that swept away his low spirits and made him lighthearted and happy again. He started to school and had the luck of coming upon Becky Thatcher at the head of Meadow Lane. His mood always determined his manner. Without a moment's hesitation he ran to her and said: "I acted mighty mean to-day, Becky, and I'm so sorry. I won't ever, ever do that way again, as long as ever I live--please make up, won't you?" The girl stopped and looked him scornfully in the face: "I'll thank you to keep yourself TO yourself, Mr. Thomas Sawyer. I'll never speak to you again." She tossed her head and passed on. Tom was so stunned that he had not even presence of mind enough to say "Who cares, Miss Smarty?" until the right time to say it had gone by. So he said nothing. But he was in a fine rage, nevertheless. He moped into the schoolyard wishing she were a boy, and imagining how he would trounce her if she were. He presently encountered her and delivered a stinging remark as he passed. She hurled one in return, and the angry breach was complete. It seemed to Becky, in her hot resentment, that she could hardly wait for school to "take in," she was so impatient to see Tom flogged for the injured spelling-book. If she had had any lingering notion of exposing Alfred Temple, Tom's offensive fling had driven it entirely away. Poor girl, she did not know how fast she was nearing trouble herself. The master, Mr. Dobbins, had reached middle age with an unsatisfied ambition. The darling of his desires was, to be a doctor, but poverty had decreed that he should be nothing higher than a village schoolmaster. Every day he took a mysterious book out of his desk and absorbed himself in it at times when no classes were reciting. He kept that book under lock and key. There was not an urchin in school but was perishing to have a glimpse of it, but the chance never came. Every boy and girl had a theory about the nature of that book; but no two theories were alike, and there was no way of getting at the facts in the case. Now, as Becky was passing by the desk, which stood near the door, she noticed that the key was in the lock! It was a precious moment. She glanced around; found herself alone, and the next instant she had the book in her hands. The title-page--Professor Somebody's ANATOMY--carried no information to her mind; so she began to turn the leaves. She came at once upon a handsomely engraved and colored frontispiece--a human figure, stark naked. At that moment a shadow fell on the page and Tom Sawyer stepped in at the door and caught a glimpse of the picture. Becky snatched at the book to close it, and had the hard luck to tear the pictured page half down the middle. She thrust the volume into the desk, turned the key, and burst out crying with shame and vexation. "Tom Sawyer, you are just as mean as you can be, to sneak up on a person and look at what they're looking at." "How could I know you was looking at anything?" "You ought to be ashamed of yourself, Tom Sawyer; you know you're going to tell on me, and oh, what shall I do, what shall I do! I'll be whipped, and I never was whipped in school." Then she stamped her little foot and said: "BE so mean if you want to! I know something that's going to happen. You just wait and you'll see! Hateful, hateful, hateful!"--and she flung out of the house with a new explosion of crying. Tom stood still, rather flustered by this onslaught. Presently he said to himself: "What a curious kind of a fool a girl is! Never been licked in school! Shucks! What's a licking! That's just like a girl--they're so thin-skinned and chicken-hearted. Well, of course I ain't going to tell old Dobbins on this little fool, because there's other ways of getting even on her, that ain't so mean; but what of it? Old Dobbins will ask who it was tore his book. Nobody'll answer. Then he'll do just the way he always does--ask first one and then t'other, and when he comes to the right girl he'll know it, without any telling. Girls' faces always tell on them. They ain't got any backbone. She'll get licked. Well, it's a kind of a tight place for Becky Thatcher, because there ain't any way out of it." Tom conned the thing a moment longer, and then added: "All right, though; she'd like to see me in just such a fix--let her sweat it out!" Tom joined the mob of skylarking scholars outside. In a few moments the master arrived and school "took in." Tom did not feel a strong interest in his studies. Every time he stole a glance at the girls' side of the room Becky's face troubled him. Considering all things, he did not want to pity her, and yet it was all he could do to help it. He could get up no exultation that was really worthy the name. Presently the spelling-book discovery was made, and Tom's mind was entirely full of his own matters for a while after that. Becky roused up from her lethargy of distress and showed good interest in the proceedings. She did not expect that Tom could get out of his trouble by denying that he spilt the ink on the book himself; and she was right. The denial only seemed to make the thing worse for Tom. Becky supposed she would be glad of that, and she tried to believe she was glad of it, but she found she was not certain. When the worst came to the worst, she had an impulse to get up and tell on Alfred Temple, but she made an effort and forced herself to keep still--because, said she to herself, "he'll tell about me tearing the picture sure. I wouldn't say a word, not to save his life!" Tom took his whipping and went back to his seat not at all broken-hearted, for he thought it was possible that he had unknowingly upset the ink on the spelling-book himself, in some skylarking bout--he had denied it for form's sake and because it was custom, and had stuck to the denial from principle. A whole hour drifted by, the master sat nodding in his throne, the air was drowsy with the hum of study. By and by, Mr. Dobbins straightened himself up, yawned, then unlocked his desk, and reached for his book, but seemed undecided whether to take it out or leave it. Most of the pupils glanced up languidly, but there were two among them that watched his movements with intent eyes. Mr. Dobbins fingered his book absently for a while, then took it out and settled himself in his chair to read! Tom shot a glance at Becky. He had seen a hunted and helpless rabbit look as she did, with a gun levelled at its head. Instantly he forgot his quarrel with her. Quick--something must be done! done in a flash, too! But the very imminence of the emergency paralyzed his invention. Good!--he had an inspiration! He would run and snatch the book, spring through the door and fly. But his resolution shook for one little instant, and the chance was lost--the master opened the volume. If Tom only had the wasted opportunity back again! Too late. There was no help for Becky now, he said. The next moment the master faced the school. Every eye sank under his gaze. There was that in it which smote even the innocent with fear. There was silence while one might count ten --the master was gathering his wrath. Then he spoke: "Who tore this book?" There was not a sound. One could have heard a pin drop. The stillness continued; the master searched face after face for signs of guilt. "Benjamin Rogers, did you tear this book?" A denial. Another pause. "Joseph Harper, did you?" Another denial. Tom's uneasiness grew more and more intense under the slow torture of these proceedings. The master scanned the ranks of boys--considered a while, then turned to the girls: "Amy Lawrence?" A shake of the head. "Gracie Miller?" The same sign. "Susan Harper, did you do this?" Another negative. The next girl was Becky Thatcher. Tom was trembling from head to foot with excitement and a sense of the hopelessness of the situation. "Rebecca Thatcher" [Tom glanced at her face--it was white with terror] --"did you tear--no, look me in the face" [her hands rose in appeal] --"did you tear this book?" A thought shot like lightning through Tom's brain. He sprang to his feet and shouted--"I done it!" The school stared in perplexity at this incredible folly. Tom stood a moment, to gather his dismembered faculties; and when he stepped forward to go to his punishment the surprise, the gratitude, the adoration that shone upon him out of poor Becky's eyes seemed pay enough for a hundred floggings. Inspired by the splendor of his own act, he took without an outcry the most merciless flaying that even Mr. Dobbins had ever administered; and also received with indifference the added cruelty of a command to remain two hours after school should be dismissed--for he knew who would wait for him outside till his captivity was done, and not count the tedious time as loss, either. Tom went to bed that night planning vengeance against Alfred Temple; for with shame and repentance Becky had told him all, not forgetting her own treachery; but even the longing for vengeance had to give way, soon, to pleasanter musings, and he fell asleep at last with Becky's latest words lingering dreamily in his ear-- "Tom, how COULD you be so noble!" CHAPTER XXI VACATION was approaching. The schoolmaster, always severe, grew severer and more exacting than ever, for he wanted the school to make a good showing on "Examination" day. His rod and his ferule were seldom idle now--at least among the smaller pupils. Only the biggest boys, and young ladies of eighteen and twenty, escaped lashing. Mr. Dobbins' lashings were very vigorous ones, too; for although he carried, under his wig, a perfectly bald and shiny head, he had only reached middle age, and there was no sign of feebleness in his muscle. As the great day approached, all the tyranny that was in him came to the surface; he seemed to take a vindictive pleasure in punishing the least shortcomings. The consequence was, that the smaller boys spent their days in terror and suffering and their nights in plotting revenge. They threw away no opportunity to do the master a mischief. But he kept ahead all the time. The retribution that followed every vengeful success was so sweeping and majestic that the boys always retired from the field badly worsted. At last they conspired together and hit upon a plan that promised a dazzling victory. They swore in the sign-painter's boy, told him the scheme, and asked his help. He had his own reasons for being delighted, for the master boarded in his father's family and had given the boy ample cause to hate him. The master's wife would go on a visit to the country in a few days, and there would be nothing to interfere with the plan; the master always prepared himself for great occasions by getting pretty well fuddled, and the sign-painter's boy said that when the dominie had reached the proper condition on Examination Evening he would "manage the thing" while he napped in his chair; then he would have him awakened at the right time and hurried away to school. In the fulness of time the interesting occasion arrived. At eight in the evening the schoolhouse was brilliantly lighted, and adorned with wreaths and festoons of foliage and flowers. The master sat throned in his great chair upon a raised platform, with his blackboard behind him. He was looking tolerably mellow. Three rows of benches on each side and six rows in front of him were occupied by the dignitaries of the town and by the parents of the pupils. To his left, back of the rows of citizens, was a spacious temporary platform upon which were seated the scholars who were to take part in the exercises of the evening; rows of small boys, washed and dressed to an intolerable state of discomfort; rows of gawky big boys; snowbanks of girls and young ladies clad in lawn and muslin and conspicuously conscious of their bare arms, their grandmothers' ancient trinkets, their bits of pink and blue ribbon and the flowers in their hair. All the rest of the house was filled with non-participating scholars. The exercises began. A very little boy stood up and sheepishly recited, "You'd scarce expect one of my age to speak in public on the stage," etc.--accompanying himself with the painfully exact and spasmodic gestures which a machine might have used--supposing the machine to be a trifle out of order. But he got through safely, though cruelly scared, and got a fine round of applause when he made his manufactured bow and retired. A little shamefaced girl lisped, "Mary had a little lamb," etc., performed a compassion-inspiring curtsy, got her meed of applause, and sat down flushed and happy. Tom Sawyer stepped forward with conceited confidence and soared into the unquenchable and indestructible "Give me liberty or give me death" speech, with fine fury and frantic gesticulation, and broke down in the middle of it. A ghastly stage-fright seized him, his legs quaked under him and he was like to choke. True, he had the manifest sympathy of the house but he had the house's silence, too, which was even worse than its sympathy. The master frowned, and this completed the disaster. Tom struggled awhile and then retired, utterly defeated. There was a weak attempt at applause, but it died early. "The Boy Stood on the Burning Deck" followed; also "The Assyrian Came Down," and other declamatory gems. Then there were reading exercises, and a spelling fight. The meagre Latin class recited with honor. The prime feature of the evening was in order, now--original "compositions" by the young ladies. Each in her turn stepped forward to the edge of the platform, cleared her throat, held up her manuscript (tied with dainty ribbon), and proceeded to read, with labored attention to "expression" and punctuation. The themes were the same that had been illuminated upon similar occasions by their mothers before them, their grandmothers, and doubtless all their ancestors in the female line clear back to the Crusades. "Friendship" was one; "Memories of Other Days"; "Religion in History"; "Dream Land"; "The Advantages of Culture"; "Forms of Political Government Compared and Contrasted"; "Melancholy"; "Filial Love"; "Heart Longings," etc., etc. A prevalent feature in these compositions was a nursed and petted melancholy; another was a wasteful and opulent gush of "fine language"; another was a tendency to lug in by the ears particularly prized words and phrases until they were worn entirely out; and a peculiarity that conspicuously marked and marred them was the inveterate and intolerable sermon that wagged its crippled tail at the end of each and every one of them. No matter what the subject might be, a brain-racking effort was made to squirm it into some aspect or other that the moral and religious mind could contemplate with edification. The glaring insincerity of these sermons was not sufficient to compass the banishment of the fashion from the schools, and it is not sufficient to-day; it never will be sufficient while the world stands, perhaps. There is no school in all our land where the young ladies do not feel obliged to close their compositions with a sermon; and you will find that the sermon of the most frivolous and the least religious girl in the school is always the longest and the most relentlessly pious. But enough of this. Homely truth is unpalatable. Let us return to the "Examination." The first composition that was read was one entitled "Is this, then, Life?" Perhaps the reader can endure an extract from it: "In the common walks of life, with what delightful emotions does the youthful mind look forward to some anticipated scene of festivity! Imagination is busy sketching rose-tinted pictures of joy. In fancy, the voluptuous votary of fashion sees herself amid the festive throng, 'the observed of all observers.' Her graceful form, arrayed in snowy robes, is whirling through the mazes of the joyous dance; her eye is brightest, her step is lightest in the gay assembly. "In such delicious fancies time quickly glides by, and the welcome hour arrives for her entrance into the Elysian world, of which she has had such bright dreams. How fairy-like does everything appear to her enchanted vision! Each new scene is more charming than the last. But after a while she finds that beneath this goodly exterior, all is vanity, the flattery which once charmed her soul, now grates harshly upon her ear; the ball-room has lost its charms; and with wasted health and imbittered heart, she turns away with the conviction that earthly pleasures cannot satisfy the longings of the soul!" And so forth and so on. There was a buzz of gratification from time to time during the reading, accompanied by whispered ejaculations of "How sweet!" "How eloquent!" "So true!" etc., and after the thing had closed with a peculiarly afflicting sermon the applause was enthusiastic. Then arose a slim, melancholy girl, whose face had the "interesting" paleness that comes of pills and indigestion, and read a "poem." Two stanzas of it will do: "A MISSOURI MAIDEN'S FAREWELL TO ALABAMA "Alabama, good-bye! I love thee well! But yet for a while do I leave thee now! Sad, yes, sad thoughts of thee my heart doth swell, And burning recollections throng my brow! For I have wandered through thy flowery woods; Have roamed and read near Tallapoosa's stream; Have listened to Tallassee's warring floods, And wooed on Coosa's side Aurora's beam. "Yet shame I not to bear an o'er-full heart, Nor blush to turn behind my tearful eyes; 'Tis from no stranger land I now must part, 'Tis to no strangers left I yield these sighs. Welcome and home were mine within this State, Whose vales I leave--whose spires fade fast from me And cold must be mine eyes, and heart, and tete, When, dear Alabama! they turn cold on thee!" There were very few there who knew what "tete" meant, but the poem was very satisfactory, nevertheless. Next appeared a dark-complexioned, black-eyed, black-haired young lady, who paused an impressive moment, assumed a tragic expression, and began to read in a measured, solemn tone: "A VISION "Dark and tempestuous was night. Around the throne on high not a single star quivered; but the deep intonations of the heavy thunder constantly vibrated upon the ear; whilst the terrific lightning revelled in angry mood through the cloudy chambers of heaven, seeming to scorn the power exerted over its terror by the illustrious Franklin! Even the boisterous winds unanimously came forth from their mystic homes, and blustered about as if to enhance by their aid the wildness of the scene. "At such a time, so dark, so dreary, for human sympathy my very spirit sighed; but instead thereof, "'My dearest friend, my counsellor, my comforter and guide--My joy in grief, my second bliss in joy,' came to my side. She moved like one of those bright beings pictured in the sunny walks of fancy's Eden by the romantic and young, a queen of beauty unadorned save by her own transcendent loveliness. So soft was her step, it failed to make even a sound, and but for the magical thrill imparted by her genial touch, as other unobtrusive beauties, she would have glided away un-perceived--unsought. A strange sadness rested upon her features, like icy tears upon the robe of December, as she pointed to the contending elements without, and bade me contemplate the two beings presented." This nightmare occupied some ten pages of manuscript and wound up with a sermon so destructive of all hope to non-Presbyterians that it took the first prize. This composition was considered to be the very finest effort of the evening. The mayor of the village, in delivering the prize to the author of it, made a warm speech in which he said that it was by far the most "eloquent" thing he had ever listened to, and that Daniel Webster himself might well be proud of it. It may be remarked, in passing, that the number of compositions in which the word "beauteous" was over-fondled, and human experience referred to as "life's page," was up to the usual average. Now the master, mellow almost to the verge of geniality, put his chair aside, turned his back to the audience, and began to draw a map of America on the blackboard, to exercise the geography class upon. But he made a sad business of it with his unsteady hand, and a smothered titter rippled over the house. He knew what the matter was, and set himself to right it. He sponged out lines and remade them; but he only distorted them more than ever, and the tittering was more pronounced. He threw his entire attention upon his work, now, as if determined not to be put down by the mirth. He felt that all eyes were fastened upon him; he imagined he was succeeding, and yet the tittering continued; it even manifestly increased. And well it might. There was a garret above, pierced with a scuttle over his head; and down through this scuttle came a cat, suspended around the haunches by a string; she had a rag tied about her head and jaws to keep her from mewing; as she slowly descended she curved upward and clawed at the string, she swung downward and clawed at the intangible air. The tittering rose higher and higher--the cat was within six inches of the absorbed teacher's head--down, down, a little lower, and she grabbed his wig with her desperate claws, clung to it, and was snatched up into the garret in an instant with her trophy still in her possession! And how the light did blaze abroad from the master's bald pate--for the sign-painter's boy had GILDED it! That broke up the meeting. The boys were avenged. Vacation had come. NOTE:--The pretended "compositions" quoted in this chapter are taken without alteration from a volume entitled "Prose and Poetry, by a Western Lady"--but they are exactly and precisely after the schoolgirl pattern, and hence are much happier than any mere imitations could be. CHAPTER XXII TOM joined the new order of Cadets of Temperance, being attracted by the showy character of their "regalia." He promised to abstain from smoking, chewing, and profanity as long as he remained a member. Now he found out a new thing--namely, that to promise not to do a thing is the surest way in the world to make a body want to go and do that very thing. Tom soon found himself tormented with a desire to drink and swear; the desire grew to be so intense that nothing but the hope of a chance to display himself in his red sash kept him from withdrawing from the order. Fourth of July was coming; but he soon gave that up --gave it up before he had worn his shackles over forty-eight hours--and fixed his hopes upon old Judge Frazer, justice of the peace, who was apparently on his deathbed and would have a big public funeral, since he was so high an official. During three days Tom was deeply concerned about the Judge's condition and hungry for news of it. Sometimes his hopes ran high--so high that he would venture to get out his regalia and practise before the looking-glass. But the Judge had a most discouraging way of fluctuating. At last he was pronounced upon the mend--and then convalescent. Tom was disgusted; and felt a sense of injury, too. He handed in his resignation at once--and that night the Judge suffered a relapse and died. Tom resolved that he would never trust a man like that again. The funeral was a fine thing. The Cadets paraded in a style calculated to kill the late member with envy. Tom was a free boy again, however --there was something in that. He could drink and swear, now--but found to his surprise that he did not want to. The simple fact that he could, took the desire away, and the charm of it. Tom presently wondered to find that his coveted vacation was beginning to hang a little heavily on his hands. He attempted a diary--but nothing happened during three days, and so he abandoned it. The first of all the negro minstrel shows came to town, and made a sensation. Tom and Joe Harper got up a band of performers and were happy for two days. Even the Glorious Fourth was in some sense a failure, for it rained hard, there was no procession in consequence, and the greatest man in the world (as Tom supposed), Mr. Benton, an actual United States Senator, proved an overwhelming disappointment--for he was not twenty-five feet high, nor even anywhere in the neighborhood of it. A circus came. The boys played circus for three days afterward in tents made of rag carpeting--admission, three pins for boys, two for girls--and then circusing was abandoned. A phrenologist and a mesmerizer came--and went again and left the village duller and drearier than ever. There were some boys-and-girls' parties, but they were so few and so delightful that they only made the aching voids between ache the harder. Becky Thatcher was gone to her Constantinople home to stay with her parents during vacation--so there was no bright side to life anywhere. The dreadful secret of the murder was a chronic misery. It was a very cancer for permanency and pain. Then came the measles. During two long weeks Tom lay a prisoner, dead to the world and its happenings. He was very ill, he was interested in nothing. When he got upon his feet at last and moved feebly down-town, a melancholy change had come over everything and every creature. There had been a "revival," and everybody had "got religion," not only the adults, but even the boys and girls. Tom went about, hoping against hope for the sight of one blessed sinful face, but disappointment crossed him everywhere. He found Joe Harper studying a Testament, and turned sadly away from the depressing spectacle. He sought Ben Rogers, and found him visiting the poor with a basket of tracts. He hunted up Jim Hollis, who called his attention to the precious blessing of his late measles as a warning. Every boy he encountered added another ton to his depression; and when, in desperation, he flew for refuge at last to the bosom of Huckleberry Finn and was received with a Scriptural quotation, his heart broke and he crept home and to bed realizing that he alone of all the town was lost, forever and forever. And that night there came on a terrific storm, with driving rain, awful claps of thunder and blinding sheets of lightning. He covered his head with the bedclothes and waited in a horror of suspense for his doom; for he had not the shadow of a doubt that all this hubbub was about him. He believed he had taxed the forbearance of the powers above to the extremity of endurance and that this was the result. It might have seemed to him a waste of pomp and ammunition to kill a bug with a battery of artillery, but there seemed nothing incongruous about the getting up such an expensive thunderstorm as this to knock the turf from under an insect like himself. By and by the tempest spent itself and died without accomplishing its object. The boy's first impulse was to be grateful, and reform. His second was to wait--for there might not be any more storms. The next day the doctors were back; Tom had relapsed. The three weeks he spent on his back this time seemed an entire age. When he got abroad at last he was hardly grateful that he had been spared, remembering how lonely was his estate, how companionless and forlorn he was. He drifted listlessly down the street and found Jim Hollis acting as judge in a juvenile court that was trying a cat for murder, in the presence of her victim, a bird. He found Joe Harper and Huck Finn up an alley eating a stolen melon. Poor lads! they--like Tom--had suffered a relapse. CHAPTER XXIII AT last the sleepy atmosphere was stirred--and vigorously: the murder trial came on in the court. It became the absorbing topic of village talk immediately. Tom could not get away from it. Every reference to the murder sent a shudder to his heart, for his troubled conscience and fears almost persuaded him that these remarks were put forth in his hearing as "feelers"; he did not see how he could be suspected of knowing anything about the murder, but still he could not be comfortable in the midst of this gossip. It kept him in a cold shiver all the time. He took Huck to a lonely place to have a talk with him. It would be some relief to unseal his tongue for a little while; to divide his burden of distress with another sufferer. Moreover, he wanted to assure himself that Huck had remained discreet. "Huck, have you ever told anybody about--that?" "'Bout what?" "You know what." "Oh--'course I haven't." "Never a word?" "Never a solitary word, so help me. What makes you ask?" "Well, I was afeard." "Why, Tom Sawyer, we wouldn't be alive two days if that got found out. YOU know that." Tom felt more comfortable. After a pause: "Huck, they couldn't anybody get you to tell, could they?" "Get me to tell? Why, if I wanted that half-breed devil to drownd me they could get me to tell. They ain't no different way." "Well, that's all right, then. I reckon we're safe as long as we keep mum. But let's swear again, anyway. It's more surer." "I'm agreed." So they swore again with dread solemnities. "What is the talk around, Huck? I've heard a power of it." "Talk? Well, it's just Muff Potter, Muff Potter, Muff Potter all the time. It keeps me in a sweat, constant, so's I want to hide som'ers." "That's just the same way they go on round me. I reckon he's a goner. Don't you feel sorry for him, sometimes?" "Most always--most always. He ain't no account; but then he hain't ever done anything to hurt anybody. Just fishes a little, to get money to get drunk on--and loafs around considerable; but lord, we all do that--leastways most of us--preachers and such like. But he's kind of good--he give me half a fish, once, when there warn't enough for two; and lots of times he's kind of stood by me when I was out of luck." "Well, he's mended kites for me, Huck, and knitted hooks on to my line. I wish we could get him out of there." "My! we couldn't get him out, Tom. And besides, 'twouldn't do any good; they'd ketch him again." "Yes--so they would. But I hate to hear 'em abuse him so like the dickens when he never done--that." "I do too, Tom. Lord, I hear 'em say he's the bloodiest looking villain in this country, and they wonder he wasn't ever hung before." "Yes, they talk like that, all the time. I've heard 'em say that if he was to get free they'd lynch him." "And they'd do it, too." The boys had a long talk, but it brought them little comfort. As the twilight drew on, they found themselves hanging about the neighborhood of the little isolated jail, perhaps with an undefined hope that something would happen that might clear away their difficulties. But nothing happened; there seemed to be no angels or fairies interested in this luckless captive. The boys did as they had often done before--went to the cell grating and gave Potter some tobacco and matches. He was on the ground floor and there were no guards. His gratitude for their gifts had always smote their consciences before--it cut deeper than ever, this time. They felt cowardly and treacherous to the last degree when Potter said: "You've been mighty good to me, boys--better'n anybody else in this town. And I don't forget it, I don't. Often I says to myself, says I, 'I used to mend all the boys' kites and things, and show 'em where the good fishin' places was, and befriend 'em what I could, and now they've all forgot old Muff when he's in trouble; but Tom don't, and Huck don't--THEY don't forget him, says I, 'and I don't forget them.' Well, boys, I done an awful thing--drunk and crazy at the time--that's the only way I account for it--and now I got to swing for it, and it's right. Right, and BEST, too, I reckon--hope so, anyway. Well, we won't talk about that. I don't want to make YOU feel bad; you've befriended me. But what I want to say, is, don't YOU ever get drunk--then you won't ever get here. Stand a litter furder west--so--that's it; it's a prime comfort to see faces that's friendly when a body's in such a muck of trouble, and there don't none come here but yourn. Good friendly faces--good friendly faces. Git up on one another's backs and let me touch 'em. That's it. Shake hands--yourn'll come through the bars, but mine's too big. Little hands, and weak--but they've helped Muff Potter a power, and they'd help him more if they could." Tom went home miserable, and his dreams that night were full of horrors. The next day and the day after, he hung about the court-room, drawn by an almost irresistible impulse to go in, but forcing himself to stay out. Huck was having the same experience. They studiously avoided each other. Each wandered away, from time to time, but the same dismal fascination always brought them back presently. Tom kept his ears open when idlers sauntered out of the court-room, but invariably heard distressing news--the toils were closing more and more relentlessly around poor Potter. At the end of the second day the village talk was to the effect that Injun Joe's evidence stood firm and unshaken, and that there was not the slightest question as to what the jury's verdict would be. Tom was out late, that night, and came to bed through the window. He was in a tremendous state of excitement. It was hours before he got to sleep. All the village flocked to the court-house the next morning, for this was to be the great day. Both sexes were about equally represented in the packed audience. After a long wait the jury filed in and took their places; shortly afterward, Potter, pale and haggard, timid and hopeless, was brought in, with chains upon him, and seated where all the curious eyes could stare at him; no less conspicuous was Injun Joe, stolid as ever. There was another pause, and then the judge arrived and the sheriff proclaimed the opening of the court. The usual whisperings among the lawyers and gathering together of papers followed. These details and accompanying delays worked up an atmosphere of preparation that was as impressive as it was fascinating. Now a witness was called who testified that he found Muff Potter washing in the brook, at an early hour of the morning that the murder was discovered, and that he immediately sneaked away. After some further questioning, counsel for the prosecution said: "Take the witness." The prisoner raised his eyes for a moment, but dropped them again when his own counsel said: "I have no questions to ask him." The next witness proved the finding of the knife near the corpse. Counsel for the prosecution said: "Take the witness." "I have no questions to ask him," Potter's lawyer replied. A third witness swore he had often seen the knife in Potter's possession. "Take the witness." Counsel for Potter declined to question him. The faces of the audience began to betray annoyance. Did this attorney mean to throw away his client's life without an effort? Several witnesses deposed concerning Potter's guilty behavior when brought to the scene of the murder. They were allowed to leave the stand without being cross-questioned. Every detail of the damaging circumstances that occurred in the graveyard upon that morning which all present remembered so well was brought out by credible witnesses, but none of them were cross-examined by Potter's lawyer. The perplexity and dissatisfaction of the house expressed itself in murmurs and provoked a reproof from the bench. Counsel for the prosecution now said: "By the oaths of citizens whose simple word is above suspicion, we have fastened this awful crime, beyond all possibility of question, upon the unhappy prisoner at the bar. We rest our case here." A groan escaped from poor Potter, and he put his face in his hands and rocked his body softly to and fro, while a painful silence reigned in the court-room. Many men were moved, and many women's compassion testified itself in tears. Counsel for the defence rose and said: "Your honor, in our remarks at the opening of this trial, we foreshadowed our purpose to prove that our client did this fearful deed while under the influence of a blind and irresponsible delirium produced by drink. We have changed our mind. We shall not offer that plea." [Then to the clerk:] "Call Thomas Sawyer!" A puzzled amazement awoke in every face in the house, not even excepting Potter's. Every eye fastened itself with wondering interest upon Tom as he rose and took his place upon the stand. The boy looked wild enough, for he was badly scared. The oath was administered. "Thomas Sawyer, where were you on the seventeenth of June, about the hour of midnight?" Tom glanced at Injun Joe's iron face and his tongue failed him. The audience listened breathless, but the words refused to come. After a few moments, however, the boy got a little of his strength back, and managed to put enough of it into his voice to make part of the house hear: "In the graveyard!" "A little bit louder, please. Don't be afraid. You were--" "In the graveyard." A contemptuous smile flitted across Injun Joe's face. "Were you anywhere near Horse Williams' grave?" "Yes, sir." "Speak up--just a trifle louder. How near were you?" "Near as I am to you." "Were you hidden, or not?" "I was hid." "Where?" "Behind the elms that's on the edge of the grave." Injun Joe gave a barely perceptible start. "Any one with you?" "Yes, sir. I went there with--" "Wait--wait a moment. Never mind mentioning your companion's name. We will produce him at the proper time. Did you carry anything there with you." Tom hesitated and looked confused. "Speak out, my boy--don't be diffident. The truth is always respectable. What did you take there?" "Only a--a--dead cat." There was a ripple of mirth, which the court checked. "We will produce the skeleton of that cat. Now, my boy, tell us everything that occurred--tell it in your own way--don't skip anything, and don't be afraid." Tom began--hesitatingly at first, but as he warmed to his subject his words flowed more and more easily; in a little while every sound ceased but his own voice; every eye fixed itself upon him; with parted lips and bated breath the audience hung upon his words, taking no note of time, rapt in the ghastly fascinations of the tale. The strain upon pent emotion reached its climax when the boy said: "--and as the doctor fetched the board around and Muff Potter fell, Injun Joe jumped with the knife and--" Crash! Quick as lightning the half-breed sprang for a window, tore his way through all opposers, and was gone! CHAPTER XXIV TOM was a glittering hero once more--the pet of the old, the envy of the young. His name even went into immortal print, for the village paper magnified him. There were some that believed he would be President, yet, if he escaped hanging. As usual, the fickle, unreasoning world took Muff Potter to its bosom and fondled him as lavishly as it had abused him before. But that sort of conduct is to the world's credit; therefore it is not well to find fault with it. Tom's days were days of splendor and exultation to him, but his nights were seasons of horror. Injun Joe infested all his dreams, and always with doom in his eye. Hardly any temptation could persuade the boy to stir abroad after nightfall. Poor Huck was in the same state of wretchedness and terror, for Tom had told the whole story to the lawyer the night before the great day of the trial, and Huck was sore afraid that his share in the business might leak out, yet, notwithstanding Injun Joe's flight had saved him the suffering of testifying in court. The poor fellow had got the attorney to promise secrecy, but what of that? Since Tom's harassed conscience had managed to drive him to the lawyer's house by night and wring a dread tale from lips that had been sealed with the dismalest and most formidable of oaths, Huck's confidence in the human race was well-nigh obliterated. Daily Muff Potter's gratitude made Tom glad he had spoken; but nightly he wished he had sealed up his tongue. Half the time Tom was afraid Injun Joe would never be captured; the other half he was afraid he would be. He felt sure he never could draw a safe breath again until that man was dead and he had seen the corpse. Rewards had been offered, the country had been scoured, but no Injun Joe was found. One of those omniscient and awe-inspiring marvels, a detective, came up from St. Louis, moused around, shook his head, looked wise, and made that sort of astounding success which members of that craft usually achieve. That is to say, he "found a clew." But you can't hang a "clew" for murder, and so after that detective had got through and gone home, Tom felt just as insecure as he was before. The slow days drifted on, and each left behind it a slightly lightened weight of apprehension. CHAPTER XXV THERE comes a time in every rightly-constructed boy's life when he has a raging desire to go somewhere and dig for hidden treasure. This desire suddenly came upon Tom one day. He sallied out to find Joe Harper, but failed of success. Next he sought Ben Rogers; he had gone fishing. Presently he stumbled upon Huck Finn the Red-Handed. Huck would answer. Tom took him to a private place and opened the matter to him confidentially. Huck was willing. Huck was always willing to take a hand in any enterprise that offered entertainment and required no capital, for he had a troublesome superabundance of that sort of time which is not money. "Where'll we dig?" said Huck. "Oh, most anywhere." "Why, is it hid all around?" "No, indeed it ain't. It's hid in mighty particular places, Huck --sometimes on islands, sometimes in rotten chests under the end of a limb of an old dead tree, just where the shadow falls at midnight; but mostly under the floor in ha'nted houses." "Who hides it?" "Why, robbers, of course--who'd you reckon? Sunday-school sup'rintendents?" "I don't know. If 'twas mine I wouldn't hide it; I'd spend it and have a good time." "So would I. But robbers don't do that way. They always hide it and leave it there." "Don't they come after it any more?" "No, they think they will, but they generally forget the marks, or else they die. Anyway, it lays there a long time and gets rusty; and by and by somebody finds an old yellow paper that tells how to find the marks--a paper that's got to be ciphered over about a week because it's mostly signs and hy'roglyphics." "Hyro--which?" "Hy'roglyphics--pictures and things, you know, that don't seem to mean anything." "Have you got one of them papers, Tom?" "No." "Well then, how you going to find the marks?" "I don't want any marks. They always bury it under a ha'nted house or on an island, or under a dead tree that's got one limb sticking out. Well, we've tried Jackson's Island a little, and we can try it again some time; and there's the old ha'nted house up the Still-House branch, and there's lots of dead-limb trees--dead loads of 'em." "Is it under all of them?" "How you talk! No!" "Then how you going to know which one to go for?" "Go for all of 'em!" "Why, Tom, it'll take all summer." "Well, what of that? Suppose you find a brass pot with a hundred dollars in it, all rusty and gray, or rotten chest full of di'monds. How's that?" Huck's eyes glowed. "That's bully. Plenty bully enough for me. Just you gimme the hundred dollars and I don't want no di'monds." "All right. But I bet you I ain't going to throw off on di'monds. Some of 'em's worth twenty dollars apiece--there ain't any, hardly, but's worth six bits or a dollar." "No! Is that so?" "Cert'nly--anybody'll tell you so. Hain't you ever seen one, Huck?" "Not as I remember." "Oh, kings have slathers of them." "Well, I don' know no kings, Tom." "I reckon you don't. But if you was to go to Europe you'd see a raft of 'em hopping around." "Do they hop?" "Hop?--your granny! No!" "Well, what did you say they did, for?" "Shucks, I only meant you'd SEE 'em--not hopping, of course--what do they want to hop for?--but I mean you'd just see 'em--scattered around, you know, in a kind of a general way. Like that old humpbacked Richard." "Richard? What's his other name?" "He didn't have any other name. Kings don't have any but a given name." "No?" "But they don't." "Well, if they like it, Tom, all right; but I don't want to be a king and have only just a given name, like a nigger. But say--where you going to dig first?" "Well, I don't know. S'pose we tackle that old dead-limb tree on the hill t'other side of Still-House branch?" "I'm agreed." So they got a crippled pick and a shovel, and set out on their three-mile tramp. They arrived hot and panting, and threw themselves down in the shade of a neighboring elm to rest and have a smoke. "I like this," said Tom. "So do I." "Say, Huck, if we find a treasure here, what you going to do with your share?" "Well, I'll have pie and a glass of soda every day, and I'll go to every circus that comes along. I bet I'll have a gay time." "Well, ain't you going to save any of it?" "Save it? What for?" "Why, so as to have something to live on, by and by." "Oh, that ain't any use. Pap would come back to thish-yer town some day and get his claws on it if I didn't hurry up, and I tell you he'd clean it out pretty quick. What you going to do with yourn, Tom?" "I'm going to buy a new drum, and a sure-'nough sword, and a red necktie and a bull pup, and get married." "Married!" "That's it." "Tom, you--why, you ain't in your right mind." "Wait--you'll see." "Well, that's the foolishest thing you could do. Look at pap and my mother. Fight! Why, they used to fight all the time. I remember, mighty well." "That ain't anything. The girl I'm going to marry won't fight." "Tom, I reckon they're all alike. They'll all comb a body. Now you better think 'bout this awhile. I tell you you better. What's the name of the gal?" "It ain't a gal at all--it's a girl." "It's all the same, I reckon; some says gal, some says girl--both's right, like enough. Anyway, what's her name, Tom?" "I'll tell you some time--not now." "All right--that'll do. Only if you get married I'll be more lonesomer than ever." "No you won't. You'll come and live with me. Now stir out of this and we'll go to digging." They worked and sweated for half an hour. No result. They toiled another half-hour. Still no result. Huck said: "Do they always bury it as deep as this?" "Sometimes--not always. Not generally. I reckon we haven't got the right place." So they chose a new spot and began again. The labor dragged a little, but still they made progress. They pegged away in silence for some time. Finally Huck leaned on his shovel, swabbed the beaded drops from his brow with his sleeve, and said: "Where you going to dig next, after we get this one?" "I reckon maybe we'll tackle the old tree that's over yonder on Cardiff Hill back of the widow's." "I reckon that'll be a good one. But won't the widow take it away from us, Tom? It's on her land." "SHE take it away! Maybe she'd like to try it once. Whoever finds one of these hid treasures, it belongs to him. It don't make any difference whose land it's on." That was satisfactory. The work went on. By and by Huck said: "Blame it, we must be in the wrong place again. What do you think?" "It is mighty curious, Huck. I don't understand it. Sometimes witches interfere. I reckon maybe that's what's the trouble now." "Shucks! Witches ain't got no power in the daytime." "Well, that's so. I didn't think of that. Oh, I know what the matter is! What a blamed lot of fools we are! You got to find out where the shadow of the limb falls at midnight, and that's where you dig!" "Then consound it, we've fooled away all this work for nothing. Now hang it all, we got to come back in the night. It's an awful long way. Can you get out?" "I bet I will. We've got to do it to-night, too, because if somebody sees these holes they'll know in a minute what's here and they'll go for it." "Well, I'll come around and maow to-night." "All right. Let's hide the tools in the bushes." The boys were there that night, about the appointed time. They sat in the shadow waiting. It was a lonely place, and an hour made solemn by old traditions. Spirits whispered in the rustling leaves, ghosts lurked in the murky nooks, the deep baying of a hound floated up out of the distance, an owl answered with his sepulchral note. The boys were subdued by these solemnities, and talked little. By and by they judged that twelve had come; they marked where the shadow fell, and began to dig. Their hopes commenced to rise. Their interest grew stronger, and their industry kept pace with it. The hole deepened and still deepened, but every time their hearts jumped to hear the pick strike upon something, they only suffered a new disappointment. It was only a stone or a chunk. At last Tom said: "It ain't any use, Huck, we're wrong again." "Well, but we CAN'T be wrong. We spotted the shadder to a dot." "I know it, but then there's another thing." "What's that?". "Why, we only guessed at the time. Like enough it was too late or too early." Huck dropped his shovel. "That's it," said he. "That's the very trouble. We got to give this one up. We can't ever tell the right time, and besides this kind of thing's too awful, here this time of night with witches and ghosts a-fluttering around so. I feel as if something's behind me all the time; and I'm afeard to turn around, becuz maybe there's others in front a-waiting for a chance. I been creeping all over, ever since I got here." "Well, I've been pretty much so, too, Huck. They most always put in a dead man when they bury a treasure under a tree, to look out for it." "Lordy!" "Yes, they do. I've always heard that." "Tom, I don't like to fool around much where there's dead people. A body's bound to get into trouble with 'em, sure." "I don't like to stir 'em up, either. S'pose this one here was to stick his skull out and say something!" "Don't Tom! It's awful." "Well, it just is. Huck, I don't feel comfortable a bit." "Say, Tom, let's give this place up, and try somewheres else." "All right, I reckon we better." "What'll it be?" Tom considered awhile; and then said: "The ha'nted house. That's it!" "Blame it, I don't like ha'nted houses, Tom. Why, they're a dern sight worse'n dead people. Dead people might talk, maybe, but they don't come sliding around in a shroud, when you ain't noticing, and peep over your shoulder all of a sudden and grit their teeth, the way a ghost does. I couldn't stand such a thing as that, Tom--nobody could." "Yes, but, Huck, ghosts don't travel around only at night. They won't hender us from digging there in the daytime." "Well, that's so. But you know mighty well people don't go about that ha'nted house in the day nor the night." "Well, that's mostly because they don't like to go where a man's been murdered, anyway--but nothing's ever been seen around that house except in the night--just some blue lights slipping by the windows--no regular ghosts." "Well, where you see one of them blue lights flickering around, Tom, you can bet there's a ghost mighty close behind it. It stands to reason. Becuz you know that they don't anybody but ghosts use 'em." "Yes, that's so. But anyway they don't come around in the daytime, so what's the use of our being afeard?" "Well, all right. We'll tackle the ha'nted house if you say so--but I reckon it's taking chances." They had started down the hill by this time. There in the middle of the moonlit valley below them stood the "ha'nted" house, utterly isolated, its fences gone long ago, rank weeds smothering the very doorsteps, the chimney crumbled to ruin, the window-sashes vacant, a corner of the roof caved in. The boys gazed awhile, half expecting to see a blue light flit past a window; then talking in a low tone, as befitted the time and the circumstances, they struck far off to the right, to give the haunted house a wide berth, and took their way homeward through the woods that adorned the rearward side of Cardiff Hill. CHAPTER XXVI ABOUT noon the next day the boys arrived at the dead tree; they had come for their tools. Tom was impatient to go to the haunted house; Huck was measurably so, also--but suddenly said: "Lookyhere, Tom, do you know what day it is?" Tom mentally ran over the days of the week, and then quickly lifted his eyes with a startled look in them-- "My! I never once thought of it, Huck!" "Well, I didn't neither, but all at once it popped onto me that it was Friday." "Blame it, a body can't be too careful, Huck. We might 'a' got into an awful scrape, tackling such a thing on a Friday." "MIGHT! Better say we WOULD! There's some lucky days, maybe, but Friday ain't." "Any fool knows that. I don't reckon YOU was the first that found it out, Huck." "Well, I never said I was, did I? And Friday ain't all, neither. I had a rotten bad dream last night--dreampt about rats." "No! Sure sign of trouble. Did they fight?" "No." "Well, that's good, Huck. When they don't fight it's only a sign that there's trouble around, you know. All we got to do is to look mighty sharp and keep out of it. We'll drop this thing for to-day, and play. Do you know Robin Hood, Huck?" "No. Who's Robin Hood?" "Why, he was one of the greatest men that was ever in England--and the best. He was a robber." "Cracky, I wisht I was. Who did he rob?" "Only sheriffs and bishops and rich people and kings, and such like. But he never bothered the poor. He loved 'em. He always divided up with 'em perfectly square." "Well, he must 'a' been a brick." "I bet you he was, Huck. Oh, he was the noblest man that ever was. They ain't any such men now, I can tell you. He could lick any man in England, with one hand tied behind him; and he could take his yew bow and plug a ten-cent piece every time, a mile and a half." "What's a YEW bow?" "I don't know. It's some kind of a bow, of course. And if he hit that dime only on the edge he would set down and cry--and curse. But we'll play Robin Hood--it's nobby fun. I'll learn you." "I'm agreed." So they played Robin Hood all the afternoon, now and then casting a yearning eye down upon the haunted house and passing a remark about the morrow's prospects and possibilities there. As the sun began to sink into the west they took their way homeward athwart the long shadows of the trees and soon were buried from sight in the forests of Cardiff Hill. On Saturday, shortly after noon, the boys were at the dead tree again. They had a smoke and a chat in the shade, and then dug a little in their last hole, not with great hope, but merely because Tom said there were so many cases where people had given up a treasure after getting down within six inches of it, and then somebody else had come along and turned it up with a single thrust of a shovel. The thing failed this time, however, so the boys shouldered their tools and went away feeling that they had not trifled with fortune, but had fulfilled all the requirements that belong to the business of treasure-hunting. When they reached the haunted house there was something so weird and grisly about the dead silence that reigned there under the baking sun, and something so depressing about the loneliness and desolation of the place, that they were afraid, for a moment, to venture in. Then they crept to the door and took a trembling peep. They saw a weed-grown, floorless room, unplastered, an ancient fireplace, vacant windows, a ruinous staircase; and here, there, and everywhere hung ragged and abandoned cobwebs. They presently entered, softly, with quickened pulses, talking in whispers, ears alert to catch the slightest sound, and muscles tense and ready for instant retreat. In a little while familiarity modified their fears and they gave the place a critical and interested examination, rather admiring their own boldness, and wondering at it, too. Next they wanted to look up-stairs. This was something like cutting off retreat, but they got to daring each other, and of course there could be but one result--they threw their tools into a corner and made the ascent. Up there were the same signs of decay. In one corner they found a closet that promised mystery, but the promise was a fraud--there was nothing in it. Their courage was up now and well in hand. They were about to go down and begin work when-- "Sh!" said Tom. "What is it?" whispered Huck, blanching with fright. "Sh!... There!... Hear it?" "Yes!... Oh, my! Let's run!" "Keep still! Don't you budge! They're coming right toward the door." The boys stretched themselves upon the floor with their eyes to knot-holes in the planking, and lay waiting, in a misery of fear. "They've stopped.... No--coming.... Here they are. Don't whisper another word, Huck. My goodness, I wish I was out of this!" Two men entered. Each boy said to himself: "There's the old deaf and dumb Spaniard that's been about town once or twice lately--never saw t'other man before." "T'other" was a ragged, unkempt creature, with nothing very pleasant in his face. The Spaniard was wrapped in a serape; he had bushy white whiskers; long white hair flowed from under his sombrero, and he wore green goggles. When they came in, "t'other" was talking in a low voice; they sat down on the ground, facing the door, with their backs to the wall, and the speaker continued his remarks. His manner became less guarded and his words more distinct as he proceeded: "No," said he, "I've thought it all over, and I don't like it. It's dangerous." "Dangerous!" grunted the "deaf and dumb" Spaniard--to the vast surprise of the boys. "Milksop!" This voice made the boys gasp and quake. It was Injun Joe's! There was silence for some time. Then Joe said: "What's any more dangerous than that job up yonder--but nothing's come of it." "That's different. Away up the river so, and not another house about. 'Twon't ever be known that we tried, anyway, long as we didn't succeed." "Well, what's more dangerous than coming here in the daytime!--anybody would suspicion us that saw us." "I know that. But there warn't any other place as handy after that fool of a job. I want to quit this shanty. I wanted to yesterday, only it warn't any use trying to stir out of here, with those infernal boys playing over there on the hill right in full view." "Those infernal boys" quaked again under the inspiration of this remark, and thought how lucky it was that they had remembered it was Friday and concluded to wait a day. They wished in their hearts they had waited a year. The two men got out some food and made a luncheon. After a long and thoughtful silence, Injun Joe said: "Look here, lad--you go back up the river where you belong. Wait there till you hear from me. I'll take the chances on dropping into this town just once more, for a look. We'll do that 'dangerous' job after I've spied around a little and think things look well for it. Then for Texas! We'll leg it together!" This was satisfactory. Both men presently fell to yawning, and Injun Joe said: "I'm dead for sleep! It's your turn to watch." He curled down in the weeds and soon began to snore. His comrade stirred him once or twice and he became quiet. Presently the watcher began to nod; his head drooped lower and lower, both men began to snore now. The boys drew a long, grateful breath. Tom whispered: "Now's our chance--come!" Huck said: "I can't--I'd die if they was to wake." Tom urged--Huck held back. At last Tom rose slowly and softly, and started alone. But the first step he made wrung such a hideous creak from the crazy floor that he sank down almost dead with fright. He never made a second attempt. The boys lay there counting the dragging moments till it seemed to them that time must be done and eternity growing gray; and then they were grateful to note that at last the sun was setting. Now one snore ceased. Injun Joe sat up, stared around--smiled grimly upon his comrade, whose head was drooping upon his knees--stirred him up with his foot and said: "Here! YOU'RE a watchman, ain't you! All right, though--nothing's happened." "My! have I been asleep?" "Oh, partly, partly. Nearly time for us to be moving, pard. What'll we do with what little swag we've got left?" "I don't know--leave it here as we've always done, I reckon. No use to take it away till we start south. Six hundred and fifty in silver's something to carry." "Well--all right--it won't matter to come here once more." "No--but I'd say come in the night as we used to do--it's better." "Yes: but look here; it may be a good while before I get the right chance at that job; accidents might happen; 'tain't in such a very good place; we'll just regularly bury it--and bury it deep." "Good idea," said the comrade, who walked across the room, knelt down, raised one of the rearward hearth-stones and took out a bag that jingled pleasantly. He subtracted from it twenty or thirty dollars for himself and as much for Injun Joe, and passed the bag to the latter, who was on his knees in the corner, now, digging with his bowie-knife. The boys forgot all their fears, all their miseries in an instant. With gloating eyes they watched every movement. Luck!--the splendor of it was beyond all imagination! Six hundred dollars was money enough to make half a dozen boys rich! Here was treasure-hunting under the happiest auspices--there would not be any bothersome uncertainty as to where to dig. They nudged each other every moment--eloquent nudges and easily understood, for they simply meant--"Oh, but ain't you glad NOW we're here!" Joe's knife struck upon something. "Hello!" said he. "What is it?" said his comrade. "Half-rotten plank--no, it's a box, I believe. Here--bear a hand and we'll see what it's here for. Never mind, I've broke a hole." He reached his hand in and drew it out-- "Man, it's money!" The two men examined the handful of coins. They were gold. The boys above were as excited as themselves, and as delighted. Joe's comrade said: "We'll make quick work of this. There's an old rusty pick over amongst the weeds in the corner the other side of the fireplace--I saw it a minute ago." He ran and brought the boys' pick and shovel. Injun Joe took the pick, looked it over critically, shook his head, muttered something to himself, and then began to use it. The box was soon unearthed. It was not very large; it was iron bound and had been very strong before the slow years had injured it. The men contemplated the treasure awhile in blissful silence. "Pard, there's thousands of dollars here," said Injun Joe. "'Twas always said that Murrel's gang used to be around here one summer," the stranger observed. "I know it," said Injun Joe; "and this looks like it, I should say." "Now you won't need to do that job." The half-breed frowned. Said he: "You don't know me. Least you don't know all about that thing. 'Tain't robbery altogether--it's REVENGE!" and a wicked light flamed in his eyes. "I'll need your help in it. When it's finished--then Texas. Go home to your Nance and your kids, and stand by till you hear from me." "Well--if you say so; what'll we do with this--bury it again?" "Yes. [Ravishing delight overhead.] NO! by the great Sachem, no! [Profound distress overhead.] I'd nearly forgot. That pick had fresh earth on it! [The boys were sick with terror in a moment.] What business has a pick and a shovel here? What business with fresh earth on them? Who brought them here--and where are they gone? Have you heard anybody?--seen anybody? What! bury it again and leave them to come and see the ground disturbed? Not exactly--not exactly. We'll take it to my den." "Why, of course! Might have thought of that before. You mean Number One?" "No--Number Two--under the cross. The other place is bad--too common." "All right. It's nearly dark enough to start." Injun Joe got up and went about from window to window cautiously peeping out. Presently he said: "Who could have brought those tools here? Do you reckon they can be up-stairs?" The boys' breath forsook them. Injun Joe put his hand on his knife, halted a moment, undecided, and then turned toward the stairway. The boys thought of the closet, but their strength was gone. The steps came creaking up the stairs--the intolerable distress of the situation woke the stricken resolution of the lads--they were about to spring for the closet, when there was a crash of rotten timbers and Injun Joe landed on the ground amid the debris of the ruined stairway. He gathered himself up cursing, and his comrade said: "Now what's the use of all that? If it's anybody, and they're up there, let them STAY there--who cares? If they want to jump down, now, and get into trouble, who objects? It will be dark in fifteen minutes --and then let them follow us if they want to. I'm willing. In my opinion, whoever hove those things in here caught a sight of us and took us for ghosts or devils or something. I'll bet they're running yet." Joe grumbled awhile; then he agreed with his friend that what daylight was left ought to be economized in getting things ready for leaving. Shortly afterward they slipped out of the house in the deepening twilight, and moved toward the river with their precious box. Tom and Huck rose up, weak but vastly relieved, and stared after them through the chinks between the logs of the house. Follow? Not they. They were content to reach ground again without broken necks, and take the townward track over the hill. They did not talk much. They were too much absorbed in hating themselves--hating the ill luck that made them take the spade and the pick there. But for that, Injun Joe never would have suspected. He would have hidden the silver with the gold to wait there till his "revenge" was satisfied, and then he would have had the misfortune to find that money turn up missing. Bitter, bitter luck that the tools were ever brought there! They resolved to keep a lookout for that Spaniard when he should come to town spying out for chances to do his revengeful job, and follow him to "Number Two," wherever that might be. Then a ghastly thought occurred to Tom. "Revenge? What if he means US, Huck!" "Oh, don't!" said Huck, nearly fainting. They talked it all over, and as they entered town they agreed to believe that he might possibly mean somebody else--at least that he might at least mean nobody but Tom, since only Tom had testified. Very, very small comfort it was to Tom to be alone in danger! Company would be a palpable improvement, he thought. CHAPTER XXVII THE adventure of the day mightily tormented Tom's dreams that night. Four times he had his hands on that rich treasure and four times it wasted to nothingness in his fingers as sleep forsook him and wakefulness brought back the hard reality of his misfortune. As he lay in the early morning recalling the incidents of his great adventure, he noticed that they seemed curiously subdued and far away--somewhat as if they had happened in another world, or in a time long gone by. Then it occurred to him that the great adventure itself must be a dream! There was one very strong argument in favor of this idea--namely, that the quantity of coin he had seen was too vast to be real. He had never seen as much as fifty dollars in one mass before, and he was like all boys of his age and station in life, in that he imagined that all references to "hundreds" and "thousands" were mere fanciful forms of speech, and that no such sums really existed in the world. He never had supposed for a moment that so large a sum as a hundred dollars was to be found in actual money in any one's possession. If his notions of hidden treasure had been analyzed, they would have been found to consist of a handful of real dimes and a bushel of vague, splendid, ungraspable dollars. But the incidents of his adventure grew sensibly sharper and clearer under the attrition of thinking them over, and so he presently found himself leaning to the impression that the thing might not have been a dream, after all. This uncertainty must be swept away. He would snatch a hurried breakfast and go and find Huck. Huck was sitting on the gunwale of a flatboat, listlessly dangling his feet in the water and looking very melancholy. Tom concluded to let Huck lead up to the subject. If he did not do it, then the adventure would be proved to have been only a dream. "Hello, Huck!" "Hello, yourself." Silence, for a minute. "Tom, if we'd 'a' left the blame tools at the dead tree, we'd 'a' got the money. Oh, ain't it awful!" "'Tain't a dream, then, 'tain't a dream! Somehow I most wish it was. Dog'd if I don't, Huck." "What ain't a dream?" "Oh, that thing yesterday. I been half thinking it was." "Dream! If them stairs hadn't broke down you'd 'a' seen how much dream it was! I've had dreams enough all night--with that patch-eyed Spanish devil going for me all through 'em--rot him!" "No, not rot him. FIND him! Track the money!" "Tom, we'll never find him. A feller don't have only one chance for such a pile--and that one's lost. I'd feel mighty shaky if I was to see him, anyway." "Well, so'd I; but I'd like to see him, anyway--and track him out--to his Number Two." "Number Two--yes, that's it. I been thinking 'bout that. But I can't make nothing out of it. What do you reckon it is?" "I dono. It's too deep. Say, Huck--maybe it's the number of a house!" "Goody!... No, Tom, that ain't it. If it is, it ain't in this one-horse town. They ain't no numbers here." "Well, that's so. Lemme think a minute. Here--it's the number of a room--in a tavern, you know!" "Oh, that's the trick! They ain't only two taverns. We can find out quick." "You stay here, Huck, till I come." Tom was off at once. He did not care to have Huck's company in public places. He was gone half an hour. He found that in the best tavern, No. 2 had long been occupied by a young lawyer, and was still so occupied. In the less ostentatious house, No. 2 was a mystery. The tavern-keeper's young son said it was kept locked all the time, and he never saw anybody go into it or come out of it except at night; he did not know any particular reason for this state of things; had had some little curiosity, but it was rather feeble; had made the most of the mystery by entertaining himself with the idea that that room was "ha'nted"; had noticed that there was a light in there the night before. "That's what I've found out, Huck. I reckon that's the very No. 2 we're after." "I reckon it is, Tom. Now what you going to do?" "Lemme think." Tom thought a long time. Then he said: "I'll tell you. The back door of that No. 2 is the door that comes out into that little close alley between the tavern and the old rattle trap of a brick store. Now you get hold of all the door-keys you can find, and I'll nip all of auntie's, and the first dark night we'll go there and try 'em. And mind you, keep a lookout for Injun Joe, because he said he was going to drop into town and spy around once more for a chance to get his revenge. If you see him, you just follow him; and if he don't go to that No. 2, that ain't the place." "Lordy, I don't want to foller him by myself!" "Why, it'll be night, sure. He mightn't ever see you--and if he did, maybe he'd never think anything." "Well, if it's pretty dark I reckon I'll track him. I dono--I dono. I'll try." "You bet I'll follow him, if it's dark, Huck. Why, he might 'a' found out he couldn't get his revenge, and be going right after that money." "It's so, Tom, it's so. I'll foller him; I will, by jingoes!" "Now you're TALKING! Don't you ever weaken, Huck, and I won't." CHAPTER XXVIII THAT night Tom and Huck were ready for their adventure. They hung about the neighborhood of the tavern until after nine, one watching the alley at a distance and the other the tavern door. Nobody entered the alley or left it; nobody resembling the Spaniard entered or left the tavern door. The night promised to be a fair one; so Tom went home with the understanding that if a considerable degree of darkness came on, Huck was to come and "maow," whereupon he would slip out and try the keys. But the night remained clear, and Huck closed his watch and retired to bed in an empty sugar hogshead about twelve. Tuesday the boys had the same ill luck. Also Wednesday. But Thursday night promised better. Tom slipped out in good season with his aunt's old tin lantern, and a large towel to blindfold it with. He hid the lantern in Huck's sugar hogshead and the watch began. An hour before midnight the tavern closed up and its lights (the only ones thereabouts) were put out. No Spaniard had been seen. Nobody had entered or left the alley. Everything was auspicious. The blackness of darkness reigned, the perfect stillness was interrupted only by occasional mutterings of distant thunder. Tom got his lantern, lit it in the hogshead, wrapped it closely in the towel, and the two adventurers crept in the gloom toward the tavern. Huck stood sentry and Tom felt his way into the alley. Then there was a season of waiting anxiety that weighed upon Huck's spirits like a mountain. He began to wish he could see a flash from the lantern--it would frighten him, but it would at least tell him that Tom was alive yet. It seemed hours since Tom had disappeared. Surely he must have fainted; maybe he was dead; maybe his heart had burst under terror and excitement. In his uneasiness Huck found himself drawing closer and closer to the alley; fearing all sorts of dreadful things, and momentarily expecting some catastrophe to happen that would take away his breath. There was not much to take away, for he seemed only able to inhale it by thimblefuls, and his heart would soon wear itself out, the way it was beating. Suddenly there was a flash of light and Tom came tearing by him: "Run!" said he; "run, for your life!" He needn't have repeated it; once was enough; Huck was making thirty or forty miles an hour before the repetition was uttered. The boys never stopped till they reached the shed of a deserted slaughter-house at the lower end of the village. Just as they got within its shelter the storm burst and the rain poured down. As soon as Tom got his breath he said: "Huck, it was awful! I tried two of the keys, just as soft as I could; but they seemed to make such a power of racket that I couldn't hardly get my breath I was so scared. They wouldn't turn in the lock, either. Well, without noticing what I was doing, I took hold of the knob, and open comes the door! It warn't locked! I hopped in, and shook off the towel, and, GREAT CAESAR'S GHOST!" "What!--what'd you see, Tom?" "Huck, I most stepped onto Injun Joe's hand!" "No!" "Yes! He was lying there, sound asleep on the floor, with his old patch on his eye and his arms spread out." "Lordy, what did you do? Did he wake up?" "No, never budged. Drunk, I reckon. I just grabbed that towel and started!" "I'd never 'a' thought of the towel, I bet!" "Well, I would. My aunt would make me mighty sick if I lost it." "Say, Tom, did you see that box?" "Huck, I didn't wait to look around. I didn't see the box, I didn't see the cross. I didn't see anything but a bottle and a tin cup on the floor by Injun Joe; yes, I saw two barrels and lots more bottles in the room. Don't you see, now, what's the matter with that ha'nted room?" "How?" "Why, it's ha'nted with whiskey! Maybe ALL the Temperance Taverns have got a ha'nted room, hey, Huck?" "Well, I reckon maybe that's so. Who'd 'a' thought such a thing? But say, Tom, now's a mighty good time to get that box, if Injun Joe's drunk." "It is, that! You try it!" Huck shuddered. "Well, no--I reckon not." "And I reckon not, Huck. Only one bottle alongside of Injun Joe ain't enough. If there'd been three, he'd be drunk enough and I'd do it." There was a long pause for reflection, and then Tom said: "Lookyhere, Huck, less not try that thing any more till we know Injun Joe's not in there. It's too scary. Now, if we watch every night, we'll be dead sure to see him go out, some time or other, and then we'll snatch that box quicker'n lightning." "Well, I'm agreed. I'll watch the whole night long, and I'll do it every night, too, if you'll do the other part of the job." "All right, I will. All you got to do is to trot up Hooper Street a block and maow--and if I'm asleep, you throw some gravel at the window and that'll fetch me." "Agreed, and good as wheat!" "Now, Huck, the storm's over, and I'll go home. It'll begin to be daylight in a couple of hours. You go back and watch that long, will you?" "I said I would, Tom, and I will. I'll ha'nt that tavern every night for a year! I'll sleep all day and I'll stand watch all night." "That's all right. Now, where you going to sleep?" "In Ben Rogers' hayloft. He lets me, and so does his pap's nigger man, Uncle Jake. I tote water for Uncle Jake whenever he wants me to, and any time I ask him he gives me a little something to eat if he can spare it. That's a mighty good nigger, Tom. He likes me, becuz I don't ever act as if I was above him. Sometime I've set right down and eat WITH him. But you needn't tell that. A body's got to do things when he's awful hungry he wouldn't want to do as a steady thing." "Well, if I don't want you in the daytime, I'll let you sleep. I won't come bothering around. Any time you see something's up, in the night, just skip right around and maow." CHAPTER XXIX THE first thing Tom heard on Friday morning was a glad piece of news --Judge Thatcher's family had come back to town the night before. Both Injun Joe and the treasure sunk into secondary importance for a moment, and Becky took the chief place in the boy's interest. He saw her and they had an exhausting good time playing "hi-spy" and "gully-keeper" with a crowd of their school-mates. The day was completed and crowned in a peculiarly satisfactory way: Becky teased her mother to appoint the next day for the long-promised and long-delayed picnic, and she consented. The child's delight was boundless; and Tom's not more moderate. The invitations were sent out before sunset, and straightway the young folks of the village were thrown into a fever of preparation and pleasurable anticipation. Tom's excitement enabled him to keep awake until a pretty late hour, and he had good hopes of hearing Huck's "maow," and of having his treasure to astonish Becky and the picnickers with, next day; but he was disappointed. No signal came that night. Morning came, eventually, and by ten or eleven o'clock a giddy and rollicking company were gathered at Judge Thatcher's, and everything was ready for a start. It was not the custom for elderly people to mar the picnics with their presence. The children were considered safe enough under the wings of a few young ladies of eighteen and a few young gentlemen of twenty-three or thereabouts. The old steam ferryboat was chartered for the occasion; presently the gay throng filed up the main street laden with provision-baskets. Sid was sick and had to miss the fun; Mary remained at home to entertain him. The last thing Mrs. Thatcher said to Becky, was: "You'll not get back till late. Perhaps you'd better stay all night with some of the girls that live near the ferry-landing, child." "Then I'll stay with Susy Harper, mamma." "Very well. And mind and behave yourself and don't be any trouble." Presently, as they tripped along, Tom said to Becky: "Say--I'll tell you what we'll do. 'Stead of going to Joe Harper's we'll climb right up the hill and stop at the Widow Douglas'. She'll have ice-cream! She has it most every day--dead loads of it. And she'll be awful glad to have us." "Oh, that will be fun!" Then Becky reflected a moment and said: "But what will mamma say?" "How'll she ever know?" The girl turned the idea over in her mind, and said reluctantly: "I reckon it's wrong--but--" "But shucks! Your mother won't know, and so what's the harm? All she wants is that you'll be safe; and I bet you she'd 'a' said go there if she'd 'a' thought of it. I know she would!" The Widow Douglas' splendid hospitality was a tempting bait. It and Tom's persuasions presently carried the day. So it was decided to say nothing anybody about the night's programme. Presently it occurred to Tom that maybe Huck might come this very night and give the signal. The thought took a deal of the spirit out of his anticipations. Still he could not bear to give up the fun at Widow Douglas'. And why should he give it up, he reasoned--the signal did not come the night before, so why should it be any more likely to come to-night? The sure fun of the evening outweighed the uncertain treasure; and, boy-like, he determined to yield to the stronger inclination and not allow himself to think of the box of money another time that day. Three miles below town the ferryboat stopped at the mouth of a woody hollow and tied up. The crowd swarmed ashore and soon the forest distances and craggy heights echoed far and near with shoutings and laughter. All the different ways of getting hot and tired were gone through with, and by-and-by the rovers straggled back to camp fortified with responsible appetites, and then the destruction of the good things began. After the feast there was a refreshing season of rest and chat in the shade of spreading oaks. By-and-by somebody shouted: "Who's ready for the cave?" Everybody was. Bundles of candles were procured, and straightway there was a general scamper up the hill. The mouth of the cave was up the hillside--an opening shaped like a letter A. Its massive oaken door stood unbarred. Within was a small chamber, chilly as an ice-house, and walled by Nature with solid limestone that was dewy with a cold sweat. It was romantic and mysterious to stand here in the deep gloom and look out upon the green valley shining in the sun. But the impressiveness of the situation quickly wore off, and the romping began again. The moment a candle was lighted there was a general rush upon the owner of it; a struggle and a gallant defence followed, but the candle was soon knocked down or blown out, and then there was a glad clamor of laughter and a new chase. But all things have an end. By-and-by the procession went filing down the steep descent of the main avenue, the flickering rank of lights dimly revealing the lofty walls of rock almost to their point of junction sixty feet overhead. This main avenue was not more than eight or ten feet wide. Every few steps other lofty and still narrower crevices branched from it on either hand--for McDougal's cave was but a vast labyrinth of crooked aisles that ran into each other and out again and led nowhere. It was said that one might wander days and nights together through its intricate tangle of rifts and chasms, and never find the end of the cave; and that he might go down, and down, and still down, into the earth, and it was just the same--labyrinth under labyrinth, and no end to any of them. No man "knew" the cave. That was an impossible thing. Most of the young men knew a portion of it, and it was not customary to venture much beyond this known portion. Tom Sawyer knew as much of the cave as any one. The procession moved along the main avenue some three-quarters of a mile, and then groups and couples began to slip aside into branch avenues, fly along the dismal corridors, and take each other by surprise at points where the corridors joined again. Parties were able to elude each other for the space of half an hour without going beyond the "known" ground. By-and-by, one group after another came straggling back to the mouth of the cave, panting, hilarious, smeared from head to foot with tallow drippings, daubed with clay, and entirely delighted with the success of the day. Then they were astonished to find that they had been taking no note of time and that night was about at hand. The clanging bell had been calling for half an hour. However, this sort of close to the day's adventures was romantic and therefore satisfactory. When the ferryboat with her wild freight pushed into the stream, nobody cared sixpence for the wasted time but the captain of the craft. Huck was already upon his watch when the ferryboat's lights went glinting past the wharf. He heard no noise on board, for the young people were as subdued and still as people usually are who are nearly tired to death. He wondered what boat it was, and why she did not stop at the wharf--and then he dropped her out of his mind and put his attention upon his business. The night was growing cloudy and dark. Ten o'clock came, and the noise of vehicles ceased, scattered lights began to wink out, all straggling foot-passengers disappeared, the village betook itself to its slumbers and left the small watcher alone with the silence and the ghosts. Eleven o'clock came, and the tavern lights were put out; darkness everywhere, now. Huck waited what seemed a weary long time, but nothing happened. His faith was weakening. Was there any use? Was there really any use? Why not give it up and turn in? A noise fell upon his ear. He was all attention in an instant. The alley door closed softly. He sprang to the corner of the brick store. The next moment two men brushed by him, and one seemed to have something under his arm. It must be that box! So they were going to remove the treasure. Why call Tom now? It would be absurd--the men would get away with the box and never be found again. No, he would stick to their wake and follow them; he would trust to the darkness for security from discovery. So communing with himself, Huck stepped out and glided along behind the men, cat-like, with bare feet, allowing them to keep just far enough ahead not to be invisible. They moved up the river street three blocks, then turned to the left up a cross-street. They went straight ahead, then, until they came to the path that led up Cardiff Hill; this they took. They passed by the old Welshman's house, half-way up the hill, without hesitating, and still climbed upward. Good, thought Huck, they will bury it in the old quarry. But they never stopped at the quarry. They passed on, up the summit. They plunged into the narrow path between the tall sumach bushes, and were at once hidden in the gloom. Huck closed up and shortened his distance, now, for they would never be able to see him. He trotted along awhile; then slackened his pace, fearing he was gaining too fast; moved on a piece, then stopped altogether; listened; no sound; none, save that he seemed to hear the beating of his own heart. The hooting of an owl came over the hill--ominous sound! But no footsteps. Heavens, was everything lost! He was about to spring with winged feet, when a man cleared his throat not four feet from him! Huck's heart shot into his throat, but he swallowed it again; and then he stood there shaking as if a dozen agues had taken charge of him at once, and so weak that he thought he must surely fall to the ground. He knew where he was. He knew he was within five steps of the stile leading into Widow Douglas' grounds. Very well, he thought, let them bury it there; it won't be hard to find. Now there was a voice--a very low voice--Injun Joe's: "Damn her, maybe she's got company--there's lights, late as it is." "I can't see any." This was that stranger's voice--the stranger of the haunted house. A deadly chill went to Huck's heart--this, then, was the "revenge" job! His thought was, to fly. Then he remembered that the Widow Douglas had been kind to him more than once, and maybe these men were going to murder her. He wished he dared venture to warn her; but he knew he didn't dare--they might come and catch him. He thought all this and more in the moment that elapsed between the stranger's remark and Injun Joe's next--which was-- "Because the bush is in your way. Now--this way--now you see, don't you?" "Yes. Well, there IS company there, I reckon. Better give it up." "Give it up, and I just leaving this country forever! Give it up and maybe never have another chance. I tell you again, as I've told you before, I don't care for her swag--you may have it. But her husband was rough on me--many times he was rough on me--and mainly he was the justice of the peace that jugged me for a vagrant. And that ain't all. It ain't a millionth part of it! He had me HORSEWHIPPED!--horsewhipped in front of the jail, like a nigger!--with all the town looking on! HORSEWHIPPED!--do you understand? He took advantage of me and died. But I'll take it out of HER." "Oh, don't kill her! Don't do that!" "Kill? Who said anything about killing? I would kill HIM if he was here; but not her. When you want to get revenge on a woman you don't kill her--bosh! you go for her looks. You slit her nostrils--you notch her ears like a sow!" "By God, that's--" "Keep your opinion to yourself! It will be safest for you. I'll tie her to the bed. If she bleeds to death, is that my fault? I'll not cry, if she does. My friend, you'll help me in this thing--for MY sake --that's why you're here--I mightn't be able alone. If you flinch, I'll kill you. Do you understand that? And if I have to kill you, I'll kill her--and then I reckon nobody'll ever know much about who done this business." "Well, if it's got to be done, let's get at it. The quicker the better--I'm all in a shiver." "Do it NOW? And company there? Look here--I'll get suspicious of you, first thing you know. No--we'll wait till the lights are out--there's no hurry." Huck felt that a silence was going to ensue--a thing still more awful than any amount of murderous talk; so he held his breath and stepped gingerly back; planted his foot carefully and firmly, after balancing, one-legged, in a precarious way and almost toppling over, first on one side and then on the other. He took another step back, with the same elaboration and the same risks; then another and another, and--a twig snapped under his foot! His breath stopped and he listened. There was no sound--the stillness was perfect. His gratitude was measureless. Now he turned in his tracks, between the walls of sumach bushes--turned himself as carefully as if he were a ship--and then stepped quickly but cautiously along. When he emerged at the quarry he felt secure, and so he picked up his nimble heels and flew. Down, down he sped, till he reached the Welshman's. He banged at the door, and presently the heads of the old man and his two stalwart sons were thrust from windows. "What's the row there? Who's banging? What do you want?" "Let me in--quick! I'll tell everything." "Why, who are you?" "Huckleberry Finn--quick, let me in!" "Huckleberry Finn, indeed! It ain't a name to open many doors, I judge! But let him in, lads, and let's see what's the trouble." "Please don't ever tell I told you," were Huck's first words when he got in. "Please don't--I'd be killed, sure--but the widow's been good friends to me sometimes, and I want to tell--I WILL tell if you'll promise you won't ever say it was me." "By George, he HAS got something to tell, or he wouldn't act so!" exclaimed the old man; "out with it and nobody here'll ever tell, lad." Three minutes later the old man and his sons, well armed, were up the hill, and just entering the sumach path on tiptoe, their weapons in their hands. Huck accompanied them no further. He hid behind a great bowlder and fell to listening. There was a lagging, anxious silence, and then all of a sudden there was an explosion of firearms and a cry. Huck waited for no particulars. He sprang away and sped down the hill as fast as his legs could carry him. CHAPTER XXX AS the earliest suspicion of dawn appeared on Sunday morning, Huck came groping up the hill and rapped gently at the old Welshman's door. The inmates were asleep, but it was a sleep that was set on a hair-trigger, on account of the exciting episode of the night. A call came from a window: "Who's there!" Huck's scared voice answered in a low tone: "Please let me in! It's only Huck Finn!" "It's a name that can open this door night or day, lad!--and welcome!" These were strange words to the vagabond boy's ears, and the pleasantest he had ever heard. He could not recollect that the closing word had ever been applied in his case before. The door was quickly unlocked, and he entered. Huck was given a seat and the old man and his brace of tall sons speedily dressed themselves. "Now, my boy, I hope you're good and hungry, because breakfast will be ready as soon as the sun's up, and we'll have a piping hot one, too --make yourself easy about that! I and the boys hoped you'd turn up and stop here last night." "I was awful scared," said Huck, "and I run. I took out when the pistols went off, and I didn't stop for three mile. I've come now becuz I wanted to know about it, you know; and I come before daylight becuz I didn't want to run across them devils, even if they was dead." "Well, poor chap, you do look as if you'd had a hard night of it--but there's a bed here for you when you've had your breakfast. No, they ain't dead, lad--we are sorry enough for that. You see we knew right where to put our hands on them, by your description; so we crept along on tiptoe till we got within fifteen feet of them--dark as a cellar that sumach path was--and just then I found I was going to sneeze. It was the meanest kind of luck! I tried to keep it back, but no use --'twas bound to come, and it did come! I was in the lead with my pistol raised, and when the sneeze started those scoundrels a-rustling to get out of the path, I sung out, 'Fire boys!' and blazed away at the place where the rustling was. So did the boys. But they were off in a jiffy, those villains, and we after them, down through the woods. I judge we never touched them. They fired a shot apiece as they started, but their bullets whizzed by and didn't do us any harm. As soon as we lost the sound of their feet we quit chasing, and went down and stirred up the constables. They got a posse together, and went off to guard the river bank, and as soon as it is light the sheriff and a gang are going to beat up the woods. My boys will be with them presently. I wish we had some sort of description of those rascals--'twould help a good deal. But you couldn't see what they were like, in the dark, lad, I suppose?" "Oh yes; I saw them down-town and follered them." "Splendid! Describe them--describe them, my boy!" "One's the old deaf and dumb Spaniard that's ben around here once or twice, and t'other's a mean-looking, ragged--" "That's enough, lad, we know the men! Happened on them in the woods back of the widow's one day, and they slunk away. Off with you, boys, and tell the sheriff--get your breakfast to-morrow morning!" The Welshman's sons departed at once. As they were leaving the room Huck sprang up and exclaimed: "Oh, please don't tell ANYbody it was me that blowed on them! Oh, please!" "All right if you say it, Huck, but you ought to have the credit of what you did." "Oh no, no! Please don't tell!" When the young men were gone, the old Welshman said: "They won't tell--and I won't. But why don't you want it known?" Huck would not explain, further than to say that he already knew too much about one of those men and would not have the man know that he knew anything against him for the whole world--he would be killed for knowing it, sure. The old man promised secrecy once more, and said: "How did you come to follow these fellows, lad? Were they looking suspicious?" Huck was silent while he framed a duly cautious reply. Then he said: "Well, you see, I'm a kind of a hard lot,--least everybody says so, and I don't see nothing agin it--and sometimes I can't sleep much, on account of thinking about it and sort of trying to strike out a new way of doing. That was the way of it last night. I couldn't sleep, and so I come along up-street 'bout midnight, a-turning it all over, and when I got to that old shackly brick store by the Temperance Tavern, I backed up agin the wall to have another think. Well, just then along comes these two chaps slipping along close by me, with something under their arm, and I reckoned they'd stole it. One was a-smoking, and t'other one wanted a light; so they stopped right before me and the cigars lit up their faces and I see that the big one was the deaf and dumb Spaniard, by his white whiskers and the patch on his eye, and t'other one was a rusty, ragged-looking devil." "Could you see the rags by the light of the cigars?" This staggered Huck for a moment. Then he said: "Well, I don't know--but somehow it seems as if I did." "Then they went on, and you--" "Follered 'em--yes. That was it. I wanted to see what was up--they sneaked along so. I dogged 'em to the widder's stile, and stood in the dark and heard the ragged one beg for the widder, and the Spaniard swear he'd spile her looks just as I told you and your two--" "What! The DEAF AND DUMB man said all that!" Huck had made another terrible mistake! He was trying his best to keep the old man from getting the faintest hint of who the Spaniard might be, and yet his tongue seemed determined to get him into trouble in spite of all he could do. He made several efforts to creep out of his scrape, but the old man's eye was upon him and he made blunder after blunder. Presently the Welshman said: "My boy, don't be afraid of me. I wouldn't hurt a hair of your head for all the world. No--I'd protect you--I'd protect you. This Spaniard is not deaf and dumb; you've let that slip without intending it; you can't cover that up now. You know something about that Spaniard that you want to keep dark. Now trust me--tell me what it is, and trust me --I won't betray you." Huck looked into the old man's honest eyes a moment, then bent over and whispered in his ear: "'Tain't a Spaniard--it's Injun Joe!" The Welshman almost jumped out of his chair. In a moment he said: "It's all plain enough, now. When you talked about notching ears and slitting noses I judged that that was your own embellishment, because white men don't take that sort of revenge. But an Injun! That's a different matter altogether." During breakfast the talk went on, and in the course of it the old man said that the last thing which he and his sons had done, before going to bed, was to get a lantern and examine the stile and its vicinity for marks of blood. They found none, but captured a bulky bundle of-- "Of WHAT?" If the words had been lightning they could not have leaped with a more stunning suddenness from Huck's blanched lips. His eyes were staring wide, now, and his breath suspended--waiting for the answer. The Welshman started--stared in return--three seconds--five seconds--ten --then replied: "Of burglar's tools. Why, what's the MATTER with you?" Huck sank back, panting gently, but deeply, unutterably grateful. The Welshman eyed him gravely, curiously--and presently said: "Yes, burglar's tools. That appears to relieve you a good deal. But what did give you that turn? What were YOU expecting we'd found?" Huck was in a close place--the inquiring eye was upon him--he would have given anything for material for a plausible answer--nothing suggested itself--the inquiring eye was boring deeper and deeper--a senseless reply offered--there was no time to weigh it, so at a venture he uttered it--feebly: "Sunday-school books, maybe." Poor Huck was too distressed to smile, but the old man laughed loud and joyously, shook up the details of his anatomy from head to foot, and ended by saying that such a laugh was money in a-man's pocket, because it cut down the doctor's bill like everything. Then he added: "Poor old chap, you're white and jaded--you ain't well a bit--no wonder you're a little flighty and off your balance. But you'll come out of it. Rest and sleep will fetch you out all right, I hope." Huck was irritated to think he had been such a goose and betrayed such a suspicious excitement, for he had dropped the idea that the parcel brought from the tavern was the treasure, as soon as he had heard the talk at the widow's stile. He had only thought it was not the treasure, however--he had not known that it wasn't--and so the suggestion of a captured bundle was too much for his self-possession. But on the whole he felt glad the little episode had happened, for now he knew beyond all question that that bundle was not THE bundle, and so his mind was at rest and exceedingly comfortable. In fact, everything seemed to be drifting just in the right direction, now; the treasure must be still in No. 2, the men would be captured and jailed that day, and he and Tom could seize the gold that night without any trouble or any fear of interruption. Just as breakfast was completed there was a knock at the door. Huck jumped for a hiding-place, for he had no mind to be connected even remotely with the late event. The Welshman admitted several ladies and gentlemen, among them the Widow Douglas, and noticed that groups of citizens were climbing up the hill--to stare at the stile. So the news had spread. The Welshman had to tell the story of the night to the visitors. The widow's gratitude for her preservation was outspoken. "Don't say a word about it, madam. There's another that you're more beholden to than you are to me and my boys, maybe, but he don't allow me to tell his name. We wouldn't have been there but for him." Of course this excited a curiosity so vast that it almost belittled the main matter--but the Welshman allowed it to eat into the vitals of his visitors, and through them be transmitted to the whole town, for he refused to part with his secret. When all else had been learned, the widow said: "I went to sleep reading in bed and slept straight through all that noise. Why didn't you come and wake me?" "We judged it warn't worth while. Those fellows warn't likely to come again--they hadn't any tools left to work with, and what was the use of waking you up and scaring you to death? My three negro men stood guard at your house all the rest of the night. They've just come back." More visitors came, and the story had to be told and retold for a couple of hours more. There was no Sabbath-school during day-school vacation, but everybody was early at church. The stirring event was well canvassed. News came that not a sign of the two villains had been yet discovered. When the sermon was finished, Judge Thatcher's wife dropped alongside of Mrs. Harper as she moved down the aisle with the crowd and said: "Is my Becky going to sleep all day? I just expected she would be tired to death." "Your Becky?" "Yes," with a startled look--"didn't she stay with you last night?" "Why, no." Mrs. Thatcher turned pale, and sank into a pew, just as Aunt Polly, talking briskly with a friend, passed by. Aunt Polly said: "Good-morning, Mrs. Thatcher. Good-morning, Mrs. Harper. I've got a boy that's turned up missing. I reckon my Tom stayed at your house last night--one of you. And now he's afraid to come to church. I've got to settle with him." Mrs. Thatcher shook her head feebly and turned paler than ever. "He didn't stay with us," said Mrs. Harper, beginning to look uneasy. A marked anxiety came into Aunt Polly's face. "Joe Harper, have you seen my Tom this morning?" "No'm." "When did you see him last?" Joe tried to remember, but was not sure he could say. The people had stopped moving out of church. Whispers passed along, and a boding uneasiness took possession of every countenance. Children were anxiously questioned, and young teachers. They all said they had not noticed whether Tom and Becky were on board the ferryboat on the homeward trip; it was dark; no one thought of inquiring if any one was missing. One young man finally blurted out his fear that they were still in the cave! Mrs. Thatcher swooned away. Aunt Polly fell to crying and wringing her hands. The alarm swept from lip to lip, from group to group, from street to street, and within five minutes the bells were wildly clanging and the whole town was up! The Cardiff Hill episode sank into instant insignificance, the burglars were forgotten, horses were saddled, skiffs were manned, the ferryboat ordered out, and before the horror was half an hour old, two hundred men were pouring down highroad and river toward the cave. All the long afternoon the village seemed empty and dead. Many women visited Aunt Polly and Mrs. Thatcher and tried to comfort them. They cried with them, too, and that was still better than words. All the tedious night the town waited for news; but when the morning dawned at last, all the word that came was, "Send more candles--and send food." Mrs. Thatcher was almost crazed; and Aunt Polly, also. Judge Thatcher sent messages of hope and encouragement from the cave, but they conveyed no real cheer. The old Welshman came home toward daylight, spattered with candle-grease, smeared with clay, and almost worn out. He found Huck still in the bed that had been provided for him, and delirious with fever. The physicians were all at the cave, so the Widow Douglas came and took charge of the patient. She said she would do her best by him, because, whether he was good, bad, or indifferent, he was the Lord's, and nothing that was the Lord's was a thing to be neglected. The Welshman said Huck had good spots in him, and the widow said: "You can depend on it. That's the Lord's mark. He don't leave it off. He never does. Puts it somewhere on every creature that comes from his hands." Early in the forenoon parties of jaded men began to straggle into the village, but the strongest of the citizens continued searching. All the news that could be gained was that remotenesses of the cavern were being ransacked that had never been visited before; that every corner and crevice was going to be thoroughly searched; that wherever one wandered through the maze of passages, lights were to be seen flitting hither and thither in the distance, and shoutings and pistol-shots sent their hollow reverberations to the ear down the sombre aisles. In one place, far from the section usually traversed by tourists, the names "BECKY & TOM" had been found traced upon the rocky wall with candle-smoke, and near at hand a grease-soiled bit of ribbon. Mrs. Thatcher recognized the ribbon and cried over it. She said it was the last relic she should ever have of her child; and that no other memorial of her could ever be so precious, because this one parted latest from the living body before the awful death came. Some said that now and then, in the cave, a far-away speck of light would glimmer, and then a glorious shout would burst forth and a score of men go trooping down the echoing aisle--and then a sickening disappointment always followed; the children were not there; it was only a searcher's light. Three dreadful days and nights dragged their tedious hours along, and the village sank into a hopeless stupor. No one had heart for anything. The accidental discovery, just made, that the proprietor of the Temperance Tavern kept liquor on his premises, scarcely fluttered the public pulse, tremendous as the fact was. In a lucid interval, Huck feebly led up to the subject of taverns, and finally asked--dimly dreading the worst--if anything had been discovered at the Temperance Tavern since he had been ill. "Yes," said the widow. Huck started up in bed, wild-eyed: "What? What was it?" "Liquor!--and the place has been shut up. Lie down, child--what a turn you did give me!" "Only tell me just one thing--only just one--please! Was it Tom Sawyer that found it?" The widow burst into tears. "Hush, hush, child, hush! I've told you before, you must NOT talk. You are very, very sick!" Then nothing but liquor had been found; there would have been a great powwow if it had been the gold. So the treasure was gone forever--gone forever! But what could she be crying about? Curious that she should cry. These thoughts worked their dim way through Huck's mind, and under the weariness they gave him he fell asleep. The widow said to herself: "There--he's asleep, poor wreck. Tom Sawyer find it! Pity but somebody could find Tom Sawyer! Ah, there ain't many left, now, that's got hope enough, or strength enough, either, to go on searching." CHAPTER XXXI NOW to return to Tom and Becky's share in the picnic. They tripped along the murky aisles with the rest of the company, visiting the familiar wonders of the cave--wonders dubbed with rather over-descriptive names, such as "The Drawing-Room," "The Cathedral," "Aladdin's Palace," and so on. Presently the hide-and-seek frolicking began, and Tom and Becky engaged in it with zeal until the exertion began to grow a trifle wearisome; then they wandered down a sinuous avenue holding their candles aloft and reading the tangled web-work of names, dates, post-office addresses, and mottoes with which the rocky walls had been frescoed (in candle-smoke). Still drifting along and talking, they scarcely noticed that they were now in a part of the cave whose walls were not frescoed. They smoked their own names under an overhanging shelf and moved on. Presently they came to a place where a little stream of water, trickling over a ledge and carrying a limestone sediment with it, had, in the slow-dragging ages, formed a laced and ruffled Niagara in gleaming and imperishable stone. Tom squeezed his small body behind it in order to illuminate it for Becky's gratification. He found that it curtained a sort of steep natural stairway which was enclosed between narrow walls, and at once the ambition to be a discoverer seized him. Becky responded to his call, and they made a smoke-mark for future guidance, and started upon their quest. They wound this way and that, far down into the secret depths of the cave, made another mark, and branched off in search of novelties to tell the upper world about. In one place they found a spacious cavern, from whose ceiling depended a multitude of shining stalactites of the length and circumference of a man's leg; they walked all about it, wondering and admiring, and presently left it by one of the numerous passages that opened into it. This shortly brought them to a bewitching spring, whose basin was incrusted with a frostwork of glittering crystals; it was in the midst of a cavern whose walls were supported by many fantastic pillars which had been formed by the joining of great stalactites and stalagmites together, the result of the ceaseless water-drip of centuries. Under the roof vast knots of bats had packed themselves together, thousands in a bunch; the lights disturbed the creatures and they came flocking down by hundreds, squeaking and darting furiously at the candles. Tom knew their ways and the danger of this sort of conduct. He seized Becky's hand and hurried her into the first corridor that offered; and none too soon, for a bat struck Becky's light out with its wing while she was passing out of the cavern. The bats chased the children a good distance; but the fugitives plunged into every new passage that offered, and at last got rid of the perilous things. Tom found a subterranean lake, shortly, which stretched its dim length away until its shape was lost in the shadows. He wanted to explore its borders, but concluded that it would be best to sit down and rest awhile, first. Now, for the first time, the deep stillness of the place laid a clammy hand upon the spirits of the children. Becky said: "Why, I didn't notice, but it seems ever so long since I heard any of the others." "Come to think, Becky, we are away down below them--and I don't know how far away north, or south, or east, or whichever it is. We couldn't hear them here." Becky grew apprehensive. "I wonder how long we've been down here, Tom? We better start back." "Yes, I reckon we better. P'raps we better." "Can you find the way, Tom? It's all a mixed-up crookedness to me." "I reckon I could find it--but then the bats. If they put our candles out it will be an awful fix. Let's try some other way, so as not to go through there." "Well. But I hope we won't get lost. It would be so awful!" and the girl shuddered at the thought of the dreadful possibilities. They started through a corridor, and traversed it in silence a long way, glancing at each new opening, to see if there was anything familiar about the look of it; but they were all strange. Every time Tom made an examination, Becky would watch his face for an encouraging sign, and he would say cheerily: "Oh, it's all right. This ain't the one, but we'll come to it right away!" But he felt less and less hopeful with each failure, and presently began to turn off into diverging avenues at sheer random, in desperate hope of finding the one that was wanted. He still said it was "all right," but there was such a leaden dread at his heart that the words had lost their ring and sounded just as if he had said, "All is lost!" Becky clung to his side in an anguish of fear, and tried hard to keep back the tears, but they would come. At last she said: "Oh, Tom, never mind the bats, let's go back that way! We seem to get worse and worse off all the time." "Listen!" said he. Profound silence; silence so deep that even their breathings were conspicuous in the hush. Tom shouted. The call went echoing down the empty aisles and died out in the distance in a faint sound that resembled a ripple of mocking laughter. "Oh, don't do it again, Tom, it is too horrid," said Becky. "It is horrid, but I better, Becky; they might hear us, you know," and he shouted again. The "might" was even a chillier horror than the ghostly laughter, it so confessed a perishing hope. The children stood still and listened; but there was no result. Tom turned upon the back track at once, and hurried his steps. It was but a little while before a certain indecision in his manner revealed another fearful fact to Becky--he could not find his way back! "Oh, Tom, you didn't make any marks!" "Becky, I was such a fool! Such a fool! I never thought we might want to come back! No--I can't find the way. It's all mixed up." "Tom, Tom, we're lost! we're lost! We never can get out of this awful place! Oh, why DID we ever leave the others!" She sank to the ground and burst into such a frenzy of crying that Tom was appalled with the idea that she might die, or lose her reason. He sat down by her and put his arms around her; she buried her face in his bosom, she clung to him, she poured out her terrors, her unavailing regrets, and the far echoes turned them all to jeering laughter. Tom begged her to pluck up hope again, and she said she could not. He fell to blaming and abusing himself for getting her into this miserable situation; this had a better effect. She said she would try to hope again, she would get up and follow wherever he might lead if only he would not talk like that any more. For he was no more to blame than she, she said. So they moved on again--aimlessly--simply at random--all they could do was to move, keep moving. For a little while, hope made a show of reviving--not with any reason to back it, but only because it is its nature to revive when the spring has not been taken out of it by age and familiarity with failure. By-and-by Tom took Becky's candle and blew it out. This economy meant so much! Words were not needed. Becky understood, and her hope died again. She knew that Tom had a whole candle and three or four pieces in his pockets--yet he must economize. By-and-by, fatigue began to assert its claims; the children tried to pay attention, for it was dreadful to think of sitting down when time was grown to be so precious, moving, in some direction, in any direction, was at least progress and might bear fruit; but to sit down was to invite death and shorten its pursuit. At last Becky's frail limbs refused to carry her farther. She sat down. Tom rested with her, and they talked of home, and the friends there, and the comfortable beds and, above all, the light! Becky cried, and Tom tried to think of some way of comforting her, but all his encouragements were grown threadbare with use, and sounded like sarcasms. Fatigue bore so heavily upon Becky that she drowsed off to sleep. Tom was grateful. He sat looking into her drawn face and saw it grow smooth and natural under the influence of pleasant dreams; and by-and-by a smile dawned and rested there. The peaceful face reflected somewhat of peace and healing into his own spirit, and his thoughts wandered away to bygone times and dreamy memories. While he was deep in his musings, Becky woke up with a breezy little laugh--but it was stricken dead upon her lips, and a groan followed it. "Oh, how COULD I sleep! I wish I never, never had waked! No! No, I don't, Tom! Don't look so! I won't say it again." "I'm glad you've slept, Becky; you'll feel rested, now, and we'll find the way out." "We can try, Tom; but I've seen such a beautiful country in my dream. I reckon we are going there." "Maybe not, maybe not. Cheer up, Becky, and let's go on trying." They rose up and wandered along, hand in hand and hopeless. They tried to estimate how long they had been in the cave, but all they knew was that it seemed days and weeks, and yet it was plain that this could not be, for their candles were not gone yet. A long time after this--they could not tell how long--Tom said they must go softly and listen for dripping water--they must find a spring. They found one presently, and Tom said it was time to rest again. Both were cruelly tired, yet Becky said she thought she could go a little farther. She was surprised to hear Tom dissent. She could not understand it. They sat down, and Tom fastened his candle to the wall in front of them with some clay. Thought was soon busy; nothing was said for some time. Then Becky broke the silence: "Tom, I am so hungry!" Tom took something out of his pocket. "Do you remember this?" said he. Becky almost smiled. "It's our wedding-cake, Tom." "Yes--I wish it was as big as a barrel, for it's all we've got." "I saved it from the picnic for us to dream on, Tom, the way grown-up people do with wedding-cake--but it'll be our--" She dropped the sentence where it was. Tom divided the cake and Becky ate with good appetite, while Tom nibbled at his moiety. There was abundance of cold water to finish the feast with. By-and-by Becky suggested that they move on again. Tom was silent a moment. Then he said: "Becky, can you bear it if I tell you something?" Becky's face paled, but she thought she could. "Well, then, Becky, we must stay here, where there's water to drink. That little piece is our last candle!" Becky gave loose to tears and wailings. Tom did what he could to comfort her, but with little effect. At length Becky said: "Tom!" "Well, Becky?" "They'll miss us and hunt for us!" "Yes, they will! Certainly they will!" "Maybe they're hunting for us now, Tom." "Why, I reckon maybe they are. I hope they are." "When would they miss us, Tom?" "When they get back to the boat, I reckon." "Tom, it might be dark then--would they notice we hadn't come?" "I don't know. But anyway, your mother would miss you as soon as they got home." A frightened look in Becky's face brought Tom to his senses and he saw that he had made a blunder. Becky was not to have gone home that night! The children became silent and thoughtful. In a moment a new burst of grief from Becky showed Tom that the thing in his mind had struck hers also--that the Sabbath morning might be half spent before Mrs. Thatcher discovered that Becky was not at Mrs. Harper's. The children fastened their eyes upon their bit of candle and watched it melt slowly and pitilessly away; saw the half inch of wick stand alone at last; saw the feeble flame rise and fall, climb the thin column of smoke, linger at its top a moment, and then--the horror of utter darkness reigned! How long afterward it was that Becky came to a slow consciousness that she was crying in Tom's arms, neither could tell. All that they knew was, that after what seemed a mighty stretch of time, both awoke out of a dead stupor of sleep and resumed their miseries once more. Tom said it might be Sunday, now--maybe Monday. He tried to get Becky to talk, but her sorrows were too oppressive, all her hopes were gone. Tom said that they must have been missed long ago, and no doubt the search was going on. He would shout and maybe some one would come. He tried it; but in the darkness the distant echoes sounded so hideously that he tried it no more. The hours wasted away, and hunger came to torment the captives again. A portion of Tom's half of the cake was left; they divided and ate it. But they seemed hungrier than before. The poor morsel of food only whetted desire. By-and-by Tom said: "SH! Did you hear that?" Both held their breath and listened. There was a sound like the faintest, far-off shout. Instantly Tom answered it, and leading Becky by the hand, started groping down the corridor in its direction. Presently he listened again; again the sound was heard, and apparently a little nearer. "It's them!" said Tom; "they're coming! Come along, Becky--we're all right now!" The joy of the prisoners was almost overwhelming. Their speed was slow, however, because pitfalls were somewhat common, and had to be guarded against. They shortly came to one and had to stop. It might be three feet deep, it might be a hundred--there was no passing it at any rate. Tom got down on his breast and reached as far down as he could. No bottom. They must stay there and wait until the searchers came. They listened; evidently the distant shoutings were growing more distant! a moment or two more and they had gone altogether. The heart-sinking misery of it! Tom whooped until he was hoarse, but it was of no use. He talked hopefully to Becky; but an age of anxious waiting passed and no sounds came again. The children groped their way back to the spring. The weary time dragged on; they slept again, and awoke famished and woe-stricken. Tom believed it must be Tuesday by this time. Now an idea struck him. There were some side passages near at hand. It would be better to explore some of these than bear the weight of the heavy time in idleness. He took a kite-line from his pocket, tied it to a projection, and he and Becky started, Tom in the lead, unwinding the line as he groped along. At the end of twenty steps the corridor ended in a "jumping-off place." Tom got down on his knees and felt below, and then as far around the corner as he could reach with his hands conveniently; he made an effort to stretch yet a little farther to the right, and at that moment, not twenty yards away, a human hand, holding a candle, appeared from behind a rock! Tom lifted up a glorious shout, and instantly that hand was followed by the body it belonged to--Injun Joe's! Tom was paralyzed; he could not move. He was vastly gratified the next moment, to see the "Spaniard" take to his heels and get himself out of sight. Tom wondered that Joe had not recognized his voice and come over and killed him for testifying in court. But the echoes must have disguised the voice. Without doubt, that was it, he reasoned. Tom's fright weakened every muscle in his body. He said to himself that if he had strength enough to get back to the spring he would stay there, and nothing should tempt him to run the risk of meeting Injun Joe again. He was careful to keep from Becky what it was he had seen. He told her he had only shouted "for luck." But hunger and wretchedness rise superior to fears in the long run. Another tedious wait at the spring and another long sleep brought changes. The children awoke tortured with a raging hunger. Tom believed that it must be Wednesday or Thursday or even Friday or Saturday, now, and that the search had been given over. He proposed to explore another passage. He felt willing to risk Injun Joe and all other terrors. But Becky was very weak. She had sunk into a dreary apathy and would not be roused. She said she would wait, now, where she was, and die--it would not be long. She told Tom to go with the kite-line and explore if he chose; but she implored him to come back every little while and speak to her; and she made him promise that when the awful time came, he would stay by her and hold her hand until all was over. Tom kissed her, with a choking sensation in his throat, and made a show of being confident of finding the searchers or an escape from the cave; then he took the kite-line in his hand and went groping down one of the passages on his hands and knees, distressed with hunger and sick with bodings of coming doom. CHAPTER XXXII TUESDAY afternoon came, and waned to the twilight. The village of St. Petersburg still mourned. The lost children had not been found. Public prayers had been offered up for them, and many and many a private prayer that had the petitioner's whole heart in it; but still no good news came from the cave. The majority of the searchers had given up the quest and gone back to their daily avocations, saying that it was plain the children could never be found. Mrs. Thatcher was very ill, and a great part of the time delirious. People said it was heartbreaking to hear her call her child, and raise her head and listen a whole minute at a time, then lay it wearily down again with a moan. Aunt Polly had drooped into a settled melancholy, and her gray hair had grown almost white. The village went to its rest on Tuesday night, sad and forlorn. Away in the middle of the night a wild peal burst from the village bells, and in a moment the streets were swarming with frantic half-clad people, who shouted, "Turn out! turn out! they're found! they're found!" Tin pans and horns were added to the din, the population massed itself and moved toward the river, met the children coming in an open carriage drawn by shouting citizens, thronged around it, joined its homeward march, and swept magnificently up the main street roaring huzzah after huzzah! The village was illuminated; nobody went to bed again; it was the greatest night the little town had ever seen. During the first half-hour a procession of villagers filed through Judge Thatcher's house, seized the saved ones and kissed them, squeezed Mrs. Thatcher's hand, tried to speak but couldn't--and drifted out raining tears all over the place. Aunt Polly's happiness was complete, and Mrs. Thatcher's nearly so. It would be complete, however, as soon as the messenger dispatched with the great news to the cave should get the word to her husband. Tom lay upon a sofa with an eager auditory about him and told the history of the wonderful adventure, putting in many striking additions to adorn it withal; and closed with a description of how he left Becky and went on an exploring expedition; how he followed two avenues as far as his kite-line would reach; how he followed a third to the fullest stretch of the kite-line, and was about to turn back when he glimpsed a far-off speck that looked like daylight; dropped the line and groped toward it, pushed his head and shoulders through a small hole, and saw the broad Mississippi rolling by! And if it had only happened to be night he would not have seen that speck of daylight and would not have explored that passage any more! He told how he went back for Becky and broke the good news and she told him not to fret her with such stuff, for she was tired, and knew she was going to die, and wanted to. He described how he labored with her and convinced her; and how she almost died for joy when she had groped to where she actually saw the blue speck of daylight; how he pushed his way out at the hole and then helped her out; how they sat there and cried for gladness; how some men came along in a skiff and Tom hailed them and told them their situation and their famished condition; how the men didn't believe the wild tale at first, "because," said they, "you are five miles down the river below the valley the cave is in" --then took them aboard, rowed to a house, gave them supper, made them rest till two or three hours after dark and then brought them home. Before day-dawn, Judge Thatcher and the handful of searchers with him were tracked out, in the cave, by the twine clews they had strung behind them, and informed of the great news. Three days and nights of toil and hunger in the cave were not to be shaken off at once, as Tom and Becky soon discovered. They were bedridden all of Wednesday and Thursday, and seemed to grow more and more tired and worn, all the time. Tom got about, a little, on Thursday, was down-town Friday, and nearly as whole as ever Saturday; but Becky did not leave her room until Sunday, and then she looked as if she had passed through a wasting illness. Tom learned of Huck's sickness and went to see him on Friday, but could not be admitted to the bedroom; neither could he on Saturday or Sunday. He was admitted daily after that, but was warned to keep still about his adventure and introduce no exciting topic. The Widow Douglas stayed by to see that he obeyed. At home Tom learned of the Cardiff Hill event; also that the "ragged man's" body had eventually been found in the river near the ferry-landing; he had been drowned while trying to escape, perhaps. About a fortnight after Tom's rescue from the cave, he started off to visit Huck, who had grown plenty strong enough, now, to hear exciting talk, and Tom had some that would interest him, he thought. Judge Thatcher's house was on Tom's way, and he stopped to see Becky. The Judge and some friends set Tom to talking, and some one asked him ironically if he wouldn't like to go to the cave again. Tom said he thought he wouldn't mind it. The Judge said: "Well, there are others just like you, Tom, I've not the least doubt. But we have taken care of that. Nobody will get lost in that cave any more." "Why?" "Because I had its big door sheathed with boiler iron two weeks ago, and triple-locked--and I've got the keys." Tom turned as white as a sheet. "What's the matter, boy! Here, run, somebody! Fetch a glass of water!" The water was brought and thrown into Tom's face. "Ah, now you're all right. What was the matter with you, Tom?" "Oh, Judge, Injun Joe's in the cave!" CHAPTER XXXIII WITHIN a few minutes the news had spread, and a dozen skiff-loads of men were on their way to McDougal's cave, and the ferryboat, well filled with passengers, soon followed. Tom Sawyer was in the skiff that bore Judge Thatcher. When the cave door was unlocked, a sorrowful sight presented itself in the dim twilight of the place. Injun Joe lay stretched upon the ground, dead, with his face close to the crack of the door, as if his longing eyes had been fixed, to the latest moment, upon the light and the cheer of the free world outside. Tom was touched, for he knew by his own experience how this wretch had suffered. His pity was moved, but nevertheless he felt an abounding sense of relief and security, now, which revealed to him in a degree which he had not fully appreciated before how vast a weight of dread had been lying upon him since the day he lifted his voice against this bloody-minded outcast. Injun Joe's bowie-knife lay close by, its blade broken in two. The great foundation-beam of the door had been chipped and hacked through, with tedious labor; useless labor, too, it was, for the native rock formed a sill outside it, and upon that stubborn material the knife had wrought no effect; the only damage done was to the knife itself. But if there had been no stony obstruction there the labor would have been useless still, for if the beam had been wholly cut away Injun Joe could not have squeezed his body under the door, and he knew it. So he had only hacked that place in order to be doing something--in order to pass the weary time--in order to employ his tortured faculties. Ordinarily one could find half a dozen bits of candle stuck around in the crevices of this vestibule, left there by tourists; but there were none now. The prisoner had searched them out and eaten them. He had also contrived to catch a few bats, and these, also, he had eaten, leaving only their claws. The poor unfortunate had starved to death. In one place, near at hand, a stalagmite had been slowly growing up from the ground for ages, builded by the water-drip from a stalactite overhead. The captive had broken off the stalagmite, and upon the stump had placed a stone, wherein he had scooped a shallow hollow to catch the precious drop that fell once in every three minutes with the dreary regularity of a clock-tick--a dessertspoonful once in four and twenty hours. That drop was falling when the Pyramids were new; when Troy fell; when the foundations of Rome were laid; when Christ was crucified; when the Conqueror created the British empire; when Columbus sailed; when the massacre at Lexington was "news." It is falling now; it will still be falling when all these things shall have sunk down the afternoon of history, and the twilight of tradition, and been swallowed up in the thick night of oblivion. Has everything a purpose and a mission? Did this drop fall patiently during five thousand years to be ready for this flitting human insect's need? and has it another important object to accomplish ten thousand years to come? No matter. It is many and many a year since the hapless half-breed scooped out the stone to catch the priceless drops, but to this day the tourist stares longest at that pathetic stone and that slow-dropping water when he comes to see the wonders of McDougal's cave. Injun Joe's cup stands first in the list of the cavern's marvels; even "Aladdin's Palace" cannot rival it. Injun Joe was buried near the mouth of the cave; and people flocked there in boats and wagons from the towns and from all the farms and hamlets for seven miles around; they brought their children, and all sorts of provisions, and confessed that they had had almost as satisfactory a time at the funeral as they could have had at the hanging. This funeral stopped the further growth of one thing--the petition to the governor for Injun Joe's pardon. The petition had been largely signed; many tearful and eloquent meetings had been held, and a committee of sappy women been appointed to go in deep mourning and wail around the governor, and implore him to be a merciful ass and trample his duty under foot. Injun Joe was believed to have killed five citizens of the village, but what of that? If he had been Satan himself there would have been plenty of weaklings ready to scribble their names to a pardon-petition, and drip a tear on it from their permanently impaired and leaky water-works. The morning after the funeral Tom took Huck to a private place to have an important talk. Huck had learned all about Tom's adventure from the Welshman and the Widow Douglas, by this time, but Tom said he reckoned there was one thing they had not told him; that thing was what he wanted to talk about now. Huck's face saddened. He said: "I know what it is. You got into No. 2 and never found anything but whiskey. Nobody told me it was you; but I just knowed it must 'a' ben you, soon as I heard 'bout that whiskey business; and I knowed you hadn't got the money becuz you'd 'a' got at me some way or other and told me even if you was mum to everybody else. Tom, something's always told me we'd never get holt of that swag." "Why, Huck, I never told on that tavern-keeper. YOU know his tavern was all right the Saturday I went to the picnic. Don't you remember you was to watch there that night?" "Oh yes! Why, it seems 'bout a year ago. It was that very night that I follered Injun Joe to the widder's." "YOU followed him?" "Yes--but you keep mum. I reckon Injun Joe's left friends behind him, and I don't want 'em souring on me and doing me mean tricks. If it hadn't ben for me he'd be down in Texas now, all right." Then Huck told his entire adventure in confidence to Tom, who had only heard of the Welshman's part of it before. "Well," said Huck, presently, coming back to the main question, "whoever nipped the whiskey in No. 2, nipped the money, too, I reckon --anyways it's a goner for us, Tom." "Huck, that money wasn't ever in No. 2!" "What!" Huck searched his comrade's face keenly. "Tom, have you got on the track of that money again?" "Huck, it's in the cave!" Huck's eyes blazed. "Say it again, Tom." "The money's in the cave!" "Tom--honest injun, now--is it fun, or earnest?" "Earnest, Huck--just as earnest as ever I was in my life. Will you go in there with me and help get it out?" "I bet I will! I will if it's where we can blaze our way to it and not get lost." "Huck, we can do that without the least little bit of trouble in the world." "Good as wheat! What makes you think the money's--" "Huck, you just wait till we get in there. If we don't find it I'll agree to give you my drum and every thing I've got in the world. I will, by jings." "All right--it's a whiz. When do you say?" "Right now, if you say it. Are you strong enough?" "Is it far in the cave? I ben on my pins a little, three or four days, now, but I can't walk more'n a mile, Tom--least I don't think I could." "It's about five mile into there the way anybody but me would go, Huck, but there's a mighty short cut that they don't anybody but me know about. Huck, I'll take you right to it in a skiff. I'll float the skiff down there, and I'll pull it back again all by myself. You needn't ever turn your hand over." "Less start right off, Tom." "All right. We want some bread and meat, and our pipes, and a little bag or two, and two or three kite-strings, and some of these new-fangled things they call lucifer matches. I tell you, many's the time I wished I had some when I was in there before." A trifle after noon the boys borrowed a small skiff from a citizen who was absent, and got under way at once. When they were several miles below "Cave Hollow," Tom said: "Now you see this bluff here looks all alike all the way down from the cave hollow--no houses, no wood-yards, bushes all alike. But do you see that white place up yonder where there's been a landslide? Well, that's one of my marks. We'll get ashore, now." They landed. "Now, Huck, where we're a-standing you could touch that hole I got out of with a fishing-pole. See if you can find it." Huck searched all the place about, and found nothing. Tom proudly marched into a thick clump of sumach bushes and said: "Here you are! Look at it, Huck; it's the snuggest hole in this country. You just keep mum about it. All along I've been wanting to be a robber, but I knew I'd got to have a thing like this, and where to run across it was the bother. We've got it now, and we'll keep it quiet, only we'll let Joe Harper and Ben Rogers in--because of course there's got to be a Gang, or else there wouldn't be any style about it. Tom Sawyer's Gang--it sounds splendid, don't it, Huck?" "Well, it just does, Tom. And who'll we rob?" "Oh, most anybody. Waylay people--that's mostly the way." "And kill them?" "No, not always. Hive them in the cave till they raise a ransom." "What's a ransom?" "Money. You make them raise all they can, off'n their friends; and after you've kept them a year, if it ain't raised then you kill them. That's the general way. Only you don't kill the women. You shut up the women, but you don't kill them. They're always beautiful and rich, and awfully scared. You take their watches and things, but you always take your hat off and talk polite. They ain't anybody as polite as robbers --you'll see that in any book. Well, the women get to loving you, and after they've been in the cave a week or two weeks they stop crying and after that you couldn't get them to leave. If you drove them out they'd turn right around and come back. It's so in all the books." "Why, it's real bully, Tom. I believe it's better'n to be a pirate." "Yes, it's better in some ways, because it's close to home and circuses and all that." By this time everything was ready and the boys entered the hole, Tom in the lead. They toiled their way to the farther end of the tunnel, then made their spliced kite-strings fast and moved on. A few steps brought them to the spring, and Tom felt a shudder quiver all through him. He showed Huck the fragment of candle-wick perched on a lump of clay against the wall, and described how he and Becky had watched the flame struggle and expire. The boys began to quiet down to whispers, now, for the stillness and gloom of the place oppressed their spirits. They went on, and presently entered and followed Tom's other corridor until they reached the "jumping-off place." The candles revealed the fact that it was not really a precipice, but only a steep clay hill twenty or thirty feet high. Tom whispered: "Now I'll show you something, Huck." He held his candle aloft and said: "Look as far around the corner as you can. Do you see that? There--on the big rock over yonder--done with candle-smoke." "Tom, it's a CROSS!" "NOW where's your Number Two? 'UNDER THE CROSS,' hey? Right yonder's where I saw Injun Joe poke up his candle, Huck!" Huck stared at the mystic sign awhile, and then said with a shaky voice: "Tom, less git out of here!" "What! and leave the treasure?" "Yes--leave it. Injun Joe's ghost is round about there, certain." "No it ain't, Huck, no it ain't. It would ha'nt the place where he died--away out at the mouth of the cave--five mile from here." "No, Tom, it wouldn't. It would hang round the money. I know the ways of ghosts, and so do you." Tom began to fear that Huck was right. Misgivings gathered in his mind. But presently an idea occurred to him-- "Lookyhere, Huck, what fools we're making of ourselves! Injun Joe's ghost ain't a going to come around where there's a cross!" The point was well taken. It had its effect. "Tom, I didn't think of that. But that's so. It's luck for us, that cross is. I reckon we'll climb down there and have a hunt for that box." Tom went first, cutting rude steps in the clay hill as he descended. Huck followed. Four avenues opened out of the small cavern which the great rock stood in. The boys examined three of them with no result. They found a small recess in the one nearest the base of the rock, with a pallet of blankets spread down in it; also an old suspender, some bacon rind, and the well-gnawed bones of two or three fowls. But there was no money-box. The lads searched and researched this place, but in vain. Tom said: "He said UNDER the cross. Well, this comes nearest to being under the cross. It can't be under the rock itself, because that sets solid on the ground." They searched everywhere once more, and then sat down discouraged. Huck could suggest nothing. By-and-by Tom said: "Lookyhere, Huck, there's footprints and some candle-grease on the clay about one side of this rock, but not on the other sides. Now, what's that for? I bet you the money IS under the rock. I'm going to dig in the clay." "That ain't no bad notion, Tom!" said Huck with animation. Tom's "real Barlow" was out at once, and he had not dug four inches before he struck wood. "Hey, Huck!--you hear that?" Huck began to dig and scratch now. Some boards were soon uncovered and removed. They had concealed a natural chasm which led under the rock. Tom got into this and held his candle as far under the rock as he could, but said he could not see to the end of the rift. He proposed to explore. He stooped and passed under; the narrow way descended gradually. He followed its winding course, first to the right, then to the left, Huck at his heels. Tom turned a short curve, by-and-by, and exclaimed: "My goodness, Huck, lookyhere!" It was the treasure-box, sure enough, occupying a snug little cavern, along with an empty powder-keg, a couple of guns in leather cases, two or three pairs of old moccasins, a leather belt, and some other rubbish well soaked with the water-drip. "Got it at last!" said Huck, ploughing among the tarnished coins with his hand. "My, but we're rich, Tom!" "Huck, I always reckoned we'd get it. It's just too good to believe, but we HAVE got it, sure! Say--let's not fool around here. Let's snake it out. Lemme see if I can lift the box." It weighed about fifty pounds. Tom could lift it, after an awkward fashion, but could not carry it conveniently. "I thought so," he said; "THEY carried it like it was heavy, that day at the ha'nted house. I noticed that. I reckon I was right to think of fetching the little bags along." The money was soon in the bags and the boys took it up to the cross rock. "Now less fetch the guns and things," said Huck. "No, Huck--leave them there. They're just the tricks to have when we go to robbing. We'll keep them there all the time, and we'll hold our orgies there, too. It's an awful snug place for orgies." "What orgies?" "I dono. But robbers always have orgies, and of course we've got to have them, too. Come along, Huck, we've been in here a long time. It's getting late, I reckon. I'm hungry, too. We'll eat and smoke when we get to the skiff." They presently emerged into the clump of sumach bushes, looked warily out, found the coast clear, and were soon lunching and smoking in the skiff. As the sun dipped toward the horizon they pushed out and got under way. Tom skimmed up the shore through the long twilight, chatting cheerily with Huck, and landed shortly after dark. "Now, Huck," said Tom, "we'll hide the money in the loft of the widow's woodshed, and I'll come up in the morning and we'll count it and divide, and then we'll hunt up a place out in the woods for it where it will be safe. Just you lay quiet here and watch the stuff till I run and hook Benny Taylor's little wagon; I won't be gone a minute." He disappeared, and presently returned with the wagon, put the two small sacks into it, threw some old rags on top of them, and started off, dragging his cargo behind him. When the boys reached the Welshman's house, they stopped to rest. Just as they were about to move on, the Welshman stepped out and said: "Hallo, who's that?" "Huck and Tom Sawyer." "Good! Come along with me, boys, you are keeping everybody waiting. Here--hurry up, trot ahead--I'll haul the wagon for you. Why, it's not as light as it might be. Got bricks in it?--or old metal?" "Old metal," said Tom. "I judged so; the boys in this town will take more trouble and fool away more time hunting up six bits' worth of old iron to sell to the foundry than they would to make twice the money at regular work. But that's human nature--hurry along, hurry along!" The boys wanted to know what the hurry was about. "Never mind; you'll see, when we get to the Widow Douglas'." Huck said with some apprehension--for he was long used to being falsely accused: "Mr. Jones, we haven't been doing nothing." The Welshman laughed. "Well, I don't know, Huck, my boy. I don't know about that. Ain't you and the widow good friends?" "Yes. Well, she's ben good friends to me, anyway." "All right, then. What do you want to be afraid for?" This question was not entirely answered in Huck's slow mind before he found himself pushed, along with Tom, into Mrs. Douglas' drawing-room. Mr. Jones left the wagon near the door and followed. The place was grandly lighted, and everybody that was of any consequence in the village was there. The Thatchers were there, the Harpers, the Rogerses, Aunt Polly, Sid, Mary, the minister, the editor, and a great many more, and all dressed in their best. The widow received the boys as heartily as any one could well receive two such looking beings. They were covered with clay and candle-grease. Aunt Polly blushed crimson with humiliation, and frowned and shook her head at Tom. Nobody suffered half as much as the two boys did, however. Mr. Jones said: "Tom wasn't at home, yet, so I gave him up; but I stumbled on him and Huck right at my door, and so I just brought them along in a hurry." "And you did just right," said the widow. "Come with me, boys." She took them to a bedchamber and said: "Now wash and dress yourselves. Here are two new suits of clothes --shirts, socks, everything complete. They're Huck's--no, no thanks, Huck--Mr. Jones bought one and I the other. But they'll fit both of you. Get into them. We'll wait--come down when you are slicked up enough." Then she left. CHAPTER XXXIV HUCK said: "Tom, we can slope, if we can find a rope. The window ain't high from the ground." "Shucks! what do you want to slope for?" "Well, I ain't used to that kind of a crowd. I can't stand it. I ain't going down there, Tom." "Oh, bother! It ain't anything. I don't mind it a bit. I'll take care of you." Sid appeared. "Tom," said he, "auntie has been waiting for you all the afternoon. Mary got your Sunday clothes ready, and everybody's been fretting about you. Say--ain't this grease and clay, on your clothes?" "Now, Mr. Siddy, you jist 'tend to your own business. What's all this blow-out about, anyway?" "It's one of the widow's parties that she's always having. This time it's for the Welshman and his sons, on account of that scrape they helped her out of the other night. And say--I can tell you something, if you want to know." "Well, what?" "Why, old Mr. Jones is going to try to spring something on the people here to-night, but I overheard him tell auntie to-day about it, as a secret, but I reckon it's not much of a secret now. Everybody knows --the widow, too, for all she tries to let on she don't. Mr. Jones was bound Huck should be here--couldn't get along with his grand secret without Huck, you know!" "Secret about what, Sid?" "About Huck tracking the robbers to the widow's. I reckon Mr. Jones was going to make a grand time over his surprise, but I bet you it will drop pretty flat." Sid chuckled in a very contented and satisfied way. "Sid, was it you that told?" "Oh, never mind who it was. SOMEBODY told--that's enough." "Sid, there's only one person in this town mean enough to do that, and that's you. If you had been in Huck's place you'd 'a' sneaked down the hill and never told anybody on the robbers. You can't do any but mean things, and you can't bear to see anybody praised for doing good ones. There--no thanks, as the widow says"--and Tom cuffed Sid's ears and helped him to the door with several kicks. "Now go and tell auntie if you dare--and to-morrow you'll catch it!" Some minutes later the widow's guests were at the supper-table, and a dozen children were propped up at little side-tables in the same room, after the fashion of that country and that day. At the proper time Mr. Jones made his little speech, in which he thanked the widow for the honor she was doing himself and his sons, but said that there was another person whose modesty-- And so forth and so on. He sprung his secret about Huck's share in the adventure in the finest dramatic manner he was master of, but the surprise it occasioned was largely counterfeit and not as clamorous and effusive as it might have been under happier circumstances. However, the widow made a pretty fair show of astonishment, and heaped so many compliments and so much gratitude upon Huck that he almost forgot the nearly intolerable discomfort of his new clothes in the entirely intolerable discomfort of being set up as a target for everybody's gaze and everybody's laudations. The widow said she meant to give Huck a home under her roof and have him educated; and that when she could spare the money she would start him in business in a modest way. Tom's chance was come. He said: "Huck don't need it. Huck's rich." Nothing but a heavy strain upon the good manners of the company kept back the due and proper complimentary laugh at this pleasant joke. But the silence was a little awkward. Tom broke it: "Huck's got money. Maybe you don't believe it, but he's got lots of it. Oh, you needn't smile--I reckon I can show you. You just wait a minute." Tom ran out of doors. The company looked at each other with a perplexed interest--and inquiringly at Huck, who was tongue-tied. "Sid, what ails Tom?" said Aunt Polly. "He--well, there ain't ever any making of that boy out. I never--" Tom entered, struggling with the weight of his sacks, and Aunt Polly did not finish her sentence. Tom poured the mass of yellow coin upon the table and said: "There--what did I tell you? Half of it's Huck's and half of it's mine!" The spectacle took the general breath away. All gazed, nobody spoke for a moment. Then there was a unanimous call for an explanation. Tom said he could furnish it, and he did. The tale was long, but brimful of interest. There was scarcely an interruption from any one to break the charm of its flow. When he had finished, Mr. Jones said: "I thought I had fixed up a little surprise for this occasion, but it don't amount to anything now. This one makes it sing mighty small, I'm willing to allow." The money was counted. The sum amounted to a little over twelve thousand dollars. It was more than any one present had ever seen at one time before, though several persons were there who were worth considerably more than that in property. CHAPTER XXXV THE reader may rest satisfied that Tom's and Huck's windfall made a mighty stir in the poor little village of St. Petersburg. So vast a sum, all in actual cash, seemed next to incredible. It was talked about, gloated over, glorified, until the reason of many of the citizens tottered under the strain of the unhealthy excitement. Every "haunted" house in St. Petersburg and the neighboring villages was dissected, plank by plank, and its foundations dug up and ransacked for hidden treasure--and not by boys, but men--pretty grave, unromantic men, too, some of them. Wherever Tom and Huck appeared they were courted, admired, stared at. The boys were not able to remember that their remarks had possessed weight before; but now their sayings were treasured and repeated; everything they did seemed somehow to be regarded as remarkable; they had evidently lost the power of doing and saying commonplace things; moreover, their past history was raked up and discovered to bear marks of conspicuous originality. The village paper published biographical sketches of the boys. The Widow Douglas put Huck's money out at six per cent., and Judge Thatcher did the same with Tom's at Aunt Polly's request. Each lad had an income, now, that was simply prodigious--a dollar for every week-day in the year and half of the Sundays. It was just what the minister got --no, it was what he was promised--he generally couldn't collect it. A dollar and a quarter a week would board, lodge, and school a boy in those old simple days--and clothe him and wash him, too, for that matter. Judge Thatcher had conceived a great opinion of Tom. He said that no commonplace boy would ever have got his daughter out of the cave. When Becky told her father, in strict confidence, how Tom had taken her whipping at school, the Judge was visibly moved; and when she pleaded grace for the mighty lie which Tom had told in order to shift that whipping from her shoulders to his own, the Judge said with a fine outburst that it was a noble, a generous, a magnanimous lie--a lie that was worthy to hold up its head and march down through history breast to breast with George Washington's lauded Truth about the hatchet! Becky thought her father had never looked so tall and so superb as when he walked the floor and stamped his foot and said that. She went straight off and told Tom about it. Judge Thatcher hoped to see Tom a great lawyer or a great soldier some day. He said he meant to look to it that Tom should be admitted to the National Military Academy and afterward trained in the best law school in the country, in order that he might be ready for either career or both. Huck Finn's wealth and the fact that he was now under the Widow Douglas' protection introduced him into society--no, dragged him into it, hurled him into it--and his sufferings were almost more than he could bear. The widow's servants kept him clean and neat, combed and brushed, and they bedded him nightly in unsympathetic sheets that had not one little spot or stain which he could press to his heart and know for a friend. He had to eat with a knife and fork; he had to use napkin, cup, and plate; he had to learn his book, he had to go to church; he had to talk so properly that speech was become insipid in his mouth; whithersoever he turned, the bars and shackles of civilization shut him in and bound him hand and foot. He bravely bore his miseries three weeks, and then one day turned up missing. For forty-eight hours the widow hunted for him everywhere in great distress. The public were profoundly concerned; they searched high and low, they dragged the river for his body. Early the third morning Tom Sawyer wisely went poking among some old empty hogsheads down behind the abandoned slaughter-house, and in one of them he found the refugee. Huck had slept there; he had just breakfasted upon some stolen odds and ends of food, and was lying off, now, in comfort, with his pipe. He was unkempt, uncombed, and clad in the same old ruin of rags that had made him picturesque in the days when he was free and happy. Tom routed him out, told him the trouble he had been causing, and urged him to go home. Huck's face lost its tranquil content, and took a melancholy cast. He said: "Don't talk about it, Tom. I've tried it, and it don't work; it don't work, Tom. It ain't for me; I ain't used to it. The widder's good to me, and friendly; but I can't stand them ways. She makes me get up just at the same time every morning; she makes me wash, they comb me all to thunder; she won't let me sleep in the woodshed; I got to wear them blamed clothes that just smothers me, Tom; they don't seem to any air git through 'em, somehow; and they're so rotten nice that I can't set down, nor lay down, nor roll around anywher's; I hain't slid on a cellar-door for--well, it 'pears to be years; I got to go to church and sweat and sweat--I hate them ornery sermons! I can't ketch a fly in there, I can't chaw. I got to wear shoes all Sunday. The widder eats by a bell; she goes to bed by a bell; she gits up by a bell--everything's so awful reg'lar a body can't stand it." "Well, everybody does that way, Huck." "Tom, it don't make no difference. I ain't everybody, and I can't STAND it. It's awful to be tied up so. And grub comes too easy--I don't take no interest in vittles, that way. I got to ask to go a-fishing; I got to ask to go in a-swimming--dern'd if I hain't got to ask to do everything. Well, I'd got to talk so nice it wasn't no comfort--I'd got to go up in the attic and rip out awhile, every day, to git a taste in my mouth, or I'd a died, Tom. The widder wouldn't let me smoke; she wouldn't let me yell, she wouldn't let me gape, nor stretch, nor scratch, before folks--" [Then with a spasm of special irritation and injury]--"And dad fetch it, she prayed all the time! I never see such a woman! I HAD to shove, Tom--I just had to. And besides, that school's going to open, and I'd a had to go to it--well, I wouldn't stand THAT, Tom. Looky here, Tom, being rich ain't what it's cracked up to be. It's just worry and worry, and sweat and sweat, and a-wishing you was dead all the time. Now these clothes suits me, and this bar'l suits me, and I ain't ever going to shake 'em any more. Tom, I wouldn't ever got into all this trouble if it hadn't 'a' ben for that money; now you just take my sheer of it along with your'n, and gimme a ten-center sometimes--not many times, becuz I don't give a dern for a thing 'thout it's tollable hard to git--and you go and beg off for me with the widder." "Oh, Huck, you know I can't do that. 'Tain't fair; and besides if you'll try this thing just a while longer you'll come to like it." "Like it! Yes--the way I'd like a hot stove if I was to set on it long enough. No, Tom, I won't be rich, and I won't live in them cussed smothery houses. I like the woods, and the river, and hogsheads, and I'll stick to 'em, too. Blame it all! just as we'd got guns, and a cave, and all just fixed to rob, here this dern foolishness has got to come up and spile it all!" Tom saw his opportunity-- "Lookyhere, Huck, being rich ain't going to keep me back from turning robber." "No! Oh, good-licks; are you in real dead-wood earnest, Tom?" "Just as dead earnest as I'm sitting here. But Huck, we can't let you into the gang if you ain't respectable, you know." Huck's joy was quenched. "Can't let me in, Tom? Didn't you let me go for a pirate?" "Yes, but that's different. A robber is more high-toned than what a pirate is--as a general thing. In most countries they're awful high up in the nobility--dukes and such." "Now, Tom, hain't you always ben friendly to me? You wouldn't shet me out, would you, Tom? You wouldn't do that, now, WOULD you, Tom?" "Huck, I wouldn't want to, and I DON'T want to--but what would people say? Why, they'd say, 'Mph! Tom Sawyer's Gang! pretty low characters in it!' They'd mean you, Huck. You wouldn't like that, and I wouldn't." Huck was silent for some time, engaged in a mental struggle. Finally he said: "Well, I'll go back to the widder for a month and tackle it and see if I can come to stand it, if you'll let me b'long to the gang, Tom." "All right, Huck, it's a whiz! Come along, old chap, and I'll ask the widow to let up on you a little, Huck." "Will you, Tom--now will you? That's good. If she'll let up on some of the roughest things, I'll smoke private and cuss private, and crowd through or bust. When you going to start the gang and turn robbers?" "Oh, right off. We'll get the boys together and have the initiation to-night, maybe." "Have the which?" "Have the initiation." "What's that?" "It's to swear to stand by one another, and never tell the gang's secrets, even if you're chopped all to flinders, and kill anybody and all his family that hurts one of the gang." "That's gay--that's mighty gay, Tom, I tell you." "Well, I bet it is. And all that swearing's got to be done at midnight, in the lonesomest, awfulest place you can find--a ha'nted house is the best, but they're all ripped up now." "Well, midnight's good, anyway, Tom." "Yes, so it is. And you've got to swear on a coffin, and sign it with blood." "Now, that's something LIKE! Why, it's a million times bullier than pirating. I'll stick to the widder till I rot, Tom; and if I git to be a reg'lar ripper of a robber, and everybody talking 'bout it, I reckon she'll be proud she snaked me in out of the wet." CONCLUSION SO endeth this chronicle. It being strictly a history of a BOY, it must stop here; the story could not go much further without becoming the history of a MAN. When one writes a novel about grown people, he knows exactly where to stop--that is, with a marriage; but when he writes of juveniles, he must stop where he best can. Most of the characters that perform in this book still live, and are prosperous and happy. Some day it may seem worth while to take up the story of the younger ones again and see what sort of men and women they turned out to be; therefore it will be wisest not to reveal any of that part of their lives at present. Produced by David Widger. The previous edition was updated by Jose Menendez. THE ADVENTURES OF TOM SAWYER BY MARK TWAIN (Samuel Langhorne Clemens) P R E F A C E MOST of the adventures recorded in this book really occurred; one or two were experiences of my own, the rest those of boys who were schoolmates of mine. Huck Finn is drawn from life; Tom Sawyer also, but not from an individual--he is a combination of the characteristics of three boys whom I knew, and therefore belongs to the composite order of architecture. The odd superstitions touched upon were all prevalent among children and slaves in the West at the period of this story--that is to say, thirty or forty years ago. Although my book is intended mainly for the entertainment of boys and girls, I hope it will not be shunned by men and women on that account, for part of my plan has been to try to pleasantly remind adults of what they once were themselves, and of how they felt and thought and talked, and what queer enterprises they sometimes engaged in. THE AUTHOR. HARTFORD, 1876. T O M S A W Y E R CHAPTER I "TOM!" No answer. "TOM!" No answer. "What's gone with that boy, I wonder? You TOM!" No answer. The old lady pulled her spectacles down and looked over them about the room; then she put them up and looked out under them. She seldom or never looked THROUGH them for so small a thing as a boy; they were her state pair, the pride of her heart, and were built for "style," not service--she could have seen through a pair of stove-lids just as well. She looked perplexed for a moment, and then said, not fiercely, but still loud enough for the furniture to hear: "Well, I lay if I get hold of you I'll--" She did not finish, for by this time she was bending down and punching under the bed with the broom, and so she needed breath to punctuate the punches with. She resurrected nothing but the cat. "I never did see the beat of that boy!" She went to the open door and stood in it and looked out among the tomato vines and "jimpson" weeds that constituted the garden. No Tom. So she lifted up her voice at an angle calculated for distance and shouted: "Y-o-u-u TOM!" There was a slight noise behind her and she turned just in time to seize a small boy by the slack of his roundabout and arrest his flight. "There! I might 'a' thought of that closet. What you been doing in there?" "Nothing." "Nothing! Look at your hands. And look at your mouth. What IS that truck?" "I don't know, aunt." "Well, I know. It's jam--that's what it is. Forty times I've said if you didn't let that jam alone I'd skin you. Hand me that switch." The switch hovered in the air--the peril was desperate-- "My! Look behind you, aunt!" The old lady whirled round, and snatched her skirts out of danger. The lad fled on the instant, scrambled up the high board-fence, and disappeared over it. His aunt Polly stood surprised a moment, and then broke into a gentle laugh. "Hang the boy, can't I never learn anything? Ain't he played me tricks enough like that for me to be looking out for him by this time? But old fools is the biggest fools there is. Can't learn an old dog new tricks, as the saying is. But my goodness, he never plays them alike, two days, and how is a body to know what's coming? He 'pears to know just how long he can torment me before I get my dander up, and he knows if he can make out to put me off for a minute or make me laugh, it's all down again and I can't hit him a lick. I ain't doing my duty by that boy, and that's the Lord's truth, goodness knows. Spare the rod and spile the child, as the Good Book says. I'm a laying up sin and suffering for us both, I know. He's full of the Old Scratch, but laws-a-me! he's my own dead sister's boy, poor thing, and I ain't got the heart to lash him, somehow. Every time I let him off, my conscience does hurt me so, and every time I hit him my old heart most breaks. Well-a-well, man that is born of woman is of few days and full of trouble, as the Scripture says, and I reckon it's so. He'll play hookey this evening, * and [* Southwestern for "afternoon"] I'll just be obleeged to make him work, to-morrow, to punish him. It's mighty hard to make him work Saturdays, when all the boys is having holiday, but he hates work more than he hates anything else, and I've GOT to do some of my duty by him, or I'll be the ruination of the child." Tom did play hookey, and he had a very good time. He got back home barely in season to help Jim, the small colored boy, saw next-day's wood and split the kindlings before supper--at least he was there in time to tell his adventures to Jim while Jim did three-fourths of the work. Tom's younger brother (or rather half-brother) Sid was already through with his part of the work (picking up chips), for he was a quiet boy, and had no adventurous, troublesome ways. While Tom was eating his supper, and stealing sugar as opportunity offered, Aunt Polly asked him questions that were full of guile, and very deep--for she wanted to trap him into damaging revealments. Like many other simple-hearted souls, it was her pet vanity to believe she was endowed with a talent for dark and mysterious diplomacy, and she loved to contemplate her most transparent devices as marvels of low cunning. Said she: "Tom, it was middling warm in school, warn't it?" "Yes'm." "Powerful warm, warn't it?" "Yes'm." "Didn't you want to go in a-swimming, Tom?" A bit of a scare shot through Tom--a touch of uncomfortable suspicion. He searched Aunt Polly's face, but it told him nothing. So he said: "No'm--well, not very much." The old lady reached out her hand and felt Tom's shirt, and said: "But you ain't too warm now, though." And it flattered her to reflect that she had discovered that the shirt was dry without anybody knowing that that was what she had in her mind. But in spite of her, Tom knew where the wind lay, now. So he forestalled what might be the next move: "Some of us pumped on our heads--mine's damp yet. See?" Aunt Polly was vexed to think she had overlooked that bit of circumstantial evidence, and missed a trick. Then she had a new inspiration: "Tom, you didn't have to undo your shirt collar where I sewed it, to pump on your head, did you? Unbutton your jacket!" The trouble vanished out of Tom's face. He opened his jacket. His shirt collar was securely sewed. "Bother! Well, go 'long with you. I'd made sure you'd played hookey and been a-swimming. But I forgive ye, Tom. I reckon you're a kind of a singed cat, as the saying is--better'n you look. THIS time." She was half sorry her sagacity had miscarried, and half glad that Tom had stumbled into obedient conduct for once. But Sidney said: "Well, now, if I didn't think you sewed his collar with white thread, but it's black." "Why, I did sew it with white! Tom!" But Tom did not wait for the rest. As he went out at the door he said: "Siddy, I'll lick you for that." In a safe place Tom examined two large needles which were thrust into the lapels of his jacket, and had thread bound about them--one needle carried white thread and the other black. He said: "She'd never noticed if it hadn't been for Sid. Confound it! sometimes she sews it with white, and sometimes she sews it with black. I wish to geeminy she'd stick to one or t'other--I can't keep the run of 'em. But I bet you I'll lam Sid for that. I'll learn him!" He was not the Model Boy of the village. He knew the model boy very well though--and loathed him. Within two minutes, or even less, he had forgotten all his troubles. Not because his troubles were one whit less heavy and bitter to him than a man's are to a man, but because a new and powerful interest bore them down and drove them out of his mind for the time--just as men's misfortunes are forgotten in the excitement of new enterprises. This new interest was a valued novelty in whistling, which he had just acquired from a negro, and he was suffering to practise it undisturbed. It consisted in a peculiar bird-like turn, a sort of liquid warble, produced by touching the tongue to the roof of the mouth at short intervals in the midst of the music--the reader probably remembers how to do it, if he has ever been a boy. Diligence and attention soon gave him the knack of it, and he strode down the street with his mouth full of harmony and his soul full of gratitude. He felt much as an astronomer feels who has discovered a new planet--no doubt, as far as strong, deep, unalloyed pleasure is concerned, the advantage was with the boy, not the astronomer. The summer evenings were long. It was not dark, yet. Presently Tom checked his whistle. A stranger was before him--a boy a shade larger than himself. A new-comer of any age or either sex was an impressive curiosity in the poor little shabby village of St. Petersburg. This boy was well dressed, too--well dressed on a week-day. This was simply astounding. His cap was a dainty thing, his close-buttoned blue cloth roundabout was new and natty, and so were his pantaloons. He had shoes on--and it was only Friday. He even wore a necktie, a bright bit of ribbon. He had a citified air about him that ate into Tom's vitals. The more Tom stared at the splendid marvel, the higher he turned up his nose at his finery and the shabbier and shabbier his own outfit seemed to him to grow. Neither boy spoke. If one moved, the other moved--but only sidewise, in a circle; they kept face to face and eye to eye all the time. Finally Tom said: "I can lick you!" "I'd like to see you try it." "Well, I can do it." "No you can't, either." "Yes I can." "No you can't." "I can." "You can't." "Can!" "Can't!" An uncomfortable pause. Then Tom said: "What's your name?" "'Tisn't any of your business, maybe." "Well I 'low I'll MAKE it my business." "Well why don't you?" "If you say much, I will." "Much--much--MUCH. There now." "Oh, you think you're mighty smart, DON'T you? I could lick you with one hand tied behind me, if I wanted to." "Well why don't you DO it? You SAY you can do it." "Well I WILL, if you fool with me." "Oh yes--I've seen whole families in the same fix." "Smarty! You think you're SOME, now, DON'T you? Oh, what a hat!" "You can lump that hat if you don't like it. I dare you to knock it off--and anybody that'll take a dare will suck eggs." "You're a liar!" "You're another." "You're a fighting liar and dasn't take it up." "Aw--take a walk!" "Say--if you give me much more of your sass I'll take and bounce a rock off'n your head." "Oh, of COURSE you will." "Well I WILL." "Well why don't you DO it then? What do you keep SAYING you will for? Why don't you DO it? It's because you're afraid." "I AIN'T afraid." "You are." "I ain't." "You are." Another pause, and more eying and sidling around each other. Presently they were shoulder to shoulder. Tom said: "Get away from here!" "Go away yourself!" "I won't." "I won't either." So they stood, each with a foot placed at an angle as a brace, and both shoving with might and main, and glowering at each other with hate. But neither could get an advantage. After struggling till both were hot and flushed, each relaxed his strain with watchful caution, and Tom said: "You're a coward and a pup. I'll tell my big brother on you, and he can thrash you with his little finger, and I'll make him do it, too." "What do I care for your big brother? I've got a brother that's bigger than he is--and what's more, he can throw him over that fence, too." [Both brothers were imaginary.] "That's a lie." "YOUR saying so don't make it so." Tom drew a line in the dust with his big toe, and said: "I dare you to step over that, and I'll lick you till you can't stand up. Anybody that'll take a dare will steal sheep." The new boy stepped over promptly, and said: "Now you said you'd do it, now let's see you do it." "Don't you crowd me now; you better look out." "Well, you SAID you'd do it--why don't you do it?" "By jingo! for two cents I WILL do it." The new boy took two broad coppers out of his pocket and held them out with derision. Tom struck them to the ground. In an instant both boys were rolling and tumbling in the dirt, gripped together like cats; and for the space of a minute they tugged and tore at each other's hair and clothes, punched and scratched each other's nose, and covered themselves with dust and glory. Presently the confusion took form, and through the fog of battle Tom appeared, seated astride the new boy, and pounding him with his fists. "Holler 'nuff!" said he. The boy only struggled to free himself. He was crying--mainly from rage. "Holler 'nuff!"--and the pounding went on. At last the stranger got out a smothered "'Nuff!" and Tom let him up and said: "Now that'll learn you. Better look out who you're fooling with next time." The new boy went off brushing the dust from his clothes, sobbing, snuffling, and occasionally looking back and shaking his head and threatening what he would do to Tom the "next time he caught him out." To which Tom responded with jeers, and started off in high feather, and as soon as his back was turned the new boy snatched up a stone, threw it and hit him between the shoulders and then turned tail and ran like an antelope. Tom chased the traitor home, and thus found out where he lived. He then held a position at the gate for some time, daring the enemy to come outside, but the enemy only made faces at him through the window and declined. At last the enemy's mother appeared, and called Tom a bad, vicious, vulgar child, and ordered him away. So he went away; but he said he "'lowed" to "lay" for that boy. He got home pretty late that night, and when he climbed cautiously in at the window, he uncovered an ambuscade, in the person of his aunt; and when she saw the state his clothes were in her resolution to turn his Saturday holiday into captivity at hard labor became adamantine in its firmness. CHAPTER II SATURDAY morning was come, and all the summer world was bright and fresh, and brimming with life. There was a song in every heart; and if the heart was young the music issued at the lips. There was cheer in every face and a spring in every step. The locust-trees were in bloom and the fragrance of the blossoms filled the air. Cardiff Hill, beyond the village and above it, was green with vegetation and it lay just far enough away to seem a Delectable Land, dreamy, reposeful, and inviting. Tom appeared on the sidewalk with a bucket of whitewash and a long-handled brush. He surveyed the fence, and all gladness left him and a deep melancholy settled down upon his spirit. Thirty yards of board fence nine feet high. Life to him seemed hollow, and existence but a burden. Sighing, he dipped his brush and passed it along the topmost plank; repeated the operation; did it again; compared the insignificant whitewashed streak with the far-reaching continent of unwhitewashed fence, and sat down on a tree-box discouraged. Jim came skipping out at the gate with a tin pail, and singing Buffalo Gals. Bringing water from the town pump had always been hateful work in Tom's eyes, before, but now it did not strike him so. He remembered that there was company at the pump. White, mulatto, and negro boys and girls were always there waiting their turns, resting, trading playthings, quarrelling, fighting, skylarking. And he remembered that although the pump was only a hundred and fifty yards off, Jim never got back with a bucket of water under an hour--and even then somebody generally had to go after him. Tom said: "Say, Jim, I'll fetch the water if you'll whitewash some." Jim shook his head and said: "Can't, Mars Tom. Ole missis, she tole me I got to go an' git dis water an' not stop foolin' roun' wid anybody. She say she spec' Mars Tom gwine to ax me to whitewash, an' so she tole me go 'long an' 'tend to my own business--she 'lowed SHE'D 'tend to de whitewashin'." "Oh, never you mind what she said, Jim. That's the way she always talks. Gimme the bucket--I won't be gone only a a minute. SHE won't ever know." "Oh, I dasn't, Mars Tom. Ole missis she'd take an' tar de head off'n me. 'Deed she would." "SHE! She never licks anybody--whacks 'em over the head with her thimble--and who cares for that, I'd like to know. She talks awful, but talk don't hurt--anyways it don't if she don't cry. Jim, I'll give you a marvel. I'll give you a white alley!" Jim began to waver. "White alley, Jim! And it's a bully taw." "My! Dat's a mighty gay marvel, I tell you! But Mars Tom I's powerful 'fraid ole missis--" "And besides, if you will I'll show you my sore toe." Jim was only human--this attraction was too much for him. He put down his pail, took the white alley, and bent over the toe with absorbing interest while the bandage was being unwound. In another moment he was flying down the street with his pail and a tingling rear, Tom was whitewashing with vigor, and Aunt Polly was retiring from the field with a slipper in her hand and triumph in her eye. But Tom's energy did not last. He began to think of the fun he had planned for this day, and his sorrows multiplied. Soon the free boys would come tripping along on all sorts of delicious expeditions, and they would make a world of fun of him for having to work--the very thought of it burnt him like fire. He got out his worldly wealth and examined it--bits of toys, marbles, and trash; enough to buy an exchange of WORK, maybe, but not half enough to buy so much as half an hour of pure freedom. So he returned his straitened means to his pocket, and gave up the idea of trying to buy the boys. At this dark and hopeless moment an inspiration burst upon him! Nothing less than a great, magnificent inspiration. He took up his brush and went tranquilly to work. Ben Rogers hove in sight presently--the very boy, of all boys, whose ridicule he had been dreading. Ben's gait was the hop-skip-and-jump--proof enough that his heart was light and his anticipations high. He was eating an apple, and giving a long, melodious whoop, at intervals, followed by a deep-toned ding-dong-dong, ding-dong-dong, for he was personating a steamboat. As he drew near, he slackened speed, took the middle of the street, leaned far over to starboard and rounded to ponderously and with laborious pomp and circumstance--for he was personating the Big Missouri, and considered himself to be drawing nine feet of water. He was boat and captain and engine-bells combined, so he had to imagine himself standing on his own hurricane-deck giving the orders and executing them: "Stop her, sir! Ting-a-ling-ling!" The headway ran almost out, and he drew up slowly toward the sidewalk. "Ship up to back! Ting-a-ling-ling!" His arms straightened and stiffened down his sides. "Set her back on the stabboard! Ting-a-ling-ling! Chow! ch-chow-wow! Chow!" His right hand, meantime, describing stately circles--for it was representing a forty-foot wheel. "Let her go back on the labboard! Ting-a-lingling! Chow-ch-chow-chow!" The left hand began to describe circles. "Stop the stabboard! Ting-a-ling-ling! Stop the labboard! Come ahead on the stabboard! Stop her! Let your outside turn over slow! Ting-a-ling-ling! Chow-ow-ow! Get out that head-line! LIVELY now! Come--out with your spring-line--what're you about there! Take a turn round that stump with the bight of it! Stand by that stage, now--let her go! Done with the engines, sir! Ting-a-ling-ling! SH'T! S'H'T! SH'T!" (trying the gauge-cocks). Tom went on whitewashing--paid no attention to the steamboat. Ben stared a moment and then said: "Hi-YI! YOU'RE up a stump, ain't you!" No answer. Tom surveyed his last touch with the eye of an artist, then he gave his brush another gentle sweep and surveyed the result, as before. Ben ranged up alongside of him. Tom's mouth watered for the apple, but he stuck to his work. Ben said: "Hello, old chap, you got to work, hey?" Tom wheeled suddenly and said: "Why, it's you, Ben! I warn't noticing." "Say--I'm going in a-swimming, I am. Don't you wish you could? But of course you'd druther WORK--wouldn't you? Course you would!" Tom contemplated the boy a bit, and said: "What do you call work?" "Why, ain't THAT work?" Tom resumed his whitewashing, and answered carelessly: "Well, maybe it is, and maybe it ain't. All I know, is, it suits Tom Sawyer." "Oh come, now, you don't mean to let on that you LIKE it?" The brush continued to move. "Like it? Well, I don't see why I oughtn't to like it. Does a boy get a chance to whitewash a fence every day?" That put the thing in a new light. Ben stopped nibbling his apple. Tom swept his brush daintily back and forth--stepped back to note the effect--added a touch here and there--criticised the effect again--Ben watching every move and getting more and more interested, more and more absorbed. Presently he said: "Say, Tom, let ME whitewash a little." Tom considered, was about to consent; but he altered his mind: "No--no--I reckon it wouldn't hardly do, Ben. You see, Aunt Polly's awful particular about this fence--right here on the street, you know --but if it was the back fence I wouldn't mind and SHE wouldn't. Yes, she's awful particular about this fence; it's got to be done very careful; I reckon there ain't one boy in a thousand, maybe two thousand, that can do it the way it's got to be done." "No--is that so? Oh come, now--lemme just try. Only just a little--I'd let YOU, if you was me, Tom." "Ben, I'd like to, honest injun; but Aunt Polly--well, Jim wanted to do it, but she wouldn't let him; Sid wanted to do it, and she wouldn't let Sid. Now don't you see how I'm fixed? If you was to tackle this fence and anything was to happen to it--" "Oh, shucks, I'll be just as careful. Now lemme try. Say--I'll give you the core of my apple." "Well, here--No, Ben, now don't. I'm afeard--" "I'll give you ALL of it!" Tom gave up the brush with reluctance in his face, but alacrity in his heart. And while the late steamer Big Missouri worked and sweated in the sun, the retired artist sat on a barrel in the shade close by, dangled his legs, munched his apple, and planned the slaughter of more innocents. There was no lack of material; boys happened along every little while; they came to jeer, but remained to whitewash. By the time Ben was fagged out, Tom had traded the next chance to Billy Fisher for a kite, in good repair; and when he played out, Johnny Miller bought in for a dead rat and a string to swing it with--and so on, and so on, hour after hour. And when the middle of the afternoon came, from being a poor poverty-stricken boy in the morning, Tom was literally rolling in wealth. He had besides the things before mentioned, twelve marbles, part of a jews-harp, a piece of blue bottle-glass to look through, a spool cannon, a key that wouldn't unlock anything, a fragment of chalk, a glass stopper of a decanter, a tin soldier, a couple of tadpoles, six fire-crackers, a kitten with only one eye, a brass doorknob, a dog-collar--but no dog--the handle of a knife, four pieces of orange-peel, and a dilapidated old window sash. He had had a nice, good, idle time all the while--plenty of company --and the fence had three coats of whitewash on it! If he hadn't run out of whitewash he would have bankrupted every boy in the village. Tom said to himself that it was not such a hollow world, after all. He had discovered a great law of human action, without knowing it--namely, that in order to make a man or a boy covet a thing, it is only necessary to make the thing difficult to attain. If he had been a great and wise philosopher, like the writer of this book, he would now have comprehended that Work consists of whatever a body is OBLIGED to do, and that Play consists of whatever a body is not obliged to do. And this would help him to understand why constructing artificial flowers or performing on a tread-mill is work, while rolling ten-pins or climbing Mont Blanc is only amusement. There are wealthy gentlemen in England who drive four-horse passenger-coaches twenty or thirty miles on a daily line, in the summer, because the privilege costs them considerable money; but if they were offered wages for the service, that would turn it into work and then they would resign. The boy mused awhile over the substantial change which had taken place in his worldly circumstances, and then wended toward headquarters to report. CHAPTER III TOM presented himself before Aunt Polly, who was sitting by an open window in a pleasant rearward apartment, which was bedroom, breakfast-room, dining-room, and library, combined. The balmy summer air, the restful quiet, the odor of the flowers, and the drowsing murmur of the bees had had their effect, and she was nodding over her knitting --for she had no company but the cat, and it was asleep in her lap. Her spectacles were propped up on her gray head for safety. She had thought that of course Tom had deserted long ago, and she wondered at seeing him place himself in her power again in this intrepid way. He said: "Mayn't I go and play now, aunt?" "What, a'ready? How much have you done?" "It's all done, aunt." "Tom, don't lie to me--I can't bear it." "I ain't, aunt; it IS all done." Aunt Polly placed small trust in such evidence. She went out to see for herself; and she would have been content to find twenty per cent. of Tom's statement true. When she found the entire fence whitewashed, and not only whitewashed but elaborately coated and recoated, and even a streak added to the ground, her astonishment was almost unspeakable. She said: "Well, I never! There's no getting round it, you can work when you're a mind to, Tom." And then she diluted the compliment by adding, "But it's powerful seldom you're a mind to, I'm bound to say. Well, go 'long and play; but mind you get back some time in a week, or I'll tan you." She was so overcome by the splendor of his achievement that she took him into the closet and selected a choice apple and delivered it to him, along with an improving lecture upon the added value and flavor a treat took to itself when it came without sin through virtuous effort. And while she closed with a happy Scriptural flourish, he "hooked" a doughnut. Then he skipped out, and saw Sid just starting up the outside stairway that led to the back rooms on the second floor. Clods were handy and the air was full of them in a twinkling. They raged around Sid like a hail-storm; and before Aunt Polly could collect her surprised faculties and sally to the rescue, six or seven clods had taken personal effect, and Tom was over the fence and gone. There was a gate, but as a general thing he was too crowded for time to make use of it. His soul was at peace, now that he had settled with Sid for calling attention to his black thread and getting him into trouble. Tom skirted the block, and came round into a muddy alley that led by the back of his aunt's cow-stable. He presently got safely beyond the reach of capture and punishment, and hastened toward the public square of the village, where two "military" companies of boys had met for conflict, according to previous appointment. Tom was General of one of these armies, Joe Harper (a bosom friend) General of the other. These two great commanders did not condescend to fight in person--that being better suited to the still smaller fry--but sat together on an eminence and conducted the field operations by orders delivered through aides-de-camp. Tom's army won a great victory, after a long and hard-fought battle. Then the dead were counted, prisoners exchanged, the terms of the next disagreement agreed upon, and the day for the necessary battle appointed; after which the armies fell into line and marched away, and Tom turned homeward alone. As he was passing by the house where Jeff Thatcher lived, he saw a new girl in the garden--a lovely little blue-eyed creature with yellow hair plaited into two long-tails, white summer frock and embroidered pantalettes. The fresh-crowned hero fell without firing a shot. A certain Amy Lawrence vanished out of his heart and left not even a memory of herself behind. He had thought he loved her to distraction; he had regarded his passion as adoration; and behold it was only a poor little evanescent partiality. He had been months winning her; she had confessed hardly a week ago; he had been the happiest and the proudest boy in the world only seven short days, and here in one instant of time she had gone out of his heart like a casual stranger whose visit is done. He worshipped this new angel with furtive eye, till he saw that she had discovered him; then he pretended he did not know she was present, and began to "show off" in all sorts of absurd boyish ways, in order to win her admiration. He kept up this grotesque foolishness for some time; but by-and-by, while he was in the midst of some dangerous gymnastic performances, he glanced aside and saw that the little girl was wending her way toward the house. Tom came up to the fence and leaned on it, grieving, and hoping she would tarry yet awhile longer. She halted a moment on the steps and then moved toward the door. Tom heaved a great sigh as she put her foot on the threshold. But his face lit up, right away, for she tossed a pansy over the fence a moment before she disappeared. The boy ran around and stopped within a foot or two of the flower, and then shaded his eyes with his hand and began to look down street as if he had discovered something of interest going on in that direction. Presently he picked up a straw and began trying to balance it on his nose, with his head tilted far back; and as he moved from side to side, in his efforts, he edged nearer and nearer toward the pansy; finally his bare foot rested upon it, his pliant toes closed upon it, and he hopped away with the treasure and disappeared round the corner. But only for a minute--only while he could button the flower inside his jacket, next his heart--or next his stomach, possibly, for he was not much posted in anatomy, and not hypercritical, anyway. He returned, now, and hung about the fence till nightfall, "showing off," as before; but the girl never exhibited herself again, though Tom comforted himself a little with the hope that she had been near some window, meantime, and been aware of his attentions. Finally he strode home reluctantly, with his poor head full of visions. All through supper his spirits were so high that his aunt wondered "what had got into the child." He took a good scolding about clodding Sid, and did not seem to mind it in the least. He tried to steal sugar under his aunt's very nose, and got his knuckles rapped for it. He said: "Aunt, you don't whack Sid when he takes it." "Well, Sid don't torment a body the way you do. You'd be always into that sugar if I warn't watching you." Presently she stepped into the kitchen, and Sid, happy in his immunity, reached for the sugar-bowl--a sort of glorying over Tom which was wellnigh unbearable. But Sid's fingers slipped and the bowl dropped and broke. Tom was in ecstasies. In such ecstasies that he even controlled his tongue and was silent. He said to himself that he would not speak a word, even when his aunt came in, but would sit perfectly still till she asked who did the mischief; and then he would tell, and there would be nothing so good in the world as to see that pet model "catch it." He was so brimful of exultation that he could hardly hold himself when the old lady came back and stood above the wreck discharging lightnings of wrath from over her spectacles. He said to himself, "Now it's coming!" And the next instant he was sprawling on the floor! The potent palm was uplifted to strike again when Tom cried out: "Hold on, now, what 'er you belting ME for?--Sid broke it!" Aunt Polly paused, perplexed, and Tom looked for healing pity. But when she got her tongue again, she only said: "Umf! Well, you didn't get a lick amiss, I reckon. You been into some other audacious mischief when I wasn't around, like enough." Then her conscience reproached her, and she yearned to say something kind and loving; but she judged that this would be construed into a confession that she had been in the wrong, and discipline forbade that. So she kept silence, and went about her affairs with a troubled heart. Tom sulked in a corner and exalted his woes. He knew that in her heart his aunt was on her knees to him, and he was morosely gratified by the consciousness of it. He would hang out no signals, he would take notice of none. He knew that a yearning glance fell upon him, now and then, through a film of tears, but he refused recognition of it. He pictured himself lying sick unto death and his aunt bending over him beseeching one little forgiving word, but he would turn his face to the wall, and die with that word unsaid. Ah, how would she feel then? And he pictured himself brought home from the river, dead, with his curls all wet, and his sore heart at rest. How she would throw herself upon him, and how her tears would fall like rain, and her lips pray God to give her back her boy and she would never, never abuse him any more! But he would lie there cold and white and make no sign--a poor little sufferer, whose griefs were at an end. He so worked upon his feelings with the pathos of these dreams, that he had to keep swallowing, he was so like to choke; and his eyes swam in a blur of water, which overflowed when he winked, and ran down and trickled from the end of his nose. And such a luxury to him was this petting of his sorrows, that he could not bear to have any worldly cheeriness or any grating delight intrude upon it; it was too sacred for such contact; and so, presently, when his cousin Mary danced in, all alive with the joy of seeing home again after an age-long visit of one week to the country, he got up and moved in clouds and darkness out at one door as she brought song and sunshine in at the other. He wandered far from the accustomed haunts of boys, and sought desolate places that were in harmony with his spirit. A log raft in the river invited him, and he seated himself on its outer edge and contemplated the dreary vastness of the stream, wishing, the while, that he could only be drowned, all at once and unconsciously, without undergoing the uncomfortable routine devised by nature. Then he thought of his flower. He got it out, rumpled and wilted, and it mightily increased his dismal felicity. He wondered if she would pity him if she knew? Would she cry, and wish that she had a right to put her arms around his neck and comfort him? Or would she turn coldly away like all the hollow world? This picture brought such an agony of pleasurable suffering that he worked it over and over again in his mind and set it up in new and varied lights, till he wore it threadbare. At last he rose up sighing and departed in the darkness. About half-past nine or ten o'clock he came along the deserted street to where the Adored Unknown lived; he paused a moment; no sound fell upon his listening ear; a candle was casting a dull glow upon the curtain of a second-story window. Was the sacred presence there? He climbed the fence, threaded his stealthy way through the plants, till he stood under that window; he looked up at it long, and with emotion; then he laid him down on the ground under it, disposing himself upon his back, with his hands clasped upon his breast and holding his poor wilted flower. And thus he would die--out in the cold world, with no shelter over his homeless head, no friendly hand to wipe the death-damps from his brow, no loving face to bend pityingly over him when the great agony came. And thus SHE would see him when she looked out upon the glad morning, and oh! would she drop one little tear upon his poor, lifeless form, would she heave one little sigh to see a bright young life so rudely blighted, so untimely cut down? The window went up, a maid-servant's discordant voice profaned the holy calm, and a deluge of water drenched the prone martyr's remains! The strangling hero sprang up with a relieving snort. There was a whiz as of a missile in the air, mingled with the murmur of a curse, a sound as of shivering glass followed, and a small, vague form went over the fence and shot away in the gloom. Not long after, as Tom, all undressed for bed, was surveying his drenched garments by the light of a tallow dip, Sid woke up; but if he had any dim idea of making any "references to allusions," he thought better of it and held his peace, for there was danger in Tom's eye. Tom turned in without the added vexation of prayers, and Sid made mental note of the omission. CHAPTER IV THE sun rose upon a tranquil world, and beamed down upon the peaceful village like a benediction. Breakfast over, Aunt Polly had family worship: it began with a prayer built from the ground up of solid courses of Scriptural quotations, welded together with a thin mortar of originality; and from the summit of this she delivered a grim chapter of the Mosaic Law, as from Sinai. Then Tom girded up his loins, so to speak, and went to work to "get his verses." Sid had learned his lesson days before. Tom bent all his energies to the memorizing of five verses, and he chose part of the Sermon on the Mount, because he could find no verses that were shorter. At the end of half an hour Tom had a vague general idea of his lesson, but no more, for his mind was traversing the whole field of human thought, and his hands were busy with distracting recreations. Mary took his book to hear him recite, and he tried to find his way through the fog: "Blessed are the--a--a--" "Poor"-- "Yes--poor; blessed are the poor--a--a--" "In spirit--" "In spirit; blessed are the poor in spirit, for they--they--" "THEIRS--" "For THEIRS. Blessed are the poor in spirit, for theirs is the kingdom of heaven. Blessed are they that mourn, for they--they--" "Sh--" "For they--a--" "S, H, A--" "For they S, H--Oh, I don't know what it is!" "SHALL!" "Oh, SHALL! for they shall--for they shall--a--a--shall mourn--a--a-- blessed are they that shall--they that--a--they that shall mourn, for they shall--a--shall WHAT? Why don't you tell me, Mary?--what do you want to be so mean for?" "Oh, Tom, you poor thick-headed thing, I'm not teasing you. I wouldn't do that. You must go and learn it again. Don't you be discouraged, Tom, you'll manage it--and if you do, I'll give you something ever so nice. There, now, that's a good boy." "All right! What is it, Mary, tell me what it is." "Never you mind, Tom. You know if I say it's nice, it is nice." "You bet you that's so, Mary. All right, I'll tackle it again." And he did "tackle it again"--and under the double pressure of curiosity and prospective gain he did it with such spirit that he accomplished a shining success. Mary gave him a brand-new "Barlow" knife worth twelve and a half cents; and the convulsion of delight that swept his system shook him to his foundations. True, the knife would not cut anything, but it was a "sure-enough" Barlow, and there was inconceivable grandeur in that--though where the Western boys ever got the idea that such a weapon could possibly be counterfeited to its injury is an imposing mystery and will always remain so, perhaps. Tom contrived to scarify the cupboard with it, and was arranging to begin on the bureau, when he was called off to dress for Sunday-school. Mary gave him a tin basin of water and a piece of soap, and he went outside the door and set the basin on a little bench there; then he dipped the soap in the water and laid it down; turned up his sleeves; poured out the water on the ground, gently, and then entered the kitchen and began to wipe his face diligently on the towel behind the door. But Mary removed the towel and said: "Now ain't you ashamed, Tom. You mustn't be so bad. Water won't hurt you." Tom was a trifle disconcerted. The basin was refilled, and this time he stood over it a little while, gathering resolution; took in a big breath and began. When he entered the kitchen presently, with both eyes shut and groping for the towel with his hands, an honorable testimony of suds and water was dripping from his face. But when he emerged from the towel, he was not yet satisfactory, for the clean territory stopped short at his chin and his jaws, like a mask; below and beyond this line there was a dark expanse of unirrigated soil that spread downward in front and backward around his neck. Mary took him in hand, and when she was done with him he was a man and a brother, without distinction of color, and his saturated hair was neatly brushed, and its short curls wrought into a dainty and symmetrical general effect. [He privately smoothed out the curls, with labor and difficulty, and plastered his hair close down to his head; for he held curls to be effeminate, and his own filled his life with bitterness.] Then Mary got out a suit of his clothing that had been used only on Sundays during two years--they were simply called his "other clothes"--and so by that we know the size of his wardrobe. The girl "put him to rights" after he had dressed himself; she buttoned his neat roundabout up to his chin, turned his vast shirt collar down over his shoulders, brushed him off and crowned him with his speckled straw hat. He now looked exceedingly improved and uncomfortable. He was fully as uncomfortable as he looked; for there was a restraint about whole clothes and cleanliness that galled him. He hoped that Mary would forget his shoes, but the hope was blighted; she coated them thoroughly with tallow, as was the custom, and brought them out. He lost his temper and said he was always being made to do everything he didn't want to do. But Mary said, persuasively: "Please, Tom--that's a good boy." So he got into the shoes snarling. Mary was soon ready, and the three children set out for Sunday-school--a place that Tom hated with his whole heart; but Sid and Mary were fond of it. Sabbath-school hours were from nine to half-past ten; and then church service. Two of the children always remained for the sermon voluntarily, and the other always remained too--for stronger reasons. The church's high-backed, uncushioned pews would seat about three hundred persons; the edifice was but a small, plain affair, with a sort of pine board tree-box on top of it for a steeple. At the door Tom dropped back a step and accosted a Sunday-dressed comrade: "Say, Billy, got a yaller ticket?" "Yes." "What'll you take for her?" "What'll you give?" "Piece of lickrish and a fish-hook." "Less see 'em." Tom exhibited. They were satisfactory, and the property changed hands. Then Tom traded a couple of white alleys for three red tickets, and some small trifle or other for a couple of blue ones. He waylaid other boys as they came, and went on buying tickets of various colors ten or fifteen minutes longer. He entered the church, now, with a swarm of clean and noisy boys and girls, proceeded to his seat and started a quarrel with the first boy that came handy. The teacher, a grave, elderly man, interfered; then turned his back a moment and Tom pulled a boy's hair in the next bench, and was absorbed in his book when the boy turned around; stuck a pin in another boy, presently, in order to hear him say "Ouch!" and got a new reprimand from his teacher. Tom's whole class were of a pattern--restless, noisy, and troublesome. When they came to recite their lessons, not one of them knew his verses perfectly, but had to be prompted all along. However, they worried through, and each got his reward--in small blue tickets, each with a passage of Scripture on it; each blue ticket was pay for two verses of the recitation. Ten blue tickets equalled a red one, and could be exchanged for it; ten red tickets equalled a yellow one; for ten yellow tickets the superintendent gave a very plainly bound Bible (worth forty cents in those easy times) to the pupil. How many of my readers would have the industry and application to memorize two thousand verses, even for a Dore Bible? And yet Mary had acquired two Bibles in this way--it was the patient work of two years--and a boy of German parentage had won four or five. He once recited three thousand verses without stopping; but the strain upon his mental faculties was too great, and he was little better than an idiot from that day forth--a grievous misfortune for the school, for on great occasions, before company, the superintendent (as Tom expressed it) had always made this boy come out and "spread himself." Only the older pupils managed to keep their tickets and stick to their tedious work long enough to get a Bible, and so the delivery of one of these prizes was a rare and noteworthy circumstance; the successful pupil was so great and conspicuous for that day that on the spot every scholar's heart was fired with a fresh ambition that often lasted a couple of weeks. It is possible that Tom's mental stomach had never really hungered for one of those prizes, but unquestionably his entire being had for many a day longed for the glory and the eclat that came with it. In due course the superintendent stood up in front of the pulpit, with a closed hymn-book in his hand and his forefinger inserted between its leaves, and commanded attention. When a Sunday-school superintendent makes his customary little speech, a hymn-book in the hand is as necessary as is the inevitable sheet of music in the hand of a singer who stands forward on the platform and sings a solo at a concert --though why, is a mystery: for neither the hymn-book nor the sheet of music is ever referred to by the sufferer. This superintendent was a slim creature of thirty-five, with a sandy goatee and short sandy hair; he wore a stiff standing-collar whose upper edge almost reached his ears and whose sharp points curved forward abreast the corners of his mouth--a fence that compelled a straight lookout ahead, and a turning of the whole body when a side view was required; his chin was propped on a spreading cravat which was as broad and as long as a bank-note, and had fringed ends; his boot toes were turned sharply up, in the fashion of the day, like sleigh-runners--an effect patiently and laboriously produced by the young men by sitting with their toes pressed against a wall for hours together. Mr. Walters was very earnest of mien, and very sincere and honest at heart; and he held sacred things and places in such reverence, and so separated them from worldly matters, that unconsciously to himself his Sunday-school voice had acquired a peculiar intonation which was wholly absent on week-days. He began after this fashion: "Now, children, I want you all to sit up just as straight and pretty as you can and give me all your attention for a minute or two. There --that is it. That is the way good little boys and girls should do. I see one little girl who is looking out of the window--I am afraid she thinks I am out there somewhere--perhaps up in one of the trees making a speech to the little birds. [Applausive titter.] I want to tell you how good it makes me feel to see so many bright, clean little faces assembled in a place like this, learning to do right and be good." And so forth and so on. It is not necessary to set down the rest of the oration. It was of a pattern which does not vary, and so it is familiar to us all. The latter third of the speech was marred by the resumption of fights and other recreations among certain of the bad boys, and by fidgetings and whisperings that extended far and wide, washing even to the bases of isolated and incorruptible rocks like Sid and Mary. But now every sound ceased suddenly, with the subsidence of Mr. Walters' voice, and the conclusion of the speech was received with a burst of silent gratitude. A good part of the whispering had been occasioned by an event which was more or less rare--the entrance of visitors: lawyer Thatcher, accompanied by a very feeble and aged man; a fine, portly, middle-aged gentleman with iron-gray hair; and a dignified lady who was doubtless the latter's wife. The lady was leading a child. Tom had been restless and full of chafings and repinings; conscience-smitten, too--he could not meet Amy Lawrence's eye, he could not brook her loving gaze. But when he saw this small new-comer his soul was all ablaze with bliss in a moment. The next moment he was "showing off" with all his might --cuffing boys, pulling hair, making faces--in a word, using every art that seemed likely to fascinate a girl and win her applause. His exaltation had but one alloy--the memory of his humiliation in this angel's garden--and that record in sand was fast washing out, under the waves of happiness that were sweeping over it now. The visitors were given the highest seat of honor, and as soon as Mr. Walters' speech was finished, he introduced them to the school. The middle-aged man turned out to be a prodigious personage--no less a one than the county judge--altogether the most august creation these children had ever looked upon--and they wondered what kind of material he was made of--and they half wanted to hear him roar, and were half afraid he might, too. He was from Constantinople, twelve miles away--so he had travelled, and seen the world--these very eyes had looked upon the county court-house--which was said to have a tin roof. The awe which these reflections inspired was attested by the impressive silence and the ranks of staring eyes. This was the great Judge Thatcher, brother of their own lawyer. Jeff Thatcher immediately went forward, to be familiar with the great man and be envied by the school. It would have been music to his soul to hear the whisperings: "Look at him, Jim! He's a going up there. Say--look! he's a going to shake hands with him--he IS shaking hands with him! By jings, don't you wish you was Jeff?" Mr. Walters fell to "showing off," with all sorts of official bustlings and activities, giving orders, delivering judgments, discharging directions here, there, everywhere that he could find a target. The librarian "showed off"--running hither and thither with his arms full of books and making a deal of the splutter and fuss that insect authority delights in. The young lady teachers "showed off" --bending sweetly over pupils that were lately being boxed, lifting pretty warning fingers at bad little boys and patting good ones lovingly. The young gentlemen teachers "showed off" with small scoldings and other little displays of authority and fine attention to discipline--and most of the teachers, of both sexes, found business up at the library, by the pulpit; and it was business that frequently had to be done over again two or three times (with much seeming vexation). The little girls "showed off" in various ways, and the little boys "showed off" with such diligence that the air was thick with paper wads and the murmur of scufflings. And above it all the great man sat and beamed a majestic judicial smile upon all the house, and warmed himself in the sun of his own grandeur--for he was "showing off," too. There was only one thing wanting to make Mr. Walters' ecstasy complete, and that was a chance to deliver a Bible-prize and exhibit a prodigy. Several pupils had a few yellow tickets, but none had enough --he had been around among the star pupils inquiring. He would have given worlds, now, to have that German lad back again with a sound mind. And now at this moment, when hope was dead, Tom Sawyer came forward with nine yellow tickets, nine red tickets, and ten blue ones, and demanded a Bible. This was a thunderbolt out of a clear sky. Walters was not expecting an application from this source for the next ten years. But there was no getting around it--here were the certified checks, and they were good for their face. Tom was therefore elevated to a place with the Judge and the other elect, and the great news was announced from headquarters. It was the most stunning surprise of the decade, and so profound was the sensation that it lifted the new hero up to the judicial one's altitude, and the school had two marvels to gaze upon in place of one. The boys were all eaten up with envy--but those that suffered the bitterest pangs were those who perceived too late that they themselves had contributed to this hated splendor by trading tickets to Tom for the wealth he had amassed in selling whitewashing privileges. These despised themselves, as being the dupes of a wily fraud, a guileful snake in the grass. The prize was delivered to Tom with as much effusion as the superintendent could pump up under the circumstances; but it lacked somewhat of the true gush, for the poor fellow's instinct taught him that there was a mystery here that could not well bear the light, perhaps; it was simply preposterous that this boy had warehoused two thousand sheaves of Scriptural wisdom on his premises--a dozen would strain his capacity, without a doubt. Amy Lawrence was proud and glad, and she tried to make Tom see it in her face--but he wouldn't look. She wondered; then she was just a grain troubled; next a dim suspicion came and went--came again; she watched; a furtive glance told her worlds--and then her heart broke, and she was jealous, and angry, and the tears came and she hated everybody. Tom most of all (she thought). Tom was introduced to the Judge; but his tongue was tied, his breath would hardly come, his heart quaked--partly because of the awful greatness of the man, but mainly because he was her parent. He would have liked to fall down and worship him, if it were in the dark. The Judge put his hand on Tom's head and called him a fine little man, and asked him what his name was. The boy stammered, gasped, and got it out: "Tom." "Oh, no, not Tom--it is--" "Thomas." "Ah, that's it. I thought there was more to it, maybe. That's very well. But you've another one I daresay, and you'll tell it to me, won't you?" "Tell the gentleman your other name, Thomas," said Walters, "and say sir. You mustn't forget your manners." "Thomas Sawyer--sir." "That's it! That's a good boy. Fine boy. Fine, manly little fellow. Two thousand verses is a great many--very, very great many. And you never can be sorry for the trouble you took to learn them; for knowledge is worth more than anything there is in the world; it's what makes great men and good men; you'll be a great man and a good man yourself, some day, Thomas, and then you'll look back and say, It's all owing to the precious Sunday-school privileges of my boyhood--it's all owing to my dear teachers that taught me to learn--it's all owing to the good superintendent, who encouraged me, and watched over me, and gave me a beautiful Bible--a splendid elegant Bible--to keep and have it all for my own, always--it's all owing to right bringing up! That is what you will say, Thomas--and you wouldn't take any money for those two thousand verses--no indeed you wouldn't. And now you wouldn't mind telling me and this lady some of the things you've learned--no, I know you wouldn't--for we are proud of little boys that learn. Now, no doubt you know the names of all the twelve disciples. Won't you tell us the names of the first two that were appointed?" Tom was tugging at a button-hole and looking sheepish. He blushed, now, and his eyes fell. Mr. Walters' heart sank within him. He said to himself, it is not possible that the boy can answer the simplest question--why DID the Judge ask him? Yet he felt obliged to speak up and say: "Answer the gentleman, Thomas--don't be afraid." Tom still hung fire. "Now I know you'll tell me," said the lady. "The names of the first two disciples were--" "DAVID AND GOLIAH!" Let us draw the curtain of charity over the rest of the scene. CHAPTER V ABOUT half-past ten the cracked bell of the small church began to ring, and presently the people began to gather for the morning sermon. The Sunday-school children distributed themselves about the house and occupied pews with their parents, so as to be under supervision. Aunt Polly came, and Tom and Sid and Mary sat with her--Tom being placed next the aisle, in order that he might be as far away from the open window and the seductive outside summer scenes as possible. The crowd filed up the aisles: the aged and needy postmaster, who had seen better days; the mayor and his wife--for they had a mayor there, among other unnecessaries; the justice of the peace; the widow Douglass, fair, smart, and forty, a generous, good-hearted soul and well-to-do, her hill mansion the only palace in the town, and the most hospitable and much the most lavish in the matter of festivities that St. Petersburg could boast; the bent and venerable Major and Mrs. Ward; lawyer Riverson, the new notable from a distance; next the belle of the village, followed by a troop of lawn-clad and ribbon-decked young heart-breakers; then all the young clerks in town in a body--for they had stood in the vestibule sucking their cane-heads, a circling wall of oiled and simpering admirers, till the last girl had run their gantlet; and last of all came the Model Boy, Willie Mufferson, taking as heedful care of his mother as if she were cut glass. He always brought his mother to church, and was the pride of all the matrons. The boys all hated him, he was so good. And besides, he had been "thrown up to them" so much. His white handkerchief was hanging out of his pocket behind, as usual on Sundays--accidentally. Tom had no handkerchief, and he looked upon boys who had as snobs. The congregation being fully assembled, now, the bell rang once more, to warn laggards and stragglers, and then a solemn hush fell upon the church which was only broken by the tittering and whispering of the choir in the gallery. The choir always tittered and whispered all through service. There was once a church choir that was not ill-bred, but I have forgotten where it was, now. It was a great many years ago, and I can scarcely remember anything about it, but I think it was in some foreign country. The minister gave out the hymn, and read it through with a relish, in a peculiar style which was much admired in that part of the country. His voice began on a medium key and climbed steadily up till it reached a certain point, where it bore with strong emphasis upon the topmost word and then plunged down as if from a spring-board: Shall I be car-ri-ed toe the skies, on flow'ry BEDS of ease, Whilst others fight to win the prize, and sail thro' BLOODY seas? He was regarded as a wonderful reader. At church "sociables" he was always called upon to read poetry; and when he was through, the ladies would lift up their hands and let them fall helplessly in their laps, and "wall" their eyes, and shake their heads, as much as to say, "Words cannot express it; it is too beautiful, TOO beautiful for this mortal earth." After the hymn had been sung, the Rev. Mr. Sprague turned himself into a bulletin-board, and read off "notices" of meetings and societies and things till it seemed that the list would stretch out to the crack of doom--a queer custom which is still kept up in America, even in cities, away here in this age of abundant newspapers. Often, the less there is to justify a traditional custom, the harder it is to get rid of it. And now the minister prayed. A good, generous prayer it was, and went into details: it pleaded for the church, and the little children of the church; for the other churches of the village; for the village itself; for the county; for the State; for the State officers; for the United States; for the churches of the United States; for Congress; for the President; for the officers of the Government; for poor sailors, tossed by stormy seas; for the oppressed millions groaning under the heel of European monarchies and Oriental despotisms; for such as have the light and the good tidings, and yet have not eyes to see nor ears to hear withal; for the heathen in the far islands of the sea; and closed with a supplication that the words he was about to speak might find grace and favor, and be as seed sown in fertile ground, yielding in time a grateful harvest of good. Amen. There was a rustling of dresses, and the standing congregation sat down. The boy whose history this book relates did not enjoy the prayer, he only endured it--if he even did that much. He was restive all through it; he kept tally of the details of the prayer, unconsciously --for he was not listening, but he knew the ground of old, and the clergyman's regular route over it--and when a little trifle of new matter was interlarded, his ear detected it and his whole nature resented it; he considered additions unfair, and scoundrelly. In the midst of the prayer a fly had lit on the back of the pew in front of him and tortured his spirit by calmly rubbing its hands together, embracing its head with its arms, and polishing it so vigorously that it seemed to almost part company with the body, and the slender thread of a neck was exposed to view; scraping its wings with its hind legs and smoothing them to its body as if they had been coat-tails; going through its whole toilet as tranquilly as if it knew it was perfectly safe. As indeed it was; for as sorely as Tom's hands itched to grab for it they did not dare--he believed his soul would be instantly destroyed if he did such a thing while the prayer was going on. But with the closing sentence his hand began to curve and steal forward; and the instant the "Amen" was out the fly was a prisoner of war. His aunt detected the act and made him let it go. The minister gave out his text and droned along monotonously through an argument that was so prosy that many a head by and by began to nod --and yet it was an argument that dealt in limitless fire and brimstone and thinned the predestined elect down to a company so small as to be hardly worth the saving. Tom counted the pages of the sermon; after church he always knew how many pages there had been, but he seldom knew anything else about the discourse. However, this time he was really interested for a little while. The minister made a grand and moving picture of the assembling together of the world's hosts at the millennium when the lion and the lamb should lie down together and a little child should lead them. But the pathos, the lesson, the moral of the great spectacle were lost upon the boy; he only thought of the conspicuousness of the principal character before the on-looking nations; his face lit with the thought, and he said to himself that he wished he could be that child, if it was a tame lion. Now he lapsed into suffering again, as the dry argument was resumed. Presently he bethought him of a treasure he had and got it out. It was a large black beetle with formidable jaws--a "pinchbug," he called it. It was in a percussion-cap box. The first thing the beetle did was to take him by the finger. A natural fillip followed, the beetle went floundering into the aisle and lit on its back, and the hurt finger went into the boy's mouth. The beetle lay there working its helpless legs, unable to turn over. Tom eyed it, and longed for it; but it was safe out of his reach. Other people uninterested in the sermon found relief in the beetle, and they eyed it too. Presently a vagrant poodle dog came idling along, sad at heart, lazy with the summer softness and the quiet, weary of captivity, sighing for change. He spied the beetle; the drooping tail lifted and wagged. He surveyed the prize; walked around it; smelt at it from a safe distance; walked around it again; grew bolder, and took a closer smell; then lifted his lip and made a gingerly snatch at it, just missing it; made another, and another; began to enjoy the diversion; subsided to his stomach with the beetle between his paws, and continued his experiments; grew weary at last, and then indifferent and absent-minded. His head nodded, and little by little his chin descended and touched the enemy, who seized it. There was a sharp yelp, a flirt of the poodle's head, and the beetle fell a couple of yards away, and lit on its back once more. The neighboring spectators shook with a gentle inward joy, several faces went behind fans and handkerchiefs, and Tom was entirely happy. The dog looked foolish, and probably felt so; but there was resentment in his heart, too, and a craving for revenge. So he went to the beetle and began a wary attack on it again; jumping at it from every point of a circle, lighting with his fore-paws within an inch of the creature, making even closer snatches at it with his teeth, and jerking his head till his ears flapped again. But he grew tired once more, after a while; tried to amuse himself with a fly but found no relief; followed an ant around, with his nose close to the floor, and quickly wearied of that; yawned, sighed, forgot the beetle entirely, and sat down on it. Then there was a wild yelp of agony and the poodle went sailing up the aisle; the yelps continued, and so did the dog; he crossed the house in front of the altar; he flew down the other aisle; he crossed before the doors; he clamored up the home-stretch; his anguish grew with his progress, till presently he was but a woolly comet moving in its orbit with the gleam and the speed of light. At last the frantic sufferer sheered from its course, and sprang into its master's lap; he flung it out of the window, and the voice of distress quickly thinned away and died in the distance. By this time the whole church was red-faced and suffocating with suppressed laughter, and the sermon had come to a dead standstill. The discourse was resumed presently, but it went lame and halting, all possibility of impressiveness being at an end; for even the gravest sentiments were constantly being received with a smothered burst of unholy mirth, under cover of some remote pew-back, as if the poor parson had said a rarely facetious thing. It was a genuine relief to the whole congregation when the ordeal was over and the benediction pronounced. Tom Sawyer went home quite cheerful, thinking to himself that there was some satisfaction about divine service when there was a bit of variety in it. He had but one marring thought; he was willing that the dog should play with his pinchbug, but he did not think it was upright in him to carry it off. CHAPTER VI MONDAY morning found Tom Sawyer miserable. Monday morning always found him so--because it began another week's slow suffering in school. He generally began that day with wishing he had had no intervening holiday, it made the going into captivity and fetters again so much more odious. Tom lay thinking. Presently it occurred to him that he wished he was sick; then he could stay home from school. Here was a vague possibility. He canvassed his system. No ailment was found, and he investigated again. This time he thought he could detect colicky symptoms, and he began to encourage them with considerable hope. But they soon grew feeble, and presently died wholly away. He reflected further. Suddenly he discovered something. One of his upper front teeth was loose. This was lucky; he was about to begin to groan, as a "starter," as he called it, when it occurred to him that if he came into court with that argument, his aunt would pull it out, and that would hurt. So he thought he would hold the tooth in reserve for the present, and seek further. Nothing offered for some little time, and then he remembered hearing the doctor tell about a certain thing that laid up a patient for two or three weeks and threatened to make him lose a finger. So the boy eagerly drew his sore toe from under the sheet and held it up for inspection. But now he did not know the necessary symptoms. However, it seemed well worth while to chance it, so he fell to groaning with considerable spirit. But Sid slept on unconscious. Tom groaned louder, and fancied that he began to feel pain in the toe. No result from Sid. Tom was panting with his exertions by this time. He took a rest and then swelled himself up and fetched a succession of admirable groans. Sid snored on. Tom was aggravated. He said, "Sid, Sid!" and shook him. This course worked well, and Tom began to groan again. Sid yawned, stretched, then brought himself up on his elbow with a snort, and began to stare at Tom. Tom went on groaning. Sid said: "Tom! Say, Tom!" [No response.] "Here, Tom! TOM! What is the matter, Tom?" And he shook him and looked in his face anxiously. Tom moaned out: "Oh, don't, Sid. Don't joggle me." "Why, what's the matter, Tom? I must call auntie." "No--never mind. It'll be over by and by, maybe. Don't call anybody." "But I must! DON'T groan so, Tom, it's awful. How long you been this way?" "Hours. Ouch! Oh, don't stir so, Sid, you'll kill me." "Tom, why didn't you wake me sooner? Oh, Tom, DON'T! It makes my flesh crawl to hear you. Tom, what is the matter?" "I forgive you everything, Sid. [Groan.] Everything you've ever done to me. When I'm gone--" "Oh, Tom, you ain't dying, are you? Don't, Tom--oh, don't. Maybe--" "I forgive everybody, Sid. [Groan.] Tell 'em so, Sid. And Sid, you give my window-sash and my cat with one eye to that new girl that's come to town, and tell her--" But Sid had snatched his clothes and gone. Tom was suffering in reality, now, so handsomely was his imagination working, and so his groans had gathered quite a genuine tone. Sid flew down-stairs and said: "Oh, Aunt Polly, come! Tom's dying!" "Dying!" "Yes'm. Don't wait--come quick!" "Rubbage! I don't believe it!" But she fled up-stairs, nevertheless, with Sid and Mary at her heels. And her face grew white, too, and her lip trembled. When she reached the bedside she gasped out: "You, Tom! Tom, what's the matter with you?" "Oh, auntie, I'm--" "What's the matter with you--what is the matter with you, child?" "Oh, auntie, my sore toe's mortified!" The old lady sank down into a chair and laughed a little, then cried a little, then did both together. This restored her and she said: "Tom, what a turn you did give me. Now you shut up that nonsense and climb out of this." The groans ceased and the pain vanished from the toe. The boy felt a little foolish, and he said: "Aunt Polly, it SEEMED mortified, and it hurt so I never minded my tooth at all." "Your tooth, indeed! What's the matter with your tooth?" "One of them's loose, and it aches perfectly awful." "There, there, now, don't begin that groaning again. Open your mouth. Well--your tooth IS loose, but you're not going to die about that. Mary, get me a silk thread, and a chunk of fire out of the kitchen." Tom said: "Oh, please, auntie, don't pull it out. It don't hurt any more. I wish I may never stir if it does. Please don't, auntie. I don't want to stay home from school." "Oh, you don't, don't you? So all this row was because you thought you'd get to stay home from school and go a-fishing? Tom, Tom, I love you so, and you seem to try every way you can to break my old heart with your outrageousness." By this time the dental instruments were ready. The old lady made one end of the silk thread fast to Tom's tooth with a loop and tied the other to the bedpost. Then she seized the chunk of fire and suddenly thrust it almost into the boy's face. The tooth hung dangling by the bedpost, now. But all trials bring their compensations. As Tom wended to school after breakfast, he was the envy of every boy he met because the gap in his upper row of teeth enabled him to expectorate in a new and admirable way. He gathered quite a following of lads interested in the exhibition; and one that had cut his finger and had been a centre of fascination and homage up to this time, now found himself suddenly without an adherent, and shorn of his glory. His heart was heavy, and he said with a disdain which he did not feel that it wasn't anything to spit like Tom Sawyer; but another boy said, "Sour grapes!" and he wandered away a dismantled hero. Shortly Tom came upon the juvenile pariah of the village, Huckleberry Finn, son of the town drunkard. Huckleberry was cordially hated and dreaded by all the mothers of the town, because he was idle and lawless and vulgar and bad--and because all their children admired him so, and delighted in his forbidden society, and wished they dared to be like him. Tom was like the rest of the respectable boys, in that he envied Huckleberry his gaudy outcast condition, and was under strict orders not to play with him. So he played with him every time he got a chance. Huckleberry was always dressed in the cast-off clothes of full-grown men, and they were in perennial bloom and fluttering with rags. His hat was a vast ruin with a wide crescent lopped out of its brim; his coat, when he wore one, hung nearly to his heels and had the rearward buttons far down the back; but one suspender supported his trousers; the seat of the trousers bagged low and contained nothing, the fringed legs dragged in the dirt when not rolled up. Huckleberry came and went, at his own free will. He slept on doorsteps in fine weather and in empty hogsheads in wet; he did not have to go to school or to church, or call any being master or obey anybody; he could go fishing or swimming when and where he chose, and stay as long as it suited him; nobody forbade him to fight; he could sit up as late as he pleased; he was always the first boy that went barefoot in the spring and the last to resume leather in the fall; he never had to wash, nor put on clean clothes; he could swear wonderfully. In a word, everything that goes to make life precious that boy had. So thought every harassed, hampered, respectable boy in St. Petersburg. Tom hailed the romantic outcast: "Hello, Huckleberry!" "Hello yourself, and see how you like it." "What's that you got?" "Dead cat." "Lemme see him, Huck. My, he's pretty stiff. Where'd you get him?" "Bought him off'n a boy." "What did you give?" "I give a blue ticket and a bladder that I got at the slaughter-house." "Where'd you get the blue ticket?" "Bought it off'n Ben Rogers two weeks ago for a hoop-stick." "Say--what is dead cats good for, Huck?" "Good for? Cure warts with." "No! Is that so? I know something that's better." "I bet you don't. What is it?" "Why, spunk-water." "Spunk-water! I wouldn't give a dern for spunk-water." "You wouldn't, wouldn't you? D'you ever try it?" "No, I hain't. But Bob Tanner did." "Who told you so!" "Why, he told Jeff Thatcher, and Jeff told Johnny Baker, and Johnny told Jim Hollis, and Jim told Ben Rogers, and Ben told a nigger, and the nigger told me. There now!" "Well, what of it? They'll all lie. Leastways all but the nigger. I don't know HIM. But I never see a nigger that WOULDN'T lie. Shucks! Now you tell me how Bob Tanner done it, Huck." "Why, he took and dipped his hand in a rotten stump where the rain-water was." "In the daytime?" "Certainly." "With his face to the stump?" "Yes. Least I reckon so." "Did he say anything?" "I don't reckon he did. I don't know." "Aha! Talk about trying to cure warts with spunk-water such a blame fool way as that! Why, that ain't a-going to do any good. You got to go all by yourself, to the middle of the woods, where you know there's a spunk-water stump, and just as it's midnight you back up against the stump and jam your hand in and say: 'Barley-corn, barley-corn, injun-meal shorts, Spunk-water, spunk-water, swaller these warts,' and then walk away quick, eleven steps, with your eyes shut, and then turn around three times and walk home without speaking to anybody. Because if you speak the charm's busted." "Well, that sounds like a good way; but that ain't the way Bob Tanner done." "No, sir, you can bet he didn't, becuz he's the wartiest boy in this town; and he wouldn't have a wart on him if he'd knowed how to work spunk-water. I've took off thousands of warts off of my hands that way, Huck. I play with frogs so much that I've always got considerable many warts. Sometimes I take 'em off with a bean." "Yes, bean's good. I've done that." "Have you? What's your way?" "You take and split the bean, and cut the wart so as to get some blood, and then you put the blood on one piece of the bean and take and dig a hole and bury it 'bout midnight at the crossroads in the dark of the moon, and then you burn up the rest of the bean. You see that piece that's got the blood on it will keep drawing and drawing, trying to fetch the other piece to it, and so that helps the blood to draw the wart, and pretty soon off she comes." "Yes, that's it, Huck--that's it; though when you're burying it if you say 'Down bean; off wart; come no more to bother me!' it's better. That's the way Joe Harper does, and he's been nearly to Coonville and most everywheres. But say--how do you cure 'em with dead cats?" "Why, you take your cat and go and get in the graveyard 'long about midnight when somebody that was wicked has been buried; and when it's midnight a devil will come, or maybe two or three, but you can't see 'em, you can only hear something like the wind, or maybe hear 'em talk; and when they're taking that feller away, you heave your cat after 'em and say, 'Devil follow corpse, cat follow devil, warts follow cat, I'm done with ye!' That'll fetch ANY wart." "Sounds right. D'you ever try it, Huck?" "No, but old Mother Hopkins told me." "Well, I reckon it's so, then. Becuz they say she's a witch." "Say! Why, Tom, I KNOW she is. She witched pap. Pap says so his own self. He come along one day, and he see she was a-witching him, so he took up a rock, and if she hadn't dodged, he'd a got her. Well, that very night he rolled off'n a shed wher' he was a layin drunk, and broke his arm." "Why, that's awful. How did he know she was a-witching him?" "Lord, pap can tell, easy. Pap says when they keep looking at you right stiddy, they're a-witching you. Specially if they mumble. Becuz when they mumble they're saying the Lord's Prayer backards." "Say, Hucky, when you going to try the cat?" "To-night. I reckon they'll come after old Hoss Williams to-night." "But they buried him Saturday. Didn't they get him Saturday night?" "Why, how you talk! How could their charms work till midnight?--and THEN it's Sunday. Devils don't slosh around much of a Sunday, I don't reckon." "I never thought of that. That's so. Lemme go with you?" "Of course--if you ain't afeard." "Afeard! 'Tain't likely. Will you meow?" "Yes--and you meow back, if you get a chance. Last time, you kep' me a-meowing around till old Hays went to throwing rocks at me and says 'Dern that cat!' and so I hove a brick through his window--but don't you tell." "I won't. I couldn't meow that night, becuz auntie was watching me, but I'll meow this time. Say--what's that?" "Nothing but a tick." "Where'd you get him?" "Out in the woods." "What'll you take for him?" "I don't know. I don't want to sell him." "All right. It's a mighty small tick, anyway." "Oh, anybody can run a tick down that don't belong to them. I'm satisfied with it. It's a good enough tick for me." "Sho, there's ticks a plenty. I could have a thousand of 'em if I wanted to." "Well, why don't you? Becuz you know mighty well you can't. This is a pretty early tick, I reckon. It's the first one I've seen this year." "Say, Huck--I'll give you my tooth for him." "Less see it." Tom got out a bit of paper and carefully unrolled it. Huckleberry viewed it wistfully. The temptation was very strong. At last he said: "Is it genuwyne?" Tom lifted his lip and showed the vacancy. "Well, all right," said Huckleberry, "it's a trade." Tom enclosed the tick in the percussion-cap box that had lately been the pinchbug's prison, and the boys separated, each feeling wealthier than before. When Tom reached the little isolated frame schoolhouse, he strode in briskly, with the manner of one who had come with all honest speed. He hung his hat on a peg and flung himself into his seat with business-like alacrity. The master, throned on high in his great splint-bottom arm-chair, was dozing, lulled by the drowsy hum of study. The interruption roused him. "Thomas Sawyer!" Tom knew that when his name was pronounced in full, it meant trouble. "Sir!" "Come up here. Now, sir, why are you late again, as usual?" Tom was about to take refuge in a lie, when he saw two long tails of yellow hair hanging down a back that he recognized by the electric sympathy of love; and by that form was THE ONLY VACANT PLACE on the girls' side of the schoolhouse. He instantly said: "I STOPPED TO TALK WITH HUCKLEBERRY FINN!" The master's pulse stood still, and he stared helplessly. The buzz of study ceased. The pupils wondered if this foolhardy boy had lost his mind. The master said: "You--you did what?" "Stopped to talk with Huckleberry Finn." There was no mistaking the words. "Thomas Sawyer, this is the most astounding confession I have ever listened to. No mere ferule will answer for this offence. Take off your jacket." The master's arm performed until it was tired and the stock of switches notably diminished. Then the order followed: "Now, sir, go and sit with the girls! And let this be a warning to you." The titter that rippled around the room appeared to abash the boy, but in reality that result was caused rather more by his worshipful awe of his unknown idol and the dread pleasure that lay in his high good fortune. He sat down upon the end of the pine bench and the girl hitched herself away from him with a toss of her head. Nudges and winks and whispers traversed the room, but Tom sat still, with his arms upon the long, low desk before him, and seemed to study his book. By and by attention ceased from him, and the accustomed school murmur rose upon the dull air once more. Presently the boy began to steal furtive glances at the girl. She observed it, "made a mouth" at him and gave him the back of her head for the space of a minute. When she cautiously faced around again, a peach lay before her. She thrust it away. Tom gently put it back. She thrust it away again, but with less animosity. Tom patiently returned it to its place. Then she let it remain. Tom scrawled on his slate, "Please take it--I got more." The girl glanced at the words, but made no sign. Now the boy began to draw something on the slate, hiding his work with his left hand. For a time the girl refused to notice; but her human curiosity presently began to manifest itself by hardly perceptible signs. The boy worked on, apparently unconscious. The girl made a sort of noncommittal attempt to see, but the boy did not betray that he was aware of it. At last she gave in and hesitatingly whispered: "Let me see it." Tom partly uncovered a dismal caricature of a house with two gable ends to it and a corkscrew of smoke issuing from the chimney. Then the girl's interest began to fasten itself upon the work and she forgot everything else. When it was finished, she gazed a moment, then whispered: "It's nice--make a man." The artist erected a man in the front yard, that resembled a derrick. He could have stepped over the house; but the girl was not hypercritical; she was satisfied with the monster, and whispered: "It's a beautiful man--now make me coming along." Tom drew an hour-glass with a full moon and straw limbs to it and armed the spreading fingers with a portentous fan. The girl said: "It's ever so nice--I wish I could draw." "It's easy," whispered Tom, "I'll learn you." "Oh, will you? When?" "At noon. Do you go home to dinner?" "I'll stay if you will." "Good--that's a whack. What's your name?" "Becky Thatcher. What's yours? Oh, I know. It's Thomas Sawyer." "That's the name they lick me by. I'm Tom when I'm good. You call me Tom, will you?" "Yes." Now Tom began to scrawl something on the slate, hiding the words from the girl. But she was not backward this time. She begged to see. Tom said: "Oh, it ain't anything." "Yes it is." "No it ain't. You don't want to see." "Yes I do, indeed I do. Please let me." "You'll tell." "No I won't--deed and deed and double deed won't." "You won't tell anybody at all? Ever, as long as you live?" "No, I won't ever tell ANYbody. Now let me." "Oh, YOU don't want to see!" "Now that you treat me so, I WILL see." And she put her small hand upon his and a little scuffle ensued, Tom pretending to resist in earnest but letting his hand slip by degrees till these words were revealed: "I LOVE YOU." "Oh, you bad thing!" And she hit his hand a smart rap, but reddened and looked pleased, nevertheless. Just at this juncture the boy felt a slow, fateful grip closing on his ear, and a steady lifting impulse. In that wise he was borne across the house and deposited in his own seat, under a peppering fire of giggles from the whole school. Then the master stood over him during a few awful moments, and finally moved away to his throne without saying a word. But although Tom's ear tingled, his heart was jubilant. As the school quieted down Tom made an honest effort to study, but the turmoil within him was too great. In turn he took his place in the reading class and made a botch of it; then in the geography class and turned lakes into mountains, mountains into rivers, and rivers into continents, till chaos was come again; then in the spelling class, and got "turned down," by a succession of mere baby words, till he brought up at the foot and yielded up the pewter medal which he had worn with ostentation for months. CHAPTER VII THE harder Tom tried to fasten his mind on his book, the more his ideas wandered. So at last, with a sigh and a yawn, he gave it up. It seemed to him that the noon recess would never come. The air was utterly dead. There was not a breath stirring. It was the sleepiest of sleepy days. The drowsing murmur of the five and twenty studying scholars soothed the soul like the spell that is in the murmur of bees. Away off in the flaming sunshine, Cardiff Hill lifted its soft green sides through a shimmering veil of heat, tinted with the purple of distance; a few birds floated on lazy wing high in the air; no other living thing was visible but some cows, and they were asleep. Tom's heart ached to be free, or else to have something of interest to do to pass the dreary time. His hand wandered into his pocket and his face lit up with a glow of gratitude that was prayer, though he did not know it. Then furtively the percussion-cap box came out. He released the tick and put him on the long flat desk. The creature probably glowed with a gratitude that amounted to prayer, too, at this moment, but it was premature: for when he started thankfully to travel off, Tom turned him aside with a pin and made him take a new direction. Tom's bosom friend sat next him, suffering just as Tom had been, and now he was deeply and gratefully interested in this entertainment in an instant. This bosom friend was Joe Harper. The two boys were sworn friends all the week, and embattled enemies on Saturdays. Joe took a pin out of his lapel and began to assist in exercising the prisoner. The sport grew in interest momently. Soon Tom said that they were interfering with each other, and neither getting the fullest benefit of the tick. So he put Joe's slate on the desk and drew a line down the middle of it from top to bottom. "Now," said he, "as long as he is on your side you can stir him up and I'll let him alone; but if you let him get away and get on my side, you're to leave him alone as long as I can keep him from crossing over." "All right, go ahead; start him up." The tick escaped from Tom, presently, and crossed the equator. Joe harassed him awhile, and then he got away and crossed back again. This change of base occurred often. While one boy was worrying the tick with absorbing interest, the other would look on with interest as strong, the two heads bowed together over the slate, and the two souls dead to all things else. At last luck seemed to settle and abide with Joe. The tick tried this, that, and the other course, and got as excited and as anxious as the boys themselves, but time and again just as he would have victory in his very grasp, so to speak, and Tom's fingers would be twitching to begin, Joe's pin would deftly head him off, and keep possession. At last Tom could stand it no longer. The temptation was too strong. So he reached out and lent a hand with his pin. Joe was angry in a moment. Said he: "Tom, you let him alone." "I only just want to stir him up a little, Joe." "No, sir, it ain't fair; you just let him alone." "Blame it, I ain't going to stir him much." "Let him alone, I tell you." "I won't!" "You shall--he's on my side of the line." "Look here, Joe Harper, whose is that tick?" "I don't care whose tick he is--he's on my side of the line, and you sha'n't touch him." "Well, I'll just bet I will, though. He's my tick and I'll do what I blame please with him, or die!" A tremendous whack came down on Tom's shoulders, and its duplicate on Joe's; and for the space of two minutes the dust continued to fly from the two jackets and the whole school to enjoy it. The boys had been too absorbed to notice the hush that had stolen upon the school awhile before when the master came tiptoeing down the room and stood over them. He had contemplated a good part of the performance before he contributed his bit of variety to it. When school broke up at noon, Tom flew to Becky Thatcher, and whispered in her ear: "Put on your bonnet and let on you're going home; and when you get to the corner, give the rest of 'em the slip, and turn down through the lane and come back. I'll go the other way and come it over 'em the same way." So the one went off with one group of scholars, and the other with another. In a little while the two met at the bottom of the lane, and when they reached the school they had it all to themselves. Then they sat together, with a slate before them, and Tom gave Becky the pencil and held her hand in his, guiding it, and so created another surprising house. When the interest in art began to wane, the two fell to talking. Tom was swimming in bliss. He said: "Do you love rats?" "No! I hate them!" "Well, I do, too--LIVE ones. But I mean dead ones, to swing round your head with a string." "No, I don't care for rats much, anyway. What I like is chewing-gum." "Oh, I should say so! I wish I had some now." "Do you? I've got some. I'll let you chew it awhile, but you must give it back to me." That was agreeable, so they chewed it turn about, and dangled their legs against the bench in excess of contentment. "Was you ever at a circus?" said Tom. "Yes, and my pa's going to take me again some time, if I'm good." "I been to the circus three or four times--lots of times. Church ain't shucks to a circus. There's things going on at a circus all the time. I'm going to be a clown in a circus when I grow up." "Oh, are you! That will be nice. They're so lovely, all spotted up." "Yes, that's so. And they get slathers of money--most a dollar a day, Ben Rogers says. Say, Becky, was you ever engaged?" "What's that?" "Why, engaged to be married." "No." "Would you like to?" "I reckon so. I don't know. What is it like?" "Like? Why it ain't like anything. You only just tell a boy you won't ever have anybody but him, ever ever ever, and then you kiss and that's all. Anybody can do it." "Kiss? What do you kiss for?" "Why, that, you know, is to--well, they always do that." "Everybody?" "Why, yes, everybody that's in love with each other. Do you remember what I wrote on the slate?" "Ye--yes." "What was it?" "I sha'n't tell you." "Shall I tell YOU?" "Ye--yes--but some other time." "No, now." "No, not now--to-morrow." "Oh, no, NOW. Please, Becky--I'll whisper it, I'll whisper it ever so easy." Becky hesitating, Tom took silence for consent, and passed his arm about her waist and whispered the tale ever so softly, with his mouth close to her ear. And then he added: "Now you whisper it to me--just the same." She resisted, for a while, and then said: "You turn your face away so you can't see, and then I will. But you mustn't ever tell anybody--WILL you, Tom? Now you won't, WILL you?" "No, indeed, indeed I won't. Now, Becky." He turned his face away. She bent timidly around till her breath stirred his curls and whispered, "I--love--you!" Then she sprang away and ran around and around the desks and benches, with Tom after her, and took refuge in a corner at last, with her little white apron to her face. Tom clasped her about her neck and pleaded: "Now, Becky, it's all done--all over but the kiss. Don't you be afraid of that--it ain't anything at all. Please, Becky." And he tugged at her apron and the hands. By and by she gave up, and let her hands drop; her face, all glowing with the struggle, came up and submitted. Tom kissed the red lips and said: "Now it's all done, Becky. And always after this, you know, you ain't ever to love anybody but me, and you ain't ever to marry anybody but me, ever never and forever. Will you?" "No, I'll never love anybody but you, Tom, and I'll never marry anybody but you--and you ain't to ever marry anybody but me, either." "Certainly. Of course. That's PART of it. And always coming to school or when we're going home, you're to walk with me, when there ain't anybody looking--and you choose me and I choose you at parties, because that's the way you do when you're engaged." "It's so nice. I never heard of it before." "Oh, it's ever so gay! Why, me and Amy Lawrence--" The big eyes told Tom his blunder and he stopped, confused. "Oh, Tom! Then I ain't the first you've ever been engaged to!" The child began to cry. Tom said: "Oh, don't cry, Becky, I don't care for her any more." "Yes, you do, Tom--you know you do." Tom tried to put his arm about her neck, but she pushed him away and turned her face to the wall, and went on crying. Tom tried again, with soothing words in his mouth, and was repulsed again. Then his pride was up, and he strode away and went outside. He stood about, restless and uneasy, for a while, glancing at the door, every now and then, hoping she would repent and come to find him. But she did not. Then he began to feel badly and fear that he was in the wrong. It was a hard struggle with him to make new advances, now, but he nerved himself to it and entered. She was still standing back there in the corner, sobbing, with her face to the wall. Tom's heart smote him. He went to her and stood a moment, not knowing exactly how to proceed. Then he said hesitatingly: "Becky, I--I don't care for anybody but you." No reply--but sobs. "Becky"--pleadingly. "Becky, won't you say something?" More sobs. Tom got out his chiefest jewel, a brass knob from the top of an andiron, and passed it around her so that she could see it, and said: "Please, Becky, won't you take it?" She struck it to the floor. Then Tom marched out of the house and over the hills and far away, to return to school no more that day. Presently Becky began to suspect. She ran to the door; he was not in sight; she flew around to the play-yard; he was not there. Then she called: "Tom! Come back, Tom!" She listened intently, but there was no answer. She had no companions but silence and loneliness. So she sat down to cry again and upbraid herself; and by this time the scholars began to gather again, and she had to hide her griefs and still her broken heart and take up the cross of a long, dreary, aching afternoon, with none among the strangers about her to exchange sorrows with. CHAPTER VIII TOM dodged hither and thither through lanes until he was well out of the track of returning scholars, and then fell into a moody jog. He crossed a small "branch" two or three times, because of a prevailing juvenile superstition that to cross water baffled pursuit. Half an hour later he was disappearing behind the Douglas mansion on the summit of Cardiff Hill, and the schoolhouse was hardly distinguishable away off in the valley behind him. He entered a dense wood, picked his pathless way to the centre of it, and sat down on a mossy spot under a spreading oak. There was not even a zephyr stirring; the dead noonday heat had even stilled the songs of the birds; nature lay in a trance that was broken by no sound but the occasional far-off hammering of a woodpecker, and this seemed to render the pervading silence and sense of loneliness the more profound. The boy's soul was steeped in melancholy; his feelings were in happy accord with his surroundings. He sat long with his elbows on his knees and his chin in his hands, meditating. It seemed to him that life was but a trouble, at best, and he more than half envied Jimmy Hodges, so lately released; it must be very peaceful, he thought, to lie and slumber and dream forever and ever, with the wind whispering through the trees and caressing the grass and the flowers over the grave, and nothing to bother and grieve about, ever any more. If he only had a clean Sunday-school record he could be willing to go, and be done with it all. Now as to this girl. What had he done? Nothing. He had meant the best in the world, and been treated like a dog--like a very dog. She would be sorry some day--maybe when it was too late. Ah, if he could only die TEMPORARILY! But the elastic heart of youth cannot be compressed into one constrained shape long at a time. Tom presently began to drift insensibly back into the concerns of this life again. What if he turned his back, now, and disappeared mysteriously? What if he went away--ever so far away, into unknown countries beyond the seas--and never came back any more! How would she feel then! The idea of being a clown recurred to him now, only to fill him with disgust. For frivolity and jokes and spotted tights were an offense, when they intruded themselves upon a spirit that was exalted into the vague august realm of the romantic. No, he would be a soldier, and return after long years, all war-worn and illustrious. No--better still, he would join the Indians, and hunt buffaloes and go on the warpath in the mountain ranges and the trackless great plains of the Far West, and away in the future come back a great chief, bristling with feathers, hideous with paint, and prance into Sunday-school, some drowsy summer morning, with a bloodcurdling war-whoop, and sear the eyeballs of all his companions with unappeasable envy. But no, there was something gaudier even than this. He would be a pirate! That was it! NOW his future lay plain before him, and glowing with unimaginable splendor. How his name would fill the world, and make people shudder! How gloriously he would go plowing the dancing seas, in his long, low, black-hulled racer, the Spirit of the Storm, with his grisly flag flying at the fore! And at the zenith of his fame, how he would suddenly appear at the old village and stalk into church, brown and weather-beaten, in his black velvet doublet and trunks, his great jack-boots, his crimson sash, his belt bristling with horse-pistols, his crime-rusted cutlass at his side, his slouch hat with waving plumes, his black flag unfurled, with the skull and crossbones on it, and hear with swelling ecstasy the whisperings, "It's Tom Sawyer the Pirate!--the Black Avenger of the Spanish Main!" Yes, it was settled; his career was determined. He would run away from home and enter upon it. He would start the very next morning. Therefore he must now begin to get ready. He would collect his resources together. He went to a rotten log near at hand and began to dig under one end of it with his Barlow knife. He soon struck wood that sounded hollow. He put his hand there and uttered this incantation impressively: "What hasn't come here, come! What's here, stay here!" Then he scraped away the dirt, and exposed a pine shingle. He took it up and disclosed a shapely little treasure-house whose bottom and sides were of shingles. In it lay a marble. Tom's astonishment was boundless! He scratched his head with a perplexed air, and said: "Well, that beats anything!" Then he tossed the marble away pettishly, and stood cogitating. The truth was, that a superstition of his had failed, here, which he and all his comrades had always looked upon as infallible. If you buried a marble with certain necessary incantations, and left it alone a fortnight, and then opened the place with the incantation he had just used, you would find that all the marbles you had ever lost had gathered themselves together there, meantime, no matter how widely they had been separated. But now, this thing had actually and unquestionably failed. Tom's whole structure of faith was shaken to its foundations. He had many a time heard of this thing succeeding but never of its failing before. It did not occur to him that he had tried it several times before, himself, but could never find the hiding-places afterward. He puzzled over the matter some time, and finally decided that some witch had interfered and broken the charm. He thought he would satisfy himself on that point; so he searched around till he found a small sandy spot with a little funnel-shaped depression in it. He laid himself down and put his mouth close to this depression and called-- "Doodle-bug, doodle-bug, tell me what I want to know! Doodle-bug, doodle-bug, tell me what I want to know!" The sand began to work, and presently a small black bug appeared for a second and then darted under again in a fright. "He dasn't tell! So it WAS a witch that done it. I just knowed it." He well knew the futility of trying to contend against witches, so he gave up discouraged. But it occurred to him that he might as well have the marble he had just thrown away, and therefore he went and made a patient search for it. But he could not find it. Now he went back to his treasure-house and carefully placed himself just as he had been standing when he tossed the marble away; then he took another marble from his pocket and tossed it in the same way, saying: "Brother, go find your brother!" He watched where it stopped, and went there and looked. But it must have fallen short or gone too far; so he tried twice more. The last repetition was successful. The two marbles lay within a foot of each other. Just here the blast of a toy tin trumpet came faintly down the green aisles of the forest. Tom flung off his jacket and trousers, turned a suspender into a belt, raked away some brush behind the rotten log, disclosing a rude bow and arrow, a lath sword and a tin trumpet, and in a moment had seized these things and bounded away, barelegged, with fluttering shirt. He presently halted under a great elm, blew an answering blast, and then began to tiptoe and look warily out, this way and that. He said cautiously--to an imaginary company: "Hold, my merry men! Keep hid till I blow." Now appeared Joe Harper, as airily clad and elaborately armed as Tom. Tom called: "Hold! Who comes here into Sherwood Forest without my pass?" "Guy of Guisborne wants no man's pass. Who art thou that--that--" "Dares to hold such language," said Tom, prompting--for they talked "by the book," from memory. "Who art thou that dares to hold such language?" "I, indeed! I am Robin Hood, as thy caitiff carcase soon shall know." "Then art thou indeed that famous outlaw? Right gladly will I dispute with thee the passes of the merry wood. Have at thee!" They took their lath swords, dumped their other traps on the ground, struck a fencing attitude, foot to foot, and began a grave, careful combat, "two up and two down." Presently Tom said: "Now, if you've got the hang, go it lively!" So they "went it lively," panting and perspiring with the work. By and by Tom shouted: "Fall! fall! Why don't you fall?" "I sha'n't! Why don't you fall yourself? You're getting the worst of it." "Why, that ain't anything. I can't fall; that ain't the way it is in the book. The book says, 'Then with one back-handed stroke he slew poor Guy of Guisborne.' You're to turn around and let me hit you in the back." There was no getting around the authorities, so Joe turned, received the whack and fell. "Now," said Joe, getting up, "you got to let me kill YOU. That's fair." "Why, I can't do that, it ain't in the book." "Well, it's blamed mean--that's all." "Well, say, Joe, you can be Friar Tuck or Much the miller's son, and lam me with a quarter-staff; or I'll be the Sheriff of Nottingham and you be Robin Hood a little while and kill me." This was satisfactory, and so these adventures were carried out. Then Tom became Robin Hood again, and was allowed by the treacherous nun to bleed his strength away through his neglected wound. And at last Joe, representing a whole tribe of weeping outlaws, dragged him sadly forth, gave his bow into his feeble hands, and Tom said, "Where this arrow falls, there bury poor Robin Hood under the greenwood tree." Then he shot the arrow and fell back and would have died, but he lit on a nettle and sprang up too gaily for a corpse. The boys dressed themselves, hid their accoutrements, and went off grieving that there were no outlaws any more, and wondering what modern civilization could claim to have done to compensate for their loss. They said they would rather be outlaws a year in Sherwood Forest than President of the United States forever. CHAPTER IX AT half-past nine, that night, Tom and Sid were sent to bed, as usual. They said their prayers, and Sid was soon asleep. Tom lay awake and waited, in restless impatience. When it seemed to him that it must be nearly daylight, he heard the clock strike ten! This was despair. He would have tossed and fidgeted, as his nerves demanded, but he was afraid he might wake Sid. So he lay still, and stared up into the dark. Everything was dismally still. By and by, out of the stillness, little, scarcely perceptible noises began to emphasize themselves. The ticking of the clock began to bring itself into notice. Old beams began to crack mysteriously. The stairs creaked faintly. Evidently spirits were abroad. A measured, muffled snore issued from Aunt Polly's chamber. And now the tiresome chirping of a cricket that no human ingenuity could locate, began. Next the ghastly ticking of a deathwatch in the wall at the bed's head made Tom shudder--it meant that somebody's days were numbered. Then the howl of a far-off dog rose on the night air, and was answered by a fainter howl from a remoter distance. Tom was in an agony. At last he was satisfied that time had ceased and eternity begun; he began to doze, in spite of himself; the clock chimed eleven, but he did not hear it. And then there came, mingling with his half-formed dreams, a most melancholy caterwauling. The raising of a neighboring window disturbed him. A cry of "Scat! you devil!" and the crash of an empty bottle against the back of his aunt's woodshed brought him wide awake, and a single minute later he was dressed and out of the window and creeping along the roof of the "ell" on all fours. He "meow'd" with caution once or twice, as he went; then jumped to the roof of the woodshed and thence to the ground. Huckleberry Finn was there, with his dead cat. The boys moved off and disappeared in the gloom. At the end of half an hour they were wading through the tall grass of the graveyard. It was a graveyard of the old-fashioned Western kind. It was on a hill, about a mile and a half from the village. It had a crazy board fence around it, which leaned inward in places, and outward the rest of the time, but stood upright nowhere. Grass and weeds grew rank over the whole cemetery. All the old graves were sunken in, there was not a tombstone on the place; round-topped, worm-eaten boards staggered over the graves, leaning for support and finding none. "Sacred to the memory of" So-and-So had been painted on them once, but it could no longer have been read, on the most of them, now, even if there had been light. A faint wind moaned through the trees, and Tom feared it might be the spirits of the dead, complaining at being disturbed. The boys talked little, and only under their breath, for the time and the place and the pervading solemnity and silence oppressed their spirits. They found the sharp new heap they were seeking, and ensconced themselves within the protection of three great elms that grew in a bunch within a few feet of the grave. Then they waited in silence for what seemed a long time. The hooting of a distant owl was all the sound that troubled the dead stillness. Tom's reflections grew oppressive. He must force some talk. So he said in a whisper: "Hucky, do you believe the dead people like it for us to be here?" Huckleberry whispered: "I wisht I knowed. It's awful solemn like, AIN'T it?" "I bet it is." There was a considerable pause, while the boys canvassed this matter inwardly. Then Tom whispered: "Say, Hucky--do you reckon Hoss Williams hears us talking?" "O' course he does. Least his sperrit does." Tom, after a pause: "I wish I'd said Mister Williams. But I never meant any harm. Everybody calls him Hoss." "A body can't be too partic'lar how they talk 'bout these-yer dead people, Tom." This was a damper, and conversation died again. Presently Tom seized his comrade's arm and said: "Sh!" "What is it, Tom?" And the two clung together with beating hearts. "Sh! There 'tis again! Didn't you hear it?" "I--" "There! Now you hear it." "Lord, Tom, they're coming! They're coming, sure. What'll we do?" "I dono. Think they'll see us?" "Oh, Tom, they can see in the dark, same as cats. I wisht I hadn't come." "Oh, don't be afeard. I don't believe they'll bother us. We ain't doing any harm. If we keep perfectly still, maybe they won't notice us at all." "I'll try to, Tom, but, Lord, I'm all of a shiver." "Listen!" The boys bent their heads together and scarcely breathed. A muffled sound of voices floated up from the far end of the graveyard. "Look! See there!" whispered Tom. "What is it?" "It's devil-fire. Oh, Tom, this is awful." Some vague figures approached through the gloom, swinging an old-fashioned tin lantern that freckled the ground with innumerable little spangles of light. Presently Huckleberry whispered with a shudder: "It's the devils sure enough. Three of 'em! Lordy, Tom, we're goners! Can you pray?" "I'll try, but don't you be afeard. They ain't going to hurt us. 'Now I lay me down to sleep, I--'" "Sh!" "What is it, Huck?" "They're HUMANS! One of 'em is, anyway. One of 'em's old Muff Potter's voice." "No--'tain't so, is it?" "I bet I know it. Don't you stir nor budge. He ain't sharp enough to notice us. Drunk, the same as usual, likely--blamed old rip!" "All right, I'll keep still. Now they're stuck. Can't find it. Here they come again. Now they're hot. Cold again. Hot again. Red hot! They're p'inted right, this time. Say, Huck, I know another o' them voices; it's Injun Joe." "That's so--that murderin' half-breed! I'd druther they was devils a dern sight. What kin they be up to?" The whisper died wholly out, now, for the three men had reached the grave and stood within a few feet of the boys' hiding-place. "Here it is," said the third voice; and the owner of it held the lantern up and revealed the face of young Doctor Robinson. Potter and Injun Joe were carrying a handbarrow with a rope and a couple of shovels on it. They cast down their load and began to open the grave. The doctor put the lantern at the head of the grave and came and sat down with his back against one of the elm trees. He was so close the boys could have touched him. "Hurry, men!" he said, in a low voice; "the moon might come out at any moment." They growled a response and went on digging. For some time there was no noise but the grating sound of the spades discharging their freight of mould and gravel. It was very monotonous. Finally a spade struck upon the coffin with a dull woody accent, and within another minute or two the men had hoisted it out on the ground. They pried off the lid with their shovels, got out the body and dumped it rudely on the ground. The moon drifted from behind the clouds and exposed the pallid face. The barrow was got ready and the corpse placed on it, covered with a blanket, and bound to its place with the rope. Potter took out a large spring-knife and cut off the dangling end of the rope and then said: "Now the cussed thing's ready, Sawbones, and you'll just out with another five, or here she stays." "That's the talk!" said Injun Joe. "Look here, what does this mean?" said the doctor. "You required your pay in advance, and I've paid you." "Yes, and you done more than that," said Injun Joe, approaching the doctor, who was now standing. "Five years ago you drove me away from your father's kitchen one night, when I come to ask for something to eat, and you said I warn't there for any good; and when I swore I'd get even with you if it took a hundred years, your father had me jailed for a vagrant. Did you think I'd forget? The Injun blood ain't in me for nothing. And now I've GOT you, and you got to SETTLE, you know!" He was threatening the doctor, with his fist in his face, by this time. The doctor struck out suddenly and stretched the ruffian on the ground. Potter dropped his knife, and exclaimed: "Here, now, don't you hit my pard!" and the next moment he had grappled with the doctor and the two were struggling with might and main, trampling the grass and tearing the ground with their heels. Injun Joe sprang to his feet, his eyes flaming with passion, snatched up Potter's knife, and went creeping, catlike and stooping, round and round about the combatants, seeking an opportunity. All at once the doctor flung himself free, seized the heavy headboard of Williams' grave and felled Potter to the earth with it--and in the same instant the half-breed saw his chance and drove the knife to the hilt in the young man's breast. He reeled and fell partly upon Potter, flooding him with his blood, and in the same moment the clouds blotted out the dreadful spectacle and the two frightened boys went speeding away in the dark. Presently, when the moon emerged again, Injun Joe was standing over the two forms, contemplating them. The doctor murmured inarticulately, gave a long gasp or two and was still. The half-breed muttered: "THAT score is settled--damn you." Then he robbed the body. After which he put the fatal knife in Potter's open right hand, and sat down on the dismantled coffin. Three --four--five minutes passed, and then Potter began to stir and moan. His hand closed upon the knife; he raised it, glanced at it, and let it fall, with a shudder. Then he sat up, pushing the body from him, and gazed at it, and then around him, confusedly. His eyes met Joe's. "Lord, how is this, Joe?" he said. "It's a dirty business," said Joe, without moving. "What did you do it for?" "I! I never done it!" "Look here! That kind of talk won't wash." Potter trembled and grew white. "I thought I'd got sober. I'd no business to drink to-night. But it's in my head yet--worse'n when we started here. I'm all in a muddle; can't recollect anything of it, hardly. Tell me, Joe--HONEST, now, old feller--did I do it? Joe, I never meant to--'pon my soul and honor, I never meant to, Joe. Tell me how it was, Joe. Oh, it's awful--and him so young and promising." "Why, you two was scuffling, and he fetched you one with the headboard and you fell flat; and then up you come, all reeling and staggering like, and snatched the knife and jammed it into him, just as he fetched you another awful clip--and here you've laid, as dead as a wedge til now." "Oh, I didn't know what I was a-doing. I wish I may die this minute if I did. It was all on account of the whiskey and the excitement, I reckon. I never used a weepon in my life before, Joe. I've fought, but never with weepons. They'll all say that. Joe, don't tell! Say you won't tell, Joe--that's a good feller. I always liked you, Joe, and stood up for you, too. Don't you remember? You WON'T tell, WILL you, Joe?" And the poor creature dropped on his knees before the stolid murderer, and clasped his appealing hands. "No, you've always been fair and square with me, Muff Potter, and I won't go back on you. There, now, that's as fair as a man can say." "Oh, Joe, you're an angel. I'll bless you for this the longest day I live." And Potter began to cry. "Come, now, that's enough of that. This ain't any time for blubbering. You be off yonder way and I'll go this. Move, now, and don't leave any tracks behind you." Potter started on a trot that quickly increased to a run. The half-breed stood looking after him. He muttered: "If he's as much stunned with the lick and fuddled with the rum as he had the look of being, he won't think of the knife till he's gone so far he'll be afraid to come back after it to such a place by himself --chicken-heart!" Two or three minutes later the murdered man, the blanketed corpse, the lidless coffin, and the open grave were under no inspection but the moon's. The stillness was complete again, too. CHAPTER X THE two boys flew on and on, toward the village, speechless with horror. They glanced backward over their shoulders from time to time, apprehensively, as if they feared they might be followed. Every stump that started up in their path seemed a man and an enemy, and made them catch their breath; and as they sped by some outlying cottages that lay near the village, the barking of the aroused watch-dogs seemed to give wings to their feet. "If we can only get to the old tannery before we break down!" whispered Tom, in short catches between breaths. "I can't stand it much longer." Huckleberry's hard pantings were his only reply, and the boys fixed their eyes on the goal of their hopes and bent to their work to win it. They gained steadily on it, and at last, breast to breast, they burst through the open door and fell grateful and exhausted in the sheltering shadows beyond. By and by their pulses slowed down, and Tom whispered: "Huckleberry, what do you reckon'll come of this?" "If Doctor Robinson dies, I reckon hanging'll come of it." "Do you though?" "Why, I KNOW it, Tom." Tom thought a while, then he said: "Who'll tell? We?" "What are you talking about? S'pose something happened and Injun Joe DIDN'T hang? Why, he'd kill us some time or other, just as dead sure as we're a laying here." "That's just what I was thinking to myself, Huck." "If anybody tells, let Muff Potter do it, if he's fool enough. He's generally drunk enough." Tom said nothing--went on thinking. Presently he whispered: "Huck, Muff Potter don't know it. How can he tell?" "What's the reason he don't know it?" "Because he'd just got that whack when Injun Joe done it. D'you reckon he could see anything? D'you reckon he knowed anything?" "By hokey, that's so, Tom!" "And besides, look-a-here--maybe that whack done for HIM!" "No, 'taint likely, Tom. He had liquor in him; I could see that; and besides, he always has. Well, when pap's full, you might take and belt him over the head with a church and you couldn't phase him. He says so, his own self. So it's the same with Muff Potter, of course. But if a man was dead sober, I reckon maybe that whack might fetch him; I dono." After another reflective silence, Tom said: "Hucky, you sure you can keep mum?" "Tom, we GOT to keep mum. You know that. That Injun devil wouldn't make any more of drownding us than a couple of cats, if we was to squeak 'bout this and they didn't hang him. Now, look-a-here, Tom, less take and swear to one another--that's what we got to do--swear to keep mum." "I'm agreed. It's the best thing. Would you just hold hands and swear that we--" "Oh no, that wouldn't do for this. That's good enough for little rubbishy common things--specially with gals, cuz THEY go back on you anyway, and blab if they get in a huff--but there orter be writing 'bout a big thing like this. And blood." Tom's whole being applauded this idea. It was deep, and dark, and awful; the hour, the circumstances, the surroundings, were in keeping with it. He picked up a clean pine shingle that lay in the moonlight, took a little fragment of "red keel" out of his pocket, got the moon on his work, and painfully scrawled these lines, emphasizing each slow down-stroke by clamping his tongue between his teeth, and letting up the pressure on the up-strokes. [See next page.] "Huck Finn and Tom Sawyer swears they will keep mum about This and They wish They may Drop down dead in Their Tracks if They ever Tell and Rot." Huckleberry was filled with admiration of Tom's facility in writing, and the sublimity of his language. He at once took a pin from his lapel and was going to prick his flesh, but Tom said: "Hold on! Don't do that. A pin's brass. It might have verdigrease on it." "What's verdigrease?" "It's p'ison. That's what it is. You just swaller some of it once --you'll see." So Tom unwound the thread from one of his needles, and each boy pricked the ball of his thumb and squeezed out a drop of blood. In time, after many squeezes, Tom managed to sign his initials, using the ball of his little finger for a pen. Then he showed Huckleberry how to make an H and an F, and the oath was complete. They buried the shingle close to the wall, with some dismal ceremonies and incantations, and the fetters that bound their tongues were considered to be locked and the key thrown away. A figure crept stealthily through a break in the other end of the ruined building, now, but they did not notice it. "Tom," whispered Huckleberry, "does this keep us from EVER telling --ALWAYS?" "Of course it does. It don't make any difference WHAT happens, we got to keep mum. We'd drop down dead--don't YOU know that?" "Yes, I reckon that's so." They continued to whisper for some little time. Presently a dog set up a long, lugubrious howl just outside--within ten feet of them. The boys clasped each other suddenly, in an agony of fright. "Which of us does he mean?" gasped Huckleberry. "I dono--peep through the crack. Quick!" "No, YOU, Tom!" "I can't--I can't DO it, Huck!" "Please, Tom. There 'tis again!" "Oh, lordy, I'm thankful!" whispered Tom. "I know his voice. It's Bull Harbison." * [* If Mr. Harbison owned a slave named Bull, Tom would have spoken of him as "Harbison's Bull," but a son or a dog of that name was "Bull Harbison."] "Oh, that's good--I tell you, Tom, I was most scared to death; I'd a bet anything it was a STRAY dog." The dog howled again. The boys' hearts sank once more. "Oh, my! that ain't no Bull Harbison!" whispered Huckleberry. "DO, Tom!" Tom, quaking with fear, yielded, and put his eye to the crack. His whisper was hardly audible when he said: "Oh, Huck, IT S A STRAY DOG!" "Quick, Tom, quick! Who does he mean?" "Huck, he must mean us both--we're right together." "Oh, Tom, I reckon we're goners. I reckon there ain't no mistake 'bout where I'LL go to. I been so wicked." "Dad fetch it! This comes of playing hookey and doing everything a feller's told NOT to do. I might a been good, like Sid, if I'd a tried --but no, I wouldn't, of course. But if ever I get off this time, I lay I'll just WALLER in Sunday-schools!" And Tom began to snuffle a little. "YOU bad!" and Huckleberry began to snuffle too. "Consound it, Tom Sawyer, you're just old pie, 'longside o' what I am. Oh, LORDY, lordy, lordy, I wisht I only had half your chance." Tom choked off and whispered: "Look, Hucky, look! He's got his BACK to us!" Hucky looked, with joy in his heart. "Well, he has, by jingoes! Did he before?" "Yes, he did. But I, like a fool, never thought. Oh, this is bully, you know. NOW who can he mean?" The howling stopped. Tom pricked up his ears. "Sh! What's that?" he whispered. "Sounds like--like hogs grunting. No--it's somebody snoring, Tom." "That IS it! Where 'bouts is it, Huck?" "I bleeve it's down at 'tother end. Sounds so, anyway. Pap used to sleep there, sometimes, 'long with the hogs, but laws bless you, he just lifts things when HE snores. Besides, I reckon he ain't ever coming back to this town any more." The spirit of adventure rose in the boys' souls once more. "Hucky, do you das't to go if I lead?" "I don't like to, much. Tom, s'pose it's Injun Joe!" Tom quailed. But presently the temptation rose up strong again and the boys agreed to try, with the understanding that they would take to their heels if the snoring stopped. So they went tiptoeing stealthily down, the one behind the other. When they had got to within five steps of the snorer, Tom stepped on a stick, and it broke with a sharp snap. The man moaned, writhed a little, and his face came into the moonlight. It was Muff Potter. The boys' hearts had stood still, and their hopes too, when the man moved, but their fears passed away now. They tiptoed out, through the broken weather-boarding, and stopped at a little distance to exchange a parting word. That long, lugubrious howl rose on the night air again! They turned and saw the strange dog standing within a few feet of where Potter was lying, and FACING Potter, with his nose pointing heavenward. "Oh, geeminy, it's HIM!" exclaimed both boys, in a breath. "Say, Tom--they say a stray dog come howling around Johnny Miller's house, 'bout midnight, as much as two weeks ago; and a whippoorwill come in and lit on the banisters and sung, the very same evening; and there ain't anybody dead there yet." "Well, I know that. And suppose there ain't. Didn't Gracie Miller fall in the kitchen fire and burn herself terrible the very next Saturday?" "Yes, but she ain't DEAD. And what's more, she's getting better, too." "All right, you wait and see. She's a goner, just as dead sure as Muff Potter's a goner. That's what the niggers say, and they know all about these kind of things, Huck." Then they separated, cogitating. When Tom crept in at his bedroom window the night was almost spent. He undressed with excessive caution, and fell asleep congratulating himself that nobody knew of his escapade. He was not aware that the gently-snoring Sid was awake, and had been so for an hour. When Tom awoke, Sid was dressed and gone. There was a late look in the light, a late sense in the atmosphere. He was startled. Why had he not been called--persecuted till he was up, as usual? The thought filled him with bodings. Within five minutes he was dressed and down-stairs, feeling sore and drowsy. The family were still at table, but they had finished breakfast. There was no voice of rebuke; but there were averted eyes; there was a silence and an air of solemnity that struck a chill to the culprit's heart. He sat down and tried to seem gay, but it was up-hill work; it roused no smile, no response, and he lapsed into silence and let his heart sink down to the depths. After breakfast his aunt took him aside, and Tom almost brightened in the hope that he was going to be flogged; but it was not so. His aunt wept over him and asked him how he could go and break her old heart so; and finally told him to go on, and ruin himself and bring her gray hairs with sorrow to the grave, for it was no use for her to try any more. This was worse than a thousand whippings, and Tom's heart was sorer now than his body. He cried, he pleaded for forgiveness, promised to reform over and over again, and then received his dismissal, feeling that he had won but an imperfect forgiveness and established but a feeble confidence. He left the presence too miserable to even feel revengeful toward Sid; and so the latter's prompt retreat through the back gate was unnecessary. He moped to school gloomy and sad, and took his flogging, along with Joe Harper, for playing hookey the day before, with the air of one whose heart was busy with heavier woes and wholly dead to trifles. Then he betook himself to his seat, rested his elbows on his desk and his jaws in his hands, and stared at the wall with the stony stare of suffering that has reached the limit and can no further go. His elbow was pressing against some hard substance. After a long time he slowly and sadly changed his position, and took up this object with a sigh. It was in a paper. He unrolled it. A long, lingering, colossal sigh followed, and his heart broke. It was his brass andiron knob! This final feather broke the camel's back. CHAPTER XI CLOSE upon the hour of noon the whole village was suddenly electrified with the ghastly news. No need of the as yet undreamed-of telegraph; the tale flew from man to man, from group to group, from house to house, with little less than telegraphic speed. Of course the schoolmaster gave holiday for that afternoon; the town would have thought strangely of him if he had not. A gory knife had been found close to the murdered man, and it had been recognized by somebody as belonging to Muff Potter--so the story ran. And it was said that a belated citizen had come upon Potter washing himself in the "branch" about one or two o'clock in the morning, and that Potter had at once sneaked off--suspicious circumstances, especially the washing which was not a habit with Potter. It was also said that the town had been ransacked for this "murderer" (the public are not slow in the matter of sifting evidence and arriving at a verdict), but that he could not be found. Horsemen had departed down all the roads in every direction, and the Sheriff "was confident" that he would be captured before night. All the town was drifting toward the graveyard. Tom's heartbreak vanished and he joined the procession, not because he would not a thousand times rather go anywhere else, but because an awful, unaccountable fascination drew him on. Arrived at the dreadful place, he wormed his small body through the crowd and saw the dismal spectacle. It seemed to him an age since he was there before. Somebody pinched his arm. He turned, and his eyes met Huckleberry's. Then both looked elsewhere at once, and wondered if anybody had noticed anything in their mutual glance. But everybody was talking, and intent upon the grisly spectacle before them. "Poor fellow!" "Poor young fellow!" "This ought to be a lesson to grave robbers!" "Muff Potter'll hang for this if they catch him!" This was the drift of remark; and the minister said, "It was a judgment; His hand is here." Now Tom shivered from head to heel; for his eye fell upon the stolid face of Injun Joe. At this moment the crowd began to sway and struggle, and voices shouted, "It's him! it's him! he's coming himself!" "Who? Who?" from twenty voices. "Muff Potter!" "Hallo, he's stopped!--Look out, he's turning! Don't let him get away!" People in the branches of the trees over Tom's head said he wasn't trying to get away--he only looked doubtful and perplexed. "Infernal impudence!" said a bystander; "wanted to come and take a quiet look at his work, I reckon--didn't expect any company." The crowd fell apart, now, and the Sheriff came through, ostentatiously leading Potter by the arm. The poor fellow's face was haggard, and his eyes showed the fear that was upon him. When he stood before the murdered man, he shook as with a palsy, and he put his face in his hands and burst into tears. "I didn't do it, friends," he sobbed; "'pon my word and honor I never done it." "Who's accused you?" shouted a voice. This shot seemed to carry home. Potter lifted his face and looked around him with a pathetic hopelessness in his eyes. He saw Injun Joe, and exclaimed: "Oh, Injun Joe, you promised me you'd never--" "Is that your knife?" and it was thrust before him by the Sheriff. Potter would have fallen if they had not caught him and eased him to the ground. Then he said: "Something told me 't if I didn't come back and get--" He shuddered; then waved his nerveless hand with a vanquished gesture and said, "Tell 'em, Joe, tell 'em--it ain't any use any more." Then Huckleberry and Tom stood dumb and staring, and heard the stony-hearted liar reel off his serene statement, they expecting every moment that the clear sky would deliver God's lightnings upon his head, and wondering to see how long the stroke was delayed. And when he had finished and still stood alive and whole, their wavering impulse to break their oath and save the poor betrayed prisoner's life faded and vanished away, for plainly this miscreant had sold himself to Satan and it would be fatal to meddle with the property of such a power as that. "Why didn't you leave? What did you want to come here for?" somebody said. "I couldn't help it--I couldn't help it," Potter moaned. "I wanted to run away, but I couldn't seem to come anywhere but here." And he fell to sobbing again. Injun Joe repeated his statement, just as calmly, a few minutes afterward on the inquest, under oath; and the boys, seeing that the lightnings were still withheld, were confirmed in their belief that Joe had sold himself to the devil. He was now become, to them, the most balefully interesting object they had ever looked upon, and they could not take their fascinated eyes from his face. They inwardly resolved to watch him nights, when opportunity should offer, in the hope of getting a glimpse of his dread master. Injun Joe helped to raise the body of the murdered man and put it in a wagon for removal; and it was whispered through the shuddering crowd that the wound bled a little! The boys thought that this happy circumstance would turn suspicion in the right direction; but they were disappointed, for more than one villager remarked: "It was within three feet of Muff Potter when it done it." Tom's fearful secret and gnawing conscience disturbed his sleep for as much as a week after this; and at breakfast one morning Sid said: "Tom, you pitch around and talk in your sleep so much that you keep me awake half the time." Tom blanched and dropped his eyes. "It's a bad sign," said Aunt Polly, gravely. "What you got on your mind, Tom?" "Nothing. Nothing 't I know of." But the boy's hand shook so that he spilled his coffee. "And you do talk such stuff," Sid said. "Last night you said, 'It's blood, it's blood, that's what it is!' You said that over and over. And you said, 'Don't torment me so--I'll tell!' Tell WHAT? What is it you'll tell?" Everything was swimming before Tom. There is no telling what might have happened, now, but luckily the concern passed out of Aunt Polly's face and she came to Tom's relief without knowing it. She said: "Sho! It's that dreadful murder. I dream about it most every night myself. Sometimes I dream it's me that done it." Mary said she had been affected much the same way. Sid seemed satisfied. Tom got out of the presence as quick as he plausibly could, and after that he complained of toothache for a week, and tied up his jaws every night. He never knew that Sid lay nightly watching, and frequently slipped the bandage free and then leaned on his elbow listening a good while at a time, and afterward slipped the bandage back to its place again. Tom's distress of mind wore off gradually and the toothache grew irksome and was discarded. If Sid really managed to make anything out of Tom's disjointed mutterings, he kept it to himself. It seemed to Tom that his schoolmates never would get done holding inquests on dead cats, and thus keeping his trouble present to his mind. Sid noticed that Tom never was coroner at one of these inquiries, though it had been his habit to take the lead in all new enterprises; he noticed, too, that Tom never acted as a witness--and that was strange; and Sid did not overlook the fact that Tom even showed a marked aversion to these inquests, and always avoided them when he could. Sid marvelled, but said nothing. However, even inquests went out of vogue at last, and ceased to torture Tom's conscience. Every day or two, during this time of sorrow, Tom watched his opportunity and went to the little grated jail-window and smuggled such small comforts through to the "murderer" as he could get hold of. The jail was a trifling little brick den that stood in a marsh at the edge of the village, and no guards were afforded for it; indeed, it was seldom occupied. These offerings greatly helped to ease Tom's conscience. The villagers had a strong desire to tar-and-feather Injun Joe and ride him on a rail, for body-snatching, but so formidable was his character that nobody could be found who was willing to take the lead in the matter, so it was dropped. He had been careful to begin both of his inquest-statements with the fight, without confessing the grave-robbery that preceded it; therefore it was deemed wisest not to try the case in the courts at present. CHAPTER XII ONE of the reasons why Tom's mind had drifted away from its secret troubles was, that it had found a new and weighty matter to interest itself about. Becky Thatcher had stopped coming to school. Tom had struggled with his pride a few days, and tried to "whistle her down the wind," but failed. He began to find himself hanging around her father's house, nights, and feeling very miserable. She was ill. What if she should die! There was distraction in the thought. He no longer took an interest in war, nor even in piracy. The charm of life was gone; there was nothing but dreariness left. He put his hoop away, and his bat; there was no joy in them any more. His aunt was concerned. She began to try all manner of remedies on him. She was one of those people who are infatuated with patent medicines and all new-fangled methods of producing health or mending it. She was an inveterate experimenter in these things. When something fresh in this line came out she was in a fever, right away, to try it; not on herself, for she was never ailing, but on anybody else that came handy. She was a subscriber for all the "Health" periodicals and phrenological frauds; and the solemn ignorance they were inflated with was breath to her nostrils. All the "rot" they contained about ventilation, and how to go to bed, and how to get up, and what to eat, and what to drink, and how much exercise to take, and what frame of mind to keep one's self in, and what sort of clothing to wear, was all gospel to her, and she never observed that her health-journals of the current month customarily upset everything they had recommended the month before. She was as simple-hearted and honest as the day was long, and so she was an easy victim. She gathered together her quack periodicals and her quack medicines, and thus armed with death, went about on her pale horse, metaphorically speaking, with "hell following after." But she never suspected that she was not an angel of healing and the balm of Gilead in disguise, to the suffering neighbors. The water treatment was new, now, and Tom's low condition was a windfall to her. She had him out at daylight every morning, stood him up in the woodshed and drowned him with a deluge of cold water; then she scrubbed him down with a towel like a file, and so brought him to; then she rolled him up in a wet sheet and put him away under blankets till she sweated his soul clean and "the yellow stains of it came through his pores"--as Tom said. Yet notwithstanding all this, the boy grew more and more melancholy and pale and dejected. She added hot baths, sitz baths, shower baths, and plunges. The boy remained as dismal as a hearse. She began to assist the water with a slim oatmeal diet and blister-plasters. She calculated his capacity as she would a jug's, and filled him up every day with quack cure-alls. Tom had become indifferent to persecution by this time. This phase filled the old lady's heart with consternation. This indifference must be broken up at any cost. Now she heard of Pain-killer for the first time. She ordered a lot at once. She tasted it and was filled with gratitude. It was simply fire in a liquid form. She dropped the water treatment and everything else, and pinned her faith to Pain-killer. She gave Tom a teaspoonful and watched with the deepest anxiety for the result. Her troubles were instantly at rest, her soul at peace again; for the "indifference" was broken up. The boy could not have shown a wilder, heartier interest, if she had built a fire under him. Tom felt that it was time to wake up; this sort of life might be romantic enough, in his blighted condition, but it was getting to have too little sentiment and too much distracting variety about it. So he thought over various plans for relief, and finally hit pon that of professing to be fond of Pain-killer. He asked for it so often that he became a nuisance, and his aunt ended by telling him to help himself and quit bothering her. If it had been Sid, she would have had no misgivings to alloy her delight; but since it was Tom, she watched the bottle clandestinely. She found that the medicine did really diminish, but it did not occur to her that the boy was mending the health of a crack in the sitting-room floor with it. One day Tom was in the act of dosing the crack when his aunt's yellow cat came along, purring, eying the teaspoon avariciously, and begging for a taste. Tom said: "Don't ask for it unless you want it, Peter." But Peter signified that he did want it. "You better make sure." Peter was sure. "Now you've asked for it, and I'll give it to you, because there ain't anything mean about me; but if you find you don't like it, you mustn't blame anybody but your own self." Peter was agreeable. So Tom pried his mouth open and poured down the Pain-killer. Peter sprang a couple of yards in the air, and then delivered a war-whoop and set off round and round the room, banging against furniture, upsetting flower-pots, and making general havoc. Next he rose on his hind feet and pranced around, in a frenzy of enjoyment, with his head over his shoulder and his voice proclaiming his unappeasable happiness. Then he went tearing around the house again spreading chaos and destruction in his path. Aunt Polly entered in time to see him throw a few double summersets, deliver a final mighty hurrah, and sail through the open window, carrying the rest of the flower-pots with him. The old lady stood petrified with astonishment, peering over her glasses; Tom lay on the floor expiring with laughter. "Tom, what on earth ails that cat?" "I don't know, aunt," gasped the boy. "Why, I never see anything like it. What did make him act so?" "Deed I don't know, Aunt Polly; cats always act so when they're having a good time." "They do, do they?" There was something in the tone that made Tom apprehensive. "Yes'm. That is, I believe they do." "You DO?" "Yes'm." The old lady was bending down, Tom watching, with interest emphasized by anxiety. Too late he divined her "drift." The handle of the telltale teaspoon was visible under the bed-valance. Aunt Polly took it, held it up. Tom winced, and dropped his eyes. Aunt Polly raised him by the usual handle--his ear--and cracked his head soundly with her thimble. "Now, sir, what did you want to treat that poor dumb beast so, for?" "I done it out of pity for him--because he hadn't any aunt." "Hadn't any aunt!--you numskull. What has that got to do with it?" "Heaps. Because if he'd had one she'd a burnt him out herself! She'd a roasted his bowels out of him 'thout any more feeling than if he was a human!" Aunt Polly felt a sudden pang of remorse. This was putting the thing in a new light; what was cruelty to a cat MIGHT be cruelty to a boy, too. She began to soften; she felt sorry. Her eyes watered a little, and she put her hand on Tom's head and said gently: "I was meaning for the best, Tom. And, Tom, it DID do you good." Tom looked up in her face with just a perceptible twinkle peeping through his gravity. "I know you was meaning for the best, aunty, and so was I with Peter. It done HIM good, too. I never see him get around so since--" "Oh, go 'long with you, Tom, before you aggravate me again. And you try and see if you can't be a good boy, for once, and you needn't take any more medicine." Tom reached school ahead of time. It was noticed that this strange thing had been occurring every day latterly. And now, as usual of late, he hung about the gate of the schoolyard instead of playing with his comrades. He was sick, he said, and he looked it. He tried to seem to be looking everywhere but whither he really was looking--down the road. Presently Jeff Thatcher hove in sight, and Tom's face lighted; he gazed a moment, and then turned sorrowfully away. When Jeff arrived, Tom accosted him; and "led up" warily to opportunities for remark about Becky, but the giddy lad never could see the bait. Tom watched and watched, hoping whenever a frisking frock came in sight, and hating the owner of it as soon as he saw she was not the right one. At last frocks ceased to appear, and he dropped hopelessly into the dumps; he entered the empty schoolhouse and sat down to suffer. Then one more frock passed in at the gate, and Tom's heart gave a great bound. The next instant he was out, and "going on" like an Indian; yelling, laughing, chasing boys, jumping over the fence at risk of life and limb, throwing handsprings, standing on his head--doing all the heroic things he could conceive of, and keeping a furtive eye out, all the while, to see if Becky Thatcher was noticing. But she seemed to be unconscious of it all; she never looked. Could it be possible that she was not aware that he was there? He carried his exploits to her immediate vicinity; came war-whooping around, snatched a boy's cap, hurled it to the roof of the schoolhouse, broke through a group of boys, tumbling them in every direction, and fell sprawling, himself, under Becky's nose, almost upsetting her--and she turned, with her nose in the air, and he heard her say: "Mf! some people think they're mighty smart--always showing off!" Tom's cheeks burned. He gathered himself up and sneaked off, crushed and crestfallen. CHAPTER XIII TOM'S mind was made up now. He was gloomy and desperate. He was a forsaken, friendless boy, he said; nobody loved him; when they found out what they had driven him to, perhaps they would be sorry; he had tried to do right and get along, but they would not let him; since nothing would do them but to be rid of him, let it be so; and let them blame HIM for the consequences--why shouldn't they? What right had the friendless to complain? Yes, they had forced him to it at last: he would lead a life of crime. There was no choice. By this time he was far down Meadow Lane, and the bell for school to "take up" tinkled faintly upon his ear. He sobbed, now, to think he should never, never hear that old familiar sound any more--it was very hard, but it was forced on him; since he was driven out into the cold world, he must submit--but he forgave them. Then the sobs came thick and fast. Just at this point he met his soul's sworn comrade, Joe Harper --hard-eyed, and with evidently a great and dismal purpose in his heart. Plainly here were "two souls with but a single thought." Tom, wiping his eyes with his sleeve, began to blubber out something about a resolution to escape from hard usage and lack of sympathy at home by roaming abroad into the great world never to return; and ended by hoping that Joe would not forget him. But it transpired that this was a request which Joe had just been going to make of Tom, and had come to hunt him up for that purpose. His mother had whipped him for drinking some cream which he had never tasted and knew nothing about; it was plain that she was tired of him and wished him to go; if she felt that way, there was nothing for him to do but succumb; he hoped she would be happy, and never regret having driven her poor boy out into the unfeeling world to suffer and die. As the two boys walked sorrowing along, they made a new compact to stand by each other and be brothers and never separate till death relieved them of their troubles. Then they began to lay their plans. Joe was for being a hermit, and living on crusts in a remote cave, and dying, some time, of cold and want and grief; but after listening to Tom, he conceded that there were some conspicuous advantages about a life of crime, and so he consented to be a pirate. Three miles below St. Petersburg, at a point where the Mississippi River was a trifle over a mile wide, there was a long, narrow, wooded island, with a shallow bar at the head of it, and this offered well as a rendezvous. It was not inhabited; it lay far over toward the further shore, abreast a dense and almost wholly unpeopled forest. So Jackson's Island was chosen. Who were to be the subjects of their piracies was a matter that did not occur to them. Then they hunted up Huckleberry Finn, and he joined them promptly, for all careers were one to him; he was indifferent. They presently separated to meet at a lonely spot on the river-bank two miles above the village at the favorite hour--which was midnight. There was a small log raft there which they meant to capture. Each would bring hooks and lines, and such provision as he could steal in the most dark and mysterious way--as became outlaws. And before the afternoon was done, they had all managed to enjoy the sweet glory of spreading the fact that pretty soon the town would "hear something." All who got this vague hint were cautioned to "be mum and wait." About midnight Tom arrived with a boiled ham and a few trifles, and stopped in a dense undergrowth on a small bluff overlooking the meeting-place. It was starlight, and very still. The mighty river lay like an ocean at rest. Tom listened a moment, but no sound disturbed the quiet. Then he gave a low, distinct whistle. It was answered from under the bluff. Tom whistled twice more; these signals were answered in the same way. Then a guarded voice said: "Who goes there?" "Tom Sawyer, the Black Avenger of the Spanish Main. Name your names." "Huck Finn the Red-Handed, and Joe Harper the Terror of the Seas." Tom had furnished these titles, from his favorite literature. "'Tis well. Give the countersign." Two hoarse whispers delivered the same awful word simultaneously to the brooding night: "BLOOD!" Then Tom tumbled his ham over the bluff and let himself down after it, tearing both skin and clothes to some extent in the effort. There was an easy, comfortable path along the shore under the bluff, but it lacked the advantages of difficulty and danger so valued by a pirate. The Terror of the Seas had brought a side of bacon, and had about worn himself out with getting it there. Finn the Red-Handed had stolen a skillet and a quantity of half-cured leaf tobacco, and had also brought a few corn-cobs to make pipes with. But none of the pirates smoked or "chewed" but himself. The Black Avenger of the Spanish Main said it would never do to start without some fire. That was a wise thought; matches were hardly known there in that day. They saw a fire smouldering upon a great raft a hundred yards above, and they went stealthily thither and helped themselves to a chunk. They made an imposing adventure of it, saying, "Hist!" every now and then, and suddenly halting with finger on lip; moving with hands on imaginary dagger-hilts; and giving orders in dismal whispers that if "the foe" stirred, to "let him have it to the hilt," because "dead men tell no tales." They knew well enough that the raftsmen were all down at the village laying in stores or having a spree, but still that was no excuse for their conducting this thing in an unpiratical way. They shoved off, presently, Tom in command, Huck at the after oar and Joe at the forward. Tom stood amidships, gloomy-browed, and with folded arms, and gave his orders in a low, stern whisper: "Luff, and bring her to the wind!" "Aye-aye, sir!" "Steady, steady-y-y-y!" "Steady it is, sir!" "Let her go off a point!" "Point it is, sir!" As the boys steadily and monotonously drove the raft toward mid-stream it was no doubt understood that these orders were given only for "style," and were not intended to mean anything in particular. "What sail's she carrying?" "Courses, tops'ls, and flying-jib, sir." "Send the r'yals up! Lay out aloft, there, half a dozen of ye --foretopmaststuns'l! Lively, now!" "Aye-aye, sir!" "Shake out that maintogalans'l! Sheets and braces! NOW my hearties!" "Aye-aye, sir!" "Hellum-a-lee--hard a port! Stand by to meet her when she comes! Port, port! NOW, men! With a will! Stead-y-y-y!" "Steady it is, sir!" The raft drew beyond the middle of the river; the boys pointed her head right, and then lay on their oars. The river was not high, so there was not more than a two or three mile current. Hardly a word was said during the next three-quarters of an hour. Now the raft was passing before the distant town. Two or three glimmering lights showed where it lay, peacefully sleeping, beyond the vague vast sweep of star-gemmed water, unconscious of the tremendous event that was happening. The Black Avenger stood still with folded arms, "looking his last" upon the scene of his former joys and his later sufferings, and wishing "she" could see him now, abroad on the wild sea, facing peril and death with dauntless heart, going to his doom with a grim smile on his lips. It was but a small strain on his imagination to remove Jackson's Island beyond eyeshot of the village, and so he "looked his last" with a broken and satisfied heart. The other pirates were looking their last, too; and they all looked so long that they came near letting the current drift them out of the range of the island. But they discovered the danger in time, and made shift to avert it. About two o'clock in the morning the raft grounded on the bar two hundred yards above the head of the island, and they waded back and forth until they had landed their freight. Part of the little raft's belongings consisted of an old sail, and this they spread over a nook in the bushes for a tent to shelter their provisions; but they themselves would sleep in the open air in good weather, as became outlaws. They built a fire against the side of a great log twenty or thirty steps within the sombre depths of the forest, and then cooked some bacon in the frying-pan for supper, and used up half of the corn "pone" stock they had brought. It seemed glorious sport to be feasting in that wild, free way in the virgin forest of an unexplored and uninhabited island, far from the haunts of men, and they said they never would return to civilization. The climbing fire lit up their faces and threw its ruddy glare upon the pillared tree-trunks of their forest temple, and upon the varnished foliage and festooning vines. When the last crisp slice of bacon was gone, and the last allowance of corn pone devoured, the boys stretched themselves out on the grass, filled with contentment. They could have found a cooler place, but they would not deny themselves such a romantic feature as the roasting camp-fire. "AIN'T it gay?" said Joe. "It's NUTS!" said Tom. "What would the boys say if they could see us?" "Say? Well, they'd just die to be here--hey, Hucky!" "I reckon so," said Huckleberry; "anyways, I'm suited. I don't want nothing better'n this. I don't ever get enough to eat, gen'ally--and here they can't come and pick at a feller and bullyrag him so." "It's just the life for me," said Tom. "You don't have to get up, mornings, and you don't have to go to school, and wash, and all that blame foolishness. You see a pirate don't have to do ANYTHING, Joe, when he's ashore, but a hermit HE has to be praying considerable, and then he don't have any fun, anyway, all by himself that way." "Oh yes, that's so," said Joe, "but I hadn't thought much about it, you know. I'd a good deal rather be a pirate, now that I've tried it." "You see," said Tom, "people don't go much on hermits, nowadays, like they used to in old times, but a pirate's always respected. And a hermit's got to sleep on the hardest place he can find, and put sackcloth and ashes on his head, and stand out in the rain, and--" "What does he put sackcloth and ashes on his head for?" inquired Huck. "I dono. But they've GOT to do it. Hermits always do. You'd have to do that if you was a hermit." "Dern'd if I would," said Huck. "Well, what would you do?" "I dono. But I wouldn't do that." "Why, Huck, you'd HAVE to. How'd you get around it?" "Why, I just wouldn't stand it. I'd run away." "Run away! Well, you WOULD be a nice old slouch of a hermit. You'd be a disgrace." The Red-Handed made no response, being better employed. He had finished gouging out a cob, and now he fitted a weed stem to it, loaded it with tobacco, and was pressing a coal to the charge and blowing a cloud of fragrant smoke--he was in the full bloom of luxurious contentment. The other pirates envied him this majestic vice, and secretly resolved to acquire it shortly. Presently Huck said: "What does pirates have to do?" Tom said: "Oh, they have just a bully time--take ships and burn them, and get the money and bury it in awful places in their island where there's ghosts and things to watch it, and kill everybody in the ships--make 'em walk a plank." "And they carry the women to the island," said Joe; "they don't kill the women." "No," assented Tom, "they don't kill the women--they're too noble. And the women's always beautiful, too. "And don't they wear the bulliest clothes! Oh no! All gold and silver and di'monds," said Joe, with enthusiasm. "Who?" said Huck. "Why, the pirates." Huck scanned his own clothing forlornly. "I reckon I ain't dressed fitten for a pirate," said he, with a regretful pathos in his voice; "but I ain't got none but these." But the other boys told him the fine clothes would come fast enough, after they should have begun their adventures. They made him understand that his poor rags would do to begin with, though it was customary for wealthy pirates to start with a proper wardrobe. Gradually their talk died out and drowsiness began to steal upon the eyelids of the little waifs. The pipe dropped from the fingers of the Red-Handed, and he slept the sleep of the conscience-free and the weary. The Terror of the Seas and the Black Avenger of the Spanish Main had more difficulty in getting to sleep. They said their prayers inwardly, and lying down, since there was nobody there with authority to make them kneel and recite aloud; in truth, they had a mind not to say them at all, but they were afraid to proceed to such lengths as that, lest they might call down a sudden and special thunderbolt from heaven. Then at once they reached and hovered upon the imminent verge of sleep--but an intruder came, now, that would not "down." It was conscience. They began to feel a vague fear that they had been doing wrong to run away; and next they thought of the stolen meat, and then the real torture came. They tried to argue it away by reminding conscience that they had purloined sweetmeats and apples scores of times; but conscience was not to be appeased by such thin plausibilities; it seemed to them, in the end, that there was no getting around the stubborn fact that taking sweetmeats was only "hooking," while taking bacon and hams and such valuables was plain simple stealing--and there was a command against that in the Bible. So they inwardly resolved that so long as they remained in the business, their piracies should not again be sullied with the crime of stealing. Then conscience granted a truce, and these curiously inconsistent pirates fell peacefully to sleep. CHAPTER XIV WHEN Tom awoke in the morning, he wondered where he was. He sat up and rubbed his eyes and looked around. Then he comprehended. It was the cool gray dawn, and there was a delicious sense of repose and peace in the deep pervading calm and silence of the woods. Not a leaf stirred; not a sound obtruded upon great Nature's meditation. Beaded dewdrops stood upon the leaves and grasses. A white layer of ashes covered the fire, and a thin blue breath of smoke rose straight into the air. Joe and Huck still slept. Now, far away in the woods a bird called; another answered; presently the hammering of a woodpecker was heard. Gradually the cool dim gray of the morning whitened, and as gradually sounds multiplied and life manifested itself. The marvel of Nature shaking off sleep and going to work unfolded itself to the musing boy. A little green worm came crawling over a dewy leaf, lifting two-thirds of his body into the air from time to time and "sniffing around," then proceeding again--for he was measuring, Tom said; and when the worm approached him, of its own accord, he sat as still as a stone, with his hopes rising and falling, by turns, as the creature still came toward him or seemed inclined to go elsewhere; and when at last it considered a painful moment with its curved body in the air and then came decisively down upon Tom's leg and began a journey over him, his whole heart was glad--for that meant that he was going to have a new suit of clothes--without the shadow of a doubt a gaudy piratical uniform. Now a procession of ants appeared, from nowhere in particular, and went about their labors; one struggled manfully by with a dead spider five times as big as itself in its arms, and lugged it straight up a tree-trunk. A brown spotted lady-bug climbed the dizzy height of a grass blade, and Tom bent down close to it and said, "Lady-bug, lady-bug, fly away home, your house is on fire, your children's alone," and she took wing and went off to see about it --which did not surprise the boy, for he knew of old that this insect was credulous about conflagrations, and he had practised upon its simplicity more than once. A tumblebug came next, heaving sturdily at its ball, and Tom touched the creature, to see it shut its legs against its body and pretend to be dead. The birds were fairly rioting by this time. A catbird, the Northern mocker, lit in a tree over Tom's head, and trilled out her imitations of her neighbors in a rapture of enjoyment; then a shrill jay swept down, a flash of blue flame, and stopped on a twig almost within the boy's reach, cocked his head to one side and eyed the strangers with a consuming curiosity; a gray squirrel and a big fellow of the "fox" kind came skurrying along, sitting up at intervals to inspect and chatter at the boys, for the wild things had probably never seen a human being before and scarcely knew whether to be afraid or not. All Nature was wide awake and stirring, now; long lances of sunlight pierced down through the dense foliage far and near, and a few butterflies came fluttering upon the scene. Tom stirred up the other pirates and they all clattered away with a shout, and in a minute or two were stripped and chasing after and tumbling over each other in the shallow limpid water of the white sandbar. They felt no longing for the little village sleeping in the distance beyond the majestic waste of water. A vagrant current or a slight rise in the river had carried off their raft, but this only gratified them, since its going was something like burning the bridge between them and civilization. They came back to camp wonderfully refreshed, glad-hearted, and ravenous; and they soon had the camp-fire blazing up again. Huck found a spring of clear cold water close by, and the boys made cups of broad oak or hickory leaves, and felt that water, sweetened with such a wildwood charm as that, would be a good enough substitute for coffee. While Joe was slicing bacon for breakfast, Tom and Huck asked him to hold on a minute; they stepped to a promising nook in the river-bank and threw in their lines; almost immediately they had reward. Joe had not had time to get impatient before they were back again with some handsome bass, a couple of sun-perch and a small catfish--provisions enough for quite a family. They fried the fish with the bacon, and were astonished; for no fish had ever seemed so delicious before. They did not know that the quicker a fresh-water fish is on the fire after he is caught the better he is; and they reflected little upon what a sauce open-air sleeping, open-air exercise, bathing, and a large ingredient of hunger make, too. They lay around in the shade, after breakfast, while Huck had a smoke, and then went off through the woods on an exploring expedition. They tramped gayly along, over decaying logs, through tangled underbrush, among solemn monarchs of the forest, hung from their crowns to the ground with a drooping regalia of grape-vines. Now and then they came upon snug nooks carpeted with grass and jeweled with flowers. They found plenty of things to be delighted with, but nothing to be astonished at. They discovered that the island was about three miles long and a quarter of a mile wide, and that the shore it lay closest to was only separated from it by a narrow channel hardly two hundred yards wide. They took a swim about every hour, so it was close upon the middle of the afternoon when they got back to camp. They were too hungry to stop to fish, but they fared sumptuously upon cold ham, and then threw themselves down in the shade to talk. But the talk soon began to drag, and then died. The stillness, the solemnity that brooded in the woods, and the sense of loneliness, began to tell upon the spirits of the boys. They fell to thinking. A sort of undefined longing crept upon them. This took dim shape, presently--it was budding homesickness. Even Finn the Red-Handed was dreaming of his doorsteps and empty hogsheads. But they were all ashamed of their weakness, and none was brave enough to speak his thought. For some time, now, the boys had been dully conscious of a peculiar sound in the distance, just as one sometimes is of the ticking of a clock which he takes no distinct note of. But now this mysterious sound became more pronounced, and forced a recognition. The boys started, glanced at each other, and then each assumed a listening attitude. There was a long silence, profound and unbroken; then a deep, sullen boom came floating down out of the distance. "What is it!" exclaimed Joe, under his breath. "I wonder," said Tom in a whisper. "'Tain't thunder," said Huckleberry, in an awed tone, "becuz thunder--" "Hark!" said Tom. "Listen--don't talk." They waited a time that seemed an age, and then the same muffled boom troubled the solemn hush. "Let's go and see." They sprang to their feet and hurried to the shore toward the town. They parted the bushes on the bank and peered out over the water. The little steam ferryboat was about a mile below the village, drifting with the current. Her broad deck seemed crowded with people. There were a great many skiffs rowing about or floating with the stream in the neighborhood of the ferryboat, but the boys could not determine what the men in them were doing. Presently a great jet of white smoke burst from the ferryboat's side, and as it expanded and rose in a lazy cloud, that same dull throb of sound was borne to the listeners again. "I know now!" exclaimed Tom; "somebody's drownded!" "That's it!" said Huck; "they done that last summer, when Bill Turner got drownded; they shoot a cannon over the water, and that makes him come up to the top. Yes, and they take loaves of bread and put quicksilver in 'em and set 'em afloat, and wherever there's anybody that's drownded, they'll float right there and stop." "Yes, I've heard about that," said Joe. "I wonder what makes the bread do that." "Oh, it ain't the bread, so much," said Tom; "I reckon it's mostly what they SAY over it before they start it out." "But they don't say anything over it," said Huck. "I've seen 'em and they don't." "Well, that's funny," said Tom. "But maybe they say it to themselves. Of COURSE they do. Anybody might know that." The other boys agreed that there was reason in what Tom said, because an ignorant lump of bread, uninstructed by an incantation, could not be expected to act very intelligently when set upon an errand of such gravity. "By jings, I wish I was over there, now," said Joe. "I do too" said Huck "I'd give heaps to know who it is." The boys still listened and watched. Presently a revealing thought flashed through Tom's mind, and he exclaimed: "Boys, I know who's drownded--it's us!" They felt like heroes in an instant. Here was a gorgeous triumph; they were missed; they were mourned; hearts were breaking on their account; tears were being shed; accusing memories of unkindness to these poor lost lads were rising up, and unavailing regrets and remorse were being indulged; and best of all, the departed were the talk of the whole town, and the envy of all the boys, as far as this dazzling notoriety was concerned. This was fine. It was worth while to be a pirate, after all. As twilight drew on, the ferryboat went back to her accustomed business and the skiffs disappeared. The pirates returned to camp. They were jubilant with vanity over their new grandeur and the illustrious trouble they were making. They caught fish, cooked supper and ate it, and then fell to guessing at what the village was thinking and saying about them; and the pictures they drew of the public distress on their account were gratifying to look upon--from their point of view. But when the shadows of night closed them in, they gradually ceased to talk, and sat gazing into the fire, with their minds evidently wandering elsewhere. The excitement was gone, now, and Tom and Joe could not keep back thoughts of certain persons at home who were not enjoying this fine frolic as much as they were. Misgivings came; they grew troubled and unhappy; a sigh or two escaped, unawares. By and by Joe timidly ventured upon a roundabout "feeler" as to how the others might look upon a return to civilization--not right now, but-- Tom withered him with derision! Huck, being uncommitted as yet, joined in with Tom, and the waverer quickly "explained," and was glad to get out of the scrape with as little taint of chicken-hearted homesickness clinging to his garments as he could. Mutiny was effectually laid to rest for the moment. As the night deepened, Huck began to nod, and presently to snore. Joe followed next. Tom lay upon his elbow motionless, for some time, watching the two intently. At last he got up cautiously, on his knees, and went searching among the grass and the flickering reflections flung by the camp-fire. He picked up and inspected several large semi-cylinders of the thin white bark of a sycamore, and finally chose two which seemed to suit him. Then he knelt by the fire and painfully wrote something upon each of these with his "red keel"; one he rolled up and put in his jacket pocket, and the other he put in Joe's hat and removed it to a little distance from the owner. And he also put into the hat certain schoolboy treasures of almost inestimable value--among them a lump of chalk, an India-rubber ball, three fishhooks, and one of that kind of marbles known as a "sure 'nough crystal." Then he tiptoed his way cautiously among the trees till he felt that he was out of hearing, and straightway broke into a keen run in the direction of the sandbar. CHAPTER XV A FEW minutes later Tom was in the shoal water of the bar, wading toward the Illinois shore. Before the depth reached his middle he was half-way over; the current would permit no more wading, now, so he struck out confidently to swim the remaining hundred yards. He swam quartering upstream, but still was swept downward rather faster than he had expected. However, he reached the shore finally, and drifted along till he found a low place and drew himself out. He put his hand on his jacket pocket, found his piece of bark safe, and then struck through the woods, following the shore, with streaming garments. Shortly before ten o'clock he came out into an open place opposite the village, and saw the ferryboat lying in the shadow of the trees and the high bank. Everything was quiet under the blinking stars. He crept down the bank, watching with all his eyes, slipped into the water, swam three or four strokes and climbed into the skiff that did "yawl" duty at the boat's stern. He laid himself down under the thwarts and waited, panting. Presently the cracked bell tapped and a voice gave the order to "cast off." A minute or two later the skiff's head was standing high up, against the boat's swell, and the voyage was begun. Tom felt happy in his success, for he knew it was the boat's last trip for the night. At the end of a long twelve or fifteen minutes the wheels stopped, and Tom slipped overboard and swam ashore in the dusk, landing fifty yards downstream, out of danger of possible stragglers. He flew along unfrequented alleys, and shortly found himself at his aunt's back fence. He climbed over, approached the "ell," and looked in at the sitting-room window, for a light was burning there. There sat Aunt Polly, Sid, Mary, and Joe Harper's mother, grouped together, talking. They were by the bed, and the bed was between them and the door. Tom went to the door and began to softly lift the latch; then he pressed gently and the door yielded a crack; he continued pushing cautiously, and quaking every time it creaked, till he judged he might squeeze through on his knees; so he put his head through and began, warily. "What makes the candle blow so?" said Aunt Polly. Tom hurried up. "Why, that door's open, I believe. Why, of course it is. No end of strange things now. Go 'long and shut it, Sid." Tom disappeared under the bed just in time. He lay and "breathed" himself for a time, and then crept to where he could almost touch his aunt's foot. "But as I was saying," said Aunt Polly, "he warn't BAD, so to say --only mischEEvous. Only just giddy, and harum-scarum, you know. He warn't any more responsible than a colt. HE never meant any harm, and he was the best-hearted boy that ever was"--and she began to cry. "It was just so with my Joe--always full of his devilment, and up to every kind of mischief, but he was just as unselfish and kind as he could be--and laws bless me, to think I went and whipped him for taking that cream, never once recollecting that I throwed it out myself because it was sour, and I never to see him again in this world, never, never, never, poor abused boy!" And Mrs. Harper sobbed as if her heart would break. "I hope Tom's better off where he is," said Sid, "but if he'd been better in some ways--" "SID!" Tom felt the glare of the old lady's eye, though he could not see it. "Not a word against my Tom, now that he's gone! God'll take care of HIM--never you trouble YOURself, sir! Oh, Mrs. Harper, I don't know how to give him up! I don't know how to give him up! He was such a comfort to me, although he tormented my old heart out of me, 'most." "The Lord giveth and the Lord hath taken away--Blessed be the name of the Lord! But it's so hard--Oh, it's so hard! Only last Saturday my Joe busted a firecracker right under my nose and I knocked him sprawling. Little did I know then, how soon--Oh, if it was to do over again I'd hug him and bless him for it." "Yes, yes, yes, I know just how you feel, Mrs. Harper, I know just exactly how you feel. No longer ago than yesterday noon, my Tom took and filled the cat full of Pain-killer, and I did think the cretur would tear the house down. And God forgive me, I cracked Tom's head with my thimble, poor boy, poor dead boy. But he's out of all his troubles now. And the last words I ever heard him say was to reproach--" But this memory was too much for the old lady, and she broke entirely down. Tom was snuffling, now, himself--and more in pity of himself than anybody else. He could hear Mary crying, and putting in a kindly word for him from time to time. He began to have a nobler opinion of himself than ever before. Still, he was sufficiently touched by his aunt's grief to long to rush out from under the bed and overwhelm her with joy--and the theatrical gorgeousness of the thing appealed strongly to his nature, too, but he resisted and lay still. He went on listening, and gathered by odds and ends that it was conjectured at first that the boys had got drowned while taking a swim; then the small raft had been missed; next, certain boys said the missing lads had promised that the village should "hear something" soon; the wise-heads had "put this and that together" and decided that the lads had gone off on that raft and would turn up at the next town below, presently; but toward noon the raft had been found, lodged against the Missouri shore some five or six miles below the village --and then hope perished; they must be drowned, else hunger would have driven them home by nightfall if not sooner. It was believed that the search for the bodies had been a fruitless effort merely because the drowning must have occurred in mid-channel, since the boys, being good swimmers, would otherwise have escaped to shore. This was Wednesday night. If the bodies continued missing until Sunday, all hope would be given over, and the funerals would be preached on that morning. Tom shuddered. Mrs. Harper gave a sobbing good-night and turned to go. Then with a mutual impulse the two bereaved women flung themselves into each other's arms and had a good, consoling cry, and then parted. Aunt Polly was tender far beyond her wont, in her good-night to Sid and Mary. Sid snuffled a bit and Mary went off crying with all her heart. Aunt Polly knelt down and prayed for Tom so touchingly, so appealingly, and with such measureless love in her words and her old trembling voice, that he was weltering in tears again, long before she was through. He had to keep still long after she went to bed, for she kept making broken-hearted ejaculations from time to time, tossing unrestfully, and turning over. But at last she was still, only moaning a little in her sleep. Now the boy stole out, rose gradually by the bedside, shaded the candle-light with his hand, and stood regarding her. His heart was full of pity for her. He took out his sycamore scroll and placed it by the candle. But something occurred to him, and he lingered considering. His face lighted with a happy solution of his thought; he put the bark hastily in his pocket. Then he bent over and kissed the faded lips, and straightway made his stealthy exit, latching the door behind him. He threaded his way back to the ferry landing, found nobody at large there, and walked boldly on board the boat, for he knew she was tenantless except that there was a watchman, who always turned in and slept like a graven image. He untied the skiff at the stern, slipped into it, and was soon rowing cautiously upstream. When he had pulled a mile above the village, he started quartering across and bent himself stoutly to his work. He hit the landing on the other side neatly, for this was a familiar bit of work to him. He was moved to capture the skiff, arguing that it might be considered a ship and therefore legitimate prey for a pirate, but he knew a thorough search would be made for it and that might end in revelations. So he stepped ashore and entered the woods. He sat down and took a long rest, torturing himself meanwhile to keep awake, and then started warily down the home-stretch. The night was far spent. It was broad daylight before he found himself fairly abreast the island bar. He rested again until the sun was well up and gilding the great river with its splendor, and then he plunged into the stream. A little later he paused, dripping, upon the threshold of the camp, and heard Joe say: "No, Tom's true-blue, Huck, and he'll come back. He won't desert. He knows that would be a disgrace to a pirate, and Tom's too proud for that sort of thing. He's up to something or other. Now I wonder what?" "Well, the things is ours, anyway, ain't they?" "Pretty near, but not yet, Huck. The writing says they are if he ain't back here to breakfast." "Which he is!" exclaimed Tom, with fine dramatic effect, stepping grandly into camp. A sumptuous breakfast of bacon and fish was shortly provided, and as the boys set to work upon it, Tom recounted (and adorned) his adventures. They were a vain and boastful company of heroes when the tale was done. Then Tom hid himself away in a shady nook to sleep till noon, and the other pirates got ready to fish and explore. CHAPTER XVI AFTER dinner all the gang turned out to hunt for turtle eggs on the bar. They went about poking sticks into the sand, and when they found a soft place they went down on their knees and dug with their hands. Sometimes they would take fifty or sixty eggs out of one hole. They were perfectly round white things a trifle smaller than an English walnut. They had a famous fried-egg feast that night, and another on Friday morning. After breakfast they went whooping and prancing out on the bar, and chased each other round and round, shedding clothes as they went, until they were naked, and then continued the frolic far away up the shoal water of the bar, against the stiff current, which latter tripped their legs from under them from time to time and greatly increased the fun. And now and then they stooped in a group and splashed water in each other's faces with their palms, gradually approaching each other, with averted faces to avoid the strangling sprays, and finally gripping and struggling till the best man ducked his neighbor, and then they all went under in a tangle of white legs and arms and came up blowing, sputtering, laughing, and gasping for breath at one and the same time. When they were well exhausted, they would run out and sprawl on the dry, hot sand, and lie there and cover themselves up with it, and by and by break for the water again and go through the original performance once more. Finally it occurred to them that their naked skin represented flesh-colored "tights" very fairly; so they drew a ring in the sand and had a circus--with three clowns in it, for none would yield this proudest post to his neighbor. Next they got their marbles and played "knucks" and "ring-taw" and "keeps" till that amusement grew stale. Then Joe and Huck had another swim, but Tom would not venture, because he found that in kicking off his trousers he had kicked his string of rattlesnake rattles off his ankle, and he wondered how he had escaped cramp so long without the protection of this mysterious charm. He did not venture again until he had found it, and by that time the other boys were tired and ready to rest. They gradually wandered apart, dropped into the "dumps," and fell to gazing longingly across the wide river to where the village lay drowsing in the sun. Tom found himself writing "BECKY" in the sand with his big toe; he scratched it out, and was angry with himself for his weakness. But he wrote it again, nevertheless; he could not help it. He erased it once more and then took himself out of temptation by driving the other boys together and joining them. But Joe's spirits had gone down almost beyond resurrection. He was so homesick that he could hardly endure the misery of it. The tears lay very near the surface. Huck was melancholy, too. Tom was downhearted, but tried hard not to show it. He had a secret which he was not ready to tell, yet, but if this mutinous depression was not broken up soon, he would have to bring it out. He said, with a great show of cheerfulness: "I bet there's been pirates on this island before, boys. We'll explore it again. They've hid treasures here somewhere. How'd you feel to light on a rotten chest full of gold and silver--hey?" But it roused only faint enthusiasm, which faded out, with no reply. Tom tried one or two other seductions; but they failed, too. It was discouraging work. Joe sat poking up the sand with a stick and looking very gloomy. Finally he said: "Oh, boys, let's give it up. I want to go home. It's so lonesome." "Oh no, Joe, you'll feel better by and by," said Tom. "Just think of the fishing that's here." "I don't care for fishing. I want to go home." "But, Joe, there ain't such another swimming-place anywhere." "Swimming's no good. I don't seem to care for it, somehow, when there ain't anybody to say I sha'n't go in. I mean to go home." "Oh, shucks! Baby! You want to see your mother, I reckon." "Yes, I DO want to see my mother--and you would, too, if you had one. I ain't any more baby than you are." And Joe snuffled a little. "Well, we'll let the cry-baby go home to his mother, won't we, Huck? Poor thing--does it want to see its mother? And so it shall. You like it here, don't you, Huck? We'll stay, won't we?" Huck said, "Y-e-s"--without any heart in it. "I'll never speak to you again as long as I live," said Joe, rising. "There now!" And he moved moodily away and began to dress himself. "Who cares!" said Tom. "Nobody wants you to. Go 'long home and get laughed at. Oh, you're a nice pirate. Huck and me ain't cry-babies. We'll stay, won't we, Huck? Let him go if he wants to. I reckon we can get along without him, per'aps." But Tom was uneasy, nevertheless, and was alarmed to see Joe go sullenly on with his dressing. And then it was discomforting to see Huck eying Joe's preparations so wistfully, and keeping up such an ominous silence. Presently, without a parting word, Joe began to wade off toward the Illinois shore. Tom's heart began to sink. He glanced at Huck. Huck could not bear the look, and dropped his eyes. Then he said: "I want to go, too, Tom. It was getting so lonesome anyway, and now it'll be worse. Let's us go, too, Tom." "I won't! You can all go, if you want to. I mean to stay." "Tom, I better go." "Well, go 'long--who's hendering you." Huck began to pick up his scattered clothes. He said: "Tom, I wisht you'd come, too. Now you think it over. We'll wait for you when we get to shore." "Well, you'll wait a blame long time, that's all." Huck started sorrowfully away, and Tom stood looking after him, with a strong desire tugging at his heart to yield his pride and go along too. He hoped the boys would stop, but they still waded slowly on. It suddenly dawned on Tom that it was become very lonely and still. He made one final struggle with his pride, and then darted after his comrades, yelling: "Wait! Wait! I want to tell you something!" They presently stopped and turned around. When he got to where they were, he began unfolding his secret, and they listened moodily till at last they saw the "point" he was driving at, and then they set up a war-whoop of applause and said it was "splendid!" and said if he had told them at first, they wouldn't have started away. He made a plausible excuse; but his real reason had been the fear that not even the secret would keep them with him any very great length of time, and so he had meant to hold it in reserve as a last seduction. The lads came gayly back and went at their sports again with a will, chattering all the time about Tom's stupendous plan and admiring the genius of it. After a dainty egg and fish dinner, Tom said he wanted to learn to smoke, now. Joe caught at the idea and said he would like to try, too. So Huck made pipes and filled them. These novices had never smoked anything before but cigars made of grape-vine, and they "bit" the tongue, and were not considered manly anyway. Now they stretched themselves out on their elbows and began to puff, charily, and with slender confidence. The smoke had an unpleasant taste, and they gagged a little, but Tom said: "Why, it's just as easy! If I'd a knowed this was all, I'd a learnt long ago." "So would I," said Joe. "It's just nothing." "Why, many a time I've looked at people smoking, and thought well I wish I could do that; but I never thought I could," said Tom. "That's just the way with me, hain't it, Huck? You've heard me talk just that way--haven't you, Huck? I'll leave it to Huck if I haven't." "Yes--heaps of times," said Huck. "Well, I have too," said Tom; "oh, hundreds of times. Once down by the slaughter-house. Don't you remember, Huck? Bob Tanner was there, and Johnny Miller, and Jeff Thatcher, when I said it. Don't you remember, Huck, 'bout me saying that?" "Yes, that's so," said Huck. "That was the day after I lost a white alley. No, 'twas the day before." "There--I told you so," said Tom. "Huck recollects it." "I bleeve I could smoke this pipe all day," said Joe. "I don't feel sick." "Neither do I," said Tom. "I could smoke it all day. But I bet you Jeff Thatcher couldn't." "Jeff Thatcher! Why, he'd keel over just with two draws. Just let him try it once. HE'D see!" "I bet he would. And Johnny Miller--I wish could see Johnny Miller tackle it once." "Oh, don't I!" said Joe. "Why, I bet you Johnny Miller couldn't any more do this than nothing. Just one little snifter would fetch HIM." "'Deed it would, Joe. Say--I wish the boys could see us now." "So do I." "Say--boys, don't say anything about it, and some time when they're around, I'll come up to you and say, 'Joe, got a pipe? I want a smoke.' And you'll say, kind of careless like, as if it warn't anything, you'll say, 'Yes, I got my OLD pipe, and another one, but my tobacker ain't very good.' And I'll say, 'Oh, that's all right, if it's STRONG enough.' And then you'll out with the pipes, and we'll light up just as ca'm, and then just see 'em look!" "By jings, that'll be gay, Tom! I wish it was NOW!" "So do I! And when we tell 'em we learned when we was off pirating, won't they wish they'd been along?" "Oh, I reckon not! I'll just BET they will!" So the talk ran on. But presently it began to flag a trifle, and grow disjointed. The silences widened; the expectoration marvellously increased. Every pore inside the boys' cheeks became a spouting fountain; they could scarcely bail out the cellars under their tongues fast enough to prevent an inundation; little overflowings down their throats occurred in spite of all they could do, and sudden retchings followed every time. Both boys were looking very pale and miserable, now. Joe's pipe dropped from his nerveless fingers. Tom's followed. Both fountains were going furiously and both pumps bailing with might and main. Joe said feebly: "I've lost my knife. I reckon I better go and find it." Tom said, with quivering lips and halting utterance: "I'll help you. You go over that way and I'll hunt around by the spring. No, you needn't come, Huck--we can find it." So Huck sat down again, and waited an hour. Then he found it lonesome, and went to find his comrades. They were wide apart in the woods, both very pale, both fast asleep. But something informed him that if they had had any trouble they had got rid of it. They were not talkative at supper that night. They had a humble look, and when Huck prepared his pipe after the meal and was going to prepare theirs, they said no, they were not feeling very well--something they ate at dinner had disagreed with them. About midnight Joe awoke, and called the boys. There was a brooding oppressiveness in the air that seemed to bode something. The boys huddled themselves together and sought the friendly companionship of the fire, though the dull dead heat of the breathless atmosphere was stifling. They sat still, intent and waiting. The solemn hush continued. Beyond the light of the fire everything was swallowed up in the blackness of darkness. Presently there came a quivering glow that vaguely revealed the foliage for a moment and then vanished. By and by another came, a little stronger. Then another. Then a faint moan came sighing through the branches of the forest and the boys felt a fleeting breath upon their cheeks, and shuddered with the fancy that the Spirit of the Night had gone by. There was a pause. Now a weird flash turned night into day and showed every little grass-blade, separate and distinct, that grew about their feet. And it showed three white, startled faces, too. A deep peal of thunder went rolling and tumbling down the heavens and lost itself in sullen rumblings in the distance. A sweep of chilly air passed by, rustling all the leaves and snowing the flaky ashes broadcast about the fire. Another fierce glare lit up the forest and an instant crash followed that seemed to rend the tree-tops right over the boys' heads. They clung together in terror, in the thick gloom that followed. A few big rain-drops fell pattering upon the leaves. "Quick! boys, go for the tent!" exclaimed Tom. They sprang away, stumbling over roots and among vines in the dark, no two plunging in the same direction. A furious blast roared through the trees, making everything sing as it went. One blinding flash after another came, and peal on peal of deafening thunder. And now a drenching rain poured down and the rising hurricane drove it in sheets along the ground. The boys cried out to each other, but the roaring wind and the booming thunder-blasts drowned their voices utterly. However, one by one they straggled in at last and took shelter under the tent, cold, scared, and streaming with water; but to have company in misery seemed something to be grateful for. They could not talk, the old sail flapped so furiously, even if the other noises would have allowed them. The tempest rose higher and higher, and presently the sail tore loose from its fastenings and went winging away on the blast. The boys seized each others' hands and fled, with many tumblings and bruises, to the shelter of a great oak that stood upon the river-bank. Now the battle was at its highest. Under the ceaseless conflagration of lightning that flamed in the skies, everything below stood out in clean-cut and shadowless distinctness: the bending trees, the billowy river, white with foam, the driving spray of spume-flakes, the dim outlines of the high bluffs on the other side, glimpsed through the drifting cloud-rack and the slanting veil of rain. Every little while some giant tree yielded the fight and fell crashing through the younger growth; and the unflagging thunder-peals came now in ear-splitting explosive bursts, keen and sharp, and unspeakably appalling. The storm culminated in one matchless effort that seemed likely to tear the island to pieces, burn it up, drown it to the tree-tops, blow it away, and deafen every creature in it, all at one and the same moment. It was a wild night for homeless young heads to be out in. But at last the battle was done, and the forces retired with weaker and weaker threatenings and grumblings, and peace resumed her sway. The boys went back to camp, a good deal awed; but they found there was still something to be thankful for, because the great sycamore, the shelter of their beds, was a ruin, now, blasted by the lightnings, and they were not under it when the catastrophe happened. Everything in camp was drenched, the camp-fire as well; for they were but heedless lads, like their generation, and had made no provision against rain. Here was matter for dismay, for they were soaked through and chilled. They were eloquent in their distress; but they presently discovered that the fire had eaten so far up under the great log it had been built against (where it curved upward and separated itself from the ground), that a handbreadth or so of it had escaped wetting; so they patiently wrought until, with shreds and bark gathered from the under sides of sheltered logs, they coaxed the fire to burn again. Then they piled on great dead boughs till they had a roaring furnace, and were glad-hearted once more. They dried their boiled ham and had a feast, and after that they sat by the fire and expanded and glorified their midnight adventure until morning, for there was not a dry spot to sleep on, anywhere around. As the sun began to steal in upon the boys, drowsiness came over them, and they went out on the sandbar and lay down to sleep. They got scorched out by and by, and drearily set about getting breakfast. After the meal they felt rusty, and stiff-jointed, and a little homesick once more. Tom saw the signs, and fell to cheering up the pirates as well as he could. But they cared nothing for marbles, or circus, or swimming, or anything. He reminded them of the imposing secret, and raised a ray of cheer. While it lasted, he got them interested in a new device. This was to knock off being pirates, for a while, and be Indians for a change. They were attracted by this idea; so it was not long before they were stripped, and striped from head to heel with black mud, like so many zebras--all of them chiefs, of course--and then they went tearing through the woods to attack an English settlement. By and by they separated into three hostile tribes, and darted upon each other from ambush with dreadful war-whoops, and killed and scalped each other by thousands. It was a gory day. Consequently it was an extremely satisfactory one. They assembled in camp toward supper-time, hungry and happy; but now a difficulty arose--hostile Indians could not break the bread of hospitality together without first making peace, and this was a simple impossibility without smoking a pipe of peace. There was no other process that ever they had heard of. Two of the savages almost wished they had remained pirates. However, there was no other way; so with such show of cheerfulness as they could muster they called for the pipe and took their whiff as it passed, in due form. And behold, they were glad they had gone into savagery, for they had gained something; they found that they could now smoke a little without having to go and hunt for a lost knife; they did not get sick enough to be seriously uncomfortable. They were not likely to fool away this high promise for lack of effort. No, they practised cautiously, after supper, with right fair success, and so they spent a jubilant evening. They were prouder and happier in their new acquirement than they would have been in the scalping and skinning of the Six Nations. We will leave them to smoke and chatter and brag, since we have no further use for them at present. CHAPTER XVII BUT there was no hilarity in the little town that same tranquil Saturday afternoon. The Harpers, and Aunt Polly's family, were being put into mourning, with great grief and many tears. An unusual quiet possessed the village, although it was ordinarily quiet enough, in all conscience. The villagers conducted their concerns with an absent air, and talked little; but they sighed often. The Saturday holiday seemed a burden to the children. They had no heart in their sports, and gradually gave them up. In the afternoon Becky Thatcher found herself moping about the deserted schoolhouse yard, and feeling very melancholy. But she found nothing there to comfort her. She soliloquized: "Oh, if I only had a brass andiron-knob again! But I haven't got anything now to remember him by." And she choked back a little sob. Presently she stopped, and said to herself: "It was right here. Oh, if it was to do over again, I wouldn't say that--I wouldn't say it for the whole world. But he's gone now; I'll never, never, never see him any more." This thought broke her down, and she wandered away, with tears rolling down her cheeks. Then quite a group of boys and girls--playmates of Tom's and Joe's--came by, and stood looking over the paling fence and talking in reverent tones of how Tom did so-and-so the last time they saw him, and how Joe said this and that small trifle (pregnant with awful prophecy, as they could easily see now!)--and each speaker pointed out the exact spot where the lost lads stood at the time, and then added something like "and I was a-standing just so--just as I am now, and as if you was him--I was as close as that--and he smiled, just this way--and then something seemed to go all over me, like--awful, you know--and I never thought what it meant, of course, but I can see now!" Then there was a dispute about who saw the dead boys last in life, and many claimed that dismal distinction, and offered evidences, more or less tampered with by the witness; and when it was ultimately decided who DID see the departed last, and exchanged the last words with them, the lucky parties took upon themselves a sort of sacred importance, and were gaped at and envied by all the rest. One poor chap, who had no other grandeur to offer, said with tolerably manifest pride in the remembrance: "Well, Tom Sawyer he licked me once." But that bid for glory was a failure. Most of the boys could say that, and so that cheapened the distinction too much. The group loitered away, still recalling memories of the lost heroes, in awed voices. When the Sunday-school hour was finished, the next morning, the bell began to toll, instead of ringing in the usual way. It was a very still Sabbath, and the mournful sound seemed in keeping with the musing hush that lay upon nature. The villagers began to gather, loitering a moment in the vestibule to converse in whispers about the sad event. But there was no whispering in the house; only the funereal rustling of dresses as the women gathered to their seats disturbed the silence there. None could remember when the little church had been so full before. There was finally a waiting pause, an expectant dumbness, and then Aunt Polly entered, followed by Sid and Mary, and they by the Harper family, all in deep black, and the whole congregation, the old minister as well, rose reverently and stood until the mourners were seated in the front pew. There was another communing silence, broken at intervals by muffled sobs, and then the minister spread his hands abroad and prayed. A moving hymn was sung, and the text followed: "I am the Resurrection and the Life." As the service proceeded, the clergyman drew such pictures of the graces, the winning ways, and the rare promise of the lost lads that every soul there, thinking he recognized these pictures, felt a pang in remembering that he had persistently blinded himself to them always before, and had as persistently seen only faults and flaws in the poor boys. The minister related many a touching incident in the lives of the departed, too, which illustrated their sweet, generous natures, and the people could easily see, now, how noble and beautiful those episodes were, and remembered with grief that at the time they occurred they had seemed rank rascalities, well deserving of the cowhide. The congregation became more and more moved, as the pathetic tale went on, till at last the whole company broke down and joined the weeping mourners in a chorus of anguished sobs, the preacher himself giving way to his feelings, and crying in the pulpit. There was a rustle in the gallery, which nobody noticed; a moment later the church door creaked; the minister raised his streaming eyes above his handkerchief, and stood transfixed! First one and then another pair of eyes followed the minister's, and then almost with one impulse the congregation rose and stared while the three dead boys came marching up the aisle, Tom in the lead, Joe next, and Huck, a ruin of drooping rags, sneaking sheepishly in the rear! They had been hid in the unused gallery listening to their own funeral sermon! Aunt Polly, Mary, and the Harpers threw themselves upon their restored ones, smothered them with kisses and poured out thanksgivings, while poor Huck stood abashed and uncomfortable, not knowing exactly what to do or where to hide from so many unwelcoming eyes. He wavered, and started to slink away, but Tom seized him and said: "Aunt Polly, it ain't fair. Somebody's got to be glad to see Huck." "And so they shall. I'm glad to see him, poor motherless thing!" And the loving attentions Aunt Polly lavished upon him were the one thing capable of making him more uncomfortable than he was before. Suddenly the minister shouted at the top of his voice: "Praise God from whom all blessings flow--SING!--and put your hearts in it!" And they did. Old Hundred swelled up with a triumphant burst, and while it shook the rafters Tom Sawyer the Pirate looked around upon the envying juveniles about him and confessed in his heart that this was the proudest moment of his life. As the "sold" congregation trooped out they said they would almost be willing to be made ridiculous again to hear Old Hundred sung like that once more. Tom got more cuffs and kisses that day--according to Aunt Polly's varying moods--than he had earned before in a year; and he hardly knew which expressed the most gratefulness to God and affection for himself. CHAPTER XVIII THAT was Tom's great secret--the scheme to return home with his brother pirates and attend their own funerals. They had paddled over to the Missouri shore on a log, at dusk on Saturday, landing five or six miles below the village; they had slept in the woods at the edge of the town till nearly daylight, and had then crept through back lanes and alleys and finished their sleep in the gallery of the church among a chaos of invalided benches. At breakfast, Monday morning, Aunt Polly and Mary were very loving to Tom, and very attentive to his wants. There was an unusual amount of talk. In the course of it Aunt Polly said: "Well, I don't say it wasn't a fine joke, Tom, to keep everybody suffering 'most a week so you boys had a good time, but it is a pity you could be so hard-hearted as to let me suffer so. If you could come over on a log to go to your funeral, you could have come over and give me a hint some way that you warn't dead, but only run off." "Yes, you could have done that, Tom," said Mary; "and I believe you would if you had thought of it." "Would you, Tom?" said Aunt Polly, her face lighting wistfully. "Say, now, would you, if you'd thought of it?" "I--well, I don't know. 'Twould 'a' spoiled everything." "Tom, I hoped you loved me that much," said Aunt Polly, with a grieved tone that discomforted the boy. "It would have been something if you'd cared enough to THINK of it, even if you didn't DO it." "Now, auntie, that ain't any harm," pleaded Mary; "it's only Tom's giddy way--he is always in such a rush that he never thinks of anything." "More's the pity. Sid would have thought. And Sid would have come and DONE it, too. Tom, you'll look back, some day, when it's too late, and wish you'd cared a little more for me when it would have cost you so little." "Now, auntie, you know I do care for you," said Tom. "I'd know it better if you acted more like it." "I wish now I'd thought," said Tom, with a repentant tone; "but I dreamt about you, anyway. That's something, ain't it?" "It ain't much--a cat does that much--but it's better than nothing. What did you dream?" "Why, Wednesday night I dreamt that you was sitting over there by the bed, and Sid was sitting by the woodbox, and Mary next to him." "Well, so we did. So we always do. I'm glad your dreams could take even that much trouble about us." "And I dreamt that Joe Harper's mother was here." "Why, she was here! Did you dream any more?" "Oh, lots. But it's so dim, now." "Well, try to recollect--can't you?" "Somehow it seems to me that the wind--the wind blowed the--the--" "Try harder, Tom! The wind did blow something. Come!" Tom pressed his fingers on his forehead an anxious minute, and then said: "I've got it now! I've got it now! It blowed the candle!" "Mercy on us! Go on, Tom--go on!" "And it seems to me that you said, 'Why, I believe that that door--'" "Go ON, Tom!" "Just let me study a moment--just a moment. Oh, yes--you said you believed the door was open." "As I'm sitting here, I did! Didn't I, Mary! Go on!" "And then--and then--well I won't be certain, but it seems like as if you made Sid go and--and--" "Well? Well? What did I make him do, Tom? What did I make him do?" "You made him--you--Oh, you made him shut it." "Well, for the land's sake! I never heard the beat of that in all my days! Don't tell ME there ain't anything in dreams, any more. Sereny Harper shall know of this before I'm an hour older. I'd like to see her get around THIS with her rubbage 'bout superstition. Go on, Tom!" "Oh, it's all getting just as bright as day, now. Next you said I warn't BAD, only mischeevous and harum-scarum, and not any more responsible than--than--I think it was a colt, or something." "And so it was! Well, goodness gracious! Go on, Tom!" "And then you began to cry." "So I did. So I did. Not the first time, neither. And then--" "Then Mrs. Harper she began to cry, and said Joe was just the same, and she wished she hadn't whipped him for taking cream when she'd throwed it out her own self--" "Tom! The sperrit was upon you! You was a prophesying--that's what you was doing! Land alive, go on, Tom!" "Then Sid he said--he said--" "I don't think I said anything," said Sid. "Yes you did, Sid," said Mary. "Shut your heads and let Tom go on! What did he say, Tom?" "He said--I THINK he said he hoped I was better off where I was gone to, but if I'd been better sometimes--" "THERE, d'you hear that! It was his very words!" "And you shut him up sharp." "I lay I did! There must 'a' been an angel there. There WAS an angel there, somewheres!" "And Mrs. Harper told about Joe scaring her with a firecracker, and you told about Peter and the Painkiller--" "Just as true as I live!" "And then there was a whole lot of talk 'bout dragging the river for us, and 'bout having the funeral Sunday, and then you and old Miss Harper hugged and cried, and she went." "It happened just so! It happened just so, as sure as I'm a-sitting in these very tracks. Tom, you couldn't told it more like if you'd 'a' seen it! And then what? Go on, Tom!" "Then I thought you prayed for me--and I could see you and hear every word you said. And you went to bed, and I was so sorry that I took and wrote on a piece of sycamore bark, 'We ain't dead--we are only off being pirates,' and put it on the table by the candle; and then you looked so good, laying there asleep, that I thought I went and leaned over and kissed you on the lips." "Did you, Tom, DID you! I just forgive you everything for that!" And she seized the boy in a crushing embrace that made him feel like the guiltiest of villains. "It was very kind, even though it was only a--dream," Sid soliloquized just audibly. "Shut up, Sid! A body does just the same in a dream as he'd do if he was awake. Here's a big Milum apple I've been saving for you, Tom, if you was ever found again--now go 'long to school. I'm thankful to the good God and Father of us all I've got you back, that's long-suffering and merciful to them that believe on Him and keep His word, though goodness knows I'm unworthy of it, but if only the worthy ones got His blessings and had His hand to help them over the rough places, there's few enough would smile here or ever enter into His rest when the long night comes. Go 'long Sid, Mary, Tom--take yourselves off--you've hendered me long enough." The children left for school, and the old lady to call on Mrs. Harper and vanquish her realism with Tom's marvellous dream. Sid had better judgment than to utter the thought that was in his mind as he left the house. It was this: "Pretty thin--as long a dream as that, without any mistakes in it!" What a hero Tom was become, now! He did not go skipping and prancing, but moved with a dignified swagger as became a pirate who felt that the public eye was on him. And indeed it was; he tried not to seem to see the looks or hear the remarks as he passed along, but they were food and drink to him. Smaller boys than himself flocked at his heels, as proud to be seen with him, and tolerated by him, as if he had been the drummer at the head of a procession or the elephant leading a menagerie into town. Boys of his own size pretended not to know he had been away at all; but they were consuming with envy, nevertheless. They would have given anything to have that swarthy suntanned skin of his, and his glittering notoriety; and Tom would not have parted with either for a circus. At school the children made so much of him and of Joe, and delivered such eloquent admiration from their eyes, that the two heroes were not long in becoming insufferably "stuck-up." They began to tell their adventures to hungry listeners--but they only began; it was not a thing likely to have an end, with imaginations like theirs to furnish material. And finally, when they got out their pipes and went serenely puffing around, the very summit of glory was reached. Tom decided that he could be independent of Becky Thatcher now. Glory was sufficient. He would live for glory. Now that he was distinguished, maybe she would be wanting to "make up." Well, let her--she should see that he could be as indifferent as some other people. Presently she arrived. Tom pretended not to see her. He moved away and joined a group of boys and girls and began to talk. Soon he observed that she was tripping gayly back and forth with flushed face and dancing eyes, pretending to be busy chasing schoolmates, and screaming with laughter when she made a capture; but he noticed that she always made her captures in his vicinity, and that she seemed to cast a conscious eye in his direction at such times, too. It gratified all the vicious vanity that was in him; and so, instead of winning him, it only "set him up" the more and made him the more diligent to avoid betraying that he knew she was about. Presently she gave over skylarking, and moved irresolutely about, sighing once or twice and glancing furtively and wistfully toward Tom. Then she observed that now Tom was talking more particularly to Amy Lawrence than to any one else. She felt a sharp pang and grew disturbed and uneasy at once. She tried to go away, but her feet were treacherous, and carried her to the group instead. She said to a girl almost at Tom's elbow--with sham vivacity: "Why, Mary Austin! you bad girl, why didn't you come to Sunday-school?" "I did come--didn't you see me?" "Why, no! Did you? Where did you sit?" "I was in Miss Peters' class, where I always go. I saw YOU." "Did you? Why, it's funny I didn't see you. I wanted to tell you about the picnic." "Oh, that's jolly. Who's going to give it?" "My ma's going to let me have one." "Oh, goody; I hope she'll let ME come." "Well, she will. The picnic's for me. She'll let anybody come that I want, and I want you." "That's ever so nice. When is it going to be?" "By and by. Maybe about vacation." "Oh, won't it be fun! You going to have all the girls and boys?" "Yes, every one that's friends to me--or wants to be"; and she glanced ever so furtively at Tom, but he talked right along to Amy Lawrence about the terrible storm on the island, and how the lightning tore the great sycamore tree "all to flinders" while he was "standing within three feet of it." "Oh, may I come?" said Grace Miller. "Yes." "And me?" said Sally Rogers. "Yes." "And me, too?" said Susy Harper. "And Joe?" "Yes." And so on, with clapping of joyful hands till all the group had begged for invitations but Tom and Amy. Then Tom turned coolly away, still talking, and took Amy with him. Becky's lips trembled and the tears came to her eyes; she hid these signs with a forced gayety and went on chattering, but the life had gone out of the picnic, now, and out of everything else; she got away as soon as she could and hid herself and had what her sex call "a good cry." Then she sat moody, with wounded pride, till the bell rang. She roused up, now, with a vindictive cast in her eye, and gave her plaited tails a shake and said she knew what SHE'D do. At recess Tom continued his flirtation with Amy with jubilant self-satisfaction. And he kept drifting about to find Becky and lacerate her with the performance. At last he spied her, but there was a sudden falling of his mercury. She was sitting cosily on a little bench behind the schoolhouse looking at a picture-book with Alfred Temple--and so absorbed were they, and their heads so close together over the book, that they did not seem to be conscious of anything in the world besides. Jealousy ran red-hot through Tom's veins. He began to hate himself for throwing away the chance Becky had offered for a reconciliation. He called himself a fool, and all the hard names he could think of. He wanted to cry with vexation. Amy chatted happily along, as they walked, for her heart was singing, but Tom's tongue had lost its function. He did not hear what Amy was saying, and whenever she paused expectantly he could only stammer an awkward assent, which was as often misplaced as otherwise. He kept drifting to the rear of the schoolhouse, again and again, to sear his eyeballs with the hateful spectacle there. He could not help it. And it maddened him to see, as he thought he saw, that Becky Thatcher never once suspected that he was even in the land of the living. But she did see, nevertheless; and she knew she was winning her fight, too, and was glad to see him suffer as she had suffered. Amy's happy prattle became intolerable. Tom hinted at things he had to attend to; things that must be done; and time was fleeting. But in vain--the girl chirped on. Tom thought, "Oh, hang her, ain't I ever going to get rid of her?" At last he must be attending to those things--and she said artlessly that she would be "around" when school let out. And he hastened away, hating her for it. "Any other boy!" Tom thought, grating his teeth. "Any boy in the whole town but that Saint Louis smarty that thinks he dresses so fine and is aristocracy! Oh, all right, I licked you the first day you ever saw this town, mister, and I'll lick you again! You just wait till I catch you out! I'll just take and--" And he went through the motions of thrashing an imaginary boy --pummelling the air, and kicking and gouging. "Oh, you do, do you? You holler 'nough, do you? Now, then, let that learn you!" And so the imaginary flogging was finished to his satisfaction. Tom fled home at noon. His conscience could not endure any more of Amy's grateful happiness, and his jealousy could bear no more of the other distress. Becky resumed her picture inspections with Alfred, but as the minutes dragged along and no Tom came to suffer, her triumph began to cloud and she lost interest; gravity and absent-mindedness followed, and then melancholy; two or three times she pricked up her ear at a footstep, but it was a false hope; no Tom came. At last she grew entirely miserable and wished she hadn't carried it so far. When poor Alfred, seeing that he was losing her, he did not know how, kept exclaiming: "Oh, here's a jolly one! look at this!" she lost patience at last, and said, "Oh, don't bother me! I don't care for them!" and burst into tears, and got up and walked away. Alfred dropped alongside and was going to try to comfort her, but she said: "Go away and leave me alone, can't you! I hate you!" So the boy halted, wondering what he could have done--for she had said she would look at pictures all through the nooning--and she walked on, crying. Then Alfred went musing into the deserted schoolhouse. He was humiliated and angry. He easily guessed his way to the truth--the girl had simply made a convenience of him to vent her spite upon Tom Sawyer. He was far from hating Tom the less when this thought occurred to him. He wished there was some way to get that boy into trouble without much risk to himself. Tom's spelling-book fell under his eye. Here was his opportunity. He gratefully opened to the lesson for the afternoon and poured ink upon the page. Becky, glancing in at a window behind him at the moment, saw the act, and moved on, without discovering herself. She started homeward, now, intending to find Tom and tell him; Tom would be thankful and their troubles would be healed. Before she was half way home, however, she had changed her mind. The thought of Tom's treatment of her when she was talking about her picnic came scorching back and filled her with shame. She resolved to let him get whipped on the damaged spelling-book's account, and to hate him forever, into the bargain. CHAPTER XIX TOM arrived at home in a dreary mood, and the first thing his aunt said to him showed him that he had brought his sorrows to an unpromising market: "Tom, I've a notion to skin you alive!" "Auntie, what have I done?" "Well, you've done enough. Here I go over to Sereny Harper, like an old softy, expecting I'm going to make her believe all that rubbage about that dream, when lo and behold you she'd found out from Joe that you was over here and heard all the talk we had that night. Tom, I don't know what is to become of a boy that will act like that. It makes me feel so bad to think you could let me go to Sereny Harper and make such a fool of myself and never say a word." This was a new aspect of the thing. His smartness of the morning had seemed to Tom a good joke before, and very ingenious. It merely looked mean and shabby now. He hung his head and could not think of anything to say for a moment. Then he said: "Auntie, I wish I hadn't done it--but I didn't think." "Oh, child, you never think. You never think of anything but your own selfishness. You could think to come all the way over here from Jackson's Island in the night to laugh at our troubles, and you could think to fool me with a lie about a dream; but you couldn't ever think to pity us and save us from sorrow." "Auntie, I know now it was mean, but I didn't mean to be mean. I didn't, honest. And besides, I didn't come over here to laugh at you that night." "What did you come for, then?" "It was to tell you not to be uneasy about us, because we hadn't got drownded." "Tom, Tom, I would be the thankfullest soul in this world if I could believe you ever had as good a thought as that, but you know you never did--and I know it, Tom." "Indeed and 'deed I did, auntie--I wish I may never stir if I didn't." "Oh, Tom, don't lie--don't do it. It only makes things a hundred times worse." "It ain't a lie, auntie; it's the truth. I wanted to keep you from grieving--that was all that made me come." "I'd give the whole world to believe that--it would cover up a power of sins, Tom. I'd 'most be glad you'd run off and acted so bad. But it ain't reasonable; because, why didn't you tell me, child?" "Why, you see, when you got to talking about the funeral, I just got all full of the idea of our coming and hiding in the church, and I couldn't somehow bear to spoil it. So I just put the bark back in my pocket and kept mum." "What bark?" "The bark I had wrote on to tell you we'd gone pirating. I wish, now, you'd waked up when I kissed you--I do, honest." The hard lines in his aunt's face relaxed and a sudden tenderness dawned in her eyes. "DID you kiss me, Tom?" "Why, yes, I did." "Are you sure you did, Tom?" "Why, yes, I did, auntie--certain sure." "What did you kiss me for, Tom?" "Because I loved you so, and you laid there moaning and I was so sorry." The words sounded like truth. The old lady could not hide a tremor in her voice when she said: "Kiss me again, Tom!--and be off with you to school, now, and don't bother me any more." The moment he was gone, she ran to a closet and got out the ruin of a jacket which Tom had gone pirating in. Then she stopped, with it in her hand, and said to herself: "No, I don't dare. Poor boy, I reckon he's lied about it--but it's a blessed, blessed lie, there's such a comfort come from it. I hope the Lord--I KNOW the Lord will forgive him, because it was such goodheartedness in him to tell it. But I don't want to find out it's a lie. I won't look." She put the jacket away, and stood by musing a minute. Twice she put out her hand to take the garment again, and twice she refrained. Once more she ventured, and this time she fortified herself with the thought: "It's a good lie--it's a good lie--I won't let it grieve me." So she sought the jacket pocket. A moment later she was reading Tom's piece of bark through flowing tears and saying: "I could forgive the boy, now, if he'd committed a million sins!" CHAPTER XX THERE was something about Aunt Polly's manner, when she kissed Tom, that swept away his low spirits and made him lighthearted and happy again. He started to school and had the luck of coming upon Becky Thatcher at the head of Meadow Lane. His mood always determined his manner. Without a moment's hesitation he ran to her and said: "I acted mighty mean to-day, Becky, and I'm so sorry. I won't ever, ever do that way again, as long as ever I live--please make up, won't you?" The girl stopped and looked him scornfully in the face: "I'll thank you to keep yourself TO yourself, Mr. Thomas Sawyer. I'll never speak to you again." She tossed her head and passed on. Tom was so stunned that he had not even presence of mind enough to say "Who cares, Miss Smarty?" until the right time to say it had gone by. So he said nothing. But he was in a fine rage, nevertheless. He moped into the schoolyard wishing she were a boy, and imagining how he would trounce her if she were. He presently encountered her and delivered a stinging remark as he passed. She hurled one in return, and the angry breach was complete. It seemed to Becky, in her hot resentment, that she could hardly wait for school to "take in," she was so impatient to see Tom flogged for the injured spelling-book. If she had had any lingering notion of exposing Alfred Temple, Tom's offensive fling had driven it entirely away. Poor girl, she did not know how fast she was nearing trouble herself. The master, Mr. Dobbins, had reached middle age with an unsatisfied ambition. The darling of his desires was, to be a doctor, but poverty had decreed that he should be nothing higher than a village schoolmaster. Every day he took a mysterious book out of his desk and absorbed himself in it at times when no classes were reciting. He kept that book under lock and key. There was not an urchin in school but was perishing to have a glimpse of it, but the chance never came. Every boy and girl had a theory about the nature of that book; but no two theories were alike, and there was no way of getting at the facts in the case. Now, as Becky was passing by the desk, which stood near the door, she noticed that the key was in the lock! It was a precious moment. She glanced around; found herself alone, and the next instant she had the book in her hands. The title-page--Professor Somebody's ANATOMY--carried no information to her mind; so she began to turn the leaves. She came at once upon a handsomely engraved and colored frontispiece--a human figure, stark naked. At that moment a shadow fell on the page and Tom Sawyer stepped in at the door and caught a glimpse of the picture. Becky snatched at the book to close it, and had the hard luck to tear the pictured page half down the middle. She thrust the volume into the desk, turned the key, and burst out crying with shame and vexation. "Tom Sawyer, you are just as mean as you can be, to sneak up on a person and look at what they're looking at." "How could I know you was looking at anything?" "You ought to be ashamed of yourself, Tom Sawyer; you know you're going to tell on me, and oh, what shall I do, what shall I do! I'll be whipped, and I never was whipped in school." Then she stamped her little foot and said: "BE so mean if you want to! I know something that's going to happen. You just wait and you'll see! Hateful, hateful, hateful!"--and she flung out of the house with a new explosion of crying. Tom stood still, rather flustered by this onslaught. Presently he said to himself: "What a curious kind of a fool a girl is! Never been licked in school! Shucks! What's a licking! That's just like a girl--they're so thin-skinned and chicken-hearted. Well, of course I ain't going to tell old Dobbins on this little fool, because there's other ways of getting even on her, that ain't so mean; but what of it? Old Dobbins will ask who it was tore his book. Nobody'll answer. Then he'll do just the way he always does--ask first one and then t'other, and when he comes to the right girl he'll know it, without any telling. Girls' faces always tell on them. They ain't got any backbone. She'll get licked. Well, it's a kind of a tight place for Becky Thatcher, because there ain't any way out of it." Tom conned the thing a moment longer, and then added: "All right, though; she'd like to see me in just such a fix--let her sweat it out!" Tom joined the mob of skylarking scholars outside. In a few moments the master arrived and school "took in." Tom did not feel a strong interest in his studies. Every time he stole a glance at the girls' side of the room Becky's face troubled him. Considering all things, he did not want to pity her, and yet it was all he could do to help it. He could get up no exultation that was really worthy the name. Presently the spelling-book discovery was made, and Tom's mind was entirely full of his own matters for a while after that. Becky roused up from her lethargy of distress and showed good interest in the proceedings. She did not expect that Tom could get out of his trouble by denying that he spilt the ink on the book himself; and she was right. The denial only seemed to make the thing worse for Tom. Becky supposed she would be glad of that, and she tried to believe she was glad of it, but she found she was not certain. When the worst came to the worst, she had an impulse to get up and tell on Alfred Temple, but she made an effort and forced herself to keep still--because, said she to herself, "he'll tell about me tearing the picture sure. I wouldn't say a word, not to save his life!" Tom took his whipping and went back to his seat not at all broken-hearted, for he thought it was possible that he had unknowingly upset the ink on the spelling-book himself, in some skylarking bout--he had denied it for form's sake and because it was custom, and had stuck to the denial from principle. A whole hour drifted by, the master sat nodding in his throne, the air was drowsy with the hum of study. By and by, Mr. Dobbins straightened himself up, yawned, then unlocked his desk, and reached for his book, but seemed undecided whether to take it out or leave it. Most of the pupils glanced up languidly, but there were two among them that watched his movements with intent eyes. Mr. Dobbins fingered his book absently for a while, then took it out and settled himself in his chair to read! Tom shot a glance at Becky. He had seen a hunted and helpless rabbit look as she did, with a gun levelled at its head. Instantly he forgot his quarrel with her. Quick--something must be done! done in a flash, too! But the very imminence of the emergency paralyzed his invention. Good!--he had an inspiration! He would run and snatch the book, spring through the door and fly. But his resolution shook for one little instant, and the chance was lost--the master opened the volume. If Tom only had the wasted opportunity back again! Too late. There was no help for Becky now, he said. The next moment the master faced the school. Every eye sank under his gaze. There was that in it which smote even the innocent with fear. There was silence while one might count ten --the master was gathering his wrath. Then he spoke: "Who tore this book?" There was not a sound. One could have heard a pin drop. The stillness continued; the master searched face after face for signs of guilt. "Benjamin Rogers, did you tear this book?" A denial. Another pause. "Joseph Harper, did you?" Another denial. Tom's uneasiness grew more and more intense under the slow torture of these proceedings. The master scanned the ranks of boys--considered a while, then turned to the girls: "Amy Lawrence?" A shake of the head. "Gracie Miller?" The same sign. "Susan Harper, did you do this?" Another negative. The next girl was Becky Thatcher. Tom was trembling from head to foot with excitement and a sense of the hopelessness of the situation. "Rebecca Thatcher" [Tom glanced at her face--it was white with terror] --"did you tear--no, look me in the face" [her hands rose in appeal] --"did you tear this book?" A thought shot like lightning through Tom's brain. He sprang to his feet and shouted--"I done it!" The school stared in perplexity at this incredible folly. Tom stood a moment, to gather his dismembered faculties; and when he stepped forward to go to his punishment the surprise, the gratitude, the adoration that shone upon him out of poor Becky's eyes seemed pay enough for a hundred floggings. Inspired by the splendor of his own act, he took without an outcry the most merciless flaying that even Mr. Dobbins had ever administered; and also received with indifference the added cruelty of a command to remain two hours after school should be dismissed--for he knew who would wait for him outside till his captivity was done, and not count the tedious time as loss, either. Tom went to bed that night planning vengeance against Alfred Temple; for with shame and repentance Becky had told him all, not forgetting her own treachery; but even the longing for vengeance had to give way, soon, to pleasanter musings, and he fell asleep at last with Becky's latest words lingering dreamily in his ear-- "Tom, how COULD you be so noble!" CHAPTER XXI VACATION was approaching. The schoolmaster, always severe, grew severer and more exacting than ever, for he wanted the school to make a good showing on "Examination" day. His rod and his ferule were seldom idle now--at least among the smaller pupils. Only the biggest boys, and young ladies of eighteen and twenty, escaped lashing. Mr. Dobbins' lashings were very vigorous ones, too; for although he carried, under his wig, a perfectly bald and shiny head, he had only reached middle age, and there was no sign of feebleness in his muscle. As the great day approached, all the tyranny that was in him came to the surface; he seemed to take a vindictive pleasure in punishing the least shortcomings. The consequence was, that the smaller boys spent their days in terror and suffering and their nights in plotting revenge. They threw away no opportunity to do the master a mischief. But he kept ahead all the time. The retribution that followed every vengeful success was so sweeping and majestic that the boys always retired from the field badly worsted. At last they conspired together and hit upon a plan that promised a dazzling victory. They swore in the sign-painter's boy, told him the scheme, and asked his help. He had his own reasons for being delighted, for the master boarded in his father's family and had given the boy ample cause to hate him. The master's wife would go on a visit to the country in a few days, and there would be nothing to interfere with the plan; the master always prepared himself for great occasions by getting pretty well fuddled, and the sign-painter's boy said that when the dominie had reached the proper condition on Examination Evening he would "manage the thing" while he napped in his chair; then he would have him awakened at the right time and hurried away to school. In the fulness of time the interesting occasion arrived. At eight in the evening the schoolhouse was brilliantly lighted, and adorned with wreaths and festoons of foliage and flowers. The master sat throned in his great chair upon a raised platform, with his blackboard behind him. He was looking tolerably mellow. Three rows of benches on each side and six rows in front of him were occupied by the dignitaries of the town and by the parents of the pupils. To his left, back of the rows of citizens, was a spacious temporary platform upon which were seated the scholars who were to take part in the exercises of the evening; rows of small boys, washed and dressed to an intolerable state of discomfort; rows of gawky big boys; snowbanks of girls and young ladies clad in lawn and muslin and conspicuously conscious of their bare arms, their grandmothers' ancient trinkets, their bits of pink and blue ribbon and the flowers in their hair. All the rest of the house was filled with non-participating scholars. The exercises began. A very little boy stood up and sheepishly recited, "You'd scarce expect one of my age to speak in public on the stage," etc.--accompanying himself with the painfully exact and spasmodic gestures which a machine might have used--supposing the machine to be a trifle out of order. But he got through safely, though cruelly scared, and got a fine round of applause when he made his manufactured bow and retired. A little shamefaced girl lisped, "Mary had a little lamb," etc., performed a compassion-inspiring curtsy, got her meed of applause, and sat down flushed and happy. Tom Sawyer stepped forward with conceited confidence and soared into the unquenchable and indestructible "Give me liberty or give me death" speech, with fine fury and frantic gesticulation, and broke down in the middle of it. A ghastly stage-fright seized him, his legs quaked under him and he was like to choke. True, he had the manifest sympathy of the house but he had the house's silence, too, which was even worse than its sympathy. The master frowned, and this completed the disaster. Tom struggled awhile and then retired, utterly defeated. There was a weak attempt at applause, but it died early. "The Boy Stood on the Burning Deck" followed; also "The Assyrian Came Down," and other declamatory gems. Then there were reading exercises, and a spelling fight. The meagre Latin class recited with honor. The prime feature of the evening was in order, now--original "compositions" by the young ladies. Each in her turn stepped forward to the edge of the platform, cleared her throat, held up her manuscript (tied with dainty ribbon), and proceeded to read, with labored attention to "expression" and punctuation. The themes were the same that had been illuminated upon similar occasions by their mothers before them, their grandmothers, and doubtless all their ancestors in the female line clear back to the Crusades. "Friendship" was one; "Memories of Other Days"; "Religion in History"; "Dream Land"; "The Advantages of Culture"; "Forms of Political Government Compared and Contrasted"; "Melancholy"; "Filial Love"; "Heart Longings," etc., etc. A prevalent feature in these compositions was a nursed and petted melancholy; another was a wasteful and opulent gush of "fine language"; another was a tendency to lug in by the ears particularly prized words and phrases until they were worn entirely out; and a peculiarity that conspicuously marked and marred them was the inveterate and intolerable sermon that wagged its crippled tail at the end of each and every one of them. No matter what the subject might be, a brain-racking effort was made to squirm it into some aspect or other that the moral and religious mind could contemplate with edification. The glaring insincerity of these sermons was not sufficient to compass the banishment of the fashion from the schools, and it is not sufficient to-day; it never will be sufficient while the world stands, perhaps. There is no school in all our land where the young ladies do not feel obliged to close their compositions with a sermon; and you will find that the sermon of the most frivolous and the least religious girl in the school is always the longest and the most relentlessly pious. But enough of this. Homely truth is unpalatable. Let us return to the "Examination." The first composition that was read was one entitled "Is this, then, Life?" Perhaps the reader can endure an extract from it: "In the common walks of life, with what delightful emotions does the youthful mind look forward to some anticipated scene of festivity! Imagination is busy sketching rose-tinted pictures of joy. In fancy, the voluptuous votary of fashion sees herself amid the festive throng, 'the observed of all observers.' Her graceful form, arrayed in snowy robes, is whirling through the mazes of the joyous dance; her eye is brightest, her step is lightest in the gay assembly. "In such delicious fancies time quickly glides by, and the welcome hour arrives for her entrance into the Elysian world, of which she has had such bright dreams. How fairy-like does everything appear to her enchanted vision! Each new scene is more charming than the last. But after a while she finds that beneath this goodly exterior, all is vanity, the flattery which once charmed her soul, now grates harshly upon her ear; the ball-room has lost its charms; and with wasted health and imbittered heart, she turns away with the conviction that earthly pleasures cannot satisfy the longings of the soul!" And so forth and so on. There was a buzz of gratification from time to time during the reading, accompanied by whispered ejaculations of "How sweet!" "How eloquent!" "So true!" etc., and after the thing had closed with a peculiarly afflicting sermon the applause was enthusiastic. Then arose a slim, melancholy girl, whose face had the "interesting" paleness that comes of pills and indigestion, and read a "poem." Two stanzas of it will do: "A MISSOURI MAIDEN'S FAREWELL TO ALABAMA "Alabama, good-bye! I love thee well! But yet for a while do I leave thee now! Sad, yes, sad thoughts of thee my heart doth swell, And burning recollections throng my brow! For I have wandered through thy flowery woods; Have roamed and read near Tallapoosa's stream; Have listened to Tallassee's warring floods, And wooed on Coosa's side Aurora's beam. "Yet shame I not to bear an o'er-full heart, Nor blush to turn behind my tearful eyes; 'Tis from no stranger land I now must part, 'Tis to no strangers left I yield these sighs. Welcome and home were mine within this State, Whose vales I leave--whose spires fade fast from me And cold must be mine eyes, and heart, and tete, When, dear Alabama! they turn cold on thee!" There were very few there who knew what "tete" meant, but the poem was very satisfactory, nevertheless. Next appeared a dark-complexioned, black-eyed, black-haired young lady, who paused an impressive moment, assumed a tragic expression, and began to read in a measured, solemn tone: "A VISION "Dark and tempestuous was night. Around the throne on high not a single star quivered; but the deep intonations of the heavy thunder constantly vibrated upon the ear; whilst the terrific lightning revelled in angry mood through the cloudy chambers of heaven, seeming to scorn the power exerted over its terror by the illustrious Franklin! Even the boisterous winds unanimously came forth from their mystic homes, and blustered about as if to enhance by their aid the wildness of the scene. "At such a time, so dark, so dreary, for human sympathy my very spirit sighed; but instead thereof, "'My dearest friend, my counsellor, my comforter and guide--My joy in grief, my second bliss in joy,' came to my side. She moved like one of those bright beings pictured in the sunny walks of fancy's Eden by the romantic and young, a queen of beauty unadorned save by her own transcendent loveliness. So soft was her step, it failed to make even a sound, and but for the magical thrill imparted by her genial touch, as other unobtrusive beauties, she would have glided away un-perceived--unsought. A strange sadness rested upon her features, like icy tears upon the robe of December, as she pointed to the contending elements without, and bade me contemplate the two beings presented." This nightmare occupied some ten pages of manuscript and wound up with a sermon so destructive of all hope to non-Presbyterians that it took the first prize. This composition was considered to be the very finest effort of the evening. The mayor of the village, in delivering the prize to the author of it, made a warm speech in which he said that it was by far the most "eloquent" thing he had ever listened to, and that Daniel Webster himself might well be proud of it. It may be remarked, in passing, that the number of compositions in which the word "beauteous" was over-fondled, and human experience referred to as "life's page," was up to the usual average. Now the master, mellow almost to the verge of geniality, put his chair aside, turned his back to the audience, and began to draw a map of America on the blackboard, to exercise the geography class upon. But he made a sad business of it with his unsteady hand, and a smothered titter rippled over the house. He knew what the matter was, and set himself to right it. He sponged out lines and remade them; but he only distorted them more than ever, and the tittering was more pronounced. He threw his entire attention upon his work, now, as if determined not to be put down by the mirth. He felt that all eyes were fastened upon him; he imagined he was succeeding, and yet the tittering continued; it even manifestly increased. And well it might. There was a garret above, pierced with a scuttle over his head; and down through this scuttle came a cat, suspended around the haunches by a string; she had a rag tied about her head and jaws to keep her from mewing; as she slowly descended she curved upward and clawed at the string, she swung downward and clawed at the intangible air. The tittering rose higher and higher--the cat was within six inches of the absorbed teacher's head--down, down, a little lower, and she grabbed his wig with her desperate claws, clung to it, and was snatched up into the garret in an instant with her trophy still in her possession! And how the light did blaze abroad from the master's bald pate--for the sign-painter's boy had GILDED it! That broke up the meeting. The boys were avenged. Vacation had come. NOTE:--The pretended "compositions" quoted in this chapter are taken without alteration from a volume entitled "Prose and Poetry, by a Western Lady"--but they are exactly and precisely after the schoolgirl pattern, and hence are much happier than any mere imitations could be. CHAPTER XXII TOM joined the new order of Cadets of Temperance, being attracted by the showy character of their "regalia." He promised to abstain from smoking, chewing, and profanity as long as he remained a member. Now he found out a new thing--namely, that to promise not to do a thing is the surest way in the world to make a body want to go and do that very thing. Tom soon found himself tormented with a desire to drink and swear; the desire grew to be so intense that nothing but the hope of a chance to display himself in his red sash kept him from withdrawing from the order. Fourth of July was coming; but he soon gave that up --gave it up before he had worn his shackles over forty-eight hours--and fixed his hopes upon old Judge Frazer, justice of the peace, who was apparently on his deathbed and would have a big public funeral, since he was so high an official. During three days Tom was deeply concerned about the Judge's condition and hungry for news of it. Sometimes his hopes ran high--so high that he would venture to get out his regalia and practise before the looking-glass. But the Judge had a most discouraging way of fluctuating. At last he was pronounced upon the mend--and then convalescent. Tom was disgusted; and felt a sense of injury, too. He handed in his resignation at once--and that night the Judge suffered a relapse and died. Tom resolved that he would never trust a man like that again. The funeral was a fine thing. The Cadets paraded in a style calculated to kill the late member with envy. Tom was a free boy again, however --there was something in that. He could drink and swear, now--but found to his surprise that he did not want to. The simple fact that he could, took the desire away, and the charm of it. Tom presently wondered to find that his coveted vacation was beginning to hang a little heavily on his hands. He attempted a diary--but nothing happened during three days, and so he abandoned it. The first of all the negro minstrel shows came to town, and made a sensation. Tom and Joe Harper got up a band of performers and were happy for two days. Even the Glorious Fourth was in some sense a failure, for it rained hard, there was no procession in consequence, and the greatest man in the world (as Tom supposed), Mr. Benton, an actual United States Senator, proved an overwhelming disappointment--for he was not twenty-five feet high, nor even anywhere in the neighborhood of it. A circus came. The boys played circus for three days afterward in tents made of rag carpeting--admission, three pins for boys, two for girls--and then circusing was abandoned. A phrenologist and a mesmerizer came--and went again and left the village duller and drearier than ever. There were some boys-and-girls' parties, but they were so few and so delightful that they only made the aching voids between ache the harder. Becky Thatcher was gone to her Constantinople home to stay with her parents during vacation--so there was no bright side to life anywhere. The dreadful secret of the murder was a chronic misery. It was a very cancer for permanency and pain. Then came the measles. During two long weeks Tom lay a prisoner, dead to the world and its happenings. He was very ill, he was interested in nothing. When he got upon his feet at last and moved feebly down-town, a melancholy change had come over everything and every creature. There had been a "revival," and everybody had "got religion," not only the adults, but even the boys and girls. Tom went about, hoping against hope for the sight of one blessed sinful face, but disappointment crossed him everywhere. He found Joe Harper studying a Testament, and turned sadly away from the depressing spectacle. He sought Ben Rogers, and found him visiting the poor with a basket of tracts. He hunted up Jim Hollis, who called his attention to the precious blessing of his late measles as a warning. Every boy he encountered added another ton to his depression; and when, in desperation, he flew for refuge at last to the bosom of Huckleberry Finn and was received with a Scriptural quotation, his heart broke and he crept home and to bed realizing that he alone of all the town was lost, forever and forever. And that night there came on a terrific storm, with driving rain, awful claps of thunder and blinding sheets of lightning. He covered his head with the bedclothes and waited in a horror of suspense for his doom; for he had not the shadow of a doubt that all this hubbub was about him. He believed he had taxed the forbearance of the powers above to the extremity of endurance and that this was the result. It might have seemed to him a waste of pomp and ammunition to kill a bug with a battery of artillery, but there seemed nothing incongruous about the getting up such an expensive thunderstorm as this to knock the turf from under an insect like himself. By and by the tempest spent itself and died without accomplishing its object. The boy's first impulse was to be grateful, and reform. His second was to wait--for there might not be any more storms. The next day the doctors were back; Tom had relapsed. The three weeks he spent on his back this time seemed an entire age. When he got abroad at last he was hardly grateful that he had been spared, remembering how lonely was his estate, how companionless and forlorn he was. He drifted listlessly down the street and found Jim Hollis acting as judge in a juvenile court that was trying a cat for murder, in the presence of her victim, a bird. He found Joe Harper and Huck Finn up an alley eating a stolen melon. Poor lads! they--like Tom--had suffered a relapse. CHAPTER XXIII AT last the sleepy atmosphere was stirred--and vigorously: the murder trial came on in the court. It became the absorbing topic of village talk immediately. Tom could not get away from it. Every reference to the murder sent a shudder to his heart, for his troubled conscience and fears almost persuaded him that these remarks were put forth in his hearing as "feelers"; he did not see how he could be suspected of knowing anything about the murder, but still he could not be comfortable in the midst of this gossip. It kept him in a cold shiver all the time. He took Huck to a lonely place to have a talk with him. It would be some relief to unseal his tongue for a little while; to divide his burden of distress with another sufferer. Moreover, he wanted to assure himself that Huck had remained discreet. "Huck, have you ever told anybody about--that?" "'Bout what?" "You know what." "Oh--'course I haven't." "Never a word?" "Never a solitary word, so help me. What makes you ask?" "Well, I was afeard." "Why, Tom Sawyer, we wouldn't be alive two days if that got found out. YOU know that." Tom felt more comfortable. After a pause: "Huck, they couldn't anybody get you to tell, could they?" "Get me to tell? Why, if I wanted that half-breed devil to drownd me they could get me to tell. They ain't no different way." "Well, that's all right, then. I reckon we're safe as long as we keep mum. But let's swear again, anyway. It's more surer." "I'm agreed." So they swore again with dread solemnities. "What is the talk around, Huck? I've heard a power of it." "Talk? Well, it's just Muff Potter, Muff Potter, Muff Potter all the time. It keeps me in a sweat, constant, so's I want to hide som'ers." "That's just the same way they go on round me. I reckon he's a goner. Don't you feel sorry for him, sometimes?" "Most always--most always. He ain't no account; but then he hain't ever done anything to hurt anybody. Just fishes a little, to get money to get drunk on--and loafs around considerable; but lord, we all do that--leastways most of us--preachers and such like. But he's kind of good--he give me half a fish, once, when there warn't enough for two; and lots of times he's kind of stood by me when I was out of luck." "Well, he's mended kites for me, Huck, and knitted hooks on to my line. I wish we could get him out of there." "My! we couldn't get him out, Tom. And besides, 'twouldn't do any good; they'd ketch him again." "Yes--so they would. But I hate to hear 'em abuse him so like the dickens when he never done--that." "I do too, Tom. Lord, I hear 'em say he's the bloodiest looking villain in this country, and they wonder he wasn't ever hung before." "Yes, they talk like that, all the time. I've heard 'em say that if he was to get free they'd lynch him." "And they'd do it, too." The boys had a long talk, but it brought them little comfort. As the twilight drew on, they found themselves hanging about the neighborhood of the little isolated jail, perhaps with an undefined hope that something would happen that might clear away their difficulties. But nothing happened; there seemed to be no angels or fairies interested in this luckless captive. The boys did as they had often done before--went to the cell grating and gave Potter some tobacco and matches. He was on the ground floor and there were no guards. His gratitude for their gifts had always smote their consciences before--it cut deeper than ever, this time. They felt cowardly and treacherous to the last degree when Potter said: "You've been mighty good to me, boys--better'n anybody else in this town. And I don't forget it, I don't. Often I says to myself, says I, 'I used to mend all the boys' kites and things, and show 'em where the good fishin' places was, and befriend 'em what I could, and now they've all forgot old Muff when he's in trouble; but Tom don't, and Huck don't--THEY don't forget him, says I, 'and I don't forget them.' Well, boys, I done an awful thing--drunk and crazy at the time--that's the only way I account for it--and now I got to swing for it, and it's right. Right, and BEST, too, I reckon--hope so, anyway. Well, we won't talk about that. I don't want to make YOU feel bad; you've befriended me. But what I want to say, is, don't YOU ever get drunk--then you won't ever get here. Stand a litter furder west--so--that's it; it's a prime comfort to see faces that's friendly when a body's in such a muck of trouble, and there don't none come here but yourn. Good friendly faces--good friendly faces. Git up on one another's backs and let me touch 'em. That's it. Shake hands--yourn'll come through the bars, but mine's too big. Little hands, and weak--but they've helped Muff Potter a power, and they'd help him more if they could." Tom went home miserable, and his dreams that night were full of horrors. The next day and the day after, he hung about the court-room, drawn by an almost irresistible impulse to go in, but forcing himself to stay out. Huck was having the same experience. They studiously avoided each other. Each wandered away, from time to time, but the same dismal fascination always brought them back presently. Tom kept his ears open when idlers sauntered out of the court-room, but invariably heard distressing news--the toils were closing more and more relentlessly around poor Potter. At the end of the second day the village talk was to the effect that Injun Joe's evidence stood firm and unshaken, and that there was not the slightest question as to what the jury's verdict would be. Tom was out late, that night, and came to bed through the window. He was in a tremendous state of excitement. It was hours before he got to sleep. All the village flocked to the court-house the next morning, for this was to be the great day. Both sexes were about equally represented in the packed audience. After a long wait the jury filed in and took their places; shortly afterward, Potter, pale and haggard, timid and hopeless, was brought in, with chains upon him, and seated where all the curious eyes could stare at him; no less conspicuous was Injun Joe, stolid as ever. There was another pause, and then the judge arrived and the sheriff proclaimed the opening of the court. The usual whisperings among the lawyers and gathering together of papers followed. These details and accompanying delays worked up an atmosphere of preparation that was as impressive as it was fascinating. Now a witness was called who testified that he found Muff Potter washing in the brook, at an early hour of the morning that the murder was discovered, and that he immediately sneaked away. After some further questioning, counsel for the prosecution said: "Take the witness." The prisoner raised his eyes for a moment, but dropped them again when his own counsel said: "I have no questions to ask him." The next witness proved the finding of the knife near the corpse. Counsel for the prosecution said: "Take the witness." "I have no questions to ask him," Potter's lawyer replied. A third witness swore he had often seen the knife in Potter's possession. "Take the witness." Counsel for Potter declined to question him. The faces of the audience began to betray annoyance. Did this attorney mean to throw away his client's life without an effort? Several witnesses deposed concerning Potter's guilty behavior when brought to the scene of the murder. They were allowed to leave the stand without being cross-questioned. Every detail of the damaging circumstances that occurred in the graveyard upon that morning which all present remembered so well was brought out by credible witnesses, but none of them were cross-examined by Potter's lawyer. The perplexity and dissatisfaction of the house expressed itself in murmurs and provoked a reproof from the bench. Counsel for the prosecution now said: "By the oaths of citizens whose simple word is above suspicion, we have fastened this awful crime, beyond all possibility of question, upon the unhappy prisoner at the bar. We rest our case here." A groan escaped from poor Potter, and he put his face in his hands and rocked his body softly to and fro, while a painful silence reigned in the court-room. Many men were moved, and many women's compassion testified itself in tears. Counsel for the defence rose and said: "Your honor, in our remarks at the opening of this trial, we foreshadowed our purpose to prove that our client did this fearful deed while under the influence of a blind and irresponsible delirium produced by drink. We have changed our mind. We shall not offer that plea." [Then to the clerk:] "Call Thomas Sawyer!" A puzzled amazement awoke in every face in the house, not even excepting Potter's. Every eye fastened itself with wondering interest upon Tom as he rose and took his place upon the stand. The boy looked wild enough, for he was badly scared. The oath was administered. "Thomas Sawyer, where were you on the seventeenth of June, about the hour of midnight?" Tom glanced at Injun Joe's iron face and his tongue failed him. The audience listened breathless, but the words refused to come. After a few moments, however, the boy got a little of his strength back, and managed to put enough of it into his voice to make part of the house hear: "In the graveyard!" "A little bit louder, please. Don't be afraid. You were--" "In the graveyard." A contemptuous smile flitted across Injun Joe's face. "Were you anywhere near Horse Williams' grave?" "Yes, sir." "Speak up--just a trifle louder. How near were you?" "Near as I am to you." "Were you hidden, or not?" "I was hid." "Where?" "Behind the elms that's on the edge of the grave." Injun Joe gave a barely perceptible start. "Any one with you?" "Yes, sir. I went there with--" "Wait--wait a moment. Never mind mentioning your companion's name. We will produce him at the proper time. Did you carry anything there with you." Tom hesitated and looked confused. "Speak out, my boy--don't be diffident. The truth is always respectable. What did you take there?" "Only a--a--dead cat." There was a ripple of mirth, which the court checked. "We will produce the skeleton of that cat. Now, my boy, tell us everything that occurred--tell it in your own way--don't skip anything, and don't be afraid." Tom began--hesitatingly at first, but as he warmed to his subject his words flowed more and more easily; in a little while every sound ceased but his own voice; every eye fixed itself upon him; with parted lips and bated breath the audience hung upon his words, taking no note of time, rapt in the ghastly fascinations of the tale. The strain upon pent emotion reached its climax when the boy said: "--and as the doctor fetched the board around and Muff Potter fell, Injun Joe jumped with the knife and--" Crash! Quick as lightning the half-breed sprang for a window, tore his way through all opposers, and was gone! CHAPTER XXIV TOM was a glittering hero once more--the pet of the old, the envy of the young. His name even went into immortal print, for the village paper magnified him. There were some that believed he would be President, yet, if he escaped hanging. As usual, the fickle, unreasoning world took Muff Potter to its bosom and fondled him as lavishly as it had abused him before. But that sort of conduct is to the world's credit; therefore it is not well to find fault with it. Tom's days were days of splendor and exultation to him, but his nights were seasons of horror. Injun Joe infested all his dreams, and always with doom in his eye. Hardly any temptation could persuade the boy to stir abroad after nightfall. Poor Huck was in the same state of wretchedness and terror, for Tom had told the whole story to the lawyer the night before the great day of the trial, and Huck was sore afraid that his share in the business might leak out, yet, notwithstanding Injun Joe's flight had saved him the suffering of testifying in court. The poor fellow had got the attorney to promise secrecy, but what of that? Since Tom's harassed conscience had managed to drive him to the lawyer's house by night and wring a dread tale from lips that had been sealed with the dismalest and most formidable of oaths, Huck's confidence in the human race was well-nigh obliterated. Daily Muff Potter's gratitude made Tom glad he had spoken; but nightly he wished he had sealed up his tongue. Half the time Tom was afraid Injun Joe would never be captured; the other half he was afraid he would be. He felt sure he never could draw a safe breath again until that man was dead and he had seen the corpse. Rewards had been offered, the country had been scoured, but no Injun Joe was found. One of those omniscient and awe-inspiring marvels, a detective, came up from St. Louis, moused around, shook his head, looked wise, and made that sort of astounding success which members of that craft usually achieve. That is to say, he "found a clew." But you can't hang a "clew" for murder, and so after that detective had got through and gone home, Tom felt just as insecure as he was before. The slow days drifted on, and each left behind it a slightly lightened weight of apprehension. CHAPTER XXV THERE comes a time in every rightly-constructed boy's life when he has a raging desire to go somewhere and dig for hidden treasure. This desire suddenly came upon Tom one day. He sallied out to find Joe Harper, but failed of success. Next he sought Ben Rogers; he had gone fishing. Presently he stumbled upon Huck Finn the Red-Handed. Huck would answer. Tom took him to a private place and opened the matter to him confidentially. Huck was willing. Huck was always willing to take a hand in any enterprise that offered entertainment and required no capital, for he had a troublesome superabundance of that sort of time which is not money. "Where'll we dig?" said Huck. "Oh, most anywhere." "Why, is it hid all around?" "No, indeed it ain't. It's hid in mighty particular places, Huck --sometimes on islands, sometimes in rotten chests under the end of a limb of an old dead tree, just where the shadow falls at midnight; but mostly under the floor in ha'nted houses." "Who hides it?" "Why, robbers, of course--who'd you reckon? Sunday-school sup'rintendents?" "I don't know. If 'twas mine I wouldn't hide it; I'd spend it and have a good time." "So would I. But robbers don't do that way. They always hide it and leave it there." "Don't they come after it any more?" "No, they think they will, but they generally forget the marks, or else they die. Anyway, it lays there a long time and gets rusty; and by and by somebody finds an old yellow paper that tells how to find the marks--a paper that's got to be ciphered over about a week because it's mostly signs and hy'roglyphics." "Hyro--which?" "Hy'roglyphics--pictures and things, you know, that don't seem to mean anything." "Have you got one of them papers, Tom?" "No." "Well then, how you going to find the marks?" "I don't want any marks. They always bury it under a ha'nted house or on an island, or under a dead tree that's got one limb sticking out. Well, we've tried Jackson's Island a little, and we can try it again some time; and there's the old ha'nted house up the Still-House branch, and there's lots of dead-limb trees--dead loads of 'em." "Is it under all of them?" "How you talk! No!" "Then how you going to know which one to go for?" "Go for all of 'em!" "Why, Tom, it'll take all summer." "Well, what of that? Suppose you find a brass pot with a hundred dollars in it, all rusty and gray, or rotten chest full of di'monds. How's that?" Huck's eyes glowed. "That's bully. Plenty bully enough for me. Just you gimme the hundred dollars and I don't want no di'monds." "All right. But I bet you I ain't going to throw off on di'monds. Some of 'em's worth twenty dollars apiece--there ain't any, hardly, but's worth six bits or a dollar." "No! Is that so?" "Cert'nly--anybody'll tell you so. Hain't you ever seen one, Huck?" "Not as I remember." "Oh, kings have slathers of them." "Well, I don' know no kings, Tom." "I reckon you don't. But if you was to go to Europe you'd see a raft of 'em hopping around." "Do they hop?" "Hop?--your granny! No!" "Well, what did you say they did, for?" "Shucks, I only meant you'd SEE 'em--not hopping, of course--what do they want to hop for?--but I mean you'd just see 'em--scattered around, you know, in a kind of a general way. Like that old humpbacked Richard." "Richard? What's his other name?" "He didn't have any other name. Kings don't have any but a given name." "No?" "But they don't." "Well, if they like it, Tom, all right; but I don't want to be a king and have only just a given name, like a nigger. But say--where you going to dig first?" "Well, I don't know. S'pose we tackle that old dead-limb tree on the hill t'other side of Still-House branch?" "I'm agreed." So they got a crippled pick and a shovel, and set out on their three-mile tramp. They arrived hot and panting, and threw themselves down in the shade of a neighboring elm to rest and have a smoke. "I like this," said Tom. "So do I." "Say, Huck, if we find a treasure here, what you going to do with your share?" "Well, I'll have pie and a glass of soda every day, and I'll go to every circus that comes along. I bet I'll have a gay time." "Well, ain't you going to save any of it?" "Save it? What for?" "Why, so as to have something to live on, by and by." "Oh, that ain't any use. Pap would come back to thish-yer town some day and get his claws on it if I didn't hurry up, and I tell you he'd clean it out pretty quick. What you going to do with yourn, Tom?" "I'm going to buy a new drum, and a sure-'nough sword, and a red necktie and a bull pup, and get married." "Married!" "That's it." "Tom, you--why, you ain't in your right mind." "Wait--you'll see." "Well, that's the foolishest thing you could do. Look at pap and my mother. Fight! Why, they used to fight all the time. I remember, mighty well." "That ain't anything. The girl I'm going to marry won't fight." "Tom, I reckon they're all alike. They'll all comb a body. Now you better think 'bout this awhile. I tell you you better. What's the name of the gal?" "It ain't a gal at all--it's a girl." "It's all the same, I reckon; some says gal, some says girl--both's right, like enough. Anyway, what's her name, Tom?" "I'll tell you some time--not now." "All right--that'll do. Only if you get married I'll be more lonesomer than ever." "No you won't. You'll come and live with me. Now stir out of this and we'll go to digging." They worked and sweated for half an hour. No result. They toiled another half-hour. Still no result. Huck said: "Do they always bury it as deep as this?" "Sometimes--not always. Not generally. I reckon we haven't got the right place." So they chose a new spot and began again. The labor dragged a little, but still they made progress. They pegged away in silence for some time. Finally Huck leaned on his shovel, swabbed the beaded drops from his brow with his sleeve, and said: "Where you going to dig next, after we get this one?" "I reckon maybe we'll tackle the old tree that's over yonder on Cardiff Hill back of the widow's." "I reckon that'll be a good one. But won't the widow take it away from us, Tom? It's on her land." "SHE take it away! Maybe she'd like to try it once. Whoever finds one of these hid treasures, it belongs to him. It don't make any difference whose land it's on." That was satisfactory. The work went on. By and by Huck said: "Blame it, we must be in the wrong place again. What do you think?" "It is mighty curious, Huck. I don't understand it. Sometimes witches interfere. I reckon maybe that's what's the trouble now." "Shucks! Witches ain't got no power in the daytime." "Well, that's so. I didn't think of that. Oh, I know what the matter is! What a blamed lot of fools we are! You got to find out where the shadow of the limb falls at midnight, and that's where you dig!" "Then consound it, we've fooled away all this work for nothing. Now hang it all, we got to come back in the night. It's an awful long way. Can you get out?" "I bet I will. We've got to do it to-night, too, because if somebody sees these holes they'll know in a minute what's here and they'll go for it." "Well, I'll come around and maow to-night." "All right. Let's hide the tools in the bushes." The boys were there that night, about the appointed time. They sat in the shadow waiting. It was a lonely place, and an hour made solemn by old traditions. Spirits whispered in the rustling leaves, ghosts lurked in the murky nooks, the deep baying of a hound floated up out of the distance, an owl answered with his sepulchral note. The boys were subdued by these solemnities, and talked little. By and by they judged that twelve had come; they marked where the shadow fell, and began to dig. Their hopes commenced to rise. Their interest grew stronger, and their industry kept pace with it. The hole deepened and still deepened, but every time their hearts jumped to hear the pick strike upon something, they only suffered a new disappointment. It was only a stone or a chunk. At last Tom said: "It ain't any use, Huck, we're wrong again." "Well, but we CAN'T be wrong. We spotted the shadder to a dot." "I know it, but then there's another thing." "What's that?". "Why, we only guessed at the time. Like enough it was too late or too early." Huck dropped his shovel. "That's it," said he. "That's the very trouble. We got to give this one up. We can't ever tell the right time, and besides this kind of thing's too awful, here this time of night with witches and ghosts a-fluttering around so. I feel as if something's behind me all the time; and I'm afeard to turn around, becuz maybe there's others in front a-waiting for a chance. I been creeping all over, ever since I got here." "Well, I've been pretty much so, too, Huck. They most always put in a dead man when they bury a treasure under a tree, to look out for it." "Lordy!" "Yes, they do. I've always heard that." "Tom, I don't like to fool around much where there's dead people. A body's bound to get into trouble with 'em, sure." "I don't like to stir 'em up, either. S'pose this one here was to stick his skull out and say something!" "Don't Tom! It's awful." "Well, it just is. Huck, I don't feel comfortable a bit." "Say, Tom, let's give this place up, and try somewheres else." "All right, I reckon we better." "What'll it be?" Tom considered awhile; and then said: "The ha'nted house. That's it!" "Blame it, I don't like ha'nted houses, Tom. Why, they're a dern sight worse'n dead people. Dead people might talk, maybe, but they don't come sliding around in a shroud, when you ain't noticing, and peep over your shoulder all of a sudden and grit their teeth, the way a ghost does. I couldn't stand such a thing as that, Tom--nobody could." "Yes, but, Huck, ghosts don't travel around only at night. They won't hender us from digging there in the daytime." "Well, that's so. But you know mighty well people don't go about that ha'nted house in the day nor the night." "Well, that's mostly because they don't like to go where a man's been murdered, anyway--but nothing's ever been seen around that house except in the night--just some blue lights slipping by the windows--no regular ghosts." "Well, where you see one of them blue lights flickering around, Tom, you can bet there's a ghost mighty close behind it. It stands to reason. Becuz you know that they don't anybody but ghosts use 'em." "Yes, that's so. But anyway they don't come around in the daytime, so what's the use of our being afeard?" "Well, all right. We'll tackle the ha'nted house if you say so--but I reckon it's taking chances." They had started down the hill by this time. There in the middle of the moonlit valley below them stood the "ha'nted" house, utterly isolated, its fences gone long ago, rank weeds smothering the very doorsteps, the chimney crumbled to ruin, the window-sashes vacant, a corner of the roof caved in. The boys gazed awhile, half expecting to see a blue light flit past a window; then talking in a low tone, as befitted the time and the circumstances, they struck far off to the right, to give the haunted house a wide berth, and took their way homeward through the woods that adorned the rearward side of Cardiff Hill. CHAPTER XXVI ABOUT noon the next day the boys arrived at the dead tree; they had come for their tools. Tom was impatient to go to the haunted house; Huck was measurably so, also--but suddenly said: "Lookyhere, Tom, do you know what day it is?" Tom mentally ran over the days of the week, and then quickly lifted his eyes with a startled look in them-- "My! I never once thought of it, Huck!" "Well, I didn't neither, but all at once it popped onto me that it was Friday." "Blame it, a body can't be too careful, Huck. We might 'a' got into an awful scrape, tackling such a thing on a Friday." "MIGHT! Better say we WOULD! There's some lucky days, maybe, but Friday ain't." "Any fool knows that. I don't reckon YOU was the first that found it out, Huck." "Well, I never said I was, did I? And Friday ain't all, neither. I had a rotten bad dream last night--dreampt about rats." "No! Sure sign of trouble. Did they fight?" "No." "Well, that's good, Huck. When they don't fight it's only a sign that there's trouble around, you know. All we got to do is to look mighty sharp and keep out of it. We'll drop this thing for to-day, and play. Do you know Robin Hood, Huck?" "No. Who's Robin Hood?" "Why, he was one of the greatest men that was ever in England--and the best. He was a robber." "Cracky, I wisht I was. Who did he rob?" "Only sheriffs and bishops and rich people and kings, and such like. But he never bothered the poor. He loved 'em. He always divided up with 'em perfectly square." "Well, he must 'a' been a brick." "I bet you he was, Huck. Oh, he was the noblest man that ever was. They ain't any such men now, I can tell you. He could lick any man in England, with one hand tied behind him; and he could take his yew bow and plug a ten-cent piece every time, a mile and a half." "What's a YEW bow?" "I don't know. It's some kind of a bow, of course. And if he hit that dime only on the edge he would set down and cry--and curse. But we'll play Robin Hood--it's nobby fun. I'll learn you." "I'm agreed." So they played Robin Hood all the afternoon, now and then casting a yearning eye down upon the haunted house and passing a remark about the morrow's prospects and possibilities there. As the sun began to sink into the west they took their way homeward athwart the long shadows of the trees and soon were buried from sight in the forests of Cardiff Hill. On Saturday, shortly after noon, the boys were at the dead tree again. They had a smoke and a chat in the shade, and then dug a little in their last hole, not with great hope, but merely because Tom said there were so many cases where people had given up a treasure after getting down within six inches of it, and then somebody else had come along and turned it up with a single thrust of a shovel. The thing failed this time, however, so the boys shouldered their tools and went away feeling that they had not trifled with fortune, but had fulfilled all the requirements that belong to the business of treasure-hunting. When they reached the haunted house there was something so weird and grisly about the dead silence that reigned there under the baking sun, and something so depressing about the loneliness and desolation of the place, that they were afraid, for a moment, to venture in. Then they crept to the door and took a trembling peep. They saw a weed-grown, floorless room, unplastered, an ancient fireplace, vacant windows, a ruinous staircase; and here, there, and everywhere hung ragged and abandoned cobwebs. They presently entered, softly, with quickened pulses, talking in whispers, ears alert to catch the slightest sound, and muscles tense and ready for instant retreat. In a little while familiarity modified their fears and they gave the place a critical and interested examination, rather admiring their own boldness, and wondering at it, too. Next they wanted to look up-stairs. This was something like cutting off retreat, but they got to daring each other, and of course there could be but one result--they threw their tools into a corner and made the ascent. Up there were the same signs of decay. In one corner they found a closet that promised mystery, but the promise was a fraud--there was nothing in it. Their courage was up now and well in hand. They were about to go down and begin work when-- "Sh!" said Tom. "What is it?" whispered Huck, blanching with fright. "Sh!... There!... Hear it?" "Yes!... Oh, my! Let's run!" "Keep still! Don't you budge! They're coming right toward the door." The boys stretched themselves upon the floor with their eyes to knot-holes in the planking, and lay waiting, in a misery of fear. "They've stopped.... No--coming.... Here they are. Don't whisper another word, Huck. My goodness, I wish I was out of this!" Two men entered. Each boy said to himself: "There's the old deaf and dumb Spaniard that's been about town once or twice lately--never saw t'other man before." "T'other" was a ragged, unkempt creature, with nothing very pleasant in his face. The Spaniard was wrapped in a serape; he had bushy white whiskers; long white hair flowed from under his sombrero, and he wore green goggles. When they came in, "t'other" was talking in a low voice; they sat down on the ground, facing the door, with their backs to the wall, and the speaker continued his remarks. His manner became less guarded and his words more distinct as he proceeded: "No," said he, "I've thought it all over, and I don't like it. It's dangerous." "Dangerous!" grunted the "deaf and dumb" Spaniard--to the vast surprise of the boys. "Milksop!" This voice made the boys gasp and quake. It was Injun Joe's! There was silence for some time. Then Joe said: "What's any more dangerous than that job up yonder--but nothing's come of it." "That's different. Away up the river so, and not another house about. 'Twon't ever be known that we tried, anyway, long as we didn't succeed." "Well, what's more dangerous than coming here in the daytime!--anybody would suspicion us that saw us." "I know that. But there warn't any other place as handy after that fool of a job. I want to quit this shanty. I wanted to yesterday, only it warn't any use trying to stir out of here, with those infernal boys playing over there on the hill right in full view." "Those infernal boys" quaked again under the inspiration of this remark, and thought how lucky it was that they had remembered it was Friday and concluded to wait a day. They wished in their hearts they had waited a year. The two men got out some food and made a luncheon. After a long and thoughtful silence, Injun Joe said: "Look here, lad--you go back up the river where you belong. Wait there till you hear from me. I'll take the chances on dropping into this town just once more, for a look. We'll do that 'dangerous' job after I've spied around a little and think things look well for it. Then for Texas! We'll leg it together!" This was satisfactory. Both men presently fell to yawning, and Injun Joe said: "I'm dead for sleep! It's your turn to watch." He curled down in the weeds and soon began to snore. His comrade stirred him once or twice and he became quiet. Presently the watcher began to nod; his head drooped lower and lower, both men began to snore now. The boys drew a long, grateful breath. Tom whispered: "Now's our chance--come!" Huck said: "I can't--I'd die if they was to wake." Tom urged--Huck held back. At last Tom rose slowly and softly, and started alone. But the first step he made wrung such a hideous creak from the crazy floor that he sank down almost dead with fright. He never made a second attempt. The boys lay there counting the dragging moments till it seemed to them that time must be done and eternity growing gray; and then they were grateful to note that at last the sun was setting. Now one snore ceased. Injun Joe sat up, stared around--smiled grimly upon his comrade, whose head was drooping upon his knees--stirred him up with his foot and said: "Here! YOU'RE a watchman, ain't you! All right, though--nothing's happened." "My! have I been asleep?" "Oh, partly, partly. Nearly time for us to be moving, pard. What'll we do with what little swag we've got left?" "I don't know--leave it here as we've always done, I reckon. No use to take it away till we start south. Six hundred and fifty in silver's something to carry." "Well--all right--it won't matter to come here once more." "No--but I'd say come in the night as we used to do--it's better." "Yes: but look here; it may be a good while before I get the right chance at that job; accidents might happen; 'tain't in such a very good place; we'll just regularly bury it--and bury it deep." "Good idea," said the comrade, who walked across the room, knelt down, raised one of the rearward hearth-stones and took out a bag that jingled pleasantly. He subtracted from it twenty or thirty dollars for himself and as much for Injun Joe, and passed the bag to the latter, who was on his knees in the corner, now, digging with his bowie-knife. The boys forgot all their fears, all their miseries in an instant. With gloating eyes they watched every movement. Luck!--the splendor of it was beyond all imagination! Six hundred dollars was money enough to make half a dozen boys rich! Here was treasure-hunting under the happiest auspices--there would not be any bothersome uncertainty as to where to dig. They nudged each other every moment--eloquent nudges and easily understood, for they simply meant--"Oh, but ain't you glad NOW we're here!" Joe's knife struck upon something. "Hello!" said he. "What is it?" said his comrade. "Half-rotten plank--no, it's a box, I believe. Here--bear a hand and we'll see what it's here for. Never mind, I've broke a hole." He reached his hand in and drew it out-- "Man, it's money!" The two men examined the handful of coins. They were gold. The boys above were as excited as themselves, and as delighted. Joe's comrade said: "We'll make quick work of this. There's an old rusty pick over amongst the weeds in the corner the other side of the fireplace--I saw it a minute ago." He ran and brought the boys' pick and shovel. Injun Joe took the pick, looked it over critically, shook his head, muttered something to himself, and then began to use it. The box was soon unearthed. It was not very large; it was iron bound and had been very strong before the slow years had injured it. The men contemplated the treasure awhile in blissful silence. "Pard, there's thousands of dollars here," said Injun Joe. "'Twas always said that Murrel's gang used to be around here one summer," the stranger observed. "I know it," said Injun Joe; "and this looks like it, I should say." "Now you won't need to do that job." The half-breed frowned. Said he: "You don't know me. Least you don't know all about that thing. 'Tain't robbery altogether--it's REVENGE!" and a wicked light flamed in his eyes. "I'll need your help in it. When it's finished--then Texas. Go home to your Nance and your kids, and stand by till you hear from me." "Well--if you say so; what'll we do with this--bury it again?" "Yes. [Ravishing delight overhead.] NO! by the great Sachem, no! [Profound distress overhead.] I'd nearly forgot. That pick had fresh earth on it! [The boys were sick with terror in a moment.] What business has a pick and a shovel here? What business with fresh earth on them? Who brought them here--and where are they gone? Have you heard anybody?--seen anybody? What! bury it again and leave them to come and see the ground disturbed? Not exactly--not exactly. We'll take it to my den." "Why, of course! Might have thought of that before. You mean Number One?" "No--Number Two--under the cross. The other place is bad--too common." "All right. It's nearly dark enough to start." Injun Joe got up and went about from window to window cautiously peeping out. Presently he said: "Who could have brought those tools here? Do you reckon they can be up-stairs?" The boys' breath forsook them. Injun Joe put his hand on his knife, halted a moment, undecided, and then turned toward the stairway. The boys thought of the closet, but their strength was gone. The steps came creaking up the stairs--the intolerable distress of the situation woke the stricken resolution of the lads--they were about to spring for the closet, when there was a crash of rotten timbers and Injun Joe landed on the ground amid the debris of the ruined stairway. He gathered himself up cursing, and his comrade said: "Now what's the use of all that? If it's anybody, and they're up there, let them STAY there--who cares? If they want to jump down, now, and get into trouble, who objects? It will be dark in fifteen minutes --and then let them follow us if they want to. I'm willing. In my opinion, whoever hove those things in here caught a sight of us and took us for ghosts or devils or something. I'll bet they're running yet." Joe grumbled awhile; then he agreed with his friend that what daylight was left ought to be economized in getting things ready for leaving. Shortly afterward they slipped out of the house in the deepening twilight, and moved toward the river with their precious box. Tom and Huck rose up, weak but vastly relieved, and stared after them through the chinks between the logs of the house. Follow? Not they. They were content to reach ground again without broken necks, and take the townward track over the hill. They did not talk much. They were too much absorbed in hating themselves--hating the ill luck that made them take the spade and the pick there. But for that, Injun Joe never would have suspected. He would have hidden the silver with the gold to wait there till his "revenge" was satisfied, and then he would have had the misfortune to find that money turn up missing. Bitter, bitter luck that the tools were ever brought there! They resolved to keep a lookout for that Spaniard when he should come to town spying out for chances to do his revengeful job, and follow him to "Number Two," wherever that might be. Then a ghastly thought occurred to Tom. "Revenge? What if he means US, Huck!" "Oh, don't!" said Huck, nearly fainting. They talked it all over, and as they entered town they agreed to believe that he might possibly mean somebody else--at least that he might at least mean nobody but Tom, since only Tom had testified. Very, very small comfort it was to Tom to be alone in danger! Company would be a palpable improvement, he thought. CHAPTER XXVII THE adventure of the day mightily tormented Tom's dreams that night. Four times he had his hands on that rich treasure and four times it wasted to nothingness in his fingers as sleep forsook him and wakefulness brought back the hard reality of his misfortune. As he lay in the early morning recalling the incidents of his great adventure, he noticed that they seemed curiously subdued and far away--somewhat as if they had happened in another world, or in a time long gone by. Then it occurred to him that the great adventure itself must be a dream! There was one very strong argument in favor of this idea--namely, that the quantity of coin he had seen was too vast to be real. He had never seen as much as fifty dollars in one mass before, and he was like all boys of his age and station in life, in that he imagined that all references to "hundreds" and "thousands" were mere fanciful forms of speech, and that no such sums really existed in the world. He never had supposed for a moment that so large a sum as a hundred dollars was to be found in actual money in any one's possession. If his notions of hidden treasure had been analyzed, they would have been found to consist of a handful of real dimes and a bushel of vague, splendid, ungraspable dollars. But the incidents of his adventure grew sensibly sharper and clearer under the attrition of thinking them over, and so he presently found himself leaning to the impression that the thing might not have been a dream, after all. This uncertainty must be swept away. He would snatch a hurried breakfast and go and find Huck. Huck was sitting on the gunwale of a flatboat, listlessly dangling his feet in the water and looking very melancholy. Tom concluded to let Huck lead up to the subject. If he did not do it, then the adventure would be proved to have been only a dream. "Hello, Huck!" "Hello, yourself." Silence, for a minute. "Tom, if we'd 'a' left the blame tools at the dead tree, we'd 'a' got the money. Oh, ain't it awful!" "'Tain't a dream, then, 'tain't a dream! Somehow I most wish it was. Dog'd if I don't, Huck." "What ain't a dream?" "Oh, that thing yesterday. I been half thinking it was." "Dream! If them stairs hadn't broke down you'd 'a' seen how much dream it was! I've had dreams enough all night--with that patch-eyed Spanish devil going for me all through 'em--rot him!" "No, not rot him. FIND him! Track the money!" "Tom, we'll never find him. A feller don't have only one chance for such a pile--and that one's lost. I'd feel mighty shaky if I was to see him, anyway." "Well, so'd I; but I'd like to see him, anyway--and track him out--to his Number Two." "Number Two--yes, that's it. I been thinking 'bout that. But I can't make nothing out of it. What do you reckon it is?" "I dono. It's too deep. Say, Huck--maybe it's the number of a house!" "Goody!... No, Tom, that ain't it. If it is, it ain't in this one-horse town. They ain't no numbers here." "Well, that's so. Lemme think a minute. Here--it's the number of a room--in a tavern, you know!" "Oh, that's the trick! They ain't only two taverns. We can find out quick." "You stay here, Huck, till I come." Tom was off at once. He did not care to have Huck's company in public places. He was gone half an hour. He found that in the best tavern, No. 2 had long been occupied by a young lawyer, and was still so occupied. In the less ostentatious house, No. 2 was a mystery. The tavern-keeper's young son said it was kept locked all the time, and he never saw anybody go into it or come out of it except at night; he did not know any particular reason for this state of things; had had some little curiosity, but it was rather feeble; had made the most of the mystery by entertaining himself with the idea that that room was "ha'nted"; had noticed that there was a light in there the night before. "That's what I've found out, Huck. I reckon that's the very No. 2 we're after." "I reckon it is, Tom. Now what you going to do?" "Lemme think." Tom thought a long time. Then he said: "I'll tell you. The back door of that No. 2 is the door that comes out into that little close alley between the tavern and the old rattle trap of a brick store. Now you get hold of all the door-keys you can find, and I'll nip all of auntie's, and the first dark night we'll go there and try 'em. And mind you, keep a lookout for Injun Joe, because he said he was going to drop into town and spy around once more for a chance to get his revenge. If you see him, you just follow him; and if he don't go to that No. 2, that ain't the place." "Lordy, I don't want to foller him by myself!" "Why, it'll be night, sure. He mightn't ever see you--and if he did, maybe he'd never think anything." "Well, if it's pretty dark I reckon I'll track him. I dono--I dono. I'll try." "You bet I'll follow him, if it's dark, Huck. Why, he might 'a' found out he couldn't get his revenge, and be going right after that money." "It's so, Tom, it's so. I'll foller him; I will, by jingoes!" "Now you're TALKING! Don't you ever weaken, Huck, and I won't." CHAPTER XXVIII THAT night Tom and Huck were ready for their adventure. They hung about the neighborhood of the tavern until after nine, one watching the alley at a distance and the other the tavern door. Nobody entered the alley or left it; nobody resembling the Spaniard entered or left the tavern door. The night promised to be a fair one; so Tom went home with the understanding that if a considerable degree of darkness came on, Huck was to come and "maow," whereupon he would slip out and try the keys. But the night remained clear, and Huck closed his watch and retired to bed in an empty sugar hogshead about twelve. Tuesday the boys had the same ill luck. Also Wednesday. But Thursday night promised better. Tom slipped out in good season with his aunt's old tin lantern, and a large towel to blindfold it with. He hid the lantern in Huck's sugar hogshead and the watch began. An hour before midnight the tavern closed up and its lights (the only ones thereabouts) were put out. No Spaniard had been seen. Nobody had entered or left the alley. Everything was auspicious. The blackness of darkness reigned, the perfect stillness was interrupted only by occasional mutterings of distant thunder. Tom got his lantern, lit it in the hogshead, wrapped it closely in the towel, and the two adventurers crept in the gloom toward the tavern. Huck stood sentry and Tom felt his way into the alley. Then there was a season of waiting anxiety that weighed upon Huck's spirits like a mountain. He began to wish he could see a flash from the lantern--it would frighten him, but it would at least tell him that Tom was alive yet. It seemed hours since Tom had disappeared. Surely he must have fainted; maybe he was dead; maybe his heart had burst under terror and excitement. In his uneasiness Huck found himself drawing closer and closer to the alley; fearing all sorts of dreadful things, and momentarily expecting some catastrophe to happen that would take away his breath. There was not much to take away, for he seemed only able to inhale it by thimblefuls, and his heart would soon wear itself out, the way it was beating. Suddenly there was a flash of light and Tom came tearing by him: "Run!" said he; "run, for your life!" He needn't have repeated it; once was enough; Huck was making thirty or forty miles an hour before the repetition was uttered. The boys never stopped till they reached the shed of a deserted slaughter-house at the lower end of the village. Just as they got within its shelter the storm burst and the rain poured down. As soon as Tom got his breath he said: "Huck, it was awful! I tried two of the keys, just as soft as I could; but they seemed to make such a power of racket that I couldn't hardly get my breath I was so scared. They wouldn't turn in the lock, either. Well, without noticing what I was doing, I took hold of the knob, and open comes the door! It warn't locked! I hopped in, and shook off the towel, and, GREAT CAESAR'S GHOST!" "What!--what'd you see, Tom?" "Huck, I most stepped onto Injun Joe's hand!" "No!" "Yes! He was lying there, sound asleep on the floor, with his old patch on his eye and his arms spread out." "Lordy, what did you do? Did he wake up?" "No, never budged. Drunk, I reckon. I just grabbed that towel and started!" "I'd never 'a' thought of the towel, I bet!" "Well, I would. My aunt would make me mighty sick if I lost it." "Say, Tom, did you see that box?" "Huck, I didn't wait to look around. I didn't see the box, I didn't see the cross. I didn't see anything but a bottle and a tin cup on the floor by Injun Joe; yes, I saw two barrels and lots more bottles in the room. Don't you see, now, what's the matter with that ha'nted room?" "How?" "Why, it's ha'nted with whiskey! Maybe ALL the Temperance Taverns have got a ha'nted room, hey, Huck?" "Well, I reckon maybe that's so. Who'd 'a' thought such a thing? But say, Tom, now's a mighty good time to get that box, if Injun Joe's drunk." "It is, that! You try it!" Huck shuddered. "Well, no--I reckon not." "And I reckon not, Huck. Only one bottle alongside of Injun Joe ain't enough. If there'd been three, he'd be drunk enough and I'd do it." There was a long pause for reflection, and then Tom said: "Lookyhere, Huck, less not try that thing any more till we know Injun Joe's not in there. It's too scary. Now, if we watch every night, we'll be dead sure to see him go out, some time or other, and then we'll snatch that box quicker'n lightning." "Well, I'm agreed. I'll watch the whole night long, and I'll do it every night, too, if you'll do the other part of the job." "All right, I will. All you got to do is to trot up Hooper Street a block and maow--and if I'm asleep, you throw some gravel at the window and that'll fetch me." "Agreed, and good as wheat!" "Now, Huck, the storm's over, and I'll go home. It'll begin to be daylight in a couple of hours. You go back and watch that long, will you?" "I said I would, Tom, and I will. I'll ha'nt that tavern every night for a year! I'll sleep all day and I'll stand watch all night." "That's all right. Now, where you going to sleep?" "In Ben Rogers' hayloft. He lets me, and so does his pap's nigger man, Uncle Jake. I tote water for Uncle Jake whenever he wants me to, and any time I ask him he gives me a little something to eat if he can spare it. That's a mighty good nigger, Tom. He likes me, becuz I don't ever act as if I was above him. Sometime I've set right down and eat WITH him. But you needn't tell that. A body's got to do things when he's awful hungry he wouldn't want to do as a steady thing." "Well, if I don't want you in the daytime, I'll let you sleep. I won't come bothering around. Any time you see something's up, in the night, just skip right around and maow." CHAPTER XXIX THE first thing Tom heard on Friday morning was a glad piece of news --Judge Thatcher's family had come back to town the night before. Both Injun Joe and the treasure sunk into secondary importance for a moment, and Becky took the chief place in the boy's interest. He saw her and they had an exhausting good time playing "hi-spy" and "gully-keeper" with a crowd of their school-mates. The day was completed and crowned in a peculiarly satisfactory way: Becky teased her mother to appoint the next day for the long-promised and long-delayed picnic, and she consented. The child's delight was boundless; and Tom's not more moderate. The invitations were sent out before sunset, and straightway the young folks of the village were thrown into a fever of preparation and pleasurable anticipation. Tom's excitement enabled him to keep awake until a pretty late hour, and he had good hopes of hearing Huck's "maow," and of having his treasure to astonish Becky and the picnickers with, next day; but he was disappointed. No signal came that night. Morning came, eventually, and by ten or eleven o'clock a giddy and rollicking company were gathered at Judge Thatcher's, and everything was ready for a start. It was not the custom for elderly people to mar the picnics with their presence. The children were considered safe enough under the wings of a few young ladies of eighteen and a few young gentlemen of twenty-three or thereabouts. The old steam ferryboat was chartered for the occasion; presently the gay throng filed up the main street laden with provision-baskets. Sid was sick and had to miss the fun; Mary remained at home to entertain him. The last thing Mrs. Thatcher said to Becky, was: "You'll not get back till late. Perhaps you'd better stay all night with some of the girls that live near the ferry-landing, child." "Then I'll stay with Susy Harper, mamma." "Very well. And mind and behave yourself and don't be any trouble." Presently, as they tripped along, Tom said to Becky: "Say--I'll tell you what we'll do. 'Stead of going to Joe Harper's we'll climb right up the hill and stop at the Widow Douglas'. She'll have ice-cream! She has it most every day--dead loads of it. And she'll be awful glad to have us." "Oh, that will be fun!" Then Becky reflected a moment and said: "But what will mamma say?" "How'll she ever know?" The girl turned the idea over in her mind, and said reluctantly: "I reckon it's wrong--but--" "But shucks! Your mother won't know, and so what's the harm? All she wants is that you'll be safe; and I bet you she'd 'a' said go there if she'd 'a' thought of it. I know she would!" The Widow Douglas' splendid hospitality was a tempting bait. It and Tom's persuasions presently carried the day. So it was decided to say nothing anybody about the night's programme. Presently it occurred to Tom that maybe Huck might come this very night and give the signal. The thought took a deal of the spirit out of his anticipations. Still he could not bear to give up the fun at Widow Douglas'. And why should he give it up, he reasoned--the signal did not come the night before, so why should it be any more likely to come to-night? The sure fun of the evening outweighed the uncertain treasure; and, boy-like, he determined to yield to the stronger inclination and not allow himself to think of the box of money another time that day. Three miles below town the ferryboat stopped at the mouth of a woody hollow and tied up. The crowd swarmed ashore and soon the forest distances and craggy heights echoed far and near with shoutings and laughter. All the different ways of getting hot and tired were gone through with, and by-and-by the rovers straggled back to camp fortified with responsible appetites, and then the destruction of the good things began. After the feast there was a refreshing season of rest and chat in the shade of spreading oaks. By-and-by somebody shouted: "Who's ready for the cave?" Everybody was. Bundles of candles were procured, and straightway there was a general scamper up the hill. The mouth of the cave was up the hillside--an opening shaped like a letter A. Its massive oaken door stood unbarred. Within was a small chamber, chilly as an ice-house, and walled by Nature with solid limestone that was dewy with a cold sweat. It was romantic and mysterious to stand here in the deep gloom and look out upon the green valley shining in the sun. But the impressiveness of the situation quickly wore off, and the romping began again. The moment a candle was lighted there was a general rush upon the owner of it; a struggle and a gallant defence followed, but the candle was soon knocked down or blown out, and then there was a glad clamor of laughter and a new chase. But all things have an end. By-and-by the procession went filing down the steep descent of the main avenue, the flickering rank of lights dimly revealing the lofty walls of rock almost to their point of junction sixty feet overhead. This main avenue was not more than eight or ten feet wide. Every few steps other lofty and still narrower crevices branched from it on either hand--for McDougal's cave was but a vast labyrinth of crooked aisles that ran into each other and out again and led nowhere. It was said that one might wander days and nights together through its intricate tangle of rifts and chasms, and never find the end of the cave; and that he might go down, and down, and still down, into the earth, and it was just the same--labyrinth under labyrinth, and no end to any of them. No man "knew" the cave. That was an impossible thing. Most of the young men knew a portion of it, and it was not customary to venture much beyond this known portion. Tom Sawyer knew as much of the cave as any one. The procession moved along the main avenue some three-quarters of a mile, and then groups and couples began to slip aside into branch avenues, fly along the dismal corridors, and take each other by surprise at points where the corridors joined again. Parties were able to elude each other for the space of half an hour without going beyond the "known" ground. By-and-by, one group after another came straggling back to the mouth of the cave, panting, hilarious, smeared from head to foot with tallow drippings, daubed with clay, and entirely delighted with the success of the day. Then they were astonished to find that they had been taking no note of time and that night was about at hand. The clanging bell had been calling for half an hour. However, this sort of close to the day's adventures was romantic and therefore satisfactory. When the ferryboat with her wild freight pushed into the stream, nobody cared sixpence for the wasted time but the captain of the craft. Huck was already upon his watch when the ferryboat's lights went glinting past the wharf. He heard no noise on board, for the young people were as subdued and still as people usually are who are nearly tired to death. He wondered what boat it was, and why she did not stop at the wharf--and then he dropped her out of his mind and put his attention upon his business. The night was growing cloudy and dark. Ten o'clock came, and the noise of vehicles ceased, scattered lights began to wink out, all straggling foot-passengers disappeared, the village betook itself to its slumbers and left the small watcher alone with the silence and the ghosts. Eleven o'clock came, and the tavern lights were put out; darkness everywhere, now. Huck waited what seemed a weary long time, but nothing happened. His faith was weakening. Was there any use? Was there really any use? Why not give it up and turn in? A noise fell upon his ear. He was all attention in an instant. The alley door closed softly. He sprang to the corner of the brick store. The next moment two men brushed by him, and one seemed to have something under his arm. It must be that box! So they were going to remove the treasure. Why call Tom now? It would be absurd--the men would get away with the box and never be found again. No, he would stick to their wake and follow them; he would trust to the darkness for security from discovery. So communing with himself, Huck stepped out and glided along behind the men, cat-like, with bare feet, allowing them to keep just far enough ahead not to be invisible. They moved up the river street three blocks, then turned to the left up a cross-street. They went straight ahead, then, until they came to the path that led up Cardiff Hill; this they took. They passed by the old Welshman's house, half-way up the hill, without hesitating, and still climbed upward. Good, thought Huck, they will bury it in the old quarry. But they never stopped at the quarry. They passed on, up the summit. They plunged into the narrow path between the tall sumach bushes, and were at once hidden in the gloom. Huck closed up and shortened his distance, now, for they would never be able to see him. He trotted along awhile; then slackened his pace, fearing he was gaining too fast; moved on a piece, then stopped altogether; listened; no sound; none, save that he seemed to hear the beating of his own heart. The hooting of an owl came over the hill--ominous sound! But no footsteps. Heavens, was everything lost! He was about to spring with winged feet, when a man cleared his throat not four feet from him! Huck's heart shot into his throat, but he swallowed it again; and then he stood there shaking as if a dozen agues had taken charge of him at once, and so weak that he thought he must surely fall to the ground. He knew where he was. He knew he was within five steps of the stile leading into Widow Douglas' grounds. Very well, he thought, let them bury it there; it won't be hard to find. Now there was a voice--a very low voice--Injun Joe's: "Damn her, maybe she's got company--there's lights, late as it is." "I can't see any." This was that stranger's voice--the stranger of the haunted house. A deadly chill went to Huck's heart--this, then, was the "revenge" job! His thought was, to fly. Then he remembered that the Widow Douglas had been kind to him more than once, and maybe these men were going to murder her. He wished he dared venture to warn her; but he knew he didn't dare--they might come and catch him. He thought all this and more in the moment that elapsed between the stranger's remark and Injun Joe's next--which was-- "Because the bush is in your way. Now--this way--now you see, don't you?" "Yes. Well, there IS company there, I reckon. Better give it up." "Give it up, and I just leaving this country forever! Give it up and maybe never have another chance. I tell you again, as I've told you before, I don't care for her swag--you may have it. But her husband was rough on me--many times he was rough on me--and mainly he was the justice of the peace that jugged me for a vagrant. And that ain't all. It ain't a millionth part of it! He had me HORSEWHIPPED!--horsewhipped in front of the jail, like a nigger!--with all the town looking on! HORSEWHIPPED!--do you understand? He took advantage of me and died. But I'll take it out of HER." "Oh, don't kill her! Don't do that!" "Kill? Who said anything about killing? I would kill HIM if he was here; but not her. When you want to get revenge on a woman you don't kill her--bosh! you go for her looks. You slit her nostrils--you notch her ears like a sow!" "By God, that's--" "Keep your opinion to yourself! It will be safest for you. I'll tie her to the bed. If she bleeds to death, is that my fault? I'll not cry, if she does. My friend, you'll help me in this thing--for MY sake --that's why you're here--I mightn't be able alone. If you flinch, I'll kill you. Do you understand that? And if I have to kill you, I'll kill her--and then I reckon nobody'll ever know much about who done this business." "Well, if it's got to be done, let's get at it. The quicker the better--I'm all in a shiver." "Do it NOW? And company there? Look here--I'll get suspicious of you, first thing you know. No--we'll wait till the lights are out--there's no hurry." Huck felt that a silence was going to ensue--a thing still more awful than any amount of murderous talk; so he held his breath and stepped gingerly back; planted his foot carefully and firmly, after balancing, one-legged, in a precarious way and almost toppling over, first on one side and then on the other. He took another step back, with the same elaboration and the same risks; then another and another, and--a twig snapped under his foot! His breath stopped and he listened. There was no sound--the stillness was perfect. His gratitude was measureless. Now he turned in his tracks, between the walls of sumach bushes--turned himself as carefully as if he were a ship--and then stepped quickly but cautiously along. When he emerged at the quarry he felt secure, and so he picked up his nimble heels and flew. Down, down he sped, till he reached the Welshman's. He banged at the door, and presently the heads of the old man and his two stalwart sons were thrust from windows. "What's the row there? Who's banging? What do you want?" "Let me in--quick! I'll tell everything." "Why, who are you?" "Huckleberry Finn--quick, let me in!" "Huckleberry Finn, indeed! It ain't a name to open many doors, I judge! But let him in, lads, and let's see what's the trouble." "Please don't ever tell I told you," were Huck's first words when he got in. "Please don't--I'd be killed, sure--but the widow's been good friends to me sometimes, and I want to tell--I WILL tell if you'll promise you won't ever say it was me." "By George, he HAS got something to tell, or he wouldn't act so!" exclaimed the old man; "out with it and nobody here'll ever tell, lad." Three minutes later the old man and his sons, well armed, were up the hill, and just entering the sumach path on tiptoe, their weapons in their hands. Huck accompanied them no further. He hid behind a great bowlder and fell to listening. There was a lagging, anxious silence, and then all of a sudden there was an explosion of firearms and a cry. Huck waited for no particulars. He sprang away and sped down the hill as fast as his legs could carry him. CHAPTER XXX AS the earliest suspicion of dawn appeared on Sunday morning, Huck came groping up the hill and rapped gently at the old Welshman's door. The inmates were asleep, but it was a sleep that was set on a hair-trigger, on account of the exciting episode of the night. A call came from a window: "Who's there!" Huck's scared voice answered in a low tone: "Please let me in! It's only Huck Finn!" "It's a name that can open this door night or day, lad!--and welcome!" These were strange words to the vagabond boy's ears, and the pleasantest he had ever heard. He could not recollect that the closing word had ever been applied in his case before. The door was quickly unlocked, and he entered. Huck was given a seat and the old man and his brace of tall sons speedily dressed themselves. "Now, my boy, I hope you're good and hungry, because breakfast will be ready as soon as the sun's up, and we'll have a piping hot one, too --make yourself easy about that! I and the boys hoped you'd turn up and stop here last night." "I was awful scared," said Huck, "and I run. I took out when the pistols went off, and I didn't stop for three mile. I've come now becuz I wanted to know about it, you know; and I come before daylight becuz I didn't want to run across them devils, even if they was dead." "Well, poor chap, you do look as if you'd had a hard night of it--but there's a bed here for you when you've had your breakfast. No, they ain't dead, lad--we are sorry enough for that. You see we knew right where to put our hands on them, by your description; so we crept along on tiptoe till we got within fifteen feet of them--dark as a cellar that sumach path was--and just then I found I was going to sneeze. It was the meanest kind of luck! I tried to keep it back, but no use --'twas bound to come, and it did come! I was in the lead with my pistol raised, and when the sneeze started those scoundrels a-rustling to get out of the path, I sung out, 'Fire boys!' and blazed away at the place where the rustling was. So did the boys. But they were off in a jiffy, those villains, and we after them, down through the woods. I judge we never touched them. They fired a shot apiece as they started, but their bullets whizzed by and didn't do us any harm. As soon as we lost the sound of their feet we quit chasing, and went down and stirred up the constables. They got a posse together, and went off to guard the river bank, and as soon as it is light the sheriff and a gang are going to beat up the woods. My boys will be with them presently. I wish we had some sort of description of those rascals--'twould help a good deal. But you couldn't see what they were like, in the dark, lad, I suppose?" "Oh yes; I saw them down-town and follered them." "Splendid! Describe them--describe them, my boy!" "One's the old deaf and dumb Spaniard that's ben around here once or twice, and t'other's a mean-looking, ragged--" "That's enough, lad, we know the men! Happened on them in the woods back of the widow's one day, and they slunk away. Off with you, boys, and tell the sheriff--get your breakfast to-morrow morning!" The Welshman's sons departed at once. As they were leaving the room Huck sprang up and exclaimed: "Oh, please don't tell ANYbody it was me that blowed on them! Oh, please!" "All right if you say it, Huck, but you ought to have the credit of what you did." "Oh no, no! Please don't tell!" When the young men were gone, the old Welshman said: "They won't tell--and I won't. But why don't you want it known?" Huck would not explain, further than to say that he already knew too much about one of those men and would not have the man know that he knew anything against him for the whole world--he would be killed for knowing it, sure. The old man promised secrecy once more, and said: "How did you come to follow these fellows, lad? Were they looking suspicious?" Huck was silent while he framed a duly cautious reply. Then he said: "Well, you see, I'm a kind of a hard lot,--least everybody says so, and I don't see nothing agin it--and sometimes I can't sleep much, on account of thinking about it and sort of trying to strike out a new way of doing. That was the way of it last night. I couldn't sleep, and so I come along up-street 'bout midnight, a-turning it all over, and when I got to that old shackly brick store by the Temperance Tavern, I backed up agin the wall to have another think. Well, just then along comes these two chaps slipping along close by me, with something under their arm, and I reckoned they'd stole it. One was a-smoking, and t'other one wanted a light; so they stopped right before me and the cigars lit up their faces and I see that the big one was the deaf and dumb Spaniard, by his white whiskers and the patch on his eye, and t'other one was a rusty, ragged-looking devil." "Could you see the rags by the light of the cigars?" This staggered Huck for a moment. Then he said: "Well, I don't know--but somehow it seems as if I did." "Then they went on, and you--" "Follered 'em--yes. That was it. I wanted to see what was up--they sneaked along so. I dogged 'em to the widder's stile, and stood in the dark and heard the ragged one beg for the widder, and the Spaniard swear he'd spile her looks just as I told you and your two--" "What! The DEAF AND DUMB man said all that!" Huck had made another terrible mistake! He was trying his best to keep the old man from getting the faintest hint of who the Spaniard might be, and yet his tongue seemed determined to get him into trouble in spite of all he could do. He made several efforts to creep out of his scrape, but the old man's eye was upon him and he made blunder after blunder. Presently the Welshman said: "My boy, don't be afraid of me. I wouldn't hurt a hair of your head for all the world. No--I'd protect you--I'd protect you. This Spaniard is not deaf and dumb; you've let that slip without intending it; you can't cover that up now. You know something about that Spaniard that you want to keep dark. Now trust me--tell me what it is, and trust me --I won't betray you." Huck looked into the old man's honest eyes a moment, then bent over and whispered in his ear: "'Tain't a Spaniard--it's Injun Joe!" The Welshman almost jumped out of his chair. In a moment he said: "It's all plain enough, now. When you talked about notching ears and slitting noses I judged that that was your own embellishment, because white men don't take that sort of revenge. But an Injun! That's a different matter altogether." During breakfast the talk went on, and in the course of it the old man said that the last thing which he and his sons had done, before going to bed, was to get a lantern and examine the stile and its vicinity for marks of blood. They found none, but captured a bulky bundle of-- "Of WHAT?" If the words had been lightning they could not have leaped with a more stunning suddenness from Huck's blanched lips. His eyes were staring wide, now, and his breath suspended--waiting for the answer. The Welshman started--stared in return--three seconds--five seconds--ten --then replied: "Of burglar's tools. Why, what's the MATTER with you?" Huck sank back, panting gently, but deeply, unutterably grateful. The Welshman eyed him gravely, curiously--and presently said: "Yes, burglar's tools. That appears to relieve you a good deal. But what did give you that turn? What were YOU expecting we'd found?" Huck was in a close place--the inquiring eye was upon him--he would have given anything for material for a plausible answer--nothing suggested itself--the inquiring eye was boring deeper and deeper--a senseless reply offered--there was no time to weigh it, so at a venture he uttered it--feebly: "Sunday-school books, maybe." Poor Huck was too distressed to smile, but the old man laughed loud and joyously, shook up the details of his anatomy from head to foot, and ended by saying that such a laugh was money in a-man's pocket, because it cut down the doctor's bill like everything. Then he added: "Poor old chap, you're white and jaded--you ain't well a bit--no wonder you're a little flighty and off your balance. But you'll come out of it. Rest and sleep will fetch you out all right, I hope." Huck was irritated to think he had been such a goose and betrayed such a suspicious excitement, for he had dropped the idea that the parcel brought from the tavern was the treasure, as soon as he had heard the talk at the widow's stile. He had only thought it was not the treasure, however--he had not known that it wasn't--and so the suggestion of a captured bundle was too much for his self-possession. But on the whole he felt glad the little episode had happened, for now he knew beyond all question that that bundle was not THE bundle, and so his mind was at rest and exceedingly comfortable. In fact, everything seemed to be drifting just in the right direction, now; the treasure must be still in No. 2, the men would be captured and jailed that day, and he and Tom could seize the gold that night without any trouble or any fear of interruption. Just as breakfast was completed there was a knock at the door. Huck jumped for a hiding-place, for he had no mind to be connected even remotely with the late event. The Welshman admitted several ladies and gentlemen, among them the Widow Douglas, and noticed that groups of citizens were climbing up the hill--to stare at the stile. So the news had spread. The Welshman had to tell the story of the night to the visitors. The widow's gratitude for her preservation was outspoken. "Don't say a word about it, madam. There's another that you're more beholden to than you are to me and my boys, maybe, but he don't allow me to tell his name. We wouldn't have been there but for him." Of course this excited a curiosity so vast that it almost belittled the main matter--but the Welshman allowed it to eat into the vitals of his visitors, and through them be transmitted to the whole town, for he refused to part with his secret. When all else had been learned, the widow said: "I went to sleep reading in bed and slept straight through all that noise. Why didn't you come and wake me?" "We judged it warn't worth while. Those fellows warn't likely to come again--they hadn't any tools left to work with, and what was the use of waking you up and scaring you to death? My three negro men stood guard at your house all the rest of the night. They've just come back." More visitors came, and the story had to be told and retold for a couple of hours more. There was no Sabbath-school during day-school vacation, but everybody was early at church. The stirring event was well canvassed. News came that not a sign of the two villains had been yet discovered. When the sermon was finished, Judge Thatcher's wife dropped alongside of Mrs. Harper as she moved down the aisle with the crowd and said: "Is my Becky going to sleep all day? I just expected she would be tired to death." "Your Becky?" "Yes," with a startled look--"didn't she stay with you last night?" "Why, no." Mrs. Thatcher turned pale, and sank into a pew, just as Aunt Polly, talking briskly with a friend, passed by. Aunt Polly said: "Good-morning, Mrs. Thatcher. Good-morning, Mrs. Harper. I've got a boy that's turned up missing. I reckon my Tom stayed at your house last night--one of you. And now he's afraid to come to church. I've got to settle with him." Mrs. Thatcher shook her head feebly and turned paler than ever. "He didn't stay with us," said Mrs. Harper, beginning to look uneasy. A marked anxiety came into Aunt Polly's face. "Joe Harper, have you seen my Tom this morning?" "No'm." "When did you see him last?" Joe tried to remember, but was not sure he could say. The people had stopped moving out of church. Whispers passed along, and a boding uneasiness took possession of every countenance. Children were anxiously questioned, and young teachers. They all said they had not noticed whether Tom and Becky were on board the ferryboat on the homeward trip; it was dark; no one thought of inquiring if any one was missing. One young man finally blurted out his fear that they were still in the cave! Mrs. Thatcher swooned away. Aunt Polly fell to crying and wringing her hands. The alarm swept from lip to lip, from group to group, from street to street, and within five minutes the bells were wildly clanging and the whole town was up! The Cardiff Hill episode sank into instant insignificance, the burglars were forgotten, horses were saddled, skiffs were manned, the ferryboat ordered out, and before the horror was half an hour old, two hundred men were pouring down highroad and river toward the cave. All the long afternoon the village seemed empty and dead. Many women visited Aunt Polly and Mrs. Thatcher and tried to comfort them. They cried with them, too, and that was still better than words. All the tedious night the town waited for news; but when the morning dawned at last, all the word that came was, "Send more candles--and send food." Mrs. Thatcher was almost crazed; and Aunt Polly, also. Judge Thatcher sent messages of hope and encouragement from the cave, but they conveyed no real cheer. The old Welshman came home toward daylight, spattered with candle-grease, smeared with clay, and almost worn out. He found Huck still in the bed that had been provided for him, and delirious with fever. The physicians were all at the cave, so the Widow Douglas came and took charge of the patient. She said she would do her best by him, because, whether he was good, bad, or indifferent, he was the Lord's, and nothing that was the Lord's was a thing to be neglected. The Welshman said Huck had good spots in him, and the widow said: "You can depend on it. That's the Lord's mark. He don't leave it off. He never does. Puts it somewhere on every creature that comes from his hands." Early in the forenoon parties of jaded men began to straggle into the village, but the strongest of the citizens continued searching. All the news that could be gained was that remotenesses of the cavern were being ransacked that had never been visited before; that every corner and crevice was going to be thoroughly searched; that wherever one wandered through the maze of passages, lights were to be seen flitting hither and thither in the distance, and shoutings and pistol-shots sent their hollow reverberations to the ear down the sombre aisles. In one place, far from the section usually traversed by tourists, the names "BECKY & TOM" had been found traced upon the rocky wall with candle-smoke, and near at hand a grease-soiled bit of ribbon. Mrs. Thatcher recognized the ribbon and cried over it. She said it was the last relic she should ever have of her child; and that no other memorial of her could ever be so precious, because this one parted latest from the living body before the awful death came. Some said that now and then, in the cave, a far-away speck of light would glimmer, and then a glorious shout would burst forth and a score of men go trooping down the echoing aisle--and then a sickening disappointment always followed; the children were not there; it was only a searcher's light. Three dreadful days and nights dragged their tedious hours along, and the village sank into a hopeless stupor. No one had heart for anything. The accidental discovery, just made, that the proprietor of the Temperance Tavern kept liquor on his premises, scarcely fluttered the public pulse, tremendous as the fact was. In a lucid interval, Huck feebly led up to the subject of taverns, and finally asked--dimly dreading the worst--if anything had been discovered at the Temperance Tavern since he had been ill. "Yes," said the widow. Huck started up in bed, wild-eyed: "What? What was it?" "Liquor!--and the place has been shut up. Lie down, child--what a turn you did give me!" "Only tell me just one thing--only just one--please! Was it Tom Sawyer that found it?" The widow burst into tears. "Hush, hush, child, hush! I've told you before, you must NOT talk. You are very, very sick!" Then nothing but liquor had been found; there would have been a great powwow if it had been the gold. So the treasure was gone forever--gone forever! But what could she be crying about? Curious that she should cry. These thoughts worked their dim way through Huck's mind, and under the weariness they gave him he fell asleep. The widow said to herself: "There--he's asleep, poor wreck. Tom Sawyer find it! Pity but somebody could find Tom Sawyer! Ah, there ain't many left, now, that's got hope enough, or strength enough, either, to go on searching." CHAPTER XXXI NOW to return to Tom and Becky's share in the picnic. They tripped along the murky aisles with the rest of the company, visiting the familiar wonders of the cave--wonders dubbed with rather over-descriptive names, such as "The Drawing-Room," "The Cathedral," "Aladdin's Palace," and so on. Presently the hide-and-seek frolicking began, and Tom and Becky engaged in it with zeal until the exertion began to grow a trifle wearisome; then they wandered down a sinuous avenue holding their candles aloft and reading the tangled web-work of names, dates, post-office addresses, and mottoes with which the rocky walls had been frescoed (in candle-smoke). Still drifting along and talking, they scarcely noticed that they were now in a part of the cave whose walls were not frescoed. They smoked their own names under an overhanging shelf and moved on. Presently they came to a place where a little stream of water, trickling over a ledge and carrying a limestone sediment with it, had, in the slow-dragging ages, formed a laced and ruffled Niagara in gleaming and imperishable stone. Tom squeezed his small body behind it in order to illuminate it for Becky's gratification. He found that it curtained a sort of steep natural stairway which was enclosed between narrow walls, and at once the ambition to be a discoverer seized him. Becky responded to his call, and they made a smoke-mark for future guidance, and started upon their quest. They wound this way and that, far down into the secret depths of the cave, made another mark, and branched off in search of novelties to tell the upper world about. In one place they found a spacious cavern, from whose ceiling depended a multitude of shining stalactites of the length and circumference of a man's leg; they walked all about it, wondering and admiring, and presently left it by one of the numerous passages that opened into it. This shortly brought them to a bewitching spring, whose basin was incrusted with a frostwork of glittering crystals; it was in the midst of a cavern whose walls were supported by many fantastic pillars which had been formed by the joining of great stalactites and stalagmites together, the result of the ceaseless water-drip of centuries. Under the roof vast knots of bats had packed themselves together, thousands in a bunch; the lights disturbed the creatures and they came flocking down by hundreds, squeaking and darting furiously at the candles. Tom knew their ways and the danger of this sort of conduct. He seized Becky's hand and hurried her into the first corridor that offered; and none too soon, for a bat struck Becky's light out with its wing while she was passing out of the cavern. The bats chased the children a good distance; but the fugitives plunged into every new passage that offered, and at last got rid of the perilous things. Tom found a subterranean lake, shortly, which stretched its dim length away until its shape was lost in the shadows. He wanted to explore its borders, but concluded that it would be best to sit down and rest awhile, first. Now, for the first time, the deep stillness of the place laid a clammy hand upon the spirits of the children. Becky said: "Why, I didn't notice, but it seems ever so long since I heard any of the others." "Come to think, Becky, we are away down below them--and I don't know how far away north, or south, or east, or whichever it is. We couldn't hear them here." Becky grew apprehensive. "I wonder how long we've been down here, Tom? We better start back." "Yes, I reckon we better. P'raps we better." "Can you find the way, Tom? It's all a mixed-up crookedness to me." "I reckon I could find it--but then the bats. If they put our candles out it will be an awful fix. Let's try some other way, so as not to go through there." "Well. But I hope we won't get lost. It would be so awful!" and the girl shuddered at the thought of the dreadful possibilities. They started through a corridor, and traversed it in silence a long way, glancing at each new opening, to see if there was anything familiar about the look of it; but they were all strange. Every time Tom made an examination, Becky would watch his face for an encouraging sign, and he would say cheerily: "Oh, it's all right. This ain't the one, but we'll come to it right away!" But he felt less and less hopeful with each failure, and presently began to turn off into diverging avenues at sheer random, in desperate hope of finding the one that was wanted. He still said it was "all right," but there was such a leaden dread at his heart that the words had lost their ring and sounded just as if he had said, "All is lost!" Becky clung to his side in an anguish of fear, and tried hard to keep back the tears, but they would come. At last she said: "Oh, Tom, never mind the bats, let's go back that way! We seem to get worse and worse off all the time." "Listen!" said he. Profound silence; silence so deep that even their breathings were conspicuous in the hush. Tom shouted. The call went echoing down the empty aisles and died out in the distance in a faint sound that resembled a ripple of mocking laughter. "Oh, don't do it again, Tom, it is too horrid," said Becky. "It is horrid, but I better, Becky; they might hear us, you know," and he shouted again. The "might" was even a chillier horror than the ghostly laughter, it so confessed a perishing hope. The children stood still and listened; but there was no result. Tom turned upon the back track at once, and hurried his steps. It was but a little while before a certain indecision in his manner revealed another fearful fact to Becky--he could not find his way back! "Oh, Tom, you didn't make any marks!" "Becky, I was such a fool! Such a fool! I never thought we might want to come back! No--I can't find the way. It's all mixed up." "Tom, Tom, we're lost! we're lost! We never can get out of this awful place! Oh, why DID we ever leave the others!" She sank to the ground and burst into such a frenzy of crying that Tom was appalled with the idea that she might die, or lose her reason. He sat down by her and put his arms around her; she buried her face in his bosom, she clung to him, she poured out her terrors, her unavailing regrets, and the far echoes turned them all to jeering laughter. Tom begged her to pluck up hope again, and she said she could not. He fell to blaming and abusing himself for getting her into this miserable situation; this had a better effect. She said she would try to hope again, she would get up and follow wherever he might lead if only he would not talk like that any more. For he was no more to blame than she, she said. So they moved on again--aimlessly--simply at random--all they could do was to move, keep moving. For a little while, hope made a show of reviving--not with any reason to back it, but only because it is its nature to revive when the spring has not been taken out of it by age and familiarity with failure. By-and-by Tom took Becky's candle and blew it out. This economy meant so much! Words were not needed. Becky understood, and her hope died again. She knew that Tom had a whole candle and three or four pieces in his pockets--yet he must economize. By-and-by, fatigue began to assert its claims; the children tried to pay attention, for it was dreadful to think of sitting down when time was grown to be so precious, moving, in some direction, in any direction, was at least progress and might bear fruit; but to sit down was to invite death and shorten its pursuit. At last Becky's frail limbs refused to carry her farther. She sat down. Tom rested with her, and they talked of home, and the friends there, and the comfortable beds and, above all, the light! Becky cried, and Tom tried to think of some way of comforting her, but all his encouragements were grown threadbare with use, and sounded like sarcasms. Fatigue bore so heavily upon Becky that she drowsed off to sleep. Tom was grateful. He sat looking into her drawn face and saw it grow smooth and natural under the influence of pleasant dreams; and by-and-by a smile dawned and rested there. The peaceful face reflected somewhat of peace and healing into his own spirit, and his thoughts wandered away to bygone times and dreamy memories. While he was deep in his musings, Becky woke up with a breezy little laugh--but it was stricken dead upon her lips, and a groan followed it. "Oh, how COULD I sleep! I wish I never, never had waked! No! No, I don't, Tom! Don't look so! I won't say it again." "I'm glad you've slept, Becky; you'll feel rested, now, and we'll find the way out." "We can try, Tom; but I've seen such a beautiful country in my dream. I reckon we are going there." "Maybe not, maybe not. Cheer up, Becky, and let's go on trying." They rose up and wandered along, hand in hand and hopeless. They tried to estimate how long they had been in the cave, but all they knew was that it seemed days and weeks, and yet it was plain that this could not be, for their candles were not gone yet. A long time after this--they could not tell how long--Tom said they must go softly and listen for dripping water--they must find a spring. They found one presently, and Tom said it was time to rest again. Both were cruelly tired, yet Becky said she thought she could go a little farther. She was surprised to hear Tom dissent. She could not understand it. They sat down, and Tom fastened his candle to the wall in front of them with some clay. Thought was soon busy; nothing was said for some time. Then Becky broke the silence: "Tom, I am so hungry!" Tom took something out of his pocket. "Do you remember this?" said he. Becky almost smiled. "It's our wedding-cake, Tom." "Yes--I wish it was as big as a barrel, for it's all we've got." "I saved it from the picnic for us to dream on, Tom, the way grown-up people do with wedding-cake--but it'll be our--" She dropped the sentence where it was. Tom divided the cake and Becky ate with good appetite, while Tom nibbled at his moiety. There was abundance of cold water to finish the feast with. By-and-by Becky suggested that they move on again. Tom was silent a moment. Then he said: "Becky, can you bear it if I tell you something?" Becky's face paled, but she thought she could. "Well, then, Becky, we must stay here, where there's water to drink. That little piece is our last candle!" Becky gave loose to tears and wailings. Tom did what he could to comfort her, but with little effect. At length Becky said: "Tom!" "Well, Becky?" "They'll miss us and hunt for us!" "Yes, they will! Certainly they will!" "Maybe they're hunting for us now, Tom." "Why, I reckon maybe they are. I hope they are." "When would they miss us, Tom?" "When they get back to the boat, I reckon." "Tom, it might be dark then--would they notice we hadn't come?" "I don't know. But anyway, your mother would miss you as soon as they got home." A frightened look in Becky's face brought Tom to his senses and he saw that he had made a blunder. Becky was not to have gone home that night! The children became silent and thoughtful. In a moment a new burst of grief from Becky showed Tom that the thing in his mind had struck hers also--that the Sabbath morning might be half spent before Mrs. Thatcher discovered that Becky was not at Mrs. Harper's. The children fastened their eyes upon their bit of candle and watched it melt slowly and pitilessly away; saw the half inch of wick stand alone at last; saw the feeble flame rise and fall, climb the thin column of smoke, linger at its top a moment, and then--the horror of utter darkness reigned! How long afterward it was that Becky came to a slow consciousness that she was crying in Tom's arms, neither could tell. All that they knew was, that after what seemed a mighty stretch of time, both awoke out of a dead stupor of sleep and resumed their miseries once more. Tom said it might be Sunday, now--maybe Monday. He tried to get Becky to talk, but her sorrows were too oppressive, all her hopes were gone. Tom said that they must have been missed long ago, and no doubt the search was going on. He would shout and maybe some one would come. He tried it; but in the darkness the distant echoes sounded so hideously that he tried it no more. The hours wasted away, and hunger came to torment the captives again. A portion of Tom's half of the cake was left; they divided and ate it. But they seemed hungrier than before. The poor morsel of food only whetted desire. By-and-by Tom said: "SH! Did you hear that?" Both held their breath and listened. There was a sound like the faintest, far-off shout. Instantly Tom answered it, and leading Becky by the hand, started groping down the corridor in its direction. Presently he listened again; again the sound was heard, and apparently a little nearer. "It's them!" said Tom; "they're coming! Come along, Becky--we're all right now!" The joy of the prisoners was almost overwhelming. Their speed was slow, however, because pitfalls were somewhat common, and had to be guarded against. They shortly came to one and had to stop. It might be three feet deep, it might be a hundred--there was no passing it at any rate. Tom got down on his breast and reached as far down as he could. No bottom. They must stay there and wait until the searchers came. They listened; evidently the distant shoutings were growing more distant! a moment or two more and they had gone altogether. The heart-sinking misery of it! Tom whooped until he was hoarse, but it was of no use. He talked hopefully to Becky; but an age of anxious waiting passed and no sounds came again. The children groped their way back to the spring. The weary time dragged on; they slept again, and awoke famished and woe-stricken. Tom believed it must be Tuesday by this time. Now an idea struck him. There were some side passages near at hand. It would be better to explore some of these than bear the weight of the heavy time in idleness. He took a kite-line from his pocket, tied it to a projection, and he and Becky started, Tom in the lead, unwinding the line as he groped along. At the end of twenty steps the corridor ended in a "jumping-off place." Tom got down on his knees and felt below, and then as far around the corner as he could reach with his hands conveniently; he made an effort to stretch yet a little farther to the right, and at that moment, not twenty yards away, a human hand, holding a candle, appeared from behind a rock! Tom lifted up a glorious shout, and instantly that hand was followed by the body it belonged to--Injun Joe's! Tom was paralyzed; he could not move. He was vastly gratified the next moment, to see the "Spaniard" take to his heels and get himself out of sight. Tom wondered that Joe had not recognized his voice and come over and killed him for testifying in court. But the echoes must have disguised the voice. Without doubt, that was it, he reasoned. Tom's fright weakened every muscle in his body. He said to himself that if he had strength enough to get back to the spring he would stay there, and nothing should tempt him to run the risk of meeting Injun Joe again. He was careful to keep from Becky what it was he had seen. He told her he had only shouted "for luck." But hunger and wretchedness rise superior to fears in the long run. Another tedious wait at the spring and another long sleep brought changes. The children awoke tortured with a raging hunger. Tom believed that it must be Wednesday or Thursday or even Friday or Saturday, now, and that the search had been given over. He proposed to explore another passage. He felt willing to risk Injun Joe and all other terrors. But Becky was very weak. She had sunk into a dreary apathy and would not be roused. She said she would wait, now, where she was, and die--it would not be long. She told Tom to go with the kite-line and explore if he chose; but she implored him to come back every little while and speak to her; and she made him promise that when the awful time came, he would stay by her and hold her hand until all was over. Tom kissed her, with a choking sensation in his throat, and made a show of being confident of finding the searchers or an escape from the cave; then he took the kite-line in his hand and went groping down one of the passages on his hands and knees, distressed with hunger and sick with bodings of coming doom. CHAPTER XXXII TUESDAY afternoon came, and waned to the twilight. The village of St. Petersburg still mourned. The lost children had not been found. Public prayers had been offered up for them, and many and many a private prayer that had the petitioner's whole heart in it; but still no good news came from the cave. The majority of the searchers had given up the quest and gone back to their daily avocations, saying that it was plain the children could never be found. Mrs. Thatcher was very ill, and a great part of the time delirious. People said it was heartbreaking to hear her call her child, and raise her head and listen a whole minute at a time, then lay it wearily down again with a moan. Aunt Polly had drooped into a settled melancholy, and her gray hair had grown almost white. The village went to its rest on Tuesday night, sad and forlorn. Away in the middle of the night a wild peal burst from the village bells, and in a moment the streets were swarming with frantic half-clad people, who shouted, "Turn out! turn out! they're found! they're found!" Tin pans and horns were added to the din, the population massed itself and moved toward the river, met the children coming in an open carriage drawn by shouting citizens, thronged around it, joined its homeward march, and swept magnificently up the main street roaring huzzah after huzzah! The village was illuminated; nobody went to bed again; it was the greatest night the little town had ever seen. During the first half-hour a procession of villagers filed through Judge Thatcher's house, seized the saved ones and kissed them, squeezed Mrs. Thatcher's hand, tried to speak but couldn't--and drifted out raining tears all over the place. Aunt Polly's happiness was complete, and Mrs. Thatcher's nearly so. It would be complete, however, as soon as the messenger dispatched with the great news to the cave should get the word to her husband. Tom lay upon a sofa with an eager auditory about him and told the history of the wonderful adventure, putting in many striking additions to adorn it withal; and closed with a description of how he left Becky and went on an exploring expedition; how he followed two avenues as far as his kite-line would reach; how he followed a third to the fullest stretch of the kite-line, and was about to turn back when he glimpsed a far-off speck that looked like daylight; dropped the line and groped toward it, pushed his head and shoulders through a small hole, and saw the broad Mississippi rolling by! And if it had only happened to be night he would not have seen that speck of daylight and would not have explored that passage any more! He told how he went back for Becky and broke the good news and she told him not to fret her with such stuff, for she was tired, and knew she was going to die, and wanted to. He described how he labored with her and convinced her; and how she almost died for joy when she had groped to where she actually saw the blue speck of daylight; how he pushed his way out at the hole and then helped her out; how they sat there and cried for gladness; how some men came along in a skiff and Tom hailed them and told them their situation and their famished condition; how the men didn't believe the wild tale at first, "because," said they, "you are five miles down the river below the valley the cave is in" --then took them aboard, rowed to a house, gave them supper, made them rest till two or three hours after dark and then brought them home. Before day-dawn, Judge Thatcher and the handful of searchers with him were tracked out, in the cave, by the twine clews they had strung behind them, and informed of the great news. Three days and nights of toil and hunger in the cave were not to be shaken off at once, as Tom and Becky soon discovered. They were bedridden all of Wednesday and Thursday, and seemed to grow more and more tired and worn, all the time. Tom got about, a little, on Thursday, was down-town Friday, and nearly as whole as ever Saturday; but Becky did not leave her room until Sunday, and then she looked as if she had passed through a wasting illness. Tom learned of Huck's sickness and went to see him on Friday, but could not be admitted to the bedroom; neither could he on Saturday or Sunday. He was admitted daily after that, but was warned to keep still about his adventure and introduce no exciting topic. The Widow Douglas stayed by to see that he obeyed. At home Tom learned of the Cardiff Hill event; also that the "ragged man's" body had eventually been found in the river near the ferry-landing; he had been drowned while trying to escape, perhaps. About a fortnight after Tom's rescue from the cave, he started off to visit Huck, who had grown plenty strong enough, now, to hear exciting talk, and Tom had some that would interest him, he thought. Judge Thatcher's house was on Tom's way, and he stopped to see Becky. The Judge and some friends set Tom to talking, and some one asked him ironically if he wouldn't like to go to the cave again. Tom said he thought he wouldn't mind it. The Judge said: "Well, there are others just like you, Tom, I've not the least doubt. But we have taken care of that. Nobody will get lost in that cave any more." "Why?" "Because I had its big door sheathed with boiler iron two weeks ago, and triple-locked--and I've got the keys." Tom turned as white as a sheet. "What's the matter, boy! Here, run, somebody! Fetch a glass of water!" The water was brought and thrown into Tom's face. "Ah, now you're all right. What was the matter with you, Tom?" "Oh, Judge, Injun Joe's in the cave!" CHAPTER XXXIII WITHIN a few minutes the news had spread, and a dozen skiff-loads of men were on their way to McDougal's cave, and the ferryboat, well filled with passengers, soon followed. Tom Sawyer was in the skiff that bore Judge Thatcher. When the cave door was unlocked, a sorrowful sight presented itself in the dim twilight of the place. Injun Joe lay stretched upon the ground, dead, with his face close to the crack of the door, as if his longing eyes had been fixed, to the latest moment, upon the light and the cheer of the free world outside. Tom was touched, for he knew by his own experience how this wretch had suffered. His pity was moved, but nevertheless he felt an abounding sense of relief and security, now, which revealed to him in a degree which he had not fully appreciated before how vast a weight of dread had been lying upon him since the day he lifted his voice against this bloody-minded outcast. Injun Joe's bowie-knife lay close by, its blade broken in two. The great foundation-beam of the door had been chipped and hacked through, with tedious labor; useless labor, too, it was, for the native rock formed a sill outside it, and upon that stubborn material the knife had wrought no effect; the only damage done was to the knife itself. But if there had been no stony obstruction there the labor would have been useless still, for if the beam had been wholly cut away Injun Joe could not have squeezed his body under the door, and he knew it. So he had only hacked that place in order to be doing something--in order to pass the weary time--in order to employ his tortured faculties. Ordinarily one could find half a dozen bits of candle stuck around in the crevices of this vestibule, left there by tourists; but there were none now. The prisoner had searched them out and eaten them. He had also contrived to catch a few bats, and these, also, he had eaten, leaving only their claws. The poor unfortunate had starved to death. In one place, near at hand, a stalagmite had been slowly growing up from the ground for ages, builded by the water-drip from a stalactite overhead. The captive had broken off the stalagmite, and upon the stump had placed a stone, wherein he had scooped a shallow hollow to catch the precious drop that fell once in every three minutes with the dreary regularity of a clock-tick--a dessertspoonful once in four and twenty hours. That drop was falling when the Pyramids were new; when Troy fell; when the foundations of Rome were laid; when Christ was crucified; when the Conqueror created the British empire; when Columbus sailed; when the massacre at Lexington was "news." It is falling now; it will still be falling when all these things shall have sunk down the afternoon of history, and the twilight of tradition, and been swallowed up in the thick night of oblivion. Has everything a purpose and a mission? Did this drop fall patiently during five thousand years to be ready for this flitting human insect's need? and has it another important object to accomplish ten thousand years to come? No matter. It is many and many a year since the hapless half-breed scooped out the stone to catch the priceless drops, but to this day the tourist stares longest at that pathetic stone and that slow-dropping water when he comes to see the wonders of McDougal's cave. Injun Joe's cup stands first in the list of the cavern's marvels; even "Aladdin's Palace" cannot rival it. Injun Joe was buried near the mouth of the cave; and people flocked there in boats and wagons from the towns and from all the farms and hamlets for seven miles around; they brought their children, and all sorts of provisions, and confessed that they had had almost as satisfactory a time at the funeral as they could have had at the hanging. This funeral stopped the further growth of one thing--the petition to the governor for Injun Joe's pardon. The petition had been largely signed; many tearful and eloquent meetings had been held, and a committee of sappy women been appointed to go in deep mourning and wail around the governor, and implore him to be a merciful ass and trample his duty under foot. Injun Joe was believed to have killed five citizens of the village, but what of that? If he had been Satan himself there would have been plenty of weaklings ready to scribble their names to a pardon-petition, and drip a tear on it from their permanently impaired and leaky water-works. The morning after the funeral Tom took Huck to a private place to have an important talk. Huck had learned all about Tom's adventure from the Welshman and the Widow Douglas, by this time, but Tom said he reckoned there was one thing they had not told him; that thing was what he wanted to talk about now. Huck's face saddened. He said: "I know what it is. You got into No. 2 and never found anything but whiskey. Nobody told me it was you; but I just knowed it must 'a' ben you, soon as I heard 'bout that whiskey business; and I knowed you hadn't got the money becuz you'd 'a' got at me some way or other and told me even if you was mum to everybody else. Tom, something's always told me we'd never get holt of that swag." "Why, Huck, I never told on that tavern-keeper. YOU know his tavern was all right the Saturday I went to the picnic. Don't you remember you was to watch there that night?" "Oh yes! Why, it seems 'bout a year ago. It was that very night that I follered Injun Joe to the widder's." "YOU followed him?" "Yes--but you keep mum. I reckon Injun Joe's left friends behind him, and I don't want 'em souring on me and doing me mean tricks. If it hadn't ben for me he'd be down in Texas now, all right." Then Huck told his entire adventure in confidence to Tom, who had only heard of the Welshman's part of it before. "Well," said Huck, presently, coming back to the main question, "whoever nipped the whiskey in No. 2, nipped the money, too, I reckon --anyways it's a goner for us, Tom." "Huck, that money wasn't ever in No. 2!" "What!" Huck searched his comrade's face keenly. "Tom, have you got on the track of that money again?" "Huck, it's in the cave!" Huck's eyes blazed. "Say it again, Tom." "The money's in the cave!" "Tom--honest injun, now--is it fun, or earnest?" "Earnest, Huck--just as earnest as ever I was in my life. Will you go in there with me and help get it out?" "I bet I will! I will if it's where we can blaze our way to it and not get lost." "Huck, we can do that without the least little bit of trouble in the world." "Good as wheat! What makes you think the money's--" "Huck, you just wait till we get in there. If we don't find it I'll agree to give you my drum and every thing I've got in the world. I will, by jings." "All right--it's a whiz. When do you say?" "Right now, if you say it. Are you strong enough?" "Is it far in the cave? I ben on my pins a little, three or four days, now, but I can't walk more'n a mile, Tom--least I don't think I could." "It's about five mile into there the way anybody but me would go, Huck, but there's a mighty short cut that they don't anybody but me know about. Huck, I'll take you right to it in a skiff. I'll float the skiff down there, and I'll pull it back again all by myself. You needn't ever turn your hand over." "Less start right off, Tom." "All right. We want some bread and meat, and our pipes, and a little bag or two, and two or three kite-strings, and some of these new-fangled things they call lucifer matches. I tell you, many's the time I wished I had some when I was in there before." A trifle after noon the boys borrowed a small skiff from a citizen who was absent, and got under way at once. When they were several miles below "Cave Hollow," Tom said: "Now you see this bluff here looks all alike all the way down from the cave hollow--no houses, no wood-yards, bushes all alike. But do you see that white place up yonder where there's been a landslide? Well, that's one of my marks. We'll get ashore, now." They landed. "Now, Huck, where we're a-standing you could touch that hole I got out of with a fishing-pole. See if you can find it." Huck searched all the place about, and found nothing. Tom proudly marched into a thick clump of sumach bushes and said: "Here you are! Look at it, Huck; it's the snuggest hole in this country. You just keep mum about it. All along I've been wanting to be a robber, but I knew I'd got to have a thing like this, and where to run across it was the bother. We've got it now, and we'll keep it quiet, only we'll let Joe Harper and Ben Rogers in--because of course there's got to be a Gang, or else there wouldn't be any style about it. Tom Sawyer's Gang--it sounds splendid, don't it, Huck?" "Well, it just does, Tom. And who'll we rob?" "Oh, most anybody. Waylay people--that's mostly the way." "And kill them?" "No, not always. Hive them in the cave till they raise a ransom." "What's a ransom?" "Money. You make them raise all they can, off'n their friends; and after you've kept them a year, if it ain't raised then you kill them. That's the general way. Only you don't kill the women. You shut up the women, but you don't kill them. They're always beautiful and rich, and awfully scared. You take their watches and things, but you always take your hat off and talk polite. They ain't anybody as polite as robbers --you'll see that in any book. Well, the women get to loving you, and after they've been in the cave a week or two weeks they stop crying and after that you couldn't get them to leave. If you drove them out they'd turn right around and come back. It's so in all the books." "Why, it's real bully, Tom. I believe it's better'n to be a pirate." "Yes, it's better in some ways, because it's close to home and circuses and all that." By this time everything was ready and the boys entered the hole, Tom in the lead. They toiled their way to the farther end of the tunnel, then made their spliced kite-strings fast and moved on. A few steps brought them to the spring, and Tom felt a shudder quiver all through him. He showed Huck the fragment of candle-wick perched on a lump of clay against the wall, and described how he and Becky had watched the flame struggle and expire. The boys began to quiet down to whispers, now, for the stillness and gloom of the place oppressed their spirits. They went on, and presently entered and followed Tom's other corridor until they reached the "jumping-off place." The candles revealed the fact that it was not really a precipice, but only a steep clay hill twenty or thirty feet high. Tom whispered: "Now I'll show you something, Huck." He held his candle aloft and said: "Look as far around the corner as you can. Do you see that? There--on the big rock over yonder--done with candle-smoke." "Tom, it's a CROSS!" "NOW where's your Number Two? 'UNDER THE CROSS,' hey? Right yonder's where I saw Injun Joe poke up his candle, Huck!" Huck stared at the mystic sign awhile, and then said with a shaky voice: "Tom, less git out of here!" "What! and leave the treasure?" "Yes--leave it. Injun Joe's ghost is round about there, certain." "No it ain't, Huck, no it ain't. It would ha'nt the place where he died--away out at the mouth of the cave--five mile from here." "No, Tom, it wouldn't. It would hang round the money. I know the ways of ghosts, and so do you." Tom began to fear that Huck was right. Misgivings gathered in his mind. But presently an idea occurred to him-- "Lookyhere, Huck, what fools we're making of ourselves! Injun Joe's ghost ain't a going to come around where there's a cross!" The point was well taken. It had its effect. "Tom, I didn't think of that. But that's so. It's luck for us, that cross is. I reckon we'll climb down there and have a hunt for that box." Tom went first, cutting rude steps in the clay hill as he descended. Huck followed. Four avenues opened out of the small cavern which the great rock stood in. The boys examined three of them with no result. They found a small recess in the one nearest the base of the rock, with a pallet of blankets spread down in it; also an old suspender, some bacon rind, and the well-gnawed bones of two or three fowls. But there was no money-box. The lads searched and researched this place, but in vain. Tom said: "He said UNDER the cross. Well, this comes nearest to being under the cross. It can't be under the rock itself, because that sets solid on the ground." They searched everywhere once more, and then sat down discouraged. Huck could suggest nothing. By-and-by Tom said: "Lookyhere, Huck, there's footprints and some candle-grease on the clay about one side of this rock, but not on the other sides. Now, what's that for? I bet you the money IS under the rock. I'm going to dig in the clay." "That ain't no bad notion, Tom!" said Huck with animation. Tom's "real Barlow" was out at once, and he had not dug four inches before he struck wood. "Hey, Huck!--you hear that?" Huck began to dig and scratch now. Some boards were soon uncovered and removed. They had concealed a natural chasm which led under the rock. Tom got into this and held his candle as far under the rock as he could, but said he could not see to the end of the rift. He proposed to explore. He stooped and passed under; the narrow way descended gradually. He followed its winding course, first to the right, then to the left, Huck at his heels. Tom turned a short curve, by-and-by, and exclaimed: "My goodness, Huck, lookyhere!" It was the treasure-box, sure enough, occupying a snug little cavern, along with an empty powder-keg, a couple of guns in leather cases, two or three pairs of old moccasins, a leather belt, and some other rubbish well soaked with the water-drip. "Got it at last!" said Huck, ploughing among the tarnished coins with his hand. "My, but we're rich, Tom!" "Huck, I always reckoned we'd get it. It's just too good to believe, but we HAVE got it, sure! Say--let's not fool around here. Let's snake it out. Lemme see if I can lift the box." It weighed about fifty pounds. Tom could lift it, after an awkward fashion, but could not carry it conveniently. "I thought so," he said; "THEY carried it like it was heavy, that day at the ha'nted house. I noticed that. I reckon I was right to think of fetching the little bags along." The money was soon in the bags and the boys took it up to the cross rock. "Now less fetch the guns and things," said Huck. "No, Huck--leave them there. They're just the tricks to have when we go to robbing. We'll keep them there all the time, and we'll hold our orgies there, too. It's an awful snug place for orgies." "What orgies?" "I dono. But robbers always have orgies, and of course we've got to have them, too. Come along, Huck, we've been in here a long time. It's getting late, I reckon. I'm hungry, too. We'll eat and smoke when we get to the skiff." They presently emerged into the clump of sumach bushes, looked warily out, found the coast clear, and were soon lunching and smoking in the skiff. As the sun dipped toward the horizon they pushed out and got under way. Tom skimmed up the shore through the long twilight, chatting cheerily with Huck, and landed shortly after dark. "Now, Huck," said Tom, "we'll hide the money in the loft of the widow's woodshed, and I'll come up in the morning and we'll count it and divide, and then we'll hunt up a place out in the woods for it where it will be safe. Just you lay quiet here and watch the stuff till I run and hook Benny Taylor's little wagon; I won't be gone a minute." He disappeared, and presently returned with the wagon, put the two small sacks into it, threw some old rags on top of them, and started off, dragging his cargo behind him. When the boys reached the Welshman's house, they stopped to rest. Just as they were about to move on, the Welshman stepped out and said: "Hallo, who's that?" "Huck and Tom Sawyer." "Good! Come along with me, boys, you are keeping everybody waiting. Here--hurry up, trot ahead--I'll haul the wagon for you. Why, it's not as light as it might be. Got bricks in it?--or old metal?" "Old metal," said Tom. "I judged so; the boys in this town will take more trouble and fool away more time hunting up six bits' worth of old iron to sell to the foundry than they would to make twice the money at regular work. But that's human nature--hurry along, hurry along!" The boys wanted to know what the hurry was about. "Never mind; you'll see, when we get to the Widow Douglas'." Huck said with some apprehension--for he was long used to being falsely accused: "Mr. Jones, we haven't been doing nothing." The Welshman laughed. "Well, I don't know, Huck, my boy. I don't know about that. Ain't you and the widow good friends?" "Yes. Well, she's ben good friends to me, anyway." "All right, then. What do you want to be afraid for?" This question was not entirely answered in Huck's slow mind before he found himself pushed, along with Tom, into Mrs. Douglas' drawing-room. Mr. Jones left the wagon near the door and followed. The place was grandly lighted, and everybody that was of any consequence in the village was there. The Thatchers were there, the Harpers, the Rogerses, Aunt Polly, Sid, Mary, the minister, the editor, and a great many more, and all dressed in their best. The widow received the boys as heartily as any one could well receive two such looking beings. They were covered with clay and candle-grease. Aunt Polly blushed crimson with humiliation, and frowned and shook her head at Tom. Nobody suffered half as much as the two boys did, however. Mr. Jones said: "Tom wasn't at home, yet, so I gave him up; but I stumbled on him and Huck right at my door, and so I just brought them along in a hurry." "And you did just right," said the widow. "Come with me, boys." She took them to a bedchamber and said: "Now wash and dress yourselves. Here are two new suits of clothes --shirts, socks, everything complete. They're Huck's--no, no thanks, Huck--Mr. Jones bought one and I the other. But they'll fit both of you. Get into them. We'll wait--come down when you are slicked up enough." Then she left. CHAPTER XXXIV HUCK said: "Tom, we can slope, if we can find a rope. The window ain't high from the ground." "Shucks! what do you want to slope for?" "Well, I ain't used to that kind of a crowd. I can't stand it. I ain't going down there, Tom." "Oh, bother! It ain't anything. I don't mind it a bit. I'll take care of you." Sid appeared. "Tom," said he, "auntie has been waiting for you all the afternoon. Mary got your Sunday clothes ready, and everybody's been fretting about you. Say--ain't this grease and clay, on your clothes?" "Now, Mr. Siddy, you jist 'tend to your own business. What's all this blow-out about, anyway?" "It's one of the widow's parties that she's always having. This time it's for the Welshman and his sons, on account of that scrape they helped her out of the other night. And say--I can tell you something, if you want to know." "Well, what?" "Why, old Mr. Jones is going to try to spring something on the people here to-night, but I overheard him tell auntie to-day about it, as a secret, but I reckon it's not much of a secret now. Everybody knows --the widow, too, for all she tries to let on she don't. Mr. Jones was bound Huck should be here--couldn't get along with his grand secret without Huck, you know!" "Secret about what, Sid?" "About Huck tracking the robbers to the widow's. I reckon Mr. Jones was going to make a grand time over his surprise, but I bet you it will drop pretty flat." Sid chuckled in a very contented and satisfied way. "Sid, was it you that told?" "Oh, never mind who it was. SOMEBODY told--that's enough." "Sid, there's only one person in this town mean enough to do that, and that's you. If you had been in Huck's place you'd 'a' sneaked down the hill and never told anybody on the robbers. You can't do any but mean things, and you can't bear to see anybody praised for doing good ones. There--no thanks, as the widow says"--and Tom cuffed Sid's ears and helped him to the door with several kicks. "Now go and tell auntie if you dare--and to-morrow you'll catch it!" Some minutes later the widow's guests were at the supper-table, and a dozen children were propped up at little side-tables in the same room, after the fashion of that country and that day. At the proper time Mr. Jones made his little speech, in which he thanked the widow for the honor she was doing himself and his sons, but said that there was another person whose modesty-- And so forth and so on. He sprung his secret about Huck's share in the adventure in the finest dramatic manner he was master of, but the surprise it occasioned was largely counterfeit and not as clamorous and effusive as it might have been under happier circumstances. However, the widow made a pretty fair show of astonishment, and heaped so many compliments and so much gratitude upon Huck that he almost forgot the nearly intolerable discomfort of his new clothes in the entirely intolerable discomfort of being set up as a target for everybody's gaze and everybody's laudations. The widow said she meant to give Huck a home under her roof and have him educated; and that when she could spare the money she would start him in business in a modest way. Tom's chance was come. He said: "Huck don't need it. Huck's rich." Nothing but a heavy strain upon the good manners of the company kept back the due and proper complimentary laugh at this pleasant joke. But the silence was a little awkward. Tom broke it: "Huck's got money. Maybe you don't believe it, but he's got lots of it. Oh, you needn't smile--I reckon I can show you. You just wait a minute." Tom ran out of doors. The company looked at each other with a perplexed interest--and inquiringly at Huck, who was tongue-tied. "Sid, what ails Tom?" said Aunt Polly. "He--well, there ain't ever any making of that boy out. I never--" Tom entered, struggling with the weight of his sacks, and Aunt Polly did not finish her sentence. Tom poured the mass of yellow coin upon the table and said: "There--what did I tell you? Half of it's Huck's and half of it's mine!" The spectacle took the general breath away. All gazed, nobody spoke for a moment. Then there was a unanimous call for an explanation. Tom said he could furnish it, and he did. The tale was long, but brimful of interest. There was scarcely an interruption from any one to break the charm of its flow. When he had finished, Mr. Jones said: "I thought I had fixed up a little surprise for this occasion, but it don't amount to anything now. This one makes it sing mighty small, I'm willing to allow." The money was counted. The sum amounted to a little over twelve thousand dollars. It was more than any one present had ever seen at one time before, though several persons were there who were worth considerably more than that in property. CHAPTER XXXV THE reader may rest satisfied that Tom's and Huck's windfall made a mighty stir in the poor little village of St. Petersburg. So vast a sum, all in actual cash, seemed next to incredible. It was talked about, gloated over, glorified, until the reason of many of the citizens tottered under the strain of the unhealthy excitement. Every "haunted" house in St. Petersburg and the neighboring villages was dissected, plank by plank, and its foundations dug up and ransacked for hidden treasure--and not by boys, but men--pretty grave, unromantic men, too, some of them. Wherever Tom and Huck appeared they were courted, admired, stared at. The boys were not able to remember that their remarks had possessed weight before; but now their sayings were treasured and repeated; everything they did seemed somehow to be regarded as remarkable; they had evidently lost the power of doing and saying commonplace things; moreover, their past history was raked up and discovered to bear marks of conspicuous originality. The village paper published biographical sketches of the boys. The Widow Douglas put Huck's money out at six per cent., and Judge Thatcher did the same with Tom's at Aunt Polly's request. Each lad had an income, now, that was simply prodigious--a dollar for every week-day in the year and half of the Sundays. It was just what the minister got --no, it was what he was promised--he generally couldn't collect it. A dollar and a quarter a week would board, lodge, and school a boy in those old simple days--and clothe him and wash him, too, for that matter. Judge Thatcher had conceived a great opinion of Tom. He said that no commonplace boy would ever have got his daughter out of the cave. When Becky told her father, in strict confidence, how Tom had taken her whipping at school, the Judge was visibly moved; and when she pleaded grace for the mighty lie which Tom had told in order to shift that whipping from her shoulders to his own, the Judge said with a fine outburst that it was a noble, a generous, a magnanimous lie--a lie that was worthy to hold up its head and march down through history breast to breast with George Washington's lauded Truth about the hatchet! Becky thought her father had never looked so tall and so superb as when he walked the floor and stamped his foot and said that. She went straight off and told Tom about it. Judge Thatcher hoped to see Tom a great lawyer or a great soldier some day. He said he meant to look to it that Tom should be admitted to the National Military Academy and afterward trained in the best law school in the country, in order that he might be ready for either career or both. Huck Finn's wealth and the fact that he was now under the Widow Douglas' protection introduced him into society--no, dragged him into it, hurled him into it--and his sufferings were almost more than he could bear. The widow's servants kept him clean and neat, combed and brushed, and they bedded him nightly in unsympathetic sheets that had not one little spot or stain which he could press to his heart and know for a friend. He had to eat with a knife and fork; he had to use napkin, cup, and plate; he had to learn his book, he had to go to church; he had to talk so properly that speech was become insipid in his mouth; whithersoever he turned, the bars and shackles of civilization shut him in and bound him hand and foot. He bravely bore his miseries three weeks, and then one day turned up missing. For forty-eight hours the widow hunted for him everywhere in great distress. The public were profoundly concerned; they searched high and low, they dragged the river for his body. Early the third morning Tom Sawyer wisely went poking among some old empty hogsheads down behind the abandoned slaughter-house, and in one of them he found the refugee. Huck had slept there; he had just breakfasted upon some stolen odds and ends of food, and was lying off, now, in comfort, with his pipe. He was unkempt, uncombed, and clad in the same old ruin of rags that had made him picturesque in the days when he was free and happy. Tom routed him out, told him the trouble he had been causing, and urged him to go home. Huck's face lost its tranquil content, and took a melancholy cast. He said: "Don't talk about it, Tom. I've tried it, and it don't work; it don't work, Tom. It ain't for me; I ain't used to it. The widder's good to me, and friendly; but I can't stand them ways. She makes me get up just at the same time every morning; she makes me wash, they comb me all to thunder; she won't let me sleep in the woodshed; I got to wear them blamed clothes that just smothers me, Tom; they don't seem to any air git through 'em, somehow; and they're so rotten nice that I can't set down, nor lay down, nor roll around anywher's; I hain't slid on a cellar-door for--well, it 'pears to be years; I got to go to church and sweat and sweat--I hate them ornery sermons! I can't ketch a fly in there, I can't chaw. I got to wear shoes all Sunday. The widder eats by a bell; she goes to bed by a bell; she gits up by a bell--everything's so awful reg'lar a body can't stand it." "Well, everybody does that way, Huck." "Tom, it don't make no difference. I ain't everybody, and I can't STAND it. It's awful to be tied up so. And grub comes too easy--I don't take no interest in vittles, that way. I got to ask to go a-fishing; I got to ask to go in a-swimming--dern'd if I hain't got to ask to do everything. Well, I'd got to talk so nice it wasn't no comfort--I'd got to go up in the attic and rip out awhile, every day, to git a taste in my mouth, or I'd a died, Tom. The widder wouldn't let me smoke; she wouldn't let me yell, she wouldn't let me gape, nor stretch, nor scratch, before folks--" [Then with a spasm of special irritation and injury]--"And dad fetch it, she prayed all the time! I never see such a woman! I HAD to shove, Tom--I just had to. And besides, that school's going to open, and I'd a had to go to it--well, I wouldn't stand THAT, Tom. Looky here, Tom, being rich ain't what it's cracked up to be. It's just worry and worry, and sweat and sweat, and a-wishing you was dead all the time. Now these clothes suits me, and this bar'l suits me, and I ain't ever going to shake 'em any more. Tom, I wouldn't ever got into all this trouble if it hadn't 'a' ben for that money; now you just take my sheer of it along with your'n, and gimme a ten-center sometimes--not many times, becuz I don't give a dern for a thing 'thout it's tollable hard to git--and you go and beg off for me with the widder." "Oh, Huck, you know I can't do that. 'Tain't fair; and besides if you'll try this thing just a while longer you'll come to like it." "Like it! Yes--the way I'd like a hot stove if I was to set on it long enough. No, Tom, I won't be rich, and I won't live in them cussed smothery houses. I like the woods, and the river, and hogsheads, and I'll stick to 'em, too. Blame it all! just as we'd got guns, and a cave, and all just fixed to rob, here this dern foolishness has got to come up and spile it all!" Tom saw his opportunity-- "Lookyhere, Huck, being rich ain't going to keep me back from turning robber." "No! Oh, good-licks; are you in real dead-wood earnest, Tom?" "Just as dead earnest as I'm sitting here. But Huck, we can't let you into the gang if you ain't respectable, you know." Huck's joy was quenched. "Can't let me in, Tom? Didn't you let me go for a pirate?" "Yes, but that's different. A robber is more high-toned than what a pirate is--as a general thing. In most countries they're awful high up in the nobility--dukes and such." "Now, Tom, hain't you always ben friendly to me? You wouldn't shet me out, would you, Tom? You wouldn't do that, now, WOULD you, Tom?" "Huck, I wouldn't want to, and I DON'T want to--but what would people say? Why, they'd say, 'Mph! Tom Sawyer's Gang! pretty low characters in it!' They'd mean you, Huck. You wouldn't like that, and I wouldn't." Huck was silent for some time, engaged in a mental struggle. Finally he said: "Well, I'll go back to the widder for a month and tackle it and see if I can come to stand it, if you'll let me b'long to the gang, Tom." "All right, Huck, it's a whiz! Come along, old chap, and I'll ask the widow to let up on you a little, Huck." "Will you, Tom--now will you? That's good. If she'll let up on some of the roughest things, I'll smoke private and cuss private, and crowd through or bust. When you going to start the gang and turn robbers?" "Oh, right off. We'll get the boys together and have the initiation to-night, maybe." "Have the which?" "Have the initiation." "What's that?" "It's to swear to stand by one another, and never tell the gang's secrets, even if you're chopped all to flinders, and kill anybody and all his family that hurts one of the gang." "That's gay--that's mighty gay, Tom, I tell you." "Well, I bet it is. And all that swearing's got to be done at midnight, in the lonesomest, awfulest place you can find--a ha'nted house is the best, but they're all ripped up now." "Well, midnight's good, anyway, Tom." "Yes, so it is. And you've got to swear on a coffin, and sign it with blood." "Now, that's something LIKE! Why, it's a million times bullier than pirating. I'll stick to the widder till I rot, Tom; and if I git to be a reg'lar ripper of a robber, and everybody talking 'bout it, I reckon she'll be proud she snaked me in out of the wet." CONCLUSION SO endeth this chronicle. It being strictly a history of a BOY, it must stop here; the story could not go much further without becoming the history of a MAN. When one writes a novel about grown people, he knows exactly where to stop--that is, with a marriage; but when he writes of juveniles, he must stop where he best can. Most of the characters that perform in this book still live, and are prosperous and happy. Some day it may seem worth while to take up the story of the younger ones again and see what sort of men and women they turned out to be; therefore it will be wisest not to reveal any of that part of their lives at present. Produced by David Widger. The previous edition was updated by Jose Menendez. THE ADVENTURES OF TOM SAWYER BY MARK TWAIN (Samuel Langhorne Clemens) P R E F A C E MOST of the adventures recorded in this book really occurred; one or two were experiences of my own, the rest those of boys who were schoolmates of mine. Huck Finn is drawn from life; Tom Sawyer also, but not from an individual--he is a combination of the characteristics of three boys whom I knew, and therefore belongs to the composite order of architecture. The odd superstitions touched upon were all prevalent among children and slaves in the West at the period of this story--that is to say, thirty or forty years ago. Although my book is intended mainly for the entertainment of boys and girls, I hope it will not be shunned by men and women on that account, for part of my plan has been to try to pleasantly remind adults of what they once were themselves, and of how they felt and thought and talked, and what queer enterprises they sometimes engaged in. THE AUTHOR. HARTFORD, 1876. T O M S A W Y E R CHAPTER I "TOM!" No answer. "TOM!" No answer. "What's gone with that boy, I wonder? You TOM!" No answer. The old lady pulled her spectacles down and looked over them about the room; then she put them up and looked out under them. She seldom or never looked THROUGH them for so small a thing as a boy; they were her state pair, the pride of her heart, and were built for "style," not service--she could have seen through a pair of stove-lids just as well. She looked perplexed for a moment, and then said, not fiercely, but still loud enough for the furniture to hear: "Well, I lay if I get hold of you I'll--" She did not finish, for by this time she was bending down and punching under the bed with the broom, and so she needed breath to punctuate the punches with. She resurrected nothing but the cat. "I never did see the beat of that boy!" She went to the open door and stood in it and looked out among the tomato vines and "jimpson" weeds that constituted the garden. No Tom. So she lifted up her voice at an angle calculated for distance and shouted: "Y-o-u-u TOM!" There was a slight noise behind her and she turned just in time to seize a small boy by the slack of his roundabout and arrest his flight. "There! I might 'a' thought of that closet. What you been doing in there?" "Nothing." "Nothing! Look at your hands. And look at your mouth. What IS that truck?" "I don't know, aunt." "Well, I know. It's jam--that's what it is. Forty times I've said if you didn't let that jam alone I'd skin you. Hand me that switch." The switch hovered in the air--the peril was desperate-- "My! Look behind you, aunt!" The old lady whirled round, and snatched her skirts out of danger. The lad fled on the instant, scrambled up the high board-fence, and disappeared over it. His aunt Polly stood surprised a moment, and then broke into a gentle laugh. "Hang the boy, can't I never learn anything? Ain't he played me tricks enough like that for me to be looking out for him by this time? But old fools is the biggest fools there is. Can't learn an old dog new tricks, as the saying is. But my goodness, he never plays them alike, two days, and how is a body to know what's coming? He 'pears to know just how long he can torment me before I get my dander up, and he knows if he can make out to put me off for a minute or make me laugh, it's all down again and I can't hit him a lick. I ain't doing my duty by that boy, and that's the Lord's truth, goodness knows. Spare the rod and spile the child, as the Good Book says. I'm a laying up sin and suffering for us both, I know. He's full of the Old Scratch, but laws-a-me! he's my own dead sister's boy, poor thing, and I ain't got the heart to lash him, somehow. Every time I let him off, my conscience does hurt me so, and every time I hit him my old heart most breaks. Well-a-well, man that is born of woman is of few days and full of trouble, as the Scripture says, and I reckon it's so. He'll play hookey this evening, * and [* Southwestern for "afternoon"] I'll just be obleeged to make him work, to-morrow, to punish him. It's mighty hard to make him work Saturdays, when all the boys is having holiday, but he hates work more than he hates anything else, and I've GOT to do some of my duty by him, or I'll be the ruination of the child." Tom did play hookey, and he had a very good time. He got back home barely in season to help Jim, the small colored boy, saw next-day's wood and split the kindlings before supper--at least he was there in time to tell his adventures to Jim while Jim did three-fourths of the work. Tom's younger brother (or rather half-brother) Sid was already through with his part of the work (picking up chips), for he was a quiet boy, and had no adventurous, troublesome ways. While Tom was eating his supper, and stealing sugar as opportunity offered, Aunt Polly asked him questions that were full of guile, and very deep--for she wanted to trap him into damaging revealments. Like many other simple-hearted souls, it was her pet vanity to believe she was endowed with a talent for dark and mysterious diplomacy, and she loved to contemplate her most transparent devices as marvels of low cunning. Said she: "Tom, it was middling warm in school, warn't it?" "Yes'm." "Powerful warm, warn't it?" "Yes'm." "Didn't you want to go in a-swimming, Tom?" A bit of a scare shot through Tom--a touch of uncomfortable suspicion. He searched Aunt Polly's face, but it told him nothing. So he said: "No'm--well, not very much." The old lady reached out her hand and felt Tom's shirt, and said: "But you ain't too warm now, though." And it flattered her to reflect that she had discovered that the shirt was dry without anybody knowing that that was what she had in her mind. But in spite of her, Tom knew where the wind lay, now. So he forestalled what might be the next move: "Some of us pumped on our heads--mine's damp yet. See?" Aunt Polly was vexed to think she had overlooked that bit of circumstantial evidence, and missed a trick. Then she had a new inspiration: "Tom, you didn't have to undo your shirt collar where I sewed it, to pump on your head, did you? Unbutton your jacket!" The trouble vanished out of Tom's face. He opened his jacket. His shirt collar was securely sewed. "Bother! Well, go 'long with you. I'd made sure you'd played hookey and been a-swimming. But I forgive ye, Tom. I reckon you're a kind of a singed cat, as the saying is--better'n you look. THIS time." She was half sorry her sagacity had miscarried, and half glad that Tom had stumbled into obedient conduct for once. But Sidney said: "Well, now, if I didn't think you sewed his collar with white thread, but it's black." "Why, I did sew it with white! Tom!" But Tom did not wait for the rest. As he went out at the door he said: "Siddy, I'll lick you for that." In a safe place Tom examined two large needles which were thrust into the lapels of his jacket, and had thread bound about them--one needle carried white thread and the other black. He said: "She'd never noticed if it hadn't been for Sid. Confound it! sometimes she sews it with white, and sometimes she sews it with black. I wish to geeminy she'd stick to one or t'other--I can't keep the run of 'em. But I bet you I'll lam Sid for that. I'll learn him!" He was not the Model Boy of the village. He knew the model boy very well though--and loathed him. Within two minutes, or even less, he had forgotten all his troubles. Not because his troubles were one whit less heavy and bitter to him than a man's are to a man, but because a new and powerful interest bore them down and drove them out of his mind for the time--just as men's misfortunes are forgotten in the excitement of new enterprises. This new interest was a valued novelty in whistling, which he had just acquired from a negro, and he was suffering to practise it undisturbed. It consisted in a peculiar bird-like turn, a sort of liquid warble, produced by touching the tongue to the roof of the mouth at short intervals in the midst of the music--the reader probably remembers how to do it, if he has ever been a boy. Diligence and attention soon gave him the knack of it, and he strode down the street with his mouth full of harmony and his soul full of gratitude. He felt much as an astronomer feels who has discovered a new planet--no doubt, as far as strong, deep, unalloyed pleasure is concerned, the advantage was with the boy, not the astronomer. The summer evenings were long. It was not dark, yet. Presently Tom checked his whistle. A stranger was before him--a boy a shade larger than himself. A new-comer of any age or either sex was an impressive curiosity in the poor little shabby village of St. Petersburg. This boy was well dressed, too--well dressed on a week-day. This was simply astounding. His cap was a dainty thing, his close-buttoned blue cloth roundabout was new and natty, and so were his pantaloons. He had shoes on--and it was only Friday. He even wore a necktie, a bright bit of ribbon. He had a citified air about him that ate into Tom's vitals. The more Tom stared at the splendid marvel, the higher he turned up his nose at his finery and the shabbier and shabbier his own outfit seemed to him to grow. Neither boy spoke. If one moved, the other moved--but only sidewise, in a circle; they kept face to face and eye to eye all the time. Finally Tom said: "I can lick you!" "I'd like to see you try it." "Well, I can do it." "No you can't, either." "Yes I can." "No you can't." "I can." "You can't." "Can!" "Can't!" An uncomfortable pause. Then Tom said: "What's your name?" "'Tisn't any of your business, maybe." "Well I 'low I'll MAKE it my business." "Well why don't you?" "If you say much, I will." "Much--much--MUCH. There now." "Oh, you think you're mighty smart, DON'T you? I could lick you with one hand tied behind me, if I wanted to." "Well why don't you DO it? You SAY you can do it." "Well I WILL, if you fool with me." "Oh yes--I've seen whole families in the same fix." "Smarty! You think you're SOME, now, DON'T you? Oh, what a hat!" "You can lump that hat if you don't like it. I dare you to knock it off--and anybody that'll take a dare will suck eggs." "You're a liar!" "You're another." "You're a fighting liar and dasn't take it up." "Aw--take a walk!" "Say--if you give me much more of your sass I'll take and bounce a rock off'n your head." "Oh, of COURSE you will." "Well I WILL." "Well why don't you DO it then? What do you keep SAYING you will for? Why don't you DO it? It's because you're afraid." "I AIN'T afraid." "You are." "I ain't." "You are." Another pause, and more eying and sidling around each other. Presently they were shoulder to shoulder. Tom said: "Get away from here!" "Go away yourself!" "I won't." "I won't either." So they stood, each with a foot placed at an angle as a brace, and both shoving with might and main, and glowering at each other with hate. But neither could get an advantage. After struggling till both were hot and flushed, each relaxed his strain with watchful caution, and Tom said: "You're a coward and a pup. I'll tell my big brother on you, and he can thrash you with his little finger, and I'll make him do it, too." "What do I care for your big brother? I've got a brother that's bigger than he is--and what's more, he can throw him over that fence, too." [Both brothers were imaginary.] "That's a lie." "YOUR saying so don't make it so." Tom drew a line in the dust with his big toe, and said: "I dare you to step over that, and I'll lick you till you can't stand up. Anybody that'll take a dare will steal sheep." The new boy stepped over promptly, and said: "Now you said you'd do it, now let's see you do it." "Don't you crowd me now; you better look out." "Well, you SAID you'd do it--why don't you do it?" "By jingo! for two cents I WILL do it." The new boy took two broad coppers out of his pocket and held them out with derision. Tom struck them to the ground. In an instant both boys were rolling and tumbling in the dirt, gripped together like cats; and for the space of a minute they tugged and tore at each other's hair and clothes, punched and scratched each other's nose, and covered themselves with dust and glory. Presently the confusion took form, and through the fog of battle Tom appeared, seated astride the new boy, and pounding him with his fists. "Holler 'nuff!" said he. The boy only struggled to free himself. He was crying--mainly from rage. "Holler 'nuff!"--and the pounding went on. At last the stranger got out a smothered "'Nuff!" and Tom let him up and said: "Now that'll learn you. Better look out who you're fooling with next time." The new boy went off brushing the dust from his clothes, sobbing, snuffling, and occasionally looking back and shaking his head and threatening what he would do to Tom the "next time he caught him out." To which Tom responded with jeers, and started off in high feather, and as soon as his back was turned the new boy snatched up a stone, threw it and hit him between the shoulders and then turned tail and ran like an antelope. Tom chased the traitor home, and thus found out where he lived. He then held a position at the gate for some time, daring the enemy to come outside, but the enemy only made faces at him through the window and declined. At last the enemy's mother appeared, and called Tom a bad, vicious, vulgar child, and ordered him away. So he went away; but he said he "'lowed" to "lay" for that boy. He got home pretty late that night, and when he climbed cautiously in at the window, he uncovered an ambuscade, in the person of his aunt; and when she saw the state his clothes were in her resolution to turn his Saturday holiday into captivity at hard labor became adamantine in its firmness. CHAPTER II SATURDAY morning was come, and all the summer world was bright and fresh, and brimming with life. There was a song in every heart; and if the heart was young the music issued at the lips. There was cheer in every face and a spring in every step. The locust-trees were in bloom and the fragrance of the blossoms filled the air. Cardiff Hill, beyond the village and above it, was green with vegetation and it lay just far enough away to seem a Delectable Land, dreamy, reposeful, and inviting. Tom appeared on the sidewalk with a bucket of whitewash and a long-handled brush. He surveyed the fence, and all gladness left him and a deep melancholy settled down upon his spirit. Thirty yards of board fence nine feet high. Life to him seemed hollow, and existence but a burden. Sighing, he dipped his brush and passed it along the topmost plank; repeated the operation; did it again; compared the insignificant whitewashed streak with the far-reaching continent of unwhitewashed fence, and sat down on a tree-box discouraged. Jim came skipping out at the gate with a tin pail, and singing Buffalo Gals. Bringing water from the town pump had always been hateful work in Tom's eyes, before, but now it did not strike him so. He remembered that there was company at the pump. White, mulatto, and negro boys and girls were always there waiting their turns, resting, trading playthings, quarrelling, fighting, skylarking. And he remembered that although the pump was only a hundred and fifty yards off, Jim never got back with a bucket of water under an hour--and even then somebody generally had to go after him. Tom said: "Say, Jim, I'll fetch the water if you'll whitewash some." Jim shook his head and said: "Can't, Mars Tom. Ole missis, she tole me I got to go an' git dis water an' not stop foolin' roun' wid anybody. She say she spec' Mars Tom gwine to ax me to whitewash, an' so she tole me go 'long an' 'tend to my own business--she 'lowed SHE'D 'tend to de whitewashin'." "Oh, never you mind what she said, Jim. That's the way she always talks. Gimme the bucket--I won't be gone only a a minute. SHE won't ever know." "Oh, I dasn't, Mars Tom. Ole missis she'd take an' tar de head off'n me. 'Deed she would." "SHE! She never licks anybody--whacks 'em over the head with her thimble--and who cares for that, I'd like to know. She talks awful, but talk don't hurt--anyways it don't if she don't cry. Jim, I'll give you a marvel. I'll give you a white alley!" Jim began to waver. "White alley, Jim! And it's a bully taw." "My! Dat's a mighty gay marvel, I tell you! But Mars Tom I's powerful 'fraid ole missis--" "And besides, if you will I'll show you my sore toe." Jim was only human--this attraction was too much for him. He put down his pail, took the white alley, and bent over the toe with absorbing interest while the bandage was being unwound. In another moment he was flying down the street with his pail and a tingling rear, Tom was whitewashing with vigor, and Aunt Polly was retiring from the field with a slipper in her hand and triumph in her eye. But Tom's energy did not last. He began to think of the fun he had planned for this day, and his sorrows multiplied. Soon the free boys would come tripping along on all sorts of delicious expeditions, and they would make a world of fun of him for having to work--the very thought of it burnt him like fire. He got out his worldly wealth and examined it--bits of toys, marbles, and trash; enough to buy an exchange of WORK, maybe, but not half enough to buy so much as half an hour of pure freedom. So he returned his straitened means to his pocket, and gave up the idea of trying to buy the boys. At this dark and hopeless moment an inspiration burst upon him! Nothing less than a great, magnificent inspiration. He took up his brush and went tranquilly to work. Ben Rogers hove in sight presently--the very boy, of all boys, whose ridicule he had been dreading. Ben's gait was the hop-skip-and-jump--proof enough that his heart was light and his anticipations high. He was eating an apple, and giving a long, melodious whoop, at intervals, followed by a deep-toned ding-dong-dong, ding-dong-dong, for he was personating a steamboat. As he drew near, he slackened speed, took the middle of the street, leaned far over to starboard and rounded to ponderously and with laborious pomp and circumstance--for he was personating the Big Missouri, and considered himself to be drawing nine feet of water. He was boat and captain and engine-bells combined, so he had to imagine himself standing on his own hurricane-deck giving the orders and executing them: "Stop her, sir! Ting-a-ling-ling!" The headway ran almost out, and he drew up slowly toward the sidewalk. "Ship up to back! Ting-a-ling-ling!" His arms straightened and stiffened down his sides. "Set her back on the stabboard! Ting-a-ling-ling! Chow! ch-chow-wow! Chow!" His right hand, meantime, describing stately circles--for it was representing a forty-foot wheel. "Let her go back on the labboard! Ting-a-lingling! Chow-ch-chow-chow!" The left hand began to describe circles. "Stop the stabboard! Ting-a-ling-ling! Stop the labboard! Come ahead on the stabboard! Stop her! Let your outside turn over slow! Ting-a-ling-ling! Chow-ow-ow! Get out that head-line! LIVELY now! Come--out with your spring-line--what're you about there! Take a turn round that stump with the bight of it! Stand by that stage, now--let her go! Done with the engines, sir! Ting-a-ling-ling! SH'T! S'H'T! SH'T!" (trying the gauge-cocks). Tom went on whitewashing--paid no attention to the steamboat. Ben stared a moment and then said: "Hi-YI! YOU'RE up a stump, ain't you!" No answer. Tom surveyed his last touch with the eye of an artist, then he gave his brush another gentle sweep and surveyed the result, as before. Ben ranged up alongside of him. Tom's mouth watered for the apple, but he stuck to his work. Ben said: "Hello, old chap, you got to work, hey?" Tom wheeled suddenly and said: "Why, it's you, Ben! I warn't noticing." "Say--I'm going in a-swimming, I am. Don't you wish you could? But of course you'd druther WORK--wouldn't you? Course you would!" Tom contemplated the boy a bit, and said: "What do you call work?" "Why, ain't THAT work?" Tom resumed his whitewashing, and answered carelessly: "Well, maybe it is, and maybe it ain't. All I know, is, it suits Tom Sawyer." "Oh come, now, you don't mean to let on that you LIKE it?" The brush continued to move. "Like it? Well, I don't see why I oughtn't to like it. Does a boy get a chance to whitewash a fence every day?" That put the thing in a new light. Ben stopped nibbling his apple. Tom swept his brush daintily back and forth--stepped back to note the effect--added a touch here and there--criticised the effect again--Ben watching every move and getting more and more interested, more and more absorbed. Presently he said: "Say, Tom, let ME whitewash a little." Tom considered, was about to consent; but he altered his mind: "No--no--I reckon it wouldn't hardly do, Ben. You see, Aunt Polly's awful particular about this fence--right here on the street, you know --but if it was the back fence I wouldn't mind and SHE wouldn't. Yes, she's awful particular about this fence; it's got to be done very careful; I reckon there ain't one boy in a thousand, maybe two thousand, that can do it the way it's got to be done." "No--is that so? Oh come, now--lemme just try. Only just a little--I'd let YOU, if you was me, Tom." "Ben, I'd like to, honest injun; but Aunt Polly--well, Jim wanted to do it, but she wouldn't let him; Sid wanted to do it, and she wouldn't let Sid. Now don't you see how I'm fixed? If you was to tackle this fence and anything was to happen to it--" "Oh, shucks, I'll be just as careful. Now lemme try. Say--I'll give you the core of my apple." "Well, here--No, Ben, now don't. I'm afeard--" "I'll give you ALL of it!" Tom gave up the brush with reluctance in his face, but alacrity in his heart. And while the late steamer Big Missouri worked and sweated in the sun, the retired artist sat on a barrel in the shade close by, dangled his legs, munched his apple, and planned the slaughter of more innocents. There was no lack of material; boys happened along every little while; they came to jeer, but remained to whitewash. By the time Ben was fagged out, Tom had traded the next chance to Billy Fisher for a kite, in good repair; and when he played out, Johnny Miller bought in for a dead rat and a string to swing it with--and so on, and so on, hour after hour. And when the middle of the afternoon came, from being a poor poverty-stricken boy in the morning, Tom was literally rolling in wealth. He had besides the things before mentioned, twelve marbles, part of a jews-harp, a piece of blue bottle-glass to look through, a spool cannon, a key that wouldn't unlock anything, a fragment of chalk, a glass stopper of a decanter, a tin soldier, a couple of tadpoles, six fire-crackers, a kitten with only one eye, a brass doorknob, a dog-collar--but no dog--the handle of a knife, four pieces of orange-peel, and a dilapidated old window sash. He had had a nice, good, idle time all the while--plenty of company --and the fence had three coats of whitewash on it! If he hadn't run out of whitewash he would have bankrupted every boy in the village. Tom said to himself that it was not such a hollow world, after all. He had discovered a great law of human action, without knowing it--namely, that in order to make a man or a boy covet a thing, it is only necessary to make the thing difficult to attain. If he had been a great and wise philosopher, like the writer of this book, he would now have comprehended that Work consists of whatever a body is OBLIGED to do, and that Play consists of whatever a body is not obliged to do. And this would help him to understand why constructing artificial flowers or performing on a tread-mill is work, while rolling ten-pins or climbing Mont Blanc is only amusement. There are wealthy gentlemen in England who drive four-horse passenger-coaches twenty or thirty miles on a daily line, in the summer, because the privilege costs them considerable money; but if they were offered wages for the service, that would turn it into work and then they would resign. The boy mused awhile over the substantial change which had taken place in his worldly circumstances, and then wended toward headquarters to report. CHAPTER III TOM presented himself before Aunt Polly, who was sitting by an open window in a pleasant rearward apartment, which was bedroom, breakfast-room, dining-room, and library, combined. The balmy summer air, the restful quiet, the odor of the flowers, and the drowsing murmur of the bees had had their effect, and she was nodding over her knitting --for she had no company but the cat, and it was asleep in her lap. Her spectacles were propped up on her gray head for safety. She had thought that of course Tom had deserted long ago, and she wondered at seeing him place himself in her power again in this intrepid way. He said: "Mayn't I go and play now, aunt?" "What, a'ready? How much have you done?" "It's all done, aunt." "Tom, don't lie to me--I can't bear it." "I ain't, aunt; it IS all done." Aunt Polly placed small trust in such evidence. She went out to see for herself; and she would have been content to find twenty per cent. of Tom's statement true. When she found the entire fence whitewashed, and not only whitewashed but elaborately coated and recoated, and even a streak added to the ground, her astonishment was almost unspeakable. She said: "Well, I never! There's no getting round it, you can work when you're a mind to, Tom." And then she diluted the compliment by adding, "But it's powerful seldom you're a mind to, I'm bound to say. Well, go 'long and play; but mind you get back some time in a week, or I'll tan you." She was so overcome by the splendor of his achievement that she took him into the closet and selected a choice apple and delivered it to him, along with an improving lecture upon the added value and flavor a treat took to itself when it came without sin through virtuous effort. And while she closed with a happy Scriptural flourish, he "hooked" a doughnut. Then he skipped out, and saw Sid just starting up the outside stairway that led to the back rooms on the second floor. Clods were handy and the air was full of them in a twinkling. They raged around Sid like a hail-storm; and before Aunt Polly could collect her surprised faculties and sally to the rescue, six or seven clods had taken personal effect, and Tom was over the fence and gone. There was a gate, but as a general thing he was too crowded for time to make use of it. His soul was at peace, now that he had settled with Sid for calling attention to his black thread and getting him into trouble. Tom skirted the block, and came round into a muddy alley that led by the back of his aunt's cow-stable. He presently got safely beyond the reach of capture and punishment, and hastened toward the public square of the village, where two "military" companies of boys had met for conflict, according to previous appointment. Tom was General of one of these armies, Joe Harper (a bosom friend) General of the other. These two great commanders did not condescend to fight in person--that being better suited to the still smaller fry--but sat together on an eminence and conducted the field operations by orders delivered through aides-de-camp. Tom's army won a great victory, after a long and hard-fought battle. Then the dead were counted, prisoners exchanged, the terms of the next disagreement agreed upon, and the day for the necessary battle appointed; after which the armies fell into line and marched away, and Tom turned homeward alone. As he was passing by the house where Jeff Thatcher lived, he saw a new girl in the garden--a lovely little blue-eyed creature with yellow hair plaited into two long-tails, white summer frock and embroidered pantalettes. The fresh-crowned hero fell without firing a shot. A certain Amy Lawrence vanished out of his heart and left not even a memory of herself behind. He had thought he loved her to distraction; he had regarded his passion as adoration; and behold it was only a poor little evanescent partiality. He had been months winning her; she had confessed hardly a week ago; he had been the happiest and the proudest boy in the world only seven short days, and here in one instant of time she had gone out of his heart like a casual stranger whose visit is done. He worshipped this new angel with furtive eye, till he saw that she had discovered him; then he pretended he did not know she was present, and began to "show off" in all sorts of absurd boyish ways, in order to win her admiration. He kept up this grotesque foolishness for some time; but by-and-by, while he was in the midst of some dangerous gymnastic performances, he glanced aside and saw that the little girl was wending her way toward the house. Tom came up to the fence and leaned on it, grieving, and hoping she would tarry yet awhile longer. She halted a moment on the steps and then moved toward the door. Tom heaved a great sigh as she put her foot on the threshold. But his face lit up, right away, for she tossed a pansy over the fence a moment before she disappeared. The boy ran around and stopped within a foot or two of the flower, and then shaded his eyes with his hand and began to look down street as if he had discovered something of interest going on in that direction. Presently he picked up a straw and began trying to balance it on his nose, with his head tilted far back; and as he moved from side to side, in his efforts, he edged nearer and nearer toward the pansy; finally his bare foot rested upon it, his pliant toes closed upon it, and he hopped away with the treasure and disappeared round the corner. But only for a minute--only while he could button the flower inside his jacket, next his heart--or next his stomach, possibly, for he was not much posted in anatomy, and not hypercritical, anyway. He returned, now, and hung about the fence till nightfall, "showing off," as before; but the girl never exhibited herself again, though Tom comforted himself a little with the hope that she had been near some window, meantime, and been aware of his attentions. Finally he strode home reluctantly, with his poor head full of visions. All through supper his spirits were so high that his aunt wondered "what had got into the child." He took a good scolding about clodding Sid, and did not seem to mind it in the least. He tried to steal sugar under his aunt's very nose, and got his knuckles rapped for it. He said: "Aunt, you don't whack Sid when he takes it." "Well, Sid don't torment a body the way you do. You'd be always into that sugar if I warn't watching you." Presently she stepped into the kitchen, and Sid, happy in his immunity, reached for the sugar-bowl--a sort of glorying over Tom which was wellnigh unbearable. But Sid's fingers slipped and the bowl dropped and broke. Tom was in ecstasies. In such ecstasies that he even controlled his tongue and was silent. He said to himself that he would not speak a word, even when his aunt came in, but would sit perfectly still till she asked who did the mischief; and then he would tell, and there would be nothing so good in the world as to see that pet model "catch it." He was so brimful of exultation that he could hardly hold himself when the old lady came back and stood above the wreck discharging lightnings of wrath from over her spectacles. He said to himself, "Now it's coming!" And the next instant he was sprawling on the floor! The potent palm was uplifted to strike again when Tom cried out: "Hold on, now, what 'er you belting ME for?--Sid broke it!" Aunt Polly paused, perplexed, and Tom looked for healing pity. But when she got her tongue again, she only said: "Umf! Well, you didn't get a lick amiss, I reckon. You been into some other audacious mischief when I wasn't around, like enough." Then her conscience reproached her, and she yearned to say something kind and loving; but she judged that this would be construed into a confession that she had been in the wrong, and discipline forbade that. So she kept silence, and went about her affairs with a troubled heart. Tom sulked in a corner and exalted his woes. He knew that in her heart his aunt was on her knees to him, and he was morosely gratified by the consciousness of it. He would hang out no signals, he would take notice of none. He knew that a yearning glance fell upon him, now and then, through a film of tears, but he refused recognition of it. He pictured himself lying sick unto death and his aunt bending over him beseeching one little forgiving word, but he would turn his face to the wall, and die with that word unsaid. Ah, how would she feel then? And he pictured himself brought home from the river, dead, with his curls all wet, and his sore heart at rest. How she would throw herself upon him, and how her tears would fall like rain, and her lips pray God to give her back her boy and she would never, never abuse him any more! But he would lie there cold and white and make no sign--a poor little sufferer, whose griefs were at an end. He so worked upon his feelings with the pathos of these dreams, that he had to keep swallowing, he was so like to choke; and his eyes swam in a blur of water, which overflowed when he winked, and ran down and trickled from the end of his nose. And such a luxury to him was this petting of his sorrows, that he could not bear to have any worldly cheeriness or any grating delight intrude upon it; it was too sacred for such contact; and so, presently, when his cousin Mary danced in, all alive with the joy of seeing home again after an age-long visit of one week to the country, he got up and moved in clouds and darkness out at one door as she brought song and sunshine in at the other. He wandered far from the accustomed haunts of boys, and sought desolate places that were in harmony with his spirit. A log raft in the river invited him, and he seated himself on its outer edge and contemplated the dreary vastness of the stream, wishing, the while, that he could only be drowned, all at once and unconsciously, without undergoing the uncomfortable routine devised by nature. Then he thought of his flower. He got it out, rumpled and wilted, and it mightily increased his dismal felicity. He wondered if she would pity him if she knew? Would she cry, and wish that she had a right to put her arms around his neck and comfort him? Or would she turn coldly away like all the hollow world? This picture brought such an agony of pleasurable suffering that he worked it over and over again in his mind and set it up in new and varied lights, till he wore it threadbare. At last he rose up sighing and departed in the darkness. About half-past nine or ten o'clock he came along the deserted street to where the Adored Unknown lived; he paused a moment; no sound fell upon his listening ear; a candle was casting a dull glow upon the curtain of a second-story window. Was the sacred presence there? He climbed the fence, threaded his stealthy way through the plants, till he stood under that window; he looked up at it long, and with emotion; then he laid him down on the ground under it, disposing himself upon his back, with his hands clasped upon his breast and holding his poor wilted flower. And thus he would die--out in the cold world, with no shelter over his homeless head, no friendly hand to wipe the death-damps from his brow, no loving face to bend pityingly over him when the great agony came. And thus SHE would see him when she looked out upon the glad morning, and oh! would she drop one little tear upon his poor, lifeless form, would she heave one little sigh to see a bright young life so rudely blighted, so untimely cut down? The window went up, a maid-servant's discordant voice profaned the holy calm, and a deluge of water drenched the prone martyr's remains! The strangling hero sprang up with a relieving snort. There was a whiz as of a missile in the air, mingled with the murmur of a curse, a sound as of shivering glass followed, and a small, vague form went over the fence and shot away in the gloom. Not long after, as Tom, all undressed for bed, was surveying his drenched garments by the light of a tallow dip, Sid woke up; but if he had any dim idea of making any "references to allusions," he thought better of it and held his peace, for there was danger in Tom's eye. Tom turned in without the added vexation of prayers, and Sid made mental note of the omission. CHAPTER IV THE sun rose upon a tranquil world, and beamed down upon the peaceful village like a benediction. Breakfast over, Aunt Polly had family worship: it began with a prayer built from the ground up of solid courses of Scriptural quotations, welded together with a thin mortar of originality; and from the summit of this she delivered a grim chapter of the Mosaic Law, as from Sinai. Then Tom girded up his loins, so to speak, and went to work to "get his verses." Sid had learned his lesson days before. Tom bent all his energies to the memorizing of five verses, and he chose part of the Sermon on the Mount, because he could find no verses that were shorter. At the end of half an hour Tom had a vague general idea of his lesson, but no more, for his mind was traversing the whole field of human thought, and his hands were busy with distracting recreations. Mary took his book to hear him recite, and he tried to find his way through the fog: "Blessed are the--a--a--" "Poor"-- "Yes--poor; blessed are the poor--a--a--" "In spirit--" "In spirit; blessed are the poor in spirit, for they--they--" "THEIRS--" "For THEIRS. Blessed are the poor in spirit, for theirs is the kingdom of heaven. Blessed are they that mourn, for they--they--" "Sh--" "For they--a--" "S, H, A--" "For they S, H--Oh, I don't know what it is!" "SHALL!" "Oh, SHALL! for they shall--for they shall--a--a--shall mourn--a--a-- blessed are they that shall--they that--a--they that shall mourn, for they shall--a--shall WHAT? Why don't you tell me, Mary?--what do you want to be so mean for?" "Oh, Tom, you poor thick-headed thing, I'm not teasing you. I wouldn't do that. You must go and learn it again. Don't you be discouraged, Tom, you'll manage it--and if you do, I'll give you something ever so nice. There, now, that's a good boy." "All right! What is it, Mary, tell me what it is." "Never you mind, Tom. You know if I say it's nice, it is nice." "You bet you that's so, Mary. All right, I'll tackle it again." And he did "tackle it again"--and under the double pressure of curiosity and prospective gain he did it with such spirit that he accomplished a shining success. Mary gave him a brand-new "Barlow" knife worth twelve and a half cents; and the convulsion of delight that swept his system shook him to his foundations. True, the knife would not cut anything, but it was a "sure-enough" Barlow, and there was inconceivable grandeur in that--though where the Western boys ever got the idea that such a weapon could possibly be counterfeited to its injury is an imposing mystery and will always remain so, perhaps. Tom contrived to scarify the cupboard with it, and was arranging to begin on the bureau, when he was called off to dress for Sunday-school. Mary gave him a tin basin of water and a piece of soap, and he went outside the door and set the basin on a little bench there; then he dipped the soap in the water and laid it down; turned up his sleeves; poured out the water on the ground, gently, and then entered the kitchen and began to wipe his face diligently on the towel behind the door. But Mary removed the towel and said: "Now ain't you ashamed, Tom. You mustn't be so bad. Water won't hurt you." Tom was a trifle disconcerted. The basin was refilled, and this time he stood over it a little while, gathering resolution; took in a big breath and began. When he entered the kitchen presently, with both eyes shut and groping for the towel with his hands, an honorable testimony of suds and water was dripping from his face. But when he emerged from the towel, he was not yet satisfactory, for the clean territory stopped short at his chin and his jaws, like a mask; below and beyond this line there was a dark expanse of unirrigated soil that spread downward in front and backward around his neck. Mary took him in hand, and when she was done with him he was a man and a brother, without distinction of color, and his saturated hair was neatly brushed, and its short curls wrought into a dainty and symmetrical general effect. [He privately smoothed out the curls, with labor and difficulty, and plastered his hair close down to his head; for he held curls to be effeminate, and his own filled his life with bitterness.] Then Mary got out a suit of his clothing that had been used only on Sundays during two years--they were simply called his "other clothes"--and so by that we know the size of his wardrobe. The girl "put him to rights" after he had dressed himself; she buttoned his neat roundabout up to his chin, turned his vast shirt collar down over his shoulders, brushed him off and crowned him with his speckled straw hat. He now looked exceedingly improved and uncomfortable. He was fully as uncomfortable as he looked; for there was a restraint about whole clothes and cleanliness that galled him. He hoped that Mary would forget his shoes, but the hope was blighted; she coated them thoroughly with tallow, as was the custom, and brought them out. He lost his temper and said he was always being made to do everything he didn't want to do. But Mary said, persuasively: "Please, Tom--that's a good boy." So he got into the shoes snarling. Mary was soon ready, and the three children set out for Sunday-school--a place that Tom hated with his whole heart; but Sid and Mary were fond of it. Sabbath-school hours were from nine to half-past ten; and then church service. Two of the children always remained for the sermon voluntarily, and the other always remained too--for stronger reasons. The church's high-backed, uncushioned pews would seat about three hundred persons; the edifice was but a small, plain affair, with a sort of pine board tree-box on top of it for a steeple. At the door Tom dropped back a step and accosted a Sunday-dressed comrade: "Say, Billy, got a yaller ticket?" "Yes." "What'll you take for her?" "What'll you give?" "Piece of lickrish and a fish-hook." "Less see 'em." Tom exhibited. They were satisfactory, and the property changed hands. Then Tom traded a couple of white alleys for three red tickets, and some small trifle or other for a couple of blue ones. He waylaid other boys as they came, and went on buying tickets of various colors ten or fifteen minutes longer. He entered the church, now, with a swarm of clean and noisy boys and girls, proceeded to his seat and started a quarrel with the first boy that came handy. The teacher, a grave, elderly man, interfered; then turned his back a moment and Tom pulled a boy's hair in the next bench, and was absorbed in his book when the boy turned around; stuck a pin in another boy, presently, in order to hear him say "Ouch!" and got a new reprimand from his teacher. Tom's whole class were of a pattern--restless, noisy, and troublesome. When they came to recite their lessons, not one of them knew his verses perfectly, but had to be prompted all along. However, they worried through, and each got his reward--in small blue tickets, each with a passage of Scripture on it; each blue ticket was pay for two verses of the recitation. Ten blue tickets equalled a red one, and could be exchanged for it; ten red tickets equalled a yellow one; for ten yellow tickets the superintendent gave a very plainly bound Bible (worth forty cents in those easy times) to the pupil. How many of my readers would have the industry and application to memorize two thousand verses, even for a Dore Bible? And yet Mary had acquired two Bibles in this way--it was the patient work of two years--and a boy of German parentage had won four or five. He once recited three thousand verses without stopping; but the strain upon his mental faculties was too great, and he was little better than an idiot from that day forth--a grievous misfortune for the school, for on great occasions, before company, the superintendent (as Tom expressed it) had always made this boy come out and "spread himself." Only the older pupils managed to keep their tickets and stick to their tedious work long enough to get a Bible, and so the delivery of one of these prizes was a rare and noteworthy circumstance; the successful pupil was so great and conspicuous for that day that on the spot every scholar's heart was fired with a fresh ambition that often lasted a couple of weeks. It is possible that Tom's mental stomach had never really hungered for one of those prizes, but unquestionably his entire being had for many a day longed for the glory and the eclat that came with it. In due course the superintendent stood up in front of the pulpit, with a closed hymn-book in his hand and his forefinger inserted between its leaves, and commanded attention. When a Sunday-school superintendent makes his customary little speech, a hymn-book in the hand is as necessary as is the inevitable sheet of music in the hand of a singer who stands forward on the platform and sings a solo at a concert --though why, is a mystery: for neither the hymn-book nor the sheet of music is ever referred to by the sufferer. This superintendent was a slim creature of thirty-five, with a sandy goatee and short sandy hair; he wore a stiff standing-collar whose upper edge almost reached his ears and whose sharp points curved forward abreast the corners of his mouth--a fence that compelled a straight lookout ahead, and a turning of the whole body when a side view was required; his chin was propped on a spreading cravat which was as broad and as long as a bank-note, and had fringed ends; his boot toes were turned sharply up, in the fashion of the day, like sleigh-runners--an effect patiently and laboriously produced by the young men by sitting with their toes pressed against a wall for hours together. Mr. Walters was very earnest of mien, and very sincere and honest at heart; and he held sacred things and places in such reverence, and so separated them from worldly matters, that unconsciously to himself his Sunday-school voice had acquired a peculiar intonation which was wholly absent on week-days. He began after this fashion: "Now, children, I want you all to sit up just as straight and pretty as you can and give me all your attention for a minute or two. There --that is it. That is the way good little boys and girls should do. I see one little girl who is looking out of the window--I am afraid she thinks I am out there somewhere--perhaps up in one of the trees making a speech to the little birds. [Applausive titter.] I want to tell you how good it makes me feel to see so many bright, clean little faces assembled in a place like this, learning to do right and be good." And so forth and so on. It is not necessary to set down the rest of the oration. It was of a pattern which does not vary, and so it is familiar to us all. The latter third of the speech was marred by the resumption of fights and other recreations among certain of the bad boys, and by fidgetings and whisperings that extended far and wide, washing even to the bases of isolated and incorruptible rocks like Sid and Mary. But now every sound ceased suddenly, with the subsidence of Mr. Walters' voice, and the conclusion of the speech was received with a burst of silent gratitude. A good part of the whispering had been occasioned by an event which was more or less rare--the entrance of visitors: lawyer Thatcher, accompanied by a very feeble and aged man; a fine, portly, middle-aged gentleman with iron-gray hair; and a dignified lady who was doubtless the latter's wife. The lady was leading a child. Tom had been restless and full of chafings and repinings; conscience-smitten, too--he could not meet Amy Lawrence's eye, he could not brook her loving gaze. But when he saw this small new-comer his soul was all ablaze with bliss in a moment. The next moment he was "showing off" with all his might --cuffing boys, pulling hair, making faces--in a word, using every art that seemed likely to fascinate a girl and win her applause. His exaltation had but one alloy--the memory of his humiliation in this angel's garden--and that record in sand was fast washing out, under the waves of happiness that were sweeping over it now. The visitors were given the highest seat of honor, and as soon as Mr. Walters' speech was finished, he introduced them to the school. The middle-aged man turned out to be a prodigious personage--no less a one than the county judge--altogether the most august creation these children had ever looked upon--and they wondered what kind of material he was made of--and they half wanted to hear him roar, and were half afraid he might, too. He was from Constantinople, twelve miles away--so he had travelled, and seen the world--these very eyes had looked upon the county court-house--which was said to have a tin roof. The awe which these reflections inspired was attested by the impressive silence and the ranks of staring eyes. This was the great Judge Thatcher, brother of their own lawyer. Jeff Thatcher immediately went forward, to be familiar with the great man and be envied by the school. It would have been music to his soul to hear the whisperings: "Look at him, Jim! He's a going up there. Say--look! he's a going to shake hands with him--he IS shaking hands with him! By jings, don't you wish you was Jeff?" Mr. Walters fell to "showing off," with all sorts of official bustlings and activities, giving orders, delivering judgments, discharging directions here, there, everywhere that he could find a target. The librarian "showed off"--running hither and thither with his arms full of books and making a deal of the splutter and fuss that insect authority delights in. The young lady teachers "showed off" --bending sweetly over pupils that were lately being boxed, lifting pretty warning fingers at bad little boys and patting good ones lovingly. The young gentlemen teachers "showed off" with small scoldings and other little displays of authority and fine attention to discipline--and most of the teachers, of both sexes, found business up at the library, by the pulpit; and it was business that frequently had to be done over again two or three times (with much seeming vexation). The little girls "showed off" in various ways, and the little boys "showed off" with such diligence that the air was thick with paper wads and the murmur of scufflings. And above it all the great man sat and beamed a majestic judicial smile upon all the house, and warmed himself in the sun of his own grandeur--for he was "showing off," too. There was only one thing wanting to make Mr. Walters' ecstasy complete, and that was a chance to deliver a Bible-prize and exhibit a prodigy. Several pupils had a few yellow tickets, but none had enough --he had been around among the star pupils inquiring. He would have given worlds, now, to have that German lad back again with a sound mind. And now at this moment, when hope was dead, Tom Sawyer came forward with nine yellow tickets, nine red tickets, and ten blue ones, and demanded a Bible. This was a thunderbolt out of a clear sky. Walters was not expecting an application from this source for the next ten years. But there was no getting around it--here were the certified checks, and they were good for their face. Tom was therefore elevated to a place with the Judge and the other elect, and the great news was announced from headquarters. It was the most stunning surprise of the decade, and so profound was the sensation that it lifted the new hero up to the judicial one's altitude, and the school had two marvels to gaze upon in place of one. The boys were all eaten up with envy--but those that suffered the bitterest pangs were those who perceived too late that they themselves had contributed to this hated splendor by trading tickets to Tom for the wealth he had amassed in selling whitewashing privileges. These despised themselves, as being the dupes of a wily fraud, a guileful snake in the grass. The prize was delivered to Tom with as much effusion as the superintendent could pump up under the circumstances; but it lacked somewhat of the true gush, for the poor fellow's instinct taught him that there was a mystery here that could not well bear the light, perhaps; it was simply preposterous that this boy had warehoused two thousand sheaves of Scriptural wisdom on his premises--a dozen would strain his capacity, without a doubt. Amy Lawrence was proud and glad, and she tried to make Tom see it in her face--but he wouldn't look. She wondered; then she was just a grain troubled; next a dim suspicion came and went--came again; she watched; a furtive glance told her worlds--and then her heart broke, and she was jealous, and angry, and the tears came and she hated everybody. Tom most of all (she thought). Tom was introduced to the Judge; but his tongue was tied, his breath would hardly come, his heart quaked--partly because of the awful greatness of the man, but mainly because he was her parent. He would have liked to fall down and worship him, if it were in the dark. The Judge put his hand on Tom's head and called him a fine little man, and asked him what his name was. The boy stammered, gasped, and got it out: "Tom." "Oh, no, not Tom--it is--" "Thomas." "Ah, that's it. I thought there was more to it, maybe. That's very well. But you've another one I daresay, and you'll tell it to me, won't you?" "Tell the gentleman your other name, Thomas," said Walters, "and say sir. You mustn't forget your manners." "Thomas Sawyer--sir." "That's it! That's a good boy. Fine boy. Fine, manly little fellow. Two thousand verses is a great many--very, very great many. And you never can be sorry for the trouble you took to learn them; for knowledge is worth more than anything there is in the world; it's what makes great men and good men; you'll be a great man and a good man yourself, some day, Thomas, and then you'll look back and say, It's all owing to the precious Sunday-school privileges of my boyhood--it's all owing to my dear teachers that taught me to learn--it's all owing to the good superintendent, who encouraged me, and watched over me, and gave me a beautiful Bible--a splendid elegant Bible--to keep and have it all for my own, always--it's all owing to right bringing up! That is what you will say, Thomas--and you wouldn't take any money for those two thousand verses--no indeed you wouldn't. And now you wouldn't mind telling me and this lady some of the things you've learned--no, I know you wouldn't--for we are proud of little boys that learn. Now, no doubt you know the names of all the twelve disciples. Won't you tell us the names of the first two that were appointed?" Tom was tugging at a button-hole and looking sheepish. He blushed, now, and his eyes fell. Mr. Walters' heart sank within him. He said to himself, it is not possible that the boy can answer the simplest question--why DID the Judge ask him? Yet he felt obliged to speak up and say: "Answer the gentleman, Thomas--don't be afraid." Tom still hung fire. "Now I know you'll tell me," said the lady. "The names of the first two disciples were--" "DAVID AND GOLIAH!" Let us draw the curtain of charity over the rest of the scene. CHAPTER V ABOUT half-past ten the cracked bell of the small church began to ring, and presently the people began to gather for the morning sermon. The Sunday-school children distributed themselves about the house and occupied pews with their parents, so as to be under supervision. Aunt Polly came, and Tom and Sid and Mary sat with her--Tom being placed next the aisle, in order that he might be as far away from the open window and the seductive outside summer scenes as possible. The crowd filed up the aisles: the aged and needy postmaster, who had seen better days; the mayor and his wife--for they had a mayor there, among other unnecessaries; the justice of the peace; the widow Douglass, fair, smart, and forty, a generous, good-hearted soul and well-to-do, her hill mansion the only palace in the town, and the most hospitable and much the most lavish in the matter of festivities that St. Petersburg could boast; the bent and venerable Major and Mrs. Ward; lawyer Riverson, the new notable from a distance; next the belle of the village, followed by a troop of lawn-clad and ribbon-decked young heart-breakers; then all the young clerks in town in a body--for they had stood in the vestibule sucking their cane-heads, a circling wall of oiled and simpering admirers, till the last girl had run their gantlet; and last of all came the Model Boy, Willie Mufferson, taking as heedful care of his mother as if she were cut glass. He always brought his mother to church, and was the pride of all the matrons. The boys all hated him, he was so good. And besides, he had been "thrown up to them" so much. His white handkerchief was hanging out of his pocket behind, as usual on Sundays--accidentally. Tom had no handkerchief, and he looked upon boys who had as snobs. The congregation being fully assembled, now, the bell rang once more, to warn laggards and stragglers, and then a solemn hush fell upon the church which was only broken by the tittering and whispering of the choir in the gallery. The choir always tittered and whispered all through service. There was once a church choir that was not ill-bred, but I have forgotten where it was, now. It was a great many years ago, and I can scarcely remember anything about it, but I think it was in some foreign country. The minister gave out the hymn, and read it through with a relish, in a peculiar style which was much admired in that part of the country. His voice began on a medium key and climbed steadily up till it reached a certain point, where it bore with strong emphasis upon the topmost word and then plunged down as if from a spring-board: Shall I be car-ri-ed toe the skies, on flow'ry BEDS of ease, Whilst others fight to win the prize, and sail thro' BLOODY seas? He was regarded as a wonderful reader. At church "sociables" he was always called upon to read poetry; and when he was through, the ladies would lift up their hands and let them fall helplessly in their laps, and "wall" their eyes, and shake their heads, as much as to say, "Words cannot express it; it is too beautiful, TOO beautiful for this mortal earth." After the hymn had been sung, the Rev. Mr. Sprague turned himself into a bulletin-board, and read off "notices" of meetings and societies and things till it seemed that the list would stretch out to the crack of doom--a queer custom which is still kept up in America, even in cities, away here in this age of abundant newspapers. Often, the less there is to justify a traditional custom, the harder it is to get rid of it. And now the minister prayed. A good, generous prayer it was, and went into details: it pleaded for the church, and the little children of the church; for the other churches of the village; for the village itself; for the county; for the State; for the State officers; for the United States; for the churches of the United States; for Congress; for the President; for the officers of the Government; for poor sailors, tossed by stormy seas; for the oppressed millions groaning under the heel of European monarchies and Oriental despotisms; for such as have the light and the good tidings, and yet have not eyes to see nor ears to hear withal; for the heathen in the far islands of the sea; and closed with a supplication that the words he was about to speak might find grace and favor, and be as seed sown in fertile ground, yielding in time a grateful harvest of good. Amen. There was a rustling of dresses, and the standing congregation sat down. The boy whose history this book relates did not enjoy the prayer, he only endured it--if he even did that much. He was restive all through it; he kept tally of the details of the prayer, unconsciously --for he was not listening, but he knew the ground of old, and the clergyman's regular route over it--and when a little trifle of new matter was interlarded, his ear detected it and his whole nature resented it; he considered additions unfair, and scoundrelly. In the midst of the prayer a fly had lit on the back of the pew in front of him and tortured his spirit by calmly rubbing its hands together, embracing its head with its arms, and polishing it so vigorously that it seemed to almost part company with the body, and the slender thread of a neck was exposed to view; scraping its wings with its hind legs and smoothing them to its body as if they had been coat-tails; going through its whole toilet as tranquilly as if it knew it was perfectly safe. As indeed it was; for as sorely as Tom's hands itched to grab for it they did not dare--he believed his soul would be instantly destroyed if he did such a thing while the prayer was going on. But with the closing sentence his hand began to curve and steal forward; and the instant the "Amen" was out the fly was a prisoner of war. His aunt detected the act and made him let it go. The minister gave out his text and droned along monotonously through an argument that was so prosy that many a head by and by began to nod --and yet it was an argument that dealt in limitless fire and brimstone and thinned the predestined elect down to a company so small as to be hardly worth the saving. Tom counted the pages of the sermon; after church he always knew how many pages there had been, but he seldom knew anything else about the discourse. However, this time he was really interested for a little while. The minister made a grand and moving picture of the assembling together of the world's hosts at the millennium when the lion and the lamb should lie down together and a little child should lead them. But the pathos, the lesson, the moral of the great spectacle were lost upon the boy; he only thought of the conspicuousness of the principal character before the on-looking nations; his face lit with the thought, and he said to himself that he wished he could be that child, if it was a tame lion. Now he lapsed into suffering again, as the dry argument was resumed. Presently he bethought him of a treasure he had and got it out. It was a large black beetle with formidable jaws--a "pinchbug," he called it. It was in a percussion-cap box. The first thing the beetle did was to take him by the finger. A natural fillip followed, the beetle went floundering into the aisle and lit on its back, and the hurt finger went into the boy's mouth. The beetle lay there working its helpless legs, unable to turn over. Tom eyed it, and longed for it; but it was safe out of his reach. Other people uninterested in the sermon found relief in the beetle, and they eyed it too. Presently a vagrant poodle dog came idling along, sad at heart, lazy with the summer softness and the quiet, weary of captivity, sighing for change. He spied the beetle; the drooping tail lifted and wagged. He surveyed the prize; walked around it; smelt at it from a safe distance; walked around it again; grew bolder, and took a closer smell; then lifted his lip and made a gingerly snatch at it, just missing it; made another, and another; began to enjoy the diversion; subsided to his stomach with the beetle between his paws, and continued his experiments; grew weary at last, and then indifferent and absent-minded. His head nodded, and little by little his chin descended and touched the enemy, who seized it. There was a sharp yelp, a flirt of the poodle's head, and the beetle fell a couple of yards away, and lit on its back once more. The neighboring spectators shook with a gentle inward joy, several faces went behind fans and handkerchiefs, and Tom was entirely happy. The dog looked foolish, and probably felt so; but there was resentment in his heart, too, and a craving for revenge. So he went to the beetle and began a wary attack on it again; jumping at it from every point of a circle, lighting with his fore-paws within an inch of the creature, making even closer snatches at it with his teeth, and jerking his head till his ears flapped again. But he grew tired once more, after a while; tried to amuse himself with a fly but found no relief; followed an ant around, with his nose close to the floor, and quickly wearied of that; yawned, sighed, forgot the beetle entirely, and sat down on it. Then there was a wild yelp of agony and the poodle went sailing up the aisle; the yelps continued, and so did the dog; he crossed the house in front of the altar; he flew down the other aisle; he crossed before the doors; he clamored up the home-stretch; his anguish grew with his progress, till presently he was but a woolly comet moving in its orbit with the gleam and the speed of light. At last the frantic sufferer sheered from its course, and sprang into its master's lap; he flung it out of the window, and the voice of distress quickly thinned away and died in the distance. By this time the whole church was red-faced and suffocating with suppressed laughter, and the sermon had come to a dead standstill. The discourse was resumed presently, but it went lame and halting, all possibility of impressiveness being at an end; for even the gravest sentiments were constantly being received with a smothered burst of unholy mirth, under cover of some remote pew-back, as if the poor parson had said a rarely facetious thing. It was a genuine relief to the whole congregation when the ordeal was over and the benediction pronounced. Tom Sawyer went home quite cheerful, thinking to himself that there was some satisfaction about divine service when there was a bit of variety in it. He had but one marring thought; he was willing that the dog should play with his pinchbug, but he did not think it was upright in him to carry it off. CHAPTER VI MONDAY morning found Tom Sawyer miserable. Monday morning always found him so--because it began another week's slow suffering in school. He generally began that day with wishing he had had no intervening holiday, it made the going into captivity and fetters again so much more odious. Tom lay thinking. Presently it occurred to him that he wished he was sick; then he could stay home from school. Here was a vague possibility. He canvassed his system. No ailment was found, and he investigated again. This time he thought he could detect colicky symptoms, and he began to encourage them with considerable hope. But they soon grew feeble, and presently died wholly away. He reflected further. Suddenly he discovered something. One of his upper front teeth was loose. This was lucky; he was about to begin to groan, as a "starter," as he called it, when it occurred to him that if he came into court with that argument, his aunt would pull it out, and that would hurt. So he thought he would hold the tooth in reserve for the present, and seek further. Nothing offered for some little time, and then he remembered hearing the doctor tell about a certain thing that laid up a patient for two or three weeks and threatened to make him lose a finger. So the boy eagerly drew his sore toe from under the sheet and held it up for inspection. But now he did not know the necessary symptoms. However, it seemed well worth while to chance it, so he fell to groaning with considerable spirit. But Sid slept on unconscious. Tom groaned louder, and fancied that he began to feel pain in the toe. No result from Sid. Tom was panting with his exertions by this time. He took a rest and then swelled himself up and fetched a succession of admirable groans. Sid snored on. Tom was aggravated. He said, "Sid, Sid!" and shook him. This course worked well, and Tom began to groan again. Sid yawned, stretched, then brought himself up on his elbow with a snort, and began to stare at Tom. Tom went on groaning. Sid said: "Tom! Say, Tom!" [No response.] "Here, Tom! TOM! What is the matter, Tom?" And he shook him and looked in his face anxiously. Tom moaned out: "Oh, don't, Sid. Don't joggle me." "Why, what's the matter, Tom? I must call auntie." "No--never mind. It'll be over by and by, maybe. Don't call anybody." "But I must! DON'T groan so, Tom, it's awful. How long you been this way?" "Hours. Ouch! Oh, don't stir so, Sid, you'll kill me." "Tom, why didn't you wake me sooner? Oh, Tom, DON'T! It makes my flesh crawl to hear you. Tom, what is the matter?" "I forgive you everything, Sid. [Groan.] Everything you've ever done to me. When I'm gone--" "Oh, Tom, you ain't dying, are you? Don't, Tom--oh, don't. Maybe--" "I forgive everybody, Sid. [Groan.] Tell 'em so, Sid. And Sid, you give my window-sash and my cat with one eye to that new girl that's come to town, and tell her--" But Sid had snatched his clothes and gone. Tom was suffering in reality, now, so handsomely was his imagination working, and so his groans had gathered quite a genuine tone. Sid flew down-stairs and said: "Oh, Aunt Polly, come! Tom's dying!" "Dying!" "Yes'm. Don't wait--come quick!" "Rubbage! I don't believe it!" But she fled up-stairs, nevertheless, with Sid and Mary at her heels. And her face grew white, too, and her lip trembled. When she reached the bedside she gasped out: "You, Tom! Tom, what's the matter with you?" "Oh, auntie, I'm--" "What's the matter with you--what is the matter with you, child?" "Oh, auntie, my sore toe's mortified!" The old lady sank down into a chair and laughed a little, then cried a little, then did both together. This restored her and she said: "Tom, what a turn you did give me. Now you shut up that nonsense and climb out of this." The groans ceased and the pain vanished from the toe. The boy felt a little foolish, and he said: "Aunt Polly, it SEEMED mortified, and it hurt so I never minded my tooth at all." "Your tooth, indeed! What's the matter with your tooth?" "One of them's loose, and it aches perfectly awful." "There, there, now, don't begin that groaning again. Open your mouth. Well--your tooth IS loose, but you're not going to die about that. Mary, get me a silk thread, and a chunk of fire out of the kitchen." Tom said: "Oh, please, auntie, don't pull it out. It don't hurt any more. I wish I may never stir if it does. Please don't, auntie. I don't want to stay home from school." "Oh, you don't, don't you? So all this row was because you thought you'd get to stay home from school and go a-fishing? Tom, Tom, I love you so, and you seem to try every way you can to break my old heart with your outrageousness." By this time the dental instruments were ready. The old lady made one end of the silk thread fast to Tom's tooth with a loop and tied the other to the bedpost. Then she seized the chunk of fire and suddenly thrust it almost into the boy's face. The tooth hung dangling by the bedpost, now. But all trials bring their compensations. As Tom wended to school after breakfast, he was the envy of every boy he met because the gap in his upper row of teeth enabled him to expectorate in a new and admirable way. He gathered quite a following of lads interested in the exhibition; and one that had cut his finger and had been a centre of fascination and homage up to this time, now found himself suddenly without an adherent, and shorn of his glory. His heart was heavy, and he said with a disdain which he did not feel that it wasn't anything to spit like Tom Sawyer; but another boy said, "Sour grapes!" and he wandered away a dismantled hero. Shortly Tom came upon the juvenile pariah of the village, Huckleberry Finn, son of the town drunkard. Huckleberry was cordially hated and dreaded by all the mothers of the town, because he was idle and lawless and vulgar and bad--and because all their children admired him so, and delighted in his forbidden society, and wished they dared to be like him. Tom was like the rest of the respectable boys, in that he envied Huckleberry his gaudy outcast condition, and was under strict orders not to play with him. So he played with him every time he got a chance. Huckleberry was always dressed in the cast-off clothes of full-grown men, and they were in perennial bloom and fluttering with rags. His hat was a vast ruin with a wide crescent lopped out of its brim; his coat, when he wore one, hung nearly to his heels and had the rearward buttons far down the back; but one suspender supported his trousers; the seat of the trousers bagged low and contained nothing, the fringed legs dragged in the dirt when not rolled up. Huckleberry came and went, at his own free will. He slept on doorsteps in fine weather and in empty hogsheads in wet; he did not have to go to school or to church, or call any being master or obey anybody; he could go fishing or swimming when and where he chose, and stay as long as it suited him; nobody forbade him to fight; he could sit up as late as he pleased; he was always the first boy that went barefoot in the spring and the last to resume leather in the fall; he never had to wash, nor put on clean clothes; he could swear wonderfully. In a word, everything that goes to make life precious that boy had. So thought every harassed, hampered, respectable boy in St. Petersburg. Tom hailed the romantic outcast: "Hello, Huckleberry!" "Hello yourself, and see how you like it." "What's that you got?" "Dead cat." "Lemme see him, Huck. My, he's pretty stiff. Where'd you get him?" "Bought him off'n a boy." "What did you give?" "I give a blue ticket and a bladder that I got at the slaughter-house." "Where'd you get the blue ticket?" "Bought it off'n Ben Rogers two weeks ago for a hoop-stick." "Say--what is dead cats good for, Huck?" "Good for? Cure warts with." "No! Is that so? I know something that's better." "I bet you don't. What is it?" "Why, spunk-water." "Spunk-water! I wouldn't give a dern for spunk-water." "You wouldn't, wouldn't you? D'you ever try it?" "No, I hain't. But Bob Tanner did." "Who told you so!" "Why, he told Jeff Thatcher, and Jeff told Johnny Baker, and Johnny told Jim Hollis, and Jim told Ben Rogers, and Ben told a nigger, and the nigger told me. There now!" "Well, what of it? They'll all lie. Leastways all but the nigger. I don't know HIM. But I never see a nigger that WOULDN'T lie. Shucks! Now you tell me how Bob Tanner done it, Huck." "Why, he took and dipped his hand in a rotten stump where the rain-water was." "In the daytime?" "Certainly." "With his face to the stump?" "Yes. Least I reckon so." "Did he say anything?" "I don't reckon he did. I don't know." "Aha! Talk about trying to cure warts with spunk-water such a blame fool way as that! Why, that ain't a-going to do any good. You got to go all by yourself, to the middle of the woods, where you know there's a spunk-water stump, and just as it's midnight you back up against the stump and jam your hand in and say: 'Barley-corn, barley-corn, injun-meal shorts, Spunk-water, spunk-water, swaller these warts,' and then walk away quick, eleven steps, with your eyes shut, and then turn around three times and walk home without speaking to anybody. Because if you speak the charm's busted." "Well, that sounds like a good way; but that ain't the way Bob Tanner done." "No, sir, you can bet he didn't, becuz he's the wartiest boy in this town; and he wouldn't have a wart on him if he'd knowed how to work spunk-water. I've took off thousands of warts off of my hands that way, Huck. I play with frogs so much that I've always got considerable many warts. Sometimes I take 'em off with a bean." "Yes, bean's good. I've done that." "Have you? What's your way?" "You take and split the bean, and cut the wart so as to get some blood, and then you put the blood on one piece of the bean and take and dig a hole and bury it 'bout midnight at the crossroads in the dark of the moon, and then you burn up the rest of the bean. You see that piece that's got the blood on it will keep drawing and drawing, trying to fetch the other piece to it, and so that helps the blood to draw the wart, and pretty soon off she comes." "Yes, that's it, Huck--that's it; though when you're burying it if you say 'Down bean; off wart; come no more to bother me!' it's better. That's the way Joe Harper does, and he's been nearly to Coonville and most everywheres. But say--how do you cure 'em with dead cats?" "Why, you take your cat and go and get in the graveyard 'long about midnight when somebody that was wicked has been buried; and when it's midnight a devil will come, or maybe two or three, but you can't see 'em, you can only hear something like the wind, or maybe hear 'em talk; and when they're taking that feller away, you heave your cat after 'em and say, 'Devil follow corpse, cat follow devil, warts follow cat, I'm done with ye!' That'll fetch ANY wart." "Sounds right. D'you ever try it, Huck?" "No, but old Mother Hopkins told me." "Well, I reckon it's so, then. Becuz they say she's a witch." "Say! Why, Tom, I KNOW she is. She witched pap. Pap says so his own self. He come along one day, and he see she was a-witching him, so he took up a rock, and if she hadn't dodged, he'd a got her. Well, that very night he rolled off'n a shed wher' he was a layin drunk, and broke his arm." "Why, that's awful. How did he know she was a-witching him?" "Lord, pap can tell, easy. Pap says when they keep looking at you right stiddy, they're a-witching you. Specially if they mumble. Becuz when they mumble they're saying the Lord's Prayer backards." "Say, Hucky, when you going to try the cat?" "To-night. I reckon they'll come after old Hoss Williams to-night." "But they buried him Saturday. Didn't they get him Saturday night?" "Why, how you talk! How could their charms work till midnight?--and THEN it's Sunday. Devils don't slosh around much of a Sunday, I don't reckon." "I never thought of that. That's so. Lemme go with you?" "Of course--if you ain't afeard." "Afeard! 'Tain't likely. Will you meow?" "Yes--and you meow back, if you get a chance. Last time, you kep' me a-meowing around till old Hays went to throwing rocks at me and says 'Dern that cat!' and so I hove a brick through his window--but don't you tell." "I won't. I couldn't meow that night, becuz auntie was watching me, but I'll meow this time. Say--what's that?" "Nothing but a tick." "Where'd you get him?" "Out in the woods." "What'll you take for him?" "I don't know. I don't want to sell him." "All right. It's a mighty small tick, anyway." "Oh, anybody can run a tick down that don't belong to them. I'm satisfied with it. It's a good enough tick for me." "Sho, there's ticks a plenty. I could have a thousand of 'em if I wanted to." "Well, why don't you? Becuz you know mighty well you can't. This is a pretty early tick, I reckon. It's the first one I've seen this year." "Say, Huck--I'll give you my tooth for him." "Less see it." Tom got out a bit of paper and carefully unrolled it. Huckleberry viewed it wistfully. The temptation was very strong. At last he said: "Is it genuwyne?" Tom lifted his lip and showed the vacancy. "Well, all right," said Huckleberry, "it's a trade." Tom enclosed the tick in the percussion-cap box that had lately been the pinchbug's prison, and the boys separated, each feeling wealthier than before. When Tom reached the little isolated frame schoolhouse, he strode in briskly, with the manner of one who had come with all honest speed. He hung his hat on a peg and flung himself into his seat with business-like alacrity. The master, throned on high in his great splint-bottom arm-chair, was dozing, lulled by the drowsy hum of study. The interruption roused him. "Thomas Sawyer!" Tom knew that when his name was pronounced in full, it meant trouble. "Sir!" "Come up here. Now, sir, why are you late again, as usual?" Tom was about to take refuge in a lie, when he saw two long tails of yellow hair hanging down a back that he recognized by the electric sympathy of love; and by that form was THE ONLY VACANT PLACE on the girls' side of the schoolhouse. He instantly said: "I STOPPED TO TALK WITH HUCKLEBERRY FINN!" The master's pulse stood still, and he stared helplessly. The buzz of study ceased. The pupils wondered if this foolhardy boy had lost his mind. The master said: "You--you did what?" "Stopped to talk with Huckleberry Finn." There was no mistaking the words. "Thomas Sawyer, this is the most astounding confession I have ever listened to. No mere ferule will answer for this offence. Take off your jacket." The master's arm performed until it was tired and the stock of switches notably diminished. Then the order followed: "Now, sir, go and sit with the girls! And let this be a warning to you." The titter that rippled around the room appeared to abash the boy, but in reality that result was caused rather more by his worshipful awe of his unknown idol and the dread pleasure that lay in his high good fortune. He sat down upon the end of the pine bench and the girl hitched herself away from him with a toss of her head. Nudges and winks and whispers traversed the room, but Tom sat still, with his arms upon the long, low desk before him, and seemed to study his book. By and by attention ceased from him, and the accustomed school murmur rose upon the dull air once more. Presently the boy began to steal furtive glances at the girl. She observed it, "made a mouth" at him and gave him the back of her head for the space of a minute. When she cautiously faced around again, a peach lay before her. She thrust it away. Tom gently put it back. She thrust it away again, but with less animosity. Tom patiently returned it to its place. Then she let it remain. Tom scrawled on his slate, "Please take it--I got more." The girl glanced at the words, but made no sign. Now the boy began to draw something on the slate, hiding his work with his left hand. For a time the girl refused to notice; but her human curiosity presently began to manifest itself by hardly perceptible signs. The boy worked on, apparently unconscious. The girl made a sort of noncommittal attempt to see, but the boy did not betray that he was aware of it. At last she gave in and hesitatingly whispered: "Let me see it." Tom partly uncovered a dismal caricature of a house with two gable ends to it and a corkscrew of smoke issuing from the chimney. Then the girl's interest began to fasten itself upon the work and she forgot everything else. When it was finished, she gazed a moment, then whispered: "It's nice--make a man." The artist erected a man in the front yard, that resembled a derrick. He could have stepped over the house; but the girl was not hypercritical; she was satisfied with the monster, and whispered: "It's a beautiful man--now make me coming along." Tom drew an hour-glass with a full moon and straw limbs to it and armed the spreading fingers with a portentous fan. The girl said: "It's ever so nice--I wish I could draw." "It's easy," whispered Tom, "I'll learn you." "Oh, will you? When?" "At noon. Do you go home to dinner?" "I'll stay if you will." "Good--that's a whack. What's your name?" "Becky Thatcher. What's yours? Oh, I know. It's Thomas Sawyer." "That's the name they lick me by. I'm Tom when I'm good. You call me Tom, will you?" "Yes." Now Tom began to scrawl something on the slate, hiding the words from the girl. But she was not backward this time. She begged to see. Tom said: "Oh, it ain't anything." "Yes it is." "No it ain't. You don't want to see." "Yes I do, indeed I do. Please let me." "You'll tell." "No I won't--deed and deed and double deed won't." "You won't tell anybody at all? Ever, as long as you live?" "No, I won't ever tell ANYbody. Now let me." "Oh, YOU don't want to see!" "Now that you treat me so, I WILL see." And she put her small hand upon his and a little scuffle ensued, Tom pretending to resist in earnest but letting his hand slip by degrees till these words were revealed: "I LOVE YOU." "Oh, you bad thing!" And she hit his hand a smart rap, but reddened and looked pleased, nevertheless. Just at this juncture the boy felt a slow, fateful grip closing on his ear, and a steady lifting impulse. In that wise he was borne across the house and deposited in his own seat, under a peppering fire of giggles from the whole school. Then the master stood over him during a few awful moments, and finally moved away to his throne without saying a word. But although Tom's ear tingled, his heart was jubilant. As the school quieted down Tom made an honest effort to study, but the turmoil within him was too great. In turn he took his place in the reading class and made a botch of it; then in the geography class and turned lakes into mountains, mountains into rivers, and rivers into continents, till chaos was come again; then in the spelling class, and got "turned down," by a succession of mere baby words, till he brought up at the foot and yielded up the pewter medal which he had worn with ostentation for months. CHAPTER VII THE harder Tom tried to fasten his mind on his book, the more his ideas wandered. So at last, with a sigh and a yawn, he gave it up. It seemed to him that the noon recess would never come. The air was utterly dead. There was not a breath stirring. It was the sleepiest of sleepy days. The drowsing murmur of the five and twenty studying scholars soothed the soul like the spell that is in the murmur of bees. Away off in the flaming sunshine, Cardiff Hill lifted its soft green sides through a shimmering veil of heat, tinted with the purple of distance; a few birds floated on lazy wing high in the air; no other living thing was visible but some cows, and they were asleep. Tom's heart ached to be free, or else to have something of interest to do to pass the dreary time. His hand wandered into his pocket and his face lit up with a glow of gratitude that was prayer, though he did not know it. Then furtively the percussion-cap box came out. He released the tick and put him on the long flat desk. The creature probably glowed with a gratitude that amounted to prayer, too, at this moment, but it was premature: for when he started thankfully to travel off, Tom turned him aside with a pin and made him take a new direction. Tom's bosom friend sat next him, suffering just as Tom had been, and now he was deeply and gratefully interested in this entertainment in an instant. This bosom friend was Joe Harper. The two boys were sworn friends all the week, and embattled enemies on Saturdays. Joe took a pin out of his lapel and began to assist in exercising the prisoner. The sport grew in interest momently. Soon Tom said that they were interfering with each other, and neither getting the fullest benefit of the tick. So he put Joe's slate on the desk and drew a line down the middle of it from top to bottom. "Now," said he, "as long as he is on your side you can stir him up and I'll let him alone; but if you let him get away and get on my side, you're to leave him alone as long as I can keep him from crossing over." "All right, go ahead; start him up." The tick escaped from Tom, presently, and crossed the equator. Joe harassed him awhile, and then he got away and crossed back again. This change of base occurred often. While one boy was worrying the tick with absorbing interest, the other would look on with interest as strong, the two heads bowed together over the slate, and the two souls dead to all things else. At last luck seemed to settle and abide with Joe. The tick tried this, that, and the other course, and got as excited and as anxious as the boys themselves, but time and again just as he would have victory in his very grasp, so to speak, and Tom's fingers would be twitching to begin, Joe's pin would deftly head him off, and keep possession. At last Tom could stand it no longer. The temptation was too strong. So he reached out and lent a hand with his pin. Joe was angry in a moment. Said he: "Tom, you let him alone." "I only just want to stir him up a little, Joe." "No, sir, it ain't fair; you just let him alone." "Blame it, I ain't going to stir him much." "Let him alone, I tell you." "I won't!" "You shall--he's on my side of the line." "Look here, Joe Harper, whose is that tick?" "I don't care whose tick he is--he's on my side of the line, and you sha'n't touch him." "Well, I'll just bet I will, though. He's my tick and I'll do what I blame please with him, or die!" A tremendous whack came down on Tom's shoulders, and its duplicate on Joe's; and for the space of two minutes the dust continued to fly from the two jackets and the whole school to enjoy it. The boys had been too absorbed to notice the hush that had stolen upon the school awhile before when the master came tiptoeing down the room and stood over them. He had contemplated a good part of the performance before he contributed his bit of variety to it. When school broke up at noon, Tom flew to Becky Thatcher, and whispered in her ear: "Put on your bonnet and let on you're going home; and when you get to the corner, give the rest of 'em the slip, and turn down through the lane and come back. I'll go the other way and come it over 'em the same way." So the one went off with one group of scholars, and the other with another. In a little while the two met at the bottom of the lane, and when they reached the school they had it all to themselves. Then they sat together, with a slate before them, and Tom gave Becky the pencil and held her hand in his, guiding it, and so created another surprising house. When the interest in art began to wane, the two fell to talking. Tom was swimming in bliss. He said: "Do you love rats?" "No! I hate them!" "Well, I do, too--LIVE ones. But I mean dead ones, to swing round your head with a string." "No, I don't care for rats much, anyway. What I like is chewing-gum." "Oh, I should say so! I wish I had some now." "Do you? I've got some. I'll let you chew it awhile, but you must give it back to me." That was agreeable, so they chewed it turn about, and dangled their legs against the bench in excess of contentment. "Was you ever at a circus?" said Tom. "Yes, and my pa's going to take me again some time, if I'm good." "I been to the circus three or four times--lots of times. Church ain't shucks to a circus. There's things going on at a circus all the time. I'm going to be a clown in a circus when I grow up." "Oh, are you! That will be nice. They're so lovely, all spotted up." "Yes, that's so. And they get slathers of money--most a dollar a day, Ben Rogers says. Say, Becky, was you ever engaged?" "What's that?" "Why, engaged to be married." "No." "Would you like to?" "I reckon so. I don't know. What is it like?" "Like? Why it ain't like anything. You only just tell a boy you won't ever have anybody but him, ever ever ever, and then you kiss and that's all. Anybody can do it." "Kiss? What do you kiss for?" "Why, that, you know, is to--well, they always do that." "Everybody?" "Why, yes, everybody that's in love with each other. Do you remember what I wrote on the slate?" "Ye--yes." "What was it?" "I sha'n't tell you." "Shall I tell YOU?" "Ye--yes--but some other time." "No, now." "No, not now--to-morrow." "Oh, no, NOW. Please, Becky--I'll whisper it, I'll whisper it ever so easy." Becky hesitating, Tom took silence for consent, and passed his arm about her waist and whispered the tale ever so softly, with his mouth close to her ear. And then he added: "Now you whisper it to me--just the same." She resisted, for a while, and then said: "You turn your face away so you can't see, and then I will. But you mustn't ever tell anybody--WILL you, Tom? Now you won't, WILL you?" "No, indeed, indeed I won't. Now, Becky." He turned his face away. She bent timidly around till her breath stirred his curls and whispered, "I--love--you!" Then she sprang away and ran around and around the desks and benches, with Tom after her, and took refuge in a corner at last, with her little white apron to her face. Tom clasped her about her neck and pleaded: "Now, Becky, it's all done--all over but the kiss. Don't you be afraid of that--it ain't anything at all. Please, Becky." And he tugged at her apron and the hands. By and by she gave up, and let her hands drop; her face, all glowing with the struggle, came up and submitted. Tom kissed the red lips and said: "Now it's all done, Becky. And always after this, you know, you ain't ever to love anybody but me, and you ain't ever to marry anybody but me, ever never and forever. Will you?" "No, I'll never love anybody but you, Tom, and I'll never marry anybody but you--and you ain't to ever marry anybody but me, either." "Certainly. Of course. That's PART of it. And always coming to school or when we're going home, you're to walk with me, when there ain't anybody looking--and you choose me and I choose you at parties, because that's the way you do when you're engaged." "It's so nice. I never heard of it before." "Oh, it's ever so gay! Why, me and Amy Lawrence--" The big eyes told Tom his blunder and he stopped, confused. "Oh, Tom! Then I ain't the first you've ever been engaged to!" The child began to cry. Tom said: "Oh, don't cry, Becky, I don't care for her any more." "Yes, you do, Tom--you know you do." Tom tried to put his arm about her neck, but she pushed him away and turned her face to the wall, and went on crying. Tom tried again, with soothing words in his mouth, and was repulsed again. Then his pride was up, and he strode away and went outside. He stood about, restless and uneasy, for a while, glancing at the door, every now and then, hoping she would repent and come to find him. But she did not. Then he began to feel badly and fear that he was in the wrong. It was a hard struggle with him to make new advances, now, but he nerved himself to it and entered. She was still standing back there in the corner, sobbing, with her face to the wall. Tom's heart smote him. He went to her and stood a moment, not knowing exactly how to proceed. Then he said hesitatingly: "Becky, I--I don't care for anybody but you." No reply--but sobs. "Becky"--pleadingly. "Becky, won't you say something?" More sobs. Tom got out his chiefest jewel, a brass knob from the top of an andiron, and passed it around her so that she could see it, and said: "Please, Becky, won't you take it?" She struck it to the floor. Then Tom marched out of the house and over the hills and far away, to return to school no more that day. Presently Becky began to suspect. She ran to the door; he was not in sight; she flew around to the play-yard; he was not there. Then she called: "Tom! Come back, Tom!" She listened intently, but there was no answer. She had no companions but silence and loneliness. So she sat down to cry again and upbraid herself; and by this time the scholars began to gather again, and she had to hide her griefs and still her broken heart and take up the cross of a long, dreary, aching afternoon, with none among the strangers about her to exchange sorrows with. CHAPTER VIII TOM dodged hither and thither through lanes until he was well out of the track of returning scholars, and then fell into a moody jog. He crossed a small "branch" two or three times, because of a prevailing juvenile superstition that to cross water baffled pursuit. Half an hour later he was disappearing behind the Douglas mansion on the summit of Cardiff Hill, and the schoolhouse was hardly distinguishable away off in the valley behind him. He entered a dense wood, picked his pathless way to the centre of it, and sat down on a mossy spot under a spreading oak. There was not even a zephyr stirring; the dead noonday heat had even stilled the songs of the birds; nature lay in a trance that was broken by no sound but the occasional far-off hammering of a woodpecker, and this seemed to render the pervading silence and sense of loneliness the more profound. The boy's soul was steeped in melancholy; his feelings were in happy accord with his surroundings. He sat long with his elbows on his knees and his chin in his hands, meditating. It seemed to him that life was but a trouble, at best, and he more than half envied Jimmy Hodges, so lately released; it must be very peaceful, he thought, to lie and slumber and dream forever and ever, with the wind whispering through the trees and caressing the grass and the flowers over the grave, and nothing to bother and grieve about, ever any more. If he only had a clean Sunday-school record he could be willing to go, and be done with it all. Now as to this girl. What had he done? Nothing. He had meant the best in the world, and been treated like a dog--like a very dog. She would be sorry some day--maybe when it was too late. Ah, if he could only die TEMPORARILY! But the elastic heart of youth cannot be compressed into one constrained shape long at a time. Tom presently began to drift insensibly back into the concerns of this life again. What if he turned his back, now, and disappeared mysteriously? What if he went away--ever so far away, into unknown countries beyond the seas--and never came back any more! How would she feel then! The idea of being a clown recurred to him now, only to fill him with disgust. For frivolity and jokes and spotted tights were an offense, when they intruded themselves upon a spirit that was exalted into the vague august realm of the romantic. No, he would be a soldier, and return after long years, all war-worn and illustrious. No--better still, he would join the Indians, and hunt buffaloes and go on the warpath in the mountain ranges and the trackless great plains of the Far West, and away in the future come back a great chief, bristling with feathers, hideous with paint, and prance into Sunday-school, some drowsy summer morning, with a bloodcurdling war-whoop, and sear the eyeballs of all his companions with unappeasable envy. But no, there was something gaudier even than this. He would be a pirate! That was it! NOW his future lay plain before him, and glowing with unimaginable splendor. How his name would fill the world, and make people shudder! How gloriously he would go plowing the dancing seas, in his long, low, black-hulled racer, the Spirit of the Storm, with his grisly flag flying at the fore! And at the zenith of his fame, how he would suddenly appear at the old village and stalk into church, brown and weather-beaten, in his black velvet doublet and trunks, his great jack-boots, his crimson sash, his belt bristling with horse-pistols, his crime-rusted cutlass at his side, his slouch hat with waving plumes, his black flag unfurled, with the skull and crossbones on it, and hear with swelling ecstasy the whisperings, "It's Tom Sawyer the Pirate!--the Black Avenger of the Spanish Main!" Yes, it was settled; his career was determined. He would run away from home and enter upon it. He would start the very next morning. Therefore he must now begin to get ready. He would collect his resources together. He went to a rotten log near at hand and began to dig under one end of it with his Barlow knife. He soon struck wood that sounded hollow. He put his hand there and uttered this incantation impressively: "What hasn't come here, come! What's here, stay here!" Then he scraped away the dirt, and exposed a pine shingle. He took it up and disclosed a shapely little treasure-house whose bottom and sides were of shingles. In it lay a marble. Tom's astonishment was boundless! He scratched his head with a perplexed air, and said: "Well, that beats anything!" Then he tossed the marble away pettishly, and stood cogitating. The truth was, that a superstition of his had failed, here, which he and all his comrades had always looked upon as infallible. If you buried a marble with certain necessary incantations, and left it alone a fortnight, and then opened the place with the incantation he had just used, you would find that all the marbles you had ever lost had gathered themselves together there, meantime, no matter how widely they had been separated. But now, this thing had actually and unquestionably failed. Tom's whole structure of faith was shaken to its foundations. He had many a time heard of this thing succeeding but never of its failing before. It did not occur to him that he had tried it several times before, himself, but could never find the hiding-places afterward. He puzzled over the matter some time, and finally decided that some witch had interfered and broken the charm. He thought he would satisfy himself on that point; so he searched around till he found a small sandy spot with a little funnel-shaped depression in it. He laid himself down and put his mouth close to this depression and called-- "Doodle-bug, doodle-bug, tell me what I want to know! Doodle-bug, doodle-bug, tell me what I want to know!" The sand began to work, and presently a small black bug appeared for a second and then darted under again in a fright. "He dasn't tell! So it WAS a witch that done it. I just knowed it." He well knew the futility of trying to contend against witches, so he gave up discouraged. But it occurred to him that he might as well have the marble he had just thrown away, and therefore he went and made a patient search for it. But he could not find it. Now he went back to his treasure-house and carefully placed himself just as he had been standing when he tossed the marble away; then he took another marble from his pocket and tossed it in the same way, saying: "Brother, go find your brother!" He watched where it stopped, and went there and looked. But it must have fallen short or gone too far; so he tried twice more. The last repetition was successful. The two marbles lay within a foot of each other. Just here the blast of a toy tin trumpet came faintly down the green aisles of the forest. Tom flung off his jacket and trousers, turned a suspender into a belt, raked away some brush behind the rotten log, disclosing a rude bow and arrow, a lath sword and a tin trumpet, and in a moment had seized these things and bounded away, barelegged, with fluttering shirt. He presently halted under a great elm, blew an answering blast, and then began to tiptoe and look warily out, this way and that. He said cautiously--to an imaginary company: "Hold, my merry men! Keep hid till I blow." Now appeared Joe Harper, as airily clad and elaborately armed as Tom. Tom called: "Hold! Who comes here into Sherwood Forest without my pass?" "Guy of Guisborne wants no man's pass. Who art thou that--that--" "Dares to hold such language," said Tom, prompting--for they talked "by the book," from memory. "Who art thou that dares to hold such language?" "I, indeed! I am Robin Hood, as thy caitiff carcase soon shall know." "Then art thou indeed that famous outlaw? Right gladly will I dispute with thee the passes of the merry wood. Have at thee!" They took their lath swords, dumped their other traps on the ground, struck a fencing attitude, foot to foot, and began a grave, careful combat, "two up and two down." Presently Tom said: "Now, if you've got the hang, go it lively!" So they "went it lively," panting and perspiring with the work. By and by Tom shouted: "Fall! fall! Why don't you fall?" "I sha'n't! Why don't you fall yourself? You're getting the worst of it." "Why, that ain't anything. I can't fall; that ain't the way it is in the book. The book says, 'Then with one back-handed stroke he slew poor Guy of Guisborne.' You're to turn around and let me hit you in the back." There was no getting around the authorities, so Joe turned, received the whack and fell. "Now," said Joe, getting up, "you got to let me kill YOU. That's fair." "Why, I can't do that, it ain't in the book." "Well, it's blamed mean--that's all." "Well, say, Joe, you can be Friar Tuck or Much the miller's son, and lam me with a quarter-staff; or I'll be the Sheriff of Nottingham and you be Robin Hood a little while and kill me." This was satisfactory, and so these adventures were carried out. Then Tom became Robin Hood again, and was allowed by the treacherous nun to bleed his strength away through his neglected wound. And at last Joe, representing a whole tribe of weeping outlaws, dragged him sadly forth, gave his bow into his feeble hands, and Tom said, "Where this arrow falls, there bury poor Robin Hood under the greenwood tree." Then he shot the arrow and fell back and would have died, but he lit on a nettle and sprang up too gaily for a corpse. The boys dressed themselves, hid their accoutrements, and went off grieving that there were no outlaws any more, and wondering what modern civilization could claim to have done to compensate for their loss. They said they would rather be outlaws a year in Sherwood Forest than President of the United States forever. CHAPTER IX AT half-past nine, that night, Tom and Sid were sent to bed, as usual. They said their prayers, and Sid was soon asleep. Tom lay awake and waited, in restless impatience. When it seemed to him that it must be nearly daylight, he heard the clock strike ten! This was despair. He would have tossed and fidgeted, as his nerves demanded, but he was afraid he might wake Sid. So he lay still, and stared up into the dark. Everything was dismally still. By and by, out of the stillness, little, scarcely perceptible noises began to emphasize themselves. The ticking of the clock began to bring itself into notice. Old beams began to crack mysteriously. The stairs creaked faintly. Evidently spirits were abroad. A measured, muffled snore issued from Aunt Polly's chamber. And now the tiresome chirping of a cricket that no human ingenuity could locate, began. Next the ghastly ticking of a deathwatch in the wall at the bed's head made Tom shudder--it meant that somebody's days were numbered. Then the howl of a far-off dog rose on the night air, and was answered by a fainter howl from a remoter distance. Tom was in an agony. At last he was satisfied that time had ceased and eternity begun; he began to doze, in spite of himself; the clock chimed eleven, but he did not hear it. And then there came, mingling with his half-formed dreams, a most melancholy caterwauling. The raising of a neighboring window disturbed him. A cry of "Scat! you devil!" and the crash of an empty bottle against the back of his aunt's woodshed brought him wide awake, and a single minute later he was dressed and out of the window and creeping along the roof of the "ell" on all fours. He "meow'd" with caution once or twice, as he went; then jumped to the roof of the woodshed and thence to the ground. Huckleberry Finn was there, with his dead cat. The boys moved off and disappeared in the gloom. At the end of half an hour they were wading through the tall grass of the graveyard. It was a graveyard of the old-fashioned Western kind. It was on a hill, about a mile and a half from the village. It had a crazy board fence around it, which leaned inward in places, and outward the rest of the time, but stood upright nowhere. Grass and weeds grew rank over the whole cemetery. All the old graves were sunken in, there was not a tombstone on the place; round-topped, worm-eaten boards staggered over the graves, leaning for support and finding none. "Sacred to the memory of" So-and-So had been painted on them once, but it could no longer have been read, on the most of them, now, even if there had been light. A faint wind moaned through the trees, and Tom feared it might be the spirits of the dead, complaining at being disturbed. The boys talked little, and only under their breath, for the time and the place and the pervading solemnity and silence oppressed their spirits. They found the sharp new heap they were seeking, and ensconced themselves within the protection of three great elms that grew in a bunch within a few feet of the grave. Then they waited in silence for what seemed a long time. The hooting of a distant owl was all the sound that troubled the dead stillness. Tom's reflections grew oppressive. He must force some talk. So he said in a whisper: "Hucky, do you believe the dead people like it for us to be here?" Huckleberry whispered: "I wisht I knowed. It's awful solemn like, AIN'T it?" "I bet it is." There was a considerable pause, while the boys canvassed this matter inwardly. Then Tom whispered: "Say, Hucky--do you reckon Hoss Williams hears us talking?" "O' course he does. Least his sperrit does." Tom, after a pause: "I wish I'd said Mister Williams. But I never meant any harm. Everybody calls him Hoss." "A body can't be too partic'lar how they talk 'bout these-yer dead people, Tom." This was a damper, and conversation died again. Presently Tom seized his comrade's arm and said: "Sh!" "What is it, Tom?" And the two clung together with beating hearts. "Sh! There 'tis again! Didn't you hear it?" "I--" "There! Now you hear it." "Lord, Tom, they're coming! They're coming, sure. What'll we do?" "I dono. Think they'll see us?" "Oh, Tom, they can see in the dark, same as cats. I wisht I hadn't come." "Oh, don't be afeard. I don't believe they'll bother us. We ain't doing any harm. If we keep perfectly still, maybe they won't notice us at all." "I'll try to, Tom, but, Lord, I'm all of a shiver." "Listen!" The boys bent their heads together and scarcely breathed. A muffled sound of voices floated up from the far end of the graveyard. "Look! See there!" whispered Tom. "What is it?" "It's devil-fire. Oh, Tom, this is awful." Some vague figures approached through the gloom, swinging an old-fashioned tin lantern that freckled the ground with innumerable little spangles of light. Presently Huckleberry whispered with a shudder: "It's the devils sure enough. Three of 'em! Lordy, Tom, we're goners! Can you pray?" "I'll try, but don't you be afeard. They ain't going to hurt us. 'Now I lay me down to sleep, I--'" "Sh!" "What is it, Huck?" "They're HUMANS! One of 'em is, anyway. One of 'em's old Muff Potter's voice." "No--'tain't so, is it?" "I bet I know it. Don't you stir nor budge. He ain't sharp enough to notice us. Drunk, the same as usual, likely--blamed old rip!" "All right, I'll keep still. Now they're stuck. Can't find it. Here they come again. Now they're hot. Cold again. Hot again. Red hot! They're p'inted right, this time. Say, Huck, I know another o' them voices; it's Injun Joe." "That's so--that murderin' half-breed! I'd druther they was devils a dern sight. What kin they be up to?" The whisper died wholly out, now, for the three men had reached the grave and stood within a few feet of the boys' hiding-place. "Here it is," said the third voice; and the owner of it held the lantern up and revealed the face of young Doctor Robinson. Potter and Injun Joe were carrying a handbarrow with a rope and a couple of shovels on it. They cast down their load and began to open the grave. The doctor put the lantern at the head of the grave and came and sat down with his back against one of the elm trees. He was so close the boys could have touched him. "Hurry, men!" he said, in a low voice; "the moon might come out at any moment." They growled a response and went on digging. For some time there was no noise but the grating sound of the spades discharging their freight of mould and gravel. It was very monotonous. Finally a spade struck upon the coffin with a dull woody accent, and within another minute or two the men had hoisted it out on the ground. They pried off the lid with their shovels, got out the body and dumped it rudely on the ground. The moon drifted from behind the clouds and exposed the pallid face. The barrow was got ready and the corpse placed on it, covered with a blanket, and bound to its place with the rope. Potter took out a large spring-knife and cut off the dangling end of the rope and then said: "Now the cussed thing's ready, Sawbones, and you'll just out with another five, or here she stays." "That's the talk!" said Injun Joe. "Look here, what does this mean?" said the doctor. "You required your pay in advance, and I've paid you." "Yes, and you done more than that," said Injun Joe, approaching the doctor, who was now standing. "Five years ago you drove me away from your father's kitchen one night, when I come to ask for something to eat, and you said I warn't there for any good; and when I swore I'd get even with you if it took a hundred years, your father had me jailed for a vagrant. Did you think I'd forget? The Injun blood ain't in me for nothing. And now I've GOT you, and you got to SETTLE, you know!" He was threatening the doctor, with his fist in his face, by this time. The doctor struck out suddenly and stretched the ruffian on the ground. Potter dropped his knife, and exclaimed: "Here, now, don't you hit my pard!" and the next moment he had grappled with the doctor and the two were struggling with might and main, trampling the grass and tearing the ground with their heels. Injun Joe sprang to his feet, his eyes flaming with passion, snatched up Potter's knife, and went creeping, catlike and stooping, round and round about the combatants, seeking an opportunity. All at once the doctor flung himself free, seized the heavy headboard of Williams' grave and felled Potter to the earth with it--and in the same instant the half-breed saw his chance and drove the knife to the hilt in the young man's breast. He reeled and fell partly upon Potter, flooding him with his blood, and in the same moment the clouds blotted out the dreadful spectacle and the two frightened boys went speeding away in the dark. Presently, when the moon emerged again, Injun Joe was standing over the two forms, contemplating them. The doctor murmured inarticulately, gave a long gasp or two and was still. The half-breed muttered: "THAT score is settled--damn you." Then he robbed the body. After which he put the fatal knife in Potter's open right hand, and sat down on the dismantled coffin. Three --four--five minutes passed, and then Potter began to stir and moan. His hand closed upon the knife; he raised it, glanced at it, and let it fall, with a shudder. Then he sat up, pushing the body from him, and gazed at it, and then around him, confusedly. His eyes met Joe's. "Lord, how is this, Joe?" he said. "It's a dirty business," said Joe, without moving. "What did you do it for?" "I! I never done it!" "Look here! That kind of talk won't wash." Potter trembled and grew white. "I thought I'd got sober. I'd no business to drink to-night. But it's in my head yet--worse'n when we started here. I'm all in a muddle; can't recollect anything of it, hardly. Tell me, Joe--HONEST, now, old feller--did I do it? Joe, I never meant to--'pon my soul and honor, I never meant to, Joe. Tell me how it was, Joe. Oh, it's awful--and him so young and promising." "Why, you two was scuffling, and he fetched you one with the headboard and you fell flat; and then up you come, all reeling and staggering like, and snatched the knife and jammed it into him, just as he fetched you another awful clip--and here you've laid, as dead as a wedge til now." "Oh, I didn't know what I was a-doing. I wish I may die this minute if I did. It was all on account of the whiskey and the excitement, I reckon. I never used a weepon in my life before, Joe. I've fought, but never with weepons. They'll all say that. Joe, don't tell! Say you won't tell, Joe--that's a good feller. I always liked you, Joe, and stood up for you, too. Don't you remember? You WON'T tell, WILL you, Joe?" And the poor creature dropped on his knees before the stolid murderer, and clasped his appealing hands. "No, you've always been fair and square with me, Muff Potter, and I won't go back on you. There, now, that's as fair as a man can say." "Oh, Joe, you're an angel. I'll bless you for this the longest day I live." And Potter began to cry. "Come, now, that's enough of that. This ain't any time for blubbering. You be off yonder way and I'll go this. Move, now, and don't leave any tracks behind you." Potter started on a trot that quickly increased to a run. The half-breed stood looking after him. He muttered: "If he's as much stunned with the lick and fuddled with the rum as he had the look of being, he won't think of the knife till he's gone so far he'll be afraid to come back after it to such a place by himself --chicken-heart!" Two or three minutes later the murdered man, the blanketed corpse, the lidless coffin, and the open grave were under no inspection but the moon's. The stillness was complete again, too. CHAPTER X THE two boys flew on and on, toward the village, speechless with horror. They glanced backward over their shoulders from time to time, apprehensively, as if they feared they might be followed. Every stump that started up in their path seemed a man and an enemy, and made them catch their breath; and as they sped by some outlying cottages that lay near the village, the barking of the aroused watch-dogs seemed to give wings to their feet. "If we can only get to the old tannery before we break down!" whispered Tom, in short catches between breaths. "I can't stand it much longer." Huckleberry's hard pantings were his only reply, and the boys fixed their eyes on the goal of their hopes and bent to their work to win it. They gained steadily on it, and at last, breast to breast, they burst through the open door and fell grateful and exhausted in the sheltering shadows beyond. By and by their pulses slowed down, and Tom whispered: "Huckleberry, what do you reckon'll come of this?" "If Doctor Robinson dies, I reckon hanging'll come of it." "Do you though?" "Why, I KNOW it, Tom." Tom thought a while, then he said: "Who'll tell? We?" "What are you talking about? S'pose something happened and Injun Joe DIDN'T hang? Why, he'd kill us some time or other, just as dead sure as we're a laying here." "That's just what I was thinking to myself, Huck." "If anybody tells, let Muff Potter do it, if he's fool enough. He's generally drunk enough." Tom said nothing--went on thinking. Presently he whispered: "Huck, Muff Potter don't know it. How can he tell?" "What's the reason he don't know it?" "Because he'd just got that whack when Injun Joe done it. D'you reckon he could see anything? D'you reckon he knowed anything?" "By hokey, that's so, Tom!" "And besides, look-a-here--maybe that whack done for HIM!" "No, 'taint likely, Tom. He had liquor in him; I could see that; and besides, he always has. Well, when pap's full, you might take and belt him over the head with a church and you couldn't phase him. He says so, his own self. So it's the same with Muff Potter, of course. But if a man was dead sober, I reckon maybe that whack might fetch him; I dono." After another reflective silence, Tom said: "Hucky, you sure you can keep mum?" "Tom, we GOT to keep mum. You know that. That Injun devil wouldn't make any more of drownding us than a couple of cats, if we was to squeak 'bout this and they didn't hang him. Now, look-a-here, Tom, less take and swear to one another--that's what we got to do--swear to keep mum." "I'm agreed. It's the best thing. Would you just hold hands and swear that we--" "Oh no, that wouldn't do for this. That's good enough for little rubbishy common things--specially with gals, cuz THEY go back on you anyway, and blab if they get in a huff--but there orter be writing 'bout a big thing like this. And blood." Tom's whole being applauded this idea. It was deep, and dark, and awful; the hour, the circumstances, the surroundings, were in keeping with it. He picked up a clean pine shingle that lay in the moonlight, took a little fragment of "red keel" out of his pocket, got the moon on his work, and painfully scrawled these lines, emphasizing each slow down-stroke by clamping his tongue between his teeth, and letting up the pressure on the up-strokes. [See next page.] "Huck Finn and Tom Sawyer swears they will keep mum about This and They wish They may Drop down dead in Their Tracks if They ever Tell and Rot." Huckleberry was filled with admiration of Tom's facility in writing, and the sublimity of his language. He at once took a pin from his lapel and was going to prick his flesh, but Tom said: "Hold on! Don't do that. A pin's brass. It might have verdigrease on it." "What's verdigrease?" "It's p'ison. That's what it is. You just swaller some of it once --you'll see." So Tom unwound the thread from one of his needles, and each boy pricked the ball of his thumb and squeezed out a drop of blood. In time, after many squeezes, Tom managed to sign his initials, using the ball of his little finger for a pen. Then he showed Huckleberry how to make an H and an F, and the oath was complete. They buried the shingle close to the wall, with some dismal ceremonies and incantations, and the fetters that bound their tongues were considered to be locked and the key thrown away. A figure crept stealthily through a break in the other end of the ruined building, now, but they did not notice it. "Tom," whispered Huckleberry, "does this keep us from EVER telling --ALWAYS?" "Of course it does. It don't make any difference WHAT happens, we got to keep mum. We'd drop down dead--don't YOU know that?" "Yes, I reckon that's so." They continued to whisper for some little time. Presently a dog set up a long, lugubrious howl just outside--within ten feet of them. The boys clasped each other suddenly, in an agony of fright. "Which of us does he mean?" gasped Huckleberry. "I dono--peep through the crack. Quick!" "No, YOU, Tom!" "I can't--I can't DO it, Huck!" "Please, Tom. There 'tis again!" "Oh, lordy, I'm thankful!" whispered Tom. "I know his voice. It's Bull Harbison." * [* If Mr. Harbison owned a slave named Bull, Tom would have spoken of him as "Harbison's Bull," but a son or a dog of that name was "Bull Harbison."] "Oh, that's good--I tell you, Tom, I was most scared to death; I'd a bet anything it was a STRAY dog." The dog howled again. The boys' hearts sank once more. "Oh, my! that ain't no Bull Harbison!" whispered Huckleberry. "DO, Tom!" Tom, quaking with fear, yielded, and put his eye to the crack. His whisper was hardly audible when he said: "Oh, Huck, IT S A STRAY DOG!" "Quick, Tom, quick! Who does he mean?" "Huck, he must mean us both--we're right together." "Oh, Tom, I reckon we're goners. I reckon there ain't no mistake 'bout where I'LL go to. I been so wicked." "Dad fetch it! This comes of playing hookey and doing everything a feller's told NOT to do. I might a been good, like Sid, if I'd a tried --but no, I wouldn't, of course. But if ever I get off this time, I lay I'll just WALLER in Sunday-schools!" And Tom began to snuffle a little. "YOU bad!" and Huckleberry began to snuffle too. "Consound it, Tom Sawyer, you're just old pie, 'longside o' what I am. Oh, LORDY, lordy, lordy, I wisht I only had half your chance." Tom choked off and whispered: "Look, Hucky, look! He's got his BACK to us!" Hucky looked, with joy in his heart. "Well, he has, by jingoes! Did he before?" "Yes, he did. But I, like a fool, never thought. Oh, this is bully, you know. NOW who can he mean?" The howling stopped. Tom pricked up his ears. "Sh! What's that?" he whispered. "Sounds like--like hogs grunting. No--it's somebody snoring, Tom." "That IS it! Where 'bouts is it, Huck?" "I bleeve it's down at 'tother end. Sounds so, anyway. Pap used to sleep there, sometimes, 'long with the hogs, but laws bless you, he just lifts things when HE snores. Besides, I reckon he ain't ever coming back to this town any more." The spirit of adventure rose in the boys' souls once more. "Hucky, do you das't to go if I lead?" "I don't like to, much. Tom, s'pose it's Injun Joe!" Tom quailed. But presently the temptation rose up strong again and the boys agreed to try, with the understanding that they would take to their heels if the snoring stopped. So they went tiptoeing stealthily down, the one behind the other. When they had got to within five steps of the snorer, Tom stepped on a stick, and it broke with a sharp snap. The man moaned, writhed a little, and his face came into the moonlight. It was Muff Potter. The boys' hearts had stood still, and their hopes too, when the man moved, but their fears passed away now. They tiptoed out, through the broken weather-boarding, and stopped at a little distance to exchange a parting word. That long, lugubrious howl rose on the night air again! They turned and saw the strange dog standing within a few feet of where Potter was lying, and FACING Potter, with his nose pointing heavenward. "Oh, geeminy, it's HIM!" exclaimed both boys, in a breath. "Say, Tom--they say a stray dog come howling around Johnny Miller's house, 'bout midnight, as much as two weeks ago; and a whippoorwill come in and lit on the banisters and sung, the very same evening; and there ain't anybody dead there yet." "Well, I know that. And suppose there ain't. Didn't Gracie Miller fall in the kitchen fire and burn herself terrible the very next Saturday?" "Yes, but she ain't DEAD. And what's more, she's getting better, too." "All right, you wait and see. She's a goner, just as dead sure as Muff Potter's a goner. That's what the niggers say, and they know all about these kind of things, Huck." Then they separated, cogitating. When Tom crept in at his bedroom window the night was almost spent. He undressed with excessive caution, and fell asleep congratulating himself that nobody knew of his escapade. He was not aware that the gently-snoring Sid was awake, and had been so for an hour. When Tom awoke, Sid was dressed and gone. There was a late look in the light, a late sense in the atmosphere. He was startled. Why had he not been called--persecuted till he was up, as usual? The thought filled him with bodings. Within five minutes he was dressed and down-stairs, feeling sore and drowsy. The family were still at table, but they had finished breakfast. There was no voice of rebuke; but there were averted eyes; there was a silence and an air of solemnity that struck a chill to the culprit's heart. He sat down and tried to seem gay, but it was up-hill work; it roused no smile, no response, and he lapsed into silence and let his heart sink down to the depths. After breakfast his aunt took him aside, and Tom almost brightened in the hope that he was going to be flogged; but it was not so. His aunt wept over him and asked him how he could go and break her old heart so; and finally told him to go on, and ruin himself and bring her gray hairs with sorrow to the grave, for it was no use for her to try any more. This was worse than a thousand whippings, and Tom's heart was sorer now than his body. He cried, he pleaded for forgiveness, promised to reform over and over again, and then received his dismissal, feeling that he had won but an imperfect forgiveness and established but a feeble confidence. He left the presence too miserable to even feel revengeful toward Sid; and so the latter's prompt retreat through the back gate was unnecessary. He moped to school gloomy and sad, and took his flogging, along with Joe Harper, for playing hookey the day before, with the air of one whose heart was busy with heavier woes and wholly dead to trifles. Then he betook himself to his seat, rested his elbows on his desk and his jaws in his hands, and stared at the wall with the stony stare of suffering that has reached the limit and can no further go. His elbow was pressing against some hard substance. After a long time he slowly and sadly changed his position, and took up this object with a sigh. It was in a paper. He unrolled it. A long, lingering, colossal sigh followed, and his heart broke. It was his brass andiron knob! This final feather broke the camel's back. CHAPTER XI CLOSE upon the hour of noon the whole village was suddenly electrified with the ghastly news. No need of the as yet undreamed-of telegraph; the tale flew from man to man, from group to group, from house to house, with little less than telegraphic speed. Of course the schoolmaster gave holiday for that afternoon; the town would have thought strangely of him if he had not. A gory knife had been found close to the murdered man, and it had been recognized by somebody as belonging to Muff Potter--so the story ran. And it was said that a belated citizen had come upon Potter washing himself in the "branch" about one or two o'clock in the morning, and that Potter had at once sneaked off--suspicious circumstances, especially the washing which was not a habit with Potter. It was also said that the town had been ransacked for this "murderer" (the public are not slow in the matter of sifting evidence and arriving at a verdict), but that he could not be found. Horsemen had departed down all the roads in every direction, and the Sheriff "was confident" that he would be captured before night. All the town was drifting toward the graveyard. Tom's heartbreak vanished and he joined the procession, not because he would not a thousand times rather go anywhere else, but because an awful, unaccountable fascination drew him on. Arrived at the dreadful place, he wormed his small body through the crowd and saw the dismal spectacle. It seemed to him an age since he was there before. Somebody pinched his arm. He turned, and his eyes met Huckleberry's. Then both looked elsewhere at once, and wondered if anybody had noticed anything in their mutual glance. But everybody was talking, and intent upon the grisly spectacle before them. "Poor fellow!" "Poor young fellow!" "This ought to be a lesson to grave robbers!" "Muff Potter'll hang for this if they catch him!" This was the drift of remark; and the minister said, "It was a judgment; His hand is here." Now Tom shivered from head to heel; for his eye fell upon the stolid face of Injun Joe. At this moment the crowd began to sway and struggle, and voices shouted, "It's him! it's him! he's coming himself!" "Who? Who?" from twenty voices. "Muff Potter!" "Hallo, he's stopped!--Look out, he's turning! Don't let him get away!" People in the branches of the trees over Tom's head said he wasn't trying to get away--he only looked doubtful and perplexed. "Infernal impudence!" said a bystander; "wanted to come and take a quiet look at his work, I reckon--didn't expect any company." The crowd fell apart, now, and the Sheriff came through, ostentatiously leading Potter by the arm. The poor fellow's face was haggard, and his eyes showed the fear that was upon him. When he stood before the murdered man, he shook as with a palsy, and he put his face in his hands and burst into tears. "I didn't do it, friends," he sobbed; "'pon my word and honor I never done it." "Who's accused you?" shouted a voice. This shot seemed to carry home. Potter lifted his face and looked around him with a pathetic hopelessness in his eyes. He saw Injun Joe, and exclaimed: "Oh, Injun Joe, you promised me you'd never--" "Is that your knife?" and it was thrust before him by the Sheriff. Potter would have fallen if they had not caught him and eased him to the ground. Then he said: "Something told me 't if I didn't come back and get--" He shuddered; then waved his nerveless hand with a vanquished gesture and said, "Tell 'em, Joe, tell 'em--it ain't any use any more." Then Huckleberry and Tom stood dumb and staring, and heard the stony-hearted liar reel off his serene statement, they expecting every moment that the clear sky would deliver God's lightnings upon his head, and wondering to see how long the stroke was delayed. And when he had finished and still stood alive and whole, their wavering impulse to break their oath and save the poor betrayed prisoner's life faded and vanished away, for plainly this miscreant had sold himself to Satan and it would be fatal to meddle with the property of such a power as that. "Why didn't you leave? What did you want to come here for?" somebody said. "I couldn't help it--I couldn't help it," Potter moaned. "I wanted to run away, but I couldn't seem to come anywhere but here." And he fell to sobbing again. Injun Joe repeated his statement, just as calmly, a few minutes afterward on the inquest, under oath; and the boys, seeing that the lightnings were still withheld, were confirmed in their belief that Joe had sold himself to the devil. He was now become, to them, the most balefully interesting object they had ever looked upon, and they could not take their fascinated eyes from his face. They inwardly resolved to watch him nights, when opportunity should offer, in the hope of getting a glimpse of his dread master. Injun Joe helped to raise the body of the murdered man and put it in a wagon for removal; and it was whispered through the shuddering crowd that the wound bled a little! The boys thought that this happy circumstance would turn suspicion in the right direction; but they were disappointed, for more than one villager remarked: "It was within three feet of Muff Potter when it done it." Tom's fearful secret and gnawing conscience disturbed his sleep for as much as a week after this; and at breakfast one morning Sid said: "Tom, you pitch around and talk in your sleep so much that you keep me awake half the time." Tom blanched and dropped his eyes. "It's a bad sign," said Aunt Polly, gravely. "What you got on your mind, Tom?" "Nothing. Nothing 't I know of." But the boy's hand shook so that he spilled his coffee. "And you do talk such stuff," Sid said. "Last night you said, 'It's blood, it's blood, that's what it is!' You said that over and over. And you said, 'Don't torment me so--I'll tell!' Tell WHAT? What is it you'll tell?" Everything was swimming before Tom. There is no telling what might have happened, now, but luckily the concern passed out of Aunt Polly's face and she came to Tom's relief without knowing it. She said: "Sho! It's that dreadful murder. I dream about it most every night myself. Sometimes I dream it's me that done it." Mary said she had been affected much the same way. Sid seemed satisfied. Tom got out of the presence as quick as he plausibly could, and after that he complained of toothache for a week, and tied up his jaws every night. He never knew that Sid lay nightly watching, and frequently slipped the bandage free and then leaned on his elbow listening a good while at a time, and afterward slipped the bandage back to its place again. Tom's distress of mind wore off gradually and the toothache grew irksome and was discarded. If Sid really managed to make anything out of Tom's disjointed mutterings, he kept it to himself. It seemed to Tom that his schoolmates never would get done holding inquests on dead cats, and thus keeping his trouble present to his mind. Sid noticed that Tom never was coroner at one of these inquiries, though it had been his habit to take the lead in all new enterprises; he noticed, too, that Tom never acted as a witness--and that was strange; and Sid did not overlook the fact that Tom even showed a marked aversion to these inquests, and always avoided them when he could. Sid marvelled, but said nothing. However, even inquests went out of vogue at last, and ceased to torture Tom's conscience. Every day or two, during this time of sorrow, Tom watched his opportunity and went to the little grated jail-window and smuggled such small comforts through to the "murderer" as he could get hold of. The jail was a trifling little brick den that stood in a marsh at the edge of the village, and no guards were afforded for it; indeed, it was seldom occupied. These offerings greatly helped to ease Tom's conscience. The villagers had a strong desire to tar-and-feather Injun Joe and ride him on a rail, for body-snatching, but so formidable was his character that nobody could be found who was willing to take the lead in the matter, so it was dropped. He had been careful to begin both of his inquest-statements with the fight, without confessing the grave-robbery that preceded it; therefore it was deemed wisest not to try the case in the courts at present. CHAPTER XII ONE of the reasons why Tom's mind had drifted away from its secret troubles was, that it had found a new and weighty matter to interest itself about. Becky Thatcher had stopped coming to school. Tom had struggled with his pride a few days, and tried to "whistle her down the wind," but failed. He began to find himself hanging around her father's house, nights, and feeling very miserable. She was ill. What if she should die! There was distraction in the thought. He no longer took an interest in war, nor even in piracy. The charm of life was gone; there was nothing but dreariness left. He put his hoop away, and his bat; there was no joy in them any more. His aunt was concerned. She began to try all manner of remedies on him. She was one of those people who are infatuated with patent medicines and all new-fangled methods of producing health or mending it. She was an inveterate experimenter in these things. When something fresh in this line came out she was in a fever, right away, to try it; not on herself, for she was never ailing, but on anybody else that came handy. She was a subscriber for all the "Health" periodicals and phrenological frauds; and the solemn ignorance they were inflated with was breath to her nostrils. All the "rot" they contained about ventilation, and how to go to bed, and how to get up, and what to eat, and what to drink, and how much exercise to take, and what frame of mind to keep one's self in, and what sort of clothing to wear, was all gospel to her, and she never observed that her health-journals of the current month customarily upset everything they had recommended the month before. She was as simple-hearted and honest as the day was long, and so she was an easy victim. She gathered together her quack periodicals and her quack medicines, and thus armed with death, went about on her pale horse, metaphorically speaking, with "hell following after." But she never suspected that she was not an angel of healing and the balm of Gilead in disguise, to the suffering neighbors. The water treatment was new, now, and Tom's low condition was a windfall to her. She had him out at daylight every morning, stood him up in the woodshed and drowned him with a deluge of cold water; then she scrubbed him down with a towel like a file, and so brought him to; then she rolled him up in a wet sheet and put him away under blankets till she sweated his soul clean and "the yellow stains of it came through his pores"--as Tom said. Yet notwithstanding all this, the boy grew more and more melancholy and pale and dejected. She added hot baths, sitz baths, shower baths, and plunges. The boy remained as dismal as a hearse. She began to assist the water with a slim oatmeal diet and blister-plasters. She calculated his capacity as she would a jug's, and filled him up every day with quack cure-alls. Tom had become indifferent to persecution by this time. This phase filled the old lady's heart with consternation. This indifference must be broken up at any cost. Now she heard of Pain-killer for the first time. She ordered a lot at once. She tasted it and was filled with gratitude. It was simply fire in a liquid form. She dropped the water treatment and everything else, and pinned her faith to Pain-killer. She gave Tom a teaspoonful and watched with the deepest anxiety for the result. Her troubles were instantly at rest, her soul at peace again; for the "indifference" was broken up. The boy could not have shown a wilder, heartier interest, if she had built a fire under him. Tom felt that it was time to wake up; this sort of life might be romantic enough, in his blighted condition, but it was getting to have too little sentiment and too much distracting variety about it. So he thought over various plans for relief, and finally hit pon that of professing to be fond of Pain-killer. He asked for it so often that he became a nuisance, and his aunt ended by telling him to help himself and quit bothering her. If it had been Sid, she would have had no misgivings to alloy her delight; but since it was Tom, she watched the bottle clandestinely. She found that the medicine did really diminish, but it did not occur to her that the boy was mending the health of a crack in the sitting-room floor with it. One day Tom was in the act of dosing the crack when his aunt's yellow cat came along, purring, eying the teaspoon avariciously, and begging for a taste. Tom said: "Don't ask for it unless you want it, Peter." But Peter signified that he did want it. "You better make sure." Peter was sure. "Now you've asked for it, and I'll give it to you, because there ain't anything mean about me; but if you find you don't like it, you mustn't blame anybody but your own self." Peter was agreeable. So Tom pried his mouth open and poured down the Pain-killer. Peter sprang a couple of yards in the air, and then delivered a war-whoop and set off round and round the room, banging against furniture, upsetting flower-pots, and making general havoc. Next he rose on his hind feet and pranced around, in a frenzy of enjoyment, with his head over his shoulder and his voice proclaiming his unappeasable happiness. Then he went tearing around the house again spreading chaos and destruction in his path. Aunt Polly entered in time to see him throw a few double summersets, deliver a final mighty hurrah, and sail through the open window, carrying the rest of the flower-pots with him. The old lady stood petrified with astonishment, peering over her glasses; Tom lay on the floor expiring with laughter. "Tom, what on earth ails that cat?" "I don't know, aunt," gasped the boy. "Why, I never see anything like it. What did make him act so?" "Deed I don't know, Aunt Polly; cats always act so when they're having a good time." "They do, do they?" There was something in the tone that made Tom apprehensive. "Yes'm. That is, I believe they do." "You DO?" "Yes'm." The old lady was bending down, Tom watching, with interest emphasized by anxiety. Too late he divined her "drift." The handle of the telltale teaspoon was visible under the bed-valance. Aunt Polly took it, held it up. Tom winced, and dropped his eyes. Aunt Polly raised him by the usual handle--his ear--and cracked his head soundly with her thimble. "Now, sir, what did you want to treat that poor dumb beast so, for?" "I done it out of pity for him--because he hadn't any aunt." "Hadn't any aunt!--you numskull. What has that got to do with it?" "Heaps. Because if he'd had one she'd a burnt him out herself! She'd a roasted his bowels out of him 'thout any more feeling than if he was a human!" Aunt Polly felt a sudden pang of remorse. This was putting the thing in a new light; what was cruelty to a cat MIGHT be cruelty to a boy, too. She began to soften; she felt sorry. Her eyes watered a little, and she put her hand on Tom's head and said gently: "I was meaning for the best, Tom. And, Tom, it DID do you good." Tom looked up in her face with just a perceptible twinkle peeping through his gravity. "I know you was meaning for the best, aunty, and so was I with Peter. It done HIM good, too. I never see him get around so since--" "Oh, go 'long with you, Tom, before you aggravate me again. And you try and see if you can't be a good boy, for once, and you needn't take any more medicine." Tom reached school ahead of time. It was noticed that this strange thing had been occurring every day latterly. And now, as usual of late, he hung about the gate of the schoolyard instead of playing with his comrades. He was sick, he said, and he looked it. He tried to seem to be looking everywhere but whither he really was looking--down the road. Presently Jeff Thatcher hove in sight, and Tom's face lighted; he gazed a moment, and then turned sorrowfully away. When Jeff arrived, Tom accosted him; and "led up" warily to opportunities for remark about Becky, but the giddy lad never could see the bait. Tom watched and watched, hoping whenever a frisking frock came in sight, and hating the owner of it as soon as he saw she was not the right one. At last frocks ceased to appear, and he dropped hopelessly into the dumps; he entered the empty schoolhouse and sat down to suffer. Then one more frock passed in at the gate, and Tom's heart gave a great bound. The next instant he was out, and "going on" like an Indian; yelling, laughing, chasing boys, jumping over the fence at risk of life and limb, throwing handsprings, standing on his head--doing all the heroic things he could conceive of, and keeping a furtive eye out, all the while, to see if Becky Thatcher was noticing. But she seemed to be unconscious of it all; she never looked. Could it be possible that she was not aware that he was there? He carried his exploits to her immediate vicinity; came war-whooping around, snatched a boy's cap, hurled it to the roof of the schoolhouse, broke through a group of boys, tumbling them in every direction, and fell sprawling, himself, under Becky's nose, almost upsetting her--and she turned, with her nose in the air, and he heard her say: "Mf! some people think they're mighty smart--always showing off!" Tom's cheeks burned. He gathered himself up and sneaked off, crushed and crestfallen. CHAPTER XIII TOM'S mind was made up now. He was gloomy and desperate. He was a forsaken, friendless boy, he said; nobody loved him; when they found out what they had driven him to, perhaps they would be sorry; he had tried to do right and get along, but they would not let him; since nothing would do them but to be rid of him, let it be so; and let them blame HIM for the consequences--why shouldn't they? What right had the friendless to complain? Yes, they had forced him to it at last: he would lead a life of crime. There was no choice. By this time he was far down Meadow Lane, and the bell for school to "take up" tinkled faintly upon his ear. He sobbed, now, to think he should never, never hear that old familiar sound any more--it was very hard, but it was forced on him; since he was driven out into the cold world, he must submit--but he forgave them. Then the sobs came thick and fast. Just at this point he met his soul's sworn comrade, Joe Harper --hard-eyed, and with evidently a great and dismal purpose in his heart. Plainly here were "two souls with but a single thought." Tom, wiping his eyes with his sleeve, began to blubber out something about a resolution to escape from hard usage and lack of sympathy at home by roaming abroad into the great world never to return; and ended by hoping that Joe would not forget him. But it transpired that this was a request which Joe had just been going to make of Tom, and had come to hunt him up for that purpose. His mother had whipped him for drinking some cream which he had never tasted and knew nothing about; it was plain that she was tired of him and wished him to go; if she felt that way, there was nothing for him to do but succumb; he hoped she would be happy, and never regret having driven her poor boy out into the unfeeling world to suffer and die. As the two boys walked sorrowing along, they made a new compact to stand by each other and be brothers and never separate till death relieved them of their troubles. Then they began to lay their plans. Joe was for being a hermit, and living on crusts in a remote cave, and dying, some time, of cold and want and grief; but after listening to Tom, he conceded that there were some conspicuous advantages about a life of crime, and so he consented to be a pirate. Three miles below St. Petersburg, at a point where the Mississippi River was a trifle over a mile wide, there was a long, narrow, wooded island, with a shallow bar at the head of it, and this offered well as a rendezvous. It was not inhabited; it lay far over toward the further shore, abreast a dense and almost wholly unpeopled forest. So Jackson's Island was chosen. Who were to be the subjects of their piracies was a matter that did not occur to them. Then they hunted up Huckleberry Finn, and he joined them promptly, for all careers were one to him; he was indifferent. They presently separated to meet at a lonely spot on the river-bank two miles above the village at the favorite hour--which was midnight. There was a small log raft there which they meant to capture. Each would bring hooks and lines, and such provision as he could steal in the most dark and mysterious way--as became outlaws. And before the afternoon was done, they had all managed to enjoy the sweet glory of spreading the fact that pretty soon the town would "hear something." All who got this vague hint were cautioned to "be mum and wait." About midnight Tom arrived with a boiled ham and a few trifles, and stopped in a dense undergrowth on a small bluff overlooking the meeting-place. It was starlight, and very still. The mighty river lay like an ocean at rest. Tom listened a moment, but no sound disturbed the quiet. Then he gave a low, distinct whistle. It was answered from under the bluff. Tom whistled twice more; these signals were answered in the same way. Then a guarded voice said: "Who goes there?" "Tom Sawyer, the Black Avenger of the Spanish Main. Name your names." "Huck Finn the Red-Handed, and Joe Harper the Terror of the Seas." Tom had furnished these titles, from his favorite literature. "'Tis well. Give the countersign." Two hoarse whispers delivered the same awful word simultaneously to the brooding night: "BLOOD!" Then Tom tumbled his ham over the bluff and let himself down after it, tearing both skin and clothes to some extent in the effort. There was an easy, comfortable path along the shore under the bluff, but it lacked the advantages of difficulty and danger so valued by a pirate. The Terror of the Seas had brought a side of bacon, and had about worn himself out with getting it there. Finn the Red-Handed had stolen a skillet and a quantity of half-cured leaf tobacco, and had also brought a few corn-cobs to make pipes with. But none of the pirates smoked or "chewed" but himself. The Black Avenger of the Spanish Main said it would never do to start without some fire. That was a wise thought; matches were hardly known there in that day. They saw a fire smouldering upon a great raft a hundred yards above, and they went stealthily thither and helped themselves to a chunk. They made an imposing adventure of it, saying, "Hist!" every now and then, and suddenly halting with finger on lip; moving with hands on imaginary dagger-hilts; and giving orders in dismal whispers that if "the foe" stirred, to "let him have it to the hilt," because "dead men tell no tales." They knew well enough that the raftsmen were all down at the village laying in stores or having a spree, but still that was no excuse for their conducting this thing in an unpiratical way. They shoved off, presently, Tom in command, Huck at the after oar and Joe at the forward. Tom stood amidships, gloomy-browed, and with folded arms, and gave his orders in a low, stern whisper: "Luff, and bring her to the wind!" "Aye-aye, sir!" "Steady, steady-y-y-y!" "Steady it is, sir!" "Let her go off a point!" "Point it is, sir!" As the boys steadily and monotonously drove the raft toward mid-stream it was no doubt understood that these orders were given only for "style," and were not intended to mean anything in particular. "What sail's she carrying?" "Courses, tops'ls, and flying-jib, sir." "Send the r'yals up! Lay out aloft, there, half a dozen of ye --foretopmaststuns'l! Lively, now!" "Aye-aye, sir!" "Shake out that maintogalans'l! Sheets and braces! NOW my hearties!" "Aye-aye, sir!" "Hellum-a-lee--hard a port! Stand by to meet her when she comes! Port, port! NOW, men! With a will! Stead-y-y-y!" "Steady it is, sir!" The raft drew beyond the middle of the river; the boys pointed her head right, and then lay on their oars. The river was not high, so there was not more than a two or three mile current. Hardly a word was said during the next three-quarters of an hour. Now the raft was passing before the distant town. Two or three glimmering lights showed where it lay, peacefully sleeping, beyond the vague vast sweep of star-gemmed water, unconscious of the tremendous event that was happening. The Black Avenger stood still with folded arms, "looking his last" upon the scene of his former joys and his later sufferings, and wishing "she" could see him now, abroad on the wild sea, facing peril and death with dauntless heart, going to his doom with a grim smile on his lips. It was but a small strain on his imagination to remove Jackson's Island beyond eyeshot of the village, and so he "looked his last" with a broken and satisfied heart. The other pirates were looking their last, too; and they all looked so long that they came near letting the current drift them out of the range of the island. But they discovered the danger in time, and made shift to avert it. About two o'clock in the morning the raft grounded on the bar two hundred yards above the head of the island, and they waded back and forth until they had landed their freight. Part of the little raft's belongings consisted of an old sail, and this they spread over a nook in the bushes for a tent to shelter their provisions; but they themselves would sleep in the open air in good weather, as became outlaws. They built a fire against the side of a great log twenty or thirty steps within the sombre depths of the forest, and then cooked some bacon in the frying-pan for supper, and used up half of the corn "pone" stock they had brought. It seemed glorious sport to be feasting in that wild, free way in the virgin forest of an unexplored and uninhabited island, far from the haunts of men, and they said they never would return to civilization. The climbing fire lit up their faces and threw its ruddy glare upon the pillared tree-trunks of their forest temple, and upon the varnished foliage and festooning vines. When the last crisp slice of bacon was gone, and the last allowance of corn pone devoured, the boys stretched themselves out on the grass, filled with contentment. They could have found a cooler place, but they would not deny themselves such a romantic feature as the roasting camp-fire. "AIN'T it gay?" said Joe. "It's NUTS!" said Tom. "What would the boys say if they could see us?" "Say? Well, they'd just die to be here--hey, Hucky!" "I reckon so," said Huckleberry; "anyways, I'm suited. I don't want nothing better'n this. I don't ever get enough to eat, gen'ally--and here they can't come and pick at a feller and bullyrag him so." "It's just the life for me," said Tom. "You don't have to get up, mornings, and you don't have to go to school, and wash, and all that blame foolishness. You see a pirate don't have to do ANYTHING, Joe, when he's ashore, but a hermit HE has to be praying considerable, and then he don't have any fun, anyway, all by himself that way." "Oh yes, that's so," said Joe, "but I hadn't thought much about it, you know. I'd a good deal rather be a pirate, now that I've tried it." "You see," said Tom, "people don't go much on hermits, nowadays, like they used to in old times, but a pirate's always respected. And a hermit's got to sleep on the hardest place he can find, and put sackcloth and ashes on his head, and stand out in the rain, and--" "What does he put sackcloth and ashes on his head for?" inquired Huck. "I dono. But they've GOT to do it. Hermits always do. You'd have to do that if you was a hermit." "Dern'd if I would," said Huck. "Well, what would you do?" "I dono. But I wouldn't do that." "Why, Huck, you'd HAVE to. How'd you get around it?" "Why, I just wouldn't stand it. I'd run away." "Run away! Well, you WOULD be a nice old slouch of a hermit. You'd be a disgrace." The Red-Handed made no response, being better employed. He had finished gouging out a cob, and now he fitted a weed stem to it, loaded it with tobacco, and was pressing a coal to the charge and blowing a cloud of fragrant smoke--he was in the full bloom of luxurious contentment. The other pirates envied him this majestic vice, and secretly resolved to acquire it shortly. Presently Huck said: "What does pirates have to do?" Tom said: "Oh, they have just a bully time--take ships and burn them, and get the money and bury it in awful places in their island where there's ghosts and things to watch it, and kill everybody in the ships--make 'em walk a plank." "And they carry the women to the island," said Joe; "they don't kill the women." "No," assented Tom, "they don't kill the women--they're too noble. And the women's always beautiful, too. "And don't they wear the bulliest clothes! Oh no! All gold and silver and di'monds," said Joe, with enthusiasm. "Who?" said Huck. "Why, the pirates." Huck scanned his own clothing forlornly. "I reckon I ain't dressed fitten for a pirate," said he, with a regretful pathos in his voice; "but I ain't got none but these." But the other boys told him the fine clothes would come fast enough, after they should have begun their adventures. They made him understand that his poor rags would do to begin with, though it was customary for wealthy pirates to start with a proper wardrobe. Gradually their talk died out and drowsiness began to steal upon the eyelids of the little waifs. The pipe dropped from the fingers of the Red-Handed, and he slept the sleep of the conscience-free and the weary. The Terror of the Seas and the Black Avenger of the Spanish Main had more difficulty in getting to sleep. They said their prayers inwardly, and lying down, since there was nobody there with authority to make them kneel and recite aloud; in truth, they had a mind not to say them at all, but they were afraid to proceed to such lengths as that, lest they might call down a sudden and special thunderbolt from heaven. Then at once they reached and hovered upon the imminent verge of sleep--but an intruder came, now, that would not "down." It was conscience. They began to feel a vague fear that they had been doing wrong to run away; and next they thought of the stolen meat, and then the real torture came. They tried to argue it away by reminding conscience that they had purloined sweetmeats and apples scores of times; but conscience was not to be appeased by such thin plausibilities; it seemed to them, in the end, that there was no getting around the stubborn fact that taking sweetmeats was only "hooking," while taking bacon and hams and such valuables was plain simple stealing--and there was a command against that in the Bible. So they inwardly resolved that so long as they remained in the business, their piracies should not again be sullied with the crime of stealing. Then conscience granted a truce, and these curiously inconsistent pirates fell peacefully to sleep. CHAPTER XIV WHEN Tom awoke in the morning, he wondered where he was. He sat up and rubbed his eyes and looked around. Then he comprehended. It was the cool gray dawn, and there was a delicious sense of repose and peace in the deep pervading calm and silence of the woods. Not a leaf stirred; not a sound obtruded upon great Nature's meditation. Beaded dewdrops stood upon the leaves and grasses. A white layer of ashes covered the fire, and a thin blue breath of smoke rose straight into the air. Joe and Huck still slept. Now, far away in the woods a bird called; another answered; presently the hammering of a woodpecker was heard. Gradually the cool dim gray of the morning whitened, and as gradually sounds multiplied and life manifested itself. The marvel of Nature shaking off sleep and going to work unfolded itself to the musing boy. A little green worm came crawling over a dewy leaf, lifting two-thirds of his body into the air from time to time and "sniffing around," then proceeding again--for he was measuring, Tom said; and when the worm approached him, of its own accord, he sat as still as a stone, with his hopes rising and falling, by turns, as the creature still came toward him or seemed inclined to go elsewhere; and when at last it considered a painful moment with its curved body in the air and then came decisively down upon Tom's leg and began a journey over him, his whole heart was glad--for that meant that he was going to have a new suit of clothes--without the shadow of a doubt a gaudy piratical uniform. Now a procession of ants appeared, from nowhere in particular, and went about their labors; one struggled manfully by with a dead spider five times as big as itself in its arms, and lugged it straight up a tree-trunk. A brown spotted lady-bug climbed the dizzy height of a grass blade, and Tom bent down close to it and said, "Lady-bug, lady-bug, fly away home, your house is on fire, your children's alone," and she took wing and went off to see about it --which did not surprise the boy, for he knew of old that this insect was credulous about conflagrations, and he had practised upon its simplicity more than once. A tumblebug came next, heaving sturdily at its ball, and Tom touched the creature, to see it shut its legs against its body and pretend to be dead. The birds were fairly rioting by this time. A catbird, the Northern mocker, lit in a tree over Tom's head, and trilled out her imitations of her neighbors in a rapture of enjoyment; then a shrill jay swept down, a flash of blue flame, and stopped on a twig almost within the boy's reach, cocked his head to one side and eyed the strangers with a consuming curiosity; a gray squirrel and a big fellow of the "fox" kind came skurrying along, sitting up at intervals to inspect and chatter at the boys, for the wild things had probably never seen a human being before and scarcely knew whether to be afraid or not. All Nature was wide awake and stirring, now; long lances of sunlight pierced down through the dense foliage far and near, and a few butterflies came fluttering upon the scene. Tom stirred up the other pirates and they all clattered away with a shout, and in a minute or two were stripped and chasing after and tumbling over each other in the shallow limpid water of the white sandbar. They felt no longing for the little village sleeping in the distance beyond the majestic waste of water. A vagrant current or a slight rise in the river had carried off their raft, but this only gratified them, since its going was something like burning the bridge between them and civilization. They came back to camp wonderfully refreshed, glad-hearted, and ravenous; and they soon had the camp-fire blazing up again. Huck found a spring of clear cold water close by, and the boys made cups of broad oak or hickory leaves, and felt that water, sweetened with such a wildwood charm as that, would be a good enough substitute for coffee. While Joe was slicing bacon for breakfast, Tom and Huck asked him to hold on a minute; they stepped to a promising nook in the river-bank and threw in their lines; almost immediately they had reward. Joe had not had time to get impatient before they were back again with some handsome bass, a couple of sun-perch and a small catfish--provisions enough for quite a family. They fried the fish with the bacon, and were astonished; for no fish had ever seemed so delicious before. They did not know that the quicker a fresh-water fish is on the fire after he is caught the better he is; and they reflected little upon what a sauce open-air sleeping, open-air exercise, bathing, and a large ingredient of hunger make, too. They lay around in the shade, after breakfast, while Huck had a smoke, and then went off through the woods on an exploring expedition. They tramped gayly along, over decaying logs, through tangled underbrush, among solemn monarchs of the forest, hung from their crowns to the ground with a drooping regalia of grape-vines. Now and then they came upon snug nooks carpeted with grass and jeweled with flowers. They found plenty of things to be delighted with, but nothing to be astonished at. They discovered that the island was about three miles long and a quarter of a mile wide, and that the shore it lay closest to was only separated from it by a narrow channel hardly two hundred yards wide. They took a swim about every hour, so it was close upon the middle of the afternoon when they got back to camp. They were too hungry to stop to fish, but they fared sumptuously upon cold ham, and then threw themselves down in the shade to talk. But the talk soon began to drag, and then died. The stillness, the solemnity that brooded in the woods, and the sense of loneliness, began to tell upon the spirits of the boys. They fell to thinking. A sort of undefined longing crept upon them. This took dim shape, presently--it was budding homesickness. Even Finn the Red-Handed was dreaming of his doorsteps and empty hogsheads. But they were all ashamed of their weakness, and none was brave enough to speak his thought. For some time, now, the boys had been dully conscious of a peculiar sound in the distance, just as one sometimes is of the ticking of a clock which he takes no distinct note of. But now this mysterious sound became more pronounced, and forced a recognition. The boys started, glanced at each other, and then each assumed a listening attitude. There was a long silence, profound and unbroken; then a deep, sullen boom came floating down out of the distance. "What is it!" exclaimed Joe, under his breath. "I wonder," said Tom in a whisper. "'Tain't thunder," said Huckleberry, in an awed tone, "becuz thunder--" "Hark!" said Tom. "Listen--don't talk." They waited a time that seemed an age, and then the same muffled boom troubled the solemn hush. "Let's go and see." They sprang to their feet and hurried to the shore toward the town. They parted the bushes on the bank and peered out over the water. The little steam ferryboat was about a mile below the village, drifting with the current. Her broad deck seemed crowded with people. There were a great many skiffs rowing about or floating with the stream in the neighborhood of the ferryboat, but the boys could not determine what the men in them were doing. Presently a great jet of white smoke burst from the ferryboat's side, and as it expanded and rose in a lazy cloud, that same dull throb of sound was borne to the listeners again. "I know now!" exclaimed Tom; "somebody's drownded!" "That's it!" said Huck; "they done that last summer, when Bill Turner got drownded; they shoot a cannon over the water, and that makes him come up to the top. Yes, and they take loaves of bread and put quicksilver in 'em and set 'em afloat, and wherever there's anybody that's drownded, they'll float right there and stop." "Yes, I've heard about that," said Joe. "I wonder what makes the bread do that." "Oh, it ain't the bread, so much," said Tom; "I reckon it's mostly what they SAY over it before they start it out." "But they don't say anything over it," said Huck. "I've seen 'em and they don't." "Well, that's funny," said Tom. "But maybe they say it to themselves. Of COURSE they do. Anybody might know that." The other boys agreed that there was reason in what Tom said, because an ignorant lump of bread, uninstructed by an incantation, could not be expected to act very intelligently when set upon an errand of such gravity. "By jings, I wish I was over there, now," said Joe. "I do too" said Huck "I'd give heaps to know who it is." The boys still listened and watched. Presently a revealing thought flashed through Tom's mind, and he exclaimed: "Boys, I know who's drownded--it's us!" They felt like heroes in an instant. Here was a gorgeous triumph; they were missed; they were mourned; hearts were breaking on their account; tears were being shed; accusing memories of unkindness to these poor lost lads were rising up, and unavailing regrets and remorse were being indulged; and best of all, the departed were the talk of the whole town, and the envy of all the boys, as far as this dazzling notoriety was concerned. This was fine. It was worth while to be a pirate, after all. As twilight drew on, the ferryboat went back to her accustomed business and the skiffs disappeared. The pirates returned to camp. They were jubilant with vanity over their new grandeur and the illustrious trouble they were making. They caught fish, cooked supper and ate it, and then fell to guessing at what the village was thinking and saying about them; and the pictures they drew of the public distress on their account were gratifying to look upon--from their point of view. But when the shadows of night closed them in, they gradually ceased to talk, and sat gazing into the fire, with their minds evidently wandering elsewhere. The excitement was gone, now, and Tom and Joe could not keep back thoughts of certain persons at home who were not enjoying this fine frolic as much as they were. Misgivings came; they grew troubled and unhappy; a sigh or two escaped, unawares. By and by Joe timidly ventured upon a roundabout "feeler" as to how the others might look upon a return to civilization--not right now, but-- Tom withered him with derision! Huck, being uncommitted as yet, joined in with Tom, and the waverer quickly "explained," and was glad to get out of the scrape with as little taint of chicken-hearted homesickness clinging to his garments as he could. Mutiny was effectually laid to rest for the moment. As the night deepened, Huck began to nod, and presently to snore. Joe followed next. Tom lay upon his elbow motionless, for some time, watching the two intently. At last he got up cautiously, on his knees, and went searching among the grass and the flickering reflections flung by the camp-fire. He picked up and inspected several large semi-cylinders of the thin white bark of a sycamore, and finally chose two which seemed to suit him. Then he knelt by the fire and painfully wrote something upon each of these with his "red keel"; one he rolled up and put in his jacket pocket, and the other he put in Joe's hat and removed it to a little distance from the owner. And he also put into the hat certain schoolboy treasures of almost inestimable value--among them a lump of chalk, an India-rubber ball, three fishhooks, and one of that kind of marbles known as a "sure 'nough crystal." Then he tiptoed his way cautiously among the trees till he felt that he was out of hearing, and straightway broke into a keen run in the direction of the sandbar. CHAPTER XV A FEW minutes later Tom was in the shoal water of the bar, wading toward the Illinois shore. Before the depth reached his middle he was half-way over; the current would permit no more wading, now, so he struck out confidently to swim the remaining hundred yards. He swam quartering upstream, but still was swept downward rather faster than he had expected. However, he reached the shore finally, and drifted along till he found a low place and drew himself out. He put his hand on his jacket pocket, found his piece of bark safe, and then struck through the woods, following the shore, with streaming garments. Shortly before ten o'clock he came out into an open place opposite the village, and saw the ferryboat lying in the shadow of the trees and the high bank. Everything was quiet under the blinking stars. He crept down the bank, watching with all his eyes, slipped into the water, swam three or four strokes and climbed into the skiff that did "yawl" duty at the boat's stern. He laid himself down under the thwarts and waited, panting. Presently the cracked bell tapped and a voice gave the order to "cast off." A minute or two later the skiff's head was standing high up, against the boat's swell, and the voyage was begun. Tom felt happy in his success, for he knew it was the boat's last trip for the night. At the end of a long twelve or fifteen minutes the wheels stopped, and Tom slipped overboard and swam ashore in the dusk, landing fifty yards downstream, out of danger of possible stragglers. He flew along unfrequented alleys, and shortly found himself at his aunt's back fence. He climbed over, approached the "ell," and looked in at the sitting-room window, for a light was burning there. There sat Aunt Polly, Sid, Mary, and Joe Harper's mother, grouped together, talking. They were by the bed, and the bed was between them and the door. Tom went to the door and began to softly lift the latch; then he pressed gently and the door yielded a crack; he continued pushing cautiously, and quaking every time it creaked, till he judged he might squeeze through on his knees; so he put his head through and began, warily. "What makes the candle blow so?" said Aunt Polly. Tom hurried up. "Why, that door's open, I believe. Why, of course it is. No end of strange things now. Go 'long and shut it, Sid." Tom disappeared under the bed just in time. He lay and "breathed" himself for a time, and then crept to where he could almost touch his aunt's foot. "But as I was saying," said Aunt Polly, "he warn't BAD, so to say --only mischEEvous. Only just giddy, and harum-scarum, you know. He warn't any more responsible than a colt. HE never meant any harm, and he was the best-hearted boy that ever was"--and she began to cry. "It was just so with my Joe--always full of his devilment, and up to every kind of mischief, but he was just as unselfish and kind as he could be--and laws bless me, to think I went and whipped him for taking that cream, never once recollecting that I throwed it out myself because it was sour, and I never to see him again in this world, never, never, never, poor abused boy!" And Mrs. Harper sobbed as if her heart would break. "I hope Tom's better off where he is," said Sid, "but if he'd been better in some ways--" "SID!" Tom felt the glare of the old lady's eye, though he could not see it. "Not a word against my Tom, now that he's gone! God'll take care of HIM--never you trouble YOURself, sir! Oh, Mrs. Harper, I don't know how to give him up! I don't know how to give him up! He was such a comfort to me, although he tormented my old heart out of me, 'most." "The Lord giveth and the Lord hath taken away--Blessed be the name of the Lord! But it's so hard--Oh, it's so hard! Only last Saturday my Joe busted a firecracker right under my nose and I knocked him sprawling. Little did I know then, how soon--Oh, if it was to do over again I'd hug him and bless him for it." "Yes, yes, yes, I know just how you feel, Mrs. Harper, I know just exactly how you feel. No longer ago than yesterday noon, my Tom took and filled the cat full of Pain-killer, and I did think the cretur would tear the house down. And God forgive me, I cracked Tom's head with my thimble, poor boy, poor dead boy. But he's out of all his troubles now. And the last words I ever heard him say was to reproach--" But this memory was too much for the old lady, and she broke entirely down. Tom was snuffling, now, himself--and more in pity of himself than anybody else. He could hear Mary crying, and putting in a kindly word for him from time to time. He began to have a nobler opinion of himself than ever before. Still, he was sufficiently touched by his aunt's grief to long to rush out from under the bed and overwhelm her with joy--and the theatrical gorgeousness of the thing appealed strongly to his nature, too, but he resisted and lay still. He went on listening, and gathered by odds and ends that it was conjectured at first that the boys had got drowned while taking a swim; then the small raft had been missed; next, certain boys said the missing lads had promised that the village should "hear something" soon; the wise-heads had "put this and that together" and decided that the lads had gone off on that raft and would turn up at the next town below, presently; but toward noon the raft had been found, lodged against the Missouri shore some five or six miles below the village --and then hope perished; they must be drowned, else hunger would have driven them home by nightfall if not sooner. It was believed that the search for the bodies had been a fruitless effort merely because the drowning must have occurred in mid-channel, since the boys, being good swimmers, would otherwise have escaped to shore. This was Wednesday night. If the bodies continued missing until Sunday, all hope would be given over, and the funerals would be preached on that morning. Tom shuddered. Mrs. Harper gave a sobbing good-night and turned to go. Then with a mutual impulse the two bereaved women flung themselves into each other's arms and had a good, consoling cry, and then parted. Aunt Polly was tender far beyond her wont, in her good-night to Sid and Mary. Sid snuffled a bit and Mary went off crying with all her heart. Aunt Polly knelt down and prayed for Tom so touchingly, so appealingly, and with such measureless love in her words and her old trembling voice, that he was weltering in tears again, long before she was through. He had to keep still long after she went to bed, for she kept making broken-hearted ejaculations from time to time, tossing unrestfully, and turning over. But at last she was still, only moaning a little in her sleep. Now the boy stole out, rose gradually by the bedside, shaded the candle-light with his hand, and stood regarding her. His heart was full of pity for her. He took out his sycamore scroll and placed it by the candle. But something occurred to him, and he lingered considering. His face lighted with a happy solution of his thought; he put the bark hastily in his pocket. Then he bent over and kissed the faded lips, and straightway made his stealthy exit, latching the door behind him. He threaded his way back to the ferry landing, found nobody at large there, and walked boldly on board the boat, for he knew she was tenantless except that there was a watchman, who always turned in and slept like a graven image. He untied the skiff at the stern, slipped into it, and was soon rowing cautiously upstream. When he had pulled a mile above the village, he started quartering across and bent himself stoutly to his work. He hit the landing on the other side neatly, for this was a familiar bit of work to him. He was moved to capture the skiff, arguing that it might be considered a ship and therefore legitimate prey for a pirate, but he knew a thorough search would be made for it and that might end in revelations. So he stepped ashore and entered the woods. He sat down and took a long rest, torturing himself meanwhile to keep awake, and then started warily down the home-stretch. The night was far spent. It was broad daylight before he found himself fairly abreast the island bar. He rested again until the sun was well up and gilding the great river with its splendor, and then he plunged into the stream. A little later he paused, dripping, upon the threshold of the camp, and heard Joe say: "No, Tom's true-blue, Huck, and he'll come back. He won't desert. He knows that would be a disgrace to a pirate, and Tom's too proud for that sort of thing. He's up to something or other. Now I wonder what?" "Well, the things is ours, anyway, ain't they?" "Pretty near, but not yet, Huck. The writing says they are if he ain't back here to breakfast." "Which he is!" exclaimed Tom, with fine dramatic effect, stepping grandly into camp. A sumptuous breakfast of bacon and fish was shortly provided, and as the boys set to work upon it, Tom recounted (and adorned) his adventures. They were a vain and boastful company of heroes when the tale was done. Then Tom hid himself away in a shady nook to sleep till noon, and the other pirates got ready to fish and explore. CHAPTER XVI AFTER dinner all the gang turned out to hunt for turtle eggs on the bar. They went about poking sticks into the sand, and when they found a soft place they went down on their knees and dug with their hands. Sometimes they would take fifty or sixty eggs out of one hole. They were perfectly round white things a trifle smaller than an English walnut. They had a famous fried-egg feast that night, and another on Friday morning. After breakfast they went whooping and prancing out on the bar, and chased each other round and round, shedding clothes as they went, until they were naked, and then continued the frolic far away up the shoal water of the bar, against the stiff current, which latter tripped their legs from under them from time to time and greatly increased the fun. And now and then they stooped in a group and splashed water in each other's faces with their palms, gradually approaching each other, with averted faces to avoid the strangling sprays, and finally gripping and struggling till the best man ducked his neighbor, and then they all went under in a tangle of white legs and arms and came up blowing, sputtering, laughing, and gasping for breath at one and the same time. When they were well exhausted, they would run out and sprawl on the dry, hot sand, and lie there and cover themselves up with it, and by and by break for the water again and go through the original performance once more. Finally it occurred to them that their naked skin represented flesh-colored "tights" very fairly; so they drew a ring in the sand and had a circus--with three clowns in it, for none would yield this proudest post to his neighbor. Next they got their marbles and played "knucks" and "ring-taw" and "keeps" till that amusement grew stale. Then Joe and Huck had another swim, but Tom would not venture, because he found that in kicking off his trousers he had kicked his string of rattlesnake rattles off his ankle, and he wondered how he had escaped cramp so long without the protection of this mysterious charm. He did not venture again until he had found it, and by that time the other boys were tired and ready to rest. They gradually wandered apart, dropped into the "dumps," and fell to gazing longingly across the wide river to where the village lay drowsing in the sun. Tom found himself writing "BECKY" in the sand with his big toe; he scratched it out, and was angry with himself for his weakness. But he wrote it again, nevertheless; he could not help it. He erased it once more and then took himself out of temptation by driving the other boys together and joining them. But Joe's spirits had gone down almost beyond resurrection. He was so homesick that he could hardly endure the misery of it. The tears lay very near the surface. Huck was melancholy, too. Tom was downhearted, but tried hard not to show it. He had a secret which he was not ready to tell, yet, but if this mutinous depression was not broken up soon, he would have to bring it out. He said, with a great show of cheerfulness: "I bet there's been pirates on this island before, boys. We'll explore it again. They've hid treasures here somewhere. How'd you feel to light on a rotten chest full of gold and silver--hey?" But it roused only faint enthusiasm, which faded out, with no reply. Tom tried one or two other seductions; but they failed, too. It was discouraging work. Joe sat poking up the sand with a stick and looking very gloomy. Finally he said: "Oh, boys, let's give it up. I want to go home. It's so lonesome." "Oh no, Joe, you'll feel better by and by," said Tom. "Just think of the fishing that's here." "I don't care for fishing. I want to go home." "But, Joe, there ain't such another swimming-place anywhere." "Swimming's no good. I don't seem to care for it, somehow, when there ain't anybody to say I sha'n't go in. I mean to go home." "Oh, shucks! Baby! You want to see your mother, I reckon." "Yes, I DO want to see my mother--and you would, too, if you had one. I ain't any more baby than you are." And Joe snuffled a little. "Well, we'll let the cry-baby go home to his mother, won't we, Huck? Poor thing--does it want to see its mother? And so it shall. You like it here, don't you, Huck? We'll stay, won't we?" Huck said, "Y-e-s"--without any heart in it. "I'll never speak to you again as long as I live," said Joe, rising. "There now!" And he moved moodily away and began to dress himself. "Who cares!" said Tom. "Nobody wants you to. Go 'long home and get laughed at. Oh, you're a nice pirate. Huck and me ain't cry-babies. We'll stay, won't we, Huck? Let him go if he wants to. I reckon we can get along without him, per'aps." But Tom was uneasy, nevertheless, and was alarmed to see Joe go sullenly on with his dressing. And then it was discomforting to see Huck eying Joe's preparations so wistfully, and keeping up such an ominous silence. Presently, without a parting word, Joe began to wade off toward the Illinois shore. Tom's heart began to sink. He glanced at Huck. Huck could not bear the look, and dropped his eyes. Then he said: "I want to go, too, Tom. It was getting so lonesome anyway, and now it'll be worse. Let's us go, too, Tom." "I won't! You can all go, if you want to. I mean to stay." "Tom, I better go." "Well, go 'long--who's hendering you." Huck began to pick up his scattered clothes. He said: "Tom, I wisht you'd come, too. Now you think it over. We'll wait for you when we get to shore." "Well, you'll wait a blame long time, that's all." Huck started sorrowfully away, and Tom stood looking after him, with a strong desire tugging at his heart to yield his pride and go along too. He hoped the boys would stop, but they still waded slowly on. It suddenly dawned on Tom that it was become very lonely and still. He made one final struggle with his pride, and then darted after his comrades, yelling: "Wait! Wait! I want to tell you something!" They presently stopped and turned around. When he got to where they were, he began unfolding his secret, and they listened moodily till at last they saw the "point" he was driving at, and then they set up a war-whoop of applause and said it was "splendid!" and said if he had told them at first, they wouldn't have started away. He made a plausible excuse; but his real reason had been the fear that not even the secret would keep them with him any very great length of time, and so he had meant to hold it in reserve as a last seduction. The lads came gayly back and went at their sports again with a will, chattering all the time about Tom's stupendous plan and admiring the genius of it. After a dainty egg and fish dinner, Tom said he wanted to learn to smoke, now. Joe caught at the idea and said he would like to try, too. So Huck made pipes and filled them. These novices had never smoked anything before but cigars made of grape-vine, and they "bit" the tongue, and were not considered manly anyway. Now they stretched themselves out on their elbows and began to puff, charily, and with slender confidence. The smoke had an unpleasant taste, and they gagged a little, but Tom said: "Why, it's just as easy! If I'd a knowed this was all, I'd a learnt long ago." "So would I," said Joe. "It's just nothing." "Why, many a time I've looked at people smoking, and thought well I wish I could do that; but I never thought I could," said Tom. "That's just the way with me, hain't it, Huck? You've heard me talk just that way--haven't you, Huck? I'll leave it to Huck if I haven't." "Yes--heaps of times," said Huck. "Well, I have too," said Tom; "oh, hundreds of times. Once down by the slaughter-house. Don't you remember, Huck? Bob Tanner was there, and Johnny Miller, and Jeff Thatcher, when I said it. Don't you remember, Huck, 'bout me saying that?" "Yes, that's so," said Huck. "That was the day after I lost a white alley. No, 'twas the day before." "There--I told you so," said Tom. "Huck recollects it." "I bleeve I could smoke this pipe all day," said Joe. "I don't feel sick." "Neither do I," said Tom. "I could smoke it all day. But I bet you Jeff Thatcher couldn't." "Jeff Thatcher! Why, he'd keel over just with two draws. Just let him try it once. HE'D see!" "I bet he would. And Johnny Miller--I wish could see Johnny Miller tackle it once." "Oh, don't I!" said Joe. "Why, I bet you Johnny Miller couldn't any more do this than nothing. Just one little snifter would fetch HIM." "'Deed it would, Joe. Say--I wish the boys could see us now." "So do I." "Say--boys, don't say anything about it, and some time when they're around, I'll come up to you and say, 'Joe, got a pipe? I want a smoke.' And you'll say, kind of careless like, as if it warn't anything, you'll say, 'Yes, I got my OLD pipe, and another one, but my tobacker ain't very good.' And I'll say, 'Oh, that's all right, if it's STRONG enough.' And then you'll out with the pipes, and we'll light up just as ca'm, and then just see 'em look!" "By jings, that'll be gay, Tom! I wish it was NOW!" "So do I! And when we tell 'em we learned when we was off pirating, won't they wish they'd been along?" "Oh, I reckon not! I'll just BET they will!" So the talk ran on. But presently it began to flag a trifle, and grow disjointed. The silences widened; the expectoration marvellously increased. Every pore inside the boys' cheeks became a spouting fountain; they could scarcely bail out the cellars under their tongues fast enough to prevent an inundation; little overflowings down their throats occurred in spite of all they could do, and sudden retchings followed every time. Both boys were looking very pale and miserable, now. Joe's pipe dropped from his nerveless fingers. Tom's followed. Both fountains were going furiously and both pumps bailing with might and main. Joe said feebly: "I've lost my knife. I reckon I better go and find it." Tom said, with quivering lips and halting utterance: "I'll help you. You go over that way and I'll hunt around by the spring. No, you needn't come, Huck--we can find it." So Huck sat down again, and waited an hour. Then he found it lonesome, and went to find his comrades. They were wide apart in the woods, both very pale, both fast asleep. But something informed him that if they had had any trouble they had got rid of it. They were not talkative at supper that night. They had a humble look, and when Huck prepared his pipe after the meal and was going to prepare theirs, they said no, they were not feeling very well--something they ate at dinner had disagreed with them. About midnight Joe awoke, and called the boys. There was a brooding oppressiveness in the air that seemed to bode something. The boys huddled themselves together and sought the friendly companionship of the fire, though the dull dead heat of the breathless atmosphere was stifling. They sat still, intent and waiting. The solemn hush continued. Beyond the light of the fire everything was swallowed up in the blackness of darkness. Presently there came a quivering glow that vaguely revealed the foliage for a moment and then vanished. By and by another came, a little stronger. Then another. Then a faint moan came sighing through the branches of the forest and the boys felt a fleeting breath upon their cheeks, and shuddered with the fancy that the Spirit of the Night had gone by. There was a pause. Now a weird flash turned night into day and showed every little grass-blade, separate and distinct, that grew about their feet. And it showed three white, startled faces, too. A deep peal of thunder went rolling and tumbling down the heavens and lost itself in sullen rumblings in the distance. A sweep of chilly air passed by, rustling all the leaves and snowing the flaky ashes broadcast about the fire. Another fierce glare lit up the forest and an instant crash followed that seemed to rend the tree-tops right over the boys' heads. They clung together in terror, in the thick gloom that followed. A few big rain-drops fell pattering upon the leaves. "Quick! boys, go for the tent!" exclaimed Tom. They sprang away, stumbling over roots and among vines in the dark, no two plunging in the same direction. A furious blast roared through the trees, making everything sing as it went. One blinding flash after another came, and peal on peal of deafening thunder. And now a drenching rain poured down and the rising hurricane drove it in sheets along the ground. The boys cried out to each other, but the roaring wind and the booming thunder-blasts drowned their voices utterly. However, one by one they straggled in at last and took shelter under the tent, cold, scared, and streaming with water; but to have company in misery seemed something to be grateful for. They could not talk, the old sail flapped so furiously, even if the other noises would have allowed them. The tempest rose higher and higher, and presently the sail tore loose from its fastenings and went winging away on the blast. The boys seized each others' hands and fled, with many tumblings and bruises, to the shelter of a great oak that stood upon the river-bank. Now the battle was at its highest. Under the ceaseless conflagration of lightning that flamed in the skies, everything below stood out in clean-cut and shadowless distinctness: the bending trees, the billowy river, white with foam, the driving spray of spume-flakes, the dim outlines of the high bluffs on the other side, glimpsed through the drifting cloud-rack and the slanting veil of rain. Every little while some giant tree yielded the fight and fell crashing through the younger growth; and the unflagging thunder-peals came now in ear-splitting explosive bursts, keen and sharp, and unspeakably appalling. The storm culminated in one matchless effort that seemed likely to tear the island to pieces, burn it up, drown it to the tree-tops, blow it away, and deafen every creature in it, all at one and the same moment. It was a wild night for homeless young heads to be out in. But at last the battle was done, and the forces retired with weaker and weaker threatenings and grumblings, and peace resumed her sway. The boys went back to camp, a good deal awed; but they found there was still something to be thankful for, because the great sycamore, the shelter of their beds, was a ruin, now, blasted by the lightnings, and they were not under it when the catastrophe happened. Everything in camp was drenched, the camp-fire as well; for they were but heedless lads, like their generation, and had made no provision against rain. Here was matter for dismay, for they were soaked through and chilled. They were eloquent in their distress; but they presently discovered that the fire had eaten so far up under the great log it had been built against (where it curved upward and separated itself from the ground), that a handbreadth or so of it had escaped wetting; so they patiently wrought until, with shreds and bark gathered from the under sides of sheltered logs, they coaxed the fire to burn again. Then they piled on great dead boughs till they had a roaring furnace, and were glad-hearted once more. They dried their boiled ham and had a feast, and after that they sat by the fire and expanded and glorified their midnight adventure until morning, for there was not a dry spot to sleep on, anywhere around. As the sun began to steal in upon the boys, drowsiness came over them, and they went out on the sandbar and lay down to sleep. They got scorched out by and by, and drearily set about getting breakfast. After the meal they felt rusty, and stiff-jointed, and a little homesick once more. Tom saw the signs, and fell to cheering up the pirates as well as he could. But they cared nothing for marbles, or circus, or swimming, or anything. He reminded them of the imposing secret, and raised a ray of cheer. While it lasted, he got them interested in a new device. This was to knock off being pirates, for a while, and be Indians for a change. They were attracted by this idea; so it was not long before they were stripped, and striped from head to heel with black mud, like so many zebras--all of them chiefs, of course--and then they went tearing through the woods to attack an English settlement. By and by they separated into three hostile tribes, and darted upon each other from ambush with dreadful war-whoops, and killed and scalped each other by thousands. It was a gory day. Consequently it was an extremely satisfactory one. They assembled in camp toward supper-time, hungry and happy; but now a difficulty arose--hostile Indians could not break the bread of hospitality together without first making peace, and this was a simple impossibility without smoking a pipe of peace. There was no other process that ever they had heard of. Two of the savages almost wished they had remained pirates. However, there was no other way; so with such show of cheerfulness as they could muster they called for the pipe and took their whiff as it passed, in due form. And behold, they were glad they had gone into savagery, for they had gained something; they found that they could now smoke a little without having to go and hunt for a lost knife; they did not get sick enough to be seriously uncomfortable. They were not likely to fool away this high promise for lack of effort. No, they practised cautiously, after supper, with right fair success, and so they spent a jubilant evening. They were prouder and happier in their new acquirement than they would have been in the scalping and skinning of the Six Nations. We will leave them to smoke and chatter and brag, since we have no further use for them at present. CHAPTER XVII BUT there was no hilarity in the little town that same tranquil Saturday afternoon. The Harpers, and Aunt Polly's family, were being put into mourning, with great grief and many tears. An unusual quiet possessed the village, although it was ordinarily quiet enough, in all conscience. The villagers conducted their concerns with an absent air, and talked little; but they sighed often. The Saturday holiday seemed a burden to the children. They had no heart in their sports, and gradually gave them up. In the afternoon Becky Thatcher found herself moping about the deserted schoolhouse yard, and feeling very melancholy. But she found nothing there to comfort her. She soliloquized: "Oh, if I only had a brass andiron-knob again! But I haven't got anything now to remember him by." And she choked back a little sob. Presently she stopped, and said to herself: "It was right here. Oh, if it was to do over again, I wouldn't say that--I wouldn't say it for the whole world. But he's gone now; I'll never, never, never see him any more." This thought broke her down, and she wandered away, with tears rolling down her cheeks. Then quite a group of boys and girls--playmates of Tom's and Joe's--came by, and stood looking over the paling fence and talking in reverent tones of how Tom did so-and-so the last time they saw him, and how Joe said this and that small trifle (pregnant with awful prophecy, as they could easily see now!)--and each speaker pointed out the exact spot where the lost lads stood at the time, and then added something like "and I was a-standing just so--just as I am now, and as if you was him--I was as close as that--and he smiled, just this way--and then something seemed to go all over me, like--awful, you know--and I never thought what it meant, of course, but I can see now!" Then there was a dispute about who saw the dead boys last in life, and many claimed that dismal distinction, and offered evidences, more or less tampered with by the witness; and when it was ultimately decided who DID see the departed last, and exchanged the last words with them, the lucky parties took upon themselves a sort of sacred importance, and were gaped at and envied by all the rest. One poor chap, who had no other grandeur to offer, said with tolerably manifest pride in the remembrance: "Well, Tom Sawyer he licked me once." But that bid for glory was a failure. Most of the boys could say that, and so that cheapened the distinction too much. The group loitered away, still recalling memories of the lost heroes, in awed voices. When the Sunday-school hour was finished, the next morning, the bell began to toll, instead of ringing in the usual way. It was a very still Sabbath, and the mournful sound seemed in keeping with the musing hush that lay upon nature. The villagers began to gather, loitering a moment in the vestibule to converse in whispers about the sad event. But there was no whispering in the house; only the funereal rustling of dresses as the women gathered to their seats disturbed the silence there. None could remember when the little church had been so full before. There was finally a waiting pause, an expectant dumbness, and then Aunt Polly entered, followed by Sid and Mary, and they by the Harper family, all in deep black, and the whole congregation, the old minister as well, rose reverently and stood until the mourners were seated in the front pew. There was another communing silence, broken at intervals by muffled sobs, and then the minister spread his hands abroad and prayed. A moving hymn was sung, and the text followed: "I am the Resurrection and the Life." As the service proceeded, the clergyman drew such pictures of the graces, the winning ways, and the rare promise of the lost lads that every soul there, thinking he recognized these pictures, felt a pang in remembering that he had persistently blinded himself to them always before, and had as persistently seen only faults and flaws in the poor boys. The minister related many a touching incident in the lives of the departed, too, which illustrated their sweet, generous natures, and the people could easily see, now, how noble and beautiful those episodes were, and remembered with grief that at the time they occurred they had seemed rank rascalities, well deserving of the cowhide. The congregation became more and more moved, as the pathetic tale went on, till at last the whole company broke down and joined the weeping mourners in a chorus of anguished sobs, the preacher himself giving way to his feelings, and crying in the pulpit. There was a rustle in the gallery, which nobody noticed; a moment later the church door creaked; the minister raised his streaming eyes above his handkerchief, and stood transfixed! First one and then another pair of eyes followed the minister's, and then almost with one impulse the congregation rose and stared while the three dead boys came marching up the aisle, Tom in the lead, Joe next, and Huck, a ruin of drooping rags, sneaking sheepishly in the rear! They had been hid in the unused gallery listening to their own funeral sermon! Aunt Polly, Mary, and the Harpers threw themselves upon their restored ones, smothered them with kisses and poured out thanksgivings, while poor Huck stood abashed and uncomfortable, not knowing exactly what to do or where to hide from so many unwelcoming eyes. He wavered, and started to slink away, but Tom seized him and said: "Aunt Polly, it ain't fair. Somebody's got to be glad to see Huck." "And so they shall. I'm glad to see him, poor motherless thing!" And the loving attentions Aunt Polly lavished upon him were the one thing capable of making him more uncomfortable than he was before. Suddenly the minister shouted at the top of his voice: "Praise God from whom all blessings flow--SING!--and put your hearts in it!" And they did. Old Hundred swelled up with a triumphant burst, and while it shook the rafters Tom Sawyer the Pirate looked around upon the envying juveniles about him and confessed in his heart that this was the proudest moment of his life. As the "sold" congregation trooped out they said they would almost be willing to be made ridiculous again to hear Old Hundred sung like that once more. Tom got more cuffs and kisses that day--according to Aunt Polly's varying moods--than he had earned before in a year; and he hardly knew which expressed the most gratefulness to God and affection for himself. CHAPTER XVIII THAT was Tom's great secret--the scheme to return home with his brother pirates and attend their own funerals. They had paddled over to the Missouri shore on a log, at dusk on Saturday, landing five or six miles below the village; they had slept in the woods at the edge of the town till nearly daylight, and had then crept through back lanes and alleys and finished their sleep in the gallery of the church among a chaos of invalided benches. At breakfast, Monday morning, Aunt Polly and Mary were very loving to Tom, and very attentive to his wants. There was an unusual amount of talk. In the course of it Aunt Polly said: "Well, I don't say it wasn't a fine joke, Tom, to keep everybody suffering 'most a week so you boys had a good time, but it is a pity you could be so hard-hearted as to let me suffer so. If you could come over on a log to go to your funeral, you could have come over and give me a hint some way that you warn't dead, but only run off." "Yes, you could have done that, Tom," said Mary; "and I believe you would if you had thought of it." "Would you, Tom?" said Aunt Polly, her face lighting wistfully. "Say, now, would you, if you'd thought of it?" "I--well, I don't know. 'Twould 'a' spoiled everything." "Tom, I hoped you loved me that much," said Aunt Polly, with a grieved tone that discomforted the boy. "It would have been something if you'd cared enough to THINK of it, even if you didn't DO it." "Now, auntie, that ain't any harm," pleaded Mary; "it's only Tom's giddy way--he is always in such a rush that he never thinks of anything." "More's the pity. Sid would have thought. And Sid would have come and DONE it, too. Tom, you'll look back, some day, when it's too late, and wish you'd cared a little more for me when it would have cost you so little." "Now, auntie, you know I do care for you," said Tom. "I'd know it better if you acted more like it." "I wish now I'd thought," said Tom, with a repentant tone; "but I dreamt about you, anyway. That's something, ain't it?" "It ain't much--a cat does that much--but it's better than nothing. What did you dream?" "Why, Wednesday night I dreamt that you was sitting over there by the bed, and Sid was sitting by the woodbox, and Mary next to him." "Well, so we did. So we always do. I'm glad your dreams could take even that much trouble about us." "And I dreamt that Joe Harper's mother was here." "Why, she was here! Did you dream any more?" "Oh, lots. But it's so dim, now." "Well, try to recollect--can't you?" "Somehow it seems to me that the wind--the wind blowed the--the--" "Try harder, Tom! The wind did blow something. Come!" Tom pressed his fingers on his forehead an anxious minute, and then said: "I've got it now! I've got it now! It blowed the candle!" "Mercy on us! Go on, Tom--go on!" "And it seems to me that you said, 'Why, I believe that that door--'" "Go ON, Tom!" "Just let me study a moment--just a moment. Oh, yes--you said you believed the door was open." "As I'm sitting here, I did! Didn't I, Mary! Go on!" "And then--and then--well I won't be certain, but it seems like as if you made Sid go and--and--" "Well? Well? What did I make him do, Tom? What did I make him do?" "You made him--you--Oh, you made him shut it." "Well, for the land's sake! I never heard the beat of that in all my days! Don't tell ME there ain't anything in dreams, any more. Sereny Harper shall know of this before I'm an hour older. I'd like to see her get around THIS with her rubbage 'bout superstition. Go on, Tom!" "Oh, it's all getting just as bright as day, now. Next you said I warn't BAD, only mischeevous and harum-scarum, and not any more responsible than--than--I think it was a colt, or something." "And so it was! Well, goodness gracious! Go on, Tom!" "And then you began to cry." "So I did. So I did. Not the first time, neither. And then--" "Then Mrs. Harper she began to cry, and said Joe was just the same, and she wished she hadn't whipped him for taking cream when she'd throwed it out her own self--" "Tom! The sperrit was upon you! You was a prophesying--that's what you was doing! Land alive, go on, Tom!" "Then Sid he said--he said--" "I don't think I said anything," said Sid. "Yes you did, Sid," said Mary. "Shut your heads and let Tom go on! What did he say, Tom?" "He said--I THINK he said he hoped I was better off where I was gone to, but if I'd been better sometimes--" "THERE, d'you hear that! It was his very words!" "And you shut him up sharp." "I lay I did! There must 'a' been an angel there. There WAS an angel there, somewheres!" "And Mrs. Harper told about Joe scaring her with a firecracker, and you told about Peter and the Painkiller--" "Just as true as I live!" "And then there was a whole lot of talk 'bout dragging the river for us, and 'bout having the funeral Sunday, and then you and old Miss Harper hugged and cried, and she went." "It happened just so! It happened just so, as sure as I'm a-sitting in these very tracks. Tom, you couldn't told it more like if you'd 'a' seen it! And then what? Go on, Tom!" "Then I thought you prayed for me--and I could see you and hear every word you said. And you went to bed, and I was so sorry that I took and wrote on a piece of sycamore bark, 'We ain't dead--we are only off being pirates,' and put it on the table by the candle; and then you looked so good, laying there asleep, that I thought I went and leaned over and kissed you on the lips." "Did you, Tom, DID you! I just forgive you everything for that!" And she seized the boy in a crushing embrace that made him feel like the guiltiest of villains. "It was very kind, even though it was only a--dream," Sid soliloquized just audibly. "Shut up, Sid! A body does just the same in a dream as he'd do if he was awake. Here's a big Milum apple I've been saving for you, Tom, if you was ever found again--now go 'long to school. I'm thankful to the good God and Father of us all I've got you back, that's long-suffering and merciful to them that believe on Him and keep His word, though goodness knows I'm unworthy of it, but if only the worthy ones got His blessings and had His hand to help them over the rough places, there's few enough would smile here or ever enter into His rest when the long night comes. Go 'long Sid, Mary, Tom--take yourselves off--you've hendered me long enough." The children left for school, and the old lady to call on Mrs. Harper and vanquish her realism with Tom's marvellous dream. Sid had better judgment than to utter the thought that was in his mind as he left the house. It was this: "Pretty thin--as long a dream as that, without any mistakes in it!" What a hero Tom was become, now! He did not go skipping and prancing, but moved with a dignified swagger as became a pirate who felt that the public eye was on him. And indeed it was; he tried not to seem to see the looks or hear the remarks as he passed along, but they were food and drink to him. Smaller boys than himself flocked at his heels, as proud to be seen with him, and tolerated by him, as if he had been the drummer at the head of a procession or the elephant leading a menagerie into town. Boys of his own size pretended not to know he had been away at all; but they were consuming with envy, nevertheless. They would have given anything to have that swarthy suntanned skin of his, and his glittering notoriety; and Tom would not have parted with either for a circus. At school the children made so much of him and of Joe, and delivered such eloquent admiration from their eyes, that the two heroes were not long in becoming insufferably "stuck-up." They began to tell their adventures to hungry listeners--but they only began; it was not a thing likely to have an end, with imaginations like theirs to furnish material. And finally, when they got out their pipes and went serenely puffing around, the very summit of glory was reached. Tom decided that he could be independent of Becky Thatcher now. Glory was sufficient. He would live for glory. Now that he was distinguished, maybe she would be wanting to "make up." Well, let her--she should see that he could be as indifferent as some other people. Presently she arrived. Tom pretended not to see her. He moved away and joined a group of boys and girls and began to talk. Soon he observed that she was tripping gayly back and forth with flushed face and dancing eyes, pretending to be busy chasing schoolmates, and screaming with laughter when she made a capture; but he noticed that she always made her captures in his vicinity, and that she seemed to cast a conscious eye in his direction at such times, too. It gratified all the vicious vanity that was in him; and so, instead of winning him, it only "set him up" the more and made him the more diligent to avoid betraying that he knew she was about. Presently she gave over skylarking, and moved irresolutely about, sighing once or twice and glancing furtively and wistfully toward Tom. Then she observed that now Tom was talking more particularly to Amy Lawrence than to any one else. She felt a sharp pang and grew disturbed and uneasy at once. She tried to go away, but her feet were treacherous, and carried her to the group instead. She said to a girl almost at Tom's elbow--with sham vivacity: "Why, Mary Austin! you bad girl, why didn't you come to Sunday-school?" "I did come--didn't you see me?" "Why, no! Did you? Where did you sit?" "I was in Miss Peters' class, where I always go. I saw YOU." "Did you? Why, it's funny I didn't see you. I wanted to tell you about the picnic." "Oh, that's jolly. Who's going to give it?" "My ma's going to let me have one." "Oh, goody; I hope she'll let ME come." "Well, she will. The picnic's for me. She'll let anybody come that I want, and I want you." "That's ever so nice. When is it going to be?" "By and by. Maybe about vacation." "Oh, won't it be fun! You going to have all the girls and boys?" "Yes, every one that's friends to me--or wants to be"; and she glanced ever so furtively at Tom, but he talked right along to Amy Lawrence about the terrible storm on the island, and how the lightning tore the great sycamore tree "all to flinders" while he was "standing within three feet of it." "Oh, may I come?" said Grace Miller. "Yes." "And me?" said Sally Rogers. "Yes." "And me, too?" said Susy Harper. "And Joe?" "Yes." And so on, with clapping of joyful hands till all the group had begged for invitations but Tom and Amy. Then Tom turned coolly away, still talking, and took Amy with him. Becky's lips trembled and the tears came to her eyes; she hid these signs with a forced gayety and went on chattering, but the life had gone out of the picnic, now, and out of everything else; she got away as soon as she could and hid herself and had what her sex call "a good cry." Then she sat moody, with wounded pride, till the bell rang. She roused up, now, with a vindictive cast in her eye, and gave her plaited tails a shake and said she knew what SHE'D do. At recess Tom continued his flirtation with Amy with jubilant self-satisfaction. And he kept drifting about to find Becky and lacerate her with the performance. At last he spied her, but there was a sudden falling of his mercury. She was sitting cosily on a little bench behind the schoolhouse looking at a picture-book with Alfred Temple--and so absorbed were they, and their heads so close together over the book, that they did not seem to be conscious of anything in the world besides. Jealousy ran red-hot through Tom's veins. He began to hate himself for throwing away the chance Becky had offered for a reconciliation. He called himself a fool, and all the hard names he could think of. He wanted to cry with vexation. Amy chatted happily along, as they walked, for her heart was singing, but Tom's tongue had lost its function. He did not hear what Amy was saying, and whenever she paused expectantly he could only stammer an awkward assent, which was as often misplaced as otherwise. He kept drifting to the rear of the schoolhouse, again and again, to sear his eyeballs with the hateful spectacle there. He could not help it. And it maddened him to see, as he thought he saw, that Becky Thatcher never once suspected that he was even in the land of the living. But she did see, nevertheless; and she knew she was winning her fight, too, and was glad to see him suffer as she had suffered. Amy's happy prattle became intolerable. Tom hinted at things he had to attend to; things that must be done; and time was fleeting. But in vain--the girl chirped on. Tom thought, "Oh, hang her, ain't I ever going to get rid of her?" At last he must be attending to those things--and she said artlessly that she would be "around" when school let out. And he hastened away, hating her for it. "Any other boy!" Tom thought, grating his teeth. "Any boy in the whole town but that Saint Louis smarty that thinks he dresses so fine and is aristocracy! Oh, all right, I licked you the first day you ever saw this town, mister, and I'll lick you again! You just wait till I catch you out! I'll just take and--" And he went through the motions of thrashing an imaginary boy --pummelling the air, and kicking and gouging. "Oh, you do, do you? You holler 'nough, do you? Now, then, let that learn you!" And so the imaginary flogging was finished to his satisfaction. Tom fled home at noon. His conscience could not endure any more of Amy's grateful happiness, and his jealousy could bear no more of the other distress. Becky resumed her picture inspections with Alfred, but as the minutes dragged along and no Tom came to suffer, her triumph began to cloud and she lost interest; gravity and absent-mindedness followed, and then melancholy; two or three times she pricked up her ear at a footstep, but it was a false hope; no Tom came. At last she grew entirely miserable and wished she hadn't carried it so far. When poor Alfred, seeing that he was losing her, he did not know how, kept exclaiming: "Oh, here's a jolly one! look at this!" she lost patience at last, and said, "Oh, don't bother me! I don't care for them!" and burst into tears, and got up and walked away. Alfred dropped alongside and was going to try to comfort her, but she said: "Go away and leave me alone, can't you! I hate you!" So the boy halted, wondering what he could have done--for she had said she would look at pictures all through the nooning--and she walked on, crying. Then Alfred went musing into the deserted schoolhouse. He was humiliated and angry. He easily guessed his way to the truth--the girl had simply made a convenience of him to vent her spite upon Tom Sawyer. He was far from hating Tom the less when this thought occurred to him. He wished there was some way to get that boy into trouble without much risk to himself. Tom's spelling-book fell under his eye. Here was his opportunity. He gratefully opened to the lesson for the afternoon and poured ink upon the page. Becky, glancing in at a window behind him at the moment, saw the act, and moved on, without discovering herself. She started homeward, now, intending to find Tom and tell him; Tom would be thankful and their troubles would be healed. Before she was half way home, however, she had changed her mind. The thought of Tom's treatment of her when she was talking about her picnic came scorching back and filled her with shame. She resolved to let him get whipped on the damaged spelling-book's account, and to hate him forever, into the bargain. CHAPTER XIX TOM arrived at home in a dreary mood, and the first thing his aunt said to him showed him that he had brought his sorrows to an unpromising market: "Tom, I've a notion to skin you alive!" "Auntie, what have I done?" "Well, you've done enough. Here I go over to Sereny Harper, like an old softy, expecting I'm going to make her believe all that rubbage about that dream, when lo and behold you she'd found out from Joe that you was over here and heard all the talk we had that night. Tom, I don't know what is to become of a boy that will act like that. It makes me feel so bad to think you could let me go to Sereny Harper and make such a fool of myself and never say a word." This was a new aspect of the thing. His smartness of the morning had seemed to Tom a good joke before, and very ingenious. It merely looked mean and shabby now. He hung his head and could not think of anything to say for a moment. Then he said: "Auntie, I wish I hadn't done it--but I didn't think." "Oh, child, you never think. You never think of anything but your own selfishness. You could think to come all the way over here from Jackson's Island in the night to laugh at our troubles, and you could think to fool me with a lie about a dream; but you couldn't ever think to pity us and save us from sorrow." "Auntie, I know now it was mean, but I didn't mean to be mean. I didn't, honest. And besides, I didn't come over here to laugh at you that night." "What did you come for, then?" "It was to tell you not to be uneasy about us, because we hadn't got drownded." "Tom, Tom, I would be the thankfullest soul in this world if I could believe you ever had as good a thought as that, but you know you never did--and I know it, Tom." "Indeed and 'deed I did, auntie--I wish I may never stir if I didn't." "Oh, Tom, don't lie--don't do it. It only makes things a hundred times worse." "It ain't a lie, auntie; it's the truth. I wanted to keep you from grieving--that was all that made me come." "I'd give the whole world to believe that--it would cover up a power of sins, Tom. I'd 'most be glad you'd run off and acted so bad. But it ain't reasonable; because, why didn't you tell me, child?" "Why, you see, when you got to talking about the funeral, I just got all full of the idea of our coming and hiding in the church, and I couldn't somehow bear to spoil it. So I just put the bark back in my pocket and kept mum." "What bark?" "The bark I had wrote on to tell you we'd gone pirating. I wish, now, you'd waked up when I kissed you--I do, honest." The hard lines in his aunt's face relaxed and a sudden tenderness dawned in her eyes. "DID you kiss me, Tom?" "Why, yes, I did." "Are you sure you did, Tom?" "Why, yes, I did, auntie--certain sure." "What did you kiss me for, Tom?" "Because I loved you so, and you laid there moaning and I was so sorry." The words sounded like truth. The old lady could not hide a tremor in her voice when she said: "Kiss me again, Tom!--and be off with you to school, now, and don't bother me any more." The moment he was gone, she ran to a closet and got out the ruin of a jacket which Tom had gone pirating in. Then she stopped, with it in her hand, and said to herself: "No, I don't dare. Poor boy, I reckon he's lied about it--but it's a blessed, blessed lie, there's such a comfort come from it. I hope the Lord--I KNOW the Lord will forgive him, because it was such goodheartedness in him to tell it. But I don't want to find out it's a lie. I won't look." She put the jacket away, and stood by musing a minute. Twice she put out her hand to take the garment again, and twice she refrained. Once more she ventured, and this time she fortified herself with the thought: "It's a good lie--it's a good lie--I won't let it grieve me." So she sought the jacket pocket. A moment later she was reading Tom's piece of bark through flowing tears and saying: "I could forgive the boy, now, if he'd committed a million sins!" CHAPTER XX THERE was something about Aunt Polly's manner, when she kissed Tom, that swept away his low spirits and made him lighthearted and happy again. He started to school and had the luck of coming upon Becky Thatcher at the head of Meadow Lane. His mood always determined his manner. Without a moment's hesitation he ran to her and said: "I acted mighty mean to-day, Becky, and I'm so sorry. I won't ever, ever do that way again, as long as ever I live--please make up, won't you?" The girl stopped and looked him scornfully in the face: "I'll thank you to keep yourself TO yourself, Mr. Thomas Sawyer. I'll never speak to you again." She tossed her head and passed on. Tom was so stunned that he had not even presence of mind enough to say "Who cares, Miss Smarty?" until the right time to say it had gone by. So he said nothing. But he was in a fine rage, nevertheless. He moped into the schoolyard wishing she were a boy, and imagining how he would trounce her if she were. He presently encountered her and delivered a stinging remark as he passed. She hurled one in return, and the angry breach was complete. It seemed to Becky, in her hot resentment, that she could hardly wait for school to "take in," she was so impatient to see Tom flogged for the injured spelling-book. If she had had any lingering notion of exposing Alfred Temple, Tom's offensive fling had driven it entirely away. Poor girl, she did not know how fast she was nearing trouble herself. The master, Mr. Dobbins, had reached middle age with an unsatisfied ambition. The darling of his desires was, to be a doctor, but poverty had decreed that he should be nothing higher than a village schoolmaster. Every day he took a mysterious book out of his desk and absorbed himself in it at times when no classes were reciting. He kept that book under lock and key. There was not an urchin in school but was perishing to have a glimpse of it, but the chance never came. Every boy and girl had a theory about the nature of that book; but no two theories were alike, and there was no way of getting at the facts in the case. Now, as Becky was passing by the desk, which stood near the door, she noticed that the key was in the lock! It was a precious moment. She glanced around; found herself alone, and the next instant she had the book in her hands. The title-page--Professor Somebody's ANATOMY--carried no information to her mind; so she began to turn the leaves. She came at once upon a handsomely engraved and colored frontispiece--a human figure, stark naked. At that moment a shadow fell on the page and Tom Sawyer stepped in at the door and caught a glimpse of the picture. Becky snatched at the book to close it, and had the hard luck to tear the pictured page half down the middle. She thrust the volume into the desk, turned the key, and burst out crying with shame and vexation. "Tom Sawyer, you are just as mean as you can be, to sneak up on a person and look at what they're looking at." "How could I know you was looking at anything?" "You ought to be ashamed of yourself, Tom Sawyer; you know you're going to tell on me, and oh, what shall I do, what shall I do! I'll be whipped, and I never was whipped in school." Then she stamped her little foot and said: "BE so mean if you want to! I know something that's going to happen. You just wait and you'll see! Hateful, hateful, hateful!"--and she flung out of the house with a new explosion of crying. Tom stood still, rather flustered by this onslaught. Presently he said to himself: "What a curious kind of a fool a girl is! Never been licked in school! Shucks! What's a licking! That's just like a girl--they're so thin-skinned and chicken-hearted. Well, of course I ain't going to tell old Dobbins on this little fool, because there's other ways of getting even on her, that ain't so mean; but what of it? Old Dobbins will ask who it was tore his book. Nobody'll answer. Then he'll do just the way he always does--ask first one and then t'other, and when he comes to the right girl he'll know it, without any telling. Girls' faces always tell on them. They ain't got any backbone. She'll get licked. Well, it's a kind of a tight place for Becky Thatcher, because there ain't any way out of it." Tom conned the thing a moment longer, and then added: "All right, though; she'd like to see me in just such a fix--let her sweat it out!" Tom joined the mob of skylarking scholars outside. In a few moments the master arrived and school "took in." Tom did not feel a strong interest in his studies. Every time he stole a glance at the girls' side of the room Becky's face troubled him. Considering all things, he did not want to pity her, and yet it was all he could do to help it. He could get up no exultation that was really worthy the name. Presently the spelling-book discovery was made, and Tom's mind was entirely full of his own matters for a while after that. Becky roused up from her lethargy of distress and showed good interest in the proceedings. She did not expect that Tom could get out of his trouble by denying that he spilt the ink on the book himself; and she was right. The denial only seemed to make the thing worse for Tom. Becky supposed she would be glad of that, and she tried to believe she was glad of it, but she found she was not certain. When the worst came to the worst, she had an impulse to get up and tell on Alfred Temple, but she made an effort and forced herself to keep still--because, said she to herself, "he'll tell about me tearing the picture sure. I wouldn't say a word, not to save his life!" Tom took his whipping and went back to his seat not at all broken-hearted, for he thought it was possible that he had unknowingly upset the ink on the spelling-book himself, in some skylarking bout--he had denied it for form's sake and because it was custom, and had stuck to the denial from principle. A whole hour drifted by, the master sat nodding in his throne, the air was drowsy with the hum of study. By and by, Mr. Dobbins straightened himself up, yawned, then unlocked his desk, and reached for his book, but seemed undecided whether to take it out or leave it. Most of the pupils glanced up languidly, but there were two among them that watched his movements with intent eyes. Mr. Dobbins fingered his book absently for a while, then took it out and settled himself in his chair to read! Tom shot a glance at Becky. He had seen a hunted and helpless rabbit look as she did, with a gun levelled at its head. Instantly he forgot his quarrel with her. Quick--something must be done! done in a flash, too! But the very imminence of the emergency paralyzed his invention. Good!--he had an inspiration! He would run and snatch the book, spring through the door and fly. But his resolution shook for one little instant, and the chance was lost--the master opened the volume. If Tom only had the wasted opportunity back again! Too late. There was no help for Becky now, he said. The next moment the master faced the school. Every eye sank under his gaze. There was that in it which smote even the innocent with fear. There was silence while one might count ten --the master was gathering his wrath. Then he spoke: "Who tore this book?" There was not a sound. One could have heard a pin drop. The stillness continued; the master searched face after face for signs of guilt. "Benjamin Rogers, did you tear this book?" A denial. Another pause. "Joseph Harper, did you?" Another denial. Tom's uneasiness grew more and more intense under the slow torture of these proceedings. The master scanned the ranks of boys--considered a while, then turned to the girls: "Amy Lawrence?" A shake of the head. "Gracie Miller?" The same sign. "Susan Harper, did you do this?" Another negative. The next girl was Becky Thatcher. Tom was trembling from head to foot with excitement and a sense of the hopelessness of the situation. "Rebecca Thatcher" [Tom glanced at her face--it was white with terror] --"did you tear--no, look me in the face" [her hands rose in appeal] --"did you tear this book?" A thought shot like lightning through Tom's brain. He sprang to his feet and shouted--"I done it!" The school stared in perplexity at this incredible folly. Tom stood a moment, to gather his dismembered faculties; and when he stepped forward to go to his punishment the surprise, the gratitude, the adoration that shone upon him out of poor Becky's eyes seemed pay enough for a hundred floggings. Inspired by the splendor of his own act, he took without an outcry the most merciless flaying that even Mr. Dobbins had ever administered; and also received with indifference the added cruelty of a command to remain two hours after school should be dismissed--for he knew who would wait for him outside till his captivity was done, and not count the tedious time as loss, either. Tom went to bed that night planning vengeance against Alfred Temple; for with shame and repentance Becky had told him all, not forgetting her own treachery; but even the longing for vengeance had to give way, soon, to pleasanter musings, and he fell asleep at last with Becky's latest words lingering dreamily in his ear-- "Tom, how COULD you be so noble!" CHAPTER XXI VACATION was approaching. The schoolmaster, always severe, grew severer and more exacting than ever, for he wanted the school to make a good showing on "Examination" day. His rod and his ferule were seldom idle now--at least among the smaller pupils. Only the biggest boys, and young ladies of eighteen and twenty, escaped lashing. Mr. Dobbins' lashings were very vigorous ones, too; for although he carried, under his wig, a perfectly bald and shiny head, he had only reached middle age, and there was no sign of feebleness in his muscle. As the great day approached, all the tyranny that was in him came to the surface; he seemed to take a vindictive pleasure in punishing the least shortcomings. The consequence was, that the smaller boys spent their days in terror and suffering and their nights in plotting revenge. They threw away no opportunity to do the master a mischief. But he kept ahead all the time. The retribution that followed every vengeful success was so sweeping and majestic that the boys always retired from the field badly worsted. At last they conspired together and hit upon a plan that promised a dazzling victory. They swore in the sign-painter's boy, told him the scheme, and asked his help. He had his own reasons for being delighted, for the master boarded in his father's family and had given the boy ample cause to hate him. The master's wife would go on a visit to the country in a few days, and there would be nothing to interfere with the plan; the master always prepared himself for great occasions by getting pretty well fuddled, and the sign-painter's boy said that when the dominie had reached the proper condition on Examination Evening he would "manage the thing" while he napped in his chair; then he would have him awakened at the right time and hurried away to school. In the fulness of time the interesting occasion arrived. At eight in the evening the schoolhouse was brilliantly lighted, and adorned with wreaths and festoons of foliage and flowers. The master sat throned in his great chair upon a raised platform, with his blackboard behind him. He was looking tolerably mellow. Three rows of benches on each side and six rows in front of him were occupied by the dignitaries of the town and by the parents of the pupils. To his left, back of the rows of citizens, was a spacious temporary platform upon which were seated the scholars who were to take part in the exercises of the evening; rows of small boys, washed and dressed to an intolerable state of discomfort; rows of gawky big boys; snowbanks of girls and young ladies clad in lawn and muslin and conspicuously conscious of their bare arms, their grandmothers' ancient trinkets, their bits of pink and blue ribbon and the flowers in their hair. All the rest of the house was filled with non-participating scholars. The exercises began. A very little boy stood up and sheepishly recited, "You'd scarce expect one of my age to speak in public on the stage," etc.--accompanying himself with the painfully exact and spasmodic gestures which a machine might have used--supposing the machine to be a trifle out of order. But he got through safely, though cruelly scared, and got a fine round of applause when he made his manufactured bow and retired. A little shamefaced girl lisped, "Mary had a little lamb," etc., performed a compassion-inspiring curtsy, got her meed of applause, and sat down flushed and happy. Tom Sawyer stepped forward with conceited confidence and soared into the unquenchable and indestructible "Give me liberty or give me death" speech, with fine fury and frantic gesticulation, and broke down in the middle of it. A ghastly stage-fright seized him, his legs quaked under him and he was like to choke. True, he had the manifest sympathy of the house but he had the house's silence, too, which was even worse than its sympathy. The master frowned, and this completed the disaster. Tom struggled awhile and then retired, utterly defeated. There was a weak attempt at applause, but it died early. "The Boy Stood on the Burning Deck" followed; also "The Assyrian Came Down," and other declamatory gems. Then there were reading exercises, and a spelling fight. The meagre Latin class recited with honor. The prime feature of the evening was in order, now--original "compositions" by the young ladies. Each in her turn stepped forward to the edge of the platform, cleared her throat, held up her manuscript (tied with dainty ribbon), and proceeded to read, with labored attention to "expression" and punctuation. The themes were the same that had been illuminated upon similar occasions by their mothers before them, their grandmothers, and doubtless all their ancestors in the female line clear back to the Crusades. "Friendship" was one; "Memories of Other Days"; "Religion in History"; "Dream Land"; "The Advantages of Culture"; "Forms of Political Government Compared and Contrasted"; "Melancholy"; "Filial Love"; "Heart Longings," etc., etc. A prevalent feature in these compositions was a nursed and petted melancholy; another was a wasteful and opulent gush of "fine language"; another was a tendency to lug in by the ears particularly prized words and phrases until they were worn entirely out; and a peculiarity that conspicuously marked and marred them was the inveterate and intolerable sermon that wagged its crippled tail at the end of each and every one of them. No matter what the subject might be, a brain-racking effort was made to squirm it into some aspect or other that the moral and religious mind could contemplate with edification. The glaring insincerity of these sermons was not sufficient to compass the banishment of the fashion from the schools, and it is not sufficient to-day; it never will be sufficient while the world stands, perhaps. There is no school in all our land where the young ladies do not feel obliged to close their compositions with a sermon; and you will find that the sermon of the most frivolous and the least religious girl in the school is always the longest and the most relentlessly pious. But enough of this. Homely truth is unpalatable. Let us return to the "Examination." The first composition that was read was one entitled "Is this, then, Life?" Perhaps the reader can endure an extract from it: "In the common walks of life, with what delightful emotions does the youthful mind look forward to some anticipated scene of festivity! Imagination is busy sketching rose-tinted pictures of joy. In fancy, the voluptuous votary of fashion sees herself amid the festive throng, 'the observed of all observers.' Her graceful form, arrayed in snowy robes, is whirling through the mazes of the joyous dance; her eye is brightest, her step is lightest in the gay assembly. "In such delicious fancies time quickly glides by, and the welcome hour arrives for her entrance into the Elysian world, of which she has had such bright dreams. How fairy-like does everything appear to her enchanted vision! Each new scene is more charming than the last. But after a while she finds that beneath this goodly exterior, all is vanity, the flattery which once charmed her soul, now grates harshly upon her ear; the ball-room has lost its charms; and with wasted health and imbittered heart, she turns away with the conviction that earthly pleasures cannot satisfy the longings of the soul!" And so forth and so on. There was a buzz of gratification from time to time during the reading, accompanied by whispered ejaculations of "How sweet!" "How eloquent!" "So true!" etc., and after the thing had closed with a peculiarly afflicting sermon the applause was enthusiastic. Then arose a slim, melancholy girl, whose face had the "interesting" paleness that comes of pills and indigestion, and read a "poem." Two stanzas of it will do: "A MISSOURI MAIDEN'S FAREWELL TO ALABAMA "Alabama, good-bye! I love thee well! But yet for a while do I leave thee now! Sad, yes, sad thoughts of thee my heart doth swell, And burning recollections throng my brow! For I have wandered through thy flowery woods; Have roamed and read near Tallapoosa's stream; Have listened to Tallassee's warring floods, And wooed on Coosa's side Aurora's beam. "Yet shame I not to bear an o'er-full heart, Nor blush to turn behind my tearful eyes; 'Tis from no stranger land I now must part, 'Tis to no strangers left I yield these sighs. Welcome and home were mine within this State, Whose vales I leave--whose spires fade fast from me And cold must be mine eyes, and heart, and tete, When, dear Alabama! they turn cold on thee!" There were very few there who knew what "tete" meant, but the poem was very satisfactory, nevertheless. Next appeared a dark-complexioned, black-eyed, black-haired young lady, who paused an impressive moment, assumed a tragic expression, and began to read in a measured, solemn tone: "A VISION "Dark and tempestuous was night. Around the throne on high not a single star quivered; but the deep intonations of the heavy thunder constantly vibrated upon the ear; whilst the terrific lightning revelled in angry mood through the cloudy chambers of heaven, seeming to scorn the power exerted over its terror by the illustrious Franklin! Even the boisterous winds unanimously came forth from their mystic homes, and blustered about as if to enhance by their aid the wildness of the scene. "At such a time, so dark, so dreary, for human sympathy my very spirit sighed; but instead thereof, "'My dearest friend, my counsellor, my comforter and guide--My joy in grief, my second bliss in joy,' came to my side. She moved like one of those bright beings pictured in the sunny walks of fancy's Eden by the romantic and young, a queen of beauty unadorned save by her own transcendent loveliness. So soft was her step, it failed to make even a sound, and but for the magical thrill imparted by her genial touch, as other unobtrusive beauties, she would have glided away un-perceived--unsought. A strange sadness rested upon her features, like icy tears upon the robe of December, as she pointed to the contending elements without, and bade me contemplate the two beings presented." This nightmare occupied some ten pages of manuscript and wound up with a sermon so destructive of all hope to non-Presbyterians that it took the first prize. This composition was considered to be the very finest effort of the evening. The mayor of the village, in delivering the prize to the author of it, made a warm speech in which he said that it was by far the most "eloquent" thing he had ever listened to, and that Daniel Webster himself might well be proud of it. It may be remarked, in passing, that the number of compositions in which the word "beauteous" was over-fondled, and human experience referred to as "life's page," was up to the usual average. Now the master, mellow almost to the verge of geniality, put his chair aside, turned his back to the audience, and began to draw a map of America on the blackboard, to exercise the geography class upon. But he made a sad business of it with his unsteady hand, and a smothered titter rippled over the house. He knew what the matter was, and set himself to right it. He sponged out lines and remade them; but he only distorted them more than ever, and the tittering was more pronounced. He threw his entire attention upon his work, now, as if determined not to be put down by the mirth. He felt that all eyes were fastened upon him; he imagined he was succeeding, and yet the tittering continued; it even manifestly increased. And well it might. There was a garret above, pierced with a scuttle over his head; and down through this scuttle came a cat, suspended around the haunches by a string; she had a rag tied about her head and jaws to keep her from mewing; as she slowly descended she curved upward and clawed at the string, she swung downward and clawed at the intangible air. The tittering rose higher and higher--the cat was within six inches of the absorbed teacher's head--down, down, a little lower, and she grabbed his wig with her desperate claws, clung to it, and was snatched up into the garret in an instant with her trophy still in her possession! And how the light did blaze abroad from the master's bald pate--for the sign-painter's boy had GILDED it! That broke up the meeting. The boys were avenged. Vacation had come. NOTE:--The pretended "compositions" quoted in this chapter are taken without alteration from a volume entitled "Prose and Poetry, by a Western Lady"--but they are exactly and precisely after the schoolgirl pattern, and hence are much happier than any mere imitations could be. CHAPTER XXII TOM joined the new order of Cadets of Temperance, being attracted by the showy character of their "regalia." He promised to abstain from smoking, chewing, and profanity as long as he remained a member. Now he found out a new thing--namely, that to promise not to do a thing is the surest way in the world to make a body want to go and do that very thing. Tom soon found himself tormented with a desire to drink and swear; the desire grew to be so intense that nothing but the hope of a chance to display himself in his red sash kept him from withdrawing from the order. Fourth of July was coming; but he soon gave that up --gave it up before he had worn his shackles over forty-eight hours--and fixed his hopes upon old Judge Frazer, justice of the peace, who was apparently on his deathbed and would have a big public funeral, since he was so high an official. During three days Tom was deeply concerned about the Judge's condition and hungry for news of it. Sometimes his hopes ran high--so high that he would venture to get out his regalia and practise before the looking-glass. But the Judge had a most discouraging way of fluctuating. At last he was pronounced upon the mend--and then convalescent. Tom was disgusted; and felt a sense of injury, too. He handed in his resignation at once--and that night the Judge suffered a relapse and died. Tom resolved that he would never trust a man like that again. The funeral was a fine thing. The Cadets paraded in a style calculated to kill the late member with envy. Tom was a free boy again, however --there was something in that. He could drink and swear, now--but found to his surprise that he did not want to. The simple fact that he could, took the desire away, and the charm of it. Tom presently wondered to find that his coveted vacation was beginning to hang a little heavily on his hands. He attempted a diary--but nothing happened during three days, and so he abandoned it. The first of all the negro minstrel shows came to town, and made a sensation. Tom and Joe Harper got up a band of performers and were happy for two days. Even the Glorious Fourth was in some sense a failure, for it rained hard, there was no procession in consequence, and the greatest man in the world (as Tom supposed), Mr. Benton, an actual United States Senator, proved an overwhelming disappointment--for he was not twenty-five feet high, nor even anywhere in the neighborhood of it. A circus came. The boys played circus for three days afterward in tents made of rag carpeting--admission, three pins for boys, two for girls--and then circusing was abandoned. A phrenologist and a mesmerizer came--and went again and left the village duller and drearier than ever. There were some boys-and-girls' parties, but they were so few and so delightful that they only made the aching voids between ache the harder. Becky Thatcher was gone to her Constantinople home to stay with her parents during vacation--so there was no bright side to life anywhere. The dreadful secret of the murder was a chronic misery. It was a very cancer for permanency and pain. Then came the measles. During two long weeks Tom lay a prisoner, dead to the world and its happenings. He was very ill, he was interested in nothing. When he got upon his feet at last and moved feebly down-town, a melancholy change had come over everything and every creature. There had been a "revival," and everybody had "got religion," not only the adults, but even the boys and girls. Tom went about, hoping against hope for the sight of one blessed sinful face, but disappointment crossed him everywhere. He found Joe Harper studying a Testament, and turned sadly away from the depressing spectacle. He sought Ben Rogers, and found him visiting the poor with a basket of tracts. He hunted up Jim Hollis, who called his attention to the precious blessing of his late measles as a warning. Every boy he encountered added another ton to his depression; and when, in desperation, he flew for refuge at last to the bosom of Huckleberry Finn and was received with a Scriptural quotation, his heart broke and he crept home and to bed realizing that he alone of all the town was lost, forever and forever. And that night there came on a terrific storm, with driving rain, awful claps of thunder and blinding sheets of lightning. He covered his head with the bedclothes and waited in a horror of suspense for his doom; for he had not the shadow of a doubt that all this hubbub was about him. He believed he had taxed the forbearance of the powers above to the extremity of endurance and that this was the result. It might have seemed to him a waste of pomp and ammunition to kill a bug with a battery of artillery, but there seemed nothing incongruous about the getting up such an expensive thunderstorm as this to knock the turf from under an insect like himself. By and by the tempest spent itself and died without accomplishing its object. The boy's first impulse was to be grateful, and reform. His second was to wait--for there might not be any more storms. The next day the doctors were back; Tom had relapsed. The three weeks he spent on his back this time seemed an entire age. When he got abroad at last he was hardly grateful that he had been spared, remembering how lonely was his estate, how companionless and forlorn he was. He drifted listlessly down the street and found Jim Hollis acting as judge in a juvenile court that was trying a cat for murder, in the presence of her victim, a bird. He found Joe Harper and Huck Finn up an alley eating a stolen melon. Poor lads! they--like Tom--had suffered a relapse. CHAPTER XXIII AT last the sleepy atmosphere was stirred--and vigorously: the murder trial came on in the court. It became the absorbing topic of village talk immediately. Tom could not get away from it. Every reference to the murder sent a shudder to his heart, for his troubled conscience and fears almost persuaded him that these remarks were put forth in his hearing as "feelers"; he did not see how he could be suspected of knowing anything about the murder, but still he could not be comfortable in the midst of this gossip. It kept him in a cold shiver all the time. He took Huck to a lonely place to have a talk with him. It would be some relief to unseal his tongue for a little while; to divide his burden of distress with another sufferer. Moreover, he wanted to assure himself that Huck had remained discreet. "Huck, have you ever told anybody about--that?" "'Bout what?" "You know what." "Oh--'course I haven't." "Never a word?" "Never a solitary word, so help me. What makes you ask?" "Well, I was afeard." "Why, Tom Sawyer, we wouldn't be alive two days if that got found out. YOU know that." Tom felt more comfortable. After a pause: "Huck, they couldn't anybody get you to tell, could they?" "Get me to tell? Why, if I wanted that half-breed devil to drownd me they could get me to tell. They ain't no different way." "Well, that's all right, then. I reckon we're safe as long as we keep mum. But let's swear again, anyway. It's more surer." "I'm agreed." So they swore again with dread solemnities. "What is the talk around, Huck? I've heard a power of it." "Talk? Well, it's just Muff Potter, Muff Potter, Muff Potter all the time. It keeps me in a sweat, constant, so's I want to hide som'ers." "That's just the same way they go on round me. I reckon he's a goner. Don't you feel sorry for him, sometimes?" "Most always--most always. He ain't no account; but then he hain't ever done anything to hurt anybody. Just fishes a little, to get money to get drunk on--and loafs around considerable; but lord, we all do that--leastways most of us--preachers and such like. But he's kind of good--he give me half a fish, once, when there warn't enough for two; and lots of times he's kind of stood by me when I was out of luck." "Well, he's mended kites for me, Huck, and knitted hooks on to my line. I wish we could get him out of there." "My! we couldn't get him out, Tom. And besides, 'twouldn't do any good; they'd ketch him again." "Yes--so they would. But I hate to hear 'em abuse him so like the dickens when he never done--that." "I do too, Tom. Lord, I hear 'em say he's the bloodiest looking villain in this country, and they wonder he wasn't ever hung before." "Yes, they talk like that, all the time. I've heard 'em say that if he was to get free they'd lynch him." "And they'd do it, too." The boys had a long talk, but it brought them little comfort. As the twilight drew on, they found themselves hanging about the neighborhood of the little isolated jail, perhaps with an undefined hope that something would happen that might clear away their difficulties. But nothing happened; there seemed to be no angels or fairies interested in this luckless captive. The boys did as they had often done before--went to the cell grating and gave Potter some tobacco and matches. He was on the ground floor and there were no guards. His gratitude for their gifts had always smote their consciences before--it cut deeper than ever, this time. They felt cowardly and treacherous to the last degree when Potter said: "You've been mighty good to me, boys--better'n anybody else in this town. And I don't forget it, I don't. Often I says to myself, says I, 'I used to mend all the boys' kites and things, and show 'em where the good fishin' places was, and befriend 'em what I could, and now they've all forgot old Muff when he's in trouble; but Tom don't, and Huck don't--THEY don't forget him, says I, 'and I don't forget them.' Well, boys, I done an awful thing--drunk and crazy at the time--that's the only way I account for it--and now I got to swing for it, and it's right. Right, and BEST, too, I reckon--hope so, anyway. Well, we won't talk about that. I don't want to make YOU feel bad; you've befriended me. But what I want to say, is, don't YOU ever get drunk--then you won't ever get here. Stand a litter furder west--so--that's it; it's a prime comfort to see faces that's friendly when a body's in such a muck of trouble, and there don't none come here but yourn. Good friendly faces--good friendly faces. Git up on one another's backs and let me touch 'em. That's it. Shake hands--yourn'll come through the bars, but mine's too big. Little hands, and weak--but they've helped Muff Potter a power, and they'd help him more if they could." Tom went home miserable, and his dreams that night were full of horrors. The next day and the day after, he hung about the court-room, drawn by an almost irresistible impulse to go in, but forcing himself to stay out. Huck was having the same experience. They studiously avoided each other. Each wandered away, from time to time, but the same dismal fascination always brought them back presently. Tom kept his ears open when idlers sauntered out of the court-room, but invariably heard distressing news--the toils were closing more and more relentlessly around poor Potter. At the end of the second day the village talk was to the effect that Injun Joe's evidence stood firm and unshaken, and that there was not the slightest question as to what the jury's verdict would be. Tom was out late, that night, and came to bed through the window. He was in a tremendous state of excitement. It was hours before he got to sleep. All the village flocked to the court-house the next morning, for this was to be the great day. Both sexes were about equally represented in the packed audience. After a long wait the jury filed in and took their places; shortly afterward, Potter, pale and haggard, timid and hopeless, was brought in, with chains upon him, and seated where all the curious eyes could stare at him; no less conspicuous was Injun Joe, stolid as ever. There was another pause, and then the judge arrived and the sheriff proclaimed the opening of the court. The usual whisperings among the lawyers and gathering together of papers followed. These details and accompanying delays worked up an atmosphere of preparation that was as impressive as it was fascinating. Now a witness was called who testified that he found Muff Potter washing in the brook, at an early hour of the morning that the murder was discovered, and that he immediately sneaked away. After some further questioning, counsel for the prosecution said: "Take the witness." The prisoner raised his eyes for a moment, but dropped them again when his own counsel said: "I have no questions to ask him." The next witness proved the finding of the knife near the corpse. Counsel for the prosecution said: "Take the witness." "I have no questions to ask him," Potter's lawyer replied. A third witness swore he had often seen the knife in Potter's possession. "Take the witness." Counsel for Potter declined to question him. The faces of the audience began to betray annoyance. Did this attorney mean to throw away his client's life without an effort? Several witnesses deposed concerning Potter's guilty behavior when brought to the scene of the murder. They were allowed to leave the stand without being cross-questioned. Every detail of the damaging circumstances that occurred in the graveyard upon that morning which all present remembered so well was brought out by credible witnesses, but none of them were cross-examined by Potter's lawyer. The perplexity and dissatisfaction of the house expressed itself in murmurs and provoked a reproof from the bench. Counsel for the prosecution now said: "By the oaths of citizens whose simple word is above suspicion, we have fastened this awful crime, beyond all possibility of question, upon the unhappy prisoner at the bar. We rest our case here." A groan escaped from poor Potter, and he put his face in his hands and rocked his body softly to and fro, while a painful silence reigned in the court-room. Many men were moved, and many women's compassion testified itself in tears. Counsel for the defence rose and said: "Your honor, in our remarks at the opening of this trial, we foreshadowed our purpose to prove that our client did this fearful deed while under the influence of a blind and irresponsible delirium produced by drink. We have changed our mind. We shall not offer that plea." [Then to the clerk:] "Call Thomas Sawyer!" A puzzled amazement awoke in every face in the house, not even excepting Potter's. Every eye fastened itself with wondering interest upon Tom as he rose and took his place upon the stand. The boy looked wild enough, for he was badly scared. The oath was administered. "Thomas Sawyer, where were you on the seventeenth of June, about the hour of midnight?" Tom glanced at Injun Joe's iron face and his tongue failed him. The audience listened breathless, but the words refused to come. After a few moments, however, the boy got a little of his strength back, and managed to put enough of it into his voice to make part of the house hear: "In the graveyard!" "A little bit louder, please. Don't be afraid. You were--" "In the graveyard." A contemptuous smile flitted across Injun Joe's face. "Were you anywhere near Horse Williams' grave?" "Yes, sir." "Speak up--just a trifle louder. How near were you?" "Near as I am to you." "Were you hidden, or not?" "I was hid." "Where?" "Behind the elms that's on the edge of the grave." Injun Joe gave a barely perceptible start. "Any one with you?" "Yes, sir. I went there with--" "Wait--wait a moment. Never mind mentioning your companion's name. We will produce him at the proper time. Did you carry anything there with you." Tom hesitated and looked confused. "Speak out, my boy--don't be diffident. The truth is always respectable. What did you take there?" "Only a--a--dead cat." There was a ripple of mirth, which the court checked. "We will produce the skeleton of that cat. Now, my boy, tell us everything that occurred--tell it in your own way--don't skip anything, and don't be afraid." Tom began--hesitatingly at first, but as he warmed to his subject his words flowed more and more easily; in a little while every sound ceased but his own voice; every eye fixed itself upon him; with parted lips and bated breath the audience hung upon his words, taking no note of time, rapt in the ghastly fascinations of the tale. The strain upon pent emotion reached its climax when the boy said: "--and as the doctor fetched the board around and Muff Potter fell, Injun Joe jumped with the knife and--" Crash! Quick as lightning the half-breed sprang for a window, tore his way through all opposers, and was gone! CHAPTER XXIV TOM was a glittering hero once more--the pet of the old, the envy of the young. His name even went into immortal print, for the village paper magnified him. There were some that believed he would be President, yet, if he escaped hanging. As usual, the fickle, unreasoning world took Muff Potter to its bosom and fondled him as lavishly as it had abused him before. But that sort of conduct is to the world's credit; therefore it is not well to find fault with it. Tom's days were days of splendor and exultation to him, but his nights were seasons of horror. Injun Joe infested all his dreams, and always with doom in his eye. Hardly any temptation could persuade the boy to stir abroad after nightfall. Poor Huck was in the same state of wretchedness and terror, for Tom had told the whole story to the lawyer the night before the great day of the trial, and Huck was sore afraid that his share in the business might leak out, yet, notwithstanding Injun Joe's flight had saved him the suffering of testifying in court. The poor fellow had got the attorney to promise secrecy, but what of that? Since Tom's harassed conscience had managed to drive him to the lawyer's house by night and wring a dread tale from lips that had been sealed with the dismalest and most formidable of oaths, Huck's confidence in the human race was well-nigh obliterated. Daily Muff Potter's gratitude made Tom glad he had spoken; but nightly he wished he had sealed up his tongue. Half the time Tom was afraid Injun Joe would never be captured; the other half he was afraid he would be. He felt sure he never could draw a safe breath again until that man was dead and he had seen the corpse. Rewards had been offered, the country had been scoured, but no Injun Joe was found. One of those omniscient and awe-inspiring marvels, a detective, came up from St. Louis, moused around, shook his head, looked wise, and made that sort of astounding success which members of that craft usually achieve. That is to say, he "found a clew." But you can't hang a "clew" for murder, and so after that detective had got through and gone home, Tom felt just as insecure as he was before. The slow days drifted on, and each left behind it a slightly lightened weight of apprehension. CHAPTER XXV THERE comes a time in every rightly-constructed boy's life when he has a raging desire to go somewhere and dig for hidden treasure. This desire suddenly came upon Tom one day. He sallied out to find Joe Harper, but failed of success. Next he sought Ben Rogers; he had gone fishing. Presently he stumbled upon Huck Finn the Red-Handed. Huck would answer. Tom took him to a private place and opened the matter to him confidentially. Huck was willing. Huck was always willing to take a hand in any enterprise that offered entertainment and required no capital, for he had a troublesome superabundance of that sort of time which is not money. "Where'll we dig?" said Huck. "Oh, most anywhere." "Why, is it hid all around?" "No, indeed it ain't. It's hid in mighty particular places, Huck --sometimes on islands, sometimes in rotten chests under the end of a limb of an old dead tree, just where the shadow falls at midnight; but mostly under the floor in ha'nted houses." "Who hides it?" "Why, robbers, of course--who'd you reckon? Sunday-school sup'rintendents?" "I don't know. If 'twas mine I wouldn't hide it; I'd spend it and have a good time." "So would I. But robbers don't do that way. They always hide it and leave it there." "Don't they come after it any more?" "No, they think they will, but they generally forget the marks, or else they die. Anyway, it lays there a long time and gets rusty; and by and by somebody finds an old yellow paper that tells how to find the marks--a paper that's got to be ciphered over about a week because it's mostly signs and hy'roglyphics." "Hyro--which?" "Hy'roglyphics--pictures and things, you know, that don't seem to mean anything." "Have you got one of them papers, Tom?" "No." "Well then, how you going to find the marks?" "I don't want any marks. They always bury it under a ha'nted house or on an island, or under a dead tree that's got one limb sticking out. Well, we've tried Jackson's Island a little, and we can try it again some time; and there's the old ha'nted house up the Still-House branch, and there's lots of dead-limb trees--dead loads of 'em." "Is it under all of them?" "How you talk! No!" "Then how you going to know which one to go for?" "Go for all of 'em!" "Why, Tom, it'll take all summer." "Well, what of that? Suppose you find a brass pot with a hundred dollars in it, all rusty and gray, or rotten chest full of di'monds. How's that?" Huck's eyes glowed. "That's bully. Plenty bully enough for me. Just you gimme the hundred dollars and I don't want no di'monds." "All right. But I bet you I ain't going to throw off on di'monds. Some of 'em's worth twenty dollars apiece--there ain't any, hardly, but's worth six bits or a dollar." "No! Is that so?" "Cert'nly--anybody'll tell you so. Hain't you ever seen one, Huck?" "Not as I remember." "Oh, kings have slathers of them." "Well, I don' know no kings, Tom." "I reckon you don't. But if you was to go to Europe you'd see a raft of 'em hopping around." "Do they hop?" "Hop?--your granny! No!" "Well, what did you say they did, for?" "Shucks, I only meant you'd SEE 'em--not hopping, of course--what do they want to hop for?--but I mean you'd just see 'em--scattered around, you know, in a kind of a general way. Like that old humpbacked Richard." "Richard? What's his other name?" "He didn't have any other name. Kings don't have any but a given name." "No?" "But they don't." "Well, if they like it, Tom, all right; but I don't want to be a king and have only just a given name, like a nigger. But say--where you going to dig first?" "Well, I don't know. S'pose we tackle that old dead-limb tree on the hill t'other side of Still-House branch?" "I'm agreed." So they got a crippled pick and a shovel, and set out on their three-mile tramp. They arrived hot and panting, and threw themselves down in the shade of a neighboring elm to rest and have a smoke. "I like this," said Tom. "So do I." "Say, Huck, if we find a treasure here, what you going to do with your share?" "Well, I'll have pie and a glass of soda every day, and I'll go to every circus that comes along. I bet I'll have a gay time." "Well, ain't you going to save any of it?" "Save it? What for?" "Why, so as to have something to live on, by and by." "Oh, that ain't any use. Pap would come back to thish-yer town some day and get his claws on it if I didn't hurry up, and I tell you he'd clean it out pretty quick. What you going to do with yourn, Tom?" "I'm going to buy a new drum, and a sure-'nough sword, and a red necktie and a bull pup, and get married." "Married!" "That's it." "Tom, you--why, you ain't in your right mind." "Wait--you'll see." "Well, that's the foolishest thing you could do. Look at pap and my mother. Fight! Why, they used to fight all the time. I remember, mighty well." "That ain't anything. The girl I'm going to marry won't fight." "Tom, I reckon they're all alike. They'll all comb a body. Now you better think 'bout this awhile. I tell you you better. What's the name of the gal?" "It ain't a gal at all--it's a girl." "It's all the same, I reckon; some says gal, some says girl--both's right, like enough. Anyway, what's her name, Tom?" "I'll tell you some time--not now." "All right--that'll do. Only if you get married I'll be more lonesomer than ever." "No you won't. You'll come and live with me. Now stir out of this and we'll go to digging." They worked and sweated for half an hour. No result. They toiled another half-hour. Still no result. Huck said: "Do they always bury it as deep as this?" "Sometimes--not always. Not generally. I reckon we haven't got the right place." So they chose a new spot and began again. The labor dragged a little, but still they made progress. They pegged away in silence for some time. Finally Huck leaned on his shovel, swabbed the beaded drops from his brow with his sleeve, and said: "Where you going to dig next, after we get this one?" "I reckon maybe we'll tackle the old tree that's over yonder on Cardiff Hill back of the widow's." "I reckon that'll be a good one. But won't the widow take it away from us, Tom? It's on her land." "SHE take it away! Maybe she'd like to try it once. Whoever finds one of these hid treasures, it belongs to him. It don't make any difference whose land it's on." That was satisfactory. The work went on. By and by Huck said: "Blame it, we must be in the wrong place again. What do you think?" "It is mighty curious, Huck. I don't understand it. Sometimes witches interfere. I reckon maybe that's what's the trouble now." "Shucks! Witches ain't got no power in the daytime." "Well, that's so. I didn't think of that. Oh, I know what the matter is! What a blamed lot of fools we are! You got to find out where the shadow of the limb falls at midnight, and that's where you dig!" "Then consound it, we've fooled away all this work for nothing. Now hang it all, we got to come back in the night. It's an awful long way. Can you get out?" "I bet I will. We've got to do it to-night, too, because if somebody sees these holes they'll know in a minute what's here and they'll go for it." "Well, I'll come around and maow to-night." "All right. Let's hide the tools in the bushes." The boys were there that night, about the appointed time. They sat in the shadow waiting. It was a lonely place, and an hour made solemn by old traditions. Spirits whispered in the rustling leaves, ghosts lurked in the murky nooks, the deep baying of a hound floated up out of the distance, an owl answered with his sepulchral note. The boys were subdued by these solemnities, and talked little. By and by they judged that twelve had come; they marked where the shadow fell, and began to dig. Their hopes commenced to rise. Their interest grew stronger, and their industry kept pace with it. The hole deepened and still deepened, but every time their hearts jumped to hear the pick strike upon something, they only suffered a new disappointment. It was only a stone or a chunk. At last Tom said: "It ain't any use, Huck, we're wrong again." "Well, but we CAN'T be wrong. We spotted the shadder to a dot." "I know it, but then there's another thing." "What's that?". "Why, we only guessed at the time. Like enough it was too late or too early." Huck dropped his shovel. "That's it," said he. "That's the very trouble. We got to give this one up. We can't ever tell the right time, and besides this kind of thing's too awful, here this time of night with witches and ghosts a-fluttering around so. I feel as if something's behind me all the time; and I'm afeard to turn around, becuz maybe there's others in front a-waiting for a chance. I been creeping all over, ever since I got here." "Well, I've been pretty much so, too, Huck. They most always put in a dead man when they bury a treasure under a tree, to look out for it." "Lordy!" "Yes, they do. I've always heard that." "Tom, I don't like to fool around much where there's dead people. A body's bound to get into trouble with 'em, sure." "I don't like to stir 'em up, either. S'pose this one here was to stick his skull out and say something!" "Don't Tom! It's awful." "Well, it just is. Huck, I don't feel comfortable a bit." "Say, Tom, let's give this place up, and try somewheres else." "All right, I reckon we better." "What'll it be?" Tom considered awhile; and then said: "The ha'nted house. That's it!" "Blame it, I don't like ha'nted houses, Tom. Why, they're a dern sight worse'n dead people. Dead people might talk, maybe, but they don't come sliding around in a shroud, when you ain't noticing, and peep over your shoulder all of a sudden and grit their teeth, the way a ghost does. I couldn't stand such a thing as that, Tom--nobody could." "Yes, but, Huck, ghosts don't travel around only at night. They won't hender us from digging there in the daytime." "Well, that's so. But you know mighty well people don't go about that ha'nted house in the day nor the night." "Well, that's mostly because they don't like to go where a man's been murdered, anyway--but nothing's ever been seen around that house except in the night--just some blue lights slipping by the windows--no regular ghosts." "Well, where you see one of them blue lights flickering around, Tom, you can bet there's a ghost mighty close behind it. It stands to reason. Becuz you know that they don't anybody but ghosts use 'em." "Yes, that's so. But anyway they don't come around in the daytime, so what's the use of our being afeard?" "Well, all right. We'll tackle the ha'nted house if you say so--but I reckon it's taking chances." They had started down the hill by this time. There in the middle of the moonlit valley below them stood the "ha'nted" house, utterly isolated, its fences gone long ago, rank weeds smothering the very doorsteps, the chimney crumbled to ruin, the window-sashes vacant, a corner of the roof caved in. The boys gazed awhile, half expecting to see a blue light flit past a window; then talking in a low tone, as befitted the time and the circumstances, they struck far off to the right, to give the haunted house a wide berth, and took their way homeward through the woods that adorned the rearward side of Cardiff Hill. CHAPTER XXVI ABOUT noon the next day the boys arrived at the dead tree; they had come for their tools. Tom was impatient to go to the haunted house; Huck was measurably so, also--but suddenly said: "Lookyhere, Tom, do you know what day it is?" Tom mentally ran over the days of the week, and then quickly lifted his eyes with a startled look in them-- "My! I never once thought of it, Huck!" "Well, I didn't neither, but all at once it popped onto me that it was Friday." "Blame it, a body can't be too careful, Huck. We might 'a' got into an awful scrape, tackling such a thing on a Friday." "MIGHT! Better say we WOULD! There's some lucky days, maybe, but Friday ain't." "Any fool knows that. I don't reckon YOU was the first that found it out, Huck." "Well, I never said I was, did I? And Friday ain't all, neither. I had a rotten bad dream last night--dreampt about rats." "No! Sure sign of trouble. Did they fight?" "No." "Well, that's good, Huck. When they don't fight it's only a sign that there's trouble around, you know. All we got to do is to look mighty sharp and keep out of it. We'll drop this thing for to-day, and play. Do you know Robin Hood, Huck?" "No. Who's Robin Hood?" "Why, he was one of the greatest men that was ever in England--and the best. He was a robber." "Cracky, I wisht I was. Who did he rob?" "Only sheriffs and bishops and rich people and kings, and such like. But he never bothered the poor. He loved 'em. He always divided up with 'em perfectly square." "Well, he must 'a' been a brick." "I bet you he was, Huck. Oh, he was the noblest man that ever was. They ain't any such men now, I can tell you. He could lick any man in England, with one hand tied behind him; and he could take his yew bow and plug a ten-cent piece every time, a mile and a half." "What's a YEW bow?" "I don't know. It's some kind of a bow, of course. And if he hit that dime only on the edge he would set down and cry--and curse. But we'll play Robin Hood--it's nobby fun. I'll learn you." "I'm agreed." So they played Robin Hood all the afternoon, now and then casting a yearning eye down upon the haunted house and passing a remark about the morrow's prospects and possibilities there. As the sun began to sink into the west they took their way homeward athwart the long shadows of the trees and soon were buried from sight in the forests of Cardiff Hill. On Saturday, shortly after noon, the boys were at the dead tree again. They had a smoke and a chat in the shade, and then dug a little in their last hole, not with great hope, but merely because Tom said there were so many cases where people had given up a treasure after getting down within six inches of it, and then somebody else had come along and turned it up with a single thrust of a shovel. The thing failed this time, however, so the boys shouldered their tools and went away feeling that they had not trifled with fortune, but had fulfilled all the requirements that belong to the business of treasure-hunting. When they reached the haunted house there was something so weird and grisly about the dead silence that reigned there under the baking sun, and something so depressing about the loneliness and desolation of the place, that they were afraid, for a moment, to venture in. Then they crept to the door and took a trembling peep. They saw a weed-grown, floorless room, unplastered, an ancient fireplace, vacant windows, a ruinous staircase; and here, there, and everywhere hung ragged and abandoned cobwebs. They presently entered, softly, with quickened pulses, talking in whispers, ears alert to catch the slightest sound, and muscles tense and ready for instant retreat. In a little while familiarity modified their fears and they gave the place a critical and interested examination, rather admiring their own boldness, and wondering at it, too. Next they wanted to look up-stairs. This was something like cutting off retreat, but they got to daring each other, and of course there could be but one result--they threw their tools into a corner and made the ascent. Up there were the same signs of decay. In one corner they found a closet that promised mystery, but the promise was a fraud--there was nothing in it. Their courage was up now and well in hand. They were about to go down and begin work when-- "Sh!" said Tom. "What is it?" whispered Huck, blanching with fright. "Sh!... There!... Hear it?" "Yes!... Oh, my! Let's run!" "Keep still! Don't you budge! They're coming right toward the door." The boys stretched themselves upon the floor with their eyes to knot-holes in the planking, and lay waiting, in a misery of fear. "They've stopped.... No--coming.... Here they are. Don't whisper another word, Huck. My goodness, I wish I was out of this!" Two men entered. Each boy said to himself: "There's the old deaf and dumb Spaniard that's been about town once or twice lately--never saw t'other man before." "T'other" was a ragged, unkempt creature, with nothing very pleasant in his face. The Spaniard was wrapped in a serape; he had bushy white whiskers; long white hair flowed from under his sombrero, and he wore green goggles. When they came in, "t'other" was talking in a low voice; they sat down on the ground, facing the door, with their backs to the wall, and the speaker continued his remarks. His manner became less guarded and his words more distinct as he proceeded: "No," said he, "I've thought it all over, and I don't like it. It's dangerous." "Dangerous!" grunted the "deaf and dumb" Spaniard--to the vast surprise of the boys. "Milksop!" This voice made the boys gasp and quake. It was Injun Joe's! There was silence for some time. Then Joe said: "What's any more dangerous than that job up yonder--but nothing's come of it." "That's different. Away up the river so, and not another house about. 'Twon't ever be known that we tried, anyway, long as we didn't succeed." "Well, what's more dangerous than coming here in the daytime!--anybody would suspicion us that saw us." "I know that. But there warn't any other place as handy after that fool of a job. I want to quit this shanty. I wanted to yesterday, only it warn't any use trying to stir out of here, with those infernal boys playing over there on the hill right in full view." "Those infernal boys" quaked again under the inspiration of this remark, and thought how lucky it was that they had remembered it was Friday and concluded to wait a day. They wished in their hearts they had waited a year. The two men got out some food and made a luncheon. After a long and thoughtful silence, Injun Joe said: "Look here, lad--you go back up the river where you belong. Wait there till you hear from me. I'll take the chances on dropping into this town just once more, for a look. We'll do that 'dangerous' job after I've spied around a little and think things look well for it. Then for Texas! We'll leg it together!" This was satisfactory. Both men presently fell to yawning, and Injun Joe said: "I'm dead for sleep! It's your turn to watch." He curled down in the weeds and soon began to snore. His comrade stirred him once or twice and he became quiet. Presently the watcher began to nod; his head drooped lower and lower, both men began to snore now. The boys drew a long, grateful breath. Tom whispered: "Now's our chance--come!" Huck said: "I can't--I'd die if they was to wake." Tom urged--Huck held back. At last Tom rose slowly and softly, and started alone. But the first step he made wrung such a hideous creak from the crazy floor that he sank down almost dead with fright. He never made a second attempt. The boys lay there counting the dragging moments till it seemed to them that time must be done and eternity growing gray; and then they were grateful to note that at last the sun was setting. Now one snore ceased. Injun Joe sat up, stared around--smiled grimly upon his comrade, whose head was drooping upon his knees--stirred him up with his foot and said: "Here! YOU'RE a watchman, ain't you! All right, though--nothing's happened." "My! have I been asleep?" "Oh, partly, partly. Nearly time for us to be moving, pard. What'll we do with what little swag we've got left?" "I don't know--leave it here as we've always done, I reckon. No use to take it away till we start south. Six hundred and fifty in silver's something to carry." "Well--all right--it won't matter to come here once more." "No--but I'd say come in the night as we used to do--it's better." "Yes: but look here; it may be a good while before I get the right chance at that job; accidents might happen; 'tain't in such a very good place; we'll just regularly bury it--and bury it deep." "Good idea," said the comrade, who walked across the room, knelt down, raised one of the rearward hearth-stones and took out a bag that jingled pleasantly. He subtracted from it twenty or thirty dollars for himself and as much for Injun Joe, and passed the bag to the latter, who was on his knees in the corner, now, digging with his bowie-knife. The boys forgot all their fears, all their miseries in an instant. With gloating eyes they watched every movement. Luck!--the splendor of it was beyond all imagination! Six hundred dollars was money enough to make half a dozen boys rich! Here was treasure-hunting under the happiest auspices--there would not be any bothersome uncertainty as to where to dig. They nudged each other every moment--eloquent nudges and easily understood, for they simply meant--"Oh, but ain't you glad NOW we're here!" Joe's knife struck upon something. "Hello!" said he. "What is it?" said his comrade. "Half-rotten plank--no, it's a box, I believe. Here--bear a hand and we'll see what it's here for. Never mind, I've broke a hole." He reached his hand in and drew it out-- "Man, it's money!" The two men examined the handful of coins. They were gold. The boys above were as excited as themselves, and as delighted. Joe's comrade said: "We'll make quick work of this. There's an old rusty pick over amongst the weeds in the corner the other side of the fireplace--I saw it a minute ago." He ran and brought the boys' pick and shovel. Injun Joe took the pick, looked it over critically, shook his head, muttered something to himself, and then began to use it. The box was soon unearthed. It was not very large; it was iron bound and had been very strong before the slow years had injured it. The men contemplated the treasure awhile in blissful silence. "Pard, there's thousands of dollars here," said Injun Joe. "'Twas always said that Murrel's gang used to be around here one summer," the stranger observed. "I know it," said Injun Joe; "and this looks like it, I should say." "Now you won't need to do that job." The half-breed frowned. Said he: "You don't know me. Least you don't know all about that thing. 'Tain't robbery altogether--it's REVENGE!" and a wicked light flamed in his eyes. "I'll need your help in it. When it's finished--then Texas. Go home to your Nance and your kids, and stand by till you hear from me." "Well--if you say so; what'll we do with this--bury it again?" "Yes. [Ravishing delight overhead.] NO! by the great Sachem, no! [Profound distress overhead.] I'd nearly forgot. That pick had fresh earth on it! [The boys were sick with terror in a moment.] What business has a pick and a shovel here? What business with fresh earth on them? Who brought them here--and where are they gone? Have you heard anybody?--seen anybody? What! bury it again and leave them to come and see the ground disturbed? Not exactly--not exactly. We'll take it to my den." "Why, of course! Might have thought of that before. You mean Number One?" "No--Number Two--under the cross. The other place is bad--too common." "All right. It's nearly dark enough to start." Injun Joe got up and went about from window to window cautiously peeping out. Presently he said: "Who could have brought those tools here? Do you reckon they can be up-stairs?" The boys' breath forsook them. Injun Joe put his hand on his knife, halted a moment, undecided, and then turned toward the stairway. The boys thought of the closet, but their strength was gone. The steps came creaking up the stairs--the intolerable distress of the situation woke the stricken resolution of the lads--they were about to spring for the closet, when there was a crash of rotten timbers and Injun Joe landed on the ground amid the debris of the ruined stairway. He gathered himself up cursing, and his comrade said: "Now what's the use of all that? If it's anybody, and they're up there, let them STAY there--who cares? If they want to jump down, now, and get into trouble, who objects? It will be dark in fifteen minutes --and then let them follow us if they want to. I'm willing. In my opinion, whoever hove those things in here caught a sight of us and took us for ghosts or devils or something. I'll bet they're running yet." Joe grumbled awhile; then he agreed with his friend that what daylight was left ought to be economized in getting things ready for leaving. Shortly afterward they slipped out of the house in the deepening twilight, and moved toward the river with their precious box. Tom and Huck rose up, weak but vastly relieved, and stared after them through the chinks between the logs of the house. Follow? Not they. They were content to reach ground again without broken necks, and take the townward track over the hill. They did not talk much. They were too much absorbed in hating themselves--hating the ill luck that made them take the spade and the pick there. But for that, Injun Joe never would have suspected. He would have hidden the silver with the gold to wait there till his "revenge" was satisfied, and then he would have had the misfortune to find that money turn up missing. Bitter, bitter luck that the tools were ever brought there! They resolved to keep a lookout for that Spaniard when he should come to town spying out for chances to do his revengeful job, and follow him to "Number Two," wherever that might be. Then a ghastly thought occurred to Tom. "Revenge? What if he means US, Huck!" "Oh, don't!" said Huck, nearly fainting. They talked it all over, and as they entered town they agreed to believe that he might possibly mean somebody else--at least that he might at least mean nobody but Tom, since only Tom had testified. Very, very small comfort it was to Tom to be alone in danger! Company would be a palpable improvement, he thought. CHAPTER XXVII THE adventure of the day mightily tormented Tom's dreams that night. Four times he had his hands on that rich treasure and four times it wasted to nothingness in his fingers as sleep forsook him and wakefulness brought back the hard reality of his misfortune. As he lay in the early morning recalling the incidents of his great adventure, he noticed that they seemed curiously subdued and far away--somewhat as if they had happened in another world, or in a time long gone by. Then it occurred to him that the great adventure itself must be a dream! There was one very strong argument in favor of this idea--namely, that the quantity of coin he had seen was too vast to be real. He had never seen as much as fifty dollars in one mass before, and he was like all boys of his age and station in life, in that he imagined that all references to "hundreds" and "thousands" were mere fanciful forms of speech, and that no such sums really existed in the world. He never had supposed for a moment that so large a sum as a hundred dollars was to be found in actual money in any one's possession. If his notions of hidden treasure had been analyzed, they would have been found to consist of a handful of real dimes and a bushel of vague, splendid, ungraspable dollars. But the incidents of his adventure grew sensibly sharper and clearer under the attrition of thinking them over, and so he presently found himself leaning to the impression that the thing might not have been a dream, after all. This uncertainty must be swept away. He would snatch a hurried breakfast and go and find Huck. Huck was sitting on the gunwale of a flatboat, listlessly dangling his feet in the water and looking very melancholy. Tom concluded to let Huck lead up to the subject. If he did not do it, then the adventure would be proved to have been only a dream. "Hello, Huck!" "Hello, yourself." Silence, for a minute. "Tom, if we'd 'a' left the blame tools at the dead tree, we'd 'a' got the money. Oh, ain't it awful!" "'Tain't a dream, then, 'tain't a dream! Somehow I most wish it was. Dog'd if I don't, Huck." "What ain't a dream?" "Oh, that thing yesterday. I been half thinking it was." "Dream! If them stairs hadn't broke down you'd 'a' seen how much dream it was! I've had dreams enough all night--with that patch-eyed Spanish devil going for me all through 'em--rot him!" "No, not rot him. FIND him! Track the money!" "Tom, we'll never find him. A feller don't have only one chance for such a pile--and that one's lost. I'd feel mighty shaky if I was to see him, anyway." "Well, so'd I; but I'd like to see him, anyway--and track him out--to his Number Two." "Number Two--yes, that's it. I been thinking 'bout that. But I can't make nothing out of it. What do you reckon it is?" "I dono. It's too deep. Say, Huck--maybe it's the number of a house!" "Goody!... No, Tom, that ain't it. If it is, it ain't in this one-horse town. They ain't no numbers here." "Well, that's so. Lemme think a minute. Here--it's the number of a room--in a tavern, you know!" "Oh, that's the trick! They ain't only two taverns. We can find out quick." "You stay here, Huck, till I come." Tom was off at once. He did not care to have Huck's company in public places. He was gone half an hour. He found that in the best tavern, No. 2 had long been occupied by a young lawyer, and was still so occupied. In the less ostentatious house, No. 2 was a mystery. The tavern-keeper's young son said it was kept locked all the time, and he never saw anybody go into it or come out of it except at night; he did not know any particular reason for this state of things; had had some little curiosity, but it was rather feeble; had made the most of the mystery by entertaining himself with the idea that that room was "ha'nted"; had noticed that there was a light in there the night before. "That's what I've found out, Huck. I reckon that's the very No. 2 we're after." "I reckon it is, Tom. Now what you going to do?" "Lemme think." Tom thought a long time. Then he said: "I'll tell you. The back door of that No. 2 is the door that comes out into that little close alley between the tavern and the old rattle trap of a brick store. Now you get hold of all the door-keys you can find, and I'll nip all of auntie's, and the first dark night we'll go there and try 'em. And mind you, keep a lookout for Injun Joe, because he said he was going to drop into town and spy around once more for a chance to get his revenge. If you see him, you just follow him; and if he don't go to that No. 2, that ain't the place." "Lordy, I don't want to foller him by myself!" "Why, it'll be night, sure. He mightn't ever see you--and if he did, maybe he'd never think anything." "Well, if it's pretty dark I reckon I'll track him. I dono--I dono. I'll try." "You bet I'll follow him, if it's dark, Huck. Why, he might 'a' found out he couldn't get his revenge, and be going right after that money." "It's so, Tom, it's so. I'll foller him; I will, by jingoes!" "Now you're TALKING! Don't you ever weaken, Huck, and I won't." CHAPTER XXVIII THAT night Tom and Huck were ready for their adventure. They hung about the neighborhood of the tavern until after nine, one watching the alley at a distance and the other the tavern door. Nobody entered the alley or left it; nobody resembling the Spaniard entered or left the tavern door. The night promised to be a fair one; so Tom went home with the understanding that if a considerable degree of darkness came on, Huck was to come and "maow," whereupon he would slip out and try the keys. But the night remained clear, and Huck closed his watch and retired to bed in an empty sugar hogshead about twelve. Tuesday the boys had the same ill luck. Also Wednesday. But Thursday night promised better. Tom slipped out in good season with his aunt's old tin lantern, and a large towel to blindfold it with. He hid the lantern in Huck's sugar hogshead and the watch began. An hour before midnight the tavern closed up and its lights (the only ones thereabouts) were put out. No Spaniard had been seen. Nobody had entered or left the alley. Everything was auspicious. The blackness of darkness reigned, the perfect stillness was interrupted only by occasional mutterings of distant thunder. Tom got his lantern, lit it in the hogshead, wrapped it closely in the towel, and the two adventurers crept in the gloom toward the tavern. Huck stood sentry and Tom felt his way into the alley. Then there was a season of waiting anxiety that weighed upon Huck's spirits like a mountain. He began to wish he could see a flash from the lantern--it would frighten him, but it would at least tell him that Tom was alive yet. It seemed hours since Tom had disappeared. Surely he must have fainted; maybe he was dead; maybe his heart had burst under terror and excitement. In his uneasiness Huck found himself drawing closer and closer to the alley; fearing all sorts of dreadful things, and momentarily expecting some catastrophe to happen that would take away his breath. There was not much to take away, for he seemed only able to inhale it by thimblefuls, and his heart would soon wear itself out, the way it was beating. Suddenly there was a flash of light and Tom came tearing by him: "Run!" said he; "run, for your life!" He needn't have repeated it; once was enough; Huck was making thirty or forty miles an hour before the repetition was uttered. The boys never stopped till they reached the shed of a deserted slaughter-house at the lower end of the village. Just as they got within its shelter the storm burst and the rain poured down. As soon as Tom got his breath he said: "Huck, it was awful! I tried two of the keys, just as soft as I could; but they seemed to make such a power of racket that I couldn't hardly get my breath I was so scared. They wouldn't turn in the lock, either. Well, without noticing what I was doing, I took hold of the knob, and open comes the door! It warn't locked! I hopped in, and shook off the towel, and, GREAT CAESAR'S GHOST!" "What!--what'd you see, Tom?" "Huck, I most stepped onto Injun Joe's hand!" "No!" "Yes! He was lying there, sound asleep on the floor, with his old patch on his eye and his arms spread out." "Lordy, what did you do? Did he wake up?" "No, never budged. Drunk, I reckon. I just grabbed that towel and started!" "I'd never 'a' thought of the towel, I bet!" "Well, I would. My aunt would make me mighty sick if I lost it." "Say, Tom, did you see that box?" "Huck, I didn't wait to look around. I didn't see the box, I didn't see the cross. I didn't see anything but a bottle and a tin cup on the floor by Injun Joe; yes, I saw two barrels and lots more bottles in the room. Don't you see, now, what's the matter with that ha'nted room?" "How?" "Why, it's ha'nted with whiskey! Maybe ALL the Temperance Taverns have got a ha'nted room, hey, Huck?" "Well, I reckon maybe that's so. Who'd 'a' thought such a thing? But say, Tom, now's a mighty good time to get that box, if Injun Joe's drunk." "It is, that! You try it!" Huck shuddered. "Well, no--I reckon not." "And I reckon not, Huck. Only one bottle alongside of Injun Joe ain't enough. If there'd been three, he'd be drunk enough and I'd do it." There was a long pause for reflection, and then Tom said: "Lookyhere, Huck, less not try that thing any more till we know Injun Joe's not in there. It's too scary. Now, if we watch every night, we'll be dead sure to see him go out, some time or other, and then we'll snatch that box quicker'n lightning." "Well, I'm agreed. I'll watch the whole night long, and I'll do it every night, too, if you'll do the other part of the job." "All right, I will. All you got to do is to trot up Hooper Street a block and maow--and if I'm asleep, you throw some gravel at the window and that'll fetch me." "Agreed, and good as wheat!" "Now, Huck, the storm's over, and I'll go home. It'll begin to be daylight in a couple of hours. You go back and watch that long, will you?" "I said I would, Tom, and I will. I'll ha'nt that tavern every night for a year! I'll sleep all day and I'll stand watch all night." "That's all right. Now, where you going to sleep?" "In Ben Rogers' hayloft. He lets me, and so does his pap's nigger man, Uncle Jake. I tote water for Uncle Jake whenever he wants me to, and any time I ask him he gives me a little something to eat if he can spare it. That's a mighty good nigger, Tom. He likes me, becuz I don't ever act as if I was above him. Sometime I've set right down and eat WITH him. But you needn't tell that. A body's got to do things when he's awful hungry he wouldn't want to do as a steady thing." "Well, if I don't want you in the daytime, I'll let you sleep. I won't come bothering around. Any time you see something's up, in the night, just skip right around and maow." CHAPTER XXIX THE first thing Tom heard on Friday morning was a glad piece of news --Judge Thatcher's family had come back to town the night before. Both Injun Joe and the treasure sunk into secondary importance for a moment, and Becky took the chief place in the boy's interest. He saw her and they had an exhausting good time playing "hi-spy" and "gully-keeper" with a crowd of their school-mates. The day was completed and crowned in a peculiarly satisfactory way: Becky teased her mother to appoint the next day for the long-promised and long-delayed picnic, and she consented. The child's delight was boundless; and Tom's not more moderate. The invitations were sent out before sunset, and straightway the young folks of the village were thrown into a fever of preparation and pleasurable anticipation. Tom's excitement enabled him to keep awake until a pretty late hour, and he had good hopes of hearing Huck's "maow," and of having his treasure to astonish Becky and the picnickers with, next day; but he was disappointed. No signal came that night. Morning came, eventually, and by ten or eleven o'clock a giddy and rollicking company were gathered at Judge Thatcher's, and everything was ready for a start. It was not the custom for elderly people to mar the picnics with their presence. The children were considered safe enough under the wings of a few young ladies of eighteen and a few young gentlemen of twenty-three or thereabouts. The old steam ferryboat was chartered for the occasion; presently the gay throng filed up the main street laden with provision-baskets. Sid was sick and had to miss the fun; Mary remained at home to entertain him. The last thing Mrs. Thatcher said to Becky, was: "You'll not get back till late. Perhaps you'd better stay all night with some of the girls that live near the ferry-landing, child." "Then I'll stay with Susy Harper, mamma." "Very well. And mind and behave yourself and don't be any trouble." Presently, as they tripped along, Tom said to Becky: "Say--I'll tell you what we'll do. 'Stead of going to Joe Harper's we'll climb right up the hill and stop at the Widow Douglas'. She'll have ice-cream! She has it most every day--dead loads of it. And she'll be awful glad to have us." "Oh, that will be fun!" Then Becky reflected a moment and said: "But what will mamma say?" "How'll she ever know?" The girl turned the idea over in her mind, and said reluctantly: "I reckon it's wrong--but--" "But shucks! Your mother won't know, and so what's the harm? All she wants is that you'll be safe; and I bet you she'd 'a' said go there if she'd 'a' thought of it. I know she would!" The Widow Douglas' splendid hospitality was a tempting bait. It and Tom's persuasions presently carried the day. So it was decided to say nothing anybody about the night's programme. Presently it occurred to Tom that maybe Huck might come this very night and give the signal. The thought took a deal of the spirit out of his anticipations. Still he could not bear to give up the fun at Widow Douglas'. And why should he give it up, he reasoned--the signal did not come the night before, so why should it be any more likely to come to-night? The sure fun of the evening outweighed the uncertain treasure; and, boy-like, he determined to yield to the stronger inclination and not allow himself to think of the box of money another time that day. Three miles below town the ferryboat stopped at the mouth of a woody hollow and tied up. The crowd swarmed ashore and soon the forest distances and craggy heights echoed far and near with shoutings and laughter. All the different ways of getting hot and tired were gone through with, and by-and-by the rovers straggled back to camp fortified with responsible appetites, and then the destruction of the good things began. After the feast there was a refreshing season of rest and chat in the shade of spreading oaks. By-and-by somebody shouted: "Who's ready for the cave?" Everybody was. Bundles of candles were procured, and straightway there was a general scamper up the hill. The mouth of the cave was up the hillside--an opening shaped like a letter A. Its massive oaken door stood unbarred. Within was a small chamber, chilly as an ice-house, and walled by Nature with solid limestone that was dewy with a cold sweat. It was romantic and mysterious to stand here in the deep gloom and look out upon the green valley shining in the sun. But the impressiveness of the situation quickly wore off, and the romping began again. The moment a candle was lighted there was a general rush upon the owner of it; a struggle and a gallant defence followed, but the candle was soon knocked down or blown out, and then there was a glad clamor of laughter and a new chase. But all things have an end. By-and-by the procession went filing down the steep descent of the main avenue, the flickering rank of lights dimly revealing the lofty walls of rock almost to their point of junction sixty feet overhead. This main avenue was not more than eight or ten feet wide. Every few steps other lofty and still narrower crevices branched from it on either hand--for McDougal's cave was but a vast labyrinth of crooked aisles that ran into each other and out again and led nowhere. It was said that one might wander days and nights together through its intricate tangle of rifts and chasms, and never find the end of the cave; and that he might go down, and down, and still down, into the earth, and it was just the same--labyrinth under labyrinth, and no end to any of them. No man "knew" the cave. That was an impossible thing. Most of the young men knew a portion of it, and it was not customary to venture much beyond this known portion. Tom Sawyer knew as much of the cave as any one. The procession moved along the main avenue some three-quarters of a mile, and then groups and couples began to slip aside into branch avenues, fly along the dismal corridors, and take each other by surprise at points where the corridors joined again. Parties were able to elude each other for the space of half an hour without going beyond the "known" ground. By-and-by, one group after another came straggling back to the mouth of the cave, panting, hilarious, smeared from head to foot with tallow drippings, daubed with clay, and entirely delighted with the success of the day. Then they were astonished to find that they had been taking no note of time and that night was about at hand. The clanging bell had been calling for half an hour. However, this sort of close to the day's adventures was romantic and therefore satisfactory. When the ferryboat with her wild freight pushed into the stream, nobody cared sixpence for the wasted time but the captain of the craft. Huck was already upon his watch when the ferryboat's lights went glinting past the wharf. He heard no noise on board, for the young people were as subdued and still as people usually are who are nearly tired to death. He wondered what boat it was, and why she did not stop at the wharf--and then he dropped her out of his mind and put his attention upon his business. The night was growing cloudy and dark. Ten o'clock came, and the noise of vehicles ceased, scattered lights began to wink out, all straggling foot-passengers disappeared, the village betook itself to its slumbers and left the small watcher alone with the silence and the ghosts. Eleven o'clock came, and the tavern lights were put out; darkness everywhere, now. Huck waited what seemed a weary long time, but nothing happened. His faith was weakening. Was there any use? Was there really any use? Why not give it up and turn in? A noise fell upon his ear. He was all attention in an instant. The alley door closed softly. He sprang to the corner of the brick store. The next moment two men brushed by him, and one seemed to have something under his arm. It must be that box! So they were going to remove the treasure. Why call Tom now? It would be absurd--the men would get away with the box and never be found again. No, he would stick to their wake and follow them; he would trust to the darkness for security from discovery. So communing with himself, Huck stepped out and glided along behind the men, cat-like, with bare feet, allowing them to keep just far enough ahead not to be invisible. They moved up the river street three blocks, then turned to the left up a cross-street. They went straight ahead, then, until they came to the path that led up Cardiff Hill; this they took. They passed by the old Welshman's house, half-way up the hill, without hesitating, and still climbed upward. Good, thought Huck, they will bury it in the old quarry. But they never stopped at the quarry. They passed on, up the summit. They plunged into the narrow path between the tall sumach bushes, and were at once hidden in the gloom. Huck closed up and shortened his distance, now, for they would never be able to see him. He trotted along awhile; then slackened his pace, fearing he was gaining too fast; moved on a piece, then stopped altogether; listened; no sound; none, save that he seemed to hear the beating of his own heart. The hooting of an owl came over the hill--ominous sound! But no footsteps. Heavens, was everything lost! He was about to spring with winged feet, when a man cleared his throat not four feet from him! Huck's heart shot into his throat, but he swallowed it again; and then he stood there shaking as if a dozen agues had taken charge of him at once, and so weak that he thought he must surely fall to the ground. He knew where he was. He knew he was within five steps of the stile leading into Widow Douglas' grounds. Very well, he thought, let them bury it there; it won't be hard to find. Now there was a voice--a very low voice--Injun Joe's: "Damn her, maybe she's got company--there's lights, late as it is." "I can't see any." This was that stranger's voice--the stranger of the haunted house. A deadly chill went to Huck's heart--this, then, was the "revenge" job! His thought was, to fly. Then he remembered that the Widow Douglas had been kind to him more than once, and maybe these men were going to murder her. He wished he dared venture to warn her; but he knew he didn't dare--they might come and catch him. He thought all this and more in the moment that elapsed between the stranger's remark and Injun Joe's next--which was-- "Because the bush is in your way. Now--this way--now you see, don't you?" "Yes. Well, there IS company there, I reckon. Better give it up." "Give it up, and I just leaving this country forever! Give it up and maybe never have another chance. I tell you again, as I've told you before, I don't care for her swag--you may have it. But her husband was rough on me--many times he was rough on me--and mainly he was the justice of the peace that jugged me for a vagrant. And that ain't all. It ain't a millionth part of it! He had me HORSEWHIPPED!--horsewhipped in front of the jail, like a nigger!--with all the town looking on! HORSEWHIPPED!--do you understand? He took advantage of me and died. But I'll take it out of HER." "Oh, don't kill her! Don't do that!" "Kill? Who said anything about killing? I would kill HIM if he was here; but not her. When you want to get revenge on a woman you don't kill her--bosh! you go for her looks. You slit her nostrils--you notch her ears like a sow!" "By God, that's--" "Keep your opinion to yourself! It will be safest for you. I'll tie her to the bed. If she bleeds to death, is that my fault? I'll not cry, if she does. My friend, you'll help me in this thing--for MY sake --that's why you're here--I mightn't be able alone. If you flinch, I'll kill you. Do you understand that? And if I have to kill you, I'll kill her--and then I reckon nobody'll ever know much about who done this business." "Well, if it's got to be done, let's get at it. The quicker the better--I'm all in a shiver." "Do it NOW? And company there? Look here--I'll get suspicious of you, first thing you know. No--we'll wait till the lights are out--there's no hurry." Huck felt that a silence was going to ensue--a thing still more awful than any amount of murderous talk; so he held his breath and stepped gingerly back; planted his foot carefully and firmly, after balancing, one-legged, in a precarious way and almost toppling over, first on one side and then on the other. He took another step back, with the same elaboration and the same risks; then another and another, and--a twig snapped under his foot! His breath stopped and he listened. There was no sound--the stillness was perfect. His gratitude was measureless. Now he turned in his tracks, between the walls of sumach bushes--turned himself as carefully as if he were a ship--and then stepped quickly but cautiously along. When he emerged at the quarry he felt secure, and so he picked up his nimble heels and flew. Down, down he sped, till he reached the Welshman's. He banged at the door, and presently the heads of the old man and his two stalwart sons were thrust from windows. "What's the row there? Who's banging? What do you want?" "Let me in--quick! I'll tell everything." "Why, who are you?" "Huckleberry Finn--quick, let me in!" "Huckleberry Finn, indeed! It ain't a name to open many doors, I judge! But let him in, lads, and let's see what's the trouble." "Please don't ever tell I told you," were Huck's first words when he got in. "Please don't--I'd be killed, sure--but the widow's been good friends to me sometimes, and I want to tell--I WILL tell if you'll promise you won't ever say it was me." "By George, he HAS got something to tell, or he wouldn't act so!" exclaimed the old man; "out with it and nobody here'll ever tell, lad." Three minutes later the old man and his sons, well armed, were up the hill, and just entering the sumach path on tiptoe, their weapons in their hands. Huck accompanied them no further. He hid behind a great bowlder and fell to listening. There was a lagging, anxious silence, and then all of a sudden there was an explosion of firearms and a cry. Huck waited for no particulars. He sprang away and sped down the hill as fast as his legs could carry him. CHAPTER XXX AS the earliest suspicion of dawn appeared on Sunday morning, Huck came groping up the hill and rapped gently at the old Welshman's door. The inmates were asleep, but it was a sleep that was set on a hair-trigger, on account of the exciting episode of the night. A call came from a window: "Who's there!" Huck's scared voice answered in a low tone: "Please let me in! It's only Huck Finn!" "It's a name that can open this door night or day, lad!--and welcome!" These were strange words to the vagabond boy's ears, and the pleasantest he had ever heard. He could not recollect that the closing word had ever been applied in his case before. The door was quickly unlocked, and he entered. Huck was given a seat and the old man and his brace of tall sons speedily dressed themselves. "Now, my boy, I hope you're good and hungry, because breakfast will be ready as soon as the sun's up, and we'll have a piping hot one, too --make yourself easy about that! I and the boys hoped you'd turn up and stop here last night." "I was awful scared," said Huck, "and I run. I took out when the pistols went off, and I didn't stop for three mile. I've come now becuz I wanted to know about it, you know; and I come before daylight becuz I didn't want to run across them devils, even if they was dead." "Well, poor chap, you do look as if you'd had a hard night of it--but there's a bed here for you when you've had your breakfast. No, they ain't dead, lad--we are sorry enough for that. You see we knew right where to put our hands on them, by your description; so we crept along on tiptoe till we got within fifteen feet of them--dark as a cellar that sumach path was--and just then I found I was going to sneeze. It was the meanest kind of luck! I tried to keep it back, but no use --'twas bound to come, and it did come! I was in the lead with my pistol raised, and when the sneeze started those scoundrels a-rustling to get out of the path, I sung out, 'Fire boys!' and blazed away at the place where the rustling was. So did the boys. But they were off in a jiffy, those villains, and we after them, down through the woods. I judge we never touched them. They fired a shot apiece as they started, but their bullets whizzed by and didn't do us any harm. As soon as we lost the sound of their feet we quit chasing, and went down and stirred up the constables. They got a posse together, and went off to guard the river bank, and as soon as it is light the sheriff and a gang are going to beat up the woods. My boys will be with them presently. I wish we had some sort of description of those rascals--'twould help a good deal. But you couldn't see what they were like, in the dark, lad, I suppose?" "Oh yes; I saw them down-town and follered them." "Splendid! Describe them--describe them, my boy!" "One's the old deaf and dumb Spaniard that's ben around here once or twice, and t'other's a mean-looking, ragged--" "That's enough, lad, we know the men! Happened on them in the woods back of the widow's one day, and they slunk away. Off with you, boys, and tell the sheriff--get your breakfast to-morrow morning!" The Welshman's sons departed at once. As they were leaving the room Huck sprang up and exclaimed: "Oh, please don't tell ANYbody it was me that blowed on them! Oh, please!" "All right if you say it, Huck, but you ought to have the credit of what you did." "Oh no, no! Please don't tell!" When the young men were gone, the old Welshman said: "They won't tell--and I won't. But why don't you want it known?" Huck would not explain, further than to say that he already knew too much about one of those men and would not have the man know that he knew anything against him for the whole world--he would be killed for knowing it, sure. The old man promised secrecy once more, and said: "How did you come to follow these fellows, lad? Were they looking suspicious?" Huck was silent while he framed a duly cautious reply. Then he said: "Well, you see, I'm a kind of a hard lot,--least everybody says so, and I don't see nothing agin it--and sometimes I can't sleep much, on account of thinking about it and sort of trying to strike out a new way of doing. That was the way of it last night. I couldn't sleep, and so I come along up-street 'bout midnight, a-turning it all over, and when I got to that old shackly brick store by the Temperance Tavern, I backed up agin the wall to have another think. Well, just then along comes these two chaps slipping along close by me, with something under their arm, and I reckoned they'd stole it. One was a-smoking, and t'other one wanted a light; so they stopped right before me and the cigars lit up their faces and I see that the big one was the deaf and dumb Spaniard, by his white whiskers and the patch on his eye, and t'other one was a rusty, ragged-looking devil." "Could you see the rags by the light of the cigars?" This staggered Huck for a moment. Then he said: "Well, I don't know--but somehow it seems as if I did." "Then they went on, and you--" "Follered 'em--yes. That was it. I wanted to see what was up--they sneaked along so. I dogged 'em to the widder's stile, and stood in the dark and heard the ragged one beg for the widder, and the Spaniard swear he'd spile her looks just as I told you and your two--" "What! The DEAF AND DUMB man said all that!" Huck had made another terrible mistake! He was trying his best to keep the old man from getting the faintest hint of who the Spaniard might be, and yet his tongue seemed determined to get him into trouble in spite of all he could do. He made several efforts to creep out of his scrape, but the old man's eye was upon him and he made blunder after blunder. Presently the Welshman said: "My boy, don't be afraid of me. I wouldn't hurt a hair of your head for all the world. No--I'd protect you--I'd protect you. This Spaniard is not deaf and dumb; you've let that slip without intending it; you can't cover that up now. You know something about that Spaniard that you want to keep dark. Now trust me--tell me what it is, and trust me --I won't betray you." Huck looked into the old man's honest eyes a moment, then bent over and whispered in his ear: "'Tain't a Spaniard--it's Injun Joe!" The Welshman almost jumped out of his chair. In a moment he said: "It's all plain enough, now. When you talked about notching ears and slitting noses I judged that that was your own embellishment, because white men don't take that sort of revenge. But an Injun! That's a different matter altogether." During breakfast the talk went on, and in the course of it the old man said that the last thing which he and his sons had done, before going to bed, was to get a lantern and examine the stile and its vicinity for marks of blood. They found none, but captured a bulky bundle of-- "Of WHAT?" If the words had been lightning they could not have leaped with a more stunning suddenness from Huck's blanched lips. His eyes were staring wide, now, and his breath suspended--waiting for the answer. The Welshman started--stared in return--three seconds--five seconds--ten --then replied: "Of burglar's tools. Why, what's the MATTER with you?" Huck sank back, panting gently, but deeply, unutterably grateful. The Welshman eyed him gravely, curiously--and presently said: "Yes, burglar's tools. That appears to relieve you a good deal. But what did give you that turn? What were YOU expecting we'd found?" Huck was in a close place--the inquiring eye was upon him--he would have given anything for material for a plausible answer--nothing suggested itself--the inquiring eye was boring deeper and deeper--a senseless reply offered--there was no time to weigh it, so at a venture he uttered it--feebly: "Sunday-school books, maybe." Poor Huck was too distressed to smile, but the old man laughed loud and joyously, shook up the details of his anatomy from head to foot, and ended by saying that such a laugh was money in a-man's pocket, because it cut down the doctor's bill like everything. Then he added: "Poor old chap, you're white and jaded--you ain't well a bit--no wonder you're a little flighty and off your balance. But you'll come out of it. Rest and sleep will fetch you out all right, I hope." Huck was irritated to think he had been such a goose and betrayed such a suspicious excitement, for he had dropped the idea that the parcel brought from the tavern was the treasure, as soon as he had heard the talk at the widow's stile. He had only thought it was not the treasure, however--he had not known that it wasn't--and so the suggestion of a captured bundle was too much for his self-possession. But on the whole he felt glad the little episode had happened, for now he knew beyond all question that that bundle was not THE bundle, and so his mind was at rest and exceedingly comfortable. In fact, everything seemed to be drifting just in the right direction, now; the treasure must be still in No. 2, the men would be captured and jailed that day, and he and Tom could seize the gold that night without any trouble or any fear of interruption. Just as breakfast was completed there was a knock at the door. Huck jumped for a hiding-place, for he had no mind to be connected even remotely with the late event. The Welshman admitted several ladies and gentlemen, among them the Widow Douglas, and noticed that groups of citizens were climbing up the hill--to stare at the stile. So the news had spread. The Welshman had to tell the story of the night to the visitors. The widow's gratitude for her preservation was outspoken. "Don't say a word about it, madam. There's another that you're more beholden to than you are to me and my boys, maybe, but he don't allow me to tell his name. We wouldn't have been there but for him." Of course this excited a curiosity so vast that it almost belittled the main matter--but the Welshman allowed it to eat into the vitals of his visitors, and through them be transmitted to the whole town, for he refused to part with his secret. When all else had been learned, the widow said: "I went to sleep reading in bed and slept straight through all that noise. Why didn't you come and wake me?" "We judged it warn't worth while. Those fellows warn't likely to come again--they hadn't any tools left to work with, and what was the use of waking you up and scaring you to death? My three negro men stood guard at your house all the rest of the night. They've just come back." More visitors came, and the story had to be told and retold for a couple of hours more. There was no Sabbath-school during day-school vacation, but everybody was early at church. The stirring event was well canvassed. News came that not a sign of the two villains had been yet discovered. When the sermon was finished, Judge Thatcher's wife dropped alongside of Mrs. Harper as she moved down the aisle with the crowd and said: "Is my Becky going to sleep all day? I just expected she would be tired to death." "Your Becky?" "Yes," with a startled look--"didn't she stay with you last night?" "Why, no." Mrs. Thatcher turned pale, and sank into a pew, just as Aunt Polly, talking briskly with a friend, passed by. Aunt Polly said: "Good-morning, Mrs. Thatcher. Good-morning, Mrs. Harper. I've got a boy that's turned up missing. I reckon my Tom stayed at your house last night--one of you. And now he's afraid to come to church. I've got to settle with him." Mrs. Thatcher shook her head feebly and turned paler than ever. "He didn't stay with us," said Mrs. Harper, beginning to look uneasy. A marked anxiety came into Aunt Polly's face. "Joe Harper, have you seen my Tom this morning?" "No'm." "When did you see him last?" Joe tried to remember, but was not sure he could say. The people had stopped moving out of church. Whispers passed along, and a boding uneasiness took possession of every countenance. Children were anxiously questioned, and young teachers. They all said they had not noticed whether Tom and Becky were on board the ferryboat on the homeward trip; it was dark; no one thought of inquiring if any one was missing. One young man finally blurted out his fear that they were still in the cave! Mrs. Thatcher swooned away. Aunt Polly fell to crying and wringing her hands. The alarm swept from lip to lip, from group to group, from street to street, and within five minutes the bells were wildly clanging and the whole town was up! The Cardiff Hill episode sank into instant insignificance, the burglars were forgotten, horses were saddled, skiffs were manned, the ferryboat ordered out, and before the horror was half an hour old, two hundred men were pouring down highroad and river toward the cave. All the long afternoon the village seemed empty and dead. Many women visited Aunt Polly and Mrs. Thatcher and tried to comfort them. They cried with them, too, and that was still better than words. All the tedious night the town waited for news; but when the morning dawned at last, all the word that came was, "Send more candles--and send food." Mrs. Thatcher was almost crazed; and Aunt Polly, also. Judge Thatcher sent messages of hope and encouragement from the cave, but they conveyed no real cheer. The old Welshman came home toward daylight, spattered with candle-grease, smeared with clay, and almost worn out. He found Huck still in the bed that had been provided for him, and delirious with fever. The physicians were all at the cave, so the Widow Douglas came and took charge of the patient. She said she would do her best by him, because, whether he was good, bad, or indifferent, he was the Lord's, and nothing that was the Lord's was a thing to be neglected. The Welshman said Huck had good spots in him, and the widow said: "You can depend on it. That's the Lord's mark. He don't leave it off. He never does. Puts it somewhere on every creature that comes from his hands." Early in the forenoon parties of jaded men began to straggle into the village, but the strongest of the citizens continued searching. All the news that could be gained was that remotenesses of the cavern were being ransacked that had never been visited before; that every corner and crevice was going to be thoroughly searched; that wherever one wandered through the maze of passages, lights were to be seen flitting hither and thither in the distance, and shoutings and pistol-shots sent their hollow reverberations to the ear down the sombre aisles. In one place, far from the section usually traversed by tourists, the names "BECKY & TOM" had been found traced upon the rocky wall with candle-smoke, and near at hand a grease-soiled bit of ribbon. Mrs. Thatcher recognized the ribbon and cried over it. She said it was the last relic she should ever have of her child; and that no other memorial of her could ever be so precious, because this one parted latest from the living body before the awful death came. Some said that now and then, in the cave, a far-away speck of light would glimmer, and then a glorious shout would burst forth and a score of men go trooping down the echoing aisle--and then a sickening disappointment always followed; the children were not there; it was only a searcher's light. Three dreadful days and nights dragged their tedious hours along, and the village sank into a hopeless stupor. No one had heart for anything. The accidental discovery, just made, that the proprietor of the Temperance Tavern kept liquor on his premises, scarcely fluttered the public pulse, tremendous as the fact was. In a lucid interval, Huck feebly led up to the subject of taverns, and finally asked--dimly dreading the worst--if anything had been discovered at the Temperance Tavern since he had been ill. "Yes," said the widow. Huck started up in bed, wild-eyed: "What? What was it?" "Liquor!--and the place has been shut up. Lie down, child--what a turn you did give me!" "Only tell me just one thing--only just one--please! Was it Tom Sawyer that found it?" The widow burst into tears. "Hush, hush, child, hush! I've told you before, you must NOT talk. You are very, very sick!" Then nothing but liquor had been found; there would have been a great powwow if it had been the gold. So the treasure was gone forever--gone forever! But what could she be crying about? Curious that she should cry. These thoughts worked their dim way through Huck's mind, and under the weariness they gave him he fell asleep. The widow said to herself: "There--he's asleep, poor wreck. Tom Sawyer find it! Pity but somebody could find Tom Sawyer! Ah, there ain't many left, now, that's got hope enough, or strength enough, either, to go on searching." CHAPTER XXXI NOW to return to Tom and Becky's share in the picnic. They tripped along the murky aisles with the rest of the company, visiting the familiar wonders of the cave--wonders dubbed with rather over-descriptive names, such as "The Drawing-Room," "The Cathedral," "Aladdin's Palace," and so on. Presently the hide-and-seek frolicking began, and Tom and Becky engaged in it with zeal until the exertion began to grow a trifle wearisome; then they wandered down a sinuous avenue holding their candles aloft and reading the tangled web-work of names, dates, post-office addresses, and mottoes with which the rocky walls had been frescoed (in candle-smoke). Still drifting along and talking, they scarcely noticed that they were now in a part of the cave whose walls were not frescoed. They smoked their own names under an overhanging shelf and moved on. Presently they came to a place where a little stream of water, trickling over a ledge and carrying a limestone sediment with it, had, in the slow-dragging ages, formed a laced and ruffled Niagara in gleaming and imperishable stone. Tom squeezed his small body behind it in order to illuminate it for Becky's gratification. He found that it curtained a sort of steep natural stairway which was enclosed between narrow walls, and at once the ambition to be a discoverer seized him. Becky responded to his call, and they made a smoke-mark for future guidance, and started upon their quest. They wound this way and that, far down into the secret depths of the cave, made another mark, and branched off in search of novelties to tell the upper world about. In one place they found a spacious cavern, from whose ceiling depended a multitude of shining stalactites of the length and circumference of a man's leg; they walked all about it, wondering and admiring, and presently left it by one of the numerous passages that opened into it. This shortly brought them to a bewitching spring, whose basin was incrusted with a frostwork of glittering crystals; it was in the midst of a cavern whose walls were supported by many fantastic pillars which had been formed by the joining of great stalactites and stalagmites together, the result of the ceaseless water-drip of centuries. Under the roof vast knots of bats had packed themselves together, thousands in a bunch; the lights disturbed the creatures and they came flocking down by hundreds, squeaking and darting furiously at the candles. Tom knew their ways and the danger of this sort of conduct. He seized Becky's hand and hurried her into the first corridor that offered; and none too soon, for a bat struck Becky's light out with its wing while she was passing out of the cavern. The bats chased the children a good distance; but the fugitives plunged into every new passage that offered, and at last got rid of the perilous things. Tom found a subterranean lake, shortly, which stretched its dim length away until its shape was lost in the shadows. He wanted to explore its borders, but concluded that it would be best to sit down and rest awhile, first. Now, for the first time, the deep stillness of the place laid a clammy hand upon the spirits of the children. Becky said: "Why, I didn't notice, but it seems ever so long since I heard any of the others." "Come to think, Becky, we are away down below them--and I don't know how far away north, or south, or east, or whichever it is. We couldn't hear them here." Becky grew apprehensive. "I wonder how long we've been down here, Tom? We better start back." "Yes, I reckon we better. P'raps we better." "Can you find the way, Tom? It's all a mixed-up crookedness to me." "I reckon I could find it--but then the bats. If they put our candles out it will be an awful fix. Let's try some other way, so as not to go through there." "Well. But I hope we won't get lost. It would be so awful!" and the girl shuddered at the thought of the dreadful possibilities. They started through a corridor, and traversed it in silence a long way, glancing at each new opening, to see if there was anything familiar about the look of it; but they were all strange. Every time Tom made an examination, Becky would watch his face for an encouraging sign, and he would say cheerily: "Oh, it's all right. This ain't the one, but we'll come to it right away!" But he felt less and less hopeful with each failure, and presently began to turn off into diverging avenues at sheer random, in desperate hope of finding the one that was wanted. He still said it was "all right," but there was such a leaden dread at his heart that the words had lost their ring and sounded just as if he had said, "All is lost!" Becky clung to his side in an anguish of fear, and tried hard to keep back the tears, but they would come. At last she said: "Oh, Tom, never mind the bats, let's go back that way! We seem to get worse and worse off all the time." "Listen!" said he. Profound silence; silence so deep that even their breathings were conspicuous in the hush. Tom shouted. The call went echoing down the empty aisles and died out in the distance in a faint sound that resembled a ripple of mocking laughter. "Oh, don't do it again, Tom, it is too horrid," said Becky. "It is horrid, but I better, Becky; they might hear us, you know," and he shouted again. The "might" was even a chillier horror than the ghostly laughter, it so confessed a perishing hope. The children stood still and listened; but there was no result. Tom turned upon the back track at once, and hurried his steps. It was but a little while before a certain indecision in his manner revealed another fearful fact to Becky--he could not find his way back! "Oh, Tom, you didn't make any marks!" "Becky, I was such a fool! Such a fool! I never thought we might want to come back! No--I can't find the way. It's all mixed up." "Tom, Tom, we're lost! we're lost! We never can get out of this awful place! Oh, why DID we ever leave the others!" She sank to the ground and burst into such a frenzy of crying that Tom was appalled with the idea that she might die, or lose her reason. He sat down by her and put his arms around her; she buried her face in his bosom, she clung to him, she poured out her terrors, her unavailing regrets, and the far echoes turned them all to jeering laughter. Tom begged her to pluck up hope again, and she said she could not. He fell to blaming and abusing himself for getting her into this miserable situation; this had a better effect. She said she would try to hope again, she would get up and follow wherever he might lead if only he would not talk like that any more. For he was no more to blame than she, she said. So they moved on again--aimlessly--simply at random--all they could do was to move, keep moving. For a little while, hope made a show of reviving--not with any reason to back it, but only because it is its nature to revive when the spring has not been taken out of it by age and familiarity with failure. By-and-by Tom took Becky's candle and blew it out. This economy meant so much! Words were not needed. Becky understood, and her hope died again. She knew that Tom had a whole candle and three or four pieces in his pockets--yet he must economize. By-and-by, fatigue began to assert its claims; the children tried to pay attention, for it was dreadful to think of sitting down when time was grown to be so precious, moving, in some direction, in any direction, was at least progress and might bear fruit; but to sit down was to invite death and shorten its pursuit. At last Becky's frail limbs refused to carry her farther. She sat down. Tom rested with her, and they talked of home, and the friends there, and the comfortable beds and, above all, the light! Becky cried, and Tom tried to think of some way of comforting her, but all his encouragements were grown threadbare with use, and sounded like sarcasms. Fatigue bore so heavily upon Becky that she drowsed off to sleep. Tom was grateful. He sat looking into her drawn face and saw it grow smooth and natural under the influence of pleasant dreams; and by-and-by a smile dawned and rested there. The peaceful face reflected somewhat of peace and healing into his own spirit, and his thoughts wandered away to bygone times and dreamy memories. While he was deep in his musings, Becky woke up with a breezy little laugh--but it was stricken dead upon her lips, and a groan followed it. "Oh, how COULD I sleep! I wish I never, never had waked! No! No, I don't, Tom! Don't look so! I won't say it again." "I'm glad you've slept, Becky; you'll feel rested, now, and we'll find the way out." "We can try, Tom; but I've seen such a beautiful country in my dream. I reckon we are going there." "Maybe not, maybe not. Cheer up, Becky, and let's go on trying." They rose up and wandered along, hand in hand and hopeless. They tried to estimate how long they had been in the cave, but all they knew was that it seemed days and weeks, and yet it was plain that this could not be, for their candles were not gone yet. A long time after this--they could not tell how long--Tom said they must go softly and listen for dripping water--they must find a spring. They found one presently, and Tom said it was time to rest again. Both were cruelly tired, yet Becky said she thought she could go a little farther. She was surprised to hear Tom dissent. She could not understand it. They sat down, and Tom fastened his candle to the wall in front of them with some clay. Thought was soon busy; nothing was said for some time. Then Becky broke the silence: "Tom, I am so hungry!" Tom took something out of his pocket. "Do you remember this?" said he. Becky almost smiled. "It's our wedding-cake, Tom." "Yes--I wish it was as big as a barrel, for it's all we've got." "I saved it from the picnic for us to dream on, Tom, the way grown-up people do with wedding-cake--but it'll be our--" She dropped the sentence where it was. Tom divided the cake and Becky ate with good appetite, while Tom nibbled at his moiety. There was abundance of cold water to finish the feast with. By-and-by Becky suggested that they move on again. Tom was silent a moment. Then he said: "Becky, can you bear it if I tell you something?" Becky's face paled, but she thought she could. "Well, then, Becky, we must stay here, where there's water to drink. That little piece is our last candle!" Becky gave loose to tears and wailings. Tom did what he could to comfort her, but with little effect. At length Becky said: "Tom!" "Well, Becky?" "They'll miss us and hunt for us!" "Yes, they will! Certainly they will!" "Maybe they're hunting for us now, Tom." "Why, I reckon maybe they are. I hope they are." "When would they miss us, Tom?" "When they get back to the boat, I reckon." "Tom, it might be dark then--would they notice we hadn't come?" "I don't know. But anyway, your mother would miss you as soon as they got home." A frightened look in Becky's face brought Tom to his senses and he saw that he had made a blunder. Becky was not to have gone home that night! The children became silent and thoughtful. In a moment a new burst of grief from Becky showed Tom that the thing in his mind had struck hers also--that the Sabbath morning might be half spent before Mrs. Thatcher discovered that Becky was not at Mrs. Harper's. The children fastened their eyes upon their bit of candle and watched it melt slowly and pitilessly away; saw the half inch of wick stand alone at last; saw the feeble flame rise and fall, climb the thin column of smoke, linger at its top a moment, and then--the horror of utter darkness reigned! How long afterward it was that Becky came to a slow consciousness that she was crying in Tom's arms, neither could tell. All that they knew was, that after what seemed a mighty stretch of time, both awoke out of a dead stupor of sleep and resumed their miseries once more. Tom said it might be Sunday, now--maybe Monday. He tried to get Becky to talk, but her sorrows were too oppressive, all her hopes were gone. Tom said that they must have been missed long ago, and no doubt the search was going on. He would shout and maybe some one would come. He tried it; but in the darkness the distant echoes sounded so hideously that he tried it no more. The hours wasted away, and hunger came to torment the captives again. A portion of Tom's half of the cake was left; they divided and ate it. But they seemed hungrier than before. The poor morsel of food only whetted desire. By-and-by Tom said: "SH! Did you hear that?" Both held their breath and listened. There was a sound like the faintest, far-off shout. Instantly Tom answered it, and leading Becky by the hand, started groping down the corridor in its direction. Presently he listened again; again the sound was heard, and apparently a little nearer. "It's them!" said Tom; "they're coming! Come along, Becky--we're all right now!" The joy of the prisoners was almost overwhelming. Their speed was slow, however, because pitfalls were somewhat common, and had to be guarded against. They shortly came to one and had to stop. It might be three feet deep, it might be a hundred--there was no passing it at any rate. Tom got down on his breast and reached as far down as he could. No bottom. They must stay there and wait until the searchers came. They listened; evidently the distant shoutings were growing more distant! a moment or two more and they had gone altogether. The heart-sinking misery of it! Tom whooped until he was hoarse, but it was of no use. He talked hopefully to Becky; but an age of anxious waiting passed and no sounds came again. The children groped their way back to the spring. The weary time dragged on; they slept again, and awoke famished and woe-stricken. Tom believed it must be Tuesday by this time. Now an idea struck him. There were some side passages near at hand. It would be better to explore some of these than bear the weight of the heavy time in idleness. He took a kite-line from his pocket, tied it to a projection, and he and Becky started, Tom in the lead, unwinding the line as he groped along. At the end of twenty steps the corridor ended in a "jumping-off place." Tom got down on his knees and felt below, and then as far around the corner as he could reach with his hands conveniently; he made an effort to stretch yet a little farther to the right, and at that moment, not twenty yards away, a human hand, holding a candle, appeared from behind a rock! Tom lifted up a glorious shout, and instantly that hand was followed by the body it belonged to--Injun Joe's! Tom was paralyzed; he could not move. He was vastly gratified the next moment, to see the "Spaniard" take to his heels and get himself out of sight. Tom wondered that Joe had not recognized his voice and come over and killed him for testifying in court. But the echoes must have disguised the voice. Without doubt, that was it, he reasoned. Tom's fright weakened every muscle in his body. He said to himself that if he had strength enough to get back to the spring he would stay there, and nothing should tempt him to run the risk of meeting Injun Joe again. He was careful to keep from Becky what it was he had seen. He told her he had only shouted "for luck." But hunger and wretchedness rise superior to fears in the long run. Another tedious wait at the spring and another long sleep brought changes. The children awoke tortured with a raging hunger. Tom believed that it must be Wednesday or Thursday or even Friday or Saturday, now, and that the search had been given over. He proposed to explore another passage. He felt willing to risk Injun Joe and all other terrors. But Becky was very weak. She had sunk into a dreary apathy and would not be roused. She said she would wait, now, where she was, and die--it would not be long. She told Tom to go with the kite-line and explore if he chose; but she implored him to come back every little while and speak to her; and she made him promise that when the awful time came, he would stay by her and hold her hand until all was over. Tom kissed her, with a choking sensation in his throat, and made a show of being confident of finding the searchers or an escape from the cave; then he took the kite-line in his hand and went groping down one of the passages on his hands and knees, distressed with hunger and sick with bodings of coming doom. CHAPTER XXXII TUESDAY afternoon came, and waned to the twilight. The village of St. Petersburg still mourned. The lost children had not been found. Public prayers had been offered up for them, and many and many a private prayer that had the petitioner's whole heart in it; but still no good news came from the cave. The majority of the searchers had given up the quest and gone back to their daily avocations, saying that it was plain the children could never be found. Mrs. Thatcher was very ill, and a great part of the time delirious. People said it was heartbreaking to hear her call her child, and raise her head and listen a whole minute at a time, then lay it wearily down again with a moan. Aunt Polly had drooped into a settled melancholy, and her gray hair had grown almost white. The village went to its rest on Tuesday night, sad and forlorn. Away in the middle of the night a wild peal burst from the village bells, and in a moment the streets were swarming with frantic half-clad people, who shouted, "Turn out! turn out! they're found! they're found!" Tin pans and horns were added to the din, the population massed itself and moved toward the river, met the children coming in an open carriage drawn by shouting citizens, thronged around it, joined its homeward march, and swept magnificently up the main street roaring huzzah after huzzah! The village was illuminated; nobody went to bed again; it was the greatest night the little town had ever seen. During the first half-hour a procession of villagers filed through Judge Thatcher's house, seized the saved ones and kissed them, squeezed Mrs. Thatcher's hand, tried to speak but couldn't--and drifted out raining tears all over the place. Aunt Polly's happiness was complete, and Mrs. Thatcher's nearly so. It would be complete, however, as soon as the messenger dispatched with the great news to the cave should get the word to her husband. Tom lay upon a sofa with an eager auditory about him and told the history of the wonderful adventure, putting in many striking additions to adorn it withal; and closed with a description of how he left Becky and went on an exploring expedition; how he followed two avenues as far as his kite-line would reach; how he followed a third to the fullest stretch of the kite-line, and was about to turn back when he glimpsed a far-off speck that looked like daylight; dropped the line and groped toward it, pushed his head and shoulders through a small hole, and saw the broad Mississippi rolling by! And if it had only happened to be night he would not have seen that speck of daylight and would not have explored that passage any more! He told how he went back for Becky and broke the good news and she told him not to fret her with such stuff, for she was tired, and knew she was going to die, and wanted to. He described how he labored with her and convinced her; and how she almost died for joy when she had groped to where she actually saw the blue speck of daylight; how he pushed his way out at the hole and then helped her out; how they sat there and cried for gladness; how some men came along in a skiff and Tom hailed them and told them their situation and their famished condition; how the men didn't believe the wild tale at first, "because," said they, "you are five miles down the river below the valley the cave is in" --then took them aboard, rowed to a house, gave them supper, made them rest till two or three hours after dark and then brought them home. Before day-dawn, Judge Thatcher and the handful of searchers with him were tracked out, in the cave, by the twine clews they had strung behind them, and informed of the great news. Three days and nights of toil and hunger in the cave were not to be shaken off at once, as Tom and Becky soon discovered. They were bedridden all of Wednesday and Thursday, and seemed to grow more and more tired and worn, all the time. Tom got about, a little, on Thursday, was down-town Friday, and nearly as whole as ever Saturday; but Becky did not leave her room until Sunday, and then she looked as if she had passed through a wasting illness. Tom learned of Huck's sickness and went to see him on Friday, but could not be admitted to the bedroom; neither could he on Saturday or Sunday. He was admitted daily after that, but was warned to keep still about his adventure and introduce no exciting topic. The Widow Douglas stayed by to see that he obeyed. At home Tom learned of the Cardiff Hill event; also that the "ragged man's" body had eventually been found in the river near the ferry-landing; he had been drowned while trying to escape, perhaps. About a fortnight after Tom's rescue from the cave, he started off to visit Huck, who had grown plenty strong enough, now, to hear exciting talk, and Tom had some that would interest him, he thought. Judge Thatcher's house was on Tom's way, and he stopped to see Becky. The Judge and some friends set Tom to talking, and some one asked him ironically if he wouldn't like to go to the cave again. Tom said he thought he wouldn't mind it. The Judge said: "Well, there are others just like you, Tom, I've not the least doubt. But we have taken care of that. Nobody will get lost in that cave any more." "Why?" "Because I had its big door sheathed with boiler iron two weeks ago, and triple-locked--and I've got the keys." Tom turned as white as a sheet. "What's the matter, boy! Here, run, somebody! Fetch a glass of water!" The water was brought and thrown into Tom's face. "Ah, now you're all right. What was the matter with you, Tom?" "Oh, Judge, Injun Joe's in the cave!" CHAPTER XXXIII WITHIN a few minutes the news had spread, and a dozen skiff-loads of men were on their way to McDougal's cave, and the ferryboat, well filled with passengers, soon followed. Tom Sawyer was in the skiff that bore Judge Thatcher. When the cave door was unlocked, a sorrowful sight presented itself in the dim twilight of the place. Injun Joe lay stretched upon the ground, dead, with his face close to the crack of the door, as if his longing eyes had been fixed, to the latest moment, upon the light and the cheer of the free world outside. Tom was touched, for he knew by his own experience how this wretch had suffered. His pity was moved, but nevertheless he felt an abounding sense of relief and security, now, which revealed to him in a degree which he had not fully appreciated before how vast a weight of dread had been lying upon him since the day he lifted his voice against this bloody-minded outcast. Injun Joe's bowie-knife lay close by, its blade broken in two. The great foundation-beam of the door had been chipped and hacked through, with tedious labor; useless labor, too, it was, for the native rock formed a sill outside it, and upon that stubborn material the knife had wrought no effect; the only damage done was to the knife itself. But if there had been no stony obstruction there the labor would have been useless still, for if the beam had been wholly cut away Injun Joe could not have squeezed his body under the door, and he knew it. So he had only hacked that place in order to be doing something--in order to pass the weary time--in order to employ his tortured faculties. Ordinarily one could find half a dozen bits of candle stuck around in the crevices of this vestibule, left there by tourists; but there were none now. The prisoner had searched them out and eaten them. He had also contrived to catch a few bats, and these, also, he had eaten, leaving only their claws. The poor unfortunate had starved to death. In one place, near at hand, a stalagmite had been slowly growing up from the ground for ages, builded by the water-drip from a stalactite overhead. The captive had broken off the stalagmite, and upon the stump had placed a stone, wherein he had scooped a shallow hollow to catch the precious drop that fell once in every three minutes with the dreary regularity of a clock-tick--a dessertspoonful once in four and twenty hours. That drop was falling when the Pyramids were new; when Troy fell; when the foundations of Rome were laid; when Christ was crucified; when the Conqueror created the British empire; when Columbus sailed; when the massacre at Lexington was "news." It is falling now; it will still be falling when all these things shall have sunk down the afternoon of history, and the twilight of tradition, and been swallowed up in the thick night of oblivion. Has everything a purpose and a mission? Did this drop fall patiently during five thousand years to be ready for this flitting human insect's need? and has it another important object to accomplish ten thousand years to come? No matter. It is many and many a year since the hapless half-breed scooped out the stone to catch the priceless drops, but to this day the tourist stares longest at that pathetic stone and that slow-dropping water when he comes to see the wonders of McDougal's cave. Injun Joe's cup stands first in the list of the cavern's marvels; even "Aladdin's Palace" cannot rival it. Injun Joe was buried near the mouth of the cave; and people flocked there in boats and wagons from the towns and from all the farms and hamlets for seven miles around; they brought their children, and all sorts of provisions, and confessed that they had had almost as satisfactory a time at the funeral as they could have had at the hanging. This funeral stopped the further growth of one thing--the petition to the governor for Injun Joe's pardon. The petition had been largely signed; many tearful and eloquent meetings had been held, and a committee of sappy women been appointed to go in deep mourning and wail around the governor, and implore him to be a merciful ass and trample his duty under foot. Injun Joe was believed to have killed five citizens of the village, but what of that? If he had been Satan himself there would have been plenty of weaklings ready to scribble their names to a pardon-petition, and drip a tear on it from their permanently impaired and leaky water-works. The morning after the funeral Tom took Huck to a private place to have an important talk. Huck had learned all about Tom's adventure from the Welshman and the Widow Douglas, by this time, but Tom said he reckoned there was one thing they had not told him; that thing was what he wanted to talk about now. Huck's face saddened. He said: "I know what it is. You got into No. 2 and never found anything but whiskey. Nobody told me it was you; but I just knowed it must 'a' ben you, soon as I heard 'bout that whiskey business; and I knowed you hadn't got the money becuz you'd 'a' got at me some way or other and told me even if you was mum to everybody else. Tom, something's always told me we'd never get holt of that swag." "Why, Huck, I never told on that tavern-keeper. YOU know his tavern was all right the Saturday I went to the picnic. Don't you remember you was to watch there that night?" "Oh yes! Why, it seems 'bout a year ago. It was that very night that I follered Injun Joe to the widder's." "YOU followed him?" "Yes--but you keep mum. I reckon Injun Joe's left friends behind him, and I don't want 'em souring on me and doing me mean tricks. If it hadn't ben for me he'd be down in Texas now, all right." Then Huck told his entire adventure in confidence to Tom, who had only heard of the Welshman's part of it before. "Well," said Huck, presently, coming back to the main question, "whoever nipped the whiskey in No. 2, nipped the money, too, I reckon --anyways it's a goner for us, Tom." "Huck, that money wasn't ever in No. 2!" "What!" Huck searched his comrade's face keenly. "Tom, have you got on the track of that money again?" "Huck, it's in the cave!" Huck's eyes blazed. "Say it again, Tom." "The money's in the cave!" "Tom--honest injun, now--is it fun, or earnest?" "Earnest, Huck--just as earnest as ever I was in my life. Will you go in there with me and help get it out?" "I bet I will! I will if it's where we can blaze our way to it and not get lost." "Huck, we can do that without the least little bit of trouble in the world." "Good as wheat! What makes you think the money's--" "Huck, you just wait till we get in there. If we don't find it I'll agree to give you my drum and every thing I've got in the world. I will, by jings." "All right--it's a whiz. When do you say?" "Right now, if you say it. Are you strong enough?" "Is it far in the cave? I ben on my pins a little, three or four days, now, but I can't walk more'n a mile, Tom--least I don't think I could." "It's about five mile into there the way anybody but me would go, Huck, but there's a mighty short cut that they don't anybody but me know about. Huck, I'll take you right to it in a skiff. I'll float the skiff down there, and I'll pull it back again all by myself. You needn't ever turn your hand over." "Less start right off, Tom." "All right. We want some bread and meat, and our pipes, and a little bag or two, and two or three kite-strings, and some of these new-fangled things they call lucifer matches. I tell you, many's the time I wished I had some when I was in there before." A trifle after noon the boys borrowed a small skiff from a citizen who was absent, and got under way at once. When they were several miles below "Cave Hollow," Tom said: "Now you see this bluff here looks all alike all the way down from the cave hollow--no houses, no wood-yards, bushes all alike. But do you see that white place up yonder where there's been a landslide? Well, that's one of my marks. We'll get ashore, now." They landed. "Now, Huck, where we're a-standing you could touch that hole I got out of with a fishing-pole. See if you can find it." Huck searched all the place about, and found nothing. Tom proudly marched into a thick clump of sumach bushes and said: "Here you are! Look at it, Huck; it's the snuggest hole in this country. You just keep mum about it. All along I've been wanting to be a robber, but I knew I'd got to have a thing like this, and where to run across it was the bother. We've got it now, and we'll keep it quiet, only we'll let Joe Harper and Ben Rogers in--because of course there's got to be a Gang, or else there wouldn't be any style about it. Tom Sawyer's Gang--it sounds splendid, don't it, Huck?" "Well, it just does, Tom. And who'll we rob?" "Oh, most anybody. Waylay people--that's mostly the way." "And kill them?" "No, not always. Hive them in the cave till they raise a ransom." "What's a ransom?" "Money. You make them raise all they can, off'n their friends; and after you've kept them a year, if it ain't raised then you kill them. That's the general way. Only you don't kill the women. You shut up the women, but you don't kill them. They're always beautiful and rich, and awfully scared. You take their watches and things, but you always take your hat off and talk polite. They ain't anybody as polite as robbers --you'll see that in any book. Well, the women get to loving you, and after they've been in the cave a week or two weeks they stop crying and after that you couldn't get them to leave. If you drove them out they'd turn right around and come back. It's so in all the books." "Why, it's real bully, Tom. I believe it's better'n to be a pirate." "Yes, it's better in some ways, because it's close to home and circuses and all that." By this time everything was ready and the boys entered the hole, Tom in the lead. They toiled their way to the farther end of the tunnel, then made their spliced kite-strings fast and moved on. A few steps brought them to the spring, and Tom felt a shudder quiver all through him. He showed Huck the fragment of candle-wick perched on a lump of clay against the wall, and described how he and Becky had watched the flame struggle and expire. The boys began to quiet down to whispers, now, for the stillness and gloom of the place oppressed their spirits. They went on, and presently entered and followed Tom's other corridor until they reached the "jumping-off place." The candles revealed the fact that it was not really a precipice, but only a steep clay hill twenty or thirty feet high. Tom whispered: "Now I'll show you something, Huck." He held his candle aloft and said: "Look as far around the corner as you can. Do you see that? There--on the big rock over yonder--done with candle-smoke." "Tom, it's a CROSS!" "NOW where's your Number Two? 'UNDER THE CROSS,' hey? Right yonder's where I saw Injun Joe poke up his candle, Huck!" Huck stared at the mystic sign awhile, and then said with a shaky voice: "Tom, less git out of here!" "What! and leave the treasure?" "Yes--leave it. Injun Joe's ghost is round about there, certain." "No it ain't, Huck, no it ain't. It would ha'nt the place where he died--away out at the mouth of the cave--five mile from here." "No, Tom, it wouldn't. It would hang round the money. I know the ways of ghosts, and so do you." Tom began to fear that Huck was right. Misgivings gathered in his mind. But presently an idea occurred to him-- "Lookyhere, Huck, what fools we're making of ourselves! Injun Joe's ghost ain't a going to come around where there's a cross!" The point was well taken. It had its effect. "Tom, I didn't think of that. But that's so. It's luck for us, that cross is. I reckon we'll climb down there and have a hunt for that box." Tom went first, cutting rude steps in the clay hill as he descended. Huck followed. Four avenues opened out of the small cavern which the great rock stood in. The boys examined three of them with no result. They found a small recess in the one nearest the base of the rock, with a pallet of blankets spread down in it; also an old suspender, some bacon rind, and the well-gnawed bones of two or three fowls. But there was no money-box. The lads searched and researched this place, but in vain. Tom said: "He said UNDER the cross. Well, this comes nearest to being under the cross. It can't be under the rock itself, because that sets solid on the ground." They searched everywhere once more, and then sat down discouraged. Huck could suggest nothing. By-and-by Tom said: "Lookyhere, Huck, there's footprints and some candle-grease on the clay about one side of this rock, but not on the other sides. Now, what's that for? I bet you the money IS under the rock. I'm going to dig in the clay." "That ain't no bad notion, Tom!" said Huck with animation. Tom's "real Barlow" was out at once, and he had not dug four inches before he struck wood. "Hey, Huck!--you hear that?" Huck began to dig and scratch now. Some boards were soon uncovered and removed. They had concealed a natural chasm which led under the rock. Tom got into this and held his candle as far under the rock as he could, but said he could not see to the end of the rift. He proposed to explore. He stooped and passed under; the narrow way descended gradually. He followed its winding course, first to the right, then to the left, Huck at his heels. Tom turned a short curve, by-and-by, and exclaimed: "My goodness, Huck, lookyhere!" It was the treasure-box, sure enough, occupying a snug little cavern, along with an empty powder-keg, a couple of guns in leather cases, two or three pairs of old moccasins, a leather belt, and some other rubbish well soaked with the water-drip. "Got it at last!" said Huck, ploughing among the tarnished coins with his hand. "My, but we're rich, Tom!" "Huck, I always reckoned we'd get it. It's just too good to believe, but we HAVE got it, sure! Say--let's not fool around here. Let's snake it out. Lemme see if I can lift the box." It weighed about fifty pounds. Tom could lift it, after an awkward fashion, but could not carry it conveniently. "I thought so," he said; "THEY carried it like it was heavy, that day at the ha'nted house. I noticed that. I reckon I was right to think of fetching the little bags along." The money was soon in the bags and the boys took it up to the cross rock. "Now less fetch the guns and things," said Huck. "No, Huck--leave them there. They're just the tricks to have when we go to robbing. We'll keep them there all the time, and we'll hold our orgies there, too. It's an awful snug place for orgies." "What orgies?" "I dono. But robbers always have orgies, and of course we've got to have them, too. Come along, Huck, we've been in here a long time. It's getting late, I reckon. I'm hungry, too. We'll eat and smoke when we get to the skiff." They presently emerged into the clump of sumach bushes, looked warily out, found the coast clear, and were soon lunching and smoking in the skiff. As the sun dipped toward the horizon they pushed out and got under way. Tom skimmed up the shore through the long twilight, chatting cheerily with Huck, and landed shortly after dark. "Now, Huck," said Tom, "we'll hide the money in the loft of the widow's woodshed, and I'll come up in the morning and we'll count it and divide, and then we'll hunt up a place out in the woods for it where it will be safe. Just you lay quiet here and watch the stuff till I run and hook Benny Taylor's little wagon; I won't be gone a minute." He disappeared, and presently returned with the wagon, put the two small sacks into it, threw some old rags on top of them, and started off, dragging his cargo behind him. When the boys reached the Welshman's house, they stopped to rest. Just as they were about to move on, the Welshman stepped out and said: "Hallo, who's that?" "Huck and Tom Sawyer." "Good! Come along with me, boys, you are keeping everybody waiting. Here--hurry up, trot ahead--I'll haul the wagon for you. Why, it's not as light as it might be. Got bricks in it?--or old metal?" "Old metal," said Tom. "I judged so; the boys in this town will take more trouble and fool away more time hunting up six bits' worth of old iron to sell to the foundry than they would to make twice the money at regular work. But that's human nature--hurry along, hurry along!" The boys wanted to know what the hurry was about. "Never mind; you'll see, when we get to the Widow Douglas'." Huck said with some apprehension--for he was long used to being falsely accused: "Mr. Jones, we haven't been doing nothing." The Welshman laughed. "Well, I don't know, Huck, my boy. I don't know about that. Ain't you and the widow good friends?" "Yes. Well, she's ben good friends to me, anyway." "All right, then. What do you want to be afraid for?" This question was not entirely answered in Huck's slow mind before he found himself pushed, along with Tom, into Mrs. Douglas' drawing-room. Mr. Jones left the wagon near the door and followed. The place was grandly lighted, and everybody that was of any consequence in the village was there. The Thatchers were there, the Harpers, the Rogerses, Aunt Polly, Sid, Mary, the minister, the editor, and a great many more, and all dressed in their best. The widow received the boys as heartily as any one could well receive two such looking beings. They were covered with clay and candle-grease. Aunt Polly blushed crimson with humiliation, and frowned and shook her head at Tom. Nobody suffered half as much as the two boys did, however. Mr. Jones said: "Tom wasn't at home, yet, so I gave him up; but I stumbled on him and Huck right at my door, and so I just brought them along in a hurry." "And you did just right," said the widow. "Come with me, boys." She took them to a bedchamber and said: "Now wash and dress yourselves. Here are two new suits of clothes --shirts, socks, everything complete. They're Huck's--no, no thanks, Huck--Mr. Jones bought one and I the other. But they'll fit both of you. Get into them. We'll wait--come down when you are slicked up enough." Then she left. CHAPTER XXXIV HUCK said: "Tom, we can slope, if we can find a rope. The window ain't high from the ground." "Shucks! what do you want to slope for?" "Well, I ain't used to that kind of a crowd. I can't stand it. I ain't going down there, Tom." "Oh, bother! It ain't anything. I don't mind it a bit. I'll take care of you." Sid appeared. "Tom," said he, "auntie has been waiting for you all the afternoon. Mary got your Sunday clothes ready, and everybody's been fretting about you. Say--ain't this grease and clay, on your clothes?" "Now, Mr. Siddy, you jist 'tend to your own business. What's all this blow-out about, anyway?" "It's one of the widow's parties that she's always having. This time it's for the Welshman and his sons, on account of that scrape they helped her out of the other night. And say--I can tell you something, if you want to know." "Well, what?" "Why, old Mr. Jones is going to try to spring something on the people here to-night, but I overheard him tell auntie to-day about it, as a secret, but I reckon it's not much of a secret now. Everybody knows --the widow, too, for all she tries to let on she don't. Mr. Jones was bound Huck should be here--couldn't get along with his grand secret without Huck, you know!" "Secret about what, Sid?" "About Huck tracking the robbers to the widow's. I reckon Mr. Jones was going to make a grand time over his surprise, but I bet you it will drop pretty flat." Sid chuckled in a very contented and satisfied way. "Sid, was it you that told?" "Oh, never mind who it was. SOMEBODY told--that's enough." "Sid, there's only one person in this town mean enough to do that, and that's you. If you had been in Huck's place you'd 'a' sneaked down the hill and never told anybody on the robbers. You can't do any but mean things, and you can't bear to see anybody praised for doing good ones. There--no thanks, as the widow says"--and Tom cuffed Sid's ears and helped him to the door with several kicks. "Now go and tell auntie if you dare--and to-morrow you'll catch it!" Some minutes later the widow's guests were at the supper-table, and a dozen children were propped up at little side-tables in the same room, after the fashion of that country and that day. At the proper time Mr. Jones made his little speech, in which he thanked the widow for the honor she was doing himself and his sons, but said that there was another person whose modesty-- And so forth and so on. He sprung his secret about Huck's share in the adventure in the finest dramatic manner he was master of, but the surprise it occasioned was largely counterfeit and not as clamorous and effusive as it might have been under happier circumstances. However, the widow made a pretty fair show of astonishment, and heaped so many compliments and so much gratitude upon Huck that he almost forgot the nearly intolerable discomfort of his new clothes in the entirely intolerable discomfort of being set up as a target for everybody's gaze and everybody's laudations. The widow said she meant to give Huck a home under her roof and have him educated; and that when she could spare the money she would start him in business in a modest way. Tom's chance was come. He said: "Huck don't need it. Huck's rich." Nothing but a heavy strain upon the good manners of the company kept back the due and proper complimentary laugh at this pleasant joke. But the silence was a little awkward. Tom broke it: "Huck's got money. Maybe you don't believe it, but he's got lots of it. Oh, you needn't smile--I reckon I can show you. You just wait a minute." Tom ran out of doors. The company looked at each other with a perplexed interest--and inquiringly at Huck, who was tongue-tied. "Sid, what ails Tom?" said Aunt Polly. "He--well, there ain't ever any making of that boy out. I never--" Tom entered, struggling with the weight of his sacks, and Aunt Polly did not finish her sentence. Tom poured the mass of yellow coin upon the table and said: "There--what did I tell you? Half of it's Huck's and half of it's mine!" The spectacle took the general breath away. All gazed, nobody spoke for a moment. Then there was a unanimous call for an explanation. Tom said he could furnish it, and he did. The tale was long, but brimful of interest. There was scarcely an interruption from any one to break the charm of its flow. When he had finished, Mr. Jones said: "I thought I had fixed up a little surprise for this occasion, but it don't amount to anything now. This one makes it sing mighty small, I'm willing to allow." The money was counted. The sum amounted to a little over twelve thousand dollars. It was more than any one present had ever seen at one time before, though several persons were there who were worth considerably more than that in property. CHAPTER XXXV THE reader may rest satisfied that Tom's and Huck's windfall made a mighty stir in the poor little village of St. Petersburg. So vast a sum, all in actual cash, seemed next to incredible. It was talked about, gloated over, glorified, until the reason of many of the citizens tottered under the strain of the unhealthy excitement. Every "haunted" house in St. Petersburg and the neighboring villages was dissected, plank by plank, and its foundations dug up and ransacked for hidden treasure--and not by boys, but men--pretty grave, unromantic men, too, some of them. Wherever Tom and Huck appeared they were courted, admired, stared at. The boys were not able to remember that their remarks had possessed weight before; but now their sayings were treasured and repeated; everything they did seemed somehow to be regarded as remarkable; they had evidently lost the power of doing and saying commonplace things; moreover, their past history was raked up and discovered to bear marks of conspicuous originality. The village paper published biographical sketches of the boys. The Widow Douglas put Huck's money out at six per cent., and Judge Thatcher did the same with Tom's at Aunt Polly's request. Each lad had an income, now, that was simply prodigious--a dollar for every week-day in the year and half of the Sundays. It was just what the minister got --no, it was what he was promised--he generally couldn't collect it. A dollar and a quarter a week would board, lodge, and school a boy in those old simple days--and clothe him and wash him, too, for that matter. Judge Thatcher had conceived a great opinion of Tom. He said that no commonplace boy would ever have got his daughter out of the cave. When Becky told her father, in strict confidence, how Tom had taken her whipping at school, the Judge was visibly moved; and when she pleaded grace for the mighty lie which Tom had told in order to shift that whipping from her shoulders to his own, the Judge said with a fine outburst that it was a noble, a generous, a magnanimous lie--a lie that was worthy to hold up its head and march down through history breast to breast with George Washington's lauded Truth about the hatchet! Becky thought her father had never looked so tall and so superb as when he walked the floor and stamped his foot and said that. She went straight off and told Tom about it. Judge Thatcher hoped to see Tom a great lawyer or a great soldier some day. He said he meant to look to it that Tom should be admitted to the National Military Academy and afterward trained in the best law school in the country, in order that he might be ready for either career or both. Huck Finn's wealth and the fact that he was now under the Widow Douglas' protection introduced him into society--no, dragged him into it, hurled him into it--and his sufferings were almost more than he could bear. The widow's servants kept him clean and neat, combed and brushed, and they bedded him nightly in unsympathetic sheets that had not one little spot or stain which he could press to his heart and know for a friend. He had to eat with a knife and fork; he had to use napkin, cup, and plate; he had to learn his book, he had to go to church; he had to talk so properly that speech was become insipid in his mouth; whithersoever he turned, the bars and shackles of civilization shut him in and bound him hand and foot. He bravely bore his miseries three weeks, and then one day turned up missing. For forty-eight hours the widow hunted for him everywhere in great distress. The public were profoundly concerned; they searched high and low, they dragged the river for his body. Early the third morning Tom Sawyer wisely went poking among some old empty hogsheads down behind the abandoned slaughter-house, and in one of them he found the refugee. Huck had slept there; he had just breakfasted upon some stolen odds and ends of food, and was lying off, now, in comfort, with his pipe. He was unkempt, uncombed, and clad in the same old ruin of rags that had made him picturesque in the days when he was free and happy. Tom routed him out, told him the trouble he had been causing, and urged him to go home. Huck's face lost its tranquil content, and took a melancholy cast. He said: "Don't talk about it, Tom. I've tried it, and it don't work; it don't work, Tom. It ain't for me; I ain't used to it. The widder's good to me, and friendly; but I can't stand them ways. She makes me get up just at the same time every morning; she makes me wash, they comb me all to thunder; she won't let me sleep in the woodshed; I got to wear them blamed clothes that just smothers me, Tom; they don't seem to any air git through 'em, somehow; and they're so rotten nice that I can't set down, nor lay down, nor roll around anywher's; I hain't slid on a cellar-door for--well, it 'pears to be years; I got to go to church and sweat and sweat--I hate them ornery sermons! I can't ketch a fly in there, I can't chaw. I got to wear shoes all Sunday. The widder eats by a bell; she goes to bed by a bell; she gits up by a bell--everything's so awful reg'lar a body can't stand it." "Well, everybody does that way, Huck." "Tom, it don't make no difference. I ain't everybody, and I can't STAND it. It's awful to be tied up so. And grub comes too easy--I don't take no interest in vittles, that way. I got to ask to go a-fishing; I got to ask to go in a-swimming--dern'd if I hain't got to ask to do everything. Well, I'd got to talk so nice it wasn't no comfort--I'd got to go up in the attic and rip out awhile, every day, to git a taste in my mouth, or I'd a died, Tom. The widder wouldn't let me smoke; she wouldn't let me yell, she wouldn't let me gape, nor stretch, nor scratch, before folks--" [Then with a spasm of special irritation and injury]--"And dad fetch it, she prayed all the time! I never see such a woman! I HAD to shove, Tom--I just had to. And besides, that school's going to open, and I'd a had to go to it--well, I wouldn't stand THAT, Tom. Looky here, Tom, being rich ain't what it's cracked up to be. It's just worry and worry, and sweat and sweat, and a-wishing you was dead all the time. Now these clothes suits me, and this bar'l suits me, and I ain't ever going to shake 'em any more. Tom, I wouldn't ever got into all this trouble if it hadn't 'a' ben for that money; now you just take my sheer of it along with your'n, and gimme a ten-center sometimes--not many times, becuz I don't give a dern for a thing 'thout it's tollable hard to git--and you go and beg off for me with the widder." "Oh, Huck, you know I can't do that. 'Tain't fair; and besides if you'll try this thing just a while longer you'll come to like it." "Like it! Yes--the way I'd like a hot stove if I was to set on it long enough. No, Tom, I won't be rich, and I won't live in them cussed smothery houses. I like the woods, and the river, and hogsheads, and I'll stick to 'em, too. Blame it all! just as we'd got guns, and a cave, and all just fixed to rob, here this dern foolishness has got to come up and spile it all!" Tom saw his opportunity-- "Lookyhere, Huck, being rich ain't going to keep me back from turning robber." "No! Oh, good-licks; are you in real dead-wood earnest, Tom?" "Just as dead earnest as I'm sitting here. But Huck, we can't let you into the gang if you ain't respectable, you know." Huck's joy was quenched. "Can't let me in, Tom? Didn't you let me go for a pirate?" "Yes, but that's different. A robber is more high-toned than what a pirate is--as a general thing. In most countries they're awful high up in the nobility--dukes and such." "Now, Tom, hain't you always ben friendly to me? You wouldn't shet me out, would you, Tom? You wouldn't do that, now, WOULD you, Tom?" "Huck, I wouldn't want to, and I DON'T want to--but what would people say? Why, they'd say, 'Mph! Tom Sawyer's Gang! pretty low characters in it!' They'd mean you, Huck. You wouldn't like that, and I wouldn't." Huck was silent for some time, engaged in a mental struggle. Finally he said: "Well, I'll go back to the widder for a month and tackle it and see if I can come to stand it, if you'll let me b'long to the gang, Tom." "All right, Huck, it's a whiz! Come along, old chap, and I'll ask the widow to let up on you a little, Huck." "Will you, Tom--now will you? That's good. If she'll let up on some of the roughest things, I'll smoke private and cuss private, and crowd through or bust. When you going to start the gang and turn robbers?" "Oh, right off. We'll get the boys together and have the initiation to-night, maybe." "Have the which?" "Have the initiation." "What's that?" "It's to swear to stand by one another, and never tell the gang's secrets, even if you're chopped all to flinders, and kill anybody and all his family that hurts one of the gang." "That's gay--that's mighty gay, Tom, I tell you." "Well, I bet it is. And all that swearing's got to be done at midnight, in the lonesomest, awfulest place you can find--a ha'nted house is the best, but they're all ripped up now." "Well, midnight's good, anyway, Tom." "Yes, so it is. And you've got to swear on a coffin, and sign it with blood." "Now, that's something LIKE! Why, it's a million times bullier than pirating. I'll stick to the widder till I rot, Tom; and if I git to be a reg'lar ripper of a robber, and everybody talking 'bout it, I reckon she'll be proud she snaked me in out of the wet." CONCLUSION SO endeth this chronicle. It being strictly a history of a BOY, it must stop here; the story could not go much further without becoming the history of a MAN. When one writes a novel about grown people, he knows exactly where to stop--that is, with a marriage; but when he writes of juveniles, he must stop where he best can. Most of the characters that perform in this book still live, and are prosperous and happy. Some day it may seem worth while to take up the story of the younger ones again and see what sort of men and women they turned out to be; therefore it will be wisest not to reveal any of that part of their lives at present. Produced by David Widger. The previous edition was updated by Jose Menendez. THE ADVENTURES OF TOM SAWYER BY MARK TWAIN (Samuel Langhorne Clemens) P R E F A C E MOST of the adventures recorded in this book really occurred; one or two were experiences of my own, the rest those of boys who were schoolmates of mine. Huck Finn is drawn from life; Tom Sawyer also, but not from an individual--he is a combination of the characteristics of three boys whom I knew, and therefore belongs to the composite order of architecture. The odd superstitions touched upon were all prevalent among children and slaves in the West at the period of this story--that is to say, thirty or forty years ago. Although my book is intended mainly for the entertainment of boys and girls, I hope it will not be shunned by men and women on that account, for part of my plan has been to try to pleasantly remind adults of what they once were themselves, and of how they felt and thought and talked, and what queer enterprises they sometimes engaged in. THE AUTHOR. HARTFORD, 1876. T O M S A W Y E R CHAPTER I "TOM!" No answer. "TOM!" No answer. "What's gone with that boy, I wonder? You TOM!" No answer. The old lady pulled her spectacles down and looked over them about the room; then she put them up and looked out under them. She seldom or never looked THROUGH them for so small a thing as a boy; they were her state pair, the pride of her heart, and were built for "style," not service--she could have seen through a pair of stove-lids just as well. She looked perplexed for a moment, and then said, not fiercely, but still loud enough for the furniture to hear: "Well, I lay if I get hold of you I'll--" She did not finish, for by this time she was bending down and punching under the bed with the broom, and so she needed breath to punctuate the punches with. She resurrected nothing but the cat. "I never did see the beat of that boy!" She went to the open door and stood in it and looked out among the tomato vines and "jimpson" weeds that constituted the garden. No Tom. So she lifted up her voice at an angle calculated for distance and shouted: "Y-o-u-u TOM!" There was a slight noise behind her and she turned just in time to seize a small boy by the slack of his roundabout and arrest his flight. "There! I might 'a' thought of that closet. What you been doing in there?" "Nothing." "Nothing! Look at your hands. And look at your mouth. What IS that truck?" "I don't know, aunt." "Well, I know. It's jam--that's what it is. Forty times I've said if you didn't let that jam alone I'd skin you. Hand me that switch." The switch hovered in the air--the peril was desperate-- "My! Look behind you, aunt!" The old lady whirled round, and snatched her skirts out of danger. The lad fled on the instant, scrambled up the high board-fence, and disappeared over it. His aunt Polly stood surprised a moment, and then broke into a gentle laugh. "Hang the boy, can't I never learn anything? Ain't he played me tricks enough like that for me to be looking out for him by this time? But old fools is the biggest fools there is. Can't learn an old dog new tricks, as the saying is. But my goodness, he never plays them alike, two days, and how is a body to know what's coming? He 'pears to know just how long he can torment me before I get my dander up, and he knows if he can make out to put me off for a minute or make me laugh, it's all down again and I can't hit him a lick. I ain't doing my duty by that boy, and that's the Lord's truth, goodness knows. Spare the rod and spile the child, as the Good Book says. I'm a laying up sin and suffering for us both, I know. He's full of the Old Scratch, but laws-a-me! he's my own dead sister's boy, poor thing, and I ain't got the heart to lash him, somehow. Every time I let him off, my conscience does hurt me so, and every time I hit him my old heart most breaks. Well-a-well, man that is born of woman is of few days and full of trouble, as the Scripture says, and I reckon it's so. He'll play hookey this evening, * and [* Southwestern for "afternoon"] I'll just be obleeged to make him work, to-morrow, to punish him. It's mighty hard to make him work Saturdays, when all the boys is having holiday, but he hates work more than he hates anything else, and I've GOT to do some of my duty by him, or I'll be the ruination of the child." Tom did play hookey, and he had a very good time. He got back home barely in season to help Jim, the small colored boy, saw next-day's wood and split the kindlings before supper--at least he was there in time to tell his adventures to Jim while Jim did three-fourths of the work. Tom's younger brother (or rather half-brother) Sid was already through with his part of the work (picking up chips), for he was a quiet boy, and had no adventurous, troublesome ways. While Tom was eating his supper, and stealing sugar as opportunity offered, Aunt Polly asked him questions that were full of guile, and very deep--for she wanted to trap him into damaging revealments. Like many other simple-hearted souls, it was her pet vanity to believe she was endowed with a talent for dark and mysterious diplomacy, and she loved to contemplate her most transparent devices as marvels of low cunning. Said she: "Tom, it was middling warm in school, warn't it?" "Yes'm." "Powerful warm, warn't it?" "Yes'm." "Didn't you want to go in a-swimming, Tom?" A bit of a scare shot through Tom--a touch of uncomfortable suspicion. He searched Aunt Polly's face, but it told him nothing. So he said: "No'm--well, not very much." The old lady reached out her hand and felt Tom's shirt, and said: "But you ain't too warm now, though." And it flattered her to reflect that she had discovered that the shirt was dry without anybody knowing that that was what she had in her mind. But in spite of her, Tom knew where the wind lay, now. So he forestalled what might be the next move: "Some of us pumped on our heads--mine's damp yet. See?" Aunt Polly was vexed to think she had overlooked that bit of circumstantial evidence, and missed a trick. Then she had a new inspiration: "Tom, you didn't have to undo your shirt collar where I sewed it, to pump on your head, did you? Unbutton your jacket!" The trouble vanished out of Tom's face. He opened his jacket. His shirt collar was securely sewed. "Bother! Well, go 'long with you. I'd made sure you'd played hookey and been a-swimming. But I forgive ye, Tom. I reckon you're a kind of a singed cat, as the saying is--better'n you look. THIS time." She was half sorry her sagacity had miscarried, and half glad that Tom had stumbled into obedient conduct for once. But Sidney said: "Well, now, if I didn't think you sewed his collar with white thread, but it's black." "Why, I did sew it with white! Tom!" But Tom did not wait for the rest. As he went out at the door he said: "Siddy, I'll lick you for that." In a safe place Tom examined two large needles which were thrust into the lapels of his jacket, and had thread bound about them--one needle carried white thread and the other black. He said: "She'd never noticed if it hadn't been for Sid. Confound it! sometimes she sews it with white, and sometimes she sews it with black. I wish to geeminy she'd stick to one or t'other--I can't keep the run of 'em. But I bet you I'll lam Sid for that. I'll learn him!" He was not the Model Boy of the village. He knew the model boy very well though--and loathed him. Within two minutes, or even less, he had forgotten all his troubles. Not because his troubles were one whit less heavy and bitter to him than a man's are to a man, but because a new and powerful interest bore them down and drove them out of his mind for the time--just as men's misfortunes are forgotten in the excitement of new enterprises. This new interest was a valued novelty in whistling, which he had just acquired from a negro, and he was suffering to practise it undisturbed. It consisted in a peculiar bird-like turn, a sort of liquid warble, produced by touching the tongue to the roof of the mouth at short intervals in the midst of the music--the reader probably remembers how to do it, if he has ever been a boy. Diligence and attention soon gave him the knack of it, and he strode down the street with his mouth full of harmony and his soul full of gratitude. He felt much as an astronomer feels who has discovered a new planet--no doubt, as far as strong, deep, unalloyed pleasure is concerned, the advantage was with the boy, not the astronomer. The summer evenings were long. It was not dark, yet. Presently Tom checked his whistle. A stranger was before him--a boy a shade larger than himself. A new-comer of any age or either sex was an impressive curiosity in the poor little shabby village of St. Petersburg. This boy was well dressed, too--well dressed on a week-day. This was simply astounding. His cap was a dainty thing, his close-buttoned blue cloth roundabout was new and natty, and so were his pantaloons. He had shoes on--and it was only Friday. He even wore a necktie, a bright bit of ribbon. He had a citified air about him that ate into Tom's vitals. The more Tom stared at the splendid marvel, the higher he turned up his nose at his finery and the shabbier and shabbier his own outfit seemed to him to grow. Neither boy spoke. If one moved, the other moved--but only sidewise, in a circle; they kept face to face and eye to eye all the time. Finally Tom said: "I can lick you!" "I'd like to see you try it." "Well, I can do it." "No you can't, either." "Yes I can." "No you can't." "I can." "You can't." "Can!" "Can't!" An uncomfortable pause. Then Tom said: "What's your name?" "'Tisn't any of your business, maybe." "Well I 'low I'll MAKE it my business." "Well why don't you?" "If you say much, I will." "Much--much--MUCH. There now." "Oh, you think you're mighty smart, DON'T you? I could lick you with one hand tied behind me, if I wanted to." "Well why don't you DO it? You SAY you can do it." "Well I WILL, if you fool with me." "Oh yes--I've seen whole families in the same fix." "Smarty! You think you're SOME, now, DON'T you? Oh, what a hat!" "You can lump that hat if you don't like it. I dare you to knock it off--and anybody that'll take a dare will suck eggs." "You're a liar!" "You're another." "You're a fighting liar and dasn't take it up." "Aw--take a walk!" "Say--if you give me much more of your sass I'll take and bounce a rock off'n your head." "Oh, of COURSE you will." "Well I WILL." "Well why don't you DO it then? What do you keep SAYING you will for? Why don't you DO it? It's because you're afraid." "I AIN'T afraid." "You are." "I ain't." "You are." Another pause, and more eying and sidling around each other. Presently they were shoulder to shoulder. Tom said: "Get away from here!" "Go away yourself!" "I won't." "I won't either." So they stood, each with a foot placed at an angle as a brace, and both shoving with might and main, and glowering at each other with hate. But neither could get an advantage. After struggling till both were hot and flushed, each relaxed his strain with watchful caution, and Tom said: "You're a coward and a pup. I'll tell my big brother on you, and he can thrash you with his little finger, and I'll make him do it, too." "What do I care for your big brother? I've got a brother that's bigger than he is--and what's more, he can throw him over that fence, too." [Both brothers were imaginary.] "That's a lie." "YOUR saying so don't make it so." Tom drew a line in the dust with his big toe, and said: "I dare you to step over that, and I'll lick you till you can't stand up. Anybody that'll take a dare will steal sheep." The new boy stepped over promptly, and said: "Now you said you'd do it, now let's see you do it." "Don't you crowd me now; you better look out." "Well, you SAID you'd do it--why don't you do it?" "By jingo! for two cents I WILL do it." The new boy took two broad coppers out of his pocket and held them out with derision. Tom struck them to the ground. In an instant both boys were rolling and tumbling in the dirt, gripped together like cats; and for the space of a minute they tugged and tore at each other's hair and clothes, punched and scratched each other's nose, and covered themselves with dust and glory. Presently the confusion took form, and through the fog of battle Tom appeared, seated astride the new boy, and pounding him with his fists. "Holler 'nuff!" said he. The boy only struggled to free himself. He was crying--mainly from rage. "Holler 'nuff!"--and the pounding went on. At last the stranger got out a smothered "'Nuff!" and Tom let him up and said: "Now that'll learn you. Better look out who you're fooling with next time." The new boy went off brushing the dust from his clothes, sobbing, snuffling, and occasionally looking back and shaking his head and threatening what he would do to Tom the "next time he caught him out." To which Tom responded with jeers, and started off in high feather, and as soon as his back was turned the new boy snatched up a stone, threw it and hit him between the shoulders and then turned tail and ran like an antelope. Tom chased the traitor home, and thus found out where he lived. He then held a position at the gate for some time, daring the enemy to come outside, but the enemy only made faces at him through the window and declined. At last the enemy's mother appeared, and called Tom a bad, vicious, vulgar child, and ordered him away. So he went away; but he said he "'lowed" to "lay" for that boy. He got home pretty late that night, and when he climbed cautiously in at the window, he uncovered an ambuscade, in the person of his aunt; and when she saw the state his clothes were in her resolution to turn his Saturday holiday into captivity at hard labor became adamantine in its firmness. CHAPTER II SATURDAY morning was come, and all the summer world was bright and fresh, and brimming with life. There was a song in every heart; and if the heart was young the music issued at the lips. There was cheer in every face and a spring in every step. The locust-trees were in bloom and the fragrance of the blossoms filled the air. Cardiff Hill, beyond the village and above it, was green with vegetation and it lay just far enough away to seem a Delectable Land, dreamy, reposeful, and inviting. Tom appeared on the sidewalk with a bucket of whitewash and a long-handled brush. He surveyed the fence, and all gladness left him and a deep melancholy settled down upon his spirit. Thirty yards of board fence nine feet high. Life to him seemed hollow, and existence but a burden. Sighing, he dipped his brush and passed it along the topmost plank; repeated the operation; did it again; compared the insignificant whitewashed streak with the far-reaching continent of unwhitewashed fence, and sat down on a tree-box discouraged. Jim came skipping out at the gate with a tin pail, and singing Buffalo Gals. Bringing water from the town pump had always been hateful work in Tom's eyes, before, but now it did not strike him so. He remembered that there was company at the pump. White, mulatto, and negro boys and girls were always there waiting their turns, resting, trading playthings, quarrelling, fighting, skylarking. And he remembered that although the pump was only a hundred and fifty yards off, Jim never got back with a bucket of water under an hour--and even then somebody generally had to go after him. Tom said: "Say, Jim, I'll fetch the water if you'll whitewash some." Jim shook his head and said: "Can't, Mars Tom. Ole missis, she tole me I got to go an' git dis water an' not stop foolin' roun' wid anybody. She say she spec' Mars Tom gwine to ax me to whitewash, an' so she tole me go 'long an' 'tend to my own business--she 'lowed SHE'D 'tend to de whitewashin'." "Oh, never you mind what she said, Jim. That's the way she always talks. Gimme the bucket--I won't be gone only a a minute. SHE won't ever know." "Oh, I dasn't, Mars Tom. Ole missis she'd take an' tar de head off'n me. 'Deed she would." "SHE! She never licks anybody--whacks 'em over the head with her thimble--and who cares for that, I'd like to know. She talks awful, but talk don't hurt--anyways it don't if she don't cry. Jim, I'll give you a marvel. I'll give you a white alley!" Jim began to waver. "White alley, Jim! And it's a bully taw." "My! Dat's a mighty gay marvel, I tell you! But Mars Tom I's powerful 'fraid ole missis--" "And besides, if you will I'll show you my sore toe." Jim was only human--this attraction was too much for him. He put down his pail, took the white alley, and bent over the toe with absorbing interest while the bandage was being unwound. In another moment he was flying down the street with his pail and a tingling rear, Tom was whitewashing with vigor, and Aunt Polly was retiring from the field with a slipper in her hand and triumph in her eye. But Tom's energy did not last. He began to think of the fun he had planned for this day, and his sorrows multiplied. Soon the free boys would come tripping along on all sorts of delicious expeditions, and they would make a world of fun of him for having to work--the very thought of it burnt him like fire. He got out his worldly wealth and examined it--bits of toys, marbles, and trash; enough to buy an exchange of WORK, maybe, but not half enough to buy so much as half an hour of pure freedom. So he returned his straitened means to his pocket, and gave up the idea of trying to buy the boys. At this dark and hopeless moment an inspiration burst upon him! Nothing less than a great, magnificent inspiration. He took up his brush and went tranquilly to work. Ben Rogers hove in sight presently--the very boy, of all boys, whose ridicule he had been dreading. Ben's gait was the hop-skip-and-jump--proof enough that his heart was light and his anticipations high. He was eating an apple, and giving a long, melodious whoop, at intervals, followed by a deep-toned ding-dong-dong, ding-dong-dong, for he was personating a steamboat. As he drew near, he slackened speed, took the middle of the street, leaned far over to starboard and rounded to ponderously and with laborious pomp and circumstance--for he was personating the Big Missouri, and considered himself to be drawing nine feet of water. He was boat and captain and engine-bells combined, so he had to imagine himself standing on his own hurricane-deck giving the orders and executing them: "Stop her, sir! Ting-a-ling-ling!" The headway ran almost out, and he drew up slowly toward the sidewalk. "Ship up to back! Ting-a-ling-ling!" His arms straightened and stiffened down his sides. "Set her back on the stabboard! Ting-a-ling-ling! Chow! ch-chow-wow! Chow!" His right hand, meantime, describing stately circles--for it was representing a forty-foot wheel. "Let her go back on the labboard! Ting-a-lingling! Chow-ch-chow-chow!" The left hand began to describe circles. "Stop the stabboard! Ting-a-ling-ling! Stop the labboard! Come ahead on the stabboard! Stop her! Let your outside turn over slow! Ting-a-ling-ling! Chow-ow-ow! Get out that head-line! LIVELY now! Come--out with your spring-line--what're you about there! Take a turn round that stump with the bight of it! Stand by that stage, now--let her go! Done with the engines, sir! Ting-a-ling-ling! SH'T! S'H'T! SH'T!" (trying the gauge-cocks). Tom went on whitewashing--paid no attention to the steamboat. Ben stared a moment and then said: "Hi-YI! YOU'RE up a stump, ain't you!" No answer. Tom surveyed his last touch with the eye of an artist, then he gave his brush another gentle sweep and surveyed the result, as before. Ben ranged up alongside of him. Tom's mouth watered for the apple, but he stuck to his work. Ben said: "Hello, old chap, you got to work, hey?" Tom wheeled suddenly and said: "Why, it's you, Ben! I warn't noticing." "Say--I'm going in a-swimming, I am. Don't you wish you could? But of course you'd druther WORK--wouldn't you? Course you would!" Tom contemplated the boy a bit, and said: "What do you call work?" "Why, ain't THAT work?" Tom resumed his whitewashing, and answered carelessly: "Well, maybe it is, and maybe it ain't. All I know, is, it suits Tom Sawyer." "Oh come, now, you don't mean to let on that you LIKE it?" The brush continued to move. "Like it? Well, I don't see why I oughtn't to like it. Does a boy get a chance to whitewash a fence every day?" That put the thing in a new light. Ben stopped nibbling his apple. Tom swept his brush daintily back and forth--stepped back to note the effect--added a touch here and there--criticised the effect again--Ben watching every move and getting more and more interested, more and more absorbed. Presently he said: "Say, Tom, let ME whitewash a little." Tom considered, was about to consent; but he altered his mind: "No--no--I reckon it wouldn't hardly do, Ben. You see, Aunt Polly's awful particular about this fence--right here on the street, you know --but if it was the back fence I wouldn't mind and SHE wouldn't. Yes, she's awful particular about this fence; it's got to be done very careful; I reckon there ain't one boy in a thousand, maybe two thousand, that can do it the way it's got to be done." "No--is that so? Oh come, now--lemme just try. Only just a little--I'd let YOU, if you was me, Tom." "Ben, I'd like to, honest injun; but Aunt Polly--well, Jim wanted to do it, but she wouldn't let him; Sid wanted to do it, and she wouldn't let Sid. Now don't you see how I'm fixed? If you was to tackle this fence and anything was to happen to it--" "Oh, shucks, I'll be just as careful. Now lemme try. Say--I'll give you the core of my apple." "Well, here--No, Ben, now don't. I'm afeard--" "I'll give you ALL of it!" Tom gave up the brush with reluctance in his face, but alacrity in his heart. And while the late steamer Big Missouri worked and sweated in the sun, the retired artist sat on a barrel in the shade close by, dangled his legs, munched his apple, and planned the slaughter of more innocents. There was no lack of material; boys happened along every little while; they came to jeer, but remained to whitewash. By the time Ben was fagged out, Tom had traded the next chance to Billy Fisher for a kite, in good repair; and when he played out, Johnny Miller bought in for a dead rat and a string to swing it with--and so on, and so on, hour after hour. And when the middle of the afternoon came, from being a poor poverty-stricken boy in the morning, Tom was literally rolling in wealth. He had besides the things before mentioned, twelve marbles, part of a jews-harp, a piece of blue bottle-glass to look through, a spool cannon, a key that wouldn't unlock anything, a fragment of chalk, a glass stopper of a decanter, a tin soldier, a couple of tadpoles, six fire-crackers, a kitten with only one eye, a brass doorknob, a dog-collar--but no dog--the handle of a knife, four pieces of orange-peel, and a dilapidated old window sash. He had had a nice, good, idle time all the while--plenty of company --and the fence had three coats of whitewash on it! If he hadn't run out of whitewash he would have bankrupted every boy in the village. Tom said to himself that it was not such a hollow world, after all. He had discovered a great law of human action, without knowing it--namely, that in order to make a man or a boy covet a thing, it is only necessary to make the thing difficult to attain. If he had been a great and wise philosopher, like the writer of this book, he would now have comprehended that Work consists of whatever a body is OBLIGED to do, and that Play consists of whatever a body is not obliged to do. And this would help him to understand why constructing artificial flowers or performing on a tread-mill is work, while rolling ten-pins or climbing Mont Blanc is only amusement. There are wealthy gentlemen in England who drive four-horse passenger-coaches twenty or thirty miles on a daily line, in the summer, because the privilege costs them considerable money; but if they were offered wages for the service, that would turn it into work and then they would resign. The boy mused awhile over the substantial change which had taken place in his worldly circumstances, and then wended toward headquarters to report. CHAPTER III TOM presented himself before Aunt Polly, who was sitting by an open window in a pleasant rearward apartment, which was bedroom, breakfast-room, dining-room, and library, combined. The balmy summer air, the restful quiet, the odor of the flowers, and the drowsing murmur of the bees had had their effect, and she was nodding over her knitting --for she had no company but the cat, and it was asleep in her lap. Her spectacles were propped up on her gray head for safety. She had thought that of course Tom had deserted long ago, and she wondered at seeing him place himself in her power again in this intrepid way. He said: "Mayn't I go and play now, aunt?" "What, a'ready? How much have you done?" "It's all done, aunt." "Tom, don't lie to me--I can't bear it." "I ain't, aunt; it IS all done." Aunt Polly placed small trust in such evidence. She went out to see for herself; and she would have been content to find twenty per cent. of Tom's statement true. When she found the entire fence whitewashed, and not only whitewashed but elaborately coated and recoated, and even a streak added to the ground, her astonishment was almost unspeakable. She said: "Well, I never! There's no getting round it, you can work when you're a mind to, Tom." And then she diluted the compliment by adding, "But it's powerful seldom you're a mind to, I'm bound to say. Well, go 'long and play; but mind you get back some time in a week, or I'll tan you." She was so overcome by the splendor of his achievement that she took him into the closet and selected a choice apple and delivered it to him, along with an improving lecture upon the added value and flavor a treat took to itself when it came without sin through virtuous effort. And while she closed with a happy Scriptural flourish, he "hooked" a doughnut. Then he skipped out, and saw Sid just starting up the outside stairway that led to the back rooms on the second floor. Clods were handy and the air was full of them in a twinkling. They raged around Sid like a hail-storm; and before Aunt Polly could collect her surprised faculties and sally to the rescue, six or seven clods had taken personal effect, and Tom was over the fence and gone. There was a gate, but as a general thing he was too crowded for time to make use of it. His soul was at peace, now that he had settled with Sid for calling attention to his black thread and getting him into trouble. Tom skirted the block, and came round into a muddy alley that led by the back of his aunt's cow-stable. He presently got safely beyond the reach of capture and punishment, and hastened toward the public square of the village, where two "military" companies of boys had met for conflict, according to previous appointment. Tom was General of one of these armies, Joe Harper (a bosom friend) General of the other. These two great commanders did not condescend to fight in person--that being better suited to the still smaller fry--but sat together on an eminence and conducted the field operations by orders delivered through aides-de-camp. Tom's army won a great victory, after a long and hard-fought battle. Then the dead were counted, prisoners exchanged, the terms of the next disagreement agreed upon, and the day for the necessary battle appointed; after which the armies fell into line and marched away, and Tom turned homeward alone. As he was passing by the house where Jeff Thatcher lived, he saw a new girl in the garden--a lovely little blue-eyed creature with yellow hair plaited into two long-tails, white summer frock and embroidered pantalettes. The fresh-crowned hero fell without firing a shot. A certain Amy Lawrence vanished out of his heart and left not even a memory of herself behind. He had thought he loved her to distraction; he had regarded his passion as adoration; and behold it was only a poor little evanescent partiality. He had been months winning her; she had confessed hardly a week ago; he had been the happiest and the proudest boy in the world only seven short days, and here in one instant of time she had gone out of his heart like a casual stranger whose visit is done. He worshipped this new angel with furtive eye, till he saw that she had discovered him; then he pretended he did not know she was present, and began to "show off" in all sorts of absurd boyish ways, in order to win her admiration. He kept up this grotesque foolishness for some time; but by-and-by, while he was in the midst of some dangerous gymnastic performances, he glanced aside and saw that the little girl was wending her way toward the house. Tom came up to the fence and leaned on it, grieving, and hoping she would tarry yet awhile longer. She halted a moment on the steps and then moved toward the door. Tom heaved a great sigh as she put her foot on the threshold. But his face lit up, right away, for she tossed a pansy over the fence a moment before she disappeared. The boy ran around and stopped within a foot or two of the flower, and then shaded his eyes with his hand and began to look down street as if he had discovered something of interest going on in that direction. Presently he picked up a straw and began trying to balance it on his nose, with his head tilted far back; and as he moved from side to side, in his efforts, he edged nearer and nearer toward the pansy; finally his bare foot rested upon it, his pliant toes closed upon it, and he hopped away with the treasure and disappeared round the corner. But only for a minute--only while he could button the flower inside his jacket, next his heart--or next his stomach, possibly, for he was not much posted in anatomy, and not hypercritical, anyway. He returned, now, and hung about the fence till nightfall, "showing off," as before; but the girl never exhibited herself again, though Tom comforted himself a little with the hope that she had been near some window, meantime, and been aware of his attentions. Finally he strode home reluctantly, with his poor head full of visions. All through supper his spirits were so high that his aunt wondered "what had got into the child." He took a good scolding about clodding Sid, and did not seem to mind it in the least. He tried to steal sugar under his aunt's very nose, and got his knuckles rapped for it. He said: "Aunt, you don't whack Sid when he takes it." "Well, Sid don't torment a body the way you do. You'd be always into that sugar if I warn't watching you." Presently she stepped into the kitchen, and Sid, happy in his immunity, reached for the sugar-bowl--a sort of glorying over Tom which was wellnigh unbearable. But Sid's fingers slipped and the bowl dropped and broke. Tom was in ecstasies. In such ecstasies that he even controlled his tongue and was silent. He said to himself that he would not speak a word, even when his aunt came in, but would sit perfectly still till she asked who did the mischief; and then he would tell, and there would be nothing so good in the world as to see that pet model "catch it." He was so brimful of exultation that he could hardly hold himself when the old lady came back and stood above the wreck discharging lightnings of wrath from over her spectacles. He said to himself, "Now it's coming!" And the next instant he was sprawling on the floor! The potent palm was uplifted to strike again when Tom cried out: "Hold on, now, what 'er you belting ME for?--Sid broke it!" Aunt Polly paused, perplexed, and Tom looked for healing pity. But when she got her tongue again, she only said: "Umf! Well, you didn't get a lick amiss, I reckon. You been into some other audacious mischief when I wasn't around, like enough." Then her conscience reproached her, and she yearned to say something kind and loving; but she judged that this would be construed into a confession that she had been in the wrong, and discipline forbade that. So she kept silence, and went about her affairs with a troubled heart. Tom sulked in a corner and exalted his woes. He knew that in her heart his aunt was on her knees to him, and he was morosely gratified by the consciousness of it. He would hang out no signals, he would take notice of none. He knew that a yearning glance fell upon him, now and then, through a film of tears, but he refused recognition of it. He pictured himself lying sick unto death and his aunt bending over him beseeching one little forgiving word, but he would turn his face to the wall, and die with that word unsaid. Ah, how would she feel then? And he pictured himself brought home from the river, dead, with his curls all wet, and his sore heart at rest. How she would throw herself upon him, and how her tears would fall like rain, and her lips pray God to give her back her boy and she would never, never abuse him any more! But he would lie there cold and white and make no sign--a poor little sufferer, whose griefs were at an end. He so worked upon his feelings with the pathos of these dreams, that he had to keep swallowing, he was so like to choke; and his eyes swam in a blur of water, which overflowed when he winked, and ran down and trickled from the end of his nose. And such a luxury to him was this petting of his sorrows, that he could not bear to have any worldly cheeriness or any grating delight intrude upon it; it was too sacred for such contact; and so, presently, when his cousin Mary danced in, all alive with the joy of seeing home again after an age-long visit of one week to the country, he got up and moved in clouds and darkness out at one door as she brought song and sunshine in at the other. He wandered far from the accustomed haunts of boys, and sought desolate places that were in harmony with his spirit. A log raft in the river invited him, and he seated himself on its outer edge and contemplated the dreary vastness of the stream, wishing, the while, that he could only be drowned, all at once and unconsciously, without undergoing the uncomfortable routine devised by nature. Then he thought of his flower. He got it out, rumpled and wilted, and it mightily increased his dismal felicity. He wondered if she would pity him if she knew? Would she cry, and wish that she had a right to put her arms around his neck and comfort him? Or would she turn coldly away like all the hollow world? This picture brought such an agony of pleasurable suffering that he worked it over and over again in his mind and set it up in new and varied lights, till he wore it threadbare. At last he rose up sighing and departed in the darkness. About half-past nine or ten o'clock he came along the deserted street to where the Adored Unknown lived; he paused a moment; no sound fell upon his listening ear; a candle was casting a dull glow upon the curtain of a second-story window. Was the sacred presence there? He climbed the fence, threaded his stealthy way through the plants, till he stood under that window; he looked up at it long, and with emotion; then he laid him down on the ground under it, disposing himself upon his back, with his hands clasped upon his breast and holding his poor wilted flower. And thus he would die--out in the cold world, with no shelter over his homeless head, no friendly hand to wipe the death-damps from his brow, no loving face to bend pityingly over him when the great agony came. And thus SHE would see him when she looked out upon the glad morning, and oh! would she drop one little tear upon his poor, lifeless form, would she heave one little sigh to see a bright young life so rudely blighted, so untimely cut down? The window went up, a maid-servant's discordant voice profaned the holy calm, and a deluge of water drenched the prone martyr's remains! The strangling hero sprang up with a relieving snort. There was a whiz as of a missile in the air, mingled with the murmur of a curse, a sound as of shivering glass followed, and a small, vague form went over the fence and shot away in the gloom. Not long after, as Tom, all undressed for bed, was surveying his drenched garments by the light of a tallow dip, Sid woke up; but if he had any dim idea of making any "references to allusions," he thought better of it and held his peace, for there was danger in Tom's eye. Tom turned in without the added vexation of prayers, and Sid made mental note of the omission. CHAPTER IV THE sun rose upon a tranquil world, and beamed down upon the peaceful village like a benediction. Breakfast over, Aunt Polly had family worship: it began with a prayer built from the ground up of solid courses of Scriptural quotations, welded together with a thin mortar of originality; and from the summit of this she delivered a grim chapter of the Mosaic Law, as from Sinai. Then Tom girded up his loins, so to speak, and went to work to "get his verses." Sid had learned his lesson days before. Tom bent all his energies to the memorizing of five verses, and he chose part of the Sermon on the Mount, because he could find no verses that were shorter. At the end of half an hour Tom had a vague general idea of his lesson, but no more, for his mind was traversing the whole field of human thought, and his hands were busy with distracting recreations. Mary took his book to hear him recite, and he tried to find his way through the fog: "Blessed are the--a--a--" "Poor"-- "Yes--poor; blessed are the poor--a--a--" "In spirit--" "In spirit; blessed are the poor in spirit, for they--they--" "THEIRS--" "For THEIRS. Blessed are the poor in spirit, for theirs is the kingdom of heaven. Blessed are they that mourn, for they--they--" "Sh--" "For they--a--" "S, H, A--" "For they S, H--Oh, I don't know what it is!" "SHALL!" "Oh, SHALL! for they shall--for they shall--a--a--shall mourn--a--a-- blessed are they that shall--they that--a--they that shall mourn, for they shall--a--shall WHAT? Why don't you tell me, Mary?--what do you want to be so mean for?" "Oh, Tom, you poor thick-headed thing, I'm not teasing you. I wouldn't do that. You must go and learn it again. Don't you be discouraged, Tom, you'll manage it--and if you do, I'll give you something ever so nice. There, now, that's a good boy." "All right! What is it, Mary, tell me what it is." "Never you mind, Tom. You know if I say it's nice, it is nice." "You bet you that's so, Mary. All right, I'll tackle it again." And he did "tackle it again"--and under the double pressure of curiosity and prospective gain he did it with such spirit that he accomplished a shining success. Mary gave him a brand-new "Barlow" knife worth twelve and a half cents; and the convulsion of delight that swept his system shook him to his foundations. True, the knife would not cut anything, but it was a "sure-enough" Barlow, and there was inconceivable grandeur in that--though where the Western boys ever got the idea that such a weapon could possibly be counterfeited to its injury is an imposing mystery and will always remain so, perhaps. Tom contrived to scarify the cupboard with it, and was arranging to begin on the bureau, when he was called off to dress for Sunday-school. Mary gave him a tin basin of water and a piece of soap, and he went outside the door and set the basin on a little bench there; then he dipped the soap in the water and laid it down; turned up his sleeves; poured out the water on the ground, gently, and then entered the kitchen and began to wipe his face diligently on the towel behind the door. But Mary removed the towel and said: "Now ain't you ashamed, Tom. You mustn't be so bad. Water won't hurt you." Tom was a trifle disconcerted. The basin was refilled, and this time he stood over it a little while, gathering resolution; took in a big breath and began. When he entered the kitchen presently, with both eyes shut and groping for the towel with his hands, an honorable testimony of suds and water was dripping from his face. But when he emerged from the towel, he was not yet satisfactory, for the clean territory stopped short at his chin and his jaws, like a mask; below and beyond this line there was a dark expanse of unirrigated soil that spread downward in front and backward around his neck. Mary took him in hand, and when she was done with him he was a man and a brother, without distinction of color, and his saturated hair was neatly brushed, and its short curls wrought into a dainty and symmetrical general effect. [He privately smoothed out the curls, with labor and difficulty, and plastered his hair close down to his head; for he held curls to be effeminate, and his own filled his life with bitterness.] Then Mary got out a suit of his clothing that had been used only on Sundays during two years--they were simply called his "other clothes"--and so by that we know the size of his wardrobe. The girl "put him to rights" after he had dressed himself; she buttoned his neat roundabout up to his chin, turned his vast shirt collar down over his shoulders, brushed him off and crowned him with his speckled straw hat. He now looked exceedingly improved and uncomfortable. He was fully as uncomfortable as he looked; for there was a restraint about whole clothes and cleanliness that galled him. He hoped that Mary would forget his shoes, but the hope was blighted; she coated them thoroughly with tallow, as was the custom, and brought them out. He lost his temper and said he was always being made to do everything he didn't want to do. But Mary said, persuasively: "Please, Tom--that's a good boy." So he got into the shoes snarling. Mary was soon ready, and the three children set out for Sunday-school--a place that Tom hated with his whole heart; but Sid and Mary were fond of it. Sabbath-school hours were from nine to half-past ten; and then church service. Two of the children always remained for the sermon voluntarily, and the other always remained too--for stronger reasons. The church's high-backed, uncushioned pews would seat about three hundred persons; the edifice was but a small, plain affair, with a sort of pine board tree-box on top of it for a steeple. At the door Tom dropped back a step and accosted a Sunday-dressed comrade: "Say, Billy, got a yaller ticket?" "Yes." "What'll you take for her?" "What'll you give?" "Piece of lickrish and a fish-hook." "Less see 'em." Tom exhibited. They were satisfactory, and the property changed hands. Then Tom traded a couple of white alleys for three red tickets, and some small trifle or other for a couple of blue ones. He waylaid other boys as they came, and went on buying tickets of various colors ten or fifteen minutes longer. He entered the church, now, with a swarm of clean and noisy boys and girls, proceeded to his seat and started a quarrel with the first boy that came handy. The teacher, a grave, elderly man, interfered; then turned his back a moment and Tom pulled a boy's hair in the next bench, and was absorbed in his book when the boy turned around; stuck a pin in another boy, presently, in order to hear him say "Ouch!" and got a new reprimand from his teacher. Tom's whole class were of a pattern--restless, noisy, and troublesome. When they came to recite their lessons, not one of them knew his verses perfectly, but had to be prompted all along. However, they worried through, and each got his reward--in small blue tickets, each with a passage of Scripture on it; each blue ticket was pay for two verses of the recitation. Ten blue tickets equalled a red one, and could be exchanged for it; ten red tickets equalled a yellow one; for ten yellow tickets the superintendent gave a very plainly bound Bible (worth forty cents in those easy times) to the pupil. How many of my readers would have the industry and application to memorize two thousand verses, even for a Dore Bible? And yet Mary had acquired two Bibles in this way--it was the patient work of two years--and a boy of German parentage had won four or five. He once recited three thousand verses without stopping; but the strain upon his mental faculties was too great, and he was little better than an idiot from that day forth--a grievous misfortune for the school, for on great occasions, before company, the superintendent (as Tom expressed it) had always made this boy come out and "spread himself." Only the older pupils managed to keep their tickets and stick to their tedious work long enough to get a Bible, and so the delivery of one of these prizes was a rare and noteworthy circumstance; the successful pupil was so great and conspicuous for that day that on the spot every scholar's heart was fired with a fresh ambition that often lasted a couple of weeks. It is possible that Tom's mental stomach had never really hungered for one of those prizes, but unquestionably his entire being had for many a day longed for the glory and the eclat that came with it. In due course the superintendent stood up in front of the pulpit, with a closed hymn-book in his hand and his forefinger inserted between its leaves, and commanded attention. When a Sunday-school superintendent makes his customary little speech, a hymn-book in the hand is as necessary as is the inevitable sheet of music in the hand of a singer who stands forward on the platform and sings a solo at a concert --though why, is a mystery: for neither the hymn-book nor the sheet of music is ever referred to by the sufferer. This superintendent was a slim creature of thirty-five, with a sandy goatee and short sandy hair; he wore a stiff standing-collar whose upper edge almost reached his ears and whose sharp points curved forward abreast the corners of his mouth--a fence that compelled a straight lookout ahead, and a turning of the whole body when a side view was required; his chin was propped on a spreading cravat which was as broad and as long as a bank-note, and had fringed ends; his boot toes were turned sharply up, in the fashion of the day, like sleigh-runners--an effect patiently and laboriously produced by the young men by sitting with their toes pressed against a wall for hours together. Mr. Walters was very earnest of mien, and very sincere and honest at heart; and he held sacred things and places in such reverence, and so separated them from worldly matters, that unconsciously to himself his Sunday-school voice had acquired a peculiar intonation which was wholly absent on week-days. He began after this fashion: "Now, children, I want you all to sit up just as straight and pretty as you can and give me all your attention for a minute or two. There --that is it. That is the way good little boys and girls should do. I see one little girl who is looking out of the window--I am afraid she thinks I am out there somewhere--perhaps up in one of the trees making a speech to the little birds. [Applausive titter.] I want to tell you how good it makes me feel to see so many bright, clean little faces assembled in a place like this, learning to do right and be good." And so forth and so on. It is not necessary to set down the rest of the oration. It was of a pattern which does not vary, and so it is familiar to us all. The latter third of the speech was marred by the resumption of fights and other recreations among certain of the bad boys, and by fidgetings and whisperings that extended far and wide, washing even to the bases of isolated and incorruptible rocks like Sid and Mary. But now every sound ceased suddenly, with the subsidence of Mr. Walters' voice, and the conclusion of the speech was received with a burst of silent gratitude. A good part of the whispering had been occasioned by an event which was more or less rare--the entrance of visitors: lawyer Thatcher, accompanied by a very feeble and aged man; a fine, portly, middle-aged gentleman with iron-gray hair; and a dignified lady who was doubtless the latter's wife. The lady was leading a child. Tom had been restless and full of chafings and repinings; conscience-smitten, too--he could not meet Amy Lawrence's eye, he could not brook her loving gaze. But when he saw this small new-comer his soul was all ablaze with bliss in a moment. The next moment he was "showing off" with all his might --cuffing boys, pulling hair, making faces--in a word, using every art that seemed likely to fascinate a girl and win her applause. His exaltation had but one alloy--the memory of his humiliation in this angel's garden--and that record in sand was fast washing out, under the waves of happiness that were sweeping over it now. The visitors were given the highest seat of honor, and as soon as Mr. Walters' speech was finished, he introduced them to the school. The middle-aged man turned out to be a prodigious personage--no less a one than the county judge--altogether the most august creation these children had ever looked upon--and they wondered what kind of material he was made of--and they half wanted to hear him roar, and were half afraid he might, too. He was from Constantinople, twelve miles away--so he had travelled, and seen the world--these very eyes had looked upon the county court-house--which was said to have a tin roof. The awe which these reflections inspired was attested by the impressive silence and the ranks of staring eyes. This was the great Judge Thatcher, brother of their own lawyer. Jeff Thatcher immediately went forward, to be familiar with the great man and be envied by the school. It would have been music to his soul to hear the whisperings: "Look at him, Jim! He's a going up there. Say--look! he's a going to shake hands with him--he IS shaking hands with him! By jings, don't you wish you was Jeff?" Mr. Walters fell to "showing off," with all sorts of official bustlings and activities, giving orders, delivering judgments, discharging directions here, there, everywhere that he could find a target. The librarian "showed off"--running hither and thither with his arms full of books and making a deal of the splutter and fuss that insect authority delights in. The young lady teachers "showed off" --bending sweetly over pupils that were lately being boxed, lifting pretty warning fingers at bad little boys and patting good ones lovingly. The young gentlemen teachers "showed off" with small scoldings and other little displays of authority and fine attention to discipline--and most of the teachers, of both sexes, found business up at the library, by the pulpit; and it was business that frequently had to be done over again two or three times (with much seeming vexation). The little girls "showed off" in various ways, and the little boys "showed off" with such diligence that the air was thick with paper wads and the murmur of scufflings. And above it all the great man sat and beamed a majestic judicial smile upon all the house, and warmed himself in the sun of his own grandeur--for he was "showing off," too. There was only one thing wanting to make Mr. Walters' ecstasy complete, and that was a chance to deliver a Bible-prize and exhibit a prodigy. Several pupils had a few yellow tickets, but none had enough --he had been around among the star pupils inquiring. He would have given worlds, now, to have that German lad back again with a sound mind. And now at this moment, when hope was dead, Tom Sawyer came forward with nine yellow tickets, nine red tickets, and ten blue ones, and demanded a Bible. This was a thunderbolt out of a clear sky. Walters was not expecting an application from this source for the next ten years. But there was no getting around it--here were the certified checks, and they were good for their face. Tom was therefore elevated to a place with the Judge and the other elect, and the great news was announced from headquarters. It was the most stunning surprise of the decade, and so profound was the sensation that it lifted the new hero up to the judicial one's altitude, and the school had two marvels to gaze upon in place of one. The boys were all eaten up with envy--but those that suffered the bitterest pangs were those who perceived too late that they themselves had contributed to this hated splendor by trading tickets to Tom for the wealth he had amassed in selling whitewashing privileges. These despised themselves, as being the dupes of a wily fraud, a guileful snake in the grass. The prize was delivered to Tom with as much effusion as the superintendent could pump up under the circumstances; but it lacked somewhat of the true gush, for the poor fellow's instinct taught him that there was a mystery here that could not well bear the light, perhaps; it was simply preposterous that this boy had warehoused two thousand sheaves of Scriptural wisdom on his premises--a dozen would strain his capacity, without a doubt. Amy Lawrence was proud and glad, and she tried to make Tom see it in her face--but he wouldn't look. She wondered; then she was just a grain troubled; next a dim suspicion came and went--came again; she watched; a furtive glance told her worlds--and then her heart broke, and she was jealous, and angry, and the tears came and she hated everybody. Tom most of all (she thought). Tom was introduced to the Judge; but his tongue was tied, his breath would hardly come, his heart quaked--partly because of the awful greatness of the man, but mainly because he was her parent. He would have liked to fall down and worship him, if it were in the dark. The Judge put his hand on Tom's head and called him a fine little man, and asked him what his name was. The boy stammered, gasped, and got it out: "Tom." "Oh, no, not Tom--it is--" "Thomas." "Ah, that's it. I thought there was more to it, maybe. That's very well. But you've another one I daresay, and you'll tell it to me, won't you?" "Tell the gentleman your other name, Thomas," said Walters, "and say sir. You mustn't forget your manners." "Thomas Sawyer--sir." "That's it! That's a good boy. Fine boy. Fine, manly little fellow. Two thousand verses is a great many--very, very great many. And you never can be sorry for the trouble you took to learn them; for knowledge is worth more than anything there is in the world; it's what makes great men and good men; you'll be a great man and a good man yourself, some day, Thomas, and then you'll look back and say, It's all owing to the precious Sunday-school privileges of my boyhood--it's all owing to my dear teachers that taught me to learn--it's all owing to the good superintendent, who encouraged me, and watched over me, and gave me a beautiful Bible--a splendid elegant Bible--to keep and have it all for my own, always--it's all owing to right bringing up! That is what you will say, Thomas--and you wouldn't take any money for those two thousand verses--no indeed you wouldn't. And now you wouldn't mind telling me and this lady some of the things you've learned--no, I know you wouldn't--for we are proud of little boys that learn. Now, no doubt you know the names of all the twelve disciples. Won't you tell us the names of the first two that were appointed?" Tom was tugging at a button-hole and looking sheepish. He blushed, now, and his eyes fell. Mr. Walters' heart sank within him. He said to himself, it is not possible that the boy can answer the simplest question--why DID the Judge ask him? Yet he felt obliged to speak up and say: "Answer the gentleman, Thomas--don't be afraid." Tom still hung fire. "Now I know you'll tell me," said the lady. "The names of the first two disciples were--" "DAVID AND GOLIAH!" Let us draw the curtain of charity over the rest of the scene. CHAPTER V ABOUT half-past ten the cracked bell of the small church began to ring, and presently the people began to gather for the morning sermon. The Sunday-school children distributed themselves about the house and occupied pews with their parents, so as to be under supervision. Aunt Polly came, and Tom and Sid and Mary sat with her--Tom being placed next the aisle, in order that he might be as far away from the open window and the seductive outside summer scenes as possible. The crowd filed up the aisles: the aged and needy postmaster, who had seen better days; the mayor and his wife--for they had a mayor there, among other unnecessaries; the justice of the peace; the widow Douglass, fair, smart, and forty, a generous, good-hearted soul and well-to-do, her hill mansion the only palace in the town, and the most hospitable and much the most lavish in the matter of festivities that St. Petersburg could boast; the bent and venerable Major and Mrs. Ward; lawyer Riverson, the new notable from a distance; next the belle of the village, followed by a troop of lawn-clad and ribbon-decked young heart-breakers; then all the young clerks in town in a body--for they had stood in the vestibule sucking their cane-heads, a circling wall of oiled and simpering admirers, till the last girl had run their gantlet; and last of all came the Model Boy, Willie Mufferson, taking as heedful care of his mother as if she were cut glass. He always brought his mother to church, and was the pride of all the matrons. The boys all hated him, he was so good. And besides, he had been "thrown up to them" so much. His white handkerchief was hanging out of his pocket behind, as usual on Sundays--accidentally. Tom had no handkerchief, and he looked upon boys who had as snobs. The congregation being fully assembled, now, the bell rang once more, to warn laggards and stragglers, and then a solemn hush fell upon the church which was only broken by the tittering and whispering of the choir in the gallery. The choir always tittered and whispered all through service. There was once a church choir that was not ill-bred, but I have forgotten where it was, now. It was a great many years ago, and I can scarcely remember anything about it, but I think it was in some foreign country. The minister gave out the hymn, and read it through with a relish, in a peculiar style which was much admired in that part of the country. His voice began on a medium key and climbed steadily up till it reached a certain point, where it bore with strong emphasis upon the topmost word and then plunged down as if from a spring-board: Shall I be car-ri-ed toe the skies, on flow'ry BEDS of ease, Whilst others fight to win the prize, and sail thro' BLOODY seas? He was regarded as a wonderful reader. At church "sociables" he was always called upon to read poetry; and when he was through, the ladies would lift up their hands and let them fall helplessly in their laps, and "wall" their eyes, and shake their heads, as much as to say, "Words cannot express it; it is too beautiful, TOO beautiful for this mortal earth." After the hymn had been sung, the Rev. Mr. Sprague turned himself into a bulletin-board, and read off "notices" of meetings and societies and things till it seemed that the list would stretch out to the crack of doom--a queer custom which is still kept up in America, even in cities, away here in this age of abundant newspapers. Often, the less there is to justify a traditional custom, the harder it is to get rid of it. And now the minister prayed. A good, generous prayer it was, and went into details: it pleaded for the church, and the little children of the church; for the other churches of the village; for the village itself; for the county; for the State; for the State officers; for the United States; for the churches of the United States; for Congress; for the President; for the officers of the Government; for poor sailors, tossed by stormy seas; for the oppressed millions groaning under the heel of European monarchies and Oriental despotisms; for such as have the light and the good tidings, and yet have not eyes to see nor ears to hear withal; for the heathen in the far islands of the sea; and closed with a supplication that the words he was about to speak might find grace and favor, and be as seed sown in fertile ground, yielding in time a grateful harvest of good. Amen. There was a rustling of dresses, and the standing congregation sat down. The boy whose history this book relates did not enjoy the prayer, he only endured it--if he even did that much. He was restive all through it; he kept tally of the details of the prayer, unconsciously --for he was not listening, but he knew the ground of old, and the clergyman's regular route over it--and when a little trifle of new matter was interlarded, his ear detected it and his whole nature resented it; he considered additions unfair, and scoundrelly. In the midst of the prayer a fly had lit on the back of the pew in front of him and tortured his spirit by calmly rubbing its hands together, embracing its head with its arms, and polishing it so vigorously that it seemed to almost part company with the body, and the slender thread of a neck was exposed to view; scraping its wings with its hind legs and smoothing them to its body as if they had been coat-tails; going through its whole toilet as tranquilly as if it knew it was perfectly safe. As indeed it was; for as sorely as Tom's hands itched to grab for it they did not dare--he believed his soul would be instantly destroyed if he did such a thing while the prayer was going on. But with the closing sentence his hand began to curve and steal forward; and the instant the "Amen" was out the fly was a prisoner of war. His aunt detected the act and made him let it go. The minister gave out his text and droned along monotonously through an argument that was so prosy that many a head by and by began to nod --and yet it was an argument that dealt in limitless fire and brimstone and thinned the predestined elect down to a company so small as to be hardly worth the saving. Tom counted the pages of the sermon; after church he always knew how many pages there had been, but he seldom knew anything else about the discourse. However, this time he was really interested for a little while. The minister made a grand and moving picture of the assembling together of the world's hosts at the millennium when the lion and the lamb should lie down together and a little child should lead them. But the pathos, the lesson, the moral of the great spectacle were lost upon the boy; he only thought of the conspicuousness of the principal character before the on-looking nations; his face lit with the thought, and he said to himself that he wished he could be that child, if it was a tame lion. Now he lapsed into suffering again, as the dry argument was resumed. Presently he bethought him of a treasure he had and got it out. It was a large black beetle with formidable jaws--a "pinchbug," he called it. It was in a percussion-cap box. The first thing the beetle did was to take him by the finger. A natural fillip followed, the beetle went floundering into the aisle and lit on its back, and the hurt finger went into the boy's mouth. The beetle lay there working its helpless legs, unable to turn over. Tom eyed it, and longed for it; but it was safe out of his reach. Other people uninterested in the sermon found relief in the beetle, and they eyed it too. Presently a vagrant poodle dog came idling along, sad at heart, lazy with the summer softness and the quiet, weary of captivity, sighing for change. He spied the beetle; the drooping tail lifted and wagged. He surveyed the prize; walked around it; smelt at it from a safe distance; walked around it again; grew bolder, and took a closer smell; then lifted his lip and made a gingerly snatch at it, just missing it; made another, and another; began to enjoy the diversion; subsided to his stomach with the beetle between his paws, and continued his experiments; grew weary at last, and then indifferent and absent-minded. His head nodded, and little by little his chin descended and touched the enemy, who seized it. There was a sharp yelp, a flirt of the poodle's head, and the beetle fell a couple of yards away, and lit on its back once more. The neighboring spectators shook with a gentle inward joy, several faces went behind fans and handkerchiefs, and Tom was entirely happy. The dog looked foolish, and probably felt so; but there was resentment in his heart, too, and a craving for revenge. So he went to the beetle and began a wary attack on it again; jumping at it from every point of a circle, lighting with his fore-paws within an inch of the creature, making even closer snatches at it with his teeth, and jerking his head till his ears flapped again. But he grew tired once more, after a while; tried to amuse himself with a fly but found no relief; followed an ant around, with his nose close to the floor, and quickly wearied of that; yawned, sighed, forgot the beetle entirely, and sat down on it. Then there was a wild yelp of agony and the poodle went sailing up the aisle; the yelps continued, and so did the dog; he crossed the house in front of the altar; he flew down the other aisle; he crossed before the doors; he clamored up the home-stretch; his anguish grew with his progress, till presently he was but a woolly comet moving in its orbit with the gleam and the speed of light. At last the frantic sufferer sheered from its course, and sprang into its master's lap; he flung it out of the window, and the voice of distress quickly thinned away and died in the distance. By this time the whole church was red-faced and suffocating with suppressed laughter, and the sermon had come to a dead standstill. The discourse was resumed presently, but it went lame and halting, all possibility of impressiveness being at an end; for even the gravest sentiments were constantly being received with a smothered burst of unholy mirth, under cover of some remote pew-back, as if the poor parson had said a rarely facetious thing. It was a genuine relief to the whole congregation when the ordeal was over and the benediction pronounced. Tom Sawyer went home quite cheerful, thinking to himself that there was some satisfaction about divine service when there was a bit of variety in it. He had but one marring thought; he was willing that the dog should play with his pinchbug, but he did not think it was upright in him to carry it off. CHAPTER VI MONDAY morning found Tom Sawyer miserable. Monday morning always found him so--because it began another week's slow suffering in school. He generally began that day with wishing he had had no intervening holiday, it made the going into captivity and fetters again so much more odious. Tom lay thinking. Presently it occurred to him that he wished he was sick; then he could stay home from school. Here was a vague possibility. He canvassed his system. No ailment was found, and he investigated again. This time he thought he could detect colicky symptoms, and he began to encourage them with considerable hope. But they soon grew feeble, and presently died wholly away. He reflected further. Suddenly he discovered something. One of his upper front teeth was loose. This was lucky; he was about to begin to groan, as a "starter," as he called it, when it occurred to him that if he came into court with that argument, his aunt would pull it out, and that would hurt. So he thought he would hold the tooth in reserve for the present, and seek further. Nothing offered for some little time, and then he remembered hearing the doctor tell about a certain thing that laid up a patient for two or three weeks and threatened to make him lose a finger. So the boy eagerly drew his sore toe from under the sheet and held it up for inspection. But now he did not know the necessary symptoms. However, it seemed well worth while to chance it, so he fell to groaning with considerable spirit. But Sid slept on unconscious. Tom groaned louder, and fancied that he began to feel pain in the toe. No result from Sid. Tom was panting with his exertions by this time. He took a rest and then swelled himself up and fetched a succession of admirable groans. Sid snored on. Tom was aggravated. He said, "Sid, Sid!" and shook him. This course worked well, and Tom began to groan again. Sid yawned, stretched, then brought himself up on his elbow with a snort, and began to stare at Tom. Tom went on groaning. Sid said: "Tom! Say, Tom!" [No response.] "Here, Tom! TOM! What is the matter, Tom?" And he shook him and looked in his face anxiously. Tom moaned out: "Oh, don't, Sid. Don't joggle me." "Why, what's the matter, Tom? I must call auntie." "No--never mind. It'll be over by and by, maybe. Don't call anybody." "But I must! DON'T groan so, Tom, it's awful. How long you been this way?" "Hours. Ouch! Oh, don't stir so, Sid, you'll kill me." "Tom, why didn't you wake me sooner? Oh, Tom, DON'T! It makes my flesh crawl to hear you. Tom, what is the matter?" "I forgive you everything, Sid. [Groan.] Everything you've ever done to me. When I'm gone--" "Oh, Tom, you ain't dying, are you? Don't, Tom--oh, don't. Maybe--" "I forgive everybody, Sid. [Groan.] Tell 'em so, Sid. And Sid, you give my window-sash and my cat with one eye to that new girl that's come to town, and tell her--" But Sid had snatched his clothes and gone. Tom was suffering in reality, now, so handsomely was his imagination working, and so his groans had gathered quite a genuine tone. Sid flew down-stairs and said: "Oh, Aunt Polly, come! Tom's dying!" "Dying!" "Yes'm. Don't wait--come quick!" "Rubbage! I don't believe it!" But she fled up-stairs, nevertheless, with Sid and Mary at her heels. And her face grew white, too, and her lip trembled. When she reached the bedside she gasped out: "You, Tom! Tom, what's the matter with you?" "Oh, auntie, I'm--" "What's the matter with you--what is the matter with you, child?" "Oh, auntie, my sore toe's mortified!" The old lady sank down into a chair and laughed a little, then cried a little, then did both together. This restored her and she said: "Tom, what a turn you did give me. Now you shut up that nonsense and climb out of this." The groans ceased and the pain vanished from the toe. The boy felt a little foolish, and he said: "Aunt Polly, it SEEMED mortified, and it hurt so I never minded my tooth at all." "Your tooth, indeed! What's the matter with your tooth?" "One of them's loose, and it aches perfectly awful." "There, there, now, don't begin that groaning again. Open your mouth. Well--your tooth IS loose, but you're not going to die about that. Mary, get me a silk thread, and a chunk of fire out of the kitchen." Tom said: "Oh, please, auntie, don't pull it out. It don't hurt any more. I wish I may never stir if it does. Please don't, auntie. I don't want to stay home from school." "Oh, you don't, don't you? So all this row was because you thought you'd get to stay home from school and go a-fishing? Tom, Tom, I love you so, and you seem to try every way you can to break my old heart with your outrageousness." By this time the dental instruments were ready. The old lady made one end of the silk thread fast to Tom's tooth with a loop and tied the other to the bedpost. Then she seized the chunk of fire and suddenly thrust it almost into the boy's face. The tooth hung dangling by the bedpost, now. But all trials bring their compensations. As Tom wended to school after breakfast, he was the envy of every boy he met because the gap in his upper row of teeth enabled him to expectorate in a new and admirable way. He gathered quite a following of lads interested in the exhibition; and one that had cut his finger and had been a centre of fascination and homage up to this time, now found himself suddenly without an adherent, and shorn of his glory. His heart was heavy, and he said with a disdain which he did not feel that it wasn't anything to spit like Tom Sawyer; but another boy said, "Sour grapes!" and he wandered away a dismantled hero. Shortly Tom came upon the juvenile pariah of the village, Huckleberry Finn, son of the town drunkard. Huckleberry was cordially hated and dreaded by all the mothers of the town, because he was idle and lawless and vulgar and bad--and because all their children admired him so, and delighted in his forbidden society, and wished they dared to be like him. Tom was like the rest of the respectable boys, in that he envied Huckleberry his gaudy outcast condition, and was under strict orders not to play with him. So he played with him every time he got a chance. Huckleberry was always dressed in the cast-off clothes of full-grown men, and they were in perennial bloom and fluttering with rags. His hat was a vast ruin with a wide crescent lopped out of its brim; his coat, when he wore one, hung nearly to his heels and had the rearward buttons far down the back; but one suspender supported his trousers; the seat of the trousers bagged low and contained nothing, the fringed legs dragged in the dirt when not rolled up. Huckleberry came and went, at his own free will. He slept on doorsteps in fine weather and in empty hogsheads in wet; he did not have to go to school or to church, or call any being master or obey anybody; he could go fishing or swimming when and where he chose, and stay as long as it suited him; nobody forbade him to fight; he could sit up as late as he pleased; he was always the first boy that went barefoot in the spring and the last to resume leather in the fall; he never had to wash, nor put on clean clothes; he could swear wonderfully. In a word, everything that goes to make life precious that boy had. So thought every harassed, hampered, respectable boy in St. Petersburg. Tom hailed the romantic outcast: "Hello, Huckleberry!" "Hello yourself, and see how you like it." "What's that you got?" "Dead cat." "Lemme see him, Huck. My, he's pretty stiff. Where'd you get him?" "Bought him off'n a boy." "What did you give?" "I give a blue ticket and a bladder that I got at the slaughter-house." "Where'd you get the blue ticket?" "Bought it off'n Ben Rogers two weeks ago for a hoop-stick." "Say--what is dead cats good for, Huck?" "Good for? Cure warts with." "No! Is that so? I know something that's better." "I bet you don't. What is it?" "Why, spunk-water." "Spunk-water! I wouldn't give a dern for spunk-water." "You wouldn't, wouldn't you? D'you ever try it?" "No, I hain't. But Bob Tanner did." "Who told you so!" "Why, he told Jeff Thatcher, and Jeff told Johnny Baker, and Johnny told Jim Hollis, and Jim told Ben Rogers, and Ben told a nigger, and the nigger told me. There now!" "Well, what of it? They'll all lie. Leastways all but the nigger. I don't know HIM. But I never see a nigger that WOULDN'T lie. Shucks! Now you tell me how Bob Tanner done it, Huck." "Why, he took and dipped his hand in a rotten stump where the rain-water was." "In the daytime?" "Certainly." "With his face to the stump?" "Yes. Least I reckon so." "Did he say anything?" "I don't reckon he did. I don't know." "Aha! Talk about trying to cure warts with spunk-water such a blame fool way as that! Why, that ain't a-going to do any good. You got to go all by yourself, to the middle of the woods, where you know there's a spunk-water stump, and just as it's midnight you back up against the stump and jam your hand in and say: 'Barley-corn, barley-corn, injun-meal shorts, Spunk-water, spunk-water, swaller these warts,' and then walk away quick, eleven steps, with your eyes shut, and then turn around three times and walk home without speaking to anybody. Because if you speak the charm's busted." "Well, that sounds like a good way; but that ain't the way Bob Tanner done." "No, sir, you can bet he didn't, becuz he's the wartiest boy in this town; and he wouldn't have a wart on him if he'd knowed how to work spunk-water. I've took off thousands of warts off of my hands that way, Huck. I play with frogs so much that I've always got considerable many warts. Sometimes I take 'em off with a bean." "Yes, bean's good. I've done that." "Have you? What's your way?" "You take and split the bean, and cut the wart so as to get some blood, and then you put the blood on one piece of the bean and take and dig a hole and bury it 'bout midnight at the crossroads in the dark of the moon, and then you burn up the rest of the bean. You see that piece that's got the blood on it will keep drawing and drawing, trying to fetch the other piece to it, and so that helps the blood to draw the wart, and pretty soon off she comes." "Yes, that's it, Huck--that's it; though when you're burying it if you say 'Down bean; off wart; come no more to bother me!' it's better. That's the way Joe Harper does, and he's been nearly to Coonville and most everywheres. But say--how do you cure 'em with dead cats?" "Why, you take your cat and go and get in the graveyard 'long about midnight when somebody that was wicked has been buried; and when it's midnight a devil will come, or maybe two or three, but you can't see 'em, you can only hear something like the wind, or maybe hear 'em talk; and when they're taking that feller away, you heave your cat after 'em and say, 'Devil follow corpse, cat follow devil, warts follow cat, I'm done with ye!' That'll fetch ANY wart." "Sounds right. D'you ever try it, Huck?" "No, but old Mother Hopkins told me." "Well, I reckon it's so, then. Becuz they say she's a witch." "Say! Why, Tom, I KNOW she is. She witched pap. Pap says so his own self. He come along one day, and he see she was a-witching him, so he took up a rock, and if she hadn't dodged, he'd a got her. Well, that very night he rolled off'n a shed wher' he was a layin drunk, and broke his arm." "Why, that's awful. How did he know she was a-witching him?" "Lord, pap can tell, easy. Pap says when they keep looking at you right stiddy, they're a-witching you. Specially if they mumble. Becuz when they mumble they're saying the Lord's Prayer backards." "Say, Hucky, when you going to try the cat?" "To-night. I reckon they'll come after old Hoss Williams to-night." "But they buried him Saturday. Didn't they get him Saturday night?" "Why, how you talk! How could their charms work till midnight?--and THEN it's Sunday. Devils don't slosh around much of a Sunday, I don't reckon." "I never thought of that. That's so. Lemme go with you?" "Of course--if you ain't afeard." "Afeard! 'Tain't likely. Will you meow?" "Yes--and you meow back, if you get a chance. Last time, you kep' me a-meowing around till old Hays went to throwing rocks at me and says 'Dern that cat!' and so I hove a brick through his window--but don't you tell." "I won't. I couldn't meow that night, becuz auntie was watching me, but I'll meow this time. Say--what's that?" "Nothing but a tick." "Where'd you get him?" "Out in the woods." "What'll you take for him?" "I don't know. I don't want to sell him." "All right. It's a mighty small tick, anyway." "Oh, anybody can run a tick down that don't belong to them. I'm satisfied with it. It's a good enough tick for me." "Sho, there's ticks a plenty. I could have a thousand of 'em if I wanted to." "Well, why don't you? Becuz you know mighty well you can't. This is a pretty early tick, I reckon. It's the first one I've seen this year." "Say, Huck--I'll give you my tooth for him." "Less see it." Tom got out a bit of paper and carefully unrolled it. Huckleberry viewed it wistfully. The temptation was very strong. At last he said: "Is it genuwyne?" Tom lifted his lip and showed the vacancy. "Well, all right," said Huckleberry, "it's a trade." Tom enclosed the tick in the percussion-cap box that had lately been the pinchbug's prison, and the boys separated, each feeling wealthier than before. When Tom reached the little isolated frame schoolhouse, he strode in briskly, with the manner of one who had come with all honest speed. He hung his hat on a peg and flung himself into his seat with business-like alacrity. The master, throned on high in his great splint-bottom arm-chair, was dozing, lulled by the drowsy hum of study. The interruption roused him. "Thomas Sawyer!" Tom knew that when his name was pronounced in full, it meant trouble. "Sir!" "Come up here. Now, sir, why are you late again, as usual?" Tom was about to take refuge in a lie, when he saw two long tails of yellow hair hanging down a back that he recognized by the electric sympathy of love; and by that form was THE ONLY VACANT PLACE on the girls' side of the schoolhouse. He instantly said: "I STOPPED TO TALK WITH HUCKLEBERRY FINN!" The master's pulse stood still, and he stared helplessly. The buzz of study ceased. The pupils wondered if this foolhardy boy had lost his mind. The master said: "You--you did what?" "Stopped to talk with Huckleberry Finn." There was no mistaking the words. "Thomas Sawyer, this is the most astounding confession I have ever listened to. No mere ferule will answer for this offence. Take off your jacket." The master's arm performed until it was tired and the stock of switches notably diminished. Then the order followed: "Now, sir, go and sit with the girls! And let this be a warning to you." The titter that rippled around the room appeared to abash the boy, but in reality that result was caused rather more by his worshipful awe of his unknown idol and the dread pleasure that lay in his high good fortune. He sat down upon the end of the pine bench and the girl hitched herself away from him with a toss of her head. Nudges and winks and whispers traversed the room, but Tom sat still, with his arms upon the long, low desk before him, and seemed to study his book. By and by attention ceased from him, and the accustomed school murmur rose upon the dull air once more. Presently the boy began to steal furtive glances at the girl. She observed it, "made a mouth" at him and gave him the back of her head for the space of a minute. When she cautiously faced around again, a peach lay before her. She thrust it away. Tom gently put it back. She thrust it away again, but with less animosity. Tom patiently returned it to its place. Then she let it remain. Tom scrawled on his slate, "Please take it--I got more." The girl glanced at the words, but made no sign. Now the boy began to draw something on the slate, hiding his work with his left hand. For a time the girl refused to notice; but her human curiosity presently began to manifest itself by hardly perceptible signs. The boy worked on, apparently unconscious. The girl made a sort of noncommittal attempt to see, but the boy did not betray that he was aware of it. At last she gave in and hesitatingly whispered: "Let me see it." Tom partly uncovered a dismal caricature of a house with two gable ends to it and a corkscrew of smoke issuing from the chimney. Then the girl's interest began to fasten itself upon the work and she forgot everything else. When it was finished, she gazed a moment, then whispered: "It's nice--make a man." The artist erected a man in the front yard, that resembled a derrick. He could have stepped over the house; but the girl was not hypercritical; she was satisfied with the monster, and whispered: "It's a beautiful man--now make me coming along." Tom drew an hour-glass with a full moon and straw limbs to it and armed the spreading fingers with a portentous fan. The girl said: "It's ever so nice--I wish I could draw." "It's easy," whispered Tom, "I'll learn you." "Oh, will you? When?" "At noon. Do you go home to dinner?" "I'll stay if you will." "Good--that's a whack. What's your name?" "Becky Thatcher. What's yours? Oh, I know. It's Thomas Sawyer." "That's the name they lick me by. I'm Tom when I'm good. You call me Tom, will you?" "Yes." Now Tom began to scrawl something on the slate, hiding the words from the girl. But she was not backward this time. She begged to see. Tom said: "Oh, it ain't anything." "Yes it is." "No it ain't. You don't want to see." "Yes I do, indeed I do. Please let me." "You'll tell." "No I won't--deed and deed and double deed won't." "You won't tell anybody at all? Ever, as long as you live?" "No, I won't ever tell ANYbody. Now let me." "Oh, YOU don't want to see!" "Now that you treat me so, I WILL see." And she put her small hand upon his and a little scuffle ensued, Tom pretending to resist in earnest but letting his hand slip by degrees till these words were revealed: "I LOVE YOU." "Oh, you bad thing!" And she hit his hand a smart rap, but reddened and looked pleased, nevertheless. Just at this juncture the boy felt a slow, fateful grip closing on his ear, and a steady lifting impulse. In that wise he was borne across the house and deposited in his own seat, under a peppering fire of giggles from the whole school. Then the master stood over him during a few awful moments, and finally moved away to his throne without saying a word. But although Tom's ear tingled, his heart was jubilant. As the school quieted down Tom made an honest effort to study, but the turmoil within him was too great. In turn he took his place in the reading class and made a botch of it; then in the geography class and turned lakes into mountains, mountains into rivers, and rivers into continents, till chaos was come again; then in the spelling class, and got "turned down," by a succession of mere baby words, till he brought up at the foot and yielded up the pewter medal which he had worn with ostentation for months. CHAPTER VII THE harder Tom tried to fasten his mind on his book, the more his ideas wandered. So at last, with a sigh and a yawn, he gave it up. It seemed to him that the noon recess would never come. The air was utterly dead. There was not a breath stirring. It was the sleepiest of sleepy days. The drowsing murmur of the five and twenty studying scholars soothed the soul like the spell that is in the murmur of bees. Away off in the flaming sunshine, Cardiff Hill lifted its soft green sides through a shimmering veil of heat, tinted with the purple of distance; a few birds floated on lazy wing high in the air; no other living thing was visible but some cows, and they were asleep. Tom's heart ached to be free, or else to have something of interest to do to pass the dreary time. His hand wandered into his pocket and his face lit up with a glow of gratitude that was prayer, though he did not know it. Then furtively the percussion-cap box came out. He released the tick and put him on the long flat desk. The creature probably glowed with a gratitude that amounted to prayer, too, at this moment, but it was premature: for when he started thankfully to travel off, Tom turned him aside with a pin and made him take a new direction. Tom's bosom friend sat next him, suffering just as Tom had been, and now he was deeply and gratefully interested in this entertainment in an instant. This bosom friend was Joe Harper. The two boys were sworn friends all the week, and embattled enemies on Saturdays. Joe took a pin out of his lapel and began to assist in exercising the prisoner. The sport grew in interest momently. Soon Tom said that they were interfering with each other, and neither getting the fullest benefit of the tick. So he put Joe's slate on the desk and drew a line down the middle of it from top to bottom. "Now," said he, "as long as he is on your side you can stir him up and I'll let him alone; but if you let him get away and get on my side, you're to leave him alone as long as I can keep him from crossing over." "All right, go ahead; start him up." The tick escaped from Tom, presently, and crossed the equator. Joe harassed him awhile, and then he got away and crossed back again. This change of base occurred often. While one boy was worrying the tick with absorbing interest, the other would look on with interest as strong, the two heads bowed together over the slate, and the two souls dead to all things else. At last luck seemed to settle and abide with Joe. The tick tried this, that, and the other course, and got as excited and as anxious as the boys themselves, but time and again just as he would have victory in his very grasp, so to speak, and Tom's fingers would be twitching to begin, Joe's pin would deftly head him off, and keep possession. At last Tom could stand it no longer. The temptation was too strong. So he reached out and lent a hand with his pin. Joe was angry in a moment. Said he: "Tom, you let him alone." "I only just want to stir him up a little, Joe." "No, sir, it ain't fair; you just let him alone." "Blame it, I ain't going to stir him much." "Let him alone, I tell you." "I won't!" "You shall--he's on my side of the line." "Look here, Joe Harper, whose is that tick?" "I don't care whose tick he is--he's on my side of the line, and you sha'n't touch him." "Well, I'll just bet I will, though. He's my tick and I'll do what I blame please with him, or die!" A tremendous whack came down on Tom's shoulders, and its duplicate on Joe's; and for the space of two minutes the dust continued to fly from the two jackets and the whole school to enjoy it. The boys had been too absorbed to notice the hush that had stolen upon the school awhile before when the master came tiptoeing down the room and stood over them. He had contemplated a good part of the performance before he contributed his bit of variety to it. When school broke up at noon, Tom flew to Becky Thatcher, and whispered in her ear: "Put on your bonnet and let on you're going home; and when you get to the corner, give the rest of 'em the slip, and turn down through the lane and come back. I'll go the other way and come it over 'em the same way." So the one went off with one group of scholars, and the other with another. In a little while the two met at the bottom of the lane, and when they reached the school they had it all to themselves. Then they sat together, with a slate before them, and Tom gave Becky the pencil and held her hand in his, guiding it, and so created another surprising house. When the interest in art began to wane, the two fell to talking. Tom was swimming in bliss. He said: "Do you love rats?" "No! I hate them!" "Well, I do, too--LIVE ones. But I mean dead ones, to swing round your head with a string." "No, I don't care for rats much, anyway. What I like is chewing-gum." "Oh, I should say so! I wish I had some now." "Do you? I've got some. I'll let you chew it awhile, but you must give it back to me." That was agreeable, so they chewed it turn about, and dangled their legs against the bench in excess of contentment. "Was you ever at a circus?" said Tom. "Yes, and my pa's going to take me again some time, if I'm good." "I been to the circus three or four times--lots of times. Church ain't shucks to a circus. There's things going on at a circus all the time. I'm going to be a clown in a circus when I grow up." "Oh, are you! That will be nice. They're so lovely, all spotted up." "Yes, that's so. And they get slathers of money--most a dollar a day, Ben Rogers says. Say, Becky, was you ever engaged?" "What's that?" "Why, engaged to be married." "No." "Would you like to?" "I reckon so. I don't know. What is it like?" "Like? Why it ain't like anything. You only just tell a boy you won't ever have anybody but him, ever ever ever, and then you kiss and that's all. Anybody can do it." "Kiss? What do you kiss for?" "Why, that, you know, is to--well, they always do that." "Everybody?" "Why, yes, everybody that's in love with each other. Do you remember what I wrote on the slate?" "Ye--yes." "What was it?" "I sha'n't tell you." "Shall I tell YOU?" "Ye--yes--but some other time." "No, now." "No, not now--to-morrow." "Oh, no, NOW. Please, Becky--I'll whisper it, I'll whisper it ever so easy." Becky hesitating, Tom took silence for consent, and passed his arm about her waist and whispered the tale ever so softly, with his mouth close to her ear. And then he added: "Now you whisper it to me--just the same." She resisted, for a while, and then said: "You turn your face away so you can't see, and then I will. But you mustn't ever tell anybody--WILL you, Tom? Now you won't, WILL you?" "No, indeed, indeed I won't. Now, Becky." He turned his face away. She bent timidly around till her breath stirred his curls and whispered, "I--love--you!" Then she sprang away and ran around and around the desks and benches, with Tom after her, and took refuge in a corner at last, with her little white apron to her face. Tom clasped her about her neck and pleaded: "Now, Becky, it's all done--all over but the kiss. Don't you be afraid of that--it ain't anything at all. Please, Becky." And he tugged at her apron and the hands. By and by she gave up, and let her hands drop; her face, all glowing with the struggle, came up and submitted. Tom kissed the red lips and said: "Now it's all done, Becky. And always after this, you know, you ain't ever to love anybody but me, and you ain't ever to marry anybody but me, ever never and forever. Will you?" "No, I'll never love anybody but you, Tom, and I'll never marry anybody but you--and you ain't to ever marry anybody but me, either." "Certainly. Of course. That's PART of it. And always coming to school or when we're going home, you're to walk with me, when there ain't anybody looking--and you choose me and I choose you at parties, because that's the way you do when you're engaged." "It's so nice. I never heard of it before." "Oh, it's ever so gay! Why, me and Amy Lawrence--" The big eyes told Tom his blunder and he stopped, confused. "Oh, Tom! Then I ain't the first you've ever been engaged to!" The child began to cry. Tom said: "Oh, don't cry, Becky, I don't care for her any more." "Yes, you do, Tom--you know you do." Tom tried to put his arm about her neck, but she pushed him away and turned her face to the wall, and went on crying. Tom tried again, with soothing words in his mouth, and was repulsed again. Then his pride was up, and he strode away and went outside. He stood about, restless and uneasy, for a while, glancing at the door, every now and then, hoping she would repent and come to find him. But she did not. Then he began to feel badly and fear that he was in the wrong. It was a hard struggle with him to make new advances, now, but he nerved himself to it and entered. She was still standing back there in the corner, sobbing, with her face to the wall. Tom's heart smote him. He went to her and stood a moment, not knowing exactly how to proceed. Then he said hesitatingly: "Becky, I--I don't care for anybody but you." No reply--but sobs. "Becky"--pleadingly. "Becky, won't you say something?" More sobs. Tom got out his chiefest jewel, a brass knob from the top of an andiron, and passed it around her so that she could see it, and said: "Please, Becky, won't you take it?" She struck it to the floor. Then Tom marched out of the house and over the hills and far away, to return to school no more that day. Presently Becky began to suspect. She ran to the door; he was not in sight; she flew around to the play-yard; he was not there. Then she called: "Tom! Come back, Tom!" She listened intently, but there was no answer. She had no companions but silence and loneliness. So she sat down to cry again and upbraid herself; and by this time the scholars began to gather again, and she had to hide her griefs and still her broken heart and take up the cross of a long, dreary, aching afternoon, with none among the strangers about her to exchange sorrows with. CHAPTER VIII TOM dodged hither and thither through lanes until he was well out of the track of returning scholars, and then fell into a moody jog. He crossed a small "branch" two or three times, because of a prevailing juvenile superstition that to cross water baffled pursuit. Half an hour later he was disappearing behind the Douglas mansion on the summit of Cardiff Hill, and the schoolhouse was hardly distinguishable away off in the valley behind him. He entered a dense wood, picked his pathless way to the centre of it, and sat down on a mossy spot under a spreading oak. There was not even a zephyr stirring; the dead noonday heat had even stilled the songs of the birds; nature lay in a trance that was broken by no sound but the occasional far-off hammering of a woodpecker, and this seemed to render the pervading silence and sense of loneliness the more profound. The boy's soul was steeped in melancholy; his feelings were in happy accord with his surroundings. He sat long with his elbows on his knees and his chin in his hands, meditating. It seemed to him that life was but a trouble, at best, and he more than half envied Jimmy Hodges, so lately released; it must be very peaceful, he thought, to lie and slumber and dream forever and ever, with the wind whispering through the trees and caressing the grass and the flowers over the grave, and nothing to bother and grieve about, ever any more. If he only had a clean Sunday-school record he could be willing to go, and be done with it all. Now as to this girl. What had he done? Nothing. He had meant the best in the world, and been treated like a dog--like a very dog. She would be sorry some day--maybe when it was too late. Ah, if he could only die TEMPORARILY! But the elastic heart of youth cannot be compressed into one constrained shape long at a time. Tom presently began to drift insensibly back into the concerns of this life again. What if he turned his back, now, and disappeared mysteriously? What if he went away--ever so far away, into unknown countries beyond the seas--and never came back any more! How would she feel then! The idea of being a clown recurred to him now, only to fill him with disgust. For frivolity and jokes and spotted tights were an offense, when they intruded themselves upon a spirit that was exalted into the vague august realm of the romantic. No, he would be a soldier, and return after long years, all war-worn and illustrious. No--better still, he would join the Indians, and hunt buffaloes and go on the warpath in the mountain ranges and the trackless great plains of the Far West, and away in the future come back a great chief, bristling with feathers, hideous with paint, and prance into Sunday-school, some drowsy summer morning, with a bloodcurdling war-whoop, and sear the eyeballs of all his companions with unappeasable envy. But no, there was something gaudier even than this. He would be a pirate! That was it! NOW his future lay plain before him, and glowing with unimaginable splendor. How his name would fill the world, and make people shudder! How gloriously he would go plowing the dancing seas, in his long, low, black-hulled racer, the Spirit of the Storm, with his grisly flag flying at the fore! And at the zenith of his fame, how he would suddenly appear at the old village and stalk into church, brown and weather-beaten, in his black velvet doublet and trunks, his great jack-boots, his crimson sash, his belt bristling with horse-pistols, his crime-rusted cutlass at his side, his slouch hat with waving plumes, his black flag unfurled, with the skull and crossbones on it, and hear with swelling ecstasy the whisperings, "It's Tom Sawyer the Pirate!--the Black Avenger of the Spanish Main!" Yes, it was settled; his career was determined. He would run away from home and enter upon it. He would start the very next morning. Therefore he must now begin to get ready. He would collect his resources together. He went to a rotten log near at hand and began to dig under one end of it with his Barlow knife. He soon struck wood that sounded hollow. He put his hand there and uttered this incantation impressively: "What hasn't come here, come! What's here, stay here!" Then he scraped away the dirt, and exposed a pine shingle. He took it up and disclosed a shapely little treasure-house whose bottom and sides were of shingles. In it lay a marble. Tom's astonishment was boundless! He scratched his head with a perplexed air, and said: "Well, that beats anything!" Then he tossed the marble away pettishly, and stood cogitating. The truth was, that a superstition of his had failed, here, which he and all his comrades had always looked upon as infallible. If you buried a marble with certain necessary incantations, and left it alone a fortnight, and then opened the place with the incantation he had just used, you would find that all the marbles you had ever lost had gathered themselves together there, meantime, no matter how widely they had been separated. But now, this thing had actually and unquestionably failed. Tom's whole structure of faith was shaken to its foundations. He had many a time heard of this thing succeeding but never of its failing before. It did not occur to him that he had tried it several times before, himself, but could never find the hiding-places afterward. He puzzled over the matter some time, and finally decided that some witch had interfered and broken the charm. He thought he would satisfy himself on that point; so he searched around till he found a small sandy spot with a little funnel-shaped depression in it. He laid himself down and put his mouth close to this depression and called-- "Doodle-bug, doodle-bug, tell me what I want to know! Doodle-bug, doodle-bug, tell me what I want to know!" The sand began to work, and presently a small black bug appeared for a second and then darted under again in a fright. "He dasn't tell! So it WAS a witch that done it. I just knowed it." He well knew the futility of trying to contend against witches, so he gave up discouraged. But it occurred to him that he might as well have the marble he had just thrown away, and therefore he went and made a patient search for it. But he could not find it. Now he went back to his treasure-house and carefully placed himself just as he had been standing when he tossed the marble away; then he took another marble from his pocket and tossed it in the same way, saying: "Brother, go find your brother!" He watched where it stopped, and went there and looked. But it must have fallen short or gone too far; so he tried twice more. The last repetition was successful. The two marbles lay within a foot of each other. Just here the blast of a toy tin trumpet came faintly down the green aisles of the forest. Tom flung off his jacket and trousers, turned a suspender into a belt, raked away some brush behind the rotten log, disclosing a rude bow and arrow, a lath sword and a tin trumpet, and in a moment had seized these things and bounded away, barelegged, with fluttering shirt. He presently halted under a great elm, blew an answering blast, and then began to tiptoe and look warily out, this way and that. He said cautiously--to an imaginary company: "Hold, my merry men! Keep hid till I blow." Now appeared Joe Harper, as airily clad and elaborately armed as Tom. Tom called: "Hold! Who comes here into Sherwood Forest without my pass?" "Guy of Guisborne wants no man's pass. Who art thou that--that--" "Dares to hold such language," said Tom, prompting--for they talked "by the book," from memory. "Who art thou that dares to hold such language?" "I, indeed! I am Robin Hood, as thy caitiff carcase soon shall know." "Then art thou indeed that famous outlaw? Right gladly will I dispute with thee the passes of the merry wood. Have at thee!" They took their lath swords, dumped their other traps on the ground, struck a fencing attitude, foot to foot, and began a grave, careful combat, "two up and two down." Presently Tom said: "Now, if you've got the hang, go it lively!" So they "went it lively," panting and perspiring with the work. By and by Tom shouted: "Fall! fall! Why don't you fall?" "I sha'n't! Why don't you fall yourself? You're getting the worst of it." "Why, that ain't anything. I can't fall; that ain't the way it is in the book. The book says, 'Then with one back-handed stroke he slew poor Guy of Guisborne.' You're to turn around and let me hit you in the back." There was no getting around the authorities, so Joe turned, received the whack and fell. "Now," said Joe, getting up, "you got to let me kill YOU. That's fair." "Why, I can't do that, it ain't in the book." "Well, it's blamed mean--that's all." "Well, say, Joe, you can be Friar Tuck or Much the miller's son, and lam me with a quarter-staff; or I'll be the Sheriff of Nottingham and you be Robin Hood a little while and kill me." This was satisfactory, and so these adventures were carried out. Then Tom became Robin Hood again, and was allowed by the treacherous nun to bleed his strength away through his neglected wound. And at last Joe, representing a whole tribe of weeping outlaws, dragged him sadly forth, gave his bow into his feeble hands, and Tom said, "Where this arrow falls, there bury poor Robin Hood under the greenwood tree." Then he shot the arrow and fell back and would have died, but he lit on a nettle and sprang up too gaily for a corpse. The boys dressed themselves, hid their accoutrements, and went off grieving that there were no outlaws any more, and wondering what modern civilization could claim to have done to compensate for their loss. They said they would rather be outlaws a year in Sherwood Forest than President of the United States forever. CHAPTER IX AT half-past nine, that night, Tom and Sid were sent to bed, as usual. They said their prayers, and Sid was soon asleep. Tom lay awake and waited, in restless impatience. When it seemed to him that it must be nearly daylight, he heard the clock strike ten! This was despair. He would have tossed and fidgeted, as his nerves demanded, but he was afraid he might wake Sid. So he lay still, and stared up into the dark. Everything was dismally still. By and by, out of the stillness, little, scarcely perceptible noises began to emphasize themselves. The ticking of the clock began to bring itself into notice. Old beams began to crack mysteriously. The stairs creaked faintly. Evidently spirits were abroad. A measured, muffled snore issued from Aunt Polly's chamber. And now the tiresome chirping of a cricket that no human ingenuity could locate, began. Next the ghastly ticking of a deathwatch in the wall at the bed's head made Tom shudder--it meant that somebody's days were numbered. Then the howl of a far-off dog rose on the night air, and was answered by a fainter howl from a remoter distance. Tom was in an agony. At last he was satisfied that time had ceased and eternity begun; he began to doze, in spite of himself; the clock chimed eleven, but he did not hear it. And then there came, mingling with his half-formed dreams, a most melancholy caterwauling. The raising of a neighboring window disturbed him. A cry of "Scat! you devil!" and the crash of an empty bottle against the back of his aunt's woodshed brought him wide awake, and a single minute later he was dressed and out of the window and creeping along the roof of the "ell" on all fours. He "meow'd" with caution once or twice, as he went; then jumped to the roof of the woodshed and thence to the ground. Huckleberry Finn was there, with his dead cat. The boys moved off and disappeared in the gloom. At the end of half an hour they were wading through the tall grass of the graveyard. It was a graveyard of the old-fashioned Western kind. It was on a hill, about a mile and a half from the village. It had a crazy board fence around it, which leaned inward in places, and outward the rest of the time, but stood upright nowhere. Grass and weeds grew rank over the whole cemetery. All the old graves were sunken in, there was not a tombstone on the place; round-topped, worm-eaten boards staggered over the graves, leaning for support and finding none. "Sacred to the memory of" So-and-So had been painted on them once, but it could no longer have been read, on the most of them, now, even if there had been light. A faint wind moaned through the trees, and Tom feared it might be the spirits of the dead, complaining at being disturbed. The boys talked little, and only under their breath, for the time and the place and the pervading solemnity and silence oppressed their spirits. They found the sharp new heap they were seeking, and ensconced themselves within the protection of three great elms that grew in a bunch within a few feet of the grave. Then they waited in silence for what seemed a long time. The hooting of a distant owl was all the sound that troubled the dead stillness. Tom's reflections grew oppressive. He must force some talk. So he said in a whisper: "Hucky, do you believe the dead people like it for us to be here?" Huckleberry whispered: "I wisht I knowed. It's awful solemn like, AIN'T it?" "I bet it is." There was a considerable pause, while the boys canvassed this matter inwardly. Then Tom whispered: "Say, Hucky--do you reckon Hoss Williams hears us talking?" "O' course he does. Least his sperrit does." Tom, after a pause: "I wish I'd said Mister Williams. But I never meant any harm. Everybody calls him Hoss." "A body can't be too partic'lar how they talk 'bout these-yer dead people, Tom." This was a damper, and conversation died again. Presently Tom seized his comrade's arm and said: "Sh!" "What is it, Tom?" And the two clung together with beating hearts. "Sh! There 'tis again! Didn't you hear it?" "I--" "There! Now you hear it." "Lord, Tom, they're coming! They're coming, sure. What'll we do?" "I dono. Think they'll see us?" "Oh, Tom, they can see in the dark, same as cats. I wisht I hadn't come." "Oh, don't be afeard. I don't believe they'll bother us. We ain't doing any harm. If we keep perfectly still, maybe they won't notice us at all." "I'll try to, Tom, but, Lord, I'm all of a shiver." "Listen!" The boys bent their heads together and scarcely breathed. A muffled sound of voices floated up from the far end of the graveyard. "Look! See there!" whispered Tom. "What is it?" "It's devil-fire. Oh, Tom, this is awful." Some vague figures approached through the gloom, swinging an old-fashioned tin lantern that freckled the ground with innumerable little spangles of light. Presently Huckleberry whispered with a shudder: "It's the devils sure enough. Three of 'em! Lordy, Tom, we're goners! Can you pray?" "I'll try, but don't you be afeard. They ain't going to hurt us. 'Now I lay me down to sleep, I--'" "Sh!" "What is it, Huck?" "They're HUMANS! One of 'em is, anyway. One of 'em's old Muff Potter's voice." "No--'tain't so, is it?" "I bet I know it. Don't you stir nor budge. He ain't sharp enough to notice us. Drunk, the same as usual, likely--blamed old rip!" "All right, I'll keep still. Now they're stuck. Can't find it. Here they come again. Now they're hot. Cold again. Hot again. Red hot! They're p'inted right, this time. Say, Huck, I know another o' them voices; it's Injun Joe." "That's so--that murderin' half-breed! I'd druther they was devils a dern sight. What kin they be up to?" The whisper died wholly out, now, for the three men had reached the grave and stood within a few feet of the boys' hiding-place. "Here it is," said the third voice; and the owner of it held the lantern up and revealed the face of young Doctor Robinson. Potter and Injun Joe were carrying a handbarrow with a rope and a couple of shovels on it. They cast down their load and began to open the grave. The doctor put the lantern at the head of the grave and came and sat down with his back against one of the elm trees. He was so close the boys could have touched him. "Hurry, men!" he said, in a low voice; "the moon might come out at any moment." They growled a response and went on digging. For some time there was no noise but the grating sound of the spades discharging their freight of mould and gravel. It was very monotonous. Finally a spade struck upon the coffin with a dull woody accent, and within another minute or two the men had hoisted it out on the ground. They pried off the lid with their shovels, got out the body and dumped it rudely on the ground. The moon drifted from behind the clouds and exposed the pallid face. The barrow was got ready and the corpse placed on it, covered with a blanket, and bound to its place with the rope. Potter took out a large spring-knife and cut off the dangling end of the rope and then said: "Now the cussed thing's ready, Sawbones, and you'll just out with another five, or here she stays." "That's the talk!" said Injun Joe. "Look here, what does this mean?" said the doctor. "You required your pay in advance, and I've paid you." "Yes, and you done more than that," said Injun Joe, approaching the doctor, who was now standing. "Five years ago you drove me away from your father's kitchen one night, when I come to ask for something to eat, and you said I warn't there for any good; and when I swore I'd get even with you if it took a hundred years, your father had me jailed for a vagrant. Did you think I'd forget? The Injun blood ain't in me for nothing. And now I've GOT you, and you got to SETTLE, you know!" He was threatening the doctor, with his fist in his face, by this time. The doctor struck out suddenly and stretched the ruffian on the ground. Potter dropped his knife, and exclaimed: "Here, now, don't you hit my pard!" and the next moment he had grappled with the doctor and the two were struggling with might and main, trampling the grass and tearing the ground with their heels. Injun Joe sprang to his feet, his eyes flaming with passion, snatched up Potter's knife, and went creeping, catlike and stooping, round and round about the combatants, seeking an opportunity. All at once the doctor flung himself free, seized the heavy headboard of Williams' grave and felled Potter to the earth with it--and in the same instant the half-breed saw his chance and drove the knife to the hilt in the young man's breast. He reeled and fell partly upon Potter, flooding him with his blood, and in the same moment the clouds blotted out the dreadful spectacle and the two frightened boys went speeding away in the dark. Presently, when the moon emerged again, Injun Joe was standing over the two forms, contemplating them. The doctor murmured inarticulately, gave a long gasp or two and was still. The half-breed muttered: "THAT score is settled--damn you." Then he robbed the body. After which he put the fatal knife in Potter's open right hand, and sat down on the dismantled coffin. Three --four--five minutes passed, and then Potter began to stir and moan. His hand closed upon the knife; he raised it, glanced at it, and let it fall, with a shudder. Then he sat up, pushing the body from him, and gazed at it, and then around him, confusedly. His eyes met Joe's. "Lord, how is this, Joe?" he said. "It's a dirty business," said Joe, without moving. "What did you do it for?" "I! I never done it!" "Look here! That kind of talk won't wash." Potter trembled and grew white. "I thought I'd got sober. I'd no business to drink to-night. But it's in my head yet--worse'n when we started here. I'm all in a muddle; can't recollect anything of it, hardly. Tell me, Joe--HONEST, now, old feller--did I do it? Joe, I never meant to--'pon my soul and honor, I never meant to, Joe. Tell me how it was, Joe. Oh, it's awful--and him so young and promising." "Why, you two was scuffling, and he fetched you one with the headboard and you fell flat; and then up you come, all reeling and staggering like, and snatched the knife and jammed it into him, just as he fetched you another awful clip--and here you've laid, as dead as a wedge til now." "Oh, I didn't know what I was a-doing. I wish I may die this minute if I did. It was all on account of the whiskey and the excitement, I reckon. I never used a weepon in my life before, Joe. I've fought, but never with weepons. They'll all say that. Joe, don't tell! Say you won't tell, Joe--that's a good feller. I always liked you, Joe, and stood up for you, too. Don't you remember? You WON'T tell, WILL you, Joe?" And the poor creature dropped on his knees before the stolid murderer, and clasped his appealing hands. "No, you've always been fair and square with me, Muff Potter, and I won't go back on you. There, now, that's as fair as a man can say." "Oh, Joe, you're an angel. I'll bless you for this the longest day I live." And Potter began to cry. "Come, now, that's enough of that. This ain't any time for blubbering. You be off yonder way and I'll go this. Move, now, and don't leave any tracks behind you." Potter started on a trot that quickly increased to a run. The half-breed stood looking after him. He muttered: "If he's as much stunned with the lick and fuddled with the rum as he had the look of being, he won't think of the knife till he's gone so far he'll be afraid to come back after it to such a place by himself --chicken-heart!" Two or three minutes later the murdered man, the blanketed corpse, the lidless coffin, and the open grave were under no inspection but the moon's. The stillness was complete again, too. CHAPTER X THE two boys flew on and on, toward the village, speechless with horror. They glanced backward over their shoulders from time to time, apprehensively, as if they feared they might be followed. Every stump that started up in their path seemed a man and an enemy, and made them catch their breath; and as they sped by some outlying cottages that lay near the village, the barking of the aroused watch-dogs seemed to give wings to their feet. "If we can only get to the old tannery before we break down!" whispered Tom, in short catches between breaths. "I can't stand it much longer." Huckleberry's hard pantings were his only reply, and the boys fixed their eyes on the goal of their hopes and bent to their work to win it. They gained steadily on it, and at last, breast to breast, they burst through the open door and fell grateful and exhausted in the sheltering shadows beyond. By and by their pulses slowed down, and Tom whispered: "Huckleberry, what do you reckon'll come of this?" "If Doctor Robinson dies, I reckon hanging'll come of it." "Do you though?" "Why, I KNOW it, Tom." Tom thought a while, then he said: "Who'll tell? We?" "What are you talking about? S'pose something happened and Injun Joe DIDN'T hang? Why, he'd kill us some time or other, just as dead sure as we're a laying here." "That's just what I was thinking to myself, Huck." "If anybody tells, let Muff Potter do it, if he's fool enough. He's generally drunk enough." Tom said nothing--went on thinking. Presently he whispered: "Huck, Muff Potter don't know it. How can he tell?" "What's the reason he don't know it?" "Because he'd just got that whack when Injun Joe done it. D'you reckon he could see anything? D'you reckon he knowed anything?" "By hokey, that's so, Tom!" "And besides, look-a-here--maybe that whack done for HIM!" "No, 'taint likely, Tom. He had liquor in him; I could see that; and besides, he always has. Well, when pap's full, you might take and belt him over the head with a church and you couldn't phase him. He says so, his own self. So it's the same with Muff Potter, of course. But if a man was dead sober, I reckon maybe that whack might fetch him; I dono." After another reflective silence, Tom said: "Hucky, you sure you can keep mum?" "Tom, we GOT to keep mum. You know that. That Injun devil wouldn't make any more of drownding us than a couple of cats, if we was to squeak 'bout this and they didn't hang him. Now, look-a-here, Tom, less take and swear to one another--that's what we got to do--swear to keep mum." "I'm agreed. It's the best thing. Would you just hold hands and swear that we--" "Oh no, that wouldn't do for this. That's good enough for little rubbishy common things--specially with gals, cuz THEY go back on you anyway, and blab if they get in a huff--but there orter be writing 'bout a big thing like this. And blood." Tom's whole being applauded this idea. It was deep, and dark, and awful; the hour, the circumstances, the surroundings, were in keeping with it. He picked up a clean pine shingle that lay in the moonlight, took a little fragment of "red keel" out of his pocket, got the moon on his work, and painfully scrawled these lines, emphasizing each slow down-stroke by clamping his tongue between his teeth, and letting up the pressure on the up-strokes. [See next page.] "Huck Finn and Tom Sawyer swears they will keep mum about This and They wish They may Drop down dead in Their Tracks if They ever Tell and Rot." Huckleberry was filled with admiration of Tom's facility in writing, and the sublimity of his language. He at once took a pin from his lapel and was going to prick his flesh, but Tom said: "Hold on! Don't do that. A pin's brass. It might have verdigrease on it." "What's verdigrease?" "It's p'ison. That's what it is. You just swaller some of it once --you'll see." So Tom unwound the thread from one of his needles, and each boy pricked the ball of his thumb and squeezed out a drop of blood. In time, after many squeezes, Tom managed to sign his initials, using the ball of his little finger for a pen. Then he showed Huckleberry how to make an H and an F, and the oath was complete. They buried the shingle close to the wall, with some dismal ceremonies and incantations, and the fetters that bound their tongues were considered to be locked and the key thrown away. A figure crept stealthily through a break in the other end of the ruined building, now, but they did not notice it. "Tom," whispered Huckleberry, "does this keep us from EVER telling --ALWAYS?" "Of course it does. It don't make any difference WHAT happens, we got to keep mum. We'd drop down dead--don't YOU know that?" "Yes, I reckon that's so." They continued to whisper for some little time. Presently a dog set up a long, lugubrious howl just outside--within ten feet of them. The boys clasped each other suddenly, in an agony of fright. "Which of us does he mean?" gasped Huckleberry. "I dono--peep through the crack. Quick!" "No, YOU, Tom!" "I can't--I can't DO it, Huck!" "Please, Tom. There 'tis again!" "Oh, lordy, I'm thankful!" whispered Tom. "I know his voice. It's Bull Harbison." * [* If Mr. Harbison owned a slave named Bull, Tom would have spoken of him as "Harbison's Bull," but a son or a dog of that name was "Bull Harbison."] "Oh, that's good--I tell you, Tom, I was most scared to death; I'd a bet anything it was a STRAY dog." The dog howled again. The boys' hearts sank once more. "Oh, my! that ain't no Bull Harbison!" whispered Huckleberry. "DO, Tom!" Tom, quaking with fear, yielded, and put his eye to the crack. His whisper was hardly audible when he said: "Oh, Huck, IT S A STRAY DOG!" "Quick, Tom, quick! Who does he mean?" "Huck, he must mean us both--we're right together." "Oh, Tom, I reckon we're goners. I reckon there ain't no mistake 'bout where I'LL go to. I been so wicked." "Dad fetch it! This comes of playing hookey and doing everything a feller's told NOT to do. I might a been good, like Sid, if I'd a tried --but no, I wouldn't, of course. But if ever I get off this time, I lay I'll just WALLER in Sunday-schools!" And Tom began to snuffle a little. "YOU bad!" and Huckleberry began to snuffle too. "Consound it, Tom Sawyer, you're just old pie, 'longside o' what I am. Oh, LORDY, lordy, lordy, I wisht I only had half your chance." Tom choked off and whispered: "Look, Hucky, look! He's got his BACK to us!" Hucky looked, with joy in his heart. "Well, he has, by jingoes! Did he before?" "Yes, he did. But I, like a fool, never thought. Oh, this is bully, you know. NOW who can he mean?" The howling stopped. Tom pricked up his ears. "Sh! What's that?" he whispered. "Sounds like--like hogs grunting. No--it's somebody snoring, Tom." "That IS it! Where 'bouts is it, Huck?" "I bleeve it's down at 'tother end. Sounds so, anyway. Pap used to sleep there, sometimes, 'long with the hogs, but laws bless you, he just lifts things when HE snores. Besides, I reckon he ain't ever coming back to this town any more." The spirit of adventure rose in the boys' souls once more. "Hucky, do you das't to go if I lead?" "I don't like to, much. Tom, s'pose it's Injun Joe!" Tom quailed. But presently the temptation rose up strong again and the boys agreed to try, with the understanding that they would take to their heels if the snoring stopped. So they went tiptoeing stealthily down, the one behind the other. When they had got to within five steps of the snorer, Tom stepped on a stick, and it broke with a sharp snap. The man moaned, writhed a little, and his face came into the moonlight. It was Muff Potter. The boys' hearts had stood still, and their hopes too, when the man moved, but their fears passed away now. They tiptoed out, through the broken weather-boarding, and stopped at a little distance to exchange a parting word. That long, lugubrious howl rose on the night air again! They turned and saw the strange dog standing within a few feet of where Potter was lying, and FACING Potter, with his nose pointing heavenward. "Oh, geeminy, it's HIM!" exclaimed both boys, in a breath. "Say, Tom--they say a stray dog come howling around Johnny Miller's house, 'bout midnight, as much as two weeks ago; and a whippoorwill come in and lit on the banisters and sung, the very same evening; and there ain't anybody dead there yet." "Well, I know that. And suppose there ain't. Didn't Gracie Miller fall in the kitchen fire and burn herself terrible the very next Saturday?" "Yes, but she ain't DEAD. And what's more, she's getting better, too." "All right, you wait and see. She's a goner, just as dead sure as Muff Potter's a goner. That's what the niggers say, and they know all about these kind of things, Huck." Then they separated, cogitating. When Tom crept in at his bedroom window the night was almost spent. He undressed with excessive caution, and fell asleep congratulating himself that nobody knew of his escapade. He was not aware that the gently-snoring Sid was awake, and had been so for an hour. When Tom awoke, Sid was dressed and gone. There was a late look in the light, a late sense in the atmosphere. He was startled. Why had he not been called--persecuted till he was up, as usual? The thought filled him with bodings. Within five minutes he was dressed and down-stairs, feeling sore and drowsy. The family were still at table, but they had finished breakfast. There was no voice of rebuke; but there were averted eyes; there was a silence and an air of solemnity that struck a chill to the culprit's heart. He sat down and tried to seem gay, but it was up-hill work; it roused no smile, no response, and he lapsed into silence and let his heart sink down to the depths. After breakfast his aunt took him aside, and Tom almost brightened in the hope that he was going to be flogged; but it was not so. His aunt wept over him and asked him how he could go and break her old heart so; and finally told him to go on, and ruin himself and bring her gray hairs with sorrow to the grave, for it was no use for her to try any more. This was worse than a thousand whippings, and Tom's heart was sorer now than his body. He cried, he pleaded for forgiveness, promised to reform over and over again, and then received his dismissal, feeling that he had won but an imperfect forgiveness and established but a feeble confidence. He left the presence too miserable to even feel revengeful toward Sid; and so the latter's prompt retreat through the back gate was unnecessary. He moped to school gloomy and sad, and took his flogging, along with Joe Harper, for playing hookey the day before, with the air of one whose heart was busy with heavier woes and wholly dead to trifles. Then he betook himself to his seat, rested his elbows on his desk and his jaws in his hands, and stared at the wall with the stony stare of suffering that has reached the limit and can no further go. His elbow was pressing against some hard substance. After a long time he slowly and sadly changed his position, and took up this object with a sigh. It was in a paper. He unrolled it. A long, lingering, colossal sigh followed, and his heart broke. It was his brass andiron knob! This final feather broke the camel's back. CHAPTER XI CLOSE upon the hour of noon the whole village was suddenly electrified with the ghastly news. No need of the as yet undreamed-of telegraph; the tale flew from man to man, from group to group, from house to house, with little less than telegraphic speed. Of course the schoolmaster gave holiday for that afternoon; the town would have thought strangely of him if he had not. A gory knife had been found close to the murdered man, and it had been recognized by somebody as belonging to Muff Potter--so the story ran. And it was said that a belated citizen had come upon Potter washing himself in the "branch" about one or two o'clock in the morning, and that Potter had at once sneaked off--suspicious circumstances, especially the washing which was not a habit with Potter. It was also said that the town had been ransacked for this "murderer" (the public are not slow in the matter of sifting evidence and arriving at a verdict), but that he could not be found. Horsemen had departed down all the roads in every direction, and the Sheriff "was confident" that he would be captured before night. All the town was drifting toward the graveyard. Tom's heartbreak vanished and he joined the procession, not because he would not a thousand times rather go anywhere else, but because an awful, unaccountable fascination drew him on. Arrived at the dreadful place, he wormed his small body through the crowd and saw the dismal spectacle. It seemed to him an age since he was there before. Somebody pinched his arm. He turned, and his eyes met Huckleberry's. Then both looked elsewhere at once, and wondered if anybody had noticed anything in their mutual glance. But everybody was talking, and intent upon the grisly spectacle before them. "Poor fellow!" "Poor young fellow!" "This ought to be a lesson to grave robbers!" "Muff Potter'll hang for this if they catch him!" This was the drift of remark; and the minister said, "It was a judgment; His hand is here." Now Tom shivered from head to heel; for his eye fell upon the stolid face of Injun Joe. At this moment the crowd began to sway and struggle, and voices shouted, "It's him! it's him! he's coming himself!" "Who? Who?" from twenty voices. "Muff Potter!" "Hallo, he's stopped!--Look out, he's turning! Don't let him get away!" People in the branches of the trees over Tom's head said he wasn't trying to get away--he only looked doubtful and perplexed. "Infernal impudence!" said a bystander; "wanted to come and take a quiet look at his work, I reckon--didn't expect any company." The crowd fell apart, now, and the Sheriff came through, ostentatiously leading Potter by the arm. The poor fellow's face was haggard, and his eyes showed the fear that was upon him. When he stood before the murdered man, he shook as with a palsy, and he put his face in his hands and burst into tears. "I didn't do it, friends," he sobbed; "'pon my word and honor I never done it." "Who's accused you?" shouted a voice. This shot seemed to carry home. Potter lifted his face and looked around him with a pathetic hopelessness in his eyes. He saw Injun Joe, and exclaimed: "Oh, Injun Joe, you promised me you'd never--" "Is that your knife?" and it was thrust before him by the Sheriff. Potter would have fallen if they had not caught him and eased him to the ground. Then he said: "Something told me 't if I didn't come back and get--" He shuddered; then waved his nerveless hand with a vanquished gesture and said, "Tell 'em, Joe, tell 'em--it ain't any use any more." Then Huckleberry and Tom stood dumb and staring, and heard the stony-hearted liar reel off his serene statement, they expecting every moment that the clear sky would deliver God's lightnings upon his head, and wondering to see how long the stroke was delayed. And when he had finished and still stood alive and whole, their wavering impulse to break their oath and save the poor betrayed prisoner's life faded and vanished away, for plainly this miscreant had sold himself to Satan and it would be fatal to meddle with the property of such a power as that. "Why didn't you leave? What did you want to come here for?" somebody said. "I couldn't help it--I couldn't help it," Potter moaned. "I wanted to run away, but I couldn't seem to come anywhere but here." And he fell to sobbing again. Injun Joe repeated his statement, just as calmly, a few minutes afterward on the inquest, under oath; and the boys, seeing that the lightnings were still withheld, were confirmed in their belief that Joe had sold himself to the devil. He was now become, to them, the most balefully interesting object they had ever looked upon, and they could not take their fascinated eyes from his face. They inwardly resolved to watch him nights, when opportunity should offer, in the hope of getting a glimpse of his dread master. Injun Joe helped to raise the body of the murdered man and put it in a wagon for removal; and it was whispered through the shuddering crowd that the wound bled a little! The boys thought that this happy circumstance would turn suspicion in the right direction; but they were disappointed, for more than one villager remarked: "It was within three feet of Muff Potter when it done it." Tom's fearful secret and gnawing conscience disturbed his sleep for as much as a week after this; and at breakfast one morning Sid said: "Tom, you pitch around and talk in your sleep so much that you keep me awake half the time." Tom blanched and dropped his eyes. "It's a bad sign," said Aunt Polly, gravely. "What you got on your mind, Tom?" "Nothing. Nothing 't I know of." But the boy's hand shook so that he spilled his coffee. "And you do talk such stuff," Sid said. "Last night you said, 'It's blood, it's blood, that's what it is!' You said that over and over. And you said, 'Don't torment me so--I'll tell!' Tell WHAT? What is it you'll tell?" Everything was swimming before Tom. There is no telling what might have happened, now, but luckily the concern passed out of Aunt Polly's face and she came to Tom's relief without knowing it. She said: "Sho! It's that dreadful murder. I dream about it most every night myself. Sometimes I dream it's me that done it." Mary said she had been affected much the same way. Sid seemed satisfied. Tom got out of the presence as quick as he plausibly could, and after that he complained of toothache for a week, and tied up his jaws every night. He never knew that Sid lay nightly watching, and frequently slipped the bandage free and then leaned on his elbow listening a good while at a time, and afterward slipped the bandage back to its place again. Tom's distress of mind wore off gradually and the toothache grew irksome and was discarded. If Sid really managed to make anything out of Tom's disjointed mutterings, he kept it to himself. It seemed to Tom that his schoolmates never would get done holding inquests on dead cats, and thus keeping his trouble present to his mind. Sid noticed that Tom never was coroner at one of these inquiries, though it had been his habit to take the lead in all new enterprises; he noticed, too, that Tom never acted as a witness--and that was strange; and Sid did not overlook the fact that Tom even showed a marked aversion to these inquests, and always avoided them when he could. Sid marvelled, but said nothing. However, even inquests went out of vogue at last, and ceased to torture Tom's conscience. Every day or two, during this time of sorrow, Tom watched his opportunity and went to the little grated jail-window and smuggled such small comforts through to the "murderer" as he could get hold of. The jail was a trifling little brick den that stood in a marsh at the edge of the village, and no guards were afforded for it; indeed, it was seldom occupied. These offerings greatly helped to ease Tom's conscience. The villagers had a strong desire to tar-and-feather Injun Joe and ride him on a rail, for body-snatching, but so formidable was his character that nobody could be found who was willing to take the lead in the matter, so it was dropped. He had been careful to begin both of his inquest-statements with the fight, without confessing the grave-robbery that preceded it; therefore it was deemed wisest not to try the case in the courts at present. CHAPTER XII ONE of the reasons why Tom's mind had drifted away from its secret troubles was, that it had found a new and weighty matter to interest itself about. Becky Thatcher had stopped coming to school. Tom had struggled with his pride a few days, and tried to "whistle her down the wind," but failed. He began to find himself hanging around her father's house, nights, and feeling very miserable. She was ill. What if she should die! There was distraction in the thought. He no longer took an interest in war, nor even in piracy. The charm of life was gone; there was nothing but dreariness left. He put his hoop away, and his bat; there was no joy in them any more. His aunt was concerned. She began to try all manner of remedies on him. She was one of those people who are infatuated with patent medicines and all new-fangled methods of producing health or mending it. She was an inveterate experimenter in these things. When something fresh in this line came out she was in a fever, right away, to try it; not on herself, for she was never ailing, but on anybody else that came handy. She was a subscriber for all the "Health" periodicals and phrenological frauds; and the solemn ignorance they were inflated with was breath to her nostrils. All the "rot" they contained about ventilation, and how to go to bed, and how to get up, and what to eat, and what to drink, and how much exercise to take, and what frame of mind to keep one's self in, and what sort of clothing to wear, was all gospel to her, and she never observed that her health-journals of the current month customarily upset everything they had recommended the month before. She was as simple-hearted and honest as the day was long, and so she was an easy victim. She gathered together her quack periodicals and her quack medicines, and thus armed with death, went about on her pale horse, metaphorically speaking, with "hell following after." But she never suspected that she was not an angel of healing and the balm of Gilead in disguise, to the suffering neighbors. The water treatment was new, now, and Tom's low condition was a windfall to her. She had him out at daylight every morning, stood him up in the woodshed and drowned him with a deluge of cold water; then she scrubbed him down with a towel like a file, and so brought him to; then she rolled him up in a wet sheet and put him away under blankets till she sweated his soul clean and "the yellow stains of it came through his pores"--as Tom said. Yet notwithstanding all this, the boy grew more and more melancholy and pale and dejected. She added hot baths, sitz baths, shower baths, and plunges. The boy remained as dismal as a hearse. She began to assist the water with a slim oatmeal diet and blister-plasters. She calculated his capacity as she would a jug's, and filled him up every day with quack cure-alls. Tom had become indifferent to persecution by this time. This phase filled the old lady's heart with consternation. This indifference must be broken up at any cost. Now she heard of Pain-killer for the first time. She ordered a lot at once. She tasted it and was filled with gratitude. It was simply fire in a liquid form. She dropped the water treatment and everything else, and pinned her faith to Pain-killer. She gave Tom a teaspoonful and watched with the deepest anxiety for the result. Her troubles were instantly at rest, her soul at peace again; for the "indifference" was broken up. The boy could not have shown a wilder, heartier interest, if she had built a fire under him. Tom felt that it was time to wake up; this sort of life might be romantic enough, in his blighted condition, but it was getting to have too little sentiment and too much distracting variety about it. So he thought over various plans for relief, and finally hit pon that of professing to be fond of Pain-killer. He asked for it so often that he became a nuisance, and his aunt ended by telling him to help himself and quit bothering her. If it had been Sid, she would have had no misgivings to alloy her delight; but since it was Tom, she watched the bottle clandestinely. She found that the medicine did really diminish, but it did not occur to her that the boy was mending the health of a crack in the sitting-room floor with it. One day Tom was in the act of dosing the crack when his aunt's yellow cat came along, purring, eying the teaspoon avariciously, and begging for a taste. Tom said: "Don't ask for it unless you want it, Peter." But Peter signified that he did want it. "You better make sure." Peter was sure. "Now you've asked for it, and I'll give it to you, because there ain't anything mean about me; but if you find you don't like it, you mustn't blame anybody but your own self." Peter was agreeable. So Tom pried his mouth open and poured down the Pain-killer. Peter sprang a couple of yards in the air, and then delivered a war-whoop and set off round and round the room, banging against furniture, upsetting flower-pots, and making general havoc. Next he rose on his hind feet and pranced around, in a frenzy of enjoyment, with his head over his shoulder and his voice proclaiming his unappeasable happiness. Then he went tearing around the house again spreading chaos and destruction in his path. Aunt Polly entered in time to see him throw a few double summersets, deliver a final mighty hurrah, and sail through the open window, carrying the rest of the flower-pots with him. The old lady stood petrified with astonishment, peering over her glasses; Tom lay on the floor expiring with laughter. "Tom, what on earth ails that cat?" "I don't know, aunt," gasped the boy. "Why, I never see anything like it. What did make him act so?" "Deed I don't know, Aunt Polly; cats always act so when they're having a good time." "They do, do they?" There was something in the tone that made Tom apprehensive. "Yes'm. That is, I believe they do." "You DO?" "Yes'm." The old lady was bending down, Tom watching, with interest emphasized by anxiety. Too late he divined her "drift." The handle of the telltale teaspoon was visible under the bed-valance. Aunt Polly took it, held it up. Tom winced, and dropped his eyes. Aunt Polly raised him by the usual handle--his ear--and cracked his head soundly with her thimble. "Now, sir, what did you want to treat that poor dumb beast so, for?" "I done it out of pity for him--because he hadn't any aunt." "Hadn't any aunt!--you numskull. What has that got to do with it?" "Heaps. Because if he'd had one she'd a burnt him out herself! She'd a roasted his bowels out of him 'thout any more feeling than if he was a human!" Aunt Polly felt a sudden pang of remorse. This was putting the thing in a new light; what was cruelty to a cat MIGHT be cruelty to a boy, too. She began to soften; she felt sorry. Her eyes watered a little, and she put her hand on Tom's head and said gently: "I was meaning for the best, Tom. And, Tom, it DID do you good." Tom looked up in her face with just a perceptible twinkle peeping through his gravity. "I know you was meaning for the best, aunty, and so was I with Peter. It done HIM good, too. I never see him get around so since--" "Oh, go 'long with you, Tom, before you aggravate me again. And you try and see if you can't be a good boy, for once, and you needn't take any more medicine." Tom reached school ahead of time. It was noticed that this strange thing had been occurring every day latterly. And now, as usual of late, he hung about the gate of the schoolyard instead of playing with his comrades. He was sick, he said, and he looked it. He tried to seem to be looking everywhere but whither he really was looking--down the road. Presently Jeff Thatcher hove in sight, and Tom's face lighted; he gazed a moment, and then turned sorrowfully away. When Jeff arrived, Tom accosted him; and "led up" warily to opportunities for remark about Becky, but the giddy lad never could see the bait. Tom watched and watched, hoping whenever a frisking frock came in sight, and hating the owner of it as soon as he saw she was not the right one. At last frocks ceased to appear, and he dropped hopelessly into the dumps; he entered the empty schoolhouse and sat down to suffer. Then one more frock passed in at the gate, and Tom's heart gave a great bound. The next instant he was out, and "going on" like an Indian; yelling, laughing, chasing boys, jumping over the fence at risk of life and limb, throwing handsprings, standing on his head--doing all the heroic things he could conceive of, and keeping a furtive eye out, all the while, to see if Becky Thatcher was noticing. But she seemed to be unconscious of it all; she never looked. Could it be possible that she was not aware that he was there? He carried his exploits to her immediate vicinity; came war-whooping around, snatched a boy's cap, hurled it to the roof of the schoolhouse, broke through a group of boys, tumbling them in every direction, and fell sprawling, himself, under Becky's nose, almost upsetting her--and she turned, with her nose in the air, and he heard her say: "Mf! some people think they're mighty smart--always showing off!" Tom's cheeks burned. He gathered himself up and sneaked off, crushed and crestfallen. CHAPTER XIII TOM'S mind was made up now. He was gloomy and desperate. He was a forsaken, friendless boy, he said; nobody loved him; when they found out what they had driven him to, perhaps they would be sorry; he had tried to do right and get along, but they would not let him; since nothing would do them but to be rid of him, let it be so; and let them blame HIM for the consequences--why shouldn't they? What right had the friendless to complain? Yes, they had forced him to it at last: he would lead a life of crime. There was no choice. By this time he was far down Meadow Lane, and the bell for school to "take up" tinkled faintly upon his ear. He sobbed, now, to think he should never, never hear that old familiar sound any more--it was very hard, but it was forced on him; since he was driven out into the cold world, he must submit--but he forgave them. Then the sobs came thick and fast. Just at this point he met his soul's sworn comrade, Joe Harper --hard-eyed, and with evidently a great and dismal purpose in his heart. Plainly here were "two souls with but a single thought." Tom, wiping his eyes with his sleeve, began to blubber out something about a resolution to escape from hard usage and lack of sympathy at home by roaming abroad into the great world never to return; and ended by hoping that Joe would not forget him. But it transpired that this was a request which Joe had just been going to make of Tom, and had come to hunt him up for that purpose. His mother had whipped him for drinking some cream which he had never tasted and knew nothing about; it was plain that she was tired of him and wished him to go; if she felt that way, there was nothing for him to do but succumb; he hoped she would be happy, and never regret having driven her poor boy out into the unfeeling world to suffer and die. As the two boys walked sorrowing along, they made a new compact to stand by each other and be brothers and never separate till death relieved them of their troubles. Then they began to lay their plans. Joe was for being a hermit, and living on crusts in a remote cave, and dying, some time, of cold and want and grief; but after listening to Tom, he conceded that there were some conspicuous advantages about a life of crime, and so he consented to be a pirate. Three miles below St. Petersburg, at a point where the Mississippi River was a trifle over a mile wide, there was a long, narrow, wooded island, with a shallow bar at the head of it, and this offered well as a rendezvous. It was not inhabited; it lay far over toward the further shore, abreast a dense and almost wholly unpeopled forest. So Jackson's Island was chosen. Who were to be the subjects of their piracies was a matter that did not occur to them. Then they hunted up Huckleberry Finn, and he joined them promptly, for all careers were one to him; he was indifferent. They presently separated to meet at a lonely spot on the river-bank two miles above the village at the favorite hour--which was midnight. There was a small log raft there which they meant to capture. Each would bring hooks and lines, and such provision as he could steal in the most dark and mysterious way--as became outlaws. And before the afternoon was done, they had all managed to enjoy the sweet glory of spreading the fact that pretty soon the town would "hear something." All who got this vague hint were cautioned to "be mum and wait." About midnight Tom arrived with a boiled ham and a few trifles, and stopped in a dense undergrowth on a small bluff overlooking the meeting-place. It was starlight, and very still. The mighty river lay like an ocean at rest. Tom listened a moment, but no sound disturbed the quiet. Then he gave a low, distinct whistle. It was answered from under the bluff. Tom whistled twice more; these signals were answered in the same way. Then a guarded voice said: "Who goes there?" "Tom Sawyer, the Black Avenger of the Spanish Main. Name your names." "Huck Finn the Red-Handed, and Joe Harper the Terror of the Seas." Tom had furnished these titles, from his favorite literature. "'Tis well. Give the countersign." Two hoarse whispers delivered the same awful word simultaneously to the brooding night: "BLOOD!" Then Tom tumbled his ham over the bluff and let himself down after it, tearing both skin and clothes to some extent in the effort. There was an easy, comfortable path along the shore under the bluff, but it lacked the advantages of difficulty and danger so valued by a pirate. The Terror of the Seas had brought a side of bacon, and had about worn himself out with getting it there. Finn the Red-Handed had stolen a skillet and a quantity of half-cured leaf tobacco, and had also brought a few corn-cobs to make pipes with. But none of the pirates smoked or "chewed" but himself. The Black Avenger of the Spanish Main said it would never do to start without some fire. That was a wise thought; matches were hardly known there in that day. They saw a fire smouldering upon a great raft a hundred yards above, and they went stealthily thither and helped themselves to a chunk. They made an imposing adventure of it, saying, "Hist!" every now and then, and suddenly halting with finger on lip; moving with hands on imaginary dagger-hilts; and giving orders in dismal whispers that if "the foe" stirred, to "let him have it to the hilt," because "dead men tell no tales." They knew well enough that the raftsmen were all down at the village laying in stores or having a spree, but still that was no excuse for their conducting this thing in an unpiratical way. They shoved off, presently, Tom in command, Huck at the after oar and Joe at the forward. Tom stood amidships, gloomy-browed, and with folded arms, and gave his orders in a low, stern whisper: "Luff, and bring her to the wind!" "Aye-aye, sir!" "Steady, steady-y-y-y!" "Steady it is, sir!" "Let her go off a point!" "Point it is, sir!" As the boys steadily and monotonously drove the raft toward mid-stream it was no doubt understood that these orders were given only for "style," and were not intended to mean anything in particular. "What sail's she carrying?" "Courses, tops'ls, and flying-jib, sir." "Send the r'yals up! Lay out aloft, there, half a dozen of ye --foretopmaststuns'l! Lively, now!" "Aye-aye, sir!" "Shake out that maintogalans'l! Sheets and braces! NOW my hearties!" "Aye-aye, sir!" "Hellum-a-lee--hard a port! Stand by to meet her when she comes! Port, port! NOW, men! With a will! Stead-y-y-y!" "Steady it is, sir!" The raft drew beyond the middle of the river; the boys pointed her head right, and then lay on their oars. The river was not high, so there was not more than a two or three mile current. Hardly a word was said during the next three-quarters of an hour. Now the raft was passing before the distant town. Two or three glimmering lights showed where it lay, peacefully sleeping, beyond the vague vast sweep of star-gemmed water, unconscious of the tremendous event that was happening. The Black Avenger stood still with folded arms, "looking his last" upon the scene of his former joys and his later sufferings, and wishing "she" could see him now, abroad on the wild sea, facing peril and death with dauntless heart, going to his doom with a grim smile on his lips. It was but a small strain on his imagination to remove Jackson's Island beyond eyeshot of the village, and so he "looked his last" with a broken and satisfied heart. The other pirates were looking their last, too; and they all looked so long that they came near letting the current drift them out of the range of the island. But they discovered the danger in time, and made shift to avert it. About two o'clock in the morning the raft grounded on the bar two hundred yards above the head of the island, and they waded back and forth until they had landed their freight. Part of the little raft's belongings consisted of an old sail, and this they spread over a nook in the bushes for a tent to shelter their provisions; but they themselves would sleep in the open air in good weather, as became outlaws. They built a fire against the side of a great log twenty or thirty steps within the sombre depths of the forest, and then cooked some bacon in the frying-pan for supper, and used up half of the corn "pone" stock they had brought. It seemed glorious sport to be feasting in that wild, free way in the virgin forest of an unexplored and uninhabited island, far from the haunts of men, and they said they never would return to civilization. The climbing fire lit up their faces and threw its ruddy glare upon the pillared tree-trunks of their forest temple, and upon the varnished foliage and festooning vines. When the last crisp slice of bacon was gone, and the last allowance of corn pone devoured, the boys stretched themselves out on the grass, filled with contentment. They could have found a cooler place, but they would not deny themselves such a romantic feature as the roasting camp-fire. "AIN'T it gay?" said Joe. "It's NUTS!" said Tom. "What would the boys say if they could see us?" "Say? Well, they'd just die to be here--hey, Hucky!" "I reckon so," said Huckleberry; "anyways, I'm suited. I don't want nothing better'n this. I don't ever get enough to eat, gen'ally--and here they can't come and pick at a feller and bullyrag him so." "It's just the life for me," said Tom. "You don't have to get up, mornings, and you don't have to go to school, and wash, and all that blame foolishness. You see a pirate don't have to do ANYTHING, Joe, when he's ashore, but a hermit HE has to be praying considerable, and then he don't have any fun, anyway, all by himself that way." "Oh yes, that's so," said Joe, "but I hadn't thought much about it, you know. I'd a good deal rather be a pirate, now that I've tried it." "You see," said Tom, "people don't go much on hermits, nowadays, like they used to in old times, but a pirate's always respected. And a hermit's got to sleep on the hardest place he can find, and put sackcloth and ashes on his head, and stand out in the rain, and--" "What does he put sackcloth and ashes on his head for?" inquired Huck. "I dono. But they've GOT to do it. Hermits always do. You'd have to do that if you was a hermit." "Dern'd if I would," said Huck. "Well, what would you do?" "I dono. But I wouldn't do that." "Why, Huck, you'd HAVE to. How'd you get around it?" "Why, I just wouldn't stand it. I'd run away." "Run away! Well, you WOULD be a nice old slouch of a hermit. You'd be a disgrace." The Red-Handed made no response, being better employed. He had finished gouging out a cob, and now he fitted a weed stem to it, loaded it with tobacco, and was pressing a coal to the charge and blowing a cloud of fragrant smoke--he was in the full bloom of luxurious contentment. The other pirates envied him this majestic vice, and secretly resolved to acquire it shortly. Presently Huck said: "What does pirates have to do?" Tom said: "Oh, they have just a bully time--take ships and burn them, and get the money and bury it in awful places in their island where there's ghosts and things to watch it, and kill everybody in the ships--make 'em walk a plank." "And they carry the women to the island," said Joe; "they don't kill the women." "No," assented Tom, "they don't kill the women--they're too noble. And the women's always beautiful, too. "And don't they wear the bulliest clothes! Oh no! All gold and silver and di'monds," said Joe, with enthusiasm. "Who?" said Huck. "Why, the pirates." Huck scanned his own clothing forlornly. "I reckon I ain't dressed fitten for a pirate," said he, with a regretful pathos in his voice; "but I ain't got none but these." But the other boys told him the fine clothes would come fast enough, after they should have begun their adventures. They made him understand that his poor rags would do to begin with, though it was customary for wealthy pirates to start with a proper wardrobe. Gradually their talk died out and drowsiness began to steal upon the eyelids of the little waifs. The pipe dropped from the fingers of the Red-Handed, and he slept the sleep of the conscience-free and the weary. The Terror of the Seas and the Black Avenger of the Spanish Main had more difficulty in getting to sleep. They said their prayers inwardly, and lying down, since there was nobody there with authority to make them kneel and recite aloud; in truth, they had a mind not to say them at all, but they were afraid to proceed to such lengths as that, lest they might call down a sudden and special thunderbolt from heaven. Then at once they reached and hovered upon the imminent verge of sleep--but an intruder came, now, that would not "down." It was conscience. They began to feel a vague fear that they had been doing wrong to run away; and next they thought of the stolen meat, and then the real torture came. They tried to argue it away by reminding conscience that they had purloined sweetmeats and apples scores of times; but conscience was not to be appeased by such thin plausibilities; it seemed to them, in the end, that there was no getting around the stubborn fact that taking sweetmeats was only "hooking," while taking bacon and hams and such valuables was plain simple stealing--and there was a command against that in the Bible. So they inwardly resolved that so long as they remained in the business, their piracies should not again be sullied with the crime of stealing. Then conscience granted a truce, and these curiously inconsistent pirates fell peacefully to sleep. CHAPTER XIV WHEN Tom awoke in the morning, he wondered where he was. He sat up and rubbed his eyes and looked around. Then he comprehended. It was the cool gray dawn, and there was a delicious sense of repose and peace in the deep pervading calm and silence of the woods. Not a leaf stirred; not a sound obtruded upon great Nature's meditation. Beaded dewdrops stood upon the leaves and grasses. A white layer of ashes covered the fire, and a thin blue breath of smoke rose straight into the air. Joe and Huck still slept. Now, far away in the woods a bird called; another answered; presently the hammering of a woodpecker was heard. Gradually the cool dim gray of the morning whitened, and as gradually sounds multiplied and life manifested itself. The marvel of Nature shaking off sleep and going to work unfolded itself to the musing boy. A little green worm came crawling over a dewy leaf, lifting two-thirds of his body into the air from time to time and "sniffing around," then proceeding again--for he was measuring, Tom said; and when the worm approached him, of its own accord, he sat as still as a stone, with his hopes rising and falling, by turns, as the creature still came toward him or seemed inclined to go elsewhere; and when at last it considered a painful moment with its curved body in the air and then came decisively down upon Tom's leg and began a journey over him, his whole heart was glad--for that meant that he was going to have a new suit of clothes--without the shadow of a doubt a gaudy piratical uniform. Now a procession of ants appeared, from nowhere in particular, and went about their labors; one struggled manfully by with a dead spider five times as big as itself in its arms, and lugged it straight up a tree-trunk. A brown spotted lady-bug climbed the dizzy height of a grass blade, and Tom bent down close to it and said, "Lady-bug, lady-bug, fly away home, your house is on fire, your children's alone," and she took wing and went off to see about it --which did not surprise the boy, for he knew of old that this insect was credulous about conflagrations, and he had practised upon its simplicity more than once. A tumblebug came next, heaving sturdily at its ball, and Tom touched the creature, to see it shut its legs against its body and pretend to be dead. The birds were fairly rioting by this time. A catbird, the Northern mocker, lit in a tree over Tom's head, and trilled out her imitations of her neighbors in a rapture of enjoyment; then a shrill jay swept down, a flash of blue flame, and stopped on a twig almost within the boy's reach, cocked his head to one side and eyed the strangers with a consuming curiosity; a gray squirrel and a big fellow of the "fox" kind came skurrying along, sitting up at intervals to inspect and chatter at the boys, for the wild things had probably never seen a human being before and scarcely knew whether to be afraid or not. All Nature was wide awake and stirring, now; long lances of sunlight pierced down through the dense foliage far and near, and a few butterflies came fluttering upon the scene. Tom stirred up the other pirates and they all clattered away with a shout, and in a minute or two were stripped and chasing after and tumbling over each other in the shallow limpid water of the white sandbar. They felt no longing for the little village sleeping in the distance beyond the majestic waste of water. A vagrant current or a slight rise in the river had carried off their raft, but this only gratified them, since its going was something like burning the bridge between them and civilization. They came back to camp wonderfully refreshed, glad-hearted, and ravenous; and they soon had the camp-fire blazing up again. Huck found a spring of clear cold water close by, and the boys made cups of broad oak or hickory leaves, and felt that water, sweetened with such a wildwood charm as that, would be a good enough substitute for coffee. While Joe was slicing bacon for breakfast, Tom and Huck asked him to hold on a minute; they stepped to a promising nook in the river-bank and threw in their lines; almost immediately they had reward. Joe had not had time to get impatient before they were back again with some handsome bass, a couple of sun-perch and a small catfish--provisions enough for quite a family. They fried the fish with the bacon, and were astonished; for no fish had ever seemed so delicious before. They did not know that the quicker a fresh-water fish is on the fire after he is caught the better he is; and they reflected little upon what a sauce open-air sleeping, open-air exercise, bathing, and a large ingredient of hunger make, too. They lay around in the shade, after breakfast, while Huck had a smoke, and then went off through the woods on an exploring expedition. They tramped gayly along, over decaying logs, through tangled underbrush, among solemn monarchs of the forest, hung from their crowns to the ground with a drooping regalia of grape-vines. Now and then they came upon snug nooks carpeted with grass and jeweled with flowers. They found plenty of things to be delighted with, but nothing to be astonished at. They discovered that the island was about three miles long and a quarter of a mile wide, and that the shore it lay closest to was only separated from it by a narrow channel hardly two hundred yards wide. They took a swim about every hour, so it was close upon the middle of the afternoon when they got back to camp. They were too hungry to stop to fish, but they fared sumptuously upon cold ham, and then threw themselves down in the shade to talk. But the talk soon began to drag, and then died. The stillness, the solemnity that brooded in the woods, and the sense of loneliness, began to tell upon the spirits of the boys. They fell to thinking. A sort of undefined longing crept upon them. This took dim shape, presently--it was budding homesickness. Even Finn the Red-Handed was dreaming of his doorsteps and empty hogsheads. But they were all ashamed of their weakness, and none was brave enough to speak his thought. For some time, now, the boys had been dully conscious of a peculiar sound in the distance, just as one sometimes is of the ticking of a clock which he takes no distinct note of. But now this mysterious sound became more pronounced, and forced a recognition. The boys started, glanced at each other, and then each assumed a listening attitude. There was a long silence, profound and unbroken; then a deep, sullen boom came floating down out of the distance. "What is it!" exclaimed Joe, under his breath. "I wonder," said Tom in a whisper. "'Tain't thunder," said Huckleberry, in an awed tone, "becuz thunder--" "Hark!" said Tom. "Listen--don't talk." They waited a time that seemed an age, and then the same muffled boom troubled the solemn hush. "Let's go and see." They sprang to their feet and hurried to the shore toward the town. They parted the bushes on the bank and peered out over the water. The little steam ferryboat was about a mile below the village, drifting with the current. Her broad deck seemed crowded with people. There were a great many skiffs rowing about or floating with the stream in the neighborhood of the ferryboat, but the boys could not determine what the men in them were doing. Presently a great jet of white smoke burst from the ferryboat's side, and as it expanded and rose in a lazy cloud, that same dull throb of sound was borne to the listeners again. "I know now!" exclaimed Tom; "somebody's drownded!" "That's it!" said Huck; "they done that last summer, when Bill Turner got drownded; they shoot a cannon over the water, and that makes him come up to the top. Yes, and they take loaves of bread and put quicksilver in 'em and set 'em afloat, and wherever there's anybody that's drownded, they'll float right there and stop." "Yes, I've heard about that," said Joe. "I wonder what makes the bread do that." "Oh, it ain't the bread, so much," said Tom; "I reckon it's mostly what they SAY over it before they start it out." "But they don't say anything over it," said Huck. "I've seen 'em and they don't." "Well, that's funny," said Tom. "But maybe they say it to themselves. Of COURSE they do. Anybody might know that." The other boys agreed that there was reason in what Tom said, because an ignorant lump of bread, uninstructed by an incantation, could not be expected to act very intelligently when set upon an errand of such gravity. "By jings, I wish I was over there, now," said Joe. "I do too" said Huck "I'd give heaps to know who it is." The boys still listened and watched. Presently a revealing thought flashed through Tom's mind, and he exclaimed: "Boys, I know who's drownded--it's us!" They felt like heroes in an instant. Here was a gorgeous triumph; they were missed; they were mourned; hearts were breaking on their account; tears were being shed; accusing memories of unkindness to these poor lost lads were rising up, and unavailing regrets and remorse were being indulged; and best of all, the departed were the talk of the whole town, and the envy of all the boys, as far as this dazzling notoriety was concerned. This was fine. It was worth while to be a pirate, after all. As twilight drew on, the ferryboat went back to her accustomed business and the skiffs disappeared. The pirates returned to camp. They were jubilant with vanity over their new grandeur and the illustrious trouble they were making. They caught fish, cooked supper and ate it, and then fell to guessing at what the village was thinking and saying about them; and the pictures they drew of the public distress on their account were gratifying to look upon--from their point of view. But when the shadows of night closed them in, they gradually ceased to talk, and sat gazing into the fire, with their minds evidently wandering elsewhere. The excitement was gone, now, and Tom and Joe could not keep back thoughts of certain persons at home who were not enjoying this fine frolic as much as they were. Misgivings came; they grew troubled and unhappy; a sigh or two escaped, unawares. By and by Joe timidly ventured upon a roundabout "feeler" as to how the others might look upon a return to civilization--not right now, but-- Tom withered him with derision! Huck, being uncommitted as yet, joined in with Tom, and the waverer quickly "explained," and was glad to get out of the scrape with as little taint of chicken-hearted homesickness clinging to his garments as he could. Mutiny was effectually laid to rest for the moment. As the night deepened, Huck began to nod, and presently to snore. Joe followed next. Tom lay upon his elbow motionless, for some time, watching the two intently. At last he got up cautiously, on his knees, and went searching among the grass and the flickering reflections flung by the camp-fire. He picked up and inspected several large semi-cylinders of the thin white bark of a sycamore, and finally chose two which seemed to suit him. Then he knelt by the fire and painfully wrote something upon each of these with his "red keel"; one he rolled up and put in his jacket pocket, and the other he put in Joe's hat and removed it to a little distance from the owner. And he also put into the hat certain schoolboy treasures of almost inestimable value--among them a lump of chalk, an India-rubber ball, three fishhooks, and one of that kind of marbles known as a "sure 'nough crystal." Then he tiptoed his way cautiously among the trees till he felt that he was out of hearing, and straightway broke into a keen run in the direction of the sandbar. CHAPTER XV A FEW minutes later Tom was in the shoal water of the bar, wading toward the Illinois shore. Before the depth reached his middle he was half-way over; the current would permit no more wading, now, so he struck out confidently to swim the remaining hundred yards. He swam quartering upstream, but still was swept downward rather faster than he had expected. However, he reached the shore finally, and drifted along till he found a low place and drew himself out. He put his hand on his jacket pocket, found his piece of bark safe, and then struck through the woods, following the shore, with streaming garments. Shortly before ten o'clock he came out into an open place opposite the village, and saw the ferryboat lying in the shadow of the trees and the high bank. Everything was quiet under the blinking stars. He crept down the bank, watching with all his eyes, slipped into the water, swam three or four strokes and climbed into the skiff that did "yawl" duty at the boat's stern. He laid himself down under the thwarts and waited, panting. Presently the cracked bell tapped and a voice gave the order to "cast off." A minute or two later the skiff's head was standing high up, against the boat's swell, and the voyage was begun. Tom felt happy in his success, for he knew it was the boat's last trip for the night. At the end of a long twelve or fifteen minutes the wheels stopped, and Tom slipped overboard and swam ashore in the dusk, landing fifty yards downstream, out of danger of possible stragglers. He flew along unfrequented alleys, and shortly found himself at his aunt's back fence. He climbed over, approached the "ell," and looked in at the sitting-room window, for a light was burning there. There sat Aunt Polly, Sid, Mary, and Joe Harper's mother, grouped together, talking. They were by the bed, and the bed was between them and the door. Tom went to the door and began to softly lift the latch; then he pressed gently and the door yielded a crack; he continued pushing cautiously, and quaking every time it creaked, till he judged he might squeeze through on his knees; so he put his head through and began, warily. "What makes the candle blow so?" said Aunt Polly. Tom hurried up. "Why, that door's open, I believe. Why, of course it is. No end of strange things now. Go 'long and shut it, Sid." Tom disappeared under the bed just in time. He lay and "breathed" himself for a time, and then crept to where he could almost touch his aunt's foot. "But as I was saying," said Aunt Polly, "he warn't BAD, so to say --only mischEEvous. Only just giddy, and harum-scarum, you know. He warn't any more responsible than a colt. HE never meant any harm, and he was the best-hearted boy that ever was"--and she began to cry. "It was just so with my Joe--always full of his devilment, and up to every kind of mischief, but he was just as unselfish and kind as he could be--and laws bless me, to think I went and whipped him for taking that cream, never once recollecting that I throwed it out myself because it was sour, and I never to see him again in this world, never, never, never, poor abused boy!" And Mrs. Harper sobbed as if her heart would break. "I hope Tom's better off where he is," said Sid, "but if he'd been better in some ways--" "SID!" Tom felt the glare of the old lady's eye, though he could not see it. "Not a word against my Tom, now that he's gone! God'll take care of HIM--never you trouble YOURself, sir! Oh, Mrs. Harper, I don't know how to give him up! I don't know how to give him up! He was such a comfort to me, although he tormented my old heart out of me, 'most." "The Lord giveth and the Lord hath taken away--Blessed be the name of the Lord! But it's so hard--Oh, it's so hard! Only last Saturday my Joe busted a firecracker right under my nose and I knocked him sprawling. Little did I know then, how soon--Oh, if it was to do over again I'd hug him and bless him for it." "Yes, yes, yes, I know just how you feel, Mrs. Harper, I know just exactly how you feel. No longer ago than yesterday noon, my Tom took and filled the cat full of Pain-killer, and I did think the cretur would tear the house down. And God forgive me, I cracked Tom's head with my thimble, poor boy, poor dead boy. But he's out of all his troubles now. And the last words I ever heard him say was to reproach--" But this memory was too much for the old lady, and she broke entirely down. Tom was snuffling, now, himself--and more in pity of himself than anybody else. He could hear Mary crying, and putting in a kindly word for him from time to time. He began to have a nobler opinion of himself than ever before. Still, he was sufficiently touched by his aunt's grief to long to rush out from under the bed and overwhelm her with joy--and the theatrical gorgeousness of the thing appealed strongly to his nature, too, but he resisted and lay still. He went on listening, and gathered by odds and ends that it was conjectured at first that the boys had got drowned while taking a swim; then the small raft had been missed; next, certain boys said the missing lads had promised that the village should "hear something" soon; the wise-heads had "put this and that together" and decided that the lads had gone off on that raft and would turn up at the next town below, presently; but toward noon the raft had been found, lodged against the Missouri shore some five or six miles below the village --and then hope perished; they must be drowned, else hunger would have driven them home by nightfall if not sooner. It was believed that the search for the bodies had been a fruitless effort merely because the drowning must have occurred in mid-channel, since the boys, being good swimmers, would otherwise have escaped to shore. This was Wednesday night. If the bodies continued missing until Sunday, all hope would be given over, and the funerals would be preached on that morning. Tom shuddered. Mrs. Harper gave a sobbing good-night and turned to go. Then with a mutual impulse the two bereaved women flung themselves into each other's arms and had a good, consoling cry, and then parted. Aunt Polly was tender far beyond her wont, in her good-night to Sid and Mary. Sid snuffled a bit and Mary went off crying with all her heart. Aunt Polly knelt down and prayed for Tom so touchingly, so appealingly, and with such measureless love in her words and her old trembling voice, that he was weltering in tears again, long before she was through. He had to keep still long after she went to bed, for she kept making broken-hearted ejaculations from time to time, tossing unrestfully, and turning over. But at last she was still, only moaning a little in her sleep. Now the boy stole out, rose gradually by the bedside, shaded the candle-light with his hand, and stood regarding her. His heart was full of pity for her. He took out his sycamore scroll and placed it by the candle. But something occurred to him, and he lingered considering. His face lighted with a happy solution of his thought; he put the bark hastily in his pocket. Then he bent over and kissed the faded lips, and straightway made his stealthy exit, latching the door behind him. He threaded his way back to the ferry landing, found nobody at large there, and walked boldly on board the boat, for he knew she was tenantless except that there was a watchman, who always turned in and slept like a graven image. He untied the skiff at the stern, slipped into it, and was soon rowing cautiously upstream. When he had pulled a mile above the village, he started quartering across and bent himself stoutly to his work. He hit the landing on the other side neatly, for this was a familiar bit of work to him. He was moved to capture the skiff, arguing that it might be considered a ship and therefore legitimate prey for a pirate, but he knew a thorough search would be made for it and that might end in revelations. So he stepped ashore and entered the woods. He sat down and took a long rest, torturing himself meanwhile to keep awake, and then started warily down the home-stretch. The night was far spent. It was broad daylight before he found himself fairly abreast the island bar. He rested again until the sun was well up and gilding the great river with its splendor, and then he plunged into the stream. A little later he paused, dripping, upon the threshold of the camp, and heard Joe say: "No, Tom's true-blue, Huck, and he'll come back. He won't desert. He knows that would be a disgrace to a pirate, and Tom's too proud for that sort of thing. He's up to something or other. Now I wonder what?" "Well, the things is ours, anyway, ain't they?" "Pretty near, but not yet, Huck. The writing says they are if he ain't back here to breakfast." "Which he is!" exclaimed Tom, with fine dramatic effect, stepping grandly into camp. A sumptuous breakfast of bacon and fish was shortly provided, and as the boys set to work upon it, Tom recounted (and adorned) his adventures. They were a vain and boastful company of heroes when the tale was done. Then Tom hid himself away in a shady nook to sleep till noon, and the other pirates got ready to fish and explore. CHAPTER XVI AFTER dinner all the gang turned out to hunt for turtle eggs on the bar. They went about poking sticks into the sand, and when they found a soft place they went down on their knees and dug with their hands. Sometimes they would take fifty or sixty eggs out of one hole. They were perfectly round white things a trifle smaller than an English walnut. They had a famous fried-egg feast that night, and another on Friday morning. After breakfast they went whooping and prancing out on the bar, and chased each other round and round, shedding clothes as they went, until they were naked, and then continued the frolic far away up the shoal water of the bar, against the stiff current, which latter tripped their legs from under them from time to time and greatly increased the fun. And now and then they stooped in a group and splashed water in each other's faces with their palms, gradually approaching each other, with averted faces to avoid the strangling sprays, and finally gripping and struggling till the best man ducked his neighbor, and then they all went under in a tangle of white legs and arms and came up blowing, sputtering, laughing, and gasping for breath at one and the same time. When they were well exhausted, they would run out and sprawl on the dry, hot sand, and lie there and cover themselves up with it, and by and by break for the water again and go through the original performance once more. Finally it occurred to them that their naked skin represented flesh-colored "tights" very fairly; so they drew a ring in the sand and had a circus--with three clowns in it, for none would yield this proudest post to his neighbor. Next they got their marbles and played "knucks" and "ring-taw" and "keeps" till that amusement grew stale. Then Joe and Huck had another swim, but Tom would not venture, because he found that in kicking off his trousers he had kicked his string of rattlesnake rattles off his ankle, and he wondered how he had escaped cramp so long without the protection of this mysterious charm. He did not venture again until he had found it, and by that time the other boys were tired and ready to rest. They gradually wandered apart, dropped into the "dumps," and fell to gazing longingly across the wide river to where the village lay drowsing in the sun. Tom found himself writing "BECKY" in the sand with his big toe; he scratched it out, and was angry with himself for his weakness. But he wrote it again, nevertheless; he could not help it. He erased it once more and then took himself out of temptation by driving the other boys together and joining them. But Joe's spirits had gone down almost beyond resurrection. He was so homesick that he could hardly endure the misery of it. The tears lay very near the surface. Huck was melancholy, too. Tom was downhearted, but tried hard not to show it. He had a secret which he was not ready to tell, yet, but if this mutinous depression was not broken up soon, he would have to bring it out. He said, with a great show of cheerfulness: "I bet there's been pirates on this island before, boys. We'll explore it again. They've hid treasures here somewhere. How'd you feel to light on a rotten chest full of gold and silver--hey?" But it roused only faint enthusiasm, which faded out, with no reply. Tom tried one or two other seductions; but they failed, too. It was discouraging work. Joe sat poking up the sand with a stick and looking very gloomy. Finally he said: "Oh, boys, let's give it up. I want to go home. It's so lonesome." "Oh no, Joe, you'll feel better by and by," said Tom. "Just think of the fishing that's here." "I don't care for fishing. I want to go home." "But, Joe, there ain't such another swimming-place anywhere." "Swimming's no good. I don't seem to care for it, somehow, when there ain't anybody to say I sha'n't go in. I mean to go home." "Oh, shucks! Baby! You want to see your mother, I reckon." "Yes, I DO want to see my mother--and you would, too, if you had one. I ain't any more baby than you are." And Joe snuffled a little. "Well, we'll let the cry-baby go home to his mother, won't we, Huck? Poor thing--does it want to see its mother? And so it shall. You like it here, don't you, Huck? We'll stay, won't we?" Huck said, "Y-e-s"--without any heart in it. "I'll never speak to you again as long as I live," said Joe, rising. "There now!" And he moved moodily away and began to dress himself. "Who cares!" said Tom. "Nobody wants you to. Go 'long home and get laughed at. Oh, you're a nice pirate. Huck and me ain't cry-babies. We'll stay, won't we, Huck? Let him go if he wants to. I reckon we can get along without him, per'aps." But Tom was uneasy, nevertheless, and was alarmed to see Joe go sullenly on with his dressing. And then it was discomforting to see Huck eying Joe's preparations so wistfully, and keeping up such an ominous silence. Presently, without a parting word, Joe began to wade off toward the Illinois shore. Tom's heart began to sink. He glanced at Huck. Huck could not bear the look, and dropped his eyes. Then he said: "I want to go, too, Tom. It was getting so lonesome anyway, and now it'll be worse. Let's us go, too, Tom." "I won't! You can all go, if you want to. I mean to stay." "Tom, I better go." "Well, go 'long--who's hendering you." Huck began to pick up his scattered clothes. He said: "Tom, I wisht you'd come, too. Now you think it over. We'll wait for you when we get to shore." "Well, you'll wait a blame long time, that's all." Huck started sorrowfully away, and Tom stood looking after him, with a strong desire tugging at his heart to yield his pride and go along too. He hoped the boys would stop, but they still waded slowly on. It suddenly dawned on Tom that it was become very lonely and still. He made one final struggle with his pride, and then darted after his comrades, yelling: "Wait! Wait! I want to tell you something!" They presently stopped and turned around. When he got to where they were, he began unfolding his secret, and they listened moodily till at last they saw the "point" he was driving at, and then they set up a war-whoop of applause and said it was "splendid!" and said if he had told them at first, they wouldn't have started away. He made a plausible excuse; but his real reason had been the fear that not even the secret would keep them with him any very great length of time, and so he had meant to hold it in reserve as a last seduction. The lads came gayly back and went at their sports again with a will, chattering all the time about Tom's stupendous plan and admiring the genius of it. After a dainty egg and fish dinner, Tom said he wanted to learn to smoke, now. Joe caught at the idea and said he would like to try, too. So Huck made pipes and filled them. These novices had never smoked anything before but cigars made of grape-vine, and they "bit" the tongue, and were not considered manly anyway. Now they stretched themselves out on their elbows and began to puff, charily, and with slender confidence. The smoke had an unpleasant taste, and they gagged a little, but Tom said: "Why, it's just as easy! If I'd a knowed this was all, I'd a learnt long ago." "So would I," said Joe. "It's just nothing." "Why, many a time I've looked at people smoking, and thought well I wish I could do that; but I never thought I could," said Tom. "That's just the way with me, hain't it, Huck? You've heard me talk just that way--haven't you, Huck? I'll leave it to Huck if I haven't." "Yes--heaps of times," said Huck. "Well, I have too," said Tom; "oh, hundreds of times. Once down by the slaughter-house. Don't you remember, Huck? Bob Tanner was there, and Johnny Miller, and Jeff Thatcher, when I said it. Don't you remember, Huck, 'bout me saying that?" "Yes, that's so," said Huck. "That was the day after I lost a white alley. No, 'twas the day before." "There--I told you so," said Tom. "Huck recollects it." "I bleeve I could smoke this pipe all day," said Joe. "I don't feel sick." "Neither do I," said Tom. "I could smoke it all day. But I bet you Jeff Thatcher couldn't." "Jeff Thatcher! Why, he'd keel over just with two draws. Just let him try it once. HE'D see!" "I bet he would. And Johnny Miller--I wish could see Johnny Miller tackle it once." "Oh, don't I!" said Joe. "Why, I bet you Johnny Miller couldn't any more do this than nothing. Just one little snifter would fetch HIM." "'Deed it would, Joe. Say--I wish the boys could see us now." "So do I." "Say--boys, don't say anything about it, and some time when they're around, I'll come up to you and say, 'Joe, got a pipe? I want a smoke.' And you'll say, kind of careless like, as if it warn't anything, you'll say, 'Yes, I got my OLD pipe, and another one, but my tobacker ain't very good.' And I'll say, 'Oh, that's all right, if it's STRONG enough.' And then you'll out with the pipes, and we'll light up just as ca'm, and then just see 'em look!" "By jings, that'll be gay, Tom! I wish it was NOW!" "So do I! And when we tell 'em we learned when we was off pirating, won't they wish they'd been along?" "Oh, I reckon not! I'll just BET they will!" So the talk ran on. But presently it began to flag a trifle, and grow disjointed. The silences widened; the expectoration marvellously increased. Every pore inside the boys' cheeks became a spouting fountain; they could scarcely bail out the cellars under their tongues fast enough to prevent an inundation; little overflowings down their throats occurred in spite of all they could do, and sudden retchings followed every time. Both boys were looking very pale and miserable, now. Joe's pipe dropped from his nerveless fingers. Tom's followed. Both fountains were going furiously and both pumps bailing with might and main. Joe said feebly: "I've lost my knife. I reckon I better go and find it." Tom said, with quivering lips and halting utterance: "I'll help you. You go over that way and I'll hunt around by the spring. No, you needn't come, Huck--we can find it." So Huck sat down again, and waited an hour. Then he found it lonesome, and went to find his comrades. They were wide apart in the woods, both very pale, both fast asleep. But something informed him that if they had had any trouble they had got rid of it. They were not talkative at supper that night. They had a humble look, and when Huck prepared his pipe after the meal and was going to prepare theirs, they said no, they were not feeling very well--something they ate at dinner had disagreed with them. About midnight Joe awoke, and called the boys. There was a brooding oppressiveness in the air that seemed to bode something. The boys huddled themselves together and sought the friendly companionship of the fire, though the dull dead heat of the breathless atmosphere was stifling. They sat still, intent and waiting. The solemn hush continued. Beyond the light of the fire everything was swallowed up in the blackness of darkness. Presently there came a quivering glow that vaguely revealed the foliage for a moment and then vanished. By and by another came, a little stronger. Then another. Then a faint moan came sighing through the branches of the forest and the boys felt a fleeting breath upon their cheeks, and shuddered with the fancy that the Spirit of the Night had gone by. There was a pause. Now a weird flash turned night into day and showed every little grass-blade, separate and distinct, that grew about their feet. And it showed three white, startled faces, too. A deep peal of thunder went rolling and tumbling down the heavens and lost itself in sullen rumblings in the distance. A sweep of chilly air passed by, rustling all the leaves and snowing the flaky ashes broadcast about the fire. Another fierce glare lit up the forest and an instant crash followed that seemed to rend the tree-tops right over the boys' heads. They clung together in terror, in the thick gloom that followed. A few big rain-drops fell pattering upon the leaves. "Quick! boys, go for the tent!" exclaimed Tom. They sprang away, stumbling over roots and among vines in the dark, no two plunging in the same direction. A furious blast roared through the trees, making everything sing as it went. One blinding flash after another came, and peal on peal of deafening thunder. And now a drenching rain poured down and the rising hurricane drove it in sheets along the ground. The boys cried out to each other, but the roaring wind and the booming thunder-blasts drowned their voices utterly. However, one by one they straggled in at last and took shelter under the tent, cold, scared, and streaming with water; but to have company in misery seemed something to be grateful for. They could not talk, the old sail flapped so furiously, even if the other noises would have allowed them. The tempest rose higher and higher, and presently the sail tore loose from its fastenings and went winging away on the blast. The boys seized each others' hands and fled, with many tumblings and bruises, to the shelter of a great oak that stood upon the river-bank. Now the battle was at its highest. Under the ceaseless conflagration of lightning that flamed in the skies, everything below stood out in clean-cut and shadowless distinctness: the bending trees, the billowy river, white with foam, the driving spray of spume-flakes, the dim outlines of the high bluffs on the other side, glimpsed through the drifting cloud-rack and the slanting veil of rain. Every little while some giant tree yielded the fight and fell crashing through the younger growth; and the unflagging thunder-peals came now in ear-splitting explosive bursts, keen and sharp, and unspeakably appalling. The storm culminated in one matchless effort that seemed likely to tear the island to pieces, burn it up, drown it to the tree-tops, blow it away, and deafen every creature in it, all at one and the same moment. It was a wild night for homeless young heads to be out in. But at last the battle was done, and the forces retired with weaker and weaker threatenings and grumblings, and peace resumed her sway. The boys went back to camp, a good deal awed; but they found there was still something to be thankful for, because the great sycamore, the shelter of their beds, was a ruin, now, blasted by the lightnings, and they were not under it when the catastrophe happened. Everything in camp was drenched, the camp-fire as well; for they were but heedless lads, like their generation, and had made no provision against rain. Here was matter for dismay, for they were soaked through and chilled. They were eloquent in their distress; but they presently discovered that the fire had eaten so far up under the great log it had been built against (where it curved upward and separated itself from the ground), that a handbreadth or so of it had escaped wetting; so they patiently wrought until, with shreds and bark gathered from the under sides of sheltered logs, they coaxed the fire to burn again. Then they piled on great dead boughs till they had a roaring furnace, and were glad-hearted once more. They dried their boiled ham and had a feast, and after that they sat by the fire and expanded and glorified their midnight adventure until morning, for there was not a dry spot to sleep on, anywhere around. As the sun began to steal in upon the boys, drowsiness came over them, and they went out on the sandbar and lay down to sleep. They got scorched out by and by, and drearily set about getting breakfast. After the meal they felt rusty, and stiff-jointed, and a little homesick once more. Tom saw the signs, and fell to cheering up the pirates as well as he could. But they cared nothing for marbles, or circus, or swimming, or anything. He reminded them of the imposing secret, and raised a ray of cheer. While it lasted, he got them interested in a new device. This was to knock off being pirates, for a while, and be Indians for a change. They were attracted by this idea; so it was not long before they were stripped, and striped from head to heel with black mud, like so many zebras--all of them chiefs, of course--and then they went tearing through the woods to attack an English settlement. By and by they separated into three hostile tribes, and darted upon each other from ambush with dreadful war-whoops, and killed and scalped each other by thousands. It was a gory day. Consequently it was an extremely satisfactory one. They assembled in camp toward supper-time, hungry and happy; but now a difficulty arose--hostile Indians could not break the bread of hospitality together without first making peace, and this was a simple impossibility without smoking a pipe of peace. There was no other process that ever they had heard of. Two of the savages almost wished they had remained pirates. However, there was no other way; so with such show of cheerfulness as they could muster they called for the pipe and took their whiff as it passed, in due form. And behold, they were glad they had gone into savagery, for they had gained something; they found that they could now smoke a little without having to go and hunt for a lost knife; they did not get sick enough to be seriously uncomfortable. They were not likely to fool away this high promise for lack of effort. No, they practised cautiously, after supper, with right fair success, and so they spent a jubilant evening. They were prouder and happier in their new acquirement than they would have been in the scalping and skinning of the Six Nations. We will leave them to smoke and chatter and brag, since we have no further use for them at present. CHAPTER XVII BUT there was no hilarity in the little town that same tranquil Saturday afternoon. The Harpers, and Aunt Polly's family, were being put into mourning, with great grief and many tears. An unusual quiet possessed the village, although it was ordinarily quiet enough, in all conscience. The villagers conducted their concerns with an absent air, and talked little; but they sighed often. The Saturday holiday seemed a burden to the children. They had no heart in their sports, and gradually gave them up. In the afternoon Becky Thatcher found herself moping about the deserted schoolhouse yard, and feeling very melancholy. But she found nothing there to comfort her. She soliloquized: "Oh, if I only had a brass andiron-knob again! But I haven't got anything now to remember him by." And she choked back a little sob. Presently she stopped, and said to herself: "It was right here. Oh, if it was to do over again, I wouldn't say that--I wouldn't say it for the whole world. But he's gone now; I'll never, never, never see him any more." This thought broke her down, and she wandered away, with tears rolling down her cheeks. Then quite a group of boys and girls--playmates of Tom's and Joe's--came by, and stood looking over the paling fence and talking in reverent tones of how Tom did so-and-so the last time they saw him, and how Joe said this and that small trifle (pregnant with awful prophecy, as they could easily see now!)--and each speaker pointed out the exact spot where the lost lads stood at the time, and then added something like "and I was a-standing just so--just as I am now, and as if you was him--I was as close as that--and he smiled, just this way--and then something seemed to go all over me, like--awful, you know--and I never thought what it meant, of course, but I can see now!" Then there was a dispute about who saw the dead boys last in life, and many claimed that dismal distinction, and offered evidences, more or less tampered with by the witness; and when it was ultimately decided who DID see the departed last, and exchanged the last words with them, the lucky parties took upon themselves a sort of sacred importance, and were gaped at and envied by all the rest. One poor chap, who had no other grandeur to offer, said with tolerably manifest pride in the remembrance: "Well, Tom Sawyer he licked me once." But that bid for glory was a failure. Most of the boys could say that, and so that cheapened the distinction too much. The group loitered away, still recalling memories of the lost heroes, in awed voices. When the Sunday-school hour was finished, the next morning, the bell began to toll, instead of ringing in the usual way. It was a very still Sabbath, and the mournful sound seemed in keeping with the musing hush that lay upon nature. The villagers began to gather, loitering a moment in the vestibule to converse in whispers about the sad event. But there was no whispering in the house; only the funereal rustling of dresses as the women gathered to their seats disturbed the silence there. None could remember when the little church had been so full before. There was finally a waiting pause, an expectant dumbness, and then Aunt Polly entered, followed by Sid and Mary, and they by the Harper family, all in deep black, and the whole congregation, the old minister as well, rose reverently and stood until the mourners were seated in the front pew. There was another communing silence, broken at intervals by muffled sobs, and then the minister spread his hands abroad and prayed. A moving hymn was sung, and the text followed: "I am the Resurrection and the Life." As the service proceeded, the clergyman drew such pictures of the graces, the winning ways, and the rare promise of the lost lads that every soul there, thinking he recognized these pictures, felt a pang in remembering that he had persistently blinded himself to them always before, and had as persistently seen only faults and flaws in the poor boys. The minister related many a touching incident in the lives of the departed, too, which illustrated their sweet, generous natures, and the people could easily see, now, how noble and beautiful those episodes were, and remembered with grief that at the time they occurred they had seemed rank rascalities, well deserving of the cowhide. The congregation became more and more moved, as the pathetic tale went on, till at last the whole company broke down and joined the weeping mourners in a chorus of anguished sobs, the preacher himself giving way to his feelings, and crying in the pulpit. There was a rustle in the gallery, which nobody noticed; a moment later the church door creaked; the minister raised his streaming eyes above his handkerchief, and stood transfixed! First one and then another pair of eyes followed the minister's, and then almost with one impulse the congregation rose and stared while the three dead boys came marching up the aisle, Tom in the lead, Joe next, and Huck, a ruin of drooping rags, sneaking sheepishly in the rear! They had been hid in the unused gallery listening to their own funeral sermon! Aunt Polly, Mary, and the Harpers threw themselves upon their restored ones, smothered them with kisses and poured out thanksgivings, while poor Huck stood abashed and uncomfortable, not knowing exactly what to do or where to hide from so many unwelcoming eyes. He wavered, and started to slink away, but Tom seized him and said: "Aunt Polly, it ain't fair. Somebody's got to be glad to see Huck." "And so they shall. I'm glad to see him, poor motherless thing!" And the loving attentions Aunt Polly lavished upon him were the one thing capable of making him more uncomfortable than he was before. Suddenly the minister shouted at the top of his voice: "Praise God from whom all blessings flow--SING!--and put your hearts in it!" And they did. Old Hundred swelled up with a triumphant burst, and while it shook the rafters Tom Sawyer the Pirate looked around upon the envying juveniles about him and confessed in his heart that this was the proudest moment of his life. As the "sold" congregation trooped out they said they would almost be willing to be made ridiculous again to hear Old Hundred sung like that once more. Tom got more cuffs and kisses that day--according to Aunt Polly's varying moods--than he had earned before in a year; and he hardly knew which expressed the most gratefulness to God and affection for himself. CHAPTER XVIII THAT was Tom's great secret--the scheme to return home with his brother pirates and attend their own funerals. They had paddled over to the Missouri shore on a log, at dusk on Saturday, landing five or six miles below the village; they had slept in the woods at the edge of the town till nearly daylight, and had then crept through back lanes and alleys and finished their sleep in the gallery of the church among a chaos of invalided benches. At breakfast, Monday morning, Aunt Polly and Mary were very loving to Tom, and very attentive to his wants. There was an unusual amount of talk. In the course of it Aunt Polly said: "Well, I don't say it wasn't a fine joke, Tom, to keep everybody suffering 'most a week so you boys had a good time, but it is a pity you could be so hard-hearted as to let me suffer so. If you could come over on a log to go to your funeral, you could have come over and give me a hint some way that you warn't dead, but only run off." "Yes, you could have done that, Tom," said Mary; "and I believe you would if you had thought of it." "Would you, Tom?" said Aunt Polly, her face lighting wistfully. "Say, now, would you, if you'd thought of it?" "I--well, I don't know. 'Twould 'a' spoiled everything." "Tom, I hoped you loved me that much," said Aunt Polly, with a grieved tone that discomforted the boy. "It would have been something if you'd cared enough to THINK of it, even if you didn't DO it." "Now, auntie, that ain't any harm," pleaded Mary; "it's only Tom's giddy way--he is always in such a rush that he never thinks of anything." "More's the pity. Sid would have thought. And Sid would have come and DONE it, too. Tom, you'll look back, some day, when it's too late, and wish you'd cared a little more for me when it would have cost you so little." "Now, auntie, you know I do care for you," said Tom. "I'd know it better if you acted more like it." "I wish now I'd thought," said Tom, with a repentant tone; "but I dreamt about you, anyway. That's something, ain't it?" "It ain't much--a cat does that much--but it's better than nothing. What did you dream?" "Why, Wednesday night I dreamt that you was sitting over there by the bed, and Sid was sitting by the woodbox, and Mary next to him." "Well, so we did. So we always do. I'm glad your dreams could take even that much trouble about us." "And I dreamt that Joe Harper's mother was here." "Why, she was here! Did you dream any more?" "Oh, lots. But it's so dim, now." "Well, try to recollect--can't you?" "Somehow it seems to me that the wind--the wind blowed the--the--" "Try harder, Tom! The wind did blow something. Come!" Tom pressed his fingers on his forehead an anxious minute, and then said: "I've got it now! I've got it now! It blowed the candle!" "Mercy on us! Go on, Tom--go on!" "And it seems to me that you said, 'Why, I believe that that door--'" "Go ON, Tom!" "Just let me study a moment--just a moment. Oh, yes--you said you believed the door was open." "As I'm sitting here, I did! Didn't I, Mary! Go on!" "And then--and then--well I won't be certain, but it seems like as if you made Sid go and--and--" "Well? Well? What did I make him do, Tom? What did I make him do?" "You made him--you--Oh, you made him shut it." "Well, for the land's sake! I never heard the beat of that in all my days! Don't tell ME there ain't anything in dreams, any more. Sereny Harper shall know of this before I'm an hour older. I'd like to see her get around THIS with her rubbage 'bout superstition. Go on, Tom!" "Oh, it's all getting just as bright as day, now. Next you said I warn't BAD, only mischeevous and harum-scarum, and not any more responsible than--than--I think it was a colt, or something." "And so it was! Well, goodness gracious! Go on, Tom!" "And then you began to cry." "So I did. So I did. Not the first time, neither. And then--" "Then Mrs. Harper she began to cry, and said Joe was just the same, and she wished she hadn't whipped him for taking cream when she'd throwed it out her own self--" "Tom! The sperrit was upon you! You was a prophesying--that's what you was doing! Land alive, go on, Tom!" "Then Sid he said--he said--" "I don't think I said anything," said Sid. "Yes you did, Sid," said Mary. "Shut your heads and let Tom go on! What did he say, Tom?" "He said--I THINK he said he hoped I was better off where I was gone to, but if I'd been better sometimes--" "THERE, d'you hear that! It was his very words!" "And you shut him up sharp." "I lay I did! There must 'a' been an angel there. There WAS an angel there, somewheres!" "And Mrs. Harper told about Joe scaring her with a firecracker, and you told about Peter and the Painkiller--" "Just as true as I live!" "And then there was a whole lot of talk 'bout dragging the river for us, and 'bout having the funeral Sunday, and then you and old Miss Harper hugged and cried, and she went." "It happened just so! It happened just so, as sure as I'm a-sitting in these very tracks. Tom, you couldn't told it more like if you'd 'a' seen it! And then what? Go on, Tom!" "Then I thought you prayed for me--and I could see you and hear every word you said. And you went to bed, and I was so sorry that I took and wrote on a piece of sycamore bark, 'We ain't dead--we are only off being pirates,' and put it on the table by the candle; and then you looked so good, laying there asleep, that I thought I went and leaned over and kissed you on the lips." "Did you, Tom, DID you! I just forgive you everything for that!" And she seized the boy in a crushing embrace that made him feel like the guiltiest of villains. "It was very kind, even though it was only a--dream," Sid soliloquized just audibly. "Shut up, Sid! A body does just the same in a dream as he'd do if he was awake. Here's a big Milum apple I've been saving for you, Tom, if you was ever found again--now go 'long to school. I'm thankful to the good God and Father of us all I've got you back, that's long-suffering and merciful to them that believe on Him and keep His word, though goodness knows I'm unworthy of it, but if only the worthy ones got His blessings and had His hand to help them over the rough places, there's few enough would smile here or ever enter into His rest when the long night comes. Go 'long Sid, Mary, Tom--take yourselves off--you've hendered me long enough." The children left for school, and the old lady to call on Mrs. Harper and vanquish her realism with Tom's marvellous dream. Sid had better judgment than to utter the thought that was in his mind as he left the house. It was this: "Pretty thin--as long a dream as that, without any mistakes in it!" What a hero Tom was become, now! He did not go skipping and prancing, but moved with a dignified swagger as became a pirate who felt that the public eye was on him. And indeed it was; he tried not to seem to see the looks or hear the remarks as he passed along, but they were food and drink to him. Smaller boys than himself flocked at his heels, as proud to be seen with him, and tolerated by him, as if he had been the drummer at the head of a procession or the elephant leading a menagerie into town. Boys of his own size pretended not to know he had been away at all; but they were consuming with envy, nevertheless. They would have given anything to have that swarthy suntanned skin of his, and his glittering notoriety; and Tom would not have parted with either for a circus. At school the children made so much of him and of Joe, and delivered such eloquent admiration from their eyes, that the two heroes were not long in becoming insufferably "stuck-up." They began to tell their adventures to hungry listeners--but they only began; it was not a thing likely to have an end, with imaginations like theirs to furnish material. And finally, when they got out their pipes and went serenely puffing around, the very summit of glory was reached. Tom decided that he could be independent of Becky Thatcher now. Glory was sufficient. He would live for glory. Now that he was distinguished, maybe she would be wanting to "make up." Well, let her--she should see that he could be as indifferent as some other people. Presently she arrived. Tom pretended not to see her. He moved away and joined a group of boys and girls and began to talk. Soon he observed that she was tripping gayly back and forth with flushed face and dancing eyes, pretending to be busy chasing schoolmates, and screaming with laughter when she made a capture; but he noticed that she always made her captures in his vicinity, and that she seemed to cast a conscious eye in his direction at such times, too. It gratified all the vicious vanity that was in him; and so, instead of winning him, it only "set him up" the more and made him the more diligent to avoid betraying that he knew she was about. Presently she gave over skylarking, and moved irresolutely about, sighing once or twice and glancing furtively and wistfully toward Tom. Then she observed that now Tom was talking more particularly to Amy Lawrence than to any one else. She felt a sharp pang and grew disturbed and uneasy at once. She tried to go away, but her feet were treacherous, and carried her to the group instead. She said to a girl almost at Tom's elbow--with sham vivacity: "Why, Mary Austin! you bad girl, why didn't you come to Sunday-school?" "I did come--didn't you see me?" "Why, no! Did you? Where did you sit?" "I was in Miss Peters' class, where I always go. I saw YOU." "Did you? Why, it's funny I didn't see you. I wanted to tell you about the picnic." "Oh, that's jolly. Who's going to give it?" "My ma's going to let me have one." "Oh, goody; I hope she'll let ME come." "Well, she will. The picnic's for me. She'll let anybody come that I want, and I want you." "That's ever so nice. When is it going to be?" "By and by. Maybe about vacation." "Oh, won't it be fun! You going to have all the girls and boys?" "Yes, every one that's friends to me--or wants to be"; and she glanced ever so furtively at Tom, but he talked right along to Amy Lawrence about the terrible storm on the island, and how the lightning tore the great sycamore tree "all to flinders" while he was "standing within three feet of it." "Oh, may I come?" said Grace Miller. "Yes." "And me?" said Sally Rogers. "Yes." "And me, too?" said Susy Harper. "And Joe?" "Yes." And so on, with clapping of joyful hands till all the group had begged for invitations but Tom and Amy. Then Tom turned coolly away, still talking, and took Amy with him. Becky's lips trembled and the tears came to her eyes; she hid these signs with a forced gayety and went on chattering, but the life had gone out of the picnic, now, and out of everything else; she got away as soon as she could and hid herself and had what her sex call "a good cry." Then she sat moody, with wounded pride, till the bell rang. She roused up, now, with a vindictive cast in her eye, and gave her plaited tails a shake and said she knew what SHE'D do. At recess Tom continued his flirtation with Amy with jubilant self-satisfaction. And he kept drifting about to find Becky and lacerate her with the performance. At last he spied her, but there was a sudden falling of his mercury. She was sitting cosily on a little bench behind the schoolhouse looking at a picture-book with Alfred Temple--and so absorbed were they, and their heads so close together over the book, that they did not seem to be conscious of anything in the world besides. Jealousy ran red-hot through Tom's veins. He began to hate himself for throwing away the chance Becky had offered for a reconciliation. He called himself a fool, and all the hard names he could think of. He wanted to cry with vexation. Amy chatted happily along, as they walked, for her heart was singing, but Tom's tongue had lost its function. He did not hear what Amy was saying, and whenever she paused expectantly he could only stammer an awkward assent, which was as often misplaced as otherwise. He kept drifting to the rear of the schoolhouse, again and again, to sear his eyeballs with the hateful spectacle there. He could not help it. And it maddened him to see, as he thought he saw, that Becky Thatcher never once suspected that he was even in the land of the living. But she did see, nevertheless; and she knew she was winning her fight, too, and was glad to see him suffer as she had suffered. Amy's happy prattle became intolerable. Tom hinted at things he had to attend to; things that must be done; and time was fleeting. But in vain--the girl chirped on. Tom thought, "Oh, hang her, ain't I ever going to get rid of her?" At last he must be attending to those things--and she said artlessly that she would be "around" when school let out. And he hastened away, hating her for it. "Any other boy!" Tom thought, grating his teeth. "Any boy in the whole town but that Saint Louis smarty that thinks he dresses so fine and is aristocracy! Oh, all right, I licked you the first day you ever saw this town, mister, and I'll lick you again! You just wait till I catch you out! I'll just take and--" And he went through the motions of thrashing an imaginary boy --pummelling the air, and kicking and gouging. "Oh, you do, do you? You holler 'nough, do you? Now, then, let that learn you!" And so the imaginary flogging was finished to his satisfaction. Tom fled home at noon. His conscience could not endure any more of Amy's grateful happiness, and his jealousy could bear no more of the other distress. Becky resumed her picture inspections with Alfred, but as the minutes dragged along and no Tom came to suffer, her triumph began to cloud and she lost interest; gravity and absent-mindedness followed, and then melancholy; two or three times she pricked up her ear at a footstep, but it was a false hope; no Tom came. At last she grew entirely miserable and wished she hadn't carried it so far. When poor Alfred, seeing that he was losing her, he did not know how, kept exclaiming: "Oh, here's a jolly one! look at this!" she lost patience at last, and said, "Oh, don't bother me! I don't care for them!" and burst into tears, and got up and walked away. Alfred dropped alongside and was going to try to comfort her, but she said: "Go away and leave me alone, can't you! I hate you!" So the boy halted, wondering what he could have done--for she had said she would look at pictures all through the nooning--and she walked on, crying. Then Alfred went musing into the deserted schoolhouse. He was humiliated and angry. He easily guessed his way to the truth--the girl had simply made a convenience of him to vent her spite upon Tom Sawyer. He was far from hating Tom the less when this thought occurred to him. He wished there was some way to get that boy into trouble without much risk to himself. Tom's spelling-book fell under his eye. Here was his opportunity. He gratefully opened to the lesson for the afternoon and poured ink upon the page. Becky, glancing in at a window behind him at the moment, saw the act, and moved on, without discovering herself. She started homeward, now, intending to find Tom and tell him; Tom would be thankful and their troubles would be healed. Before she was half way home, however, she had changed her mind. The thought of Tom's treatment of her when she was talking about her picnic came scorching back and filled her with shame. She resolved to let him get whipped on the damaged spelling-book's account, and to hate him forever, into the bargain. CHAPTER XIX TOM arrived at home in a dreary mood, and the first thing his aunt said to him showed him that he had brought his sorrows to an unpromising market: "Tom, I've a notion to skin you alive!" "Auntie, what have I done?" "Well, you've done enough. Here I go over to Sereny Harper, like an old softy, expecting I'm going to make her believe all that rubbage about that dream, when lo and behold you she'd found out from Joe that you was over here and heard all the talk we had that night. Tom, I don't know what is to become of a boy that will act like that. It makes me feel so bad to think you could let me go to Sereny Harper and make such a fool of myself and never say a word." This was a new aspect of the thing. His smartness of the morning had seemed to Tom a good joke before, and very ingenious. It merely looked mean and shabby now. He hung his head and could not think of anything to say for a moment. Then he said: "Auntie, I wish I hadn't done it--but I didn't think." "Oh, child, you never think. You never think of anything but your own selfishness. You could think to come all the way over here from Jackson's Island in the night to laugh at our troubles, and you could think to fool me with a lie about a dream; but you couldn't ever think to pity us and save us from sorrow." "Auntie, I know now it was mean, but I didn't mean to be mean. I didn't, honest. And besides, I didn't come over here to laugh at you that night." "What did you come for, then?" "It was to tell you not to be uneasy about us, because we hadn't got drownded." "Tom, Tom, I would be the thankfullest soul in this world if I could believe you ever had as good a thought as that, but you know you never did--and I know it, Tom." "Indeed and 'deed I did, auntie--I wish I may never stir if I didn't." "Oh, Tom, don't lie--don't do it. It only makes things a hundred times worse." "It ain't a lie, auntie; it's the truth. I wanted to keep you from grieving--that was all that made me come." "I'd give the whole world to believe that--it would cover up a power of sins, Tom. I'd 'most be glad you'd run off and acted so bad. But it ain't reasonable; because, why didn't you tell me, child?" "Why, you see, when you got to talking about the funeral, I just got all full of the idea of our coming and hiding in the church, and I couldn't somehow bear to spoil it. So I just put the bark back in my pocket and kept mum." "What bark?" "The bark I had wrote on to tell you we'd gone pirating. I wish, now, you'd waked up when I kissed you--I do, honest." The hard lines in his aunt's face relaxed and a sudden tenderness dawned in her eyes. "DID you kiss me, Tom?" "Why, yes, I did." "Are you sure you did, Tom?" "Why, yes, I did, auntie--certain sure." "What did you kiss me for, Tom?" "Because I loved you so, and you laid there moaning and I was so sorry." The words sounded like truth. The old lady could not hide a tremor in her voice when she said: "Kiss me again, Tom!--and be off with you to school, now, and don't bother me any more." The moment he was gone, she ran to a closet and got out the ruin of a jacket which Tom had gone pirating in. Then she stopped, with it in her hand, and said to herself: "No, I don't dare. Poor boy, I reckon he's lied about it--but it's a blessed, blessed lie, there's such a comfort come from it. I hope the Lord--I KNOW the Lord will forgive him, because it was such goodheartedness in him to tell it. But I don't want to find out it's a lie. I won't look." She put the jacket away, and stood by musing a minute. Twice she put out her hand to take the garment again, and twice she refrained. Once more she ventured, and this time she fortified herself with the thought: "It's a good lie--it's a good lie--I won't let it grieve me." So she sought the jacket pocket. A moment later she was reading Tom's piece of bark through flowing tears and saying: "I could forgive the boy, now, if he'd committed a million sins!" CHAPTER XX THERE was something about Aunt Polly's manner, when she kissed Tom, that swept away his low spirits and made him lighthearted and happy again. He started to school and had the luck of coming upon Becky Thatcher at the head of Meadow Lane. His mood always determined his manner. Without a moment's hesitation he ran to her and said: "I acted mighty mean to-day, Becky, and I'm so sorry. I won't ever, ever do that way again, as long as ever I live--please make up, won't you?" The girl stopped and looked him scornfully in the face: "I'll thank you to keep yourself TO yourself, Mr. Thomas Sawyer. I'll never speak to you again." She tossed her head and passed on. Tom was so stunned that he had not even presence of mind enough to say "Who cares, Miss Smarty?" until the right time to say it had gone by. So he said nothing. But he was in a fine rage, nevertheless. He moped into the schoolyard wishing she were a boy, and imagining how he would trounce her if she were. He presently encountered her and delivered a stinging remark as he passed. She hurled one in return, and the angry breach was complete. It seemed to Becky, in her hot resentment, that she could hardly wait for school to "take in," she was so impatient to see Tom flogged for the injured spelling-book. If she had had any lingering notion of exposing Alfred Temple, Tom's offensive fling had driven it entirely away. Poor girl, she did not know how fast she was nearing trouble herself. The master, Mr. Dobbins, had reached middle age with an unsatisfied ambition. The darling of his desires was, to be a doctor, but poverty had decreed that he should be nothing higher than a village schoolmaster. Every day he took a mysterious book out of his desk and absorbed himself in it at times when no classes were reciting. He kept that book under lock and key. There was not an urchin in school but was perishing to have a glimpse of it, but the chance never came. Every boy and girl had a theory about the nature of that book; but no two theories were alike, and there was no way of getting at the facts in the case. Now, as Becky was passing by the desk, which stood near the door, she noticed that the key was in the lock! It was a precious moment. She glanced around; found herself alone, and the next instant she had the book in her hands. The title-page--Professor Somebody's ANATOMY--carried no information to her mind; so she began to turn the leaves. She came at once upon a handsomely engraved and colored frontispiece--a human figure, stark naked. At that moment a shadow fell on the page and Tom Sawyer stepped in at the door and caught a glimpse of the picture. Becky snatched at the book to close it, and had the hard luck to tear the pictured page half down the middle. She thrust the volume into the desk, turned the key, and burst out crying with shame and vexation. "Tom Sawyer, you are just as mean as you can be, to sneak up on a person and look at what they're looking at." "How could I know you was looking at anything?" "You ought to be ashamed of yourself, Tom Sawyer; you know you're going to tell on me, and oh, what shall I do, what shall I do! I'll be whipped, and I never was whipped in school." Then she stamped her little foot and said: "BE so mean if you want to! I know something that's going to happen. You just wait and you'll see! Hateful, hateful, hateful!"--and she flung out of the house with a new explosion of crying. Tom stood still, rather flustered by this onslaught. Presently he said to himself: "What a curious kind of a fool a girl is! Never been licked in school! Shucks! What's a licking! That's just like a girl--they're so thin-skinned and chicken-hearted. Well, of course I ain't going to tell old Dobbins on this little fool, because there's other ways of getting even on her, that ain't so mean; but what of it? Old Dobbins will ask who it was tore his book. Nobody'll answer. Then he'll do just the way he always does--ask first one and then t'other, and when he comes to the right girl he'll know it, without any telling. Girls' faces always tell on them. They ain't got any backbone. She'll get licked. Well, it's a kind of a tight place for Becky Thatcher, because there ain't any way out of it." Tom conned the thing a moment longer, and then added: "All right, though; she'd like to see me in just such a fix--let her sweat it out!" Tom joined the mob of skylarking scholars outside. In a few moments the master arrived and school "took in." Tom did not feel a strong interest in his studies. Every time he stole a glance at the girls' side of the room Becky's face troubled him. Considering all things, he did not want to pity her, and yet it was all he could do to help it. He could get up no exultation that was really worthy the name. Presently the spelling-book discovery was made, and Tom's mind was entirely full of his own matters for a while after that. Becky roused up from her lethargy of distress and showed good interest in the proceedings. She did not expect that Tom could get out of his trouble by denying that he spilt the ink on the book himself; and she was right. The denial only seemed to make the thing worse for Tom. Becky supposed she would be glad of that, and she tried to believe she was glad of it, but she found she was not certain. When the worst came to the worst, she had an impulse to get up and tell on Alfred Temple, but she made an effort and forced herself to keep still--because, said she to herself, "he'll tell about me tearing the picture sure. I wouldn't say a word, not to save his life!" Tom took his whipping and went back to his seat not at all broken-hearted, for he thought it was possible that he had unknowingly upset the ink on the spelling-book himself, in some skylarking bout--he had denied it for form's sake and because it was custom, and had stuck to the denial from principle. A whole hour drifted by, the master sat nodding in his throne, the air was drowsy with the hum of study. By and by, Mr. Dobbins straightened himself up, yawned, then unlocked his desk, and reached for his book, but seemed undecided whether to take it out or leave it. Most of the pupils glanced up languidly, but there were two among them that watched his movements with intent eyes. Mr. Dobbins fingered his book absently for a while, then took it out and settled himself in his chair to read! Tom shot a glance at Becky. He had seen a hunted and helpless rabbit look as she did, with a gun levelled at its head. Instantly he forgot his quarrel with her. Quick--something must be done! done in a flash, too! But the very imminence of the emergency paralyzed his invention. Good!--he had an inspiration! He would run and snatch the book, spring through the door and fly. But his resolution shook for one little instant, and the chance was lost--the master opened the volume. If Tom only had the wasted opportunity back again! Too late. There was no help for Becky now, he said. The next moment the master faced the school. Every eye sank under his gaze. There was that in it which smote even the innocent with fear. There was silence while one might count ten --the master was gathering his wrath. Then he spoke: "Who tore this book?" There was not a sound. One could have heard a pin drop. The stillness continued; the master searched face after face for signs of guilt. "Benjamin Rogers, did you tear this book?" A denial. Another pause. "Joseph Harper, did you?" Another denial. Tom's uneasiness grew more and more intense under the slow torture of these proceedings. The master scanned the ranks of boys--considered a while, then turned to the girls: "Amy Lawrence?" A shake of the head. "Gracie Miller?" The same sign. "Susan Harper, did you do this?" Another negative. The next girl was Becky Thatcher. Tom was trembling from head to foot with excitement and a sense of the hopelessness of the situation. "Rebecca Thatcher" [Tom glanced at her face--it was white with terror] --"did you tear--no, look me in the face" [her hands rose in appeal] --"did you tear this book?" A thought shot like lightning through Tom's brain. He sprang to his feet and shouted--"I done it!" The school stared in perplexity at this incredible folly. Tom stood a moment, to gather his dismembered faculties; and when he stepped forward to go to his punishment the surprise, the gratitude, the adoration that shone upon him out of poor Becky's eyes seemed pay enough for a hundred floggings. Inspired by the splendor of his own act, he took without an outcry the most merciless flaying that even Mr. Dobbins had ever administered; and also received with indifference the added cruelty of a command to remain two hours after school should be dismissed--for he knew who would wait for him outside till his captivity was done, and not count the tedious time as loss, either. Tom went to bed that night planning vengeance against Alfred Temple; for with shame and repentance Becky had told him all, not forgetting her own treachery; but even the longing for vengeance had to give way, soon, to pleasanter musings, and he fell asleep at last with Becky's latest words lingering dreamily in his ear-- "Tom, how COULD you be so noble!" CHAPTER XXI VACATION was approaching. The schoolmaster, always severe, grew severer and more exacting than ever, for he wanted the school to make a good showing on "Examination" day. His rod and his ferule were seldom idle now--at least among the smaller pupils. Only the biggest boys, and young ladies of eighteen and twenty, escaped lashing. Mr. Dobbins' lashings were very vigorous ones, too; for although he carried, under his wig, a perfectly bald and shiny head, he had only reached middle age, and there was no sign of feebleness in his muscle. As the great day approached, all the tyranny that was in him came to the surface; he seemed to take a vindictive pleasure in punishing the least shortcomings. The consequence was, that the smaller boys spent their days in terror and suffering and their nights in plotting revenge. They threw away no opportunity to do the master a mischief. But he kept ahead all the time. The retribution that followed every vengeful success was so sweeping and majestic that the boys always retired from the field badly worsted. At last they conspired together and hit upon a plan that promised a dazzling victory. They swore in the sign-painter's boy, told him the scheme, and asked his help. He had his own reasons for being delighted, for the master boarded in his father's family and had given the boy ample cause to hate him. The master's wife would go on a visit to the country in a few days, and there would be nothing to interfere with the plan; the master always prepared himself for great occasions by getting pretty well fuddled, and the sign-painter's boy said that when the dominie had reached the proper condition on Examination Evening he would "manage the thing" while he napped in his chair; then he would have him awakened at the right time and hurried away to school. In the fulness of time the interesting occasion arrived. At eight in the evening the schoolhouse was brilliantly lighted, and adorned with wreaths and festoons of foliage and flowers. The master sat throned in his great chair upon a raised platform, with his blackboard behind him. He was looking tolerably mellow. Three rows of benches on each side and six rows in front of him were occupied by the dignitaries of the town and by the parents of the pupils. To his left, back of the rows of citizens, was a spacious temporary platform upon which were seated the scholars who were to take part in the exercises of the evening; rows of small boys, washed and dressed to an intolerable state of discomfort; rows of gawky big boys; snowbanks of girls and young ladies clad in lawn and muslin and conspicuously conscious of their bare arms, their grandmothers' ancient trinkets, their bits of pink and blue ribbon and the flowers in their hair. All the rest of the house was filled with non-participating scholars. The exercises began. A very little boy stood up and sheepishly recited, "You'd scarce expect one of my age to speak in public on the stage," etc.--accompanying himself with the painfully exact and spasmodic gestures which a machine might have used--supposing the machine to be a trifle out of order. But he got through safely, though cruelly scared, and got a fine round of applause when he made his manufactured bow and retired. A little shamefaced girl lisped, "Mary had a little lamb," etc., performed a compassion-inspiring curtsy, got her meed of applause, and sat down flushed and happy. Tom Sawyer stepped forward with conceited confidence and soared into the unquenchable and indestructible "Give me liberty or give me death" speech, with fine fury and frantic gesticulation, and broke down in the middle of it. A ghastly stage-fright seized him, his legs quaked under him and he was like to choke. True, he had the manifest sympathy of the house but he had the house's silence, too, which was even worse than its sympathy. The master frowned, and this completed the disaster. Tom struggled awhile and then retired, utterly defeated. There was a weak attempt at applause, but it died early. "The Boy Stood on the Burning Deck" followed; also "The Assyrian Came Down," and other declamatory gems. Then there were reading exercises, and a spelling fight. The meagre Latin class recited with honor. The prime feature of the evening was in order, now--original "compositions" by the young ladies. Each in her turn stepped forward to the edge of the platform, cleared her throat, held up her manuscript (tied with dainty ribbon), and proceeded to read, with labored attention to "expression" and punctuation. The themes were the same that had been illuminated upon similar occasions by their mothers before them, their grandmothers, and doubtless all their ancestors in the female line clear back to the Crusades. "Friendship" was one; "Memories of Other Days"; "Religion in History"; "Dream Land"; "The Advantages of Culture"; "Forms of Political Government Compared and Contrasted"; "Melancholy"; "Filial Love"; "Heart Longings," etc., etc. A prevalent feature in these compositions was a nursed and petted melancholy; another was a wasteful and opulent gush of "fine language"; another was a tendency to lug in by the ears particularly prized words and phrases until they were worn entirely out; and a peculiarity that conspicuously marked and marred them was the inveterate and intolerable sermon that wagged its crippled tail at the end of each and every one of them. No matter what the subject might be, a brain-racking effort was made to squirm it into some aspect or other that the moral and religious mind could contemplate with edification. The glaring insincerity of these sermons was not sufficient to compass the banishment of the fashion from the schools, and it is not sufficient to-day; it never will be sufficient while the world stands, perhaps. There is no school in all our land where the young ladies do not feel obliged to close their compositions with a sermon; and you will find that the sermon of the most frivolous and the least religious girl in the school is always the longest and the most relentlessly pious. But enough of this. Homely truth is unpalatable. Let us return to the "Examination." The first composition that was read was one entitled "Is this, then, Life?" Perhaps the reader can endure an extract from it: "In the common walks of life, with what delightful emotions does the youthful mind look forward to some anticipated scene of festivity! Imagination is busy sketching rose-tinted pictures of joy. In fancy, the voluptuous votary of fashion sees herself amid the festive throng, 'the observed of all observers.' Her graceful form, arrayed in snowy robes, is whirling through the mazes of the joyous dance; her eye is brightest, her step is lightest in the gay assembly. "In such delicious fancies time quickly glides by, and the welcome hour arrives for her entrance into the Elysian world, of which she has had such bright dreams. How fairy-like does everything appear to her enchanted vision! Each new scene is more charming than the last. But after a while she finds that beneath this goodly exterior, all is vanity, the flattery which once charmed her soul, now grates harshly upon her ear; the ball-room has lost its charms; and with wasted health and imbittered heart, she turns away with the conviction that earthly pleasures cannot satisfy the longings of the soul!" And so forth and so on. There was a buzz of gratification from time to time during the reading, accompanied by whispered ejaculations of "How sweet!" "How eloquent!" "So true!" etc., and after the thing had closed with a peculiarly afflicting sermon the applause was enthusiastic. Then arose a slim, melancholy girl, whose face had the "interesting" paleness that comes of pills and indigestion, and read a "poem." Two stanzas of it will do: "A MISSOURI MAIDEN'S FAREWELL TO ALABAMA "Alabama, good-bye! I love thee well! But yet for a while do I leave thee now! Sad, yes, sad thoughts of thee my heart doth swell, And burning recollections throng my brow! For I have wandered through thy flowery woods; Have roamed and read near Tallapoosa's stream; Have listened to Tallassee's warring floods, And wooed on Coosa's side Aurora's beam. "Yet shame I not to bear an o'er-full heart, Nor blush to turn behind my tearful eyes; 'Tis from no stranger land I now must part, 'Tis to no strangers left I yield these sighs. Welcome and home were mine within this State, Whose vales I leave--whose spires fade fast from me And cold must be mine eyes, and heart, and tete, When, dear Alabama! they turn cold on thee!" There were very few there who knew what "tete" meant, but the poem was very satisfactory, nevertheless. Next appeared a dark-complexioned, black-eyed, black-haired young lady, who paused an impressive moment, assumed a tragic expression, and began to read in a measured, solemn tone: "A VISION "Dark and tempestuous was night. Around the throne on high not a single star quivered; but the deep intonations of the heavy thunder constantly vibrated upon the ear; whilst the terrific lightning revelled in angry mood through the cloudy chambers of heaven, seeming to scorn the power exerted over its terror by the illustrious Franklin! Even the boisterous winds unanimously came forth from their mystic homes, and blustered about as if to enhance by their aid the wildness of the scene. "At such a time, so dark, so dreary, for human sympathy my very spirit sighed; but instead thereof, "'My dearest friend, my counsellor, my comforter and guide--My joy in grief, my second bliss in joy,' came to my side. She moved like one of those bright beings pictured in the sunny walks of fancy's Eden by the romantic and young, a queen of beauty unadorned save by her own transcendent loveliness. So soft was her step, it failed to make even a sound, and but for the magical thrill imparted by her genial touch, as other unobtrusive beauties, she would have glided away un-perceived--unsought. A strange sadness rested upon her features, like icy tears upon the robe of December, as she pointed to the contending elements without, and bade me contemplate the two beings presented." This nightmare occupied some ten pages of manuscript and wound up with a sermon so destructive of all hope to non-Presbyterians that it took the first prize. This composition was considered to be the very finest effort of the evening. The mayor of the village, in delivering the prize to the author of it, made a warm speech in which he said that it was by far the most "eloquent" thing he had ever listened to, and that Daniel Webster himself might well be proud of it. It may be remarked, in passing, that the number of compositions in which the word "beauteous" was over-fondled, and human experience referred to as "life's page," was up to the usual average. Now the master, mellow almost to the verge of geniality, put his chair aside, turned his back to the audience, and began to draw a map of America on the blackboard, to exercise the geography class upon. But he made a sad business of it with his unsteady hand, and a smothered titter rippled over the house. He knew what the matter was, and set himself to right it. He sponged out lines and remade them; but he only distorted them more than ever, and the tittering was more pronounced. He threw his entire attention upon his work, now, as if determined not to be put down by the mirth. He felt that all eyes were fastened upon him; he imagined he was succeeding, and yet the tittering continued; it even manifestly increased. And well it might. There was a garret above, pierced with a scuttle over his head; and down through this scuttle came a cat, suspended around the haunches by a string; she had a rag tied about her head and jaws to keep her from mewing; as she slowly descended she curved upward and clawed at the string, she swung downward and clawed at the intangible air. The tittering rose higher and higher--the cat was within six inches of the absorbed teacher's head--down, down, a little lower, and she grabbed his wig with her desperate claws, clung to it, and was snatched up into the garret in an instant with her trophy still in her possession! And how the light did blaze abroad from the master's bald pate--for the sign-painter's boy had GILDED it! That broke up the meeting. The boys were avenged. Vacation had come. NOTE:--The pretended "compositions" quoted in this chapter are taken without alteration from a volume entitled "Prose and Poetry, by a Western Lady"--but they are exactly and precisely after the schoolgirl pattern, and hence are much happier than any mere imitations could be. CHAPTER XXII TOM joined the new order of Cadets of Temperance, being attracted by the showy character of their "regalia." He promised to abstain from smoking, chewing, and profanity as long as he remained a member. Now he found out a new thing--namely, that to promise not to do a thing is the surest way in the world to make a body want to go and do that very thing. Tom soon found himself tormented with a desire to drink and swear; the desire grew to be so intense that nothing but the hope of a chance to display himself in his red sash kept him from withdrawing from the order. Fourth of July was coming; but he soon gave that up --gave it up before he had worn his shackles over forty-eight hours--and fixed his hopes upon old Judge Frazer, justice of the peace, who was apparently on his deathbed and would have a big public funeral, since he was so high an official. During three days Tom was deeply concerned about the Judge's condition and hungry for news of it. Sometimes his hopes ran high--so high that he would venture to get out his regalia and practise before the looking-glass. But the Judge had a most discouraging way of fluctuating. At last he was pronounced upon the mend--and then convalescent. Tom was disgusted; and felt a sense of injury, too. He handed in his resignation at once--and that night the Judge suffered a relapse and died. Tom resolved that he would never trust a man like that again. The funeral was a fine thing. The Cadets paraded in a style calculated to kill the late member with envy. Tom was a free boy again, however --there was something in that. He could drink and swear, now--but found to his surprise that he did not want to. The simple fact that he could, took the desire away, and the charm of it. Tom presently wondered to find that his coveted vacation was beginning to hang a little heavily on his hands. He attempted a diary--but nothing happened during three days, and so he abandoned it. The first of all the negro minstrel shows came to town, and made a sensation. Tom and Joe Harper got up a band of performers and were happy for two days. Even the Glorious Fourth was in some sense a failure, for it rained hard, there was no procession in consequence, and the greatest man in the world (as Tom supposed), Mr. Benton, an actual United States Senator, proved an overwhelming disappointment--for he was not twenty-five feet high, nor even anywhere in the neighborhood of it. A circus came. The boys played circus for three days afterward in tents made of rag carpeting--admission, three pins for boys, two for girls--and then circusing was abandoned. A phrenologist and a mesmerizer came--and went again and left the village duller and drearier than ever. There were some boys-and-girls' parties, but they were so few and so delightful that they only made the aching voids between ache the harder. Becky Thatcher was gone to her Constantinople home to stay with her parents during vacation--so there was no bright side to life anywhere. The dreadful secret of the murder was a chronic misery. It was a very cancer for permanency and pain. Then came the measles. During two long weeks Tom lay a prisoner, dead to the world and its happenings. He was very ill, he was interested in nothing. When he got upon his feet at last and moved feebly down-town, a melancholy change had come over everything and every creature. There had been a "revival," and everybody had "got religion," not only the adults, but even the boys and girls. Tom went about, hoping against hope for the sight of one blessed sinful face, but disappointment crossed him everywhere. He found Joe Harper studying a Testament, and turned sadly away from the depressing spectacle. He sought Ben Rogers, and found him visiting the poor with a basket of tracts. He hunted up Jim Hollis, who called his attention to the precious blessing of his late measles as a warning. Every boy he encountered added another ton to his depression; and when, in desperation, he flew for refuge at last to the bosom of Huckleberry Finn and was received with a Scriptural quotation, his heart broke and he crept home and to bed realizing that he alone of all the town was lost, forever and forever. And that night there came on a terrific storm, with driving rain, awful claps of thunder and blinding sheets of lightning. He covered his head with the bedclothes and waited in a horror of suspense for his doom; for he had not the shadow of a doubt that all this hubbub was about him. He believed he had taxed the forbearance of the powers above to the extremity of endurance and that this was the result. It might have seemed to him a waste of pomp and ammunition to kill a bug with a battery of artillery, but there seemed nothing incongruous about the getting up such an expensive thunderstorm as this to knock the turf from under an insect like himself. By and by the tempest spent itself and died without accomplishing its object. The boy's first impulse was to be grateful, and reform. His second was to wait--for there might not be any more storms. The next day the doctors were back; Tom had relapsed. The three weeks he spent on his back this time seemed an entire age. When he got abroad at last he was hardly grateful that he had been spared, remembering how lonely was his estate, how companionless and forlorn he was. He drifted listlessly down the street and found Jim Hollis acting as judge in a juvenile court that was trying a cat for murder, in the presence of her victim, a bird. He found Joe Harper and Huck Finn up an alley eating a stolen melon. Poor lads! they--like Tom--had suffered a relapse. CHAPTER XXIII AT last the sleepy atmosphere was stirred--and vigorously: the murder trial came on in the court. It became the absorbing topic of village talk immediately. Tom could not get away from it. Every reference to the murder sent a shudder to his heart, for his troubled conscience and fears almost persuaded him that these remarks were put forth in his hearing as "feelers"; he did not see how he could be suspected of knowing anything about the murder, but still he could not be comfortable in the midst of this gossip. It kept him in a cold shiver all the time. He took Huck to a lonely place to have a talk with him. It would be some relief to unseal his tongue for a little while; to divide his burden of distress with another sufferer. Moreover, he wanted to assure himself that Huck had remained discreet. "Huck, have you ever told anybody about--that?" "'Bout what?" "You know what." "Oh--'course I haven't." "Never a word?" "Never a solitary word, so help me. What makes you ask?" "Well, I was afeard." "Why, Tom Sawyer, we wouldn't be alive two days if that got found out. YOU know that." Tom felt more comfortable. After a pause: "Huck, they couldn't anybody get you to tell, could they?" "Get me to tell? Why, if I wanted that half-breed devil to drownd me they could get me to tell. They ain't no different way." "Well, that's all right, then. I reckon we're safe as long as we keep mum. But let's swear again, anyway. It's more surer." "I'm agreed." So they swore again with dread solemnities. "What is the talk around, Huck? I've heard a power of it." "Talk? Well, it's just Muff Potter, Muff Potter, Muff Potter all the time. It keeps me in a sweat, constant, so's I want to hide som'ers." "That's just the same way they go on round me. I reckon he's a goner. Don't you feel sorry for him, sometimes?" "Most always--most always. He ain't no account; but then he hain't ever done anything to hurt anybody. Just fishes a little, to get money to get drunk on--and loafs around considerable; but lord, we all do that--leastways most of us--preachers and such like. But he's kind of good--he give me half a fish, once, when there warn't enough for two; and lots of times he's kind of stood by me when I was out of luck." "Well, he's mended kites for me, Huck, and knitted hooks on to my line. I wish we could get him out of there." "My! we couldn't get him out, Tom. And besides, 'twouldn't do any good; they'd ketch him again." "Yes--so they would. But I hate to hear 'em abuse him so like the dickens when he never done--that." "I do too, Tom. Lord, I hear 'em say he's the bloodiest looking villain in this country, and they wonder he wasn't ever hung before." "Yes, they talk like that, all the time. I've heard 'em say that if he was to get free they'd lynch him." "And they'd do it, too." The boys had a long talk, but it brought them little comfort. As the twilight drew on, they found themselves hanging about the neighborhood of the little isolated jail, perhaps with an undefined hope that something would happen that might clear away their difficulties. But nothing happened; there seemed to be no angels or fairies interested in this luckless captive. The boys did as they had often done before--went to the cell grating and gave Potter some tobacco and matches. He was on the ground floor and there were no guards. His gratitude for their gifts had always smote their consciences before--it cut deeper than ever, this time. They felt cowardly and treacherous to the last degree when Potter said: "You've been mighty good to me, boys--better'n anybody else in this town. And I don't forget it, I don't. Often I says to myself, says I, 'I used to mend all the boys' kites and things, and show 'em where the good fishin' places was, and befriend 'em what I could, and now they've all forgot old Muff when he's in trouble; but Tom don't, and Huck don't--THEY don't forget him, says I, 'and I don't forget them.' Well, boys, I done an awful thing--drunk and crazy at the time--that's the only way I account for it--and now I got to swing for it, and it's right. Right, and BEST, too, I reckon--hope so, anyway. Well, we won't talk about that. I don't want to make YOU feel bad; you've befriended me. But what I want to say, is, don't YOU ever get drunk--then you won't ever get here. Stand a litter furder west--so--that's it; it's a prime comfort to see faces that's friendly when a body's in such a muck of trouble, and there don't none come here but yourn. Good friendly faces--good friendly faces. Git up on one another's backs and let me touch 'em. That's it. Shake hands--yourn'll come through the bars, but mine's too big. Little hands, and weak--but they've helped Muff Potter a power, and they'd help him more if they could." Tom went home miserable, and his dreams that night were full of horrors. The next day and the day after, he hung about the court-room, drawn by an almost irresistible impulse to go in, but forcing himself to stay out. Huck was having the same experience. They studiously avoided each other. Each wandered away, from time to time, but the same dismal fascination always brought them back presently. Tom kept his ears open when idlers sauntered out of the court-room, but invariably heard distressing news--the toils were closing more and more relentlessly around poor Potter. At the end of the second day the village talk was to the effect that Injun Joe's evidence stood firm and unshaken, and that there was not the slightest question as to what the jury's verdict would be. Tom was out late, that night, and came to bed through the window. He was in a tremendous state of excitement. It was hours before he got to sleep. All the village flocked to the court-house the next morning, for this was to be the great day. Both sexes were about equally represented in the packed audience. After a long wait the jury filed in and took their places; shortly afterward, Potter, pale and haggard, timid and hopeless, was brought in, with chains upon him, and seated where all the curious eyes could stare at him; no less conspicuous was Injun Joe, stolid as ever. There was another pause, and then the judge arrived and the sheriff proclaimed the opening of the court. The usual whisperings among the lawyers and gathering together of papers followed. These details and accompanying delays worked up an atmosphere of preparation that was as impressive as it was fascinating. Now a witness was called who testified that he found Muff Potter washing in the brook, at an early hour of the morning that the murder was discovered, and that he immediately sneaked away. After some further questioning, counsel for the prosecution said: "Take the witness." The prisoner raised his eyes for a moment, but dropped them again when his own counsel said: "I have no questions to ask him." The next witness proved the finding of the knife near the corpse. Counsel for the prosecution said: "Take the witness." "I have no questions to ask him," Potter's lawyer replied. A third witness swore he had often seen the knife in Potter's possession. "Take the witness." Counsel for Potter declined to question him. The faces of the audience began to betray annoyance. Did this attorney mean to throw away his client's life without an effort? Several witnesses deposed concerning Potter's guilty behavior when brought to the scene of the murder. They were allowed to leave the stand without being cross-questioned. Every detail of the damaging circumstances that occurred in the graveyard upon that morning which all present remembered so well was brought out by credible witnesses, but none of them were cross-examined by Potter's lawyer. The perplexity and dissatisfaction of the house expressed itself in murmurs and provoked a reproof from the bench. Counsel for the prosecution now said: "By the oaths of citizens whose simple word is above suspicion, we have fastened this awful crime, beyond all possibility of question, upon the unhappy prisoner at the bar. We rest our case here." A groan escaped from poor Potter, and he put his face in his hands and rocked his body softly to and fro, while a painful silence reigned in the court-room. Many men were moved, and many women's compassion testified itself in tears. Counsel for the defence rose and said: "Your honor, in our remarks at the opening of this trial, we foreshadowed our purpose to prove that our client did this fearful deed while under the influence of a blind and irresponsible delirium produced by drink. We have changed our mind. We shall not offer that plea." [Then to the clerk:] "Call Thomas Sawyer!" A puzzled amazement awoke in every face in the house, not even excepting Potter's. Every eye fastened itself with wondering interest upon Tom as he rose and took his place upon the stand. The boy looked wild enough, for he was badly scared. The oath was administered. "Thomas Sawyer, where were you on the seventeenth of June, about the hour of midnight?" Tom glanced at Injun Joe's iron face and his tongue failed him. The audience listened breathless, but the words refused to come. After a few moments, however, the boy got a little of his strength back, and managed to put enough of it into his voice to make part of the house hear: "In the graveyard!" "A little bit louder, please. Don't be afraid. You were--" "In the graveyard." A contemptuous smile flitted across Injun Joe's face. "Were you anywhere near Horse Williams' grave?" "Yes, sir." "Speak up--just a trifle louder. How near were you?" "Near as I am to you." "Were you hidden, or not?" "I was hid." "Where?" "Behind the elms that's on the edge of the grave." Injun Joe gave a barely perceptible start. "Any one with you?" "Yes, sir. I went there with--" "Wait--wait a moment. Never mind mentioning your companion's name. We will produce him at the proper time. Did you carry anything there with you." Tom hesitated and looked confused. "Speak out, my boy--don't be diffident. The truth is always respectable. What did you take there?" "Only a--a--dead cat." There was a ripple of mirth, which the court checked. "We will produce the skeleton of that cat. Now, my boy, tell us everything that occurred--tell it in your own way--don't skip anything, and don't be afraid." Tom began--hesitatingly at first, but as he warmed to his subject his words flowed more and more easily; in a little while every sound ceased but his own voice; every eye fixed itself upon him; with parted lips and bated breath the audience hung upon his words, taking no note of time, rapt in the ghastly fascinations of the tale. The strain upon pent emotion reached its climax when the boy said: "--and as the doctor fetched the board around and Muff Potter fell, Injun Joe jumped with the knife and--" Crash! Quick as lightning the half-breed sprang for a window, tore his way through all opposers, and was gone! CHAPTER XXIV TOM was a glittering hero once more--the pet of the old, the envy of the young. His name even went into immortal print, for the village paper magnified him. There were some that believed he would be President, yet, if he escaped hanging. As usual, the fickle, unreasoning world took Muff Potter to its bosom and fondled him as lavishly as it had abused him before. But that sort of conduct is to the world's credit; therefore it is not well to find fault with it. Tom's days were days of splendor and exultation to him, but his nights were seasons of horror. Injun Joe infested all his dreams, and always with doom in his eye. Hardly any temptation could persuade the boy to stir abroad after nightfall. Poor Huck was in the same state of wretchedness and terror, for Tom had told the whole story to the lawyer the night before the great day of the trial, and Huck was sore afraid that his share in the business might leak out, yet, notwithstanding Injun Joe's flight had saved him the suffering of testifying in court. The poor fellow had got the attorney to promise secrecy, but what of that? Since Tom's harassed conscience had managed to drive him to the lawyer's house by night and wring a dread tale from lips that had been sealed with the dismalest and most formidable of oaths, Huck's confidence in the human race was well-nigh obliterated. Daily Muff Potter's gratitude made Tom glad he had spoken; but nightly he wished he had sealed up his tongue. Half the time Tom was afraid Injun Joe would never be captured; the other half he was afraid he would be. He felt sure he never could draw a safe breath again until that man was dead and he had seen the corpse. Rewards had been offered, the country had been scoured, but no Injun Joe was found. One of those omniscient and awe-inspiring marvels, a detective, came up from St. Louis, moused around, shook his head, looked wise, and made that sort of astounding success which members of that craft usually achieve. That is to say, he "found a clew." But you can't hang a "clew" for murder, and so after that detective had got through and gone home, Tom felt just as insecure as he was before. The slow days drifted on, and each left behind it a slightly lightened weight of apprehension. CHAPTER XXV THERE comes a time in every rightly-constructed boy's life when he has a raging desire to go somewhere and dig for hidden treasure. This desire suddenly came upon Tom one day. He sallied out to find Joe Harper, but failed of success. Next he sought Ben Rogers; he had gone fishing. Presently he stumbled upon Huck Finn the Red-Handed. Huck would answer. Tom took him to a private place and opened the matter to him confidentially. Huck was willing. Huck was always willing to take a hand in any enterprise that offered entertainment and required no capital, for he had a troublesome superabundance of that sort of time which is not money. "Where'll we dig?" said Huck. "Oh, most anywhere." "Why, is it hid all around?" "No, indeed it ain't. It's hid in mighty particular places, Huck --sometimes on islands, sometimes in rotten chests under the end of a limb of an old dead tree, just where the shadow falls at midnight; but mostly under the floor in ha'nted houses." "Who hides it?" "Why, robbers, of course--who'd you reckon? Sunday-school sup'rintendents?" "I don't know. If 'twas mine I wouldn't hide it; I'd spend it and have a good time." "So would I. But robbers don't do that way. They always hide it and leave it there." "Don't they come after it any more?" "No, they think they will, but they generally forget the marks, or else they die. Anyway, it lays there a long time and gets rusty; and by and by somebody finds an old yellow paper that tells how to find the marks--a paper that's got to be ciphered over about a week because it's mostly signs and hy'roglyphics." "Hyro--which?" "Hy'roglyphics--pictures and things, you know, that don't seem to mean anything." "Have you got one of them papers, Tom?" "No." "Well then, how you going to find the marks?" "I don't want any marks. They always bury it under a ha'nted house or on an island, or under a dead tree that's got one limb sticking out. Well, we've tried Jackson's Island a little, and we can try it again some time; and there's the old ha'nted house up the Still-House branch, and there's lots of dead-limb trees--dead loads of 'em." "Is it under all of them?" "How you talk! No!" "Then how you going to know which one to go for?" "Go for all of 'em!" "Why, Tom, it'll take all summer." "Well, what of that? Suppose you find a brass pot with a hundred dollars in it, all rusty and gray, or rotten chest full of di'monds. How's that?" Huck's eyes glowed. "That's bully. Plenty bully enough for me. Just you gimme the hundred dollars and I don't want no di'monds." "All right. But I bet you I ain't going to throw off on di'monds. Some of 'em's worth twenty dollars apiece--there ain't any, hardly, but's worth six bits or a dollar." "No! Is that so?" "Cert'nly--anybody'll tell you so. Hain't you ever seen one, Huck?" "Not as I remember." "Oh, kings have slathers of them." "Well, I don' know no kings, Tom." "I reckon you don't. But if you was to go to Europe you'd see a raft of 'em hopping around." "Do they hop?" "Hop?--your granny! No!" "Well, what did you say they did, for?" "Shucks, I only meant you'd SEE 'em--not hopping, of course--what do they want to hop for?--but I mean you'd just see 'em--scattered around, you know, in a kind of a general way. Like that old humpbacked Richard." "Richard? What's his other name?" "He didn't have any other name. Kings don't have any but a given name." "No?" "But they don't." "Well, if they like it, Tom, all right; but I don't want to be a king and have only just a given name, like a nigger. But say--where you going to dig first?" "Well, I don't know. S'pose we tackle that old dead-limb tree on the hill t'other side of Still-House branch?" "I'm agreed." So they got a crippled pick and a shovel, and set out on their three-mile tramp. They arrived hot and panting, and threw themselves down in the shade of a neighboring elm to rest and have a smoke. "I like this," said Tom. "So do I." "Say, Huck, if we find a treasure here, what you going to do with your share?" "Well, I'll have pie and a glass of soda every day, and I'll go to every circus that comes along. I bet I'll have a gay time." "Well, ain't you going to save any of it?" "Save it? What for?" "Why, so as to have something to live on, by and by." "Oh, that ain't any use. Pap would come back to thish-yer town some day and get his claws on it if I didn't hurry up, and I tell you he'd clean it out pretty quick. What you going to do with yourn, Tom?" "I'm going to buy a new drum, and a sure-'nough sword, and a red necktie and a bull pup, and get married." "Married!" "That's it." "Tom, you--why, you ain't in your right mind." "Wait--you'll see." "Well, that's the foolishest thing you could do. Look at pap and my mother. Fight! Why, they used to fight all the time. I remember, mighty well." "That ain't anything. The girl I'm going to marry won't fight." "Tom, I reckon they're all alike. They'll all comb a body. Now you better think 'bout this awhile. I tell you you better. What's the name of the gal?" "It ain't a gal at all--it's a girl." "It's all the same, I reckon; some says gal, some says girl--both's right, like enough. Anyway, what's her name, Tom?" "I'll tell you some time--not now." "All right--that'll do. Only if you get married I'll be more lonesomer than ever." "No you won't. You'll come and live with me. Now stir out of this and we'll go to digging." They worked and sweated for half an hour. No result. They toiled another half-hour. Still no result. Huck said: "Do they always bury it as deep as this?" "Sometimes--not always. Not generally. I reckon we haven't got the right place." So they chose a new spot and began again. The labor dragged a little, but still they made progress. They pegged away in silence for some time. Finally Huck leaned on his shovel, swabbed the beaded drops from his brow with his sleeve, and said: "Where you going to dig next, after we get this one?" "I reckon maybe we'll tackle the old tree that's over yonder on Cardiff Hill back of the widow's." "I reckon that'll be a good one. But won't the widow take it away from us, Tom? It's on her land." "SHE take it away! Maybe she'd like to try it once. Whoever finds one of these hid treasures, it belongs to him. It don't make any difference whose land it's on." That was satisfactory. The work went on. By and by Huck said: "Blame it, we must be in the wrong place again. What do you think?" "It is mighty curious, Huck. I don't understand it. Sometimes witches interfere. I reckon maybe that's what's the trouble now." "Shucks! Witches ain't got no power in the daytime." "Well, that's so. I didn't think of that. Oh, I know what the matter is! What a blamed lot of fools we are! You got to find out where the shadow of the limb falls at midnight, and that's where you dig!" "Then consound it, we've fooled away all this work for nothing. Now hang it all, we got to come back in the night. It's an awful long way. Can you get out?" "I bet I will. We've got to do it to-night, too, because if somebody sees these holes they'll know in a minute what's here and they'll go for it." "Well, I'll come around and maow to-night." "All right. Let's hide the tools in the bushes." The boys were there that night, about the appointed time. They sat in the shadow waiting. It was a lonely place, and an hour made solemn by old traditions. Spirits whispered in the rustling leaves, ghosts lurked in the murky nooks, the deep baying of a hound floated up out of the distance, an owl answered with his sepulchral note. The boys were subdued by these solemnities, and talked little. By and by they judged that twelve had come; they marked where the shadow fell, and began to dig. Their hopes commenced to rise. Their interest grew stronger, and their industry kept pace with it. The hole deepened and still deepened, but every time their hearts jumped to hear the pick strike upon something, they only suffered a new disappointment. It was only a stone or a chunk. At last Tom said: "It ain't any use, Huck, we're wrong again." "Well, but we CAN'T be wrong. We spotted the shadder to a dot." "I know it, but then there's another thing." "What's that?". "Why, we only guessed at the time. Like enough it was too late or too early." Huck dropped his shovel. "That's it," said he. "That's the very trouble. We got to give this one up. We can't ever tell the right time, and besides this kind of thing's too awful, here this time of night with witches and ghosts a-fluttering around so. I feel as if something's behind me all the time; and I'm afeard to turn around, becuz maybe there's others in front a-waiting for a chance. I been creeping all over, ever since I got here." "Well, I've been pretty much so, too, Huck. They most always put in a dead man when they bury a treasure under a tree, to look out for it." "Lordy!" "Yes, they do. I've always heard that." "Tom, I don't like to fool around much where there's dead people. A body's bound to get into trouble with 'em, sure." "I don't like to stir 'em up, either. S'pose this one here was to stick his skull out and say something!" "Don't Tom! It's awful." "Well, it just is. Huck, I don't feel comfortable a bit." "Say, Tom, let's give this place up, and try somewheres else." "All right, I reckon we better." "What'll it be?" Tom considered awhile; and then said: "The ha'nted house. That's it!" "Blame it, I don't like ha'nted houses, Tom. Why, they're a dern sight worse'n dead people. Dead people might talk, maybe, but they don't come sliding around in a shroud, when you ain't noticing, and peep over your shoulder all of a sudden and grit their teeth, the way a ghost does. I couldn't stand such a thing as that, Tom--nobody could." "Yes, but, Huck, ghosts don't travel around only at night. They won't hender us from digging there in the daytime." "Well, that's so. But you know mighty well people don't go about that ha'nted house in the day nor the night." "Well, that's mostly because they don't like to go where a man's been murdered, anyway--but nothing's ever been seen around that house except in the night--just some blue lights slipping by the windows--no regular ghosts." "Well, where you see one of them blue lights flickering around, Tom, you can bet there's a ghost mighty close behind it. It stands to reason. Becuz you know that they don't anybody but ghosts use 'em." "Yes, that's so. But anyway they don't come around in the daytime, so what's the use of our being afeard?" "Well, all right. We'll tackle the ha'nted house if you say so--but I reckon it's taking chances." They had started down the hill by this time. There in the middle of the moonlit valley below them stood the "ha'nted" house, utterly isolated, its fences gone long ago, rank weeds smothering the very doorsteps, the chimney crumbled to ruin, the window-sashes vacant, a corner of the roof caved in. The boys gazed awhile, half expecting to see a blue light flit past a window; then talking in a low tone, as befitted the time and the circumstances, they struck far off to the right, to give the haunted house a wide berth, and took their way homeward through the woods that adorned the rearward side of Cardiff Hill. CHAPTER XXVI ABOUT noon the next day the boys arrived at the dead tree; they had come for their tools. Tom was impatient to go to the haunted house; Huck was measurably so, also--but suddenly said: "Lookyhere, Tom, do you know what day it is?" Tom mentally ran over the days of the week, and then quickly lifted his eyes with a startled look in them-- "My! I never once thought of it, Huck!" "Well, I didn't neither, but all at once it popped onto me that it was Friday." "Blame it, a body can't be too careful, Huck. We might 'a' got into an awful scrape, tackling such a thing on a Friday." "MIGHT! Better say we WOULD! There's some lucky days, maybe, but Friday ain't." "Any fool knows that. I don't reckon YOU was the first that found it out, Huck." "Well, I never said I was, did I? And Friday ain't all, neither. I had a rotten bad dream last night--dreampt about rats." "No! Sure sign of trouble. Did they fight?" "No." "Well, that's good, Huck. When they don't fight it's only a sign that there's trouble around, you know. All we got to do is to look mighty sharp and keep out of it. We'll drop this thing for to-day, and play. Do you know Robin Hood, Huck?" "No. Who's Robin Hood?" "Why, he was one of the greatest men that was ever in England--and the best. He was a robber." "Cracky, I wisht I was. Who did he rob?" "Only sheriffs and bishops and rich people and kings, and such like. But he never bothered the poor. He loved 'em. He always divided up with 'em perfectly square." "Well, he must 'a' been a brick." "I bet you he was, Huck. Oh, he was the noblest man that ever was. They ain't any such men now, I can tell you. He could lick any man in England, with one hand tied behind him; and he could take his yew bow and plug a ten-cent piece every time, a mile and a half." "What's a YEW bow?" "I don't know. It's some kind of a bow, of course. And if he hit that dime only on the edge he would set down and cry--and curse. But we'll play Robin Hood--it's nobby fun. I'll learn you." "I'm agreed." So they played Robin Hood all the afternoon, now and then casting a yearning eye down upon the haunted house and passing a remark about the morrow's prospects and possibilities there. As the sun began to sink into the west they took their way homeward athwart the long shadows of the trees and soon were buried from sight in the forests of Cardiff Hill. On Saturday, shortly after noon, the boys were at the dead tree again. They had a smoke and a chat in the shade, and then dug a little in their last hole, not with great hope, but merely because Tom said there were so many cases where people had given up a treasure after getting down within six inches of it, and then somebody else had come along and turned it up with a single thrust of a shovel. The thing failed this time, however, so the boys shouldered their tools and went away feeling that they had not trifled with fortune, but had fulfilled all the requirements that belong to the business of treasure-hunting. When they reached the haunted house there was something so weird and grisly about the dead silence that reigned there under the baking sun, and something so depressing about the loneliness and desolation of the place, that they were afraid, for a moment, to venture in. Then they crept to the door and took a trembling peep. They saw a weed-grown, floorless room, unplastered, an ancient fireplace, vacant windows, a ruinous staircase; and here, there, and everywhere hung ragged and abandoned cobwebs. They presently entered, softly, with quickened pulses, talking in whispers, ears alert to catch the slightest sound, and muscles tense and ready for instant retreat. In a little while familiarity modified their fears and they gave the place a critical and interested examination, rather admiring their own boldness, and wondering at it, too. Next they wanted to look up-stairs. This was something like cutting off retreat, but they got to daring each other, and of course there could be but one result--they threw their tools into a corner and made the ascent. Up there were the same signs of decay. In one corner they found a closet that promised mystery, but the promise was a fraud--there was nothing in it. Their courage was up now and well in hand. They were about to go down and begin work when-- "Sh!" said Tom. "What is it?" whispered Huck, blanching with fright. "Sh!... There!... Hear it?" "Yes!... Oh, my! Let's run!" "Keep still! Don't you budge! They're coming right toward the door." The boys stretched themselves upon the floor with their eyes to knot-holes in the planking, and lay waiting, in a misery of fear. "They've stopped.... No--coming.... Here they are. Don't whisper another word, Huck. My goodness, I wish I was out of this!" Two men entered. Each boy said to himself: "There's the old deaf and dumb Spaniard that's been about town once or twice lately--never saw t'other man before." "T'other" was a ragged, unkempt creature, with nothing very pleasant in his face. The Spaniard was wrapped in a serape; he had bushy white whiskers; long white hair flowed from under his sombrero, and he wore green goggles. When they came in, "t'other" was talking in a low voice; they sat down on the ground, facing the door, with their backs to the wall, and the speaker continued his remarks. His manner became less guarded and his words more distinct as he proceeded: "No," said he, "I've thought it all over, and I don't like it. It's dangerous." "Dangerous!" grunted the "deaf and dumb" Spaniard--to the vast surprise of the boys. "Milksop!" This voice made the boys gasp and quake. It was Injun Joe's! There was silence for some time. Then Joe said: "What's any more dangerous than that job up yonder--but nothing's come of it." "That's different. Away up the river so, and not another house about. 'Twon't ever be known that we tried, anyway, long as we didn't succeed." "Well, what's more dangerous than coming here in the daytime!--anybody would suspicion us that saw us." "I know that. But there warn't any other place as handy after that fool of a job. I want to quit this shanty. I wanted to yesterday, only it warn't any use trying to stir out of here, with those infernal boys playing over there on the hill right in full view." "Those infernal boys" quaked again under the inspiration of this remark, and thought how lucky it was that they had remembered it was Friday and concluded to wait a day. They wished in their hearts they had waited a year. The two men got out some food and made a luncheon. After a long and thoughtful silence, Injun Joe said: "Look here, lad--you go back up the river where you belong. Wait there till you hear from me. I'll take the chances on dropping into this town just once more, for a look. We'll do that 'dangerous' job after I've spied around a little and think things look well for it. Then for Texas! We'll leg it together!" This was satisfactory. Both men presently fell to yawning, and Injun Joe said: "I'm dead for sleep! It's your turn to watch." He curled down in the weeds and soon began to snore. His comrade stirred him once or twice and he became quiet. Presently the watcher began to nod; his head drooped lower and lower, both men began to snore now. The boys drew a long, grateful breath. Tom whispered: "Now's our chance--come!" Huck said: "I can't--I'd die if they was to wake." Tom urged--Huck held back. At last Tom rose slowly and softly, and started alone. But the first step he made wrung such a hideous creak from the crazy floor that he sank down almost dead with fright. He never made a second attempt. The boys lay there counting the dragging moments till it seemed to them that time must be done and eternity growing gray; and then they were grateful to note that at last the sun was setting. Now one snore ceased. Injun Joe sat up, stared around--smiled grimly upon his comrade, whose head was drooping upon his knees--stirred him up with his foot and said: "Here! YOU'RE a watchman, ain't you! All right, though--nothing's happened." "My! have I been asleep?" "Oh, partly, partly. Nearly time for us to be moving, pard. What'll we do with what little swag we've got left?" "I don't know--leave it here as we've always done, I reckon. No use to take it away till we start south. Six hundred and fifty in silver's something to carry." "Well--all right--it won't matter to come here once more." "No--but I'd say come in the night as we used to do--it's better." "Yes: but look here; it may be a good while before I get the right chance at that job; accidents might happen; 'tain't in such a very good place; we'll just regularly bury it--and bury it deep." "Good idea," said the comrade, who walked across the room, knelt down, raised one of the rearward hearth-stones and took out a bag that jingled pleasantly. He subtracted from it twenty or thirty dollars for himself and as much for Injun Joe, and passed the bag to the latter, who was on his knees in the corner, now, digging with his bowie-knife. The boys forgot all their fears, all their miseries in an instant. With gloating eyes they watched every movement. Luck!--the splendor of it was beyond all imagination! Six hundred dollars was money enough to make half a dozen boys rich! Here was treasure-hunting under the happiest auspices--there would not be any bothersome uncertainty as to where to dig. They nudged each other every moment--eloquent nudges and easily understood, for they simply meant--"Oh, but ain't you glad NOW we're here!" Joe's knife struck upon something. "Hello!" said he. "What is it?" said his comrade. "Half-rotten plank--no, it's a box, I believe. Here--bear a hand and we'll see what it's here for. Never mind, I've broke a hole." He reached his hand in and drew it out-- "Man, it's money!" The two men examined the handful of coins. They were gold. The boys above were as excited as themselves, and as delighted. Joe's comrade said: "We'll make quick work of this. There's an old rusty pick over amongst the weeds in the corner the other side of the fireplace--I saw it a minute ago." He ran and brought the boys' pick and shovel. Injun Joe took the pick, looked it over critically, shook his head, muttered something to himself, and then began to use it. The box was soon unearthed. It was not very large; it was iron bound and had been very strong before the slow years had injured it. The men contemplated the treasure awhile in blissful silence. "Pard, there's thousands of dollars here," said Injun Joe. "'Twas always said that Murrel's gang used to be around here one summer," the stranger observed. "I know it," said Injun Joe; "and this looks like it, I should say." "Now you won't need to do that job." The half-breed frowned. Said he: "You don't know me. Least you don't know all about that thing. 'Tain't robbery altogether--it's REVENGE!" and a wicked light flamed in his eyes. "I'll need your help in it. When it's finished--then Texas. Go home to your Nance and your kids, and stand by till you hear from me." "Well--if you say so; what'll we do with this--bury it again?" "Yes. [Ravishing delight overhead.] NO! by the great Sachem, no! [Profound distress overhead.] I'd nearly forgot. That pick had fresh earth on it! [The boys were sick with terror in a moment.] What business has a pick and a shovel here? What business with fresh earth on them? Who brought them here--and where are they gone? Have you heard anybody?--seen anybody? What! bury it again and leave them to come and see the ground disturbed? Not exactly--not exactly. We'll take it to my den." "Why, of course! Might have thought of that before. You mean Number One?" "No--Number Two--under the cross. The other place is bad--too common." "All right. It's nearly dark enough to start." Injun Joe got up and went about from window to window cautiously peeping out. Presently he said: "Who could have brought those tools here? Do you reckon they can be up-stairs?" The boys' breath forsook them. Injun Joe put his hand on his knife, halted a moment, undecided, and then turned toward the stairway. The boys thought of the closet, but their strength was gone. The steps came creaking up the stairs--the intolerable distress of the situation woke the stricken resolution of the lads--they were about to spring for the closet, when there was a crash of rotten timbers and Injun Joe landed on the ground amid the debris of the ruined stairway. He gathered himself up cursing, and his comrade said: "Now what's the use of all that? If it's anybody, and they're up there, let them STAY there--who cares? If they want to jump down, now, and get into trouble, who objects? It will be dark in fifteen minutes --and then let them follow us if they want to. I'm willing. In my opinion, whoever hove those things in here caught a sight of us and took us for ghosts or devils or something. I'll bet they're running yet." Joe grumbled awhile; then he agreed with his friend that what daylight was left ought to be economized in getting things ready for leaving. Shortly afterward they slipped out of the house in the deepening twilight, and moved toward the river with their precious box. Tom and Huck rose up, weak but vastly relieved, and stared after them through the chinks between the logs of the house. Follow? Not they. They were content to reach ground again without broken necks, and take the townward track over the hill. They did not talk much. They were too much absorbed in hating themselves--hating the ill luck that made them take the spade and the pick there. But for that, Injun Joe never would have suspected. He would have hidden the silver with the gold to wait there till his "revenge" was satisfied, and then he would have had the misfortune to find that money turn up missing. Bitter, bitter luck that the tools were ever brought there! They resolved to keep a lookout for that Spaniard when he should come to town spying out for chances to do his revengeful job, and follow him to "Number Two," wherever that might be. Then a ghastly thought occurred to Tom. "Revenge? What if he means US, Huck!" "Oh, don't!" said Huck, nearly fainting. They talked it all over, and as they entered town they agreed to believe that he might possibly mean somebody else--at least that he might at least mean nobody but Tom, since only Tom had testified. Very, very small comfort it was to Tom to be alone in danger! Company would be a palpable improvement, he thought. CHAPTER XXVII THE adventure of the day mightily tormented Tom's dreams that night. Four times he had his hands on that rich treasure and four times it wasted to nothingness in his fingers as sleep forsook him and wakefulness brought back the hard reality of his misfortune. As he lay in the early morning recalling the incidents of his great adventure, he noticed that they seemed curiously subdued and far away--somewhat as if they had happened in another world, or in a time long gone by. Then it occurred to him that the great adventure itself must be a dream! There was one very strong argument in favor of this idea--namely, that the quantity of coin he had seen was too vast to be real. He had never seen as much as fifty dollars in one mass before, and he was like all boys of his age and station in life, in that he imagined that all references to "hundreds" and "thousands" were mere fanciful forms of speech, and that no such sums really existed in the world. He never had supposed for a moment that so large a sum as a hundred dollars was to be found in actual money in any one's possession. If his notions of hidden treasure had been analyzed, they would have been found to consist of a handful of real dimes and a bushel of vague, splendid, ungraspable dollars. But the incidents of his adventure grew sensibly sharper and clearer under the attrition of thinking them over, and so he presently found himself leaning to the impression that the thing might not have been a dream, after all. This uncertainty must be swept away. He would snatch a hurried breakfast and go and find Huck. Huck was sitting on the gunwale of a flatboat, listlessly dangling his feet in the water and looking very melancholy. Tom concluded to let Huck lead up to the subject. If he did not do it, then the adventure would be proved to have been only a dream. "Hello, Huck!" "Hello, yourself." Silence, for a minute. "Tom, if we'd 'a' left the blame tools at the dead tree, we'd 'a' got the money. Oh, ain't it awful!" "'Tain't a dream, then, 'tain't a dream! Somehow I most wish it was. Dog'd if I don't, Huck." "What ain't a dream?" "Oh, that thing yesterday. I been half thinking it was." "Dream! If them stairs hadn't broke down you'd 'a' seen how much dream it was! I've had dreams enough all night--with that patch-eyed Spanish devil going for me all through 'em--rot him!" "No, not rot him. FIND him! Track the money!" "Tom, we'll never find him. A feller don't have only one chance for such a pile--and that one's lost. I'd feel mighty shaky if I was to see him, anyway." "Well, so'd I; but I'd like to see him, anyway--and track him out--to his Number Two." "Number Two--yes, that's it. I been thinking 'bout that. But I can't make nothing out of it. What do you reckon it is?" "I dono. It's too deep. Say, Huck--maybe it's the number of a house!" "Goody!... No, Tom, that ain't it. If it is, it ain't in this one-horse town. They ain't no numbers here." "Well, that's so. Lemme think a minute. Here--it's the number of a room--in a tavern, you know!" "Oh, that's the trick! They ain't only two taverns. We can find out quick." "You stay here, Huck, till I come." Tom was off at once. He did not care to have Huck's company in public places. He was gone half an hour. He found that in the best tavern, No. 2 had long been occupied by a young lawyer, and was still so occupied. In the less ostentatious house, No. 2 was a mystery. The tavern-keeper's young son said it was kept locked all the time, and he never saw anybody go into it or come out of it except at night; he did not know any particular reason for this state of things; had had some little curiosity, but it was rather feeble; had made the most of the mystery by entertaining himself with the idea that that room was "ha'nted"; had noticed that there was a light in there the night before. "That's what I've found out, Huck. I reckon that's the very No. 2 we're after." "I reckon it is, Tom. Now what you going to do?" "Lemme think." Tom thought a long time. Then he said: "I'll tell you. The back door of that No. 2 is the door that comes out into that little close alley between the tavern and the old rattle trap of a brick store. Now you get hold of all the door-keys you can find, and I'll nip all of auntie's, and the first dark night we'll go there and try 'em. And mind you, keep a lookout for Injun Joe, because he said he was going to drop into town and spy around once more for a chance to get his revenge. If you see him, you just follow him; and if he don't go to that No. 2, that ain't the place." "Lordy, I don't want to foller him by myself!" "Why, it'll be night, sure. He mightn't ever see you--and if he did, maybe he'd never think anything." "Well, if it's pretty dark I reckon I'll track him. I dono--I dono. I'll try." "You bet I'll follow him, if it's dark, Huck. Why, he might 'a' found out he couldn't get his revenge, and be going right after that money." "It's so, Tom, it's so. I'll foller him; I will, by jingoes!" "Now you're TALKING! Don't you ever weaken, Huck, and I won't." CHAPTER XXVIII THAT night Tom and Huck were ready for their adventure. They hung about the neighborhood of the tavern until after nine, one watching the alley at a distance and the other the tavern door. Nobody entered the alley or left it; nobody resembling the Spaniard entered or left the tavern door. The night promised to be a fair one; so Tom went home with the understanding that if a considerable degree of darkness came on, Huck was to come and "maow," whereupon he would slip out and try the keys. But the night remained clear, and Huck closed his watch and retired to bed in an empty sugar hogshead about twelve. Tuesday the boys had the same ill luck. Also Wednesday. But Thursday night promised better. Tom slipped out in good season with his aunt's old tin lantern, and a large towel to blindfold it with. He hid the lantern in Huck's sugar hogshead and the watch began. An hour before midnight the tavern closed up and its lights (the only ones thereabouts) were put out. No Spaniard had been seen. Nobody had entered or left the alley. Everything was auspicious. The blackness of darkness reigned, the perfect stillness was interrupted only by occasional mutterings of distant thunder. Tom got his lantern, lit it in the hogshead, wrapped it closely in the towel, and the two adventurers crept in the gloom toward the tavern. Huck stood sentry and Tom felt his way into the alley. Then there was a season of waiting anxiety that weighed upon Huck's spirits like a mountain. He began to wish he could see a flash from the lantern--it would frighten him, but it would at least tell him that Tom was alive yet. It seemed hours since Tom had disappeared. Surely he must have fainted; maybe he was dead; maybe his heart had burst under terror and excitement. In his uneasiness Huck found himself drawing closer and closer to the alley; fearing all sorts of dreadful things, and momentarily expecting some catastrophe to happen that would take away his breath. There was not much to take away, for he seemed only able to inhale it by thimblefuls, and his heart would soon wear itself out, the way it was beating. Suddenly there was a flash of light and Tom came tearing by him: "Run!" said he; "run, for your life!" He needn't have repeated it; once was enough; Huck was making thirty or forty miles an hour before the repetition was uttered. The boys never stopped till they reached the shed of a deserted slaughter-house at the lower end of the village. Just as they got within its shelter the storm burst and the rain poured down. As soon as Tom got his breath he said: "Huck, it was awful! I tried two of the keys, just as soft as I could; but they seemed to make such a power of racket that I couldn't hardly get my breath I was so scared. They wouldn't turn in the lock, either. Well, without noticing what I was doing, I took hold of the knob, and open comes the door! It warn't locked! I hopped in, and shook off the towel, and, GREAT CAESAR'S GHOST!" "What!--what'd you see, Tom?" "Huck, I most stepped onto Injun Joe's hand!" "No!" "Yes! He was lying there, sound asleep on the floor, with his old patch on his eye and his arms spread out." "Lordy, what did you do? Did he wake up?" "No, never budged. Drunk, I reckon. I just grabbed that towel and started!" "I'd never 'a' thought of the towel, I bet!" "Well, I would. My aunt would make me mighty sick if I lost it." "Say, Tom, did you see that box?" "Huck, I didn't wait to look around. I didn't see the box, I didn't see the cross. I didn't see anything but a bottle and a tin cup on the floor by Injun Joe; yes, I saw two barrels and lots more bottles in the room. Don't you see, now, what's the matter with that ha'nted room?" "How?" "Why, it's ha'nted with whiskey! Maybe ALL the Temperance Taverns have got a ha'nted room, hey, Huck?" "Well, I reckon maybe that's so. Who'd 'a' thought such a thing? But say, Tom, now's a mighty good time to get that box, if Injun Joe's drunk." "It is, that! You try it!" Huck shuddered. "Well, no--I reckon not." "And I reckon not, Huck. Only one bottle alongside of Injun Joe ain't enough. If there'd been three, he'd be drunk enough and I'd do it." There was a long pause for reflection, and then Tom said: "Lookyhere, Huck, less not try that thing any more till we know Injun Joe's not in there. It's too scary. Now, if we watch every night, we'll be dead sure to see him go out, some time or other, and then we'll snatch that box quicker'n lightning." "Well, I'm agreed. I'll watch the whole night long, and I'll do it every night, too, if you'll do the other part of the job." "All right, I will. All you got to do is to trot up Hooper Street a block and maow--and if I'm asleep, you throw some gravel at the window and that'll fetch me." "Agreed, and good as wheat!" "Now, Huck, the storm's over, and I'll go home. It'll begin to be daylight in a couple of hours. You go back and watch that long, will you?" "I said I would, Tom, and I will. I'll ha'nt that tavern every night for a year! I'll sleep all day and I'll stand watch all night." "That's all right. Now, where you going to sleep?" "In Ben Rogers' hayloft. He lets me, and so does his pap's nigger man, Uncle Jake. I tote water for Uncle Jake whenever he wants me to, and any time I ask him he gives me a little something to eat if he can spare it. That's a mighty good nigger, Tom. He likes me, becuz I don't ever act as if I was above him. Sometime I've set right down and eat WITH him. But you needn't tell that. A body's got to do things when he's awful hungry he wouldn't want to do as a steady thing." "Well, if I don't want you in the daytime, I'll let you sleep. I won't come bothering around. Any time you see something's up, in the night, just skip right around and maow." CHAPTER XXIX THE first thing Tom heard on Friday morning was a glad piece of news --Judge Thatcher's family had come back to town the night before. Both Injun Joe and the treasure sunk into secondary importance for a moment, and Becky took the chief place in the boy's interest. He saw her and they had an exhausting good time playing "hi-spy" and "gully-keeper" with a crowd of their school-mates. The day was completed and crowned in a peculiarly satisfactory way: Becky teased her mother to appoint the next day for the long-promised and long-delayed picnic, and she consented. The child's delight was boundless; and Tom's not more moderate. The invitations were sent out before sunset, and straightway the young folks of the village were thrown into a fever of preparation and pleasurable anticipation. Tom's excitement enabled him to keep awake until a pretty late hour, and he had good hopes of hearing Huck's "maow," and of having his treasure to astonish Becky and the picnickers with, next day; but he was disappointed. No signal came that night. Morning came, eventually, and by ten or eleven o'clock a giddy and rollicking company were gathered at Judge Thatcher's, and everything was ready for a start. It was not the custom for elderly people to mar the picnics with their presence. The children were considered safe enough under the wings of a few young ladies of eighteen and a few young gentlemen of twenty-three or thereabouts. The old steam ferryboat was chartered for the occasion; presently the gay throng filed up the main street laden with provision-baskets. Sid was sick and had to miss the fun; Mary remained at home to entertain him. The last thing Mrs. Thatcher said to Becky, was: "You'll not get back till late. Perhaps you'd better stay all night with some of the girls that live near the ferry-landing, child." "Then I'll stay with Susy Harper, mamma." "Very well. And mind and behave yourself and don't be any trouble." Presently, as they tripped along, Tom said to Becky: "Say--I'll tell you what we'll do. 'Stead of going to Joe Harper's we'll climb right up the hill and stop at the Widow Douglas'. She'll have ice-cream! She has it most every day--dead loads of it. And she'll be awful glad to have us." "Oh, that will be fun!" Then Becky reflected a moment and said: "But what will mamma say?" "How'll she ever know?" The girl turned the idea over in her mind, and said reluctantly: "I reckon it's wrong--but--" "But shucks! Your mother won't know, and so what's the harm? All she wants is that you'll be safe; and I bet you she'd 'a' said go there if she'd 'a' thought of it. I know she would!" The Widow Douglas' splendid hospitality was a tempting bait. It and Tom's persuasions presently carried the day. So it was decided to say nothing anybody about the night's programme. Presently it occurred to Tom that maybe Huck might come this very night and give the signal. The thought took a deal of the spirit out of his anticipations. Still he could not bear to give up the fun at Widow Douglas'. And why should he give it up, he reasoned--the signal did not come the night before, so why should it be any more likely to come to-night? The sure fun of the evening outweighed the uncertain treasure; and, boy-like, he determined to yield to the stronger inclination and not allow himself to think of the box of money another time that day. Three miles below town the ferryboat stopped at the mouth of a woody hollow and tied up. The crowd swarmed ashore and soon the forest distances and craggy heights echoed far and near with shoutings and laughter. All the different ways of getting hot and tired were gone through with, and by-and-by the rovers straggled back to camp fortified with responsible appetites, and then the destruction of the good things began. After the feast there was a refreshing season of rest and chat in the shade of spreading oaks. By-and-by somebody shouted: "Who's ready for the cave?" Everybody was. Bundles of candles were procured, and straightway there was a general scamper up the hill. The mouth of the cave was up the hillside--an opening shaped like a letter A. Its massive oaken door stood unbarred. Within was a small chamber, chilly as an ice-house, and walled by Nature with solid limestone that was dewy with a cold sweat. It was romantic and mysterious to stand here in the deep gloom and look out upon the green valley shining in the sun. But the impressiveness of the situation quickly wore off, and the romping began again. The moment a candle was lighted there was a general rush upon the owner of it; a struggle and a gallant defence followed, but the candle was soon knocked down or blown out, and then there was a glad clamor of laughter and a new chase. But all things have an end. By-and-by the procession went filing down the steep descent of the main avenue, the flickering rank of lights dimly revealing the lofty walls of rock almost to their point of junction sixty feet overhead. This main avenue was not more than eight or ten feet wide. Every few steps other lofty and still narrower crevices branched from it on either hand--for McDougal's cave was but a vast labyrinth of crooked aisles that ran into each other and out again and led nowhere. It was said that one might wander days and nights together through its intricate tangle of rifts and chasms, and never find the end of the cave; and that he might go down, and down, and still down, into the earth, and it was just the same--labyrinth under labyrinth, and no end to any of them. No man "knew" the cave. That was an impossible thing. Most of the young men knew a portion of it, and it was not customary to venture much beyond this known portion. Tom Sawyer knew as much of the cave as any one. The procession moved along the main avenue some three-quarters of a mile, and then groups and couples began to slip aside into branch avenues, fly along the dismal corridors, and take each other by surprise at points where the corridors joined again. Parties were able to elude each other for the space of half an hour without going beyond the "known" ground. By-and-by, one group after another came straggling back to the mouth of the cave, panting, hilarious, smeared from head to foot with tallow drippings, daubed with clay, and entirely delighted with the success of the day. Then they were astonished to find that they had been taking no note of time and that night was about at hand. The clanging bell had been calling for half an hour. However, this sort of close to the day's adventures was romantic and therefore satisfactory. When the ferryboat with her wild freight pushed into the stream, nobody cared sixpence for the wasted time but the captain of the craft. Huck was already upon his watch when the ferryboat's lights went glinting past the wharf. He heard no noise on board, for the young people were as subdued and still as people usually are who are nearly tired to death. He wondered what boat it was, and why she did not stop at the wharf--and then he dropped her out of his mind and put his attention upon his business. The night was growing cloudy and dark. Ten o'clock came, and the noise of vehicles ceased, scattered lights began to wink out, all straggling foot-passengers disappeared, the village betook itself to its slumbers and left the small watcher alone with the silence and the ghosts. Eleven o'clock came, and the tavern lights were put out; darkness everywhere, now. Huck waited what seemed a weary long time, but nothing happened. His faith was weakening. Was there any use? Was there really any use? Why not give it up and turn in? A noise fell upon his ear. He was all attention in an instant. The alley door closed softly. He sprang to the corner of the brick store. The next moment two men brushed by him, and one seemed to have something under his arm. It must be that box! So they were going to remove the treasure. Why call Tom now? It would be absurd--the men would get away with the box and never be found again. No, he would stick to their wake and follow them; he would trust to the darkness for security from discovery. So communing with himself, Huck stepped out and glided along behind the men, cat-like, with bare feet, allowing them to keep just far enough ahead not to be invisible. They moved up the river street three blocks, then turned to the left up a cross-street. They went straight ahead, then, until they came to the path that led up Cardiff Hill; this they took. They passed by the old Welshman's house, half-way up the hill, without hesitating, and still climbed upward. Good, thought Huck, they will bury it in the old quarry. But they never stopped at the quarry. They passed on, up the summit. They plunged into the narrow path between the tall sumach bushes, and were at once hidden in the gloom. Huck closed up and shortened his distance, now, for they would never be able to see him. He trotted along awhile; then slackened his pace, fearing he was gaining too fast; moved on a piece, then stopped altogether; listened; no sound; none, save that he seemed to hear the beating of his own heart. The hooting of an owl came over the hill--ominous sound! But no footsteps. Heavens, was everything lost! He was about to spring with winged feet, when a man cleared his throat not four feet from him! Huck's heart shot into his throat, but he swallowed it again; and then he stood there shaking as if a dozen agues had taken charge of him at once, and so weak that he thought he must surely fall to the ground. He knew where he was. He knew he was within five steps of the stile leading into Widow Douglas' grounds. Very well, he thought, let them bury it there; it won't be hard to find. Now there was a voice--a very low voice--Injun Joe's: "Damn her, maybe she's got company--there's lights, late as it is." "I can't see any." This was that stranger's voice--the stranger of the haunted house. A deadly chill went to Huck's heart--this, then, was the "revenge" job! His thought was, to fly. Then he remembered that the Widow Douglas had been kind to him more than once, and maybe these men were going to murder her. He wished he dared venture to warn her; but he knew he didn't dare--they might come and catch him. He thought all this and more in the moment that elapsed between the stranger's remark and Injun Joe's next--which was-- "Because the bush is in your way. Now--this way--now you see, don't you?" "Yes. Well, there IS company there, I reckon. Better give it up." "Give it up, and I just leaving this country forever! Give it up and maybe never have another chance. I tell you again, as I've told you before, I don't care for her swag--you may have it. But her husband was rough on me--many times he was rough on me--and mainly he was the justice of the peace that jugged me for a vagrant. And that ain't all. It ain't a millionth part of it! He had me HORSEWHIPPED!--horsewhipped in front of the jail, like a nigger!--with all the town looking on! HORSEWHIPPED!--do you understand? He took advantage of me and died. But I'll take it out of HER." "Oh, don't kill her! Don't do that!" "Kill? Who said anything about killing? I would kill HIM if he was here; but not her. When you want to get revenge on a woman you don't kill her--bosh! you go for her looks. You slit her nostrils--you notch her ears like a sow!" "By God, that's--" "Keep your opinion to yourself! It will be safest for you. I'll tie her to the bed. If she bleeds to death, is that my fault? I'll not cry, if she does. My friend, you'll help me in this thing--for MY sake --that's why you're here--I mightn't be able alone. If you flinch, I'll kill you. Do you understand that? And if I have to kill you, I'll kill her--and then I reckon nobody'll ever know much about who done this business." "Well, if it's got to be done, let's get at it. The quicker the better--I'm all in a shiver." "Do it NOW? And company there? Look here--I'll get suspicious of you, first thing you know. No--we'll wait till the lights are out--there's no hurry." Huck felt that a silence was going to ensue--a thing still more awful than any amount of murderous talk; so he held his breath and stepped gingerly back; planted his foot carefully and firmly, after balancing, one-legged, in a precarious way and almost toppling over, first on one side and then on the other. He took another step back, with the same elaboration and the same risks; then another and another, and--a twig snapped under his foot! His breath stopped and he listened. There was no sound--the stillness was perfect. His gratitude was measureless. Now he turned in his tracks, between the walls of sumach bushes--turned himself as carefully as if he were a ship--and then stepped quickly but cautiously along. When he emerged at the quarry he felt secure, and so he picked up his nimble heels and flew. Down, down he sped, till he reached the Welshman's. He banged at the door, and presently the heads of the old man and his two stalwart sons were thrust from windows. "What's the row there? Who's banging? What do you want?" "Let me in--quick! I'll tell everything." "Why, who are you?" "Huckleberry Finn--quick, let me in!" "Huckleberry Finn, indeed! It ain't a name to open many doors, I judge! But let him in, lads, and let's see what's the trouble." "Please don't ever tell I told you," were Huck's first words when he got in. "Please don't--I'd be killed, sure--but the widow's been good friends to me sometimes, and I want to tell--I WILL tell if you'll promise you won't ever say it was me." "By George, he HAS got something to tell, or he wouldn't act so!" exclaimed the old man; "out with it and nobody here'll ever tell, lad." Three minutes later the old man and his sons, well armed, were up the hill, and just entering the sumach path on tiptoe, their weapons in their hands. Huck accompanied them no further. He hid behind a great bowlder and fell to listening. There was a lagging, anxious silence, and then all of a sudden there was an explosion of firearms and a cry. Huck waited for no particulars. He sprang away and sped down the hill as fast as his legs could carry him. CHAPTER XXX AS the earliest suspicion of dawn appeared on Sunday morning, Huck came groping up the hill and rapped gently at the old Welshman's door. The inmates were asleep, but it was a sleep that was set on a hair-trigger, on account of the exciting episode of the night. A call came from a window: "Who's there!" Huck's scared voice answered in a low tone: "Please let me in! It's only Huck Finn!" "It's a name that can open this door night or day, lad!--and welcome!" These were strange words to the vagabond boy's ears, and the pleasantest he had ever heard. He could not recollect that the closing word had ever been applied in his case before. The door was quickly unlocked, and he entered. Huck was given a seat and the old man and his brace of tall sons speedily dressed themselves. "Now, my boy, I hope you're good and hungry, because breakfast will be ready as soon as the sun's up, and we'll have a piping hot one, too --make yourself easy about that! I and the boys hoped you'd turn up and stop here last night." "I was awful scared," said Huck, "and I run. I took out when the pistols went off, and I didn't stop for three mile. I've come now becuz I wanted to know about it, you know; and I come before daylight becuz I didn't want to run across them devils, even if they was dead." "Well, poor chap, you do look as if you'd had a hard night of it--but there's a bed here for you when you've had your breakfast. No, they ain't dead, lad--we are sorry enough for that. You see we knew right where to put our hands on them, by your description; so we crept along on tiptoe till we got within fifteen feet of them--dark as a cellar that sumach path was--and just then I found I was going to sneeze. It was the meanest kind of luck! I tried to keep it back, but no use --'twas bound to come, and it did come! I was in the lead with my pistol raised, and when the sneeze started those scoundrels a-rustling to get out of the path, I sung out, 'Fire boys!' and blazed away at the place where the rustling was. So did the boys. But they were off in a jiffy, those villains, and we after them, down through the woods. I judge we never touched them. They fired a shot apiece as they started, but their bullets whizzed by and didn't do us any harm. As soon as we lost the sound of their feet we quit chasing, and went down and stirred up the constables. They got a posse together, and went off to guard the river bank, and as soon as it is light the sheriff and a gang are going to beat up the woods. My boys will be with them presently. I wish we had some sort of description of those rascals--'twould help a good deal. But you couldn't see what they were like, in the dark, lad, I suppose?" "Oh yes; I saw them down-town and follered them." "Splendid! Describe them--describe them, my boy!" "One's the old deaf and dumb Spaniard that's ben around here once or twice, and t'other's a mean-looking, ragged--" "That's enough, lad, we know the men! Happened on them in the woods back of the widow's one day, and they slunk away. Off with you, boys, and tell the sheriff--get your breakfast to-morrow morning!" The Welshman's sons departed at once. As they were leaving the room Huck sprang up and exclaimed: "Oh, please don't tell ANYbody it was me that blowed on them! Oh, please!" "All right if you say it, Huck, but you ought to have the credit of what you did." "Oh no, no! Please don't tell!" When the young men were gone, the old Welshman said: "They won't tell--and I won't. But why don't you want it known?" Huck would not explain, further than to say that he already knew too much about one of those men and would not have the man know that he knew anything against him for the whole world--he would be killed for knowing it, sure. The old man promised secrecy once more, and said: "How did you come to follow these fellows, lad? Were they looking suspicious?" Huck was silent while he framed a duly cautious reply. Then he said: "Well, you see, I'm a kind of a hard lot,--least everybody says so, and I don't see nothing agin it--and sometimes I can't sleep much, on account of thinking about it and sort of trying to strike out a new way of doing. That was the way of it last night. I couldn't sleep, and so I come along up-street 'bout midnight, a-turning it all over, and when I got to that old shackly brick store by the Temperance Tavern, I backed up agin the wall to have another think. Well, just then along comes these two chaps slipping along close by me, with something under their arm, and I reckoned they'd stole it. One was a-smoking, and t'other one wanted a light; so they stopped right before me and the cigars lit up their faces and I see that the big one was the deaf and dumb Spaniard, by his white whiskers and the patch on his eye, and t'other one was a rusty, ragged-looking devil." "Could you see the rags by the light of the cigars?" This staggered Huck for a moment. Then he said: "Well, I don't know--but somehow it seems as if I did." "Then they went on, and you--" "Follered 'em--yes. That was it. I wanted to see what was up--they sneaked along so. I dogged 'em to the widder's stile, and stood in the dark and heard the ragged one beg for the widder, and the Spaniard swear he'd spile her looks just as I told you and your two--" "What! The DEAF AND DUMB man said all that!" Huck had made another terrible mistake! He was trying his best to keep the old man from getting the faintest hint of who the Spaniard might be, and yet his tongue seemed determined to get him into trouble in spite of all he could do. He made several efforts to creep out of his scrape, but the old man's eye was upon him and he made blunder after blunder. Presently the Welshman said: "My boy, don't be afraid of me. I wouldn't hurt a hair of your head for all the world. No--I'd protect you--I'd protect you. This Spaniard is not deaf and dumb; you've let that slip without intending it; you can't cover that up now. You know something about that Spaniard that you want to keep dark. Now trust me--tell me what it is, and trust me --I won't betray you." Huck looked into the old man's honest eyes a moment, then bent over and whispered in his ear: "'Tain't a Spaniard--it's Injun Joe!" The Welshman almost jumped out of his chair. In a moment he said: "It's all plain enough, now. When you talked about notching ears and slitting noses I judged that that was your own embellishment, because white men don't take that sort of revenge. But an Injun! That's a different matter altogether." During breakfast the talk went on, and in the course of it the old man said that the last thing which he and his sons had done, before going to bed, was to get a lantern and examine the stile and its vicinity for marks of blood. They found none, but captured a bulky bundle of-- "Of WHAT?" If the words had been lightning they could not have leaped with a more stunning suddenness from Huck's blanched lips. His eyes were staring wide, now, and his breath suspended--waiting for the answer. The Welshman started--stared in return--three seconds--five seconds--ten --then replied: "Of burglar's tools. Why, what's the MATTER with you?" Huck sank back, panting gently, but deeply, unutterably grateful. The Welshman eyed him gravely, curiously--and presently said: "Yes, burglar's tools. That appears to relieve you a good deal. But what did give you that turn? What were YOU expecting we'd found?" Huck was in a close place--the inquiring eye was upon him--he would have given anything for material for a plausible answer--nothing suggested itself--the inquiring eye was boring deeper and deeper--a senseless reply offered--there was no time to weigh it, so at a venture he uttered it--feebly: "Sunday-school books, maybe." Poor Huck was too distressed to smile, but the old man laughed loud and joyously, shook up the details of his anatomy from head to foot, and ended by saying that such a laugh was money in a-man's pocket, because it cut down the doctor's bill like everything. Then he added: "Poor old chap, you're white and jaded--you ain't well a bit--no wonder you're a little flighty and off your balance. But you'll come out of it. Rest and sleep will fetch you out all right, I hope." Huck was irritated to think he had been such a goose and betrayed such a suspicious excitement, for he had dropped the idea that the parcel brought from the tavern was the treasure, as soon as he had heard the talk at the widow's stile. He had only thought it was not the treasure, however--he had not known that it wasn't--and so the suggestion of a captured bundle was too much for his self-possession. But on the whole he felt glad the little episode had happened, for now he knew beyond all question that that bundle was not THE bundle, and so his mind was at rest and exceedingly comfortable. In fact, everything seemed to be drifting just in the right direction, now; the treasure must be still in No. 2, the men would be captured and jailed that day, and he and Tom could seize the gold that night without any trouble or any fear of interruption. Just as breakfast was completed there was a knock at the door. Huck jumped for a hiding-place, for he had no mind to be connected even remotely with the late event. The Welshman admitted several ladies and gentlemen, among them the Widow Douglas, and noticed that groups of citizens were climbing up the hill--to stare at the stile. So the news had spread. The Welshman had to tell the story of the night to the visitors. The widow's gratitude for her preservation was outspoken. "Don't say a word about it, madam. There's another that you're more beholden to than you are to me and my boys, maybe, but he don't allow me to tell his name. We wouldn't have been there but for him." Of course this excited a curiosity so vast that it almost belittled the main matter--but the Welshman allowed it to eat into the vitals of his visitors, and through them be transmitted to the whole town, for he refused to part with his secret. When all else had been learned, the widow said: "I went to sleep reading in bed and slept straight through all that noise. Why didn't you come and wake me?" "We judged it warn't worth while. Those fellows warn't likely to come again--they hadn't any tools left to work with, and what was the use of waking you up and scaring you to death? My three negro men stood guard at your house all the rest of the night. They've just come back." More visitors came, and the story had to be told and retold for a couple of hours more. There was no Sabbath-school during day-school vacation, but everybody was early at church. The stirring event was well canvassed. News came that not a sign of the two villains had been yet discovered. When the sermon was finished, Judge Thatcher's wife dropped alongside of Mrs. Harper as she moved down the aisle with the crowd and said: "Is my Becky going to sleep all day? I just expected she would be tired to death." "Your Becky?" "Yes," with a startled look--"didn't she stay with you last night?" "Why, no." Mrs. Thatcher turned pale, and sank into a pew, just as Aunt Polly, talking briskly with a friend, passed by. Aunt Polly said: "Good-morning, Mrs. Thatcher. Good-morning, Mrs. Harper. I've got a boy that's turned up missing. I reckon my Tom stayed at your house last night--one of you. And now he's afraid to come to church. I've got to settle with him." Mrs. Thatcher shook her head feebly and turned paler than ever. "He didn't stay with us," said Mrs. Harper, beginning to look uneasy. A marked anxiety came into Aunt Polly's face. "Joe Harper, have you seen my Tom this morning?" "No'm." "When did you see him last?" Joe tried to remember, but was not sure he could say. The people had stopped moving out of church. Whispers passed along, and a boding uneasiness took possession of every countenance. Children were anxiously questioned, and young teachers. They all said they had not noticed whether Tom and Becky were on board the ferryboat on the homeward trip; it was dark; no one thought of inquiring if any one was missing. One young man finally blurted out his fear that they were still in the cave! Mrs. Thatcher swooned away. Aunt Polly fell to crying and wringing her hands. The alarm swept from lip to lip, from group to group, from street to street, and within five minutes the bells were wildly clanging and the whole town was up! The Cardiff Hill episode sank into instant insignificance, the burglars were forgotten, horses were saddled, skiffs were manned, the ferryboat ordered out, and before the horror was half an hour old, two hundred men were pouring down highroad and river toward the cave. All the long afternoon the village seemed empty and dead. Many women visited Aunt Polly and Mrs. Thatcher and tried to comfort them. They cried with them, too, and that was still better than words. All the tedious night the town waited for news; but when the morning dawned at last, all the word that came was, "Send more candles--and send food." Mrs. Thatcher was almost crazed; and Aunt Polly, also. Judge Thatcher sent messages of hope and encouragement from the cave, but they conveyed no real cheer. The old Welshman came home toward daylight, spattered with candle-grease, smeared with clay, and almost worn out. He found Huck still in the bed that had been provided for him, and delirious with fever. The physicians were all at the cave, so the Widow Douglas came and took charge of the patient. She said she would do her best by him, because, whether he was good, bad, or indifferent, he was the Lord's, and nothing that was the Lord's was a thing to be neglected. The Welshman said Huck had good spots in him, and the widow said: "You can depend on it. That's the Lord's mark. He don't leave it off. He never does. Puts it somewhere on every creature that comes from his hands." Early in the forenoon parties of jaded men began to straggle into the village, but the strongest of the citizens continued searching. All the news that could be gained was that remotenesses of the cavern were being ransacked that had never been visited before; that every corner and crevice was going to be thoroughly searched; that wherever one wandered through the maze of passages, lights were to be seen flitting hither and thither in the distance, and shoutings and pistol-shots sent their hollow reverberations to the ear down the sombre aisles. In one place, far from the section usually traversed by tourists, the names "BECKY & TOM" had been found traced upon the rocky wall with candle-smoke, and near at hand a grease-soiled bit of ribbon. Mrs. Thatcher recognized the ribbon and cried over it. She said it was the last relic she should ever have of her child; and that no other memorial of her could ever be so precious, because this one parted latest from the living body before the awful death came. Some said that now and then, in the cave, a far-away speck of light would glimmer, and then a glorious shout would burst forth and a score of men go trooping down the echoing aisle--and then a sickening disappointment always followed; the children were not there; it was only a searcher's light. Three dreadful days and nights dragged their tedious hours along, and the village sank into a hopeless stupor. No one had heart for anything. The accidental discovery, just made, that the proprietor of the Temperance Tavern kept liquor on his premises, scarcely fluttered the public pulse, tremendous as the fact was. In a lucid interval, Huck feebly led up to the subject of taverns, and finally asked--dimly dreading the worst--if anything had been discovered at the Temperance Tavern since he had been ill. "Yes," said the widow. Huck started up in bed, wild-eyed: "What? What was it?" "Liquor!--and the place has been shut up. Lie down, child--what a turn you did give me!" "Only tell me just one thing--only just one--please! Was it Tom Sawyer that found it?" The widow burst into tears. "Hush, hush, child, hush! I've told you before, you must NOT talk. You are very, very sick!" Then nothing but liquor had been found; there would have been a great powwow if it had been the gold. So the treasure was gone forever--gone forever! But what could she be crying about? Curious that she should cry. These thoughts worked their dim way through Huck's mind, and under the weariness they gave him he fell asleep. The widow said to herself: "There--he's asleep, poor wreck. Tom Sawyer find it! Pity but somebody could find Tom Sawyer! Ah, there ain't many left, now, that's got hope enough, or strength enough, either, to go on searching." CHAPTER XXXI NOW to return to Tom and Becky's share in the picnic. They tripped along the murky aisles with the rest of the company, visiting the familiar wonders of the cave--wonders dubbed with rather over-descriptive names, such as "The Drawing-Room," "The Cathedral," "Aladdin's Palace," and so on. Presently the hide-and-seek frolicking began, and Tom and Becky engaged in it with zeal until the exertion began to grow a trifle wearisome; then they wandered down a sinuous avenue holding their candles aloft and reading the tangled web-work of names, dates, post-office addresses, and mottoes with which the rocky walls had been frescoed (in candle-smoke). Still drifting along and talking, they scarcely noticed that they were now in a part of the cave whose walls were not frescoed. They smoked their own names under an overhanging shelf and moved on. Presently they came to a place where a little stream of water, trickling over a ledge and carrying a limestone sediment with it, had, in the slow-dragging ages, formed a laced and ruffled Niagara in gleaming and imperishable stone. Tom squeezed his small body behind it in order to illuminate it for Becky's gratification. He found that it curtained a sort of steep natural stairway which was enclosed between narrow walls, and at once the ambition to be a discoverer seized him. Becky responded to his call, and they made a smoke-mark for future guidance, and started upon their quest. They wound this way and that, far down into the secret depths of the cave, made another mark, and branched off in search of novelties to tell the upper world about. In one place they found a spacious cavern, from whose ceiling depended a multitude of shining stalactites of the length and circumference of a man's leg; they walked all about it, wondering and admiring, and presently left it by one of the numerous passages that opened into it. This shortly brought them to a bewitching spring, whose basin was incrusted with a frostwork of glittering crystals; it was in the midst of a cavern whose walls were supported by many fantastic pillars which had been formed by the joining of great stalactites and stalagmites together, the result of the ceaseless water-drip of centuries. Under the roof vast knots of bats had packed themselves together, thousands in a bunch; the lights disturbed the creatures and they came flocking down by hundreds, squeaking and darting furiously at the candles. Tom knew their ways and the danger of this sort of conduct. He seized Becky's hand and hurried her into the first corridor that offered; and none too soon, for a bat struck Becky's light out with its wing while she was passing out of the cavern. The bats chased the children a good distance; but the fugitives plunged into every new passage that offered, and at last got rid of the perilous things. Tom found a subterranean lake, shortly, which stretched its dim length away until its shape was lost in the shadows. He wanted to explore its borders, but concluded that it would be best to sit down and rest awhile, first. Now, for the first time, the deep stillness of the place laid a clammy hand upon the spirits of the children. Becky said: "Why, I didn't notice, but it seems ever so long since I heard any of the others." "Come to think, Becky, we are away down below them--and I don't know how far away north, or south, or east, or whichever it is. We couldn't hear them here." Becky grew apprehensive. "I wonder how long we've been down here, Tom? We better start back." "Yes, I reckon we better. P'raps we better." "Can you find the way, Tom? It's all a mixed-up crookedness to me." "I reckon I could find it--but then the bats. If they put our candles out it will be an awful fix. Let's try some other way, so as not to go through there." "Well. But I hope we won't get lost. It would be so awful!" and the girl shuddered at the thought of the dreadful possibilities. They started through a corridor, and traversed it in silence a long way, glancing at each new opening, to see if there was anything familiar about the look of it; but they were all strange. Every time Tom made an examination, Becky would watch his face for an encouraging sign, and he would say cheerily: "Oh, it's all right. This ain't the one, but we'll come to it right away!" But he felt less and less hopeful with each failure, and presently began to turn off into diverging avenues at sheer random, in desperate hope of finding the one that was wanted. He still said it was "all right," but there was such a leaden dread at his heart that the words had lost their ring and sounded just as if he had said, "All is lost!" Becky clung to his side in an anguish of fear, and tried hard to keep back the tears, but they would come. At last she said: "Oh, Tom, never mind the bats, let's go back that way! We seem to get worse and worse off all the time." "Listen!" said he. Profound silence; silence so deep that even their breathings were conspicuous in the hush. Tom shouted. The call went echoing down the empty aisles and died out in the distance in a faint sound that resembled a ripple of mocking laughter. "Oh, don't do it again, Tom, it is too horrid," said Becky. "It is horrid, but I better, Becky; they might hear us, you know," and he shouted again. The "might" was even a chillier horror than the ghostly laughter, it so confessed a perishing hope. The children stood still and listened; but there was no result. Tom turned upon the back track at once, and hurried his steps. It was but a little while before a certain indecision in his manner revealed another fearful fact to Becky--he could not find his way back! "Oh, Tom, you didn't make any marks!" "Becky, I was such a fool! Such a fool! I never thought we might want to come back! No--I can't find the way. It's all mixed up." "Tom, Tom, we're lost! we're lost! We never can get out of this awful place! Oh, why DID we ever leave the others!" She sank to the ground and burst into such a frenzy of crying that Tom was appalled with the idea that she might die, or lose her reason. He sat down by her and put his arms around her; she buried her face in his bosom, she clung to him, she poured out her terrors, her unavailing regrets, and the far echoes turned them all to jeering laughter. Tom begged her to pluck up hope again, and she said she could not. He fell to blaming and abusing himself for getting her into this miserable situation; this had a better effect. She said she would try to hope again, she would get up and follow wherever he might lead if only he would not talk like that any more. For he was no more to blame than she, she said. So they moved on again--aimlessly--simply at random--all they could do was to move, keep moving. For a little while, hope made a show of reviving--not with any reason to back it, but only because it is its nature to revive when the spring has not been taken out of it by age and familiarity with failure. By-and-by Tom took Becky's candle and blew it out. This economy meant so much! Words were not needed. Becky understood, and her hope died again. She knew that Tom had a whole candle and three or four pieces in his pockets--yet he must economize. By-and-by, fatigue began to assert its claims; the children tried to pay attention, for it was dreadful to think of sitting down when time was grown to be so precious, moving, in some direction, in any direction, was at least progress and might bear fruit; but to sit down was to invite death and shorten its pursuit. At last Becky's frail limbs refused to carry her farther. She sat down. Tom rested with her, and they talked of home, and the friends there, and the comfortable beds and, above all, the light! Becky cried, and Tom tried to think of some way of comforting her, but all his encouragements were grown threadbare with use, and sounded like sarcasms. Fatigue bore so heavily upon Becky that she drowsed off to sleep. Tom was grateful. He sat looking into her drawn face and saw it grow smooth and natural under the influence of pleasant dreams; and by-and-by a smile dawned and rested there. The peaceful face reflected somewhat of peace and healing into his own spirit, and his thoughts wandered away to bygone times and dreamy memories. While he was deep in his musings, Becky woke up with a breezy little laugh--but it was stricken dead upon her lips, and a groan followed it. "Oh, how COULD I sleep! I wish I never, never had waked! No! No, I don't, Tom! Don't look so! I won't say it again." "I'm glad you've slept, Becky; you'll feel rested, now, and we'll find the way out." "We can try, Tom; but I've seen such a beautiful country in my dream. I reckon we are going there." "Maybe not, maybe not. Cheer up, Becky, and let's go on trying." They rose up and wandered along, hand in hand and hopeless. They tried to estimate how long they had been in the cave, but all they knew was that it seemed days and weeks, and yet it was plain that this could not be, for their candles were not gone yet. A long time after this--they could not tell how long--Tom said they must go softly and listen for dripping water--they must find a spring. They found one presently, and Tom said it was time to rest again. Both were cruelly tired, yet Becky said she thought she could go a little farther. She was surprised to hear Tom dissent. She could not understand it. They sat down, and Tom fastened his candle to the wall in front of them with some clay. Thought was soon busy; nothing was said for some time. Then Becky broke the silence: "Tom, I am so hungry!" Tom took something out of his pocket. "Do you remember this?" said he. Becky almost smiled. "It's our wedding-cake, Tom." "Yes--I wish it was as big as a barrel, for it's all we've got." "I saved it from the picnic for us to dream on, Tom, the way grown-up people do with wedding-cake--but it'll be our--" She dropped the sentence where it was. Tom divided the cake and Becky ate with good appetite, while Tom nibbled at his moiety. There was abundance of cold water to finish the feast with. By-and-by Becky suggested that they move on again. Tom was silent a moment. Then he said: "Becky, can you bear it if I tell you something?" Becky's face paled, but she thought she could. "Well, then, Becky, we must stay here, where there's water to drink. That little piece is our last candle!" Becky gave loose to tears and wailings. Tom did what he could to comfort her, but with little effect. At length Becky said: "Tom!" "Well, Becky?" "They'll miss us and hunt for us!" "Yes, they will! Certainly they will!" "Maybe they're hunting for us now, Tom." "Why, I reckon maybe they are. I hope they are." "When would they miss us, Tom?" "When they get back to the boat, I reckon." "Tom, it might be dark then--would they notice we hadn't come?" "I don't know. But anyway, your mother would miss you as soon as they got home." A frightened look in Becky's face brought Tom to his senses and he saw that he had made a blunder. Becky was not to have gone home that night! The children became silent and thoughtful. In a moment a new burst of grief from Becky showed Tom that the thing in his mind had struck hers also--that the Sabbath morning might be half spent before Mrs. Thatcher discovered that Becky was not at Mrs. Harper's. The children fastened their eyes upon their bit of candle and watched it melt slowly and pitilessly away; saw the half inch of wick stand alone at last; saw the feeble flame rise and fall, climb the thin column of smoke, linger at its top a moment, and then--the horror of utter darkness reigned! How long afterward it was that Becky came to a slow consciousness that she was crying in Tom's arms, neither could tell. All that they knew was, that after what seemed a mighty stretch of time, both awoke out of a dead stupor of sleep and resumed their miseries once more. Tom said it might be Sunday, now--maybe Monday. He tried to get Becky to talk, but her sorrows were too oppressive, all her hopes were gone. Tom said that they must have been missed long ago, and no doubt the search was going on. He would shout and maybe some one would come. He tried it; but in the darkness the distant echoes sounded so hideously that he tried it no more. The hours wasted away, and hunger came to torment the captives again. A portion of Tom's half of the cake was left; they divided and ate it. But they seemed hungrier than before. The poor morsel of food only whetted desire. By-and-by Tom said: "SH! Did you hear that?" Both held their breath and listened. There was a sound like the faintest, far-off shout. Instantly Tom answered it, and leading Becky by the hand, started groping down the corridor in its direction. Presently he listened again; again the sound was heard, and apparently a little nearer. "It's them!" said Tom; "they're coming! Come along, Becky--we're all right now!" The joy of the prisoners was almost overwhelming. Their speed was slow, however, because pitfalls were somewhat common, and had to be guarded against. They shortly came to one and had to stop. It might be three feet deep, it might be a hundred--there was no passing it at any rate. Tom got down on his breast and reached as far down as he could. No bottom. They must stay there and wait until the searchers came. They listened; evidently the distant shoutings were growing more distant! a moment or two more and they had gone altogether. The heart-sinking misery of it! Tom whooped until he was hoarse, but it was of no use. He talked hopefully to Becky; but an age of anxious waiting passed and no sounds came again. The children groped their way back to the spring. The weary time dragged on; they slept again, and awoke famished and woe-stricken. Tom believed it must be Tuesday by this time. Now an idea struck him. There were some side passages near at hand. It would be better to explore some of these than bear the weight of the heavy time in idleness. He took a kite-line from his pocket, tied it to a projection, and he and Becky started, Tom in the lead, unwinding the line as he groped along. At the end of twenty steps the corridor ended in a "jumping-off place." Tom got down on his knees and felt below, and then as far around the corner as he could reach with his hands conveniently; he made an effort to stretch yet a little farther to the right, and at that moment, not twenty yards away, a human hand, holding a candle, appeared from behind a rock! Tom lifted up a glorious shout, and instantly that hand was followed by the body it belonged to--Injun Joe's! Tom was paralyzed; he could not move. He was vastly gratified the next moment, to see the "Spaniard" take to his heels and get himself out of sight. Tom wondered that Joe had not recognized his voice and come over and killed him for testifying in court. But the echoes must have disguised the voice. Without doubt, that was it, he reasoned. Tom's fright weakened every muscle in his body. He said to himself that if he had strength enough to get back to the spring he would stay there, and nothing should tempt him to run the risk of meeting Injun Joe again. He was careful to keep from Becky what it was he had seen. He told her he had only shouted "for luck." But hunger and wretchedness rise superior to fears in the long run. Another tedious wait at the spring and another long sleep brought changes. The children awoke tortured with a raging hunger. Tom believed that it must be Wednesday or Thursday or even Friday or Saturday, now, and that the search had been given over. He proposed to explore another passage. He felt willing to risk Injun Joe and all other terrors. But Becky was very weak. She had sunk into a dreary apathy and would not be roused. She said she would wait, now, where she was, and die--it would not be long. She told Tom to go with the kite-line and explore if he chose; but she implored him to come back every little while and speak to her; and she made him promise that when the awful time came, he would stay by her and hold her hand until all was over. Tom kissed her, with a choking sensation in his throat, and made a show of being confident of finding the searchers or an escape from the cave; then he took the kite-line in his hand and went groping down one of the passages on his hands and knees, distressed with hunger and sick with bodings of coming doom. CHAPTER XXXII TUESDAY afternoon came, and waned to the twilight. The village of St. Petersburg still mourned. The lost children had not been found. Public prayers had been offered up for them, and many and many a private prayer that had the petitioner's whole heart in it; but still no good news came from the cave. The majority of the searchers had given up the quest and gone back to their daily avocations, saying that it was plain the children could never be found. Mrs. Thatcher was very ill, and a great part of the time delirious. People said it was heartbreaking to hear her call her child, and raise her head and listen a whole minute at a time, then lay it wearily down again with a moan. Aunt Polly had drooped into a settled melancholy, and her gray hair had grown almost white. The village went to its rest on Tuesday night, sad and forlorn. Away in the middle of the night a wild peal burst from the village bells, and in a moment the streets were swarming with frantic half-clad people, who shouted, "Turn out! turn out! they're found! they're found!" Tin pans and horns were added to the din, the population massed itself and moved toward the river, met the children coming in an open carriage drawn by shouting citizens, thronged around it, joined its homeward march, and swept magnificently up the main street roaring huzzah after huzzah! The village was illuminated; nobody went to bed again; it was the greatest night the little town had ever seen. During the first half-hour a procession of villagers filed through Judge Thatcher's house, seized the saved ones and kissed them, squeezed Mrs. Thatcher's hand, tried to speak but couldn't--and drifted out raining tears all over the place. Aunt Polly's happiness was complete, and Mrs. Thatcher's nearly so. It would be complete, however, as soon as the messenger dispatched with the great news to the cave should get the word to her husband. Tom lay upon a sofa with an eager auditory about him and told the history of the wonderful adventure, putting in many striking additions to adorn it withal; and closed with a description of how he left Becky and went on an exploring expedition; how he followed two avenues as far as his kite-line would reach; how he followed a third to the fullest stretch of the kite-line, and was about to turn back when he glimpsed a far-off speck that looked like daylight; dropped the line and groped toward it, pushed his head and shoulders through a small hole, and saw the broad Mississippi rolling by! And if it had only happened to be night he would not have seen that speck of daylight and would not have explored that passage any more! He told how he went back for Becky and broke the good news and she told him not to fret her with such stuff, for she was tired, and knew she was going to die, and wanted to. He described how he labored with her and convinced her; and how she almost died for joy when she had groped to where she actually saw the blue speck of daylight; how he pushed his way out at the hole and then helped her out; how they sat there and cried for gladness; how some men came along in a skiff and Tom hailed them and told them their situation and their famished condition; how the men didn't believe the wild tale at first, "because," said they, "you are five miles down the river below the valley the cave is in" --then took them aboard, rowed to a house, gave them supper, made them rest till two or three hours after dark and then brought them home. Before day-dawn, Judge Thatcher and the handful of searchers with him were tracked out, in the cave, by the twine clews they had strung behind them, and informed of the great news. Three days and nights of toil and hunger in the cave were not to be shaken off at once, as Tom and Becky soon discovered. They were bedridden all of Wednesday and Thursday, and seemed to grow more and more tired and worn, all the time. Tom got about, a little, on Thursday, was down-town Friday, and nearly as whole as ever Saturday; but Becky did not leave her room until Sunday, and then she looked as if she had passed through a wasting illness. Tom learned of Huck's sickness and went to see him on Friday, but could not be admitted to the bedroom; neither could he on Saturday or Sunday. He was admitted daily after that, but was warned to keep still about his adventure and introduce no exciting topic. The Widow Douglas stayed by to see that he obeyed. At home Tom learned of the Cardiff Hill event; also that the "ragged man's" body had eventually been found in the river near the ferry-landing; he had been drowned while trying to escape, perhaps. About a fortnight after Tom's rescue from the cave, he started off to visit Huck, who had grown plenty strong enough, now, to hear exciting talk, and Tom had some that would interest him, he thought. Judge Thatcher's house was on Tom's way, and he stopped to see Becky. The Judge and some friends set Tom to talking, and some one asked him ironically if he wouldn't like to go to the cave again. Tom said he thought he wouldn't mind it. The Judge said: "Well, there are others just like you, Tom, I've not the least doubt. But we have taken care of that. Nobody will get lost in that cave any more." "Why?" "Because I had its big door sheathed with boiler iron two weeks ago, and triple-locked--and I've got the keys." Tom turned as white as a sheet. "What's the matter, boy! Here, run, somebody! Fetch a glass of water!" The water was brought and thrown into Tom's face. "Ah, now you're all right. What was the matter with you, Tom?" "Oh, Judge, Injun Joe's in the cave!" CHAPTER XXXIII WITHIN a few minutes the news had spread, and a dozen skiff-loads of men were on their way to McDougal's cave, and the ferryboat, well filled with passengers, soon followed. Tom Sawyer was in the skiff that bore Judge Thatcher. When the cave door was unlocked, a sorrowful sight presented itself in the dim twilight of the place. Injun Joe lay stretched upon the ground, dead, with his face close to the crack of the door, as if his longing eyes had been fixed, to the latest moment, upon the light and the cheer of the free world outside. Tom was touched, for he knew by his own experience how this wretch had suffered. His pity was moved, but nevertheless he felt an abounding sense of relief and security, now, which revealed to him in a degree which he had not fully appreciated before how vast a weight of dread had been lying upon him since the day he lifted his voice against this bloody-minded outcast. Injun Joe's bowie-knife lay close by, its blade broken in two. The great foundation-beam of the door had been chipped and hacked through, with tedious labor; useless labor, too, it was, for the native rock formed a sill outside it, and upon that stubborn material the knife had wrought no effect; the only damage done was to the knife itself. But if there had been no stony obstruction there the labor would have been useless still, for if the beam had been wholly cut away Injun Joe could not have squeezed his body under the door, and he knew it. So he had only hacked that place in order to be doing something--in order to pass the weary time--in order to employ his tortured faculties. Ordinarily one could find half a dozen bits of candle stuck around in the crevices of this vestibule, left there by tourists; but there were none now. The prisoner had searched them out and eaten them. He had also contrived to catch a few bats, and these, also, he had eaten, leaving only their claws. The poor unfortunate had starved to death. In one place, near at hand, a stalagmite had been slowly growing up from the ground for ages, builded by the water-drip from a stalactite overhead. The captive had broken off the stalagmite, and upon the stump had placed a stone, wherein he had scooped a shallow hollow to catch the precious drop that fell once in every three minutes with the dreary regularity of a clock-tick--a dessertspoonful once in four and twenty hours. That drop was falling when the Pyramids were new; when Troy fell; when the foundations of Rome were laid; when Christ was crucified; when the Conqueror created the British empire; when Columbus sailed; when the massacre at Lexington was "news." It is falling now; it will still be falling when all these things shall have sunk down the afternoon of history, and the twilight of tradition, and been swallowed up in the thick night of oblivion. Has everything a purpose and a mission? Did this drop fall patiently during five thousand years to be ready for this flitting human insect's need? and has it another important object to accomplish ten thousand years to come? No matter. It is many and many a year since the hapless half-breed scooped out the stone to catch the priceless drops, but to this day the tourist stares longest at that pathetic stone and that slow-dropping water when he comes to see the wonders of McDougal's cave. Injun Joe's cup stands first in the list of the cavern's marvels; even "Aladdin's Palace" cannot rival it. Injun Joe was buried near the mouth of the cave; and people flocked there in boats and wagons from the towns and from all the farms and hamlets for seven miles around; they brought their children, and all sorts of provisions, and confessed that they had had almost as satisfactory a time at the funeral as they could have had at the hanging. This funeral stopped the further growth of one thing--the petition to the governor for Injun Joe's pardon. The petition had been largely signed; many tearful and eloquent meetings had been held, and a committee of sappy women been appointed to go in deep mourning and wail around the governor, and implore him to be a merciful ass and trample his duty under foot. Injun Joe was believed to have killed five citizens of the village, but what of that? If he had been Satan himself there would have been plenty of weaklings ready to scribble their names to a pardon-petition, and drip a tear on it from their permanently impaired and leaky water-works. The morning after the funeral Tom took Huck to a private place to have an important talk. Huck had learned all about Tom's adventure from the Welshman and the Widow Douglas, by this time, but Tom said he reckoned there was one thing they had not told him; that thing was what he wanted to talk about now. Huck's face saddened. He said: "I know what it is. You got into No. 2 and never found anything but whiskey. Nobody told me it was you; but I just knowed it must 'a' ben you, soon as I heard 'bout that whiskey business; and I knowed you hadn't got the money becuz you'd 'a' got at me some way or other and told me even if you was mum to everybody else. Tom, something's always told me we'd never get holt of that swag." "Why, Huck, I never told on that tavern-keeper. YOU know his tavern was all right the Saturday I went to the picnic. Don't you remember you was to watch there that night?" "Oh yes! Why, it seems 'bout a year ago. It was that very night that I follered Injun Joe to the widder's." "YOU followed him?" "Yes--but you keep mum. I reckon Injun Joe's left friends behind him, and I don't want 'em souring on me and doing me mean tricks. If it hadn't ben for me he'd be down in Texas now, all right." Then Huck told his entire adventure in confidence to Tom, who had only heard of the Welshman's part of it before. "Well," said Huck, presently, coming back to the main question, "whoever nipped the whiskey in No. 2, nipped the money, too, I reckon --anyways it's a goner for us, Tom." "Huck, that money wasn't ever in No. 2!" "What!" Huck searched his comrade's face keenly. "Tom, have you got on the track of that money again?" "Huck, it's in the cave!" Huck's eyes blazed. "Say it again, Tom." "The money's in the cave!" "Tom--honest injun, now--is it fun, or earnest?" "Earnest, Huck--just as earnest as ever I was in my life. Will you go in there with me and help get it out?" "I bet I will! I will if it's where we can blaze our way to it and not get lost." "Huck, we can do that without the least little bit of trouble in the world." "Good as wheat! What makes you think the money's--" "Huck, you just wait till we get in there. If we don't find it I'll agree to give you my drum and every thing I've got in the world. I will, by jings." "All right--it's a whiz. When do you say?" "Right now, if you say it. Are you strong enough?" "Is it far in the cave? I ben on my pins a little, three or four days, now, but I can't walk more'n a mile, Tom--least I don't think I could." "It's about five mile into there the way anybody but me would go, Huck, but there's a mighty short cut that they don't anybody but me know about. Huck, I'll take you right to it in a skiff. I'll float the skiff down there, and I'll pull it back again all by myself. You needn't ever turn your hand over." "Less start right off, Tom." "All right. We want some bread and meat, and our pipes, and a little bag or two, and two or three kite-strings, and some of these new-fangled things they call lucifer matches. I tell you, many's the time I wished I had some when I was in there before." A trifle after noon the boys borrowed a small skiff from a citizen who was absent, and got under way at once. When they were several miles below "Cave Hollow," Tom said: "Now you see this bluff here looks all alike all the way down from the cave hollow--no houses, no wood-yards, bushes all alike. But do you see that white place up yonder where there's been a landslide? Well, that's one of my marks. We'll get ashore, now." They landed. "Now, Huck, where we're a-standing you could touch that hole I got out of with a fishing-pole. See if you can find it." Huck searched all the place about, and found nothing. Tom proudly marched into a thick clump of sumach bushes and said: "Here you are! Look at it, Huck; it's the snuggest hole in this country. You just keep mum about it. All along I've been wanting to be a robber, but I knew I'd got to have a thing like this, and where to run across it was the bother. We've got it now, and we'll keep it quiet, only we'll let Joe Harper and Ben Rogers in--because of course there's got to be a Gang, or else there wouldn't be any style about it. Tom Sawyer's Gang--it sounds splendid, don't it, Huck?" "Well, it just does, Tom. And who'll we rob?" "Oh, most anybody. Waylay people--that's mostly the way." "And kill them?" "No, not always. Hive them in the cave till they raise a ransom." "What's a ransom?" "Money. You make them raise all they can, off'n their friends; and after you've kept them a year, if it ain't raised then you kill them. That's the general way. Only you don't kill the women. You shut up the women, but you don't kill them. They're always beautiful and rich, and awfully scared. You take their watches and things, but you always take your hat off and talk polite. They ain't anybody as polite as robbers --you'll see that in any book. Well, the women get to loving you, and after they've been in the cave a week or two weeks they stop crying and after that you couldn't get them to leave. If you drove them out they'd turn right around and come back. It's so in all the books." "Why, it's real bully, Tom. I believe it's better'n to be a pirate." "Yes, it's better in some ways, because it's close to home and circuses and all that." By this time everything was ready and the boys entered the hole, Tom in the lead. They toiled their way to the farther end of the tunnel, then made their spliced kite-strings fast and moved on. A few steps brought them to the spring, and Tom felt a shudder quiver all through him. He showed Huck the fragment of candle-wick perched on a lump of clay against the wall, and described how he and Becky had watched the flame struggle and expire. The boys began to quiet down to whispers, now, for the stillness and gloom of the place oppressed their spirits. They went on, and presently entered and followed Tom's other corridor until they reached the "jumping-off place." The candles revealed the fact that it was not really a precipice, but only a steep clay hill twenty or thirty feet high. Tom whispered: "Now I'll show you something, Huck." He held his candle aloft and said: "Look as far around the corner as you can. Do you see that? There--on the big rock over yonder--done with candle-smoke." "Tom, it's a CROSS!" "NOW where's your Number Two? 'UNDER THE CROSS,' hey? Right yonder's where I saw Injun Joe poke up his candle, Huck!" Huck stared at the mystic sign awhile, and then said with a shaky voice: "Tom, less git out of here!" "What! and leave the treasure?" "Yes--leave it. Injun Joe's ghost is round about there, certain." "No it ain't, Huck, no it ain't. It would ha'nt the place where he died--away out at the mouth of the cave--five mile from here." "No, Tom, it wouldn't. It would hang round the money. I know the ways of ghosts, and so do you." Tom began to fear that Huck was right. Misgivings gathered in his mind. But presently an idea occurred to him-- "Lookyhere, Huck, what fools we're making of ourselves! Injun Joe's ghost ain't a going to come around where there's a cross!" The point was well taken. It had its effect. "Tom, I didn't think of that. But that's so. It's luck for us, that cross is. I reckon we'll climb down there and have a hunt for that box." Tom went first, cutting rude steps in the clay hill as he descended. Huck followed. Four avenues opened out of the small cavern which the great rock stood in. The boys examined three of them with no result. They found a small recess in the one nearest the base of the rock, with a pallet of blankets spread down in it; also an old suspender, some bacon rind, and the well-gnawed bones of two or three fowls. But there was no money-box. The lads searched and researched this place, but in vain. Tom said: "He said UNDER the cross. Well, this comes nearest to being under the cross. It can't be under the rock itself, because that sets solid on the ground." They searched everywhere once more, and then sat down discouraged. Huck could suggest nothing. By-and-by Tom said: "Lookyhere, Huck, there's footprints and some candle-grease on the clay about one side of this rock, but not on the other sides. Now, what's that for? I bet you the money IS under the rock. I'm going to dig in the clay." "That ain't no bad notion, Tom!" said Huck with animation. Tom's "real Barlow" was out at once, and he had not dug four inches before he struck wood. "Hey, Huck!--you hear that?" Huck began to dig and scratch now. Some boards were soon uncovered and removed. They had concealed a natural chasm which led under the rock. Tom got into this and held his candle as far under the rock as he could, but said he could not see to the end of the rift. He proposed to explore. He stooped and passed under; the narrow way descended gradually. He followed its winding course, first to the right, then to the left, Huck at his heels. Tom turned a short curve, by-and-by, and exclaimed: "My goodness, Huck, lookyhere!" It was the treasure-box, sure enough, occupying a snug little cavern, along with an empty powder-keg, a couple of guns in leather cases, two or three pairs of old moccasins, a leather belt, and some other rubbish well soaked with the water-drip. "Got it at last!" said Huck, ploughing among the tarnished coins with his hand. "My, but we're rich, Tom!" "Huck, I always reckoned we'd get it. It's just too good to believe, but we HAVE got it, sure! Say--let's not fool around here. Let's snake it out. Lemme see if I can lift the box." It weighed about fifty pounds. Tom could lift it, after an awkward fashion, but could not carry it conveniently. "I thought so," he said; "THEY carried it like it was heavy, that day at the ha'nted house. I noticed that. I reckon I was right to think of fetching the little bags along." The money was soon in the bags and the boys took it up to the cross rock. "Now less fetch the guns and things," said Huck. "No, Huck--leave them there. They're just the tricks to have when we go to robbing. We'll keep them there all the time, and we'll hold our orgies there, too. It's an awful snug place for orgies." "What orgies?" "I dono. But robbers always have orgies, and of course we've got to have them, too. Come along, Huck, we've been in here a long time. It's getting late, I reckon. I'm hungry, too. We'll eat and smoke when we get to the skiff." They presently emerged into the clump of sumach bushes, looked warily out, found the coast clear, and were soon lunching and smoking in the skiff. As the sun dipped toward the horizon they pushed out and got under way. Tom skimmed up the shore through the long twilight, chatting cheerily with Huck, and landed shortly after dark. "Now, Huck," said Tom, "we'll hide the money in the loft of the widow's woodshed, and I'll come up in the morning and we'll count it and divide, and then we'll hunt up a place out in the woods for it where it will be safe. Just you lay quiet here and watch the stuff till I run and hook Benny Taylor's little wagon; I won't be gone a minute." He disappeared, and presently returned with the wagon, put the two small sacks into it, threw some old rags on top of them, and started off, dragging his cargo behind him. When the boys reached the Welshman's house, they stopped to rest. Just as they were about to move on, the Welshman stepped out and said: "Hallo, who's that?" "Huck and Tom Sawyer." "Good! Come along with me, boys, you are keeping everybody waiting. Here--hurry up, trot ahead--I'll haul the wagon for you. Why, it's not as light as it might be. Got bricks in it?--or old metal?" "Old metal," said Tom. "I judged so; the boys in this town will take more trouble and fool away more time hunting up six bits' worth of old iron to sell to the foundry than they would to make twice the money at regular work. But that's human nature--hurry along, hurry along!" The boys wanted to know what the hurry was about. "Never mind; you'll see, when we get to the Widow Douglas'." Huck said with some apprehension--for he was long used to being falsely accused: "Mr. Jones, we haven't been doing nothing." The Welshman laughed. "Well, I don't know, Huck, my boy. I don't know about that. Ain't you and the widow good friends?" "Yes. Well, she's ben good friends to me, anyway." "All right, then. What do you want to be afraid for?" This question was not entirely answered in Huck's slow mind before he found himself pushed, along with Tom, into Mrs. Douglas' drawing-room. Mr. Jones left the wagon near the door and followed. The place was grandly lighted, and everybody that was of any consequence in the village was there. The Thatchers were there, the Harpers, the Rogerses, Aunt Polly, Sid, Mary, the minister, the editor, and a great many more, and all dressed in their best. The widow received the boys as heartily as any one could well receive two such looking beings. They were covered with clay and candle-grease. Aunt Polly blushed crimson with humiliation, and frowned and shook her head at Tom. Nobody suffered half as much as the two boys did, however. Mr. Jones said: "Tom wasn't at home, yet, so I gave him up; but I stumbled on him and Huck right at my door, and so I just brought them along in a hurry." "And you did just right," said the widow. "Come with me, boys." She took them to a bedchamber and said: "Now wash and dress yourselves. Here are two new suits of clothes --shirts, socks, everything complete. They're Huck's--no, no thanks, Huck--Mr. Jones bought one and I the other. But they'll fit both of you. Get into them. We'll wait--come down when you are slicked up enough." Then she left. CHAPTER XXXIV HUCK said: "Tom, we can slope, if we can find a rope. The window ain't high from the ground." "Shucks! what do you want to slope for?" "Well, I ain't used to that kind of a crowd. I can't stand it. I ain't going down there, Tom." "Oh, bother! It ain't anything. I don't mind it a bit. I'll take care of you." Sid appeared. "Tom," said he, "auntie has been waiting for you all the afternoon. Mary got your Sunday clothes ready, and everybody's been fretting about you. Say--ain't this grease and clay, on your clothes?" "Now, Mr. Siddy, you jist 'tend to your own business. What's all this blow-out about, anyway?" "It's one of the widow's parties that she's always having. This time it's for the Welshman and his sons, on account of that scrape they helped her out of the other night. And say--I can tell you something, if you want to know." "Well, what?" "Why, old Mr. Jones is going to try to spring something on the people here to-night, but I overheard him tell auntie to-day about it, as a secret, but I reckon it's not much of a secret now. Everybody knows --the widow, too, for all she tries to let on she don't. Mr. Jones was bound Huck should be here--couldn't get along with his grand secret without Huck, you know!" "Secret about what, Sid?" "About Huck tracking the robbers to the widow's. I reckon Mr. Jones was going to make a grand time over his surprise, but I bet you it will drop pretty flat." Sid chuckled in a very contented and satisfied way. "Sid, was it you that told?" "Oh, never mind who it was. SOMEBODY told--that's enough." "Sid, there's only one person in this town mean enough to do that, and that's you. If you had been in Huck's place you'd 'a' sneaked down the hill and never told anybody on the robbers. You can't do any but mean things, and you can't bear to see anybody praised for doing good ones. There--no thanks, as the widow says"--and Tom cuffed Sid's ears and helped him to the door with several kicks. "Now go and tell auntie if you dare--and to-morrow you'll catch it!" Some minutes later the widow's guests were at the supper-table, and a dozen children were propped up at little side-tables in the same room, after the fashion of that country and that day. At the proper time Mr. Jones made his little speech, in which he thanked the widow for the honor she was doing himself and his sons, but said that there was another person whose modesty-- And so forth and so on. He sprung his secret about Huck's share in the adventure in the finest dramatic manner he was master of, but the surprise it occasioned was largely counterfeit and not as clamorous and effusive as it might have been under happier circumstances. However, the widow made a pretty fair show of astonishment, and heaped so many compliments and so much gratitude upon Huck that he almost forgot the nearly intolerable discomfort of his new clothes in the entirely intolerable discomfort of being set up as a target for everybody's gaze and everybody's laudations. The widow said she meant to give Huck a home under her roof and have him educated; and that when she could spare the money she would start him in business in a modest way. Tom's chance was come. He said: "Huck don't need it. Huck's rich." Nothing but a heavy strain upon the good manners of the company kept back the due and proper complimentary laugh at this pleasant joke. But the silence was a little awkward. Tom broke it: "Huck's got money. Maybe you don't believe it, but he's got lots of it. Oh, you needn't smile--I reckon I can show you. You just wait a minute." Tom ran out of doors. The company looked at each other with a perplexed interest--and inquiringly at Huck, who was tongue-tied. "Sid, what ails Tom?" said Aunt Polly. "He--well, there ain't ever any making of that boy out. I never--" Tom entered, struggling with the weight of his sacks, and Aunt Polly did not finish her sentence. Tom poured the mass of yellow coin upon the table and said: "There--what did I tell you? Half of it's Huck's and half of it's mine!" The spectacle took the general breath away. All gazed, nobody spoke for a moment. Then there was a unanimous call for an explanation. Tom said he could furnish it, and he did. The tale was long, but brimful of interest. There was scarcely an interruption from any one to break the charm of its flow. When he had finished, Mr. Jones said: "I thought I had fixed up a little surprise for this occasion, but it don't amount to anything now. This one makes it sing mighty small, I'm willing to allow." The money was counted. The sum amounted to a little over twelve thousand dollars. It was more than any one present had ever seen at one time before, though several persons were there who were worth considerably more than that in property. CHAPTER XXXV THE reader may rest satisfied that Tom's and Huck's windfall made a mighty stir in the poor little village of St. Petersburg. So vast a sum, all in actual cash, seemed next to incredible. It was talked about, gloated over, glorified, until the reason of many of the citizens tottered under the strain of the unhealthy excitement. Every "haunted" house in St. Petersburg and the neighboring villages was dissected, plank by plank, and its foundations dug up and ransacked for hidden treasure--and not by boys, but men--pretty grave, unromantic men, too, some of them. Wherever Tom and Huck appeared they were courted, admired, stared at. The boys were not able to remember that their remarks had possessed weight before; but now their sayings were treasured and repeated; everything they did seemed somehow to be regarded as remarkable; they had evidently lost the power of doing and saying commonplace things; moreover, their past history was raked up and discovered to bear marks of conspicuous originality. The village paper published biographical sketches of the boys. The Widow Douglas put Huck's money out at six per cent., and Judge Thatcher did the same with Tom's at Aunt Polly's request. Each lad had an income, now, that was simply prodigious--a dollar for every week-day in the year and half of the Sundays. It was just what the minister got --no, it was what he was promised--he generally couldn't collect it. A dollar and a quarter a week would board, lodge, and school a boy in those old simple days--and clothe him and wash him, too, for that matter. Judge Thatcher had conceived a great opinion of Tom. He said that no commonplace boy would ever have got his daughter out of the cave. When Becky told her father, in strict confidence, how Tom had taken her whipping at school, the Judge was visibly moved; and when she pleaded grace for the mighty lie which Tom had told in order to shift that whipping from her shoulders to his own, the Judge said with a fine outburst that it was a noble, a generous, a magnanimous lie--a lie that was worthy to hold up its head and march down through history breast to breast with George Washington's lauded Truth about the hatchet! Becky thought her father had never looked so tall and so superb as when he walked the floor and stamped his foot and said that. She went straight off and told Tom about it. Judge Thatcher hoped to see Tom a great lawyer or a great soldier some day. He said he meant to look to it that Tom should be admitted to the National Military Academy and afterward trained in the best law school in the country, in order that he might be ready for either career or both. Huck Finn's wealth and the fact that he was now under the Widow Douglas' protection introduced him into society--no, dragged him into it, hurled him into it--and his sufferings were almost more than he could bear. The widow's servants kept him clean and neat, combed and brushed, and they bedded him nightly in unsympathetic sheets that had not one little spot or stain which he could press to his heart and know for a friend. He had to eat with a knife and fork; he had to use napkin, cup, and plate; he had to learn his book, he had to go to church; he had to talk so properly that speech was become insipid in his mouth; whithersoever he turned, the bars and shackles of civilization shut him in and bound him hand and foot. He bravely bore his miseries three weeks, and then one day turned up missing. For forty-eight hours the widow hunted for him everywhere in great distress. The public were profoundly concerned; they searched high and low, they dragged the river for his body. Early the third morning Tom Sawyer wisely went poking among some old empty hogsheads down behind the abandoned slaughter-house, and in one of them he found the refugee. Huck had slept there; he had just breakfasted upon some stolen odds and ends of food, and was lying off, now, in comfort, with his pipe. He was unkempt, uncombed, and clad in the same old ruin of rags that had made him picturesque in the days when he was free and happy. Tom routed him out, told him the trouble he had been causing, and urged him to go home. Huck's face lost its tranquil content, and took a melancholy cast. He said: "Don't talk about it, Tom. I've tried it, and it don't work; it don't work, Tom. It ain't for me; I ain't used to it. The widder's good to me, and friendly; but I can't stand them ways. She makes me get up just at the same time every morning; she makes me wash, they comb me all to thunder; she won't let me sleep in the woodshed; I got to wear them blamed clothes that just smothers me, Tom; they don't seem to any air git through 'em, somehow; and they're so rotten nice that I can't set down, nor lay down, nor roll around anywher's; I hain't slid on a cellar-door for--well, it 'pears to be years; I got to go to church and sweat and sweat--I hate them ornery sermons! I can't ketch a fly in there, I can't chaw. I got to wear shoes all Sunday. The widder eats by a bell; she goes to bed by a bell; she gits up by a bell--everything's so awful reg'lar a body can't stand it." "Well, everybody does that way, Huck." "Tom, it don't make no difference. I ain't everybody, and I can't STAND it. It's awful to be tied up so. And grub comes too easy--I don't take no interest in vittles, that way. I got to ask to go a-fishing; I got to ask to go in a-swimming--dern'd if I hain't got to ask to do everything. Well, I'd got to talk so nice it wasn't no comfort--I'd got to go up in the attic and rip out awhile, every day, to git a taste in my mouth, or I'd a died, Tom. The widder wouldn't let me smoke; she wouldn't let me yell, she wouldn't let me gape, nor stretch, nor scratch, before folks--" [Then with a spasm of special irritation and injury]--"And dad fetch it, she prayed all the time! I never see such a woman! I HAD to shove, Tom--I just had to. And besides, that school's going to open, and I'd a had to go to it--well, I wouldn't stand THAT, Tom. Looky here, Tom, being rich ain't what it's cracked up to be. It's just worry and worry, and sweat and sweat, and a-wishing you was dead all the time. Now these clothes suits me, and this bar'l suits me, and I ain't ever going to shake 'em any more. Tom, I wouldn't ever got into all this trouble if it hadn't 'a' ben for that money; now you just take my sheer of it along with your'n, and gimme a ten-center sometimes--not many times, becuz I don't give a dern for a thing 'thout it's tollable hard to git--and you go and beg off for me with the widder." "Oh, Huck, you know I can't do that. 'Tain't fair; and besides if you'll try this thing just a while longer you'll come to like it." "Like it! Yes--the way I'd like a hot stove if I was to set on it long enough. No, Tom, I won't be rich, and I won't live in them cussed smothery houses. I like the woods, and the river, and hogsheads, and I'll stick to 'em, too. Blame it all! just as we'd got guns, and a cave, and all just fixed to rob, here this dern foolishness has got to come up and spile it all!" Tom saw his opportunity-- "Lookyhere, Huck, being rich ain't going to keep me back from turning robber." "No! Oh, good-licks; are you in real dead-wood earnest, Tom?" "Just as dead earnest as I'm sitting here. But Huck, we can't let you into the gang if you ain't respectable, you know." Huck's joy was quenched. "Can't let me in, Tom? Didn't you let me go for a pirate?" "Yes, but that's different. A robber is more high-toned than what a pirate is--as a general thing. In most countries they're awful high up in the nobility--dukes and such." "Now, Tom, hain't you always ben friendly to me? You wouldn't shet me out, would you, Tom? You wouldn't do that, now, WOULD you, Tom?" "Huck, I wouldn't want to, and I DON'T want to--but what would people say? Why, they'd say, 'Mph! Tom Sawyer's Gang! pretty low characters in it!' They'd mean you, Huck. You wouldn't like that, and I wouldn't." Huck was silent for some time, engaged in a mental struggle. Finally he said: "Well, I'll go back to the widder for a month and tackle it and see if I can come to stand it, if you'll let me b'long to the gang, Tom." "All right, Huck, it's a whiz! Come along, old chap, and I'll ask the widow to let up on you a little, Huck." "Will you, Tom--now will you? That's good. If she'll let up on some of the roughest things, I'll smoke private and cuss private, and crowd through or bust. When you going to start the gang and turn robbers?" "Oh, right off. We'll get the boys together and have the initiation to-night, maybe." "Have the which?" "Have the initiation." "What's that?" "It's to swear to stand by one another, and never tell the gang's secrets, even if you're chopped all to flinders, and kill anybody and all his family that hurts one of the gang." "That's gay--that's mighty gay, Tom, I tell you." "Well, I bet it is. And all that swearing's got to be done at midnight, in the lonesomest, awfulest place you can find--a ha'nted house is the best, but they're all ripped up now." "Well, midnight's good, anyway, Tom." "Yes, so it is. And you've got to swear on a coffin, and sign it with blood." "Now, that's something LIKE! Why, it's a million times bullier than pirating. I'll stick to the widder till I rot, Tom; and if I git to be a reg'lar ripper of a robber, and everybody talking 'bout it, I reckon she'll be proud she snaked me in out of the wet." CONCLUSION SO endeth this chronicle. It being strictly a history of a BOY, it must stop here; the story could not go much further without becoming the history of a MAN. When one writes a novel about grown people, he knows exactly where to stop--that is, with a marriage; but when he writes of juveniles, he must stop where he best can. Most of the characters that perform in this book still live, and are prosperous and happy. Some day it may seem worth while to take up the story of the younger ones again and see what sort of men and women they turned out to be; therefore it will be wisest not to reveal any of that part of their lives at present. Produced by David Widger. The previous edition was updated by Jose Menendez. THE ADVENTURES OF TOM SAWYER BY MARK TWAIN (Samuel Langhorne Clemens) P R E F A C E MOST of the adventures recorded in this book really occurred; one or two were experiences of my own, the rest those of boys who were schoolmates of mine. Huck Finn is drawn from life; Tom Sawyer also, but not from an individual--he is a combination of the characteristics of three boys whom I knew, and therefore belongs to the composite order of architecture. The odd superstitions touched upon were all prevalent among children and slaves in the West at the period of this story--that is to say, thirty or forty years ago. Although my book is intended mainly for the entertainment of boys and girls, I hope it will not be shunned by men and women on that account, for part of my plan has been to try to pleasantly remind adults of what they once were themselves, and of how they felt and thought and talked, and what queer enterprises they sometimes engaged in. THE AUTHOR. HARTFORD, 1876. T O M S A W Y E R CHAPTER I "TOM!" No answer. "TOM!" No answer. "What's gone with that boy, I wonder? You TOM!" No answer. The old lady pulled her spectacles down and looked over them about the room; then she put them up and looked out under them. She seldom or never looked THROUGH them for so small a thing as a boy; they were her state pair, the pride of her heart, and were built for "style," not service--she could have seen through a pair of stove-lids just as well. She looked perplexed for a moment, and then said, not fiercely, but still loud enough for the furniture to hear: "Well, I lay if I get hold of you I'll--" She did not finish, for by this time she was bending down and punching under the bed with the broom, and so she needed breath to punctuate the punches with. She resurrected nothing but the cat. "I never did see the beat of that boy!" She went to the open door and stood in it and looked out among the tomato vines and "jimpson" weeds that constituted the garden. No Tom. So she lifted up her voice at an angle calculated for distance and shouted: "Y-o-u-u TOM!" There was a slight noise behind her and she turned just in time to seize a small boy by the slack of his roundabout and arrest his flight. "There! I might 'a' thought of that closet. What you been doing in there?" "Nothing." "Nothing! Look at your hands. And look at your mouth. What IS that truck?" "I don't know, aunt." "Well, I know. It's jam--that's what it is. Forty times I've said if you didn't let that jam alone I'd skin you. Hand me that switch." The switch hovered in the air--the peril was desperate-- "My! Look behind you, aunt!" The old lady whirled round, and snatched her skirts out of danger. The lad fled on the instant, scrambled up the high board-fence, and disappeared over it. His aunt Polly stood surprised a moment, and then broke into a gentle laugh. "Hang the boy, can't I never learn anything? Ain't he played me tricks enough like that for me to be looking out for him by this time? But old fools is the biggest fools there is. Can't learn an old dog new tricks, as the saying is. But my goodness, he never plays them alike, two days, and how is a body to know what's coming? He 'pears to know just how long he can torment me before I get my dander up, and he knows if he can make out to put me off for a minute or make me laugh, it's all down again and I can't hit him a lick. I ain't doing my duty by that boy, and that's the Lord's truth, goodness knows. Spare the rod and spile the child, as the Good Book says. I'm a laying up sin and suffering for us both, I know. He's full of the Old Scratch, but laws-a-me! he's my own dead sister's boy, poor thing, and I ain't got the heart to lash him, somehow. Every time I let him off, my conscience does hurt me so, and every time I hit him my old heart most breaks. Well-a-well, man that is born of woman is of few days and full of trouble, as the Scripture says, and I reckon it's so. He'll play hookey this evening, * and [* Southwestern for "afternoon"] I'll just be obleeged to make him work, to-morrow, to punish him. It's mighty hard to make him work Saturdays, when all the boys is having holiday, but he hates work more than he hates anything else, and I've GOT to do some of my duty by him, or I'll be the ruination of the child." Tom did play hookey, and he had a very good time. He got back home barely in season to help Jim, the small colored boy, saw next-day's wood and split the kindlings before supper--at least he was there in time to tell his adventures to Jim while Jim did three-fourths of the work. Tom's younger brother (or rather half-brother) Sid was already through with his part of the work (picking up chips), for he was a quiet boy, and had no adventurous, troublesome ways. While Tom was eating his supper, and stealing sugar as opportunity offered, Aunt Polly asked him questions that were full of guile, and very deep--for she wanted to trap him into damaging revealments. Like many other simple-hearted souls, it was her pet vanity to believe she was endowed with a talent for dark and mysterious diplomacy, and she loved to contemplate her most transparent devices as marvels of low cunning. Said she: "Tom, it was middling warm in school, warn't it?" "Yes'm." "Powerful warm, warn't it?" "Yes'm." "Didn't you want to go in a-swimming, Tom?" A bit of a scare shot through Tom--a touch of uncomfortable suspicion. He searched Aunt Polly's face, but it told him nothing. So he said: "No'm--well, not very much." The old lady reached out her hand and felt Tom's shirt, and said: "But you ain't too warm now, though." And it flattered her to reflect that she had discovered that the shirt was dry without anybody knowing that that was what she had in her mind. But in spite of her, Tom knew where the wind lay, now. So he forestalled what might be the next move: "Some of us pumped on our heads--mine's damp yet. See?" Aunt Polly was vexed to think she had overlooked that bit of circumstantial evidence, and missed a trick. Then she had a new inspiration: "Tom, you didn't have to undo your shirt collar where I sewed it, to pump on your head, did you? Unbutton your jacket!" The trouble vanished out of Tom's face. He opened his jacket. His shirt collar was securely sewed. "Bother! Well, go 'long with you. I'd made sure you'd played hookey and been a-swimming. But I forgive ye, Tom. I reckon you're a kind of a singed cat, as the saying is--better'n you look. THIS time." She was half sorry her sagacity had miscarried, and half glad that Tom had stumbled into obedient conduct for once. But Sidney said: "Well, now, if I didn't think you sewed his collar with white thread, but it's black." "Why, I did sew it with white! Tom!" But Tom did not wait for the rest. As he went out at the door he said: "Siddy, I'll lick you for that." In a safe place Tom examined two large needles which were thrust into the lapels of his jacket, and had thread bound about them--one needle carried white thread and the other black. He said: "She'd never noticed if it hadn't been for Sid. Confound it! sometimes she sews it with white, and sometimes she sews it with black. I wish to geeminy she'd stick to one or t'other--I can't keep the run of 'em. But I bet you I'll lam Sid for that. I'll learn him!" He was not the Model Boy of the village. He knew the model boy very well though--and loathed him. Within two minutes, or even less, he had forgotten all his troubles. Not because his troubles were one whit less heavy and bitter to him than a man's are to a man, but because a new and powerful interest bore them down and drove them out of his mind for the time--just as men's misfortunes are forgotten in the excitement of new enterprises. This new interest was a valued novelty in whistling, which he had just acquired from a negro, and he was suffering to practise it undisturbed. It consisted in a peculiar bird-like turn, a sort of liquid warble, produced by touching the tongue to the roof of the mouth at short intervals in the midst of the music--the reader probably remembers how to do it, if he has ever been a boy. Diligence and attention soon gave him the knack of it, and he strode down the street with his mouth full of harmony and his soul full of gratitude. He felt much as an astronomer feels who has discovered a new planet--no doubt, as far as strong, deep, unalloyed pleasure is concerned, the advantage was with the boy, not the astronomer. The summer evenings were long. It was not dark, yet. Presently Tom checked his whistle. A stranger was before him--a boy a shade larger than himself. A new-comer of any age or either sex was an impressive curiosity in the poor little shabby village of St. Petersburg. This boy was well dressed, too--well dressed on a week-day. This was simply astounding. His cap was a dainty thing, his close-buttoned blue cloth roundabout was new and natty, and so were his pantaloons. He had shoes on--and it was only Friday. He even wore a necktie, a bright bit of ribbon. He had a citified air about him that ate into Tom's vitals. The more Tom stared at the splendid marvel, the higher he turned up his nose at his finery and the shabbier and shabbier his own outfit seemed to him to grow. Neither boy spoke. If one moved, the other moved--but only sidewise, in a circle; they kept face to face and eye to eye all the time. Finally Tom said: "I can lick you!" "I'd like to see you try it." "Well, I can do it." "No you can't, either." "Yes I can." "No you can't." "I can." "You can't." "Can!" "Can't!" An uncomfortable pause. Then Tom said: "What's your name?" "'Tisn't any of your business, maybe." "Well I 'low I'll MAKE it my business." "Well why don't you?" "If you say much, I will." "Much--much--MUCH. There now." "Oh, you think you're mighty smart, DON'T you? I could lick you with one hand tied behind me, if I wanted to." "Well why don't you DO it? You SAY you can do it." "Well I WILL, if you fool with me." "Oh yes--I've seen whole families in the same fix." "Smarty! You think you're SOME, now, DON'T you? Oh, what a hat!" "You can lump that hat if you don't like it. I dare you to knock it off--and anybody that'll take a dare will suck eggs." "You're a liar!" "You're another." "You're a fighting liar and dasn't take it up." "Aw--take a walk!" "Say--if you give me much more of your sass I'll take and bounce a rock off'n your head." "Oh, of COURSE you will." "Well I WILL." "Well why don't you DO it then? What do you keep SAYING you will for? Why don't you DO it? It's because you're afraid." "I AIN'T afraid." "You are." "I ain't." "You are." Another pause, and more eying and sidling around each other. Presently they were shoulder to shoulder. Tom said: "Get away from here!" "Go away yourself!" "I won't." "I won't either." So they stood, each with a foot placed at an angle as a brace, and both shoving with might and main, and glowering at each other with hate. But neither could get an advantage. After struggling till both were hot and flushed, each relaxed his strain with watchful caution, and Tom said: "You're a coward and a pup. I'll tell my big brother on you, and he can thrash you with his little finger, and I'll make him do it, too." "What do I care for your big brother? I've got a brother that's bigger than he is--and what's more, he can throw him over that fence, too." [Both brothers were imaginary.] "That's a lie." "YOUR saying so don't make it so." Tom drew a line in the dust with his big toe, and said: "I dare you to step over that, and I'll lick you till you can't stand up. Anybody that'll take a dare will steal sheep." The new boy stepped over promptly, and said: "Now you said you'd do it, now let's see you do it." "Don't you crowd me now; you better look out." "Well, you SAID you'd do it--why don't you do it?" "By jingo! for two cents I WILL do it." The new boy took two broad coppers out of his pocket and held them out with derision. Tom struck them to the ground. In an instant both boys were rolling and tumbling in the dirt, gripped together like cats; and for the space of a minute they tugged and tore at each other's hair and clothes, punched and scratched each other's nose, and covered themselves with dust and glory. Presently the confusion took form, and through the fog of battle Tom appeared, seated astride the new boy, and pounding him with his fists. "Holler 'nuff!" said he. The boy only struggled to free himself. He was crying--mainly from rage. "Holler 'nuff!"--and the pounding went on. At last the stranger got out a smothered "'Nuff!" and Tom let him up and said: "Now that'll learn you. Better look out who you're fooling with next time." The new boy went off brushing the dust from his clothes, sobbing, snuffling, and occasionally looking back and shaking his head and threatening what he would do to Tom the "next time he caught him out." To which Tom responded with jeers, and started off in high feather, and as soon as his back was turned the new boy snatched up a stone, threw it and hit him between the shoulders and then turned tail and ran like an antelope. Tom chased the traitor home, and thus found out where he lived. He then held a position at the gate for some time, daring the enemy to come outside, but the enemy only made faces at him through the window and declined. At last the enemy's mother appeared, and called Tom a bad, vicious, vulgar child, and ordered him away. So he went away; but he said he "'lowed" to "lay" for that boy. He got home pretty late that night, and when he climbed cautiously in at the window, he uncovered an ambuscade, in the person of his aunt; and when she saw the state his clothes were in her resolution to turn his Saturday holiday into captivity at hard labor became adamantine in its firmness. CHAPTER II SATURDAY morning was come, and all the summer world was bright and fresh, and brimming with life. There was a song in every heart; and if the heart was young the music issued at the lips. There was cheer in every face and a spring in every step. The locust-trees were in bloom and the fragrance of the blossoms filled the air. Cardiff Hill, beyond the village and above it, was green with vegetation and it lay just far enough away to seem a Delectable Land, dreamy, reposeful, and inviting. Tom appeared on the sidewalk with a bucket of whitewash and a long-handled brush. He surveyed the fence, and all gladness left him and a deep melancholy settled down upon his spirit. Thirty yards of board fence nine feet high. Life to him seemed hollow, and existence but a burden. Sighing, he dipped his brush and passed it along the topmost plank; repeated the operation; did it again; compared the insignificant whitewashed streak with the far-reaching continent of unwhitewashed fence, and sat down on a tree-box discouraged. Jim came skipping out at the gate with a tin pail, and singing Buffalo Gals. Bringing water from the town pump had always been hateful work in Tom's eyes, before, but now it did not strike him so. He remembered that there was company at the pump. White, mulatto, and negro boys and girls were always there waiting their turns, resting, trading playthings, quarrelling, fighting, skylarking. And he remembered that although the pump was only a hundred and fifty yards off, Jim never got back with a bucket of water under an hour--and even then somebody generally had to go after him. Tom said: "Say, Jim, I'll fetch the water if you'll whitewash some." Jim shook his head and said: "Can't, Mars Tom. Ole missis, she tole me I got to go an' git dis water an' not stop foolin' roun' wid anybody. She say she spec' Mars Tom gwine to ax me to whitewash, an' so she tole me go 'long an' 'tend to my own business--she 'lowed SHE'D 'tend to de whitewashin'." "Oh, never you mind what she said, Jim. That's the way she always talks. Gimme the bucket--I won't be gone only a a minute. SHE won't ever know." "Oh, I dasn't, Mars Tom. Ole missis she'd take an' tar de head off'n me. 'Deed she would." "SHE! She never licks anybody--whacks 'em over the head with her thimble--and who cares for that, I'd like to know. She talks awful, but talk don't hurt--anyways it don't if she don't cry. Jim, I'll give you a marvel. I'll give you a white alley!" Jim began to waver. "White alley, Jim! And it's a bully taw." "My! Dat's a mighty gay marvel, I tell you! But Mars Tom I's powerful 'fraid ole missis--" "And besides, if you will I'll show you my sore toe." Jim was only human--this attraction was too much for him. He put down his pail, took the white alley, and bent over the toe with absorbing interest while the bandage was being unwound. In another moment he was flying down the street with his pail and a tingling rear, Tom was whitewashing with vigor, and Aunt Polly was retiring from the field with a slipper in her hand and triumph in her eye. But Tom's energy did not last. He began to think of the fun he had planned for this day, and his sorrows multiplied. Soon the free boys would come tripping along on all sorts of delicious expeditions, and they would make a world of fun of him for having to work--the very thought of it burnt him like fire. He got out his worldly wealth and examined it--bits of toys, marbles, and trash; enough to buy an exchange of WORK, maybe, but not half enough to buy so much as half an hour of pure freedom. So he returned his straitened means to his pocket, and gave up the idea of trying to buy the boys. At this dark and hopeless moment an inspiration burst upon him! Nothing less than a great, magnificent inspiration. He took up his brush and went tranquilly to work. Ben Rogers hove in sight presently--the very boy, of all boys, whose ridicule he had been dreading. Ben's gait was the hop-skip-and-jump--proof enough that his heart was light and his anticipations high. He was eating an apple, and giving a long, melodious whoop, at intervals, followed by a deep-toned ding-dong-dong, ding-dong-dong, for he was personating a steamboat. As he drew near, he slackened speed, took the middle of the street, leaned far over to starboard and rounded to ponderously and with laborious pomp and circumstance--for he was personating the Big Missouri, and considered himself to be drawing nine feet of water. He was boat and captain and engine-bells combined, so he had to imagine himself standing on his own hurricane-deck giving the orders and executing them: "Stop her, sir! Ting-a-ling-ling!" The headway ran almost out, and he drew up slowly toward the sidewalk. "Ship up to back! Ting-a-ling-ling!" His arms straightened and stiffened down his sides. "Set her back on the stabboard! Ting-a-ling-ling! Chow! ch-chow-wow! Chow!" His right hand, meantime, describing stately circles--for it was representing a forty-foot wheel. "Let her go back on the labboard! Ting-a-lingling! Chow-ch-chow-chow!" The left hand began to describe circles. "Stop the stabboard! Ting-a-ling-ling! Stop the labboard! Come ahead on the stabboard! Stop her! Let your outside turn over slow! Ting-a-ling-ling! Chow-ow-ow! Get out that head-line! LIVELY now! Come--out with your spring-line--what're you about there! Take a turn round that stump with the bight of it! Stand by that stage, now--let her go! Done with the engines, sir! Ting-a-ling-ling! SH'T! S'H'T! SH'T!" (trying the gauge-cocks). Tom went on whitewashing--paid no attention to the steamboat. Ben stared a moment and then said: "Hi-YI! YOU'RE up a stump, ain't you!" No answer. Tom surveyed his last touch with the eye of an artist, then he gave his brush another gentle sweep and surveyed the result, as before. Ben ranged up alongside of him. Tom's mouth watered for the apple, but he stuck to his work. Ben said: "Hello, old chap, you got to work, hey?" Tom wheeled suddenly and said: "Why, it's you, Ben! I warn't noticing." "Say--I'm going in a-swimming, I am. Don't you wish you could? But of course you'd druther WORK--wouldn't you? Course you would!" Tom contemplated the boy a bit, and said: "What do you call work?" "Why, ain't THAT work?" Tom resumed his whitewashing, and answered carelessly: "Well, maybe it is, and maybe it ain't. All I know, is, it suits Tom Sawyer." "Oh come, now, you don't mean to let on that you LIKE it?" The brush continued to move. "Like it? Well, I don't see why I oughtn't to like it. Does a boy get a chance to whitewash a fence every day?" That put the thing in a new light. Ben stopped nibbling his apple. Tom swept his brush daintily back and forth--stepped back to note the effect--added a touch here and there--criticised the effect again--Ben watching every move and getting more and more interested, more and more absorbed. Presently he said: "Say, Tom, let ME whitewash a little." Tom considered, was about to consent; but he altered his mind: "No--no--I reckon it wouldn't hardly do, Ben. You see, Aunt Polly's awful particular about this fence--right here on the street, you know --but if it was the back fence I wouldn't mind and SHE wouldn't. Yes, she's awful particular about this fence; it's got to be done very careful; I reckon there ain't one boy in a thousand, maybe two thousand, that can do it the way it's got to be done." "No--is that so? Oh come, now--lemme just try. Only just a little--I'd let YOU, if you was me, Tom." "Ben, I'd like to, honest injun; but Aunt Polly--well, Jim wanted to do it, but she wouldn't let him; Sid wanted to do it, and she wouldn't let Sid. Now don't you see how I'm fixed? If you was to tackle this fence and anything was to happen to it--" "Oh, shucks, I'll be just as careful. Now lemme try. Say--I'll give you the core of my apple." "Well, here--No, Ben, now don't. I'm afeard--" "I'll give you ALL of it!" Tom gave up the brush with reluctance in his face, but alacrity in his heart. And while the late steamer Big Missouri worked and sweated in the sun, the retired artist sat on a barrel in the shade close by, dangled his legs, munched his apple, and planned the slaughter of more innocents. There was no lack of material; boys happened along every little while; they came to jeer, but remained to whitewash. By the time Ben was fagged out, Tom had traded the next chance to Billy Fisher for a kite, in good repair; and when he played out, Johnny Miller bought in for a dead rat and a string to swing it with--and so on, and so on, hour after hour. And when the middle of the afternoon came, from being a poor poverty-stricken boy in the morning, Tom was literally rolling in wealth. He had besides the things before mentioned, twelve marbles, part of a jews-harp, a piece of blue bottle-glass to look through, a spool cannon, a key that wouldn't unlock anything, a fragment of chalk, a glass stopper of a decanter, a tin soldier, a couple of tadpoles, six fire-crackers, a kitten with only one eye, a brass doorknob, a dog-collar--but no dog--the handle of a knife, four pieces of orange-peel, and a dilapidated old window sash. He had had a nice, good, idle time all the while--plenty of company --and the fence had three coats of whitewash on it! If he hadn't run out of whitewash he would have bankrupted every boy in the village. Tom said to himself that it was not such a hollow world, after all. He had discovered a great law of human action, without knowing it--namely, that in order to make a man or a boy covet a thing, it is only necessary to make the thing difficult to attain. If he had been a great and wise philosopher, like the writer of this book, he would now have comprehended that Work consists of whatever a body is OBLIGED to do, and that Play consists of whatever a body is not obliged to do. And this would help him to understand why constructing artificial flowers or performing on a tread-mill is work, while rolling ten-pins or climbing Mont Blanc is only amusement. There are wealthy gentlemen in England who drive four-horse passenger-coaches twenty or thirty miles on a daily line, in the summer, because the privilege costs them considerable money; but if they were offered wages for the service, that would turn it into work and then they would resign. The boy mused awhile over the substantial change which had taken place in his worldly circumstances, and then wended toward headquarters to report. CHAPTER III TOM presented himself before Aunt Polly, who was sitting by an open window in a pleasant rearward apartment, which was bedroom, breakfast-room, dining-room, and library, combined. The balmy summer air, the restful quiet, the odor of the flowers, and the drowsing murmur of the bees had had their effect, and she was nodding over her knitting --for she had no company but the cat, and it was asleep in her lap. Her spectacles were propped up on her gray head for safety. She had thought that of course Tom had deserted long ago, and she wondered at seeing him place himself in her power again in this intrepid way. He said: "Mayn't I go and play now, aunt?" "What, a'ready? How much have you done?" "It's all done, aunt." "Tom, don't lie to me--I can't bear it." "I ain't, aunt; it IS all done." Aunt Polly placed small trust in such evidence. She went out to see for herself; and she would have been content to find twenty per cent. of Tom's statement true. When she found the entire fence whitewashed, and not only whitewashed but elaborately coated and recoated, and even a streak added to the ground, her astonishment was almost unspeakable. She said: "Well, I never! There's no getting round it, you can work when you're a mind to, Tom." And then she diluted the compliment by adding, "But it's powerful seldom you're a mind to, I'm bound to say. Well, go 'long and play; but mind you get back some time in a week, or I'll tan you." She was so overcome by the splendor of his achievement that she took him into the closet and selected a choice apple and delivered it to him, along with an improving lecture upon the added value and flavor a treat took to itself when it came without sin through virtuous effort. And while she closed with a happy Scriptural flourish, he "hooked" a doughnut. Then he skipped out, and saw Sid just starting up the outside stairway that led to the back rooms on the second floor. Clods were handy and the air was full of them in a twinkling. They raged around Sid like a hail-storm; and before Aunt Polly could collect her surprised faculties and sally to the rescue, six or seven clods had taken personal effect, and Tom was over the fence and gone. There was a gate, but as a general thing he was too crowded for time to make use of it. His soul was at peace, now that he had settled with Sid for calling attention to his black thread and getting him into trouble. Tom skirted the block, and came round into a muddy alley that led by the back of his aunt's cow-stable. He presently got safely beyond the reach of capture and punishment, and hastened toward the public square of the village, where two "military" companies of boys had met for conflict, according to previous appointment. Tom was General of one of these armies, Joe Harper (a bosom friend) General of the other. These two great commanders did not condescend to fight in person--that being better suited to the still smaller fry--but sat together on an eminence and conducted the field operations by orders delivered through aides-de-camp. Tom's army won a great victory, after a long and hard-fought battle. Then the dead were counted, prisoners exchanged, the terms of the next disagreement agreed upon, and the day for the necessary battle appointed; after which the armies fell into line and marched away, and Tom turned homeward alone. As he was passing by the house where Jeff Thatcher lived, he saw a new girl in the garden--a lovely little blue-eyed creature with yellow hair plaited into two long-tails, white summer frock and embroidered pantalettes. The fresh-crowned hero fell without firing a shot. A certain Amy Lawrence vanished out of his heart and left not even a memory of herself behind. He had thought he loved her to distraction; he had regarded his passion as adoration; and behold it was only a poor little evanescent partiality. He had been months winning her; she had confessed hardly a week ago; he had been the happiest and the proudest boy in the world only seven short days, and here in one instant of time she had gone out of his heart like a casual stranger whose visit is done. He worshipped this new angel with furtive eye, till he saw that she had discovered him; then he pretended he did not know she was present, and began to "show off" in all sorts of absurd boyish ways, in order to win her admiration. He kept up this grotesque foolishness for some time; but by-and-by, while he was in the midst of some dangerous gymnastic performances, he glanced aside and saw that the little girl was wending her way toward the house. Tom came up to the fence and leaned on it, grieving, and hoping she would tarry yet awhile longer. She halted a moment on the steps and then moved toward the door. Tom heaved a great sigh as she put her foot on the threshold. But his face lit up, right away, for she tossed a pansy over the fence a moment before she disappeared. The boy ran around and stopped within a foot or two of the flower, and then shaded his eyes with his hand and began to look down street as if he had discovered something of interest going on in that direction. Presently he picked up a straw and began trying to balance it on his nose, with his head tilted far back; and as he moved from side to side, in his efforts, he edged nearer and nearer toward the pansy; finally his bare foot rested upon it, his pliant toes closed upon it, and he hopped away with the treasure and disappeared round the corner. But only for a minute--only while he could button the flower inside his jacket, next his heart--or next his stomach, possibly, for he was not much posted in anatomy, and not hypercritical, anyway. He returned, now, and hung about the fence till nightfall, "showing off," as before; but the girl never exhibited herself again, though Tom comforted himself a little with the hope that she had been near some window, meantime, and been aware of his attentions. Finally he strode home reluctantly, with his poor head full of visions. All through supper his spirits were so high that his aunt wondered "what had got into the child." He took a good scolding about clodding Sid, and did not seem to mind it in the least. He tried to steal sugar under his aunt's very nose, and got his knuckles rapped for it. He said: "Aunt, you don't whack Sid when he takes it." "Well, Sid don't torment a body the way you do. You'd be always into that sugar if I warn't watching you." Presently she stepped into the kitchen, and Sid, happy in his immunity, reached for the sugar-bowl--a sort of glorying over Tom which was wellnigh unbearable. But Sid's fingers slipped and the bowl dropped and broke. Tom was in ecstasies. In such ecstasies that he even controlled his tongue and was silent. He said to himself that he would not speak a word, even when his aunt came in, but would sit perfectly still till she asked who did the mischief; and then he would tell, and there would be nothing so good in the world as to see that pet model "catch it." He was so brimful of exultation that he could hardly hold himself when the old lady came back and stood above the wreck discharging lightnings of wrath from over her spectacles. He said to himself, "Now it's coming!" And the next instant he was sprawling on the floor! The potent palm was uplifted to strike again when Tom cried out: "Hold on, now, what 'er you belting ME for?--Sid broke it!" Aunt Polly paused, perplexed, and Tom looked for healing pity. But when she got her tongue again, she only said: "Umf! Well, you didn't get a lick amiss, I reckon. You been into some other audacious mischief when I wasn't around, like enough." Then her conscience reproached her, and she yearned to say something kind and loving; but she judged that this would be construed into a confession that she had been in the wrong, and discipline forbade that. So she kept silence, and went about her affairs with a troubled heart. Tom sulked in a corner and exalted his woes. He knew that in her heart his aunt was on her knees to him, and he was morosely gratified by the consciousness of it. He would hang out no signals, he would take notice of none. He knew that a yearning glance fell upon him, now and then, through a film of tears, but he refused recognition of it. He pictured himself lying sick unto death and his aunt bending over him beseeching one little forgiving word, but he would turn his face to the wall, and die with that word unsaid. Ah, how would she feel then? And he pictured himself brought home from the river, dead, with his curls all wet, and his sore heart at rest. How she would throw herself upon him, and how her tears would fall like rain, and her lips pray God to give her back her boy and she would never, never abuse him any more! But he would lie there cold and white and make no sign--a poor little sufferer, whose griefs were at an end. He so worked upon his feelings with the pathos of these dreams, that he had to keep swallowing, he was so like to choke; and his eyes swam in a blur of water, which overflowed when he winked, and ran down and trickled from the end of his nose. And such a luxury to him was this petting of his sorrows, that he could not bear to have any worldly cheeriness or any grating delight intrude upon it; it was too sacred for such contact; and so, presently, when his cousin Mary danced in, all alive with the joy of seeing home again after an age-long visit of one week to the country, he got up and moved in clouds and darkness out at one door as she brought song and sunshine in at the other. He wandered far from the accustomed haunts of boys, and sought desolate places that were in harmony with his spirit. A log raft in the river invited him, and he seated himself on its outer edge and contemplated the dreary vastness of the stream, wishing, the while, that he could only be drowned, all at once and unconsciously, without undergoing the uncomfortable routine devised by nature. Then he thought of his flower. He got it out, rumpled and wilted, and it mightily increased his dismal felicity. He wondered if she would pity him if she knew? Would she cry, and wish that she had a right to put her arms around his neck and comfort him? Or would she turn coldly away like all the hollow world? This picture brought such an agony of pleasurable suffering that he worked it over and over again in his mind and set it up in new and varied lights, till he wore it threadbare. At last he rose up sighing and departed in the darkness. About half-past nine or ten o'clock he came along the deserted street to where the Adored Unknown lived; he paused a moment; no sound fell upon his listening ear; a candle was casting a dull glow upon the curtain of a second-story window. Was the sacred presence there? He climbed the fence, threaded his stealthy way through the plants, till he stood under that window; he looked up at it long, and with emotion; then he laid him down on the ground under it, disposing himself upon his back, with his hands clasped upon his breast and holding his poor wilted flower. And thus he would die--out in the cold world, with no shelter over his homeless head, no friendly hand to wipe the death-damps from his brow, no loving face to bend pityingly over him when the great agony came. And thus SHE would see him when she looked out upon the glad morning, and oh! would she drop one little tear upon his poor, lifeless form, would she heave one little sigh to see a bright young life so rudely blighted, so untimely cut down? The window went up, a maid-servant's discordant voice profaned the holy calm, and a deluge of water drenched the prone martyr's remains! The strangling hero sprang up with a relieving snort. There was a whiz as of a missile in the air, mingled with the murmur of a curse, a sound as of shivering glass followed, and a small, vague form went over the fence and shot away in the gloom. Not long after, as Tom, all undressed for bed, was surveying his drenched garments by the light of a tallow dip, Sid woke up; but if he had any dim idea of making any "references to allusions," he thought better of it and held his peace, for there was danger in Tom's eye. Tom turned in without the added vexation of prayers, and Sid made mental note of the omission. CHAPTER IV THE sun rose upon a tranquil world, and beamed down upon the peaceful village like a benediction. Breakfast over, Aunt Polly had family worship: it began with a prayer built from the ground up of solid courses of Scriptural quotations, welded together with a thin mortar of originality; and from the summit of this she delivered a grim chapter of the Mosaic Law, as from Sinai. Then Tom girded up his loins, so to speak, and went to work to "get his verses." Sid had learned his lesson days before. Tom bent all his energies to the memorizing of five verses, and he chose part of the Sermon on the Mount, because he could find no verses that were shorter. At the end of half an hour Tom had a vague general idea of his lesson, but no more, for his mind was traversing the whole field of human thought, and his hands were busy with distracting recreations. Mary took his book to hear him recite, and he tried to find his way through the fog: "Blessed are the--a--a--" "Poor"-- "Yes--poor; blessed are the poor--a--a--" "In spirit--" "In spirit; blessed are the poor in spirit, for they--they--" "THEIRS--" "For THEIRS. Blessed are the poor in spirit, for theirs is the kingdom of heaven. Blessed are they that mourn, for they--they--" "Sh--" "For they--a--" "S, H, A--" "For they S, H--Oh, I don't know what it is!" "SHALL!" "Oh, SHALL! for they shall--for they shall--a--a--shall mourn--a--a-- blessed are they that shall--they that--a--they that shall mourn, for they shall--a--shall WHAT? Why don't you tell me, Mary?--what do you want to be so mean for?" "Oh, Tom, you poor thick-headed thing, I'm not teasing you. I wouldn't do that. You must go and learn it again. Don't you be discouraged, Tom, you'll manage it--and if you do, I'll give you something ever so nice. There, now, that's a good boy." "All right! What is it, Mary, tell me what it is." "Never you mind, Tom. You know if I say it's nice, it is nice." "You bet you that's so, Mary. All right, I'll tackle it again." And he did "tackle it again"--and under the double pressure of curiosity and prospective gain he did it with such spirit that he accomplished a shining success. Mary gave him a brand-new "Barlow" knife worth twelve and a half cents; and the convulsion of delight that swept his system shook him to his foundations. True, the knife would not cut anything, but it was a "sure-enough" Barlow, and there was inconceivable grandeur in that--though where the Western boys ever got the idea that such a weapon could possibly be counterfeited to its injury is an imposing mystery and will always remain so, perhaps. Tom contrived to scarify the cupboard with it, and was arranging to begin on the bureau, when he was called off to dress for Sunday-school. Mary gave him a tin basin of water and a piece of soap, and he went outside the door and set the basin on a little bench there; then he dipped the soap in the water and laid it down; turned up his sleeves; poured out the water on the ground, gently, and then entered the kitchen and began to wipe his face diligently on the towel behind the door. But Mary removed the towel and said: "Now ain't you ashamed, Tom. You mustn't be so bad. Water won't hurt you." Tom was a trifle disconcerted. The basin was refilled, and this time he stood over it a little while, gathering resolution; took in a big breath and began. When he entered the kitchen presently, with both eyes shut and groping for the towel with his hands, an honorable testimony of suds and water was dripping from his face. But when he emerged from the towel, he was not yet satisfactory, for the clean territory stopped short at his chin and his jaws, like a mask; below and beyond this line there was a dark expanse of unirrigated soil that spread downward in front and backward around his neck. Mary took him in hand, and when she was done with him he was a man and a brother, without distinction of color, and his saturated hair was neatly brushed, and its short curls wrought into a dainty and symmetrical general effect. [He privately smoothed out the curls, with labor and difficulty, and plastered his hair close down to his head; for he held curls to be effeminate, and his own filled his life with bitterness.] Then Mary got out a suit of his clothing that had been used only on Sundays during two years--they were simply called his "other clothes"--and so by that we know the size of his wardrobe. The girl "put him to rights" after he had dressed himself; she buttoned his neat roundabout up to his chin, turned his vast shirt collar down over his shoulders, brushed him off and crowned him with his speckled straw hat. He now looked exceedingly improved and uncomfortable. He was fully as uncomfortable as he looked; for there was a restraint about whole clothes and cleanliness that galled him. He hoped that Mary would forget his shoes, but the hope was blighted; she coated them thoroughly with tallow, as was the custom, and brought them out. He lost his temper and said he was always being made to do everything he didn't want to do. But Mary said, persuasively: "Please, Tom--that's a good boy." So he got into the shoes snarling. Mary was soon ready, and the three children set out for Sunday-school--a place that Tom hated with his whole heart; but Sid and Mary were fond of it. Sabbath-school hours were from nine to half-past ten; and then church service. Two of the children always remained for the sermon voluntarily, and the other always remained too--for stronger reasons. The church's high-backed, uncushioned pews would seat about three hundred persons; the edifice was but a small, plain affair, with a sort of pine board tree-box on top of it for a steeple. At the door Tom dropped back a step and accosted a Sunday-dressed comrade: "Say, Billy, got a yaller ticket?" "Yes." "What'll you take for her?" "What'll you give?" "Piece of lickrish and a fish-hook." "Less see 'em." Tom exhibited. They were satisfactory, and the property changed hands. Then Tom traded a couple of white alleys for three red tickets, and some small trifle or other for a couple of blue ones. He waylaid other boys as they came, and went on buying tickets of various colors ten or fifteen minutes longer. He entered the church, now, with a swarm of clean and noisy boys and girls, proceeded to his seat and started a quarrel with the first boy that came handy. The teacher, a grave, elderly man, interfered; then turned his back a moment and Tom pulled a boy's hair in the next bench, and was absorbed in his book when the boy turned around; stuck a pin in another boy, presently, in order to hear him say "Ouch!" and got a new reprimand from his teacher. Tom's whole class were of a pattern--restless, noisy, and troublesome. When they came to recite their lessons, not one of them knew his verses perfectly, but had to be prompted all along. However, they worried through, and each got his reward--in small blue tickets, each with a passage of Scripture on it; each blue ticket was pay for two verses of the recitation. Ten blue tickets equalled a red one, and could be exchanged for it; ten red tickets equalled a yellow one; for ten yellow tickets the superintendent gave a very plainly bound Bible (worth forty cents in those easy times) to the pupil. How many of my readers would have the industry and application to memorize two thousand verses, even for a Dore Bible? And yet Mary had acquired two Bibles in this way--it was the patient work of two years--and a boy of German parentage had won four or five. He once recited three thousand verses without stopping; but the strain upon his mental faculties was too great, and he was little better than an idiot from that day forth--a grievous misfortune for the school, for on great occasions, before company, the superintendent (as Tom expressed it) had always made this boy come out and "spread himself." Only the older pupils managed to keep their tickets and stick to their tedious work long enough to get a Bible, and so the delivery of one of these prizes was a rare and noteworthy circumstance; the successful pupil was so great and conspicuous for that day that on the spot every scholar's heart was fired with a fresh ambition that often lasted a couple of weeks. It is possible that Tom's mental stomach had never really hungered for one of those prizes, but unquestionably his entire being had for many a day longed for the glory and the eclat that came with it. In due course the superintendent stood up in front of the pulpit, with a closed hymn-book in his hand and his forefinger inserted between its leaves, and commanded attention. When a Sunday-school superintendent makes his customary little speech, a hymn-book in the hand is as necessary as is the inevitable sheet of music in the hand of a singer who stands forward on the platform and sings a solo at a concert --though why, is a mystery: for neither the hymn-book nor the sheet of music is ever referred to by the sufferer. This superintendent was a slim creature of thirty-five, with a sandy goatee and short sandy hair; he wore a stiff standing-collar whose upper edge almost reached his ears and whose sharp points curved forward abreast the corners of his mouth--a fence that compelled a straight lookout ahead, and a turning of the whole body when a side view was required; his chin was propped on a spreading cravat which was as broad and as long as a bank-note, and had fringed ends; his boot toes were turned sharply up, in the fashion of the day, like sleigh-runners--an effect patiently and laboriously produced by the young men by sitting with their toes pressed against a wall for hours together. Mr. Walters was very earnest of mien, and very sincere and honest at heart; and he held sacred things and places in such reverence, and so separated them from worldly matters, that unconsciously to himself his Sunday-school voice had acquired a peculiar intonation which was wholly absent on week-days. He began after this fashion: "Now, children, I want you all to sit up just as straight and pretty as you can and give me all your attention for a minute or two. There --that is it. That is the way good little boys and girls should do. I see one little girl who is looking out of the window--I am afraid she thinks I am out there somewhere--perhaps up in one of the trees making a speech to the little birds. [Applausive titter.] I want to tell you how good it makes me feel to see so many bright, clean little faces assembled in a place like this, learning to do right and be good." And so forth and so on. It is not necessary to set down the rest of the oration. It was of a pattern which does not vary, and so it is familiar to us all. The latter third of the speech was marred by the resumption of fights and other recreations among certain of the bad boys, and by fidgetings and whisperings that extended far and wide, washing even to the bases of isolated and incorruptible rocks like Sid and Mary. But now every sound ceased suddenly, with the subsidence of Mr. Walters' voice, and the conclusion of the speech was received with a burst of silent gratitude. A good part of the whispering had been occasioned by an event which was more or less rare--the entrance of visitors: lawyer Thatcher, accompanied by a very feeble and aged man; a fine, portly, middle-aged gentleman with iron-gray hair; and a dignified lady who was doubtless the latter's wife. The lady was leading a child. Tom had been restless and full of chafings and repinings; conscience-smitten, too--he could not meet Amy Lawrence's eye, he could not brook her loving gaze. But when he saw this small new-comer his soul was all ablaze with bliss in a moment. The next moment he was "showing off" with all his might --cuffing boys, pulling hair, making faces--in a word, using every art that seemed likely to fascinate a girl and win her applause. His exaltation had but one alloy--the memory of his humiliation in this angel's garden--and that record in sand was fast washing out, under the waves of happiness that were sweeping over it now. The visitors were given the highest seat of honor, and as soon as Mr. Walters' speech was finished, he introduced them to the school. The middle-aged man turned out to be a prodigious personage--no less a one than the county judge--altogether the most august creation these children had ever looked upon--and they wondered what kind of material he was made of--and they half wanted to hear him roar, and were half afraid he might, too. He was from Constantinople, twelve miles away--so he had travelled, and seen the world--these very eyes had looked upon the county court-house--which was said to have a tin roof. The awe which these reflections inspired was attested by the impressive silence and the ranks of staring eyes. This was the great Judge Thatcher, brother of their own lawyer. Jeff Thatcher immediately went forward, to be familiar with the great man and be envied by the school. It would have been music to his soul to hear the whisperings: "Look at him, Jim! He's a going up there. Say--look! he's a going to shake hands with him--he IS shaking hands with him! By jings, don't you wish you was Jeff?" Mr. Walters fell to "showing off," with all sorts of official bustlings and activities, giving orders, delivering judgments, discharging directions here, there, everywhere that he could find a target. The librarian "showed off"--running hither and thither with his arms full of books and making a deal of the splutter and fuss that insect authority delights in. The young lady teachers "showed off" --bending sweetly over pupils that were lately being boxed, lifting pretty warning fingers at bad little boys and patting good ones lovingly. The young gentlemen teachers "showed off" with small scoldings and other little displays of authority and fine attention to discipline--and most of the teachers, of both sexes, found business up at the library, by the pulpit; and it was business that frequently had to be done over again two or three times (with much seeming vexation). The little girls "showed off" in various ways, and the little boys "showed off" with such diligence that the air was thick with paper wads and the murmur of scufflings. And above it all the great man sat and beamed a majestic judicial smile upon all the house, and warmed himself in the sun of his own grandeur--for he was "showing off," too. There was only one thing wanting to make Mr. Walters' ecstasy complete, and that was a chance to deliver a Bible-prize and exhibit a prodigy. Several pupils had a few yellow tickets, but none had enough --he had been around among the star pupils inquiring. He would have given worlds, now, to have that German lad back again with a sound mind. And now at this moment, when hope was dead, Tom Sawyer came forward with nine yellow tickets, nine red tickets, and ten blue ones, and demanded a Bible. This was a thunderbolt out of a clear sky. Walters was not expecting an application from this source for the next ten years. But there was no getting around it--here were the certified checks, and they were good for their face. Tom was therefore elevated to a place with the Judge and the other elect, and the great news was announced from headquarters. It was the most stunning surprise of the decade, and so profound was the sensation that it lifted the new hero up to the judicial one's altitude, and the school had two marvels to gaze upon in place of one. The boys were all eaten up with envy--but those that suffered the bitterest pangs were those who perceived too late that they themselves had contributed to this hated splendor by trading tickets to Tom for the wealth he had amassed in selling whitewashing privileges. These despised themselves, as being the dupes of a wily fraud, a guileful snake in the grass. The prize was delivered to Tom with as much effusion as the superintendent could pump up under the circumstances; but it lacked somewhat of the true gush, for the poor fellow's instinct taught him that there was a mystery here that could not well bear the light, perhaps; it was simply preposterous that this boy had warehoused two thousand sheaves of Scriptural wisdom on his premises--a dozen would strain his capacity, without a doubt. Amy Lawrence was proud and glad, and she tried to make Tom see it in her face--but he wouldn't look. She wondered; then she was just a grain troubled; next a dim suspicion came and went--came again; she watched; a furtive glance told her worlds--and then her heart broke, and she was jealous, and angry, and the tears came and she hated everybody. Tom most of all (she thought). Tom was introduced to the Judge; but his tongue was tied, his breath would hardly come, his heart quaked--partly because of the awful greatness of the man, but mainly because he was her parent. He would have liked to fall down and worship him, if it were in the dark. The Judge put his hand on Tom's head and called him a fine little man, and asked him what his name was. The boy stammered, gasped, and got it out: "Tom." "Oh, no, not Tom--it is--" "Thomas." "Ah, that's it. I thought there was more to it, maybe. That's very well. But you've another one I daresay, and you'll tell it to me, won't you?" "Tell the gentleman your other name, Thomas," said Walters, "and say sir. You mustn't forget your manners." "Thomas Sawyer--sir." "That's it! That's a good boy. Fine boy. Fine, manly little fellow. Two thousand verses is a great many--very, very great many. And you never can be sorry for the trouble you took to learn them; for knowledge is worth more than anything there is in the world; it's what makes great men and good men; you'll be a great man and a good man yourself, some day, Thomas, and then you'll look back and say, It's all owing to the precious Sunday-school privileges of my boyhood--it's all owing to my dear teachers that taught me to learn--it's all owing to the good superintendent, who encouraged me, and watched over me, and gave me a beautiful Bible--a splendid elegant Bible--to keep and have it all for my own, always--it's all owing to right bringing up! That is what you will say, Thomas--and you wouldn't take any money for those two thousand verses--no indeed you wouldn't. And now you wouldn't mind telling me and this lady some of the things you've learned--no, I know you wouldn't--for we are proud of little boys that learn. Now, no doubt you know the names of all the twelve disciples. Won't you tell us the names of the first two that were appointed?" Tom was tugging at a button-hole and looking sheepish. He blushed, now, and his eyes fell. Mr. Walters' heart sank within him. He said to himself, it is not possible that the boy can answer the simplest question--why DID the Judge ask him? Yet he felt obliged to speak up and say: "Answer the gentleman, Thomas--don't be afraid." Tom still hung fire. "Now I know you'll tell me," said the lady. "The names of the first two disciples were--" "DAVID AND GOLIAH!" Let us draw the curtain of charity over the rest of the scene. CHAPTER V ABOUT half-past ten the cracked bell of the small church began to ring, and presently the people began to gather for the morning sermon. The Sunday-school children distributed themselves about the house and occupied pews with their parents, so as to be under supervision. Aunt Polly came, and Tom and Sid and Mary sat with her--Tom being placed next the aisle, in order that he might be as far away from the open window and the seductive outside summer scenes as possible. The crowd filed up the aisles: the aged and needy postmaster, who had seen better days; the mayor and his wife--for they had a mayor there, among other unnecessaries; the justice of the peace; the widow Douglass, fair, smart, and forty, a generous, good-hearted soul and well-to-do, her hill mansion the only palace in the town, and the most hospitable and much the most lavish in the matter of festivities that St. Petersburg could boast; the bent and venerable Major and Mrs. Ward; lawyer Riverson, the new notable from a distance; next the belle of the village, followed by a troop of lawn-clad and ribbon-decked young heart-breakers; then all the young clerks in town in a body--for they had stood in the vestibule sucking their cane-heads, a circling wall of oiled and simpering admirers, till the last girl had run their gantlet; and last of all came the Model Boy, Willie Mufferson, taking as heedful care of his mother as if she were cut glass. He always brought his mother to church, and was the pride of all the matrons. The boys all hated him, he was so good. And besides, he had been "thrown up to them" so much. His white handkerchief was hanging out of his pocket behind, as usual on Sundays--accidentally. Tom had no handkerchief, and he looked upon boys who had as snobs. The congregation being fully assembled, now, the bell rang once more, to warn laggards and stragglers, and then a solemn hush fell upon the church which was only broken by the tittering and whispering of the choir in the gallery. The choir always tittered and whispered all through service. There was once a church choir that was not ill-bred, but I have forgotten where it was, now. It was a great many years ago, and I can scarcely remember anything about it, but I think it was in some foreign country. The minister gave out the hymn, and read it through with a relish, in a peculiar style which was much admired in that part of the country. His voice began on a medium key and climbed steadily up till it reached a certain point, where it bore with strong emphasis upon the topmost word and then plunged down as if from a spring-board: Shall I be car-ri-ed toe the skies, on flow'ry BEDS of ease, Whilst others fight to win the prize, and sail thro' BLOODY seas? He was regarded as a wonderful reader. At church "sociables" he was always called upon to read poetry; and when he was through, the ladies would lift up their hands and let them fall helplessly in their laps, and "wall" their eyes, and shake their heads, as much as to say, "Words cannot express it; it is too beautiful, TOO beautiful for this mortal earth." After the hymn had been sung, the Rev. Mr. Sprague turned himself into a bulletin-board, and read off "notices" of meetings and societies and things till it seemed that the list would stretch out to the crack of doom--a queer custom which is still kept up in America, even in cities, away here in this age of abundant newspapers. Often, the less there is to justify a traditional custom, the harder it is to get rid of it. And now the minister prayed. A good, generous prayer it was, and went into details: it pleaded for the church, and the little children of the church; for the other churches of the village; for the village itself; for the county; for the State; for the State officers; for the United States; for the churches of the United States; for Congress; for the President; for the officers of the Government; for poor sailors, tossed by stormy seas; for the oppressed millions groaning under the heel of European monarchies and Oriental despotisms; for such as have the light and the good tidings, and yet have not eyes to see nor ears to hear withal; for the heathen in the far islands of the sea; and closed with a supplication that the words he was about to speak might find grace and favor, and be as seed sown in fertile ground, yielding in time a grateful harvest of good. Amen. There was a rustling of dresses, and the standing congregation sat down. The boy whose history this book relates did not enjoy the prayer, he only endured it--if he even did that much. He was restive all through it; he kept tally of the details of the prayer, unconsciously --for he was not listening, but he knew the ground of old, and the clergyman's regular route over it--and when a little trifle of new matter was interlarded, his ear detected it and his whole nature resented it; he considered additions unfair, and scoundrelly. In the midst of the prayer a fly had lit on the back of the pew in front of him and tortured his spirit by calmly rubbing its hands together, embracing its head with its arms, and polishing it so vigorously that it seemed to almost part company with the body, and the slender thread of a neck was exposed to view; scraping its wings with its hind legs and smoothing them to its body as if they had been coat-tails; going through its whole toilet as tranquilly as if it knew it was perfectly safe. As indeed it was; for as sorely as Tom's hands itched to grab for it they did not dare--he believed his soul would be instantly destroyed if he did such a thing while the prayer was going on. But with the closing sentence his hand began to curve and steal forward; and the instant the "Amen" was out the fly was a prisoner of war. His aunt detected the act and made him let it go. The minister gave out his text and droned along monotonously through an argument that was so prosy that many a head by and by began to nod --and yet it was an argument that dealt in limitless fire and brimstone and thinned the predestined elect down to a company so small as to be hardly worth the saving. Tom counted the pages of the sermon; after church he always knew how many pages there had been, but he seldom knew anything else about the discourse. However, this time he was really interested for a little while. The minister made a grand and moving picture of the assembling together of the world's hosts at the millennium when the lion and the lamb should lie down together and a little child should lead them. But the pathos, the lesson, the moral of the great spectacle were lost upon the boy; he only thought of the conspicuousness of the principal character before the on-looking nations; his face lit with the thought, and he said to himself that he wished he could be that child, if it was a tame lion. Now he lapsed into suffering again, as the dry argument was resumed. Presently he bethought him of a treasure he had and got it out. It was a large black beetle with formidable jaws--a "pinchbug," he called it. It was in a percussion-cap box. The first thing the beetle did was to take him by the finger. A natural fillip followed, the beetle went floundering into the aisle and lit on its back, and the hurt finger went into the boy's mouth. The beetle lay there working its helpless legs, unable to turn over. Tom eyed it, and longed for it; but it was safe out of his reach. Other people uninterested in the sermon found relief in the beetle, and they eyed it too. Presently a vagrant poodle dog came idling along, sad at heart, lazy with the summer softness and the quiet, weary of captivity, sighing for change. He spied the beetle; the drooping tail lifted and wagged. He surveyed the prize; walked around it; smelt at it from a safe distance; walked around it again; grew bolder, and took a closer smell; then lifted his lip and made a gingerly snatch at it, just missing it; made another, and another; began to enjoy the diversion; subsided to his stomach with the beetle between his paws, and continued his experiments; grew weary at last, and then indifferent and absent-minded. His head nodded, and little by little his chin descended and touched the enemy, who seized it. There was a sharp yelp, a flirt of the poodle's head, and the beetle fell a couple of yards away, and lit on its back once more. The neighboring spectators shook with a gentle inward joy, several faces went behind fans and handkerchiefs, and Tom was entirely happy. The dog looked foolish, and probably felt so; but there was resentment in his heart, too, and a craving for revenge. So he went to the beetle and began a wary attack on it again; jumping at it from every point of a circle, lighting with his fore-paws within an inch of the creature, making even closer snatches at it with his teeth, and jerking his head till his ears flapped again. But he grew tired once more, after a while; tried to amuse himself with a fly but found no relief; followed an ant around, with his nose close to the floor, and quickly wearied of that; yawned, sighed, forgot the beetle entirely, and sat down on it. Then there was a wild yelp of agony and the poodle went sailing up the aisle; the yelps continued, and so did the dog; he crossed the house in front of the altar; he flew down the other aisle; he crossed before the doors; he clamored up the home-stretch; his anguish grew with his progress, till presently he was but a woolly comet moving in its orbit with the gleam and the speed of light. At last the frantic sufferer sheered from its course, and sprang into its master's lap; he flung it out of the window, and the voice of distress quickly thinned away and died in the distance. By this time the whole church was red-faced and suffocating with suppressed laughter, and the sermon had come to a dead standstill. The discourse was resumed presently, but it went lame and halting, all possibility of impressiveness being at an end; for even the gravest sentiments were constantly being received with a smothered burst of unholy mirth, under cover of some remote pew-back, as if the poor parson had said a rarely facetious thing. It was a genuine relief to the whole congregation when the ordeal was over and the benediction pronounced. Tom Sawyer went home quite cheerful, thinking to himself that there was some satisfaction about divine service when there was a bit of variety in it. He had but one marring thought; he was willing that the dog should play with his pinchbug, but he did not think it was upright in him to carry it off. CHAPTER VI MONDAY morning found Tom Sawyer miserable. Monday morning always found him so--because it began another week's slow suffering in school. He generally began that day with wishing he had had no intervening holiday, it made the going into captivity and fetters again so much more odious. Tom lay thinking. Presently it occurred to him that he wished he was sick; then he could stay home from school. Here was a vague possibility. He canvassed his system. No ailment was found, and he investigated again. This time he thought he could detect colicky symptoms, and he began to encourage them with considerable hope. But they soon grew feeble, and presently died wholly away. He reflected further. Suddenly he discovered something. One of his upper front teeth was loose. This was lucky; he was about to begin to groan, as a "starter," as he called it, when it occurred to him that if he came into court with that argument, his aunt would pull it out, and that would hurt. So he thought he would hold the tooth in reserve for the present, and seek further. Nothing offered for some little time, and then he remembered hearing the doctor tell about a certain thing that laid up a patient for two or three weeks and threatened to make him lose a finger. So the boy eagerly drew his sore toe from under the sheet and held it up for inspection. But now he did not know the necessary symptoms. However, it seemed well worth while to chance it, so he fell to groaning with considerable spirit. But Sid slept on unconscious. Tom groaned louder, and fancied that he began to feel pain in the toe. No result from Sid. Tom was panting with his exertions by this time. He took a rest and then swelled himself up and fetched a succession of admirable groans. Sid snored on. Tom was aggravated. He said, "Sid, Sid!" and shook him. This course worked well, and Tom began to groan again. Sid yawned, stretched, then brought himself up on his elbow with a snort, and began to stare at Tom. Tom went on groaning. Sid said: "Tom! Say, Tom!" [No response.] "Here, Tom! TOM! What is the matter, Tom?" And he shook him and looked in his face anxiously. Tom moaned out: "Oh, don't, Sid. Don't joggle me." "Why, what's the matter, Tom? I must call auntie." "No--never mind. It'll be over by and by, maybe. Don't call anybody." "But I must! DON'T groan so, Tom, it's awful. How long you been this way?" "Hours. Ouch! Oh, don't stir so, Sid, you'll kill me." "Tom, why didn't you wake me sooner? Oh, Tom, DON'T! It makes my flesh crawl to hear you. Tom, what is the matter?" "I forgive you everything, Sid. [Groan.] Everything you've ever done to me. When I'm gone--" "Oh, Tom, you ain't dying, are you? Don't, Tom--oh, don't. Maybe--" "I forgive everybody, Sid. [Groan.] Tell 'em so, Sid. And Sid, you give my window-sash and my cat with one eye to that new girl that's come to town, and tell her--" But Sid had snatched his clothes and gone. Tom was suffering in reality, now, so handsomely was his imagination working, and so his groans had gathered quite a genuine tone. Sid flew down-stairs and said: "Oh, Aunt Polly, come! Tom's dying!" "Dying!" "Yes'm. Don't wait--come quick!" "Rubbage! I don't believe it!" But she fled up-stairs, nevertheless, with Sid and Mary at her heels. And her face grew white, too, and her lip trembled. When she reached the bedside she gasped out: "You, Tom! Tom, what's the matter with you?" "Oh, auntie, I'm--" "What's the matter with you--what is the matter with you, child?" "Oh, auntie, my sore toe's mortified!" The old lady sank down into a chair and laughed a little, then cried a little, then did both together. This restored her and she said: "Tom, what a turn you did give me. Now you shut up that nonsense and climb out of this." The groans ceased and the pain vanished from the toe. The boy felt a little foolish, and he said: "Aunt Polly, it SEEMED mortified, and it hurt so I never minded my tooth at all." "Your tooth, indeed! What's the matter with your tooth?" "One of them's loose, and it aches perfectly awful." "There, there, now, don't begin that groaning again. Open your mouth. Well--your tooth IS loose, but you're not going to die about that. Mary, get me a silk thread, and a chunk of fire out of the kitchen." Tom said: "Oh, please, auntie, don't pull it out. It don't hurt any more. I wish I may never stir if it does. Please don't, auntie. I don't want to stay home from school." "Oh, you don't, don't you? So all this row was because you thought you'd get to stay home from school and go a-fishing? Tom, Tom, I love you so, and you seem to try every way you can to break my old heart with your outrageousness." By this time the dental instruments were ready. The old lady made one end of the silk thread fast to Tom's tooth with a loop and tied the other to the bedpost. Then she seized the chunk of fire and suddenly thrust it almost into the boy's face. The tooth hung dangling by the bedpost, now. But all trials bring their compensations. As Tom wended to school after breakfast, he was the envy of every boy he met because the gap in his upper row of teeth enabled him to expectorate in a new and admirable way. He gathered quite a following of lads interested in the exhibition; and one that had cut his finger and had been a centre of fascination and homage up to this time, now found himself suddenly without an adherent, and shorn of his glory. His heart was heavy, and he said with a disdain which he did not feel that it wasn't anything to spit like Tom Sawyer; but another boy said, "Sour grapes!" and he wandered away a dismantled hero. Shortly Tom came upon the juvenile pariah of the village, Huckleberry Finn, son of the town drunkard. Huckleberry was cordially hated and dreaded by all the mothers of the town, because he was idle and lawless and vulgar and bad--and because all their children admired him so, and delighted in his forbidden society, and wished they dared to be like him. Tom was like the rest of the respectable boys, in that he envied Huckleberry his gaudy outcast condition, and was under strict orders not to play with him. So he played with him every time he got a chance. Huckleberry was always dressed in the cast-off clothes of full-grown men, and they were in perennial bloom and fluttering with rags. His hat was a vast ruin with a wide crescent lopped out of its brim; his coat, when he wore one, hung nearly to his heels and had the rearward buttons far down the back; but one suspender supported his trousers; the seat of the trousers bagged low and contained nothing, the fringed legs dragged in the dirt when not rolled up. Huckleberry came and went, at his own free will. He slept on doorsteps in fine weather and in empty hogsheads in wet; he did not have to go to school or to church, or call any being master or obey anybody; he could go fishing or swimming when and where he chose, and stay as long as it suited him; nobody forbade him to fight; he could sit up as late as he pleased; he was always the first boy that went barefoot in the spring and the last to resume leather in the fall; he never had to wash, nor put on clean clothes; he could swear wonderfully. In a word, everything that goes to make life precious that boy had. So thought every harassed, hampered, respectable boy in St. Petersburg. Tom hailed the romantic outcast: "Hello, Huckleberry!" "Hello yourself, and see how you like it." "What's that you got?" "Dead cat." "Lemme see him, Huck. My, he's pretty stiff. Where'd you get him?" "Bought him off'n a boy." "What did you give?" "I give a blue ticket and a bladder that I got at the slaughter-house." "Where'd you get the blue ticket?" "Bought it off'n Ben Rogers two weeks ago for a hoop-stick." "Say--what is dead cats good for, Huck?" "Good for? Cure warts with." "No! Is that so? I know something that's better." "I bet you don't. What is it?" "Why, spunk-water." "Spunk-water! I wouldn't give a dern for spunk-water." "You wouldn't, wouldn't you? D'you ever try it?" "No, I hain't. But Bob Tanner did." "Who told you so!" "Why, he told Jeff Thatcher, and Jeff told Johnny Baker, and Johnny told Jim Hollis, and Jim told Ben Rogers, and Ben told a nigger, and the nigger told me. There now!" "Well, what of it? They'll all lie. Leastways all but the nigger. I don't know HIM. But I never see a nigger that WOULDN'T lie. Shucks! Now you tell me how Bob Tanner done it, Huck." "Why, he took and dipped his hand in a rotten stump where the rain-water was." "In the daytime?" "Certainly." "With his face to the stump?" "Yes. Least I reckon so." "Did he say anything?" "I don't reckon he did. I don't know." "Aha! Talk about trying to cure warts with spunk-water such a blame fool way as that! Why, that ain't a-going to do any good. You got to go all by yourself, to the middle of the woods, where you know there's a spunk-water stump, and just as it's midnight you back up against the stump and jam your hand in and say: 'Barley-corn, barley-corn, injun-meal shorts, Spunk-water, spunk-water, swaller these warts,' and then walk away quick, eleven steps, with your eyes shut, and then turn around three times and walk home without speaking to anybody. Because if you speak the charm's busted." "Well, that sounds like a good way; but that ain't the way Bob Tanner done." "No, sir, you can bet he didn't, becuz he's the wartiest boy in this town; and he wouldn't have a wart on him if he'd knowed how to work spunk-water. I've took off thousands of warts off of my hands that way, Huck. I play with frogs so much that I've always got considerable many warts. Sometimes I take 'em off with a bean." "Yes, bean's good. I've done that." "Have you? What's your way?" "You take and split the bean, and cut the wart so as to get some blood, and then you put the blood on one piece of the bean and take and dig a hole and bury it 'bout midnight at the crossroads in the dark of the moon, and then you burn up the rest of the bean. You see that piece that's got the blood on it will keep drawing and drawing, trying to fetch the other piece to it, and so that helps the blood to draw the wart, and pretty soon off she comes." "Yes, that's it, Huck--that's it; though when you're burying it if you say 'Down bean; off wart; come no more to bother me!' it's better. That's the way Joe Harper does, and he's been nearly to Coonville and most everywheres. But say--how do you cure 'em with dead cats?" "Why, you take your cat and go and get in the graveyard 'long about midnight when somebody that was wicked has been buried; and when it's midnight a devil will come, or maybe two or three, but you can't see 'em, you can only hear something like the wind, or maybe hear 'em talk; and when they're taking that feller away, you heave your cat after 'em and say, 'Devil follow corpse, cat follow devil, warts follow cat, I'm done with ye!' That'll fetch ANY wart." "Sounds right. D'you ever try it, Huck?" "No, but old Mother Hopkins told me." "Well, I reckon it's so, then. Becuz they say she's a witch." "Say! Why, Tom, I KNOW she is. She witched pap. Pap says so his own self. He come along one day, and he see she was a-witching him, so he took up a rock, and if she hadn't dodged, he'd a got her. Well, that very night he rolled off'n a shed wher' he was a layin drunk, and broke his arm." "Why, that's awful. How did he know she was a-witching him?" "Lord, pap can tell, easy. Pap says when they keep looking at you right stiddy, they're a-witching you. Specially if they mumble. Becuz when they mumble they're saying the Lord's Prayer backards." "Say, Hucky, when you going to try the cat?" "To-night. I reckon they'll come after old Hoss Williams to-night." "But they buried him Saturday. Didn't they get him Saturday night?" "Why, how you talk! How could their charms work till midnight?--and THEN it's Sunday. Devils don't slosh around much of a Sunday, I don't reckon." "I never thought of that. That's so. Lemme go with you?" "Of course--if you ain't afeard." "Afeard! 'Tain't likely. Will you meow?" "Yes--and you meow back, if you get a chance. Last time, you kep' me a-meowing around till old Hays went to throwing rocks at me and says 'Dern that cat!' and so I hove a brick through his window--but don't you tell." "I won't. I couldn't meow that night, becuz auntie was watching me, but I'll meow this time. Say--what's that?" "Nothing but a tick." "Where'd you get him?" "Out in the woods." "What'll you take for him?" "I don't know. I don't want to sell him." "All right. It's a mighty small tick, anyway." "Oh, anybody can run a tick down that don't belong to them. I'm satisfied with it. It's a good enough tick for me." "Sho, there's ticks a plenty. I could have a thousand of 'em if I wanted to." "Well, why don't you? Becuz you know mighty well you can't. This is a pretty early tick, I reckon. It's the first one I've seen this year." "Say, Huck--I'll give you my tooth for him." "Less see it." Tom got out a bit of paper and carefully unrolled it. Huckleberry viewed it wistfully. The temptation was very strong. At last he said: "Is it genuwyne?" Tom lifted his lip and showed the vacancy. "Well, all right," said Huckleberry, "it's a trade." Tom enclosed the tick in the percussion-cap box that had lately been the pinchbug's prison, and the boys separated, each feeling wealthier than before. When Tom reached the little isolated frame schoolhouse, he strode in briskly, with the manner of one who had come with all honest speed. He hung his hat on a peg and flung himself into his seat with business-like alacrity. The master, throned on high in his great splint-bottom arm-chair, was dozing, lulled by the drowsy hum of study. The interruption roused him. "Thomas Sawyer!" Tom knew that when his name was pronounced in full, it meant trouble. "Sir!" "Come up here. Now, sir, why are you late again, as usual?" Tom was about to take refuge in a lie, when he saw two long tails of yellow hair hanging down a back that he recognized by the electric sympathy of love; and by that form was THE ONLY VACANT PLACE on the girls' side of the schoolhouse. He instantly said: "I STOPPED TO TALK WITH HUCKLEBERRY FINN!" The master's pulse stood still, and he stared helplessly. The buzz of study ceased. The pupils wondered if this foolhardy boy had lost his mind. The master said: "You--you did what?" "Stopped to talk with Huckleberry Finn." There was no mistaking the words. "Thomas Sawyer, this is the most astounding confession I have ever listened to. No mere ferule will answer for this offence. Take off your jacket." The master's arm performed until it was tired and the stock of switches notably diminished. Then the order followed: "Now, sir, go and sit with the girls! And let this be a warning to you." The titter that rippled around the room appeared to abash the boy, but in reality that result was caused rather more by his worshipful awe of his unknown idol and the dread pleasure that lay in his high good fortune. He sat down upon the end of the pine bench and the girl hitched herself away from him with a toss of her head. Nudges and winks and whispers traversed the room, but Tom sat still, with his arms upon the long, low desk before him, and seemed to study his book. By and by attention ceased from him, and the accustomed school murmur rose upon the dull air once more. Presently the boy began to steal furtive glances at the girl. She observed it, "made a mouth" at him and gave him the back of her head for the space of a minute. When she cautiously faced around again, a peach lay before her. She thrust it away. Tom gently put it back. She thrust it away again, but with less animosity. Tom patiently returned it to its place. Then she let it remain. Tom scrawled on his slate, "Please take it--I got more." The girl glanced at the words, but made no sign. Now the boy began to draw something on the slate, hiding his work with his left hand. For a time the girl refused to notice; but her human curiosity presently began to manifest itself by hardly perceptible signs. The boy worked on, apparently unconscious. The girl made a sort of noncommittal attempt to see, but the boy did not betray that he was aware of it. At last she gave in and hesitatingly whispered: "Let me see it." Tom partly uncovered a dismal caricature of a house with two gable ends to it and a corkscrew of smoke issuing from the chimney. Then the girl's interest began to fasten itself upon the work and she forgot everything else. When it was finished, she gazed a moment, then whispered: "It's nice--make a man." The artist erected a man in the front yard, that resembled a derrick. He could have stepped over the house; but the girl was not hypercritical; she was satisfied with the monster, and whispered: "It's a beautiful man--now make me coming along." Tom drew an hour-glass with a full moon and straw limbs to it and armed the spreading fingers with a portentous fan. The girl said: "It's ever so nice--I wish I could draw." "It's easy," whispered Tom, "I'll learn you." "Oh, will you? When?" "At noon. Do you go home to dinner?" "I'll stay if you will." "Good--that's a whack. What's your name?" "Becky Thatcher. What's yours? Oh, I know. It's Thomas Sawyer." "That's the name they lick me by. I'm Tom when I'm good. You call me Tom, will you?" "Yes." Now Tom began to scrawl something on the slate, hiding the words from the girl. But she was not backward this time. She begged to see. Tom said: "Oh, it ain't anything." "Yes it is." "No it ain't. You don't want to see." "Yes I do, indeed I do. Please let me." "You'll tell." "No I won't--deed and deed and double deed won't." "You won't tell anybody at all? Ever, as long as you live?" "No, I won't ever tell ANYbody. Now let me." "Oh, YOU don't want to see!" "Now that you treat me so, I WILL see." And she put her small hand upon his and a little scuffle ensued, Tom pretending to resist in earnest but letting his hand slip by degrees till these words were revealed: "I LOVE YOU." "Oh, you bad thing!" And she hit his hand a smart rap, but reddened and looked pleased, nevertheless. Just at this juncture the boy felt a slow, fateful grip closing on his ear, and a steady lifting impulse. In that wise he was borne across the house and deposited in his own seat, under a peppering fire of giggles from the whole school. Then the master stood over him during a few awful moments, and finally moved away to his throne without saying a word. But although Tom's ear tingled, his heart was jubilant. As the school quieted down Tom made an honest effort to study, but the turmoil within him was too great. In turn he took his place in the reading class and made a botch of it; then in the geography class and turned lakes into mountains, mountains into rivers, and rivers into continents, till chaos was come again; then in the spelling class, and got "turned down," by a succession of mere baby words, till he brought up at the foot and yielded up the pewter medal which he had worn with ostentation for months. CHAPTER VII THE harder Tom tried to fasten his mind on his book, the more his ideas wandered. So at last, with a sigh and a yawn, he gave it up. It seemed to him that the noon recess would never come. The air was utterly dead. There was not a breath stirring. It was the sleepiest of sleepy days. The drowsing murmur of the five and twenty studying scholars soothed the soul like the spell that is in the murmur of bees. Away off in the flaming sunshine, Cardiff Hill lifted its soft green sides through a shimmering veil of heat, tinted with the purple of distance; a few birds floated on lazy wing high in the air; no other living thing was visible but some cows, and they were asleep. Tom's heart ached to be free, or else to have something of interest to do to pass the dreary time. His hand wandered into his pocket and his face lit up with a glow of gratitude that was prayer, though he did not know it. Then furtively the percussion-cap box came out. He released the tick and put him on the long flat desk. The creature probably glowed with a gratitude that amounted to prayer, too, at this moment, but it was premature: for when he started thankfully to travel off, Tom turned him aside with a pin and made him take a new direction. Tom's bosom friend sat next him, suffering just as Tom had been, and now he was deeply and gratefully interested in this entertainment in an instant. This bosom friend was Joe Harper. The two boys were sworn friends all the week, and embattled enemies on Saturdays. Joe took a pin out of his lapel and began to assist in exercising the prisoner. The sport grew in interest momently. Soon Tom said that they were interfering with each other, and neither getting the fullest benefit of the tick. So he put Joe's slate on the desk and drew a line down the middle of it from top to bottom. "Now," said he, "as long as he is on your side you can stir him up and I'll let him alone; but if you let him get away and get on my side, you're to leave him alone as long as I can keep him from crossing over." "All right, go ahead; start him up." The tick escaped from Tom, presently, and crossed the equator. Joe harassed him awhile, and then he got away and crossed back again. This change of base occurred often. While one boy was worrying the tick with absorbing interest, the other would look on with interest as strong, the two heads bowed together over the slate, and the two souls dead to all things else. At last luck seemed to settle and abide with Joe. The tick tried this, that, and the other course, and got as excited and as anxious as the boys themselves, but time and again just as he would have victory in his very grasp, so to speak, and Tom's fingers would be twitching to begin, Joe's pin would deftly head him off, and keep possession. At last Tom could stand it no longer. The temptation was too strong. So he reached out and lent a hand with his pin. Joe was angry in a moment. Said he: "Tom, you let him alone." "I only just want to stir him up a little, Joe." "No, sir, it ain't fair; you just let him alone." "Blame it, I ain't going to stir him much." "Let him alone, I tell you." "I won't!" "You shall--he's on my side of the line." "Look here, Joe Harper, whose is that tick?" "I don't care whose tick he is--he's on my side of the line, and you sha'n't touch him." "Well, I'll just bet I will, though. He's my tick and I'll do what I blame please with him, or die!" A tremendous whack came down on Tom's shoulders, and its duplicate on Joe's; and for the space of two minutes the dust continued to fly from the two jackets and the whole school to enjoy it. The boys had been too absorbed to notice the hush that had stolen upon the school awhile before when the master came tiptoeing down the room and stood over them. He had contemplated a good part of the performance before he contributed his bit of variety to it. When school broke up at noon, Tom flew to Becky Thatcher, and whispered in her ear: "Put on your bonnet and let on you're going home; and when you get to the corner, give the rest of 'em the slip, and turn down through the lane and come back. I'll go the other way and come it over 'em the same way." So the one went off with one group of scholars, and the other with another. In a little while the two met at the bottom of the lane, and when they reached the school they had it all to themselves. Then they sat together, with a slate before them, and Tom gave Becky the pencil and held her hand in his, guiding it, and so created another surprising house. When the interest in art began to wane, the two fell to talking. Tom was swimming in bliss. He said: "Do you love rats?" "No! I hate them!" "Well, I do, too--LIVE ones. But I mean dead ones, to swing round your head with a string." "No, I don't care for rats much, anyway. What I like is chewing-gum." "Oh, I should say so! I wish I had some now." "Do you? I've got some. I'll let you chew it awhile, but you must give it back to me." That was agreeable, so they chewed it turn about, and dangled their legs against the bench in excess of contentment. "Was you ever at a circus?" said Tom. "Yes, and my pa's going to take me again some time, if I'm good." "I been to the circus three or four times--lots of times. Church ain't shucks to a circus. There's things going on at a circus all the time. I'm going to be a clown in a circus when I grow up." "Oh, are you! That will be nice. They're so lovely, all spotted up." "Yes, that's so. And they get slathers of money--most a dollar a day, Ben Rogers says. Say, Becky, was you ever engaged?" "What's that?" "Why, engaged to be married." "No." "Would you like to?" "I reckon so. I don't know. What is it like?" "Like? Why it ain't like anything. You only just tell a boy you won't ever have anybody but him, ever ever ever, and then you kiss and that's all. Anybody can do it." "Kiss? What do you kiss for?" "Why, that, you know, is to--well, they always do that." "Everybody?" "Why, yes, everybody that's in love with each other. Do you remember what I wrote on the slate?" "Ye--yes." "What was it?" "I sha'n't tell you." "Shall I tell YOU?" "Ye--yes--but some other time." "No, now." "No, not now--to-morrow." "Oh, no, NOW. Please, Becky--I'll whisper it, I'll whisper it ever so easy." Becky hesitating, Tom took silence for consent, and passed his arm about her waist and whispered the tale ever so softly, with his mouth close to her ear. And then he added: "Now you whisper it to me--just the same." She resisted, for a while, and then said: "You turn your face away so you can't see, and then I will. But you mustn't ever tell anybody--WILL you, Tom? Now you won't, WILL you?" "No, indeed, indeed I won't. Now, Becky." He turned his face away. She bent timidly around till her breath stirred his curls and whispered, "I--love--you!" Then she sprang away and ran around and around the desks and benches, with Tom after her, and took refuge in a corner at last, with her little white apron to her face. Tom clasped her about her neck and pleaded: "Now, Becky, it's all done--all over but the kiss. Don't you be afraid of that--it ain't anything at all. Please, Becky." And he tugged at her apron and the hands. By and by she gave up, and let her hands drop; her face, all glowing with the struggle, came up and submitted. Tom kissed the red lips and said: "Now it's all done, Becky. And always after this, you know, you ain't ever to love anybody but me, and you ain't ever to marry anybody but me, ever never and forever. Will you?" "No, I'll never love anybody but you, Tom, and I'll never marry anybody but you--and you ain't to ever marry anybody but me, either." "Certainly. Of course. That's PART of it. And always coming to school or when we're going home, you're to walk with me, when there ain't anybody looking--and you choose me and I choose you at parties, because that's the way you do when you're engaged." "It's so nice. I never heard of it before." "Oh, it's ever so gay! Why, me and Amy Lawrence--" The big eyes told Tom his blunder and he stopped, confused. "Oh, Tom! Then I ain't the first you've ever been engaged to!" The child began to cry. Tom said: "Oh, don't cry, Becky, I don't care for her any more." "Yes, you do, Tom--you know you do." Tom tried to put his arm about her neck, but she pushed him away and turned her face to the wall, and went on crying. Tom tried again, with soothing words in his mouth, and was repulsed again. Then his pride was up, and he strode away and went outside. He stood about, restless and uneasy, for a while, glancing at the door, every now and then, hoping she would repent and come to find him. But she did not. Then he began to feel badly and fear that he was in the wrong. It was a hard struggle with him to make new advances, now, but he nerved himself to it and entered. She was still standing back there in the corner, sobbing, with her face to the wall. Tom's heart smote him. He went to her and stood a moment, not knowing exactly how to proceed. Then he said hesitatingly: "Becky, I--I don't care for anybody but you." No reply--but sobs. "Becky"--pleadingly. "Becky, won't you say something?" More sobs. Tom got out his chiefest jewel, a brass knob from the top of an andiron, and passed it around her so that she could see it, and said: "Please, Becky, won't you take it?" She struck it to the floor. Then Tom marched out of the house and over the hills and far away, to return to school no more that day. Presently Becky began to suspect. She ran to the door; he was not in sight; she flew around to the play-yard; he was not there. Then she called: "Tom! Come back, Tom!" She listened intently, but there was no answer. She had no companions but silence and loneliness. So she sat down to cry again and upbraid herself; and by this time the scholars began to gather again, and she had to hide her griefs and still her broken heart and take up the cross of a long, dreary, aching afternoon, with none among the strangers about her to exchange sorrows with. CHAPTER VIII TOM dodged hither and thither through lanes until he was well out of the track of returning scholars, and then fell into a moody jog. He crossed a small "branch" two or three times, because of a prevailing juvenile superstition that to cross water baffled pursuit. Half an hour later he was disappearing behind the Douglas mansion on the summit of Cardiff Hill, and the schoolhouse was hardly distinguishable away off in the valley behind him. He entered a dense wood, picked his pathless way to the centre of it, and sat down on a mossy spot under a spreading oak. There was not even a zephyr stirring; the dead noonday heat had even stilled the songs of the birds; nature lay in a trance that was broken by no sound but the occasional far-off hammering of a woodpecker, and this seemed to render the pervading silence and sense of loneliness the more profound. The boy's soul was steeped in melancholy; his feelings were in happy accord with his surroundings. He sat long with his elbows on his knees and his chin in his hands, meditating. It seemed to him that life was but a trouble, at best, and he more than half envied Jimmy Hodges, so lately released; it must be very peaceful, he thought, to lie and slumber and dream forever and ever, with the wind whispering through the trees and caressing the grass and the flowers over the grave, and nothing to bother and grieve about, ever any more. If he only had a clean Sunday-school record he could be willing to go, and be done with it all. Now as to this girl. What had he done? Nothing. He had meant the best in the world, and been treated like a dog--like a very dog. She would be sorry some day--maybe when it was too late. Ah, if he could only die TEMPORARILY! But the elastic heart of youth cannot be compressed into one constrained shape long at a time. Tom presently began to drift insensibly back into the concerns of this life again. What if he turned his back, now, and disappeared mysteriously? What if he went away--ever so far away, into unknown countries beyond the seas--and never came back any more! How would she feel then! The idea of being a clown recurred to him now, only to fill him with disgust. For frivolity and jokes and spotted tights were an offense, when they intruded themselves upon a spirit that was exalted into the vague august realm of the romantic. No, he would be a soldier, and return after long years, all war-worn and illustrious. No--better still, he would join the Indians, and hunt buffaloes and go on the warpath in the mountain ranges and the trackless great plains of the Far West, and away in the future come back a great chief, bristling with feathers, hideous with paint, and prance into Sunday-school, some drowsy summer morning, with a bloodcurdling war-whoop, and sear the eyeballs of all his companions with unappeasable envy. But no, there was something gaudier even than this. He would be a pirate! That was it! NOW his future lay plain before him, and glowing with unimaginable splendor. How his name would fill the world, and make people shudder! How gloriously he would go plowing the dancing seas, in his long, low, black-hulled racer, the Spirit of the Storm, with his grisly flag flying at the fore! And at the zenith of his fame, how he would suddenly appear at the old village and stalk into church, brown and weather-beaten, in his black velvet doublet and trunks, his great jack-boots, his crimson sash, his belt bristling with horse-pistols, his crime-rusted cutlass at his side, his slouch hat with waving plumes, his black flag unfurled, with the skull and crossbones on it, and hear with swelling ecstasy the whisperings, "It's Tom Sawyer the Pirate!--the Black Avenger of the Spanish Main!" Yes, it was settled; his career was determined. He would run away from home and enter upon it. He would start the very next morning. Therefore he must now begin to get ready. He would collect his resources together. He went to a rotten log near at hand and began to dig under one end of it with his Barlow knife. He soon struck wood that sounded hollow. He put his hand there and uttered this incantation impressively: "What hasn't come here, come! What's here, stay here!" Then he scraped away the dirt, and exposed a pine shingle. He took it up and disclosed a shapely little treasure-house whose bottom and sides were of shingles. In it lay a marble. Tom's astonishment was boundless! He scratched his head with a perplexed air, and said: "Well, that beats anything!" Then he tossed the marble away pettishly, and stood cogitating. The truth was, that a superstition of his had failed, here, which he and all his comrades had always looked upon as infallible. If you buried a marble with certain necessary incantations, and left it alone a fortnight, and then opened the place with the incantation he had just used, you would find that all the marbles you had ever lost had gathered themselves together there, meantime, no matter how widely they had been separated. But now, this thing had actually and unquestionably failed. Tom's whole structure of faith was shaken to its foundations. He had many a time heard of this thing succeeding but never of its failing before. It did not occur to him that he had tried it several times before, himself, but could never find the hiding-places afterward. He puzzled over the matter some time, and finally decided that some witch had interfered and broken the charm. He thought he would satisfy himself on that point; so he searched around till he found a small sandy spot with a little funnel-shaped depression in it. He laid himself down and put his mouth close to this depression and called-- "Doodle-bug, doodle-bug, tell me what I want to know! Doodle-bug, doodle-bug, tell me what I want to know!" The sand began to work, and presently a small black bug appeared for a second and then darted under again in a fright. "He dasn't tell! So it WAS a witch that done it. I just knowed it." He well knew the futility of trying to contend against witches, so he gave up discouraged. But it occurred to him that he might as well have the marble he had just thrown away, and therefore he went and made a patient search for it. But he could not find it. Now he went back to his treasure-house and carefully placed himself just as he had been standing when he tossed the marble away; then he took another marble from his pocket and tossed it in the same way, saying: "Brother, go find your brother!" He watched where it stopped, and went there and looked. But it must have fallen short or gone too far; so he tried twice more. The last repetition was successful. The two marbles lay within a foot of each other. Just here the blast of a toy tin trumpet came faintly down the green aisles of the forest. Tom flung off his jacket and trousers, turned a suspender into a belt, raked away some brush behind the rotten log, disclosing a rude bow and arrow, a lath sword and a tin trumpet, and in a moment had seized these things and bounded away, barelegged, with fluttering shirt. He presently halted under a great elm, blew an answering blast, and then began to tiptoe and look warily out, this way and that. He said cautiously--to an imaginary company: "Hold, my merry men! Keep hid till I blow." Now appeared Joe Harper, as airily clad and elaborately armed as Tom. Tom called: "Hold! Who comes here into Sherwood Forest without my pass?" "Guy of Guisborne wants no man's pass. Who art thou that--that--" "Dares to hold such language," said Tom, prompting--for they talked "by the book," from memory. "Who art thou that dares to hold such language?" "I, indeed! I am Robin Hood, as thy caitiff carcase soon shall know." "Then art thou indeed that famous outlaw? Right gladly will I dispute with thee the passes of the merry wood. Have at thee!" They took their lath swords, dumped their other traps on the ground, struck a fencing attitude, foot to foot, and began a grave, careful combat, "two up and two down." Presently Tom said: "Now, if you've got the hang, go it lively!" So they "went it lively," panting and perspiring with the work. By and by Tom shouted: "Fall! fall! Why don't you fall?" "I sha'n't! Why don't you fall yourself? You're getting the worst of it." "Why, that ain't anything. I can't fall; that ain't the way it is in the book. The book says, 'Then with one back-handed stroke he slew poor Guy of Guisborne.' You're to turn around and let me hit you in the back." There was no getting around the authorities, so Joe turned, received the whack and fell. "Now," said Joe, getting up, "you got to let me kill YOU. That's fair." "Why, I can't do that, it ain't in the book." "Well, it's blamed mean--that's all." "Well, say, Joe, you can be Friar Tuck or Much the miller's son, and lam me with a quarter-staff; or I'll be the Sheriff of Nottingham and you be Robin Hood a little while and kill me." This was satisfactory, and so these adventures were carried out. Then Tom became Robin Hood again, and was allowed by the treacherous nun to bleed his strength away through his neglected wound. And at last Joe, representing a whole tribe of weeping outlaws, dragged him sadly forth, gave his bow into his feeble hands, and Tom said, "Where this arrow falls, there bury poor Robin Hood under the greenwood tree." Then he shot the arrow and fell back and would have died, but he lit on a nettle and sprang up too gaily for a corpse. The boys dressed themselves, hid their accoutrements, and went off grieving that there were no outlaws any more, and wondering what modern civilization could claim to have done to compensate for their loss. They said they would rather be outlaws a year in Sherwood Forest than President of the United States forever. CHAPTER IX AT half-past nine, that night, Tom and Sid were sent to bed, as usual. They said their prayers, and Sid was soon asleep. Tom lay awake and waited, in restless impatience. When it seemed to him that it must be nearly daylight, he heard the clock strike ten! This was despair. He would have tossed and fidgeted, as his nerves demanded, but he was afraid he might wake Sid. So he lay still, and stared up into the dark. Everything was dismally still. By and by, out of the stillness, little, scarcely perceptible noises began to emphasize themselves. The ticking of the clock began to bring itself into notice. Old beams began to crack mysteriously. The stairs creaked faintly. Evidently spirits were abroad. A measured, muffled snore issued from Aunt Polly's chamber. And now the tiresome chirping of a cricket that no human ingenuity could locate, began. Next the ghastly ticking of a deathwatch in the wall at the bed's head made Tom shudder--it meant that somebody's days were numbered. Then the howl of a far-off dog rose on the night air, and was answered by a fainter howl from a remoter distance. Tom was in an agony. At last he was satisfied that time had ceased and eternity begun; he began to doze, in spite of himself; the clock chimed eleven, but he did not hear it. And then there came, mingling with his half-formed dreams, a most melancholy caterwauling. The raising of a neighboring window disturbed him. A cry of "Scat! you devil!" and the crash of an empty bottle against the back of his aunt's woodshed brought him wide awake, and a single minute later he was dressed and out of the window and creeping along the roof of the "ell" on all fours. He "meow'd" with caution once or twice, as he went; then jumped to the roof of the woodshed and thence to the ground. Huckleberry Finn was there, with his dead cat. The boys moved off and disappeared in the gloom. At the end of half an hour they were wading through the tall grass of the graveyard. It was a graveyard of the old-fashioned Western kind. It was on a hill, about a mile and a half from the village. It had a crazy board fence around it, which leaned inward in places, and outward the rest of the time, but stood upright nowhere. Grass and weeds grew rank over the whole cemetery. All the old graves were sunken in, there was not a tombstone on the place; round-topped, worm-eaten boards staggered over the graves, leaning for support and finding none. "Sacred to the memory of" So-and-So had been painted on them once, but it could no longer have been read, on the most of them, now, even if there had been light. A faint wind moaned through the trees, and Tom feared it might be the spirits of the dead, complaining at being disturbed. The boys talked little, and only under their breath, for the time and the place and the pervading solemnity and silence oppressed their spirits. They found the sharp new heap they were seeking, and ensconced themselves within the protection of three great elms that grew in a bunch within a few feet of the grave. Then they waited in silence for what seemed a long time. The hooting of a distant owl was all the sound that troubled the dead stillness. Tom's reflections grew oppressive. He must force some talk. So he said in a whisper: "Hucky, do you believe the dead people like it for us to be here?" Huckleberry whispered: "I wisht I knowed. It's awful solemn like, AIN'T it?" "I bet it is." There was a considerable pause, while the boys canvassed this matter inwardly. Then Tom whispered: "Say, Hucky--do you reckon Hoss Williams hears us talking?" "O' course he does. Least his sperrit does." Tom, after a pause: "I wish I'd said Mister Williams. But I never meant any harm. Everybody calls him Hoss." "A body can't be too partic'lar how they talk 'bout these-yer dead people, Tom." This was a damper, and conversation died again. Presently Tom seized his comrade's arm and said: "Sh!" "What is it, Tom?" And the two clung together with beating hearts. "Sh! There 'tis again! Didn't you hear it?" "I--" "There! Now you hear it." "Lord, Tom, they're coming! They're coming, sure. What'll we do?" "I dono. Think they'll see us?" "Oh, Tom, they can see in the dark, same as cats. I wisht I hadn't come." "Oh, don't be afeard. I don't believe they'll bother us. We ain't doing any harm. If we keep perfectly still, maybe they won't notice us at all." "I'll try to, Tom, but, Lord, I'm all of a shiver." "Listen!" The boys bent their heads together and scarcely breathed. A muffled sound of voices floated up from the far end of the graveyard. "Look! See there!" whispered Tom. "What is it?" "It's devil-fire. Oh, Tom, this is awful." Some vague figures approached through the gloom, swinging an old-fashioned tin lantern that freckled the ground with innumerable little spangles of light. Presently Huckleberry whispered with a shudder: "It's the devils sure enough. Three of 'em! Lordy, Tom, we're goners! Can you pray?" "I'll try, but don't you be afeard. They ain't going to hurt us. 'Now I lay me down to sleep, I--'" "Sh!" "What is it, Huck?" "They're HUMANS! One of 'em is, anyway. One of 'em's old Muff Potter's voice." "No--'tain't so, is it?" "I bet I know it. Don't you stir nor budge. He ain't sharp enough to notice us. Drunk, the same as usual, likely--blamed old rip!" "All right, I'll keep still. Now they're stuck. Can't find it. Here they come again. Now they're hot. Cold again. Hot again. Red hot! They're p'inted right, this time. Say, Huck, I know another o' them voices; it's Injun Joe." "That's so--that murderin' half-breed! I'd druther they was devils a dern sight. What kin they be up to?" The whisper died wholly out, now, for the three men had reached the grave and stood within a few feet of the boys' hiding-place. "Here it is," said the third voice; and the owner of it held the lantern up and revealed the face of young Doctor Robinson. Potter and Injun Joe were carrying a handbarrow with a rope and a couple of shovels on it. They cast down their load and began to open the grave. The doctor put the lantern at the head of the grave and came and sat down with his back against one of the elm trees. He was so close the boys could have touched him. "Hurry, men!" he said, in a low voice; "the moon might come out at any moment." They growled a response and went on digging. For some time there was no noise but the grating sound of the spades discharging their freight of mould and gravel. It was very monotonous. Finally a spade struck upon the coffin with a dull woody accent, and within another minute or two the men had hoisted it out on the ground. They pried off the lid with their shovels, got out the body and dumped it rudely on the ground. The moon drifted from behind the clouds and exposed the pallid face. The barrow was got ready and the corpse placed on it, covered with a blanket, and bound to its place with the rope. Potter took out a large spring-knife and cut off the dangling end of the rope and then said: "Now the cussed thing's ready, Sawbones, and you'll just out with another five, or here she stays." "That's the talk!" said Injun Joe. "Look here, what does this mean?" said the doctor. "You required your pay in advance, and I've paid you." "Yes, and you done more than that," said Injun Joe, approaching the doctor, who was now standing. "Five years ago you drove me away from your father's kitchen one night, when I come to ask for something to eat, and you said I warn't there for any good; and when I swore I'd get even with you if it took a hundred years, your father had me jailed for a vagrant. Did you think I'd forget? The Injun blood ain't in me for nothing. And now I've GOT you, and you got to SETTLE, you know!" He was threatening the doctor, with his fist in his face, by this time. The doctor struck out suddenly and stretched the ruffian on the ground. Potter dropped his knife, and exclaimed: "Here, now, don't you hit my pard!" and the next moment he had grappled with the doctor and the two were struggling with might and main, trampling the grass and tearing the ground with their heels. Injun Joe sprang to his feet, his eyes flaming with passion, snatched up Potter's knife, and went creeping, catlike and stooping, round and round about the combatants, seeking an opportunity. All at once the doctor flung himself free, seized the heavy headboard of Williams' grave and felled Potter to the earth with it--and in the same instant the half-breed saw his chance and drove the knife to the hilt in the young man's breast. He reeled and fell partly upon Potter, flooding him with his blood, and in the same moment the clouds blotted out the dreadful spectacle and the two frightened boys went speeding away in the dark. Presently, when the moon emerged again, Injun Joe was standing over the two forms, contemplating them. The doctor murmured inarticulately, gave a long gasp or two and was still. The half-breed muttered: "THAT score is settled--damn you." Then he robbed the body. After which he put the fatal knife in Potter's open right hand, and sat down on the dismantled coffin. Three --four--five minutes passed, and then Potter began to stir and moan. His hand closed upon the knife; he raised it, glanced at it, and let it fall, with a shudder. Then he sat up, pushing the body from him, and gazed at it, and then around him, confusedly. His eyes met Joe's. "Lord, how is this, Joe?" he said. "It's a dirty business," said Joe, without moving. "What did you do it for?" "I! I never done it!" "Look here! That kind of talk won't wash." Potter trembled and grew white. "I thought I'd got sober. I'd no business to drink to-night. But it's in my head yet--worse'n when we started here. I'm all in a muddle; can't recollect anything of it, hardly. Tell me, Joe--HONEST, now, old feller--did I do it? Joe, I never meant to--'pon my soul and honor, I never meant to, Joe. Tell me how it was, Joe. Oh, it's awful--and him so young and promising." "Why, you two was scuffling, and he fetched you one with the headboard and you fell flat; and then up you come, all reeling and staggering like, and snatched the knife and jammed it into him, just as he fetched you another awful clip--and here you've laid, as dead as a wedge til now." "Oh, I didn't know what I was a-doing. I wish I may die this minute if I did. It was all on account of the whiskey and the excitement, I reckon. I never used a weepon in my life before, Joe. I've fought, but never with weepons. They'll all say that. Joe, don't tell! Say you won't tell, Joe--that's a good feller. I always liked you, Joe, and stood up for you, too. Don't you remember? You WON'T tell, WILL you, Joe?" And the poor creature dropped on his knees before the stolid murderer, and clasped his appealing hands. "No, you've always been fair and square with me, Muff Potter, and I won't go back on you. There, now, that's as fair as a man can say." "Oh, Joe, you're an angel. I'll bless you for this the longest day I live." And Potter began to cry. "Come, now, that's enough of that. This ain't any time for blubbering. You be off yonder way and I'll go this. Move, now, and don't leave any tracks behind you." Potter started on a trot that quickly increased to a run. The half-breed stood looking after him. He muttered: "If he's as much stunned with the lick and fuddled with the rum as he had the look of being, he won't think of the knife till he's gone so far he'll be afraid to come back after it to such a place by himself --chicken-heart!" Two or three minutes later the murdered man, the blanketed corpse, the lidless coffin, and the open grave were under no inspection but the moon's. The stillness was complete again, too. CHAPTER X THE two boys flew on and on, toward the village, speechless with horror. They glanced backward over their shoulders from time to time, apprehensively, as if they feared they might be followed. Every stump that started up in their path seemed a man and an enemy, and made them catch their breath; and as they sped by some outlying cottages that lay near the village, the barking of the aroused watch-dogs seemed to give wings to their feet. "If we can only get to the old tannery before we break down!" whispered Tom, in short catches between breaths. "I can't stand it much longer." Huckleberry's hard pantings were his only reply, and the boys fixed their eyes on the goal of their hopes and bent to their work to win it. They gained steadily on it, and at last, breast to breast, they burst through the open door and fell grateful and exhausted in the sheltering shadows beyond. By and by their pulses slowed down, and Tom whispered: "Huckleberry, what do you reckon'll come of this?" "If Doctor Robinson dies, I reckon hanging'll come of it." "Do you though?" "Why, I KNOW it, Tom." Tom thought a while, then he said: "Who'll tell? We?" "What are you talking about? S'pose something happened and Injun Joe DIDN'T hang? Why, he'd kill us some time or other, just as dead sure as we're a laying here." "That's just what I was thinking to myself, Huck." "If anybody tells, let Muff Potter do it, if he's fool enough. He's generally drunk enough." Tom said nothing--went on thinking. Presently he whispered: "Huck, Muff Potter don't know it. How can he tell?" "What's the reason he don't know it?" "Because he'd just got that whack when Injun Joe done it. D'you reckon he could see anything? D'you reckon he knowed anything?" "By hokey, that's so, Tom!" "And besides, look-a-here--maybe that whack done for HIM!" "No, 'taint likely, Tom. He had liquor in him; I could see that; and besides, he always has. Well, when pap's full, you might take and belt him over the head with a church and you couldn't phase him. He says so, his own self. So it's the same with Muff Potter, of course. But if a man was dead sober, I reckon maybe that whack might fetch him; I dono." After another reflective silence, Tom said: "Hucky, you sure you can keep mum?" "Tom, we GOT to keep mum. You know that. That Injun devil wouldn't make any more of drownding us than a couple of cats, if we was to squeak 'bout this and they didn't hang him. Now, look-a-here, Tom, less take and swear to one another--that's what we got to do--swear to keep mum." "I'm agreed. It's the best thing. Would you just hold hands and swear that we--" "Oh no, that wouldn't do for this. That's good enough for little rubbishy common things--specially with gals, cuz THEY go back on you anyway, and blab if they get in a huff--but there orter be writing 'bout a big thing like this. And blood." Tom's whole being applauded this idea. It was deep, and dark, and awful; the hour, the circumstances, the surroundings, were in keeping with it. He picked up a clean pine shingle that lay in the moonlight, took a little fragment of "red keel" out of his pocket, got the moon on his work, and painfully scrawled these lines, emphasizing each slow down-stroke by clamping his tongue between his teeth, and letting up the pressure on the up-strokes. [See next page.] "Huck Finn and Tom Sawyer swears they will keep mum about This and They wish They may Drop down dead in Their Tracks if They ever Tell and Rot." Huckleberry was filled with admiration of Tom's facility in writing, and the sublimity of his language. He at once took a pin from his lapel and was going to prick his flesh, but Tom said: "Hold on! Don't do that. A pin's brass. It might have verdigrease on it." "What's verdigrease?" "It's p'ison. That's what it is. You just swaller some of it once --you'll see." So Tom unwound the thread from one of his needles, and each boy pricked the ball of his thumb and squeezed out a drop of blood. In time, after many squeezes, Tom managed to sign his initials, using the ball of his little finger for a pen. Then he showed Huckleberry how to make an H and an F, and the oath was complete. They buried the shingle close to the wall, with some dismal ceremonies and incantations, and the fetters that bound their tongues were considered to be locked and the key thrown away. A figure crept stealthily through a break in the other end of the ruined building, now, but they did not notice it. "Tom," whispered Huckleberry, "does this keep us from EVER telling --ALWAYS?" "Of course it does. It don't make any difference WHAT happens, we got to keep mum. We'd drop down dead--don't YOU know that?" "Yes, I reckon that's so." They continued to whisper for some little time. Presently a dog set up a long, lugubrious howl just outside--within ten feet of them. The boys clasped each other suddenly, in an agony of fright. "Which of us does he mean?" gasped Huckleberry. "I dono--peep through the crack. Quick!" "No, YOU, Tom!" "I can't--I can't DO it, Huck!" "Please, Tom. There 'tis again!" "Oh, lordy, I'm thankful!" whispered Tom. "I know his voice. It's Bull Harbison." * [* If Mr. Harbison owned a slave named Bull, Tom would have spoken of him as "Harbison's Bull," but a son or a dog of that name was "Bull Harbison."] "Oh, that's good--I tell you, Tom, I was most scared to death; I'd a bet anything it was a STRAY dog." The dog howled again. The boys' hearts sank once more. "Oh, my! that ain't no Bull Harbison!" whispered Huckleberry. "DO, Tom!" Tom, quaking with fear, yielded, and put his eye to the crack. His whisper was hardly audible when he said: "Oh, Huck, IT S A STRAY DOG!" "Quick, Tom, quick! Who does he mean?" "Huck, he must mean us both--we're right together." "Oh, Tom, I reckon we're goners. I reckon there ain't no mistake 'bout where I'LL go to. I been so wicked." "Dad fetch it! This comes of playing hookey and doing everything a feller's told NOT to do. I might a been good, like Sid, if I'd a tried --but no, I wouldn't, of course. But if ever I get off this time, I lay I'll just WALLER in Sunday-schools!" And Tom began to snuffle a little. "YOU bad!" and Huckleberry began to snuffle too. "Consound it, Tom Sawyer, you're just old pie, 'longside o' what I am. Oh, LORDY, lordy, lordy, I wisht I only had half your chance." Tom choked off and whispered: "Look, Hucky, look! He's got his BACK to us!" Hucky looked, with joy in his heart. "Well, he has, by jingoes! Did he before?" "Yes, he did. But I, like a fool, never thought. Oh, this is bully, you know. NOW who can he mean?" The howling stopped. Tom pricked up his ears. "Sh! What's that?" he whispered. "Sounds like--like hogs grunting. No--it's somebody snoring, Tom." "That IS it! Where 'bouts is it, Huck?" "I bleeve it's down at 'tother end. Sounds so, anyway. Pap used to sleep there, sometimes, 'long with the hogs, but laws bless you, he just lifts things when HE snores. Besides, I reckon he ain't ever coming back to this town any more." The spirit of adventure rose in the boys' souls once more. "Hucky, do you das't to go if I lead?" "I don't like to, much. Tom, s'pose it's Injun Joe!" Tom quailed. But presently the temptation rose up strong again and the boys agreed to try, with the understanding that they would take to their heels if the snoring stopped. So they went tiptoeing stealthily down, the one behind the other. When they had got to within five steps of the snorer, Tom stepped on a stick, and it broke with a sharp snap. The man moaned, writhed a little, and his face came into the moonlight. It was Muff Potter. The boys' hearts had stood still, and their hopes too, when the man moved, but their fears passed away now. They tiptoed out, through the broken weather-boarding, and stopped at a little distance to exchange a parting word. That long, lugubrious howl rose on the night air again! They turned and saw the strange dog standing within a few feet of where Potter was lying, and FACING Potter, with his nose pointing heavenward. "Oh, geeminy, it's HIM!" exclaimed both boys, in a breath. "Say, Tom--they say a stray dog come howling around Johnny Miller's house, 'bout midnight, as much as two weeks ago; and a whippoorwill come in and lit on the banisters and sung, the very same evening; and there ain't anybody dead there yet." "Well, I know that. And suppose there ain't. Didn't Gracie Miller fall in the kitchen fire and burn herself terrible the very next Saturday?" "Yes, but she ain't DEAD. And what's more, she's getting better, too." "All right, you wait and see. She's a goner, just as dead sure as Muff Potter's a goner. That's what the niggers say, and they know all about these kind of things, Huck." Then they separated, cogitating. When Tom crept in at his bedroom window the night was almost spent. He undressed with excessive caution, and fell asleep congratulating himself that nobody knew of his escapade. He was not aware that the gently-snoring Sid was awake, and had been so for an hour. When Tom awoke, Sid was dressed and gone. There was a late look in the light, a late sense in the atmosphere. He was startled. Why had he not been called--persecuted till he was up, as usual? The thought filled him with bodings. Within five minutes he was dressed and down-stairs, feeling sore and drowsy. The family were still at table, but they had finished breakfast. There was no voice of rebuke; but there were averted eyes; there was a silence and an air of solemnity that struck a chill to the culprit's heart. He sat down and tried to seem gay, but it was up-hill work; it roused no smile, no response, and he lapsed into silence and let his heart sink down to the depths. After breakfast his aunt took him aside, and Tom almost brightened in the hope that he was going to be flogged; but it was not so. His aunt wept over him and asked him how he could go and break her old heart so; and finally told him to go on, and ruin himself and bring her gray hairs with sorrow to the grave, for it was no use for her to try any more. This was worse than a thousand whippings, and Tom's heart was sorer now than his body. He cried, he pleaded for forgiveness, promised to reform over and over again, and then received his dismissal, feeling that he had won but an imperfect forgiveness and established but a feeble confidence. He left the presence too miserable to even feel revengeful toward Sid; and so the latter's prompt retreat through the back gate was unnecessary. He moped to school gloomy and sad, and took his flogging, along with Joe Harper, for playing hookey the day before, with the air of one whose heart was busy with heavier woes and wholly dead to trifles. Then he betook himself to his seat, rested his elbows on his desk and his jaws in his hands, and stared at the wall with the stony stare of suffering that has reached the limit and can no further go. His elbow was pressing against some hard substance. After a long time he slowly and sadly changed his position, and took up this object with a sigh. It was in a paper. He unrolled it. A long, lingering, colossal sigh followed, and his heart broke. It was his brass andiron knob! This final feather broke the camel's back. CHAPTER XI CLOSE upon the hour of noon the whole village was suddenly electrified with the ghastly news. No need of the as yet undreamed-of telegraph; the tale flew from man to man, from group to group, from house to house, with little less than telegraphic speed. Of course the schoolmaster gave holiday for that afternoon; the town would have thought strangely of him if he had not. A gory knife had been found close to the murdered man, and it had been recognized by somebody as belonging to Muff Potter--so the story ran. And it was said that a belated citizen had come upon Potter washing himself in the "branch" about one or two o'clock in the morning, and that Potter had at once sneaked off--suspicious circumstances, especially the washing which was not a habit with Potter. It was also said that the town had been ransacked for this "murderer" (the public are not slow in the matter of sifting evidence and arriving at a verdict), but that he could not be found. Horsemen had departed down all the roads in every direction, and the Sheriff "was confident" that he would be captured before night. All the town was drifting toward the graveyard. Tom's heartbreak vanished and he joined the procession, not because he would not a thousand times rather go anywhere else, but because an awful, unaccountable fascination drew him on. Arrived at the dreadful place, he wormed his small body through the crowd and saw the dismal spectacle. It seemed to him an age since he was there before. Somebody pinched his arm. He turned, and his eyes met Huckleberry's. Then both looked elsewhere at once, and wondered if anybody had noticed anything in their mutual glance. But everybody was talking, and intent upon the grisly spectacle before them. "Poor fellow!" "Poor young fellow!" "This ought to be a lesson to grave robbers!" "Muff Potter'll hang for this if they catch him!" This was the drift of remark; and the minister said, "It was a judgment; His hand is here." Now Tom shivered from head to heel; for his eye fell upon the stolid face of Injun Joe. At this moment the crowd began to sway and struggle, and voices shouted, "It's him! it's him! he's coming himself!" "Who? Who?" from twenty voices. "Muff Potter!" "Hallo, he's stopped!--Look out, he's turning! Don't let him get away!" People in the branches of the trees over Tom's head said he wasn't trying to get away--he only looked doubtful and perplexed. "Infernal impudence!" said a bystander; "wanted to come and take a quiet look at his work, I reckon--didn't expect any company." The crowd fell apart, now, and the Sheriff came through, ostentatiously leading Potter by the arm. The poor fellow's face was haggard, and his eyes showed the fear that was upon him. When he stood before the murdered man, he shook as with a palsy, and he put his face in his hands and burst into tears. "I didn't do it, friends," he sobbed; "'pon my word and honor I never done it." "Who's accused you?" shouted a voice. This shot seemed to carry home. Potter lifted his face and looked around him with a pathetic hopelessness in his eyes. He saw Injun Joe, and exclaimed: "Oh, Injun Joe, you promised me you'd never--" "Is that your knife?" and it was thrust before him by the Sheriff. Potter would have fallen if they had not caught him and eased him to the ground. Then he said: "Something told me 't if I didn't come back and get--" He shuddered; then waved his nerveless hand with a vanquished gesture and said, "Tell 'em, Joe, tell 'em--it ain't any use any more." Then Huckleberry and Tom stood dumb and staring, and heard the stony-hearted liar reel off his serene statement, they expecting every moment that the clear sky would deliver God's lightnings upon his head, and wondering to see how long the stroke was delayed. And when he had finished and still stood alive and whole, their wavering impulse to break their oath and save the poor betrayed prisoner's life faded and vanished away, for plainly this miscreant had sold himself to Satan and it would be fatal to meddle with the property of such a power as that. "Why didn't you leave? What did you want to come here for?" somebody said. "I couldn't help it--I couldn't help it," Potter moaned. "I wanted to run away, but I couldn't seem to come anywhere but here." And he fell to sobbing again. Injun Joe repeated his statement, just as calmly, a few minutes afterward on the inquest, under oath; and the boys, seeing that the lightnings were still withheld, were confirmed in their belief that Joe had sold himself to the devil. He was now become, to them, the most balefully interesting object they had ever looked upon, and they could not take their fascinated eyes from his face. They inwardly resolved to watch him nights, when opportunity should offer, in the hope of getting a glimpse of his dread master. Injun Joe helped to raise the body of the murdered man and put it in a wagon for removal; and it was whispered through the shuddering crowd that the wound bled a little! The boys thought that this happy circumstance would turn suspicion in the right direction; but they were disappointed, for more than one villager remarked: "It was within three feet of Muff Potter when it done it." Tom's fearful secret and gnawing conscience disturbed his sleep for as much as a week after this; and at breakfast one morning Sid said: "Tom, you pitch around and talk in your sleep so much that you keep me awake half the time." Tom blanched and dropped his eyes. "It's a bad sign," said Aunt Polly, gravely. "What you got on your mind, Tom?" "Nothing. Nothing 't I know of." But the boy's hand shook so that he spilled his coffee. "And you do talk such stuff," Sid said. "Last night you said, 'It's blood, it's blood, that's what it is!' You said that over and over. And you said, 'Don't torment me so--I'll tell!' Tell WHAT? What is it you'll tell?" Everything was swimming before Tom. There is no telling what might have happened, now, but luckily the concern passed out of Aunt Polly's face and she came to Tom's relief without knowing it. She said: "Sho! It's that dreadful murder. I dream about it most every night myself. Sometimes I dream it's me that done it." Mary said she had been affected much the same way. Sid seemed satisfied. Tom got out of the presence as quick as he plausibly could, and after that he complained of toothache for a week, and tied up his jaws every night. He never knew that Sid lay nightly watching, and frequently slipped the bandage free and then leaned on his elbow listening a good while at a time, and afterward slipped the bandage back to its place again. Tom's distress of mind wore off gradually and the toothache grew irksome and was discarded. If Sid really managed to make anything out of Tom's disjointed mutterings, he kept it to himself. It seemed to Tom that his schoolmates never would get done holding inquests on dead cats, and thus keeping his trouble present to his mind. Sid noticed that Tom never was coroner at one of these inquiries, though it had been his habit to take the lead in all new enterprises; he noticed, too, that Tom never acted as a witness--and that was strange; and Sid did not overlook the fact that Tom even showed a marked aversion to these inquests, and always avoided them when he could. Sid marvelled, but said nothing. However, even inquests went out of vogue at last, and ceased to torture Tom's conscience. Every day or two, during this time of sorrow, Tom watched his opportunity and went to the little grated jail-window and smuggled such small comforts through to the "murderer" as he could get hold of. The jail was a trifling little brick den that stood in a marsh at the edge of the village, and no guards were afforded for it; indeed, it was seldom occupied. These offerings greatly helped to ease Tom's conscience. The villagers had a strong desire to tar-and-feather Injun Joe and ride him on a rail, for body-snatching, but so formidable was his character that nobody could be found who was willing to take the lead in the matter, so it was dropped. He had been careful to begin both of his inquest-statements with the fight, without confessing the grave-robbery that preceded it; therefore it was deemed wisest not to try the case in the courts at present. CHAPTER XII ONE of the reasons why Tom's mind had drifted away from its secret troubles was, that it had found a new and weighty matter to interest itself about. Becky Thatcher had stopped coming to school. Tom had struggled with his pride a few days, and tried to "whistle her down the wind," but failed. He began to find himself hanging around her father's house, nights, and feeling very miserable. She was ill. What if she should die! There was distraction in the thought. He no longer took an interest in war, nor even in piracy. The charm of life was gone; there was nothing but dreariness left. He put his hoop away, and his bat; there was no joy in them any more. His aunt was concerned. She began to try all manner of remedies on him. She was one of those people who are infatuated with patent medicines and all new-fangled methods of producing health or mending it. She was an inveterate experimenter in these things. When something fresh in this line came out she was in a fever, right away, to try it; not on herself, for she was never ailing, but on anybody else that came handy. She was a subscriber for all the "Health" periodicals and phrenological frauds; and the solemn ignorance they were inflated with was breath to her nostrils. All the "rot" they contained about ventilation, and how to go to bed, and how to get up, and what to eat, and what to drink, and how much exercise to take, and what frame of mind to keep one's self in, and what sort of clothing to wear, was all gospel to her, and she never observed that her health-journals of the current month customarily upset everything they had recommended the month before. She was as simple-hearted and honest as the day was long, and so she was an easy victim. She gathered together her quack periodicals and her quack medicines, and thus armed with death, went about on her pale horse, metaphorically speaking, with "hell following after." But she never suspected that she was not an angel of healing and the balm of Gilead in disguise, to the suffering neighbors. The water treatment was new, now, and Tom's low condition was a windfall to her. She had him out at daylight every morning, stood him up in the woodshed and drowned him with a deluge of cold water; then she scrubbed him down with a towel like a file, and so brought him to; then she rolled him up in a wet sheet and put him away under blankets till she sweated his soul clean and "the yellow stains of it came through his pores"--as Tom said. Yet notwithstanding all this, the boy grew more and more melancholy and pale and dejected. She added hot baths, sitz baths, shower baths, and plunges. The boy remained as dismal as a hearse. She began to assist the water with a slim oatmeal diet and blister-plasters. She calculated his capacity as she would a jug's, and filled him up every day with quack cure-alls. Tom had become indifferent to persecution by this time. This phase filled the old lady's heart with consternation. This indifference must be broken up at any cost. Now she heard of Pain-killer for the first time. She ordered a lot at once. She tasted it and was filled with gratitude. It was simply fire in a liquid form. She dropped the water treatment and everything else, and pinned her faith to Pain-killer. She gave Tom a teaspoonful and watched with the deepest anxiety for the result. Her troubles were instantly at rest, her soul at peace again; for the "indifference" was broken up. The boy could not have shown a wilder, heartier interest, if she had built a fire under him. Tom felt that it was time to wake up; this sort of life might be romantic enough, in his blighted condition, but it was getting to have too little sentiment and too much distracting variety about it. So he thought over various plans for relief, and finally hit pon that of professing to be fond of Pain-killer. He asked for it so often that he became a nuisance, and his aunt ended by telling him to help himself and quit bothering her. If it had been Sid, she would have had no misgivings to alloy her delight; but since it was Tom, she watched the bottle clandestinely. She found that the medicine did really diminish, but it did not occur to her that the boy was mending the health of a crack in the sitting-room floor with it. One day Tom was in the act of dosing the crack when his aunt's yellow cat came along, purring, eying the teaspoon avariciously, and begging for a taste. Tom said: "Don't ask for it unless you want it, Peter." But Peter signified that he did want it. "You better make sure." Peter was sure. "Now you've asked for it, and I'll give it to you, because there ain't anything mean about me; but if you find you don't like it, you mustn't blame anybody but your own self." Peter was agreeable. So Tom pried his mouth open and poured down the Pain-killer. Peter sprang a couple of yards in the air, and then delivered a war-whoop and set off round and round the room, banging against furniture, upsetting flower-pots, and making general havoc. Next he rose on his hind feet and pranced around, in a frenzy of enjoyment, with his head over his shoulder and his voice proclaiming his unappeasable happiness. Then he went tearing around the house again spreading chaos and destruction in his path. Aunt Polly entered in time to see him throw a few double summersets, deliver a final mighty hurrah, and sail through the open window, carrying the rest of the flower-pots with him. The old lady stood petrified with astonishment, peering over her glasses; Tom lay on the floor expiring with laughter. "Tom, what on earth ails that cat?" "I don't know, aunt," gasped the boy. "Why, I never see anything like it. What did make him act so?" "Deed I don't know, Aunt Polly; cats always act so when they're having a good time." "They do, do they?" There was something in the tone that made Tom apprehensive. "Yes'm. That is, I believe they do." "You DO?" "Yes'm." The old lady was bending down, Tom watching, with interest emphasized by anxiety. Too late he divined her "drift." The handle of the telltale teaspoon was visible under the bed-valance. Aunt Polly took it, held it up. Tom winced, and dropped his eyes. Aunt Polly raised him by the usual handle--his ear--and cracked his head soundly with her thimble. "Now, sir, what did you want to treat that poor dumb beast so, for?" "I done it out of pity for him--because he hadn't any aunt." "Hadn't any aunt!--you numskull. What has that got to do with it?" "Heaps. Because if he'd had one she'd a burnt him out herself! She'd a roasted his bowels out of him 'thout any more feeling than if he was a human!" Aunt Polly felt a sudden pang of remorse. This was putting the thing in a new light; what was cruelty to a cat MIGHT be cruelty to a boy, too. She began to soften; she felt sorry. Her eyes watered a little, and she put her hand on Tom's head and said gently: "I was meaning for the best, Tom. And, Tom, it DID do you good." Tom looked up in her face with just a perceptible twinkle peeping through his gravity. "I know you was meaning for the best, aunty, and so was I with Peter. It done HIM good, too. I never see him get around so since--" "Oh, go 'long with you, Tom, before you aggravate me again. And you try and see if you can't be a good boy, for once, and you needn't take any more medicine." Tom reached school ahead of time. It was noticed that this strange thing had been occurring every day latterly. And now, as usual of late, he hung about the gate of the schoolyard instead of playing with his comrades. He was sick, he said, and he looked it. He tried to seem to be looking everywhere but whither he really was looking--down the road. Presently Jeff Thatcher hove in sight, and Tom's face lighted; he gazed a moment, and then turned sorrowfully away. When Jeff arrived, Tom accosted him; and "led up" warily to opportunities for remark about Becky, but the giddy lad never could see the bait. Tom watched and watched, hoping whenever a frisking frock came in sight, and hating the owner of it as soon as he saw she was not the right one. At last frocks ceased to appear, and he dropped hopelessly into the dumps; he entered the empty schoolhouse and sat down to suffer. Then one more frock passed in at the gate, and Tom's heart gave a great bound. The next instant he was out, and "going on" like an Indian; yelling, laughing, chasing boys, jumping over the fence at risk of life and limb, throwing handsprings, standing on his head--doing all the heroic things he could conceive of, and keeping a furtive eye out, all the while, to see if Becky Thatcher was noticing. But she seemed to be unconscious of it all; she never looked. Could it be possible that she was not aware that he was there? He carried his exploits to her immediate vicinity; came war-whooping around, snatched a boy's cap, hurled it to the roof of the schoolhouse, broke through a group of boys, tumbling them in every direction, and fell sprawling, himself, under Becky's nose, almost upsetting her--and she turned, with her nose in the air, and he heard her say: "Mf! some people think they're mighty smart--always showing off!" Tom's cheeks burned. He gathered himself up and sneaked off, crushed and crestfallen. CHAPTER XIII TOM'S mind was made up now. He was gloomy and desperate. He was a forsaken, friendless boy, he said; nobody loved him; when they found out what they had driven him to, perhaps they would be sorry; he had tried to do right and get along, but they would not let him; since nothing would do them but to be rid of him, let it be so; and let them blame HIM for the consequences--why shouldn't they? What right had the friendless to complain? Yes, they had forced him to it at last: he would lead a life of crime. There was no choice. By this time he was far down Meadow Lane, and the bell for school to "take up" tinkled faintly upon his ear. He sobbed, now, to think he should never, never hear that old familiar sound any more--it was very hard, but it was forced on him; since he was driven out into the cold world, he must submit--but he forgave them. Then the sobs came thick and fast. Just at this point he met his soul's sworn comrade, Joe Harper --hard-eyed, and with evidently a great and dismal purpose in his heart. Plainly here were "two souls with but a single thought." Tom, wiping his eyes with his sleeve, began to blubber out something about a resolution to escape from hard usage and lack of sympathy at home by roaming abroad into the great world never to return; and ended by hoping that Joe would not forget him. But it transpired that this was a request which Joe had just been going to make of Tom, and had come to hunt him up for that purpose. His mother had whipped him for drinking some cream which he had never tasted and knew nothing about; it was plain that she was tired of him and wished him to go; if she felt that way, there was nothing for him to do but succumb; he hoped she would be happy, and never regret having driven her poor boy out into the unfeeling world to suffer and die. As the two boys walked sorrowing along, they made a new compact to stand by each other and be brothers and never separate till death relieved them of their troubles. Then they began to lay their plans. Joe was for being a hermit, and living on crusts in a remote cave, and dying, some time, of cold and want and grief; but after listening to Tom, he conceded that there were some conspicuous advantages about a life of crime, and so he consented to be a pirate. Three miles below St. Petersburg, at a point where the Mississippi River was a trifle over a mile wide, there was a long, narrow, wooded island, with a shallow bar at the head of it, and this offered well as a rendezvous. It was not inhabited; it lay far over toward the further shore, abreast a dense and almost wholly unpeopled forest. So Jackson's Island was chosen. Who were to be the subjects of their piracies was a matter that did not occur to them. Then they hunted up Huckleberry Finn, and he joined them promptly, for all careers were one to him; he was indifferent. They presently separated to meet at a lonely spot on the river-bank two miles above the village at the favorite hour--which was midnight. There was a small log raft there which they meant to capture. Each would bring hooks and lines, and such provision as he could steal in the most dark and mysterious way--as became outlaws. And before the afternoon was done, they had all managed to enjoy the sweet glory of spreading the fact that pretty soon the town would "hear something." All who got this vague hint were cautioned to "be mum and wait." About midnight Tom arrived with a boiled ham and a few trifles, and stopped in a dense undergrowth on a small bluff overlooking the meeting-place. It was starlight, and very still. The mighty river lay like an ocean at rest. Tom listened a moment, but no sound disturbed the quiet. Then he gave a low, distinct whistle. It was answered from under the bluff. Tom whistled twice more; these signals were answered in the same way. Then a guarded voice said: "Who goes there?" "Tom Sawyer, the Black Avenger of the Spanish Main. Name your names." "Huck Finn the Red-Handed, and Joe Harper the Terror of the Seas." Tom had furnished these titles, from his favorite literature. "'Tis well. Give the countersign." Two hoarse whispers delivered the same awful word simultaneously to the brooding night: "BLOOD!" Then Tom tumbled his ham over the bluff and let himself down after it, tearing both skin and clothes to some extent in the effort. There was an easy, comfortable path along the shore under the bluff, but it lacked the advantages of difficulty and danger so valued by a pirate. The Terror of the Seas had brought a side of bacon, and had about worn himself out with getting it there. Finn the Red-Handed had stolen a skillet and a quantity of half-cured leaf tobacco, and had also brought a few corn-cobs to make pipes with. But none of the pirates smoked or "chewed" but himself. The Black Avenger of the Spanish Main said it would never do to start without some fire. That was a wise thought; matches were hardly known there in that day. They saw a fire smouldering upon a great raft a hundred yards above, and they went stealthily thither and helped themselves to a chunk. They made an imposing adventure of it, saying, "Hist!" every now and then, and suddenly halting with finger on lip; moving with hands on imaginary dagger-hilts; and giving orders in dismal whispers that if "the foe" stirred, to "let him have it to the hilt," because "dead men tell no tales." They knew well enough that the raftsmen were all down at the village laying in stores or having a spree, but still that was no excuse for their conducting this thing in an unpiratical way. They shoved off, presently, Tom in command, Huck at the after oar and Joe at the forward. Tom stood amidships, gloomy-browed, and with folded arms, and gave his orders in a low, stern whisper: "Luff, and bring her to the wind!" "Aye-aye, sir!" "Steady, steady-y-y-y!" "Steady it is, sir!" "Let her go off a point!" "Point it is, sir!" As the boys steadily and monotonously drove the raft toward mid-stream it was no doubt understood that these orders were given only for "style," and were not intended to mean anything in particular. "What sail's she carrying?" "Courses, tops'ls, and flying-jib, sir." "Send the r'yals up! Lay out aloft, there, half a dozen of ye --foretopmaststuns'l! Lively, now!" "Aye-aye, sir!" "Shake out that maintogalans'l! Sheets and braces! NOW my hearties!" "Aye-aye, sir!" "Hellum-a-lee--hard a port! Stand by to meet her when she comes! Port, port! NOW, men! With a will! Stead-y-y-y!" "Steady it is, sir!" The raft drew beyond the middle of the river; the boys pointed her head right, and then lay on their oars. The river was not high, so there was not more than a two or three mile current. Hardly a word was said during the next three-quarters of an hour. Now the raft was passing before the distant town. Two or three glimmering lights showed where it lay, peacefully sleeping, beyond the vague vast sweep of star-gemmed water, unconscious of the tremendous event that was happening. The Black Avenger stood still with folded arms, "looking his last" upon the scene of his former joys and his later sufferings, and wishing "she" could see him now, abroad on the wild sea, facing peril and death with dauntless heart, going to his doom with a grim smile on his lips. It was but a small strain on his imagination to remove Jackson's Island beyond eyeshot of the village, and so he "looked his last" with a broken and satisfied heart. The other pirates were looking their last, too; and they all looked so long that they came near letting the current drift them out of the range of the island. But they discovered the danger in time, and made shift to avert it. About two o'clock in the morning the raft grounded on the bar two hundred yards above the head of the island, and they waded back and forth until they had landed their freight. Part of the little raft's belongings consisted of an old sail, and this they spread over a nook in the bushes for a tent to shelter their provisions; but they themselves would sleep in the open air in good weather, as became outlaws. They built a fire against the side of a great log twenty or thirty steps within the sombre depths of the forest, and then cooked some bacon in the frying-pan for supper, and used up half of the corn "pone" stock they had brought. It seemed glorious sport to be feasting in that wild, free way in the virgin forest of an unexplored and uninhabited island, far from the haunts of men, and they said they never would return to civilization. The climbing fire lit up their faces and threw its ruddy glare upon the pillared tree-trunks of their forest temple, and upon the varnished foliage and festooning vines. When the last crisp slice of bacon was gone, and the last allowance of corn pone devoured, the boys stretched themselves out on the grass, filled with contentment. They could have found a cooler place, but they would not deny themselves such a romantic feature as the roasting camp-fire. "AIN'T it gay?" said Joe. "It's NUTS!" said Tom. "What would the boys say if they could see us?" "Say? Well, they'd just die to be here--hey, Hucky!" "I reckon so," said Huckleberry; "anyways, I'm suited. I don't want nothing better'n this. I don't ever get enough to eat, gen'ally--and here they can't come and pick at a feller and bullyrag him so." "It's just the life for me," said Tom. "You don't have to get up, mornings, and you don't have to go to school, and wash, and all that blame foolishness. You see a pirate don't have to do ANYTHING, Joe, when he's ashore, but a hermit HE has to be praying considerable, and then he don't have any fun, anyway, all by himself that way." "Oh yes, that's so," said Joe, "but I hadn't thought much about it, you know. I'd a good deal rather be a pirate, now that I've tried it." "You see," said Tom, "people don't go much on hermits, nowadays, like they used to in old times, but a pirate's always respected. And a hermit's got to sleep on the hardest place he can find, and put sackcloth and ashes on his head, and stand out in the rain, and--" "What does he put sackcloth and ashes on his head for?" inquired Huck. "I dono. But they've GOT to do it. Hermits always do. You'd have to do that if you was a hermit." "Dern'd if I would," said Huck. "Well, what would you do?" "I dono. But I wouldn't do that." "Why, Huck, you'd HAVE to. How'd you get around it?" "Why, I just wouldn't stand it. I'd run away." "Run away! Well, you WOULD be a nice old slouch of a hermit. You'd be a disgrace." The Red-Handed made no response, being better employed. He had finished gouging out a cob, and now he fitted a weed stem to it, loaded it with tobacco, and was pressing a coal to the charge and blowing a cloud of fragrant smoke--he was in the full bloom of luxurious contentment. The other pirates envied him this majestic vice, and secretly resolved to acquire it shortly. Presently Huck said: "What does pirates have to do?" Tom said: "Oh, they have just a bully time--take ships and burn them, and get the money and bury it in awful places in their island where there's ghosts and things to watch it, and kill everybody in the ships--make 'em walk a plank." "And they carry the women to the island," said Joe; "they don't kill the women." "No," assented Tom, "they don't kill the women--they're too noble. And the women's always beautiful, too. "And don't they wear the bulliest clothes! Oh no! All gold and silver and di'monds," said Joe, with enthusiasm. "Who?" said Huck. "Why, the pirates." Huck scanned his own clothing forlornly. "I reckon I ain't dressed fitten for a pirate," said he, with a regretful pathos in his voice; "but I ain't got none but these." But the other boys told him the fine clothes would come fast enough, after they should have begun their adventures. They made him understand that his poor rags would do to begin with, though it was customary for wealthy pirates to start with a proper wardrobe. Gradually their talk died out and drowsiness began to steal upon the eyelids of the little waifs. The pipe dropped from the fingers of the Red-Handed, and he slept the sleep of the conscience-free and the weary. The Terror of the Seas and the Black Avenger of the Spanish Main had more difficulty in getting to sleep. They said their prayers inwardly, and lying down, since there was nobody there with authority to make them kneel and recite aloud; in truth, they had a mind not to say them at all, but they were afraid to proceed to such lengths as that, lest they might call down a sudden and special thunderbolt from heaven. Then at once they reached and hovered upon the imminent verge of sleep--but an intruder came, now, that would not "down." It was conscience. They began to feel a vague fear that they had been doing wrong to run away; and next they thought of the stolen meat, and then the real torture came. They tried to argue it away by reminding conscience that they had purloined sweetmeats and apples scores of times; but conscience was not to be appeased by such thin plausibilities; it seemed to them, in the end, that there was no getting around the stubborn fact that taking sweetmeats was only "hooking," while taking bacon and hams and such valuables was plain simple stealing--and there was a command against that in the Bible. So they inwardly resolved that so long as they remained in the business, their piracies should not again be sullied with the crime of stealing. Then conscience granted a truce, and these curiously inconsistent pirates fell peacefully to sleep. CHAPTER XIV WHEN Tom awoke in the morning, he wondered where he was. He sat up and rubbed his eyes and looked around. Then he comprehended. It was the cool gray dawn, and there was a delicious sense of repose and peace in the deep pervading calm and silence of the woods. Not a leaf stirred; not a sound obtruded upon great Nature's meditation. Beaded dewdrops stood upon the leaves and grasses. A white layer of ashes covered the fire, and a thin blue breath of smoke rose straight into the air. Joe and Huck still slept. Now, far away in the woods a bird called; another answered; presently the hammering of a woodpecker was heard. Gradually the cool dim gray of the morning whitened, and as gradually sounds multiplied and life manifested itself. The marvel of Nature shaking off sleep and going to work unfolded itself to the musing boy. A little green worm came crawling over a dewy leaf, lifting two-thirds of his body into the air from time to time and "sniffing around," then proceeding again--for he was measuring, Tom said; and when the worm approached him, of its own accord, he sat as still as a stone, with his hopes rising and falling, by turns, as the creature still came toward him or seemed inclined to go elsewhere; and when at last it considered a painful moment with its curved body in the air and then came decisively down upon Tom's leg and began a journey over him, his whole heart was glad--for that meant that he was going to have a new suit of clothes--without the shadow of a doubt a gaudy piratical uniform. Now a procession of ants appeared, from nowhere in particular, and went about their labors; one struggled manfully by with a dead spider five times as big as itself in its arms, and lugged it straight up a tree-trunk. A brown spotted lady-bug climbed the dizzy height of a grass blade, and Tom bent down close to it and said, "Lady-bug, lady-bug, fly away home, your house is on fire, your children's alone," and she took wing and went off to see about it --which did not surprise the boy, for he knew of old that this insect was credulous about conflagrations, and he had practised upon its simplicity more than once. A tumblebug came next, heaving sturdily at its ball, and Tom touched the creature, to see it shut its legs against its body and pretend to be dead. The birds were fairly rioting by this time. A catbird, the Northern mocker, lit in a tree over Tom's head, and trilled out her imitations of her neighbors in a rapture of enjoyment; then a shrill jay swept down, a flash of blue flame, and stopped on a twig almost within the boy's reach, cocked his head to one side and eyed the strangers with a consuming curiosity; a gray squirrel and a big fellow of the "fox" kind came skurrying along, sitting up at intervals to inspect and chatter at the boys, for the wild things had probably never seen a human being before and scarcely knew whether to be afraid or not. All Nature was wide awake and stirring, now; long lances of sunlight pierced down through the dense foliage far and near, and a few butterflies came fluttering upon the scene. Tom stirred up the other pirates and they all clattered away with a shout, and in a minute or two were stripped and chasing after and tumbling over each other in the shallow limpid water of the white sandbar. They felt no longing for the little village sleeping in the distance beyond the majestic waste of water. A vagrant current or a slight rise in the river had carried off their raft, but this only gratified them, since its going was something like burning the bridge between them and civilization. They came back to camp wonderfully refreshed, glad-hearted, and ravenous; and they soon had the camp-fire blazing up again. Huck found a spring of clear cold water close by, and the boys made cups of broad oak or hickory leaves, and felt that water, sweetened with such a wildwood charm as that, would be a good enough substitute for coffee. While Joe was slicing bacon for breakfast, Tom and Huck asked him to hold on a minute; they stepped to a promising nook in the river-bank and threw in their lines; almost immediately they had reward. Joe had not had time to get impatient before they were back again with some handsome bass, a couple of sun-perch and a small catfish--provisions enough for quite a family. They fried the fish with the bacon, and were astonished; for no fish had ever seemed so delicious before. They did not know that the quicker a fresh-water fish is on the fire after he is caught the better he is; and they reflected little upon what a sauce open-air sleeping, open-air exercise, bathing, and a large ingredient of hunger make, too. They lay around in the shade, after breakfast, while Huck had a smoke, and then went off through the woods on an exploring expedition. They tramped gayly along, over decaying logs, through tangled underbrush, among solemn monarchs of the forest, hung from their crowns to the ground with a drooping regalia of grape-vines. Now and then they came upon snug nooks carpeted with grass and jeweled with flowers. They found plenty of things to be delighted with, but nothing to be astonished at. They discovered that the island was about three miles long and a quarter of a mile wide, and that the shore it lay closest to was only separated from it by a narrow channel hardly two hundred yards wide. They took a swim about every hour, so it was close upon the middle of the afternoon when they got back to camp. They were too hungry to stop to fish, but they fared sumptuously upon cold ham, and then threw themselves down in the shade to talk. But the talk soon began to drag, and then died. The stillness, the solemnity that brooded in the woods, and the sense of loneliness, began to tell upon the spirits of the boys. They fell to thinking. A sort of undefined longing crept upon them. This took dim shape, presently--it was budding homesickness. Even Finn the Red-Handed was dreaming of his doorsteps and empty hogsheads. But they were all ashamed of their weakness, and none was brave enough to speak his thought. For some time, now, the boys had been dully conscious of a peculiar sound in the distance, just as one sometimes is of the ticking of a clock which he takes no distinct note of. But now this mysterious sound became more pronounced, and forced a recognition. The boys started, glanced at each other, and then each assumed a listening attitude. There was a long silence, profound and unbroken; then a deep, sullen boom came floating down out of the distance. "What is it!" exclaimed Joe, under his breath. "I wonder," said Tom in a whisper. "'Tain't thunder," said Huckleberry, in an awed tone, "becuz thunder--" "Hark!" said Tom. "Listen--don't talk." They waited a time that seemed an age, and then the same muffled boom troubled the solemn hush. "Let's go and see." They sprang to their feet and hurried to the shore toward the town. They parted the bushes on the bank and peered out over the water. The little steam ferryboat was about a mile below the village, drifting with the current. Her broad deck seemed crowded with people. There were a great many skiffs rowing about or floating with the stream in the neighborhood of the ferryboat, but the boys could not determine what the men in them were doing. Presently a great jet of white smoke burst from the ferryboat's side, and as it expanded and rose in a lazy cloud, that same dull throb of sound was borne to the listeners again. "I know now!" exclaimed Tom; "somebody's drownded!" "That's it!" said Huck; "they done that last summer, when Bill Turner got drownded; they shoot a cannon over the water, and that makes him come up to the top. Yes, and they take loaves of bread and put quicksilver in 'em and set 'em afloat, and wherever there's anybody that's drownded, they'll float right there and stop." "Yes, I've heard about that," said Joe. "I wonder what makes the bread do that." "Oh, it ain't the bread, so much," said Tom; "I reckon it's mostly what they SAY over it before they start it out." "But they don't say anything over it," said Huck. "I've seen 'em and they don't." "Well, that's funny," said Tom. "But maybe they say it to themselves. Of COURSE they do. Anybody might know that." The other boys agreed that there was reason in what Tom said, because an ignorant lump of bread, uninstructed by an incantation, could not be expected to act very intelligently when set upon an errand of such gravity. "By jings, I wish I was over there, now," said Joe. "I do too" said Huck "I'd give heaps to know who it is." The boys still listened and watched. Presently a revealing thought flashed through Tom's mind, and he exclaimed: "Boys, I know who's drownded--it's us!" They felt like heroes in an instant. Here was a gorgeous triumph; they were missed; they were mourned; hearts were breaking on their account; tears were being shed; accusing memories of unkindness to these poor lost lads were rising up, and unavailing regrets and remorse were being indulged; and best of all, the departed were the talk of the whole town, and the envy of all the boys, as far as this dazzling notoriety was concerned. This was fine. It was worth while to be a pirate, after all. As twilight drew on, the ferryboat went back to her accustomed business and the skiffs disappeared. The pirates returned to camp. They were jubilant with vanity over their new grandeur and the illustrious trouble they were making. They caught fish, cooked supper and ate it, and then fell to guessing at what the village was thinking and saying about them; and the pictures they drew of the public distress on their account were gratifying to look upon--from their point of view. But when the shadows of night closed them in, they gradually ceased to talk, and sat gazing into the fire, with their minds evidently wandering elsewhere. The excitement was gone, now, and Tom and Joe could not keep back thoughts of certain persons at home who were not enjoying this fine frolic as much as they were. Misgivings came; they grew troubled and unhappy; a sigh or two escaped, unawares. By and by Joe timidly ventured upon a roundabout "feeler" as to how the others might look upon a return to civilization--not right now, but-- Tom withered him with derision! Huck, being uncommitted as yet, joined in with Tom, and the waverer quickly "explained," and was glad to get out of the scrape with as little taint of chicken-hearted homesickness clinging to his garments as he could. Mutiny was effectually laid to rest for the moment. As the night deepened, Huck began to nod, and presently to snore. Joe followed next. Tom lay upon his elbow motionless, for some time, watching the two intently. At last he got up cautiously, on his knees, and went searching among the grass and the flickering reflections flung by the camp-fire. He picked up and inspected several large semi-cylinders of the thin white bark of a sycamore, and finally chose two which seemed to suit him. Then he knelt by the fire and painfully wrote something upon each of these with his "red keel"; one he rolled up and put in his jacket pocket, and the other he put in Joe's hat and removed it to a little distance from the owner. And he also put into the hat certain schoolboy treasures of almost inestimable value--among them a lump of chalk, an India-rubber ball, three fishhooks, and one of that kind of marbles known as a "sure 'nough crystal." Then he tiptoed his way cautiously among the trees till he felt that he was out of hearing, and straightway broke into a keen run in the direction of the sandbar. CHAPTER XV A FEW minutes later Tom was in the shoal water of the bar, wading toward the Illinois shore. Before the depth reached his middle he was half-way over; the current would permit no more wading, now, so he struck out confidently to swim the remaining hundred yards. He swam quartering upstream, but still was swept downward rather faster than he had expected. However, he reached the shore finally, and drifted along till he found a low place and drew himself out. He put his hand on his jacket pocket, found his piece of bark safe, and then struck through the woods, following the shore, with streaming garments. Shortly before ten o'clock he came out into an open place opposite the village, and saw the ferryboat lying in the shadow of the trees and the high bank. Everything was quiet under the blinking stars. He crept down the bank, watching with all his eyes, slipped into the water, swam three or four strokes and climbed into the skiff that did "yawl" duty at the boat's stern. He laid himself down under the thwarts and waited, panting. Presently the cracked bell tapped and a voice gave the order to "cast off." A minute or two later the skiff's head was standing high up, against the boat's swell, and the voyage was begun. Tom felt happy in his success, for he knew it was the boat's last trip for the night. At the end of a long twelve or fifteen minutes the wheels stopped, and Tom slipped overboard and swam ashore in the dusk, landing fifty yards downstream, out of danger of possible stragglers. He flew along unfrequented alleys, and shortly found himself at his aunt's back fence. He climbed over, approached the "ell," and looked in at the sitting-room window, for a light was burning there. There sat Aunt Polly, Sid, Mary, and Joe Harper's mother, grouped together, talking. They were by the bed, and the bed was between them and the door. Tom went to the door and began to softly lift the latch; then he pressed gently and the door yielded a crack; he continued pushing cautiously, and quaking every time it creaked, till he judged he might squeeze through on his knees; so he put his head through and began, warily. "What makes the candle blow so?" said Aunt Polly. Tom hurried up. "Why, that door's open, I believe. Why, of course it is. No end of strange things now. Go 'long and shut it, Sid." Tom disappeared under the bed just in time. He lay and "breathed" himself for a time, and then crept to where he could almost touch his aunt's foot. "But as I was saying," said Aunt Polly, "he warn't BAD, so to say --only mischEEvous. Only just giddy, and harum-scarum, you know. He warn't any more responsible than a colt. HE never meant any harm, and he was the best-hearted boy that ever was"--and she began to cry. "It was just so with my Joe--always full of his devilment, and up to every kind of mischief, but he was just as unselfish and kind as he could be--and laws bless me, to think I went and whipped him for taking that cream, never once recollecting that I throwed it out myself because it was sour, and I never to see him again in this world, never, never, never, poor abused boy!" And Mrs. Harper sobbed as if her heart would break. "I hope Tom's better off where he is," said Sid, "but if he'd been better in some ways--" "SID!" Tom felt the glare of the old lady's eye, though he could not see it. "Not a word against my Tom, now that he's gone! God'll take care of HIM--never you trouble YOURself, sir! Oh, Mrs. Harper, I don't know how to give him up! I don't know how to give him up! He was such a comfort to me, although he tormented my old heart out of me, 'most." "The Lord giveth and the Lord hath taken away--Blessed be the name of the Lord! But it's so hard--Oh, it's so hard! Only last Saturday my Joe busted a firecracker right under my nose and I knocked him sprawling. Little did I know then, how soon--Oh, if it was to do over again I'd hug him and bless him for it." "Yes, yes, yes, I know just how you feel, Mrs. Harper, I know just exactly how you feel. No longer ago than yesterday noon, my Tom took and filled the cat full of Pain-killer, and I did think the cretur would tear the house down. And God forgive me, I cracked Tom's head with my thimble, poor boy, poor dead boy. But he's out of all his troubles now. And the last words I ever heard him say was to reproach--" But this memory was too much for the old lady, and she broke entirely down. Tom was snuffling, now, himself--and more in pity of himself than anybody else. He could hear Mary crying, and putting in a kindly word for him from time to time. He began to have a nobler opinion of himself than ever before. Still, he was sufficiently touched by his aunt's grief to long to rush out from under the bed and overwhelm her with joy--and the theatrical gorgeousness of the thing appealed strongly to his nature, too, but he resisted and lay still. He went on listening, and gathered by odds and ends that it was conjectured at first that the boys had got drowned while taking a swim; then the small raft had been missed; next, certain boys said the missing lads had promised that the village should "hear something" soon; the wise-heads had "put this and that together" and decided that the lads had gone off on that raft and would turn up at the next town below, presently; but toward noon the raft had been found, lodged against the Missouri shore some five or six miles below the village --and then hope perished; they must be drowned, else hunger would have driven them home by nightfall if not sooner. It was believed that the search for the bodies had been a fruitless effort merely because the drowning must have occurred in mid-channel, since the boys, being good swimmers, would otherwise have escaped to shore. This was Wednesday night. If the bodies continued missing until Sunday, all hope would be given over, and the funerals would be preached on that morning. Tom shuddered. Mrs. Harper gave a sobbing good-night and turned to go. Then with a mutual impulse the two bereaved women flung themselves into each other's arms and had a good, consoling cry, and then parted. Aunt Polly was tender far beyond her wont, in her good-night to Sid and Mary. Sid snuffled a bit and Mary went off crying with all her heart. Aunt Polly knelt down and prayed for Tom so touchingly, so appealingly, and with such measureless love in her words and her old trembling voice, that he was weltering in tears again, long before she was through. He had to keep still long after she went to bed, for she kept making broken-hearted ejaculations from time to time, tossing unrestfully, and turning over. But at last she was still, only moaning a little in her sleep. Now the boy stole out, rose gradually by the bedside, shaded the candle-light with his hand, and stood regarding her. His heart was full of pity for her. He took out his sycamore scroll and placed it by the candle. But something occurred to him, and he lingered considering. His face lighted with a happy solution of his thought; he put the bark hastily in his pocket. Then he bent over and kissed the faded lips, and straightway made his stealthy exit, latching the door behind him. He threaded his way back to the ferry landing, found nobody at large there, and walked boldly on board the boat, for he knew she was tenantless except that there was a watchman, who always turned in and slept like a graven image. He untied the skiff at the stern, slipped into it, and was soon rowing cautiously upstream. When he had pulled a mile above the village, he started quartering across and bent himself stoutly to his work. He hit the landing on the other side neatly, for this was a familiar bit of work to him. He was moved to capture the skiff, arguing that it might be considered a ship and therefore legitimate prey for a pirate, but he knew a thorough search would be made for it and that might end in revelations. So he stepped ashore and entered the woods. He sat down and took a long rest, torturing himself meanwhile to keep awake, and then started warily down the home-stretch. The night was far spent. It was broad daylight before he found himself fairly abreast the island bar. He rested again until the sun was well up and gilding the great river with its splendor, and then he plunged into the stream. A little later he paused, dripping, upon the threshold of the camp, and heard Joe say: "No, Tom's true-blue, Huck, and he'll come back. He won't desert. He knows that would be a disgrace to a pirate, and Tom's too proud for that sort of thing. He's up to something or other. Now I wonder what?" "Well, the things is ours, anyway, ain't they?" "Pretty near, but not yet, Huck. The writing says they are if he ain't back here to breakfast." "Which he is!" exclaimed Tom, with fine dramatic effect, stepping grandly into camp. A sumptuous breakfast of bacon and fish was shortly provided, and as the boys set to work upon it, Tom recounted (and adorned) his adventures. They were a vain and boastful company of heroes when the tale was done. Then Tom hid himself away in a shady nook to sleep till noon, and the other pirates got ready to fish and explore. CHAPTER XVI AFTER dinner all the gang turned out to hunt for turtle eggs on the bar. They went about poking sticks into the sand, and when they found a soft place they went down on their knees and dug with their hands. Sometimes they would take fifty or sixty eggs out of one hole. They were perfectly round white things a trifle smaller than an English walnut. They had a famous fried-egg feast that night, and another on Friday morning. After breakfast they went whooping and prancing out on the bar, and chased each other round and round, shedding clothes as they went, until they were naked, and then continued the frolic far away up the shoal water of the bar, against the stiff current, which latter tripped their legs from under them from time to time and greatly increased the fun. And now and then they stooped in a group and splashed water in each other's faces with their palms, gradually approaching each other, with averted faces to avoid the strangling sprays, and finally gripping and struggling till the best man ducked his neighbor, and then they all went under in a tangle of white legs and arms and came up blowing, sputtering, laughing, and gasping for breath at one and the same time. When they were well exhausted, they would run out and sprawl on the dry, hot sand, and lie there and cover themselves up with it, and by and by break for the water again and go through the original performance once more. Finally it occurred to them that their naked skin represented flesh-colored "tights" very fairly; so they drew a ring in the sand and had a circus--with three clowns in it, for none would yield this proudest post to his neighbor. Next they got their marbles and played "knucks" and "ring-taw" and "keeps" till that amusement grew stale. Then Joe and Huck had another swim, but Tom would not venture, because he found that in kicking off his trousers he had kicked his string of rattlesnake rattles off his ankle, and he wondered how he had escaped cramp so long without the protection of this mysterious charm. He did not venture again until he had found it, and by that time the other boys were tired and ready to rest. They gradually wandered apart, dropped into the "dumps," and fell to gazing longingly across the wide river to where the village lay drowsing in the sun. Tom found himself writing "BECKY" in the sand with his big toe; he scratched it out, and was angry with himself for his weakness. But he wrote it again, nevertheless; he could not help it. He erased it once more and then took himself out of temptation by driving the other boys together and joining them. But Joe's spirits had gone down almost beyond resurrection. He was so homesick that he could hardly endure the misery of it. The tears lay very near the surface. Huck was melancholy, too. Tom was downhearted, but tried hard not to show it. He had a secret which he was not ready to tell, yet, but if this mutinous depression was not broken up soon, he would have to bring it out. He said, with a great show of cheerfulness: "I bet there's been pirates on this island before, boys. We'll explore it again. They've hid treasures here somewhere. How'd you feel to light on a rotten chest full of gold and silver--hey?" But it roused only faint enthusiasm, which faded out, with no reply. Tom tried one or two other seductions; but they failed, too. It was discouraging work. Joe sat poking up the sand with a stick and looking very gloomy. Finally he said: "Oh, boys, let's give it up. I want to go home. It's so lonesome." "Oh no, Joe, you'll feel better by and by," said Tom. "Just think of the fishing that's here." "I don't care for fishing. I want to go home." "But, Joe, there ain't such another swimming-place anywhere." "Swimming's no good. I don't seem to care for it, somehow, when there ain't anybody to say I sha'n't go in. I mean to go home." "Oh, shucks! Baby! You want to see your mother, I reckon." "Yes, I DO want to see my mother--and you would, too, if you had one. I ain't any more baby than you are." And Joe snuffled a little. "Well, we'll let the cry-baby go home to his mother, won't we, Huck? Poor thing--does it want to see its mother? And so it shall. You like it here, don't you, Huck? We'll stay, won't we?" Huck said, "Y-e-s"--without any heart in it. "I'll never speak to you again as long as I live," said Joe, rising. "There now!" And he moved moodily away and began to dress himself. "Who cares!" said Tom. "Nobody wants you to. Go 'long home and get laughed at. Oh, you're a nice pirate. Huck and me ain't cry-babies. We'll stay, won't we, Huck? Let him go if he wants to. I reckon we can get along without him, per'aps." But Tom was uneasy, nevertheless, and was alarmed to see Joe go sullenly on with his dressing. And then it was discomforting to see Huck eying Joe's preparations so wistfully, and keeping up such an ominous silence. Presently, without a parting word, Joe began to wade off toward the Illinois shore. Tom's heart began to sink. He glanced at Huck. Huck could not bear the look, and dropped his eyes. Then he said: "I want to go, too, Tom. It was getting so lonesome anyway, and now it'll be worse. Let's us go, too, Tom." "I won't! You can all go, if you want to. I mean to stay." "Tom, I better go." "Well, go 'long--who's hendering you." Huck began to pick up his scattered clothes. He said: "Tom, I wisht you'd come, too. Now you think it over. We'll wait for you when we get to shore." "Well, you'll wait a blame long time, that's all." Huck started sorrowfully away, and Tom stood looking after him, with a strong desire tugging at his heart to yield his pride and go along too. He hoped the boys would stop, but they still waded slowly on. It suddenly dawned on Tom that it was become very lonely and still. He made one final struggle with his pride, and then darted after his comrades, yelling: "Wait! Wait! I want to tell you something!" They presently stopped and turned around. When he got to where they were, he began unfolding his secret, and they listened moodily till at last they saw the "point" he was driving at, and then they set up a war-whoop of applause and said it was "splendid!" and said if he had told them at first, they wouldn't have started away. He made a plausible excuse; but his real reason had been the fear that not even the secret would keep them with him any very great length of time, and so he had meant to hold it in reserve as a last seduction. The lads came gayly back and went at their sports again with a will, chattering all the time about Tom's stupendous plan and admiring the genius of it. After a dainty egg and fish dinner, Tom said he wanted to learn to smoke, now. Joe caught at the idea and said he would like to try, too. So Huck made pipes and filled them. These novices had never smoked anything before but cigars made of grape-vine, and they "bit" the tongue, and were not considered manly anyway. Now they stretched themselves out on their elbows and began to puff, charily, and with slender confidence. The smoke had an unpleasant taste, and they gagged a little, but Tom said: "Why, it's just as easy! If I'd a knowed this was all, I'd a learnt long ago." "So would I," said Joe. "It's just nothing." "Why, many a time I've looked at people smoking, and thought well I wish I could do that; but I never thought I could," said Tom. "That's just the way with me, hain't it, Huck? You've heard me talk just that way--haven't you, Huck? I'll leave it to Huck if I haven't." "Yes--heaps of times," said Huck. "Well, I have too," said Tom; "oh, hundreds of times. Once down by the slaughter-house. Don't you remember, Huck? Bob Tanner was there, and Johnny Miller, and Jeff Thatcher, when I said it. Don't you remember, Huck, 'bout me saying that?" "Yes, that's so," said Huck. "That was the day after I lost a white alley. No, 'twas the day before." "There--I told you so," said Tom. "Huck recollects it." "I bleeve I could smoke this pipe all day," said Joe. "I don't feel sick." "Neither do I," said Tom. "I could smoke it all day. But I bet you Jeff Thatcher couldn't." "Jeff Thatcher! Why, he'd keel over just with two draws. Just let him try it once. HE'D see!" "I bet he would. And Johnny Miller--I wish could see Johnny Miller tackle it once." "Oh, don't I!" said Joe. "Why, I bet you Johnny Miller couldn't any more do this than nothing. Just one little snifter would fetch HIM." "'Deed it would, Joe. Say--I wish the boys could see us now." "So do I." "Say--boys, don't say anything about it, and some time when they're around, I'll come up to you and say, 'Joe, got a pipe? I want a smoke.' And you'll say, kind of careless like, as if it warn't anything, you'll say, 'Yes, I got my OLD pipe, and another one, but my tobacker ain't very good.' And I'll say, 'Oh, that's all right, if it's STRONG enough.' And then you'll out with the pipes, and we'll light up just as ca'm, and then just see 'em look!" "By jings, that'll be gay, Tom! I wish it was NOW!" "So do I! And when we tell 'em we learned when we was off pirating, won't they wish they'd been along?" "Oh, I reckon not! I'll just BET they will!" So the talk ran on. But presently it began to flag a trifle, and grow disjointed. The silences widened; the expectoration marvellously increased. Every pore inside the boys' cheeks became a spouting fountain; they could scarcely bail out the cellars under their tongues fast enough to prevent an inundation; little overflowings down their throats occurred in spite of all they could do, and sudden retchings followed every time. Both boys were looking very pale and miserable, now. Joe's pipe dropped from his nerveless fingers. Tom's followed. Both fountains were going furiously and both pumps bailing with might and main. Joe said feebly: "I've lost my knife. I reckon I better go and find it." Tom said, with quivering lips and halting utterance: "I'll help you. You go over that way and I'll hunt around by the spring. No, you needn't come, Huck--we can find it." So Huck sat down again, and waited an hour. Then he found it lonesome, and went to find his comrades. They were wide apart in the woods, both very pale, both fast asleep. But something informed him that if they had had any trouble they had got rid of it. They were not talkative at supper that night. They had a humble look, and when Huck prepared his pipe after the meal and was going to prepare theirs, they said no, they were not feeling very well--something they ate at dinner had disagreed with them. About midnight Joe awoke, and called the boys. There was a brooding oppressiveness in the air that seemed to bode something. The boys huddled themselves together and sought the friendly companionship of the fire, though the dull dead heat of the breathless atmosphere was stifling. They sat still, intent and waiting. The solemn hush continued. Beyond the light of the fire everything was swallowed up in the blackness of darkness. Presently there came a quivering glow that vaguely revealed the foliage for a moment and then vanished. By and by another came, a little stronger. Then another. Then a faint moan came sighing through the branches of the forest and the boys felt a fleeting breath upon their cheeks, and shuddered with the fancy that the Spirit of the Night had gone by. There was a pause. Now a weird flash turned night into day and showed every little grass-blade, separate and distinct, that grew about their feet. And it showed three white, startled faces, too. A deep peal of thunder went rolling and tumbling down the heavens and lost itself in sullen rumblings in the distance. A sweep of chilly air passed by, rustling all the leaves and snowing the flaky ashes broadcast about the fire. Another fierce glare lit up the forest and an instant crash followed that seemed to rend the tree-tops right over the boys' heads. They clung together in terror, in the thick gloom that followed. A few big rain-drops fell pattering upon the leaves. "Quick! boys, go for the tent!" exclaimed Tom. They sprang away, stumbling over roots and among vines in the dark, no two plunging in the same direction. A furious blast roared through the trees, making everything sing as it went. One blinding flash after another came, and peal on peal of deafening thunder. And now a drenching rain poured down and the rising hurricane drove it in sheets along the ground. The boys cried out to each other, but the roaring wind and the booming thunder-blasts drowned their voices utterly. However, one by one they straggled in at last and took shelter under the tent, cold, scared, and streaming with water; but to have company in misery seemed something to be grateful for. They could not talk, the old sail flapped so furiously, even if the other noises would have allowed them. The tempest rose higher and higher, and presently the sail tore loose from its fastenings and went winging away on the blast. The boys seized each others' hands and fled, with many tumblings and bruises, to the shelter of a great oak that stood upon the river-bank. Now the battle was at its highest. Under the ceaseless conflagration of lightning that flamed in the skies, everything below stood out in clean-cut and shadowless distinctness: the bending trees, the billowy river, white with foam, the driving spray of spume-flakes, the dim outlines of the high bluffs on the other side, glimpsed through the drifting cloud-rack and the slanting veil of rain. Every little while some giant tree yielded the fight and fell crashing through the younger growth; and the unflagging thunder-peals came now in ear-splitting explosive bursts, keen and sharp, and unspeakably appalling. The storm culminated in one matchless effort that seemed likely to tear the island to pieces, burn it up, drown it to the tree-tops, blow it away, and deafen every creature in it, all at one and the same moment. It was a wild night for homeless young heads to be out in. But at last the battle was done, and the forces retired with weaker and weaker threatenings and grumblings, and peace resumed her sway. The boys went back to camp, a good deal awed; but they found there was still something to be thankful for, because the great sycamore, the shelter of their beds, was a ruin, now, blasted by the lightnings, and they were not under it when the catastrophe happened. Everything in camp was drenched, the camp-fire as well; for they were but heedless lads, like their generation, and had made no provision against rain. Here was matter for dismay, for they were soaked through and chilled. They were eloquent in their distress; but they presently discovered that the fire had eaten so far up under the great log it had been built against (where it curved upward and separated itself from the ground), that a handbreadth or so of it had escaped wetting; so they patiently wrought until, with shreds and bark gathered from the under sides of sheltered logs, they coaxed the fire to burn again. Then they piled on great dead boughs till they had a roaring furnace, and were glad-hearted once more. They dried their boiled ham and had a feast, and after that they sat by the fire and expanded and glorified their midnight adventure until morning, for there was not a dry spot to sleep on, anywhere around. As the sun began to steal in upon the boys, drowsiness came over them, and they went out on the sandbar and lay down to sleep. They got scorched out by and by, and drearily set about getting breakfast. After the meal they felt rusty, and stiff-jointed, and a little homesick once more. Tom saw the signs, and fell to cheering up the pirates as well as he could. But they cared nothing for marbles, or circus, or swimming, or anything. He reminded them of the imposing secret, and raised a ray of cheer. While it lasted, he got them interested in a new device. This was to knock off being pirates, for a while, and be Indians for a change. They were attracted by this idea; so it was not long before they were stripped, and striped from head to heel with black mud, like so many zebras--all of them chiefs, of course--and then they went tearing through the woods to attack an English settlement. By and by they separated into three hostile tribes, and darted upon each other from ambush with dreadful war-whoops, and killed and scalped each other by thousands. It was a gory day. Consequently it was an extremely satisfactory one. They assembled in camp toward supper-time, hungry and happy; but now a difficulty arose--hostile Indians could not break the bread of hospitality together without first making peace, and this was a simple impossibility without smoking a pipe of peace. There was no other process that ever they had heard of. Two of the savages almost wished they had remained pirates. However, there was no other way; so with such show of cheerfulness as they could muster they called for the pipe and took their whiff as it passed, in due form. And behold, they were glad they had gone into savagery, for they had gained something; they found that they could now smoke a little without having to go and hunt for a lost knife; they did not get sick enough to be seriously uncomfortable. They were not likely to fool away this high promise for lack of effort. No, they practised cautiously, after supper, with right fair success, and so they spent a jubilant evening. They were prouder and happier in their new acquirement than they would have been in the scalping and skinning of the Six Nations. We will leave them to smoke and chatter and brag, since we have no further use for them at present. CHAPTER XVII BUT there was no hilarity in the little town that same tranquil Saturday afternoon. The Harpers, and Aunt Polly's family, were being put into mourning, with great grief and many tears. An unusual quiet possessed the village, although it was ordinarily quiet enough, in all conscience. The villagers conducted their concerns with an absent air, and talked little; but they sighed often. The Saturday holiday seemed a burden to the children. They had no heart in their sports, and gradually gave them up. In the afternoon Becky Thatcher found herself moping about the deserted schoolhouse yard, and feeling very melancholy. But she found nothing there to comfort her. She soliloquized: "Oh, if I only had a brass andiron-knob again! But I haven't got anything now to remember him by." And she choked back a little sob. Presently she stopped, and said to herself: "It was right here. Oh, if it was to do over again, I wouldn't say that--I wouldn't say it for the whole world. But he's gone now; I'll never, never, never see him any more." This thought broke her down, and she wandered away, with tears rolling down her cheeks. Then quite a group of boys and girls--playmates of Tom's and Joe's--came by, and stood looking over the paling fence and talking in reverent tones of how Tom did so-and-so the last time they saw him, and how Joe said this and that small trifle (pregnant with awful prophecy, as they could easily see now!)--and each speaker pointed out the exact spot where the lost lads stood at the time, and then added something like "and I was a-standing just so--just as I am now, and as if you was him--I was as close as that--and he smiled, just this way--and then something seemed to go all over me, like--awful, you know--and I never thought what it meant, of course, but I can see now!" Then there was a dispute about who saw the dead boys last in life, and many claimed that dismal distinction, and offered evidences, more or less tampered with by the witness; and when it was ultimately decided who DID see the departed last, and exchanged the last words with them, the lucky parties took upon themselves a sort of sacred importance, and were gaped at and envied by all the rest. One poor chap, who had no other grandeur to offer, said with tolerably manifest pride in the remembrance: "Well, Tom Sawyer he licked me once." But that bid for glory was a failure. Most of the boys could say that, and so that cheapened the distinction too much. The group loitered away, still recalling memories of the lost heroes, in awed voices. When the Sunday-school hour was finished, the next morning, the bell began to toll, instead of ringing in the usual way. It was a very still Sabbath, and the mournful sound seemed in keeping with the musing hush that lay upon nature. The villagers began to gather, loitering a moment in the vestibule to converse in whispers about the sad event. But there was no whispering in the house; only the funereal rustling of dresses as the women gathered to their seats disturbed the silence there. None could remember when the little church had been so full before. There was finally a waiting pause, an expectant dumbness, and then Aunt Polly entered, followed by Sid and Mary, and they by the Harper family, all in deep black, and the whole congregation, the old minister as well, rose reverently and stood until the mourners were seated in the front pew. There was another communing silence, broken at intervals by muffled sobs, and then the minister spread his hands abroad and prayed. A moving hymn was sung, and the text followed: "I am the Resurrection and the Life." As the service proceeded, the clergyman drew such pictures of the graces, the winning ways, and the rare promise of the lost lads that every soul there, thinking he recognized these pictures, felt a pang in remembering that he had persistently blinded himself to them always before, and had as persistently seen only faults and flaws in the poor boys. The minister related many a touching incident in the lives of the departed, too, which illustrated their sweet, generous natures, and the people could easily see, now, how noble and beautiful those episodes were, and remembered with grief that at the time they occurred they had seemed rank rascalities, well deserving of the cowhide. The congregation became more and more moved, as the pathetic tale went on, till at last the whole company broke down and joined the weeping mourners in a chorus of anguished sobs, the preacher himself giving way to his feelings, and crying in the pulpit. There was a rustle in the gallery, which nobody noticed; a moment later the church door creaked; the minister raised his streaming eyes above his handkerchief, and stood transfixed! First one and then another pair of eyes followed the minister's, and then almost with one impulse the congregation rose and stared while the three dead boys came marching up the aisle, Tom in the lead, Joe next, and Huck, a ruin of drooping rags, sneaking sheepishly in the rear! They had been hid in the unused gallery listening to their own funeral sermon! Aunt Polly, Mary, and the Harpers threw themselves upon their restored ones, smothered them with kisses and poured out thanksgivings, while poor Huck stood abashed and uncomfortable, not knowing exactly what to do or where to hide from so many unwelcoming eyes. He wavered, and started to slink away, but Tom seized him and said: "Aunt Polly, it ain't fair. Somebody's got to be glad to see Huck." "And so they shall. I'm glad to see him, poor motherless thing!" And the loving attentions Aunt Polly lavished upon him were the one thing capable of making him more uncomfortable than he was before. Suddenly the minister shouted at the top of his voice: "Praise God from whom all blessings flow--SING!--and put your hearts in it!" And they did. Old Hundred swelled up with a triumphant burst, and while it shook the rafters Tom Sawyer the Pirate looked around upon the envying juveniles about him and confessed in his heart that this was the proudest moment of his life. As the "sold" congregation trooped out they said they would almost be willing to be made ridiculous again to hear Old Hundred sung like that once more. Tom got more cuffs and kisses that day--according to Aunt Polly's varying moods--than he had earned before in a year; and he hardly knew which expressed the most gratefulness to God and affection for himself. CHAPTER XVIII THAT was Tom's great secret--the scheme to return home with his brother pirates and attend their own funerals. They had paddled over to the Missouri shore on a log, at dusk on Saturday, landing five or six miles below the village; they had slept in the woods at the edge of the town till nearly daylight, and had then crept through back lanes and alleys and finished their sleep in the gallery of the church among a chaos of invalided benches. At breakfast, Monday morning, Aunt Polly and Mary were very loving to Tom, and very attentive to his wants. There was an unusual amount of talk. In the course of it Aunt Polly said: "Well, I don't say it wasn't a fine joke, Tom, to keep everybody suffering 'most a week so you boys had a good time, but it is a pity you could be so hard-hearted as to let me suffer so. If you could come over on a log to go to your funeral, you could have come over and give me a hint some way that you warn't dead, but only run off." "Yes, you could have done that, Tom," said Mary; "and I believe you would if you had thought of it." "Would you, Tom?" said Aunt Polly, her face lighting wistfully. "Say, now, would you, if you'd thought of it?" "I--well, I don't know. 'Twould 'a' spoiled everything." "Tom, I hoped you loved me that much," said Aunt Polly, with a grieved tone that discomforted the boy. "It would have been something if you'd cared enough to THINK of it, even if you didn't DO it." "Now, auntie, that ain't any harm," pleaded Mary; "it's only Tom's giddy way--he is always in such a rush that he never thinks of anything." "More's the pity. Sid would have thought. And Sid would have come and DONE it, too. Tom, you'll look back, some day, when it's too late, and wish you'd cared a little more for me when it would have cost you so little." "Now, auntie, you know I do care for you," said Tom. "I'd know it better if you acted more like it." "I wish now I'd thought," said Tom, with a repentant tone; "but I dreamt about you, anyway. That's something, ain't it?" "It ain't much--a cat does that much--but it's better than nothing. What did you dream?" "Why, Wednesday night I dreamt that you was sitting over there by the bed, and Sid was sitting by the woodbox, and Mary next to him." "Well, so we did. So we always do. I'm glad your dreams could take even that much trouble about us." "And I dreamt that Joe Harper's mother was here." "Why, she was here! Did you dream any more?" "Oh, lots. But it's so dim, now." "Well, try to recollect--can't you?" "Somehow it seems to me that the wind--the wind blowed the--the--" "Try harder, Tom! The wind did blow something. Come!" Tom pressed his fingers on his forehead an anxious minute, and then said: "I've got it now! I've got it now! It blowed the candle!" "Mercy on us! Go on, Tom--go on!" "And it seems to me that you said, 'Why, I believe that that door--'" "Go ON, Tom!" "Just let me study a moment--just a moment. Oh, yes--you said you believed the door was open." "As I'm sitting here, I did! Didn't I, Mary! Go on!" "And then--and then--well I won't be certain, but it seems like as if you made Sid go and--and--" "Well? Well? What did I make him do, Tom? What did I make him do?" "You made him--you--Oh, you made him shut it." "Well, for the land's sake! I never heard the beat of that in all my days! Don't tell ME there ain't anything in dreams, any more. Sereny Harper shall know of this before I'm an hour older. I'd like to see her get around THIS with her rubbage 'bout superstition. Go on, Tom!" "Oh, it's all getting just as bright as day, now. Next you said I warn't BAD, only mischeevous and harum-scarum, and not any more responsible than--than--I think it was a colt, or something." "And so it was! Well, goodness gracious! Go on, Tom!" "And then you began to cry." "So I did. So I did. Not the first time, neither. And then--" "Then Mrs. Harper she began to cry, and said Joe was just the same, and she wished she hadn't whipped him for taking cream when she'd throwed it out her own self--" "Tom! The sperrit was upon you! You was a prophesying--that's what you was doing! Land alive, go on, Tom!" "Then Sid he said--he said--" "I don't think I said anything," said Sid. "Yes you did, Sid," said Mary. "Shut your heads and let Tom go on! What did he say, Tom?" "He said--I THINK he said he hoped I was better off where I was gone to, but if I'd been better sometimes--" "THERE, d'you hear that! It was his very words!" "And you shut him up sharp." "I lay I did! There must 'a' been an angel there. There WAS an angel there, somewheres!" "And Mrs. Harper told about Joe scaring her with a firecracker, and you told about Peter and the Painkiller--" "Just as true as I live!" "And then there was a whole lot of talk 'bout dragging the river for us, and 'bout having the funeral Sunday, and then you and old Miss Harper hugged and cried, and she went." "It happened just so! It happened just so, as sure as I'm a-sitting in these very tracks. Tom, you couldn't told it more like if you'd 'a' seen it! And then what? Go on, Tom!" "Then I thought you prayed for me--and I could see you and hear every word you said. And you went to bed, and I was so sorry that I took and wrote on a piece of sycamore bark, 'We ain't dead--we are only off being pirates,' and put it on the table by the candle; and then you looked so good, laying there asleep, that I thought I went and leaned over and kissed you on the lips." "Did you, Tom, DID you! I just forgive you everything for that!" And she seized the boy in a crushing embrace that made him feel like the guiltiest of villains. "It was very kind, even though it was only a--dream," Sid soliloquized just audibly. "Shut up, Sid! A body does just the same in a dream as he'd do if he was awake. Here's a big Milum apple I've been saving for you, Tom, if you was ever found again--now go 'long to school. I'm thankful to the good God and Father of us all I've got you back, that's long-suffering and merciful to them that believe on Him and keep His word, though goodness knows I'm unworthy of it, but if only the worthy ones got His blessings and had His hand to help them over the rough places, there's few enough would smile here or ever enter into His rest when the long night comes. Go 'long Sid, Mary, Tom--take yourselves off--you've hendered me long enough." The children left for school, and the old lady to call on Mrs. Harper and vanquish her realism with Tom's marvellous dream. Sid had better judgment than to utter the thought that was in his mind as he left the house. It was this: "Pretty thin--as long a dream as that, without any mistakes in it!" What a hero Tom was become, now! He did not go skipping and prancing, but moved with a dignified swagger as became a pirate who felt that the public eye was on him. And indeed it was; he tried not to seem to see the looks or hear the remarks as he passed along, but they were food and drink to him. Smaller boys than himself flocked at his heels, as proud to be seen with him, and tolerated by him, as if he had been the drummer at the head of a procession or the elephant leading a menagerie into town. Boys of his own size pretended not to know he had been away at all; but they were consuming with envy, nevertheless. They would have given anything to have that swarthy suntanned skin of his, and his glittering notoriety; and Tom would not have parted with either for a circus. At school the children made so much of him and of Joe, and delivered such eloquent admiration from their eyes, that the two heroes were not long in becoming insufferably "stuck-up." They began to tell their adventures to hungry listeners--but they only began; it was not a thing likely to have an end, with imaginations like theirs to furnish material. And finally, when they got out their pipes and went serenely puffing around, the very summit of glory was reached. Tom decided that he could be independent of Becky Thatcher now. Glory was sufficient. He would live for glory. Now that he was distinguished, maybe she would be wanting to "make up." Well, let her--she should see that he could be as indifferent as some other people. Presently she arrived. Tom pretended not to see her. He moved away and joined a group of boys and girls and began to talk. Soon he observed that she was tripping gayly back and forth with flushed face and dancing eyes, pretending to be busy chasing schoolmates, and screaming with laughter when she made a capture; but he noticed that she always made her captures in his vicinity, and that she seemed to cast a conscious eye in his direction at such times, too. It gratified all the vicious vanity that was in him; and so, instead of winning him, it only "set him up" the more and made him the more diligent to avoid betraying that he knew she was about. Presently she gave over skylarking, and moved irresolutely about, sighing once or twice and glancing furtively and wistfully toward Tom. Then she observed that now Tom was talking more particularly to Amy Lawrence than to any one else. She felt a sharp pang and grew disturbed and uneasy at once. She tried to go away, but her feet were treacherous, and carried her to the group instead. She said to a girl almost at Tom's elbow--with sham vivacity: "Why, Mary Austin! you bad girl, why didn't you come to Sunday-school?" "I did come--didn't you see me?" "Why, no! Did you? Where did you sit?" "I was in Miss Peters' class, where I always go. I saw YOU." "Did you? Why, it's funny I didn't see you. I wanted to tell you about the picnic." "Oh, that's jolly. Who's going to give it?" "My ma's going to let me have one." "Oh, goody; I hope she'll let ME come." "Well, she will. The picnic's for me. She'll let anybody come that I want, and I want you." "That's ever so nice. When is it going to be?" "By and by. Maybe about vacation." "Oh, won't it be fun! You going to have all the girls and boys?" "Yes, every one that's friends to me--or wants to be"; and she glanced ever so furtively at Tom, but he talked right along to Amy Lawrence about the terrible storm on the island, and how the lightning tore the great sycamore tree "all to flinders" while he was "standing within three feet of it." "Oh, may I come?" said Grace Miller. "Yes." "And me?" said Sally Rogers. "Yes." "And me, too?" said Susy Harper. "And Joe?" "Yes." And so on, with clapping of joyful hands till all the group had begged for invitations but Tom and Amy. Then Tom turned coolly away, still talking, and took Amy with him. Becky's lips trembled and the tears came to her eyes; she hid these signs with a forced gayety and went on chattering, but the life had gone out of the picnic, now, and out of everything else; she got away as soon as she could and hid herself and had what her sex call "a good cry." Then she sat moody, with wounded pride, till the bell rang. She roused up, now, with a vindictive cast in her eye, and gave her plaited tails a shake and said she knew what SHE'D do. At recess Tom continued his flirtation with Amy with jubilant self-satisfaction. And he kept drifting about to find Becky and lacerate her with the performance. At last he spied her, but there was a sudden falling of his mercury. She was sitting cosily on a little bench behind the schoolhouse looking at a picture-book with Alfred Temple--and so absorbed were they, and their heads so close together over the book, that they did not seem to be conscious of anything in the world besides. Jealousy ran red-hot through Tom's veins. He began to hate himself for throwing away the chance Becky had offered for a reconciliation. He called himself a fool, and all the hard names he could think of. He wanted to cry with vexation. Amy chatted happily along, as they walked, for her heart was singing, but Tom's tongue had lost its function. He did not hear what Amy was saying, and whenever she paused expectantly he could only stammer an awkward assent, which was as often misplaced as otherwise. He kept drifting to the rear of the schoolhouse, again and again, to sear his eyeballs with the hateful spectacle there. He could not help it. And it maddened him to see, as he thought he saw, that Becky Thatcher never once suspected that he was even in the land of the living. But she did see, nevertheless; and she knew she was winning her fight, too, and was glad to see him suffer as she had suffered. Amy's happy prattle became intolerable. Tom hinted at things he had to attend to; things that must be done; and time was fleeting. But in vain--the girl chirped on. Tom thought, "Oh, hang her, ain't I ever going to get rid of her?" At last he must be attending to those things--and she said artlessly that she would be "around" when school let out. And he hastened away, hating her for it. "Any other boy!" Tom thought, grating his teeth. "Any boy in the whole town but that Saint Louis smarty that thinks he dresses so fine and is aristocracy! Oh, all right, I licked you the first day you ever saw this town, mister, and I'll lick you again! You just wait till I catch you out! I'll just take and--" And he went through the motions of thrashing an imaginary boy --pummelling the air, and kicking and gouging. "Oh, you do, do you? You holler 'nough, do you? Now, then, let that learn you!" And so the imaginary flogging was finished to his satisfaction. Tom fled home at noon. His conscience could not endure any more of Amy's grateful happiness, and his jealousy could bear no more of the other distress. Becky resumed her picture inspections with Alfred, but as the minutes dragged along and no Tom came to suffer, her triumph began to cloud and she lost interest; gravity and absent-mindedness followed, and then melancholy; two or three times she pricked up her ear at a footstep, but it was a false hope; no Tom came. At last she grew entirely miserable and wished she hadn't carried it so far. When poor Alfred, seeing that he was losing her, he did not know how, kept exclaiming: "Oh, here's a jolly one! look at this!" she lost patience at last, and said, "Oh, don't bother me! I don't care for them!" and burst into tears, and got up and walked away. Alfred dropped alongside and was going to try to comfort her, but she said: "Go away and leave me alone, can't you! I hate you!" So the boy halted, wondering what he could have done--for she had said she would look at pictures all through the nooning--and she walked on, crying. Then Alfred went musing into the deserted schoolhouse. He was humiliated and angry. He easily guessed his way to the truth--the girl had simply made a convenience of him to vent her spite upon Tom Sawyer. He was far from hating Tom the less when this thought occurred to him. He wished there was some way to get that boy into trouble without much risk to himself. Tom's spelling-book fell under his eye. Here was his opportunity. He gratefully opened to the lesson for the afternoon and poured ink upon the page. Becky, glancing in at a window behind him at the moment, saw the act, and moved on, without discovering herself. She started homeward, now, intending to find Tom and tell him; Tom would be thankful and their troubles would be healed. Before she was half way home, however, she had changed her mind. The thought of Tom's treatment of her when she was talking about her picnic came scorching back and filled her with shame. She resolved to let him get whipped on the damaged spelling-book's account, and to hate him forever, into the bargain. CHAPTER XIX TOM arrived at home in a dreary mood, and the first thing his aunt said to him showed him that he had brought his sorrows to an unpromising market: "Tom, I've a notion to skin you alive!" "Auntie, what have I done?" "Well, you've done enough. Here I go over to Sereny Harper, like an old softy, expecting I'm going to make her believe all that rubbage about that dream, when lo and behold you she'd found out from Joe that you was over here and heard all the talk we had that night. Tom, I don't know what is to become of a boy that will act like that. It makes me feel so bad to think you could let me go to Sereny Harper and make such a fool of myself and never say a word." This was a new aspect of the thing. His smartness of the morning had seemed to Tom a good joke before, and very ingenious. It merely looked mean and shabby now. He hung his head and could not think of anything to say for a moment. Then he said: "Auntie, I wish I hadn't done it--but I didn't think." "Oh, child, you never think. You never think of anything but your own selfishness. You could think to come all the way over here from Jackson's Island in the night to laugh at our troubles, and you could think to fool me with a lie about a dream; but you couldn't ever think to pity us and save us from sorrow." "Auntie, I know now it was mean, but I didn't mean to be mean. I didn't, honest. And besides, I didn't come over here to laugh at you that night." "What did you come for, then?" "It was to tell you not to be uneasy about us, because we hadn't got drownded." "Tom, Tom, I would be the thankfullest soul in this world if I could believe you ever had as good a thought as that, but you know you never did--and I know it, Tom." "Indeed and 'deed I did, auntie--I wish I may never stir if I didn't." "Oh, Tom, don't lie--don't do it. It only makes things a hundred times worse." "It ain't a lie, auntie; it's the truth. I wanted to keep you from grieving--that was all that made me come." "I'd give the whole world to believe that--it would cover up a power of sins, Tom. I'd 'most be glad you'd run off and acted so bad. But it ain't reasonable; because, why didn't you tell me, child?" "Why, you see, when you got to talking about the funeral, I just got all full of the idea of our coming and hiding in the church, and I couldn't somehow bear to spoil it. So I just put the bark back in my pocket and kept mum." "What bark?" "The bark I had wrote on to tell you we'd gone pirating. I wish, now, you'd waked up when I kissed you--I do, honest." The hard lines in his aunt's face relaxed and a sudden tenderness dawned in her eyes. "DID you kiss me, Tom?" "Why, yes, I did." "Are you sure you did, Tom?" "Why, yes, I did, auntie--certain sure." "What did you kiss me for, Tom?" "Because I loved you so, and you laid there moaning and I was so sorry." The words sounded like truth. The old lady could not hide a tremor in her voice when she said: "Kiss me again, Tom!--and be off with you to school, now, and don't bother me any more." The moment he was gone, she ran to a closet and got out the ruin of a jacket which Tom had gone pirating in. Then she stopped, with it in her hand, and said to herself: "No, I don't dare. Poor boy, I reckon he's lied about it--but it's a blessed, blessed lie, there's such a comfort come from it. I hope the Lord--I KNOW the Lord will forgive him, because it was such goodheartedness in him to tell it. But I don't want to find out it's a lie. I won't look." She put the jacket away, and stood by musing a minute. Twice she put out her hand to take the garment again, and twice she refrained. Once more she ventured, and this time she fortified herself with the thought: "It's a good lie--it's a good lie--I won't let it grieve me." So she sought the jacket pocket. A moment later she was reading Tom's piece of bark through flowing tears and saying: "I could forgive the boy, now, if he'd committed a million sins!" CHAPTER XX THERE was something about Aunt Polly's manner, when she kissed Tom, that swept away his low spirits and made him lighthearted and happy again. He started to school and had the luck of coming upon Becky Thatcher at the head of Meadow Lane. His mood always determined his manner. Without a moment's hesitation he ran to her and said: "I acted mighty mean to-day, Becky, and I'm so sorry. I won't ever, ever do that way again, as long as ever I live--please make up, won't you?" The girl stopped and looked him scornfully in the face: "I'll thank you to keep yourself TO yourself, Mr. Thomas Sawyer. I'll never speak to you again." She tossed her head and passed on. Tom was so stunned that he had not even presence of mind enough to say "Who cares, Miss Smarty?" until the right time to say it had gone by. So he said nothing. But he was in a fine rage, nevertheless. He moped into the schoolyard wishing she were a boy, and imagining how he would trounce her if she were. He presently encountered her and delivered a stinging remark as he passed. She hurled one in return, and the angry breach was complete. It seemed to Becky, in her hot resentment, that she could hardly wait for school to "take in," she was so impatient to see Tom flogged for the injured spelling-book. If she had had any lingering notion of exposing Alfred Temple, Tom's offensive fling had driven it entirely away. Poor girl, she did not know how fast she was nearing trouble herself. The master, Mr. Dobbins, had reached middle age with an unsatisfied ambition. The darling of his desires was, to be a doctor, but poverty had decreed that he should be nothing higher than a village schoolmaster. Every day he took a mysterious book out of his desk and absorbed himself in it at times when no classes were reciting. He kept that book under lock and key. There was not an urchin in school but was perishing to have a glimpse of it, but the chance never came. Every boy and girl had a theory about the nature of that book; but no two theories were alike, and there was no way of getting at the facts in the case. Now, as Becky was passing by the desk, which stood near the door, she noticed that the key was in the lock! It was a precious moment. She glanced around; found herself alone, and the next instant she had the book in her hands. The title-page--Professor Somebody's ANATOMY--carried no information to her mind; so she began to turn the leaves. She came at once upon a handsomely engraved and colored frontispiece--a human figure, stark naked. At that moment a shadow fell on the page and Tom Sawyer stepped in at the door and caught a glimpse of the picture. Becky snatched at the book to close it, and had the hard luck to tear the pictured page half down the middle. She thrust the volume into the desk, turned the key, and burst out crying with shame and vexation. "Tom Sawyer, you are just as mean as you can be, to sneak up on a person and look at what they're looking at." "How could I know you was looking at anything?" "You ought to be ashamed of yourself, Tom Sawyer; you know you're going to tell on me, and oh, what shall I do, what shall I do! I'll be whipped, and I never was whipped in school." Then she stamped her little foot and said: "BE so mean if you want to! I know something that's going to happen. You just wait and you'll see! Hateful, hateful, hateful!"--and she flung out of the house with a new explosion of crying. Tom stood still, rather flustered by this onslaught. Presently he said to himself: "What a curious kind of a fool a girl is! Never been licked in school! Shucks! What's a licking! That's just like a girl--they're so thin-skinned and chicken-hearted. Well, of course I ain't going to tell old Dobbins on this little fool, because there's other ways of getting even on her, that ain't so mean; but what of it? Old Dobbins will ask who it was tore his book. Nobody'll answer. Then he'll do just the way he always does--ask first one and then t'other, and when he comes to the right girl he'll know it, without any telling. Girls' faces always tell on them. They ain't got any backbone. She'll get licked. Well, it's a kind of a tight place for Becky Thatcher, because there ain't any way out of it." Tom conned the thing a moment longer, and then added: "All right, though; she'd like to see me in just such a fix--let her sweat it out!" Tom joined the mob of skylarking scholars outside. In a few moments the master arrived and school "took in." Tom did not feel a strong interest in his studies. Every time he stole a glance at the girls' side of the room Becky's face troubled him. Considering all things, he did not want to pity her, and yet it was all he could do to help it. He could get up no exultation that was really worthy the name. Presently the spelling-book discovery was made, and Tom's mind was entirely full of his own matters for a while after that. Becky roused up from her lethargy of distress and showed good interest in the proceedings. She did not expect that Tom could get out of his trouble by denying that he spilt the ink on the book himself; and she was right. The denial only seemed to make the thing worse for Tom. Becky supposed she would be glad of that, and she tried to believe she was glad of it, but she found she was not certain. When the worst came to the worst, she had an impulse to get up and tell on Alfred Temple, but she made an effort and forced herself to keep still--because, said she to herself, "he'll tell about me tearing the picture sure. I wouldn't say a word, not to save his life!" Tom took his whipping and went back to his seat not at all broken-hearted, for he thought it was possible that he had unknowingly upset the ink on the spelling-book himself, in some skylarking bout--he had denied it for form's sake and because it was custom, and had stuck to the denial from principle. A whole hour drifted by, the master sat nodding in his throne, the air was drowsy with the hum of study. By and by, Mr. Dobbins straightened himself up, yawned, then unlocked his desk, and reached for his book, but seemed undecided whether to take it out or leave it. Most of the pupils glanced up languidly, but there were two among them that watched his movements with intent eyes. Mr. Dobbins fingered his book absently for a while, then took it out and settled himself in his chair to read! Tom shot a glance at Becky. He had seen a hunted and helpless rabbit look as she did, with a gun levelled at its head. Instantly he forgot his quarrel with her. Quick--something must be done! done in a flash, too! But the very imminence of the emergency paralyzed his invention. Good!--he had an inspiration! He would run and snatch the book, spring through the door and fly. But his resolution shook for one little instant, and the chance was lost--the master opened the volume. If Tom only had the wasted opportunity back again! Too late. There was no help for Becky now, he said. The next moment the master faced the school. Every eye sank under his gaze. There was that in it which smote even the innocent with fear. There was silence while one might count ten --the master was gathering his wrath. Then he spoke: "Who tore this book?" There was not a sound. One could have heard a pin drop. The stillness continued; the master searched face after face for signs of guilt. "Benjamin Rogers, did you tear this book?" A denial. Another pause. "Joseph Harper, did you?" Another denial. Tom's uneasiness grew more and more intense under the slow torture of these proceedings. The master scanned the ranks of boys--considered a while, then turned to the girls: "Amy Lawrence?" A shake of the head. "Gracie Miller?" The same sign. "Susan Harper, did you do this?" Another negative. The next girl was Becky Thatcher. Tom was trembling from head to foot with excitement and a sense of the hopelessness of the situation. "Rebecca Thatcher" [Tom glanced at her face--it was white with terror] --"did you tear--no, look me in the face" [her hands rose in appeal] --"did you tear this book?" A thought shot like lightning through Tom's brain. He sprang to his feet and shouted--"I done it!" The school stared in perplexity at this incredible folly. Tom stood a moment, to gather his dismembered faculties; and when he stepped forward to go to his punishment the surprise, the gratitude, the adoration that shone upon him out of poor Becky's eyes seemed pay enough for a hundred floggings. Inspired by the splendor of his own act, he took without an outcry the most merciless flaying that even Mr. Dobbins had ever administered; and also received with indifference the added cruelty of a command to remain two hours after school should be dismissed--for he knew who would wait for him outside till his captivity was done, and not count the tedious time as loss, either. Tom went to bed that night planning vengeance against Alfred Temple; for with shame and repentance Becky had told him all, not forgetting her own treachery; but even the longing for vengeance had to give way, soon, to pleasanter musings, and he fell asleep at last with Becky's latest words lingering dreamily in his ear-- "Tom, how COULD you be so noble!" CHAPTER XXI VACATION was approaching. The schoolmaster, always severe, grew severer and more exacting than ever, for he wanted the school to make a good showing on "Examination" day. His rod and his ferule were seldom idle now--at least among the smaller pupils. Only the biggest boys, and young ladies of eighteen and twenty, escaped lashing. Mr. Dobbins' lashings were very vigorous ones, too; for although he carried, under his wig, a perfectly bald and shiny head, he had only reached middle age, and there was no sign of feebleness in his muscle. As the great day approached, all the tyranny that was in him came to the surface; he seemed to take a vindictive pleasure in punishing the least shortcomings. The consequence was, that the smaller boys spent their days in terror and suffering and their nights in plotting revenge. They threw away no opportunity to do the master a mischief. But he kept ahead all the time. The retribution that followed every vengeful success was so sweeping and majestic that the boys always retired from the field badly worsted. At last they conspired together and hit upon a plan that promised a dazzling victory. They swore in the sign-painter's boy, told him the scheme, and asked his help. He had his own reasons for being delighted, for the master boarded in his father's family and had given the boy ample cause to hate him. The master's wife would go on a visit to the country in a few days, and there would be nothing to interfere with the plan; the master always prepared himself for great occasions by getting pretty well fuddled, and the sign-painter's boy said that when the dominie had reached the proper condition on Examination Evening he would "manage the thing" while he napped in his chair; then he would have him awakened at the right time and hurried away to school. In the fulness of time the interesting occasion arrived. At eight in the evening the schoolhouse was brilliantly lighted, and adorned with wreaths and festoons of foliage and flowers. The master sat throned in his great chair upon a raised platform, with his blackboard behind him. He was looking tolerably mellow. Three rows of benches on each side and six rows in front of him were occupied by the dignitaries of the town and by the parents of the pupils. To his left, back of the rows of citizens, was a spacious temporary platform upon which were seated the scholars who were to take part in the exercises of the evening; rows of small boys, washed and dressed to an intolerable state of discomfort; rows of gawky big boys; snowbanks of girls and young ladies clad in lawn and muslin and conspicuously conscious of their bare arms, their grandmothers' ancient trinkets, their bits of pink and blue ribbon and the flowers in their hair. All the rest of the house was filled with non-participating scholars. The exercises began. A very little boy stood up and sheepishly recited, "You'd scarce expect one of my age to speak in public on the stage," etc.--accompanying himself with the painfully exact and spasmodic gestures which a machine might have used--supposing the machine to be a trifle out of order. But he got through safely, though cruelly scared, and got a fine round of applause when he made his manufactured bow and retired. A little shamefaced girl lisped, "Mary had a little lamb," etc., performed a compassion-inspiring curtsy, got her meed of applause, and sat down flushed and happy. Tom Sawyer stepped forward with conceited confidence and soared into the unquenchable and indestructible "Give me liberty or give me death" speech, with fine fury and frantic gesticulation, and broke down in the middle of it. A ghastly stage-fright seized him, his legs quaked under him and he was like to choke. True, he had the manifest sympathy of the house but he had the house's silence, too, which was even worse than its sympathy. The master frowned, and this completed the disaster. Tom struggled awhile and then retired, utterly defeated. There was a weak attempt at applause, but it died early. "The Boy Stood on the Burning Deck" followed; also "The Assyrian Came Down," and other declamatory gems. Then there were reading exercises, and a spelling fight. The meagre Latin class recited with honor. The prime feature of the evening was in order, now--original "compositions" by the young ladies. Each in her turn stepped forward to the edge of the platform, cleared her throat, held up her manuscript (tied with dainty ribbon), and proceeded to read, with labored attention to "expression" and punctuation. The themes were the same that had been illuminated upon similar occasions by their mothers before them, their grandmothers, and doubtless all their ancestors in the female line clear back to the Crusades. "Friendship" was one; "Memories of Other Days"; "Religion in History"; "Dream Land"; "The Advantages of Culture"; "Forms of Political Government Compared and Contrasted"; "Melancholy"; "Filial Love"; "Heart Longings," etc., etc. A prevalent feature in these compositions was a nursed and petted melancholy; another was a wasteful and opulent gush of "fine language"; another was a tendency to lug in by the ears particularly prized words and phrases until they were worn entirely out; and a peculiarity that conspicuously marked and marred them was the inveterate and intolerable sermon that wagged its crippled tail at the end of each and every one of them. No matter what the subject might be, a brain-racking effort was made to squirm it into some aspect or other that the moral and religious mind could contemplate with edification. The glaring insincerity of these sermons was not sufficient to compass the banishment of the fashion from the schools, and it is not sufficient to-day; it never will be sufficient while the world stands, perhaps. There is no school in all our land where the young ladies do not feel obliged to close their compositions with a sermon; and you will find that the sermon of the most frivolous and the least religious girl in the school is always the longest and the most relentlessly pious. But enough of this. Homely truth is unpalatable. Let us return to the "Examination." The first composition that was read was one entitled "Is this, then, Life?" Perhaps the reader can endure an extract from it: "In the common walks of life, with what delightful emotions does the youthful mind look forward to some anticipated scene of festivity! Imagination is busy sketching rose-tinted pictures of joy. In fancy, the voluptuous votary of fashion sees herself amid the festive throng, 'the observed of all observers.' Her graceful form, arrayed in snowy robes, is whirling through the mazes of the joyous dance; her eye is brightest, her step is lightest in the gay assembly. "In such delicious fancies time quickly glides by, and the welcome hour arrives for her entrance into the Elysian world, of which she has had such bright dreams. How fairy-like does everything appear to her enchanted vision! Each new scene is more charming than the last. But after a while she finds that beneath this goodly exterior, all is vanity, the flattery which once charmed her soul, now grates harshly upon her ear; the ball-room has lost its charms; and with wasted health and imbittered heart, she turns away with the conviction that earthly pleasures cannot satisfy the longings of the soul!" And so forth and so on. There was a buzz of gratification from time to time during the reading, accompanied by whispered ejaculations of "How sweet!" "How eloquent!" "So true!" etc., and after the thing had closed with a peculiarly afflicting sermon the applause was enthusiastic. Then arose a slim, melancholy girl, whose face had the "interesting" paleness that comes of pills and indigestion, and read a "poem." Two stanzas of it will do: "A MISSOURI MAIDEN'S FAREWELL TO ALABAMA "Alabama, good-bye! I love thee well! But yet for a while do I leave thee now! Sad, yes, sad thoughts of thee my heart doth swell, And burning recollections throng my brow! For I have wandered through thy flowery woods; Have roamed and read near Tallapoosa's stream; Have listened to Tallassee's warring floods, And wooed on Coosa's side Aurora's beam. "Yet shame I not to bear an o'er-full heart, Nor blush to turn behind my tearful eyes; 'Tis from no stranger land I now must part, 'Tis to no strangers left I yield these sighs. Welcome and home were mine within this State, Whose vales I leave--whose spires fade fast from me And cold must be mine eyes, and heart, and tete, When, dear Alabama! they turn cold on thee!" There were very few there who knew what "tete" meant, but the poem was very satisfactory, nevertheless. Next appeared a dark-complexioned, black-eyed, black-haired young lady, who paused an impressive moment, assumed a tragic expression, and began to read in a measured, solemn tone: "A VISION "Dark and tempestuous was night. Around the throne on high not a single star quivered; but the deep intonations of the heavy thunder constantly vibrated upon the ear; whilst the terrific lightning revelled in angry mood through the cloudy chambers of heaven, seeming to scorn the power exerted over its terror by the illustrious Franklin! Even the boisterous winds unanimously came forth from their mystic homes, and blustered about as if to enhance by their aid the wildness of the scene. "At such a time, so dark, so dreary, for human sympathy my very spirit sighed; but instead thereof, "'My dearest friend, my counsellor, my comforter and guide--My joy in grief, my second bliss in joy,' came to my side. She moved like one of those bright beings pictured in the sunny walks of fancy's Eden by the romantic and young, a queen of beauty unadorned save by her own transcendent loveliness. So soft was her step, it failed to make even a sound, and but for the magical thrill imparted by her genial touch, as other unobtrusive beauties, she would have glided away un-perceived--unsought. A strange sadness rested upon her features, like icy tears upon the robe of December, as she pointed to the contending elements without, and bade me contemplate the two beings presented." This nightmare occupied some ten pages of manuscript and wound up with a sermon so destructive of all hope to non-Presbyterians that it took the first prize. This composition was considered to be the very finest effort of the evening. The mayor of the village, in delivering the prize to the author of it, made a warm speech in which he said that it was by far the most "eloquent" thing he had ever listened to, and that Daniel Webster himself might well be proud of it. It may be remarked, in passing, that the number of compositions in which the word "beauteous" was over-fondled, and human experience referred to as "life's page," was up to the usual average. Now the master, mellow almost to the verge of geniality, put his chair aside, turned his back to the audience, and began to draw a map of America on the blackboard, to exercise the geography class upon. But he made a sad business of it with his unsteady hand, and a smothered titter rippled over the house. He knew what the matter was, and set himself to right it. He sponged out lines and remade them; but he only distorted them more than ever, and the tittering was more pronounced. He threw his entire attention upon his work, now, as if determined not to be put down by the mirth. He felt that all eyes were fastened upon him; he imagined he was succeeding, and yet the tittering continued; it even manifestly increased. And well it might. There was a garret above, pierced with a scuttle over his head; and down through this scuttle came a cat, suspended around the haunches by a string; she had a rag tied about her head and jaws to keep her from mewing; as she slowly descended she curved upward and clawed at the string, she swung downward and clawed at the intangible air. The tittering rose higher and higher--the cat was within six inches of the absorbed teacher's head--down, down, a little lower, and she grabbed his wig with her desperate claws, clung to it, and was snatched up into the garret in an instant with her trophy still in her possession! And how the light did blaze abroad from the master's bald pate--for the sign-painter's boy had GILDED it! That broke up the meeting. The boys were avenged. Vacation had come. NOTE:--The pretended "compositions" quoted in this chapter are taken without alteration from a volume entitled "Prose and Poetry, by a Western Lady"--but they are exactly and precisely after the schoolgirl pattern, and hence are much happier than any mere imitations could be. CHAPTER XXII TOM joined the new order of Cadets of Temperance, being attracted by the showy character of their "regalia." He promised to abstain from smoking, chewing, and profanity as long as he remained a member. Now he found out a new thing--namely, that to promise not to do a thing is the surest way in the world to make a body want to go and do that very thing. Tom soon found himself tormented with a desire to drink and swear; the desire grew to be so intense that nothing but the hope of a chance to display himself in his red sash kept him from withdrawing from the order. Fourth of July was coming; but he soon gave that up --gave it up before he had worn his shackles over forty-eight hours--and fixed his hopes upon old Judge Frazer, justice of the peace, who was apparently on his deathbed and would have a big public funeral, since he was so high an official. During three days Tom was deeply concerned about the Judge's condition and hungry for news of it. Sometimes his hopes ran high--so high that he would venture to get out his regalia and practise before the looking-glass. But the Judge had a most discouraging way of fluctuating. At last he was pronounced upon the mend--and then convalescent. Tom was disgusted; and felt a sense of injury, too. He handed in his resignation at once--and that night the Judge suffered a relapse and died. Tom resolved that he would never trust a man like that again. The funeral was a fine thing. The Cadets paraded in a style calculated to kill the late member with envy. Tom was a free boy again, however --there was something in that. He could drink and swear, now--but found to his surprise that he did not want to. The simple fact that he could, took the desire away, and the charm of it. Tom presently wondered to find that his coveted vacation was beginning to hang a little heavily on his hands. He attempted a diary--but nothing happened during three days, and so he abandoned it. The first of all the negro minstrel shows came to town, and made a sensation. Tom and Joe Harper got up a band of performers and were happy for two days. Even the Glorious Fourth was in some sense a failure, for it rained hard, there was no procession in consequence, and the greatest man in the world (as Tom supposed), Mr. Benton, an actual United States Senator, proved an overwhelming disappointment--for he was not twenty-five feet high, nor even anywhere in the neighborhood of it. A circus came. The boys played circus for three days afterward in tents made of rag carpeting--admission, three pins for boys, two for girls--and then circusing was abandoned. A phrenologist and a mesmerizer came--and went again and left the village duller and drearier than ever. There were some boys-and-girls' parties, but they were so few and so delightful that they only made the aching voids between ache the harder. Becky Thatcher was gone to her Constantinople home to stay with her parents during vacation--so there was no bright side to life anywhere. The dreadful secret of the murder was a chronic misery. It was a very cancer for permanency and pain. Then came the measles. During two long weeks Tom lay a prisoner, dead to the world and its happenings. He was very ill, he was interested in nothing. When he got upon his feet at last and moved feebly down-town, a melancholy change had come over everything and every creature. There had been a "revival," and everybody had "got religion," not only the adults, but even the boys and girls. Tom went about, hoping against hope for the sight of one blessed sinful face, but disappointment crossed him everywhere. He found Joe Harper studying a Testament, and turned sadly away from the depressing spectacle. He sought Ben Rogers, and found him visiting the poor with a basket of tracts. He hunted up Jim Hollis, who called his attention to the precious blessing of his late measles as a warning. Every boy he encountered added another ton to his depression; and when, in desperation, he flew for refuge at last to the bosom of Huckleberry Finn and was received with a Scriptural quotation, his heart broke and he crept home and to bed realizing that he alone of all the town was lost, forever and forever. And that night there came on a terrific storm, with driving rain, awful claps of thunder and blinding sheets of lightning. He covered his head with the bedclothes and waited in a horror of suspense for his doom; for he had not the shadow of a doubt that all this hubbub was about him. He believed he had taxed the forbearance of the powers above to the extremity of endurance and that this was the result. It might have seemed to him a waste of pomp and ammunition to kill a bug with a battery of artillery, but there seemed nothing incongruous about the getting up such an expensive thunderstorm as this to knock the turf from under an insect like himself. By and by the tempest spent itself and died without accomplishing its object. The boy's first impulse was to be grateful, and reform. His second was to wait--for there might not be any more storms. The next day the doctors were back; Tom had relapsed. The three weeks he spent on his back this time seemed an entire age. When he got abroad at last he was hardly grateful that he had been spared, remembering how lonely was his estate, how companionless and forlorn he was. He drifted listlessly down the street and found Jim Hollis acting as judge in a juvenile court that was trying a cat for murder, in the presence of her victim, a bird. He found Joe Harper and Huck Finn up an alley eating a stolen melon. Poor lads! they--like Tom--had suffered a relapse. CHAPTER XXIII AT last the sleepy atmosphere was stirred--and vigorously: the murder trial came on in the court. It became the absorbing topic of village talk immediately. Tom could not get away from it. Every reference to the murder sent a shudder to his heart, for his troubled conscience and fears almost persuaded him that these remarks were put forth in his hearing as "feelers"; he did not see how he could be suspected of knowing anything about the murder, but still he could not be comfortable in the midst of this gossip. It kept him in a cold shiver all the time. He took Huck to a lonely place to have a talk with him. It would be some relief to unseal his tongue for a little while; to divide his burden of distress with another sufferer. Moreover, he wanted to assure himself that Huck had remained discreet. "Huck, have you ever told anybody about--that?" "'Bout what?" "You know what." "Oh--'course I haven't." "Never a word?" "Never a solitary word, so help me. What makes you ask?" "Well, I was afeard." "Why, Tom Sawyer, we wouldn't be alive two days if that got found out. YOU know that." Tom felt more comfortable. After a pause: "Huck, they couldn't anybody get you to tell, could they?" "Get me to tell? Why, if I wanted that half-breed devil to drownd me they could get me to tell. They ain't no different way." "Well, that's all right, then. I reckon we're safe as long as we keep mum. But let's swear again, anyway. It's more surer." "I'm agreed." So they swore again with dread solemnities. "What is the talk around, Huck? I've heard a power of it." "Talk? Well, it's just Muff Potter, Muff Potter, Muff Potter all the time. It keeps me in a sweat, constant, so's I want to hide som'ers." "That's just the same way they go on round me. I reckon he's a goner. Don't you feel sorry for him, sometimes?" "Most always--most always. He ain't no account; but then he hain't ever done anything to hurt anybody. Just fishes a little, to get money to get drunk on--and loafs around considerable; but lord, we all do that--leastways most of us--preachers and such like. But he's kind of good--he give me half a fish, once, when there warn't enough for two; and lots of times he's kind of stood by me when I was out of luck." "Well, he's mended kites for me, Huck, and knitted hooks on to my line. I wish we could get him out of there." "My! we couldn't get him out, Tom. And besides, 'twouldn't do any good; they'd ketch him again." "Yes--so they would. But I hate to hear 'em abuse him so like the dickens when he never done--that." "I do too, Tom. Lord, I hear 'em say he's the bloodiest looking villain in this country, and they wonder he wasn't ever hung before." "Yes, they talk like that, all the time. I've heard 'em say that if he was to get free they'd lynch him." "And they'd do it, too." The boys had a long talk, but it brought them little comfort. As the twilight drew on, they found themselves hanging about the neighborhood of the little isolated jail, perhaps with an undefined hope that something would happen that might clear away their difficulties. But nothing happened; there seemed to be no angels or fairies interested in this luckless captive. The boys did as they had often done before--went to the cell grating and gave Potter some tobacco and matches. He was on the ground floor and there were no guards. His gratitude for their gifts had always smote their consciences before--it cut deeper than ever, this time. They felt cowardly and treacherous to the last degree when Potter said: "You've been mighty good to me, boys--better'n anybody else in this town. And I don't forget it, I don't. Often I says to myself, says I, 'I used to mend all the boys' kites and things, and show 'em where the good fishin' places was, and befriend 'em what I could, and now they've all forgot old Muff when he's in trouble; but Tom don't, and Huck don't--THEY don't forget him, says I, 'and I don't forget them.' Well, boys, I done an awful thing--drunk and crazy at the time--that's the only way I account for it--and now I got to swing for it, and it's right. Right, and BEST, too, I reckon--hope so, anyway. Well, we won't talk about that. I don't want to make YOU feel bad; you've befriended me. But what I want to say, is, don't YOU ever get drunk--then you won't ever get here. Stand a litter furder west--so--that's it; it's a prime comfort to see faces that's friendly when a body's in such a muck of trouble, and there don't none come here but yourn. Good friendly faces--good friendly faces. Git up on one another's backs and let me touch 'em. That's it. Shake hands--yourn'll come through the bars, but mine's too big. Little hands, and weak--but they've helped Muff Potter a power, and they'd help him more if they could." Tom went home miserable, and his dreams that night were full of horrors. The next day and the day after, he hung about the court-room, drawn by an almost irresistible impulse to go in, but forcing himself to stay out. Huck was having the same experience. They studiously avoided each other. Each wandered away, from time to time, but the same dismal fascination always brought them back presently. Tom kept his ears open when idlers sauntered out of the court-room, but invariably heard distressing news--the toils were closing more and more relentlessly around poor Potter. At the end of the second day the village talk was to the effect that Injun Joe's evidence stood firm and unshaken, and that there was not the slightest question as to what the jury's verdict would be. Tom was out late, that night, and came to bed through the window. He was in a tremendous state of excitement. It was hours before he got to sleep. All the village flocked to the court-house the next morning, for this was to be the great day. Both sexes were about equally represented in the packed audience. After a long wait the jury filed in and took their places; shortly afterward, Potter, pale and haggard, timid and hopeless, was brought in, with chains upon him, and seated where all the curious eyes could stare at him; no less conspicuous was Injun Joe, stolid as ever. There was another pause, and then the judge arrived and the sheriff proclaimed the opening of the court. The usual whisperings among the lawyers and gathering together of papers followed. These details and accompanying delays worked up an atmosphere of preparation that was as impressive as it was fascinating. Now a witness was called who testified that he found Muff Potter washing in the brook, at an early hour of the morning that the murder was discovered, and that he immediately sneaked away. After some further questioning, counsel for the prosecution said: "Take the witness." The prisoner raised his eyes for a moment, but dropped them again when his own counsel said: "I have no questions to ask him." The next witness proved the finding of the knife near the corpse. Counsel for the prosecution said: "Take the witness." "I have no questions to ask him," Potter's lawyer replied. A third witness swore he had often seen the knife in Potter's possession. "Take the witness." Counsel for Potter declined to question him. The faces of the audience began to betray annoyance. Did this attorney mean to throw away his client's life without an effort? Several witnesses deposed concerning Potter's guilty behavior when brought to the scene of the murder. They were allowed to leave the stand without being cross-questioned. Every detail of the damaging circumstances that occurred in the graveyard upon that morning which all present remembered so well was brought out by credible witnesses, but none of them were cross-examined by Potter's lawyer. The perplexity and dissatisfaction of the house expressed itself in murmurs and provoked a reproof from the bench. Counsel for the prosecution now said: "By the oaths of citizens whose simple word is above suspicion, we have fastened this awful crime, beyond all possibility of question, upon the unhappy prisoner at the bar. We rest our case here." A groan escaped from poor Potter, and he put his face in his hands and rocked his body softly to and fro, while a painful silence reigned in the court-room. Many men were moved, and many women's compassion testified itself in tears. Counsel for the defence rose and said: "Your honor, in our remarks at the opening of this trial, we foreshadowed our purpose to prove that our client did this fearful deed while under the influence of a blind and irresponsible delirium produced by drink. We have changed our mind. We shall not offer that plea." [Then to the clerk:] "Call Thomas Sawyer!" A puzzled amazement awoke in every face in the house, not even excepting Potter's. Every eye fastened itself with wondering interest upon Tom as he rose and took his place upon the stand. The boy looked wild enough, for he was badly scared. The oath was administered. "Thomas Sawyer, where were you on the seventeenth of June, about the hour of midnight?" Tom glanced at Injun Joe's iron face and his tongue failed him. The audience listened breathless, but the words refused to come. After a few moments, however, the boy got a little of his strength back, and managed to put enough of it into his voice to make part of the house hear: "In the graveyard!" "A little bit louder, please. Don't be afraid. You were--" "In the graveyard." A contemptuous smile flitted across Injun Joe's face. "Were you anywhere near Horse Williams' grave?" "Yes, sir." "Speak up--just a trifle louder. How near were you?" "Near as I am to you." "Were you hidden, or not?" "I was hid." "Where?" "Behind the elms that's on the edge of the grave." Injun Joe gave a barely perceptible start. "Any one with you?" "Yes, sir. I went there with--" "Wait--wait a moment. Never mind mentioning your companion's name. We will produce him at the proper time. Did you carry anything there with you." Tom hesitated and looked confused. "Speak out, my boy--don't be diffident. The truth is always respectable. What did you take there?" "Only a--a--dead cat." There was a ripple of mirth, which the court checked. "We will produce the skeleton of that cat. Now, my boy, tell us everything that occurred--tell it in your own way--don't skip anything, and don't be afraid." Tom began--hesitatingly at first, but as he warmed to his subject his words flowed more and more easily; in a little while every sound ceased but his own voice; every eye fixed itself upon him; with parted lips and bated breath the audience hung upon his words, taking no note of time, rapt in the ghastly fascinations of the tale. The strain upon pent emotion reached its climax when the boy said: "--and as the doctor fetched the board around and Muff Potter fell, Injun Joe jumped with the knife and--" Crash! Quick as lightning the half-breed sprang for a window, tore his way through all opposers, and was gone! CHAPTER XXIV TOM was a glittering hero once more--the pet of the old, the envy of the young. His name even went into immortal print, for the village paper magnified him. There were some that believed he would be President, yet, if he escaped hanging. As usual, the fickle, unreasoning world took Muff Potter to its bosom and fondled him as lavishly as it had abused him before. But that sort of conduct is to the world's credit; therefore it is not well to find fault with it. Tom's days were days of splendor and exultation to him, but his nights were seasons of horror. Injun Joe infested all his dreams, and always with doom in his eye. Hardly any temptation could persuade the boy to stir abroad after nightfall. Poor Huck was in the same state of wretchedness and terror, for Tom had told the whole story to the lawyer the night before the great day of the trial, and Huck was sore afraid that his share in the business might leak out, yet, notwithstanding Injun Joe's flight had saved him the suffering of testifying in court. The poor fellow had got the attorney to promise secrecy, but what of that? Since Tom's harassed conscience had managed to drive him to the lawyer's house by night and wring a dread tale from lips that had been sealed with the dismalest and most formidable of oaths, Huck's confidence in the human race was well-nigh obliterated. Daily Muff Potter's gratitude made Tom glad he had spoken; but nightly he wished he had sealed up his tongue. Half the time Tom was afraid Injun Joe would never be captured; the other half he was afraid he would be. He felt sure he never could draw a safe breath again until that man was dead and he had seen the corpse. Rewards had been offered, the country had been scoured, but no Injun Joe was found. One of those omniscient and awe-inspiring marvels, a detective, came up from St. Louis, moused around, shook his head, looked wise, and made that sort of astounding success which members of that craft usually achieve. That is to say, he "found a clew." But you can't hang a "clew" for murder, and so after that detective had got through and gone home, Tom felt just as insecure as he was before. The slow days drifted on, and each left behind it a slightly lightened weight of apprehension. CHAPTER XXV THERE comes a time in every rightly-constructed boy's life when he has a raging desire to go somewhere and dig for hidden treasure. This desire suddenly came upon Tom one day. He sallied out to find Joe Harper, but failed of success. Next he sought Ben Rogers; he had gone fishing. Presently he stumbled upon Huck Finn the Red-Handed. Huck would answer. Tom took him to a private place and opened the matter to him confidentially. Huck was willing. Huck was always willing to take a hand in any enterprise that offered entertainment and required no capital, for he had a troublesome superabundance of that sort of time which is not money. "Where'll we dig?" said Huck. "Oh, most anywhere." "Why, is it hid all around?" "No, indeed it ain't. It's hid in mighty particular places, Huck --sometimes on islands, sometimes in rotten chests under the end of a limb of an old dead tree, just where the shadow falls at midnight; but mostly under the floor in ha'nted houses." "Who hides it?" "Why, robbers, of course--who'd you reckon? Sunday-school sup'rintendents?" "I don't know. If 'twas mine I wouldn't hide it; I'd spend it and have a good time." "So would I. But robbers don't do that way. They always hide it and leave it there." "Don't they come after it any more?" "No, they think they will, but they generally forget the marks, or else they die. Anyway, it lays there a long time and gets rusty; and by and by somebody finds an old yellow paper that tells how to find the marks--a paper that's got to be ciphered over about a week because it's mostly signs and hy'roglyphics." "Hyro--which?" "Hy'roglyphics--pictures and things, you know, that don't seem to mean anything." "Have you got one of them papers, Tom?" "No." "Well then, how you going to find the marks?" "I don't want any marks. They always bury it under a ha'nted house or on an island, or under a dead tree that's got one limb sticking out. Well, we've tried Jackson's Island a little, and we can try it again some time; and there's the old ha'nted house up the Still-House branch, and there's lots of dead-limb trees--dead loads of 'em." "Is it under all of them?" "How you talk! No!" "Then how you going to know which one to go for?" "Go for all of 'em!" "Why, Tom, it'll take all summer." "Well, what of that? Suppose you find a brass pot with a hundred dollars in it, all rusty and gray, or rotten chest full of di'monds. How's that?" Huck's eyes glowed. "That's bully. Plenty bully enough for me. Just you gimme the hundred dollars and I don't want no di'monds." "All right. But I bet you I ain't going to throw off on di'monds. Some of 'em's worth twenty dollars apiece--there ain't any, hardly, but's worth six bits or a dollar." "No! Is that so?" "Cert'nly--anybody'll tell you so. Hain't you ever seen one, Huck?" "Not as I remember." "Oh, kings have slathers of them." "Well, I don' know no kings, Tom." "I reckon you don't. But if you was to go to Europe you'd see a raft of 'em hopping around." "Do they hop?" "Hop?--your granny! No!" "Well, what did you say they did, for?" "Shucks, I only meant you'd SEE 'em--not hopping, of course--what do they want to hop for?--but I mean you'd just see 'em--scattered around, you know, in a kind of a general way. Like that old humpbacked Richard." "Richard? What's his other name?" "He didn't have any other name. Kings don't have any but a given name." "No?" "But they don't." "Well, if they like it, Tom, all right; but I don't want to be a king and have only just a given name, like a nigger. But say--where you going to dig first?" "Well, I don't know. S'pose we tackle that old dead-limb tree on the hill t'other side of Still-House branch?" "I'm agreed." So they got a crippled pick and a shovel, and set out on their three-mile tramp. They arrived hot and panting, and threw themselves down in the shade of a neighboring elm to rest and have a smoke. "I like this," said Tom. "So do I." "Say, Huck, if we find a treasure here, what you going to do with your share?" "Well, I'll have pie and a glass of soda every day, and I'll go to every circus that comes along. I bet I'll have a gay time." "Well, ain't you going to save any of it?" "Save it? What for?" "Why, so as to have something to live on, by and by." "Oh, that ain't any use. Pap would come back to thish-yer town some day and get his claws on it if I didn't hurry up, and I tell you he'd clean it out pretty quick. What you going to do with yourn, Tom?" "I'm going to buy a new drum, and a sure-'nough sword, and a red necktie and a bull pup, and get married." "Married!" "That's it." "Tom, you--why, you ain't in your right mind." "Wait--you'll see." "Well, that's the foolishest thing you could do. Look at pap and my mother. Fight! Why, they used to fight all the time. I remember, mighty well." "That ain't anything. The girl I'm going to marry won't fight." "Tom, I reckon they're all alike. They'll all comb a body. Now you better think 'bout this awhile. I tell you you better. What's the name of the gal?" "It ain't a gal at all--it's a girl." "It's all the same, I reckon; some says gal, some says girl--both's right, like enough. Anyway, what's her name, Tom?" "I'll tell you some time--not now." "All right--that'll do. Only if you get married I'll be more lonesomer than ever." "No you won't. You'll come and live with me. Now stir out of this and we'll go to digging." They worked and sweated for half an hour. No result. They toiled another half-hour. Still no result. Huck said: "Do they always bury it as deep as this?" "Sometimes--not always. Not generally. I reckon we haven't got the right place." So they chose a new spot and began again. The labor dragged a little, but still they made progress. They pegged away in silence for some time. Finally Huck leaned on his shovel, swabbed the beaded drops from his brow with his sleeve, and said: "Where you going to dig next, after we get this one?" "I reckon maybe we'll tackle the old tree that's over yonder on Cardiff Hill back of the widow's." "I reckon that'll be a good one. But won't the widow take it away from us, Tom? It's on her land." "SHE take it away! Maybe she'd like to try it once. Whoever finds one of these hid treasures, it belongs to him. It don't make any difference whose land it's on." That was satisfactory. The work went on. By and by Huck said: "Blame it, we must be in the wrong place again. What do you think?" "It is mighty curious, Huck. I don't understand it. Sometimes witches interfere. I reckon maybe that's what's the trouble now." "Shucks! Witches ain't got no power in the daytime." "Well, that's so. I didn't think of that. Oh, I know what the matter is! What a blamed lot of fools we are! You got to find out where the shadow of the limb falls at midnight, and that's where you dig!" "Then consound it, we've fooled away all this work for nothing. Now hang it all, we got to come back in the night. It's an awful long way. Can you get out?" "I bet I will. We've got to do it to-night, too, because if somebody sees these holes they'll know in a minute what's here and they'll go for it." "Well, I'll come around and maow to-night." "All right. Let's hide the tools in the bushes." The boys were there that night, about the appointed time. They sat in the shadow waiting. It was a lonely place, and an hour made solemn by old traditions. Spirits whispered in the rustling leaves, ghosts lurked in the murky nooks, the deep baying of a hound floated up out of the distance, an owl answered with his sepulchral note. The boys were subdued by these solemnities, and talked little. By and by they judged that twelve had come; they marked where the shadow fell, and began to dig. Their hopes commenced to rise. Their interest grew stronger, and their industry kept pace with it. The hole deepened and still deepened, but every time their hearts jumped to hear the pick strike upon something, they only suffered a new disappointment. It was only a stone or a chunk. At last Tom said: "It ain't any use, Huck, we're wrong again." "Well, but we CAN'T be wrong. We spotted the shadder to a dot." "I know it, but then there's another thing." "What's that?". "Why, we only guessed at the time. Like enough it was too late or too early." Huck dropped his shovel. "That's it," said he. "That's the very trouble. We got to give this one up. We can't ever tell the right time, and besides this kind of thing's too awful, here this time of night with witches and ghosts a-fluttering around so. I feel as if something's behind me all the time; and I'm afeard to turn around, becuz maybe there's others in front a-waiting for a chance. I been creeping all over, ever since I got here." "Well, I've been pretty much so, too, Huck. They most always put in a dead man when they bury a treasure under a tree, to look out for it." "Lordy!" "Yes, they do. I've always heard that." "Tom, I don't like to fool around much where there's dead people. A body's bound to get into trouble with 'em, sure." "I don't like to stir 'em up, either. S'pose this one here was to stick his skull out and say something!" "Don't Tom! It's awful." "Well, it just is. Huck, I don't feel comfortable a bit." "Say, Tom, let's give this place up, and try somewheres else." "All right, I reckon we better." "What'll it be?" Tom considered awhile; and then said: "The ha'nted house. That's it!" "Blame it, I don't like ha'nted houses, Tom. Why, they're a dern sight worse'n dead people. Dead people might talk, maybe, but they don't come sliding around in a shroud, when you ain't noticing, and peep over your shoulder all of a sudden and grit their teeth, the way a ghost does. I couldn't stand such a thing as that, Tom--nobody could." "Yes, but, Huck, ghosts don't travel around only at night. They won't hender us from digging there in the daytime." "Well, that's so. But you know mighty well people don't go about that ha'nted house in the day nor the night." "Well, that's mostly because they don't like to go where a man's been murdered, anyway--but nothing's ever been seen around that house except in the night--just some blue lights slipping by the windows--no regular ghosts." "Well, where you see one of them blue lights flickering around, Tom, you can bet there's a ghost mighty close behind it. It stands to reason. Becuz you know that they don't anybody but ghosts use 'em." "Yes, that's so. But anyway they don't come around in the daytime, so what's the use of our being afeard?" "Well, all right. We'll tackle the ha'nted house if you say so--but I reckon it's taking chances." They had started down the hill by this time. There in the middle of the moonlit valley below them stood the "ha'nted" house, utterly isolated, its fences gone long ago, rank weeds smothering the very doorsteps, the chimney crumbled to ruin, the window-sashes vacant, a corner of the roof caved in. The boys gazed awhile, half expecting to see a blue light flit past a window; then talking in a low tone, as befitted the time and the circumstances, they struck far off to the right, to give the haunted house a wide berth, and took their way homeward through the woods that adorned the rearward side of Cardiff Hill. CHAPTER XXVI ABOUT noon the next day the boys arrived at the dead tree; they had come for their tools. Tom was impatient to go to the haunted house; Huck was measurably so, also--but suddenly said: "Lookyhere, Tom, do you know what day it is?" Tom mentally ran over the days of the week, and then quickly lifted his eyes with a startled look in them-- "My! I never once thought of it, Huck!" "Well, I didn't neither, but all at once it popped onto me that it was Friday." "Blame it, a body can't be too careful, Huck. We might 'a' got into an awful scrape, tackling such a thing on a Friday." "MIGHT! Better say we WOULD! There's some lucky days, maybe, but Friday ain't." "Any fool knows that. I don't reckon YOU was the first that found it out, Huck." "Well, I never said I was, did I? And Friday ain't all, neither. I had a rotten bad dream last night--dreampt about rats." "No! Sure sign of trouble. Did they fight?" "No." "Well, that's good, Huck. When they don't fight it's only a sign that there's trouble around, you know. All we got to do is to look mighty sharp and keep out of it. We'll drop this thing for to-day, and play. Do you know Robin Hood, Huck?" "No. Who's Robin Hood?" "Why, he was one of the greatest men that was ever in England--and the best. He was a robber." "Cracky, I wisht I was. Who did he rob?" "Only sheriffs and bishops and rich people and kings, and such like. But he never bothered the poor. He loved 'em. He always divided up with 'em perfectly square." "Well, he must 'a' been a brick." "I bet you he was, Huck. Oh, he was the noblest man that ever was. They ain't any such men now, I can tell you. He could lick any man in England, with one hand tied behind him; and he could take his yew bow and plug a ten-cent piece every time, a mile and a half." "What's a YEW bow?" "I don't know. It's some kind of a bow, of course. And if he hit that dime only on the edge he would set down and cry--and curse. But we'll play Robin Hood--it's nobby fun. I'll learn you." "I'm agreed." So they played Robin Hood all the afternoon, now and then casting a yearning eye down upon the haunted house and passing a remark about the morrow's prospects and possibilities there. As the sun began to sink into the west they took their way homeward athwart the long shadows of the trees and soon were buried from sight in the forests of Cardiff Hill. On Saturday, shortly after noon, the boys were at the dead tree again. They had a smoke and a chat in the shade, and then dug a little in their last hole, not with great hope, but merely because Tom said there were so many cases where people had given up a treasure after getting down within six inches of it, and then somebody else had come along and turned it up with a single thrust of a shovel. The thing failed this time, however, so the boys shouldered their tools and went away feeling that they had not trifled with fortune, but had fulfilled all the requirements that belong to the business of treasure-hunting. When they reached the haunted house there was something so weird and grisly about the dead silence that reigned there under the baking sun, and something so depressing about the loneliness and desolation of the place, that they were afraid, for a moment, to venture in. Then they crept to the door and took a trembling peep. They saw a weed-grown, floorless room, unplastered, an ancient fireplace, vacant windows, a ruinous staircase; and here, there, and everywhere hung ragged and abandoned cobwebs. They presently entered, softly, with quickened pulses, talking in whispers, ears alert to catch the slightest sound, and muscles tense and ready for instant retreat. In a little while familiarity modified their fears and they gave the place a critical and interested examination, rather admiring their own boldness, and wondering at it, too. Next they wanted to look up-stairs. This was something like cutting off retreat, but they got to daring each other, and of course there could be but one result--they threw their tools into a corner and made the ascent. Up there were the same signs of decay. In one corner they found a closet that promised mystery, but the promise was a fraud--there was nothing in it. Their courage was up now and well in hand. They were about to go down and begin work when-- "Sh!" said Tom. "What is it?" whispered Huck, blanching with fright. "Sh!... There!... Hear it?" "Yes!... Oh, my! Let's run!" "Keep still! Don't you budge! They're coming right toward the door." The boys stretched themselves upon the floor with their eyes to knot-holes in the planking, and lay waiting, in a misery of fear. "They've stopped.... No--coming.... Here they are. Don't whisper another word, Huck. My goodness, I wish I was out of this!" Two men entered. Each boy said to himself: "There's the old deaf and dumb Spaniard that's been about town once or twice lately--never saw t'other man before." "T'other" was a ragged, unkempt creature, with nothing very pleasant in his face. The Spaniard was wrapped in a serape; he had bushy white whiskers; long white hair flowed from under his sombrero, and he wore green goggles. When they came in, "t'other" was talking in a low voice; they sat down on the ground, facing the door, with their backs to the wall, and the speaker continued his remarks. His manner became less guarded and his words more distinct as he proceeded: "No," said he, "I've thought it all over, and I don't like it. It's dangerous." "Dangerous!" grunted the "deaf and dumb" Spaniard--to the vast surprise of the boys. "Milksop!" This voice made the boys gasp and quake. It was Injun Joe's! There was silence for some time. Then Joe said: "What's any more dangerous than that job up yonder--but nothing's come of it." "That's different. Away up the river so, and not another house about. 'Twon't ever be known that we tried, anyway, long as we didn't succeed." "Well, what's more dangerous than coming here in the daytime!--anybody would suspicion us that saw us." "I know that. But there warn't any other place as handy after that fool of a job. I want to quit this shanty. I wanted to yesterday, only it warn't any use trying to stir out of here, with those infernal boys playing over there on the hill right in full view." "Those infernal boys" quaked again under the inspiration of this remark, and thought how lucky it was that they had remembered it was Friday and concluded to wait a day. They wished in their hearts they had waited a year. The two men got out some food and made a luncheon. After a long and thoughtful silence, Injun Joe said: "Look here, lad--you go back up the river where you belong. Wait there till you hear from me. I'll take the chances on dropping into this town just once more, for a look. We'll do that 'dangerous' job after I've spied around a little and think things look well for it. Then for Texas! We'll leg it together!" This was satisfactory. Both men presently fell to yawning, and Injun Joe said: "I'm dead for sleep! It's your turn to watch." He curled down in the weeds and soon began to snore. His comrade stirred him once or twice and he became quiet. Presently the watcher began to nod; his head drooped lower and lower, both men began to snore now. The boys drew a long, grateful breath. Tom whispered: "Now's our chance--come!" Huck said: "I can't--I'd die if they was to wake." Tom urged--Huck held back. At last Tom rose slowly and softly, and started alone. But the first step he made wrung such a hideous creak from the crazy floor that he sank down almost dead with fright. He never made a second attempt. The boys lay there counting the dragging moments till it seemed to them that time must be done and eternity growing gray; and then they were grateful to note that at last the sun was setting. Now one snore ceased. Injun Joe sat up, stared around--smiled grimly upon his comrade, whose head was drooping upon his knees--stirred him up with his foot and said: "Here! YOU'RE a watchman, ain't you! All right, though--nothing's happened." "My! have I been asleep?" "Oh, partly, partly. Nearly time for us to be moving, pard. What'll we do with what little swag we've got left?" "I don't know--leave it here as we've always done, I reckon. No use to take it away till we start south. Six hundred and fifty in silver's something to carry." "Well--all right--it won't matter to come here once more." "No--but I'd say come in the night as we used to do--it's better." "Yes: but look here; it may be a good while before I get the right chance at that job; accidents might happen; 'tain't in such a very good place; we'll just regularly bury it--and bury it deep." "Good idea," said the comrade, who walked across the room, knelt down, raised one of the rearward hearth-stones and took out a bag that jingled pleasantly. He subtracted from it twenty or thirty dollars for himself and as much for Injun Joe, and passed the bag to the latter, who was on his knees in the corner, now, digging with his bowie-knife. The boys forgot all their fears, all their miseries in an instant. With gloating eyes they watched every movement. Luck!--the splendor of it was beyond all imagination! Six hundred dollars was money enough to make half a dozen boys rich! Here was treasure-hunting under the happiest auspices--there would not be any bothersome uncertainty as to where to dig. They nudged each other every moment--eloquent nudges and easily understood, for they simply meant--"Oh, but ain't you glad NOW we're here!" Joe's knife struck upon something. "Hello!" said he. "What is it?" said his comrade. "Half-rotten plank--no, it's a box, I believe. Here--bear a hand and we'll see what it's here for. Never mind, I've broke a hole." He reached his hand in and drew it out-- "Man, it's money!" The two men examined the handful of coins. They were gold. The boys above were as excited as themselves, and as delighted. Joe's comrade said: "We'll make quick work of this. There's an old rusty pick over amongst the weeds in the corner the other side of the fireplace--I saw it a minute ago." He ran and brought the boys' pick and shovel. Injun Joe took the pick, looked it over critically, shook his head, muttered something to himself, and then began to use it. The box was soon unearthed. It was not very large; it was iron bound and had been very strong before the slow years had injured it. The men contemplated the treasure awhile in blissful silence. "Pard, there's thousands of dollars here," said Injun Joe. "'Twas always said that Murrel's gang used to be around here one summer," the stranger observed. "I know it," said Injun Joe; "and this looks like it, I should say." "Now you won't need to do that job." The half-breed frowned. Said he: "You don't know me. Least you don't know all about that thing. 'Tain't robbery altogether--it's REVENGE!" and a wicked light flamed in his eyes. "I'll need your help in it. When it's finished--then Texas. Go home to your Nance and your kids, and stand by till you hear from me." "Well--if you say so; what'll we do with this--bury it again?" "Yes. [Ravishing delight overhead.] NO! by the great Sachem, no! [Profound distress overhead.] I'd nearly forgot. That pick had fresh earth on it! [The boys were sick with terror in a moment.] What business has a pick and a shovel here? What business with fresh earth on them? Who brought them here--and where are they gone? Have you heard anybody?--seen anybody? What! bury it again and leave them to come and see the ground disturbed? Not exactly--not exactly. We'll take it to my den." "Why, of course! Might have thought of that before. You mean Number One?" "No--Number Two--under the cross. The other place is bad--too common." "All right. It's nearly dark enough to start." Injun Joe got up and went about from window to window cautiously peeping out. Presently he said: "Who could have brought those tools here? Do you reckon they can be up-stairs?" The boys' breath forsook them. Injun Joe put his hand on his knife, halted a moment, undecided, and then turned toward the stairway. The boys thought of the closet, but their strength was gone. The steps came creaking up the stairs--the intolerable distress of the situation woke the stricken resolution of the lads--they were about to spring for the closet, when there was a crash of rotten timbers and Injun Joe landed on the ground amid the debris of the ruined stairway. He gathered himself up cursing, and his comrade said: "Now what's the use of all that? If it's anybody, and they're up there, let them STAY there--who cares? If they want to jump down, now, and get into trouble, who objects? It will be dark in fifteen minutes --and then let them follow us if they want to. I'm willing. In my opinion, whoever hove those things in here caught a sight of us and took us for ghosts or devils or something. I'll bet they're running yet." Joe grumbled awhile; then he agreed with his friend that what daylight was left ought to be economized in getting things ready for leaving. Shortly afterward they slipped out of the house in the deepening twilight, and moved toward the river with their precious box. Tom and Huck rose up, weak but vastly relieved, and stared after them through the chinks between the logs of the house. Follow? Not they. They were content to reach ground again without broken necks, and take the townward track over the hill. They did not talk much. They were too much absorbed in hating themselves--hating the ill luck that made them take the spade and the pick there. But for that, Injun Joe never would have suspected. He would have hidden the silver with the gold to wait there till his "revenge" was satisfied, and then he would have had the misfortune to find that money turn up missing. Bitter, bitter luck that the tools were ever brought there! They resolved to keep a lookout for that Spaniard when he should come to town spying out for chances to do his revengeful job, and follow him to "Number Two," wherever that might be. Then a ghastly thought occurred to Tom. "Revenge? What if he means US, Huck!" "Oh, don't!" said Huck, nearly fainting. They talked it all over, and as they entered town they agreed to believe that he might possibly mean somebody else--at least that he might at least mean nobody but Tom, since only Tom had testified. Very, very small comfort it was to Tom to be alone in danger! Company would be a palpable improvement, he thought. CHAPTER XXVII THE adventure of the day mightily tormented Tom's dreams that night. Four times he had his hands on that rich treasure and four times it wasted to nothingness in his fingers as sleep forsook him and wakefulness brought back the hard reality of his misfortune. As he lay in the early morning recalling the incidents of his great adventure, he noticed that they seemed curiously subdued and far away--somewhat as if they had happened in another world, or in a time long gone by. Then it occurred to him that the great adventure itself must be a dream! There was one very strong argument in favor of this idea--namely, that the quantity of coin he had seen was too vast to be real. He had never seen as much as fifty dollars in one mass before, and he was like all boys of his age and station in life, in that he imagined that all references to "hundreds" and "thousands" were mere fanciful forms of speech, and that no such sums really existed in the world. He never had supposed for a moment that so large a sum as a hundred dollars was to be found in actual money in any one's possession. If his notions of hidden treasure had been analyzed, they would have been found to consist of a handful of real dimes and a bushel of vague, splendid, ungraspable dollars. But the incidents of his adventure grew sensibly sharper and clearer under the attrition of thinking them over, and so he presently found himself leaning to the impression that the thing might not have been a dream, after all. This uncertainty must be swept away. He would snatch a hurried breakfast and go and find Huck. Huck was sitting on the gunwale of a flatboat, listlessly dangling his feet in the water and looking very melancholy. Tom concluded to let Huck lead up to the subject. If he did not do it, then the adventure would be proved to have been only a dream. "Hello, Huck!" "Hello, yourself." Silence, for a minute. "Tom, if we'd 'a' left the blame tools at the dead tree, we'd 'a' got the money. Oh, ain't it awful!" "'Tain't a dream, then, 'tain't a dream! Somehow I most wish it was. Dog'd if I don't, Huck." "What ain't a dream?" "Oh, that thing yesterday. I been half thinking it was." "Dream! If them stairs hadn't broke down you'd 'a' seen how much dream it was! I've had dreams enough all night--with that patch-eyed Spanish devil going for me all through 'em--rot him!" "No, not rot him. FIND him! Track the money!" "Tom, we'll never find him. A feller don't have only one chance for such a pile--and that one's lost. I'd feel mighty shaky if I was to see him, anyway." "Well, so'd I; but I'd like to see him, anyway--and track him out--to his Number Two." "Number Two--yes, that's it. I been thinking 'bout that. But I can't make nothing out of it. What do you reckon it is?" "I dono. It's too deep. Say, Huck--maybe it's the number of a house!" "Goody!... No, Tom, that ain't it. If it is, it ain't in this one-horse town. They ain't no numbers here." "Well, that's so. Lemme think a minute. Here--it's the number of a room--in a tavern, you know!" "Oh, that's the trick! They ain't only two taverns. We can find out quick." "You stay here, Huck, till I come." Tom was off at once. He did not care to have Huck's company in public places. He was gone half an hour. He found that in the best tavern, No. 2 had long been occupied by a young lawyer, and was still so occupied. In the less ostentatious house, No. 2 was a mystery. The tavern-keeper's young son said it was kept locked all the time, and he never saw anybody go into it or come out of it except at night; he did not know any particular reason for this state of things; had had some little curiosity, but it was rather feeble; had made the most of the mystery by entertaining himself with the idea that that room was "ha'nted"; had noticed that there was a light in there the night before. "That's what I've found out, Huck. I reckon that's the very No. 2 we're after." "I reckon it is, Tom. Now what you going to do?" "Lemme think." Tom thought a long time. Then he said: "I'll tell you. The back door of that No. 2 is the door that comes out into that little close alley between the tavern and the old rattle trap of a brick store. Now you get hold of all the door-keys you can find, and I'll nip all of auntie's, and the first dark night we'll go there and try 'em. And mind you, keep a lookout for Injun Joe, because he said he was going to drop into town and spy around once more for a chance to get his revenge. If you see him, you just follow him; and if he don't go to that No. 2, that ain't the place." "Lordy, I don't want to foller him by myself!" "Why, it'll be night, sure. He mightn't ever see you--and if he did, maybe he'd never think anything." "Well, if it's pretty dark I reckon I'll track him. I dono--I dono. I'll try." "You bet I'll follow him, if it's dark, Huck. Why, he might 'a' found out he couldn't get his revenge, and be going right after that money." "It's so, Tom, it's so. I'll foller him; I will, by jingoes!" "Now you're TALKING! Don't you ever weaken, Huck, and I won't." CHAPTER XXVIII THAT night Tom and Huck were ready for their adventure. They hung about the neighborhood of the tavern until after nine, one watching the alley at a distance and the other the tavern door. Nobody entered the alley or left it; nobody resembling the Spaniard entered or left the tavern door. The night promised to be a fair one; so Tom went home with the understanding that if a considerable degree of darkness came on, Huck was to come and "maow," whereupon he would slip out and try the keys. But the night remained clear, and Huck closed his watch and retired to bed in an empty sugar hogshead about twelve. Tuesday the boys had the same ill luck. Also Wednesday. But Thursday night promised better. Tom slipped out in good season with his aunt's old tin lantern, and a large towel to blindfold it with. He hid the lantern in Huck's sugar hogshead and the watch began. An hour before midnight the tavern closed up and its lights (the only ones thereabouts) were put out. No Spaniard had been seen. Nobody had entered or left the alley. Everything was auspicious. The blackness of darkness reigned, the perfect stillness was interrupted only by occasional mutterings of distant thunder. Tom got his lantern, lit it in the hogshead, wrapped it closely in the towel, and the two adventurers crept in the gloom toward the tavern. Huck stood sentry and Tom felt his way into the alley. Then there was a season of waiting anxiety that weighed upon Huck's spirits like a mountain. He began to wish he could see a flash from the lantern--it would frighten him, but it would at least tell him that Tom was alive yet. It seemed hours since Tom had disappeared. Surely he must have fainted; maybe he was dead; maybe his heart had burst under terror and excitement. In his uneasiness Huck found himself drawing closer and closer to the alley; fearing all sorts of dreadful things, and momentarily expecting some catastrophe to happen that would take away his breath. There was not much to take away, for he seemed only able to inhale it by thimblefuls, and his heart would soon wear itself out, the way it was beating. Suddenly there was a flash of light and Tom came tearing by him: "Run!" said he; "run, for your life!" He needn't have repeated it; once was enough; Huck was making thirty or forty miles an hour before the repetition was uttered. The boys never stopped till they reached the shed of a deserted slaughter-house at the lower end of the village. Just as they got within its shelter the storm burst and the rain poured down. As soon as Tom got his breath he said: "Huck, it was awful! I tried two of the keys, just as soft as I could; but they seemed to make such a power of racket that I couldn't hardly get my breath I was so scared. They wouldn't turn in the lock, either. Well, without noticing what I was doing, I took hold of the knob, and open comes the door! It warn't locked! I hopped in, and shook off the towel, and, GREAT CAESAR'S GHOST!" "What!--what'd you see, Tom?" "Huck, I most stepped onto Injun Joe's hand!" "No!" "Yes! He was lying there, sound asleep on the floor, with his old patch on his eye and his arms spread out." "Lordy, what did you do? Did he wake up?" "No, never budged. Drunk, I reckon. I just grabbed that towel and started!" "I'd never 'a' thought of the towel, I bet!" "Well, I would. My aunt would make me mighty sick if I lost it." "Say, Tom, did you see that box?" "Huck, I didn't wait to look around. I didn't see the box, I didn't see the cross. I didn't see anything but a bottle and a tin cup on the floor by Injun Joe; yes, I saw two barrels and lots more bottles in the room. Don't you see, now, what's the matter with that ha'nted room?" "How?" "Why, it's ha'nted with whiskey! Maybe ALL the Temperance Taverns have got a ha'nted room, hey, Huck?" "Well, I reckon maybe that's so. Who'd 'a' thought such a thing? But say, Tom, now's a mighty good time to get that box, if Injun Joe's drunk." "It is, that! You try it!" Huck shuddered. "Well, no--I reckon not." "And I reckon not, Huck. Only one bottle alongside of Injun Joe ain't enough. If there'd been three, he'd be drunk enough and I'd do it." There was a long pause for reflection, and then Tom said: "Lookyhere, Huck, less not try that thing any more till we know Injun Joe's not in there. It's too scary. Now, if we watch every night, we'll be dead sure to see him go out, some time or other, and then we'll snatch that box quicker'n lightning." "Well, I'm agreed. I'll watch the whole night long, and I'll do it every night, too, if you'll do the other part of the job." "All right, I will. All you got to do is to trot up Hooper Street a block and maow--and if I'm asleep, you throw some gravel at the window and that'll fetch me." "Agreed, and good as wheat!" "Now, Huck, the storm's over, and I'll go home. It'll begin to be daylight in a couple of hours. You go back and watch that long, will you?" "I said I would, Tom, and I will. I'll ha'nt that tavern every night for a year! I'll sleep all day and I'll stand watch all night." "That's all right. Now, where you going to sleep?" "In Ben Rogers' hayloft. He lets me, and so does his pap's nigger man, Uncle Jake. I tote water for Uncle Jake whenever he wants me to, and any time I ask him he gives me a little something to eat if he can spare it. That's a mighty good nigger, Tom. He likes me, becuz I don't ever act as if I was above him. Sometime I've set right down and eat WITH him. But you needn't tell that. A body's got to do things when he's awful hungry he wouldn't want to do as a steady thing." "Well, if I don't want you in the daytime, I'll let you sleep. I won't come bothering around. Any time you see something's up, in the night, just skip right around and maow." CHAPTER XXIX THE first thing Tom heard on Friday morning was a glad piece of news --Judge Thatcher's family had come back to town the night before. Both Injun Joe and the treasure sunk into secondary importance for a moment, and Becky took the chief place in the boy's interest. He saw her and they had an exhausting good time playing "hi-spy" and "gully-keeper" with a crowd of their school-mates. The day was completed and crowned in a peculiarly satisfactory way: Becky teased her mother to appoint the next day for the long-promised and long-delayed picnic, and she consented. The child's delight was boundless; and Tom's not more moderate. The invitations were sent out before sunset, and straightway the young folks of the village were thrown into a fever of preparation and pleasurable anticipation. Tom's excitement enabled him to keep awake until a pretty late hour, and he had good hopes of hearing Huck's "maow," and of having his treasure to astonish Becky and the picnickers with, next day; but he was disappointed. No signal came that night. Morning came, eventually, and by ten or eleven o'clock a giddy and rollicking company were gathered at Judge Thatcher's, and everything was ready for a start. It was not the custom for elderly people to mar the picnics with their presence. The children were considered safe enough under the wings of a few young ladies of eighteen and a few young gentlemen of twenty-three or thereabouts. The old steam ferryboat was chartered for the occasion; presently the gay throng filed up the main street laden with provision-baskets. Sid was sick and had to miss the fun; Mary remained at home to entertain him. The last thing Mrs. Thatcher said to Becky, was: "You'll not get back till late. Perhaps you'd better stay all night with some of the girls that live near the ferry-landing, child." "Then I'll stay with Susy Harper, mamma." "Very well. And mind and behave yourself and don't be any trouble." Presently, as they tripped along, Tom said to Becky: "Say--I'll tell you what we'll do. 'Stead of going to Joe Harper's we'll climb right up the hill and stop at the Widow Douglas'. She'll have ice-cream! She has it most every day--dead loads of it. And she'll be awful glad to have us." "Oh, that will be fun!" Then Becky reflected a moment and said: "But what will mamma say?" "How'll she ever know?" The girl turned the idea over in her mind, and said reluctantly: "I reckon it's wrong--but--" "But shucks! Your mother won't know, and so what's the harm? All she wants is that you'll be safe; and I bet you she'd 'a' said go there if she'd 'a' thought of it. I know she would!" The Widow Douglas' splendid hospitality was a tempting bait. It and Tom's persuasions presently carried the day. So it was decided to say nothing anybody about the night's programme. Presently it occurred to Tom that maybe Huck might come this very night and give the signal. The thought took a deal of the spirit out of his anticipations. Still he could not bear to give up the fun at Widow Douglas'. And why should he give it up, he reasoned--the signal did not come the night before, so why should it be any more likely to come to-night? The sure fun of the evening outweighed the uncertain treasure; and, boy-like, he determined to yield to the stronger inclination and not allow himself to think of the box of money another time that day. Three miles below town the ferryboat stopped at the mouth of a woody hollow and tied up. The crowd swarmed ashore and soon the forest distances and craggy heights echoed far and near with shoutings and laughter. All the different ways of getting hot and tired were gone through with, and by-and-by the rovers straggled back to camp fortified with responsible appetites, and then the destruction of the good things began. After the feast there was a refreshing season of rest and chat in the shade of spreading oaks. By-and-by somebody shouted: "Who's ready for the cave?" Everybody was. Bundles of candles were procured, and straightway there was a general scamper up the hill. The mouth of the cave was up the hillside--an opening shaped like a letter A. Its massive oaken door stood unbarred. Within was a small chamber, chilly as an ice-house, and walled by Nature with solid limestone that was dewy with a cold sweat. It was romantic and mysterious to stand here in the deep gloom and look out upon the green valley shining in the sun. But the impressiveness of the situation quickly wore off, and the romping began again. The moment a candle was lighted there was a general rush upon the owner of it; a struggle and a gallant defence followed, but the candle was soon knocked down or blown out, and then there was a glad clamor of laughter and a new chase. But all things have an end. By-and-by the procession went filing down the steep descent of the main avenue, the flickering rank of lights dimly revealing the lofty walls of rock almost to their point of junction sixty feet overhead. This main avenue was not more than eight or ten feet wide. Every few steps other lofty and still narrower crevices branched from it on either hand--for McDougal's cave was but a vast labyrinth of crooked aisles that ran into each other and out again and led nowhere. It was said that one might wander days and nights together through its intricate tangle of rifts and chasms, and never find the end of the cave; and that he might go down, and down, and still down, into the earth, and it was just the same--labyrinth under labyrinth, and no end to any of them. No man "knew" the cave. That was an impossible thing. Most of the young men knew a portion of it, and it was not customary to venture much beyond this known portion. Tom Sawyer knew as much of the cave as any one. The procession moved along the main avenue some three-quarters of a mile, and then groups and couples began to slip aside into branch avenues, fly along the dismal corridors, and take each other by surprise at points where the corridors joined again. Parties were able to elude each other for the space of half an hour without going beyond the "known" ground. By-and-by, one group after another came straggling back to the mouth of the cave, panting, hilarious, smeared from head to foot with tallow drippings, daubed with clay, and entirely delighted with the success of the day. Then they were astonished to find that they had been taking no note of time and that night was about at hand. The clanging bell had been calling for half an hour. However, this sort of close to the day's adventures was romantic and therefore satisfactory. When the ferryboat with her wild freight pushed into the stream, nobody cared sixpence for the wasted time but the captain of the craft. Huck was already upon his watch when the ferryboat's lights went glinting past the wharf. He heard no noise on board, for the young people were as subdued and still as people usually are who are nearly tired to death. He wondered what boat it was, and why she did not stop at the wharf--and then he dropped her out of his mind and put his attention upon his business. The night was growing cloudy and dark. Ten o'clock came, and the noise of vehicles ceased, scattered lights began to wink out, all straggling foot-passengers disappeared, the village betook itself to its slumbers and left the small watcher alone with the silence and the ghosts. Eleven o'clock came, and the tavern lights were put out; darkness everywhere, now. Huck waited what seemed a weary long time, but nothing happened. His faith was weakening. Was there any use? Was there really any use? Why not give it up and turn in? A noise fell upon his ear. He was all attention in an instant. The alley door closed softly. He sprang to the corner of the brick store. The next moment two men brushed by him, and one seemed to have something under his arm. It must be that box! So they were going to remove the treasure. Why call Tom now? It would be absurd--the men would get away with the box and never be found again. No, he would stick to their wake and follow them; he would trust to the darkness for security from discovery. So communing with himself, Huck stepped out and glided along behind the men, cat-like, with bare feet, allowing them to keep just far enough ahead not to be invisible. They moved up the river street three blocks, then turned to the left up a cross-street. They went straight ahead, then, until they came to the path that led up Cardiff Hill; this they took. They passed by the old Welshman's house, half-way up the hill, without hesitating, and still climbed upward. Good, thought Huck, they will bury it in the old quarry. But they never stopped at the quarry. They passed on, up the summit. They plunged into the narrow path between the tall sumach bushes, and were at once hidden in the gloom. Huck closed up and shortened his distance, now, for they would never be able to see him. He trotted along awhile; then slackened his pace, fearing he was gaining too fast; moved on a piece, then stopped altogether; listened; no sound; none, save that he seemed to hear the beating of his own heart. The hooting of an owl came over the hill--ominous sound! But no footsteps. Heavens, was everything lost! He was about to spring with winged feet, when a man cleared his throat not four feet from him! Huck's heart shot into his throat, but he swallowed it again; and then he stood there shaking as if a dozen agues had taken charge of him at once, and so weak that he thought he must surely fall to the ground. He knew where he was. He knew he was within five steps of the stile leading into Widow Douglas' grounds. Very well, he thought, let them bury it there; it won't be hard to find. Now there was a voice--a very low voice--Injun Joe's: "Damn her, maybe she's got company--there's lights, late as it is." "I can't see any." This was that stranger's voice--the stranger of the haunted house. A deadly chill went to Huck's heart--this, then, was the "revenge" job! His thought was, to fly. Then he remembered that the Widow Douglas had been kind to him more than once, and maybe these men were going to murder her. He wished he dared venture to warn her; but he knew he didn't dare--they might come and catch him. He thought all this and more in the moment that elapsed between the stranger's remark and Injun Joe's next--which was-- "Because the bush is in your way. Now--this way--now you see, don't you?" "Yes. Well, there IS company there, I reckon. Better give it up." "Give it up, and I just leaving this country forever! Give it up and maybe never have another chance. I tell you again, as I've told you before, I don't care for her swag--you may have it. But her husband was rough on me--many times he was rough on me--and mainly he was the justice of the peace that jugged me for a vagrant. And that ain't all. It ain't a millionth part of it! He had me HORSEWHIPPED!--horsewhipped in front of the jail, like a nigger!--with all the town looking on! HORSEWHIPPED!--do you understand? He took advantage of me and died. But I'll take it out of HER." "Oh, don't kill her! Don't do that!" "Kill? Who said anything about killing? I would kill HIM if he was here; but not her. When you want to get revenge on a woman you don't kill her--bosh! you go for her looks. You slit her nostrils--you notch her ears like a sow!" "By God, that's--" "Keep your opinion to yourself! It will be safest for you. I'll tie her to the bed. If she bleeds to death, is that my fault? I'll not cry, if she does. My friend, you'll help me in this thing--for MY sake --that's why you're here--I mightn't be able alone. If you flinch, I'll kill you. Do you understand that? And if I have to kill you, I'll kill her--and then I reckon nobody'll ever know much about who done this business." "Well, if it's got to be done, let's get at it. The quicker the better--I'm all in a shiver." "Do it NOW? And company there? Look here--I'll get suspicious of you, first thing you know. No--we'll wait till the lights are out--there's no hurry." Huck felt that a silence was going to ensue--a thing still more awful than any amount of murderous talk; so he held his breath and stepped gingerly back; planted his foot carefully and firmly, after balancing, one-legged, in a precarious way and almost toppling over, first on one side and then on the other. He took another step back, with the same elaboration and the same risks; then another and another, and--a twig snapped under his foot! His breath stopped and he listened. There was no sound--the stillness was perfect. His gratitude was measureless. Now he turned in his tracks, between the walls of sumach bushes--turned himself as carefully as if he were a ship--and then stepped quickly but cautiously along. When he emerged at the quarry he felt secure, and so he picked up his nimble heels and flew. Down, down he sped, till he reached the Welshman's. He banged at the door, and presently the heads of the old man and his two stalwart sons were thrust from windows. "What's the row there? Who's banging? What do you want?" "Let me in--quick! I'll tell everything." "Why, who are you?" "Huckleberry Finn--quick, let me in!" "Huckleberry Finn, indeed! It ain't a name to open many doors, I judge! But let him in, lads, and let's see what's the trouble." "Please don't ever tell I told you," were Huck's first words when he got in. "Please don't--I'd be killed, sure--but the widow's been good friends to me sometimes, and I want to tell--I WILL tell if you'll promise you won't ever say it was me." "By George, he HAS got something to tell, or he wouldn't act so!" exclaimed the old man; "out with it and nobody here'll ever tell, lad." Three minutes later the old man and his sons, well armed, were up the hill, and just entering the sumach path on tiptoe, their weapons in their hands. Huck accompanied them no further. He hid behind a great bowlder and fell to listening. There was a lagging, anxious silence, and then all of a sudden there was an explosion of firearms and a cry. Huck waited for no particulars. He sprang away and sped down the hill as fast as his legs could carry him. CHAPTER XXX AS the earliest suspicion of dawn appeared on Sunday morning, Huck came groping up the hill and rapped gently at the old Welshman's door. The inmates were asleep, but it was a sleep that was set on a hair-trigger, on account of the exciting episode of the night. A call came from a window: "Who's there!" Huck's scared voice answered in a low tone: "Please let me in! It's only Huck Finn!" "It's a name that can open this door night or day, lad!--and welcome!" These were strange words to the vagabond boy's ears, and the pleasantest he had ever heard. He could not recollect that the closing word had ever been applied in his case before. The door was quickly unlocked, and he entered. Huck was given a seat and the old man and his brace of tall sons speedily dressed themselves. "Now, my boy, I hope you're good and hungry, because breakfast will be ready as soon as the sun's up, and we'll have a piping hot one, too --make yourself easy about that! I and the boys hoped you'd turn up and stop here last night." "I was awful scared," said Huck, "and I run. I took out when the pistols went off, and I didn't stop for three mile. I've come now becuz I wanted to know about it, you know; and I come before daylight becuz I didn't want to run across them devils, even if they was dead." "Well, poor chap, you do look as if you'd had a hard night of it--but there's a bed here for you when you've had your breakfast. No, they ain't dead, lad--we are sorry enough for that. You see we knew right where to put our hands on them, by your description; so we crept along on tiptoe till we got within fifteen feet of them--dark as a cellar that sumach path was--and just then I found I was going to sneeze. It was the meanest kind of luck! I tried to keep it back, but no use --'twas bound to come, and it did come! I was in the lead with my pistol raised, and when the sneeze started those scoundrels a-rustling to get out of the path, I sung out, 'Fire boys!' and blazed away at the place where the rustling was. So did the boys. But they were off in a jiffy, those villains, and we after them, down through the woods. I judge we never touched them. They fired a shot apiece as they started, but their bullets whizzed by and didn't do us any harm. As soon as we lost the sound of their feet we quit chasing, and went down and stirred up the constables. They got a posse together, and went off to guard the river bank, and as soon as it is light the sheriff and a gang are going to beat up the woods. My boys will be with them presently. I wish we had some sort of description of those rascals--'twould help a good deal. But you couldn't see what they were like, in the dark, lad, I suppose?" "Oh yes; I saw them down-town and follered them." "Splendid! Describe them--describe them, my boy!" "One's the old deaf and dumb Spaniard that's ben around here once or twice, and t'other's a mean-looking, ragged--" "That's enough, lad, we know the men! Happened on them in the woods back of the widow's one day, and they slunk away. Off with you, boys, and tell the sheriff--get your breakfast to-morrow morning!" The Welshman's sons departed at once. As they were leaving the room Huck sprang up and exclaimed: "Oh, please don't tell ANYbody it was me that blowed on them! Oh, please!" "All right if you say it, Huck, but you ought to have the credit of what you did." "Oh no, no! Please don't tell!" When the young men were gone, the old Welshman said: "They won't tell--and I won't. But why don't you want it known?" Huck would not explain, further than to say that he already knew too much about one of those men and would not have the man know that he knew anything against him for the whole world--he would be killed for knowing it, sure. The old man promised secrecy once more, and said: "How did you come to follow these fellows, lad? Were they looking suspicious?" Huck was silent while he framed a duly cautious reply. Then he said: "Well, you see, I'm a kind of a hard lot,--least everybody says so, and I don't see nothing agin it--and sometimes I can't sleep much, on account of thinking about it and sort of trying to strike out a new way of doing. That was the way of it last night. I couldn't sleep, and so I come along up-street 'bout midnight, a-turning it all over, and when I got to that old shackly brick store by the Temperance Tavern, I backed up agin the wall to have another think. Well, just then along comes these two chaps slipping along close by me, with something under their arm, and I reckoned they'd stole it. One was a-smoking, and t'other one wanted a light; so they stopped right before me and the cigars lit up their faces and I see that the big one was the deaf and dumb Spaniard, by his white whiskers and the patch on his eye, and t'other one was a rusty, ragged-looking devil." "Could you see the rags by the light of the cigars?" This staggered Huck for a moment. Then he said: "Well, I don't know--but somehow it seems as if I did." "Then they went on, and you--" "Follered 'em--yes. That was it. I wanted to see what was up--they sneaked along so. I dogged 'em to the widder's stile, and stood in the dark and heard the ragged one beg for the widder, and the Spaniard swear he'd spile her looks just as I told you and your two--" "What! The DEAF AND DUMB man said all that!" Huck had made another terrible mistake! He was trying his best to keep the old man from getting the faintest hint of who the Spaniard might be, and yet his tongue seemed determined to get him into trouble in spite of all he could do. He made several efforts to creep out of his scrape, but the old man's eye was upon him and he made blunder after blunder. Presently the Welshman said: "My boy, don't be afraid of me. I wouldn't hurt a hair of your head for all the world. No--I'd protect you--I'd protect you. This Spaniard is not deaf and dumb; you've let that slip without intending it; you can't cover that up now. You know something about that Spaniard that you want to keep dark. Now trust me--tell me what it is, and trust me --I won't betray you." Huck looked into the old man's honest eyes a moment, then bent over and whispered in his ear: "'Tain't a Spaniard--it's Injun Joe!" The Welshman almost jumped out of his chair. In a moment he said: "It's all plain enough, now. When you talked about notching ears and slitting noses I judged that that was your own embellishment, because white men don't take that sort of revenge. But an Injun! That's a different matter altogether." During breakfast the talk went on, and in the course of it the old man said that the last thing which he and his sons had done, before going to bed, was to get a lantern and examine the stile and its vicinity for marks of blood. They found none, but captured a bulky bundle of-- "Of WHAT?" If the words had been lightning they could not have leaped with a more stunning suddenness from Huck's blanched lips. His eyes were staring wide, now, and his breath suspended--waiting for the answer. The Welshman started--stared in return--three seconds--five seconds--ten --then replied: "Of burglar's tools. Why, what's the MATTER with you?" Huck sank back, panting gently, but deeply, unutterably grateful. The Welshman eyed him gravely, curiously--and presently said: "Yes, burglar's tools. That appears to relieve you a good deal. But what did give you that turn? What were YOU expecting we'd found?" Huck was in a close place--the inquiring eye was upon him--he would have given anything for material for a plausible answer--nothing suggested itself--the inquiring eye was boring deeper and deeper--a senseless reply offered--there was no time to weigh it, so at a venture he uttered it--feebly: "Sunday-school books, maybe." Poor Huck was too distressed to smile, but the old man laughed loud and joyously, shook up the details of his anatomy from head to foot, and ended by saying that such a laugh was money in a-man's pocket, because it cut down the doctor's bill like everything. Then he added: "Poor old chap, you're white and jaded--you ain't well a bit--no wonder you're a little flighty and off your balance. But you'll come out of it. Rest and sleep will fetch you out all right, I hope." Huck was irritated to think he had been such a goose and betrayed such a suspicious excitement, for he had dropped the idea that the parcel brought from the tavern was the treasure, as soon as he had heard the talk at the widow's stile. He had only thought it was not the treasure, however--he had not known that it wasn't--and so the suggestion of a captured bundle was too much for his self-possession. But on the whole he felt glad the little episode had happened, for now he knew beyond all question that that bundle was not THE bundle, and so his mind was at rest and exceedingly comfortable. In fact, everything seemed to be drifting just in the right direction, now; the treasure must be still in No. 2, the men would be captured and jailed that day, and he and Tom could seize the gold that night without any trouble or any fear of interruption. Just as breakfast was completed there was a knock at the door. Huck jumped for a hiding-place, for he had no mind to be connected even remotely with the late event. The Welshman admitted several ladies and gentlemen, among them the Widow Douglas, and noticed that groups of citizens were climbing up the hill--to stare at the stile. So the news had spread. The Welshman had to tell the story of the night to the visitors. The widow's gratitude for her preservation was outspoken. "Don't say a word about it, madam. There's another that you're more beholden to than you are to me and my boys, maybe, but he don't allow me to tell his name. We wouldn't have been there but for him." Of course this excited a curiosity so vast that it almost belittled the main matter--but the Welshman allowed it to eat into the vitals of his visitors, and through them be transmitted to the whole town, for he refused to part with his secret. When all else had been learned, the widow said: "I went to sleep reading in bed and slept straight through all that noise. Why didn't you come and wake me?" "We judged it warn't worth while. Those fellows warn't likely to come again--they hadn't any tools left to work with, and what was the use of waking you up and scaring you to death? My three negro men stood guard at your house all the rest of the night. They've just come back." More visitors came, and the story had to be told and retold for a couple of hours more. There was no Sabbath-school during day-school vacation, but everybody was early at church. The stirring event was well canvassed. News came that not a sign of the two villains had been yet discovered. When the sermon was finished, Judge Thatcher's wife dropped alongside of Mrs. Harper as she moved down the aisle with the crowd and said: "Is my Becky going to sleep all day? I just expected she would be tired to death." "Your Becky?" "Yes," with a startled look--"didn't she stay with you last night?" "Why, no." Mrs. Thatcher turned pale, and sank into a pew, just as Aunt Polly, talking briskly with a friend, passed by. Aunt Polly said: "Good-morning, Mrs. Thatcher. Good-morning, Mrs. Harper. I've got a boy that's turned up missing. I reckon my Tom stayed at your house last night--one of you. And now he's afraid to come to church. I've got to settle with him." Mrs. Thatcher shook her head feebly and turned paler than ever. "He didn't stay with us," said Mrs. Harper, beginning to look uneasy. A marked anxiety came into Aunt Polly's face. "Joe Harper, have you seen my Tom this morning?" "No'm." "When did you see him last?" Joe tried to remember, but was not sure he could say. The people had stopped moving out of church. Whispers passed along, and a boding uneasiness took possession of every countenance. Children were anxiously questioned, and young teachers. They all said they had not noticed whether Tom and Becky were on board the ferryboat on the homeward trip; it was dark; no one thought of inquiring if any one was missing. One young man finally blurted out his fear that they were still in the cave! Mrs. Thatcher swooned away. Aunt Polly fell to crying and wringing her hands. The alarm swept from lip to lip, from group to group, from street to street, and within five minutes the bells were wildly clanging and the whole town was up! The Cardiff Hill episode sank into instant insignificance, the burglars were forgotten, horses were saddled, skiffs were manned, the ferryboat ordered out, and before the horror was half an hour old, two hundred men were pouring down highroad and river toward the cave. All the long afternoon the village seemed empty and dead. Many women visited Aunt Polly and Mrs. Thatcher and tried to comfort them. They cried with them, too, and that was still better than words. All the tedious night the town waited for news; but when the morning dawned at last, all the word that came was, "Send more candles--and send food." Mrs. Thatcher was almost crazed; and Aunt Polly, also. Judge Thatcher sent messages of hope and encouragement from the cave, but they conveyed no real cheer. The old Welshman came home toward daylight, spattered with candle-grease, smeared with clay, and almost worn out. He found Huck still in the bed that had been provided for him, and delirious with fever. The physicians were all at the cave, so the Widow Douglas came and took charge of the patient. She said she would do her best by him, because, whether he was good, bad, or indifferent, he was the Lord's, and nothing that was the Lord's was a thing to be neglected. The Welshman said Huck had good spots in him, and the widow said: "You can depend on it. That's the Lord's mark. He don't leave it off. He never does. Puts it somewhere on every creature that comes from his hands." Early in the forenoon parties of jaded men began to straggle into the village, but the strongest of the citizens continued searching. All the news that could be gained was that remotenesses of the cavern were being ransacked that had never been visited before; that every corner and crevice was going to be thoroughly searched; that wherever one wandered through the maze of passages, lights were to be seen flitting hither and thither in the distance, and shoutings and pistol-shots sent their hollow reverberations to the ear down the sombre aisles. In one place, far from the section usually traversed by tourists, the names "BECKY & TOM" had been found traced upon the rocky wall with candle-smoke, and near at hand a grease-soiled bit of ribbon. Mrs. Thatcher recognized the ribbon and cried over it. She said it was the last relic she should ever have of her child; and that no other memorial of her could ever be so precious, because this one parted latest from the living body before the awful death came. Some said that now and then, in the cave, a far-away speck of light would glimmer, and then a glorious shout would burst forth and a score of men go trooping down the echoing aisle--and then a sickening disappointment always followed; the children were not there; it was only a searcher's light. Three dreadful days and nights dragged their tedious hours along, and the village sank into a hopeless stupor. No one had heart for anything. The accidental discovery, just made, that the proprietor of the Temperance Tavern kept liquor on his premises, scarcely fluttered the public pulse, tremendous as the fact was. In a lucid interval, Huck feebly led up to the subject of taverns, and finally asked--dimly dreading the worst--if anything had been discovered at the Temperance Tavern since he had been ill. "Yes," said the widow. Huck started up in bed, wild-eyed: "What? What was it?" "Liquor!--and the place has been shut up. Lie down, child--what a turn you did give me!" "Only tell me just one thing--only just one--please! Was it Tom Sawyer that found it?" The widow burst into tears. "Hush, hush, child, hush! I've told you before, you must NOT talk. You are very, very sick!" Then nothing but liquor had been found; there would have been a great powwow if it had been the gold. So the treasure was gone forever--gone forever! But what could she be crying about? Curious that she should cry. These thoughts worked their dim way through Huck's mind, and under the weariness they gave him he fell asleep. The widow said to herself: "There--he's asleep, poor wreck. Tom Sawyer find it! Pity but somebody could find Tom Sawyer! Ah, there ain't many left, now, that's got hope enough, or strength enough, either, to go on searching." CHAPTER XXXI NOW to return to Tom and Becky's share in the picnic. They tripped along the murky aisles with the rest of the company, visiting the familiar wonders of the cave--wonders dubbed with rather over-descriptive names, such as "The Drawing-Room," "The Cathedral," "Aladdin's Palace," and so on. Presently the hide-and-seek frolicking began, and Tom and Becky engaged in it with zeal until the exertion began to grow a trifle wearisome; then they wandered down a sinuous avenue holding their candles aloft and reading the tangled web-work of names, dates, post-office addresses, and mottoes with which the rocky walls had been frescoed (in candle-smoke). Still drifting along and talking, they scarcely noticed that they were now in a part of the cave whose walls were not frescoed. They smoked their own names under an overhanging shelf and moved on. Presently they came to a place where a little stream of water, trickling over a ledge and carrying a limestone sediment with it, had, in the slow-dragging ages, formed a laced and ruffled Niagara in gleaming and imperishable stone. Tom squeezed his small body behind it in order to illuminate it for Becky's gratification. He found that it curtained a sort of steep natural stairway which was enclosed between narrow walls, and at once the ambition to be a discoverer seized him. Becky responded to his call, and they made a smoke-mark for future guidance, and started upon their quest. They wound this way and that, far down into the secret depths of the cave, made another mark, and branched off in search of novelties to tell the upper world about. In one place they found a spacious cavern, from whose ceiling depended a multitude of shining stalactites of the length and circumference of a man's leg; they walked all about it, wondering and admiring, and presently left it by one of the numerous passages that opened into it. This shortly brought them to a bewitching spring, whose basin was incrusted with a frostwork of glittering crystals; it was in the midst of a cavern whose walls were supported by many fantastic pillars which had been formed by the joining of great stalactites and stalagmites together, the result of the ceaseless water-drip of centuries. Under the roof vast knots of bats had packed themselves together, thousands in a bunch; the lights disturbed the creatures and they came flocking down by hundreds, squeaking and darting furiously at the candles. Tom knew their ways and the danger of this sort of conduct. He seized Becky's hand and hurried her into the first corridor that offered; and none too soon, for a bat struck Becky's light out with its wing while she was passing out of the cavern. The bats chased the children a good distance; but the fugitives plunged into every new passage that offered, and at last got rid of the perilous things. Tom found a subterranean lake, shortly, which stretched its dim length away until its shape was lost in the shadows. He wanted to explore its borders, but concluded that it would be best to sit down and rest awhile, first. Now, for the first time, the deep stillness of the place laid a clammy hand upon the spirits of the children. Becky said: "Why, I didn't notice, but it seems ever so long since I heard any of the others." "Come to think, Becky, we are away down below them--and I don't know how far away north, or south, or east, or whichever it is. We couldn't hear them here." Becky grew apprehensive. "I wonder how long we've been down here, Tom? We better start back." "Yes, I reckon we better. P'raps we better." "Can you find the way, Tom? It's all a mixed-up crookedness to me." "I reckon I could find it--but then the bats. If they put our candles out it will be an awful fix. Let's try some other way, so as not to go through there." "Well. But I hope we won't get lost. It would be so awful!" and the girl shuddered at the thought of the dreadful possibilities. They started through a corridor, and traversed it in silence a long way, glancing at each new opening, to see if there was anything familiar about the look of it; but they were all strange. Every time Tom made an examination, Becky would watch his face for an encouraging sign, and he would say cheerily: "Oh, it's all right. This ain't the one, but we'll come to it right away!" But he felt less and less hopeful with each failure, and presently began to turn off into diverging avenues at sheer random, in desperate hope of finding the one that was wanted. He still said it was "all right," but there was such a leaden dread at his heart that the words had lost their ring and sounded just as if he had said, "All is lost!" Becky clung to his side in an anguish of fear, and tried hard to keep back the tears, but they would come. At last she said: "Oh, Tom, never mind the bats, let's go back that way! We seem to get worse and worse off all the time." "Listen!" said he. Profound silence; silence so deep that even their breathings were conspicuous in the hush. Tom shouted. The call went echoing down the empty aisles and died out in the distance in a faint sound that resembled a ripple of mocking laughter. "Oh, don't do it again, Tom, it is too horrid," said Becky. "It is horrid, but I better, Becky; they might hear us, you know," and he shouted again. The "might" was even a chillier horror than the ghostly laughter, it so confessed a perishing hope. The children stood still and listened; but there was no result. Tom turned upon the back track at once, and hurried his steps. It was but a little while before a certain indecision in his manner revealed another fearful fact to Becky--he could not find his way back! "Oh, Tom, you didn't make any marks!" "Becky, I was such a fool! Such a fool! I never thought we might want to come back! No--I can't find the way. It's all mixed up." "Tom, Tom, we're lost! we're lost! We never can get out of this awful place! Oh, why DID we ever leave the others!" She sank to the ground and burst into such a frenzy of crying that Tom was appalled with the idea that she might die, or lose her reason. He sat down by her and put his arms around her; she buried her face in his bosom, she clung to him, she poured out her terrors, her unavailing regrets, and the far echoes turned them all to jeering laughter. Tom begged her to pluck up hope again, and she said she could not. He fell to blaming and abusing himself for getting her into this miserable situation; this had a better effect. She said she would try to hope again, she would get up and follow wherever he might lead if only he would not talk like that any more. For he was no more to blame than she, she said. So they moved on again--aimlessly--simply at random--all they could do was to move, keep moving. For a little while, hope made a show of reviving--not with any reason to back it, but only because it is its nature to revive when the spring has not been taken out of it by age and familiarity with failure. By-and-by Tom took Becky's candle and blew it out. This economy meant so much! Words were not needed. Becky understood, and her hope died again. She knew that Tom had a whole candle and three or four pieces in his pockets--yet he must economize. By-and-by, fatigue began to assert its claims; the children tried to pay attention, for it was dreadful to think of sitting down when time was grown to be so precious, moving, in some direction, in any direction, was at least progress and might bear fruit; but to sit down was to invite death and shorten its pursuit. At last Becky's frail limbs refused to carry her farther. She sat down. Tom rested with her, and they talked of home, and the friends there, and the comfortable beds and, above all, the light! Becky cried, and Tom tried to think of some way of comforting her, but all his encouragements were grown threadbare with use, and sounded like sarcasms. Fatigue bore so heavily upon Becky that she drowsed off to sleep. Tom was grateful. He sat looking into her drawn face and saw it grow smooth and natural under the influence of pleasant dreams; and by-and-by a smile dawned and rested there. The peaceful face reflected somewhat of peace and healing into his own spirit, and his thoughts wandered away to bygone times and dreamy memories. While he was deep in his musings, Becky woke up with a breezy little laugh--but it was stricken dead upon her lips, and a groan followed it. "Oh, how COULD I sleep! I wish I never, never had waked! No! No, I don't, Tom! Don't look so! I won't say it again." "I'm glad you've slept, Becky; you'll feel rested, now, and we'll find the way out." "We can try, Tom; but I've seen such a beautiful country in my dream. I reckon we are going there." "Maybe not, maybe not. Cheer up, Becky, and let's go on trying." They rose up and wandered along, hand in hand and hopeless. They tried to estimate how long they had been in the cave, but all they knew was that it seemed days and weeks, and yet it was plain that this could not be, for their candles were not gone yet. A long time after this--they could not tell how long--Tom said they must go softly and listen for dripping water--they must find a spring. They found one presently, and Tom said it was time to rest again. Both were cruelly tired, yet Becky said she thought she could go a little farther. She was surprised to hear Tom dissent. She could not understand it. They sat down, and Tom fastened his candle to the wall in front of them with some clay. Thought was soon busy; nothing was said for some time. Then Becky broke the silence: "Tom, I am so hungry!" Tom took something out of his pocket. "Do you remember this?" said he. Becky almost smiled. "It's our wedding-cake, Tom." "Yes--I wish it was as big as a barrel, for it's all we've got." "I saved it from the picnic for us to dream on, Tom, the way grown-up people do with wedding-cake--but it'll be our--" She dropped the sentence where it was. Tom divided the cake and Becky ate with good appetite, while Tom nibbled at his moiety. There was abundance of cold water to finish the feast with. By-and-by Becky suggested that they move on again. Tom was silent a moment. Then he said: "Becky, can you bear it if I tell you something?" Becky's face paled, but she thought she could. "Well, then, Becky, we must stay here, where there's water to drink. That little piece is our last candle!" Becky gave loose to tears and wailings. Tom did what he could to comfort her, but with little effect. At length Becky said: "Tom!" "Well, Becky?" "They'll miss us and hunt for us!" "Yes, they will! Certainly they will!" "Maybe they're hunting for us now, Tom." "Why, I reckon maybe they are. I hope they are." "When would they miss us, Tom?" "When they get back to the boat, I reckon." "Tom, it might be dark then--would they notice we hadn't come?" "I don't know. But anyway, your mother would miss you as soon as they got home." A frightened look in Becky's face brought Tom to his senses and he saw that he had made a blunder. Becky was not to have gone home that night! The children became silent and thoughtful. In a moment a new burst of grief from Becky showed Tom that the thing in his mind had struck hers also--that the Sabbath morning might be half spent before Mrs. Thatcher discovered that Becky was not at Mrs. Harper's. The children fastened their eyes upon their bit of candle and watched it melt slowly and pitilessly away; saw the half inch of wick stand alone at last; saw the feeble flame rise and fall, climb the thin column of smoke, linger at its top a moment, and then--the horror of utter darkness reigned! How long afterward it was that Becky came to a slow consciousness that she was crying in Tom's arms, neither could tell. All that they knew was, that after what seemed a mighty stretch of time, both awoke out of a dead stupor of sleep and resumed their miseries once more. Tom said it might be Sunday, now--maybe Monday. He tried to get Becky to talk, but her sorrows were too oppressive, all her hopes were gone. Tom said that they must have been missed long ago, and no doubt the search was going on. He would shout and maybe some one would come. He tried it; but in the darkness the distant echoes sounded so hideously that he tried it no more. The hours wasted away, and hunger came to torment the captives again. A portion of Tom's half of the cake was left; they divided and ate it. But they seemed hungrier than before. The poor morsel of food only whetted desire. By-and-by Tom said: "SH! Did you hear that?" Both held their breath and listened. There was a sound like the faintest, far-off shout. Instantly Tom answered it, and leading Becky by the hand, started groping down the corridor in its direction. Presently he listened again; again the sound was heard, and apparently a little nearer. "It's them!" said Tom; "they're coming! Come along, Becky--we're all right now!" The joy of the prisoners was almost overwhelming. Their speed was slow, however, because pitfalls were somewhat common, and had to be guarded against. They shortly came to one and had to stop. It might be three feet deep, it might be a hundred--there was no passing it at any rate. Tom got down on his breast and reached as far down as he could. No bottom. They must stay there and wait until the searchers came. They listened; evidently the distant shoutings were growing more distant! a moment or two more and they had gone altogether. The heart-sinking misery of it! Tom whooped until he was hoarse, but it was of no use. He talked hopefully to Becky; but an age of anxious waiting passed and no sounds came again. The children groped their way back to the spring. The weary time dragged on; they slept again, and awoke famished and woe-stricken. Tom believed it must be Tuesday by this time. Now an idea struck him. There were some side passages near at hand. It would be better to explore some of these than bear the weight of the heavy time in idleness. He took a kite-line from his pocket, tied it to a projection, and he and Becky started, Tom in the lead, unwinding the line as he groped along. At the end of twenty steps the corridor ended in a "jumping-off place." Tom got down on his knees and felt below, and then as far around the corner as he could reach with his hands conveniently; he made an effort to stretch yet a little farther to the right, and at that moment, not twenty yards away, a human hand, holding a candle, appeared from behind a rock! Tom lifted up a glorious shout, and instantly that hand was followed by the body it belonged to--Injun Joe's! Tom was paralyzed; he could not move. He was vastly gratified the next moment, to see the "Spaniard" take to his heels and get himself out of sight. Tom wondered that Joe had not recognized his voice and come over and killed him for testifying in court. But the echoes must have disguised the voice. Without doubt, that was it, he reasoned. Tom's fright weakened every muscle in his body. He said to himself that if he had strength enough to get back to the spring he would stay there, and nothing should tempt him to run the risk of meeting Injun Joe again. He was careful to keep from Becky what it was he had seen. He told her he had only shouted "for luck." But hunger and wretchedness rise superior to fears in the long run. Another tedious wait at the spring and another long sleep brought changes. The children awoke tortured with a raging hunger. Tom believed that it must be Wednesday or Thursday or even Friday or Saturday, now, and that the search had been given over. He proposed to explore another passage. He felt willing to risk Injun Joe and all other terrors. But Becky was very weak. She had sunk into a dreary apathy and would not be roused. She said she would wait, now, where she was, and die--it would not be long. She told Tom to go with the kite-line and explore if he chose; but she implored him to come back every little while and speak to her; and she made him promise that when the awful time came, he would stay by her and hold her hand until all was over. Tom kissed her, with a choking sensation in his throat, and made a show of being confident of finding the searchers or an escape from the cave; then he took the kite-line in his hand and went groping down one of the passages on his hands and knees, distressed with hunger and sick with bodings of coming doom. CHAPTER XXXII TUESDAY afternoon came, and waned to the twilight. The village of St. Petersburg still mourned. The lost children had not been found. Public prayers had been offered up for them, and many and many a private prayer that had the petitioner's whole heart in it; but still no good news came from the cave. The majority of the searchers had given up the quest and gone back to their daily avocations, saying that it was plain the children could never be found. Mrs. Thatcher was very ill, and a great part of the time delirious. People said it was heartbreaking to hear her call her child, and raise her head and listen a whole minute at a time, then lay it wearily down again with a moan. Aunt Polly had drooped into a settled melancholy, and her gray hair had grown almost white. The village went to its rest on Tuesday night, sad and forlorn. Away in the middle of the night a wild peal burst from the village bells, and in a moment the streets were swarming with frantic half-clad people, who shouted, "Turn out! turn out! they're found! they're found!" Tin pans and horns were added to the din, the population massed itself and moved toward the river, met the children coming in an open carriage drawn by shouting citizens, thronged around it, joined its homeward march, and swept magnificently up the main street roaring huzzah after huzzah! The village was illuminated; nobody went to bed again; it was the greatest night the little town had ever seen. During the first half-hour a procession of villagers filed through Judge Thatcher's house, seized the saved ones and kissed them, squeezed Mrs. Thatcher's hand, tried to speak but couldn't--and drifted out raining tears all over the place. Aunt Polly's happiness was complete, and Mrs. Thatcher's nearly so. It would be complete, however, as soon as the messenger dispatched with the great news to the cave should get the word to her husband. Tom lay upon a sofa with an eager auditory about him and told the history of the wonderful adventure, putting in many striking additions to adorn it withal; and closed with a description of how he left Becky and went on an exploring expedition; how he followed two avenues as far as his kite-line would reach; how he followed a third to the fullest stretch of the kite-line, and was about to turn back when he glimpsed a far-off speck that looked like daylight; dropped the line and groped toward it, pushed his head and shoulders through a small hole, and saw the broad Mississippi rolling by! And if it had only happened to be night he would not have seen that speck of daylight and would not have explored that passage any more! He told how he went back for Becky and broke the good news and she told him not to fret her with such stuff, for she was tired, and knew she was going to die, and wanted to. He described how he labored with her and convinced her; and how she almost died for joy when she had groped to where she actually saw the blue speck of daylight; how he pushed his way out at the hole and then helped her out; how they sat there and cried for gladness; how some men came along in a skiff and Tom hailed them and told them their situation and their famished condition; how the men didn't believe the wild tale at first, "because," said they, "you are five miles down the river below the valley the cave is in" --then took them aboard, rowed to a house, gave them supper, made them rest till two or three hours after dark and then brought them home. Before day-dawn, Judge Thatcher and the handful of searchers with him were tracked out, in the cave, by the twine clews they had strung behind them, and informed of the great news. Three days and nights of toil and hunger in the cave were not to be shaken off at once, as Tom and Becky soon discovered. They were bedridden all of Wednesday and Thursday, and seemed to grow more and more tired and worn, all the time. Tom got about, a little, on Thursday, was down-town Friday, and nearly as whole as ever Saturday; but Becky did not leave her room until Sunday, and then she looked as if she had passed through a wasting illness. Tom learned of Huck's sickness and went to see him on Friday, but could not be admitted to the bedroom; neither could he on Saturday or Sunday. He was admitted daily after that, but was warned to keep still about his adventure and introduce no exciting topic. The Widow Douglas stayed by to see that he obeyed. At home Tom learned of the Cardiff Hill event; also that the "ragged man's" body had eventually been found in the river near the ferry-landing; he had been drowned while trying to escape, perhaps. About a fortnight after Tom's rescue from the cave, he started off to visit Huck, who had grown plenty strong enough, now, to hear exciting talk, and Tom had some that would interest him, he thought. Judge Thatcher's house was on Tom's way, and he stopped to see Becky. The Judge and some friends set Tom to talking, and some one asked him ironically if he wouldn't like to go to the cave again. Tom said he thought he wouldn't mind it. The Judge said: "Well, there are others just like you, Tom, I've not the least doubt. But we have taken care of that. Nobody will get lost in that cave any more." "Why?" "Because I had its big door sheathed with boiler iron two weeks ago, and triple-locked--and I've got the keys." Tom turned as white as a sheet. "What's the matter, boy! Here, run, somebody! Fetch a glass of water!" The water was brought and thrown into Tom's face. "Ah, now you're all right. What was the matter with you, Tom?" "Oh, Judge, Injun Joe's in the cave!" CHAPTER XXXIII WITHIN a few minutes the news had spread, and a dozen skiff-loads of men were on their way to McDougal's cave, and the ferryboat, well filled with passengers, soon followed. Tom Sawyer was in the skiff that bore Judge Thatcher. When the cave door was unlocked, a sorrowful sight presented itself in the dim twilight of the place. Injun Joe lay stretched upon the ground, dead, with his face close to the crack of the door, as if his longing eyes had been fixed, to the latest moment, upon the light and the cheer of the free world outside. Tom was touched, for he knew by his own experience how this wretch had suffered. His pity was moved, but nevertheless he felt an abounding sense of relief and security, now, which revealed to him in a degree which he had not fully appreciated before how vast a weight of dread had been lying upon him since the day he lifted his voice against this bloody-minded outcast. Injun Joe's bowie-knife lay close by, its blade broken in two. The great foundation-beam of the door had been chipped and hacked through, with tedious labor; useless labor, too, it was, for the native rock formed a sill outside it, and upon that stubborn material the knife had wrought no effect; the only damage done was to the knife itself. But if there had been no stony obstruction there the labor would have been useless still, for if the beam had been wholly cut away Injun Joe could not have squeezed his body under the door, and he knew it. So he had only hacked that place in order to be doing something--in order to pass the weary time--in order to employ his tortured faculties. Ordinarily one could find half a dozen bits of candle stuck around in the crevices of this vestibule, left there by tourists; but there were none now. The prisoner had searched them out and eaten them. He had also contrived to catch a few bats, and these, also, he had eaten, leaving only their claws. The poor unfortunate had starved to death. In one place, near at hand, a stalagmite had been slowly growing up from the ground for ages, builded by the water-drip from a stalactite overhead. The captive had broken off the stalagmite, and upon the stump had placed a stone, wherein he had scooped a shallow hollow to catch the precious drop that fell once in every three minutes with the dreary regularity of a clock-tick--a dessertspoonful once in four and twenty hours. That drop was falling when the Pyramids were new; when Troy fell; when the foundations of Rome were laid; when Christ was crucified; when the Conqueror created the British empire; when Columbus sailed; when the massacre at Lexington was "news." It is falling now; it will still be falling when all these things shall have sunk down the afternoon of history, and the twilight of tradition, and been swallowed up in the thick night of oblivion. Has everything a purpose and a mission? Did this drop fall patiently during five thousand years to be ready for this flitting human insect's need? and has it another important object to accomplish ten thousand years to come? No matter. It is many and many a year since the hapless half-breed scooped out the stone to catch the priceless drops, but to this day the tourist stares longest at that pathetic stone and that slow-dropping water when he comes to see the wonders of McDougal's cave. Injun Joe's cup stands first in the list of the cavern's marvels; even "Aladdin's Palace" cannot rival it. Injun Joe was buried near the mouth of the cave; and people flocked there in boats and wagons from the towns and from all the farms and hamlets for seven miles around; they brought their children, and all sorts of provisions, and confessed that they had had almost as satisfactory a time at the funeral as they could have had at the hanging. This funeral stopped the further growth of one thing--the petition to the governor for Injun Joe's pardon. The petition had been largely signed; many tearful and eloquent meetings had been held, and a committee of sappy women been appointed to go in deep mourning and wail around the governor, and implore him to be a merciful ass and trample his duty under foot. Injun Joe was believed to have killed five citizens of the village, but what of that? If he had been Satan himself there would have been plenty of weaklings ready to scribble their names to a pardon-petition, and drip a tear on it from their permanently impaired and leaky water-works. The morning after the funeral Tom took Huck to a private place to have an important talk. Huck had learned all about Tom's adventure from the Welshman and the Widow Douglas, by this time, but Tom said he reckoned there was one thing they had not told him; that thing was what he wanted to talk about now. Huck's face saddened. He said: "I know what it is. You got into No. 2 and never found anything but whiskey. Nobody told me it was you; but I just knowed it must 'a' ben you, soon as I heard 'bout that whiskey business; and I knowed you hadn't got the money becuz you'd 'a' got at me some way or other and told me even if you was mum to everybody else. Tom, something's always told me we'd never get holt of that swag." "Why, Huck, I never told on that tavern-keeper. YOU know his tavern was all right the Saturday I went to the picnic. Don't you remember you was to watch there that night?" "Oh yes! Why, it seems 'bout a year ago. It was that very night that I follered Injun Joe to the widder's." "YOU followed him?" "Yes--but you keep mum. I reckon Injun Joe's left friends behind him, and I don't want 'em souring on me and doing me mean tricks. If it hadn't ben for me he'd be down in Texas now, all right." Then Huck told his entire adventure in confidence to Tom, who had only heard of the Welshman's part of it before. "Well," said Huck, presently, coming back to the main question, "whoever nipped the whiskey in No. 2, nipped the money, too, I reckon --anyways it's a goner for us, Tom." "Huck, that money wasn't ever in No. 2!" "What!" Huck searched his comrade's face keenly. "Tom, have you got on the track of that money again?" "Huck, it's in the cave!" Huck's eyes blazed. "Say it again, Tom." "The money's in the cave!" "Tom--honest injun, now--is it fun, or earnest?" "Earnest, Huck--just as earnest as ever I was in my life. Will you go in there with me and help get it out?" "I bet I will! I will if it's where we can blaze our way to it and not get lost." "Huck, we can do that without the least little bit of trouble in the world." "Good as wheat! What makes you think the money's--" "Huck, you just wait till we get in there. If we don't find it I'll agree to give you my drum and every thing I've got in the world. I will, by jings." "All right--it's a whiz. When do you say?" "Right now, if you say it. Are you strong enough?" "Is it far in the cave? I ben on my pins a little, three or four days, now, but I can't walk more'n a mile, Tom--least I don't think I could." "It's about five mile into there the way anybody but me would go, Huck, but there's a mighty short cut that they don't anybody but me know about. Huck, I'll take you right to it in a skiff. I'll float the skiff down there, and I'll pull it back again all by myself. You needn't ever turn your hand over." "Less start right off, Tom." "All right. We want some bread and meat, and our pipes, and a little bag or two, and two or three kite-strings, and some of these new-fangled things they call lucifer matches. I tell you, many's the time I wished I had some when I was in there before." A trifle after noon the boys borrowed a small skiff from a citizen who was absent, and got under way at once. When they were several miles below "Cave Hollow," Tom said: "Now you see this bluff here looks all alike all the way down from the cave hollow--no houses, no wood-yards, bushes all alike. But do you see that white place up yonder where there's been a landslide? Well, that's one of my marks. We'll get ashore, now." They landed. "Now, Huck, where we're a-standing you could touch that hole I got out of with a fishing-pole. See if you can find it." Huck searched all the place about, and found nothing. Tom proudly marched into a thick clump of sumach bushes and said: "Here you are! Look at it, Huck; it's the snuggest hole in this country. You just keep mum about it. All along I've been wanting to be a robber, but I knew I'd got to have a thing like this, and where to run across it was the bother. We've got it now, and we'll keep it quiet, only we'll let Joe Harper and Ben Rogers in--because of course there's got to be a Gang, or else there wouldn't be any style about it. Tom Sawyer's Gang--it sounds splendid, don't it, Huck?" "Well, it just does, Tom. And who'll we rob?" "Oh, most anybody. Waylay people--that's mostly the way." "And kill them?" "No, not always. Hive them in the cave till they raise a ransom." "What's a ransom?" "Money. You make them raise all they can, off'n their friends; and after you've kept them a year, if it ain't raised then you kill them. That's the general way. Only you don't kill the women. You shut up the women, but you don't kill them. They're always beautiful and rich, and awfully scared. You take their watches and things, but you always take your hat off and talk polite. They ain't anybody as polite as robbers --you'll see that in any book. Well, the women get to loving you, and after they've been in the cave a week or two weeks they stop crying and after that you couldn't get them to leave. If you drove them out they'd turn right around and come back. It's so in all the books." "Why, it's real bully, Tom. I believe it's better'n to be a pirate." "Yes, it's better in some ways, because it's close to home and circuses and all that." By this time everything was ready and the boys entered the hole, Tom in the lead. They toiled their way to the farther end of the tunnel, then made their spliced kite-strings fast and moved on. A few steps brought them to the spring, and Tom felt a shudder quiver all through him. He showed Huck the fragment of candle-wick perched on a lump of clay against the wall, and described how he and Becky had watched the flame struggle and expire. The boys began to quiet down to whispers, now, for the stillness and gloom of the place oppressed their spirits. They went on, and presently entered and followed Tom's other corridor until they reached the "jumping-off place." The candles revealed the fact that it was not really a precipice, but only a steep clay hill twenty or thirty feet high. Tom whispered: "Now I'll show you something, Huck." He held his candle aloft and said: "Look as far around the corner as you can. Do you see that? There--on the big rock over yonder--done with candle-smoke." "Tom, it's a CROSS!" "NOW where's your Number Two? 'UNDER THE CROSS,' hey? Right yonder's where I saw Injun Joe poke up his candle, Huck!" Huck stared at the mystic sign awhile, and then said with a shaky voice: "Tom, less git out of here!" "What! and leave the treasure?" "Yes--leave it. Injun Joe's ghost is round about there, certain." "No it ain't, Huck, no it ain't. It would ha'nt the place where he died--away out at the mouth of the cave--five mile from here." "No, Tom, it wouldn't. It would hang round the money. I know the ways of ghosts, and so do you." Tom began to fear that Huck was right. Misgivings gathered in his mind. But presently an idea occurred to him-- "Lookyhere, Huck, what fools we're making of ourselves! Injun Joe's ghost ain't a going to come around where there's a cross!" The point was well taken. It had its effect. "Tom, I didn't think of that. But that's so. It's luck for us, that cross is. I reckon we'll climb down there and have a hunt for that box." Tom went first, cutting rude steps in the clay hill as he descended. Huck followed. Four avenues opened out of the small cavern which the great rock stood in. The boys examined three of them with no result. They found a small recess in the one nearest the base of the rock, with a pallet of blankets spread down in it; also an old suspender, some bacon rind, and the well-gnawed bones of two or three fowls. But there was no money-box. The lads searched and researched this place, but in vain. Tom said: "He said UNDER the cross. Well, this comes nearest to being under the cross. It can't be under the rock itself, because that sets solid on the ground." They searched everywhere once more, and then sat down discouraged. Huck could suggest nothing. By-and-by Tom said: "Lookyhere, Huck, there's footprints and some candle-grease on the clay about one side of this rock, but not on the other sides. Now, what's that for? I bet you the money IS under the rock. I'm going to dig in the clay." "That ain't no bad notion, Tom!" said Huck with animation. Tom's "real Barlow" was out at once, and he had not dug four inches before he struck wood. "Hey, Huck!--you hear that?" Huck began to dig and scratch now. Some boards were soon uncovered and removed. They had concealed a natural chasm which led under the rock. Tom got into this and held his candle as far under the rock as he could, but said he could not see to the end of the rift. He proposed to explore. He stooped and passed under; the narrow way descended gradually. He followed its winding course, first to the right, then to the left, Huck at his heels. Tom turned a short curve, by-and-by, and exclaimed: "My goodness, Huck, lookyhere!" It was the treasure-box, sure enough, occupying a snug little cavern, along with an empty powder-keg, a couple of guns in leather cases, two or three pairs of old moccasins, a leather belt, and some other rubbish well soaked with the water-drip. "Got it at last!" said Huck, ploughing among the tarnished coins with his hand. "My, but we're rich, Tom!" "Huck, I always reckoned we'd get it. It's just too good to believe, but we HAVE got it, sure! Say--let's not fool around here. Let's snake it out. Lemme see if I can lift the box." It weighed about fifty pounds. Tom could lift it, after an awkward fashion, but could not carry it conveniently. "I thought so," he said; "THEY carried it like it was heavy, that day at the ha'nted house. I noticed that. I reckon I was right to think of fetching the little bags along." The money was soon in the bags and the boys took it up to the cross rock. "Now less fetch the guns and things," said Huck. "No, Huck--leave them there. They're just the tricks to have when we go to robbing. We'll keep them there all the time, and we'll hold our orgies there, too. It's an awful snug place for orgies." "What orgies?" "I dono. But robbers always have orgies, and of course we've got to have them, too. Come along, Huck, we've been in here a long time. It's getting late, I reckon. I'm hungry, too. We'll eat and smoke when we get to the skiff." They presently emerged into the clump of sumach bushes, looked warily out, found the coast clear, and were soon lunching and smoking in the skiff. As the sun dipped toward the horizon they pushed out and got under way. Tom skimmed up the shore through the long twilight, chatting cheerily with Huck, and landed shortly after dark. "Now, Huck," said Tom, "we'll hide the money in the loft of the widow's woodshed, and I'll come up in the morning and we'll count it and divide, and then we'll hunt up a place out in the woods for it where it will be safe. Just you lay quiet here and watch the stuff till I run and hook Benny Taylor's little wagon; I won't be gone a minute." He disappeared, and presently returned with the wagon, put the two small sacks into it, threw some old rags on top of them, and started off, dragging his cargo behind him. When the boys reached the Welshman's house, they stopped to rest. Just as they were about to move on, the Welshman stepped out and said: "Hallo, who's that?" "Huck and Tom Sawyer." "Good! Come along with me, boys, you are keeping everybody waiting. Here--hurry up, trot ahead--I'll haul the wagon for you. Why, it's not as light as it might be. Got bricks in it?--or old metal?" "Old metal," said Tom. "I judged so; the boys in this town will take more trouble and fool away more time hunting up six bits' worth of old iron to sell to the foundry than they would to make twice the money at regular work. But that's human nature--hurry along, hurry along!" The boys wanted to know what the hurry was about. "Never mind; you'll see, when we get to the Widow Douglas'." Huck said with some apprehension--for he was long used to being falsely accused: "Mr. Jones, we haven't been doing nothing." The Welshman laughed. "Well, I don't know, Huck, my boy. I don't know about that. Ain't you and the widow good friends?" "Yes. Well, she's ben good friends to me, anyway." "All right, then. What do you want to be afraid for?" This question was not entirely answered in Huck's slow mind before he found himself pushed, along with Tom, into Mrs. Douglas' drawing-room. Mr. Jones left the wagon near the door and followed. The place was grandly lighted, and everybody that was of any consequence in the village was there. The Thatchers were there, the Harpers, the Rogerses, Aunt Polly, Sid, Mary, the minister, the editor, and a great many more, and all dressed in their best. The widow received the boys as heartily as any one could well receive two such looking beings. They were covered with clay and candle-grease. Aunt Polly blushed crimson with humiliation, and frowned and shook her head at Tom. Nobody suffered half as much as the two boys did, however. Mr. Jones said: "Tom wasn't at home, yet, so I gave him up; but I stumbled on him and Huck right at my door, and so I just brought them along in a hurry." "And you did just right," said the widow. "Come with me, boys." She took them to a bedchamber and said: "Now wash and dress yourselves. Here are two new suits of clothes --shirts, socks, everything complete. They're Huck's--no, no thanks, Huck--Mr. Jones bought one and I the other. But they'll fit both of you. Get into them. We'll wait--come down when you are slicked up enough." Then she left. CHAPTER XXXIV HUCK said: "Tom, we can slope, if we can find a rope. The window ain't high from the ground." "Shucks! what do you want to slope for?" "Well, I ain't used to that kind of a crowd. I can't stand it. I ain't going down there, Tom." "Oh, bother! It ain't anything. I don't mind it a bit. I'll take care of you." Sid appeared. "Tom," said he, "auntie has been waiting for you all the afternoon. Mary got your Sunday clothes ready, and everybody's been fretting about you. Say--ain't this grease and clay, on your clothes?" "Now, Mr. Siddy, you jist 'tend to your own business. What's all this blow-out about, anyway?" "It's one of the widow's parties that she's always having. This time it's for the Welshman and his sons, on account of that scrape they helped her out of the other night. And say--I can tell you something, if you want to know." "Well, what?" "Why, old Mr. Jones is going to try to spring something on the people here to-night, but I overheard him tell auntie to-day about it, as a secret, but I reckon it's not much of a secret now. Everybody knows --the widow, too, for all she tries to let on she don't. Mr. Jones was bound Huck should be here--couldn't get along with his grand secret without Huck, you know!" "Secret about what, Sid?" "About Huck tracking the robbers to the widow's. I reckon Mr. Jones was going to make a grand time over his surprise, but I bet you it will drop pretty flat." Sid chuckled in a very contented and satisfied way. "Sid, was it you that told?" "Oh, never mind who it was. SOMEBODY told--that's enough." "Sid, there's only one person in this town mean enough to do that, and that's you. If you had been in Huck's place you'd 'a' sneaked down the hill and never told anybody on the robbers. You can't do any but mean things, and you can't bear to see anybody praised for doing good ones. There--no thanks, as the widow says"--and Tom cuffed Sid's ears and helped him to the door with several kicks. "Now go and tell auntie if you dare--and to-morrow you'll catch it!" Some minutes later the widow's guests were at the supper-table, and a dozen children were propped up at little side-tables in the same room, after the fashion of that country and that day. At the proper time Mr. Jones made his little speech, in which he thanked the widow for the honor she was doing himself and his sons, but said that there was another person whose modesty-- And so forth and so on. He sprung his secret about Huck's share in the adventure in the finest dramatic manner he was master of, but the surprise it occasioned was largely counterfeit and not as clamorous and effusive as it might have been under happier circumstances. However, the widow made a pretty fair show of astonishment, and heaped so many compliments and so much gratitude upon Huck that he almost forgot the nearly intolerable discomfort of his new clothes in the entirely intolerable discomfort of being set up as a target for everybody's gaze and everybody's laudations. The widow said she meant to give Huck a home under her roof and have him educated; and that when she could spare the money she would start him in business in a modest way. Tom's chance was come. He said: "Huck don't need it. Huck's rich." Nothing but a heavy strain upon the good manners of the company kept back the due and proper complimentary laugh at this pleasant joke. But the silence was a little awkward. Tom broke it: "Huck's got money. Maybe you don't believe it, but he's got lots of it. Oh, you needn't smile--I reckon I can show you. You just wait a minute." Tom ran out of doors. The company looked at each other with a perplexed interest--and inquiringly at Huck, who was tongue-tied. "Sid, what ails Tom?" said Aunt Polly. "He--well, there ain't ever any making of that boy out. I never--" Tom entered, struggling with the weight of his sacks, and Aunt Polly did not finish her sentence. Tom poured the mass of yellow coin upon the table and said: "There--what did I tell you? Half of it's Huck's and half of it's mine!" The spectacle took the general breath away. All gazed, nobody spoke for a moment. Then there was a unanimous call for an explanation. Tom said he could furnish it, and he did. The tale was long, but brimful of interest. There was scarcely an interruption from any one to break the charm of its flow. When he had finished, Mr. Jones said: "I thought I had fixed up a little surprise for this occasion, but it don't amount to anything now. This one makes it sing mighty small, I'm willing to allow." The money was counted. The sum amounted to a little over twelve thousand dollars. It was more than any one present had ever seen at one time before, though several persons were there who were worth considerably more than that in property. CHAPTER XXXV THE reader may rest satisfied that Tom's and Huck's windfall made a mighty stir in the poor little village of St. Petersburg. So vast a sum, all in actual cash, seemed next to incredible. It was talked about, gloated over, glorified, until the reason of many of the citizens tottered under the strain of the unhealthy excitement. Every "haunted" house in St. Petersburg and the neighboring villages was dissected, plank by plank, and its foundations dug up and ransacked for hidden treasure--and not by boys, but men--pretty grave, unromantic men, too, some of them. Wherever Tom and Huck appeared they were courted, admired, stared at. The boys were not able to remember that their remarks had possessed weight before; but now their sayings were treasured and repeated; everything they did seemed somehow to be regarded as remarkable; they had evidently lost the power of doing and saying commonplace things; moreover, their past history was raked up and discovered to bear marks of conspicuous originality. The village paper published biographical sketches of the boys. The Widow Douglas put Huck's money out at six per cent., and Judge Thatcher did the same with Tom's at Aunt Polly's request. Each lad had an income, now, that was simply prodigious--a dollar for every week-day in the year and half of the Sundays. It was just what the minister got --no, it was what he was promised--he generally couldn't collect it. A dollar and a quarter a week would board, lodge, and school a boy in those old simple days--and clothe him and wash him, too, for that matter. Judge Thatcher had conceived a great opinion of Tom. He said that no commonplace boy would ever have got his daughter out of the cave. When Becky told her father, in strict confidence, how Tom had taken her whipping at school, the Judge was visibly moved; and when she pleaded grace for the mighty lie which Tom had told in order to shift that whipping from her shoulders to his own, the Judge said with a fine outburst that it was a noble, a generous, a magnanimous lie--a lie that was worthy to hold up its head and march down through history breast to breast with George Washington's lauded Truth about the hatchet! Becky thought her father had never looked so tall and so superb as when he walked the floor and stamped his foot and said that. She went straight off and told Tom about it. Judge Thatcher hoped to see Tom a great lawyer or a great soldier some day. He said he meant to look to it that Tom should be admitted to the National Military Academy and afterward trained in the best law school in the country, in order that he might be ready for either career or both. Huck Finn's wealth and the fact that he was now under the Widow Douglas' protection introduced him into society--no, dragged him into it, hurled him into it--and his sufferings were almost more than he could bear. The widow's servants kept him clean and neat, combed and brushed, and they bedded him nightly in unsympathetic sheets that had not one little spot or stain which he could press to his heart and know for a friend. He had to eat with a knife and fork; he had to use napkin, cup, and plate; he had to learn his book, he had to go to church; he had to talk so properly that speech was become insipid in his mouth; whithersoever he turned, the bars and shackles of civilization shut him in and bound him hand and foot. He bravely bore his miseries three weeks, and then one day turned up missing. For forty-eight hours the widow hunted for him everywhere in great distress. The public were profoundly concerned; they searched high and low, they dragged the river for his body. Early the third morning Tom Sawyer wisely went poking among some old empty hogsheads down behind the abandoned slaughter-house, and in one of them he found the refugee. Huck had slept there; he had just breakfasted upon some stolen odds and ends of food, and was lying off, now, in comfort, with his pipe. He was unkempt, uncombed, and clad in the same old ruin of rags that had made him picturesque in the days when he was free and happy. Tom routed him out, told him the trouble he had been causing, and urged him to go home. Huck's face lost its tranquil content, and took a melancholy cast. He said: "Don't talk about it, Tom. I've tried it, and it don't work; it don't work, Tom. It ain't for me; I ain't used to it. The widder's good to me, and friendly; but I can't stand them ways. She makes me get up just at the same time every morning; she makes me wash, they comb me all to thunder; she won't let me sleep in the woodshed; I got to wear them blamed clothes that just smothers me, Tom; they don't seem to any air git through 'em, somehow; and they're so rotten nice that I can't set down, nor lay down, nor roll around anywher's; I hain't slid on a cellar-door for--well, it 'pears to be years; I got to go to church and sweat and sweat--I hate them ornery sermons! I can't ketch a fly in there, I can't chaw. I got to wear shoes all Sunday. The widder eats by a bell; she goes to bed by a bell; she gits up by a bell--everything's so awful reg'lar a body can't stand it." "Well, everybody does that way, Huck." "Tom, it don't make no difference. I ain't everybody, and I can't STAND it. It's awful to be tied up so. And grub comes too easy--I don't take no interest in vittles, that way. I got to ask to go a-fishing; I got to ask to go in a-swimming--dern'd if I hain't got to ask to do everything. Well, I'd got to talk so nice it wasn't no comfort--I'd got to go up in the attic and rip out awhile, every day, to git a taste in my mouth, or I'd a died, Tom. The widder wouldn't let me smoke; she wouldn't let me yell, she wouldn't let me gape, nor stretch, nor scratch, before folks--" [Then with a spasm of special irritation and injury]--"And dad fetch it, she prayed all the time! I never see such a woman! I HAD to shove, Tom--I just had to. And besides, that school's going to open, and I'd a had to go to it--well, I wouldn't stand THAT, Tom. Looky here, Tom, being rich ain't what it's cracked up to be. It's just worry and worry, and sweat and sweat, and a-wishing you was dead all the time. Now these clothes suits me, and this bar'l suits me, and I ain't ever going to shake 'em any more. Tom, I wouldn't ever got into all this trouble if it hadn't 'a' ben for that money; now you just take my sheer of it along with your'n, and gimme a ten-center sometimes--not many times, becuz I don't give a dern for a thing 'thout it's tollable hard to git--and you go and beg off for me with the widder." "Oh, Huck, you know I can't do that. 'Tain't fair; and besides if you'll try this thing just a while longer you'll come to like it." "Like it! Yes--the way I'd like a hot stove if I was to set on it long enough. No, Tom, I won't be rich, and I won't live in them cussed smothery houses. I like the woods, and the river, and hogsheads, and I'll stick to 'em, too. Blame it all! just as we'd got guns, and a cave, and all just fixed to rob, here this dern foolishness has got to come up and spile it all!" Tom saw his opportunity-- "Lookyhere, Huck, being rich ain't going to keep me back from turning robber." "No! Oh, good-licks; are you in real dead-wood earnest, Tom?" "Just as dead earnest as I'm sitting here. But Huck, we can't let you into the gang if you ain't respectable, you know." Huck's joy was quenched. "Can't let me in, Tom? Didn't you let me go for a pirate?" "Yes, but that's different. A robber is more high-toned than what a pirate is--as a general thing. In most countries they're awful high up in the nobility--dukes and such." "Now, Tom, hain't you always ben friendly to me? You wouldn't shet me out, would you, Tom? You wouldn't do that, now, WOULD you, Tom?" "Huck, I wouldn't want to, and I DON'T want to--but what would people say? Why, they'd say, 'Mph! Tom Sawyer's Gang! pretty low characters in it!' They'd mean you, Huck. You wouldn't like that, and I wouldn't." Huck was silent for some time, engaged in a mental struggle. Finally he said: "Well, I'll go back to the widder for a month and tackle it and see if I can come to stand it, if you'll let me b'long to the gang, Tom." "All right, Huck, it's a whiz! Come along, old chap, and I'll ask the widow to let up on you a little, Huck." "Will you, Tom--now will you? That's good. If she'll let up on some of the roughest things, I'll smoke private and cuss private, and crowd through or bust. When you going to start the gang and turn robbers?" "Oh, right off. We'll get the boys together and have the initiation to-night, maybe." "Have the which?" "Have the initiation." "What's that?" "It's to swear to stand by one another, and never tell the gang's secrets, even if you're chopped all to flinders, and kill anybody and all his family that hurts one of the gang." "That's gay--that's mighty gay, Tom, I tell you." "Well, I bet it is. And all that swearing's got to be done at midnight, in the lonesomest, awfulest place you can find--a ha'nted house is the best, but they're all ripped up now." "Well, midnight's good, anyway, Tom." "Yes, so it is. And you've got to swear on a coffin, and sign it with blood." "Now, that's something LIKE! Why, it's a million times bullier than pirating. I'll stick to the widder till I rot, Tom; and if I git to be a reg'lar ripper of a robber, and everybody talking 'bout it, I reckon she'll be proud she snaked me in out of the wet." CONCLUSION SO endeth this chronicle. It being strictly a history of a BOY, it must stop here; the story could not go much further without becoming the history of a MAN. When one writes a novel about grown people, he knows exactly where to stop--that is, with a marriage; but when he writes of juveniles, he must stop where he best can. Most of the characters that perform in this book still live, and are prosperous and happy. Some day it may seem worth while to take up the story of the younger ones again and see what sort of men and women they turned out to be; therefore it will be wisest not to reveal any of that part of their lives at present. Produced by David Widger. The previous edition was updated by Jose Menendez. THE ADVENTURES OF TOM SAWYER BY MARK TWAIN (Samuel Langhorne Clemens) P R E F A C E MOST of the adventures recorded in this book really occurred; one or two were experiences of my own, the rest those of boys who were schoolmates of mine. Huck Finn is drawn from life; Tom Sawyer also, but not from an individual--he is a combination of the characteristics of three boys whom I knew, and therefore belongs to the composite order of architecture. The odd superstitions touched upon were all prevalent among children and slaves in the West at the period of this story--that is to say, thirty or forty years ago. Although my book is intended mainly for the entertainment of boys and girls, I hope it will not be shunned by men and women on that account, for part of my plan has been to try to pleasantly remind adults of what they once were themselves, and of how they felt and thought and talked, and what queer enterprises they sometimes engaged in. THE AUTHOR. HARTFORD, 1876. T O M S A W Y E R CHAPTER I "TOM!" No answer. "TOM!" No answer. "What's gone with that boy, I wonder? You TOM!" No answer. The old lady pulled her spectacles down and looked over them about the room; then she put them up and looked out under them. She seldom or never looked THROUGH them for so small a thing as a boy; they were her state pair, the pride of her heart, and were built for "style," not service--she could have seen through a pair of stove-lids just as well. She looked perplexed for a moment, and then said, not fiercely, but still loud enough for the furniture to hear: "Well, I lay if I get hold of you I'll--" She did not finish, for by this time she was bending down and punching under the bed with the broom, and so she needed breath to punctuate the punches with. She resurrected nothing but the cat. "I never did see the beat of that boy!" She went to the open door and stood in it and looked out among the tomato vines and "jimpson" weeds that constituted the garden. No Tom. So she lifted up her voice at an angle calculated for distance and shouted: "Y-o-u-u TOM!" There was a slight noise behind her and she turned just in time to seize a small boy by the slack of his roundabout and arrest his flight. "There! I might 'a' thought of that closet. What you been doing in there?" "Nothing." "Nothing! Look at your hands. And look at your mouth. What IS that truck?" "I don't know, aunt." "Well, I know. It's jam--that's what it is. Forty times I've said if you didn't let that jam alone I'd skin you. Hand me that switch." The switch hovered in the air--the peril was desperate-- "My! Look behind you, aunt!" The old lady whirled round, and snatched her skirts out of danger. The lad fled on the instant, scrambled up the high board-fence, and disappeared over it. His aunt Polly stood surprised a moment, and then broke into a gentle laugh. "Hang the boy, can't I never learn anything? Ain't he played me tricks enough like that for me to be looking out for him by this time? But old fools is the biggest fools there is. Can't learn an old dog new tricks, as the saying is. But my goodness, he never plays them alike, two days, and how is a body to know what's coming? He 'pears to know just how long he can torment me before I get my dander up, and he knows if he can make out to put me off for a minute or make me laugh, it's all down again and I can't hit him a lick. I ain't doing my duty by that boy, and that's the Lord's truth, goodness knows. Spare the rod and spile the child, as the Good Book says. I'm a laying up sin and suffering for us both, I know. He's full of the Old Scratch, but laws-a-me! he's my own dead sister's boy, poor thing, and I ain't got the heart to lash him, somehow. Every time I let him off, my conscience does hurt me so, and every time I hit him my old heart most breaks. Well-a-well, man that is born of woman is of few days and full of trouble, as the Scripture says, and I reckon it's so. He'll play hookey this evening, * and [* Southwestern for "afternoon"] I'll just be obleeged to make him work, to-morrow, to punish him. It's mighty hard to make him work Saturdays, when all the boys is having holiday, but he hates work more than he hates anything else, and I've GOT to do some of my duty by him, or I'll be the ruination of the child." Tom did play hookey, and he had a very good time. He got back home barely in season to help Jim, the small colored boy, saw next-day's wood and split the kindlings before supper--at least he was there in time to tell his adventures to Jim while Jim did three-fourths of the work. Tom's younger brother (or rather half-brother) Sid was already through with his part of the work (picking up chips), for he was a quiet boy, and had no adventurous, troublesome ways. While Tom was eating his supper, and stealing sugar as opportunity offered, Aunt Polly asked him questions that were full of guile, and very deep--for she wanted to trap him into damaging revealments. Like many other simple-hearted souls, it was her pet vanity to believe she was endowed with a talent for dark and mysterious diplomacy, and she loved to contemplate her most transparent devices as marvels of low cunning. Said she: "Tom, it was middling warm in school, warn't it?" "Yes'm." "Powerful warm, warn't it?" "Yes'm." "Didn't you want to go in a-swimming, Tom?" A bit of a scare shot through Tom--a touch of uncomfortable suspicion. He searched Aunt Polly's face, but it told him nothing. So he said: "No'm--well, not very much." The old lady reached out her hand and felt Tom's shirt, and said: "But you ain't too warm now, though." And it flattered her to reflect that she had discovered that the shirt was dry without anybody knowing that that was what she had in her mind. But in spite of her, Tom knew where the wind lay, now. So he forestalled what might be the next move: "Some of us pumped on our heads--mine's damp yet. See?" Aunt Polly was vexed to think she had overlooked that bit of circumstantial evidence, and missed a trick. Then she had a new inspiration: "Tom, you didn't have to undo your shirt collar where I sewed it, to pump on your head, did you? Unbutton your jacket!" The trouble vanished out of Tom's face. He opened his jacket. His shirt collar was securely sewed. "Bother! Well, go 'long with you. I'd made sure you'd played hookey and been a-swimming. But I forgive ye, Tom. I reckon you're a kind of a singed cat, as the saying is--better'n you look. THIS time." She was half sorry her sagacity had miscarried, and half glad that Tom had stumbled into obedient conduct for once. But Sidney said: "Well, now, if I didn't think you sewed his collar with white thread, but it's black." "Why, I did sew it with white! Tom!" But Tom did not wait for the rest. As he went out at the door he said: "Siddy, I'll lick you for that." In a safe place Tom examined two large needles which were thrust into the lapels of his jacket, and had thread bound about them--one needle carried white thread and the other black. He said: "She'd never noticed if it hadn't been for Sid. Confound it! sometimes she sews it with white, and sometimes she sews it with black. I wish to geeminy she'd stick to one or t'other--I can't keep the run of 'em. But I bet you I'll lam Sid for that. I'll learn him!" He was not the Model Boy of the village. He knew the model boy very well though--and loathed him. Within two minutes, or even less, he had forgotten all his troubles. Not because his troubles were one whit less heavy and bitter to him than a man's are to a man, but because a new and powerful interest bore them down and drove them out of his mind for the time--just as men's misfortunes are forgotten in the excitement of new enterprises. This new interest was a valued novelty in whistling, which he had just acquired from a negro, and he was suffering to practise it undisturbed. It consisted in a peculiar bird-like turn, a sort of liquid warble, produced by touching the tongue to the roof of the mouth at short intervals in the midst of the music--the reader probably remembers how to do it, if he has ever been a boy. Diligence and attention soon gave him the knack of it, and he strode down the street with his mouth full of harmony and his soul full of gratitude. He felt much as an astronomer feels who has discovered a new planet--no doubt, as far as strong, deep, unalloyed pleasure is concerned, the advantage was with the boy, not the astronomer. The summer evenings were long. It was not dark, yet. Presently Tom checked his whistle. A stranger was before him--a boy a shade larger than himself. A new-comer of any age or either sex was an impressive curiosity in the poor little shabby village of St. Petersburg. This boy was well dressed, too--well dressed on a week-day. This was simply astounding. His cap was a dainty thing, his close-buttoned blue cloth roundabout was new and natty, and so were his pantaloons. He had shoes on--and it was only Friday. He even wore a necktie, a bright bit of ribbon. He had a citified air about him that ate into Tom's vitals. The more Tom stared at the splendid marvel, the higher he turned up his nose at his finery and the shabbier and shabbier his own outfit seemed to him to grow. Neither boy spoke. If one moved, the other moved--but only sidewise, in a circle; they kept face to face and eye to eye all the time. Finally Tom said: "I can lick you!" "I'd like to see you try it." "Well, I can do it." "No you can't, either." "Yes I can." "No you can't." "I can." "You can't." "Can!" "Can't!" An uncomfortable pause. Then Tom said: "What's your name?" "'Tisn't any of your business, maybe." "Well I 'low I'll MAKE it my business." "Well why don't you?" "If you say much, I will." "Much--much--MUCH. There now." "Oh, you think you're mighty smart, DON'T you? I could lick you with one hand tied behind me, if I wanted to." "Well why don't you DO it? You SAY you can do it." "Well I WILL, if you fool with me." "Oh yes--I've seen whole families in the same fix." "Smarty! You think you're SOME, now, DON'T you? Oh, what a hat!" "You can lump that hat if you don't like it. I dare you to knock it off--and anybody that'll take a dare will suck eggs." "You're a liar!" "You're another." "You're a fighting liar and dasn't take it up." "Aw--take a walk!" "Say--if you give me much more of your sass I'll take and bounce a rock off'n your head." "Oh, of COURSE you will." "Well I WILL." "Well why don't you DO it then? What do you keep SAYING you will for? Why don't you DO it? It's because you're afraid." "I AIN'T afraid." "You are." "I ain't." "You are." Another pause, and more eying and sidling around each other. Presently they were shoulder to shoulder. Tom said: "Get away from here!" "Go away yourself!" "I won't." "I won't either." So they stood, each with a foot placed at an angle as a brace, and both shoving with might and main, and glowering at each other with hate. But neither could get an advantage. After struggling till both were hot and flushed, each relaxed his strain with watchful caution, and Tom said: "You're a coward and a pup. I'll tell my big brother on you, and he can thrash you with his little finger, and I'll make him do it, too." "What do I care for your big brother? I've got a brother that's bigger than he is--and what's more, he can throw him over that fence, too." [Both brothers were imaginary.] "That's a lie." "YOUR saying so don't make it so." Tom drew a line in the dust with his big toe, and said: "I dare you to step over that, and I'll lick you till you can't stand up. Anybody that'll take a dare will steal sheep." The new boy stepped over promptly, and said: "Now you said you'd do it, now let's see you do it." "Don't you crowd me now; you better look out." "Well, you SAID you'd do it--why don't you do it?" "By jingo! for two cents I WILL do it." The new boy took two broad coppers out of his pocket and held them out with derision. Tom struck them to the ground. In an instant both boys were rolling and tumbling in the dirt, gripped together like cats; and for the space of a minute they tugged and tore at each other's hair and clothes, punched and scratched each other's nose, and covered themselves with dust and glory. Presently the confusion took form, and through the fog of battle Tom appeared, seated astride the new boy, and pounding him with his fists. "Holler 'nuff!" said he. The boy only struggled to free himself. He was crying--mainly from rage. "Holler 'nuff!"--and the pounding went on. At last the stranger got out a smothered "'Nuff!" and Tom let him up and said: "Now that'll learn you. Better look out who you're fooling with next time." The new boy went off brushing the dust from his clothes, sobbing, snuffling, and occasionally looking back and shaking his head and threatening what he would do to Tom the "next time he caught him out." To which Tom responded with jeers, and started off in high feather, and as soon as his back was turned the new boy snatched up a stone, threw it and hit him between the shoulders and then turned tail and ran like an antelope. Tom chased the traitor home, and thus found out where he lived. He then held a position at the gate for some time, daring the enemy to come outside, but the enemy only made faces at him through the window and declined. At last the enemy's mother appeared, and called Tom a bad, vicious, vulgar child, and ordered him away. So he went away; but he said he "'lowed" to "lay" for that boy. He got home pretty late that night, and when he climbed cautiously in at the window, he uncovered an ambuscade, in the person of his aunt; and when she saw the state his clothes were in her resolution to turn his Saturday holiday into captivity at hard labor became adamantine in its firmness. CHAPTER II SATURDAY morning was come, and all the summer world was bright and fresh, and brimming with life. There was a song in every heart; and if the heart was young the music issued at the lips. There was cheer in every face and a spring in every step. The locust-trees were in bloom and the fragrance of the blossoms filled the air. Cardiff Hill, beyond the village and above it, was green with vegetation and it lay just far enough away to seem a Delectable Land, dreamy, reposeful, and inviting. Tom appeared on the sidewalk with a bucket of whitewash and a long-handled brush. He surveyed the fence, and all gladness left him and a deep melancholy settled down upon his spirit. Thirty yards of board fence nine feet high. Life to him seemed hollow, and existence but a burden. Sighing, he dipped his brush and passed it along the topmost plank; repeated the operation; did it again; compared the insignificant whitewashed streak with the far-reaching continent of unwhitewashed fence, and sat down on a tree-box discouraged. Jim came skipping out at the gate with a tin pail, and singing Buffalo Gals. Bringing water from the town pump had always been hateful work in Tom's eyes, before, but now it did not strike him so. He remembered that there was company at the pump. White, mulatto, and negro boys and girls were always there waiting their turns, resting, trading playthings, quarrelling, fighting, skylarking. And he remembered that although the pump was only a hundred and fifty yards off, Jim never got back with a bucket of water under an hour--and even then somebody generally had to go after him. Tom said: "Say, Jim, I'll fetch the water if you'll whitewash some." Jim shook his head and said: "Can't, Mars Tom. Ole missis, she tole me I got to go an' git dis water an' not stop foolin' roun' wid anybody. She say she spec' Mars Tom gwine to ax me to whitewash, an' so she tole me go 'long an' 'tend to my own business--she 'lowed SHE'D 'tend to de whitewashin'." "Oh, never you mind what she said, Jim. That's the way she always talks. Gimme the bucket--I won't be gone only a a minute. SHE won't ever know." "Oh, I dasn't, Mars Tom. Ole missis she'd take an' tar de head off'n me. 'Deed she would." "SHE! She never licks anybody--whacks 'em over the head with her thimble--and who cares for that, I'd like to know. She talks awful, but talk don't hurt--anyways it don't if she don't cry. Jim, I'll give you a marvel. I'll give you a white alley!" Jim began to waver. "White alley, Jim! And it's a bully taw." "My! Dat's a mighty gay marvel, I tell you! But Mars Tom I's powerful 'fraid ole missis--" "And besides, if you will I'll show you my sore toe." Jim was only human--this attraction was too much for him. He put down his pail, took the white alley, and bent over the toe with absorbing interest while the bandage was being unwound. In another moment he was flying down the street with his pail and a tingling rear, Tom was whitewashing with vigor, and Aunt Polly was retiring from the field with a slipper in her hand and triumph in her eye. But Tom's energy did not last. He began to think of the fun he had planned for this day, and his sorrows multiplied. Soon the free boys would come tripping along on all sorts of delicious expeditions, and they would make a world of fun of him for having to work--the very thought of it burnt him like fire. He got out his worldly wealth and examined it--bits of toys, marbles, and trash; enough to buy an exchange of WORK, maybe, but not half enough to buy so much as half an hour of pure freedom. So he returned his straitened means to his pocket, and gave up the idea of trying to buy the boys. At this dark and hopeless moment an inspiration burst upon him! Nothing less than a great, magnificent inspiration. He took up his brush and went tranquilly to work. Ben Rogers hove in sight presently--the very boy, of all boys, whose ridicule he had been dreading. Ben's gait was the hop-skip-and-jump--proof enough that his heart was light and his anticipations high. He was eating an apple, and giving a long, melodious whoop, at intervals, followed by a deep-toned ding-dong-dong, ding-dong-dong, for he was personating a steamboat. As he drew near, he slackened speed, took the middle of the street, leaned far over to starboard and rounded to ponderously and with laborious pomp and circumstance--for he was personating the Big Missouri, and considered himself to be drawing nine feet of water. He was boat and captain and engine-bells combined, so he had to imagine himself standing on his own hurricane-deck giving the orders and executing them: "Stop her, sir! Ting-a-ling-ling!" The headway ran almost out, and he drew up slowly toward the sidewalk. "Ship up to back! Ting-a-ling-ling!" His arms straightened and stiffened down his sides. "Set her back on the stabboard! Ting-a-ling-ling! Chow! ch-chow-wow! Chow!" His right hand, meantime, describing stately circles--for it was representing a forty-foot wheel. "Let her go back on the labboard! Ting-a-lingling! Chow-ch-chow-chow!" The left hand began to describe circles. "Stop the stabboard! Ting-a-ling-ling! Stop the labboard! Come ahead on the stabboard! Stop her! Let your outside turn over slow! Ting-a-ling-ling! Chow-ow-ow! Get out that head-line! LIVELY now! Come--out with your spring-line--what're you about there! Take a turn round that stump with the bight of it! Stand by that stage, now--let her go! Done with the engines, sir! Ting-a-ling-ling! SH'T! S'H'T! SH'T!" (trying the gauge-cocks). Tom went on whitewashing--paid no attention to the steamboat. Ben stared a moment and then said: "Hi-YI! YOU'RE up a stump, ain't you!" No answer. Tom surveyed his last touch with the eye of an artist, then he gave his brush another gentle sweep and surveyed the result, as before. Ben ranged up alongside of him. Tom's mouth watered for the apple, but he stuck to his work. Ben said: "Hello, old chap, you got to work, hey?" Tom wheeled suddenly and said: "Why, it's you, Ben! I warn't noticing." "Say--I'm going in a-swimming, I am. Don't you wish you could? But of course you'd druther WORK--wouldn't you? Course you would!" Tom contemplated the boy a bit, and said: "What do you call work?" "Why, ain't THAT work?" Tom resumed his whitewashing, and answered carelessly: "Well, maybe it is, and maybe it ain't. All I know, is, it suits Tom Sawyer." "Oh come, now, you don't mean to let on that you LIKE it?" The brush continued to move. "Like it? Well, I don't see why I oughtn't to like it. Does a boy get a chance to whitewash a fence every day?" That put the thing in a new light. Ben stopped nibbling his apple. Tom swept his brush daintily back and forth--stepped back to note the effect--added a touch here and there--criticised the effect again--Ben watching every move and getting more and more interested, more and more absorbed. Presently he said: "Say, Tom, let ME whitewash a little." Tom considered, was about to consent; but he altered his mind: "No--no--I reckon it wouldn't hardly do, Ben. You see, Aunt Polly's awful particular about this fence--right here on the street, you know --but if it was the back fence I wouldn't mind and SHE wouldn't. Yes, she's awful particular about this fence; it's got to be done very careful; I reckon there ain't one boy in a thousand, maybe two thousand, that can do it the way it's got to be done." "No--is that so? Oh come, now--lemme just try. Only just a little--I'd let YOU, if you was me, Tom." "Ben, I'd like to, honest injun; but Aunt Polly--well, Jim wanted to do it, but she wouldn't let him; Sid wanted to do it, and she wouldn't let Sid. Now don't you see how I'm fixed? If you was to tackle this fence and anything was to happen to it--" "Oh, shucks, I'll be just as careful. Now lemme try. Say--I'll give you the core of my apple." "Well, here--No, Ben, now don't. I'm afeard--" "I'll give you ALL of it!" Tom gave up the brush with reluctance in his face, but alacrity in his heart. And while the late steamer Big Missouri worked and sweated in the sun, the retired artist sat on a barrel in the shade close by, dangled his legs, munched his apple, and planned the slaughter of more innocents. There was no lack of material; boys happened along every little while; they came to jeer, but remained to whitewash. By the time Ben was fagged out, Tom had traded the next chance to Billy Fisher for a kite, in good repair; and when he played out, Johnny Miller bought in for a dead rat and a string to swing it with--and so on, and so on, hour after hour. And when the middle of the afternoon came, from being a poor poverty-stricken boy in the morning, Tom was literally rolling in wealth. He had besides the things before mentioned, twelve marbles, part of a jews-harp, a piece of blue bottle-glass to look through, a spool cannon, a key that wouldn't unlock anything, a fragment of chalk, a glass stopper of a decanter, a tin soldier, a couple of tadpoles, six fire-crackers, a kitten with only one eye, a brass doorknob, a dog-collar--but no dog--the handle of a knife, four pieces of orange-peel, and a dilapidated old window sash. He had had a nice, good, idle time all the while--plenty of company --and the fence had three coats of whitewash on it! If he hadn't run out of whitewash he would have bankrupted every boy in the village. Tom said to himself that it was not such a hollow world, after all. He had discovered a great law of human action, without knowing it--namely, that in order to make a man or a boy covet a thing, it is only necessary to make the thing difficult to attain. If he had been a great and wise philosopher, like the writer of this book, he would now have comprehended that Work consists of whatever a body is OBLIGED to do, and that Play consists of whatever a body is not obliged to do. And this would help him to understand why constructing artificial flowers or performing on a tread-mill is work, while rolling ten-pins or climbing Mont Blanc is only amusement. There are wealthy gentlemen in England who drive four-horse passenger-coaches twenty or thirty miles on a daily line, in the summer, because the privilege costs them considerable money; but if they were offered wages for the service, that would turn it into work and then they would resign. The boy mused awhile over the substantial change which had taken place in his worldly circumstances, and then wended toward headquarters to report. CHAPTER III TOM presented himself before Aunt Polly, who was sitting by an open window in a pleasant rearward apartment, which was bedroom, breakfast-room, dining-room, and library, combined. The balmy summer air, the restful quiet, the odor of the flowers, and the drowsing murmur of the bees had had their effect, and she was nodding over her knitting --for she had no company but the cat, and it was asleep in her lap. Her spectacles were propped up on her gray head for safety. She had thought that of course Tom had deserted long ago, and she wondered at seeing him place himself in her power again in this intrepid way. He said: "Mayn't I go and play now, aunt?" "What, a'ready? How much have you done?" "It's all done, aunt." "Tom, don't lie to me--I can't bear it." "I ain't, aunt; it IS all done." Aunt Polly placed small trust in such evidence. She went out to see for herself; and she would have been content to find twenty per cent. of Tom's statement true. When she found the entire fence whitewashed, and not only whitewashed but elaborately coated and recoated, and even a streak added to the ground, her astonishment was almost unspeakable. She said: "Well, I never! There's no getting round it, you can work when you're a mind to, Tom." And then she diluted the compliment by adding, "But it's powerful seldom you're a mind to, I'm bound to say. Well, go 'long and play; but mind you get back some time in a week, or I'll tan you." She was so overcome by the splendor of his achievement that she took him into the closet and selected a choice apple and delivered it to him, along with an improving lecture upon the added value and flavor a treat took to itself when it came without sin through virtuous effort. And while she closed with a happy Scriptural flourish, he "hooked" a doughnut. Then he skipped out, and saw Sid just starting up the outside stairway that led to the back rooms on the second floor. Clods were handy and the air was full of them in a twinkling. They raged around Sid like a hail-storm; and before Aunt Polly could collect her surprised faculties and sally to the rescue, six or seven clods had taken personal effect, and Tom was over the fence and gone. There was a gate, but as a general thing he was too crowded for time to make use of it. His soul was at peace, now that he had settled with Sid for calling attention to his black thread and getting him into trouble. Tom skirted the block, and came round into a muddy alley that led by the back of his aunt's cow-stable. He presently got safely beyond the reach of capture and punishment, and hastened toward the public square of the village, where two "military" companies of boys had met for conflict, according to previous appointment. Tom was General of one of these armies, Joe Harper (a bosom friend) General of the other. These two great commanders did not condescend to fight in person--that being better suited to the still smaller fry--but sat together on an eminence and conducted the field operations by orders delivered through aides-de-camp. Tom's army won a great victory, after a long and hard-fought battle. Then the dead were counted, prisoners exchanged, the terms of the next disagreement agreed upon, and the day for the necessary battle appointed; after which the armies fell into line and marched away, and Tom turned homeward alone. As he was passing by the house where Jeff Thatcher lived, he saw a new girl in the garden--a lovely little blue-eyed creature with yellow hair plaited into two long-tails, white summer frock and embroidered pantalettes. The fresh-crowned hero fell without firing a shot. A certain Amy Lawrence vanished out of his heart and left not even a memory of herself behind. He had thought he loved her to distraction; he had regarded his passion as adoration; and behold it was only a poor little evanescent partiality. He had been months winning her; she had confessed hardly a week ago; he had been the happiest and the proudest boy in the world only seven short days, and here in one instant of time she had gone out of his heart like a casual stranger whose visit is done. He worshipped this new angel with furtive eye, till he saw that she had discovered him; then he pretended he did not know she was present, and began to "show off" in all sorts of absurd boyish ways, in order to win her admiration. He kept up this grotesque foolishness for some time; but by-and-by, while he was in the midst of some dangerous gymnastic performances, he glanced aside and saw that the little girl was wending her way toward the house. Tom came up to the fence and leaned on it, grieving, and hoping she would tarry yet awhile longer. She halted a moment on the steps and then moved toward the door. Tom heaved a great sigh as she put her foot on the threshold. But his face lit up, right away, for she tossed a pansy over the fence a moment before she disappeared. The boy ran around and stopped within a foot or two of the flower, and then shaded his eyes with his hand and began to look down street as if he had discovered something of interest going on in that direction. Presently he picked up a straw and began trying to balance it on his nose, with his head tilted far back; and as he moved from side to side, in his efforts, he edged nearer and nearer toward the pansy; finally his bare foot rested upon it, his pliant toes closed upon it, and he hopped away with the treasure and disappeared round the corner. But only for a minute--only while he could button the flower inside his jacket, next his heart--or next his stomach, possibly, for he was not much posted in anatomy, and not hypercritical, anyway. He returned, now, and hung about the fence till nightfall, "showing off," as before; but the girl never exhibited herself again, though Tom comforted himself a little with the hope that she had been near some window, meantime, and been aware of his attentions. Finally he strode home reluctantly, with his poor head full of visions. All through supper his spirits were so high that his aunt wondered "what had got into the child." He took a good scolding about clodding Sid, and did not seem to mind it in the least. He tried to steal sugar under his aunt's very nose, and got his knuckles rapped for it. He said: "Aunt, you don't whack Sid when he takes it." "Well, Sid don't torment a body the way you do. You'd be always into that sugar if I warn't watching you." Presently she stepped into the kitchen, and Sid, happy in his immunity, reached for the sugar-bowl--a sort of glorying over Tom which was wellnigh unbearable. But Sid's fingers slipped and the bowl dropped and broke. Tom was in ecstasies. In such ecstasies that he even controlled his tongue and was silent. He said to himself that he would not speak a word, even when his aunt came in, but would sit perfectly still till she asked who did the mischief; and then he would tell, and there would be nothing so good in the world as to see that pet model "catch it." He was so brimful of exultation that he could hardly hold himself when the old lady came back and stood above the wreck discharging lightnings of wrath from over her spectacles. He said to himself, "Now it's coming!" And the next instant he was sprawling on the floor! The potent palm was uplifted to strike again when Tom cried out: "Hold on, now, what 'er you belting ME for?--Sid broke it!" Aunt Polly paused, perplexed, and Tom looked for healing pity. But when she got her tongue again, she only said: "Umf! Well, you didn't get a lick amiss, I reckon. You been into some other audacious mischief when I wasn't around, like enough." Then her conscience reproached her, and she yearned to say something kind and loving; but she judged that this would be construed into a confession that she had been in the wrong, and discipline forbade that. So she kept silence, and went about her affairs with a troubled heart. Tom sulked in a corner and exalted his woes. He knew that in her heart his aunt was on her knees to him, and he was morosely gratified by the consciousness of it. He would hang out no signals, he would take notice of none. He knew that a yearning glance fell upon him, now and then, through a film of tears, but he refused recognition of it. He pictured himself lying sick unto death and his aunt bending over him beseeching one little forgiving word, but he would turn his face to the wall, and die with that word unsaid. Ah, how would she feel then? And he pictured himself brought home from the river, dead, with his curls all wet, and his sore heart at rest. How she would throw herself upon him, and how her tears would fall like rain, and her lips pray God to give her back her boy and she would never, never abuse him any more! But he would lie there cold and white and make no sign--a poor little sufferer, whose griefs were at an end. He so worked upon his feelings with the pathos of these dreams, that he had to keep swallowing, he was so like to choke; and his eyes swam in a blur of water, which overflowed when he winked, and ran down and trickled from the end of his nose. And such a luxury to him was this petting of his sorrows, that he could not bear to have any worldly cheeriness or any grating delight intrude upon it; it was too sacred for such contact; and so, presently, when his cousin Mary danced in, all alive with the joy of seeing home again after an age-long visit of one week to the country, he got up and moved in clouds and darkness out at one door as she brought song and sunshine in at the other. He wandered far from the accustomed haunts of boys, and sought desolate places that were in harmony with his spirit. A log raft in the river invited him, and he seated himself on its outer edge and contemplated the dreary vastness of the stream, wishing, the while, that he could only be drowned, all at once and unconsciously, without undergoing the uncomfortable routine devised by nature. Then he thought of his flower. He got it out, rumpled and wilted, and it mightily increased his dismal felicity. He wondered if she would pity him if she knew? Would she cry, and wish that she had a right to put her arms around his neck and comfort him? Or would she turn coldly away like all the hollow world? This picture brought such an agony of pleasurable suffering that he worked it over and over again in his mind and set it up in new and varied lights, till he wore it threadbare. At last he rose up sighing and departed in the darkness. About half-past nine or ten o'clock he came along the deserted street to where the Adored Unknown lived; he paused a moment; no sound fell upon his listening ear; a candle was casting a dull glow upon the curtain of a second-story window. Was the sacred presence there? He climbed the fence, threaded his stealthy way through the plants, till he stood under that window; he looked up at it long, and with emotion; then he laid him down on the ground under it, disposing himself upon his back, with his hands clasped upon his breast and holding his poor wilted flower. And thus he would die--out in the cold world, with no shelter over his homeless head, no friendly hand to wipe the death-damps from his brow, no loving face to bend pityingly over him when the great agony came. And thus SHE would see him when she looked out upon the glad morning, and oh! would she drop one little tear upon his poor, lifeless form, would she heave one little sigh to see a bright young life so rudely blighted, so untimely cut down? The window went up, a maid-servant's discordant voice profaned the holy calm, and a deluge of water drenched the prone martyr's remains! The strangling hero sprang up with a relieving snort. There was a whiz as of a missile in the air, mingled with the murmur of a curse, a sound as of shivering glass followed, and a small, vague form went over the fence and shot away in the gloom. Not long after, as Tom, all undressed for bed, was surveying his drenched garments by the light of a tallow dip, Sid woke up; but if he had any dim idea of making any "references to allusions," he thought better of it and held his peace, for there was danger in Tom's eye. Tom turned in without the added vexation of prayers, and Sid made mental note of the omission. CHAPTER IV THE sun rose upon a tranquil world, and beamed down upon the peaceful village like a benediction. Breakfast over, Aunt Polly had family worship: it began with a prayer built from the ground up of solid courses of Scriptural quotations, welded together with a thin mortar of originality; and from the summit of this she delivered a grim chapter of the Mosaic Law, as from Sinai. Then Tom girded up his loins, so to speak, and went to work to "get his verses." Sid had learned his lesson days before. Tom bent all his energies to the memorizing of five verses, and he chose part of the Sermon on the Mount, because he could find no verses that were shorter. At the end of half an hour Tom had a vague general idea of his lesson, but no more, for his mind was traversing the whole field of human thought, and his hands were busy with distracting recreations. Mary took his book to hear him recite, and he tried to find his way through the fog: "Blessed are the--a--a--" "Poor"-- "Yes--poor; blessed are the poor--a--a--" "In spirit--" "In spirit; blessed are the poor in spirit, for they--they--" "THEIRS--" "For THEIRS. Blessed are the poor in spirit, for theirs is the kingdom of heaven. Blessed are they that mourn, for they--they--" "Sh--" "For they--a--" "S, H, A--" "For they S, H--Oh, I don't know what it is!" "SHALL!" "Oh, SHALL! for they shall--for they shall--a--a--shall mourn--a--a-- blessed are they that shall--they that--a--they that shall mourn, for they shall--a--shall WHAT? Why don't you tell me, Mary?--what do you want to be so mean for?" "Oh, Tom, you poor thick-headed thing, I'm not teasing you. I wouldn't do that. You must go and learn it again. Don't you be discouraged, Tom, you'll manage it--and if you do, I'll give you something ever so nice. There, now, that's a good boy." "All right! What is it, Mary, tell me what it is." "Never you mind, Tom. You know if I say it's nice, it is nice." "You bet you that's so, Mary. All right, I'll tackle it again." And he did "tackle it again"--and under the double pressure of curiosity and prospective gain he did it with such spirit that he accomplished a shining success. Mary gave him a brand-new "Barlow" knife worth twelve and a half cents; and the convulsion of delight that swept his system shook him to his foundations. True, the knife would not cut anything, but it was a "sure-enough" Barlow, and there was inconceivable grandeur in that--though where the Western boys ever got the idea that such a weapon could possibly be counterfeited to its injury is an imposing mystery and will always remain so, perhaps. Tom contrived to scarify the cupboard with it, and was arranging to begin on the bureau, when he was called off to dress for Sunday-school. Mary gave him a tin basin of water and a piece of soap, and he went outside the door and set the basin on a little bench there; then he dipped the soap in the water and laid it down; turned up his sleeves; poured out the water on the ground, gently, and then entered the kitchen and began to wipe his face diligently on the towel behind the door. But Mary removed the towel and said: "Now ain't you ashamed, Tom. You mustn't be so bad. Water won't hurt you." Tom was a trifle disconcerted. The basin was refilled, and this time he stood over it a little while, gathering resolution; took in a big breath and began. When he entered the kitchen presently, with both eyes shut and groping for the towel with his hands, an honorable testimony of suds and water was dripping from his face. But when he emerged from the towel, he was not yet satisfactory, for the clean territory stopped short at his chin and his jaws, like a mask; below and beyond this line there was a dark expanse of unirrigated soil that spread downward in front and backward around his neck. Mary took him in hand, and when she was done with him he was a man and a brother, without distinction of color, and his saturated hair was neatly brushed, and its short curls wrought into a dainty and symmetrical general effect. [He privately smoothed out the curls, with labor and difficulty, and plastered his hair close down to his head; for he held curls to be effeminate, and his own filled his life with bitterness.] Then Mary got out a suit of his clothing that had been used only on Sundays during two years--they were simply called his "other clothes"--and so by that we know the size of his wardrobe. The girl "put him to rights" after he had dressed himself; she buttoned his neat roundabout up to his chin, turned his vast shirt collar down over his shoulders, brushed him off and crowned him with his speckled straw hat. He now looked exceedingly improved and uncomfortable. He was fully as uncomfortable as he looked; for there was a restraint about whole clothes and cleanliness that galled him. He hoped that Mary would forget his shoes, but the hope was blighted; she coated them thoroughly with tallow, as was the custom, and brought them out. He lost his temper and said he was always being made to do everything he didn't want to do. But Mary said, persuasively: "Please, Tom--that's a good boy." So he got into the shoes snarling. Mary was soon ready, and the three children set out for Sunday-school--a place that Tom hated with his whole heart; but Sid and Mary were fond of it. Sabbath-school hours were from nine to half-past ten; and then church service. Two of the children always remained for the sermon voluntarily, and the other always remained too--for stronger reasons. The church's high-backed, uncushioned pews would seat about three hundred persons; the edifice was but a small, plain affair, with a sort of pine board tree-box on top of it for a steeple. At the door Tom dropped back a step and accosted a Sunday-dressed comrade: "Say, Billy, got a yaller ticket?" "Yes." "What'll you take for her?" "What'll you give?" "Piece of lickrish and a fish-hook." "Less see 'em." Tom exhibited. They were satisfactory, and the property changed hands. Then Tom traded a couple of white alleys for three red tickets, and some small trifle or other for a couple of blue ones. He waylaid other boys as they came, and went on buying tickets of various colors ten or fifteen minutes longer. He entered the church, now, with a swarm of clean and noisy boys and girls, proceeded to his seat and started a quarrel with the first boy that came handy. The teacher, a grave, elderly man, interfered; then turned his back a moment and Tom pulled a boy's hair in the next bench, and was absorbed in his book when the boy turned around; stuck a pin in another boy, presently, in order to hear him say "Ouch!" and got a new reprimand from his teacher. Tom's whole class were of a pattern--restless, noisy, and troublesome. When they came to recite their lessons, not one of them knew his verses perfectly, but had to be prompted all along. However, they worried through, and each got his reward--in small blue tickets, each with a passage of Scripture on it; each blue ticket was pay for two verses of the recitation. Ten blue tickets equalled a red one, and could be exchanged for it; ten red tickets equalled a yellow one; for ten yellow tickets the superintendent gave a very plainly bound Bible (worth forty cents in those easy times) to the pupil. How many of my readers would have the industry and application to memorize two thousand verses, even for a Dore Bible? And yet Mary had acquired two Bibles in this way--it was the patient work of two years--and a boy of German parentage had won four or five. He once recited three thousand verses without stopping; but the strain upon his mental faculties was too great, and he was little better than an idiot from that day forth--a grievous misfortune for the school, for on great occasions, before company, the superintendent (as Tom expressed it) had always made this boy come out and "spread himself." Only the older pupils managed to keep their tickets and stick to their tedious work long enough to get a Bible, and so the delivery of one of these prizes was a rare and noteworthy circumstance; the successful pupil was so great and conspicuous for that day that on the spot every scholar's heart was fired with a fresh ambition that often lasted a couple of weeks. It is possible that Tom's mental stomach had never really hungered for one of those prizes, but unquestionably his entire being had for many a day longed for the glory and the eclat that came with it. In due course the superintendent stood up in front of the pulpit, with a closed hymn-book in his hand and his forefinger inserted between its leaves, and commanded attention. When a Sunday-school superintendent makes his customary little speech, a hymn-book in the hand is as necessary as is the inevitable sheet of music in the hand of a singer who stands forward on the platform and sings a solo at a concert --though why, is a mystery: for neither the hymn-book nor the sheet of music is ever referred to by the sufferer. This superintendent was a slim creature of thirty-five, with a sandy goatee and short sandy hair; he wore a stiff standing-collar whose upper edge almost reached his ears and whose sharp points curved forward abreast the corners of his mouth--a fence that compelled a straight lookout ahead, and a turning of the whole body when a side view was required; his chin was propped on a spreading cravat which was as broad and as long as a bank-note, and had fringed ends; his boot toes were turned sharply up, in the fashion of the day, like sleigh-runners--an effect patiently and laboriously produced by the young men by sitting with their toes pressed against a wall for hours together. Mr. Walters was very earnest of mien, and very sincere and honest at heart; and he held sacred things and places in such reverence, and so separated them from worldly matters, that unconsciously to himself his Sunday-school voice had acquired a peculiar intonation which was wholly absent on week-days. He began after this fashion: "Now, children, I want you all to sit up just as straight and pretty as you can and give me all your attention for a minute or two. There --that is it. That is the way good little boys and girls should do. I see one little girl who is looking out of the window--I am afraid she thinks I am out there somewhere--perhaps up in one of the trees making a speech to the little birds. [Applausive titter.] I want to tell you how good it makes me feel to see so many bright, clean little faces assembled in a place like this, learning to do right and be good." And so forth and so on. It is not necessary to set down the rest of the oration. It was of a pattern which does not vary, and so it is familiar to us all. The latter third of the speech was marred by the resumption of fights and other recreations among certain of the bad boys, and by fidgetings and whisperings that extended far and wide, washing even to the bases of isolated and incorruptible rocks like Sid and Mary. But now every sound ceased suddenly, with the subsidence of Mr. Walters' voice, and the conclusion of the speech was received with a burst of silent gratitude. A good part of the whispering had been occasioned by an event which was more or less rare--the entrance of visitors: lawyer Thatcher, accompanied by a very feeble and aged man; a fine, portly, middle-aged gentleman with iron-gray hair; and a dignified lady who was doubtless the latter's wife. The lady was leading a child. Tom had been restless and full of chafings and repinings; conscience-smitten, too--he could not meet Amy Lawrence's eye, he could not brook her loving gaze. But when he saw this small new-comer his soul was all ablaze with bliss in a moment. The next moment he was "showing off" with all his might --cuffing boys, pulling hair, making faces--in a word, using every art that seemed likely to fascinate a girl and win her applause. His exaltation had but one alloy--the memory of his humiliation in this angel's garden--and that record in sand was fast washing out, under the waves of happiness that were sweeping over it now. The visitors were given the highest seat of honor, and as soon as Mr. Walters' speech was finished, he introduced them to the school. The middle-aged man turned out to be a prodigious personage--no less a one than the county judge--altogether the most august creation these children had ever looked upon--and they wondered what kind of material he was made of--and they half wanted to hear him roar, and were half afraid he might, too. He was from Constantinople, twelve miles away--so he had travelled, and seen the world--these very eyes had looked upon the county court-house--which was said to have a tin roof. The awe which these reflections inspired was attested by the impressive silence and the ranks of staring eyes. This was the great Judge Thatcher, brother of their own lawyer. Jeff Thatcher immediately went forward, to be familiar with the great man and be envied by the school. It would have been music to his soul to hear the whisperings: "Look at him, Jim! He's a going up there. Say--look! he's a going to shake hands with him--he IS shaking hands with him! By jings, don't you wish you was Jeff?" Mr. Walters fell to "showing off," with all sorts of official bustlings and activities, giving orders, delivering judgments, discharging directions here, there, everywhere that he could find a target. The librarian "showed off"--running hither and thither with his arms full of books and making a deal of the splutter and fuss that insect authority delights in. The young lady teachers "showed off" --bending sweetly over pupils that were lately being boxed, lifting pretty warning fingers at bad little boys and patting good ones lovingly. The young gentlemen teachers "showed off" with small scoldings and other little displays of authority and fine attention to discipline--and most of the teachers, of both sexes, found business up at the library, by the pulpit; and it was business that frequently had to be done over again two or three times (with much seeming vexation). The little girls "showed off" in various ways, and the little boys "showed off" with such diligence that the air was thick with paper wads and the murmur of scufflings. And above it all the great man sat and beamed a majestic judicial smile upon all the house, and warmed himself in the sun of his own grandeur--for he was "showing off," too. There was only one thing wanting to make Mr. Walters' ecstasy complete, and that was a chance to deliver a Bible-prize and exhibit a prodigy. Several pupils had a few yellow tickets, but none had enough --he had been around among the star pupils inquiring. He would have given worlds, now, to have that German lad back again with a sound mind. And now at this moment, when hope was dead, Tom Sawyer came forward with nine yellow tickets, nine red tickets, and ten blue ones, and demanded a Bible. This was a thunderbolt out of a clear sky. Walters was not expecting an application from this source for the next ten years. But there was no getting around it--here were the certified checks, and they were good for their face. Tom was therefore elevated to a place with the Judge and the other elect, and the great news was announced from headquarters. It was the most stunning surprise of the decade, and so profound was the sensation that it lifted the new hero up to the judicial one's altitude, and the school had two marvels to gaze upon in place of one. The boys were all eaten up with envy--but those that suffered the bitterest pangs were those who perceived too late that they themselves had contributed to this hated splendor by trading tickets to Tom for the wealth he had amassed in selling whitewashing privileges. These despised themselves, as being the dupes of a wily fraud, a guileful snake in the grass. The prize was delivered to Tom with as much effusion as the superintendent could pump up under the circumstances; but it lacked somewhat of the true gush, for the poor fellow's instinct taught him that there was a mystery here that could not well bear the light, perhaps; it was simply preposterous that this boy had warehoused two thousand sheaves of Scriptural wisdom on his premises--a dozen would strain his capacity, without a doubt. Amy Lawrence was proud and glad, and she tried to make Tom see it in her face--but he wouldn't look. She wondered; then she was just a grain troubled; next a dim suspicion came and went--came again; she watched; a furtive glance told her worlds--and then her heart broke, and she was jealous, and angry, and the tears came and she hated everybody. Tom most of all (she thought). Tom was introduced to the Judge; but his tongue was tied, his breath would hardly come, his heart quaked--partly because of the awful greatness of the man, but mainly because he was her parent. He would have liked to fall down and worship him, if it were in the dark. The Judge put his hand on Tom's head and called him a fine little man, and asked him what his name was. The boy stammered, gasped, and got it out: "Tom." "Oh, no, not Tom--it is--" "Thomas." "Ah, that's it. I thought there was more to it, maybe. That's very well. But you've another one I daresay, and you'll tell it to me, won't you?" "Tell the gentleman your other name, Thomas," said Walters, "and say sir. You mustn't forget your manners." "Thomas Sawyer--sir." "That's it! That's a good boy. Fine boy. Fine, manly little fellow. Two thousand verses is a great many--very, very great many. And you never can be sorry for the trouble you took to learn them; for knowledge is worth more than anything there is in the world; it's what makes great men and good men; you'll be a great man and a good man yourself, some day, Thomas, and then you'll look back and say, It's all owing to the precious Sunday-school privileges of my boyhood--it's all owing to my dear teachers that taught me to learn--it's all owing to the good superintendent, who encouraged me, and watched over me, and gave me a beautiful Bible--a splendid elegant Bible--to keep and have it all for my own, always--it's all owing to right bringing up! That is what you will say, Thomas--and you wouldn't take any money for those two thousand verses--no indeed you wouldn't. And now you wouldn't mind telling me and this lady some of the things you've learned--no, I know you wouldn't--for we are proud of little boys that learn. Now, no doubt you know the names of all the twelve disciples. Won't you tell us the names of the first two that were appointed?" Tom was tugging at a button-hole and looking sheepish. He blushed, now, and his eyes fell. Mr. Walters' heart sank within him. He said to himself, it is not possible that the boy can answer the simplest question--why DID the Judge ask him? Yet he felt obliged to speak up and say: "Answer the gentleman, Thomas--don't be afraid." Tom still hung fire. "Now I know you'll tell me," said the lady. "The names of the first two disciples were--" "DAVID AND GOLIAH!" Let us draw the curtain of charity over the rest of the scene. CHAPTER V ABOUT half-past ten the cracked bell of the small church began to ring, and presently the people began to gather for the morning sermon. The Sunday-school children distributed themselves about the house and occupied pews with their parents, so as to be under supervision. Aunt Polly came, and Tom and Sid and Mary sat with her--Tom being placed next the aisle, in order that he might be as far away from the open window and the seductive outside summer scenes as possible. The crowd filed up the aisles: the aged and needy postmaster, who had seen better days; the mayor and his wife--for they had a mayor there, among other unnecessaries; the justice of the peace; the widow Douglass, fair, smart, and forty, a generous, good-hearted soul and well-to-do, her hill mansion the only palace in the town, and the most hospitable and much the most lavish in the matter of festivities that St. Petersburg could boast; the bent and venerable Major and Mrs. Ward; lawyer Riverson, the new notable from a distance; next the belle of the village, followed by a troop of lawn-clad and ribbon-decked young heart-breakers; then all the young clerks in town in a body--for they had stood in the vestibule sucking their cane-heads, a circling wall of oiled and simpering admirers, till the last girl had run their gantlet; and last of all came the Model Boy, Willie Mufferson, taking as heedful care of his mother as if she were cut glass. He always brought his mother to church, and was the pride of all the matrons. The boys all hated him, he was so good. And besides, he had been "thrown up to them" so much. His white handkerchief was hanging out of his pocket behind, as usual on Sundays--accidentally. Tom had no handkerchief, and he looked upon boys who had as snobs. The congregation being fully assembled, now, the bell rang once more, to warn laggards and stragglers, and then a solemn hush fell upon the church which was only broken by the tittering and whispering of the choir in the gallery. The choir always tittered and whispered all through service. There was once a church choir that was not ill-bred, but I have forgotten where it was, now. It was a great many years ago, and I can scarcely remember anything about it, but I think it was in some foreign country. The minister gave out the hymn, and read it through with a relish, in a peculiar style which was much admired in that part of the country. His voice began on a medium key and climbed steadily up till it reached a certain point, where it bore with strong emphasis upon the topmost word and then plunged down as if from a spring-board: Shall I be car-ri-ed toe the skies, on flow'ry BEDS of ease, Whilst others fight to win the prize, and sail thro' BLOODY seas? He was regarded as a wonderful reader. At church "sociables" he was always called upon to read poetry; and when he was through, the ladies would lift up their hands and let them fall helplessly in their laps, and "wall" their eyes, and shake their heads, as much as to say, "Words cannot express it; it is too beautiful, TOO beautiful for this mortal earth." After the hymn had been sung, the Rev. Mr. Sprague turned himself into a bulletin-board, and read off "notices" of meetings and societies and things till it seemed that the list would stretch out to the crack of doom--a queer custom which is still kept up in America, even in cities, away here in this age of abundant newspapers. Often, the less there is to justify a traditional custom, the harder it is to get rid of it. And now the minister prayed. A good, generous prayer it was, and went into details: it pleaded for the church, and the little children of the church; for the other churches of the village; for the village itself; for the county; for the State; for the State officers; for the United States; for the churches of the United States; for Congress; for the President; for the officers of the Government; for poor sailors, tossed by stormy seas; for the oppressed millions groaning under the heel of European monarchies and Oriental despotisms; for such as have the light and the good tidings, and yet have not eyes to see nor ears to hear withal; for the heathen in the far islands of the sea; and closed with a supplication that the words he was about to speak might find grace and favor, and be as seed sown in fertile ground, yielding in time a grateful harvest of good. Amen. There was a rustling of dresses, and the standing congregation sat down. The boy whose history this book relates did not enjoy the prayer, he only endured it--if he even did that much. He was restive all through it; he kept tally of the details of the prayer, unconsciously --for he was not listening, but he knew the ground of old, and the clergyman's regular route over it--and when a little trifle of new matter was interlarded, his ear detected it and his whole nature resented it; he considered additions unfair, and scoundrelly. In the midst of the prayer a fly had lit on the back of the pew in front of him and tortured his spirit by calmly rubbing its hands together, embracing its head with its arms, and polishing it so vigorously that it seemed to almost part company with the body, and the slender thread of a neck was exposed to view; scraping its wings with its hind legs and smoothing them to its body as if they had been coat-tails; going through its whole toilet as tranquilly as if it knew it was perfectly safe. As indeed it was; for as sorely as Tom's hands itched to grab for it they did not dare--he believed his soul would be instantly destroyed if he did such a thing while the prayer was going on. But with the closing sentence his hand began to curve and steal forward; and the instant the "Amen" was out the fly was a prisoner of war. His aunt detected the act and made him let it go. The minister gave out his text and droned along monotonously through an argument that was so prosy that many a head by and by began to nod --and yet it was an argument that dealt in limitless fire and brimstone and thinned the predestined elect down to a company so small as to be hardly worth the saving. Tom counted the pages of the sermon; after church he always knew how many pages there had been, but he seldom knew anything else about the discourse. However, this time he was really interested for a little while. The minister made a grand and moving picture of the assembling together of the world's hosts at the millennium when the lion and the lamb should lie down together and a little child should lead them. But the pathos, the lesson, the moral of the great spectacle were lost upon the boy; he only thought of the conspicuousness of the principal character before the on-looking nations; his face lit with the thought, and he said to himself that he wished he could be that child, if it was a tame lion. Now he lapsed into suffering again, as the dry argument was resumed. Presently he bethought him of a treasure he had and got it out. It was a large black beetle with formidable jaws--a "pinchbug," he called it. It was in a percussion-cap box. The first thing the beetle did was to take him by the finger. A natural fillip followed, the beetle went floundering into the aisle and lit on its back, and the hurt finger went into the boy's mouth. The beetle lay there working its helpless legs, unable to turn over. Tom eyed it, and longed for it; but it was safe out of his reach. Other people uninterested in the sermon found relief in the beetle, and they eyed it too. Presently a vagrant poodle dog came idling along, sad at heart, lazy with the summer softness and the quiet, weary of captivity, sighing for change. He spied the beetle; the drooping tail lifted and wagged. He surveyed the prize; walked around it; smelt at it from a safe distance; walked around it again; grew bolder, and took a closer smell; then lifted his lip and made a gingerly snatch at it, just missing it; made another, and another; began to enjoy the diversion; subsided to his stomach with the beetle between his paws, and continued his experiments; grew weary at last, and then indifferent and absent-minded. His head nodded, and little by little his chin descended and touched the enemy, who seized it. There was a sharp yelp, a flirt of the poodle's head, and the beetle fell a couple of yards away, and lit on its back once more. The neighboring spectators shook with a gentle inward joy, several faces went behind fans and handkerchiefs, and Tom was entirely happy. The dog looked foolish, and probably felt so; but there was resentment in his heart, too, and a craving for revenge. So he went to the beetle and began a wary attack on it again; jumping at it from every point of a circle, lighting with his fore-paws within an inch of the creature, making even closer snatches at it with his teeth, and jerking his head till his ears flapped again. But he grew tired once more, after a while; tried to amuse himself with a fly but found no relief; followed an ant around, with his nose close to the floor, and quickly wearied of that; yawned, sighed, forgot the beetle entirely, and sat down on it. Then there was a wild yelp of agony and the poodle went sailing up the aisle; the yelps continued, and so did the dog; he crossed the house in front of the altar; he flew down the other aisle; he crossed before the doors; he clamored up the home-stretch; his anguish grew with his progress, till presently he was but a woolly comet moving in its orbit with the gleam and the speed of light. At last the frantic sufferer sheered from its course, and sprang into its master's lap; he flung it out of the window, and the voice of distress quickly thinned away and died in the distance. By this time the whole church was red-faced and suffocating with suppressed laughter, and the sermon had come to a dead standstill. The discourse was resumed presently, but it went lame and halting, all possibility of impressiveness being at an end; for even the gravest sentiments were constantly being received with a smothered burst of unholy mirth, under cover of some remote pew-back, as if the poor parson had said a rarely facetious thing. It was a genuine relief to the whole congregation when the ordeal was over and the benediction pronounced. Tom Sawyer went home quite cheerful, thinking to himself that there was some satisfaction about divine service when there was a bit of variety in it. He had but one marring thought; he was willing that the dog should play with his pinchbug, but he did not think it was upright in him to carry it off. CHAPTER VI MONDAY morning found Tom Sawyer miserable. Monday morning always found him so--because it began another week's slow suffering in school. He generally began that day with wishing he had had no intervening holiday, it made the going into captivity and fetters again so much more odious. Tom lay thinking. Presently it occurred to him that he wished he was sick; then he could stay home from school. Here was a vague possibility. He canvassed his system. No ailment was found, and he investigated again. This time he thought he could detect colicky symptoms, and he began to encourage them with considerable hope. But they soon grew feeble, and presently died wholly away. He reflected further. Suddenly he discovered something. One of his upper front teeth was loose. This was lucky; he was about to begin to groan, as a "starter," as he called it, when it occurred to him that if he came into court with that argument, his aunt would pull it out, and that would hurt. So he thought he would hold the tooth in reserve for the present, and seek further. Nothing offered for some little time, and then he remembered hearing the doctor tell about a certain thing that laid up a patient for two or three weeks and threatened to make him lose a finger. So the boy eagerly drew his sore toe from under the sheet and held it up for inspection. But now he did not know the necessary symptoms. However, it seemed well worth while to chance it, so he fell to groaning with considerable spirit. But Sid slept on unconscious. Tom groaned louder, and fancied that he began to feel pain in the toe. No result from Sid. Tom was panting with his exertions by this time. He took a rest and then swelled himself up and fetched a succession of admirable groans. Sid snored on. Tom was aggravated. He said, "Sid, Sid!" and shook him. This course worked well, and Tom began to groan again. Sid yawned, stretched, then brought himself up on his elbow with a snort, and began to stare at Tom. Tom went on groaning. Sid said: "Tom! Say, Tom!" [No response.] "Here, Tom! TOM! What is the matter, Tom?" And he shook him and looked in his face anxiously. Tom moaned out: "Oh, don't, Sid. Don't joggle me." "Why, what's the matter, Tom? I must call auntie." "No--never mind. It'll be over by and by, maybe. Don't call anybody." "But I must! DON'T groan so, Tom, it's awful. How long you been this way?" "Hours. Ouch! Oh, don't stir so, Sid, you'll kill me." "Tom, why didn't you wake me sooner? Oh, Tom, DON'T! It makes my flesh crawl to hear you. Tom, what is the matter?" "I forgive you everything, Sid. [Groan.] Everything you've ever done to me. When I'm gone--" "Oh, Tom, you ain't dying, are you? Don't, Tom--oh, don't. Maybe--" "I forgive everybody, Sid. [Groan.] Tell 'em so, Sid. And Sid, you give my window-sash and my cat with one eye to that new girl that's come to town, and tell her--" But Sid had snatched his clothes and gone. Tom was suffering in reality, now, so handsomely was his imagination working, and so his groans had gathered quite a genuine tone. Sid flew down-stairs and said: "Oh, Aunt Polly, come! Tom's dying!" "Dying!" "Yes'm. Don't wait--come quick!" "Rubbage! I don't believe it!" But she fled up-stairs, nevertheless, with Sid and Mary at her heels. And her face grew white, too, and her lip trembled. When she reached the bedside she gasped out: "You, Tom! Tom, what's the matter with you?" "Oh, auntie, I'm--" "What's the matter with you--what is the matter with you, child?" "Oh, auntie, my sore toe's mortified!" The old lady sank down into a chair and laughed a little, then cried a little, then did both together. This restored her and she said: "Tom, what a turn you did give me. Now you shut up that nonsense and climb out of this." The groans ceased and the pain vanished from the toe. The boy felt a little foolish, and he said: "Aunt Polly, it SEEMED mortified, and it hurt so I never minded my tooth at all." "Your tooth, indeed! What's the matter with your tooth?" "One of them's loose, and it aches perfectly awful." "There, there, now, don't begin that groaning again. Open your mouth. Well--your tooth IS loose, but you're not going to die about that. Mary, get me a silk thread, and a chunk of fire out of the kitchen." Tom said: "Oh, please, auntie, don't pull it out. It don't hurt any more. I wish I may never stir if it does. Please don't, auntie. I don't want to stay home from school." "Oh, you don't, don't you? So all this row was because you thought you'd get to stay home from school and go a-fishing? Tom, Tom, I love you so, and you seem to try every way you can to break my old heart with your outrageousness." By this time the dental instruments were ready. The old lady made one end of the silk thread fast to Tom's tooth with a loop and tied the other to the bedpost. Then she seized the chunk of fire and suddenly thrust it almost into the boy's face. The tooth hung dangling by the bedpost, now. But all trials bring their compensations. As Tom wended to school after breakfast, he was the envy of every boy he met because the gap in his upper row of teeth enabled him to expectorate in a new and admirable way. He gathered quite a following of lads interested in the exhibition; and one that had cut his finger and had been a centre of fascination and homage up to this time, now found himself suddenly without an adherent, and shorn of his glory. His heart was heavy, and he said with a disdain which he did not feel that it wasn't anything to spit like Tom Sawyer; but another boy said, "Sour grapes!" and he wandered away a dismantled hero. Shortly Tom came upon the juvenile pariah of the village, Huckleberry Finn, son of the town drunkard. Huckleberry was cordially hated and dreaded by all the mothers of the town, because he was idle and lawless and vulgar and bad--and because all their children admired him so, and delighted in his forbidden society, and wished they dared to be like him. Tom was like the rest of the respectable boys, in that he envied Huckleberry his gaudy outcast condition, and was under strict orders not to play with him. So he played with him every time he got a chance. Huckleberry was always dressed in the cast-off clothes of full-grown men, and they were in perennial bloom and fluttering with rags. His hat was a vast ruin with a wide crescent lopped out of its brim; his coat, when he wore one, hung nearly to his heels and had the rearward buttons far down the back; but one suspender supported his trousers; the seat of the trousers bagged low and contained nothing, the fringed legs dragged in the dirt when not rolled up. Huckleberry came and went, at his own free will. He slept on doorsteps in fine weather and in empty hogsheads in wet; he did not have to go to school or to church, or call any being master or obey anybody; he could go fishing or swimming when and where he chose, and stay as long as it suited him; nobody forbade him to fight; he could sit up as late as he pleased; he was always the first boy that went barefoot in the spring and the last to resume leather in the fall; he never had to wash, nor put on clean clothes; he could swear wonderfully. In a word, everything that goes to make life precious that boy had. So thought every harassed, hampered, respectable boy in St. Petersburg. Tom hailed the romantic outcast: "Hello, Huckleberry!" "Hello yourself, and see how you like it." "What's that you got?" "Dead cat." "Lemme see him, Huck. My, he's pretty stiff. Where'd you get him?" "Bought him off'n a boy." "What did you give?" "I give a blue ticket and a bladder that I got at the slaughter-house." "Where'd you get the blue ticket?" "Bought it off'n Ben Rogers two weeks ago for a hoop-stick." "Say--what is dead cats good for, Huck?" "Good for? Cure warts with." "No! Is that so? I know something that's better." "I bet you don't. What is it?" "Why, spunk-water." "Spunk-water! I wouldn't give a dern for spunk-water." "You wouldn't, wouldn't you? D'you ever try it?" "No, I hain't. But Bob Tanner did." "Who told you so!" "Why, he told Jeff Thatcher, and Jeff told Johnny Baker, and Johnny told Jim Hollis, and Jim told Ben Rogers, and Ben told a nigger, and the nigger told me. There now!" "Well, what of it? They'll all lie. Leastways all but the nigger. I don't know HIM. But I never see a nigger that WOULDN'T lie. Shucks! Now you tell me how Bob Tanner done it, Huck." "Why, he took and dipped his hand in a rotten stump where the rain-water was." "In the daytime?" "Certainly." "With his face to the stump?" "Yes. Least I reckon so." "Did he say anything?" "I don't reckon he did. I don't know." "Aha! Talk about trying to cure warts with spunk-water such a blame fool way as that! Why, that ain't a-going to do any good. You got to go all by yourself, to the middle of the woods, where you know there's a spunk-water stump, and just as it's midnight you back up against the stump and jam your hand in and say: 'Barley-corn, barley-corn, injun-meal shorts, Spunk-water, spunk-water, swaller these warts,' and then walk away quick, eleven steps, with your eyes shut, and then turn around three times and walk home without speaking to anybody. Because if you speak the charm's busted." "Well, that sounds like a good way; but that ain't the way Bob Tanner done." "No, sir, you can bet he didn't, becuz he's the wartiest boy in this town; and he wouldn't have a wart on him if he'd knowed how to work spunk-water. I've took off thousands of warts off of my hands that way, Huck. I play with frogs so much that I've always got considerable many warts. Sometimes I take 'em off with a bean." "Yes, bean's good. I've done that." "Have you? What's your way?" "You take and split the bean, and cut the wart so as to get some blood, and then you put the blood on one piece of the bean and take and dig a hole and bury it 'bout midnight at the crossroads in the dark of the moon, and then you burn up the rest of the bean. You see that piece that's got the blood on it will keep drawing and drawing, trying to fetch the other piece to it, and so that helps the blood to draw the wart, and pretty soon off she comes." "Yes, that's it, Huck--that's it; though when you're burying it if you say 'Down bean; off wart; come no more to bother me!' it's better. That's the way Joe Harper does, and he's been nearly to Coonville and most everywheres. But say--how do you cure 'em with dead cats?" "Why, you take your cat and go and get in the graveyard 'long about midnight when somebody that was wicked has been buried; and when it's midnight a devil will come, or maybe two or three, but you can't see 'em, you can only hear something like the wind, or maybe hear 'em talk; and when they're taking that feller away, you heave your cat after 'em and say, 'Devil follow corpse, cat follow devil, warts follow cat, I'm done with ye!' That'll fetch ANY wart." "Sounds right. D'you ever try it, Huck?" "No, but old Mother Hopkins told me." "Well, I reckon it's so, then. Becuz they say she's a witch." "Say! Why, Tom, I KNOW she is. She witched pap. Pap says so his own self. He come along one day, and he see she was a-witching him, so he took up a rock, and if she hadn't dodged, he'd a got her. Well, that very night he rolled off'n a shed wher' he was a layin drunk, and broke his arm." "Why, that's awful. How did he know she was a-witching him?" "Lord, pap can tell, easy. Pap says when they keep looking at you right stiddy, they're a-witching you. Specially if they mumble. Becuz when they mumble they're saying the Lord's Prayer backards." "Say, Hucky, when you going to try the cat?" "To-night. I reckon they'll come after old Hoss Williams to-night." "But they buried him Saturday. Didn't they get him Saturday night?" "Why, how you talk! How could their charms work till midnight?--and THEN it's Sunday. Devils don't slosh around much of a Sunday, I don't reckon." "I never thought of that. That's so. Lemme go with you?" "Of course--if you ain't afeard." "Afeard! 'Tain't likely. Will you meow?" "Yes--and you meow back, if you get a chance. Last time, you kep' me a-meowing around till old Hays went to throwing rocks at me and says 'Dern that cat!' and so I hove a brick through his window--but don't you tell." "I won't. I couldn't meow that night, becuz auntie was watching me, but I'll meow this time. Say--what's that?" "Nothing but a tick." "Where'd you get him?" "Out in the woods." "What'll you take for him?" "I don't know. I don't want to sell him." "All right. It's a mighty small tick, anyway." "Oh, anybody can run a tick down that don't belong to them. I'm satisfied with it. It's a good enough tick for me." "Sho, there's ticks a plenty. I could have a thousand of 'em if I wanted to." "Well, why don't you? Becuz you know mighty well you can't. This is a pretty early tick, I reckon. It's the first one I've seen this year." "Say, Huck--I'll give you my tooth for him." "Less see it." Tom got out a bit of paper and carefully unrolled it. Huckleberry viewed it wistfully. The temptation was very strong. At last he said: "Is it genuwyne?" Tom lifted his lip and showed the vacancy. "Well, all right," said Huckleberry, "it's a trade." Tom enclosed the tick in the percussion-cap box that had lately been the pinchbug's prison, and the boys separated, each feeling wealthier than before. When Tom reached the little isolated frame schoolhouse, he strode in briskly, with the manner of one who had come with all honest speed. He hung his hat on a peg and flung himself into his seat with business-like alacrity. The master, throned on high in his great splint-bottom arm-chair, was dozing, lulled by the drowsy hum of study. The interruption roused him. "Thomas Sawyer!" Tom knew that when his name was pronounced in full, it meant trouble. "Sir!" "Come up here. Now, sir, why are you late again, as usual?" Tom was about to take refuge in a lie, when he saw two long tails of yellow hair hanging down a back that he recognized by the electric sympathy of love; and by that form was THE ONLY VACANT PLACE on the girls' side of the schoolhouse. He instantly said: "I STOPPED TO TALK WITH HUCKLEBERRY FINN!" The master's pulse stood still, and he stared helplessly. The buzz of study ceased. The pupils wondered if this foolhardy boy had lost his mind. The master said: "You--you did what?" "Stopped to talk with Huckleberry Finn." There was no mistaking the words. "Thomas Sawyer, this is the most astounding confession I have ever listened to. No mere ferule will answer for this offence. Take off your jacket." The master's arm performed until it was tired and the stock of switches notably diminished. Then the order followed: "Now, sir, go and sit with the girls! And let this be a warning to you." The titter that rippled around the room appeared to abash the boy, but in reality that result was caused rather more by his worshipful awe of his unknown idol and the dread pleasure that lay in his high good fortune. He sat down upon the end of the pine bench and the girl hitched herself away from him with a toss of her head. Nudges and winks and whispers traversed the room, but Tom sat still, with his arms upon the long, low desk before him, and seemed to study his book. By and by attention ceased from him, and the accustomed school murmur rose upon the dull air once more. Presently the boy began to steal furtive glances at the girl. She observed it, "made a mouth" at him and gave him the back of her head for the space of a minute. When she cautiously faced around again, a peach lay before her. She thrust it away. Tom gently put it back. She thrust it away again, but with less animosity. Tom patiently returned it to its place. Then she let it remain. Tom scrawled on his slate, "Please take it--I got more." The girl glanced at the words, but made no sign. Now the boy began to draw something on the slate, hiding his work with his left hand. For a time the girl refused to notice; but her human curiosity presently began to manifest itself by hardly perceptible signs. The boy worked on, apparently unconscious. The girl made a sort of noncommittal attempt to see, but the boy did not betray that he was aware of it. At last she gave in and hesitatingly whispered: "Let me see it." Tom partly uncovered a dismal caricature of a house with two gable ends to it and a corkscrew of smoke issuing from the chimney. Then the girl's interest began to fasten itself upon the work and she forgot everything else. When it was finished, she gazed a moment, then whispered: "It's nice--make a man." The artist erected a man in the front yard, that resembled a derrick. He could have stepped over the house; but the girl was not hypercritical; she was satisfied with the monster, and whispered: "It's a beautiful man--now make me coming along." Tom drew an hour-glass with a full moon and straw limbs to it and armed the spreading fingers with a portentous fan. The girl said: "It's ever so nice--I wish I could draw." "It's easy," whispered Tom, "I'll learn you." "Oh, will you? When?" "At noon. Do you go home to dinner?" "I'll stay if you will." "Good--that's a whack. What's your name?" "Becky Thatcher. What's yours? Oh, I know. It's Thomas Sawyer." "That's the name they lick me by. I'm Tom when I'm good. You call me Tom, will you?" "Yes." Now Tom began to scrawl something on the slate, hiding the words from the girl. But she was not backward this time. She begged to see. Tom said: "Oh, it ain't anything." "Yes it is." "No it ain't. You don't want to see." "Yes I do, indeed I do. Please let me." "You'll tell." "No I won't--deed and deed and double deed won't." "You won't tell anybody at all? Ever, as long as you live?" "No, I won't ever tell ANYbody. Now let me." "Oh, YOU don't want to see!" "Now that you treat me so, I WILL see." And she put her small hand upon his and a little scuffle ensued, Tom pretending to resist in earnest but letting his hand slip by degrees till these words were revealed: "I LOVE YOU." "Oh, you bad thing!" And she hit his hand a smart rap, but reddened and looked pleased, nevertheless. Just at this juncture the boy felt a slow, fateful grip closing on his ear, and a steady lifting impulse. In that wise he was borne across the house and deposited in his own seat, under a peppering fire of giggles from the whole school. Then the master stood over him during a few awful moments, and finally moved away to his throne without saying a word. But although Tom's ear tingled, his heart was jubilant. As the school quieted down Tom made an honest effort to study, but the turmoil within him was too great. In turn he took his place in the reading class and made a botch of it; then in the geography class and turned lakes into mountains, mountains into rivers, and rivers into continents, till chaos was come again; then in the spelling class, and got "turned down," by a succession of mere baby words, till he brought up at the foot and yielded up the pewter medal which he had worn with ostentation for months. CHAPTER VII THE harder Tom tried to fasten his mind on his book, the more his ideas wandered. So at last, with a sigh and a yawn, he gave it up. It seemed to him that the noon recess would never come. The air was utterly dead. There was not a breath stirring. It was the sleepiest of sleepy days. The drowsing murmur of the five and twenty studying scholars soothed the soul like the spell that is in the murmur of bees. Away off in the flaming sunshine, Cardiff Hill lifted its soft green sides through a shimmering veil of heat, tinted with the purple of distance; a few birds floated on lazy wing high in the air; no other living thing was visible but some cows, and they were asleep. Tom's heart ached to be free, or else to have something of interest to do to pass the dreary time. His hand wandered into his pocket and his face lit up with a glow of gratitude that was prayer, though he did not know it. Then furtively the percussion-cap box came out. He released the tick and put him on the long flat desk. The creature probably glowed with a gratitude that amounted to prayer, too, at this moment, but it was premature: for when he started thankfully to travel off, Tom turned him aside with a pin and made him take a new direction. Tom's bosom friend sat next him, suffering just as Tom had been, and now he was deeply and gratefully interested in this entertainment in an instant. This bosom friend was Joe Harper. The two boys were sworn friends all the week, and embattled enemies on Saturdays. Joe took a pin out of his lapel and began to assist in exercising the prisoner. The sport grew in interest momently. Soon Tom said that they were interfering with each other, and neither getting the fullest benefit of the tick. So he put Joe's slate on the desk and drew a line down the middle of it from top to bottom. "Now," said he, "as long as he is on your side you can stir him up and I'll let him alone; but if you let him get away and get on my side, you're to leave him alone as long as I can keep him from crossing over." "All right, go ahead; start him up." The tick escaped from Tom, presently, and crossed the equator. Joe harassed him awhile, and then he got away and crossed back again. This change of base occurred often. While one boy was worrying the tick with absorbing interest, the other would look on with interest as strong, the two heads bowed together over the slate, and the two souls dead to all things else. At last luck seemed to settle and abide with Joe. The tick tried this, that, and the other course, and got as excited and as anxious as the boys themselves, but time and again just as he would have victory in his very grasp, so to speak, and Tom's fingers would be twitching to begin, Joe's pin would deftly head him off, and keep possession. At last Tom could stand it no longer. The temptation was too strong. So he reached out and lent a hand with his pin. Joe was angry in a moment. Said he: "Tom, you let him alone." "I only just want to stir him up a little, Joe." "No, sir, it ain't fair; you just let him alone." "Blame it, I ain't going to stir him much." "Let him alone, I tell you." "I won't!" "You shall--he's on my side of the line." "Look here, Joe Harper, whose is that tick?" "I don't care whose tick he is--he's on my side of the line, and you sha'n't touch him." "Well, I'll just bet I will, though. He's my tick and I'll do what I blame please with him, or die!" A tremendous whack came down on Tom's shoulders, and its duplicate on Joe's; and for the space of two minutes the dust continued to fly from the two jackets and the whole school to enjoy it. The boys had been too absorbed to notice the hush that had stolen upon the school awhile before when the master came tiptoeing down the room and stood over them. He had contemplated a good part of the performance before he contributed his bit of variety to it. When school broke up at noon, Tom flew to Becky Thatcher, and whispered in her ear: "Put on your bonnet and let on you're going home; and when you get to the corner, give the rest of 'em the slip, and turn down through the lane and come back. I'll go the other way and come it over 'em the same way." So the one went off with one group of scholars, and the other with another. In a little while the two met at the bottom of the lane, and when they reached the school they had it all to themselves. Then they sat together, with a slate before them, and Tom gave Becky the pencil and held her hand in his, guiding it, and so created another surprising house. When the interest in art began to wane, the two fell to talking. Tom was swimming in bliss. He said: "Do you love rats?" "No! I hate them!" "Well, I do, too--LIVE ones. But I mean dead ones, to swing round your head with a string." "No, I don't care for rats much, anyway. What I like is chewing-gum." "Oh, I should say so! I wish I had some now." "Do you? I've got some. I'll let you chew it awhile, but you must give it back to me." That was agreeable, so they chewed it turn about, and dangled their legs against the bench in excess of contentment. "Was you ever at a circus?" said Tom. "Yes, and my pa's going to take me again some time, if I'm good." "I been to the circus three or four times--lots of times. Church ain't shucks to a circus. There's things going on at a circus all the time. I'm going to be a clown in a circus when I grow up." "Oh, are you! That will be nice. They're so lovely, all spotted up." "Yes, that's so. And they get slathers of money--most a dollar a day, Ben Rogers says. Say, Becky, was you ever engaged?" "What's that?" "Why, engaged to be married." "No." "Would you like to?" "I reckon so. I don't know. What is it like?" "Like? Why it ain't like anything. You only just tell a boy you won't ever have anybody but him, ever ever ever, and then you kiss and that's all. Anybody can do it." "Kiss? What do you kiss for?" "Why, that, you know, is to--well, they always do that." "Everybody?" "Why, yes, everybody that's in love with each other. Do you remember what I wrote on the slate?" "Ye--yes." "What was it?" "I sha'n't tell you." "Shall I tell YOU?" "Ye--yes--but some other time." "No, now." "No, not now--to-morrow." "Oh, no, NOW. Please, Becky--I'll whisper it, I'll whisper it ever so easy." Becky hesitating, Tom took silence for consent, and passed his arm about her waist and whispered the tale ever so softly, with his mouth close to her ear. And then he added: "Now you whisper it to me--just the same." She resisted, for a while, and then said: "You turn your face away so you can't see, and then I will. But you mustn't ever tell anybody--WILL you, Tom? Now you won't, WILL you?" "No, indeed, indeed I won't. Now, Becky." He turned his face away. She bent timidly around till her breath stirred his curls and whispered, "I--love--you!" Then she sprang away and ran around and around the desks and benches, with Tom after her, and took refuge in a corner at last, with her little white apron to her face. Tom clasped her about her neck and pleaded: "Now, Becky, it's all done--all over but the kiss. Don't you be afraid of that--it ain't anything at all. Please, Becky." And he tugged at her apron and the hands. By and by she gave up, and let her hands drop; her face, all glowing with the struggle, came up and submitted. Tom kissed the red lips and said: "Now it's all done, Becky. And always after this, you know, you ain't ever to love anybody but me, and you ain't ever to marry anybody but me, ever never and forever. Will you?" "No, I'll never love anybody but you, Tom, and I'll never marry anybody but you--and you ain't to ever marry anybody but me, either." "Certainly. Of course. That's PART of it. And always coming to school or when we're going home, you're to walk with me, when there ain't anybody looking--and you choose me and I choose you at parties, because that's the way you do when you're engaged." "It's so nice. I never heard of it before." "Oh, it's ever so gay! Why, me and Amy Lawrence--" The big eyes told Tom his blunder and he stopped, confused. "Oh, Tom! Then I ain't the first you've ever been engaged to!" The child began to cry. Tom said: "Oh, don't cry, Becky, I don't care for her any more." "Yes, you do, Tom--you know you do." Tom tried to put his arm about her neck, but she pushed him away and turned her face to the wall, and went on crying. Tom tried again, with soothing words in his mouth, and was repulsed again. Then his pride was up, and he strode away and went outside. He stood about, restless and uneasy, for a while, glancing at the door, every now and then, hoping she would repent and come to find him. But she did not. Then he began to feel badly and fear that he was in the wrong. It was a hard struggle with him to make new advances, now, but he nerved himself to it and entered. She was still standing back there in the corner, sobbing, with her face to the wall. Tom's heart smote him. He went to her and stood a moment, not knowing exactly how to proceed. Then he said hesitatingly: "Becky, I--I don't care for anybody but you." No reply--but sobs. "Becky"--pleadingly. "Becky, won't you say something?" More sobs. Tom got out his chiefest jewel, a brass knob from the top of an andiron, and passed it around her so that she could see it, and said: "Please, Becky, won't you take it?" She struck it to the floor. Then Tom marched out of the house and over the hills and far away, to return to school no more that day. Presently Becky began to suspect. She ran to the door; he was not in sight; she flew around to the play-yard; he was not there. Then she called: "Tom! Come back, Tom!" She listened intently, but there was no answer. She had no companions but silence and loneliness. So she sat down to cry again and upbraid herself; and by this time the scholars began to gather again, and she had to hide her griefs and still her broken heart and take up the cross of a long, dreary, aching afternoon, with none among the strangers about her to exchange sorrows with. CHAPTER VIII TOM dodged hither and thither through lanes until he was well out of the track of returning scholars, and then fell into a moody jog. He crossed a small "branch" two or three times, because of a prevailing juvenile superstition that to cross water baffled pursuit. Half an hour later he was disappearing behind the Douglas mansion on the summit of Cardiff Hill, and the schoolhouse was hardly distinguishable away off in the valley behind him. He entered a dense wood, picked his pathless way to the centre of it, and sat down on a mossy spot under a spreading oak. There was not even a zephyr stirring; the dead noonday heat had even stilled the songs of the birds; nature lay in a trance that was broken by no sound but the occasional far-off hammering of a woodpecker, and this seemed to render the pervading silence and sense of loneliness the more profound. The boy's soul was steeped in melancholy; his feelings were in happy accord with his surroundings. He sat long with his elbows on his knees and his chin in his hands, meditating. It seemed to him that life was but a trouble, at best, and he more than half envied Jimmy Hodges, so lately released; it must be very peaceful, he thought, to lie and slumber and dream forever and ever, with the wind whispering through the trees and caressing the grass and the flowers over the grave, and nothing to bother and grieve about, ever any more. If he only had a clean Sunday-school record he could be willing to go, and be done with it all. Now as to this girl. What had he done? Nothing. He had meant the best in the world, and been treated like a dog--like a very dog. She would be sorry some day--maybe when it was too late. Ah, if he could only die TEMPORARILY! But the elastic heart of youth cannot be compressed into one constrained shape long at a time. Tom presently began to drift insensibly back into the concerns of this life again. What if he turned his back, now, and disappeared mysteriously? What if he went away--ever so far away, into unknown countries beyond the seas--and never came back any more! How would she feel then! The idea of being a clown recurred to him now, only to fill him with disgust. For frivolity and jokes and spotted tights were an offense, when they intruded themselves upon a spirit that was exalted into the vague august realm of the romantic. No, he would be a soldier, and return after long years, all war-worn and illustrious. No--better still, he would join the Indians, and hunt buffaloes and go on the warpath in the mountain ranges and the trackless great plains of the Far West, and away in the future come back a great chief, bristling with feathers, hideous with paint, and prance into Sunday-school, some drowsy summer morning, with a bloodcurdling war-whoop, and sear the eyeballs of all his companions with unappeasable envy. But no, there was something gaudier even than this. He would be a pirate! That was it! NOW his future lay plain before him, and glowing with unimaginable splendor. How his name would fill the world, and make people shudder! How gloriously he would go plowing the dancing seas, in his long, low, black-hulled racer, the Spirit of the Storm, with his grisly flag flying at the fore! And at the zenith of his fame, how he would suddenly appear at the old village and stalk into church, brown and weather-beaten, in his black velvet doublet and trunks, his great jack-boots, his crimson sash, his belt bristling with horse-pistols, his crime-rusted cutlass at his side, his slouch hat with waving plumes, his black flag unfurled, with the skull and crossbones on it, and hear with swelling ecstasy the whisperings, "It's Tom Sawyer the Pirate!--the Black Avenger of the Spanish Main!" Yes, it was settled; his career was determined. He would run away from home and enter upon it. He would start the very next morning. Therefore he must now begin to get ready. He would collect his resources together. He went to a rotten log near at hand and began to dig under one end of it with his Barlow knife. He soon struck wood that sounded hollow. He put his hand there and uttered this incantation impressively: "What hasn't come here, come! What's here, stay here!" Then he scraped away the dirt, and exposed a pine shingle. He took it up and disclosed a shapely little treasure-house whose bottom and sides were of shingles. In it lay a marble. Tom's astonishment was boundless! He scratched his head with a perplexed air, and said: "Well, that beats anything!" Then he tossed the marble away pettishly, and stood cogitating. The truth was, that a superstition of his had failed, here, which he and all his comrades had always looked upon as infallible. If you buried a marble with certain necessary incantations, and left it alone a fortnight, and then opened the place with the incantation he had just used, you would find that all the marbles you had ever lost had gathered themselves together there, meantime, no matter how widely they had been separated. But now, this thing had actually and unquestionably failed. Tom's whole structure of faith was shaken to its foundations. He had many a time heard of this thing succeeding but never of its failing before. It did not occur to him that he had tried it several times before, himself, but could never find the hiding-places afterward. He puzzled over the matter some time, and finally decided that some witch had interfered and broken the charm. He thought he would satisfy himself on that point; so he searched around till he found a small sandy spot with a little funnel-shaped depression in it. He laid himself down and put his mouth close to this depression and called-- "Doodle-bug, doodle-bug, tell me what I want to know! Doodle-bug, doodle-bug, tell me what I want to know!" The sand began to work, and presently a small black bug appeared for a second and then darted under again in a fright. "He dasn't tell! So it WAS a witch that done it. I just knowed it." He well knew the futility of trying to contend against witches, so he gave up discouraged. But it occurred to him that he might as well have the marble he had just thrown away, and therefore he went and made a patient search for it. But he could not find it. Now he went back to his treasure-house and carefully placed himself just as he had been standing when he tossed the marble away; then he took another marble from his pocket and tossed it in the same way, saying: "Brother, go find your brother!" He watched where it stopped, and went there and looked. But it must have fallen short or gone too far; so he tried twice more. The last repetition was successful. The two marbles lay within a foot of each other. Just here the blast of a toy tin trumpet came faintly down the green aisles of the forest. Tom flung off his jacket and trousers, turned a suspender into a belt, raked away some brush behind the rotten log, disclosing a rude bow and arrow, a lath sword and a tin trumpet, and in a moment had seized these things and bounded away, barelegged, with fluttering shirt. He presently halted under a great elm, blew an answering blast, and then began to tiptoe and look warily out, this way and that. He said cautiously--to an imaginary company: "Hold, my merry men! Keep hid till I blow." Now appeared Joe Harper, as airily clad and elaborately armed as Tom. Tom called: "Hold! Who comes here into Sherwood Forest without my pass?" "Guy of Guisborne wants no man's pass. Who art thou that--that--" "Dares to hold such language," said Tom, prompting--for they talked "by the book," from memory. "Who art thou that dares to hold such language?" "I, indeed! I am Robin Hood, as thy caitiff carcase soon shall know." "Then art thou indeed that famous outlaw? Right gladly will I dispute with thee the passes of the merry wood. Have at thee!" They took their lath swords, dumped their other traps on the ground, struck a fencing attitude, foot to foot, and began a grave, careful combat, "two up and two down." Presently Tom said: "Now, if you've got the hang, go it lively!" So they "went it lively," panting and perspiring with the work. By and by Tom shouted: "Fall! fall! Why don't you fall?" "I sha'n't! Why don't you fall yourself? You're getting the worst of it." "Why, that ain't anything. I can't fall; that ain't the way it is in the book. The book says, 'Then with one back-handed stroke he slew poor Guy of Guisborne.' You're to turn around and let me hit you in the back." There was no getting around the authorities, so Joe turned, received the whack and fell. "Now," said Joe, getting up, "you got to let me kill YOU. That's fair." "Why, I can't do that, it ain't in the book." "Well, it's blamed mean--that's all." "Well, say, Joe, you can be Friar Tuck or Much the miller's son, and lam me with a quarter-staff; or I'll be the Sheriff of Nottingham and you be Robin Hood a little while and kill me." This was satisfactory, and so these adventures were carried out. Then Tom became Robin Hood again, and was allowed by the treacherous nun to bleed his strength away through his neglected wound. And at last Joe, representing a whole tribe of weeping outlaws, dragged him sadly forth, gave his bow into his feeble hands, and Tom said, "Where this arrow falls, there bury poor Robin Hood under the greenwood tree." Then he shot the arrow and fell back and would have died, but he lit on a nettle and sprang up too gaily for a corpse. The boys dressed themselves, hid their accoutrements, and went off grieving that there were no outlaws any more, and wondering what modern civilization could claim to have done to compensate for their loss. They said they would rather be outlaws a year in Sherwood Forest than President of the United States forever. CHAPTER IX AT half-past nine, that night, Tom and Sid were sent to bed, as usual. They said their prayers, and Sid was soon asleep. Tom lay awake and waited, in restless impatience. When it seemed to him that it must be nearly daylight, he heard the clock strike ten! This was despair. He would have tossed and fidgeted, as his nerves demanded, but he was afraid he might wake Sid. So he lay still, and stared up into the dark. Everything was dismally still. By and by, out of the stillness, little, scarcely perceptible noises began to emphasize themselves. The ticking of the clock began to bring itself into notice. Old beams began to crack mysteriously. The stairs creaked faintly. Evidently spirits were abroad. A measured, muffled snore issued from Aunt Polly's chamber. And now the tiresome chirping of a cricket that no human ingenuity could locate, began. Next the ghastly ticking of a deathwatch in the wall at the bed's head made Tom shudder--it meant that somebody's days were numbered. Then the howl of a far-off dog rose on the night air, and was answered by a fainter howl from a remoter distance. Tom was in an agony. At last he was satisfied that time had ceased and eternity begun; he began to doze, in spite of himself; the clock chimed eleven, but he did not hear it. And then there came, mingling with his half-formed dreams, a most melancholy caterwauling. The raising of a neighboring window disturbed him. A cry of "Scat! you devil!" and the crash of an empty bottle against the back of his aunt's woodshed brought him wide awake, and a single minute later he was dressed and out of the window and creeping along the roof of the "ell" on all fours. He "meow'd" with caution once or twice, as he went; then jumped to the roof of the woodshed and thence to the ground. Huckleberry Finn was there, with his dead cat. The boys moved off and disappeared in the gloom. At the end of half an hour they were wading through the tall grass of the graveyard. It was a graveyard of the old-fashioned Western kind. It was on a hill, about a mile and a half from the village. It had a crazy board fence around it, which leaned inward in places, and outward the rest of the time, but stood upright nowhere. Grass and weeds grew rank over the whole cemetery. All the old graves were sunken in, there was not a tombstone on the place; round-topped, worm-eaten boards staggered over the graves, leaning for support and finding none. "Sacred to the memory of" So-and-So had been painted on them once, but it could no longer have been read, on the most of them, now, even if there had been light. A faint wind moaned through the trees, and Tom feared it might be the spirits of the dead, complaining at being disturbed. The boys talked little, and only under their breath, for the time and the place and the pervading solemnity and silence oppressed their spirits. They found the sharp new heap they were seeking, and ensconced themselves within the protection of three great elms that grew in a bunch within a few feet of the grave. Then they waited in silence for what seemed a long time. The hooting of a distant owl was all the sound that troubled the dead stillness. Tom's reflections grew oppressive. He must force some talk. So he said in a whisper: "Hucky, do you believe the dead people like it for us to be here?" Huckleberry whispered: "I wisht I knowed. It's awful solemn like, AIN'T it?" "I bet it is." There was a considerable pause, while the boys canvassed this matter inwardly. Then Tom whispered: "Say, Hucky--do you reckon Hoss Williams hears us talking?" "O' course he does. Least his sperrit does." Tom, after a pause: "I wish I'd said Mister Williams. But I never meant any harm. Everybody calls him Hoss." "A body can't be too partic'lar how they talk 'bout these-yer dead people, Tom." This was a damper, and conversation died again. Presently Tom seized his comrade's arm and said: "Sh!" "What is it, Tom?" And the two clung together with beating hearts. "Sh! There 'tis again! Didn't you hear it?" "I--" "There! Now you hear it." "Lord, Tom, they're coming! They're coming, sure. What'll we do?" "I dono. Think they'll see us?" "Oh, Tom, they can see in the dark, same as cats. I wisht I hadn't come." "Oh, don't be afeard. I don't believe they'll bother us. We ain't doing any harm. If we keep perfectly still, maybe they won't notice us at all." "I'll try to, Tom, but, Lord, I'm all of a shiver." "Listen!" The boys bent their heads together and scarcely breathed. A muffled sound of voices floated up from the far end of the graveyard. "Look! See there!" whispered Tom. "What is it?" "It's devil-fire. Oh, Tom, this is awful." Some vague figures approached through the gloom, swinging an old-fashioned tin lantern that freckled the ground with innumerable little spangles of light. Presently Huckleberry whispered with a shudder: "It's the devils sure enough. Three of 'em! Lordy, Tom, we're goners! Can you pray?" "I'll try, but don't you be afeard. They ain't going to hurt us. 'Now I lay me down to sleep, I--'" "Sh!" "What is it, Huck?" "They're HUMANS! One of 'em is, anyway. One of 'em's old Muff Potter's voice." "No--'tain't so, is it?" "I bet I know it. Don't you stir nor budge. He ain't sharp enough to notice us. Drunk, the same as usual, likely--blamed old rip!" "All right, I'll keep still. Now they're stuck. Can't find it. Here they come again. Now they're hot. Cold again. Hot again. Red hot! They're p'inted right, this time. Say, Huck, I know another o' them voices; it's Injun Joe." "That's so--that murderin' half-breed! I'd druther they was devils a dern sight. What kin they be up to?" The whisper died wholly out, now, for the three men had reached the grave and stood within a few feet of the boys' hiding-place. "Here it is," said the third voice; and the owner of it held the lantern up and revealed the face of young Doctor Robinson. Potter and Injun Joe were carrying a handbarrow with a rope and a couple of shovels on it. They cast down their load and began to open the grave. The doctor put the lantern at the head of the grave and came and sat down with his back against one of the elm trees. He was so close the boys could have touched him. "Hurry, men!" he said, in a low voice; "the moon might come out at any moment." They growled a response and went on digging. For some time there was no noise but the grating sound of the spades discharging their freight of mould and gravel. It was very monotonous. Finally a spade struck upon the coffin with a dull woody accent, and within another minute or two the men had hoisted it out on the ground. They pried off the lid with their shovels, got out the body and dumped it rudely on the ground. The moon drifted from behind the clouds and exposed the pallid face. The barrow was got ready and the corpse placed on it, covered with a blanket, and bound to its place with the rope. Potter took out a large spring-knife and cut off the dangling end of the rope and then said: "Now the cussed thing's ready, Sawbones, and you'll just out with another five, or here she stays." "That's the talk!" said Injun Joe. "Look here, what does this mean?" said the doctor. "You required your pay in advance, and I've paid you." "Yes, and you done more than that," said Injun Joe, approaching the doctor, who was now standing. "Five years ago you drove me away from your father's kitchen one night, when I come to ask for something to eat, and you said I warn't there for any good; and when I swore I'd get even with you if it took a hundred years, your father had me jailed for a vagrant. Did you think I'd forget? The Injun blood ain't in me for nothing. And now I've GOT you, and you got to SETTLE, you know!" He was threatening the doctor, with his fist in his face, by this time. The doctor struck out suddenly and stretched the ruffian on the ground. Potter dropped his knife, and exclaimed: "Here, now, don't you hit my pard!" and the next moment he had grappled with the doctor and the two were struggling with might and main, trampling the grass and tearing the ground with their heels. Injun Joe sprang to his feet, his eyes flaming with passion, snatched up Potter's knife, and went creeping, catlike and stooping, round and round about the combatants, seeking an opportunity. All at once the doctor flung himself free, seized the heavy headboard of Williams' grave and felled Potter to the earth with it--and in the same instant the half-breed saw his chance and drove the knife to the hilt in the young man's breast. He reeled and fell partly upon Potter, flooding him with his blood, and in the same moment the clouds blotted out the dreadful spectacle and the two frightened boys went speeding away in the dark. Presently, when the moon emerged again, Injun Joe was standing over the two forms, contemplating them. The doctor murmured inarticulately, gave a long gasp or two and was still. The half-breed muttered: "THAT score is settled--damn you." Then he robbed the body. After which he put the fatal knife in Potter's open right hand, and sat down on the dismantled coffin. Three --four--five minutes passed, and then Potter began to stir and moan. His hand closed upon the knife; he raised it, glanced at it, and let it fall, with a shudder. Then he sat up, pushing the body from him, and gazed at it, and then around him, confusedly. His eyes met Joe's. "Lord, how is this, Joe?" he said. "It's a dirty business," said Joe, without moving. "What did you do it for?" "I! I never done it!" "Look here! That kind of talk won't wash." Potter trembled and grew white. "I thought I'd got sober. I'd no business to drink to-night. But it's in my head yet--worse'n when we started here. I'm all in a muddle; can't recollect anything of it, hardly. Tell me, Joe--HONEST, now, old feller--did I do it? Joe, I never meant to--'pon my soul and honor, I never meant to, Joe. Tell me how it was, Joe. Oh, it's awful--and him so young and promising." "Why, you two was scuffling, and he fetched you one with the headboard and you fell flat; and then up you come, all reeling and staggering like, and snatched the knife and jammed it into him, just as he fetched you another awful clip--and here you've laid, as dead as a wedge til now." "Oh, I didn't know what I was a-doing. I wish I may die this minute if I did. It was all on account of the whiskey and the excitement, I reckon. I never used a weepon in my life before, Joe. I've fought, but never with weepons. They'll all say that. Joe, don't tell! Say you won't tell, Joe--that's a good feller. I always liked you, Joe, and stood up for you, too. Don't you remember? You WON'T tell, WILL you, Joe?" And the poor creature dropped on his knees before the stolid murderer, and clasped his appealing hands. "No, you've always been fair and square with me, Muff Potter, and I won't go back on you. There, now, that's as fair as a man can say." "Oh, Joe, you're an angel. I'll bless you for this the longest day I live." And Potter began to cry. "Come, now, that's enough of that. This ain't any time for blubbering. You be off yonder way and I'll go this. Move, now, and don't leave any tracks behind you." Potter started on a trot that quickly increased to a run. The half-breed stood looking after him. He muttered: "If he's as much stunned with the lick and fuddled with the rum as he had the look of being, he won't think of the knife till he's gone so far he'll be afraid to come back after it to such a place by himself --chicken-heart!" Two or three minutes later the murdered man, the blanketed corpse, the lidless coffin, and the open grave were under no inspection but the moon's. The stillness was complete again, too. CHAPTER X THE two boys flew on and on, toward the village, speechless with horror. They glanced backward over their shoulders from time to time, apprehensively, as if they feared they might be followed. Every stump that started up in their path seemed a man and an enemy, and made them catch their breath; and as they sped by some outlying cottages that lay near the village, the barking of the aroused watch-dogs seemed to give wings to their feet. "If we can only get to the old tannery before we break down!" whispered Tom, in short catches between breaths. "I can't stand it much longer." Huckleberry's hard pantings were his only reply, and the boys fixed their eyes on the goal of their hopes and bent to their work to win it. They gained steadily on it, and at last, breast to breast, they burst through the open door and fell grateful and exhausted in the sheltering shadows beyond. By and by their pulses slowed down, and Tom whispered: "Huckleberry, what do you reckon'll come of this?" "If Doctor Robinson dies, I reckon hanging'll come of it." "Do you though?" "Why, I KNOW it, Tom." Tom thought a while, then he said: "Who'll tell? We?" "What are you talking about? S'pose something happened and Injun Joe DIDN'T hang? Why, he'd kill us some time or other, just as dead sure as we're a laying here." "That's just what I was thinking to myself, Huck." "If anybody tells, let Muff Potter do it, if he's fool enough. He's generally drunk enough." Tom said nothing--went on thinking. Presently he whispered: "Huck, Muff Potter don't know it. How can he tell?" "What's the reason he don't know it?" "Because he'd just got that whack when Injun Joe done it. D'you reckon he could see anything? D'you reckon he knowed anything?" "By hokey, that's so, Tom!" "And besides, look-a-here--maybe that whack done for HIM!" "No, 'taint likely, Tom. He had liquor in him; I could see that; and besides, he always has. Well, when pap's full, you might take and belt him over the head with a church and you couldn't phase him. He says so, his own self. So it's the same with Muff Potter, of course. But if a man was dead sober, I reckon maybe that whack might fetch him; I dono." After another reflective silence, Tom said: "Hucky, you sure you can keep mum?" "Tom, we GOT to keep mum. You know that. That Injun devil wouldn't make any more of drownding us than a couple of cats, if we was to squeak 'bout this and they didn't hang him. Now, look-a-here, Tom, less take and swear to one another--that's what we got to do--swear to keep mum." "I'm agreed. It's the best thing. Would you just hold hands and swear that we--" "Oh no, that wouldn't do for this. That's good enough for little rubbishy common things--specially with gals, cuz THEY go back on you anyway, and blab if they get in a huff--but there orter be writing 'bout a big thing like this. And blood." Tom's whole being applauded this idea. It was deep, and dark, and awful; the hour, the circumstances, the surroundings, were in keeping with it. He picked up a clean pine shingle that lay in the moonlight, took a little fragment of "red keel" out of his pocket, got the moon on his work, and painfully scrawled these lines, emphasizing each slow down-stroke by clamping his tongue between his teeth, and letting up the pressure on the up-strokes. [See next page.] "Huck Finn and Tom Sawyer swears they will keep mum about This and They wish They may Drop down dead in Their Tracks if They ever Tell and Rot." Huckleberry was filled with admiration of Tom's facility in writing, and the sublimity of his language. He at once took a pin from his lapel and was going to prick his flesh, but Tom said: "Hold on! Don't do that. A pin's brass. It might have verdigrease on it." "What's verdigrease?" "It's p'ison. That's what it is. You just swaller some of it once --you'll see." So Tom unwound the thread from one of his needles, and each boy pricked the ball of his thumb and squeezed out a drop of blood. In time, after many squeezes, Tom managed to sign his initials, using the ball of his little finger for a pen. Then he showed Huckleberry how to make an H and an F, and the oath was complete. They buried the shingle close to the wall, with some dismal ceremonies and incantations, and the fetters that bound their tongues were considered to be locked and the key thrown away. A figure crept stealthily through a break in the other end of the ruined building, now, but they did not notice it. "Tom," whispered Huckleberry, "does this keep us from EVER telling --ALWAYS?" "Of course it does. It don't make any difference WHAT happens, we got to keep mum. We'd drop down dead--don't YOU know that?" "Yes, I reckon that's so." They continued to whisper for some little time. Presently a dog set up a long, lugubrious howl just outside--within ten feet of them. The boys clasped each other suddenly, in an agony of fright. "Which of us does he mean?" gasped Huckleberry. "I dono--peep through the crack. Quick!" "No, YOU, Tom!" "I can't--I can't DO it, Huck!" "Please, Tom. There 'tis again!" "Oh, lordy, I'm thankful!" whispered Tom. "I know his voice. It's Bull Harbison." * [* If Mr. Harbison owned a slave named Bull, Tom would have spoken of him as "Harbison's Bull," but a son or a dog of that name was "Bull Harbison."] "Oh, that's good--I tell you, Tom, I was most scared to death; I'd a bet anything it was a STRAY dog." The dog howled again. The boys' hearts sank once more. "Oh, my! that ain't no Bull Harbison!" whispered Huckleberry. "DO, Tom!" Tom, quaking with fear, yielded, and put his eye to the crack. His whisper was hardly audible when he said: "Oh, Huck, IT S A STRAY DOG!" "Quick, Tom, quick! Who does he mean?" "Huck, he must mean us both--we're right together." "Oh, Tom, I reckon we're goners. I reckon there ain't no mistake 'bout where I'LL go to. I been so wicked." "Dad fetch it! This comes of playing hookey and doing everything a feller's told NOT to do. I might a been good, like Sid, if I'd a tried --but no, I wouldn't, of course. But if ever I get off this time, I lay I'll just WALLER in Sunday-schools!" And Tom began to snuffle a little. "YOU bad!" and Huckleberry began to snuffle too. "Consound it, Tom Sawyer, you're just old pie, 'longside o' what I am. Oh, LORDY, lordy, lordy, I wisht I only had half your chance." Tom choked off and whispered: "Look, Hucky, look! He's got his BACK to us!" Hucky looked, with joy in his heart. "Well, he has, by jingoes! Did he before?" "Yes, he did. But I, like a fool, never thought. Oh, this is bully, you know. NOW who can he mean?" The howling stopped. Tom pricked up his ears. "Sh! What's that?" he whispered. "Sounds like--like hogs grunting. No--it's somebody snoring, Tom." "That IS it! Where 'bouts is it, Huck?" "I bleeve it's down at 'tother end. Sounds so, anyway. Pap used to sleep there, sometimes, 'long with the hogs, but laws bless you, he just lifts things when HE snores. Besides, I reckon he ain't ever coming back to this town any more." The spirit of adventure rose in the boys' souls once more. "Hucky, do you das't to go if I lead?" "I don't like to, much. Tom, s'pose it's Injun Joe!" Tom quailed. But presently the temptation rose up strong again and the boys agreed to try, with the understanding that they would take to their heels if the snoring stopped. So they went tiptoeing stealthily down, the one behind the other. When they had got to within five steps of the snorer, Tom stepped on a stick, and it broke with a sharp snap. The man moaned, writhed a little, and his face came into the moonlight. It was Muff Potter. The boys' hearts had stood still, and their hopes too, when the man moved, but their fears passed away now. They tiptoed out, through the broken weather-boarding, and stopped at a little distance to exchange a parting word. That long, lugubrious howl rose on the night air again! They turned and saw the strange dog standing within a few feet of where Potter was lying, and FACING Potter, with his nose pointing heavenward. "Oh, geeminy, it's HIM!" exclaimed both boys, in a breath. "Say, Tom--they say a stray dog come howling around Johnny Miller's house, 'bout midnight, as much as two weeks ago; and a whippoorwill come in and lit on the banisters and sung, the very same evening; and there ain't anybody dead there yet." "Well, I know that. And suppose there ain't. Didn't Gracie Miller fall in the kitchen fire and burn herself terrible the very next Saturday?" "Yes, but she ain't DEAD. And what's more, she's getting better, too." "All right, you wait and see. She's a goner, just as dead sure as Muff Potter's a goner. That's what the niggers say, and they know all about these kind of things, Huck." Then they separated, cogitating. When Tom crept in at his bedroom window the night was almost spent. He undressed with excessive caution, and fell asleep congratulating himself that nobody knew of his escapade. He was not aware that the gently-snoring Sid was awake, and had been so for an hour. When Tom awoke, Sid was dressed and gone. There was a late look in the light, a late sense in the atmosphere. He was startled. Why had he not been called--persecuted till he was up, as usual? The thought filled him with bodings. Within five minutes he was dressed and down-stairs, feeling sore and drowsy. The family were still at table, but they had finished breakfast. There was no voice of rebuke; but there were averted eyes; there was a silence and an air of solemnity that struck a chill to the culprit's heart. He sat down and tried to seem gay, but it was up-hill work; it roused no smile, no response, and he lapsed into silence and let his heart sink down to the depths. After breakfast his aunt took him aside, and Tom almost brightened in the hope that he was going to be flogged; but it was not so. His aunt wept over him and asked him how he could go and break her old heart so; and finally told him to go on, and ruin himself and bring her gray hairs with sorrow to the grave, for it was no use for her to try any more. This was worse than a thousand whippings, and Tom's heart was sorer now than his body. He cried, he pleaded for forgiveness, promised to reform over and over again, and then received his dismissal, feeling that he had won but an imperfect forgiveness and established but a feeble confidence. He left the presence too miserable to even feel revengeful toward Sid; and so the latter's prompt retreat through the back gate was unnecessary. He moped to school gloomy and sad, and took his flogging, along with Joe Harper, for playing hookey the day before, with the air of one whose heart was busy with heavier woes and wholly dead to trifles. Then he betook himself to his seat, rested his elbows on his desk and his jaws in his hands, and stared at the wall with the stony stare of suffering that has reached the limit and can no further go. His elbow was pressing against some hard substance. After a long time he slowly and sadly changed his position, and took up this object with a sigh. It was in a paper. He unrolled it. A long, lingering, colossal sigh followed, and his heart broke. It was his brass andiron knob! This final feather broke the camel's back. CHAPTER XI CLOSE upon the hour of noon the whole village was suddenly electrified with the ghastly news. No need of the as yet undreamed-of telegraph; the tale flew from man to man, from group to group, from house to house, with little less than telegraphic speed. Of course the schoolmaster gave holiday for that afternoon; the town would have thought strangely of him if he had not. A gory knife had been found close to the murdered man, and it had been recognized by somebody as belonging to Muff Potter--so the story ran. And it was said that a belated citizen had come upon Potter washing himself in the "branch" about one or two o'clock in the morning, and that Potter had at once sneaked off--suspicious circumstances, especially the washing which was not a habit with Potter. It was also said that the town had been ransacked for this "murderer" (the public are not slow in the matter of sifting evidence and arriving at a verdict), but that he could not be found. Horsemen had departed down all the roads in every direction, and the Sheriff "was confident" that he would be captured before night. All the town was drifting toward the graveyard. Tom's heartbreak vanished and he joined the procession, not because he would not a thousand times rather go anywhere else, but because an awful, unaccountable fascination drew him on. Arrived at the dreadful place, he wormed his small body through the crowd and saw the dismal spectacle. It seemed to him an age since he was there before. Somebody pinched his arm. He turned, and his eyes met Huckleberry's. Then both looked elsewhere at once, and wondered if anybody had noticed anything in their mutual glance. But everybody was talking, and intent upon the grisly spectacle before them. "Poor fellow!" "Poor young fellow!" "This ought to be a lesson to grave robbers!" "Muff Potter'll hang for this if they catch him!" This was the drift of remark; and the minister said, "It was a judgment; His hand is here." Now Tom shivered from head to heel; for his eye fell upon the stolid face of Injun Joe. At this moment the crowd began to sway and struggle, and voices shouted, "It's him! it's him! he's coming himself!" "Who? Who?" from twenty voices. "Muff Potter!" "Hallo, he's stopped!--Look out, he's turning! Don't let him get away!" People in the branches of the trees over Tom's head said he wasn't trying to get away--he only looked doubtful and perplexed. "Infernal impudence!" said a bystander; "wanted to come and take a quiet look at his work, I reckon--didn't expect any company." The crowd fell apart, now, and the Sheriff came through, ostentatiously leading Potter by the arm. The poor fellow's face was haggard, and his eyes showed the fear that was upon him. When he stood before the murdered man, he shook as with a palsy, and he put his face in his hands and burst into tears. "I didn't do it, friends," he sobbed; "'pon my word and honor I never done it." "Who's accused you?" shouted a voice. This shot seemed to carry home. Potter lifted his face and looked around him with a pathetic hopelessness in his eyes. He saw Injun Joe, and exclaimed: "Oh, Injun Joe, you promised me you'd never--" "Is that your knife?" and it was thrust before him by the Sheriff. Potter would have fallen if they had not caught him and eased him to the ground. Then he said: "Something told me 't if I didn't come back and get--" He shuddered; then waved his nerveless hand with a vanquished gesture and said, "Tell 'em, Joe, tell 'em--it ain't any use any more." Then Huckleberry and Tom stood dumb and staring, and heard the stony-hearted liar reel off his serene statement, they expecting every moment that the clear sky would deliver God's lightnings upon his head, and wondering to see how long the stroke was delayed. And when he had finished and still stood alive and whole, their wavering impulse to break their oath and save the poor betrayed prisoner's life faded and vanished away, for plainly this miscreant had sold himself to Satan and it would be fatal to meddle with the property of such a power as that. "Why didn't you leave? What did you want to come here for?" somebody said. "I couldn't help it--I couldn't help it," Potter moaned. "I wanted to run away, but I couldn't seem to come anywhere but here." And he fell to sobbing again. Injun Joe repeated his statement, just as calmly, a few minutes afterward on the inquest, under oath; and the boys, seeing that the lightnings were still withheld, were confirmed in their belief that Joe had sold himself to the devil. He was now become, to them, the most balefully interesting object they had ever looked upon, and they could not take their fascinated eyes from his face. They inwardly resolved to watch him nights, when opportunity should offer, in the hope of getting a glimpse of his dread master. Injun Joe helped to raise the body of the murdered man and put it in a wagon for removal; and it was whispered through the shuddering crowd that the wound bled a little! The boys thought that this happy circumstance would turn suspicion in the right direction; but they were disappointed, for more than one villager remarked: "It was within three feet of Muff Potter when it done it." Tom's fearful secret and gnawing conscience disturbed his sleep for as much as a week after this; and at breakfast one morning Sid said: "Tom, you pitch around and talk in your sleep so much that you keep me awake half the time." Tom blanched and dropped his eyes. "It's a bad sign," said Aunt Polly, gravely. "What you got on your mind, Tom?" "Nothing. Nothing 't I know of." But the boy's hand shook so that he spilled his coffee. "And you do talk such stuff," Sid said. "Last night you said, 'It's blood, it's blood, that's what it is!' You said that over and over. And you said, 'Don't torment me so--I'll tell!' Tell WHAT? What is it you'll tell?" Everything was swimming before Tom. There is no telling what might have happened, now, but luckily the concern passed out of Aunt Polly's face and she came to Tom's relief without knowing it. She said: "Sho! It's that dreadful murder. I dream about it most every night myself. Sometimes I dream it's me that done it." Mary said she had been affected much the same way. Sid seemed satisfied. Tom got out of the presence as quick as he plausibly could, and after that he complained of toothache for a week, and tied up his jaws every night. He never knew that Sid lay nightly watching, and frequently slipped the bandage free and then leaned on his elbow listening a good while at a time, and afterward slipped the bandage back to its place again. Tom's distress of mind wore off gradually and the toothache grew irksome and was discarded. If Sid really managed to make anything out of Tom's disjointed mutterings, he kept it to himself. It seemed to Tom that his schoolmates never would get done holding inquests on dead cats, and thus keeping his trouble present to his mind. Sid noticed that Tom never was coroner at one of these inquiries, though it had been his habit to take the lead in all new enterprises; he noticed, too, that Tom never acted as a witness--and that was strange; and Sid did not overlook the fact that Tom even showed a marked aversion to these inquests, and always avoided them when he could. Sid marvelled, but said nothing. However, even inquests went out of vogue at last, and ceased to torture Tom's conscience. Every day or two, during this time of sorrow, Tom watched his opportunity and went to the little grated jail-window and smuggled such small comforts through to the "murderer" as he could get hold of. The jail was a trifling little brick den that stood in a marsh at the edge of the village, and no guards were afforded for it; indeed, it was seldom occupied. These offerings greatly helped to ease Tom's conscience. The villagers had a strong desire to tar-and-feather Injun Joe and ride him on a rail, for body-snatching, but so formidable was his character that nobody could be found who was willing to take the lead in the matter, so it was dropped. He had been careful to begin both of his inquest-statements with the fight, without confessing the grave-robbery that preceded it; therefore it was deemed wisest not to try the case in the courts at present. CHAPTER XII ONE of the reasons why Tom's mind had drifted away from its secret troubles was, that it had found a new and weighty matter to interest itself about. Becky Thatcher had stopped coming to school. Tom had struggled with his pride a few days, and tried to "whistle her down the wind," but failed. He began to find himself hanging around her father's house, nights, and feeling very miserable. She was ill. What if she should die! There was distraction in the thought. He no longer took an interest in war, nor even in piracy. The charm of life was gone; there was nothing but dreariness left. He put his hoop away, and his bat; there was no joy in them any more. His aunt was concerned. She began to try all manner of remedies on him. She was one of those people who are infatuated with patent medicines and all new-fangled methods of producing health or mending it. She was an inveterate experimenter in these things. When something fresh in this line came out she was in a fever, right away, to try it; not on herself, for she was never ailing, but on anybody else that came handy. She was a subscriber for all the "Health" periodicals and phrenological frauds; and the solemn ignorance they were inflated with was breath to her nostrils. All the "rot" they contained about ventilation, and how to go to bed, and how to get up, and what to eat, and what to drink, and how much exercise to take, and what frame of mind to keep one's self in, and what sort of clothing to wear, was all gospel to her, and she never observed that her health-journals of the current month customarily upset everything they had recommended the month before. She was as simple-hearted and honest as the day was long, and so she was an easy victim. She gathered together her quack periodicals and her quack medicines, and thus armed with death, went about on her pale horse, metaphorically speaking, with "hell following after." But she never suspected that she was not an angel of healing and the balm of Gilead in disguise, to the suffering neighbors. The water treatment was new, now, and Tom's low condition was a windfall to her. She had him out at daylight every morning, stood him up in the woodshed and drowned him with a deluge of cold water; then she scrubbed him down with a towel like a file, and so brought him to; then she rolled him up in a wet sheet and put him away under blankets till she sweated his soul clean and "the yellow stains of it came through his pores"--as Tom said. Yet notwithstanding all this, the boy grew more and more melancholy and pale and dejected. She added hot baths, sitz baths, shower baths, and plunges. The boy remained as dismal as a hearse. She began to assist the water with a slim oatmeal diet and blister-plasters. She calculated his capacity as she would a jug's, and filled him up every day with quack cure-alls. Tom had become indifferent to persecution by this time. This phase filled the old lady's heart with consternation. This indifference must be broken up at any cost. Now she heard of Pain-killer for the first time. She ordered a lot at once. She tasted it and was filled with gratitude. It was simply fire in a liquid form. She dropped the water treatment and everything else, and pinned her faith to Pain-killer. She gave Tom a teaspoonful and watched with the deepest anxiety for the result. Her troubles were instantly at rest, her soul at peace again; for the "indifference" was broken up. The boy could not have shown a wilder, heartier interest, if she had built a fire under him. Tom felt that it was time to wake up; this sort of life might be romantic enough, in his blighted condition, but it was getting to have too little sentiment and too much distracting variety about it. So he thought over various plans for relief, and finally hit pon that of professing to be fond of Pain-killer. He asked for it so often that he became a nuisance, and his aunt ended by telling him to help himself and quit bothering her. If it had been Sid, she would have had no misgivings to alloy her delight; but since it was Tom, she watched the bottle clandestinely. She found that the medicine did really diminish, but it did not occur to her that the boy was mending the health of a crack in the sitting-room floor with it. One day Tom was in the act of dosing the crack when his aunt's yellow cat came along, purring, eying the teaspoon avariciously, and begging for a taste. Tom said: "Don't ask for it unless you want it, Peter." But Peter signified that he did want it. "You better make sure." Peter was sure. "Now you've asked for it, and I'll give it to you, because there ain't anything mean about me; but if you find you don't like it, you mustn't blame anybody but your own self." Peter was agreeable. So Tom pried his mouth open and poured down the Pain-killer. Peter sprang a couple of yards in the air, and then delivered a war-whoop and set off round and round the room, banging against furniture, upsetting flower-pots, and making general havoc. Next he rose on his hind feet and pranced around, in a frenzy of enjoyment, with his head over his shoulder and his voice proclaiming his unappeasable happiness. Then he went tearing around the house again spreading chaos and destruction in his path. Aunt Polly entered in time to see him throw a few double summersets, deliver a final mighty hurrah, and sail through the open window, carrying the rest of the flower-pots with him. The old lady stood petrified with astonishment, peering over her glasses; Tom lay on the floor expiring with laughter. "Tom, what on earth ails that cat?" "I don't know, aunt," gasped the boy. "Why, I never see anything like it. What did make him act so?" "Deed I don't know, Aunt Polly; cats always act so when they're having a good time." "They do, do they?" There was something in the tone that made Tom apprehensive. "Yes'm. That is, I believe they do." "You DO?" "Yes'm." The old lady was bending down, Tom watching, with interest emphasized by anxiety. Too late he divined her "drift." The handle of the telltale teaspoon was visible under the bed-valance. Aunt Polly took it, held it up. Tom winced, and dropped his eyes. Aunt Polly raised him by the usual handle--his ear--and cracked his head soundly with her thimble. "Now, sir, what did you want to treat that poor dumb beast so, for?" "I done it out of pity for him--because he hadn't any aunt." "Hadn't any aunt!--you numskull. What has that got to do with it?" "Heaps. Because if he'd had one she'd a burnt him out herself! She'd a roasted his bowels out of him 'thout any more feeling than if he was a human!" Aunt Polly felt a sudden pang of remorse. This was putting the thing in a new light; what was cruelty to a cat MIGHT be cruelty to a boy, too. She began to soften; she felt sorry. Her eyes watered a little, and she put her hand on Tom's head and said gently: "I was meaning for the best, Tom. And, Tom, it DID do you good." Tom looked up in her face with just a perceptible twinkle peeping through his gravity. "I know you was meaning for the best, aunty, and so was I with Peter. It done HIM good, too. I never see him get around so since--" "Oh, go 'long with you, Tom, before you aggravate me again. And you try and see if you can't be a good boy, for once, and you needn't take any more medicine." Tom reached school ahead of time. It was noticed that this strange thing had been occurring every day latterly. And now, as usual of late, he hung about the gate of the schoolyard instead of playing with his comrades. He was sick, he said, and he looked it. He tried to seem to be looking everywhere but whither he really was looking--down the road. Presently Jeff Thatcher hove in sight, and Tom's face lighted; he gazed a moment, and then turned sorrowfully away. When Jeff arrived, Tom accosted him; and "led up" warily to opportunities for remark about Becky, but the giddy lad never could see the bait. Tom watched and watched, hoping whenever a frisking frock came in sight, and hating the owner of it as soon as he saw she was not the right one. At last frocks ceased to appear, and he dropped hopelessly into the dumps; he entered the empty schoolhouse and sat down to suffer. Then one more frock passed in at the gate, and Tom's heart gave a great bound. The next instant he was out, and "going on" like an Indian; yelling, laughing, chasing boys, jumping over the fence at risk of life and limb, throwing handsprings, standing on his head--doing all the heroic things he could conceive of, and keeping a furtive eye out, all the while, to see if Becky Thatcher was noticing. But she seemed to be unconscious of it all; she never looked. Could it be possible that she was not aware that he was there? He carried his exploits to her immediate vicinity; came war-whooping around, snatched a boy's cap, hurled it to the roof of the schoolhouse, broke through a group of boys, tumbling them in every direction, and fell sprawling, himself, under Becky's nose, almost upsetting her--and she turned, with her nose in the air, and he heard her say: "Mf! some people think they're mighty smart--always showing off!" Tom's cheeks burned. He gathered himself up and sneaked off, crushed and crestfallen. CHAPTER XIII TOM'S mind was made up now. He was gloomy and desperate. He was a forsaken, friendless boy, he said; nobody loved him; when they found out what they had driven him to, perhaps they would be sorry; he had tried to do right and get along, but they would not let him; since nothing would do them but to be rid of him, let it be so; and let them blame HIM for the consequences--why shouldn't they? What right had the friendless to complain? Yes, they had forced him to it at last: he would lead a life of crime. There was no choice. By this time he was far down Meadow Lane, and the bell for school to "take up" tinkled faintly upon his ear. He sobbed, now, to think he should never, never hear that old familiar sound any more--it was very hard, but it was forced on him; since he was driven out into the cold world, he must submit--but he forgave them. Then the sobs came thick and fast. Just at this point he met his soul's sworn comrade, Joe Harper --hard-eyed, and with evidently a great and dismal purpose in his heart. Plainly here were "two souls with but a single thought." Tom, wiping his eyes with his sleeve, began to blubber out something about a resolution to escape from hard usage and lack of sympathy at home by roaming abroad into the great world never to return; and ended by hoping that Joe would not forget him. But it transpired that this was a request which Joe had just been going to make of Tom, and had come to hunt him up for that purpose. His mother had whipped him for drinking some cream which he had never tasted and knew nothing about; it was plain that she was tired of him and wished him to go; if she felt that way, there was nothing for him to do but succumb; he hoped she would be happy, and never regret having driven her poor boy out into the unfeeling world to suffer and die. As the two boys walked sorrowing along, they made a new compact to stand by each other and be brothers and never separate till death relieved them of their troubles. Then they began to lay their plans. Joe was for being a hermit, and living on crusts in a remote cave, and dying, some time, of cold and want and grief; but after listening to Tom, he conceded that there were some conspicuous advantages about a life of crime, and so he consented to be a pirate. Three miles below St. Petersburg, at a point where the Mississippi River was a trifle over a mile wide, there was a long, narrow, wooded island, with a shallow bar at the head of it, and this offered well as a rendezvous. It was not inhabited; it lay far over toward the further shore, abreast a dense and almost wholly unpeopled forest. So Jackson's Island was chosen. Who were to be the subjects of their piracies was a matter that did not occur to them. Then they hunted up Huckleberry Finn, and he joined them promptly, for all careers were one to him; he was indifferent. They presently separated to meet at a lonely spot on the river-bank two miles above the village at the favorite hour--which was midnight. There was a small log raft there which they meant to capture. Each would bring hooks and lines, and such provision as he could steal in the most dark and mysterious way--as became outlaws. And before the afternoon was done, they had all managed to enjoy the sweet glory of spreading the fact that pretty soon the town would "hear something." All who got this vague hint were cautioned to "be mum and wait." About midnight Tom arrived with a boiled ham and a few trifles, and stopped in a dense undergrowth on a small bluff overlooking the meeting-place. It was starlight, and very still. The mighty river lay like an ocean at rest. Tom listened a moment, but no sound disturbed the quiet. Then he gave a low, distinct whistle. It was answered from under the bluff. Tom whistled twice more; these signals were answered in the same way. Then a guarded voice said: "Who goes there?" "Tom Sawyer, the Black Avenger of the Spanish Main. Name your names." "Huck Finn the Red-Handed, and Joe Harper the Terror of the Seas." Tom had furnished these titles, from his favorite literature. "'Tis well. Give the countersign." Two hoarse whispers delivered the same awful word simultaneously to the brooding night: "BLOOD!" Then Tom tumbled his ham over the bluff and let himself down after it, tearing both skin and clothes to some extent in the effort. There was an easy, comfortable path along the shore under the bluff, but it lacked the advantages of difficulty and danger so valued by a pirate. The Terror of the Seas had brought a side of bacon, and had about worn himself out with getting it there. Finn the Red-Handed had stolen a skillet and a quantity of half-cured leaf tobacco, and had also brought a few corn-cobs to make pipes with. But none of the pirates smoked or "chewed" but himself. The Black Avenger of the Spanish Main said it would never do to start without some fire. That was a wise thought; matches were hardly known there in that day. They saw a fire smouldering upon a great raft a hundred yards above, and they went stealthily thither and helped themselves to a chunk. They made an imposing adventure of it, saying, "Hist!" every now and then, and suddenly halting with finger on lip; moving with hands on imaginary dagger-hilts; and giving orders in dismal whispers that if "the foe" stirred, to "let him have it to the hilt," because "dead men tell no tales." They knew well enough that the raftsmen were all down at the village laying in stores or having a spree, but still that was no excuse for their conducting this thing in an unpiratical way. They shoved off, presently, Tom in command, Huck at the after oar and Joe at the forward. Tom stood amidships, gloomy-browed, and with folded arms, and gave his orders in a low, stern whisper: "Luff, and bring her to the wind!" "Aye-aye, sir!" "Steady, steady-y-y-y!" "Steady it is, sir!" "Let her go off a point!" "Point it is, sir!" As the boys steadily and monotonously drove the raft toward mid-stream it was no doubt understood that these orders were given only for "style," and were not intended to mean anything in particular. "What sail's she carrying?" "Courses, tops'ls, and flying-jib, sir." "Send the r'yals up! Lay out aloft, there, half a dozen of ye --foretopmaststuns'l! Lively, now!" "Aye-aye, sir!" "Shake out that maintogalans'l! Sheets and braces! NOW my hearties!" "Aye-aye, sir!" "Hellum-a-lee--hard a port! Stand by to meet her when she comes! Port, port! NOW, men! With a will! Stead-y-y-y!" "Steady it is, sir!" The raft drew beyond the middle of the river; the boys pointed her head right, and then lay on their oars. The river was not high, so there was not more than a two or three mile current. Hardly a word was said during the next three-quarters of an hour. Now the raft was passing before the distant town. Two or three glimmering lights showed where it lay, peacefully sleeping, beyond the vague vast sweep of star-gemmed water, unconscious of the tremendous event that was happening. The Black Avenger stood still with folded arms, "looking his last" upon the scene of his former joys and his later sufferings, and wishing "she" could see him now, abroad on the wild sea, facing peril and death with dauntless heart, going to his doom with a grim smile on his lips. It was but a small strain on his imagination to remove Jackson's Island beyond eyeshot of the village, and so he "looked his last" with a broken and satisfied heart. The other pirates were looking their last, too; and they all looked so long that they came near letting the current drift them out of the range of the island. But they discovered the danger in time, and made shift to avert it. About two o'clock in the morning the raft grounded on the bar two hundred yards above the head of the island, and they waded back and forth until they had landed their freight. Part of the little raft's belongings consisted of an old sail, and this they spread over a nook in the bushes for a tent to shelter their provisions; but they themselves would sleep in the open air in good weather, as became outlaws. They built a fire against the side of a great log twenty or thirty steps within the sombre depths of the forest, and then cooked some bacon in the frying-pan for supper, and used up half of the corn "pone" stock they had brought. It seemed glorious sport to be feasting in that wild, free way in the virgin forest of an unexplored and uninhabited island, far from the haunts of men, and they said they never would return to civilization. The climbing fire lit up their faces and threw its ruddy glare upon the pillared tree-trunks of their forest temple, and upon the varnished foliage and festooning vines. When the last crisp slice of bacon was gone, and the last allowance of corn pone devoured, the boys stretched themselves out on the grass, filled with contentment. They could have found a cooler place, but they would not deny themselves such a romantic feature as the roasting camp-fire. "AIN'T it gay?" said Joe. "It's NUTS!" said Tom. "What would the boys say if they could see us?" "Say? Well, they'd just die to be here--hey, Hucky!" "I reckon so," said Huckleberry; "anyways, I'm suited. I don't want nothing better'n this. I don't ever get enough to eat, gen'ally--and here they can't come and pick at a feller and bullyrag him so." "It's just the life for me," said Tom. "You don't have to get up, mornings, and you don't have to go to school, and wash, and all that blame foolishness. You see a pirate don't have to do ANYTHING, Joe, when he's ashore, but a hermit HE has to be praying considerable, and then he don't have any fun, anyway, all by himself that way." "Oh yes, that's so," said Joe, "but I hadn't thought much about it, you know. I'd a good deal rather be a pirate, now that I've tried it." "You see," said Tom, "people don't go much on hermits, nowadays, like they used to in old times, but a pirate's always respected. And a hermit's got to sleep on the hardest place he can find, and put sackcloth and ashes on his head, and stand out in the rain, and--" "What does he put sackcloth and ashes on his head for?" inquired Huck. "I dono. But they've GOT to do it. Hermits always do. You'd have to do that if you was a hermit." "Dern'd if I would," said Huck. "Well, what would you do?" "I dono. But I wouldn't do that." "Why, Huck, you'd HAVE to. How'd you get around it?" "Why, I just wouldn't stand it. I'd run away." "Run away! Well, you WOULD be a nice old slouch of a hermit. You'd be a disgrace." The Red-Handed made no response, being better employed. He had finished gouging out a cob, and now he fitted a weed stem to it, loaded it with tobacco, and was pressing a coal to the charge and blowing a cloud of fragrant smoke--he was in the full bloom of luxurious contentment. The other pirates envied him this majestic vice, and secretly resolved to acquire it shortly. Presently Huck said: "What does pirates have to do?" Tom said: "Oh, they have just a bully time--take ships and burn them, and get the money and bury it in awful places in their island where there's ghosts and things to watch it, and kill everybody in the ships--make 'em walk a plank." "And they carry the women to the island," said Joe; "they don't kill the women." "No," assented Tom, "they don't kill the women--they're too noble. And the women's always beautiful, too. "And don't they wear the bulliest clothes! Oh no! All gold and silver and di'monds," said Joe, with enthusiasm. "Who?" said Huck. "Why, the pirates." Huck scanned his own clothing forlornly. "I reckon I ain't dressed fitten for a pirate," said he, with a regretful pathos in his voice; "but I ain't got none but these." But the other boys told him the fine clothes would come fast enough, after they should have begun their adventures. They made him understand that his poor rags would do to begin with, though it was customary for wealthy pirates to start with a proper wardrobe. Gradually their talk died out and drowsiness began to steal upon the eyelids of the little waifs. The pipe dropped from the fingers of the Red-Handed, and he slept the sleep of the conscience-free and the weary. The Terror of the Seas and the Black Avenger of the Spanish Main had more difficulty in getting to sleep. They said their prayers inwardly, and lying down, since there was nobody there with authority to make them kneel and recite aloud; in truth, they had a mind not to say them at all, but they were afraid to proceed to such lengths as that, lest they might call down a sudden and special thunderbolt from heaven. Then at once they reached and hovered upon the imminent verge of sleep--but an intruder came, now, that would not "down." It was conscience. They began to feel a vague fear that they had been doing wrong to run away; and next they thought of the stolen meat, and then the real torture came. They tried to argue it away by reminding conscience that they had purloined sweetmeats and apples scores of times; but conscience was not to be appeased by such thin plausibilities; it seemed to them, in the end, that there was no getting around the stubborn fact that taking sweetmeats was only "hooking," while taking bacon and hams and such valuables was plain simple stealing--and there was a command against that in the Bible. So they inwardly resolved that so long as they remained in the business, their piracies should not again be sullied with the crime of stealing. Then conscience granted a truce, and these curiously inconsistent pirates fell peacefully to sleep. CHAPTER XIV WHEN Tom awoke in the morning, he wondered where he was. He sat up and rubbed his eyes and looked around. Then he comprehended. It was the cool gray dawn, and there was a delicious sense of repose and peace in the deep pervading calm and silence of the woods. Not a leaf stirred; not a sound obtruded upon great Nature's meditation. Beaded dewdrops stood upon the leaves and grasses. A white layer of ashes covered the fire, and a thin blue breath of smoke rose straight into the air. Joe and Huck still slept. Now, far away in the woods a bird called; another answered; presently the hammering of a woodpecker was heard. Gradually the cool dim gray of the morning whitened, and as gradually sounds multiplied and life manifested itself. The marvel of Nature shaking off sleep and going to work unfolded itself to the musing boy. A little green worm came crawling over a dewy leaf, lifting two-thirds of his body into the air from time to time and "sniffing around," then proceeding again--for he was measuring, Tom said; and when the worm approached him, of its own accord, he sat as still as a stone, with his hopes rising and falling, by turns, as the creature still came toward him or seemed inclined to go elsewhere; and when at last it considered a painful moment with its curved body in the air and then came decisively down upon Tom's leg and began a journey over him, his whole heart was glad--for that meant that he was going to have a new suit of clothes--without the shadow of a doubt a gaudy piratical uniform. Now a procession of ants appeared, from nowhere in particular, and went about their labors; one struggled manfully by with a dead spider five times as big as itself in its arms, and lugged it straight up a tree-trunk. A brown spotted lady-bug climbed the dizzy height of a grass blade, and Tom bent down close to it and said, "Lady-bug, lady-bug, fly away home, your house is on fire, your children's alone," and she took wing and went off to see about it --which did not surprise the boy, for he knew of old that this insect was credulous about conflagrations, and he had practised upon its simplicity more than once. A tumblebug came next, heaving sturdily at its ball, and Tom touched the creature, to see it shut its legs against its body and pretend to be dead. The birds were fairly rioting by this time. A catbird, the Northern mocker, lit in a tree over Tom's head, and trilled out her imitations of her neighbors in a rapture of enjoyment; then a shrill jay swept down, a flash of blue flame, and stopped on a twig almost within the boy's reach, cocked his head to one side and eyed the strangers with a consuming curiosity; a gray squirrel and a big fellow of the "fox" kind came skurrying along, sitting up at intervals to inspect and chatter at the boys, for the wild things had probably never seen a human being before and scarcely knew whether to be afraid or not. All Nature was wide awake and stirring, now; long lances of sunlight pierced down through the dense foliage far and near, and a few butterflies came fluttering upon the scene. Tom stirred up the other pirates and they all clattered away with a shout, and in a minute or two were stripped and chasing after and tumbling over each other in the shallow limpid water of the white sandbar. They felt no longing for the little village sleeping in the distance beyond the majestic waste of water. A vagrant current or a slight rise in the river had carried off their raft, but this only gratified them, since its going was something like burning the bridge between them and civilization. They came back to camp wonderfully refreshed, glad-hearted, and ravenous; and they soon had the camp-fire blazing up again. Huck found a spring of clear cold water close by, and the boys made cups of broad oak or hickory leaves, and felt that water, sweetened with such a wildwood charm as that, would be a good enough substitute for coffee. While Joe was slicing bacon for breakfast, Tom and Huck asked him to hold on a minute; they stepped to a promising nook in the river-bank and threw in their lines; almost immediately they had reward. Joe had not had time to get impatient before they were back again with some handsome bass, a couple of sun-perch and a small catfish--provisions enough for quite a family. They fried the fish with the bacon, and were astonished; for no fish had ever seemed so delicious before. They did not know that the quicker a fresh-water fish is on the fire after he is caught the better he is; and they reflected little upon what a sauce open-air sleeping, open-air exercise, bathing, and a large ingredient of hunger make, too. They lay around in the shade, after breakfast, while Huck had a smoke, and then went off through the woods on an exploring expedition. They tramped gayly along, over decaying logs, through tangled underbrush, among solemn monarchs of the forest, hung from their crowns to the ground with a drooping regalia of grape-vines. Now and then they came upon snug nooks carpeted with grass and jeweled with flowers. They found plenty of things to be delighted with, but nothing to be astonished at. They discovered that the island was about three miles long and a quarter of a mile wide, and that the shore it lay closest to was only separated from it by a narrow channel hardly two hundred yards wide. They took a swim about every hour, so it was close upon the middle of the afternoon when they got back to camp. They were too hungry to stop to fish, but they fared sumptuously upon cold ham, and then threw themselves down in the shade to talk. But the talk soon began to drag, and then died. The stillness, the solemnity that brooded in the woods, and the sense of loneliness, began to tell upon the spirits of the boys. They fell to thinking. A sort of undefined longing crept upon them. This took dim shape, presently--it was budding homesickness. Even Finn the Red-Handed was dreaming of his doorsteps and empty hogsheads. But they were all ashamed of their weakness, and none was brave enough to speak his thought. For some time, now, the boys had been dully conscious of a peculiar sound in the distance, just as one sometimes is of the ticking of a clock which he takes no distinct note of. But now this mysterious sound became more pronounced, and forced a recognition. The boys started, glanced at each other, and then each assumed a listening attitude. There was a long silence, profound and unbroken; then a deep, sullen boom came floating down out of the distance. "What is it!" exclaimed Joe, under his breath. "I wonder," said Tom in a whisper. "'Tain't thunder," said Huckleberry, in an awed tone, "becuz thunder--" "Hark!" said Tom. "Listen--don't talk." They waited a time that seemed an age, and then the same muffled boom troubled the solemn hush. "Let's go and see." They sprang to their feet and hurried to the shore toward the town. They parted the bushes on the bank and peered out over the water. The little steam ferryboat was about a mile below the village, drifting with the current. Her broad deck seemed crowded with people. There were a great many skiffs rowing about or floating with the stream in the neighborhood of the ferryboat, but the boys could not determine what the men in them were doing. Presently a great jet of white smoke burst from the ferryboat's side, and as it expanded and rose in a lazy cloud, that same dull throb of sound was borne to the listeners again. "I know now!" exclaimed Tom; "somebody's drownded!" "That's it!" said Huck; "they done that last summer, when Bill Turner got drownded; they shoot a cannon over the water, and that makes him come up to the top. Yes, and they take loaves of bread and put quicksilver in 'em and set 'em afloat, and wherever there's anybody that's drownded, they'll float right there and stop." "Yes, I've heard about that," said Joe. "I wonder what makes the bread do that." "Oh, it ain't the bread, so much," said Tom; "I reckon it's mostly what they SAY over it before they start it out." "But they don't say anything over it," said Huck. "I've seen 'em and they don't." "Well, that's funny," said Tom. "But maybe they say it to themselves. Of COURSE they do. Anybody might know that." The other boys agreed that there was reason in what Tom said, because an ignorant lump of bread, uninstructed by an incantation, could not be expected to act very intelligently when set upon an errand of such gravity. "By jings, I wish I was over there, now," said Joe. "I do too" said Huck "I'd give heaps to know who it is." The boys still listened and watched. Presently a revealing thought flashed through Tom's mind, and he exclaimed: "Boys, I know who's drownded--it's us!" They felt like heroes in an instant. Here was a gorgeous triumph; they were missed; they were mourned; hearts were breaking on their account; tears were being shed; accusing memories of unkindness to these poor lost lads were rising up, and unavailing regrets and remorse were being indulged; and best of all, the departed were the talk of the whole town, and the envy of all the boys, as far as this dazzling notoriety was concerned. This was fine. It was worth while to be a pirate, after all. As twilight drew on, the ferryboat went back to her accustomed business and the skiffs disappeared. The pirates returned to camp. They were jubilant with vanity over their new grandeur and the illustrious trouble they were making. They caught fish, cooked supper and ate it, and then fell to guessing at what the village was thinking and saying about them; and the pictures they drew of the public distress on their account were gratifying to look upon--from their point of view. But when the shadows of night closed them in, they gradually ceased to talk, and sat gazing into the fire, with their minds evidently wandering elsewhere. The excitement was gone, now, and Tom and Joe could not keep back thoughts of certain persons at home who were not enjoying this fine frolic as much as they were. Misgivings came; they grew troubled and unhappy; a sigh or two escaped, unawares. By and by Joe timidly ventured upon a roundabout "feeler" as to how the others might look upon a return to civilization--not right now, but-- Tom withered him with derision! Huck, being uncommitted as yet, joined in with Tom, and the waverer quickly "explained," and was glad to get out of the scrape with as little taint of chicken-hearted homesickness clinging to his garments as he could. Mutiny was effectually laid to rest for the moment. As the night deepened, Huck began to nod, and presently to snore. Joe followed next. Tom lay upon his elbow motionless, for some time, watching the two intently. At last he got up cautiously, on his knees, and went searching among the grass and the flickering reflections flung by the camp-fire. He picked up and inspected several large semi-cylinders of the thin white bark of a sycamore, and finally chose two which seemed to suit him. Then he knelt by the fire and painfully wrote something upon each of these with his "red keel"; one he rolled up and put in his jacket pocket, and the other he put in Joe's hat and removed it to a little distance from the owner. And he also put into the hat certain schoolboy treasures of almost inestimable value--among them a lump of chalk, an India-rubber ball, three fishhooks, and one of that kind of marbles known as a "sure 'nough crystal." Then he tiptoed his way cautiously among the trees till he felt that he was out of hearing, and straightway broke into a keen run in the direction of the sandbar. CHAPTER XV A FEW minutes later Tom was in the shoal water of the bar, wading toward the Illinois shore. Before the depth reached his middle he was half-way over; the current would permit no more wading, now, so he struck out confidently to swim the remaining hundred yards. He swam quartering upstream, but still was swept downward rather faster than he had expected. However, he reached the shore finally, and drifted along till he found a low place and drew himself out. He put his hand on his jacket pocket, found his piece of bark safe, and then struck through the woods, following the shore, with streaming garments. Shortly before ten o'clock he came out into an open place opposite the village, and saw the ferryboat lying in the shadow of the trees and the high bank. Everything was quiet under the blinking stars. He crept down the bank, watching with all his eyes, slipped into the water, swam three or four strokes and climbed into the skiff that did "yawl" duty at the boat's stern. He laid himself down under the thwarts and waited, panting. Presently the cracked bell tapped and a voice gave the order to "cast off." A minute or two later the skiff's head was standing high up, against the boat's swell, and the voyage was begun. Tom felt happy in his success, for he knew it was the boat's last trip for the night. At the end of a long twelve or fifteen minutes the wheels stopped, and Tom slipped overboard and swam ashore in the dusk, landing fifty yards downstream, out of danger of possible stragglers. He flew along unfrequented alleys, and shortly found himself at his aunt's back fence. He climbed over, approached the "ell," and looked in at the sitting-room window, for a light was burning there. There sat Aunt Polly, Sid, Mary, and Joe Harper's mother, grouped together, talking. They were by the bed, and the bed was between them and the door. Tom went to the door and began to softly lift the latch; then he pressed gently and the door yielded a crack; he continued pushing cautiously, and quaking every time it creaked, till he judged he might squeeze through on his knees; so he put his head through and began, warily. "What makes the candle blow so?" said Aunt Polly. Tom hurried up. "Why, that door's open, I believe. Why, of course it is. No end of strange things now. Go 'long and shut it, Sid." Tom disappeared under the bed just in time. He lay and "breathed" himself for a time, and then crept to where he could almost touch his aunt's foot. "But as I was saying," said Aunt Polly, "he warn't BAD, so to say --only mischEEvous. Only just giddy, and harum-scarum, you know. He warn't any more responsible than a colt. HE never meant any harm, and he was the best-hearted boy that ever was"--and she began to cry. "It was just so with my Joe--always full of his devilment, and up to every kind of mischief, but he was just as unselfish and kind as he could be--and laws bless me, to think I went and whipped him for taking that cream, never once recollecting that I throwed it out myself because it was sour, and I never to see him again in this world, never, never, never, poor abused boy!" And Mrs. Harper sobbed as if her heart would break. "I hope Tom's better off where he is," said Sid, "but if he'd been better in some ways--" "SID!" Tom felt the glare of the old lady's eye, though he could not see it. "Not a word against my Tom, now that he's gone! God'll take care of HIM--never you trouble YOURself, sir! Oh, Mrs. Harper, I don't know how to give him up! I don't know how to give him up! He was such a comfort to me, although he tormented my old heart out of me, 'most." "The Lord giveth and the Lord hath taken away--Blessed be the name of the Lord! But it's so hard--Oh, it's so hard! Only last Saturday my Joe busted a firecracker right under my nose and I knocked him sprawling. Little did I know then, how soon--Oh, if it was to do over again I'd hug him and bless him for it." "Yes, yes, yes, I know just how you feel, Mrs. Harper, I know just exactly how you feel. No longer ago than yesterday noon, my Tom took and filled the cat full of Pain-killer, and I did think the cretur would tear the house down. And God forgive me, I cracked Tom's head with my thimble, poor boy, poor dead boy. But he's out of all his troubles now. And the last words I ever heard him say was to reproach--" But this memory was too much for the old lady, and she broke entirely down. Tom was snuffling, now, himself--and more in pity of himself than anybody else. He could hear Mary crying, and putting in a kindly word for him from time to time. He began to have a nobler opinion of himself than ever before. Still, he was sufficiently touched by his aunt's grief to long to rush out from under the bed and overwhelm her with joy--and the theatrical gorgeousness of the thing appealed strongly to his nature, too, but he resisted and lay still. He went on listening, and gathered by odds and ends that it was conjectured at first that the boys had got drowned while taking a swim; then the small raft had been missed; next, certain boys said the missing lads had promised that the village should "hear something" soon; the wise-heads had "put this and that together" and decided that the lads had gone off on that raft and would turn up at the next town below, presently; but toward noon the raft had been found, lodged against the Missouri shore some five or six miles below the village --and then hope perished; they must be drowned, else hunger would have driven them home by nightfall if not sooner. It was believed that the search for the bodies had been a fruitless effort merely because the drowning must have occurred in mid-channel, since the boys, being good swimmers, would otherwise have escaped to shore. This was Wednesday night. If the bodies continued missing until Sunday, all hope would be given over, and the funerals would be preached on that morning. Tom shuddered. Mrs. Harper gave a sobbing good-night and turned to go. Then with a mutual impulse the two bereaved women flung themselves into each other's arms and had a good, consoling cry, and then parted. Aunt Polly was tender far beyond her wont, in her good-night to Sid and Mary. Sid snuffled a bit and Mary went off crying with all her heart. Aunt Polly knelt down and prayed for Tom so touchingly, so appealingly, and with such measureless love in her words and her old trembling voice, that he was weltering in tears again, long before she was through. He had to keep still long after she went to bed, for she kept making broken-hearted ejaculations from time to time, tossing unrestfully, and turning over. But at last she was still, only moaning a little in her sleep. Now the boy stole out, rose gradually by the bedside, shaded the candle-light with his hand, and stood regarding her. His heart was full of pity for her. He took out his sycamore scroll and placed it by the candle. But something occurred to him, and he lingered considering. His face lighted with a happy solution of his thought; he put the bark hastily in his pocket. Then he bent over and kissed the faded lips, and straightway made his stealthy exit, latching the door behind him. He threaded his way back to the ferry landing, found nobody at large there, and walked boldly on board the boat, for he knew she was tenantless except that there was a watchman, who always turned in and slept like a graven image. He untied the skiff at the stern, slipped into it, and was soon rowing cautiously upstream. When he had pulled a mile above the village, he started quartering across and bent himself stoutly to his work. He hit the landing on the other side neatly, for this was a familiar bit of work to him. He was moved to capture the skiff, arguing that it might be considered a ship and therefore legitimate prey for a pirate, but he knew a thorough search would be made for it and that might end in revelations. So he stepped ashore and entered the woods. He sat down and took a long rest, torturing himself meanwhile to keep awake, and then started warily down the home-stretch. The night was far spent. It was broad daylight before he found himself fairly abreast the island bar. He rested again until the sun was well up and gilding the great river with its splendor, and then he plunged into the stream. A little later he paused, dripping, upon the threshold of the camp, and heard Joe say: "No, Tom's true-blue, Huck, and he'll come back. He won't desert. He knows that would be a disgrace to a pirate, and Tom's too proud for that sort of thing. He's up to something or other. Now I wonder what?" "Well, the things is ours, anyway, ain't they?" "Pretty near, but not yet, Huck. The writing says they are if he ain't back here to breakfast." "Which he is!" exclaimed Tom, with fine dramatic effect, stepping grandly into camp. A sumptuous breakfast of bacon and fish was shortly provided, and as the boys set to work upon it, Tom recounted (and adorned) his adventures. They were a vain and boastful company of heroes when the tale was done. Then Tom hid himself away in a shady nook to sleep till noon, and the other pirates got ready to fish and explore. CHAPTER XVI AFTER dinner all the gang turned out to hunt for turtle eggs on the bar. They went about poking sticks into the sand, and when they found a soft place they went down on their knees and dug with their hands. Sometimes they would take fifty or sixty eggs out of one hole. They were perfectly round white things a trifle smaller than an English walnut. They had a famous fried-egg feast that night, and another on Friday morning. After breakfast they went whooping and prancing out on the bar, and chased each other round and round, shedding clothes as they went, until they were naked, and then continued the frolic far away up the shoal water of the bar, against the stiff current, which latter tripped their legs from under them from time to time and greatly increased the fun. And now and then they stooped in a group and splashed water in each other's faces with their palms, gradually approaching each other, with averted faces to avoid the strangling sprays, and finally gripping and struggling till the best man ducked his neighbor, and then they all went under in a tangle of white legs and arms and came up blowing, sputtering, laughing, and gasping for breath at one and the same time. When they were well exhausted, they would run out and sprawl on the dry, hot sand, and lie there and cover themselves up with it, and by and by break for the water again and go through the original performance once more. Finally it occurred to them that their naked skin represented flesh-colored "tights" very fairly; so they drew a ring in the sand and had a circus--with three clowns in it, for none would yield this proudest post to his neighbor. Next they got their marbles and played "knucks" and "ring-taw" and "keeps" till that amusement grew stale. Then Joe and Huck had another swim, but Tom would not venture, because he found that in kicking off his trousers he had kicked his string of rattlesnake rattles off his ankle, and he wondered how he had escaped cramp so long without the protection of this mysterious charm. He did not venture again until he had found it, and by that time the other boys were tired and ready to rest. They gradually wandered apart, dropped into the "dumps," and fell to gazing longingly across the wide river to where the village lay drowsing in the sun. Tom found himself writing "BECKY" in the sand with his big toe; he scratched it out, and was angry with himself for his weakness. But he wrote it again, nevertheless; he could not help it. He erased it once more and then took himself out of temptation by driving the other boys together and joining them. But Joe's spirits had gone down almost beyond resurrection. He was so homesick that he could hardly endure the misery of it. The tears lay very near the surface. Huck was melancholy, too. Tom was downhearted, but tried hard not to show it. He had a secret which he was not ready to tell, yet, but if this mutinous depression was not broken up soon, he would have to bring it out. He said, with a great show of cheerfulness: "I bet there's been pirates on this island before, boys. We'll explore it again. They've hid treasures here somewhere. How'd you feel to light on a rotten chest full of gold and silver--hey?" But it roused only faint enthusiasm, which faded out, with no reply. Tom tried one or two other seductions; but they failed, too. It was discouraging work. Joe sat poking up the sand with a stick and looking very gloomy. Finally he said: "Oh, boys, let's give it up. I want to go home. It's so lonesome." "Oh no, Joe, you'll feel better by and by," said Tom. "Just think of the fishing that's here." "I don't care for fishing. I want to go home." "But, Joe, there ain't such another swimming-place anywhere." "Swimming's no good. I don't seem to care for it, somehow, when there ain't anybody to say I sha'n't go in. I mean to go home." "Oh, shucks! Baby! You want to see your mother, I reckon." "Yes, I DO want to see my mother--and you would, too, if you had one. I ain't any more baby than you are." And Joe snuffled a little. "Well, we'll let the cry-baby go home to his mother, won't we, Huck? Poor thing--does it want to see its mother? And so it shall. You like it here, don't you, Huck? We'll stay, won't we?" Huck said, "Y-e-s"--without any heart in it. "I'll never speak to you again as long as I live," said Joe, rising. "There now!" And he moved moodily away and began to dress himself. "Who cares!" said Tom. "Nobody wants you to. Go 'long home and get laughed at. Oh, you're a nice pirate. Huck and me ain't cry-babies. We'll stay, won't we, Huck? Let him go if he wants to. I reckon we can get along without him, per'aps." But Tom was uneasy, nevertheless, and was alarmed to see Joe go sullenly on with his dressing. And then it was discomforting to see Huck eying Joe's preparations so wistfully, and keeping up such an ominous silence. Presently, without a parting word, Joe began to wade off toward the Illinois shore. Tom's heart began to sink. He glanced at Huck. Huck could not bear the look, and dropped his eyes. Then he said: "I want to go, too, Tom. It was getting so lonesome anyway, and now it'll be worse. Let's us go, too, Tom." "I won't! You can all go, if you want to. I mean to stay." "Tom, I better go." "Well, go 'long--who's hendering you." Huck began to pick up his scattered clothes. He said: "Tom, I wisht you'd come, too. Now you think it over. We'll wait for you when we get to shore." "Well, you'll wait a blame long time, that's all." Huck started sorrowfully away, and Tom stood looking after him, with a strong desire tugging at his heart to yield his pride and go along too. He hoped the boys would stop, but they still waded slowly on. It suddenly dawned on Tom that it was become very lonely and still. He made one final struggle with his pride, and then darted after his comrades, yelling: "Wait! Wait! I want to tell you something!" They presently stopped and turned around. When he got to where they were, he began unfolding his secret, and they listened moodily till at last they saw the "point" he was driving at, and then they set up a war-whoop of applause and said it was "splendid!" and said if he had told them at first, they wouldn't have started away. He made a plausible excuse; but his real reason had been the fear that not even the secret would keep them with him any very great length of time, and so he had meant to hold it in reserve as a last seduction. The lads came gayly back and went at their sports again with a will, chattering all the time about Tom's stupendous plan and admiring the genius of it. After a dainty egg and fish dinner, Tom said he wanted to learn to smoke, now. Joe caught at the idea and said he would like to try, too. So Huck made pipes and filled them. These novices had never smoked anything before but cigars made of grape-vine, and they "bit" the tongue, and were not considered manly anyway. Now they stretched themselves out on their elbows and began to puff, charily, and with slender confidence. The smoke had an unpleasant taste, and they gagged a little, but Tom said: "Why, it's just as easy! If I'd a knowed this was all, I'd a learnt long ago." "So would I," said Joe. "It's just nothing." "Why, many a time I've looked at people smoking, and thought well I wish I could do that; but I never thought I could," said Tom. "That's just the way with me, hain't it, Huck? You've heard me talk just that way--haven't you, Huck? I'll leave it to Huck if I haven't." "Yes--heaps of times," said Huck. "Well, I have too," said Tom; "oh, hundreds of times. Once down by the slaughter-house. Don't you remember, Huck? Bob Tanner was there, and Johnny Miller, and Jeff Thatcher, when I said it. Don't you remember, Huck, 'bout me saying that?" "Yes, that's so," said Huck. "That was the day after I lost a white alley. No, 'twas the day before." "There--I told you so," said Tom. "Huck recollects it." "I bleeve I could smoke this pipe all day," said Joe. "I don't feel sick." "Neither do I," said Tom. "I could smoke it all day. But I bet you Jeff Thatcher couldn't." "Jeff Thatcher! Why, he'd keel over just with two draws. Just let him try it once. HE'D see!" "I bet he would. And Johnny Miller--I wish could see Johnny Miller tackle it once." "Oh, don't I!" said Joe. "Why, I bet you Johnny Miller couldn't any more do this than nothing. Just one little snifter would fetch HIM." "'Deed it would, Joe. Say--I wish the boys could see us now." "So do I." "Say--boys, don't say anything about it, and some time when they're around, I'll come up to you and say, 'Joe, got a pipe? I want a smoke.' And you'll say, kind of careless like, as if it warn't anything, you'll say, 'Yes, I got my OLD pipe, and another one, but my tobacker ain't very good.' And I'll say, 'Oh, that's all right, if it's STRONG enough.' And then you'll out with the pipes, and we'll light up just as ca'm, and then just see 'em look!" "By jings, that'll be gay, Tom! I wish it was NOW!" "So do I! And when we tell 'em we learned when we was off pirating, won't they wish they'd been along?" "Oh, I reckon not! I'll just BET they will!" So the talk ran on. But presently it began to flag a trifle, and grow disjointed. The silences widened; the expectoration marvellously increased. Every pore inside the boys' cheeks became a spouting fountain; they could scarcely bail out the cellars under their tongues fast enough to prevent an inundation; little overflowings down their throats occurred in spite of all they could do, and sudden retchings followed every time. Both boys were looking very pale and miserable, now. Joe's pipe dropped from his nerveless fingers. Tom's followed. Both fountains were going furiously and both pumps bailing with might and main. Joe said feebly: "I've lost my knife. I reckon I better go and find it." Tom said, with quivering lips and halting utterance: "I'll help you. You go over that way and I'll hunt around by the spring. No, you needn't come, Huck--we can find it." So Huck sat down again, and waited an hour. Then he found it lonesome, and went to find his comrades. They were wide apart in the woods, both very pale, both fast asleep. But something informed him that if they had had any trouble they had got rid of it. They were not talkative at supper that night. They had a humble look, and when Huck prepared his pipe after the meal and was going to prepare theirs, they said no, they were not feeling very well--something they ate at dinner had disagreed with them. About midnight Joe awoke, and called the boys. There was a brooding oppressiveness in the air that seemed to bode something. The boys huddled themselves together and sought the friendly companionship of the fire, though the dull dead heat of the breathless atmosphere was stifling. They sat still, intent and waiting. The solemn hush continued. Beyond the light of the fire everything was swallowed up in the blackness of darkness. Presently there came a quivering glow that vaguely revealed the foliage for a moment and then vanished. By and by another came, a little stronger. Then another. Then a faint moan came sighing through the branches of the forest and the boys felt a fleeting breath upon their cheeks, and shuddered with the fancy that the Spirit of the Night had gone by. There was a pause. Now a weird flash turned night into day and showed every little grass-blade, separate and distinct, that grew about their feet. And it showed three white, startled faces, too. A deep peal of thunder went rolling and tumbling down the heavens and lost itself in sullen rumblings in the distance. A sweep of chilly air passed by, rustling all the leaves and snowing the flaky ashes broadcast about the fire. Another fierce glare lit up the forest and an instant crash followed that seemed to rend the tree-tops right over the boys' heads. They clung together in terror, in the thick gloom that followed. A few big rain-drops fell pattering upon the leaves. "Quick! boys, go for the tent!" exclaimed Tom. They sprang away, stumbling over roots and among vines in the dark, no two plunging in the same direction. A furious blast roared through the trees, making everything sing as it went. One blinding flash after another came, and peal on peal of deafening thunder. And now a drenching rain poured down and the rising hurricane drove it in sheets along the ground. The boys cried out to each other, but the roaring wind and the booming thunder-blasts drowned their voices utterly. However, one by one they straggled in at last and took shelter under the tent, cold, scared, and streaming with water; but to have company in misery seemed something to be grateful for. They could not talk, the old sail flapped so furiously, even if the other noises would have allowed them. The tempest rose higher and higher, and presently the sail tore loose from its fastenings and went winging away on the blast. The boys seized each others' hands and fled, with many tumblings and bruises, to the shelter of a great oak that stood upon the river-bank. Now the battle was at its highest. Under the ceaseless conflagration of lightning that flamed in the skies, everything below stood out in clean-cut and shadowless distinctness: the bending trees, the billowy river, white with foam, the driving spray of spume-flakes, the dim outlines of the high bluffs on the other side, glimpsed through the drifting cloud-rack and the slanting veil of rain. Every little while some giant tree yielded the fight and fell crashing through the younger growth; and the unflagging thunder-peals came now in ear-splitting explosive bursts, keen and sharp, and unspeakably appalling. The storm culminated in one matchless effort that seemed likely to tear the island to pieces, burn it up, drown it to the tree-tops, blow it away, and deafen every creature in it, all at one and the same moment. It was a wild night for homeless young heads to be out in. But at last the battle was done, and the forces retired with weaker and weaker threatenings and grumblings, and peace resumed her sway. The boys went back to camp, a good deal awed; but they found there was still something to be thankful for, because the great sycamore, the shelter of their beds, was a ruin, now, blasted by the lightnings, and they were not under it when the catastrophe happened. Everything in camp was drenched, the camp-fire as well; for they were but heedless lads, like their generation, and had made no provision against rain. Here was matter for dismay, for they were soaked through and chilled. They were eloquent in their distress; but they presently discovered that the fire had eaten so far up under the great log it had been built against (where it curved upward and separated itself from the ground), that a handbreadth or so of it had escaped wetting; so they patiently wrought until, with shreds and bark gathered from the under sides of sheltered logs, they coaxed the fire to burn again. Then they piled on great dead boughs till they had a roaring furnace, and were glad-hearted once more. They dried their boiled ham and had a feast, and after that they sat by the fire and expanded and glorified their midnight adventure until morning, for there was not a dry spot to sleep on, anywhere around. As the sun began to steal in upon the boys, drowsiness came over them, and they went out on the sandbar and lay down to sleep. They got scorched out by and by, and drearily set about getting breakfast. After the meal they felt rusty, and stiff-jointed, and a little homesick once more. Tom saw the signs, and fell to cheering up the pirates as well as he could. But they cared nothing for marbles, or circus, or swimming, or anything. He reminded them of the imposing secret, and raised a ray of cheer. While it lasted, he got them interested in a new device. This was to knock off being pirates, for a while, and be Indians for a change. They were attracted by this idea; so it was not long before they were stripped, and striped from head to heel with black mud, like so many zebras--all of them chiefs, of course--and then they went tearing through the woods to attack an English settlement. By and by they separated into three hostile tribes, and darted upon each other from ambush with dreadful war-whoops, and killed and scalped each other by thousands. It was a gory day. Consequently it was an extremely satisfactory one. They assembled in camp toward supper-time, hungry and happy; but now a difficulty arose--hostile Indians could not break the bread of hospitality together without first making peace, and this was a simple impossibility without smoking a pipe of peace. There was no other process that ever they had heard of. Two of the savages almost wished they had remained pirates. However, there was no other way; so with such show of cheerfulness as they could muster they called for the pipe and took their whiff as it passed, in due form. And behold, they were glad they had gone into savagery, for they had gained something; they found that they could now smoke a little without having to go and hunt for a lost knife; they did not get sick enough to be seriously uncomfortable. They were not likely to fool away this high promise for lack of effort. No, they practised cautiously, after supper, with right fair success, and so they spent a jubilant evening. They were prouder and happier in their new acquirement than they would have been in the scalping and skinning of the Six Nations. We will leave them to smoke and chatter and brag, since we have no further use for them at present. CHAPTER XVII BUT there was no hilarity in the little town that same tranquil Saturday afternoon. The Harpers, and Aunt Polly's family, were being put into mourning, with great grief and many tears. An unusual quiet possessed the village, although it was ordinarily quiet enough, in all conscience. The villagers conducted their concerns with an absent air, and talked little; but they sighed often. The Saturday holiday seemed a burden to the children. They had no heart in their sports, and gradually gave them up. In the afternoon Becky Thatcher found herself moping about the deserted schoolhouse yard, and feeling very melancholy. But she found nothing there to comfort her. She soliloquized: "Oh, if I only had a brass andiron-knob again! But I haven't got anything now to remember him by." And she choked back a little sob. Presently she stopped, and said to herself: "It was right here. Oh, if it was to do over again, I wouldn't say that--I wouldn't say it for the whole world. But he's gone now; I'll never, never, never see him any more." This thought broke her down, and she wandered away, with tears rolling down her cheeks. Then quite a group of boys and girls--playmates of Tom's and Joe's--came by, and stood looking over the paling fence and talking in reverent tones of how Tom did so-and-so the last time they saw him, and how Joe said this and that small trifle (pregnant with awful prophecy, as they could easily see now!)--and each speaker pointed out the exact spot where the lost lads stood at the time, and then added something like "and I was a-standing just so--just as I am now, and as if you was him--I was as close as that--and he smiled, just this way--and then something seemed to go all over me, like--awful, you know--and I never thought what it meant, of course, but I can see now!" Then there was a dispute about who saw the dead boys last in life, and many claimed that dismal distinction, and offered evidences, more or less tampered with by the witness; and when it was ultimately decided who DID see the departed last, and exchanged the last words with them, the lucky parties took upon themselves a sort of sacred importance, and were gaped at and envied by all the rest. One poor chap, who had no other grandeur to offer, said with tolerably manifest pride in the remembrance: "Well, Tom Sawyer he licked me once." But that bid for glory was a failure. Most of the boys could say that, and so that cheapened the distinction too much. The group loitered away, still recalling memories of the lost heroes, in awed voices. When the Sunday-school hour was finished, the next morning, the bell began to toll, instead of ringing in the usual way. It was a very still Sabbath, and the mournful sound seemed in keeping with the musing hush that lay upon nature. The villagers began to gather, loitering a moment in the vestibule to converse in whispers about the sad event. But there was no whispering in the house; only the funereal rustling of dresses as the women gathered to their seats disturbed the silence there. None could remember when the little church had been so full before. There was finally a waiting pause, an expectant dumbness, and then Aunt Polly entered, followed by Sid and Mary, and they by the Harper family, all in deep black, and the whole congregation, the old minister as well, rose reverently and stood until the mourners were seated in the front pew. There was another communing silence, broken at intervals by muffled sobs, and then the minister spread his hands abroad and prayed. A moving hymn was sung, and the text followed: "I am the Resurrection and the Life." As the service proceeded, the clergyman drew such pictures of the graces, the winning ways, and the rare promise of the lost lads that every soul there, thinking he recognized these pictures, felt a pang in remembering that he had persistently blinded himself to them always before, and had as persistently seen only faults and flaws in the poor boys. The minister related many a touching incident in the lives of the departed, too, which illustrated their sweet, generous natures, and the people could easily see, now, how noble and beautiful those episodes were, and remembered with grief that at the time they occurred they had seemed rank rascalities, well deserving of the cowhide. The congregation became more and more moved, as the pathetic tale went on, till at last the whole company broke down and joined the weeping mourners in a chorus of anguished sobs, the preacher himself giving way to his feelings, and crying in the pulpit. There was a rustle in the gallery, which nobody noticed; a moment later the church door creaked; the minister raised his streaming eyes above his handkerchief, and stood transfixed! First one and then another pair of eyes followed the minister's, and then almost with one impulse the congregation rose and stared while the three dead boys came marching up the aisle, Tom in the lead, Joe next, and Huck, a ruin of drooping rags, sneaking sheepishly in the rear! They had been hid in the unused gallery listening to their own funeral sermon! Aunt Polly, Mary, and the Harpers threw themselves upon their restored ones, smothered them with kisses and poured out thanksgivings, while poor Huck stood abashed and uncomfortable, not knowing exactly what to do or where to hide from so many unwelcoming eyes. He wavered, and started to slink away, but Tom seized him and said: "Aunt Polly, it ain't fair. Somebody's got to be glad to see Huck." "And so they shall. I'm glad to see him, poor motherless thing!" And the loving attentions Aunt Polly lavished upon him were the one thing capable of making him more uncomfortable than he was before. Suddenly the minister shouted at the top of his voice: "Praise God from whom all blessings flow--SING!--and put your hearts in it!" And they did. Old Hundred swelled up with a triumphant burst, and while it shook the rafters Tom Sawyer the Pirate looked around upon the envying juveniles about him and confessed in his heart that this was the proudest moment of his life. As the "sold" congregation trooped out they said they would almost be willing to be made ridiculous again to hear Old Hundred sung like that once more. Tom got more cuffs and kisses that day--according to Aunt Polly's varying moods--than he had earned before in a year; and he hardly knew which expressed the most gratefulness to God and affection for himself. CHAPTER XVIII THAT was Tom's great secret--the scheme to return home with his brother pirates and attend their own funerals. They had paddled over to the Missouri shore on a log, at dusk on Saturday, landing five or six miles below the village; they had slept in the woods at the edge of the town till nearly daylight, and had then crept through back lanes and alleys and finished their sleep in the gallery of the church among a chaos of invalided benches. At breakfast, Monday morning, Aunt Polly and Mary were very loving to Tom, and very attentive to his wants. There was an unusual amount of talk. In the course of it Aunt Polly said: "Well, I don't say it wasn't a fine joke, Tom, to keep everybody suffering 'most a week so you boys had a good time, but it is a pity you could be so hard-hearted as to let me suffer so. If you could come over on a log to go to your funeral, you could have come over and give me a hint some way that you warn't dead, but only run off." "Yes, you could have done that, Tom," said Mary; "and I believe you would if you had thought of it." "Would you, Tom?" said Aunt Polly, her face lighting wistfully. "Say, now, would you, if you'd thought of it?" "I--well, I don't know. 'Twould 'a' spoiled everything." "Tom, I hoped you loved me that much," said Aunt Polly, with a grieved tone that discomforted the boy. "It would have been something if you'd cared enough to THINK of it, even if you didn't DO it." "Now, auntie, that ain't any harm," pleaded Mary; "it's only Tom's giddy way--he is always in such a rush that he never thinks of anything." "More's the pity. Sid would have thought. And Sid would have come and DONE it, too. Tom, you'll look back, some day, when it's too late, and wish you'd cared a little more for me when it would have cost you so little." "Now, auntie, you know I do care for you," said Tom. "I'd know it better if you acted more like it." "I wish now I'd thought," said Tom, with a repentant tone; "but I dreamt about you, anyway. That's something, ain't it?" "It ain't much--a cat does that much--but it's better than nothing. What did you dream?" "Why, Wednesday night I dreamt that you was sitting over there by the bed, and Sid was sitting by the woodbox, and Mary next to him." "Well, so we did. So we always do. I'm glad your dreams could take even that much trouble about us." "And I dreamt that Joe Harper's mother was here." "Why, she was here! Did you dream any more?" "Oh, lots. But it's so dim, now." "Well, try to recollect--can't you?" "Somehow it seems to me that the wind--the wind blowed the--the--" "Try harder, Tom! The wind did blow something. Come!" Tom pressed his fingers on his forehead an anxious minute, and then said: "I've got it now! I've got it now! It blowed the candle!" "Mercy on us! Go on, Tom--go on!" "And it seems to me that you said, 'Why, I believe that that door--'" "Go ON, Tom!" "Just let me study a moment--just a moment. Oh, yes--you said you believed the door was open." "As I'm sitting here, I did! Didn't I, Mary! Go on!" "And then--and then--well I won't be certain, but it seems like as if you made Sid go and--and--" "Well? Well? What did I make him do, Tom? What did I make him do?" "You made him--you--Oh, you made him shut it." "Well, for the land's sake! I never heard the beat of that in all my days! Don't tell ME there ain't anything in dreams, any more. Sereny Harper shall know of this before I'm an hour older. I'd like to see her get around THIS with her rubbage 'bout superstition. Go on, Tom!" "Oh, it's all getting just as bright as day, now. Next you said I warn't BAD, only mischeevous and harum-scarum, and not any more responsible than--than--I think it was a colt, or something." "And so it was! Well, goodness gracious! Go on, Tom!" "And then you began to cry." "So I did. So I did. Not the first time, neither. And then--" "Then Mrs. Harper she began to cry, and said Joe was just the same, and she wished she hadn't whipped him for taking cream when she'd throwed it out her own self--" "Tom! The sperrit was upon you! You was a prophesying--that's what you was doing! Land alive, go on, Tom!" "Then Sid he said--he said--" "I don't think I said anything," said Sid. "Yes you did, Sid," said Mary. "Shut your heads and let Tom go on! What did he say, Tom?" "He said--I THINK he said he hoped I was better off where I was gone to, but if I'd been better sometimes--" "THERE, d'you hear that! It was his very words!" "And you shut him up sharp." "I lay I did! There must 'a' been an angel there. There WAS an angel there, somewheres!" "And Mrs. Harper told about Joe scaring her with a firecracker, and you told about Peter and the Painkiller--" "Just as true as I live!" "And then there was a whole lot of talk 'bout dragging the river for us, and 'bout having the funeral Sunday, and then you and old Miss Harper hugged and cried, and she went." "It happened just so! It happened just so, as sure as I'm a-sitting in these very tracks. Tom, you couldn't told it more like if you'd 'a' seen it! And then what? Go on, Tom!" "Then I thought you prayed for me--and I could see you and hear every word you said. And you went to bed, and I was so sorry that I took and wrote on a piece of sycamore bark, 'We ain't dead--we are only off being pirates,' and put it on the table by the candle; and then you looked so good, laying there asleep, that I thought I went and leaned over and kissed you on the lips." "Did you, Tom, DID you! I just forgive you everything for that!" And she seized the boy in a crushing embrace that made him feel like the guiltiest of villains. "It was very kind, even though it was only a--dream," Sid soliloquized just audibly. "Shut up, Sid! A body does just the same in a dream as he'd do if he was awake. Here's a big Milum apple I've been saving for you, Tom, if you was ever found again--now go 'long to school. I'm thankful to the good God and Father of us all I've got you back, that's long-suffering and merciful to them that believe on Him and keep His word, though goodness knows I'm unworthy of it, but if only the worthy ones got His blessings and had His hand to help them over the rough places, there's few enough would smile here or ever enter into His rest when the long night comes. Go 'long Sid, Mary, Tom--take yourselves off--you've hendered me long enough." The children left for school, and the old lady to call on Mrs. Harper and vanquish her realism with Tom's marvellous dream. Sid had better judgment than to utter the thought that was in his mind as he left the house. It was this: "Pretty thin--as long a dream as that, without any mistakes in it!" What a hero Tom was become, now! He did not go skipping and prancing, but moved with a dignified swagger as became a pirate who felt that the public eye was on him. And indeed it was; he tried not to seem to see the looks or hear the remarks as he passed along, but they were food and drink to him. Smaller boys than himself flocked at his heels, as proud to be seen with him, and tolerated by him, as if he had been the drummer at the head of a procession or the elephant leading a menagerie into town. Boys of his own size pretended not to know he had been away at all; but they were consuming with envy, nevertheless. They would have given anything to have that swarthy suntanned skin of his, and his glittering notoriety; and Tom would not have parted with either for a circus. At school the children made so much of him and of Joe, and delivered such eloquent admiration from their eyes, that the two heroes were not long in becoming insufferably "stuck-up." They began to tell their adventures to hungry listeners--but they only began; it was not a thing likely to have an end, with imaginations like theirs to furnish material. And finally, when they got out their pipes and went serenely puffing around, the very summit of glory was reached. Tom decided that he could be independent of Becky Thatcher now. Glory was sufficient. He would live for glory. Now that he was distinguished, maybe she would be wanting to "make up." Well, let her--she should see that he could be as indifferent as some other people. Presently she arrived. Tom pretended not to see her. He moved away and joined a group of boys and girls and began to talk. Soon he observed that she was tripping gayly back and forth with flushed face and dancing eyes, pretending to be busy chasing schoolmates, and screaming with laughter when she made a capture; but he noticed that she always made her captures in his vicinity, and that she seemed to cast a conscious eye in his direction at such times, too. It gratified all the vicious vanity that was in him; and so, instead of winning him, it only "set him up" the more and made him the more diligent to avoid betraying that he knew she was about. Presently she gave over skylarking, and moved irresolutely about, sighing once or twice and glancing furtively and wistfully toward Tom. Then she observed that now Tom was talking more particularly to Amy Lawrence than to any one else. She felt a sharp pang and grew disturbed and uneasy at once. She tried to go away, but her feet were treacherous, and carried her to the group instead. She said to a girl almost at Tom's elbow--with sham vivacity: "Why, Mary Austin! you bad girl, why didn't you come to Sunday-school?" "I did come--didn't you see me?" "Why, no! Did you? Where did you sit?" "I was in Miss Peters' class, where I always go. I saw YOU." "Did you? Why, it's funny I didn't see you. I wanted to tell you about the picnic." "Oh, that's jolly. Who's going to give it?" "My ma's going to let me have one." "Oh, goody; I hope she'll let ME come." "Well, she will. The picnic's for me. She'll let anybody come that I want, and I want you." "That's ever so nice. When is it going to be?" "By and by. Maybe about vacation." "Oh, won't it be fun! You going to have all the girls and boys?" "Yes, every one that's friends to me--or wants to be"; and she glanced ever so furtively at Tom, but he talked right along to Amy Lawrence about the terrible storm on the island, and how the lightning tore the great sycamore tree "all to flinders" while he was "standing within three feet of it." "Oh, may I come?" said Grace Miller. "Yes." "And me?" said Sally Rogers. "Yes." "And me, too?" said Susy Harper. "And Joe?" "Yes." And so on, with clapping of joyful hands till all the group had begged for invitations but Tom and Amy. Then Tom turned coolly away, still talking, and took Amy with him. Becky's lips trembled and the tears came to her eyes; she hid these signs with a forced gayety and went on chattering, but the life had gone out of the picnic, now, and out of everything else; she got away as soon as she could and hid herself and had what her sex call "a good cry." Then she sat moody, with wounded pride, till the bell rang. She roused up, now, with a vindictive cast in her eye, and gave her plaited tails a shake and said she knew what SHE'D do. At recess Tom continued his flirtation with Amy with jubilant self-satisfaction. And he kept drifting about to find Becky and lacerate her with the performance. At last he spied her, but there was a sudden falling of his mercury. She was sitting cosily on a little bench behind the schoolhouse looking at a picture-book with Alfred Temple--and so absorbed were they, and their heads so close together over the book, that they did not seem to be conscious of anything in the world besides. Jealousy ran red-hot through Tom's veins. He began to hate himself for throwing away the chance Becky had offered for a reconciliation. He called himself a fool, and all the hard names he could think of. He wanted to cry with vexation. Amy chatted happily along, as they walked, for her heart was singing, but Tom's tongue had lost its function. He did not hear what Amy was saying, and whenever she paused expectantly he could only stammer an awkward assent, which was as often misplaced as otherwise. He kept drifting to the rear of the schoolhouse, again and again, to sear his eyeballs with the hateful spectacle there. He could not help it. And it maddened him to see, as he thought he saw, that Becky Thatcher never once suspected that he was even in the land of the living. But she did see, nevertheless; and she knew she was winning her fight, too, and was glad to see him suffer as she had suffered. Amy's happy prattle became intolerable. Tom hinted at things he had to attend to; things that must be done; and time was fleeting. But in vain--the girl chirped on. Tom thought, "Oh, hang her, ain't I ever going to get rid of her?" At last he must be attending to those things--and she said artlessly that she would be "around" when school let out. And he hastened away, hating her for it. "Any other boy!" Tom thought, grating his teeth. "Any boy in the whole town but that Saint Louis smarty that thinks he dresses so fine and is aristocracy! Oh, all right, I licked you the first day you ever saw this town, mister, and I'll lick you again! You just wait till I catch you out! I'll just take and--" And he went through the motions of thrashing an imaginary boy --pummelling the air, and kicking and gouging. "Oh, you do, do you? You holler 'nough, do you? Now, then, let that learn you!" And so the imaginary flogging was finished to his satisfaction. Tom fled home at noon. His conscience could not endure any more of Amy's grateful happiness, and his jealousy could bear no more of the other distress. Becky resumed her picture inspections with Alfred, but as the minutes dragged along and no Tom came to suffer, her triumph began to cloud and she lost interest; gravity and absent-mindedness followed, and then melancholy; two or three times she pricked up her ear at a footstep, but it was a false hope; no Tom came. At last she grew entirely miserable and wished she hadn't carried it so far. When poor Alfred, seeing that he was losing her, he did not know how, kept exclaiming: "Oh, here's a jolly one! look at this!" she lost patience at last, and said, "Oh, don't bother me! I don't care for them!" and burst into tears, and got up and walked away. Alfred dropped alongside and was going to try to comfort her, but she said: "Go away and leave me alone, can't you! I hate you!" So the boy halted, wondering what he could have done--for she had said she would look at pictures all through the nooning--and she walked on, crying. Then Alfred went musing into the deserted schoolhouse. He was humiliated and angry. He easily guessed his way to the truth--the girl had simply made a convenience of him to vent her spite upon Tom Sawyer. He was far from hating Tom the less when this thought occurred to him. He wished there was some way to get that boy into trouble without much risk to himself. Tom's spelling-book fell under his eye. Here was his opportunity. He gratefully opened to the lesson for the afternoon and poured ink upon the page. Becky, glancing in at a window behind him at the moment, saw the act, and moved on, without discovering herself. She started homeward, now, intending to find Tom and tell him; Tom would be thankful and their troubles would be healed. Before she was half way home, however, she had changed her mind. The thought of Tom's treatment of her when she was talking about her picnic came scorching back and filled her with shame. She resolved to let him get whipped on the damaged spelling-book's account, and to hate him forever, into the bargain. CHAPTER XIX TOM arrived at home in a dreary mood, and the first thing his aunt said to him showed him that he had brought his sorrows to an unpromising market: "Tom, I've a notion to skin you alive!" "Auntie, what have I done?" "Well, you've done enough. Here I go over to Sereny Harper, like an old softy, expecting I'm going to make her believe all that rubbage about that dream, when lo and behold you she'd found out from Joe that you was over here and heard all the talk we had that night. Tom, I don't know what is to become of a boy that will act like that. It makes me feel so bad to think you could let me go to Sereny Harper and make such a fool of myself and never say a word." This was a new aspect of the thing. His smartness of the morning had seemed to Tom a good joke before, and very ingenious. It merely looked mean and shabby now. He hung his head and could not think of anything to say for a moment. Then he said: "Auntie, I wish I hadn't done it--but I didn't think." "Oh, child, you never think. You never think of anything but your own selfishness. You could think to come all the way over here from Jackson's Island in the night to laugh at our troubles, and you could think to fool me with a lie about a dream; but you couldn't ever think to pity us and save us from sorrow." "Auntie, I know now it was mean, but I didn't mean to be mean. I didn't, honest. And besides, I didn't come over here to laugh at you that night." "What did you come for, then?" "It was to tell you not to be uneasy about us, because we hadn't got drownded." "Tom, Tom, I would be the thankfullest soul in this world if I could believe you ever had as good a thought as that, but you know you never did--and I know it, Tom." "Indeed and 'deed I did, auntie--I wish I may never stir if I didn't." "Oh, Tom, don't lie--don't do it. It only makes things a hundred times worse." "It ain't a lie, auntie; it's the truth. I wanted to keep you from grieving--that was all that made me come." "I'd give the whole world to believe that--it would cover up a power of sins, Tom. I'd 'most be glad you'd run off and acted so bad. But it ain't reasonable; because, why didn't you tell me, child?" "Why, you see, when you got to talking about the funeral, I just got all full of the idea of our coming and hiding in the church, and I couldn't somehow bear to spoil it. So I just put the bark back in my pocket and kept mum." "What bark?" "The bark I had wrote on to tell you we'd gone pirating. I wish, now, you'd waked up when I kissed you--I do, honest." The hard lines in his aunt's face relaxed and a sudden tenderness dawned in her eyes. "DID you kiss me, Tom?" "Why, yes, I did." "Are you sure you did, Tom?" "Why, yes, I did, auntie--certain sure." "What did you kiss me for, Tom?" "Because I loved you so, and you laid there moaning and I was so sorry." The words sounded like truth. The old lady could not hide a tremor in her voice when she said: "Kiss me again, Tom!--and be off with you to school, now, and don't bother me any more." The moment he was gone, she ran to a closet and got out the ruin of a jacket which Tom had gone pirating in. Then she stopped, with it in her hand, and said to herself: "No, I don't dare. Poor boy, I reckon he's lied about it--but it's a blessed, blessed lie, there's such a comfort come from it. I hope the Lord--I KNOW the Lord will forgive him, because it was such goodheartedness in him to tell it. But I don't want to find out it's a lie. I won't look." She put the jacket away, and stood by musing a minute. Twice she put out her hand to take the garment again, and twice she refrained. Once more she ventured, and this time she fortified herself with the thought: "It's a good lie--it's a good lie--I won't let it grieve me." So she sought the jacket pocket. A moment later she was reading Tom's piece of bark through flowing tears and saying: "I could forgive the boy, now, if he'd committed a million sins!" CHAPTER XX THERE was something about Aunt Polly's manner, when she kissed Tom, that swept away his low spirits and made him lighthearted and happy again. He started to school and had the luck of coming upon Becky Thatcher at the head of Meadow Lane. His mood always determined his manner. Without a moment's hesitation he ran to her and said: "I acted mighty mean to-day, Becky, and I'm so sorry. I won't ever, ever do that way again, as long as ever I live--please make up, won't you?" The girl stopped and looked him scornfully in the face: "I'll thank you to keep yourself TO yourself, Mr. Thomas Sawyer. I'll never speak to you again." She tossed her head and passed on. Tom was so stunned that he had not even presence of mind enough to say "Who cares, Miss Smarty?" until the right time to say it had gone by. So he said nothing. But he was in a fine rage, nevertheless. He moped into the schoolyard wishing she were a boy, and imagining how he would trounce her if she were. He presently encountered her and delivered a stinging remark as he passed. She hurled one in return, and the angry breach was complete. It seemed to Becky, in her hot resentment, that she could hardly wait for school to "take in," she was so impatient to see Tom flogged for the injured spelling-book. If she had had any lingering notion of exposing Alfred Temple, Tom's offensive fling had driven it entirely away. Poor girl, she did not know how fast she was nearing trouble herself. The master, Mr. Dobbins, had reached middle age with an unsatisfied ambition. The darling of his desires was, to be a doctor, but poverty had decreed that he should be nothing higher than a village schoolmaster. Every day he took a mysterious book out of his desk and absorbed himself in it at times when no classes were reciting. He kept that book under lock and key. There was not an urchin in school but was perishing to have a glimpse of it, but the chance never came. Every boy and girl had a theory about the nature of that book; but no two theories were alike, and there was no way of getting at the facts in the case. Now, as Becky was passing by the desk, which stood near the door, she noticed that the key was in the lock! It was a precious moment. She glanced around; found herself alone, and the next instant she had the book in her hands. The title-page--Professor Somebody's ANATOMY--carried no information to her mind; so she began to turn the leaves. She came at once upon a handsomely engraved and colored frontispiece--a human figure, stark naked. At that moment a shadow fell on the page and Tom Sawyer stepped in at the door and caught a glimpse of the picture. Becky snatched at the book to close it, and had the hard luck to tear the pictured page half down the middle. She thrust the volume into the desk, turned the key, and burst out crying with shame and vexation. "Tom Sawyer, you are just as mean as you can be, to sneak up on a person and look at what they're looking at." "How could I know you was looking at anything?" "You ought to be ashamed of yourself, Tom Sawyer; you know you're going to tell on me, and oh, what shall I do, what shall I do! I'll be whipped, and I never was whipped in school." Then she stamped her little foot and said: "BE so mean if you want to! I know something that's going to happen. You just wait and you'll see! Hateful, hateful, hateful!"--and she flung out of the house with a new explosion of crying. Tom stood still, rather flustered by this onslaught. Presently he said to himself: "What a curious kind of a fool a girl is! Never been licked in school! Shucks! What's a licking! That's just like a girl--they're so thin-skinned and chicken-hearted. Well, of course I ain't going to tell old Dobbins on this little fool, because there's other ways of getting even on her, that ain't so mean; but what of it? Old Dobbins will ask who it was tore his book. Nobody'll answer. Then he'll do just the way he always does--ask first one and then t'other, and when he comes to the right girl he'll know it, without any telling. Girls' faces always tell on them. They ain't got any backbone. She'll get licked. Well, it's a kind of a tight place for Becky Thatcher, because there ain't any way out of it." Tom conned the thing a moment longer, and then added: "All right, though; she'd like to see me in just such a fix--let her sweat it out!" Tom joined the mob of skylarking scholars outside. In a few moments the master arrived and school "took in." Tom did not feel a strong interest in his studies. Every time he stole a glance at the girls' side of the room Becky's face troubled him. Considering all things, he did not want to pity her, and yet it was all he could do to help it. He could get up no exultation that was really worthy the name. Presently the spelling-book discovery was made, and Tom's mind was entirely full of his own matters for a while after that. Becky roused up from her lethargy of distress and showed good interest in the proceedings. She did not expect that Tom could get out of his trouble by denying that he spilt the ink on the book himself; and she was right. The denial only seemed to make the thing worse for Tom. Becky supposed she would be glad of that, and she tried to believe she was glad of it, but she found she was not certain. When the worst came to the worst, she had an impulse to get up and tell on Alfred Temple, but she made an effort and forced herself to keep still--because, said she to herself, "he'll tell about me tearing the picture sure. I wouldn't say a word, not to save his life!" Tom took his whipping and went back to his seat not at all broken-hearted, for he thought it was possible that he had unknowingly upset the ink on the spelling-book himself, in some skylarking bout--he had denied it for form's sake and because it was custom, and had stuck to the denial from principle. A whole hour drifted by, the master sat nodding in his throne, the air was drowsy with the hum of study. By and by, Mr. Dobbins straightened himself up, yawned, then unlocked his desk, and reached for his book, but seemed undecided whether to take it out or leave it. Most of the pupils glanced up languidly, but there were two among them that watched his movements with intent eyes. Mr. Dobbins fingered his book absently for a while, then took it out and settled himself in his chair to read! Tom shot a glance at Becky. He had seen a hunted and helpless rabbit look as she did, with a gun levelled at its head. Instantly he forgot his quarrel with her. Quick--something must be done! done in a flash, too! But the very imminence of the emergency paralyzed his invention. Good!--he had an inspiration! He would run and snatch the book, spring through the door and fly. But his resolution shook for one little instant, and the chance was lost--the master opened the volume. If Tom only had the wasted opportunity back again! Too late. There was no help for Becky now, he said. The next moment the master faced the school. Every eye sank under his gaze. There was that in it which smote even the innocent with fear. There was silence while one might count ten --the master was gathering his wrath. Then he spoke: "Who tore this book?" There was not a sound. One could have heard a pin drop. The stillness continued; the master searched face after face for signs of guilt. "Benjamin Rogers, did you tear this book?" A denial. Another pause. "Joseph Harper, did you?" Another denial. Tom's uneasiness grew more and more intense under the slow torture of these proceedings. The master scanned the ranks of boys--considered a while, then turned to the girls: "Amy Lawrence?" A shake of the head. "Gracie Miller?" The same sign. "Susan Harper, did you do this?" Another negative. The next girl was Becky Thatcher. Tom was trembling from head to foot with excitement and a sense of the hopelessness of the situation. "Rebecca Thatcher" [Tom glanced at her face--it was white with terror] --"did you tear--no, look me in the face" [her hands rose in appeal] --"did you tear this book?" A thought shot like lightning through Tom's brain. He sprang to his feet and shouted--"I done it!" The school stared in perplexity at this incredible folly. Tom stood a moment, to gather his dismembered faculties; and when he stepped forward to go to his punishment the surprise, the gratitude, the adoration that shone upon him out of poor Becky's eyes seemed pay enough for a hundred floggings. Inspired by the splendor of his own act, he took without an outcry the most merciless flaying that even Mr. Dobbins had ever administered; and also received with indifference the added cruelty of a command to remain two hours after school should be dismissed--for he knew who would wait for him outside till his captivity was done, and not count the tedious time as loss, either. Tom went to bed that night planning vengeance against Alfred Temple; for with shame and repentance Becky had told him all, not forgetting her own treachery; but even the longing for vengeance had to give way, soon, to pleasanter musings, and he fell asleep at last with Becky's latest words lingering dreamily in his ear-- "Tom, how COULD you be so noble!" CHAPTER XXI VACATION was approaching. The schoolmaster, always severe, grew severer and more exacting than ever, for he wanted the school to make a good showing on "Examination" day. His rod and his ferule were seldom idle now--at least among the smaller pupils. Only the biggest boys, and young ladies of eighteen and twenty, escaped lashing. Mr. Dobbins' lashings were very vigorous ones, too; for although he carried, under his wig, a perfectly bald and shiny head, he had only reached middle age, and there was no sign of feebleness in his muscle. As the great day approached, all the tyranny that was in him came to the surface; he seemed to take a vindictive pleasure in punishing the least shortcomings. The consequence was, that the smaller boys spent their days in terror and suffering and their nights in plotting revenge. They threw away no opportunity to do the master a mischief. But he kept ahead all the time. The retribution that followed every vengeful success was so sweeping and majestic that the boys always retired from the field badly worsted. At last they conspired together and hit upon a plan that promised a dazzling victory. They swore in the sign-painter's boy, told him the scheme, and asked his help. He had his own reasons for being delighted, for the master boarded in his father's family and had given the boy ample cause to hate him. The master's wife would go on a visit to the country in a few days, and there would be nothing to interfere with the plan; the master always prepared himself for great occasions by getting pretty well fuddled, and the sign-painter's boy said that when the dominie had reached the proper condition on Examination Evening he would "manage the thing" while he napped in his chair; then he would have him awakened at the right time and hurried away to school. In the fulness of time the interesting occasion arrived. At eight in the evening the schoolhouse was brilliantly lighted, and adorned with wreaths and festoons of foliage and flowers. The master sat throned in his great chair upon a raised platform, with his blackboard behind him. He was looking tolerably mellow. Three rows of benches on each side and six rows in front of him were occupied by the dignitaries of the town and by the parents of the pupils. To his left, back of the rows of citizens, was a spacious temporary platform upon which were seated the scholars who were to take part in the exercises of the evening; rows of small boys, washed and dressed to an intolerable state of discomfort; rows of gawky big boys; snowbanks of girls and young ladies clad in lawn and muslin and conspicuously conscious of their bare arms, their grandmothers' ancient trinkets, their bits of pink and blue ribbon and the flowers in their hair. All the rest of the house was filled with non-participating scholars. The exercises began. A very little boy stood up and sheepishly recited, "You'd scarce expect one of my age to speak in public on the stage," etc.--accompanying himself with the painfully exact and spasmodic gestures which a machine might have used--supposing the machine to be a trifle out of order. But he got through safely, though cruelly scared, and got a fine round of applause when he made his manufactured bow and retired. A little shamefaced girl lisped, "Mary had a little lamb," etc., performed a compassion-inspiring curtsy, got her meed of applause, and sat down flushed and happy. Tom Sawyer stepped forward with conceited confidence and soared into the unquenchable and indestructible "Give me liberty or give me death" speech, with fine fury and frantic gesticulation, and broke down in the middle of it. A ghastly stage-fright seized him, his legs quaked under him and he was like to choke. True, he had the manifest sympathy of the house but he had the house's silence, too, which was even worse than its sympathy. The master frowned, and this completed the disaster. Tom struggled awhile and then retired, utterly defeated. There was a weak attempt at applause, but it died early. "The Boy Stood on the Burning Deck" followed; also "The Assyrian Came Down," and other declamatory gems. Then there were reading exercises, and a spelling fight. The meagre Latin class recited with honor. The prime feature of the evening was in order, now--original "compositions" by the young ladies. Each in her turn stepped forward to the edge of the platform, cleared her throat, held up her manuscript (tied with dainty ribbon), and proceeded to read, with labored attention to "expression" and punctuation. The themes were the same that had been illuminated upon similar occasions by their mothers before them, their grandmothers, and doubtless all their ancestors in the female line clear back to the Crusades. "Friendship" was one; "Memories of Other Days"; "Religion in History"; "Dream Land"; "The Advantages of Culture"; "Forms of Political Government Compared and Contrasted"; "Melancholy"; "Filial Love"; "Heart Longings," etc., etc. A prevalent feature in these compositions was a nursed and petted melancholy; another was a wasteful and opulent gush of "fine language"; another was a tendency to lug in by the ears particularly prized words and phrases until they were worn entirely out; and a peculiarity that conspicuously marked and marred them was the inveterate and intolerable sermon that wagged its crippled tail at the end of each and every one of them. No matter what the subject might be, a brain-racking effort was made to squirm it into some aspect or other that the moral and religious mind could contemplate with edification. The glaring insincerity of these sermons was not sufficient to compass the banishment of the fashion from the schools, and it is not sufficient to-day; it never will be sufficient while the world stands, perhaps. There is no school in all our land where the young ladies do not feel obliged to close their compositions with a sermon; and you will find that the sermon of the most frivolous and the least religious girl in the school is always the longest and the most relentlessly pious. But enough of this. Homely truth is unpalatable. Let us return to the "Examination." The first composition that was read was one entitled "Is this, then, Life?" Perhaps the reader can endure an extract from it: "In the common walks of life, with what delightful emotions does the youthful mind look forward to some anticipated scene of festivity! Imagination is busy sketching rose-tinted pictures of joy. In fancy, the voluptuous votary of fashion sees herself amid the festive throng, 'the observed of all observers.' Her graceful form, arrayed in snowy robes, is whirling through the mazes of the joyous dance; her eye is brightest, her step is lightest in the gay assembly. "In such delicious fancies time quickly glides by, and the welcome hour arrives for her entrance into the Elysian world, of which she has had such bright dreams. How fairy-like does everything appear to her enchanted vision! Each new scene is more charming than the last. But after a while she finds that beneath this goodly exterior, all is vanity, the flattery which once charmed her soul, now grates harshly upon her ear; the ball-room has lost its charms; and with wasted health and imbittered heart, she turns away with the conviction that earthly pleasures cannot satisfy the longings of the soul!" And so forth and so on. There was a buzz of gratification from time to time during the reading, accompanied by whispered ejaculations of "How sweet!" "How eloquent!" "So true!" etc., and after the thing had closed with a peculiarly afflicting sermon the applause was enthusiastic. Then arose a slim, melancholy girl, whose face had the "interesting" paleness that comes of pills and indigestion, and read a "poem." Two stanzas of it will do: "A MISSOURI MAIDEN'S FAREWELL TO ALABAMA "Alabama, good-bye! I love thee well! But yet for a while do I leave thee now! Sad, yes, sad thoughts of thee my heart doth swell, And burning recollections throng my brow! For I have wandered through thy flowery woods; Have roamed and read near Tallapoosa's stream; Have listened to Tallassee's warring floods, And wooed on Coosa's side Aurora's beam. "Yet shame I not to bear an o'er-full heart, Nor blush to turn behind my tearful eyes; 'Tis from no stranger land I now must part, 'Tis to no strangers left I yield these sighs. Welcome and home were mine within this State, Whose vales I leave--whose spires fade fast from me And cold must be mine eyes, and heart, and tete, When, dear Alabama! they turn cold on thee!" There were very few there who knew what "tete" meant, but the poem was very satisfactory, nevertheless. Next appeared a dark-complexioned, black-eyed, black-haired young lady, who paused an impressive moment, assumed a tragic expression, and began to read in a measured, solemn tone: "A VISION "Dark and tempestuous was night. Around the throne on high not a single star quivered; but the deep intonations of the heavy thunder constantly vibrated upon the ear; whilst the terrific lightning revelled in angry mood through the cloudy chambers of heaven, seeming to scorn the power exerted over its terror by the illustrious Franklin! Even the boisterous winds unanimously came forth from their mystic homes, and blustered about as if to enhance by their aid the wildness of the scene. "At such a time, so dark, so dreary, for human sympathy my very spirit sighed; but instead thereof, "'My dearest friend, my counsellor, my comforter and guide--My joy in grief, my second bliss in joy,' came to my side. She moved like one of those bright beings pictured in the sunny walks of fancy's Eden by the romantic and young, a queen of beauty unadorned save by her own transcendent loveliness. So soft was her step, it failed to make even a sound, and but for the magical thrill imparted by her genial touch, as other unobtrusive beauties, she would have glided away un-perceived--unsought. A strange sadness rested upon her features, like icy tears upon the robe of December, as she pointed to the contending elements without, and bade me contemplate the two beings presented." This nightmare occupied some ten pages of manuscript and wound up with a sermon so destructive of all hope to non-Presbyterians that it took the first prize. This composition was considered to be the very finest effort of the evening. The mayor of the village, in delivering the prize to the author of it, made a warm speech in which he said that it was by far the most "eloquent" thing he had ever listened to, and that Daniel Webster himself might well be proud of it. It may be remarked, in passing, that the number of compositions in which the word "beauteous" was over-fondled, and human experience referred to as "life's page," was up to the usual average. Now the master, mellow almost to the verge of geniality, put his chair aside, turned his back to the audience, and began to draw a map of America on the blackboard, to exercise the geography class upon. But he made a sad business of it with his unsteady hand, and a smothered titter rippled over the house. He knew what the matter was, and set himself to right it. He sponged out lines and remade them; but he only distorted them more than ever, and the tittering was more pronounced. He threw his entire attention upon his work, now, as if determined not to be put down by the mirth. He felt that all eyes were fastened upon him; he imagined he was succeeding, and yet the tittering continued; it even manifestly increased. And well it might. There was a garret above, pierced with a scuttle over his head; and down through this scuttle came a cat, suspended around the haunches by a string; she had a rag tied about her head and jaws to keep her from mewing; as she slowly descended she curved upward and clawed at the string, she swung downward and clawed at the intangible air. The tittering rose higher and higher--the cat was within six inches of the absorbed teacher's head--down, down, a little lower, and she grabbed his wig with her desperate claws, clung to it, and was snatched up into the garret in an instant with her trophy still in her possession! And how the light did blaze abroad from the master's bald pate--for the sign-painter's boy had GILDED it! That broke up the meeting. The boys were avenged. Vacation had come. NOTE:--The pretended "compositions" quoted in this chapter are taken without alteration from a volume entitled "Prose and Poetry, by a Western Lady"--but they are exactly and precisely after the schoolgirl pattern, and hence are much happier than any mere imitations could be. CHAPTER XXII TOM joined the new order of Cadets of Temperance, being attracted by the showy character of their "regalia." He promised to abstain from smoking, chewing, and profanity as long as he remained a member. Now he found out a new thing--namely, that to promise not to do a thing is the surest way in the world to make a body want to go and do that very thing. Tom soon found himself tormented with a desire to drink and swear; the desire grew to be so intense that nothing but the hope of a chance to display himself in his red sash kept him from withdrawing from the order. Fourth of July was coming; but he soon gave that up --gave it up before he had worn his shackles over forty-eight hours--and fixed his hopes upon old Judge Frazer, justice of the peace, who was apparently on his deathbed and would have a big public funeral, since he was so high an official. During three days Tom was deeply concerned about the Judge's condition and hungry for news of it. Sometimes his hopes ran high--so high that he would venture to get out his regalia and practise before the looking-glass. But the Judge had a most discouraging way of fluctuating. At last he was pronounced upon the mend--and then convalescent. Tom was disgusted; and felt a sense of injury, too. He handed in his resignation at once--and that night the Judge suffered a relapse and died. Tom resolved that he would never trust a man like that again. The funeral was a fine thing. The Cadets paraded in a style calculated to kill the late member with envy. Tom was a free boy again, however --there was something in that. He could drink and swear, now--but found to his surprise that he did not want to. The simple fact that he could, took the desire away, and the charm of it. Tom presently wondered to find that his coveted vacation was beginning to hang a little heavily on his hands. He attempted a diary--but nothing happened during three days, and so he abandoned it. The first of all the negro minstrel shows came to town, and made a sensation. Tom and Joe Harper got up a band of performers and were happy for two days. Even the Glorious Fourth was in some sense a failure, for it rained hard, there was no procession in consequence, and the greatest man in the world (as Tom supposed), Mr. Benton, an actual United States Senator, proved an overwhelming disappointment--for he was not twenty-five feet high, nor even anywhere in the neighborhood of it. A circus came. The boys played circus for three days afterward in tents made of rag carpeting--admission, three pins for boys, two for girls--and then circusing was abandoned. A phrenologist and a mesmerizer came--and went again and left the village duller and drearier than ever. There were some boys-and-girls' parties, but they were so few and so delightful that they only made the aching voids between ache the harder. Becky Thatcher was gone to her Constantinople home to stay with her parents during vacation--so there was no bright side to life anywhere. The dreadful secret of the murder was a chronic misery. It was a very cancer for permanency and pain. Then came the measles. During two long weeks Tom lay a prisoner, dead to the world and its happenings. He was very ill, he was interested in nothing. When he got upon his feet at last and moved feebly down-town, a melancholy change had come over everything and every creature. There had been a "revival," and everybody had "got religion," not only the adults, but even the boys and girls. Tom went about, hoping against hope for the sight of one blessed sinful face, but disappointment crossed him everywhere. He found Joe Harper studying a Testament, and turned sadly away from the depressing spectacle. He sought Ben Rogers, and found him visiting the poor with a basket of tracts. He hunted up Jim Hollis, who called his attention to the precious blessing of his late measles as a warning. Every boy he encountered added another ton to his depression; and when, in desperation, he flew for refuge at last to the bosom of Huckleberry Finn and was received with a Scriptural quotation, his heart broke and he crept home and to bed realizing that he alone of all the town was lost, forever and forever. And that night there came on a terrific storm, with driving rain, awful claps of thunder and blinding sheets of lightning. He covered his head with the bedclothes and waited in a horror of suspense for his doom; for he had not the shadow of a doubt that all this hubbub was about him. He believed he had taxed the forbearance of the powers above to the extremity of endurance and that this was the result. It might have seemed to him a waste of pomp and ammunition to kill a bug with a battery of artillery, but there seemed nothing incongruous about the getting up such an expensive thunderstorm as this to knock the turf from under an insect like himself. By and by the tempest spent itself and died without accomplishing its object. The boy's first impulse was to be grateful, and reform. His second was to wait--for there might not be any more storms. The next day the doctors were back; Tom had relapsed. The three weeks he spent on his back this time seemed an entire age. When he got abroad at last he was hardly grateful that he had been spared, remembering how lonely was his estate, how companionless and forlorn he was. He drifted listlessly down the street and found Jim Hollis acting as judge in a juvenile court that was trying a cat for murder, in the presence of her victim, a bird. He found Joe Harper and Huck Finn up an alley eating a stolen melon. Poor lads! they--like Tom--had suffered a relapse. CHAPTER XXIII AT last the sleepy atmosphere was stirred--and vigorously: the murder trial came on in the court. It became the absorbing topic of village talk immediately. Tom could not get away from it. Every reference to the murder sent a shudder to his heart, for his troubled conscience and fears almost persuaded him that these remarks were put forth in his hearing as "feelers"; he did not see how he could be suspected of knowing anything about the murder, but still he could not be comfortable in the midst of this gossip. It kept him in a cold shiver all the time. He took Huck to a lonely place to have a talk with him. It would be some relief to unseal his tongue for a little while; to divide his burden of distress with another sufferer. Moreover, he wanted to assure himself that Huck had remained discreet. "Huck, have you ever told anybody about--that?" "'Bout what?" "You know what." "Oh--'course I haven't." "Never a word?" "Never a solitary word, so help me. What makes you ask?" "Well, I was afeard." "Why, Tom Sawyer, we wouldn't be alive two days if that got found out. YOU know that." Tom felt more comfortable. After a pause: "Huck, they couldn't anybody get you to tell, could they?" "Get me to tell? Why, if I wanted that half-breed devil to drownd me they could get me to tell. They ain't no different way." "Well, that's all right, then. I reckon we're safe as long as we keep mum. But let's swear again, anyway. It's more surer." "I'm agreed." So they swore again with dread solemnities. "What is the talk around, Huck? I've heard a power of it." "Talk? Well, it's just Muff Potter, Muff Potter, Muff Potter all the time. It keeps me in a sweat, constant, so's I want to hide som'ers." "That's just the same way they go on round me. I reckon he's a goner. Don't you feel sorry for him, sometimes?" "Most always--most always. He ain't no account; but then he hain't ever done anything to hurt anybody. Just fishes a little, to get money to get drunk on--and loafs around considerable; but lord, we all do that--leastways most of us--preachers and such like. But he's kind of good--he give me half a fish, once, when there warn't enough for two; and lots of times he's kind of stood by me when I was out of luck." "Well, he's mended kites for me, Huck, and knitted hooks on to my line. I wish we could get him out of there." "My! we couldn't get him out, Tom. And besides, 'twouldn't do any good; they'd ketch him again." "Yes--so they would. But I hate to hear 'em abuse him so like the dickens when he never done--that." "I do too, Tom. Lord, I hear 'em say he's the bloodiest looking villain in this country, and they wonder he wasn't ever hung before." "Yes, they talk like that, all the time. I've heard 'em say that if he was to get free they'd lynch him." "And they'd do it, too." The boys had a long talk, but it brought them little comfort. As the twilight drew on, they found themselves hanging about the neighborhood of the little isolated jail, perhaps with an undefined hope that something would happen that might clear away their difficulties. But nothing happened; there seemed to be no angels or fairies interested in this luckless captive. The boys did as they had often done before--went to the cell grating and gave Potter some tobacco and matches. He was on the ground floor and there were no guards. His gratitude for their gifts had always smote their consciences before--it cut deeper than ever, this time. They felt cowardly and treacherous to the last degree when Potter said: "You've been mighty good to me, boys--better'n anybody else in this town. And I don't forget it, I don't. Often I says to myself, says I, 'I used to mend all the boys' kites and things, and show 'em where the good fishin' places was, and befriend 'em what I could, and now they've all forgot old Muff when he's in trouble; but Tom don't, and Huck don't--THEY don't forget him, says I, 'and I don't forget them.' Well, boys, I done an awful thing--drunk and crazy at the time--that's the only way I account for it--and now I got to swing for it, and it's right. Right, and BEST, too, I reckon--hope so, anyway. Well, we won't talk about that. I don't want to make YOU feel bad; you've befriended me. But what I want to say, is, don't YOU ever get drunk--then you won't ever get here. Stand a litter furder west--so--that's it; it's a prime comfort to see faces that's friendly when a body's in such a muck of trouble, and there don't none come here but yourn. Good friendly faces--good friendly faces. Git up on one another's backs and let me touch 'em. That's it. Shake hands--yourn'll come through the bars, but mine's too big. Little hands, and weak--but they've helped Muff Potter a power, and they'd help him more if they could." Tom went home miserable, and his dreams that night were full of horrors. The next day and the day after, he hung about the court-room, drawn by an almost irresistible impulse to go in, but forcing himself to stay out. Huck was having the same experience. They studiously avoided each other. Each wandered away, from time to time, but the same dismal fascination always brought them back presently. Tom kept his ears open when idlers sauntered out of the court-room, but invariably heard distressing news--the toils were closing more and more relentlessly around poor Potter. At the end of the second day the village talk was to the effect that Injun Joe's evidence stood firm and unshaken, and that there was not the slightest question as to what the jury's verdict would be. Tom was out late, that night, and came to bed through the window. He was in a tremendous state of excitement. It was hours before he got to sleep. All the village flocked to the court-house the next morning, for this was to be the great day. Both sexes were about equally represented in the packed audience. After a long wait the jury filed in and took their places; shortly afterward, Potter, pale and haggard, timid and hopeless, was brought in, with chains upon him, and seated where all the curious eyes could stare at him; no less conspicuous was Injun Joe, stolid as ever. There was another pause, and then the judge arrived and the sheriff proclaimed the opening of the court. The usual whisperings among the lawyers and gathering together of papers followed. These details and accompanying delays worked up an atmosphere of preparation that was as impressive as it was fascinating. Now a witness was called who testified that he found Muff Potter washing in the brook, at an early hour of the morning that the murder was discovered, and that he immediately sneaked away. After some further questioning, counsel for the prosecution said: "Take the witness." The prisoner raised his eyes for a moment, but dropped them again when his own counsel said: "I have no questions to ask him." The next witness proved the finding of the knife near the corpse. Counsel for the prosecution said: "Take the witness." "I have no questions to ask him," Potter's lawyer replied. A third witness swore he had often seen the knife in Potter's possession. "Take the witness." Counsel for Potter declined to question him. The faces of the audience began to betray annoyance. Did this attorney mean to throw away his client's life without an effort? Several witnesses deposed concerning Potter's guilty behavior when brought to the scene of the murder. They were allowed to leave the stand without being cross-questioned. Every detail of the damaging circumstances that occurred in the graveyard upon that morning which all present remembered so well was brought out by credible witnesses, but none of them were cross-examined by Potter's lawyer. The perplexity and dissatisfaction of the house expressed itself in murmurs and provoked a reproof from the bench. Counsel for the prosecution now said: "By the oaths of citizens whose simple word is above suspicion, we have fastened this awful crime, beyond all possibility of question, upon the unhappy prisoner at the bar. We rest our case here." A groan escaped from poor Potter, and he put his face in his hands and rocked his body softly to and fro, while a painful silence reigned in the court-room. Many men were moved, and many women's compassion testified itself in tears. Counsel for the defence rose and said: "Your honor, in our remarks at the opening of this trial, we foreshadowed our purpose to prove that our client did this fearful deed while under the influence of a blind and irresponsible delirium produced by drink. We have changed our mind. We shall not offer that plea." [Then to the clerk:] "Call Thomas Sawyer!" A puzzled amazement awoke in every face in the house, not even excepting Potter's. Every eye fastened itself with wondering interest upon Tom as he rose and took his place upon the stand. The boy looked wild enough, for he was badly scared. The oath was administered. "Thomas Sawyer, where were you on the seventeenth of June, about the hour of midnight?" Tom glanced at Injun Joe's iron face and his tongue failed him. The audience listened breathless, but the words refused to come. After a few moments, however, the boy got a little of his strength back, and managed to put enough of it into his voice to make part of the house hear: "In the graveyard!" "A little bit louder, please. Don't be afraid. You were--" "In the graveyard." A contemptuous smile flitted across Injun Joe's face. "Were you anywhere near Horse Williams' grave?" "Yes, sir." "Speak up--just a trifle louder. How near were you?" "Near as I am to you." "Were you hidden, or not?" "I was hid." "Where?" "Behind the elms that's on the edge of the grave." Injun Joe gave a barely perceptible start. "Any one with you?" "Yes, sir. I went there with--" "Wait--wait a moment. Never mind mentioning your companion's name. We will produce him at the proper time. Did you carry anything there with you." Tom hesitated and looked confused. "Speak out, my boy--don't be diffident. The truth is always respectable. What did you take there?" "Only a--a--dead cat." There was a ripple of mirth, which the court checked. "We will produce the skeleton of that cat. Now, my boy, tell us everything that occurred--tell it in your own way--don't skip anything, and don't be afraid." Tom began--hesitatingly at first, but as he warmed to his subject his words flowed more and more easily; in a little while every sound ceased but his own voice; every eye fixed itself upon him; with parted lips and bated breath the audience hung upon his words, taking no note of time, rapt in the ghastly fascinations of the tale. The strain upon pent emotion reached its climax when the boy said: "--and as the doctor fetched the board around and Muff Potter fell, Injun Joe jumped with the knife and--" Crash! Quick as lightning the half-breed sprang for a window, tore his way through all opposers, and was gone! CHAPTER XXIV TOM was a glittering hero once more--the pet of the old, the envy of the young. His name even went into immortal print, for the village paper magnified him. There were some that believed he would be President, yet, if he escaped hanging. As usual, the fickle, unreasoning world took Muff Potter to its bosom and fondled him as lavishly as it had abused him before. But that sort of conduct is to the world's credit; therefore it is not well to find fault with it. Tom's days were days of splendor and exultation to him, but his nights were seasons of horror. Injun Joe infested all his dreams, and always with doom in his eye. Hardly any temptation could persuade the boy to stir abroad after nightfall. Poor Huck was in the same state of wretchedness and terror, for Tom had told the whole story to the lawyer the night before the great day of the trial, and Huck was sore afraid that his share in the business might leak out, yet, notwithstanding Injun Joe's flight had saved him the suffering of testifying in court. The poor fellow had got the attorney to promise secrecy, but what of that? Since Tom's harassed conscience had managed to drive him to the lawyer's house by night and wring a dread tale from lips that had been sealed with the dismalest and most formidable of oaths, Huck's confidence in the human race was well-nigh obliterated. Daily Muff Potter's gratitude made Tom glad he had spoken; but nightly he wished he had sealed up his tongue. Half the time Tom was afraid Injun Joe would never be captured; the other half he was afraid he would be. He felt sure he never could draw a safe breath again until that man was dead and he had seen the corpse. Rewards had been offered, the country had been scoured, but no Injun Joe was found. One of those omniscient and awe-inspiring marvels, a detective, came up from St. Louis, moused around, shook his head, looked wise, and made that sort of astounding success which members of that craft usually achieve. That is to say, he "found a clew." But you can't hang a "clew" for murder, and so after that detective had got through and gone home, Tom felt just as insecure as he was before. The slow days drifted on, and each left behind it a slightly lightened weight of apprehension. CHAPTER XXV THERE comes a time in every rightly-constructed boy's life when he has a raging desire to go somewhere and dig for hidden treasure. This desire suddenly came upon Tom one day. He sallied out to find Joe Harper, but failed of success. Next he sought Ben Rogers; he had gone fishing. Presently he stumbled upon Huck Finn the Red-Handed. Huck would answer. Tom took him to a private place and opened the matter to him confidentially. Huck was willing. Huck was always willing to take a hand in any enterprise that offered entertainment and required no capital, for he had a troublesome superabundance of that sort of time which is not money. "Where'll we dig?" said Huck. "Oh, most anywhere." "Why, is it hid all around?" "No, indeed it ain't. It's hid in mighty particular places, Huck --sometimes on islands, sometimes in rotten chests under the end of a limb of an old dead tree, just where the shadow falls at midnight; but mostly under the floor in ha'nted houses." "Who hides it?" "Why, robbers, of course--who'd you reckon? Sunday-school sup'rintendents?" "I don't know. If 'twas mine I wouldn't hide it; I'd spend it and have a good time." "So would I. But robbers don't do that way. They always hide it and leave it there." "Don't they come after it any more?" "No, they think they will, but they generally forget the marks, or else they die. Anyway, it lays there a long time and gets rusty; and by and by somebody finds an old yellow paper that tells how to find the marks--a paper that's got to be ciphered over about a week because it's mostly signs and hy'roglyphics." "Hyro--which?" "Hy'roglyphics--pictures and things, you know, that don't seem to mean anything." "Have you got one of them papers, Tom?" "No." "Well then, how you going to find the marks?" "I don't want any marks. They always bury it under a ha'nted house or on an island, or under a dead tree that's got one limb sticking out. Well, we've tried Jackson's Island a little, and we can try it again some time; and there's the old ha'nted house up the Still-House branch, and there's lots of dead-limb trees--dead loads of 'em." "Is it under all of them?" "How you talk! No!" "Then how you going to know which one to go for?" "Go for all of 'em!" "Why, Tom, it'll take all summer." "Well, what of that? Suppose you find a brass pot with a hundred dollars in it, all rusty and gray, or rotten chest full of di'monds. How's that?" Huck's eyes glowed. "That's bully. Plenty bully enough for me. Just you gimme the hundred dollars and I don't want no di'monds." "All right. But I bet you I ain't going to throw off on di'monds. Some of 'em's worth twenty dollars apiece--there ain't any, hardly, but's worth six bits or a dollar." "No! Is that so?" "Cert'nly--anybody'll tell you so. Hain't you ever seen one, Huck?" "Not as I remember." "Oh, kings have slathers of them." "Well, I don' know no kings, Tom." "I reckon you don't. But if you was to go to Europe you'd see a raft of 'em hopping around." "Do they hop?" "Hop?--your granny! No!" "Well, what did you say they did, for?" "Shucks, I only meant you'd SEE 'em--not hopping, of course--what do they want to hop for?--but I mean you'd just see 'em--scattered around, you know, in a kind of a general way. Like that old humpbacked Richard." "Richard? What's his other name?" "He didn't have any other name. Kings don't have any but a given name." "No?" "But they don't." "Well, if they like it, Tom, all right; but I don't want to be a king and have only just a given name, like a nigger. But say--where you going to dig first?" "Well, I don't know. S'pose we tackle that old dead-limb tree on the hill t'other side of Still-House branch?" "I'm agreed." So they got a crippled pick and a shovel, and set out on their three-mile tramp. They arrived hot and panting, and threw themselves down in the shade of a neighboring elm to rest and have a smoke. "I like this," said Tom. "So do I." "Say, Huck, if we find a treasure here, what you going to do with your share?" "Well, I'll have pie and a glass of soda every day, and I'll go to every circus that comes along. I bet I'll have a gay time." "Well, ain't you going to save any of it?" "Save it? What for?" "Why, so as to have something to live on, by and by." "Oh, that ain't any use. Pap would come back to thish-yer town some day and get his claws on it if I didn't hurry up, and I tell you he'd clean it out pretty quick. What you going to do with yourn, Tom?" "I'm going to buy a new drum, and a sure-'nough sword, and a red necktie and a bull pup, and get married." "Married!" "That's it." "Tom, you--why, you ain't in your right mind." "Wait--you'll see." "Well, that's the foolishest thing you could do. Look at pap and my mother. Fight! Why, they used to fight all the time. I remember, mighty well." "That ain't anything. The girl I'm going to marry won't fight." "Tom, I reckon they're all alike. They'll all comb a body. Now you better think 'bout this awhile. I tell you you better. What's the name of the gal?" "It ain't a gal at all--it's a girl." "It's all the same, I reckon; some says gal, some says girl--both's right, like enough. Anyway, what's her name, Tom?" "I'll tell you some time--not now." "All right--that'll do. Only if you get married I'll be more lonesomer than ever." "No you won't. You'll come and live with me. Now stir out of this and we'll go to digging." They worked and sweated for half an hour. No result. They toiled another half-hour. Still no result. Huck said: "Do they always bury it as deep as this?" "Sometimes--not always. Not generally. I reckon we haven't got the right place." So they chose a new spot and began again. The labor dragged a little, but still they made progress. They pegged away in silence for some time. Finally Huck leaned on his shovel, swabbed the beaded drops from his brow with his sleeve, and said: "Where you going to dig next, after we get this one?" "I reckon maybe we'll tackle the old tree that's over yonder on Cardiff Hill back of the widow's." "I reckon that'll be a good one. But won't the widow take it away from us, Tom? It's on her land." "SHE take it away! Maybe she'd like to try it once. Whoever finds one of these hid treasures, it belongs to him. It don't make any difference whose land it's on." That was satisfactory. The work went on. By and by Huck said: "Blame it, we must be in the wrong place again. What do you think?" "It is mighty curious, Huck. I don't understand it. Sometimes witches interfere. I reckon maybe that's what's the trouble now." "Shucks! Witches ain't got no power in the daytime." "Well, that's so. I didn't think of that. Oh, I know what the matter is! What a blamed lot of fools we are! You got to find out where the shadow of the limb falls at midnight, and that's where you dig!" "Then consound it, we've fooled away all this work for nothing. Now hang it all, we got to come back in the night. It's an awful long way. Can you get out?" "I bet I will. We've got to do it to-night, too, because if somebody sees these holes they'll know in a minute what's here and they'll go for it." "Well, I'll come around and maow to-night." "All right. Let's hide the tools in the bushes." The boys were there that night, about the appointed time. They sat in the shadow waiting. It was a lonely place, and an hour made solemn by old traditions. Spirits whispered in the rustling leaves, ghosts lurked in the murky nooks, the deep baying of a hound floated up out of the distance, an owl answered with his sepulchral note. The boys were subdued by these solemnities, and talked little. By and by they judged that twelve had come; they marked where the shadow fell, and began to dig. Their hopes commenced to rise. Their interest grew stronger, and their industry kept pace with it. The hole deepened and still deepened, but every time their hearts jumped to hear the pick strike upon something, they only suffered a new disappointment. It was only a stone or a chunk. At last Tom said: "It ain't any use, Huck, we're wrong again." "Well, but we CAN'T be wrong. We spotted the shadder to a dot." "I know it, but then there's another thing." "What's that?". "Why, we only guessed at the time. Like enough it was too late or too early." Huck dropped his shovel. "That's it," said he. "That's the very trouble. We got to give this one up. We can't ever tell the right time, and besides this kind of thing's too awful, here this time of night with witches and ghosts a-fluttering around so. I feel as if something's behind me all the time; and I'm afeard to turn around, becuz maybe there's others in front a-waiting for a chance. I been creeping all over, ever since I got here." "Well, I've been pretty much so, too, Huck. They most always put in a dead man when they bury a treasure under a tree, to look out for it." "Lordy!" "Yes, they do. I've always heard that." "Tom, I don't like to fool around much where there's dead people. A body's bound to get into trouble with 'em, sure." "I don't like to stir 'em up, either. S'pose this one here was to stick his skull out and say something!" "Don't Tom! It's awful." "Well, it just is. Huck, I don't feel comfortable a bit." "Say, Tom, let's give this place up, and try somewheres else." "All right, I reckon we better." "What'll it be?" Tom considered awhile; and then said: "The ha'nted house. That's it!" "Blame it, I don't like ha'nted houses, Tom. Why, they're a dern sight worse'n dead people. Dead people might talk, maybe, but they don't come sliding around in a shroud, when you ain't noticing, and peep over your shoulder all of a sudden and grit their teeth, the way a ghost does. I couldn't stand such a thing as that, Tom--nobody could." "Yes, but, Huck, ghosts don't travel around only at night. They won't hender us from digging there in the daytime." "Well, that's so. But you know mighty well people don't go about that ha'nted house in the day nor the night." "Well, that's mostly because they don't like to go where a man's been murdered, anyway--but nothing's ever been seen around that house except in the night--just some blue lights slipping by the windows--no regular ghosts." "Well, where you see one of them blue lights flickering around, Tom, you can bet there's a ghost mighty close behind it. It stands to reason. Becuz you know that they don't anybody but ghosts use 'em." "Yes, that's so. But anyway they don't come around in the daytime, so what's the use of our being afeard?" "Well, all right. We'll tackle the ha'nted house if you say so--but I reckon it's taking chances." They had started down the hill by this time. There in the middle of the moonlit valley below them stood the "ha'nted" house, utterly isolated, its fences gone long ago, rank weeds smothering the very doorsteps, the chimney crumbled to ruin, the window-sashes vacant, a corner of the roof caved in. The boys gazed awhile, half expecting to see a blue light flit past a window; then talking in a low tone, as befitted the time and the circumstances, they struck far off to the right, to give the haunted house a wide berth, and took their way homeward through the woods that adorned the rearward side of Cardiff Hill. CHAPTER XXVI ABOUT noon the next day the boys arrived at the dead tree; they had come for their tools. Tom was impatient to go to the haunted house; Huck was measurably so, also--but suddenly said: "Lookyhere, Tom, do you know what day it is?" Tom mentally ran over the days of the week, and then quickly lifted his eyes with a startled look in them-- "My! I never once thought of it, Huck!" "Well, I didn't neither, but all at once it popped onto me that it was Friday." "Blame it, a body can't be too careful, Huck. We might 'a' got into an awful scrape, tackling such a thing on a Friday." "MIGHT! Better say we WOULD! There's some lucky days, maybe, but Friday ain't." "Any fool knows that. I don't reckon YOU was the first that found it out, Huck." "Well, I never said I was, did I? And Friday ain't all, neither. I had a rotten bad dream last night--dreampt about rats." "No! Sure sign of trouble. Did they fight?" "No." "Well, that's good, Huck. When they don't fight it's only a sign that there's trouble around, you know. All we got to do is to look mighty sharp and keep out of it. We'll drop this thing for to-day, and play. Do you know Robin Hood, Huck?" "No. Who's Robin Hood?" "Why, he was one of the greatest men that was ever in England--and the best. He was a robber." "Cracky, I wisht I was. Who did he rob?" "Only sheriffs and bishops and rich people and kings, and such like. But he never bothered the poor. He loved 'em. He always divided up with 'em perfectly square." "Well, he must 'a' been a brick." "I bet you he was, Huck. Oh, he was the noblest man that ever was. They ain't any such men now, I can tell you. He could lick any man in England, with one hand tied behind him; and he could take his yew bow and plug a ten-cent piece every time, a mile and a half." "What's a YEW bow?" "I don't know. It's some kind of a bow, of course. And if he hit that dime only on the edge he would set down and cry--and curse. But we'll play Robin Hood--it's nobby fun. I'll learn you." "I'm agreed." So they played Robin Hood all the afternoon, now and then casting a yearning eye down upon the haunted house and passing a remark about the morrow's prospects and possibilities there. As the sun began to sink into the west they took their way homeward athwart the long shadows of the trees and soon were buried from sight in the forests of Cardiff Hill. On Saturday, shortly after noon, the boys were at the dead tree again. They had a smoke and a chat in the shade, and then dug a little in their last hole, not with great hope, but merely because Tom said there were so many cases where people had given up a treasure after getting down within six inches of it, and then somebody else had come along and turned it up with a single thrust of a shovel. The thing failed this time, however, so the boys shouldered their tools and went away feeling that they had not trifled with fortune, but had fulfilled all the requirements that belong to the business of treasure-hunting. When they reached the haunted house there was something so weird and grisly about the dead silence that reigned there under the baking sun, and something so depressing about the loneliness and desolation of the place, that they were afraid, for a moment, to venture in. Then they crept to the door and took a trembling peep. They saw a weed-grown, floorless room, unplastered, an ancient fireplace, vacant windows, a ruinous staircase; and here, there, and everywhere hung ragged and abandoned cobwebs. They presently entered, softly, with quickened pulses, talking in whispers, ears alert to catch the slightest sound, and muscles tense and ready for instant retreat. In a little while familiarity modified their fears and they gave the place a critical and interested examination, rather admiring their own boldness, and wondering at it, too. Next they wanted to look up-stairs. This was something like cutting off retreat, but they got to daring each other, and of course there could be but one result--they threw their tools into a corner and made the ascent. Up there were the same signs of decay. In one corner they found a closet that promised mystery, but the promise was a fraud--there was nothing in it. Their courage was up now and well in hand. They were about to go down and begin work when-- "Sh!" said Tom. "What is it?" whispered Huck, blanching with fright. "Sh!... There!... Hear it?" "Yes!... Oh, my! Let's run!" "Keep still! Don't you budge! They're coming right toward the door." The boys stretched themselves upon the floor with their eyes to knot-holes in the planking, and lay waiting, in a misery of fear. "They've stopped.... No--coming.... Here they are. Don't whisper another word, Huck. My goodness, I wish I was out of this!" Two men entered. Each boy said to himself: "There's the old deaf and dumb Spaniard that's been about town once or twice lately--never saw t'other man before." "T'other" was a ragged, unkempt creature, with nothing very pleasant in his face. The Spaniard was wrapped in a serape; he had bushy white whiskers; long white hair flowed from under his sombrero, and he wore green goggles. When they came in, "t'other" was talking in a low voice; they sat down on the ground, facing the door, with their backs to the wall, and the speaker continued his remarks. His manner became less guarded and his words more distinct as he proceeded: "No," said he, "I've thought it all over, and I don't like it. It's dangerous." "Dangerous!" grunted the "deaf and dumb" Spaniard--to the vast surprise of the boys. "Milksop!" This voice made the boys gasp and quake. It was Injun Joe's! There was silence for some time. Then Joe said: "What's any more dangerous than that job up yonder--but nothing's come of it." "That's different. Away up the river so, and not another house about. 'Twon't ever be known that we tried, anyway, long as we didn't succeed." "Well, what's more dangerous than coming here in the daytime!--anybody would suspicion us that saw us." "I know that. But there warn't any other place as handy after that fool of a job. I want to quit this shanty. I wanted to yesterday, only it warn't any use trying to stir out of here, with those infernal boys playing over there on the hill right in full view." "Those infernal boys" quaked again under the inspiration of this remark, and thought how lucky it was that they had remembered it was Friday and concluded to wait a day. They wished in their hearts they had waited a year. The two men got out some food and made a luncheon. After a long and thoughtful silence, Injun Joe said: "Look here, lad--you go back up the river where you belong. Wait there till you hear from me. I'll take the chances on dropping into this town just once more, for a look. We'll do that 'dangerous' job after I've spied around a little and think things look well for it. Then for Texas! We'll leg it together!" This was satisfactory. Both men presently fell to yawning, and Injun Joe said: "I'm dead for sleep! It's your turn to watch." He curled down in the weeds and soon began to snore. His comrade stirred him once or twice and he became quiet. Presently the watcher began to nod; his head drooped lower and lower, both men began to snore now. The boys drew a long, grateful breath. Tom whispered: "Now's our chance--come!" Huck said: "I can't--I'd die if they was to wake." Tom urged--Huck held back. At last Tom rose slowly and softly, and started alone. But the first step he made wrung such a hideous creak from the crazy floor that he sank down almost dead with fright. He never made a second attempt. The boys lay there counting the dragging moments till it seemed to them that time must be done and eternity growing gray; and then they were grateful to note that at last the sun was setting. Now one snore ceased. Injun Joe sat up, stared around--smiled grimly upon his comrade, whose head was drooping upon his knees--stirred him up with his foot and said: "Here! YOU'RE a watchman, ain't you! All right, though--nothing's happened." "My! have I been asleep?" "Oh, partly, partly. Nearly time for us to be moving, pard. What'll we do with what little swag we've got left?" "I don't know--leave it here as we've always done, I reckon. No use to take it away till we start south. Six hundred and fifty in silver's something to carry." "Well--all right--it won't matter to come here once more." "No--but I'd say come in the night as we used to do--it's better." "Yes: but look here; it may be a good while before I get the right chance at that job; accidents might happen; 'tain't in such a very good place; we'll just regularly bury it--and bury it deep." "Good idea," said the comrade, who walked across the room, knelt down, raised one of the rearward hearth-stones and took out a bag that jingled pleasantly. He subtracted from it twenty or thirty dollars for himself and as much for Injun Joe, and passed the bag to the latter, who was on his knees in the corner, now, digging with his bowie-knife. The boys forgot all their fears, all their miseries in an instant. With gloating eyes they watched every movement. Luck!--the splendor of it was beyond all imagination! Six hundred dollars was money enough to make half a dozen boys rich! Here was treasure-hunting under the happiest auspices--there would not be any bothersome uncertainty as to where to dig. They nudged each other every moment--eloquent nudges and easily understood, for they simply meant--"Oh, but ain't you glad NOW we're here!" Joe's knife struck upon something. "Hello!" said he. "What is it?" said his comrade. "Half-rotten plank--no, it's a box, I believe. Here--bear a hand and we'll see what it's here for. Never mind, I've broke a hole." He reached his hand in and drew it out-- "Man, it's money!" The two men examined the handful of coins. They were gold. The boys above were as excited as themselves, and as delighted. Joe's comrade said: "We'll make quick work of this. There's an old rusty pick over amongst the weeds in the corner the other side of the fireplace--I saw it a minute ago." He ran and brought the boys' pick and shovel. Injun Joe took the pick, looked it over critically, shook his head, muttered something to himself, and then began to use it. The box was soon unearthed. It was not very large; it was iron bound and had been very strong before the slow years had injured it. The men contemplated the treasure awhile in blissful silence. "Pard, there's thousands of dollars here," said Injun Joe. "'Twas always said that Murrel's gang used to be around here one summer," the stranger observed. "I know it," said Injun Joe; "and this looks like it, I should say." "Now you won't need to do that job." The half-breed frowned. Said he: "You don't know me. Least you don't know all about that thing. 'Tain't robbery altogether--it's REVENGE!" and a wicked light flamed in his eyes. "I'll need your help in it. When it's finished--then Texas. Go home to your Nance and your kids, and stand by till you hear from me." "Well--if you say so; what'll we do with this--bury it again?" "Yes. [Ravishing delight overhead.] NO! by the great Sachem, no! [Profound distress overhead.] I'd nearly forgot. That pick had fresh earth on it! [The boys were sick with terror in a moment.] What business has a pick and a shovel here? What business with fresh earth on them? Who brought them here--and where are they gone? Have you heard anybody?--seen anybody? What! bury it again and leave them to come and see the ground disturbed? Not exactly--not exactly. We'll take it to my den." "Why, of course! Might have thought of that before. You mean Number One?" "No--Number Two--under the cross. The other place is bad--too common." "All right. It's nearly dark enough to start." Injun Joe got up and went about from window to window cautiously peeping out. Presently he said: "Who could have brought those tools here? Do you reckon they can be up-stairs?" The boys' breath forsook them. Injun Joe put his hand on his knife, halted a moment, undecided, and then turned toward the stairway. The boys thought of the closet, but their strength was gone. The steps came creaking up the stairs--the intolerable distress of the situation woke the stricken resolution of the lads--they were about to spring for the closet, when there was a crash of rotten timbers and Injun Joe landed on the ground amid the debris of the ruined stairway. He gathered himself up cursing, and his comrade said: "Now what's the use of all that? If it's anybody, and they're up there, let them STAY there--who cares? If they want to jump down, now, and get into trouble, who objects? It will be dark in fifteen minutes --and then let them follow us if they want to. I'm willing. In my opinion, whoever hove those things in here caught a sight of us and took us for ghosts or devils or something. I'll bet they're running yet." Joe grumbled awhile; then he agreed with his friend that what daylight was left ought to be economized in getting things ready for leaving. Shortly afterward they slipped out of the house in the deepening twilight, and moved toward the river with their precious box. Tom and Huck rose up, weak but vastly relieved, and stared after them through the chinks between the logs of the house. Follow? Not they. They were content to reach ground again without broken necks, and take the townward track over the hill. They did not talk much. They were too much absorbed in hating themselves--hating the ill luck that made them take the spade and the pick there. But for that, Injun Joe never would have suspected. He would have hidden the silver with the gold to wait there till his "revenge" was satisfied, and then he would have had the misfortune to find that money turn up missing. Bitter, bitter luck that the tools were ever brought there! They resolved to keep a lookout for that Spaniard when he should come to town spying out for chances to do his revengeful job, and follow him to "Number Two," wherever that might be. Then a ghastly thought occurred to Tom. "Revenge? What if he means US, Huck!" "Oh, don't!" said Huck, nearly fainting. They talked it all over, and as they entered town they agreed to believe that he might possibly mean somebody else--at least that he might at least mean nobody but Tom, since only Tom had testified. Very, very small comfort it was to Tom to be alone in danger! Company would be a palpable improvement, he thought. CHAPTER XXVII THE adventure of the day mightily tormented Tom's dreams that night. Four times he had his hands on that rich treasure and four times it wasted to nothingness in his fingers as sleep forsook him and wakefulness brought back the hard reality of his misfortune. As he lay in the early morning recalling the incidents of his great adventure, he noticed that they seemed curiously subdued and far away--somewhat as if they had happened in another world, or in a time long gone by. Then it occurred to him that the great adventure itself must be a dream! There was one very strong argument in favor of this idea--namely, that the quantity of coin he had seen was too vast to be real. He had never seen as much as fifty dollars in one mass before, and he was like all boys of his age and station in life, in that he imagined that all references to "hundreds" and "thousands" were mere fanciful forms of speech, and that no such sums really existed in the world. He never had supposed for a moment that so large a sum as a hundred dollars was to be found in actual money in any one's possession. If his notions of hidden treasure had been analyzed, they would have been found to consist of a handful of real dimes and a bushel of vague, splendid, ungraspable dollars. But the incidents of his adventure grew sensibly sharper and clearer under the attrition of thinking them over, and so he presently found himself leaning to the impression that the thing might not have been a dream, after all. This uncertainty must be swept away. He would snatch a hurried breakfast and go and find Huck. Huck was sitting on the gunwale of a flatboat, listlessly dangling his feet in the water and looking very melancholy. Tom concluded to let Huck lead up to the subject. If he did not do it, then the adventure would be proved to have been only a dream. "Hello, Huck!" "Hello, yourself." Silence, for a minute. "Tom, if we'd 'a' left the blame tools at the dead tree, we'd 'a' got the money. Oh, ain't it awful!" "'Tain't a dream, then, 'tain't a dream! Somehow I most wish it was. Dog'd if I don't, Huck." "What ain't a dream?" "Oh, that thing yesterday. I been half thinking it was." "Dream! If them stairs hadn't broke down you'd 'a' seen how much dream it was! I've had dreams enough all night--with that patch-eyed Spanish devil going for me all through 'em--rot him!" "No, not rot him. FIND him! Track the money!" "Tom, we'll never find him. A feller don't have only one chance for such a pile--and that one's lost. I'd feel mighty shaky if I was to see him, anyway." "Well, so'd I; but I'd like to see him, anyway--and track him out--to his Number Two." "Number Two--yes, that's it. I been thinking 'bout that. But I can't make nothing out of it. What do you reckon it is?" "I dono. It's too deep. Say, Huck--maybe it's the number of a house!" "Goody!... No, Tom, that ain't it. If it is, it ain't in this one-horse town. They ain't no numbers here." "Well, that's so. Lemme think a minute. Here--it's the number of a room--in a tavern, you know!" "Oh, that's the trick! They ain't only two taverns. We can find out quick." "You stay here, Huck, till I come." Tom was off at once. He did not care to have Huck's company in public places. He was gone half an hour. He found that in the best tavern, No. 2 had long been occupied by a young lawyer, and was still so occupied. In the less ostentatious house, No. 2 was a mystery. The tavern-keeper's young son said it was kept locked all the time, and he never saw anybody go into it or come out of it except at night; he did not know any particular reason for this state of things; had had some little curiosity, but it was rather feeble; had made the most of the mystery by entertaining himself with the idea that that room was "ha'nted"; had noticed that there was a light in there the night before. "That's what I've found out, Huck. I reckon that's the very No. 2 we're after." "I reckon it is, Tom. Now what you going to do?" "Lemme think." Tom thought a long time. Then he said: "I'll tell you. The back door of that No. 2 is the door that comes out into that little close alley between the tavern and the old rattle trap of a brick store. Now you get hold of all the door-keys you can find, and I'll nip all of auntie's, and the first dark night we'll go there and try 'em. And mind you, keep a lookout for Injun Joe, because he said he was going to drop into town and spy around once more for a chance to get his revenge. If you see him, you just follow him; and if he don't go to that No. 2, that ain't the place." "Lordy, I don't want to foller him by myself!" "Why, it'll be night, sure. He mightn't ever see you--and if he did, maybe he'd never think anything." "Well, if it's pretty dark I reckon I'll track him. I dono--I dono. I'll try." "You bet I'll follow him, if it's dark, Huck. Why, he might 'a' found out he couldn't get his revenge, and be going right after that money." "It's so, Tom, it's so. I'll foller him; I will, by jingoes!" "Now you're TALKING! Don't you ever weaken, Huck, and I won't." CHAPTER XXVIII THAT night Tom and Huck were ready for their adventure. They hung about the neighborhood of the tavern until after nine, one watching the alley at a distance and the other the tavern door. Nobody entered the alley or left it; nobody resembling the Spaniard entered or left the tavern door. The night promised to be a fair one; so Tom went home with the understanding that if a considerable degree of darkness came on, Huck was to come and "maow," whereupon he would slip out and try the keys. But the night remained clear, and Huck closed his watch and retired to bed in an empty sugar hogshead about twelve. Tuesday the boys had the same ill luck. Also Wednesday. But Thursday night promised better. Tom slipped out in good season with his aunt's old tin lantern, and a large towel to blindfold it with. He hid the lantern in Huck's sugar hogshead and the watch began. An hour before midnight the tavern closed up and its lights (the only ones thereabouts) were put out. No Spaniard had been seen. Nobody had entered or left the alley. Everything was auspicious. The blackness of darkness reigned, the perfect stillness was interrupted only by occasional mutterings of distant thunder. Tom got his lantern, lit it in the hogshead, wrapped it closely in the towel, and the two adventurers crept in the gloom toward the tavern. Huck stood sentry and Tom felt his way into the alley. Then there was a season of waiting anxiety that weighed upon Huck's spirits like a mountain. He began to wish he could see a flash from the lantern--it would frighten him, but it would at least tell him that Tom was alive yet. It seemed hours since Tom had disappeared. Surely he must have fainted; maybe he was dead; maybe his heart had burst under terror and excitement. In his uneasiness Huck found himself drawing closer and closer to the alley; fearing all sorts of dreadful things, and momentarily expecting some catastrophe to happen that would take away his breath. There was not much to take away, for he seemed only able to inhale it by thimblefuls, and his heart would soon wear itself out, the way it was beating. Suddenly there was a flash of light and Tom came tearing by him: "Run!" said he; "run, for your life!" He needn't have repeated it; once was enough; Huck was making thirty or forty miles an hour before the repetition was uttered. The boys never stopped till they reached the shed of a deserted slaughter-house at the lower end of the village. Just as they got within its shelter the storm burst and the rain poured down. As soon as Tom got his breath he said: "Huck, it was awful! I tried two of the keys, just as soft as I could; but they seemed to make such a power of racket that I couldn't hardly get my breath I was so scared. They wouldn't turn in the lock, either. Well, without noticing what I was doing, I took hold of the knob, and open comes the door! It warn't locked! I hopped in, and shook off the towel, and, GREAT CAESAR'S GHOST!" "What!--what'd you see, Tom?" "Huck, I most stepped onto Injun Joe's hand!" "No!" "Yes! He was lying there, sound asleep on the floor, with his old patch on his eye and his arms spread out." "Lordy, what did you do? Did he wake up?" "No, never budged. Drunk, I reckon. I just grabbed that towel and started!" "I'd never 'a' thought of the towel, I bet!" "Well, I would. My aunt would make me mighty sick if I lost it." "Say, Tom, did you see that box?" "Huck, I didn't wait to look around. I didn't see the box, I didn't see the cross. I didn't see anything but a bottle and a tin cup on the floor by Injun Joe; yes, I saw two barrels and lots more bottles in the room. Don't you see, now, what's the matter with that ha'nted room?" "How?" "Why, it's ha'nted with whiskey! Maybe ALL the Temperance Taverns have got a ha'nted room, hey, Huck?" "Well, I reckon maybe that's so. Who'd 'a' thought such a thing? But say, Tom, now's a mighty good time to get that box, if Injun Joe's drunk." "It is, that! You try it!" Huck shuddered. "Well, no--I reckon not." "And I reckon not, Huck. Only one bottle alongside of Injun Joe ain't enough. If there'd been three, he'd be drunk enough and I'd do it." There was a long pause for reflection, and then Tom said: "Lookyhere, Huck, less not try that thing any more till we know Injun Joe's not in there. It's too scary. Now, if we watch every night, we'll be dead sure to see him go out, some time or other, and then we'll snatch that box quicker'n lightning." "Well, I'm agreed. I'll watch the whole night long, and I'll do it every night, too, if you'll do the other part of the job." "All right, I will. All you got to do is to trot up Hooper Street a block and maow--and if I'm asleep, you throw some gravel at the window and that'll fetch me." "Agreed, and good as wheat!" "Now, Huck, the storm's over, and I'll go home. It'll begin to be daylight in a couple of hours. You go back and watch that long, will you?" "I said I would, Tom, and I will. I'll ha'nt that tavern every night for a year! I'll sleep all day and I'll stand watch all night." "That's all right. Now, where you going to sleep?" "In Ben Rogers' hayloft. He lets me, and so does his pap's nigger man, Uncle Jake. I tote water for Uncle Jake whenever he wants me to, and any time I ask him he gives me a little something to eat if he can spare it. That's a mighty good nigger, Tom. He likes me, becuz I don't ever act as if I was above him. Sometime I've set right down and eat WITH him. But you needn't tell that. A body's got to do things when he's awful hungry he wouldn't want to do as a steady thing." "Well, if I don't want you in the daytime, I'll let you sleep. I won't come bothering around. Any time you see something's up, in the night, just skip right around and maow." CHAPTER XXIX THE first thing Tom heard on Friday morning was a glad piece of news --Judge Thatcher's family had come back to town the night before. Both Injun Joe and the treasure sunk into secondary importance for a moment, and Becky took the chief place in the boy's interest. He saw her and they had an exhausting good time playing "hi-spy" and "gully-keeper" with a crowd of their school-mates. The day was completed and crowned in a peculiarly satisfactory way: Becky teased her mother to appoint the next day for the long-promised and long-delayed picnic, and she consented. The child's delight was boundless; and Tom's not more moderate. The invitations were sent out before sunset, and straightway the young folks of the village were thrown into a fever of preparation and pleasurable anticipation. Tom's excitement enabled him to keep awake until a pretty late hour, and he had good hopes of hearing Huck's "maow," and of having his treasure to astonish Becky and the picnickers with, next day; but he was disappointed. No signal came that night. Morning came, eventually, and by ten or eleven o'clock a giddy and rollicking company were gathered at Judge Thatcher's, and everything was ready for a start. It was not the custom for elderly people to mar the picnics with their presence. The children were considered safe enough under the wings of a few young ladies of eighteen and a few young gentlemen of twenty-three or thereabouts. The old steam ferryboat was chartered for the occasion; presently the gay throng filed up the main street laden with provision-baskets. Sid was sick and had to miss the fun; Mary remained at home to entertain him. The last thing Mrs. Thatcher said to Becky, was: "You'll not get back till late. Perhaps you'd better stay all night with some of the girls that live near the ferry-landing, child." "Then I'll stay with Susy Harper, mamma." "Very well. And mind and behave yourself and don't be any trouble." Presently, as they tripped along, Tom said to Becky: "Say--I'll tell you what we'll do. 'Stead of going to Joe Harper's we'll climb right up the hill and stop at the Widow Douglas'. She'll have ice-cream! She has it most every day--dead loads of it. And she'll be awful glad to have us." "Oh, that will be fun!" Then Becky reflected a moment and said: "But what will mamma say?" "How'll she ever know?" The girl turned the idea over in her mind, and said reluctantly: "I reckon it's wrong--but--" "But shucks! Your mother won't know, and so what's the harm? All she wants is that you'll be safe; and I bet you she'd 'a' said go there if she'd 'a' thought of it. I know she would!" The Widow Douglas' splendid hospitality was a tempting bait. It and Tom's persuasions presently carried the day. So it was decided to say nothing anybody about the night's programme. Presently it occurred to Tom that maybe Huck might come this very night and give the signal. The thought took a deal of the spirit out of his anticipations. Still he could not bear to give up the fun at Widow Douglas'. And why should he give it up, he reasoned--the signal did not come the night before, so why should it be any more likely to come to-night? The sure fun of the evening outweighed the uncertain treasure; and, boy-like, he determined to yield to the stronger inclination and not allow himself to think of the box of money another time that day. Three miles below town the ferryboat stopped at the mouth of a woody hollow and tied up. The crowd swarmed ashore and soon the forest distances and craggy heights echoed far and near with shoutings and laughter. All the different ways of getting hot and tired were gone through with, and by-and-by the rovers straggled back to camp fortified with responsible appetites, and then the destruction of the good things began. After the feast there was a refreshing season of rest and chat in the shade of spreading oaks. By-and-by somebody shouted: "Who's ready for the cave?" Everybody was. Bundles of candles were procured, and straightway there was a general scamper up the hill. The mouth of the cave was up the hillside--an opening shaped like a letter A. Its massive oaken door stood unbarred. Within was a small chamber, chilly as an ice-house, and walled by Nature with solid limestone that was dewy with a cold sweat. It was romantic and mysterious to stand here in the deep gloom and look out upon the green valley shining in the sun. But the impressiveness of the situation quickly wore off, and the romping began again. The moment a candle was lighted there was a general rush upon the owner of it; a struggle and a gallant defence followed, but the candle was soon knocked down or blown out, and then there was a glad clamor of laughter and a new chase. But all things have an end. By-and-by the procession went filing down the steep descent of the main avenue, the flickering rank of lights dimly revealing the lofty walls of rock almost to their point of junction sixty feet overhead. This main avenue was not more than eight or ten feet wide. Every few steps other lofty and still narrower crevices branched from it on either hand--for McDougal's cave was but a vast labyrinth of crooked aisles that ran into each other and out again and led nowhere. It was said that one might wander days and nights together through its intricate tangle of rifts and chasms, and never find the end of the cave; and that he might go down, and down, and still down, into the earth, and it was just the same--labyrinth under labyrinth, and no end to any of them. No man "knew" the cave. That was an impossible thing. Most of the young men knew a portion of it, and it was not customary to venture much beyond this known portion. Tom Sawyer knew as much of the cave as any one. The procession moved along the main avenue some three-quarters of a mile, and then groups and couples began to slip aside into branch avenues, fly along the dismal corridors, and take each other by surprise at points where the corridors joined again. Parties were able to elude each other for the space of half an hour without going beyond the "known" ground. By-and-by, one group after another came straggling back to the mouth of the cave, panting, hilarious, smeared from head to foot with tallow drippings, daubed with clay, and entirely delighted with the success of the day. Then they were astonished to find that they had been taking no note of time and that night was about at hand. The clanging bell had been calling for half an hour. However, this sort of close to the day's adventures was romantic and therefore satisfactory. When the ferryboat with her wild freight pushed into the stream, nobody cared sixpence for the wasted time but the captain of the craft. Huck was already upon his watch when the ferryboat's lights went glinting past the wharf. He heard no noise on board, for the young people were as subdued and still as people usually are who are nearly tired to death. He wondered what boat it was, and why she did not stop at the wharf--and then he dropped her out of his mind and put his attention upon his business. The night was growing cloudy and dark. Ten o'clock came, and the noise of vehicles ceased, scattered lights began to wink out, all straggling foot-passengers disappeared, the village betook itself to its slumbers and left the small watcher alone with the silence and the ghosts. Eleven o'clock came, and the tavern lights were put out; darkness everywhere, now. Huck waited what seemed a weary long time, but nothing happened. His faith was weakening. Was there any use? Was there really any use? Why not give it up and turn in? A noise fell upon his ear. He was all attention in an instant. The alley door closed softly. He sprang to the corner of the brick store. The next moment two men brushed by him, and one seemed to have something under his arm. It must be that box! So they were going to remove the treasure. Why call Tom now? It would be absurd--the men would get away with the box and never be found again. No, he would stick to their wake and follow them; he would trust to the darkness for security from discovery. So communing with himself, Huck stepped out and glided along behind the men, cat-like, with bare feet, allowing them to keep just far enough ahead not to be invisible. They moved up the river street three blocks, then turned to the left up a cross-street. They went straight ahead, then, until they came to the path that led up Cardiff Hill; this they took. They passed by the old Welshman's house, half-way up the hill, without hesitating, and still climbed upward. Good, thought Huck, they will bury it in the old quarry. But they never stopped at the quarry. They passed on, up the summit. They plunged into the narrow path between the tall sumach bushes, and were at once hidden in the gloom. Huck closed up and shortened his distance, now, for they would never be able to see him. He trotted along awhile; then slackened his pace, fearing he was gaining too fast; moved on a piece, then stopped altogether; listened; no sound; none, save that he seemed to hear the beating of his own heart. The hooting of an owl came over the hill--ominous sound! But no footsteps. Heavens, was everything lost! He was about to spring with winged feet, when a man cleared his throat not four feet from him! Huck's heart shot into his throat, but he swallowed it again; and then he stood there shaking as if a dozen agues had taken charge of him at once, and so weak that he thought he must surely fall to the ground. He knew where he was. He knew he was within five steps of the stile leading into Widow Douglas' grounds. Very well, he thought, let them bury it there; it won't be hard to find. Now there was a voice--a very low voice--Injun Joe's: "Damn her, maybe she's got company--there's lights, late as it is." "I can't see any." This was that stranger's voice--the stranger of the haunted house. A deadly chill went to Huck's heart--this, then, was the "revenge" job! His thought was, to fly. Then he remembered that the Widow Douglas had been kind to him more than once, and maybe these men were going to murder her. He wished he dared venture to warn her; but he knew he didn't dare--they might come and catch him. He thought all this and more in the moment that elapsed between the stranger's remark and Injun Joe's next--which was-- "Because the bush is in your way. Now--this way--now you see, don't you?" "Yes. Well, there IS company there, I reckon. Better give it up." "Give it up, and I just leaving this country forever! Give it up and maybe never have another chance. I tell you again, as I've told you before, I don't care for her swag--you may have it. But her husband was rough on me--many times he was rough on me--and mainly he was the justice of the peace that jugged me for a vagrant. And that ain't all. It ain't a millionth part of it! He had me HORSEWHIPPED!--horsewhipped in front of the jail, like a nigger!--with all the town looking on! HORSEWHIPPED!--do you understand? He took advantage of me and died. But I'll take it out of HER." "Oh, don't kill her! Don't do that!" "Kill? Who said anything about killing? I would kill HIM if he was here; but not her. When you want to get revenge on a woman you don't kill her--bosh! you go for her looks. You slit her nostrils--you notch her ears like a sow!" "By God, that's--" "Keep your opinion to yourself! It will be safest for you. I'll tie her to the bed. If she bleeds to death, is that my fault? I'll not cry, if she does. My friend, you'll help me in this thing--for MY sake --that's why you're here--I mightn't be able alone. If you flinch, I'll kill you. Do you understand that? And if I have to kill you, I'll kill her--and then I reckon nobody'll ever know much about who done this business." "Well, if it's got to be done, let's get at it. The quicker the better--I'm all in a shiver." "Do it NOW? And company there? Look here--I'll get suspicious of you, first thing you know. No--we'll wait till the lights are out--there's no hurry." Huck felt that a silence was going to ensue--a thing still more awful than any amount of murderous talk; so he held his breath and stepped gingerly back; planted his foot carefully and firmly, after balancing, one-legged, in a precarious way and almost toppling over, first on one side and then on the other. He took another step back, with the same elaboration and the same risks; then another and another, and--a twig snapped under his foot! His breath stopped and he listened. There was no sound--the stillness was perfect. His gratitude was measureless. Now he turned in his tracks, between the walls of sumach bushes--turned himself as carefully as if he were a ship--and then stepped quickly but cautiously along. When he emerged at the quarry he felt secure, and so he picked up his nimble heels and flew. Down, down he sped, till he reached the Welshman's. He banged at the door, and presently the heads of the old man and his two stalwart sons were thrust from windows. "What's the row there? Who's banging? What do you want?" "Let me in--quick! I'll tell everything." "Why, who are you?" "Huckleberry Finn--quick, let me in!" "Huckleberry Finn, indeed! It ain't a name to open many doors, I judge! But let him in, lads, and let's see what's the trouble." "Please don't ever tell I told you," were Huck's first words when he got in. "Please don't--I'd be killed, sure--but the widow's been good friends to me sometimes, and I want to tell--I WILL tell if you'll promise you won't ever say it was me." "By George, he HAS got something to tell, or he wouldn't act so!" exclaimed the old man; "out with it and nobody here'll ever tell, lad." Three minutes later the old man and his sons, well armed, were up the hill, and just entering the sumach path on tiptoe, their weapons in their hands. Huck accompanied them no further. He hid behind a great bowlder and fell to listening. There was a lagging, anxious silence, and then all of a sudden there was an explosion of firearms and a cry. Huck waited for no particulars. He sprang away and sped down the hill as fast as his legs could carry him. CHAPTER XXX AS the earliest suspicion of dawn appeared on Sunday morning, Huck came groping up the hill and rapped gently at the old Welshman's door. The inmates were asleep, but it was a sleep that was set on a hair-trigger, on account of the exciting episode of the night. A call came from a window: "Who's there!" Huck's scared voice answered in a low tone: "Please let me in! It's only Huck Finn!" "It's a name that can open this door night or day, lad!--and welcome!" These were strange words to the vagabond boy's ears, and the pleasantest he had ever heard. He could not recollect that the closing word had ever been applied in his case before. The door was quickly unlocked, and he entered. Huck was given a seat and the old man and his brace of tall sons speedily dressed themselves. "Now, my boy, I hope you're good and hungry, because breakfast will be ready as soon as the sun's up, and we'll have a piping hot one, too --make yourself easy about that! I and the boys hoped you'd turn up and stop here last night." "I was awful scared," said Huck, "and I run. I took out when the pistols went off, and I didn't stop for three mile. I've come now becuz I wanted to know about it, you know; and I come before daylight becuz I didn't want to run across them devils, even if they was dead." "Well, poor chap, you do look as if you'd had a hard night of it--but there's a bed here for you when you've had your breakfast. No, they ain't dead, lad--we are sorry enough for that. You see we knew right where to put our hands on them, by your description; so we crept along on tiptoe till we got within fifteen feet of them--dark as a cellar that sumach path was--and just then I found I was going to sneeze. It was the meanest kind of luck! I tried to keep it back, but no use --'twas bound to come, and it did come! I was in the lead with my pistol raised, and when the sneeze started those scoundrels a-rustling to get out of the path, I sung out, 'Fire boys!' and blazed away at the place where the rustling was. So did the boys. But they were off in a jiffy, those villains, and we after them, down through the woods. I judge we never touched them. They fired a shot apiece as they started, but their bullets whizzed by and didn't do us any harm. As soon as we lost the sound of their feet we quit chasing, and went down and stirred up the constables. They got a posse together, and went off to guard the river bank, and as soon as it is light the sheriff and a gang are going to beat up the woods. My boys will be with them presently. I wish we had some sort of description of those rascals--'twould help a good deal. But you couldn't see what they were like, in the dark, lad, I suppose?" "Oh yes; I saw them down-town and follered them." "Splendid! Describe them--describe them, my boy!" "One's the old deaf and dumb Spaniard that's ben around here once or twice, and t'other's a mean-looking, ragged--" "That's enough, lad, we know the men! Happened on them in the woods back of the widow's one day, and they slunk away. Off with you, boys, and tell the sheriff--get your breakfast to-morrow morning!" The Welshman's sons departed at once. As they were leaving the room Huck sprang up and exclaimed: "Oh, please don't tell ANYbody it was me that blowed on them! Oh, please!" "All right if you say it, Huck, but you ought to have the credit of what you did." "Oh no, no! Please don't tell!" When the young men were gone, the old Welshman said: "They won't tell--and I won't. But why don't you want it known?" Huck would not explain, further than to say that he already knew too much about one of those men and would not have the man know that he knew anything against him for the whole world--he would be killed for knowing it, sure. The old man promised secrecy once more, and said: "How did you come to follow these fellows, lad? Were they looking suspicious?" Huck was silent while he framed a duly cautious reply. Then he said: "Well, you see, I'm a kind of a hard lot,--least everybody says so, and I don't see nothing agin it--and sometimes I can't sleep much, on account of thinking about it and sort of trying to strike out a new way of doing. That was the way of it last night. I couldn't sleep, and so I come along up-street 'bout midnight, a-turning it all over, and when I got to that old shackly brick store by the Temperance Tavern, I backed up agin the wall to have another think. Well, just then along comes these two chaps slipping along close by me, with something under their arm, and I reckoned they'd stole it. One was a-smoking, and t'other one wanted a light; so they stopped right before me and the cigars lit up their faces and I see that the big one was the deaf and dumb Spaniard, by his white whiskers and the patch on his eye, and t'other one was a rusty, ragged-looking devil." "Could you see the rags by the light of the cigars?" This staggered Huck for a moment. Then he said: "Well, I don't know--but somehow it seems as if I did." "Then they went on, and you--" "Follered 'em--yes. That was it. I wanted to see what was up--they sneaked along so. I dogged 'em to the widder's stile, and stood in the dark and heard the ragged one beg for the widder, and the Spaniard swear he'd spile her looks just as I told you and your two--" "What! The DEAF AND DUMB man said all that!" Huck had made another terrible mistake! He was trying his best to keep the old man from getting the faintest hint of who the Spaniard might be, and yet his tongue seemed determined to get him into trouble in spite of all he could do. He made several efforts to creep out of his scrape, but the old man's eye was upon him and he made blunder after blunder. Presently the Welshman said: "My boy, don't be afraid of me. I wouldn't hurt a hair of your head for all the world. No--I'd protect you--I'd protect you. This Spaniard is not deaf and dumb; you've let that slip without intending it; you can't cover that up now. You know something about that Spaniard that you want to keep dark. Now trust me--tell me what it is, and trust me --I won't betray you." Huck looked into the old man's honest eyes a moment, then bent over and whispered in his ear: "'Tain't a Spaniard--it's Injun Joe!" The Welshman almost jumped out of his chair. In a moment he said: "It's all plain enough, now. When you talked about notching ears and slitting noses I judged that that was your own embellishment, because white men don't take that sort of revenge. But an Injun! That's a different matter altogether." During breakfast the talk went on, and in the course of it the old man said that the last thing which he and his sons had done, before going to bed, was to get a lantern and examine the stile and its vicinity for marks of blood. They found none, but captured a bulky bundle of-- "Of WHAT?" If the words had been lightning they could not have leaped with a more stunning suddenness from Huck's blanched lips. His eyes were staring wide, now, and his breath suspended--waiting for the answer. The Welshman started--stared in return--three seconds--five seconds--ten --then replied: "Of burglar's tools. Why, what's the MATTER with you?" Huck sank back, panting gently, but deeply, unutterably grateful. The Welshman eyed him gravely, curiously--and presently said: "Yes, burglar's tools. That appears to relieve you a good deal. But what did give you that turn? What were YOU expecting we'd found?" Huck was in a close place--the inquiring eye was upon him--he would have given anything for material for a plausible answer--nothing suggested itself--the inquiring eye was boring deeper and deeper--a senseless reply offered--there was no time to weigh it, so at a venture he uttered it--feebly: "Sunday-school books, maybe." Poor Huck was too distressed to smile, but the old man laughed loud and joyously, shook up the details of his anatomy from head to foot, and ended by saying that such a laugh was money in a-man's pocket, because it cut down the doctor's bill like everything. Then he added: "Poor old chap, you're white and jaded--you ain't well a bit--no wonder you're a little flighty and off your balance. But you'll come out of it. Rest and sleep will fetch you out all right, I hope." Huck was irritated to think he had been such a goose and betrayed such a suspicious excitement, for he had dropped the idea that the parcel brought from the tavern was the treasure, as soon as he had heard the talk at the widow's stile. He had only thought it was not the treasure, however--he had not known that it wasn't--and so the suggestion of a captured bundle was too much for his self-possession. But on the whole he felt glad the little episode had happened, for now he knew beyond all question that that bundle was not THE bundle, and so his mind was at rest and exceedingly comfortable. In fact, everything seemed to be drifting just in the right direction, now; the treasure must be still in No. 2, the men would be captured and jailed that day, and he and Tom could seize the gold that night without any trouble or any fear of interruption. Just as breakfast was completed there was a knock at the door. Huck jumped for a hiding-place, for he had no mind to be connected even remotely with the late event. The Welshman admitted several ladies and gentlemen, among them the Widow Douglas, and noticed that groups of citizens were climbing up the hill--to stare at the stile. So the news had spread. The Welshman had to tell the story of the night to the visitors. The widow's gratitude for her preservation was outspoken. "Don't say a word about it, madam. There's another that you're more beholden to than you are to me and my boys, maybe, but he don't allow me to tell his name. We wouldn't have been there but for him." Of course this excited a curiosity so vast that it almost belittled the main matter--but the Welshman allowed it to eat into the vitals of his visitors, and through them be transmitted to the whole town, for he refused to part with his secret. When all else had been learned, the widow said: "I went to sleep reading in bed and slept straight through all that noise. Why didn't you come and wake me?" "We judged it warn't worth while. Those fellows warn't likely to come again--they hadn't any tools left to work with, and what was the use of waking you up and scaring you to death? My three negro men stood guard at your house all the rest of the night. They've just come back." More visitors came, and the story had to be told and retold for a couple of hours more. There was no Sabbath-school during day-school vacation, but everybody was early at church. The stirring event was well canvassed. News came that not a sign of the two villains had been yet discovered. When the sermon was finished, Judge Thatcher's wife dropped alongside of Mrs. Harper as she moved down the aisle with the crowd and said: "Is my Becky going to sleep all day? I just expected she would be tired to death." "Your Becky?" "Yes," with a startled look--"didn't she stay with you last night?" "Why, no." Mrs. Thatcher turned pale, and sank into a pew, just as Aunt Polly, talking briskly with a friend, passed by. Aunt Polly said: "Good-morning, Mrs. Thatcher. Good-morning, Mrs. Harper. I've got a boy that's turned up missing. I reckon my Tom stayed at your house last night--one of you. And now he's afraid to come to church. I've got to settle with him." Mrs. Thatcher shook her head feebly and turned paler than ever. "He didn't stay with us," said Mrs. Harper, beginning to look uneasy. A marked anxiety came into Aunt Polly's face. "Joe Harper, have you seen my Tom this morning?" "No'm." "When did you see him last?" Joe tried to remember, but was not sure he could say. The people had stopped moving out of church. Whispers passed along, and a boding uneasiness took possession of every countenance. Children were anxiously questioned, and young teachers. They all said they had not noticed whether Tom and Becky were on board the ferryboat on the homeward trip; it was dark; no one thought of inquiring if any one was missing. One young man finally blurted out his fear that they were still in the cave! Mrs. Thatcher swooned away. Aunt Polly fell to crying and wringing her hands. The alarm swept from lip to lip, from group to group, from street to street, and within five minutes the bells were wildly clanging and the whole town was up! The Cardiff Hill episode sank into instant insignificance, the burglars were forgotten, horses were saddled, skiffs were manned, the ferryboat ordered out, and before the horror was half an hour old, two hundred men were pouring down highroad and river toward the cave. All the long afternoon the village seemed empty and dead. Many women visited Aunt Polly and Mrs. Thatcher and tried to comfort them. They cried with them, too, and that was still better than words. All the tedious night the town waited for news; but when the morning dawned at last, all the word that came was, "Send more candles--and send food." Mrs. Thatcher was almost crazed; and Aunt Polly, also. Judge Thatcher sent messages of hope and encouragement from the cave, but they conveyed no real cheer. The old Welshman came home toward daylight, spattered with candle-grease, smeared with clay, and almost worn out. He found Huck still in the bed that had been provided for him, and delirious with fever. The physicians were all at the cave, so the Widow Douglas came and took charge of the patient. She said she would do her best by him, because, whether he was good, bad, or indifferent, he was the Lord's, and nothing that was the Lord's was a thing to be neglected. The Welshman said Huck had good spots in him, and the widow said: "You can depend on it. That's the Lord's mark. He don't leave it off. He never does. Puts it somewhere on every creature that comes from his hands." Early in the forenoon parties of jaded men began to straggle into the village, but the strongest of the citizens continued searching. All the news that could be gained was that remotenesses of the cavern were being ransacked that had never been visited before; that every corner and crevice was going to be thoroughly searched; that wherever one wandered through the maze of passages, lights were to be seen flitting hither and thither in the distance, and shoutings and pistol-shots sent their hollow reverberations to the ear down the sombre aisles. In one place, far from the section usually traversed by tourists, the names "BECKY & TOM" had been found traced upon the rocky wall with candle-smoke, and near at hand a grease-soiled bit of ribbon. Mrs. Thatcher recognized the ribbon and cried over it. She said it was the last relic she should ever have of her child; and that no other memorial of her could ever be so precious, because this one parted latest from the living body before the awful death came. Some said that now and then, in the cave, a far-away speck of light would glimmer, and then a glorious shout would burst forth and a score of men go trooping down the echoing aisle--and then a sickening disappointment always followed; the children were not there; it was only a searcher's light. Three dreadful days and nights dragged their tedious hours along, and the village sank into a hopeless stupor. No one had heart for anything. The accidental discovery, just made, that the proprietor of the Temperance Tavern kept liquor on his premises, scarcely fluttered the public pulse, tremendous as the fact was. In a lucid interval, Huck feebly led up to the subject of taverns, and finally asked--dimly dreading the worst--if anything had been discovered at the Temperance Tavern since he had been ill. "Yes," said the widow. Huck started up in bed, wild-eyed: "What? What was it?" "Liquor!--and the place has been shut up. Lie down, child--what a turn you did give me!" "Only tell me just one thing--only just one--please! Was it Tom Sawyer that found it?" The widow burst into tears. "Hush, hush, child, hush! I've told you before, you must NOT talk. You are very, very sick!" Then nothing but liquor had been found; there would have been a great powwow if it had been the gold. So the treasure was gone forever--gone forever! But what could she be crying about? Curious that she should cry. These thoughts worked their dim way through Huck's mind, and under the weariness they gave him he fell asleep. The widow said to herself: "There--he's asleep, poor wreck. Tom Sawyer find it! Pity but somebody could find Tom Sawyer! Ah, there ain't many left, now, that's got hope enough, or strength enough, either, to go on searching." CHAPTER XXXI NOW to return to Tom and Becky's share in the picnic. They tripped along the murky aisles with the rest of the company, visiting the familiar wonders of the cave--wonders dubbed with rather over-descriptive names, such as "The Drawing-Room," "The Cathedral," "Aladdin's Palace," and so on. Presently the hide-and-seek frolicking began, and Tom and Becky engaged in it with zeal until the exertion began to grow a trifle wearisome; then they wandered down a sinuous avenue holding their candles aloft and reading the tangled web-work of names, dates, post-office addresses, and mottoes with which the rocky walls had been frescoed (in candle-smoke). Still drifting along and talking, they scarcely noticed that they were now in a part of the cave whose walls were not frescoed. They smoked their own names under an overhanging shelf and moved on. Presently they came to a place where a little stream of water, trickling over a ledge and carrying a limestone sediment with it, had, in the slow-dragging ages, formed a laced and ruffled Niagara in gleaming and imperishable stone. Tom squeezed his small body behind it in order to illuminate it for Becky's gratification. He found that it curtained a sort of steep natural stairway which was enclosed between narrow walls, and at once the ambition to be a discoverer seized him. Becky responded to his call, and they made a smoke-mark for future guidance, and started upon their quest. They wound this way and that, far down into the secret depths of the cave, made another mark, and branched off in search of novelties to tell the upper world about. In one place they found a spacious cavern, from whose ceiling depended a multitude of shining stalactites of the length and circumference of a man's leg; they walked all about it, wondering and admiring, and presently left it by one of the numerous passages that opened into it. This shortly brought them to a bewitching spring, whose basin was incrusted with a frostwork of glittering crystals; it was in the midst of a cavern whose walls were supported by many fantastic pillars which had been formed by the joining of great stalactites and stalagmites together, the result of the ceaseless water-drip of centuries. Under the roof vast knots of bats had packed themselves together, thousands in a bunch; the lights disturbed the creatures and they came flocking down by hundreds, squeaking and darting furiously at the candles. Tom knew their ways and the danger of this sort of conduct. He seized Becky's hand and hurried her into the first corridor that offered; and none too soon, for a bat struck Becky's light out with its wing while she was passing out of the cavern. The bats chased the children a good distance; but the fugitives plunged into every new passage that offered, and at last got rid of the perilous things. Tom found a subterranean lake, shortly, which stretched its dim length away until its shape was lost in the shadows. He wanted to explore its borders, but concluded that it would be best to sit down and rest awhile, first. Now, for the first time, the deep stillness of the place laid a clammy hand upon the spirits of the children. Becky said: "Why, I didn't notice, but it seems ever so long since I heard any of the others." "Come to think, Becky, we are away down below them--and I don't know how far away north, or south, or east, or whichever it is. We couldn't hear them here." Becky grew apprehensive. "I wonder how long we've been down here, Tom? We better start back." "Yes, I reckon we better. P'raps we better." "Can you find the way, Tom? It's all a mixed-up crookedness to me." "I reckon I could find it--but then the bats. If they put our candles out it will be an awful fix. Let's try some other way, so as not to go through there." "Well. But I hope we won't get lost. It would be so awful!" and the girl shuddered at the thought of the dreadful possibilities. They started through a corridor, and traversed it in silence a long way, glancing at each new opening, to see if there was anything familiar about the look of it; but they were all strange. Every time Tom made an examination, Becky would watch his face for an encouraging sign, and he would say cheerily: "Oh, it's all right. This ain't the one, but we'll come to it right away!" But he felt less and less hopeful with each failure, and presently began to turn off into diverging avenues at sheer random, in desperate hope of finding the one that was wanted. He still said it was "all right," but there was such a leaden dread at his heart that the words had lost their ring and sounded just as if he had said, "All is lost!" Becky clung to his side in an anguish of fear, and tried hard to keep back the tears, but they would come. At last she said: "Oh, Tom, never mind the bats, let's go back that way! We seem to get worse and worse off all the time." "Listen!" said he. Profound silence; silence so deep that even their breathings were conspicuous in the hush. Tom shouted. The call went echoing down the empty aisles and died out in the distance in a faint sound that resembled a ripple of mocking laughter. "Oh, don't do it again, Tom, it is too horrid," said Becky. "It is horrid, but I better, Becky; they might hear us, you know," and he shouted again. The "might" was even a chillier horror than the ghostly laughter, it so confessed a perishing hope. The children stood still and listened; but there was no result. Tom turned upon the back track at once, and hurried his steps. It was but a little while before a certain indecision in his manner revealed another fearful fact to Becky--he could not find his way back! "Oh, Tom, you didn't make any marks!" "Becky, I was such a fool! Such a fool! I never thought we might want to come back! No--I can't find the way. It's all mixed up." "Tom, Tom, we're lost! we're lost! We never can get out of this awful place! Oh, why DID we ever leave the others!" She sank to the ground and burst into such a frenzy of crying that Tom was appalled with the idea that she might die, or lose her reason. He sat down by her and put his arms around her; she buried her face in his bosom, she clung to him, she poured out her terrors, her unavailing regrets, and the far echoes turned them all to jeering laughter. Tom begged her to pluck up hope again, and she said she could not. He fell to blaming and abusing himself for getting her into this miserable situation; this had a better effect. She said she would try to hope again, she would get up and follow wherever he might lead if only he would not talk like that any more. For he was no more to blame than she, she said. So they moved on again--aimlessly--simply at random--all they could do was to move, keep moving. For a little while, hope made a show of reviving--not with any reason to back it, but only because it is its nature to revive when the spring has not been taken out of it by age and familiarity with failure. By-and-by Tom took Becky's candle and blew it out. This economy meant so much! Words were not needed. Becky understood, and her hope died again. She knew that Tom had a whole candle and three or four pieces in his pockets--yet he must economize. By-and-by, fatigue began to assert its claims; the children tried to pay attention, for it was dreadful to think of sitting down when time was grown to be so precious, moving, in some direction, in any direction, was at least progress and might bear fruit; but to sit down was to invite death and shorten its pursuit. At last Becky's frail limbs refused to carry her farther. She sat down. Tom rested with her, and they talked of home, and the friends there, and the comfortable beds and, above all, the light! Becky cried, and Tom tried to think of some way of comforting her, but all his encouragements were grown threadbare with use, and sounded like sarcasms. Fatigue bore so heavily upon Becky that she drowsed off to sleep. Tom was grateful. He sat looking into her drawn face and saw it grow smooth and natural under the influence of pleasant dreams; and by-and-by a smile dawned and rested there. The peaceful face reflected somewhat of peace and healing into his own spirit, and his thoughts wandered away to bygone times and dreamy memories. While he was deep in his musings, Becky woke up with a breezy little laugh--but it was stricken dead upon her lips, and a groan followed it. "Oh, how COULD I sleep! I wish I never, never had waked! No! No, I don't, Tom! Don't look so! I won't say it again." "I'm glad you've slept, Becky; you'll feel rested, now, and we'll find the way out." "We can try, Tom; but I've seen such a beautiful country in my dream. I reckon we are going there." "Maybe not, maybe not. Cheer up, Becky, and let's go on trying." They rose up and wandered along, hand in hand and hopeless. They tried to estimate how long they had been in the cave, but all they knew was that it seemed days and weeks, and yet it was plain that this could not be, for their candles were not gone yet. A long time after this--they could not tell how long--Tom said they must go softly and listen for dripping water--they must find a spring. They found one presently, and Tom said it was time to rest again. Both were cruelly tired, yet Becky said she thought she could go a little farther. She was surprised to hear Tom dissent. She could not understand it. They sat down, and Tom fastened his candle to the wall in front of them with some clay. Thought was soon busy; nothing was said for some time. Then Becky broke the silence: "Tom, I am so hungry!" Tom took something out of his pocket. "Do you remember this?" said he. Becky almost smiled. "It's our wedding-cake, Tom." "Yes--I wish it was as big as a barrel, for it's all we've got." "I saved it from the picnic for us to dream on, Tom, the way grown-up people do with wedding-cake--but it'll be our--" She dropped the sentence where it was. Tom divided the cake and Becky ate with good appetite, while Tom nibbled at his moiety. There was abundance of cold water to finish the feast with. By-and-by Becky suggested that they move on again. Tom was silent a moment. Then he said: "Becky, can you bear it if I tell you something?" Becky's face paled, but she thought she could. "Well, then, Becky, we must stay here, where there's water to drink. That little piece is our last candle!" Becky gave loose to tears and wailings. Tom did what he could to comfort her, but with little effect. At length Becky said: "Tom!" "Well, Becky?" "They'll miss us and hunt for us!" "Yes, they will! Certainly they will!" "Maybe they're hunting for us now, Tom." "Why, I reckon maybe they are. I hope they are." "When would they miss us, Tom?" "When they get back to the boat, I reckon." "Tom, it might be dark then--would they notice we hadn't come?" "I don't know. But anyway, your mother would miss you as soon as they got home." A frightened look in Becky's face brought Tom to his senses and he saw that he had made a blunder. Becky was not to have gone home that night! The children became silent and thoughtful. In a moment a new burst of grief from Becky showed Tom that the thing in his mind had struck hers also--that the Sabbath morning might be half spent before Mrs. Thatcher discovered that Becky was not at Mrs. Harper's. The children fastened their eyes upon their bit of candle and watched it melt slowly and pitilessly away; saw the half inch of wick stand alone at last; saw the feeble flame rise and fall, climb the thin column of smoke, linger at its top a moment, and then--the horror of utter darkness reigned! How long afterward it was that Becky came to a slow consciousness that she was crying in Tom's arms, neither could tell. All that they knew was, that after what seemed a mighty stretch of time, both awoke out of a dead stupor of sleep and resumed their miseries once more. Tom said it might be Sunday, now--maybe Monday. He tried to get Becky to talk, but her sorrows were too oppressive, all her hopes were gone. Tom said that they must have been missed long ago, and no doubt the search was going on. He would shout and maybe some one would come. He tried it; but in the darkness the distant echoes sounded so hideously that he tried it no more. The hours wasted away, and hunger came to torment the captives again. A portion of Tom's half of the cake was left; they divided and ate it. But they seemed hungrier than before. The poor morsel of food only whetted desire. By-and-by Tom said: "SH! Did you hear that?" Both held their breath and listened. There was a sound like the faintest, far-off shout. Instantly Tom answered it, and leading Becky by the hand, started groping down the corridor in its direction. Presently he listened again; again the sound was heard, and apparently a little nearer. "It's them!" said Tom; "they're coming! Come along, Becky--we're all right now!" The joy of the prisoners was almost overwhelming. Their speed was slow, however, because pitfalls were somewhat common, and had to be guarded against. They shortly came to one and had to stop. It might be three feet deep, it might be a hundred--there was no passing it at any rate. Tom got down on his breast and reached as far down as he could. No bottom. They must stay there and wait until the searchers came. They listened; evidently the distant shoutings were growing more distant! a moment or two more and they had gone altogether. The heart-sinking misery of it! Tom whooped until he was hoarse, but it was of no use. He talked hopefully to Becky; but an age of anxious waiting passed and no sounds came again. The children groped their way back to the spring. The weary time dragged on; they slept again, and awoke famished and woe-stricken. Tom believed it must be Tuesday by this time. Now an idea struck him. There were some side passages near at hand. It would be better to explore some of these than bear the weight of the heavy time in idleness. He took a kite-line from his pocket, tied it to a projection, and he and Becky started, Tom in the lead, unwinding the line as he groped along. At the end of twenty steps the corridor ended in a "jumping-off place." Tom got down on his knees and felt below, and then as far around the corner as he could reach with his hands conveniently; he made an effort to stretch yet a little farther to the right, and at that moment, not twenty yards away, a human hand, holding a candle, appeared from behind a rock! Tom lifted up a glorious shout, and instantly that hand was followed by the body it belonged to--Injun Joe's! Tom was paralyzed; he could not move. He was vastly gratified the next moment, to see the "Spaniard" take to his heels and get himself out of sight. Tom wondered that Joe had not recognized his voice and come over and killed him for testifying in court. But the echoes must have disguised the voice. Without doubt, that was it, he reasoned. Tom's fright weakened every muscle in his body. He said to himself that if he had strength enough to get back to the spring he would stay there, and nothing should tempt him to run the risk of meeting Injun Joe again. He was careful to keep from Becky what it was he had seen. He told her he had only shouted "for luck." But hunger and wretchedness rise superior to fears in the long run. Another tedious wait at the spring and another long sleep brought changes. The children awoke tortured with a raging hunger. Tom believed that it must be Wednesday or Thursday or even Friday or Saturday, now, and that the search had been given over. He proposed to explore another passage. He felt willing to risk Injun Joe and all other terrors. But Becky was very weak. She had sunk into a dreary apathy and would not be roused. She said she would wait, now, where she was, and die--it would not be long. She told Tom to go with the kite-line and explore if he chose; but she implored him to come back every little while and speak to her; and she made him promise that when the awful time came, he would stay by her and hold her hand until all was over. Tom kissed her, with a choking sensation in his throat, and made a show of being confident of finding the searchers or an escape from the cave; then he took the kite-line in his hand and went groping down one of the passages on his hands and knees, distressed with hunger and sick with bodings of coming doom. CHAPTER XXXII TUESDAY afternoon came, and waned to the twilight. The village of St. Petersburg still mourned. The lost children had not been found. Public prayers had been offered up for them, and many and many a private prayer that had the petitioner's whole heart in it; but still no good news came from the cave. The majority of the searchers had given up the quest and gone back to their daily avocations, saying that it was plain the children could never be found. Mrs. Thatcher was very ill, and a great part of the time delirious. People said it was heartbreaking to hear her call her child, and raise her head and listen a whole minute at a time, then lay it wearily down again with a moan. Aunt Polly had drooped into a settled melancholy, and her gray hair had grown almost white. The village went to its rest on Tuesday night, sad and forlorn. Away in the middle of the night a wild peal burst from the village bells, and in a moment the streets were swarming with frantic half-clad people, who shouted, "Turn out! turn out! they're found! they're found!" Tin pans and horns were added to the din, the population massed itself and moved toward the river, met the children coming in an open carriage drawn by shouting citizens, thronged around it, joined its homeward march, and swept magnificently up the main street roaring huzzah after huzzah! The village was illuminated; nobody went to bed again; it was the greatest night the little town had ever seen. During the first half-hour a procession of villagers filed through Judge Thatcher's house, seized the saved ones and kissed them, squeezed Mrs. Thatcher's hand, tried to speak but couldn't--and drifted out raining tears all over the place. Aunt Polly's happiness was complete, and Mrs. Thatcher's nearly so. It would be complete, however, as soon as the messenger dispatched with the great news to the cave should get the word to her husband. Tom lay upon a sofa with an eager auditory about him and told the history of the wonderful adventure, putting in many striking additions to adorn it withal; and closed with a description of how he left Becky and went on an exploring expedition; how he followed two avenues as far as his kite-line would reach; how he followed a third to the fullest stretch of the kite-line, and was about to turn back when he glimpsed a far-off speck that looked like daylight; dropped the line and groped toward it, pushed his head and shoulders through a small hole, and saw the broad Mississippi rolling by! And if it had only happened to be night he would not have seen that speck of daylight and would not have explored that passage any more! He told how he went back for Becky and broke the good news and she told him not to fret her with such stuff, for she was tired, and knew she was going to die, and wanted to. He described how he labored with her and convinced her; and how she almost died for joy when she had groped to where she actually saw the blue speck of daylight; how he pushed his way out at the hole and then helped her out; how they sat there and cried for gladness; how some men came along in a skiff and Tom hailed them and told them their situation and their famished condition; how the men didn't believe the wild tale at first, "because," said they, "you are five miles down the river below the valley the cave is in" --then took them aboard, rowed to a house, gave them supper, made them rest till two or three hours after dark and then brought them home. Before day-dawn, Judge Thatcher and the handful of searchers with him were tracked out, in the cave, by the twine clews they had strung behind them, and informed of the great news. Three days and nights of toil and hunger in the cave were not to be shaken off at once, as Tom and Becky soon discovered. They were bedridden all of Wednesday and Thursday, and seemed to grow more and more tired and worn, all the time. Tom got about, a little, on Thursday, was down-town Friday, and nearly as whole as ever Saturday; but Becky did not leave her room until Sunday, and then she looked as if she had passed through a wasting illness. Tom learned of Huck's sickness and went to see him on Friday, but could not be admitted to the bedroom; neither could he on Saturday or Sunday. He was admitted daily after that, but was warned to keep still about his adventure and introduce no exciting topic. The Widow Douglas stayed by to see that he obeyed. At home Tom learned of the Cardiff Hill event; also that the "ragged man's" body had eventually been found in the river near the ferry-landing; he had been drowned while trying to escape, perhaps. About a fortnight after Tom's rescue from the cave, he started off to visit Huck, who had grown plenty strong enough, now, to hear exciting talk, and Tom had some that would interest him, he thought. Judge Thatcher's house was on Tom's way, and he stopped to see Becky. The Judge and some friends set Tom to talking, and some one asked him ironically if he wouldn't like to go to the cave again. Tom said he thought he wouldn't mind it. The Judge said: "Well, there are others just like you, Tom, I've not the least doubt. But we have taken care of that. Nobody will get lost in that cave any more." "Why?" "Because I had its big door sheathed with boiler iron two weeks ago, and triple-locked--and I've got the keys." Tom turned as white as a sheet. "What's the matter, boy! Here, run, somebody! Fetch a glass of water!" The water was brought and thrown into Tom's face. "Ah, now you're all right. What was the matter with you, Tom?" "Oh, Judge, Injun Joe's in the cave!" CHAPTER XXXIII WITHIN a few minutes the news had spread, and a dozen skiff-loads of men were on their way to McDougal's cave, and the ferryboat, well filled with passengers, soon followed. Tom Sawyer was in the skiff that bore Judge Thatcher. When the cave door was unlocked, a sorrowful sight presented itself in the dim twilight of the place. Injun Joe lay stretched upon the ground, dead, with his face close to the crack of the door, as if his longing eyes had been fixed, to the latest moment, upon the light and the cheer of the free world outside. Tom was touched, for he knew by his own experience how this wretch had suffered. His pity was moved, but nevertheless he felt an abounding sense of relief and security, now, which revealed to him in a degree which he had not fully appreciated before how vast a weight of dread had been lying upon him since the day he lifted his voice against this bloody-minded outcast. Injun Joe's bowie-knife lay close by, its blade broken in two. The great foundation-beam of the door had been chipped and hacked through, with tedious labor; useless labor, too, it was, for the native rock formed a sill outside it, and upon that stubborn material the knife had wrought no effect; the only damage done was to the knife itself. But if there had been no stony obstruction there the labor would have been useless still, for if the beam had been wholly cut away Injun Joe could not have squeezed his body under the door, and he knew it. So he had only hacked that place in order to be doing something--in order to pass the weary time--in order to employ his tortured faculties. Ordinarily one could find half a dozen bits of candle stuck around in the crevices of this vestibule, left there by tourists; but there were none now. The prisoner had searched them out and eaten them. He had also contrived to catch a few bats, and these, also, he had eaten, leaving only their claws. The poor unfortunate had starved to death. In one place, near at hand, a stalagmite had been slowly growing up from the ground for ages, builded by the water-drip from a stalactite overhead. The captive had broken off the stalagmite, and upon the stump had placed a stone, wherein he had scooped a shallow hollow to catch the precious drop that fell once in every three minutes with the dreary regularity of a clock-tick--a dessertspoonful once in four and twenty hours. That drop was falling when the Pyramids were new; when Troy fell; when the foundations of Rome were laid; when Christ was crucified; when the Conqueror created the British empire; when Columbus sailed; when the massacre at Lexington was "news." It is falling now; it will still be falling when all these things shall have sunk down the afternoon of history, and the twilight of tradition, and been swallowed up in the thick night of oblivion. Has everything a purpose and a mission? Did this drop fall patiently during five thousand years to be ready for this flitting human insect's need? and has it another important object to accomplish ten thousand years to come? No matter. It is many and many a year since the hapless half-breed scooped out the stone to catch the priceless drops, but to this day the tourist stares longest at that pathetic stone and that slow-dropping water when he comes to see the wonders of McDougal's cave. Injun Joe's cup stands first in the list of the cavern's marvels; even "Aladdin's Palace" cannot rival it. Injun Joe was buried near the mouth of the cave; and people flocked there in boats and wagons from the towns and from all the farms and hamlets for seven miles around; they brought their children, and all sorts of provisions, and confessed that they had had almost as satisfactory a time at the funeral as they could have had at the hanging. This funeral stopped the further growth of one thing--the petition to the governor for Injun Joe's pardon. The petition had been largely signed; many tearful and eloquent meetings had been held, and a committee of sappy women been appointed to go in deep mourning and wail around the governor, and implore him to be a merciful ass and trample his duty under foot. Injun Joe was believed to have killed five citizens of the village, but what of that? If he had been Satan himself there would have been plenty of weaklings ready to scribble their names to a pardon-petition, and drip a tear on it from their permanently impaired and leaky water-works. The morning after the funeral Tom took Huck to a private place to have an important talk. Huck had learned all about Tom's adventure from the Welshman and the Widow Douglas, by this time, but Tom said he reckoned there was one thing they had not told him; that thing was what he wanted to talk about now. Huck's face saddened. He said: "I know what it is. You got into No. 2 and never found anything but whiskey. Nobody told me it was you; but I just knowed it must 'a' ben you, soon as I heard 'bout that whiskey business; and I knowed you hadn't got the money becuz you'd 'a' got at me some way or other and told me even if you was mum to everybody else. Tom, something's always told me we'd never get holt of that swag." "Why, Huck, I never told on that tavern-keeper. YOU know his tavern was all right the Saturday I went to the picnic. Don't you remember you was to watch there that night?" "Oh yes! Why, it seems 'bout a year ago. It was that very night that I follered Injun Joe to the widder's." "YOU followed him?" "Yes--but you keep mum. I reckon Injun Joe's left friends behind him, and I don't want 'em souring on me and doing me mean tricks. If it hadn't ben for me he'd be down in Texas now, all right." Then Huck told his entire adventure in confidence to Tom, who had only heard of the Welshman's part of it before. "Well," said Huck, presently, coming back to the main question, "whoever nipped the whiskey in No. 2, nipped the money, too, I reckon --anyways it's a goner for us, Tom." "Huck, that money wasn't ever in No. 2!" "What!" Huck searched his comrade's face keenly. "Tom, have you got on the track of that money again?" "Huck, it's in the cave!" Huck's eyes blazed. "Say it again, Tom." "The money's in the cave!" "Tom--honest injun, now--is it fun, or earnest?" "Earnest, Huck--just as earnest as ever I was in my life. Will you go in there with me and help get it out?" "I bet I will! I will if it's where we can blaze our way to it and not get lost." "Huck, we can do that without the least little bit of trouble in the world." "Good as wheat! What makes you think the money's--" "Huck, you just wait till we get in there. If we don't find it I'll agree to give you my drum and every thing I've got in the world. I will, by jings." "All right--it's a whiz. When do you say?" "Right now, if you say it. Are you strong enough?" "Is it far in the cave? I ben on my pins a little, three or four days, now, but I can't walk more'n a mile, Tom--least I don't think I could." "It's about five mile into there the way anybody but me would go, Huck, but there's a mighty short cut that they don't anybody but me know about. Huck, I'll take you right to it in a skiff. I'll float the skiff down there, and I'll pull it back again all by myself. You needn't ever turn your hand over." "Less start right off, Tom." "All right. We want some bread and meat, and our pipes, and a little bag or two, and two or three kite-strings, and some of these new-fangled things they call lucifer matches. I tell you, many's the time I wished I had some when I was in there before." A trifle after noon the boys borrowed a small skiff from a citizen who was absent, and got under way at once. When they were several miles below "Cave Hollow," Tom said: "Now you see this bluff here looks all alike all the way down from the cave hollow--no houses, no wood-yards, bushes all alike. But do you see that white place up yonder where there's been a landslide? Well, that's one of my marks. We'll get ashore, now." They landed. "Now, Huck, where we're a-standing you could touch that hole I got out of with a fishing-pole. See if you can find it." Huck searched all the place about, and found nothing. Tom proudly marched into a thick clump of sumach bushes and said: "Here you are! Look at it, Huck; it's the snuggest hole in this country. You just keep mum about it. All along I've been wanting to be a robber, but I knew I'd got to have a thing like this, and where to run across it was the bother. We've got it now, and we'll keep it quiet, only we'll let Joe Harper and Ben Rogers in--because of course there's got to be a Gang, or else there wouldn't be any style about it. Tom Sawyer's Gang--it sounds splendid, don't it, Huck?" "Well, it just does, Tom. And who'll we rob?" "Oh, most anybody. Waylay people--that's mostly the way." "And kill them?" "No, not always. Hive them in the cave till they raise a ransom." "What's a ransom?" "Money. You make them raise all they can, off'n their friends; and after you've kept them a year, if it ain't raised then you kill them. That's the general way. Only you don't kill the women. You shut up the women, but you don't kill them. They're always beautiful and rich, and awfully scared. You take their watches and things, but you always take your hat off and talk polite. They ain't anybody as polite as robbers --you'll see that in any book. Well, the women get to loving you, and after they've been in the cave a week or two weeks they stop crying and after that you couldn't get them to leave. If you drove them out they'd turn right around and come back. It's so in all the books." "Why, it's real bully, Tom. I believe it's better'n to be a pirate." "Yes, it's better in some ways, because it's close to home and circuses and all that." By this time everything was ready and the boys entered the hole, Tom in the lead. They toiled their way to the farther end of the tunnel, then made their spliced kite-strings fast and moved on. A few steps brought them to the spring, and Tom felt a shudder quiver all through him. He showed Huck the fragment of candle-wick perched on a lump of clay against the wall, and described how he and Becky had watched the flame struggle and expire. The boys began to quiet down to whispers, now, for the stillness and gloom of the place oppressed their spirits. They went on, and presently entered and followed Tom's other corridor until they reached the "jumping-off place." The candles revealed the fact that it was not really a precipice, but only a steep clay hill twenty or thirty feet high. Tom whispered: "Now I'll show you something, Huck." He held his candle aloft and said: "Look as far around the corner as you can. Do you see that? There--on the big rock over yonder--done with candle-smoke." "Tom, it's a CROSS!" "NOW where's your Number Two? 'UNDER THE CROSS,' hey? Right yonder's where I saw Injun Joe poke up his candle, Huck!" Huck stared at the mystic sign awhile, and then said with a shaky voice: "Tom, less git out of here!" "What! and leave the treasure?" "Yes--leave it. Injun Joe's ghost is round about there, certain." "No it ain't, Huck, no it ain't. It would ha'nt the place where he died--away out at the mouth of the cave--five mile from here." "No, Tom, it wouldn't. It would hang round the money. I know the ways of ghosts, and so do you." Tom began to fear that Huck was right. Misgivings gathered in his mind. But presently an idea occurred to him-- "Lookyhere, Huck, what fools we're making of ourselves! Injun Joe's ghost ain't a going to come around where there's a cross!" The point was well taken. It had its effect. "Tom, I didn't think of that. But that's so. It's luck for us, that cross is. I reckon we'll climb down there and have a hunt for that box." Tom went first, cutting rude steps in the clay hill as he descended. Huck followed. Four avenues opened out of the small cavern which the great rock stood in. The boys examined three of them with no result. They found a small recess in the one nearest the base of the rock, with a pallet of blankets spread down in it; also an old suspender, some bacon rind, and the well-gnawed bones of two or three fowls. But there was no money-box. The lads searched and researched this place, but in vain. Tom said: "He said UNDER the cross. Well, this comes nearest to being under the cross. It can't be under the rock itself, because that sets solid on the ground." They searched everywhere once more, and then sat down discouraged. Huck could suggest nothing. By-and-by Tom said: "Lookyhere, Huck, there's footprints and some candle-grease on the clay about one side of this rock, but not on the other sides. Now, what's that for? I bet you the money IS under the rock. I'm going to dig in the clay." "That ain't no bad notion, Tom!" said Huck with animation. Tom's "real Barlow" was out at once, and he had not dug four inches before he struck wood. "Hey, Huck!--you hear that?" Huck began to dig and scratch now. Some boards were soon uncovered and removed. They had concealed a natural chasm which led under the rock. Tom got into this and held his candle as far under the rock as he could, but said he could not see to the end of the rift. He proposed to explore. He stooped and passed under; the narrow way descended gradually. He followed its winding course, first to the right, then to the left, Huck at his heels. Tom turned a short curve, by-and-by, and exclaimed: "My goodness, Huck, lookyhere!" It was the treasure-box, sure enough, occupying a snug little cavern, along with an empty powder-keg, a couple of guns in leather cases, two or three pairs of old moccasins, a leather belt, and some other rubbish well soaked with the water-drip. "Got it at last!" said Huck, ploughing among the tarnished coins with his hand. "My, but we're rich, Tom!" "Huck, I always reckoned we'd get it. It's just too good to believe, but we HAVE got it, sure! Say--let's not fool around here. Let's snake it out. Lemme see if I can lift the box." It weighed about fifty pounds. Tom could lift it, after an awkward fashion, but could not carry it conveniently. "I thought so," he said; "THEY carried it like it was heavy, that day at the ha'nted house. I noticed that. I reckon I was right to think of fetching the little bags along." The money was soon in the bags and the boys took it up to the cross rock. "Now less fetch the guns and things," said Huck. "No, Huck--leave them there. They're just the tricks to have when we go to robbing. We'll keep them there all the time, and we'll hold our orgies there, too. It's an awful snug place for orgies." "What orgies?" "I dono. But robbers always have orgies, and of course we've got to have them, too. Come along, Huck, we've been in here a long time. It's getting late, I reckon. I'm hungry, too. We'll eat and smoke when we get to the skiff." They presently emerged into the clump of sumach bushes, looked warily out, found the coast clear, and were soon lunching and smoking in the skiff. As the sun dipped toward the horizon they pushed out and got under way. Tom skimmed up the shore through the long twilight, chatting cheerily with Huck, and landed shortly after dark. "Now, Huck," said Tom, "we'll hide the money in the loft of the widow's woodshed, and I'll come up in the morning and we'll count it and divide, and then we'll hunt up a place out in the woods for it where it will be safe. Just you lay quiet here and watch the stuff till I run and hook Benny Taylor's little wagon; I won't be gone a minute." He disappeared, and presently returned with the wagon, put the two small sacks into it, threw some old rags on top of them, and started off, dragging his cargo behind him. When the boys reached the Welshman's house, they stopped to rest. Just as they were about to move on, the Welshman stepped out and said: "Hallo, who's that?" "Huck and Tom Sawyer." "Good! Come along with me, boys, you are keeping everybody waiting. Here--hurry up, trot ahead--I'll haul the wagon for you. Why, it's not as light as it might be. Got bricks in it?--or old metal?" "Old metal," said Tom. "I judged so; the boys in this town will take more trouble and fool away more time hunting up six bits' worth of old iron to sell to the foundry than they would to make twice the money at regular work. But that's human nature--hurry along, hurry along!" The boys wanted to know what the hurry was about. "Never mind; you'll see, when we get to the Widow Douglas'." Huck said with some apprehension--for he was long used to being falsely accused: "Mr. Jones, we haven't been doing nothing." The Welshman laughed. "Well, I don't know, Huck, my boy. I don't know about that. Ain't you and the widow good friends?" "Yes. Well, she's ben good friends to me, anyway." "All right, then. What do you want to be afraid for?" This question was not entirely answered in Huck's slow mind before he found himself pushed, along with Tom, into Mrs. Douglas' drawing-room. Mr. Jones left the wagon near the door and followed. The place was grandly lighted, and everybody that was of any consequence in the village was there. The Thatchers were there, the Harpers, the Rogerses, Aunt Polly, Sid, Mary, the minister, the editor, and a great many more, and all dressed in their best. The widow received the boys as heartily as any one could well receive two such looking beings. They were covered with clay and candle-grease. Aunt Polly blushed crimson with humiliation, and frowned and shook her head at Tom. Nobody suffered half as much as the two boys did, however. Mr. Jones said: "Tom wasn't at home, yet, so I gave him up; but I stumbled on him and Huck right at my door, and so I just brought them along in a hurry." "And you did just right," said the widow. "Come with me, boys." She took them to a bedchamber and said: "Now wash and dress yourselves. Here are two new suits of clothes --shirts, socks, everything complete. They're Huck's--no, no thanks, Huck--Mr. Jones bought one and I the other. But they'll fit both of you. Get into them. We'll wait--come down when you are slicked up enough." Then she left. CHAPTER XXXIV HUCK said: "Tom, we can slope, if we can find a rope. The window ain't high from the ground." "Shucks! what do you want to slope for?" "Well, I ain't used to that kind of a crowd. I can't stand it. I ain't going down there, Tom." "Oh, bother! It ain't anything. I don't mind it a bit. I'll take care of you." Sid appeared. "Tom," said he, "auntie has been waiting for you all the afternoon. Mary got your Sunday clothes ready, and everybody's been fretting about you. Say--ain't this grease and clay, on your clothes?" "Now, Mr. Siddy, you jist 'tend to your own business. What's all this blow-out about, anyway?" "It's one of the widow's parties that she's always having. This time it's for the Welshman and his sons, on account of that scrape they helped her out of the other night. And say--I can tell you something, if you want to know." "Well, what?" "Why, old Mr. Jones is going to try to spring something on the people here to-night, but I overheard him tell auntie to-day about it, as a secret, but I reckon it's not much of a secret now. Everybody knows --the widow, too, for all she tries to let on she don't. Mr. Jones was bound Huck should be here--couldn't get along with his grand secret without Huck, you know!" "Secret about what, Sid?" "About Huck tracking the robbers to the widow's. I reckon Mr. Jones was going to make a grand time over his surprise, but I bet you it will drop pretty flat." Sid chuckled in a very contented and satisfied way. "Sid, was it you that told?" "Oh, never mind who it was. SOMEBODY told--that's enough." "Sid, there's only one person in this town mean enough to do that, and that's you. If you had been in Huck's place you'd 'a' sneaked down the hill and never told anybody on the robbers. You can't do any but mean things, and you can't bear to see anybody praised for doing good ones. There--no thanks, as the widow says"--and Tom cuffed Sid's ears and helped him to the door with several kicks. "Now go and tell auntie if you dare--and to-morrow you'll catch it!" Some minutes later the widow's guests were at the supper-table, and a dozen children were propped up at little side-tables in the same room, after the fashion of that country and that day. At the proper time Mr. Jones made his little speech, in which he thanked the widow for the honor she was doing himself and his sons, but said that there was another person whose modesty-- And so forth and so on. He sprung his secret about Huck's share in the adventure in the finest dramatic manner he was master of, but the surprise it occasioned was largely counterfeit and not as clamorous and effusive as it might have been under happier circumstances. However, the widow made a pretty fair show of astonishment, and heaped so many compliments and so much gratitude upon Huck that he almost forgot the nearly intolerable discomfort of his new clothes in the entirely intolerable discomfort of being set up as a target for everybody's gaze and everybody's laudations. The widow said she meant to give Huck a home under her roof and have him educated; and that when she could spare the money she would start him in business in a modest way. Tom's chance was come. He said: "Huck don't need it. Huck's rich." Nothing but a heavy strain upon the good manners of the company kept back the due and proper complimentary laugh at this pleasant joke. But the silence was a little awkward. Tom broke it: "Huck's got money. Maybe you don't believe it, but he's got lots of it. Oh, you needn't smile--I reckon I can show you. You just wait a minute." Tom ran out of doors. The company looked at each other with a perplexed interest--and inquiringly at Huck, who was tongue-tied. "Sid, what ails Tom?" said Aunt Polly. "He--well, there ain't ever any making of that boy out. I never--" Tom entered, struggling with the weight of his sacks, and Aunt Polly did not finish her sentence. Tom poured the mass of yellow coin upon the table and said: "There--what did I tell you? Half of it's Huck's and half of it's mine!" The spectacle took the general breath away. All gazed, nobody spoke for a moment. Then there was a unanimous call for an explanation. Tom said he could furnish it, and he did. The tale was long, but brimful of interest. There was scarcely an interruption from any one to break the charm of its flow. When he had finished, Mr. Jones said: "I thought I had fixed up a little surprise for this occasion, but it don't amount to anything now. This one makes it sing mighty small, I'm willing to allow." The money was counted. The sum amounted to a little over twelve thousand dollars. It was more than any one present had ever seen at one time before, though several persons were there who were worth considerably more than that in property. CHAPTER XXXV THE reader may rest satisfied that Tom's and Huck's windfall made a mighty stir in the poor little village of St. Petersburg. So vast a sum, all in actual cash, seemed next to incredible. It was talked about, gloated over, glorified, until the reason of many of the citizens tottered under the strain of the unhealthy excitement. Every "haunted" house in St. Petersburg and the neighboring villages was dissected, plank by plank, and its foundations dug up and ransacked for hidden treasure--and not by boys, but men--pretty grave, unromantic men, too, some of them. Wherever Tom and Huck appeared they were courted, admired, stared at. The boys were not able to remember that their remarks had possessed weight before; but now their sayings were treasured and repeated; everything they did seemed somehow to be regarded as remarkable; they had evidently lost the power of doing and saying commonplace things; moreover, their past history was raked up and discovered to bear marks of conspicuous originality. The village paper published biographical sketches of the boys. The Widow Douglas put Huck's money out at six per cent., and Judge Thatcher did the same with Tom's at Aunt Polly's request. Each lad had an income, now, that was simply prodigious--a dollar for every week-day in the year and half of the Sundays. It was just what the minister got --no, it was what he was promised--he generally couldn't collect it. A dollar and a quarter a week would board, lodge, and school a boy in those old simple days--and clothe him and wash him, too, for that matter. Judge Thatcher had conceived a great opinion of Tom. He said that no commonplace boy would ever have got his daughter out of the cave. When Becky told her father, in strict confidence, how Tom had taken her whipping at school, the Judge was visibly moved; and when she pleaded grace for the mighty lie which Tom had told in order to shift that whipping from her shoulders to his own, the Judge said with a fine outburst that it was a noble, a generous, a magnanimous lie--a lie that was worthy to hold up its head and march down through history breast to breast with George Washington's lauded Truth about the hatchet! Becky thought her father had never looked so tall and so superb as when he walked the floor and stamped his foot and said that. She went straight off and told Tom about it. Judge Thatcher hoped to see Tom a great lawyer or a great soldier some day. He said he meant to look to it that Tom should be admitted to the National Military Academy and afterward trained in the best law school in the country, in order that he might be ready for either career or both. Huck Finn's wealth and the fact that he was now under the Widow Douglas' protection introduced him into society--no, dragged him into it, hurled him into it--and his sufferings were almost more than he could bear. The widow's servants kept him clean and neat, combed and brushed, and they bedded him nightly in unsympathetic sheets that had not one little spot or stain which he could press to his heart and know for a friend. He had to eat with a knife and fork; he had to use napkin, cup, and plate; he had to learn his book, he had to go to church; he had to talk so properly that speech was become insipid in his mouth; whithersoever he turned, the bars and shackles of civilization shut him in and bound him hand and foot. He bravely bore his miseries three weeks, and then one day turned up missing. For forty-eight hours the widow hunted for him everywhere in great distress. The public were profoundly concerned; they searched high and low, they dragged the river for his body. Early the third morning Tom Sawyer wisely went poking among some old empty hogsheads down behind the abandoned slaughter-house, and in one of them he found the refugee. Huck had slept there; he had just breakfasted upon some stolen odds and ends of food, and was lying off, now, in comfort, with his pipe. He was unkempt, uncombed, and clad in the same old ruin of rags that had made him picturesque in the days when he was free and happy. Tom routed him out, told him the trouble he had been causing, and urged him to go home. Huck's face lost its tranquil content, and took a melancholy cast. He said: "Don't talk about it, Tom. I've tried it, and it don't work; it don't work, Tom. It ain't for me; I ain't used to it. The widder's good to me, and friendly; but I can't stand them ways. She makes me get up just at the same time every morning; she makes me wash, they comb me all to thunder; she won't let me sleep in the woodshed; I got to wear them blamed clothes that just smothers me, Tom; they don't seem to any air git through 'em, somehow; and they're so rotten nice that I can't set down, nor lay down, nor roll around anywher's; I hain't slid on a cellar-door for--well, it 'pears to be years; I got to go to church and sweat and sweat--I hate them ornery sermons! I can't ketch a fly in there, I can't chaw. I got to wear shoes all Sunday. The widder eats by a bell; she goes to bed by a bell; she gits up by a bell--everything's so awful reg'lar a body can't stand it." "Well, everybody does that way, Huck." "Tom, it don't make no difference. I ain't everybody, and I can't STAND it. It's awful to be tied up so. And grub comes too easy--I don't take no interest in vittles, that way. I got to ask to go a-fishing; I got to ask to go in a-swimming--dern'd if I hain't got to ask to do everything. Well, I'd got to talk so nice it wasn't no comfort--I'd got to go up in the attic and rip out awhile, every day, to git a taste in my mouth, or I'd a died, Tom. The widder wouldn't let me smoke; she wouldn't let me yell, she wouldn't let me gape, nor stretch, nor scratch, before folks--" [Then with a spasm of special irritation and injury]--"And dad fetch it, she prayed all the time! I never see such a woman! I HAD to shove, Tom--I just had to. And besides, that school's going to open, and I'd a had to go to it--well, I wouldn't stand THAT, Tom. Looky here, Tom, being rich ain't what it's cracked up to be. It's just worry and worry, and sweat and sweat, and a-wishing you was dead all the time. Now these clothes suits me, and this bar'l suits me, and I ain't ever going to shake 'em any more. Tom, I wouldn't ever got into all this trouble if it hadn't 'a' ben for that money; now you just take my sheer of it along with your'n, and gimme a ten-center sometimes--not many times, becuz I don't give a dern for a thing 'thout it's tollable hard to git--and you go and beg off for me with the widder." "Oh, Huck, you know I can't do that. 'Tain't fair; and besides if you'll try this thing just a while longer you'll come to like it." "Like it! Yes--the way I'd like a hot stove if I was to set on it long enough. No, Tom, I won't be rich, and I won't live in them cussed smothery houses. I like the woods, and the river, and hogsheads, and I'll stick to 'em, too. Blame it all! just as we'd got guns, and a cave, and all just fixed to rob, here this dern foolishness has got to come up and spile it all!" Tom saw his opportunity-- "Lookyhere, Huck, being rich ain't going to keep me back from turning robber." "No! Oh, good-licks; are you in real dead-wood earnest, Tom?" "Just as dead earnest as I'm sitting here. But Huck, we can't let you into the gang if you ain't respectable, you know." Huck's joy was quenched. "Can't let me in, Tom? Didn't you let me go for a pirate?" "Yes, but that's different. A robber is more high-toned than what a pirate is--as a general thing. In most countries they're awful high up in the nobility--dukes and such." "Now, Tom, hain't you always ben friendly to me? You wouldn't shet me out, would you, Tom? You wouldn't do that, now, WOULD you, Tom?" "Huck, I wouldn't want to, and I DON'T want to--but what would people say? Why, they'd say, 'Mph! Tom Sawyer's Gang! pretty low characters in it!' They'd mean you, Huck. You wouldn't like that, and I wouldn't." Huck was silent for some time, engaged in a mental struggle. Finally he said: "Well, I'll go back to the widder for a month and tackle it and see if I can come to stand it, if you'll let me b'long to the gang, Tom." "All right, Huck, it's a whiz! Come along, old chap, and I'll ask the widow to let up on you a little, Huck." "Will you, Tom--now will you? That's good. If she'll let up on some of the roughest things, I'll smoke private and cuss private, and crowd through or bust. When you going to start the gang and turn robbers?" "Oh, right off. We'll get the boys together and have the initiation to-night, maybe." "Have the which?" "Have the initiation." "What's that?" "It's to swear to stand by one another, and never tell the gang's secrets, even if you're chopped all to flinders, and kill anybody and all his family that hurts one of the gang." "That's gay--that's mighty gay, Tom, I tell you." "Well, I bet it is. And all that swearing's got to be done at midnight, in the lonesomest, awfulest place you can find--a ha'nted house is the best, but they're all ripped up now." "Well, midnight's good, anyway, Tom." "Yes, so it is. And you've got to swear on a coffin, and sign it with blood." "Now, that's something LIKE! Why, it's a million times bullier than pirating. I'll stick to the widder till I rot, Tom; and if I git to be a reg'lar ripper of a robber, and everybody talking 'bout it, I reckon she'll be proud she snaked me in out of the wet." CONCLUSION SO endeth this chronicle. It being strictly a history of a BOY, it must stop here; the story could not go much further without becoming the history of a MAN. When one writes a novel about grown people, he knows exactly where to stop--that is, with a marriage; but when he writes of juveniles, he must stop where he best can. Most of the characters that perform in this book still live, and are prosperous and happy. Some day it may seem worth while to take up the story of the younger ones again and see what sort of men and women they turned out to be; therefore it will be wisest not to reveal any of that part of their lives at present. Produced by David Widger. The previous edition was updated by Jose Menendez. THE ADVENTURES OF TOM SAWYER BY MARK TWAIN (Samuel Langhorne Clemens) P R E F A C E MOST of the adventures recorded in this book really occurred; one or two were experiences of my own, the rest those of boys who were schoolmates of mine. Huck Finn is drawn from life; Tom Sawyer also, but not from an individual--he is a combination of the characteristics of three boys whom I knew, and therefore belongs to the composite order of architecture. The odd superstitions touched upon were all prevalent among children and slaves in the West at the period of this story--that is to say, thirty or forty years ago. Although my book is intended mainly for the entertainment of boys and girls, I hope it will not be shunned by men and women on that account, for part of my plan has been to try to pleasantly remind adults of what they once were themselves, and of how they felt and thought and talked, and what queer enterprises they sometimes engaged in. THE AUTHOR. HARTFORD, 1876. T O M S A W Y E R CHAPTER I "TOM!" No answer. "TOM!" No answer. "What's gone with that boy, I wonder? You TOM!" No answer. The old lady pulled her spectacles down and looked over them about the room; then she put them up and looked out under them. She seldom or never looked THROUGH them for so small a thing as a boy; they were her state pair, the pride of her heart, and were built for "style," not service--she could have seen through a pair of stove-lids just as well. She looked perplexed for a moment, and then said, not fiercely, but still loud enough for the furniture to hear: "Well, I lay if I get hold of you I'll--" She did not finish, for by this time she was bending down and punching under the bed with the broom, and so she needed breath to punctuate the punches with. She resurrected nothing but the cat. "I never did see the beat of that boy!" She went to the open door and stood in it and looked out among the tomato vines and "jimpson" weeds that constituted the garden. No Tom. So she lifted up her voice at an angle calculated for distance and shouted: "Y-o-u-u TOM!" There was a slight noise behind her and she turned just in time to seize a small boy by the slack of his roundabout and arrest his flight. "There! I might 'a' thought of that closet. What you been doing in there?" "Nothing." "Nothing! Look at your hands. And look at your mouth. What IS that truck?" "I don't know, aunt." "Well, I know. It's jam--that's what it is. Forty times I've said if you didn't let that jam alone I'd skin you. Hand me that switch." The switch hovered in the air--the peril was desperate-- "My! Look behind you, aunt!" The old lady whirled round, and snatched her skirts out of danger. The lad fled on the instant, scrambled up the high board-fence, and disappeared over it. His aunt Polly stood surprised a moment, and then broke into a gentle laugh. "Hang the boy, can't I never learn anything? Ain't he played me tricks enough like that for me to be looking out for him by this time? But old fools is the biggest fools there is. Can't learn an old dog new tricks, as the saying is. But my goodness, he never plays them alike, two days, and how is a body to know what's coming? He 'pears to know just how long he can torment me before I get my dander up, and he knows if he can make out to put me off for a minute or make me laugh, it's all down again and I can't hit him a lick. I ain't doing my duty by that boy, and that's the Lord's truth, goodness knows. Spare the rod and spile the child, as the Good Book says. I'm a laying up sin and suffering for us both, I know. He's full of the Old Scratch, but laws-a-me! he's my own dead sister's boy, poor thing, and I ain't got the heart to lash him, somehow. Every time I let him off, my conscience does hurt me so, and every time I hit him my old heart most breaks. Well-a-well, man that is born of woman is of few days and full of trouble, as the Scripture says, and I reckon it's so. He'll play hookey this evening, * and [* Southwestern for "afternoon"] I'll just be obleeged to make him work, to-morrow, to punish him. It's mighty hard to make him work Saturdays, when all the boys is having holiday, but he hates work more than he hates anything else, and I've GOT to do some of my duty by him, or I'll be the ruination of the child." Tom did play hookey, and he had a very good time. He got back home barely in season to help Jim, the small colored boy, saw next-day's wood and split the kindlings before supper--at least he was there in time to tell his adventures to Jim while Jim did three-fourths of the work. Tom's younger brother (or rather half-brother) Sid was already through with his part of the work (picking up chips), for he was a quiet boy, and had no adventurous, troublesome ways. While Tom was eating his supper, and stealing sugar as opportunity offered, Aunt Polly asked him questions that were full of guile, and very deep--for she wanted to trap him into damaging revealments. Like many other simple-hearted souls, it was her pet vanity to believe she was endowed with a talent for dark and mysterious diplomacy, and she loved to contemplate her most transparent devices as marvels of low cunning. Said she: "Tom, it was middling warm in school, warn't it?" "Yes'm." "Powerful warm, warn't it?" "Yes'm." "Didn't you want to go in a-swimming, Tom?" A bit of a scare shot through Tom--a touch of uncomfortable suspicion. He searched Aunt Polly's face, but it told him nothing. So he said: "No'm--well, not very much." The old lady reached out her hand and felt Tom's shirt, and said: "But you ain't too warm now, though." And it flattered her to reflect that she had discovered that the shirt was dry without anybody knowing that that was what she had in her mind. But in spite of her, Tom knew where the wind lay, now. So he forestalled what might be the next move: "Some of us pumped on our heads--mine's damp yet. See?" Aunt Polly was vexed to think she had overlooked that bit of circumstantial evidence, and missed a trick. Then she had a new inspiration: "Tom, you didn't have to undo your shirt collar where I sewed it, to pump on your head, did you? Unbutton your jacket!" The trouble vanished out of Tom's face. He opened his jacket. His shirt collar was securely sewed. "Bother! Well, go 'long with you. I'd made sure you'd played hookey and been a-swimming. But I forgive ye, Tom. I reckon you're a kind of a singed cat, as the saying is--better'n you look. THIS time." She was half sorry her sagacity had miscarried, and half glad that Tom had stumbled into obedient conduct for once. But Sidney said: "Well, now, if I didn't think you sewed his collar with white thread, but it's black." "Why, I did sew it with white! Tom!" But Tom did not wait for the rest. As he went out at the door he said: "Siddy, I'll lick you for that." In a safe place Tom examined two large needles which were thrust into the lapels of his jacket, and had thread bound about them--one needle carried white thread and the other black. He said: "She'd never noticed if it hadn't been for Sid. Confound it! sometimes she sews it with white, and sometimes she sews it with black. I wish to geeminy she'd stick to one or t'other--I can't keep the run of 'em. But I bet you I'll lam Sid for that. I'll learn him!" He was not the Model Boy of the village. He knew the model boy very well though--and loathed him. Within two minutes, or even less, he had forgotten all his troubles. Not because his troubles were one whit less heavy and bitter to him than a man's are to a man, but because a new and powerful interest bore them down and drove them out of his mind for the time--just as men's misfortunes are forgotten in the excitement of new enterprises. This new interest was a valued novelty in whistling, which he had just acquired from a negro, and he was suffering to practise it undisturbed. It consisted in a peculiar bird-like turn, a sort of liquid warble, produced by touching the tongue to the roof of the mouth at short intervals in the midst of the music--the reader probably remembers how to do it, if he has ever been a boy. Diligence and attention soon gave him the knack of it, and he strode down the street with his mouth full of harmony and his soul full of gratitude. He felt much as an astronomer feels who has discovered a new planet--no doubt, as far as strong, deep, unalloyed pleasure is concerned, the advantage was with the boy, not the astronomer. The summer evenings were long. It was not dark, yet. Presently Tom checked his whistle. A stranger was before him--a boy a shade larger than himself. A new-comer of any age or either sex was an impressive curiosity in the poor little shabby village of St. Petersburg. This boy was well dressed, too--well dressed on a week-day. This was simply astounding. His cap was a dainty thing, his close-buttoned blue cloth roundabout was new and natty, and so were his pantaloons. He had shoes on--and it was only Friday. He even wore a necktie, a bright bit of ribbon. He had a citified air about him that ate into Tom's vitals. The more Tom stared at the splendid marvel, the higher he turned up his nose at his finery and the shabbier and shabbier his own outfit seemed to him to grow. Neither boy spoke. If one moved, the other moved--but only sidewise, in a circle; they kept face to face and eye to eye all the time. Finally Tom said: "I can lick you!" "I'd like to see you try it." "Well, I can do it." "No you can't, either." "Yes I can." "No you can't." "I can." "You can't." "Can!" "Can't!" An uncomfortable pause. Then Tom said: "What's your name?" "'Tisn't any of your business, maybe." "Well I 'low I'll MAKE it my business." "Well why don't you?" "If you say much, I will." "Much--much--MUCH. There now." "Oh, you think you're mighty smart, DON'T you? I could lick you with one hand tied behind me, if I wanted to." "Well why don't you DO it? You SAY you can do it." "Well I WILL, if you fool with me." "Oh yes--I've seen whole families in the same fix." "Smarty! You think you're SOME, now, DON'T you? Oh, what a hat!" "You can lump that hat if you don't like it. I dare you to knock it off--and anybody that'll take a dare will suck eggs." "You're a liar!" "You're another." "You're a fighting liar and dasn't take it up." "Aw--take a walk!" "Say--if you give me much more of your sass I'll take and bounce a rock off'n your head." "Oh, of COURSE you will." "Well I WILL." "Well why don't you DO it then? What do you keep SAYING you will for? Why don't you DO it? It's because you're afraid." "I AIN'T afraid." "You are." "I ain't." "You are." Another pause, and more eying and sidling around each other. Presently they were shoulder to shoulder. Tom said: "Get away from here!" "Go away yourself!" "I won't." "I won't either." So they stood, each with a foot placed at an angle as a brace, and both shoving with might and main, and glowering at each other with hate. But neither could get an advantage. After struggling till both were hot and flushed, each relaxed his strain with watchful caution, and Tom said: "You're a coward and a pup. I'll tell my big brother on you, and he can thrash you with his little finger, and I'll make him do it, too." "What do I care for your big brother? I've got a brother that's bigger than he is--and what's more, he can throw him over that fence, too." [Both brothers were imaginary.] "That's a lie." "YOUR saying so don't make it so." Tom drew a line in the dust with his big toe, and said: "I dare you to step over that, and I'll lick you till you can't stand up. Anybody that'll take a dare will steal sheep." The new boy stepped over promptly, and said: "Now you said you'd do it, now let's see you do it." "Don't you crowd me now; you better look out." "Well, you SAID you'd do it--why don't you do it?" "By jingo! for two cents I WILL do it." The new boy took two broad coppers out of his pocket and held them out with derision. Tom struck them to the ground. In an instant both boys were rolling and tumbling in the dirt, gripped together like cats; and for the space of a minute they tugged and tore at each other's hair and clothes, punched and scratched each other's nose, and covered themselves with dust and glory. Presently the confusion took form, and through the fog of battle Tom appeared, seated astride the new boy, and pounding him with his fists. "Holler 'nuff!" said he. The boy only struggled to free himself. He was crying--mainly from rage. "Holler 'nuff!"--and the pounding went on. At last the stranger got out a smothered "'Nuff!" and Tom let him up and said: "Now that'll learn you. Better look out who you're fooling with next time." The new boy went off brushing the dust from his clothes, sobbing, snuffling, and occasionally looking back and shaking his head and threatening what he would do to Tom the "next time he caught him out." To which Tom responded with jeers, and started off in high feather, and as soon as his back was turned the new boy snatched up a stone, threw it and hit him between the shoulders and then turned tail and ran like an antelope. Tom chased the traitor home, and thus found out where he lived. He then held a position at the gate for some time, daring the enemy to come outside, but the enemy only made faces at him through the window and declined. At last the enemy's mother appeared, and called Tom a bad, vicious, vulgar child, and ordered him away. So he went away; but he said he "'lowed" to "lay" for that boy. He got home pretty late that night, and when he climbed cautiously in at the window, he uncovered an ambuscade, in the person of his aunt; and when she saw the state his clothes were in her resolution to turn his Saturday holiday into captivity at hard labor became adamantine in its firmness. CHAPTER II SATURDAY morning was come, and all the summer world was bright and fresh, and brimming with life. There was a song in every heart; and if the heart was young the music issued at the lips. There was cheer in every face and a spring in every step. The locust-trees were in bloom and the fragrance of the blossoms filled the air. Cardiff Hill, beyond the village and above it, was green with vegetation and it lay just far enough away to seem a Delectable Land, dreamy, reposeful, and inviting. Tom appeared on the sidewalk with a bucket of whitewash and a long-handled brush. He surveyed the fence, and all gladness left him and a deep melancholy settled down upon his spirit. Thirty yards of board fence nine feet high. Life to him seemed hollow, and existence but a burden. Sighing, he dipped his brush and passed it along the topmost plank; repeated the operation; did it again; compared the insignificant whitewashed streak with the far-reaching continent of unwhitewashed fence, and sat down on a tree-box discouraged. Jim came skipping out at the gate with a tin pail, and singing Buffalo Gals. Bringing water from the town pump had always been hateful work in Tom's eyes, before, but now it did not strike him so. He remembered that there was company at the pump. White, mulatto, and negro boys and girls were always there waiting their turns, resting, trading playthings, quarrelling, fighting, skylarking. And he remembered that although the pump was only a hundred and fifty yards off, Jim never got back with a bucket of water under an hour--and even then somebody generally had to go after him. Tom said: "Say, Jim, I'll fetch the water if you'll whitewash some." Jim shook his head and said: "Can't, Mars Tom. Ole missis, she tole me I got to go an' git dis water an' not stop foolin' roun' wid anybody. She say she spec' Mars Tom gwine to ax me to whitewash, an' so she tole me go 'long an' 'tend to my own business--she 'lowed SHE'D 'tend to de whitewashin'." "Oh, never you mind what she said, Jim. That's the way she always talks. Gimme the bucket--I won't be gone only a a minute. SHE won't ever know." "Oh, I dasn't, Mars Tom. Ole missis she'd take an' tar de head off'n me. 'Deed she would." "SHE! She never licks anybody--whacks 'em over the head with her thimble--and who cares for that, I'd like to know. She talks awful, but talk don't hurt--anyways it don't if she don't cry. Jim, I'll give you a marvel. I'll give you a white alley!" Jim began to waver. "White alley, Jim! And it's a bully taw." "My! Dat's a mighty gay marvel, I tell you! But Mars Tom I's powerful 'fraid ole missis--" "And besides, if you will I'll show you my sore toe." Jim was only human--this attraction was too much for him. He put down his pail, took the white alley, and bent over the toe with absorbing interest while the bandage was being unwound. In another moment he was flying down the street with his pail and a tingling rear, Tom was whitewashing with vigor, and Aunt Polly was retiring from the field with a slipper in her hand and triumph in her eye. But Tom's energy did not last. He began to think of the fun he had planned for this day, and his sorrows multiplied. Soon the free boys would come tripping along on all sorts of delicious expeditions, and they would make a world of fun of him for having to work--the very thought of it burnt him like fire. He got out his worldly wealth and examined it--bits of toys, marbles, and trash; enough to buy an exchange of WORK, maybe, but not half enough to buy so much as half an hour of pure freedom. So he returned his straitened means to his pocket, and gave up the idea of trying to buy the boys. At this dark and hopeless moment an inspiration burst upon him! Nothing less than a great, magnificent inspiration. He took up his brush and went tranquilly to work. Ben Rogers hove in sight presently--the very boy, of all boys, whose ridicule he had been dreading. Ben's gait was the hop-skip-and-jump--proof enough that his heart was light and his anticipations high. He was eating an apple, and giving a long, melodious whoop, at intervals, followed by a deep-toned ding-dong-dong, ding-dong-dong, for he was personating a steamboat. As he drew near, he slackened speed, took the middle of the street, leaned far over to starboard and rounded to ponderously and with laborious pomp and circumstance--for he was personating the Big Missouri, and considered himself to be drawing nine feet of water. He was boat and captain and engine-bells combined, so he had to imagine himself standing on his own hurricane-deck giving the orders and executing them: "Stop her, sir! Ting-a-ling-ling!" The headway ran almost out, and he drew up slowly toward the sidewalk. "Ship up to back! Ting-a-ling-ling!" His arms straightened and stiffened down his sides. "Set her back on the stabboard! Ting-a-ling-ling! Chow! ch-chow-wow! Chow!" His right hand, meantime, describing stately circles--for it was representing a forty-foot wheel. "Let her go back on the labboard! Ting-a-lingling! Chow-ch-chow-chow!" The left hand began to describe circles. "Stop the stabboard! Ting-a-ling-ling! Stop the labboard! Come ahead on the stabboard! Stop her! Let your outside turn over slow! Ting-a-ling-ling! Chow-ow-ow! Get out that head-line! LIVELY now! Come--out with your spring-line--what're you about there! Take a turn round that stump with the bight of it! Stand by that stage, now--let her go! Done with the engines, sir! Ting-a-ling-ling! SH'T! S'H'T! SH'T!" (trying the gauge-cocks). Tom went on whitewashing--paid no attention to the steamboat. Ben stared a moment and then said: "Hi-YI! YOU'RE up a stump, ain't you!" No answer. Tom surveyed his last touch with the eye of an artist, then he gave his brush another gentle sweep and surveyed the result, as before. Ben ranged up alongside of him. Tom's mouth watered for the apple, but he stuck to his work. Ben said: "Hello, old chap, you got to work, hey?" Tom wheeled suddenly and said: "Why, it's you, Ben! I warn't noticing." "Say--I'm going in a-swimming, I am. Don't you wish you could? But of course you'd druther WORK--wouldn't you? Course you would!" Tom contemplated the boy a bit, and said: "What do you call work?" "Why, ain't THAT work?" Tom resumed his whitewashing, and answered carelessly: "Well, maybe it is, and maybe it ain't. All I know, is, it suits Tom Sawyer." "Oh come, now, you don't mean to let on that you LIKE it?" The brush continued to move. "Like it? Well, I don't see why I oughtn't to like it. Does a boy get a chance to whitewash a fence every day?" That put the thing in a new light. Ben stopped nibbling his apple. Tom swept his brush daintily back and forth--stepped back to note the effect--added a touch here and there--criticised the effect again--Ben watching every move and getting more and more interested, more and more absorbed. Presently he said: "Say, Tom, let ME whitewash a little." Tom considered, was about to consent; but he altered his mind: "No--no--I reckon it wouldn't hardly do, Ben. You see, Aunt Polly's awful particular about this fence--right here on the street, you know --but if it was the back fence I wouldn't mind and SHE wouldn't. Yes, she's awful particular about this fence; it's got to be done very careful; I reckon there ain't one boy in a thousand, maybe two thousand, that can do it the way it's got to be done." "No--is that so? Oh come, now--lemme just try. Only just a little--I'd let YOU, if you was me, Tom." "Ben, I'd like to, honest injun; but Aunt Polly--well, Jim wanted to do it, but she wouldn't let him; Sid wanted to do it, and she wouldn't let Sid. Now don't you see how I'm fixed? If you was to tackle this fence and anything was to happen to it--" "Oh, shucks, I'll be just as careful. Now lemme try. Say--I'll give you the core of my apple." "Well, here--No, Ben, now don't. I'm afeard--" "I'll give you ALL of it!" Tom gave up the brush with reluctance in his face, but alacrity in his heart. And while the late steamer Big Missouri worked and sweated in the sun, the retired artist sat on a barrel in the shade close by, dangled his legs, munched his apple, and planned the slaughter of more innocents. There was no lack of material; boys happened along every little while; they came to jeer, but remained to whitewash. By the time Ben was fagged out, Tom had traded the next chance to Billy Fisher for a kite, in good repair; and when he played out, Johnny Miller bought in for a dead rat and a string to swing it with--and so on, and so on, hour after hour. And when the middle of the afternoon came, from being a poor poverty-stricken boy in the morning, Tom was literally rolling in wealth. He had besides the things before mentioned, twelve marbles, part of a jews-harp, a piece of blue bottle-glass to look through, a spool cannon, a key that wouldn't unlock anything, a fragment of chalk, a glass stopper of a decanter, a tin soldier, a couple of tadpoles, six fire-crackers, a kitten with only one eye, a brass doorknob, a dog-collar--but no dog--the handle of a knife, four pieces of orange-peel, and a dilapidated old window sash. He had had a nice, good, idle time all the while--plenty of company --and the fence had three coats of whitewash on it! If he hadn't run out of whitewash he would have bankrupted every boy in the village. Tom said to himself that it was not such a hollow world, after all. He had discovered a great law of human action, without knowing it--namely, that in order to make a man or a boy covet a thing, it is only necessary to make the thing difficult to attain. If he had been a great and wise philosopher, like the writer of this book, he would now have comprehended that Work consists of whatever a body is OBLIGED to do, and that Play consists of whatever a body is not obliged to do. And this would help him to understand why constructing artificial flowers or performing on a tread-mill is work, while rolling ten-pins or climbing Mont Blanc is only amusement. There are wealthy gentlemen in England who drive four-horse passenger-coaches twenty or thirty miles on a daily line, in the summer, because the privilege costs them considerable money; but if they were offered wages for the service, that would turn it into work and then they would resign. The boy mused awhile over the substantial change which had taken place in his worldly circumstances, and then wended toward headquarters to report. CHAPTER III TOM presented himself before Aunt Polly, who was sitting by an open window in a pleasant rearward apartment, which was bedroom, breakfast-room, dining-room, and library, combined. The balmy summer air, the restful quiet, the odor of the flowers, and the drowsing murmur of the bees had had their effect, and she was nodding over her knitting --for she had no company but the cat, and it was asleep in her lap. Her spectacles were propped up on her gray head for safety. She had thought that of course Tom had deserted long ago, and she wondered at seeing him place himself in her power again in this intrepid way. He said: "Mayn't I go and play now, aunt?" "What, a'ready? How much have you done?" "It's all done, aunt." "Tom, don't lie to me--I can't bear it." "I ain't, aunt; it IS all done." Aunt Polly placed small trust in such evidence. She went out to see for herself; and she would have been content to find twenty per cent. of Tom's statement true. When she found the entire fence whitewashed, and not only whitewashed but elaborately coated and recoated, and even a streak added to the ground, her astonishment was almost unspeakable. She said: "Well, I never! There's no getting round it, you can work when you're a mind to, Tom." And then she diluted the compliment by adding, "But it's powerful seldom you're a mind to, I'm bound to say. Well, go 'long and play; but mind you get back some time in a week, or I'll tan you." She was so overcome by the splendor of his achievement that she took him into the closet and selected a choice apple and delivered it to him, along with an improving lecture upon the added value and flavor a treat took to itself when it came without sin through virtuous effort. And while she closed with a happy Scriptural flourish, he "hooked" a doughnut. Then he skipped out, and saw Sid just starting up the outside stairway that led to the back rooms on the second floor. Clods were handy and the air was full of them in a twinkling. They raged around Sid like a hail-storm; and before Aunt Polly could collect her surprised faculties and sally to the rescue, six or seven clods had taken personal effect, and Tom was over the fence and gone. There was a gate, but as a general thing he was too crowded for time to make use of it. His soul was at peace, now that he had settled with Sid for calling attention to his black thread and getting him into trouble. Tom skirted the block, and came round into a muddy alley that led by the back of his aunt's cow-stable. He presently got safely beyond the reach of capture and punishment, and hastened toward the public square of the village, where two "military" companies of boys had met for conflict, according to previous appointment. Tom was General of one of these armies, Joe Harper (a bosom friend) General of the other. These two great commanders did not condescend to fight in person--that being better suited to the still smaller fry--but sat together on an eminence and conducted the field operations by orders delivered through aides-de-camp. Tom's army won a great victory, after a long and hard-fought battle. Then the dead were counted, prisoners exchanged, the terms of the next disagreement agreed upon, and the day for the necessary battle appointed; after which the armies fell into line and marched away, and Tom turned homeward alone. As he was passing by the house where Jeff Thatcher lived, he saw a new girl in the garden--a lovely little blue-eyed creature with yellow hair plaited into two long-tails, white summer frock and embroidered pantalettes. The fresh-crowned hero fell without firing a shot. A certain Amy Lawrence vanished out of his heart and left not even a memory of herself behind. He had thought he loved her to distraction; he had regarded his passion as adoration; and behold it was only a poor little evanescent partiality. He had been months winning her; she had confessed hardly a week ago; he had been the happiest and the proudest boy in the world only seven short days, and here in one instant of time she had gone out of his heart like a casual stranger whose visit is done. He worshipped this new angel with furtive eye, till he saw that she had discovered him; then he pretended he did not know she was present, and began to "show off" in all sorts of absurd boyish ways, in order to win her admiration. He kept up this grotesque foolishness for some time; but by-and-by, while he was in the midst of some dangerous gymnastic performances, he glanced aside and saw that the little girl was wending her way toward the house. Tom came up to the fence and leaned on it, grieving, and hoping she would tarry yet awhile longer. She halted a moment on the steps and then moved toward the door. Tom heaved a great sigh as she put her foot on the threshold. But his face lit up, right away, for she tossed a pansy over the fence a moment before she disappeared. The boy ran around and stopped within a foot or two of the flower, and then shaded his eyes with his hand and began to look down street as if he had discovered something of interest going on in that direction. Presently he picked up a straw and began trying to balance it on his nose, with his head tilted far back; and as he moved from side to side, in his efforts, he edged nearer and nearer toward the pansy; finally his bare foot rested upon it, his pliant toes closed upon it, and he hopped away with the treasure and disappeared round the corner. But only for a minute--only while he could button the flower inside his jacket, next his heart--or next his stomach, possibly, for he was not much posted in anatomy, and not hypercritical, anyway. He returned, now, and hung about the fence till nightfall, "showing off," as before; but the girl never exhibited herself again, though Tom comforted himself a little with the hope that she had been near some window, meantime, and been aware of his attentions. Finally he strode home reluctantly, with his poor head full of visions. All through supper his spirits were so high that his aunt wondered "what had got into the child." He took a good scolding about clodding Sid, and did not seem to mind it in the least. He tried to steal sugar under his aunt's very nose, and got his knuckles rapped for it. He said: "Aunt, you don't whack Sid when he takes it." "Well, Sid don't torment a body the way you do. You'd be always into that sugar if I warn't watching you." Presently she stepped into the kitchen, and Sid, happy in his immunity, reached for the sugar-bowl--a sort of glorying over Tom which was wellnigh unbearable. But Sid's fingers slipped and the bowl dropped and broke. Tom was in ecstasies. In such ecstasies that he even controlled his tongue and was silent. He said to himself that he would not speak a word, even when his aunt came in, but would sit perfectly still till she asked who did the mischief; and then he would tell, and there would be nothing so good in the world as to see that pet model "catch it." He was so brimful of exultation that he could hardly hold himself when the old lady came back and stood above the wreck discharging lightnings of wrath from over her spectacles. He said to himself, "Now it's coming!" And the next instant he was sprawling on the floor! The potent palm was uplifted to strike again when Tom cried out: "Hold on, now, what 'er you belting ME for?--Sid broke it!" Aunt Polly paused, perplexed, and Tom looked for healing pity. But when she got her tongue again, she only said: "Umf! Well, you didn't get a lick amiss, I reckon. You been into some other audacious mischief when I wasn't around, like enough." Then her conscience reproached her, and she yearned to say something kind and loving; but she judged that this would be construed into a confession that she had been in the wrong, and discipline forbade that. So she kept silence, and went about her affairs with a troubled heart. Tom sulked in a corner and exalted his woes. He knew that in her heart his aunt was on her knees to him, and he was morosely gratified by the consciousness of it. He would hang out no signals, he would take notice of none. He knew that a yearning glance fell upon him, now and then, through a film of tears, but he refused recognition of it. He pictured himself lying sick unto death and his aunt bending over him beseeching one little forgiving word, but he would turn his face to the wall, and die with that word unsaid. Ah, how would she feel then? And he pictured himself brought home from the river, dead, with his curls all wet, and his sore heart at rest. How she would throw herself upon him, and how her tears would fall like rain, and her lips pray God to give her back her boy and she would never, never abuse him any more! But he would lie there cold and white and make no sign--a poor little sufferer, whose griefs were at an end. He so worked upon his feelings with the pathos of these dreams, that he had to keep swallowing, he was so like to choke; and his eyes swam in a blur of water, which overflowed when he winked, and ran down and trickled from the end of his nose. And such a luxury to him was this petting of his sorrows, that he could not bear to have any worldly cheeriness or any grating delight intrude upon it; it was too sacred for such contact; and so, presently, when his cousin Mary danced in, all alive with the joy of seeing home again after an age-long visit of one week to the country, he got up and moved in clouds and darkness out at one door as she brought song and sunshine in at the other. He wandered far from the accustomed haunts of boys, and sought desolate places that were in harmony with his spirit. A log raft in the river invited him, and he seated himself on its outer edge and contemplated the dreary vastness of the stream, wishing, the while, that he could only be drowned, all at once and unconsciously, without undergoing the uncomfortable routine devised by nature. Then he thought of his flower. He got it out, rumpled and wilted, and it mightily increased his dismal felicity. He wondered if she would pity him if she knew? Would she cry, and wish that she had a right to put her arms around his neck and comfort him? Or would she turn coldly away like all the hollow world? This picture brought such an agony of pleasurable suffering that he worked it over and over again in his mind and set it up in new and varied lights, till he wore it threadbare. At last he rose up sighing and departed in the darkness. About half-past nine or ten o'clock he came along the deserted street to where the Adored Unknown lived; he paused a moment; no sound fell upon his listening ear; a candle was casting a dull glow upon the curtain of a second-story window. Was the sacred presence there? He climbed the fence, threaded his stealthy way through the plants, till he stood under that window; he looked up at it long, and with emotion; then he laid him down on the ground under it, disposing himself upon his back, with his hands clasped upon his breast and holding his poor wilted flower. And thus he would die--out in the cold world, with no shelter over his homeless head, no friendly hand to wipe the death-damps from his brow, no loving face to bend pityingly over him when the great agony came. And thus SHE would see him when she looked out upon the glad morning, and oh! would she drop one little tear upon his poor, lifeless form, would she heave one little sigh to see a bright young life so rudely blighted, so untimely cut down? The window went up, a maid-servant's discordant voice profaned the holy calm, and a deluge of water drenched the prone martyr's remains! The strangling hero sprang up with a relieving snort. There was a whiz as of a missile in the air, mingled with the murmur of a curse, a sound as of shivering glass followed, and a small, vague form went over the fence and shot away in the gloom. Not long after, as Tom, all undressed for bed, was surveying his drenched garments by the light of a tallow dip, Sid woke up; but if he had any dim idea of making any "references to allusions," he thought better of it and held his peace, for there was danger in Tom's eye. Tom turned in without the added vexation of prayers, and Sid made mental note of the omission. CHAPTER IV THE sun rose upon a tranquil world, and beamed down upon the peaceful village like a benediction. Breakfast over, Aunt Polly had family worship: it began with a prayer built from the ground up of solid courses of Scriptural quotations, welded together with a thin mortar of originality; and from the summit of this she delivered a grim chapter of the Mosaic Law, as from Sinai. Then Tom girded up his loins, so to speak, and went to work to "get his verses." Sid had learned his lesson days before. Tom bent all his energies to the memorizing of five verses, and he chose part of the Sermon on the Mount, because he could find no verses that were shorter. At the end of half an hour Tom had a vague general idea of his lesson, but no more, for his mind was traversing the whole field of human thought, and his hands were busy with distracting recreations. Mary took his book to hear him recite, and he tried to find his way through the fog: "Blessed are the--a--a--" "Poor"-- "Yes--poor; blessed are the poor--a--a--" "In spirit--" "In spirit; blessed are the poor in spirit, for they--they--" "THEIRS--" "For THEIRS. Blessed are the poor in spirit, for theirs is the kingdom of heaven. Blessed are they that mourn, for they--they--" "Sh--" "For they--a--" "S, H, A--" "For they S, H--Oh, I don't know what it is!" "SHALL!" "Oh, SHALL! for they shall--for they shall--a--a--shall mourn--a--a-- blessed are they that shall--they that--a--they that shall mourn, for they shall--a--shall WHAT? Why don't you tell me, Mary?--what do you want to be so mean for?" "Oh, Tom, you poor thick-headed thing, I'm not teasing you. I wouldn't do that. You must go and learn it again. Don't you be discouraged, Tom, you'll manage it--and if you do, I'll give you something ever so nice. There, now, that's a good boy." "All right! What is it, Mary, tell me what it is." "Never you mind, Tom. You know if I say it's nice, it is nice." "You bet you that's so, Mary. All right, I'll tackle it again." And he did "tackle it again"--and under the double pressure of curiosity and prospective gain he did it with such spirit that he accomplished a shining success. Mary gave him a brand-new "Barlow" knife worth twelve and a half cents; and the convulsion of delight that swept his system shook him to his foundations. True, the knife would not cut anything, but it was a "sure-enough" Barlow, and there was inconceivable grandeur in that--though where the Western boys ever got the idea that such a weapon could possibly be counterfeited to its injury is an imposing mystery and will always remain so, perhaps. Tom contrived to scarify the cupboard with it, and was arranging to begin on the bureau, when he was called off to dress for Sunday-school. Mary gave him a tin basin of water and a piece of soap, and he went outside the door and set the basin on a little bench there; then he dipped the soap in the water and laid it down; turned up his sleeves; poured out the water on the ground, gently, and then entered the kitchen and began to wipe his face diligently on the towel behind the door. But Mary removed the towel and said: "Now ain't you ashamed, Tom. You mustn't be so bad. Water won't hurt you." Tom was a trifle disconcerted. The basin was refilled, and this time he stood over it a little while, gathering resolution; took in a big breath and began. When he entered the kitchen presently, with both eyes shut and groping for the towel with his hands, an honorable testimony of suds and water was dripping from his face. But when he emerged from the towel, he was not yet satisfactory, for the clean territory stopped short at his chin and his jaws, like a mask; below and beyond this line there was a dark expanse of unirrigated soil that spread downward in front and backward around his neck. Mary took him in hand, and when she was done with him he was a man and a brother, without distinction of color, and his saturated hair was neatly brushed, and its short curls wrought into a dainty and symmetrical general effect. [He privately smoothed out the curls, with labor and difficulty, and plastered his hair close down to his head; for he held curls to be effeminate, and his own filled his life with bitterness.] Then Mary got out a suit of his clothing that had been used only on Sundays during two years--they were simply called his "other clothes"--and so by that we know the size of his wardrobe. The girl "put him to rights" after he had dressed himself; she buttoned his neat roundabout up to his chin, turned his vast shirt collar down over his shoulders, brushed him off and crowned him with his speckled straw hat. He now looked exceedingly improved and uncomfortable. He was fully as uncomfortable as he looked; for there was a restraint about whole clothes and cleanliness that galled him. He hoped that Mary would forget his shoes, but the hope was blighted; she coated them thoroughly with tallow, as was the custom, and brought them out. He lost his temper and said he was always being made to do everything he didn't want to do. But Mary said, persuasively: "Please, Tom--that's a good boy." So he got into the shoes snarling. Mary was soon ready, and the three children set out for Sunday-school--a place that Tom hated with his whole heart; but Sid and Mary were fond of it. Sabbath-school hours were from nine to half-past ten; and then church service. Two of the children always remained for the sermon voluntarily, and the other always remained too--for stronger reasons. The church's high-backed, uncushioned pews would seat about three hundred persons; the edifice was but a small, plain affair, with a sort of pine board tree-box on top of it for a steeple. At the door Tom dropped back a step and accosted a Sunday-dressed comrade: "Say, Billy, got a yaller ticket?" "Yes." "What'll you take for her?" "What'll you give?" "Piece of lickrish and a fish-hook." "Less see 'em." Tom exhibited. They were satisfactory, and the property changed hands. Then Tom traded a couple of white alleys for three red tickets, and some small trifle or other for a couple of blue ones. He waylaid other boys as they came, and went on buying tickets of various colors ten or fifteen minutes longer. He entered the church, now, with a swarm of clean and noisy boys and girls, proceeded to his seat and started a quarrel with the first boy that came handy. The teacher, a grave, elderly man, interfered; then turned his back a moment and Tom pulled a boy's hair in the next bench, and was absorbed in his book when the boy turned around; stuck a pin in another boy, presently, in order to hear him say "Ouch!" and got a new reprimand from his teacher. Tom's whole class were of a pattern--restless, noisy, and troublesome. When they came to recite their lessons, not one of them knew his verses perfectly, but had to be prompted all along. However, they worried through, and each got his reward--in small blue tickets, each with a passage of Scripture on it; each blue ticket was pay for two verses of the recitation. Ten blue tickets equalled a red one, and could be exchanged for it; ten red tickets equalled a yellow one; for ten yellow tickets the superintendent gave a very plainly bound Bible (worth forty cents in those easy times) to the pupil. How many of my readers would have the industry and application to memorize two thousand verses, even for a Dore Bible? And yet Mary had acquired two Bibles in this way--it was the patient work of two years--and a boy of German parentage had won four or five. He once recited three thousand verses without stopping; but the strain upon his mental faculties was too great, and he was little better than an idiot from that day forth--a grievous misfortune for the school, for on great occasions, before company, the superintendent (as Tom expressed it) had always made this boy come out and "spread himself." Only the older pupils managed to keep their tickets and stick to their tedious work long enough to get a Bible, and so the delivery of one of these prizes was a rare and noteworthy circumstance; the successful pupil was so great and conspicuous for that day that on the spot every scholar's heart was fired with a fresh ambition that often lasted a couple of weeks. It is possible that Tom's mental stomach had never really hungered for one of those prizes, but unquestionably his entire being had for many a day longed for the glory and the eclat that came with it. In due course the superintendent stood up in front of the pulpit, with a closed hymn-book in his hand and his forefinger inserted between its leaves, and commanded attention. When a Sunday-school superintendent makes his customary little speech, a hymn-book in the hand is as necessary as is the inevitable sheet of music in the hand of a singer who stands forward on the platform and sings a solo at a concert --though why, is a mystery: for neither the hymn-book nor the sheet of music is ever referred to by the sufferer. This superintendent was a slim creature of thirty-five, with a sandy goatee and short sandy hair; he wore a stiff standing-collar whose upper edge almost reached his ears and whose sharp points curved forward abreast the corners of his mouth--a fence that compelled a straight lookout ahead, and a turning of the whole body when a side view was required; his chin was propped on a spreading cravat which was as broad and as long as a bank-note, and had fringed ends; his boot toes were turned sharply up, in the fashion of the day, like sleigh-runners--an effect patiently and laboriously produced by the young men by sitting with their toes pressed against a wall for hours together. Mr. Walters was very earnest of mien, and very sincere and honest at heart; and he held sacred things and places in such reverence, and so separated them from worldly matters, that unconsciously to himself his Sunday-school voice had acquired a peculiar intonation which was wholly absent on week-days. He began after this fashion: "Now, children, I want you all to sit up just as straight and pretty as you can and give me all your attention for a minute or two. There --that is it. That is the way good little boys and girls should do. I see one little girl who is looking out of the window--I am afraid she thinks I am out there somewhere--perhaps up in one of the trees making a speech to the little birds. [Applausive titter.] I want to tell you how good it makes me feel to see so many bright, clean little faces assembled in a place like this, learning to do right and be good." And so forth and so on. It is not necessary to set down the rest of the oration. It was of a pattern which does not vary, and so it is familiar to us all. The latter third of the speech was marred by the resumption of fights and other recreations among certain of the bad boys, and by fidgetings and whisperings that extended far and wide, washing even to the bases of isolated and incorruptible rocks like Sid and Mary. But now every sound ceased suddenly, with the subsidence of Mr. Walters' voice, and the conclusion of the speech was received with a burst of silent gratitude. A good part of the whispering had been occasioned by an event which was more or less rare--the entrance of visitors: lawyer Thatcher, accompanied by a very feeble and aged man; a fine, portly, middle-aged gentleman with iron-gray hair; and a dignified lady who was doubtless the latter's wife. The lady was leading a child. Tom had been restless and full of chafings and repinings; conscience-smitten, too--he could not meet Amy Lawrence's eye, he could not brook her loving gaze. But when he saw this small new-comer his soul was all ablaze with bliss in a moment. The next moment he was "showing off" with all his might --cuffing boys, pulling hair, making faces--in a word, using every art that seemed likely to fascinate a girl and win her applause. His exaltation had but one alloy--the memory of his humiliation in this angel's garden--and that record in sand was fast washing out, under the waves of happiness that were sweeping over it now. The visitors were given the highest seat of honor, and as soon as Mr. Walters' speech was finished, he introduced them to the school. The middle-aged man turned out to be a prodigious personage--no less a one than the county judge--altogether the most august creation these children had ever looked upon--and they wondered what kind of material he was made of--and they half wanted to hear him roar, and were half afraid he might, too. He was from Constantinople, twelve miles away--so he had travelled, and seen the world--these very eyes had looked upon the county court-house--which was said to have a tin roof. The awe which these reflections inspired was attested by the impressive silence and the ranks of staring eyes. This was the great Judge Thatcher, brother of their own lawyer. Jeff Thatcher immediately went forward, to be familiar with the great man and be envied by the school. It would have been music to his soul to hear the whisperings: "Look at him, Jim! He's a going up there. Say--look! he's a going to shake hands with him--he IS shaking hands with him! By jings, don't you wish you was Jeff?" Mr. Walters fell to "showing off," with all sorts of official bustlings and activities, giving orders, delivering judgments, discharging directions here, there, everywhere that he could find a target. The librarian "showed off"--running hither and thither with his arms full of books and making a deal of the splutter and fuss that insect authority delights in. The young lady teachers "showed off" --bending sweetly over pupils that were lately being boxed, lifting pretty warning fingers at bad little boys and patting good ones lovingly. The young gentlemen teachers "showed off" with small scoldings and other little displays of authority and fine attention to discipline--and most of the teachers, of both sexes, found business up at the library, by the pulpit; and it was business that frequently had to be done over again two or three times (with much seeming vexation). The little girls "showed off" in various ways, and the little boys "showed off" with such diligence that the air was thick with paper wads and the murmur of scufflings. And above it all the great man sat and beamed a majestic judicial smile upon all the house, and warmed himself in the sun of his own grandeur--for he was "showing off," too. There was only one thing wanting to make Mr. Walters' ecstasy complete, and that was a chance to deliver a Bible-prize and exhibit a prodigy. Several pupils had a few yellow tickets, but none had enough --he had been around among the star pupils inquiring. He would have given worlds, now, to have that German lad back again with a sound mind. And now at this moment, when hope was dead, Tom Sawyer came forward with nine yellow tickets, nine red tickets, and ten blue ones, and demanded a Bible. This was a thunderbolt out of a clear sky. Walters was not expecting an application from this source for the next ten years. But there was no getting around it--here were the certified checks, and they were good for their face. Tom was therefore elevated to a place with the Judge and the other elect, and the great news was announced from headquarters. It was the most stunning surprise of the decade, and so profound was the sensation that it lifted the new hero up to the judicial one's altitude, and the school had two marvels to gaze upon in place of one. The boys were all eaten up with envy--but those that suffered the bitterest pangs were those who perceived too late that they themselves had contributed to this hated splendor by trading tickets to Tom for the wealth he had amassed in selling whitewashing privileges. These despised themselves, as being the dupes of a wily fraud, a guileful snake in the grass. The prize was delivered to Tom with as much effusion as the superintendent could pump up under the circumstances; but it lacked somewhat of the true gush, for the poor fellow's instinct taught him that there was a mystery here that could not well bear the light, perhaps; it was simply preposterous that this boy had warehoused two thousand sheaves of Scriptural wisdom on his premises--a dozen would strain his capacity, without a doubt. Amy Lawrence was proud and glad, and she tried to make Tom see it in her face--but he wouldn't look. She wondered; then she was just a grain troubled; next a dim suspicion came and went--came again; she watched; a furtive glance told her worlds--and then her heart broke, and she was jealous, and angry, and the tears came and she hated everybody. Tom most of all (she thought). Tom was introduced to the Judge; but his tongue was tied, his breath would hardly come, his heart quaked--partly because of the awful greatness of the man, but mainly because he was her parent. He would have liked to fall down and worship him, if it were in the dark. The Judge put his hand on Tom's head and called him a fine little man, and asked him what his name was. The boy stammered, gasped, and got it out: "Tom." "Oh, no, not Tom--it is--" "Thomas." "Ah, that's it. I thought there was more to it, maybe. That's very well. But you've another one I daresay, and you'll tell it to me, won't you?" "Tell the gentleman your other name, Thomas," said Walters, "and say sir. You mustn't forget your manners." "Thomas Sawyer--sir." "That's it! That's a good boy. Fine boy. Fine, manly little fellow. Two thousand verses is a great many--very, very great many. And you never can be sorry for the trouble you took to learn them; for knowledge is worth more than anything there is in the world; it's what makes great men and good men; you'll be a great man and a good man yourself, some day, Thomas, and then you'll look back and say, It's all owing to the precious Sunday-school privileges of my boyhood--it's all owing to my dear teachers that taught me to learn--it's all owing to the good superintendent, who encouraged me, and watched over me, and gave me a beautiful Bible--a splendid elegant Bible--to keep and have it all for my own, always--it's all owing to right bringing up! That is what you will say, Thomas--and you wouldn't take any money for those two thousand verses--no indeed you wouldn't. And now you wouldn't mind telling me and this lady some of the things you've learned--no, I know you wouldn't--for we are proud of little boys that learn. Now, no doubt you know the names of all the twelve disciples. Won't you tell us the names of the first two that were appointed?" Tom was tugging at a button-hole and looking sheepish. He blushed, now, and his eyes fell. Mr. Walters' heart sank within him. He said to himself, it is not possible that the boy can answer the simplest question--why DID the Judge ask him? Yet he felt obliged to speak up and say: "Answer the gentleman, Thomas--don't be afraid." Tom still hung fire. "Now I know you'll tell me," said the lady. "The names of the first two disciples were--" "DAVID AND GOLIAH!" Let us draw the curtain of charity over the rest of the scene. CHAPTER V ABOUT half-past ten the cracked bell of the small church began to ring, and presently the people began to gather for the morning sermon. The Sunday-school children distributed themselves about the house and occupied pews with their parents, so as to be under supervision. Aunt Polly came, and Tom and Sid and Mary sat with her--Tom being placed next the aisle, in order that he might be as far away from the open window and the seductive outside summer scenes as possible. The crowd filed up the aisles: the aged and needy postmaster, who had seen better days; the mayor and his wife--for they had a mayor there, among other unnecessaries; the justice of the peace; the widow Douglass, fair, smart, and forty, a generous, good-hearted soul and well-to-do, her hill mansion the only palace in the town, and the most hospitable and much the most lavish in the matter of festivities that St. Petersburg could boast; the bent and venerable Major and Mrs. Ward; lawyer Riverson, the new notable from a distance; next the belle of the village, followed by a troop of lawn-clad and ribbon-decked young heart-breakers; then all the young clerks in town in a body--for they had stood in the vestibule sucking their cane-heads, a circling wall of oiled and simpering admirers, till the last girl had run their gantlet; and last of all came the Model Boy, Willie Mufferson, taking as heedful care of his mother as if she were cut glass. He always brought his mother to church, and was the pride of all the matrons. The boys all hated him, he was so good. And besides, he had been "thrown up to them" so much. His white handkerchief was hanging out of his pocket behind, as usual on Sundays--accidentally. Tom had no handkerchief, and he looked upon boys who had as snobs. The congregation being fully assembled, now, the bell rang once more, to warn laggards and stragglers, and then a solemn hush fell upon the church which was only broken by the tittering and whispering of the choir in the gallery. The choir always tittered and whispered all through service. There was once a church choir that was not ill-bred, but I have forgotten where it was, now. It was a great many years ago, and I can scarcely remember anything about it, but I think it was in some foreign country. The minister gave out the hymn, and read it through with a relish, in a peculiar style which was much admired in that part of the country. His voice began on a medium key and climbed steadily up till it reached a certain point, where it bore with strong emphasis upon the topmost word and then plunged down as if from a spring-board: Shall I be car-ri-ed toe the skies, on flow'ry BEDS of ease, Whilst others fight to win the prize, and sail thro' BLOODY seas? He was regarded as a wonderful reader. At church "sociables" he was always called upon to read poetry; and when he was through, the ladies would lift up their hands and let them fall helplessly in their laps, and "wall" their eyes, and shake their heads, as much as to say, "Words cannot express it; it is too beautiful, TOO beautiful for this mortal earth." After the hymn had been sung, the Rev. Mr. Sprague turned himself into a bulletin-board, and read off "notices" of meetings and societies and things till it seemed that the list would stretch out to the crack of doom--a queer custom which is still kept up in America, even in cities, away here in this age of abundant newspapers. Often, the less there is to justify a traditional custom, the harder it is to get rid of it. And now the minister prayed. A good, generous prayer it was, and went into details: it pleaded for the church, and the little children of the church; for the other churches of the village; for the village itself; for the county; for the State; for the State officers; for the United States; for the churches of the United States; for Congress; for the President; for the officers of the Government; for poor sailors, tossed by stormy seas; for the oppressed millions groaning under the heel of European monarchies and Oriental despotisms; for such as have the light and the good tidings, and yet have not eyes to see nor ears to hear withal; for the heathen in the far islands of the sea; and closed with a supplication that the words he was about to speak might find grace and favor, and be as seed sown in fertile ground, yielding in time a grateful harvest of good. Amen. There was a rustling of dresses, and the standing congregation sat down. The boy whose history this book relates did not enjoy the prayer, he only endured it--if he even did that much. He was restive all through it; he kept tally of the details of the prayer, unconsciously --for he was not listening, but he knew the ground of old, and the clergyman's regular route over it--and when a little trifle of new matter was interlarded, his ear detected it and his whole nature resented it; he considered additions unfair, and scoundrelly. In the midst of the prayer a fly had lit on the back of the pew in front of him and tortured his spirit by calmly rubbing its hands together, embracing its head with its arms, and polishing it so vigorously that it seemed to almost part company with the body, and the slender thread of a neck was exposed to view; scraping its wings with its hind legs and smoothing them to its body as if they had been coat-tails; going through its whole toilet as tranquilly as if it knew it was perfectly safe. As indeed it was; for as sorely as Tom's hands itched to grab for it they did not dare--he believed his soul would be instantly destroyed if he did such a thing while the prayer was going on. But with the closing sentence his hand began to curve and steal forward; and the instant the "Amen" was out the fly was a prisoner of war. His aunt detected the act and made him let it go. The minister gave out his text and droned along monotonously through an argument that was so prosy that many a head by and by began to nod --and yet it was an argument that dealt in limitless fire and brimstone and thinned the predestined elect down to a company so small as to be hardly worth the saving. Tom counted the pages of the sermon; after church he always knew how many pages there had been, but he seldom knew anything else about the discourse. However, this time he was really interested for a little while. The minister made a grand and moving picture of the assembling together of the world's hosts at the millennium when the lion and the lamb should lie down together and a little child should lead them. But the pathos, the lesson, the moral of the great spectacle were lost upon the boy; he only thought of the conspicuousness of the principal character before the on-looking nations; his face lit with the thought, and he said to himself that he wished he could be that child, if it was a tame lion. Now he lapsed into suffering again, as the dry argument was resumed. Presently he bethought him of a treasure he had and got it out. It was a large black beetle with formidable jaws--a "pinchbug," he called it. It was in a percussion-cap box. The first thing the beetle did was to take him by the finger. A natural fillip followed, the beetle went floundering into the aisle and lit on its back, and the hurt finger went into the boy's mouth. The beetle lay there working its helpless legs, unable to turn over. Tom eyed it, and longed for it; but it was safe out of his reach. Other people uninterested in the sermon found relief in the beetle, and they eyed it too. Presently a vagrant poodle dog came idling along, sad at heart, lazy with the summer softness and the quiet, weary of captivity, sighing for change. He spied the beetle; the drooping tail lifted and wagged. He surveyed the prize; walked around it; smelt at it from a safe distance; walked around it again; grew bolder, and took a closer smell; then lifted his lip and made a gingerly snatch at it, just missing it; made another, and another; began to enjoy the diversion; subsided to his stomach with the beetle between his paws, and continued his experiments; grew weary at last, and then indifferent and absent-minded. His head nodded, and little by little his chin descended and touched the enemy, who seized it. There was a sharp yelp, a flirt of the poodle's head, and the beetle fell a couple of yards away, and lit on its back once more. The neighboring spectators shook with a gentle inward joy, several faces went behind fans and handkerchiefs, and Tom was entirely happy. The dog looked foolish, and probably felt so; but there was resentment in his heart, too, and a craving for revenge. So he went to the beetle and began a wary attack on it again; jumping at it from every point of a circle, lighting with his fore-paws within an inch of the creature, making even closer snatches at it with his teeth, and jerking his head till his ears flapped again. But he grew tired once more, after a while; tried to amuse himself with a fly but found no relief; followed an ant around, with his nose close to the floor, and quickly wearied of that; yawned, sighed, forgot the beetle entirely, and sat down on it. Then there was a wild yelp of agony and the poodle went sailing up the aisle; the yelps continued, and so did the dog; he crossed the house in front of the altar; he flew down the other aisle; he crossed before the doors; he clamored up the home-stretch; his anguish grew with his progress, till presently he was but a woolly comet moving in its orbit with the gleam and the speed of light. At last the frantic sufferer sheered from its course, and sprang into its master's lap; he flung it out of the window, and the voice of distress quickly thinned away and died in the distance. By this time the whole church was red-faced and suffocating with suppressed laughter, and the sermon had come to a dead standstill. The discourse was resumed presently, but it went lame and halting, all possibility of impressiveness being at an end; for even the gravest sentiments were constantly being received with a smothered burst of unholy mirth, under cover of some remote pew-back, as if the poor parson had said a rarely facetious thing. It was a genuine relief to the whole congregation when the ordeal was over and the benediction pronounced. Tom Sawyer went home quite cheerful, thinking to himself that there was some satisfaction about divine service when there was a bit of variety in it. He had but one marring thought; he was willing that the dog should play with his pinchbug, but he did not think it was upright in him to carry it off. CHAPTER VI MONDAY morning found Tom Sawyer miserable. Monday morning always found him so--because it began another week's slow suffering in school. He generally began that day with wishing he had had no intervening holiday, it made the going into captivity and fetters again so much more odious. Tom lay thinking. Presently it occurred to him that he wished he was sick; then he could stay home from school. Here was a vague possibility. He canvassed his system. No ailment was found, and he investigated again. This time he thought he could detect colicky symptoms, and he began to encourage them with considerable hope. But they soon grew feeble, and presently died wholly away. He reflected further. Suddenly he discovered something. One of his upper front teeth was loose. This was lucky; he was about to begin to groan, as a "starter," as he called it, when it occurred to him that if he came into court with that argument, his aunt would pull it out, and that would hurt. So he thought he would hold the tooth in reserve for the present, and seek further. Nothing offered for some little time, and then he remembered hearing the doctor tell about a certain thing that laid up a patient for two or three weeks and threatened to make him lose a finger. So the boy eagerly drew his sore toe from under the sheet and held it up for inspection. But now he did not know the necessary symptoms. However, it seemed well worth while to chance it, so he fell to groaning with considerable spirit. But Sid slept on unconscious. Tom groaned louder, and fancied that he began to feel pain in the toe. No result from Sid. Tom was panting with his exertions by this time. He took a rest and then swelled himself up and fetched a succession of admirable groans. Sid snored on. Tom was aggravated. He said, "Sid, Sid!" and shook him. This course worked well, and Tom began to groan again. Sid yawned, stretched, then brought himself up on his elbow with a snort, and began to stare at Tom. Tom went on groaning. Sid said: "Tom! Say, Tom!" [No response.] "Here, Tom! TOM! What is the matter, Tom?" And he shook him and looked in his face anxiously. Tom moaned out: "Oh, don't, Sid. Don't joggle me." "Why, what's the matter, Tom? I must call auntie." "No--never mind. It'll be over by and by, maybe. Don't call anybody." "But I must! DON'T groan so, Tom, it's awful. How long you been this way?" "Hours. Ouch! Oh, don't stir so, Sid, you'll kill me." "Tom, why didn't you wake me sooner? Oh, Tom, DON'T! It makes my flesh crawl to hear you. Tom, what is the matter?" "I forgive you everything, Sid. [Groan.] Everything you've ever done to me. When I'm gone--" "Oh, Tom, you ain't dying, are you? Don't, Tom--oh, don't. Maybe--" "I forgive everybody, Sid. [Groan.] Tell 'em so, Sid. And Sid, you give my window-sash and my cat with one eye to that new girl that's come to town, and tell her--" But Sid had snatched his clothes and gone. Tom was suffering in reality, now, so handsomely was his imagination working, and so his groans had gathered quite a genuine tone. Sid flew down-stairs and said: "Oh, Aunt Polly, come! Tom's dying!" "Dying!" "Yes'm. Don't wait--come quick!" "Rubbage! I don't believe it!" But she fled up-stairs, nevertheless, with Sid and Mary at her heels. And her face grew white, too, and her lip trembled. When she reached the bedside she gasped out: "You, Tom! Tom, what's the matter with you?" "Oh, auntie, I'm--" "What's the matter with you--what is the matter with you, child?" "Oh, auntie, my sore toe's mortified!" The old lady sank down into a chair and laughed a little, then cried a little, then did both together. This restored her and she said: "Tom, what a turn you did give me. Now you shut up that nonsense and climb out of this." The groans ceased and the pain vanished from the toe. The boy felt a little foolish, and he said: "Aunt Polly, it SEEMED mortified, and it hurt so I never minded my tooth at all." "Your tooth, indeed! What's the matter with your tooth?" "One of them's loose, and it aches perfectly awful." "There, there, now, don't begin that groaning again. Open your mouth. Well--your tooth IS loose, but you're not going to die about that. Mary, get me a silk thread, and a chunk of fire out of the kitchen." Tom said: "Oh, please, auntie, don't pull it out. It don't hurt any more. I wish I may never stir if it does. Please don't, auntie. I don't want to stay home from school." "Oh, you don't, don't you? So all this row was because you thought you'd get to stay home from school and go a-fishing? Tom, Tom, I love you so, and you seem to try every way you can to break my old heart with your outrageousness." By this time the dental instruments were ready. The old lady made one end of the silk thread fast to Tom's tooth with a loop and tied the other to the bedpost. Then she seized the chunk of fire and suddenly thrust it almost into the boy's face. The tooth hung dangling by the bedpost, now. But all trials bring their compensations. As Tom wended to school after breakfast, he was the envy of every boy he met because the gap in his upper row of teeth enabled him to expectorate in a new and admirable way. He gathered quite a following of lads interested in the exhibition; and one that had cut his finger and had been a centre of fascination and homage up to this time, now found himself suddenly without an adherent, and shorn of his glory. His heart was heavy, and he said with a disdain which he did not feel that it wasn't anything to spit like Tom Sawyer; but another boy said, "Sour grapes!" and he wandered away a dismantled hero. Shortly Tom came upon the juvenile pariah of the village, Huckleberry Finn, son of the town drunkard. Huckleberry was cordially hated and dreaded by all the mothers of the town, because he was idle and lawless and vulgar and bad--and because all their children admired him so, and delighted in his forbidden society, and wished they dared to be like him. Tom was like the rest of the respectable boys, in that he envied Huckleberry his gaudy outcast condition, and was under strict orders not to play with him. So he played with him every time he got a chance. Huckleberry was always dressed in the cast-off clothes of full-grown men, and they were in perennial bloom and fluttering with rags. His hat was a vast ruin with a wide crescent lopped out of its brim; his coat, when he wore one, hung nearly to his heels and had the rearward buttons far down the back; but one suspender supported his trousers; the seat of the trousers bagged low and contained nothing, the fringed legs dragged in the dirt when not rolled up. Huckleberry came and went, at his own free will. He slept on doorsteps in fine weather and in empty hogsheads in wet; he did not have to go to school or to church, or call any being master or obey anybody; he could go fishing or swimming when and where he chose, and stay as long as it suited him; nobody forbade him to fight; he could sit up as late as he pleased; he was always the first boy that went barefoot in the spring and the last to resume leather in the fall; he never had to wash, nor put on clean clothes; he could swear wonderfully. In a word, everything that goes to make life precious that boy had. So thought every harassed, hampered, respectable boy in St. Petersburg. Tom hailed the romantic outcast: "Hello, Huckleberry!" "Hello yourself, and see how you like it." "What's that you got?" "Dead cat." "Lemme see him, Huck. My, he's pretty stiff. Where'd you get him?" "Bought him off'n a boy." "What did you give?" "I give a blue ticket and a bladder that I got at the slaughter-house." "Where'd you get the blue ticket?" "Bought it off'n Ben Rogers two weeks ago for a hoop-stick." "Say--what is dead cats good for, Huck?" "Good for? Cure warts with." "No! Is that so? I know something that's better." "I bet you don't. What is it?" "Why, spunk-water." "Spunk-water! I wouldn't give a dern for spunk-water." "You wouldn't, wouldn't you? D'you ever try it?" "No, I hain't. But Bob Tanner did." "Who told you so!" "Why, he told Jeff Thatcher, and Jeff told Johnny Baker, and Johnny told Jim Hollis, and Jim told Ben Rogers, and Ben told a nigger, and the nigger told me. There now!" "Well, what of it? They'll all lie. Leastways all but the nigger. I don't know HIM. But I never see a nigger that WOULDN'T lie. Shucks! Now you tell me how Bob Tanner done it, Huck." "Why, he took and dipped his hand in a rotten stump where the rain-water was." "In the daytime?" "Certainly." "With his face to the stump?" "Yes. Least I reckon so." "Did he say anything?" "I don't reckon he did. I don't know." "Aha! Talk about trying to cure warts with spunk-water such a blame fool way as that! Why, that ain't a-going to do any good. You got to go all by yourself, to the middle of the woods, where you know there's a spunk-water stump, and just as it's midnight you back up against the stump and jam your hand in and say: 'Barley-corn, barley-corn, injun-meal shorts, Spunk-water, spunk-water, swaller these warts,' and then walk away quick, eleven steps, with your eyes shut, and then turn around three times and walk home without speaking to anybody. Because if you speak the charm's busted." "Well, that sounds like a good way; but that ain't the way Bob Tanner done." "No, sir, you can bet he didn't, becuz he's the wartiest boy in this town; and he wouldn't have a wart on him if he'd knowed how to work spunk-water. I've took off thousands of warts off of my hands that way, Huck. I play with frogs so much that I've always got considerable many warts. Sometimes I take 'em off with a bean." "Yes, bean's good. I've done that." "Have you? What's your way?" "You take and split the bean, and cut the wart so as to get some blood, and then you put the blood on one piece of the bean and take and dig a hole and bury it 'bout midnight at the crossroads in the dark of the moon, and then you burn up the rest of the bean. You see that piece that's got the blood on it will keep drawing and drawing, trying to fetch the other piece to it, and so that helps the blood to draw the wart, and pretty soon off she comes." "Yes, that's it, Huck--that's it; though when you're burying it if you say 'Down bean; off wart; come no more to bother me!' it's better. That's the way Joe Harper does, and he's been nearly to Coonville and most everywheres. But say--how do you cure 'em with dead cats?" "Why, you take your cat and go and get in the graveyard 'long about midnight when somebody that was wicked has been buried; and when it's midnight a devil will come, or maybe two or three, but you can't see 'em, you can only hear something like the wind, or maybe hear 'em talk; and when they're taking that feller away, you heave your cat after 'em and say, 'Devil follow corpse, cat follow devil, warts follow cat, I'm done with ye!' That'll fetch ANY wart." "Sounds right. D'you ever try it, Huck?" "No, but old Mother Hopkins told me." "Well, I reckon it's so, then. Becuz they say she's a witch." "Say! Why, Tom, I KNOW she is. She witched pap. Pap says so his own self. He come along one day, and he see she was a-witching him, so he took up a rock, and if she hadn't dodged, he'd a got her. Well, that very night he rolled off'n a shed wher' he was a layin drunk, and broke his arm." "Why, that's awful. How did he know she was a-witching him?" "Lord, pap can tell, easy. Pap says when they keep looking at you right stiddy, they're a-witching you. Specially if they mumble. Becuz when they mumble they're saying the Lord's Prayer backards." "Say, Hucky, when you going to try the cat?" "To-night. I reckon they'll come after old Hoss Williams to-night." "But they buried him Saturday. Didn't they get him Saturday night?" "Why, how you talk! How could their charms work till midnight?--and THEN it's Sunday. Devils don't slosh around much of a Sunday, I don't reckon." "I never thought of that. That's so. Lemme go with you?" "Of course--if you ain't afeard." "Afeard! 'Tain't likely. Will you meow?" "Yes--and you meow back, if you get a chance. Last time, you kep' me a-meowing around till old Hays went to throwing rocks at me and says 'Dern that cat!' and so I hove a brick through his window--but don't you tell." "I won't. I couldn't meow that night, becuz auntie was watching me, but I'll meow this time. Say--what's that?" "Nothing but a tick." "Where'd you get him?" "Out in the woods." "What'll you take for him?" "I don't know. I don't want to sell him." "All right. It's a mighty small tick, anyway." "Oh, anybody can run a tick down that don't belong to them. I'm satisfied with it. It's a good enough tick for me." "Sho, there's ticks a plenty. I could have a thousand of 'em if I wanted to." "Well, why don't you? Becuz you know mighty well you can't. This is a pretty early tick, I reckon. It's the first one I've seen this year." "Say, Huck--I'll give you my tooth for him." "Less see it." Tom got out a bit of paper and carefully unrolled it. Huckleberry viewed it wistfully. The temptation was very strong. At last he said: "Is it genuwyne?" Tom lifted his lip and showed the vacancy. "Well, all right," said Huckleberry, "it's a trade." Tom enclosed the tick in the percussion-cap box that had lately been the pinchbug's prison, and the boys separated, each feeling wealthier than before. When Tom reached the little isolated frame schoolhouse, he strode in briskly, with the manner of one who had come with all honest speed. He hung his hat on a peg and flung himself into his seat with business-like alacrity. The master, throned on high in his great splint-bottom arm-chair, was dozing, lulled by the drowsy hum of study. The interruption roused him. "Thomas Sawyer!" Tom knew that when his name was pronounced in full, it meant trouble. "Sir!" "Come up here. Now, sir, why are you late again, as usual?" Tom was about to take refuge in a lie, when he saw two long tails of yellow hair hanging down a back that he recognized by the electric sympathy of love; and by that form was THE ONLY VACANT PLACE on the girls' side of the schoolhouse. He instantly said: "I STOPPED TO TALK WITH HUCKLEBERRY FINN!" The master's pulse stood still, and he stared helplessly. The buzz of study ceased. The pupils wondered if this foolhardy boy had lost his mind. The master said: "You--you did what?" "Stopped to talk with Huckleberry Finn." There was no mistaking the words. "Thomas Sawyer, this is the most astounding confession I have ever listened to. No mere ferule will answer for this offence. Take off your jacket." The master's arm performed until it was tired and the stock of switches notably diminished. Then the order followed: "Now, sir, go and sit with the girls! And let this be a warning to you." The titter that rippled around the room appeared to abash the boy, but in reality that result was caused rather more by his worshipful awe of his unknown idol and the dread pleasure that lay in his high good fortune. He sat down upon the end of the pine bench and the girl hitched herself away from him with a toss of her head. Nudges and winks and whispers traversed the room, but Tom sat still, with his arms upon the long, low desk before him, and seemed to study his book. By and by attention ceased from him, and the accustomed school murmur rose upon the dull air once more. Presently the boy began to steal furtive glances at the girl. She observed it, "made a mouth" at him and gave him the back of her head for the space of a minute. When she cautiously faced around again, a peach lay before her. She thrust it away. Tom gently put it back. She thrust it away again, but with less animosity. Tom patiently returned it to its place. Then she let it remain. Tom scrawled on his slate, "Please take it--I got more." The girl glanced at the words, but made no sign. Now the boy began to draw something on the slate, hiding his work with his left hand. For a time the girl refused to notice; but her human curiosity presently began to manifest itself by hardly perceptible signs. The boy worked on, apparently unconscious. The girl made a sort of noncommittal attempt to see, but the boy did not betray that he was aware of it. At last she gave in and hesitatingly whispered: "Let me see it." Tom partly uncovered a dismal caricature of a house with two gable ends to it and a corkscrew of smoke issuing from the chimney. Then the girl's interest began to fasten itself upon the work and she forgot everything else. When it was finished, she gazed a moment, then whispered: "It's nice--make a man." The artist erected a man in the front yard, that resembled a derrick. He could have stepped over the house; but the girl was not hypercritical; she was satisfied with the monster, and whispered: "It's a beautiful man--now make me coming along." Tom drew an hour-glass with a full moon and straw limbs to it and armed the spreading fingers with a portentous fan. The girl said: "It's ever so nice--I wish I could draw." "It's easy," whispered Tom, "I'll learn you." "Oh, will you? When?" "At noon. Do you go home to dinner?" "I'll stay if you will." "Good--that's a whack. What's your name?" "Becky Thatcher. What's yours? Oh, I know. It's Thomas Sawyer." "That's the name they lick me by. I'm Tom when I'm good. You call me Tom, will you?" "Yes." Now Tom began to scrawl something on the slate, hiding the words from the girl. But she was not backward this time. She begged to see. Tom said: "Oh, it ain't anything." "Yes it is." "No it ain't. You don't want to see." "Yes I do, indeed I do. Please let me." "You'll tell." "No I won't--deed and deed and double deed won't." "You won't tell anybody at all? Ever, as long as you live?" "No, I won't ever tell ANYbody. Now let me." "Oh, YOU don't want to see!" "Now that you treat me so, I WILL see." And she put her small hand upon his and a little scuffle ensued, Tom pretending to resist in earnest but letting his hand slip by degrees till these words were revealed: "I LOVE YOU." "Oh, you bad thing!" And she hit his hand a smart rap, but reddened and looked pleased, nevertheless. Just at this juncture the boy felt a slow, fateful grip closing on his ear, and a steady lifting impulse. In that wise he was borne across the house and deposited in his own seat, under a peppering fire of giggles from the whole school. Then the master stood over him during a few awful moments, and finally moved away to his throne without saying a word. But although Tom's ear tingled, his heart was jubilant. As the school quieted down Tom made an honest effort to study, but the turmoil within him was too great. In turn he took his place in the reading class and made a botch of it; then in the geography class and turned lakes into mountains, mountains into rivers, and rivers into continents, till chaos was come again; then in the spelling class, and got "turned down," by a succession of mere baby words, till he brought up at the foot and yielded up the pewter medal which he had worn with ostentation for months. CHAPTER VII THE harder Tom tried to fasten his mind on his book, the more his ideas wandered. So at last, with a sigh and a yawn, he gave it up. It seemed to him that the noon recess would never come. The air was utterly dead. There was not a breath stirring. It was the sleepiest of sleepy days. The drowsing murmur of the five and twenty studying scholars soothed the soul like the spell that is in the murmur of bees. Away off in the flaming sunshine, Cardiff Hill lifted its soft green sides through a shimmering veil of heat, tinted with the purple of distance; a few birds floated on lazy wing high in the air; no other living thing was visible but some cows, and they were asleep. Tom's heart ached to be free, or else to have something of interest to do to pass the dreary time. His hand wandered into his pocket and his face lit up with a glow of gratitude that was prayer, though he did not know it. Then furtively the percussion-cap box came out. He released the tick and put him on the long flat desk. The creature probably glowed with a gratitude that amounted to prayer, too, at this moment, but it was premature: for when he started thankfully to travel off, Tom turned him aside with a pin and made him take a new direction. Tom's bosom friend sat next him, suffering just as Tom had been, and now he was deeply and gratefully interested in this entertainment in an instant. This bosom friend was Joe Harper. The two boys were sworn friends all the week, and embattled enemies on Saturdays. Joe took a pin out of his lapel and began to assist in exercising the prisoner. The sport grew in interest momently. Soon Tom said that they were interfering with each other, and neither getting the fullest benefit of the tick. So he put Joe's slate on the desk and drew a line down the middle of it from top to bottom. "Now," said he, "as long as he is on your side you can stir him up and I'll let him alone; but if you let him get away and get on my side, you're to leave him alone as long as I can keep him from crossing over." "All right, go ahead; start him up." The tick escaped from Tom, presently, and crossed the equator. Joe harassed him awhile, and then he got away and crossed back again. This change of base occurred often. While one boy was worrying the tick with absorbing interest, the other would look on with interest as strong, the two heads bowed together over the slate, and the two souls dead to all things else. At last luck seemed to settle and abide with Joe. The tick tried this, that, and the other course, and got as excited and as anxious as the boys themselves, but time and again just as he would have victory in his very grasp, so to speak, and Tom's fingers would be twitching to begin, Joe's pin would deftly head him off, and keep possession. At last Tom could stand it no longer. The temptation was too strong. So he reached out and lent a hand with his pin. Joe was angry in a moment. Said he: "Tom, you let him alone." "I only just want to stir him up a little, Joe." "No, sir, it ain't fair; you just let him alone." "Blame it, I ain't going to stir him much." "Let him alone, I tell you." "I won't!" "You shall--he's on my side of the line." "Look here, Joe Harper, whose is that tick?" "I don't care whose tick he is--he's on my side of the line, and you sha'n't touch him." "Well, I'll just bet I will, though. He's my tick and I'll do what I blame please with him, or die!" A tremendous whack came down on Tom's shoulders, and its duplicate on Joe's; and for the space of two minutes the dust continued to fly from the two jackets and the whole school to enjoy it. The boys had been too absorbed to notice the hush that had stolen upon the school awhile before when the master came tiptoeing down the room and stood over them. He had contemplated a good part of the performance before he contributed his bit of variety to it. When school broke up at noon, Tom flew to Becky Thatcher, and whispered in her ear: "Put on your bonnet and let on you're going home; and when you get to the corner, give the rest of 'em the slip, and turn down through the lane and come back. I'll go the other way and come it over 'em the same way." So the one went off with one group of scholars, and the other with another. In a little while the two met at the bottom of the lane, and when they reached the school they had it all to themselves. Then they sat together, with a slate before them, and Tom gave Becky the pencil and held her hand in his, guiding it, and so created another surprising house. When the interest in art began to wane, the two fell to talking. Tom was swimming in bliss. He said: "Do you love rats?" "No! I hate them!" "Well, I do, too--LIVE ones. But I mean dead ones, to swing round your head with a string." "No, I don't care for rats much, anyway. What I like is chewing-gum." "Oh, I should say so! I wish I had some now." "Do you? I've got some. I'll let you chew it awhile, but you must give it back to me." That was agreeable, so they chewed it turn about, and dangled their legs against the bench in excess of contentment. "Was you ever at a circus?" said Tom. "Yes, and my pa's going to take me again some time, if I'm good." "I been to the circus three or four times--lots of times. Church ain't shucks to a circus. There's things going on at a circus all the time. I'm going to be a clown in a circus when I grow up." "Oh, are you! That will be nice. They're so lovely, all spotted up." "Yes, that's so. And they get slathers of money--most a dollar a day, Ben Rogers says. Say, Becky, was you ever engaged?" "What's that?" "Why, engaged to be married." "No." "Would you like to?" "I reckon so. I don't know. What is it like?" "Like? Why it ain't like anything. You only just tell a boy you won't ever have anybody but him, ever ever ever, and then you kiss and that's all. Anybody can do it." "Kiss? What do you kiss for?" "Why, that, you know, is to--well, they always do that." "Everybody?" "Why, yes, everybody that's in love with each other. Do you remember what I wrote on the slate?" "Ye--yes." "What was it?" "I sha'n't tell you." "Shall I tell YOU?" "Ye--yes--but some other time." "No, now." "No, not now--to-morrow." "Oh, no, NOW. Please, Becky--I'll whisper it, I'll whisper it ever so easy." Becky hesitating, Tom took silence for consent, and passed his arm about her waist and whispered the tale ever so softly, with his mouth close to her ear. And then he added: "Now you whisper it to me--just the same." She resisted, for a while, and then said: "You turn your face away so you can't see, and then I will. But you mustn't ever tell anybody--WILL you, Tom? Now you won't, WILL you?" "No, indeed, indeed I won't. Now, Becky." He turned his face away. She bent timidly around till her breath stirred his curls and whispered, "I--love--you!" Then she sprang away and ran around and around the desks and benches, with Tom after her, and took refuge in a corner at last, with her little white apron to her face. Tom clasped her about her neck and pleaded: "Now, Becky, it's all done--all over but the kiss. Don't you be afraid of that--it ain't anything at all. Please, Becky." And he tugged at her apron and the hands. By and by she gave up, and let her hands drop; her face, all glowing with the struggle, came up and submitted. Tom kissed the red lips and said: "Now it's all done, Becky. And always after this, you know, you ain't ever to love anybody but me, and you ain't ever to marry anybody but me, ever never and forever. Will you?" "No, I'll never love anybody but you, Tom, and I'll never marry anybody but you--and you ain't to ever marry anybody but me, either." "Certainly. Of course. That's PART of it. And always coming to school or when we're going home, you're to walk with me, when there ain't anybody looking--and you choose me and I choose you at parties, because that's the way you do when you're engaged." "It's so nice. I never heard of it before." "Oh, it's ever so gay! Why, me and Amy Lawrence--" The big eyes told Tom his blunder and he stopped, confused. "Oh, Tom! Then I ain't the first you've ever been engaged to!" The child began to cry. Tom said: "Oh, don't cry, Becky, I don't care for her any more." "Yes, you do, Tom--you know you do." Tom tried to put his arm about her neck, but she pushed him away and turned her face to the wall, and went on crying. Tom tried again, with soothing words in his mouth, and was repulsed again. Then his pride was up, and he strode away and went outside. He stood about, restless and uneasy, for a while, glancing at the door, every now and then, hoping she would repent and come to find him. But she did not. Then he began to feel badly and fear that he was in the wrong. It was a hard struggle with him to make new advances, now, but he nerved himself to it and entered. She was still standing back there in the corner, sobbing, with her face to the wall. Tom's heart smote him. He went to her and stood a moment, not knowing exactly how to proceed. Then he said hesitatingly: "Becky, I--I don't care for anybody but you." No reply--but sobs. "Becky"--pleadingly. "Becky, won't you say something?" More sobs. Tom got out his chiefest jewel, a brass knob from the top of an andiron, and passed it around her so that she could see it, and said: "Please, Becky, won't you take it?" She struck it to the floor. Then Tom marched out of the house and over the hills and far away, to return to school no more that day. Presently Becky began to suspect. She ran to the door; he was not in sight; she flew around to the play-yard; he was not there. Then she called: "Tom! Come back, Tom!" She listened intently, but there was no answer. She had no companions but silence and loneliness. So she sat down to cry again and upbraid herself; and by this time the scholars began to gather again, and she had to hide her griefs and still her broken heart and take up the cross of a long, dreary, aching afternoon, with none among the strangers about her to exchange sorrows with. CHAPTER VIII TOM dodged hither and thither through lanes until he was well out of the track of returning scholars, and then fell into a moody jog. He crossed a small "branch" two or three times, because of a prevailing juvenile superstition that to cross water baffled pursuit. Half an hour later he was disappearing behind the Douglas mansion on the summit of Cardiff Hill, and the schoolhouse was hardly distinguishable away off in the valley behind him. He entered a dense wood, picked his pathless way to the centre of it, and sat down on a mossy spot under a spreading oak. There was not even a zephyr stirring; the dead noonday heat had even stilled the songs of the birds; nature lay in a trance that was broken by no sound but the occasional far-off hammering of a woodpecker, and this seemed to render the pervading silence and sense of loneliness the more profound. The boy's soul was steeped in melancholy; his feelings were in happy accord with his surroundings. He sat long with his elbows on his knees and his chin in his hands, meditating. It seemed to him that life was but a trouble, at best, and he more than half envied Jimmy Hodges, so lately released; it must be very peaceful, he thought, to lie and slumber and dream forever and ever, with the wind whispering through the trees and caressing the grass and the flowers over the grave, and nothing to bother and grieve about, ever any more. If he only had a clean Sunday-school record he could be willing to go, and be done with it all. Now as to this girl. What had he done? Nothing. He had meant the best in the world, and been treated like a dog--like a very dog. She would be sorry some day--maybe when it was too late. Ah, if he could only die TEMPORARILY! But the elastic heart of youth cannot be compressed into one constrained shape long at a time. Tom presently began to drift insensibly back into the concerns of this life again. What if he turned his back, now, and disappeared mysteriously? What if he went away--ever so far away, into unknown countries beyond the seas--and never came back any more! How would she feel then! The idea of being a clown recurred to him now, only to fill him with disgust. For frivolity and jokes and spotted tights were an offense, when they intruded themselves upon a spirit that was exalted into the vague august realm of the romantic. No, he would be a soldier, and return after long years, all war-worn and illustrious. No--better still, he would join the Indians, and hunt buffaloes and go on the warpath in the mountain ranges and the trackless great plains of the Far West, and away in the future come back a great chief, bristling with feathers, hideous with paint, and prance into Sunday-school, some drowsy summer morning, with a bloodcurdling war-whoop, and sear the eyeballs of all his companions with unappeasable envy. But no, there was something gaudier even than this. He would be a pirate! That was it! NOW his future lay plain before him, and glowing with unimaginable splendor. How his name would fill the world, and make people shudder! How gloriously he would go plowing the dancing seas, in his long, low, black-hulled racer, the Spirit of the Storm, with his grisly flag flying at the fore! And at the zenith of his fame, how he would suddenly appear at the old village and stalk into church, brown and weather-beaten, in his black velvet doublet and trunks, his great jack-boots, his crimson sash, his belt bristling with horse-pistols, his crime-rusted cutlass at his side, his slouch hat with waving plumes, his black flag unfurled, with the skull and crossbones on it, and hear with swelling ecstasy the whisperings, "It's Tom Sawyer the Pirate!--the Black Avenger of the Spanish Main!" Yes, it was settled; his career was determined. He would run away from home and enter upon it. He would start the very next morning. Therefore he must now begin to get ready. He would collect his resources together. He went to a rotten log near at hand and began to dig under one end of it with his Barlow knife. He soon struck wood that sounded hollow. He put his hand there and uttered this incantation impressively: "What hasn't come here, come! What's here, stay here!" Then he scraped away the dirt, and exposed a pine shingle. He took it up and disclosed a shapely little treasure-house whose bottom and sides were of shingles. In it lay a marble. Tom's astonishment was boundless! He scratched his head with a perplexed air, and said: "Well, that beats anything!" Then he tossed the marble away pettishly, and stood cogitating. The truth was, that a superstition of his had failed, here, which he and all his comrades had always looked upon as infallible. If you buried a marble with certain necessary incantations, and left it alone a fortnight, and then opened the place with the incantation he had just used, you would find that all the marbles you had ever lost had gathered themselves together there, meantime, no matter how widely they had been separated. But now, this thing had actually and unquestionably failed. Tom's whole structure of faith was shaken to its foundations. He had many a time heard of this thing succeeding but never of its failing before. It did not occur to him that he had tried it several times before, himself, but could never find the hiding-places afterward. He puzzled over the matter some time, and finally decided that some witch had interfered and broken the charm. He thought he would satisfy himself on that point; so he searched around till he found a small sandy spot with a little funnel-shaped depression in it. He laid himself down and put his mouth close to this depression and called-- "Doodle-bug, doodle-bug, tell me what I want to know! Doodle-bug, doodle-bug, tell me what I want to know!" The sand began to work, and presently a small black bug appeared for a second and then darted under again in a fright. "He dasn't tell! So it WAS a witch that done it. I just knowed it." He well knew the futility of trying to contend against witches, so he gave up discouraged. But it occurred to him that he might as well have the marble he had just thrown away, and therefore he went and made a patient search for it. But he could not find it. Now he went back to his treasure-house and carefully placed himself just as he had been standing when he tossed the marble away; then he took another marble from his pocket and tossed it in the same way, saying: "Brother, go find your brother!" He watched where it stopped, and went there and looked. But it must have fallen short or gone too far; so he tried twice more. The last repetition was successful. The two marbles lay within a foot of each other. Just here the blast of a toy tin trumpet came faintly down the green aisles of the forest. Tom flung off his jacket and trousers, turned a suspender into a belt, raked away some brush behind the rotten log, disclosing a rude bow and arrow, a lath sword and a tin trumpet, and in a moment had seized these things and bounded away, barelegged, with fluttering shirt. He presently halted under a great elm, blew an answering blast, and then began to tiptoe and look warily out, this way and that. He said cautiously--to an imaginary company: "Hold, my merry men! Keep hid till I blow." Now appeared Joe Harper, as airily clad and elaborately armed as Tom. Tom called: "Hold! Who comes here into Sherwood Forest without my pass?" "Guy of Guisborne wants no man's pass. Who art thou that--that--" "Dares to hold such language," said Tom, prompting--for they talked "by the book," from memory. "Who art thou that dares to hold such language?" "I, indeed! I am Robin Hood, as thy caitiff carcase soon shall know." "Then art thou indeed that famous outlaw? Right gladly will I dispute with thee the passes of the merry wood. Have at thee!" They took their lath swords, dumped their other traps on the ground, struck a fencing attitude, foot to foot, and began a grave, careful combat, "two up and two down." Presently Tom said: "Now, if you've got the hang, go it lively!" So they "went it lively," panting and perspiring with the work. By and by Tom shouted: "Fall! fall! Why don't you fall?" "I sha'n't! Why don't you fall yourself? You're getting the worst of it." "Why, that ain't anything. I can't fall; that ain't the way it is in the book. The book says, 'Then with one back-handed stroke he slew poor Guy of Guisborne.' You're to turn around and let me hit you in the back." There was no getting around the authorities, so Joe turned, received the whack and fell. "Now," said Joe, getting up, "you got to let me kill YOU. That's fair." "Why, I can't do that, it ain't in the book." "Well, it's blamed mean--that's all." "Well, say, Joe, you can be Friar Tuck or Much the miller's son, and lam me with a quarter-staff; or I'll be the Sheriff of Nottingham and you be Robin Hood a little while and kill me." This was satisfactory, and so these adventures were carried out. Then Tom became Robin Hood again, and was allowed by the treacherous nun to bleed his strength away through his neglected wound. And at last Joe, representing a whole tribe of weeping outlaws, dragged him sadly forth, gave his bow into his feeble hands, and Tom said, "Where this arrow falls, there bury poor Robin Hood under the greenwood tree." Then he shot the arrow and fell back and would have died, but he lit on a nettle and sprang up too gaily for a corpse. The boys dressed themselves, hid their accoutrements, and went off grieving that there were no outlaws any more, and wondering what modern civilization could claim to have done to compensate for their loss. They said they would rather be outlaws a year in Sherwood Forest than President of the United States forever. CHAPTER IX AT half-past nine, that night, Tom and Sid were sent to bed, as usual. They said their prayers, and Sid was soon asleep. Tom lay awake and waited, in restless impatience. When it seemed to him that it must be nearly daylight, he heard the clock strike ten! This was despair. He would have tossed and fidgeted, as his nerves demanded, but he was afraid he might wake Sid. So he lay still, and stared up into the dark. Everything was dismally still. By and by, out of the stillness, little, scarcely perceptible noises began to emphasize themselves. The ticking of the clock began to bring itself into notice. Old beams began to crack mysteriously. The stairs creaked faintly. Evidently spirits were abroad. A measured, muffled snore issued from Aunt Polly's chamber. And now the tiresome chirping of a cricket that no human ingenuity could locate, began. Next the ghastly ticking of a deathwatch in the wall at the bed's head made Tom shudder--it meant that somebody's days were numbered. Then the howl of a far-off dog rose on the night air, and was answered by a fainter howl from a remoter distance. Tom was in an agony. At last he was satisfied that time had ceased and eternity begun; he began to doze, in spite of himself; the clock chimed eleven, but he did not hear it. And then there came, mingling with his half-formed dreams, a most melancholy caterwauling. The raising of a neighboring window disturbed him. A cry of "Scat! you devil!" and the crash of an empty bottle against the back of his aunt's woodshed brought him wide awake, and a single minute later he was dressed and out of the window and creeping along the roof of the "ell" on all fours. He "meow'd" with caution once or twice, as he went; then jumped to the roof of the woodshed and thence to the ground. Huckleberry Finn was there, with his dead cat. The boys moved off and disappeared in the gloom. At the end of half an hour they were wading through the tall grass of the graveyard. It was a graveyard of the old-fashioned Western kind. It was on a hill, about a mile and a half from the village. It had a crazy board fence around it, which leaned inward in places, and outward the rest of the time, but stood upright nowhere. Grass and weeds grew rank over the whole cemetery. All the old graves were sunken in, there was not a tombstone on the place; round-topped, worm-eaten boards staggered over the graves, leaning for support and finding none. "Sacred to the memory of" So-and-So had been painted on them once, but it could no longer have been read, on the most of them, now, even if there had been light. A faint wind moaned through the trees, and Tom feared it might be the spirits of the dead, complaining at being disturbed. The boys talked little, and only under their breath, for the time and the place and the pervading solemnity and silence oppressed their spirits. They found the sharp new heap they were seeking, and ensconced themselves within the protection of three great elms that grew in a bunch within a few feet of the grave. Then they waited in silence for what seemed a long time. The hooting of a distant owl was all the sound that troubled the dead stillness. Tom's reflections grew oppressive. He must force some talk. So he said in a whisper: "Hucky, do you believe the dead people like it for us to be here?" Huckleberry whispered: "I wisht I knowed. It's awful solemn like, AIN'T it?" "I bet it is." There was a considerable pause, while the boys canvassed this matter inwardly. Then Tom whispered: "Say, Hucky--do you reckon Hoss Williams hears us talking?" "O' course he does. Least his sperrit does." Tom, after a pause: "I wish I'd said Mister Williams. But I never meant any harm. Everybody calls him Hoss." "A body can't be too partic'lar how they talk 'bout these-yer dead people, Tom." This was a damper, and conversation died again. Presently Tom seized his comrade's arm and said: "Sh!" "What is it, Tom?" And the two clung together with beating hearts. "Sh! There 'tis again! Didn't you hear it?" "I--" "There! Now you hear it." "Lord, Tom, they're coming! They're coming, sure. What'll we do?" "I dono. Think they'll see us?" "Oh, Tom, they can see in the dark, same as cats. I wisht I hadn't come." "Oh, don't be afeard. I don't believe they'll bother us. We ain't doing any harm. If we keep perfectly still, maybe they won't notice us at all." "I'll try to, Tom, but, Lord, I'm all of a shiver." "Listen!" The boys bent their heads together and scarcely breathed. A muffled sound of voices floated up from the far end of the graveyard. "Look! See there!" whispered Tom. "What is it?" "It's devil-fire. Oh, Tom, this is awful." Some vague figures approached through the gloom, swinging an old-fashioned tin lantern that freckled the ground with innumerable little spangles of light. Presently Huckleberry whispered with a shudder: "It's the devils sure enough. Three of 'em! Lordy, Tom, we're goners! Can you pray?" "I'll try, but don't you be afeard. They ain't going to hurt us. 'Now I lay me down to sleep, I--'" "Sh!" "What is it, Huck?" "They're HUMANS! One of 'em is, anyway. One of 'em's old Muff Potter's voice." "No--'tain't so, is it?" "I bet I know it. Don't you stir nor budge. He ain't sharp enough to notice us. Drunk, the same as usual, likely--blamed old rip!" "All right, I'll keep still. Now they're stuck. Can't find it. Here they come again. Now they're hot. Cold again. Hot again. Red hot! They're p'inted right, this time. Say, Huck, I know another o' them voices; it's Injun Joe." "That's so--that murderin' half-breed! I'd druther they was devils a dern sight. What kin they be up to?" The whisper died wholly out, now, for the three men had reached the grave and stood within a few feet of the boys' hiding-place. "Here it is," said the third voice; and the owner of it held the lantern up and revealed the face of young Doctor Robinson. Potter and Injun Joe were carrying a handbarrow with a rope and a couple of shovels on it. They cast down their load and began to open the grave. The doctor put the lantern at the head of the grave and came and sat down with his back against one of the elm trees. He was so close the boys could have touched him. "Hurry, men!" he said, in a low voice; "the moon might come out at any moment." They growled a response and went on digging. For some time there was no noise but the grating sound of the spades discharging their freight of mould and gravel. It was very monotonous. Finally a spade struck upon the coffin with a dull woody accent, and within another minute or two the men had hoisted it out on the ground. They pried off the lid with their shovels, got out the body and dumped it rudely on the ground. The moon drifted from behind the clouds and exposed the pallid face. The barrow was got ready and the corpse placed on it, covered with a blanket, and bound to its place with the rope. Potter took out a large spring-knife and cut off the dangling end of the rope and then said: "Now the cussed thing's ready, Sawbones, and you'll just out with another five, or here she stays." "That's the talk!" said Injun Joe. "Look here, what does this mean?" said the doctor. "You required your pay in advance, and I've paid you." "Yes, and you done more than that," said Injun Joe, approaching the doctor, who was now standing. "Five years ago you drove me away from your father's kitchen one night, when I come to ask for something to eat, and you said I warn't there for any good; and when I swore I'd get even with you if it took a hundred years, your father had me jailed for a vagrant. Did you think I'd forget? The Injun blood ain't in me for nothing. And now I've GOT you, and you got to SETTLE, you know!" He was threatening the doctor, with his fist in his face, by this time. The doctor struck out suddenly and stretched the ruffian on the ground. Potter dropped his knife, and exclaimed: "Here, now, don't you hit my pard!" and the next moment he had grappled with the doctor and the two were struggling with might and main, trampling the grass and tearing the ground with their heels. Injun Joe sprang to his feet, his eyes flaming with passion, snatched up Potter's knife, and went creeping, catlike and stooping, round and round about the combatants, seeking an opportunity. All at once the doctor flung himself free, seized the heavy headboard of Williams' grave and felled Potter to the earth with it--and in the same instant the half-breed saw his chance and drove the knife to the hilt in the young man's breast. He reeled and fell partly upon Potter, flooding him with his blood, and in the same moment the clouds blotted out the dreadful spectacle and the two frightened boys went speeding away in the dark. Presently, when the moon emerged again, Injun Joe was standing over the two forms, contemplating them. The doctor murmured inarticulately, gave a long gasp or two and was still. The half-breed muttered: "THAT score is settled--damn you." Then he robbed the body. After which he put the fatal knife in Potter's open right hand, and sat down on the dismantled coffin. Three --four--five minutes passed, and then Potter began to stir and moan. His hand closed upon the knife; he raised it, glanced at it, and let it fall, with a shudder. Then he sat up, pushing the body from him, and gazed at it, and then around him, confusedly. His eyes met Joe's. "Lord, how is this, Joe?" he said. "It's a dirty business," said Joe, without moving. "What did you do it for?" "I! I never done it!" "Look here! That kind of talk won't wash." Potter trembled and grew white. "I thought I'd got sober. I'd no business to drink to-night. But it's in my head yet--worse'n when we started here. I'm all in a muddle; can't recollect anything of it, hardly. Tell me, Joe--HONEST, now, old feller--did I do it? Joe, I never meant to--'pon my soul and honor, I never meant to, Joe. Tell me how it was, Joe. Oh, it's awful--and him so young and promising." "Why, you two was scuffling, and he fetched you one with the headboard and you fell flat; and then up you come, all reeling and staggering like, and snatched the knife and jammed it into him, just as he fetched you another awful clip--and here you've laid, as dead as a wedge til now." "Oh, I didn't know what I was a-doing. I wish I may die this minute if I did. It was all on account of the whiskey and the excitement, I reckon. I never used a weepon in my life before, Joe. I've fought, but never with weepons. They'll all say that. Joe, don't tell! Say you won't tell, Joe--that's a good feller. I always liked you, Joe, and stood up for you, too. Don't you remember? You WON'T tell, WILL you, Joe?" And the poor creature dropped on his knees before the stolid murderer, and clasped his appealing hands. "No, you've always been fair and square with me, Muff Potter, and I won't go back on you. There, now, that's as fair as a man can say." "Oh, Joe, you're an angel. I'll bless you for this the longest day I live." And Potter began to cry. "Come, now, that's enough of that. This ain't any time for blubbering. You be off yonder way and I'll go this. Move, now, and don't leave any tracks behind you." Potter started on a trot that quickly increased to a run. The half-breed stood looking after him. He muttered: "If he's as much stunned with the lick and fuddled with the rum as he had the look of being, he won't think of the knife till he's gone so far he'll be afraid to come back after it to such a place by himself --chicken-heart!" Two or three minutes later the murdered man, the blanketed corpse, the lidless coffin, and the open grave were under no inspection but the moon's. The stillness was complete again, too. CHAPTER X THE two boys flew on and on, toward the village, speechless with horror. They glanced backward over their shoulders from time to time, apprehensively, as if they feared they might be followed. Every stump that started up in their path seemed a man and an enemy, and made them catch their breath; and as they sped by some outlying cottages that lay near the village, the barking of the aroused watch-dogs seemed to give wings to their feet. "If we can only get to the old tannery before we break down!" whispered Tom, in short catches between breaths. "I can't stand it much longer." Huckleberry's hard pantings were his only reply, and the boys fixed their eyes on the goal of their hopes and bent to their work to win it. They gained steadily on it, and at last, breast to breast, they burst through the open door and fell grateful and exhausted in the sheltering shadows beyond. By and by their pulses slowed down, and Tom whispered: "Huckleberry, what do you reckon'll come of this?" "If Doctor Robinson dies, I reckon hanging'll come of it." "Do you though?" "Why, I KNOW it, Tom." Tom thought a while, then he said: "Who'll tell? We?" "What are you talking about? S'pose something happened and Injun Joe DIDN'T hang? Why, he'd kill us some time or other, just as dead sure as we're a laying here." "That's just what I was thinking to myself, Huck." "If anybody tells, let Muff Potter do it, if he's fool enough. He's generally drunk enough." Tom said nothing--went on thinking. Presently he whispered: "Huck, Muff Potter don't know it. How can he tell?" "What's the reason he don't know it?" "Because he'd just got that whack when Injun Joe done it. D'you reckon he could see anything? D'you reckon he knowed anything?" "By hokey, that's so, Tom!" "And besides, look-a-here--maybe that whack done for HIM!" "No, 'taint likely, Tom. He had liquor in him; I could see that; and besides, he always has. Well, when pap's full, you might take and belt him over the head with a church and you couldn't phase him. He says so, his own self. So it's the same with Muff Potter, of course. But if a man was dead sober, I reckon maybe that whack might fetch him; I dono." After another reflective silence, Tom said: "Hucky, you sure you can keep mum?" "Tom, we GOT to keep mum. You know that. That Injun devil wouldn't make any more of drownding us than a couple of cats, if we was to squeak 'bout this and they didn't hang him. Now, look-a-here, Tom, less take and swear to one another--that's what we got to do--swear to keep mum." "I'm agreed. It's the best thing. Would you just hold hands and swear that we--" "Oh no, that wouldn't do for this. That's good enough for little rubbishy common things--specially with gals, cuz THEY go back on you anyway, and blab if they get in a huff--but there orter be writing 'bout a big thing like this. And blood." Tom's whole being applauded this idea. It was deep, and dark, and awful; the hour, the circumstances, the surroundings, were in keeping with it. He picked up a clean pine shingle that lay in the moonlight, took a little fragment of "red keel" out of his pocket, got the moon on his work, and painfully scrawled these lines, emphasizing each slow down-stroke by clamping his tongue between his teeth, and letting up the pressure on the up-strokes. [See next page.] "Huck Finn and Tom Sawyer swears they will keep mum about This and They wish They may Drop down dead in Their Tracks if They ever Tell and Rot." Huckleberry was filled with admiration of Tom's facility in writing, and the sublimity of his language. He at once took a pin from his lapel and was going to prick his flesh, but Tom said: "Hold on! Don't do that. A pin's brass. It might have verdigrease on it." "What's verdigrease?" "It's p'ison. That's what it is. You just swaller some of it once --you'll see." So Tom unwound the thread from one of his needles, and each boy pricked the ball of his thumb and squeezed out a drop of blood. In time, after many squeezes, Tom managed to sign his initials, using the ball of his little finger for a pen. Then he showed Huckleberry how to make an H and an F, and the oath was complete. They buried the shingle close to the wall, with some dismal ceremonies and incantations, and the fetters that bound their tongues were considered to be locked and the key thrown away. A figure crept stealthily through a break in the other end of the ruined building, now, but they did not notice it. "Tom," whispered Huckleberry, "does this keep us from EVER telling --ALWAYS?" "Of course it does. It don't make any difference WHAT happens, we got to keep mum. We'd drop down dead--don't YOU know that?" "Yes, I reckon that's so." They continued to whisper for some little time. Presently a dog set up a long, lugubrious howl just outside--within ten feet of them. The boys clasped each other suddenly, in an agony of fright. "Which of us does he mean?" gasped Huckleberry. "I dono--peep through the crack. Quick!" "No, YOU, Tom!" "I can't--I can't DO it, Huck!" "Please, Tom. There 'tis again!" "Oh, lordy, I'm thankful!" whispered Tom. "I know his voice. It's Bull Harbison." * [* If Mr. Harbison owned a slave named Bull, Tom would have spoken of him as "Harbison's Bull," but a son or a dog of that name was "Bull Harbison."] "Oh, that's good--I tell you, Tom, I was most scared to death; I'd a bet anything it was a STRAY dog." The dog howled again. The boys' hearts sank once more. "Oh, my! that ain't no Bull Harbison!" whispered Huckleberry. "DO, Tom!" Tom, quaking with fear, yielded, and put his eye to the crack. His whisper was hardly audible when he said: "Oh, Huck, IT S A STRAY DOG!" "Quick, Tom, quick! Who does he mean?" "Huck, he must mean us both--we're right together." "Oh, Tom, I reckon we're goners. I reckon there ain't no mistake 'bout where I'LL go to. I been so wicked." "Dad fetch it! This comes of playing hookey and doing everything a feller's told NOT to do. I might a been good, like Sid, if I'd a tried --but no, I wouldn't, of course. But if ever I get off this time, I lay I'll just WALLER in Sunday-schools!" And Tom began to snuffle a little. "YOU bad!" and Huckleberry began to snuffle too. "Consound it, Tom Sawyer, you're just old pie, 'longside o' what I am. Oh, LORDY, lordy, lordy, I wisht I only had half your chance." Tom choked off and whispered: "Look, Hucky, look! He's got his BACK to us!" Hucky looked, with joy in his heart. "Well, he has, by jingoes! Did he before?" "Yes, he did. But I, like a fool, never thought. Oh, this is bully, you know. NOW who can he mean?" The howling stopped. Tom pricked up his ears. "Sh! What's that?" he whispered. "Sounds like--like hogs grunting. No--it's somebody snoring, Tom." "That IS it! Where 'bouts is it, Huck?" "I bleeve it's down at 'tother end. Sounds so, anyway. Pap used to sleep there, sometimes, 'long with the hogs, but laws bless you, he just lifts things when HE snores. Besides, I reckon he ain't ever coming back to this town any more." The spirit of adventure rose in the boys' souls once more. "Hucky, do you das't to go if I lead?" "I don't like to, much. Tom, s'pose it's Injun Joe!" Tom quailed. But presently the temptation rose up strong again and the boys agreed to try, with the understanding that they would take to their heels if the snoring stopped. So they went tiptoeing stealthily down, the one behind the other. When they had got to within five steps of the snorer, Tom stepped on a stick, and it broke with a sharp snap. The man moaned, writhed a little, and his face came into the moonlight. It was Muff Potter. The boys' hearts had stood still, and their hopes too, when the man moved, but their fears passed away now. They tiptoed out, through the broken weather-boarding, and stopped at a little distance to exchange a parting word. That long, lugubrious howl rose on the night air again! They turned and saw the strange dog standing within a few feet of where Potter was lying, and FACING Potter, with his nose pointing heavenward. "Oh, geeminy, it's HIM!" exclaimed both boys, in a breath. "Say, Tom--they say a stray dog come howling around Johnny Miller's house, 'bout midnight, as much as two weeks ago; and a whippoorwill come in and lit on the banisters and sung, the very same evening; and there ain't anybody dead there yet." "Well, I know that. And suppose there ain't. Didn't Gracie Miller fall in the kitchen fire and burn herself terrible the very next Saturday?" "Yes, but she ain't DEAD. And what's more, she's getting better, too." "All right, you wait and see. She's a goner, just as dead sure as Muff Potter's a goner. That's what the niggers say, and they know all about these kind of things, Huck." Then they separated, cogitating. When Tom crept in at his bedroom window the night was almost spent. He undressed with excessive caution, and fell asleep congratulating himself that nobody knew of his escapade. He was not aware that the gently-snoring Sid was awake, and had been so for an hour. When Tom awoke, Sid was dressed and gone. There was a late look in the light, a late sense in the atmosphere. He was startled. Why had he not been called--persecuted till he was up, as usual? The thought filled him with bodings. Within five minutes he was dressed and down-stairs, feeling sore and drowsy. The family were still at table, but they had finished breakfast. There was no voice of rebuke; but there were averted eyes; there was a silence and an air of solemnity that struck a chill to the culprit's heart. He sat down and tried to seem gay, but it was up-hill work; it roused no smile, no response, and he lapsed into silence and let his heart sink down to the depths. After breakfast his aunt took him aside, and Tom almost brightened in the hope that he was going to be flogged; but it was not so. His aunt wept over him and asked him how he could go and break her old heart so; and finally told him to go on, and ruin himself and bring her gray hairs with sorrow to the grave, for it was no use for her to try any more. This was worse than a thousand whippings, and Tom's heart was sorer now than his body. He cried, he pleaded for forgiveness, promised to reform over and over again, and then received his dismissal, feeling that he had won but an imperfect forgiveness and established but a feeble confidence. He left the presence too miserable to even feel revengeful toward Sid; and so the latter's prompt retreat through the back gate was unnecessary. He moped to school gloomy and sad, and took his flogging, along with Joe Harper, for playing hookey the day before, with the air of one whose heart was busy with heavier woes and wholly dead to trifles. Then he betook himself to his seat, rested his elbows on his desk and his jaws in his hands, and stared at the wall with the stony stare of suffering that has reached the limit and can no further go. His elbow was pressing against some hard substance. After a long time he slowly and sadly changed his position, and took up this object with a sigh. It was in a paper. He unrolled it. A long, lingering, colossal sigh followed, and his heart broke. It was his brass andiron knob! This final feather broke the camel's back. CHAPTER XI CLOSE upon the hour of noon the whole village was suddenly electrified with the ghastly news. No need of the as yet undreamed-of telegraph; the tale flew from man to man, from group to group, from house to house, with little less than telegraphic speed. Of course the schoolmaster gave holiday for that afternoon; the town would have thought strangely of him if he had not. A gory knife had been found close to the murdered man, and it had been recognized by somebody as belonging to Muff Potter--so the story ran. And it was said that a belated citizen had come upon Potter washing himself in the "branch" about one or two o'clock in the morning, and that Potter had at once sneaked off--suspicious circumstances, especially the washing which was not a habit with Potter. It was also said that the town had been ransacked for this "murderer" (the public are not slow in the matter of sifting evidence and arriving at a verdict), but that he could not be found. Horsemen had departed down all the roads in every direction, and the Sheriff "was confident" that he would be captured before night. All the town was drifting toward the graveyard. Tom's heartbreak vanished and he joined the procession, not because he would not a thousand times rather go anywhere else, but because an awful, unaccountable fascination drew him on. Arrived at the dreadful place, he wormed his small body through the crowd and saw the dismal spectacle. It seemed to him an age since he was there before. Somebody pinched his arm. He turned, and his eyes met Huckleberry's. Then both looked elsewhere at once, and wondered if anybody had noticed anything in their mutual glance. But everybody was talking, and intent upon the grisly spectacle before them. "Poor fellow!" "Poor young fellow!" "This ought to be a lesson to grave robbers!" "Muff Potter'll hang for this if they catch him!" This was the drift of remark; and the minister said, "It was a judgment; His hand is here." Now Tom shivered from head to heel; for his eye fell upon the stolid face of Injun Joe. At this moment the crowd began to sway and struggle, and voices shouted, "It's him! it's him! he's coming himself!" "Who? Who?" from twenty voices. "Muff Potter!" "Hallo, he's stopped!--Look out, he's turning! Don't let him get away!" People in the branches of the trees over Tom's head said he wasn't trying to get away--he only looked doubtful and perplexed. "Infernal impudence!" said a bystander; "wanted to come and take a quiet look at his work, I reckon--didn't expect any company." The crowd fell apart, now, and the Sheriff came through, ostentatiously leading Potter by the arm. The poor fellow's face was haggard, and his eyes showed the fear that was upon him. When he stood before the murdered man, he shook as with a palsy, and he put his face in his hands and burst into tears. "I didn't do it, friends," he sobbed; "'pon my word and honor I never done it." "Who's accused you?" shouted a voice. This shot seemed to carry home. Potter lifted his face and looked around him with a pathetic hopelessness in his eyes. He saw Injun Joe, and exclaimed: "Oh, Injun Joe, you promised me you'd never--" "Is that your knife?" and it was thrust before him by the Sheriff. Potter would have fallen if they had not caught him and eased him to the ground. Then he said: "Something told me 't if I didn't come back and get--" He shuddered; then waved his nerveless hand with a vanquished gesture and said, "Tell 'em, Joe, tell 'em--it ain't any use any more." Then Huckleberry and Tom stood dumb and staring, and heard the stony-hearted liar reel off his serene statement, they expecting every moment that the clear sky would deliver God's lightnings upon his head, and wondering to see how long the stroke was delayed. And when he had finished and still stood alive and whole, their wavering impulse to break their oath and save the poor betrayed prisoner's life faded and vanished away, for plainly this miscreant had sold himself to Satan and it would be fatal to meddle with the property of such a power as that. "Why didn't you leave? What did you want to come here for?" somebody said. "I couldn't help it--I couldn't help it," Potter moaned. "I wanted to run away, but I couldn't seem to come anywhere but here." And he fell to sobbing again. Injun Joe repeated his statement, just as calmly, a few minutes afterward on the inquest, under oath; and the boys, seeing that the lightnings were still withheld, were confirmed in their belief that Joe had sold himself to the devil. He was now become, to them, the most balefully interesting object they had ever looked upon, and they could not take their fascinated eyes from his face. They inwardly resolved to watch him nights, when opportunity should offer, in the hope of getting a glimpse of his dread master. Injun Joe helped to raise the body of the murdered man and put it in a wagon for removal; and it was whispered through the shuddering crowd that the wound bled a little! The boys thought that this happy circumstance would turn suspicion in the right direction; but they were disappointed, for more than one villager remarked: "It was within three feet of Muff Potter when it done it." Tom's fearful secret and gnawing conscience disturbed his sleep for as much as a week after this; and at breakfast one morning Sid said: "Tom, you pitch around and talk in your sleep so much that you keep me awake half the time." Tom blanched and dropped his eyes. "It's a bad sign," said Aunt Polly, gravely. "What you got on your mind, Tom?" "Nothing. Nothing 't I know of." But the boy's hand shook so that he spilled his coffee. "And you do talk such stuff," Sid said. "Last night you said, 'It's blood, it's blood, that's what it is!' You said that over and over. And you said, 'Don't torment me so--I'll tell!' Tell WHAT? What is it you'll tell?" Everything was swimming before Tom. There is no telling what might have happened, now, but luckily the concern passed out of Aunt Polly's face and she came to Tom's relief without knowing it. She said: "Sho! It's that dreadful murder. I dream about it most every night myself. Sometimes I dream it's me that done it." Mary said she had been affected much the same way. Sid seemed satisfied. Tom got out of the presence as quick as he plausibly could, and after that he complained of toothache for a week, and tied up his jaws every night. He never knew that Sid lay nightly watching, and frequently slipped the bandage free and then leaned on his elbow listening a good while at a time, and afterward slipped the bandage back to its place again. Tom's distress of mind wore off gradually and the toothache grew irksome and was discarded. If Sid really managed to make anything out of Tom's disjointed mutterings, he kept it to himself. It seemed to Tom that his schoolmates never would get done holding inquests on dead cats, and thus keeping his trouble present to his mind. Sid noticed that Tom never was coroner at one of these inquiries, though it had been his habit to take the lead in all new enterprises; he noticed, too, that Tom never acted as a witness--and that was strange; and Sid did not overlook the fact that Tom even showed a marked aversion to these inquests, and always avoided them when he could. Sid marvelled, but said nothing. However, even inquests went out of vogue at last, and ceased to torture Tom's conscience. Every day or two, during this time of sorrow, Tom watched his opportunity and went to the little grated jail-window and smuggled such small comforts through to the "murderer" as he could get hold of. The jail was a trifling little brick den that stood in a marsh at the edge of the village, and no guards were afforded for it; indeed, it was seldom occupied. These offerings greatly helped to ease Tom's conscience. The villagers had a strong desire to tar-and-feather Injun Joe and ride him on a rail, for body-snatching, but so formidable was his character that nobody could be found who was willing to take the lead in the matter, so it was dropped. He had been careful to begin both of his inquest-statements with the fight, without confessing the grave-robbery that preceded it; therefore it was deemed wisest not to try the case in the courts at present. CHAPTER XII ONE of the reasons why Tom's mind had drifted away from its secret troubles was, that it had found a new and weighty matter to interest itself about. Becky Thatcher had stopped coming to school. Tom had struggled with his pride a few days, and tried to "whistle her down the wind," but failed. He began to find himself hanging around her father's house, nights, and feeling very miserable. She was ill. What if she should die! There was distraction in the thought. He no longer took an interest in war, nor even in piracy. The charm of life was gone; there was nothing but dreariness left. He put his hoop away, and his bat; there was no joy in them any more. His aunt was concerned. She began to try all manner of remedies on him. She was one of those people who are infatuated with patent medicines and all new-fangled methods of producing health or mending it. She was an inveterate experimenter in these things. When something fresh in this line came out she was in a fever, right away, to try it; not on herself, for she was never ailing, but on anybody else that came handy. She was a subscriber for all the "Health" periodicals and phrenological frauds; and the solemn ignorance they were inflated with was breath to her nostrils. All the "rot" they contained about ventilation, and how to go to bed, and how to get up, and what to eat, and what to drink, and how much exercise to take, and what frame of mind to keep one's self in, and what sort of clothing to wear, was all gospel to her, and she never observed that her health-journals of the current month customarily upset everything they had recommended the month before. She was as simple-hearted and honest as the day was long, and so she was an easy victim. She gathered together her quack periodicals and her quack medicines, and thus armed with death, went about on her pale horse, metaphorically speaking, with "hell following after." But she never suspected that she was not an angel of healing and the balm of Gilead in disguise, to the suffering neighbors. The water treatment was new, now, and Tom's low condition was a windfall to her. She had him out at daylight every morning, stood him up in the woodshed and drowned him with a deluge of cold water; then she scrubbed him down with a towel like a file, and so brought him to; then she rolled him up in a wet sheet and put him away under blankets till she sweated his soul clean and "the yellow stains of it came through his pores"--as Tom said. Yet notwithstanding all this, the boy grew more and more melancholy and pale and dejected. She added hot baths, sitz baths, shower baths, and plunges. The boy remained as dismal as a hearse. She began to assist the water with a slim oatmeal diet and blister-plasters. She calculated his capacity as she would a jug's, and filled him up every day with quack cure-alls. Tom had become indifferent to persecution by this time. This phase filled the old lady's heart with consternation. This indifference must be broken up at any cost. Now she heard of Pain-killer for the first time. She ordered a lot at once. She tasted it and was filled with gratitude. It was simply fire in a liquid form. She dropped the water treatment and everything else, and pinned her faith to Pain-killer. She gave Tom a teaspoonful and watched with the deepest anxiety for the result. Her troubles were instantly at rest, her soul at peace again; for the "indifference" was broken up. The boy could not have shown a wilder, heartier interest, if she had built a fire under him. Tom felt that it was time to wake up; this sort of life might be romantic enough, in his blighted condition, but it was getting to have too little sentiment and too much distracting variety about it. So he thought over various plans for relief, and finally hit pon that of professing to be fond of Pain-killer. He asked for it so often that he became a nuisance, and his aunt ended by telling him to help himself and quit bothering her. If it had been Sid, she would have had no misgivings to alloy her delight; but since it was Tom, she watched the bottle clandestinely. She found that the medicine did really diminish, but it did not occur to her that the boy was mending the health of a crack in the sitting-room floor with it. One day Tom was in the act of dosing the crack when his aunt's yellow cat came along, purring, eying the teaspoon avariciously, and begging for a taste. Tom said: "Don't ask for it unless you want it, Peter." But Peter signified that he did want it. "You better make sure." Peter was sure. "Now you've asked for it, and I'll give it to you, because there ain't anything mean about me; but if you find you don't like it, you mustn't blame anybody but your own self." Peter was agreeable. So Tom pried his mouth open and poured down the Pain-killer. Peter sprang a couple of yards in the air, and then delivered a war-whoop and set off round and round the room, banging against furniture, upsetting flower-pots, and making general havoc. Next he rose on his hind feet and pranced around, in a frenzy of enjoyment, with his head over his shoulder and his voice proclaiming his unappeasable happiness. Then he went tearing around the house again spreading chaos and destruction in his path. Aunt Polly entered in time to see him throw a few double summersets, deliver a final mighty hurrah, and sail through the open window, carrying the rest of the flower-pots with him. The old lady stood petrified with astonishment, peering over her glasses; Tom lay on the floor expiring with laughter. "Tom, what on earth ails that cat?" "I don't know, aunt," gasped the boy. "Why, I never see anything like it. What did make him act so?" "Deed I don't know, Aunt Polly; cats always act so when they're having a good time." "They do, do they?" There was something in the tone that made Tom apprehensive. "Yes'm. That is, I believe they do." "You DO?" "Yes'm." The old lady was bending down, Tom watching, with interest emphasized by anxiety. Too late he divined her "drift." The handle of the telltale teaspoon was visible under the bed-valance. Aunt Polly took it, held it up. Tom winced, and dropped his eyes. Aunt Polly raised him by the usual handle--his ear--and cracked his head soundly with her thimble. "Now, sir, what did you want to treat that poor dumb beast so, for?" "I done it out of pity for him--because he hadn't any aunt." "Hadn't any aunt!--you numskull. What has that got to do with it?" "Heaps. Because if he'd had one she'd a burnt him out herself! She'd a roasted his bowels out of him 'thout any more feeling than if he was a human!" Aunt Polly felt a sudden pang of remorse. This was putting the thing in a new light; what was cruelty to a cat MIGHT be cruelty to a boy, too. She began to soften; she felt sorry. Her eyes watered a little, and she put her hand on Tom's head and said gently: "I was meaning for the best, Tom. And, Tom, it DID do you good." Tom looked up in her face with just a perceptible twinkle peeping through his gravity. "I know you was meaning for the best, aunty, and so was I with Peter. It done HIM good, too. I never see him get around so since--" "Oh, go 'long with you, Tom, before you aggravate me again. And you try and see if you can't be a good boy, for once, and you needn't take any more medicine." Tom reached school ahead of time. It was noticed that this strange thing had been occurring every day latterly. And now, as usual of late, he hung about the gate of the schoolyard instead of playing with his comrades. He was sick, he said, and he looked it. He tried to seem to be looking everywhere but whither he really was looking--down the road. Presently Jeff Thatcher hove in sight, and Tom's face lighted; he gazed a moment, and then turned sorrowfully away. When Jeff arrived, Tom accosted him; and "led up" warily to opportunities for remark about Becky, but the giddy lad never could see the bait. Tom watched and watched, hoping whenever a frisking frock came in sight, and hating the owner of it as soon as he saw she was not the right one. At last frocks ceased to appear, and he dropped hopelessly into the dumps; he entered the empty schoolhouse and sat down to suffer. Then one more frock passed in at the gate, and Tom's heart gave a great bound. The next instant he was out, and "going on" like an Indian; yelling, laughing, chasing boys, jumping over the fence at risk of life and limb, throwing handsprings, standing on his head--doing all the heroic things he could conceive of, and keeping a furtive eye out, all the while, to see if Becky Thatcher was noticing. But she seemed to be unconscious of it all; she never looked. Could it be possible that she was not aware that he was there? He carried his exploits to her immediate vicinity; came war-whooping around, snatched a boy's cap, hurled it to the roof of the schoolhouse, broke through a group of boys, tumbling them in every direction, and fell sprawling, himself, under Becky's nose, almost upsetting her--and she turned, with her nose in the air, and he heard her say: "Mf! some people think they're mighty smart--always showing off!" Tom's cheeks burned. He gathered himself up and sneaked off, crushed and crestfallen. CHAPTER XIII TOM'S mind was made up now. He was gloomy and desperate. He was a forsaken, friendless boy, he said; nobody loved him; when they found out what they had driven him to, perhaps they would be sorry; he had tried to do right and get along, but they would not let him; since nothing would do them but to be rid of him, let it be so; and let them blame HIM for the consequences--why shouldn't they? What right had the friendless to complain? Yes, they had forced him to it at last: he would lead a life of crime. There was no choice. By this time he was far down Meadow Lane, and the bell for school to "take up" tinkled faintly upon his ear. He sobbed, now, to think he should never, never hear that old familiar sound any more--it was very hard, but it was forced on him; since he was driven out into the cold world, he must submit--but he forgave them. Then the sobs came thick and fast. Just at this point he met his soul's sworn comrade, Joe Harper --hard-eyed, and with evidently a great and dismal purpose in his heart. Plainly here were "two souls with but a single thought." Tom, wiping his eyes with his sleeve, began to blubber out something about a resolution to escape from hard usage and lack of sympathy at home by roaming abroad into the great world never to return; and ended by hoping that Joe would not forget him. But it transpired that this was a request which Joe had just been going to make of Tom, and had come to hunt him up for that purpose. His mother had whipped him for drinking some cream which he had never tasted and knew nothing about; it was plain that she was tired of him and wished him to go; if she felt that way, there was nothing for him to do but succumb; he hoped she would be happy, and never regret having driven her poor boy out into the unfeeling world to suffer and die. As the two boys walked sorrowing along, they made a new compact to stand by each other and be brothers and never separate till death relieved them of their troubles. Then they began to lay their plans. Joe was for being a hermit, and living on crusts in a remote cave, and dying, some time, of cold and want and grief; but after listening to Tom, he conceded that there were some conspicuous advantages about a life of crime, and so he consented to be a pirate. Three miles below St. Petersburg, at a point where the Mississippi River was a trifle over a mile wide, there was a long, narrow, wooded island, with a shallow bar at the head of it, and this offered well as a rendezvous. It was not inhabited; it lay far over toward the further shore, abreast a dense and almost wholly unpeopled forest. So Jackson's Island was chosen. Who were to be the subjects of their piracies was a matter that did not occur to them. Then they hunted up Huckleberry Finn, and he joined them promptly, for all careers were one to him; he was indifferent. They presently separated to meet at a lonely spot on the river-bank two miles above the village at the favorite hour--which was midnight. There was a small log raft there which they meant to capture. Each would bring hooks and lines, and such provision as he could steal in the most dark and mysterious way--as became outlaws. And before the afternoon was done, they had all managed to enjoy the sweet glory of spreading the fact that pretty soon the town would "hear something." All who got this vague hint were cautioned to "be mum and wait." About midnight Tom arrived with a boiled ham and a few trifles, and stopped in a dense undergrowth on a small bluff overlooking the meeting-place. It was starlight, and very still. The mighty river lay like an ocean at rest. Tom listened a moment, but no sound disturbed the quiet. Then he gave a low, distinct whistle. It was answered from under the bluff. Tom whistled twice more; these signals were answered in the same way. Then a guarded voice said: "Who goes there?" "Tom Sawyer, the Black Avenger of the Spanish Main. Name your names." "Huck Finn the Red-Handed, and Joe Harper the Terror of the Seas." Tom had furnished these titles, from his favorite literature. "'Tis well. Give the countersign." Two hoarse whispers delivered the same awful word simultaneously to the brooding night: "BLOOD!" Then Tom tumbled his ham over the bluff and let himself down after it, tearing both skin and clothes to some extent in the effort. There was an easy, comfortable path along the shore under the bluff, but it lacked the advantages of difficulty and danger so valued by a pirate. The Terror of the Seas had brought a side of bacon, and had about worn himself out with getting it there. Finn the Red-Handed had stolen a skillet and a quantity of half-cured leaf tobacco, and had also brought a few corn-cobs to make pipes with. But none of the pirates smoked or "chewed" but himself. The Black Avenger of the Spanish Main said it would never do to start without some fire. That was a wise thought; matches were hardly known there in that day. They saw a fire smouldering upon a great raft a hundred yards above, and they went stealthily thither and helped themselves to a chunk. They made an imposing adventure of it, saying, "Hist!" every now and then, and suddenly halting with finger on lip; moving with hands on imaginary dagger-hilts; and giving orders in dismal whispers that if "the foe" stirred, to "let him have it to the hilt," because "dead men tell no tales." They knew well enough that the raftsmen were all down at the village laying in stores or having a spree, but still that was no excuse for their conducting this thing in an unpiratical way. They shoved off, presently, Tom in command, Huck at the after oar and Joe at the forward. Tom stood amidships, gloomy-browed, and with folded arms, and gave his orders in a low, stern whisper: "Luff, and bring her to the wind!" "Aye-aye, sir!" "Steady, steady-y-y-y!" "Steady it is, sir!" "Let her go off a point!" "Point it is, sir!" As the boys steadily and monotonously drove the raft toward mid-stream it was no doubt understood that these orders were given only for "style," and were not intended to mean anything in particular. "What sail's she carrying?" "Courses, tops'ls, and flying-jib, sir." "Send the r'yals up! Lay out aloft, there, half a dozen of ye --foretopmaststuns'l! Lively, now!" "Aye-aye, sir!" "Shake out that maintogalans'l! Sheets and braces! NOW my hearties!" "Aye-aye, sir!" "Hellum-a-lee--hard a port! Stand by to meet her when she comes! Port, port! NOW, men! With a will! Stead-y-y-y!" "Steady it is, sir!" The raft drew beyond the middle of the river; the boys pointed her head right, and then lay on their oars. The river was not high, so there was not more than a two or three mile current. Hardly a word was said during the next three-quarters of an hour. Now the raft was passing before the distant town. Two or three glimmering lights showed where it lay, peacefully sleeping, beyond the vague vast sweep of star-gemmed water, unconscious of the tremendous event that was happening. The Black Avenger stood still with folded arms, "looking his last" upon the scene of his former joys and his later sufferings, and wishing "she" could see him now, abroad on the wild sea, facing peril and death with dauntless heart, going to his doom with a grim smile on his lips. It was but a small strain on his imagination to remove Jackson's Island beyond eyeshot of the village, and so he "looked his last" with a broken and satisfied heart. The other pirates were looking their last, too; and they all looked so long that they came near letting the current drift them out of the range of the island. But they discovered the danger in time, and made shift to avert it. About two o'clock in the morning the raft grounded on the bar two hundred yards above the head of the island, and they waded back and forth until they had landed their freight. Part of the little raft's belongings consisted of an old sail, and this they spread over a nook in the bushes for a tent to shelter their provisions; but they themselves would sleep in the open air in good weather, as became outlaws. They built a fire against the side of a great log twenty or thirty steps within the sombre depths of the forest, and then cooked some bacon in the frying-pan for supper, and used up half of the corn "pone" stock they had brought. It seemed glorious sport to be feasting in that wild, free way in the virgin forest of an unexplored and uninhabited island, far from the haunts of men, and they said they never would return to civilization. The climbing fire lit up their faces and threw its ruddy glare upon the pillared tree-trunks of their forest temple, and upon the varnished foliage and festooning vines. When the last crisp slice of bacon was gone, and the last allowance of corn pone devoured, the boys stretched themselves out on the grass, filled with contentment. They could have found a cooler place, but they would not deny themselves such a romantic feature as the roasting camp-fire. "AIN'T it gay?" said Joe. "It's NUTS!" said Tom. "What would the boys say if they could see us?" "Say? Well, they'd just die to be here--hey, Hucky!" "I reckon so," said Huckleberry; "anyways, I'm suited. I don't want nothing better'n this. I don't ever get enough to eat, gen'ally--and here they can't come and pick at a feller and bullyrag him so." "It's just the life for me," said Tom. "You don't have to get up, mornings, and you don't have to go to school, and wash, and all that blame foolishness. You see a pirate don't have to do ANYTHING, Joe, when he's ashore, but a hermit HE has to be praying considerable, and then he don't have any fun, anyway, all by himself that way." "Oh yes, that's so," said Joe, "but I hadn't thought much about it, you know. I'd a good deal rather be a pirate, now that I've tried it." "You see," said Tom, "people don't go much on hermits, nowadays, like they used to in old times, but a pirate's always respected. And a hermit's got to sleep on the hardest place he can find, and put sackcloth and ashes on his head, and stand out in the rain, and--" "What does he put sackcloth and ashes on his head for?" inquired Huck. "I dono. But they've GOT to do it. Hermits always do. You'd have to do that if you was a hermit." "Dern'd if I would," said Huck. "Well, what would you do?" "I dono. But I wouldn't do that." "Why, Huck, you'd HAVE to. How'd you get around it?" "Why, I just wouldn't stand it. I'd run away." "Run away! Well, you WOULD be a nice old slouch of a hermit. You'd be a disgrace." The Red-Handed made no response, being better employed. He had finished gouging out a cob, and now he fitted a weed stem to it, loaded it with tobacco, and was pressing a coal to the charge and blowing a cloud of fragrant smoke--he was in the full bloom of luxurious contentment. The other pirates envied him this majestic vice, and secretly resolved to acquire it shortly. Presently Huck said: "What does pirates have to do?" Tom said: "Oh, they have just a bully time--take ships and burn them, and get the money and bury it in awful places in their island where there's ghosts and things to watch it, and kill everybody in the ships--make 'em walk a plank." "And they carry the women to the island," said Joe; "they don't kill the women." "No," assented Tom, "they don't kill the women--they're too noble. And the women's always beautiful, too. "And don't they wear the bulliest clothes! Oh no! All gold and silver and di'monds," said Joe, with enthusiasm. "Who?" said Huck. "Why, the pirates." Huck scanned his own clothing forlornly. "I reckon I ain't dressed fitten for a pirate," said he, with a regretful pathos in his voice; "but I ain't got none but these." But the other boys told him the fine clothes would come fast enough, after they should have begun their adventures. They made him understand that his poor rags would do to begin with, though it was customary for wealthy pirates to start with a proper wardrobe. Gradually their talk died out and drowsiness began to steal upon the eyelids of the little waifs. The pipe dropped from the fingers of the Red-Handed, and he slept the sleep of the conscience-free and the weary. The Terror of the Seas and the Black Avenger of the Spanish Main had more difficulty in getting to sleep. They said their prayers inwardly, and lying down, since there was nobody there with authority to make them kneel and recite aloud; in truth, they had a mind not to say them at all, but they were afraid to proceed to such lengths as that, lest they might call down a sudden and special thunderbolt from heaven. Then at once they reached and hovered upon the imminent verge of sleep--but an intruder came, now, that would not "down." It was conscience. They began to feel a vague fear that they had been doing wrong to run away; and next they thought of the stolen meat, and then the real torture came. They tried to argue it away by reminding conscience that they had purloined sweetmeats and apples scores of times; but conscience was not to be appeased by such thin plausibilities; it seemed to them, in the end, that there was no getting around the stubborn fact that taking sweetmeats was only "hooking," while taking bacon and hams and such valuables was plain simple stealing--and there was a command against that in the Bible. So they inwardly resolved that so long as they remained in the business, their piracies should not again be sullied with the crime of stealing. Then conscience granted a truce, and these curiously inconsistent pirates fell peacefully to sleep. CHAPTER XIV WHEN Tom awoke in the morning, he wondered where he was. He sat up and rubbed his eyes and looked around. Then he comprehended. It was the cool gray dawn, and there was a delicious sense of repose and peace in the deep pervading calm and silence of the woods. Not a leaf stirred; not a sound obtruded upon great Nature's meditation. Beaded dewdrops stood upon the leaves and grasses. A white layer of ashes covered the fire, and a thin blue breath of smoke rose straight into the air. Joe and Huck still slept. Now, far away in the woods a bird called; another answered; presently the hammering of a woodpecker was heard. Gradually the cool dim gray of the morning whitened, and as gradually sounds multiplied and life manifested itself. The marvel of Nature shaking off sleep and going to work unfolded itself to the musing boy. A little green worm came crawling over a dewy leaf, lifting two-thirds of his body into the air from time to time and "sniffing around," then proceeding again--for he was measuring, Tom said; and when the worm approached him, of its own accord, he sat as still as a stone, with his hopes rising and falling, by turns, as the creature still came toward him or seemed inclined to go elsewhere; and when at last it considered a painful moment with its curved body in the air and then came decisively down upon Tom's leg and began a journey over him, his whole heart was glad--for that meant that he was going to have a new suit of clothes--without the shadow of a doubt a gaudy piratical uniform. Now a procession of ants appeared, from nowhere in particular, and went about their labors; one struggled manfully by with a dead spider five times as big as itself in its arms, and lugged it straight up a tree-trunk. A brown spotted lady-bug climbed the dizzy height of a grass blade, and Tom bent down close to it and said, "Lady-bug, lady-bug, fly away home, your house is on fire, your children's alone," and she took wing and went off to see about it --which did not surprise the boy, for he knew of old that this insect was credulous about conflagrations, and he had practised upon its simplicity more than once. A tumblebug came next, heaving sturdily at its ball, and Tom touched the creature, to see it shut its legs against its body and pretend to be dead. The birds were fairly rioting by this time. A catbird, the Northern mocker, lit in a tree over Tom's head, and trilled out her imitations of her neighbors in a rapture of enjoyment; then a shrill jay swept down, a flash of blue flame, and stopped on a twig almost within the boy's reach, cocked his head to one side and eyed the strangers with a consuming curiosity; a gray squirrel and a big fellow of the "fox" kind came skurrying along, sitting up at intervals to inspect and chatter at the boys, for the wild things had probably never seen a human being before and scarcely knew whether to be afraid or not. All Nature was wide awake and stirring, now; long lances of sunlight pierced down through the dense foliage far and near, and a few butterflies came fluttering upon the scene. Tom stirred up the other pirates and they all clattered away with a shout, and in a minute or two were stripped and chasing after and tumbling over each other in the shallow limpid water of the white sandbar. They felt no longing for the little village sleeping in the distance beyond the majestic waste of water. A vagrant current or a slight rise in the river had carried off their raft, but this only gratified them, since its going was something like burning the bridge between them and civilization. They came back to camp wonderfully refreshed, glad-hearted, and ravenous; and they soon had the camp-fire blazing up again. Huck found a spring of clear cold water close by, and the boys made cups of broad oak or hickory leaves, and felt that water, sweetened with such a wildwood charm as that, would be a good enough substitute for coffee. While Joe was slicing bacon for breakfast, Tom and Huck asked him to hold on a minute; they stepped to a promising nook in the river-bank and threw in their lines; almost immediately they had reward. Joe had not had time to get impatient before they were back again with some handsome bass, a couple of sun-perch and a small catfish--provisions enough for quite a family. They fried the fish with the bacon, and were astonished; for no fish had ever seemed so delicious before. They did not know that the quicker a fresh-water fish is on the fire after he is caught the better he is; and they reflected little upon what a sauce open-air sleeping, open-air exercise, bathing, and a large ingredient of hunger make, too. They lay around in the shade, after breakfast, while Huck had a smoke, and then went off through the woods on an exploring expedition. They tramped gayly along, over decaying logs, through tangled underbrush, among solemn monarchs of the forest, hung from their crowns to the ground with a drooping regalia of grape-vines. Now and then they came upon snug nooks carpeted with grass and jeweled with flowers. They found plenty of things to be delighted with, but nothing to be astonished at. They discovered that the island was about three miles long and a quarter of a mile wide, and that the shore it lay closest to was only separated from it by a narrow channel hardly two hundred yards wide. They took a swim about every hour, so it was close upon the middle of the afternoon when they got back to camp. They were too hungry to stop to fish, but they fared sumptuously upon cold ham, and then threw themselves down in the shade to talk. But the talk soon began to drag, and then died. The stillness, the solemnity that brooded in the woods, and the sense of loneliness, began to tell upon the spirits of the boys. They fell to thinking. A sort of undefined longing crept upon them. This took dim shape, presently--it was budding homesickness. Even Finn the Red-Handed was dreaming of his doorsteps and empty hogsheads. But they were all ashamed of their weakness, and none was brave enough to speak his thought. For some time, now, the boys had been dully conscious of a peculiar sound in the distance, just as one sometimes is of the ticking of a clock which he takes no distinct note of. But now this mysterious sound became more pronounced, and forced a recognition. The boys started, glanced at each other, and then each assumed a listening attitude. There was a long silence, profound and unbroken; then a deep, sullen boom came floating down out of the distance. "What is it!" exclaimed Joe, under his breath. "I wonder," said Tom in a whisper. "'Tain't thunder," said Huckleberry, in an awed tone, "becuz thunder--" "Hark!" said Tom. "Listen--don't talk." They waited a time that seemed an age, and then the same muffled boom troubled the solemn hush. "Let's go and see." They sprang to their feet and hurried to the shore toward the town. They parted the bushes on the bank and peered out over the water. The little steam ferryboat was about a mile below the village, drifting with the current. Her broad deck seemed crowded with people. There were a great many skiffs rowing about or floating with the stream in the neighborhood of the ferryboat, but the boys could not determine what the men in them were doing. Presently a great jet of white smoke burst from the ferryboat's side, and as it expanded and rose in a lazy cloud, that same dull throb of sound was borne to the listeners again. "I know now!" exclaimed Tom; "somebody's drownded!" "That's it!" said Huck; "they done that last summer, when Bill Turner got drownded; they shoot a cannon over the water, and that makes him come up to the top. Yes, and they take loaves of bread and put quicksilver in 'em and set 'em afloat, and wherever there's anybody that's drownded, they'll float right there and stop." "Yes, I've heard about that," said Joe. "I wonder what makes the bread do that." "Oh, it ain't the bread, so much," said Tom; "I reckon it's mostly what they SAY over it before they start it out." "But they don't say anything over it," said Huck. "I've seen 'em and they don't." "Well, that's funny," said Tom. "But maybe they say it to themselves. Of COURSE they do. Anybody might know that." The other boys agreed that there was reason in what Tom said, because an ignorant lump of bread, uninstructed by an incantation, could not be expected to act very intelligently when set upon an errand of such gravity. "By jings, I wish I was over there, now," said Joe. "I do too" said Huck "I'd give heaps to know who it is." The boys still listened and watched. Presently a revealing thought flashed through Tom's mind, and he exclaimed: "Boys, I know who's drownded--it's us!" They felt like heroes in an instant. Here was a gorgeous triumph; they were missed; they were mourned; hearts were breaking on their account; tears were being shed; accusing memories of unkindness to these poor lost lads were rising up, and unavailing regrets and remorse were being indulged; and best of all, the departed were the talk of the whole town, and the envy of all the boys, as far as this dazzling notoriety was concerned. This was fine. It was worth while to be a pirate, after all. As twilight drew on, the ferryboat went back to her accustomed business and the skiffs disappeared. The pirates returned to camp. They were jubilant with vanity over their new grandeur and the illustrious trouble they were making. They caught fish, cooked supper and ate it, and then fell to guessing at what the village was thinking and saying about them; and the pictures they drew of the public distress on their account were gratifying to look upon--from their point of view. But when the shadows of night closed them in, they gradually ceased to talk, and sat gazing into the fire, with their minds evidently wandering elsewhere. The excitement was gone, now, and Tom and Joe could not keep back thoughts of certain persons at home who were not enjoying this fine frolic as much as they were. Misgivings came; they grew troubled and unhappy; a sigh or two escaped, unawares. By and by Joe timidly ventured upon a roundabout "feeler" as to how the others might look upon a return to civilization--not right now, but-- Tom withered him with derision! Huck, being uncommitted as yet, joined in with Tom, and the waverer quickly "explained," and was glad to get out of the scrape with as little taint of chicken-hearted homesickness clinging to his garments as he could. Mutiny was effectually laid to rest for the moment. As the night deepened, Huck began to nod, and presently to snore. Joe followed next. Tom lay upon his elbow motionless, for some time, watching the two intently. At last he got up cautiously, on his knees, and went searching among the grass and the flickering reflections flung by the camp-fire. He picked up and inspected several large semi-cylinders of the thin white bark of a sycamore, and finally chose two which seemed to suit him. Then he knelt by the fire and painfully wrote something upon each of these with his "red keel"; one he rolled up and put in his jacket pocket, and the other he put in Joe's hat and removed it to a little distance from the owner. And he also put into the hat certain schoolboy treasures of almost inestimable value--among them a lump of chalk, an India-rubber ball, three fishhooks, and one of that kind of marbles known as a "sure 'nough crystal." Then he tiptoed his way cautiously among the trees till he felt that he was out of hearing, and straightway broke into a keen run in the direction of the sandbar. CHAPTER XV A FEW minutes later Tom was in the shoal water of the bar, wading toward the Illinois shore. Before the depth reached his middle he was half-way over; the current would permit no more wading, now, so he struck out confidently to swim the remaining hundred yards. He swam quartering upstream, but still was swept downward rather faster than he had expected. However, he reached the shore finally, and drifted along till he found a low place and drew himself out. He put his hand on his jacket pocket, found his piece of bark safe, and then struck through the woods, following the shore, with streaming garments. Shortly before ten o'clock he came out into an open place opposite the village, and saw the ferryboat lying in the shadow of the trees and the high bank. Everything was quiet under the blinking stars. He crept down the bank, watching with all his eyes, slipped into the water, swam three or four strokes and climbed into the skiff that did "yawl" duty at the boat's stern. He laid himself down under the thwarts and waited, panting. Presently the cracked bell tapped and a voice gave the order to "cast off." A minute or two later the skiff's head was standing high up, against the boat's swell, and the voyage was begun. Tom felt happy in his success, for he knew it was the boat's last trip for the night. At the end of a long twelve or fifteen minutes the wheels stopped, and Tom slipped overboard and swam ashore in the dusk, landing fifty yards downstream, out of danger of possible stragglers. He flew along unfrequented alleys, and shortly found himself at his aunt's back fence. He climbed over, approached the "ell," and looked in at the sitting-room window, for a light was burning there. There sat Aunt Polly, Sid, Mary, and Joe Harper's mother, grouped together, talking. They were by the bed, and the bed was between them and the door. Tom went to the door and began to softly lift the latch; then he pressed gently and the door yielded a crack; he continued pushing cautiously, and quaking every time it creaked, till he judged he might squeeze through on his knees; so he put his head through and began, warily. "What makes the candle blow so?" said Aunt Polly. Tom hurried up. "Why, that door's open, I believe. Why, of course it is. No end of strange things now. Go 'long and shut it, Sid." Tom disappeared under the bed just in time. He lay and "breathed" himself for a time, and then crept to where he could almost touch his aunt's foot. "But as I was saying," said Aunt Polly, "he warn't BAD, so to say --only mischEEvous. Only just giddy, and harum-scarum, you know. He warn't any more responsible than a colt. HE never meant any harm, and he was the best-hearted boy that ever was"--and she began to cry. "It was just so with my Joe--always full of his devilment, and up to every kind of mischief, but he was just as unselfish and kind as he could be--and laws bless me, to think I went and whipped him for taking that cream, never once recollecting that I throwed it out myself because it was sour, and I never to see him again in this world, never, never, never, poor abused boy!" And Mrs. Harper sobbed as if her heart would break. "I hope Tom's better off where he is," said Sid, "but if he'd been better in some ways--" "SID!" Tom felt the glare of the old lady's eye, though he could not see it. "Not a word against my Tom, now that he's gone! God'll take care of HIM--never you trouble YOURself, sir! Oh, Mrs. Harper, I don't know how to give him up! I don't know how to give him up! He was such a comfort to me, although he tormented my old heart out of me, 'most." "The Lord giveth and the Lord hath taken away--Blessed be the name of the Lord! But it's so hard--Oh, it's so hard! Only last Saturday my Joe busted a firecracker right under my nose and I knocked him sprawling. Little did I know then, how soon--Oh, if it was to do over again I'd hug him and bless him for it." "Yes, yes, yes, I know just how you feel, Mrs. Harper, I know just exactly how you feel. No longer ago than yesterday noon, my Tom took and filled the cat full of Pain-killer, and I did think the cretur would tear the house down. And God forgive me, I cracked Tom's head with my thimble, poor boy, poor dead boy. But he's out of all his troubles now. And the last words I ever heard him say was to reproach--" But this memory was too much for the old lady, and she broke entirely down. Tom was snuffling, now, himself--and more in pity of himself than anybody else. He could hear Mary crying, and putting in a kindly word for him from time to time. He began to have a nobler opinion of himself than ever before. Still, he was sufficiently touched by his aunt's grief to long to rush out from under the bed and overwhelm her with joy--and the theatrical gorgeousness of the thing appealed strongly to his nature, too, but he resisted and lay still. He went on listening, and gathered by odds and ends that it was conjectured at first that the boys had got drowned while taking a swim; then the small raft had been missed; next, certain boys said the missing lads had promised that the village should "hear something" soon; the wise-heads had "put this and that together" and decided that the lads had gone off on that raft and would turn up at the next town below, presently; but toward noon the raft had been found, lodged against the Missouri shore some five or six miles below the village --and then hope perished; they must be drowned, else hunger would have driven them home by nightfall if not sooner. It was believed that the search for the bodies had been a fruitless effort merely because the drowning must have occurred in mid-channel, since the boys, being good swimmers, would otherwise have escaped to shore. This was Wednesday night. If the bodies continued missing until Sunday, all hope would be given over, and the funerals would be preached on that morning. Tom shuddered. Mrs. Harper gave a sobbing good-night and turned to go. Then with a mutual impulse the two bereaved women flung themselves into each other's arms and had a good, consoling cry, and then parted. Aunt Polly was tender far beyond her wont, in her good-night to Sid and Mary. Sid snuffled a bit and Mary went off crying with all her heart. Aunt Polly knelt down and prayed for Tom so touchingly, so appealingly, and with such measureless love in her words and her old trembling voice, that he was weltering in tears again, long before she was through. He had to keep still long after she went to bed, for she kept making broken-hearted ejaculations from time to time, tossing unrestfully, and turning over. But at last she was still, only moaning a little in her sleep. Now the boy stole out, rose gradually by the bedside, shaded the candle-light with his hand, and stood regarding her. His heart was full of pity for her. He took out his sycamore scroll and placed it by the candle. But something occurred to him, and he lingered considering. His face lighted with a happy solution of his thought; he put the bark hastily in his pocket. Then he bent over and kissed the faded lips, and straightway made his stealthy exit, latching the door behind him. He threaded his way back to the ferry landing, found nobody at large there, and walked boldly on board the boat, for he knew she was tenantless except that there was a watchman, who always turned in and slept like a graven image. He untied the skiff at the stern, slipped into it, and was soon rowing cautiously upstream. When he had pulled a mile above the village, he started quartering across and bent himself stoutly to his work. He hit the landing on the other side neatly, for this was a familiar bit of work to him. He was moved to capture the skiff, arguing that it might be considered a ship and therefore legitimate prey for a pirate, but he knew a thorough search would be made for it and that might end in revelations. So he stepped ashore and entered the woods. He sat down and took a long rest, torturing himself meanwhile to keep awake, and then started warily down the home-stretch. The night was far spent. It was broad daylight before he found himself fairly abreast the island bar. He rested again until the sun was well up and gilding the great river with its splendor, and then he plunged into the stream. A little later he paused, dripping, upon the threshold of the camp, and heard Joe say: "No, Tom's true-blue, Huck, and he'll come back. He won't desert. He knows that would be a disgrace to a pirate, and Tom's too proud for that sort of thing. He's up to something or other. Now I wonder what?" "Well, the things is ours, anyway, ain't they?" "Pretty near, but not yet, Huck. The writing says they are if he ain't back here to breakfast." "Which he is!" exclaimed Tom, with fine dramatic effect, stepping grandly into camp. A sumptuous breakfast of bacon and fish was shortly provided, and as the boys set to work upon it, Tom recounted (and adorned) his adventures. They were a vain and boastful company of heroes when the tale was done. Then Tom hid himself away in a shady nook to sleep till noon, and the other pirates got ready to fish and explore. CHAPTER XVI AFTER dinner all the gang turned out to hunt for turtle eggs on the bar. They went about poking sticks into the sand, and when they found a soft place they went down on their knees and dug with their hands. Sometimes they would take fifty or sixty eggs out of one hole. They were perfectly round white things a trifle smaller than an English walnut. They had a famous fried-egg feast that night, and another on Friday morning. After breakfast they went whooping and prancing out on the bar, and chased each other round and round, shedding clothes as they went, until they were naked, and then continued the frolic far away up the shoal water of the bar, against the stiff current, which latter tripped their legs from under them from time to time and greatly increased the fun. And now and then they stooped in a group and splashed water in each other's faces with their palms, gradually approaching each other, with averted faces to avoid the strangling sprays, and finally gripping and struggling till the best man ducked his neighbor, and then they all went under in a tangle of white legs and arms and came up blowing, sputtering, laughing, and gasping for breath at one and the same time. When they were well exhausted, they would run out and sprawl on the dry, hot sand, and lie there and cover themselves up with it, and by and by break for the water again and go through the original performance once more. Finally it occurred to them that their naked skin represented flesh-colored "tights" very fairly; so they drew a ring in the sand and had a circus--with three clowns in it, for none would yield this proudest post to his neighbor. Next they got their marbles and played "knucks" and "ring-taw" and "keeps" till that amusement grew stale. Then Joe and Huck had another swim, but Tom would not venture, because he found that in kicking off his trousers he had kicked his string of rattlesnake rattles off his ankle, and he wondered how he had escaped cramp so long without the protection of this mysterious charm. He did not venture again until he had found it, and by that time the other boys were tired and ready to rest. They gradually wandered apart, dropped into the "dumps," and fell to gazing longingly across the wide river to where the village lay drowsing in the sun. Tom found himself writing "BECKY" in the sand with his big toe; he scratched it out, and was angry with himself for his weakness. But he wrote it again, nevertheless; he could not help it. He erased it once more and then took himself out of temptation by driving the other boys together and joining them. But Joe's spirits had gone down almost beyond resurrection. He was so homesick that he could hardly endure the misery of it. The tears lay very near the surface. Huck was melancholy, too. Tom was downhearted, but tried hard not to show it. He had a secret which he was not ready to tell, yet, but if this mutinous depression was not broken up soon, he would have to bring it out. He said, with a great show of cheerfulness: "I bet there's been pirates on this island before, boys. We'll explore it again. They've hid treasures here somewhere. How'd you feel to light on a rotten chest full of gold and silver--hey?" But it roused only faint enthusiasm, which faded out, with no reply. Tom tried one or two other seductions; but they failed, too. It was discouraging work. Joe sat poking up the sand with a stick and looking very gloomy. Finally he said: "Oh, boys, let's give it up. I want to go home. It's so lonesome." "Oh no, Joe, you'll feel better by and by," said Tom. "Just think of the fishing that's here." "I don't care for fishing. I want to go home." "But, Joe, there ain't such another swimming-place anywhere." "Swimming's no good. I don't seem to care for it, somehow, when there ain't anybody to say I sha'n't go in. I mean to go home." "Oh, shucks! Baby! You want to see your mother, I reckon." "Yes, I DO want to see my mother--and you would, too, if you had one. I ain't any more baby than you are." And Joe snuffled a little. "Well, we'll let the cry-baby go home to his mother, won't we, Huck? Poor thing--does it want to see its mother? And so it shall. You like it here, don't you, Huck? We'll stay, won't we?" Huck said, "Y-e-s"--without any heart in it. "I'll never speak to you again as long as I live," said Joe, rising. "There now!" And he moved moodily away and began to dress himself. "Who cares!" said Tom. "Nobody wants you to. Go 'long home and get laughed at. Oh, you're a nice pirate. Huck and me ain't cry-babies. We'll stay, won't we, Huck? Let him go if he wants to. I reckon we can get along without him, per'aps." But Tom was uneasy, nevertheless, and was alarmed to see Joe go sullenly on with his dressing. And then it was discomforting to see Huck eying Joe's preparations so wistfully, and keeping up such an ominous silence. Presently, without a parting word, Joe began to wade off toward the Illinois shore. Tom's heart began to sink. He glanced at Huck. Huck could not bear the look, and dropped his eyes. Then he said: "I want to go, too, Tom. It was getting so lonesome anyway, and now it'll be worse. Let's us go, too, Tom." "I won't! You can all go, if you want to. I mean to stay." "Tom, I better go." "Well, go 'long--who's hendering you." Huck began to pick up his scattered clothes. He said: "Tom, I wisht you'd come, too. Now you think it over. We'll wait for you when we get to shore." "Well, you'll wait a blame long time, that's all." Huck started sorrowfully away, and Tom stood looking after him, with a strong desire tugging at his heart to yield his pride and go along too. He hoped the boys would stop, but they still waded slowly on. It suddenly dawned on Tom that it was become very lonely and still. He made one final struggle with his pride, and then darted after his comrades, yelling: "Wait! Wait! I want to tell you something!" They presently stopped and turned around. When he got to where they were, he began unfolding his secret, and they listened moodily till at last they saw the "point" he was driving at, and then they set up a war-whoop of applause and said it was "splendid!" and said if he had told them at first, they wouldn't have started away. He made a plausible excuse; but his real reason had been the fear that not even the secret would keep them with him any very great length of time, and so he had meant to hold it in reserve as a last seduction. The lads came gayly back and went at their sports again with a will, chattering all the time about Tom's stupendous plan and admiring the genius of it. After a dainty egg and fish dinner, Tom said he wanted to learn to smoke, now. Joe caught at the idea and said he would like to try, too. So Huck made pipes and filled them. These novices had never smoked anything before but cigars made of grape-vine, and they "bit" the tongue, and were not considered manly anyway. Now they stretched themselves out on their elbows and began to puff, charily, and with slender confidence. The smoke had an unpleasant taste, and they gagged a little, but Tom said: "Why, it's just as easy! If I'd a knowed this was all, I'd a learnt long ago." "So would I," said Joe. "It's just nothing." "Why, many a time I've looked at people smoking, and thought well I wish I could do that; but I never thought I could," said Tom. "That's just the way with me, hain't it, Huck? You've heard me talk just that way--haven't you, Huck? I'll leave it to Huck if I haven't." "Yes--heaps of times," said Huck. "Well, I have too," said Tom; "oh, hundreds of times. Once down by the slaughter-house. Don't you remember, Huck? Bob Tanner was there, and Johnny Miller, and Jeff Thatcher, when I said it. Don't you remember, Huck, 'bout me saying that?" "Yes, that's so," said Huck. "That was the day after I lost a white alley. No, 'twas the day before." "There--I told you so," said Tom. "Huck recollects it." "I bleeve I could smoke this pipe all day," said Joe. "I don't feel sick." "Neither do I," said Tom. "I could smoke it all day. But I bet you Jeff Thatcher couldn't." "Jeff Thatcher! Why, he'd keel over just with two draws. Just let him try it once. HE'D see!" "I bet he would. And Johnny Miller--I wish could see Johnny Miller tackle it once." "Oh, don't I!" said Joe. "Why, I bet you Johnny Miller couldn't any more do this than nothing. Just one little snifter would fetch HIM." "'Deed it would, Joe. Say--I wish the boys could see us now." "So do I." "Say--boys, don't say anything about it, and some time when they're around, I'll come up to you and say, 'Joe, got a pipe? I want a smoke.' And you'll say, kind of careless like, as if it warn't anything, you'll say, 'Yes, I got my OLD pipe, and another one, but my tobacker ain't very good.' And I'll say, 'Oh, that's all right, if it's STRONG enough.' And then you'll out with the pipes, and we'll light up just as ca'm, and then just see 'em look!" "By jings, that'll be gay, Tom! I wish it was NOW!" "So do I! And when we tell 'em we learned when we was off pirating, won't they wish they'd been along?" "Oh, I reckon not! I'll just BET they will!" So the talk ran on. But presently it began to flag a trifle, and grow disjointed. The silences widened; the expectoration marvellously increased. Every pore inside the boys' cheeks became a spouting fountain; they could scarcely bail out the cellars under their tongues fast enough to prevent an inundation; little overflowings down their throats occurred in spite of all they could do, and sudden retchings followed every time. Both boys were looking very pale and miserable, now. Joe's pipe dropped from his nerveless fingers. Tom's followed. Both fountains were going furiously and both pumps bailing with might and main. Joe said feebly: "I've lost my knife. I reckon I better go and find it." Tom said, with quivering lips and halting utterance: "I'll help you. You go over that way and I'll hunt around by the spring. No, you needn't come, Huck--we can find it." So Huck sat down again, and waited an hour. Then he found it lonesome, and went to find his comrades. They were wide apart in the woods, both very pale, both fast asleep. But something informed him that if they had had any trouble they had got rid of it. They were not talkative at supper that night. They had a humble look, and when Huck prepared his pipe after the meal and was going to prepare theirs, they said no, they were not feeling very well--something they ate at dinner had disagreed with them. About midnight Joe awoke, and called the boys. There was a brooding oppressiveness in the air that seemed to bode something. The boys huddled themselves together and sought the friendly companionship of the fire, though the dull dead heat of the breathless atmosphere was stifling. They sat still, intent and waiting. The solemn hush continued. Beyond the light of the fire everything was swallowed up in the blackness of darkness. Presently there came a quivering glow that vaguely revealed the foliage for a moment and then vanished. By and by another came, a little stronger. Then another. Then a faint moan came sighing through the branches of the forest and the boys felt a fleeting breath upon their cheeks, and shuddered with the fancy that the Spirit of the Night had gone by. There was a pause. Now a weird flash turned night into day and showed every little grass-blade, separate and distinct, that grew about their feet. And it showed three white, startled faces, too. A deep peal of thunder went rolling and tumbling down the heavens and lost itself in sullen rumblings in the distance. A sweep of chilly air passed by, rustling all the leaves and snowing the flaky ashes broadcast about the fire. Another fierce glare lit up the forest and an instant crash followed that seemed to rend the tree-tops right over the boys' heads. They clung together in terror, in the thick gloom that followed. A few big rain-drops fell pattering upon the leaves. "Quick! boys, go for the tent!" exclaimed Tom. They sprang away, stumbling over roots and among vines in the dark, no two plunging in the same direction. A furious blast roared through the trees, making everything sing as it went. One blinding flash after another came, and peal on peal of deafening thunder. And now a drenching rain poured down and the rising hurricane drove it in sheets along the ground. The boys cried out to each other, but the roaring wind and the booming thunder-blasts drowned their voices utterly. However, one by one they straggled in at last and took shelter under the tent, cold, scared, and streaming with water; but to have company in misery seemed something to be grateful for. They could not talk, the old sail flapped so furiously, even if the other noises would have allowed them. The tempest rose higher and higher, and presently the sail tore loose from its fastenings and went winging away on the blast. The boys seized each others' hands and fled, with many tumblings and bruises, to the shelter of a great oak that stood upon the river-bank. Now the battle was at its highest. Under the ceaseless conflagration of lightning that flamed in the skies, everything below stood out in clean-cut and shadowless distinctness: the bending trees, the billowy river, white with foam, the driving spray of spume-flakes, the dim outlines of the high bluffs on the other side, glimpsed through the drifting cloud-rack and the slanting veil of rain. Every little while some giant tree yielded the fight and fell crashing through the younger growth; and the unflagging thunder-peals came now in ear-splitting explosive bursts, keen and sharp, and unspeakably appalling. The storm culminated in one matchless effort that seemed likely to tear the island to pieces, burn it up, drown it to the tree-tops, blow it away, and deafen every creature in it, all at one and the same moment. It was a wild night for homeless young heads to be out in. But at last the battle was done, and the forces retired with weaker and weaker threatenings and grumblings, and peace resumed her sway. The boys went back to camp, a good deal awed; but they found there was still something to be thankful for, because the great sycamore, the shelter of their beds, was a ruin, now, blasted by the lightnings, and they were not under it when the catastrophe happened. Everything in camp was drenched, the camp-fire as well; for they were but heedless lads, like their generation, and had made no provision against rain. Here was matter for dismay, for they were soaked through and chilled. They were eloquent in their distress; but they presently discovered that the fire had eaten so far up under the great log it had been built against (where it curved upward and separated itself from the ground), that a handbreadth or so of it had escaped wetting; so they patiently wrought until, with shreds and bark gathered from the under sides of sheltered logs, they coaxed the fire to burn again. Then they piled on great dead boughs till they had a roaring furnace, and were glad-hearted once more. They dried their boiled ham and had a feast, and after that they sat by the fire and expanded and glorified their midnight adventure until morning, for there was not a dry spot to sleep on, anywhere around. As the sun began to steal in upon the boys, drowsiness came over them, and they went out on the sandbar and lay down to sleep. They got scorched out by and by, and drearily set about getting breakfast. After the meal they felt rusty, and stiff-jointed, and a little homesick once more. Tom saw the signs, and fell to cheering up the pirates as well as he could. But they cared nothing for marbles, or circus, or swimming, or anything. He reminded them of the imposing secret, and raised a ray of cheer. While it lasted, he got them interested in a new device. This was to knock off being pirates, for a while, and be Indians for a change. They were attracted by this idea; so it was not long before they were stripped, and striped from head to heel with black mud, like so many zebras--all of them chiefs, of course--and then they went tearing through the woods to attack an English settlement. By and by they separated into three hostile tribes, and darted upon each other from ambush with dreadful war-whoops, and killed and scalped each other by thousands. It was a gory day. Consequently it was an extremely satisfactory one. They assembled in camp toward supper-time, hungry and happy; but now a difficulty arose--hostile Indians could not break the bread of hospitality together without first making peace, and this was a simple impossibility without smoking a pipe of peace. There was no other process that ever they had heard of. Two of the savages almost wished they had remained pirates. However, there was no other way; so with such show of cheerfulness as they could muster they called for the pipe and took their whiff as it passed, in due form. And behold, they were glad they had gone into savagery, for they had gained something; they found that they could now smoke a little without having to go and hunt for a lost knife; they did not get sick enough to be seriously uncomfortable. They were not likely to fool away this high promise for lack of effort. No, they practised cautiously, after supper, with right fair success, and so they spent a jubilant evening. They were prouder and happier in their new acquirement than they would have been in the scalping and skinning of the Six Nations. We will leave them to smoke and chatter and brag, since we have no further use for them at present. CHAPTER XVII BUT there was no hilarity in the little town that same tranquil Saturday afternoon. The Harpers, and Aunt Polly's family, were being put into mourning, with great grief and many tears. An unusual quiet possessed the village, although it was ordinarily quiet enough, in all conscience. The villagers conducted their concerns with an absent air, and talked little; but they sighed often. The Saturday holiday seemed a burden to the children. They had no heart in their sports, and gradually gave them up. In the afternoon Becky Thatcher found herself moping about the deserted schoolhouse yard, and feeling very melancholy. But she found nothing there to comfort her. She soliloquized: "Oh, if I only had a brass andiron-knob again! But I haven't got anything now to remember him by." And she choked back a little sob. Presently she stopped, and said to herself: "It was right here. Oh, if it was to do over again, I wouldn't say that--I wouldn't say it for the whole world. But he's gone now; I'll never, never, never see him any more." This thought broke her down, and she wandered away, with tears rolling down her cheeks. Then quite a group of boys and girls--playmates of Tom's and Joe's--came by, and stood looking over the paling fence and talking in reverent tones of how Tom did so-and-so the last time they saw him, and how Joe said this and that small trifle (pregnant with awful prophecy, as they could easily see now!)--and each speaker pointed out the exact spot where the lost lads stood at the time, and then added something like "and I was a-standing just so--just as I am now, and as if you was him--I was as close as that--and he smiled, just this way--and then something seemed to go all over me, like--awful, you know--and I never thought what it meant, of course, but I can see now!" Then there was a dispute about who saw the dead boys last in life, and many claimed that dismal distinction, and offered evidences, more or less tampered with by the witness; and when it was ultimately decided who DID see the departed last, and exchanged the last words with them, the lucky parties took upon themselves a sort of sacred importance, and were gaped at and envied by all the rest. One poor chap, who had no other grandeur to offer, said with tolerably manifest pride in the remembrance: "Well, Tom Sawyer he licked me once." But that bid for glory was a failure. Most of the boys could say that, and so that cheapened the distinction too much. The group loitered away, still recalling memories of the lost heroes, in awed voices. When the Sunday-school hour was finished, the next morning, the bell began to toll, instead of ringing in the usual way. It was a very still Sabbath, and the mournful sound seemed in keeping with the musing hush that lay upon nature. The villagers began to gather, loitering a moment in the vestibule to converse in whispers about the sad event. But there was no whispering in the house; only the funereal rustling of dresses as the women gathered to their seats disturbed the silence there. None could remember when the little church had been so full before. There was finally a waiting pause, an expectant dumbness, and then Aunt Polly entered, followed by Sid and Mary, and they by the Harper family, all in deep black, and the whole congregation, the old minister as well, rose reverently and stood until the mourners were seated in the front pew. There was another communing silence, broken at intervals by muffled sobs, and then the minister spread his hands abroad and prayed. A moving hymn was sung, and the text followed: "I am the Resurrection and the Life." As the service proceeded, the clergyman drew such pictures of the graces, the winning ways, and the rare promise of the lost lads that every soul there, thinking he recognized these pictures, felt a pang in remembering that he had persistently blinded himself to them always before, and had as persistently seen only faults and flaws in the poor boys. The minister related many a touching incident in the lives of the departed, too, which illustrated their sweet, generous natures, and the people could easily see, now, how noble and beautiful those episodes were, and remembered with grief that at the time they occurred they had seemed rank rascalities, well deserving of the cowhide. The congregation became more and more moved, as the pathetic tale went on, till at last the whole company broke down and joined the weeping mourners in a chorus of anguished sobs, the preacher himself giving way to his feelings, and crying in the pulpit. There was a rustle in the gallery, which nobody noticed; a moment later the church door creaked; the minister raised his streaming eyes above his handkerchief, and stood transfixed! First one and then another pair of eyes followed the minister's, and then almost with one impulse the congregation rose and stared while the three dead boys came marching up the aisle, Tom in the lead, Joe next, and Huck, a ruin of drooping rags, sneaking sheepishly in the rear! They had been hid in the unused gallery listening to their own funeral sermon! Aunt Polly, Mary, and the Harpers threw themselves upon their restored ones, smothered them with kisses and poured out thanksgivings, while poor Huck stood abashed and uncomfortable, not knowing exactly what to do or where to hide from so many unwelcoming eyes. He wavered, and started to slink away, but Tom seized him and said: "Aunt Polly, it ain't fair. Somebody's got to be glad to see Huck." "And so they shall. I'm glad to see him, poor motherless thing!" And the loving attentions Aunt Polly lavished upon him were the one thing capable of making him more uncomfortable than he was before. Suddenly the minister shouted at the top of his voice: "Praise God from whom all blessings flow--SING!--and put your hearts in it!" And they did. Old Hundred swelled up with a triumphant burst, and while it shook the rafters Tom Sawyer the Pirate looked around upon the envying juveniles about him and confessed in his heart that this was the proudest moment of his life. As the "sold" congregation trooped out they said they would almost be willing to be made ridiculous again to hear Old Hundred sung like that once more. Tom got more cuffs and kisses that day--according to Aunt Polly's varying moods--than he had earned before in a year; and he hardly knew which expressed the most gratefulness to God and affection for himself. CHAPTER XVIII THAT was Tom's great secret--the scheme to return home with his brother pirates and attend their own funerals. They had paddled over to the Missouri shore on a log, at dusk on Saturday, landing five or six miles below the village; they had slept in the woods at the edge of the town till nearly daylight, and had then crept through back lanes and alleys and finished their sleep in the gallery of the church among a chaos of invalided benches. At breakfast, Monday morning, Aunt Polly and Mary were very loving to Tom, and very attentive to his wants. There was an unusual amount of talk. In the course of it Aunt Polly said: "Well, I don't say it wasn't a fine joke, Tom, to keep everybody suffering 'most a week so you boys had a good time, but it is a pity you could be so hard-hearted as to let me suffer so. If you could come over on a log to go to your funeral, you could have come over and give me a hint some way that you warn't dead, but only run off." "Yes, you could have done that, Tom," said Mary; "and I believe you would if you had thought of it." "Would you, Tom?" said Aunt Polly, her face lighting wistfully. "Say, now, would you, if you'd thought of it?" "I--well, I don't know. 'Twould 'a' spoiled everything." "Tom, I hoped you loved me that much," said Aunt Polly, with a grieved tone that discomforted the boy. "It would have been something if you'd cared enough to THINK of it, even if you didn't DO it." "Now, auntie, that ain't any harm," pleaded Mary; "it's only Tom's giddy way--he is always in such a rush that he never thinks of anything." "More's the pity. Sid would have thought. And Sid would have come and DONE it, too. Tom, you'll look back, some day, when it's too late, and wish you'd cared a little more for me when it would have cost you so little." "Now, auntie, you know I do care for you," said Tom. "I'd know it better if you acted more like it." "I wish now I'd thought," said Tom, with a repentant tone; "but I dreamt about you, anyway. That's something, ain't it?" "It ain't much--a cat does that much--but it's better than nothing. What did you dream?" "Why, Wednesday night I dreamt that you was sitting over there by the bed, and Sid was sitting by the woodbox, and Mary next to him." "Well, so we did. So we always do. I'm glad your dreams could take even that much trouble about us." "And I dreamt that Joe Harper's mother was here." "Why, she was here! Did you dream any more?" "Oh, lots. But it's so dim, now." "Well, try to recollect--can't you?" "Somehow it seems to me that the wind--the wind blowed the--the--" "Try harder, Tom! The wind did blow something. Come!" Tom pressed his fingers on his forehead an anxious minute, and then said: "I've got it now! I've got it now! It blowed the candle!" "Mercy on us! Go on, Tom--go on!" "And it seems to me that you said, 'Why, I believe that that door--'" "Go ON, Tom!" "Just let me study a moment--just a moment. Oh, yes--you said you believed the door was open." "As I'm sitting here, I did! Didn't I, Mary! Go on!" "And then--and then--well I won't be certain, but it seems like as if you made Sid go and--and--" "Well? Well? What did I make him do, Tom? What did I make him do?" "You made him--you--Oh, you made him shut it." "Well, for the land's sake! I never heard the beat of that in all my days! Don't tell ME there ain't anything in dreams, any more. Sereny Harper shall know of this before I'm an hour older. I'd like to see her get around THIS with her rubbage 'bout superstition. Go on, Tom!" "Oh, it's all getting just as bright as day, now. Next you said I warn't BAD, only mischeevous and harum-scarum, and not any more responsible than--than--I think it was a colt, or something." "And so it was! Well, goodness gracious! Go on, Tom!" "And then you began to cry." "So I did. So I did. Not the first time, neither. And then--" "Then Mrs. Harper she began to cry, and said Joe was just the same, and she wished she hadn't whipped him for taking cream when she'd throwed it out her own self--" "Tom! The sperrit was upon you! You was a prophesying--that's what you was doing! Land alive, go on, Tom!" "Then Sid he said--he said--" "I don't think I said anything," said Sid. "Yes you did, Sid," said Mary. "Shut your heads and let Tom go on! What did he say, Tom?" "He said--I THINK he said he hoped I was better off where I was gone to, but if I'd been better sometimes--" "THERE, d'you hear that! It was his very words!" "And you shut him up sharp." "I lay I did! There must 'a' been an angel there. There WAS an angel there, somewheres!" "And Mrs. Harper told about Joe scaring her with a firecracker, and you told about Peter and the Painkiller--" "Just as true as I live!" "And then there was a whole lot of talk 'bout dragging the river for us, and 'bout having the funeral Sunday, and then you and old Miss Harper hugged and cried, and she went." "It happened just so! It happened just so, as sure as I'm a-sitting in these very tracks. Tom, you couldn't told it more like if you'd 'a' seen it! And then what? Go on, Tom!" "Then I thought you prayed for me--and I could see you and hear every word you said. And you went to bed, and I was so sorry that I took and wrote on a piece of sycamore bark, 'We ain't dead--we are only off being pirates,' and put it on the table by the candle; and then you looked so good, laying there asleep, that I thought I went and leaned over and kissed you on the lips." "Did you, Tom, DID you! I just forgive you everything for that!" And she seized the boy in a crushing embrace that made him feel like the guiltiest of villains. "It was very kind, even though it was only a--dream," Sid soliloquized just audibly. "Shut up, Sid! A body does just the same in a dream as he'd do if he was awake. Here's a big Milum apple I've been saving for you, Tom, if you was ever found again--now go 'long to school. I'm thankful to the good God and Father of us all I've got you back, that's long-suffering and merciful to them that believe on Him and keep His word, though goodness knows I'm unworthy of it, but if only the worthy ones got His blessings and had His hand to help them over the rough places, there's few enough would smile here or ever enter into His rest when the long night comes. Go 'long Sid, Mary, Tom--take yourselves off--you've hendered me long enough." The children left for school, and the old lady to call on Mrs. Harper and vanquish her realism with Tom's marvellous dream. Sid had better judgment than to utter the thought that was in his mind as he left the house. It was this: "Pretty thin--as long a dream as that, without any mistakes in it!" What a hero Tom was become, now! He did not go skipping and prancing, but moved with a dignified swagger as became a pirate who felt that the public eye was on him. And indeed it was; he tried not to seem to see the looks or hear the remarks as he passed along, but they were food and drink to him. Smaller boys than himself flocked at his heels, as proud to be seen with him, and tolerated by him, as if he had been the drummer at the head of a procession or the elephant leading a menagerie into town. Boys of his own size pretended not to know he had been away at all; but they were consuming with envy, nevertheless. They would have given anything to have that swarthy suntanned skin of his, and his glittering notoriety; and Tom would not have parted with either for a circus. At school the children made so much of him and of Joe, and delivered such eloquent admiration from their eyes, that the two heroes were not long in becoming insufferably "stuck-up." They began to tell their adventures to hungry listeners--but they only began; it was not a thing likely to have an end, with imaginations like theirs to furnish material. And finally, when they got out their pipes and went serenely puffing around, the very summit of glory was reached. Tom decided that he could be independent of Becky Thatcher now. Glory was sufficient. He would live for glory. Now that he was distinguished, maybe she would be wanting to "make up." Well, let her--she should see that he could be as indifferent as some other people. Presently she arrived. Tom pretended not to see her. He moved away and joined a group of boys and girls and began to talk. Soon he observed that she was tripping gayly back and forth with flushed face and dancing eyes, pretending to be busy chasing schoolmates, and screaming with laughter when she made a capture; but he noticed that she always made her captures in his vicinity, and that she seemed to cast a conscious eye in his direction at such times, too. It gratified all the vicious vanity that was in him; and so, instead of winning him, it only "set him up" the more and made him the more diligent to avoid betraying that he knew she was about. Presently she gave over skylarking, and moved irresolutely about, sighing once or twice and glancing furtively and wistfully toward Tom. Then she observed that now Tom was talking more particularly to Amy Lawrence than to any one else. She felt a sharp pang and grew disturbed and uneasy at once. She tried to go away, but her feet were treacherous, and carried her to the group instead. She said to a girl almost at Tom's elbow--with sham vivacity: "Why, Mary Austin! you bad girl, why didn't you come to Sunday-school?" "I did come--didn't you see me?" "Why, no! Did you? Where did you sit?" "I was in Miss Peters' class, where I always go. I saw YOU." "Did you? Why, it's funny I didn't see you. I wanted to tell you about the picnic." "Oh, that's jolly. Who's going to give it?" "My ma's going to let me have one." "Oh, goody; I hope she'll let ME come." "Well, she will. The picnic's for me. She'll let anybody come that I want, and I want you." "That's ever so nice. When is it going to be?" "By and by. Maybe about vacation." "Oh, won't it be fun! You going to have all the girls and boys?" "Yes, every one that's friends to me--or wants to be"; and she glanced ever so furtively at Tom, but he talked right along to Amy Lawrence about the terrible storm on the island, and how the lightning tore the great sycamore tree "all to flinders" while he was "standing within three feet of it." "Oh, may I come?" said Grace Miller. "Yes." "And me?" said Sally Rogers. "Yes." "And me, too?" said Susy Harper. "And Joe?" "Yes." And so on, with clapping of joyful hands till all the group had begged for invitations but Tom and Amy. Then Tom turned coolly away, still talking, and took Amy with him. Becky's lips trembled and the tears came to her eyes; she hid these signs with a forced gayety and went on chattering, but the life had gone out of the picnic, now, and out of everything else; she got away as soon as she could and hid herself and had what her sex call "a good cry." Then she sat moody, with wounded pride, till the bell rang. She roused up, now, with a vindictive cast in her eye, and gave her plaited tails a shake and said she knew what SHE'D do. At recess Tom continued his flirtation with Amy with jubilant self-satisfaction. And he kept drifting about to find Becky and lacerate her with the performance. At last he spied her, but there was a sudden falling of his mercury. She was sitting cosily on a little bench behind the schoolhouse looking at a picture-book with Alfred Temple--and so absorbed were they, and their heads so close together over the book, that they did not seem to be conscious of anything in the world besides. Jealousy ran red-hot through Tom's veins. He began to hate himself for throwing away the chance Becky had offered for a reconciliation. He called himself a fool, and all the hard names he could think of. He wanted to cry with vexation. Amy chatted happily along, as they walked, for her heart was singing, but Tom's tongue had lost its function. He did not hear what Amy was saying, and whenever she paused expectantly he could only stammer an awkward assent, which was as often misplaced as otherwise. He kept drifting to the rear of the schoolhouse, again and again, to sear his eyeballs with the hateful spectacle there. He could not help it. And it maddened him to see, as he thought he saw, that Becky Thatcher never once suspected that he was even in the land of the living. But she did see, nevertheless; and she knew she was winning her fight, too, and was glad to see him suffer as she had suffered. Amy's happy prattle became intolerable. Tom hinted at things he had to attend to; things that must be done; and time was fleeting. But in vain--the girl chirped on. Tom thought, "Oh, hang her, ain't I ever going to get rid of her?" At last he must be attending to those things--and she said artlessly that she would be "around" when school let out. And he hastened away, hating her for it. "Any other boy!" Tom thought, grating his teeth. "Any boy in the whole town but that Saint Louis smarty that thinks he dresses so fine and is aristocracy! Oh, all right, I licked you the first day you ever saw this town, mister, and I'll lick you again! You just wait till I catch you out! I'll just take and--" And he went through the motions of thrashing an imaginary boy --pummelling the air, and kicking and gouging. "Oh, you do, do you? You holler 'nough, do you? Now, then, let that learn you!" And so the imaginary flogging was finished to his satisfaction. Tom fled home at noon. His conscience could not endure any more of Amy's grateful happiness, and his jealousy could bear no more of the other distress. Becky resumed her picture inspections with Alfred, but as the minutes dragged along and no Tom came to suffer, her triumph began to cloud and she lost interest; gravity and absent-mindedness followed, and then melancholy; two or three times she pricked up her ear at a footstep, but it was a false hope; no Tom came. At last she grew entirely miserable and wished she hadn't carried it so far. When poor Alfred, seeing that he was losing her, he did not know how, kept exclaiming: "Oh, here's a jolly one! look at this!" she lost patience at last, and said, "Oh, don't bother me! I don't care for them!" and burst into tears, and got up and walked away. Alfred dropped alongside and was going to try to comfort her, but she said: "Go away and leave me alone, can't you! I hate you!" So the boy halted, wondering what he could have done--for she had said she would look at pictures all through the nooning--and she walked on, crying. Then Alfred went musing into the deserted schoolhouse. He was humiliated and angry. He easily guessed his way to the truth--the girl had simply made a convenience of him to vent her spite upon Tom Sawyer. He was far from hating Tom the less when this thought occurred to him. He wished there was some way to get that boy into trouble without much risk to himself. Tom's spelling-book fell under his eye. Here was his opportunity. He gratefully opened to the lesson for the afternoon and poured ink upon the page. Becky, glancing in at a window behind him at the moment, saw the act, and moved on, without discovering herself. She started homeward, now, intending to find Tom and tell him; Tom would be thankful and their troubles would be healed. Before she was half way home, however, she had changed her mind. The thought of Tom's treatment of her when she was talking about her picnic came scorching back and filled her with shame. She resolved to let him get whipped on the damaged spelling-book's account, and to hate him forever, into the bargain. CHAPTER XIX TOM arrived at home in a dreary mood, and the first thing his aunt said to him showed him that he had brought his sorrows to an unpromising market: "Tom, I've a notion to skin you alive!" "Auntie, what have I done?" "Well, you've done enough. Here I go over to Sereny Harper, like an old softy, expecting I'm going to make her believe all that rubbage about that dream, when lo and behold you she'd found out from Joe that you was over here and heard all the talk we had that night. Tom, I don't know what is to become of a boy that will act like that. It makes me feel so bad to think you could let me go to Sereny Harper and make such a fool of myself and never say a word." This was a new aspect of the thing. His smartness of the morning had seemed to Tom a good joke before, and very ingenious. It merely looked mean and shabby now. He hung his head and could not think of anything to say for a moment. Then he said: "Auntie, I wish I hadn't done it--but I didn't think." "Oh, child, you never think. You never think of anything but your own selfishness. You could think to come all the way over here from Jackson's Island in the night to laugh at our troubles, and you could think to fool me with a lie about a dream; but you couldn't ever think to pity us and save us from sorrow." "Auntie, I know now it was mean, but I didn't mean to be mean. I didn't, honest. And besides, I didn't come over here to laugh at you that night." "What did you come for, then?" "It was to tell you not to be uneasy about us, because we hadn't got drownded." "Tom, Tom, I would be the thankfullest soul in this world if I could believe you ever had as good a thought as that, but you know you never did--and I know it, Tom." "Indeed and 'deed I did, auntie--I wish I may never stir if I didn't." "Oh, Tom, don't lie--don't do it. It only makes things a hundred times worse." "It ain't a lie, auntie; it's the truth. I wanted to keep you from grieving--that was all that made me come." "I'd give the whole world to believe that--it would cover up a power of sins, Tom. I'd 'most be glad you'd run off and acted so bad. But it ain't reasonable; because, why didn't you tell me, child?" "Why, you see, when you got to talking about the funeral, I just got all full of the idea of our coming and hiding in the church, and I couldn't somehow bear to spoil it. So I just put the bark back in my pocket and kept mum." "What bark?" "The bark I had wrote on to tell you we'd gone pirating. I wish, now, you'd waked up when I kissed you--I do, honest." The hard lines in his aunt's face relaxed and a sudden tenderness dawned in her eyes. "DID you kiss me, Tom?" "Why, yes, I did." "Are you sure you did, Tom?" "Why, yes, I did, auntie--certain sure." "What did you kiss me for, Tom?" "Because I loved you so, and you laid there moaning and I was so sorry." The words sounded like truth. The old lady could not hide a tremor in her voice when she said: "Kiss me again, Tom!--and be off with you to school, now, and don't bother me any more." The moment he was gone, she ran to a closet and got out the ruin of a jacket which Tom had gone pirating in. Then she stopped, with it in her hand, and said to herself: "No, I don't dare. Poor boy, I reckon he's lied about it--but it's a blessed, blessed lie, there's such a comfort come from it. I hope the Lord--I KNOW the Lord will forgive him, because it was such goodheartedness in him to tell it. But I don't want to find out it's a lie. I won't look." She put the jacket away, and stood by musing a minute. Twice she put out her hand to take the garment again, and twice she refrained. Once more she ventured, and this time she fortified herself with the thought: "It's a good lie--it's a good lie--I won't let it grieve me." So she sought the jacket pocket. A moment later she was reading Tom's piece of bark through flowing tears and saying: "I could forgive the boy, now, if he'd committed a million sins!" CHAPTER XX THERE was something about Aunt Polly's manner, when she kissed Tom, that swept away his low spirits and made him lighthearted and happy again. He started to school and had the luck of coming upon Becky Thatcher at the head of Meadow Lane. His mood always determined his manner. Without a moment's hesitation he ran to her and said: "I acted mighty mean to-day, Becky, and I'm so sorry. I won't ever, ever do that way again, as long as ever I live--please make up, won't you?" The girl stopped and looked him scornfully in the face: "I'll thank you to keep yourself TO yourself, Mr. Thomas Sawyer. I'll never speak to you again." She tossed her head and passed on. Tom was so stunned that he had not even presence of mind enough to say "Who cares, Miss Smarty?" until the right time to say it had gone by. So he said nothing. But he was in a fine rage, nevertheless. He moped into the schoolyard wishing she were a boy, and imagining how he would trounce her if she were. He presently encountered her and delivered a stinging remark as he passed. She hurled one in return, and the angry breach was complete. It seemed to Becky, in her hot resentment, that she could hardly wait for school to "take in," she was so impatient to see Tom flogged for the injured spelling-book. If she had had any lingering notion of exposing Alfred Temple, Tom's offensive fling had driven it entirely away. Poor girl, she did not know how fast she was nearing trouble herself. The master, Mr. Dobbins, had reached middle age with an unsatisfied ambition. The darling of his desires was, to be a doctor, but poverty had decreed that he should be nothing higher than a village schoolmaster. Every day he took a mysterious book out of his desk and absorbed himself in it at times when no classes were reciting. He kept that book under lock and key. There was not an urchin in school but was perishing to have a glimpse of it, but the chance never came. Every boy and girl had a theory about the nature of that book; but no two theories were alike, and there was no way of getting at the facts in the case. Now, as Becky was passing by the desk, which stood near the door, she noticed that the key was in the lock! It was a precious moment. She glanced around; found herself alone, and the next instant she had the book in her hands. The title-page--Professor Somebody's ANATOMY--carried no information to her mind; so she began to turn the leaves. She came at once upon a handsomely engraved and colored frontispiece--a human figure, stark naked. At that moment a shadow fell on the page and Tom Sawyer stepped in at the door and caught a glimpse of the picture. Becky snatched at the book to close it, and had the hard luck to tear the pictured page half down the middle. She thrust the volume into the desk, turned the key, and burst out crying with shame and vexation. "Tom Sawyer, you are just as mean as you can be, to sneak up on a person and look at what they're looking at." "How could I know you was looking at anything?" "You ought to be ashamed of yourself, Tom Sawyer; you know you're going to tell on me, and oh, what shall I do, what shall I do! I'll be whipped, and I never was whipped in school." Then she stamped her little foot and said: "BE so mean if you want to! I know something that's going to happen. You just wait and you'll see! Hateful, hateful, hateful!"--and she flung out of the house with a new explosion of crying. Tom stood still, rather flustered by this onslaught. Presently he said to himself: "What a curious kind of a fool a girl is! Never been licked in school! Shucks! What's a licking! That's just like a girl--they're so thin-skinned and chicken-hearted. Well, of course I ain't going to tell old Dobbins on this little fool, because there's other ways of getting even on her, that ain't so mean; but what of it? Old Dobbins will ask who it was tore his book. Nobody'll answer. Then he'll do just the way he always does--ask first one and then t'other, and when he comes to the right girl he'll know it, without any telling. Girls' faces always tell on them. They ain't got any backbone. She'll get licked. Well, it's a kind of a tight place for Becky Thatcher, because there ain't any way out of it." Tom conned the thing a moment longer, and then added: "All right, though; she'd like to see me in just such a fix--let her sweat it out!" Tom joined the mob of skylarking scholars outside. In a few moments the master arrived and school "took in." Tom did not feel a strong interest in his studies. Every time he stole a glance at the girls' side of the room Becky's face troubled him. Considering all things, he did not want to pity her, and yet it was all he could do to help it. He could get up no exultation that was really worthy the name. Presently the spelling-book discovery was made, and Tom's mind was entirely full of his own matters for a while after that. Becky roused up from her lethargy of distress and showed good interest in the proceedings. She did not expect that Tom could get out of his trouble by denying that he spilt the ink on the book himself; and she was right. The denial only seemed to make the thing worse for Tom. Becky supposed she would be glad of that, and she tried to believe she was glad of it, but she found she was not certain. When the worst came to the worst, she had an impulse to get up and tell on Alfred Temple, but she made an effort and forced herself to keep still--because, said she to herself, "he'll tell about me tearing the picture sure. I wouldn't say a word, not to save his life!" Tom took his whipping and went back to his seat not at all broken-hearted, for he thought it was possible that he had unknowingly upset the ink on the spelling-book himself, in some skylarking bout--he had denied it for form's sake and because it was custom, and had stuck to the denial from principle. A whole hour drifted by, the master sat nodding in his throne, the air was drowsy with the hum of study. By and by, Mr. Dobbins straightened himself up, yawned, then unlocked his desk, and reached for his book, but seemed undecided whether to take it out or leave it. Most of the pupils glanced up languidly, but there were two among them that watched his movements with intent eyes. Mr. Dobbins fingered his book absently for a while, then took it out and settled himself in his chair to read! Tom shot a glance at Becky. He had seen a hunted and helpless rabbit look as she did, with a gun levelled at its head. Instantly he forgot his quarrel with her. Quick--something must be done! done in a flash, too! But the very imminence of the emergency paralyzed his invention. Good!--he had an inspiration! He would run and snatch the book, spring through the door and fly. But his resolution shook for one little instant, and the chance was lost--the master opened the volume. If Tom only had the wasted opportunity back again! Too late. There was no help for Becky now, he said. The next moment the master faced the school. Every eye sank under his gaze. There was that in it which smote even the innocent with fear. There was silence while one might count ten --the master was gathering his wrath. Then he spoke: "Who tore this book?" There was not a sound. One could have heard a pin drop. The stillness continued; the master searched face after face for signs of guilt. "Benjamin Rogers, did you tear this book?" A denial. Another pause. "Joseph Harper, did you?" Another denial. Tom's uneasiness grew more and more intense under the slow torture of these proceedings. The master scanned the ranks of boys--considered a while, then turned to the girls: "Amy Lawrence?" A shake of the head. "Gracie Miller?" The same sign. "Susan Harper, did you do this?" Another negative. The next girl was Becky Thatcher. Tom was trembling from head to foot with excitement and a sense of the hopelessness of the situation. "Rebecca Thatcher" [Tom glanced at her face--it was white with terror] --"did you tear--no, look me in the face" [her hands rose in appeal] --"did you tear this book?" A thought shot like lightning through Tom's brain. He sprang to his feet and shouted--"I done it!" The school stared in perplexity at this incredible folly. Tom stood a moment, to gather his dismembered faculties; and when he stepped forward to go to his punishment the surprise, the gratitude, the adoration that shone upon him out of poor Becky's eyes seemed pay enough for a hundred floggings. Inspired by the splendor of his own act, he took without an outcry the most merciless flaying that even Mr. Dobbins had ever administered; and also received with indifference the added cruelty of a command to remain two hours after school should be dismissed--for he knew who would wait for him outside till his captivity was done, and not count the tedious time as loss, either. Tom went to bed that night planning vengeance against Alfred Temple; for with shame and repentance Becky had told him all, not forgetting her own treachery; but even the longing for vengeance had to give way, soon, to pleasanter musings, and he fell asleep at last with Becky's latest words lingering dreamily in his ear-- "Tom, how COULD you be so noble!" CHAPTER XXI VACATION was approaching. The schoolmaster, always severe, grew severer and more exacting than ever, for he wanted the school to make a good showing on "Examination" day. His rod and his ferule were seldom idle now--at least among the smaller pupils. Only the biggest boys, and young ladies of eighteen and twenty, escaped lashing. Mr. Dobbins' lashings were very vigorous ones, too; for although he carried, under his wig, a perfectly bald and shiny head, he had only reached middle age, and there was no sign of feebleness in his muscle. As the great day approached, all the tyranny that was in him came to the surface; he seemed to take a vindictive pleasure in punishing the least shortcomings. The consequence was, that the smaller boys spent their days in terror and suffering and their nights in plotting revenge. They threw away no opportunity to do the master a mischief. But he kept ahead all the time. The retribution that followed every vengeful success was so sweeping and majestic that the boys always retired from the field badly worsted. At last they conspired together and hit upon a plan that promised a dazzling victory. They swore in the sign-painter's boy, told him the scheme, and asked his help. He had his own reasons for being delighted, for the master boarded in his father's family and had given the boy ample cause to hate him. The master's wife would go on a visit to the country in a few days, and there would be nothing to interfere with the plan; the master always prepared himself for great occasions by getting pretty well fuddled, and the sign-painter's boy said that when the dominie had reached the proper condition on Examination Evening he would "manage the thing" while he napped in his chair; then he would have him awakened at the right time and hurried away to school. In the fulness of time the interesting occasion arrived. At eight in the evening the schoolhouse was brilliantly lighted, and adorned with wreaths and festoons of foliage and flowers. The master sat throned in his great chair upon a raised platform, with his blackboard behind him. He was looking tolerably mellow. Three rows of benches on each side and six rows in front of him were occupied by the dignitaries of the town and by the parents of the pupils. To his left, back of the rows of citizens, was a spacious temporary platform upon which were seated the scholars who were to take part in the exercises of the evening; rows of small boys, washed and dressed to an intolerable state of discomfort; rows of gawky big boys; snowbanks of girls and young ladies clad in lawn and muslin and conspicuously conscious of their bare arms, their grandmothers' ancient trinkets, their bits of pink and blue ribbon and the flowers in their hair. All the rest of the house was filled with non-participating scholars. The exercises began. A very little boy stood up and sheepishly recited, "You'd scarce expect one of my age to speak in public on the stage," etc.--accompanying himself with the painfully exact and spasmodic gestures which a machine might have used--supposing the machine to be a trifle out of order. But he got through safely, though cruelly scared, and got a fine round of applause when he made his manufactured bow and retired. A little shamefaced girl lisped, "Mary had a little lamb," etc., performed a compassion-inspiring curtsy, got her meed of applause, and sat down flushed and happy. Tom Sawyer stepped forward with conceited confidence and soared into the unquenchable and indestructible "Give me liberty or give me death" speech, with fine fury and frantic gesticulation, and broke down in the middle of it. A ghastly stage-fright seized him, his legs quaked under him and he was like to choke. True, he had the manifest sympathy of the house but he had the house's silence, too, which was even worse than its sympathy. The master frowned, and this completed the disaster. Tom struggled awhile and then retired, utterly defeated. There was a weak attempt at applause, but it died early. "The Boy Stood on the Burning Deck" followed; also "The Assyrian Came Down," and other declamatory gems. Then there were reading exercises, and a spelling fight. The meagre Latin class recited with honor. The prime feature of the evening was in order, now--original "compositions" by the young ladies. Each in her turn stepped forward to the edge of the platform, cleared her throat, held up her manuscript (tied with dainty ribbon), and proceeded to read, with labored attention to "expression" and punctuation. The themes were the same that had been illuminated upon similar occasions by their mothers before them, their grandmothers, and doubtless all their ancestors in the female line clear back to the Crusades. "Friendship" was one; "Memories of Other Days"; "Religion in History"; "Dream Land"; "The Advantages of Culture"; "Forms of Political Government Compared and Contrasted"; "Melancholy"; "Filial Love"; "Heart Longings," etc., etc. A prevalent feature in these compositions was a nursed and petted melancholy; another was a wasteful and opulent gush of "fine language"; another was a tendency to lug in by the ears particularly prized words and phrases until they were worn entirely out; and a peculiarity that conspicuously marked and marred them was the inveterate and intolerable sermon that wagged its crippled tail at the end of each and every one of them. No matter what the subject might be, a brain-racking effort was made to squirm it into some aspect or other that the moral and religious mind could contemplate with edification. The glaring insincerity of these sermons was not sufficient to compass the banishment of the fashion from the schools, and it is not sufficient to-day; it never will be sufficient while the world stands, perhaps. There is no school in all our land where the young ladies do not feel obliged to close their compositions with a sermon; and you will find that the sermon of the most frivolous and the least religious girl in the school is always the longest and the most relentlessly pious. But enough of this. Homely truth is unpalatable. Let us return to the "Examination." The first composition that was read was one entitled "Is this, then, Life?" Perhaps the reader can endure an extract from it: "In the common walks of life, with what delightful emotions does the youthful mind look forward to some anticipated scene of festivity! Imagination is busy sketching rose-tinted pictures of joy. In fancy, the voluptuous votary of fashion sees herself amid the festive throng, 'the observed of all observers.' Her graceful form, arrayed in snowy robes, is whirling through the mazes of the joyous dance; her eye is brightest, her step is lightest in the gay assembly. "In such delicious fancies time quickly glides by, and the welcome hour arrives for her entrance into the Elysian world, of which she has had such bright dreams. How fairy-like does everything appear to her enchanted vision! Each new scene is more charming than the last. But after a while she finds that beneath this goodly exterior, all is vanity, the flattery which once charmed her soul, now grates harshly upon her ear; the ball-room has lost its charms; and with wasted health and imbittered heart, she turns away with the conviction that earthly pleasures cannot satisfy the longings of the soul!" And so forth and so on. There was a buzz of gratification from time to time during the reading, accompanied by whispered ejaculations of "How sweet!" "How eloquent!" "So true!" etc., and after the thing had closed with a peculiarly afflicting sermon the applause was enthusiastic. Then arose a slim, melancholy girl, whose face had the "interesting" paleness that comes of pills and indigestion, and read a "poem." Two stanzas of it will do: "A MISSOURI MAIDEN'S FAREWELL TO ALABAMA "Alabama, good-bye! I love thee well! But yet for a while do I leave thee now! Sad, yes, sad thoughts of thee my heart doth swell, And burning recollections throng my brow! For I have wandered through thy flowery woods; Have roamed and read near Tallapoosa's stream; Have listened to Tallassee's warring floods, And wooed on Coosa's side Aurora's beam. "Yet shame I not to bear an o'er-full heart, Nor blush to turn behind my tearful eyes; 'Tis from no stranger land I now must part, 'Tis to no strangers left I yield these sighs. Welcome and home were mine within this State, Whose vales I leave--whose spires fade fast from me And cold must be mine eyes, and heart, and tete, When, dear Alabama! they turn cold on thee!" There were very few there who knew what "tete" meant, but the poem was very satisfactory, nevertheless. Next appeared a dark-complexioned, black-eyed, black-haired young lady, who paused an impressive moment, assumed a tragic expression, and began to read in a measured, solemn tone: "A VISION "Dark and tempestuous was night. Around the throne on high not a single star quivered; but the deep intonations of the heavy thunder constantly vibrated upon the ear; whilst the terrific lightning revelled in angry mood through the cloudy chambers of heaven, seeming to scorn the power exerted over its terror by the illustrious Franklin! Even the boisterous winds unanimously came forth from their mystic homes, and blustered about as if to enhance by their aid the wildness of the scene. "At such a time, so dark, so dreary, for human sympathy my very spirit sighed; but instead thereof, "'My dearest friend, my counsellor, my comforter and guide--My joy in grief, my second bliss in joy,' came to my side. She moved like one of those bright beings pictured in the sunny walks of fancy's Eden by the romantic and young, a queen of beauty unadorned save by her own transcendent loveliness. So soft was her step, it failed to make even a sound, and but for the magical thrill imparted by her genial touch, as other unobtrusive beauties, she would have glided away un-perceived--unsought. A strange sadness rested upon her features, like icy tears upon the robe of December, as she pointed to the contending elements without, and bade me contemplate the two beings presented." This nightmare occupied some ten pages of manuscript and wound up with a sermon so destructive of all hope to non-Presbyterians that it took the first prize. This composition was considered to be the very finest effort of the evening. The mayor of the village, in delivering the prize to the author of it, made a warm speech in which he said that it was by far the most "eloquent" thing he had ever listened to, and that Daniel Webster himself might well be proud of it. It may be remarked, in passing, that the number of compositions in which the word "beauteous" was over-fondled, and human experience referred to as "life's page," was up to the usual average. Now the master, mellow almost to the verge of geniality, put his chair aside, turned his back to the audience, and began to draw a map of America on the blackboard, to exercise the geography class upon. But he made a sad business of it with his unsteady hand, and a smothered titter rippled over the house. He knew what the matter was, and set himself to right it. He sponged out lines and remade them; but he only distorted them more than ever, and the tittering was more pronounced. He threw his entire attention upon his work, now, as if determined not to be put down by the mirth. He felt that all eyes were fastened upon him; he imagined he was succeeding, and yet the tittering continued; it even manifestly increased. And well it might. There was a garret above, pierced with a scuttle over his head; and down through this scuttle came a cat, suspended around the haunches by a string; she had a rag tied about her head and jaws to keep her from mewing; as she slowly descended she curved upward and clawed at the string, she swung downward and clawed at the intangible air. The tittering rose higher and higher--the cat was within six inches of the absorbed teacher's head--down, down, a little lower, and she grabbed his wig with her desperate claws, clung to it, and was snatched up into the garret in an instant with her trophy still in her possession! And how the light did blaze abroad from the master's bald pate--for the sign-painter's boy had GILDED it! That broke up the meeting. The boys were avenged. Vacation had come. NOTE:--The pretended "compositions" quoted in this chapter are taken without alteration from a volume entitled "Prose and Poetry, by a Western Lady"--but they are exactly and precisely after the schoolgirl pattern, and hence are much happier than any mere imitations could be. CHAPTER XXII TOM joined the new order of Cadets of Temperance, being attracted by the showy character of their "regalia." He promised to abstain from smoking, chewing, and profanity as long as he remained a member. Now he found out a new thing--namely, that to promise not to do a thing is the surest way in the world to make a body want to go and do that very thing. Tom soon found himself tormented with a desire to drink and swear; the desire grew to be so intense that nothing but the hope of a chance to display himself in his red sash kept him from withdrawing from the order. Fourth of July was coming; but he soon gave that up --gave it up before he had worn his shackles over forty-eight hours--and fixed his hopes upon old Judge Frazer, justice of the peace, who was apparently on his deathbed and would have a big public funeral, since he was so high an official. During three days Tom was deeply concerned about the Judge's condition and hungry for news of it. Sometimes his hopes ran high--so high that he would venture to get out his regalia and practise before the looking-glass. But the Judge had a most discouraging way of fluctuating. At last he was pronounced upon the mend--and then convalescent. Tom was disgusted; and felt a sense of injury, too. He handed in his resignation at once--and that night the Judge suffered a relapse and died. Tom resolved that he would never trust a man like that again. The funeral was a fine thing. The Cadets paraded in a style calculated to kill the late member with envy. Tom was a free boy again, however --there was something in that. He could drink and swear, now--but found to his surprise that he did not want to. The simple fact that he could, took the desire away, and the charm of it. Tom presently wondered to find that his coveted vacation was beginning to hang a little heavily on his hands. He attempted a diary--but nothing happened during three days, and so he abandoned it. The first of all the negro minstrel shows came to town, and made a sensation. Tom and Joe Harper got up a band of performers and were happy for two days. Even the Glorious Fourth was in some sense a failure, for it rained hard, there was no procession in consequence, and the greatest man in the world (as Tom supposed), Mr. Benton, an actual United States Senator, proved an overwhelming disappointment--for he was not twenty-five feet high, nor even anywhere in the neighborhood of it. A circus came. The boys played circus for three days afterward in tents made of rag carpeting--admission, three pins for boys, two for girls--and then circusing was abandoned. A phrenologist and a mesmerizer came--and went again and left the village duller and drearier than ever. There were some boys-and-girls' parties, but they were so few and so delightful that they only made the aching voids between ache the harder. Becky Thatcher was gone to her Constantinople home to stay with her parents during vacation--so there was no bright side to life anywhere. The dreadful secret of the murder was a chronic misery. It was a very cancer for permanency and pain. Then came the measles. During two long weeks Tom lay a prisoner, dead to the world and its happenings. He was very ill, he was interested in nothing. When he got upon his feet at last and moved feebly down-town, a melancholy change had come over everything and every creature. There had been a "revival," and everybody had "got religion," not only the adults, but even the boys and girls. Tom went about, hoping against hope for the sight of one blessed sinful face, but disappointment crossed him everywhere. He found Joe Harper studying a Testament, and turned sadly away from the depressing spectacle. He sought Ben Rogers, and found him visiting the poor with a basket of tracts. He hunted up Jim Hollis, who called his attention to the precious blessing of his late measles as a warning. Every boy he encountered added another ton to his depression; and when, in desperation, he flew for refuge at last to the bosom of Huckleberry Finn and was received with a Scriptural quotation, his heart broke and he crept home and to bed realizing that he alone of all the town was lost, forever and forever. And that night there came on a terrific storm, with driving rain, awful claps of thunder and blinding sheets of lightning. He covered his head with the bedclothes and waited in a horror of suspense for his doom; for he had not the shadow of a doubt that all this hubbub was about him. He believed he had taxed the forbearance of the powers above to the extremity of endurance and that this was the result. It might have seemed to him a waste of pomp and ammunition to kill a bug with a battery of artillery, but there seemed nothing incongruous about the getting up such an expensive thunderstorm as this to knock the turf from under an insect like himself. By and by the tempest spent itself and died without accomplishing its object. The boy's first impulse was to be grateful, and reform. His second was to wait--for there might not be any more storms. The next day the doctors were back; Tom had relapsed. The three weeks he spent on his back this time seemed an entire age. When he got abroad at last he was hardly grateful that he had been spared, remembering how lonely was his estate, how companionless and forlorn he was. He drifted listlessly down the street and found Jim Hollis acting as judge in a juvenile court that was trying a cat for murder, in the presence of her victim, a bird. He found Joe Harper and Huck Finn up an alley eating a stolen melon. Poor lads! they--like Tom--had suffered a relapse. CHAPTER XXIII AT last the sleepy atmosphere was stirred--and vigorously: the murder trial came on in the court. It became the absorbing topic of village talk immediately. Tom could not get away from it. Every reference to the murder sent a shudder to his heart, for his troubled conscience and fears almost persuaded him that these remarks were put forth in his hearing as "feelers"; he did not see how he could be suspected of knowing anything about the murder, but still he could not be comfortable in the midst of this gossip. It kept him in a cold shiver all the time. He took Huck to a lonely place to have a talk with him. It would be some relief to unseal his tongue for a little while; to divide his burden of distress with another sufferer. Moreover, he wanted to assure himself that Huck had remained discreet. "Huck, have you ever told anybody about--that?" "'Bout what?" "You know what." "Oh--'course I haven't." "Never a word?" "Never a solitary word, so help me. What makes you ask?" "Well, I was afeard." "Why, Tom Sawyer, we wouldn't be alive two days if that got found out. YOU know that." Tom felt more comfortable. After a pause: "Huck, they couldn't anybody get you to tell, could they?" "Get me to tell? Why, if I wanted that half-breed devil to drownd me they could get me to tell. They ain't no different way." "Well, that's all right, then. I reckon we're safe as long as we keep mum. But let's swear again, anyway. It's more surer." "I'm agreed." So they swore again with dread solemnities. "What is the talk around, Huck? I've heard a power of it." "Talk? Well, it's just Muff Potter, Muff Potter, Muff Potter all the time. It keeps me in a sweat, constant, so's I want to hide som'ers." "That's just the same way they go on round me. I reckon he's a goner. Don't you feel sorry for him, sometimes?" "Most always--most always. He ain't no account; but then he hain't ever done anything to hurt anybody. Just fishes a little, to get money to get drunk on--and loafs around considerable; but lord, we all do that--leastways most of us--preachers and such like. But he's kind of good--he give me half a fish, once, when there warn't enough for two; and lots of times he's kind of stood by me when I was out of luck." "Well, he's mended kites for me, Huck, and knitted hooks on to my line. I wish we could get him out of there." "My! we couldn't get him out, Tom. And besides, 'twouldn't do any good; they'd ketch him again." "Yes--so they would. But I hate to hear 'em abuse him so like the dickens when he never done--that." "I do too, Tom. Lord, I hear 'em say he's the bloodiest looking villain in this country, and they wonder he wasn't ever hung before." "Yes, they talk like that, all the time. I've heard 'em say that if he was to get free they'd lynch him." "And they'd do it, too." The boys had a long talk, but it brought them little comfort. As the twilight drew on, they found themselves hanging about the neighborhood of the little isolated jail, perhaps with an undefined hope that something would happen that might clear away their difficulties. But nothing happened; there seemed to be no angels or fairies interested in this luckless captive. The boys did as they had often done before--went to the cell grating and gave Potter some tobacco and matches. He was on the ground floor and there were no guards. His gratitude for their gifts had always smote their consciences before--it cut deeper than ever, this time. They felt cowardly and treacherous to the last degree when Potter said: "You've been mighty good to me, boys--better'n anybody else in this town. And I don't forget it, I don't. Often I says to myself, says I, 'I used to mend all the boys' kites and things, and show 'em where the good fishin' places was, and befriend 'em what I could, and now they've all forgot old Muff when he's in trouble; but Tom don't, and Huck don't--THEY don't forget him, says I, 'and I don't forget them.' Well, boys, I done an awful thing--drunk and crazy at the time--that's the only way I account for it--and now I got to swing for it, and it's right. Right, and BEST, too, I reckon--hope so, anyway. Well, we won't talk about that. I don't want to make YOU feel bad; you've befriended me. But what I want to say, is, don't YOU ever get drunk--then you won't ever get here. Stand a litter furder west--so--that's it; it's a prime comfort to see faces that's friendly when a body's in such a muck of trouble, and there don't none come here but yourn. Good friendly faces--good friendly faces. Git up on one another's backs and let me touch 'em. That's it. Shake hands--yourn'll come through the bars, but mine's too big. Little hands, and weak--but they've helped Muff Potter a power, and they'd help him more if they could." Tom went home miserable, and his dreams that night were full of horrors. The next day and the day after, he hung about the court-room, drawn by an almost irresistible impulse to go in, but forcing himself to stay out. Huck was having the same experience. They studiously avoided each other. Each wandered away, from time to time, but the same dismal fascination always brought them back presently. Tom kept his ears open when idlers sauntered out of the court-room, but invariably heard distressing news--the toils were closing more and more relentlessly around poor Potter. At the end of the second day the village talk was to the effect that Injun Joe's evidence stood firm and unshaken, and that there was not the slightest question as to what the jury's verdict would be. Tom was out late, that night, and came to bed through the window. He was in a tremendous state of excitement. It was hours before he got to sleep. All the village flocked to the court-house the next morning, for this was to be the great day. Both sexes were about equally represented in the packed audience. After a long wait the jury filed in and took their places; shortly afterward, Potter, pale and haggard, timid and hopeless, was brought in, with chains upon him, and seated where all the curious eyes could stare at him; no less conspicuous was Injun Joe, stolid as ever. There was another pause, and then the judge arrived and the sheriff proclaimed the opening of the court. The usual whisperings among the lawyers and gathering together of papers followed. These details and accompanying delays worked up an atmosphere of preparation that was as impressive as it was fascinating. Now a witness was called who testified that he found Muff Potter washing in the brook, at an early hour of the morning that the murder was discovered, and that he immediately sneaked away. After some further questioning, counsel for the prosecution said: "Take the witness." The prisoner raised his eyes for a moment, but dropped them again when his own counsel said: "I have no questions to ask him." The next witness proved the finding of the knife near the corpse. Counsel for the prosecution said: "Take the witness." "I have no questions to ask him," Potter's lawyer replied. A third witness swore he had often seen the knife in Potter's possession. "Take the witness." Counsel for Potter declined to question him. The faces of the audience began to betray annoyance. Did this attorney mean to throw away his client's life without an effort? Several witnesses deposed concerning Potter's guilty behavior when brought to the scene of the murder. They were allowed to leave the stand without being cross-questioned. Every detail of the damaging circumstances that occurred in the graveyard upon that morning which all present remembered so well was brought out by credible witnesses, but none of them were cross-examined by Potter's lawyer. The perplexity and dissatisfaction of the house expressed itself in murmurs and provoked a reproof from the bench. Counsel for the prosecution now said: "By the oaths of citizens whose simple word is above suspicion, we have fastened this awful crime, beyond all possibility of question, upon the unhappy prisoner at the bar. We rest our case here." A groan escaped from poor Potter, and he put his face in his hands and rocked his body softly to and fro, while a painful silence reigned in the court-room. Many men were moved, and many women's compassion testified itself in tears. Counsel for the defence rose and said: "Your honor, in our remarks at the opening of this trial, we foreshadowed our purpose to prove that our client did this fearful deed while under the influence of a blind and irresponsible delirium produced by drink. We have changed our mind. We shall not offer that plea." [Then to the clerk:] "Call Thomas Sawyer!" A puzzled amazement awoke in every face in the house, not even excepting Potter's. Every eye fastened itself with wondering interest upon Tom as he rose and took his place upon the stand. The boy looked wild enough, for he was badly scared. The oath was administered. "Thomas Sawyer, where were you on the seventeenth of June, about the hour of midnight?" Tom glanced at Injun Joe's iron face and his tongue failed him. The audience listened breathless, but the words refused to come. After a few moments, however, the boy got a little of his strength back, and managed to put enough of it into his voice to make part of the house hear: "In the graveyard!" "A little bit louder, please. Don't be afraid. You were--" "In the graveyard." A contemptuous smile flitted across Injun Joe's face. "Were you anywhere near Horse Williams' grave?" "Yes, sir." "Speak up--just a trifle louder. How near were you?" "Near as I am to you." "Were you hidden, or not?" "I was hid." "Where?" "Behind the elms that's on the edge of the grave." Injun Joe gave a barely perceptible start. "Any one with you?" "Yes, sir. I went there with--" "Wait--wait a moment. Never mind mentioning your companion's name. We will produce him at the proper time. Did you carry anything there with you." Tom hesitated and looked confused. "Speak out, my boy--don't be diffident. The truth is always respectable. What did you take there?" "Only a--a--dead cat." There was a ripple of mirth, which the court checked. "We will produce the skeleton of that cat. Now, my boy, tell us everything that occurred--tell it in your own way--don't skip anything, and don't be afraid." Tom began--hesitatingly at first, but as he warmed to his subject his words flowed more and more easily; in a little while every sound ceased but his own voice; every eye fixed itself upon him; with parted lips and bated breath the audience hung upon his words, taking no note of time, rapt in the ghastly fascinations of the tale. The strain upon pent emotion reached its climax when the boy said: "--and as the doctor fetched the board around and Muff Potter fell, Injun Joe jumped with the knife and--" Crash! Quick as lightning the half-breed sprang for a window, tore his way through all opposers, and was gone! CHAPTER XXIV TOM was a glittering hero once more--the pet of the old, the envy of the young. His name even went into immortal print, for the village paper magnified him. There were some that believed he would be President, yet, if he escaped hanging. As usual, the fickle, unreasoning world took Muff Potter to its bosom and fondled him as lavishly as it had abused him before. But that sort of conduct is to the world's credit; therefore it is not well to find fault with it. Tom's days were days of splendor and exultation to him, but his nights were seasons of horror. Injun Joe infested all his dreams, and always with doom in his eye. Hardly any temptation could persuade the boy to stir abroad after nightfall. Poor Huck was in the same state of wretchedness and terror, for Tom had told the whole story to the lawyer the night before the great day of the trial, and Huck was sore afraid that his share in the business might leak out, yet, notwithstanding Injun Joe's flight had saved him the suffering of testifying in court. The poor fellow had got the attorney to promise secrecy, but what of that? Since Tom's harassed conscience had managed to drive him to the lawyer's house by night and wring a dread tale from lips that had been sealed with the dismalest and most formidable of oaths, Huck's confidence in the human race was well-nigh obliterated. Daily Muff Potter's gratitude made Tom glad he had spoken; but nightly he wished he had sealed up his tongue. Half the time Tom was afraid Injun Joe would never be captured; the other half he was afraid he would be. He felt sure he never could draw a safe breath again until that man was dead and he had seen the corpse. Rewards had been offered, the country had been scoured, but no Injun Joe was found. One of those omniscient and awe-inspiring marvels, a detective, came up from St. Louis, moused around, shook his head, looked wise, and made that sort of astounding success which members of that craft usually achieve. That is to say, he "found a clew." But you can't hang a "clew" for murder, and so after that detective had got through and gone home, Tom felt just as insecure as he was before. The slow days drifted on, and each left behind it a slightly lightened weight of apprehension. CHAPTER XXV THERE comes a time in every rightly-constructed boy's life when he has a raging desire to go somewhere and dig for hidden treasure. This desire suddenly came upon Tom one day. He sallied out to find Joe Harper, but failed of success. Next he sought Ben Rogers; he had gone fishing. Presently he stumbled upon Huck Finn the Red-Handed. Huck would answer. Tom took him to a private place and opened the matter to him confidentially. Huck was willing. Huck was always willing to take a hand in any enterprise that offered entertainment and required no capital, for he had a troublesome superabundance of that sort of time which is not money. "Where'll we dig?" said Huck. "Oh, most anywhere." "Why, is it hid all around?" "No, indeed it ain't. It's hid in mighty particular places, Huck --sometimes on islands, sometimes in rotten chests under the end of a limb of an old dead tree, just where the shadow falls at midnight; but mostly under the floor in ha'nted houses." "Who hides it?" "Why, robbers, of course--who'd you reckon? Sunday-school sup'rintendents?" "I don't know. If 'twas mine I wouldn't hide it; I'd spend it and have a good time." "So would I. But robbers don't do that way. They always hide it and leave it there." "Don't they come after it any more?" "No, they think they will, but they generally forget the marks, or else they die. Anyway, it lays there a long time and gets rusty; and by and by somebody finds an old yellow paper that tells how to find the marks--a paper that's got to be ciphered over about a week because it's mostly signs and hy'roglyphics." "Hyro--which?" "Hy'roglyphics--pictures and things, you know, that don't seem to mean anything." "Have you got one of them papers, Tom?" "No." "Well then, how you going to find the marks?" "I don't want any marks. They always bury it under a ha'nted house or on an island, or under a dead tree that's got one limb sticking out. Well, we've tried Jackson's Island a little, and we can try it again some time; and there's the old ha'nted house up the Still-House branch, and there's lots of dead-limb trees--dead loads of 'em." "Is it under all of them?" "How you talk! No!" "Then how you going to know which one to go for?" "Go for all of 'em!" "Why, Tom, it'll take all summer." "Well, what of that? Suppose you find a brass pot with a hundred dollars in it, all rusty and gray, or rotten chest full of di'monds. How's that?" Huck's eyes glowed. "That's bully. Plenty bully enough for me. Just you gimme the hundred dollars and I don't want no di'monds." "All right. But I bet you I ain't going to throw off on di'monds. Some of 'em's worth twenty dollars apiece--there ain't any, hardly, but's worth six bits or a dollar." "No! Is that so?" "Cert'nly--anybody'll tell you so. Hain't you ever seen one, Huck?" "Not as I remember." "Oh, kings have slathers of them." "Well, I don' know no kings, Tom." "I reckon you don't. But if you was to go to Europe you'd see a raft of 'em hopping around." "Do they hop?" "Hop?--your granny! No!" "Well, what did you say they did, for?" "Shucks, I only meant you'd SEE 'em--not hopping, of course--what do they want to hop for?--but I mean you'd just see 'em--scattered around, you know, in a kind of a general way. Like that old humpbacked Richard." "Richard? What's his other name?" "He didn't have any other name. Kings don't have any but a given name." "No?" "But they don't." "Well, if they like it, Tom, all right; but I don't want to be a king and have only just a given name, like a nigger. But say--where you going to dig first?" "Well, I don't know. S'pose we tackle that old dead-limb tree on the hill t'other side of Still-House branch?" "I'm agreed." So they got a crippled pick and a shovel, and set out on their three-mile tramp. They arrived hot and panting, and threw themselves down in the shade of a neighboring elm to rest and have a smoke. "I like this," said Tom. "So do I." "Say, Huck, if we find a treasure here, what you going to do with your share?" "Well, I'll have pie and a glass of soda every day, and I'll go to every circus that comes along. I bet I'll have a gay time." "Well, ain't you going to save any of it?" "Save it? What for?" "Why, so as to have something to live on, by and by." "Oh, that ain't any use. Pap would come back to thish-yer town some day and get his claws on it if I didn't hurry up, and I tell you he'd clean it out pretty quick. What you going to do with yourn, Tom?" "I'm going to buy a new drum, and a sure-'nough sword, and a red necktie and a bull pup, and get married." "Married!" "That's it." "Tom, you--why, you ain't in your right mind." "Wait--you'll see." "Well, that's the foolishest thing you could do. Look at pap and my mother. Fight! Why, they used to fight all the time. I remember, mighty well." "That ain't anything. The girl I'm going to marry won't fight." "Tom, I reckon they're all alike. They'll all comb a body. Now you better think 'bout this awhile. I tell you you better. What's the name of the gal?" "It ain't a gal at all--it's a girl." "It's all the same, I reckon; some says gal, some says girl--both's right, like enough. Anyway, what's her name, Tom?" "I'll tell you some time--not now." "All right--that'll do. Only if you get married I'll be more lonesomer than ever." "No you won't. You'll come and live with me. Now stir out of this and we'll go to digging." They worked and sweated for half an hour. No result. They toiled another half-hour. Still no result. Huck said: "Do they always bury it as deep as this?" "Sometimes--not always. Not generally. I reckon we haven't got the right place." So they chose a new spot and began again. The labor dragged a little, but still they made progress. They pegged away in silence for some time. Finally Huck leaned on his shovel, swabbed the beaded drops from his brow with his sleeve, and said: "Where you going to dig next, after we get this one?" "I reckon maybe we'll tackle the old tree that's over yonder on Cardiff Hill back of the widow's." "I reckon that'll be a good one. But won't the widow take it away from us, Tom? It's on her land." "SHE take it away! Maybe she'd like to try it once. Whoever finds one of these hid treasures, it belongs to him. It don't make any difference whose land it's on." That was satisfactory. The work went on. By and by Huck said: "Blame it, we must be in the wrong place again. What do you think?" "It is mighty curious, Huck. I don't understand it. Sometimes witches interfere. I reckon maybe that's what's the trouble now." "Shucks! Witches ain't got no power in the daytime." "Well, that's so. I didn't think of that. Oh, I know what the matter is! What a blamed lot of fools we are! You got to find out where the shadow of the limb falls at midnight, and that's where you dig!" "Then consound it, we've fooled away all this work for nothing. Now hang it all, we got to come back in the night. It's an awful long way. Can you get out?" "I bet I will. We've got to do it to-night, too, because if somebody sees these holes they'll know in a minute what's here and they'll go for it." "Well, I'll come around and maow to-night." "All right. Let's hide the tools in the bushes." The boys were there that night, about the appointed time. They sat in the shadow waiting. It was a lonely place, and an hour made solemn by old traditions. Spirits whispered in the rustling leaves, ghosts lurked in the murky nooks, the deep baying of a hound floated up out of the distance, an owl answered with his sepulchral note. The boys were subdued by these solemnities, and talked little. By and by they judged that twelve had come; they marked where the shadow fell, and began to dig. Their hopes commenced to rise. Their interest grew stronger, and their industry kept pace with it. The hole deepened and still deepened, but every time their hearts jumped to hear the pick strike upon something, they only suffered a new disappointment. It was only a stone or a chunk. At last Tom said: "It ain't any use, Huck, we're wrong again." "Well, but we CAN'T be wrong. We spotted the shadder to a dot." "I know it, but then there's another thing." "What's that?". "Why, we only guessed at the time. Like enough it was too late or too early." Huck dropped his shovel. "That's it," said he. "That's the very trouble. We got to give this one up. We can't ever tell the right time, and besides this kind of thing's too awful, here this time of night with witches and ghosts a-fluttering around so. I feel as if something's behind me all the time; and I'm afeard to turn around, becuz maybe there's others in front a-waiting for a chance. I been creeping all over, ever since I got here." "Well, I've been pretty much so, too, Huck. They most always put in a dead man when they bury a treasure under a tree, to look out for it." "Lordy!" "Yes, they do. I've always heard that." "Tom, I don't like to fool around much where there's dead people. A body's bound to get into trouble with 'em, sure." "I don't like to stir 'em up, either. S'pose this one here was to stick his skull out and say something!" "Don't Tom! It's awful." "Well, it just is. Huck, I don't feel comfortable a bit." "Say, Tom, let's give this place up, and try somewheres else." "All right, I reckon we better." "What'll it be?" Tom considered awhile; and then said: "The ha'nted house. That's it!" "Blame it, I don't like ha'nted houses, Tom. Why, they're a dern sight worse'n dead people. Dead people might talk, maybe, but they don't come sliding around in a shroud, when you ain't noticing, and peep over your shoulder all of a sudden and grit their teeth, the way a ghost does. I couldn't stand such a thing as that, Tom--nobody could." "Yes, but, Huck, ghosts don't travel around only at night. They won't hender us from digging there in the daytime." "Well, that's so. But you know mighty well people don't go about that ha'nted house in the day nor the night." "Well, that's mostly because they don't like to go where a man's been murdered, anyway--but nothing's ever been seen around that house except in the night--just some blue lights slipping by the windows--no regular ghosts." "Well, where you see one of them blue lights flickering around, Tom, you can bet there's a ghost mighty close behind it. It stands to reason. Becuz you know that they don't anybody but ghosts use 'em." "Yes, that's so. But anyway they don't come around in the daytime, so what's the use of our being afeard?" "Well, all right. We'll tackle the ha'nted house if you say so--but I reckon it's taking chances." They had started down the hill by this time. There in the middle of the moonlit valley below them stood the "ha'nted" house, utterly isolated, its fences gone long ago, rank weeds smothering the very doorsteps, the chimney crumbled to ruin, the window-sashes vacant, a corner of the roof caved in. The boys gazed awhile, half expecting to see a blue light flit past a window; then talking in a low tone, as befitted the time and the circumstances, they struck far off to the right, to give the haunted house a wide berth, and took their way homeward through the woods that adorned the rearward side of Cardiff Hill. CHAPTER XXVI ABOUT noon the next day the boys arrived at the dead tree; they had come for their tools. Tom was impatient to go to the haunted house; Huck was measurably so, also--but suddenly said: "Lookyhere, Tom, do you know what day it is?" Tom mentally ran over the days of the week, and then quickly lifted his eyes with a startled look in them-- "My! I never once thought of it, Huck!" "Well, I didn't neither, but all at once it popped onto me that it was Friday." "Blame it, a body can't be too careful, Huck. We might 'a' got into an awful scrape, tackling such a thing on a Friday." "MIGHT! Better say we WOULD! There's some lucky days, maybe, but Friday ain't." "Any fool knows that. I don't reckon YOU was the first that found it out, Huck." "Well, I never said I was, did I? And Friday ain't all, neither. I had a rotten bad dream last night--dreampt about rats." "No! Sure sign of trouble. Did they fight?" "No." "Well, that's good, Huck. When they don't fight it's only a sign that there's trouble around, you know. All we got to do is to look mighty sharp and keep out of it. We'll drop this thing for to-day, and play. Do you know Robin Hood, Huck?" "No. Who's Robin Hood?" "Why, he was one of the greatest men that was ever in England--and the best. He was a robber." "Cracky, I wisht I was. Who did he rob?" "Only sheriffs and bishops and rich people and kings, and such like. But he never bothered the poor. He loved 'em. He always divided up with 'em perfectly square." "Well, he must 'a' been a brick." "I bet you he was, Huck. Oh, he was the noblest man that ever was. They ain't any such men now, I can tell you. He could lick any man in England, with one hand tied behind him; and he could take his yew bow and plug a ten-cent piece every time, a mile and a half." "What's a YEW bow?" "I don't know. It's some kind of a bow, of course. And if he hit that dime only on the edge he would set down and cry--and curse. But we'll play Robin Hood--it's nobby fun. I'll learn you." "I'm agreed." So they played Robin Hood all the afternoon, now and then casting a yearning eye down upon the haunted house and passing a remark about the morrow's prospects and possibilities there. As the sun began to sink into the west they took their way homeward athwart the long shadows of the trees and soon were buried from sight in the forests of Cardiff Hill. On Saturday, shortly after noon, the boys were at the dead tree again. They had a smoke and a chat in the shade, and then dug a little in their last hole, not with great hope, but merely because Tom said there were so many cases where people had given up a treasure after getting down within six inches of it, and then somebody else had come along and turned it up with a single thrust of a shovel. The thing failed this time, however, so the boys shouldered their tools and went away feeling that they had not trifled with fortune, but had fulfilled all the requirements that belong to the business of treasure-hunting. When they reached the haunted house there was something so weird and grisly about the dead silence that reigned there under the baking sun, and something so depressing about the loneliness and desolation of the place, that they were afraid, for a moment, to venture in. Then they crept to the door and took a trembling peep. They saw a weed-grown, floorless room, unplastered, an ancient fireplace, vacant windows, a ruinous staircase; and here, there, and everywhere hung ragged and abandoned cobwebs. They presently entered, softly, with quickened pulses, talking in whispers, ears alert to catch the slightest sound, and muscles tense and ready for instant retreat. In a little while familiarity modified their fears and they gave the place a critical and interested examination, rather admiring their own boldness, and wondering at it, too. Next they wanted to look up-stairs. This was something like cutting off retreat, but they got to daring each other, and of course there could be but one result--they threw their tools into a corner and made the ascent. Up there were the same signs of decay. In one corner they found a closet that promised mystery, but the promise was a fraud--there was nothing in it. Their courage was up now and well in hand. They were about to go down and begin work when-- "Sh!" said Tom. "What is it?" whispered Huck, blanching with fright. "Sh!... There!... Hear it?" "Yes!... Oh, my! Let's run!" "Keep still! Don't you budge! They're coming right toward the door." The boys stretched themselves upon the floor with their eyes to knot-holes in the planking, and lay waiting, in a misery of fear. "They've stopped.... No--coming.... Here they are. Don't whisper another word, Huck. My goodness, I wish I was out of this!" Two men entered. Each boy said to himself: "There's the old deaf and dumb Spaniard that's been about town once or twice lately--never saw t'other man before." "T'other" was a ragged, unkempt creature, with nothing very pleasant in his face. The Spaniard was wrapped in a serape; he had bushy white whiskers; long white hair flowed from under his sombrero, and he wore green goggles. When they came in, "t'other" was talking in a low voice; they sat down on the ground, facing the door, with their backs to the wall, and the speaker continued his remarks. His manner became less guarded and his words more distinct as he proceeded: "No," said he, "I've thought it all over, and I don't like it. It's dangerous." "Dangerous!" grunted the "deaf and dumb" Spaniard--to the vast surprise of the boys. "Milksop!" This voice made the boys gasp and quake. It was Injun Joe's! There was silence for some time. Then Joe said: "What's any more dangerous than that job up yonder--but nothing's come of it." "That's different. Away up the river so, and not another house about. 'Twon't ever be known that we tried, anyway, long as we didn't succeed." "Well, what's more dangerous than coming here in the daytime!--anybody would suspicion us that saw us." "I know that. But there warn't any other place as handy after that fool of a job. I want to quit this shanty. I wanted to yesterday, only it warn't any use trying to stir out of here, with those infernal boys playing over there on the hill right in full view." "Those infernal boys" quaked again under the inspiration of this remark, and thought how lucky it was that they had remembered it was Friday and concluded to wait a day. They wished in their hearts they had waited a year. The two men got out some food and made a luncheon. After a long and thoughtful silence, Injun Joe said: "Look here, lad--you go back up the river where you belong. Wait there till you hear from me. I'll take the chances on dropping into this town just once more, for a look. We'll do that 'dangerous' job after I've spied around a little and think things look well for it. Then for Texas! We'll leg it together!" This was satisfactory. Both men presently fell to yawning, and Injun Joe said: "I'm dead for sleep! It's your turn to watch." He curled down in the weeds and soon began to snore. His comrade stirred him once or twice and he became quiet. Presently the watcher began to nod; his head drooped lower and lower, both men began to snore now. The boys drew a long, grateful breath. Tom whispered: "Now's our chance--come!" Huck said: "I can't--I'd die if they was to wake." Tom urged--Huck held back. At last Tom rose slowly and softly, and started alone. But the first step he made wrung such a hideous creak from the crazy floor that he sank down almost dead with fright. He never made a second attempt. The boys lay there counting the dragging moments till it seemed to them that time must be done and eternity growing gray; and then they were grateful to note that at last the sun was setting. Now one snore ceased. Injun Joe sat up, stared around--smiled grimly upon his comrade, whose head was drooping upon his knees--stirred him up with his foot and said: "Here! YOU'RE a watchman, ain't you! All right, though--nothing's happened." "My! have I been asleep?" "Oh, partly, partly. Nearly time for us to be moving, pard. What'll we do with what little swag we've got left?" "I don't know--leave it here as we've always done, I reckon. No use to take it away till we start south. Six hundred and fifty in silver's something to carry." "Well--all right--it won't matter to come here once more." "No--but I'd say come in the night as we used to do--it's better." "Yes: but look here; it may be a good while before I get the right chance at that job; accidents might happen; 'tain't in such a very good place; we'll just regularly bury it--and bury it deep." "Good idea," said the comrade, who walked across the room, knelt down, raised one of the rearward hearth-stones and took out a bag that jingled pleasantly. He subtracted from it twenty or thirty dollars for himself and as much for Injun Joe, and passed the bag to the latter, who was on his knees in the corner, now, digging with his bowie-knife. The boys forgot all their fears, all their miseries in an instant. With gloating eyes they watched every movement. Luck!--the splendor of it was beyond all imagination! Six hundred dollars was money enough to make half a dozen boys rich! Here was treasure-hunting under the happiest auspices--there would not be any bothersome uncertainty as to where to dig. They nudged each other every moment--eloquent nudges and easily understood, for they simply meant--"Oh, but ain't you glad NOW we're here!" Joe's knife struck upon something. "Hello!" said he. "What is it?" said his comrade. "Half-rotten plank--no, it's a box, I believe. Here--bear a hand and we'll see what it's here for. Never mind, I've broke a hole." He reached his hand in and drew it out-- "Man, it's money!" The two men examined the handful of coins. They were gold. The boys above were as excited as themselves, and as delighted. Joe's comrade said: "We'll make quick work of this. There's an old rusty pick over amongst the weeds in the corner the other side of the fireplace--I saw it a minute ago." He ran and brought the boys' pick and shovel. Injun Joe took the pick, looked it over critically, shook his head, muttered something to himself, and then began to use it. The box was soon unearthed. It was not very large; it was iron bound and had been very strong before the slow years had injured it. The men contemplated the treasure awhile in blissful silence. "Pard, there's thousands of dollars here," said Injun Joe. "'Twas always said that Murrel's gang used to be around here one summer," the stranger observed. "I know it," said Injun Joe; "and this looks like it, I should say." "Now you won't need to do that job." The half-breed frowned. Said he: "You don't know me. Least you don't know all about that thing. 'Tain't robbery altogether--it's REVENGE!" and a wicked light flamed in his eyes. "I'll need your help in it. When it's finished--then Texas. Go home to your Nance and your kids, and stand by till you hear from me." "Well--if you say so; what'll we do with this--bury it again?" "Yes. [Ravishing delight overhead.] NO! by the great Sachem, no! [Profound distress overhead.] I'd nearly forgot. That pick had fresh earth on it! [The boys were sick with terror in a moment.] What business has a pick and a shovel here? What business with fresh earth on them? Who brought them here--and where are they gone? Have you heard anybody?--seen anybody? What! bury it again and leave them to come and see the ground disturbed? Not exactly--not exactly. We'll take it to my den." "Why, of course! Might have thought of that before. You mean Number One?" "No--Number Two--under the cross. The other place is bad--too common." "All right. It's nearly dark enough to start." Injun Joe got up and went about from window to window cautiously peeping out. Presently he said: "Who could have brought those tools here? Do you reckon they can be up-stairs?" The boys' breath forsook them. Injun Joe put his hand on his knife, halted a moment, undecided, and then turned toward the stairway. The boys thought of the closet, but their strength was gone. The steps came creaking up the stairs--the intolerable distress of the situation woke the stricken resolution of the lads--they were about to spring for the closet, when there was a crash of rotten timbers and Injun Joe landed on the ground amid the debris of the ruined stairway. He gathered himself up cursing, and his comrade said: "Now what's the use of all that? If it's anybody, and they're up there, let them STAY there--who cares? If they want to jump down, now, and get into trouble, who objects? It will be dark in fifteen minutes --and then let them follow us if they want to. I'm willing. In my opinion, whoever hove those things in here caught a sight of us and took us for ghosts or devils or something. I'll bet they're running yet." Joe grumbled awhile; then he agreed with his friend that what daylight was left ought to be economized in getting things ready for leaving. Shortly afterward they slipped out of the house in the deepening twilight, and moved toward the river with their precious box. Tom and Huck rose up, weak but vastly relieved, and stared after them through the chinks between the logs of the house. Follow? Not they. They were content to reach ground again without broken necks, and take the townward track over the hill. They did not talk much. They were too much absorbed in hating themselves--hating the ill luck that made them take the spade and the pick there. But for that, Injun Joe never would have suspected. He would have hidden the silver with the gold to wait there till his "revenge" was satisfied, and then he would have had the misfortune to find that money turn up missing. Bitter, bitter luck that the tools were ever brought there! They resolved to keep a lookout for that Spaniard when he should come to town spying out for chances to do his revengeful job, and follow him to "Number Two," wherever that might be. Then a ghastly thought occurred to Tom. "Revenge? What if he means US, Huck!" "Oh, don't!" said Huck, nearly fainting. They talked it all over, and as they entered town they agreed to believe that he might possibly mean somebody else--at least that he might at least mean nobody but Tom, since only Tom had testified. Very, very small comfort it was to Tom to be alone in danger! Company would be a palpable improvement, he thought. CHAPTER XXVII THE adventure of the day mightily tormented Tom's dreams that night. Four times he had his hands on that rich treasure and four times it wasted to nothingness in his fingers as sleep forsook him and wakefulness brought back the hard reality of his misfortune. As he lay in the early morning recalling the incidents of his great adventure, he noticed that they seemed curiously subdued and far away--somewhat as if they had happened in another world, or in a time long gone by. Then it occurred to him that the great adventure itself must be a dream! There was one very strong argument in favor of this idea--namely, that the quantity of coin he had seen was too vast to be real. He had never seen as much as fifty dollars in one mass before, and he was like all boys of his age and station in life, in that he imagined that all references to "hundreds" and "thousands" were mere fanciful forms of speech, and that no such sums really existed in the world. He never had supposed for a moment that so large a sum as a hundred dollars was to be found in actual money in any one's possession. If his notions of hidden treasure had been analyzed, they would have been found to consist of a handful of real dimes and a bushel of vague, splendid, ungraspable dollars. But the incidents of his adventure grew sensibly sharper and clearer under the attrition of thinking them over, and so he presently found himself leaning to the impression that the thing might not have been a dream, after all. This uncertainty must be swept away. He would snatch a hurried breakfast and go and find Huck. Huck was sitting on the gunwale of a flatboat, listlessly dangling his feet in the water and looking very melancholy. Tom concluded to let Huck lead up to the subject. If he did not do it, then the adventure would be proved to have been only a dream. "Hello, Huck!" "Hello, yourself." Silence, for a minute. "Tom, if we'd 'a' left the blame tools at the dead tree, we'd 'a' got the money. Oh, ain't it awful!" "'Tain't a dream, then, 'tain't a dream! Somehow I most wish it was. Dog'd if I don't, Huck." "What ain't a dream?" "Oh, that thing yesterday. I been half thinking it was." "Dream! If them stairs hadn't broke down you'd 'a' seen how much dream it was! I've had dreams enough all night--with that patch-eyed Spanish devil going for me all through 'em--rot him!" "No, not rot him. FIND him! Track the money!" "Tom, we'll never find him. A feller don't have only one chance for such a pile--and that one's lost. I'd feel mighty shaky if I was to see him, anyway." "Well, so'd I; but I'd like to see him, anyway--and track him out--to his Number Two." "Number Two--yes, that's it. I been thinking 'bout that. But I can't make nothing out of it. What do you reckon it is?" "I dono. It's too deep. Say, Huck--maybe it's the number of a house!" "Goody!... No, Tom, that ain't it. If it is, it ain't in this one-horse town. They ain't no numbers here." "Well, that's so. Lemme think a minute. Here--it's the number of a room--in a tavern, you know!" "Oh, that's the trick! They ain't only two taverns. We can find out quick." "You stay here, Huck, till I come." Tom was off at once. He did not care to have Huck's company in public places. He was gone half an hour. He found that in the best tavern, No. 2 had long been occupied by a young lawyer, and was still so occupied. In the less ostentatious house, No. 2 was a mystery. The tavern-keeper's young son said it was kept locked all the time, and he never saw anybody go into it or come out of it except at night; he did not know any particular reason for this state of things; had had some little curiosity, but it was rather feeble; had made the most of the mystery by entertaining himself with the idea that that room was "ha'nted"; had noticed that there was a light in there the night before. "That's what I've found out, Huck. I reckon that's the very No. 2 we're after." "I reckon it is, Tom. Now what you going to do?" "Lemme think." Tom thought a long time. Then he said: "I'll tell you. The back door of that No. 2 is the door that comes out into that little close alley between the tavern and the old rattle trap of a brick store. Now you get hold of all the door-keys you can find, and I'll nip all of auntie's, and the first dark night we'll go there and try 'em. And mind you, keep a lookout for Injun Joe, because he said he was going to drop into town and spy around once more for a chance to get his revenge. If you see him, you just follow him; and if he don't go to that No. 2, that ain't the place." "Lordy, I don't want to foller him by myself!" "Why, it'll be night, sure. He mightn't ever see you--and if he did, maybe he'd never think anything." "Well, if it's pretty dark I reckon I'll track him. I dono--I dono. I'll try." "You bet I'll follow him, if it's dark, Huck. Why, he might 'a' found out he couldn't get his revenge, and be going right after that money." "It's so, Tom, it's so. I'll foller him; I will, by jingoes!" "Now you're TALKING! Don't you ever weaken, Huck, and I won't." CHAPTER XXVIII THAT night Tom and Huck were ready for their adventure. They hung about the neighborhood of the tavern until after nine, one watching the alley at a distance and the other the tavern door. Nobody entered the alley or left it; nobody resembling the Spaniard entered or left the tavern door. The night promised to be a fair one; so Tom went home with the understanding that if a considerable degree of darkness came on, Huck was to come and "maow," whereupon he would slip out and try the keys. But the night remained clear, and Huck closed his watch and retired to bed in an empty sugar hogshead about twelve. Tuesday the boys had the same ill luck. Also Wednesday. But Thursday night promised better. Tom slipped out in good season with his aunt's old tin lantern, and a large towel to blindfold it with. He hid the lantern in Huck's sugar hogshead and the watch began. An hour before midnight the tavern closed up and its lights (the only ones thereabouts) were put out. No Spaniard had been seen. Nobody had entered or left the alley. Everything was auspicious. The blackness of darkness reigned, the perfect stillness was interrupted only by occasional mutterings of distant thunder. Tom got his lantern, lit it in the hogshead, wrapped it closely in the towel, and the two adventurers crept in the gloom toward the tavern. Huck stood sentry and Tom felt his way into the alley. Then there was a season of waiting anxiety that weighed upon Huck's spirits like a mountain. He began to wish he could see a flash from the lantern--it would frighten him, but it would at least tell him that Tom was alive yet. It seemed hours since Tom had disappeared. Surely he must have fainted; maybe he was dead; maybe his heart had burst under terror and excitement. In his uneasiness Huck found himself drawing closer and closer to the alley; fearing all sorts of dreadful things, and momentarily expecting some catastrophe to happen that would take away his breath. There was not much to take away, for he seemed only able to inhale it by thimblefuls, and his heart would soon wear itself out, the way it was beating. Suddenly there was a flash of light and Tom came tearing by him: "Run!" said he; "run, for your life!" He needn't have repeated it; once was enough; Huck was making thirty or forty miles an hour before the repetition was uttered. The boys never stopped till they reached the shed of a deserted slaughter-house at the lower end of the village. Just as they got within its shelter the storm burst and the rain poured down. As soon as Tom got his breath he said: "Huck, it was awful! I tried two of the keys, just as soft as I could; but they seemed to make such a power of racket that I couldn't hardly get my breath I was so scared. They wouldn't turn in the lock, either. Well, without noticing what I was doing, I took hold of the knob, and open comes the door! It warn't locked! I hopped in, and shook off the towel, and, GREAT CAESAR'S GHOST!" "What!--what'd you see, Tom?" "Huck, I most stepped onto Injun Joe's hand!" "No!" "Yes! He was lying there, sound asleep on the floor, with his old patch on his eye and his arms spread out." "Lordy, what did you do? Did he wake up?" "No, never budged. Drunk, I reckon. I just grabbed that towel and started!" "I'd never 'a' thought of the towel, I bet!" "Well, I would. My aunt would make me mighty sick if I lost it." "Say, Tom, did you see that box?" "Huck, I didn't wait to look around. I didn't see the box, I didn't see the cross. I didn't see anything but a bottle and a tin cup on the floor by Injun Joe; yes, I saw two barrels and lots more bottles in the room. Don't you see, now, what's the matter with that ha'nted room?" "How?" "Why, it's ha'nted with whiskey! Maybe ALL the Temperance Taverns have got a ha'nted room, hey, Huck?" "Well, I reckon maybe that's so. Who'd 'a' thought such a thing? But say, Tom, now's a mighty good time to get that box, if Injun Joe's drunk." "It is, that! You try it!" Huck shuddered. "Well, no--I reckon not." "And I reckon not, Huck. Only one bottle alongside of Injun Joe ain't enough. If there'd been three, he'd be drunk enough and I'd do it." There was a long pause for reflection, and then Tom said: "Lookyhere, Huck, less not try that thing any more till we know Injun Joe's not in there. It's too scary. Now, if we watch every night, we'll be dead sure to see him go out, some time or other, and then we'll snatch that box quicker'n lightning." "Well, I'm agreed. I'll watch the whole night long, and I'll do it every night, too, if you'll do the other part of the job." "All right, I will. All you got to do is to trot up Hooper Street a block and maow--and if I'm asleep, you throw some gravel at the window and that'll fetch me." "Agreed, and good as wheat!" "Now, Huck, the storm's over, and I'll go home. It'll begin to be daylight in a couple of hours. You go back and watch that long, will you?" "I said I would, Tom, and I will. I'll ha'nt that tavern every night for a year! I'll sleep all day and I'll stand watch all night." "That's all right. Now, where you going to sleep?" "In Ben Rogers' hayloft. He lets me, and so does his pap's nigger man, Uncle Jake. I tote water for Uncle Jake whenever he wants me to, and any time I ask him he gives me a little something to eat if he can spare it. That's a mighty good nigger, Tom. He likes me, becuz I don't ever act as if I was above him. Sometime I've set right down and eat WITH him. But you needn't tell that. A body's got to do things when he's awful hungry he wouldn't want to do as a steady thing." "Well, if I don't want you in the daytime, I'll let you sleep. I won't come bothering around. Any time you see something's up, in the night, just skip right around and maow." CHAPTER XXIX THE first thing Tom heard on Friday morning was a glad piece of news --Judge Thatcher's family had come back to town the night before. Both Injun Joe and the treasure sunk into secondary importance for a moment, and Becky took the chief place in the boy's interest. He saw her and they had an exhausting good time playing "hi-spy" and "gully-keeper" with a crowd of their school-mates. The day was completed and crowned in a peculiarly satisfactory way: Becky teased her mother to appoint the next day for the long-promised and long-delayed picnic, and she consented. The child's delight was boundless; and Tom's not more moderate. The invitations were sent out before sunset, and straightway the young folks of the village were thrown into a fever of preparation and pleasurable anticipation. Tom's excitement enabled him to keep awake until a pretty late hour, and he had good hopes of hearing Huck's "maow," and of having his treasure to astonish Becky and the picnickers with, next day; but he was disappointed. No signal came that night. Morning came, eventually, and by ten or eleven o'clock a giddy and rollicking company were gathered at Judge Thatcher's, and everything was ready for a start. It was not the custom for elderly people to mar the picnics with their presence. The children were considered safe enough under the wings of a few young ladies of eighteen and a few young gentlemen of twenty-three or thereabouts. The old steam ferryboat was chartered for the occasion; presently the gay throng filed up the main street laden with provision-baskets. Sid was sick and had to miss the fun; Mary remained at home to entertain him. The last thing Mrs. Thatcher said to Becky, was: "You'll not get back till late. Perhaps you'd better stay all night with some of the girls that live near the ferry-landing, child." "Then I'll stay with Susy Harper, mamma." "Very well. And mind and behave yourself and don't be any trouble." Presently, as they tripped along, Tom said to Becky: "Say--I'll tell you what we'll do. 'Stead of going to Joe Harper's we'll climb right up the hill and stop at the Widow Douglas'. She'll have ice-cream! She has it most every day--dead loads of it. And she'll be awful glad to have us." "Oh, that will be fun!" Then Becky reflected a moment and said: "But what will mamma say?" "How'll she ever know?" The girl turned the idea over in her mind, and said reluctantly: "I reckon it's wrong--but--" "But shucks! Your mother won't know, and so what's the harm? All she wants is that you'll be safe; and I bet you she'd 'a' said go there if she'd 'a' thought of it. I know she would!" The Widow Douglas' splendid hospitality was a tempting bait. It and Tom's persuasions presently carried the day. So it was decided to say nothing anybody about the night's programme. Presently it occurred to Tom that maybe Huck might come this very night and give the signal. The thought took a deal of the spirit out of his anticipations. Still he could not bear to give up the fun at Widow Douglas'. And why should he give it up, he reasoned--the signal did not come the night before, so why should it be any more likely to come to-night? The sure fun of the evening outweighed the uncertain treasure; and, boy-like, he determined to yield to the stronger inclination and not allow himself to think of the box of money another time that day. Three miles below town the ferryboat stopped at the mouth of a woody hollow and tied up. The crowd swarmed ashore and soon the forest distances and craggy heights echoed far and near with shoutings and laughter. All the different ways of getting hot and tired were gone through with, and by-and-by the rovers straggled back to camp fortified with responsible appetites, and then the destruction of the good things began. After the feast there was a refreshing season of rest and chat in the shade of spreading oaks. By-and-by somebody shouted: "Who's ready for the cave?" Everybody was. Bundles of candles were procured, and straightway there was a general scamper up the hill. The mouth of the cave was up the hillside--an opening shaped like a letter A. Its massive oaken door stood unbarred. Within was a small chamber, chilly as an ice-house, and walled by Nature with solid limestone that was dewy with a cold sweat. It was romantic and mysterious to stand here in the deep gloom and look out upon the green valley shining in the sun. But the impressiveness of the situation quickly wore off, and the romping began again. The moment a candle was lighted there was a general rush upon the owner of it; a struggle and a gallant defence followed, but the candle was soon knocked down or blown out, and then there was a glad clamor of laughter and a new chase. But all things have an end. By-and-by the procession went filing down the steep descent of the main avenue, the flickering rank of lights dimly revealing the lofty walls of rock almost to their point of junction sixty feet overhead. This main avenue was not more than eight or ten feet wide. Every few steps other lofty and still narrower crevices branched from it on either hand--for McDougal's cave was but a vast labyrinth of crooked aisles that ran into each other and out again and led nowhere. It was said that one might wander days and nights together through its intricate tangle of rifts and chasms, and never find the end of the cave; and that he might go down, and down, and still down, into the earth, and it was just the same--labyrinth under labyrinth, and no end to any of them. No man "knew" the cave. That was an impossible thing. Most of the young men knew a portion of it, and it was not customary to venture much beyond this known portion. Tom Sawyer knew as much of the cave as any one. The procession moved along the main avenue some three-quarters of a mile, and then groups and couples began to slip aside into branch avenues, fly along the dismal corridors, and take each other by surprise at points where the corridors joined again. Parties were able to elude each other for the space of half an hour without going beyond the "known" ground. By-and-by, one group after another came straggling back to the mouth of the cave, panting, hilarious, smeared from head to foot with tallow drippings, daubed with clay, and entirely delighted with the success of the day. Then they were astonished to find that they had been taking no note of time and that night was about at hand. The clanging bell had been calling for half an hour. However, this sort of close to the day's adventures was romantic and therefore satisfactory. When the ferryboat with her wild freight pushed into the stream, nobody cared sixpence for the wasted time but the captain of the craft. Huck was already upon his watch when the ferryboat's lights went glinting past the wharf. He heard no noise on board, for the young people were as subdued and still as people usually are who are nearly tired to death. He wondered what boat it was, and why she did not stop at the wharf--and then he dropped her out of his mind and put his attention upon his business. The night was growing cloudy and dark. Ten o'clock came, and the noise of vehicles ceased, scattered lights began to wink out, all straggling foot-passengers disappeared, the village betook itself to its slumbers and left the small watcher alone with the silence and the ghosts. Eleven o'clock came, and the tavern lights were put out; darkness everywhere, now. Huck waited what seemed a weary long time, but nothing happened. His faith was weakening. Was there any use? Was there really any use? Why not give it up and turn in? A noise fell upon his ear. He was all attention in an instant. The alley door closed softly. He sprang to the corner of the brick store. The next moment two men brushed by him, and one seemed to have something under his arm. It must be that box! So they were going to remove the treasure. Why call Tom now? It would be absurd--the men would get away with the box and never be found again. No, he would stick to their wake and follow them; he would trust to the darkness for security from discovery. So communing with himself, Huck stepped out and glided along behind the men, cat-like, with bare feet, allowing them to keep just far enough ahead not to be invisible. They moved up the river street three blocks, then turned to the left up a cross-street. They went straight ahead, then, until they came to the path that led up Cardiff Hill; this they took. They passed by the old Welshman's house, half-way up the hill, without hesitating, and still climbed upward. Good, thought Huck, they will bury it in the old quarry. But they never stopped at the quarry. They passed on, up the summit. They plunged into the narrow path between the tall sumach bushes, and were at once hidden in the gloom. Huck closed up and shortened his distance, now, for they would never be able to see him. He trotted along awhile; then slackened his pace, fearing he was gaining too fast; moved on a piece, then stopped altogether; listened; no sound; none, save that he seemed to hear the beating of his own heart. The hooting of an owl came over the hill--ominous sound! But no footsteps. Heavens, was everything lost! He was about to spring with winged feet, when a man cleared his throat not four feet from him! Huck's heart shot into his throat, but he swallowed it again; and then he stood there shaking as if a dozen agues had taken charge of him at once, and so weak that he thought he must surely fall to the ground. He knew where he was. He knew he was within five steps of the stile leading into Widow Douglas' grounds. Very well, he thought, let them bury it there; it won't be hard to find. Now there was a voice--a very low voice--Injun Joe's: "Damn her, maybe she's got company--there's lights, late as it is." "I can't see any." This was that stranger's voice--the stranger of the haunted house. A deadly chill went to Huck's heart--this, then, was the "revenge" job! His thought was, to fly. Then he remembered that the Widow Douglas had been kind to him more than once, and maybe these men were going to murder her. He wished he dared venture to warn her; but he knew he didn't dare--they might come and catch him. He thought all this and more in the moment that elapsed between the stranger's remark and Injun Joe's next--which was-- "Because the bush is in your way. Now--this way--now you see, don't you?" "Yes. Well, there IS company there, I reckon. Better give it up." "Give it up, and I just leaving this country forever! Give it up and maybe never have another chance. I tell you again, as I've told you before, I don't care for her swag--you may have it. But her husband was rough on me--many times he was rough on me--and mainly he was the justice of the peace that jugged me for a vagrant. And that ain't all. It ain't a millionth part of it! He had me HORSEWHIPPED!--horsewhipped in front of the jail, like a nigger!--with all the town looking on! HORSEWHIPPED!--do you understand? He took advantage of me and died. But I'll take it out of HER." "Oh, don't kill her! Don't do that!" "Kill? Who said anything about killing? I would kill HIM if he was here; but not her. When you want to get revenge on a woman you don't kill her--bosh! you go for her looks. You slit her nostrils--you notch her ears like a sow!" "By God, that's--" "Keep your opinion to yourself! It will be safest for you. I'll tie her to the bed. If she bleeds to death, is that my fault? I'll not cry, if she does. My friend, you'll help me in this thing--for MY sake --that's why you're here--I mightn't be able alone. If you flinch, I'll kill you. Do you understand that? And if I have to kill you, I'll kill her--and then I reckon nobody'll ever know much about who done this business." "Well, if it's got to be done, let's get at it. The quicker the better--I'm all in a shiver." "Do it NOW? And company there? Look here--I'll get suspicious of you, first thing you know. No--we'll wait till the lights are out--there's no hurry." Huck felt that a silence was going to ensue--a thing still more awful than any amount of murderous talk; so he held his breath and stepped gingerly back; planted his foot carefully and firmly, after balancing, one-legged, in a precarious way and almost toppling over, first on one side and then on the other. He took another step back, with the same elaboration and the same risks; then another and another, and--a twig snapped under his foot! His breath stopped and he listened. There was no sound--the stillness was perfect. His gratitude was measureless. Now he turned in his tracks, between the walls of sumach bushes--turned himself as carefully as if he were a ship--and then stepped quickly but cautiously along. When he emerged at the quarry he felt secure, and so he picked up his nimble heels and flew. Down, down he sped, till he reached the Welshman's. He banged at the door, and presently the heads of the old man and his two stalwart sons were thrust from windows. "What's the row there? Who's banging? What do you want?" "Let me in--quick! I'll tell everything." "Why, who are you?" "Huckleberry Finn--quick, let me in!" "Huckleberry Finn, indeed! It ain't a name to open many doors, I judge! But let him in, lads, and let's see what's the trouble." "Please don't ever tell I told you," were Huck's first words when he got in. "Please don't--I'd be killed, sure--but the widow's been good friends to me sometimes, and I want to tell--I WILL tell if you'll promise you won't ever say it was me." "By George, he HAS got something to tell, or he wouldn't act so!" exclaimed the old man; "out with it and nobody here'll ever tell, lad." Three minutes later the old man and his sons, well armed, were up the hill, and just entering the sumach path on tiptoe, their weapons in their hands. Huck accompanied them no further. He hid behind a great bowlder and fell to listening. There was a lagging, anxious silence, and then all of a sudden there was an explosion of firearms and a cry. Huck waited for no particulars. He sprang away and sped down the hill as fast as his legs could carry him. CHAPTER XXX AS the earliest suspicion of dawn appeared on Sunday morning, Huck came groping up the hill and rapped gently at the old Welshman's door. The inmates were asleep, but it was a sleep that was set on a hair-trigger, on account of the exciting episode of the night. A call came from a window: "Who's there!" Huck's scared voice answered in a low tone: "Please let me in! It's only Huck Finn!" "It's a name that can open this door night or day, lad!--and welcome!" These were strange words to the vagabond boy's ears, and the pleasantest he had ever heard. He could not recollect that the closing word had ever been applied in his case before. The door was quickly unlocked, and he entered. Huck was given a seat and the old man and his brace of tall sons speedily dressed themselves. "Now, my boy, I hope you're good and hungry, because breakfast will be ready as soon as the sun's up, and we'll have a piping hot one, too --make yourself easy about that! I and the boys hoped you'd turn up and stop here last night." "I was awful scared," said Huck, "and I run. I took out when the pistols went off, and I didn't stop for three mile. I've come now becuz I wanted to know about it, you know; and I come before daylight becuz I didn't want to run across them devils, even if they was dead." "Well, poor chap, you do look as if you'd had a hard night of it--but there's a bed here for you when you've had your breakfast. No, they ain't dead, lad--we are sorry enough for that. You see we knew right where to put our hands on them, by your description; so we crept along on tiptoe till we got within fifteen feet of them--dark as a cellar that sumach path was--and just then I found I was going to sneeze. It was the meanest kind of luck! I tried to keep it back, but no use --'twas bound to come, and it did come! I was in the lead with my pistol raised, and when the sneeze started those scoundrels a-rustling to get out of the path, I sung out, 'Fire boys!' and blazed away at the place where the rustling was. So did the boys. But they were off in a jiffy, those villains, and we after them, down through the woods. I judge we never touched them. They fired a shot apiece as they started, but their bullets whizzed by and didn't do us any harm. As soon as we lost the sound of their feet we quit chasing, and went down and stirred up the constables. They got a posse together, and went off to guard the river bank, and as soon as it is light the sheriff and a gang are going to beat up the woods. My boys will be with them presently. I wish we had some sort of description of those rascals--'twould help a good deal. But you couldn't see what they were like, in the dark, lad, I suppose?" "Oh yes; I saw them down-town and follered them." "Splendid! Describe them--describe them, my boy!" "One's the old deaf and dumb Spaniard that's ben around here once or twice, and t'other's a mean-looking, ragged--" "That's enough, lad, we know the men! Happened on them in the woods back of the widow's one day, and they slunk away. Off with you, boys, and tell the sheriff--get your breakfast to-morrow morning!" The Welshman's sons departed at once. As they were leaving the room Huck sprang up and exclaimed: "Oh, please don't tell ANYbody it was me that blowed on them! Oh, please!" "All right if you say it, Huck, but you ought to have the credit of what you did." "Oh no, no! Please don't tell!" When the young men were gone, the old Welshman said: "They won't tell--and I won't. But why don't you want it known?" Huck would not explain, further than to say that he already knew too much about one of those men and would not have the man know that he knew anything against him for the whole world--he would be killed for knowing it, sure. The old man promised secrecy once more, and said: "How did you come to follow these fellows, lad? Were they looking suspicious?" Huck was silent while he framed a duly cautious reply. Then he said: "Well, you see, I'm a kind of a hard lot,--least everybody says so, and I don't see nothing agin it--and sometimes I can't sleep much, on account of thinking about it and sort of trying to strike out a new way of doing. That was the way of it last night. I couldn't sleep, and so I come along up-street 'bout midnight, a-turning it all over, and when I got to that old shackly brick store by the Temperance Tavern, I backed up agin the wall to have another think. Well, just then along comes these two chaps slipping along close by me, with something under their arm, and I reckoned they'd stole it. One was a-smoking, and t'other one wanted a light; so they stopped right before me and the cigars lit up their faces and I see that the big one was the deaf and dumb Spaniard, by his white whiskers and the patch on his eye, and t'other one was a rusty, ragged-looking devil." "Could you see the rags by the light of the cigars?" This staggered Huck for a moment. Then he said: "Well, I don't know--but somehow it seems as if I did." "Then they went on, and you--" "Follered 'em--yes. That was it. I wanted to see what was up--they sneaked along so. I dogged 'em to the widder's stile, and stood in the dark and heard the ragged one beg for the widder, and the Spaniard swear he'd spile her looks just as I told you and your two--" "What! The DEAF AND DUMB man said all that!" Huck had made another terrible mistake! He was trying his best to keep the old man from getting the faintest hint of who the Spaniard might be, and yet his tongue seemed determined to get him into trouble in spite of all he could do. He made several efforts to creep out of his scrape, but the old man's eye was upon him and he made blunder after blunder. Presently the Welshman said: "My boy, don't be afraid of me. I wouldn't hurt a hair of your head for all the world. No--I'd protect you--I'd protect you. This Spaniard is not deaf and dumb; you've let that slip without intending it; you can't cover that up now. You know something about that Spaniard that you want to keep dark. Now trust me--tell me what it is, and trust me --I won't betray you." Huck looked into the old man's honest eyes a moment, then bent over and whispered in his ear: "'Tain't a Spaniard--it's Injun Joe!" The Welshman almost jumped out of his chair. In a moment he said: "It's all plain enough, now. When you talked about notching ears and slitting noses I judged that that was your own embellishment, because white men don't take that sort of revenge. But an Injun! That's a different matter altogether." During breakfast the talk went on, and in the course of it the old man said that the last thing which he and his sons had done, before going to bed, was to get a lantern and examine the stile and its vicinity for marks of blood. They found none, but captured a bulky bundle of-- "Of WHAT?" If the words had been lightning they could not have leaped with a more stunning suddenness from Huck's blanched lips. His eyes were staring wide, now, and his breath suspended--waiting for the answer. The Welshman started--stared in return--three seconds--five seconds--ten --then replied: "Of burglar's tools. Why, what's the MATTER with you?" Huck sank back, panting gently, but deeply, unutterably grateful. The Welshman eyed him gravely, curiously--and presently said: "Yes, burglar's tools. That appears to relieve you a good deal. But what did give you that turn? What were YOU expecting we'd found?" Huck was in a close place--the inquiring eye was upon him--he would have given anything for material for a plausible answer--nothing suggested itself--the inquiring eye was boring deeper and deeper--a senseless reply offered--there was no time to weigh it, so at a venture he uttered it--feebly: "Sunday-school books, maybe." Poor Huck was too distressed to smile, but the old man laughed loud and joyously, shook up the details of his anatomy from head to foot, and ended by saying that such a laugh was money in a-man's pocket, because it cut down the doctor's bill like everything. Then he added: "Poor old chap, you're white and jaded--you ain't well a bit--no wonder you're a little flighty and off your balance. But you'll come out of it. Rest and sleep will fetch you out all right, I hope." Huck was irritated to think he had been such a goose and betrayed such a suspicious excitement, for he had dropped the idea that the parcel brought from the tavern was the treasure, as soon as he had heard the talk at the widow's stile. He had only thought it was not the treasure, however--he had not known that it wasn't--and so the suggestion of a captured bundle was too much for his self-possession. But on the whole he felt glad the little episode had happened, for now he knew beyond all question that that bundle was not THE bundle, and so his mind was at rest and exceedingly comfortable. In fact, everything seemed to be drifting just in the right direction, now; the treasure must be still in No. 2, the men would be captured and jailed that day, and he and Tom could seize the gold that night without any trouble or any fear of interruption. Just as breakfast was completed there was a knock at the door. Huck jumped for a hiding-place, for he had no mind to be connected even remotely with the late event. The Welshman admitted several ladies and gentlemen, among them the Widow Douglas, and noticed that groups of citizens were climbing up the hill--to stare at the stile. So the news had spread. The Welshman had to tell the story of the night to the visitors. The widow's gratitude for her preservation was outspoken. "Don't say a word about it, madam. There's another that you're more beholden to than you are to me and my boys, maybe, but he don't allow me to tell his name. We wouldn't have been there but for him." Of course this excited a curiosity so vast that it almost belittled the main matter--but the Welshman allowed it to eat into the vitals of his visitors, and through them be transmitted to the whole town, for he refused to part with his secret. When all else had been learned, the widow said: "I went to sleep reading in bed and slept straight through all that noise. Why didn't you come and wake me?" "We judged it warn't worth while. Those fellows warn't likely to come again--they hadn't any tools left to work with, and what was the use of waking you up and scaring you to death? My three negro men stood guard at your house all the rest of the night. They've just come back." More visitors came, and the story had to be told and retold for a couple of hours more. There was no Sabbath-school during day-school vacation, but everybody was early at church. The stirring event was well canvassed. News came that not a sign of the two villains had been yet discovered. When the sermon was finished, Judge Thatcher's wife dropped alongside of Mrs. Harper as she moved down the aisle with the crowd and said: "Is my Becky going to sleep all day? I just expected she would be tired to death." "Your Becky?" "Yes," with a startled look--"didn't she stay with you last night?" "Why, no." Mrs. Thatcher turned pale, and sank into a pew, just as Aunt Polly, talking briskly with a friend, passed by. Aunt Polly said: "Good-morning, Mrs. Thatcher. Good-morning, Mrs. Harper. I've got a boy that's turned up missing. I reckon my Tom stayed at your house last night--one of you. And now he's afraid to come to church. I've got to settle with him." Mrs. Thatcher shook her head feebly and turned paler than ever. "He didn't stay with us," said Mrs. Harper, beginning to look uneasy. A marked anxiety came into Aunt Polly's face. "Joe Harper, have you seen my Tom this morning?" "No'm." "When did you see him last?" Joe tried to remember, but was not sure he could say. The people had stopped moving out of church. Whispers passed along, and a boding uneasiness took possession of every countenance. Children were anxiously questioned, and young teachers. They all said they had not noticed whether Tom and Becky were on board the ferryboat on the homeward trip; it was dark; no one thought of inquiring if any one was missing. One young man finally blurted out his fear that they were still in the cave! Mrs. Thatcher swooned away. Aunt Polly fell to crying and wringing her hands. The alarm swept from lip to lip, from group to group, from street to street, and within five minutes the bells were wildly clanging and the whole town was up! The Cardiff Hill episode sank into instant insignificance, the burglars were forgotten, horses were saddled, skiffs were manned, the ferryboat ordered out, and before the horror was half an hour old, two hundred men were pouring down highroad and river toward the cave. All the long afternoon the village seemed empty and dead. Many women visited Aunt Polly and Mrs. Thatcher and tried to comfort them. They cried with them, too, and that was still better than words. All the tedious night the town waited for news; but when the morning dawned at last, all the word that came was, "Send more candles--and send food." Mrs. Thatcher was almost crazed; and Aunt Polly, also. Judge Thatcher sent messages of hope and encouragement from the cave, but they conveyed no real cheer. The old Welshman came home toward daylight, spattered with candle-grease, smeared with clay, and almost worn out. He found Huck still in the bed that had been provided for him, and delirious with fever. The physicians were all at the cave, so the Widow Douglas came and took charge of the patient. She said she would do her best by him, because, whether he was good, bad, or indifferent, he was the Lord's, and nothing that was the Lord's was a thing to be neglected. The Welshman said Huck had good spots in him, and the widow said: "You can depend on it. That's the Lord's mark. He don't leave it off. He never does. Puts it somewhere on every creature that comes from his hands." Early in the forenoon parties of jaded men began to straggle into the village, but the strongest of the citizens continued searching. All the news that could be gained was that remotenesses of the cavern were being ransacked that had never been visited before; that every corner and crevice was going to be thoroughly searched; that wherever one wandered through the maze of passages, lights were to be seen flitting hither and thither in the distance, and shoutings and pistol-shots sent their hollow reverberations to the ear down the sombre aisles. In one place, far from the section usually traversed by tourists, the names "BECKY & TOM" had been found traced upon the rocky wall with candle-smoke, and near at hand a grease-soiled bit of ribbon. Mrs. Thatcher recognized the ribbon and cried over it. She said it was the last relic she should ever have of her child; and that no other memorial of her could ever be so precious, because this one parted latest from the living body before the awful death came. Some said that now and then, in the cave, a far-away speck of light would glimmer, and then a glorious shout would burst forth and a score of men go trooping down the echoing aisle--and then a sickening disappointment always followed; the children were not there; it was only a searcher's light. Three dreadful days and nights dragged their tedious hours along, and the village sank into a hopeless stupor. No one had heart for anything. The accidental discovery, just made, that the proprietor of the Temperance Tavern kept liquor on his premises, scarcely fluttered the public pulse, tremendous as the fact was. In a lucid interval, Huck feebly led up to the subject of taverns, and finally asked--dimly dreading the worst--if anything had been discovered at the Temperance Tavern since he had been ill. "Yes," said the widow. Huck started up in bed, wild-eyed: "What? What was it?" "Liquor!--and the place has been shut up. Lie down, child--what a turn you did give me!" "Only tell me just one thing--only just one--please! Was it Tom Sawyer that found it?" The widow burst into tears. "Hush, hush, child, hush! I've told you before, you must NOT talk. You are very, very sick!" Then nothing but liquor had been found; there would have been a great powwow if it had been the gold. So the treasure was gone forever--gone forever! But what could she be crying about? Curious that she should cry. These thoughts worked their dim way through Huck's mind, and under the weariness they gave him he fell asleep. The widow said to herself: "There--he's asleep, poor wreck. Tom Sawyer find it! Pity but somebody could find Tom Sawyer! Ah, there ain't many left, now, that's got hope enough, or strength enough, either, to go on searching." CHAPTER XXXI NOW to return to Tom and Becky's share in the picnic. They tripped along the murky aisles with the rest of the company, visiting the familiar wonders of the cave--wonders dubbed with rather over-descriptive names, such as "The Drawing-Room," "The Cathedral," "Aladdin's Palace," and so on. Presently the hide-and-seek frolicking began, and Tom and Becky engaged in it with zeal until the exertion began to grow a trifle wearisome; then they wandered down a sinuous avenue holding their candles aloft and reading the tangled web-work of names, dates, post-office addresses, and mottoes with which the rocky walls had been frescoed (in candle-smoke). Still drifting along and talking, they scarcely noticed that they were now in a part of the cave whose walls were not frescoed. They smoked their own names under an overhanging shelf and moved on. Presently they came to a place where a little stream of water, trickling over a ledge and carrying a limestone sediment with it, had, in the slow-dragging ages, formed a laced and ruffled Niagara in gleaming and imperishable stone. Tom squeezed his small body behind it in order to illuminate it for Becky's gratification. He found that it curtained a sort of steep natural stairway which was enclosed between narrow walls, and at once the ambition to be a discoverer seized him. Becky responded to his call, and they made a smoke-mark for future guidance, and started upon their quest. They wound this way and that, far down into the secret depths of the cave, made another mark, and branched off in search of novelties to tell the upper world about. In one place they found a spacious cavern, from whose ceiling depended a multitude of shining stalactites of the length and circumference of a man's leg; they walked all about it, wondering and admiring, and presently left it by one of the numerous passages that opened into it. This shortly brought them to a bewitching spring, whose basin was incrusted with a frostwork of glittering crystals; it was in the midst of a cavern whose walls were supported by many fantastic pillars which had been formed by the joining of great stalactites and stalagmites together, the result of the ceaseless water-drip of centuries. Under the roof vast knots of bats had packed themselves together, thousands in a bunch; the lights disturbed the creatures and they came flocking down by hundreds, squeaking and darting furiously at the candles. Tom knew their ways and the danger of this sort of conduct. He seized Becky's hand and hurried her into the first corridor that offered; and none too soon, for a bat struck Becky's light out with its wing while she was passing out of the cavern. The bats chased the children a good distance; but the fugitives plunged into every new passage that offered, and at last got rid of the perilous things. Tom found a subterranean lake, shortly, which stretched its dim length away until its shape was lost in the shadows. He wanted to explore its borders, but concluded that it would be best to sit down and rest awhile, first. Now, for the first time, the deep stillness of the place laid a clammy hand upon the spirits of the children. Becky said: "Why, I didn't notice, but it seems ever so long since I heard any of the others." "Come to think, Becky, we are away down below them--and I don't know how far away north, or south, or east, or whichever it is. We couldn't hear them here." Becky grew apprehensive. "I wonder how long we've been down here, Tom? We better start back." "Yes, I reckon we better. P'raps we better." "Can you find the way, Tom? It's all a mixed-up crookedness to me." "I reckon I could find it--but then the bats. If they put our candles out it will be an awful fix. Let's try some other way, so as not to go through there." "Well. But I hope we won't get lost. It would be so awful!" and the girl shuddered at the thought of the dreadful possibilities. They started through a corridor, and traversed it in silence a long way, glancing at each new opening, to see if there was anything familiar about the look of it; but they were all strange. Every time Tom made an examination, Becky would watch his face for an encouraging sign, and he would say cheerily: "Oh, it's all right. This ain't the one, but we'll come to it right away!" But he felt less and less hopeful with each failure, and presently began to turn off into diverging avenues at sheer random, in desperate hope of finding the one that was wanted. He still said it was "all right," but there was such a leaden dread at his heart that the words had lost their ring and sounded just as if he had said, "All is lost!" Becky clung to his side in an anguish of fear, and tried hard to keep back the tears, but they would come. At last she said: "Oh, Tom, never mind the bats, let's go back that way! We seem to get worse and worse off all the time." "Listen!" said he. Profound silence; silence so deep that even their breathings were conspicuous in the hush. Tom shouted. The call went echoing down the empty aisles and died out in the distance in a faint sound that resembled a ripple of mocking laughter. "Oh, don't do it again, Tom, it is too horrid," said Becky. "It is horrid, but I better, Becky; they might hear us, you know," and he shouted again. The "might" was even a chillier horror than the ghostly laughter, it so confessed a perishing hope. The children stood still and listened; but there was no result. Tom turned upon the back track at once, and hurried his steps. It was but a little while before a certain indecision in his manner revealed another fearful fact to Becky--he could not find his way back! "Oh, Tom, you didn't make any marks!" "Becky, I was such a fool! Such a fool! I never thought we might want to come back! No--I can't find the way. It's all mixed up." "Tom, Tom, we're lost! we're lost! We never can get out of this awful place! Oh, why DID we ever leave the others!" She sank to the ground and burst into such a frenzy of crying that Tom was appalled with the idea that she might die, or lose her reason. He sat down by her and put his arms around her; she buried her face in his bosom, she clung to him, she poured out her terrors, her unavailing regrets, and the far echoes turned them all to jeering laughter. Tom begged her to pluck up hope again, and she said she could not. He fell to blaming and abusing himself for getting her into this miserable situation; this had a better effect. She said she would try to hope again, she would get up and follow wherever he might lead if only he would not talk like that any more. For he was no more to blame than she, she said. So they moved on again--aimlessly--simply at random--all they could do was to move, keep moving. For a little while, hope made a show of reviving--not with any reason to back it, but only because it is its nature to revive when the spring has not been taken out of it by age and familiarity with failure. By-and-by Tom took Becky's candle and blew it out. This economy meant so much! Words were not needed. Becky understood, and her hope died again. She knew that Tom had a whole candle and three or four pieces in his pockets--yet he must economize. By-and-by, fatigue began to assert its claims; the children tried to pay attention, for it was dreadful to think of sitting down when time was grown to be so precious, moving, in some direction, in any direction, was at least progress and might bear fruit; but to sit down was to invite death and shorten its pursuit. At last Becky's frail limbs refused to carry her farther. She sat down. Tom rested with her, and they talked of home, and the friends there, and the comfortable beds and, above all, the light! Becky cried, and Tom tried to think of some way of comforting her, but all his encouragements were grown threadbare with use, and sounded like sarcasms. Fatigue bore so heavily upon Becky that she drowsed off to sleep. Tom was grateful. He sat looking into her drawn face and saw it grow smooth and natural under the influence of pleasant dreams; and by-and-by a smile dawned and rested there. The peaceful face reflected somewhat of peace and healing into his own spirit, and his thoughts wandered away to bygone times and dreamy memories. While he was deep in his musings, Becky woke up with a breezy little laugh--but it was stricken dead upon her lips, and a groan followed it. "Oh, how COULD I sleep! I wish I never, never had waked! No! No, I don't, Tom! Don't look so! I won't say it again." "I'm glad you've slept, Becky; you'll feel rested, now, and we'll find the way out." "We can try, Tom; but I've seen such a beautiful country in my dream. I reckon we are going there." "Maybe not, maybe not. Cheer up, Becky, and let's go on trying." They rose up and wandered along, hand in hand and hopeless. They tried to estimate how long they had been in the cave, but all they knew was that it seemed days and weeks, and yet it was plain that this could not be, for their candles were not gone yet. A long time after this--they could not tell how long--Tom said they must go softly and listen for dripping water--they must find a spring. They found one presently, and Tom said it was time to rest again. Both were cruelly tired, yet Becky said she thought she could go a little farther. She was surprised to hear Tom dissent. She could not understand it. They sat down, and Tom fastened his candle to the wall in front of them with some clay. Thought was soon busy; nothing was said for some time. Then Becky broke the silence: "Tom, I am so hungry!" Tom took something out of his pocket. "Do you remember this?" said he. Becky almost smiled. "It's our wedding-cake, Tom." "Yes--I wish it was as big as a barrel, for it's all we've got." "I saved it from the picnic for us to dream on, Tom, the way grown-up people do with wedding-cake--but it'll be our--" She dropped the sentence where it was. Tom divided the cake and Becky ate with good appetite, while Tom nibbled at his moiety. There was abundance of cold water to finish the feast with. By-and-by Becky suggested that they move on again. Tom was silent a moment. Then he said: "Becky, can you bear it if I tell you something?" Becky's face paled, but she thought she could. "Well, then, Becky, we must stay here, where there's water to drink. That little piece is our last candle!" Becky gave loose to tears and wailings. Tom did what he could to comfort her, but with little effect. At length Becky said: "Tom!" "Well, Becky?" "They'll miss us and hunt for us!" "Yes, they will! Certainly they will!" "Maybe they're hunting for us now, Tom." "Why, I reckon maybe they are. I hope they are." "When would they miss us, Tom?" "When they get back to the boat, I reckon." "Tom, it might be dark then--would they notice we hadn't come?" "I don't know. But anyway, your mother would miss you as soon as they got home." A frightened look in Becky's face brought Tom to his senses and he saw that he had made a blunder. Becky was not to have gone home that night! The children became silent and thoughtful. In a moment a new burst of grief from Becky showed Tom that the thing in his mind had struck hers also--that the Sabbath morning might be half spent before Mrs. Thatcher discovered that Becky was not at Mrs. Harper's. The children fastened their eyes upon their bit of candle and watched it melt slowly and pitilessly away; saw the half inch of wick stand alone at last; saw the feeble flame rise and fall, climb the thin column of smoke, linger at its top a moment, and then--the horror of utter darkness reigned! How long afterward it was that Becky came to a slow consciousness that she was crying in Tom's arms, neither could tell. All that they knew was, that after what seemed a mighty stretch of time, both awoke out of a dead stupor of sleep and resumed their miseries once more. Tom said it might be Sunday, now--maybe Monday. He tried to get Becky to talk, but her sorrows were too oppressive, all her hopes were gone. Tom said that they must have been missed long ago, and no doubt the search was going on. He would shout and maybe some one would come. He tried it; but in the darkness the distant echoes sounded so hideously that he tried it no more. The hours wasted away, and hunger came to torment the captives again. A portion of Tom's half of the cake was left; they divided and ate it. But they seemed hungrier than before. The poor morsel of food only whetted desire. By-and-by Tom said: "SH! Did you hear that?" Both held their breath and listened. There was a sound like the faintest, far-off shout. Instantly Tom answered it, and leading Becky by the hand, started groping down the corridor in its direction. Presently he listened again; again the sound was heard, and apparently a little nearer. "It's them!" said Tom; "they're coming! Come along, Becky--we're all right now!" The joy of the prisoners was almost overwhelming. Their speed was slow, however, because pitfalls were somewhat common, and had to be guarded against. They shortly came to one and had to stop. It might be three feet deep, it might be a hundred--there was no passing it at any rate. Tom got down on his breast and reached as far down as he could. No bottom. They must stay there and wait until the searchers came. They listened; evidently the distant shoutings were growing more distant! a moment or two more and they had gone altogether. The heart-sinking misery of it! Tom whooped until he was hoarse, but it was of no use. He talked hopefully to Becky; but an age of anxious waiting passed and no sounds came again. The children groped their way back to the spring. The weary time dragged on; they slept again, and awoke famished and woe-stricken. Tom believed it must be Tuesday by this time. Now an idea struck him. There were some side passages near at hand. It would be better to explore some of these than bear the weight of the heavy time in idleness. He took a kite-line from his pocket, tied it to a projection, and he and Becky started, Tom in the lead, unwinding the line as he groped along. At the end of twenty steps the corridor ended in a "jumping-off place." Tom got down on his knees and felt below, and then as far around the corner as he could reach with his hands conveniently; he made an effort to stretch yet a little farther to the right, and at that moment, not twenty yards away, a human hand, holding a candle, appeared from behind a rock! Tom lifted up a glorious shout, and instantly that hand was followed by the body it belonged to--Injun Joe's! Tom was paralyzed; he could not move. He was vastly gratified the next moment, to see the "Spaniard" take to his heels and get himself out of sight. Tom wondered that Joe had not recognized his voice and come over and killed him for testifying in court. But the echoes must have disguised the voice. Without doubt, that was it, he reasoned. Tom's fright weakened every muscle in his body. He said to himself that if he had strength enough to get back to the spring he would stay there, and nothing should tempt him to run the risk of meeting Injun Joe again. He was careful to keep from Becky what it was he had seen. He told her he had only shouted "for luck." But hunger and wretchedness rise superior to fears in the long run. Another tedious wait at the spring and another long sleep brought changes. The children awoke tortured with a raging hunger. Tom believed that it must be Wednesday or Thursday or even Friday or Saturday, now, and that the search had been given over. He proposed to explore another passage. He felt willing to risk Injun Joe and all other terrors. But Becky was very weak. She had sunk into a dreary apathy and would not be roused. She said she would wait, now, where she was, and die--it would not be long. She told Tom to go with the kite-line and explore if he chose; but she implored him to come back every little while and speak to her; and she made him promise that when the awful time came, he would stay by her and hold her hand until all was over. Tom kissed her, with a choking sensation in his throat, and made a show of being confident of finding the searchers or an escape from the cave; then he took the kite-line in his hand and went groping down one of the passages on his hands and knees, distressed with hunger and sick with bodings of coming doom. CHAPTER XXXII TUESDAY afternoon came, and waned to the twilight. The village of St. Petersburg still mourned. The lost children had not been found. Public prayers had been offered up for them, and many and many a private prayer that had the petitioner's whole heart in it; but still no good news came from the cave. The majority of the searchers had given up the quest and gone back to their daily avocations, saying that it was plain the children could never be found. Mrs. Thatcher was very ill, and a great part of the time delirious. People said it was heartbreaking to hear her call her child, and raise her head and listen a whole minute at a time, then lay it wearily down again with a moan. Aunt Polly had drooped into a settled melancholy, and her gray hair had grown almost white. The village went to its rest on Tuesday night, sad and forlorn. Away in the middle of the night a wild peal burst from the village bells, and in a moment the streets were swarming with frantic half-clad people, who shouted, "Turn out! turn out! they're found! they're found!" Tin pans and horns were added to the din, the population massed itself and moved toward the river, met the children coming in an open carriage drawn by shouting citizens, thronged around it, joined its homeward march, and swept magnificently up the main street roaring huzzah after huzzah! The village was illuminated; nobody went to bed again; it was the greatest night the little town had ever seen. During the first half-hour a procession of villagers filed through Judge Thatcher's house, seized the saved ones and kissed them, squeezed Mrs. Thatcher's hand, tried to speak but couldn't--and drifted out raining tears all over the place. Aunt Polly's happiness was complete, and Mrs. Thatcher's nearly so. It would be complete, however, as soon as the messenger dispatched with the great news to the cave should get the word to her husband. Tom lay upon a sofa with an eager auditory about him and told the history of the wonderful adventure, putting in many striking additions to adorn it withal; and closed with a description of how he left Becky and went on an exploring expedition; how he followed two avenues as far as his kite-line would reach; how he followed a third to the fullest stretch of the kite-line, and was about to turn back when he glimpsed a far-off speck that looked like daylight; dropped the line and groped toward it, pushed his head and shoulders through a small hole, and saw the broad Mississippi rolling by! And if it had only happened to be night he would not have seen that speck of daylight and would not have explored that passage any more! He told how he went back for Becky and broke the good news and she told him not to fret her with such stuff, for she was tired, and knew she was going to die, and wanted to. He described how he labored with her and convinced her; and how she almost died for joy when she had groped to where she actually saw the blue speck of daylight; how he pushed his way out at the hole and then helped her out; how they sat there and cried for gladness; how some men came along in a skiff and Tom hailed them and told them their situation and their famished condition; how the men didn't believe the wild tale at first, "because," said they, "you are five miles down the river below the valley the cave is in" --then took them aboard, rowed to a house, gave them supper, made them rest till two or three hours after dark and then brought them home. Before day-dawn, Judge Thatcher and the handful of searchers with him were tracked out, in the cave, by the twine clews they had strung behind them, and informed of the great news. Three days and nights of toil and hunger in the cave were not to be shaken off at once, as Tom and Becky soon discovered. They were bedridden all of Wednesday and Thursday, and seemed to grow more and more tired and worn, all the time. Tom got about, a little, on Thursday, was down-town Friday, and nearly as whole as ever Saturday; but Becky did not leave her room until Sunday, and then she looked as if she had passed through a wasting illness. Tom learned of Huck's sickness and went to see him on Friday, but could not be admitted to the bedroom; neither could he on Saturday or Sunday. He was admitted daily after that, but was warned to keep still about his adventure and introduce no exciting topic. The Widow Douglas stayed by to see that he obeyed. At home Tom learned of the Cardiff Hill event; also that the "ragged man's" body had eventually been found in the river near the ferry-landing; he had been drowned while trying to escape, perhaps. About a fortnight after Tom's rescue from the cave, he started off to visit Huck, who had grown plenty strong enough, now, to hear exciting talk, and Tom had some that would interest him, he thought. Judge Thatcher's house was on Tom's way, and he stopped to see Becky. The Judge and some friends set Tom to talking, and some one asked him ironically if he wouldn't like to go to the cave again. Tom said he thought he wouldn't mind it. The Judge said: "Well, there are others just like you, Tom, I've not the least doubt. But we have taken care of that. Nobody will get lost in that cave any more." "Why?" "Because I had its big door sheathed with boiler iron two weeks ago, and triple-locked--and I've got the keys." Tom turned as white as a sheet. "What's the matter, boy! Here, run, somebody! Fetch a glass of water!" The water was brought and thrown into Tom's face. "Ah, now you're all right. What was the matter with you, Tom?" "Oh, Judge, Injun Joe's in the cave!" CHAPTER XXXIII WITHIN a few minutes the news had spread, and a dozen skiff-loads of men were on their way to McDougal's cave, and the ferryboat, well filled with passengers, soon followed. Tom Sawyer was in the skiff that bore Judge Thatcher. When the cave door was unlocked, a sorrowful sight presented itself in the dim twilight of the place. Injun Joe lay stretched upon the ground, dead, with his face close to the crack of the door, as if his longing eyes had been fixed, to the latest moment, upon the light and the cheer of the free world outside. Tom was touched, for he knew by his own experience how this wretch had suffered. His pity was moved, but nevertheless he felt an abounding sense of relief and security, now, which revealed to him in a degree which he had not fully appreciated before how vast a weight of dread had been lying upon him since the day he lifted his voice against this bloody-minded outcast. Injun Joe's bowie-knife lay close by, its blade broken in two. The great foundation-beam of the door had been chipped and hacked through, with tedious labor; useless labor, too, it was, for the native rock formed a sill outside it, and upon that stubborn material the knife had wrought no effect; the only damage done was to the knife itself. But if there had been no stony obstruction there the labor would have been useless still, for if the beam had been wholly cut away Injun Joe could not have squeezed his body under the door, and he knew it. So he had only hacked that place in order to be doing something--in order to pass the weary time--in order to employ his tortured faculties. Ordinarily one could find half a dozen bits of candle stuck around in the crevices of this vestibule, left there by tourists; but there were none now. The prisoner had searched them out and eaten them. He had also contrived to catch a few bats, and these, also, he had eaten, leaving only their claws. The poor unfortunate had starved to death. In one place, near at hand, a stalagmite had been slowly growing up from the ground for ages, builded by the water-drip from a stalactite overhead. The captive had broken off the stalagmite, and upon the stump had placed a stone, wherein he had scooped a shallow hollow to catch the precious drop that fell once in every three minutes with the dreary regularity of a clock-tick--a dessertspoonful once in four and twenty hours. That drop was falling when the Pyramids were new; when Troy fell; when the foundations of Rome were laid; when Christ was crucified; when the Conqueror created the British empire; when Columbus sailed; when the massacre at Lexington was "news." It is falling now; it will still be falling when all these things shall have sunk down the afternoon of history, and the twilight of tradition, and been swallowed up in the thick night of oblivion. Has everything a purpose and a mission? Did this drop fall patiently during five thousand years to be ready for this flitting human insect's need? and has it another important object to accomplish ten thousand years to come? No matter. It is many and many a year since the hapless half-breed scooped out the stone to catch the priceless drops, but to this day the tourist stares longest at that pathetic stone and that slow-dropping water when he comes to see the wonders of McDougal's cave. Injun Joe's cup stands first in the list of the cavern's marvels; even "Aladdin's Palace" cannot rival it. Injun Joe was buried near the mouth of the cave; and people flocked there in boats and wagons from the towns and from all the farms and hamlets for seven miles around; they brought their children, and all sorts of provisions, and confessed that they had had almost as satisfactory a time at the funeral as they could have had at the hanging. This funeral stopped the further growth of one thing--the petition to the governor for Injun Joe's pardon. The petition had been largely signed; many tearful and eloquent meetings had been held, and a committee of sappy women been appointed to go in deep mourning and wail around the governor, and implore him to be a merciful ass and trample his duty under foot. Injun Joe was believed to have killed five citizens of the village, but what of that? If he had been Satan himself there would have been plenty of weaklings ready to scribble their names to a pardon-petition, and drip a tear on it from their permanently impaired and leaky water-works. The morning after the funeral Tom took Huck to a private place to have an important talk. Huck had learned all about Tom's adventure from the Welshman and the Widow Douglas, by this time, but Tom said he reckoned there was one thing they had not told him; that thing was what he wanted to talk about now. Huck's face saddened. He said: "I know what it is. You got into No. 2 and never found anything but whiskey. Nobody told me it was you; but I just knowed it must 'a' ben you, soon as I heard 'bout that whiskey business; and I knowed you hadn't got the money becuz you'd 'a' got at me some way or other and told me even if you was mum to everybody else. Tom, something's always told me we'd never get holt of that swag." "Why, Huck, I never told on that tavern-keeper. YOU know his tavern was all right the Saturday I went to the picnic. Don't you remember you was to watch there that night?" "Oh yes! Why, it seems 'bout a year ago. It was that very night that I follered Injun Joe to the widder's." "YOU followed him?" "Yes--but you keep mum. I reckon Injun Joe's left friends behind him, and I don't want 'em souring on me and doing me mean tricks. If it hadn't ben for me he'd be down in Texas now, all right." Then Huck told his entire adventure in confidence to Tom, who had only heard of the Welshman's part of it before. "Well," said Huck, presently, coming back to the main question, "whoever nipped the whiskey in No. 2, nipped the money, too, I reckon --anyways it's a goner for us, Tom." "Huck, that money wasn't ever in No. 2!" "What!" Huck searched his comrade's face keenly. "Tom, have you got on the track of that money again?" "Huck, it's in the cave!" Huck's eyes blazed. "Say it again, Tom." "The money's in the cave!" "Tom--honest injun, now--is it fun, or earnest?" "Earnest, Huck--just as earnest as ever I was in my life. Will you go in there with me and help get it out?" "I bet I will! I will if it's where we can blaze our way to it and not get lost." "Huck, we can do that without the least little bit of trouble in the world." "Good as wheat! What makes you think the money's--" "Huck, you just wait till we get in there. If we don't find it I'll agree to give you my drum and every thing I've got in the world. I will, by jings." "All right--it's a whiz. When do you say?" "Right now, if you say it. Are you strong enough?" "Is it far in the cave? I ben on my pins a little, three or four days, now, but I can't walk more'n a mile, Tom--least I don't think I could." "It's about five mile into there the way anybody but me would go, Huck, but there's a mighty short cut that they don't anybody but me know about. Huck, I'll take you right to it in a skiff. I'll float the skiff down there, and I'll pull it back again all by myself. You needn't ever turn your hand over." "Less start right off, Tom." "All right. We want some bread and meat, and our pipes, and a little bag or two, and two or three kite-strings, and some of these new-fangled things they call lucifer matches. I tell you, many's the time I wished I had some when I was in there before." A trifle after noon the boys borrowed a small skiff from a citizen who was absent, and got under way at once. When they were several miles below "Cave Hollow," Tom said: "Now you see this bluff here looks all alike all the way down from the cave hollow--no houses, no wood-yards, bushes all alike. But do you see that white place up yonder where there's been a landslide? Well, that's one of my marks. We'll get ashore, now." They landed. "Now, Huck, where we're a-standing you could touch that hole I got out of with a fishing-pole. See if you can find it." Huck searched all the place about, and found nothing. Tom proudly marched into a thick clump of sumach bushes and said: "Here you are! Look at it, Huck; it's the snuggest hole in this country. You just keep mum about it. All along I've been wanting to be a robber, but I knew I'd got to have a thing like this, and where to run across it was the bother. We've got it now, and we'll keep it quiet, only we'll let Joe Harper and Ben Rogers in--because of course there's got to be a Gang, or else there wouldn't be any style about it. Tom Sawyer's Gang--it sounds splendid, don't it, Huck?" "Well, it just does, Tom. And who'll we rob?" "Oh, most anybody. Waylay people--that's mostly the way." "And kill them?" "No, not always. Hive them in the cave till they raise a ransom." "What's a ransom?" "Money. You make them raise all they can, off'n their friends; and after you've kept them a year, if it ain't raised then you kill them. That's the general way. Only you don't kill the women. You shut up the women, but you don't kill them. They're always beautiful and rich, and awfully scared. You take their watches and things, but you always take your hat off and talk polite. They ain't anybody as polite as robbers --you'll see that in any book. Well, the women get to loving you, and after they've been in the cave a week or two weeks they stop crying and after that you couldn't get them to leave. If you drove them out they'd turn right around and come back. It's so in all the books." "Why, it's real bully, Tom. I believe it's better'n to be a pirate." "Yes, it's better in some ways, because it's close to home and circuses and all that." By this time everything was ready and the boys entered the hole, Tom in the lead. They toiled their way to the farther end of the tunnel, then made their spliced kite-strings fast and moved on. A few steps brought them to the spring, and Tom felt a shudder quiver all through him. He showed Huck the fragment of candle-wick perched on a lump of clay against the wall, and described how he and Becky had watched the flame struggle and expire. The boys began to quiet down to whispers, now, for the stillness and gloom of the place oppressed their spirits. They went on, and presently entered and followed Tom's other corridor until they reached the "jumping-off place." The candles revealed the fact that it was not really a precipice, but only a steep clay hill twenty or thirty feet high. Tom whispered: "Now I'll show you something, Huck." He held his candle aloft and said: "Look as far around the corner as you can. Do you see that? There--on the big rock over yonder--done with candle-smoke." "Tom, it's a CROSS!" "NOW where's your Number Two? 'UNDER THE CROSS,' hey? Right yonder's where I saw Injun Joe poke up his candle, Huck!" Huck stared at the mystic sign awhile, and then said with a shaky voice: "Tom, less git out of here!" "What! and leave the treasure?" "Yes--leave it. Injun Joe's ghost is round about there, certain." "No it ain't, Huck, no it ain't. It would ha'nt the place where he died--away out at the mouth of the cave--five mile from here." "No, Tom, it wouldn't. It would hang round the money. I know the ways of ghosts, and so do you." Tom began to fear that Huck was right. Misgivings gathered in his mind. But presently an idea occurred to him-- "Lookyhere, Huck, what fools we're making of ourselves! Injun Joe's ghost ain't a going to come around where there's a cross!" The point was well taken. It had its effect. "Tom, I didn't think of that. But that's so. It's luck for us, that cross is. I reckon we'll climb down there and have a hunt for that box." Tom went first, cutting rude steps in the clay hill as he descended. Huck followed. Four avenues opened out of the small cavern which the great rock stood in. The boys examined three of them with no result. They found a small recess in the one nearest the base of the rock, with a pallet of blankets spread down in it; also an old suspender, some bacon rind, and the well-gnawed bones of two or three fowls. But there was no money-box. The lads searched and researched this place, but in vain. Tom said: "He said UNDER the cross. Well, this comes nearest to being under the cross. It can't be under the rock itself, because that sets solid on the ground." They searched everywhere once more, and then sat down discouraged. Huck could suggest nothing. By-and-by Tom said: "Lookyhere, Huck, there's footprints and some candle-grease on the clay about one side of this rock, but not on the other sides. Now, what's that for? I bet you the money IS under the rock. I'm going to dig in the clay." "That ain't no bad notion, Tom!" said Huck with animation. Tom's "real Barlow" was out at once, and he had not dug four inches before he struck wood. "Hey, Huck!--you hear that?" Huck began to dig and scratch now. Some boards were soon uncovered and removed. They had concealed a natural chasm which led under the rock. Tom got into this and held his candle as far under the rock as he could, but said he could not see to the end of the rift. He proposed to explore. He stooped and passed under; the narrow way descended gradually. He followed its winding course, first to the right, then to the left, Huck at his heels. Tom turned a short curve, by-and-by, and exclaimed: "My goodness, Huck, lookyhere!" It was the treasure-box, sure enough, occupying a snug little cavern, along with an empty powder-keg, a couple of guns in leather cases, two or three pairs of old moccasins, a leather belt, and some other rubbish well soaked with the water-drip. "Got it at last!" said Huck, ploughing among the tarnished coins with his hand. "My, but we're rich, Tom!" "Huck, I always reckoned we'd get it. It's just too good to believe, but we HAVE got it, sure! Say--let's not fool around here. Let's snake it out. Lemme see if I can lift the box." It weighed about fifty pounds. Tom could lift it, after an awkward fashion, but could not carry it conveniently. "I thought so," he said; "THEY carried it like it was heavy, that day at the ha'nted house. I noticed that. I reckon I was right to think of fetching the little bags along." The money was soon in the bags and the boys took it up to the cross rock. "Now less fetch the guns and things," said Huck. "No, Huck--leave them there. They're just the tricks to have when we go to robbing. We'll keep them there all the time, and we'll hold our orgies there, too. It's an awful snug place for orgies." "What orgies?" "I dono. But robbers always have orgies, and of course we've got to have them, too. Come along, Huck, we've been in here a long time. It's getting late, I reckon. I'm hungry, too. We'll eat and smoke when we get to the skiff." They presently emerged into the clump of sumach bushes, looked warily out, found the coast clear, and were soon lunching and smoking in the skiff. As the sun dipped toward the horizon they pushed out and got under way. Tom skimmed up the shore through the long twilight, chatting cheerily with Huck, and landed shortly after dark. "Now, Huck," said Tom, "we'll hide the money in the loft of the widow's woodshed, and I'll come up in the morning and we'll count it and divide, and then we'll hunt up a place out in the woods for it where it will be safe. Just you lay quiet here and watch the stuff till I run and hook Benny Taylor's little wagon; I won't be gone a minute." He disappeared, and presently returned with the wagon, put the two small sacks into it, threw some old rags on top of them, and started off, dragging his cargo behind him. When the boys reached the Welshman's house, they stopped to rest. Just as they were about to move on, the Welshman stepped out and said: "Hallo, who's that?" "Huck and Tom Sawyer." "Good! Come along with me, boys, you are keeping everybody waiting. Here--hurry up, trot ahead--I'll haul the wagon for you. Why, it's not as light as it might be. Got bricks in it?--or old metal?" "Old metal," said Tom. "I judged so; the boys in this town will take more trouble and fool away more time hunting up six bits' worth of old iron to sell to the foundry than they would to make twice the money at regular work. But that's human nature--hurry along, hurry along!" The boys wanted to know what the hurry was about. "Never mind; you'll see, when we get to the Widow Douglas'." Huck said with some apprehension--for he was long used to being falsely accused: "Mr. Jones, we haven't been doing nothing." The Welshman laughed. "Well, I don't know, Huck, my boy. I don't know about that. Ain't you and the widow good friends?" "Yes. Well, she's ben good friends to me, anyway." "All right, then. What do you want to be afraid for?" This question was not entirely answered in Huck's slow mind before he found himself pushed, along with Tom, into Mrs. Douglas' drawing-room. Mr. Jones left the wagon near the door and followed. The place was grandly lighted, and everybody that was of any consequence in the village was there. The Thatchers were there, the Harpers, the Rogerses, Aunt Polly, Sid, Mary, the minister, the editor, and a great many more, and all dressed in their best. The widow received the boys as heartily as any one could well receive two such looking beings. They were covered with clay and candle-grease. Aunt Polly blushed crimson with humiliation, and frowned and shook her head at Tom. Nobody suffered half as much as the two boys did, however. Mr. Jones said: "Tom wasn't at home, yet, so I gave him up; but I stumbled on him and Huck right at my door, and so I just brought them along in a hurry." "And you did just right," said the widow. "Come with me, boys." She took them to a bedchamber and said: "Now wash and dress yourselves. Here are two new suits of clothes --shirts, socks, everything complete. They're Huck's--no, no thanks, Huck--Mr. Jones bought one and I the other. But they'll fit both of you. Get into them. We'll wait--come down when you are slicked up enough." Then she left. CHAPTER XXXIV HUCK said: "Tom, we can slope, if we can find a rope. The window ain't high from the ground." "Shucks! what do you want to slope for?" "Well, I ain't used to that kind of a crowd. I can't stand it. I ain't going down there, Tom." "Oh, bother! It ain't anything. I don't mind it a bit. I'll take care of you." Sid appeared. "Tom," said he, "auntie has been waiting for you all the afternoon. Mary got your Sunday clothes ready, and everybody's been fretting about you. Say--ain't this grease and clay, on your clothes?" "Now, Mr. Siddy, you jist 'tend to your own business. What's all this blow-out about, anyway?" "It's one of the widow's parties that she's always having. This time it's for the Welshman and his sons, on account of that scrape they helped her out of the other night. And say--I can tell you something, if you want to know." "Well, what?" "Why, old Mr. Jones is going to try to spring something on the people here to-night, but I overheard him tell auntie to-day about it, as a secret, but I reckon it's not much of a secret now. Everybody knows --the widow, too, for all she tries to let on she don't. Mr. Jones was bound Huck should be here--couldn't get along with his grand secret without Huck, you know!" "Secret about what, Sid?" "About Huck tracking the robbers to the widow's. I reckon Mr. Jones was going to make a grand time over his surprise, but I bet you it will drop pretty flat." Sid chuckled in a very contented and satisfied way. "Sid, was it you that told?" "Oh, never mind who it was. SOMEBODY told--that's enough." "Sid, there's only one person in this town mean enough to do that, and that's you. If you had been in Huck's place you'd 'a' sneaked down the hill and never told anybody on the robbers. You can't do any but mean things, and you can't bear to see anybody praised for doing good ones. There--no thanks, as the widow says"--and Tom cuffed Sid's ears and helped him to the door with several kicks. "Now go and tell auntie if you dare--and to-morrow you'll catch it!" Some minutes later the widow's guests were at the supper-table, and a dozen children were propped up at little side-tables in the same room, after the fashion of that country and that day. At the proper time Mr. Jones made his little speech, in which he thanked the widow for the honor she was doing himself and his sons, but said that there was another person whose modesty-- And so forth and so on. He sprung his secret about Huck's share in the adventure in the finest dramatic manner he was master of, but the surprise it occasioned was largely counterfeit and not as clamorous and effusive as it might have been under happier circumstances. However, the widow made a pretty fair show of astonishment, and heaped so many compliments and so much gratitude upon Huck that he almost forgot the nearly intolerable discomfort of his new clothes in the entirely intolerable discomfort of being set up as a target for everybody's gaze and everybody's laudations. The widow said she meant to give Huck a home under her roof and have him educated; and that when she could spare the money she would start him in business in a modest way. Tom's chance was come. He said: "Huck don't need it. Huck's rich." Nothing but a heavy strain upon the good manners of the company kept back the due and proper complimentary laugh at this pleasant joke. But the silence was a little awkward. Tom broke it: "Huck's got money. Maybe you don't believe it, but he's got lots of it. Oh, you needn't smile--I reckon I can show you. You just wait a minute." Tom ran out of doors. The company looked at each other with a perplexed interest--and inquiringly at Huck, who was tongue-tied. "Sid, what ails Tom?" said Aunt Polly. "He--well, there ain't ever any making of that boy out. I never--" Tom entered, struggling with the weight of his sacks, and Aunt Polly did not finish her sentence. Tom poured the mass of yellow coin upon the table and said: "There--what did I tell you? Half of it's Huck's and half of it's mine!" The spectacle took the general breath away. All gazed, nobody spoke for a moment. Then there was a unanimous call for an explanation. Tom said he could furnish it, and he did. The tale was long, but brimful of interest. There was scarcely an interruption from any one to break the charm of its flow. When he had finished, Mr. Jones said: "I thought I had fixed up a little surprise for this occasion, but it don't amount to anything now. This one makes it sing mighty small, I'm willing to allow." The money was counted. The sum amounted to a little over twelve thousand dollars. It was more than any one present had ever seen at one time before, though several persons were there who were worth considerably more than that in property. CHAPTER XXXV THE reader may rest satisfied that Tom's and Huck's windfall made a mighty stir in the poor little village of St. Petersburg. So vast a sum, all in actual cash, seemed next to incredible. It was talked about, gloated over, glorified, until the reason of many of the citizens tottered under the strain of the unhealthy excitement. Every "haunted" house in St. Petersburg and the neighboring villages was dissected, plank by plank, and its foundations dug up and ransacked for hidden treasure--and not by boys, but men--pretty grave, unromantic men, too, some of them. Wherever Tom and Huck appeared they were courted, admired, stared at. The boys were not able to remember that their remarks had possessed weight before; but now their sayings were treasured and repeated; everything they did seemed somehow to be regarded as remarkable; they had evidently lost the power of doing and saying commonplace things; moreover, their past history was raked up and discovered to bear marks of conspicuous originality. The village paper published biographical sketches of the boys. The Widow Douglas put Huck's money out at six per cent., and Judge Thatcher did the same with Tom's at Aunt Polly's request. Each lad had an income, now, that was simply prodigious--a dollar for every week-day in the year and half of the Sundays. It was just what the minister got --no, it was what he was promised--he generally couldn't collect it. A dollar and a quarter a week would board, lodge, and school a boy in those old simple days--and clothe him and wash him, too, for that matter. Judge Thatcher had conceived a great opinion of Tom. He said that no commonplace boy would ever have got his daughter out of the cave. When Becky told her father, in strict confidence, how Tom had taken her whipping at school, the Judge was visibly moved; and when she pleaded grace for the mighty lie which Tom had told in order to shift that whipping from her shoulders to his own, the Judge said with a fine outburst that it was a noble, a generous, a magnanimous lie--a lie that was worthy to hold up its head and march down through history breast to breast with George Washington's lauded Truth about the hatchet! Becky thought her father had never looked so tall and so superb as when he walked the floor and stamped his foot and said that. She went straight off and told Tom about it. Judge Thatcher hoped to see Tom a great lawyer or a great soldier some day. He said he meant to look to it that Tom should be admitted to the National Military Academy and afterward trained in the best law school in the country, in order that he might be ready for either career or both. Huck Finn's wealth and the fact that he was now under the Widow Douglas' protection introduced him into society--no, dragged him into it, hurled him into it--and his sufferings were almost more than he could bear. The widow's servants kept him clean and neat, combed and brushed, and they bedded him nightly in unsympathetic sheets that had not one little spot or stain which he could press to his heart and know for a friend. He had to eat with a knife and fork; he had to use napkin, cup, and plate; he had to learn his book, he had to go to church; he had to talk so properly that speech was become insipid in his mouth; whithersoever he turned, the bars and shackles of civilization shut him in and bound him hand and foot. He bravely bore his miseries three weeks, and then one day turned up missing. For forty-eight hours the widow hunted for him everywhere in great distress. The public were profoundly concerned; they searched high and low, they dragged the river for his body. Early the third morning Tom Sawyer wisely went poking among some old empty hogsheads down behind the abandoned slaughter-house, and in one of them he found the refugee. Huck had slept there; he had just breakfasted upon some stolen odds and ends of food, and was lying off, now, in comfort, with his pipe. He was unkempt, uncombed, and clad in the same old ruin of rags that had made him picturesque in the days when he was free and happy. Tom routed him out, told him the trouble he had been causing, and urged him to go home. Huck's face lost its tranquil content, and took a melancholy cast. He said: "Don't talk about it, Tom. I've tried it, and it don't work; it don't work, Tom. It ain't for me; I ain't used to it. The widder's good to me, and friendly; but I can't stand them ways. She makes me get up just at the same time every morning; she makes me wash, they comb me all to thunder; she won't let me sleep in the woodshed; I got to wear them blamed clothes that just smothers me, Tom; they don't seem to any air git through 'em, somehow; and they're so rotten nice that I can't set down, nor lay down, nor roll around anywher's; I hain't slid on a cellar-door for--well, it 'pears to be years; I got to go to church and sweat and sweat--I hate them ornery sermons! I can't ketch a fly in there, I can't chaw. I got to wear shoes all Sunday. The widder eats by a bell; she goes to bed by a bell; she gits up by a bell--everything's so awful reg'lar a body can't stand it." "Well, everybody does that way, Huck." "Tom, it don't make no difference. I ain't everybody, and I can't STAND it. It's awful to be tied up so. And grub comes too easy--I don't take no interest in vittles, that way. I got to ask to go a-fishing; I got to ask to go in a-swimming--dern'd if I hain't got to ask to do everything. Well, I'd got to talk so nice it wasn't no comfort--I'd got to go up in the attic and rip out awhile, every day, to git a taste in my mouth, or I'd a died, Tom. The widder wouldn't let me smoke; she wouldn't let me yell, she wouldn't let me gape, nor stretch, nor scratch, before folks--" [Then with a spasm of special irritation and injury]--"And dad fetch it, she prayed all the time! I never see such a woman! I HAD to shove, Tom--I just had to. And besides, that school's going to open, and I'd a had to go to it--well, I wouldn't stand THAT, Tom. Looky here, Tom, being rich ain't what it's cracked up to be. It's just worry and worry, and sweat and sweat, and a-wishing you was dead all the time. Now these clothes suits me, and this bar'l suits me, and I ain't ever going to shake 'em any more. Tom, I wouldn't ever got into all this trouble if it hadn't 'a' ben for that money; now you just take my sheer of it along with your'n, and gimme a ten-center sometimes--not many times, becuz I don't give a dern for a thing 'thout it's tollable hard to git--and you go and beg off for me with the widder." "Oh, Huck, you know I can't do that. 'Tain't fair; and besides if you'll try this thing just a while longer you'll come to like it." "Like it! Yes--the way I'd like a hot stove if I was to set on it long enough. No, Tom, I won't be rich, and I won't live in them cussed smothery houses. I like the woods, and the river, and hogsheads, and I'll stick to 'em, too. Blame it all! just as we'd got guns, and a cave, and all just fixed to rob, here this dern foolishness has got to come up and spile it all!" Tom saw his opportunity-- "Lookyhere, Huck, being rich ain't going to keep me back from turning robber." "No! Oh, good-licks; are you in real dead-wood earnest, Tom?" "Just as dead earnest as I'm sitting here. But Huck, we can't let you into the gang if you ain't respectable, you know." Huck's joy was quenched. "Can't let me in, Tom? Didn't you let me go for a pirate?" "Yes, but that's different. A robber is more high-toned than what a pirate is--as a general thing. In most countries they're awful high up in the nobility--dukes and such." "Now, Tom, hain't you always ben friendly to me? You wouldn't shet me out, would you, Tom? You wouldn't do that, now, WOULD you, Tom?" "Huck, I wouldn't want to, and I DON'T want to--but what would people say? Why, they'd say, 'Mph! Tom Sawyer's Gang! pretty low characters in it!' They'd mean you, Huck. You wouldn't like that, and I wouldn't." Huck was silent for some time, engaged in a mental struggle. Finally he said: "Well, I'll go back to the widder for a month and tackle it and see if I can come to stand it, if you'll let me b'long to the gang, Tom." "All right, Huck, it's a whiz! Come along, old chap, and I'll ask the widow to let up on you a little, Huck." "Will you, Tom--now will you? That's good. If she'll let up on some of the roughest things, I'll smoke private and cuss private, and crowd through or bust. When you going to start the gang and turn robbers?" "Oh, right off. We'll get the boys together and have the initiation to-night, maybe." "Have the which?" "Have the initiation." "What's that?" "It's to swear to stand by one another, and never tell the gang's secrets, even if you're chopped all to flinders, and kill anybody and all his family that hurts one of the gang." "That's gay--that's mighty gay, Tom, I tell you." "Well, I bet it is. And all that swearing's got to be done at midnight, in the lonesomest, awfulest place you can find--a ha'nted house is the best, but they're all ripped up now." "Well, midnight's good, anyway, Tom." "Yes, so it is. And you've got to swear on a coffin, and sign it with blood." "Now, that's something LIKE! Why, it's a million times bullier than pirating. I'll stick to the widder till I rot, Tom; and if I git to be a reg'lar ripper of a robber, and everybody talking 'bout it, I reckon she'll be proud she snaked me in out of the wet." CONCLUSION SO endeth this chronicle. It being strictly a history of a BOY, it must stop here; the story could not go much further without becoming the history of a MAN. When one writes a novel about grown people, he knows exactly where to stop--that is, with a marriage; but when he writes of juveniles, he must stop where he best can. Most of the characters that perform in this book still live, and are prosperous and happy. Some day it may seem worth while to take up the story of the younger ones again and see what sort of men and women they turned out to be; therefore it will be wisest not to reveal any of that part of their lives at present. Produced by David Widger. The previous edition was updated by Jose Menendez. THE ADVENTURES OF TOM SAWYER BY MARK TWAIN (Samuel Langhorne Clemens) P R E F A C E MOST of the adventures recorded in this book really occurred; one or two were experiences of my own, the rest those of boys who were schoolmates of mine. Huck Finn is drawn from life; Tom Sawyer also, but not from an individual--he is a combination of the characteristics of three boys whom I knew, and therefore belongs to the composite order of architecture. The odd superstitions touched upon were all prevalent among children and slaves in the West at the period of this story--that is to say, thirty or forty years ago. Although my book is intended mainly for the entertainment of boys and girls, I hope it will not be shunned by men and women on that account, for part of my plan has been to try to pleasantly remind adults of what they once were themselves, and of how they felt and thought and talked, and what queer enterprises they sometimes engaged in. THE AUTHOR. HARTFORD, 1876. T O M S A W Y E R CHAPTER I "TOM!" No answer. "TOM!" No answer. "What's gone with that boy, I wonder? You TOM!" No answer. The old lady pulled her spectacles down and looked over them about the room; then she put them up and looked out under them. She seldom or never looked THROUGH them for so small a thing as a boy; they were her state pair, the pride of her heart, and were built for "style," not service--she could have seen through a pair of stove-lids just as well. She looked perplexed for a moment, and then said, not fiercely, but still loud enough for the furniture to hear: "Well, I lay if I get hold of you I'll--" She did not finish, for by this time she was bending down and punching under the bed with the broom, and so she needed breath to punctuate the punches with. She resurrected nothing but the cat. "I never did see the beat of that boy!" She went to the open door and stood in it and looked out among the tomato vines and "jimpson" weeds that constituted the garden. No Tom. So she lifted up her voice at an angle calculated for distance and shouted: "Y-o-u-u TOM!" There was a slight noise behind her and she turned just in time to seize a small boy by the slack of his roundabout and arrest his flight. "There! I might 'a' thought of that closet. What you been doing in there?" "Nothing." "Nothing! Look at your hands. And look at your mouth. What IS that truck?" "I don't know, aunt." "Well, I know. It's jam--that's what it is. Forty times I've said if you didn't let that jam alone I'd skin you. Hand me that switch." The switch hovered in the air--the peril was desperate-- "My! Look behind you, aunt!" The old lady whirled round, and snatched her skirts out of danger. The lad fled on the instant, scrambled up the high board-fence, and disappeared over it. His aunt Polly stood surprised a moment, and then broke into a gentle laugh. "Hang the boy, can't I never learn anything? Ain't he played me tricks enough like that for me to be looking out for him by this time? But old fools is the biggest fools there is. Can't learn an old dog new tricks, as the saying is. But my goodness, he never plays them alike, two days, and how is a body to know what's coming? He 'pears to know just how long he can torment me before I get my dander up, and he knows if he can make out to put me off for a minute or make me laugh, it's all down again and I can't hit him a lick. I ain't doing my duty by that boy, and that's the Lord's truth, goodness knows. Spare the rod and spile the child, as the Good Book says. I'm a laying up sin and suffering for us both, I know. He's full of the Old Scratch, but laws-a-me! he's my own dead sister's boy, poor thing, and I ain't got the heart to lash him, somehow. Every time I let him off, my conscience does hurt me so, and every time I hit him my old heart most breaks. Well-a-well, man that is born of woman is of few days and full of trouble, as the Scripture says, and I reckon it's so. He'll play hookey this evening, * and [* Southwestern for "afternoon"] I'll just be obleeged to make him work, to-morrow, to punish him. It's mighty hard to make him work Saturdays, when all the boys is having holiday, but he hates work more than he hates anything else, and I've GOT to do some of my duty by him, or I'll be the ruination of the child." Tom did play hookey, and he had a very good time. He got back home barely in season to help Jim, the small colored boy, saw next-day's wood and split the kindlings before supper--at least he was there in time to tell his adventures to Jim while Jim did three-fourths of the work. Tom's younger brother (or rather half-brother) Sid was already through with his part of the work (picking up chips), for he was a quiet boy, and had no adventurous, troublesome ways. While Tom was eating his supper, and stealing sugar as opportunity offered, Aunt Polly asked him questions that were full of guile, and very deep--for she wanted to trap him into damaging revealments. Like many other simple-hearted souls, it was her pet vanity to believe she was endowed with a talent for dark and mysterious diplomacy, and she loved to contemplate her most transparent devices as marvels of low cunning. Said she: "Tom, it was middling warm in school, warn't it?" "Yes'm." "Powerful warm, warn't it?" "Yes'm." "Didn't you want to go in a-swimming, Tom?" A bit of a scare shot through Tom--a touch of uncomfortable suspicion. He searched Aunt Polly's face, but it told him nothing. So he said: "No'm--well, not very much." The old lady reached out her hand and felt Tom's shirt, and said: "But you ain't too warm now, though." And it flattered her to reflect that she had discovered that the shirt was dry without anybody knowing that that was what she had in her mind. But in spite of her, Tom knew where the wind lay, now. So he forestalled what might be the next move: "Some of us pumped on our heads--mine's damp yet. See?" Aunt Polly was vexed to think she had overlooked that bit of circumstantial evidence, and missed a trick. Then she had a new inspiration: "Tom, you didn't have to undo your shirt collar where I sewed it, to pump on your head, did you? Unbutton your jacket!" The trouble vanished out of Tom's face. He opened his jacket. His shirt collar was securely sewed. "Bother! Well, go 'long with you. I'd made sure you'd played hookey and been a-swimming. But I forgive ye, Tom. I reckon you're a kind of a singed cat, as the saying is--better'n you look. THIS time." She was half sorry her sagacity had miscarried, and half glad that Tom had stumbled into obedient conduct for once. But Sidney said: "Well, now, if I didn't think you sewed his collar with white thread, but it's black." "Why, I did sew it with white! Tom!" But Tom did not wait for the rest. As he went out at the door he said: "Siddy, I'll lick you for that." In a safe place Tom examined two large needles which were thrust into the lapels of his jacket, and had thread bound about them--one needle carried white thread and the other black. He said: "She'd never noticed if it hadn't been for Sid. Confound it! sometimes she sews it with white, and sometimes she sews it with black. I wish to geeminy she'd stick to one or t'other--I can't keep the run of 'em. But I bet you I'll lam Sid for that. I'll learn him!" He was not the Model Boy of the village. He knew the model boy very well though--and loathed him. Within two minutes, or even less, he had forgotten all his troubles. Not because his troubles were one whit less heavy and bitter to him than a man's are to a man, but because a new and powerful interest bore them down and drove them out of his mind for the time--just as men's misfortunes are forgotten in the excitement of new enterprises. This new interest was a valued novelty in whistling, which he had just acquired from a negro, and he was suffering to practise it undisturbed. It consisted in a peculiar bird-like turn, a sort of liquid warble, produced by touching the tongue to the roof of the mouth at short intervals in the midst of the music--the reader probably remembers how to do it, if he has ever been a boy. Diligence and attention soon gave him the knack of it, and he strode down the street with his mouth full of harmony and his soul full of gratitude. He felt much as an astronomer feels who has discovered a new planet--no doubt, as far as strong, deep, unalloyed pleasure is concerned, the advantage was with the boy, not the astronomer. The summer evenings were long. It was not dark, yet. Presently Tom checked his whistle. A stranger was before him--a boy a shade larger than himself. A new-comer of any age or either sex was an impressive curiosity in the poor little shabby village of St. Petersburg. This boy was well dressed, too--well dressed on a week-day. This was simply astounding. His cap was a dainty thing, his close-buttoned blue cloth roundabout was new and natty, and so were his pantaloons. He had shoes on--and it was only Friday. He even wore a necktie, a bright bit of ribbon. He had a citified air about him that ate into Tom's vitals. The more Tom stared at the splendid marvel, the higher he turned up his nose at his finery and the shabbier and shabbier his own outfit seemed to him to grow. Neither boy spoke. If one moved, the other moved--but only sidewise, in a circle; they kept face to face and eye to eye all the time. Finally Tom said: "I can lick you!" "I'd like to see you try it." "Well, I can do it." "No you can't, either." "Yes I can." "No you can't." "I can." "You can't." "Can!" "Can't!" An uncomfortable pause. Then Tom said: "What's your name?" "'Tisn't any of your business, maybe." "Well I 'low I'll MAKE it my business." "Well why don't you?" "If you say much, I will." "Much--much--MUCH. There now." "Oh, you think you're mighty smart, DON'T you? I could lick you with one hand tied behind me, if I wanted to." "Well why don't you DO it? You SAY you can do it." "Well I WILL, if you fool with me." "Oh yes--I've seen whole families in the same fix." "Smarty! You think you're SOME, now, DON'T you? Oh, what a hat!" "You can lump that hat if you don't like it. I dare you to knock it off--and anybody that'll take a dare will suck eggs." "You're a liar!" "You're another." "You're a fighting liar and dasn't take it up." "Aw--take a walk!" "Say--if you give me much more of your sass I'll take and bounce a rock off'n your head." "Oh, of COURSE you will." "Well I WILL." "Well why don't you DO it then? What do you keep SAYING you will for? Why don't you DO it? It's because you're afraid." "I AIN'T afraid." "You are." "I ain't." "You are." Another pause, and more eying and sidling around each other. Presently they were shoulder to shoulder. Tom said: "Get away from here!" "Go away yourself!" "I won't." "I won't either." So they stood, each with a foot placed at an angle as a brace, and both shoving with might and main, and glowering at each other with hate. But neither could get an advantage. After struggling till both were hot and flushed, each relaxed his strain with watchful caution, and Tom said: "You're a coward and a pup. I'll tell my big brother on you, and he can thrash you with his little finger, and I'll make him do it, too." "What do I care for your big brother? I've got a brother that's bigger than he is--and what's more, he can throw him over that fence, too." [Both brothers were imaginary.] "That's a lie." "YOUR saying so don't make it so." Tom drew a line in the dust with his big toe, and said: "I dare you to step over that, and I'll lick you till you can't stand up. Anybody that'll take a dare will steal sheep." The new boy stepped over promptly, and said: "Now you said you'd do it, now let's see you do it." "Don't you crowd me now; you better look out." "Well, you SAID you'd do it--why don't you do it?" "By jingo! for two cents I WILL do it." The new boy took two broad coppers out of his pocket and held them out with derision. Tom struck them to the ground. In an instant both boys were rolling and tumbling in the dirt, gripped together like cats; and for the space of a minute they tugged and tore at each other's hair and clothes, punched and scratched each other's nose, and covered themselves with dust and glory. Presently the confusion took form, and through the fog of battle Tom appeared, seated astride the new boy, and pounding him with his fists. "Holler 'nuff!" said he. The boy only struggled to free himself. He was crying--mainly from rage. "Holler 'nuff!"--and the pounding went on. At last the stranger got out a smothered "'Nuff!" and Tom let him up and said: "Now that'll learn you. Better look out who you're fooling with next time." The new boy went off brushing the dust from his clothes, sobbing, snuffling, and occasionally looking back and shaking his head and threatening what he would do to Tom the "next time he caught him out." To which Tom responded with jeers, and started off in high feather, and as soon as his back was turned the new boy snatched up a stone, threw it and hit him between the shoulders and then turned tail and ran like an antelope. Tom chased the traitor home, and thus found out where he lived. He then held a position at the gate for some time, daring the enemy to come outside, but the enemy only made faces at him through the window and declined. At last the enemy's mother appeared, and called Tom a bad, vicious, vulgar child, and ordered him away. So he went away; but he said he "'lowed" to "lay" for that boy. He got home pretty late that night, and when he climbed cautiously in at the window, he uncovered an ambuscade, in the person of his aunt; and when she saw the state his clothes were in her resolution to turn his Saturday holiday into captivity at hard labor became adamantine in its firmness. CHAPTER II SATURDAY morning was come, and all the summer world was bright and fresh, and brimming with life. There was a song in every heart; and if the heart was young the music issued at the lips. There was cheer in every face and a spring in every step. The locust-trees were in bloom and the fragrance of the blossoms filled the air. Cardiff Hill, beyond the village and above it, was green with vegetation and it lay just far enough away to seem a Delectable Land, dreamy, reposeful, and inviting. Tom appeared on the sidewalk with a bucket of whitewash and a long-handled brush. He surveyed the fence, and all gladness left him and a deep melancholy settled down upon his spirit. Thirty yards of board fence nine feet high. Life to him seemed hollow, and existence but a burden. Sighing, he dipped his brush and passed it along the topmost plank; repeated the operation; did it again; compared the insignificant whitewashed streak with the far-reaching continent of unwhitewashed fence, and sat down on a tree-box discouraged. Jim came skipping out at the gate with a tin pail, and singing Buffalo Gals. Bringing water from the town pump had always been hateful work in Tom's eyes, before, but now it did not strike him so. He remembered that there was company at the pump. White, mulatto, and negro boys and girls were always there waiting their turns, resting, trading playthings, quarrelling, fighting, skylarking. And he remembered that although the pump was only a hundred and fifty yards off, Jim never got back with a bucket of water under an hour--and even then somebody generally had to go after him. Tom said: "Say, Jim, I'll fetch the water if you'll whitewash some." Jim shook his head and said: "Can't, Mars Tom. Ole missis, she tole me I got to go an' git dis water an' not stop foolin' roun' wid anybody. She say she spec' Mars Tom gwine to ax me to whitewash, an' so she tole me go 'long an' 'tend to my own business--she 'lowed SHE'D 'tend to de whitewashin'." "Oh, never you mind what she said, Jim. That's the way she always talks. Gimme the bucket--I won't be gone only a a minute. SHE won't ever know." "Oh, I dasn't, Mars Tom. Ole missis she'd take an' tar de head off'n me. 'Deed she would." "SHE! She never licks anybody--whacks 'em over the head with her thimble--and who cares for that, I'd like to know. She talks awful, but talk don't hurt--anyways it don't if she don't cry. Jim, I'll give you a marvel. I'll give you a white alley!" Jim began to waver. "White alley, Jim! And it's a bully taw." "My! Dat's a mighty gay marvel, I tell you! But Mars Tom I's powerful 'fraid ole missis--" "And besides, if you will I'll show you my sore toe." Jim was only human--this attraction was too much for him. He put down his pail, took the white alley, and bent over the toe with absorbing interest while the bandage was being unwound. In another moment he was flying down the street with his pail and a tingling rear, Tom was whitewashing with vigor, and Aunt Polly was retiring from the field with a slipper in her hand and triumph in her eye. But Tom's energy did not last. He began to think of the fun he had planned for this day, and his sorrows multiplied. Soon the free boys would come tripping along on all sorts of delicious expeditions, and they would make a world of fun of him for having to work--the very thought of it burnt him like fire. He got out his worldly wealth and examined it--bits of toys, marbles, and trash; enough to buy an exchange of WORK, maybe, but not half enough to buy so much as half an hour of pure freedom. So he returned his straitened means to his pocket, and gave up the idea of trying to buy the boys. At this dark and hopeless moment an inspiration burst upon him! Nothing less than a great, magnificent inspiration. He took up his brush and went tranquilly to work. Ben Rogers hove in sight presently--the very boy, of all boys, whose ridicule he had been dreading. Ben's gait was the hop-skip-and-jump--proof enough that his heart was light and his anticipations high. He was eating an apple, and giving a long, melodious whoop, at intervals, followed by a deep-toned ding-dong-dong, ding-dong-dong, for he was personating a steamboat. As he drew near, he slackened speed, took the middle of the street, leaned far over to starboard and rounded to ponderously and with laborious pomp and circumstance--for he was personating the Big Missouri, and considered himself to be drawing nine feet of water. He was boat and captain and engine-bells combined, so he had to imagine himself standing on his own hurricane-deck giving the orders and executing them: "Stop her, sir! Ting-a-ling-ling!" The headway ran almost out, and he drew up slowly toward the sidewalk. "Ship up to back! Ting-a-ling-ling!" His arms straightened and stiffened down his sides. "Set her back on the stabboard! Ting-a-ling-ling! Chow! ch-chow-wow! Chow!" His right hand, meantime, describing stately circles--for it was representing a forty-foot wheel. "Let her go back on the labboard! Ting-a-lingling! Chow-ch-chow-chow!" The left hand began to describe circles. "Stop the stabboard! Ting-a-ling-ling! Stop the labboard! Come ahead on the stabboard! Stop her! Let your outside turn over slow! Ting-a-ling-ling! Chow-ow-ow! Get out that head-line! LIVELY now! Come--out with your spring-line--what're you about there! Take a turn round that stump with the bight of it! Stand by that stage, now--let her go! Done with the engines, sir! Ting-a-ling-ling! SH'T! S'H'T! SH'T!" (trying the gauge-cocks). Tom went on whitewashing--paid no attention to the steamboat. Ben stared a moment and then said: "Hi-YI! YOU'RE up a stump, ain't you!" No answer. Tom surveyed his last touch with the eye of an artist, then he gave his brush another gentle sweep and surveyed the result, as before. Ben ranged up alongside of him. Tom's mouth watered for the apple, but he stuck to his work. Ben said: "Hello, old chap, you got to work, hey?" Tom wheeled suddenly and said: "Why, it's you, Ben! I warn't noticing." "Say--I'm going in a-swimming, I am. Don't you wish you could? But of course you'd druther WORK--wouldn't you? Course you would!" Tom contemplated the boy a bit, and said: "What do you call work?" "Why, ain't THAT work?" Tom resumed his whitewashing, and answered carelessly: "Well, maybe it is, and maybe it ain't. All I know, is, it suits Tom Sawyer." "Oh come, now, you don't mean to let on that you LIKE it?" The brush continued to move. "Like it? Well, I don't see why I oughtn't to like it. Does a boy get a chance to whitewash a fence every day?" That put the thing in a new light. Ben stopped nibbling his apple. Tom swept his brush daintily back and forth--stepped back to note the effect--added a touch here and there--criticised the effect again--Ben watching every move and getting more and more interested, more and more absorbed. Presently he said: "Say, Tom, let ME whitewash a little." Tom considered, was about to consent; but he altered his mind: "No--no--I reckon it wouldn't hardly do, Ben. You see, Aunt Polly's awful particular about this fence--right here on the street, you know --but if it was the back fence I wouldn't mind and SHE wouldn't. Yes, she's awful particular about this fence; it's got to be done very careful; I reckon there ain't one boy in a thousand, maybe two thousand, that can do it the way it's got to be done." "No--is that so? Oh come, now--lemme just try. Only just a little--I'd let YOU, if you was me, Tom." "Ben, I'd like to, honest injun; but Aunt Polly--well, Jim wanted to do it, but she wouldn't let him; Sid wanted to do it, and she wouldn't let Sid. Now don't you see how I'm fixed? If you was to tackle this fence and anything was to happen to it--" "Oh, shucks, I'll be just as careful. Now lemme try. Say--I'll give you the core of my apple." "Well, here--No, Ben, now don't. I'm afeard--" "I'll give you ALL of it!" Tom gave up the brush with reluctance in his face, but alacrity in his heart. And while the late steamer Big Missouri worked and sweated in the sun, the retired artist sat on a barrel in the shade close by, dangled his legs, munched his apple, and planned the slaughter of more innocents. There was no lack of material; boys happened along every little while; they came to jeer, but remained to whitewash. By the time Ben was fagged out, Tom had traded the next chance to Billy Fisher for a kite, in good repair; and when he played out, Johnny Miller bought in for a dead rat and a string to swing it with--and so on, and so on, hour after hour. And when the middle of the afternoon came, from being a poor poverty-stricken boy in the morning, Tom was literally rolling in wealth. He had besides the things before mentioned, twelve marbles, part of a jews-harp, a piece of blue bottle-glass to look through, a spool cannon, a key that wouldn't unlock anything, a fragment of chalk, a glass stopper of a decanter, a tin soldier, a couple of tadpoles, six fire-crackers, a kitten with only one eye, a brass doorknob, a dog-collar--but no dog--the handle of a knife, four pieces of orange-peel, and a dilapidated old window sash. He had had a nice, good, idle time all the while--plenty of company --and the fence had three coats of whitewash on it! If he hadn't run out of whitewash he would have bankrupted every boy in the village. Tom said to himself that it was not such a hollow world, after all. He had discovered a great law of human action, without knowing it--namely, that in order to make a man or a boy covet a thing, it is only necessary to make the thing difficult to attain. If he had been a great and wise philosopher, like the writer of this book, he would now have comprehended that Work consists of whatever a body is OBLIGED to do, and that Play consists of whatever a body is not obliged to do. And this would help him to understand why constructing artificial flowers or performing on a tread-mill is work, while rolling ten-pins or climbing Mont Blanc is only amusement. There are wealthy gentlemen in England who drive four-horse passenger-coaches twenty or thirty miles on a daily line, in the summer, because the privilege costs them considerable money; but if they were offered wages for the service, that would turn it into work and then they would resign. The boy mused awhile over the substantial change which had taken place in his worldly circumstances, and then wended toward headquarters to report. CHAPTER III TOM presented himself before Aunt Polly, who was sitting by an open window in a pleasant rearward apartment, which was bedroom, breakfast-room, dining-room, and library, combined. The balmy summer air, the restful quiet, the odor of the flowers, and the drowsing murmur of the bees had had their effect, and she was nodding over her knitting --for she had no company but the cat, and it was asleep in her lap. Her spectacles were propped up on her gray head for safety. She had thought that of course Tom had deserted long ago, and she wondered at seeing him place himself in her power again in this intrepid way. He said: "Mayn't I go and play now, aunt?" "What, a'ready? How much have you done?" "It's all done, aunt." "Tom, don't lie to me--I can't bear it." "I ain't, aunt; it IS all done." Aunt Polly placed small trust in such evidence. She went out to see for herself; and she would have been content to find twenty per cent. of Tom's statement true. When she found the entire fence whitewashed, and not only whitewashed but elaborately coated and recoated, and even a streak added to the ground, her astonishment was almost unspeakable. She said: "Well, I never! There's no getting round it, you can work when you're a mind to, Tom." And then she diluted the compliment by adding, "But it's powerful seldom you're a mind to, I'm bound to say. Well, go 'long and play; but mind you get back some time in a week, or I'll tan you." She was so overcome by the splendor of his achievement that she took him into the closet and selected a choice apple and delivered it to him, along with an improving lecture upon the added value and flavor a treat took to itself when it came without sin through virtuous effort. And while she closed with a happy Scriptural flourish, he "hooked" a doughnut. Then he skipped out, and saw Sid just starting up the outside stairway that led to the back rooms on the second floor. Clods were handy and the air was full of them in a twinkling. They raged around Sid like a hail-storm; and before Aunt Polly could collect her surprised faculties and sally to the rescue, six or seven clods had taken personal effect, and Tom was over the fence and gone. There was a gate, but as a general thing he was too crowded for time to make use of it. His soul was at peace, now that he had settled with Sid for calling attention to his black thread and getting him into trouble. Tom skirted the block, and came round into a muddy alley that led by the back of his aunt's cow-stable. He presently got safely beyond the reach of capture and punishment, and hastened toward the public square of the village, where two "military" companies of boys had met for conflict, according to previous appointment. Tom was General of one of these armies, Joe Harper (a bosom friend) General of the other. These two great commanders did not condescend to fight in person--that being better suited to the still smaller fry--but sat together on an eminence and conducted the field operations by orders delivered through aides-de-camp. Tom's army won a great victory, after a long and hard-fought battle. Then the dead were counted, prisoners exchanged, the terms of the next disagreement agreed upon, and the day for the necessary battle appointed; after which the armies fell into line and marched away, and Tom turned homeward alone. As he was passing by the house where Jeff Thatcher lived, he saw a new girl in the garden--a lovely little blue-eyed creature with yellow hair plaited into two long-tails, white summer frock and embroidered pantalettes. The fresh-crowned hero fell without firing a shot. A certain Amy Lawrence vanished out of his heart and left not even a memory of herself behind. He had thought he loved her to distraction; he had regarded his passion as adoration; and behold it was only a poor little evanescent partiality. He had been months winning her; she had confessed hardly a week ago; he had been the happiest and the proudest boy in the world only seven short days, and here in one instant of time she had gone out of his heart like a casual stranger whose visit is done. He worshipped this new angel with furtive eye, till he saw that she had discovered him; then he pretended he did not know she was present, and began to "show off" in all sorts of absurd boyish ways, in order to win her admiration. He kept up this grotesque foolishness for some time; but by-and-by, while he was in the midst of some dangerous gymnastic performances, he glanced aside and saw that the little girl was wending her way toward the house. Tom came up to the fence and leaned on it, grieving, and hoping she would tarry yet awhile longer. She halted a moment on the steps and then moved toward the door. Tom heaved a great sigh as she put her foot on the threshold. But his face lit up, right away, for she tossed a pansy over the fence a moment before she disappeared. The boy ran around and stopped within a foot or two of the flower, and then shaded his eyes with his hand and began to look down street as if he had discovered something of interest going on in that direction. Presently he picked up a straw and began trying to balance it on his nose, with his head tilted far back; and as he moved from side to side, in his efforts, he edged nearer and nearer toward the pansy; finally his bare foot rested upon it, his pliant toes closed upon it, and he hopped away with the treasure and disappeared round the corner. But only for a minute--only while he could button the flower inside his jacket, next his heart--or next his stomach, possibly, for he was not much posted in anatomy, and not hypercritical, anyway. He returned, now, and hung about the fence till nightfall, "showing off," as before; but the girl never exhibited herself again, though Tom comforted himself a little with the hope that she had been near some window, meantime, and been aware of his attentions. Finally he strode home reluctantly, with his poor head full of visions. All through supper his spirits were so high that his aunt wondered "what had got into the child." He took a good scolding about clodding Sid, and did not seem to mind it in the least. He tried to steal sugar under his aunt's very nose, and got his knuckles rapped for it. He said: "Aunt, you don't whack Sid when he takes it." "Well, Sid don't torment a body the way you do. You'd be always into that sugar if I warn't watching you." Presently she stepped into the kitchen, and Sid, happy in his immunity, reached for the sugar-bowl--a sort of glorying over Tom which was wellnigh unbearable. But Sid's fingers slipped and the bowl dropped and broke. Tom was in ecstasies. In such ecstasies that he even controlled his tongue and was silent. He said to himself that he would not speak a word, even when his aunt came in, but would sit perfectly still till she asked who did the mischief; and then he would tell, and there would be nothing so good in the world as to see that pet model "catch it." He was so brimful of exultation that he could hardly hold himself when the old lady came back and stood above the wreck discharging lightnings of wrath from over her spectacles. He said to himself, "Now it's coming!" And the next instant he was sprawling on the floor! The potent palm was uplifted to strike again when Tom cried out: "Hold on, now, what 'er you belting ME for?--Sid broke it!" Aunt Polly paused, perplexed, and Tom looked for healing pity. But when she got her tongue again, she only said: "Umf! Well, you didn't get a lick amiss, I reckon. You been into some other audacious mischief when I wasn't around, like enough." Then her conscience reproached her, and she yearned to say something kind and loving; but she judged that this would be construed into a confession that she had been in the wrong, and discipline forbade that. So she kept silence, and went about her affairs with a troubled heart. Tom sulked in a corner and exalted his woes. He knew that in her heart his aunt was on her knees to him, and he was morosely gratified by the consciousness of it. He would hang out no signals, he would take notice of none. He knew that a yearning glance fell upon him, now and then, through a film of tears, but he refused recognition of it. He pictured himself lying sick unto death and his aunt bending over him beseeching one little forgiving word, but he would turn his face to the wall, and die with that word unsaid. Ah, how would she feel then? And he pictured himself brought home from the river, dead, with his curls all wet, and his sore heart at rest. How she would throw herself upon him, and how her tears would fall like rain, and her lips pray God to give her back her boy and she would never, never abuse him any more! But he would lie there cold and white and make no sign--a poor little sufferer, whose griefs were at an end. He so worked upon his feelings with the pathos of these dreams, that he had to keep swallowing, he was so like to choke; and his eyes swam in a blur of water, which overflowed when he winked, and ran down and trickled from the end of his nose. And such a luxury to him was this petting of his sorrows, that he could not bear to have any worldly cheeriness or any grating delight intrude upon it; it was too sacred for such contact; and so, presently, when his cousin Mary danced in, all alive with the joy of seeing home again after an age-long visit of one week to the country, he got up and moved in clouds and darkness out at one door as she brought song and sunshine in at the other. He wandered far from the accustomed haunts of boys, and sought desolate places that were in harmony with his spirit. A log raft in the river invited him, and he seated himself on its outer edge and contemplated the dreary vastness of the stream, wishing, the while, that he could only be drowned, all at once and unconsciously, without undergoing the uncomfortable routine devised by nature. Then he thought of his flower. He got it out, rumpled and wilted, and it mightily increased his dismal felicity. He wondered if she would pity him if she knew? Would she cry, and wish that she had a right to put her arms around his neck and comfort him? Or would she turn coldly away like all the hollow world? This picture brought such an agony of pleasurable suffering that he worked it over and over again in his mind and set it up in new and varied lights, till he wore it threadbare. At last he rose up sighing and departed in the darkness. About half-past nine or ten o'clock he came along the deserted street to where the Adored Unknown lived; he paused a moment; no sound fell upon his listening ear; a candle was casting a dull glow upon the curtain of a second-story window. Was the sacred presence there? He climbed the fence, threaded his stealthy way through the plants, till he stood under that window; he looked up at it long, and with emotion; then he laid him down on the ground under it, disposing himself upon his back, with his hands clasped upon his breast and holding his poor wilted flower. And thus he would die--out in the cold world, with no shelter over his homeless head, no friendly hand to wipe the death-damps from his brow, no loving face to bend pityingly over him when the great agony came. And thus SHE would see him when she looked out upon the glad morning, and oh! would she drop one little tear upon his poor, lifeless form, would she heave one little sigh to see a bright young life so rudely blighted, so untimely cut down? The window went up, a maid-servant's discordant voice profaned the holy calm, and a deluge of water drenched the prone martyr's remains! The strangling hero sprang up with a relieving snort. There was a whiz as of a missile in the air, mingled with the murmur of a curse, a sound as of shivering glass followed, and a small, vague form went over the fence and shot away in the gloom. Not long after, as Tom, all undressed for bed, was surveying his drenched garments by the light of a tallow dip, Sid woke up; but if he had any dim idea of making any "references to allusions," he thought better of it and held his peace, for there was danger in Tom's eye. Tom turned in without the added vexation of prayers, and Sid made mental note of the omission. CHAPTER IV THE sun rose upon a tranquil world, and beamed down upon the peaceful village like a benediction. Breakfast over, Aunt Polly had family worship: it began with a prayer built from the ground up of solid courses of Scriptural quotations, welded together with a thin mortar of originality; and from the summit of this she delivered a grim chapter of the Mosaic Law, as from Sinai. Then Tom girded up his loins, so to speak, and went to work to "get his verses." Sid had learned his lesson days before. Tom bent all his energies to the memorizing of five verses, and he chose part of the Sermon on the Mount, because he could find no verses that were shorter. At the end of half an hour Tom had a vague general idea of his lesson, but no more, for his mind was traversing the whole field of human thought, and his hands were busy with distracting recreations. Mary took his book to hear him recite, and he tried to find his way through the fog: "Blessed are the--a--a--" "Poor"-- "Yes--poor; blessed are the poor--a--a--" "In spirit--" "In spirit; blessed are the poor in spirit, for they--they--" "THEIRS--" "For THEIRS. Blessed are the poor in spirit, for theirs is the kingdom of heaven. Blessed are they that mourn, for they--they--" "Sh--" "For they--a--" "S, H, A--" "For they S, H--Oh, I don't know what it is!" "SHALL!" "Oh, SHALL! for they shall--for they shall--a--a--shall mourn--a--a-- blessed are they that shall--they that--a--they that shall mourn, for they shall--a--shall WHAT? Why don't you tell me, Mary?--what do you want to be so mean for?" "Oh, Tom, you poor thick-headed thing, I'm not teasing you. I wouldn't do that. You must go and learn it again. Don't you be discouraged, Tom, you'll manage it--and if you do, I'll give you something ever so nice. There, now, that's a good boy." "All right! What is it, Mary, tell me what it is." "Never you mind, Tom. You know if I say it's nice, it is nice." "You bet you that's so, Mary. All right, I'll tackle it again." And he did "tackle it again"--and under the double pressure of curiosity and prospective gain he did it with such spirit that he accomplished a shining success. Mary gave him a brand-new "Barlow" knife worth twelve and a half cents; and the convulsion of delight that swept his system shook him to his foundations. True, the knife would not cut anything, but it was a "sure-enough" Barlow, and there was inconceivable grandeur in that--though where the Western boys ever got the idea that such a weapon could possibly be counterfeited to its injury is an imposing mystery and will always remain so, perhaps. Tom contrived to scarify the cupboard with it, and was arranging to begin on the bureau, when he was called off to dress for Sunday-school. Mary gave him a tin basin of water and a piece of soap, and he went outside the door and set the basin on a little bench there; then he dipped the soap in the water and laid it down; turned up his sleeves; poured out the water on the ground, gently, and then entered the kitchen and began to wipe his face diligently on the towel behind the door. But Mary removed the towel and said: "Now ain't you ashamed, Tom. You mustn't be so bad. Water won't hurt you." Tom was a trifle disconcerted. The basin was refilled, and this time he stood over it a little while, gathering resolution; took in a big breath and began. When he entered the kitchen presently, with both eyes shut and groping for the towel with his hands, an honorable testimony of suds and water was dripping from his face. But when he emerged from the towel, he was not yet satisfactory, for the clean territory stopped short at his chin and his jaws, like a mask; below and beyond this line there was a dark expanse of unirrigated soil that spread downward in front and backward around his neck. Mary took him in hand, and when she was done with him he was a man and a brother, without distinction of color, and his saturated hair was neatly brushed, and its short curls wrought into a dainty and symmetrical general effect. [He privately smoothed out the curls, with labor and difficulty, and plastered his hair close down to his head; for he held curls to be effeminate, and his own filled his life with bitterness.] Then Mary got out a suit of his clothing that had been used only on Sundays during two years--they were simply called his "other clothes"--and so by that we know the size of his wardrobe. The girl "put him to rights" after he had dressed himself; she buttoned his neat roundabout up to his chin, turned his vast shirt collar down over his shoulders, brushed him off and crowned him with his speckled straw hat. He now looked exceedingly improved and uncomfortable. He was fully as uncomfortable as he looked; for there was a restraint about whole clothes and cleanliness that galled him. He hoped that Mary would forget his shoes, but the hope was blighted; she coated them thoroughly with tallow, as was the custom, and brought them out. He lost his temper and said he was always being made to do everything he didn't want to do. But Mary said, persuasively: "Please, Tom--that's a good boy." So he got into the shoes snarling. Mary was soon ready, and the three children set out for Sunday-school--a place that Tom hated with his whole heart; but Sid and Mary were fond of it. Sabbath-school hours were from nine to half-past ten; and then church service. Two of the children always remained for the sermon voluntarily, and the other always remained too--for stronger reasons. The church's high-backed, uncushioned pews would seat about three hundred persons; the edifice was but a small, plain affair, with a sort of pine board tree-box on top of it for a steeple. At the door Tom dropped back a step and accosted a Sunday-dressed comrade: "Say, Billy, got a yaller ticket?" "Yes." "What'll you take for her?" "What'll you give?" "Piece of lickrish and a fish-hook." "Less see 'em." Tom exhibited. They were satisfactory, and the property changed hands. Then Tom traded a couple of white alleys for three red tickets, and some small trifle or other for a couple of blue ones. He waylaid other boys as they came, and went on buying tickets of various colors ten or fifteen minutes longer. He entered the church, now, with a swarm of clean and noisy boys and girls, proceeded to his seat and started a quarrel with the first boy that came handy. The teacher, a grave, elderly man, interfered; then turned his back a moment and Tom pulled a boy's hair in the next bench, and was absorbed in his book when the boy turned around; stuck a pin in another boy, presently, in order to hear him say "Ouch!" and got a new reprimand from his teacher. Tom's whole class were of a pattern--restless, noisy, and troublesome. When they came to recite their lessons, not one of them knew his verses perfectly, but had to be prompted all along. However, they worried through, and each got his reward--in small blue tickets, each with a passage of Scripture on it; each blue ticket was pay for two verses of the recitation. Ten blue tickets equalled a red one, and could be exchanged for it; ten red tickets equalled a yellow one; for ten yellow tickets the superintendent gave a very plainly bound Bible (worth forty cents in those easy times) to the pupil. How many of my readers would have the industry and application to memorize two thousand verses, even for a Dore Bible? And yet Mary had acquired two Bibles in this way--it was the patient work of two years--and a boy of German parentage had won four or five. He once recited three thousand verses without stopping; but the strain upon his mental faculties was too great, and he was little better than an idiot from that day forth--a grievous misfortune for the school, for on great occasions, before company, the superintendent (as Tom expressed it) had always made this boy come out and "spread himself." Only the older pupils managed to keep their tickets and stick to their tedious work long enough to get a Bible, and so the delivery of one of these prizes was a rare and noteworthy circumstance; the successful pupil was so great and conspicuous for that day that on the spot every scholar's heart was fired with a fresh ambition that often lasted a couple of weeks. It is possible that Tom's mental stomach had never really hungered for one of those prizes, but unquestionably his entire being had for many a day longed for the glory and the eclat that came with it. In due course the superintendent stood up in front of the pulpit, with a closed hymn-book in his hand and his forefinger inserted between its leaves, and commanded attention. When a Sunday-school superintendent makes his customary little speech, a hymn-book in the hand is as necessary as is the inevitable sheet of music in the hand of a singer who stands forward on the platform and sings a solo at a concert --though why, is a mystery: for neither the hymn-book nor the sheet of music is ever referred to by the sufferer. This superintendent was a slim creature of thirty-five, with a sandy goatee and short sandy hair; he wore a stiff standing-collar whose upper edge almost reached his ears and whose sharp points curved forward abreast the corners of his mouth--a fence that compelled a straight lookout ahead, and a turning of the whole body when a side view was required; his chin was propped on a spreading cravat which was as broad and as long as a bank-note, and had fringed ends; his boot toes were turned sharply up, in the fashion of the day, like sleigh-runners--an effect patiently and laboriously produced by the young men by sitting with their toes pressed against a wall for hours together. Mr. Walters was very earnest of mien, and very sincere and honest at heart; and he held sacred things and places in such reverence, and so separated them from worldly matters, that unconsciously to himself his Sunday-school voice had acquired a peculiar intonation which was wholly absent on week-days. He began after this fashion: "Now, children, I want you all to sit up just as straight and pretty as you can and give me all your attention for a minute or two. There --that is it. That is the way good little boys and girls should do. I see one little girl who is looking out of the window--I am afraid she thinks I am out there somewhere--perhaps up in one of the trees making a speech to the little birds. [Applausive titter.] I want to tell you how good it makes me feel to see so many bright, clean little faces assembled in a place like this, learning to do right and be good." And so forth and so on. It is not necessary to set down the rest of the oration. It was of a pattern which does not vary, and so it is familiar to us all. The latter third of the speech was marred by the resumption of fights and other recreations among certain of the bad boys, and by fidgetings and whisperings that extended far and wide, washing even to the bases of isolated and incorruptible rocks like Sid and Mary. But now every sound ceased suddenly, with the subsidence of Mr. Walters' voice, and the conclusion of the speech was received with a burst of silent gratitude. A good part of the whispering had been occasioned by an event which was more or less rare--the entrance of visitors: lawyer Thatcher, accompanied by a very feeble and aged man; a fine, portly, middle-aged gentleman with iron-gray hair; and a dignified lady who was doubtless the latter's wife. The lady was leading a child. Tom had been restless and full of chafings and repinings; conscience-smitten, too--he could not meet Amy Lawrence's eye, he could not brook her loving gaze. But when he saw this small new-comer his soul was all ablaze with bliss in a moment. The next moment he was "showing off" with all his might --cuffing boys, pulling hair, making faces--in a word, using every art that seemed likely to fascinate a girl and win her applause. His exaltation had but one alloy--the memory of his humiliation in this angel's garden--and that record in sand was fast washing out, under the waves of happiness that were sweeping over it now. The visitors were given the highest seat of honor, and as soon as Mr. Walters' speech was finished, he introduced them to the school. The middle-aged man turned out to be a prodigious personage--no less a one than the county judge--altogether the most august creation these children had ever looked upon--and they wondered what kind of material he was made of--and they half wanted to hear him roar, and were half afraid he might, too. He was from Constantinople, twelve miles away--so he had travelled, and seen the world--these very eyes had looked upon the county court-house--which was said to have a tin roof. The awe which these reflections inspired was attested by the impressive silence and the ranks of staring eyes. This was the great Judge Thatcher, brother of their own lawyer. Jeff Thatcher immediately went forward, to be familiar with the great man and be envied by the school. It would have been music to his soul to hear the whisperings: "Look at him, Jim! He's a going up there. Say--look! he's a going to shake hands with him--he IS shaking hands with him! By jings, don't you wish you was Jeff?" Mr. Walters fell to "showing off," with all sorts of official bustlings and activities, giving orders, delivering judgments, discharging directions here, there, everywhere that he could find a target. The librarian "showed off"--running hither and thither with his arms full of books and making a deal of the splutter and fuss that insect authority delights in. The young lady teachers "showed off" --bending sweetly over pupils that were lately being boxed, lifting pretty warning fingers at bad little boys and patting good ones lovingly. The young gentlemen teachers "showed off" with small scoldings and other little displays of authority and fine attention to discipline--and most of the teachers, of both sexes, found business up at the library, by the pulpit; and it was business that frequently had to be done over again two or three times (with much seeming vexation). The little girls "showed off" in various ways, and the little boys "showed off" with such diligence that the air was thick with paper wads and the murmur of scufflings. And above it all the great man sat and beamed a majestic judicial smile upon all the house, and warmed himself in the sun of his own grandeur--for he was "showing off," too. There was only one thing wanting to make Mr. Walters' ecstasy complete, and that was a chance to deliver a Bible-prize and exhibit a prodigy. Several pupils had a few yellow tickets, but none had enough --he had been around among the star pupils inquiring. He would have given worlds, now, to have that German lad back again with a sound mind. And now at this moment, when hope was dead, Tom Sawyer came forward with nine yellow tickets, nine red tickets, and ten blue ones, and demanded a Bible. This was a thunderbolt out of a clear sky. Walters was not expecting an application from this source for the next ten years. But there was no getting around it--here were the certified checks, and they were good for their face. Tom was therefore elevated to a place with the Judge and the other elect, and the great news was announced from headquarters. It was the most stunning surprise of the decade, and so profound was the sensation that it lifted the new hero up to the judicial one's altitude, and the school had two marvels to gaze upon in place of one. The boys were all eaten up with envy--but those that suffered the bitterest pangs were those who perceived too late that they themselves had contributed to this hated splendor by trading tickets to Tom for the wealth he had amassed in selling whitewashing privileges. These despised themselves, as being the dupes of a wily fraud, a guileful snake in the grass. The prize was delivered to Tom with as much effusion as the superintendent could pump up under the circumstances; but it lacked somewhat of the true gush, for the poor fellow's instinct taught him that there was a mystery here that could not well bear the light, perhaps; it was simply preposterous that this boy had warehoused two thousand sheaves of Scriptural wisdom on his premises--a dozen would strain his capacity, without a doubt. Amy Lawrence was proud and glad, and she tried to make Tom see it in her face--but he wouldn't look. She wondered; then she was just a grain troubled; next a dim suspicion came and went--came again; she watched; a furtive glance told her worlds--and then her heart broke, and she was jealous, and angry, and the tears came and she hated everybody. Tom most of all (she thought). Tom was introduced to the Judge; but his tongue was tied, his breath would hardly come, his heart quaked--partly because of the awful greatness of the man, but mainly because he was her parent. He would have liked to fall down and worship him, if it were in the dark. The Judge put his hand on Tom's head and called him a fine little man, and asked him what his name was. The boy stammered, gasped, and got it out: "Tom." "Oh, no, not Tom--it is--" "Thomas." "Ah, that's it. I thought there was more to it, maybe. That's very well. But you've another one I daresay, and you'll tell it to me, won't you?" "Tell the gentleman your other name, Thomas," said Walters, "and say sir. You mustn't forget your manners." "Thomas Sawyer--sir." "That's it! That's a good boy. Fine boy. Fine, manly little fellow. Two thousand verses is a great many--very, very great many. And you never can be sorry for the trouble you took to learn them; for knowledge is worth more than anything there is in the world; it's what makes great men and good men; you'll be a great man and a good man yourself, some day, Thomas, and then you'll look back and say, It's all owing to the precious Sunday-school privileges of my boyhood--it's all owing to my dear teachers that taught me to learn--it's all owing to the good superintendent, who encouraged me, and watched over me, and gave me a beautiful Bible--a splendid elegant Bible--to keep and have it all for my own, always--it's all owing to right bringing up! That is what you will say, Thomas--and you wouldn't take any money for those two thousand verses--no indeed you wouldn't. And now you wouldn't mind telling me and this lady some of the things you've learned--no, I know you wouldn't--for we are proud of little boys that learn. Now, no doubt you know the names of all the twelve disciples. Won't you tell us the names of the first two that were appointed?" Tom was tugging at a button-hole and looking sheepish. He blushed, now, and his eyes fell. Mr. Walters' heart sank within him. He said to himself, it is not possible that the boy can answer the simplest question--why DID the Judge ask him? Yet he felt obliged to speak up and say: "Answer the gentleman, Thomas--don't be afraid." Tom still hung fire. "Now I know you'll tell me," said the lady. "The names of the first two disciples were--" "DAVID AND GOLIAH!" Let us draw the curtain of charity over the rest of the scene. CHAPTER V ABOUT half-past ten the cracked bell of the small church began to ring, and presently the people began to gather for the morning sermon. The Sunday-school children distributed themselves about the house and occupied pews with their parents, so as to be under supervision. Aunt Polly came, and Tom and Sid and Mary sat with her--Tom being placed next the aisle, in order that he might be as far away from the open window and the seductive outside summer scenes as possible. The crowd filed up the aisles: the aged and needy postmaster, who had seen better days; the mayor and his wife--for they had a mayor there, among other unnecessaries; the justice of the peace; the widow Douglass, fair, smart, and forty, a generous, good-hearted soul and well-to-do, her hill mansion the only palace in the town, and the most hospitable and much the most lavish in the matter of festivities that St. Petersburg could boast; the bent and venerable Major and Mrs. Ward; lawyer Riverson, the new notable from a distance; next the belle of the village, followed by a troop of lawn-clad and ribbon-decked young heart-breakers; then all the young clerks in town in a body--for they had stood in the vestibule sucking their cane-heads, a circling wall of oiled and simpering admirers, till the last girl had run their gantlet; and last of all came the Model Boy, Willie Mufferson, taking as heedful care of his mother as if she were cut glass. He always brought his mother to church, and was the pride of all the matrons. The boys all hated him, he was so good. And besides, he had been "thrown up to them" so much. His white handkerchief was hanging out of his pocket behind, as usual on Sundays--accidentally. Tom had no handkerchief, and he looked upon boys who had as snobs. The congregation being fully assembled, now, the bell rang once more, to warn laggards and stragglers, and then a solemn hush fell upon the church which was only broken by the tittering and whispering of the choir in the gallery. The choir always tittered and whispered all through service. There was once a church choir that was not ill-bred, but I have forgotten where it was, now. It was a great many years ago, and I can scarcely remember anything about it, but I think it was in some foreign country. The minister gave out the hymn, and read it through with a relish, in a peculiar style which was much admired in that part of the country. His voice began on a medium key and climbed steadily up till it reached a certain point, where it bore with strong emphasis upon the topmost word and then plunged down as if from a spring-board: Shall I be car-ri-ed toe the skies, on flow'ry BEDS of ease, Whilst others fight to win the prize, and sail thro' BLOODY seas? He was regarded as a wonderful reader. At church "sociables" he was always called upon to read poetry; and when he was through, the ladies would lift up their hands and let them fall helplessly in their laps, and "wall" their eyes, and shake their heads, as much as to say, "Words cannot express it; it is too beautiful, TOO beautiful for this mortal earth." After the hymn had been sung, the Rev. Mr. Sprague turned himself into a bulletin-board, and read off "notices" of meetings and societies and things till it seemed that the list would stretch out to the crack of doom--a queer custom which is still kept up in America, even in cities, away here in this age of abundant newspapers. Often, the less there is to justify a traditional custom, the harder it is to get rid of it. And now the minister prayed. A good, generous prayer it was, and went into details: it pleaded for the church, and the little children of the church; for the other churches of the village; for the village itself; for the county; for the State; for the State officers; for the United States; for the churches of the United States; for Congress; for the President; for the officers of the Government; for poor sailors, tossed by stormy seas; for the oppressed millions groaning under the heel of European monarchies and Oriental despotisms; for such as have the light and the good tidings, and yet have not eyes to see nor ears to hear withal; for the heathen in the far islands of the sea; and closed with a supplication that the words he was about to speak might find grace and favor, and be as seed sown in fertile ground, yielding in time a grateful harvest of good. Amen. There was a rustling of dresses, and the standing congregation sat down. The boy whose history this book relates did not enjoy the prayer, he only endured it--if he even did that much. He was restive all through it; he kept tally of the details of the prayer, unconsciously --for he was not listening, but he knew the ground of old, and the clergyman's regular route over it--and when a little trifle of new matter was interlarded, his ear detected it and his whole nature resented it; he considered additions unfair, and scoundrelly. In the midst of the prayer a fly had lit on the back of the pew in front of him and tortured his spirit by calmly rubbing its hands together, embracing its head with its arms, and polishing it so vigorously that it seemed to almost part company with the body, and the slender thread of a neck was exposed to view; scraping its wings with its hind legs and smoothing them to its body as if they had been coat-tails; going through its whole toilet as tranquilly as if it knew it was perfectly safe. As indeed it was; for as sorely as Tom's hands itched to grab for it they did not dare--he believed his soul would be instantly destroyed if he did such a thing while the prayer was going on. But with the closing sentence his hand began to curve and steal forward; and the instant the "Amen" was out the fly was a prisoner of war. His aunt detected the act and made him let it go. The minister gave out his text and droned along monotonously through an argument that was so prosy that many a head by and by began to nod --and yet it was an argument that dealt in limitless fire and brimstone and thinned the predestined elect down to a company so small as to be hardly worth the saving. Tom counted the pages of the sermon; after church he always knew how many pages there had been, but he seldom knew anything else about the discourse. However, this time he was really interested for a little while. The minister made a grand and moving picture of the assembling together of the world's hosts at the millennium when the lion and the lamb should lie down together and a little child should lead them. But the pathos, the lesson, the moral of the great spectacle were lost upon the boy; he only thought of the conspicuousness of the principal character before the on-looking nations; his face lit with the thought, and he said to himself that he wished he could be that child, if it was a tame lion. Now he lapsed into suffering again, as the dry argument was resumed. Presently he bethought him of a treasure he had and got it out. It was a large black beetle with formidable jaws--a "pinchbug," he called it. It was in a percussion-cap box. The first thing the beetle did was to take him by the finger. A natural fillip followed, the beetle went floundering into the aisle and lit on its back, and the hurt finger went into the boy's mouth. The beetle lay there working its helpless legs, unable to turn over. Tom eyed it, and longed for it; but it was safe out of his reach. Other people uninterested in the sermon found relief in the beetle, and they eyed it too. Presently a vagrant poodle dog came idling along, sad at heart, lazy with the summer softness and the quiet, weary of captivity, sighing for change. He spied the beetle; the drooping tail lifted and wagged. He surveyed the prize; walked around it; smelt at it from a safe distance; walked around it again; grew bolder, and took a closer smell; then lifted his lip and made a gingerly snatch at it, just missing it; made another, and another; began to enjoy the diversion; subsided to his stomach with the beetle between his paws, and continued his experiments; grew weary at last, and then indifferent and absent-minded. His head nodded, and little by little his chin descended and touched the enemy, who seized it. There was a sharp yelp, a flirt of the poodle's head, and the beetle fell a couple of yards away, and lit on its back once more. The neighboring spectators shook with a gentle inward joy, several faces went behind fans and handkerchiefs, and Tom was entirely happy. The dog looked foolish, and probably felt so; but there was resentment in his heart, too, and a craving for revenge. So he went to the beetle and began a wary attack on it again; jumping at it from every point of a circle, lighting with his fore-paws within an inch of the creature, making even closer snatches at it with his teeth, and jerking his head till his ears flapped again. But he grew tired once more, after a while; tried to amuse himself with a fly but found no relief; followed an ant around, with his nose close to the floor, and quickly wearied of that; yawned, sighed, forgot the beetle entirely, and sat down on it. Then there was a wild yelp of agony and the poodle went sailing up the aisle; the yelps continued, and so did the dog; he crossed the house in front of the altar; he flew down the other aisle; he crossed before the doors; he clamored up the home-stretch; his anguish grew with his progress, till presently he was but a woolly comet moving in its orbit with the gleam and the speed of light. At last the frantic sufferer sheered from its course, and sprang into its master's lap; he flung it out of the window, and the voice of distress quickly thinned away and died in the distance. By this time the whole church was red-faced and suffocating with suppressed laughter, and the sermon had come to a dead standstill. The discourse was resumed presently, but it went lame and halting, all possibility of impressiveness being at an end; for even the gravest sentiments were constantly being received with a smothered burst of unholy mirth, under cover of some remote pew-back, as if the poor parson had said a rarely facetious thing. It was a genuine relief to the whole congregation when the ordeal was over and the benediction pronounced. Tom Sawyer went home quite cheerful, thinking to himself that there was some satisfaction about divine service when there was a bit of variety in it. He had but one marring thought; he was willing that the dog should play with his pinchbug, but he did not think it was upright in him to carry it off. CHAPTER VI MONDAY morning found Tom Sawyer miserable. Monday morning always found him so--because it began another week's slow suffering in school. He generally began that day with wishing he had had no intervening holiday, it made the going into captivity and fetters again so much more odious. Tom lay thinking. Presently it occurred to him that he wished he was sick; then he could stay home from school. Here was a vague possibility. He canvassed his system. No ailment was found, and he investigated again. This time he thought he could detect colicky symptoms, and he began to encourage them with considerable hope. But they soon grew feeble, and presently died wholly away. He reflected further. Suddenly he discovered something. One of his upper front teeth was loose. This was lucky; he was about to begin to groan, as a "starter," as he called it, when it occurred to him that if he came into court with that argument, his aunt would pull it out, and that would hurt. So he thought he would hold the tooth in reserve for the present, and seek further. Nothing offered for some little time, and then he remembered hearing the doctor tell about a certain thing that laid up a patient for two or three weeks and threatened to make him lose a finger. So the boy eagerly drew his sore toe from under the sheet and held it up for inspection. But now he did not know the necessary symptoms. However, it seemed well worth while to chance it, so he fell to groaning with considerable spirit. But Sid slept on unconscious. Tom groaned louder, and fancied that he began to feel pain in the toe. No result from Sid. Tom was panting with his exertions by this time. He took a rest and then swelled himself up and fetched a succession of admirable groans. Sid snored on. Tom was aggravated. He said, "Sid, Sid!" and shook him. This course worked well, and Tom began to groan again. Sid yawned, stretched, then brought himself up on his elbow with a snort, and began to stare at Tom. Tom went on groaning. Sid said: "Tom! Say, Tom!" [No response.] "Here, Tom! TOM! What is the matter, Tom?" And he shook him and looked in his face anxiously. Tom moaned out: "Oh, don't, Sid. Don't joggle me." "Why, what's the matter, Tom? I must call auntie." "No--never mind. It'll be over by and by, maybe. Don't call anybody." "But I must! DON'T groan so, Tom, it's awful. How long you been this way?" "Hours. Ouch! Oh, don't stir so, Sid, you'll kill me." "Tom, why didn't you wake me sooner? Oh, Tom, DON'T! It makes my flesh crawl to hear you. Tom, what is the matter?" "I forgive you everything, Sid. [Groan.] Everything you've ever done to me. When I'm gone--" "Oh, Tom, you ain't dying, are you? Don't, Tom--oh, don't. Maybe--" "I forgive everybody, Sid. [Groan.] Tell 'em so, Sid. And Sid, you give my window-sash and my cat with one eye to that new girl that's come to town, and tell her--" But Sid had snatched his clothes and gone. Tom was suffering in reality, now, so handsomely was his imagination working, and so his groans had gathered quite a genuine tone. Sid flew down-stairs and said: "Oh, Aunt Polly, come! Tom's dying!" "Dying!" "Yes'm. Don't wait--come quick!" "Rubbage! I don't believe it!" But she fled up-stairs, nevertheless, with Sid and Mary at her heels. And her face grew white, too, and her lip trembled. When she reached the bedside she gasped out: "You, Tom! Tom, what's the matter with you?" "Oh, auntie, I'm--" "What's the matter with you--what is the matter with you, child?" "Oh, auntie, my sore toe's mortified!" The old lady sank down into a chair and laughed a little, then cried a little, then did both together. This restored her and she said: "Tom, what a turn you did give me. Now you shut up that nonsense and climb out of this." The groans ceased and the pain vanished from the toe. The boy felt a little foolish, and he said: "Aunt Polly, it SEEMED mortified, and it hurt so I never minded my tooth at all." "Your tooth, indeed! What's the matter with your tooth?" "One of them's loose, and it aches perfectly awful." "There, there, now, don't begin that groaning again. Open your mouth. Well--your tooth IS loose, but you're not going to die about that. Mary, get me a silk thread, and a chunk of fire out of the kitchen." Tom said: "Oh, please, auntie, don't pull it out. It don't hurt any more. I wish I may never stir if it does. Please don't, auntie. I don't want to stay home from school." "Oh, you don't, don't you? So all this row was because you thought you'd get to stay home from school and go a-fishing? Tom, Tom, I love you so, and you seem to try every way you can to break my old heart with your outrageousness." By this time the dental instruments were ready. The old lady made one end of the silk thread fast to Tom's tooth with a loop and tied the other to the bedpost. Then she seized the chunk of fire and suddenly thrust it almost into the boy's face. The tooth hung dangling by the bedpost, now. But all trials bring their compensations. As Tom wended to school after breakfast, he was the envy of every boy he met because the gap in his upper row of teeth enabled him to expectorate in a new and admirable way. He gathered quite a following of lads interested in the exhibition; and one that had cut his finger and had been a centre of fascination and homage up to this time, now found himself suddenly without an adherent, and shorn of his glory. His heart was heavy, and he said with a disdain which he did not feel that it wasn't anything to spit like Tom Sawyer; but another boy said, "Sour grapes!" and he wandered away a dismantled hero. Shortly Tom came upon the juvenile pariah of the village, Huckleberry Finn, son of the town drunkard. Huckleberry was cordially hated and dreaded by all the mothers of the town, because he was idle and lawless and vulgar and bad--and because all their children admired him so, and delighted in his forbidden society, and wished they dared to be like him. Tom was like the rest of the respectable boys, in that he envied Huckleberry his gaudy outcast condition, and was under strict orders not to play with him. So he played with him every time he got a chance. Huckleberry was always dressed in the cast-off clothes of full-grown men, and they were in perennial bloom and fluttering with rags. His hat was a vast ruin with a wide crescent lopped out of its brim; his coat, when he wore one, hung nearly to his heels and had the rearward buttons far down the back; but one suspender supported his trousers; the seat of the trousers bagged low and contained nothing, the fringed legs dragged in the dirt when not rolled up. Huckleberry came and went, at his own free will. He slept on doorsteps in fine weather and in empty hogsheads in wet; he did not have to go to school or to church, or call any being master or obey anybody; he could go fishing or swimming when and where he chose, and stay as long as it suited him; nobody forbade him to fight; he could sit up as late as he pleased; he was always the first boy that went barefoot in the spring and the last to resume leather in the fall; he never had to wash, nor put on clean clothes; he could swear wonderfully. In a word, everything that goes to make life precious that boy had. So thought every harassed, hampered, respectable boy in St. Petersburg. Tom hailed the romantic outcast: "Hello, Huckleberry!" "Hello yourself, and see how you like it." "What's that you got?" "Dead cat." "Lemme see him, Huck. My, he's pretty stiff. Where'd you get him?" "Bought him off'n a boy." "What did you give?" "I give a blue ticket and a bladder that I got at the slaughter-house." "Where'd you get the blue ticket?" "Bought it off'n Ben Rogers two weeks ago for a hoop-stick." "Say--what is dead cats good for, Huck?" "Good for? Cure warts with." "No! Is that so? I know something that's better." "I bet you don't. What is it?" "Why, spunk-water." "Spunk-water! I wouldn't give a dern for spunk-water." "You wouldn't, wouldn't you? D'you ever try it?" "No, I hain't. But Bob Tanner did." "Who told you so!" "Why, he told Jeff Thatcher, and Jeff told Johnny Baker, and Johnny told Jim Hollis, and Jim told Ben Rogers, and Ben told a nigger, and the nigger told me. There now!" "Well, what of it? They'll all lie. Leastways all but the nigger. I don't know HIM. But I never see a nigger that WOULDN'T lie. Shucks! Now you tell me how Bob Tanner done it, Huck." "Why, he took and dipped his hand in a rotten stump where the rain-water was." "In the daytime?" "Certainly." "With his face to the stump?" "Yes. Least I reckon so." "Did he say anything?" "I don't reckon he did. I don't know." "Aha! Talk about trying to cure warts with spunk-water such a blame fool way as that! Why, that ain't a-going to do any good. You got to go all by yourself, to the middle of the woods, where you know there's a spunk-water stump, and just as it's midnight you back up against the stump and jam your hand in and say: 'Barley-corn, barley-corn, injun-meal shorts, Spunk-water, spunk-water, swaller these warts,' and then walk away quick, eleven steps, with your eyes shut, and then turn around three times and walk home without speaking to anybody. Because if you speak the charm's busted." "Well, that sounds like a good way; but that ain't the way Bob Tanner done." "No, sir, you can bet he didn't, becuz he's the wartiest boy in this town; and he wouldn't have a wart on him if he'd knowed how to work spunk-water. I've took off thousands of warts off of my hands that way, Huck. I play with frogs so much that I've always got considerable many warts. Sometimes I take 'em off with a bean." "Yes, bean's good. I've done that." "Have you? What's your way?" "You take and split the bean, and cut the wart so as to get some blood, and then you put the blood on one piece of the bean and take and dig a hole and bury it 'bout midnight at the crossroads in the dark of the moon, and then you burn up the rest of the bean. You see that piece that's got the blood on it will keep drawing and drawing, trying to fetch the other piece to it, and so that helps the blood to draw the wart, and pretty soon off she comes." "Yes, that's it, Huck--that's it; though when you're burying it if you say 'Down bean; off wart; come no more to bother me!' it's better. That's the way Joe Harper does, and he's been nearly to Coonville and most everywheres. But say--how do you cure 'em with dead cats?" "Why, you take your cat and go and get in the graveyard 'long about midnight when somebody that was wicked has been buried; and when it's midnight a devil will come, or maybe two or three, but you can't see 'em, you can only hear something like the wind, or maybe hear 'em talk; and when they're taking that feller away, you heave your cat after 'em and say, 'Devil follow corpse, cat follow devil, warts follow cat, I'm done with ye!' That'll fetch ANY wart." "Sounds right. D'you ever try it, Huck?" "No, but old Mother Hopkins told me." "Well, I reckon it's so, then. Becuz they say she's a witch." "Say! Why, Tom, I KNOW she is. She witched pap. Pap says so his own self. He come along one day, and he see she was a-witching him, so he took up a rock, and if she hadn't dodged, he'd a got her. Well, that very night he rolled off'n a shed wher' he was a layin drunk, and broke his arm." "Why, that's awful. How did he know she was a-witching him?" "Lord, pap can tell, easy. Pap says when they keep looking at you right stiddy, they're a-witching you. Specially if they mumble. Becuz when they mumble they're saying the Lord's Prayer backards." "Say, Hucky, when you going to try the cat?" "To-night. I reckon they'll come after old Hoss Williams to-night." "But they buried him Saturday. Didn't they get him Saturday night?" "Why, how you talk! How could their charms work till midnight?--and THEN it's Sunday. Devils don't slosh around much of a Sunday, I don't reckon." "I never thought of that. That's so. Lemme go with you?" "Of course--if you ain't afeard." "Afeard! 'Tain't likely. Will you meow?" "Yes--and you meow back, if you get a chance. Last time, you kep' me a-meowing around till old Hays went to throwing rocks at me and says 'Dern that cat!' and so I hove a brick through his window--but don't you tell." "I won't. I couldn't meow that night, becuz auntie was watching me, but I'll meow this time. Say--what's that?" "Nothing but a tick." "Where'd you get him?" "Out in the woods." "What'll you take for him?" "I don't know. I don't want to sell him." "All right. It's a mighty small tick, anyway." "Oh, anybody can run a tick down that don't belong to them. I'm satisfied with it. It's a good enough tick for me." "Sho, there's ticks a plenty. I could have a thousand of 'em if I wanted to." "Well, why don't you? Becuz you know mighty well you can't. This is a pretty early tick, I reckon. It's the first one I've seen this year." "Say, Huck--I'll give you my tooth for him." "Less see it." Tom got out a bit of paper and carefully unrolled it. Huckleberry viewed it wistfully. The temptation was very strong. At last he said: "Is it genuwyne?" Tom lifted his lip and showed the vacancy. "Well, all right," said Huckleberry, "it's a trade." Tom enclosed the tick in the percussion-cap box that had lately been the pinchbug's prison, and the boys separated, each feeling wealthier than before. When Tom reached the little isolated frame schoolhouse, he strode in briskly, with the manner of one who had come with all honest speed. He hung his hat on a peg and flung himself into his seat with business-like alacrity. The master, throned on high in his great splint-bottom arm-chair, was dozing, lulled by the drowsy hum of study. The interruption roused him. "Thomas Sawyer!" Tom knew that when his name was pronounced in full, it meant trouble. "Sir!" "Come up here. Now, sir, why are you late again, as usual?" Tom was about to take refuge in a lie, when he saw two long tails of yellow hair hanging down a back that he recognized by the electric sympathy of love; and by that form was THE ONLY VACANT PLACE on the girls' side of the schoolhouse. He instantly said: "I STOPPED TO TALK WITH HUCKLEBERRY FINN!" The master's pulse stood still, and he stared helplessly. The buzz of study ceased. The pupils wondered if this foolhardy boy had lost his mind. The master said: "You--you did what?" "Stopped to talk with Huckleberry Finn." There was no mistaking the words. "Thomas Sawyer, this is the most astounding confession I have ever listened to. No mere ferule will answer for this offence. Take off your jacket." The master's arm performed until it was tired and the stock of switches notably diminished. Then the order followed: "Now, sir, go and sit with the girls! And let this be a warning to you." The titter that rippled around the room appeared to abash the boy, but in reality that result was caused rather more by his worshipful awe of his unknown idol and the dread pleasure that lay in his high good fortune. He sat down upon the end of the pine bench and the girl hitched herself away from him with a toss of her head. Nudges and winks and whispers traversed the room, but Tom sat still, with his arms upon the long, low desk before him, and seemed to study his book. By and by attention ceased from him, and the accustomed school murmur rose upon the dull air once more. Presently the boy began to steal furtive glances at the girl. She observed it, "made a mouth" at him and gave him the back of her head for the space of a minute. When she cautiously faced around again, a peach lay before her. She thrust it away. Tom gently put it back. She thrust it away again, but with less animosity. Tom patiently returned it to its place. Then she let it remain. Tom scrawled on his slate, "Please take it--I got more." The girl glanced at the words, but made no sign. Now the boy began to draw something on the slate, hiding his work with his left hand. For a time the girl refused to notice; but her human curiosity presently began to manifest itself by hardly perceptible signs. The boy worked on, apparently unconscious. The girl made a sort of noncommittal attempt to see, but the boy did not betray that he was aware of it. At last she gave in and hesitatingly whispered: "Let me see it." Tom partly uncovered a dismal caricature of a house with two gable ends to it and a corkscrew of smoke issuing from the chimney. Then the girl's interest began to fasten itself upon the work and she forgot everything else. When it was finished, she gazed a moment, then whispered: "It's nice--make a man." The artist erected a man in the front yard, that resembled a derrick. He could have stepped over the house; but the girl was not hypercritical; she was satisfied with the monster, and whispered: "It's a beautiful man--now make me coming along." Tom drew an hour-glass with a full moon and straw limbs to it and armed the spreading fingers with a portentous fan. The girl said: "It's ever so nice--I wish I could draw." "It's easy," whispered Tom, "I'll learn you." "Oh, will you? When?" "At noon. Do you go home to dinner?" "I'll stay if you will." "Good--that's a whack. What's your name?" "Becky Thatcher. What's yours? Oh, I know. It's Thomas Sawyer." "That's the name they lick me by. I'm Tom when I'm good. You call me Tom, will you?" "Yes." Now Tom began to scrawl something on the slate, hiding the words from the girl. But she was not backward this time. She begged to see. Tom said: "Oh, it ain't anything." "Yes it is." "No it ain't. You don't want to see." "Yes I do, indeed I do. Please let me." "You'll tell." "No I won't--deed and deed and double deed won't." "You won't tell anybody at all? Ever, as long as you live?" "No, I won't ever tell ANYbody. Now let me." "Oh, YOU don't want to see!" "Now that you treat me so, I WILL see." And she put her small hand upon his and a little scuffle ensued, Tom pretending to resist in earnest but letting his hand slip by degrees till these words were revealed: "I LOVE YOU." "Oh, you bad thing!" And she hit his hand a smart rap, but reddened and looked pleased, nevertheless. Just at this juncture the boy felt a slow, fateful grip closing on his ear, and a steady lifting impulse. In that wise he was borne across the house and deposited in his own seat, under a peppering fire of giggles from the whole school. Then the master stood over him during a few awful moments, and finally moved away to his throne without saying a word. But although Tom's ear tingled, his heart was jubilant. As the school quieted down Tom made an honest effort to study, but the turmoil within him was too great. In turn he took his place in the reading class and made a botch of it; then in the geography class and turned lakes into mountains, mountains into rivers, and rivers into continents, till chaos was come again; then in the spelling class, and got "turned down," by a succession of mere baby words, till he brought up at the foot and yielded up the pewter medal which he had worn with ostentation for months. CHAPTER VII THE harder Tom tried to fasten his mind on his book, the more his ideas wandered. So at last, with a sigh and a yawn, he gave it up. It seemed to him that the noon recess would never come. The air was utterly dead. There was not a breath stirring. It was the sleepiest of sleepy days. The drowsing murmur of the five and twenty studying scholars soothed the soul like the spell that is in the murmur of bees. Away off in the flaming sunshine, Cardiff Hill lifted its soft green sides through a shimmering veil of heat, tinted with the purple of distance; a few birds floated on lazy wing high in the air; no other living thing was visible but some cows, and they were asleep. Tom's heart ached to be free, or else to have something of interest to do to pass the dreary time. His hand wandered into his pocket and his face lit up with a glow of gratitude that was prayer, though he did not know it. Then furtively the percussion-cap box came out. He released the tick and put him on the long flat desk. The creature probably glowed with a gratitude that amounted to prayer, too, at this moment, but it was premature: for when he started thankfully to travel off, Tom turned him aside with a pin and made him take a new direction. Tom's bosom friend sat next him, suffering just as Tom had been, and now he was deeply and gratefully interested in this entertainment in an instant. This bosom friend was Joe Harper. The two boys were sworn friends all the week, and embattled enemies on Saturdays. Joe took a pin out of his lapel and began to assist in exercising the prisoner. The sport grew in interest momently. Soon Tom said that they were interfering with each other, and neither getting the fullest benefit of the tick. So he put Joe's slate on the desk and drew a line down the middle of it from top to bottom. "Now," said he, "as long as he is on your side you can stir him up and I'll let him alone; but if you let him get away and get on my side, you're to leave him alone as long as I can keep him from crossing over." "All right, go ahead; start him up." The tick escaped from Tom, presently, and crossed the equator. Joe harassed him awhile, and then he got away and crossed back again. This change of base occurred often. While one boy was worrying the tick with absorbing interest, the other would look on with interest as strong, the two heads bowed together over the slate, and the two souls dead to all things else. At last luck seemed to settle and abide with Joe. The tick tried this, that, and the other course, and got as excited and as anxious as the boys themselves, but time and again just as he would have victory in his very grasp, so to speak, and Tom's fingers would be twitching to begin, Joe's pin would deftly head him off, and keep possession. At last Tom could stand it no longer. The temptation was too strong. So he reached out and lent a hand with his pin. Joe was angry in a moment. Said he: "Tom, you let him alone." "I only just want to stir him up a little, Joe." "No, sir, it ain't fair; you just let him alone." "Blame it, I ain't going to stir him much." "Let him alone, I tell you." "I won't!" "You shall--he's on my side of the line." "Look here, Joe Harper, whose is that tick?" "I don't care whose tick he is--he's on my side of the line, and you sha'n't touch him." "Well, I'll just bet I will, though. He's my tick and I'll do what I blame please with him, or die!" A tremendous whack came down on Tom's shoulders, and its duplicate on Joe's; and for the space of two minutes the dust continued to fly from the two jackets and the whole school to enjoy it. The boys had been too absorbed to notice the hush that had stolen upon the school awhile before when the master came tiptoeing down the room and stood over them. He had contemplated a good part of the performance before he contributed his bit of variety to it. When school broke up at noon, Tom flew to Becky Thatcher, and whispered in her ear: "Put on your bonnet and let on you're going home; and when you get to the corner, give the rest of 'em the slip, and turn down through the lane and come back. I'll go the other way and come it over 'em the same way." So the one went off with one group of scholars, and the other with another. In a little while the two met at the bottom of the lane, and when they reached the school they had it all to themselves. Then they sat together, with a slate before them, and Tom gave Becky the pencil and held her hand in his, guiding it, and so created another surprising house. When the interest in art began to wane, the two fell to talking. Tom was swimming in bliss. He said: "Do you love rats?" "No! I hate them!" "Well, I do, too--LIVE ones. But I mean dead ones, to swing round your head with a string." "No, I don't care for rats much, anyway. What I like is chewing-gum." "Oh, I should say so! I wish I had some now." "Do you? I've got some. I'll let you chew it awhile, but you must give it back to me." That was agreeable, so they chewed it turn about, and dangled their legs against the bench in excess of contentment. "Was you ever at a circus?" said Tom. "Yes, and my pa's going to take me again some time, if I'm good." "I been to the circus three or four times--lots of times. Church ain't shucks to a circus. There's things going on at a circus all the time. I'm going to be a clown in a circus when I grow up." "Oh, are you! That will be nice. They're so lovely, all spotted up." "Yes, that's so. And they get slathers of money--most a dollar a day, Ben Rogers says. Say, Becky, was you ever engaged?" "What's that?" "Why, engaged to be married." "No." "Would you like to?" "I reckon so. I don't know. What is it like?" "Like? Why it ain't like anything. You only just tell a boy you won't ever have anybody but him, ever ever ever, and then you kiss and that's all. Anybody can do it." "Kiss? What do you kiss for?" "Why, that, you know, is to--well, they always do that." "Everybody?" "Why, yes, everybody that's in love with each other. Do you remember what I wrote on the slate?" "Ye--yes." "What was it?" "I sha'n't tell you." "Shall I tell YOU?" "Ye--yes--but some other time." "No, now." "No, not now--to-morrow." "Oh, no, NOW. Please, Becky--I'll whisper it, I'll whisper it ever so easy." Becky hesitating, Tom took silence for consent, and passed his arm about her waist and whispered the tale ever so softly, with his mouth close to her ear. And then he added: "Now you whisper it to me--just the same." She resisted, for a while, and then said: "You turn your face away so you can't see, and then I will. But you mustn't ever tell anybody--WILL you, Tom? Now you won't, WILL you?" "No, indeed, indeed I won't. Now, Becky." He turned his face away. She bent timidly around till her breath stirred his curls and whispered, "I--love--you!" Then she sprang away and ran around and around the desks and benches, with Tom after her, and took refuge in a corner at last, with her little white apron to her face. Tom clasped her about her neck and pleaded: "Now, Becky, it's all done--all over but the kiss. Don't you be afraid of that--it ain't anything at all. Please, Becky." And he tugged at her apron and the hands. By and by she gave up, and let her hands drop; her face, all glowing with the struggle, came up and submitted. Tom kissed the red lips and said: "Now it's all done, Becky. And always after this, you know, you ain't ever to love anybody but me, and you ain't ever to marry anybody but me, ever never and forever. Will you?" "No, I'll never love anybody but you, Tom, and I'll never marry anybody but you--and you ain't to ever marry anybody but me, either." "Certainly. Of course. That's PART of it. And always coming to school or when we're going home, you're to walk with me, when there ain't anybody looking--and you choose me and I choose you at parties, because that's the way you do when you're engaged." "It's so nice. I never heard of it before." "Oh, it's ever so gay! Why, me and Amy Lawrence--" The big eyes told Tom his blunder and he stopped, confused. "Oh, Tom! Then I ain't the first you've ever been engaged to!" The child began to cry. Tom said: "Oh, don't cry, Becky, I don't care for her any more." "Yes, you do, Tom--you know you do." Tom tried to put his arm about her neck, but she pushed him away and turned her face to the wall, and went on crying. Tom tried again, with soothing words in his mouth, and was repulsed again. Then his pride was up, and he strode away and went outside. He stood about, restless and uneasy, for a while, glancing at the door, every now and then, hoping she would repent and come to find him. But she did not. Then he began to feel badly and fear that he was in the wrong. It was a hard struggle with him to make new advances, now, but he nerved himself to it and entered. She was still standing back there in the corner, sobbing, with her face to the wall. Tom's heart smote him. He went to her and stood a moment, not knowing exactly how to proceed. Then he said hesitatingly: "Becky, I--I don't care for anybody but you." No reply--but sobs. "Becky"--pleadingly. "Becky, won't you say something?" More sobs. Tom got out his chiefest jewel, a brass knob from the top of an andiron, and passed it around her so that she could see it, and said: "Please, Becky, won't you take it?" She struck it to the floor. Then Tom marched out of the house and over the hills and far away, to return to school no more that day. Presently Becky began to suspect. She ran to the door; he was not in sight; she flew around to the play-yard; he was not there. Then she called: "Tom! Come back, Tom!" She listened intently, but there was no answer. She had no companions but silence and loneliness. So she sat down to cry again and upbraid herself; and by this time the scholars began to gather again, and she had to hide her griefs and still her broken heart and take up the cross of a long, dreary, aching afternoon, with none among the strangers about her to exchange sorrows with. CHAPTER VIII TOM dodged hither and thither through lanes until he was well out of the track of returning scholars, and then fell into a moody jog. He crossed a small "branch" two or three times, because of a prevailing juvenile superstition that to cross water baffled pursuit. Half an hour later he was disappearing behind the Douglas mansion on the summit of Cardiff Hill, and the schoolhouse was hardly distinguishable away off in the valley behind him. He entered a dense wood, picked his pathless way to the centre of it, and sat down on a mossy spot under a spreading oak. There was not even a zephyr stirring; the dead noonday heat had even stilled the songs of the birds; nature lay in a trance that was broken by no sound but the occasional far-off hammering of a woodpecker, and this seemed to render the pervading silence and sense of loneliness the more profound. The boy's soul was steeped in melancholy; his feelings were in happy accord with his surroundings. He sat long with his elbows on his knees and his chin in his hands, meditating. It seemed to him that life was but a trouble, at best, and he more than half envied Jimmy Hodges, so lately released; it must be very peaceful, he thought, to lie and slumber and dream forever and ever, with the wind whispering through the trees and caressing the grass and the flowers over the grave, and nothing to bother and grieve about, ever any more. If he only had a clean Sunday-school record he could be willing to go, and be done with it all. Now as to this girl. What had he done? Nothing. He had meant the best in the world, and been treated like a dog--like a very dog. She would be sorry some day--maybe when it was too late. Ah, if he could only die TEMPORARILY! But the elastic heart of youth cannot be compressed into one constrained shape long at a time. Tom presently began to drift insensibly back into the concerns of this life again. What if he turned his back, now, and disappeared mysteriously? What if he went away--ever so far away, into unknown countries beyond the seas--and never came back any more! How would she feel then! The idea of being a clown recurred to him now, only to fill him with disgust. For frivolity and jokes and spotted tights were an offense, when they intruded themselves upon a spirit that was exalted into the vague august realm of the romantic. No, he would be a soldier, and return after long years, all war-worn and illustrious. No--better still, he would join the Indians, and hunt buffaloes and go on the warpath in the mountain ranges and the trackless great plains of the Far West, and away in the future come back a great chief, bristling with feathers, hideous with paint, and prance into Sunday-school, some drowsy summer morning, with a bloodcurdling war-whoop, and sear the eyeballs of all his companions with unappeasable envy. But no, there was something gaudier even than this. He would be a pirate! That was it! NOW his future lay plain before him, and glowing with unimaginable splendor. How his name would fill the world, and make people shudder! How gloriously he would go plowing the dancing seas, in his long, low, black-hulled racer, the Spirit of the Storm, with his grisly flag flying at the fore! And at the zenith of his fame, how he would suddenly appear at the old village and stalk into church, brown and weather-beaten, in his black velvet doublet and trunks, his great jack-boots, his crimson sash, his belt bristling with horse-pistols, his crime-rusted cutlass at his side, his slouch hat with waving plumes, his black flag unfurled, with the skull and crossbones on it, and hear with swelling ecstasy the whisperings, "It's Tom Sawyer the Pirate!--the Black Avenger of the Spanish Main!" Yes, it was settled; his career was determined. He would run away from home and enter upon it. He would start the very next morning. Therefore he must now begin to get ready. He would collect his resources together. He went to a rotten log near at hand and began to dig under one end of it with his Barlow knife. He soon struck wood that sounded hollow. He put his hand there and uttered this incantation impressively: "What hasn't come here, come! What's here, stay here!" Then he scraped away the dirt, and exposed a pine shingle. He took it up and disclosed a shapely little treasure-house whose bottom and sides were of shingles. In it lay a marble. Tom's astonishment was boundless! He scratched his head with a perplexed air, and said: "Well, that beats anything!" Then he tossed the marble away pettishly, and stood cogitating. The truth was, that a superstition of his had failed, here, which he and all his comrades had always looked upon as infallible. If you buried a marble with certain necessary incantations, and left it alone a fortnight, and then opened the place with the incantation he had just used, you would find that all the marbles you had ever lost had gathered themselves together there, meantime, no matter how widely they had been separated. But now, this thing had actually and unquestionably failed. Tom's whole structure of faith was shaken to its foundations. He had many a time heard of this thing succeeding but never of its failing before. It did not occur to him that he had tried it several times before, himself, but could never find the hiding-places afterward. He puzzled over the matter some time, and finally decided that some witch had interfered and broken the charm. He thought he would satisfy himself on that point; so he searched around till he found a small sandy spot with a little funnel-shaped depression in it. He laid himself down and put his mouth close to this depression and called-- "Doodle-bug, doodle-bug, tell me what I want to know! Doodle-bug, doodle-bug, tell me what I want to know!" The sand began to work, and presently a small black bug appeared for a second and then darted under again in a fright. "He dasn't tell! So it WAS a witch that done it. I just knowed it." He well knew the futility of trying to contend against witches, so he gave up discouraged. But it occurred to him that he might as well have the marble he had just thrown away, and therefore he went and made a patient search for it. But he could not find it. Now he went back to his treasure-house and carefully placed himself just as he had been standing when he tossed the marble away; then he took another marble from his pocket and tossed it in the same way, saying: "Brother, go find your brother!" He watched where it stopped, and went there and looked. But it must have fallen short or gone too far; so he tried twice more. The last repetition was successful. The two marbles lay within a foot of each other. Just here the blast of a toy tin trumpet came faintly down the green aisles of the forest. Tom flung off his jacket and trousers, turned a suspender into a belt, raked away some brush behind the rotten log, disclosing a rude bow and arrow, a lath sword and a tin trumpet, and in a moment had seized these things and bounded away, barelegged, with fluttering shirt. He presently halted under a great elm, blew an answering blast, and then began to tiptoe and look warily out, this way and that. He said cautiously--to an imaginary company: "Hold, my merry men! Keep hid till I blow." Now appeared Joe Harper, as airily clad and elaborately armed as Tom. Tom called: "Hold! Who comes here into Sherwood Forest without my pass?" "Guy of Guisborne wants no man's pass. Who art thou that--that--" "Dares to hold such language," said Tom, prompting--for they talked "by the book," from memory. "Who art thou that dares to hold such language?" "I, indeed! I am Robin Hood, as thy caitiff carcase soon shall know." "Then art thou indeed that famous outlaw? Right gladly will I dispute with thee the passes of the merry wood. Have at thee!" They took their lath swords, dumped their other traps on the ground, struck a fencing attitude, foot to foot, and began a grave, careful combat, "two up and two down." Presently Tom said: "Now, if you've got the hang, go it lively!" So they "went it lively," panting and perspiring with the work. By and by Tom shouted: "Fall! fall! Why don't you fall?" "I sha'n't! Why don't you fall yourself? You're getting the worst of it." "Why, that ain't anything. I can't fall; that ain't the way it is in the book. The book says, 'Then with one back-handed stroke he slew poor Guy of Guisborne.' You're to turn around and let me hit you in the back." There was no getting around the authorities, so Joe turned, received the whack and fell. "Now," said Joe, getting up, "you got to let me kill YOU. That's fair." "Why, I can't do that, it ain't in the book." "Well, it's blamed mean--that's all." "Well, say, Joe, you can be Friar Tuck or Much the miller's son, and lam me with a quarter-staff; or I'll be the Sheriff of Nottingham and you be Robin Hood a little while and kill me." This was satisfactory, and so these adventures were carried out. Then Tom became Robin Hood again, and was allowed by the treacherous nun to bleed his strength away through his neglected wound. And at last Joe, representing a whole tribe of weeping outlaws, dragged him sadly forth, gave his bow into his feeble hands, and Tom said, "Where this arrow falls, there bury poor Robin Hood under the greenwood tree." Then he shot the arrow and fell back and would have died, but he lit on a nettle and sprang up too gaily for a corpse. The boys dressed themselves, hid their accoutrements, and went off grieving that there were no outlaws any more, and wondering what modern civilization could claim to have done to compensate for their loss. They said they would rather be outlaws a year in Sherwood Forest than President of the United States forever. CHAPTER IX AT half-past nine, that night, Tom and Sid were sent to bed, as usual. They said their prayers, and Sid was soon asleep. Tom lay awake and waited, in restless impatience. When it seemed to him that it must be nearly daylight, he heard the clock strike ten! This was despair. He would have tossed and fidgeted, as his nerves demanded, but he was afraid he might wake Sid. So he lay still, and stared up into the dark. Everything was dismally still. By and by, out of the stillness, little, scarcely perceptible noises began to emphasize themselves. The ticking of the clock began to bring itself into notice. Old beams began to crack mysteriously. The stairs creaked faintly. Evidently spirits were abroad. A measured, muffled snore issued from Aunt Polly's chamber. And now the tiresome chirping of a cricket that no human ingenuity could locate, began. Next the ghastly ticking of a deathwatch in the wall at the bed's head made Tom shudder--it meant that somebody's days were numbered. Then the howl of a far-off dog rose on the night air, and was answered by a fainter howl from a remoter distance. Tom was in an agony. At last he was satisfied that time had ceased and eternity begun; he began to doze, in spite of himself; the clock chimed eleven, but he did not hear it. And then there came, mingling with his half-formed dreams, a most melancholy caterwauling. The raising of a neighboring window disturbed him. A cry of "Scat! you devil!" and the crash of an empty bottle against the back of his aunt's woodshed brought him wide awake, and a single minute later he was dressed and out of the window and creeping along the roof of the "ell" on all fours. He "meow'd" with caution once or twice, as he went; then jumped to the roof of the woodshed and thence to the ground. Huckleberry Finn was there, with his dead cat. The boys moved off and disappeared in the gloom. At the end of half an hour they were wading through the tall grass of the graveyard. It was a graveyard of the old-fashioned Western kind. It was on a hill, about a mile and a half from the village. It had a crazy board fence around it, which leaned inward in places, and outward the rest of the time, but stood upright nowhere. Grass and weeds grew rank over the whole cemetery. All the old graves were sunken in, there was not a tombstone on the place; round-topped, worm-eaten boards staggered over the graves, leaning for support and finding none. "Sacred to the memory of" So-and-So had been painted on them once, but it could no longer have been read, on the most of them, now, even if there had been light. A faint wind moaned through the trees, and Tom feared it might be the spirits of the dead, complaining at being disturbed. The boys talked little, and only under their breath, for the time and the place and the pervading solemnity and silence oppressed their spirits. They found the sharp new heap they were seeking, and ensconced themselves within the protection of three great elms that grew in a bunch within a few feet of the grave. Then they waited in silence for what seemed a long time. The hooting of a distant owl was all the sound that troubled the dead stillness. Tom's reflections grew oppressive. He must force some talk. So he said in a whisper: "Hucky, do you believe the dead people like it for us to be here?" Huckleberry whispered: "I wisht I knowed. It's awful solemn like, AIN'T it?" "I bet it is." There was a considerable pause, while the boys canvassed this matter inwardly. Then Tom whispered: "Say, Hucky--do you reckon Hoss Williams hears us talking?" "O' course he does. Least his sperrit does." Tom, after a pause: "I wish I'd said Mister Williams. But I never meant any harm. Everybody calls him Hoss." "A body can't be too partic'lar how they talk 'bout these-yer dead people, Tom." This was a damper, and conversation died again. Presently Tom seized his comrade's arm and said: "Sh!" "What is it, Tom?" And the two clung together with beating hearts. "Sh! There 'tis again! Didn't you hear it?" "I--" "There! Now you hear it." "Lord, Tom, they're coming! They're coming, sure. What'll we do?" "I dono. Think they'll see us?" "Oh, Tom, they can see in the dark, same as cats. I wisht I hadn't come." "Oh, don't be afeard. I don't believe they'll bother us. We ain't doing any harm. If we keep perfectly still, maybe they won't notice us at all." "I'll try to, Tom, but, Lord, I'm all of a shiver." "Listen!" The boys bent their heads together and scarcely breathed. A muffled sound of voices floated up from the far end of the graveyard. "Look! See there!" whispered Tom. "What is it?" "It's devil-fire. Oh, Tom, this is awful." Some vague figures approached through the gloom, swinging an old-fashioned tin lantern that freckled the ground with innumerable little spangles of light. Presently Huckleberry whispered with a shudder: "It's the devils sure enough. Three of 'em! Lordy, Tom, we're goners! Can you pray?" "I'll try, but don't you be afeard. They ain't going to hurt us. 'Now I lay me down to sleep, I--'" "Sh!" "What is it, Huck?" "They're HUMANS! One of 'em is, anyway. One of 'em's old Muff Potter's voice." "No--'tain't so, is it?" "I bet I know it. Don't you stir nor budge. He ain't sharp enough to notice us. Drunk, the same as usual, likely--blamed old rip!" "All right, I'll keep still. Now they're stuck. Can't find it. Here they come again. Now they're hot. Cold again. Hot again. Red hot! They're p'inted right, this time. Say, Huck, I know another o' them voices; it's Injun Joe." "That's so--that murderin' half-breed! I'd druther they was devils a dern sight. What kin they be up to?" The whisper died wholly out, now, for the three men had reached the grave and stood within a few feet of the boys' hiding-place. "Here it is," said the third voice; and the owner of it held the lantern up and revealed the face of young Doctor Robinson. Potter and Injun Joe were carrying a handbarrow with a rope and a couple of shovels on it. They cast down their load and began to open the grave. The doctor put the lantern at the head of the grave and came and sat down with his back against one of the elm trees. He was so close the boys could have touched him. "Hurry, men!" he said, in a low voice; "the moon might come out at any moment." They growled a response and went on digging. For some time there was no noise but the grating sound of the spades discharging their freight of mould and gravel. It was very monotonous. Finally a spade struck upon the coffin with a dull woody accent, and within another minute or two the men had hoisted it out on the ground. They pried off the lid with their shovels, got out the body and dumped it rudely on the ground. The moon drifted from behind the clouds and exposed the pallid face. The barrow was got ready and the corpse placed on it, covered with a blanket, and bound to its place with the rope. Potter took out a large spring-knife and cut off the dangling end of the rope and then said: "Now the cussed thing's ready, Sawbones, and you'll just out with another five, or here she stays." "That's the talk!" said Injun Joe. "Look here, what does this mean?" said the doctor. "You required your pay in advance, and I've paid you." "Yes, and you done more than that," said Injun Joe, approaching the doctor, who was now standing. "Five years ago you drove me away from your father's kitchen one night, when I come to ask for something to eat, and you said I warn't there for any good; and when I swore I'd get even with you if it took a hundred years, your father had me jailed for a vagrant. Did you think I'd forget? The Injun blood ain't in me for nothing. And now I've GOT you, and you got to SETTLE, you know!" He was threatening the doctor, with his fist in his face, by this time. The doctor struck out suddenly and stretched the ruffian on the ground. Potter dropped his knife, and exclaimed: "Here, now, don't you hit my pard!" and the next moment he had grappled with the doctor and the two were struggling with might and main, trampling the grass and tearing the ground with their heels. Injun Joe sprang to his feet, his eyes flaming with passion, snatched up Potter's knife, and went creeping, catlike and stooping, round and round about the combatants, seeking an opportunity. All at once the doctor flung himself free, seized the heavy headboard of Williams' grave and felled Potter to the earth with it--and in the same instant the half-breed saw his chance and drove the knife to the hilt in the young man's breast. He reeled and fell partly upon Potter, flooding him with his blood, and in the same moment the clouds blotted out the dreadful spectacle and the two frightened boys went speeding away in the dark. Presently, when the moon emerged again, Injun Joe was standing over the two forms, contemplating them. The doctor murmured inarticulately, gave a long gasp or two and was still. The half-breed muttered: "THAT score is settled--damn you." Then he robbed the body. After which he put the fatal knife in Potter's open right hand, and sat down on the dismantled coffin. Three --four--five minutes passed, and then Potter began to stir and moan. His hand closed upon the knife; he raised it, glanced at it, and let it fall, with a shudder. Then he sat up, pushing the body from him, and gazed at it, and then around him, confusedly. His eyes met Joe's. "Lord, how is this, Joe?" he said. "It's a dirty business," said Joe, without moving. "What did you do it for?" "I! I never done it!" "Look here! That kind of talk won't wash." Potter trembled and grew white. "I thought I'd got sober. I'd no business to drink to-night. But it's in my head yet--worse'n when we started here. I'm all in a muddle; can't recollect anything of it, hardly. Tell me, Joe--HONEST, now, old feller--did I do it? Joe, I never meant to--'pon my soul and honor, I never meant to, Joe. Tell me how it was, Joe. Oh, it's awful--and him so young and promising." "Why, you two was scuffling, and he fetched you one with the headboard and you fell flat; and then up you come, all reeling and staggering like, and snatched the knife and jammed it into him, just as he fetched you another awful clip--and here you've laid, as dead as a wedge til now." "Oh, I didn't know what I was a-doing. I wish I may die this minute if I did. It was all on account of the whiskey and the excitement, I reckon. I never used a weepon in my life before, Joe. I've fought, but never with weepons. They'll all say that. Joe, don't tell! Say you won't tell, Joe--that's a good feller. I always liked you, Joe, and stood up for you, too. Don't you remember? You WON'T tell, WILL you, Joe?" And the poor creature dropped on his knees before the stolid murderer, and clasped his appealing hands. "No, you've always been fair and square with me, Muff Potter, and I won't go back on you. There, now, that's as fair as a man can say." "Oh, Joe, you're an angel. I'll bless you for this the longest day I live." And Potter began to cry. "Come, now, that's enough of that. This ain't any time for blubbering. You be off yonder way and I'll go this. Move, now, and don't leave any tracks behind you." Potter started on a trot that quickly increased to a run. The half-breed stood looking after him. He muttered: "If he's as much stunned with the lick and fuddled with the rum as he had the look of being, he won't think of the knife till he's gone so far he'll be afraid to come back after it to such a place by himself --chicken-heart!" Two or three minutes later the murdered man, the blanketed corpse, the lidless coffin, and the open grave were under no inspection but the moon's. The stillness was complete again, too. CHAPTER X THE two boys flew on and on, toward the village, speechless with horror. They glanced backward over their shoulders from time to time, apprehensively, as if they feared they might be followed. Every stump that started up in their path seemed a man and an enemy, and made them catch their breath; and as they sped by some outlying cottages that lay near the village, the barking of the aroused watch-dogs seemed to give wings to their feet. "If we can only get to the old tannery before we break down!" whispered Tom, in short catches between breaths. "I can't stand it much longer." Huckleberry's hard pantings were his only reply, and the boys fixed their eyes on the goal of their hopes and bent to their work to win it. They gained steadily on it, and at last, breast to breast, they burst through the open door and fell grateful and exhausted in the sheltering shadows beyond. By and by their pulses slowed down, and Tom whispered: "Huckleberry, what do you reckon'll come of this?" "If Doctor Robinson dies, I reckon hanging'll come of it." "Do you though?" "Why, I KNOW it, Tom." Tom thought a while, then he said: "Who'll tell? We?" "What are you talking about? S'pose something happened and Injun Joe DIDN'T hang? Why, he'd kill us some time or other, just as dead sure as we're a laying here." "That's just what I was thinking to myself, Huck." "If anybody tells, let Muff Potter do it, if he's fool enough. He's generally drunk enough." Tom said nothing--went on thinking. Presently he whispered: "Huck, Muff Potter don't know it. How can he tell?" "What's the reason he don't know it?" "Because he'd just got that whack when Injun Joe done it. D'you reckon he could see anything? D'you reckon he knowed anything?" "By hokey, that's so, Tom!" "And besides, look-a-here--maybe that whack done for HIM!" "No, 'taint likely, Tom. He had liquor in him; I could see that; and besides, he always has. Well, when pap's full, you might take and belt him over the head with a church and you couldn't phase him. He says so, his own self. So it's the same with Muff Potter, of course. But if a man was dead sober, I reckon maybe that whack might fetch him; I dono." After another reflective silence, Tom said: "Hucky, you sure you can keep mum?" "Tom, we GOT to keep mum. You know that. That Injun devil wouldn't make any more of drownding us than a couple of cats, if we was to squeak 'bout this and they didn't hang him. Now, look-a-here, Tom, less take and swear to one another--that's what we got to do--swear to keep mum." "I'm agreed. It's the best thing. Would you just hold hands and swear that we--" "Oh no, that wouldn't do for this. That's good enough for little rubbishy common things--specially with gals, cuz THEY go back on you anyway, and blab if they get in a huff--but there orter be writing 'bout a big thing like this. And blood." Tom's whole being applauded this idea. It was deep, and dark, and awful; the hour, the circumstances, the surroundings, were in keeping with it. He picked up a clean pine shingle that lay in the moonlight, took a little fragment of "red keel" out of his pocket, got the moon on his work, and painfully scrawled these lines, emphasizing each slow down-stroke by clamping his tongue between his teeth, and letting up the pressure on the up-strokes. [See next page.] "Huck Finn and Tom Sawyer swears they will keep mum about This and They wish They may Drop down dead in Their Tracks if They ever Tell and Rot." Huckleberry was filled with admiration of Tom's facility in writing, and the sublimity of his language. He at once took a pin from his lapel and was going to prick his flesh, but Tom said: "Hold on! Don't do that. A pin's brass. It might have verdigrease on it." "What's verdigrease?" "It's p'ison. That's what it is. You just swaller some of it once --you'll see." So Tom unwound the thread from one of his needles, and each boy pricked the ball of his thumb and squeezed out a drop of blood. In time, after many squeezes, Tom managed to sign his initials, using the ball of his little finger for a pen. Then he showed Huckleberry how to make an H and an F, and the oath was complete. They buried the shingle close to the wall, with some dismal ceremonies and incantations, and the fetters that bound their tongues were considered to be locked and the key thrown away. A figure crept stealthily through a break in the other end of the ruined building, now, but they did not notice it. "Tom," whispered Huckleberry, "does this keep us from EVER telling --ALWAYS?" "Of course it does. It don't make any difference WHAT happens, we got to keep mum. We'd drop down dead--don't YOU know that?" "Yes, I reckon that's so." They continued to whisper for some little time. Presently a dog set up a long, lugubrious howl just outside--within ten feet of them. The boys clasped each other suddenly, in an agony of fright. "Which of us does he mean?" gasped Huckleberry. "I dono--peep through the crack. Quick!" "No, YOU, Tom!" "I can't--I can't DO it, Huck!" "Please, Tom. There 'tis again!" "Oh, lordy, I'm thankful!" whispered Tom. "I know his voice. It's Bull Harbison." * [* If Mr. Harbison owned a slave named Bull, Tom would have spoken of him as "Harbison's Bull," but a son or a dog of that name was "Bull Harbison."] "Oh, that's good--I tell you, Tom, I was most scared to death; I'd a bet anything it was a STRAY dog." The dog howled again. The boys' hearts sank once more. "Oh, my! that ain't no Bull Harbison!" whispered Huckleberry. "DO, Tom!" Tom, quaking with fear, yielded, and put his eye to the crack. His whisper was hardly audible when he said: "Oh, Huck, IT S A STRAY DOG!" "Quick, Tom, quick! Who does he mean?" "Huck, he must mean us both--we're right together." "Oh, Tom, I reckon we're goners. I reckon there ain't no mistake 'bout where I'LL go to. I been so wicked." "Dad fetch it! This comes of playing hookey and doing everything a feller's told NOT to do. I might a been good, like Sid, if I'd a tried --but no, I wouldn't, of course. But if ever I get off this time, I lay I'll just WALLER in Sunday-schools!" And Tom began to snuffle a little. "YOU bad!" and Huckleberry began to snuffle too. "Consound it, Tom Sawyer, you're just old pie, 'longside o' what I am. Oh, LORDY, lordy, lordy, I wisht I only had half your chance." Tom choked off and whispered: "Look, Hucky, look! He's got his BACK to us!" Hucky looked, with joy in his heart. "Well, he has, by jingoes! Did he before?" "Yes, he did. But I, like a fool, never thought. Oh, this is bully, you know. NOW who can he mean?" The howling stopped. Tom pricked up his ears. "Sh! What's that?" he whispered. "Sounds like--like hogs grunting. No--it's somebody snoring, Tom." "That IS it! Where 'bouts is it, Huck?" "I bleeve it's down at 'tother end. Sounds so, anyway. Pap used to sleep there, sometimes, 'long with the hogs, but laws bless you, he just lifts things when HE snores. Besides, I reckon he ain't ever coming back to this town any more." The spirit of adventure rose in the boys' souls once more. "Hucky, do you das't to go if I lead?" "I don't like to, much. Tom, s'pose it's Injun Joe!" Tom quailed. But presently the temptation rose up strong again and the boys agreed to try, with the understanding that they would take to their heels if the snoring stopped. So they went tiptoeing stealthily down, the one behind the other. When they had got to within five steps of the snorer, Tom stepped on a stick, and it broke with a sharp snap. The man moaned, writhed a little, and his face came into the moonlight. It was Muff Potter. The boys' hearts had stood still, and their hopes too, when the man moved, but their fears passed away now. They tiptoed out, through the broken weather-boarding, and stopped at a little distance to exchange a parting word. That long, lugubrious howl rose on the night air again! They turned and saw the strange dog standing within a few feet of where Potter was lying, and FACING Potter, with his nose pointing heavenward. "Oh, geeminy, it's HIM!" exclaimed both boys, in a breath. "Say, Tom--they say a stray dog come howling around Johnny Miller's house, 'bout midnight, as much as two weeks ago; and a whippoorwill come in and lit on the banisters and sung, the very same evening; and there ain't anybody dead there yet." "Well, I know that. And suppose there ain't. Didn't Gracie Miller fall in the kitchen fire and burn herself terrible the very next Saturday?" "Yes, but she ain't DEAD. And what's more, she's getting better, too." "All right, you wait and see. She's a goner, just as dead sure as Muff Potter's a goner. That's what the niggers say, and they know all about these kind of things, Huck." Then they separated, cogitating. When Tom crept in at his bedroom window the night was almost spent. He undressed with excessive caution, and fell asleep congratulating himself that nobody knew of his escapade. He was not aware that the gently-snoring Sid was awake, and had been so for an hour. When Tom awoke, Sid was dressed and gone. There was a late look in the light, a late sense in the atmosphere. He was startled. Why had he not been called--persecuted till he was up, as usual? The thought filled him with bodings. Within five minutes he was dressed and down-stairs, feeling sore and drowsy. The family were still at table, but they had finished breakfast. There was no voice of rebuke; but there were averted eyes; there was a silence and an air of solemnity that struck a chill to the culprit's heart. He sat down and tried to seem gay, but it was up-hill work; it roused no smile, no response, and he lapsed into silence and let his heart sink down to the depths. After breakfast his aunt took him aside, and Tom almost brightened in the hope that he was going to be flogged; but it was not so. His aunt wept over him and asked him how he could go and break her old heart so; and finally told him to go on, and ruin himself and bring her gray hairs with sorrow to the grave, for it was no use for her to try any more. This was worse than a thousand whippings, and Tom's heart was sorer now than his body. He cried, he pleaded for forgiveness, promised to reform over and over again, and then received his dismissal, feeling that he had won but an imperfect forgiveness and established but a feeble confidence. He left the presence too miserable to even feel revengeful toward Sid; and so the latter's prompt retreat through the back gate was unnecessary. He moped to school gloomy and sad, and took his flogging, along with Joe Harper, for playing hookey the day before, with the air of one whose heart was busy with heavier woes and wholly dead to trifles. Then he betook himself to his seat, rested his elbows on his desk and his jaws in his hands, and stared at the wall with the stony stare of suffering that has reached the limit and can no further go. His elbow was pressing against some hard substance. After a long time he slowly and sadly changed his position, and took up this object with a sigh. It was in a paper. He unrolled it. A long, lingering, colossal sigh followed, and his heart broke. It was his brass andiron knob! This final feather broke the camel's back. CHAPTER XI CLOSE upon the hour of noon the whole village was suddenly electrified with the ghastly news. No need of the as yet undreamed-of telegraph; the tale flew from man to man, from group to group, from house to house, with little less than telegraphic speed. Of course the schoolmaster gave holiday for that afternoon; the town would have thought strangely of him if he had not. A gory knife had been found close to the murdered man, and it had been recognized by somebody as belonging to Muff Potter--so the story ran. And it was said that a belated citizen had come upon Potter washing himself in the "branch" about one or two o'clock in the morning, and that Potter had at once sneaked off--suspicious circumstances, especially the washing which was not a habit with Potter. It was also said that the town had been ransacked for this "murderer" (the public are not slow in the matter of sifting evidence and arriving at a verdict), but that he could not be found. Horsemen had departed down all the roads in every direction, and the Sheriff "was confident" that he would be captured before night. All the town was drifting toward the graveyard. Tom's heartbreak vanished and he joined the procession, not because he would not a thousand times rather go anywhere else, but because an awful, unaccountable fascination drew him on. Arrived at the dreadful place, he wormed his small body through the crowd and saw the dismal spectacle. It seemed to him an age since he was there before. Somebody pinched his arm. He turned, and his eyes met Huckleberry's. Then both looked elsewhere at once, and wondered if anybody had noticed anything in their mutual glance. But everybody was talking, and intent upon the grisly spectacle before them. "Poor fellow!" "Poor young fellow!" "This ought to be a lesson to grave robbers!" "Muff Potter'll hang for this if they catch him!" This was the drift of remark; and the minister said, "It was a judgment; His hand is here." Now Tom shivered from head to heel; for his eye fell upon the stolid face of Injun Joe. At this moment the crowd began to sway and struggle, and voices shouted, "It's him! it's him! he's coming himself!" "Who? Who?" from twenty voices. "Muff Potter!" "Hallo, he's stopped!--Look out, he's turning! Don't let him get away!" People in the branches of the trees over Tom's head said he wasn't trying to get away--he only looked doubtful and perplexed. "Infernal impudence!" said a bystander; "wanted to come and take a quiet look at his work, I reckon--didn't expect any company." The crowd fell apart, now, and the Sheriff came through, ostentatiously leading Potter by the arm. The poor fellow's face was haggard, and his eyes showed the fear that was upon him. When he stood before the murdered man, he shook as with a palsy, and he put his face in his hands and burst into tears. "I didn't do it, friends," he sobbed; "'pon my word and honor I never done it." "Who's accused you?" shouted a voice. This shot seemed to carry home. Potter lifted his face and looked around him with a pathetic hopelessness in his eyes. He saw Injun Joe, and exclaimed: "Oh, Injun Joe, you promised me you'd never--" "Is that your knife?" and it was thrust before him by the Sheriff. Potter would have fallen if they had not caught him and eased him to the ground. Then he said: "Something told me 't if I didn't come back and get--" He shuddered; then waved his nerveless hand with a vanquished gesture and said, "Tell 'em, Joe, tell 'em--it ain't any use any more." Then Huckleberry and Tom stood dumb and staring, and heard the stony-hearted liar reel off his serene statement, they expecting every moment that the clear sky would deliver God's lightnings upon his head, and wondering to see how long the stroke was delayed. And when he had finished and still stood alive and whole, their wavering impulse to break their oath and save the poor betrayed prisoner's life faded and vanished away, for plainly this miscreant had sold himself to Satan and it would be fatal to meddle with the property of such a power as that. "Why didn't you leave? What did you want to come here for?" somebody said. "I couldn't help it--I couldn't help it," Potter moaned. "I wanted to run away, but I couldn't seem to come anywhere but here." And he fell to sobbing again. Injun Joe repeated his statement, just as calmly, a few minutes afterward on the inquest, under oath; and the boys, seeing that the lightnings were still withheld, were confirmed in their belief that Joe had sold himself to the devil. He was now become, to them, the most balefully interesting object they had ever looked upon, and they could not take their fascinated eyes from his face. They inwardly resolved to watch him nights, when opportunity should offer, in the hope of getting a glimpse of his dread master. Injun Joe helped to raise the body of the murdered man and put it in a wagon for removal; and it was whispered through the shuddering crowd that the wound bled a little! The boys thought that this happy circumstance would turn suspicion in the right direction; but they were disappointed, for more than one villager remarked: "It was within three feet of Muff Potter when it done it." Tom's fearful secret and gnawing conscience disturbed his sleep for as much as a week after this; and at breakfast one morning Sid said: "Tom, you pitch around and talk in your sleep so much that you keep me awake half the time." Tom blanched and dropped his eyes. "It's a bad sign," said Aunt Polly, gravely. "What you got on your mind, Tom?" "Nothing. Nothing 't I know of." But the boy's hand shook so that he spilled his coffee. "And you do talk such stuff," Sid said. "Last night you said, 'It's blood, it's blood, that's what it is!' You said that over and over. And you said, 'Don't torment me so--I'll tell!' Tell WHAT? What is it you'll tell?" Everything was swimming before Tom. There is no telling what might have happened, now, but luckily the concern passed out of Aunt Polly's face and she came to Tom's relief without knowing it. She said: "Sho! It's that dreadful murder. I dream about it most every night myself. Sometimes I dream it's me that done it." Mary said she had been affected much the same way. Sid seemed satisfied. Tom got out of the presence as quick as he plausibly could, and after that he complained of toothache for a week, and tied up his jaws every night. He never knew that Sid lay nightly watching, and frequently slipped the bandage free and then leaned on his elbow listening a good while at a time, and afterward slipped the bandage back to its place again. Tom's distress of mind wore off gradually and the toothache grew irksome and was discarded. If Sid really managed to make anything out of Tom's disjointed mutterings, he kept it to himself. It seemed to Tom that his schoolmates never would get done holding inquests on dead cats, and thus keeping his trouble present to his mind. Sid noticed that Tom never was coroner at one of these inquiries, though it had been his habit to take the lead in all new enterprises; he noticed, too, that Tom never acted as a witness--and that was strange; and Sid did not overlook the fact that Tom even showed a marked aversion to these inquests, and always avoided them when he could. Sid marvelled, but said nothing. However, even inquests went out of vogue at last, and ceased to torture Tom's conscience. Every day or two, during this time of sorrow, Tom watched his opportunity and went to the little grated jail-window and smuggled such small comforts through to the "murderer" as he could get hold of. The jail was a trifling little brick den that stood in a marsh at the edge of the village, and no guards were afforded for it; indeed, it was seldom occupied. These offerings greatly helped to ease Tom's conscience. The villagers had a strong desire to tar-and-feather Injun Joe and ride him on a rail, for body-snatching, but so formidable was his character that nobody could be found who was willing to take the lead in the matter, so it was dropped. He had been careful to begin both of his inquest-statements with the fight, without confessing the grave-robbery that preceded it; therefore it was deemed wisest not to try the case in the courts at present. CHAPTER XII ONE of the reasons why Tom's mind had drifted away from its secret troubles was, that it had found a new and weighty matter to interest itself about. Becky Thatcher had stopped coming to school. Tom had struggled with his pride a few days, and tried to "whistle her down the wind," but failed. He began to find himself hanging around her father's house, nights, and feeling very miserable. She was ill. What if she should die! There was distraction in the thought. He no longer took an interest in war, nor even in piracy. The charm of life was gone; there was nothing but dreariness left. He put his hoop away, and his bat; there was no joy in them any more. His aunt was concerned. She began to try all manner of remedies on him. She was one of those people who are infatuated with patent medicines and all new-fangled methods of producing health or mending it. She was an inveterate experimenter in these things. When something fresh in this line came out she was in a fever, right away, to try it; not on herself, for she was never ailing, but on anybody else that came handy. She was a subscriber for all the "Health" periodicals and phrenological frauds; and the solemn ignorance they were inflated with was breath to her nostrils. All the "rot" they contained about ventilation, and how to go to bed, and how to get up, and what to eat, and what to drink, and how much exercise to take, and what frame of mind to keep one's self in, and what sort of clothing to wear, was all gospel to her, and she never observed that her health-journals of the current month customarily upset everything they had recommended the month before. She was as simple-hearted and honest as the day was long, and so she was an easy victim. She gathered together her quack periodicals and her quack medicines, and thus armed with death, went about on her pale horse, metaphorically speaking, with "hell following after." But she never suspected that she was not an angel of healing and the balm of Gilead in disguise, to the suffering neighbors. The water treatment was new, now, and Tom's low condition was a windfall to her. She had him out at daylight every morning, stood him up in the woodshed and drowned him with a deluge of cold water; then she scrubbed him down with a towel like a file, and so brought him to; then she rolled him up in a wet sheet and put him away under blankets till she sweated his soul clean and "the yellow stains of it came through his pores"--as Tom said. Yet notwithstanding all this, the boy grew more and more melancholy and pale and dejected. She added hot baths, sitz baths, shower baths, and plunges. The boy remained as dismal as a hearse. She began to assist the water with a slim oatmeal diet and blister-plasters. She calculated his capacity as she would a jug's, and filled him up every day with quack cure-alls. Tom had become indifferent to persecution by this time. This phase filled the old lady's heart with consternation. This indifference must be broken up at any cost. Now she heard of Pain-killer for the first time. She ordered a lot at once. She tasted it and was filled with gratitude. It was simply fire in a liquid form. She dropped the water treatment and everything else, and pinned her faith to Pain-killer. She gave Tom a teaspoonful and watched with the deepest anxiety for the result. Her troubles were instantly at rest, her soul at peace again; for the "indifference" was broken up. The boy could not have shown a wilder, heartier interest, if she had built a fire under him. Tom felt that it was time to wake up; this sort of life might be romantic enough, in his blighted condition, but it was getting to have too little sentiment and too much distracting variety about it. So he thought over various plans for relief, and finally hit pon that of professing to be fond of Pain-killer. He asked for it so often that he became a nuisance, and his aunt ended by telling him to help himself and quit bothering her. If it had been Sid, she would have had no misgivings to alloy her delight; but since it was Tom, she watched the bottle clandestinely. She found that the medicine did really diminish, but it did not occur to her that the boy was mending the health of a crack in the sitting-room floor with it. One day Tom was in the act of dosing the crack when his aunt's yellow cat came along, purring, eying the teaspoon avariciously, and begging for a taste. Tom said: "Don't ask for it unless you want it, Peter." But Peter signified that he did want it. "You better make sure." Peter was sure. "Now you've asked for it, and I'll give it to you, because there ain't anything mean about me; but if you find you don't like it, you mustn't blame anybody but your own self." Peter was agreeable. So Tom pried his mouth open and poured down the Pain-killer. Peter sprang a couple of yards in the air, and then delivered a war-whoop and set off round and round the room, banging against furniture, upsetting flower-pots, and making general havoc. Next he rose on his hind feet and pranced around, in a frenzy of enjoyment, with his head over his shoulder and his voice proclaiming his unappeasable happiness. Then he went tearing around the house again spreading chaos and destruction in his path. Aunt Polly entered in time to see him throw a few double summersets, deliver a final mighty hurrah, and sail through the open window, carrying the rest of the flower-pots with him. The old lady stood petrified with astonishment, peering over her glasses; Tom lay on the floor expiring with laughter. "Tom, what on earth ails that cat?" "I don't know, aunt," gasped the boy. "Why, I never see anything like it. What did make him act so?" "Deed I don't know, Aunt Polly; cats always act so when they're having a good time." "They do, do they?" There was something in the tone that made Tom apprehensive. "Yes'm. That is, I believe they do." "You DO?" "Yes'm." The old lady was bending down, Tom watching, with interest emphasized by anxiety. Too late he divined her "drift." The handle of the telltale teaspoon was visible under the bed-valance. Aunt Polly took it, held it up. Tom winced, and dropped his eyes. Aunt Polly raised him by the usual handle--his ear--and cracked his head soundly with her thimble. "Now, sir, what did you want to treat that poor dumb beast so, for?" "I done it out of pity for him--because he hadn't any aunt." "Hadn't any aunt!--you numskull. What has that got to do with it?" "Heaps. Because if he'd had one she'd a burnt him out herself! She'd a roasted his bowels out of him 'thout any more feeling than if he was a human!" Aunt Polly felt a sudden pang of remorse. This was putting the thing in a new light; what was cruelty to a cat MIGHT be cruelty to a boy, too. She began to soften; she felt sorry. Her eyes watered a little, and she put her hand on Tom's head and said gently: "I was meaning for the best, Tom. And, Tom, it DID do you good." Tom looked up in her face with just a perceptible twinkle peeping through his gravity. "I know you was meaning for the best, aunty, and so was I with Peter. It done HIM good, too. I never see him get around so since--" "Oh, go 'long with you, Tom, before you aggravate me again. And you try and see if you can't be a good boy, for once, and you needn't take any more medicine." Tom reached school ahead of time. It was noticed that this strange thing had been occurring every day latterly. And now, as usual of late, he hung about the gate of the schoolyard instead of playing with his comrades. He was sick, he said, and he looked it. He tried to seem to be looking everywhere but whither he really was looking--down the road. Presently Jeff Thatcher hove in sight, and Tom's face lighted; he gazed a moment, and then turned sorrowfully away. When Jeff arrived, Tom accosted him; and "led up" warily to opportunities for remark about Becky, but the giddy lad never could see the bait. Tom watched and watched, hoping whenever a frisking frock came in sight, and hating the owner of it as soon as he saw she was not the right one. At last frocks ceased to appear, and he dropped hopelessly into the dumps; he entered the empty schoolhouse and sat down to suffer. Then one more frock passed in at the gate, and Tom's heart gave a great bound. The next instant he was out, and "going on" like an Indian; yelling, laughing, chasing boys, jumping over the fence at risk of life and limb, throwing handsprings, standing on his head--doing all the heroic things he could conceive of, and keeping a furtive eye out, all the while, to see if Becky Thatcher was noticing. But she seemed to be unconscious of it all; she never looked. Could it be possible that she was not aware that he was there? He carried his exploits to her immediate vicinity; came war-whooping around, snatched a boy's cap, hurled it to the roof of the schoolhouse, broke through a group of boys, tumbling them in every direction, and fell sprawling, himself, under Becky's nose, almost upsetting her--and she turned, with her nose in the air, and he heard her say: "Mf! some people think they're mighty smart--always showing off!" Tom's cheeks burned. He gathered himself up and sneaked off, crushed and crestfallen. CHAPTER XIII TOM'S mind was made up now. He was gloomy and desperate. He was a forsaken, friendless boy, he said; nobody loved him; when they found out what they had driven him to, perhaps they would be sorry; he had tried to do right and get along, but they would not let him; since nothing would do them but to be rid of him, let it be so; and let them blame HIM for the consequences--why shouldn't they? What right had the friendless to complain? Yes, they had forced him to it at last: he would lead a life of crime. There was no choice. By this time he was far down Meadow Lane, and the bell for school to "take up" tinkled faintly upon his ear. He sobbed, now, to think he should never, never hear that old familiar sound any more--it was very hard, but it was forced on him; since he was driven out into the cold world, he must submit--but he forgave them. Then the sobs came thick and fast. Just at this point he met his soul's sworn comrade, Joe Harper --hard-eyed, and with evidently a great and dismal purpose in his heart. Plainly here were "two souls with but a single thought." Tom, wiping his eyes with his sleeve, began to blubber out something about a resolution to escape from hard usage and lack of sympathy at home by roaming abroad into the great world never to return; and ended by hoping that Joe would not forget him. But it transpired that this was a request which Joe had just been going to make of Tom, and had come to hunt him up for that purpose. His mother had whipped him for drinking some cream which he had never tasted and knew nothing about; it was plain that she was tired of him and wished him to go; if she felt that way, there was nothing for him to do but succumb; he hoped she would be happy, and never regret having driven her poor boy out into the unfeeling world to suffer and die. As the two boys walked sorrowing along, they made a new compact to stand by each other and be brothers and never separate till death relieved them of their troubles. Then they began to lay their plans. Joe was for being a hermit, and living on crusts in a remote cave, and dying, some time, of cold and want and grief; but after listening to Tom, he conceded that there were some conspicuous advantages about a life of crime, and so he consented to be a pirate. Three miles below St. Petersburg, at a point where the Mississippi River was a trifle over a mile wide, there was a long, narrow, wooded island, with a shallow bar at the head of it, and this offered well as a rendezvous. It was not inhabited; it lay far over toward the further shore, abreast a dense and almost wholly unpeopled forest. So Jackson's Island was chosen. Who were to be the subjects of their piracies was a matter that did not occur to them. Then they hunted up Huckleberry Finn, and he joined them promptly, for all careers were one to him; he was indifferent. They presently separated to meet at a lonely spot on the river-bank two miles above the village at the favorite hour--which was midnight. There was a small log raft there which they meant to capture. Each would bring hooks and lines, and such provision as he could steal in the most dark and mysterious way--as became outlaws. And before the afternoon was done, they had all managed to enjoy the sweet glory of spreading the fact that pretty soon the town would "hear something." All who got this vague hint were cautioned to "be mum and wait." About midnight Tom arrived with a boiled ham and a few trifles, and stopped in a dense undergrowth on a small bluff overlooking the meeting-place. It was starlight, and very still. The mighty river lay like an ocean at rest. Tom listened a moment, but no sound disturbed the quiet. Then he gave a low, distinct whistle. It was answered from under the bluff. Tom whistled twice more; these signals were answered in the same way. Then a guarded voice said: "Who goes there?" "Tom Sawyer, the Black Avenger of the Spanish Main. Name your names." "Huck Finn the Red-Handed, and Joe Harper the Terror of the Seas." Tom had furnished these titles, from his favorite literature. "'Tis well. Give the countersign." Two hoarse whispers delivered the same awful word simultaneously to the brooding night: "BLOOD!" Then Tom tumbled his ham over the bluff and let himself down after it, tearing both skin and clothes to some extent in the effort. There was an easy, comfortable path along the shore under the bluff, but it lacked the advantages of difficulty and danger so valued by a pirate. The Terror of the Seas had brought a side of bacon, and had about worn himself out with getting it there. Finn the Red-Handed had stolen a skillet and a quantity of half-cured leaf tobacco, and had also brought a few corn-cobs to make pipes with. But none of the pirates smoked or "chewed" but himself. The Black Avenger of the Spanish Main said it would never do to start without some fire. That was a wise thought; matches were hardly known there in that day. They saw a fire smouldering upon a great raft a hundred yards above, and they went stealthily thither and helped themselves to a chunk. They made an imposing adventure of it, saying, "Hist!" every now and then, and suddenly halting with finger on lip; moving with hands on imaginary dagger-hilts; and giving orders in dismal whispers that if "the foe" stirred, to "let him have it to the hilt," because "dead men tell no tales." They knew well enough that the raftsmen were all down at the village laying in stores or having a spree, but still that was no excuse for their conducting this thing in an unpiratical way. They shoved off, presently, Tom in command, Huck at the after oar and Joe at the forward. Tom stood amidships, gloomy-browed, and with folded arms, and gave his orders in a low, stern whisper: "Luff, and bring her to the wind!" "Aye-aye, sir!" "Steady, steady-y-y-y!" "Steady it is, sir!" "Let her go off a point!" "Point it is, sir!" As the boys steadily and monotonously drove the raft toward mid-stream it was no doubt understood that these orders were given only for "style," and were not intended to mean anything in particular. "What sail's she carrying?" "Courses, tops'ls, and flying-jib, sir." "Send the r'yals up! Lay out aloft, there, half a dozen of ye --foretopmaststuns'l! Lively, now!" "Aye-aye, sir!" "Shake out that maintogalans'l! Sheets and braces! NOW my hearties!" "Aye-aye, sir!" "Hellum-a-lee--hard a port! Stand by to meet her when she comes! Port, port! NOW, men! With a will! Stead-y-y-y!" "Steady it is, sir!" The raft drew beyond the middle of the river; the boys pointed her head right, and then lay on their oars. The river was not high, so there was not more than a two or three mile current. Hardly a word was said during the next three-quarters of an hour. Now the raft was passing before the distant town. Two or three glimmering lights showed where it lay, peacefully sleeping, beyond the vague vast sweep of star-gemmed water, unconscious of the tremendous event that was happening. The Black Avenger stood still with folded arms, "looking his last" upon the scene of his former joys and his later sufferings, and wishing "she" could see him now, abroad on the wild sea, facing peril and death with dauntless heart, going to his doom with a grim smile on his lips. It was but a small strain on his imagination to remove Jackson's Island beyond eyeshot of the village, and so he "looked his last" with a broken and satisfied heart. The other pirates were looking their last, too; and they all looked so long that they came near letting the current drift them out of the range of the island. But they discovered the danger in time, and made shift to avert it. About two o'clock in the morning the raft grounded on the bar two hundred yards above the head of the island, and they waded back and forth until they had landed their freight. Part of the little raft's belongings consisted of an old sail, and this they spread over a nook in the bushes for a tent to shelter their provisions; but they themselves would sleep in the open air in good weather, as became outlaws. They built a fire against the side of a great log twenty or thirty steps within the sombre depths of the forest, and then cooked some bacon in the frying-pan for supper, and used up half of the corn "pone" stock they had brought. It seemed glorious sport to be feasting in that wild, free way in the virgin forest of an unexplored and uninhabited island, far from the haunts of men, and they said they never would return to civilization. The climbing fire lit up their faces and threw its ruddy glare upon the pillared tree-trunks of their forest temple, and upon the varnished foliage and festooning vines. When the last crisp slice of bacon was gone, and the last allowance of corn pone devoured, the boys stretched themselves out on the grass, filled with contentment. They could have found a cooler place, but they would not deny themselves such a romantic feature as the roasting camp-fire. "AIN'T it gay?" said Joe. "It's NUTS!" said Tom. "What would the boys say if they could see us?" "Say? Well, they'd just die to be here--hey, Hucky!" "I reckon so," said Huckleberry; "anyways, I'm suited. I don't want nothing better'n this. I don't ever get enough to eat, gen'ally--and here they can't come and pick at a feller and bullyrag him so." "It's just the life for me," said Tom. "You don't have to get up, mornings, and you don't have to go to school, and wash, and all that blame foolishness. You see a pirate don't have to do ANYTHING, Joe, when he's ashore, but a hermit HE has to be praying considerable, and then he don't have any fun, anyway, all by himself that way." "Oh yes, that's so," said Joe, "but I hadn't thought much about it, you know. I'd a good deal rather be a pirate, now that I've tried it." "You see," said Tom, "people don't go much on hermits, nowadays, like they used to in old times, but a pirate's always respected. And a hermit's got to sleep on the hardest place he can find, and put sackcloth and ashes on his head, and stand out in the rain, and--" "What does he put sackcloth and ashes on his head for?" inquired Huck. "I dono. But they've GOT to do it. Hermits always do. You'd have to do that if you was a hermit." "Dern'd if I would," said Huck. "Well, what would you do?" "I dono. But I wouldn't do that." "Why, Huck, you'd HAVE to. How'd you get around it?" "Why, I just wouldn't stand it. I'd run away." "Run away! Well, you WOULD be a nice old slouch of a hermit. You'd be a disgrace." The Red-Handed made no response, being better employed. He had finished gouging out a cob, and now he fitted a weed stem to it, loaded it with tobacco, and was pressing a coal to the charge and blowing a cloud of fragrant smoke--he was in the full bloom of luxurious contentment. The other pirates envied him this majestic vice, and secretly resolved to acquire it shortly. Presently Huck said: "What does pirates have to do?" Tom said: "Oh, they have just a bully time--take ships and burn them, and get the money and bury it in awful places in their island where there's ghosts and things to watch it, and kill everybody in the ships--make 'em walk a plank." "And they carry the women to the island," said Joe; "they don't kill the women." "No," assented Tom, "they don't kill the women--they're too noble. And the women's always beautiful, too. "And don't they wear the bulliest clothes! Oh no! All gold and silver and di'monds," said Joe, with enthusiasm. "Who?" said Huck. "Why, the pirates." Huck scanned his own clothing forlornly. "I reckon I ain't dressed fitten for a pirate," said he, with a regretful pathos in his voice; "but I ain't got none but these." But the other boys told him the fine clothes would come fast enough, after they should have begun their adventures. They made him understand that his poor rags would do to begin with, though it was customary for wealthy pirates to start with a proper wardrobe. Gradually their talk died out and drowsiness began to steal upon the eyelids of the little waifs. The pipe dropped from the fingers of the Red-Handed, and he slept the sleep of the conscience-free and the weary. The Terror of the Seas and the Black Avenger of the Spanish Main had more difficulty in getting to sleep. They said their prayers inwardly, and lying down, since there was nobody there with authority to make them kneel and recite aloud; in truth, they had a mind not to say them at all, but they were afraid to proceed to such lengths as that, lest they might call down a sudden and special thunderbolt from heaven. Then at once they reached and hovered upon the imminent verge of sleep--but an intruder came, now, that would not "down." It was conscience. They began to feel a vague fear that they had been doing wrong to run away; and next they thought of the stolen meat, and then the real torture came. They tried to argue it away by reminding conscience that they had purloined sweetmeats and apples scores of times; but conscience was not to be appeased by such thin plausibilities; it seemed to them, in the end, that there was no getting around the stubborn fact that taking sweetmeats was only "hooking," while taking bacon and hams and such valuables was plain simple stealing--and there was a command against that in the Bible. So they inwardly resolved that so long as they remained in the business, their piracies should not again be sullied with the crime of stealing. Then conscience granted a truce, and these curiously inconsistent pirates fell peacefully to sleep. CHAPTER XIV WHEN Tom awoke in the morning, he wondered where he was. He sat up and rubbed his eyes and looked around. Then he comprehended. It was the cool gray dawn, and there was a delicious sense of repose and peace in the deep pervading calm and silence of the woods. Not a leaf stirred; not a sound obtruded upon great Nature's meditation. Beaded dewdrops stood upon the leaves and grasses. A white layer of ashes covered the fire, and a thin blue breath of smoke rose straight into the air. Joe and Huck still slept. Now, far away in the woods a bird called; another answered; presently the hammering of a woodpecker was heard. Gradually the cool dim gray of the morning whitened, and as gradually sounds multiplied and life manifested itself. The marvel of Nature shaking off sleep and going to work unfolded itself to the musing boy. A little green worm came crawling over a dewy leaf, lifting two-thirds of his body into the air from time to time and "sniffing around," then proceeding again--for he was measuring, Tom said; and when the worm approached him, of its own accord, he sat as still as a stone, with his hopes rising and falling, by turns, as the creature still came toward him or seemed inclined to go elsewhere; and when at last it considered a painful moment with its curved body in the air and then came decisively down upon Tom's leg and began a journey over him, his whole heart was glad--for that meant that he was going to have a new suit of clothes--without the shadow of a doubt a gaudy piratical uniform. Now a procession of ants appeared, from nowhere in particular, and went about their labors; one struggled manfully by with a dead spider five times as big as itself in its arms, and lugged it straight up a tree-trunk. A brown spotted lady-bug climbed the dizzy height of a grass blade, and Tom bent down close to it and said, "Lady-bug, lady-bug, fly away home, your house is on fire, your children's alone," and she took wing and went off to see about it --which did not surprise the boy, for he knew of old that this insect was credulous about conflagrations, and he had practised upon its simplicity more than once. A tumblebug came next, heaving sturdily at its ball, and Tom touched the creature, to see it shut its legs against its body and pretend to be dead. The birds were fairly rioting by this time. A catbird, the Northern mocker, lit in a tree over Tom's head, and trilled out her imitations of her neighbors in a rapture of enjoyment; then a shrill jay swept down, a flash of blue flame, and stopped on a twig almost within the boy's reach, cocked his head to one side and eyed the strangers with a consuming curiosity; a gray squirrel and a big fellow of the "fox" kind came skurrying along, sitting up at intervals to inspect and chatter at the boys, for the wild things had probably never seen a human being before and scarcely knew whether to be afraid or not. All Nature was wide awake and stirring, now; long lances of sunlight pierced down through the dense foliage far and near, and a few butterflies came fluttering upon the scene. Tom stirred up the other pirates and they all clattered away with a shout, and in a minute or two were stripped and chasing after and tumbling over each other in the shallow limpid water of the white sandbar. They felt no longing for the little village sleeping in the distance beyond the majestic waste of water. A vagrant current or a slight rise in the river had carried off their raft, but this only gratified them, since its going was something like burning the bridge between them and civilization. They came back to camp wonderfully refreshed, glad-hearted, and ravenous; and they soon had the camp-fire blazing up again. Huck found a spring of clear cold water close by, and the boys made cups of broad oak or hickory leaves, and felt that water, sweetened with such a wildwood charm as that, would be a good enough substitute for coffee. While Joe was slicing bacon for breakfast, Tom and Huck asked him to hold on a minute; they stepped to a promising nook in the river-bank and threw in their lines; almost immediately they had reward. Joe had not had time to get impatient before they were back again with some handsome bass, a couple of sun-perch and a small catfish--provisions enough for quite a family. They fried the fish with the bacon, and were astonished; for no fish had ever seemed so delicious before. They did not know that the quicker a fresh-water fish is on the fire after he is caught the better he is; and they reflected little upon what a sauce open-air sleeping, open-air exercise, bathing, and a large ingredient of hunger make, too. They lay around in the shade, after breakfast, while Huck had a smoke, and then went off through the woods on an exploring expedition. They tramped gayly along, over decaying logs, through tangled underbrush, among solemn monarchs of the forest, hung from their crowns to the ground with a drooping regalia of grape-vines. Now and then they came upon snug nooks carpeted with grass and jeweled with flowers. They found plenty of things to be delighted with, but nothing to be astonished at. They discovered that the island was about three miles long and a quarter of a mile wide, and that the shore it lay closest to was only separated from it by a narrow channel hardly two hundred yards wide. They took a swim about every hour, so it was close upon the middle of the afternoon when they got back to camp. They were too hungry to stop to fish, but they fared sumptuously upon cold ham, and then threw themselves down in the shade to talk. But the talk soon began to drag, and then died. The stillness, the solemnity that brooded in the woods, and the sense of loneliness, began to tell upon the spirits of the boys. They fell to thinking. A sort of undefined longing crept upon them. This took dim shape, presently--it was budding homesickness. Even Finn the Red-Handed was dreaming of his doorsteps and empty hogsheads. But they were all ashamed of their weakness, and none was brave enough to speak his thought. For some time, now, the boys had been dully conscious of a peculiar sound in the distance, just as one sometimes is of the ticking of a clock which he takes no distinct note of. But now this mysterious sound became more pronounced, and forced a recognition. The boys started, glanced at each other, and then each assumed a listening attitude. There was a long silence, profound and unbroken; then a deep, sullen boom came floating down out of the distance. "What is it!" exclaimed Joe, under his breath. "I wonder," said Tom in a whisper. "'Tain't thunder," said Huckleberry, in an awed tone, "becuz thunder--" "Hark!" said Tom. "Listen--don't talk." They waited a time that seemed an age, and then the same muffled boom troubled the solemn hush. "Let's go and see." They sprang to their feet and hurried to the shore toward the town. They parted the bushes on the bank and peered out over the water. The little steam ferryboat was about a mile below the village, drifting with the current. Her broad deck seemed crowded with people. There were a great many skiffs rowing about or floating with the stream in the neighborhood of the ferryboat, but the boys could not determine what the men in them were doing. Presently a great jet of white smoke burst from the ferryboat's side, and as it expanded and rose in a lazy cloud, that same dull throb of sound was borne to the listeners again. "I know now!" exclaimed Tom; "somebody's drownded!" "That's it!" said Huck; "they done that last summer, when Bill Turner got drownded; they shoot a cannon over the water, and that makes him come up to the top. Yes, and they take loaves of bread and put quicksilver in 'em and set 'em afloat, and wherever there's anybody that's drownded, they'll float right there and stop." "Yes, I've heard about that," said Joe. "I wonder what makes the bread do that." "Oh, it ain't the bread, so much," said Tom; "I reckon it's mostly what they SAY over it before they start it out." "But they don't say anything over it," said Huck. "I've seen 'em and they don't." "Well, that's funny," said Tom. "But maybe they say it to themselves. Of COURSE they do. Anybody might know that." The other boys agreed that there was reason in what Tom said, because an ignorant lump of bread, uninstructed by an incantation, could not be expected to act very intelligently when set upon an errand of such gravity. "By jings, I wish I was over there, now," said Joe. "I do too" said Huck "I'd give heaps to know who it is." The boys still listened and watched. Presently a revealing thought flashed through Tom's mind, and he exclaimed: "Boys, I know who's drownded--it's us!" They felt like heroes in an instant. Here was a gorgeous triumph; they were missed; they were mourned; hearts were breaking on their account; tears were being shed; accusing memories of unkindness to these poor lost lads were rising up, and unavailing regrets and remorse were being indulged; and best of all, the departed were the talk of the whole town, and the envy of all the boys, as far as this dazzling notoriety was concerned. This was fine. It was worth while to be a pirate, after all. As twilight drew on, the ferryboat went back to her accustomed business and the skiffs disappeared. The pirates returned to camp. They were jubilant with vanity over their new grandeur and the illustrious trouble they were making. They caught fish, cooked supper and ate it, and then fell to guessing at what the village was thinking and saying about them; and the pictures they drew of the public distress on their account were gratifying to look upon--from their point of view. But when the shadows of night closed them in, they gradually ceased to talk, and sat gazing into the fire, with their minds evidently wandering elsewhere. The excitement was gone, now, and Tom and Joe could not keep back thoughts of certain persons at home who were not enjoying this fine frolic as much as they were. Misgivings came; they grew troubled and unhappy; a sigh or two escaped, unawares. By and by Joe timidly ventured upon a roundabout "feeler" as to how the others might look upon a return to civilization--not right now, but-- Tom withered him with derision! Huck, being uncommitted as yet, joined in with Tom, and the waverer quickly "explained," and was glad to get out of the scrape with as little taint of chicken-hearted homesickness clinging to his garments as he could. Mutiny was effectually laid to rest for the moment. As the night deepened, Huck began to nod, and presently to snore. Joe followed next. Tom lay upon his elbow motionless, for some time, watching the two intently. At last he got up cautiously, on his knees, and went searching among the grass and the flickering reflections flung by the camp-fire. He picked up and inspected several large semi-cylinders of the thin white bark of a sycamore, and finally chose two which seemed to suit him. Then he knelt by the fire and painfully wrote something upon each of these with his "red keel"; one he rolled up and put in his jacket pocket, and the other he put in Joe's hat and removed it to a little distance from the owner. And he also put into the hat certain schoolboy treasures of almost inestimable value--among them a lump of chalk, an India-rubber ball, three fishhooks, and one of that kind of marbles known as a "sure 'nough crystal." Then he tiptoed his way cautiously among the trees till he felt that he was out of hearing, and straightway broke into a keen run in the direction of the sandbar. CHAPTER XV A FEW minutes later Tom was in the shoal water of the bar, wading toward the Illinois shore. Before the depth reached his middle he was half-way over; the current would permit no more wading, now, so he struck out confidently to swim the remaining hundred yards. He swam quartering upstream, but still was swept downward rather faster than he had expected. However, he reached the shore finally, and drifted along till he found a low place and drew himself out. He put his hand on his jacket pocket, found his piece of bark safe, and then struck through the woods, following the shore, with streaming garments. Shortly before ten o'clock he came out into an open place opposite the village, and saw the ferryboat lying in the shadow of the trees and the high bank. Everything was quiet under the blinking stars. He crept down the bank, watching with all his eyes, slipped into the water, swam three or four strokes and climbed into the skiff that did "yawl" duty at the boat's stern. He laid himself down under the thwarts and waited, panting. Presently the cracked bell tapped and a voice gave the order to "cast off." A minute or two later the skiff's head was standing high up, against the boat's swell, and the voyage was begun. Tom felt happy in his success, for he knew it was the boat's last trip for the night. At the end of a long twelve or fifteen minutes the wheels stopped, and Tom slipped overboard and swam ashore in the dusk, landing fifty yards downstream, out of danger of possible stragglers. He flew along unfrequented alleys, and shortly found himself at his aunt's back fence. He climbed over, approached the "ell," and looked in at the sitting-room window, for a light was burning there. There sat Aunt Polly, Sid, Mary, and Joe Harper's mother, grouped together, talking. They were by the bed, and the bed was between them and the door. Tom went to the door and began to softly lift the latch; then he pressed gently and the door yielded a crack; he continued pushing cautiously, and quaking every time it creaked, till he judged he might squeeze through on his knees; so he put his head through and began, warily. "What makes the candle blow so?" said Aunt Polly. Tom hurried up. "Why, that door's open, I believe. Why, of course it is. No end of strange things now. Go 'long and shut it, Sid." Tom disappeared under the bed just in time. He lay and "breathed" himself for a time, and then crept to where he could almost touch his aunt's foot. "But as I was saying," said Aunt Polly, "he warn't BAD, so to say --only mischEEvous. Only just giddy, and harum-scarum, you know. He warn't any more responsible than a colt. HE never meant any harm, and he was the best-hearted boy that ever was"--and she began to cry. "It was just so with my Joe--always full of his devilment, and up to every kind of mischief, but he was just as unselfish and kind as he could be--and laws bless me, to think I went and whipped him for taking that cream, never once recollecting that I throwed it out myself because it was sour, and I never to see him again in this world, never, never, never, poor abused boy!" And Mrs. Harper sobbed as if her heart would break. "I hope Tom's better off where he is," said Sid, "but if he'd been better in some ways--" "SID!" Tom felt the glare of the old lady's eye, though he could not see it. "Not a word against my Tom, now that he's gone! God'll take care of HIM--never you trouble YOURself, sir! Oh, Mrs. Harper, I don't know how to give him up! I don't know how to give him up! He was such a comfort to me, although he tormented my old heart out of me, 'most." "The Lord giveth and the Lord hath taken away--Blessed be the name of the Lord! But it's so hard--Oh, it's so hard! Only last Saturday my Joe busted a firecracker right under my nose and I knocked him sprawling. Little did I know then, how soon--Oh, if it was to do over again I'd hug him and bless him for it." "Yes, yes, yes, I know just how you feel, Mrs. Harper, I know just exactly how you feel. No longer ago than yesterday noon, my Tom took and filled the cat full of Pain-killer, and I did think the cretur would tear the house down. And God forgive me, I cracked Tom's head with my thimble, poor boy, poor dead boy. But he's out of all his troubles now. And the last words I ever heard him say was to reproach--" But this memory was too much for the old lady, and she broke entirely down. Tom was snuffling, now, himself--and more in pity of himself than anybody else. He could hear Mary crying, and putting in a kindly word for him from time to time. He began to have a nobler opinion of himself than ever before. Still, he was sufficiently touched by his aunt's grief to long to rush out from under the bed and overwhelm her with joy--and the theatrical gorgeousness of the thing appealed strongly to his nature, too, but he resisted and lay still. He went on listening, and gathered by odds and ends that it was conjectured at first that the boys had got drowned while taking a swim; then the small raft had been missed; next, certain boys said the missing lads had promised that the village should "hear something" soon; the wise-heads had "put this and that together" and decided that the lads had gone off on that raft and would turn up at the next town below, presently; but toward noon the raft had been found, lodged against the Missouri shore some five or six miles below the village --and then hope perished; they must be drowned, else hunger would have driven them home by nightfall if not sooner. It was believed that the search for the bodies had been a fruitless effort merely because the drowning must have occurred in mid-channel, since the boys, being good swimmers, would otherwise have escaped to shore. This was Wednesday night. If the bodies continued missing until Sunday, all hope would be given over, and the funerals would be preached on that morning. Tom shuddered. Mrs. Harper gave a sobbing good-night and turned to go. Then with a mutual impulse the two bereaved women flung themselves into each other's arms and had a good, consoling cry, and then parted. Aunt Polly was tender far beyond her wont, in her good-night to Sid and Mary. Sid snuffled a bit and Mary went off crying with all her heart. Aunt Polly knelt down and prayed for Tom so touchingly, so appealingly, and with such measureless love in her words and her old trembling voice, that he was weltering in tears again, long before she was through. He had to keep still long after she went to bed, for she kept making broken-hearted ejaculations from time to time, tossing unrestfully, and turning over. But at last she was still, only moaning a little in her sleep. Now the boy stole out, rose gradually by the bedside, shaded the candle-light with his hand, and stood regarding her. His heart was full of pity for her. He took out his sycamore scroll and placed it by the candle. But something occurred to him, and he lingered considering. His face lighted with a happy solution of his thought; he put the bark hastily in his pocket. Then he bent over and kissed the faded lips, and straightway made his stealthy exit, latching the door behind him. He threaded his way back to the ferry landing, found nobody at large there, and walked boldly on board the boat, for he knew she was tenantless except that there was a watchman, who always turned in and slept like a graven image. He untied the skiff at the stern, slipped into it, and was soon rowing cautiously upstream. When he had pulled a mile above the village, he started quartering across and bent himself stoutly to his work. He hit the landing on the other side neatly, for this was a familiar bit of work to him. He was moved to capture the skiff, arguing that it might be considered a ship and therefore legitimate prey for a pirate, but he knew a thorough search would be made for it and that might end in revelations. So he stepped ashore and entered the woods. He sat down and took a long rest, torturing himself meanwhile to keep awake, and then started warily down the home-stretch. The night was far spent. It was broad daylight before he found himself fairly abreast the island bar. He rested again until the sun was well up and gilding the great river with its splendor, and then he plunged into the stream. A little later he paused, dripping, upon the threshold of the camp, and heard Joe say: "No, Tom's true-blue, Huck, and he'll come back. He won't desert. He knows that would be a disgrace to a pirate, and Tom's too proud for that sort of thing. He's up to something or other. Now I wonder what?" "Well, the things is ours, anyway, ain't they?" "Pretty near, but not yet, Huck. The writing says they are if he ain't back here to breakfast." "Which he is!" exclaimed Tom, with fine dramatic effect, stepping grandly into camp. A sumptuous breakfast of bacon and fish was shortly provided, and as the boys set to work upon it, Tom recounted (and adorned) his adventures. They were a vain and boastful company of heroes when the tale was done. Then Tom hid himself away in a shady nook to sleep till noon, and the other pirates got ready to fish and explore. CHAPTER XVI AFTER dinner all the gang turned out to hunt for turtle eggs on the bar. They went about poking sticks into the sand, and when they found a soft place they went down on their knees and dug with their hands. Sometimes they would take fifty or sixty eggs out of one hole. They were perfectly round white things a trifle smaller than an English walnut. They had a famous fried-egg feast that night, and another on Friday morning. After breakfast they went whooping and prancing out on the bar, and chased each other round and round, shedding clothes as they went, until they were naked, and then continued the frolic far away up the shoal water of the bar, against the stiff current, which latter tripped their legs from under them from time to time and greatly increased the fun. And now and then they stooped in a group and splashed water in each other's faces with their palms, gradually approaching each other, with averted faces to avoid the strangling sprays, and finally gripping and struggling till the best man ducked his neighbor, and then they all went under in a tangle of white legs and arms and came up blowing, sputtering, laughing, and gasping for breath at one and the same time. When they were well exhausted, they would run out and sprawl on the dry, hot sand, and lie there and cover themselves up with it, and by and by break for the water again and go through the original performance once more. Finally it occurred to them that their naked skin represented flesh-colored "tights" very fairly; so they drew a ring in the sand and had a circus--with three clowns in it, for none would yield this proudest post to his neighbor. Next they got their marbles and played "knucks" and "ring-taw" and "keeps" till that amusement grew stale. Then Joe and Huck had another swim, but Tom would not venture, because he found that in kicking off his trousers he had kicked his string of rattlesnake rattles off his ankle, and he wondered how he had escaped cramp so long without the protection of this mysterious charm. He did not venture again until he had found it, and by that time the other boys were tired and ready to rest. They gradually wandered apart, dropped into the "dumps," and fell to gazing longingly across the wide river to where the village lay drowsing in the sun. Tom found himself writing "BECKY" in the sand with his big toe; he scratched it out, and was angry with himself for his weakness. But he wrote it again, nevertheless; he could not help it. He erased it once more and then took himself out of temptation by driving the other boys together and joining them. But Joe's spirits had gone down almost beyond resurrection. He was so homesick that he could hardly endure the misery of it. The tears lay very near the surface. Huck was melancholy, too. Tom was downhearted, but tried hard not to show it. He had a secret which he was not ready to tell, yet, but if this mutinous depression was not broken up soon, he would have to bring it out. He said, with a great show of cheerfulness: "I bet there's been pirates on this island before, boys. We'll explore it again. They've hid treasures here somewhere. How'd you feel to light on a rotten chest full of gold and silver--hey?" But it roused only faint enthusiasm, which faded out, with no reply. Tom tried one or two other seductions; but they failed, too. It was discouraging work. Joe sat poking up the sand with a stick and looking very gloomy. Finally he said: "Oh, boys, let's give it up. I want to go home. It's so lonesome." "Oh no, Joe, you'll feel better by and by," said Tom. "Just think of the fishing that's here." "I don't care for fishing. I want to go home." "But, Joe, there ain't such another swimming-place anywhere." "Swimming's no good. I don't seem to care for it, somehow, when there ain't anybody to say I sha'n't go in. I mean to go home." "Oh, shucks! Baby! You want to see your mother, I reckon." "Yes, I DO want to see my mother--and you would, too, if you had one. I ain't any more baby than you are." And Joe snuffled a little. "Well, we'll let the cry-baby go home to his mother, won't we, Huck? Poor thing--does it want to see its mother? And so it shall. You like it here, don't you, Huck? We'll stay, won't we?" Huck said, "Y-e-s"--without any heart in it. "I'll never speak to you again as long as I live," said Joe, rising. "There now!" And he moved moodily away and began to dress himself. "Who cares!" said Tom. "Nobody wants you to. Go 'long home and get laughed at. Oh, you're a nice pirate. Huck and me ain't cry-babies. We'll stay, won't we, Huck? Let him go if he wants to. I reckon we can get along without him, per'aps." But Tom was uneasy, nevertheless, and was alarmed to see Joe go sullenly on with his dressing. And then it was discomforting to see Huck eying Joe's preparations so wistfully, and keeping up such an ominous silence. Presently, without a parting word, Joe began to wade off toward the Illinois shore. Tom's heart began to sink. He glanced at Huck. Huck could not bear the look, and dropped his eyes. Then he said: "I want to go, too, Tom. It was getting so lonesome anyway, and now it'll be worse. Let's us go, too, Tom." "I won't! You can all go, if you want to. I mean to stay." "Tom, I better go." "Well, go 'long--who's hendering you." Huck began to pick up his scattered clothes. He said: "Tom, I wisht you'd come, too. Now you think it over. We'll wait for you when we get to shore." "Well, you'll wait a blame long time, that's all." Huck started sorrowfully away, and Tom stood looking after him, with a strong desire tugging at his heart to yield his pride and go along too. He hoped the boys would stop, but they still waded slowly on. It suddenly dawned on Tom that it was become very lonely and still. He made one final struggle with his pride, and then darted after his comrades, yelling: "Wait! Wait! I want to tell you something!" They presently stopped and turned around. When he got to where they were, he began unfolding his secret, and they listened moodily till at last they saw the "point" he was driving at, and then they set up a war-whoop of applause and said it was "splendid!" and said if he had told them at first, they wouldn't have started away. He made a plausible excuse; but his real reason had been the fear that not even the secret would keep them with him any very great length of time, and so he had meant to hold it in reserve as a last seduction. The lads came gayly back and went at their sports again with a will, chattering all the time about Tom's stupendous plan and admiring the genius of it. After a dainty egg and fish dinner, Tom said he wanted to learn to smoke, now. Joe caught at the idea and said he would like to try, too. So Huck made pipes and filled them. These novices had never smoked anything before but cigars made of grape-vine, and they "bit" the tongue, and were not considered manly anyway. Now they stretched themselves out on their elbows and began to puff, charily, and with slender confidence. The smoke had an unpleasant taste, and they gagged a little, but Tom said: "Why, it's just as easy! If I'd a knowed this was all, I'd a learnt long ago." "So would I," said Joe. "It's just nothing." "Why, many a time I've looked at people smoking, and thought well I wish I could do that; but I never thought I could," said Tom. "That's just the way with me, hain't it, Huck? You've heard me talk just that way--haven't you, Huck? I'll leave it to Huck if I haven't." "Yes--heaps of times," said Huck. "Well, I have too," said Tom; "oh, hundreds of times. Once down by the slaughter-house. Don't you remember, Huck? Bob Tanner was there, and Johnny Miller, and Jeff Thatcher, when I said it. Don't you remember, Huck, 'bout me saying that?" "Yes, that's so," said Huck. "That was the day after I lost a white alley. No, 'twas the day before." "There--I told you so," said Tom. "Huck recollects it." "I bleeve I could smoke this pipe all day," said Joe. "I don't feel sick." "Neither do I," said Tom. "I could smoke it all day. But I bet you Jeff Thatcher couldn't." "Jeff Thatcher! Why, he'd keel over just with two draws. Just let him try it once. HE'D see!" "I bet he would. And Johnny Miller--I wish could see Johnny Miller tackle it once." "Oh, don't I!" said Joe. "Why, I bet you Johnny Miller couldn't any more do this than nothing. Just one little snifter would fetch HIM." "'Deed it would, Joe. Say--I wish the boys could see us now." "So do I." "Say--boys, don't say anything about it, and some time when they're around, I'll come up to you and say, 'Joe, got a pipe? I want a smoke.' And you'll say, kind of careless like, as if it warn't anything, you'll say, 'Yes, I got my OLD pipe, and another one, but my tobacker ain't very good.' And I'll say, 'Oh, that's all right, if it's STRONG enough.' And then you'll out with the pipes, and we'll light up just as ca'm, and then just see 'em look!" "By jings, that'll be gay, Tom! I wish it was NOW!" "So do I! And when we tell 'em we learned when we was off pirating, won't they wish they'd been along?" "Oh, I reckon not! I'll just BET they will!" So the talk ran on. But presently it began to flag a trifle, and grow disjointed. The silences widened; the expectoration marvellously increased. Every pore inside the boys' cheeks became a spouting fountain; they could scarcely bail out the cellars under their tongues fast enough to prevent an inundation; little overflowings down their throats occurred in spite of all they could do, and sudden retchings followed every time. Both boys were looking very pale and miserable, now. Joe's pipe dropped from his nerveless fingers. Tom's followed. Both fountains were going furiously and both pumps bailing with might and main. Joe said feebly: "I've lost my knife. I reckon I better go and find it." Tom said, with quivering lips and halting utterance: "I'll help you. You go over that way and I'll hunt around by the spring. No, you needn't come, Huck--we can find it." So Huck sat down again, and waited an hour. Then he found it lonesome, and went to find his comrades. They were wide apart in the woods, both very pale, both fast asleep. But something informed him that if they had had any trouble they had got rid of it. They were not talkative at supper that night. They had a humble look, and when Huck prepared his pipe after the meal and was going to prepare theirs, they said no, they were not feeling very well--something they ate at dinner had disagreed with them. About midnight Joe awoke, and called the boys. There was a brooding oppressiveness in the air that seemed to bode something. The boys huddled themselves together and sought the friendly companionship of the fire, though the dull dead heat of the breathless atmosphere was stifling. They sat still, intent and waiting. The solemn hush continued. Beyond the light of the fire everything was swallowed up in the blackness of darkness. Presently there came a quivering glow that vaguely revealed the foliage for a moment and then vanished. By and by another came, a little stronger. Then another. Then a faint moan came sighing through the branches of the forest and the boys felt a fleeting breath upon their cheeks, and shuddered with the fancy that the Spirit of the Night had gone by. There was a pause. Now a weird flash turned night into day and showed every little grass-blade, separate and distinct, that grew about their feet. And it showed three white, startled faces, too. A deep peal of thunder went rolling and tumbling down the heavens and lost itself in sullen rumblings in the distance. A sweep of chilly air passed by, rustling all the leaves and snowing the flaky ashes broadcast about the fire. Another fierce glare lit up the forest and an instant crash followed that seemed to rend the tree-tops right over the boys' heads. They clung together in terror, in the thick gloom that followed. A few big rain-drops fell pattering upon the leaves. "Quick! boys, go for the tent!" exclaimed Tom. They sprang away, stumbling over roots and among vines in the dark, no two plunging in the same direction. A furious blast roared through the trees, making everything sing as it went. One blinding flash after another came, and peal on peal of deafening thunder. And now a drenching rain poured down and the rising hurricane drove it in sheets along the ground. The boys cried out to each other, but the roaring wind and the booming thunder-blasts drowned their voices utterly. However, one by one they straggled in at last and took shelter under the tent, cold, scared, and streaming with water; but to have company in misery seemed something to be grateful for. They could not talk, the old sail flapped so furiously, even if the other noises would have allowed them. The tempest rose higher and higher, and presently the sail tore loose from its fastenings and went winging away on the blast. The boys seized each others' hands and fled, with many tumblings and bruises, to the shelter of a great oak that stood upon the river-bank. Now the battle was at its highest. Under the ceaseless conflagration of lightning that flamed in the skies, everything below stood out in clean-cut and shadowless distinctness: the bending trees, the billowy river, white with foam, the driving spray of spume-flakes, the dim outlines of the high bluffs on the other side, glimpsed through the drifting cloud-rack and the slanting veil of rain. Every little while some giant tree yielded the fight and fell crashing through the younger growth; and the unflagging thunder-peals came now in ear-splitting explosive bursts, keen and sharp, and unspeakably appalling. The storm culminated in one matchless effort that seemed likely to tear the island to pieces, burn it up, drown it to the tree-tops, blow it away, and deafen every creature in it, all at one and the same moment. It was a wild night for homeless young heads to be out in. But at last the battle was done, and the forces retired with weaker and weaker threatenings and grumblings, and peace resumed her sway. The boys went back to camp, a good deal awed; but they found there was still something to be thankful for, because the great sycamore, the shelter of their beds, was a ruin, now, blasted by the lightnings, and they were not under it when the catastrophe happened. Everything in camp was drenched, the camp-fire as well; for they were but heedless lads, like their generation, and had made no provision against rain. Here was matter for dismay, for they were soaked through and chilled. They were eloquent in their distress; but they presently discovered that the fire had eaten so far up under the great log it had been built against (where it curved upward and separated itself from the ground), that a handbreadth or so of it had escaped wetting; so they patiently wrought until, with shreds and bark gathered from the under sides of sheltered logs, they coaxed the fire to burn again. Then they piled on great dead boughs till they had a roaring furnace, and were glad-hearted once more. They dried their boiled ham and had a feast, and after that they sat by the fire and expanded and glorified their midnight adventure until morning, for there was not a dry spot to sleep on, anywhere around. As the sun began to steal in upon the boys, drowsiness came over them, and they went out on the sandbar and lay down to sleep. They got scorched out by and by, and drearily set about getting breakfast. After the meal they felt rusty, and stiff-jointed, and a little homesick once more. Tom saw the signs, and fell to cheering up the pirates as well as he could. But they cared nothing for marbles, or circus, or swimming, or anything. He reminded them of the imposing secret, and raised a ray of cheer. While it lasted, he got them interested in a new device. This was to knock off being pirates, for a while, and be Indians for a change. They were attracted by this idea; so it was not long before they were stripped, and striped from head to heel with black mud, like so many zebras--all of them chiefs, of course--and then they went tearing through the woods to attack an English settlement. By and by they separated into three hostile tribes, and darted upon each other from ambush with dreadful war-whoops, and killed and scalped each other by thousands. It was a gory day. Consequently it was an extremely satisfactory one. They assembled in camp toward supper-time, hungry and happy; but now a difficulty arose--hostile Indians could not break the bread of hospitality together without first making peace, and this was a simple impossibility without smoking a pipe of peace. There was no other process that ever they had heard of. Two of the savages almost wished they had remained pirates. However, there was no other way; so with such show of cheerfulness as they could muster they called for the pipe and took their whiff as it passed, in due form. And behold, they were glad they had gone into savagery, for they had gained something; they found that they could now smoke a little without having to go and hunt for a lost knife; they did not get sick enough to be seriously uncomfortable. They were not likely to fool away this high promise for lack of effort. No, they practised cautiously, after supper, with right fair success, and so they spent a jubilant evening. They were prouder and happier in their new acquirement than they would have been in the scalping and skinning of the Six Nations. We will leave them to smoke and chatter and brag, since we have no further use for them at present. CHAPTER XVII BUT there was no hilarity in the little town that same tranquil Saturday afternoon. The Harpers, and Aunt Polly's family, were being put into mourning, with great grief and many tears. An unusual quiet possessed the village, although it was ordinarily quiet enough, in all conscience. The villagers conducted their concerns with an absent air, and talked little; but they sighed often. The Saturday holiday seemed a burden to the children. They had no heart in their sports, and gradually gave them up. In the afternoon Becky Thatcher found herself moping about the deserted schoolhouse yard, and feeling very melancholy. But she found nothing there to comfort her. She soliloquized: "Oh, if I only had a brass andiron-knob again! But I haven't got anything now to remember him by." And she choked back a little sob. Presently she stopped, and said to herself: "It was right here. Oh, if it was to do over again, I wouldn't say that--I wouldn't say it for the whole world. But he's gone now; I'll never, never, never see him any more." This thought broke her down, and she wandered away, with tears rolling down her cheeks. Then quite a group of boys and girls--playmates of Tom's and Joe's--came by, and stood looking over the paling fence and talking in reverent tones of how Tom did so-and-so the last time they saw him, and how Joe said this and that small trifle (pregnant with awful prophecy, as they could easily see now!)--and each speaker pointed out the exact spot where the lost lads stood at the time, and then added something like "and I was a-standing just so--just as I am now, and as if you was him--I was as close as that--and he smiled, just this way--and then something seemed to go all over me, like--awful, you know--and I never thought what it meant, of course, but I can see now!" Then there was a dispute about who saw the dead boys last in life, and many claimed that dismal distinction, and offered evidences, more or less tampered with by the witness; and when it was ultimately decided who DID see the departed last, and exchanged the last words with them, the lucky parties took upon themselves a sort of sacred importance, and were gaped at and envied by all the rest. One poor chap, who had no other grandeur to offer, said with tolerably manifest pride in the remembrance: "Well, Tom Sawyer he licked me once." But that bid for glory was a failure. Most of the boys could say that, and so that cheapened the distinction too much. The group loitered away, still recalling memories of the lost heroes, in awed voices. When the Sunday-school hour was finished, the next morning, the bell began to toll, instead of ringing in the usual way. It was a very still Sabbath, and the mournful sound seemed in keeping with the musing hush that lay upon nature. The villagers began to gather, loitering a moment in the vestibule to converse in whispers about the sad event. But there was no whispering in the house; only the funereal rustling of dresses as the women gathered to their seats disturbed the silence there. None could remember when the little church had been so full before. There was finally a waiting pause, an expectant dumbness, and then Aunt Polly entered, followed by Sid and Mary, and they by the Harper family, all in deep black, and the whole congregation, the old minister as well, rose reverently and stood until the mourners were seated in the front pew. There was another communing silence, broken at intervals by muffled sobs, and then the minister spread his hands abroad and prayed. A moving hymn was sung, and the text followed: "I am the Resurrection and the Life." As the service proceeded, the clergyman drew such pictures of the graces, the winning ways, and the rare promise of the lost lads that every soul there, thinking he recognized these pictures, felt a pang in remembering that he had persistently blinded himself to them always before, and had as persistently seen only faults and flaws in the poor boys. The minister related many a touching incident in the lives of the departed, too, which illustrated their sweet, generous natures, and the people could easily see, now, how noble and beautiful those episodes were, and remembered with grief that at the time they occurred they had seemed rank rascalities, well deserving of the cowhide. The congregation became more and more moved, as the pathetic tale went on, till at last the whole company broke down and joined the weeping mourners in a chorus of anguished sobs, the preacher himself giving way to his feelings, and crying in the pulpit. There was a rustle in the gallery, which nobody noticed; a moment later the church door creaked; the minister raised his streaming eyes above his handkerchief, and stood transfixed! First one and then another pair of eyes followed the minister's, and then almost with one impulse the congregation rose and stared while the three dead boys came marching up the aisle, Tom in the lead, Joe next, and Huck, a ruin of drooping rags, sneaking sheepishly in the rear! They had been hid in the unused gallery listening to their own funeral sermon! Aunt Polly, Mary, and the Harpers threw themselves upon their restored ones, smothered them with kisses and poured out thanksgivings, while poor Huck stood abashed and uncomfortable, not knowing exactly what to do or where to hide from so many unwelcoming eyes. He wavered, and started to slink away, but Tom seized him and said: "Aunt Polly, it ain't fair. Somebody's got to be glad to see Huck." "And so they shall. I'm glad to see him, poor motherless thing!" And the loving attentions Aunt Polly lavished upon him were the one thing capable of making him more uncomfortable than he was before. Suddenly the minister shouted at the top of his voice: "Praise God from whom all blessings flow--SING!--and put your hearts in it!" And they did. Old Hundred swelled up with a triumphant burst, and while it shook the rafters Tom Sawyer the Pirate looked around upon the envying juveniles about him and confessed in his heart that this was the proudest moment of his life. As the "sold" congregation trooped out they said they would almost be willing to be made ridiculous again to hear Old Hundred sung like that once more. Tom got more cuffs and kisses that day--according to Aunt Polly's varying moods--than he had earned before in a year; and he hardly knew which expressed the most gratefulness to God and affection for himself. CHAPTER XVIII THAT was Tom's great secret--the scheme to return home with his brother pirates and attend their own funerals. They had paddled over to the Missouri shore on a log, at dusk on Saturday, landing five or six miles below the village; they had slept in the woods at the edge of the town till nearly daylight, and had then crept through back lanes and alleys and finished their sleep in the gallery of the church among a chaos of invalided benches. At breakfast, Monday morning, Aunt Polly and Mary were very loving to Tom, and very attentive to his wants. There was an unusual amount of talk. In the course of it Aunt Polly said: "Well, I don't say it wasn't a fine joke, Tom, to keep everybody suffering 'most a week so you boys had a good time, but it is a pity you could be so hard-hearted as to let me suffer so. If you could come over on a log to go to your funeral, you could have come over and give me a hint some way that you warn't dead, but only run off." "Yes, you could have done that, Tom," said Mary; "and I believe you would if you had thought of it." "Would you, Tom?" said Aunt Polly, her face lighting wistfully. "Say, now, would you, if you'd thought of it?" "I--well, I don't know. 'Twould 'a' spoiled everything." "Tom, I hoped you loved me that much," said Aunt Polly, with a grieved tone that discomforted the boy. "It would have been something if you'd cared enough to THINK of it, even if you didn't DO it." "Now, auntie, that ain't any harm," pleaded Mary; "it's only Tom's giddy way--he is always in such a rush that he never thinks of anything." "More's the pity. Sid would have thought. And Sid would have come and DONE it, too. Tom, you'll look back, some day, when it's too late, and wish you'd cared a little more for me when it would have cost you so little." "Now, auntie, you know I do care for you," said Tom. "I'd know it better if you acted more like it." "I wish now I'd thought," said Tom, with a repentant tone; "but I dreamt about you, anyway. That's something, ain't it?" "It ain't much--a cat does that much--but it's better than nothing. What did you dream?" "Why, Wednesday night I dreamt that you was sitting over there by the bed, and Sid was sitting by the woodbox, and Mary next to him." "Well, so we did. So we always do. I'm glad your dreams could take even that much trouble about us." "And I dreamt that Joe Harper's mother was here." "Why, she was here! Did you dream any more?" "Oh, lots. But it's so dim, now." "Well, try to recollect--can't you?" "Somehow it seems to me that the wind--the wind blowed the--the--" "Try harder, Tom! The wind did blow something. Come!" Tom pressed his fingers on his forehead an anxious minute, and then said: "I've got it now! I've got it now! It blowed the candle!" "Mercy on us! Go on, Tom--go on!" "And it seems to me that you said, 'Why, I believe that that door--'" "Go ON, Tom!" "Just let me study a moment--just a moment. Oh, yes--you said you believed the door was open." "As I'm sitting here, I did! Didn't I, Mary! Go on!" "And then--and then--well I won't be certain, but it seems like as if you made Sid go and--and--" "Well? Well? What did I make him do, Tom? What did I make him do?" "You made him--you--Oh, you made him shut it." "Well, for the land's sake! I never heard the beat of that in all my days! Don't tell ME there ain't anything in dreams, any more. Sereny Harper shall know of this before I'm an hour older. I'd like to see her get around THIS with her rubbage 'bout superstition. Go on, Tom!" "Oh, it's all getting just as bright as day, now. Next you said I warn't BAD, only mischeevous and harum-scarum, and not any more responsible than--than--I think it was a colt, or something." "And so it was! Well, goodness gracious! Go on, Tom!" "And then you began to cry." "So I did. So I did. Not the first time, neither. And then--" "Then Mrs. Harper she began to cry, and said Joe was just the same, and she wished she hadn't whipped him for taking cream when she'd throwed it out her own self--" "Tom! The sperrit was upon you! You was a prophesying--that's what you was doing! Land alive, go on, Tom!" "Then Sid he said--he said--" "I don't think I said anything," said Sid. "Yes you did, Sid," said Mary. "Shut your heads and let Tom go on! What did he say, Tom?" "He said--I THINK he said he hoped I was better off where I was gone to, but if I'd been better sometimes--" "THERE, d'you hear that! It was his very words!" "And you shut him up sharp." "I lay I did! There must 'a' been an angel there. There WAS an angel there, somewheres!" "And Mrs. Harper told about Joe scaring her with a firecracker, and you told about Peter and the Painkiller--" "Just as true as I live!" "And then there was a whole lot of talk 'bout dragging the river for us, and 'bout having the funeral Sunday, and then you and old Miss Harper hugged and cried, and she went." "It happened just so! It happened just so, as sure as I'm a-sitting in these very tracks. Tom, you couldn't told it more like if you'd 'a' seen it! And then what? Go on, Tom!" "Then I thought you prayed for me--and I could see you and hear every word you said. And you went to bed, and I was so sorry that I took and wrote on a piece of sycamore bark, 'We ain't dead--we are only off being pirates,' and put it on the table by the candle; and then you looked so good, laying there asleep, that I thought I went and leaned over and kissed you on the lips." "Did you, Tom, DID you! I just forgive you everything for that!" And she seized the boy in a crushing embrace that made him feel like the guiltiest of villains. "It was very kind, even though it was only a--dream," Sid soliloquized just audibly. "Shut up, Sid! A body does just the same in a dream as he'd do if he was awake. Here's a big Milum apple I've been saving for you, Tom, if you was ever found again--now go 'long to school. I'm thankful to the good God and Father of us all I've got you back, that's long-suffering and merciful to them that believe on Him and keep His word, though goodness knows I'm unworthy of it, but if only the worthy ones got His blessings and had His hand to help them over the rough places, there's few enough would smile here or ever enter into His rest when the long night comes. Go 'long Sid, Mary, Tom--take yourselves off--you've hendered me long enough." The children left for school, and the old lady to call on Mrs. Harper and vanquish her realism with Tom's marvellous dream. Sid had better judgment than to utter the thought that was in his mind as he left the house. It was this: "Pretty thin--as long a dream as that, without any mistakes in it!" What a hero Tom was become, now! He did not go skipping and prancing, but moved with a dignified swagger as became a pirate who felt that the public eye was on him. And indeed it was; he tried not to seem to see the looks or hear the remarks as he passed along, but they were food and drink to him. Smaller boys than himself flocked at his heels, as proud to be seen with him, and tolerated by him, as if he had been the drummer at the head of a procession or the elephant leading a menagerie into town. Boys of his own size pretended not to know he had been away at all; but they were consuming with envy, nevertheless. They would have given anything to have that swarthy suntanned skin of his, and his glittering notoriety; and Tom would not have parted with either for a circus. At school the children made so much of him and of Joe, and delivered such eloquent admiration from their eyes, that the two heroes were not long in becoming insufferably "stuck-up." They began to tell their adventures to hungry listeners--but they only began; it was not a thing likely to have an end, with imaginations like theirs to furnish material. And finally, when they got out their pipes and went serenely puffing around, the very summit of glory was reached. Tom decided that he could be independent of Becky Thatcher now. Glory was sufficient. He would live for glory. Now that he was distinguished, maybe she would be wanting to "make up." Well, let her--she should see that he could be as indifferent as some other people. Presently she arrived. Tom pretended not to see her. He moved away and joined a group of boys and girls and began to talk. Soon he observed that she was tripping gayly back and forth with flushed face and dancing eyes, pretending to be busy chasing schoolmates, and screaming with laughter when she made a capture; but he noticed that she always made her captures in his vicinity, and that she seemed to cast a conscious eye in his direction at such times, too. It gratified all the vicious vanity that was in him; and so, instead of winning him, it only "set him up" the more and made him the more diligent to avoid betraying that he knew she was about. Presently she gave over skylarking, and moved irresolutely about, sighing once or twice and glancing furtively and wistfully toward Tom. Then she observed that now Tom was talking more particularly to Amy Lawrence than to any one else. She felt a sharp pang and grew disturbed and uneasy at once. She tried to go away, but her feet were treacherous, and carried her to the group instead. She said to a girl almost at Tom's elbow--with sham vivacity: "Why, Mary Austin! you bad girl, why didn't you come to Sunday-school?" "I did come--didn't you see me?" "Why, no! Did you? Where did you sit?" "I was in Miss Peters' class, where I always go. I saw YOU." "Did you? Why, it's funny I didn't see you. I wanted to tell you about the picnic." "Oh, that's jolly. Who's going to give it?" "My ma's going to let me have one." "Oh, goody; I hope she'll let ME come." "Well, she will. The picnic's for me. She'll let anybody come that I want, and I want you." "That's ever so nice. When is it going to be?" "By and by. Maybe about vacation." "Oh, won't it be fun! You going to have all the girls and boys?" "Yes, every one that's friends to me--or wants to be"; and she glanced ever so furtively at Tom, but he talked right along to Amy Lawrence about the terrible storm on the island, and how the lightning tore the great sycamore tree "all to flinders" while he was "standing within three feet of it." "Oh, may I come?" said Grace Miller. "Yes." "And me?" said Sally Rogers. "Yes." "And me, too?" said Susy Harper. "And Joe?" "Yes." And so on, with clapping of joyful hands till all the group had begged for invitations but Tom and Amy. Then Tom turned coolly away, still talking, and took Amy with him. Becky's lips trembled and the tears came to her eyes; she hid these signs with a forced gayety and went on chattering, but the life had gone out of the picnic, now, and out of everything else; she got away as soon as she could and hid herself and had what her sex call "a good cry." Then she sat moody, with wounded pride, till the bell rang. She roused up, now, with a vindictive cast in her eye, and gave her plaited tails a shake and said she knew what SHE'D do. At recess Tom continued his flirtation with Amy with jubilant self-satisfaction. And he kept drifting about to find Becky and lacerate her with the performance. At last he spied her, but there was a sudden falling of his mercury. She was sitting cosily on a little bench behind the schoolhouse looking at a picture-book with Alfred Temple--and so absorbed were they, and their heads so close together over the book, that they did not seem to be conscious of anything in the world besides. Jealousy ran red-hot through Tom's veins. He began to hate himself for throwing away the chance Becky had offered for a reconciliation. He called himself a fool, and all the hard names he could think of. He wanted to cry with vexation. Amy chatted happily along, as they walked, for her heart was singing, but Tom's tongue had lost its function. He did not hear what Amy was saying, and whenever she paused expectantly he could only stammer an awkward assent, which was as often misplaced as otherwise. He kept drifting to the rear of the schoolhouse, again and again, to sear his eyeballs with the hateful spectacle there. He could not help it. And it maddened him to see, as he thought he saw, that Becky Thatcher never once suspected that he was even in the land of the living. But she did see, nevertheless; and she knew she was winning her fight, too, and was glad to see him suffer as she had suffered. Amy's happy prattle became intolerable. Tom hinted at things he had to attend to; things that must be done; and time was fleeting. But in vain--the girl chirped on. Tom thought, "Oh, hang her, ain't I ever going to get rid of her?" At last he must be attending to those things--and she said artlessly that she would be "around" when school let out. And he hastened away, hating her for it. "Any other boy!" Tom thought, grating his teeth. "Any boy in the whole town but that Saint Louis smarty that thinks he dresses so fine and is aristocracy! Oh, all right, I licked you the first day you ever saw this town, mister, and I'll lick you again! You just wait till I catch you out! I'll just take and--" And he went through the motions of thrashing an imaginary boy --pummelling the air, and kicking and gouging. "Oh, you do, do you? You holler 'nough, do you? Now, then, let that learn you!" And so the imaginary flogging was finished to his satisfaction. Tom fled home at noon. His conscience could not endure any more of Amy's grateful happiness, and his jealousy could bear no more of the other distress. Becky resumed her picture inspections with Alfred, but as the minutes dragged along and no Tom came to suffer, her triumph began to cloud and she lost interest; gravity and absent-mindedness followed, and then melancholy; two or three times she pricked up her ear at a footstep, but it was a false hope; no Tom came. At last she grew entirely miserable and wished she hadn't carried it so far. When poor Alfred, seeing that he was losing her, he did not know how, kept exclaiming: "Oh, here's a jolly one! look at this!" she lost patience at last, and said, "Oh, don't bother me! I don't care for them!" and burst into tears, and got up and walked away. Alfred dropped alongside and was going to try to comfort her, but she said: "Go away and leave me alone, can't you! I hate you!" So the boy halted, wondering what he could have done--for she had said she would look at pictures all through the nooning--and she walked on, crying. Then Alfred went musing into the deserted schoolhouse. He was humiliated and angry. He easily guessed his way to the truth--the girl had simply made a convenience of him to vent her spite upon Tom Sawyer. He was far from hating Tom the less when this thought occurred to him. He wished there was some way to get that boy into trouble without much risk to himself. Tom's spelling-book fell under his eye. Here was his opportunity. He gratefully opened to the lesson for the afternoon and poured ink upon the page. Becky, glancing in at a window behind him at the moment, saw the act, and moved on, without discovering herself. She started homeward, now, intending to find Tom and tell him; Tom would be thankful and their troubles would be healed. Before she was half way home, however, she had changed her mind. The thought of Tom's treatment of her when she was talking about her picnic came scorching back and filled her with shame. She resolved to let him get whipped on the damaged spelling-book's account, and to hate him forever, into the bargain. CHAPTER XIX TOM arrived at home in a dreary mood, and the first thing his aunt said to him showed him that he had brought his sorrows to an unpromising market: "Tom, I've a notion to skin you alive!" "Auntie, what have I done?" "Well, you've done enough. Here I go over to Sereny Harper, like an old softy, expecting I'm going to make her believe all that rubbage about that dream, when lo and behold you she'd found out from Joe that you was over here and heard all the talk we had that night. Tom, I don't know what is to become of a boy that will act like that. It makes me feel so bad to think you could let me go to Sereny Harper and make such a fool of myself and never say a word." This was a new aspect of the thing. His smartness of the morning had seemed to Tom a good joke before, and very ingenious. It merely looked mean and shabby now. He hung his head and could not think of anything to say for a moment. Then he said: "Auntie, I wish I hadn't done it--but I didn't think." "Oh, child, you never think. You never think of anything but your own selfishness. You could think to come all the way over here from Jackson's Island in the night to laugh at our troubles, and you could think to fool me with a lie about a dream; but you couldn't ever think to pity us and save us from sorrow." "Auntie, I know now it was mean, but I didn't mean to be mean. I didn't, honest. And besides, I didn't come over here to laugh at you that night." "What did you come for, then?" "It was to tell you not to be uneasy about us, because we hadn't got drownded." "Tom, Tom, I would be the thankfullest soul in this world if I could believe you ever had as good a thought as that, but you know you never did--and I know it, Tom." "Indeed and 'deed I did, auntie--I wish I may never stir if I didn't." "Oh, Tom, don't lie--don't do it. It only makes things a hundred times worse." "It ain't a lie, auntie; it's the truth. I wanted to keep you from grieving--that was all that made me come." "I'd give the whole world to believe that--it would cover up a power of sins, Tom. I'd 'most be glad you'd run off and acted so bad. But it ain't reasonable; because, why didn't you tell me, child?" "Why, you see, when you got to talking about the funeral, I just got all full of the idea of our coming and hiding in the church, and I couldn't somehow bear to spoil it. So I just put the bark back in my pocket and kept mum." "What bark?" "The bark I had wrote on to tell you we'd gone pirating. I wish, now, you'd waked up when I kissed you--I do, honest." The hard lines in his aunt's face relaxed and a sudden tenderness dawned in her eyes. "DID you kiss me, Tom?" "Why, yes, I did." "Are you sure you did, Tom?" "Why, yes, I did, auntie--certain sure." "What did you kiss me for, Tom?" "Because I loved you so, and you laid there moaning and I was so sorry." The words sounded like truth. The old lady could not hide a tremor in her voice when she said: "Kiss me again, Tom!--and be off with you to school, now, and don't bother me any more." The moment he was gone, she ran to a closet and got out the ruin of a jacket which Tom had gone pirating in. Then she stopped, with it in her hand, and said to herself: "No, I don't dare. Poor boy, I reckon he's lied about it--but it's a blessed, blessed lie, there's such a comfort come from it. I hope the Lord--I KNOW the Lord will forgive him, because it was such goodheartedness in him to tell it. But I don't want to find out it's a lie. I won't look." She put the jacket away, and stood by musing a minute. Twice she put out her hand to take the garment again, and twice she refrained. Once more she ventured, and this time she fortified herself with the thought: "It's a good lie--it's a good lie--I won't let it grieve me." So she sought the jacket pocket. A moment later she was reading Tom's piece of bark through flowing tears and saying: "I could forgive the boy, now, if he'd committed a million sins!" CHAPTER XX THERE was something about Aunt Polly's manner, when she kissed Tom, that swept away his low spirits and made him lighthearted and happy again. He started to school and had the luck of coming upon Becky Thatcher at the head of Meadow Lane. His mood always determined his manner. Without a moment's hesitation he ran to her and said: "I acted mighty mean to-day, Becky, and I'm so sorry. I won't ever, ever do that way again, as long as ever I live--please make up, won't you?" The girl stopped and looked him scornfully in the face: "I'll thank you to keep yourself TO yourself, Mr. Thomas Sawyer. I'll never speak to you again." She tossed her head and passed on. Tom was so stunned that he had not even presence of mind enough to say "Who cares, Miss Smarty?" until the right time to say it had gone by. So he said nothing. But he was in a fine rage, nevertheless. He moped into the schoolyard wishing she were a boy, and imagining how he would trounce her if she were. He presently encountered her and delivered a stinging remark as he passed. She hurled one in return, and the angry breach was complete. It seemed to Becky, in her hot resentment, that she could hardly wait for school to "take in," she was so impatient to see Tom flogged for the injured spelling-book. If she had had any lingering notion of exposing Alfred Temple, Tom's offensive fling had driven it entirely away. Poor girl, she did not know how fast she was nearing trouble herself. The master, Mr. Dobbins, had reached middle age with an unsatisfied ambition. The darling of his desires was, to be a doctor, but poverty had decreed that he should be nothing higher than a village schoolmaster. Every day he took a mysterious book out of his desk and absorbed himself in it at times when no classes were reciting. He kept that book under lock and key. There was not an urchin in school but was perishing to have a glimpse of it, but the chance never came. Every boy and girl had a theory about the nature of that book; but no two theories were alike, and there was no way of getting at the facts in the case. Now, as Becky was passing by the desk, which stood near the door, she noticed that the key was in the lock! It was a precious moment. She glanced around; found herself alone, and the next instant she had the book in her hands. The title-page--Professor Somebody's ANATOMY--carried no information to her mind; so she began to turn the leaves. She came at once upon a handsomely engraved and colored frontispiece--a human figure, stark naked. At that moment a shadow fell on the page and Tom Sawyer stepped in at the door and caught a glimpse of the picture. Becky snatched at the book to close it, and had the hard luck to tear the pictured page half down the middle. She thrust the volume into the desk, turned the key, and burst out crying with shame and vexation. "Tom Sawyer, you are just as mean as you can be, to sneak up on a person and look at what they're looking at." "How could I know you was looking at anything?" "You ought to be ashamed of yourself, Tom Sawyer; you know you're going to tell on me, and oh, what shall I do, what shall I do! I'll be whipped, and I never was whipped in school." Then she stamped her little foot and said: "BE so mean if you want to! I know something that's going to happen. You just wait and you'll see! Hateful, hateful, hateful!"--and she flung out of the house with a new explosion of crying. Tom stood still, rather flustered by this onslaught. Presently he said to himself: "What a curious kind of a fool a girl is! Never been licked in school! Shucks! What's a licking! That's just like a girl--they're so thin-skinned and chicken-hearted. Well, of course I ain't going to tell old Dobbins on this little fool, because there's other ways of getting even on her, that ain't so mean; but what of it? Old Dobbins will ask who it was tore his book. Nobody'll answer. Then he'll do just the way he always does--ask first one and then t'other, and when he comes to the right girl he'll know it, without any telling. Girls' faces always tell on them. They ain't got any backbone. She'll get licked. Well, it's a kind of a tight place for Becky Thatcher, because there ain't any way out of it." Tom conned the thing a moment longer, and then added: "All right, though; she'd like to see me in just such a fix--let her sweat it out!" Tom joined the mob of skylarking scholars outside. In a few moments the master arrived and school "took in." Tom did not feel a strong interest in his studies. Every time he stole a glance at the girls' side of the room Becky's face troubled him. Considering all things, he did not want to pity her, and yet it was all he could do to help it. He could get up no exultation that was really worthy the name. Presently the spelling-book discovery was made, and Tom's mind was entirely full of his own matters for a while after that. Becky roused up from her lethargy of distress and showed good interest in the proceedings. She did not expect that Tom could get out of his trouble by denying that he spilt the ink on the book himself; and she was right. The denial only seemed to make the thing worse for Tom. Becky supposed she would be glad of that, and she tried to believe she was glad of it, but she found she was not certain. When the worst came to the worst, she had an impulse to get up and tell on Alfred Temple, but she made an effort and forced herself to keep still--because, said she to herself, "he'll tell about me tearing the picture sure. I wouldn't say a word, not to save his life!" Tom took his whipping and went back to his seat not at all broken-hearted, for he thought it was possible that he had unknowingly upset the ink on the spelling-book himself, in some skylarking bout--he had denied it for form's sake and because it was custom, and had stuck to the denial from principle. A whole hour drifted by, the master sat nodding in his throne, the air was drowsy with the hum of study. By and by, Mr. Dobbins straightened himself up, yawned, then unlocked his desk, and reached for his book, but seemed undecided whether to take it out or leave it. Most of the pupils glanced up languidly, but there were two among them that watched his movements with intent eyes. Mr. Dobbins fingered his book absently for a while, then took it out and settled himself in his chair to read! Tom shot a glance at Becky. He had seen a hunted and helpless rabbit look as she did, with a gun levelled at its head. Instantly he forgot his quarrel with her. Quick--something must be done! done in a flash, too! But the very imminence of the emergency paralyzed his invention. Good!--he had an inspiration! He would run and snatch the book, spring through the door and fly. But his resolution shook for one little instant, and the chance was lost--the master opened the volume. If Tom only had the wasted opportunity back again! Too late. There was no help for Becky now, he said. The next moment the master faced the school. Every eye sank under his gaze. There was that in it which smote even the innocent with fear. There was silence while one might count ten --the master was gathering his wrath. Then he spoke: "Who tore this book?" There was not a sound. One could have heard a pin drop. The stillness continued; the master searched face after face for signs of guilt. "Benjamin Rogers, did you tear this book?" A denial. Another pause. "Joseph Harper, did you?" Another denial. Tom's uneasiness grew more and more intense under the slow torture of these proceedings. The master scanned the ranks of boys--considered a while, then turned to the girls: "Amy Lawrence?" A shake of the head. "Gracie Miller?" The same sign. "Susan Harper, did you do this?" Another negative. The next girl was Becky Thatcher. Tom was trembling from head to foot with excitement and a sense of the hopelessness of the situation. "Rebecca Thatcher" [Tom glanced at her face--it was white with terror] --"did you tear--no, look me in the face" [her hands rose in appeal] --"did you tear this book?" A thought shot like lightning through Tom's brain. He sprang to his feet and shouted--"I done it!" The school stared in perplexity at this incredible folly. Tom stood a moment, to gather his dismembered faculties; and when he stepped forward to go to his punishment the surprise, the gratitude, the adoration that shone upon him out of poor Becky's eyes seemed pay enough for a hundred floggings. Inspired by the splendor of his own act, he took without an outcry the most merciless flaying that even Mr. Dobbins had ever administered; and also received with indifference the added cruelty of a command to remain two hours after school should be dismissed--for he knew who would wait for him outside till his captivity was done, and not count the tedious time as loss, either. Tom went to bed that night planning vengeance against Alfred Temple; for with shame and repentance Becky had told him all, not forgetting her own treachery; but even the longing for vengeance had to give way, soon, to pleasanter musings, and he fell asleep at last with Becky's latest words lingering dreamily in his ear-- "Tom, how COULD you be so noble!" CHAPTER XXI VACATION was approaching. The schoolmaster, always severe, grew severer and more exacting than ever, for he wanted the school to make a good showing on "Examination" day. His rod and his ferule were seldom idle now--at least among the smaller pupils. Only the biggest boys, and young ladies of eighteen and twenty, escaped lashing. Mr. Dobbins' lashings were very vigorous ones, too; for although he carried, under his wig, a perfectly bald and shiny head, he had only reached middle age, and there was no sign of feebleness in his muscle. As the great day approached, all the tyranny that was in him came to the surface; he seemed to take a vindictive pleasure in punishing the least shortcomings. The consequence was, that the smaller boys spent their days in terror and suffering and their nights in plotting revenge. They threw away no opportunity to do the master a mischief. But he kept ahead all the time. The retribution that followed every vengeful success was so sweeping and majestic that the boys always retired from the field badly worsted. At last they conspired together and hit upon a plan that promised a dazzling victory. They swore in the sign-painter's boy, told him the scheme, and asked his help. He had his own reasons for being delighted, for the master boarded in his father's family and had given the boy ample cause to hate him. The master's wife would go on a visit to the country in a few days, and there would be nothing to interfere with the plan; the master always prepared himself for great occasions by getting pretty well fuddled, and the sign-painter's boy said that when the dominie had reached the proper condition on Examination Evening he would "manage the thing" while he napped in his chair; then he would have him awakened at the right time and hurried away to school. In the fulness of time the interesting occasion arrived. At eight in the evening the schoolhouse was brilliantly lighted, and adorned with wreaths and festoons of foliage and flowers. The master sat throned in his great chair upon a raised platform, with his blackboard behind him. He was looking tolerably mellow. Three rows of benches on each side and six rows in front of him were occupied by the dignitaries of the town and by the parents of the pupils. To his left, back of the rows of citizens, was a spacious temporary platform upon which were seated the scholars who were to take part in the exercises of the evening; rows of small boys, washed and dressed to an intolerable state of discomfort; rows of gawky big boys; snowbanks of girls and young ladies clad in lawn and muslin and conspicuously conscious of their bare arms, their grandmothers' ancient trinkets, their bits of pink and blue ribbon and the flowers in their hair. All the rest of the house was filled with non-participating scholars. The exercises began. A very little boy stood up and sheepishly recited, "You'd scarce expect one of my age to speak in public on the stage," etc.--accompanying himself with the painfully exact and spasmodic gestures which a machine might have used--supposing the machine to be a trifle out of order. But he got through safely, though cruelly scared, and got a fine round of applause when he made his manufactured bow and retired. A little shamefaced girl lisped, "Mary had a little lamb," etc., performed a compassion-inspiring curtsy, got her meed of applause, and sat down flushed and happy. Tom Sawyer stepped forward with conceited confidence and soared into the unquenchable and indestructible "Give me liberty or give me death" speech, with fine fury and frantic gesticulation, and broke down in the middle of it. A ghastly stage-fright seized him, his legs quaked under him and he was like to choke. True, he had the manifest sympathy of the house but he had the house's silence, too, which was even worse than its sympathy. The master frowned, and this completed the disaster. Tom struggled awhile and then retired, utterly defeated. There was a weak attempt at applause, but it died early. "The Boy Stood on the Burning Deck" followed; also "The Assyrian Came Down," and other declamatory gems. Then there were reading exercises, and a spelling fight. The meagre Latin class recited with honor. The prime feature of the evening was in order, now--original "compositions" by the young ladies. Each in her turn stepped forward to the edge of the platform, cleared her throat, held up her manuscript (tied with dainty ribbon), and proceeded to read, with labored attention to "expression" and punctuation. The themes were the same that had been illuminated upon similar occasions by their mothers before them, their grandmothers, and doubtless all their ancestors in the female line clear back to the Crusades. "Friendship" was one; "Memories of Other Days"; "Religion in History"; "Dream Land"; "The Advantages of Culture"; "Forms of Political Government Compared and Contrasted"; "Melancholy"; "Filial Love"; "Heart Longings," etc., etc. A prevalent feature in these compositions was a nursed and petted melancholy; another was a wasteful and opulent gush of "fine language"; another was a tendency to lug in by the ears particularly prized words and phrases until they were worn entirely out; and a peculiarity that conspicuously marked and marred them was the inveterate and intolerable sermon that wagged its crippled tail at the end of each and every one of them. No matter what the subject might be, a brain-racking effort was made to squirm it into some aspect or other that the moral and religious mind could contemplate with edification. The glaring insincerity of these sermons was not sufficient to compass the banishment of the fashion from the schools, and it is not sufficient to-day; it never will be sufficient while the world stands, perhaps. There is no school in all our land where the young ladies do not feel obliged to close their compositions with a sermon; and you will find that the sermon of the most frivolous and the least religious girl in the school is always the longest and the most relentlessly pious. But enough of this. Homely truth is unpalatable. Let us return to the "Examination." The first composition that was read was one entitled "Is this, then, Life?" Perhaps the reader can endure an extract from it: "In the common walks of life, with what delightful emotions does the youthful mind look forward to some anticipated scene of festivity! Imagination is busy sketching rose-tinted pictures of joy. In fancy, the voluptuous votary of fashion sees herself amid the festive throng, 'the observed of all observers.' Her graceful form, arrayed in snowy robes, is whirling through the mazes of the joyous dance; her eye is brightest, her step is lightest in the gay assembly. "In such delicious fancies time quickly glides by, and the welcome hour arrives for her entrance into the Elysian world, of which she has had such bright dreams. How fairy-like does everything appear to her enchanted vision! Each new scene is more charming than the last. But after a while she finds that beneath this goodly exterior, all is vanity, the flattery which once charmed her soul, now grates harshly upon her ear; the ball-room has lost its charms; and with wasted health and imbittered heart, she turns away with the conviction that earthly pleasures cannot satisfy the longings of the soul!" And so forth and so on. There was a buzz of gratification from time to time during the reading, accompanied by whispered ejaculations of "How sweet!" "How eloquent!" "So true!" etc., and after the thing had closed with a peculiarly afflicting sermon the applause was enthusiastic. Then arose a slim, melancholy girl, whose face had the "interesting" paleness that comes of pills and indigestion, and read a "poem." Two stanzas of it will do: "A MISSOURI MAIDEN'S FAREWELL TO ALABAMA "Alabama, good-bye! I love thee well! But yet for a while do I leave thee now! Sad, yes, sad thoughts of thee my heart doth swell, And burning recollections throng my brow! For I have wandered through thy flowery woods; Have roamed and read near Tallapoosa's stream; Have listened to Tallassee's warring floods, And wooed on Coosa's side Aurora's beam. "Yet shame I not to bear an o'er-full heart, Nor blush to turn behind my tearful eyes; 'Tis from no stranger land I now must part, 'Tis to no strangers left I yield these sighs. Welcome and home were mine within this State, Whose vales I leave--whose spires fade fast from me And cold must be mine eyes, and heart, and tete, When, dear Alabama! they turn cold on thee!" There were very few there who knew what "tete" meant, but the poem was very satisfactory, nevertheless. Next appeared a dark-complexioned, black-eyed, black-haired young lady, who paused an impressive moment, assumed a tragic expression, and began to read in a measured, solemn tone: "A VISION "Dark and tempestuous was night. Around the throne on high not a single star quivered; but the deep intonations of the heavy thunder constantly vibrated upon the ear; whilst the terrific lightning revelled in angry mood through the cloudy chambers of heaven, seeming to scorn the power exerted over its terror by the illustrious Franklin! Even the boisterous winds unanimously came forth from their mystic homes, and blustered about as if to enhance by their aid the wildness of the scene. "At such a time, so dark, so dreary, for human sympathy my very spirit sighed; but instead thereof, "'My dearest friend, my counsellor, my comforter and guide--My joy in grief, my second bliss in joy,' came to my side. She moved like one of those bright beings pictured in the sunny walks of fancy's Eden by the romantic and young, a queen of beauty unadorned save by her own transcendent loveliness. So soft was her step, it failed to make even a sound, and but for the magical thrill imparted by her genial touch, as other unobtrusive beauties, she would have glided away un-perceived--unsought. A strange sadness rested upon her features, like icy tears upon the robe of December, as she pointed to the contending elements without, and bade me contemplate the two beings presented." This nightmare occupied some ten pages of manuscript and wound up with a sermon so destructive of all hope to non-Presbyterians that it took the first prize. This composition was considered to be the very finest effort of the evening. The mayor of the village, in delivering the prize to the author of it, made a warm speech in which he said that it was by far the most "eloquent" thing he had ever listened to, and that Daniel Webster himself might well be proud of it. It may be remarked, in passing, that the number of compositions in which the word "beauteous" was over-fondled, and human experience referred to as "life's page," was up to the usual average. Now the master, mellow almost to the verge of geniality, put his chair aside, turned his back to the audience, and began to draw a map of America on the blackboard, to exercise the geography class upon. But he made a sad business of it with his unsteady hand, and a smothered titter rippled over the house. He knew what the matter was, and set himself to right it. He sponged out lines and remade them; but he only distorted them more than ever, and the tittering was more pronounced. He threw his entire attention upon his work, now, as if determined not to be put down by the mirth. He felt that all eyes were fastened upon him; he imagined he was succeeding, and yet the tittering continued; it even manifestly increased. And well it might. There was a garret above, pierced with a scuttle over his head; and down through this scuttle came a cat, suspended around the haunches by a string; she had a rag tied about her head and jaws to keep her from mewing; as she slowly descended she curved upward and clawed at the string, she swung downward and clawed at the intangible air. The tittering rose higher and higher--the cat was within six inches of the absorbed teacher's head--down, down, a little lower, and she grabbed his wig with her desperate claws, clung to it, and was snatched up into the garret in an instant with her trophy still in her possession! And how the light did blaze abroad from the master's bald pate--for the sign-painter's boy had GILDED it! That broke up the meeting. The boys were avenged. Vacation had come. NOTE:--The pretended "compositions" quoted in this chapter are taken without alteration from a volume entitled "Prose and Poetry, by a Western Lady"--but they are exactly and precisely after the schoolgirl pattern, and hence are much happier than any mere imitations could be. CHAPTER XXII TOM joined the new order of Cadets of Temperance, being attracted by the showy character of their "regalia." He promised to abstain from smoking, chewing, and profanity as long as he remained a member. Now he found out a new thing--namely, that to promise not to do a thing is the surest way in the world to make a body want to go and do that very thing. Tom soon found himself tormented with a desire to drink and swear; the desire grew to be so intense that nothing but the hope of a chance to display himself in his red sash kept him from withdrawing from the order. Fourth of July was coming; but he soon gave that up --gave it up before he had worn his shackles over forty-eight hours--and fixed his hopes upon old Judge Frazer, justice of the peace, who was apparently on his deathbed and would have a big public funeral, since he was so high an official. During three days Tom was deeply concerned about the Judge's condition and hungry for news of it. Sometimes his hopes ran high--so high that he would venture to get out his regalia and practise before the looking-glass. But the Judge had a most discouraging way of fluctuating. At last he was pronounced upon the mend--and then convalescent. Tom was disgusted; and felt a sense of injury, too. He handed in his resignation at once--and that night the Judge suffered a relapse and died. Tom resolved that he would never trust a man like that again. The funeral was a fine thing. The Cadets paraded in a style calculated to kill the late member with envy. Tom was a free boy again, however --there was something in that. He could drink and swear, now--but found to his surprise that he did not want to. The simple fact that he could, took the desire away, and the charm of it. Tom presently wondered to find that his coveted vacation was beginning to hang a little heavily on his hands. He attempted a diary--but nothing happened during three days, and so he abandoned it. The first of all the negro minstrel shows came to town, and made a sensation. Tom and Joe Harper got up a band of performers and were happy for two days. Even the Glorious Fourth was in some sense a failure, for it rained hard, there was no procession in consequence, and the greatest man in the world (as Tom supposed), Mr. Benton, an actual United States Senator, proved an overwhelming disappointment--for he was not twenty-five feet high, nor even anywhere in the neighborhood of it. A circus came. The boys played circus for three days afterward in tents made of rag carpeting--admission, three pins for boys, two for girls--and then circusing was abandoned. A phrenologist and a mesmerizer came--and went again and left the village duller and drearier than ever. There were some boys-and-girls' parties, but they were so few and so delightful that they only made the aching voids between ache the harder. Becky Thatcher was gone to her Constantinople home to stay with her parents during vacation--so there was no bright side to life anywhere. The dreadful secret of the murder was a chronic misery. It was a very cancer for permanency and pain. Then came the measles. During two long weeks Tom lay a prisoner, dead to the world and its happenings. He was very ill, he was interested in nothing. When he got upon his feet at last and moved feebly down-town, a melancholy change had come over everything and every creature. There had been a "revival," and everybody had "got religion," not only the adults, but even the boys and girls. Tom went about, hoping against hope for the sight of one blessed sinful face, but disappointment crossed him everywhere. He found Joe Harper studying a Testament, and turned sadly away from the depressing spectacle. He sought Ben Rogers, and found him visiting the poor with a basket of tracts. He hunted up Jim Hollis, who called his attention to the precious blessing of his late measles as a warning. Every boy he encountered added another ton to his depression; and when, in desperation, he flew for refuge at last to the bosom of Huckleberry Finn and was received with a Scriptural quotation, his heart broke and he crept home and to bed realizing that he alone of all the town was lost, forever and forever. And that night there came on a terrific storm, with driving rain, awful claps of thunder and blinding sheets of lightning. He covered his head with the bedclothes and waited in a horror of suspense for his doom; for he had not the shadow of a doubt that all this hubbub was about him. He believed he had taxed the forbearance of the powers above to the extremity of endurance and that this was the result. It might have seemed to him a waste of pomp and ammunition to kill a bug with a battery of artillery, but there seemed nothing incongruous about the getting up such an expensive thunderstorm as this to knock the turf from under an insect like himself. By and by the tempest spent itself and died without accomplishing its object. The boy's first impulse was to be grateful, and reform. His second was to wait--for there might not be any more storms. The next day the doctors were back; Tom had relapsed. The three weeks he spent on his back this time seemed an entire age. When he got abroad at last he was hardly grateful that he had been spared, remembering how lonely was his estate, how companionless and forlorn he was. He drifted listlessly down the street and found Jim Hollis acting as judge in a juvenile court that was trying a cat for murder, in the presence of her victim, a bird. He found Joe Harper and Huck Finn up an alley eating a stolen melon. Poor lads! they--like Tom--had suffered a relapse. CHAPTER XXIII AT last the sleepy atmosphere was stirred--and vigorously: the murder trial came on in the court. It became the absorbing topic of village talk immediately. Tom could not get away from it. Every reference to the murder sent a shudder to his heart, for his troubled conscience and fears almost persuaded him that these remarks were put forth in his hearing as "feelers"; he did not see how he could be suspected of knowing anything about the murder, but still he could not be comfortable in the midst of this gossip. It kept him in a cold shiver all the time. He took Huck to a lonely place to have a talk with him. It would be some relief to unseal his tongue for a little while; to divide his burden of distress with another sufferer. Moreover, he wanted to assure himself that Huck had remained discreet. "Huck, have you ever told anybody about--that?" "'Bout what?" "You know what." "Oh--'course I haven't." "Never a word?" "Never a solitary word, so help me. What makes you ask?" "Well, I was afeard." "Why, Tom Sawyer, we wouldn't be alive two days if that got found out. YOU know that." Tom felt more comfortable. After a pause: "Huck, they couldn't anybody get you to tell, could they?" "Get me to tell? Why, if I wanted that half-breed devil to drownd me they could get me to tell. They ain't no different way." "Well, that's all right, then. I reckon we're safe as long as we keep mum. But let's swear again, anyway. It's more surer." "I'm agreed." So they swore again with dread solemnities. "What is the talk around, Huck? I've heard a power of it." "Talk? Well, it's just Muff Potter, Muff Potter, Muff Potter all the time. It keeps me in a sweat, constant, so's I want to hide som'ers." "That's just the same way they go on round me. I reckon he's a goner. Don't you feel sorry for him, sometimes?" "Most always--most always. He ain't no account; but then he hain't ever done anything to hurt anybody. Just fishes a little, to get money to get drunk on--and loafs around considerable; but lord, we all do that--leastways most of us--preachers and such like. But he's kind of good--he give me half a fish, once, when there warn't enough for two; and lots of times he's kind of stood by me when I was out of luck." "Well, he's mended kites for me, Huck, and knitted hooks on to my line. I wish we could get him out of there." "My! we couldn't get him out, Tom. And besides, 'twouldn't do any good; they'd ketch him again." "Yes--so they would. But I hate to hear 'em abuse him so like the dickens when he never done--that." "I do too, Tom. Lord, I hear 'em say he's the bloodiest looking villain in this country, and they wonder he wasn't ever hung before." "Yes, they talk like that, all the time. I've heard 'em say that if he was to get free they'd lynch him." "And they'd do it, too." The boys had a long talk, but it brought them little comfort. As the twilight drew on, they found themselves hanging about the neighborhood of the little isolated jail, perhaps with an undefined hope that something would happen that might clear away their difficulties. But nothing happened; there seemed to be no angels or fairies interested in this luckless captive. The boys did as they had often done before--went to the cell grating and gave Potter some tobacco and matches. He was on the ground floor and there were no guards. His gratitude for their gifts had always smote their consciences before--it cut deeper than ever, this time. They felt cowardly and treacherous to the last degree when Potter said: "You've been mighty good to me, boys--better'n anybody else in this town. And I don't forget it, I don't. Often I says to myself, says I, 'I used to mend all the boys' kites and things, and show 'em where the good fishin' places was, and befriend 'em what I could, and now they've all forgot old Muff when he's in trouble; but Tom don't, and Huck don't--THEY don't forget him, says I, 'and I don't forget them.' Well, boys, I done an awful thing--drunk and crazy at the time--that's the only way I account for it--and now I got to swing for it, and it's right. Right, and BEST, too, I reckon--hope so, anyway. Well, we won't talk about that. I don't want to make YOU feel bad; you've befriended me. But what I want to say, is, don't YOU ever get drunk--then you won't ever get here. Stand a litter furder west--so--that's it; it's a prime comfort to see faces that's friendly when a body's in such a muck of trouble, and there don't none come here but yourn. Good friendly faces--good friendly faces. Git up on one another's backs and let me touch 'em. That's it. Shake hands--yourn'll come through the bars, but mine's too big. Little hands, and weak--but they've helped Muff Potter a power, and they'd help him more if they could." Tom went home miserable, and his dreams that night were full of horrors. The next day and the day after, he hung about the court-room, drawn by an almost irresistible impulse to go in, but forcing himself to stay out. Huck was having the same experience. They studiously avoided each other. Each wandered away, from time to time, but the same dismal fascination always brought them back presently. Tom kept his ears open when idlers sauntered out of the court-room, but invariably heard distressing news--the toils were closing more and more relentlessly around poor Potter. At the end of the second day the village talk was to the effect that Injun Joe's evidence stood firm and unshaken, and that there was not the slightest question as to what the jury's verdict would be. Tom was out late, that night, and came to bed through the window. He was in a tremendous state of excitement. It was hours before he got to sleep. All the village flocked to the court-house the next morning, for this was to be the great day. Both sexes were about equally represented in the packed audience. After a long wait the jury filed in and took their places; shortly afterward, Potter, pale and haggard, timid and hopeless, was brought in, with chains upon him, and seated where all the curious eyes could stare at him; no less conspicuous was Injun Joe, stolid as ever. There was another pause, and then the judge arrived and the sheriff proclaimed the opening of the court. The usual whisperings among the lawyers and gathering together of papers followed. These details and accompanying delays worked up an atmosphere of preparation that was as impressive as it was fascinating. Now a witness was called who testified that he found Muff Potter washing in the brook, at an early hour of the morning that the murder was discovered, and that he immediately sneaked away. After some further questioning, counsel for the prosecution said: "Take the witness." The prisoner raised his eyes for a moment, but dropped them again when his own counsel said: "I have no questions to ask him." The next witness proved the finding of the knife near the corpse. Counsel for the prosecution said: "Take the witness." "I have no questions to ask him," Potter's lawyer replied. A third witness swore he had often seen the knife in Potter's possession. "Take the witness." Counsel for Potter declined to question him. The faces of the audience began to betray annoyance. Did this attorney mean to throw away his client's life without an effort? Several witnesses deposed concerning Potter's guilty behavior when brought to the scene of the murder. They were allowed to leave the stand without being cross-questioned. Every detail of the damaging circumstances that occurred in the graveyard upon that morning which all present remembered so well was brought out by credible witnesses, but none of them were cross-examined by Potter's lawyer. The perplexity and dissatisfaction of the house expressed itself in murmurs and provoked a reproof from the bench. Counsel for the prosecution now said: "By the oaths of citizens whose simple word is above suspicion, we have fastened this awful crime, beyond all possibility of question, upon the unhappy prisoner at the bar. We rest our case here." A groan escaped from poor Potter, and he put his face in his hands and rocked his body softly to and fro, while a painful silence reigned in the court-room. Many men were moved, and many women's compassion testified itself in tears. Counsel for the defence rose and said: "Your honor, in our remarks at the opening of this trial, we foreshadowed our purpose to prove that our client did this fearful deed while under the influence of a blind and irresponsible delirium produced by drink. We have changed our mind. We shall not offer that plea." [Then to the clerk:] "Call Thomas Sawyer!" A puzzled amazement awoke in every face in the house, not even excepting Potter's. Every eye fastened itself with wondering interest upon Tom as he rose and took his place upon the stand. The boy looked wild enough, for he was badly scared. The oath was administered. "Thomas Sawyer, where were you on the seventeenth of June, about the hour of midnight?" Tom glanced at Injun Joe's iron face and his tongue failed him. The audience listened breathless, but the words refused to come. After a few moments, however, the boy got a little of his strength back, and managed to put enough of it into his voice to make part of the house hear: "In the graveyard!" "A little bit louder, please. Don't be afraid. You were--" "In the graveyard." A contemptuous smile flitted across Injun Joe's face. "Were you anywhere near Horse Williams' grave?" "Yes, sir." "Speak up--just a trifle louder. How near were you?" "Near as I am to you." "Were you hidden, or not?" "I was hid." "Where?" "Behind the elms that's on the edge of the grave." Injun Joe gave a barely perceptible start. "Any one with you?" "Yes, sir. I went there with--" "Wait--wait a moment. Never mind mentioning your companion's name. We will produce him at the proper time. Did you carry anything there with you." Tom hesitated and looked confused. "Speak out, my boy--don't be diffident. The truth is always respectable. What did you take there?" "Only a--a--dead cat." There was a ripple of mirth, which the court checked. "We will produce the skeleton of that cat. Now, my boy, tell us everything that occurred--tell it in your own way--don't skip anything, and don't be afraid." Tom began--hesitatingly at first, but as he warmed to his subject his words flowed more and more easily; in a little while every sound ceased but his own voice; every eye fixed itself upon him; with parted lips and bated breath the audience hung upon his words, taking no note of time, rapt in the ghastly fascinations of the tale. The strain upon pent emotion reached its climax when the boy said: "--and as the doctor fetched the board around and Muff Potter fell, Injun Joe jumped with the knife and--" Crash! Quick as lightning the half-breed sprang for a window, tore his way through all opposers, and was gone! CHAPTER XXIV TOM was a glittering hero once more--the pet of the old, the envy of the young. His name even went into immortal print, for the village paper magnified him. There were some that believed he would be President, yet, if he escaped hanging. As usual, the fickle, unreasoning world took Muff Potter to its bosom and fondled him as lavishly as it had abused him before. But that sort of conduct is to the world's credit; therefore it is not well to find fault with it. Tom's days were days of splendor and exultation to him, but his nights were seasons of horror. Injun Joe infested all his dreams, and always with doom in his eye. Hardly any temptation could persuade the boy to stir abroad after nightfall. Poor Huck was in the same state of wretchedness and terror, for Tom had told the whole story to the lawyer the night before the great day of the trial, and Huck was sore afraid that his share in the business might leak out, yet, notwithstanding Injun Joe's flight had saved him the suffering of testifying in court. The poor fellow had got the attorney to promise secrecy, but what of that? Since Tom's harassed conscience had managed to drive him to the lawyer's house by night and wring a dread tale from lips that had been sealed with the dismalest and most formidable of oaths, Huck's confidence in the human race was well-nigh obliterated. Daily Muff Potter's gratitude made Tom glad he had spoken; but nightly he wished he had sealed up his tongue. Half the time Tom was afraid Injun Joe would never be captured; the other half he was afraid he would be. He felt sure he never could draw a safe breath again until that man was dead and he had seen the corpse. Rewards had been offered, the country had been scoured, but no Injun Joe was found. One of those omniscient and awe-inspiring marvels, a detective, came up from St. Louis, moused around, shook his head, looked wise, and made that sort of astounding success which members of that craft usually achieve. That is to say, he "found a clew." But you can't hang a "clew" for murder, and so after that detective had got through and gone home, Tom felt just as insecure as he was before. The slow days drifted on, and each left behind it a slightly lightened weight of apprehension. CHAPTER XXV THERE comes a time in every rightly-constructed boy's life when he has a raging desire to go somewhere and dig for hidden treasure. This desire suddenly came upon Tom one day. He sallied out to find Joe Harper, but failed of success. Next he sought Ben Rogers; he had gone fishing. Presently he stumbled upon Huck Finn the Red-Handed. Huck would answer. Tom took him to a private place and opened the matter to him confidentially. Huck was willing. Huck was always willing to take a hand in any enterprise that offered entertainment and required no capital, for he had a troublesome superabundance of that sort of time which is not money. "Where'll we dig?" said Huck. "Oh, most anywhere." "Why, is it hid all around?" "No, indeed it ain't. It's hid in mighty particular places, Huck --sometimes on islands, sometimes in rotten chests under the end of a limb of an old dead tree, just where the shadow falls at midnight; but mostly under the floor in ha'nted houses." "Who hides it?" "Why, robbers, of course--who'd you reckon? Sunday-school sup'rintendents?" "I don't know. If 'twas mine I wouldn't hide it; I'd spend it and have a good time." "So would I. But robbers don't do that way. They always hide it and leave it there." "Don't they come after it any more?" "No, they think they will, but they generally forget the marks, or else they die. Anyway, it lays there a long time and gets rusty; and by and by somebody finds an old yellow paper that tells how to find the marks--a paper that's got to be ciphered over about a week because it's mostly signs and hy'roglyphics." "Hyro--which?" "Hy'roglyphics--pictures and things, you know, that don't seem to mean anything." "Have you got one of them papers, Tom?" "No." "Well then, how you going to find the marks?" "I don't want any marks. They always bury it under a ha'nted house or on an island, or under a dead tree that's got one limb sticking out. Well, we've tried Jackson's Island a little, and we can try it again some time; and there's the old ha'nted house up the Still-House branch, and there's lots of dead-limb trees--dead loads of 'em." "Is it under all of them?" "How you talk! No!" "Then how you going to know which one to go for?" "Go for all of 'em!" "Why, Tom, it'll take all summer." "Well, what of that? Suppose you find a brass pot with a hundred dollars in it, all rusty and gray, or rotten chest full of di'monds. How's that?" Huck's eyes glowed. "That's bully. Plenty bully enough for me. Just you gimme the hundred dollars and I don't want no di'monds." "All right. But I bet you I ain't going to throw off on di'monds. Some of 'em's worth twenty dollars apiece--there ain't any, hardly, but's worth six bits or a dollar." "No! Is that so?" "Cert'nly--anybody'll tell you so. Hain't you ever seen one, Huck?" "Not as I remember." "Oh, kings have slathers of them." "Well, I don' know no kings, Tom." "I reckon you don't. But if you was to go to Europe you'd see a raft of 'em hopping around." "Do they hop?" "Hop?--your granny! No!" "Well, what did you say they did, for?" "Shucks, I only meant you'd SEE 'em--not hopping, of course--what do they want to hop for?--but I mean you'd just see 'em--scattered around, you know, in a kind of a general way. Like that old humpbacked Richard." "Richard? What's his other name?" "He didn't have any other name. Kings don't have any but a given name." "No?" "But they don't." "Well, if they like it, Tom, all right; but I don't want to be a king and have only just a given name, like a nigger. But say--where you going to dig first?" "Well, I don't know. S'pose we tackle that old dead-limb tree on the hill t'other side of Still-House branch?" "I'm agreed." So they got a crippled pick and a shovel, and set out on their three-mile tramp. They arrived hot and panting, and threw themselves down in the shade of a neighboring elm to rest and have a smoke. "I like this," said Tom. "So do I." "Say, Huck, if we find a treasure here, what you going to do with your share?" "Well, I'll have pie and a glass of soda every day, and I'll go to every circus that comes along. I bet I'll have a gay time." "Well, ain't you going to save any of it?" "Save it? What for?" "Why, so as to have something to live on, by and by." "Oh, that ain't any use. Pap would come back to thish-yer town some day and get his claws on it if I didn't hurry up, and I tell you he'd clean it out pretty quick. What you going to do with yourn, Tom?" "I'm going to buy a new drum, and a sure-'nough sword, and a red necktie and a bull pup, and get married." "Married!" "That's it." "Tom, you--why, you ain't in your right mind." "Wait--you'll see." "Well, that's the foolishest thing you could do. Look at pap and my mother. Fight! Why, they used to fight all the time. I remember, mighty well." "That ain't anything. The girl I'm going to marry won't fight." "Tom, I reckon they're all alike. They'll all comb a body. Now you better think 'bout this awhile. I tell you you better. What's the name of the gal?" "It ain't a gal at all--it's a girl." "It's all the same, I reckon; some says gal, some says girl--both's right, like enough. Anyway, what's her name, Tom?" "I'll tell you some time--not now." "All right--that'll do. Only if you get married I'll be more lonesomer than ever." "No you won't. You'll come and live with me. Now stir out of this and we'll go to digging." They worked and sweated for half an hour. No result. They toiled another half-hour. Still no result. Huck said: "Do they always bury it as deep as this?" "Sometimes--not always. Not generally. I reckon we haven't got the right place." So they chose a new spot and began again. The labor dragged a little, but still they made progress. They pegged away in silence for some time. Finally Huck leaned on his shovel, swabbed the beaded drops from his brow with his sleeve, and said: "Where you going to dig next, after we get this one?" "I reckon maybe we'll tackle the old tree that's over yonder on Cardiff Hill back of the widow's." "I reckon that'll be a good one. But won't the widow take it away from us, Tom? It's on her land." "SHE take it away! Maybe she'd like to try it once. Whoever finds one of these hid treasures, it belongs to him. It don't make any difference whose land it's on." That was satisfactory. The work went on. By and by Huck said: "Blame it, we must be in the wrong place again. What do you think?" "It is mighty curious, Huck. I don't understand it. Sometimes witches interfere. I reckon maybe that's what's the trouble now." "Shucks! Witches ain't got no power in the daytime." "Well, that's so. I didn't think of that. Oh, I know what the matter is! What a blamed lot of fools we are! You got to find out where the shadow of the limb falls at midnight, and that's where you dig!" "Then consound it, we've fooled away all this work for nothing. Now hang it all, we got to come back in the night. It's an awful long way. Can you get out?" "I bet I will. We've got to do it to-night, too, because if somebody sees these holes they'll know in a minute what's here and they'll go for it." "Well, I'll come around and maow to-night." "All right. Let's hide the tools in the bushes." The boys were there that night, about the appointed time. They sat in the shadow waiting. It was a lonely place, and an hour made solemn by old traditions. Spirits whispered in the rustling leaves, ghosts lurked in the murky nooks, the deep baying of a hound floated up out of the distance, an owl answered with his sepulchral note. The boys were subdued by these solemnities, and talked little. By and by they judged that twelve had come; they marked where the shadow fell, and began to dig. Their hopes commenced to rise. Their interest grew stronger, and their industry kept pace with it. The hole deepened and still deepened, but every time their hearts jumped to hear the pick strike upon something, they only suffered a new disappointment. It was only a stone or a chunk. At last Tom said: "It ain't any use, Huck, we're wrong again." "Well, but we CAN'T be wrong. We spotted the shadder to a dot." "I know it, but then there's another thing." "What's that?". "Why, we only guessed at the time. Like enough it was too late or too early." Huck dropped his shovel. "That's it," said he. "That's the very trouble. We got to give this one up. We can't ever tell the right time, and besides this kind of thing's too awful, here this time of night with witches and ghosts a-fluttering around so. I feel as if something's behind me all the time; and I'm afeard to turn around, becuz maybe there's others in front a-waiting for a chance. I been creeping all over, ever since I got here." "Well, I've been pretty much so, too, Huck. They most always put in a dead man when they bury a treasure under a tree, to look out for it." "Lordy!" "Yes, they do. I've always heard that." "Tom, I don't like to fool around much where there's dead people. A body's bound to get into trouble with 'em, sure." "I don't like to stir 'em up, either. S'pose this one here was to stick his skull out and say something!" "Don't Tom! It's awful." "Well, it just is. Huck, I don't feel comfortable a bit." "Say, Tom, let's give this place up, and try somewheres else." "All right, I reckon we better." "What'll it be?" Tom considered awhile; and then said: "The ha'nted house. That's it!" "Blame it, I don't like ha'nted houses, Tom. Why, they're a dern sight worse'n dead people. Dead people might talk, maybe, but they don't come sliding around in a shroud, when you ain't noticing, and peep over your shoulder all of a sudden and grit their teeth, the way a ghost does. I couldn't stand such a thing as that, Tom--nobody could." "Yes, but, Huck, ghosts don't travel around only at night. They won't hender us from digging there in the daytime." "Well, that's so. But you know mighty well people don't go about that ha'nted house in the day nor the night." "Well, that's mostly because they don't like to go where a man's been murdered, anyway--but nothing's ever been seen around that house except in the night--just some blue lights slipping by the windows--no regular ghosts." "Well, where you see one of them blue lights flickering around, Tom, you can bet there's a ghost mighty close behind it. It stands to reason. Becuz you know that they don't anybody but ghosts use 'em." "Yes, that's so. But anyway they don't come around in the daytime, so what's the use of our being afeard?" "Well, all right. We'll tackle the ha'nted house if you say so--but I reckon it's taking chances." They had started down the hill by this time. There in the middle of the moonlit valley below them stood the "ha'nted" house, utterly isolated, its fences gone long ago, rank weeds smothering the very doorsteps, the chimney crumbled to ruin, the window-sashes vacant, a corner of the roof caved in. The boys gazed awhile, half expecting to see a blue light flit past a window; then talking in a low tone, as befitted the time and the circumstances, they struck far off to the right, to give the haunted house a wide berth, and took their way homeward through the woods that adorned the rearward side of Cardiff Hill. CHAPTER XXVI ABOUT noon the next day the boys arrived at the dead tree; they had come for their tools. Tom was impatient to go to the haunted house; Huck was measurably so, also--but suddenly said: "Lookyhere, Tom, do you know what day it is?" Tom mentally ran over the days of the week, and then quickly lifted his eyes with a startled look in them-- "My! I never once thought of it, Huck!" "Well, I didn't neither, but all at once it popped onto me that it was Friday." "Blame it, a body can't be too careful, Huck. We might 'a' got into an awful scrape, tackling such a thing on a Friday." "MIGHT! Better say we WOULD! There's some lucky days, maybe, but Friday ain't." "Any fool knows that. I don't reckon YOU was the first that found it out, Huck." "Well, I never said I was, did I? And Friday ain't all, neither. I had a rotten bad dream last night--dreampt about rats." "No! Sure sign of trouble. Did they fight?" "No." "Well, that's good, Huck. When they don't fight it's only a sign that there's trouble around, you know. All we got to do is to look mighty sharp and keep out of it. We'll drop this thing for to-day, and play. Do you know Robin Hood, Huck?" "No. Who's Robin Hood?" "Why, he was one of the greatest men that was ever in England--and the best. He was a robber." "Cracky, I wisht I was. Who did he rob?" "Only sheriffs and bishops and rich people and kings, and such like. But he never bothered the poor. He loved 'em. He always divided up with 'em perfectly square." "Well, he must 'a' been a brick." "I bet you he was, Huck. Oh, he was the noblest man that ever was. They ain't any such men now, I can tell you. He could lick any man in England, with one hand tied behind him; and he could take his yew bow and plug a ten-cent piece every time, a mile and a half." "What's a YEW bow?" "I don't know. It's some kind of a bow, of course. And if he hit that dime only on the edge he would set down and cry--and curse. But we'll play Robin Hood--it's nobby fun. I'll learn you." "I'm agreed." So they played Robin Hood all the afternoon, now and then casting a yearning eye down upon the haunted house and passing a remark about the morrow's prospects and possibilities there. As the sun began to sink into the west they took their way homeward athwart the long shadows of the trees and soon were buried from sight in the forests of Cardiff Hill. On Saturday, shortly after noon, the boys were at the dead tree again. They had a smoke and a chat in the shade, and then dug a little in their last hole, not with great hope, but merely because Tom said there were so many cases where people had given up a treasure after getting down within six inches of it, and then somebody else had come along and turned it up with a single thrust of a shovel. The thing failed this time, however, so the boys shouldered their tools and went away feeling that they had not trifled with fortune, but had fulfilled all the requirements that belong to the business of treasure-hunting. When they reached the haunted house there was something so weird and grisly about the dead silence that reigned there under the baking sun, and something so depressing about the loneliness and desolation of the place, that they were afraid, for a moment, to venture in. Then they crept to the door and took a trembling peep. They saw a weed-grown, floorless room, unplastered, an ancient fireplace, vacant windows, a ruinous staircase; and here, there, and everywhere hung ragged and abandoned cobwebs. They presently entered, softly, with quickened pulses, talking in whispers, ears alert to catch the slightest sound, and muscles tense and ready for instant retreat. In a little while familiarity modified their fears and they gave the place a critical and interested examination, rather admiring their own boldness, and wondering at it, too. Next they wanted to look up-stairs. This was something like cutting off retreat, but they got to daring each other, and of course there could be but one result--they threw their tools into a corner and made the ascent. Up there were the same signs of decay. In one corner they found a closet that promised mystery, but the promise was a fraud--there was nothing in it. Their courage was up now and well in hand. They were about to go down and begin work when-- "Sh!" said Tom. "What is it?" whispered Huck, blanching with fright. "Sh!... There!... Hear it?" "Yes!... Oh, my! Let's run!" "Keep still! Don't you budge! They're coming right toward the door." The boys stretched themselves upon the floor with their eyes to knot-holes in the planking, and lay waiting, in a misery of fear. "They've stopped.... No--coming.... Here they are. Don't whisper another word, Huck. My goodness, I wish I was out of this!" Two men entered. Each boy said to himself: "There's the old deaf and dumb Spaniard that's been about town once or twice lately--never saw t'other man before." "T'other" was a ragged, unkempt creature, with nothing very pleasant in his face. The Spaniard was wrapped in a serape; he had bushy white whiskers; long white hair flowed from under his sombrero, and he wore green goggles. When they came in, "t'other" was talking in a low voice; they sat down on the ground, facing the door, with their backs to the wall, and the speaker continued his remarks. His manner became less guarded and his words more distinct as he proceeded: "No," said he, "I've thought it all over, and I don't like it. It's dangerous." "Dangerous!" grunted the "deaf and dumb" Spaniard--to the vast surprise of the boys. "Milksop!" This voice made the boys gasp and quake. It was Injun Joe's! There was silence for some time. Then Joe said: "What's any more dangerous than that job up yonder--but nothing's come of it." "That's different. Away up the river so, and not another house about. 'Twon't ever be known that we tried, anyway, long as we didn't succeed." "Well, what's more dangerous than coming here in the daytime!--anybody would suspicion us that saw us." "I know that. But there warn't any other place as handy after that fool of a job. I want to quit this shanty. I wanted to yesterday, only it warn't any use trying to stir out of here, with those infernal boys playing over there on the hill right in full view." "Those infernal boys" quaked again under the inspiration of this remark, and thought how lucky it was that they had remembered it was Friday and concluded to wait a day. They wished in their hearts they had waited a year. The two men got out some food and made a luncheon. After a long and thoughtful silence, Injun Joe said: "Look here, lad--you go back up the river where you belong. Wait there till you hear from me. I'll take the chances on dropping into this town just once more, for a look. We'll do that 'dangerous' job after I've spied around a little and think things look well for it. Then for Texas! We'll leg it together!" This was satisfactory. Both men presently fell to yawning, and Injun Joe said: "I'm dead for sleep! It's your turn to watch." He curled down in the weeds and soon began to snore. His comrade stirred him once or twice and he became quiet. Presently the watcher began to nod; his head drooped lower and lower, both men began to snore now. The boys drew a long, grateful breath. Tom whispered: "Now's our chance--come!" Huck said: "I can't--I'd die if they was to wake." Tom urged--Huck held back. At last Tom rose slowly and softly, and started alone. But the first step he made wrung such a hideous creak from the crazy floor that he sank down almost dead with fright. He never made a second attempt. The boys lay there counting the dragging moments till it seemed to them that time must be done and eternity growing gray; and then they were grateful to note that at last the sun was setting. Now one snore ceased. Injun Joe sat up, stared around--smiled grimly upon his comrade, whose head was drooping upon his knees--stirred him up with his foot and said: "Here! YOU'RE a watchman, ain't you! All right, though--nothing's happened." "My! have I been asleep?" "Oh, partly, partly. Nearly time for us to be moving, pard. What'll we do with what little swag we've got left?" "I don't know--leave it here as we've always done, I reckon. No use to take it away till we start south. Six hundred and fifty in silver's something to carry." "Well--all right--it won't matter to come here once more." "No--but I'd say come in the night as we used to do--it's better." "Yes: but look here; it may be a good while before I get the right chance at that job; accidents might happen; 'tain't in such a very good place; we'll just regularly bury it--and bury it deep." "Good idea," said the comrade, who walked across the room, knelt down, raised one of the rearward hearth-stones and took out a bag that jingled pleasantly. He subtracted from it twenty or thirty dollars for himself and as much for Injun Joe, and passed the bag to the latter, who was on his knees in the corner, now, digging with his bowie-knife. The boys forgot all their fears, all their miseries in an instant. With gloating eyes they watched every movement. Luck!--the splendor of it was beyond all imagination! Six hundred dollars was money enough to make half a dozen boys rich! Here was treasure-hunting under the happiest auspices--there would not be any bothersome uncertainty as to where to dig. They nudged each other every moment--eloquent nudges and easily understood, for they simply meant--"Oh, but ain't you glad NOW we're here!" Joe's knife struck upon something. "Hello!" said he. "What is it?" said his comrade. "Half-rotten plank--no, it's a box, I believe. Here--bear a hand and we'll see what it's here for. Never mind, I've broke a hole." He reached his hand in and drew it out-- "Man, it's money!" The two men examined the handful of coins. They were gold. The boys above were as excited as themselves, and as delighted. Joe's comrade said: "We'll make quick work of this. There's an old rusty pick over amongst the weeds in the corner the other side of the fireplace--I saw it a minute ago." He ran and brought the boys' pick and shovel. Injun Joe took the pick, looked it over critically, shook his head, muttered something to himself, and then began to use it. The box was soon unearthed. It was not very large; it was iron bound and had been very strong before the slow years had injured it. The men contemplated the treasure awhile in blissful silence. "Pard, there's thousands of dollars here," said Injun Joe. "'Twas always said that Murrel's gang used to be around here one summer," the stranger observed. "I know it," said Injun Joe; "and this looks like it, I should say." "Now you won't need to do that job." The half-breed frowned. Said he: "You don't know me. Least you don't know all about that thing. 'Tain't robbery altogether--it's REVENGE!" and a wicked light flamed in his eyes. "I'll need your help in it. When it's finished--then Texas. Go home to your Nance and your kids, and stand by till you hear from me." "Well--if you say so; what'll we do with this--bury it again?" "Yes. [Ravishing delight overhead.] NO! by the great Sachem, no! [Profound distress overhead.] I'd nearly forgot. That pick had fresh earth on it! [The boys were sick with terror in a moment.] What business has a pick and a shovel here? What business with fresh earth on them? Who brought them here--and where are they gone? Have you heard anybody?--seen anybody? What! bury it again and leave them to come and see the ground disturbed? Not exactly--not exactly. We'll take it to my den." "Why, of course! Might have thought of that before. You mean Number One?" "No--Number Two--under the cross. The other place is bad--too common." "All right. It's nearly dark enough to start." Injun Joe got up and went about from window to window cautiously peeping out. Presently he said: "Who could have brought those tools here? Do you reckon they can be up-stairs?" The boys' breath forsook them. Injun Joe put his hand on his knife, halted a moment, undecided, and then turned toward the stairway. The boys thought of the closet, but their strength was gone. The steps came creaking up the stairs--the intolerable distress of the situation woke the stricken resolution of the lads--they were about to spring for the closet, when there was a crash of rotten timbers and Injun Joe landed on the ground amid the debris of the ruined stairway. He gathered himself up cursing, and his comrade said: "Now what's the use of all that? If it's anybody, and they're up there, let them STAY there--who cares? If they want to jump down, now, and get into trouble, who objects? It will be dark in fifteen minutes --and then let them follow us if they want to. I'm willing. In my opinion, whoever hove those things in here caught a sight of us and took us for ghosts or devils or something. I'll bet they're running yet." Joe grumbled awhile; then he agreed with his friend that what daylight was left ought to be economized in getting things ready for leaving. Shortly afterward they slipped out of the house in the deepening twilight, and moved toward the river with their precious box. Tom and Huck rose up, weak but vastly relieved, and stared after them through the chinks between the logs of the house. Follow? Not they. They were content to reach ground again without broken necks, and take the townward track over the hill. They did not talk much. They were too much absorbed in hating themselves--hating the ill luck that made them take the spade and the pick there. But for that, Injun Joe never would have suspected. He would have hidden the silver with the gold to wait there till his "revenge" was satisfied, and then he would have had the misfortune to find that money turn up missing. Bitter, bitter luck that the tools were ever brought there! They resolved to keep a lookout for that Spaniard when he should come to town spying out for chances to do his revengeful job, and follow him to "Number Two," wherever that might be. Then a ghastly thought occurred to Tom. "Revenge? What if he means US, Huck!" "Oh, don't!" said Huck, nearly fainting. They talked it all over, and as they entered town they agreed to believe that he might possibly mean somebody else--at least that he might at least mean nobody but Tom, since only Tom had testified. Very, very small comfort it was to Tom to be alone in danger! Company would be a palpable improvement, he thought. CHAPTER XXVII THE adventure of the day mightily tormented Tom's dreams that night. Four times he had his hands on that rich treasure and four times it wasted to nothingness in his fingers as sleep forsook him and wakefulness brought back the hard reality of his misfortune. As he lay in the early morning recalling the incidents of his great adventure, he noticed that they seemed curiously subdued and far away--somewhat as if they had happened in another world, or in a time long gone by. Then it occurred to him that the great adventure itself must be a dream! There was one very strong argument in favor of this idea--namely, that the quantity of coin he had seen was too vast to be real. He had never seen as much as fifty dollars in one mass before, and he was like all boys of his age and station in life, in that he imagined that all references to "hundreds" and "thousands" were mere fanciful forms of speech, and that no such sums really existed in the world. He never had supposed for a moment that so large a sum as a hundred dollars was to be found in actual money in any one's possession. If his notions of hidden treasure had been analyzed, they would have been found to consist of a handful of real dimes and a bushel of vague, splendid, ungraspable dollars. But the incidents of his adventure grew sensibly sharper and clearer under the attrition of thinking them over, and so he presently found himself leaning to the impression that the thing might not have been a dream, after all. This uncertainty must be swept away. He would snatch a hurried breakfast and go and find Huck. Huck was sitting on the gunwale of a flatboat, listlessly dangling his feet in the water and looking very melancholy. Tom concluded to let Huck lead up to the subject. If he did not do it, then the adventure would be proved to have been only a dream. "Hello, Huck!" "Hello, yourself." Silence, for a minute. "Tom, if we'd 'a' left the blame tools at the dead tree, we'd 'a' got the money. Oh, ain't it awful!" "'Tain't a dream, then, 'tain't a dream! Somehow I most wish it was. Dog'd if I don't, Huck." "What ain't a dream?" "Oh, that thing yesterday. I been half thinking it was." "Dream! If them stairs hadn't broke down you'd 'a' seen how much dream it was! I've had dreams enough all night--with that patch-eyed Spanish devil going for me all through 'em--rot him!" "No, not rot him. FIND him! Track the money!" "Tom, we'll never find him. A feller don't have only one chance for such a pile--and that one's lost. I'd feel mighty shaky if I was to see him, anyway." "Well, so'd I; but I'd like to see him, anyway--and track him out--to his Number Two." "Number Two--yes, that's it. I been thinking 'bout that. But I can't make nothing out of it. What do you reckon it is?" "I dono. It's too deep. Say, Huck--maybe it's the number of a house!" "Goody!... No, Tom, that ain't it. If it is, it ain't in this one-horse town. They ain't no numbers here." "Well, that's so. Lemme think a minute. Here--it's the number of a room--in a tavern, you know!" "Oh, that's the trick! They ain't only two taverns. We can find out quick." "You stay here, Huck, till I come." Tom was off at once. He did not care to have Huck's company in public places. He was gone half an hour. He found that in the best tavern, No. 2 had long been occupied by a young lawyer, and was still so occupied. In the less ostentatious house, No. 2 was a mystery. The tavern-keeper's young son said it was kept locked all the time, and he never saw anybody go into it or come out of it except at night; he did not know any particular reason for this state of things; had had some little curiosity, but it was rather feeble; had made the most of the mystery by entertaining himself with the idea that that room was "ha'nted"; had noticed that there was a light in there the night before. "That's what I've found out, Huck. I reckon that's the very No. 2 we're after." "I reckon it is, Tom. Now what you going to do?" "Lemme think." Tom thought a long time. Then he said: "I'll tell you. The back door of that No. 2 is the door that comes out into that little close alley between the tavern and the old rattle trap of a brick store. Now you get hold of all the door-keys you can find, and I'll nip all of auntie's, and the first dark night we'll go there and try 'em. And mind you, keep a lookout for Injun Joe, because he said he was going to drop into town and spy around once more for a chance to get his revenge. If you see him, you just follow him; and if he don't go to that No. 2, that ain't the place." "Lordy, I don't want to foller him by myself!" "Why, it'll be night, sure. He mightn't ever see you--and if he did, maybe he'd never think anything." "Well, if it's pretty dark I reckon I'll track him. I dono--I dono. I'll try." "You bet I'll follow him, if it's dark, Huck. Why, he might 'a' found out he couldn't get his revenge, and be going right after that money." "It's so, Tom, it's so. I'll foller him; I will, by jingoes!" "Now you're TALKING! Don't you ever weaken, Huck, and I won't." CHAPTER XXVIII THAT night Tom and Huck were ready for their adventure. They hung about the neighborhood of the tavern until after nine, one watching the alley at a distance and the other the tavern door. Nobody entered the alley or left it; nobody resembling the Spaniard entered or left the tavern door. The night promised to be a fair one; so Tom went home with the understanding that if a considerable degree of darkness came on, Huck was to come and "maow," whereupon he would slip out and try the keys. But the night remained clear, and Huck closed his watch and retired to bed in an empty sugar hogshead about twelve. Tuesday the boys had the same ill luck. Also Wednesday. But Thursday night promised better. Tom slipped out in good season with his aunt's old tin lantern, and a large towel to blindfold it with. He hid the lantern in Huck's sugar hogshead and the watch began. An hour before midnight the tavern closed up and its lights (the only ones thereabouts) were put out. No Spaniard had been seen. Nobody had entered or left the alley. Everything was auspicious. The blackness of darkness reigned, the perfect stillness was interrupted only by occasional mutterings of distant thunder. Tom got his lantern, lit it in the hogshead, wrapped it closely in the towel, and the two adventurers crept in the gloom toward the tavern. Huck stood sentry and Tom felt his way into the alley. Then there was a season of waiting anxiety that weighed upon Huck's spirits like a mountain. He began to wish he could see a flash from the lantern--it would frighten him, but it would at least tell him that Tom was alive yet. It seemed hours since Tom had disappeared. Surely he must have fainted; maybe he was dead; maybe his heart had burst under terror and excitement. In his uneasiness Huck found himself drawing closer and closer to the alley; fearing all sorts of dreadful things, and momentarily expecting some catastrophe to happen that would take away his breath. There was not much to take away, for he seemed only able to inhale it by thimblefuls, and his heart would soon wear itself out, the way it was beating. Suddenly there was a flash of light and Tom came tearing by him: "Run!" said he; "run, for your life!" He needn't have repeated it; once was enough; Huck was making thirty or forty miles an hour before the repetition was uttered. The boys never stopped till they reached the shed of a deserted slaughter-house at the lower end of the village. Just as they got within its shelter the storm burst and the rain poured down. As soon as Tom got his breath he said: "Huck, it was awful! I tried two of the keys, just as soft as I could; but they seemed to make such a power of racket that I couldn't hardly get my breath I was so scared. They wouldn't turn in the lock, either. Well, without noticing what I was doing, I took hold of the knob, and open comes the door! It warn't locked! I hopped in, and shook off the towel, and, GREAT CAESAR'S GHOST!" "What!--what'd you see, Tom?" "Huck, I most stepped onto Injun Joe's hand!" "No!" "Yes! He was lying there, sound asleep on the floor, with his old patch on his eye and his arms spread out." "Lordy, what did you do? Did he wake up?" "No, never budged. Drunk, I reckon. I just grabbed that towel and started!" "I'd never 'a' thought of the towel, I bet!" "Well, I would. My aunt would make me mighty sick if I lost it." "Say, Tom, did you see that box?" "Huck, I didn't wait to look around. I didn't see the box, I didn't see the cross. I didn't see anything but a bottle and a tin cup on the floor by Injun Joe; yes, I saw two barrels and lots more bottles in the room. Don't you see, now, what's the matter with that ha'nted room?" "How?" "Why, it's ha'nted with whiskey! Maybe ALL the Temperance Taverns have got a ha'nted room, hey, Huck?" "Well, I reckon maybe that's so. Who'd 'a' thought such a thing? But say, Tom, now's a mighty good time to get that box, if Injun Joe's drunk." "It is, that! You try it!" Huck shuddered. "Well, no--I reckon not." "And I reckon not, Huck. Only one bottle alongside of Injun Joe ain't enough. If there'd been three, he'd be drunk enough and I'd do it." There was a long pause for reflection, and then Tom said: "Lookyhere, Huck, less not try that thing any more till we know Injun Joe's not in there. It's too scary. Now, if we watch every night, we'll be dead sure to see him go out, some time or other, and then we'll snatch that box quicker'n lightning." "Well, I'm agreed. I'll watch the whole night long, and I'll do it every night, too, if you'll do the other part of the job." "All right, I will. All you got to do is to trot up Hooper Street a block and maow--and if I'm asleep, you throw some gravel at the window and that'll fetch me." "Agreed, and good as wheat!" "Now, Huck, the storm's over, and I'll go home. It'll begin to be daylight in a couple of hours. You go back and watch that long, will you?" "I said I would, Tom, and I will. I'll ha'nt that tavern every night for a year! I'll sleep all day and I'll stand watch all night." "That's all right. Now, where you going to sleep?" "In Ben Rogers' hayloft. He lets me, and so does his pap's nigger man, Uncle Jake. I tote water for Uncle Jake whenever he wants me to, and any time I ask him he gives me a little something to eat if he can spare it. That's a mighty good nigger, Tom. He likes me, becuz I don't ever act as if I was above him. Sometime I've set right down and eat WITH him. But you needn't tell that. A body's got to do things when he's awful hungry he wouldn't want to do as a steady thing." "Well, if I don't want you in the daytime, I'll let you sleep. I won't come bothering around. Any time you see something's up, in the night, just skip right around and maow." CHAPTER XXIX THE first thing Tom heard on Friday morning was a glad piece of news --Judge Thatcher's family had come back to town the night before. Both Injun Joe and the treasure sunk into secondary importance for a moment, and Becky took the chief place in the boy's interest. He saw her and they had an exhausting good time playing "hi-spy" and "gully-keeper" with a crowd of their school-mates. The day was completed and crowned in a peculiarly satisfactory way: Becky teased her mother to appoint the next day for the long-promised and long-delayed picnic, and she consented. The child's delight was boundless; and Tom's not more moderate. The invitations were sent out before sunset, and straightway the young folks of the village were thrown into a fever of preparation and pleasurable anticipation. Tom's excitement enabled him to keep awake until a pretty late hour, and he had good hopes of hearing Huck's "maow," and of having his treasure to astonish Becky and the picnickers with, next day; but he was disappointed. No signal came that night. Morning came, eventually, and by ten or eleven o'clock a giddy and rollicking company were gathered at Judge Thatcher's, and everything was ready for a start. It was not the custom for elderly people to mar the picnics with their presence. The children were considered safe enough under the wings of a few young ladies of eighteen and a few young gentlemen of twenty-three or thereabouts. The old steam ferryboat was chartered for the occasion; presently the gay throng filed up the main street laden with provision-baskets. Sid was sick and had to miss the fun; Mary remained at home to entertain him. The last thing Mrs. Thatcher said to Becky, was: "You'll not get back till late. Perhaps you'd better stay all night with some of the girls that live near the ferry-landing, child." "Then I'll stay with Susy Harper, mamma." "Very well. And mind and behave yourself and don't be any trouble." Presently, as they tripped along, Tom said to Becky: "Say--I'll tell you what we'll do. 'Stead of going to Joe Harper's we'll climb right up the hill and stop at the Widow Douglas'. She'll have ice-cream! She has it most every day--dead loads of it. And she'll be awful glad to have us." "Oh, that will be fun!" Then Becky reflected a moment and said: "But what will mamma say?" "How'll she ever know?" The girl turned the idea over in her mind, and said reluctantly: "I reckon it's wrong--but--" "But shucks! Your mother won't know, and so what's the harm? All she wants is that you'll be safe; and I bet you she'd 'a' said go there if she'd 'a' thought of it. I know she would!" The Widow Douglas' splendid hospitality was a tempting bait. It and Tom's persuasions presently carried the day. So it was decided to say nothing anybody about the night's programme. Presently it occurred to Tom that maybe Huck might come this very night and give the signal. The thought took a deal of the spirit out of his anticipations. Still he could not bear to give up the fun at Widow Douglas'. And why should he give it up, he reasoned--the signal did not come the night before, so why should it be any more likely to come to-night? The sure fun of the evening outweighed the uncertain treasure; and, boy-like, he determined to yield to the stronger inclination and not allow himself to think of the box of money another time that day. Three miles below town the ferryboat stopped at the mouth of a woody hollow and tied up. The crowd swarmed ashore and soon the forest distances and craggy heights echoed far and near with shoutings and laughter. All the different ways of getting hot and tired were gone through with, and by-and-by the rovers straggled back to camp fortified with responsible appetites, and then the destruction of the good things began. After the feast there was a refreshing season of rest and chat in the shade of spreading oaks. By-and-by somebody shouted: "Who's ready for the cave?" Everybody was. Bundles of candles were procured, and straightway there was a general scamper up the hill. The mouth of the cave was up the hillside--an opening shaped like a letter A. Its massive oaken door stood unbarred. Within was a small chamber, chilly as an ice-house, and walled by Nature with solid limestone that was dewy with a cold sweat. It was romantic and mysterious to stand here in the deep gloom and look out upon the green valley shining in the sun. But the impressiveness of the situation quickly wore off, and the romping began again. The moment a candle was lighted there was a general rush upon the owner of it; a struggle and a gallant defence followed, but the candle was soon knocked down or blown out, and then there was a glad clamor of laughter and a new chase. But all things have an end. By-and-by the procession went filing down the steep descent of the main avenue, the flickering rank of lights dimly revealing the lofty walls of rock almost to their point of junction sixty feet overhead. This main avenue was not more than eight or ten feet wide. Every few steps other lofty and still narrower crevices branched from it on either hand--for McDougal's cave was but a vast labyrinth of crooked aisles that ran into each other and out again and led nowhere. It was said that one might wander days and nights together through its intricate tangle of rifts and chasms, and never find the end of the cave; and that he might go down, and down, and still down, into the earth, and it was just the same--labyrinth under labyrinth, and no end to any of them. No man "knew" the cave. That was an impossible thing. Most of the young men knew a portion of it, and it was not customary to venture much beyond this known portion. Tom Sawyer knew as much of the cave as any one. The procession moved along the main avenue some three-quarters of a mile, and then groups and couples began to slip aside into branch avenues, fly along the dismal corridors, and take each other by surprise at points where the corridors joined again. Parties were able to elude each other for the space of half an hour without going beyond the "known" ground. By-and-by, one group after another came straggling back to the mouth of the cave, panting, hilarious, smeared from head to foot with tallow drippings, daubed with clay, and entirely delighted with the success of the day. Then they were astonished to find that they had been taking no note of time and that night was about at hand. The clanging bell had been calling for half an hour. However, this sort of close to the day's adventures was romantic and therefore satisfactory. When the ferryboat with her wild freight pushed into the stream, nobody cared sixpence for the wasted time but the captain of the craft. Huck was already upon his watch when the ferryboat's lights went glinting past the wharf. He heard no noise on board, for the young people were as subdued and still as people usually are who are nearly tired to death. He wondered what boat it was, and why she did not stop at the wharf--and then he dropped her out of his mind and put his attention upon his business. The night was growing cloudy and dark. Ten o'clock came, and the noise of vehicles ceased, scattered lights began to wink out, all straggling foot-passengers disappeared, the village betook itself to its slumbers and left the small watcher alone with the silence and the ghosts. Eleven o'clock came, and the tavern lights were put out; darkness everywhere, now. Huck waited what seemed a weary long time, but nothing happened. His faith was weakening. Was there any use? Was there really any use? Why not give it up and turn in? A noise fell upon his ear. He was all attention in an instant. The alley door closed softly. He sprang to the corner of the brick store. The next moment two men brushed by him, and one seemed to have something under his arm. It must be that box! So they were going to remove the treasure. Why call Tom now? It would be absurd--the men would get away with the box and never be found again. No, he would stick to their wake and follow them; he would trust to the darkness for security from discovery. So communing with himself, Huck stepped out and glided along behind the men, cat-like, with bare feet, allowing them to keep just far enough ahead not to be invisible. They moved up the river street three blocks, then turned to the left up a cross-street. They went straight ahead, then, until they came to the path that led up Cardiff Hill; this they took. They passed by the old Welshman's house, half-way up the hill, without hesitating, and still climbed upward. Good, thought Huck, they will bury it in the old quarry. But they never stopped at the quarry. They passed on, up the summit. They plunged into the narrow path between the tall sumach bushes, and were at once hidden in the gloom. Huck closed up and shortened his distance, now, for they would never be able to see him. He trotted along awhile; then slackened his pace, fearing he was gaining too fast; moved on a piece, then stopped altogether; listened; no sound; none, save that he seemed to hear the beating of his own heart. The hooting of an owl came over the hill--ominous sound! But no footsteps. Heavens, was everything lost! He was about to spring with winged feet, when a man cleared his throat not four feet from him! Huck's heart shot into his throat, but he swallowed it again; and then he stood there shaking as if a dozen agues had taken charge of him at once, and so weak that he thought he must surely fall to the ground. He knew where he was. He knew he was within five steps of the stile leading into Widow Douglas' grounds. Very well, he thought, let them bury it there; it won't be hard to find. Now there was a voice--a very low voice--Injun Joe's: "Damn her, maybe she's got company--there's lights, late as it is." "I can't see any." This was that stranger's voice--the stranger of the haunted house. A deadly chill went to Huck's heart--this, then, was the "revenge" job! His thought was, to fly. Then he remembered that the Widow Douglas had been kind to him more than once, and maybe these men were going to murder her. He wished he dared venture to warn her; but he knew he didn't dare--they might come and catch him. He thought all this and more in the moment that elapsed between the stranger's remark and Injun Joe's next--which was-- "Because the bush is in your way. Now--this way--now you see, don't you?" "Yes. Well, there IS company there, I reckon. Better give it up." "Give it up, and I just leaving this country forever! Give it up and maybe never have another chance. I tell you again, as I've told you before, I don't care for her swag--you may have it. But her husband was rough on me--many times he was rough on me--and mainly he was the justice of the peace that jugged me for a vagrant. And that ain't all. It ain't a millionth part of it! He had me HORSEWHIPPED!--horsewhipped in front of the jail, like a nigger!--with all the town looking on! HORSEWHIPPED!--do you understand? He took advantage of me and died. But I'll take it out of HER." "Oh, don't kill her! Don't do that!" "Kill? Who said anything about killing? I would kill HIM if he was here; but not her. When you want to get revenge on a woman you don't kill her--bosh! you go for her looks. You slit her nostrils--you notch her ears like a sow!" "By God, that's--" "Keep your opinion to yourself! It will be safest for you. I'll tie her to the bed. If she bleeds to death, is that my fault? I'll not cry, if she does. My friend, you'll help me in this thing--for MY sake --that's why you're here--I mightn't be able alone. If you flinch, I'll kill you. Do you understand that? And if I have to kill you, I'll kill her--and then I reckon nobody'll ever know much about who done this business." "Well, if it's got to be done, let's get at it. The quicker the better--I'm all in a shiver." "Do it NOW? And company there? Look here--I'll get suspicious of you, first thing you know. No--we'll wait till the lights are out--there's no hurry." Huck felt that a silence was going to ensue--a thing still more awful than any amount of murderous talk; so he held his breath and stepped gingerly back; planted his foot carefully and firmly, after balancing, one-legged, in a precarious way and almost toppling over, first on one side and then on the other. He took another step back, with the same elaboration and the same risks; then another and another, and--a twig snapped under his foot! His breath stopped and he listened. There was no sound--the stillness was perfect. His gratitude was measureless. Now he turned in his tracks, between the walls of sumach bushes--turned himself as carefully as if he were a ship--and then stepped quickly but cautiously along. When he emerged at the quarry he felt secure, and so he picked up his nimble heels and flew. Down, down he sped, till he reached the Welshman's. He banged at the door, and presently the heads of the old man and his two stalwart sons were thrust from windows. "What's the row there? Who's banging? What do you want?" "Let me in--quick! I'll tell everything." "Why, who are you?" "Huckleberry Finn--quick, let me in!" "Huckleberry Finn, indeed! It ain't a name to open many doors, I judge! But let him in, lads, and let's see what's the trouble." "Please don't ever tell I told you," were Huck's first words when he got in. "Please don't--I'd be killed, sure--but the widow's been good friends to me sometimes, and I want to tell--I WILL tell if you'll promise you won't ever say it was me." "By George, he HAS got something to tell, or he wouldn't act so!" exclaimed the old man; "out with it and nobody here'll ever tell, lad." Three minutes later the old man and his sons, well armed, were up the hill, and just entering the sumach path on tiptoe, their weapons in their hands. Huck accompanied them no further. He hid behind a great bowlder and fell to listening. There was a lagging, anxious silence, and then all of a sudden there was an explosion of firearms and a cry. Huck waited for no particulars. He sprang away and sped down the hill as fast as his legs could carry him. CHAPTER XXX AS the earliest suspicion of dawn appeared on Sunday morning, Huck came groping up the hill and rapped gently at the old Welshman's door. The inmates were asleep, but it was a sleep that was set on a hair-trigger, on account of the exciting episode of the night. A call came from a window: "Who's there!" Huck's scared voice answered in a low tone: "Please let me in! It's only Huck Finn!" "It's a name that can open this door night or day, lad!--and welcome!" These were strange words to the vagabond boy's ears, and the pleasantest he had ever heard. He could not recollect that the closing word had ever been applied in his case before. The door was quickly unlocked, and he entered. Huck was given a seat and the old man and his brace of tall sons speedily dressed themselves. "Now, my boy, I hope you're good and hungry, because breakfast will be ready as soon as the sun's up, and we'll have a piping hot one, too --make yourself easy about that! I and the boys hoped you'd turn up and stop here last night." "I was awful scared," said Huck, "and I run. I took out when the pistols went off, and I didn't stop for three mile. I've come now becuz I wanted to know about it, you know; and I come before daylight becuz I didn't want to run across them devils, even if they was dead." "Well, poor chap, you do look as if you'd had a hard night of it--but there's a bed here for you when you've had your breakfast. No, they ain't dead, lad--we are sorry enough for that. You see we knew right where to put our hands on them, by your description; so we crept along on tiptoe till we got within fifteen feet of them--dark as a cellar that sumach path was--and just then I found I was going to sneeze. It was the meanest kind of luck! I tried to keep it back, but no use --'twas bound to come, and it did come! I was in the lead with my pistol raised, and when the sneeze started those scoundrels a-rustling to get out of the path, I sung out, 'Fire boys!' and blazed away at the place where the rustling was. So did the boys. But they were off in a jiffy, those villains, and we after them, down through the woods. I judge we never touched them. They fired a shot apiece as they started, but their bullets whizzed by and didn't do us any harm. As soon as we lost the sound of their feet we quit chasing, and went down and stirred up the constables. They got a posse together, and went off to guard the river bank, and as soon as it is light the sheriff and a gang are going to beat up the woods. My boys will be with them presently. I wish we had some sort of description of those rascals--'twould help a good deal. But you couldn't see what they were like, in the dark, lad, I suppose?" "Oh yes; I saw them down-town and follered them." "Splendid! Describe them--describe them, my boy!" "One's the old deaf and dumb Spaniard that's ben around here once or twice, and t'other's a mean-looking, ragged--" "That's enough, lad, we know the men! Happened on them in the woods back of the widow's one day, and they slunk away. Off with you, boys, and tell the sheriff--get your breakfast to-morrow morning!" The Welshman's sons departed at once. As they were leaving the room Huck sprang up and exclaimed: "Oh, please don't tell ANYbody it was me that blowed on them! Oh, please!" "All right if you say it, Huck, but you ought to have the credit of what you did." "Oh no, no! Please don't tell!" When the young men were gone, the old Welshman said: "They won't tell--and I won't. But why don't you want it known?" Huck would not explain, further than to say that he already knew too much about one of those men and would not have the man know that he knew anything against him for the whole world--he would be killed for knowing it, sure. The old man promised secrecy once more, and said: "How did you come to follow these fellows, lad? Were they looking suspicious?" Huck was silent while he framed a duly cautious reply. Then he said: "Well, you see, I'm a kind of a hard lot,--least everybody says so, and I don't see nothing agin it--and sometimes I can't sleep much, on account of thinking about it and sort of trying to strike out a new way of doing. That was the way of it last night. I couldn't sleep, and so I come along up-street 'bout midnight, a-turning it all over, and when I got to that old shackly brick store by the Temperance Tavern, I backed up agin the wall to have another think. Well, just then along comes these two chaps slipping along close by me, with something under their arm, and I reckoned they'd stole it. One was a-smoking, and t'other one wanted a light; so they stopped right before me and the cigars lit up their faces and I see that the big one was the deaf and dumb Spaniard, by his white whiskers and the patch on his eye, and t'other one was a rusty, ragged-looking devil." "Could you see the rags by the light of the cigars?" This staggered Huck for a moment. Then he said: "Well, I don't know--but somehow it seems as if I did." "Then they went on, and you--" "Follered 'em--yes. That was it. I wanted to see what was up--they sneaked along so. I dogged 'em to the widder's stile, and stood in the dark and heard the ragged one beg for the widder, and the Spaniard swear he'd spile her looks just as I told you and your two--" "What! The DEAF AND DUMB man said all that!" Huck had made another terrible mistake! He was trying his best to keep the old man from getting the faintest hint of who the Spaniard might be, and yet his tongue seemed determined to get him into trouble in spite of all he could do. He made several efforts to creep out of his scrape, but the old man's eye was upon him and he made blunder after blunder. Presently the Welshman said: "My boy, don't be afraid of me. I wouldn't hurt a hair of your head for all the world. No--I'd protect you--I'd protect you. This Spaniard is not deaf and dumb; you've let that slip without intending it; you can't cover that up now. You know something about that Spaniard that you want to keep dark. Now trust me--tell me what it is, and trust me --I won't betray you." Huck looked into the old man's honest eyes a moment, then bent over and whispered in his ear: "'Tain't a Spaniard--it's Injun Joe!" The Welshman almost jumped out of his chair. In a moment he said: "It's all plain enough, now. When you talked about notching ears and slitting noses I judged that that was your own embellishment, because white men don't take that sort of revenge. But an Injun! That's a different matter altogether." During breakfast the talk went on, and in the course of it the old man said that the last thing which he and his sons had done, before going to bed, was to get a lantern and examine the stile and its vicinity for marks of blood. They found none, but captured a bulky bundle of-- "Of WHAT?" If the words had been lightning they could not have leaped with a more stunning suddenness from Huck's blanched lips. His eyes were staring wide, now, and his breath suspended--waiting for the answer. The Welshman started--stared in return--three seconds--five seconds--ten --then replied: "Of burglar's tools. Why, what's the MATTER with you?" Huck sank back, panting gently, but deeply, unutterably grateful. The Welshman eyed him gravely, curiously--and presently said: "Yes, burglar's tools. That appears to relieve you a good deal. But what did give you that turn? What were YOU expecting we'd found?" Huck was in a close place--the inquiring eye was upon him--he would have given anything for material for a plausible answer--nothing suggested itself--the inquiring eye was boring deeper and deeper--a senseless reply offered--there was no time to weigh it, so at a venture he uttered it--feebly: "Sunday-school books, maybe." Poor Huck was too distressed to smile, but the old man laughed loud and joyously, shook up the details of his anatomy from head to foot, and ended by saying that such a laugh was money in a-man's pocket, because it cut down the doctor's bill like everything. Then he added: "Poor old chap, you're white and jaded--you ain't well a bit--no wonder you're a little flighty and off your balance. But you'll come out of it. Rest and sleep will fetch you out all right, I hope." Huck was irritated to think he had been such a goose and betrayed such a suspicious excitement, for he had dropped the idea that the parcel brought from the tavern was the treasure, as soon as he had heard the talk at the widow's stile. He had only thought it was not the treasure, however--he had not known that it wasn't--and so the suggestion of a captured bundle was too much for his self-possession. But on the whole he felt glad the little episode had happened, for now he knew beyond all question that that bundle was not THE bundle, and so his mind was at rest and exceedingly comfortable. In fact, everything seemed to be drifting just in the right direction, now; the treasure must be still in No. 2, the men would be captured and jailed that day, and he and Tom could seize the gold that night without any trouble or any fear of interruption. Just as breakfast was completed there was a knock at the door. Huck jumped for a hiding-place, for he had no mind to be connected even remotely with the late event. The Welshman admitted several ladies and gentlemen, among them the Widow Douglas, and noticed that groups of citizens were climbing up the hill--to stare at the stile. So the news had spread. The Welshman had to tell the story of the night to the visitors. The widow's gratitude for her preservation was outspoken. "Don't say a word about it, madam. There's another that you're more beholden to than you are to me and my boys, maybe, but he don't allow me to tell his name. We wouldn't have been there but for him." Of course this excited a curiosity so vast that it almost belittled the main matter--but the Welshman allowed it to eat into the vitals of his visitors, and through them be transmitted to the whole town, for he refused to part with his secret. When all else had been learned, the widow said: "I went to sleep reading in bed and slept straight through all that noise. Why didn't you come and wake me?" "We judged it warn't worth while. Those fellows warn't likely to come again--they hadn't any tools left to work with, and what was the use of waking you up and scaring you to death? My three negro men stood guard at your house all the rest of the night. They've just come back." More visitors came, and the story had to be told and retold for a couple of hours more. There was no Sabbath-school during day-school vacation, but everybody was early at church. The stirring event was well canvassed. News came that not a sign of the two villains had been yet discovered. When the sermon was finished, Judge Thatcher's wife dropped alongside of Mrs. Harper as she moved down the aisle with the crowd and said: "Is my Becky going to sleep all day? I just expected she would be tired to death." "Your Becky?" "Yes," with a startled look--"didn't she stay with you last night?" "Why, no." Mrs. Thatcher turned pale, and sank into a pew, just as Aunt Polly, talking briskly with a friend, passed by. Aunt Polly said: "Good-morning, Mrs. Thatcher. Good-morning, Mrs. Harper. I've got a boy that's turned up missing. I reckon my Tom stayed at your house last night--one of you. And now he's afraid to come to church. I've got to settle with him." Mrs. Thatcher shook her head feebly and turned paler than ever. "He didn't stay with us," said Mrs. Harper, beginning to look uneasy. A marked anxiety came into Aunt Polly's face. "Joe Harper, have you seen my Tom this morning?" "No'm." "When did you see him last?" Joe tried to remember, but was not sure he could say. The people had stopped moving out of church. Whispers passed along, and a boding uneasiness took possession of every countenance. Children were anxiously questioned, and young teachers. They all said they had not noticed whether Tom and Becky were on board the ferryboat on the homeward trip; it was dark; no one thought of inquiring if any one was missing. One young man finally blurted out his fear that they were still in the cave! Mrs. Thatcher swooned away. Aunt Polly fell to crying and wringing her hands. The alarm swept from lip to lip, from group to group, from street to street, and within five minutes the bells were wildly clanging and the whole town was up! The Cardiff Hill episode sank into instant insignificance, the burglars were forgotten, horses were saddled, skiffs were manned, the ferryboat ordered out, and before the horror was half an hour old, two hundred men were pouring down highroad and river toward the cave. All the long afternoon the village seemed empty and dead. Many women visited Aunt Polly and Mrs. Thatcher and tried to comfort them. They cried with them, too, and that was still better than words. All the tedious night the town waited for news; but when the morning dawned at last, all the word that came was, "Send more candles--and send food." Mrs. Thatcher was almost crazed; and Aunt Polly, also. Judge Thatcher sent messages of hope and encouragement from the cave, but they conveyed no real cheer. The old Welshman came home toward daylight, spattered with candle-grease, smeared with clay, and almost worn out. He found Huck still in the bed that had been provided for him, and delirious with fever. The physicians were all at the cave, so the Widow Douglas came and took charge of the patient. She said she would do her best by him, because, whether he was good, bad, or indifferent, he was the Lord's, and nothing that was the Lord's was a thing to be neglected. The Welshman said Huck had good spots in him, and the widow said: "You can depend on it. That's the Lord's mark. He don't leave it off. He never does. Puts it somewhere on every creature that comes from his hands." Early in the forenoon parties of jaded men began to straggle into the village, but the strongest of the citizens continued searching. All the news that could be gained was that remotenesses of the cavern were being ransacked that had never been visited before; that every corner and crevice was going to be thoroughly searched; that wherever one wandered through the maze of passages, lights were to be seen flitting hither and thither in the distance, and shoutings and pistol-shots sent their hollow reverberations to the ear down the sombre aisles. In one place, far from the section usually traversed by tourists, the names "BECKY & TOM" had been found traced upon the rocky wall with candle-smoke, and near at hand a grease-soiled bit of ribbon. Mrs. Thatcher recognized the ribbon and cried over it. She said it was the last relic she should ever have of her child; and that no other memorial of her could ever be so precious, because this one parted latest from the living body before the awful death came. Some said that now and then, in the cave, a far-away speck of light would glimmer, and then a glorious shout would burst forth and a score of men go trooping down the echoing aisle--and then a sickening disappointment always followed; the children were not there; it was only a searcher's light. Three dreadful days and nights dragged their tedious hours along, and the village sank into a hopeless stupor. No one had heart for anything. The accidental discovery, just made, that the proprietor of the Temperance Tavern kept liquor on his premises, scarcely fluttered the public pulse, tremendous as the fact was. In a lucid interval, Huck feebly led up to the subject of taverns, and finally asked--dimly dreading the worst--if anything had been discovered at the Temperance Tavern since he had been ill. "Yes," said the widow. Huck started up in bed, wild-eyed: "What? What was it?" "Liquor!--and the place has been shut up. Lie down, child--what a turn you did give me!" "Only tell me just one thing--only just one--please! Was it Tom Sawyer that found it?" The widow burst into tears. "Hush, hush, child, hush! I've told you before, you must NOT talk. You are very, very sick!" Then nothing but liquor had been found; there would have been a great powwow if it had been the gold. So the treasure was gone forever--gone forever! But what could she be crying about? Curious that she should cry. These thoughts worked their dim way through Huck's mind, and under the weariness they gave him he fell asleep. The widow said to herself: "There--he's asleep, poor wreck. Tom Sawyer find it! Pity but somebody could find Tom Sawyer! Ah, there ain't many left, now, that's got hope enough, or strength enough, either, to go on searching." CHAPTER XXXI NOW to return to Tom and Becky's share in the picnic. They tripped along the murky aisles with the rest of the company, visiting the familiar wonders of the cave--wonders dubbed with rather over-descriptive names, such as "The Drawing-Room," "The Cathedral," "Aladdin's Palace," and so on. Presently the hide-and-seek frolicking began, and Tom and Becky engaged in it with zeal until the exertion began to grow a trifle wearisome; then they wandered down a sinuous avenue holding their candles aloft and reading the tangled web-work of names, dates, post-office addresses, and mottoes with which the rocky walls had been frescoed (in candle-smoke). Still drifting along and talking, they scarcely noticed that they were now in a part of the cave whose walls were not frescoed. They smoked their own names under an overhanging shelf and moved on. Presently they came to a place where a little stream of water, trickling over a ledge and carrying a limestone sediment with it, had, in the slow-dragging ages, formed a laced and ruffled Niagara in gleaming and imperishable stone. Tom squeezed his small body behind it in order to illuminate it for Becky's gratification. He found that it curtained a sort of steep natural stairway which was enclosed between narrow walls, and at once the ambition to be a discoverer seized him. Becky responded to his call, and they made a smoke-mark for future guidance, and started upon their quest. They wound this way and that, far down into the secret depths of the cave, made another mark, and branched off in search of novelties to tell the upper world about. In one place they found a spacious cavern, from whose ceiling depended a multitude of shining stalactites of the length and circumference of a man's leg; they walked all about it, wondering and admiring, and presently left it by one of the numerous passages that opened into it. This shortly brought them to a bewitching spring, whose basin was incrusted with a frostwork of glittering crystals; it was in the midst of a cavern whose walls were supported by many fantastic pillars which had been formed by the joining of great stalactites and stalagmites together, the result of the ceaseless water-drip of centuries. Under the roof vast knots of bats had packed themselves together, thousands in a bunch; the lights disturbed the creatures and they came flocking down by hundreds, squeaking and darting furiously at the candles. Tom knew their ways and the danger of this sort of conduct. He seized Becky's hand and hurried her into the first corridor that offered; and none too soon, for a bat struck Becky's light out with its wing while she was passing out of the cavern. The bats chased the children a good distance; but the fugitives plunged into every new passage that offered, and at last got rid of the perilous things. Tom found a subterranean lake, shortly, which stretched its dim length away until its shape was lost in the shadows. He wanted to explore its borders, but concluded that it would be best to sit down and rest awhile, first. Now, for the first time, the deep stillness of the place laid a clammy hand upon the spirits of the children. Becky said: "Why, I didn't notice, but it seems ever so long since I heard any of the others." "Come to think, Becky, we are away down below them--and I don't know how far away north, or south, or east, or whichever it is. We couldn't hear them here." Becky grew apprehensive. "I wonder how long we've been down here, Tom? We better start back." "Yes, I reckon we better. P'raps we better." "Can you find the way, Tom? It's all a mixed-up crookedness to me." "I reckon I could find it--but then the bats. If they put our candles out it will be an awful fix. Let's try some other way, so as not to go through there." "Well. But I hope we won't get lost. It would be so awful!" and the girl shuddered at the thought of the dreadful possibilities. They started through a corridor, and traversed it in silence a long way, glancing at each new opening, to see if there was anything familiar about the look of it; but they were all strange. Every time Tom made an examination, Becky would watch his face for an encouraging sign, and he would say cheerily: "Oh, it's all right. This ain't the one, but we'll come to it right away!" But he felt less and less hopeful with each failure, and presently began to turn off into diverging avenues at sheer random, in desperate hope of finding the one that was wanted. He still said it was "all right," but there was such a leaden dread at his heart that the words had lost their ring and sounded just as if he had said, "All is lost!" Becky clung to his side in an anguish of fear, and tried hard to keep back the tears, but they would come. At last she said: "Oh, Tom, never mind the bats, let's go back that way! We seem to get worse and worse off all the time." "Listen!" said he. Profound silence; silence so deep that even their breathings were conspicuous in the hush. Tom shouted. The call went echoing down the empty aisles and died out in the distance in a faint sound that resembled a ripple of mocking laughter. "Oh, don't do it again, Tom, it is too horrid," said Becky. "It is horrid, but I better, Becky; they might hear us, you know," and he shouted again. The "might" was even a chillier horror than the ghostly laughter, it so confessed a perishing hope. The children stood still and listened; but there was no result. Tom turned upon the back track at once, and hurried his steps. It was but a little while before a certain indecision in his manner revealed another fearful fact to Becky--he could not find his way back! "Oh, Tom, you didn't make any marks!" "Becky, I was such a fool! Such a fool! I never thought we might want to come back! No--I can't find the way. It's all mixed up." "Tom, Tom, we're lost! we're lost! We never can get out of this awful place! Oh, why DID we ever leave the others!" She sank to the ground and burst into such a frenzy of crying that Tom was appalled with the idea that she might die, or lose her reason. He sat down by her and put his arms around her; she buried her face in his bosom, she clung to him, she poured out her terrors, her unavailing regrets, and the far echoes turned them all to jeering laughter. Tom begged her to pluck up hope again, and she said she could not. He fell to blaming and abusing himself for getting her into this miserable situation; this had a better effect. She said she would try to hope again, she would get up and follow wherever he might lead if only he would not talk like that any more. For he was no more to blame than she, she said. So they moved on again--aimlessly--simply at random--all they could do was to move, keep moving. For a little while, hope made a show of reviving--not with any reason to back it, but only because it is its nature to revive when the spring has not been taken out of it by age and familiarity with failure. By-and-by Tom took Becky's candle and blew it out. This economy meant so much! Words were not needed. Becky understood, and her hope died again. She knew that Tom had a whole candle and three or four pieces in his pockets--yet he must economize. By-and-by, fatigue began to assert its claims; the children tried to pay attention, for it was dreadful to think of sitting down when time was grown to be so precious, moving, in some direction, in any direction, was at least progress and might bear fruit; but to sit down was to invite death and shorten its pursuit. At last Becky's frail limbs refused to carry her farther. She sat down. Tom rested with her, and they talked of home, and the friends there, and the comfortable beds and, above all, the light! Becky cried, and Tom tried to think of some way of comforting her, but all his encouragements were grown threadbare with use, and sounded like sarcasms. Fatigue bore so heavily upon Becky that she drowsed off to sleep. Tom was grateful. He sat looking into her drawn face and saw it grow smooth and natural under the influence of pleasant dreams; and by-and-by a smile dawned and rested there. The peaceful face reflected somewhat of peace and healing into his own spirit, and his thoughts wandered away to bygone times and dreamy memories. While he was deep in his musings, Becky woke up with a breezy little laugh--but it was stricken dead upon her lips, and a groan followed it. "Oh, how COULD I sleep! I wish I never, never had waked! No! No, I don't, Tom! Don't look so! I won't say it again." "I'm glad you've slept, Becky; you'll feel rested, now, and we'll find the way out." "We can try, Tom; but I've seen such a beautiful country in my dream. I reckon we are going there." "Maybe not, maybe not. Cheer up, Becky, and let's go on trying." They rose up and wandered along, hand in hand and hopeless. They tried to estimate how long they had been in the cave, but all they knew was that it seemed days and weeks, and yet it was plain that this could not be, for their candles were not gone yet. A long time after this--they could not tell how long--Tom said they must go softly and listen for dripping water--they must find a spring. They found one presently, and Tom said it was time to rest again. Both were cruelly tired, yet Becky said she thought she could go a little farther. She was surprised to hear Tom dissent. She could not understand it. They sat down, and Tom fastened his candle to the wall in front of them with some clay. Thought was soon busy; nothing was said for some time. Then Becky broke the silence: "Tom, I am so hungry!" Tom took something out of his pocket. "Do you remember this?" said he. Becky almost smiled. "It's our wedding-cake, Tom." "Yes--I wish it was as big as a barrel, for it's all we've got." "I saved it from the picnic for us to dream on, Tom, the way grown-up people do with wedding-cake--but it'll be our--" She dropped the sentence where it was. Tom divided the cake and Becky ate with good appetite, while Tom nibbled at his moiety. There was abundance of cold water to finish the feast with. By-and-by Becky suggested that they move on again. Tom was silent a moment. Then he said: "Becky, can you bear it if I tell you something?" Becky's face paled, but she thought she could. "Well, then, Becky, we must stay here, where there's water to drink. That little piece is our last candle!" Becky gave loose to tears and wailings. Tom did what he could to comfort her, but with little effect. At length Becky said: "Tom!" "Well, Becky?" "They'll miss us and hunt for us!" "Yes, they will! Certainly they will!" "Maybe they're hunting for us now, Tom." "Why, I reckon maybe they are. I hope they are." "When would they miss us, Tom?" "When they get back to the boat, I reckon." "Tom, it might be dark then--would they notice we hadn't come?" "I don't know. But anyway, your mother would miss you as soon as they got home." A frightened look in Becky's face brought Tom to his senses and he saw that he had made a blunder. Becky was not to have gone home that night! The children became silent and thoughtful. In a moment a new burst of grief from Becky showed Tom that the thing in his mind had struck hers also--that the Sabbath morning might be half spent before Mrs. Thatcher discovered that Becky was not at Mrs. Harper's. The children fastened their eyes upon their bit of candle and watched it melt slowly and pitilessly away; saw the half inch of wick stand alone at last; saw the feeble flame rise and fall, climb the thin column of smoke, linger at its top a moment, and then--the horror of utter darkness reigned! How long afterward it was that Becky came to a slow consciousness that she was crying in Tom's arms, neither could tell. All that they knew was, that after what seemed a mighty stretch of time, both awoke out of a dead stupor of sleep and resumed their miseries once more. Tom said it might be Sunday, now--maybe Monday. He tried to get Becky to talk, but her sorrows were too oppressive, all her hopes were gone. Tom said that they must have been missed long ago, and no doubt the search was going on. He would shout and maybe some one would come. He tried it; but in the darkness the distant echoes sounded so hideously that he tried it no more. The hours wasted away, and hunger came to torment the captives again. A portion of Tom's half of the cake was left; they divided and ate it. But they seemed hungrier than before. The poor morsel of food only whetted desire. By-and-by Tom said: "SH! Did you hear that?" Both held their breath and listened. There was a sound like the faintest, far-off shout. Instantly Tom answered it, and leading Becky by the hand, started groping down the corridor in its direction. Presently he listened again; again the sound was heard, and apparently a little nearer. "It's them!" said Tom; "they're coming! Come along, Becky--we're all right now!" The joy of the prisoners was almost overwhelming. Their speed was slow, however, because pitfalls were somewhat common, and had to be guarded against. They shortly came to one and had to stop. It might be three feet deep, it might be a hundred--there was no passing it at any rate. Tom got down on his breast and reached as far down as he could. No bottom. They must stay there and wait until the searchers came. They listened; evidently the distant shoutings were growing more distant! a moment or two more and they had gone altogether. The heart-sinking misery of it! Tom whooped until he was hoarse, but it was of no use. He talked hopefully to Becky; but an age of anxious waiting passed and no sounds came again. The children groped their way back to the spring. The weary time dragged on; they slept again, and awoke famished and woe-stricken. Tom believed it must be Tuesday by this time. Now an idea struck him. There were some side passages near at hand. It would be better to explore some of these than bear the weight of the heavy time in idleness. He took a kite-line from his pocket, tied it to a projection, and he and Becky started, Tom in the lead, unwinding the line as he groped along. At the end of twenty steps the corridor ended in a "jumping-off place." Tom got down on his knees and felt below, and then as far around the corner as he could reach with his hands conveniently; he made an effort to stretch yet a little farther to the right, and at that moment, not twenty yards away, a human hand, holding a candle, appeared from behind a rock! Tom lifted up a glorious shout, and instantly that hand was followed by the body it belonged to--Injun Joe's! Tom was paralyzed; he could not move. He was vastly gratified the next moment, to see the "Spaniard" take to his heels and get himself out of sight. Tom wondered that Joe had not recognized his voice and come over and killed him for testifying in court. But the echoes must have disguised the voice. Without doubt, that was it, he reasoned. Tom's fright weakened every muscle in his body. He said to himself that if he had strength enough to get back to the spring he would stay there, and nothing should tempt him to run the risk of meeting Injun Joe again. He was careful to keep from Becky what it was he had seen. He told her he had only shouted "for luck." But hunger and wretchedness rise superior to fears in the long run. Another tedious wait at the spring and another long sleep brought changes. The children awoke tortured with a raging hunger. Tom believed that it must be Wednesday or Thursday or even Friday or Saturday, now, and that the search had been given over. He proposed to explore another passage. He felt willing to risk Injun Joe and all other terrors. But Becky was very weak. She had sunk into a dreary apathy and would not be roused. She said she would wait, now, where she was, and die--it would not be long. She told Tom to go with the kite-line and explore if he chose; but she implored him to come back every little while and speak to her; and she made him promise that when the awful time came, he would stay by her and hold her hand until all was over. Tom kissed her, with a choking sensation in his throat, and made a show of being confident of finding the searchers or an escape from the cave; then he took the kite-line in his hand and went groping down one of the passages on his hands and knees, distressed with hunger and sick with bodings of coming doom. CHAPTER XXXII TUESDAY afternoon came, and waned to the twilight. The village of St. Petersburg still mourned. The lost children had not been found. Public prayers had been offered up for them, and many and many a private prayer that had the petitioner's whole heart in it; but still no good news came from the cave. The majority of the searchers had given up the quest and gone back to their daily avocations, saying that it was plain the children could never be found. Mrs. Thatcher was very ill, and a great part of the time delirious. People said it was heartbreaking to hear her call her child, and raise her head and listen a whole minute at a time, then lay it wearily down again with a moan. Aunt Polly had drooped into a settled melancholy, and her gray hair had grown almost white. The village went to its rest on Tuesday night, sad and forlorn. Away in the middle of the night a wild peal burst from the village bells, and in a moment the streets were swarming with frantic half-clad people, who shouted, "Turn out! turn out! they're found! they're found!" Tin pans and horns were added to the din, the population massed itself and moved toward the river, met the children coming in an open carriage drawn by shouting citizens, thronged around it, joined its homeward march, and swept magnificently up the main street roaring huzzah after huzzah! The village was illuminated; nobody went to bed again; it was the greatest night the little town had ever seen. During the first half-hour a procession of villagers filed through Judge Thatcher's house, seized the saved ones and kissed them, squeezed Mrs. Thatcher's hand, tried to speak but couldn't--and drifted out raining tears all over the place. Aunt Polly's happiness was complete, and Mrs. Thatcher's nearly so. It would be complete, however, as soon as the messenger dispatched with the great news to the cave should get the word to her husband. Tom lay upon a sofa with an eager auditory about him and told the history of the wonderful adventure, putting in many striking additions to adorn it withal; and closed with a description of how he left Becky and went on an exploring expedition; how he followed two avenues as far as his kite-line would reach; how he followed a third to the fullest stretch of the kite-line, and was about to turn back when he glimpsed a far-off speck that looked like daylight; dropped the line and groped toward it, pushed his head and shoulders through a small hole, and saw the broad Mississippi rolling by! And if it had only happened to be night he would not have seen that speck of daylight and would not have explored that passage any more! He told how he went back for Becky and broke the good news and she told him not to fret her with such stuff, for she was tired, and knew she was going to die, and wanted to. He described how he labored with her and convinced her; and how she almost died for joy when she had groped to where she actually saw the blue speck of daylight; how he pushed his way out at the hole and then helped her out; how they sat there and cried for gladness; how some men came along in a skiff and Tom hailed them and told them their situation and their famished condition; how the men didn't believe the wild tale at first, "because," said they, "you are five miles down the river below the valley the cave is in" --then took them aboard, rowed to a house, gave them supper, made them rest till two or three hours after dark and then brought them home. Before day-dawn, Judge Thatcher and the handful of searchers with him were tracked out, in the cave, by the twine clews they had strung behind them, and informed of the great news. Three days and nights of toil and hunger in the cave were not to be shaken off at once, as Tom and Becky soon discovered. They were bedridden all of Wednesday and Thursday, and seemed to grow more and more tired and worn, all the time. Tom got about, a little, on Thursday, was down-town Friday, and nearly as whole as ever Saturday; but Becky did not leave her room until Sunday, and then she looked as if she had passed through a wasting illness. Tom learned of Huck's sickness and went to see him on Friday, but could not be admitted to the bedroom; neither could he on Saturday or Sunday. He was admitted daily after that, but was warned to keep still about his adventure and introduce no exciting topic. The Widow Douglas stayed by to see that he obeyed. At home Tom learned of the Cardiff Hill event; also that the "ragged man's" body had eventually been found in the river near the ferry-landing; he had been drowned while trying to escape, perhaps. About a fortnight after Tom's rescue from the cave, he started off to visit Huck, who had grown plenty strong enough, now, to hear exciting talk, and Tom had some that would interest him, he thought. Judge Thatcher's house was on Tom's way, and he stopped to see Becky. The Judge and some friends set Tom to talking, and some one asked him ironically if he wouldn't like to go to the cave again. Tom said he thought he wouldn't mind it. The Judge said: "Well, there are others just like you, Tom, I've not the least doubt. But we have taken care of that. Nobody will get lost in that cave any more." "Why?" "Because I had its big door sheathed with boiler iron two weeks ago, and triple-locked--and I've got the keys." Tom turned as white as a sheet. "What's the matter, boy! Here, run, somebody! Fetch a glass of water!" The water was brought and thrown into Tom's face. "Ah, now you're all right. What was the matter with you, Tom?" "Oh, Judge, Injun Joe's in the cave!" CHAPTER XXXIII WITHIN a few minutes the news had spread, and a dozen skiff-loads of men were on their way to McDougal's cave, and the ferryboat, well filled with passengers, soon followed. Tom Sawyer was in the skiff that bore Judge Thatcher. When the cave door was unlocked, a sorrowful sight presented itself in the dim twilight of the place. Injun Joe lay stretched upon the ground, dead, with his face close to the crack of the door, as if his longing eyes had been fixed, to the latest moment, upon the light and the cheer of the free world outside. Tom was touched, for he knew by his own experience how this wretch had suffered. His pity was moved, but nevertheless he felt an abounding sense of relief and security, now, which revealed to him in a degree which he had not fully appreciated before how vast a weight of dread had been lying upon him since the day he lifted his voice against this bloody-minded outcast. Injun Joe's bowie-knife lay close by, its blade broken in two. The great foundation-beam of the door had been chipped and hacked through, with tedious labor; useless labor, too, it was, for the native rock formed a sill outside it, and upon that stubborn material the knife had wrought no effect; the only damage done was to the knife itself. But if there had been no stony obstruction there the labor would have been useless still, for if the beam had been wholly cut away Injun Joe could not have squeezed his body under the door, and he knew it. So he had only hacked that place in order to be doing something--in order to pass the weary time--in order to employ his tortured faculties. Ordinarily one could find half a dozen bits of candle stuck around in the crevices of this vestibule, left there by tourists; but there were none now. The prisoner had searched them out and eaten them. He had also contrived to catch a few bats, and these, also, he had eaten, leaving only their claws. The poor unfortunate had starved to death. In one place, near at hand, a stalagmite had been slowly growing up from the ground for ages, builded by the water-drip from a stalactite overhead. The captive had broken off the stalagmite, and upon the stump had placed a stone, wherein he had scooped a shallow hollow to catch the precious drop that fell once in every three minutes with the dreary regularity of a clock-tick--a dessertspoonful once in four and twenty hours. That drop was falling when the Pyramids were new; when Troy fell; when the foundations of Rome were laid; when Christ was crucified; when the Conqueror created the British empire; when Columbus sailed; when the massacre at Lexington was "news." It is falling now; it will still be falling when all these things shall have sunk down the afternoon of history, and the twilight of tradition, and been swallowed up in the thick night of oblivion. Has everything a purpose and a mission? Did this drop fall patiently during five thousand years to be ready for this flitting human insect's need? and has it another important object to accomplish ten thousand years to come? No matter. It is many and many a year since the hapless half-breed scooped out the stone to catch the priceless drops, but to this day the tourist stares longest at that pathetic stone and that slow-dropping water when he comes to see the wonders of McDougal's cave. Injun Joe's cup stands first in the list of the cavern's marvels; even "Aladdin's Palace" cannot rival it. Injun Joe was buried near the mouth of the cave; and people flocked there in boats and wagons from the towns and from all the farms and hamlets for seven miles around; they brought their children, and all sorts of provisions, and confessed that they had had almost as satisfactory a time at the funeral as they could have had at the hanging. This funeral stopped the further growth of one thing--the petition to the governor for Injun Joe's pardon. The petition had been largely signed; many tearful and eloquent meetings had been held, and a committee of sappy women been appointed to go in deep mourning and wail around the governor, and implore him to be a merciful ass and trample his duty under foot. Injun Joe was believed to have killed five citizens of the village, but what of that? If he had been Satan himself there would have been plenty of weaklings ready to scribble their names to a pardon-petition, and drip a tear on it from their permanently impaired and leaky water-works. The morning after the funeral Tom took Huck to a private place to have an important talk. Huck had learned all about Tom's adventure from the Welshman and the Widow Douglas, by this time, but Tom said he reckoned there was one thing they had not told him; that thing was what he wanted to talk about now. Huck's face saddened. He said: "I know what it is. You got into No. 2 and never found anything but whiskey. Nobody told me it was you; but I just knowed it must 'a' ben you, soon as I heard 'bout that whiskey business; and I knowed you hadn't got the money becuz you'd 'a' got at me some way or other and told me even if you was mum to everybody else. Tom, something's always told me we'd never get holt of that swag." "Why, Huck, I never told on that tavern-keeper. YOU know his tavern was all right the Saturday I went to the picnic. Don't you remember you was to watch there that night?" "Oh yes! Why, it seems 'bout a year ago. It was that very night that I follered Injun Joe to the widder's." "YOU followed him?" "Yes--but you keep mum. I reckon Injun Joe's left friends behind him, and I don't want 'em souring on me and doing me mean tricks. If it hadn't ben for me he'd be down in Texas now, all right." Then Huck told his entire adventure in confidence to Tom, who had only heard of the Welshman's part of it before. "Well," said Huck, presently, coming back to the main question, "whoever nipped the whiskey in No. 2, nipped the money, too, I reckon --anyways it's a goner for us, Tom." "Huck, that money wasn't ever in No. 2!" "What!" Huck searched his comrade's face keenly. "Tom, have you got on the track of that money again?" "Huck, it's in the cave!" Huck's eyes blazed. "Say it again, Tom." "The money's in the cave!" "Tom--honest injun, now--is it fun, or earnest?" "Earnest, Huck--just as earnest as ever I was in my life. Will you go in there with me and help get it out?" "I bet I will! I will if it's where we can blaze our way to it and not get lost." "Huck, we can do that without the least little bit of trouble in the world." "Good as wheat! What makes you think the money's--" "Huck, you just wait till we get in there. If we don't find it I'll agree to give you my drum and every thing I've got in the world. I will, by jings." "All right--it's a whiz. When do you say?" "Right now, if you say it. Are you strong enough?" "Is it far in the cave? I ben on my pins a little, three or four days, now, but I can't walk more'n a mile, Tom--least I don't think I could." "It's about five mile into there the way anybody but me would go, Huck, but there's a mighty short cut that they don't anybody but me know about. Huck, I'll take you right to it in a skiff. I'll float the skiff down there, and I'll pull it back again all by myself. You needn't ever turn your hand over." "Less start right off, Tom." "All right. We want some bread and meat, and our pipes, and a little bag or two, and two or three kite-strings, and some of these new-fangled things they call lucifer matches. I tell you, many's the time I wished I had some when I was in there before." A trifle after noon the boys borrowed a small skiff from a citizen who was absent, and got under way at once. When they were several miles below "Cave Hollow," Tom said: "Now you see this bluff here looks all alike all the way down from the cave hollow--no houses, no wood-yards, bushes all alike. But do you see that white place up yonder where there's been a landslide? Well, that's one of my marks. We'll get ashore, now." They landed. "Now, Huck, where we're a-standing you could touch that hole I got out of with a fishing-pole. See if you can find it." Huck searched all the place about, and found nothing. Tom proudly marched into a thick clump of sumach bushes and said: "Here you are! Look at it, Huck; it's the snuggest hole in this country. You just keep mum about it. All along I've been wanting to be a robber, but I knew I'd got to have a thing like this, and where to run across it was the bother. We've got it now, and we'll keep it quiet, only we'll let Joe Harper and Ben Rogers in--because of course there's got to be a Gang, or else there wouldn't be any style about it. Tom Sawyer's Gang--it sounds splendid, don't it, Huck?" "Well, it just does, Tom. And who'll we rob?" "Oh, most anybody. Waylay people--that's mostly the way." "And kill them?" "No, not always. Hive them in the cave till they raise a ransom." "What's a ransom?" "Money. You make them raise all they can, off'n their friends; and after you've kept them a year, if it ain't raised then you kill them. That's the general way. Only you don't kill the women. You shut up the women, but you don't kill them. They're always beautiful and rich, and awfully scared. You take their watches and things, but you always take your hat off and talk polite. They ain't anybody as polite as robbers --you'll see that in any book. Well, the women get to loving you, and after they've been in the cave a week or two weeks they stop crying and after that you couldn't get them to leave. If you drove them out they'd turn right around and come back. It's so in all the books." "Why, it's real bully, Tom. I believe it's better'n to be a pirate." "Yes, it's better in some ways, because it's close to home and circuses and all that." By this time everything was ready and the boys entered the hole, Tom in the lead. They toiled their way to the farther end of the tunnel, then made their spliced kite-strings fast and moved on. A few steps brought them to the spring, and Tom felt a shudder quiver all through him. He showed Huck the fragment of candle-wick perched on a lump of clay against the wall, and described how he and Becky had watched the flame struggle and expire. The boys began to quiet down to whispers, now, for the stillness and gloom of the place oppressed their spirits. They went on, and presently entered and followed Tom's other corridor until they reached the "jumping-off place." The candles revealed the fact that it was not really a precipice, but only a steep clay hill twenty or thirty feet high. Tom whispered: "Now I'll show you something, Huck." He held his candle aloft and said: "Look as far around the corner as you can. Do you see that? There--on the big rock over yonder--done with candle-smoke." "Tom, it's a CROSS!" "NOW where's your Number Two? 'UNDER THE CROSS,' hey? Right yonder's where I saw Injun Joe poke up his candle, Huck!" Huck stared at the mystic sign awhile, and then said with a shaky voice: "Tom, less git out of here!" "What! and leave the treasure?" "Yes--leave it. Injun Joe's ghost is round about there, certain." "No it ain't, Huck, no it ain't. It would ha'nt the place where he died--away out at the mouth of the cave--five mile from here." "No, Tom, it wouldn't. It would hang round the money. I know the ways of ghosts, and so do you." Tom began to fear that Huck was right. Misgivings gathered in his mind. But presently an idea occurred to him-- "Lookyhere, Huck, what fools we're making of ourselves! Injun Joe's ghost ain't a going to come around where there's a cross!" The point was well taken. It had its effect. "Tom, I didn't think of that. But that's so. It's luck for us, that cross is. I reckon we'll climb down there and have a hunt for that box." Tom went first, cutting rude steps in the clay hill as he descended. Huck followed. Four avenues opened out of the small cavern which the great rock stood in. The boys examined three of them with no result. They found a small recess in the one nearest the base of the rock, with a pallet of blankets spread down in it; also an old suspender, some bacon rind, and the well-gnawed bones of two or three fowls. But there was no money-box. The lads searched and researched this place, but in vain. Tom said: "He said UNDER the cross. Well, this comes nearest to being under the cross. It can't be under the rock itself, because that sets solid on the ground." They searched everywhere once more, and then sat down discouraged. Huck could suggest nothing. By-and-by Tom said: "Lookyhere, Huck, there's footprints and some candle-grease on the clay about one side of this rock, but not on the other sides. Now, what's that for? I bet you the money IS under the rock. I'm going to dig in the clay." "That ain't no bad notion, Tom!" said Huck with animation. Tom's "real Barlow" was out at once, and he had not dug four inches before he struck wood. "Hey, Huck!--you hear that?" Huck began to dig and scratch now. Some boards were soon uncovered and removed. They had concealed a natural chasm which led under the rock. Tom got into this and held his candle as far under the rock as he could, but said he could not see to the end of the rift. He proposed to explore. He stooped and passed under; the narrow way descended gradually. He followed its winding course, first to the right, then to the left, Huck at his heels. Tom turned a short curve, by-and-by, and exclaimed: "My goodness, Huck, lookyhere!" It was the treasure-box, sure enough, occupying a snug little cavern, along with an empty powder-keg, a couple of guns in leather cases, two or three pairs of old moccasins, a leather belt, and some other rubbish well soaked with the water-drip. "Got it at last!" said Huck, ploughing among the tarnished coins with his hand. "My, but we're rich, Tom!" "Huck, I always reckoned we'd get it. It's just too good to believe, but we HAVE got it, sure! Say--let's not fool around here. Let's snake it out. Lemme see if I can lift the box." It weighed about fifty pounds. Tom could lift it, after an awkward fashion, but could not carry it conveniently. "I thought so," he said; "THEY carried it like it was heavy, that day at the ha'nted house. I noticed that. I reckon I was right to think of fetching the little bags along." The money was soon in the bags and the boys took it up to the cross rock. "Now less fetch the guns and things," said Huck. "No, Huck--leave them there. They're just the tricks to have when we go to robbing. We'll keep them there all the time, and we'll hold our orgies there, too. It's an awful snug place for orgies." "What orgies?" "I dono. But robbers always have orgies, and of course we've got to have them, too. Come along, Huck, we've been in here a long time. It's getting late, I reckon. I'm hungry, too. We'll eat and smoke when we get to the skiff." They presently emerged into the clump of sumach bushes, looked warily out, found the coast clear, and were soon lunching and smoking in the skiff. As the sun dipped toward the horizon they pushed out and got under way. Tom skimmed up the shore through the long twilight, chatting cheerily with Huck, and landed shortly after dark. "Now, Huck," said Tom, "we'll hide the money in the loft of the widow's woodshed, and I'll come up in the morning and we'll count it and divide, and then we'll hunt up a place out in the woods for it where it will be safe. Just you lay quiet here and watch the stuff till I run and hook Benny Taylor's little wagon; I won't be gone a minute." He disappeared, and presently returned with the wagon, put the two small sacks into it, threw some old rags on top of them, and started off, dragging his cargo behind him. When the boys reached the Welshman's house, they stopped to rest. Just as they were about to move on, the Welshman stepped out and said: "Hallo, who's that?" "Huck and Tom Sawyer." "Good! Come along with me, boys, you are keeping everybody waiting. Here--hurry up, trot ahead--I'll haul the wagon for you. Why, it's not as light as it might be. Got bricks in it?--or old metal?" "Old metal," said Tom. "I judged so; the boys in this town will take more trouble and fool away more time hunting up six bits' worth of old iron to sell to the foundry than they would to make twice the money at regular work. But that's human nature--hurry along, hurry along!" The boys wanted to know what the hurry was about. "Never mind; you'll see, when we get to the Widow Douglas'." Huck said with some apprehension--for he was long used to being falsely accused: "Mr. Jones, we haven't been doing nothing." The Welshman laughed. "Well, I don't know, Huck, my boy. I don't know about that. Ain't you and the widow good friends?" "Yes. Well, she's ben good friends to me, anyway." "All right, then. What do you want to be afraid for?" This question was not entirely answered in Huck's slow mind before he found himself pushed, along with Tom, into Mrs. Douglas' drawing-room. Mr. Jones left the wagon near the door and followed. The place was grandly lighted, and everybody that was of any consequence in the village was there. The Thatchers were there, the Harpers, the Rogerses, Aunt Polly, Sid, Mary, the minister, the editor, and a great many more, and all dressed in their best. The widow received the boys as heartily as any one could well receive two such looking beings. They were covered with clay and candle-grease. Aunt Polly blushed crimson with humiliation, and frowned and shook her head at Tom. Nobody suffered half as much as the two boys did, however. Mr. Jones said: "Tom wasn't at home, yet, so I gave him up; but I stumbled on him and Huck right at my door, and so I just brought them along in a hurry." "And you did just right," said the widow. "Come with me, boys." She took them to a bedchamber and said: "Now wash and dress yourselves. Here are two new suits of clothes --shirts, socks, everything complete. They're Huck's--no, no thanks, Huck--Mr. Jones bought one and I the other. But they'll fit both of you. Get into them. We'll wait--come down when you are slicked up enough." Then she left. CHAPTER XXXIV HUCK said: "Tom, we can slope, if we can find a rope. The window ain't high from the ground." "Shucks! what do you want to slope for?" "Well, I ain't used to that kind of a crowd. I can't stand it. I ain't going down there, Tom." "Oh, bother! It ain't anything. I don't mind it a bit. I'll take care of you." Sid appeared. "Tom," said he, "auntie has been waiting for you all the afternoon. Mary got your Sunday clothes ready, and everybody's been fretting about you. Say--ain't this grease and clay, on your clothes?" "Now, Mr. Siddy, you jist 'tend to your own business. What's all this blow-out about, anyway?" "It's one of the widow's parties that she's always having. This time it's for the Welshman and his sons, on account of that scrape they helped her out of the other night. And say--I can tell you something, if you want to know." "Well, what?" "Why, old Mr. Jones is going to try to spring something on the people here to-night, but I overheard him tell auntie to-day about it, as a secret, but I reckon it's not much of a secret now. Everybody knows --the widow, too, for all she tries to let on she don't. Mr. Jones was bound Huck should be here--couldn't get along with his grand secret without Huck, you know!" "Secret about what, Sid?" "About Huck tracking the robbers to the widow's. I reckon Mr. Jones was going to make a grand time over his surprise, but I bet you it will drop pretty flat." Sid chuckled in a very contented and satisfied way. "Sid, was it you that told?" "Oh, never mind who it was. SOMEBODY told--that's enough." "Sid, there's only one person in this town mean enough to do that, and that's you. If you had been in Huck's place you'd 'a' sneaked down the hill and never told anybody on the robbers. You can't do any but mean things, and you can't bear to see anybody praised for doing good ones. There--no thanks, as the widow says"--and Tom cuffed Sid's ears and helped him to the door with several kicks. "Now go and tell auntie if you dare--and to-morrow you'll catch it!" Some minutes later the widow's guests were at the supper-table, and a dozen children were propped up at little side-tables in the same room, after the fashion of that country and that day. At the proper time Mr. Jones made his little speech, in which he thanked the widow for the honor she was doing himself and his sons, but said that there was another person whose modesty-- And so forth and so on. He sprung his secret about Huck's share in the adventure in the finest dramatic manner he was master of, but the surprise it occasioned was largely counterfeit and not as clamorous and effusive as it might have been under happier circumstances. However, the widow made a pretty fair show of astonishment, and heaped so many compliments and so much gratitude upon Huck that he almost forgot the nearly intolerable discomfort of his new clothes in the entirely intolerable discomfort of being set up as a target for everybody's gaze and everybody's laudations. The widow said she meant to give Huck a home under her roof and have him educated; and that when she could spare the money she would start him in business in a modest way. Tom's chance was come. He said: "Huck don't need it. Huck's rich." Nothing but a heavy strain upon the good manners of the company kept back the due and proper complimentary laugh at this pleasant joke. But the silence was a little awkward. Tom broke it: "Huck's got money. Maybe you don't believe it, but he's got lots of it. Oh, you needn't smile--I reckon I can show you. You just wait a minute." Tom ran out of doors. The company looked at each other with a perplexed interest--and inquiringly at Huck, who was tongue-tied. "Sid, what ails Tom?" said Aunt Polly. "He--well, there ain't ever any making of that boy out. I never--" Tom entered, struggling with the weight of his sacks, and Aunt Polly did not finish her sentence. Tom poured the mass of yellow coin upon the table and said: "There--what did I tell you? Half of it's Huck's and half of it's mine!" The spectacle took the general breath away. All gazed, nobody spoke for a moment. Then there was a unanimous call for an explanation. Tom said he could furnish it, and he did. The tale was long, but brimful of interest. There was scarcely an interruption from any one to break the charm of its flow. When he had finished, Mr. Jones said: "I thought I had fixed up a little surprise for this occasion, but it don't amount to anything now. This one makes it sing mighty small, I'm willing to allow." The money was counted. The sum amounted to a little over twelve thousand dollars. It was more than any one present had ever seen at one time before, though several persons were there who were worth considerably more than that in property. CHAPTER XXXV THE reader may rest satisfied that Tom's and Huck's windfall made a mighty stir in the poor little village of St. Petersburg. So vast a sum, all in actual cash, seemed next to incredible. It was talked about, gloated over, glorified, until the reason of many of the citizens tottered under the strain of the unhealthy excitement. Every "haunted" house in St. Petersburg and the neighboring villages was dissected, plank by plank, and its foundations dug up and ransacked for hidden treasure--and not by boys, but men--pretty grave, unromantic men, too, some of them. Wherever Tom and Huck appeared they were courted, admired, stared at. The boys were not able to remember that their remarks had possessed weight before; but now their sayings were treasured and repeated; everything they did seemed somehow to be regarded as remarkable; they had evidently lost the power of doing and saying commonplace things; moreover, their past history was raked up and discovered to bear marks of conspicuous originality. The village paper published biographical sketches of the boys. The Widow Douglas put Huck's money out at six per cent., and Judge Thatcher did the same with Tom's at Aunt Polly's request. Each lad had an income, now, that was simply prodigious--a dollar for every week-day in the year and half of the Sundays. It was just what the minister got --no, it was what he was promised--he generally couldn't collect it. A dollar and a quarter a week would board, lodge, and school a boy in those old simple days--and clothe him and wash him, too, for that matter. Judge Thatcher had conceived a great opinion of Tom. He said that no commonplace boy would ever have got his daughter out of the cave. When Becky told her father, in strict confidence, how Tom had taken her whipping at school, the Judge was visibly moved; and when she pleaded grace for the mighty lie which Tom had told in order to shift that whipping from her shoulders to his own, the Judge said with a fine outburst that it was a noble, a generous, a magnanimous lie--a lie that was worthy to hold up its head and march down through history breast to breast with George Washington's lauded Truth about the hatchet! Becky thought her father had never looked so tall and so superb as when he walked the floor and stamped his foot and said that. She went straight off and told Tom about it. Judge Thatcher hoped to see Tom a great lawyer or a great soldier some day. He said he meant to look to it that Tom should be admitted to the National Military Academy and afterward trained in the best law school in the country, in order that he might be ready for either career or both. Huck Finn's wealth and the fact that he was now under the Widow Douglas' protection introduced him into society--no, dragged him into it, hurled him into it--and his sufferings were almost more than he could bear. The widow's servants kept him clean and neat, combed and brushed, and they bedded him nightly in unsympathetic sheets that had not one little spot or stain which he could press to his heart and know for a friend. He had to eat with a knife and fork; he had to use napkin, cup, and plate; he had to learn his book, he had to go to church; he had to talk so properly that speech was become insipid in his mouth; whithersoever he turned, the bars and shackles of civilization shut him in and bound him hand and foot. He bravely bore his miseries three weeks, and then one day turned up missing. For forty-eight hours the widow hunted for him everywhere in great distress. The public were profoundly concerned; they searched high and low, they dragged the river for his body. Early the third morning Tom Sawyer wisely went poking among some old empty hogsheads down behind the abandoned slaughter-house, and in one of them he found the refugee. Huck had slept there; he had just breakfasted upon some stolen odds and ends of food, and was lying off, now, in comfort, with his pipe. He was unkempt, uncombed, and clad in the same old ruin of rags that had made him picturesque in the days when he was free and happy. Tom routed him out, told him the trouble he had been causing, and urged him to go home. Huck's face lost its tranquil content, and took a melancholy cast. He said: "Don't talk about it, Tom. I've tried it, and it don't work; it don't work, Tom. It ain't for me; I ain't used to it. The widder's good to me, and friendly; but I can't stand them ways. She makes me get up just at the same time every morning; she makes me wash, they comb me all to thunder; she won't let me sleep in the woodshed; I got to wear them blamed clothes that just smothers me, Tom; they don't seem to any air git through 'em, somehow; and they're so rotten nice that I can't set down, nor lay down, nor roll around anywher's; I hain't slid on a cellar-door for--well, it 'pears to be years; I got to go to church and sweat and sweat--I hate them ornery sermons! I can't ketch a fly in there, I can't chaw. I got to wear shoes all Sunday. The widder eats by a bell; she goes to bed by a bell; she gits up by a bell--everything's so awful reg'lar a body can't stand it." "Well, everybody does that way, Huck." "Tom, it don't make no difference. I ain't everybody, and I can't STAND it. It's awful to be tied up so. And grub comes too easy--I don't take no interest in vittles, that way. I got to ask to go a-fishing; I got to ask to go in a-swimming--dern'd if I hain't got to ask to do everything. Well, I'd got to talk so nice it wasn't no comfort--I'd got to go up in the attic and rip out awhile, every day, to git a taste in my mouth, or I'd a died, Tom. The widder wouldn't let me smoke; she wouldn't let me yell, she wouldn't let me gape, nor stretch, nor scratch, before folks--" [Then with a spasm of special irritation and injury]--"And dad fetch it, she prayed all the time! I never see such a woman! I HAD to shove, Tom--I just had to. And besides, that school's going to open, and I'd a had to go to it--well, I wouldn't stand THAT, Tom. Looky here, Tom, being rich ain't what it's cracked up to be. It's just worry and worry, and sweat and sweat, and a-wishing you was dead all the time. Now these clothes suits me, and this bar'l suits me, and I ain't ever going to shake 'em any more. Tom, I wouldn't ever got into all this trouble if it hadn't 'a' ben for that money; now you just take my sheer of it along with your'n, and gimme a ten-center sometimes--not many times, becuz I don't give a dern for a thing 'thout it's tollable hard to git--and you go and beg off for me with the widder." "Oh, Huck, you know I can't do that. 'Tain't fair; and besides if you'll try this thing just a while longer you'll come to like it." "Like it! Yes--the way I'd like a hot stove if I was to set on it long enough. No, Tom, I won't be rich, and I won't live in them cussed smothery houses. I like the woods, and the river, and hogsheads, and I'll stick to 'em, too. Blame it all! just as we'd got guns, and a cave, and all just fixed to rob, here this dern foolishness has got to come up and spile it all!" Tom saw his opportunity-- "Lookyhere, Huck, being rich ain't going to keep me back from turning robber." "No! Oh, good-licks; are you in real dead-wood earnest, Tom?" "Just as dead earnest as I'm sitting here. But Huck, we can't let you into the gang if you ain't respectable, you know." Huck's joy was quenched. "Can't let me in, Tom? Didn't you let me go for a pirate?" "Yes, but that's different. A robber is more high-toned than what a pirate is--as a general thing. In most countries they're awful high up in the nobility--dukes and such." "Now, Tom, hain't you always ben friendly to me? You wouldn't shet me out, would you, Tom? You wouldn't do that, now, WOULD you, Tom?" "Huck, I wouldn't want to, and I DON'T want to--but what would people say? Why, they'd say, 'Mph! Tom Sawyer's Gang! pretty low characters in it!' They'd mean you, Huck. You wouldn't like that, and I wouldn't." Huck was silent for some time, engaged in a mental struggle. Finally he said: "Well, I'll go back to the widder for a month and tackle it and see if I can come to stand it, if you'll let me b'long to the gang, Tom." "All right, Huck, it's a whiz! Come along, old chap, and I'll ask the widow to let up on you a little, Huck." "Will you, Tom--now will you? That's good. If she'll let up on some of the roughest things, I'll smoke private and cuss private, and crowd through or bust. When you going to start the gang and turn robbers?" "Oh, right off. We'll get the boys together and have the initiation to-night, maybe." "Have the which?" "Have the initiation." "What's that?" "It's to swear to stand by one another, and never tell the gang's secrets, even if you're chopped all to flinders, and kill anybody and all his family that hurts one of the gang." "That's gay--that's mighty gay, Tom, I tell you." "Well, I bet it is. And all that swearing's got to be done at midnight, in the lonesomest, awfulest place you can find--a ha'nted house is the best, but they're all ripped up now." "Well, midnight's good, anyway, Tom." "Yes, so it is. And you've got to swear on a coffin, and sign it with blood." "Now, that's something LIKE! Why, it's a million times bullier than pirating. I'll stick to the widder till I rot, Tom; and if I git to be a reg'lar ripper of a robber, and everybody talking 'bout it, I reckon she'll be proud she snaked me in out of the wet." CONCLUSION SO endeth this chronicle. It being strictly a history of a BOY, it must stop here; the story could not go much further without becoming the history of a MAN. When one writes a novel about grown people, he knows exactly where to stop--that is, with a marriage; but when he writes of juveniles, he must stop where he best can. Most of the characters that perform in this book still live, and are prosperous and happy. Some day it may seem worth while to take up the story of the younger ones again and see what sort of men and women they turned out to be; therefore it will be wisest not to reveal any of that part of their lives at present. lz4-2.5.2/testdata/Mark.Twain-Tom.Sawyer_long.txt.lz4000066400000000000000000125636031364760661600223520ustar00rootroot00000000000000"Mdp/,*)Produced by David Widger. The previous edition was updat2Jose Menendez.  THE ADVENTURES OF TOM SAWYER / /BY# MARK TWAIN' (Samuel Langhorne Clemens)P R E F A C E MOST of the adventures recorded in this book really occurred; one or two were experiences of my own, the rest those of boys who were schoolmates of mine. Huck Finn is drawn from life; Tom Sawyer also, but not$an individual--he is a combina characteristics of threem I knew, and therefore belongs to<"composite order of architecture. The odd superstzs touched upon A allalent among children and slavese West atbperiodis story--that isay, thirty or forty years ago. Although myis intended mainly fornentertainmentand girls, I hope it will not be shunn1menVwomen on account, for par\my plan has beenx!ry to pleasantly remind adults of what they onceathemselvesqof how &Afelt aalked,}what queerbprises=sometimes engag>4. z!dUTHOR. HARTFORD, 1876T%T O M S A W Y E R CHAPTER I "TOM!" No answer.What's gone withboy, I wonder? You Rld lady pulled her spectacles dowlooked ovebam abou room; then she pAm up:cut und?. She seldom or never+THROUGH them so small a thing as a boywy<her state pair,pride ofRheartXwere built`"style," not service--she could have seen thrae of stove-lids just as well. Sheperplexednsa momen8Aaid,fiercely6still loud enyfurniture to hear: "Well, I lay if I get holIyou I'll--" 3didsQnish,"byTAtimewVnding punching D bedre broomj!soGneeded breathqunctuat Q!esBresurrectebZ cat. "I 6adid seIA beaCboy!Awenthe open door 1tooLiRuthe tomato vineG "jimpson" weedswconstitute garden. No Tom. S AliftW voice at an angle calculfor distance and shouted: "Y-o-u-QThere/ a slight noise behinhe turned"into seize al2boye slack of his roundaand ar?Qhis fwA. "Q! I m5'a'closet. What you;doing in b?" "N. r! Look 9r hands. AndqSmouthb!ISa truckXI don't know, auntcDknow. It's jam!'s it is. FWAI've if you didn't lety jam alone I'd skin you. Hand me%rswitch.a hoverTair--Sldesperate-- "My 2you!Xrwhirled1nather skirts dof dan lad fled oinstant, scramblthe high board-fenceg disappearTit. Hisc Polly"sud9broke into a gentle laugh. "Hadcan't 5learn anyQ? Ain't he playecricks y3lik1for2o b1ing$rfor him6E? But old fools i biggest SCsdog new1, a0 saying is.bmy goodness, heAplay/m alike, two days3 2how qbody to 's coming? He 'p !just how long n torment me b Qmy da!up he knows if he can makeD!toAame offa minute or'1me a, it's down agaiI1hita lick. I afcmy dut/tthe Lord's truth,bb. Sparx2rodNpile the child, Good Book says. I'Cup ssuffering for us bothHe's fullG(e Old Scratch, but laws-a-me! he's my own dead sister's!po- 2ing!go U lash him, somehow. Every8BI lefoff, my conscj does hur"so_e=!myheart most,ks. Well-a-wAman !rnI aoman iU 1few)droublea Scrip< DsaysbreckonT!sol!llc hookeAeven4*B[* Southwestern"afternoon"]s jbe obleeged to make him work, to-morrow, sish himIYy har= work SaturQ when !oyrhaving holida[ he hatesB more thanB elsGOT to do8 ofIrhim, orbu1ildhom dideAd a +Agoodm. He got back home barely in seaso}help Jim : rcoloredsaw next-day's wo"likindlingssupper--as+w!reime to tell( to Jim while did three-fourth1the . Tom's younger brother (or ra Shalf-Q) Sidalready Awith2theS(pick{qchips),ba quieJehad noDous,Vsome ways. W1Tom1eatv#is>stealing sugar as opportunity offered, Aasked him questions/ Ewere1gui1nd 6deep--for sn ao trapMinto damaging revealments. Like many {simple-hearted souls,>as her pet vanitFabelievA was endow! 2a t@ 1arkbmysterious diplomac|she lovecontemplatex*transparent devices as marvel[low cunning. SaiVu: "Tom1midQ warmRchool, warn't it8 QYes'm+ Powerful1'D byou wa go in a-swimmNTom?" A bim a scare shv!Tom--a touch of uncomfortable suspicion. He sear I's face, but it tolW!no. So he said: "No'm-y2not&mu I 1realoY Sshirta"Bu1tooJ though." it flatt her to reflects2Cdisc/ ' 2hirdry without any rknowingG41was 8!haher mindm tin spitZ! whind lay, I Zforestalle )next move: "Som`us pumped on eads--mine's damp yet. SeeB8rwas vex:Uthinkoverlook(vq circum ial evid missed a 4. Tnew inspiration^ 1hav$undo yourrcollar =I sewed it, to pump on/Qhead,3you? Unbuttjacket!"s#of\2facNAopen]s@a. His as securelyQ. "B"! 1Ago ' BwithI'd made sure you'#edQ A 8bee aI forgive ye^. you're a kina singed cat  --better':!. THIS time. as half sorry her sagacity had miscarried,3gla?Tom had stumbled\obedient conductconce. But SidneyId82you{Pith whiteNBad, 's blackBWhy,OA sew8r! Tom!" rnot waitdt. As J%ouIq5bSiddy, 2licabIn a safe plac/examinedBlarg2les which wer1ust\c 3lapdf boundTm--on^  D3theH& HSShe'danoticed if it hafor Sid. Conf6it!! s"ws& &I wish to geeminy s stick to one or t'other--Akeeprun of 'emse I bet%A lamX qearn hi4He was ne Model BoybvillaghkAhe m&1boyOS well1--a1athm. Withins, or even less, Cgott 5his 1. NQcause>sV1onePa heavyBbittj2him a man's oN_aTand p interest bd &emVAdrov/m1hisi,1the!--ras men's misf2 eiaexcite!of. This newwas a valupAveltU awhistl just acquiredb negrohto practise it undisturbed. It conma peculiar bird-likb, a sovAliqu wrble, pW  iatongue the roof at short 5valAmids@the musicxreader probably remembers how !it.4r. Dilige attention soon gave him#kn{i< he strodeF Vtreet full of harmon1his gratitud Amucha n astronomer feels who hasg planet--no doubqfar as Eg, deep, unalloyedu concerned,advantagFAwith!boO t$XComerRsumme4rlong. Inot dark,2 Presently Tom chechustle. A stranger!hi boy a shade larger'himself. A new-cAof any ageither sexXan impressive curiosioor little shabby\ of St. PetersburgA boy{`Qdress\"oo  on a week-day<was simply astou B cap dainty 9 ,W-buttoned blue cloth 31#Rnatty0"sohis pantaloons had shoes on#iGonly Fri"He!wo necktie, a brd it of ribbon0had a citified air|aat aten5 avitals B mor!stasplendid}1hig!oshis finerUhabbi his own outfit seemed  to grow. N]boy spoke. If1mova--but Nsidewise, inrcle; they kept face toaand eyqeye allX b Final[ you!" "I'd oyou try i,  8$doN> can't, .-'Y?1CanACan'A +An\Qpausen! Aname"a'Tisn'c2 ofBbusiAmaybx r I 'low^ MAKE it my0Well why don't youhI\2 sa, I will3qMuch--mAMUCH!reb" "Oh^ 're mighty sm)!QDON'Tm# I ! one hand tiedn!meIr DO it? You SAY yaI WILLTyou fool "Oh yes--een whole familiesame fixqSmarty!| CSOME 2Oh,Qa hat+AR lump-%it. I darcck it offxqll takeb!re suck eggsYda liarn %fighting.O!dafQit up1AAw--aa walkXSSay--me much morBsass@nd bounce a rof~oOh, of COURSE+ ; then? What P eSAYINGTx for? W>@? XQfraidyxI AIN'TbYou arN+A3/Qeying"sihaR eachm t"we2uld  .Get away Ahere"GoyourselfDI wo B"Sobstood,X ba foot"as a bra' both shoving 2ainBglow"atg1Q hate" n"gex . After struggl ill both <"hoydflushecrelaxe Qtrainx watchful cautionj|acowardca pup.1ell%igozQthras'y4his bfinger.I'll make himQ, toosI care forj{R? I'v2Ba brbfVs big Be isawhat's,Ahrow'3at !T[Bothas imaginary.]$WBa li=DYOUR#soAit srew a line 7dus cbig toh<Ldo step(aF f''t stand up. Ateal sheeFTz!w{ 1tepv-Dmptl 1Now"sa$'dnow let's D crowd m;JCbettI)8 ouD yg(IDh*--Wd[By jingo!Xtwo cents Atookbroad coppersApockQd hel  cderisionRtruck*t! g0. In an instantR boys1rol Aand 5ing;1gritogetherQcats;>f!ae spac"Rtuggetm A's hI 1nd es, punch3QscratT's no,covered -#:'ry* confusion2for) ;the fog of baIDTom %, seatedU!id# p sts. "Holler 'nuff!"3 heaboy on%1fre*Hcrying--.rom rage. d went on. At last#go1 sm bed "'N1andR"1up z 8jyou. Bny 1foo+Qnext  3qff brus*DfromWthes, sobbing, snuffand occasioo &Aback1sha1his;threaten1hat1oul=Q"next 2ugh\#ToTom respo0Rjeers"st7off in high feath2 as!as4was*3 sn?up a stone,2w i "hiqbetween7 ss-\1ail1ran  btelopeQchase6 traitor homsRthus ere he livednaa posia2gat2som9A, da the enemQ c utside, bu>only made2s ab windotdeclined. %Jand called#a bad, vicious, vulgar&and ordZ1him} went away;!he\ he "'lowed" to "lay"s'.g1gott pretty late#RnightAwhenAlimbutiously in a4 s, he unl an ambuscade,-dperson,Qaunt;g"aw]2tat nGQresolN 1 toT his %%2captivity ard labor became adamantinr$its firmness.A2I SATURDAY mora)2all4Qworld#.and fresh[Qbrimm-1ith5Pq.oeRevery:(;bif the`${music issued 2lip`Zcheer in Y~and a sp&tAstep locust-treQbloom bragranthe blossoms fill air. Cardiff Hill, beyonabove it,!grith vegetand it lay (4farZ, !to a Delec"Land, dreamy, reposefulinviting. 1ppe-2alkAa bu| of whitewasha long-handledcsurvey  |all glak,B lefoand a deep melancholy settledAuponaspiritmrty yardsQoard k nine feet/s. Life Q holl/nd existence^Ba bu{1ASigh)Bhe d 2his9Qpassea sopmost plank; rep the operB; di8gain; comp/ignificant qed streaqar-reac!co7'un8s"wntree-boxuraged. Jim 3Tskipp.!atva tin paiTsinging Buffalo G#BrQwater  (rwn pumpKRlwayshateful work in@Seyes,Dq now itJnot strik 1 so\%1ompQpump. White, mulatto/Qnegro! 9there wai'Qtheirqs, rest?trading plays, quarren $, g, skylarking. A. "alAwas only a hundWd fif!!f,43got)  under an hour. "ev an somesgenerallyto go after him. U1Say,=Bfetcp'7'll`"soJim shook :w, Mars Tom. Ole missis, she tol|IAn' g<s3an'F#op ' roun' wif_61sayZQspec'zEAgwingAax m ,rs5$an' 'tend to my ownQ--sheed SHE'D+f to de/5in'Ayou 6;Cwhatt!id#. SSthe w talks. Gimm $--qbe gonerC a a\!R. SHEx ever k.I9 she'd take)Qtar dd me. 'DeedBwoulfASHE!:Tlicks--whacks 'e}URimble1whosE ,p5C }w%1 awP1but6hurt--any#it!if$1crygyou a marvel" aKQ alle8Jim bega.waver. "%!D2 bully taQMy! Da3gayb, I teQ! But5I's" 'fraid aissis--" "And besides,R will#shQmy so:"Ji- human--this attrac  "ooH251put( 2il,a"ntZebsorbing!3estu/ 4andS being unwR; VAs fl3dowI k!p?JgQrear,jAwas "waCvigo.was reti3rRfielda slipperZ {and triumphEeye.''s energyeAlastq}Tthink%!fuE 1had !ne\%2#daH"rrows multiplied. So~ 1fre!s #trk !onL Asort 2delXBd)Bb they J$a Sof fu m2!to|)9Rvery r rit burn like fire%2hiscly wealt-  (bit--bitoys, marble trash; ;8to buy an exchange of WORK, maybnot half7s,*an hour of purk4dom.#retraitened meansB "s rgave up 1dea r=1oys4AdarkN hopeless7-d burst Qm! No=  3than a great, ma1 8entC 6! >qtranqui. Ben Rog%v-sp# boy, ofbwhose ridicule dreadingdS's ga" the hop-skip-and-jump--proojris hear7lis anticipa2AhighM3ran appl1 gie1a la%melodious whoop, at vals, foljB by -toned ding-do,, a* a steamboat. As henhe slack}1spey"1ookhQmiddlU, leaned faro starboard rounded to ponder#an-ious pomp3/Oce--the Big Missouri (self to be drawing"of 1boac capta9engine-bellbined, s,o7 Qself  <own hurricane-deck 2the~sQexecuAthemR1Atop tsir! Ting-a-linga!" The$way ran almos he drew up slowly towarq. "ShipToo backmsHis arm"ghand stiffen8AidesZaet herW mAstab%h Chow! ch-chow-wow! rQhand,"escribingly circlesC3 rePing a forty-'wheel. "Lg l-chow!" Thej5 e "to &Come ahead W0her! Letg*mslow! W-A! GeO ead-line! LIVELY nome--out d"- #t'Q#'t q Take at(hRstumpMQthe bof it! StSy*age, now--lg go! D`GesH SH'T! S'tH'T!" (She gauge-cocks)op-. R--paix9!, yDBen (n "Hi-YI! YOU'RE:ump, ain' nH 3hisPFouchI!eyan artist(!n vi\ gentle sweecthe result, as $R rang4)alongsidv',Uwater #e (n"tu1 k]! "Hello, old chap,Mmwork, hey?"heeled suddenJn31it', Ben! IC9TnoticDSay--I'm goBa-swi, I am. DoQ wishacould? Aof c# you'd druaWORK--0 ?5? C)I (6(omR:dboy a big%2cal!?"yIATHATy +SresumC \Aansw1carG 3ly:% S it iU q. All I,$it suits Tom SawyerP dV1meaQ!le{`you LIKE!3Thep u}1movALike(yIYsee why I oughtn'Gl-. Does a$"get a chanW+# a fence every da}Rhat pz-Q in aSlight!to AnibbAppleR swep daintilyUxorth--steI"ba<1notK effect--addeAhere|there--critici=5 again--Ben wat2mov@1getm`!!nd$ bested, absorbed. P 5 heTom, let MEOa littl _o consent"alnhis mind: "No--no--LBl"n'ly do, Ben. Y7'e,1's  particula.u a--righ eNQknow -R if if 2theC& I^3and. Yes, she's 2; iNcbe dontcareful; v"onmRthous aybe two can do i?wayybNo--is6Hso? --lemme R5try. Only--I'd let YOUQas meJfWBen, ., honest injun; but-D$nn!o 6she}1im;7/!, "/Sid. Nowy` how I'm fixed? IfEq tackleb[C&Qhappe+"itOh, shucksbQ3as lgA youocK,#mySPFN2?GRfeardW3ALL areluct|ig @qalacritW. AndR3lat )erAb workeZ"sw>1in !un( #ed< 1 saa barrel i- shade close by, danglQslegs, m^& aplanne! s0Iter of more innocBT33o ln6material;ed along :; they ca6BjeerArema2A. Bytime Ben\!faY'1outd!ra1he $+Billy Fisher for a kit!good repair;">out, Johnny Miller b in for a1Ir! a!ngw  uCso o, R hourHT hour8 afternoon>," a5poverty-stricken; !2swas lit )3 in2. HhW"s r q mentioetwelveA par6 a jews-harp, a piece of blue bottle-glass to lrough, a spool cann2B key|u unlock1, a!mchalk, a ca decantU& tin soldiQcouplQtadposix fire-crack&r kitten only one eyJ6ass doorknob, a dog-Asbno dog]3hana knife, four1as of o C-peea dilapid)old window sash 1hada nice, good, idlM#th--plenty of0 { 2encQthree coa !on%#If2n't9>9ut ) have bankrupted+Bvill)d2aidaF3tnot such a!,Yqall. HexA3dis8+ a great lawRuman |,"ouQing it--namely, ."inDKaa man boy covet a} s !isG necessary;^ difficul" vattain.U3! and wise philosopche wri 1boo:A now comprehen>qat Work $isaatever dy is OBLIGEDj,<OPlay< not oblig# do. And B helyIto under* :U1ruc artificial flowers or perfor&"ad-mill is ten-pins or climMont Blanc amusement 3are2y gentlemen in Englho driveb-horseJ$nger-coaches tw}r thirty miles Qdaily0q(summer, becaus@privilege costs themable moneym iOy"IKc wages#e XAturnhn3txsresign.oy mused atsubstantialg!chRtakenC X `whheadquarters to report(sI TOM , ]q l"sirby an open {@leasant rearwBpartYwas bedroom, breakfast-s dining and library,|c balmy D air* stful quieeq odor o%Y@.rowsing murmur (AbeeshFeir effec!he rnoddingh" "sh5n,%1but#caLdasleeplap. Her spectacl)1progQup onAgray for safety.%" urse Tomdeserted #ag&` !ndqa0 'iRpower p_repid wayN said: "Mayn't I go=BplayKCaunt&'ready? How mu Adone*AIt'sd.XCTom,1liegBe--I= bear itIb<u; it ISRF." dY1truxevidencezw uBsee LRrselfe a1uld^MDfind1perQ4C. ofAstat true. Whenfse entir*"ed1noteQately QrecoaM!an!n aeak ad8ogw astonish 4was#unspeakable. S|bnever!m U's no^# i1canS whenM2 %Ad to B." A!AdiluO!he !liAby a, "But it#s seldoma aRI'm bsro say. go 'long$pl/Aryou getd3som in a week, or(tan you." &awas sokbcome bSsplenSchiev1hattook him#th&tsE- choice appleQdelivit to him,C"ov Rcture 3theBvaluNflavor a treatAo it uit came~ "siT9ugh virtuous effbsd: a happy Scriptur Qurisho"hooked" bughnutn !kieqand saw^just start%pHstairwayll OUroomsecond floor. ClodsAhand$ @!irgXmtwinkling y52d a #Si'a hail-stormx ! c4acollec+ surprised faculties#sa9"1cueQ or s0+Bclod7tersonal<G} !fe?bnd gon9BrSa gat#eneral t h&2too9iY$!usTit. HGrt peace+ /"SiWAcall"tt s black $6+n1rouC1skipQlock,into a muddy allaled byBback%s aunt's cow-stT4 He aly gotrly beyo  reach of capdand puQhasteR the public square. 1, wtwo "military"/1nie02boy"met for confliY AccorO qto prev#sappointt <G% of one of these armies, Joe Harper (a bosom friend)<qthe oth#@hese two great commay ! dYt condesc,"fi!--DAbettIil2Rstill<ber frys !geon an eminence/Qconduield operations bysD aides-de-camp's army wX uvictory+ nd hard-f@ 1 ba# T were counprisoners 'd, the terms rdisagre d7y $ay 03ed;X 4R fell?and march "ayhTom turned home slone. Q!as &3useJeff Thatc=1ved_saw a new girl e garden--a love^<blue-eyed creaturQ yellir plaite1two-tails, white 2 frd embroi  )JQettes3 fresh-crow2ero4without f^+a shot. A certain Amy Lawrenc2U3his6 !efoJa memory  Gm 1 he#d to distr#; !rePdKssion as adogi o + ~Aevant partialit pmonths win8bher; sTessed b ago; $ <bappiesOroudest Rworld WQshort_e!inRinstactime ssgu a casual=)visit is dH"sh this new ange's furtiv -shqchim; tf Bpretq6 Aknow\4was %"show off" in 2sorabsurd boyish ways,# wBadmi%{Bkept is grotesque foolishnessome time;, by-and-by,  )s Adang) gymnastiche glancZ@!idy MCthe girl was we(xher wayO $upn r leanedq, griev5b+Roping! tarry yetblonger 1halA1 moO orsteps as3n m]2war2doo?%Q heav great sigh asp$Ar for threshold.#1his=! lI", Qhe toqa pansyG L ! ss): boy ranh  Uad with Tr twoY Aeyes= ]Cdown d as ifBsome %of!a goingnHdirection. P- he pick:&w#ry !ba! iO,aead tifar backSas hefrom side8aide, iO edged nearer B; finally his bare-#W3(liant toes) 2e haBaway the treasu#B rouq cornerb only minute--(v Cbutt,$1 inhis jacket, nexheart--orstomach, possiblAnot 82pos<s anatomE1ypercriticaZByway"re # 4ung#<nightfall,ing off," a16 2irl exhibite$, though Tom comfor$wa 3hop@Abeen>,*een awar&P  Bs. FX he strode home !H[2oorfull of visions. Allasupper.cspirit"soCrunt won "what had #inV child." He took aa scoldrbout clB Sidp1seee!miY(qe leastQtriedIugar undGveryG"goknuckles raQ!foxc "Aundon't whackmhe takesQWell,/1torsRa bod 1way"do. You'd b9  bsugar ifq*watchingu sezckitche Xs immunity, l"heC-bowl--a sor&2glog2Tom/Fllnigh unbear_#'sMs6`Rowl d1LVbrokeFin ecstasies*JB (!he controlP#Rtongu!il5 toF Bpeak6!d,^1in,18A sit0 bectly Lyshe askejimischief|u! tCrRbe noA"soE  !asefpet model "catch2 Heo brimfuQexultR1 Thold Qcld lad($#ba DstooFCthe wreck discharging lightnings of wrath(#Y v, "Now iVm2At gQspraw1on 2loo potent palm#ups!to($"keTom cried out: "Ho 1'erbelting ME for?--SiK it!faused,\vl1heapABut 1shes5herQgain,W RUmf! 4youbget a lick amiss,)Wsome other audacious I wasn't az enough." Then her conscience reprgeqshe yeaato say'3 ki l;ashe ju - !beo4tru!a Zr7T cipline forbadhA. Soh rsilence2d1bffairs av2rt.|1ulk# a W 1exa chis woBknew3Qheartb Bas ojAkneen was morosely gratified b 1ous\)OAhangno signal take notice of nona3ingR fell upon"no dthen, _aa film Bears~f recognition!pilasick u6lBeath=bim besee}5 onforgiving*u]cds facew rand die word unsaid. Ah,+Hs !el2? A b$ZK Qiver,  Qcurlsw9<8Dsore .sEhrow 1ow 4earxfall like r(ps pray GoAgiveAbackG!bog\  , AabusY9_Rmore!k.blie thlsi02--a =0 suffererP"se grief C*# e$so, as feelBwithASathosse dreams,hto keep swall ,Qlike to choke03swaqAblurP"at1ichEAflow}xr winkedran down*l?XAose.| ba luxu'"hi:op17gsorrowXnot bear to have"ly'Lixrng deligh\ Brude0Cit; <too sacr/rcontact7Tso, pU,his cousin Ma31in,!EalivAe jo!sesB4hom+ an age-longbof oner aountry!go~in cloudBdark Qut atKDdoor|Bsongunshine in at@1"wa B fars the accustom"1unt=?S` desolated"suwere ind9. A log rafqthe rivGvT"imfQhe se!i on its outer edg Aempl+reary vast*6stream, wis4L Rhile,_ u rly be djQt oncs5 un6c1the&'routine devisWn9N*Y+Cflowt>got it out, rumple!ila 'Fily increais dismal felic) %HeFQ1pitu knew? WOrshe crym8! L! r%toRarms #ne  him? Or2she(!co1all bhollowU(1? Tuch an agony of pleasu ) ` t1 i m\ set it up in new0!vaosTswore ithbare. At last he rosei?NJAdepa4l A. A half-past nine or ten o'cT/"he93alo+'street tothe Adored Unknown ;X{ `; no sound  3lisdVear; a c/qwas casa dull glowbthe cuCof aX"r-story Q. Wascbre? He+,j*s stealthyf/ !thn3 he1und]#at j Aup aC#,ith emotion; Claid]$wn9#g bit, disposingpAuponp Gback hands clasphis breah41his 5*1thutdie--ou~ jyno shelterqomeless-C, no "ly@Qto wie death-dampsR!ow8  2benvTinglyqmthe great3cams4SHE:!eeww4'E outvT glad/U,p4oh!A!hev Atear>poor, lifWform,=>Dsigh~1a ba youngE so rudely b:*Duntimely cut ? Aup, a maid-servant'cordant voice profan" holy cal[qa delugAwater dren#rone martyr's5"s!astrangvhero sprang uAa relieving snort%awhiz aPa missil/vir, mingleam"rm Qa curHBshiv1glal a"Q, vag rAv!e >Bshotvgloom. No!Q, as +all undressed for bZ omission. CHAPTER IV THE sun 5!2Qanqui@"ld]DbeamWF'eaceful village~a benediY Breakfas,M had family worship: it bega# ab built6up of solid .Scriptural quot/s, welded`%A a thin mortar of originality SNBsummf  7she+a grim chapter xMosaic LawKaSinai.Q gird Qloinsto speakh2bto "geverses." Sidlhis lesson/"c beforAbentt his energies5 smemoriz\CfiveeAhe c$"8the Sermo!Mobecause 2uld.#noO, were shorter. Aalf an hourugeneralw!no;wn =Qraver) %olN'Bf hu-3 33bus $Qng re%ions. Mary took<1booAhearPSrecitahe tri!|] Gog: "Bl!ar 1--a " "Poor"-- "Yes--poor; b025#In? :$ i/Ubthey--" "THEIRS BFor +. LRirs i kingdom ofnEy>_mourn&ShzS, H, A S, H--Oh, IO$"wh is!" "SHALL BOh, # fb shall-- *Y/ I 5iWHAT? Why3youfi!e,1?--do you w !! bmmean for?2yourthick-h (, I'm not tea[1youpyC1 do. You must32leaI75. D"be"buraged you'll manage it--f 2do,11Agive #ever so nice. There, that's0boy." "All{1! Ws;"TMary,K C+'4Neryou minMbsay it's,< AbYou be"sou%. Qtackl ;3" [did ""*2und double pressur;-curiositprospective ga2 diA)2ithD he accomplishe% 1hin SuccesQ gave  a brand-new "Barlow" knifqth twel2d aSRcentstZSnvulsGthatGVsysteL[ DDoundTrue, the cut anything, buwas a "sure-t"" 5t  inconceivable grandeur_!Bat--lBWestern boys >A got N|a weapon1#qunterfeZ3a injur<3obmysterDwill] erhaps. Tom"ri' scarify82cupuR\ "it )ArrancCgin F dbureau" !ca\ qoff to  eSunday-school. FLrtin bas 8andmABsoap!he  3"oo21setMne$Rbench2; ta$ d+be soapeiy; sleeves; poured>& ,W=y~Senterqkitchen F ?ace diligentlyFStowel|-g"oo&&Q remo,5and2Now49lhashamesmustn'tVbad. Water wShurt c#"Tosa triflVncert;sin was refillAthis3xm&ito'b, gathaf;/% ebig brGU9(hen nDboth eyes sh8Bd grC+t.[ , 1nor&testimony of sudsR>2ripT Aface mse emergf>x,fnot yet satisfactoryQclean territory2DJBrt a%2chiohis jaws,mask; bel_p4dis lin1 dark expan5qunirrigyBsoil]aspread7,rin fronlAback  2himBnwhen sheY%dR4him$Ba maqa broth1adistin of color)Aaturh7neatly brushe2its curls w]Ainto2intsymmetrical effect. [5!iv;w smoothL[3labdifficultQBplasNI3airAI]3qhead; f(] effemin71andBown  lith bitterness.] Thenr!go! aP1 ofF#cl%13use 1#on Bs duvH!wo s> were simp1"ot%#clothes& "soJRat we qthe sizV brdrobe3D"put`"s" !!S; she+Qneat "/m,his vast shirt MGB oveshoulders,soff and c V-QspeckSrtraw ha)1nowHed exceedWAimprcand un2abl"was fully as E as OOTa restraint e lgAm. H-"atU b forgeCshoe"5!peZ61 cothem tho"ly/#taHis9Bthe 9rthem ouH2losStempem~z bm$o do everything + "do2Mar&&rsuasiveTPlease, Tom-- 3So &zhoes snarlingJ(son read9/hree children se3for "!latat Tom hd heart; but3andbere foÊit. Sabbath`-from nin$Aten;B church service. Two  "ermon voluntarilV :2too!ger reas.TZ urch's high-backed, uncushi$BpewsU!~h4d persons r edific_bWmall, plain,'a sort of pifR6ard*kQon totia steeplB Tom droppe(ps2acc0a comrader]2ay,N,o)2a y*;aticketYes." "What'e'Agive:APieclickrish fish-hookX2LesExa'em." 5(0 ? W property :!tr=cMwhite alleysb  E6Tsmall+ #oro9forSsblue on(1way ,b boys Sy camwent on buyingz0qarious  s ten or fifteen minutes l !/ qqa swarm; #leg Rnoisy: irls, proceeE!se &dAed a quarr84Airst5jAcameyQ teac a grave, elderly man, interferedGny-61and!pura boy's !inM +-;"Dwas }W# i}2ook the boy  ;[aa pin w I boyk%8 hear him say "Ouch!"got a new reprimandJ 'csle clasWqof a pa --restless,8r\Csome> Qthey to recite their@w%~am knewuverses /,!habe prompv8ong. Howe)worried @2reward--in T blue,,q passagl"e '(;2pay#woA of 5*2eciY. TenuB equa#onc7$Tbe ex^qfor it;0Cyellow onep #enV> Wqsuperin;"ntat1ly bound Bible (forty centsose easy3s) SQpupil2 maH$!myKe* (the industbapplic$toeTthousand]H2 BDore? And yet MaryL2two%is way--it the patie5!rk!^  oy of German parentage had wonRqor five3onc#ed i out stopp/{Ctraihis mental facultiesyCtoo (hRand h~+Abett {D idil0dth--a grievouC2he :"onpR occa$y company f(1 exbed it) 1hisfcome out and "(b." OnlRolderts13Bkeep}Li]1tedRlong  to get a2[s6y*sse prizaa rarenoteworthy circumstancer32fuls?conspicuous for  ;AspotEyQlar'stQ4fir"a fresh amb/that often_')ed\weeks. It is{ecTom's qstomachn areallyB:1for#.o. unquestion6-Sntire& hNPa day lonQglory,qthe ecl+!atcI In due ca Astoow 2in {e pulpit" a6d hymn-bookh)!ndcforefi"O(between its leave Fd attentioG  ! m09>y,4aryAspee  RGs asoEBas i ainevitAsheez@&sq who stu'1forAplat<$ings a solo atn %!y,:Qneithen sa refer.01. T  V slimEirty-five a sandy goate Qhair;1ore 2iff!Cing-"wh*per edge almostD:rhis ear-asharp %Ibs curvqa(orners of his f--a fencRcompe l1ght2outh,a turning "e Bbody a side viewqQrequiW hp1! o2ing cravat which?as broad}sE bank-note,!ri Bendspboot toe G8Qly up@ athe farche day sleigh-runners--an effect"l hiously producedTe young men by s'T{Does against a wall hours together. Mr. WaltE as very earnesBmienSsince1honFt1 yhBplac% 2rev'^so separaJ2hemU +Aly m4 "s,% /_Amsel BvoicI  a peculiar inton (wholly absweek-days. He beganSthis : "Now, , I want you` Qto sivjust as3andj1 as1c\ d mV yourBz.!wo!rea_Sit. T etay good2boygirls sh# do. I see one+girl who is1ingtindow--I am av1she1ks !ouGre somewpbsperhaps#one trees making ax irds. [Applausive t$.]"to"ryou howit makes me feee"any bright,/mfaces assembllike this, lea Iu!be|!."[rso fortETso on Fnot ?!toK5Qt1 or9!waa2doeR3vard#so=" familiar to us all. The lpQ thirawas ma2+aresump` of fights andZ& among certai.a;#"s,%y fidgetingGAwhisN"gsextended far4wide, was1eve \ses of i5d0incorruptible rocks"Si!Mary. But now1y sGceasl Qubsid(ofY' EDncluz"<\freceivZ burst of<t gratitude. APP)-7 DS san even1mor less rare-- Rntranvisitors: lawyer Thatcher, ac i`Eafeebleoaged man;,ne, portly, middle-aged gentlem+iron-gray hair^a dignifie@N\doubtless`q's wife.Cas la.*EEchaf1rep$s; conscience-smbq, too--]$uld not meet Amy Law .'s eye, & not brook her loving gaze. Buty1M#isftnew-com1oulall ablazebliss in vCnextBQ"show2ff"=+ might --cuffingfR, pulu0'0$akG2s aq=u+$every art aseemedufascinate a9w:&2r aqe. His k?uBalloV*y 1 hu!in angel's garden--and Qrecor5!wat]out, underk1wavW happU2AweepRO9MaO !gi"stdof hon as soon as Mr. '<1fin?']4int=   D man o be a prodigiousqage--no}A a o!a  county judge--alh  baugust !io6s1hadn`$oerT!devqhat kin;i Tde of"ey'1wan] N-#oa]Shalf "heu rom Constantinople,j(miles away--so heAtrav ,1see g"se1Aeyes3dVcourt-house-- 1saihave a tin roofR awe +iBreflMbs inspbas attL!imE 2ivex!cethe rankstaring eyesw great Judge)# cir ownO.Uaimmedi"n'u, to be11eatand be envbRchool) -been musicY$1 ~: "Look$m, Jim! He's a f<ure. Say--look! h"rto shakRs1him6RIS shH ! By jings,d.Ayou ;1youJeff?" 1fel,Asortofficial bustlactivities, gitorders,21ingments, dischar)4dirk2her!+1re,y r81a targetc2ian!ed-D9t  krhis armE"1 of$ m`ca dealQ splu1uss insect authon@Bs in@84adys4 --Dsweetly ov[s|l!boxed, lifting # wW f~s at ba ApattBood ones Sln /ensmall scoldof qdisplayD&E1ineVnx!tobipline<S"s,th sexes, found bus\Aup aB$y,I' kB6ffrequently had ',"reSa1s (Qmuch seeiK7").- Qittle 5 in$wa 3Xboys wuch diligVDthe (E1+paper wads9Qscuff.above it  ;Rman s beamed a majestic jud smile upon@,dwarmed h Ae su uhis own."!he& Rtoo. e1qonly on]!ngR\Jmakeh ecstasy completwas a ch $to-gZxhibit a y. SeveraNTa fewe!b2n b !ar #4tarYinquiringq3hav! t worlds{2German la8##ga:A a srmind. AndG#is ,r&2dea- Sawyer  Mnine6redY #onQ dema @a thunderboltaa clear sky2 waQexpec"ic^ %Qsourc ten years. BubsRno geEBit--"erAcertf check#d-#ird-.therefore elevated toK_3the@ B#heNSelectW1new| a annouGheadquarterp |#stFbsurpriB-the decad=bso pro>Bsensa}!itenew hero ups C!on l Xtwo marvels to gazt#injbof oneBboysall eaten upBenvy--but tb)est pangI-swho perstoo latDS themselv contribub athis hsplendor by trad01 to't wealth+bamasseelling whiteprivileges s]D2pisC, asUrthe dupa wily fraud, a guileful snakeRgrass !4was;ew 2Tomo"as%2eff superin"nt pump upI7!s;it lacke&wS-true gush< IQoor f' tinct taughZ- zX not well bea]l  ;0s.preposterou8 cp !hae)Q thou[!sh $al wisdom on@remises--a dozen ,#capacity,Rout a8. wBprou3glaH0sH<T1Tom it in heL-ouldn't look. S1nde+ss grain %"d;zZa dim suspicionbG(b--came P-! wnEd; a1`#glrld her ] her heart brokMs jealouaangry,t'&rs3shebody. Tom G!of (Hhought). )asohis tongue,Qtied,J4 rdly comequaked--part75cau awful greatnes rthe manGmain6H$ have likBfall00borship!ifqLq1ark # ph an Tom'!ca9Rhim aC * sand ask!qhis nam?hwstammered, gaspe!goUout: "Tom." "Oh, no,QTom--=aThomas'"Ah~'s it. I7!or\ it, maybe{'W well. But you've)one I daresay""llit to me,6 you?" "TellQ "an"Qother", ","'Walters, "5!fay sirX=n't forger mannerI Q--sir1it!B's ay1boy\ t, manly0 Q. TwoLverses is aEmany--very,(b many.'2ou $can be sorryUQ*c you tOAAlearm( knowledge is worthchan an@1<3is pa; it's4#e  Dmen;V$^d3Qman yC$Alf, -5day'#okR,Y9ay, It' R <)1rec ;A1 ofDoyhood-- Gvmy dear-5tha^mU<  Jood ,L$en? H.)3 ga beautifulI*\d id elegant'"anH  for my own, always right brin"upA is |2you<{!~&take any mone^ose tZZindeeE1nown't mind t $ m+ "isB2 hylearned--no, I know --for we are4$of3boyG!. 1no vAknow2nam^r, es. Won'Lbtell u9the first3tha`!ap$Fed?"l1tuga_utton-ho sheepishblushed, nowz1his! fO'MAsankm ain himH_\ETAposshtc2sweb K Dest (--why DIDH=ask him? Yet hBrt obligspeak up say: "Ad'1--d}#be!.L_hung fire."*$me\ady. "TF twoeDAVID AND GOLIAH!" Let us dr%cu3 rcharity tYsceneJV ABOUTQtcracked be%$th3church begaBring01epeople(1 ga||"mobsermon. childrenHA 5!e C and occupi5ith thei s, so as K{Kd. Aunt Polly zTom and472sataher--TomL%"d G8sleB2!ha9A be GrE9the{e seductive `AbsummerEs asQ. The crowd fil/"s: 1gedneedy postmast=!hosseen better days C may<"hiJ "ha$y3re,| 4 unmp#ieOejusticRpeacei widow Douglass, fair, smartQforty!ene,O2-he4Asoul well-to-do, her hill mansj only palactAChosp+and muchKmost lavish 't of fes,St. Petersburg [RboastAbentxQvener,3MajsMrs. Ward;  Riverson,bnew noaACance_1ther village, followRa tro8lawn-cla.ribbon-de!3 p-breakern#q clerks!owfa body;C hadTG vestibule sucD!cane-heads, a circn!!wa! o !imcg admirers, ti Alast!ru ir gantlet; and/AcamedModel Boy, Willie MuffFs heedful carlS25 asXere cut 2x ! b=tN,>#to, v1prisrmatrons(2ll vh !so0. qbesides2hada"throw;3 Qm" so. His whit.kerchiefZhF#q pocket behind, as usual ons--accidental$)noa!hef1ed ytas snobcongregapHefully (: 'T1once, to warn laggard0straggler a solemn hush f p! <Q+vdbrokenBtitt=8and& choir is galler=GF!edthrough =conce adQY Pill-bred, but I rforgottgh!rea[ !y [B agoV.I can scarcely rememb?_="itI kg1 in foreignj#"ry* minister & "ou3hym-1rea a relish, in a peculiar styleZeat part His voic on a medium key&Zasteadi:/i0% a"* rBbore1strY5umphasis topmost wor splunged8spring-board: Shall I be car-ri-ed to!sk !on flow'ry BEDS of ease, Whilsts+OIH sail thro' BLOODY seas? Hqregardeadful readKZt"sociables" h= #R>!to;r poetry,Cwhen32ughcqladies l3 up<3han let them fall helplesslyrir lapsc"wall"C!eynB1k\!irZ5s, u say, "Words cannot71 itfis tooV, TOO is mortal earth." Aft 2hym~&Bsung2RevtSprague#' into a bulletinGuoff "notices"ge,qocietiej-1i#)o4 2st qstretch of doom--a queer custom#is vin America#cities, away x4)1 agAabunZnewspapers. Often3Eless, to justifm 1adi7l3charder4t~1 riu'ittprayed. -, N#wabwent iIhtails: it pleadea rBttle),3rend:7=eip ' itself; ?y([State officersqUnited . ' 'C)s5A Pre.t_q Governm$poor sailors, tossed bK1rmyM ppressed millions groaningeel of European monan  A Ori5 despotism1sucDght 2tid?'rand yet-M!yeusee nor !to &alRheath)the far islB seaZaclosedW a su Twords!abmfind gra)RfavorVcseed sm fertile ground, yie%Qime a?0Charv9good. AmenP!re 3a r(Q of dP5thev8! cPy sat down whose historybook relates disQenjoyQB, he< Aendu}Qt--ifN1ven9J r  it; he kept v y a62 --F6notgc#, qBzc of olvthe clergyman'ular rout}&VaiQtriflsRnew m3 terlardedear detected iWhole nature resen!considered adAs unqcoundre I |/B a fU'R lit  " bAew i#nMmaAtorthis spirit by calmly rubbing iti d8, embrac"eah,3armpz}& so vigorous7at eo$;part companyBbodyvthe slend9read of a neck!1expto view; scra0Qits w rind leg'AsmooT !toCbodyK|been coat-;~,&le toilet as tranquib if it.)$E safe. As!ras soreEaitched@rab for iyQnot dY4}4iev3oulbe instantly destroyed 3did qg whileB was2 onhhVqsentenca curveTstealq.Cthe ra"Amen"r!hewas a prisonwar. His aunt bthe acmade him let it go rhis tex8droned along monoton an argumea %"symҵBb &byBnod 3y Wdealt in limit 2firMbrimstonSthinnpredestined& Eto aso smallSo be !2worA sav1)2Tom_&ag ;; $ % h2how:t#aseldom: Delseqhe disc MH"is!he8qreally {16forE*a grand and moving picJH"&+=world's hosts at the millennium*B !onc aamb sh"%liS[ , ,!eaAm G2hos 5les1mor/C theEspectacle werQahe boy v# D" principal character beforEaon-look<>!s;#1fac" oirhimselfYhe wishe",Q tame lionf!w 8Qpsed (ing again,fhe dryQumed. eHpA him treasur # a large black beetlformidable jaws--a "pinchbug,"8#Rit. I/=ercussion-cap boxhm1did/bto tak)b' Afingal fillipgIbfloundKZ2isl1its !ur ger went1's Co!lart5its" legs, unAto turn over!ey !lo1forF^!ofCt. Other'uncR]1q relief# wyof too. Wa vagrant poodle dog<1idllong, sad atM vt, lazyI1oft e quiet, weary of captiv(1sig"Bfor LMs;HAdrooz Ataile8bwagged:1urvrize; walked a it; smelt a87afeu4 4; grew bPJUA6rY1l; Trhis lipqade a gzly snatch,YA misa;3it;/nn %; g diversion; subsid  Stomac)W betweenm3pawh scontinu experiments; !ath Aindi- absent-mindi(1nod ittle byrhis chin descen/]u he enemyAseiz[2re sharp yelp&li' fell a couple of yards away, S}Amore neighboring spectators shook)a! inward joy, s2afaces rA fanI s)_aentire #ppXdog looked fo8 4probably felt so r1entc iheart, tooBaG>or revenge. So .n:9gan a wary attMnWQ jumpfRevery2B, lightingP!hiKJae-pawsin an inchB2YouUX O=3Oh,Q, I'm,/"W4=--wQa, chil9 X!my!R toe'+ified!" J#ol[UBsankqa chairB#%ed! cEB"a did both0,Arestwh/d<P," ayou did Ce. N ;1shus aonsensCd climb"thg{$ThS ceasrain van Afrom!to   ' it SEEMEDi"itTBso I B my aat allqQYour ,#K+ Sthem' aperfectly" "Ther|Tdon't Ahat @'Open your q Well--4 IS1butcre notwVto diG!at. Mary, gec>aa silk a['1Rnk ofq"ek$2n." !pl/j7 Churt=!re~ish I mayO%qdoes. P_@.1wan-]stay Don'tyou? So all this row wGE1youM>ght you'd7i ibgo a-f*?yI love you"1+!ou !ryQy waycQbreakX?l !t soutrage!=." dental instru?S read #%on8theA fasRTom's:Ra loo& #tiod edpost. TBseiz* n^QthrusI($inR2oy' U hung dangb- } Rrials@*1qcompenst+s'#enrschool >fast, he6qthe envc( 1 bo"5metSfap in 1row&eeth enab 3 toMRorate!1new<>4 s9ing of lad9G%in the exhib@0;2oneShad c ' 2hadr a centre of fasc and homage2o[Qnow f:OJout an adheren Tshorn!Rglory'QheartyBheav 3a disdaibZit wasn' o spit like;our grapes!"%e wanderh dismantero. Shortlyb3camMthe juvenile pariah5he n;Huckleberry Finn, sthe town drunkard.,-Qcordi2hat dreaded by "e s{t 2idllawless and vulgarRbad--zPxk?eq delighV-forbidden societyAthey dared( B!om @!reNCRboys,faxenvied >his gaudy outcast cond;as under strictIQrs no8Mm1Splaye3him1timf2got% Ince.c!slways de cast-off of full-grown meAthey  in perennial bloomRflutt sCrags{!ata vast ruina wide crescent lop a of itp!m;ecoat, +72ne,Bnear^2his[ !haQ rear!buttons farY ; 2ack1oneMeaupportos trousers;Ceat ! b$A low~contained n A friM&rlegs dr4Bdirtanot ro[Iup. 1and?A, at"own free3Yrteps inKDweat in empty hogs> in wet;3Qto go2 orurch, ornmaster or obeyXcould go  or swimW1herCchos1sta/long as it suim; nobody forbadfd to fiyhras late! p8 d3t)2boybarefoot e:+ # lsAfalli1to wash, nor put onf0wear wonderfully. In !rdJ8tQEgoesxlife preca1hadgrthought\ harassed, hampered, ; inkBR!ha!AJtomantic : "Hello$!" K ee how youI it.a A gott rDead ca%RLemmeC"imp. My, he'tty stiff\Are'diqget himQB2himR a bo#di4zI a blue ti@1and"adBat ItVter-hous1 T#itBen RogersI!goa hoop-stickE6SayU!cats good for2hGA? Cu1rtsHbNo! Is 3so?JS some* Gb3BI beedon't.ibaspunk-?5S! I wouldn'tqAdern 85You-,  $D'OD tryqNo, I h DQBob TOA didrWho tol!so"he Wa5Johnny Bak im Hollis8'ld2Benmca niggLC them bre now2ellt? They'll lie. Least<1all WA. I 2HIM(I%ee WOULDN'T\Shucks! NL!te`lbone itvQnd di=2a r/BSstumpLthe rainQA wasPI qdaytimeClith his fac Atump-3Yes* I reckon so[ADid j By an3"I :.lAknow@Aha! Talk2tryx * c such a blame fool,c@Aat! @S a-goVado any2. YV rbrself, e middle Qwoods\5Y's a Btump1jus'7rmidnighrback up!s qand jam/Q: 'Barley-corn, b injun-meal shorts, ^ {q, swalle_&drts,' 1n w way quick, eleven steps,(eyes shuthen turn.<BtimeYAhomeDrout spe+ttbody. B#f$Wcharm's bustesounds likxrood way !!wthe wayB donNo, sir,x1cann't, becuzoGartiest cis towT!BE1war 2him!!'dU!ed*xto workYS. I'v1offs'9"of off of my9sAway,m 7. I Tfrogsv$*`U 5got;"Qmany gb. SomeI!'eFNSnYes, bean'~de%1Havk?,"'sSway?" "Youd6 2pli!be#nN1getb blood"thN# p3 on one piec!be,d{q dig a *1t '`?aY+"rorqdark of6mooQ burn/ s}3 2ean#se Uq=.ll keep drawN$nd ,mA feteXFv+1"soQhelpsh!toOA the.Rf!sof}Qcomes %--;"gh,"bui$you say 'Down;awart; 1no @'Bto bgme!' i " T 3y Joe Harper doe!he1'enCoonville and mosQ bwheres#say--how do:"urA b!ak1r c+Enm?graveyard '%Ubout wwXromebodywas wicked hen buried3Fit'sFqa deviloP, or maybe%,3 't see 'emcan only+ u7indYAhear9Qtalk;|they're tahat feBawaym#he<<01'emGqsay, 'D  corpse,i,A1cat,Qye!' ;2ll 91ANY7b." "Stnright.}  "No@Rold MrHopkins mz !soqAn. BQsay sra witch#ay AKNOWQis. S$*$pap. Pap says so his own self. H! axAone *a#!eeUawas a-Sring himC !e T'Brock9i!ha AdodgQe'd a>e)that very > $heFoff'n a shed wher' s a layisQbrokes1arm"W#!diOknowLord, papGeasyK1loo- *q stiddyDyou. Spec"ifcmumble d$b're saS he Lord's Prayer backards2Sayy y:"trB1cat1To-. .old Hoss Williams t8a" "Buy him Saturday. D` ?qtalk! H5uldbAarmsF d till -?--and THEN2Sun|Sevils Tslosh 1muca,2, I' L!nLaBso. #goT!f'"--$Rafear A B! 'T qlikely.djAmeow1Yes#, Z'geR Last timeOkep' me a-me8!arA1ays( r&rocks at mJb 'DernQcat!'qso I ho Abric{!hiDsdow--bu+BbwTIn't meowe bauntiea#me|Q4'll8!is%. 3!'sOLqNothingaS%Ou1-3at'AtakeG .Uqell himHAAll 4. It's aIqy smallr, anywa#anybody3runw6ae1 bem. I'm satisfiiwF!enAtick"Sh!tiu plenty  1 ofrif I walCo2whyn1#wed!cawT&Cs a Q2onef YAyear,b--I'llbyou my  ALessi1Tom1 bi$pauAcare3 un$Git. ~a viewe#Awist-. The temptation+strong. At%he"Is it genuwyn4Tom>'>!shthe vacancy.a!,"YB, "iAtradTom enclosQ8 A@lately be94#'sG"th separated, each fee !wealthier thfore. When Tomy'ittle isolated frame ,trode in briskly=P!ofY1who AwithQhonesbed. Heahis haQa peg52fluT BselfJ4}31eatI r-clacrit", throned on hig1reat splint-bottom arm-',R1doz)!luW" drowsy hum of study. The51rupcd "Thomas Sawyer!(Ghis name{f7 in full&!me$rouble. "SiO"Come upcRS. Nowbwhy ar2gaiN3cusual?= "to Srefugz"3lie' Pw ; ails of yellow hair hangingoae recogn$PHric sympathy of4%;&bat forTHE ONLY VACANT PLACE girls' sZ QinstaE STOPPED TO TALK WITH HUCKLEBERRY FINNY's pulse\:Qhe st helplessbuzz of 5r ceasedcpupilse) foolhardyaqhad los% u/:9*(d did w"Stqto talk@ Finn." (eno mis}e words,!isE!motounding confessionYever listen!. No mere ferul answer f4is offen%1akeyour jackej  's arm performed until it!ti#>Qstock1wit) _y diminish`A ordllowed: "l!goVs!th! And let)bSt0xr titter-VripplE{qom appe^rto abasiboy, but in .G14was caused rather0!byworshipful aw%his unkn Sd(&IAead _#urRlay icgood fortuntss Rwn upk(1pinc<c0)'Qirl h,away from himaa toss$&nd. NudgesBwink$qwhisperO4verQroom, rTom satW!hiIs "Aong,"CdeskO1eem[book. Byby atten$DNjX#ed murmur rose]AdullxEPresentlboy beganqeal furdaglance robserved it, "4G,2" a8and gave hi-HbackRe spa\ta minut2she caut4duQ, a p5layi"erthrust it away1g!pu>Kback,^2butC&Bimos;$om9Sly reZiqits plaz!heit remaindscrawlts slate, ", Bit--2  -3" TdJ uno sign. Now draw some *!hi 1eft;q. For a31ref:2to ~[Sher human curi@Axq manifeby hardly perceptibles !boPkAr, apparunconsciou+Qa sor^ noncommittalnmpt to s6 did not betra/h Aawar&itM 2she!inQhesitB$lyb!Le  Apart 6=*l caricatusra housetwo gable ends}a corkscreC,smoke issuingS!thn[AmneyX" "'s !es0Bfast6elfeAworkqshe forgot $D els`f6, she gazedAAment)n ,It's nice--make a ma artist erectH$an%front yard,qresembl(qderricka 4~1ste\ !ovgek&not hypercritical;Kwas " Const! a beautiful man--now me cominggom drew an hour-glassa full moontraw limb1 arhe sprea1finE$a portentous fanwL #t'#soI wish IPddraw."feasy,"q Tom, "1TlearnB"Oh,i#AWhen At noon. D 2 goh1to dinner&PDstayAwillrGood--tAa whas your] EBecky Thatcp5yours? Oh,$& l1theU they lick me by. I'mIAwhen \2YouW)1me Yes." Now<N  tl1rdsW /1"gg1see !Oh~Uain't" Yes it i5"No'#wX5I do, indeed I do. 4letVYou'll teNo I won't--9Fand Rouble%"ou3G6A? Evs ! aA liv!6&M! e3ell ANYbodysOh, YOU!Lyou trea#o, I WILL see."+ 1sheher small =  Dnd aQscuffLAsuedq pretento resist in earnrut letts_ slip by degrees till thesdA4vealed: "I LOVE YOUj"OhMb-Fing!1hit hsmart rapreddened >b 2ed,~&theless. J[$K junctureboy felt a slow, fateful gripM3CB earp a steady 1 im+zSwise Aborne acros Gposi0own seat, undwNBpeppX/a7f giggles i!tna~-Cstooqhim dur;q few aw_bomentsfinally moved IsU4out5ba word3"al Tom's ear tingled$EBhearWjubilant. A rquieted 3Tom nQefforX Bstud the turmoilRin hitoo greatqurn he h#hi  Bclas1}1 boef it; theOgeography4 Alake3 o mountains, Srivery r contintill chaos wask  Aspelc got "adown,"3S succ`"ofG1babA dN3he C2 up=ae footyielded upkpewter medalj worn with osten|for months. CHAPTER VII THE er Tom triedl shis min,# " mXs ideas wandered.9,b a sig:a yawn, he gave 0V. It $anoon r4Fb wouldm} air was 3Aly dc#t a breath stirring. IRleepi$ sleepy day drowsing<Re fivUtwenty studying scholars soothe/soul lik= #is_bees. AwayE1fla sunshine, Cardiff Hills soft green sides th[ a shimmBveilaat, ti| the purple`iWa few birds float Q lazya!ir; no other liv*bwas vi$x1but7 4 co^W Cwerer's hear=!be3A, or 3 toA  fE to do to paq drearyH4. HcQ into%poO0his face l"gl%:gratitude3wasa#, ) not know i!enXJ3ivexrcame oua him a"Va pin"!6newx 3's bosom friend sat nexb, suff!ju9;4nowMadeeply{"grm& 2ent.1menj3an  7was'rtwo boy r sworn s|1eek embattled enemies on"!s.^took a pinBJAapel #as q exerci1er.AsporZwwU<rly. SooG 6}Beach neither g g1ull denefit*!ti<!o Qt JoeAQ4ate 1rew "neFthe D/!it C top)Btom. ","Whe, " Ahe iqByoury9nbq him up)qI'll leB!e; "2get d)et on my[,@re to leXalone I can keepQfrom  S v!, go ahead; star!upb escaped!pae equator{6DawhiPtU:5G݁ghis changbase occurred often. Wg"onZ !wa5r^&t7r absorbNHYblook o? #as 3, t9b 1ogeo|QsoulsC to B1ngsVluck  S b JE !hicd&atxDcour9rQs exc Xs anxiouh|!thH mselves,<0Egain:Auld evictorfvery graspn)"to#1 cbe twi%to begin,3pin'Bdeft+Rd him;1andTk W)gl:n(uno longzQemptaswas toocqreachedFand lent a11pin 2ang a. Said he: "KbI onlyd1wan TU2#NoJ a fair;e' ~3QBlame>I'!go l#mu+L?b, I teK|"!" shall--+#liALook !a, whos\ 1ickICcare$m /ha'n't touch %%,Qbet I . He's my/do what I 51him die!" A tremendous sdown oneshouldits duplic r!s3twoW dustbRto flbjackety[ to enjoy had been tooS]sBhushhad stolencschool wCetiptoe"\nVd (Hcontempl (p4~performance |!heQributs'Z%broke up a flew to P1 in ear: "PutHabonnetlcyou'reBhome11you)5\rcorner,'.2 'eAslip|rthe lanAcome.!goQoAYcame way." S6"ne+5one group of -gCith EF. InL:*"et e #la.:qthey ha {Uy sat," a5JBthemQ)3ave the pencil 0.Jriin his, gui 4 3ed a surpr !. #(t&Gn ar2w#fealking. ToAswim]in blissS}%!DoLlove rats?" r! I hatM do, too--LIVE onesI mean dead,qwing rouSr heaAa stq[1for much, anywMA likIchewing-gum<l25o! 8qome now/?8"go1letAchewV3 2youUqgive itQ3 to8AThat`agreeable& hey cheweBturn'Y?K!irSk,!!stRbench "cet#ntment. "W>)an/circus? T #YeQmy pa7!"mew*Atime/ET" "I)f three or fouryQs--lo:. Churchr shucksbD-C (on/; qbe a cl5%nWScI grow )"! ill be nice1y'rBAlove ll spottAL1so.=v1getAhers of money--' dollar a4 cBsBSay,_+bengageSWjt`(2!b ٪"ieN.+ 2youC!to.E so.CknowqQis it2/Like? WhyG You S Qa boyRawon't \ FZ\ Zcyou kiPw all. Anybody%#do.b"Kiss?d=1for2X Ynow, is to--well[yIoAEverqH2yes+'Y8 ". z remember m F wrobbYe--yeW]YC%I  TShall 8YOUHB--bu5No, t now--to-morr8Oh, no, NOW7!--Vrwhisper aso easLQ #o took silenc Acons"and passedBarm Arher waiS]QT talezC7/outh closuher earn he add\$2Now!--d t-P3ShePj" a^2You vBfaceBs^23 seI;I~you mustn'<[--WILL you]?&,!N  .a." He n\DidlyZ(her breath stirr?Bcurl , "I--loveP-.(r sprang#tand ranfs+YCes, with1aft*uy/x Cher 1JQaprone1ped"nehV pleaSWn]ll done--all a. Don' be afraid Eat--+?+ll. Qhe tu{"aD YhandsA+2she us  qs drop;Qface,rglowingy"truggle,,O submitt-!omqred lip 3rNow it'ACdoneEPBt 2yout0mk+@!toXy,2 meand forever. Wi 3'll)u!LLkmarry +2--aX - 3ith)CEly. :. u's PART{)I('U*we^w02me, Rthere<Rchoos Dnd It parties, bE  1wayeO4're DIt'sW'3. IRheard -|%'g>mSAmy Lawrence--b2bigF1tol{ ~DlundUe stopped,1Sused. BTom!,/irst you'v3 to"W chil2cry94Oh,trk I"arshy   1you1Tom3 kndd i  BneckJ j%sg0%im!Qrhe wall1wen\bcrying05  ing word GQas req$: (!pr4as he strodWQbutsideY,2lesquneasy,: Sglanc2oorMQy nowthen, hoping she.RrepenSato fin:4shee-e f!barnd feari.;'roS!ea hard2himke new advancesM ,Nqhe nervRmself{Q and _]"zstill stan797, sobbing.!'sDt smote himD ?2 ,ing exacoQproce-ge said aly: "* ], I--\ A." f4ply 4bs.D1"--/tingly. Y !mea?" MoDTom got ou( chiefest jewel, a brass knobToan andiron2{ $itd h,2thaq,{/3w * y Sc3uckY the flooruTom marH.:C hilR 1far[!rez1 noday. Presently 3buspect rRT1was7in sight. < 2play-yard7SthereU1she,v Cc, Tom!/alisten}trL7had no companions l oneliness. So s t`Ro cryfp1upb herself;qby thisZ L1gata3gai[ashe hatAhide+Qgrief?6cbroken aK of a long, $Q, achhfternoon6! nk#mo Astra/VSto exbsorrow/ q'I TOM dodged hp t through lanes96H@&ou!r51ing3larinto a moody jog. He va,"branch"9"reDH  6prevailing juvenile superstiti!0 c water baffled pursuit. HalfC1! l$2disD93ing[#Douglas mansion jbe summ"'Z ,1wasly distinguishablCoff Cdvalleya a deny-od, picks pathless wa>r2ent;4.!onssy spot,spreading oakrnot even a zephyr(*_anoonda(at had 260 Tsongscbirds;:1 lasa trancCwas Vby no sound the occasional far-off hamme,of a woodpeckiBm 1 re .1rva|wense of|*sprofoun=Rboy'su)w!1eep melancholy;o A3s w<happy accorqhis sur1ingA sat< )oAlbowhis kneeO2n i.S, med69 * rhat lifbut a tr=1, at bes! +3orlRQbeen 2!eda2g--Q very dog#" by some day--maybe wh@8too late. Ah %die TEMPORARILY! Buselastic]o?ath can4e8Aresssqto one {rained shap*46Tom_&drift insensiblyJXZconcern"is7|.T cack, nowmed mysteriously? aaway--A'so3 ?countries beyoBseasQcame S! How 1sheF then! The idea of beQ recu,mto fill himdisgust. For frivolyR jokewStight"anAsy intrude`/1 upbspiritwas exalt3vague august AEthe romantic. Nota soldi<,"yell war-woraillust. No--bette4ld#joIndians,unt buffalo$$gowawarpatr4x2S rang-the trackgreat plaite Far W 0QfuturM+A q, brist2with feathers, hidej$ith pain,bprance. ,(QrowsyN $er|a bloodcurdssar-whoose eyeballaG unappeasu envy. But noOb gaudin than thi/dpirateas it! NOWK2lay~ #"im"glaimaginsplendor. HowMHQould c people shudder1glo(AS go p{%2seaf"hiu,1, l'qlack-hu 2racZ02e SsFc StormHIisly flag flyA fore! And at the zenith ofQfame,suddenlyDIold village8Cstalcb, broww-beaten, black velvet d ArunkCjack-bootcrimson sash,AbeltJ"horse-pistol9e-rusted cutlass atCAsideM2 sl4("atTwaving plumeIcunfurledthe skull Abone*  Bhear[2sweobecstas>$G #s,3TomJ, P--the Black Avengerpanish Main!"  j,d Acare's determined)2runfrom hom Renter' /\.2theDnext[ Afore rust now+1 to&Wreadybcollecresources %)Aent rotten log nv%'an2digu 5 onFihis Barlow knif1oonrck wood ed hollow"puusand uttwis incan~,i8 dively:bhasn'tDhereovW!st 2re!^rbcraped`"ir Q expo pine sh9:i8and dis(chapely,2 trcH-[5hos'and sides wer/ds'iHra marbl 's astonishmenboundless! He scratc Ss hea a perplexed air7RWell,1bea*y> +Btoss5pettishlyStood cogitatUsuth wasfa Mqhad fai91and0-Brade0AlookR$on as infallibl byou bu OLcertain necessarylsBleft  fortnigh'BCopenCplac"8theP" h ajust uh3yout%a1s2had1los.  t0 H,9 |&Qno ma how widely+}Qk"w,~ bctuallunquestionably *-DtrucF2faiQ shak"-Q its Bs. H"Cmany C Rasuccee3but{aof itsAfore:Q occu2himtit several timesC, himself,n;1e h*-scs2warvpuzzledy!an\decided $Qwitchainterf Bharmhought he tsatisfy at point; soe!ar<1he Csand aqfunnel-Qd depo!itJ9=$ F2 toyG and called-- "Doodle-bug, d $'#mev0Wgknow! 5 5*! sn1egaBwork"3bug e a secon2darted um)fright. "He dtell! So it WAS aAdonef !I ;%!knv5'"HeDknew2 iQof tr to contens#chahe gav^"Ś$ag%iT`he might asAhave>  w1 ,Oatheref@Btwicl.last repe2wasRssful$0Qs layU1foo Qeach a. Jus^%ebYntoy tin trumpet 3faintly dow%green aisle~QorestWoff his jacke|trousers,$ a suspe9belt, rakN Tbrush 4thelSlog, 8 n rude bow1arr| lath sword4in A7$Bseizse thingSbound, barelegg 1 fls "AhirtL7halfelm, blew an answ@9atiptoelook warily outk1way2thasaid cautp--to an }!ryH!an Hold, my merry men! K;BI bl06Nowf>q, as aiAcladbelaborarmed as Tom. Tom]Hold! Who s7ASher BFore_qhout my+q?" "GuGuisborneVAan's).^1art-L--" "Dar  hold such language=Tom, prompting--fo8y talked "se book," qmemory.l ~/ dsI*! I am Robin Hoodkthy caitiff carcas:Ahall%." "ThenRindee% famous outlaw? Rvgladly will I dispute#2the=Fpass3wood. Have aeyWtheirqs, dump4eir.Brapsf e ground, struck a fencttitude,!to61kBv) reful combat, "two up andfdown."p!E Tom aNow, i a've goQ hang=Ait lM!61y "a," panhK !er k. By and bhouted: "Fall!K8! W`+ sha'n't"Nrself? Y(AAwors!it/4Whyh M@!'tv;A#ay it is inVbook says, ' Qone boa[stroke he slew poor $.'!toNr ,ame hit oQ." T#>PFuthoriti 1Joebed, received!whE@nd fell.&"4U Joe,^up, "you8o(N2 ki1*Ffair{f!docE_/ell, it's blameC's aQBsay, you can be Friar Tuck or MucAmillD[ss%R lam M h a quarter-staff; or I'll bSheriff of NottinghamJe w9h?Bill 0AThis a@#soadventures were cr4FATheni!beB6 L!wa- !by treacherous nun to ble s strength away 1ughneglected w- 4And/}! r 1entAtribAweepOC4s, R|Qhim sbforth,V m"ow(his feeble hands", e" Q fallTere buryuu 1eenqtree." She shT$ b&would have diedQhe li>+Aa ne0and sprang upMAaily a corpse.->dA, hi!ira!Gutre Ooff grieao <$noz4u3mor Bwond what modern civiliz= claim to h Qensatiloss. They;F-rather be year in than Presiden the United States 0 CHAPTER IX AT half-past nine!ToB Sid\1senm"be[usualir prayer='(onqK Aawak waited, in rest"imc<{it seem0q be nearly dayldhAlock;Bke taqdespair&and fidge#asrves demQ, buttbas afr+aSid. S12lay,%!st"upJark. EverLDsdismall<2C by,'YSness,a, scarceo[fnoisesemphasizeSC ticking aHh Ato b!itS-A1. O+"&ame! cT(!cstairs creakently. Ev1ly 6 !ts abroad. A m#Rd, mu(snore issued Aunt Polly's chamberA now4tiresome chirqf a cri!thA human ingenuity locate,JQ. NexV ghastly?SdeathwatcDwall bed's head made E--it#abody'sMPnumberedUBhowl{far-off dog roseg 3wasAa fa<K a$r O./an agony. At ih| 1ied+had ceas@d eternity begun;00 to doze$Aspit2e)chimed elevenl0A;#%8me, mingl Ahis !formed dreams, a most ' caterwaulwA raix&of a neighbo)awindow81urbSqm. A cra"Scat! devil!" aQ cras<an empty bo;z}ais aunt'sCSshed T#"dea single minute laterl.jr$al,Sroof 3"ell" on all fours. He "meow'd" withn once orpn jumped  g3]*QL. Huckleberry Finn washis dead cat #ysAW1off\A,#edO#a gloom%thh," (all grass4graveyard. It &old-fashioned#ern kind13on a hill,5Da miK'ERillag1hadazy board fencet $itcAlean 1warY1outek$th!buZod upright nos1. G n!ed!ew rank M ? cemetery. A2old*spsunken in,Mnot a tombston!; {-worm-eaten qs stagg#Rover $ aves, leanaor suppor 1finnone. "Sacred) of" So-and-Soabeen pdm#="ittLR have7Sread,5am, now*1n i3 r7lFA wind mo $re1Tom5| {\, complai(#atw(x\<R6nly ir breath6[ -Solemn(Q silew&ppX $irvyo! t arp new hea1yk1eek6ansconcQemsel2ithq protec0ree great elms$grew in a bunch?-WDfeet " "y U  42for H "a 1imeS hoot abant ow.]"btroubl !ne om's refld1ive%.aforce Dtalk) Qsaid $: "Hucky, do&ɘ6 ead peopleGZ3 usDqhere?" Zed: "I wisht I@eEQ's aw3Zs, AIN'T36Q"I beAis."ea considerable pau*"il\Scanva "#iss inward! n_ %ASay,3y-- reckon Hoss WilliamssI1#O'Q he does. Least8rsperrit"7, +a+2 I' #u MisterxI`  Aany l DQs him#A "n'Foo partic'lar1(tXalk 'boutase-yer  Ra damnd convers3die!. Qw Ahis comrade's armE1sai:Sh!" "What is it~$?"i nc%Atogeq!be#2ts.K C'tis again! z1you+{0Q! Now"OALordTHcoming! TQ, surmat'll we do/I dono. Thiny'll see us!'OhbA can!in^ Qdark,M as cats. ihadn't comecOh, doay!. Aliev<1bus. We(a doingl If we keep perfectlyR, may1y waB us N$I'll try toRbut, Y1I'mbBof a shiverListen!"be1!ir s e tof voices float% 4far`(A "Look! Se;Fre!"M  w-fire. Cis it." Somv/1figaapproaK'!Rloom,M tin lanternaTfrecka  innumerable spanglek  K#a d!t' sya. ThrexA'em!yQwe'reqrs! CanBprayNB:BThey! gto hurt us. 'Now I5#meo sleep, I--'"8 AHuckHUMANS! On! iWyway.'s old Muff Potter's }aNo--'tqu so, is AjDYyou stir nor budgBCharpfE to q. DrunkBausual,Cly--qold ripAAll O !, 4stiI5tstuck. Can'"1Herq#Dy coN.[8hot. Col2B Hot. Red hot!'re p'inted?r ,q"!o'qs; it's Injun Jo(2ThaFD--that mur!' breed! I'd druthe Zdevils a der'>!. ky be up t4The.| Dnow,! t 1men $re!e 1     ' hiding- Q. "H?9Dt is Qhird ;\*:wner of it hel TTreveaV1fac young Docts_`1carryingYcbarrowTA rop a coupldshovels onCcast#lo=!c2opeUF7" d1putd|_R56karH2ack1st fX2elm  Q closIhave tou1himurry, men!" !idTa low"#on/1com at any moaRJy growled a responsgan digg'Fo(*2 no# b<"gr s)Qspadetbchargiir freighw Amouldlsvery monotonous. FinaX Q upongScoffia dull wood*<2entO4'Ror twyRhoistdg>Sy pritd!$irB, goB!dyF!Qit ru - `TdriftQbehinb cloud(0allid faN4he P!as3reaaorpse "it, coverea blanke>buCope.Q tookQa large spring-knifkc;#da3z Tthen " Nm$cu Bng's, Sawboned you'll*"ou$ Afive\$ s?y alk!" sai.] BdoesSmean?3te. "You require3r p?Sdvanc(I've pai#'4B don(B tha ,; r Q, who Dnow @*q. "FiveBs agqdrove my q your fX's kitchen, when Ito ask f@(c to eaK3youWa warn'!!re2any goodWswore I'd get,AzQyou iuaa hundcgears, RAme j1 for a vagrant. Dta thinkiqforget?I^Sbloodq Ain m1 no.2nowvGOT yougot to SETTLE"r!" He EQreate<,e !isy Bace,n!2is  Tq8E1retacuffian dropped his !exDCHered #hi^(&rd~b next ! h-t grapplF "wo)Rstrug'!and main, trampl% gFtear@3'rheels. !JoaAfeeta81 ey2%am!pa1nQ, snaQ3 up'/V"cr"Q, catYEAtoopCand  w'Tants,Q an oCunitwat onceQ,d free,62Aeavy5 of'n fҲt(Rearth"it8? c YiL A sawXCchanSj2theb1hilthe young man's breas+Qreele4BGqpartly , floodi  l* `ablotteXAreadcpectacf1 Bened Aspee!awHdark%> remergedO , '8two formsPRtempl }aamurmurulately, gw*gasp or two%2wasKm- rTHAT sc; :Q--damF0Rrobbe8body. After h9the fatal2in r's open R hand M dismantled } --four--fivss passeJ7.mB za1. H1nd dw#; !ed1gla!atand let it falla>g)sat up, push2bodA himLJ gaz]aK&confusedlymet Joe's1rd,ie, Joe?u .a:ay busi%#2Joeout moving.d]d+[%I!!it{] 3! TRT 3alkdewash."YAtremDI ew white.1ghtagot so"!I'BM!r!o-@it's in m* yet--worse'nw= rted here.vmuddle; c!$re=#an$gQ, harqTell me}--HONEST`Aold ar--didB it?zJ(qto--'poAsoulhonor, I nevt1ant5Joezc#Oh$+Qhim s, ad prom! -1youC?ay1inga he fe6G ) Bflat !up:3comX1reeX[ding li!.Ajammz%.5 'asE you7S clip ere you've lai'!as a wedge til nowbd{Uwawas a- I may die1if B1all on accou(bwhiskevV!axcitem"I .uC$ weepon Elife:) fUO_;uAy'llsay that.( V8ray you Atelle--that's a  4. I_2lik</U !upE { etoo. D remember? You WON'Tc]a, WILL  A/ApoorS'Eture o SkneesUrstolid G#alaspedQappeaa,.)4'veA #fanbsquarej 8me,N# I<#go$n :MsXs a man can sayIy0an angel.bQ*1you^!he0est day I live.> ?Ccry.d 40$#isc 1anyYsQblubb. You be off yonder wa!go+T. Mov 3and5!leny tracksX"onM(quickly increaseQa run  &)He8 If he's as much stunne Q lickfL2rum2 halzAf bel#he1eBtillzgone so far he'll be +}-e\!it:Ruch a>% b= --chicken-hear1TwoO tqs laterD0Rd manv ArpseA lid 2the ?+urno insp8!b moon' ness was completet 9too-X THE two Aflewqnd on, towarkaspeechwith horror*y Aback;%?aulders|!to, apprehens95'$yA$m &be followed. EVastump #up'Air p9&.'and an enemyw[+athem c+:bbreath"as"by"Aoutlacottag41yy.=21ark1*aroused +H-dogRagive wq:qir feet Af weqonly ge=ld tannery!wegk down!" whisp&1Tom|<Qtween5dths. "4AstanRmuch ]&ucC)'s hard pantAwere-1repboys fixed sSeyes z 1goaDBhope"4ir work to win it. ained steadily]1st,s8y burst open doo cgratef BexhaIiBshel, shadows beyond. Beir pulses s4Tomac2 2'lli!BIf D dies, I61 hav>!it?D m !?" y, I KNOW 1Tom#om&2t a$JEn he #1Whosell? WePBat aj  ing about? S'pos%!th1appEand q DIDN'T!? he'd kill usLvoO:  sure as *g <@  ~o myself, HuW8q"If anyAtell)t 3, i)Cfool. He's generTdrunky%U !--2 E s C "itrN!ca#teJ:#sQreaso 8QBecau>&"'d1geSwhack"F. D'3 he*5seeT?$ \7!" "By hoke:$'s-!" "And besides, look-a-here--maybeqfor HIM<No, 'taint likely ^GQliquo5ghim; I#th  |h Rhas. 9pap's full Atake/belt him&3hea< a church)2youn't phase 1say his own selfZ)i3sam !C, of(Fqf a manjJGoberZ W&)dono." .*$ve*p)2you#"an!1mumw%to.*  #atadevil 5Rn't myQy morWdrownding us&a Acats!weto squea(iF+"ha!. X>u, less swear to one/Z"weveo do--0qkeep mu"greed. I Xk1. W2youAholds_Un we--" "Oh no @! dA thi . for little rubbishy commokngs--speciwith gals, cuz THEY!c anywa ablab i: huff--but!or%^e writing Ra big BClood2's m0 applauduis ideao1BdeepAdark  t;1our3 circumstances1surRings, ijbe pick'ya cleaniOlvAmoon'", KGr fragmes"red keel"7 f 1pocDkK1 onV#wo0fully scra!'these lines, emphasizing each slow down-stroke by clam~7his tongue AeethRQ lettpApresQCe upW&s. [See next page.] "Huck Finn and Tom SawyersCs!ndI+Awish may Dropd!ea6 QTheirT"if33eve1ellX!Ro  p5filKadmiration of~acility inA, an sublimityQlangu3HC'4pinqs lapelH6was(Qprick,QfleshWN Hold on!!dob. A pi1assA8have verdigre#n Qp'iso$/ swaller somic --you,a." SoSunwou8bthread"%his needl!Aboy  1e b.QthumbcsqueezBa drfA. In,{Dmany2!s,amanage2sig!Qiniti9u~8Hthe ~ finger fo/e3ashowed  1ph"! HQan F, 1ath%2bur9!e 1le q5 to:,dismal ceremoniaincantfqfettersJ$ b#ir8consider(Qbe loF"keArwn away4!ig[AreptURlthil(!ugX$Dreak[Wother#A ruiEAuild2nowLQQ*iVTom,"6, "#uYAEVERf ing --ALWAYS?" "O r it doe]cdon't y difference WHATv xY got J BWe'd"--Q6YOUe Ywts rcontinuHtime a dog set up a long, lugubrious<outside--within tenc*md boys q",qan agon+!.ich of us^4 he;%!ga4 dono--peep througw crack. Quick 1YOU#-- 1 DO#Hu2aPlease1 72h, lordy0thankful0I2his)4 Bull Harb`" * [* If Mr. y+d a slave named Bullk spoken of him as "Dl!,"aa son 2dog!atZn"]   1--I" ( most scadI'd a betmM a STRAY dog he dog howledv~W'3Ats s:"nc&.2my!%!no'I IA "DOM! Q, quabAwith?t, yield !Z%eytrDHis z"waly audible"Ohr, IT S A1DOG1, qK Who7Amust3 us both--Uright"5.+vgoners.EU1misM   V< I'LL go to. I been so wM m2Dad_1Thites of p1$oo!do BveryD a's told Ndpaxgood, like S-fr tried !noaever I 2off time, I lay I'lWALLER if"s!7Tom0"nx4( . "YOU bad!"7Q"Cons!it ^ ld pie, 'longside o' BI amTLORDY 9 only had half your chanceom chokeds6andh: "LookyA! He?9BACK to us(ucky looked!joh "hil9he has, by jingoes! DFRbefor.bhe didpIS#l,e"!this bully, y. NOW whowing stopped. Tom !up ears. "Sh! k BthatI#0!ed"Qounds--like hogs grunting. No--it'!!snC mqThat ISkWAbout"it8I bleeve3Uat 't| #. Bso, a. Pap rRto sl{Aere, Stimesv t$"gs laws bless<1he Rlifts1s'HE snores. Buhever comOto5own{hXEdventure rfZsouls`/Qdas't`o`S leadR 1to,2, s~ts quailep_7the temp #up܎:7 3oys#ryJAnder{2ing'7 @#to@Sheels Se !y 4btiptoe  , 4oneJ CthervJ~4hadlqwithin 'qsteps o|!er'pBstic  it brokera sharp snap.man moan]erithedp his face came inK . It was"ha+rd still\|C too)Aved, )Dfear|(? A nowlypid out, n weather-boar& $-%at2 di# sQa paraword. J qrose on5'B air!w1tur n+!th-2ang  Ua fewQ Xt.Awas $cFACING7nose poi* heavenward! geeminy,VHIM!".A botds a!--say a stray dog3ai Johnny Miller's house,A mid2,!#as.eks ago;6 ppoorwill=1 in4litbanisterZ2ung|aame ev?0U L#B}!yej W"ndyE#se 2. D&cGracieT falls2Afirebcrself terr next Saturd;#Ye@sBDEADwhat's moche's gbetter, too:you waitbsee. Ss# ,Cure  z,)a niggers sN:2all *h<7c,dWBSihis bedroom Kh"al Apent3$ss]$excessive cautionCfelliP congratuP.2himMRCknew escapaden1was _Raware3the gently-Qas awake$Y bv5. eawoke,=1andCraa lateq ! ig# lAsens&the atmosp+HA%##Wh% ae not called--persecuted till As upRusualK4  KLtW.%Nairs, feelowadrowsyr family R at tԌ!bu finishedQkfastAI"no of rebuk)Nwere averted eyes;:!anA'ofCHthat struck a chillhe culprit' s He sat "nd &reem gay2it -Nwork; it E$no smile, no; he lapsed "leyheart sin'$tdepths.HNN"idG bbened ir3hop>g2Gflogged;Tianot so aunt wept overxand ask*m-E !gobreak her[!o;rfinally3him o{"ru&3andRher gray hair '1 so=~ '?2 usZ hT: try any more.Z!waCan a thous"ppgaA was sorer nQ:"anL1odycried, he pleaded for forgiveTpromised to reforh 2andj {.[jdismissal, !!he_1wonan imperfec51cestablut a feeblfidence. He lefk  Ro misC vAl ren4ful(2Sids 2 laB prompt retre back gat unnecessar_!mo^o school O%3sad41ook+}hqJoe HarHDwondered i-!ha!ic%nir mutuala<Abody2Dtalk r intentlthe grisly "them. "Poor fellow!" 9T+Cught a)Son toG@=grs!" "T2'll) iy catch him!" This ift of remark"milB, "IzQa jud';=frNow Tom shivxAfromA to heel; >D stooG3 of+3JoeZ$isB12beg}s6Bbe, andas shoute!'s  Aim! 7com!!"U!o? Who?"ctwentyT8. }1QHallo0s1!--=3out!tuM{&Am gey!" PeoplCrees over\'Aheadrrn't tryYB--he4doubtful and perplexed. "Infernal impu "!"aAa by~er; "wanosand take a quiet$aFwork12--dQexpec 263any=part, now u- b, oste%Ausly]3ingC" bt#arq#pa's facw haggar &the fear tha .W bstood 1urdman, he shook ara palsy4bface iNBhand@ QburstJa tears P!do#friends,&sobbed; "'pon my pThonor> z0iho's accTyou?"F" aYicarry home.xCliftme1and3ed ` thetic hopelessnes5sw!:"*Q, youaaised m/"'dD."Is ?V i4himM#. msiy anot ca=1easmhe ground. TO*BSome!1tole't if 8Ond get--"-1hud Qn wavr4f2les` ra vanquSgestus?"Tell 'em, Joewv'em--itl0n,1tooMbEstar`#he  2-he8 liar reel offrene sta?_# FaFlear skydeliver God's Eningmp]f1seeAroke3tdelayedrAen hP  JJ3illBaliv'!iraimpulsx  BoathE!avubetrayed prisonerafe fad d 5wayBinlySmiscreant1solrto Sata.#itIbe fatalReddle]~ Rroper-1sucQower - a"$hyyou leave?"DwoC|d Qfor?"ab BsaidRn't help it--$,"amoanedx:2 ru+ ?1see} 3but he fell to5. d repea)BjustZSlmly,minutes after inquest,=Foath 1seeCwerewithheld1q 1rme20qbbeliefH1Joej h Aevilw become,Bm most balefully interes1hadDA , yB not+ M  bey inwu(bresolv w= nights,d#1L should offer,Ih%ofPa glimpshis dread  3hel2rai !of[NRput ia wagone rremovalQwhisp3 Q 2ingv  l0!blqlittle!vDboys&tXappy Tturn  E$th\)wBtheyQdisap "ed1morEn onarked: !three feet of . 7it O AfearL1ecrx+ad gnawonscienc /iqs sleepvAas ms a weekG1at Afast_~3Tom/' !alCyourx1so t3youp8!e B hal9"ti^rTom blaband dr"c H's a bad sign, Aunt Polly,*dly. "WzRgot oB min_d?" "NQ % '[Aof."k23oy'shook soaQhe spcoffee. "An 2 doTustuff,"Ur. "Last said, 'It's 2" t it is!' Y7Aoverover. And y!, 'Don't tor6me so--I'll-"!'S5CWHATQis it$V?" E+  1Tom( re is no\2ing*+ Qhappe\1BluckF2cern passedm7S's fas3 torwithout kno.!it" Aho! W3ful1. Im!ity4 my24Q3its7  S%Lqfound a-Sightypr itself . Becky Thatcherd"st #tolMT had EQhis pia few day<'"whistle her dow+!,"1fai)&HeTfind `"ha her father's Lqand feeI%< was ill.rif she p2 diP)9a3qno longbdok an `@tar, norq piracy charm of lifCgoneMadreari2lef}hoop away,#Bat; $!wa 3joym3 His aunt "ed& 'rll mannqremedieS2him06wasRose prwho are infatuqwith pamedicinea-fanglWthods of produc2 or mend:an inveterate experimA3 in-s. When sRfresh'cis lin Sout s!in'*{2it;Kn herselfp?iling, bu/!el"at Whandy subscribert-!ll#!"H" periodicalNphrenological frauds olemn ignorance %B inf#1was^th)strils. A "rot" they cont about ventilR !ow$odRet upj/Ro eat$Cdrinl42howQexercI 2 22frag?!onTDelf *.1sor#clto wear,&all gospeӲs=aver obser!ha! h-journalscurrent month customarily upseXhad recommenO <Rbefor21s simple aonest e 1was+5 soan easy vict!gaQ$d <]quackydthus arm:'bdeath, .9 pale horse, metaphorici 1spe> "hell foll"Qsuspe `aot an &1 of[$$1balQGilea6 disguise&he) neighbors.n!wa6 creatmee3new/,low cond|)f$e!haRaat dayN*,bhim upehi}!wn mBqa delug Bcoldn she scrubb3a towel liki7Aso b?t him tona*Bhim Aa wemYqblankets 1Aweatas soulw1 "the yellow stainsiV a his pores"--as7!Ye rwithstabAhis,boy grew morh  melancholyp!ej|added hot baths, sitz hFClung,A boyX#"inbdismalShearsRassisslim oatmeal dizbr-plastersb calcuhis capacitn)Hould a jug'sfSevery day}3cure-all-#om come indifferQ32ionn!!isfW_0cphase r1the1Tlady'L,constern;ice must b9!upny cost. Now?of Pain-killthe first a She otd a lot)Ua tasteD 3as with gratitud'Rimply7in a liqui0 J  {2and&P3els2!piZO iA gav a teaspoon# 6Xeepest anxietB,qe resul &r mstantly at rest,Zat peace again; for""?broken up` #bo+1hav!#wn a wilder,i , built arunder him.3feli.to wake up;-Klife might be romantic enough, iQblighy, , c1getyD tooiAsent "oo  %ng it. So heat over%!ouC!nsd ,X1finchit poO fo+n# 4Qfor in4ofthe became a nuisanch Rby teeZT help'2Aquit)q >Ieqen Sid,had no misgivto alloy!dePEsinc&3TomMF bottle clandp#el (" !rebdiminish" !itW Cccura t5was t!ltIta crack !siG-room floorit. One day athe ac 3dos  Sy"#'su$ c along, pur#eA(%heHR avar.lqbegginga({said: "Don't askit unlessAwant&Peter." But s1ifi# W2. "You better make suh$?ure. "Now you'v( give it to you, because E $ #m"mebiEQyou d,mustn't bl8Ebut your W agreeableEH mouth open)Voured.Sprang a couple of y+Aair,LSthen %ed a war-whoopsL!f & the room, b st furniture,/ flower-pom*  }Z havoc. NextiRose o}"hi6,#pr ja frenzy of enjoyment,<2his,F !jL proclaimingunappeasrhappines % Atear ?ahouse a spreaQchaos>destruct! Gath.U!edDime r&!im/w$double summersets, 2naly hurrah,AsailG1ughVt, carryK1res^Gthe ZGm. T  Bpetr astonish2 peer glasses;Alay ;qor expiaKRlaugh?#"on earth ails@Tcat?"N'u, aunt,"O. "Why,+i!diaact sogcDeed IWknow,e; catsq6kthey're having c A" "$ado, dof'?"Btonemade TombD1es'at is, I belie<(2y dAaYou DO1-  Qdown,n 3ingwAinte>emphasized by{ R. Too?@!viAer "f.R handthe telltale 1visC ed-valanceUi ald it tom winc 9yesBAraism Qe usuandle--5"ar.csoundlj %DimblS, sir (1tre"at)dumb beast so #pi Thim--Zd!nyj." "H!--you numskuhQat goA"do iqHeaps. BRbif he'?Qone sqa burntF4out2! S2 ro 0QowelsX!of3'w"n,PBthanra human!" Z!fe: sudden pang6o1Thi1 pu yhl |6 ruelty to a cat MIGHT beboy, too  soften; 2sor=r0',I Rshe p<'3 onDheadd gently)'qmeaning -!stQ. And , it DID d !-&om)" i Bfacejust a percepttwinkle peepinggravity. "/!haf Q%ton-B? Ye*BforcX," adR: he 1lea!if!cr`wqno choi("By` `h2farFMeadow Lan,t !ll to "take up" t, Qd fai#up"eaG;, !Fink %,Bhear old familia!nd rmore--i Bhard0v$ou<ld worldc]submit--b A for1theQ sobs.a thick@O1 JW  2poi7m_'s sworn T , Joe Harper --hard-eyCwithD5tlyand dismal purp=Srt. P 9b were "two(but a singl&" Tom, wi 9#ye1fleeve,qblubberBsome about a 6p to escape from hard usag1lacsympathy at= by roamBbroaOFto return"3by  Athatm=1not"m.it transpir was a reques !chK2hadKRbeen  nIkN3#a)1hun1 up_. His mo ad whippfor drin ScreamhX  d knew ;*1plaUtCwishto go; if.<!waXpl but succumb2opebe happy0a regretDing ;"erW1boyxA $un) ddie. As=wEwalk gClong7 +compact to u 8 byePQthersqseparate till death rgm2 ikyj3lay.:tplans. "Qfor b2;a hermitC1livb qn crustJa remote cav1 dy O a#rand wannRgriefQ% m31to 1he U S&a4~_conspicuous advantages1 a "so ansente!pi Three miles below St.easburg,|!wthe Mississippi Riv "a OaWQ wide"a !qnarrow,%ed islanS \6$2bare  o"d well as a rendezvous%1 in2!edrlay farQtowarL her shore, abrvba densk{Twholly un o1estJackson's IC chosen. Whon!*aubject%Qiracis a matted2 ]Ay hu(up}R Finn8 JmRqly, for rcareersho hhe was$jy,75tlykmtu#!ne;I$ot]river-bank two,vn1favorite hour--4\csmall log rafIthey meanLLd. EachJr,2ookl6)such provisiA4d steal amost dnd myste!way--as bec +butlaws_:2bef=eV<n2donC ."agsweet glory of b~h12ttythe towne"hear ." All whohis vague hint!!cas"be mumTqit." AD Tom@a boiled ha9c a fewKs 1%ingrowth onQbluffMthe meeting-8VstarlBveryAMT lay !oc& $%.6ed Qbut n3 m Q>the quietenN!ve%w, distinc$ 6stlAansw 1bd twic; these sig, K&e ;bThen af5ed voice!We!reTom SawyK^he Black Avenger Spanish Main. Name your namesuck FinnEuRed-HanVj VTerro]2easw BBfurnq rtitles,56hisIliteraturA'TisEC. Gicountersignwo hoarse whispers !e Hawful word simultaneJ"torrooding<: "BLOOD!" 2Tom6 sQUC4Bdown4 it, teaboth skin1F/!es~ome extenXB'BfforF {., comfortable path (Bit l!of pCicul8!da/rso valu[&  b d4bac3had Tworn 2outy'"it $.gstolen a sg* ntity of half-c#leaf tobaccosVad al- corn-cob 3pip/.3An3e s smoked or "chewed"A saik !do2tar"z)J ! w1hought; m]ahardly'@Z"reaat dayqy saw aWa smoulJgG1a hWd$3aboy qwent stc'@ 5andjErhemselvsa chunk Rn impR'adventurLbit, sa r"Hist!"[A nowT2theV suddenly halt!fion lip; movM on imaginary dagger-hilt4!gi1orders inX"ifj/Dfoe"cc, to "%W)'K dilt," " "dead men tell no taleWhey knew2 en< raftsmen 3allQ lC in stores or haae2{]D exc^ aconduc` /1 un"AicalAOPved off, ,iEmx CHuck after oar!Jo=D qorward.>stood amidships,r-browedwith folded arm/7hisTstern_: "LuffKbI"wind!" "Aye-aye, siraSteadyNAady-f it is/!Le!t go off 1P 0Aboys 2dilcly droGd mid-stream vno doubtET"gonly for "style,O! t!to E any&particular&a?"l'?1 '?" "Courses, tops'lflying-jib?"Se  r'yals up! La[Saloft,$! a dozen of ye --foretopmaststuns'l! Lively, now1hak\/maintogala@RSheet braces! NOW my heartiesWHellum-a-leeKTrt! SX2wJ4comes! Port, 1NOW, men! With a will!  T\ drew beyoc7mid#&   ed her head7?then lay oi)Hnot high, s  B notathan aEor t=C82. Ha Awas j!duthe next;-quarter ran hour2t1wasGing BdistXwn. Taglimmenlights showed rit lay,1 "sl#,j vast sweep ofAa-gemmed water,the tremendous ev:4!ha happening. 7 7" his last"-Q Ascen!hirmer joy06ter8wishing "she"2rsee himuQabroathe wild sea,~ng periladeath Qdauntj%, his doom| a grim so/rlips. I,!bu mall strain'0R,!to&vet Island 6aeyeshoN'Cthe ["edZ!a vnqsatisfi\a' p last, to q3so I y came near let#e \Q drif)m\ArangQthe i< oediscov "j !inF%qmade sh\o avert it. About'clock ip1morU'Agrout+1bar8 B thewaded backzforth until Ahad 2"d ffreight. ParRlittl|'ngings consist an old sail"isgaspreadIr a nook ce bush$1a tbo shel6eir"s u TsleepVqopen aiDgoodq., .!y6/sk J log twentyirty stepk  sombre depth 4estDen cme bacon1fryb!anI1suprgAand fY"upcorn "pone" stockw4had;seemed glorious sporuAfeas%at wild, freee virginunexplor%5 un CR, far61 2aunm Ba returcivilizations a climbO&!ir3 up6Bfacethrew its ruddy glare the pillared tree-trunk$irbtemple?X aDfoli>afestoovines. W'!he crisp slice of ""on,qallowan* pone devou Bstre'3outt grass,Q;contentmenyBhave3" a coolecZ Qthey 9dena romantic feaZ 2 roh camp-fi2AIN'T it gay?" !JoIt's NUTS!Tom. "WhathHA Aay ikasee us Say? WellB y'd just die to b&be--hey y I reckon so, 2; "͉s, I'm suited. M/u't want"better'n$Aever@#Cgen'ally--and > Rcan'tXband pikAa fe<Z qullyragDso."HAthe dfor meXY6!toCup, y(!ch{"sh 'at blame foolish5uYou see 3do ANYTHING, Joe, ) aa[hermit HE haRbe pr0dxm# t0naany fuQyway,%by&tt!ayPAOh y What's \ "but I hadn't thought muchFqit, youT. I'd-deal rather b mq I've tN(!itC3, "'"go}#onsQ!adQlike ^^Ato is`Ce's M'respectedr2 a Q's goWhhardest 6Ican finput sackYa 3hea)s<=$1raiAd--"5at does he put V for?" inquireZ0Fdono s've GOTV.6rmi5!do2:1do 3/5wasDern'd if Iww'v?an't do%`#WhY:'d HAVE toP'N0!itY6I3n'tv"it2run.S" "R "! you WOULDnld slouc<0be a disgrace U no respon*ecemploy)chad fiqgouging Qa cobQ now A"tt:e', loaded it) was pressing Qal toRchargAblow! cloud of fragrant smokj&iMfull bloomp-1uxu   ) envied himW majestic vicM secretly &vqacquire?hortly. 0AHuck:Q1pirT?E+,"Oh^#n1a batime--(b 2hem3get "nebury it in ?6#ir $ w!re's ghost Fings]i kill everybod --make 'em walk a plankSA y!wo "q Joe; "YAkill5RsNo," asT## 2g--they're too noble}Tbeautiful, too.Awear[bulliest }es! Oh no! All goldsilver and di'mondswith enthusiasm#o? !hy#MB." o"caDbis own orlornly I ain't dressed. h"a &ful pathoH=;Z#go3!bu1$sex@Ftoys tolbe fine#escome fast,a h0Sbegun <W^2him!^2his'4rags}Qbegin,l(Lqy for wy  a proper wardrobe. Gradu5talk diedk ;vwsiness6'[z t eyelidm fBwaifF pip3ub9U (Drhe slep qcience-aR wearL ta} 3 :J%in . 1saiYayers inwardlya, sinc Dith authority them kneeXQrecitC1ud;h"ru2d a0!no$s(1m a,,were afrro proceU lengths asS, les:might call2 a dspecial thAbolt3 c6cn at o Qy rea1ando7'reimminent verge of O.an intruder( ,: not "down." F ,4e>41egafe$fWhad been doing wroD -#eytb. 3meaAthen!rezr^CcameY to argue it away by remindingzhad purloined1tme@nd applesfAs ofKB C!thin plausibilities;E!m,che end? R!ar%the stubborn&"ta-was only "hooking,"F6,O"am@valuableCplain simpleSing--Oa command againaMi"Sov  5hat;a4 "bub", )U2not~Q be sd.!thl}Ume of.3$ e؍uP Lc 39]dstent # Hfell CHAPTER XIV WHENCawok!, he wond% he was. He sat5Q rubb Rs eye'ny"omBd#ool gray dawT#ya%-8of reposKdeep pervading calmGBsilewoods. Not a leaf r!!; ! s!ob|great Nature's medit!Bedewdrops W 2upowCleavQgrassBQ whitY!xcPathe fi,Dblue3werK|some hand$r it laydst to (/Bdit by a narrow channel hardlybhundred yards widetook a swim | hour, so i the midd#thEnoon2Yy got6ptoo hungrRtop tdthey fared sumptu"ha-%themselves $balk. B_S soontto drag!en6} 2itybrooded pG! s of loneliFsFtellUaspirit1oysy!toking. A sorQundef,e creptWmVdim shape'6#--budding homesick'Even Finq Red-Ha.was drea doorsteps\empty hogsheads~all ashame",1weayC none was brave to speak &a. For A Aboysbeen dullyM!ouna peculiar A ,2"sometimes i>2!ic"ofZ##ckAk"ke6>!no' #(isAA1 befpronouY!fo a recogn72 st a glanc4 \aassume1ist23 atfR Thera ,R, pro_band unK1;Yqa deep,ren boomK floating downDn.#is it!" exclaimed Joe,S. "I [!2Tomi whisper. "'T@!8thu+@Dan awed tone, "becuz4'bHark!")qTom. "L7q--don't\#."2wai% 4hatSan agV] ame muffled boom trouble$| hush. "Le(5seevBspraVAfeet%"hu_ MjS1ownp1y pCy u(1ankM!pe2out+2ated 9!steam ferryboakTabout1bel' v,3Aing @, urrent. Her T deckMScrowd b*<!re^# amany skiffs ,T&oru9 neighborhooBcoul{determine what em&!jeSwhitedburst z E's sKas it expSand rNa lazy cloud, tAsames Cb ofz1orn steners again{ 9now Tom; "somebody's drownded!`HGHuck&*last summer,\Bill Turner gotVvy shoot a cannon ov$at makes him comRdtop. Ytake loavBbreaRAput &q in 'em2set Tyr,anybody!!, L'1ll =9i #!op'I've heardDthatUJoe. qread dolR!Oh)](Ld, so muchW&it's mostly v 72SAYib it ou%. "y >6say<iqHuck. "p r@O1XWfunny. "But mayb!sa)E . Of COURSEb do. A1$<Tboys agre=AQreaso(1TomF,@% a!uat lump3Buninfeescaped, unawaR.Bby Joe timidly H1&ra roundB"feeler"3o hI rothers  # aa ;D--no[_but-- Tom!er derision!, uncommit s yet, join"Towaverer quickly "ex)#ed 1wasTT g f<ascrape4 as#tachicken-hearted a cling-o his garme"!s z&uld. MutinybeffectV/1laid$qrest fo{s moment."heMQened,&#no&H to snoreTQ foll13nexc#laG)lbow motioq,>V %@1twosntly. AT he got up cautiously,7CkneeZ#BsearQ<the flickerflections flung%!he"*!piJ !upDed several| semi-cylinder:3hinAbark%t sycamo)1finchose two whichto suit himin #3lt #fi&ly wroteV@shis "red keel";4qhe rollBB!pu"his jacket pocketFtM $he+Joe's hab remov$lD  owner. A CalsoQto the hatschoolboy treas most inestimable value--5m a #ch India-rubber b ree fishhook@$oEQthat !of marbles n as a "sure 'Lcrystal."tiptoed his way #!s Y "he  h drhearingstraightwayc=a keen ru  "irr \-V A FEWsirX&!waM ) BhoalNbar, wading qIllinoi].re. Befoc depth rea,%Chis  half-waF  a:" p="no%},#aso he k]1wimKremainingOSswam bing ups   $=faster than dcted. However, 1Zr6$al3AdrifUlong BoundUR plac~JfRmAis hA N6Aiecexark safP .R#,35ing. Shortly before tenFecn openroppositBDvillA saw2 ly ? Btree- the high8. Everything^quiet undCe bl- !stK2He dkRGZ1alleyes, sli!c, swamor four strokXclimb7(I)"yawl" dutyEPboat's stern!1thw)ited, panting. ;!ra!qbell taavoice gagH1 or:o "cast off." A]j "la("'sh]ZsAup, s 1 swQ4voy abegun.M in his succ7!fom*ait was2^AtripB 2. A/e!a HRtwelvcifteenSwheels stoppedDTom aoverbo."ndaLysdusk, lSfifty6Bdownk,<rof dangpossible stragglrHe flewY unfrequenl3leys$]C:r aunt's QfencehoRapprothe "ellE lBin a+)1-ro Bndow"a 8was,& r/ Aunt Po:Sid, MaryfJoe Harper's mother, grouped togeB talTH s b ' &the doort B dook softly lifBlatcn he pressed gHyielded a crack; ntinued push,G= band quQevery it creaked,wQjudge  squeeze~9ugh ;i #hiq, warilWcqweblow s=I5up. >CAor's , I believe. Why, of coursr-cis. No , gs now. Go 'longqshut itF"."j"edM"la"Ded" 7`|C"tould almo\"!uc nSfoot.#asJ "Q rn't BAD, so ay --only mischEEvous. OnlyRgiddyharum-scarum, F3He Z2any bresponoa colt. HE never mean12hart@2]%st2boy:awas"--g&he!cr[Irjust so{my Joe--always full ofdevilmentbup to  rischief G`as unselfis'3Das h"belaws bless m&w2k I.an!htz#m,:once recolEAat I3wed myself ]Yis6$Sand IP1Ahim Xgi#ldv!, R abus!!" CMrs.ba sobbebif her3 3hope Tom'Jvter offi*BB"butQ'd been 5in some ways--" "SID!"the glare 2 olc3s's eye,yBnot 12. "g9N_%st my Tom,"Qat hene! God' Cke ctQHIM--F< YOURself, sir! Oh,G2, IuR know=odim up!!!!Hesuch a comforjla he tohQed myJme, 'mosrThe Lor,!th2tqhath taSrway--Blb 1nam"21!w$Ait'sKard--Oh,! Saturday my Jo<#er bmy nos D him sprawl%aLittleH $K !n,TCsoonfKto do over K1hug3and1him6 IeYes, yj1howMfeeljust exactly/longer agoqQyeste(Snoon, took and f3to tPain-killI$ ct@e house down!Go%Agive"I  ''="my thimbleY3boy 1deaab P  H"An'rwords I7Ahear2 sa6Rto re 2#Bu\6Tmemor$X1the$la3sheqentirely as snuff;:T now,Nm Bpitythan anybody elsP #ou E cry -"pu^4Q%kindly word #imm$oY)DFa nobler opin$ H1befdStill,rsuffici Bhis  grief tB!sh] tIoverwhelm herB joy;eeatrical>aappealKarongly0is naturAo, b]R resiJbnd layX*R. He&on'F#ga|qby odds;Bends+ conjectured at fir!atP(/#e#le+;M+ec0rraft ha Unext,2]she missing ladspromised!shqB"heaQq" soon;Qwise-8*$"pA %atU "Sdecidk8g`fC"at tturn upnext town below,;|N(found, lodgede Missouri pQ"fisix miles t| nBperitIbust be`%1ed,1 hu have driv4rhome byqfall if5U1soo/  W searRbodieb!8Qfruit !ef Amere2cau; 2ingaoccurr} mid-channel, sinc Qbeing swimmers,otherwiseSBesca|r Wednesday A. Ifsuntil Sunday,3opexAbe g\!ndMfunerals&$ p"onA shuddered. g>Dsobb-j0 2go.  a mutual impuly two bereavedMA flu =/5Qeach Pb's armvQhad a|,A-o{!#cr jwparted.q was te+ far beyon`Q wontu+cRto SiMary. Sid red a biCMary<#ff 6. and prayeM so touchingly, so 62ith qmeasure1lov8OGer old tremb/Avoic  3welin tears ,B sheK&9h Rstill3A5#shZ"dsrmaking -sejacula1romB, tounrestfu and turn:Q "at* "as", !oa.| sleep. Nboy stole @;*cgradua;Aside, sha"e b-light=#andQstood4r Gher. HisIrfull ofA $e [5hisxq scroll.+ARto hi he lingRconsi"R face,arUsolutW "s x Bt; h(ark hastily iv9 !ntv k[2lipAmade#stORexit,pWabehindxAthreYhis way backmhB!no \Arge ! S2ldly on 2oatwc tenanRxceptWahAman,(xiE slept like?ven imag] CuntiGS 7 zi-<$on. 2 up. When h!pu`!a V6$abhGD, he2S quarrCacro  Qstout Awork !hiT !e , side neatlyn" ts a familiaraof wor1himYBwas &Aptur 3b, arguLRat it;1 beFAshipfore legitimate prey!qpirate, a thorough @ 1be Cfor z!enCreve8B. Soo<a qand entBoodsslwM`arest, torturin Cmean o keep aw:!an]n;Vhome-stretch far spent road dayJ"he r*DRabrea  rVA barr{JO k !unzbwell u1gilI:2eat=its splendorhe plungtream. A "he paused, dripp" treshold2cam + Joe say: "No,]true-blue, Huckqhe'll cl "ac?won't deser2zstm uZ>ğtoo proudfaat sorXI a. He'sBo2 ora55C whac[8/!e 0s is ourz^i4hey?" "Pretty nearKrnot yet_1wriIAsays:B aregO 2her+? W$\he is_2fine dramatic effect, @Aing +l.o%F. AW:o "co2fisshortly provide?2as WQys sea G!itGunted (and adorned)#Qadven*% Ba vaRA boa_ P"anp."wh p>AdoneHn 5hid)BawayAshadwQsleep 9!ss&'ready to$]>e#I AFTER dinner 4ang !ou-hunt for turtle egg+ 22nt *,poking sticks s yba soft vNe eir knees#duJ!A5. S9tAould{|igSsixty<cone ho6Qy werfectly round'ea trifle smaller`an English walnut famous fried-egg(gHCnighFanother on FridaBnq!1AftK7o%cwhoopi ua|s chased(j2anda, shedclothes ,  _tere nakePthe frolic far1 upqshoal wstiff current, wYtlatter {GC leg 1unde7^1cre qun. AndX9 !op) osplashed iY)Rfacesw palms, !7ing#Q aver-@Grto avoiQsprayQd finb g! "ug,jt0 st man du$s (9TAall WQtangl6S"egucame up b%b, sput q, laughqand gas1forth at on{ )BQ7imeh|aexhaus$1runBand  dry, hot!li ?+3covB_"up !by.!byk2terjo original performance onc/>3. FQit ocX /Hn skin re ed flesh-colored "tights"F6afairly!#qdrew a i circus--&bclownsP* b none  |"R thisRest p  `a. NexAy go %ir:+l"knucks""ring-taw "keeps"at amusement grew stanH1and a BTom Cnot ,; kEin k;@f;trousers %kiY!stfof rattlesnake his anklehq U!hecramp so lo8xhe prot+ @Bchar )di *Btime6Bboys!ti%ndwD res#waapart, dropYq"dumps, fell to3!lo1$ly"thEj Ato wlay drow1un.s u  r"BECKY" big toe;*Acrat`!9Angry5 1forD weaknessXqhe wrot!f ,!!thgcnot help i !er&itAEtookz"ouc Aempt# by driving 7a toget7!nd 3 m. But Joe's D1hadhn$Abeyo Bsurr.q $o 2Rhardly endBa miserB iIerlay ver surface.was melancholy, too"waeFhearted, bu)e~A noty 3howexa secret}^ to tell,B "this mutinous d2sio72not#asoon, Quld h$+1o b6Y@Bsaid2eatof cheerfulness: "I beY>Ebeen F 4is 1efooys. We'll( VgAThey>'ide1lasomewhY6UHow'd ight on a rotten chesto% f#--But it roused onlnt enthusiasm 2fad no reply. Tom!onz+3two!se}Aons;KAfail($ooI discouragz!k.M%sa  %" a A!lo%fgloomysid: "Oh, let's !!it up. I wango home. It'sQesometOh no, Joe''ll feel be- b{($by (T?!JuD 1inkah2?C" "u$ $4for)"(t) Bing- 2anyJS" "SQ's no.$Bseemp1it,0chow, w 2re t7! to say I sha'n't go in. I me b"shucks! Baby! Yousee your4,XAYes, I DO0#my.B--an)A, ifhyBe. Ih$2 ban(Bare.c'U"%ed.wlQ cry-I m,"we A? Po08aing--d8?t$it<?'so it shall.2alike i+Xe, don't you`sFstay|?ir"Y-e-s" !ou  . "I'll:Q spea-2you2 as- as I live.1ris\!"TQnow!"&9ved moodi [6and&#d<t!ho#1s!"hNQwants'to\,$ho1et  ed at. Ohr#3iceTand m[Ries.  V,A? Le0f#unts to. we can get0{aper'apAB< as uneasy Blarm 1seeGgo sullenly on/ sUAing.5# QmfortK Huck eying"prjO9Xso wiy5 such an om%K. Presently,v2 paxAwordwade offh"the Illinoie'AAsinkQglanc bU'3loo> `;yVYI#gog!ItfM L4  it'll be worse. J*usR"=)1canKgqAstay27+I!gosWell, g/--who's h ing you.+QCpickR scatqclothesjvtAwish4'd ol3youi`.wait for youq!weCV""3ra blameh5all!st q sorrowR awayM3Tom _Ba!6ng desire tug!at;#to ]#gotoo. He hsf stop,; sw Aslow. It suddAdawn y awas bemBverypQcT3. H2one Y-d?s comrades, yelling: "Wait! (tell you some!F#y j!ly1ped$SaCgM zh5e1ingc yK|cCat ly saw the "C"s # aN set up a war-whoop of apCk#1saiTRwas "Aid!"3qhad tol]m(,#2n't away. He made a uible excuse;O!hipIl reason "be:" fa#ev<T#DthemmA ^great length ofSs$so#men 1hol eserve as a A .B ladNCa gayly:4:9 ir sports will, cha6!im #ut:stupendous plan`Aadmi)wenius of it. Aba dainA and ,!he*ed to lear bsmoke, 5Joe caughQ ideaSBlike to trysXQpipes7!fi 2the@se noviceY1 d\Lbut cigarsPof grape-vinGQ"bit" Stongu8not manly anyway. $yo'Vir elbow1uffBrilyd!slr confid9AThe an unpleasant tastGgagg Why, it's@0as easy! If0a2e/sCall,"t + #SoI4 E. "Ic!no'hy, many aI've lookA peonm$ well I wish I!do's; but I 1%Tom. "T!aRme, h$it 1You1earK Stalk <k--have o qleave iKAif In't." "Yes--5MosUHuck.$7D too Tom; "oh,ZCR. OncW1 1e s5 ter-house. Do rememberBob Tann771 thand Johnny M1 ,Ilcf 1, 'ame say  !Ye\ !. B#ay I lost a white alley. No, 't*.z --I told[1. "472s iI bleeve4Apipe4dayMfeel sickNeither do>}]$itV1. B!be  4\ !! 7keel over wtwo draws. !le D tryB. HE'D see! !beRwould !A--I  Aa tackl2onc 3Oh,)2I!"G@s:youI any more%an!onqtle sni fetch HIM." "'Deed2oul U. Say aus now?!So ay--boys!saH !i BsomeRy're = ,W Qup toQay, 'got a pipe?aPae.' An2'll31kin%1carO like, as6rX  pIamy OLDw", (03 on'rmy toba+bCin'tood.' AndZ1Oh,'" r 's STRONG e3G= $ouhO1igh ras ca'm!Eqsee 'em-S4thagay, Tom 1ish0aas NOW5!!we \"weQerwas offQing, 27 w#y' dalong?Bnot!M4BET@ll!" Sotalk ran onV &itEflag"'grow disjointedBilen adened;erexpectol marvellously ]!^ry pore ip <boys' cheekame a spouting fountainiyj2bai the cellars   rs fast Kb to pran inund;2overflowing+M throatsqin spitx 2all*"doF = Fings"Metime. BothY1ere2ing2pal miserable, 'from his nervtfingersx!. t_ygoing furBboth pumps baiB"Mm|\)id feebld) =Wknife]hCfind Bquiv2lipb 1halutterance2'llyou. You go j`Rhunt r? !pro!No needn'tvHuck--wdS ,BgainAwait!Q hourCr%itpK'"to Dhis :yswide ap oods, both U!pa Aoth a1 0informed him2 if#ha!ny trouble agot riQ"itnot talkative atT}Snight4Rhumbl1henQ prepCdp "ft meal andBparez\ "ey[2no, 1fee,well--some+1 at )mӂisagreedQ2 A !id!aw-dand ca0{ding oppressive:#ai83see02bodiNXa huddl  !so1thet(Cndly*vionshipr4F/} 2ullj=aheat o  breathless atmospA sti<Ty sat94%Awaitholemn hush 7b. Beyo{jfire eK3swaSQup inAblac`!Hr  &aaAglow  vaguely revea^ foliage for a momTavanish4by " crc1str?#n & faint moanA siguL"th0 tranchesRforesboys felt a fleeting ,ywshudder fancy tha?S! Nd !!by/. Now a weird flash,! n?Ainto  hgrass-blade,=i and distinct %aBfeet $it[three white,/tled facoo. A deep pea "thP1rol:and tumbling "r heavenGlostw# r4Qdista$A Ƙ chilly air passed by, rustlingjyn!sn the flaky ashes broadcast !ir TfiercElm FN% stant crashD#retree-tops r'Mic:p$in terror,x%athick 6!p~q. A fewsurain-dropCl paf* .. "Quick!!W"foLtent0csprangs\Broot4amoQdark,awo plu&same direction{ blast ro trees, making &as it went. One blind yH #ndnbf deafJhFnow a drenchinv1 po@#heK hurricane droveGsheets a`c0Qround<" c#u Beach#,the roarafoj-C!s >eir voices7 ly. However, one by; O 8\ook shelterk  .Qcold, /Qstrea5 ,;o%!y =?DseryR1o b teful foK  x 1 olBl fl{Q$soW2ly,0 Wd noise1hav[A The6(esS!er:qhigher, Zthe sail to "se/1its ]4X"wiCaway- %. Iseiz0"s'1}Rfled, ye bruises, toԁ2oak`U86d-bank.b battlsTst. U}R ceas conflagrf of lightnR flamii*AkiesSbelowout in clean-cuTTless Qness:"be:the billowy ,<Bfoam$@Z0 of spume-flakIhe dim outlinSdbluffsoside, glimpUD drifting cloud-rZ1lan1veirmE "L9 some giree yielR>! fand fell younger growth;Vthe unflagg/ S-pealnow in ear-splitting explosive bursts, keeBshar8 unspeakably appa[storm culminatone matcy ceffort# qlikely *+9q to pieQburn ,! ig, blow itBand rq creatuA it,av" 2. IKra wild rfor hom#}Q. Buk}'do forces retir Aweakd h threag  peace resumed her swa  %nt>Scamp,YC! d3wed3hey`Q was Sthankp07eat"^Dthe  ir beds, was a ruinTJQblast? w uwere no3Rt whecatastropppened. |! i pz!ed9A-fir/Qwell;5 t-v-AheedSlads,3Bgene0ymade no prova +/#stHc! m pbdismay2|Q soak3t eloquent iNHtres/,%,1verY0 [aten so far up HQlog iL  dbuilt !(wW it curved upK\3 &$edn Afromground),%a-breadth or so# \V2!weB; soCpatitj-t7kashreds+qbark gaBthe 2sid#qed logs+ay coax61"toQ. TheRy pil=$5boughs ti]# r furnac<|# glad-heaV751g1y d{ , !boo"haOXD feanN ][3satJd aexpandd glorified8Q<]9ndry spot to sleep %6-B. A@6sunssteal iN2oys !si!ov"em sandbar2lay1<Ogot scorche.8drearily se(breakfas"CrustJcstiff-4mhomesick once;:%Bsignbto cherTup thp+;ɹ2C. Buc 1not %fo6, or circu .E, or"%Aremi1$ imposing &aa ray 6eer. WhioD, he`7mRa new devicaK Hqo knockcbeing aq e"be*c!nspqa changOHeattracis idea; sonzs;m^head to heel black mud, like so zebras--alB Zchiefs, of course/aEwent* `A"tt%=s settleQg!By|yn ree hostile trib(Vupon @ bambushdreadful 'kQ%hcalpedHvousands  gory day. Conse$lyan extremelisfactory one. rassembl\Dcamp-rsupper-*<|`KYj4but[ifficulty arose--!d]1notk of hospitalityR-1fir<8 ,: qsimple nAsibiI@"smv2 ofER processeLDaof. Tw davages;7wF 3hadd$ed%. oD}2 wa;with such show 6! aCSmuste# Apipe# 1tooqir whiffA tqdue for1h1gladBgone"rya0Rhad g;S e now smokeA hav Ao go^;Aget 67d be se#un02abl1not AfoolG jhigh promis, #of }practised cautbafter R dfair success y spent a jubilanAning\FeRhappiw new acquirp#would have iwnd skinning"QSix N s. We will$toqnd chatL?And bsince we=nther use >, . CHAPTER XVII BUT} hilarity ?Btowntranquil eZafternoons Harper~Aunt Polly's famiE22ereS3 pumourning QgriefXP . An unusual quiet possess= village, althoug"Rordini 8 !all consci*Ir!du ssaan abs^#ir+ nblittle*sighed ofte.Ftholidayqa burdeL !Shildr61 no) Rsportz h>gUbup. I Becky Thatch1!unqself moB2abo Q dese5 aschoolc)C yar1feevery melancholy sDund  t73to FPShe soliloquize:if I onla brass andiron-knob-!:(*Dgot ` e%to * him by." And she choked besob. 5)7sto CXo9!tchere. iRto dog  x( say that' n3 the whole wor Bhe'snow; I'll <.6A seeb.12is 3t broke )1wn,qP!ndCawayQ down9Uun quite1F!ofs Vgirls--playmates of /and Joe's-- b 1ood2!Qv1 pazfence andfNArentqhow Tom]rso-and-+d2ime"csaw hi6'6how#3andmrifle (pregnant# awful prophecyu(2eas "!)  er point>tWu2actwC"heClads" 8addNpa"and IBa-stR just so-- as I am nowOf)qwas hima Aclos e smiled,Y ?2way!th!l+"me !--R, you knowD!I wZ5Wmeant ,C/1can TL a dispute5who-Bdead.cin lif`Qclaimat dismal|qand offLevidences, more or l: 1amp!DwithVrwitnessDwhen ultimately decided who DIDrthe depl"exCwordthem, the luckR2ies Aupon1selA sor"sacred importanf z1apeand envie=che respoor chap, whono other&z"toF,)tolerably 2c pride 01'Z9# ucked me-BRat bi Rglory failure. Most s "athat cheapen&!1incWWa=4loitered zs2rec2r memori!osu2oes3wedC. W\-B hou 1UfinisFnextell begaoll, inst# r  @I1a vtill Sabbath2the ful sound %in<he musing9%TlSM#on` &rs,V5ing$ vestibulQnversCwhispers#1nt.zQthereF$no/Athe 4 ;g]6eal"of dresses +f womenZ<eir seatsZ3urbJ= T. Nonpi&er q churchd!beS full5. TXMa&Q paus expectant dumbn  CV,D#Rby SiEMary yV C ball in$2 qcongregb old ministere, roselBntileos Bseatront pew$ncommuning2., broken atvals by muffc5obsbaspread,hands abroa5prayed. A mov1ymnEsungRF tex<$q: "I amRH Qe Lif2EQervic'Dceedclergyman dmLuch picturA gra  6wayA rarZbthat e4!ou)!in9Acogn!Uthese,(!pa5!herpersist"bl1him rm always Ys?BseenRfault( Sflawsg +1relaGaa toucIqincidenm&iv`e:RqillustrN.Rweet,X3ous%s people !, how nobl_ beautifose episodespt  O rank rascalit"}.bcowhid 1 be@ \ 2and D pathetic tale1n, e"at r rcompany aand jo( !erba chor swelled upa triumphant&,6c it sh! r-s0ASawycre Pirat3#eds k-1envQjuvenkGDBconf"in%$ea&"s oudest momen_1hisq j"sold"Utroop"ey6 jsbe will;"beFBridiculouCtp UuB I" Tom go81e c )esd!cc4R's vatmoods--uhad earned YByear he hardly knew which expro85ostK,!Rto GozBaffe' BqI THAT !--RchemeoAturn'bhis brpI Qatten sa y had pa4o& mo'og, at dusk on 3, lmvesg+t6; U slep   1edg7Bthe 1ill nearly dayligh`UcreptZback lan@ TsleepE  0a chaos of invalid21nchA>f fMonday2 kSto To1tivhis want Aamou1. Id!ttI<@3say> fine jokB, toHeverybody suffe'G'most a week soAboysra good 1but01s aMjC you% Qbe sop-Aed aNrlet me ob so. I-QcouldO:U overtrl1hav| eN&Aive -=2hin9D1tha" warn't d 2but qrun off=Yesedat, Tom,";Mary; "and I believR OihAoughLCW1youR?Rg!, }#ac7iZstfully. "Say<", mJr'p?" "I--w*know. 'T?b'a' sp'NILryou lov UDmuchwith a grieved tB discomfo5Gv!me! c enough to THINKc, even+ didn't DOqNTuntie)vUany harm," pleadeBit's giddy way--he is2 inba rush%he|uinks ofrUaMore's Qpity.\. AndAcomeADONEj.1too'1'll !, 0!da 'Q late DQyou'dSd+"dfor me>Acost&2so 9 j1you V` for you5H2I'd)ADtterakDlike!I Vnow IVsrepenta1; "s dreamt@1any(I,,L much--a cj$$'s!no2. W QWhy, Wednesday night I!tZsu ! bl # b 8+ woodbox A nex Uhim."TRso we9 S 'do ByourQtake  0?8 !usfD<$Jo#'s -uhy, sheA! DiHNOh, lotsso dim, nowWtHa--can'lIRSomehAseem2ind ewind b)6.{1"Trh1der9s[2p. Come!"6  !hioo$ aforehe anxious minud then *AI've i[(.! t rr!" "Mercy on us! Go]-Tom--go on#R< 1you.1, '*door--'" "Go ON]VEJust;ctudy a . Oh, yes--rS you dkwas openeAs I'mMGQI didZn't I, MaryA[}Bthen^r I won'obertaine9Qas if4 Amade'P/cWell? -I make him do%Yb1himB--Ohyahim sh   M"land's sake! IAhear% b@my days! Dstell ME1any! i 1amswV. Sereny 4& i^an hour older.^Pther getCTHISj er rubbage 'superstition.#1t's/!!brbas dayVF Nex3 I r BBAD,NmischeevousM )"an+ responsibl3n1--Ik a colt,28 Pd$"! AgoodjgracioF you(1cryU"So& "Nof* nM)" "Then Mrs.e@2cryf "JotF3ame:C2she !ha SwhippERcreamshe'd thrit out he"CselfRsperrA1cyou! Ya#Qsying2t's1youdoing! Land ae]Gno!SiAsaidd  D" " O ! IRLBSid. did, SidMary. "Sh.d"leU"heL1TomSHI{ !h^6$off whereM$gone to,  fDbeen0sometimesTHERE, d'youd that!:92his8 QwordsG"Anhim up sharpTI lay must 'a'an angelcere WAS W xCtoldZ 1Joe>`a firecracker73Pet\ainkilleraas truPeI liveQ/!loCtalk%dr;Qe riv)1r ud%3havHCA Suna qand old MissRhuggeH4cri  "en bIt hap"!so 2surT'm a- sftracks /2n't`i.Zq 'a' se" %! \what?Ie3youq, " IwBhear`C wor2aid  !en  Pso sorryq I tookRwrote4piece of; bark, 'W}dead--we are only off 4'p %T tabl_  ;'hCyou sdA, lacasleepv8Iand leaned2lip6 D ,&I;bforgivqhm#at4she4crushing embracpt, feel lik( guiltie%villains.#wackind,  Dough~a--dream," , faudibl!up! A body doeV as he'd do if heVyA. Hea*FMilum apple  s 1was-,t--now gto school.=qto the Oc1Fat2f ui  ~2ack>'d-F1ing"Bmercy [l#t q on HimHis word, Bknow unworthy ofa 1nesR FHis *ad His hand+slp themEugh placere's fewAsmil 2e o= t{%4wHis res>long nightUDs. G2Sid >Q--tak+r)1off( 've henderClong.e children lefw old lady to call o vanquish her realism!sq marvelu(3had1Q judg_"toF_pi4"mi,"hethe house.XAthis zrthin--az\Bthatdout any mistakekWhat a hero/a, now! Henot go skipp~(%Rncingm"a dignifi!agƌXa@ who felthe public eyEm|cindeed; he triesto seem2 th2s ooaremark-he passed along?tW5Afooddrink toSmaller boysl%1flo+cels, as A to 6"enw"le$#bys the drummer1heaQ cession Ae elephant lead menagerie :own. Boys ofown size pretendVIknowaway at all'4were consu with envy,bthelesW EUgiven& i#av1swasuntanne6?his glittnotoriety3Tom !no# Ae pa1ithBr a =e3Dbaso muc}bbof JoeAdeli!9eloquent admir)݅*"eyT1two"esMAnot "inCsuff+."stuck-up."s#1tel ir adventures]5ungy#2ers9B;c@ 9ran end,aimagins}!irrfurnish material+,yorir pipewent serenely puffAroun Q Qsummi; glory wadCchedOQdecidbe independen@ ]6now. Glorysufficient. He_2liv|R. Now !heTdisti?'a, maybJ?qbe want o "make  !le!-- h  qas indi1Qnt as other people. 6 arrived. !seAawayQjoinetrroup of5%Oalk. Soo#!obed$s%3 trYQgaylyR ERforthi1fluJAfacedL Hbe busy chasing4mat?so4th a 2sheV a captur9h$icI3shea+/Cher 1vicinity&89qto cast!nsS eye =gPW1ch ~RI"i2!viFc vanit wB him)so0Awinn!im&only "set "#moE6himSdiligAavoirc at he knewKboutR gave~ qskylark`;+ved irresolutelyBQ, sig 1onc 3twi#glafurtiv45nd @QTom. 2snu71was1ing  particul0"to Amy Lawr7 Dne else. SheArp pRwnd grew1and uneasyKc=2tri1go away, but 2eet8t+2ous:1car71her"he "to a girl*as"'s%g!--)sham vivacity:Mary Austin!  A, wh&"n', #to-n?Cih!#--*Qee me"Why, no! d1? W1sit(Ix!ins' classu1go.Xw YOU!? oit's funn!n'+D you>uw2you 'QicnicU%Oh!jolly. Whol)XMy maa}5oneRcgoody;  she'll let ME com)Hieill. T#'s<!any#AbI wantQI)!ev4# nice. W7Fs itbBAQby. M r1vacBk fun! YouM r1oysAYes,tfriends to me--or3be""he:4ed Ay calked d"lo   the terr$Tstormbisland[h9P#nr PNq tree "o flinders".c";rwithin EYBfeet6lQmay I#G]rMiller.P.1And 1Sally Rogers&+usy Harper. "And Jo[Aon, g2claiof joyful"s 0 ogged for invitNs"To]1Amynturned coollyPcstill Atook# 's lips tremblAbars ca1her;Y!hi$se signsa forced gayet con cha tfJ7?!ouny 1got( !on aand hi61rand had4rher sex4"x'xGsat moodywounded pride,qll rang roused upua vindictive cast Y1gav| plaited tailsik, swhat SHE'D do arecesscontinuedBflirO jubilant self-satisfacAnd he kept )Uarto findG1lacerformance. At las AspieEsudden fa-rmercuryb#bcosilylittle bench behi/BhousT 4t a27S-booklfred Temple--and so absorbed2hey #so?Atoge Rbook, 1didby 5 ofsq+lB besides. Jealousy ran red-hveins. H1hat  2for "waqcchanceQhad o  a reconcili. He callc-r a foolhe hard names a!ofD~#cr3vexd!Am tted happily1, a'y!, 8.e!rt= Asing 3butRtongu{8!it 4He Bhear+,Aas s BwhenZexpectantly h;!onu1ammh awkward assent, (/N sFA misQd as Awise !toaBrear! ,0q and ag%#ato sea eyeball"=1ate>!clryj belp itqit maddUL q5Bough"aw;  ]Thatcher\ once suspe(`iC# lthe living. But3did59 +Ber f%/3toosas glad#Tuffer^3haded. Amy's happy pra<$inA!e.!hiac g&,o attend to; s must be doneAtimeUfleetin vain--N chirpedkT`, "Oh, hang hi%k  aget rioXher?" r those 9he said artlessly !ou" """ chool leJeShe hax3hl, t. "Any(Qboy!"p#gr3is teeth yGH1#buSaint Louis smartd20and is aristocracy! Oh, c a, I lij1youfirst dayuWqaw thisa, mistAnd I 1ick.Y just wait_ I catch you out!9%1tak  ermotionsZArash+n+r= --pumme>hI1kic&>and gouging.{you do, du0? You ho',Qthen,?learn you!" r Fthe Qflogg'as2o 15fome at noon. His L not enduByD3 of4 iAThis jHtbear noAB thea distrf'Rresum) 1 in'h bAlfredI*sy"">!no#to,Ktriumph BclouG 3she/nterest; gravi absent-mindV-s followeGthenLR; two2ree -"pr!up2ear footstep" iba fals%;i Ashe bentire({1 wisbEdn'tjit so faVsen poor Q, see!loP2notV)Ahow,E exclaiming: " aO one! look"1s!"{1pat(Oc at la99S saiddon't bo| Sme! I2carathem!"` LBearsagot up)Cwalkq2. dA dro'alongside+s-}2"buRsaid:,2awa&leave me 5e, .1! I1 Shalted, won# waZdone--forCFaid }i !snooning #hej on, crytC!mu Z?he O qwas humO egQangry!ea bguesseE Vtruth Rimplya;Gn0nXAventRspitee)I". far fromh=be lessPDBdGZ !3g~to trouble withoutS riskTAselfR's spn Cfell^ 4. HMhis opportunitZ!ly.e !onLfternoon/T?&inKr page. ,pi cwindowm R#ou5vP. She startward, now, inten28tell him;~ thankful%healed. Before s half way4, hh1sheSchang$migi 4 of Sreatm!heS@C her came scorc9R:S sham|yvz6 ge,!ondamaged i's account*"tohim forever,Ohe bargainVIX TOM 1 at:'adrearyoa_sm Qaunt R k1 sh\-Qhad b tQorrow an unprom$kmarket: "Tom, &1a n  2kind live!" "Auntie,o2aved&e?4Ryou'v ! e I-vTSerenM,ran old softy, expectingAor!o ZL :g$atn0 2hat4,!loRbehol{ s'3fouf!Jot7 2wasabtalk wt&, I don'1 $Q of a9will act  that. It makes me feel so b [-go\A andG!L l of myself never say a word." Thisa new at  %  3nes( aLH!toueCjokeBvery ingeniouse *A mear shabby !He "2heaA"no5ken71 to,#4he IBdn'tvit--butCT2Oh,i#'!k. c0your ownrishness66T Lfrom Jackson's I?2 to $urt yoo?\:ASa liem<%91n'tC to pityk* Rve usXCsorr8q!knJ8was mean,!#I J CB. I s, hones1),. Ayou &W<ibme forI"toV1you'&us™(n't got p!del!th nkfullestMi} 2wor>I7bhad asta !"atY2you ever did !it." "Inde ' 1, a%--52mayOQ stir2H!OhT Rlie--,!do[QIt on 1kesPcgs a hUFbtimes *<a; it'sH0 F. I k,1you @?X4"at)"&me2I'dLW#it Z power of sinsV72'mo}you'd run eand acted2it reasonable;n #me  %Ryou g y 22, IFgot all fulRthe idea ofa' the churchI("n'GBh2 a$Qspoil$Sotpbark back in my po 1andjA mumkW.1arkq2ark 13we'+ d 1wak8qI kissee--I doL6linS%aunt's face relax[! t.Sness %inq. "DIDqkiss meM !Ar.3 su ?did2Dq--certa|ArmRz ~Because IBcobyou laBare moa-Band "3ZBds sz Aruth.* tremor inRvoice&K9E!!bexAwithbf1 o " hTgashe raqa.!goAruin$1 ja#T c in. T0 _vher hand< erself: "No, 't dare. Poor boy, I reck(+ #ed bit's a1!leBlie,7's such aQ1romaI hopeLord--I KNOW BLord 1forr_.Qisuch goodheartd"it3"wa'#fi 1lielook." ShexCawayRttood bya|b. Twic-Dput 21takA garUand t:refrained. Once m1ven1rhis timo3forN)3Wc}:> llie--i!et%1rieR." SoG3. Aa E, J7y"flQtearsix3: "Athe Bnow,}5'|'mitted a millionl)!"X THEREAsomeAunt Polly's manner"~!BTom,; Bswep low spiriVBhim lightRhappy6. Hp&A luc YBupon O8e of Meadow Lane Dmood+determined3. W|Bc's hes$ h]; Iamighty to-day,6I'm 9 ,#2 do!4ive--pleaseB up,S you?vDgirlKRA him<dnfully( face: "b3thac. 65 TO , Mr. Thomas Sawyer.i AspeaM 2youR!to*h a!pa!onCd stunn-1 noYnkh!ce(inIrsay "WhHs, Miss S&?"j[ ?$&it%dby. So$1 no(OQin a Rrage, 03He mopedAyardf1ingObwere azBand ing how hebtrounc%if:iatly en#erd 2R a st"y remarkQ5. She hursWbreturnngry breachcomplete. It EY$to Bhot 0Rment,s#AQAwait)Q to "02in,was so im see Tom flo\injur2. I;1hadany lingl!noQbof exprAlfred %,aoffens;2lqad driv=vaway. Poor girl dOrhow faswas near. The maMr. DobbK n͢middle agean unsatisu3ambDqThe dar!ofdesires was3#be a doctorqpovertyWdecreshould be*Q highan a village q. Every he took a mystmQ book>CVk and&$1 in;{s "no6.5Breci8"R$! t& 3ookJ#lo21key#rqot an utMwas perisve a glimp[Q@Bance+T came1boy8c theor-1 Qnaturqno two 1iCalik6t way of getting5ats in Base. "as1pas!by4Ddesk% 1nea~R door t3tX)5ae lockADrecious H  glanced around;>B next instantHOs1The title-page--Professor Somebody's ANATOMY--carried no informa/mind; so s+!ga1tur s"cau!3oncaomely engravW frontis> --a human figure,qk naked !CK+dow fell Apage}3TomA ste$inAdoor&fcaught tpicture!bsnatchs"to >aR hard BSdindpeEathrustfvolumej2tur@Ce ke  out crying'1 shand vexF. ",2are1 asacan be4sneak up on a persou"wh 8y'r+." "How yH2looS$ta?" "Y$Abe a  ;wfyou're&tell on m1#ohQshall) !! 1 be whipp ICwas 3%P astampe,!fokdRBE soU i!% *2'E*. %&and you'll see! Hateful^' "!"she flungthe housd*cexplos>\:still, rather flustereC1onsBt. P+ O+  !Whi"cu&k," aCqis! Nev2xen lick! Shucks! What's a#Sing! 4ClikeS$--so thin-ski and chicken-". 4Aof c4 # Iq)t$ldV3'is lA's o@Gwaysa even a<&|tC7? Oxktask whof%3his book. Nb'll answe en he'll doUay hekoes--ask firs\An t'wOns" jiBing. Girls' facese*9yMM2bonT1'll .i  hatight - ', p1any#ou.*!coCDJ'added: "All,3"'dQto se"inQfix--!er sweat i"!")4joi0gmob of: lars outsideC[ags  !nd:ol "took in Afeel rong interests studies% #hea 1 at gc side Broom !'sX d him. ConsiL&3alltT, he 4Bpity`B$et+2all1uldo-/"HeVup no exultd!lly worth[ n  \ %Qdisco@ 6#adeHH Sfull I own matterE9a~72aft "t.64&er lethargE *"Xgood the proceeding _! 3Tom"ge(&aby denrhe spil2inkCw  >/sSG:adenialr mn4TomssupposeV A gla{Bthat%sJmergency paralyzbinvention. Good!--han inspir4! Hk"ruXbook, spring thi)"3fly5NAolutAhooke$ont" i)was lostl ,rTom onl9{ Wsted , bQ! Toorkn Sw *O  Bfacex1. Eeye sank under AgazeLv9smote even Pbnocent/Hfear>1sil%B onez count ten =kAatheV.#raH npoke: "Who  book?" nNsound. On 1havxrd a pin,1a still!continued;CAsear-4fac|  for sign uilt. "Benjamin@,!tuS?" AA. Ane  pause. "Joseph HarperD5+;I uneasinessE2and4#sethe slow tor+es TFDscant ranks of boys--c ,ed!ur3 : "Amy Lawrenc,eA shak head. "Gracie MillerQ samerYLusan! 8his)rnegativ(2waslMA was"bling fromcto fooQexcitG and a sa!op_!of/Rsitua "Rebeccazc" [Tomhf#--I!Cwhitterror] --"]R--no,4(me6b" [herA rosmappealE?XAG29lik;Da%br(3prafcis feehouted--"I:"t!}BstarperplexitH6incredible fF3Tom!"a C, toHqdismembfacultiesk wYNA for=#to-his punish"=burpris gratitudB adosCshon64himBpoorv!'st Bpay /O)1 IBed b~splendor qown actv Sb outcr7most merciless fla DMr. 2had8,badminiBalso receiSN!ce"added crueltaa comm o remain Shours0ld be dismissed-- knew who #wa k]h;his captivit3don he tedious s, either$C6bto bed, planning venge jgainst ; ;arepent5#ol4"ll^ 3for 3'jq "ry8"thV1ingHW %way, soon, to !Santer'%she fell asleep at las's latest0sdreamily inRear--, how COULDbe so nobl23XI VACATIONapproaching),nKqsevere, rjQexact1han[,i!a .!shV on "Examin" day. His rodkhis ferul8! seldom idle now--)=&st # sUpupils. Onlabigges7 young ladie}e e twenty, escaped la #' Ss wer vigorous onO!; lC he \,K6 wig, a perfectly balQshiny=#, Ronly d'B ageq T of feebleJMmuscle. }great day "ed?byranny#waEc=face; hec! H)!ur?Ie least V2comTnQnsequ Y1boy59 air dayNp8Fz)1plo1 rezy threw away noo "to'  a mischief y a$J"im\r retrib8 & rfollowe*yCful vCso s|Qmajes^| from the field bad#stBtthey co2tog_Ԝ#lag7 QdazzlaictoryBy swaign-pa."'s(BCchem3askEhelp0s v`1deldRboard Rather's f]3K$giboy ample -rto hateFTd's wifHBgo o"!sitSuntrySew da~J#1to !4fer !he O Aprep f3forQoccasAA3by 8Zty well fuddl Q boy  the domini roper condw$G on A Eveh1q"manage"Bhe n[ <9Vwaken hhurried #toB. I!fu; "im!esHc arriv0+" iewas brilli' Cdorn wreathsbfestooDfoli!xflowers! s 1ronH 2 {d platform,< Alack=#? tolerably mellow. Three rows of benches on *(!si\Rd six%1in "c m.foccupi dignitarw1own)% aparentusTg left, backh citizens,Dba spac emporary5u@"th&Blars3 !er1taktexercise ; 1of S"he"drY0"toxae statdiscomfort; gawky bigRs; snowb_ X clad in lawBmuslHKbcuousl,ir bare armsir grandmothers' ancient trinket&2 biApinkblue ribboLir hair. A>/!tas fillKnon-participa.%2. Ac"3boy!upsheepishly recia"You'd scarce expecaof my o speak in public stage," etc.--ac5ing#ai-r Vpasmodic gesturech a machine mahave u csuppos ' a trifle]aorder."he*7safely, though cruellye}3g9afine r!offHD?dp! manufactured bowqD. A u1lis$B"Mar a+Clamb]#, Qgbssion- aurtsy,yher mee,ru!wn#ShappydSawyer ӕited confid o1int)1 un hGindestruct"Give me liberty orme death" speech1furc frant4Aicult  $ia middlit. A ghastly "-fbAseiz m, his leg5ked m=  to choke. True  1nif/!ir tterly defeab a( attempt at,it died early. "The Boy StoodC" BӘa Deck"!owPAlso 3Assyrian Came Down,"!ot{eclamatory gemV"rerd,a& f^ meagre Latin class ,Qhonor prime fea41ing"in,original "compos\ 3s" a. Each-!er: !to<qedge ofr 1cle.1roal anuscript (tis dainty)F"eqCreadQlabor t to "expreDpunc!1the.r had been illuJ;on similar  Sb befor^, doubtlessir ancestoremale line F nCrusades. "F[Ahip"wone; "MbOther Days"; "ReligioHistory"; "Dream Land";qdvantagv  Culture"; "Form Political Government Comp and Contrasted"; "MelancholrFilial LovVrHeart L#sp A prevalentY!se\ca nurspetted m|B; an>asteful and opue1gusf"language"; <qtendenc dlug inRears 6 ularly prizedphrases until+ Fwornx%3outr peculiRthat ZX CmarkBmarrlahe inveterata r sermonwits crippled tail  Ae eneach andby one E m. No matter wCssubjectG Rbe, aA-rac 7$ & quirm it into some as "r AFa" rQus mi} !ul*templateAaedificG glaring insincerid"_not suffi o1assYabanish  fashion'Lit iT to-day; it never will bex,orld stands, perhaps. #]5ll our l$2herD1 do$feel obligwAclos.!iru1ithkBrmon|/aill fi >#MfrivolouT  Dgirl1dongest9XQrelenhly pious. Butis. Homely truth is unpalatable. Let u2oK"!."QXfirstNas read9one enti#1"Is (n, Life?" Pgreader can endur_'bxtractNit: "I5common wal S life(ful emot!do/ERthful9ly"1warvsome an qed scen 2fesc! Imag is busy sketchingt-tinted3Prjoy. Inû voluptuous votary}TEsees`(1amiA3 ei ng, 'the observe4allrs.' Her gracRarray7snowy robes, is whir! f"uga1maz3joyous dance;E eye is b !es rY 3 is#st gay assembly.-BdeliIf"#quickly glides by, welcome hourRs for1ntrBintoe Elysia cld, of bshe ha2 g\w fairy-li eF !ry appear kher encharvision! 3newjis more charm}aBlastfas1nds{Aenea@ais goo߁xterior,#is vanitflattery3onc 1souqw graterharshly1ar;ball-roomCqlost it4sF%Rhealttaimbitt= Qheart1she bs away1Fnvicaearthl8s cannot satisf U1ing1theHJq!" AndV#or3so D!rea buzz of g/1to 3durB $, Qwhisp4ejaf"How sweet!" 5qeloquenSo true!l had closed jc ly affli e\enthusiastic n arose a slim,X8r, whoseK07' "C" paU42comMTpillssigestioX>`a "poem." Two stanza&"it=!do+ "A MISSOURI MAIDEN'S FAREWELL TO ALABAMA-qlabama,%-bye! I love1! qBut yetLzCdo I:+1thec/1Sad1, sQought(!myR~bt doth And bqrecollesng my brhRFor IAwandH|!th[wSoods;Have roamN a;Tallapoosa's stream53blisten, *ssee's warhfloodswooed on CTide Aurora's beamA "YeM8Ame I to bear an o'er-full4`Nor blush4urnmy tearful eyeB'Tisno strange% RI nowa+pm2(to0s left I yield; Qighs.[W|sand hom2min  is StateW1TvalesL"--F!spq?fade fas (1col ag3eyex 9eoen, dear ! BturnQISee!" c Bwere4few$ho $at "tete" meKl"bu "po S very|ractory, theless. Next/ed a dark-UBxionEIfack-ey Qhaire qng ladyQ paus2 im'vwJa, assu tragic ex$n Q " m~ d, solemn tone:A VISIONN2Darbtempes 2was5 2. Aq on highA+2ingr quivered; butAdeep0"na T heavy thund "coE-qly vibr 1ar;s]rerrific n .gry mood-de cloudy chamberheaven, seebo scorQpowerXted over itsAor b,allustrFranklin! EvqisterouYwinds unanimaM"th mystic /Qblust?3as if to enhanceBir a Q wild!#. . "At5 a$A, so Rrearyv human "mymspirit sigh@eQbereof,k1'Mye#iend, my counsellorand guide--My jop Qgrief,second blis[in joy,'RQto my1. S#ve^9o. Z 3ose p!s !d Qe sun9lks of fancy's Edekromantic , a queen of beauty un#qsave by !ow_ctransc xAlovevPsGAsoft 1, iqQfaile2mak a sound,"bu1mag0thrill impartedgenial touch, ather unobtrui< Bhave away un-perceived--unse4. A1 sau res4herf1s, "ic5s e robe of December,21poi 0nd]Aelemtcwithoub0Tg5two"bresentV3Thi;(ma)1tenB}h1oundwith a 5so v all hope to non-PresbyterianN  #!okApriz%1osi~ Gwas /Qto be sfinest >81.cTmayorvillage, in deliveJ  rhe auth6 it, made a warm speech i Bhe sQby faT"b "" !heE  that Daniel Webster well be prouit. It may be rel2ng,xthe numbes in whiz4aword "4Qeous"over-fondlegxrience referras "life'sS,E$upeusual aver`1Now}m,"1 alA ver3k1putchair aside, !ed9 !udldraw a map of America #A, toa"ci geographyoupon. But he 9sad busi] !thu|&y 8SQa smod titter S!ov*=!e '/ nB wasDset =Ato r !it:sponged out2Qs and=dbm" he only dted themQE!evn E&ApronGMd$)$hi'>J his worky(if@PBnot uput dowQmirthBfelt"al B wer #en him; he i| was succeedingFyt;\5uit even6ly increased.Q igarret above, pieta scuttle 1his|,@$is- came a cat,nended a$ q haunch a string;1had&!g V 4PEjaws=qrom mewDslowly de#Q curvwAward-Aclaw,swung down-qintangi!!irRxKahigher2 --the cawb six i"absorbed teacher's head--down, "$owshe grabbu2wigNher despEclaws, cluS4iw1nat7u ", " i} Yr trophy7" ibposses 1And0Qthe ldid blaze abroadx's bald pate--fo 3, boy had GILDED it! That broke upEmeet3boyavenged. Vacn  3com NOTE:--The'+"a" quotaS tpter are taken%out alteriBfrom avolumeqtled "P7and Poetry, Western Lady"--yj1exa%0݇Qecise  *agirl pQhenceEAmuch9 Aappi"anYcere imUs be. CHAPTER XXII TOM joew order of CadetTemperance, r attracN  1howw@ "regalia." H3misRbstai^Q smok9!ch,Aprof as longSArema1a m OQ he fn thing--nam&a1 noBdo a+" iZasurestO  3 body wanA!goVQvery Pv$b soon W!rm] q# aQc to drc)q swear;Rgrew %so:!nor jL bof a c6to display i8red sash kept himwithdrawing from . Fourth of JulT61;Qon gaat up --iC"A2worrshackle7 1y-ehours--and fix0Bhope? old Judge Frazer, justic)Beacewas appares'"bei/ Ta big*funeral,  o9an official. Du( ree days[;Bdeep+rcerned 62the' d Qungry1newit. Sometimese: "ra$--#heRventuj1get Chis practiseO.R-glasrmost discourag yJbluctuabAt las'as ~Amend then convaltQwas disgust9'qnd felt !ns&injury, too !haQsigna,tat onceq"at#Bsuffc relapBdiedrresolve kP! trust a mand@T+Cpara a style calculated to killClate^Benvy$1fre[m@!reAsome!a La swears Ors surpr 1dids7Qsimpl| hga, tookBaway Charm  GDqly wondQto fiIacoveted vGwas beginning -4&ng Cheav}M ands. He attempt$BiaryPLed dso he abandonedT?!rsanegro minstrell!s cto tow aa sensand Joe Harper+-up a band of e-r were happm1twonGloriousbwas in a failureWAit rFT&, encx ! i!seI-e&t! aeatestBAin tabrld (aT!/ed), Mr. Bento actual Uniteds Senator, prov overwhelYQdisapXBment Gwenty-five feoqgh, nor +Q anyw;neighborhoosrA circu qboys pl"J @#  in tentsof rag carpetAadmi ,@2pinOB;two for girls#ens. A phrenologisa mesmerizerI3wen1lef H8_Udrear "evf>=BwereUeCAand-'(1es,jDthey,A fews6so $(Bonly2 the aching voids between acae hard= Thatcher1gon}bher Co_ ainopleat!Bher ks } bm1sidaElifeP.dreadful secre*athe mu  chronic miseryєaR canc^ q permanX* 2aingnmeasles. wo long weekl Mprisoner, dea}1andw"Aings1wasQ ill,;O !no3. W2cgot up aU3andafeebly{-$"!achange3com./$"nd2 cr.rb* "revival/0 had "got *1n,"{Bdult"thyLbbhopingsst hope!1e s$ of one blesOQinful"- A cro(Ahim Qwhere9Qstudy Testament4Rsadly9- "deng spectacl_  Ben RogersKvhim visi6 #ooca baskBractE!huup Jim Hollis B calLs]KK{2ous0ing of hisA 2 as DningSboy he encounti!ad2nother tfV Aon; 1hend ion, he flew for refuge a) F bosom of Huckleberry Fin! bwas re+Scriptural quotjirw_ re crept!an!be"2lizat he alXA allw!st4and .%Bnv=&st:Adrivain, awful clap ]/blinding she81cov!the bedclothe"ai! a horrosuspensehis doom; not the shadow of a doub  is hubbub was 1himrSdQtlm!thtgbearanowers aboveMQextremitp Bendu2h.i the result have seeme1him!st[ApompiRammunp Ca bu3a b(of artille+;b incongruou' E3 up+n'2 asrto knoc+ Bturf! insect likeB. Bbtempest spent itPcand diQout accomplis9its objectc boy's bimpulsgratefulreform. His +EwaitC"re>bbe anyDsK"dadoctors were back;w4hadd 3 heU!baO!is2!%an})ge . ehardly4D1spa#"reing how loneWQstate companionlesAforl@oPdrifted listless Btree+p41 acuqas judg a juvenile courr1cat her victim, a bird and Huckup an alley e@ a stolen melon. Poor lads! they--tTom--ha7E SI ATkhe sleepy atmospStirrevigorously:3e trial4k!betAsorbWtopic ofe talk immediately xyBaway$itArefeQO ; sent a shudd his heartroubled consc i[5LQpersu2himBthes#rkr!pu tqas "feelers";1seen-Rld beaqof knowz n -  Fnot be comforc2ae mids, agossip1kep(rshiver e"Hu##a 1pla+!a Sm. Itb QreliedbunsealAonguwhile; to divide)iburden[l87r. MoreoqBhe w/to assur-m discreet. "Huck,1you" told anybodh--that?" "'Bout wYou know." "Oh--'course IZ"n'Never a wordLAsoli2Qword,|Qelp mat makes you ask:qWell, I\ aafeardbVWhy, ?B, wen't be aliv$1dayQ #go out. YOUt2TomWmore A. AfnQ pausnQ5n'tL1get!to\,"Q they"Ge[!? !if half-breed deviLzF me z) gO$y ain't no diMn>Uthat's all(!&n.twe're safe %   we keep mum. But let's swi-1gai1ywa'!Qsurer}I'm agreeS# ry swore? , solemniti"%S talk,yQ? I'vBrd al " "Talk? Pit's just Muff Potter, $the timepReps mg!t,tant, so'sd7A'ersT{"ju9+Q samebgo on p reckon he's a goner. Don'gfeel sorhBhim,AimesqMost always-- *raccount thfA don %ur. Just fis 4 B, toSoney drunk onfSloafsFiderable; l-!we2do |MBwaysu&of us--pr s <+Blike@!ki?PE--heBahalf aB, onre Krn't enough4 2two"lo eEQby me?sqof luck!meBkite"me,knitted hooks%o my line. I wish w"geot$u" "My!&"n')W. And besides, 'tn't do any=;'d ketch{ AgaincYes--s>aI hate;ear 'em abus2 so the dickens6"he/fI do tooL)I[2say&toodiest i ip n !!an ver hung befoO1Yes=y+%7~Qif heK)1frery'd lyn^A'"it'" The boys]"aQtalk,Csit broum1. A# twilight drew #ey themselves ha6 * leAisol80Ejailz=an undefinp8d; z-m!clow;!irAicul+T But =eno angels or fairies i! tYss captiveAboys#\!ey~Qoften%!-- AcellYring andk qtobaccobmatche-;n gBfloo% rno guar"isl2tud /Qgifts Q smott!irL "s --it cut deep,lx@ 2cowASand t!ou2the Sdegreaid: "You've beenQy goo1me,--better'nw 1elsthis town1I d+forget it,Q. Oft1sayrmyself,I, 'I us\AmendMCoys'.Bings:Ashowfishin' place01befD4Bat I1 2nowjcve allaB oldthe's in92TomIQHuck b--THEYP)" '5-!them.' Well, "eBwful$"--and crazy  #--w athe on*1y I!un2 itnow I go:Qswingxiit's right. RighABEST, b--hope  we won't4at.! make YOUl dbad; yCed mh<say, is,p2YOUG !--m 3youSStandR er furder west--soSit; it'smBAee fw"lya&C5 Aa muP Rtf1non$ ae heregyourn. Gooda w"--"ly. Git up on Hother's backYl touch 'em. = Qit. S}`qhands--}1'lln1 th-Abars mine's too big. LittlBweak--buyQ 3lpel ^ 2shelp hi*.iy"."!home mis CnBream#full of se next day{e fter, he rt-room, dra@. irresist`,(1in,tforcing( to stayF| 1hav (1qy studi~a avoidpL"ch4FKTkelet !atdD Now,7#A us t** b--telleown waEskipp,h+sbegan--}AinglRfirst"as"rmtQubjec f  easily;ln! sdceased buP own voice;&ixAhim;qed lipsbEBhung!higads, ta]\no note of"d, rapt1ghaCR!on 1ale#q straina pent emoq q climax 5boyJ "!asdoctor fetcheETboard+"ag fell,@Cjump-P?1andCrash! Quick$Cighte}%Cspra|aa, torem1alloAsers gone! CHAPTER XXIV TOM1a gring hero onc>e>%pe2old-Aenvyhbng. HiR eveninto immortal prin;* paper magnyhat believe be Presid Byet,  * . As usualfickle, unreask9s % to its bosomBfond3 Alavi@XRas itb} !&Bsort of conducO&o"'s"t;fIp'#noJto find faulQh it.!'sv: of splendor and exul2 J2hiss were s?.  infeste=s Ddoomz deye. H!y aUcould', 1boy"tir abroadafall. Poor HuckiH 1samI"wrrand terror "ad*p7!ho!or* Awyer Qgreat V 6and4sor01hara y Jumight ldnotwithsta_A's f!sa!im+QZyq N.#4afellowDhe attornepromise secrecyqwhat of? Since }Sharasy![2 Bdrivp%c c'&Rse bywaad2lip ^been sealnsdismaler;most formidab=aoaths,a's conchuman race`well-nigh obliteratcXDaily2'"1madA gla\0Rpoken%!Vly he wish%1up " c. Hal"imZS nT 3be dVa othercY@ >+ He felt sure heMbdraw a+again until1man92dea,y@ Rewardselvcountryrscoured"no2 Jofound. Oose omniscind awe-inspi^marvels, a detective,1"upoSt. Louis, mo"ar@S$shhead, looksort of astouQ succ  3sZb craft!lyu=!ev1at ' say, he " a clew."n you can't hang a "clew" for#soZoEgot ]qnd gone8. s-63ure3was,. R slowdrifted obleft b Cit a"ly qened we"of apprehenV THERE comesVqrightly{1tru+26_)has a rag1sirrgo someqand digRV}1sur3is 9suddenlyU3one{e sallied+R Joe ~Bfailed of8. Next h<;!a %gwTtumbl@FI2FinRed-Handed." qanswer.m3 private-#op$e matter to >{kbtially`*Awill>  o take a hanwy enterpri RferedBtainnd required no capital a&u superabundanc)Rtime r rmoney. 'll we dig?" sair. "Oh,5.Uq." "Wh%D i[ e?" "No, inde  /a. It's-"in=y bicular5 --/ on islands,Atime@ rotten chests!envaa limbSn old@Bree,0c;falls at 1 mo aQfloor) ba'nted0Who hides iWhy, robbers, K urse--who'0? Sunday-school sup'rintendentsXIknow. If 'twas mine I Cide it; I'd9!nd1 a _&1o;1 I.l"do!XUf and leave it "ADon'y0Cy moA!No y)k,w$B#qy generUQforgeT 0q, or elJey die. Anyway, it  t 1a l "im gets rusty;!by- !bycbody finds<yx  Xtells howAthe 2--a  o be ciphCovera week because it'stBsign hy'roglyphicjaHyro--H"--picture>qthings,]Qknow,1seeTmean u1Hav1d got o"emas, Tom|!No0Well then,: Afind #61wan^ esbury itas or on a"ea t0Eat'sAsticTout. *!'v ed Jackson's I}iwe can tQagain/R timeSy' -1 up Still-House branch,=qlots of-StreesnAload1'emI#ll Htalk! NoTA81ichJ1forG _1'emI1Tom/6#llll summerf 2? SI#a brass po-a hundred dollar,"llAgray2 fudi'monds. HowaHuck's eyes gX1!bubPlenty4qme. Jus R gimmM Iand &noT" "AT8~QI betI:k!foff onDb Some 'Qth tw3Rapiec"#reWaany, hn2's <six bits oHvaNo! Is1 soCert'nly--anybody'llyou so. Hever seen on5E!No7I!nOh, kingsA sla|$S_"no5$I reckon@i!if3wasto Europ!'d.Qa rafr'em hopGr b" "Do1hopBHop?_-u grannylN2say>1did CShucks, IJ1ean'd SEE 'em--not V Yto hop for?--but IRQ 2seeV3scal &, 28$ aBLike!ol]pbacked Richar* 2? W_2his,Q nameRHe di'ny"1. K!but a givenIN!Bu.yiy like it-R 54D,Xa niggeroRsay--t Eyou  1irsn< S'pose we tacklj ) hill t'8side ofjrI'm agreea<got a crippled pickea shovel1setwir three-TtrampV*"hoCrpantingE]/7T downH2shaa neighbo!elq#- smoke. "ISthis, Tom. "So do I 2SayP$weCtreaF#re 1do 0your sha ZBI'll3pie5MU 3oda2day1Rgo toV&fSlong.0aQa gayrnbsn S sa"tod h AlivebM1!byy#OhP |any use. PapY CcomemFo thish-ybwQR2 daR\5as clawiIurry up,ZIjhe'd clea3out pretty quick.tn$buy a new drumua sure-'Whearts jum8ao hear[strike upoFyb"$#ed3dis <+Aa str a chunk. AtDE5Tomv -rxrbut we CAN'T b&. We spottv)AshadX2bo a doI$tF1the6re';"tthat?".wpAguesoyH Menough i1too5> or too earlAHuck 7ped .tat's it9Ahe. !'sDveryLLFaone upBcan'| 2thea1sidL$is` ',8C%Y#ofy%> ;2 a-fluttY&Zbafeel aP$'s!mNZ;'AfearTCturn)%uz'V front a-<Qa cha I been creeXAll o1ever since I DBI've=smuch soAHuck6y mN put in a de&# why bury. e, to lookGLordy!" "Yey3 7If !toRPpeople. A h1s b!toDintoQ'em, "L" "r2stiRMup, eitherjf2onet! 2.Akull !ay" DCTom!2wfu"it "is^U3a b,QSay, <lp~ d"trARs els?%,  $weY 5bconsid|/;dJ:The%. G  4s.c 're a dern sight worse'n  D lVN,lyocome slid rshroud,nUnoticApeep shoulder3f a:%!1griqir teet"Ra does. I Bn't qsuch a NPa--nobody 1Kt2but, dUtraveU 1 heu_! 1But <{#goCYthat fA norg 4v emostly M J#go5 Qa manaen mur, anyway | E"erODseen5 # except b--justLBblue'Rs sli& q window regular Gsl![Xflick5acan beu4h!cl~Qehind Irs to reason. Be1any2butAs us<pEDcomebP`f, so wl!us3our?7a<W$ df^#I it's tak@A y(qstartedffhy) TAmidd- oonlit valley bel[em stoodR""M&!, 4ly Ra, its S=s*ago, rank weeds she very doorstep chimney crQ)qto ruinq  -sashes vacant, a corneraroof c/!in1 boz*, half expectAo se. flit pas%Qindow n1ing 14 as befitte8 b:m y struck far of\Rthe rO Qe haua wide berth A*qway hom. r,Boods6 earward si_j Hill.4VI ABOUT noo$ 2 daNgG4tre=Ahad ffN"ir$Q. Tom impatien#go ;( Qwas mAablyc $alC%ly Lookyhere1 dowday it isbmentally ran%$V3eekhen quickly liftedG# a2led 3m--WI0once though,iE\un kKrR it pE conto m` a Fridap   can't be too careful8 A 'a'  1an scrape, :ing2Won a z MIGHT! Better say we WOULD!"'slucky days= $"ny BknowbP1YOUf2the:f 1it ;AHuckRn1said I was, did I? AndT all,.O_d a rotten bad3msdreampt1rat"No! Sure sign ofB F"ey{s'NotCgood% WL d*1ign  G,-2. A-_Udo is  by shark Zi Cdroph}5to-{ wplay. DuRobin Hg Who'sqWhy, he greatest m"evrEngland:the best. HGca robb Cracky, I wisht. Who did he robOnly sheriffs bbishop Crich2 RkingsR=9Q But naver bolloved 'em1divQ!upx 'em perfectly squa-h2'a'r Sa bri I 3youW[!Oh9qhe noblaaOT"R was.!men now, I can1youN R lick-can in ,a one he4iedD Ahim;NhEAtake!yew bow and plug a ten-cent piece"c, a mia3s a YEW bowIM /t7w, of cours.d if he hi| Bdime`Aedgepould set aand cr(2d cOB'll play!--nobby fun.AlearQF m% t\dfternoon, nowmy1casQ aa year=2eye#up qnd passs remark .1orr+prospect9Iibere. A5suna sink sey tookEway 5 aathwar| cshadowN6e,soon were buriAITsight8H(- Y On Saturday, shortlyV^  R bHnT4hadd&Ua chaCshaddEGir last hole*;]great hopeaGmere<oIqcases wz "pet#ad )(upafter getting down~qx inchep Y-O an some d1! aqand turZJt a single th{bshovel' Afail !isO a, howesDc+ BwentTfeeling jvshad notEds fortunehad fulfillep requirements <%of<71-hu(6. Rreach T 1{ so weirPv grislyBsile at reign^Rthe bAsun,{ bSdepre$Cbelines!dem"io he place[(3fra,# aHM Qventu7 ty creptD#do?!mbp_VT aw a weed-grown, floorless room, unplastx;aan anc CfireVs, a ruinous staircaser#er%ud hung E#nd abandoned cobwebsn#tl73ed,MC ened puls,s, ears ale\BcatcYDXRsoundAmuscAenseQready instant retreat. In a+Nfamiliarity modTReir f Qy gavm,Qtical#iYsted examinC, rather admi+[bown boƑ Qwonde"at it, too. Nexk1up-+isMqlike cu]!goqdaring ; =! abe but I&!--L,=Sto a 02and scent. Up\NBame 53qcay. InpJoC a@d mystery"qa fraud1 inCr courag4xwAH4n hM Lo go down and begin#1hen}BSh!" CTom. is it?" Huck, blanchingrG!..re!... HearDa "Yes:#y!(!run!" "Keep1! D you budge! 're coming p! tcr 1doo #stC./Rfloorto knot-hole!th bushy white whiskers; long hair flowed from u!hiRbrero dGe green gogglesec7'Cn, " Xa low voice; @#sa gr$Q, facAback{sthe wal12the=er continued ^ s. His mann\less guarF{0words more distincFLproceeded: Q, "I'!it oB 5andi,& dangerouDR!" grTthe "e dumb"A--to#svast su?boys. "Milksop+2his~ 2gasQquakeEwas O!'s +<!swag we'veAleftr--leave it( &'v !'B. No2!o i.f!wet south. SixfCmDfift5Qver'sDto carry%eWell--#r EKG m No--but I'd say(j2 us#doe9:Alook; it may5(" bTI,6!e  J!! ; accidentsi !B; 'tY$inu2ver9;i6f%l[+qh+qit deepDGood idea !thrRqwho walv Qcrossroom, knelt#, gv"qhearth-/atook o9A1bag Q jing?qleasantLe subtracW9Qrom i0nڼcthirty#Dcs for G"as+6for8e latter, #s <,(Q8owie-knifeUforgo<,bmiserig$an@. With gloaq ,A mov7q. Luck!f splendor of Qs bey%sll imag+!qETmoney/Ato mcalf a dozen rich! H sd1theaiest a !esrNDabother uncertainty as to w44to }2y nudged each ;--eloquent)r easilyRstood simply meant--"Oh,you glad NOW we'rbB!" mVTknife%Uupon . "Hello!" C he.?2sai4Calf-e"plank--no, it'sy!x,4Rlieve1--b`!w 2see<Kfor. Never mind, qbroke a3 [2hisWbin and i p3ManDU  rhandful8$ingold. Thejb abovebas excW cmselveY!as delighted.NwRquick4Bv$ban oldM24over amongst >#)5sid"a--I sa5#a 74agohaX|iaBoys'5andn X1the$b, look5ly, shookUA mut4 toM3  5use5Abox aoon un$edXA not *R larg!#wad2bou:Bbeen+dstrong5the slow>s+Qinjur c|5the" ain bliss3. "PardrthousanL Shere,p. "'Twas alwaysX Murrel's gangCQbe aruone summer,".stranger observ53; "vs looksPHI2 sa* sNow you $neRjob." Ʉfrowned. Se: "You# me. Leasx&k"lla A. 'T@ robbery alv\ REVENGE!"a wicked R flameBhis GR"I'llyour helpRBWhen finishednn Texas. Go homH<NT#anK3kidM1b %0$Sell--Bqsay so;ew  w dthis-- k Yes. [Ravishing overhead.] NO!- e great Sachem, no! [Prof[distress;1I'd---at least4 \Smean =but Tom, si%1nlyhad testifiSVery,mPDfortBAalond! Compan!be a palpCimpr5, h . CHAPTER XXVIId adventur4"ayily torme RTom's5s . Four times hE!s !atSFnd f6ait was:rhingnes5igers as  !hi wakeful4bEfAt bae hard realit'Fhis 1. AClay |AmornO(1ecaincidentsJND, he noticed%~dseemedL4ly Hand far away--someD ;3had#tworld, MfAlong " b3 :n i5him u itselfa$3onetrong argumentW Bavorj is idea--namely,sc quantDcoin2fAoo vkAreal Qhad nTseen !as in one massShe wa1all "ag"st in life,&Aimag= call re\Os7!s""  " were mere fanciful formCaspeech Zno such sumP qlly exiEpposed forf w"so= a sum as a 6z be found in actualy one's Ԁ" Ianotion treasurbeen analyze.yxy=Ansis 'a areal dgand a bushel of vague,id, ungras{`A. BR^K"en Ssharp!clearer (Vattri !inTAthem?h so he"`1himk1leae(impressi6q#no2a dream, a )isQsweptg:~ snatch a hurried breakfast!go2fin.ik e gunwalB a flatboat, listlessly dang+2t !ee3"atbs2ingamelancholy. TomC&2letslead up@1 su e did not do its1be 2q `o!xEGelloylf." Silence ab-om, if we'd 'a'Y 4lam' a"Vtree,0!go D. Oh$! 1fulF $,Somehow I most'x. Dog'd if I ." "What!K%Oh6ing ).U"en"QDream! Iymss hadn' down you8)1how  Q!xhf%Deams|2allpL#--()[tch-eyedZ 1sh l4 gom*!thR 'em--rot himm1No,_a. FIND! T /1Tom#llXhim. A fellerq ~3one Q for a pile-- a2's lost. I'd feel1ry shakysee him, anyw+qso'd I;2I'd,2 2z#'Aut--&s < 1--y95N'Bthat2&7/!ouAit. !dofreckonB"oQtoo d62Say--maybe inRs$'"Goody!... No, rRain'tfv5, is one-hort!wn3 y=#noq,@so. LemmkKS Here r room-- QavernQ know;Qtrick s3two?s. We cansout qui You stay hereU,zI come." DAoff c1caracHuck's~rbpublic#s"as G!an hour& EbestNo. 2 had# a young lawyutill so-. In the l&astentaa housek! 2#a 5 -keeper'sr2son  kept lock$)ll3tim82he 4sawq go int W!or}(A exct;Ymny particular reason> x1gs;Er Come ' BsityD8bfeeble98wVe6r by ent"Ding % ae ideaC"roG "ha'nted"e  r a  !re[) BwhatOYD'Kvery No. 2"$af&/Qit isE$. ?C youqQto doNE_(ngE2tell yous$do "at" icomes out J1los )ey e!a3?Qtrap Jbrick stor"`qet holdmdoor-keys1nip-of auntie'=,Bdark'"goS ry 'em. And mi,n, because he E#!to/|2tow 4spy 3)N#a "to 6youjyou just fGQ him;_Rif he 2 go >"1laca"LordyI !fovhim by myself+hsit'll b%", ov"He\Dn't B youRdid, b4he'A any' "ifU8n. 3o-- 1YouE<cBdark!. 3'a' out he coul f< #ber,&DOCs so{1; IP, by jingoesw"'re TALKING! Don'7|bweakenaI won' sI THAT#1TomQILy hung a e neighborhooo{nine, one watch52he PAat a ="K1thePdoor. NoF"orN Rit; n%aresembp2the 5ard=3te#Th promise]`fair one; sowent home`rat if adWAegre,Adark1cami AcomeT"maowupon he would slipthe keysE aclear,XmAclos2s(Tretiryan empty sugar hogs0welve. Tuesdac/&amE. Also Wedn/Thursday bbetter8"in$.sf0aunt's old tin lant 6 Qtoweldrlindfol 1ithh? <1 inp-'s began. A WB mid#v!upB2its1s ( !s 'd"s)!pu)*%02had Eseen+Dhad / }b. EverrV,3iou"Bblac5of SreignA peruQstill#waVbruptedby occasional/)#ofAt th<ggs1liti n~,=tl: Bowelx&wo2rs D A glokw>y.stood sentryrTom fel3wayZTjz  !of8ing anxiety$weighed iga(a mountainh$%sh?ra flashH$ C--it.f"en!buZO6ell- alive yet. I4s1Tomdisappeared. Surely"us Ded; &A was7`+!rtQaburst #D'Band ,G'1 In4auneasi L rdrawing-DrK a; fear rdreadful ] $/1ari1pecm0some catastroph 2Atake 1792not&to,]$heUable to inhale it(imbleful- TK$ar Athe beating. S1Tn"ofh%tEby him: "Run!"he; "runAyourt!" He needn',Q repe drit; onc ;#mairty or forty miles,RrepetCwas -3. Tj!tor  "J1sheʁerted sl#1er- e lower en/the villagxa By goin its shelter]Sstorm xrain poubwn. AsxJ] 0AHuckwas awful! I t3twob keys, aas sofI R; butsto make of racket=rdly get myRso scBT1bn't tuVck, either. Well,?!ou.Ticingkboing, I tookcthe kn!A ope@e !H&E@R! I h1in,!sh5fP, GREAT CAESAR'S GHOST What!--whatQ'seo1steFonto's hand!" "NoAYes!A#Ras ly s%asleep oARfloor4?Aold 5"ey his arms sprea[d1did Tdo? D0Bke u91 budged. Drunk, 2. IjUgrabbBAowel F+usIX'a' thoughS33tIx. My aunmby sick3alost iM A"Say,1box!diw@o_00.-}44 /8 .:ea bott|Sdtin cu 6 by(!; I saw two barrelslots moreUs S.u2now'!Fmatt'3at R roomTr!it mG o1ALLaTemperTYs have got aeC, hepd[3Who8u? But sAnow'Rightyt 1timg&ifqb's dru""Ithat! YouiQshuddIEno--"nom5And-B not3. O1  alongsidf, :u'< three, h  -&@oaTp*for reflectioZ+ S:38oky82les#tr 1 an#e}wwcR Joe'5'reQscaryhw eSnight# bp"su2 go  "orbwe'll Gbox quicker'n nJV<the wholBlongj%ido it 1too3you"<Ather4$"A= bill. A.v!to{"tr0Hooper Street a block EmaowWRthrow:bgravel=e0 3bfetch 1T"Agre01goo'Awhea*B"Now,  T's ov*bgo hom2gin" , %Qcoupl" +2"go61will youe!I TJ]t5#Ryear! Ev "damF&st2allIawooo[nǑ' hayloftZTlets nqso does pap's nigger man, Uncle JKA toteex  B wheahe wan`" t}JA any I ask him QzQves mGiBsomeBto eWhe can spare  !ik\r, becuzP'[" aL Bwas 3;him. SometimeQset rdeat WITH/1But  A body'sv!thwhen he' sr: 1n'tBas a steadyd-wXK,q"le.?A com hAS's up2'!, Cskip, @*."*IX THE firsR1earQ4QFridan glad piecnews --Judge ThG's familyL*7- before. Both 9o &Bsunksecondary import, and Beckyv the chiefCboy'="esSsaw h%tad an exhausi&1pla "hi-spy"c"gullyu!" $da crow2ir S-mate1day^scomplet[DRcrownsa peculi9satisfactory way:!ea[Aer mK to appointnext day foUlong-z1and\-delayed picnicfshe consentechild'>boundless;,Xore moderat.R invi*slAsent^s sunsettraightwayA AfolkLn4Ra fevapreparu(bpleasu6qanticip6's q enable90" ap dntil aQlate houh%%:vt!ofd1ingO4's s!an(ahaving to astonish1nickers with,2; b\3was$"oiNo signal c'vC. Mqcame, eBallyby ten or eleven o'cQ giddq rollic!c;/!ga  4_s -ro.UQustomelderly peop2 ma#;p$*!ce2ren@sed safe R unde9AwingAa feh"1dieeAe# gentlemeqtwenty-  sreabout1oldqm ferryboatQchart;t7! g<.flJ9r main sg Cladeprovision-baskets. Sid1andato mis/ fun; Mary remain!hovBtainT9nTMrs. 6 "tob, was:d7?oBback lIaPerhap H Astay   eRgirlslive neah"-lQ,c !y aSusy H,q, mamma+AVeryO. And mind !bey%yourself3bmR9T." P,"trQalong` 1: "Say-- 2you8 ntQ'Stead 3Joe2's *SclimbE!up AhillDstop` Widow Douglas'. She'll ice-cream! SsoJ"os Ai!--|+Aload8"it4sH#be t&!usg"Oh[ K/2un!?=nC%ed3But2illA say How'll shH6Rknow?^Q girl!edidea over a1r reluctantly(it's wrongK3--"shucks! Youg ! k REo!'sQharm?_sN1nts[!hao '"Bsafe4I b 1'a'" 6if IAwoulT splendid hos"itaa tempP 2baiand Tom's persuas02car+S q. So it>u Qay no? anybody?t 's programme. i1 itv(!rrJM)^7+''XAgiveZ ;took a deaV%s!ofAs. S"het&I"tolmfun atAnd why sh1he 5!it: h"qsoned--/c! W, so Ti2mor l^>o-night? T6QrA eveV 4out6theM1, boy-lik2 determined to yiel +5Aclin Tnot a{9t Qk of 0ox of money5  day. ThreeVbelow >EboatayAmouta woody hh& 1ied|3The* swarmed ashoreAorest distancescraggy hxs echoed farQshoutDand 95theØ1get!ho " Egone=y mry-and-barovers Sggledao camp31ifi th responsible appetitesVt destrucHJ" "L>2 feoC!reBFFing ( 2resbchat i2shaspreading oaks. BAsomef[ed: "Who' the cave?" Ever!wa5$. b of ca \Bproc   a general scamperhT+x0' hillside--an opshaped likO A. Its mass׎2ake&& !unbarred. WK small chamberM Aly a2ice" w0by Natur% solid limeston w 1a c& rweat. I1romJmysterious!t %erdeep gloom/look out upr!grKC'"sh--""un?1O6!ve!UDly wore offdQrompiDL2ganjIcment al]  Frush2ownit; a struggugallant~f1ed,62ursoon kn)/or blownlad clamop and a new chaseB3allQ havex(ndlrocession (!fiv(eep descenW4ain avenue,p!fl0qing ranGOVs dimly reveaYf!llqrock al5t1ir er of jun sixty feet overhead. Thisnot more than "en?Cwide?&nSstepsy%ill narr crevices bran@!from it on--for McDougal's`Rbut a%D7imepqraft.  blready.w's went gliW# p a wharfCAhear!noise on board(   C3as $usually are whornearly cto dea.AwondnQwhat 1de:Rstop w<<dropped her88'put his atten *rusiness`Bclou dark. Ten eKf vehicles ceased, sca) abegan ,#nk !ll 2foot-passengerkp |)1 be$itt)l <2lef| = qwatcher qthe silae ghosts. E  Swere /;/ Qevery$A$it1see weary long 2:b)u3},ed. His faith wasB4bing. Wvy use? "reA Whyk)C? AFfell~"ea;&l U instantQ Bdoord*^Tprangqx8$ Ti two men br,%onW- z Runder!rm0 ]Cbox! So sto remoE.Bcall Tom now?Ibe absurd--1en  get awayq #$anc7EDNo, c stick1!ire!foAthem<k5truP for security^discoverQcommuG3Rmself#*!ut Eglidg 2beh!e men, cat-like,qbare fe~!ll_E the8*5far&!noqbe invi  y |GP q blocks0n^ left upJ2ss-8y?"E,!qcame to% !pa}1Cardiff Hill;5Ctookfthe old Welshman's Whalf-m(hi-1hes!ng Qclimbward. Good, 5*VSdury itold quarryC) "stfa &-3on,b summixy plung.T7 1run 1ook whe pistols wekf#I Astop$t..Scome now becuz 7# 5it,7 ;I:lF3 I x1wan7runo}m devils88! i,2 deUph2hapAdo l?  Byou'aO1a--but +b's a bM!e2you:Ryou'v^Fyour=A. No"y U Adead--we are sorryC|#atCee wiqright w!toq#ou6 Rm, bydescription #weOaC = !we?RfteenTnAm--dis a cellard2was(sn I fouE sneeze. It wHmeanest kin16!lu " t3o keep it bp use --'twas bjt!it(#I iR lead/ 2my :3theR star-ose scoundr Q-rust*6! pbI sung"B'Fir!!'cblazedtt5he aqwas. So".  2offrjiffy, svillainwZ4N  a%oods. I B we eatouche|mydgAot a y4  bullets whizzed bdo us any harm. Ak!we9 the sou$Tw at chas2entS }!tio5_>ctablesgot a posse fH1offuV R bank&Cit i+qsheriffaa gangE bea8}"My}!.\XAsh wz"A sor2 ose rascals2H uadeal. But you cy  dRlike,euY2ladQpposetOh yes;JAown-(and follc AthemSplendid! Db2m--d BOne'B!olfdumb SpaniQben a*;once or twicQt'oth[sa mean-", VTP men! Happeng Dthem1R back2one 2andoQslunkR. OffAyou, 8ellfA--ge to-morrow Y Y"2depS!1. A__qe room   : "Oh, ptell ANYbod bR! Oh, eAG_ gByou -N%credit of w:1 di"Oh no, no! DVA!" )B men g  o said: "T2 7w Cwon'B2whyoia#n?  explain,!tothat he al Aknewn w"on3 Ahose!+4manUv 2anyHast him Juworld--c& for knowing it% ?d secrecy3morW1How&se fellowsA? We!ey Ding &usea!t #ramed a duly H rep -S lot,--leasyrsays soI5see)ragin it@ =much, on #!inx }3tryQstrik a new way of do7"ay u ' I,BleepQso I r  up-street 'bout midf a, a-tu~fg - AI go old shackly brick store by WP1, I3 Red upO%ll#2k.  %bcomes fQtwo c B"slf0%lose by me,+1unddreir arm'( V y'd stole1OneAa-sm3b one wah, !ri.s\ !me"igACt upBfaceIy og 1ig - eA, bywhite whiskerQ xT `ua rustyo a." "CmDrags ?Cis staggq5forA !n ?5Aknow Qhow i#msCIQTJy o52you<Fb'em--y eiO&to| awas up8y sneakedsso. I do$!'4+1iddDstilG& $ d:# JgVe begK%heX swear he'd sp;rr looks'as}2two  What! The DEAF AND DUMB ma8ia4at!!'aderrible mistake! H63his.jC Ru>sthe fai+i2 whNK smight bQ1yetdtongue/0@$to in spitball heFr do. He several efforts to creep!of1scrape, R's ey 1mh["bl5 9. P  ,be afrai!me 6 hurt a hair o qr head v3=I'd protec !. 1 is ;#leAslipout intend+ D. up now. YGEthat4 K q. Now tAme-- m S it i"3 -- a betra Alookit!ho51eye Qomenton bent over 9ear: "'Tab--it'sO'1 Joz ) gjumped chair. InWQ 1ll ,pe 4you{m#2ing#and slitting noses2wasown embellish 3men3tak1sorYrrevenge\"an #! a different matt242q." Dur7B&:alk! c Y 1 sades (h2hishad done,_ C#!d,^a7eqexamine,its vicinity AmarkP Qblood11y fnvut captured a bulky bundle of)Of WHAT?" IfqBwordBbeenn 3hey leaped withcqre stun0O!5AblanBlips]!-were star1ide3Qreath$ended--wao! )tarted--st?+in return--1QRgs--fiv1ten%!end i<f burglar's toolsY4,G' bMATTER sank back, pan5deeply, unaEably !eyt/m gravely, cur!V--and= NYes,appears to relieveB Butcdid gi# 3urn9!YOU expecBwe'd2?" a \H a inqui *Q havenfor material$ aa plau4#-- suggesteR?elf|!boadeeper --a senseless1y o~dK^/!noq+ to weighiokventure he c it--feebly: "-+T books, maybe." Poortoo distress!sma Cqed loudfjoyouseb detai$.Ratomy1hea Bfoot%b by sahat such armoney in a- pocket, q it cutoctor's bill likM Aadde!olG!p,y2re Z !a5Byou awell a bit--no wo8aqf #of8 Z'.*!ouit. Rest6Rsleep6Afetc2all_#brritat<6 heaBgoos!ed{! a)!icM!esf"aroppednBideaarcel b%.K%2Avern]9. c talk 3XW ahad on%rought i3"nod however "ha"kn/ bwasn't!sot%a qoo much:Helf-w!Bu![ 4'2gla@. Shad hnt!no4 beyond all qusnot THE,Oo mind was at rkexceedingly comfortaban factC Q drifbjust iD dir_`Anow;WA musw ;) in No. 2 zy!ilybat dayhATom a seizeo3golS \1out !or fear of interruption. Ju# pYea knoc9#l ` 0 hiding-"noX connecte!n remotely1lat admittedtRladiev gentlemen, amo*Widow Dougla Tnoticngroups of citizeny bclimbi2the hill--to 7 S\Qnews xBprea h(h the stor$Z'he visitor#gratitude"erbrvatiooutspoken. "Don't}a# it, madaGre's]z"'r beholdeQthan -Tre todmy boyc#he ballow Atellsname. WAn't ] v2butim." Of $&uriosity so va|"be1d tV#in )twa to eaAvita'mm be trans }Dtownb refus"BpartjCcretorall els> qlearnedO  I "to% rJ9"ypV8a noise L#Rake m:rWe judg0j2worMgQle. T"dlikely! !--Shadn'CoolsBao work pAhe u1 waGbyou up4carDR? My BnegrAstood guard sr houseeLmk By've`ack." More!C cam"beD,aand re G couple of hours more.G tSabbath d 1vacecQ1 waVly at churchQ stir1Beven` canvassed. NewV#n Dsign5two! 5yetA#edthe sermfinished, Judge ThDu's wife alongsidRMrs. mZQ as sI6ved1 Qaisle;-BcrowqIs my Becky>all day? I !edhB tirQdeathBYourS(RYes,"a;!tlp Sok--"T"sa2youIQnightEE/!noa kced palh$sabba pew,as Aunt Polly, ing brisklwa5pG by.64qGood-mo), A 'got a boy up missing.o1 myD!st Qlast !#--7you. AndY $'snvtto sett'q  "he H andar than7d. "HeB$us(`b, begi !to uneasy. A marked anxietCc's face. "JoeVSK?Y1No'b"1didqsee hima?" Jo="wa!su7 "ayWQpeopl amoving %ofWs}3aloD a boding Aines&k 1 ofzy counten\'of!if  .!On!ngfinally blurt2his  !we4ill Zcave! swooned awa f#Ao crrringing'Bands alarm swept/lip to lip,Agrou 2to ithin five minutesCbell fwildlyN6he "upF/EJ insignificanD<xforgotten, horsesaddled, skiff4man !!rd#ou1bef{nDrror was half an old, two h)dbcere po6aighroaA riv gC. A Blong091nooge seemed emptydead. Many women (ed9#anPa'q They cC)2too"wa/"l N;z#. tedious022ews/>wA dawqt last,   was, "Send candlesrsend food."4wasqcrazed;L{, also. sent messages! p encouragVtWaonveyereal cheT3 ]3h4'BdaylpQspattRwith -grease, smeTBclay Bworn7#HeJHuck#behad been provid%3 hi"Adelic feveruhysiciano4allrcave, s  ook chargg "ient. She ! s B herb4,'ahe was@Q, bad;7%in,fBr Lord'sKu !R"a \neglectez"aik good spotvQ-`"You can depen(>2at'xAmarkdon't lea9Doff. He n3does. Puts"2ome)0$on"re\Ccome(Bhis TA" E AforeRparti3jad Q ctraggl< bGllag strongeswEthe qcontinuxAarch gBnewsbe gaineBness]7edhansack71vis;Y S cornAZ ,o#ly#edCver one wan4z"pax!, [wcseen fE hit Bdist@qhouting0-shots sentr9:)1berrthe earthe sombr Qs. In&ar1sec21usu. rtravers/rtouristI7s "BECKY & TOM"DbtracedbRL=2cky'#Csmok near at h =1-so!biqribbon.   recogniz'e%>4hover ii7crh. !ofiAno omemorial )@be so precious Q this parted latestqliving h*RawfulpV! c.3SomzAw ann/a far-away speck ofzWglimm*&rn a gloKDshou)~fAscor'men go tro:1dow echoingz1aa sick; Vointment always f!e  a 0 donly a2r'st ree dreadD2^ 2s d#0 ]% jt # a hopeless stupor. N 0_;accidentaly, just made,groprietorS ++Tiquor)premises,qcely fl3  public pulse, tremendou)1the 2 wa5qa lucid%Rrval,lasubjecta asked--dimly 7" worst-- W.! Thd sinceaEill.p.h "stSup inr#bild-ey1vWhat? W)$Lm;lace has shut up. Lie dV! a&&+!me!" "Only02 meQing--&one--please! Was it Tom Sawyer TT burse>"Hush, h !Byou 5 must NOT talky'Bare very sick!zAn no5 bu1rF t powwow if i the gold. Sctreasu2gon Ugone MmJ$e bout? CuM +@TR.2houoD1dimu/7$3min^uF the wearrhey gavhh(|?&. o herself: "TNJh/poor wreck. find it! Pitysomebody !KR! Ah,j!PDAleftIThope ^5or strength either, to go on| E CHAPTER XXXI NOW to%1 toZ's shareapicnic*By trNathe murkyqSVr ompany, visit familiar !eI$--adubbedw rather over7ptive nam uch as "The Drawing-Room,"Cathedral," "Aladdin's Palace,"\so on+hide-and-seek fro^u b AengaBn itzeal until!exertionDrow a trifle Asomen6 a sinuous avenue hol+-/kf #tangled web-work of Idates, post-office addrU rmottoes~) g walls rescoed (in ). Still Uand talk:CscarcelyM3nowXK"ar!H! w+tq. They b2ownPK!anphHA she[.ed,yD   2 a am of watrickling over a ledgkQcarry k sedimenVuit, had Qslow-y 81gesm3= and ruffled Niagara in gleam5nd imperishabAone.%squeezed his smallP h in order to illuminate i q's gratAtion rit curta,]jnatural stairwaywas encloZ etween na9ce the ambi Ya r"bd him. respondehis call,1hey_ " aM-mark for future guid oqir quesAey wD, "waBthatXAinto depths ofL  2Bmark|g$ed?( of novelties to @!the upper worl. 3oneQa spa s", L1cei3muld"Rof sh[stalactit" land circuml.c7 [' H) 1kedG" OQadmir_ +1lef~bnumerous Aopen?0#toi artly bm Qbewit2 sp}Rbasint(dncrustsa frosta glitt crystals Amidsa| supported by rfantastic pillarsR# ?Q8"joof great katalagmCtogehe resul1eas  Q-dripqenturies. UnIZaof vast(ts of batfp themselvwaousand#qa bunch(s+3urb flockings 4 byrs, sque"and darting f  FCkneww4the danger%isqconduct'#'snd hurried herthe first kDffern qoo soon)Q a ba#Duck gGmits wing ,ugitives plungnevery newr#ag!atRb got r5the perilous 7 ubterranean lake,,a stret?its dim 3way !it@ p!lo2shaQrHe wantLexplore its b;,0t conclur!habe best to sit#Ast a9TR. NowO1timbe deepA lai&Rlammygb spiri@*Why, I didn't ,it seems1so M gaI hearY!ot+:m bthink,#, 9Hqdown beLhem--and:!n'=Qw howK/north, or sou AeastQwhichit is. W8Dn't >bm0Cweek9!ye"qwas plaT"at cf 2 beAthei8 3dleAnot cyet. Aqime aft"isZ< P CR--Tom qgo softlo for dripp`BaterZ3 aMf satR Bothcruelly tired, ye CssMfuld go 73 .Tom dissenD F2not>!st8D !ey'2 fae-bin froPBthemTrclay. Toon busy;G'1aid* 7Atimeh^broke the:AI am DAungr5J!me!!of . "Do you remembP"?"4he.Zbalmost1d|'s our wedding-cakeMSYes--!asTQas a 6li"goaI saveA&"us to dream onyF1way$n-up people do'll be ourSS"pp<Q sentP6  Bdivi#Re cakw 3 atT2appetite,Tom nibbled a:amoietys abunda"co"RfinisfQ with. By-and-byGtey move on 'yilent a mom"qThen he:z1can/ rit if In1you k#?"8'4pal}`.Qnw 1stamB!er Bre's ink. Thatw " iClast6 ! gave loos)S&il#diA{to comfor$ `$AtU!C"?")y'll miss uKChunt4rwill! Cl"!ithey're hun Ror us,laDare.Bhen $S"Whby get o the boatHM#itbe dark then--enotice w/1n'tnbIaanywayNr mother8you"bthey got q." A fBened "inT"brfSSsenseRe sawh made a blunderw% _hs2hat08! Tebecame$ndO uful. In a new burst of grief21 sh  ^ g"ingQstruc@s also--QCR:half spent before Mrs. Thatcher discov M""at/Harper's. 2 GR !biqno doub2:)Bwas a !on/M $on1it; }!%esso hideouswbat he 2$itG!waa5ger1torX,K [/s A portio0h z was left;Q Band ,.~dhungriD poor morsel of food whetted desir c : "SH! DiuAthat 2othyV " aq like the faintest, far-off. InstantlAanswYul|/d M)Uhand,@"*gr7 corridorG0s4. P  s(R ;.BV%Rappar a BnearU DthemdTom; "coming! Come"-- b now!"54joy,rprisone overwhelmFT2spe[ %moTswarmingfrantic half-clad pT, whowA, "T2Vut! t F " Tin panChorn 6addAdin,#Qpopul massed g}*!to ver, met=in an open carriage%"byaitizendrongedA it, joined itsWRmarchswept magnific? Q main et roaring huzzah* !was illuminated;~Pb;ar3est(t!tt w0Cever_ 2Dur%re firsthour a processars fil rough Judge-'s house,f<n"sa+,ejsqueezedt'", to speak butn't--and dr out rainiY"rs veK& c1ppi% romplete nearly so5[ a messe AdispSdkH#2cav2!ldv"!orL 1usbNTom lay 0aa sofaXWasuditory71him=1tol~A his!ofwonderful adjB, puR+"inAstri1add adorn it1"al JCudescriptOahow he %tent on Bexpel;7'Btwo Fs!as0* ARa thi^aullest4tchM3wasT"to he glimpsed aD speh6Clook*A day ;"2lin Oit, pushedshouldersa small hol1sawbroad Mississippi ro by! And if it5 F0Rappen#beVhU@ !se* 2at %oft/d[ %4rore! Hec7for/I%j @ @"imoAo fr.r$such stuff, $  &# w Sto diR~?ɆU laboher and convincg %"hoe@Q died1joy A she  actually>lueG he >1wayI& !anbn help2 ou?gAat t]for gladness+some men a8Qskiff cTom haI!em G33con rddidn'tE=qild talfirst, "#,"Dahey, "Q"$re]2les> bhWavalley cave is in" n m aboard, rowFa""gam supperqGthem rest G 1two4hreDdarkn.Fhome. B!day-dawn,=q handfu% Ahim Rtrackg,5R+twine clewyctrung +sformed A. T+# }BtoiluPi~Rbe sh3'ffA9s#Foon " y bedriddenFf}5and~to grow mo7 QBwornP ><2got,MV, on e"wa- {a"as  `"di8her room1Sun34she$ash1hadT'edk1wasaillnes#$omi of Huck's sickm Rto seoAbut be admitDthe bedroom; neit5- Uhe onB or H-x-bwas wam8; s introduce no exciQtopicL Widow Douglas staye1thaKaobeyed/Ahome? the Cardiff Hill event; alsoDthe "ragged man's" bod-%  ;6 erry-landing2had7Adrow&\trying to , perhaps. About a fortiVrescu E, he a visit:yi#plGrong enough!toc2Tom'Aintel:.., A waswm,t " ome friend4Tom$2ing>2oneW him ironicsqn't lik%!goHRy10he thoughqRn't mqO said: "Well,1others jusuQyou, )3I'v| ast doubt.)Ave t3caraat. NoAwill !atA anyH*)*Because Iits big do $atb boiler ironP weeks agoriple-lockedO"goTbkeys."tjite as a sheet.1at' matter, boy! H,Arun,qbody! F=aa glasL1!" "* gba!!thJface. "Aqall right. W1a M#Oh,'[cave!vXIII WITHIN a fewj2new1spr.%b dozen b-loads3nq @!to McDougal'sE1boatll fill#pak"s,5 CSawy[deDD bor4. -bbwas un4,%rrrowfulFeCelf sqdim twi xD lay^1ed )@,)"hiQ closrthe cra} "thif his longing f+dfixed,>clatest,,s cheer CfreeQcoutsidwas touchedd v-tick--a dessertspoonVZ2fou&J3was fallingsPyramids' Bnew;Troy fell#this of Rome7Claid(bChristtrucifiethe Conqueror creat British empireJolumbus sailEqmassacrqLexingtons"news." K2now3ill=4be #whBthesy3gU"ll\Bsunk2then| 3of ,w "raCw;} ]c thickof oblivion. Hoa purpos Aa mi=? Did thisR pati$d!fi ousand yearsready forD2flihuman insect's need?has it another important object to accomplish  xcome? No .Band 2hap alf-bree1out ^>Qprice8drops, bu3a(e !t patheticslow-droppVBater@!hey8e1seeb!< .b's cupC6Ts firde list2bcavernmnQvels; 4b" cannot rival i 4xKn,VB BcaveI flocked in boatsfwagons|3towAfromthe farm1 hamletsseven miles|I >1ugh%irYSrall sorAprov~NsUO/3hadN! as satisfactory a%. funeral y"av&1 ha Y%is5Ir*Bgrow[#oni#agovernIrcpardon5k qlargelyT2ed;Qqtearfuleloquent meet<$he#a committeJCsappt!apBo inrRF%1ingjSwail timplore*be a mercis trample $ut| Gfoot/h0"tokfive citizenwt&+idat? If. ASataC Cselfe$/!ofl)SlingsRto scribblir names-a tear on itLir permans impair Rleaky{Q-work"2TomAvHuck to& gave anRtalk.3!haw1rneQ aboum'the Welshmant, !is}Yq>s!? old him; R  5he TS talk2now's face saddenedw bI knowJit is. You got5QNo. 233 anbut whiskeytold me itAyou;aI justp must 'a' ben ]usoon as\'fA bus|"em8q hadn'tt)ney becuzdl!go!me ! w Dand aif you!musdB els's alwaysG4we';uget holT swag, Huck, I-It-keeper. YOUF -" I"DD.mI D1youHAto w   yes! Why, it seems!ag#8> CI folleredK-YOU foll1him2Yes]2youqcmum. ISS"'s;Q2himI don't want 'em soV Bon m me mean 6s. If itpben for me he'5V ain Tex@&w,.ns entire+%in-5Aonly* Ofit before.lp:,'!ba@ main question, "whoever nipp "in(, --anyways it's a g.afor us;G wasn't n!;Bat!"Lphis comradekeenly. "Tom,agot onO twQagainti1 cave!" cblazed. "SayM FgainT*"Tom--hone 1junf--is it funV!strEarnest;!--^$as# f ! ILlife. WiF#go"reAhelpZRit ounsI bet IxE2 ifwCRe can5 ouV  6"doDwith dlittleBatroubl the worl?aGood aat! What makesRthinkoney's--2you;rtill wef!re#we1mit I'll aSto giVqmy drum71&Cq I will0jxGT" "A!--va whiz. [!do1say "Ri$w,say it. Are*4IWaPave? I ben o-cpins a,"oradays, tbut I caKlk more'n a "--IAI$.">q G$qanybodyRm 1go,1^Qmight,Drt cK]  N ; ,Gri.bskiff.&2flo] ["re I'll pull itj_by myself A neeturn yourq$Q over2Lw2artA offm@B. We"bT32eatour pipes bag or two T%kite-stru ese new-fp!thA ycall lucifer m+rs. I te, "'s1imetbshed I2omeD" Aqaafter the boys borU&) #a W B whoU Cbsen(got undec^were sev` below "Cave H%," R: "NNis bluff herJ$s!Balik d5--no houses, no wood-yards, busheRO"ee5whi4 Rup yok#'s4 landslide? Aat'sof my marks. We' aashore.yG97inU're a-sta#8'6ahole I bout of~Qa fispole. See#4can.Biplace abou$P proudly mar"a clump of sumachncc: "Heare! Look at i;athe snuggesDis country9 "ll2Drwanting/ a robberrknew I'rto have1ng 3thi1o run acros]vAther!ve1it :&2'llit quiet,1let< K:aBen RoU1Cin--*$ o@ be a GangC #lsj* any styl it. Tom Sawyer'sA:1sou$plendid,L?  "it3doe And who'c1rob/aOh, mo6. Waylay people--W$!lyV2wayRnd ki "No-@Q. Hivm# t4y26a ransomUeWhat'sCMoneg3makR<y can, off'$ir{ b; and you've kep.mqit ain'2!seV2. T!enkway. Onlyb women1shu`9 2men5Cm. T5Fb beautqnd rich awfully scaredgt"irI!es5sZStake t|+"nd4pol7y!3 as3 ass --you'llMany book. cto lovXfter they,m s a week y stop cr!eRto le'i4dro Ay'd  { Raroun2com9. It's so insy real bully' $ Ibdbetter'n a piratQC"YesF&^7way Cit's6"!toQQccircus\!at{@y+ %1andaboys ew)#ho\  $ l0Qy toi#*a7tunnel, then madir spliced 1 fadK$a on. A&E z'%pr)Tom felt ams quiver him. HeQCragm> -wick pexSon a oC cla$De wa; t2ox*_ d flame struggl)AexpiQTf!ga4 o whispers,!foS-d gloommcoppresBirit yYBpres:ar 0LQuntilE reaAG,Wndles%rhe factx not really a, BpiceLa steep DhillFirty feet highW @eW+2Now@ AshowY.  Ae he+sa aloft+` sNAorne7ban. Doi!ee? There--0big rock over$ S--donKp}3TomCqa CROSS2NOWZ '{ r Number Two? 'UNDER THE2,' hey?  2's eI saw &# p`+r stared Qe mys Qign afB 6R shaky voice:qless gi} " o QWhat!>treasureVRYes--6it.'s ghost is  ere, certain."B 81, nKB. It Q ha'nk8Qhe di,Away /%2mou!Vave--z ChereS \wouldy#ngkJ 4"ofV #so & &omi3feaX5. Misgivm!ga+d}CR mind 7Lc him--)ym$Sfools m@of ourselves! & a 8|; Z!a = !R poin`#wen1had)teffect.I6_"atA #so/EluckxQthat {7 isJ VpS AhuntG4box5wen77c -ink of fetc4theBbagsFS@B1soog oys tookr1 tofm a rock. qw less w!#gue*<,Q2<  `3'reOEickswhen we go to robbingNSe tim hold our orgieCsre, too ful snug9 ) 0CW@ bI dono P%;#ofT% wWCto hem,] /"ing!a Btime getting late, chungry`We'll eat0bUwe gec6y Temerg4/ 0ed warily f 5oast clear!weZbon lun$in ! Ac sun d#Bowar[Rhoriz] Ay pun  kimmed uDe@KR2wil1chai 91ilyZ7 alandedI3tlyd4dar7c"!id!in 1lof the widow's woodshedrAI'll.3 up*ev1 it(Upa?!unna!ou"od!.#it"it=be safe. Jus 3lay\-  Atuff1 I nd hook Benny Taylor'swagon; Iqbe gone!"nuHe disappear#re agon, putcBtwo Rsacks!"itA"w"ld,Qon to!tarted off, dragging7rgo'|h+"'sh &tgay9q fy1 on: Pp~ allo, whop  nLWGood!1me,, !ar&Gpingy*waiting. Hhurry up, trot ahead--Ahaul~Vyou. qnot as b as it4# be. Got b;in it?--orQmetalO+4tal2Tomjudged so9 1boyGthis townAtake0$%sol away1imeNing up six bits' woraold irNS sellh foundry thaz3y w; 8wic'$at6 work. But that's:4Fnatux ",  '!"!wa1to [$Ch#wa$ever mind; !n&% !E'1uckGRf=hension--for heub} falsely accus; r. Jones, we haven't!Udoing Rlaugh!'-,ymy boy.i that. Ain'bgDgood+%Ye_"sh"nA &B to #yw%"n.-(n,%to be afraid for?%is+J3not+qly answ"!inq's slow$ ~1S,;into Mrs.# dXeroom. 3 le nae doorz3gwas grandlyn1bod4tof any consequenceu2&~ ThatchersQkB Har3the!es, Aunt Polly, Sid, Mac he minister3beditor-qa great0&)?all dressX bAThe a recei;<RBartiJdany onP#we!iv such loP Dare cov Bwith:and. 2 bl[ rcrimson rhumiliaUNHv u at TomFAsuffhalf as muchQboys "however. Mr. Bn't at home, yet, so I gave him up;5$astumbl2anda Qat myG"br "Bin a(0!An1B did3Sv 1. "TyNr." She cto a bedchanRNow washI% y. Here arnew suit$ clothes --shirts, socks, .UCy're+A--nobthanks*&--b! And IY%Bz y'll fit boyou. Get Dthem await--Bdown 1youRslick .3n s \rV HUCKD! "we can slope, ifu'Ra rop" high fro"Shucks!D d|%IQrthat kiUfa crowd.,^(8 athere,a"|&4! I"an!miRA a bX'Scare Q" Silm .vhe, "auntie has been  afternoon. Mary(your Sundayb readyU 7aen fre  . baAthisus qclay, o;ra)Mr. Siddy jist 'tend toT own busiO#'sis blow-nb`It's one2#atx1havtime it'sF 1andl sons, on=uw"Vcrape they helpej9&of4'Rsay--h, 21, i yk+wK  Fold 2is to try toq#_ J( C1to-,overheard himvbto-dayvas a secre"B it' lRof a (XE RknowsSL##1allf!trro let oz!doVQwas bqHuck sh !be!--xn't geta yG1outAknowS"AwhatA'zAtracYAbbero'V  a  BovercurprisQ#AI be4 drop pretty flatWbchuckl aa verygEe aatisfiZy. "Sid, ib2tol3Oh,:Qwho i# . SOMEBODY told--3 @ZJl_ Dpers:Cmean:R to d XI7<x !you'd 'a' sne sn9EtoldZ)0)Tdo an{21an !y&~mo_Tp(+J >  cones. X$nn:N  says"--Dcuffed Sid's {i  0k8q"Now go"if2arenQto-moFit!" Som Autes'GSguest a WD-tab[$ua dozen@/"pr!upittle side;F1e sixQoom, {t1at r vAbproperl Amadev4 speech, iY!!heOkNHB honPQF [T was Dwhose modesty-- A: fo)sHe spru+{a'Er adventu finest dramatic mann_ master ofDthe B it !onJs largelyFerfe8 as clamorousNeffusivechappier K+amstanc  &, ( air show of astonishment,AheapF compliment2 so: ntude upon)(a he al/Rforgoanearlyv l܎K!Amfor%this new2 K :k set up as a targeh  \gaze laudations <"sh<2giv s a homesher rooave him educated;Rcs-Fuld spar2 sAtartFi  \'s chancrcome. H#F32uck"2 ne's rich." Noa heavy strain2the9 tmpany kept baBe du E:2aryis pleasant jos5DsilearawkwardObroke it@(AMayb. cbut he0!lo it. Oh, you%n't smile--  1eY;&a 'tTom ran Bdoor1looked at eacha perplexbterestuinquiringly a_ Ttongue-ti* #ls Tom?"P. "He--well - any making at boy out. I(<4Tom}/,q#Dggli{Eeigh,2 di"afinishsentenceCpourU1masyellow coQ the C^Cqwhat dih ? Half of FRmine! spectacl1 general{way. All gazed, nwpoke for a momentn a unanimous :.n explan  #1fur5i nd he did^B tal!bumful of _,ca scarc!n rruptiony!tok the char/its flow|che had"edAJoneM)d: I,x^Jf#%isP2it BamoupC nowone makeFBsingy), I'm wilbto allhT3was[3sumt"edRG over twelve thousand dollarsr-!as+ 7 [Qaresentever seenl`e time before, "  Q N"ho1 worth consido7av,tyaV THEer may rest Aaj's windfall33$a j4tirDpoor(vof St. o. So vast a sum, in actual cash, seemed nexincrediblejqtalked , gloated0rified, until thOs' mTJdtotter&2*'e unhealthy excite "haunted" housq 2 anneighboring villzwas dissected, plank by U3oun1 duand ransafor hidden treasu Qnot b=st men--0 grave, unromantic menWmH1Tom >Q cour2adm(gz1qnot abl|arememb~2at 4bremarkLqpossessJ&};3now1say0Twere dBrepe 4didvrsomehow regardedv8Aableyidently lo{5power of doV'2nd r common !s;5#ovir past historr!up X v2ar " of conspicuous originalityto paper published biographical sketcheNt.1 # p>#'s !ousix per cent.dJudge " lt's request. Each lad had an incBnow, was simply prodigious--a9D-dayC8Ayear7?2jus  got --no, hpromised--MrcollectD Ha quarter a7 board, lodgd school a <^1ose  be daysF 2 hiBwashbrmatter.  ,@RopiniR 8no 3boy!goz daughtPAcavepqn Beckyd@ 1fatzwin strictCw!ceA TomAtake&a whippt6  dy2isiFv  Cplea,!ceK4thei3lie-w!olorder to shi*&at!hemo8own3saiTaq outburh$atyBa nod !ou<,5magz lie--a litaworthyzaold up-2hea-Rmarch1]breast to George WaBton's lauded TruthU"ratchet!mQ 7ghtzU bso talSso superb wR walk4 fl qstamped\AfootdVv!2Shec:straight of1tol#/it"op& 1seexqlawyer  soldier some day0look to i"T#!AdmitkY National Military AcademRafter(Qraine!es  9[Amigh9'Ieither care both. Finn's w0 qsthe fac#now undeQ_ Douglas' protec introduced him)"society--no2' it, hurluis suffer%1mornj1R bear?servants1cle 1d naHQcombeC1 br hCbeddly in unsympathet3ets2ad 3e[ spot or stx~uld pres/2earQknow yK$!haE#eaba knifufork; h%use napkin, cupXplate&QlearndWbook,@go to church2stalk so "lyaspeechT become insipid in hisX; whithersoXees"edC2bar ashackl civiliz;B shuiQbound1han foot. He bravely b4is miser|1ree!thTLSe day up missFor forty-e\Qhours^g! hO j2himw2in Qdistress. The cS profoundoncerned;~7u E %eyF- @1forqbody. EThird V)r wiselyPp*$Qamong old empty hogsheads down*]AbandU#sl-T p'inQm he $rrefugeeL had slepor breakfastoB stolen odd61end Bfoodbwas ly<f in comfort969"ipwas unkempt, unM1cla old ruin of +,had madepicturesqueRays ws01frea happy[S routvBout,"his"*been causing,s 3urg=Qto go gr's face its tranquilv took a melancholy cas63RDon't X CI'vey #itwT work6"T;"#"it:~U 2to :)d("ly_&7#them waysA!mex!up% / Bsameq 7+9Awashy comb mLo thunder0w&let me sleepJ/a; I go61wea[m blamed cloth!atA smo?" m#'dg1seeany air git A'em,Show; !y'1 rotten ni,a=!et, nor lay^ croll a@nywher's; I hai"liD cellar-doErit 'pea b A  and swea q--I hatm!m Cy sermons!Aketc xK,[chaw.Qshoes$w eats by a bell1goeybed by fits up!--VK's so awful reg'lar)dy!it_(,>#dvhat way, Huck(&qmake no differI`Qybodyq STAND &3t's1 ti so. And grub como easy--I# t{!esvittles,}3askAa-fi 1; I  in a-swimming--dern'd if{AQ1do 6t". H!I'42 to"sodn't no(#--. OuRattic"ipRSwhileA daym1git!st"my , or I'd a died, TomnKBAmokeu y?5Bgapeqstretch Q scra before folks--" [The+a spasm ofsial irrit and injury]--"And dad fq"itaprayedNDime!A see, a woman! I HAD1ove2--I yUbesidHZ5's $Copen_<S$it%I G!st"QHAT, QLooky%,0S rich@what it's crack); Bworr  9 2a-wwas dead <2. N7%seBsuitis bar'l %shake 'emmc>B got into%isAif in't 'a' ben Kmoney; ntake my sh@&Syour'gimme a ten-centtimes--not manyX#s,K_# Ra derR2'th's tollable hyx4you$qbeg offSQidderv"OhK3d6%Rt. 'TBfair if you'll try^;B!a UQ longI*e $tok<Like it! Yes--bay I'd&a hot stovAI was(!itcLC. No7Brichi4liv m cussed y_Bs. I6oodv  Rf  I'll stictoo. BlamBall!QSas we3gun_1a c*"ll+AfixeEArob,p&olishness has  k"up5pil~x1sawx opportuni%"CDhereHECUevYnturning 'qNo! Oh, -licks; ara!qin real3-wood earnest)J+CbR'm siV-?5But<l)#qgang ifarespec5R's jo3h!!C"inq Didn't[!go~a piraterYes, bu%'sRt. A 7 zfAgh-ti7"a NQ is--rgeneral~A. InTr!ri 6  Qup inQnobilRdukes03uchw,! aS2lwme? YouhC  A youP *nVWOULD+B" "wR%,tI DON'TR--but(vpeople say? Why 'd say, 'Mph! V#!  low characters in it!' TCU+ {h+`$t*#so , engaged%Tental"#e. Finally h# Rll go}aba monttC!nd1if  `3it,49XRme b't>%Q gang e_b, it'sQz! Coxo8X`2and G>Toh# a[oEWill/!--yg2? Tggood. If sheUt"ofroughestK"s,@qprivate-Dcussdcrowd ror bust] Astar/4NCturn$s? 3right offBB@Atogem"avQiniti  0Qmaybe(H(Lj;+W6t$12Bto sn9Cone [+ O#te rgang's 8+sd nNre choppl o flinder qkill an 2 anV his famiWhurtsX%ay9/e3y g8,!_3E bet it is3 "at1ing Abe dt midnightthe lonesom|3est@ you can find--a ha'nted " ib:-Bll rNB3up M#yw{(socyou've3 on a coffi 1sigh with bloodOt)Bsome RLIKE!frmillion )X!ieh n 8 s QidderAR I ro 8#gi% acr of aRLbody tal('-&itD bu+!sn!,wet." CONCLUSION SO endeth schronicP$G strictly a}!BOY, it kAstop ;Sstoryz!nofEmuch)p"wi becoming ^3MANone writes a!! a Sgrown*Q, he O4A exarto stopOB is,a marriage) iof juveniles, he W can. Mosgyrperform still liveare prospc2Som.it may seem ZQke upzyounger ones agaiM9 1sor"meAwomey turned@krRit wiwRwisesyOto reveaH&Rat pacQtheirDs at'4. Pby David Widge]previous ediwas updat2Jose Menendez'>  THE ADVENTURES OF TOM SAWYER0 /BY# MARK TWAIN' (Samuel Langhorne Clemens)P R E F A C E MOSTW%e 1s recordw areally occurred;nr two were experienc6 myb!rObose of"wh7 ]#3mat7$inY Finn is drawn from life; Q also$an individual$is a combi,Ybistics #re_whom I knewSabelong t.Sosite of architecture. The oddK!!stzqs touch}"onDall prevalentchildren!bslaves5e Wpwe period1is ay, thirty osAty y ago. Although my book iaGended mainly@ Athe qtainmen1boy7 girls, I!7#ill not be shunni "7$at;d, for vmy plan<"tooo0ly remind adul0 they onceathemselve^ 1of (rhey fel aalked,}Rqueer89s=Gimes 4. z!dUTHOR. HARTFORD, 1876TT O M S A W Y E RI "TOM!" No answ& g4iat boy, I wonder? You Rld lady pul'"!eratacles|$!ov #emcthe ro0rn she pm:&ut"m/seldom or +rTHROUGHhrfor so WJj!asyIher state pairA3 pr8V2her",Qbuilt3"style," not service--4'!se+raetove-lidsUs well. She looked 2z"&mo68!aiK1Qt fie0673oudP;the furniturUhear:e IQ aet holI1you A--" 2="by AtimewVnding punchingNL%dre broomj!soGdneededE2to punctuat Q!esBresurrected no f B catiJ6"diz!ea!1wenthe openDA andUiRtm?he tomato vin~"jimpson" weedsB constitb the garden. No Tom. S AliftWmavoice  angle calculfor distanc1 sh : "Y-o-u-T w!slTnoiseU"h42  i to seize al2boye slack of his  aand ar?Qhis fwA. "2! IE 'a'closet. Who!(.Pb?" "N  1! LI!at yourU8(Qsr mouthb!ISa truckXIk?-1aun. Dk^3USjam--FewFWAI'vet" dk"leGA jam@e I'd skin you. Hand me switch.# h.i d air--Sl was desperate-- "My Bbehia hatesB{5 S else#'ve GOT to doLIrhim, orbu!ilaTom di>-eidFAgood02. H  back home barely in seaso}help Jim small colored1sawS9-day's wo"likindlingssupper--at le6e{n:"to~=8hiscto Jim"Jithree-fourtht~$rk. Tom's!br( (or rather half-Q) Sid!al0Awith A(piccup chips),Z ca quieH1andE,%noDous,VBsome* While Lstealing sugar aQ offe{X7C askw+questions/ Ewere1gui1nd deep--for Bwantxtrap him6damagingments. Like ;pI6-hearted souls (1was pet vanityAlievA `4endowed with a t@ 1arkmysterious diplomacy0qhe loveacontemn0xmost transparent d׏ as marvel[low cunning. Sai u: "Tom1midQ warmR, warn't it8 BYes'OPowerful1'u "wa n(FAA bim a?Ae shvTom--a togL#unr.9;suspicion. H8dL93facKK!ld aQ. So [ ?SNo'm-ynot very mx =1rea+oY Sshirta#Bu } 1tooJ though." A-Qflatt hO7rreflects2;hy-2hir1dry!ny Bknow/*s8!hay Fher Glqin spit/1herC whe wind lay, I ZqforestajCwhat )next move: "S]us pumped on eads--mine's damp yet. See?" 88"ex:Uthinkoverlook(v circumstantial evidenc!mis=a 1. Tya new ins"5ion^ ho undo yourrcollar =bI sewe to pump on/Qhead,3you? Unbuttsjacket!#sh#of\2fac1Aopen]s@a. His qas secujQ. "B1! W Ago ' #I'11sur'#edQ A 8bee  QI forg(y*. you're a kina singed c"s --better': . THIS timu Sahalf sV*her sagacitymiscarried,3gla?ATom i3Winto obedient conductconce. But SidneyIB3you5hisith white thread, but Qblack5BWhy,OB sew8r! Tom!" rnot waitQt. As4ent>w3o85bSiddy, 2licfk abI|afe plac/nrwo larg22les "A wer#us.+sthe lapd6them--on^  D3theHpJDShe'D"anoticeQit ha_'for Sid. Conf6it! she sews]&_ &I wish to geeminy sstick to t'other--Akeep!run of 'emsR I beI'll lamX qearn hi4!Hene Model Boye villaghkAhe m&1boyOS well--and loatim. Withins, or even less, M1tenG-As. NQcause sV1onePR heavV.Bbittj2him a man's ow_aTand p 1bd !emgAdrov% mSb)y25!--ras men's misf+eiaexcite!of. This newwas a valupSveltyP1stlojust acquiredb negrohto pract5Pundisturbed. It conma peculiar bird-lik5, a Aliqu wrble, pW  &#he9Lh(Droof at short 5valAmids@@Busicxreader probablyEbs how !it.4ra boy. Dilige attention soon gave 8#kn{7he strodeFVtreet full of harmon1his gratitud 0^ an astronomer feels who hasg planet--no doubtlqfar as Eg, deep, unalloyedRs concerned,advantagFAwithT!boO t$XComerRsumme4ElongJNqBark,2 P"ly Tom chel2!hiustle. A stranger!hi boy a shader'himself. A new-cAJaA ageither sexXan impressive curiosiPJdshabby\WJ!Thy{`Qdress\"oo  on a week-A<FFa astou B cap dainty ,W- ced bluL3b round%5was#Rnatty0"sohis pantaloons2had;82 on#iGonly Fri"He!wo necktie, a br  aribbon0had a cit#KR air |bat ate&avitals B mor1staUIsplendid}1hig!oshis finerUhabbi E outfit seemed d3crow. N]boy spokeU,2oneEa--but Nsidewise, inrcle; theyArface toaand ey!ey#X - U!" "D3to see you try i,  8$doN> ,L.-'Y?1CanACan'A "An>\!paMp ! Aname"q'Tisn't5"of^,Well I 'low^ MAKE it my0)why don't youhI\2 sa}01ill3qMuch--mAMUCHrb" "Oh^ 2'rey smart, DON'Tm# I)l one hand:n!meIr DO it? You SAY aI WILLTyou fool~ "Oh yes--een whole familiesame fixqSmarty!| CSOME "Oh_a a hat+AR lump-8;Z[Bck it offqanybodyG61akeb!re suck eggsYda liarn %fighting.q and datake it up1AAw--aa walkXSSay--!meA morBsass@and bou1 rof~oOh, of COURSE+; then? What/ eSAYINGTx for? W>{EIt's XQfraidyxI AIN'TaYou ar7""I+A3/3eyiM1"sihaR eachm tCwereH  .XGet away Ahere"GoyourselfDI wo B"Sobstood,X Sa foo0d"as a bra' both shoving 2ainaglowertg1Q hate# nfget an a. Afte=Auggl ,Aoth <"hoy#flHmSrelax Jnx watchful caution|acowardca pup.1ellRig brozQthras'y3his44r finger.make himW 1toosI care forj{4? I;1a6big Be isUmore,hrow him'3at !T[Bothas imaginary.]$at's a li=DYOUR 2n'tAit s1rew6n ;G dus cbig toh<qFstepZ/y stand up. Ateal sheeFTz!w{ 1tepv-Dmptl N="sa$'dnow let's D crowd m;abetterZ{HSAIDh*--Wd[By jingo!Xtwo cents.jAtook1bro)QEpper>$ 1ockd cderisionRtruck*g0B. InF.QstantR boys1rol Aand 4ingdg3d6Acats3, 1pac"Rtuggetm A's hI 3nd fFs, punch3Qscrat"T's no,covered -#:'ry* confusion2for) ;the fog of baXcDTom %, seatedU!id1# p sts. "Holler 'nuff!"3 heaboy on%Rruggl1fre*Hcrying--.rom rage. dn. At last#go1 smwbed "'N"1up -)8jyou. Bny 1foo+Qnext  3Mqff brus6S2ustGsobbing, snuff5and1\Eally&Aback1sha1his;.1tenbhat he=a do to]the "next) 2ughout." ToTom respo0Rjeers"st7off in high feath as soon asI4was*(up a stone,2w i "hirbetweenhoulderss-\1ailran like an antelop_Qchase6 traitor{"Rthus ere he livednaa posia2gat2som9A, da the enemy toonly made2s a gond declined. %J2's and called 0 bad, vicious, vulgar&"ndc3[ m} Twent away;!he\ he "'lowed" to "lay"s'.g1gott>2ate#:2and$he climbutiously in r #unl an ambuscade,-Bpers4#Aunt;g"aw]2tat n her resolN 1 toT his %%2captivity3ard/became adamantine in its firmness. CHAPTER II SATURDAY mor;e,"&4Qworld#.and fresh/Qbrimm-1ith5P1wasng in every:(L" i>'!wa*RR issuQ rthe lip`Zcheer iniJfAa sp&tAstep locust-treQbloom bragranthe blossoms fill air. Cardiff Hill, beyona]ave it,B!grith vegeta!2lay (4farZ, to seem a Delec"Land, dreamy, reposefulinviting. 1ppe5e2alkAa bu| of whiteZ long-handl11ushcsurvey  1qll gladE2lefoand a deep melancholy settledAuponaspiritmrty yardsQoard k nine feet/s. Life c hollo7existence^Ba bu{1ASigh)Qhe di 2hisfpassed)Isopmost plank; rep the operB; di8Qgain;f8/ignificant qed streaqar-reac!co7'un8s"wntree-boxQ Jim 3skipping 5at va tin paiT singing Buffalo Gals. BrQwater (rwn pumpKRlwayshateful work inu"Seyes,Dq now itJ1not\k 1 so\dompanypump. White, mulatto/Qnegro! 9there wai'Qtheirqs, rest?trading plays, quarren $, g, skylarking. And h"al?Awas only a hundRgnd fif!!f,/3got)  under an hour. "ev an somesG!lyto go after him. U1Say, I'll fetcp'7'll`"soJim shook :wq, Mars #NOle missis, she tol|IBgo an' g<s3an'F#op ' roun' wif_61sayZQspec'zEAgwingAax m ,rs5$an' 'tend to my ownQ--sheed SHE'D+f to de/5in'2you Cwhatt!id#. SSthe w talks. Gimm $--qbe gonerC a a\!R. SHE ever knowI9 she'd take)Qtar dd me. 'Deed2wou.q"SHE! S ver licks--whacks 'e}URimble1whosE ,p5C }w%1 awP1but6hurt--any#it!if$Gcry.you a marvel" aKs alley!Abega.waver. "%!Di=bully taQMy! Da5Fb, I teQ! But Tom I's" 'fraid aissis--" "And besides,R will#shAmy s,^o"Ji- human--t> Qttrac  "ooHAfor iaHe put( *a"ntZebsorbing!Qest w. 4andS being unwR; V2s fZ3dowI k!ApailJg3rea+Awas "waCvigo *retiringcQield 7a slipperZ {and triumphEeye.''s energyeAlastq}Tthink%!fuE 1had $ne$Sis daH"rrows multiplied. So~ 1fre!s #tra**!onL 2sor@2delXBd)Bb they J$a bof fun8%m2!to|)96verZcof it burn like fire%2hiscly wealt- q examin0 B--bitoys, marble trash; ;8 to buy an exchange of WORKX* 7s,*an hour of purk4domi#retraitened meansB "s qgave upoAidea r=1oys4 !rkN hopeless7- e Qm! No=  3than a great, ma1 8entC 6! >qtranqui. Ben Rog%v-spresentlnK boy, ofbwhose ridicule dreadingdb's gai the hop-skip-and-jump--prooj6is lis anticipa2!HeVM3ran appl1 gie1a la%melodious whoop, at vals, foljB by -toned ding-do,, a* amboat. As henhe slack}1spey"1ookhQmiddlU, leaned faro starboarderounded to ponderaborious pomp3/Oce--the Big Missouri (d| %;wdrawing"of 1boac capta9engine-bellbined, s!,o7 Qself  <own hurricane-deck the ordersQexecuAthemR1K, sir! Ting-a-linga!" The$way ran almos he drew up slowly towarq. "ShipToo backmsHis arm"gh^Atiff8xAidesZei mAstab%h Chow! ch-chow-wow! rQhand,"escribingly circlesC3 rePing a forty-'wheel. "Lg l-chow!" Thej5 e "to &RShead B0her! Letg*mslow! W-A! GeO ead-line! LIVELY nome--outd"- #t'Q#'t ! T~ t(hRstumpMQthe bA! StSy*age, now--l go! Donb 3thesH SH'T! S'tH'T!" (Suge-cocks)"on . R--paix9!, yDBen (n "Hi-YI! YOU'RE:ump, ain' nH 3hisPFouchI!eyan artistZ(!n vi\ gentle sweect&!suܙ"s $R rang4)alongsidv7  2mou!%er #e (n"tu1 k]! "Hello, old chap,M4gotTs, hey?"heeled suddenJn31it', Ben! IC9TnoticDSay--I'm goBa-swi, I am. DoQ wishacould? Aof c# you'd druther[ !--0 ?5? C)I (6(omR:d,#bi2at 6` ?` $hyIETHAT#umC \Aansw1carG ly: "Well, maybe it iU zI,$it suits Tom Sawyer dV1meaQ!le{`you LIKE!3Thep u}1mov^"? I(see why I oughtn'Gl-1. De$"get a chanW+# a fence every da}1hat(2thez-Q in aSlight!toAnibbApple2R swep daintily=forth--steI"ba<1notK effect--advAhere?there--critici=50--Ben wat2mov@1getm`!"ndp( bested, Ted. P 5 heTom, let MEf a littl _o consent1althis mind: "No--no--LBl"n'ly do, Ben. Y7'e,1's  particula.u a--righ eNQknow -G if C& I^3and. Yes, she's ;-bbe don[ careful; v"onmRthous Ftwo can do i?wayybNo--is6Hso? 1--ljust try. Only--I'd let YOUCas m:" "Ben, ., honest injun; but-D$nn!o s!1n'tAhim;7/!, "/Sid. Nowy` how I'm fixed? IfEa tacklKsb[C&Qhappe+"itOh, shucksbQ3as lgA youocK,#mySFN2.bafeardW3ALL Rareluct|ig @qalacrit1. Ah i4e  )erAb workeZ"sw>LA sun( #ed< 1 saa barrel7shade close by, danglQslegs, m^& aplanne! s0Iter of more innocBT33o ln6material;ed along :; they ca6BjeerArema2A. Bytime Ben\!faY'1out!ra1he $+Billy Fisher for a kit!good repair;1whe>out, Johnny Miller b in for a1Ir! a!ngw  uCso o, R hourHT hour8 afternoon>," a5poverty-stricken; !2was literally )3 in2. HhW"s r q mentioetwelveA par6 a jews-harp,*ece of blue bottle-gla}uOthrough, a spool cann2B key|u unlock1, a!mchalk, a ca decantU& tin soldiQcouplQtadposix fire-crack&r kitten only one eyJ61ass>knob, a dog-Asbno dogv3hanNvb, four1as of o C-peea dilapid)old window sash 1hadsa nice,G_2idlM#thq--plent40 \2encQthree coat! on it! If2n't9>9ut )"heT have bankrupted+Bvill)d2aidCmselR!itnot such a!,Yqall. HexA3dis8+ a great lawRuman |,1out5 ing it--namely, ."inD&Ra manzboy covet a} s !isG! n5ary;^ difficul vattain.U3! se philosop&)che wri ]x@A now comprehen>qat Work $isaatever dy is OBLIGEDj,<OPlay< not oblig# do. And 2helyIto under* :U1ruc artificial flowers orW_5ing"ad-mill is work, ten-pins or climMont Blanc amusement 3are2y gentlemen in Englho driveb-horseJ$nger-coaches tw}r thirty miles daily linummer, becaus@privilege costs themDablenQbut iOy"IK wages fo*XAturnh1ntoI3txsresign.oy mused at3ovea%ub?GQwhichRtakenC r Sworld`whheadquartersv[eport(sI TOM , ]q lkby an open {@leasant rearwBpartYwas bedroom, breakfast-s dining and library,|c balmy D air* stful quieeq odor o%Y@.rowsing murmur (AbeeshFeir effec!he AnoddfQver h"i "sh5n,%1but#caLdasleeplap. Her spectacl)1progQup onsAgrayA for-F1ty.%" 1Tomdeserted #ag&` !nda0 'iRpower p_repid wayN said: "Mayn't I$} yKCaunt&'ready? How mu Adone*AIt'sd.XCTom,ro me--I= bear itIb<u; it ISRF." dY1truxevidencezw uBsee LRrselfe a1uld^MDfind1perQ4C. ofAstat true. Whenfse entir*"ed1notelaborately QrecoaM!an!n aeak ad8ogw astonish 4was#unspeakable. S|bnever!m U's no^# i2canCwhenM2 %Ad to B." A!AdiluO!he)!liAby a, "But it#s seldoma aRI'm bsro say. go 'long$pl/Aryou get@3som i\BB, or(tan you." &awas sokbcome bSsplenSchiev1hattook him#th&tsE- choice appleQdelivit to him,C"ov cture upoBvaluNflavor a treatAo it uit came~ "siT9ugh virtuous effbsd: a happy Scriptur urish, he "hooked" bughnutn !kieand saw SidQstart%pHl2 stairwayll tck roomsecond floor. ClodsAhand$A thegC)waXmtwinkling y52d a #Si'a hail-stormx # ct$Allec+ surprised facultiess*arescueQ or s0+Bclod7tersonal<G} MAgonerSa gat3eneral t h&2too9iY$!usTit. HGrt peace+ /"SiWAcall"tt s black $6+n1rouC1skipQlock,hinto a muddy allaled byQ%s aunt's cow-stT4 He aly gotrly beyo  reach of capuQhasteR the public squ$1, wtwo "military"N!ie02boy"met for confliY AccorO qto prev#sappointt <G3 ofޢ these armies, Joe Harper (a bosom friend)<the otheruse two great commay ! dYSt conyb to fi!--DAbettIil2Rstill<ber frys !geon an eminence/Qconduield operations bysD aides-de-camp's army wX uvictory+ nd hard-f@ 1 ba# T were counprisoners 'drTterms rdisagre d7y $ay 03ed;X 4R fell?and march "ayhTom turned home slone. Q!as &3useJeff Thatch-1ved_saw a new girl e garden--a love^<blue-eyed creaturQ yellir plaite1two-tails, white summZd embroi  )JQettes fresh-crow2ero4without f^+a shot. A certain Amy Lawrenc2U2his6 !efoJa memory of  Gm 1 he#d to distr#; !rePdKQssion"dogi o + ~Aevant partialit pmonths win8bher; sTesseda week ago; $ <bappiesx Oroudest Rworld WQshort_e!inRinstactime ssgu a casual=)visit is dH"sh this new ange's furtiv -shqchim; tf Bpretq6 Aknow\4was %"show off" in 2sorabsurd boyish ways,# wBadmi%{Bkept is grotesque foolishnessome time;, by-and-by,  )s Adang) gymnastiche glancZ@!idy MC girl was we(xher wayO $upn r leanedq, griev5b+Roping! tarry yetblonger 1halA1 moO  Qsteps m]1warQ heav great sigh asp$Ar for threshold.#1his:! lI", Qhe toqa pansyG L ! ss): 3 bo)3rou\Uad with Tr twoY Aeyes=#haWCdown d as ifBsome of interest goat direction. P- he pick:&w#ry !ba! iO,aead tifar backSas hefrom side8aide, iO edged nearer B; finally his bare-#W3(liant toes)w 2e haBaway the treasu# OArnerb only minute--(v Rbutto$1 inhis jacket, nexheart--orstomach, possiblAnot 82pos<s anatomnot hypercriticaZByway1# 4ung#<nightfall,ing off," a16 2irl exhibite again, though Tom comfor$"im$ 3hop@Abeen>,*een awar&P  Bs. FX he strode home !H[[%advisions. Allasupper.cspirit"soCrunt won "what had #inV child." He tookÁod scoldrbout clB Sidp1seee!miY QleastQtriedIugar undGveryG"goknuckles raQ!foxc "Aundon't whackmhe takesQWell,/1torsRa bod 1way"do. You'd b9  bsugar ifq*watchingu sezckitche Xs immunity, l"gar-bowl--a sor&2glog2Tom/Fllnigh unbear_'s fingers6`Rowl d1LVbrokeFin ecstasies*JB (!he controlP#Rtongu!il5 toF Bpeak6!d,^P1in,18A sit0 bectly Lyshe askejimischief|u! tCrRbe noA!so+   !asefpet model "catch2 Heo brimful of exultR1 Thold Q rld lady #ba stood abovwreck discharging lightnings of wrath(#Y v, "Now iVm2A8zt gQspraw1on 2loo potent palm#ups!to($"keTom cried out: "Ho 1'erbelting ME for?--SiK it!faused,\vl1heapABut 1shes5her3she RUmf! you didn'ta lick amiss,)Wsome other audacious Iaz 9 ." Then her conscience reprgeqshe yeaato say'3 ki l;ashe ju - !beo4tru!a  Ae wr7T cipline forbadhs. So sh rsilence2d1bffairs av2rt.|1ulk# a W "ex chis woBknew3Qheartb Bas ojAkneen was morosely gratified b 1ous\)OAhangno signal take notice of nona3ingRR fell"no cthen, s& a film of tears~ahe ref recognition!pilsick unto deathbim besee}D one forgiving*u]cds facew rand die word unsaid. Ah,+Hs !el2? A bZK the river,  Qcurlsw9<8sore heart a .sEhrow 1ow 4earxfall like r4 (ps pray GoAgiveAbackG!bog\  , AabusY9[Rmore!k.blie thlsi02--a suffererP"se grief C*# e$so, as feelBwithAbathos se dreams,hto keep swall ,Qlike to choke03swaqEblur:, which overflow}xr winkedran down*l?XAose.| ba luxu'"hi:op17gsorrowXnot bear to have"ly'Lixrng deligh\ Brude0Cit; <too sacr/rcontact7Tso, pU,his cousin Ma31in,!EalivAe jo!sesB4hom+ an age-longbof oner aountry!go~in cloudBdark u"on|Munshine in at@1"wa B fars the accustom"1unt=?S` desolated"suwere ind9. A log rafAthe S invi%fQhe se!i on its outer edg Aempl+reary vast*iram, wis4Lw_ u rly be djQt oncs5 un6c1the&'routine devisWn9N*Y+Cflowt>got it out, rumple!ila 'Fily increais dismal felic) %HeFQ1pitu knew? WOrshe crym8! L! r%toRarms #ne  him? Or2she(!co1all (,1? Tuch an agony of pleasu ) ` tC and 1gai 6set it up in new!vaosTswore ithdbare. Vqhe rosei?NJAdepa4l A. Ahalf-past nine or ten o'clock hey 3alo+'street tothe Adored Unknown ;X{ `; no sound  3lisdVear; a c/qwas casa dull glowbthe cuCof aX"c-story/Q. Wascre? He climb,jCs stealthyf/ !thn qood und]#at j Aup aC#,ith emotion; Claid]$wn9#g bit, disposingpAuponp Rback,]ands clasphis breah41hiss wilted5*1thutdie--ou~ jyno shelter bomeles-C, no !lya to wie death-dampsR!ow8  2benvTinglyqmthe great3cams4SHE:!eeww4'E outvT glad/U,p4oh!A!hev Atear>poor, lifWform,=>Dsigh~1a ba youngE so rudely b:*Duntimely cut ? Aup, a maid-servant'cordant voice profan" holy calmqa delugAwater dren#rone martyr's5"s!BstraB hero sprang uAa relieving snort%awhiz aPa missil/vir, mingledHV"rm Qa curHBshiv1glal !smb 1vag rAv!e >Bshotvgloom. No!Q, as +all undressed for bZ  omission. CHAPTER IȷCsun 5!2QanquiT"ld]abeamed8D4'ful village~a benediY Breakfas, Aunt Pold family worship:cL2ega# ab built6up of solid cAScriptural quot/s, welded`%A a thin mortar of originality Bsummf  7she+a grim chapter xMosaic LawKaSinai.n Tom gird Qloinsto speakh2bto "geverses." Sidlhis lesson/"c beforAbentt his energies5 smemoriz\CfiveeAhe c$"8the Sermo!Mobecause 2uld.#noO, were shorter. Aalf an hourugeneralw!no;wn =Qraver) %olN'Bf hu-3 !iss3bus $Qng re%ions. Mary took<1booAhearPSrecitahe tri!|] Gog: "Bl!ar 1--a " "Poor"-- "Yes--poor; b025#In? :$ i/Ubthey--" "THEIRS BFor +. Lairs is[kingdom &MavenEy>_mourn&ShzS, H, A S, H--Oh, IO$"wh is!" "SHALL BOh, # fb shall-- *Y/ I 5iWHAT? Whyyou tell me,1?--do you w !! bmmean for?2youthick-heaRhing, I'm not tea[1youpyA1 do. You must32leaI75. D"be"buraged you'll manage it--f 2do,11Agive #ever so niceC, that's0#bo'"ll{1! Ws"TMary,K C+'.ueryou minMbsay it's,< AbYou be"sou%. Qtackl ;3" [did ""*2und double pressure of curiositprospective ga2 diA)2ithD he accomplished a shin SuccesQ gave  a brand-new "Barlow" knifqth twel2d aSRcentstZSnvulsGthatGVsysteL[ DDoundTrue, the scut any!buwas a "sure-enough" 5t  inconceivable grandeurSBat--lBWestern boys >A got N|a weapon1#qunterfeZ3a injur<3obmysterw] erhaps. Tomr˻to scarify82cupuR\ "it )ArrancCgin F dbureau" !ca\ qoff to  eSunday-school. FLrtin bas 8andmABsoap!he  3"oo21setM4n aRbench2; ta$ d+be soapeiy; sleeves; poured>& ,W=y~e'  " Ubegan?ace diligentlyFStowel|-g"oo&&3 re),5and2Now49lhashamesmustn'tVbad. Water wShurt c#"Tosa triflncerted. T=5sin was refillAthis3xO&ito'b, gathaf;/% ebig brGU9(hen nDboth eyes sh8Bd grC+t.[ , 1nor&testimony of sudsR>2ripT Aface mse emergf>x,fnot yet satisfactoryQclean territory* " a%Achinhis jaws,mask; bel_p4dis lin1 dark expan5unirrigated soil]Rsprea7,rin fronlAback  2himBnwhen sheY%dR4him$Ba maqa broth1adistin<Bolor)Aatur2haineatly brushe2its curls w]Ainto2intsymmetrical effect. [5!iv;w smoothL[3labdifficultQplastere AI]3qhead; f(] effemin71andBown  lith bitterness.] Thenr!go! aP1 ofF#cl%1Busedy##on Bs duvH!wo s> were simp1"ot%#clothes& "soJRat we qthe sizV brdrobe3D"put`"s" !!S; she+Qneat "/m,his vast shirt MG2ovem,soff and c V-QspeckSrtraw ha)1now#oed exceedWAimprcand un2abl":Yy as E as OOTa restraint e lgAm. H-"atU Q forgie"5!peZ61 cothem tho"ly/2tal s9Bthe 9rthem ouH2los:Stempem~z bm$o do ever  Dn't "doAMaryN&rsuasiveTPlease, Tom-- 3So &zhoes snarlingJ(son read9/hree children se3for "!latat Tom hd heart; but3andbere fo0!sSabbath`-from nin$Aten;B church service. Two  "ermon voluntarilV :2too!ger reas.TZ urch's high-backed, uncushi$BpewsU!~h4d persons r edific_bWSplain,'a sort of pifR6ard*kQon totia steeplB Tom droppe(ps2acc0a comrader]2ay,N,o)2a y*;aticket5Yesy'e'Agive:APieclickrish fish-hookX2LesExa'em." 5(0 ? W propertyGd@!tr=cMwhite alleysb  E6Tsmall+ #oro9forSsblue on(1way ,b boys Sy camwent on buyingz of various colors ten or fifteen minutes l !/ qqa swarm; #leg Rnoisy: irls, proceemoE!se &dAed a quarr84Airst5jAcameyQ teac a grave, elderly man,75QferedGny-'6>aTom pua boy's @ !inM 3;"was absorb% the boy  ;[aa pin w I boyk%8 hear him say "Ouch!"got a new reprimandJ 'csle clasWqof a pa --restless,!tr\Csome> Qthey to recite their@w%~am knewuverses /,!habe prompv8ll along. Howe)worried @2reward--in T blue,,q passagl"e '(;2pay#wo1 of  ation. TenuB equa#onc7$Tbe ex^qfor it;0Cyellow onep #enV> Wsqsuperin;"ntat1ly bound Bible (qforty cin those easy3s) SQpupil2 maH$!myKe* (the industaapplic+4 toeTthousand]H2 BDore? And yet Mary had 2two%is way--it the patie5!rk!^  oy of German parentage had wonRqor five3onc#ed i out stopp/{Gtraitmental facultiesyCtoo (haand he~+Abett {U idiodBat dth--a grievouC2he :"onpR occa$y company f(1 exbed it)  'y come out and "(b." OnlRolderts13Bkeep}Li]1tedRlong  to get a2[s6y*sse prizaa rarenoteworthy circumstancer32fuls?conspicuous for  ;AspotEyQlar'stQ4fir"a fresh amb/that often_')ed\weeks. It is{1s Tom's qstomachn 1rea 1ungo1for#.o. unquestion6-Sntire& hNPa1lonQglory,qthe ecl+!atcI rIn due K  &Rp in {e pulpit" a6d hymn-book inh)!nd cforefi"O(between its leave Frd atten0G  ! m09>y,4aryAspee  RGs asoEBas i ainevitAsheeTmusic&sq who stu'1forAplat<$ings a solo atn %!y,:Qneithen sa refer.0k. ThisN0fa slimEirty-five a sandy goate8Qhair;1ore 2iff!Cing-wE"Bsensa}!itenew hero ups C!on l Xtwo marvels to gazt#injbof oneBboysall eaten upenvy--but tb)est pangI-swho perstoo latDS themselv contribub athis hsplendor by trad01 to't wealth+bamasseelling whiteprivileges s]D2pis,Urthe dupa wily fraud, a guileful snakeRgrass !4was;ew 2Tomo"as%2eff superin"nt pump upI7!s;it lacke&wS-true gush< IQoor f' tinct taughZ-xzw not well bea]l  k4was.preposterou8 c!!hae)Q thou[!sh $al wisdom on@remises--a dozen ,#capacity,Rout a8. wBprou$glsH<T1Tom it in heL-ouldn't look. ShH 3n ss grain %"d;Ta dim suspicionbG(b--came P-! wnEd; a1`#glrld her ] +her heart brokMs jealouaangry,t'&rs3shebody. Tom G!of (Hhought). )asohis tongue,Qtied,J4 2rdl"quaked--part75cau awful greatnes rthe manGmain6H$ have likBfall00borship!ifyqLq1ark # ph an Tom'!ca9Rhim aC * sand ask!qhis nam?hwstammered, gaspe!goUout: "Tom." "Oh, no,QTom----" "Thomas'"Ah~'TI7!or\ it, maybe{'W well. But you've)one I daresay""llit to me,6Q you?1ellQ "an"Qother", ","'Walters, "5!fay sirX=n't forger mannerI Q--sir1it!B's ayvF . t, manly0 Q. TwoLverses is a  many--very,(.'2ou $can be sorryUQ*c you tOAAlearm( knowledge is worthchan an@1<3is pa; it's4#e  Dmen;V$^d3Qman yC$Alf, -5day1'llR,Y9ay, It' R <)1rec ;A1 ofDoyhood-- Gvmy dear-5tha^mU<  Jood ,L$en? H.)3 ga beautifulI*\d id elegant'"anH  for my own, always right brin"upA is |2you<{!~&take any mone^ose tZZindeeE1nown't mind t $ m+ "isB2 hylearned--no, I know --for we are4$of3boyG!. 1no vAknow2nam^r, es. Won'Lbtell u9the first3tha`!ap$Fed?"l1tuga_utton-ho sheepishblushed, nowz1his! fO'MAsankm ain himH_\ETAposshtc2sweb simplest (--why DIDH=ask him? Yet hBrt obligspeak up say: "Ad'1--d}#be!.L_hung fire."*$me\ady. "TF twoeDAVID AND GOLIAH!" Let us draI%cu3 rcharity tYsceneJV ABOUTQtcracked be2theu church ?R ring01epeople(1 ga||"mobsermon. childrenHA 5!e C C eoccupi5ith thei s, so as K{Kd. Aunt Polly zTom and472sataher--TomL%"d G8sleB2!ha9A be GrE9the{e seductive `AbsummerEs asQ crowd fil/"s: 1gedneedy postmast=!hosseen better days C may<"hiJ "ha$y3re,| 4 unmp#ieOejusticRpeacei widow Douglass, fair, smartQforty!ene,O2-he4Asoul well-to-do, her hill mansj only palactAChosp+and muchKmost lavish 't of fes,St. Petersburg [RboastAbentxQvener,3MajsMrs. Ward;  Riverson,bnew noaACance_1ther village, followRa tro8lawn-cla.ribbon-de!3 p-breakern#q clerks!owfa body;C had.G vestibule sucD!cane-heads, a circYb!wa! o !imcg admirers, ti Alast!ru ir gantlet; and/AcamedModel Boy, Willie MuffFs heedful carlQhis m5 asXere cut 2x ! b=tN,>#to, v1prisrmatrons(2ll vh !so0. qbesidesa"throw;3 Qm" so. His whit.kerchiefZhF#q pocket behind, as usual ons--accidentalN)noa!he 1ed ytas snobcongregapefully (: 'T1once, to warn laggard0straggler a solemn hush f p! <Q+vdbrokenBtitt=8and& choir is galler=GF!edthrough =conce adQY Pill-bred, but I rforgottgh!rea2. I !y [B agoV.I can scarcely rememb?_="itI kg1 in foreignj#"ry* minister & "ou3hym-1reaba relish, in a peculiar styleZeat part His voic on a medium key&Zasteadi:/i0% a"* rBbore1strY5umphasis topmost wor splunged8spring-board: Shall I be car-ri-ed to!sk !on flow'ry BEDS of ease, WhilstsyOIH sail thro' BLOODY seas? Hqregardeadful readKZt"sociables" h= #R>!to;r poetry,Cwhen32ughcqladies l3 up<3han let them fall helplesslyrir lapsc"wall"C!eynB1k\!irZ5s, u say, "Words cannot71 itfis tooV, TOO rtal earth." Aft 2hym~&Bsung2RevtSprague#' into a bulletinGuoff "notices"ge,qocietiej-1i#)o4 2st qstretch of doom--a queer custom#is vin America#cities, away x4)1 agAabunZnewspapers. Often3Eless, to justifm 1adi7l3Bhard")q get riu'ittprayed. -, r:bwent iIhtails: it pleadea 2rBttle),3rend:7=eip ' itself; ?y([State officersqUnited . ' 'C)s5A Pre.t_q Governm$poor sailors, tossed bK1rmyM ppressed millions groaningeel of European monan  A Ori5 despotism1sucDght 2tid?'rand yet-M"yehqee nor !to &alRheath)the far islB seaZaclosedW a su Twords!abmfind gra)RfavorV!seLm fertile ground, yie%Qime a?0Charv9good. AmenP!re 3a r(Q of d v8! cPy sat down whose historybook relates disQenjoyQB, he< Aendu}Qt--ifN1ven9J r  it; he kept v y a63 --Lp"gc#, qBzc of olvthe clergyman'ular rout}&VaiQtriflsRnew m3 terlardedear detected iWhole nature resen!considered adAs unqcoundre I |/B a fU'R lit  " bAew i#nMmaAtorthis spirit by calmly rubbing iti d8, embrac"eah,3armpz}& so vigorous7at eo$;part companyBbodyvthe slend9read of a neck61expto view; scra0Qits w rind leg'AsmooT !toCbodyK|been coat-;~,&le toilet as tranquib if it.)$E safe. As!ras soreEaitched@rab for iynot dare--}4iev3oulbe instantly destroyed 3did qg whileB was2 onhhVqsentenca curveTstealq.Cthe ra"Amen"r!hewas a prisonwar. His aunt bthe acmade him let it go rhis tex8droned along monoton an argumea%"sybmany aBb &byBnod 3y Wdealt in limit 2firMbrimstonSthinnpredestined& Eto a#so !2worA sav1)2Tom_&ag ;; $ % h2how:t#aseldom: Delseqhe disc MH"is!he8qreally {16forE*a grand and moving picJH"&+=world's hosts at the millennium*B !onc aamb sh"%liS[ , ,!eaAm G2hos 5les1mor/C theEspectacle werQahe boy v# D" principal character beforEaon-look<>!s;#1fac" oirhimselfYhe wishe",Q tame lionf!w 8Qpsed (ing again,fhe dryQumed. eHpA him treasur # a large black beetlformidable jaws--a "pinchbug,"8#Rit. I/=ercussion-cap boxhm1did/bto tak)b' Afingal fillipgIbfloundKZ2isl1its !ur ger went1's Co!lart5its" legs, unAto turn over!ey !lo1forF^!ofCt. Other'uncR]1q relief# wyof too. Wa vagrant poodle dogNA idllong, sad#Bf, lazyI1oft e quiet, weary of captiv(1sig"for changeMs;HAdrooz Ataile8bwagged:1urvrize; walked a it; smelt a87afeu4 4; grew bPJUA6rY1l; Trhis lipqade a gzly snatch,YA misa;3it;/nn %; g diversion; subsid  Stomac)W betweenm3pawh scontinu experiments; !ath Aindi- absent-mindi(1nod ittle byrhis chin descen/ou he enemyAseiz[2re sharp yelp&li' fell a couple of yards away, S}Amore neighboring spectators shook)a! inward joy, s2afaces rA fanI s)_aentire #ppXdog looked fo8 4probably felt so r1entc iheart, tooBaG>qor reve1So .n:9gan a wary attMnWQ jumpfRevery2B, lightingP!hiKJae-pawsin an inchB2YouUX O=3Oh,Q, I'm,/"W4=--wQa, chil9 X!my! toe's moF1!" J#ol[UBsankqa chairB#%ed! cEB"a did both0,Arestwh/d<P," ayou did Ce. N ;1shus aonsensCd climb"thg{$ThS ceasrain van Afrom!to   ' it SEEMEDi"itTBso I B my aat allqQYour ,#K+ Sthem' aperfectly" "Ther|Tdon't Ahat @'Open your q Well--4 IS1butcre notwVto diG!at. Mary, gec>aa silk a['1Rnk ofq"ek$2n." !pl/j7 !hue. I wish I mayO%qdoes. P_@.1wan-]stay Don't you? So all this row was E1youM>ght you'd7i ibgo a-f*?yI love you"1+!ou !ryQy waycQbreakX?l !t soutrage!=." dental instru?S read #%on8the 8^I"'s:Ra loo& #tiod edpost. TBseiz* n^QthrusI($inR2oy' U hung dangb- } Rrials@*1qcompenst+s'#enrschool >fast, he6qthe envc( 1 bo"5metSfap in 1row&eeth enab 3 toMRorate!1new<>4 s9ing of lad9G%in the exhib@0;2oneShad c ' 2hadr a centre of fasc and homage2o[Qnow f:OJout an adheren Tshorn!Rglory'QheartyBheav 3a disdaibZit wasn'tDo spit like;our grapes!"%e wanderh dismantero. Shortlyb3camMthe juvenile pariah5he n;Huckleberry Finn, sthe town drunkard.,-Qcordi2hat2 dr1#by "e s{t 2idllawless and vulgarRbad--zxk?eq delighV-forbidden societyAthey dared?Rlike B!om @!reNCRboys,faxenvied >his gaudy outcast cond;as under strictIQrs no8Mm1Splaye3him1timf2got% Ince.c!slways de cast-off _سll-grown meAthey  in perennial bloomRflutt sCrags{!ata vast ruina wide crescent lop a of itp!m;ecoat, +72ne,Bnear^2his[ !haQ rear!buttons farY ; 2ack1oneMeaupportos trousers;Ceat ! b$A low~contained n A friM&rlegs dr4Bdirtanot ro[Iup. 1and?A, at"own free3Yrteps inKDweat in empty hogs> in wet;3Qto go2 orurch, ornmaster or obeyXcould go  or swimW1herCchos1sta/long as it suim; nobody~V$fiyhras late! p8 d3t)2boybarefoot Qe spr'gnv~Cme lsAfalli1to wash, nor put onf0wear wonderfully. In !rdJ8tQEgoesxlife precious{!adgrthought\ harassed, hampered, ; inkBR!ha!AJtomantic : "Hello$!" K ee how youh9it.a A gott rDead ca%RLemmeC"imp. My, he'tty stiff\Are'diqget himQB2himR a bo#di4zI a blue ti@1and"adBat ItVter-hous1 T#itBen RogersI!goa hoop-stickE6SayU!cats good for2hGA? Cu1rtsHSNo! IQ3so?JV some6A's b3BI beedon't.ibaspunk-?5S! I wouldn'tqAdern 85You-,  $D'OD tryqNo, I h DQBob TOA didrWho tol!so"he Wa5Johnny Bak im Hollis8 'ld2Benmca niggLC them bre now2ellt? They'll lie. Least<1all WA. I 2HIM(I%eekWOULDN'T\Shucks! NL!te`lbone itvQnd di=2a r/BSstumpLthe rainQA wasPI qdaytimeClith his fac Atump-3Yes* I reckon so[ADid j y5 3"I :.lAknow@Aha! Talk1tryN:o c such a blame fool,c@Aat! @S a-goVado any2. YV rbrself, e middle Qwoods\5Y's a Btump1jus'7rmidnighrback up!s qand jam/Q: 'Barley-corn, b injun-mearts, ^ {q, swalle_&drts,' 1n w way quick, eleven steps,(eyes shuthen turn.<BtimeYAhomeDrout spe+ttbody. B#f$Wcharm's bustesounds likxrood way !!wthe wayB donNo, sir,x1cann't, becuzoGartiest cis towT!BE1war 2him!!'dU!ed*xto workYS. I'v1offs'9"of off of my9sAway,m 7. I Tfrogsv$*`U 5got;"Qmany gb. SomeI!'eFNSnYes, bean'~de%1Havk?,"'sSway?" "Youd6 2pli!be#nN1getb blood"thN# p3" o rEpiec!be,d{q dig a *1t '`?aYrcrossrorqdark of6mooQ burn/ $styBbean#se Uq=.ll keep drawN$nd ,mA feteXFZ v+1"soQhelpsh!toOA the.Rf!sof}Qcomes %--;"gh,"bui$you say 'DownV;awart; 1no @'Bto bgme!' i & Tway Joe Harper doe!he1'enCoonville and mosQ bwheres#say--how do:"urA b!ak1r c+Enm?graveyard '%Ubout wwXromebodywas wicked hen buried3Fit'sFqa deviloP, or maybe%,3 't see 'emcan only+ 7indYAhear9Qtalk;|they're tahat feBawaym#he<<1fteMGqsay, 'D  corpse,i,A1cat,Qye!' ;2ll 91ANY7b." "Stnright.}  "No@Rold MrHopkins mz !soqAn. BQsay sra witch#ay AKNOWQis. S$*$pap. Pap says so his own self. H! axAone *a#!eeUawas a-Sring himC !e T'!ro-Bnd i!ha AdodgQe'd a>e)that very > $heFoff'n a shed wher' s a layiQbrokes1arm"W#!diOknowLord, papGeasyK1loo- *q stiddyDyou. Spec"ifcmumble d$b're saS he Lord's Prayer backards2Sayy y:"trB1cat1To-. .old Hoss Williams t8a" "Buy him Saturday. D` ?qtalk! H5uldbAarmsF d till -?--and THEN2Sun|Sevils Tslosh 1muca,2, I' L!nLaBso. #goT!f'"--$Rafear A B! 'T qlikely.djAmeow1Yes#, Z'geR Last timeOkep' me a-me8!arA1ays( r&rocks at mJb 'DernQcat!'qso I ho Abric{!hiDsdow--bu+BbwTIn't meowe bauntiea#me|Q4'll8!is%. 3!'sOL"NoQbut aS%Ou1-3at'AtakeG .Uqell himHAAll 4. It's aIqy smallr, anywa#anybody3runw6ae1 bem. I'm satisfiiwF!enAtick"Sh!tiu plenty  1 ofrif I walCo2whyn1#wed!cawT&Cs a Q2onef YAyear,b--I'llbyou my  ALessi1Tom1 bi$pauAcare3 un$Git. ~a viewe#Awist-. The temptation+strong. At%he"Is it genuwyn4Tom>'>!shthe vacancy.a!,"YB, "iAtradTom enclosQ8 A@lately been: 4#'sG"th separated, each fee !wealthier thqfore. y'4Tomy'Dittle isolated frame ,trode in briskly=Pof one who AwithQhonesbed. Heahis haQa peg52fluT BselfJ4}31eatI r-clacrit", throned on hig1reat splint-bottom arm-',R1doz)!luW" drowsy hum of study. The51rupcd "Thomas Sawyer!(Ghis name{f7 in full&!me$rouble. "SiO"Come upcRS. Nowbwhy ar2gaiN3cusual?= "to Srefugz"3lie' Pw ; ails of yellow hair hangingoae recogn$PHric sympathy of4%;&bat forTHE ONLY VACANT PLACE girls' sZ QinstaE STOPPED TO TALK WITH HUCKLEBERRY FINNY's pulse\:Qhe st helplessbuzz of 5r ceasedcpupilse) foolhardyaqhad los% u/:9*(d did w"Stqto talk@ Finn." (eno mis}e words,!isE!motounding confessionYever listen!. No mere ferul answer f4is offen%1akeyour jackej  's arm performed until it!ti#>Qstock1wit) _y diminish`A ordllowed: "l!goVs!th! And let)bSt0xr titter-VripplE{qom appe^rto abasiboy, but in .G14was caused rather0!byworshipful aw%his unknown id(&IAead _#urRlay icgood fortuntss Rwn upk(1pinc<c0)'Qirl h,away from himaa toss$&nd. NudgesBwink$qwhisperO4verBroomrTom satW!hiIs "Aong,"CdeskO1eem[book. Byby atten$DNjX#ed murmur rose]AdullxEPresentlboy beganqeal furdaglance robserved it, "4G,2" a8and gave hi-HbackRe spa\ta minut2she caut4duQ, a p5layi"erthrust it away1g!pu>Kback,^2butC&Bimos;$om9Sly reZiqits plaz!heit remaindscrawlts slate, ", Bit--2 more." TdJ uno sign. Now draw some *!hi 1eft;q. For a31ref:2to ~[Sher human curi@Axq manifeby hardly perceptibles !boPkAr, apparunconsciou+Qa sor^ noncommittalnmpt to s6 did not betra/h Aawar&itM 2she!inQhesitB$lyb!Le  Apart 6=*l caricatusra housetwo gable ends}a corkscreC,smoke issuingS!thn[AmneyX" "'s !es0Bfast6elfeAworkqshe forgot $D els`f6, she gazedAAment)n ,It's nice--make a ma artist erectH$an%front yard,qresembl(qderricka 4~1ste\ !ovgek&not hypercritical;Kwas " Const! a beautiful man--now me cominggom drew an hour-glassa full moontraw limb1 arhe sprea1finE$a portentous fanwL #t'#soI wish IPddraw."feasy,"q Tom, "1TlearnB"Oh,i#AWhen At noon. D 2 goh1to dinner&PDstayAwillrGood--tAa whas your] EBecky Thatcp5yours? Oh,$& l1theU they lick me by. I'mIAwhen \2YouW)1me Yes." Now<N  tl1rdsW /1"gg1see !Oh~ain't any\ Yes it i5"No'#wX5I do, indeed I do. 4letVYou'll teNo I won't--9Fand Rouble%"ou3G6A? Evs ! aA liv!6&M! e3ell ANYbodysOh, YOU!Lyou trea#o, I WILL see."+ 1sheher small =  Dnd aQscuffLAsuedq pretento resist in earnrut letts_ slip by degrees till thesdA4vealed: "I LOVE YOUj"OhMb-Fing!1hit hsmart rapreddened >b 2ed,~&theless. J[$K junctureboy felt a slow, fateful gripM3CB earp a steady 1 im+zSwise Aborne acros Gposi0own seat, undwNBpeppX/a7f giggles i!tna~-Cstooqhim dur;q few aw_bomentsfinally moved IsU4out5ba word3"al Tom's ear tingled$EBhearWjubilant. A rquieted 3Tom nQefforX Bstud the turmoilRin hitoo greatqurn he h#hi  Bclas1}1 boef it; theOgeography4 Alake3 o mountains, Srivery r contintill chaos wask  Aspelc got "down," by a succ`"ofG1babA dN3he C2 up=ae footyielded upkpewter medalj worn with osten|for months. CHAPTER VII THE er Tom triedl shis min,# " mXs ideas wandered.9,b a sig:a yawn, he gave 0V. It $anoon r4Fb wouldm} air was 3Aly dc#t a breath stirring. IRleepi$ sleepy day drowsing<Re fivUtwenty studying scholars soothe/soul lik= #is_bees. AwayE1fla sunshine, Cardiff Hills soft green sides th[ a shimmBveilaat, ti| the purple`iWa few birds float Q lazya!ir; no other liv*bwas vi$x1but7 4 co^W Cwerer's hear=!be3A, or 3 toA  fE to do to paq drearyH4. HcQ into%poO0his face l"gl%:gratitude3wasa#, ) not know i!enXJ3ivexrcame oua him a"Va pin"!6newx 3's bosom friend sat nexb, suff!ju9;4nowMadeeply{"grm& 2ent.1menj3an  7was'rtwo boy r sworn s|1eek embattled enemies on"!s.^took a pinBJAapel #as q exerci1er.AsporZwwU<rly. SooG 6}Beach neither g g1ull denefit*!ti<!o Qt JoeAQ4ate 1rew "neFthe D/!it C top)Btom. ","Whe, " Ahe iqByoury9nbq him up)qI'll leB!e; "2get d)et on my[,@re to leXalone I can keepQfrom  S v!, go ahead; star!upb escaped!pae equator{6DawhiPtU:5G݁ghis changbase occurred often. Wg"onZ !wa5r^&t7r absorbNHYblook o? #as 3, t9b 1ogeo|QsoulsC to B1ngsVluck  S b JE !hicd&atxDcour9rQs exc Xs anxiouh|!thH mselves,<0Egain:Auld evictorfvery graspn)"to#1 cbe twi%to begin,3pin'Bdeft+Rd him;1andTk W)gl:n(uno longzQemptaswas toocqreachedFand lent a11pin 2ang a. Said he: "KbI onlyd1wan TU2#NoJ a fair;e' ~3QBlame>I'!go l#mu+L?b, I teK|"!" shall--+#liALook !a, whos\ 1ickICcare$m /ha'n't touch %%,Qbet I . He's my/do what I 51him die!" A tremendous sdown oneshouldits duplic r!s3twoW dustbRto flbjackety[ to enjoy had been tooS]sBhushhad stolencschool wCetiptoe"\nVd (Hcontempl (p4~performance |!heQributs'Zt2%broke up a flew to P1 in ear: "PutHabonnetlcyou'reBhome11you)5\rcorner,'.2 'eAslip|rthe lanAcome.!goQoAYcame way." S6"ne+5one group of -gCith EF. InL:*"et e #la.:qthey ha {Uy sat," a5JBthemQ)3ave the pencil 0.Jriin his, gui 4 3ed a surpr Ot&Gn ar2w#fealking. ToAswim]in blissS}%!DoLlove rats?" r! I hatM do, too--LIVE onesI mean dead,qwing rouSr heaAa stq[1for much, anywMA likIchewing-gum<l25o! 8qome now/?8"go1letAchewV3 2youUqgive itQ3 to8AThat`agreeable& hey cheweBturn'Y?K!irSk,!!stRbench "cet#ntment. "W>)an/circus? T #YeQmy pa7!"mew*Atime/ET" "I)f three or fouryQs--lo:. Churchr shucksbD-C (on/; qbe a cl5%nWScI grow )"! ill be nice1y'rBAlove ll spottAL1so.=v1getAhers of money--' dollar a4 cBsBSay,_+bengageSWjt`(2!b ٪"ieN.+ 2youC!to.E so.CknowqQis it2/Like? WhyG You S Qa boyRawon't \ FZ\ Zcyou kiPw all. Anybody%#do.b"Kiss?d=1for2X Ynow, is to--well[yIoAEverqH2yes+'Y8 ". z remember m F wrobbYe--yeW]YC%I  TShall 8YOUHB--bu5No, t now--to-morr8Oh, no, NOW7!--Vrwhisper aso easLQ #o took silenc Acons"and passedBarm Arher waiS]QT talezC7/outh closuher earn he add\$2Now!--d t-P3ShePj" a^2You vBfaceBs^23 seI;I~you mustn'<[--WILL you]?&,!N  .a." He n\DidlyZ(her breath stirr?Bcurl , "I--loveP-.(r sprang#tand ranfs+YCes, with1aft*uy/x Cher 1JQaprone1ped"nehV pleaSWn]ll done--all a. Don' be afraid Eat--+?+ll. Qhe tu{"aD YhandsA+2she us  qs drop;Qface,rglowingy"truggle,,O submitt-!omqred lip 3rNow it'ACdoneEPBt 2yout0mk+@!toXy,2 meand forever. Wi 3'll)u!LLkmarry +2--aX - 3ith)CEly. :. u's PART{)I('U*we^w02me, Rthere<Rchoos Dnd It parties, bE  1wayeO4're DIt'sW'3. IRheard -|%'g>mSAmy Lawrence--b2bigF1tol{ ~DlundUe stopped,1Sused. BTom!,/irst you'v3 to"W chil2cry94Oh,trk I"arshy   1you1Tom3 kndd i  BneckJ j%sg0%im!Qrhe wall1wen\bcrying05  ing word GQas req$: (!pr4as he strodWQbutsideY,2lesquneasy,: Sglanc2oorMQy nowthen, hoping she.RrepenSato fin:4shee-e1 to81 barnd feari.;'roS!ea hard2himke new advancesM ,Nqhe nervRmself{Q and _]"zstill stan797, sobbing.!'sDt smote himD ?2 ,ing exacoQproce-ge said aly: "* ], I--\ A." f4ply 4bs.D1"--/tingly. Y !mea?" MoDTom got ou( chiefest jewel, a brass knobToan andiron2{ $itd h,2thaq,{/3w * y Sc3uckY the flooruTom marH.:C hilR 1far[!rez1 noday. Presently 3buspect rRT1was7in sight. < 2play-yard7SthereU1she,v Cc, Tom!/alisten}trL7had no companions l oneliness. So s t`Ro cryfp1upb herself;qby thisZ L1gata3gai[ashe hatAhide+Qgrief?6cbroken aK of a long, $Q, achhfternoon6! nk#mo Astra/VSto exbsorrow/ q'I TOM dodged hp t through lanes96H@&ou!r51ing3larinto a moody jog. He va,"branch"9"reDH  6prevailing juvenile superstiti!0 c water baffled pursuit. HalfC1! l$disappea<+Bbehi Douglas mansion jbe summ"'Z ,1wasly distinguishablCoff Ccvalleyۖa a deny-od, picks pathless wa>r2ent;4.!onssy spot,spreading oakrnot even a zephyr(*_anoonda(at had 260 Tsongscbirds;:1 lasa trancCwas Vby no sound the occasional far-off hammeof a woodpeckiBm 1 re .1rva|wense of|8*sprofoun=Rboy'su)w!1eep melancholy;o A3s w<happy accorqhis sur1ingA sat< )oAlbowhis kneeO2n i.S, med69 * rhat lifbut a tr=1, at best +3orlRQbeen 2!eda2g--Q very dog#" by some day--maybe wh@8too late. Ah %die TEMPORARILY! Buselastic]o?ath can4e8Aresssqto one {rained shap*46Tom_&drift insensiblyJXZconcern"is7|.T cack, nowmed mysteriously? aaway--A'so3 ?countries beyoBseasQcame S! How 2she{ then! The idea of beQ recu,mto fill himdisgust. For frivolyR jokewStight"anAsy intrude`/1 upbspiritwas exalt3vague august AEthe romantic. Nota soldi<,"yell war-woraillust. No--bette4ld#joIndians,unt buffalo$$gowawarpatr4x2S rang-the trackgreat plaite Far W 0QfuturM+A q, brist2with feathers, hidej$ith pain,bprance. ,(QrowsyN $er|a bloodcurdssar-whoose eyeballaG unappeasu envy. But noOb gaudin than thi/dpirateas it! NOWK2lay~ #"im"glaimaginsplendor. HowMHQould c people shudder1glo(AS go p{Sthe d2seaf"hiu,1, l'qlack-hu 2racZ02e SsFc StormHIisly flag flyA fore! And at the zenith ofQfame,suddenlyDIold village8Cstalcb, broww-beaten, black velvet d ArunkCjack-bootcrimson sash,AbeltJ"horse-pistol9e-rusted cutlass atCAsideM2 sl4("atTwaving plumeIcunfurledthe skull Abone*  Bhear[2sweobecstas>$G #s,3TomJ, P--the Black Avengerpanish Main!"  j,d Acare's determined)2runfrom hom Renter' /\.2theDnext[ Afore rust now+1 to&Wreadybcollecresources %)Aent rotten log nv%'an2digu 5 onFihis Barlow knif1oonrck wood ed hollow"puusand uttwis incan~,i8 dively:bhasn'tDhereovW!st 2re!^rbcraped`"ir Q expo pine sh9:i8and dis(chapely,2 trcH-[5hos'and sides wer/ds'iHra marbl 's astonishmenboundless! He scratc Ss hea a perplexed air7RWell,1bea*y> +Btoss5pettishlyStood cogitatUsuth wasfa Mqhad fai91and0-Brade0AlookR$on as infallibl byou bu OLcertain necessarylsBleft  fortnigh'BCopenCplac"8theP" h ajust uh3yout%a1s2had1los.  t0 H,9 |&Qno ma how widely+}Qk"w,~ bctuallunquestionably *-DtrucF2faiQ shak"-Q its Bs. H"Cmany C Rasuccee3but{aof itsBing :Q occu2himtit several timesC, himself,n;1e h*-scs2warvpuzzledy!an\decided $Qwitchainterf Bharmhought he tsatisfy at point; soe!ar<1he Csand aqfunnel-Qd depo!itJ9=$ F2 toyG and called-- "Doodle-bug, d $'#mev0Wgknow! 5 5*! sn1egaBwork"3bug e a secon2darted um)fright. "He dtell! So it WAS aAdonef !I ;%!knv5'"HeDknew2 iQof tr to contens#chahe gav^"Ś$ag%iT`he might asAhave>  w1 ,Oatheref@Btwicl.last repe2wasRssful$0Qs layU1foo Qeach a. Jus^%ebYntoy tin trumpet 3faintly dow%green aisle~QorestWoff his jacke|trousers,$ a suspe9belt, rakN Tbrush 4thelSlog, 8 n rude bow1arr| lath sword4in A7$Bseizse thingSbound, barelegg 1 fls "AhirtL7halfelm, blew an answ@9atiptoelook warily outk1way2thasaid cautp--to an }!ryH!an Hold, my merry men! K;BI bl06Nowf>q, as aiAcladbelaborarmed as Tom. Tom]Hold! Who s7ASher BFore_qhout my+q?" "GuGuisborneVAan's).^1art-L--" "Dar  hold such language=Tom, prompting--fo8y talked "se book," qmemory.l ~/ dsI*! I am Robin Hoodkthy caitiff carcas:Ahall%." "ThenRindee% famous outlaw? Rvgladly will I dispute#2the=Fpass3wood. Have aeyGWtheirqs, dump4eir.Brapsf e ground, struck a fencttitude,!to61kBv) reful combat, "two up andfdown."p!E Tom aNow, i a've goQ hang=Ait lM!61y "a," panhK !er k. By and bhouted: "Fall!K8! W`+ sha'n't"Nrself? Y(AAwors!it/4Whyh M@!'tv;A#ay it is inVbook says, ' Qone boa[stroke he slew poor $.'!toNr ,ame hit oQ." T#>PFuthoriti 1Joebed, received!whE@nd fell.&"4U Joe,^up, "you8o(N2 ki1*Ffair{f!docE_/ell, it's blameC's aQBsay, you can be Friar Tuck or MucAmillD[ss%R lam M h a quarter-staff; or I'll bSheriff of NottinghamJe w9h?Bill 0AThis a@#soadventures were cr4FATheni!beB6 L!wa- !by treacherous nun to ble s strength away 1ughneglected w- 4And/}! r 1entAtribAweepOC4s, R|Qhim sbforth,V m"ow(his feeble hands", e" Q fallTere buryuu 1eenqtree." She shT$ b&would have diedQhe li>+Aa ne0and sprang upMAaily a corpse.->dA, hi!ira!Gutre Ooff grieao <$noz4u3mor Bwond what modern civiliz= claim to h Qensatiloss. They;F-rather be year in than Presiden the United States 0 CHAPTER IX AT half-past nine!ToB Sid\1senm"be[usualir prayer=(onqK Aawak waited, in rest"imc<{it seem0q be nearly dayldhAlock;Bke taqdespair&and fidge#asrves demQ, buttbas afr+aSid. S12lay,%!st"upJark. EverLDsdismall<2C by,'YSness,a, scarceo[fnoisesemphasizeSC ticking aHh Ato b!itS-A1. O+"&ame! cT(!cstairs creakently. Ev1ly 6 !ts abroad. A m#Rd, mu(snore issued Aunt Polly's chamberA now4tiresome chirqf a cri!thA human ingenuity locate,JQ. NexV ghastly?SdeathwatcDwall bed's head made E--it#abody'sMPnumberedUBhowl{far-off dog roseg 3wasAa fa<K a$r O./an agony. At ih| 1ied+had ceas@d eternity begun;00 to doze$Aspit2e)chimed elevenl0A;#%8me, mingl Ahis !formed dreams, a most ' caterwaulwA raix&of a neighbo)awindow81urbSqm. A cra"Scat! devil!" aQ cras<an empty bo;z}ais aunt'sCSshed T#"dea single minute laterlGand jr$al,Sroof 3"ell" on all fours. He "meow'd" withn once orpn jumped  g3]*QL. Huckleberry Finn washis dead cat #ysAW1off\A,#edO#a gloom%thh," (all grass4graveyard. It &old-fashioned#ern kind13on a hill,5Da miK'Eaillage<1hadazy board fencet $itcAlean 1warY1outek$th!buZod upright nos1. G n!ed!ew rank M ? cemetery. A2old*spsunken in,Mnot a tombston!; {-worm-eaten qs stagg#Rover $ aves, leanaor suppor 1finnone. "Sacred) of" So-and-Soabeen pdm#="ittLR have7Sread,5am, now*1n i3 r7lFA wind mo $reSTom ft {\, complai(#atw(x\<R6nly ir breath6[ -Solemn(Q silew&ppX $irvyo! t arp new hea1yk1eek6ansconcQemsel2ithq protec0ree great elms$grew in a bunch?-WDfeet " "y U  42for H "a 1imeS hoot abant ow.]"btroubl !ne om's refld1ive%.aforce Dtalk) Qsaid $: "Hucky, do&ɘ6 ead peopleGZ3 usDqhere?" Zed: "I wisht I@eEQ's aw3Zs, AIN'T36Q"I beAis."ea considerable pau*"il\Scanva "#iss inward! n_ %ASay,3y-- reckon Hoss WilliamssI1#O'Q he does. Least8rsperrit"7, +a+2 I' #u MisterxI`  Aany l DQs him#A "n'Foo partic'lar1(tXalk 'boutase-yer  Ra damnd convers3die!. Qw Ahis comrade's armE1sai:Sh!" "What is it~$?"i nc%Atogeq!be#2ts.K C'tis again! z1you+{0Q! Now"OALordTHcoming! TQ, surmat'll we do/I dono. Thiny'll see us!'OhbA can!in^ Qdark,M as cats. ihadn't comecOh, doay!. Aliev<1bus. We(a doingl If we keep perfectlyR, may1y waB us N$I'll try toRbut, Y1I'mbBof a shiverListen!"be1!ir s e tof voices float% 4far`(A "Look! Se;Fre!"M  w-fire. Cis it." Somv/1figaapproaK'!Rloom,M tin lanternaTfrecka  innumerable spanglek  K#a d!t' sya. ThrexA'em!yQwe'reqrs! CanBprayNB:BThey! gto hurt us. 'Now I5#meo sleep, I--'"8 AHuckHUMANS! On! iWyway.'s old Muff Potter's }aNo--'tqu so, is AjDYyou stir nor budgBCharpfE to q. DrunkBausual,Cly--qold ripAAll O !, 4stiI5tstuck. Can'"1Herq#Dy coN.[8hot. Col2B Hot. Red hot!'re p'inted?r ,q"!o'qs; it's Injun Jo(2ThaFD--that mur!' breed! I'd druthe Zdevils a der'>!. ky be up t4The.| Dnow,! t 1men $re!e 1     ' hiding- Q. "H?9Dt is Qhird ;\*:wner of it hel TTreveaV1fac young Docts_`1carryingYcbarrowTA rop a coupldshovels onCcast#lo=!c2opeUF7" d1putd|_R56karH2ack1st fX2elm  Q closIhave tou1himurry, men!" !idTa low"#on91com at any moaRJy growled a responsgan digg'Fo(*2 no# b<"gr s)Qspadetbchargiir freighw Amouldl7 was very monotonous. FinaX Q upongScoffia dull wood*<2entO4'Ror twyRhoist'dg>Sy pritd!$irB, goB!dyF!Qit ru - `Tdriftg?Rcloud(0allid faN4he P!as3reaaorpse "it, coverea blanke>buCope.l(out a large spring-knifkcn;#da3z Tthen " Nm$cu Bng's, Sawboned you'll*"ou$ Afive\$ s?y alk!" sai.] BdoesSmean?3te. "You require3r p?Sdvanc(I've pai#'4B don(B tha ,; r Q, who Dnow @*q. "FiveBs agqdrove my q your fX's kitchen, when Ito ask f@(c to eaK3youWa warn'!!re2any goodWswore I'd get,AzQyou iuaa hundcgears, RAme j1 for a vagrant. Dta thinkiqforget?I^Sbloodq Ain m1 no.2nowvGOT yougot to SETTLE"r!" He EQreate<,e !isy Bace,n!2is  Tq8E1retacuffian dropped his !exDCHered #hi^(&rd~b next ! h-t grapplF "wo)Rstrug'and main, trampl% gFtear@3'rheels. !JoaAfeeta81 ey2%am!pa1nQ, snaQ3 up'/V"cr"Q, catYEAtoopCand  w'Tants,Q an oCunitwat onceQ,d free,62Aeavy5 of'n fҲt(Rearth"it8? c YiL A sawXCchanSj2theb1hilthe young man's breas+Qreele4BGqpartly , floodi  l* `ablotteXAreadcpectacf1 Bened Aspee!awHdark%> remergedO , '8two formsPRtempl }aamurmurulately, gw*gasp or two%2wasKm- rTHAT sc; :Q--damF0Rrobbe8body. After h9the fatal2in r's open R hand M dismantled } --four--fivss passeJ7.mB za1. H1nd dw#; C Q, gla!atand let it falla>g)sat up, push2bodA himLJ gaz]aK&confusedlymet Joe's1rd,ie, Joe?u .a:ay busi%#2Joeout moving.d]d+[%I!!it{] 3! TRT 3alkdewash."YAtremDI ew white.1ghtagot so"!I'BM!r!o-@it's in m* yet--worse'nw= rted here.vmuddle; c!$re=#an$gQ, harqTell me}--HONEST`Aold ar--didB it?zJ(qto--'poAsoulhonor, I nevt1ant5Joezc#Oh$+Qhim s, ad prom! -1youC?ay1inga he fe6G ) Bflat !up:3comX1reeX[ding li!.Ajammz%.5 'asE you7S clip ere you've lai'!as a wedge til nowbd{Uwawas a- I may die1if B1all on accou(bwhiskevV!axcitem"I .uC$ weepon Clife: fUO_;uAy'llsay that.( V8ray you Atelle--that's a  4. I_2lik</U !upE { etoo. D remember? You WON'Tc]a, WILL  A/ApoorS'Eture o SkneesUrstolid G#alaspedQappeaa,.)4'veA #fanbsquarej 8me,N# I<#go$n :MsXs a man can sayIy0an angel.bQ*1you^!he0est day I live.> ?Ccry.d 40$#isc 1anyYsQblubb. You be off yonder wa!go+T. Mov 3and5!leny tracksX"onM(quickly increaseQa run  &)He8 If he's as much stunne Q lickfL2rum2 halook of bel#he1eBtillzgone so far he'll be +}-e\!it:Ruch a>% b= --chicken-hear1TwoO tqs laterD0Rd manv ArpseA lid 2the ?+urno insp8!b moon' ness was completet 9too-X THE two Aflewqnd on, towarkaspeechwith horror*y Aback;%?aulders|!to, apprehens95'$yA$m &be followed. EVastump #up'Air p9&.'and an enemyw[+athem c+:bbreath"as"by"Aoutlacottag41yy.=21ark1*aroused +H-dogRagive wq:qir feet Af weqonly ge=ld tannery!wegk down!" whisp&1Tom|<Qtween5dths. "4AstanRmuch ]&ucC)'s hard pantAwere-1repboys fixed sSeyes z 1goaDBhope"4benir work to win it. ained steadily]1st,sIy burst open doo cgratef BexhaIiBshel, shadows beyond. Beir pulses s4Tomac2 2'lli!BIf D dies, I61 hav>!it?D m !?" y, I KNOW 1Tom#om&2t a$JEn he #1Whosell? WePBat aj  ing about? S'pos%!th1appEand q DIDN'T!? he'd kill usLvoO:  sure as *g <@  ~o myself, HuW8q"If anyAtell)t 3, i)Cfool. He's generTdrunky%U !--2 E s C "itrN!ca#teJ:#sQreaso 8QBecau>&"'d1geSwhack"F. D'3 he*5seeT?$ \7!" "By hoke:$'s-!" "And besides, look-a-here--maybeqfor HIM<No, 'taint likely ^GQliquo5ghim; I#th  |h Rhas. 9pap's full Atake/belt him&3hea< a church)2youn't phase 1say his own selfZ)i3sam !C, of(Fqf a manjJGoberZ W&)dono." .*$ve*p)2you"an!1mumw%to.*  #atadevil 5Rn't myQy morWdrownding us&a Acats!weto squea(iF+"ha!. X>u, less swear to one/Z"weveo do--0qkeep mu"greed. I Xkb. WoulGAholds_Un we--" "Oh no @! dA thi . for little rubbishy commokngs--speciwith gals, cuz THEY!c anywa ablab i: huff--but!or%^e writing Ra big BClood2's m0 applauduis ideao1BdeepAdark  t;1our3 circumstances1surRings, ijbe pick'ya cleaniOlvAmoon', took ar fragmes"red keel"7 f 1pocDkK1 onV#wo0fully scra!'these lines, emphasizing each slow down-stroke by clam~7his tongue AeethRQ lettpApres QCe upW&s. [See next page.] "Huck Finn and Tom SawyersCs!ndI+Awish may Dropd!ea6 QTheirT"if33eve1ellX!Ro  p5filKadmiration of~acility inA, an sublimityQlangu3HC'4pinqs lapelH6was(Qprick,QfleshWN Hold on!!dob. A pi1assA8have verdigre#n Qp'iso$/ swaller somic --you,a." SoSunwou8bthread"%his needl!Aboy  1e b.QthumbcsqueezBa drfA. In,{Dmany2!s,amanage2sig!Qiniti9u~8Hthe ~ finger fo/e3ashowed  1ph"! HQan F, 1ath%2bur9!e 1le q5 to:,dismal ceremoniaincantfqfettersJ$ b#ir8consider(Qbe loF"keArwn away4!ig[AreptURlthil(!ugX$Dreak[Wother#A ruiEAuild2nowLQQ*iVTom,"6, "#uYAEVERf ing --ALWAYS?" "O r it doe]cdon't y difference WHATv xY got J BWe'd"--Q6YOUe Ywts rcontinuHtime a dog set up a long, lugubrious<outside--within tenc*md boys q",qan agon+!.ich of us^4 he;%!ga4 dono--peep througw crack. Quick 1YOU#-- 1 DO#Hu2aPlease1 72h, lordy0thankful0I2his)4 Bull Harb`" * [* If Mr. y+d a slave named Bullk spoken of him as "Dl!,"aa son 2dog!atZn"]   1--I" ( most scadI'd a betmM a STRAY dog he dog howledv~W'3Ats s:"nc&.2my!%!no'I IA "DOM! Q, quabAwith? !Z%eytrDHis z"waly audible"Ohr, IT S A1DOG1, qK Who7Amust3 us both--Uright"5.+vgoners.EU1misM   V< I'LL go to. I been so wM m2Dad_1Thites of p1$oo!do BveryD a's told Ndpaxgood, like SidNr tried !noaever I 2off time, I lay I'lWALLER if"s!7Tom0"nx4( . "YOU bad!"7Q"Cons!it ^ ld pie, 'longside o' BI amTLORDY 9 only had half your chanceom chokeds6andh: "LookyA! He?9BACK to us(ucky looked!joh "hil9he has, by jingoes! DFRbefor.bhe didpIS#l,e"!this bully, y. NOW whowing stopped. Tom !up ears. "Sh! k BthatI#0!ed"Qounds--like hogs grunting. No--it'!!snC mqThat ISkWAbout"it8I bleeve3Uat 't| #. Bso, a. Pap rRto sl{Aere, Stimesv t$"gs laws bless<1he Rlifts1s'HE snores. Buhever comOto5own{hXEdventure rfZsouls`/Qdas't`o if I leadR 1to,2, s~ts quailep_7the temp up strong:7 3oys#ryJAnder{2ing'7 @#to@Sheels Se !y 4btiptoe  , 4oneJ CthervJ~4hadlqwithin 'qsteps o|!er'pBstic  it brokera sharp snap.man moan]erithedp his face came inK . It was"ha+rd still\|C too)Aved, )Dfear|(? A nowlypid out, n weather-boar& $-%at2 di# sQa paraword. J qrose on5'B air!w1tur n+!th-2ang  Ua fewQ Xt.Awas $cFACING7nose poi* heavenward! geeminy,VHIM!".A botds a!--say a stray dog3ai Johnny Miller's house,A mid2,!#as.eks ago;6 ppoorwill=1 in4litbanisterZ2ung|aame ev?0U L#B}!yej W"ndyE#se 2. D&cGracieT falls2Afirebcrself terr next Saturd;#Ye@sBDEADwhat's moche's gbetter, too:you waitbsee. Ss# ,Cure  z,)a niggers sN:2all *h<7c,dWBSihis bedroom Kh"al Apent3$ss]$excessive cautionCfelliP congratuP.2himMRCknew escapaden1was _Raware3the gently-Qas awake$Y bv5. eawoke,=1andCrak$q ! ig# lAsens&the atmosp+HA%##Wh% ae not called--persecuted till As upRusualK4  KLtW.%Nairs, feelowadrowsyr family R at tԌ!bu finishedQkfastAI"no of rebuk)Nwere averted eyes;:!anA'ofCHthat struck a chillhe culprit' s He sat "nd &reem gay2it -Nwork; it E$no smile, no; he lapsed "leyheart sin'$tdepths.HNN"idG bbened ir3hop>g2Gflogged;Tianot so aunt wept overxand ask*m-E !gobreak her[!o;rfinally3him o{"ru&3andRher gray hair '1 so=~ '?2 usZ hT: try any more.Z!waCan a thous"ppgaA was sorer nQ:"anL1odycried, he pleaded for forgiveTpromised to reforh 2andj {.[jdismissal, !!he_1wonan imperfec51cestablut a feeblfidence. He lefk  Ro misC vAl ren4ful(2Sids 2 laB prompt retre back gat unnecessar_!mo^o school O%3sad41ook+}hqJoe HarHDwondered i-!ha!ic%nir mutuala<Abody2Dtalk r intentlthe grisly "them. "Poor fellow!" 9T+Cught a)Son toG@=grs!" "T2'll) iy catch him!" This ift of remark"milB, "IzQa jud';=frNow Tom shivxAfromA to heel; >D stooG3 of+3JoeZ$isB12beg}s6Bbe, andas shoute!'s  Aim! 7com!!"U!o? Who?"ctwentyT8. }1QHallo0s1!--=3out!tuM{&Am gey!" PeoplCrees over\'Aheadrrn't tryYB--he4doubtful and perplexed. "Infernal impu "!"aAa by~er; "wanosand take a quiet$aFwork12--dQexpec 263any=part, now u- b, oste%Ausly]3ingC" btAarm.;pa's facw haggar &the fear tha .W bstood 1urdman, he shook ara palsy4bface iNBhand@ QburstJa tears P!do#friends,&sobbed; "'pon my pThonor> z0iho's accTyou?"F" aYicarry home.xCliftme1and3ed ` thetic hopelessnes5sw!:"*Q, youaaised m/"'dD."Is ?V i4himM#. msiy anot ca=1easmhe groundn-*BSome!1tol"'tEM8Ond get--"-1hud Qn wavr4f2les` ra vanquSgestus?"Tell 'em, Joewv'em--itl0n,1tooMbEstar`#he  2-he8 liar reel offrene sta?_# FaFlear skydeliver God's Eningmp]f1seeAroke3tdelayedr JJ3illBaliv'!iraimpulsx  BoathE!avubetrayed prisonerafe fad d 5wayBinlySmiscreant1solrto Sata.#itIbe fatalReddle]~ Rroper-1sucQower - a"$hyyou leave?"DwoC|d Qfor?"ab BsaidRn't help it--$,"amoanedx:2 ru+ ?1see} 3but he fell to5. d repea)BjustZSlmly,minutes after inquest,=Foath 1seeCwerewithheld1q 1rme20qbbeliefH1Joej h Aevilw become,Bm most balefully interes1hadDA , yB not+ M  bey inwu(bresolv w= nights,d#1L should offer,Ih%ofPa glimpshis dread  3hel2rai !of[NRput ia wagone rremovalQwhisp3 Q 2ingv  l0!blqlittle!; Dboys&tXappy Tturn n$wBtheyQdisap "ed1morEn onarked: !three feet of . 7it O AfearL1ecrx+ad gnawonscienc /iqs sleepvAas ms a weekG1at Afast_~3Tom/' !alCyourx1so t3youp8!e B hal9"ti^rTom blaband dr"c H's a bad sign, Aunt Polly,*dly. "WzRgot oB min_d?" "NQ % '[Aof."k23oy'shook soaQhe spcoffee. "An 2 doTustuff,"Ur. "Last said, 'It's 2" t it is!' Y7Aoverover. And y!, 'Don't tor6me so--I'll-"!'S5CWHATQis it$V?" E+  1Tom( re is no\2ing*+ Qhappe\1BluckF2cern passedm7S's fas3 torwithout kno.!it" Aho! W3ful1. Im!ity4 my24Q3its7  S%Lqfound a-Sightypr itself . Becky Thatcherd"st #tolMT had EQhis pia few day<'"whistle her dow+!,"1fai)&HeTfind `"ha her father's Lqand feeI%< was ill.rif she p2 diP)9a3`qno longbdok an `@tar, norq piracy charm of lifCgoneMadreari2lef}hoop away,#Bat; $!wa 3joym3 His aunt "ed& 'rll mannqremedieS2him06wasRose prwho are infatuqwith pamedicinea-fanglWthods of produc2 or mend:an inveterate experimA3 in-s. When sRfresh'cis lin Sout s!in'k{2it;Kn herselfp?iling, bu/!el"at Whandy subscribert-!ll#!"H" periodicalNphrenological frauds olemn ignorance %B inf#1was^th)strils. A "rot" they cont about ventilR !ow$odRet upj/Ro eat$Cdrinl42howQexercI 2 22frag?!onTDelf *.1sor#clto wear,&all gospeӲs=aver obser!ha! h-journalscurrent month customarily upseXhad recommenO <Rbefor21s simple aonest e 1was+5 soan easy vict!gaQ$d <]quackydthus arm:'bdeath, .9 pale horse, metaphorici 1spe> "hell foll"Qsuspe `aot an &1 of[$$1balQGilea6 disguise&he) neighbors.n!wa6 creatmee3new/,low cond|)f$e!haRaat dayN*,bhim upehi}!wn mBqa delug Bcoldn she scrubb3a towel liki7Aso b?t him tona*Bhim Aa wemqblankets 1Aweatas soulw1 "the yellow stainsiV a his pores"--as7!Ye rwithstabAhis,boy grew morh  melancholyp!ej|added hot baths, sitz hFClung,A boyX#"inbdismalShearsRassisslim oatmeal dizbr-plastersb calcuhis capacitn)Hould a jug'sfSevery day}3cure-all-#om come indifferQ32ionn!!isfW_0cphase r1the1Tlady'L,constern;ice must b9!upny cost. Now?of Pain-killthe first a She otd a lot)Ua tasteD 3as with gratitud'Rimply7in a liqui0 J  {2and&P3els2!piZO iA gav a teaspoon# 6Xeepest anxietB,qe resul &r mstantly at rest,Zat peace again; for""?broken up` #bo+1hav!#wn a wilder,i , built arunder him.3feli.to wake up;-Klife might be romantic enough, iQblighy, , c1getyD tooiAsent "oo  %ng it. So heat over%!ouC!nsd ,X1finchit poO fo+n# 4Qfor in4ofthe became a nuisanch Rby teeZT help'2Aquit)q >Ieqen Sid,had no misgivto alloy!dePEsinc&3TomMF bottle clandp#el (" !rebdiminish" !itW Cccura t5was t!ltIta crack !siG-room floorit. One day athe ac 3dos  Sy"#'su$ c along, pur#eA(%heHR avar.lqbegginga({said: "Don't askit unlessAwant&Peter." But s1ifi# W2. "You better make suh$?ure. "Now you'v( give it to you, because E $ #m"mebiEQyou d,mustn't bl8Ebut your W agreeableEH mouth open)Voured.Sprang a couple of y+Aair,LSthen %ed a war-whoopsL!f & the room, b st furniture,/ flower-pom*  }Z havoc. NextiRose o}"hi6,#pr ja frenzy of enjoyment,<2his,F !jL proclaimingunappeasrhappines % Atear ?ahouse a spreaQchaos>destruct! Gath.U!edDime r&!im/w$double summersets, 2naly hurrah,AsailG1ughVt, carryK1res^Gthe ZGm. T  Bpetr astonish2 peer glasses;Alay ;qor expiaKRlaugh?#"on earth ails@Tcat?"N'u, aunt,"O. "Why,+i!diaact sogcDeed IWknow,e; catsq6kthey're having c A" "$ado, dof'?"Btonemade TombD1es'at is, I belie<(2y dAaYou DO1-  Qdown,n 3ingwAinte>emphasized by{ R. Too?@!viAer "f.R handthe telltale 1visC ed-valanceUi ald it tom winc 9yesBAraism Qe usuandle--5"ar.csoundlj %DimblS, sir (1tre"at)dumb beast so #pi Thim--Zd!nyj." "H!--you numskuhQat goAdH" iqHeaps. BRbif he'?Qone sqa burntF4out2! S2 ro 0QowelsX!of3'w"n,PBthanra human!" Z!fe: sudden pang6o1Thi1 pu yhl |6 ruelty to a cat MIGHT beboy, too  soften; 2sor=r0',I Rshe p<'3 onDheadd gently)'qmeaning -!stQ. And , it DID d !-&om)" i Bfacejust a percepttwinkle peepinggravity. "/!haf Q%ton-B? Ye*BforcX," adR: he 1lea!if!cr`wqno choi("By` `h2farFMeadow Lan,t !ll to "take up" t, Qd fai#up"eaG;, !Fink %,Bhear old familia!nd rmore--i Bhard0v$ou<ld worldc]submit--b A for1theQ sobs.a thick@O1 JW  2poi7m_'s sworn T , Joe Harper --hard-eyCwithD5tlyand dismal purp=Srt. P 9b were "two(but a singl&" Tom, wi 9#ye1fleeve,qblubberBsome about a 6p to escape from hard usag1lacsympathy at= by roamBbroaOFto return"3by  Athatm=1not"m.it transpir was a reques !chK2hadKRbeen  nIkN3#a)1hun1 up_. His mo ad whippfor drin ScreamhX  d knew ;*1plaUtCwishto go; if.<!waXpl but succumb2opebe happy0a regretDing ;"erW1boyxA $un) ddie. As=wEwalk gClong7 +compact to u 8 byePQthersqseparate till death rgm2 ikyj3lay.:tplans. "Qfor b2;a hermitC1livb qn crustJa remote cav1 dy O a#rand wannRgriefQ% m31to 1he U S&a4~_conspicuous advantages1 a "so ansente!pi Three miles below St.easburg,|!wthe Mississippi Riv "a OaWQ wide"a !qnarrow,%ed islanS \6$2bare  o"d well as a rendezvous%1 in2!edrlay farQtowarL her shore, abrvba densk{Twholly un o1estJackson's IC chosen. Whon!*aubject%Qiracis a matted2 ]Ay hu(up}R Finn8 JmRqly, for rcareersho hhe was$jy,75tlykmtu#!ne;I$ot]river-bank two,vn1favorite hour--4\csmall log rafIthey meanLLd. EachJr,2ookl6)such provisiA4d steal amost dnd myste!way--as bec +butlaws_:Rbefordaftern2donCy."agsweet glory of b~h12ttythe towne"hear ." All whohis vague hint!!cas"be mumTqit." AD Tom@a boiled ha9c a fewKs 1%ingrowth onQbluffMthe meeting-8VstarlBveryAMT lay Qoceanl3Tom6ed Qbut n3 m Q>the quietenN!ve%w, distinc$ 6stlAansw 1bd twic; these sig, K&e ;bThen af5ed voice!We!reTom SawyK^he Black Avenger Spanish Main. Name your namesuck FinnERed-Handed VTerro]2easw BBfurnq rtitles,56hisIliteraturA'TisEC. Gicountersignwo hoarse whispers !e Hawful word simultaneJ"torrooding<: "BLOOD!" 2Tom6 sQUC4Cdown@qit, teaboth skin1F/!es~ome extenXB'BfforF {., comfortable path (Bit l8the!of pCicul8!da/rso valu[&  b d4bac3had Tworn 2outy'"it $.gstolen a sg* ntity of half-c#leaf tobaccol- corn-cob 3pip/.3An3e s smoked or "chewed"A saik !do2tar"z)J ! w1hought; m]ahardly'@Z"reaat dayqy saw aWa smoulJgG1a hWd$3aboy qwent stc'@ 5andjErhemselvsa chunk Rn impR'adventurLbit, sa r"Hist!"[A nowT2theV suddenly halt!fion lip; movM on imaginary dagger-hilt4!gi1orders inX"ifj/Dfoe"cc, to "%W)'K dilt," " "dead men tell no taleWhey knew2 en< raftsmen 3allQ lC in stores or haae2{]D exc^ aconduc` /1 un"AicalAOPved off, ,iEmx CHuckJ1oar!Jo=D qorward.>stood amidships,T-browwith folded arm/7hisTstern_: "LuffDbI"wind!" "Aye-aye, siraSteadyNAady-f it is/!Le!t go off 1P 0Aboys 2dilcly droGd mid-stream vno doubtET"gonly for "style,O! t!to E any&particular&a?"l'?1 '?" "Courses, tops'lflying-jib?"Se  r'yals up! La[Saloft,$! a dozen of ye --foretopmaststuns'l! Lively, now1hak\/maintogala@RSheet braces! NOW my heartiesWHellum-a-leeKTrt! SX2wJ4comes! Port, 1NOW, men! With a will!  T\ drew beyoc7mid#&   ed her head7?then lay oi)Hnot high, s  B notathan aEor t=C82. Ha Awas j!duthe next;-quarter ran hour2t1wasGing BdistXwn. Taglimmenlights showed rit lay,1 "sl#,j vast sweep ofAa-gemmed water,the tremendous ev:4!ha happening. 7 7" his last"-Q Ascen!hirmer joy06ter8wishing "she"2rsee himuQabroathe wild sea,~ng periladeath Qdauntj%, his doom| a grim so/rlips. I,!bu mall strain'0R,!to&vet Island 6aeyeshoN'Cthe ["edZ!a vnqsatisfi\a' p last, to q3so I y came near let#e \Q drif)m\ArangQthe i< oediscov "j !inF%qmade sh\o avert it. About'clock ip1morU'Agrout+1bar8 B thewaded backzforth until Ahad 2"d ffreight. ParRlittl|'ngings consist an old sail"isgaspreadIr a nook ce bush$1a tbo shel6eir"s u TsleepVqopen aiDgoodq., .!y6/sk J log twentyirty stepk  sombre depth 4estDen cme bacon1fryb!anI1suprgAand fY"upcorn "pone" stockw4had;seemed glorious sporuAfeas%at wild, freee virginunexplor%5 un CR, far61 2aunm Ba returcivilizations a climbO&!ir3 up6Bfacethrew its ruddy glare the pillared tree-trunk$irbtemple?X aDfoli>afestoovines. W'!he crisp slice of ""on,qallowan* pone devou Bstre'3outt grass,Q;contentmenyBhave3" a coolecZ Qthey 9dena romantic feaZ 2 roh camp-fi2AIN'T it gay?" !JoIt's NUTS!Tom. "WhathHA Aay ikasee us Say? WellB y'd just die to b&be--hey y I reckon so, 2; "͉s, I'm suited. M/u't want"better'n$Aever@#Cgen'ally--and > Rcan'tXband pikAa fe<Z qullyragDso."HAthe dfor meXY6!toCup, y(!ch{"sh 'at blame foolish5uYou see 3do ANYTHING, Joe, ) aa[hermit HE haRbe pr0dxm# t0naany fuyyGUll by&tt!ayPAOh y What's \ "but I hadn't thought muchFqit, youT. I'd-deal rather b mq I've tN(!itC3, "'"go}#onsQ!adQlike ^^Ato is`Ce's M'respectedr2 a Q's goWhhardest 6Ican finput sackYa 3hea)s<=$1raiAd--"5at does he put V for?" inquireZ0Fdono s've GOTV.6rmi5!do2:1do 3/5wasDern'd if Iww'v?an't do%`#WhY:'d HAVE toP'N0!itY6I3n'tv"it2run.S" "R "! you WOULDnld slouc<0be a disgrace U no respon*ecemploy)chad fiqgouging Qa cobQ now A"tt:e', loaded it) was pressing Qal toRchargAblow! cloud of fragrant smokj&iMfull bloomp-1uxu   ) envied himW majestic vicM secretly &vqacquire?hortly. 0AHuck:Q1pirT?E+,"Oh^#n1a batime--(b 2hem3get "nebury it in ?6#ir $ w!re's ghost Fings]i kill everybod --make 'em walk a plankSA y!wo "q Joe; "YAkill5RsNo," asT## 2g--they're too noble}Tbeautiful, too.Awear[bulliest }es! Oh no! All goldsilver and di'mondswith enthusiasm#o? !hy#B." o"caDbis own orlornly I ain't dressed. h"a &ful pathoH=;Z#go3!bu1$sex@Ftoys tolbe fine#escome fast,a h0Sbegun <W^2him!^2his'4rags}Qbegin,l(Lqy for wy  a proper wardrobe. Gradu5talk diedk ;vwsiness6'[z t eyelidm fBwaifF pip3ub9U (Drhe slep qcience-aR wearL ta} 3 :J%in . 1saiYayers inwardlya, sinc Dith authority them kneeXQrecitC1ud;h"ru2d a0!no$s(1m a,,were afrro proceU lengths asS, les:might call2 a dspecial thAbolt3 c6cn at o Qy rea1ando7'reimminent verge of O.an intruder( ,: not "down." F ,4e>41egafe$fWhad been doing wroD -#eytb. 3meaAthen!rezr^CcameY to argue it away by remindingzhad purloined1tme@nd applesfAs ofKB C!thin plausibilities;E!m,che end? R!ar%the stubborn&"ta-was only "hooking,"F6,O"am@valuableCplain simpleSing--Oa command againaMi"Sov  5hat;a4 "bub", )U2not~Q be sd.!thl}Ume of.3$ e؍uP Lc 39]dstent # Hfell CHAPTER XIV WHENCawok!, he wond% he was. He sat5Q rubb Rs eye'ny"omBd#ool gray dawT#ya%-8of reposKdeep pervading calmGBsilewoods. Not a leaf r!!; ! s!ob|great Nature's medit!Bedewdrops W 2upowCleavQgrassBQ whitY!xcPathe fi,Dblue3werK|some hand$r it laydst to (/Bdit by a narrow channel hardlybhundred yards widetook a swim | hour, so i the midd#thEnoon2Yy got6ptoo hungrRtop tdthey fared sumptu"ha-%themselves $balk. B_S soontto drag!en6} 2itybrooded pG! s of loneliFsFtellUaspirit1oysy!toking. A sorQundef,e creptWmVdim shape'6#--budding homesick'Even Finq Red-Ha.was drea doorsteps\empty hogsheads~all ashame",1weayC none was brave to speak &a. For A Aboysbeen dullyM!ouna peculiar A ,2"sometimes i>2!ic"ofZ##ckAk"ke6>!no' #(isAA1 befpronouY!fo a recogn72 st a glanc4 \aassume1ist23 atfR Thera ,R, pro_band unK1;Yqa deep,ren boomK floating downDn.#is it!" exclaimed Joe,S. "I [!2Tomi whisper. "'T@!8thu+@Dan awed tone, "becuz4'bHark!")qTom. "L7q--don't\#."2wai% 4hatSan agV] ame muffled boom trouble$| hush. "Le(5seevBspraVAfeet%"hu_ MjS1ownp1y pCy u(1ankM!pe2out+2ated 9!steam ferryboakTabout1bel' v,3Aing @, urrent. Her T deckMScrowd b*<!re^# amany skiffs ,T&oru9 neighborhooBcoul{determine what em&!jeSwhitedburst z E's sKas it expSand rNa lazy cloud, tAsames Cb ofz1orn steners again{ 9now Tom; "somebody's drownded!`HGHuck&*last summer,\Bill Turner gotVvy shoot a cannon ov$at makes him comRdtop. Ytake loavBbreaRAput &q in 'em2set Tyr,anybody!!, L'1ll =9i #!op'I've heardDthatUJoe. qread dolR!Oh)](Ld, so muchW&it's mostly v 72SAYib it ou%. "y >6say<iqHuck. "p r@O1XWfunny. "But mayb!sa)E . Of COURSEb do. A1$<Tboys agre=AQreaso(1TomF,@% a!uat lump3Buninfeescaped, unawaR.Bby Joe timidly H1&ra roundB"feeler"3o hI rothers  # aa ;D--no[_but-- Tom!er derision!, uncommit s yet, join"Towaverer quickly "ex)#ed 1wasTT g f<ascrape4 as#tachicken-hearted a cling-o his garme"!s z&uld. MutinybeffectV/1laid$qrest fo{s moment."heMQened,&#no&H to snoreTQ foll13nexc#laG)lbow motioq,>V %@1twosntly. AT he got up cautiously,7CkneeZ#BsearQ<the flickerflections flung%!he"*!piJ !upDed several| semi-cylinder:3hinAbark%t sycamo)1finchose two whichto suit himin #3lt #fi&ly wroteV@shis "red keel";4qhe rollBB!pu"his jacket pocketFtM $he+Joe's hab remov$lD  owner. A CalsoQto the hatschoolboy treas most inestimable value--5m a #ch India-rubber b ree fishhook@$oEQthat !of marbles n as a "sure 'Lcrystal."tiptoed his way #!s Y "he  h drhearingstraightwayc=a keen ru  "irr \-V A FEWsirX&!waM ) BhoalNbar, wading qIllinoi].re. Befoc depth rea,%Chis  half-waF  a:" p="no%},#aso he k]1wimKremainingOSswam bing ups   $=faster than dcted. However, 1Zr6$al3AdrifUlong BoundUR plac~JfRmAis hA N6Aiecexark safP .R#,35ing. Shortly before tenFecn openroppositBDvillA saw2 ly ? Btree- the high8. Everything^quiet undCe bl- !stK2He dkRGZ1alleyes, sli!c, swamor four strokXclimb7(I)"yawl" dutyEPboat's stern!1thw)ited, panting. ;!ra!qbell taavoice gagH1 or:o "cast off." A]j "la("'sh]ZsAup, s 1 swQ4voy abegun.M in his succ7!fom*ait was2^AtripB 2. A/e!a HRtwelvcifteenSwheels stoppedDTom aoverbo."ndaLysdusk, lSfifty6Bdownk,<rof dangpossible stragglrHe flewY unfrequenl3leys$]C:r aunt's QfencehoRapprothe "ellE lBin a+)1-ro Bndow"a 8was,& r/ Aunt Po:Sid, MaryfJoe Harper's mother, grouped togeB talTH s b ' &the doort B dook softly lifBlatcn he pressed gHyielded a crack; ntinued push,G= band quQevery it creaked,wQjudge  squeeze~9ugh ;i #hiq, warilWcqweblow s=I5up. >CAor's , I believe. Why, of coursr-cis. No , gs now. Go 'longqshut itF"."j"edM"la"Ded" 7`|C"tould almo\"!uc nSfoot.#asJ "Q rn't BAD, so ay --only mischEEvous. OnlyRgiddyharum-scarum, F3He Z2any bresponoa colt. HE never mean12hart@2]%st2boy:awas"--g&he!cr[Irjust so{my Joe--always full ofdevilmentbup to  rischief G`as unselfis'3Das h"belaws bless m&w2k I.an!htz#m,:once recolEAat I3wed myself ]Yis6$Sand IP1Ahim Xgi#ldv!, R abus!!" CMrs.ba sobbebif her3 3hope Tom'Jvter offi*BB"butQ'd been 5in some ways--" "SID!"the glare 2 olc3s's eye,yBnot 12. "g9N_%st my Tom,"Qat hene! God' Cke ctQHIM--F< YOURself, sir! Oh,G2, IuR know=odim up!!!!Hesuch a comforjla he tohQed myJme, 'mosrThe Lor,!th2tqhath taSrway--Blb 1nam"21!w$Ait'sKard--Oh,! Saturday my Jo<#er bmy nos D him sprawl%aLittleH $K !n,TCsoonfKto do over K1hug3and1him6 IeYes, yj1howMfeeljust exactly/longer agoqQyeste(Snoon, took and f3to tPain-killI$ ct@e house down!Go%Agive"I  ''="my thimbleY3boy 1deaab P  H"An'rwords I7Ahear2 sa6Rto re 2#Bu\6Tmemor$X1the$la3sheqentirely as snuff;:T now,Nm Bpitythan anybody elsP #ou E cry -"pu^4Q%kindly word #imm$oY)DFa nobler opin$ H1befdStill,rsuffici Bhis  grief tB!sh] tIoverwhelm herB joy;eeatrical>aappealKarongly0is naturAo, b]R resiJbnd layX*R. He&on'F#ga|qby odds;Bends+ conjectured at fir!atP(/#e#le+;M+ec0rraft ha Unext,2]she missing ladspromised!shqB"heaQq" soon;Qwise-8*$"pA %atU "Sdecidk8g`fC"at tturn upnext town below,;|N(found, lodgede Missouri pQ"fisix miles t| nBperitIbust be`%1ed,1 hu have driv4rhome byqfall if5U1soo/  W searRbodieb!8Qfruit !ef Amere2cau; 2ingaoccurr} mid-channel, sinc Qbeing swimmers,otherwiseSBesca|r Wednesday A. Ifsuntil Sunday,3opexAbe g\!ndMfunerals&$ p"onA shuddered. g>Dsobb-j0 2go.  a mutual impuly two bereavedMA flu =/5Qeach Pb's armvQhad a|,A-o{!#cr jwparted.q was te+ far beyon`Q wontu+cRto SiMary. Sid red a biCMary<#ff 6. and prayeM so touchingly, so 62ith qmeasure1lov8OGer old tremb/Avoic  3welin tears ,B sheK&9h Rstill3A5#shZ"dsrmaking -sejacula1romB, tounrestfu and turn:Q "at* "as", !oa.| sleep. Nboy stole @;*cgradua;Aside, sha"e b-light=#andQstood4r Gher. HisIrfull ofA $e [5hisxq scroll.+ARto hi he lingRconsi"R face,arUsolutW "s x Bt; h(ark hastily iv9 !ntv k[2lipAmade#stORexit,pWabehindxAthreYhis way backmhB!no \Arge ! S2ldly on 2oatwc tenanRxceptWahAman,(xiE slept like?ven imag] CuntiGS 7 zi-<$on. 2 up. When h!pu`!a V6$abhGD, he2S quarrCacro  Qstout Awork !hiT !e , side neatlyn" ts a familiaraof wor1himYBwas &Aptur 3b, arguLRat it;1 beFAshipfore legitimate prey!qpirate, a thorough @ 1be Cfor z!enCreve8B. Soo<a qand entBoodsslwM`arest, torturin Cmean o keep aw:!an]n;Vhome-stretch far spent road dayJ"he r*DRabrea  rVA barr{JO k !unzbwell u1gilI:2eat=its splendorhe plungtream. A "he paused, dripp" treshold2cam + Joe say: "No,]true-blue, Huckqhe'll cl "ac?won't deser2zstm uZ>ğtoo proudfaat sorXI a. He'sBo2 ora55C whac[8/!e 0s is ourz^i4hey?" "Pretty nearKrnot yet_1wriIAsays:B aregO 2her+? W$\he is_2fine dramatic effect, @Aing +l.o%F. AW:o "co2fisshortly provide?2as WQys sea G!itGunted (and adorned)#Qadven*% Ba vaRA boa_ P"anp."wh p>AdoneHn 5hid)BawayAshadwQsleep 9!ss&'ready to$]>e#I AFTER dinner 4ang !ou-hunt for turtle egg+ 22nt *,poking sticks s yba soft vNe eir knees#duJ!A5. S9tAould{|igSsixty<cone ho6Qy werfectly round'ea trifle smaller`an English walnut famous fried-egg(gHCnighFanother on FridaBnq!1AftK7o%cwhoopi ua|s chased(j2anda, shedclothes ,  _tere nakePthe frolic far1 upqshoal wstiff current, wYtlatter {GC leg 1unde7^1cre qun. AndX9 !op) osplashed iY)Rfacesw palms, !7ing#Q aver-@Grto avoiQsprayQd finb g! "ug,jt0 st man du$s (9TAall WQtangl6S"egucame up b%b, sput q, laughqand gas1forth at on{ )BQ7imeh|aexhaus$1runBand  dry, hot!li ?+3covB_"up !by.!byk2terjo original performance onc/>3. FQit ocX /Hn skin re ed flesh-colored "tights"F6afairly!#qdrew a i circus--&bclownsP* b none  |"R thisRest p  `a. NexAy go %ir:+l"knucks""ring-taw "keeps"at amusement grew stanH1and a BTom Cnot ,; kEin k;@f;trousers %kiY!stfof rattlesnake his anklehq U!hecramp so lo8xhe prot+ @Bchar )di *Btime6Bboys!ti%ndwD res#waapart, dropYq"dumps, fell to3!lo1$ly"thEj Ato wlay drow1un.s u  r"BECKY" big toe;*Acrat`!9Angry5 1forD weaknessXqhe wrot!f ,!!thgcnot help i !er&itAEtookz"ouc Aempt# by driving 7a toget7!nd 3 m. But Joe's D1hadhn$Abeyo Bsurr.q $o 2Rhardly endBa miserB iIerlay ver surface.was melancholy, too"waeFhearted, bu)e~A noty 3howexa secret}^ to tell,B "this mutinous d2sio72not#asoon, Quld h$+1o b6Y@Bsaid2eatof cheerfulness: "I beY>Ebeen F 4is 1efooys. We'll( VgAThey>'ide1lasomewhY6UHow'd ight on a rotten chesto% f#--But it roused onlnt enthusiasm 2fad no reply. Tom!onz+3two!se}Aons;KAfail($ooI discouragz!k.M%sa  %" a A!lo%fgloomysid: "Oh, let's !!it up. I wango home. It'sQesometOh no, Joe''ll feel be- b{($by (T?!JuD 1inkah2?C" "u$ $4for)"(t) Bing- 2anyJS" "SQ's no.$Bseemp1it,0chow, w 2re t7! to say I sha'n't go in. I me b"shucks! Baby! Yousee your4,XAYes, I DO0#my.B--an)A, ifhyBe. Ih$2 ban(Bare.c'U"%ed.wlQ cry-I m,"we A? Po08aing--d8?t$it<?'so it shall.2alike i+Xe, don't you`sFstay|?ir"Y-e-s" !ou  . "I'll:Q spea-2you2 as- as I live.1ris\!"TQnow!"&9ved moodi [6and&#d<t!ho#1s!"hNQwants'to\,$ho1et  ed at. Ohr#3iceTand m[Ries.  V,A? Le0f#unts to. we can get0{aper'apAB< as uneasy Blarm 1seeGgo sullenly on/ sUAing.5# QmfortK Huck eying"prjO9Xso wiy5 such an om%K. Presently,v2 paxAwordwade offh"the Illinoie'AAsinkQglanc bU'3loo> `;yVYI#gog!ItfM L4  it'll be worse. J*usR"=)1canKgqAstay27+I!gosWell, g/--who's h ing you.+QCpickR scatqclothesjvtAwish4'd ol3youi`.wait for youq!weCV""3ra blameh5all!st q sorrowR awayM3Tom _Ba!6ng desire tug!at;#to ]#gotoo. He hsf stop,; sw Aslow. It suddAdawn y awas bemBverypQcT3. H2one Y-d?s comrades, yelling: "Wait! (tell you some!F#y j!ly1ped$SaCgM zh5e1ingc yK|cCat ly saw the "C"s # aN set up a war-whoop of apCk#1saiTRwas "Aid!"3qhad tol]m(,#2n't away. He made a uible excuse;O!hipIl reason "be:" fa#ev<T#DthemmA ^great length ofSs$so#men 1hol eserve as a A .B ladNCa gayly:4:9 ir sports will, cha6!im #ut:stupendous plan`Aadmi)wenius of it. Aba dainA and ,!he*ed to lear bsmoke, 5Joe caughQ ideaSBlike to trysXQpipes7!fi 2the@se noviceY1 d\Lbut cigarsPof grape-vinGQ"bit" Stongu8not manly anyway. $yo'Vir elbow1uffBrilyd!slr confid9AThe an unpleasant tastGgagg Why, it's@0as easy! If0a2e/sCall,"t + #SoI4 E. "Ic!no'hy, many aI've lookA peonm$ well I wish I!do's; but I 1%Tom. "T!aRme, h$it 1You1earK Stalk <k--have o qleave iKAif In't." "Yes--5MosUHuck.$7D too Tom; "oh,ZCR. OncW1 1e s5 ter-house. Do rememberBob Tann771 thand Johnny M1 ,Ilcf 1, 'ame say  !Ye\ !. B#ay I lost a white alley. No, 't*.z --I told[1. "472s iI bleeve4Apipe4dayMfeel sickNeither do>}]$itV1. B!be  4\ !! 7keel over wtwo draws. !le D tryB. HE'D see! !beRwould !A--I  Aa tackl2onc 3Oh,)2I!"G@s:youI any more%an!onqtle sni fetch HIM." "'Deed2oul U. Say aus now?!So ay--boys!saH !i BsomeRy're = ,W Qup toQay, 'got a pipe?aPae.' An2'll31kin%1carO like, as6rX  pIamy OLDw", (03 on'rmy toba+bCin'tood.' AndZ1Oh,'" r 's STRONG e3G= $ouhO1igh ras ca'm!Eqsee 'em-S4thagay, Tom 1ish0aas NOW5!!we \"weQerwas offQing, 27 w#y' dalong?Bnot!M4BET@ll!" Sotalk ran onV &itEflag"'grow disjointedBilen adened;erexpectol marvellously ]!^ry pore ip <boys' cheekame a spouting fountainiyj2bai the cellars   rs fast Kb to pran inund;2overflowing+M throatsqin spitx 2all*"doF = Fings"Metime. BothY1ere2ing2pal miserable, 'from his nervtfingersx!. t_ygoing furBboth pumps baiB"Mm|\)id feebld) =Wknife]hCfind Bquiv2lipb 1halutterance2'llyou. You go j`Rhunt r? !pro!No needn'tvHuck--wdS ,BgainAwait!Q hourCr%itpK'"to Dhis :yswide ap oods, both U!pa Aoth a1 0informed him2 if#ha!ny trouble agot riQ"itnot talkative atT}Snight4Rhumbl1henQ prepCdp "ft meal andBparez\ "ey[2no, 1fee,well--some+1 at )mӂisagreedQ2 A !id!aw-dand ca0{ding oppressive:#ai83see02bodiNXa huddl  !so1thet(Cndly*vionshipr4F/} 2ullj=aheat o  breathless atmospA sti<Ty sat94%Awaitholemn hush 7b. Beyo{jfire eK3swaSQup inAblac`!Hr  &aaAglow  vaguely revea^ foliage for a momTavanish4by " crc1str?#n & faint moanA siguL"th0 tranchesRforesboys felt a fleeting ,ywshudder fancy tha?S! Nd !!by/. Now a weird flash,! n?Ainto  hgrass-blade,=i and distinct %aBfeet $it[three white,/tled facoo. A deep pea "thP1rol:and tumbling "r heavenGlostw# r4Qdista$A Ƙ chilly air passed by, rustlingjyn!sn the flaky ashes broadcast !ir TfiercElm FN% stant crashD#retree-tops r'Mic:p$in terror,x%athick 6!p~q. A fewsurain-dropCl paf* .. "Quick!!W"foLtent0csprangs\Broot4amoQdark,awo plu&same direction{ blast ro trees, making &as it went. One blind yH #ndnbf deafJhFnow a drenchinv1 po@#heK hurricane droveGsheets a`c0Qround<" c#u Beach#,the roarafoj-C!s >eir voices7 ly. However, one by; O 8\ook shelterk  .Qcold, /Qstrea5 ,;o%!y =?DseryR1o b teful foK  x 1 olBl fl{Q$soW2ly,0 Wd noise1hav[A The6(esS!er:qhigher, Zthe sail to "se/1its ]4X"wiCaway- %. Iseiz0"s'1}Rfled, ye bruises, toԁ2oak`U86d-bank.b battlsTst. U}R ceas conflagrf of lightnR flamii*AkiesSbelowout in clean-cuTTless Qness:"be:the billowy ,<Bfoam$@Z0 of spume-flakIhe dim outlinSdbluffsoside, glimpUD drifting cloud-rZ1lan1veirmE "L9 some giree yielR>! fand fell younger growth;Vthe unflagg/ S-pealnow in ear-splitting explosive bursts, keeBshar8 unspeakably appa[storm culminatone matcy ceffort# qlikely *+9q to pieQburn ,! ig, blow itBand rq creatuA it,av" 2. IKra wild rfor hom#}Q. Buk}'do forces retir Aweakd h threag  peace resumed her swa  %nt>Scamp,YC! d3wed3hey`Q was Sthankp07eat"^Dthe  ir beds, was a ruinTJQblast? w uwere no3Rt whecatastropppened. |! i pz!ed9A-fir/Qwell;5 t-v-AheedSlads,3Bgene0ymade no prova +/#stHc! m pbdismay2|Q soak3t eloquent iNHtres/,%,1verY0 [aten so far up HQlog iL  dbuilt !(wW it curved upK\3 &$edn Afromground),%a-breadth or so# \V2!weB; soCpatitj-t7kashreds+qbark gaBthe 2sid#qed logs+ay coax61"toQ. TheRy pil=$5boughs ti]# r furnac<|# glad-heaV751g1y d{ , !boo"haOXD feanN ][3satJd aexpandd glorified8Q<]9ndry spot to sleep %6-B. A@6sunssteal iN2oys !si!ov"em sandbar2lay1<Ogot scorche.8drearily se(breakfas"CrustJcstiff-4mhomesick once;:%Bsignbto cherTup thp+;ɹ2C. Buc 1not %fo6, or circu .E, or"%Aremi1$ imposing &aa ray 6eer. WhioD, he`7mRa new devicaK Hqo knockcbeing aq e"be*c!nspqa changOHeattracis idea; sonzs;m^head to heel black mud, like so zebras--alB Zchiefs, of course/aEwent* `A"tt%=s settleQg!By|yn ree hostile trib(Vupon @ bambushdreadful 'kQ%hcalpedHvousands  gory day. Conse$lyan extremelisfactory one. rassembl\Dcamp-rsupper-*<|`KYj4but[ifficulty arose--!d]1notk of hospitalityR-1fir<8 ,: qsimple nAsibiI@"smv2 ofER processeLDaof. Tw davages;7wF 3hadd$ed%. oD}2 wa;with such show 6! aCSmuste# Apipe# 1tooqir whiffA tqdue for1h1gladBgone"rya0Rhad g;S e now smokeA hav Ao go^;Aget 67d be se#un02abl1not AfoolG jhigh promis, #of }practised cautbafter R dfair success y spent a jubilanAning\FeRhappiw new acquirp#would have iwnd skinning"QSix N s. We will$toqnd chatL?And bsince we=nther use >, . CHAPTER XVII BUT} hilarity ?Btowntranquil eZafternoons Harper~Aunt Polly's famiE22ereS3 pumourning QgriefXP . An unusual quiet possess= village, althoug"Rordini 8 !all consci*Ir!du ssaan abs^#ir+ nblittle*sighed ofte.Ftholidayqa burdeL !Shildr61 no) Rsportz h>gUbup. I Becky Thatch1!unqself moB2abo Q dese5 aschoolc)C yar1feevery melancholy sDund  t73to FPShe soliloquize:if I onla brass andiron-knob-!:(*Dgot ` e%to * him by." And she choked besob. 5)7sto CXo9!tchere. iRto dog  x( say that' n3 the whole wor Bhe'snow; I'll <.6A seeb.12is 3t broke )1wn,qP!ndCawayQ down9Uun quite1F!ofs Vgirls--playmates of /and Joe's-- b 1ood2!Qv1 pazfence andfNArentqhow Tom]rso-and-+d2ime"csaw hi6'6how#3andmrifle (pregnant# awful prophecyu(2eas "!)  er point>tWu2actwC"heClads" 8addNpa"and IBa-stR just so-- as I am nowOf)qwas hima Aclos e smiled,Y ?2way!th!l+"me !--R, you knowD!I wZ5Wmeant ,C/1can TL a dispute5who-Bdead.cin lif`Qclaimat dismal|qand offLevidences, more or l: 1amp!DwithVrwitnessDwhen ultimately decided who DIDrthe depl"exCwordthem, the luckR2ies Aupon1selA sor"sacred importanf z1apeand envie=che respoor chap, whono other&z"toF,)tolerably 2c pride 01'Z9# ucked me-BRat bi Rglory failure. Most s "athat cheapen&!1incWWa=4loitered zs2rec2r memori!osu2oes3wedC. W\-B hou 1UfinisFnextell begaoll, inst# r  @I1a vtill Sabbath2the ful sound %in<he musing9%TlSM#on` &rs,V5ing$ vestibulQnversCwhispers#1nt.zQthereF$no/Athe 4 ;g]6eal"of dresses +f womenZ<eir seatsZ3urbJ= T. Nonpi&er q churchd!beS full5. TXMa&Q paus expectant dumbn  CV,D#Rby SiEMary yV C ball in$2 qcongregb old ministere, roselBntileos Bseatront pew$ncommuning2., broken atvals by muffc5obsbaspread,hands abroa5prayed. A mov1ymnEsungRF tex<$q: "I amRH Qe Lif2EQervic'Dceedclergyman dmLuch picturA gra  6wayA rarZbthat e4!ou)!in9Acogn!Uthese,(!pa5!herpersist"bl1him rm always Ys?BseenRfault( Sflawsg +1relaGaa toucIqincidenm&iv`e:RqillustrN.Rweet,X3ous%s people !, how nobl_ beautifose episodespt  O rank rascalit"}.bcowhid 1 be@ \ 2and D pathetic tale1n, e"at r rcompany aand jo( !erba chor swelled upa triumphant&,6c it sh! r-s0ASawycre Pirat3#eds k-1envQjuvenkGDBconf"in%$ea&"s oudest momen_1hisq j"sold"Utroop"ey6 jsbe will;"beFBridiculouCtp UuB I" Tom go81e c )esd!cc4R's vatmoods--uhad earned YByear he hardly knew which expro85ostK,!Rto GozBaffe' BqI THAT !--RchemeoAturn'bhis brpI Qatten sa y had pa4o& mo'og, at dusk on 3, lmvesg+t6; U slep   1edg7Bthe 1ill nearly dayligh`UcreptZback lan@ TsleepE  0a chaos of invalid21nchA>f fMonday2 kSto To1tivhis want Aamou1. Id!ttI<@3say> fine jokB, toHeverybody suffe'G'most a week soAboysra good 1but01s aMjC you% Qbe sop-Aed aNrlet me ob so. I-QcouldO:U overtrl1hav| eN&Aive -=2hin9D1tha" warn't d 2but qrun off=Yesedat, Tom,";Mary; "and I believR OihAoughLCW1youR?Rg!, }#ac7iZstfully. "Say<", mJr'p?" "I--w*know. 'T?b'a' sp'NILryou lov UDmuchwith a grieved tB discomfo5Gv!me! c enough to THINKc, even+ didn't DOqNTuntie)vUany harm," pleadeBit's giddy way--he is2 inba rush%he|uinks ofrUaMore's Qpity.\. AndAcomeADONEj.1too'1'll !, 0!da 'Q late DQyou'dSd+"dfor me>Acost&2so 9 j1you V` for you5H2I'd)ADtterakDlike!I Vnow IVsrepenta1; "s dreamt@1any(I,,L much--a cj$$'s!no2. W QWhy, Wednesday night I!tZsu ! bl # b 8+ woodbox A nex Uhim."TRso we9 S 'do ByourQtake  0?8 !usfD<$Jo#'s -uhy, sheA! DiHNOh, lotsso dim, nowWtHa--can'lIRSomehAseem2ind ewind b)6.{1"Trh1der9s[2p. Come!"6  !hioo$ aforehe anxious minud then *AI've i[(.! t rr!" "Mercy on us! Go]-Tom--go on#R< 1you.1, '*door--'" "Go ON]VEJust;ctudy a . Oh, yes--rS you dkwas openeAs I'mMGQI didZn't I, MaryA[}Bthen^r I won'obertaine9Qas if4 Amade'P/cWell? -I make him do%Yb1himB--Ohyahim sh   M"land's sake! IAhear% b@my days! Dstell ME1any! i 1amswV. Sereny 4& i^an hour older.^Pther getCTHISj er rubbage 'superstition.#1t's/!!brbas dayVF Nex3 I r BBAD,NmischeevousM )"an+ responsibl3n1--Ik a colt,28 Pd$"! AgoodjgracioF you(1cryU"So& "Nof* nM)" "Then Mrs.e@2cryf "JotF3ame:C2she !ha SwhippERcreamshe'd thrit out he"CselfRsperrA1cyou! Ya#Qsying2t's1youdoing! Land ae]Gno!SiAsaidd  D" " O ! IRLBSid. did, SidMary. "Sh.d"leU"heL1TomSHI{ !h^6$off whereM$gone to,  fDbeen0sometimesTHERE, d'youd that!:92his8 QwordsG"Anhim up sharpTI lay must 'a'an angelcere WAS W xCtoldZ 1Joe>`a firecracker73Pet\ainkilleraas truPeI liveQ/!loCtalk%dr;Qe riv)1r ud%3havHCA Suna qand old MissRhuggeH4cri  "en bIt hap"!so 2surT'm a- sftracks /2n't`i.Zq 'a' se" %! \what?Ie3youq, " IwBhear`C wor2aid  !en  Pso sorryq I tookRwrote4piece of; bark, 'W}dead--we are only off 4'p %T tabl_  ;'hCyou sdA, lacasleepv8Iand leaned2lip6 D ,&I;bforgivqhm#at4she4crushing embracpt, feel lik( guiltie%villains.#wackind,  Dough~a--dream," , faudibl!up! A body doeV as he'd do if heVyA. Hea*FMilum apple  s 1was-,t--now gto school.=qto the Oc1Fat2f ui  ~2ack>'d-F1ing"Bmercy [l#t q on HimHis word, Bknow unworthy ofa 1nesR FHis *ad His hand+slp themEugh placere's fewAsmil 2e o= t{%4wHis res>long nightUDs. G2Sid >Q--tak+r)1off( 've henderClong.e children lefw old lady to call o vanquish her realism!sq marvelu(3had1Q judg_"toF_pi4"mi,"hethe house.XAthis zrthin--az\Bthatdout any mistakekWhat a hero/a, now! Henot go skipp~(%Rncingm"a dignifi!agƌXa@ who felthe public eyEm|cindeed; he triesto seem2 th2s ooaremark-he passed along?tW5Afooddrink toSmaller boysl%1flo+cels, as A to 6"enw"le$#bys the drummer1heaQ cession Ae elephant lead menagerie :own. Boys ofown size pretendVIknowaway at all'4were consu with envy,bthelesW EUgiven& i#av1swasuntanne6?his glittnotoriety3Tom !no# Ae pa1ithBr a =e3Dbaso muc}bbof JoeAdeli!9eloquent admir)݅*"eyT1two"esMAnot "inCsuff+."stuck-up."s#1tel ir adventures]5ungy#2ers9B;c@ 9ran end,aimagins}!irrfurnish material+,yorir pipewent serenely puffAroun Q Qsummi; glory wadCchedOQdecidbe independen@ ]6now. Glorysufficient. He_2liv|R. Now !heTdisti?'a, maybJ?qbe want o "make  !le!-- h  qas indi1Qnt as other people. 6 arrived. !seAawayQjoinetrroup of5%Oalk. Soo#!obed$s%3 trYQgaylyR ERforthi1fluJAfacedL Hbe busy chasing4mat?so4th a 2sheV a captur9h$icI3shea+/Cher 1vicinity&89qto cast!nsS eye =gPW1ch ~RI"i2!viFc vanit wB him)so0Awinn!im&only "set "#moE6himSdiligAavoirc at he knewKboutR gave~ qskylark`;+ved irresolutelyBQ, sig 1onc 3twi#glafurtiv45nd @QTom. 2snu71was1ing  particul0"to Amy Lawr7 Dne else. SheArp pRwnd grew1and uneasyKc=2tri1go away, but 2eet8t+2ous:1car71her"he "to a girl*as"'s%g!--)sham vivacity:Mary Austin!  A, wh&"n', #to-n?Cih!#--*Qee me"Why, no! d1? W1sit(Ix!ins' classu1go.Xw YOU!? oit's funn!n'+D you>uw2you 'QicnicU%Oh!jolly. Whol)XMy maa}5oneRcgoody;  she'll let ME com)Hieill. T#'s<!any#AbI wantQI)!ev4# nice. W7Fs itbBAQby. M r1vacBk fun! YouM r1oysAYes,tfriends to me--or3be""he:4ed Ay calked d"lo   the terr$Tstormbisland[h9P#nr PNq tree "o flinders".c";rwithin EYBfeet6lQmay I#G]rMiller.P.1And 1Sally Rogers&+usy Harper. "And Jo[Aon, g2claiof joyful"s 0 ogged for invitNs"To]1Amynturned coollyPcstill Atook# 's lips tremblAbars ca1her;Y!hi$se signsa forced gayet con cha tfJ7?!ouny 1got( !on aand hi61rand had4rher sex4"x'xGsat moodywounded pride,qll rang roused upua vindictive cast Y1gav| plaited tailsik, swhat SHE'D do arecesscontinuedBflirO jubilant self-satisfacAnd he kept )Uarto findG1lacerformance. At las AspieEsudden fa-rmercuryb#bcosilylittle bench behi/BhousT 4t a27S-booklfred Temple--and so absorbed2hey #so?Atoge Rbook, 1didby 5 ofsq+lB besides. Jealousy ran red-hveins. H1hat  2for "waqcchanceQhad o  a reconcili. He callc-r a foolhe hard names a!ofD~#cr3vexd!Am tted happily1, a'y!, 8.e!rt= Asing 3butRtongu{8!it 4He Bhear+,Aas s BwhenZexpectantly h;!onu1ammh awkward assent, (/N sFA misQd as Awise !toaBrear! ,0q and ag%#ato sea eyeball"=1ate>!clryj belp itqit maddUL q5Bough"aw;  ]Thatcher\ once suspe(`iC# lthe living. But3did59 +Ber f%/3toosas glad#Tuffer^3haded. Amy's happy pra<$inA!e.!hiac g&,o attend to; s must be doneAtimeUfleetin vain--N chirpedkT`, "Oh, hang hi%k  aget rioXher?" r those 9he said artlessly !ou" """ chool leJeShe hax3hl, t. "Any(Qboy!"p#gr3is teeth yGH1#buSaint Louis smartd20and is aristocracy! Oh, c a, I lij1youfirst dayuWqaw thisa, mistAnd I 1ick.Y just wait_ I catch you out!9%1tak  ermotionsZArash+n+r= --pumme>hI1kic&>and gouging.{you do, du0? You ho',Qthen,?learn you!" r Fthe Qflogg'as2o 15fome at noon. His L not enduByD3 of4 iAThis jHtbear noAB thea distrf'Rresum) 1 in'h bAlfredI*sy"">!no#to,Ktriumph BclouG 3she/nterest; gravi absent-mindV-s followeGthenLR; two2ree -"pr!up2ear footstep" iba fals%;i Ashe bentire({1 wisbEdn'tjit so faVsen poor Q, see!loP2notV)Ahow,E exclaiming: " aO one! look"1s!"{1pat(Oc at la99S saiddon't bo| Sme! I2carathem!"` LBearsagot up)Cwalkq2. dA dro'alongside+s-}2"buRsaid:,2awa&leave me 5e, .1! I1 Shalted, won# waZdone--forCFaid }i !snooning #hej on, crytC!mu Z?he O qwas humO egQangry!ea bguesseE Vtruth Rimplya;Gn0nXAventRspitee)I". far fromh=be lessPDBdGZ !3g~to trouble withoutS riskTAselfR's spn Cfell^ 4. HMhis opportunitZ!ly.e !onLfternoon/T?&inKr page. ,pi cwindowm R#ou5vP. She startward, now, inten28tell him;~ thankful%healed. Before s half way4, hh1sheSchang$migi 4 of Sreatm!heS@C her came scorc9R:S sham|yvz6 ge,!ondamaged i's account*"tohim forever,Ohe bargainVIX TOM 1 at:'adrearyoa_sm Qaunt R k1 sh\-Qhad b tQorrow an unprom$kmarket: "Tom, &1a n  2kind live!" "Auntie,o2aved&e?4Ryou'v ! e I-vTSerenM,ran old softy, expectingAor!o ZL :g$atn0 2hat4,!loRbehol{ s'3fouf!Jot7 2wasabtalk wt&, I don'1 $Q of a9will act  that. It makes me feel so b [-go\A andG!L l of myself never say a word." Thisa new at  %  3nes( aLH!toueCjokeBvery ingeniouse *A mear shabby !He "2heaA"no5ken71 to,#4he IBdn'tvit--butCT2Oh,i#'!k. c0your ownrishness66T Lfrom Jackson's I?2 to $urt yoo?\:ASa liem<%91n'tC to pityk* Rve usXCsorr8q!knJ8was mean,!#I J CB. I s, hones1),. Ayou &W<ibme forI"toV1you'&us™(n't got p!del!th nkfullestMi} 2wor>I7bhad asta !"atY2you ever did !it." "Inde ' 1, a%--52mayOQ stir2H!OhT Rlie--,!do[QIt on 1kesPcgs a hUFbtimes *<a; it'sH0 F. I k,1you @?X4"at)"&me2I'dLW#it Z power of sinsV72'mo}you'd run eand acted2it reasonable;n #me  %Ryou g y 22, IFgot all fulRthe idea ofa' the churchI("n'GBh2 a$Qspoil$Sotpbark back in my po 1andjA mumkW.1arkq2ark 13we'+ d 1wak8qI kissee--I doL6linS%aunt's face relax[! t.Sness %inq. "DIDqkiss meM !Ar.3 su ?did2Dq--certa|ArmRz ~Because IBcobyou laBare moa-Band "3ZBds sz Aruth.* tremor inRvoice&K9E!!bexAwithbf1 o " hTgashe raqa.!goAruin$1 ja#T c in. T0 _vher hand< erself: "No, 't dare. Poor boy, I reck(+ #ed bit's a1!leBlie,7's such aQ1romaI hopeLord--I KNOW BLord 1forr_.Qisuch goodheartd"it3"wa'#fi 1lielook." ShexCawayRttood bya|b. Twic-Dput 21takA garUand t:refrained. Once m1ven1rhis timo3forN)3Wc}:> llie--i!et%1rieR." SoG3. Aa E, J7y"flQtearsix3: "Athe Bnow,}5'|'mitted a millionl)!"X THEREAsomeAunt Polly's manner"~!BTom,; Bswep low spiriVBhim lightRhappy6. Hp&A luc YBupon O8e of Meadow Lane Dmood+determined3. W|Bc's hes$ h]; Iamighty to-day,6I'm 9 ,#2 do!4ive--pleaseB up,S you?vDgirlKRA him<dnfully( face: "b3thac. 65 TO , Mr. Thomas Sawyer.i AspeaM 2youR!to*h a!pa!onCd stunn-1 noYnkh!ce(inIrsay "WhHs, Miss S&?"j[ ?$&it%dby. So$1 no(OQin a Rrage, 03He mopedAyardf1ingObwere azBand ing how hebtrounc%if:iatly en#erd 2R a st"y remarkQ5. She hursWbreturnngry breachcomplete. It EY$to Bhot 0Rment,s#AQAwait)Q to "02in,was so im see Tom flo\injur2. I;1hadany lingl!noQbof exprAlfred %,aoffens;2lqad driv=vaway. Poor girl dOrhow faswas near. The maMr. DobbK n͢middle agean unsatisu3ambDqThe dar!ofdesires was3#be a doctorqpovertyWdecreshould be*Q highan a village q. Every he took a mystmQ book>CVk and&$1 in;{s "no6.5Breci8"R$! t& 3ookJ#lo21key#rqot an utMwas perisve a glimp[Q@Bance+T came1boy8c theor-1 Qnaturqno two 1iCalik6t way of getting5ats in Base. "as1pas!by4Ddesk% 1nea~R door t3tX)5ae lockADrecious H  glanced around;>B next instantHOs1The title-page--Professor Somebody's ANATOMY--carried no informa/mind; so s+!ga1tur s"cau!3oncaomely engravW frontis> --a human figure,qk naked !CK+dow fell Apage}3TomA ste$inAdoor&fcaught tpicture!bsnatchs"to >aR hard BSdindpeEathrustfvolumej2tur@Ce ke  out crying'1 shand vexF. ",2are1 asacan be4sneak up on a persou"wh 8y'r+." "How yH2looS$ta?" "Y$Abe a  ;wfyou're&tell on m1#ohQshall) !! 1 be whipp ICwas 3%P astampe,!fokdRBE soU i!% *2'E*. %&and you'll see! Hateful^' "!"she flungthe housd*cexplos>\:still, rather flustereC1onsBt. P+ O+  !Whi"cu&k," aCqis! Nev2xen lick! Shucks! What's a#Sing! 4ClikeS$--so thin-ski and chicken-". 4Aof c4 # Iq)t$ldV3'is lA's o@Gwaysa even a<&|tC7? Oxktask whof%3his book. Nb'll answe en he'll doUay hekoes--ask firs\An t'wOns" jiBing. Girls' facese*9yMM2bonT1'll .i  hatight - ', p1any#ou.*!coCDJ'added: "All,3"'dQto se"inQfix--!er sweat i"!")4joi0gmob of: lars outsideC[ags  !nd:ol "took in Afeel rong interests studies% #hea 1 at gc side Broom !'sX d him. ConsiL&3alltT, he 4Bpity`B$et+2all1uldo-/"HeVup no exultd!lly worth[ n  \ %Qdisco@ 6#adeHH Sfull I own matterE9a~72aft "t.64&er lethargE *"Xgood the proceeding _! 3Tom"ge(&aby denrhe spil2inkCw  >/sSG:adenialr mn4TomssupposeV A gla{Bthat%sJmergency paralyzbinvention. Good!--han inspir4! Hk"ruXbook, spring thi)"3fly5NAolutAhooke$ont" i)was lostl ,rTom onl9{ Wsted , bQ! Toorkn Sw *O  Bfacex1. Eeye sank under AgazeLv9smote even Pbnocent/Hfear>1sil%B onez count ten =kAatheV.#raH npoke: "Who  book?" nNsound. On 1havxrd a pin,1a still!continued;CAsear-4fac|  for sign uilt. "Benjamin@,!tuS?" AA. Ane  pause. "Joseph HarperD5+;I uneasinessE2and4#sethe slow tor+es TFDscant ranks of boys--c ,ed!ur3 : "Amy Lawrenc,eA shak head. "Gracie MillerQ samerYLusan! 8his)rnegativ(2waslMA was"bling fromcto fooQexcitG and a sa!op_!of/Rsitua "Rebeccazc" [Tomhf#--I!Cwhitterror] --"]R--no,4(me6b" [herA rosmappealE?XAG29lik;Da%br(3prafcis feehouted--"I:"t!}BstarperplexitH6incredible fF3Tom!"a C, toHqdismembfacultiesk wYNA for=#to-his punish"=burpris gratitudB adosCshon64himBpoorv!'st Bpay /O)1 IBed b~splendor qown actv Sb outcr7most merciless fla DMr. 2had8,badminiBalso receiSN!ce"added crueltaa comm o remain Shours0ld be dismissed-- knew who #wa k]h;his captivit3don he tedious s, either$C6bto bed, planning venge jgainst ; ;arepent5#ol4"ll^ 3for 3'jq "ry8"thV1ingHW %way, soon, to !Santer'%she fell asleep at las's latest0sdreamily inRear--, how COULDbe so nobl23XI VACATIONapproaching),nKqsevere, rjQexact1han[,i!a .!shV on "Examin" day. His rodkhis ferul8! seldom idle now--)=&st # sUpupils. Onlabigges7 young ladie}e e twenty, escaped la #' Ss wer vigorous onO!; lC he \,K6 wig, a perfectly balQshiny=#, Ronly d'B ageq T of feebleJMmuscle. }great day "ed?byranny#waEc=face; hec! H)!ur?Ie least V2comTnQnsequ Y1boy59 air dayNp8Fz)1plo1 rezy threw away noo "to'  a mischief y a$J"im\r retrib8 & rfollowe*yCful vCso s|Qmajes^| from the field bad#stBtthey co2tog_Ԝ#lag7 QdazzlaictoryBy swaign-pa."'s(BCchem3askEhelp0s v`1deldRboard Rather's f]3K$giboy ample -rto hateFTd's wifHBgo o"!sitSuntrySew da~J#1to !4fer !he O Aprep f3forQoccasAA3by 8Zty well fuddl Q boy  the domini roper condw$G on A Eveh1q"manage"Bhe n[ <9Vwaken hhurried #toB. I!fu; "im!esHc arriv0+" iewas brilli' Cdorn wreathsbfestooDfoli!xflowers! s 1ronH 2 {d platform,< Alack=#? tolerably mellow. Three rows of benches on *(!si\Rd six%1in "c m.foccupi dignitarw1own)% aparentusTg left, backh citizens,Dba spac emporary5u@"th&Blars3 !er1taktexercise ; 1of S"he"drY0"toxae statdiscomfort; gawky bigRs; snowb_ X clad in lawBmuslHKbcuousl,ir bare armsir grandmothers' ancient trinket&2 biApinkblue ribboLir hair. A>/!tas fillKnon-participa.%2. Ac"3boy!upsheepishly recia"You'd scarce expecaof my o speak in public stage," etc.--ac5ing#ai-r Vpasmodic gesturech a machine mahave u csuppos ' a trifle]aorder."he*7safely, though cruellye}3g9afine r!offHD?dp! manufactured bowqD. A u1lis$B"Mar a+Clamb]#, Qgbssion- aurtsy,yher mee,ru!wn#ShappydSawyer ӕited confid o1int)1 un hGindestruct"Give me liberty orme death" speech1furc frant4Aicult  $ia middlit. A ghastly "-fbAseiz m, his leg5ked m=  to choke. True  1nif/!ir tterly defeab a( attempt at,it died early. "The Boy StoodC" BӘa Deck"!owPAlso 3Assyrian Came Down,"!ot{eclamatory gemV"rerd,a& f^ meagre Latin class ,Qhonor prime fea41ing"in,original "compos\ 3s" a. Each-!er: !to<qedge ofr 1cle.1roal anuscript (tis dainty)F"eqCreadQlabor t to "expreDpunc!1the.r had been illuJ;on similar  Sb befor^, doubtlessir ancestoremale line F nCrusades. "F[Ahip"wone; "MbOther Days"; "ReligioHistory"; "Dream Land";qdvantagv  Culture"; "Form Political Government Comp and Contrasted"; "MelancholrFilial LovVrHeart L#sp A prevalentY!se\ca nurspetted m|B; an>asteful and opue1gusf"language"; <qtendenc dlug inRears 6 ularly prizedphrases until+ Fwornx%3outr peculiRthat ZX CmarkBmarrlahe inveterata r sermonwits crippled tail  Ae eneach andby one E m. No matter wCssubjectG Rbe, aA-rac 7$ & quirm it into some as "r AFa" rQus mi} !ul*templateAaedificG glaring insincerid"_not suffi o1assYabanish  fashion'Lit iT to-day; it never will bex,orld stands, perhaps. #]5ll our l$2herD1 do$feel obligwAclos.!iru1ithkBrmon|/aill fi >#MfrivolouT  Dgirl1dongest9XQrelenhly pious. Butis. Homely truth is unpalatable. Let u2oK"!."QXfirstNas read9one enti#1"Is (n, Life?" Pgreader can endur_'bxtractNit: "I5common wal S life(ful emot!do/ERthful9ly"1warvsome an qed scen 2fesc! Imag is busy sketchingt-tinted3Prjoy. Inû voluptuous votary}TEsees`(1amiA3 ei ng, 'the observe4allrs.' Her gracRarray7snowy robes, is whir! f"uga1maz3joyous dance;E eye is b !es rY 3 is#st gay assembly.-BdeliIf"#quickly glides by, welcome hourRs for1ntrBintoe Elysia cld, of bshe ha2 g\w fairy-li eF !ry appear kher encharvision! 3newjis more charm}aBlastfas1nds{Aenea@ais goo߁xterior,#is vanitflattery3onc 1souqw graterharshly1ar;ball-roomCqlost it4sF%Rhealttaimbitt= Qheart1she bs away1Fnvicaearthl8s cannot satisf U1ing1theHJq!" AndV#or3so D!rea buzz of g/1to 3durB $, Qwhisp4ejaf"How sweet!" 5qeloquenSo true!l had closed jc ly affli e\enthusiastic n arose a slim,X8r, whoseK07' "C" paU42comMTpillssigestioX>`a "poem." Two stanza&"it=!do+ "A MISSOURI MAIDEN'S FAREWELL TO ALABAMA-qlabama,%-bye! I love1! qBut yetLzCdo I:+1thec/1Sad1, sQought(!myR~bt doth And bqrecollesng my brhRFor IAwandH|!th[wSoods;Have roamN a;Tallapoosa's stream53blisten, *ssee's warhfloodswooed on CTide Aurora's beamA "YeM8Ame I to bear an o'er-full4`Nor blush4urnmy tearful eyeB'Tisno strange% RI nowa+pm2(to0s left I yield; Qighs.[W|sand hom2min  is StateW1TvalesL"--F!spq?fade fas (1col ag3eyex 9eoen, dear ! BturnQISee!" c Bwere4few$ho $at "tete" meKl"bu "po S very|ractory, theless. Next/ed a dark-UBxionEIfack-ey Qhaire qng ladyQ paus2 im'vwJa, assu tragic ex$n Q " m~ d, solemn tone:A VISIONN2Darbtempes 2was5 2. Aq on highA+2ingr quivered; butAdeep0"na T heavy thund "coE-qly vibr 1ar;s]rerrific n .gry mood-de cloudy chamberheaven, seebo scorQpowerXted over itsAor b,allustrFranklin! EvqisterouYwinds unanimaM"th mystic /Qblust?3as if to enhanceBir a Q wild!#. . "At5 a$A, so Rrearyv human "mymspirit sigh@eQbereof,k1'Mye#iend, my counsellorand guide--My jop Qgrief,second blis[in joy,'RQto my1. S#ve^9o. Z 3ose p!s !d Qe sun9lks of fancy's Edekromantic , a queen of beauty un#qsave by !ow_ctransc xAlovevPsGAsoft 1, iqQfaile2mak a sound,"bu1mag0thrill impartedgenial touch, ather unobtrui< Bhave away un-perceived--unse4. A1 sau res4herf1s, "ic5s e robe of December,21poi 0nd]Aelemtcwithoub0Tg5two"bresentV3Thi;(ma)1tenB}h1oundwith a 5so v all hope to non-PresbyterianN  #!okApriz%1osi~ Gwas /Qto be sfinest >81.cTmayorvillage, in deliveJ  rhe auth6 it, made a warm speech i Bhe sQby faT"b "" !heE  that Daniel Webster well be prouit. It may be rel2ng,xthe numbes in whiz4aword "4Qeous"over-fondlegxrience referras "life'sS,E$upeusual aver`1Now}m,"1 alA ver3k1putchair aside, !ed9 !udldraw a map of America #A, toa"ci geographyoupon. But he 9sad busi] !thu|&y 8SQa smod titter S!ov*=!e '/ nB wasDset =Ato r !it:sponged out2Qs and=dbm" he only dted themQE!evn E&ApronGMd$)$hi'>J his worky(if@PBnot uput dowQmirthBfelt"al B wer #en him; he i| was succeedingFyt;\5uit even6ly increased.Q igarret above, pieta scuttle 1his|,@$is- came a cat,nended a$ q haunch a string;1had&!g V 4PEjaws=qrom mewDslowly de#Q curvwAward-Aclaw,swung down-qintangi!!irRxKahigher2 --the cawb six i"absorbed teacher's head--down, "$owshe grabbu2wigNher despEclaws, cluS4iw1nat7u ", " i} Yr trophy7" ibposses 1And0Qthe ldid blaze abroadx's bald pate--fo 3, boy had GILDED it! That broke upEmeet3boyavenged. Vacn  3com NOTE:--The'+"a" quotaS tpter are taken%out alteriBfrom avolumeqtled "P7and Poetry, Western Lady"--yj1exa%0݇Qecise  *agirl pQhenceEAmuch9 Aappi"anYcere imUs be. CHAPTER XXII TOM joew order of CadetTemperance, r attracN  1howw@ "regalia." H3misRbstai^Q smok9!ch,Aprof as longSArema1a m OQ he fn thing--nam&a1 noBdo a+" iZasurestO  3 body wanA!goVQvery Pv$b soon W!rm] q# aQc to drc)q swear;Rgrew %so:!nor jL bof a c6to display i8red sash kept himwithdrawing from . Fourth of JulT61;Qon gaat up --iC"A2worrshackle7 1y-ehours--and fix0Bhope? old Judge Frazer, justic)Beacewas appares'"bei/ Ta big*funeral,  o9an official. Du( ree days[;Bdeep+rcerned 62the' d Qungry1newit. Sometimese: "ra$--#heRventuj1get Chis practiseO.R-glasrmost discourag yJbluctuabAt las'as ~Amend then convaltQwas disgust9'qnd felt !ns&injury, too !haQsigna,tat onceq"at#Bsuffc relapBdiedrresolve kP! trust a mand@T+Cpara a style calculated to killClate^Benvy$1fre[m@!reAsome!a La swears Ors surpr 1dids7Qsimpl| hga, tookBaway Charm  GDqly wondQto fiIacoveted vGwas beginning -4&ng Cheav}M ands. He attempt$BiaryPLed dso he abandonedT?!rsanegro minstrell!s cto tow aa sensand Joe Harper+-up a band of e-r were happm1twonGloriousbwas in a failureWAit rFT&, encx ! i!seI-e&t! aeatestBAin tabrld (aT!/ed), Mr. Bento actual Uniteds Senator, prov overwhelYQdisapXBment Gwenty-five feoqgh, nor +Q anyw;neighborhoosrA circu qboys pl"J @#  in tentsof rag carpetAadmi ,@2pinOB;two for girls#ens. A phrenologisa mesmerizerI3wen1lef H8_Udrear "evf>=BwereUeCAand-'(1es,jDthey,A fews6so $(Bonly2 the aching voids between acae hard= Thatcher1gon}bher Co_ ainopleat!Bher ks } bm1sidaElifeP.dreadful secre*athe mu  chronic miseryєaR canc^ q permanX* 2aingnmeasles. wo long weekl Mprisoner, dea}1andw"Aings1wasQ ill,;O !no3. W2cgot up aU3andafeebly{-$"!achange3com./$"nd2 cr.rb* "revival/0 had "got *1n,"{Bdult"thyLbbhopingsst hope!1e s$ of one blesOQinful"- A cro(Ahim Qwhere9Qstudy Testament4Rsadly9- "deng spectacl_  Ben RogersKvhim visi6 #ooca baskBractE!huup Jim Hollis B calLs]KK{2ous0ing of hisA 2 as DningSboy he encounti!ad2nother tfV Aon; 1hend ion, he flew for refuge a) F bosom of Huckleberry Fin! bwas re+Scriptural quotjirw_ re crept!an!be"2lizat he alXA allw!st4and .%Bnv=&st:Adrivain, awful clap ]/blinding she81cov!the bedclothe"ai! a horrosuspensehis doom; not the shadow of a doub  is hubbub was 1himrSdQtlm!thtgbearanowers aboveMQextremitp Bendu2h.i the result have seeme1him!st[ApompiRammunp Ca bu3a b(of artille+;b incongruou' E3 up+n'2 asrto knoc+ Bturf! insect likeB. Bbtempest spent itPcand diQout accomplis9its objectc boy's bimpulsgratefulreform. His +EwaitC"re>bbe anyDsK"dadoctors were back;w4hadd 3 heU!baO!is2!%an})ge . ehardly4D1spa#"reing how loneWQstate companionlesAforl@oPdrifted listless Btree+p41 acuqas judg a juvenile courr1cat her victim, a bird and Huckup an alley e@ a stolen melon. Poor lads! they--tTom--ha7E SI ATkhe sleepy atmospStirrevigorously:3e trial4k!betAsorbWtopic ofe talk immediately xyBaway$itArefeQO ; sent a shudd his heartroubled consc i[5LQpersu2himBthes#rkr!pu tqas "feelers";1seen-Rld beaqof knowz n -  Fnot be comforc2ae mids, agossip1kep(rshiver e"Hu##a 1pla+!a Sm. Itb QreliedbunsealAonguwhile; to divide)iburden[l87r. MoreoqBhe w/to assur-m discreet. "Huck,1you" told anybodh--that?" "'Bout wYou know." "Oh--'course IZ"n'Never a wordLAsoli2Qword,|Qelp mat makes you ask:qWell, I\ aafeardbVWhy, ?B, wen't be aliv$1dayQ #go out. YOUt2TomWmore A. AfnQ pausnQ5n'tL1get!to\,"Q they"Ge[!? !if half-breed deviLzF me z) gO$y ain't no diMn>Uthat's all(!&n.twe're safe %   we keep mum. But let's swi-1gai1ywa'!Qsurer}I'm agreeS# ry swore? , solemniti"%S talk,yQ? I'vBrd al " "Talk? Pit's just Muff Potter, $the timepReps mg!t,tant, so'sd7A'ersT{"ju9+Q samebgo on p reckon he's a goner. Don'gfeel sorhBhim,AimesqMost always-- *raccount thfA don %ur. Just fis 4 B, toSoney drunk onfSloafsFiderable; l-!we2do |MBwaysu&of us--pr s <+Blike@!ki?PE--heBahalf aB, onre Krn't enough4 2two"lo eEQby me?sqof luck!meBkite"me,knitted hooks%o my line. I wish w"geot$u" "My!&"n')W. And besides, 'tn't do any=;'d ketch{ AgaincYes--s>aI hate;ear 'em abus2 so the dickens6"he/fI do tooL)I[2say&toodiest i ip n !!an ver hung befoO1Yes=y+%7~Qif heK)1frery'd lyn^A'"it'" The boys]"aQtalk,Csit broum1. A# twilight drew #ey themselves ha6 * leAisol80Ejailz=an undefinp8d; z-m!clow;!irAicul+T But =eno angels or fairies i! tYss captiveAboys#\!ey~Qoften%!-- AcellYring andk qtobaccobmatche-;n gBfloo% rno guar"isl2tud /Qgifts Q smott!irL "s --it cut deep,lx@ 2cowASand t!ou2the Sdegreaid: "You've beenQy goo1me,--better'nw 1elsthis town1I d+forget it,Q. Oft1sayrmyself,I, 'I us\AmendMCoys'.Bings:Ashowfishin' place01befD4Bat I1 2nowjcve allaB oldthe's in92TomIQHuck b--THEYP)" '5-!them.' Well, "eBwful$"--and crazy  #--w athe on*1y I!un2 itnow I go:Qswingxiit's right. RighABEST, b--hope  we won't4at.! make YOUl dbad; yCed mh<say, is,p2YOUG !--m 3youSStandR er furder west--soSit; it'smBAee fw"lya&C5 Aa muP Rtf1non$ ae heregyourn. Gooda w"--"ly. Git up on Hother's backYl touch 'em. = Qit. S}`qhands--}1'lln1 th-Abars mine's too big. LittlBweak--buyQ 3lpel ^ 2shelp hi*.iy"."!home mis CnBream#full of se next day{e fter, he rt-room, dra@. irresist`,(1in,tforcing( to stayF| 1hav (1qy studi~a avoidpL"ch4FKTkelet !atdD Now,7#A us t** b--telleown waEskipp,h+sbegan--}AinglRfirst"as"rmtQubjec f  easily;ln! sdceased buP own voice;&ixAhim;qed lipsbEBhung!higads, ta]\no note of"d, rapt1ghaCR!on 1ale#q straina pent emoq q climax 5boyJ "!asdoctor fetcheETboard+"ag fell,@Cjump-P?1andCrash! Quick$Cighte}%Cspra|aa, torem1alloAsers gone! CHAPTER XXIV TOM1a gring hero onc>e>%pe2old-Aenvyhbng. HiR eveninto immortal prin;* paper magnyhat believe be Presid Byet,  * . As usualfickle, unreask9s % to its bosomBfond3 Alavi@XRas itb} !&Bsort of conducO&o"'s"t;fIp'#noJto find faulQh it.!'sv: of splendor and exul2 J2hiss were s?.  infeste=s Ddoomz deye. H!y aUcould', 1boy"tir abroadafall. Poor HuckiH 1samI"wrrand terror "ad*p7!ho!or* Awyer Qgreat V 6and4sor01hara y Jumight ldnotwithsta_A's f!sa!im+QZyq N.#4afellowDhe attornepromise secrecyqwhat of? Since }Sharasy![2 Bdrivp%c c'&Rse bywaad2lip ^been sealnsdismaler;most formidab=aoaths,a's conchuman race`well-nigh obliteratcXDaily2'"1madA gla\0Rpoken%!Vly he wish%1up " c. Hal"imZS nT 3be dVa othercY@ >+ He felt sure heMbdraw a+again until1man92dea,y@ Rewardselvcountryrscoured"no2 Jofound. Oose omniscind awe-inspi^marvels, a detective,1"upoSt. Louis, mo"ar@S$shhead, looksort of astouQ succ  3sZb craft!lyu=!ev1at ' say, he " a clew."n you can't hang a "clew" for#soZoEgot ]qnd gone8. s-63ure3was,. R slowdrifted obleft b Cit a"ly qened we"of apprehenV THERE comesVqrightly{1tru+26_)has a rag1sirrgo someqand digRV}1sur3is 9suddenlyU3one{e sallied+R Joe ~Bfailed of8. Next h<;!a %gwTtumbl@FI2FinRed-Handed." qanswer.m3 private-#op$e matter to >{kbtially`*Awill>  o take a hanwy enterpri RferedBtainnd required no capital a&u superabundanc)Rtime r rmoney. 'll we dig?" sair. "Oh,5.Uq." "Wh%D i[ e?" "No, inde  /a. It's-"in=y bicular5 --/ on islands,Atime@ rotten chests!envaa limbSn old@Bree,0c;falls at 1 mo aQfloor) ba'nted0Who hides iWhy, robbers, K urse--who'0? Sunday-school sup'rintendentsXIknow. If 'twas mine I Cide it; I'd9!nd1 a _&1o;1 I.l"do!XUf and leave it "ADon'y0Cy moA!No y)k,w$B#qy generUQforgeT 0q, or elJey die. Anyway, it  t 1a l "im gets rusty;!by- !bycbody finds<yx  Xtells howAthe 2--a  o be ciphCovera week because it'stBsign hy'roglyphicjaHyro--H"--picture>qthings,]Qknow,1seeTmean u1Hav1d got o"emas, Tom|!No0Well then,: Afind #61wan^ esbury itas or on a"ea t0Eat'sAsticTout. *!'v ed Jackson's I}iwe can tQagain/R timeSy' -1 up Still-House branch,=qlots of-StreesnAload1'emI#ll Htalk! NoTA81ichJ1forG _1'emI1Tom/6#llll summerf 2? SI#a brass po-a hundred dollar,"llAgray2 fudi'monds. HowaHuck's eyes gX1!bubPlenty4qme. Jus R gimmM Iand &noT" "AT8~QI betI:k!foff onDb Some 'Qth tw3Rapiec"#reWaany, hn2's <six bits oHvaNo! Is1 soCert'nly--anybody'llyou so. Hever seen on5E!No7I!nOh, kingsA sla|$S_"no5$I reckon@i!if3wasto Europ!'d.Qa rafr'em hopGr b" "Do1hopBHop?_-u grannylN2say>1did CShucks, IJ1ean'd SEE 'em--not V Yto hop for?--but IRQ 2seeV3scal &, 28$ aBLike!ol]pbacked Richar* 2? W_2his,Q nameRHe di'ny"1. K!but a givenIN!Bu.yiy like it-R 54D,Xa niggeroRsay--t Eyou  1irsn< S'pose we tacklj ) hill t'8side ofjrI'm agreea<got a crippled pickea shovel1setwir three-TtrampV*"hoCrpantingE]/7T downH2shaa neighbo!elq#- smoke. "ISthis, Tom. "So do I 2SayP$weCtreaF#re 1do 0your sha ZBI'll3pie5MU 3oda2day1Rgo toV&fSlong.0aQa gayrnbsn S sa"tod h AlivebM1!byy#OhP |any use. PapY CcomemFo thish-ybwQR2 daR\5as clawiIurry up,ZIjhe'd clea3out pretty quick.tn$buy a new drumua sure-'Whearts jum8ao hear[strike upoFyb"$#ed3dis <+Aa str a chunk. AtDE5Tomv -rxrbut we CAN'T b&. We spottv)AshadX2bo a doI$tF1the6re';"tthat?".wpAguesoyH Menough i1too5> or too earlAHuck 7ped .tat's it9Ahe. !'sDveryLLFaone upBcan'| 2thea1sidL$is` ',8C%Y#ofy%> ;2 a-fluttY&Zbafeel aP$'s!mNZ;'AfearTCturn)%uz'V front a-<Qa cha I been creeXAll o1ever since I DBI've=smuch soAHuck6y mN put in a de&# why bury. e, to lookGLordy!" "Yey3 7If !toRPpeople. A h1s b!toDintoQ'em, "L" "r2stiRMup, eitherjf2onet! 2.Akull !ay" DCTom!2wfu"it "is^U3a b,QSay, <lp~ d"trARs els?%,  $weY 5bconsid|/;dJ:The%. G  4s.c 're a dern sight worse'n  D lVN,lyocome slid rshroud,nUnoticApeep shoulder3f a:%!1griqir teet"Ra does. I Bn't qsuch a NPa--nobody 1Kt2but, dUtraveU 1 heu_! 1But <{#goCYthat fA norg 4v emostly M J#go5 Qa manaen mur, anyway | E"erODseen5 # except b--justLBblue'Rs sli& q window regular Gsl![Xflick5acan beu4h!cl~Qehind Irs to reason. Be1any2butAs us<pEDcomebP`f, so wl!us3our?7a<W$ df^#I it's tak@A y(qstartedffhy) TAmidd- oonlit valley bel[em stoodR""M&!, 4ly Ra, its S=s*ago, rank weeds she very doorstep chimney crQ)qto ruinq  -sashes vacant, a corneraroof c/!in1 boz*, half expectAo se. flit pas%Qindow n1ing 14 as befitte8 b:m y struck far of\Rthe rO Qe haua wide berth A*qway hom. r,Boods6 earward si_j Hill.4VI ABOUT noo$ 2 daNgG4tre=Ahad ffN"ir$Q. Tom impatien#go ;( Qwas mAablyc $alC%ly Lookyhere1 dowday it isbmentally ran%$V3eekhen quickly liftedG# a2led 3m--WI0once though,iE\un kKrR it pE conto m` a Fridap   can't be too careful8 A 'a'  1an scrape, :ing2Won a z MIGHT! Better say we WOULD!"'slucky days= $"ny BknowbP1YOUf2the:f 1it ;AHuckRn1said I was, did I? AndT all,.O_d a rotten bad3msdreampt1rat"No! Sure sign ofB F"ey{s'NotCgood% WL d*1ign  G,-2. A-_Udo is  by shark Zi Cdroph}5to-{ wplay. DuRobin Hg Who'sqWhy, he greatest m"evrEngland:the best. HGca robb Cracky, I wisht. Who did he robOnly sheriffs bbishop Crich2 RkingsR=9Q But naver bolloved 'em1divQ!upx 'em perfectly squa-h2'a'r Sa bri I 3youW[!Oh9qhe noblaaOT"R was.!men now, I can1youN R lick-can in ,a one he4iedD Ahim;NhEAtake!yew bow and plug a ten-cent piece"c, a mia3s a YEW bowIM /t7w, of cours.d if he hi| Bdime`Aedgepould set aand cr(2d cOB'll play!--nobby fun.AlearQF m% t\dfternoon, nowmy1casQ aa year=2eye#up qnd passs remark .1orr+prospect9Iibere. A5suna sink sey tookEway 5 aathwar| cshadowN6e,soon were buriAITsight8H(- Y On Saturday, shortlyV^  R bHnT4hadd&Ua chaCshaddEGir last hole*;]great hopeaGmere<oIqcases wz "pet#ad )(upafter getting down~qx inchep Y-O an some d1! aqand turZJt a single th{bshovel' Afail !isO a, howesDc+ BwentTfeeling jvshad notEds fortunehad fulfillep requirements <%of<71-hu(6. Rreach T 1{ so weirPv grislyBsile at reign^Rthe bAsun,{ bSdepre$Cbelines!dem"io he place[(3fra,# aHM Qventu7 ty creptD#do?!mbp_VT aw a weed-grown, floorless room, unplastx;aan anc CfireVs, a ruinous staircaser#er%ud hung E#nd abandoned cobwebsn#tl73ed,MC ened puls,s, ears ale\BcatcYDXRsoundAmuscAenseQready instant retreat. In a+Nfamiliarity modTReir f Qy gavm,Qtical#iYsted examinC, rather admi+[bown boƑ Qwonde"at it, too. Nexk1up-+isMqlike cu]!goqdaring ; =! abe but I&!--L,=Sto a 02and scent. Up\NBame 53qcay. InpJoC a@d mystery"qa fraud1 inCr courag4xwAH4n hM Lo go down and begin#1hen}BSh!" CTom. is it?" Huck, blanchingrG!..re!... HearDa "Yes:#y!(!run!" "Keep1! D you budge! 're coming p! tcr 1doo #stC./Rfloorto knot-hole!th bushy white whiskers; long hair flowed from u!hiRbrero dGe green gogglesec7'Cn, " Xa low voice; @#sa gr$Q, facAback{sthe wal12the=er continued ^ s. His mann\less guarF{0words more distincFLproceeded: Q, "I'!it oB 5andi,& dangerouDR!" grTthe "e dumb"A--to#svast su?boys. "Milksop+2his~ 2gasQquakeEwas O!'s +<!swag we'veAleftr--leave it( &'v !'B. No2!o i.f!wet south. SixfCmDfift5Qver'sDto carry%eWell--#r EKG m No--but I'd say(j2 us#doe9:Alook; it may5(" bTI,6!e  J!! ; accidentsi !B; 'tY$inu2ver9;i6f%l[+qh+qit deepDGood idea !thrRqwho walv Qcrossroom, knelt#, gv"qhearth-/atook o9A1bag Q jing?qleasantLe subtracW9Qrom i0nڼcthirty#Dcs for G"as+6for8e latter, #s <,(Q8owie-knifeUforgo<,bmiserig$an@. With gloaq ,A mov7q. Luck!f splendor of Qs bey%sll imag+!qETmoney/Ato mcalf a dozen rich! H sd1theaiest a !esrNDabother uncertainty as to w44to }2y nudged each ;--eloquent)r easilyRstood simply meant--"Oh,you glad NOW we'rbB!" mVTknife%Uupon . "Hello!" C he.?2sai4Calf-e"plank--no, it'sy!x,4Rlieve1--b`!w 2see<Kfor. Never mind, qbroke a3 [2hisWbin and i p3ManDU  rhandful8$ingold. Thejb abovebas excW cmselveY!as delighted.NwRquick4Bv$ban oldM24over amongst >#)5sid"a--I sa5#a 74agohaX|iaBoys'5andn X1the$b, look5ly, shookUA mut4 toM3  5use5Abox aoon un$edXA not *R larg!#wad2bou:Bbeen+dstrong5the slow>s+Qinjur c|5the" ain bliss3. "PardrthousanL Shere,p. "'Twas alwaysX Murrel's gangCQbe aruone summer,".stranger observ53; "vs looksPHI2 sa* sNow you $neRjob." Ʉfrowned. Se: "You# me. Leasx&k"lla A. 'T@ robbery alv\ REVENGE!"a wicked R flameBhis GR"I'llyour helpRBWhen finishednn Texas. Go homH<NT#anK3kidM1b %0$Sell--Bqsay so;ew  w dthis-- k Yes. [Ravishing overhead.] NO!- e great Sachem, no! [Prof[distress;1I'd---at least4 \Smean =but Tom, si%1nlyhad testifiSVery,mPDfortBAalond! Compan!be a palpCimpr5, h . CHAPTER XXVIId adventur4"ayily torme RTom's5s . Four times hE!s !atSFnd f6ait was:rhingnes5igers as  !hi wakeful4bEfAt bae hard realit'Fhis 1. AClay |AmornO(1ecaincidentsJND, he noticed%~dseemedL4ly Hand far away--someD ;3had#tworld, MfAlong " b3 :n i5him u itselfa$3onetrong argumentW Bavorj is idea--namely,sc quantDcoin2fAoo vkAreal Qhad nTseen !as in one massShe wa1all "ag"st in life,&Aimag= call re\Os7!s""  " were mere fanciful formCaspeech Zno such sumP qlly exiEpposed forf w"so= a sum as a 6z be found in actualy one's Ԁ" Ianotion treasurbeen analyze.yxy=Ansis 'a areal dgand a bushel of vague,id, ungras{`A. BR^K"en Ssharp!clearer (Vattri !inTAthem?h so he"`1himk1leae(impressi6q#no2a dream, a )isQsweptg:~ snatch a hurried breakfast!go2fin.ik e gunwalB a flatboat, listlessly dang+2t !ee3"atbs2ingamelancholy. TomC&2letslead up@1 su e did not do its1be 2q `o!xEGelloylf." Silence ab-om, if we'd 'a'Y 4lam' a"Vtree,0!go D. Oh$! 1fulF $,Somehow I most'x. Dog'd if I ." "What!K%Oh6ing ).U"en"QDream! Iymss hadn' down you8)1how  Q!xhf%Deams|2allpL#--()[tch-eyedZ 1sh l4 gom*!thR 'em--rot himm1No,_a. FIND! T /1Tom#llXhim. A fellerq ~3one Q for a pile-- a2's lost. I'd feel1ry shakysee him, anyw+qso'd I;2I'd,2 2z#'Aut--&s < 1--y95N'Bthat2&7/!ouAit. !dofreckonB"oQtoo d62Say--maybe inRs$'"Goody!... No, rRain'tfv5, is one-hort!wn3 y=#noq,@so. LemmkKS Here r room-- QavernQ know;Qtrick s3two?s. We cansout qui You stay hereU,zI come." DAoff c1caracHuck's~rbpublic#s"as G!an hour& EbestNo. 2 had# a young lawyutill so-. In the l&astentaa housek! 2#a 5 -keeper'sr2son  kept lock$)ll3tim82he 4sawq go int W!or}(A exct;Ymny particular reason> x1gs;Er Come ' BsityD8bfeeble98wVe6r by ent"Ding % ae ideaC"roG "ha'nted"e  r a  !re[) BwhatOYD'Kvery No. 2"$af&/Qit isE$. ?C youqQto doNE_(ngE2tell yous$do "at" icomes out J1los )ey e!a3?Qtrap Jbrick stor"`qet holdmdoor-keys1nip-of auntie'=,Bdark'"goS ry 'em. And mi,n, because he E#!to/|2tow 4spy 3)N#a "to 6youjyou just fGQ him;_Rif he 2 go >"1laca"LordyI !fovhim by myself+hsit'll b%", ov"He\Dn't B youRdid, b4he'A any' "ifU8n. 3o-- 1YouE<cBdark!. 3'a' out he coul f< #ber,&DOCs so{1; IP, by jingoesw"'re TALKING! Don'7|bweakenaI won' sI THAT#1TomQILy hung a e neighborhooo{nine, one watch52he PAat a ="K1thePdoor. NoF"orN Rit; n%aresembp2the 5ard=3te#Th promise]`fair one; sowent home`rat if adWAegre,Adark1cami AcomeT"maowupon he would slipthe keysE aclear,XmAclos2s(Tretiryan empty sugar hogs0welve. Tuesdac/&amE. Also Wedn/Thursday bbetter8"in$.sf0aunt's old tin lant 6 Qtoweldrlindfol 1ithh? <1 inp-'s began. A WB mid#v!upB2its1s ( !s 'd"s)!pu)*%02had Eseen+Dhad / }b. EverrV,3iou"Bblac5of SreignA peruQstill#waVbruptedby occasional/)#ofAt th<ggs1liti n~,=tl: Bowelx&wo2rs D A glokw>y.stood sentryrTom fel3wayZTjz  !of8ing anxiety$weighed iga(a mountainh$%sh?ra flashH$ C--it.f"en!buZO6ell- alive yet. I4s1Tomdisappeared. Surely"us Ded; &A was7`+!rtQaburst #D'Band ,G'1 In4auneasi L rdrawing-DrK a; fear rdreadful ] $/1ari1pecm0some catastroph 2Atake 1792not&to,]$heUable to inhale it(imbleful- TK$ar Athe beating. S1Tn"ofh%tEby him: "Run!"he; "runAyourt!" He needn',Q repe drit; onc ;#mairty or forty miles,RrepetCwas -3. Tj!tor  "J1sheʁerted sl#1er- e lower en/the villagxa By goin its shelter]Sstorm xrain poubwn. AsxJ] 0AHuckwas awful! I t3twob keys, aas sofI R; butsto make of racket=rdly get myRso scBT1bn't tuVck, either. Well,?!ou.Ticingkboing, I tookcthe kn!A ope@e !H&E@R! I h1in,!sh5fP, GREAT CAESAR'S GHOST What!--whatQ'seo1steFonto's hand!" "NoAYes!A#Ras ly s%asleep oARfloor4?Aold 5"ey his arms sprea[d1did Tdo? D0Bke u91 budged. Drunk, 2. IjUgrabbBAowel F+usIX'a' thoughS33tIx. My aunmby sick3alost iM A"Say,1box!diw@o_00.-}44 /8 .:ea bott|Sdtin cu 6 by(!; I saw two barrelslots moreUs S.u2now'!Fmatt'3at R roomTr!it mG o1ALLaTemperTYs have got aeC, hepd[3Who8u? But sAnow'Rightyt 1timg&ifqb's dru""Ithat! YouiQshuddIEno--"nom5And-B not3. O1  alongsidf, :u'< three, h  -&@oaTp*for reflectioZ+ S:38oky82les#tr 1 an#e}wwcR Joe'5'reQscaryhw eSnight# bp"su2 go  "orbwe'll Gbox quicker'n nJV<the wholBlongj%ido it 1too3you"<Ather4$"A= bill. A.v!to{"tr0Hooper Street a block EmaowWRthrow:bgravel=e0 3bfetch 1T"Agre01goo'Awhea*B"Now,  T's ov*bgo hom2gin" , %Qcoupl" +2"go61will youe!I TJ]t5#Ryear! Ev "damF&st2allIawooo[nǑ' hayloftZTlets nqso does pap's nigger man, Uncle JKA toteex  B wheahe wan`" t}JA any I ask him QzQves mGiBsomeBto eWhe can spare  !ik\r, becuzP'[" aL Bwas 3;him. SometimeQset rdeat WITH/1But  A body'sv!thwhen he' sr: 1n'tBas a steadyd-wXK,q"le.?A com hAS's up2'!, Cskip, @*."*IX THE firsR1earQ4QFridan glad piecnews --Judge ThG's familyL*7- before. Both 9o &Bsunksecondary import, and Beckyv the chiefCboy'="esSsaw h%tad an exhausi&1pla "hi-spy"c"gullyu!" $da crow2ir S-mate1day^scomplet[DRcrownsa peculi9satisfactory way:!ea[Aer mK to appointnext day foUlong-z1and\-delayed picnicfshe consentechild'>boundless;,Xore moderat.R invi*slAsent^s sunsettraightwayA AfolkLn4Ra fevapreparu(bpleasu6qanticip6's q enable90" ap dntil aQlate houh%%:vt!ofd1ingO4's s!an(ahaving to astonish1nickers with,2; b\3was$"oiNo signal c'vC. Mqcame, eBallyby ten or eleven o'cQ giddq rollic!c;/!ga  4_s -ro.UQustomelderly peop2 ma#;p$*!ce2ren@sed safe R unde9AwingAa feh"1dieeAe# gentlemeqtwenty-  sreabout1oldqm ferryboatQchart;t7! g<.flJ9r main sg Cladeprovision-baskets. Sid1andato mis/ fun; Mary remain!hovBtainT9nTMrs. 6 "tob, was:d7?oBback lIaPerhap H Astay   eRgirlslive neah"-lQ,c !y aSusy H,q, mamma+AVeryO. And mind !bey%yourself3bmR9T." P,"trQalong` 1: "Say-- 2you8 ntQ'Stead 3Joe2's *SclimbE!up AhillDstop` Widow Douglas'. She'll ice-cream! SsoJ"os Ai!--|+Aload8"it4sH#be t&!usg"Oh[ K/2un!?=nC%ed3But2illA say How'll shH6Rknow?^Q girl!edidea over a1r reluctantly(it's wrongK3--"shucks! Youg ! k REo!'sQharm?_sN1nts[!hao '"Bsafe4I b 1'a'" 6if IAwoulT splendid hos"itaa tempP 2baiand Tom's persuas02car+S q. So it>u Qay no? anybody?t 's programme. i1 itv(!rrJM)^7+''XAgiveZ ;took a deaV%s!ofAs. S"het&I"tolmfun atAnd why sh1he 5!it: h"qsoned--/c! W, so Ti2mor l^>o-night? T6QrA eveV 4out6theM1, boy-lik2 determined to yiel +5Aclin Tnot a{9t Qk of 0ox of money5  day. ThreeVbelow >EboatayAmouta woody hh& 1ied|3The* swarmed ashoreAorest distancescraggy hxs echoed farQshoutDand 95theØ1get!ho " Egone=y mry-and-barovers Sggledao camp31ifi th responsible appetitesVt destrucHJ" "L>2 feoC!reBFFing ( 2resbchat i2shaspreading oaks. BAsomef[ed: "Who' the cave?" Ever!wa5$. b of ca \Bproc   a general scamperhT+x0' hillside--an opshaped likO A. Its mass׎2ake&& !unbarred. WK small chamberM Aly a2ice" w0by Natur% solid limeston w 1a c& rweat. I1romJmysterious!t %erdeep gloom/look out upr!grKC'"sh--""un?1O6!ve!UDly wore offdQrompiDL2ganjIcment al]  Frush2ownit; a struggugallant~f1ed,62ursoon kn)/or blownlad clamop and a new chaseB3allQ havex(ndlrocession (!fiv(eep descenW4ain avenue,p!fl0qing ranGOVs dimly reveaYf!llqrock al5t1ir er of jun sixty feet overhead. Thisnot more than "en?Cwide?&nSstepsy%ill narr crevices bran@!from it on--for McDougal's`Rbut a%D7imepqraft.  blready.w's went gliW# p a wharfCAhear!noise on board(   C3as $usually are whornearly cto dea.AwondnQwhat 1de:Rstop w<<dropped her88'put his atten *rusiness`Bclou dark. Ten eKf vehicles ceased, sca) abegan ,#nk !ll 2foot-passengerkp |)1 be$itt)l <2lef| = qwatcher qthe silae ghosts. E  Swere /;/ Qevery$A$it1see weary long 2:b)u3},ed. His faith wasB4bing. Wvy use? "reA Whyk)C? AFfell~"ea;&l U instantQ Bdoord*^Tprangqx8$ Ti two men br,%onW- z Runder!rm0 ]Cbox! So sto remoE.Bcall Tom now?Ibe absurd--1en  get awayq #$anc7EDNo, c stick1!ire!foAthem<k5truP for security^discoverQcommuG3Rmself#*!ut Eglidg 2beh!e men, cat-like,qbare fe~!ll_E the8*5far&!noqbe invi  y |GP q blocks0n^ left upJ2ss-8y?"E,!qcame to% !pa}1Cardiff Hill;5Ctookfthe old Welshman's Whalf-m(hi-1hes!ng Qclimbward. Good, 5*VSdury itold quarryC) "stfa &-3on,b summixy plung.T7 1run 1ook whe pistols wekf#I Astop$t..Scome now becuz 7# 5it,7 ;I:lF3 I x1wan7runo}m devils88! i,2 deUph2hapAdo l?  Byou'aO1a--but +b's a bM!e2you:Ryou'v^Fyour=A. No"y U Adead--we are sorryC|#atCee wiqright w!toq#ou6 Rm, bydescription #weOaC = !we?RfteenTnAm--dis a cellard2was(sn I fouE sneeze. It wHmeanest kin16!lu " t3o keep it bp use --'twas bjt!it(#I iR lead/ 2my :3theR star-ose scoundr Q-rust*6! pbI sung"B'Fir!!'cblazedtt5he aqwas. So".  2offrjiffy, svillainwZ4N  a%oods. I B we eatouche|mydgAot a y4  bullets whizzed bdo us any harm. Ak!we9 the sou$Tw at chas2entS }!tio5_>ctablesgot a posse fH1offuV R bank&Cit i+qsheriffaa gangE bea8}"My}!.\XAsh wz"A sor2 ose rascals2H uadeal. But you cy  dRlike,euY2ladQpposetOh yes;JAown-(and follc AthemSplendid! Db2m--d BOne'B!olfdumb SpaniQben a*;once or twicQt'oth[sa mean-", VTP men! Happeng Dthem1R back2one 2andoQslunkR. OffAyou, 8ellfA--ge to-morrow Y Y"2depS!1. A__qe room   : "Oh, ptell ANYbod bR! Oh, eAG_ gByou -N%credit of w:1 di"Oh no, no! DVA!" )B men g  o said: "T2 7w Cwon'B2whyoia#n?  explain,!tothat he al Aknewn w"on3 Ahose!+4manUv 2anyHast him Juworld--c& for knowing it% ?d secrecy3morW1How&se fellowsA? We!ey Ding &usea!t #ramed a duly H rep -S lot,--leasyrsays soI5see)ragin it@ =much, on #!inx }3tryQstrik a new way of do7"ay u ' I,BleepQso I r  up-street 'bout midf a, a-tu~fg - AI go old shackly brick store by WP1, I3 Red upO%ll#2k.  %bcomes fQtwo c B"slf0%lose by me,+1unddreir arm'( V y'd stole1OneAa-sm3b one wah, !ri.s\ !me"igACt upBfaceIy og 1ig - eA, bywhite whiskerQ xT `ua rustyo a." "CmDrags ?Cis staggq5forA !n ?5Aknow Qhow i#msCIQTJy o52you<Fb'em--y eiO&to| awas up8y sneakedsso. I do$!'4+1iddDstilG& $ d:# JgVe begK%heX swear he'd sp;rr looks'as}2two  What! The DEAF AND DUMB ma8ia4at!!'aderrible mistake! H63his.jC Ru>sthe fai+i2 whNK smight bQ1yetdtongue/0@$to in spitball heFr do. He several efforts to creep!of1scrape, R's ey 1mh["bl5 9. P  ,be afrai!me 6 hurt a hair o qr head v3=I'd protec !. 1 is ;#leAslipout intend+ D. up now. YGEthat4 K q. Now tAme-- m S it i"3 -- a betra Alookit!ho51eye Qomenton bent over 9ear: "'Tab--it'sO'1 Joz ) gjumped chair. InWQ 1ll ,pe 4you{m#2ing#and slitting noses2wasown embellish 3men3tak1sorYrrevenge\"an #! a different matt242q." Dur7B&:alk! c Y 1 sades (h2hishad done,_ C#!d,^a7eqexamine,its vicinity AmarkP Qblood11y fnvut captured a bulky bundle of)Of WHAT?" IfqBwordBbeenn 3hey leaped withcqre stun0O!5AblanBlips]!-were star1ide3Qreath$ended--wao! )tarted--st?+in return--1QRgs--fiv1ten%!end i<f burglar's toolsY4,G' bMATTER sank back, pan5deeply, unaEably !eyt/m gravely, cur!V--and= NYes,appears to relieveB Butcdid gi# 3urn9!YOU expecBwe'd2?" a \H a inqui *Q havenfor material$ aa plau4#-- suggesteR?elf|!boadeeper --a senseless1y o~dK^/!noq+ to weighiokventure he c it--feebly: "-+T books, maybe." Poortoo distress!sma Cqed loudfjoyouseb detai$.Ratomy1hea Bfoot%b by sahat such armoney in a- pocket, q it cutoctor's bill likM Aadde!olG!p,y2re Z !a5Byou awell a bit--no wo8aqf #of8 Z'.*!ouit. Rest6Rsleep6Afetc2all_#brritat<6 heaBgoos!ed{! a)!icM!esf"aroppednBideaarcel b%.K%2Avern]9. c talk 3XW ahad on%rought i3"nod however "ha"kn/ bwasn't!sot%a qoo much:Helf-w!Bu![ 4'2gla@. Shad hnt!no4 beyond all qusnot THE,Oo mind was at rkexceedingly comfortaban factC Q drifbjust iD dir_`Anow;WA musw ;) in No. 2 zy!ilybat dayhATom a seizeo3golS \1out !or fear of interruption. Ju# pYea knoc9#l ` 0 hiding-"noX connecte!n remotely1lat admittedtRladiev gentlemen, amo*Widow Dougla Tnoticngroups of citizeny bclimbi2the hill--to 7 S\Qnews xBprea h(h the stor$Z'he visitor#gratitude"erbrvatiooutspoken. "Don't}a# it, madaGre's]z"'r beholdeQthan -Tre todmy boyc#he ballow Atellsname. WAn't ] v2butim." Of $&uriosity so va|"be1d tV#in )twa to eaAvita'mm be trans }Dtownb refus"BpartjCcretorall els> qlearnedO  I "to% rJ9"ypV8a noise L#Rake m:rWe judg0j2worMgQle. T"dlikely! !--Shadn'CoolsBao work pAhe u1 waGbyou up4carDR? My BnegrAstood guard sr houseeLmk By've`ack." More!C cam"beD,aand re G couple of hours more.G tSabbath d 1vacecQ1 waVly at churchQ stir1Beven` canvassed. NewV#n Dsign5two! 5yetA#edthe sermfinished, Judge ThDu's wife alongsidRMrs. mZQ as sI6ved1 Qaisle;-BcrowqIs my Becky>all day? I !edhB tirQdeathBYourS(RYes,"a;!tlp Sok--"T"sa2youIQnightEE/!noa kced palh$sabba pew,as Aunt Polly, ing brisklwa5pG by.64qGood-mo), A 'got a boy up missing.o1 myD!st Qlast !#--7you. AndY $'snvtto sett'q  "he H andar than7d. "HeB$us(`b, begi !to uneasy. A marked anxietCc's face. "JoeVSK?Y1No'b"1didqsee hima?" Jo="wa!su7 "ayWQpeopl amoving %ofWs}3aloD a boding Aines&k 1 ofzy counten\'of!if  .!On!ngfinally blurt2his  !we4ill Zcave! swooned awa f#Ao crrringing'Bands alarm swept/lip to lip,Agrou 2to ithin five minutesCbell fwildlyN6he "upF/EJ insignificanD<xforgotten, horsesaddled, skiff4man !!rd#ou1bef{nDrror was half an old, two h)dbcere po6aighroaA riv gC. A Blong091nooge seemed emptydead. Many women (ed9#anPa'q They cC)2too"wa/"l N;z#. tedious022ews/>wA dawqt last,   was, "Send candlesrsend food."4wasqcrazed;L{, also. sent messages! p encouragVtWaonveyereal cheT3 ]3h4'BdaylpQspattRwith -grease, smeTBclay Bworn7#HeJHuck#behad been provid%3 hi"Adelic feveruhysiciano4allrcave, s  ook chargg "ient. She ! s B herb4,'ahe was@Q, bad;7%in,fBr Lord'sKu !R"a \neglectez"aik good spotvQ-`"You can depen(>2at'xAmarkdon't lea9Doff. He n3does. Puts"2ome)0$on"re\Ccome(Bhis TA" E AforeRparti3jad Q ctraggl< bGllag strongeswEthe qcontinuxAarch gBnewsbe gaineBness]7edhansack71vis;Y S cornAZ ,o#ly#edCver one wan4z"pax!, [wcseen fE hit Bdist@qhouting0-shots sentr9:)1berrthe earthe sombr Qs. In&ar1sec21usu. rtravers/rtouristI7s "BECKY & TOM"DbtracedbRL=2cky'#Csmok near at h =1-so!biqribbon.   recogniz'e%>4hover ii7crh. !ofiAno omemorial )@be so precious Q this parted latestqliving h*RawfulpV! c.3SomzAw ann/a far-away speck ofzWglimm*&rn a gloKDshou)~fAscor'men go tro:1dow echoingz1aa sick; Vointment always f!e  a 0 donly a2r'st ree dreadD2^ 2s d#0 ]% jt # a hopeless stupor. N 0_;accidentaly, just made,groprietorS ++Tiquor)premises,qcely fl3  public pulse, tremendou)1the 2 wa5qa lucid%Rrval,lasubjecta asked--dimly 7" worst-- W.! Thd sinceaEill.p.h "stSup inr#bild-ey1vWhat? W)$Lm;lace has shut up. Lie dV! a&&+!me!" "Only02 meQing--&one--please! Was it Tom Sawyer TT burse>"Hush, h !Byou 5 must NOT talky'Bare very sick!zAn no5 bu1rF t powwow if i the gold. Sctreasu2gon Ugone MmJ$e bout? CuM +@TR.2houoD1dimu/7$3min^uF the wearrhey gavhh(|?&. o herself: "TNJh/poor wreck. find it! Pitysomebody !KR! Ah,j!PDAleftIThope ^5or strength either, to go on| E CHAPTER XXXI NOW to%1 toZ's shareapicnic*By trNathe murkyqSVr ompany, visit familiar !eI$--adubbedw rather over7ptive nam uch as "The Drawing-Room,"Cathedral," "Aladdin's Palace,"\so on+hide-and-seek fro^u b AengaBn itzeal until!exertionDrow a trifle Asomen6 a sinuous avenue hol+-/kf #tangled web-work of Idates, post-office addrU rmottoes~) g walls rescoed (in ). Still Uand talk:CscarcelyM3nowXK"ar!H! w+tq. They b2ownPK!anphHA she[.ed,yD   2 a am of watrickling over a ledgkQcarry k sedimenVuit, had Qslow-y 81gesm3= and ruffled Niagara in gleam5nd imperishabAone.%squeezed his smallP h in order to illuminate i q's gratAtion rit curta,]jnatural stairwaywas encloZ etween na9ce the ambi Ya r"bd him. respondehis call,1hey_ " aM-mark for future guid oqir quesAey wD, "waBthatXAinto depths ofL  2Bmark|g$ed?( of novelties to @!the upper worl. 3oneQa spa s", L1cei3muld"Rof sh[stalactit" land circuml.c7 [' H) 1kedG" OQadmir_ +1lef~bnumerous Aopen?0#toi artly bm Qbewit2 sp}Rbasint(dncrustsa frosta glitt crystals Amidsa| supported by rfantastic pillarsR# ?Q8"joof great katalagmCtogehe resul1eas  Q-dripqenturies. UnIZaof vast(ts of batfp themselvwaousand#qa bunch(s+3urb flockings 4 byrs, sque"and darting f  FCkneww4the danger%isqconduct'#'snd hurried herthe first kDffern qoo soon)Q a ba#Duck gGmits wing ,ugitives plungnevery newr#ag!atRb got r5the perilous 7 ubterranean lake,,a stret?its dim 3way !it@ p!lo2shaQrHe wantLexplore its b;,0t conclur!habe best to sit#Ast a9TR. NowO1timbe deepA lai&Rlammygb spiri@*Why, I didn't ,it seems1so M gaI hearY!ot+:m bthink,#, 9Hqdown beLhem--and:!n'=Qw howK/north, or sou AeastQwhichit is. W8Dn't >bm0Cweek9!ye"qwas plaT"at cf 2 beAthei8 3dleAnot cyet. Aqime aft"isZ< P CR--Tom qgo softlo for dripp`BaterZ3 aMf satR Bothcruelly tired, ye CssMfuld go 73 .Tom dissenD F2not>!st8D !ey'2 fae-bin froPBthemTrclay. Toon busy;G'1aid* 7Atimeh^broke the:AI am DAungr5J!me!!of . "Do you remembP"?"4he.Zbalmost1d|'s our wedding-cakeMSYes--!asTQas a 6li"goaI saveA&"us to dream onyF1way$n-up people do'll be ourSS"pp<Q sentP6  Bdivi#Re cakw 3 atT2appetite,Tom nibbled a:amoietys abunda"co"RfinisfQ with. By-and-byGtey move on 'yilent a mom"qThen he:z1can/ rit if In1you k#?"8'4pal}`.Qnw 1stamB!er Bre's ink. Thatw " iClast6 ! gave loos)S&il#diA{to comfor$ `$AtU!C"?")y'll miss uKChunt4rwill! Cl"!ithey're hun Ror us,laDare.Bhen $S"Whby get o the boatHM#itbe dark then--enotice w/1n'tnbIaanywayNr mother8you"bthey got q." A fBened "inT"brfSSsenseRe sawh made a blunderw% _hs2hat08! Tebecame$ndO uful. In a new burst of grief21 sh  ^ g"ingQstruc@s also--QCR:half spent before Mrs. Thatcher discov M""at/Harper's. 2 GR !biqno doub2:)Bwas a !on/M $on1it; }!%esso hideouswbat he 2$itG!waa5ger1torX,K [/s A portio0h z was left;Q Band ,.~dhungriD poor morsel of food whetted desir c : "SH! DiuAthat 2othyV " aq like the faintest, far-off. InstantlAanswYul|/d M)Uhand,@"*gr7 corridorG0s4. P  s(R ;.BV%Rappar a BnearU DthemdTom; "coming! Come"-- b now!"54joy,rprisone overwhelmFT2spe[ %moTswarmingfrantic half-clad pT, whowA, "T2Vut! t F " Tin panChorn 6addAdin,#Qpopul massed g}*!to ver, met=in an open carriage%"byaitizendrongedA it, joined itsWRmarchswept magnific? Q main et roaring huzzah* !was illuminated;~Pb;ar3est(t!tt w0Cever_ 2Dur%re firsthour a processars fil rough Judge-'s house,f<n"sa+,ejsqueezedt'", to speak butn't--and dr out rainiY"rs veK& c1ppi% romplete nearly so5[ a messe AdispSdkH#2cav2!ldv"!orL 1usbNTom lay 0aa sofaXWasuditory71him=1tol~A his!ofwonderful adjB, puR+"inAstri1add adorn it1"al JCudescriptOahow he %tent on Bexpel;7'Btwo Fs!as0* ARa thi^aullest4tchM3wasT"to he glimpsed aD speh6Clook*A day ;"2lin Oit, pushedshouldersa small hol1sawbroad Mississippi ro by! And if it5 F0Rappen#beVhU@ !se* 2at %oft/d[ %4rore! Hec7for/I%j @ @"imoAo fr.r$such stuff, $  &# w Sto diR~?ɆU laboher and convincg %"hoe@Q died1joy A she  actually>lueG he >1wayI& !anbn help2 ou?gAat t]for gladness+some men a8Qskiff cTom haI!em G33con rddidn'tE=qild talfirst, "#,"Dahey, "Q"$re]2les> bhWavalley cave is in" n m aboard, rowFa""gam supperqGthem rest G 1two4hreDdarkn.Fhome. B!day-dawn,=q handfu% Ahim Rtrackg,5R+twine clewyctrung +sformed A. T+# }BtoiluPi~Rbe sh3'ffA9s#Foon " y bedriddenFf}5and~to grow mo7 QBwornP ><2got,MV, on e"wa- {a"as  `"di8her room1Sun34she$ash1hadT'edk1wasaillnes#$omi of Huck's sickm Rto seoAbut be admitDthe bedroom; neit5- Uhe onB or H-x-bwas wam8; s introduce no exciQtopicL Widow Douglas staye1thaKaobeyed/Ahome? the Cardiff Hill event; alsoDthe "ragged man's" bod-%  ;6 erry-landing2had7Adrow&\trying to , perhaps. About a fortiVrescu E, he a visit:yi#plGrong enough!toc2Tom'Aintel:.., A waswm,t " ome friend4Tom$2ing>2oneW him ironicsqn't lik%!goHRy10he thoughqRn't mqO said: "Well,1others jusuQyou, )3I'v| ast doubt.)Ave t3caraat. NoAwill !atA anyH*)*Because Iits big do $atb boiler ironP weeks agoriple-lockedO"goTbkeys."tjite as a sheet.1at' matter, boy! H,Arun,qbody! F=aa glasL1!" "* gba!!thJface. "Aqall right. W1a M#Oh,'[cave!vXIII WITHIN a fewj2new1spr.%b dozen b-loads3nq @!to McDougal'sE1boatll fill#pak"s,5 CSawy[deDD bor4. -bbwas un4,%rrrowfulFeCelf sqdim twi xD lay^1ed )@,)"hiQ closrthe cra} "thif his longing f+dfixed,>clatest,,s cheer CfreeQcoutsidwas touchedd v-tick--a dessertspoonVZ2fou&J3was fallingsPyramids' Bnew;Troy fell#this of Rome7Claid(bChristtrucifiethe Conqueror creat British empireJolumbus sailEqmassacrqLexingtons"news." K2now3ill=4be #whBthesy3gU"ll\Bsunk2then| 3of ,w "raCw;} ]c thickof oblivion. Hoa purpos Aa mi=? Did thisR pati$d!fi ousand yearsready forD2flihuman insect's need?has it another important object to accomplish  xcome? No .Band 2hap alf-bree1out ^>Qprice8drops, bu3a(e !t patheticslow-droppVBater@!hey8e1seeb!< .b's cupC6Ts firde list2bcavernmnQvels; 4b" cannot rival i 4xKn,VB BcaveI flocked in boatsfwagons|3towAfromthe farm1 hamletsseven miles|I >1ugh%irYSrall sorAprov~NsUO/3hadN! as satisfactory a%. funeral y"av&1 ha Y%is5Ir*Bgrow[#oni#agovernIrcpardon5k qlargelyT2ed;Qqtearfuleloquent meet<$he#a committeJCsappt!apBo inrRF%1ingjSwail timplore*be a mercis trample $ut| Gfoot/h0"tokfive citizenwt&+idat? If. ASataC Cselfe$/!ofl)SlingsRto scribblir names-a tear on itLir permans impair Rleaky{Q-work"2TomAvHuck to& gave anRtalk.3!haw1rneQ aboum'the Welshmant, !is}Yq>s!? old him; R  5he TS talk2now's face saddenedw bI knowJit is. You got5QNo. 233 anbut whiskeytold me itAyou;aI justp must 'a' ben ]usoon as\'fA bus|"em8q hadn'tt)ney becuzdl!go!me ! w Dand aif you!musdB els's alwaysG4we';uget holT swag, Huck, I-It-keeper. YOUF -" I"DD.mI D1youHAto w   yes! Why, it seems!ag#8> CI folleredK-YOU foll1him2Yes]2youqcmum. ISS"'s;Q2himI don't want 'em soV Bon m me mean 6s. If itpben for me he'5V ain Tex@&w,.ns entire+%in-5Aonly* Ofit before.lp:,'!ba@ main question, "whoever nipp "in(, --anyways it's a g.afor us;G wasn't n!;Bat!"Lphis comradekeenly. "Tom,agot onO twQagainti1 cave!" cblazed. "SayM FgainT*"Tom--hone 1junf--is it funV!strEarnest;!--^$as# f ! ILlife. WiF#go"reAhelpZRit ounsI bet IxE2 ifwCRe can5 ouV  6"doDwith dlittleBatroubl the worl?aGood aat! What makesRthinkoney's--2you;rtill wef!re#we1mit I'll aSto giVqmy drum71&Cq I will0jxGT" "A!--va whiz. [!do1say "Ri$w,say it. Are*4IWaPave? I ben o-cpins a,"oradays, tbut I caKlk more'n a "--IAI$.">q G$qanybodyRm 1go,1^Qmight,Drt cK]  N ; ,Gri.bskiff.&2flo] ["re I'll pull itj_by myself A neeturn yourq$Q over2Lw2artA offm@B. We"bT32eatour pipes bag or two T%kite-stru ese new-fp!thA ycall lucifer m+rs. I te, "'s1imetbshed I2omeD" Aqaafter the boys borU&) #a W B whoU Cbsen(got undec^were sev` below "Cave H%," R: "NNis bluff herJ$s!Balik d5--no houses, no wood-yards, busheRO"ee5whi4 Rup yok#'s4 landslide? Aat'sof my marks. We' aashore.yG97inU're a-sta#8'6ahole I bout of~Qa fispole. See#4can.Biplace abou$P proudly mar"a clump of sumachncc: "Heare! Look at i;athe snuggesDis country9 "ll2Drwanting/ a robberrknew I'rto have1ng 3thi1o run acros]vAther!ve1it :&2'llit quiet,1let< K:aBen RoU1Cin--*$ o@ be a GangC #lsj* any styl it. Tom Sawyer'sA:1sou$plendid,L?  "it3doe And who'c1rob/aOh, mo6. Waylay people--W$!lyV2wayRnd ki "No-@Q. Hivm# t4y26a ransomUeWhat'sCMoneg3makR<y can, off'$ir{ b; and you've kep.mqit ain'2!seV2. T!enkway. Onlyb women1shu`9 2men5Cm. T5Fb beautqnd rich awfully scaredgt"irI!es5sZStake t|+"nd4pol7y!3 as3 ass --you'llMany book. cto lovXfter they,m s a week y stop cr!eRto le'i4dro Ay'd  { Raroun2com9. It's so insy real bully' $ Ibdbetter'n a piratQC"YesF&^7way Cit's6"!toQQccircus\!at{@y+ %1andaboys ew)#ho\  $ l0Qy toi#*a7tunnel, then madir spliced 1 fadK$a on. A&E z'%pr)Tom felt ams quiver him. HeQCragm> -wick pexSon a oC cla$De wa; t2ox*_ d flame struggl)AexpiQTf!ga4 o whispers,!foS-d gloommcoppresBirit yYBpres:ar 0LQuntilE reaAG,Wndles%rhe factx not really a, BpiceLa steep DhillFirty feet highW @eW+2Now@ AshowY.  Ae he+sa aloft+` sNAorne7ban. Doi!ee? There--0big rock over$ S--donKp}3TomCqa CROSS2NOWZ '{ r Number Two? 'UNDER THE2,' hey?  2's eI saw &# p`+r stared Qe mys Qign afB 6R shaky voice:qless gi} " o QWhat!>treasureVRYes--6it.'s ghost is  ere, certain."B 81, nKB. It Q ha'nk8Qhe di,Away /%2mou!Vave--z ChereS \wouldy#ngkJ 4"ofV #so & &omi3feaX5. Misgivm!ga+d}CR mind 7Lc him--)ym$Sfools m@of ourselves! & a 8|; Z!a = !R poin`#wen1had)teffect.I6_"atA #so/EluckxQthat {7 isJ VpS AhuntG4box5wen77c -ink of fetc4theBbagsFS@B1soog oys tookr1 tofm a rock. qw less w!#gue*<,Q2<  `3'reOEickswhen we go to robbingNSe tim hold our orgieCsre, too ful snug9 ) 0CW@ bI dono P%;#ofT% wWCto hem,] /"ing!a Btime getting late, chungry`We'll eat0bUwe gec6y Temerg4/ 0ed warily f 5oast clear!weZbon lun$in ! Ac sun d#Bowar[Rhoriz] Ay pun  kimmed uDe@KR2wil1chai 91ilyZ7 alandedI3tlyd4dar7c"!id!in 1lof the widow's woodshedrAI'll.3 up*ev1 it(Upa?!unna!ou"od!.#it"it=be safe. Jus 3lay\-  Atuff1 I nd hook Benny Taylor'swagon; Iqbe gone!"nuHe disappear#re agon, putcBtwo Rsacks!"itA"w"ld,Qon to!tarted off, dragging7rgo'|h+"'sh &tgay9q fy1 on: Pp~ allo, whop  nLWGood!1me,, !ar&Gpingy*waiting. Hhurry up, trot ahead--Ahaul~Vyou. qnot as b as it4# be. Got b;in it?--orQmetalO+4tal2Tomjudged so9 1boyGthis townAtake0$%sol away1imeNing up six bits' woraold irNS sellh foundry thaz3y w; 8wic'$at6 work. But that's:4Fnatux ",  '!"!wa1to [$Ch#wa$ever mind; !n&% !E'1uckGRf=hension--for heub} falsely accus; r. Jones, we haven't!Udoing Rlaugh!'-,ymy boy.i that. Ain'bgDgood+%Ye_"sh"nA &B to #yw%"n.-(n,%to be afraid for?%is+J3not+qly answ"!inq's slow$ ~1S,;into Mrs.# dXeroom. 3 le nae doorz3gwas grandlyn1bod4tof any consequenceu2&~ ThatchersQkB Har3the!es, Aunt Polly, Sid, Mac he minister3beditor-qa great0&)?all dressX bAThe a recei;<RBartiJdany onP#we!iv such loP Dare cov Bwith:and. 2 bl[ rcrimson rhumiliaUNHv u at TomFAsuffhalf as muchQboys "however. Mr. Bn't at home, yet, so I gave him up;5$astumbl2anda Qat myG"br "Bin a(0!An1B did3Sv 1. "TyNr." She cto a bedchanRNow washI% y. Here arnew suit$ clothes --shirts, socks, .UCy're+A--nobthanks*&--b! And IY%Bz y'll fit boyou. Get Dthem await--Bdown 1youRslick .3n s \rV HUCKD! "we can slope, ifu'Ra rop" high fro"Shucks!D d|%IQrthat kiUfa crowd.,^(8 athere,a"|&4! I"an!miRA a bX'Scare Q" Silm .vhe, "auntie has been  afternoon. Mary(your Sundayb readyU 7aen fre  . baAthisus qclay, o;ra)Mr. Siddy jist 'tend toT own busiO#'sis blow-nb`It's one2#atx1havtime it'sF 1andl sons, on=uw"Vcrape they helpej9&of4'Rsay--h, 21, i yk+wK  Fold 2is to try toq#_ J( C1to-,overheard himvbto-dayvas a secre"B it' lRof a (XE RknowsSL##1allf!trro let oz!doVQwas bqHuck sh !be!--xn't geta yG1outAknowS"AwhatA'zAtracYAbbero'V  a  BovercurprisQ#AI be4 drop pretty flatWbchuckl aa verygEe aatisfiZy. "Sid, ib2tol3Oh,:Qwho i# . SOMEBODY told--3 @ZJl_ Dpers:Cmean:R to d XI7<x !you'd 'a' sne sn9EtoldZ)0)Tdo an{21an !y&~mo_Tp(+J >  cones. X$nn:N  says"--Dcuffed Sid's {i  0k8q"Now go"if2arenQto-moFit!" Som Autes'GSguest a WD-tab[$ua dozen@/"pr!upittle side;F1e sixQoom, {t1at r vAbproperl Amadev4 speech, iY!!heOkNHB honPQF [T was Dwhose modesty-- A: fo)sHe spru+{a'Er adventu finest dramatic mann_ master ofDthe B it !onJs largelyFerfe8 as clamorousNeffusivechappier K+amstanc  &, ( air show of astonishment,AheapF compliment2 so: ntude upon)(a he al/Rforgoanearlyv l܎K!Amfor%this new2 K :k set up as a targeh  \gaze laudations <"sh<2giv s a homesher rooave him educated;Rcs-Fuld spar2 sAtartFi  \'s chancrcome. H#F32uck"2 ne's rich." Noa heavy strain2the9 tmpany kept baBe du E:2aryis pleasant jos5DsilearawkwardObroke it@(AMayb. cbut he0!lo it. Oh, you%n't smile--  1eY;&a 'tTom ran Bdoor1looked at eacha perplexbterestuinquiringly a_ Ttongue-ti* #ls Tom?"P. "He--well - any making at boy out. I(<4Tom}/,q#Dggli{Eeigh,2 di"afinishsentenceCpourU1masyellow coQ the C^Cqwhat dih ? Half of FRmine! spectacl1 general{way. All gazed, nwpoke for a momentn a unanimous :.n explan  #1fur5i nd he did^B tal!bumful of _,ca scarc!n rruptiony!tok the char/its flow|che had"edAJoneM)d: I,x^Jf#%isP2it BamoupC nowone makeFBsingy), I'm wilbto allhT3was[3sumt"edRG over twelve thousand dollarsr-!as+ 7 [Qaresentever seenl`e time before, "  Q N"ho1 worth consido7av,tyaV THEer may rest Aaj's windfall33$a j4tirDpoor(vof St. o. So vast a sum, in actual cash, seemed nexincrediblejqtalked , gloated0rified, until thOs' mTJdtotter&2*'e unhealthy excite "haunted" housq 2 anneighboring villzwas dissected, plank by U3oun1 duand ransafor hidden treasu Qnot b=st men--0 grave, unromantic menWmH1Tom >Q cour2adm(gz1qnot abl|arememb~2at 4bremarkLqpossessJ&};3now1say0Twere dBrepe 4didvrsomehow regardedv8Aableyidently lo{5power of doV'2nd r common !s;5#ovir past historr!up X v2ar " of conspicuous originalityto paper published biographical sketcheNt.1 # p>#'s !ousix per cent.dJudge " lt's request. Each lad had an incBnow, was simply prodigious--a9D-dayC8Ayear7?2jus  got --no, hpromised--MrcollectD Ha quarter a7 board, lodgd school a <^1ose  be daysF 2 hiBwashbrmatter.  ,@RopiniR 8no 3boy!goz daughtPAcavepqn Beckyd@ 1fatzwin strictCw!ceA TomAtake&a whippt6  dy2isiFv  Cplea,!ceK4thei3lie-w!olorder to shi*&at!hemo8own3saiTaq outburh$atyBa nod !ou<,5magz lie--a litaworthyzaold up-2hea-Rmarch1]breast to George WaBton's lauded TruthU"ratchet!mQ 7ghtzU bso talSso superb wR walk4 fl qstamped\AfootdVv!2Shec:straight of1tol#/it"op& 1seexqlawyer  soldier some day0look to i"T#!AdmitkY National Military AcademRafter(Qraine!es  9[Amigh9'Ieither care both. Finn's w0 qsthe fac#now undeQ_ Douglas' protec introduced him)"society--no2' it, hurluis suffer%1mornj1R bear?servants1cle 1d naHQcombeC1 br hCbeddly in unsympathet3ets2ad 3e[ spot or stx~uld pres/2earQknow yK$!haE#eaba knifufork; h%use napkin, cupXplate&QlearndWbook,@go to church2stalk so "lyaspeechT become insipid in hisX; whithersoXees"edC2bar ashackl civiliz;B shuiQbound1han foot. He bravely b4is miser|1ree!thTLSe day up missFor forty-e\Qhours^g! hO j2himw2in Qdistress. The cS profoundoncerned;~7u E %eyF- @1forqbody. EThird V)r wiselyPp*$Qamong old empty hogsheads down*]AbandU#sl-T p'inQm he $rrefugeeL had slepor breakfastoB stolen odd61end Bfoodbwas ly<f in comfort969"ipwas unkempt, unM1cla old ruin of +,had madepicturesqueRays ws01frea happy[S routvBout,"his"*been causing,s 3urg=Qto go gr's face its tranquilv took a melancholy cas63RDon't X CI'vey #itwT work6"T;"#"it:~U 2to :)d("ly_&7#them waysA!mex!up% / Bsameq 7+9Awashy comb mLo thunder0w&let me sleepJ/a; I go61wea[m blamed cloth!atA smo?" m#'dg1seeany air git A'em,Show; !y'1 rotten ni,a=!et, nor lay^ croll a@nywher's; I hai"liD cellar-doErit 'pea b A  and swea q--I hatm!m Cy sermons!Aketc xK,[chaw.Qshoes$w eats by a bell1goeybed by fits up!--VK's so awful reg'lar)dy!it_(,>#dvhat way, Huck(&qmake no differI`Qybodyq STAND &3t's1 ti so. And grub como easy--I# t{!esvittles,}3askAa-fi 1; I  in a-swimming--dern'd if{AQ1do 6t". H!I'42 to"sodn't no(#--. OuRattic"ipRSwhileA daym1git!st"my , or I'd a died, TomnKBAmokeu y?5Bgapeqstretch Q scra before folks--" [The+a spasm ofsial irrit and injury]--"And dad fq"itaprayedNDime!A see, a woman! I HAD1ove2--I yUbesidHZ5's $Copen_<S$it%I G!st"QHAT, QLooky%,0S rich@what it's crack); Bworr  9 2a-wwas dead <2. N7%seBsuitis bar'l %shake 'emmc>B got into%isAif in't 'a' ben Kmoney; ntake my sh@&Syour'gimme a ten-centtimes--not manyX#s,K_# Ra derR2'th's tollable hyx4you$qbeg offSQidderv"OhK3d6%Rt. 'TBfair if you'll try^;B!a UQ longI*e $tok<Like it! Yes--bay I'd&a hot stovAI was(!itcLC. No7Brichi4liv m cussed y_Bs. I6oodv  Rf  I'll stictoo. BlamBall!QSas we3gun_1a c*"ll+AfixeEArob,p&olishness has  k"up5pil~x1sawx opportuni%"CDhereHECUevYnturning 'qNo! Oh, -licks; ara!qin real3-wood earnest)J+CbR'm siV-?5But<l)#qgang ifarespec5R's jo3h!!C"inq Didn't[!go~a piraterYes, bu%'sRt. A 7 zfAgh-ti7"a NQ is--rgeneral~A. InTr!ri 6  Qup inQnobilRdukes03uchw,! aS2lwme? YouhC  A youP *nVWOULD+B" "wR%,tI DON'TR--but(vpeople say? Why 'd say, 'Mph! V#!  low characters in it!' TCU+ {h+`$t*#so , engaged%Tental"#e. Finally h# Rll go}aba monttC!nd1if  `3it,49XRme b't>%Q gang e_b, it'sQz! Coxo8X`2and G>Toh# a[oEWill/!--yg2? Tggood. If sheUt"ofroughestK"s,@qprivate-Dcussdcrowd ror bust] Astar/4NCturn$s? 3right offBB@Atogem"avQiniti  0Qmaybe(H(Lj;+W6t$12Bto sn9Cone [+ O#te rgang's 8+sd nNre choppl o flinder qkill an 2 anV his famiWhurtsX%ay9/e3y g8,!_3E bet it is3 "at1ing Abe dt midnightthe lonesom|3est@ you can find--a ha'nted " ib:-Bll rNB3up M#yw{(socyou've3 on a coffi 1sigh with bloodOt)Bsome RLIKE!frmillion )X!ieh n 8 s QidderAR I ro 8#gi% acr of aRLbody tal('-&itD bu+!sn!,wet." CONCLUSION SO endeth schronicP$G strictly a}!BOY, it kAstop ;Sstoryz!nofEmuch)p"wi becoming ^3MANone writes a!! a Sgrown*Q, he O4A exarto stopOB is,a marriage) iof juveniles, he W can. Mosgyrperform still liveare prospc2Som.it may seem ZQke upzyounger ones agaiM9 1sor"meAwomey turned@krRit wiwRwisesyOto reveaH&Rat pacQtheirDs at'4. Pby David Widge]previous ediwas updat2Jose Menendez'>  THE ADVENTURES OF TOM SAWYER0 /BY# MARK TWAIN' (Samuel Langhorne Clemens)P R E F A C E MOSTW%e 1s recordw areally occurred;nr two were experienc6 myb!rObose of"wh7 ]#3mat7$inY Finn is drawn from life; Q also$an individual$is a combi,Ybistics #re_whom I knewSabelong t.Sosite of architecture. The oddK!!stzqs touch}"onDall prevalentchildren!bslaves5e Wpwe period1is ay, thirty osAty y ago. Although my book iaGended mainly@ Athe qtainmen1boy7 girls, I!7#ill not be shunni "7$at;d, for vmy plan<"tooo0ly remind adul0 they onceathemselve^ 1of (rhey fel aalked,}Rqueer89s=Gimes 4. z!dUTHOR. HARTFORD, 1876TT O M S A W Y E RI "TOM!" No answ& g4iat boy, I wonder? You Rld lady pul'"!eratacles|$!ov #emcthe ro0rn she pm:&ut"m/seldom or +rTHROUGHhrfor so WJj!asyIher state pairA3 pr8V2her",Qbuilt3"style," not service--4'!se+raetove-lidsUs well. She looked 2z"&mo68!aiK1Qt fie0673oudP;the furniturUhear:e IQ aet holI1you A--" 2="by AtimewVnding punchingNL%dre broomj!soGdneededE2to punctuat Q!esBresurrected no f B catiJ6"diz!ea!1wenthe openDA andUiRtm?he tomato vin~"jimpson" weedsB constitb the garden. No Tom. S AliftWmavoice  angle calculfor distanc1 sh : "Y-o-u-T w!slTnoiseU"h42  i to seize al2boye slack of his  aand ar?Qhis fwA. "2! IE 'a'closet. Who!(.Pb?" "N  1! LI!at yourU8(Qsr mouthb!ISa truckXIk?-1aun. Dk^3USjam--FewFWAI'vet" dk"leGA jam@e I'd skin you. Hand me switch.# h.i d air--Sl was desperate-- "My Bbehia hatesB{5 S else#'ve GOT to doLIrhim, orbu!ilaTom di>-eidFAgood02. H  back home barely in seaso}help Jim small colored1sawS9-day's wo"likindlingssupper--at le6e{n:"to~=8hiscto Jim"Jithree-fourtht~$rk. Tom's!br( (or rather half-Q) Sid!al0Awith A(piccup chips),Z ca quieH1andE,%noDous,VBsome* While Lstealing sugar aQ offe{X7C askw+questions/ Ewere1gui1nd deep--for Bwantxtrap him6damagingments. Like ;pI6-hearted souls (1was pet vanityAlievA `4endowed with a t@ 1arkmysterious diplomacy0qhe loveacontemn0xmost transparent d׏ as marvel[low cunning. Sai u: "Tom1midQ warmR, warn't it8 BYes'OPowerful1'u "wa n(FAA bim a?Ae shvTom--a togL#unr.9;suspicion. H8dL93facKK!ld aQ. So [ ?SNo'm-ynot very mx =1rea+oY Sshirta#Bu } 1tooJ though." A-Qflatt hO7rreflects2;hy-2hir1dry!ny Bknow/*s8!hay Fher Glqin spit/1herC whe wind lay, I ZqforestajCwhat )next move: "S]us pumped on eads--mine's damp yet. See?" 88"ex:Uthinkoverlook(v circumstantial evidenc!mis=a 1. Tya new ins"5ion^ ho undo yourrcollar =bI sewe to pump on/Qhead,3you? Unbuttsjacket!#sh#of\2fac1Aopen]s@a. His qas secujQ. "B1! W Ago ' #I'11sur'#edQ A 8bee  QI forg(y*. you're a kina singed c"s --better': . THIS timu Sahalf sV*her sagacitymiscarried,3gla?ATom i3Winto obedient conductconce. But SidneyIB3you5hisith white thread, but Qblack5BWhy,OB sew8r! Tom!" rnot waitQt. As4ent>w3o85bSiddy, 2licfk abI|afe plac/nrwo larg22les "A wer#us.+sthe lapd6them--on^  D3theHpJDShe'D"anoticeQit ha_'for Sid. Conf6it! she sews]&_ &I wish to geeminy sstick to t'other--Akeep!run of 'emsR I beI'll lamX qearn hi4!Hene Model Boye villaghkAhe m&1boyOS well--and loatim. Withins, or even less, M1tenG-As. NQcause sV1onePR heavV.Bbittj2him a man's ow_aTand p 1bd !emgAdrov% mSb)y25!--ras men's misf+eiaexcite!of. This newwas a valupSveltyP1stlojust acquiredb negrohto pract5Pundisturbed. It conma peculiar bird-lik5, a Aliqu wrble, pW  &#he9Lh(Droof at short 5valAmids@@Busicxreader probablyEbs how !it.4ra boy. Dilige attention soon gave 8#kn{7he strodeFVtreet full of harmon1his gratitud 0^ an astronomer feels who hasg planet--no doubtlqfar as Eg, deep, unalloyedRs concerned,advantagFAwithT!boO t$XComerRsumme4ElongJNqBark,2 P"ly Tom chel2!hiustle. A stranger!hi boy a shader'himself. A new-cAJaA ageither sexXan impressive curiosiPJdshabby\WJ!Thy{`Qdress\"oo  on a week-A<FFa astou B cap dainty ,W- ced bluL3b round%5was#Rnatty0"sohis pantaloons2had;82 on#iGonly Fri"He!wo necktie, a br  aribbon0had a cit#KR air |bat ate&avitals B mor1staUIsplendid}1hig!oshis finerUhabbi E outfit seemed d3crow. N]boy spokeU,2oneEa--but Nsidewise, inrcle; theyArface toaand ey!ey#X - U!" "D3to see you try i,  8$doN> ,L.-'Y?1CanACan'A "An>\!paMp ! Aname"q'Tisn't5"of^,Well I 'low^ MAKE it my0)why don't youhI\2 sa}01ill3qMuch--mAMUCHrb" "Oh^ 2'rey smart, DON'Tm# I)l one hand:n!meIr DO it? You SAY aI WILLTyou fool~ "Oh yes--een whole familiesame fixqSmarty!| CSOME "Oh_a a hat+AR lump-8;Z[Bck it offqanybodyG61akeb!re suck eggsYda liarn %fighting.q and datake it up1AAw--aa walkXSSay--!meA morBsass@and bou1 rof~oOh, of COURSE+; then? What/ eSAYINGTx for? W>{EIt's XQfraidyxI AIN'TaYou ar7""I+A3/3eyiM1"sihaR eachm tCwereH  .XGet away Ahere"GoyourselfDI wo B"Sobstood,X Sa foo0d"as a bra' both shoving 2ainaglowertg1Q hate# nfget an a. Afte=Auggl ,Aoth <"hoy#flHmSrelax Jnx watchful caution|acowardca pup.1ellRig brozQthras'y3his44r finger.make himW 1toosI care forj{4? I;1a6big Be isUmore,hrow him'3at !T[Bothas imaginary.]$at's a li=DYOUR 2n'tAit s1rew6n ;G dus cbig toh<qFstepZ/y stand up. Ateal sheeFTz!w{ 1tepv-Dmptl N="sa$'dnow let's D crowd m;abetterZ{HSAIDh*--Wd[By jingo!Xtwo cents.jAtook1bro)QEpper>$ 1ockd cderisionRtruck*g0B. InF.QstantR boys1rol Aand 4ingdg3d6Acats3, 1pac"Rtuggetm A's hI 3nd fFs, punch3Qscrat"T's no,covered -#:'ry* confusion2for) ;the fog of baXcDTom %, seatedU!id1# p sts. "Holler 'nuff!"3 heaboy on%Rruggl1fre*Hcrying--.rom rage. dn. At last#go1 smwbed "'N"1up -)8jyou. Bny 1foo+Qnext  3Mqff brus6S2ustGsobbing, snuff5and1\Eally&Aback1sha1his;.1tenbhat he=a do to]the "next) 2ughout." ToTom respo0Rjeers"st7off in high feath as soon asI4was*(up a stone,2w i "hirbetweenhoulderss-\1ailran like an antelop_Qchase6 traitor{"Rthus ere he livednaa posia2gat2som9A, da the enemy toonly made2s a gond declined. %J2's and called 0 bad, vicious, vulgar&"ndc3[ m} Twent away;!he\ he "'lowed" to "lay"s'.g1gott>2ate#:2and$he climbutiously in r #unl an ambuscade,-Bpers4#Aunt;g"aw]2tat n her resolN 1 toT his %%2captivity3ard/became adamantine in its firmness. CHAPTER II SATURDAY mor;e,"&4Qworld#.and fresh/Qbrimm-1ith5P1wasng in every:(L" i>'!wa*RR issuQ rthe lip`Zcheer iniJfAa sp&tAstep locust-treQbloom bragranthe blossoms fill air. Cardiff Hill, beyona]ave it,B!grith vegeta!2lay (4farZ, to seem a Delec"Land, dreamy, reposefulinviting. 1ppe5e2alkAa bu| of whiteZ long-handl11ushcsurvey  1qll gladE2lefoand a deep melancholy settledAuponaspiritmrty yardsQoard k nine feet/s. Life c hollo7existence^Ba bu{1ASigh)Qhe di 2hisfpassed)Isopmost plank; rep the operB; di8Qgain;f8/ignificant qed streaqar-reac!co7'un8s"wntree-boxQ Jim 3skipping 5at va tin paiT singing Buffalo Gals. BrQwater (rwn pumpKRlwayshateful work inu"Seyes,Dq now itJ1not\k 1 so\dompanypump. White, mulatto/Qnegro! 9there wai'Qtheirqs, rest?trading plays, quarren $, g, skylarking. And h"al?Awas only a hundRgnd fif!!f,/3got)  under an hour. "ev an somesG!lyto go after him. U1Say, I'll fetcp'7'll`"soJim shook :wq, Mars #NOle missis, she tol|IBgo an' g<s3an'F#op ' roun' wif_61sayZQspec'zEAgwingAax m ,rs5$an' 'tend to my ownQ--sheed SHE'D+f to de/5in'2you Cwhatt!id#. SSthe w talks. Gimm $--qbe gonerC a a\!R. SHE ever knowI9 she'd take)Qtar dd me. 'Deed2wou.q"SHE! S ver licks--whacks 'e}URimble1whosE ,p5C }w%1 awP1but6hurt--any#it!if$Gcry.you a marvel" aKs alley!Abega.waver. "%!Di=bully taQMy! Da5Fb, I teQ! But Tom I's" 'fraid aissis--" "And besides,R will#shAmy s,^o"Ji- human--t> Qttrac  "ooHAfor iaHe put( *a"ntZebsorbing!Qest w. 4andS being unwR; V2s fZ3dowI k!ApailJg3rea+Awas "waCvigo *retiringcQield 7a slipperZ {and triumphEeye.''s energyeAlastq}Tthink%!fuE 1had $ne$Sis daH"rrows multiplied. So~ 1fre!s #tra**!onL 2sor@2delXBd)Bb they J$a bof fun8%m2!to|)96verZcof it burn like fire%2hiscly wealt- q examin0 B--bitoys, marble trash; ;8 to buy an exchange of WORKX* 7s,*an hour of purk4domi#retraitened meansB "s qgave upoAidea r=1oys4 !rkN hopeless7- e Qm! No=  3than a great, ma1 8entC 6! >qtranqui. Ben Rog%v-spresentlnK boy, ofbwhose ridicule dreadingdb's gai the hop-skip-and-jump--prooj6is lis anticipa2!HeVM3ran appl1 gie1a la%melodious whoop, at vals, foljB by -toned ding-do,, a* amboat. As henhe slack}1spey"1ookhQmiddlU, leaned faro starboarderounded to ponderaborious pomp3/Oce--the Big Missouri (d| %;wdrawing"of 1boac capta9engine-bellbined, s!,o7 Qself  <own hurricane-deck the ordersQexecuAthemR1K, sir! Ting-a-linga!" The$way ran almos he drew up slowly towarq. "ShipToo backmsHis arm"gh^Atiff8xAidesZei mAstab%h Chow! ch-chow-wow! rQhand,"escribingly circlesC3 rePing a forty-'wheel. "Lg l-chow!" Thej5 e "to &RShead B0her! Letg*mslow! W-A! GeO ead-line! LIVELY nome--outd"- #t'Q#'t ! T~ t(hRstumpMQthe bA! StSy*age, now--l go! Donb 3thesH SH'T! S'tH'T!" (Suge-cocks)"on . R--paix9!, yDBen (n "Hi-YI! YOU'RE:ump, ain' nH 3hisPFouchI!eyan artistZ(!n vi\ gentle sweect&!suܙ"s $R rang4)alongsidv7  2mou!%er #e (n"tu1 k]! "Hello, old chap,M4gotTs, hey?"heeled suddenJn31it', Ben! IC9TnoticDSay--I'm goBa-swi, I am. DoQ wishacould? Aof c# you'd druther[ !--0 ?5? C)I (6(omR:d,#bi2at 6` ?` $hyIETHAT#umC \Aansw1carG ly: "Well, maybe it iU zI,$it suits Tom Sawyer dV1meaQ!le{`you LIKE!3Thep u}1mov^"? I(see why I oughtn'Gl-1. De$"get a chanW+# a fence every da}1hat(2thez-Q in aSlight!toAnibbApple2R swep daintily=forth--steI"ba<1notK effect--advAhere?there--critici=50--Ben wat2mov@1getm`!"ndp( bested, Ted. P 5 heTom, let MEf a littl _o consent1althis mind: "No--no--LBl"n'ly do, Ben. Y7'e,1's  particula.u a--righ eNQknow -G if C& I^3and. Yes, she's ;-bbe don[ careful; v"onmRthous Ftwo can do i?wayybNo--is6Hso? 1--ljust try. Only--I'd let YOUCas m:" "Ben, ., honest injun; but-D$nn!o s!1n'tAhim;7/!, "/Sid. Nowy` how I'm fixed? IfEa tacklKsb[C&Qhappe+"itOh, shucksbQ3as lgA youocK,#mySFN2.bafeardW3ALL Rareluct|ig @qalacrit1. Ah i4e  )erAb workeZ"sw>LA sun( #ed< 1 saa barrel7shade close by, danglQslegs, m^& aplanne! s0Iter of more innocBT33o ln6material;ed along :; they ca6BjeerArema2A. Bytime Ben\!faY'1out!ra1he $+Billy Fisher for a kit!good repair;1whe>out, Johnny Miller b in for a1Ir! a!ngw  uCso o, R hourHT hour8 afternoon>," a5poverty-stricken; !2was literally )3 in2. HhW"s r q mentioetwelveA par6 a jews-harp,*ece of blue bottle-gla}uOthrough, a spool cann2B key|u unlock1, a!mchalk, a ca decantU& tin soldiQcouplQtadposix fire-crack&r kitten only one eyJ61ass>knob, a dog-Asbno dogv3hanNvb, four1as of o C-peea dilapid)old window sash 1hadsa nice,G_2idlM#thq--plent40 \2encQthree coat! on it! If2n't9>9ut )"heT have bankrupted+Bvill)d2aidCmselR!itnot such a!,Yqall. HexA3dis8+ a great lawRuman |,1out5 ing it--namely, ."inD&Ra manzboy covet a} s !isG! n5ary;^ difficul vattain.U3! se philosop&)che wri ]x@A now comprehen>qat Work $isaatever dy is OBLIGEDj,<OPlay< not oblig# do. And 2helyIto under* :U1ruc artificial flowers orW_5ing"ad-mill is work, ten-pins or climMont Blanc amusement 3are2y gentlemen in Englho driveb-horseJ$nger-coaches tw}r thirty miles daily linummer, becaus@privilege costs themDablenQbut iOy"IK wages fo*XAturnh1ntoI3txsresign.oy mused at3ovea%ub?GQwhichRtakenC r Sworld`whheadquartersv[eport(sI TOM , ]q lkby an open {@leasant rearwBpartYwas bedroom, breakfast-s dining and library,|c balmy D air* stful quieeq odor o%Y@.rowsing murmur (AbeeshFeir effec!he AnoddfQver h"i "sh5n,%1but#caLdasleeplap. Her spectacl)1progQup onsAgrayA for-F1ty.%" 1Tomdeserted #ag&` !nda0 'iRpower p_repid wayN said: "Mayn't I$} yKCaunt&'ready? How mu Adone*AIt'sd.XCTom,ro me--I= bear itIb<u; it ISRF." dY1truxevidencezw uBsee LRrselfe a1uld^MDfind1perQ4C. ofAstat true. Whenfse entir*"ed1notelaborately QrecoaM!an!n aeak ad8ogw astonish 4was#unspeakable. S|bnever!m U's no^# i2canCwhenM2 %Ad to B." A!AdiluO!he)!liAby a, "But it#s seldoma aRI'm bsro say. go 'long$pl/Aryou get@3som i\BB, or(tan you." &awas sokbcome bSsplenSchiev1hattook him#th&tsE- choice appleQdelivit to him,C"ov cture upoBvaluNflavor a treatAo it uit came~ "siT9ugh virtuous effbsd: a happy Scriptur urish, he "hooked" bughnutn !kieand saw SidQstart%pHl2 stairwayll tck roomsecond floor. ClodsAhand$A thegC)waXmtwinkling y52d a #Si'a hail-stormx # ct$Allec+ surprised facultiess*arescueQ or s0+Bclod7tersonal<G} MAgonerSa gat3eneral t h&2too9iY$!usTit. HGrt peace+ /"SiWAcall"tt s black $6+n1rouC1skipQlock,hinto a muddy allaled byQ%s aunt's cow-stT4 He aly gotrly beyo  reach of capuQhasteR the public squ$1, wtwo "military"N!ie02boy"met for confliY AccorO qto prev#sappointt <G3 ofޢ these armies, Joe Harper (a bosom friend)<the otheruse two great commay ! dYSt conyb to fi!--DAbettIil2Rstill<ber frys !geon an eminence/Qconduield operations bysD aides-de-camp's army wX uvictory+ nd hard-f@ 1 ba# T were counprisoners 'drTterms rdisagre d7y $ay 03ed;X 4R fell?and march "ayhTom turned home slone. Q!as &3useJeff Thatch-1ved_saw a new girl e garden--a love^<blue-eyed creaturQ yellir plaite1two-tails, white summZd embroi  )JQettes fresh-crow2ero4without f^+a shot. A certain Amy Lawrenc2U2his6 !efoJa memory of  Gm 1 he#d to distr#; !rePdKQssion"dogi o + ~Aevant partialit pmonths win8bher; sTesseda week ago; $ <bappiesx Oroudest Rworld WQshort_e!inRinstactime ssgu a casual=)visit is dH"sh this new ange's furtiv -shqchim; tf Bpretq6 Aknow\4was %"show off" in 2sorabsurd boyish ways,# wBadmi%{Bkept is grotesque foolishnessome time;, by-and-by,  )s Adang) gymnastiche glancZ@!idy MC girl was we(xher wayO $upn r leanedq, griev5b+Roping! tarry yetblonger 1halA1 moO  Qsteps m]1warQ heav great sigh asp$Ar for threshold.#1his:! lI", Qhe toqa pansyG L ! ss): 3 bo)3rou\Uad with Tr twoY Aeyes=#haWCdown d as ifBsome of interest goat direction. P- he pick:&w#ry !ba! iO,aead tifar backSas hefrom side8aide, iO edged nearer B; finally his bare-#W3(liant toes)w 2e haBaway the treasu# OArnerb only minute--(v Rbutto$1 inhis jacket, nexheart--orstomach, possiblAnot 82pos<s anatomnot hypercriticaZByway1# 4ung#<nightfall,ing off," a16 2irl exhibite again, though Tom comfor$"im$ 3hop@Abeen>,*een awar&P  Bs. FX he strode home !H[[%advisions. Allasupper.cspirit"soCrunt won "what had #inV child." He tookÁod scoldrbout clB Sidp1seee!miY QleastQtriedIugar undGveryG"goknuckles raQ!foxc "Aundon't whackmhe takesQWell,/1torsRa bod 1way"do. You'd b9  bsugar ifq*watchingu sezckitche Xs immunity, l"gar-bowl--a sor&2glog2Tom/Fllnigh unbear_'s fingers6`Rowl d1LVbrokeFin ecstasies*JB (!he controlP#Rtongu!il5 toF Bpeak6!d,^P1in,18A sit0 bectly Lyshe askejimischief|u! tCrRbe noA!so+   !asefpet model "catch2 Heo brimful of exultR1 Thold Q rld lady #ba stood abovwreck discharging lightnings of wrath(#Y v, "Now iVm2A8zt gQspraw1on 2loo potent palm#ups!to($"keTom cried out: "Ho 1'erbelting ME for?--SiK it!faused,\vl1heapABut 1shes5her3she RUmf! you didn'ta lick amiss,)Wsome other audacious Iaz 9 ." Then her conscience reprgeqshe yeaato say'3 ki l;ashe ju - !beo4tru!a  Ae wr7T cipline forbadhs. So sh rsilence2d1bffairs av2rt.|1ulk# a W "ex chis woBknew3Qheartb Bas ojAkneen was morosely gratified b 1ous\)OAhangno signal take notice of nona3ingRR fell"no cthen, s& a film of tears~ahe ref recognition!pilsick unto deathbim besee}D one forgiving*u]cds facew rand die word unsaid. Ah,+Hs !el2? A bZK the river,  Qcurlsw9<8sore heart a .sEhrow 1ow 4earxfall like r4 (ps pray GoAgiveAbackG!bog\  , AabusY9[Rmore!k.blie thlsi02--a suffererP"se grief C*# e$so, as feelBwithAbathos se dreams,hto keep swall ,Qlike to choke03swaqEblur:, which overflow}xr winkedran down*l?XAose.| ba luxu'"hi:op17gsorrowXnot bear to have"ly'Lixrng deligh\ Brude0Cit; <too sacr/rcontact7Tso, pU,his cousin Ma31in,!EalivAe jo!sesB4hom+ an age-longbof oner aountry!go~in cloudBdark u"on|Munshine in at@1"wa B fars the accustom"1unt=?S` desolated"suwere ind9. A log rafAthe S invi%fQhe se!i on its outer edg Aempl+reary vast*iram, wis4Lw_ u rly be djQt oncs5 un6c1the&'routine devisWn9N*Y+Cflowt>got it out, rumple!ila 'Fily increais dismal felic) %HeFQ1pitu knew? WOrshe crym8! L! r%toRarms #ne  him? Or2she(!co1all (,1? Tuch an agony of pleasu ) ` tC and 1gai 6set it up in new!vaosTswore ithdbare. Vqhe rosei?NJAdepa4l A. Ahalf-past nine or ten o'clock hey 3alo+'street tothe Adored Unknown ;X{ `; no sound  3lisdVear; a c/qwas casa dull glowbthe cuCof aX"c-story/Q. Wascre? He climb,jCs stealthyf/ !thn qood und]#at j Aup aC#,ith emotion; Claid]$wn9#g bit, disposingpAuponp Rback,]ands clasphis breah41hiss wilted5*1thutdie--ou~ jyno shelter bomeles-C, no !lya to wie death-dampsR!ow8  2benvTinglyqmthe great3cams4SHE:!eeww4'E outvT glad/U,p4oh!A!hev Atear>poor, lifWform,=>Dsigh~1a ba youngE so rudely b:*Duntimely cut ? Aup, a maid-servant'cordant voice profan" holy calmqa delugAwater dren#rone martyr's5"s!BstraB hero sprang uAa relieving snort%awhiz aPa missil/vir, mingledHV"rm Qa curHBshiv1glal !smb 1vag rAv!e >Bshotvgloom. No!Q, as +all undressed for bZ  omission. CHAPTER IȷCsun 5!2QanquiT"ld]abeamed8D4'ful village~a benediY Breakfas, Aunt Pold family worship:cL2ega# ab built6up of solid cAScriptural quot/s, welded`%A a thin mortar of originality Bsummf  7she+a grim chapter xMosaic LawKaSinai.n Tom gird Qloinsto speakh2bto "geverses." Sidlhis lesson/"c beforAbentt his energies5 smemoriz\CfiveeAhe c$"8the Sermo!Mobecause 2uld.#noO, were shorter. Aalf an hourugeneralw!no;wn =Qraver) %olN'Bf hu-3 !iss3bus $Qng re%ions. Mary took<1booAhearPSrecitahe tri!|] Gog: "Bl!ar 1--a " "Poor"-- "Yes--poor; b025#In? :$ i/Ubthey--" "THEIRS BFor +. Lairs is[kingdom &MavenEy>_mourn&ShzS, H, A S, H--Oh, IO$"wh is!" "SHALL BOh, # fb shall-- *Y/ I 5iWHAT? Whyyou tell me,1?--do you w !! bmmean for?2youthick-heaRhing, I'm not tea[1youpyA1 do. You must32leaI75. D"be"buraged you'll manage it--f 2do,11Agive #ever so niceC, that's0#bo'"ll{1! Ws"TMary,K C+'.ueryou minMbsay it's,< AbYou be"sou%. Qtackl ;3" [did ""*2und double pressure of curiositprospective ga2 diA)2ithD he accomplished a shin SuccesQ gave  a brand-new "Barlow" knifqth twel2d aSRcentstZSnvulsGthatGVsysteL[ DDoundTrue, the scut any!buwas a "sure-enough" 5t  inconceivable grandeurSBat--lBWestern boys >A got N|a weapon1#qunterfeZ3a injur<3obmysterw] erhaps. Tomr˻to scarify82cupuR\ "it )ArrancCgin F dbureau" !ca\ qoff to  eSunday-school. FLrtin bas 8andmABsoap!he  3"oo21setM4n aRbench2; ta$ d+be soapeiy; sleeves; poured>& ,W=y~e'  " Ubegan?ace diligentlyFStowel|-g"oo&&3 re),5and2Now49lhashamesmustn'tVbad. Water wShurt c#"Tosa triflncerted. T=5sin was refillAthis3xO&ito'b, gathaf;/% ebig brGU9(hen nDboth eyes sh8Bd grC+t.[ , 1nor&testimony of sudsR>2ripT Aface mse emergf>x,fnot yet satisfactoryQclean territory* " a%Achinhis jaws,mask; bel_p4dis lin1 dark expan5unirrigated soil]Rsprea7,rin fronlAback  2himBnwhen sheY%dR4him$Ba maqa broth1adistin<Bolor)Aatur2haineatly brushe2its curls w]Ainto2intsymmetrical effect. [5!iv;w smoothL[3labdifficultQplastere AI]3qhead; f(] effemin71andBown  lith bitterness.] Thenr!go! aP1 ofF#cl%1Busedy##on Bs duvH!wo s> were simp1"ot%#clothes& "soJRat we qthe sizV brdrobe3D"put`"s" !!S; she+Qneat "/m,his vast shirt MG2ovem,soff and c V-QspeckSrtraw ha)1now#oed exceedWAimprcand un2abl":Yy as E as OOTa restraint e lgAm. H-"atU Q forgie"5!peZ61 cothem tho"ly/2tal s9Bthe 9rthem ouH2los:Stempem~z bm$o do ever  Dn't "doAMaryN&rsuasiveTPlease, Tom-- 3So &zhoes snarlingJ(son read9/hree children se3for "!latat Tom hd heart; but3andbere fo0!sSabbath`-from nin$Aten;B church service. Two  "ermon voluntarilV :2too!ger reas.TZ urch's high-backed, uncushi$BpewsU!~h4d persons r edific_bWSplain,'a sort of pifR6ard*kQon totia steeplB Tom droppe(ps2acc0a comrader]2ay,N,o)2a y*;aticket5Yesy'e'Agive:APieclickrish fish-hookX2LesExa'em." 5(0 ? W propertyGd@!tr=cMwhite alleysb  E6Tsmall+ #oro9forSsblue on(1way ,b boys Sy camwent on buyingz of various colors ten or fifteen minutes l !/ qqa swarm; #leg Rnoisy: irls, proceemoE!se &dAed a quarr84Airst5jAcameyQ teac a grave, elderly man,75QferedGny-'6>aTom pua boy's @ !inM 3;"was absorb% the boy  ;[aa pin w I boyk%8 hear him say "Ouch!"got a new reprimandJ 'csle clasWqof a pa --restless,!tr\Csome> Qthey to recite their@w%~am knewuverses /,!habe prompv8ll along. Howe)worried @2reward--in T blue,,q passagl"e '(;2pay#wo1 of  ation. TenuB equa#onc7$Tbe ex^qfor it;0Cyellow onep #enV> Wsqsuperin;"ntat1ly bound Bible (qforty cin those easy3s) SQpupil2 maH$!myKe* (the industaapplic+4 toeTthousand]H2 BDore? And yet Mary had 2two%is way--it the patie5!rk!^  oy of German parentage had wonRqor five3onc#ed i out stopp/{Gtraitmental facultiesyCtoo (haand he~+Abett {U idiodBat dth--a grievouC2he :"onpR occa$y company f(1 exbed it)  'y come out and "(b." OnlRolderts13Bkeep}Li]1tedRlong  to get a2[s6y*sse prizaa rarenoteworthy circumstancer32fuls?conspicuous for  ;AspotEyQlar'stQ4fir"a fresh amb/that often_')ed\weeks. It is{1s Tom's qstomachn 1rea 1ungo1for#.o. unquestion6-Sntire& hNPa1lonQglory,qthe ecl+!atcI rIn due K  &Rp in {e pulpit" a6d hymn-book inh)!nd cforefi"O(between its leave Frd atten0G  ! m09>y,4aryAspee  RGs asoEBas i ainevitAsheeTmusic&sq who stu'1forAplat<$ings a solo atn %!y,:Qneithen sa refer.0k. ThisN0fa slimEirty-five a sandy goate8Qhair;1ore 2iff!Cing-wE"Bsensa}!itenew hero ups C!on l Xtwo marvels to gazt#injbof oneBboysall eaten upenvy--but tb)est pangI-swho perstoo latDS themselv contribub athis hsplendor by trad01 to't wealth+bamasseelling whiteprivileges s]D2pis,Urthe dupa wily fraud, a guileful snakeRgrass !4was;ew 2Tomo"as%2eff superin"nt pump upI7!s;it lacke&wS-true gush< IQoor f' tinct taughZ-xzw not well bea]l  k4was.preposterou8 c!!hae)Q thou[!sh $al wisdom on@remises--a dozen ,#capacity,Rout a8. wBprou$glsH<T1Tom it in heL-ouldn't look. ShH 3n ss grain %"d;Ta dim suspicionbG(b--came P-! wnEd; a1`#glrld her ] +her heart brokMs jealouaangry,t'&rs3shebody. Tom G!of (Hhought). )asohis tongue,Qtied,J4 2rdl"quaked--part75cau awful greatnes rthe manGmain6H$ have likBfall00borship!ifyqLq1ark # ph an Tom'!ca9Rhim aC * sand ask!qhis nam?hwstammered, gaspe!goUout: "Tom." "Oh, no,QTom----" "Thomas'"Ah~'TI7!or\ it, maybe{'W well. But you've)one I daresay""llit to me,6Q you?1ellQ "an"Qother", ","'Walters, "5!fay sirX=n't forger mannerI Q--sir1it!B's ayvF . t, manly0 Q. TwoLverses is a  many--very,(.'2ou $can be sorryUQ*c you tOAAlearm( knowledge is worthchan an@1<3is pa; it's4#e  Dmen;V$^d3Qman yC$Alf, -5day1'llR,Y9ay, It' R <)1rec ;A1 ofDoyhood-- Gvmy dear-5tha^mU<  Jood ,L$en? H.)3 ga beautifulI*\d id elegant'"anH  for my own, always right brin"upA is |2you<{!~&take any mone^ose tZZindeeE1nown't mind t $ m+ "isB2 hylearned--no, I know --for we are4$of3boyG!. 1no vAknow2nam^r, es. Won'Lbtell u9the first3tha`!ap$Fed?"l1tuga_utton-ho sheepishblushed, nowz1his! fO'MAsankm ain himH_\ETAposshtc2sweb simplest (--why DIDH=ask him? Yet hBrt obligspeak up say: "Ad'1--d}#be!.L_hung fire."*$me\ady. "TF twoeDAVID AND GOLIAH!" Let us draI%cu3 rcharity tYsceneJV ABOUTQtcracked be2theu church ?R ring01epeople(1 ga||"mobsermon. childrenHA 5!e C C eoccupi5ith thei s, so as K{Kd. Aunt Polly zTom and472sataher--TomL%"d G8sleB2!ha9A be GrE9the{e seductive `AbsummerEs asQ crowd fil/"s: 1gedneedy postmast=!hosseen better days C may<"hiJ "ha$y3re,| 4 unmp#ieOejusticRpeacei widow Douglass, fair, smartQforty!ene,O2-he4Asoul well-to-do, her hill mansj only palactAChosp+and muchKmost lavish 't of fes,St. Petersburg [RboastAbentxQvener,3MajsMrs. Ward;  Riverson,bnew noaACance_1ther village, followRa tro8lawn-cla.ribbon-de!3 p-breakern#q clerks!owfa body;C had.G vestibule sucD!cane-heads, a circYb!wa! o !imcg admirers, ti Alast!ru ir gantlet; and/AcamedModel Boy, Willie MuffFs heedful carlQhis m5 asXere cut 2x ! b=tN,>#to, v1prisrmatrons(2ll vh !so0. qbesidesa"throw;3 Qm" so. His whit.kerchiefZhF#q pocket behind, as usual ons--accidentalN)noa!he 1ed ytas snobcongregapefully (: 'T1once, to warn laggard0straggler a solemn hush f p! <Q+vdbrokenBtitt=8and& choir is galler=GF!edthrough =conce adQY Pill-bred, but I rforgottgh!rea2. I !y [B agoV.I can scarcely rememb?_="itI kg1 in foreignj#"ry* minister & "ou3hym-1reaba relish, in a peculiar styleZeat part His voic on a medium key&Zasteadi:/i0% a"* rBbore1strY5umphasis topmost wor splunged8spring-board: Shall I be car-ri-ed to!sk !on flow'ry BEDS of ease, WhilstsyOIH sail thro' BLOODY seas? Hqregardeadful readKZt"sociables" h= #R>!to;r poetry,Cwhen32ughcqladies l3 up<3han let them fall helplesslyrir lapsc"wall"C!eynB1k\!irZ5s, u say, "Words cannot71 itfis tooV, TOO rtal earth." Aft 2hym~&Bsung2RevtSprague#' into a bulletinGuoff "notices"ge,qocietiej-1i#)o4 2st qstretch of doom--a queer custom#is vin America#cities, away x4)1 agAabunZnewspapers. Often3Eless, to justifm 1adi7l3Bhard")q get riu'ittprayed. -, r:bwent iIhtails: it pleadea 2rBttle),3rend:7=eip ' itself; ?y([State officersqUnited . ' 'C)s5A Pre.t_q Governm$poor sailors, tossed bK1rmyM ppressed millions groaningeel of European monan  A Ori5 despotism1sucDght 2tid?'rand yet-M"yehqee nor !to &alRheath)the far islB seaZaclosedW a su Twords!abmfind gra)RfavorV!seLm fertile ground, yie%Qime a?0Charv9good. AmenP!re 3a r(Q of d v8! cPy sat down whose historybook relates disQenjoyQB, he< Aendu}Qt--ifN1ven9J r  it; he kept v y a63 --Lp"gc#, qBzc of olvthe clergyman'ular rout}&VaiQtriflsRnew m3 terlardedear detected iWhole nature resen!considered adAs unqcoundre I |/B a fU'R lit  " bAew i#nMmaAtorthis spirit by calmly rubbing iti d8, embrac"eah,3armpz}& so vigorous7at eo$;part companyBbodyvthe slend9read of a neck61expto view; scra0Qits w rind leg'AsmooT !toCbodyK|been coat-;~,&le toilet as tranquib if it.)$E safe. As!ras soreEaitched@rab for iynot dare--}4iev3oulbe instantly destroyed 3did qg whileB was2 onhhVqsentenca curveTstealq.Cthe ra"Amen"r!hewas a prisonwar. His aunt bthe acmade him let it go rhis tex8droned along monoton an argumea%"sybmany aBb &byBnod 3y Wdealt in limit 2firMbrimstonSthinnpredestined& Eto a#so !2worA sav1)2Tom_&ag ;; $ % h2how:t#aseldom: Delseqhe disc MH"is!he8qreally {16forE*a grand and moving picJH"&+=world's hosts at the millennium*B !onc aamb sh"%liS[ , ,!eaAm G2hos 5les1mor/C theEspectacle werQahe boy v# D" principal character beforEaon-look<>!s;#1fac" oirhimselfYhe wishe",Q tame lionf!w 8Qpsed (ing again,fhe dryQumed. eHpA him treasur # a large black beetlformidable jaws--a "pinchbug,"8#Rit. I/=ercussion-cap boxhm1did/bto tak)b' Afingal fillipgIbfloundKZ2isl1its !ur ger went1's Co!lart5its" legs, unAto turn over!ey !lo1forF^!ofCt. Other'uncR]1q relief# wyof too. Wa vagrant poodle dogNA idllong, sad#Bf, lazyI1oft e quiet, weary of captiv(1sig"for changeMs;HAdrooz Ataile8bwagged:1urvrize; walked a it; smelt a87afeu4 4; grew bPJUA6rY1l; Trhis lipqade a gzly snatch,YA misa;3it;/nn %; g diversion; subsid  Stomac)W betweenm3pawh scontinu experiments; !ath Aindi- absent-mindi(1nod ittle byrhis chin descen/ou he enemyAseiz[2re sharp yelp&li' fell a couple of yards away, S}Amore neighboring spectators shook)a! inward joy, s2afaces rA fanI s)_aentire #ppXdog looked fo8 4probably felt so r1entc iheart, tooBaG>qor reve1So .n:9gan a wary attMnWQ jumpfRevery2B, lightingP!hiKJae-pawsin an inchB2YouUX O=3Oh,Q, I'm,/"W4=--wQa, chil9 X!my! toe's moF1!" J#ol[UBsankqa chairB#%ed! cEB"a did both0,Arestwh/d<P," ayou did Ce. N ;1shus aonsensCd climb"thg{$ThS ceasrain van Afrom!to   ' it SEEMEDi"itTBso I B my aat allqQYour ,#K+ Sthem' aperfectly" "Ther|Tdon't Ahat @'Open your q Well--4 IS1butcre notwVto diG!at. Mary, gec>aa silk a['1Rnk ofq"ek$2n." !pl/j7 !hue. I wish I mayO%qdoes. P_@.1wan-]stay Don't you? So all this row was E1youM>ght you'd7i ibgo a-f*?yI love you"1+!ou !ryQy waycQbreakX?l !t soutrage!=." dental instru?S read #%on8the 8^I"'s:Ra loo& #tiod edpost. TBseiz* n^QthrusI($inR2oy' U hung dangb- } Rrials@*1qcompenst+s'#enrschool >fast, he6qthe envc( 1 bo"5metSfap in 1row&eeth enab 3 toMRorate!1new<>4 s9ing of lad9G%in the exhib@0;2oneShad c ' 2hadr a centre of fasc and homage2o[Qnow f:OJout an adheren Tshorn!Rglory'QheartyBheav 3a disdaibZit wasn'tDo spit like;our grapes!"%e wanderh dismantero. Shortlyb3camMthe juvenile pariah5he n;Huckleberry Finn, sthe town drunkard.,-Qcordi2hat2 dr1#by "e s{t 2idllawless and vulgarRbad--zxk?eq delighV-forbidden societyAthey dared?Rlike B!om @!reNCRboys,faxenvied >his gaudy outcast cond;as under strictIQrs no8Mm1Splaye3him1timf2got% Ince.c!slways de cast-off _سll-grown meAthey  in perennial bloomRflutt sCrags{!ata vast ruina wide crescent lop a of itp!m;ecoat, +72ne,Bnear^2his[ !haQ rear!buttons farY ; 2ack1oneMeaupportos trousers;Ceat ! b$A low~contained n A friM&rlegs dr4Bdirtanot ro[Iup. 1and?A, at"own free3Yrteps inKDweat in empty hogs> in wet;3Qto go2 orurch, ornmaster or obeyXcould go  or swimW1herCchos1sta/long as it suim; nobody~V$fiyhras late! p8 d3t)2boybarefoot Qe spr'gnv~Cme lsAfalli1to wash, nor put onf0wear wonderfully. In !rdJ8tQEgoesxlife precious{!adgrthought\ harassed, hampered, ; inkBR!ha!AJtomantic : "Hello$!" K ee how youh9it.a A gott rDead ca%RLemmeC"imp. My, he'tty stiff\Are'diqget himQB2himR a bo#di4zI a blue ti@1and"adBat ItVter-hous1 T#itBen RogersI!goa hoop-stickE6SayU!cats good for2hGA? Cu1rtsHSNo! IQ3so?JV some6A's b3BI beedon't.ibaspunk-?5S! I wouldn'tqAdern 85You-,  $D'OD tryqNo, I h DQBob TOA didrWho tol!so"he Wa5Johnny Bak im Hollis8 'ld2Benmca niggLC them bre now2ellt? They'll lie. Least<1all WA. I 2HIM(I%eekWOULDN'T\Shucks! NL!te`lbone itvQnd di=2a r/BSstumpLthe rainQA wasPI qdaytimeClith his fac Atump-3Yes* I reckon so[ADid j y5 3"I :.lAknow@Aha! Talk1tryN:o c such a blame fool,c@Aat! @S a-goVado any2. YV rbrself, e middle Qwoods\5Y's a Btump1jus'7rmidnighrback up!s qand jam/Q: 'Barley-corn, b injun-mearts, ^ {q, swalle_&drts,' 1n w way quick, eleven steps,(eyes shuthen turn.<BtimeYAhomeDrout spe+ttbody. B#f$Wcharm's bustesounds likxrood way !!wthe wayB donNo, sir,x1cann't, becuzoGartiest cis towT!BE1war 2him!!'dU!ed*xto workYS. I'v1offs'9"of off of my9sAway,m 7. I Tfrogsv$*`U 5got;"Qmany gb. SomeI!'eFNSnYes, bean'~de%1Havk?,"'sSway?" "Youd6 2pli!be#nN1getb blood"thN# p3" o rEpiec!be,d{q dig a *1t '`?aYrcrossrorqdark of6mooQ burn/ $styBbean#se Uq=.ll keep drawN$nd ,mA feteXFZ v+1"soQhelpsh!toOA the.Rf!sof}Qcomes %--;"gh,"bui$you say 'DownV;awart; 1no @'Bto bgme!' i & Tway Joe Harper doe!he1'enCoonville and mosQ bwheres#say--how do:"urA b!ak1r c+Enm?graveyard '%Ubout wwXromebodywas wicked hen buried3Fit'sFqa deviloP, or maybe%,3 't see 'emcan only+ 7indYAhear9Qtalk;|they're tahat feBawaym#he<<1fteMGqsay, 'D  corpse,i,A1cat,Qye!' ;2ll 91ANY7b." "Stnright.}  "No@Rold MrHopkins mz !soqAn. BQsay sra witch#ay AKNOWQis. S$*$pap. Pap says so his own self. H! axAone *a#!eeUawas a-Sring himC !e T'!ro-Bnd i!ha AdodgQe'd a>e)that very > $heFoff'n a shed wher' s a layiQbrokes1arm"W#!diOknowLord, papGeasyK1loo- *q stiddyDyou. Spec"ifcmumble d$b're saS he Lord's Prayer backards2Sayy y:"trB1cat1To-. .old Hoss Williams t8a" "Buy him Saturday. D` ?qtalk! H5uldbAarmsF d till -?--and THEN2Sun|Sevils Tslosh 1muca,2, I' L!nLaBso. #goT!f'"--$Rafear A B! 'T qlikely.djAmeow1Yes#, Z'geR Last timeOkep' me a-me8!arA1ays( r&rocks at mJb 'DernQcat!'qso I ho Abric{!hiDsdow--bu+BbwTIn't meowe bauntiea#me|Q4'll8!is%. 3!'sOL"NoQbut aS%Ou1-3at'AtakeG .Uqell himHAAll 4. It's aIqy smallr, anywa#anybody3runw6ae1 bem. I'm satisfiiwF!enAtick"Sh!tiu plenty  1 ofrif I walCo2whyn1#wed!cawT&Cs a Q2onef YAyear,b--I'llbyou my  ALessi1Tom1 bi$pauAcare3 un$Git. ~a viewe#Awist-. The temptation+strong. At%he"Is it genuwyn4Tom>'>!shthe vacancy.a!,"YB, "iAtradTom enclosQ8 A@lately been: 4#'sG"th separated, each fee !wealthier thqfore. y'4Tomy'Dittle isolated frame ,trode in briskly=Pof one who AwithQhonesbed. Heahis haQa peg52fluT BselfJ4}31eatI r-clacrit", throned on hig1reat splint-bottom arm-',R1doz)!luW" drowsy hum of study. The51rupcd "Thomas Sawyer!(Ghis name{f7 in full&!me$rouble. "SiO"Come upcRS. Nowbwhy ar2gaiN3cusual?= "to Srefugz"3lie' Pw ; ails of yellow hair hangingoae recogn$PHric sympathy of4%;&bat forTHE ONLY VACANT PLACE girls' sZ QinstaE STOPPED TO TALK WITH HUCKLEBERRY FINNY's pulse\:Qhe st helplessbuzz of 5r ceasedcpupilse) foolhardyaqhad los% u/:9*(d did w"Stqto talk@ Finn." (eno mis}e words,!isE!motounding confessionYever listen!. No mere ferul answer f4is offen%1akeyour jackej  's arm performed until it!ti#>Qstock1wit) _y diminish`A ordllowed: "l!goVs!th! And let)bSt0xr titter-VripplE{qom appe^rto abasiboy, but in .G14was caused rather0!byworshipful aw%his unknown id(&IAead _#urRlay icgood fortuntss Rwn upk(1pinc<c0)'Qirl h,away from himaa toss$&nd. NudgesBwink$qwhisperO4verBroomrTom satW!hiIs "Aong,"CdeskO1eem[book. Byby atten$DNjX#ed murmur rose]AdullxEPresentlboy beganqeal furdaglance robserved it, "4G,2" a8and gave hi-HbackRe spa\ta minut2she caut4duQ, a p5layi"erthrust it away1g!pu>Kback,^2butC&Bimos;$om9Sly reZiqits plaz!heit remaindscrawlts slate, ", Bit--2 more." TdJ uno sign. Now draw some *!hi 1eft;q. For a31ref:2to ~[Sher human curi@Axq manifeby hardly perceptibles !boPkAr, apparunconsciou+Qa sor^ noncommittalnmpt to s6 did not betra/h Aawar&itM 2she!inQhesitB$lyb!Le  Apart 6=*l caricatusra housetwo gable ends}a corkscreC,smoke issuingS!thn[AmneyX" "'s !es0Bfast6elfeAworkqshe forgot $D els`f6, she gazedAAment)n ,It's nice--make a ma artist erectH$an%front yard,qresembl(qderricka 4~1ste\ !ovgek&not hypercritical;Kwas " Const! a beautiful man--now me cominggom drew an hour-glassa full moontraw limb1 arhe sprea1finE$a portentous fanwL #t'#soI wish IPddraw."feasy,"q Tom, "1TlearnB"Oh,i#AWhen At noon. D 2 goh1to dinner&PDstayAwillrGood--tAa whas your] EBecky Thatcp5yours? Oh,$& l1theU they lick me by. I'mIAwhen \2YouW)1me Yes." Now<N  tl1rdsW /1"gg1see !Oh~ain't any\ Yes it i5"No'#wX5I do, indeed I do. 4letVYou'll teNo I won't--9Fand Rouble%"ou3G6A? Evs ! aA liv!6&M! e3ell ANYbodysOh, YOU!Lyou trea#o, I WILL see."+ 1sheher small =  Dnd aQscuffLAsuedq pretento resist in earnrut letts_ slip by degrees till thesdA4vealed: "I LOVE YOUj"OhMb-Fing!1hit hsmart rapreddened >b 2ed,~&theless. J[$K junctureboy felt a slow, fateful gripM3CB earp a steady 1 im+zSwise Aborne acros Gposi0own seat, undwNBpeppX/a7f giggles i!tna~-Cstooqhim dur;q few aw_bomentsfinally moved IsU4out5ba word3"al Tom's ear tingled$EBhearWjubilant. A rquieted 3Tom nQefforX Bstud the turmoilRin hitoo greatqurn he h#hi  Bclas1}1 boef it; theOgeography4 Alake3 o mountains, Srivery r contintill chaos wask  Aspelc got "down," by a succ`"ofG1babA dN3he C2 up=ae footyielded upkpewter medalj worn with osten|for months. CHAPTER VII THE er Tom triedl shis min,# " mXs ideas wandered.9,b a sig:a yawn, he gave 0V. It $anoon r4Fb wouldm} air was 3Aly dc#t a breath stirring. IRleepi$ sleepy day drowsing<Re fivUtwenty studying scholars soothe/soul lik= #is_bees. AwayE1fla sunshine, Cardiff Hills soft green sides th[ a shimmBveilaat, ti| the purple`iWa few birds float Q lazya!ir; no other liv*bwas vi$x1but7 4 co^W Cwerer's hear=!be3A, or 3 toA  fE to do to paq drearyH4. HcQ into%poO0his face l"gl%:gratitude3wasa#, ) not know i!enXJ3ivexrcame oua him a"Va pin"!6newx 3's bosom friend sat nexb, suff!ju9;4nowMadeeply{"grm& 2ent.1menj3an  7was'rtwo boy r sworn s|1eek embattled enemies on"!s.^took a pinBJAapel #as q exerci1er.AsporZwwU<rly. SooG 6}Beach neither g g1ull denefit*!ti<!o Qt JoeAQ4ate 1rew "neFthe D/!it C top)Btom. ","Whe, " Ahe iqByoury9nbq him up)qI'll leB!e; "2get d)et on my[,@re to leXalone I can keepQfrom  S v!, go ahead; star!upb escaped!pae equator{6DawhiPtU:5G݁ghis changbase occurred often. Wg"onZ !wa5r^&t7r absorbNHYblook o? #as 3, t9b 1ogeo|QsoulsC to B1ngsVluck  S b JE !hicd&atxDcour9rQs exc Xs anxiouh|!thH mselves,<0Egain:Auld evictorfvery graspn)"to#1 cbe twi%to begin,3pin'Bdeft+Rd him;1andTk W)gl:n(uno longzQemptaswas toocqreachedFand lent a11pin 2ang a. Said he: "KbI onlyd1wan TU2#NoJ a fair;e' ~3QBlame>I'!go l#mu+L?b, I teK|"!" shall--+#liALook !a, whos\ 1ickICcare$m /ha'n't touch %%,Qbet I . He's my/do what I 51him die!" A tremendous sdown oneshouldits duplic r!s3twoW dustbRto flbjackety[ to enjoy had been tooS]sBhushhad stolencschool wCetiptoe"\nVd (Hcontempl (p4~performance |!heQributs'Zt2%broke up a flew to P1 in ear: "PutHabonnetlcyou'reBhome11you)5\rcorner,'.2 'eAslip|rthe lanAcome.!goQoAYcame way." S6"ne+5one group of -gCith EF. InL:*"et e #la.:qthey ha {Uy sat," a5JBthemQ)3ave the pencil 0.Jriin his, gui 4 3ed a surpr Ot&Gn ar2w#fealking. ToAswim]in blissS}%!DoLlove rats?" r! I hatM do, too--LIVE onesI mean dead,qwing rouSr heaAa stq[1for much, anywMA likIchewing-gum<l25o! 8qome now/?8"go1letAchewV3 2youUqgive itQ3 to8AThat`agreeable& hey cheweBturn'Y?K!irSk,!!stRbench "cet#ntment. "W>)an/circus? T #YeQmy pa7!"mew*Atime/ET" "I)f three or fouryQs--lo:. Churchr shucksbD-C (on/; qbe a cl5%nWScI grow )"! ill be nice1y'rBAlove ll spottAL1so.=v1getAhers of money--' dollar a4 cBsBSay,_+bengageSWjt`(2!b ٪"ieN.+ 2youC!to.E so.CknowqQis it2/Like? WhyG You S Qa boyRawon't \ FZ\ Zcyou kiPw all. Anybody%#do.b"Kiss?d=1for2X Ynow, is to--well[yIoAEverqH2yes+'Y8 ". z remember m F wrobbYe--yeW]YC%I  TShall 8YOUHB--bu5No, t now--to-morr8Oh, no, NOW7!--Vrwhisper aso easLQ #o took silenc Acons"and passedBarm Arher waiS]QT talezC7/outh closuher earn he add\$2Now!--d t-P3ShePj" a^2You vBfaceBs^23 seI;I~you mustn'<[--WILL you]?&,!N  .a." He n\DidlyZ(her breath stirr?Bcurl , "I--loveP-.(r sprang#tand ranfs+YCes, with1aft*uy/x Cher 1JQaprone1ped"nehV pleaSWn]ll done--all a. Don' be afraid Eat--+?+ll. Qhe tu{"aD YhandsA+2she us  qs drop;Qface,rglowingy"truggle,,O submitt-!omqred lip 3rNow it'ACdoneEPBt 2yout0mk+@!toXy,2 meand forever. Wi 3'll)u!LLkmarry +2--aX - 3ith)CEly. :. u's PART{)I('U*we^w02me, Rthere<Rchoos Dnd It parties, bE  1wayeO4're DIt'sW'3. IRheard -|%'g>mSAmy Lawrence--b2bigF1tol{ ~DlundUe stopped,1Sused. BTom!,/irst you'v3 to"W chil2cry94Oh,trk I"arshy   1you1Tom3 kndd i  BneckJ j%sg0%im!Qrhe wall1wen\bcrying05  ing word GQas req$: (!pr4as he strodWQbutsideY,2lesquneasy,: Sglanc2oorMQy nowthen, hoping she.RrepenSato fin:4shee-e1 to81 barnd feari.;'roS!ea hard2himke new advancesM ,Nqhe nervRmself{Q and _]"zstill stan797, sobbing.!'sDt smote himD ?2 ,ing exacoQproce-ge said aly: "* ], I--\ A." f4ply 4bs.D1"--/tingly. Y !mea?" MoDTom got ou( chiefest jewel, a brass knobToan andiron2{ $itd h,2thaq,{/3w * y Sc3uckY the flooruTom marH.:C hilR 1far[!rez1 noday. Presently 3buspect rRT1was7in sight. < 2play-yard7SthereU1she,v Cc, Tom!/alisten}trL7had no companions l oneliness. So s t`Ro cryfp1upb herself;qby thisZ L1gata3gai[ashe hatAhide+Qgrief?6cbroken aK of a long, $Q, achhfternoon6! nk#mo Astra/VSto exbsorrow/ q'I TOM dodged hp t through lanes96H@&ou!r51ing3larinto a moody jog. He va,"branch"9"reDH  6prevailing juvenile superstiti!0 c water baffled pursuit. HalfC1! l$disappea<+Bbehi Douglas mansion jbe summ"'Z ,1wasly distinguishablCoff Ccvalleyۖa a deny-od, picks pathless wa>r2ent;4.!onssy spot,spreading oakrnot even a zephyr(*_anoonda(at had 260 Tsongscbirds;:1 lasa trancCwas Vby no sound the occasional far-off hammeof a woodpeckiBm 1 re .1rva|wense of|8*sprofoun=Rboy'su)w!1eep melancholy;o A3s w<happy accorqhis sur1ingA sat< )oAlbowhis kneeO2n i.S, med69 * rhat lifbut a tr=1, at best +3orlRQbeen 2!eda2g--Q very dog#" by some day--maybe wh@8too late. Ah %die TEMPORARILY! Buselastic]o?ath can4e8Aresssqto one {rained shap*46Tom_&drift insensiblyJXZconcern"is7|.T cack, nowmed mysteriously? aaway--A'so3 ?countries beyoBseasQcame S! How 2she{ then! The idea of beQ recu,mto fill himdisgust. For frivolyR jokewStight"anAsy intrude`/1 upbspiritwas exalt3vague august AEthe romantic. Nota soldi<,"yell war-woraillust. No--bette4ld#joIndians,unt buffalo$$gowawarpatr4x2S rang-the trackgreat plaite Far W 0QfuturM+A q, brist2with feathers, hidej$ith pain,bprance. ,(QrowsyN $er|a bloodcurdssar-whoose eyeballaG unappeasu envy. But noOb gaudin than thi/dpirateas it! NOWK2lay~ #"im"glaimaginsplendor. HowMHQould c people shudder1glo(AS go p{Sthe d2seaf"hiu,1, l'qlack-hu 2racZ02e SsFc StormHIisly flag flyA fore! And at the zenith ofQfame,suddenlyDIold village8Cstalcb, broww-beaten, black velvet d ArunkCjack-bootcrimson sash,AbeltJ"horse-pistol9e-rusted cutlass atCAsideM2 sl4("atTwaving plumeIcunfurledthe skull Abone*  Bhear[2sweobecstas>$G #s,3TomJ, P--the Black Avengerpanish Main!"  j,d Acare's determined)2runfrom hom Renter' /\.2theDnext[ Afore rust now+1 to&Wreadybcollecresources %)Aent rotten log nv%'an2digu 5 onFihis Barlow knif1oonrck wood ed hollow"puusand uttwis incan~,i8 dively:bhasn'tDhereovW!st 2re!^rbcraped`"ir Q expo pine sh9:i8and dis(chapely,2 trcH-[5hos'and sides wer/ds'iHra marbl 's astonishmenboundless! He scratc Ss hea a perplexed air7RWell,1bea*y> +Btoss5pettishlyStood cogitatUsuth wasfa Mqhad fai91and0-Brade0AlookR$on as infallibl byou bu OLcertain necessarylsBleft  fortnigh'BCopenCplac"8theP" h ajust uh3yout%a1s2had1los.  t0 H,9 |&Qno ma how widely+}Qk"w,~ bctuallunquestionably *-DtrucF2faiQ shak"-Q its Bs. H"Cmany C Rasuccee3but{aof itsBing :Q occu2himtit several timesC, himself,n;1e h*-scs2warvpuzzledy!an\decided $Qwitchainterf Bharmhought he tsatisfy at point; soe!ar<1he Csand aqfunnel-Qd depo!itJ9=$ F2 toyG and called-- "Doodle-bug, d $'#mev0Wgknow! 5 5*! sn1egaBwork"3bug e a secon2darted um)fright. "He dtell! So it WAS aAdonef !I ;%!knv5'"HeDknew2 iQof tr to contens#chahe gav^"Ś$ag%iT`he might asAhave>  w1 ,Oatheref@Btwicl.last repe2wasRssful$0Qs layU1foo Qeach a. Jus^%ebYntoy tin trumpet 3faintly dow%green aisle~QorestWoff his jacke|trousers,$ a suspe9belt, rakN Tbrush 4thelSlog, 8 n rude bow1arr| lath sword4in A7$Bseizse thingSbound, barelegg 1 fls "AhirtL7halfelm, blew an answ@9atiptoelook warily outk1way2thasaid cautp--to an }!ryH!an Hold, my merry men! K;BI bl06Nowf>q, as aiAcladbelaborarmed as Tom. Tom]Hold! Who s7ASher BFore_qhout my+q?" "GuGuisborneVAan's).^1art-L--" "Dar  hold such language=Tom, prompting--fo8y talked "se book," qmemory.l ~/ dsI*! I am Robin Hoodkthy caitiff carcas:Ahall%." "ThenRindee% famous outlaw? Rvgladly will I dispute#2the=Fpass3wood. Have aeyGWtheirqs, dump4eir.Brapsf e ground, struck a fencttitude,!to61kBv) reful combat, "two up andfdown."p!E Tom aNow, i a've goQ hang=Ait lM!61y "a," panhK !er k. By and bhouted: "Fall!K8! W`+ sha'n't"Nrself? Y(AAwors!it/4Whyh M@!'tv;A#ay it is inVbook says, ' Qone boa[stroke he slew poor $.'!toNr ,ame hit oQ." T#>PFuthoriti 1Joebed, received!whE@nd fell.&"4U Joe,^up, "you8o(N2 ki1*Ffair{f!docE_/ell, it's blameC's aQBsay, you can be Friar Tuck or MucAmillD[ss%R lam M h a quarter-staff; or I'll bSheriff of NottinghamJe w9h?Bill 0AThis a@#soadventures were cr4FATheni!beB6 L!wa- !by treacherous nun to ble s strength away 1ughneglected w- 4And/}! r 1entAtribAweepOC4s, R|Qhim sbforth,V m"ow(his feeble hands", e" Q fallTere buryuu 1eenqtree." She shT$ b&would have diedQhe li>+Aa ne0and sprang upMAaily a corpse.->dA, hi!ira!Gutre Ooff grieao <$noz4u3mor Bwond what modern civiliz= claim to h Qensatiloss. They;F-rather be year in than Presiden the United States 0 CHAPTER IX AT half-past nine!ToB Sid\1senm"be[usualir prayer=(onqK Aawak waited, in rest"imc<{it seem0q be nearly dayldhAlock;Bke taqdespair&and fidge#asrves demQ, buttbas afr+aSid. S12lay,%!st"upJark. EverLDsdismall<2C by,'YSness,a, scarceo[fnoisesemphasizeSC ticking aHh Ato b!itS-A1. O+"&ame! cT(!cstairs creakently. Ev1ly 6 !ts abroad. A m#Rd, mu(snore issued Aunt Polly's chamberA now4tiresome chirqf a cri!thA human ingenuity locate,JQ. NexV ghastly?SdeathwatcDwall bed's head made E--it#abody'sMPnumberedUBhowl{far-off dog roseg 3wasAa fa<K a$r O./an agony. At ih| 1ied+had ceas@d eternity begun;00 to doze$Aspit2e)chimed elevenl0A;#%8me, mingl Ahis !formed dreams, a most ' caterwaulwA raix&of a neighbo)awindow81urbSqm. A cra"Scat! devil!" aQ cras<an empty bo;z}ais aunt'sCSshed T#"dea single minute laterlGand jr$al,Sroof 3"ell" on all fours. He "meow'd" withn once orpn jumped  g3]*QL. Huckleberry Finn washis dead cat #ysAW1off\A,#edO#a gloom%thh," (all grass4graveyard. It &old-fashioned#ern kind13on a hill,5Da miK'Eaillage<1hadazy board fencet $itcAlean 1warY1outek$th!buZod upright nos1. G n!ed!ew rank M ? cemetery. A2old*spsunken in,Mnot a tombston!; {-worm-eaten qs stagg#Rover $ aves, leanaor suppor 1finnone. "Sacred) of" So-and-Soabeen pdm#="ittLR have7Sread,5am, now*1n i3 r7lFA wind mo $reSTom ft {\, complai(#atw(x\<R6nly ir breath6[ -Solemn(Q silew&ppX $irvyo! t arp new hea1yk1eek6ansconcQemsel2ithq protec0ree great elms$grew in a bunch?-WDfeet " "y U  42for H "a 1imeS hoot abant ow.]"btroubl !ne om's refld1ive%.aforce Dtalk) Qsaid $: "Hucky, do&ɘ6 ead peopleGZ3 usDqhere?" Zed: "I wisht I@eEQ's aw3Zs, AIN'T36Q"I beAis."ea considerable pau*"il\Scanva "#iss inward! n_ %ASay,3y-- reckon Hoss WilliamssI1#O'Q he does. Least8rsperrit"7, +a+2 I' #u MisterxI`  Aany l DQs him#A "n'Foo partic'lar1(tXalk 'boutase-yer  Ra damnd convers3die!. Qw Ahis comrade's armE1sai:Sh!" "What is it~$?"i nc%Atogeq!be#2ts.K C'tis again! z1you+{0Q! Now"OALordTHcoming! TQ, surmat'll we do/I dono. Thiny'll see us!'OhbA can!in^ Qdark,M as cats. ihadn't comecOh, doay!. Aliev<1bus. We(a doingl If we keep perfectlyR, may1y waB us N$I'll try toRbut, Y1I'mbBof a shiverListen!"be1!ir s e tof voices float% 4far`(A "Look! Se;Fre!"M  w-fire. Cis it." Somv/1figaapproaK'!Rloom,M tin lanternaTfrecka  innumerable spanglek  K#a d!t' sya. ThrexA'em!yQwe'reqrs! CanBprayNB:BThey! gto hurt us. 'Now I5#meo sleep, I--'"8 AHuckHUMANS! On! iWyway.'s old Muff Potter's }aNo--'tqu so, is AjDYyou stir nor budgBCharpfE to q. DrunkBausual,Cly--qold ripAAll O !, 4stiI5tstuck. Can'"1Herq#Dy coN.[8hot. Col2B Hot. Red hot!'re p'inted?r ,q"!o'qs; it's Injun Jo(2ThaFD--that mur!' breed! I'd druthe Zdevils a der'>!. ky be up t4The.| Dnow,! t 1men $re!e 1     ' hiding- Q. "H?9Dt is Qhird ;\*:wner of it hel TTreveaV1fac young Docts_`1carryingYcbarrowTA rop a coupldshovels onCcast#lo=!c2opeUF7" d1putd|_R56karH2ack1st fX2elm  Q closIhave tou1himurry, men!" !idTa low"#on91com at any moaRJy growled a responsgan digg'Fo(*2 no# b<"gr s)Qspadetbchargiir freighw Amouldl7 was very monotonous. FinaX Q upongScoffia dull wood*<2entO4'Ror twyRhoist'dg>Sy pritd!$irB, goB!dyF!Qit ru - `Tdriftg?Rcloud(0allid faN4he P!as3reaaorpse "it, coverea blanke>buCope.l(out a large spring-knifkcn;#da3z Tthen " Nm$cu Bng's, Sawboned you'll*"ou$ Afive\$ s?y alk!" sai.] BdoesSmean?3te. "You require3r p?Sdvanc(I've pai#'4B don(B tha ,; r Q, who Dnow @*q. "FiveBs agqdrove my q your fX's kitchen, when Ito ask f@(c to eaK3youWa warn'!!re2any goodWswore I'd get,AzQyou iuaa hundcgears, RAme j1 for a vagrant. Dta thinkiqforget?I^Sbloodq Ain m1 no.2nowvGOT yougot to SETTLE"r!" He EQreate<,e !isy Bace,n!2is  Tq8E1retacuffian dropped his !exDCHered #hi^(&rd~b next ! h-t grapplF "wo)Rstrug'and main, trampl% gFtear@3'rheels. !JoaAfeeta81 ey2%am!pa1nQ, snaQ3 up'/V"cr"Q, catYEAtoopCand  w'Tants,Q an oCunitwat onceQ,d free,62Aeavy5 of'n fҲt(Rearth"it8? c YiL A sawXCchanSj2theb1hilthe young man's breas+Qreele4BGqpartly , floodi  l* `ablotteXAreadcpectacf1 Bened Aspee!awHdark%> remergedO , '8two formsPRtempl }aamurmurulately, gw*gasp or two%2wasKm- rTHAT sc; :Q--damF0Rrobbe8body. After h9the fatal2in r's open R hand M dismantled } --four--fivss passeJ7.mB za1. H1nd dw#; C Q, gla!atand let it falla>g)sat up, push2bodA himLJ gaz]aK&confusedlymet Joe's1rd,ie, Joe?u .a:ay busi%#2Joeout moving.d]d+[%I!!it{] 3! TRT 3alkdewash."YAtremDI ew white.1ghtagot so"!I'BM!r!o-@it's in m* yet--worse'nw= rted here.vmuddle; c!$re=#an$gQ, harqTell me}--HONEST`Aold ar--didB it?zJ(qto--'poAsoulhonor, I nevt1ant5Joezc#Oh$+Qhim s, ad prom! -1youC?ay1inga he fe6G ) Bflat !up:3comX1reeX[ding li!.Ajammz%.5 'asE you7S clip ere you've lai'!as a wedge til nowbd{Uwawas a- I may die1if B1all on accou(bwhiskevV!axcitem"I .uC$ weepon Clife: fUO_;uAy'llsay that.( V8ray you Atelle--that's a  4. I_2lik</U !upE { etoo. D remember? You WON'Tc]a, WILL  A/ApoorS'Eture o SkneesUrstolid G#alaspedQappeaa,.)4'veA #fanbsquarej 8me,N# I<#go$n :MsXs a man can sayIy0an angel.bQ*1you^!he0est day I live.> ?Ccry.d 40$#isc 1anyYsQblubb. You be off yonder wa!go+T. Mov 3and5!leny tracksX"onM(quickly increaseQa run  &)He8 If he's as much stunne Q lickfL2rum2 halook of bel#he1eBtillzgone so far he'll be +}-e\!it:Ruch a>% b= --chicken-hear1TwoO tqs laterD0Rd manv ArpseA lid 2the ?+urno insp8!b moon' ness was completet 9too-X THE two Aflewqnd on, towarkaspeechwith horror*y Aback;%?aulders|!to, apprehens95'$yA$m &be followed. EVastump #up'Air p9&.'and an enemyw[+athem c+:bbreath"as"by"Aoutlacottag41yy.=21ark1*aroused +H-dogRagive wq:qir feet Af weqonly ge=ld tannery!wegk down!" whisp&1Tom|<Qtween5dths. "4AstanRmuch ]&ucC)'s hard pantAwere-1repboys fixed sSeyes z 1goaDBhope"4benir work to win it. ained steadily]1st,sIy burst open doo cgratef BexhaIiBshel, shadows beyond. Beir pulses s4Tomac2 2'lli!BIf D dies, I61 hav>!it?D m !?" y, I KNOW 1Tom#om&2t a$JEn he #1Whosell? WePBat aj  ing about? S'pos%!th1appEand q DIDN'T!? he'd kill usLvoO:  sure as *g <@  ~o myself, HuW8q"If anyAtell)t 3, i)Cfool. He's generTdrunky%U !--2 E s C "itrN!ca#teJ:#sQreaso 8QBecau>&"'d1geSwhack"F. D'3 he*5seeT?$ \7!" "By hoke:$'s-!" "And besides, look-a-here--maybeqfor HIM<No, 'taint likely ^GQliquo5ghim; I#th  |h Rhas. 9pap's full Atake/belt him&3hea< a church)2youn't phase 1say his own selfZ)i3sam !C, of(Fqf a manjJGoberZ W&)dono." .*$ve*p)2you"an!1mumw%to.*  #atadevil 5Rn't myQy morWdrownding us&a Acats!weto squea(iF+"ha!. X>u, less swear to one/Z"weveo do--0qkeep mu"greed. I Xkb. WoulGAholds_Un we--" "Oh no @! dA thi . for little rubbishy commokngs--speciwith gals, cuz THEY!c anywa ablab i: huff--but!or%^e writing Ra big BClood2's m0 applauduis ideao1BdeepAdark  t;1our3 circumstances1surRings, ijbe pick'ya cleaniOlvAmoon', took ar fragmes"red keel"7 f 1pocDkK1 onV#wo0fully scra!'these lines, emphasizing each slow down-stroke by clam~7his tongue AeethRQ lettpApres QCe upW&s. [See next page.] "Huck Finn and Tom SawyersCs!ndI+Awish may Dropd!ea6 QTheirT"if33eve1ellX!Ro  p5filKadmiration of~acility inA, an sublimityQlangu3HC'4pinqs lapelH6was(Qprick,QfleshWN Hold on!!dob. A pi1assA8have verdigre#n Qp'iso$/ swaller somic --you,a." SoSunwou8bthread"%his needl!Aboy  1e b.QthumbcsqueezBa drfA. In,{Dmany2!s,amanage2sig!Qiniti9u~8Hthe ~ finger fo/e3ashowed  1ph"! HQan F, 1ath%2bur9!e 1le q5 to:,dismal ceremoniaincantfqfettersJ$ b#ir8consider(Qbe loF"keArwn away4!ig[AreptURlthil(!ugX$Dreak[Wother#A ruiEAuild2nowLQQ*iVTom,"6, "#uYAEVERf ing --ALWAYS?" "O r it doe]cdon't y difference WHATv xY got J BWe'd"--Q6YOUe Ywts rcontinuHtime a dog set up a long, lugubrious<outside--within tenc*md boys q",qan agon+!.ich of us^4 he;%!ga4 dono--peep througw crack. Quick 1YOU#-- 1 DO#Hu2aPlease1 72h, lordy0thankful0I2his)4 Bull Harb`" * [* If Mr. y+d a slave named Bullk spoken of him as "Dl!,"aa son 2dog!atZn"]   1--I" ( most scadI'd a betmM a STRAY dog he dog howledv~W'3Ats s:"nc&.2my!%!no'I IA "DOM! Q, quabAwith? !Z%eytrDHis z"waly audible"Ohr, IT S A1DOG1, qK Who7Amust3 us both--Uright"5.+vgoners.EU1misM   V< I'LL go to. I been so wM m2Dad_1Thites of p1$oo!do BveryD a's told Ndpaxgood, like SidNr tried !noaever I 2off time, I lay I'lWALLER if"s!7Tom0"nx4( . "YOU bad!"7Q"Cons!it ^ ld pie, 'longside o' BI amTLORDY 9 only had half your chanceom chokeds6andh: "LookyA! He?9BACK to us(ucky looked!joh "hil9he has, by jingoes! DFRbefor.bhe didpIS#l,e"!this bully, y. NOW whowing stopped. Tom !up ears. "Sh! k BthatI#0!ed"Qounds--like hogs grunting. No--it'!!snC mqThat ISkWAbout"it8I bleeve3Uat 't| #. Bso, a. Pap rRto sl{Aere, Stimesv t$"gs laws bless<1he Rlifts1s'HE snores. Buhever comOto5own{hXEdventure rfZsouls`/Qdas't`o if I leadR 1to,2, s~ts quailep_7the temp up strong:7 3oys#ryJAnder{2ing'7 @#to@Sheels Se !y 4btiptoe  , 4oneJ CthervJ~4hadlqwithin 'qsteps o|!er'pBstic  it brokera sharp snap.man moan]erithedp his face came inK . It was"ha+rd still\|C too)Aved, )Dfear|(? A nowlypid out, n weather-boar& $-%at2 di# sQa paraword. J qrose on5'B air!w1tur n+!th-2ang  Ua fewQ Xt.Awas $cFACING7nose poi* heavenward! geeminy,VHIM!".A botds a!--say a stray dog3ai Johnny Miller's house,A mid2,!#as.eks ago;6 ppoorwill=1 in4litbanisterZ2ung|aame ev?0U L#B}!yej W"ndyE#se 2. D&cGracieT falls2Afirebcrself terr next Saturd;#Ye@sBDEADwhat's moche's gbetter, too:you waitbsee. Ss# ,Cure  z,)a niggers sN:2all *h<7c,dWBSihis bedroom Kh"al Apent3$ss]$excessive cautionCfelliP congratuP.2himMRCknew escapaden1was _Raware3the gently-Qas awake$Y bv5. eawoke,=1andCrak$q ! ig# lAsens&the atmosp+HA%##Wh% ae not called--persecuted till As upRusualK4  KLtW.%Nairs, feelowadrowsyr family R at tԌ!bu finishedQkfastAI"no of rebuk)Nwere averted eyes;:!anA'ofCHthat struck a chillhe culprit' s He sat "nd &reem gay2it -Nwork; it E$no smile, no; he lapsed "leyheart sin'$tdepths.HNN"idG bbened ir3hop>g2Gflogged;Tianot so aunt wept overxand ask*m-E !gobreak her[!o;rfinally3him o{"ru&3andRher gray hair '1 so=~ '?2 usZ hT: try any more.Z!waCan a thous"ppgaA was sorer nQ:"anL1odycried, he pleaded for forgiveTpromised to reforh 2andj {.[jdismissal, !!he_1wonan imperfec51cestablut a feeblfidence. He lefk  Ro misC vAl ren4ful(2Sids 2 laB prompt retre back gat unnecessar_!mo^o school O%3sad41ook+}hqJoe HarHDwondered i-!ha!ic%nir mutuala<Abody2Dtalk r intentlthe grisly "them. "Poor fellow!" 9T+Cught a)Son toG@=grs!" "T2'll) iy catch him!" This ift of remark"milB, "IzQa jud';=frNow Tom shivxAfromA to heel; >D stooG3 of+3JoeZ$isB12beg}s6Bbe, andas shoute!'s  Aim! 7com!!"U!o? Who?"ctwentyT8. }1QHallo0s1!--=3out!tuM{&Am gey!" PeoplCrees over\'Aheadrrn't tryYB--he4doubtful and perplexed. "Infernal impu "!"aAa by~er; "wanosand take a quiet$aFwork12--dQexpec 263any=part, now u- b, oste%Ausly]3ingC" btAarm.;pa's facw haggar &the fear tha .W bstood 1urdman, he shook ara palsy4bface iNBhand@ QburstJa tears P!do#friends,&sobbed; "'pon my pThonor> z0iho's accTyou?"F" aYicarry home.xCliftme1and3ed ` thetic hopelessnes5sw!:"*Q, youaaised m/"'dD."Is ?V i4himM#. msiy anot ca=1easmhe groundn-*BSome!1tol"'tEM8Ond get--"-1hud Qn wavr4f2les` ra vanquSgestus?"Tell 'em, Joewv'em--itl0n,1tooMbEstar`#he  2-he8 liar reel offrene sta?_# FaFlear skydeliver God's Eningmp]f1seeAroke3tdelayedr JJ3illBaliv'!iraimpulsx  BoathE!avubetrayed prisonerafe fad d 5wayBinlySmiscreant1solrto Sata.#itIbe fatalReddle]~ Rroper-1sucQower - a"$hyyou leave?"DwoC|d Qfor?"ab BsaidRn't help it--$,"amoanedx:2 ru+ ?1see} 3but he fell to5. d repea)BjustZSlmly,minutes after inquest,=Foath 1seeCwerewithheld1q 1rme20qbbeliefH1Joej h Aevilw become,Bm most balefully interes1hadDA , yB not+ M  bey inwu(bresolv w= nights,d#1L should offer,Ih%ofPa glimpshis dread  3hel2rai !of[NRput ia wagone rremovalQwhisp3 Q 2ingv  l0!blqlittle!; Dboys&tXappy Tturn n$wBtheyQdisap "ed1morEn onarked: !three feet of . 7it O AfearL1ecrx+ad gnawonscienc /iqs sleepvAas ms a weekG1at Afast_~3Tom/' !alCyourx1so t3youp8!e B hal9"ti^rTom blaband dr"c H's a bad sign, Aunt Polly,*dly. "WzRgot oB min_d?" "NQ % '[Aof."k23oy'shook soaQhe spcoffee. "An 2 doTustuff,"Ur. "Last said, 'It's 2" t it is!' Y7Aoverover. And y!, 'Don't tor6me so--I'll-"!'S5CWHATQis it$V?" E+  1Tom( re is no\2ing*+ Qhappe\1BluckF2cern passedm7S's fas3 torwithout kno.!it" Aho! W3ful1. Im!ity4 my24Q3its7  S%Lqfound a-Sightypr itself . Becky Thatcherd"st #tolMT had EQhis pia few day<'"whistle her dow+!,"1fai)&HeTfind `"ha her father's Lqand feeI%< was ill.rif she p2 diP)9a3`qno longbdok an `@tar, norq piracy charm of lifCgoneMadreari2lef}hoop away,#Bat; $!wa 3joym3 His aunt "ed& 'rll mannqremedieS2him06wasRose prwho are infatuqwith pamedicinea-fanglWthods of produc2 or mend:an inveterate experimA3 in-s. When sRfresh'cis lin Sout s!in'k{2it;Kn herselfp?iling, bu/!el"at Whandy subscribert-!ll#!"H" periodicalNphrenological frauds olemn ignorance %B inf#1was^th)strils. A "rot" they cont about ventilR !ow$odRet upj/Ro eat$Cdrinl42howQexercI 2 22frag?!onTDelf *.1sor#clto wear,&all gospeӲs=aver obser!ha! h-journalscurrent month customarily upseXhad recommenO <Rbefor21s simple aonest e 1was+5 soan easy vict!gaQ$d <]quackydthus arm:'bdeath, .9 pale horse, metaphorici 1spe> "hell foll"Qsuspe `aot an &1 of[$$1balQGilea6 disguise&he) neighbors.n!wa6 creatmee3new/,low cond|)f$e!haRaat dayN*,bhim upehi}!wn mBqa delug Bcoldn she scrubb3a towel liki7Aso b?t him tona*Bhim Aa wemqblankets 1Aweatas soulw1 "the yellow stainsiV a his pores"--as7!Ye rwithstabAhis,boy grew morh  melancholyp!ej|added hot baths, sitz hFClung,A boyX#"inbdismalShearsRassisslim oatmeal dizbr-plastersb calcuhis capacitn)Hould a jug'sfSevery day}3cure-all-#om come indifferQ32ionn!!isfW_0cphase r1the1Tlady'L,constern;ice must b9!upny cost. Now?of Pain-killthe first a She otd a lot)Ua tasteD 3as with gratitud'Rimply7in a liqui0 J  {2and&P3els2!piZO iA gav a teaspoon# 6Xeepest anxietB,qe resul &r mstantly at rest,Zat peace again; for""?broken up` #bo+1hav!#wn a wilder,i , built arunder him.3feli.to wake up;-Klife might be romantic enough, iQblighy, , c1getyD tooiAsent "oo  %ng it. So heat over%!ouC!nsd ,X1finchit poO fo+n# 4Qfor in4ofthe became a nuisanch Rby teeZT help'2Aquit)q >Ieqen Sid,had no misgivto alloy!dePEsinc&3TomMF bottle clandp#el (" !rebdiminish" !itW Cccura t5was t!ltIta crack !siG-room floorit. One day athe ac 3dos  Sy"#'su$ c along, pur#eA(%heHR avar.lqbegginga({said: "Don't askit unlessAwant&Peter." But s1ifi# W2. "You better make suh$?ure. "Now you'v( give it to you, because E $ #m"mebiEQyou d,mustn't bl8Ebut your W agreeableEH mouth open)Voured.Sprang a couple of y+Aair,LSthen %ed a war-whoopsL!f & the room, b st furniture,/ flower-pom*  }Z havoc. NextiRose o}"hi6,#pr ja frenzy of enjoyment,<2his,F !jL proclaimingunappeasrhappines % Atear ?ahouse a spreaQchaos>destruct! Gath.U!edDime r&!im/w$double summersets, 2naly hurrah,AsailG1ughVt, carryK1res^Gthe ZGm. T  Bpetr astonish2 peer glasses;Alay ;qor expiaKRlaugh?#"on earth ails@Tcat?"N'u, aunt,"O. "Why,+i!diaact sogcDeed IWknow,e; catsq6kthey're having c A" "$ado, dof'?"Btonemade TombD1es'at is, I belie<(2y dAaYou DO1-  Qdown,n 3ingwAinte>emphasized by{ R. Too?@!viAer "f.R handthe telltale 1visC ed-valanceUi ald it tom winc 9yesBAraism Qe usuandle--5"ar.csoundlj %DimblS, sir (1tre"at)dumb beast so #pi Thim--Zd!nyj." "H!--you numskuhQat goAdH" iqHeaps. BRbif he'?Qone sqa burntF4out2! S2 ro 0QowelsX!of3'w"n,PBthanra human!" Z!fe: sudden pang6o1Thi1 pu yhl |6 ruelty to a cat MIGHT beboy, too  soften; 2sor=r0',I Rshe p<'3 onDheadd gently)'qmeaning -!stQ. And , it DID d !-&om)" i Bfacejust a percepttwinkle peepinggravity. "/!haf Q%ton-B? Ye*BforcX," adR: he 1lea!if!cr`wqno choi("By` `h2farFMeadow Lan,t !ll to "take up" t, Qd fai#up"eaG;, !Fink %,Bhear old familia!nd rmore--i Bhard0v$ou<ld worldc]submit--b A for1theQ sobs.a thick@O1 JW  2poi7m_'s sworn T , Joe Harper --hard-eyCwithD5tlyand dismal purp=Srt. P 9b were "two(but a singl&" Tom, wi 9#ye1fleeve,qblubberBsome about a 6p to escape from hard usag1lacsympathy at= by roamBbroaOFto return"3by  Athatm=1not"m.it transpir was a reques !chK2hadKRbeen  nIkN3#a)1hun1 up_. His mo ad whippfor drin ScreamhX  d knew ;*1plaUtCwishto go; if.<!waXpl but succumb2opebe happy0a regretDing ;"erW1boyxA $un) ddie. As=wEwalk gClong7 +compact to u 8 byePQthersqseparate till death rgm2 ikyj3lay.:tplans. "Qfor b2;a hermitC1livb qn crustJa remote cav1 dy O a#rand wannRgriefQ% m31to 1he U S&a4~_conspicuous advantages1 a "so ansente!pi Three miles below St.easburg,|!wthe Mississippi Riv "a OaWQ wide"a !qnarrow,%ed islanS \6$2bare  o"d well as a rendezvous%1 in2!edrlay farQtowarL her shore, abrvba densk{Twholly un o1estJackson's IC chosen. Whon!*aubject%Qiracis a matted2 ]Ay hu(up}R Finn8 JmRqly, for rcareersho hhe was$jy,75tlykmtu#!ne;I$ot]river-bank two,vn1favorite hour--4\csmall log rafIthey meanLLd. EachJr,2ookl6)such provisiA4d steal amost dnd myste!way--as bec +butlaws_:Rbefordaftern2donCy."agsweet glory of b~h12ttythe towne"hear ." All whohis vague hint!!cas"be mumTqit." AD Tom@a boiled ha9c a fewKs 1%ingrowth onQbluffMthe meeting-8VstarlBveryAMT lay Qoceanl3Tom6ed Qbut n3 m Q>the quietenN!ve%w, distinc$ 6stlAansw 1bd twic; these sig, K&e ;bThen af5ed voice!We!reTom SawyK^he Black Avenger Spanish Main. Name your namesuck FinnERed-Handed VTerro]2easw BBfurnq rtitles,56hisIliteraturA'TisEC. Gicountersignwo hoarse whispers !e Hawful word simultaneJ"torrooding<: "BLOOD!" 2Tom6 sQUC4Cdown@qit, teaboth skin1F/!es~ome extenXB'BfforF {., comfortable path (Bit l8the!of pCicul8!da/rso valu[&  b d4bac3had Tworn 2outy'"it $.gstolen a sg* ntity of half-c#leaf tobaccol- corn-cob 3pip/.3An3e s smoked or "chewed"A saik !do2tar"z)J ! w1hought; m]ahardly'@Z"reaat dayqy saw aWa smoulJgG1a hWd$3aboy qwent stc'@ 5andjErhemselvsa chunk Rn impR'adventurLbit, sa r"Hist!"[A nowT2theV suddenly halt!fion lip; movM on imaginary dagger-hilt4!gi1orders inX"ifj/Dfoe"cc, to "%W)'K dilt," " "dead men tell no taleWhey knew2 en< raftsmen 3allQ lC in stores or haae2{]D exc^ aconduc` /1 un"AicalAOPved off, ,iEmx CHuckJ1oar!Jo=D qorward.>stood amidships,T-browwith folded arm/7hisTstern_: "LuffDbI"wind!" "Aye-aye, siraSteadyNAady-f it is/!Le!t go off 1P 0Aboys 2dilcly droGd mid-stream vno doubtET"gonly for "style,O! t!to E any&particular&a?"l'?1 '?" "Courses, tops'lflying-jib?"Se  r'yals up! La[Saloft,$! a dozen of ye --foretopmaststuns'l! Lively, now1hak\/maintogala@RSheet braces! NOW my heartiesWHellum-a-leeKTrt! SX2wJ4comes! Port, 1NOW, men! With a will!  T\ drew beyoc7mid#&   ed her head7?then lay oi)Hnot high, s  B notathan aEor t=C82. Ha Awas j!duthe next;-quarter ran hour2t1wasGing BdistXwn. Taglimmenlights showed rit lay,1 "sl#,j vast sweep ofAa-gemmed water,the tremendous ev:4!ha happening. 7 7" his last"-Q Ascen!hirmer joy06ter8wishing "she"2rsee himuQabroathe wild sea,~ng periladeath Qdauntj%, his doom| a grim so/rlips. I,!bu mall strain'0R,!to&vet Island 6aeyeshoN'Cthe ["edZ!a vnqsatisfi\a' p last, to q3so I y came near let#e \Q drif)m\ArangQthe i< oediscov "j !inF%qmade sh\o avert it. About'clock ip1morU'Agrout+1bar8 B thewaded backzforth until Ahad 2"d ffreight. ParRlittl|'ngings consist an old sail"isgaspreadIr a nook ce bush$1a tbo shel6eir"s u TsleepVqopen aiDgoodq., .!y6/sk J log twentyirty stepk  sombre depth 4estDen cme bacon1fryb!anI1suprgAand fY"upcorn "pone" stockw4had;seemed glorious sporuAfeas%at wild, freee virginunexplor%5 un CR, far61 2aunm Ba returcivilizations a climbO&!ir3 up6Bfacethrew its ruddy glare the pillared tree-trunk$irbtemple?X aDfoli>afestoovines. W'!he crisp slice of ""on,qallowan* pone devou Bstre'3outt grass,Q;contentmenyBhave3" a coolecZ Qthey 9dena romantic feaZ 2 roh camp-fi2AIN'T it gay?" !JoIt's NUTS!Tom. "WhathHA Aay ikasee us Say? WellB y'd just die to b&be--hey y I reckon so, 2; "͉s, I'm suited. M/u't want"better'n$Aever@#Cgen'ally--and > Rcan'tXband pikAa fe<Z qullyragDso."HAthe dfor meXY6!toCup, y(!ch{"sh 'at blame foolish5uYou see 3do ANYTHING, Joe, ) aa[hermit HE haRbe pr0dxm# t0naany fuyyGUll by&tt!ayPAOh y What's \ "but I hadn't thought muchFqit, youT. I'd-deal rather b mq I've tN(!itC3, "'"go}#onsQ!adQlike ^^Ato is`Ce's M'respectedr2 a Q's goWhhardest 6Ican finput sackYa 3hea)s<=$1raiAd--"5at does he put V for?" inquireZ0Fdono s've GOTV.6rmi5!do2:1do 3/5wasDern'd if Iww'v?an't do%`#WhY:'d HAVE toP'N0!itY6I3n'tv"it2run.S" "R "! you WOULDnld slouc<0be a disgrace U no respon*ecemploy)chad fiqgouging Qa cobQ now A"tt:e', loaded it) was pressing Qal toRchargAblow! cloud of fragrant smokj&iMfull bloomp-1uxu   ) envied himW majestic vicM secretly &vqacquire?hortly. 0AHuck:Q1pirT?E+,"Oh^#n1a batime--(b 2hem3get "nebury it in ?6#ir $ w!re's ghost Fings]i kill everybod --make 'em walk a plankSA y!wo "q Joe; "YAkill5RsNo," asT## 2g--they're too noble}Tbeautiful, too.Awear[bulliest }es! Oh no! All goldsilver and di'mondswith enthusiasm#o? !hy#B." o"caDbis own orlornly I ain't dressed. h"a &ful pathoH=;Z#go3!bu1$sex@Ftoys tolbe fine#escome fast,a h0Sbegun <W^2him!^2his'4rags}Qbegin,l(Lqy for wy  a proper wardrobe. Gradu5talk diedk ;vwsiness6'[z t eyelidm fBwaifF pip3ub9U (Drhe slep qcience-aR wearL ta} 3 :J%in . 1saiYayers inwardlya, sinc Dith authority them kneeXQrecitC1ud;h"ru2d a0!no$s(1m a,,were afrro proceU lengths asS, les:might call2 a dspecial thAbolt3 c6cn at o Qy rea1ando7'reimminent verge of O.an intruder( ,: not "down." F ,4e>41egafe$fWhad been doing wroD -#eytb. 3meaAthen!rezr^CcameY to argue it away by remindingzhad purloined1tme@nd applesfAs ofKB C!thin plausibilities;E!m,che end? R!ar%the stubborn&"ta-was only "hooking,"F6,O"am@valuableCplain simpleSing--Oa command againaMi"Sov  5hat;a4 "bub", )U2not~Q be sd.!thl}Ume of.3$ e؍uP Lc 39]dstent # Hfell CHAPTER XIV WHENCawok!, he wond% he was. He sat5Q rubb Rs eye'ny"omBd#ool gray dawT#ya%-8of reposKdeep pervading calmGBsilewoods. Not a leaf r!!; ! s!ob|great Nature's medit!Bedewdrops W 2upowCleavQgrassBQ whitY!xcPathe fi,Dblue3werK|some hand$r it laydst to (/Bdit by a narrow channel hardlybhundred yards widetook a swim | hour, so i the midd#thEnoon2Yy got6ptoo hungrRtop tdthey fared sumptu"ha-%themselves $balk. B_S soontto drag!en6} 2itybrooded pG! s of loneliFsFtellUaspirit1oysy!toking. A sorQundef,e creptWmVdim shape'6#--budding homesick'Even Finq Red-Ha.was drea doorsteps\empty hogsheads~all ashame",1weayC none was brave to speak &a. For A Aboysbeen dullyM!ouna peculiar A ,2"sometimes i>2!ic"ofZ##ckAk"ke6>!no' #(isAA1 befpronouY!fo a recogn72 st a glanc4 \aassume1ist23 atfR Thera ,R, pro_band unK1;Yqa deep,ren boomK floating downDn.#is it!" exclaimed Joe,S. "I [!2Tomi whisper. "'T@!8thu+@Dan awed tone, "becuz4'bHark!")qTom. "L7q--don't\#."2wai% 4hatSan agV] ame muffled boom trouble$| hush. "Le(5seevBspraVAfeet%"hu_ MjS1ownp1y pCy u(1ankM!pe2out+2ated 9!steam ferryboakTabout1bel' v,3Aing @, urrent. Her T deckMScrowd b*<!re^# amany skiffs ,T&oru9 neighborhooBcoul{determine what em&!jeSwhitedburst z E's sKas it expSand rNa lazy cloud, tAsames Cb ofz1orn steners again{ 9now Tom; "somebody's drownded!`HGHuck&*last summer,\Bill Turner gotVvy shoot a cannon ov$at makes him comRdtop. Ytake loavBbreaRAput &q in 'em2set Tyr,anybody!!, L'1ll =9i #!op'I've heardDthatUJoe. qread dolR!Oh)](Ld, so muchW&it's mostly v 72SAYib it ou%. "y >6say<iqHuck. "p r@O1XWfunny. "But mayb!sa)E . Of COURSEb do. A1$<Tboys agre=AQreaso(1TomF,@% a!uat lump3Buninfeescaped, unawaR.Bby Joe timidly H1&ra roundB"feeler"3o hI rothers  # aa ;D--no[_but-- Tom!er derision!, uncommit s yet, join"Towaverer quickly "ex)#ed 1wasTT g f<ascrape4 as#tachicken-hearted a cling-o his garme"!s z&uld. MutinybeffectV/1laid$qrest fo{s moment."heMQened,&#no&H to snoreTQ foll13nexc#laG)lbow motioq,>V %@1twosntly. AT he got up cautiously,7CkneeZ#BsearQ<the flickerflections flung%!he"*!piJ !upDed several| semi-cylinder:3hinAbark%t sycamo)1finchose two whichto suit himin #3lt #fi&ly wroteV@shis "red keel";4qhe rollBB!pu"his jacket pocketFtM $he+Joe's hab remov$lD  owner. A CalsoQto the hatschoolboy treas most inestimable value--5m a #ch India-rubber b ree fishhook@$oEQthat !of marbles n as a "sure 'Lcrystal."tiptoed his way #!s Y "he  h drhearingstraightwayc=a keen ru  "irr \-V A FEWsirX&!waM ) BhoalNbar, wading qIllinoi].re. Befoc depth rea,%Chis  half-waF  a:" p="no%},#aso he k]1wimKremainingOSswam bing ups   $=faster than dcted. However, 1Zr6$al3AdrifUlong BoundUR plac~JfRmAis hA N6Aiecexark safP .R#,35ing. Shortly before tenFecn openroppositBDvillA saw2 ly ? Btree- the high8. Everything^quiet undCe bl- !stK2He dkRGZ1alleyes, sli!c, swamor four strokXclimb7(I)"yawl" dutyEPboat's stern!1thw)ited, panting. ;!ra!qbell taavoice gagH1 or:o "cast off." A]j "la("'sh]ZsAup, s 1 swQ4voy abegun.M in his succ7!fom*ait was2^AtripB 2. A/e!a HRtwelvcifteenSwheels stoppedDTom aoverbo."ndaLysdusk, lSfifty6Bdownk,<rof dangpossible stragglrHe flewY unfrequenl3leys$]C:r aunt's QfencehoRapprothe "ellE lBin a+)1-ro Bndow"a 8was,& r/ Aunt Po:Sid, MaryfJoe Harper's mother, grouped togeB talTH s b ' &the doort B dook softly lifBlatcn he pressed gHyielded a crack; ntinued push,G= band quQevery it creaked,wQjudge  squeeze~9ugh ;i #hiq, warilWcqweblow s=I5up. >CAor's , I believe. Why, of coursr-cis. No , gs now. Go 'longqshut itF"."j"edM"la"Ded" 7`|C"tould almo\"!uc nSfoot.#asJ "Q rn't BAD, so ay --only mischEEvous. OnlyRgiddyharum-scarum, F3He Z2any bresponoa colt. HE never mean12hart@2]%st2boy:awas"--g&he!cr[Irjust so{my Joe--always full ofdevilmentbup to  rischief G`as unselfis'3Das h"belaws bless m&w2k I.an!htz#m,:once recolEAat I3wed myself ]Yis6$Sand IP1Ahim Xgi#ldv!, R abus!!" CMrs.ba sobbebif her3 3hope Tom'Jvter offi*BB"butQ'd been 5in some ways--" "SID!"the glare 2 olc3s's eye,yBnot 12. "g9N_%st my Tom,"Qat hene! God' Cke ctQHIM--F< YOURself, sir! Oh,G2, IuR know=odim up!!!!Hesuch a comforjla he tohQed myJme, 'mosrThe Lor,!th2tqhath taSrway--Blb 1nam"21!w$Ait'sKard--Oh,! Saturday my Jo<#er bmy nos D him sprawl%aLittleH $K !n,TCsoonfKto do over K1hug3and1him6 IeYes, yj1howMfeeljust exactly/longer agoqQyeste(Snoon, took and f3to tPain-killI$ ct@e house down!Go%Agive"I  ''="my thimbleY3boy 1deaab P  H"An'rwords I7Ahear2 sa6Rto re 2#Bu\6Tmemor$X1the$la3sheqentirely as snuff;:T now,Nm Bpitythan anybody elsP #ou E cry -"pu^4Q%kindly word #imm$oY)DFa nobler opin$ H1befdStill,rsuffici Bhis  grief tB!sh] tIoverwhelm herB joy;eeatrical>aappealKarongly0is naturAo, b]R resiJbnd layX*R. He&on'F#ga|qby odds;Bends+ conjectured at fir!atP(/#e#le+;M+ec0rraft ha Unext,2]she missing ladspromised!shqB"heaQq" soon;Qwise-8*$"pA %atU "Sdecidk8g`fC"at tturn upnext town below,;|N(found, lodgede Missouri pQ"fisix miles t| nBperitIbust be`%1ed,1 hu have driv4rhome byqfall if5U1soo/  W searRbodieb!8Qfruit !ef Amere2cau; 2ingaoccurr} mid-channel, sinc Qbeing swimmers,otherwiseSBesca|r Wednesday A. Ifsuntil Sunday,3opexAbe g\!ndMfunerals&$ p"onA shuddered. g>Dsobb-j0 2go.  a mutual impuly two bereavedMA flu =/5Qeach Pb's armvQhad a|,A-o{!#cr jwparted.q was te+ far beyon`Q wontu+cRto SiMary. Sid red a biCMary<#ff 6. and prayeM so touchingly, so 62ith qmeasure1lov8OGer old tremb/Avoic  3welin tears ,B sheK&9h Rstill3A5#shZ"dsrmaking -sejacula1romB, tounrestfu and turn:Q "at* "as", !oa.| sleep. Nboy stole @;*cgradua;Aside, sha"e b-light=#andQstood4r Gher. HisIrfull ofA $e [5hisxq scroll.+ARto hi he lingRconsi"R face,arUsolutW "s x Bt; h(ark hastily iv9 !ntv k[2lipAmade#stORexit,pWabehindxAthreYhis way backmhB!no \Arge ! S2ldly on 2oatwc tenanRxceptWahAman,(xiE slept like?ven imag] CuntiGS 7 zi-<$on. 2 up. When h!pu`!a V6$abhGD, he2S quarrCacro  Qstout Awork !hiT !e , side neatlyn" ts a familiaraof wor1himYBwas &Aptur 3b, arguLRat it;1 beFAshipfore legitimate prey!qpirate, a thorough @ 1be Cfor z!enCreve8B. Soo<a qand entBoodsslwM`arest, torturin Cmean o keep aw:!an]n;Vhome-stretch far spent road dayJ"he r*DRabrea  rVA barr{JO k !unzbwell u1gilI:2eat=its splendorhe plungtream. A "he paused, dripp" treshold2cam + Joe say: "No,]true-blue, Huckqhe'll cl "ac?won't deser2zstm uZ>ğtoo proudfaat sorXI a. He'sBo2 ora55C whac[8/!e 0s is ourz^i4hey?" "Pretty nearKrnot yet_1wriIAsays:B aregO 2her+? W$\he is_2fine dramatic effect, @Aing +l.o%F. AW:o "co2fisshortly provide?2as WQys sea G!itGunted (and adorned)#Qadven*% Ba vaRA boa_ P"anp."wh p>AdoneHn 5hid)BawayAshadwQsleep 9!ss&'ready to$]>e#I AFTER dinner 4ang !ou-hunt for turtle egg+ 22nt *,poking sticks s yba soft vNe eir knees#duJ!A5. S9tAould{|igSsixty<cone ho6Qy werfectly round'ea trifle smaller`an English walnut famous fried-egg(gHCnighFanother on FridaBnq!1AftK7o%cwhoopi ua|s chased(j2anda, shedclothes ,  _tere nakePthe frolic far1 upqshoal wstiff current, wYtlatter {GC leg 1unde7^1cre qun. AndX9 !op) osplashed iY)Rfacesw palms, !7ing#Q aver-@Grto avoiQsprayQd finb g! "ug,jt0 st man du$s (9TAall WQtangl6S"egucame up b%b, sput q, laughqand gas1forth at on{ )BQ7imeh|aexhaus$1runBand  dry, hot!li ?+3covB_"up !by.!byk2terjo original performance onc/>3. FQit ocX /Hn skin re ed flesh-colored "tights"F6afairly!#qdrew a i circus--&bclownsP* b none  |"R thisRest p  `a. NexAy go %ir:+l"knucks""ring-taw "keeps"at amusement grew stanH1and a BTom Cnot ,; kEin k;@f;trousers %kiY!stfof rattlesnake his anklehq U!hecramp so lo8xhe prot+ @Bchar )di *Btime6Bboys!ti%ndwD res#waapart, dropYq"dumps, fell to3!lo1$ly"thEj Ato wlay drow1un.s u  r"BECKY" big toe;*Acrat`!9Angry5 1forD weaknessXqhe wrot!f ,!!thgcnot help i !er&itAEtookz"ouc Aempt# by driving 7a toget7!nd 3 m. But Joe's D1hadhn$Abeyo Bsurr.q $o 2Rhardly endBa miserB iIerlay ver surface.was melancholy, too"waeFhearted, bu)e~A noty 3howexa secret}^ to tell,B "this mutinous d2sio72not#asoon, Quld h$+1o b6Y@Bsaid2eatof cheerfulness: "I beY>Ebeen F 4is 1efooys. We'll( VgAThey>'ide1lasomewhY6UHow'd ight on a rotten chesto% f#--But it roused onlnt enthusiasm 2fad no reply. Tom!onz+3two!se}Aons;KAfail($ooI discouragz!k.M%sa  %" a A!lo%fgloomysid: "Oh, let's !!it up. I wango home. It'sQesometOh no, Joe''ll feel be- b{($by (T?!JuD 1inkah2?C" "u$ $4for)"(t) Bing- 2anyJS" "SQ's no.$Bseemp1it,0chow, w 2re t7! to say I sha'n't go in. I me b"shucks! Baby! Yousee your4,XAYes, I DO0#my.B--an)A, ifhyBe. Ih$2 ban(Bare.c'U"%ed.wlQ cry-I m,"we A? Po08aing--d8?t$it<?'so it shall.2alike i+Xe, don't you`sFstay|?ir"Y-e-s" !ou  . "I'll:Q spea-2you2 as- as I live.1ris\!"TQnow!"&9ved moodi [6and&#d<t!ho#1s!"hNQwants'to\,$ho1et  ed at. Ohr#3iceTand m[Ries.  V,A? Le0f#unts to. we can get0{aper'apAB< as uneasy Blarm 1seeGgo sullenly on/ sUAing.5# QmfortK Huck eying"prjO9Xso wiy5 such an om%K. Presently,v2 paxAwordwade offh"the Illinoie'AAsinkQglanc bU'3loo> `;yVYI#gog!ItfM L4  it'll be worse. J*usR"=)1canKgqAstay27+I!gosWell, g/--who's h ing you.+QCpickR scatqclothesjvtAwish4'd ol3youi`.wait for youq!weCV""3ra blameh5all!st q sorrowR awayM3Tom _Ba!6ng desire tug!at;#to ]#gotoo. He hsf stop,; sw Aslow. It suddAdawn y awas bemBverypQcT3. H2one Y-d?s comrades, yelling: "Wait! (tell you some!F#y j!ly1ped$SaCgM zh5e1ingc yK|cCat ly saw the "C"s # aN set up a war-whoop of apCk#1saiTRwas "Aid!"3qhad tol]m(,#2n't away. He made a uible excuse;O!hipIl reason "be:" fa#ev<T#DthemmA ^great length ofSs$so#men 1hol eserve as a A .B ladNCa gayly:4:9 ir sports will, cha6!im #ut:stupendous plan`Aadmi)wenius of it. Aba dainA and ,!he*ed to lear bsmoke, 5Joe caughQ ideaSBlike to trysXQpipes7!fi 2the@se noviceY1 d\Lbut cigarsPof grape-vinGQ"bit" Stongu8not manly anyway. $yo'Vir elbow1uffBrilyd!slr confid9AThe an unpleasant tastGgagg Why, it's@0as easy! If0a2e/sCall,"t + #SoI4 E. "Ic!no'hy, many aI've lookA peonm$ well I wish I!do's; but I 1%Tom. "T!aRme, h$it 1You1earK Stalk <k--have o qleave iKAif In't." "Yes--5MosUHuck.$7D too Tom; "oh,ZCR. OncW1 1e s5 ter-house. Do rememberBob Tann771 thand Johnny M1 ,Ilcf 1, 'ame say  !Ye\ !. B#ay I lost a white alley. No, 't*.z --I told[1. "472s iI bleeve4Apipe4dayMfeel sickNeither do>}]$itV1. B!be  4\ !! 7keel over wtwo draws. !le D tryB. HE'D see! !beRwould !A--I  Aa tackl2onc 3Oh,)2I!"G@s:youI any more%an!onqtle sni fetch HIM." "'Deed2oul U. Say aus now?!So ay--boys!saH !i BsomeRy're = ,W Qup toQay, 'got a pipe?aPae.' An2'll31kin%1carO like, as6rX  pIamy OLDw", (03 on'rmy toba+bCin'tood.' AndZ1Oh,'" r 's STRONG e3G= $ouhO1igh ras ca'm!Eqsee 'em-S4thagay, Tom 1ish0aas NOW5!!we \"weQerwas offQing, 27 w#y' dalong?Bnot!M4BET@ll!" Sotalk ran onV &itEflag"'grow disjointedBilen adened;erexpectol marvellously ]!^ry pore ip <boys' cheekame a spouting fountainiyj2bai the cellars   rs fast Kb to pran inund;2overflowing+M throatsqin spitx 2all*"doF = Fings"Metime. BothY1ere2ing2pal miserable, 'from his nervtfingersx!. t_ygoing furBboth pumps baiB"Mm|\)id feebld) =Wknife]hCfind Bquiv2lipb 1halutterance2'llyou. You go j`Rhunt r? !pro!No needn'tvHuck--wdS ,BgainAwait!Q hourCr%itpK'"to Dhis :yswide ap oods, both U!pa Aoth a1 0informed him2 if#ha!ny trouble agot riQ"itnot talkative atT}Snight4Rhumbl1henQ prepCdp "ft meal andBparez\ "ey[2no, 1fee,well--some+1 at )mӂisagreedQ2 A !id!aw-dand ca0{ding oppressive:#ai83see02bodiNXa huddl  !so1thet(Cndly*vionshipr4F/} 2ullj=aheat o  breathless atmospA sti<Ty sat94%Awaitholemn hush 7b. Beyo{jfire eK3swaSQup inAblac`!Hr  &aaAglow  vaguely revea^ foliage for a momTavanish4by " crc1str?#n & faint moanA siguL"th0 tranchesRforesboys felt a fleeting ,ywshudder fancy tha?S! Nd !!by/. Now a weird flash,! n?Ainto  hgrass-blade,=i and distinct %aBfeet $it[three white,/tled facoo. A deep pea "thP1rol:and tumbling "r heavenGlostw# r4Qdista$A Ƙ chilly air passed by, rustlingjyn!sn the flaky ashes broadcast !ir TfiercElm FN% stant crashD#retree-tops r'Mic:p$in terror,x%athick 6!p~q. A fewsurain-dropCl paf* .. "Quick!!W"foLtent0csprangs\Broot4amoQdark,awo plu&same direction{ blast ro trees, making &as it went. One blind yH #ndnbf deafJhFnow a drenchinv1 po@#heK hurricane droveGsheets a`c0Qround<" c#u Beach#,the roarafoj-C!s >eir voices7 ly. However, one by; O 8\ook shelterk  .Qcold, /Qstrea5 ,;o%!y =?DseryR1o b teful foK  x 1 olBl fl{Q$soW2ly,0 Wd noise1hav[A The6(esS!er:qhigher, Zthe sail to "se/1its ]4X"wiCaway- %. Iseiz0"s'1}Rfled, ye bruises, toԁ2oak`U86d-bank.b battlsTst. U}R ceas conflagrf of lightnR flamii*AkiesSbelowout in clean-cuTTless Qness:"be:the billowy ,<Bfoam$@Z0 of spume-flakIhe dim outlinSdbluffsoside, glimpUD drifting cloud-rZ1lan1veirmE "L9 some giree yielR>! fand fell younger growth;Vthe unflagg/ S-pealnow in ear-splitting explosive bursts, keeBshar8 unspeakably appa[storm culminatone matcy ceffort# qlikely *+9q to pieQburn ,! ig, blow itBand rq creatuA it,av" 2. IKra wild rfor hom#}Q. Buk}'do forces retir Aweakd h threag  peace resumed her swa  %nt>Scamp,YC! d3wed3hey`Q was Sthankp07eat"^Dthe  ir beds, was a ruinTJQblast? w uwere no3Rt whecatastropppened. |! i pz!ed9A-fir/Qwell;5 t-v-AheedSlads,3Bgene0ymade no prova +/#stHc! m pbdismay2|Q soak3t eloquent iNHtres/,%,1verY0 [aten so far up HQlog iL  dbuilt !(wW it curved upK\3 &$edn Afromground),%a-breadth or so# \V2!weB; soCpatitj-t7kashreds+qbark gaBthe 2sid#qed logs+ay coax61"toQ. TheRy pil=$5boughs ti]# r furnac<|# glad-heaV751g1y d{ , !boo"haOXD feanN ][3satJd aexpandd glorified8Q<]9ndry spot to sleep %6-B. A@6sunssteal iN2oys !si!ov"em sandbar2lay1<Ogot scorche.8drearily se(breakfas"CrustJcstiff-4mhomesick once;:%Bsignbto cherTup thp+;ɹ2C. Buc 1not %fo6, or circu .E, or"%Aremi1$ imposing &aa ray 6eer. WhioD, he`7mRa new devicaK Hqo knockcbeing aq e"be*c!nspqa changOHeattracis idea; sonzs;m^head to heel black mud, like so zebras--alB Zchiefs, of course/aEwent* `A"tt%=s settleQg!By|yn ree hostile trib(Vupon @ bambushdreadful 'kQ%hcalpedHvousands  gory day. Conse$lyan extremelisfactory one. rassembl\Dcamp-rsupper-*<|`KYj4but[ifficulty arose--!d]1notk of hospitalityR-1fir<8 ,: qsimple nAsibiI@"smv2 ofER processeLDaof. Tw davages;7wF 3hadd$ed%. oD}2 wa;with such show 6! aCSmuste# Apipe# 1tooqir whiffA tqdue for1h1gladBgone"rya0Rhad g;S e now smokeA hav Ao go^;Aget 67d be se#un02abl1not AfoolG jhigh promis, #of }practised cautbafter R dfair success y spent a jubilanAning\FeRhappiw new acquirp#would have iwnd skinning"QSix N s. We will$toqnd chatL?And bsince we=nther use >, . CHAPTER XVII BUT} hilarity ?Btowntranquil eZafternoons Harper~Aunt Polly's famiE22ereS3 pumourning QgriefXP . An unusual quiet possess= village, althoug"Rordini 8 !all consci*Ir!du ssaan abs^#ir+ nblittle*sighed ofte.Ftholidayqa burdeL !Shildr61 no) Rsportz h>gUbup. I Becky Thatch1!unqself moB2abo Q dese5 aschoolc)C yar1feevery melancholy sDund  t73to FPShe soliloquize:if I onla brass andiron-knob-!:(*Dgot ` e%to * him by." And she choked besob. 5)7sto CXo9!tchere. iRto dog  x( say that' n3 the whole wor Bhe'snow; I'll <.6A seeb.12is 3t broke )1wn,qP!ndCawayQ down9Uun quite1F!ofs Vgirls--playmates of /and Joe's-- b 1ood2!Qv1 pazfence andfNArentqhow Tom]rso-and-+d2ime"csaw hi6'6how#3andmrifle (pregnant# awful prophecyu(2eas "!)  er point>tWu2actwC"heClads" 8addNpa"and IBa-stR just so-- as I am nowOf)qwas hima Aclos e smiled,Y ?2way!th!l+"me !--R, you knowD!I wZ5Wmeant ,C/1can TL a dispute5who-Bdead.cin lif`Qclaimat dismal|qand offLevidences, more or l: 1amp!DwithVrwitnessDwhen ultimately decided who DIDrthe depl"exCwordthem, the luckR2ies Aupon1selA sor"sacred importanf z1apeand envie=che respoor chap, whono other&z"toF,)tolerably 2c pride 01'Z9# ucked me-BRat bi Rglory failure. Most s "athat cheapen&!1incWWa=4loitered zs2rec2r memori!osu2oes3wedC. W\-B hou 1UfinisFnextell begaoll, inst# r  @I1a vtill Sabbath2the ful sound %in<he musing9%TlSM#on` &rs,V5ing$ vestibulQnversCwhispers#1nt.zQthereF$no/Athe 4 ;g]6eal"of dresses +f womenZ<eir seatsZ3urbJ= T. Nonpi&er q churchd!beS full5. TXMa&Q paus expectant dumbn  CV,D#Rby SiEMary yV C ball in$2 qcongregb old ministere, roselBntileos Bseatront pew$ncommuning2., broken atvals by muffc5obsbaspread,hands abroa5prayed. A mov1ymnEsungRF tex<$q: "I amRH Qe Lif2EQervic'Dceedclergyman dmLuch picturA gra  6wayA rarZbthat e4!ou)!in9Acogn!Uthese,(!pa5!herpersist"bl1him rm always Ys?BseenRfault( Sflawsg +1relaGaa toucIqincidenm&iv`e:RqillustrN.Rweet,X3ous%s people !, how nobl_ beautifose episodespt  O rank rascalit"}.bcowhid 1 be@ \ 2and D pathetic tale1n, e"at r rcompany aand jo( !erba chor swelled upa triumphant&,6c it sh! r-s0ASawycre Pirat3#eds k-1envQjuvenkGDBconf"in%$ea&"s oudest momen_1hisq j"sold"Utroop"ey6 jsbe will;"beFBridiculouCtp UuB I" Tom go81e c )esd!cc4R's vatmoods--uhad earned YByear he hardly knew which expro85ostK,!Rto GozBaffe' BqI THAT !--RchemeoAturn'bhis brpI Qatten sa y had pa4o& mo'og, at dusk on 3, lmvesg+t6; U slep   1edg7Bthe 1ill nearly dayligh`UcreptZback lan@ TsleepE  0a chaos of invalid21nchA>f fMonday2 kSto To1tivhis want Aamou1. Id!ttI<@3say> fine jokB, toHeverybody suffe'G'most a week soAboysra good 1but01s aMjC you% Qbe sop-Aed aNrlet me ob so. I-QcouldO:U overtrl1hav| eN&Aive -=2hin9D1tha" warn't d 2but qrun off=Yesedat, Tom,";Mary; "and I believR OihAoughLCW1youR?Rg!, }#ac7iZstfully. "Say<", mJr'p?" "I--w*know. 'T?b'a' sp'NILryou lov UDmuchwith a grieved tB discomfo5Gv!me! c enough to THINKc, even+ didn't DOqNTuntie)vUany harm," pleadeBit's giddy way--he is2 inba rush%he|uinks ofrUaMore's Qpity.\. AndAcomeADONEj.1too'1'll !, 0!da 'Q late DQyou'dSd+"dfor me>Acost&2so 9 j1you V` for you5H2I'd)ADtterakDlike!I Vnow IVsrepenta1; "s dreamt@1any(I,,L much--a cj$$'s!no2. W QWhy, Wednesday night I!tZsu ! bl # b 8+ woodbox A nex Uhim."TRso we9 S 'do ByourQtake  0?8 !usfD<$Jo#'s -uhy, sheA! DiHNOh, lotsso dim, nowWtHa--can'lIRSomehAseem2ind ewind b)6.{1"Trh1der9s[2p. Come!"6  !hioo$ aforehe anxious minud then *AI've i[(.! t rr!" "Mercy on us! Go]-Tom--go on#R< 1you.1, '*door--'" "Go ON]VEJust;ctudy a . Oh, yes--rS you dkwas openeAs I'mMGQI didZn't I, MaryA[}Bthen^r I won'obertaine9Qas if4 Amade'P/cWell? -I make him do%Yb1himB--Ohyahim sh   M"land's sake! IAhear% b@my days! Dstell ME1any! i 1amswV. Sereny 4& i^an hour older.^Pther getCTHISj er rubbage 'superstition.#1t's/!!brbas dayVF Nex3 I r BBAD,NmischeevousM )"an+ responsibl3n1--Ik a colt,28 Pd$"! AgoodjgracioF you(1cryU"So& "Nof* nM)" "Then Mrs.e@2cryf "JotF3ame:C2she !ha SwhippERcreamshe'd thrit out he"CselfRsperrA1cyou! Ya#Qsying2t's1youdoing! Land ae]Gno!SiAsaidd  D" " O ! IRLBSid. did, SidMary. "Sh.d"leU"heL1TomSHI{ !h^6$off whereM$gone to,  fDbeen0sometimesTHERE, d'youd that!:92his8 QwordsG"Anhim up sharpTI lay must 'a'an angelcere WAS W xCtoldZ 1Joe>`a firecracker73Pet\ainkilleraas truPeI liveQ/!loCtalk%dr;Qe riv)1r ud%3havHCA Suna qand old MissRhuggeH4cri  "en bIt hap"!so 2surT'm a- sftracks /2n't`i.Zq 'a' se" %! \what?Ie3youq, " IwBhear`C wor2aid  !en  Pso sorryq I tookRwrote4piece of; bark, 'W}dead--we are only off 4'p %T tabl_  ;'hCyou sdA, lacasleepv8Iand leaned2lip6 D ,&I;bforgivqhm#at4she4crushing embracpt, feel lik( guiltie%villains.#wackind,  Dough~a--dream," , faudibl!up! A body doeV as he'd do if heVyA. Hea*FMilum apple  s 1was-,t--now gto school.=qto the Oc1Fat2f ui  ~2ack>'d-F1ing"Bmercy [l#t q on HimHis word, Bknow unworthy ofa 1nesR FHis *ad His hand+slp themEugh placere's fewAsmil 2e o= t{%4wHis res>long nightUDs. G2Sid >Q--tak+r)1off( 've henderClong.e children lefw old lady to call o vanquish her realism!sq marvelu(3had1Q judg_"toF_pi4"mi,"hethe house.XAthis zrthin--az\Bthatdout any mistakekWhat a hero/a, now! Henot go skipp~(%Rncingm"a dignifi!agƌXa@ who felthe public eyEm|cindeed; he triesto seem2 th2s ooaremark-he passed along?tW5Afooddrink toSmaller boysl%1flo+cels, as A to 6"enw"le$#bys the drummer1heaQ cession Ae elephant lead menagerie :own. Boys ofown size pretendVIknowaway at all'4were consu with envy,bthelesW EUgiven& i#av1swasuntanne6?his glittnotoriety3Tom !no# Ae pa1ithBr a =e3Dbaso muc}bbof JoeAdeli!9eloquent admir)݅*"eyT1two"esMAnot "inCsuff+."stuck-up."s#1tel ir adventures]5ungy#2ers9B;c@ 9ran end,aimagins}!irrfurnish material+,yorir pipewent serenely puffAroun Q Qsummi; glory wadCchedOQdecidbe independen@ ]6now. Glorysufficient. He_2liv|R. Now !heTdisti?'a, maybJ?qbe want o "make  !le!-- h  qas indi1Qnt as other people. 6 arrived. !seAawayQjoinetrroup of5%Oalk. Soo#!obed$s%3 trYQgaylyR ERforthi1fluJAfacedL Hbe busy chasing4mat?so4th a 2sheV a captur9h$icI3shea+/Cher 1vicinity&89qto cast!nsS eye =gPW1ch ~RI"i2!viFc vanit wB him)so0Awinn!im&only "set "#moE6himSdiligAavoirc at he knewKboutR gave~ qskylark`;+ved irresolutelyBQ, sig 1onc 3twi#glafurtiv45nd @QTom. 2snu71was1ing  particul0"to Amy Lawr7 Dne else. SheArp pRwnd grew1and uneasyKc=2tri1go away, but 2eet8t+2ous:1car71her"he "to a girl*as"'s%g!--)sham vivacity:Mary Austin!  A, wh&"n', #to-n?Cih!#--*Qee me"Why, no! d1? W1sit(Ix!ins' classu1go.Xw YOU!? oit's funn!n'+D you>uw2you 'QicnicU%Oh!jolly. Whol)XMy maa}5oneRcgoody;  she'll let ME com)Hieill. T#'s<!any#AbI wantQI)!ev4# nice. W7Fs itbBAQby. M r1vacBk fun! YouM r1oysAYes,tfriends to me--or3be""he:4ed Ay calked d"lo   the terr$Tstormbisland[h9P#nr PNq tree "o flinders".c";rwithin EYBfeet6lQmay I#G]rMiller.P.1And 1Sally Rogers&+usy Harper. "And Jo[Aon, g2claiof joyful"s 0 ogged for invitNs"To]1Amynturned coollyPcstill Atook# 's lips tremblAbars ca1her;Y!hi$se signsa forced gayet con cha tfJ7?!ouny 1got( !on aand hi61rand had4rher sex4"x'xGsat moodywounded pride,qll rang roused upua vindictive cast Y1gav| plaited tailsik, swhat SHE'D do arecesscontinuedBflirO jubilant self-satisfacAnd he kept )Uarto findG1lacerformance. At las AspieEsudden fa-rmercuryb#bcosilylittle bench behi/BhousT 4t a27S-booklfred Temple--and so absorbed2hey #so?Atoge Rbook, 1didby 5 ofsq+lB besides. Jealousy ran red-hveins. H1hat  2for "waqcchanceQhad o  a reconcili. He callc-r a foolhe hard names a!ofD~#cr3vexd!Am tted happily1, a'y!, 8.e!rt= Asing 3butRtongu{8!it 4He Bhear+,Aas s BwhenZexpectantly h;!onu1ammh awkward assent, (/N sFA misQd as Awise !toaBrear! ,0q and ag%#ato sea eyeball"=1ate>!clryj belp itqit maddUL q5Bough"aw;  ]Thatcher\ once suspe(`iC# lthe living. But3did59 +Ber f%/3toosas glad#Tuffer^3haded. Amy's happy pra<$inA!e.!hiac g&,o attend to; s must be doneAtimeUfleetin vain--N chirpedkT`, "Oh, hang hi%k  aget rioXher?" r those 9he said artlessly !ou" """ chool leJeShe hax3hl, t. "Any(Qboy!"p#gr3is teeth yGH1#buSaint Louis smartd20and is aristocracy! Oh, c a, I lij1youfirst dayuWqaw thisa, mistAnd I 1ick.Y just wait_ I catch you out!9%1tak  ermotionsZArash+n+r= --pumme>hI1kic&>and gouging.{you do, du0? You ho',Qthen,?learn you!" r Fthe Qflogg'as2o 15fome at noon. His L not enduByD3 of4 iAThis jHtbear noAB thea distrf'Rresum) 1 in'h bAlfredI*sy"">!no#to,Ktriumph BclouG 3she/nterest; gravi absent-mindV-s followeGthenLR; two2ree -"pr!up2ear footstep" iba fals%;i Ashe bentire({1 wisbEdn'tjit so faVsen poor Q, see!loP2notV)Ahow,E exclaiming: " aO one! look"1s!"{1pat(Oc at la99S saiddon't bo| Sme! I2carathem!"` LBearsagot up)Cwalkq2. dA dro'alongside+s-}2"buRsaid:,2awa&leave me 5e, .1! I1 Shalted, won# waZdone--forCFaid }i !snooning #hej on, crytC!mu Z?he O qwas humO egQangry!ea bguesseE Vtruth Rimplya;Gn0nXAventRspitee)I". far fromh=be lessPDBdGZ !3g~to trouble withoutS riskTAselfR's spn Cfell^ 4. HMhis opportunitZ!ly.e !onLfternoon/T?&inKr page. ,pi cwindowm R#ou5vP. She startward, now, inten28tell him;~ thankful%healed. Before s half way4, hh1sheSchang$migi 4 of Sreatm!heS@C her came scorc9R:S sham|yvz6 ge,!ondamaged i's account*"tohim forever,Ohe bargainVIX TOM 1 at:'adrearyoa_sm Qaunt R k1 sh\-Qhad b tQorrow an unprom$kmarket: "Tom, &1a n  2kind live!" "Auntie,o2aved&e?4Ryou'v ! e I-vTSerenM,ran old softy, expectingAor!o ZL :g$atn0 2hat4,!loRbehol{ s'3fouf!Jot7 2wasabtalk wt&, I don'1 $Q of a9will act  that. It makes me feel so b [-go\A andG!L l of myself never say a word." Thisa new at  %  3nes( aLH!toueCjokeBvery ingeniouse *A mear shabby !He "2heaA"no5ken71 to,#4he IBdn'tvit--butCT2Oh,i#'!k. c0your ownrishness66T Lfrom Jackson's I?2 to $urt yoo?\:ASa liem<%91n'tC to pityk* Rve usXCsorr8q!knJ8was mean,!#I J CB. I s, hones1),. Ayou &W<ibme forI"toV1you'&us™(n't got p!del!th nkfullestMi} 2wor>I7bhad asta !"atY2you ever did !it." "Inde ' 1, a%--52mayOQ stir2H!OhT Rlie--,!do[QIt on 1kesPcgs a hUFbtimes *<a; it'sH0 F. I k,1you @?X4"at)"&me2I'dLW#it Z power of sinsV72'mo}you'd run eand acted2it reasonable;n #me  %Ryou g y 22, IFgot all fulRthe idea ofa' the churchI("n'GBh2 a$Qspoil$Sotpbark back in my po 1andjA mumkW.1arkq2ark 13we'+ d 1wak8qI kissee--I doL6linS%aunt's face relax[! t.Sness %inq. "DIDqkiss meM !Ar.3 su ?did2Dq--certa|ArmRz ~Because IBcobyou laBare moa-Band "3ZBds sz Aruth.* tremor inRvoice&K9E!!bexAwithbf1 o " hTgashe raqa.!goAruin$1 ja#T c in. T0 _vher hand< erself: "No, 't dare. Poor boy, I reck(+ #ed bit's a1!leBlie,7's such aQ1romaI hopeLord--I KNOW BLord 1forr_.Qisuch goodheartd"it3"wa'#fi 1lielook." ShexCawayRttood bya|b. Twic-Dput 21takA garUand t:refrained. Once m1ven1rhis timo3forN)3Wc}:> llie--i!et%1rieR." SoG3. Aa E, J7y"flQtearsix3: "Athe Bnow,}5'|'mitted a millionl)!"X THEREAsomeAunt Polly's manner"~!BTom,; Bswep low spiriVBhim lightRhappy6. Hp&A luc YBupon O8e of Meadow Lane Dmood+determined3. W|Bc's hes$ h]; Iamighty to-day,6I'm 9 ,#2 do!4ive--pleaseB up,S you?vDgirlKRA him<dnfully( face: "b3thac. 65 TO , Mr. Thomas Sawyer.i AspeaM 2youR!to*h a!pa!onCd stunn-1 noYnkh!ce(inIrsay "WhHs, Miss S&?"j[ ?$&it%dby. So$1 no(OQin a Rrage, 03He mopedAyardf1ingObwere azBand ing how hebtrounc%if:iatly en#erd 2R a st"y remarkQ5. She hursWbreturnngry breachcomplete. It EY$to Bhot 0Rment,s#AQAwait)Q to "02in,was so im see Tom flo\injur2. I;1hadany lingl!noQbof exprAlfred %,aoffens;2lqad driv=vaway. Poor girl dOrhow faswas near. The maMr. DobbK n͢middle agean unsatisu3ambDqThe dar!ofdesires was3#be a doctorqpovertyWdecreshould be*Q highan a village q. Every he took a mystmQ book>CVk and&$1 in;{s "no6.5Breci8"R$! t& 3ookJ#lo21key#rqot an utMwas perisve a glimp[Q@Bance+T came1boy8c theor-1 Qnaturqno two 1iCalik6t way of getting5ats in Base. "as1pas!by4Ddesk% 1nea~R door t3tX)5ae lockADrecious H  glanced around;>B next instantHOs1The title-page--Professor Somebody's ANATOMY--carried no informa/mind; so s+!ga1tur s"cau!3oncaomely engravW frontis> --a human figure,qk naked !CK+dow fell Apage}3TomA ste$inAdoor&fcaught tpicture!bsnatchs"to >aR hard BSdindpeEathrustfvolumej2tur@Ce ke  out crying'1 shand vexF. ",2are1 asacan be4sneak up on a persou"wh 8y'r+." "How yH2looS$ta?" "Y$Abe a  ;wfyou're&tell on m1#ohQshall) !! 1 be whipp ICwas 3%P astampe,!fokdRBE soU i!% *2'E*. %&and you'll see! Hateful^' "!"she flungthe housd*cexplos>\:still, rather flustereC1onsBt. P+ O+  !Whi"cu&k," aCqis! Nev2xen lick! Shucks! What's a#Sing! 4ClikeS$--so thin-ski and chicken-". 4Aof c4 # Iq)t$ldV3'is lA's o@Gwaysa even a<&|tC7? Oxktask whof%3his book. Nb'll answe en he'll doUay hekoes--ask firs\An t'wOns" jiBing. Girls' facese*9yMM2bonT1'll .i  hatight - ', p1any#ou.*!coCDJ'added: "All,3"'dQto se"inQfix--!er sweat i"!")4joi0gmob of: lars outsideC[ags  !nd:ol "took in Afeel rong interests studies% #hea 1 at gc side Broom !'sX d him. ConsiL&3alltT, he 4Bpity`B$et+2all1uldo-/"HeVup no exultd!lly worth[ n  \ %Qdisco@ 6#adeHH Sfull I own matterE9a~72aft "t.64&er lethargE *"Xgood the proceeding _! 3Tom"ge(&aby denrhe spil2inkCw  >/sSG:adenialr mn4TomssupposeV A gla{Bthat%sJmergency paralyzbinvention. Good!--han inspir4! Hk"ruXbook, spring thi)"3fly5NAolutAhooke$ont" i)was lostl ,rTom onl9{ Wsted , bQ! Toorkn Sw *O  Bfacex1. Eeye sank under AgazeLv9smote even Pbnocent/Hfear>1sil%B onez count ten =kAatheV.#raH npoke: "Who  book?" nNsound. On 1havxrd a pin,1a still!continued;CAsear-4fac|  for sign uilt. "Benjamin@,!tuS?" AA. Ane  pause. "Joseph HarperD5+;I uneasinessE2and4#sethe slow tor+es TFDscant ranks of boys--c ,ed!ur3 : "Amy Lawrenc,eA shak head. "Gracie MillerQ samerYLusan! 8his)rnegativ(2waslMA was"bling fromcto fooQexcitG and a sa!op_!of/Rsitua "Rebeccazc" [Tomhf#--I!Cwhitterror] --"]R--no,4(me6b" [herA rosmappealE?XAG29lik;Da%br(3prafcis feehouted--"I:"t!}BstarperplexitH6incredible fF3Tom!"a C, toHqdismembfacultiesk wYNA for=#to-his punish"=burpris gratitudB adosCshon64himBpoorv!'st Bpay /O)1 IBed b~splendor qown actv Sb outcr7most merciless fla DMr. 2had8,badminiBalso receiSN!ce"added crueltaa comm o remain Shours0ld be dismissed-- knew who #wa k]h;his captivit3don he tedious s, either$C6bto bed, planning venge jgainst ; ;arepent5#ol4"ll^ 3for 3'jq "ry8"thV1ingHW %way, soon, to !Santer'%she fell asleep at las's latest0sdreamily inRear--, how COULDbe so nobl23XI VACATIONapproaching),nKqsevere, rjQexact1han[,i!a .!shV on "Examin" day. His rodkhis ferul8! seldom idle now--)=&st # sUpupils. Onlabigges7 young ladie}e e twenty, escaped la #' Ss wer vigorous onO!; lC he \,K6 wig, a perfectly balQshiny=#, Ronly d'B ageq T of feebleJMmuscle. }great day "ed?byranny#waEc=face; hec! H)!ur?Ie least V2comTnQnsequ Y1boy59 air dayNp8Fz)1plo1 rezy threw away noo "to'  a mischief y a$J"im\r retrib8 & rfollowe*yCful vCso s|Qmajes^| from the field bad#stBtthey co2tog_Ԝ#lag7 QdazzlaictoryBy swaign-pa."'s(BCchem3askEhelp0s v`1deldRboard Rather's f]3K$giboy ample -rto hateFTd's wifHBgo o"!sitSuntrySew da~J#1to !4fer !he O Aprep f3forQoccasAA3by 8Zty well fuddl Q boy  the domini roper condw$G on A Eveh1q"manage"Bhe n[ <9Vwaken hhurried #toB. I!fu; "im!esHc arriv0+" iewas brilli' Cdorn wreathsbfestooDfoli!xflowers! s 1ronH 2 {d platform,< Alack=#? tolerably mellow. Three rows of benches on *(!si\Rd six%1in "c m.foccupi dignitarw1own)% aparentusTg left, backh citizens,Dba spac emporary5u@"th&Blars3 !er1taktexercise ; 1of S"he"drY0"toxae statdiscomfort; gawky bigRs; snowb_ X clad in lawBmuslHKbcuousl,ir bare armsir grandmothers' ancient trinket&2 biApinkblue ribboLir hair. A>/!tas fillKnon-participa.%2. Ac"3boy!upsheepishly recia"You'd scarce expecaof my o speak in public stage," etc.--ac5ing#ai-r Vpasmodic gesturech a machine mahave u csuppos ' a trifle]aorder."he*7safely, though cruellye}3g9afine r!offHD?dp! manufactured bowqD. A u1lis$B"Mar a+Clamb]#, Qgbssion- aurtsy,yher mee,ru!wn#ShappydSawyer ӕited confid o1int)1 un hGindestruct"Give me liberty orme death" speech1furc frant4Aicult  $ia middlit. A ghastly "-fbAseiz m, his leg5ked m=  to choke. True  1nif/!ir tterly defeab a( attempt at,it died early. "The Boy StoodC" BӘa Deck"!owPAlso 3Assyrian Came Down,"!ot{eclamatory gemV"rerd,a& f^ meagre Latin class ,Qhonor prime fea41ing"in,original "compos\ 3s" a. Each-!er: !to<qedge ofr 1cle.1roal anuscript (tis dainty)F"eqCreadQlabor t to "expreDpunc!1the.r had been illuJ;on similar  Sb befor^, doubtlessir ancestoremale line F nCrusades. "F[Ahip"wone; "MbOther Days"; "ReligioHistory"; "Dream Land";qdvantagv  Culture"; "Form Political Government Comp and Contrasted"; "MelancholrFilial LovVrHeart L#sp A prevalentY!se\ca nurspetted m|B; an>asteful and opue1gusf"language"; <qtendenc dlug inRears 6 ularly prizedphrases until+ Fwornx%3outr peculiRthat ZX CmarkBmarrlahe inveterata r sermonwits crippled tail  Ae eneach andby one E m. No matter wCssubjectG Rbe, aA-rac 7$ & quirm it into some as "r AFa" rQus mi} !ul*templateAaedificG glaring insincerid"_not suffi o1assYabanish  fashion'Lit iT to-day; it never will bex,orld stands, perhaps. #]5ll our l$2herD1 do$feel obligwAclos.!iru1ithkBrmon|/aill fi >#MfrivolouT  Dgirl1dongest9XQrelenhly pious. Butis. Homely truth is unpalatable. Let u2oK"!."QXfirstNas read9one enti#1"Is (n, Life?" Pgreader can endur_'bxtractNit: "I5common wal S life(ful emot!do/ERthful9ly"1warvsome an qed scen 2fesc! Imag is busy sketchingt-tinted3Prjoy. Inû voluptuous votary}TEsees`(1amiA3 ei ng, 'the observe4allrs.' Her gracRarray7snowy robes, is whir! f"uga1maz3joyous dance;E eye is b !es rY 3 is#st gay assembly.-BdeliIf"#quickly glides by, welcome hourRs for1ntrBintoe Elysia cld, of bshe ha2 g\w fairy-li eF !ry appear kher encharvision! 3newjis more charm}aBlastfas1nds{Aenea@ais goo߁xterior,#is vanitflattery3onc 1souqw graterharshly1ar;ball-roomCqlost it4sF%Rhealttaimbitt= Qheart1she bs away1Fnvicaearthl8s cannot satisf U1ing1theHJq!" AndV#or3so D!rea buzz of g/1to 3durB $, Qwhisp4ejaf"How sweet!" 5qeloquenSo true!l had closed jc ly affli e\enthusiastic n arose a slim,X8r, whoseK07' "C" paU42comMTpillssigestioX>`a "poem." Two stanza&"it=!do+ "A MISSOURI MAIDEN'S FAREWELL TO ALABAMA-qlabama,%-bye! I love1! qBut yetLzCdo I:+1thec/1Sad1, sQought(!myR~bt doth And bqrecollesng my brhRFor IAwandH|!th[wSoods;Have roamN a;Tallapoosa's stream53blisten, *ssee's warhfloodswooed on CTide Aurora's beamA "YeM8Ame I to bear an o'er-full4`Nor blush4urnmy tearful eyeB'Tisno strange% RI nowa+pm2(to0s left I yield; Qighs.[W|sand hom2min  is StateW1TvalesL"--F!spq?fade fas (1col ag3eyex 9eoen, dear ! BturnQISee!" c Bwere4few$ho $at "tete" meKl"bu "po S very|ractory, theless. Next/ed a dark-UBxionEIfack-ey Qhaire qng ladyQ paus2 im'vwJa, assu tragic ex$n Q " m~ d, solemn tone:A VISIONN2Darbtempes 2was5 2. Aq on highA+2ingr quivered; butAdeep0"na T heavy thund "coE-qly vibr 1ar;s]rerrific n .gry mood-de cloudy chamberheaven, seebo scorQpowerXted over itsAor b,allustrFranklin! EvqisterouYwinds unanimaM"th mystic /Qblust?3as if to enhanceBir a Q wild!#. . "At5 a$A, so Rrearyv human "mymspirit sigh@eQbereof,k1'Mye#iend, my counsellorand guide--My jop Qgrief,second blis[in joy,'RQto my1. S#ve^9o. Z 3ose p!s !d Qe sun9lks of fancy's Edekromantic , a queen of beauty un#qsave by !ow_ctransc xAlovevPsGAsoft 1, iqQfaile2mak a sound,"bu1mag0thrill impartedgenial touch, ather unobtrui< Bhave away un-perceived--unse4. A1 sau res4herf1s, "ic5s e robe of December,21poi 0nd]Aelemtcwithoub0Tg5two"bresentV3Thi;(ma)1tenB}h1oundwith a 5so v all hope to non-PresbyterianN  #!okApriz%1osi~ Gwas /Qto be sfinest >81.cTmayorvillage, in deliveJ  rhe auth6 it, made a warm speech i Bhe sQby faT"b "" !heE  that Daniel Webster well be prouit. It may be rel2ng,xthe numbes in whiz4aword "4Qeous"over-fondlegxrience referras "life'sS,E$upeusual aver`1Now}m,"1 alA ver3k1putchair aside, !ed9 !udldraw a map of America #A, toa"ci geographyoupon. But he 9sad busi] !thu|&y 8SQa smod titter S!ov*=!e '/ nB wasDset =Ato r !it:sponged out2Qs and=dbm" he only dted themQE!evn E&ApronGMd$)$hi'>J his worky(if@PBnot uput dowQmirthBfelt"al B wer #en him; he i| was succeedingFyt;\5uit even6ly increased.Q igarret above, pieta scuttle 1his|,@$is- came a cat,nended a$ q haunch a string;1had&!g V 4PEjaws=qrom mewDslowly de#Q curvwAward-Aclaw,swung down-qintangi!!irRxKahigher2 --the cawb six i"absorbed teacher's head--down, "$owshe grabbu2wigNher despEclaws, cluS4iw1nat7u ", " i} Yr trophy7" ibposses 1And0Qthe ldid blaze abroadx's bald pate--fo 3, boy had GILDED it! That broke upEmeet3boyavenged. Vacn  3com NOTE:--The'+"a" quotaS tpter are taken%out alteriBfrom avolumeqtled "P7and Poetry, Western Lady"--yj1exa%0݇Qecise  *agirl pQhenceEAmuch9 Aappi"anYcere imUs be. CHAPTER XXII TOM joew order of CadetTemperance, r attracN  1howw@ "regalia." H3misRbstai^Q smok9!ch,Aprof as longSArema1a m OQ he fn thing--nam&a1 noBdo a+" iZasurestO  3 body wanA!goVQvery Pv$b soon W!rm] q# aQc to drc)q swear;Rgrew %so:!nor jL bof a c6to display i8red sash kept himwithdrawing from . Fourth of JulT61;Qon gaat up --iC"A2worrshackle7 1y-ehours--and fix0Bhope? old Judge Frazer, justic)Beacewas appares'"bei/ Ta big*funeral,  o9an official. Du( ree days[;Bdeep+rcerned 62the' d Qungry1newit. Sometimese: "ra$--#heRventuj1get Chis practiseO.R-glasrmost discourag yJbluctuabAt las'as ~Amend then convaltQwas disgust9'qnd felt !ns&injury, too !haQsigna,tat onceq"at#Bsuffc relapBdiedrresolve kP! trust a mand@T+Cpara a style calculated to killClate^Benvy$1fre[m@!reAsome!a La swears Ors surpr 1dids7Qsimpl| hga, tookBaway Charm  GDqly wondQto fiIacoveted vGwas beginning -4&ng Cheav}M ands. He attempt$BiaryPLed dso he abandonedT?!rsanegro minstrell!s cto tow aa sensand Joe Harper+-up a band of e-r were happm1twonGloriousbwas in a failureWAit rFT&, encx ! i!seI-e&t! aeatestBAin tabrld (aT!/ed), Mr. Bento actual Uniteds Senator, prov overwhelYQdisapXBment Gwenty-five feoqgh, nor +Q anyw;neighborhoosrA circu qboys pl"J @#  in tentsof rag carpetAadmi ,@2pinOB;two for girls#ens. A phrenologisa mesmerizerI3wen1lef H8_Udrear "evf>=BwereUeCAand-'(1es,jDthey,A fews6so $(Bonly2 the aching voids between acae hard= Thatcher1gon}bher Co_ ainopleat!Bher ks } bm1sidaElifeP.dreadful secre*athe mu  chronic miseryєaR canc^ q permanX* 2aingnmeasles. wo long weekl Mprisoner, dea}1andw"Aings1wasQ ill,;O !no3. W2cgot up aU3andafeebly{-$"!achange3com./$"nd2 cr.rb* "revival/0 had "got *1n,"{Bdult"thyLbbhopingsst hope!1e s$ of one blesOQinful"- A cro(Ahim Qwhere9Qstudy Testament4Rsadly9- "deng spectacl_  Ben RogersKvhim visi6 #ooca baskBractE!huup Jim Hollis B calLs]KK{2ous0ing of hisA 2 as DningSboy he encounti!ad2nother tfV Aon; 1hend ion, he flew for refuge a) F bosom of Huckleberry Fin! bwas re+Scriptural quotjirw_ re crept!an!be"2lizat he alXA allw!st4and .%Bnv=&st:Adrivain, awful clap ]/blinding she81cov!the bedclothe"ai! a horrosuspensehis doom; not the shadow of a doub  is hubbub was 1himrSdQtlm!thtgbearanowers aboveMQextremitp Bendu2h.i the result have seeme1him!st[ApompiRammunp Ca bu3a b(of artille+;b incongruou' E3 up+n'2 asrto knoc+ Bturf! insect likeB. Bbtempest spent itPcand diQout accomplis9its objectc boy's bimpulsgratefulreform. His +EwaitC"re>bbe anyDsK"dadoctors were back;w4hadd 3 heU!baO!is2!%an})ge . ehardly4D1spa#"reing how loneWQstate companionlesAforl@oPdrifted listless Btree+p41 acuqas judg a juvenile courr1cat her victim, a bird and Huckup an alley e@ a stolen melon. Poor lads! they--tTom--ha7E SI ATkhe sleepy atmospStirrevigorously:3e trial4k!betAsorbWtopic ofe talk immediately xyBaway$itArefeQO ; sent a shudd his heartroubled consc i[5LQpersu2himBthes#rkr!pu tqas "feelers";1seen-Rld beaqof knowz n -  Fnot be comforc2ae mids, agossip1kep(rshiver e"Hu##a 1pla+!a Sm. Itb QreliedbunsealAonguwhile; to divide)iburden[l87r. MoreoqBhe w/to assur-m discreet. "Huck,1you" told anybodh--that?" "'Bout wYou know." "Oh--'course IZ"n'Never a wordLAsoli2Qword,|Qelp mat makes you ask:qWell, I\ aafeardbVWhy, ?B, wen't be aliv$1dayQ #go out. YOUt2TomWmore A. AfnQ pausnQ5n'tL1get!to\,"Q they"Ge[!? !if half-breed deviLzF me z) gO$y ain't no diMn>Uthat's all(!&n.twe're safe %   we keep mum. But let's swi-1gai1ywa'!Qsurer}I'm agreeS# ry swore? , solemniti"%S talk,yQ? I'vBrd al " "Talk? Pit's just Muff Potter, $the timepReps mg!t,tant, so'sd7A'ersT{"ju9+Q samebgo on p reckon he's a goner. Don'gfeel sorhBhim,AimesqMost always-- *raccount thfA don %ur. Just fis 4 B, toSoney drunk onfSloafsFiderable; l-!we2do |MBwaysu&of us--pr s <+Blike@!ki?PE--heBahalf aB, onre Krn't enough4 2two"lo eEQby me?sqof luck!meBkite"me,knitted hooks%o my line. I wish w"geot$u" "My!&"n')W. And besides, 'tn't do any=;'d ketch{ AgaincYes--s>aI hate;ear 'em abus2 so the dickens6"he/fI do tooL)I[2say&toodiest i ip n !!an ver hung befoO1Yes=y+%7~Qif heK)1frery'd lyn^A'"it'" The boys]"aQtalk,Csit broum1. A# twilight drew #ey themselves ha6 * leAisol80Ejailz=an undefinp8d; z-m!clow;!irAicul+T But =eno angels or fairies i! tYss captiveAboys#\!ey~Qoften%!-- AcellYring andk qtobaccobmatche-;n gBfloo% rno guar"isl2tud /Qgifts Q smott!irL "s --it cut deep,lx@ 2cowASand t!ou2the Sdegreaid: "You've beenQy goo1me,--better'nw 1elsthis town1I d+forget it,Q. Oft1sayrmyself,I, 'I us\AmendMCoys'.Bings:Ashowfishin' place01befD4Bat I1 2nowjcve allaB oldthe's in92TomIQHuck b--THEYP)" '5-!them.' Well, "eBwful$"--and crazy  #--w athe on*1y I!un2 itnow I go:Qswingxiit's right. RighABEST, b--hope  we won't4at.! make YOUl dbad; yCed mh<say, is,p2YOUG !--m 3youSStandR er furder west--soSit; it'smBAee fw"lya&C5 Aa muP Rtf1non$ ae heregyourn. Gooda w"--"ly. Git up on Hother's backYl touch 'em. = Qit. S}`qhands--}1'lln1 th-Abars mine's too big. LittlBweak--buyQ 3lpel ^ 2shelp hi*.iy"."!home mis CnBream#full of se next day{e fter, he rt-room, dra@. irresist`,(1in,tforcing( to stayF| 1hav (1qy studi~a avoidpL"ch4FKTkelet !atdD Now,7#A us t** b--telleown waEskipp,h+sbegan--}AinglRfirst"as"rmtQubjec f  easily;ln! sdceased buP own voice;&ixAhim;qed lipsbEBhung!higads, ta]\no note of"d, rapt1ghaCR!on 1ale#q straina pent emoq q climax 5boyJ "!asdoctor fetcheETboard+"ag fell,@Cjump-P?1andCrash! Quick$Cighte}%Cspra|aa, torem1alloAsers gone! CHAPTER XXIV TOM1a gring hero onc>e>%pe2old-Aenvyhbng. HiR eveninto immortal prin;* paper magnyhat believe be Presid Byet,  * . As usualfickle, unreask9s % to its bosomBfond3 Alavi@XRas itb} !&Bsort of conducO&o"'s"t;fIp'#noJto find faulQh it.!'sv: of splendor and exul2 J2hiss were s?.  infeste=s Ddoomz deye. H!y aUcould', 1boy"tir abroadafall. Poor HuckiH 1samI"wrrand terror "ad*p7!ho!or* Awyer Qgreat V 6and4sor01hara y Jumight ldnotwithsta_A's f!sa!im+QZyq N.#4afellowDhe attornepromise secrecyqwhat of? Since }Sharasy![2 Bdrivp%c c'&Rse bywaad2lip ^been sealnsdismaler;most formidab=aoaths,a's conchuman race`well-nigh obliteratcXDaily2'"1madA gla\0Rpoken%!Vly he wish%1up " c. Hal"imZS nT 3be dVa othercY@ >+ He felt sure heMbdraw a+again until1man92dea,y@ Rewardselvcountryrscoured"no2 Jofound. Oose omniscind awe-inspi^marvels, a detective,1"upoSt. Louis, mo"ar@S$shhead, looksort of astouQ succ  3sZb craft!lyu=!ev1at ' say, he " a clew."n you can't hang a "clew" for#soZoEgot ]qnd gone8. s-63ure3was,. R slowdrifted obleft b Cit a"ly qened we"of apprehenV THERE comesVqrightly{1tru+26_)has a rag1sirrgo someqand digRV}1sur3is 9suddenlyU3one{e sallied+R Joe ~Bfailed of8. Next h<;!a %gwTtumbl@FI2FinRed-Handed." qanswer.m3 private-#op$e matter to >{kbtially`*Awill>  o take a hanwy enterpri RferedBtainnd required no capital a&u superabundanc)Rtime r rmoney. 'll we dig?" sair. "Oh,5.Uq." "Wh%D i[ e?" "No, inde  /a. It's-"in=y bicular5 --/ on islands,Atime@ rotten chests!envaa limbSn old@Bree,0c;falls at 1 mo aQfloor) ba'nted0Who hides iWhy, robbers, K urse--who'0? Sunday-school sup'rintendentsXIknow. If 'twas mine I Cide it; I'd9!nd1 a _&1o;1 I.l"do!XUf and leave it "ADon'y0Cy moA!No y)k,w$B#qy generUQforgeT 0q, or elJey die. Anyway, it  t 1a l "im gets rusty;!by- !bycbody finds<yx  Xtells howAthe 2--a  o be ciphCovera week because it'stBsign hy'roglyphicjaHyro--H"--picture>qthings,]Qknow,1seeTmean u1Hav1d got o"emas, Tom|!No0Well then,: Afind #61wan^ esbury itas or on a"ea t0Eat'sAsticTout. *!'v ed Jackson's I}iwe can tQagain/R timeSy' -1 up Still-House branch,=qlots of-StreesnAload1'emI#ll Htalk! NoTA81ichJ1forG _1'emI1Tom/6#llll summerf 2? SI#a brass po-a hundred dollar,"llAgray2 fudi'monds. HowaHuck's eyes gX1!bubPlenty4qme. Jus R gimmM Iand &noT" "AT8~QI betI:k!foff onDb Some 'Qth tw3Rapiec"#reWaany, hn2's <six bits oHvaNo! Is1 soCert'nly--anybody'llyou so. Hever seen on5E!No7I!nOh, kingsA sla|$S_"no5$I reckon@i!if3wasto Europ!'d.Qa rafr'em hopGr b" "Do1hopBHop?_-u grannylN2say>1did CShucks, IJ1ean'd SEE 'em--not V Yto hop for?--but IRQ 2seeV3scal &, 28$ aBLike!ol]pbacked Richar* 2? W_2his,Q nameRHe di'ny"1. K!but a givenIN!Bu.yiy like it-R 54D,Xa niggeroRsay--t Eyou  1irsn< S'pose we tacklj ) hill t'8side ofjrI'm agreea<got a crippled pickea shovel1setwir three-TtrampV*"hoCrpantingE]/7T downH2shaa neighbo!elq#- smoke. "ISthis, Tom. "So do I 2SayP$weCtreaF#re 1do 0your sha ZBI'll3pie5MU 3oda2day1Rgo toV&fSlong.0aQa gayrnbsn S sa"tod h AlivebM1!byy#OhP |any use. PapY CcomemFo thish-ybwQR2 daR\5as clawiIurry up,ZIjhe'd clea3out pretty quick.tn$buy a new drumua sure-'Whearts jum8ao hear[strike upoFyb"$#ed3dis <+Aa str a chunk. AtDE5Tomv -rxrbut we CAN'T b&. We spottv)AshadX2bo a doI$tF1the6re';"tthat?".wpAguesoyH Menough i1too5> or too earlAHuck 7ped .tat's it9Ahe. !'sDveryLLFaone upBcan'| 2thea1sidL$is` ',8C%Y#ofy%> ;2 a-fluttY&Zbafeel aP$'s!mNZ;'AfearTCturn)%uz'V front a-<Qa cha I been creeXAll o1ever since I DBI've=smuch soAHuck6y mN put in a de&# why bury. e, to lookGLordy!" "Yey3 7If !toRPpeople. A h1s b!toDintoQ'em, "L" "r2stiRMup, eitherjf2onet! 2.Akull !ay" DCTom!2wfu"it "is^U3a b,QSay, <lp~ d"trARs els?%,  $weY 5bconsid|/;dJ:The%. G  4s.c 're a dern sight worse'n  D lVN,lyocome slid rshroud,nUnoticApeep shoulder3f a:%!1griqir teet"Ra does. I Bn't qsuch a NPa--nobody 1Kt2but, dUtraveU 1 heu_! 1But <{#goCYthat fA norg 4v emostly M J#go5 Qa manaen mur, anyway | E"erODseen5 # except b--justLBblue'Rs sli& q window regular Gsl![Xflick5acan beu4h!cl~Qehind Irs to reason. Be1any2butAs us<pEDcomebP`f, so wl!us3our?7a<W$ df^#I it's tak@A y(qstartedffhy) TAmidd- oonlit valley bel[em stoodR""M&!, 4ly Ra, its S=s*ago, rank weeds she very doorstep chimney crQ)qto ruinq  -sashes vacant, a corneraroof c/!in1 boz*, half expectAo se. flit pas%Qindow n1ing 14 as befitte8 b:m y struck far of\Rthe rO Qe haua wide berth A*qway hom. r,Boods6 earward si_j Hill.4VI ABOUT noo$ 2 daNgG4tre=Ahad ffN"ir$Q. Tom impatien#go ;( Qwas mAablyc $alC%ly Lookyhere1 dowday it isbmentally ran%$V3eekhen quickly liftedG# a2led 3m--WI0once though,iE\un kKrR it pE conto m` a Fridap   can't be too careful8 A 'a'  1an scrape, :ing2Won a z MIGHT! Better say we WOULD!"'slucky days= $"ny BknowbP1YOUf2the:f 1it ;AHuckRn1said I was, did I? AndT all,.O_d a rotten bad3msdreampt1rat"No! Sure sign ofB F"ey{s'NotCgood% WL d*1ign  G,-2. A-_Udo is  by shark Zi Cdroph}5to-{ wplay. DuRobin Hg Who'sqWhy, he greatest m"evrEngland:the best. HGca robb Cracky, I wisht. Who did he robOnly sheriffs bbishop Crich2 RkingsR=9Q But naver bolloved 'em1divQ!upx 'em perfectly squa-h2'a'r Sa bri I 3youW[!Oh9qhe noblaaOT"R was.!men now, I can1youN R lick-can in ,a one he4iedD Ahim;NhEAtake!yew bow and plug a ten-cent piece"c, a mia3s a YEW bowIM /t7w, of cours.d if he hi| Bdime`Aedgepould set aand cr(2d cOB'll play!--nobby fun.AlearQF m% t\dfternoon, nowmy1casQ aa year=2eye#up qnd passs remark .1orr+prospect9Iibere. A5suna sink sey tookEway 5 aathwar| cshadowN6e,soon were buriAITsight8H(- Y On Saturday, shortlyV^  R bHnT4hadd&Ua chaCshaddEGir last hole*;]great hopeaGmere<oIqcases wz "pet#ad )(upafter getting down~qx inchep Y-O an some d1! aqand turZJt a single th{bshovel' Afail !isO a, howesDc+ BwentTfeeling jvshad notEds fortunehad fulfillep requirements <%of<71-hu(6. Rreach T 1{ so weirPv grislyBsile at reign^Rthe bAsun,{ bSdepre$Cbelines!dem"io he place[(3fra,# aHM Qventu7 ty creptD#do?!mbp_VT aw a weed-grown, floorless room, unplastx;aan anc CfireVs, a ruinous staircaser#er%ud hung E#nd abandoned cobwebsn#tl73ed,MC ened puls,s, ears ale\BcatcYDXRsoundAmuscAenseQready instant retreat. In a+Nfamiliarity modTReir f Qy gavm,Qtical#iYsted examinC, rather admi+[bown boƑ Qwonde"at it, too. Nexk1up-+isMqlike cu]!goqdaring ; =! abe but I&!--L,=Sto a 02and scent. Up\NBame 53qcay. InpJoC a@d mystery"qa fraud1 inCr courag4xwAH4n hM Lo go down and begin#1hen}BSh!" CTom. is it?" Huck, blanchingrG!..re!... HearDa "Yes:#y!(!run!" "Keep1! D you budge! 're coming p! tcr 1doo #stC./Rfloorto knot-hole!th bushy white whiskers; long hair flowed from u!hiRbrero dGe green gogglesec7'Cn, " Xa low voice; @#sa gr$Q, facAback{sthe wal12the=er continued ^ s. His mann\less guarF{0words more distincFLproceeded: Q, "I'!it oB 5andi,& dangerouDR!" grTthe "e dumb"A--to#svast su?boys. "Milksop+2his~ 2gasQquakeEwas O!'s +<!swag we'veAleftr--leave it( &'v !'B. No2!o i.f!wet south. SixfCmDfift5Qver'sDto carry%eWell--#r EKG m No--but I'd say(j2 us#doe9:Alook; it may5(" bTI,6!e  J!! ; accidentsi !B; 'tY$inu2ver9;i6f%l[+qh+qit deepDGood idea !thrRqwho walv Qcrossroom, knelt#, gv"qhearth-/atook o9A1bag Q jing?qleasantLe subtracW9Qrom i0nڼcthirty#Dcs for G"as+6for8e latter, #s <,(Q8owie-knifeUforgo<,bmiserig$an@. With gloaq ,A mov7q. Luck!f splendor of Qs bey%sll imag+!qETmoney/Ato mcalf a dozen rich! H sd1theaiest a !esrNDabother uncertainty as to w44to }2y nudged each ;--eloquent)r easilyRstood simply meant--"Oh,you glad NOW we'rbB!" mVTknife%Uupon . "Hello!" C he.?2sai4Calf-e"plank--no, it'sy!x,4Rlieve1--b`!w 2see<Kfor. Never mind, qbroke a3 [2hisWbin and i p3ManDU  rhandful8$ingold. Thejb abovebas excW cmselveY!as delighted.NwRquick4Bv$ban oldM24over amongst >#)5sid"a--I sa5#a 74agohaX|iaBoys'5andn X1the$b, look5ly, shookUA mut4 toM3  5use5Abox aoon un$edXA not *R larg!#wad2bou:Bbeen+dstrong5the slow>s+Qinjur c|5the" ain bliss3. "PardrthousanL Shere,p. "'Twas alwaysX Murrel's gangCQbe aruone summer,".stranger observ53; "vs looksPHI2 sa* sNow you $neRjob." Ʉfrowned. Se: "You# me. Leasx&k"lla A. 'T@ robbery alv\ REVENGE!"a wicked R flameBhis GR"I'llyour helpRBWhen finishednn Texas. Go homH<NT#anK3kidM1b %0$Sell--Bqsay so;ew  w dthis-- k Yes. [Ravishing overhead.] NO!- e great Sachem, no! [Prof[distress;1I'd---at least4 \Smean =but Tom, si%1nlyhad testifiSVery,mPDfortBAalond! Compan!be a palpCimpr5, h . CHAPTER XXVIId adventur4"ayily torme RTom's5s . Four times hE!s !atSFnd f6ait was:rhingnes5igers as  !hi wakeful4bEfAt bae hard realit'Fhis 1. AClay |AmornO(1ecaincidentsJND, he noticed%~dseemedL4ly Hand far away--someD ;3had#tworld, MfAlong " b3 :n i5him u itselfa$3onetrong argumentW Bavorj is idea--namely,sc quantDcoin2fAoo vkAreal Qhad nTseen !as in one massShe wa1all "ag"st in life,&Aimag= call re\Os7!s""  " were mere fanciful formCaspeech Zno such sumP qlly exiEpposed forf w"so= a sum as a 6z be found in actualy one's Ԁ" Ianotion treasurbeen analyze.yxy=Ansis 'a areal dgand a bushel of vague,id, ungras{`A. BR^K"en Ssharp!clearer (Vattri !inTAthem?h so he"`1himk1leae(impressi6q#no2a dream, a )isQsweptg:~ snatch a hurried breakfast!go2fin.ik e gunwalB a flatboat, listlessly dang+2t !ee3"atbs2ingamelancholy. TomC&2letslead up@1 su e did not do its1be 2q `o!xEGelloylf." Silence ab-om, if we'd 'a'Y 4lam' a"Vtree,0!go D. Oh$! 1fulF $,Somehow I most'x. Dog'd if I ." "What!K%Oh6ing ).U"en"QDream! Iymss hadn' down you8)1how  Q!xhf%Deams|2allpL#--()[tch-eyedZ 1sh l4 gom*!thR 'em--rot himm1No,_a. FIND! T /1Tom#llXhim. A fellerq ~3one Q for a pile-- a2's lost. I'd feel1ry shakysee him, anyw+qso'd I;2I'd,2 2z#'Aut--&s < 1--y95N'Bthat2&7/!ouAit. !dofreckonB"oQtoo d62Say--maybe inRs$'"Goody!... No, rRain'tfv5, is one-hort!wn3 y=#noq,@so. LemmkKS Here r room-- QavernQ know;Qtrick s3two?s. We cansout qui You stay hereU,zI come." DAoff c1caracHuck's~rbpublic#s"as G!an hour& EbestNo. 2 had# a young lawyutill so-. In the l&astentaa housek! 2#a 5 -keeper'sr2son  kept lock$)ll3tim82he 4sawq go int W!or}(A exct;Ymny particular reason> x1gs;Er Come ' BsityD8bfeeble98wVe6r by ent"Ding % ae ideaC"roG "ha'nted"e  r a  !re[) BwhatOYD'Kvery No. 2"$af&/Qit isE$. ?C youqQto doNE_(ngE2tell yous$do "at" icomes out J1los )ey e!a3?Qtrap Jbrick stor"`qet holdmdoor-keys1nip-of auntie'=,Bdark'"goS ry 'em. And mi,n, because he E#!to/|2tow 4spy 3)N#a "to 6youjyou just fGQ him;_Rif he 2 go >"1laca"LordyI !fovhim by myself+hsit'll b%", ov"He\Dn't B youRdid, b4he'A any' "ifU8n. 3o-- 1YouE<cBdark!. 3'a' out he coul f< #ber,&DOCs so{1; IP, by jingoesw"'re TALKING! Don'7|bweakenaI won' sI THAT#1TomQILy hung a e neighborhooo{nine, one watch52he PAat a ="K1thePdoor. NoF"orN Rit; n%aresembp2the 5ard=3te#Th promise]`fair one; sowent home`rat if adWAegre,Adark1cami AcomeT"maowupon he would slipthe keysE aclear,XmAclos2s(Tretiryan empty sugar hogs0welve. Tuesdac/&amE. Also Wedn/Thursday bbetter8"in$.sf0aunt's old tin lant 6 Qtoweldrlindfol 1ithh? <1 inp-'s began. A WB mid#v!upB2its1s ( !s 'd"s)!pu)*%02had Eseen+Dhad / }b. EverrV,3iou"Bblac5of SreignA peruQstill#waVbruptedby occasional/)#ofAt th<ggs1liti n~,=tl: Bowelx&wo2rs D A glokw>y.stood sentryrTom fel3wayZTjz  !of8ing anxiety$weighed iga(a mountainh$%sh?ra flashH$ C--it.f"en!buZO6ell- alive yet. I4s1Tomdisappeared. Surely"us Ded; &A was7`+!rtQaburst #D'Band ,G'1 In4auneasi L rdrawing-DrK a; fear rdreadful ] $/1ari1pecm0some catastroph 2Atake 1792not&to,]$heUable to inhale it(imbleful- TK$ar Athe beating. S1Tn"ofh%tEby him: "Run!"he; "runAyourt!" He needn',Q repe drit; onc ;#mairty or forty miles,RrepetCwas -3. Tj!tor  "J1sheʁerted sl#1er- e lower en/the villagxa By goin its shelter]Sstorm xrain poubwn. AsxJ] 0AHuckwas awful! I t3twob keys, aas sofI R; butsto make of racket=rdly get myRso scBT1bn't tuVck, either. Well,?!ou.Ticingkboing, I tookcthe kn!A ope@e !H&E@R! I h1in,!sh5fP, GREAT CAESAR'S GHOST What!--whatQ'seo1steFonto's hand!" "NoAYes!A#Ras ly s%asleep oARfloor4?Aold 5"ey his arms sprea[d1did Tdo? D0Bke u91 budged. Drunk, 2. IjUgrabbBAowel F+usIX'a' thoughS33tIx. My aunmby sick3alost iM A"Say,1box!diw@o_00.-}44 /8 .:ea bott|Sdtin cu 6 by(!; I saw two barrelslots moreUs S.u2now'!Fmatt'3at R roomTr!it mG o1ALLaTemperTYs have got aeC, hepd[3Who8u? But sAnow'Rightyt 1timg&ifqb's dru""Ithat! YouiQshuddIEno--"nom5And-B not3. O1  alongsidf, :u'< three, h  -&@oaTp*for reflectioZ+ S:38oky82les#tr 1 an#e}wwcR Joe'5'reQscaryhw eSnight# bp"su2 go  "orbwe'll Gbox quicker'n nJV<the wholBlongj%ido it 1too3you"<Ather4$"A= bill. A.v!to{"tr0Hooper Street a block EmaowWRthrow:bgravel=e0 3bfetch 1T"Agre01goo'Awhea*B"Now,  T's ov*bgo hom2gin" , %Qcoupl" +2"go61will youe!I TJ]t5#Ryear! Ev "damF&st2allIawooo[nǑ' hayloftZTlets nqso does pap's nigger man, Uncle JKA toteex  B wheahe wan`" t}JA any I ask him QzQves mGiBsomeBto eWhe can spare  !ik\r, becuzP'[" aL Bwas 3;him. SometimeQset rdeat WITH/1But  A body'sv!thwhen he' sr: 1n'tBas a steadyd-wXK,q"le.?A com hAS's up2'!, Cskip, @*."*IX THE firsR1earQ4QFridan glad piecnews --Judge ThG's familyL*7- before. Both 9o &Bsunksecondary import, and Beckyv the chiefCboy'="esSsaw h%tad an exhausi&1pla "hi-spy"c"gullyu!" $da crow2ir S-mate1day^scomplet[DRcrownsa peculi9satisfactory way:!ea[Aer mK to appointnext day foUlong-z1and\-delayed picnicfshe consentechild'>boundless;,Xore moderat.R invi*slAsent^s sunsettraightwayA AfolkLn4Ra fevapreparu(bpleasu6qanticip6's q enable90" ap dntil aQlate houh%%:vt!ofd1ingO4's s!an(ahaving to astonish1nickers with,2; b\3was$"oiNo signal c'vC. Mqcame, eBallyby ten or eleven o'cQ giddq rollic!c;/!ga  4_s -ro.UQustomelderly peop2 ma#;p$*!ce2ren@sed safe R unde9AwingAa feh"1dieeAe# gentlemeqtwenty-  sreabout1oldqm ferryboatQchart;t7! g<.flJ9r main sg Cladeprovision-baskets. Sid1andato mis/ fun; Mary remain!hovBtainT9nTMrs. 6 "tob, was:d7?oBback lIaPerhap H Astay   eRgirlslive neah"-lQ,c !y aSusy H,q, mamma+AVeryO. And mind !bey%yourself3bmR9T." P,"trQalong` 1: "Say-- 2you8 ntQ'Stead 3Joe2's *SclimbE!up AhillDstop` Widow Douglas'. She'll ice-cream! SsoJ"os Ai!--|+Aload8"it4sH#be t&!usg"Oh[ K/2un!?=nC%ed3But2illA say How'll shH6Rknow?^Q girl!edidea over a1r reluctantly(it's wrongK3--"shucks! Youg ! k REo!'sQharm?_sN1nts[!hao '"Bsafe4I b 1'a'" 6if IAwoulT splendid hos"itaa tempP 2baiand Tom's persuas02car+S q. So it>u Qay no? anybody?t 's programme. i1 itv(!rrJM)^7+''XAgiveZ ;took a deaV%s!ofAs. S"het&I"tolmfun atAnd why sh1he 5!it: h"qsoned--/c! W, so Ti2mor l^>o-night? T6QrA eveV 4out6theM1, boy-lik2 determined to yiel +5Aclin Tnot a{9t Qk of 0ox of money5  day. ThreeVbelow >EboatayAmouta woody hh& 1ied|3The* swarmed ashoreAorest distancescraggy hxs echoed farQshoutDand 95theØ1get!ho " Egone=y mry-and-barovers Sggledao camp31ifi th responsible appetitesVt destrucHJ" "L>2 feoC!reBFFing ( 2resbchat i2shaspreading oaks. BAsomef[ed: "Who' the cave?" Ever!wa5$. b of ca \Bproc   a general scamperhT+x0' hillside--an opshaped likO A. Its mass׎2ake&& !unbarred. WK small chamberM Aly a2ice" w0by Natur% solid limeston w 1a c& rweat. I1romJmysterious!t %erdeep gloom/look out upr!grKC'"sh--""un?1O6!ve!UDly wore offdQrompiDL2ganjIcment al]  Frush2ownit; a struggugallant~f1ed,62ursoon kn)/or blownlad clamop and a new chaseB3allQ havex(ndlrocession (!fiv(eep descenW4ain avenue,p!fl0qing ranGOVs dimly reveaYf!llqrock al5t1ir er of jun sixty feet overhead. Thisnot more than "en?Cwide?&nSstepsy%ill narr crevices bran@!from it on--for McDougal's`Rbut a%D7imepqraft.  blready.w's went gliW# p a wharfCAhear!noise on board(   C3as $usually are whornearly cto dea.AwondnQwhat 1de:Rstop w<<dropped her88'put his atten *rusiness`Bclou dark. Ten eKf vehicles ceased, sca) abegan ,#nk !ll 2foot-passengerkp |)1 be$itt)l <2lef| = qwatcher qthe silae ghosts. E  Swere /;/ Qevery$A$it1see weary long 2:b)u3},ed. His faith wasB4bing. Wvy use? "reA Whyk)C? AFfell~"ea;&l U instantQ Bdoord*^Tprangqx8$ Ti two men br,%onW- z Runder!rm0 ]Cbox! So sto remoE.Bcall Tom now?Ibe absurd--1en  get awayq #$anc7EDNo, c stick1!ire!foAthem<k5truP for security^discoverQcommuG3Rmself#*!ut Eglidg 2beh!e men, cat-like,qbare fe~!ll_E the8*5far&!noqbe invi  y |GP q blocks0n^ left upJ2ss-8y?"E,!qcame to% !pa}1Cardiff Hill;5Ctookfthe old Welshman's Whalf-m(hi-1hes!ng Qclimbward. Good, 5*VSdury itold quarryC) "stfa &-3on,b summixy plung.T7 1run 1ook whe pistols wekf#I Astop$t..Scome now becuz 7# 5it,7 ;I:lF3 I x1wan7runo}m devils88! i,2 deUph2hapAdo l?  Byou'aO1a--but +b's a bM!e2you:Ryou'v^Fyour=A. No"y U Adead--we are sorryC|#atCee wiqright w!toq#ou6 Rm, bydescription #weOaC = !we?RfteenTnAm--dis a cellard2was(sn I fouE sneeze. It wHmeanest kin16!lu " t3o keep it bp use --'twas bjt!it(#I iR lead/ 2my :3theR star-ose scoundr Q-rust*6! pbI sung"B'Fir!!'cblazedtt5he aqwas. So".  2offrjiffy, svillainwZ4N  a%oods. I B we eatouche|mydgAot a y4  bullets whizzed bdo us any harm. Ak!we9 the sou$Tw at chas2entS }!tio5_>ctablesgot a posse fH1offuV R bank&Cit i+qsheriffaa gangE bea8}"My}!.\XAsh wz"A sor2 ose rascals2H uadeal. But you cy  dRlike,euY2ladQpposetOh yes;JAown-(and follc AthemSplendid! Db2m--d BOne'B!olfdumb SpaniQben a*;once or twicQt'oth[sa mean-", VTP men! Happeng Dthem1R back2one 2andoQslunkR. OffAyou, 8ellfA--ge to-morrow Y Y"2depS!1. A__qe room   : "Oh, ptell ANYbod bR! Oh, eAG_ gByou -N%credit of w:1 di"Oh no, no! DVA!" )B men g  o said: "T2 7w Cwon'B2whyoia#n?  explain,!tothat he al Aknewn w"on3 Ahose!+4manUv 2anyHast him Juworld--c& for knowing it% ?d secrecy3morW1How&se fellowsA? We!ey Ding &usea!t #ramed a duly H rep -S lot,--leasyrsays soI5see)ragin it@ =much, on #!inx }3tryQstrik a new way of do7"ay u ' I,BleepQso I r  up-street 'bout midf a, a-tu~fg - AI go old shackly brick store by WP1, I3 Red upO%ll#2k.  %bcomes fQtwo c B"slf0%lose by me,+1unddreir arm'( V y'd stole1OneAa-sm3b one wah, !ri.s\ !me"igACt upBfaceIy og 1ig - eA, bywhite whiskerQ xT `ua rustyo a." "CmDrags ?Cis staggq5forA !n ?5Aknow Qhow i#msCIQTJy o52you<Fb'em--y eiO&to| awas up8y sneakedsso. I do$!'4+1iddDstilG& $ d:# JgVe begK%heX swear he'd sp;rr looks'as}2two  What! The DEAF AND DUMB ma8ia4at!!'aderrible mistake! H63his.jC Ru>sthe fai+i2 whNK smight bQ1yetdtongue/0@$to in spitball heFr do. He several efforts to creep!of1scrape, R's ey 1mh["bl5 9. P  ,be afrai!me 6 hurt a hair o qr head v3=I'd protec !. 1 is ;#leAslipout intend+ D. up now. YGEthat4 K q. Now tAme-- m S it i"3 -- a betra Alookit!ho51eye Qomenton bent over 9ear: "'Tab--it'sO'1 Joz ) gjumped chair. InWQ 1ll ,pe 4you{m#2ing#and slitting noses2wasown embellish 3men3tak1sorYrrevenge\"an #! a different matt242q." Dur7B&:alk! c Y 1 sades (h2hishad done,_ C#!d,^a7eqexamine,its vicinity AmarkP Qblood11y fnvut captured a bulky bundle of)Of WHAT?" IfqBwordBbeenn 3hey leaped withcqre stun0O!5AblanBlips]!-were star1ide3Qreath$ended--wao! )tarted--st?+in return--1QRgs--fiv1ten%!end i<f burglar's toolsY4,G' bMATTER sank back, pan5deeply, unaEably !eyt/m gravely, cur!V--and= NYes,appears to relieveB Butcdid gi# 3urn9!YOU expecBwe'd2?" a \H a inqui *Q havenfor material$ aa plau4#-- suggesteR?elf|!boadeeper --a senseless1y o~dK^/!noq+ to weighiokventure he c it--feebly: "-+T books, maybe." Poortoo distress!sma Cqed loudfjoyouseb detai$.Ratomy1hea Bfoot%b by sahat such armoney in a- pocket, q it cutoctor's bill likM Aadde!olG!p,y2re Z !a5Byou awell a bit--no wo8aqf #of8 Z'.*!ouit. Rest6Rsleep6Afetc2all_#brritat<6 heaBgoos!ed{! a)!icM!esf"aroppednBideaarcel b%.K%2Avern]9. c talk 3XW ahad on%rought i3"nod however "ha"kn/ bwasn't!sot%a qoo much:Helf-w!Bu![ 4'2gla@. Shad hnt!no4 beyond all qusnot THE,Oo mind was at rkexceedingly comfortaban factC Q drifbjust iD dir_`Anow;WA musw ;) in No. 2 zy!ilybat dayhATom a seizeo3golS \1out !or fear of interruption. Ju# pYea knoc9#l ` 0 hiding-"noX connecte!n remotely1lat admittedtRladiev gentlemen, amo*Widow Dougla Tnoticngroups of citizeny bclimbi2the hill--to 7 S\Qnews xBprea h(h the stor$Z'he visitor#gratitude"erbrvatiooutspoken. "Don't}a# it, madaGre's]z"'r beholdeQthan -Tre todmy boyc#he ballow Atellsname. WAn't ] v2butim." Of $&uriosity so va|"be1d tV#in )twa to eaAvita'mm be trans }Dtownb refus"BpartjCcretorall els> qlearnedO  I "to% rJ9"ypV8a noise L#Rake m:rWe judg0j2worMgQle. T"dlikely! !--Shadn'CoolsBao work pAhe u1 waGbyou up4carDR? My BnegrAstood guard sr houseeLmk By've`ack." More!C cam"beD,aand re G couple of hours more.G tSabbath d 1vacecQ1 waVly at churchQ stir1Beven` canvassed. NewV#n Dsign5two! 5yetA#edthe sermfinished, Judge ThDu's wife alongsidRMrs. mZQ as sI6ved1 Qaisle;-BcrowqIs my Becky>all day? I !edhB tirQdeathBYourS(RYes,"a;!tlp Sok--"T"sa2youIQnightEE/!noa kced palh$sabba pew,as Aunt Polly, ing brisklwa5pG by.64qGood-mo), A 'got a boy up missing.o1 myD!st Qlast !#--7you. AndY $'snvtto sett'q  "he H andar than7d. "HeB$us(`b, begi !to uneasy. A marked anxietCc's face. "JoeVSK?Y1No'b"1didqsee hima?" Jo="wa!su7 "ayWQpeopl amoving %ofWs}3aloD a boding Aines&k 1 ofzy counten\'of!if  .!On!ngfinally blurt2his  !we4ill Zcave! swooned awa f#Ao crrringing'Bands alarm swept/lip to lip,Agrou 2to ithin five minutesCbell fwildlyN6he "upF/EJ insignificanD<xforgotten, horsesaddled, skiff4man !!rd#ou1bef{nDrror was half an old, two h)dbcere po6aighroaA riv gC. A Blong091nooge seemed emptydead. Many women (ed9#anPa'q They cC)2too"wa/"l N;z#. tedious022ews/>wA dawqt last,   was, "Send candlesrsend food."4wasqcrazed;L{, also. sent messages! p encouragVtWaonveyereal cheT3 ]3h4'BdaylpQspattRwith -grease, smeTBclay Bworn7#HeJHuck#behad been provid%3 hi"Adelic feveruhysiciano4allrcave, s  ook chargg "ient. She ! s B herb4,'ahe was@Q, bad;7%in,fBr Lord'sKu !R"a \neglectez"aik good spotvQ-`"You can depen(>2at'xAmarkdon't lea9Doff. He n3does. Puts"2ome)0$on"re\Ccome(Bhis TA" E AforeRparti3jad Q ctraggl< bGllag strongeswEthe qcontinuxAarch gBnewsbe gaineBness]7edhansack71vis;Y S cornAZ ,o#ly#edCver one wan4z"pax!, [wcseen fE hit Bdist@qhouting0-shots sentr9:)1berrthe earthe sombr Qs. In&ar1sec21usu. rtravers/rtouristI7s "BECKY & TOM"DbtracedbRL=2cky'#Csmok near at h =1-so!biqribbon.   recogniz'e%>4hover ii7crh. !ofiAno omemorial )@be so precious Q this parted latestqliving h*RawfulpV! c.3SomzAw ann/a far-away speck ofzWglimm*&rn a gloKDshou)~fAscor'men go tro:1dow echoingz1aa sick; Vointment always f!e  a 0 donly a2r'st ree dreadD2^ 2s d#0 ]% jt # a hopeless stupor. N 0_;accidentaly, just made,groprietorS ++Tiquor)premises,qcely fl3  public pulse, tremendou)1the 2 wa5qa lucid%Rrval,lasubjecta asked--dimly 7" worst-- W.! Thd sinceaEill.p.h "stSup inr#bild-ey1vWhat? W)$Lm;lace has shut up. Lie dV! a&&+!me!" "Only02 meQing--&one--please! Was it Tom Sawyer TT burse>"Hush, h !Byou 5 must NOT talky'Bare very sick!zAn no5 bu1rF t powwow if i the gold. Sctreasu2gon Ugone MmJ$e bout? CuM +@TR.2houoD1dimu/7$3min^uF the wearrhey gavhh(|?&. o herself: "TNJh/poor wreck. find it! Pitysomebody !KR! Ah,j!PDAleftIThope ^5or strength either, to go on| E CHAPTER XXXI NOW to%1 toZ's shareapicnic*By trNathe murkyqSVr ompany, visit familiar !eI$--adubbedw rather over7ptive nam uch as "The Drawing-Room,"Cathedral," "Aladdin's Palace,"\so on+hide-and-seek fro^u b AengaBn itzeal until!exertionDrow a trifle Asomen6 a sinuous avenue hol+-/kf #tangled web-work of Idates, post-office addrU rmottoes~) g walls rescoed (in ). Still Uand talk:CscarcelyM3nowXK"ar!H! w+tq. They b2ownPK!anphHA she[.ed,yD   2 a am of watrickling over a ledgkQcarry k sedimenVuit, had Qslow-y 81gesm3= and ruffled Niagara in gleam5nd imperishabAone.%squeezed his smallP h in order to illuminate i q's gratAtion rit curta,]jnatural stairwaywas encloZ etween na9ce the ambi Ya r"bd him. respondehis call,1hey_ " aM-mark for future guid oqir quesAey wD, "waBthatXAinto depths ofL  2Bmark|g$ed?( of novelties to @!the upper worl. 3oneQa spa s", L1cei3muld"Rof sh[stalactit" land circuml.c7 [' H) 1kedG" OQadmir_ +1lef~bnumerous Aopen?0#toi artly bm Qbewit2 sp}Rbasint(dncrustsa frosta glitt crystals Amidsa| supported by rfantastic pillarsR# ?Q8"joof great katalagmCtogehe resul1eas  Q-dripqenturies. UnIZaof vast(ts of batfp themselvwaousand#qa bunch(s+3urb flockings 4 byrs, sque"and darting f  FCkneww4the danger%isqconduct'#'snd hurried herthe first kDffern qoo soon)Q a ba#Duck gGmits wing ,ugitives plungnevery newr#ag!atRb got r5the perilous 7 ubterranean lake,,a stret?its dim 3way !it@ p!lo2shaQrHe wantLexplore its b;,0t conclur!habe best to sit#Ast a9TR. NowO1timbe deepA lai&Rlammygb spiri@*Why, I didn't ,it seems1so M gaI hearY!ot+:m bthink,#, 9Hqdown beLhem--and:!n'=Qw howK/north, or sou AeastQwhichit is. W8Dn't >bm0Cweek9!ye"qwas plaT"at cf 2 beAthei8 3dleAnot cyet. Aqime aft"isZ< P CR--Tom qgo softlo for dripp`BaterZ3 aMf satR Bothcruelly tired, ye CssMfuld go 73 .Tom dissenD F2not>!st8D !ey'2 fae-bin froPBthemTrclay. Toon busy;G'1aid* 7Atimeh^broke the:AI am DAungr5J!me!!of . "Do you remembP"?"4he.Zbalmost1d|'s our wedding-cakeMSYes--!asTQas a 6li"goaI saveA&"us to dream onyF1way$n-up people do'll be ourSS"pp<Q sentP6  Bdivi#Re cakw 3 atT2appetite,Tom nibbled a:amoietys abunda"co"RfinisfQ with. By-and-byGtey move on 'yilent a mom"qThen he:z1can/ rit if In1you k#?"8'4pal}`.Qnw 1stamB!er Bre's ink. Thatw " iClast6 ! gave loos)S&il#diA{to comfor$ `$AtU!C"?")y'll miss uKChunt4rwill! Cl"!ithey're hun Ror us,laDare.Bhen $S"Whby get o the boatHM#itbe dark then--enotice w/1n'tnbIaanywayNr mother8you"bthey got q." A fBened "inT"brfSSsenseRe sawh made a blunderw% _hs2hat08! Tebecame$ndO uful. In a new burst of grief21 sh  ^ g"ingQstruc@s also--QCR:half spent before Mrs. Thatcher discov M""at/Harper's. 2 GR !biqno doub2:)Bwas a !on/M $on1it; }!%esso hideouswbat he 2$itG!waa5ger1torX,K [/s A portio0h z was left;Q Band ,.~dhungriD poor morsel of food whetted desir c : "SH! DiuAthat 2othyV " aq like the faintest, far-off. InstantlAanswYul|/d M)Uhand,@"*gr7 corridorG0s4. P  s(R ;.BV%Rappar a BnearU DthemdTom; "coming! Come"-- b now!"54joy,rprisone overwhelmFT2spe[ %moTswarmingfrantic half-clad pT, whowA, "T2Vut! t F " Tin panChorn 6addAdin,#Qpopul massed g}*!to ver, met=in an open carriage%"byaitizendrongedA it, joined itsWRmarchswept magnific? Q main et roaring huzzah* !was illuminated;~Pb;ar3est(t!tt w0Cever_ 2Dur%re firsthour a processars fil rough Judge-'s house,f<n"sa+,ejsqueezedt'", to speak butn't--and dr out rainiY"rs veK& c1ppi% romplete nearly so5[ a messe AdispSdkH#2cav2!ldv"!orL 1usbNTom lay 0aa sofaXWasuditory71him=1tol~A his!ofwonderful adjB, puR+"inAstri1add adorn it1"al JCudescriptOahow he %tent on Bexpel;7'Btwo Fs!as0* ARa thi^aullest4tchM3wasT"to he glimpsed aD speh6Clook*A day ;"2lin Oit, pushedshouldersa small hol1sawbroad Mississippi ro by! And if it5 F0Rappen#beVhU@ !se* 2at %oft/d[ %4rore! Hec7for/I%j @ @"imoAo fr.r$such stuff, $  &# w Sto diR~?ɆU laboher and convincg %"hoe@Q died1joy A she  actually>lueG he >1wayI& !anbn help2 ou?gAat t]for gladness+some men a8Qskiff cTom haI!em G33con rddidn'tE=qild talfirst, "#,"Dahey, "Q"$re]2les> bhWavalley cave is in" n m aboard, rowFa""gam supperqGthem rest G 1two4hreDdarkn.Fhome. B!day-dawn,=q handfu% Ahim Rtrackg,5R+twine clewyctrung +sformed A. T+# }BtoiluPi~Rbe sh3'ffA9s#Foon " y bedriddenFf}5and~to grow mo7 QBwornP ><2got,MV, on e"wa- {a"as  `"di8her room1Sun34she$ash1hadT'edk1wasaillnes#$omi of Huck's sickm Rto seoAbut be admitDthe bedroom; neit5- Uhe onB or H-x-bwas wam8; s introduce no exciQtopicL Widow Douglas staye1thaKaobeyed/Ahome? the Cardiff Hill event; alsoDthe "ragged man's" bod-%  ;6 erry-landing2had7Adrow&\trying to , perhaps. About a fortiVrescu E, he a visit:yi#plGrong enough!toc2Tom'Aintel:.., A waswm,t " ome friend4Tom$2ing>2oneW him ironicsqn't lik%!goHRy10he thoughqRn't mqO said: "Well,1others jusuQyou, )3I'v| ast doubt.)Ave t3caraat. NoAwill !atA anyH*)*Because Iits big do $atb boiler ironP weeks agoriple-lockedO"goTbkeys."tjite as a sheet.1at' matter, boy! H,Arun,qbody! F=aa glasL1!" "* gba!!thJface. "Aqall right. W1a M#Oh,'[cave!vXIII WITHIN a fewj2new1spr.%b dozen b-loads3nq @!to McDougal'sE1boatll fill#pak"s,5 CSawy[deDD bor4. -bbwas un4,%rrrowfulFeCelf sqdim twi xD lay^1ed )@,)"hiQ closrthe cra} "thif his longing f+dfixed,>clatest,,s cheer CfreeQcoutsidwas touchedd v-tick--a dessertspoonVZ2fou&J3was fallingsPyramids' Bnew;Troy fell#this of Rome7Claid(bChristtrucifiethe Conqueror creat British empireJolumbus sailEqmassacrqLexingtons"news." K2now3ill=4be #whBthesy3gU"ll\Bsunk2then| 3of ,w "raCw;} ]c thickof oblivion. Hoa purpos Aa mi=? Did thisR pati$d!fi ousand yearsready forD2flihuman insect's need?has it another important object to accomplish  xcome? No .Band 2hap alf-bree1out ^>Qprice8drops, bu3a(e !t patheticslow-droppVBater@!hey8e1seeb!< .b's cupC6Ts firde list2bcavernmnQvels; 4b" cannot rival i 4xKn,VB BcaveI flocked in boatsfwagons|3towAfromthe farm1 hamletsseven miles|I >1ugh%irYSrall sorAprov~NsUO/3hadN! as satisfactory a%. funeral y"av&1 ha Y%is5Ir*Bgrow[#oni#agovernIrcpardon5k qlargelyT2ed;Qqtearfuleloquent meet<$he#a committeJCsappt!apBo inrRF%1ingjSwail timplore*be a mercis trample $ut| Gfoot/h0"tokfive citizenwt&+idat? If. ASataC Cselfe$/!ofl)SlingsRto scribblir names-a tear on itLir permans impair Rleaky{Q-work"2TomAvHuck to& gave anRtalk.3!haw1rneQ aboum'the Welshmant, !is}Yq>s!? old him; R  5he TS talk2now's face saddenedw bI knowJit is. You got5QNo. 233 anbut whiskeytold me itAyou;aI justp must 'a' ben ]usoon as\'fA bus|"em8q hadn'tt)ney becuzdl!go!me ! w Dand aif you!musdB els's alwaysG4we';uget holT swag, Huck, I-It-keeper. YOUF -" I"DD.mI D1youHAto w   yes! Why, it seems!ag#8> CI folleredK-YOU foll1him2Yes]2youqcmum. ISS"'s;Q2himI don't want 'em soV Bon m me mean 6s. If itpben for me he'5V ain Tex@&w,.ns entire+%in-5Aonly* Ofit before.lp:,'!ba@ main question, "whoever nipp "in(, --anyways it's a g.afor us;G wasn't n!;Bat!"Lphis comradekeenly. "Tom,agot onO twQagainti1 cave!" cblazed. "SayM FgainT*"Tom--hone 1junf--is it funV!strEarnest;!--^$as# f ! ILlife. WiF#go"reAhelpZRit ounsI bet IxE2 ifwCRe can5 ouV  6"doDwith dlittleBatroubl the worl?aGood aat! What makesRthinkoney's--2you;rtill wef!re#we1mit I'll aSto giVqmy drum71&Cq I will0jxGT" "A!--va whiz. [!do1say "Ri$w,say it. Are*4IWaPave? I ben o-cpins a,"oradays, tbut I caKlk more'n a "--IAI$.">q G$qanybodyRm 1go,1^Qmight,Drt cK]  N ; ,Gri.bskiff.&2flo] ["re I'll pull itj_by myself A neeturn yourq$Q over2Lw2artA offm@B. We"bT32eatour pipes bag or two T%kite-stru ese new-fp!thA ycall lucifer m+rs. I te, "'s1imetbshed I2omeD" Aqaafter the boys borU&) #a W B whoU Cbsen(got undec^were sev` below "Cave H%," R: "NNis bluff herJ$s!Balik d5--no houses, no wood-yards, busheRO"ee5whi4 Rup yok#'s4 landslide? Aat'sof my marks. We' aashore.yG97inU're a-sta#8'6ahole I bout of~Qa fispole. See#4can.Biplace abou$P proudly mar"a clump of sumachncc: "Heare! Look at i;athe snuggesDis country9 "ll2Drwanting/ a robberrknew I'rto have1ng 3thi1o run acros]vAther!ve1it :&2'llit quiet,1let< K:aBen RoU1Cin--*$ o@ be a GangC #lsj* any styl it. Tom Sawyer'sA:1sou$plendid,L?  "it3doe And who'c1rob/aOh, mo6. Waylay people--W$!lyV2wayRnd ki "No-@Q. Hivm# t4y26a ransomUeWhat'sCMoneg3makR<y can, off'$ir{ b; and you've kep.mqit ain'2!seV2. T!enkway. Onlyb women1shu`9 2men5Cm. T5Fb beautqnd rich awfully scaredgt"irI!es5sZStake t|+"nd4pol7y!3 as3 ass --you'llMany book. cto lovXfter they,m s a week y stop cr!eRto le'i4dro Ay'd  { Raroun2com9. It's so insy real bully' $ Ibdbetter'n a piratQC"YesF&^7way Cit's6"!toQQccircus\!at{@y+ %1andaboys ew)#ho\  $ l0Qy toi#*a7tunnel, then madir spliced 1 fadK$a on. A&E z'%pr)Tom felt ams quiver him. HeQCragm> -wick pexSon a oC cla$De wa; t2ox*_ d flame struggl)AexpiQTf!ga4 o whispers,!foS-d gloommcoppresBirit yYBpres:ar 0LQuntilE reaAG,Wndles%rhe factx not really a, BpiceLa steep DhillFirty feet highW @eW+2Now@ AshowY.  Ae he+sa aloft+` sNAorne7ban. Doi!ee? There--0big rock over$ S--donKp}3TomCqa CROSS2NOWZ '{ r Number Two? 'UNDER THE2,' hey?  2's eI saw &# p`+r stared Qe mys Qign afB 6R shaky voice:qless gi} " o QWhat!>treasureVRYes--6it.'s ghost is  ere, certain."B 81, nKB. It Q ha'nk8Qhe di,Away /%2mou!Vave--z ChereS \wouldy#ngkJ 4"ofV #so & &omi3feaX5. Misgivm!ga+d}CR mind 7Lc him--)ym$Sfools m@of ourselves! & a 8|; Z!a = !R poin`#wen1had)teffect.I6_"atA #so/EluckxQthat {7 isJ VpS AhuntG4box5wen77c -ink of fetc4theBbagsFS@B1soog oys tookr1 tofm a rock. qw less w!#gue*<,Q2<  `3'reOEickswhen we go to robbingNSe tim hold our orgieCsre, too ful snug9 ) 0CW@ bI dono P%;#ofT% wWCto hem,] /"ing!a Btime getting late, chungry`We'll eat0bUwe gec6y Temerg4/ 0ed warily f 5oast clear!weZbon lun$in ! Ac sun d#Bowar[Rhoriz] Ay pun  kimmed uDe@KR2wil1chai 91ilyZ7 alandedI3tlyd4dar7c"!id!in 1lof the widow's woodshedrAI'll.3 up*ev1 it(Upa?!unna!ou"od!.#it"it=be safe. Jus 3lay\-  Atuff1 I nd hook Benny Taylor'swagon; Iqbe gone!"nuHe disappear#re agon, putcBtwo Rsacks!"itA"w"ld,Qon to!tarted off, dragging7rgo'|h+"'sh &tgay9q fy1 on: Pp~ allo, whop  nLWGood!1me,, !ar&Gpingy*waiting. Hhurry up, trot ahead--Ahaul~Vyou. qnot as b as it4# be. Got b;in it?--orQmetalO+4tal2Tomjudged so9 1boyGthis townAtake0$%sol away1imeNing up six bits' woraold irNS sellh foundry thaz3y w; 8wic'$at6 work. But that's:4Fnatux ",  '!"!wa1to [$Ch#wa$ever mind; !n&% !E'1uckGRf=hension--for heub} falsely accus; r. Jones, we haven't!Udoing Rlaugh!'-,ymy boy.i that. Ain'bgDgood+%Ye_"sh"nA &B to #yw%"n.-(n,%to be afraid for?%is+J3not+qly answ"!inq's slow$ ~1S,;into Mrs.# dXeroom. 3 le nae doorz3gwas grandlyn1bod4tof any consequenceu2&~ ThatchersQkB Har3the!es, Aunt Polly, Sid, Mac he minister3beditor-qa great0&)?all dressX bAThe a recei;<RBartiJdany onP#we!iv such loP Dare cov Bwith:and. 2 bl[ rcrimson rhumiliaUNHv u at TomFAsuffhalf as muchQboys "however. Mr. Bn't at home, yet, so I gave him up;5$astumbl2anda Qat myG"br "Bin a(0!An1B did3Sv 1. "TyNr." She cto a bedchanRNow washI% y. Here arnew suit$ clothes --shirts, socks, .UCy're+A--nobthanks*&--b! And IY%Bz y'll fit boyou. Get Dthem await--Bdown 1youRslick .3n s \rV HUCKD! "we can slope, ifu'Ra rop" high fro"Shucks!D d|%IQrthat kiUfa crowd.,^(8 athere,a"|&4! I"an!miRA a bX'Scare Q" Silm .vhe, "auntie has been  afternoon. Mary(your Sundayb readyU 7aen fre  . baAthisus qclay, o;ra)Mr. Siddy jist 'tend toT own busiO#'sis blow-nb`It's one2#atx1havtime it'sF 1andl sons, on=uw"Vcrape they helpej9&of4'Rsay--h, 21, i yk+wK  Fold 2is to try toq#_ J( C1to-,overheard himvbto-dayvas a secre"B it' lRof a (XE RknowsSL##1allf!trro let oz!doVQwas bqHuck sh !be!--xn't geta yG1outAknowS"AwhatA'zAtracYAbbero'V  a  BovercurprisQ#AI be4 drop pretty flatWbchuckl aa verygEe aatisfiZy. "Sid, ib2tol3Oh,:Qwho i# . SOMEBODY told--3 @ZJl_ Dpers:Cmean:R to d XI7<x !you'd 'a' sne sn9EtoldZ)0)Tdo an{21an !y&~mo_Tp(+J >  cones. X$nn:N  says"--Dcuffed Sid's {i  0k8q"Now go"if2arenQto-moFit!" Som Autes'GSguest a WD-tab[$ua dozen@/"pr!upittle side;F1e sixQoom, {t1at r vAbproperl Amadev4 speech, iY!!heOkNHB honPQF [T was Dwhose modesty-- A: fo)sHe spru+{a'Er adventu finest dramatic mann_ master ofDthe B it !onJs largelyFerfe8 as clamorousNeffusivechappier K+amstanc  &, ( air show of astonishment,AheapF compliment2 so: ntude upon)(a he al/Rforgoanearlyv l܎K!Amfor%this new2 K :k set up as a targeh  \gaze laudations <"sh<2giv s a homesher rooave him educated;Rcs-Fuld spar2 sAtartFi  \'s chancrcome. H#F32uck"2 ne's rich." Noa heavy strain2the9 tmpany kept baBe du E:2aryis pleasant jos5DsilearawkwardObroke it@(AMayb. cbut he0!lo it. Oh, you%n't smile--  1eY;&a 'tTom ran Bdoor1looked at eacha perplexbterestuinquiringly a_ Ttongue-ti* #ls Tom?"P. "He--well - any making at boy out. I(<4Tom}/,q#Dggli{Eeigh,2 di"afinishsentenceCpourU1masyellow coQ the C^Cqwhat dih ? Half of FRmine! spectacl1 general{way. All gazed, nwpoke for a momentn a unanimous :.n explan  #1fur5i nd he did^B tal!bumful of _,ca scarc!n rruptiony!tok the char/its flow|che had"edAJoneM)d: I,x^Jf#%isP2it BamoupC nowone makeFBsingy), I'm wilbto allhT3was[3sumt"edRG over twelve thousand dollarsr-!as+ 7 [Qaresentever seenl`e time before, "  Q N"ho1 worth consido7av,tyaV THEer may rest Aaj's windfall33$a j4tirDpoor(vof St. o. So vast a sum, in actual cash, seemed nexincrediblejqtalked , gloated0rified, until thOs' mTJdtotter&2*'e unhealthy excite "haunted" housq 2 anneighboring villzwas dissected, plank by U3oun1 duand ransafor hidden treasu Qnot b=st men--0 grave, unromantic menWmH1Tom >Q cour2adm(gz1qnot abl|arememb~2at 4bremarkLqpossessJ&};3now1say0Twere dBrepe 4didvrsomehow regardedv8Aableyidently lo{5power of doV'2nd r common !s;5#ovir past historr!up X v2ar " of conspicuous originalityto paper published biographical sketcheNt.1 # p>#'s !ousix per cent.dJudge " lt's request. Each lad had an incBnow, was simply prodigious--a9D-dayC8Ayear7?2jus  got --no, hpromised--MrcollectD Ha quarter a7 board, lodgd school a <^1ose  be daysF 2 hiBwashbrmatter.  ,@RopiniR 8no 3boy!goz daughtPAcavepqn Beckyd@ 1fatzwin strictCw!ceA TomAtake&a whippt6  dy2isiFv  Cplea,!ceK4thei3lie-w!olorder to shi*&at!hemo8own3saiTaq outburh$atyBa nod !ou<,5magz lie--a litaworthyzaold up-2hea-Rmarch1]breast to George WaBton's lauded TruthU"ratchet!mQ 7ghtzU bso talSso superb wR walk4 fl qstamped\AfootdVv!2Shec:straight of1tol#/it"op& 1seexqlawyer  soldier some day0look to i"T#!AdmitkY National Military AcademRafter(Qraine!es  9[Amigh9'Ieither care both. Finn's w0 qsthe fac#now undeQ_ Douglas' protec introduced him)"society--no2' it, hurluis suffer%1mornj1R bear?servants1cle 1d naHQcombeC1 br hCbeddly in unsympathet3ets2ad 3e[ spot or stx~uld pres/2earQknow yK$!haE#eaba knifufork; h%use napkin, cupXplate&QlearndWbook,@go to church2stalk so "lyaspeechT become insipid in hisX; whithersoXees"edC2bar ashackl civiliz;B shuiQbound1han foot. He bravely b4is miser|1ree!thTLSe day up missFor forty-e\Qhours^g! hO j2himw2in Qdistress. The cS profoundoncerned;~7u E %eyF- @1forqbody. EThird V)r wiselyPp*$Qamong old empty hogsheads down*]AbandU#sl-T p'inQm he $rrefugeeL had slepor breakfastoB stolen odd61end Bfoodbwas ly<f in comfort969"ipwas unkempt, unM1cla old ruin of +,had madepicturesqueRays ws01frea happy[S routvBout,"his"*been causing,s 3urg=Qto go gr's face its tranquilv took a melancholy cas63RDon't X CI'vey #itwT work6"T;"#"it:~U 2to :)d("ly_&7#them waysA!mex!up% / Bsameq 7+9Awashy comb mLo thunder0w&let me sleepJ/a; I go61wea[m blamed cloth!atA smo?" m#'dg1seeany air git A'em,Show; !y'1 rotten ni,a=!et, nor lay^ croll a@nywher's; I hai"liD cellar-doErit 'pea b A  and swea q--I hatm!m Cy sermons!Aketc xK,[chaw.Qshoes$w eats by a bell1goeybed by fits up!--VK's so awful reg'lar)dy!it_(,>#dvhat way, Huck(&qmake no differI`Qybodyq STAND &3t's1 ti so. And grub como easy--I# t{!esvittles,}3askAa-fi 1; I  in a-swimming--dern'd if{AQ1do 6t". H!I'42 to"sodn't no(#--. OuRattic"ipRSwhileA daym1git!st"my , or I'd a died, TomnKBAmokeu y?5Bgapeqstretch Q scra before folks--" [The+a spasm ofsial irrit and injury]--"And dad fq"itaprayedNDime!A see, a woman! I HAD1ove2--I yUbesidHZ5's $Copen_<S$it%I G!st"QHAT, QLooky%,0S rich@what it's crack); Bworr  9 2a-wwas dead <2. N7%seBsuitis bar'l %shake 'emmc>B got into%isAif in't 'a' ben Kmoney; ntake my sh@&Syour'gimme a ten-centtimes--not manyX#s,K_# Ra derR2'th's tollable hyx4you$qbeg offSQidderv"OhK3d6%Rt. 'TBfair if you'll try^;B!a UQ longI*e $tok<Like it! Yes--bay I'd&a hot stovAI was(!itcLC. No7Brichi4liv m cussed y_Bs. I6oodv  Rf  I'll stictoo. BlamBall!QSas we3gun_1a c*"ll+AfixeEArob,p&olishness has  k"up5pil~x1sawx opportuni%"CDhereHECUevYnturning 'qNo! Oh, -licks; ara!qin real3-wood earnest)J+CbR'm siV-?5But<l)#qgang ifarespec5R's jo3h!!C"inq Didn't[!go~a piraterYes, bu%'sRt. A 7 zfAgh-ti7"a NQ is--rgeneral~A. InTr!ri 6  Qup inQnobilRdukes03uchw,! aS2lwme? YouhC  A youP *nVWOULD+B" "wR%,tI DON'TR--but(vpeople say? Why 'd say, 'Mph! V#!  low characters in it!' TCU+ {h+`$t*#so , engaged%Tental"#e. Finally h# Rll go}aba monttC!nd1if  `3it,49XRme b't>%Q gang e_b, it'sQz! Coxo8X`2and G>Toh# a[oEWill/!--yg2? Tggood. If sheUt"ofroughestK"s,@qprivate-Dcussdcrowd ror bust] Astar/4NCturn$s? 3right offBB@Atogem"avQiniti  0Qmaybe(H(Lj;+W6t$12Bto sn9Cone [+ O#te rgang's 8+sd nNre choppl o flinder qkill an 2 anV his famiWhurtsX%ay9/e3y g8,!_3E bet it is3 "at1ing Abe dt midnightthe lonesom|3est@ you can find--a ha'nted " ib:-Bll rNB3up M#yw{(socyou've3 on a coffi 1sigh with bloodOt)Bsome RLIKE!frmillion )X!ieh n 8 s QidderAR I ro 8#gi% acr of aRLbody tal('-&itD bu+!sn!,wet." CONCLUSION SO endeth schronicP$G strictly a}!BOY, it kAstop ;Sstoryz!nofEmuch)p"wi becoming ^3MANone writes a!! a Sgrown*Q, he O4A exarto stopOB is,a marriage) iof juveniles, he W can. Mosgyrperform still liveare prospc2Som.it may seem ZQke upzyounger ones agaiM9 1sor"meAwomey turned@krRit wiwRwisesyOto reveaH&Rat pacQtheirDs at'4. Pby David Widge]previous ediwas updat2Jose Menendez'>  THE ADVENTURES OF TOM SAWYER0 /BY# MARK TWAIN' (Samuel Langhorne Clemens)P R E F A C E MOSTW%e 1s recordw areally occurred;nr two were experienc6 myb!rObose of"wh7 ]#3mat7$inY Finn is drawn from life; Q also$an individual$is a combi,Ybistics #re_whom I knewSabelong t.Sosite of architecture. The oddK!!stzqs touch}"onDall prevalentchildren!bslaves5e Wpwe period1is ay, thirty osAty y ago. Although my book iaGended mainly@ Athe qtainmen1boy7 girls, I!7#ill not be shunni "7$at;d, for vmy plan<"tooo0ly remind adul0 they onceathemselve^ 1of (rhey fel aalked,}Rqueer89s=Gimes 4. z!dUTHOR. HARTFORD, 1876TT O M S A W Y E RI "TOM!" No answ& g4iat boy, I wonder? You Rld lady pul'"!eratacles|$!ov #emcthe ro0rn she pm:&ut"m/seldom or +rTHROUGHhrfor so WJj!asyIher state pairA3 pr8V2her",Qbuilt3"style," not service--4'!se+raetove-lidsUs well. She looked 2z"&mo68!aiK1Qt fie0673oudP;the furniturUhear:e IQ aet holI1you A--" 2="by AtimewVnding punchingNL%dre broomj!soGdneededE2to punctuat Q!esBresurrected no f B catiJ6"diz!ea!1wenthe openDA andUiRtm?he tomato vin~"jimpson" weedsB constitb the garden. No Tom. S AliftWmavoice  angle calculfor distanc1 sh : "Y-o-u-T w!slTnoiseU"h42  i to seize al2boye slack of his  aand ar?Qhis fwA. "2! IE 'a'closet. Who!(.Pb?" "N  1! LI!at yourU8(Qsr mouthb!ISa truckXIk?-1aun. Dk^3USjam--FewFWAI'vet" dk"leGA jam@e I'd skin you. Hand me switch.# h.i d air--Sl was desperate-- "My Bbehia hatesB{5 S else#'ve GOT to doLIrhim, orbu!ilaTom di>-eidFAgood02. H  back home barely in seaso}help Jim small colored1sawS9-day's wo"likindlingssupper--at le6e{n:"to~=8hiscto Jim"Jithree-fourtht~$rk. Tom's!br( (or rather half-Q) Sid!al0Awith A(piccup chips),Z ca quieH1andE,%noDous,VBsome* While Lstealing sugar aQ offe{X7C askw+questions/ Ewere1gui1nd deep--for Bwantxtrap him6damagingments. Like ;pI6-hearted souls (1was pet vanityAlievA `4endowed with a t@ 1arkmysterious diplomacy0qhe loveacontemn0xmost transparent d׏ as marvel[low cunning. Sai u: "Tom1midQ warmR, warn't it8 BYes'OPowerful1'u "wa n(FAA bim a?Ae shvTom--a togL#unr.9;suspicion. H8dL93facKK!ld aQ. So [ ?SNo'm-ynot very mx =1rea+oY Sshirta#Bu } 1tooJ though." A-Qflatt hO7rreflects2;hy-2hir1dry!ny Bknow/*s8!hay Fher Glqin spit/1herC whe wind lay, I ZqforestajCwhat )next move: "S]us pumped on eads--mine's damp yet. See?" 88"ex:Uthinkoverlook(v circumstantial evidenc!mis=a 1. Tya new ins"5ion^ ho undo yourrcollar =bI sewe to pump on/Qhead,3you? Unbuttsjacket!#sh#of\2fac1Aopen]s@a. His qas secujQ. "B1! W Ago ' #I'11sur'#edQ A 8bee  QI forg(y*. you're a kina singed c"s --better': . THIS timu Sahalf sV*her sagacitymiscarried,3gla?ATom i3Winto obedient conductconce. But SidneyIB3you5hisith white thread, but Qblack5BWhy,OB sew8r! Tom!" rnot waitQt. As4ent>w3o85bSiddy, 2licfk abI|afe plac/nrwo larg22les "A wer#us.+sthe lapd6them--on^  D3theHpJDShe'D"anoticeQit ha_'for Sid. Conf6it! she sews]&_ &I wish to geeminy sstick to t'other--Akeep!run of 'emsR I beI'll lamX qearn hi4!Hene Model Boye villaghkAhe m&1boyOS well--and loatim. Withins, or even less, M1tenG-As. NQcause sV1onePR heavV.Bbittj2him a man's ow_aTand p 1bd !emgAdrov% mSb)y25!--ras men's misf+eiaexcite!of. This newwas a valupSveltyP1stlojust acquiredb negrohto pract5Pundisturbed. It conma peculiar bird-lik5, a Aliqu wrble, pW  &#he9Lh(Droof at short 5valAmids@@Busicxreader probablyEbs how !it.4ra boy. Dilige attention soon gave 8#kn{7he strodeFVtreet full of harmon1his gratitud 0^ an astronomer feels who hasg planet--no doubtlqfar as Eg, deep, unalloyedRs concerned,advantagFAwithT!boO t$XComerRsumme4ElongJNqBark,2 P"ly Tom chel2!hiustle. A stranger!hi boy a shader'himself. A new-cAJaA ageither sexXan impressive curiosiPJdshabby\WJ!Thy{`Qdress\"oo  on a week-A<FFa astou B cap dainty ,W- ced bluL3b round%5was#Rnatty0"sohis pantaloons2had;82 on#iGonly Fri"He!wo necktie, a br  aribbon0had a cit#KR air |bat ate&avitals B mor1staUIsplendid}1hig!oshis finerUhabbi E outfit seemed d3crow. N]boy spokeU,2oneEa--but Nsidewise, inrcle; theyArface toaand ey!ey#X - U!" "D3to see you try i,  8$doN> ,L.-'Y?1CanACan'A "An>\!paMp ! Aname"q'Tisn't5"of^,Well I 'low^ MAKE it my0)why don't youhI\2 sa}01ill3qMuch--mAMUCHrb" "Oh^ 2'rey smart, DON'Tm# I)l one hand:n!meIr DO it? You SAY aI WILLTyou fool~ "Oh yes--een whole familiesame fixqSmarty!| CSOME "Oh_a a hat+AR lump-8;Z[Bck it offqanybodyG61akeb!re suck eggsYda liarn %fighting.q and datake it up1AAw--aa walkXSSay--!meA morBsass@and bou1 rof~oOh, of COURSE+; then? What/ eSAYINGTx for? W>{EIt's XQfraidyxI AIN'TaYou ar7""I+A3/3eyiM1"sihaR eachm tCwereH  .XGet away Ahere"GoyourselfDI wo B"Sobstood,X Sa foo0d"as a bra' both shoving 2ainaglowertg1Q hate# nfget an a. Afte=Auggl ,Aoth <"hoy#flHmSrelax Jnx watchful caution|acowardca pup.1ellRig brozQthras'y3his44r finger.make himW 1toosI care forj{4? I;1a6big Be isUmore,hrow him'3at !T[Bothas imaginary.]$at's a li=DYOUR 2n'tAit s1rew6n ;G dus cbig toh<qFstepZ/y stand up. Ateal sheeFTz!w{ 1tepv-Dmptl N="sa$'dnow let's D crowd m;abetterZ{HSAIDh*--Wd[By jingo!Xtwo cents.jAtook1bro)QEpper>$ 1ockd cderisionRtruck*g0B. InF.QstantR boys1rol Aand 4ingdg3d6Acats3, 1pac"Rtuggetm A's hI 3nd fFs, punch3Qscrat"T's no,covered -#:'ry* confusion2for) ;the fog of baXcDTom %, seatedU!id1# p sts. "Holler 'nuff!"3 heaboy on%Rruggl1fre*Hcrying--.rom rage. dn. At last#go1 smwbed "'N"1up -)8jyou. Bny 1foo+Qnext  3Mqff brus6S2ustGsobbing, snuff5and1\Eally&Aback1sha1his;.1tenbhat he=a do to]the "next) 2ughout." ToTom respo0Rjeers"st7off in high feath as soon asI4was*(up a stone,2w i "hirbetweenhoulderss-\1ailran like an antelop_Qchase6 traitor{"Rthus ere he livednaa posia2gat2som9A, da the enemy toonly made2s a gond declined. %J2's and called 0 bad, vicious, vulgar&"ndc3[ m} Twent away;!he\ he "'lowed" to "lay"s'.g1gott>2ate#:2and$he climbutiously in r #unl an ambuscade,-Bpers4#Aunt;g"aw]2tat n her resolN 1 toT his %%2captivity3ard/became adamantine in its firmness. CHAPTER II SATURDAY mor;e,"&4Qworld#.and fresh/Qbrimm-1ith5P1wasng in every:(L" i>'!wa*RR issuQ rthe lip`Zcheer iniJfAa sp&tAstep locust-treQbloom bragranthe blossoms fill air. Cardiff Hill, beyona]ave it,B!grith vegeta!2lay (4farZ, to seem a Delec"Land, dreamy, reposefulinviting. 1ppe5e2alkAa bu| of whiteZ long-handl11ushcsurvey  1qll gladE2lefoand a deep melancholy settledAuponaspiritmrty yardsQoard k nine feet/s. Life c hollo7existence^Ba bu{1ASigh)Qhe di 2hisfpassed)Isopmost plank; rep the operB; di8Qgain;f8/ignificant qed streaqar-reac!co7'un8s"wntree-boxQ Jim 3skipping 5at va tin paiT singing Buffalo Gals. BrQwater (rwn pumpKRlwayshateful work inu"Seyes,Dq now itJ1not\k 1 so\dompanypump. White, mulatto/Qnegro! 9there wai'Qtheirqs, rest?trading plays, quarren $, g, skylarking. And h"al?Awas only a hundRgnd fif!!f,/3got)  under an hour. "ev an somesG!lyto go after him. U1Say, I'll fetcp'7'll`"soJim shook :wq, Mars #NOle missis, she tol|IBgo an' g<s3an'F#op ' roun' wif_61sayZQspec'zEAgwingAax m ,rs5$an' 'tend to my ownQ--sheed SHE'D+f to de/5in'2you Cwhatt!id#. SSthe w talks. Gimm $--qbe gonerC a a\!R. SHE ever knowI9 she'd take)Qtar dd me. 'Deed2wou.q"SHE! S ver licks--whacks 'e}URimble1whosE ,p5C }w%1 awP1but6hurt--any#it!if$Gcry.you a marvel" aKs alley!Abega.waver. "%!Di=bully taQMy! Da5Fb, I teQ! But Tom I's" 'fraid aissis--" "And besides,R will#shAmy s,^o"Ji- human--t> Qttrac  "ooHAfor iaHe put( *a"ntZebsorbing!Qest w. 4andS being unwR; V2s fZ3dowI k!ApailJg3rea+Awas "waCvigo *retiringcQield 7a slipperZ {and triumphEeye.''s energyeAlastq}Tthink%!fuE 1had $ne$Sis daH"rrows multiplied. So~ 1fre!s #tra**!onL 2sor@2delXBd)Bb they J$a bof fun8%m2!to|)96verZcof it burn like fire%2hiscly wealt- q examin0 B--bitoys, marble trash; ;8 to buy an exchange of WORKX* 7s,*an hour of purk4domi#retraitened meansB "s qgave upoAidea r=1oys4 !rkN hopeless7- e Qm! No=  3than a great, ma1 8entC 6! >qtranqui. Ben Rog%v-spresentlnK boy, ofbwhose ridicule dreadingdb's gai the hop-skip-and-jump--prooj6is lis anticipa2!HeVM3ran appl1 gie1a la%melodious whoop, at vals, foljB by -toned ding-do,, a* amboat. As henhe slack}1spey"1ookhQmiddlU, leaned faro starboarderounded to ponderaborious pomp3/Oce--the Big Missouri (d| %;wdrawing"of 1boac capta9engine-bellbined, s!,o7 Qself  <own hurricane-deck the ordersQexecuAthemR1K, sir! Ting-a-linga!" The$way ran almos he drew up slowly towarq. "ShipToo backmsHis arm"gh^Atiff8xAidesZei mAstab%h Chow! ch-chow-wow! rQhand,"escribingly circlesC3 rePing a forty-'wheel. "Lg l-chow!" Thej5 e "to &RShead B0her! Letg*mslow! W-A! GeO ead-line! LIVELY nome--outd"- #t'Q#'t ! T~ t(hRstumpMQthe bA! StSy*age, now--l go! Donb 3thesH SH'T! S'tH'T!" (Suge-cocks)"on . R--paix9!, yDBen (n "Hi-YI! YOU'RE:ump, ain' nH 3hisPFouchI!eyan artistZ(!n vi\ gentle sweect&!suܙ"s $R rang4)alongsidv7  2mou!%er #e (n"tu1 k]! "Hello, old chap,M4gotTs, hey?"heeled suddenJn31it', Ben! IC9TnoticDSay--I'm goBa-swi, I am. DoQ wishacould? Aof c# you'd druther[ !--0 ?5? C)I (6(omR:d,#bi2at 6` ?` $hyIETHAT#umC \Aansw1carG ly: "Well, maybe it iU zI,$it suits Tom Sawyer dV1meaQ!le{`you LIKE!3Thep u}1mov^"? I(see why I oughtn'Gl-1. De$"get a chanW+# a fence every da}1hat(2thez-Q in aSlight!toAnibbApple2R swep daintily=forth--steI"ba<1notK effect--advAhere?there--critici=50--Ben wat2mov@1getm`!"ndp( bested, Ted. P 5 heTom, let MEf a littl _o consent1althis mind: "No--no--LBl"n'ly do, Ben. Y7'e,1's  particula.u a--righ eNQknow -G if C& I^3and. Yes, she's ;-bbe don[ careful; v"onmRthous Ftwo can do i?wayybNo--is6Hso? 1--ljust try. Only--I'd let YOUCas m:" "Ben, ., honest injun; but-D$nn!o s!1n'tAhim;7/!, "/Sid. Nowy` how I'm fixed? IfEa tacklKsb[C&Qhappe+"itOh, shucksbQ3as lgA youocK,#mySFN2.bafeardW3ALL Rareluct|ig @qalacrit1. Ah i4e  )erAb workeZ"sw>LA sun( #ed< 1 saa barrel7shade close by, danglQslegs, m^& aplanne! s0Iter of more innocBT33o ln6material;ed along :; they ca6BjeerArema2A. Bytime Ben\!faY'1out!ra1he $+Billy Fisher for a kit!good repair;1whe>out, Johnny Miller b in for a1Ir! a!ngw  uCso o, R hourHT hour8 afternoon>," a5poverty-stricken; !2was literally )3 in2. HhW"s r q mentioetwelveA par6 a jews-harp,*ece of blue bottle-gla}uOthrough, a spool cann2B key|u unlock1, a!mchalk, a ca decantU& tin soldiQcouplQtadposix fire-crack&r kitten only one eyJ61ass>knob, a dog-Asbno dogv3hanNvb, four1as of o C-peea dilapid)old window sash 1hadsa nice,G_2idlM#thq--plent40 \2encQthree coat! on it! If2n't9>9ut )"heT have bankrupted+Bvill)d2aidCmselR!itnot such a!,Yqall. HexA3dis8+ a great lawRuman |,1out5 ing it--namely, ."inD&Ra manzboy covet a} s !isG! n5ary;^ difficul vattain.U3! se philosop&)che wri ]x@A now comprehen>qat Work $isaatever dy is OBLIGEDj,<OPlay< not oblig# do. And 2helyIto under* :U1ruc artificial flowers orW_5ing"ad-mill is work, ten-pins or climMont Blanc amusement 3are2y gentlemen in Englho driveb-horseJ$nger-coaches tw}r thirty miles daily linummer, becaus@privilege costs themDablenQbut iOy"IK wages fo*XAturnh1ntoI3txsresign.oy mused at3ovea%ub?GQwhichRtakenC r Sworld`whheadquartersv[eport(sI TOM , ]q lkby an open {@leasant rearwBpartYwas bedroom, breakfast-s dining and library,|c balmy D air* stful quieeq odor o%Y@.rowsing murmur (AbeeshFeir effec!he AnoddfQver h"i "sh5n,%1but#caLdasleeplap. Her spectacl)1progQup onsAgrayA for-F1ty.%" 1Tomdeserted #ag&` !nda0 'iRpower p_repid wayN said: "Mayn't I$} yKCaunt&'ready? How mu Adone*AIt'sd.XCTom,ro me--I= bear itIb<u; it ISRF." dY1truxevidencezw uBsee LRrselfe a1uld^MDfind1perQ4C. ofAstat true. Whenfse entir*"ed1notelaborately QrecoaM!an!n aeak ad8ogw astonish 4was#unspeakable. S|bnever!m U's no^# i2canCwhenM2 %Ad to B." A!AdiluO!he)!liAby a, "But it#s seldoma aRI'm bsro say. go 'long$pl/Aryou get@3som i\BB, or(tan you." &awas sokbcome bSsplenSchiev1hattook him#th&tsE- choice appleQdelivit to him,C"ov cture upoBvaluNflavor a treatAo it uit came~ "siT9ugh virtuous effbsd: a happy Scriptur urish, he "hooked" bughnutn !kieand saw SidQstart%pHl2 stairwayll tck roomsecond floor. ClodsAhand$A thegC)waXmtwinkling y52d a #Si'a hail-stormx # ct$Allec+ surprised facultiess*arescueQ or s0+Bclod7tersonal<G} MAgonerSa gat3eneral t h&2too9iY$!usTit. HGrt peace+ /"SiWAcall"tt s black $6+n1rouC1skipQlock,hinto a muddy allaled byQ%s aunt's cow-stT4 He aly gotrly beyo  reach of capuQhasteR the public squ$1, wtwo "military"N!ie02boy"met for confliY AccorO qto prev#sappointt <G3 ofޢ these armies, Joe Harper (a bosom friend)<the otheruse two great commay ! dYSt conyb to fi!--DAbettIil2Rstill<ber frys !geon an eminence/Qconduield operations bysD aides-de-camp's army wX uvictory+ nd hard-f@ 1 ba# T were counprisoners 'drTterms rdisagre d7y $ay 03ed;X 4R fell?and march "ayhTom turned home slone. Q!as &3useJeff Thatch-1ved_saw a new girl e garden--a love^<blue-eyed creaturQ yellir plaite1two-tails, white summZd embroi  )JQettes fresh-crow2ero4without f^+a shot. A certain Amy Lawrenc2U2his6 !efoJa memory of  Gm 1 he#d to distr#; !rePdKQssion"dogi o + ~Aevant partialit pmonths win8bher; sTesseda week ago; $ <bappiesx Oroudest Rworld WQshort_e!inRinstactime ssgu a casual=)visit is dH"sh this new ange's furtiv -shqchim; tf Bpretq6 Aknow\4was %"show off" in 2sorabsurd boyish ways,# wBadmi%{Bkept is grotesque foolishnessome time;, by-and-by,  )s Adang) gymnastiche glancZ@!idy MC girl was we(xher wayO $upn r leanedq, griev5b+Roping! tarry yetblonger 1halA1 moO  Qsteps m]1warQ heav great sigh asp$Ar for threshold.#1his:! lI", Qhe toqa pansyG L ! ss): 3 bo)3rou\Uad with Tr twoY Aeyes=#haWCdown d as ifBsome of interest goat direction. P- he pick:&w#ry !ba! iO,aead tifar backSas hefrom side8aide, iO edged nearer B; finally his bare-#W3(liant toes)w 2e haBaway the treasu# OArnerb only minute--(v Rbutto$1 inhis jacket, nexheart--orstomach, possiblAnot 82pos<s anatomnot hypercriticaZByway1# 4ung#<nightfall,ing off," a16 2irl exhibite again, though Tom comfor$"im$ 3hop@Abeen>,*een awar&P  Bs. FX he strode home !H[[%advisions. Allasupper.cspirit"soCrunt won "what had #inV child." He tookÁod scoldrbout clB Sidp1seee!miY QleastQtriedIugar undGveryG"goknuckles raQ!foxc "Aundon't whackmhe takesQWell,/1torsRa bod 1way"do. You'd b9  bsugar ifq*watchingu sezckitche Xs immunity, l"gar-bowl--a sor&2glog2Tom/Fllnigh unbear_'s fingers6`Rowl d1LVbrokeFin ecstasies*JB (!he controlP#Rtongu!il5 toF Bpeak6!d,^P1in,18A sit0 bectly Lyshe askejimischief|u! tCrRbe noA!so+   !asefpet model "catch2 Heo brimful of exultR1 Thold Q rld lady #ba stood abovwreck discharging lightnings of wrath(#Y v, "Now iVm2A8zt gQspraw1on 2loo potent palm#ups!to($"keTom cried out: "Ho 1'erbelting ME for?--SiK it!faused,\vl1heapABut 1shes5her3she RUmf! you didn'ta lick amiss,)Wsome other audacious Iaz 9 ." Then her conscience reprgeqshe yeaato say'3 ki l;ashe ju - !beo4tru!a  Ae wr7T cipline forbadhs. So sh rsilence2d1bffairs av2rt.|1ulk# a W "ex chis woBknew3Qheartb Bas ojAkneen was morosely gratified b 1ous\)OAhangno signal take notice of nona3ingRR fell"no cthen, s& a film of tears~ahe ref recognition!pilsick unto deathbim besee}D one forgiving*u]cds facew rand die word unsaid. Ah,+Hs !el2? A bZK the river,  Qcurlsw9<8sore heart a .sEhrow 1ow 4earxfall like r4 (ps pray GoAgiveAbackG!bog\  , AabusY9[Rmore!k.blie thlsi02--a suffererP"se grief C*# e$so, as feelBwithAbathos se dreams,hto keep swall ,Qlike to choke03swaqEblur:, which overflow}xr winkedran down*l?XAose.| ba luxu'"hi:op17gsorrowXnot bear to have"ly'Lixrng deligh\ Brude0Cit; <too sacr/rcontact7Tso, pU,his cousin Ma31in,!EalivAe jo!sesB4hom+ an age-longbof oner aountry!go~in cloudBdark u"on|Munshine in at@1"wa B fars the accustom"1unt=?S` desolated"suwere ind9. A log rafAthe S invi%fQhe se!i on its outer edg Aempl+reary vast*iram, wis4Lw_ u rly be djQt oncs5 un6c1the&'routine devisWn9N*Y+Cflowt>got it out, rumple!ila 'Fily increais dismal felic) %HeFQ1pitu knew? WOrshe crym8! L! r%toRarms #ne  him? Or2she(!co1all (,1? Tuch an agony of pleasu ) ` tC and 1gai 6set it up in new!vaosTswore ithdbare. Vqhe rosei?NJAdepa4l A. Ahalf-past nine or ten o'clock hey 3alo+'street tothe Adored Unknown ;X{ `; no sound  3lisdVear; a c/qwas casa dull glowbthe cuCof aX"c-story/Q. Wascre? He climb,jCs stealthyf/ !thn qood und]#at j Aup aC#,ith emotion; Claid]$wn9#g bit, disposingpAuponp Rback,]ands clasphis breah41hiss wilted5*1thutdie--ou~ jyno shelter bomeles-C, no !lya to wie death-dampsR!ow8  2benvTinglyqmthe great3cams4SHE:!eeww4'E outvT glad/U,p4oh!A!hev Atear>poor, lifWform,=>Dsigh~1a ba youngE so rudely b:*Duntimely cut ? Aup, a maid-servant'cordant voice profan" holy calmqa delugAwater dren#rone martyr's5"s!BstraB hero sprang uAa relieving snort%awhiz aPa missil/vir, mingledHV"rm Qa curHBshiv1glal !smb 1vag rAv!e >Bshotvgloom. No!Q, as +all undressed for bZ  omission. CHAPTER IȷCsun 5!2QanquiT"ld]abeamed8D4'ful village~a benediY Breakfas, Aunt Pold family worship:cL2ega# ab built6up of solid cAScriptural quot/s, welded`%A a thin mortar of originality Bsummf  7she+a grim chapter xMosaic LawKaSinai.n Tom gird Qloinsto speakh2bto "geverses." Sidlhis lesson/"c beforAbentt his energies5 smemoriz\CfiveeAhe c$"8the Sermo!Mobecause 2uld.#noO, were shorter. Aalf an hourugeneralw!no;wn =Qraver) %olN'Bf hu-3 !iss3bus $Qng re%ions. Mary took<1booAhearPSrecitahe tri!|] Gog: "Bl!ar 1--a " "Poor"-- "Yes--poor; b025#In? :$ i/Ubthey--" "THEIRS BFor +. Lairs is[kingdom &MavenEy>_mourn&ShzS, H, A S, H--Oh, IO$"wh is!" "SHALL BOh, # fb shall-- *Y/ I 5iWHAT? Whyyou tell me,1?--do you w !! bmmean for?2youthick-heaRhing, I'm not tea[1youpyA1 do. You must32leaI75. D"be"buraged you'll manage it--f 2do,11Agive #ever so niceC, that's0#bo'"ll{1! Ws"TMary,K C+'.ueryou minMbsay it's,< AbYou be"sou%. Qtackl ;3" [did ""*2und double pressure of curiositprospective ga2 diA)2ithD he accomplished a shin SuccesQ gave  a brand-new "Barlow" knifqth twel2d aSRcentstZSnvulsGthatGVsysteL[ DDoundTrue, the scut any!buwas a "sure-enough" 5t  inconceivable grandeurSBat--lBWestern boys >A got N|a weapon1#qunterfeZ3a injur<3obmysterw] erhaps. Tomr˻to scarify82cupuR\ "it )ArrancCgin F dbureau" !ca\ qoff to  eSunday-school. FLrtin bas 8andmABsoap!he  3"oo21setM4n aRbench2; ta$ d+be soapeiy; sleeves; poured>& ,W=y~e'  " Ubegan?ace diligentlyFStowel|-g"oo&&3 re),5and2Now49lhashamesmustn'tVbad. Water wShurt c#"Tosa triflncerted. T=5sin was refillAthis3xO&ito'b, gathaf;/% ebig brGU9(hen nDboth eyes sh8Bd grC+t.[ , 1nor&testimony of sudsR>2ripT Aface mse emergf>x,fnot yet satisfactoryQclean territory* " a%Achinhis jaws,mask; bel_p4dis lin1 dark expan5unirrigated soil]Rsprea7,rin fronlAback  2himBnwhen sheY%dR4him$Ba maqa broth1adistin<Bolor)Aatur2haineatly brushe2its curls w]Ainto2intsymmetrical effect. [5!iv;w smoothL[3labdifficultQplastere AI]3qhead; f(] effemin71andBown  lith bitterness.] Thenr!go! aP1 ofF#cl%1Busedy##on Bs duvH!wo s> were simp1"ot%#clothes& "soJRat we qthe sizV brdrobe3D"put`"s" !!S; she+Qneat "/m,his vast shirt MG2ovem,soff and c V-QspeckSrtraw ha)1now#oed exceedWAimprcand un2abl":Yy as E as OOTa restraint e lgAm. H-"atU Q forgie"5!peZ61 cothem tho"ly/2tal s9Bthe 9rthem ouH2los:Stempem~z bm$o do ever  Dn't "doAMaryN&rsuasiveTPlease, Tom-- 3So &zhoes snarlingJ(son read9/hree children se3for "!latat Tom hd heart; but3andbere fo0!sSabbath`-from nin$Aten;B church service. Two  "ermon voluntarilV :2too!ger reas.TZ urch's high-backed, uncushi$BpewsU!~h4d persons r edific_bWSplain,'a sort of pifR6ard*kQon totia steeplB Tom droppe(ps2acc0a comrader]2ay,N,o)2a y*;aticket5Yesy'e'Agive:APieclickrish fish-hookX2LesExa'em." 5(0 ? W propertyGd@!tr=cMwhite alleysb  E6Tsmall+ #oro9forSsblue on(1way ,b boys Sy camwent on buyingz of various colors ten or fifteen minutes l !/ qqa swarm; #leg Rnoisy: irls, proceemoE!se &dAed a quarr84Airst5jAcameyQ teac a grave, elderly man,75QferedGny-'6>aTom pua boy's @ !inM 3;"was absorb% the boy  ;[aa pin w I boyk%8 hear him say "Ouch!"got a new reprimandJ 'csle clasWqof a pa --restless,!tr\Csome> Qthey to recite their@w%~am knewuverses /,!habe prompv8ll along. Howe)worried @2reward--in T blue,,q passagl"e '(;2pay#wo1 of  ation. TenuB equa#onc7$Tbe ex^qfor it;0Cyellow onep #enV> Wsqsuperin;"ntat1ly bound Bible (qforty cin those easy3s) SQpupil2 maH$!myKe* (the industaapplic+4 toeTthousand]H2 BDore? And yet Mary had 2two%is way--it the patie5!rk!^  oy of German parentage had wonRqor five3onc#ed i out stopp/{Gtraitmental facultiesyCtoo (haand he~+Abett {U idiodBat dth--a grievouC2he :"onpR occa$y company f(1 exbed it)  'y come out and "(b." OnlRolderts13Bkeep}Li]1tedRlong  to get a2[s6y*sse prizaa rarenoteworthy circumstancer32fuls?conspicuous for  ;AspotEyQlar'stQ4fir"a fresh amb/that often_')ed\weeks. It is{1s Tom's qstomachn 1rea 1ungo1for#.o. unquestion6-Sntire& hNPa1lonQglory,qthe ecl+!atcI rIn due K  &Rp in {e pulpit" a6d hymn-book inh)!nd cforefi"O(between its leave Frd atten0G  ! m09>y,4aryAspee  RGs asoEBas i ainevitAsheeTmusic&sq who stu'1forAplat<$ings a solo atn %!y,:Qneithen sa refer.0k. ThisN0fa slimEirty-five a sandy goate8Qhair;1ore 2iff!Cing-wE"Bsensa}!itenew hero ups C!on l Xtwo marvels to gazt#injbof oneBboysall eaten upenvy--but tb)est pangI-swho perstoo latDS themselv contribub athis hsplendor by trad01 to't wealth+bamasseelling whiteprivileges s]D2pis,Urthe dupa wily fraud, a guileful snakeRgrass !4was;ew 2Tomo"as%2eff superin"nt pump upI7!s;it lacke&wS-true gush< IQoor f' tinct taughZ-xzw not well bea]l  k4was.preposterou8 c!!hae)Q thou[!sh $al wisdom on@remises--a dozen ,#capacity,Rout a8. wBprou$glsH<T1Tom it in heL-ouldn't look. ShH 3n ss grain %"d;Ta dim suspicionbG(b--came P-! wnEd; a1`#glrld her ] +her heart brokMs jealouaangry,t'&rs3shebody. Tom G!of (Hhought). )asohis tongue,Qtied,J4 2rdl"quaked--part75cau awful greatnes rthe manGmain6H$ have likBfall00borship!ifyqLq1ark # ph an Tom'!ca9Rhim aC * sand ask!qhis nam?hwstammered, gaspe!goUout: "Tom." "Oh, no,QTom----" "Thomas'"Ah~'TI7!or\ it, maybe{'W well. But you've)one I daresay""llit to me,6Q you?1ellQ "an"Qother", ","'Walters, "5!fay sirX=n't forger mannerI Q--sir1it!B's ayvF . t, manly0 Q. TwoLverses is a  many--very,(.'2ou $can be sorryUQ*c you tOAAlearm( knowledge is worthchan an@1<3is pa; it's4#e  Dmen;V$^d3Qman yC$Alf, -5day1'llR,Y9ay, It' R <)1rec ;A1 ofDoyhood-- Gvmy dear-5tha^mU<  Jood ,L$en? H.)3 ga beautifulI*\d id elegant'"anH  for my own, always right brin"upA is |2you<{!~&take any mone^ose tZZindeeE1nown't mind t $ m+ "isB2 hylearned--no, I know --for we are4$of3boyG!. 1no vAknow2nam^r, es. Won'Lbtell u9the first3tha`!ap$Fed?"l1tuga_utton-ho sheepishblushed, nowz1his! fO'MAsankm ain himH_\ETAposshtc2sweb simplest (--why DIDH=ask him? Yet hBrt obligspeak up say: "Ad'1--d}#be!.L_hung fire."*$me\ady. "TF twoeDAVID AND GOLIAH!" Let us draI%cu3 rcharity tYsceneJV ABOUTQtcracked be2theu church ?R ring01epeople(1 ga||"mobsermon. childrenHA 5!e C C eoccupi5ith thei s, so as K{Kd. Aunt Polly zTom and472sataher--TomL%"d G8sleB2!ha9A be GrE9the{e seductive `AbsummerEs asQ crowd fil/"s: 1gedneedy postmast=!hosseen better days C may<"hiJ "ha$y3re,| 4 unmp#ieOejusticRpeacei widow Douglass, fair, smartQforty!ene,O2-he4Asoul well-to-do, her hill mansj only palactAChosp+and muchKmost lavish 't of fes,St. Petersburg [RboastAbentxQvener,3MajsMrs. Ward;  Riverson,bnew noaACance_1ther village, followRa tro8lawn-cla.ribbon-de!3 p-breakern#q clerks!owfa body;C had.G vestibule sucD!cane-heads, a circYb!wa! o !imcg admirers, ti Alast!ru ir gantlet; and/AcamedModel Boy, Willie MuffFs heedful carlQhis m5 asXere cut 2x ! b=tN,>#to, v1prisrmatrons(2ll vh !so0. qbesidesa"throw;3 Qm" so. His whit.kerchiefZhF#q pocket behind, as usual ons--accidentalN)noa!he 1ed ytas snobcongregapefully (: 'T1once, to warn laggard0straggler a solemn hush f p! <Q+vdbrokenBtitt=8and& choir is galler=GF!edthrough =conce adQY Pill-bred, but I rforgottgh!rea2. I !y [B agoV.I can scarcely rememb?_="itI kg1 in foreignj#"ry* minister & "ou3hym-1reaba relish, in a peculiar styleZeat part His voic on a medium key&Zasteadi:/i0% a"* rBbore1strY5umphasis topmost wor splunged8spring-board: Shall I be car-ri-ed to!sk !on flow'ry BEDS of ease, WhilstsyOIH sail thro' BLOODY seas? Hqregardeadful readKZt"sociables" h= #R>!to;r poetry,Cwhen32ughcqladies l3 up<3han let them fall helplesslyrir lapsc"wall"C!eynB1k\!irZ5s, u say, "Words cannot71 itfis tooV, TOO rtal earth." Aft 2hym~&Bsung2RevtSprague#' into a bulletinGuoff "notices"ge,qocietiej-1i#)o4 2st qstretch of doom--a queer custom#is vin America#cities, away x4)1 agAabunZnewspapers. Often3Eless, to justifm 1adi7l3Bhard")q get riu'ittprayed. -, r:bwent iIhtails: it pleadea 2rBttle),3rend:7=eip ' itself; ?y([State officersqUnited . ' 'C)s5A Pre.t_q Governm$poor sailors, tossed bK1rmyM ppressed millions groaningeel of European monan  A Ori5 despotism1sucDght 2tid?'rand yet-M"yehqee nor !to &alRheath)the far islB seaZaclosedW a su Twords!abmfind gra)RfavorV!seLm fertile ground, yie%Qime a?0Charv9good. AmenP!re 3a r(Q of d v8! cPy sat down whose historybook relates disQenjoyQB, he< Aendu}Qt--ifN1ven9J r  it; he kept v y a63 --Lp"gc#, qBzc of olvthe clergyman'ular rout}&VaiQtriflsRnew m3 terlardedear detected iWhole nature resen!considered adAs unqcoundre I |/B a fU'R lit  " bAew i#nMmaAtorthis spirit by calmly rubbing iti d8, embrac"eah,3armpz}& so vigorous7at eo$;part companyBbodyvthe slend9read of a neck61expto view; scra0Qits w rind leg'AsmooT !toCbodyK|been coat-;~,&le toilet as tranquib if it.)$E safe. As!ras soreEaitched@rab for iynot dare--}4iev3oulbe instantly destroyed 3did qg whileB was2 onhhVqsentenca curveTstealq.Cthe ra"Amen"r!hewas a prisonwar. His aunt bthe acmade him let it go rhis tex8droned along monoton an argumea%"sybmany aBb &byBnod 3y Wdealt in limit 2firMbrimstonSthinnpredestined& Eto a#so !2worA sav1)2Tom_&ag ;; $ % h2how:t#aseldom: Delseqhe disc MH"is!he8qreally {16forE*a grand and moving picJH"&+=world's hosts at the millennium*B !onc aamb sh"%liS[ , ,!eaAm G2hos 5les1mor/C theEspectacle werQahe boy v# D" principal character beforEaon-look<>!s;#1fac" oirhimselfYhe wishe",Q tame lionf!w 8Qpsed (ing again,fhe dryQumed. eHpA him treasur # a large black beetlformidable jaws--a "pinchbug,"8#Rit. I/=ercussion-cap boxhm1did/bto tak)b' Afingal fillipgIbfloundKZ2isl1its !ur ger went1's Co!lart5its" legs, unAto turn over!ey !lo1forF^!ofCt. Other'uncR]1q relief# wyof too. Wa vagrant poodle dogNA idllong, sad#Bf, lazyI1oft e quiet, weary of captiv(1sig"for changeMs;HAdrooz Ataile8bwagged:1urvrize; walked a it; smelt a87afeu4 4; grew bPJUA6rY1l; Trhis lipqade a gzly snatch,YA misa;3it;/nn %; g diversion; subsid  Stomac)W betweenm3pawh scontinu experiments; !ath Aindi- absent-mindi(1nod ittle byrhis chin descen/ou he enemyAseiz[2re sharp yelp&li' fell a couple of yards away, S}Amore neighboring spectators shook)a! inward joy, s2afaces rA fanI s)_aentire #ppXdog looked fo8 4probably felt so r1entc iheart, tooBaG>qor reve1So .n:9gan a wary attMnWQ jumpfRevery2B, lightingP!hiKJae-pawsin an inchB2YouUX O=3Oh,Q, I'm,/"W4=--wQa, chil9 X!my! toe's moF1!" J#ol[UBsankqa chairB#%ed! cEB"a did both0,Arestwh/d<P," ayou did Ce. N ;1shus aonsensCd climb"thg{$ThS ceasrain van Afrom!to   ' it SEEMEDi"itTBso I B my aat allqQYour ,#K+ Sthem' aperfectly" "Ther|Tdon't Ahat @'Open your q Well--4 IS1butcre notwVto diG!at. Mary, gec>aa silk a['1Rnk ofq"ek$2n." !pl/j7 !hue. I wish I mayO%qdoes. P_@.1wan-]stay Don't you? So all this row was E1youM>ght you'd7i ibgo a-f*?yI love you"1+!ou !ryQy waycQbreakX?l !t soutrage!=." dental instru?S read #%on8the 8^I"'s:Ra loo& #tiod edpost. TBseiz* n^QthrusI($inR2oy' U hung dangb- } Rrials@*1qcompenst+s'#enrschool >fast, he6qthe envc( 1 bo"5metSfap in 1row&eeth enab 3 toMRorate!1new<>4 s9ing of lad9G%in the exhib@0;2oneShad c ' 2hadr a centre of fasc and homage2o[Qnow f:OJout an adheren Tshorn!Rglory'QheartyBheav 3a disdaibZit wasn'tDo spit like;our grapes!"%e wanderh dismantero. Shortlyb3camMthe juvenile pariah5he n;Huckleberry Finn, sthe town drunkard.,-Qcordi2hat2 dr1#by "e s{t 2idllawless and vulgarRbad--zxk?eq delighV-forbidden societyAthey dared?Rlike B!om @!reNCRboys,faxenvied >his gaudy outcast cond;as under strictIQrs no8Mm1Splaye3him1timf2got% Ince.c!slways de cast-off _سll-grown meAthey  in perennial bloomRflutt sCrags{!ata vast ruina wide crescent lop a of itp!m;ecoat, +72ne,Bnear^2his[ !haQ rear!buttons farY ; 2ack1oneMeaupportos trousers;Ceat ! b$A low~contained n A friM&rlegs dr4Bdirtanot ro[Iup. 1and?A, at"own free3Yrteps inKDweat in empty hogs> in wet;3Qto go2 orurch, ornmaster or obeyXcould go  or swimW1herCchos1sta/long as it suim; nobody~V$fiyhras late! p8 d3t)2boybarefoot Qe spr'gnv~Cme lsAfalli1to wash, nor put onf0wear wonderfully. In !rdJ8tQEgoesxlife precious{!adgrthought\ harassed, hampered, ; inkBR!ha!AJtomantic : "Hello$!" K ee how youh9it.a A gott rDead ca%RLemmeC"imp. My, he'tty stiff\Are'diqget himQB2himR a bo#di4zI a blue ti@1and"adBat ItVter-hous1 T#itBen RogersI!goa hoop-stickE6SayU!cats good for2hGA? Cu1rtsHSNo! IQ3so?JV some6A's b3BI beedon't.ibaspunk-?5S! I wouldn'tqAdern 85You-,  $D'OD tryqNo, I h DQBob TOA didrWho tol!so"he Wa5Johnny Bak im Hollis8 'ld2Benmca niggLC them bre now2ellt? They'll lie. Least<1all WA. I 2HIM(I%eekWOULDN'T\Shucks! NL!te`lbone itvQnd di=2a r/BSstumpLthe rainQA wasPI qdaytimeClith his fac Atump-3Yes* I reckon so[ADid j y5 3"I :.lAknow@Aha! Talk1tryN:o c such a blame fool,c@Aat! @S a-goVado any2. YV rbrself, e middle Qwoods\5Y's a Btump1jus'7rmidnighrback up!s qand jam/Q: 'Barley-corn, b injun-mearts, ^ {q, swalle_&drts,' 1n w way quick, eleven steps,(eyes shuthen turn.<BtimeYAhomeDrout spe+ttbody. B#f$Wcharm's bustesounds likxrood way !!wthe wayB donNo, sir,x1cann't, becuzoGartiest cis towT!BE1war 2him!!'dU!ed*xto workYS. I'v1offs'9"of off of my9sAway,m 7. I Tfrogsv$*`U 5got;"Qmany gb. SomeI!'eFNSnYes, bean'~de%1Havk?,"'sSway?" "Youd6 2pli!be#nN1getb blood"thN# p3" o rEpiec!be,d{q dig a *1t '`?aYrcrossrorqdark of6mooQ burn/ $styBbean#se Uq=.ll keep drawN$nd ,mA feteXFZ v+1"soQhelpsh!toOA the.Rf!sof}Qcomes %--;"gh,"bui$you say 'DownV;awart; 1no @'Bto bgme!' i & Tway Joe Harper doe!he1'enCoonville and mosQ bwheres#say--how do:"urA b!ak1r c+Enm?graveyard '%Ubout wwXromebodywas wicked hen buried3Fit'sFqa deviloP, or maybe%,3 't see 'emcan only+ 7indYAhear9Qtalk;|they're tahat feBawaym#he<<1fteMGqsay, 'D  corpse,i,A1cat,Qye!' ;2ll 91ANY7b." "Stnright.}  "No@Rold MrHopkins mz !soqAn. BQsay sra witch#ay AKNOWQis. S$*$pap. Pap says so his own self. H! axAone *a#!eeUawas a-Sring himC !e T'!ro-Bnd i!ha AdodgQe'd a>e)that very > $heFoff'n a shed wher' s a layiQbrokes1arm"W#!diOknowLord, papGeasyK1loo- *q stiddyDyou. Spec"ifcmumble d$b're saS he Lord's Prayer backards2Sayy y:"trB1cat1To-. .old Hoss Williams t8a" "Buy him Saturday. D` ?qtalk! H5uldbAarmsF d till -?--and THEN2Sun|Sevils Tslosh 1muca,2, I' L!nLaBso. #goT!f'"--$Rafear A B! 'T qlikely.djAmeow1Yes#, Z'geR Last timeOkep' me a-me8!arA1ays( r&rocks at mJb 'DernQcat!'qso I ho Abric{!hiDsdow--bu+BbwTIn't meowe bauntiea#me|Q4'll8!is%. 3!'sOL"NoQbut aS%Ou1-3at'AtakeG .Uqell himHAAll 4. It's aIqy smallr, anywa#anybody3runw6ae1 bem. I'm satisfiiwF!enAtick"Sh!tiu plenty  1 ofrif I walCo2whyn1#wed!cawT&Cs a Q2onef YAyear,b--I'llbyou my  ALessi1Tom1 bi$pauAcare3 un$Git. ~a viewe#Awist-. The temptation+strong. At%he"Is it genuwyn4Tom>'>!shthe vacancy.a!,"YB, "iAtradTom enclosQ8 A@lately been: 4#'sG"th separated, each fee !wealthier thqfore. y'4Tomy'Dittle isolated frame ,trode in briskly=Pof one who AwithQhonesbed. Heahis haQa peg52fluT BselfJ4}31eatI r-clacrit", throned on hig1reat splint-bottom arm-',R1doz)!luW" drowsy hum of study. The51rupcd "Thomas Sawyer!(Ghis name{f7 in full&!me$rouble. "SiO"Come upcRS. Nowbwhy ar2gaiN3cusual?= "to Srefugz"3lie' Pw ; ails of yellow hair hangingoae recogn$PHric sympathy of4%;&bat forTHE ONLY VACANT PLACE girls' sZ QinstaE STOPPED TO TALK WITH HUCKLEBERRY FINNY's pulse\:Qhe st helplessbuzz of 5r ceasedcpupilse) foolhardyaqhad los% u/:9*(d did w"Stqto talk@ Finn." (eno mis}e words,!isE!motounding confessionYever listen!. No mere ferul answer f4is offen%1akeyour jackej  's arm performed until it!ti#>Qstock1wit) _y diminish`A ordllowed: "l!goVs!th! And let)bSt0xr titter-VripplE{qom appe^rto abasiboy, but in .G14was caused rather0!byworshipful aw%his unknown id(&IAead _#urRlay icgood fortuntss Rwn upk(1pinc<c0)'Qirl h,away from himaa toss$&nd. NudgesBwink$qwhisperO4verBroomrTom satW!hiIs "Aong,"CdeskO1eem[book. Byby atten$DNjX#ed murmur rose]AdullxEPresentlboy beganqeal furdaglance robserved it, "4G,2" a8and gave hi-HbackRe spa\ta minut2she caut4duQ, a p5layi"erthrust it away1g!pu>Kback,^2butC&Bimos;$om9Sly reZiqits plaz!heit remaindscrawlts slate, ", Bit--2 more." TdJ uno sign. Now draw some *!hi 1eft;q. For a31ref:2to ~[Sher human curi@Axq manifeby hardly perceptibles !boPkAr, apparunconsciou+Qa sor^ noncommittalnmpt to s6 did not betra/h Aawar&itM 2she!inQhesitB$lyb!Le  Apart 6=*l caricatusra housetwo gable ends}a corkscreC,smoke issuingS!thn[AmneyX" "'s !es0Bfast6elfeAworkqshe forgot $D els`f6, she gazedAAment)n ,It's nice--make a ma artist erectH$an%front yard,qresembl(qderricka 4~1ste\ !ovgek&not hypercritical;Kwas " Const! a beautiful man--now me cominggom drew an hour-glassa full moontraw limb1 arhe sprea1finE$a portentous fanwL #t'#soI wish IPddraw."feasy,"q Tom, "1TlearnB"Oh,i#AWhen At noon. D 2 goh1to dinner&PDstayAwillrGood--tAa whas your] EBecky Thatcp5yours? Oh,$& l1theU they lick me by. I'mIAwhen \2YouW)1me Yes." Now<N  tl1rdsW /1"gg1see !Oh~ain't any\ Yes it i5"No'#wX5I do, indeed I do. 4letVYou'll teNo I won't--9Fand Rouble%"ou3G6A? Evs ! aA liv!6&M! e3ell ANYbodysOh, YOU!Lyou trea#o, I WILL see."+ 1sheher small =  Dnd aQscuffLAsuedq pretento resist in earnrut letts_ slip by degrees till thesdA4vealed: "I LOVE YOUj"OhMb-Fing!1hit hsmart rapreddened >b 2ed,~&theless. J[$K junctureboy felt a slow, fateful gripM3CB earp a steady 1 im+zSwise Aborne acros Gposi0own seat, undwNBpeppX/a7f giggles i!tna~-Cstooqhim dur;q few aw_bomentsfinally moved IsU4out5ba word3"al Tom's ear tingled$EBhearWjubilant. A rquieted 3Tom nQefforX Bstud the turmoilRin hitoo greatqurn he h#hi  Bclas1}1 boef it; theOgeography4 Alake3 o mountains, Srivery r contintill chaos wask  Aspelc got "down," by a succ`"ofG1babA dN3he C2 up=ae footyielded upkpewter medalj worn with osten|for months. CHAPTER VII THE er Tom triedl shis min,# " mXs ideas wandered.9,b a sig:a yawn, he gave 0V. It $anoon r4Fb wouldm} air was 3Aly dc#t a breath stirring. IRleepi$ sleepy day drowsing<Re fivUtwenty studying scholars soothe/soul lik= #is_bees. AwayE1fla sunshine, Cardiff Hills soft green sides th[ a shimmBveilaat, ti| the purple`iWa few birds float Q lazya!ir; no other liv*bwas vi$x1but7 4 co^W Cwerer's hear=!be3A, or 3 toA  fE to do to paq drearyH4. HcQ into%poO0his face l"gl%:gratitude3wasa#, ) not know i!enXJ3ivexrcame oua him a"Va pin"!6newx 3's bosom friend sat nexb, suff!ju9;4nowMadeeply{"grm& 2ent.1menj3an  7was'rtwo boy r sworn s|1eek embattled enemies on"!s.^took a pinBJAapel #as q exerci1er.AsporZwwU<rly. SooG 6}Beach neither g g1ull denefit*!ti<!o Qt JoeAQ4ate 1rew "neFthe D/!it C top)Btom. ","Whe, " Ahe iqByoury9nbq him up)qI'll leB!e; "2get d)et on my[,@re to leXalone I can keepQfrom  S v!, go ahead; star!upb escaped!pae equator{6DawhiPtU:5G݁ghis changbase occurred often. Wg"onZ !wa5r^&t7r absorbNHYblook o? #as 3, t9b 1ogeo|QsoulsC to B1ngsVluck  S b JE !hicd&atxDcour9rQs exc Xs anxiouh|!thH mselves,<0Egain:Auld evictorfvery graspn)"to#1 cbe twi%to begin,3pin'Bdeft+Rd him;1andTk W)gl:n(uno longzQemptaswas toocqreachedFand lent a11pin 2ang a. Said he: "KbI onlyd1wan TU2#NoJ a fair;e' ~3QBlame>I'!go l#mu+L?b, I teK|"!" shall--+#liALook !a, whos\ 1ickICcare$m /ha'n't touch %%,Qbet I . He's my/do what I 51him die!" A tremendous sdown oneshouldits duplic r!s3twoW dustbRto flbjackety[ to enjoy had been tooS]sBhushhad stolencschool wCetiptoe"\nVd (Hcontempl (p4~performance |!heQributs'Zt2%broke up a flew to P1 in ear: "PutHabonnetlcyou'reBhome11you)5\rcorner,'.2 'eAslip|rthe lanAcome.!goQoAYcame way." S6"ne+5one group of -gCith EF. InL:*"et e #la.:qthey ha {Uy sat," a5JBthemQ)3ave the pencil 0.Jriin his, gui 4 3ed a surpr Ot&Gn ar2w#fealking. ToAswim]in blissS}%!DoLlove rats?" r! I hatM do, too--LIVE onesI mean dead,qwing rouSr heaAa stq[1for much, anywMA likIchewing-gum<l25o! 8qome now/?8"go1letAchewV3 2youUqgive itQ3 to8AThat`agreeable& hey cheweBturn'Y?K!irSk,!!stRbench "cet#ntment. "W>)an/circus? T #YeQmy pa7!"mew*Atime/ET" "I)f three or fouryQs--lo:. Churchr shucksbD-C (on/; qbe a cl5%nWScI grow )"! ill be nice1y'rBAlove ll spottAL1so.=v1getAhers of money--' dollar a4 cBsBSay,_+bengageSWjt`(2!b ٪"ieN.+ 2youC!to.E so.CknowqQis it2/Like? WhyG You S Qa boyRawon't \ FZ\ Zcyou kiPw all. Anybody%#do.b"Kiss?d=1for2X Ynow, is to--well[yIoAEverqH2yes+'Y8 ". z remember m F wrobbYe--yeW]YC%I  TShall 8YOUHB--bu5No, t now--to-morr8Oh, no, NOW7!--Vrwhisper aso easLQ #o took silenc Acons"and passedBarm Arher waiS]QT talezC7/outh closuher earn he add\$2Now!--d t-P3ShePj" a^2You vBfaceBs^23 seI;I~you mustn'<[--WILL you]?&,!N  .a." He n\DidlyZ(her breath stirr?Bcurl , "I--loveP-.(r sprang#tand ranfs+YCes, with1aft*uy/x Cher 1JQaprone1ped"nehV pleaSWn]ll done--all a. Don' be afraid Eat--+?+ll. Qhe tu{"aD YhandsA+2she us  qs drop;Qface,rglowingy"truggle,,O submitt-!omqred lip 3rNow it'ACdoneEPBt 2yout0mk+@!toXy,2 meand forever. Wi 3'll)u!LLkmarry +2--aX - 3ith)CEly. :. u's PART{)I('U*we^w02me, Rthere<Rchoos Dnd It parties, bE  1wayeO4're DIt'sW'3. IRheard -|%'g>mSAmy Lawrence--b2bigF1tol{ ~DlundUe stopped,1Sused. BTom!,/irst you'v3 to"W chil2cry94Oh,trk I"arshy   1you1Tom3 kndd i  BneckJ j%sg0%im!Qrhe wall1wen\bcrying05  ing word GQas req$: (!pr4as he strodWQbutsideY,2lesquneasy,: Sglanc2oorMQy nowthen, hoping she.RrepenSato fin:4shee-e1 to81 barnd feari.;'roS!ea hard2himke new advancesM ,Nqhe nervRmself{Q and _]"zstill stan797, sobbing.!'sDt smote himD ?2 ,ing exacoQproce-ge said aly: "* ], I--\ A." f4ply 4bs.D1"--/tingly. Y !mea?" MoDTom got ou( chiefest jewel, a brass knobToan andiron2{ $itd h,2thaq,{/3w * y Sc3uckY the flooruTom marH.:C hilR 1far[!rez1 noday. Presently 3buspect rRT1was7in sight. < 2play-yard7SthereU1she,v Cc, Tom!/alisten}trL7had no companions l oneliness. So s t`Ro cryfp1upb herself;qby thisZ L1gata3gai[ashe hatAhide+Qgrief?6cbroken aK of a long, $Q, achhfternoon6! nk#mo Astra/VSto exbsorrow/ q'I TOM dodged hp t through lanes96H@&ou!r51ing3larinto a moody jog. He va,"branch"9"reDH  6prevailing juvenile superstiti!0 c water baffled pursuit. HalfC1! l$disappea<+Bbehi Douglas mansion jbe summ"'Z ,1wasly distinguishablCoff Ccvalleyۖa a deny-od, picks pathless wa>r2ent;4.!onssy spot,spreading oakrnot even a zephyr(*_anoonda(at had 260 Tsongscbirds;:1 lasa trancCwas Vby no sound the occasional far-off hammeof a woodpeckiBm 1 re .1rva|wense of|8*sprofoun=Rboy'su)w!1eep melancholy;o A3s w<happy accorqhis sur1ingA sat< )oAlbowhis kneeO2n i.S, med69 * rhat lifbut a tr=1, at best +3orlRQbeen 2!eda2g--Q very dog#" by some day--maybe wh@8too late. Ah %die TEMPORARILY! Buselastic]o?ath can4e8Aresssqto one {rained shap*46Tom_&drift insensiblyJXZconcern"is7|.T cack, nowmed mysteriously? aaway--A'so3 ?countries beyoBseasQcame S! How 2she{ then! The idea of beQ recu,mto fill himdisgust. For frivolyR jokewStight"anAsy intrude`/1 upbspiritwas exalt3vague august AEthe romantic. Nota soldi<,"yell war-woraillust. No--bette4ld#joIndians,unt buffalo$$gowawarpatr4x2S rang-the trackgreat plaite Far W 0QfuturM+A q, brist2with feathers, hidej$ith pain,bprance. ,(QrowsyN $er|a bloodcurdssar-whoose eyeballaG unappeasu envy. But noOb gaudin than thi/dpirateas it! NOWK2lay~ #"im"glaimaginsplendor. HowMHQould c people shudder1glo(AS go p{Sthe d2seaf"hiu,1, l'qlack-hu 2racZ02e SsFc StormHIisly flag flyA fore! And at the zenith ofQfame,suddenlyDIold village8Cstalcb, broww-beaten, black velvet d ArunkCjack-bootcrimson sash,AbeltJ"horse-pistol9e-rusted cutlass atCAsideM2 sl4("atTwaving plumeIcunfurledthe skull Abone*  Bhear[2sweobecstas>$G #s,3TomJ, P--the Black Avengerpanish Main!"  j,d Acare's determined)2runfrom hom Renter' /\.2theDnext[ Afore rust now+1 to&Wreadybcollecresources %)Aent rotten log nv%'an2digu 5 onFihis Barlow knif1oonrck wood ed hollow"puusand uttwis incan~,i8 dively:bhasn'tDhereovW!st 2re!^rbcraped`"ir Q expo pine sh9:i8and dis(chapely,2 trcH-[5hos'and sides wer/ds'iHra marbl 's astonishmenboundless! He scratc Ss hea a perplexed air7RWell,1bea*y> +Btoss5pettishlyStood cogitatUsuth wasfa Mqhad fai91and0-Brade0AlookR$on as infallibl byou bu OLcertain necessarylsBleft  fortnigh'BCopenCplac"8theP" h ajust uh3yout%a1s2had1los.  t0 H,9 |&Qno ma how widely+}Qk"w,~ bctuallunquestionably *-DtrucF2faiQ shak"-Q its Bs. H"Cmany C Rasuccee3but{aof itsBing :Q occu2himtit several timesC, himself,n;1e h*-scs2warvpuzzledy!an\decided $Qwitchainterf Bharmhought he tsatisfy at point; soe!ar<1he Csand aqfunnel-Qd depo!itJ9=$ F2 toyG and called-- "Doodle-bug, d $'#mev0Wgknow! 5 5*! sn1egaBwork"3bug e a secon2darted um)fright. "He dtell! So it WAS aAdonef !I ;%!knv5'"HeDknew2 iQof tr to contens#chahe gav^"Ś$ag%iT`he might asAhave>  w1 ,Oatheref@Btwicl.last repe2wasRssful$0Qs layU1foo Qeach a. Jus^%ebYntoy tin trumpet 3faintly dow%green aisle~QorestWoff his jacke|trousers,$ a suspe9belt, rakN Tbrush 4thelSlog, 8 n rude bow1arr| lath sword4in A7$Bseizse thingSbound, barelegg 1 fls "AhirtL7halfelm, blew an answ@9atiptoelook warily outk1way2thasaid cautp--to an }!ryH!an Hold, my merry men! K;BI bl06Nowf>q, as aiAcladbelaborarmed as Tom. Tom]Hold! Who s7ASher BFore_qhout my+q?" "GuGuisborneVAan's).^1art-L--" "Dar  hold such language=Tom, prompting--fo8y talked "se book," qmemory.l ~/ dsI*! I am Robin Hoodkthy caitiff carcas:Ahall%." "ThenRindee% famous outlaw? Rvgladly will I dispute#2the=Fpass3wood. Have aeyGWtheirqs, dump4eir.Brapsf e ground, struck a fencttitude,!to61kBv) reful combat, "two up andfdown."p!E Tom aNow, i a've goQ hang=Ait lM!61y "a," panhK !er k. By and bhouted: "Fall!K8! W`+ sha'n't"Nrself? Y(AAwors!it/4Whyh M@!'tv;A#ay it is inVbook says, ' Qone boa[stroke he slew poor $.'!toNr ,ame hit oQ." T#>PFuthoriti 1Joebed, received!whE@nd fell.&"4U Joe,^up, "you8o(N2 ki1*Ffair{f!docE_/ell, it's blameC's aQBsay, you can be Friar Tuck or MucAmillD[ss%R lam M h a quarter-staff; or I'll bSheriff of NottinghamJe w9h?Bill 0AThis a@#soadventures were cr4FATheni!beB6 L!wa- !by treacherous nun to ble s strength away 1ughneglected w- 4And/}! r 1entAtribAweepOC4s, R|Qhim sbforth,V m"ow(his feeble hands", e" Q fallTere buryuu 1eenqtree." She shT$ b&would have diedQhe li>+Aa ne0and sprang upMAaily a corpse.->dA, hi!ira!Gutre Ooff grieao <$noz4u3mor Bwond what modern civiliz= claim to h Qensatiloss. They;F-rather be year in than Presiden the United States 0 CHAPTER IX AT half-past nine!ToB Sid\1senm"be[usualir prayer=(onqK Aawak waited, in rest"imc<{it seem0q be nearly dayldhAlock;Bke taqdespair&and fidge#asrves demQ, buttbas afr+aSid. S12lay,%!st"upJark. EverLDsdismall<2C by,'YSness,a, scarceo[fnoisesemphasizeSC ticking aHh Ato b!itS-A1. O+"&ame! cT(!cstairs creakently. Ev1ly 6 !ts abroad. A m#Rd, mu(snore issued Aunt Polly's chamberA now4tiresome chirqf a cri!thA human ingenuity locate,JQ. NexV ghastly?SdeathwatcDwall bed's head made E--it#abody'sMPnumberedUBhowl{far-off dog roseg 3wasAa fa<K a$r O./an agony. At ih| 1ied+had ceas@d eternity begun;00 to doze$Aspit2e)chimed elevenl0A;#%8me, mingl Ahis !formed dreams, a most ' caterwaulwA raix&of a neighbo)awindow81urbSqm. A cra"Scat! devil!" aQ cras<an empty bo;z}ais aunt'sCSshed T#"dea single minute laterlGand jr$al,Sroof 3"ell" on all fours. He "meow'd" withn once orpn jumped  g3]*QL. Huckleberry Finn washis dead cat #ysAW1off\A,#edO#a gloom%thh," (all grass4graveyard. It &old-fashioned#ern kind13on a hill,5Da miK'Eaillage<1hadazy board fencet $itcAlean 1warY1outek$th!buZod upright nos1. G n!ed!ew rank M ? cemetery. A2old*spsunken in,Mnot a tombston!; {-worm-eaten qs stagg#Rover $ aves, leanaor suppor 1finnone. "Sacred) of" So-and-Soabeen pdm#="ittLR have7Sread,5am, now*1n i3 r7lFA wind mo $reSTom ft {\, complai(#atw(x\<R6nly ir breath6[ -Solemn(Q silew&ppX $irvyo! t arp new hea1yk1eek6ansconcQemsel2ithq protec0ree great elms$grew in a bunch?-WDfeet " "y U  42for H "a 1imeS hoot abant ow.]"btroubl !ne om's refld1ive%.aforce Dtalk) Qsaid $: "Hucky, do&ɘ6 ead peopleGZ3 usDqhere?" Zed: "I wisht I@eEQ's aw3Zs, AIN'T36Q"I beAis."ea considerable pau*"il\Scanva "#iss inward! n_ %ASay,3y-- reckon Hoss WilliamssI1#O'Q he does. Least8rsperrit"7, +a+2 I' #u MisterxI`  Aany l DQs him#A "n'Foo partic'lar1(tXalk 'boutase-yer  Ra damnd convers3die!. Qw Ahis comrade's armE1sai:Sh!" "What is it~$?"i nc%Atogeq!be#2ts.K C'tis again! z1you+{0Q! Now"OALordTHcoming! TQ, surmat'll we do/I dono. Thiny'll see us!'OhbA can!in^ Qdark,M as cats. ihadn't comecOh, doay!. Aliev<1bus. We(a doingl If we keep perfectlyR, may1y waB us N$I'll try toRbut, Y1I'mbBof a shiverListen!"be1!ir s e tof voices float% 4far`(A "Look! Se;Fre!"M  w-fire. Cis it." Somv/1figaapproaK'!Rloom,M tin lanternaTfrecka  innumerable spanglek  K#a d!t' sya. ThrexA'em!yQwe'reqrs! CanBprayNB:BThey! gto hurt us. 'Now I5#meo sleep, I--'"8 AHuckHUMANS! On! iWyway.'s old Muff Potter's }aNo--'tqu so, is AjDYyou stir nor budgBCharpfE to q. DrunkBausual,Cly--qold ripAAll O !, 4stiI5tstuck. Can'"1Herq#Dy coN.[8hot. Col2B Hot. Red hot!'re p'inted?r ,q"!o'qs; it's Injun Jo(2ThaFD--that mur!' breed! I'd druthe Zdevils a der'>!. ky be up t4The.| Dnow,! t 1men $re!e 1     ' hiding- Q. "H?9Dt is Qhird ;\*:wner of it hel TTreveaV1fac young Docts_`1carryingYcbarrowTA rop a coupldshovels onCcast#lo=!c2opeUF7" d1putd|_R56karH2ack1st fX2elm  Q closIhave tou1himurry, men!" !idTa low"#on91com at any moaRJy growled a responsgan digg'Fo(*2 no# b<"gr s)Qspadetbchargiir freighw Amouldl7 was very monotonous. FinaX Q upongScoffia dull wood*<2entO4'Ror twyRhoist'dg>Sy pritd!$irB, goB!dyF!Qit ru - `Tdriftg?Rcloud(0allid faN4he P!as3reaaorpse "it, coverea blanke>buCope.l(out a large spring-knifkcn;#da3z Tthen " Nm$cu Bng's, Sawboned you'll*"ou$ Afive\$ s?y alk!" sai.] BdoesSmean?3te. "You require3r p?Sdvanc(I've pai#'4B don(B tha ,; r Q, who Dnow @*q. "FiveBs agqdrove my q your fX's kitchen, when Ito ask f@(c to eaK3youWa warn'!!re2any goodWswore I'd get,AzQyou iuaa hundcgears, RAme j1 for a vagrant. Dta thinkiqforget?I^Sbloodq Ain m1 no.2nowvGOT yougot to SETTLE"r!" He EQreate<,e !isy Bace,n!2is  Tq8E1retacuffian dropped his !exDCHered #hi^(&rd~b next ! h-t grapplF "wo)Rstrug'and main, trampl% gFtear@3'rheels. !JoaAfeeta81 ey2%am!pa1nQ, snaQ3 up'/V"cr"Q, catYEAtoopCand  w'Tants,Q an oCunitwat onceQ,d free,62Aeavy5 of'n fҲt(Rearth"it8? c YiL A sawXCchanSj2theb1hilthe young man's breas+Qreele4BGqpartly , floodi  l* `ablotteXAreadcpectacf1 Bened Aspee!awHdark%> remergedO , '8two formsPRtempl }aamurmurulately, gw*gasp or two%2wasKm- rTHAT sc; :Q--damF0Rrobbe8body. After h9the fatal2in r's open R hand M dismantled } --four--fivss passeJ7.mB za1. H1nd dw#; C Q, gla!atand let it falla>g)sat up, push2bodA himLJ gaz]aK&confusedlymet Joe's1rd,ie, Joe?u .a:ay busi%#2Joeout moving.d]d+[%I!!it{] 3! TRT 3alkdewash."YAtremDI ew white.1ghtagot so"!I'BM!r!o-@it's in m* yet--worse'nw= rted here.vmuddle; c!$re=#an$gQ, harqTell me}--HONEST`Aold ar--didB it?zJ(qto--'poAsoulhonor, I nevt1ant5Joezc#Oh$+Qhim s, ad prom! -1youC?ay1inga he fe6G ) Bflat !up:3comX1reeX[ding li!.Ajammz%.5 'asE you7S clip ere you've lai'!as a wedge til nowbd{Uwawas a- I may die1if B1all on accou(bwhiskevV!axcitem"I .uC$ weepon Clife: fUO_;uAy'llsay that.( V8ray you Atelle--that's a  4. I_2lik</U !upE { etoo. D remember? You WON'Tc]a, WILL  A/ApoorS'Eture o SkneesUrstolid G#alaspedQappeaa,.)4'veA #fanbsquarej 8me,N# I<#go$n :MsXs a man can sayIy0an angel.bQ*1you^!he0est day I live.> ?Ccry.d 40$#isc 1anyYsQblubb. You be off yonder wa!go+T. Mov 3and5!leny tracksX"onM(quickly increaseQa run  &)He8 If he's as much stunne Q lickfL2rum2 halook of bel#he1eBtillzgone so far he'll be +}-e\!it:Ruch a>% b= --chicken-hear1TwoO tqs laterD0Rd manv ArpseA lid 2the ?+urno insp8!b moon' ness was completet 9too-X THE two Aflewqnd on, towarkaspeechwith horror*y Aback;%?aulders|!to, apprehens95'$yA$m &be followed. EVastump #up'Air p9&.'and an enemyw[+athem c+:bbreath"as"by"Aoutlacottag41yy.=21ark1*aroused +H-dogRagive wq:qir feet Af weqonly ge=ld tannery!wegk down!" whisp&1Tom|<Qtween5dths. "4AstanRmuch ]&ucC)'s hard pantAwere-1repboys fixed sSeyes z 1goaDBhope"4benir work to win it. ained steadily]1st,sIy burst open doo cgratef BexhaIiBshel, shadows beyond. Beir pulses s4Tomac2 2'lli!BIf D dies, I61 hav>!it?D m !?" y, I KNOW 1Tom#om&2t a$JEn he #1Whosell? WePBat aj  ing about? S'pos%!th1appEand q DIDN'T!? he'd kill usLvoO:  sure as *g <@  ~o myself, HuW8q"If anyAtell)t 3, i)Cfool. He's generTdrunky%U !--2 E s C "itrN!ca#teJ:#sQreaso 8QBecau>&"'d1geSwhack"F. D'3 he*5seeT?$ \7!" "By hoke:$'s-!" "And besides, look-a-here--maybeqfor HIM<No, 'taint likely ^GQliquo5ghim; I#th  |h Rhas. 9pap's full Atake/belt him&3hea< a church)2youn't phase 1say his own selfZ)i3sam !C, of(Fqf a manjJGoberZ W&)dono." .*$ve*p)2you"an!1mumw%to.*  #atadevil 5Rn't myQy morWdrownding us&a Acats!weto squea(iF+"ha!. X>u, less swear to one/Z"weveo do--0qkeep mu"greed. I Xkb. WoulGAholds_Un we--" "Oh no @! dA thi . for little rubbishy commokngs--speciwith gals, cuz THEY!c anywa ablab i: huff--but!or%^e writing Ra big BClood2's m0 applauduis ideao1BdeepAdark  t;1our3 circumstances1surRings, ijbe pick'ya cleaniOlvAmoon', took ar fragmes"red keel"7 f 1pocDkK1 onV#wo0fully scra!'these lines, emphasizing each slow down-stroke by clam~7his tongue AeethRQ lettpApres QCe upW&s. [See next page.] "Huck Finn and Tom SawyersCs!ndI+Awish may Dropd!ea6 QTheirT"if33eve1ellX!Ro  p5filKadmiration of~acility inA, an sublimityQlangu3HC'4pinqs lapelH6was(Qprick,QfleshWN Hold on!!dob. A pi1assA8have verdigre#n Qp'iso$/ swaller somic --you,a." SoSunwou8bthread"%his needl!Aboy  1e b.QthumbcsqueezBa drfA. In,{Dmany2!s,amanage2sig!Qiniti9u~8Hthe ~ finger fo/e3ashowed  1ph"! HQan F, 1ath%2bur9!e 1le q5 to:,dismal ceremoniaincantfqfettersJ$ b#ir8consider(Qbe loF"keArwn away4!ig[AreptURlthil(!ugX$Dreak[Wother#A ruiEAuild2nowLQQ*iVTom,"6, "#uYAEVERf ing --ALWAYS?" "O r it doe]cdon't y difference WHATv xY got J BWe'd"--Q6YOUe Ywts rcontinuHtime a dog set up a long, lugubrious<outside--within tenc*md boys q",qan agon+!.ich of us^4 he;%!ga4 dono--peep througw crack. Quick 1YOU#-- 1 DO#Hu2aPlease1 72h, lordy0thankful0I2his)4 Bull Harb`" * [* If Mr. y+d a slave named Bullk spoken of him as "Dl!,"aa son 2dog!atZn"]   1--I" ( most scadI'd a betmM a STRAY dog he dog howledv~W'3Ats s:"nc&.2my!%!no'I IA "DOM! Q, quabAwith? !Z%eytrDHis z"waly audible"Ohr, IT S A1DOG1, qK Who7Amust3 us both--Uright"5.+vgoners.EU1misM   V< I'LL go to. I been so wM m2Dad_1Thites of p1$oo!do BveryD a's told Ndpaxgood, like SidNr tried !noaever I 2off time, I lay I'lWALLER if"s!7Tom0"nx4( . "YOU bad!"7Q"Cons!it ^ ld pie, 'longside o' BI amTLORDY 9 only had half your chanceom chokeds6andh: "LookyA! He?9BACK to us(ucky looked!joh "hil9he has, by jingoes! DFRbefor.bhe didpIS#l,e"!this bully, y. NOW whowing stopped. Tom !up ears. "Sh! k BthatI#0!ed"Qounds--like hogs grunting. No--it'!!snC mqThat ISkWAbout"it8I bleeve3Uat 't| #. Bso, a. Pap rRto sl{Aere, Stimesv t$"gs laws bless<1he Rlifts1s'HE snores. Buhever comOto5own{hXEdventure rfZsouls`/Qdas't`o if I leadR 1to,2, s~ts quailep_7the temp up strong:7 3oys#ryJAnder{2ing'7 @#to@Sheels Se !y 4btiptoe  , 4oneJ CthervJ~4hadlqwithin 'qsteps o|!er'pBstic  it brokera sharp snap.man moan]erithedp his face came inK . It was"ha+rd still\|C too)Aved, )Dfear|(? A nowlypid out, n weather-boar& $-%at2 di# sQa paraword. J qrose on5'B air!w1tur n+!th-2ang  Ua fewQ Xt.Awas $cFACING7nose poi* heavenward! geeminy,VHIM!".A botds a!--say a stray dog3ai Johnny Miller's house,A mid2,!#as.eks ago;6 ppoorwill=1 in4litbanisterZ2ung|aame ev?0U L#B}!yej W"ndyE#se 2. D&cGracieT falls2Afirebcrself terr next Saturd;#Ye@sBDEADwhat's moche's gbetter, too:you waitbsee. Ss# ,Cure  z,)a niggers sN:2all *h<7c,dWBSihis bedroom Kh"al Apent3$ss]$excessive cautionCfelliP congratuP.2himMRCknew escapaden1was _Raware3the gently-Qas awake$Y bv5. eawoke,=1andCrak$q ! ig# lAsens&the atmosp+HA%##Wh% ae not called--persecuted till As upRusualK4  KLtW.%Nairs, feelowadrowsyr family R at tԌ!bu finishedQkfastAI"no of rebuk)Nwere averted eyes;:!anA'ofCHthat struck a chillhe culprit' s He sat "nd &reem gay2it -Nwork; it E$no smile, no; he lapsed "leyheart sin'$tdepths.HNN"idG bbened ir3hop>g2Gflogged;Tianot so aunt wept overxand ask*m-E !gobreak her[!o;rfinally3him o{"ru&3andRher gray hair '1 so=~ '?2 usZ hT: try any more.Z!waCan a thous"ppgaA was sorer nQ:"anL1odycried, he pleaded for forgiveTpromised to reforh 2andj {.[jdismissal, !!he_1wonan imperfec51cestablut a feeblfidence. He lefk  Ro misC vAl ren4ful(2Sids 2 laB prompt retre back gat unnecessar_!mo^o school O%3sad41ook+}hqJoe HarHDwondered i-!ha!ic%nir mutuala<Abody2Dtalk r intentlthe grisly "them. "Poor fellow!" 9T+Cught a)Son toG@=grs!" "T2'll) iy catch him!" This ift of remark"milB, "IzQa jud';=frNow Tom shivxAfromA to heel; >D stooG3 of+3JoeZ$isB12beg}s6Bbe, andas shoute!'s  Aim! 7com!!"U!o? Who?"ctwentyT8. }1QHallo0s1!--=3out!tuM{&Am gey!" PeoplCrees over\'Aheadrrn't tryYB--he4doubtful and perplexed. "Infernal impu "!"aAa by~er; "wanosand take a quiet$aFwork12--dQexpec 263any=part, now u- b, oste%Ausly]3ingC" btAarm.;pa's facw haggar &the fear tha .W bstood 1urdman, he shook ara palsy4bface iNBhand@ QburstJa tears P!do#friends,&sobbed; "'pon my pThonor> z0iho's accTyou?"F" aYicarry home.xCliftme1and3ed ` thetic hopelessnes5sw!:"*Q, youaaised m/"'dD."Is ?V i4himM#. msiy anot ca=1easmhe groundn-*BSome!1tol"'tEM8Ond get--"-1hud Qn wavr4f2les` ra vanquSgestus?"Tell 'em, Joewv'em--itl0n,1tooMbEstar`#he  2-he8 liar reel offrene sta?_# FaFlear skydeliver God's Eningmp]f1seeAroke3tdelayedr JJ3illBaliv'!iraimpulsx  BoathE!avubetrayed prisonerafe fad d 5wayBinlySmiscreant1solrto Sata.#itIbe fatalReddle]~ Rroper-1sucQower - a"$hyyou leave?"DwoC|d Qfor?"ab BsaidRn't help it--$,"amoanedx:2 ru+ ?1see} 3but he fell to5. d repea)BjustZSlmly,minutes after inquest,=Foath 1seeCwerewithheld1q 1rme20qbbeliefH1Joej h Aevilw become,Bm most balefully interes1hadDA , yB not+ M  bey inwu(bresolv w= nights,d#1L should offer,Ih%ofPa glimpshis dread  3hel2rai !of[NRput ia wagone rremovalQwhisp3 Q 2ingv  l0!blqlittle!; Dboys&tXappy Tturn n$wBtheyQdisap "ed1morEn onarked: !three feet of . 7it O AfearL1ecrx+ad gnawonscienc /iqs sleepvAas ms a weekG1at Afast_~3Tom/' !alCyourx1so t3youp8!e B hal9"ti^rTom blaband dr"c H's a bad sign, Aunt Polly,*dly. "WzRgot oB min_d?" "NQ % '[Aof."k23oy'shook soaQhe spcoffee. "An 2 doTustuff,"Ur. "Last said, 'It's 2" t it is!' Y7Aoverover. And y!, 'Don't tor6me so--I'll-"!'S5CWHATQis it$V?" E+  1Tom( re is no\2ing*+ Qhappe\1BluckF2cern passedm7S's fas3 torwithout kno.!it" Aho! W3ful1. Im!ity4 my24Q3its7  S%Lqfound a-Sightypr itself . Becky Thatcherd"st #tolMT had EQhis pia few day<'"whistle her dow+!,"1fai)&HeTfind `"ha her father's Lqand feeI%< was ill.rif she p2 diP)9a3`qno longbdok an `@tar, norq piracy charm of lifCgoneMadreari2lef}hoop away,#Bat; $!wa 3joym3 His aunt "ed& 'rll mannqremedieS2him06wasRose prwho are infatuqwith pamedicinea-fanglWthods of produc2 or mend:an inveterate experimA3 in-s. When sRfresh'cis lin Sout s!in'k{2it;Kn herselfp?iling, bu/!el"at Whandy subscribert-!ll#!"H" periodicalNphrenological frauds olemn ignorance %B inf#1was^th)strils. A "rot" they cont about ventilR !ow$odRet upj/Ro eat$Cdrinl42howQexercI 2 22frag?!onTDelf *.1sor#clto wear,&all gospeӲs=aver obser!ha! h-journalscurrent month customarily upseXhad recommenO <Rbefor21s simple aonest e 1was+5 soan easy vict!gaQ$d <]quackydthus arm:'bdeath, .9 pale horse, metaphorici 1spe> "hell foll"Qsuspe `aot an &1 of[$$1balQGilea6 disguise&he) neighbors.n!wa6 creatmee3new/,low cond|)f$e!haRaat dayN*,bhim upehi}!wn mBqa delug Bcoldn she scrubb3a towel liki7Aso b?t him tona*Bhim Aa wemqblankets 1Aweatas soulw1 "the yellow stainsiV a his pores"--as7!Ye rwithstabAhis,boy grew morh  melancholyp!ej|added hot baths, sitz hFClung,A boyX#"inbdismalShearsRassisslim oatmeal dizbr-plastersb calcuhis capacitn)Hould a jug'sfSevery day}3cure-all-#om come indifferQ32ionn!!isfW_0cphase r1the1Tlady'L,constern;ice must b9!upny cost. Now?of Pain-killthe first a She otd a lot)Ua tasteD 3as with gratitud'Rimply7in a liqui0 J  {2and&P3els2!piZO iA gav a teaspoon# 6Xeepest anxietB,qe resul &r mstantly at rest,Zat peace again; for""?broken up` #bo+1hav!#wn a wilder,i , built arunder him.3feli.to wake up;-Klife might be romantic enough, iQblighy, , c1getyD tooiAsent "oo  %ng it. So heat over%!ouC!nsd ,X1finchit poO fo+n# 4Qfor in4ofthe became a nuisanch Rby teeZT help'2Aquit)q >Ieqen Sid,had no misgivto alloy!dePEsinc&3TomMF bottle clandp#el (" !rebdiminish" !itW Cccura t5was t!ltIta crack !siG-room floorit. One day athe ac 3dos  Sy"#'su$ c along, pur#eA(%heHR avar.lqbegginga({said: "Don't askit unlessAwant&Peter." But s1ifi# W2. "You better make suh$?ure. "Now you'v( give it to you, because E $ #m"mebiEQyou d,mustn't bl8Ebut your W agreeableEH mouth open)Voured.Sprang a couple of y+Aair,LSthen %ed a war-whoopsL!f & the room, b st furniture,/ flower-pom*  }Z havoc. NextiRose o}"hi6,#pr ja frenzy of enjoyment,<2his,F !jL proclaimingunappeasrhappines % Atear ?ahouse a spreaQchaos>destruct! Gath.U!edDime r&!im/w$double summersets, 2naly hurrah,AsailG1ughVt, carryK1res^Gthe ZGm. T  Bpetr astonish2 peer glasses;Alay ;qor expiaKRlaugh?#"on earth ails@Tcat?"N'u, aunt,"O. "Why,+i!diaact sogcDeed IWknow,e; catsq6kthey're having c A" "$ado, dof'?"Btonemade TombD1es'at is, I belie<(2y dAaYou DO1-  Qdown,n 3ingwAinte>emphasized by{ R. Too?@!viAer "f.R handthe telltale 1visC ed-valanceUi ald it tom winc 9yesBAraism Qe usuandle--5"ar.csoundlj %DimblS, sir (1tre"at)dumb beast so #pi Thim--Zd!nyj." "H!--you numskuhQat goAdH" iqHeaps. BRbif he'?Qone sqa burntF4out2! S2 ro 0QowelsX!of3'w"n,PBthanra human!" Z!fe: sudden pang6o1Thi1 pu yhl |6 ruelty to a cat MIGHT beboy, too  soften; 2sor=r0',I Rshe p<'3 onDheadd gently)'qmeaning -!stQ. And , it DID d !-&om)" i Bfacejust a percepttwinkle peepinggravity. "/!haf Q%ton-B? Ye*BforcX," adR: he 1lea!if!cr`wqno choi("By` `h2farFMeadow Lan,t !ll to "take up" t, Qd fai#up"eaG;, !Fink %,Bhear old familia!nd rmore--i Bhard0v$ou<ld worldc]submit--b A for1theQ sobs.a thick@O1 JW  2poi7m_'s sworn T , Joe Harper --hard-eyCwithD5tlyand dismal purp=Srt. P 9b were "two(but a singl&" Tom, wi 9#ye1fleeve,qblubberBsome about a 6p to escape from hard usag1lacsympathy at= by roamBbroaOFto return"3by  Athatm=1not"m.it transpir was a reques !chK2hadKRbeen  nIkN3#a)1hun1 up_. His mo ad whippfor drin ScreamhX  d knew ;*1plaUtCwishto go; if.<!waXpl but succumb2opebe happy0a regretDing ;"erW1boyxA $un) ddie. As=wEwalk gClong7 +compact to u 8 byePQthersqseparate till death rgm2 ikyj3lay.:tplans. "Qfor b2;a hermitC1livb qn crustJa remote cav1 dy O a#rand wannRgriefQ% m31to 1he U S&a4~_conspicuous advantages1 a "so ansente!pi Three miles below St.easburg,|!wthe Mississippi Riv "a OaWQ wide"a !qnarrow,%ed islanS \6$2bare  o"d well as a rendezvous%1 in2!edrlay farQtowarL her shore, abrvba densk{Twholly un o1estJackson's IC chosen. Whon!*aubject%Qiracis a matted2 ]Ay hu(up}R Finn8 JmRqly, for rcareersho hhe was$jy,75tlykmtu#!ne;I$ot]river-bank two,vn1favorite hour--4\csmall log rafIthey meanLLd. EachJr,2ookl6)such provisiA4d steal amost dnd myste!way--as bec +butlaws_:Rbefordaftern2donCy."agsweet glory of b~h12ttythe towne"hear ." All whohis vague hint!!cas"be mumTqit." AD Tom@a boiled ha9c a fewKs 1%ingrowth onQbluffMthe meeting-8VstarlBveryAMT lay Qoceanl3Tom6ed Qbut n3 m Q>the quietenN!ve%w, distinc$ 6stlAansw 1bd twic; these sig, K&e ;bThen af5ed voice!We!reTom SawyK^he Black Avenger Spanish Main. Name your namesuck FinnERed-Handed VTerro]2easw BBfurnq rtitles,56hisIliteraturA'TisEC. Gicountersignwo hoarse whispers !e Hawful word simultaneJ"torrooding<: "BLOOD!" 2Tom6 sQUC4Cdown@qit, teaboth skin1F/!es~ome extenXB'BfforF {., comfortable path (Bit l8the!of pCicul8!da/rso valu[&  b d4bac3had Tworn 2outy'"it $.gstolen a sg* ntity of half-c#leaf tobaccol- corn-cob 3pip/.3An3e s smoked or "chewed"A saik !do2tar"z)J ! w1hought; m]ahardly'@Z"reaat dayqy saw aWa smoulJgG1a hWd$3aboy qwent stc'@ 5andjErhemselvsa chunk Rn impR'adventurLbit, sa r"Hist!"[A nowT2theV suddenly halt!fion lip; movM on imaginary dagger-hilt4!gi1orders inX"ifj/Dfoe"cc, to "%W)'K dilt," " "dead men tell no taleWhey knew2 en< raftsmen 3allQ lC in stores or haae2{]D exc^ aconduc` /1 un"AicalAOPved off, ,iEmx CHuckJ1oar!Jo=D qorward.>stood amidships,T-browwith folded arm/7hisTstern_: "LuffDbI"wind!" "Aye-aye, siraSteadyNAady-f it is/!Le!t go off 1P 0Aboys 2dilcly droGd mid-stream vno doubtET"gonly for "style,O! t!to E any&particular&a?"l'?1 '?" "Courses, tops'lflying-jib?"Se  r'yals up! La[Saloft,$! a dozen of ye --foretopmaststuns'l! Lively, now1hak\/maintogala@RSheet braces! NOW my heartiesWHellum-a-leeKTrt! SX2wJ4comes! Port, 1NOW, men! With a will!  T\ drew beyoc7mid#&   ed her head7?then lay oi)Hnot high, s  B notathan aEor t=C82. Ha Awas j!duthe next;-quarter ran hour2t1wasGing BdistXwn. Taglimmenlights showed rit lay,1 "sl#,j vast sweep ofAa-gemmed water,the tremendous ev:4!ha happening. 7 7" his last"-Q Ascen!hirmer joy06ter8wishing "she"2rsee himuQabroathe wild sea,~ng periladeath Qdauntj%, his doom| a grim so/rlips. I,!bu mall strain'0R,!to&vet Island 6aeyeshoN'Cthe ["edZ!a vnqsatisfi\a' p last, to q3so I y came near let#e \Q drif)m\ArangQthe i< oediscov "j !inF%qmade sh\o avert it. About'clock ip1morU'Agrout+1bar8 B thewaded backzforth until Ahad 2"d ffreight. ParRlittl|'ngings consist an old sail"isgaspreadIr a nook ce bush$1a tbo shel6eir"s u TsleepVqopen aiDgoodq., .!y6/sk J log twentyirty stepk  sombre depth 4estDen cme bacon1fryb!anI1suprgAand fY"upcorn "pone" stockw4had;seemed glorious sporuAfeas%at wild, freee virginunexplor%5 un CR, far61 2aunm Ba returcivilizations a climbO&!ir3 up6Bfacethrew its ruddy glare the pillared tree-trunk$irbtemple?X aDfoli>afestoovines. W'!he crisp slice of ""on,qallowan* pone devou Bstre'3outt grass,Q;contentmenyBhave3" a coolecZ Qthey 9dena romantic feaZ 2 roh camp-fi2AIN'T it gay?" !JoIt's NUTS!Tom. "WhathHA Aay ikasee us Say? WellB y'd just die to b&be--hey y I reckon so, 2; "͉s, I'm suited. M/u't want"better'n$Aever@#Cgen'ally--and > Rcan'tXband pikAa fe<Z qullyragDso."HAthe dfor meXY6!toCup, y(!ch{"sh 'at blame foolish5uYou see 3do ANYTHING, Joe, ) aa[hermit HE haRbe pr0dxm# t0naany fuyyGUll by&tt!ayPAOh y What's \ "but I hadn't thought muchFqit, youT. I'd-deal rather b mq I've tN(!itC3, "'"go}#onsQ!adQlike ^^Ato is`Ce's M'respectedr2 a Q's goWhhardest 6Ican finput sackYa 3hea)s<=$1raiAd--"5at does he put V for?" inquireZ0Fdono s've GOTV.6rmi5!do2:1do 3/5wasDern'd if Iww'v?an't do%`#WhY:'d HAVE toP'N0!itY6I3n'tv"it2run.S" "R "! you WOULDnld slouc<0be a disgrace U no respon*ecemploy)chad fiqgouging Qa cobQ now A"tt:e', loaded it) was pressing Qal toRchargAblow! cloud of fragrant smokj&iMfull bloomp-1uxu   ) envied himW majestic vicM secretly &vqacquire?hortly. 0AHuck:Q1pirT?E+,"Oh^#n1a batime--(b 2hem3get "nebury it in ?6#ir $ w!re's ghost Fings]i kill everybod --make 'em walk a plankSA y!wo "q Joe; "YAkill5RsNo," asT## 2g--they're too noble}Tbeautiful, too.Awear[bulliest }es! Oh no! All goldsilver and di'mondswith enthusiasm#o? !hy#B." o"caDbis own orlornly I ain't dressed. h"a &ful pathoH=;Z#go3!bu1$sex@Ftoys tolbe fine#escome fast,a h0Sbegun <W^2him!^2his'4rags}Qbegin,l(Lqy for wy  a proper wardrobe. Gradu5talk diedk ;vwsiness6'[z t eyelidm fBwaifF pip3ub9U (Drhe slep qcience-aR wearL ta} 3 :J%in . 1saiYayers inwardlya, sinc Dith authority them kneeXQrecitC1ud;h"ru2d a0!no$s(1m a,,were afrro proceU lengths asS, les:might call2 a dspecial thAbolt3 c6cn at o Qy rea1ando7'reimminent verge of O.an intruder( ,: not "down." F ,4e>41egafe$fWhad been doing wroD -#eytb. 3meaAthen!rezr^CcameY to argue it away by remindingzhad purloined1tme@nd applesfAs ofKB C!thin plausibilities;E!m,che end? R!ar%the stubborn&"ta-was only "hooking,"F6,O"am@valuableCplain simpleSing--Oa command againaMi"Sov  5hat;a4 "bub", )U2not~Q be sd.!thl}Ume of.3$ e؍uP Lc 39]dstent # Hfell CHAPTER XIV WHENCawok!, he wond% he was. He sat5Q rubb Rs eye'ny"omBd#ool gray dawT#ya%-8of reposKdeep pervading calmGBsilewoods. Not a leaf r!!; ! s!ob|great Nature's medit!Bedewdrops W 2upowCleavQgrassBQ whitY!xcPathe fi,Dblue3werK|some hand$r it laydst to (/Bdit by a narrow channel hardlybhundred yards widetook a swim | hour, so i the midd#thEnoon2Yy got6ptoo hungrRtop tdthey fared sumptu"ha-%themselves $balk. B_S soontto drag!en6} 2itybrooded pG! s of loneliFsFtellUaspirit1oysy!toking. A sorQundef,e creptWmVdim shape'6#--budding homesick'Even Finq Red-Ha.was drea doorsteps\empty hogsheads~all ashame",1weayC none was brave to speak &a. For A Aboysbeen dullyM!ouna peculiar A ,2"sometimes i>2!ic"ofZ##ckAk"ke6>!no' #(isAA1 befpronouY!fo a recogn72 st a glanc4 \aassume1ist23 atfR Thera ,R, pro_band unK1;Yqa deep,ren boomK floating downDn.#is it!" exclaimed Joe,S. "I [!2Tomi whisper. "'T@!8thu+@Dan awed tone, "becuz4'bHark!")qTom. "L7q--don't\#."2wai% 4hatSan agV] ame muffled boom trouble$| hush. "Le(5seevBspraVAfeet%"hu_ MjS1ownp1y pCy u(1ankM!pe2out+2ated 9!steam ferryboakTabout1bel' v,3Aing @, urrent. Her T deckMScrowd b*<!re^# amany skiffs ,T&oru9 neighborhooBcoul{determine what em&!jeSwhitedburst z E's sKas it expSand rNa lazy cloud, tAsames Cb ofz1orn steners again{ 9now Tom; "somebody's drownded!`HGHuck&*last summer,\Bill Turner gotVvy shoot a cannon ov$at makes him comRdtop. Ytake loavBbreaRAput &q in 'em2set Tyr,anybody!!, L'1ll =9i #!op'I've heardDthatUJoe. qread dolR!Oh)](Ld, so muchW&it's mostly v 72SAYib it ou%. "y >6say<iqHuck. "p r@O1XWfunny. "But mayb!sa)E . Of COURSEb do. A1$<Tboys agre=AQreaso(1TomF,@% a!uat lump3Buninfeescaped, unawaR.Bby Joe timidly H1&ra roundB"feeler"3o hI rothers  # aa ;D--no[_but-- Tom!er derision!, uncommit s yet, join"Towaverer quickly "ex)#ed 1wasTT g f<ascrape4 as#tachicken-hearted a cling-o his garme"!s z&uld. MutinybeffectV/1laid$qrest fo{s moment."heMQened,&#no&H to snoreTQ foll13nexc#laG)lbow motioq,>V %@1twosntly. AT he got up cautiously,7CkneeZ#BsearQ<the flickerflections flung%!he"*!piJ !upDed several| semi-cylinder:3hinAbark%t sycamo)1finchose two whichto suit himin #3lt #fi&ly wroteV@shis "red keel";4qhe rollBB!pu"his jacket pocketFtM $he+Joe's hab remov$lD  owner. A CalsoQto the hatschoolboy treas most inestimable value--5m a #ch India-rubber b ree fishhook@$oEQthat !of marbles n as a "sure 'Lcrystal."tiptoed his way #!s Y "he  h drhearingstraightwayc=a keen ru  "irr \-V A FEWsirX&!waM ) BhoalNbar, wading qIllinoi].re. Befoc depth rea,%Chis  half-waF  a:" p="no%},#aso he k]1wimKremainingOSswam bing ups   $=faster than dcted. However, 1Zr6$al3AdrifUlong BoundUR plac~JfRmAis hA N6Aiecexark safP .R#,35ing. Shortly before tenFecn openroppositBDvillA saw2 ly ? Btree- the high8. Everything^quiet undCe bl- !stK2He dkRGZ1alleyes, sli!c, swamor four strokXclimb7(I)"yawl" dutyEPboat's stern!1thw)ited, panting. ;!ra!qbell taavoice gagH1 or:o "cast off." A]j "la("'sh]ZsAup, s 1 swQ4voy abegun.M in his succ7!fom*ait was2^AtripB 2. A/e!a HRtwelvcifteenSwheels stoppedDTom aoverbo."ndaLysdusk, lSfifty6Bdownk,<rof dangpossible stragglrHe flewY unfrequenl3leys$]C:r aunt's QfencehoRapprothe "ellE lBin a+)1-ro Bndow"a 8was,& r/ Aunt Po:Sid, MaryfJoe Harper's mother, grouped togeB talTH s b ' &the doort B dook softly lifBlatcn he pressed gHyielded a crack; ntinued push,G= band quQevery it creaked,wQjudge  squeeze~9ugh ;i #hiq, warilWcqweblow s=I5up. >CAor's , I believe. Why, of coursr-cis. No , gs now. Go 'longqshut itF"."j"edM"la"Ded" 7`|C"tould almo\"!uc nSfoot.#asJ "Q rn't BAD, so ay --only mischEEvous. OnlyRgiddyharum-scarum, F3He Z2any bresponoa colt. HE never mean12hart@2]%st2boy:awas"--g&he!cr[Irjust so{my Joe--always full ofdevilmentbup to  rischief G`as unselfis'3Das h"belaws bless m&w2k I.an!htz#m,:once recolEAat I3wed myself ]Yis6$Sand IP1Ahim Xgi#ldv!, R abus!!" CMrs.ba sobbebif her3 3hope Tom'Jvter offi*BB"butQ'd been 5in some ways--" "SID!"the glare 2 olc3s's eye,yBnot 12. "g9N_%st my Tom,"Qat hene! God' Cke ctQHIM--F< YOURself, sir! Oh,G2, IuR know=odim up!!!!Hesuch a comforjla he tohQed myJme, 'mosrThe Lor,!th2tqhath taSrway--Blb 1nam"21!w$Ait'sKard--Oh,! Saturday my Jo<#er bmy nos D him sprawl%aLittleH $K !n,TCsoonfKto do over K1hug3and1him6 IeYes, yj1howMfeeljust exactly/longer agoqQyeste(Snoon, took and f3to tPain-killI$ ct@e house down!Go%Agive"I  ''="my thimbleY3boy 1deaab P  H"An'rwords I7Ahear2 sa6Rto re 2#Bu\6Tmemor$X1the$la3sheqentirely as snuff;:T now,Nm Bpitythan anybody elsP #ou E cry -"pu^4Q%kindly word #imm$oY)DFa nobler opin$ H1befdStill,rsuffici Bhis  grief tB!sh] tIoverwhelm herB joy;eeatrical>aappealKarongly0is naturAo, b]R resiJbnd layX*R. He&on'F#ga|qby odds;Bends+ conjectured at fir!atP(/#e#le+;M+ec0rraft ha Unext,2]she missing ladspromised!shqB"heaQq" soon;Qwise-8*$"pA %atU "Sdecidk8g`fC"at tturn upnext town below,;|N(found, lodgede Missouri pQ"fisix miles t| nBperitIbust be`%1ed,1 hu have driv4rhome byqfall if5U1soo/  W searRbodieb!8Qfruit !ef Amere2cau; 2ingaoccurr} mid-channel, sinc Qbeing swimmers,otherwiseSBesca|r Wednesday A. Ifsuntil Sunday,3opexAbe g\!ndMfunerals&$ p"onA shuddered. g>Dsobb-j0 2go.  a mutual impuly two bereavedMA flu =/5Qeach Pb's armvQhad a|,A-o{!#cr jwparted.q was te+ far beyon`Q wontu+cRto SiMary. Sid red a biCMary<#ff 6. and prayeM so touchingly, so 62ith qmeasure1lov8OGer old tremb/Avoic  3welin tears ,B sheK&9h Rstill3A5#shZ"dsrmaking -sejacula1romB, tounrestfu and turn:Q "at* "as", !oa.| sleep. Nboy stole @;*cgradua;Aside, sha"e b-light=#andQstood4r Gher. HisIrfull ofA $e [5hisxq scroll.+ARto hi he lingRconsi"R face,arUsolutW "s x Bt; h(ark hastily iv9 !ntv k[2lipAmade#stORexit,pWabehindxAthreYhis way backmhB!no \Arge ! S2ldly on 2oatwc tenanRxceptWahAman,(xiE slept like?ven imag] CuntiGS 7 zi-<$on. 2 up. When h!pu`!a V6$abhGD, he2S quarrCacro  Qstout Awork !hiT !e , side neatlyn" ts a familiaraof wor1himYBwas &Aptur 3b, arguLRat it;1 beFAshipfore legitimate prey!qpirate, a thorough @ 1be Cfor z!enCreve8B. Soo<a qand entBoodsslwM`arest, torturin Cmean o keep aw:!an]n;Vhome-stretch far spent road dayJ"he r*DRabrea  rVA barr{JO k !unzbwell u1gilI:2eat=its splendorhe plungtream. A "he paused, dripp" treshold2cam + Joe say: "No,]true-blue, Huckqhe'll cl "ac?won't deser2zstm uZ>ğtoo proudfaat sorXI a. He'sBo2 ora55C whac[8/!e 0s is ourz^i4hey?" "Pretty nearKrnot yet_1wriIAsays:B aregO 2her+? W$\he is_2fine dramatic effect, @Aing +l.o%F. AW:o "co2fisshortly provide?2as WQys sea G!itGunted (and adorned)#Qadven*% Ba vaRA boa_ P"anp."wh p>AdoneHn 5hid)BawayAshadwQsleep 9!ss&'ready to$]>e#I AFTER dinner 4ang !ou-hunt for turtle egg+ 22nt *,poking sticks s yba soft vNe eir knees#duJ!A5. S9tAould{|igSsixty<cone ho6Qy werfectly round'ea trifle smaller`an English walnut famous fried-egg(gHCnighFanother on FridaBnq!1AftK7o%cwhoopi ua|s chased(j2anda, shedclothes ,  _tere nakePthe frolic far1 upqshoal wstiff current, wYtlatter {GC leg 1unde7^1cre qun. AndX9 !op) osplashed iY)Rfacesw palms, !7ing#Q aver-@Grto avoiQsprayQd finb g! "ug,jt0 st man du$s (9TAall WQtangl6S"egucame up b%b, sput q, laughqand gas1forth at on{ )BQ7imeh|aexhaus$1runBand  dry, hot!li ?+3covB_"up !by.!byk2terjo original performance onc/>3. FQit ocX /Hn skin re ed flesh-colored "tights"F6afairly!#qdrew a i circus--&bclownsP* b none  |"R thisRest p  `a. NexAy go %ir:+l"knucks""ring-taw "keeps"at amusement grew stanH1and a BTom Cnot ,; kEin k;@f;trousers %kiY!stfof rattlesnake his anklehq U!hecramp so lo8xhe prot+ @Bchar )di *Btime6Bboys!ti%ndwD res#waapart, dropYq"dumps, fell to3!lo1$ly"thEj Ato wlay drow1un.s u  r"BECKY" big toe;*Acrat`!9Angry5 1forD weaknessXqhe wrot!f ,!!thgcnot help i !er&itAEtookz"ouc Aempt# by driving 7a toget7!nd 3 m. But Joe's D1hadhn$Abeyo Bsurr.q $o 2Rhardly endBa miserB iIerlay ver surface.was melancholy, too"waeFhearted, bu)e~A noty 3howexa secret}^ to tell,B "this mutinous d2sio72not#asoon, Quld h$+1o b6Y@Bsaid2eatof cheerfulness: "I beY>Ebeen F 4is 1efooys. We'll( VgAThey>'ide1lasomewhY6UHow'd ight on a rotten chesto% f#--But it roused onlnt enthusiasm 2fad no reply. Tom!onz+3two!se}Aons;KAfail($ooI discouragz!k.M%sa  %" a A!lo%fgloomysid: "Oh, let's !!it up. I wango home. It'sQesometOh no, Joe''ll feel be- b{($by (T?!JuD 1inkah2?C" "u$ $4for)"(t) Bing- 2anyJS" "SQ's no.$Bseemp1it,0chow, w 2re t7! to say I sha'n't go in. I me b"shucks! Baby! Yousee your4,XAYes, I DO0#my.B--an)A, ifhyBe. Ih$2 ban(Bare.c'U"%ed.wlQ cry-I m,"we A? Po08aing--d8?t$it<?'so it shall.2alike i+Xe, don't you`sFstay|?ir"Y-e-s" !ou  . "I'll:Q spea-2you2 as- as I live.1ris\!"TQnow!"&9ved moodi [6and&#d<t!ho#1s!"hNQwants'to\,$ho1et  ed at. Ohr#3iceTand m[Ries.  V,A? Le0f#unts to. we can get0{aper'apAB< as uneasy Blarm 1seeGgo sullenly on/ sUAing.5# QmfortK Huck eying"prjO9Xso wiy5 such an om%K. Presently,v2 paxAwordwade offh"the Illinoie'AAsinkQglanc bU'3loo> `;yVYI#gog!ItfM L4  it'll be worse. J*usR"=)1canKgqAstay27+I!gosWell, g/--who's h ing you.+QCpickR scatqclothesjvtAwish4'd ol3youi`.wait for youq!weCV""3ra blameh5all!st q sorrowR awayM3Tom _Ba!6ng desire tug!at;#to ]#gotoo. He hsf stop,; sw Aslow. It suddAdawn y awas bemBverypQcT3. H2one Y-d?s comrades, yelling: "Wait! (tell you some!F#y j!ly1ped$SaCgM zh5e1ingc yK|cCat ly saw the "C"s # aN set up a war-whoop of apCk#1saiTRwas "Aid!"3qhad tol]m(,#2n't away. He made a uible excuse;O!hipIl reason "be:" fa#ev<T#DthemmA ^great length ofSs$so#men 1hol eserve as a A .B ladNCa gayly:4:9 ir sports will, cha6!im #ut:stupendous plan`Aadmi)wenius of it. Aba dainA and ,!he*ed to lear bsmoke, 5Joe caughQ ideaSBlike to trysXQpipes7!fi 2the@se noviceY1 d\Lbut cigarsPof grape-vinGQ"bit" Stongu8not manly anyway. $yo'Vir elbow1uffBrilyd!slr confid9AThe an unpleasant tastGgagg Why, it's@0as easy! If0a2e/sCall,"t + #SoI4 E. "Ic!no'hy, many aI've lookA peonm$ well I wish I!do's; but I 1%Tom. "T!aRme, h$it 1You1earK Stalk <k--have o qleave iKAif In't." "Yes--5MosUHuck.$7D too Tom; "oh,ZCR. OncW1 1e s5 ter-house. Do rememberBob Tann771 thand Johnny M1 ,Ilcf 1, 'ame say  !Ye\ !. B#ay I lost a white alley. No, 't*.z --I told[1. "472s iI bleeve4Apipe4dayMfeel sickNeither do>}]$itV1. B!be  4\ !! 7keel over wtwo draws. !le D tryB. HE'D see! !beRwould !A--I  Aa tackl2onc 3Oh,)2I!"G@s:youI any more%an!onqtle sni fetch HIM." "'Deed2oul U. Say aus now?!So ay--boys!saH !i BsomeRy're = ,W Qup toQay, 'got a pipe?aPae.' An2'll31kin%1carO like, as6rX  pIamy OLDw", (03 on'rmy toba+bCin'tood.' AndZ1Oh,'" r 's STRONG e3G= $ouhO1igh ras ca'm!Eqsee 'em-S4thagay, Tom 1ish0aas NOW5!!we \"weQerwas offQing, 27 w#y' dalong?Bnot!M4BET@ll!" Sotalk ran onV &itEflag"'grow disjointedBilen adened;erexpectol marvellously ]!^ry pore ip <boys' cheekame a spouting fountainiyj2bai the cellars   rs fast Kb to pran inund;2overflowing+M throatsqin spitx 2all*"doF = Fings"Metime. BothY1ere2ing2pal miserable, 'from his nervtfingersx!. t_ygoing furBboth pumps baiB"Mm|\)id feebld) =Wknife]hCfind Bquiv2lipb 1halutterance2'llyou. You go j`Rhunt r? !pro!No needn'tvHuck--wdS ,BgainAwait!Q hourCr%itpK'"to Dhis :yswide ap oods, both U!pa Aoth a1 0informed him2 if#ha!ny trouble agot riQ"itnot talkative atT}Snight4Rhumbl1henQ prepCdp "ft meal andBparez\ "ey[2no, 1fee,well--some+1 at )mӂisagreedQ2 A !id!aw-dand ca0{ding oppressive:#ai83see02bodiNXa huddl  !so1thet(Cndly*vionshipr4F/} 2ullj=aheat o  breathless atmospA sti<Ty sat94%Awaitholemn hush 7b. Beyo{jfire eK3swaSQup inAblac`!Hr  &aaAglow  vaguely revea^ foliage for a momTavanish4by " crc1str?#n & faint moanA siguL"th0 tranchesRforesboys felt a fleeting ,ywshudder fancy tha?S! Nd !!by/. Now a weird flash,! n?Ainto  hgrass-blade,=i and distinct %aBfeet $it[three white,/tled facoo. A deep pea "thP1rol:and tumbling "r heavenGlostw# r4Qdista$A Ƙ chilly air passed by, rustlingjyn!sn the flaky ashes broadcast !ir TfiercElm FN% stant crashD#retree-tops r'Mic:p$in terror,x%athick 6!p~q. A fewsurain-dropCl paf* .. "Quick!!W"foLtent0csprangs\Broot4amoQdark,awo plu&same direction{ blast ro trees, making &as it went. One blind yH #ndnbf deafJhFnow a drenchinv1 po@#heK hurricane droveGsheets a`c0Qround<" c#u Beach#,the roarafoj-C!s >eir voices7 ly. However, one by; O 8\ook shelterk  .Qcold, /Qstrea5 ,;o%!y =?DseryR1o b teful foK  x 1 olBl fl{Q$soW2ly,0 Wd noise1hav[A The6(esS!er:qhigher, Zthe sail to "se/1its ]4X"wiCaway- %. Iseiz0"s'1}Rfled, ye bruises, toԁ2oak`U86d-bank.b battlsTst. U}R ceas conflagrf of lightnR flamii*AkiesSbelowout in clean-cuTTless Qness:"be:the billowy ,<Bfoam$@Z0 of spume-flakIhe dim outlinSdbluffsoside, glimpUD drifting cloud-rZ1lan1veirmE "L9 some giree yielR>! fand fell younger growth;Vthe unflagg/ S-pealnow in ear-splitting explosive bursts, keeBshar8 unspeakably appa[storm culminatone matcy ceffort# qlikely *+9q to pieQburn ,! ig, blow itBand rq creatuA it,av" 2. IKra wild rfor hom#}Q. Buk}'do forces retir Aweakd h threag  peace resumed her swa  %nt>Scamp,YC! d3wed3hey`Q was Sthankp07eat"^Dthe  ir beds, was a ruinTJQblast? w uwere no3Rt whecatastropppened. |! i pz!ed9A-fir/Qwell;5 t-v-AheedSlads,3Bgene0ymade no prova +/#stHc! m pbdismay2|Q soak3t eloquent iNHtres/,%,1verY0 [aten so far up HQlog iL  dbuilt !(wW it curved upK\3 &$edn Afromground),%a-breadth or so# \V2!weB; soCpatitj-t7kashreds+qbark gaBthe 2sid#qed logs+ay coax61"toQ. TheRy pil=$5boughs ti]# r furnac<|# glad-heaV751g1y d{ , !boo"haOXD feanN ][3satJd aexpandd glorified8Q<]9ndry spot to sleep %6-B. A@6sunssteal iN2oys !si!ov"em sandbar2lay1<Ogot scorche.8drearily se(breakfas"CrustJcstiff-4mhomesick once;:%Bsignbto cherTup thp+;ɹ2C. Buc 1not %fo6, or circu .E, or"%Aremi1$ imposing &aa ray 6eer. WhioD, he`7mRa new devicaK Hqo knockcbeing aq e"be*c!nspqa changOHeattracis idea; sonzs;m^head to heel black mud, like so zebras--alB Zchiefs, of course/aEwent* `A"tt%=s settleQg!By|yn ree hostile trib(Vupon @ bambushdreadful 'kQ%hcalpedHvousands  gory day. Conse$lyan extremelisfactory one. rassembl\Dcamp-rsupper-*<|`KYj4but[ifficulty arose--!d]1notk of hospitalityR-1fir<8 ,: qsimple nAsibiI@"smv2 ofER processeLDaof. Tw davages;7wF 3hadd$ed%. oD}2 wa;with such show 6! aCSmuste# Apipe# 1tooqir whiffA tqdue for1h1gladBgone"rya0Rhad g;S e now smokeA hav Ao go^;Aget 67d be se#un02abl1not AfoolG jhigh promis, #of }practised cautbafter R dfair success y spent a jubilanAning\FeRhappiw new acquirp#would have iwnd skinning"QSix N s. We will$toqnd chatL?And bsince we=nther use >, . CHAPTER XVII BUT} hilarity ?Btowntranquil eZafternoons Harper~Aunt Polly's famiE22ereS3 pumourning QgriefXP . An unusual quiet possess= village, althoug"Rordini 8 !all consci*Ir!du ssaan abs^#ir+ nblittle*sighed ofte.Ftholidayqa burdeL !Shildr61 no) Rsportz h>gUbup. I Becky Thatch1!unqself moB2abo Q dese5 aschoolc)C yar1feevery melancholy sDund  t73to FPShe soliloquize:if I onla brass andiron-knob-!:(*Dgot ` e%to * him by." And she choked besob. 5)7sto CXo9!tchere. iRto dog  x( say that' n3 the whole wor Bhe'snow; I'll <.6A seeb.12is 3t broke )1wn,qP!ndCawayQ down9Uun quite1F!ofs Vgirls--playmates of /and Joe's-- b 1ood2!Qv1 pazfence andfNArentqhow Tom]rso-and-+d2ime"csaw hi6'6how#3andmrifle (pregnant# awful prophecyu(2eas "!)  er point>tWu2actwC"heClads" 8addNpa"and IBa-stR just so-- as I am nowOf)qwas hima Aclos e smiled,Y ?2way!th!l+"me !--R, you knowD!I wZ5Wmeant ,C/1can TL a dispute5who-Bdead.cin lif`Qclaimat dismal|qand offLevidences, more or l: 1amp!DwithVrwitnessDwhen ultimately decided who DIDrthe depl"exCwordthem, the luckR2ies Aupon1selA sor"sacred importanf z1apeand envie=che respoor chap, whono other&z"toF,)tolerably 2c pride 01'Z9# ucked me-BRat bi Rglory failure. Most s "athat cheapen&!1incWWa=4loitered zs2rec2r memori!osu2oes3wedC. W\-B hou 1UfinisFnextell begaoll, inst# r  @I1a vtill Sabbath2the ful sound %in<he musing9%TlSM#on` &rs,V5ing$ vestibulQnversCwhispers#1nt.zQthereF$no/Athe 4 ;g]6eal"of dresses +f womenZ<eir seatsZ3urbJ= T. Nonpi&er q churchd!beS full5. TXMa&Q paus expectant dumbn  CV,D#Rby SiEMary yV C ball in$2 qcongregb old ministere, roselBntileos Bseatront pew$ncommuning2., broken atvals by muffc5obsbaspread,hands abroa5prayed. A mov1ymnEsungRF tex<$q: "I amRH Qe Lif2EQervic'Dceedclergyman dmLuch picturA gra  6wayA rarZbthat e4!ou)!in9Acogn!Uthese,(!pa5!herpersist"bl1him rm always Ys?BseenRfault( Sflawsg +1relaGaa toucIqincidenm&iv`e:RqillustrN.Rweet,X3ous%s people !, how nobl_ beautifose episodespt  O rank rascalit"}.bcowhid 1 be@ \ 2and D pathetic tale1n, e"at r rcompany aand jo( !erba chor swelled upa triumphant&,6c it sh! r-s0ASawycre Pirat3#eds k-1envQjuvenkGDBconf"in%$ea&"s oudest momen_1hisq j"sold"Utroop"ey6 jsbe will;"beFBridiculouCtp UuB I" Tom go81e c )esd!cc4R's vatmoods--uhad earned YByear he hardly knew which expro85ostK,!Rto GozBaffe' BqI THAT !--RchemeoAturn'bhis brpI Qatten sa y had pa4o& mo'og, at dusk on 3, lmvesg+t6; U slep   1edg7Bthe 1ill nearly dayligh`UcreptZback lan@ TsleepE  0a chaos of invalid21nchA>f fMonday2 kSto To1tivhis want Aamou1. Id!ttI<@3say> fine jokB, toHeverybody suffe'G'most a week soAboysra good 1but01s aMjC you% Qbe sop-Aed aNrlet me ob so. I-QcouldO:U overtrl1hav| eN&Aive -=2hin9D1tha" warn't d 2but qrun off=Yesedat, Tom,";Mary; "and I believR OihAoughLCW1youR?Rg!, }#ac7iZstfully. "Say<", mJr'p?" "I--w*know. 'T?b'a' sp'NILryou lov UDmuchwith a grieved tB discomfo5Gv!me! c enough to THINKc, even+ didn't DOqNTuntie)vUany harm," pleadeBit's giddy way--he is2 inba rush%he|uinks ofrUaMore's Qpity.\. AndAcomeADONEj.1too'1'll !, 0!da 'Q late DQyou'dSd+"dfor me>Acost&2so 9 j1you V` for you5H2I'd)ADtterakDlike!I Vnow IVsrepenta1; "s dreamt@1any(I,,L much--a cj$$'s!no2. W QWhy, Wednesday night I!tZsu ! bl # b 8+ woodbox A nex Uhim."TRso we9 S 'do ByourQtake  0?8 !usfD<$Jo#'s -uhy, sheA! DiHNOh, lotsso dim, nowWtHa--can'lIRSomehAseem2ind ewind b)6.{1"Trh1der9s[2p. Come!"6  !hioo$ aforehe anxious minud then *AI've i[(.! t rr!" "Mercy on us! Go]-Tom--go on#R< 1you.1, '*door--'" "Go ON]VEJust;ctudy a . Oh, yes--rS you dkwas openeAs I'mMGQI didZn't I, MaryA[}Bthen^r I won'obertaine9Qas if4 Amade'P/cWell? -I make him do%Yb1himB--Ohyahim sh   M"land's sake! IAhear% b@my days! Dstell ME1any! i 1amswV. Sereny 4& i^an hour older.^Pther getCTHISj er rubbage 'superstition.#1t's/!!brbas dayVF Nex3 I r BBAD,NmischeevousM )"an+ responsibl3n1--Ik a colt,28 Pd$"! AgoodjgracioF you(1cryU"So& "Nof* nM)" "Then Mrs.e@2cryf "JotF3ame:C2she !ha SwhippERcreamshe'd thrit out he"CselfRsperrA1cyou! Ya#Qsying2t's1youdoing! Land ae]Gno!SiAsaidd  D" " O ! IRLBSid. did, SidMary. "Sh.d"leU"heL1TomSHI{ !h^6$off whereM$gone to,  fDbeen0sometimesTHERE, d'youd that!:92his8 QwordsG"Anhim up sharpTI lay must 'a'an angelcere WAS W xCtoldZ 1Joe>`a firecracker73Pet\ainkilleraas truPeI liveQ/!loCtalk%dr;Qe riv)1r ud%3havHCA Suna qand old MissRhuggeH4cri  "en bIt hap"!so 2surT'm a- sftracks /2n't`i.Zq 'a' se" %! \what?Ie3youq, " IwBhear`C wor2aid  !en  Pso sorryq I tookRwrote4piece of; bark, 'W}dead--we are only off 4'p %T tabl_  ;'hCyou sdA, lacasleepv8Iand leaned2lip6 D ,&I;bforgivqhm#at4she4crushing embracpt, feel lik( guiltie%villains.#wackind,  Dough~a--dream," , faudibl!up! A body doeV as he'd do if heVyA. Hea*FMilum apple  s 1was-,t--now gto school.=qto the Oc1Fat2f ui  ~2ack>'d-F1ing"Bmercy [l#t q on HimHis word, Bknow unworthy ofa 1nesR FHis *ad His hand+slp themEugh placere's fewAsmil 2e o= t{%4wHis res>long nightUDs. G2Sid >Q--tak+r)1off( 've henderClong.e children lefw old lady to call o vanquish her realism!sq marvelu(3had1Q judg_"toF_pi4"mi,"hethe house.XAthis zrthin--az\Bthatdout any mistakekWhat a hero/a, now! Henot go skipp~(%Rncingm"a dignifi!agƌXa@ who felthe public eyEm|cindeed; he triesto seem2 th2s ooaremark-he passed along?tW5Afooddrink toSmaller boysl%1flo+cels, as A to 6"enw"le$#bys the drummer1heaQ cession Ae elephant lead menagerie :own. Boys ofown size pretendVIknowaway at all'4were consu with envy,bthelesW EUgiven& i#av1swasuntanne6?his glittnotoriety3Tom !no# Ae pa1ithBr a =e3Dbaso muc}bbof JoeAdeli!9eloquent admir)݅*"eyT1two"esMAnot "inCsuff+."stuck-up."s#1tel ir adventures]5ungy#2ers9B;c@ 9ran end,aimagins}!irrfurnish material+,yorir pipewent serenely puffAroun Q Qsummi; glory wadCchedOQdecidbe independen@ ]6now. Glorysufficient. He_2liv|R. Now !heTdisti?'a, maybJ?qbe want o "make  !le!-- h  qas indi1Qnt as other people. 6 arrived. !seAawayQjoinetrroup of5%Oalk. Soo#!obed$s%3 trYQgaylyR ERforthi1fluJAfacedL Hbe busy chasing4mat?so4th a 2sheV a captur9h$icI3shea+/Cher 1vicinity&89qto cast!nsS eye =gPW1ch ~RI"i2!viFc vanit wB him)so0Awinn!im&only "set "#moE6himSdiligAavoirc at he knewKboutR gave~ qskylark`;+ved irresolutelyBQ, sig 1onc 3twi#glafurtiv45nd @QTom. 2snu71was1ing  particul0"to Amy Lawr7 Dne else. SheArp pRwnd grew1and uneasyKc=2tri1go away, but 2eet8t+2ous:1car71her"he "to a girl*as"'s%g!--)sham vivacity:Mary Austin!  A, wh&"n', #to-n?Cih!#--*Qee me"Why, no! d1? W1sit(Ix!ins' classu1go.Xw YOU!? oit's funn!n'+D you>uw2you 'QicnicU%Oh!jolly. Whol)XMy maa}5oneRcgoody;  she'll let ME com)Hieill. T#'s<!any#AbI wantQI)!ev4# nice. W7Fs itbBAQby. M r1vacBk fun! YouM r1oysAYes,tfriends to me--or3be""he:4ed Ay calked d"lo   the terr$Tstormbisland[h9P#nr PNq tree "o flinders".c";rwithin EYBfeet6lQmay I#G]rMiller.P.1And 1Sally Rogers&+usy Harper. "And Jo[Aon, g2claiof joyful"s 0 ogged for invitNs"To]1Amynturned coollyPcstill Atook# 's lips tremblAbars ca1her;Y!hi$se signsa forced gayet con cha tfJ7?!ouny 1got( !on aand hi61rand had4rher sex4"x'xGsat moodywounded pride,qll rang roused upua vindictive cast Y1gav| plaited tailsik, swhat SHE'D do arecesscontinuedBflirO jubilant self-satisfacAnd he kept )Uarto findG1lacerformance. At las AspieEsudden fa-rmercuryb#bcosilylittle bench behi/BhousT 4t a27S-booklfred Temple--and so absorbed2hey #so?Atoge Rbook, 1didby 5 ofsq+lB besides. Jealousy ran red-hveins. H1hat  2for "waqcchanceQhad o  a reconcili. He callc-r a foolhe hard names a!ofD~#cr3vexd!Am tted happily1, a'y!, 8.e!rt= Asing 3butRtongu{8!it 4He Bhear+,Aas s BwhenZexpectantly h;!onu1ammh awkward assent, (/N sFA misQd as Awise !toaBrear! ,0q and ag%#ato sea eyeball"=1ate>!clryj belp itqit maddUL q5Bough"aw;  ]Thatcher\ once suspe(`iC# lthe living. But3did59 +Ber f%/3toosas glad#Tuffer^3haded. Amy's happy pra<$inA!e.!hiac g&,o attend to; s must be doneAtimeUfleetin vain--N chirpedkT`, "Oh, hang hi%k  aget rioXher?" r those 9he said artlessly !ou" """ chool leJeShe hax3hl, t. "Any(Qboy!"p#gr3is teeth yGH1#buSaint Louis smartd20and is aristocracy! Oh, c a, I lij1youfirst dayuWqaw thisa, mistAnd I 1ick.Y just wait_ I catch you out!9%1tak  ermotionsZArash+n+r= --pumme>hI1kic&>and gouging.{you do, du0? You ho',Qthen,?learn you!" r Fthe Qflogg'as2o 15fome at noon. His L not enduByD3 of4 iAThis jHtbear noAB thea distrf'Rresum) 1 in'h bAlfredI*sy"">!no#to,Ktriumph BclouG 3she/nterest; gravi absent-mindV-s followeGthenLR; two2ree -"pr!up2ear footstep" iba fals%;i Ashe bentire({1 wisbEdn'tjit so faVsen poor Q, see!loP2notV)Ahow,E exclaiming: " aO one! look"1s!"{1pat(Oc at la99S saiddon't bo| Sme! I2carathem!"` LBearsagot up)Cwalkq2. dA dro'alongside+s-}2"buRsaid:,2awa&leave me 5e, .1! I1 Shalted, won# waZdone--forCFaid }i !snooning #hej on, crytC!mu Z?he O qwas humO egQangry!ea bguesseE Vtruth Rimplya;Gn0nXAventRspitee)I". far fromh=be lessPDBdGZ !3g~to trouble withoutS riskTAselfR's spn Cfell^ 4. HMhis opportunitZ!ly.e !onLfternoon/T?&inKr page. ,pi cwindowm R#ou5vP. She startward, now, inten28tell him;~ thankful%healed. Before s half way4, hh1sheSchang$migi 4 of Sreatm!heS@C her came scorc9R:S sham|yvz6 ge,!ondamaged i's account*"tohim forever,Ohe bargainVIX TOM 1 at:'adrearyoa_sm Qaunt R k1 sh\-Qhad b tQorrow an unprom$kmarket: "Tom, &1a n  2kind live!" "Auntie,o2aved&e?4Ryou'v ! e I-vTSerenM,ran old softy, expectingAor!o ZL :g$atn0 2hat4,!loRbehol{ s'3fouf!Jot7 2wasabtalk wt&, I don'1 $Q of a9will act  that. It makes me feel so b [-go\A andG!L l of myself never say a word." Thisa new at  %  3nes( aLH!toueCjokeBvery ingeniouse *A mear shabby !He "2heaA"no5ken71 to,#4he IBdn'tvit--butCT2Oh,i#'!k. c0your ownrishness66T Lfrom Jackson's I?2 to $urt yoo?\:ASa liem<%91n'tC to pityk* Rve usXCsorr8q!knJ8was mean,!#I J CB. I s, hones1),. Ayou &W<ibme forI"toV1you'&us™(n't got p!del!th nkfullestMi} 2wor>I7bhad asta !"atY2you ever did !it." "Inde ' 1, a%--52mayOQ stir2H!OhT Rlie--,!do[QIt on 1kesPcgs a hUFbtimes *<a; it'sH0 F. I k,1you @?X4"at)"&me2I'dLW#it Z power of sinsV72'mo}you'd run eand acted2it reasonable;n #me  %Ryou g y 22, IFgot all fulRthe idea ofa' the churchI("n'GBh2 a$Qspoil$Sotpbark back in my po 1andjA mumkW.1arkq2ark 13we'+ d 1wak8qI kissee--I doL6linS%aunt's face relax[! t.Sness %inq. "DIDqkiss meM !Ar.3 su ?did2Dq--certa|ArmRz ~Because IBcobyou laBare moa-Band "3ZBds sz Aruth.* tremor inRvoice&K9E!!bexAwithbf1 o " hTgashe raqa.!goAruin$1 ja#T c in. T0 _vher hand< erself: "No, 't dare. Poor boy, I reck(+ #ed bit's a1!leBlie,7's such aQ1romaI hopeLord--I KNOW BLord 1forr_.Qisuch goodheartd"it3"wa'#fi 1lielook." ShexCawayRttood bya|b. Twic-Dput 21takA garUand t:refrained. Once m1ven1rhis timo3forN)3Wc}:> llie--i!et%1rieR." SoG3. Aa E, J7y"flQtearsix3: "Athe Bnow,}5'|'mitted a millionl)!"X THEREAsomeAunt Polly's manner"~!BTom,; Bswep low spiriVBhim lightRhappy6. Hp&A luc YBupon O8e of Meadow Lane Dmood+determined3. W|Bc's hes$ h]; Iamighty to-day,6I'm 9 ,#2 do!4ive--pleaseB up,S you?vDgirlKRA him<dnfully( face: "b3thac. 65 TO , Mr. Thomas Sawyer.i AspeaM 2youR!to*h a!pa!onCd stunn-1 noYnkh!ce(inIrsay "WhHs, Miss S&?"j[ ?$&it%dby. So$1 no(OQin a Rrage, 03He mopedAyardf1ingObwere azBand ing how hebtrounc%if:iatly en#erd 2R a st"y remarkQ5. She hursWbreturnngry breachcomplete. It EY$to Bhot 0Rment,s#AQAwait)Q to "02in,was so im see Tom flo\injur2. I;1hadany lingl!noQbof exprAlfred %,aoffens;2lqad driv=vaway. Poor girl dOrhow faswas near. The maMr. DobbK n͢middle agean unsatisu3ambDqThe dar!ofdesires was3#be a doctorqpovertyWdecreshould be*Q highan a village q. Every he took a mystmQ book>CVk and&$1 in;{s "no6.5Breci8"R$! t& 3ookJ#lo21key#rqot an utMwas perisve a glimp[Q@Bance+T came1boy8c theor-1 Qnaturqno two 1iCalik6t way of getting5ats in Base. "as1pas!by4Ddesk% 1nea~R door t3tX)5ae lockADrecious H  glanced around;>B next instantHOs1The title-page--Professor Somebody's ANATOMY--carried no informa/mind; so s+!ga1tur s"cau!3oncaomely engravW frontis> --a human figure,qk naked !CK+dow fell Apage}3TomA ste$inAdoor&fcaught tpicture!bsnatchs"to >aR hard BSdindpeEathrustfvolumej2tur@Ce ke  out crying'1 shand vexF. ",2are1 asacan be4sneak up on a persou"wh 8y'r+." "How yH2looS$ta?" "Y$Abe a  ;wfyou're&tell on m1#ohQshall) !! 1 be whipp ICwas 3%P astampe,!fokdRBE soU i!% *2'E*. %&and you'll see! Hateful^' "!"she flungthe housd*cexplos>\:still, rather flustereC1onsBt. P+ O+  !Whi"cu&k," aCqis! Nev2xen lick! Shucks! What's a#Sing! 4ClikeS$--so thin-ski and chicken-". 4Aof c4 # Iq)t$ldV3'is lA's o@Gwaysa even a<&|tC7? Oxktask whof%3his book. Nb'll answe en he'll doUay hekoes--ask firs\An t'wOns" jiBing. Girls' facese*9yMM2bonT1'll .i  hatight - ', p1any#ou.*!coCDJ'added: "All,3"'dQto se"inQfix--!er sweat i"!")4joi0gmob of: lars outsideC[ags  !nd:ol "took in Afeel rong interests studies% #hea 1 at gc side Broom !'sX d him. ConsiL&3alltT, he 4Bpity`B$et+2all1uldo-/"HeVup no exultd!lly worth[ n  \ %Qdisco@ 6#adeHH Sfull I own matterE9a~72aft "t.64&er lethargE *"Xgood the proceeding _! 3Tom"ge(&aby denrhe spil2inkCw  >/sSG:adenialr mn4TomssupposeV A gla{Bthat%sJmergency paralyzbinvention. Good!--han inspir4! Hk"ruXbook, spring thi)"3fly5NAolutAhooke$ont" i)was lostl ,rTom onl9{ Wsted , bQ! Toorkn Sw *O  Bfacex1. Eeye sank under AgazeLv9smote even Pbnocent/Hfear>1sil%B onez count ten =kAatheV.#raH npoke: "Who  book?" nNsound. On 1havxrd a pin,1a still!continued;CAsear-4fac|  for sign uilt. "Benjamin@,!tuS?" AA. Ane  pause. "Joseph HarperD5+;I uneasinessE2and4#sethe slow tor+es TFDscant ranks of boys--c ,ed!ur3 : "Amy Lawrenc,eA shak head. "Gracie MillerQ samerYLusan! 8his)rnegativ(2waslMA was"bling fromcto fooQexcitG and a sa!op_!of/Rsitua "Rebeccazc" [Tomhf#--I!Cwhitterror] --"]R--no,4(me6b" [herA rosmappealE?XAG29lik;Da%br(3prafcis feehouted--"I:"t!}BstarperplexitH6incredible fF3Tom!"a C, toHqdismembfacultiesk wYNA for=#to-his punish"=burpris gratitudB adosCshon64himBpoorv!'st Bpay /O)1 IBed b~splendor qown actv Sb outcr7most merciless fla DMr. 2had8,badminiBalso receiSN!ce"added crueltaa comm o remain Shours0ld be dismissed-- knew who #wa k]h;his captivit3don he tedious s, either$C6bto bed, planning venge jgainst ; ;arepent5#ol4"ll^ 3for 3'jq "ry8"thV1ingHW %way, soon, to !Santer'%she fell asleep at las's latest0sdreamily inRear--, how COULDbe so nobl23XI VACATIONapproaching),nKqsevere, rjQexact1han[,i!a .!shV on "Examin" day. His rodkhis ferul8! seldom idle now--)=&st # sUpupils. Onlabigges7 young ladie}e e twenty, escaped la #' Ss wer vigorous onO!; lC he \,K6 wig, a perfectly balQshiny=#, Ronly d'B ageq T of feebleJMmuscle. }great day "ed?byranny#waEc=face; hec! H)!ur?Ie least V2comTnQnsequ Y1boy59 air dayNp8Fz)1plo1 rezy threw away noo "to'  a mischief y a$J"im\r retrib8 & rfollowe*yCful vCso s|Qmajes^| from the field bad#stBtthey co2tog_Ԝ#lag7 QdazzlaictoryBy swaign-pa."'s(BCchem3askEhelp0s v`1deldRboard Rather's f]3K$giboy ample -rto hateFTd's wifHBgo o"!sitSuntrySew da~J#1to !4fer !he O Aprep f3forQoccasAA3by 8Zty well fuddl Q boy  the domini roper condw$G on A Eveh1q"manage"Bhe n[ <9Vwaken hhurried #toB. I!fu; "im!esHc arriv0+" iewas brilli' Cdorn wreathsbfestooDfoli!xflowers! s 1ronH 2 {d platform,< Alack=#? tolerably mellow. Three rows of benches on *(!si\Rd six%1in "c m.foccupi dignitarw1own)% aparentusTg left, backh citizens,Dba spac emporary5u@"th&Blars3 !er1taktexercise ; 1of S"he"drY0"toxae statdiscomfort; gawky bigRs; snowb_ X clad in lawBmuslHKbcuousl,ir bare armsir grandmothers' ancient trinket&2 biApinkblue ribboLir hair. A>/!tas fillKnon-participa.%2. Ac"3boy!upsheepishly recia"You'd scarce expecaof my o speak in public stage," etc.--ac5ing#ai-r Vpasmodic gesturech a machine mahave u csuppos ' a trifle]aorder."he*7safely, though cruellye}3g9afine r!offHD?dp! manufactured bowqD. A u1lis$B"Mar a+Clamb]#, Qgbssion- aurtsy,yher mee,ru!wn#ShappydSawyer ӕited confid o1int)1 un hGindestruct"Give me liberty orme death" speech1furc frant4Aicult  $ia middlit. A ghastly "-fbAseiz m, his leg5ked m=  to choke. True  1nif/!ir tterly defeab a( attempt at,it died early. "The Boy StoodC" BӘa Deck"!owPAlso 3Assyrian Came Down,"!ot{eclamatory gemV"rerd,a& f^ meagre Latin class ,Qhonor prime fea41ing"in,original "compos\ 3s" a. Each-!er: !to<qedge ofr 1cle.1roal anuscript (tis dainty)F"eqCreadQlabor t to "expreDpunc!1the.r had been illuJ;on similar  Sb befor^, doubtlessir ancestoremale line F nCrusades. "F[Ahip"wone; "MbOther Days"; "ReligioHistory"; "Dream Land";qdvantagv  Culture"; "Form Political Government Comp and Contrasted"; "MelancholrFilial LovVrHeart L#sp A prevalentY!se\ca nurspetted m|B; an>asteful and opue1gusf"language"; <qtendenc dlug inRears 6 ularly prizedphrases until+ Fwornx%3outr peculiRthat ZX CmarkBmarrlahe inveterata r sermonwits crippled tail  Ae eneach andby one E m. No matter wCssubjectG Rbe, aA-rac 7$ & quirm it into some as "r AFa" rQus mi} !ul*templateAaedificG glaring insincerid"_not suffi o1assYabanish  fashion'Lit iT to-day; it never will bex,orld stands, perhaps. #]5ll our l$2herD1 do$feel obligwAclos.!iru1ithkBrmon|/aill fi >#MfrivolouT  Dgirl1dongest9XQrelenhly pious. Butis. Homely truth is unpalatable. Let u2oK"!."QXfirstNas read9one enti#1"Is (n, Life?" Pgreader can endur_'bxtractNit: "I5common wal S life(ful emot!do/ERthful9ly"1warvsome an qed scen 2fesc! Imag is busy sketchingt-tinted3Prjoy. Inû voluptuous votary}TEsees`(1amiA3 ei ng, 'the observe4allrs.' Her gracRarray7snowy robes, is whir! f"uga1maz3joyous dance;E eye is b !es rY 3 is#st gay assembly.-BdeliIf"#quickly glides by, welcome hourRs for1ntrBintoe Elysia cld, of bshe ha2 g\w fairy-li eF !ry appear kher encharvision! 3newjis more charm}aBlastfas1nds{Aenea@ais goo߁xterior,#is vanitflattery3onc 1souqw graterharshly1ar;ball-roomCqlost it4sF%Rhealttaimbitt= Qheart1she bs away1Fnvicaearthl8s cannot satisf U1ing1theHJq!" AndV#or3so D!rea buzz of g/1to 3durB $, Qwhisp4ejaf"How sweet!" 5qeloquenSo true!l had closed jc ly affli e\enthusiastic n arose a slim,X8r, whoseK07' "C" paU42comMTpillssigestioX>`a "poem." Two stanza&"it=!do+ "A MISSOURI MAIDEN'S FAREWELL TO ALABAMA-qlabama,%-bye! I love1! qBut yetLzCdo I:+1thec/1Sad1, sQought(!myR~bt doth And bqrecollesng my brhRFor IAwandH|!th[wSoods;Have roamN a;Tallapoosa's stream53blisten, *ssee's warhfloodswooed on CTide Aurora's beamA "YeM8Ame I to bear an o'er-full4`Nor blush4urnmy tearful eyeB'Tisno strange% RI nowa+pm2(to0s left I yield; Qighs.[W|sand hom2min  is StateW1TvalesL"--F!spq?fade fas (1col ag3eyex 9eoen, dear ! BturnQISee!" c Bwere4few$ho $at "tete" meKl"bu "po S very|ractory, theless. Next/ed a dark-UBxionEIfack-ey Qhaire qng ladyQ paus2 im'vwJa, assu tragic ex$n Q " m~ d, solemn tone:A VISIONN2Darbtempes 2was5 2. Aq on highA+2ingr quivered; butAdeep0"na T heavy thund "coE-qly vibr 1ar;s]rerrific n .gry mood-de cloudy chamberheaven, seebo scorQpowerXted over itsAor b,allustrFranklin! EvqisterouYwinds unanimaM"th mystic /Qblust?3as if to enhanceBir a Q wild!#. . "At5 a$A, so Rrearyv human "mymspirit sigh@eQbereof,k1'Mye#iend, my counsellorand guide--My jop Qgrief,second blis[in joy,'RQto my1. S#ve^9o. Z 3ose p!s !d Qe sun9lks of fancy's Edekromantic , a queen of beauty un#qsave by !ow_ctransc xAlovevPsGAsoft 1, iqQfaile2mak a sound,"bu1mag0thrill impartedgenial touch, ather unobtrui< Bhave away un-perceived--unse4. A1 sau res4herf1s, "ic5s e robe of December,21poi 0nd]Aelemtcwithoub0Tg5two"bresentV3Thi;(ma)1tenB}h1oundwith a 5so v all hope to non-PresbyterianN  #!okApriz%1osi~ Gwas /Qto be sfinest >81.cTmayorvillage, in deliveJ  rhe auth6 it, made a warm speech i Bhe sQby faT"b "" !heE  that Daniel Webster well be prouit. It may be rel2ng,xthe numbes in whiz4aword "4Qeous"over-fondlegxrience referras "life'sS,E$upeusual aver`1Now}m,"1 alA ver3k1putchair aside, !ed9 !udldraw a map of America #A, toa"ci geographyoupon. But he 9sad busi] !thu|&y 8SQa smod titter S!ov*=!e '/ nB wasDset =Ato r !it:sponged out2Qs and=dbm" he only dted themQE!evn E&ApronGMd$)$hi'>J his worky(if@PBnot uput dowQmirthBfelt"al B wer #en him; he i| was succeedingFyt;\5uit even6ly increased.Q igarret above, pieta scuttle 1his|,@$is- came a cat,nended a$ q haunch a string;1had&!g V 4PEjaws=qrom mewDslowly de#Q curvwAward-Aclaw,swung down-qintangi!!irRxKahigher2 --the cawb six i"absorbed teacher's head--down, "$owshe grabbu2wigNher despEclaws, cluS4iw1nat7u ", " i} Yr trophy7" ibposses 1And0Qthe ldid blaze abroadx's bald pate--fo 3, boy had GILDED it! That broke upEmeet3boyavenged. Vacn  3com NOTE:--The'+"a" quotaS tpter are taken%out alteriBfrom avolumeqtled "P7and Poetry, Western Lady"--yj1exa%0݇Qecise  *agirl pQhenceEAmuch9 Aappi"anYcere imUs be. CHAPTER XXII TOM joew order of CadetTemperance, r attracN  1howw@ "regalia." H3misRbstai^Q smok9!ch,Aprof as longSArema1a m OQ he fn thing--nam&a1 noBdo a+" iZasurestO  3 body wanA!goVQvery Pv$b soon W!rm] q# aQc to drc)q swear;Rgrew %so:!nor jL bof a c6to display i8red sash kept himwithdrawing from . Fourth of JulT61;Qon gaat up --iC"A2worrshackle7 1y-ehours--and fix0Bhope? old Judge Frazer, justic)Beacewas appares'"bei/ Ta big*funeral,  o9an official. Du( ree days[;Bdeep+rcerned 62the' d Qungry1newit. Sometimese: "ra$--#heRventuj1get Chis practiseO.R-glasrmost discourag yJbluctuabAt las'as ~Amend then convaltQwas disgust9'qnd felt !ns&injury, too !haQsigna,tat onceq"at#Bsuffc relapBdiedrresolve kP! trust a mand@T+Cpara a style calculated to killClate^Benvy$1fre[m@!reAsome!a La swears Ors surpr 1dids7Qsimpl| hga, tookBaway Charm  GDqly wondQto fiIacoveted vGwas beginning -4&ng Cheav}M ands. He attempt$BiaryPLed dso he abandonedT?!rsanegro minstrell!s cto tow aa sensand Joe Harper+-up a band of e-r were happm1twonGloriousbwas in a failureWAit rFT&, encx ! i!seI-e&t! aeatestBAin tabrld (aT!/ed), Mr. Bento actual Uniteds Senator, prov overwhelYQdisapXBment Gwenty-five feoqgh, nor +Q anyw;neighborhoosrA circu qboys pl"J @#  in tentsof rag carpetAadmi ,@2pinOB;two for girls#ens. A phrenologisa mesmerizerI3wen1lef H8_Udrear "evf>=BwereUeCAand-'(1es,jDthey,A fews6so $(Bonly2 the aching voids between acae hard= Thatcher1gon}bher Co_ ainopleat!Bher ks } bm1sidaElifeP.dreadful secre*athe mu  chronic miseryєaR canc^ q permanX* 2aingnmeasles. wo long weekl Mprisoner, dea}1andw"Aings1wasQ ill,;O !no3. W2cgot up aU3andafeebly{-$"!achange3com./$"nd2 cr.rb* "revival/0 had "got *1n,"{Bdult"thyLbbhopingsst hope!1e s$ of one blesOQinful"- A cro(Ahim Qwhere9Qstudy Testament4Rsadly9- "deng spectacl_  Ben RogersKvhim visi6 #ooca baskBractE!huup Jim Hollis B calLs]KK{2ous0ing of hisA 2 as DningSboy he encounti!ad2nother tfV Aon; 1hend ion, he flew for refuge a) F bosom of Huckleberry Fin! bwas re+Scriptural quotjirw_ re crept!an!be"2lizat he alXA allw!st4and .%Bnv=&st:Adrivain, awful clap ]/blinding she81cov!the bedclothe"ai! a horrosuspensehis doom; not the shadow of a doub  is hubbub was 1himrSdQtlm!thtgbearanowers aboveMQextremitp Bendu2h.i the result have seeme1him!st[ApompiRammunp Ca bu3a b(of artille+;b incongruou' E3 up+n'2 asrto knoc+ Bturf! insect likeB. Bbtempest spent itPcand diQout accomplis9its objectc boy's bimpulsgratefulreform. His +EwaitC"re>bbe anyDsK"dadoctors were back;w4hadd 3 heU!baO!is2!%an})ge . ehardly4D1spa#"reing how loneWQstate companionlesAforl@oPdrifted listless Btree+p41 acuqas judg a juvenile courr1cat her victim, a bird and Huckup an alley e@ a stolen melon. Poor lads! they--tTom--ha7E SI ATkhe sleepy atmospStirrevigorously:3e trial4k!betAsorbWtopic ofe talk immediately xyBaway$itArefeQO ; sent a shudd his heartroubled consc i[5LQpersu2himBthes#rkr!pu tqas "feelers";1seen-Rld beaqof knowz n -  Fnot be comforc2ae mids, agossip1kep(rshiver e"Hu##a 1pla+!a Sm. Itb QreliedbunsealAonguwhile; to divide)iburden[l87r. MoreoqBhe w/to assur-m discreet. "Huck,1you" told anybodh--that?" "'Bout wYou know." "Oh--'course IZ"n'Never a wordLAsoli2Qword,|Qelp mat makes you ask:qWell, I\ aafeardbVWhy, ?B, wen't be aliv$1dayQ #go out. YOUt2TomWmore A. AfnQ pausnQ5n'tL1get!to\,"Q they"Ge[!? !if half-breed deviLzF me z) gO$y ain't no diMn>Uthat's all(!&n.twe're safe %   we keep mum. But let's swi-1gai1ywa'!Qsurer}I'm agreeS# ry swore? , solemniti"%S talk,yQ? I'vBrd al " "Talk? Pit's just Muff Potter, $the timepReps mg!t,tant, so'sd7A'ersT{"ju9+Q samebgo on p reckon he's a goner. Don'gfeel sorhBhim,AimesqMost always-- *raccount thfA don %ur. Just fis 4 B, toSoney drunk onfSloafsFiderable; l-!we2do |MBwaysu&of us--pr s <+Blike@!ki?PE--heBahalf aB, onre Krn't enough4 2two"lo eEQby me?sqof luck!meBkite"me,knitted hooks%o my line. I wish w"geot$u" "My!&"n')W. And besides, 'tn't do any=;'d ketch{ AgaincYes--s>aI hate;ear 'em abus2 so the dickens6"he/fI do tooL)I[2say&toodiest i ip n !!an ver hung befoO1Yes=y+%7~Qif heK)1frery'd lyn^A'"it'" The boys]"aQtalk,Csit broum1. A# twilight drew #ey themselves ha6 * leAisol80Ejailz=an undefinp8d; z-m!clow;!irAicul+T But =eno angels or fairies i! tYss captiveAboys#\!ey~Qoften%!-- AcellYring andk qtobaccobmatche-;n gBfloo% rno guar"isl2tud /Qgifts Q smott!irL "s --it cut deep,lx@ 2cowASand t!ou2the Sdegreaid: "You've beenQy goo1me,--better'nw 1elsthis town1I d+forget it,Q. Oft1sayrmyself,I, 'I us\AmendMCoys'.Bings:Ashowfishin' place01befD4Bat I1 2nowjcve allaB oldthe's in92TomIQHuck b--THEYP)" '5-!them.' Well, "eBwful$"--and crazy  #--w athe on*1y I!un2 itnow I go:Qswingxiit's right. RighABEST, b--hope  we won't4at.! make YOUl dbad; yCed mh<say, is,p2YOUG !--m 3youSStandR er furder west--soSit; it'smBAee fw"lya&C5 Aa muP Rtf1non$ ae heregyourn. Gooda w"--"ly. Git up on Hother's backYl touch 'em. = Qit. S}`qhands--}1'lln1 th-Abars mine's too big. LittlBweak--buyQ 3lpel ^ 2shelp hi*.iy"."!home mis CnBream#full of se next day{e fter, he rt-room, dra@. irresist`,(1in,tforcing( to stayF| 1hav (1qy studi~a avoidpL"ch4FKTkelet !atdD Now,7#A us t** b--telleown waEskipp,h+sbegan--}AinglRfirst"as"rmtQubjec f  easily;ln! sdceased buP own voice;&ixAhim;qed lipsbEBhung!higads, ta]\no note of"d, rapt1ghaCR!on 1ale#q straina pent emoq q climax 5boyJ "!asdoctor fetcheETboard+"ag fell,@Cjump-P?1andCrash! Quick$Cighte}%Cspra|aa, torem1alloAsers gone! CHAPTER XXIV TOM1a gring hero onc>e>%pe2old-Aenvyhbng. HiR eveninto immortal prin;* paper magnyhat believe be Presid Byet,  * . As usualfickle, unreask9s % to its bosomBfond3 Alavi@XRas itb} !&Bsort of conducO&o"'s"t;fIp'#noJto find faulQh it.!'sv: of splendor and exul2 J2hiss were s?.  infeste=s Ddoomz deye. H!y aUcould', 1boy"tir abroadafall. Poor HuckiH 1samI"wrrand terror "ad*p7!ho!or* Awyer Qgreat V 6and4sor01hara y Jumight ldnotwithsta_A's f!sa!im+QZyq N.#4afellowDhe attornepromise secrecyqwhat of? Since }Sharasy![2 Bdrivp%c c'&Rse bywaad2lip ^been sealnsdismaler;most formidab=aoaths,a's conchuman race`well-nigh obliteratcXDaily2'"1madA gla\0Rpoken%!Vly he wish%1up " c. Hal"imZS nT 3be dVa othercY@ >+ He felt sure heMbdraw a+again until1man92dea,y@ Rewardselvcountryrscoured"no2 Jofound. Oose omniscind awe-inspi^marvels, a detective,1"upoSt. Louis, mo"ar@S$shhead, looksort of astouQ succ  3sZb craft!lyu=!ev1at ' say, he " a clew."n you can't hang a "clew" for#soZoEgot ]qnd gone8. s-63ure3was,. R slowdrifted obleft b Cit a"ly qened we"of apprehenV THERE comesVqrightly{1tru+26_)has a rag1sirrgo someqand digRV}1sur3is 9suddenlyU3one{e sallied+R Joe ~Bfailed of8. Next h<;!a %gwTtumbl@FI2FinRed-Handed." qanswer.m3 private-#op$e matter to >{kbtially`*Awill>  o take a hanwy enterpri RferedBtainnd required no capital a&u superabundanc)Rtime r rmoney. 'll we dig?" sair. "Oh,5.Uq." "Wh%D i[ e?" "No, inde  /a. It's-"in=y bicular5 --/ on islands,Atime@ rotten chests!envaa limbSn old@Bree,0c;falls at 1 mo aQfloor) ba'nted0Who hides iWhy, robbers, K urse--who'0? Sunday-school sup'rintendentsXIknow. If 'twas mine I Cide it; I'd9!nd1 a _&1o;1 I.l"do!XUf and leave it "ADon'y0Cy moA!No y)k,w$B#qy generUQforgeT 0q, or elJey die. Anyway, it  t 1a l "im gets rusty;!by- !bycbody finds<yx  Xtells howAthe 2--a  o be ciphCovera week because it'stBsign hy'roglyphicjaHyro--H"--picture>qthings,]Qknow,1seeTmean u1Hav1d got o"emas, Tom|!No0Well then,: Afind #61wan^ esbury itas or on a"ea t0Eat'sAsticTout. *!'v ed Jackson's I}iwe can tQagain/R timeSy' -1 up Still-House branch,=qlots of-StreesnAload1'emI#ll Htalk! NoTA81ichJ1forG _1'emI1Tom/6#llll summerf 2? SI#a brass po-a hundred dollar,"llAgray2 fudi'monds. HowaHuck's eyes gX1!bubPlenty4qme. Jus R gimmM Iand &noT" "AT8~QI betI:k!foff onDb Some 'Qth tw3Rapiec"#reWaany, hn2's <six bits oHvaNo! Is1 soCert'nly--anybody'llyou so. Hever seen on5E!No7I!nOh, kingsA sla|$S_"no5$I reckon@i!if3wasto Europ!'d.Qa rafr'em hopGr b" "Do1hopBHop?_-u grannylN2say>1did CShucks, IJ1ean'd SEE 'em--not V Yto hop for?--but IRQ 2seeV3scal &, 28$ aBLike!ol]pbacked Richar* 2? W_2his,Q nameRHe di'ny"1. K!but a givenIN!Bu.yiy like it-R 54D,Xa niggeroRsay--t Eyou  1irsn< S'pose we tacklj ) hill t'8side ofjrI'm agreea<got a crippled pickea shovel1setwir three-TtrampV*"hoCrpantingE]/7T downH2shaa neighbo!elq#- smoke. "ISthis, Tom. "So do I 2SayP$weCtreaF#re 1do 0your sha ZBI'll3pie5MU 3oda2day1Rgo toV&fSlong.0aQa gayrnbsn S sa"tod h AlivebM1!byy#OhP |any use. PapY CcomemFo thish-ybwQR2 daR\5as clawiIurry up,ZIjhe'd clea3out pretty quick.tn$buy a new drumua sure-'Whearts jum8ao hear[strike upoFyb"$#ed3dis <+Aa str a chunk. AtDE5Tomv -rxrbut we CAN'T b&. We spottv)AshadX2bo a doI$tF1the6re';"tthat?".wpAguesoyH Menough i1too5> or too earlAHuck 7ped .tat's it9Ahe. !'sDveryLLFaone upBcan'| 2thea1sidL$is` ',8C%Y#ofy%> ;2 a-fluttY&Zbafeel aP$'s!mNZ;'AfearTCturn)%uz'V front a-<Qa cha I been creeXAll o1ever since I DBI've=smuch soAHuck6y mN put in a de&# why bury. e, to lookGLordy!" "Yey3 7If !toRPpeople. A h1s b!toDintoQ'em, "L" "r2stiRMup, eitherjf2onet! 2.Akull !ay" DCTom!2wfu"it "is^U3a b,QSay, <lp~ d"trARs els?%,  $weY 5bconsid|/;dJ:The%. G  4s.c 're a dern sight worse'n  D lVN,lyocome slid rshroud,nUnoticApeep shoulder3f a:%!1griqir teet"Ra does. I Bn't qsuch a NPa--nobody 1Kt2but, dUtraveU 1 heu_! 1But <{#goCYthat fA norg 4v emostly M J#go5 Qa manaen mur, anyway | E"erODseen5 # except b--justLBblue'Rs sli& q window regular Gsl![Xflick5acan beu4h!cl~Qehind Irs to reason. Be1any2butAs us<pEDcomebP`f, so wl!us3our?7a<W$ df^#I it's tak@A y(qstartedffhy) TAmidd- oonlit valley bel[em stoodR""M&!, 4ly Ra, its S=s*ago, rank weeds she very doorstep chimney crQ)qto ruinq  -sashes vacant, a corneraroof c/!in1 boz*, half expectAo se. flit pas%Qindow n1ing 14 as befitte8 b:m y struck far of\Rthe rO Qe haua wide berth A*qway hom. r,Boods6 earward si_j Hill.4VI ABOUT noo$ 2 daNgG4tre=Ahad ffN"ir$Q. Tom impatien#go ;( Qwas mAablyc $alC%ly Lookyhere1 dowday it isbmentally ran%$V3eekhen quickly liftedG# a2led 3m--WI0once though,iE\un kKrR it pE conto m` a Fridap   can't be too careful8 A 'a'  1an scrape, :ing2Won a z MIGHT! Better say we WOULD!"'slucky days= $"ny BknowbP1YOUf2the:f 1it ;AHuckRn1said I was, did I? AndT all,.O_d a rotten bad3msdreampt1rat"No! Sure sign ofB F"ey{s'NotCgood% WL d*1ign  G,-2. A-_Udo is  by shark Zi Cdroph}5to-{ wplay. DuRobin Hg Who'sqWhy, he greatest m"evrEngland:the best. HGca robb Cracky, I wisht. Who did he robOnly sheriffs bbishop Crich2 RkingsR=9Q But naver bolloved 'em1divQ!upx 'em perfectly squa-h2'a'r Sa bri I 3youW[!Oh9qhe noblaaOT"R was.!men now, I can1youN R lick-can in ,a one he4iedD Ahim;NhEAtake!yew bow and plug a ten-cent piece"c, a mia3s a YEW bowIM /t7w, of cours.d if he hi| Bdime`Aedgepould set aand cr(2d cOB'll play!--nobby fun.AlearQF m% t\dfternoon, nowmy1casQ aa year=2eye#up qnd passs remark .1orr+prospect9Iibere. A5suna sink sey tookEway 5 aathwar| cshadowN6e,soon were buriAITsight8H(- Y On Saturday, shortlyV^  R bHnT4hadd&Ua chaCshaddEGir last hole*;]great hopeaGmere<oIqcases wz "pet#ad )(upafter getting down~qx inchep Y-O an some d1! aqand turZJt a single th{bshovel' Afail !isO a, howesDc+ BwentTfeeling jvshad notEds fortunehad fulfillep requirements <%of<71-hu(6. Rreach T 1{ so weirPv grislyBsile at reign^Rthe bAsun,{ bSdepre$Cbelines!dem"io he place[(3fra,# aHM Qventu7 ty creptD#do?!mbp_VT aw a weed-grown, floorless room, unplastx;aan anc CfireVs, a ruinous staircaser#er%ud hung E#nd abandoned cobwebsn#tl73ed,MC ened puls,s, ears ale\BcatcYDXRsoundAmuscAenseQready instant retreat. In a+Nfamiliarity modTReir f Qy gavm,Qtical#iYsted examinC, rather admi+[bown boƑ Qwonde"at it, too. Nexk1up-+isMqlike cu]!goqdaring ; =! abe but I&!--L,=Sto a 02and scent. Up\NBame 53qcay. InpJoC a@d mystery"qa fraud1 inCr courag4xwAH4n hM Lo go down and begin#1hen}BSh!" CTom. is it?" Huck, blanchingrG!..re!... HearDa "Yes:#y!(!run!" "Keep1! D you budge! 're coming p! tcr 1doo #stC./Rfloorto knot-hole!th bushy white whiskers; long hair flowed from u!hiRbrero dGe green gogglesec7'Cn, " Xa low voice; @#sa gr$Q, facAback{sthe wal12the=er continued ^ s. His mann\less guarF{0words more distincFLproceeded: Q, "I'!it oB 5andi,& dangerouDR!" grTthe "e dumb"A--to#svast su?boys. "Milksop+2his~ 2gasQquakeEwas O!'s +<!swag we'veAleftr--leave it( &'v !'B. No2!o i.f!wet south. SixfCmDfift5Qver'sDto carry%eWell--#r EKG m No--but I'd say(j2 us#doe9:Alook; it may5(" bTI,6!e  J!! ; accidentsi !B; 'tY$inu2ver9;i6f%l[+qh+qit deepDGood idea !thrRqwho walv Qcrossroom, knelt#, gv"qhearth-/atook o9A1bag Q jing?qleasantLe subtracW9Qrom i0nڼcthirty#Dcs for G"as+6for8e latter, #s <,(Q8owie-knifeUforgo<,bmiserig$an@. With gloaq ,A mov7q. Luck!f splendor of Qs bey%sll imag+!qETmoney/Ato mcalf a dozen rich! H sd1theaiest a !esrNDabother uncertainty as to w44to }2y nudged each ;--eloquent)r easilyRstood simply meant--"Oh,you glad NOW we'rbB!" mVTknife%Uupon . "Hello!" C he.?2sai4Calf-e"plank--no, it'sy!x,4Rlieve1--b`!w 2see<Kfor. Never mind, qbroke a3 [2hisWbin and i p3ManDU  rhandful8$ingold. Thejb abovebas excW cmselveY!as delighted.NwRquick4Bv$ban oldM24over amongst >#)5sid"a--I sa5#a 74agohaX|iaBoys'5andn X1the$b, look5ly, shookUA mut4 toM3  5use5Abox aoon un$edXA not *R larg!#wad2bou:Bbeen+dstrong5the slow>s+Qinjur c|5the" ain bliss3. "PardrthousanL Shere,p. "'Twas alwaysX Murrel's gangCQbe aruone summer,".stranger observ53; "vs looksPHI2 sa* sNow you $neRjob." Ʉfrowned. Se: "You# me. Leasx&k"lla A. 'T@ robbery alv\ REVENGE!"a wicked R flameBhis GR"I'llyour helpRBWhen finishednn Texas. Go homH<NT#anK3kidM1b %0$Sell--Bqsay so;ew  w dthis-- k Yes. [Ravishing overhead.] NO!- e great Sachem, no! [Prof[distress;1I'd---at least4 \Smean =but Tom, si%1nlyhad testifiSVery,mPDfortBAalond! Compan!be a palpCimpr5, h . CHAPTER XXVIId adventur4"ayily torme RTom's5s . Four times hE!s !atSFnd f6ait was:rhingnes5igers as  !hi wakeful4bEfAt bae hard realit'Fhis 1. AClay |AmornO(1ecaincidentsJND, he noticed%~dseemedL4ly Hand far away--someD ;3had#tworld, MfAlong " b3 :n i5him u itselfa$3onetrong argumentW Bavorj is idea--namely,sc quantDcoin2fAoo vkAreal Qhad nTseen !as in one massShe wa1all "ag"st in life,&Aimag= call re\Os7!s""  " were mere fanciful formCaspeech Zno such sumP qlly exiEpposed forf w"so= a sum as a 6z be found in actualy one's Ԁ" Ianotion treasurbeen analyze.yxy=Ansis 'a areal dgand a bushel of vague,id, ungras{`A. BR^K"en Ssharp!clearer (Vattri !inTAthem?h so he"`1himk1leae(impressi6q#no2a dream, a )isQsweptg:~ snatch a hurried breakfast!go2fin.ik e gunwalB a flatboat, listlessly dang+2t !ee3"atbs2ingamelancholy. TomC&2letslead up@1 su e did not do its1be 2q `o!xEGelloylf." Silence ab-om, if we'd 'a'Y 4lam' a"Vtree,0!go D. Oh$! 1fulF $,Somehow I most'x. Dog'd if I ." "What!K%Oh6ing ).U"en"QDream! Iymss hadn' down you8)1how  Q!xhf%Deams|2allpL#--()[tch-eyedZ 1sh l4 gom*!thR 'em--rot himm1No,_a. FIND! T /1Tom#llXhim. A fellerq ~3one Q for a pile-- a2's lost. I'd feel1ry shakysee him, anyw+qso'd I;2I'd,2 2z#'Aut--&s < 1--y95N'Bthat2&7/!ouAit. !dofreckonB"oQtoo d62Say--maybe inRs$'"Goody!... No, rRain'tfv5, is one-hort!wn3 y=#noq,@so. LemmkKS Here r room-- QavernQ know;Qtrick s3two?s. We cansout qui You stay hereU,zI come." DAoff c1caracHuck's~rbpublic#s"as G!an hour& EbestNo. 2 had# a young lawyutill so-. In the l&astentaa housek! 2#a 5 -keeper'sr2son  kept lock$)ll3tim82he 4sawq go int W!or}(A exct;Ymny particular reason> x1gs;Er Come ' BsityD8bfeeble98wVe6r by ent"Ding % ae ideaC"roG "ha'nted"e  r a  !re[) BwhatOYD'Kvery No. 2"$af&/Qit isE$. ?C youqQto doNE_(ngE2tell yous$do "at" icomes out J1los )ey e!a3?Qtrap Jbrick stor"`qet holdmdoor-keys1nip-of auntie'=,Bdark'"goS ry 'em. And mi,n, because he E#!to/|2tow 4spy 3)N#a "to 6youjyou just fGQ him;_Rif he 2 go >"1laca"LordyI !fovhim by myself+hsit'll b%", ov"He\Dn't B youRdid, b4he'A any' "ifU8n. 3o-- 1YouE<cBdark!. 3'a' out he coul f< #ber,&DOCs so{1; IP, by jingoesw"'re TALKING! Don'7|bweakenaI won' sI THAT#1TomQILy hung a e neighborhooo{nine, one watch52he PAat a ="K1thePdoor. NoF"orN Rit; n%aresembp2the 5ard=3te#Th promise]`fair one; sowent home`rat if adWAegre,Adark1cami AcomeT"maowupon he would slipthe keysE aclear,XmAclos2s(Tretiryan empty sugar hogs0welve. Tuesdac/&amE. Also Wedn/Thursday bbetter8"in$.sf0aunt's old tin lant 6 Qtoweldrlindfol 1ithh? <1 inp-'s began. A WB mid#v!upB2its1s ( !s 'd"s)!pu)*%02had Eseen+Dhad / }b. EverrV,3iou"Bblac5of SreignA peruQstill#waVbruptedby occasional/)#ofAt th<ggs1liti n~,=tl: Bowelx&wo2rs D A glokw>y.stood sentryrTom fel3wayZTjz  !of8ing anxiety$weighed iga(a mountainh$%sh?ra flashH$ C--it.f"en!buZO6ell- alive yet. I4s1Tomdisappeared. Surely"us Ded; &A was7`+!rtQaburst #D'Band ,G'1 In4auneasi L rdrawing-DrK a; fear rdreadful ] $/1ari1pecm0some catastroph 2Atake 1792not&to,]$heUable to inhale it(imbleful- TK$ar Athe beating. S1Tn"ofh%tEby him: "Run!"he; "runAyourt!" He needn',Q repe drit; onc ;#mairty or forty miles,RrepetCwas -3. Tj!tor  "J1sheʁerted sl#1er- e lower en/the villagxa By goin its shelter]Sstorm xrain poubwn. AsxJ] 0AHuckwas awful! I t3twob keys, aas sofI R; butsto make of racket=rdly get myRso scBT1bn't tuVck, either. Well,?!ou.Ticingkboing, I tookcthe kn!A ope@e !H&E@R! I h1in,!sh5fP, GREAT CAESAR'S GHOST What!--whatQ'seo1steFonto's hand!" "NoAYes!A#Ras ly s%asleep oARfloor4?Aold 5"ey his arms sprea[d1did Tdo? D0Bke u91 budged. Drunk, 2. IjUgrabbBAowel F+usIX'a' thoughS33tIx. My aunmby sick3alost iM A"Say,1box!diw@o_00.-}44 /8 .:ea bott|Sdtin cu 6 by(!; I saw two barrelslots moreUs S.u2now'!Fmatt'3at R roomTr!it mG o1ALLaTemperTYs have got aeC, hepd[3Who8u? But sAnow'Rightyt 1timg&ifqb's dru""Ithat! YouiQshuddIEno--"nom5And-B not3. O1  alongsidf, :u'< three, h  -&@oaTp*for reflectioZ+ S:38oky82les#tr 1 an#e}wwcR Joe'5'reQscaryhw eSnight# bp"su2 go  "orbwe'll Gbox quicker'n nJV<the wholBlongj%ido it 1too3you"<Ather4$"A= bill. A.v!to{"tr0Hooper Street a block EmaowWRthrow:bgravel=e0 3bfetch 1T"Agre01goo'Awhea*B"Now,  T's ov*bgo hom2gin" , %Qcoupl" +2"go61will youe!I TJ]t5#Ryear! Ev "damF&st2allIawooo[nǑ' hayloftZTlets nqso does pap's nigger man, Uncle JKA toteex  B wheahe wan`" t}JA any I ask him QzQves mGiBsomeBto eWhe can spare  !ik\r, becuzP'[" aL Bwas 3;him. SometimeQset rdeat WITH/1But  A body'sv!thwhen he' sr: 1n'tBas a steadyd-wXK,q"le.?A com hAS's up2'!, Cskip, @*."*IX THE firsR1earQ4QFridan glad piecnews --Judge ThG's familyL*7- before. Both 9o &Bsunksecondary import, and Beckyv the chiefCboy'="esSsaw h%tad an exhausi&1pla "hi-spy"c"gullyu!" $da crow2ir S-mate1day^scomplet[DRcrownsa peculi9satisfactory way:!ea[Aer mK to appointnext day foUlong-z1and\-delayed picnicfshe consentechild'>boundless;,Xore moderat.R invi*slAsent^s sunsettraightwayA AfolkLn4Ra fevapreparu(bpleasu6qanticip6's q enable90" ap dntil aQlate houh%%:vt!ofd1ingO4's s!an(ahaving to astonish1nickers with,2; b\3was$"oiNo signal c'vC. Mqcame, eBallyby ten or eleven o'cQ giddq rollic!c;/!ga  4_s -ro.UQustomelderly peop2 ma#;p$*!ce2ren@sed safe R unde9AwingAa feh"1dieeAe# gentlemeqtwenty-  sreabout1oldqm ferryboatQchart;t7! g<.flJ9r main sg Cladeprovision-baskets. Sid1andato mis/ fun; Mary remain!hovBtainT9nTMrs. 6 "tob, was:d7?oBback lIaPerhap H Astay   eRgirlslive neah"-lQ,c !y aSusy H,q, mamma+AVeryO. And mind !bey%yourself3bmR9T." P,"trQalong` 1: "Say-- 2you8 ntQ'Stead 3Joe2's *SclimbE!up AhillDstop` Widow Douglas'. She'll ice-cream! SsoJ"os Ai!--|+Aload8"it4sH#be t&!usg"Oh[ K/2un!?=nC%ed3But2illA say How'll shH6Rknow?^Q girl!edidea over a1r reluctantly(it's wrongK3--"shucks! Youg ! k REo!'sQharm?_sN1nts[!hao '"Bsafe4I b 1'a'" 6if IAwoulT splendid hos"itaa tempP 2baiand Tom's persuas02car+S q. So it>u Qay no? anybody?t 's programme. i1 itv(!rrJM)^7+''XAgiveZ ;took a deaV%s!ofAs. S"het&I"tolmfun atAnd why sh1he 5!it: h"qsoned--/c! W, so Ti2mor l^>o-night? T6QrA eveV 4out6theM1, boy-lik2 determined to yiel +5Aclin Tnot a{9t Qk of 0ox of money5  day. ThreeVbelow >EboatayAmouta woody hh& 1ied|3The* swarmed ashoreAorest distancescraggy hxs echoed farQshoutDand 95theØ1get!ho " Egone=y mry-and-barovers Sggledao camp31ifi th responsible appetitesVt destrucHJ" "L>2 feoC!reBFFing ( 2resbchat i2shaspreading oaks. BAsomef[ed: "Who' the cave?" Ever!wa5$. b of ca \Bproc   a general scamperhT+x0' hillside--an opshaped likO A. Its mass׎2ake&& !unbarred. WK small chamberM Aly a2ice" w0by Natur% solid limeston w 1a c& rweat. I1romJmysterious!t %erdeep gloom/look out upr!grKC'"sh--""un?1O6!ve!UDly wore offdQrompiDL2ganjIcment al]  Frush2ownit; a struggugallant~f1ed,62ursoon kn)/or blownlad clamop and a new chaseB3allQ havex(ndlrocession (!fiv(eep descenW4ain avenue,p!fl0qing ranGOVs dimly reveaYf!llqrock al5t1ir er of jun sixty feet overhead. Thisnot more than "en?Cwide?&nSstepsy%ill narr crevices bran@!from it on--for McDougal's`Rbut a%D7imepqraft.  blready.w's went gliW# p a wharfCAhear!noise on board(   C3as $usually are whornearly cto dea.AwondnQwhat 1de:Rstop w<<dropped her88'put his atten *rusiness`Bclou dark. Ten eKf vehicles ceased, sca) abegan ,#nk !ll 2foot-passengerkp |)1 be$itt)l <2lef| = qwatcher qthe silae ghosts. E  Swere /;/ Qevery$A$it1see weary long 2:b)u3},ed. His faith wasB4bing. Wvy use? "reA Whyk)C? AFfell~"ea;&l U instantQ Bdoord*^Tprangqx8$ Ti two men br,%onW- z Runder!rm0 ]Cbox! So sto remoE.Bcall Tom now?Ibe absurd--1en  get awayq #$anc7EDNo, c stick1!ire!foAthem<k5truP for security^discoverQcommuG3Rmself#*!ut Eglidg 2beh!e men, cat-like,qbare fe~!ll_E the8*5far&!noqbe invi  y |GP q blocks0n^ left upJ2ss-8y?"E,!qcame to% !pa}1Cardiff Hill;5Ctookfthe old Welshman's Whalf-m(hi-1hes!ng Qclimbward. Good, 5*VSdury itold quarryC) "stfa &-3on,b summixy plung.T7 1run 1ook whe pistols wekf#I Astop$t..Scome now becuz 7# 5it,7 ;I:lF3 I x1wan7runo}m devils88! i,2 deUph2hapAdo l?  Byou'aO1a--but +b's a bM!e2you:Ryou'v^Fyour=A. No"y U Adead--we are sorryC|#atCee wiqright w!toq#ou6 Rm, bydescription #weOaC = !we?RfteenTnAm--dis a cellard2was(sn I fouE sneeze. It wHmeanest kin16!lu " t3o keep it bp use --'twas bjt!it(#I iR lead/ 2my :3theR star-ose scoundr Q-rust*6! pbI sung"B'Fir!!'cblazedtt5he aqwas. So".  2offrjiffy, svillainwZ4N  a%oods. I B we eatouche|mydgAot a y4  bullets whizzed bdo us any harm. Ak!we9 the sou$Tw at chas2entS }!tio5_>ctablesgot a posse fH1offuV R bank&Cit i+qsheriffaa gangE bea8}"My}!.\XAsh wz"A sor2 ose rascals2H uadeal. But you cy  dRlike,euY2ladQpposetOh yes;JAown-(and follc AthemSplendid! Db2m--d BOne'B!olfdumb SpaniQben a*;once or twicQt'oth[sa mean-", VTP men! Happeng Dthem1R back2one 2andoQslunkR. OffAyou, 8ellfA--ge to-morrow Y Y"2depS!1. A__qe room   : "Oh, ptell ANYbod bR! Oh, eAG_ gByou -N%credit of w:1 di"Oh no, no! DVA!" )B men g  o said: "T2 7w Cwon'B2whyoia#n?  explain,!tothat he al Aknewn w"on3 Ahose!+4manUv 2anyHast him Juworld--c& for knowing it% ?d secrecy3morW1How&se fellowsA? We!ey Ding &usea!t #ramed a duly H rep -S lot,--leasyrsays soI5see)ragin it@ =much, on #!inx }3tryQstrik a new way of do7"ay u ' I,BleepQso I r  up-street 'bout midf a, a-tu~fg - AI go old shackly brick store by WP1, I3 Red upO%ll#2k.  %bcomes fQtwo c B"slf0%lose by me,+1unddreir arm'( V y'd stole1OneAa-sm3b one wah, !ri.s\ !me"igACt upBfaceIy og 1ig - eA, bywhite whiskerQ xT `ua rustyo a." "CmDrags ?Cis staggq5forA !n ?5Aknow Qhow i#msCIQTJy o52you<Fb'em--y eiO&to| awas up8y sneakedsso. I do$!'4+1iddDstilG& $ d:# JgVe begK%heX swear he'd sp;rr looks'as}2two  What! The DEAF AND DUMB ma8ia4at!!'aderrible mistake! H63his.jC Ru>sthe fai+i2 whNK smight bQ1yetdtongue/0@$to in spitball heFr do. He several efforts to creep!of1scrape, R's ey 1mh["bl5 9. P  ,be afrai!me 6 hurt a hair o qr head v3=I'd protec !. 1 is ;#leAslipout intend+ D. up now. YGEthat4 K q. Now tAme-- m S it i"3 -- a betra Alookit!ho51eye Qomenton bent over 9ear: "'Tab--it'sO'1 Joz ) gjumped chair. InWQ 1ll ,pe 4you{m#2ing#and slitting noses2wasown embellish 3men3tak1sorYrrevenge\"an #! a different matt242q." Dur7B&:alk! c Y 1 sades (h2hishad done,_ C#!d,^a7eqexamine,its vicinity AmarkP Qblood11y fnvut captured a bulky bundle of)Of WHAT?" IfqBwordBbeenn 3hey leaped withcqre stun0O!5AblanBlips]!-were star1ide3Qreath$ended--wao! )tarted--st?+in return--1QRgs--fiv1ten%!end i<f burglar's toolsY4,G' bMATTER sank back, pan5deeply, unaEably !eyt/m gravely, cur!V--and= NYes,appears to relieveB Butcdid gi# 3urn9!YOU expecBwe'd2?" a \H a inqui *Q havenfor material$ aa plau4#-- suggesteR?elf|!boadeeper --a senseless1y o~dK^/!noq+ to weighiokventure he c it--feebly: "-+T books, maybe." Poortoo distress!sma Cqed loudfjoyouseb detai$.Ratomy1hea Bfoot%b by sahat such armoney in a- pocket, q it cutoctor's bill likM Aadde!olG!p,y2re Z !a5Byou awell a bit--no wo8aqf #of8 Z'.*!ouit. Rest6Rsleep6Afetc2all_#brritat<6 heaBgoos!ed{! a)!icM!esf"aroppednBideaarcel b%.K%2Avern]9. c talk 3XW ahad on%rought i3"nod however "ha"kn/ bwasn't!sot%a qoo much:Helf-w!Bu![ 4'2gla@. Shad hnt!no4 beyond all qusnot THE,Oo mind was at rkexceedingly comfortaban factC Q drifbjust iD dir_`Anow;WA musw ;) in No. 2 zy!ilybat dayhATom a seizeo3golS \1out !or fear of interruption. Ju# pYea knoc9#l ` 0 hiding-"noX connecte!n remotely1lat admittedtRladiev gentlemen, amo*Widow Dougla Tnoticngroups of citizeny bclimbi2the hill--to 7 S\Qnews xBprea h(h the stor$Z'he visitor#gratitude"erbrvatiooutspoken. "Don't}a# it, madaGre's]z"'r beholdeQthan -Tre todmy boyc#he ballow Atellsname. WAn't ] v2butim." Of $&uriosity so va|"be1d tV#in )twa to eaAvita'mm be trans }Dtownb refus"BpartjCcretorall els> qlearnedO  I "to% rJ9"ypV8a noise L#Rake m:rWe judg0j2worMgQle. T"dlikely! !--Shadn'CoolsBao work pAhe u1 waGbyou up4carDR? My BnegrAstood guard sr houseeLmk By've`ack." More!C cam"beD,aand re G couple of hours more.G tSabbath d 1vacecQ1 waVly at churchQ stir1Beven` canvassed. NewV#n Dsign5two! 5yetA#edthe sermfinished, Judge ThDu's wife alongsidRMrs. mZQ as sI6ved1 Qaisle;-BcrowqIs my Becky>all day? I !edhB tirQdeathBYourS(RYes,"a;!tlp Sok--"T"sa2youIQnightEE/!noa kced palh$sabba pew,as Aunt Polly, ing brisklwa5pG by.64qGood-mo), A 'got a boy up missing.o1 myD!st Qlast !#--7you. AndY $'snvtto sett'q  "he H andar than7d. "HeB$us(`b, begi !to uneasy. A marked anxietCc's face. "JoeVSK?Y1No'b"1didqsee hima?" Jo="wa!su7 "ayWQpeopl amoving %ofWs}3aloD a boding Aines&k 1 ofzy counten\'of!if  .!On!ngfinally blurt2his  !we4ill Zcave! swooned awa f#Ao crrringing'Bands alarm swept/lip to lip,Agrou 2to ithin five minutesCbell fwildlyN6he "upF/EJ insignificanD<xforgotten, horsesaddled, skiff4man !!rd#ou1bef{nDrror was half an old, two h)dbcere po6aighroaA riv gC. A Blong091nooge seemed emptydead. Many women (ed9#anPa'q They cC)2too"wa/"l N;z#. tedious022ews/>wA dawqt last,   was, "Send candlesrsend food."4wasqcrazed;L{, also. sent messages! p encouragVtWaonveyereal cheT3 ]3h4'BdaylpQspattRwith -grease, smeTBclay Bworn7#HeJHuck#behad been provid%3 hi"Adelic feveruhysiciano4allrcave, s  ook chargg "ient. She ! s B herb4,'ahe was@Q, bad;7%in,fBr Lord'sKu !R"a \neglectez"aik good spotvQ-`"You can depen(>2at'xAmarkdon't lea9Doff. He n3does. Puts"2ome)0$on"re\Ccome(Bhis TA" E AforeRparti3jad Q ctraggl< bGllag strongeswEthe qcontinuxAarch gBnewsbe gaineBness]7edhansack71vis;Y S cornAZ ,o#ly#edCver one wan4z"pax!, [wcseen fE hit Bdist@qhouting0-shots sentr9:)1berrthe earthe sombr Qs. In&ar1sec21usu. rtravers/rtouristI7s "BECKY & TOM"DbtracedbRL=2cky'#Csmok near at h =1-so!biqribbon.   recogniz'e%>4hover ii7crh. !ofiAno omemorial )@be so precious Q this parted latestqliving h*RawfulpV! c.3SomzAw ann/a far-away speck ofzWglimm*&rn a gloKDshou)~fAscor'men go tro:1dow echoingz1aa sick; Vointment always f!e  a 0 donly a2r'st ree dreadD2^ 2s d#0 ]% jt # a hopeless stupor. N 0_;accidentaly, just made,groprietorS ++Tiquor)premises,qcely fl3  public pulse, tremendou)1the 2 wa5qa lucid%Rrval,lasubjecta asked--dimly 7" worst-- W.! Thd sinceaEill.p.h "stSup inr#bild-ey1vWhat? W)$Lm;lace has shut up. Lie dV! a&&+!me!" "Only02 meQing--&one--please! Was it Tom Sawyer TT burse>"Hush, h !Byou 5 must NOT talky'Bare very sick!zAn no5 bu1rF t powwow if i the gold. Sctreasu2gon Ugone MmJ$e bout? CuM +@TR.2houoD1dimu/7$3min^uF the wearrhey gavhh(|?&. o herself: "TNJh/poor wreck. find it! Pitysomebody !KR! Ah,j!PDAleftIThope ^5or strength either, to go on| E CHAPTER XXXI NOW to%1 toZ's shareapicnic*By trNathe murkyqSVr ompany, visit familiar !eI$--adubbedw rather over7ptive nam uch as "The Drawing-Room,"Cathedral," "Aladdin's Palace,"\so on+hide-and-seek fro^u b AengaBn itzeal until!exertionDrow a trifle Asomen6 a sinuous avenue hol+-/kf #tangled web-work of Idates, post-office addrU rmottoes~) g walls rescoed (in ). Still Uand talk:CscarcelyM3nowXK"ar!H! w+tq. They b2ownPK!anphHA she[.ed,yD   2 a am of watrickling over a ledgkQcarry k sedimenVuit, had Qslow-y 81gesm3= and ruffled Niagara in gleam5nd imperishabAone.%squeezed his smallP h in order to illuminate i q's gratAtion rit curta,]jnatural stairwaywas encloZ etween na9ce the ambi Ya r"bd him. respondehis call,1hey_ " aM-mark for future guid oqir quesAey wD, "waBthatXAinto depths ofL  2Bmark|g$ed?( of novelties to @!the upper worl. 3oneQa spa s", L1cei3muld"Rof sh[stalactit" land circuml.c7 [' H) 1kedG" OQadmir_ +1lef~bnumerous Aopen?0#toi artly bm Qbewit2 sp}Rbasint(dncrustsa frosta glitt crystals Amidsa| supported by rfantastic pillarsR# ?Q8"joof great katalagmCtogehe resul1eas  Q-dripqenturies. UnIZaof vast(ts of batfp themselvwaousand#qa bunch(s+3urb flockings 4 byrs, sque"and darting f  FCkneww4the danger%isqconduct'#'snd hurried herthe first kDffern qoo soon)Q a ba#Duck gGmits wing ,ugitives plungnevery newr#ag!atRb got r5the perilous 7 ubterranean lake,,a stret?its dim 3way !it@ p!lo2shaQrHe wantLexplore its b;,0t conclur!habe best to sit#Ast a9TR. NowO1timbe deepA lai&Rlammygb spiri@*Why, I didn't ,it seems1so M gaI hearY!ot+:m bthink,#, 9Hqdown beLhem--and:!n'=Qw howK/north, or sou AeastQwhichit is. W8Dn't >bm0Cweek9!ye"qwas plaT"at cf 2 beAthei8 3dleAnot cyet. Aqime aft"isZ< P CR--Tom qgo softlo for dripp`BaterZ3 aMf satR Bothcruelly tired, ye CssMfuld go 73 .Tom dissenD F2not>!st8D !ey'2 fae-bin froPBthemTrclay. Toon busy;G'1aid* 7Atimeh^broke the:AI am DAungr5J!me!!of . "Do you remembP"?"4he.Zbalmost1d|'s our wedding-cakeMSYes--!asTQas a 6li"goaI saveA&"us to dream onyF1way$n-up people do'll be ourSS"pp<Q sentP6  Bdivi#Re cakw 3 atT2appetite,Tom nibbled a:amoietys abunda"co"RfinisfQ with. By-and-byGtey move on 'yilent a mom"qThen he:z1can/ rit if In1you k#?"8'4pal}`.Qnw 1stamB!er Bre's ink. Thatw " iClast6 ! gave loos)S&il#diA{to comfor$ `$AtU!C"?")y'll miss uKChunt4rwill! Cl"!ithey're hun Ror us,laDare.Bhen $S"Whby get o the boatHM#itbe dark then--enotice w/1n'tnbIaanywayNr mother8you"bthey got q." A fBened "inT"brfSSsenseRe sawh made a blunderw% _hs2hat08! Tebecame$ndO uful. In a new burst of grief21 sh  ^ g"ingQstruc@s also--QCR:half spent before Mrs. Thatcher discov M""at/Harper's. 2 GR !biqno doub2:)Bwas a !on/M $on1it; }!%esso hideouswbat he 2$itG!waa5ger1torX,K [/s A portio0h z was left;Q Band ,.~dhungriD poor morsel of food whetted desir c : "SH! DiuAthat 2othyV " aq like the faintest, far-off. InstantlAanswYul|/d M)Uhand,@"*gr7 corridorG0s4. P  s(R ;.BV%Rappar a BnearU DthemdTom; "coming! Come"-- b now!"54joy,rprisone overwhelmFT2spe[ %moTswarmingfrantic half-clad pT, whowA, "T2Vut! t F " Tin panChorn 6addAdin,#Qpopul massed g}*!to ver, met=in an open carriage%"byaitizendrongedA it, joined itsWRmarchswept magnific? Q main et roaring huzzah* !was illuminated;~Pb;ar3est(t!tt w0Cever_ 2Dur%re firsthour a processars fil rough Judge-'s house,f<n"sa+,ejsqueezedt'", to speak butn't--and dr out rainiY"rs veK& c1ppi% romplete nearly so5[ a messe AdispSdkH#2cav2!ldv"!orL 1usbNTom lay 0aa sofaXWasuditory71him=1tol~A his!ofwonderful adjB, puR+"inAstri1add adorn it1"al JCudescriptOahow he %tent on Bexpel;7'Btwo Fs!as0* ARa thi^aullest4tchM3wasT"to he glimpsed aD speh6Clook*A day ;"2lin Oit, pushedshouldersa small hol1sawbroad Mississippi ro by! And if it5 F0Rappen#beVhU@ !se* 2at %oft/d[ %4rore! Hec7for/I%j @ @"imoAo fr.r$such stuff, $  &# w Sto diR~?ɆU laboher and convincg %"hoe@Q died1joy A she  actually>lueG he >1wayI& !anbn help2 ou?gAat t]for gladness+some men a8Qskiff cTom haI!em G33con rddidn'tE=qild talfirst, "#,"Dahey, "Q"$re]2les> bhWavalley cave is in" n m aboard, rowFa""gam supperqGthem rest G 1two4hreDdarkn.Fhome. B!day-dawn,=q handfu% Ahim Rtrackg,5R+twine clewyctrung +sformed A. T+# }BtoiluPi~Rbe sh3'ffA9s#Foon " y bedriddenFf}5and~to grow mo7 QBwornP ><2got,MV, on e"wa- {a"as  `"di8her room1Sun34she$ash1hadT'edk1wasaillnes#$omi of Huck's sickm Rto seoAbut be admitDthe bedroom; neit5- Uhe onB or H-x-bwas wam8; s introduce no exciQtopicL Widow Douglas staye1thaKaobeyed/Ahome? the Cardiff Hill event; alsoDthe "ragged man's" bod-%  ;6 erry-landing2had7Adrow&\trying to , perhaps. About a fortiVrescu E, he a visit:yi#plGrong enough!toc2Tom'Aintel:.., A waswm,t " ome friend4Tom$2ing>2oneW him ironicsqn't lik%!goHRy10he thoughqRn't mqO said: "Well,1others jusuQyou, )3I'v| ast doubt.)Ave t3caraat. NoAwill !atA anyH*)*Because Iits big do $atb boiler ironP weeks agoriple-lockedO"goTbkeys."tjite as a sheet.1at' matter, boy! H,Arun,qbody! F=aa glasL1!" "* gba!!thJface. "Aqall right. W1a M#Oh,'[cave!vXIII WITHIN a fewj2new1spr.%b dozen b-loads3nq @!to McDougal'sE1boatll fill#pak"s,5 CSawy[deDD bor4. -bbwas un4,%rrrowfulFeCelf sqdim twi xD lay^1ed )@,)"hiQ closrthe cra} "thif his longing f+dfixed,>clatest,,s cheer CfreeQcoutsidwas touchedd v-tick--a dessertspoonVZ2fou&J3was fallingsPyramids' Bnew;Troy fell#this of Rome7Claid(bChristtrucifiethe Conqueror creat British empireJolumbus sailEqmassacrqLexingtons"news." K2now3ill=4be #whBthesy3gU"ll\Bsunk2then| 3of ,w "raCw;} ]c thickof oblivion. Hoa purpos Aa mi=? Did thisR pati$d!fi ousand yearsready forD2flihuman insect's need?has it another important object to accomplish  xcome? No .Band 2hap alf-bree1out ^>Qprice8drops, bu3a(e !t patheticslow-droppVBater@!hey8e1seeb!< .b's cupC6Ts firde list2bcavernmnQvels; 4b" cannot rival i 4xKn,VB BcaveI flocked in boatsfwagons|3towAfromthe farm1 hamletsseven miles|I >1ugh%irYSrall sorAprov~NsUO/3hadN! as satisfactory a%. funeral y"av&1 ha Y%is5Ir*Bgrow[#oni#agovernIrcpardon5k qlargelyT2ed;Qqtearfuleloquent meet<$he#a committeJCsappt!apBo inrRF%1ingjSwail timplore*be a mercis trample $ut| Gfoot/h0"tokfive citizenwt&+idat? If. ASataC Cselfe$/!ofl)SlingsRto scribblir names-a tear on itLir permans impair Rleaky{Q-work"2TomAvHuck to& gave anRtalk.3!haw1rneQ aboum'the Welshmant, !is}Yq>s!? old him; R  5he TS talk2now's face saddenedw bI knowJit is. You got5QNo. 233 anbut whiskeytold me itAyou;aI justp must 'a' ben ]usoon as\'fA bus|"em8q hadn'tt)ney becuzdl!go!me ! w Dand aif you!musdB els's alwaysG4we';uget holT swag, Huck, I-It-keeper. YOUF -" I"DD.mI D1youHAto w   yes! Why, it seems!ag#8> CI folleredK-YOU foll1him2Yes]2youqcmum. ISS"'s;Q2himI don't want 'em soV Bon m me mean 6s. If itpben for me he'5V ain Tex@&w,.ns entire+%in-5Aonly* Ofit before.lp:,'!ba@ main question, "whoever nipp "in(, --anyways it's a g.afor us;G wasn't n!;Bat!"Lphis comradekeenly. "Tom,agot onO twQagainti1 cave!" cblazed. "SayM FgainT*"Tom--hone 1junf--is it funV!strEarnest;!--^$as# f ! ILlife. WiF#go"reAhelpZRit ounsI bet IxE2 ifwCRe can5 ouV  6"doDwith dlittleBatroubl the worl?aGood aat! What makesRthinkoney's--2you;rtill wef!re#we1mit I'll aSto giVqmy drum71&Cq I will0jxGT" "A!--va whiz. [!do1say "Ri$w,say it. Are*4IWaPave? I ben o-cpins a,"oradays, tbut I caKlk more'n a "--IAI$.">q G$qanybodyRm 1go,1^Qmight,Drt cK]  N ; ,Gri.bskiff.&2flo] ["re I'll pull itj_by myself A neeturn yourq$Q over2Lw2artA offm@B. We"bT32eatour pipes bag or two T%kite-stru ese new-fp!thA ycall lucifer m+rs. I te, "'s1imetbshed I2omeD" Aqaafter the boys borU&) #a W B whoU Cbsen(got undec^were sev` below "Cave H%," R: "NNis bluff herJ$s!Balik d5--no houses, no wood-yards, busheRO"ee5whi4 Rup yok#'s4 landslide? Aat'sof my marks. We' aashore.yG97inU're a-sta#8'6ahole I bout of~Qa fispole. See#4can.Biplace abou$P proudly mar"a clump of sumachncc: "Heare! Look at i;athe snuggesDis country9 "ll2Drwanting/ a robberrknew I'rto have1ng 3thi1o run acros]vAther!ve1it :&2'llit quiet,1let< K:aBen RoU1Cin--*$ o@ be a GangC #lsj* any styl it. Tom Sawyer'sA:1sou$plendid,L?  "it3doe And who'c1rob/aOh, mo6. Waylay people--W$!lyV2wayRnd ki "No-@Q. Hivm# t4y26a ransomUeWhat'sCMoneg3makR<y can, off'$ir{ b; and you've kep.mqit ain'2!seV2. T!enkway. Onlyb women1shu`9 2men5Cm. T5Fb beautqnd rich awfully scaredgt"irI!es5sZStake t|+"nd4pol7y!3 as3 ass --you'llMany book. cto lovXfter they,m s a week y stop cr!eRto le'i4dro Ay'd  { Raroun2com9. It's so insy real bully' $ Ibdbetter'n a piratQC"YesF&^7way Cit's6"!toQQccircus\!at{@y+ %1andaboys ew)#ho\  $ l0Qy toi#*a7tunnel, then madir spliced 1 fadK$a on. A&E z'%pr)Tom felt ams quiver him. HeQCragm> -wick pexSon a oC cla$De wa; t2ox*_ d flame struggl)AexpiQTf!ga4 o whispers,!foS-d gloommcoppresBirit yYBpres:ar 0LQuntilE reaAG,Wndles%rhe factx not really a, BpiceLa steep DhillFirty feet highW @eW+2Now@ AshowY.  Ae he+sa aloft+` sNAorne7ban. Doi!ee? There--0big rock over$ S--donKp}3TomCqa CROSS2NOWZ '{ r Number Two? 'UNDER THE2,' hey?  2's eI saw &# p`+r stared Qe mys Qign afB 6R shaky voice:qless gi} " o QWhat!>treasureVRYes--6it.'s ghost is  ere, certain."B 81, nKB. It Q ha'nk8Qhe di,Away /%2mou!Vave--z ChereS \wouldy#ngkJ 4"ofV #so & &omi3feaX5. Misgivm!ga+d}CR mind 7Lc him--)ym$Sfools m@of ourselves! & a 8|; Z!a = !R poin`#wen1had)teffect.I6_"atA #so/EluckxQthat {7 isJ VpS AhuntG4box5wen77c -ink of fetc4theBbagsFS@B1soog oys tookr1 tofm a rock. qw less w!#gue*<,Q2<  `3'reOEickswhen we go to robbingNSe tim hold our orgieCsre, too ful snug9 ) 0CW@ bI dono P%;#ofT% wWCto hem,] /"ing!a Btime getting late, chungry`We'll eat0bUwe gec6y Temerg4/ 0ed warily f 5oast clear!weZbon lun$in ! Ac sun d#Bowar[Rhoriz] Ay pun  kimmed uDe@KR2wil1chai 91ilyZ7 alandedI3tlyd4dar7c"!id!in 1lof the widow's woodshedrAI'll.3 up*ev1 it(Upa?!unna!ou"od!.#it"it=be safe. Jus 3lay\-  Atuff1 I nd hook Benny Taylor'swagon; Iqbe gone!"nuHe disappear#re agon, putcBtwo Rsacks!"itA"w"ld,Qon to!tarted off, dragging7rgo'|h+"'sh &tgay9q fy1 on: Pp~ allo, whop  nLWGood!1me,, !ar&Gpingy*waiting. Hhurry up, trot ahead--Ahaul~Vyou. qnot as b as it4# be. Got b;in it?--orQmetalO+4tal2Tomjudged so9 1boyGthis townAtake0$%sol away1imeNing up six bits' woraold irNS sellh foundry thaz3y w; 8wic'$at6 work. But that's:4Fnatux ",  '!"!wa1to [$Ch#wa$ever mind; !n&% !E'1uckGRf=hension--for heub} falsely accus; r. Jones, we haven't!Udoing Rlaugh!'-,ymy boy.i that. Ain'bgDgood+%Ye_"sh"nA &B to #yw%"n.-(n,%to be afraid for?%is+J3not+qly answ"!inq's slow$ ~1S,;into Mrs.# dXeroom. 3 le nae doorz3gwas grandlyn1bod4tof any consequenceu2&~ ThatchersQkB Har3the!es, Aunt Polly, Sid, Mac he minister3beditor-qa great0&)?all dressX bAThe a recei;<RBartiJdany onP#we!iv such loP Dare cov Bwith:and. 2 bl[ rcrimson rhumiliaUNHv u at TomFAsuffhalf as muchQboys "however. Mr. Bn't at home, yet, so I gave him up;5$astumbl2anda Qat myG"br "Bin a(0!An1B did3Sv 1. "TyNr." She cto a bedchanRNow washI% y. Here arnew suit$ clothes --shirts, socks, .UCy're+A--nobthanks*&--b! And IY%Bz y'll fit boyou. Get Dthem await--Bdown 1youRslick .3n s \rV HUCKD! "we can slope, ifu'Ra rop" high fro"Shucks!D d|%IQrthat kiUfa crowd.,^(8 athere,a"|&4! I"an!miRA a bX'Scare Q" Silm .vhe, "auntie has been  afternoon. Mary(your Sundayb readyU 7aen fre  . baAthisus qclay, o;ra)Mr. Siddy jist 'tend toT own busiO#'sis blow-nb`It's one2#atx1havtime it'sF 1andl sons, on=uw"Vcrape they helpej9&of4'Rsay--h, 21, i yk+wK  Fold 2is to try toq#_ J( C1to-,overheard himvbto-dayvas a secre"B it' lRof a (XE RknowsSL##1allf!trro let oz!doVQwas bqHuck sh !be!--xn't geta yG1outAknowS"AwhatA'zAtracYAbbero'V  a  BovercurprisQ#AI be4 drop pretty flatWbchuckl aa verygEe aatisfiZy. "Sid, ib2tol3Oh,:Qwho i# . SOMEBODY told--3 @ZJl_ Dpers:Cmean:R to d XI7<x !you'd 'a' sne sn9EtoldZ)0)Tdo an{21an !y&~mo_Tp(+J >  cones. X$nn:N  says"--Dcuffed Sid's {i  0k8q"Now go"if2arenQto-moFit!" Som Autes'GSguest a WD-tab[$ua dozen@/"pr!upittle side;F1e sixQoom, {t1at r vAbproperl Amadev4 speech, iY!!heOkNHB honPQF [T was Dwhose modesty-- A: fo)sHe spru+{a'Er adventu finest dramatic mann_ master ofDthe B it !onJs largelyFerfe8 as clamorousNeffusivechappier K+amstanc  &, ( air show of astonishment,AheapF compliment2 so: ntude upon)(a he al/Rforgoanearlyv l܎K!Amfor%this new2 K :k set up as a targeh  \gaze laudations <"sh<2giv s a homesher rooave him educated;Rcs-Fuld spar2 sAtartFi  \'s chancrcome. H#F32uck"2 ne's rich." Noa heavy strain2the9 tmpany kept baBe du E:2aryis pleasant jos5DsilearawkwardObroke it@(AMayb. cbut he0!lo it. Oh, you%n't smile--  1eY;&a 'tTom ran Bdoor1looked at eacha perplexbterestuinquiringly a_ Ttongue-ti* #ls Tom?"P. "He--well - any making at boy out. I(<4Tom}/,q#Dggli{Eeigh,2 di"afinishsentenceCpourU1masyellow coQ the C^Cqwhat dih ? Half of FRmine! spectacl1 general{way. All gazed, nwpoke for a momentn a unanimous :.n explan  #1fur5i nd he did^B tal!bumful of _,ca scarc!n rruptiony!tok the char/its flow|che had"edAJoneM)d: I,x^Jf#%isP2it BamoupC nowone makeFBsingy), I'm wilbto allhT3was[3sumt"edRG over twelve thousand dollarsr-!as+ 7 [Qaresentever seenl`e time before, "  Q N"ho1 worth consido7av,tyaV THEer may rest Aaj's windfall33$a j4tirDpoor(vof St. o. So vast a sum, in actual cash, seemed nexincrediblejqtalked , gloated0rified, until thOs' mTJdtotter&2*'e unhealthy excite "haunted" housq 2 anneighboring villzwas dissected, plank by U3oun1 duand ransafor hidden treasu Qnot b=st men--0 grave, unromantic menWmH1Tom >Q cour2adm(gz1qnot abl|arememb~2at 4bremarkLqpossessJ&};3now1say0Twere dBrepe 4didvrsomehow regardedv8Aableyidently lo{5power of doV'2nd r common !s;5#ovir past historr!up X v2ar " of conspicuous originalityto paper published biographical sketcheNt.1 # p>#'s !ousix per cent.dJudge " lt's request. Each lad had an incBnow, was simply prodigious--a9D-dayC8Ayear7?2jus  got --no, hpromised--MrcollectD Ha quarter a7 board, lodgd school a <^1ose  be daysF 2 hiBwashbrmatter.  ,@RopiniR 8no 3boy!goz daughtPAcavepqn Beckyd@ 1fatzwin strictCw!ceA TomAtake&a whippt6  dy2isiFv  Cplea,!ceK4thei3lie-w!olorder to shi*&at!hemo8own3saiTaq outburh$atyBa nod !ou<,5magz lie--a litaworthyzaold up-2hea-Rmarch1]breast to George WaBton's lauded TruthU"ratchet!mQ 7ghtzU bso talSso superb wR walk4 fl qstamped\AfootdVv!2Shec:straight of1tol#/it"op& 1seexqlawyer  soldier some day0look to i"T#!AdmitkY National Military AcademRafter(Qraine!es  9[Amigh9'Ieither care both. Finn's w0 qsthe fac#now undeQ_ Douglas' protec introduced him)"society--no2' it, hurluis suffer%1mornj1R bear?servants1cle 1d naHQcombeC1 br hCbeddly in unsympathet3ets2ad 3e[ spot or stx~uld pres/2earQknow yK$!haE#eaba knifufork; h%use napkin, cupXplate&QlearndWbook,@go to church2stalk so "lyaspeechT become insipid in hisX; whithersoXees"edC2bar ashackl civiliz;B shuiQbound1han foot. He bravely b4is miser|1ree!thTLSe day up missFor forty-e\Qhours^g! hO j2himw2in Qdistress. The cS profoundoncerned;~7u E %eyF- @1forqbody. EThird V)r wiselyPp*$Qamong old empty hogsheads down*]AbandU#sl-T p'inQm he $rrefugeeL had slepor breakfastoB stolen odd61end Bfoodbwas ly<f in comfort969"ipwas unkempt, unM1cla old ruin of +,had madepicturesqueRays ws01frea happy[S routvBout,"his"*been causing,s 3urg=Qto go gr's face its tranquilv took a melancholy cas63RDon't X CI'vey #itwT work6"T;"#"it:~U 2to :)d("ly_&7#them waysA!mex!up% / Bsameq 7+9Awashy comb mLo thunder0w&let me sleepJ/a; I go61wea[m blamed cloth!atA smo?" m#'dg1seeany air git A'em,Show; !y'1 rotten ni,a=!et, nor lay^ croll a@nywher's; I hai"liD cellar-doErit 'pea b A  and swea q--I hatm!m Cy sermons!Aketc xK,[chaw.Qshoes$w eats by a bell1goeybed by fits up!--VK's so awful reg'lar)dy!it_(,>#dvhat way, Huck(&qmake no differI`Qybodyq STAND &3t's1 ti so. And grub como easy--I# t{!esvittles,}3askAa-fi 1; I  in a-swimming--dern'd if{AQ1do 6t". H!I'42 to"sodn't no(#--. OuRattic"ipRSwhileA daym1git!st"my , or I'd a died, TomnKBAmokeu y?5Bgapeqstretch Q scra before folks--" [The+a spasm ofsial irrit and injury]--"And dad fq"itaprayedNDime!A see, a woman! I HAD1ove2--I yUbesidHZ5's $Copen_<S$it%I G!st"QHAT, QLooky%,0S rich@what it's crack); Bworr  9 2a-wwas dead <2. N7%seBsuitis bar'l %shake 'emmc>B got into%isAif in't 'a' ben Kmoney; ntake my sh@&Syour'gimme a ten-centtimes--not manyX#s,K_# Ra derR2'th's tollable hyx4you$qbeg offSQidderv"OhK3d6%Rt. 'TBfair if you'll try^;B!a UQ longI*e $tok<Like it! Yes--bay I'd&a hot stovAI was(!itcLC. No7Brichi4liv m cussed y_Bs. I6oodv  Rf  I'll stictoo. BlamBall!QSas we3gun_1a c*"ll+AfixeEArob,p&olishness has  k"up5pil~x1sawx opportuni%"CDhereHECUevYnturning 'qNo! Oh, -licks; ara!qin real3-wood earnest)J+CbR'm siV-?5But<l)#qgang ifarespec5R's jo3h!!C"inq Didn't[!go~a piraterYes, bu%'sRt. A 7 zfAgh-ti7"a NQ is--rgeneral~A. InTr!ri 6  Qup inQnobilRdukes03uchw,! aS2lwme? YouhC  A youP *nVWOULD+B" "wR%,tI DON'TR--but(vpeople say? Why 'd say, 'Mph! V#!  low characters in it!' TCU+ {h+`$t*#so , engaged%Tental"#e. Finally h# Rll go}aba monttC!nd1if  `3it,49XRme b't>%Q gang e_b, it'sQz! Coxo8X`2and G>Toh# a[oEWill/!--yg2? Tggood. If sheUt"ofroughestK"s,@qprivate-Dcussdcrowd ror bust] Astar/4NCturn$s? 3right offBB@Atogem"avQiniti  0Qmaybe(H(Lj;+W6t$12Bto sn9Cone [+ O#te rgang's 8+sd nNre choppl o flinder qkill an 2 anV his famiWhurtsX%ay9/e3y g8,!_3E bet it is3 "at1ing Abe dt midnightthe lonesom|3est@ you can find--a ha'nted " ib:-Bll rNB3up M#yw{(socyou've3 on a coffi 1sigh with bloodOt)Bsome RLIKE!frmillion )X!ieh n 8 s QidderAR I ro 8#gi% acr of aRLbody tal('-&itD bu+!sn!,wet." CONCLUSION SO endeth schronicP$G strictly a}!BOY, it kAstop ;Sstoryz!nofEmuch)p"wi becoming ^3MANone writes a!! a Sgrown*Q, he O4A exarto stopOB is,a marriage) iof juveniles, he W can. Mosgyrperform still liveare prospc2Som.it may seem ZQke upzyounger ones agaiM9 1sor"meAwomey turned@krRit wiwRwisesyOto reveaH&Rat pacQtheirDs at'4. Pby David Widge]previous ediwas updat2Jose Menendez'>  THE ADVENTURES OF TOM SAWYER0 /BY# MARK TWAIN' (Samuel Langhorne Clemens)P R E F A C E MOSTW%e 1s recordw areally occurred;nr two were experienc6 myb!rObose of"wh7 ]#3mat7$inY Finn is drawn from life; Q also$an individual$is a combi,Ybistics #re_whom I knewSabelong t.Sosite of architecture. The oddK!!stzqs touch}"onDall prevalentchildren!bslaves5e Wpwe period1is ay, thirty osAty y ago. Although my book iaGended mainly@ Athe qtainmen1boy7 girls, I!7#ill not be shunni "7$at;d, for vmy plan<"tooo0ly remind adul0 they onceathemselve^ 1of (rhey fel aalked,}Rqueer89s=Gimes 4. z!dUTHOR. HARTFORD, 1876TT O M S A W Y E RI "TOM!" No answ& g4iat boy, I wonder? You Rld lady pul'"!eratacles|$!ov #emcthe ro0rn she pm:&ut"m/seldom or +rTHROUGHhrfor so WJj!asyIher state pairA3 pr8V2her",Qbuilt3"style," not service--4'!se+raetove-lidsUs well. She looked 2z"&mo68!aiK1Qt fie0673oudP;the furniturUhear:e IQ aet holI1you A--" 2="by AtimewVnding punchingNL%dre broomj!soGdneededE2to punctuat Q!esBresurrected no f B catiJ6"diz!ea!1wenthe openDA andUiRtm?he tomato vin~"jimpson" weedsB constitb the garden. No Tom. S AliftWmavoice  angle calculfor distanc1 sh : "Y-o-u-T w!slTnoiseU"h42  i to seize al2boye slack of his  aand ar?Qhis fwA. "2! IE 'a'closet. Who!(.Pb?" "N  1! LI!at yourU8(Qsr mouthb!ISa truckXIk?-1aun. Dk^3USjam--FewFWAI'vet" dk"leGA jam@e I'd skin you. Hand me switch.# h.i d air--Sl was desperate-- "My Bbehia hatesB{5 S else#'ve GOT to doLIrhim, orbu!ilaTom di>-eidFAgood02. H  back home barely in seaso}help Jim small colored1sawS9-day's wo"likindlingssupper--at le6e{n:"to~=8hiscto Jim"Jithree-fourtht~$rk. Tom's!br( (or rather half-Q) Sid!al0Awith A(piccup chips),Z ca quieH1andE,%noDous,VBsome* While Lstealing sugar aQ offe{X7C askw+questions/ Ewere1gui1nd deep--for Bwantxtrap him6damagingments. Like ;pI6-hearted souls (1was pet vanityAlievA `4endowed with a t@ 1arkmysterious diplomacy0qhe loveacontemn0xmost transparent d׏ as marvel[low cunning. Sai u: "Tom1midQ warmR, warn't it8 BYes'OPowerful1'u "wa n(FAA bim a?Ae shvTom--a togL#unr.9;suspicion. H8dL93facKK!ld aQ. So [ ?SNo'm-ynot very mx =1rea+oY Sshirta#Bu } 1tooJ though." A-Qflatt hO7rreflects2;hy-2hir1dry!ny Bknow/*s8!hay Fher Glqin spit/1herC whe wind lay, I ZqforestajCwhat )next move: "S]us pumped on eads--mine's damp yet. See?" 88"ex:Uthinkoverlook(v circumstantial evidenc!mis=a 1. Tya new ins"5ion^ ho undo yourrcollar =bI sewe to pump on/Qhead,3you? Unbuttsjacket!#sh#of\2fac1Aopen]s@a. His qas secujQ. "B1! W Ago ' #I'11sur'#edQ A 8bee  QI forg(y*. you're a kina singed c"s --better': . THIS timu Sahalf sV*her sagacitymiscarried,3gla?ATom i3Winto obedient conductconce. But SidneyIB3you5hisith white thread, but Qblack5BWhy,OB sew8r! Tom!" rnot waitQt. As4ent>w3o85bSiddy, 2licfk abI|afe plac/nrwo larg22les "A wer#us.+sthe lapd6them--on^  D3theHpJDShe'D"anoticeQit ha_'for Sid. Conf6it! she sews]&_ &I wish to geeminy sstick to t'other--Akeep!run of 'emsR I beI'll lamX qearn hi4!Hene Model Boye villaghkAhe m&1boyOS well--and loatim. Withins, or even less, M1tenG-As. NQcause sV1onePR heavV.Bbittj2him a man's ow_aTand p 1bd !emgAdrov% mSb)y25!--ras men's misf+eiaexcite!of. This newwas a valupSveltyP1stlojust acquiredb negrohto pract5Pundisturbed. It conma peculiar bird-lik5, a Aliqu wrble, pW  &#he9Lh(Droof at short 5valAmids@@Busicxreader probablyEbs how !it.4ra boy. Dilige attention soon gave 8#kn{7he strodeFVtreet full of harmon1his gratitud 0^ an astronomer feels who hasg planet--no doubtlqfar as Eg, deep, unalloyedRs concerned,advantagFAwithT!boO t$XComerRsumme4ElongJNqBark,2 P"ly Tom chel2!hiustle. A stranger!hi boy a shader'himself. A new-cAJaA ageither sexXan impressive curiosiPJdshabby\WJ!Thy{`Qdress\"oo  on a week-A<FFa astou B cap dainty ,W- ced bluL3b round%5was#Rnatty0"sohis pantaloons2had;82 on#iGonly Fri"He!wo necktie, a br  aribbon0had a cit#KR air |bat ate&avitals B mor1staUIsplendid}1hig!oshis finerUhabbi E outfit seemed d3crow. N]boy spokeU,2oneEa--but Nsidewise, inrcle; theyArface toaand ey!ey#X - U!" "D3to see you try i,  8$doN> ,L.-'Y?1CanACan'A "An>\!paMp ! Aname"q'Tisn't5"of^,Well I 'low^ MAKE it my0)why don't youhI\2 sa}01ill3qMuch--mAMUCHrb" "Oh^ 2'rey smart, DON'Tm# I)l one hand:n!meIr DO it? You SAY aI WILLTyou fool~ "Oh yes--een whole familiesame fixqSmarty!| CSOME "Oh_a a hat+AR lump-8;Z[Bck it offqanybodyG61akeb!re suck eggsYda liarn %fighting.q and datake it up1AAw--aa walkXSSay--!meA morBsass@and bou1 rof~oOh, of COURSE+; then? What/ eSAYINGTx for? W>{EIt's XQfraidyxI AIN'TaYou ar7""I+A3/3eyiM1"sihaR eachm tCwereH  .XGet away Ahere"GoyourselfDI wo B"Sobstood,X Sa foo0d"as a bra' both shoving 2ainaglowertg1Q hate# nfget an a. Afte=Auggl ,Aoth <"hoy#flHmSrelax Jnx watchful caution|acowardca pup.1ellRig brozQthras'y3his44r finger.make himW 1toosI care forj{4? I;1a6big Be isUmore,hrow him'3at !T[Bothas imaginary.]$at's a li=DYOUR 2n'tAit s1rew6n ;G dus cbig toh<qFstepZ/y stand up. Ateal sheeFTz!w{ 1tepv-Dmptl N="sa$'dnow let's D crowd m;abetterZ{HSAIDh*--Wd[By jingo!Xtwo cents.jAtook1bro)QEpper>$ 1ockd cderisionRtruck*g0B. InF.QstantR boys1rol Aand 4ingdg3d6Acats3, 1pac"Rtuggetm A's hI 3nd fFs, punch3Qscrat"T's no,covered -#:'ry* confusion2for) ;the fog of baXcDTom %, seatedU!id1# p sts. "Holler 'nuff!"3 heaboy on%Rruggl1fre*Hcrying--.rom rage. dn. At last#go1 smwbed "'N"1up -)8jyou. Bny 1foo+Qnext  3Mqff brus6S2ustGsobbing, snuff5and1\Eally&Aback1sha1his;.1tenbhat he=a do to]the "next) 2ughout." ToTom respo0Rjeers"st7off in high feath as soon asI4was*(up a stone,2w i "hirbetweenhoulderss-\1ailran like an antelop_Qchase6 traitor{"Rthus ere he livednaa posia2gat2som9A, da the enemy toonly made2s a gond declined. %J2's and called 0 bad, vicious, vulgar&"ndc3[ m} Twent away;!he\ he "'lowed" to "lay"s'.g1gott>2ate#:2and$he climbutiously in r #unl an ambuscade,-Bpers4#Aunt;g"aw]2tat n her resolN 1 toT his %%2captivity3ard/became adamantine in its firmness. CHAPTER II SATURDAY mor;e,"&4Qworld#.and fresh/Qbrimm-1ith5P1wasng in every:(L" i>'!wa*RR issuQ rthe lip`Zcheer iniJfAa sp&tAstep locust-treQbloom bragranthe blossoms fill air. Cardiff Hill, beyona]ave it,B!grith vegeta!2lay (4farZ, to seem a Delec"Land, dreamy, reposefulinviting. 1ppe5e2alkAa bu| of whiteZ long-handl11ushcsurvey  1qll gladE2lefoand a deep melancholy settledAuponaspiritmrty yardsQoard k nine feet/s. Life c hollo7existence^Ba bu{1ASigh)Qhe di 2hisfpassed)Isopmost plank; rep the operB; di8Qgain;f8/ignificant qed streaqar-reac!co7'un8s"wntree-boxQ Jim 3skipping 5at va tin paiT singing Buffalo Gals. BrQwater (rwn pumpKRlwayshateful work inu"Seyes,Dq now itJ1not\k 1 so\dompanypump. White, mulatto/Qnegro! 9there wai'Qtheirqs, rest?trading plays, quarren $, g, skylarking. And h"al?Awas only a hundRgnd fif!!f,/3got)  under an hour. "ev an somesG!lyto go after him. U1Say, I'll fetcp'7'll`"soJim shook :wq, Mars #NOle missis, she tol|IBgo an' g<s3an'F#op ' roun' wif_61sayZQspec'zEAgwingAax m ,rs5$an' 'tend to my ownQ--sheed SHE'D+f to de/5in'2you Cwhatt!id#. SSthe w talks. Gimm $--qbe gonerC a a\!R. SHE ever knowI9 she'd take)Qtar dd me. 'Deed2wou.q"SHE! S ver licks--whacks 'e}URimble1whosE ,p5C }w%1 awP1but6hurt--any#it!if$Gcry.you a marvel" aKs alley!Abega.waver. "%!Di=bully taQMy! Da5Fb, I teQ! But Tom I's" 'fraid aissis--" "And besides,R will#shAmy s,^o"Ji- human--t> Qttrac  "ooHAfor iaHe put( *a"ntZebsorbing!Qest w. 4andS being unwR; V2s fZ3dowI k!ApailJg3rea+Awas "waCvigo *retiringcQield 7a slipperZ {and triumphEeye.''s energyeAlastq}Tthink%!fuE 1had $ne$Sis daH"rrows multiplied. So~ 1fre!s #tra**!onL 2sor@2delXBd)Bb they J$a bof fun8%m2!to|)96verZcof it burn like fire%2hiscly wealt- q examin0 B--bitoys, marble trash; ;8 to buy an exchange of WORKX* 7s,*an hour of purk4domi#retraitened meansB "s qgave upoAidea r=1oys4 !rkN hopeless7- e Qm! No=  3than a great, ma1 8entC 6! >qtranqui. Ben Rog%v-spresentlnK boy, ofbwhose ridicule dreadingdb's gai the hop-skip-and-jump--prooj6is lis anticipa2!HeVM3ran appl1 gie1a la%melodious whoop, at vals, foljB by -toned ding-do,, a* amboat. As henhe slack}1spey"1ookhQmiddlU, leaned faro starboarderounded to ponderaborious pomp3/Oce--the Big Missouri (d| %;wdrawing"of 1boac capta9engine-bellbined, s!,o7 Qself  <own hurricane-deck the ordersQexecuAthemR1K, sir! Ting-a-linga!" The$way ran almos he drew up slowly towarq. "ShipToo backmsHis arm"gh^Atiff8xAidesZei mAstab%h Chow! ch-chow-wow! rQhand,"escribingly circlesC3 rePing a forty-'wheel. "Lg l-chow!" Thej5 e "to &RShead B0her! Letg*mslow! W-A! GeO ead-line! LIVELY nome--outd"- #t'Q#'t ! T~ t(hRstumpMQthe bA! StSy*age, now--l go! Donb 3thesH SH'T! S'tH'T!" (Suge-cocks)"on . R--paix9!, yDBen (n "Hi-YI! YOU'RE:ump, ain' nH 3hisPFouchI!eyan artistZ(!n vi\ gentle sweect&!suܙ"s $R rang4)alongsidv7  2mou!%er #e (n"tu1 k]! "Hello, old chap,M4gotTs, hey?"heeled suddenJn31it', Ben! IC9TnoticDSay--I'm goBa-swi, I am. DoQ wishacould? Aof c# you'd druther[ !--0 ?5? C)I (6(omR:d,#bi2at 6` ?` $hyIETHAT#umC \Aansw1carG ly: "Well, maybe it iU zI,$it suits Tom Sawyer dV1meaQ!le{`you LIKE!3Thep u}1mov^"? I(see why I oughtn'Gl-1. De$"get a chanW+# a fence every da}1hat(2thez-Q in aSlight!toAnibbApple2R swep daintily=forth--steI"ba<1notK effect--advAhere?there--critici=50--Ben wat2mov@1getm`!"ndp( bested, Ted. P 5 heTom, let MEf a littl _o consent1althis mind: "No--no--LBl"n'ly do, Ben. Y7'e,1's  particula.u a--righ eNQknow -G if C& I^3and. Yes, she's ;-bbe don[ careful; v"onmRthous Ftwo can do i?wayybNo--is6Hso? 1--ljust try. Only--I'd let YOUCas m:" "Ben, ., honest injun; but-D$nn!o s!1n'tAhim;7/!, "/Sid. Nowy` how I'm fixed? IfEa tacklKsb[C&Qhappe+"itOh, shucksbQ3as lgA youocK,#mySFN2.bafeardW3ALL Rareluct|ig @qalacrit1. Ah i4e  )erAb workeZ"sw>LA sun( #ed< 1 saa barrel7shade close by, danglQslegs, m^& aplanne! s0Iter of more innocBT33o ln6material;ed along :; they ca6BjeerArema2A. Bytime Ben\!faY'1out!ra1he $+Billy Fisher for a kit!good repair;1whe>out, Johnny Miller b in for a1Ir! a!ngw  uCso o, R hourHT hour8 afternoon>," a5poverty-stricken; !2was literally )3 in2. HhW"s r q mentioetwelveA par6 a jews-harp,*ece of blue bottle-gla}uOthrough, a spool cann2B key|u unlock1, a!mchalk, a ca decantU& tin soldiQcouplQtadposix fire-crack&r kitten only one eyJ61ass>knob, a dog-Asbno dogv3hanNvb, four1as of o C-peea dilapid)old window sash 1hadsa nice,G_2idlM#thq--plent40 \2encQthree coat! on it! If2n't9>9ut )"heT have bankrupted+Bvill)d2aidCmselR!itnot such a!,Yqall. HexA3dis8+ a great lawRuman |,1out5 ing it--namely, ."inD&Ra manzboy covet a} s !isG! n5ary;^ difficul vattain.U3! se philosop&)che wri ]x@A now comprehen>qat Work $isaatever dy is OBLIGEDj,<OPlay< not oblig# do. And 2helyIto under* :U1ruc artificial flowers orW_5ing"ad-mill is work, ten-pins or climMont Blanc amusement 3are2y gentlemen in Englho driveb-horseJ$nger-coaches tw}r thirty miles daily linummer, becaus@privilege costs themDablenQbut iOy"IK wages fo*XAturnh1ntoI3txsresign.oy mused at3ovea%ub?GQwhichRtakenC r Sworld`whheadquartersv[eport(sI TOM , ]q lkby an open {@leasant rearwBpartYwas bedroom, breakfast-s dining and library,|c balmy D air* stful quieeq odor o%Y@.rowsing murmur (AbeeshFeir effec!he AnoddfQver h"i "sh5n,%1but#caLdasleeplap. Her spectacl)1progQup onsAgrayA for-F1ty.%" 1Tomdeserted #ag&` !nda0 'iRpower p_repid wayN said: "Mayn't I$} yKCaunt&'ready? How mu Adone*AIt'sd.XCTom,ro me--I= bear itIb<u; it ISRF." dY1truxevidencezw uBsee LRrselfe a1uld^MDfind1perQ4C. ofAstat true. Whenfse entir*"ed1notelaborately QrecoaM!an!n aeak ad8ogw astonish 4was#unspeakable. S|bnever!m U's no^# i2canCwhenM2 %Ad to B." A!AdiluO!he)!liAby a, "But it#s seldoma aRI'm bsro say. go 'long$pl/Aryou get@3som i\BB, or(tan you." &awas sokbcome bSsplenSchiev1hattook him#th&tsE- choice appleQdelivit to him,C"ov cture upoBvaluNflavor a treatAo it uit came~ "siT9ugh virtuous effbsd: a happy Scriptur urish, he "hooked" bughnutn !kieand saw SidQstart%pHl2 stairwayll tck roomsecond floor. ClodsAhand$A thegC)waXmtwinkling y52d a #Si'a hail-stormx # ct$Allec+ surprised facultiess*arescueQ or s0+Bclod7tersonal<G} MAgonerSa gat3eneral t h&2too9iY$!usTit. HGrt peace+ /"SiWAcall"tt s black $6+n1rouC1skipQlock,hinto a muddy allaled byQ%s aunt's cow-stT4 He aly gotrly beyo  reach of capuQhasteR the public squ$1, wtwo "military"N!ie02boy"met for confliY AccorO qto prev#sappointt <G3 ofޢ these armies, Joe Harper (a bosom friend)<the otheruse two great commay ! dYSt conyb to fi!--DAbettIil2Rstill<ber frys !geon an eminence/Qconduield operations bysD aides-de-camp's army wX uvictory+ nd hard-f@ 1 ba# T were counprisoners 'drTterms rdisagre d7y $ay 03ed;X 4R fell?and march "ayhTom turned home slone. Q!as &3useJeff Thatch-1ved_saw a new girl e garden--a love^<blue-eyed creaturQ yellir plaite1two-tails, white summZd embroi  )JQettes fresh-crow2ero4without f^+a shot. A certain Amy Lawrenc2U2his6 !efoJa memory of  Gm 1 he#d to distr#; !rePdKQssion"dogi o + ~Aevant partialit pmonths win8bher; sTesseda week ago; $ <bappiesx Oroudest Rworld WQshort_e!inRinstactime ssgu a casual=)visit is dH"sh this new ange's furtiv -shqchim; tf Bpretq6 Aknow\4was %"show off" in 2sorabsurd boyish ways,# wBadmi%{Bkept is grotesque foolishnessome time;, by-and-by,  )s Adang) gymnastiche glancZ@!idy MC girl was we(xher wayO $upn r leanedq, griev5b+Roping! tarry yetblonger 1halA1 moO  Qsteps m]1warQ heav great sigh asp$Ar for threshold.#1his:! lI", Qhe toqa pansyG L ! ss): 3 bo)3rou\Uad with Tr twoY Aeyes=#haWCdown d as ifBsome of interest goat direction. P- he pick:&w#ry !ba! iO,aead tifar backSas hefrom side8aide, iO edged nearer B; finally his bare-#W3(liant toes)w 2e haBaway the treasu# OArnerb only minute--(v Rbutto$1 inhis jacket, nexheart--orstomach, possiblAnot 82pos<s anatomnot hypercriticaZByway1# 4ung#<nightfall,ing off," a16 2irl exhibite again, though Tom comfor$"im$ 3hop@Abeen>,*een awar&P  Bs. FX he strode home !H[[%advisions. Allasupper.cspirit"soCrunt won "what had #inV child." He tookÁod scoldrbout clB Sidp1seee!miY QleastQtriedIugar undGveryG"goknuckles raQ!foxc "Aundon't whackmhe takesQWell,/1torsRa bod 1way"do. You'd b9  bsugar ifq*watchingu sezckitche Xs immunity, l"gar-bowl--a sor&2glog2Tom/Fllnigh unbear_'s fingers6`Rowl d1LVbrokeFin ecstasies*JB (!he controlP#Rtongu!il5 toF Bpeak6!d,^P1in,18A sit0 bectly Lyshe askejimischief|u! tCrRbe noA!so+   !asefpet model "catch2 Heo brimful of exultR1 Thold Q rld lady #ba stood abovwreck discharging lightnings of wrath(#Y v, "Now iVm2A8zt gQspraw1on 2loo potent palm#ups!to($"keTom cried out: "Ho 1'erbelting ME for?--SiK it!faused,\vl1heapABut 1shes5her3she RUmf! you didn'ta lick amiss,)Wsome other audacious Iaz 9 ." Then her conscience reprgeqshe yeaato say'3 ki l;ashe ju - !beo4tru!a  Ae wr7T cipline forbadhs. So sh rsilence2d1bffairs av2rt.|1ulk# a W "ex chis woBknew3Qheartb Bas ojAkneen was morosely gratified b 1ous\)OAhangno signal take notice of nona3ingRR fell"no cthen, s& a film of tears~ahe ref recognition!pilsick unto deathbim besee}D one forgiving*u]cds facew rand die word unsaid. Ah,+Hs !el2? A bZK the river,  Qcurlsw9<8sore heart a .sEhrow 1ow 4earxfall like r4 (ps pray GoAgiveAbackG!bog\  , AabusY9[Rmore!k.blie thlsi02--a suffererP"se grief C*# e$so, as feelBwithAbathos se dreams,hto keep swall ,Qlike to choke03swaqEblur:, which overflow}xr winkedran down*l?XAose.| ba luxu'"hi:op17gsorrowXnot bear to have"ly'Lixrng deligh\ Brude0Cit; <too sacr/rcontact7Tso, pU,his cousin Ma31in,!EalivAe jo!sesB4hom+ an age-longbof oner aountry!go~in cloudBdark u"on|Munshine in at@1"wa B fars the accustom"1unt=?S` desolated"suwere ind9. A log rafAthe S invi%fQhe se!i on its outer edg Aempl+reary vast*iram, wis4Lw_ u rly be djQt oncs5 un6c1the&'routine devisWn9N*Y+Cflowt>got it out, rumple!ila 'Fily increais dismal felic) %HeFQ1pitu knew? WOrshe crym8! L! r%toRarms #ne  him? Or2she(!co1all (,1? Tuch an agony of pleasu ) ` tC and 1gai 6set it up in new!vaosTswore ithdbare. Vqhe rosei?NJAdepa4l A. Ahalf-past nine or ten o'clock hey 3alo+'street tothe Adored Unknown ;X{ `; no sound  3lisdVear; a c/qwas casa dull glowbthe cuCof aX"c-story/Q. Wascre? He climb,jCs stealthyf/ !thn qood und]#at j Aup aC#,ith emotion; Claid]$wn9#g bit, disposingpAuponp Rback,]ands clasphis breah41hiss wilted5*1thutdie--ou~ jyno shelter bomeles-C, no !lya to wie death-dampsR!ow8  2benvTinglyqmthe great3cams4SHE:!eeww4'E outvT glad/U,p4oh!A!hev Atear>poor, lifWform,=>Dsigh~1a ba youngE so rudely b:*Duntimely cut ? Aup, a maid-servant'cordant voice profan" holy calmqa delugAwater dren#rone martyr's5"s!BstraB hero sprang uAa relieving snort%awhiz aPa missil/vir, mingledHV"rm Qa curHBshiv1glal !smb 1vag rAv!e >Bshotvgloom. No!Q, as +all undressed for bZ  omission. CHAPTER IȷCsun 5!2QanquiT"ld]abeamed8D4'ful village~a benediY Breakfas, Aunt Pold family worship:cL2ega# ab built6up of solid cAScriptural quot/s, welded`%A a thin mortar of originality Bsummf  7she+a grim chapter xMosaic LawKaSinai.n Tom gird Qloinsto speakh2bto "geverses." Sidlhis lesson/"c beforAbentt his energies5 smemoriz\CfiveeAhe c$"8the Sermo!Mobecause 2uld.#noO, were shorter. Aalf an hourugeneralw!no;wn =Qraver) %olN'Bf hu-3 !iss3bus $Qng re%ions. Mary took<1booAhearPSrecitahe tri!|] Gog: "Bl!ar 1--a " "Poor"-- "Yes--poor; b025#In? :$ i/Ubthey--" "THEIRS BFor +. Lairs is[kingdom &MavenEy>_mourn&ShzS, H, A S, H--Oh, IO$"wh is!" "SHALL BOh, # fb shall-- *Y/ I 5iWHAT? Whyyou tell me,1?--do you w !! bmmean for?2youthick-heaRhing, I'm not tea[1youpyA1 do. You must32leaI75. D"be"buraged you'll manage it--f 2do,11Agive #ever so niceC, that's0#bo'"ll{1! Ws"TMary,K C+'.ueryou minMbsay it's,< AbYou be"sou%. Qtackl ;3" [did ""*2und double pressure of curiositprospective ga2 diA)2ithD he accomplished a shin SuccesQ gave  a brand-new "Barlow" knifqth twel2d aSRcentstZSnvulsGthatGVsysteL[ DDoundTrue, the scut any!buwas a "sure-enough" 5t  inconceivable grandeurSBat--lBWestern boys >A got N|a weapon1#qunterfeZ3a injur<3obmysterw] erhaps. Tomr˻to scarify82cupuR\ "it )ArrancCgin F dbureau" !ca\ qoff to  eSunday-school. FLrtin bas 8andmABsoap!he  3"oo21setM4n aRbench2; ta$ d+be soapeiy; sleeves; poured>& ,W=y~e'  " Ubegan?ace diligentlyFStowel|-g"oo&&3 re),5and2Now49lhashamesmustn'tVbad. Water wShurt c#"Tosa triflncerted. T=5sin was refillAthis3xO&ito'b, gathaf;/% ebig brGU9(hen nDboth eyes sh8Bd grC+t.[ , 1nor&testimony of sudsR>2ripT Aface mse emergf>x,fnot yet satisfactoryQclean territory* " a%Achinhis jaws,mask; bel_p4dis lin1 dark expan5unirrigated soil]Rsprea7,rin fronlAback  2himBnwhen sheY%dR4him$Ba maqa broth1adistin<Bolor)Aatur2haineatly brushe2its curls w]Ainto2intsymmetrical effect. [5!iv;w smoothL[3labdifficultQplastere AI]3qhead; f(] effemin71andBown  lith bitterness.] Thenr!go! aP1 ofF#cl%1Busedy##on Bs duvH!wo s> were simp1"ot%#clothes& "soJRat we qthe sizV brdrobe3D"put`"s" !!S; she+Qneat "/m,his vast shirt MG2ovem,soff and c V-QspeckSrtraw ha)1now#oed exceedWAimprcand un2abl":Yy as E as OOTa restraint e lgAm. H-"atU Q forgie"5!peZ61 cothem tho"ly/2tal s9Bthe 9rthem ouH2los:Stempem~z bm$o do ever  Dn't "doAMaryN&rsuasiveTPlease, Tom-- 3So &zhoes snarlingJ(son read9/hree children se3for "!latat Tom hd heart; but3andbere fo0!sSabbath`-from nin$Aten;B church service. Two  "ermon voluntarilV :2too!ger reas.TZ urch's high-backed, uncushi$BpewsU!~h4d persons r edific_bWSplain,'a sort of pifR6ard*kQon totia steeplB Tom droppe(ps2acc0a comrader]2ay,N,o)2a y*;aticket5Yesy'e'Agive:APieclickrish fish-hookX2LesExa'em." 5(0 ? W propertyGd@!tr=cMwhite alleysb  E6Tsmall+ #oro9forSsblue on(1way ,b boys Sy camwent on buyingz of various colors ten or fifteen minutes l !/ qqa swarm; #leg Rnoisy: irls, proceemoE!se &dAed a quarr84Airst5jAcameyQ teac a grave, elderly man,75QferedGny-'6>aTom pua boy's @ !inM 3;"was absorb% the boy  ;[aa pin w I boyk%8 hear him say "Ouch!"got a new reprimandJ 'csle clasWqof a pa --restless,!tr\Csome> Qthey to recite their@w%~am knewuverses /,!habe prompv8ll along. Howe)worried @2reward--in T blue,,q passagl"e '(;2pay#wo1 of  ation. TenuB equa#onc7$Tbe ex^qfor it;0Cyellow onep #enV> Wsqsuperin;"ntat1ly bound Bible (qforty cin those easy3s) SQpupil2 maH$!myKe* (the industaapplic+4 toeTthousand]H2 BDore? And yet Mary had 2two%is way--it the patie5!rk!^  oy of German parentage had wonRqor five3onc#ed i out stopp/{Gtraitmental facultiesyCtoo (haand he~+Abett {U idiodBat dth--a grievouC2he :"onpR occa$y company f(1 exbed it)  'y come out and "(b." OnlRolderts13Bkeep}Li]1tedRlong  to get a2[s6y*sse prizaa rarenoteworthy circumstancer32fuls?conspicuous for  ;AspotEyQlar'stQ4fir"a fresh amb/that often_')ed\weeks. It is{1s Tom's qstomachn 1rea 1ungo1for#.o. unquestion6-Sntire& hNPa1lonQglory,qthe ecl+!atcI rIn due K  &Rp in {e pulpit" a6d hymn-book inh)!nd cforefi"O(between its leave Frd atten0G  ! m09>y,4aryAspee  RGs asoEBas i ainevitAsheeTmusic&sq who stu'1forAplat<$ings a solo atn %!y,:Qneithen sa refer.0k. ThisN0fa slimEirty-five a sandy goate8Qhair;1ore 2iff!Cing-wE"Bsensa}!itenew hero ups C!on l Xtwo marvels to gazt#injbof oneBboysall eaten upenvy--but tb)est pangI-swho perstoo latDS themselv contribub athis hsplendor by trad01 to't wealth+bamasseelling whiteprivileges s]D2pis,Urthe dupa wily fraud, a guileful snakeRgrass !4was;ew 2Tomo"as%2eff superin"nt pump upI7!s;it lacke&wS-true gush< IQoor f' tinct taughZ-xzw not well bea]l  k4was.preposterou8 c!!hae)Q thou[!sh $al wisdom on@remises--a dozen ,#capacity,Rout a8. wBprou$glsH<T1Tom it in heL-ouldn't look. ShH 3n ss grain %"d;Ta dim suspicionbG(b--came P-! wnEd; a1`#glrld her ] +her heart brokMs jealouaangry,t'&rs3shebody. Tom G!of (Hhought). )asohis tongue,Qtied,J4 2rdl"quaked--part75cau awful greatnes rthe manGmain6H$ have likBfall00borship!ifyqLq1ark # ph an Tom'!ca9Rhim aC * sand ask!qhis nam?hwstammered, gaspe!goUout: "Tom." "Oh, no,QTom----" "Thomas'"Ah~'TI7!or\ it, maybe{'W well. But you've)one I daresay""llit to me,6Q you?1ellQ "an"Qother", ","'Walters, "5!fay sirX=n't forger mannerI Q--sir1it!B's ayvF . t, manly0 Q. TwoLverses is a  many--very,(.'2ou $can be sorryUQ*c you tOAAlearm( knowledge is worthchan an@1<3is pa; it's4#e  Dmen;V$^d3Qman yC$Alf, -5day1'llR,Y9ay, It' R <)1rec ;A1 ofDoyhood-- Gvmy dear-5tha^mU<  Jood ,L$en? H.)3 ga beautifulI*\d id elegant'"anH  for my own, always right brin"upA is |2you<{!~&take any mone^ose tZZindeeE1nown't mind t $ m+ "isB2 hylearned--no, I know --for we are4$of3boyG!. 1no vAknow2nam^r, es. Won'Lbtell u9the first3tha`!ap$Fed?"l1tuga_utton-ho sheepishblushed, nowz1his! fO'MAsankm ain himH_\ETAposshtc2sweb simplest (--why DIDH=ask him? Yet hBrt obligspeak up say: "Ad'1--d}#be!.L_hung fire."*$me\ady. "TF twoeDAVID AND GOLIAH!" Let us draI%cu3 rcharity tYsceneJV ABOUTQtcracked be2theu church ?R ring01epeople(1 ga||"mobsermon. childrenHA 5!e C C eoccupi5ith thei s, so as K{Kd. Aunt Polly zTom and472sataher--TomL%"d G8sleB2!ha9A be GrE9the{e seductive `AbsummerEs asQ crowd fil/"s: 1gedneedy postmast=!hosseen better days C may<"hiJ "ha$y3re,| 4 unmp#ieOejusticRpeacei widow Douglass, fair, smartQforty!ene,O2-he4Asoul well-to-do, her hill mansj only palactAChosp+and muchKmost lavish 't of fes,St. Petersburg [RboastAbentxQvener,3MajsMrs. Ward;  Riverson,bnew noaACance_1ther village, followRa tro8lawn-cla.ribbon-de!3 p-breakern#q clerks!owfa body;C had.G vestibule sucD!cane-heads, a circYb!wa! o !imcg admirers, ti Alast!ru ir gantlet; and/AcamedModel Boy, Willie MuffFs heedful carlQhis m5 asXere cut 2x ! b=tN,>#to, v1prisrmatrons(2ll vh !so0. qbesidesa"throw;3 Qm" so. His whit.kerchiefZhF#q pocket behind, as usual ons--accidentalN)noa!he 1ed ytas snobcongregapefully (: 'T1once, to warn laggard0straggler a solemn hush f p! <Q+vdbrokenBtitt=8and& choir is galler=GF!edthrough =conce adQY Pill-bred, but I rforgottgh!rea2. I !y [B agoV.I can scarcely rememb?_="itI kg1 in foreignj#"ry* minister & "ou3hym-1reaba relish, in a peculiar styleZeat part His voic on a medium key&Zasteadi:/i0% a"* rBbore1strY5umphasis topmost wor splunged8spring-board: Shall I be car-ri-ed to!sk !on flow'ry BEDS of ease, WhilstsyOIH sail thro' BLOODY seas? Hqregardeadful readKZt"sociables" h= #R>!to;r poetry,Cwhen32ughcqladies l3 up<3han let them fall helplesslyrir lapsc"wall"C!eynB1k\!irZ5s, u say, "Words cannot71 itfis tooV, TOO rtal earth." Aft 2hym~&Bsung2RevtSprague#' into a bulletinGuoff "notices"ge,qocietiej-1i#)o4 2st qstretch of doom--a queer custom#is vin America#cities, away x4)1 agAabunZnewspapers. Often3Eless, to justifm 1adi7l3Bhard")q get riu'ittprayed. -, r:bwent iIhtails: it pleadea 2rBttle),3rend:7=eip ' itself; ?y([State officersqUnited . ' 'C)s5A Pre.t_q Governm$poor sailors, tossed bK1rmyM ppressed millions groaningeel of European monan  A Ori5 despotism1sucDght 2tid?'rand yet-M"yehqee nor !to &alRheath)the far islB seaZaclosedW a su Twords!abmfind gra)RfavorV!seLm fertile ground, yie%Qime a?0Charv9good. AmenP!re 3a r(Q of d v8! cPy sat down whose historybook relates disQenjoyQB, he< Aendu}Qt--ifN1ven9J r  it; he kept v y a63 --Lp"gc#, qBzc of olvthe clergyman'ular rout}&VaiQtriflsRnew m3 terlardedear detected iWhole nature resen!considered adAs unqcoundre I |/B a fU'R lit  " bAew i#nMmaAtorthis spirit by calmly rubbing iti d8, embrac"eah,3armpz}& so vigorous7at eo$;part companyBbodyvthe slend9read of a neck61expto view; scra0Qits w rind leg'AsmooT !toCbodyK|been coat-;~,&le toilet as tranquib if it.)$E safe. As!ras soreEaitched@rab for iynot dare--}4iev3oulbe instantly destroyed 3did qg whileB was2 onhhVqsentenca curveTstealq.Cthe ra"Amen"r!hewas a prisonwar. His aunt bthe acmade him let it go rhis tex8droned along monoton an argumea%"sybmany aBb &byBnod 3y Wdealt in limit 2firMbrimstonSthinnpredestined& Eto a#so !2worA sav1)2Tom_&ag ;; $ % h2how:t#aseldom: Delseqhe disc MH"is!he8qreally {16forE*a grand and moving picJH"&+=world's hosts at the millennium*B !onc aamb sh"%liS[ , ,!eaAm G2hos 5les1mor/C theEspectacle werQahe boy v# D" principal character beforEaon-look<>!s;#1fac" oirhimselfYhe wishe",Q tame lionf!w 8Qpsed (ing again,fhe dryQumed. eHpA him treasur # a large black beetlformidable jaws--a "pinchbug,"8#Rit. I/=ercussion-cap boxhm1did/bto tak)b' Afingal fillipgIbfloundKZ2isl1its !ur ger went1's Co!lart5its" legs, unAto turn over!ey !lo1forF^!ofCt. Other'uncR]1q relief# wyof too. Wa vagrant poodle dogNA idllong, sad#Bf, lazyI1oft e quiet, weary of captiv(1sig"for changeMs;HAdrooz Ataile8bwagged:1urvrize; walked a it; smelt a87afeu4 4; grew bPJUA6rY1l; Trhis lipqade a gzly snatch,YA misa;3it;/nn %; g diversion; subsid  Stomac)W betweenm3pawh scontinu experiments; !ath Aindi- absent-mindi(1nod ittle byrhis chin descen/ou he enemyAseiz[2re sharp yelp&li' fell a couple of yards away, S}Amore neighboring spectators shook)a! inward joy, s2afaces rA fanI s)_aentire #ppXdog looked fo8 4probably felt so r1entc iheart, tooBaG>qor reve1So .n:9gan a wary attMnWQ jumpfRevery2B, lightingP!hiKJae-pawsin an inchB2YouUX O=3Oh,Q, I'm,/"W4=--wQa, chil9 X!my! toe's moF1!" J#ol[UBsankqa chairB#%ed! cEB"a did both0,Arestwh/d<P," ayou did Ce. N ;1shus aonsensCd climb"thg{$ThS ceasrain van Afrom!to   ' it SEEMEDi"itTBso I B my aat allqQYour ,#K+ Sthem' aperfectly" "Ther|Tdon't Ahat @'Open your q Well--4 IS1butcre notwVto diG!at. Mary, gec>aa silk a['1Rnk ofq"ek$2n." !pl/j7 !hue. I wish I mayO%qdoes. P_@.1wan-]stay Don't you? So all this row was E1youM>ght you'd7i ibgo a-f*?yI love you"1+!ou !ryQy waycQbreakX?l !t soutrage!=." dental instru?S read #%on8the 8^I"'s:Ra loo& #tiod edpost. TBseiz* n^QthrusI($inR2oy' U hung dangb- } Rrials@*1qcompenst+s'#enrschool >fast, he6qthe envc( 1 bo"5metSfap in 1row&eeth enab 3 toMRorate!1new<>4 s9ing of lad9G%in the exhib@0;2oneShad c ' 2hadr a centre of fasc and homage2o[Qnow f:OJout an adheren Tshorn!Rglory'QheartyBheav 3a disdaibZit wasn'tDo spit like;our grapes!"%e wanderh dismantero. Shortlyb3camMthe juvenile pariah5he n;Huckleberry Finn, sthe town drunkard.,-Qcordi2hat2 dr1#by "e s{t 2idllawless and vulgarRbad--zxk?eq delighV-forbidden societyAthey dared?Rlike B!om @!reNCRboys,faxenvied >his gaudy outcast cond;as under strictIQrs no8Mm1Splaye3him1timf2got% Ince.c!slways de cast-off _سll-grown meAthey  in perennial bloomRflutt sCrags{!ata vast ruina wide crescent lop a of itp!m;ecoat, +72ne,Bnear^2his[ !haQ rear!buttons farY ; 2ack1oneMeaupportos trousers;Ceat ! b$A low~contained n A friM&rlegs dr4Bdirtanot ro[Iup. 1and?A, at"own free3Yrteps inKDweat in empty hogs> in wet;3Qto go2 orurch, ornmaster or obeyXcould go  or swimW1herCchos1sta/long as it suim; nobody~V$fiyhras late! p8 d3t)2boybarefoot Qe spr'gnv~Cme lsAfalli1to wash, nor put onf0wear wonderfully. In !rdJ8tQEgoesxlife precious{!adgrthought\ harassed, hampered, ; inkBR!ha!AJtomantic : "Hello$!" K ee how youh9it.a A gott rDead ca%RLemmeC"imp. My, he'tty stiff\Are'diqget himQB2himR a bo#di4zI a blue ti@1and"adBat ItVter-hous1 T#itBen RogersI!goa hoop-stickE6SayU!cats good for2hGA? Cu1rtsHSNo! IQ3so?JV some6A's b3BI beedon't.ibaspunk-?5S! I wouldn'tqAdern 85You-,  $D'OD tryqNo, I h DQBob TOA didrWho tol!so"he Wa5Johnny Bak im Hollis8 'ld2Benmca niggLC them bre now2ellt? They'll lie. Least<1all WA. I 2HIM(I%eekWOULDN'T\Shucks! NL!te`lbone itvQnd di=2a r/BSstumpLthe rainQA wasPI qdaytimeClith his fac Atump-3Yes* I reckon so[ADid j y5 3"I :.lAknow@Aha! Talk1tryN:o c such a blame fool,c@Aat! @S a-goVado any2. YV rbrself, e middle Qwoods\5Y's a Btump1jus'7rmidnighrback up!s qand jam/Q: 'Barley-corn, b injun-mearts, ^ {q, swalle_&drts,' 1n w way quick, eleven steps,(eyes shuthen turn.<BtimeYAhomeDrout spe+ttbody. B#f$Wcharm's bustesounds likxrood way !!wthe wayB donNo, sir,x1cann't, becuzoGartiest cis towT!BE1war 2him!!'dU!ed*xto workYS. I'v1offs'9"of off of my9sAway,m 7. I Tfrogsv$*`U 5got;"Qmany gb. SomeI!'eFNSnYes, bean'~de%1Havk?,"'sSway?" "Youd6 2pli!be#nN1getb blood"thN# p3" o rEpiec!be,d{q dig a *1t '`?aYrcrossrorqdark of6mooQ burn/ $styBbean#se Uq=.ll keep drawN$nd ,mA feteXFZ v+1"soQhelpsh!toOA the.Rf!sof}Qcomes %--;"gh,"bui$you say 'DownV;awart; 1no @'Bto bgme!' i & Tway Joe Harper doe!he1'enCoonville and mosQ bwheres#say--how do:"urA b!ak1r c+Enm?graveyard '%Ubout wwXromebodywas wicked hen buried3Fit'sFqa deviloP, or maybe%,3 't see 'emcan only+ 7indYAhear9Qtalk;|they're tahat feBawaym#he<<1fteMGqsay, 'D  corpse,i,A1cat,Qye!' ;2ll 91ANY7b." "Stnright.}  "No@Rold MrHopkins mz !soqAn. BQsay sra witch#ay AKNOWQis. S$*$pap. Pap says so his own self. H! axAone *a#!eeUawas a-Sring himC !e T'!ro-Bnd i!ha AdodgQe'd a>e)that very > $heFoff'n a shed wher' s a layiQbrokes1arm"W#!diOknowLord, papGeasyK1loo- *q stiddyDyou. Spec"ifcmumble d$b're saS he Lord's Prayer backards2Sayy y:"trB1cat1To-. .old Hoss Williams t8a" "Buy him Saturday. D` ?qtalk! H5uldbAarmsF d till -?--and THEN2Sun|Sevils Tslosh 1muca,2, I' L!nLaBso. #goT!f'"--$Rafear A B! 'T qlikely.djAmeow1Yes#, Z'geR Last timeOkep' me a-me8!arA1ays( r&rocks at mJb 'DernQcat!'qso I ho Abric{!hiDsdow--bu+BbwTIn't meowe bauntiea#me|Q4'll8!is%. 3!'sOL"NoQbut aS%Ou1-3at'AtakeG .Uqell himHAAll 4. It's aIqy smallr, anywa#anybody3runw6ae1 bem. I'm satisfiiwF!enAtick"Sh!tiu plenty  1 ofrif I walCo2whyn1#wed!cawT&Cs a Q2onef YAyear,b--I'llbyou my  ALessi1Tom1 bi$pauAcare3 un$Git. ~a viewe#Awist-. The temptation+strong. At%he"Is it genuwyn4Tom>'>!shthe vacancy.a!,"YB, "iAtradTom enclosQ8 A@lately been: 4#'sG"th separated, each fee !wealthier thqfore. y'4Tomy'Dittle isolated frame ,trode in briskly=Pof one who AwithQhonesbed. Heahis haQa peg52fluT BselfJ4}31eatI r-clacrit", throned on hig1reat splint-bottom arm-',R1doz)!luW" drowsy hum of study. The51rupcd "Thomas Sawyer!(Ghis name{f7 in full&!me$rouble. "SiO"Come upcRS. Nowbwhy ar2gaiN3cusual?= "to Srefugz"3lie' Pw ; ails of yellow hair hangingoae recogn$PHric sympathy of4%;&bat forTHE ONLY VACANT PLACE girls' sZ QinstaE STOPPED TO TALK WITH HUCKLEBERRY FINNY's pulse\:Qhe st helplessbuzz of 5r ceasedcpupilse) foolhardyaqhad los% u/:9*(d did w"Stqto talk@ Finn." (eno mis}e words,!isE!motounding confessionYever listen!. No mere ferul answer f4is offen%1akeyour jackej  's arm performed until it!ti#>Qstock1wit) _y diminish`A ordllowed: "l!goVs!th! And let)bSt0xr titter-VripplE{qom appe^rto abasiboy, but in .G14was caused rather0!byworshipful aw%his unknown id(&IAead _#urRlay icgood fortuntss Rwn upk(1pinc<c0)'Qirl h,away from himaa toss$&nd. NudgesBwink$qwhisperO4verBroomrTom satW!hiIs "Aong,"CdeskO1eem[book. Byby atten$DNjX#ed murmur rose]AdullxEPresentlboy beganqeal furdaglance robserved it, "4G,2" a8and gave hi-HbackRe spa\ta minut2she caut4duQ, a p5layi"erthrust it away1g!pu>Kback,^2butC&Bimos;$om9Sly reZiqits plaz!heit remaindscrawlts slate, ", Bit--2 more." TdJ uno sign. Now draw some *!hi 1eft;q. For a31ref:2to ~[Sher human curi@Axq manifeby hardly perceptibles !boPkAr, apparunconsciou+Qa sor^ noncommittalnmpt to s6 did not betra/h Aawar&itM 2she!inQhesitB$lyb!Le  Apart 6=*l caricatusra housetwo gable ends}a corkscreC,smoke issuingS!thn[AmneyX" "'s !es0Bfast6elfeAworkqshe forgot $D els`f6, she gazedAAment)n ,It's nice--make a ma artist erectH$an%front yard,qresembl(qderricka 4~1ste\ !ovgek&not hypercritical;Kwas " Const! a beautiful man--now me cominggom drew an hour-glassa full moontraw limb1 arhe sprea1finE$a portentous fanwL #t'#soI wish IPddraw."feasy,"q Tom, "1TlearnB"Oh,i#AWhen At noon. D 2 goh1to dinner&PDstayAwillrGood--tAa whas your] EBecky Thatcp5yours? Oh,$& l1theU they lick me by. I'mIAwhen \2YouW)1me Yes." Now<N  tl1rdsW /1"gg1see !Oh~ain't any\ Yes it i5"No'#wX5I do, indeed I do. 4letVYou'll teNo I won't--9Fand Rouble%"ou3G6A? Evs ! aA liv!6&M! e3ell ANYbodysOh, YOU!Lyou trea#o, I WILL see."+ 1sheher small =  Dnd aQscuffLAsuedq pretento resist in earnrut letts_ slip by degrees till thesdA4vealed: "I LOVE YOUj"OhMb-Fing!1hit hsmart rapreddened >b 2ed,~&theless. J[$K junctureboy felt a slow, fateful gripM3CB earp a steady 1 im+zSwise Aborne acros Gposi0own seat, undwNBpeppX/a7f giggles i!tna~-Cstooqhim dur;q few aw_bomentsfinally moved IsU4out5ba word3"al Tom's ear tingled$EBhearWjubilant. A rquieted 3Tom nQefforX Bstud the turmoilRin hitoo greatqurn he h#hi  Bclas1}1 boef it; theOgeography4 Alake3 o mountains, Srivery r contintill chaos wask  Aspelc got "down," by a succ`"ofG1babA dN3he C2 up=ae footyielded upkpewter medalj worn with osten|for months. CHAPTER VII THE er Tom triedl shis min,# " mXs ideas wandered.9,b a sig:a yawn, he gave 0V. It $anoon r4Fb wouldm} air was 3Aly dc#t a breath stirring. IRleepi$ sleepy day drowsing<Re fivUtwenty studying scholars soothe/soul lik= #is_bees. AwayE1fla sunshine, Cardiff Hills soft green sides th[ a shimmBveilaat, ti| the purple`iWa few birds float Q lazya!ir; no other liv*bwas vi$x1but7 4 co^W Cwerer's hear=!be3A, or 3 toA  fE to do to paq drearyH4. HcQ into%poO0his face l"gl%:gratitude3wasa#, ) not know i!enXJ3ivexrcame oua him a"Va pin"!6newx 3's bosom friend sat nexb, suff!ju9;4nowMadeeply{"grm& 2ent.1menj3an  7was'rtwo boy r sworn s|1eek embattled enemies on"!s.^took a pinBJAapel #as q exerci1er.AsporZwwU<rly. SooG 6}Beach neither g g1ull denefit*!ti<!o Qt JoeAQ4ate 1rew "neFthe D/!it C top)Btom. ","Whe, " Ahe iqByoury9nbq him up)qI'll leB!e; "2get d)et on my[,@re to leXalone I can keepQfrom  S v!, go ahead; star!upb escaped!pae equator{6DawhiPtU:5G݁ghis changbase occurred often. Wg"onZ !wa5r^&t7r absorbNHYblook o? #as 3, t9b 1ogeo|QsoulsC to B1ngsVluck  S b JE !hicd&atxDcour9rQs exc Xs anxiouh|!thH mselves,<0Egain:Auld evictorfvery graspn)"to#1 cbe twi%to begin,3pin'Bdeft+Rd him;1andTk W)gl:n(uno longzQemptaswas toocqreachedFand lent a11pin 2ang a. Said he: "KbI onlyd1wan TU2#NoJ a fair;e' ~3QBlame>I'!go l#mu+L?b, I teK|"!" shall--+#liALook !a, whos\ 1ickICcare$m /ha'n't touch %%,Qbet I . He's my/do what I 51him die!" A tremendous sdown oneshouldits duplic r!s3twoW dustbRto flbjackety[ to enjoy had been tooS]sBhushhad stolencschool wCetiptoe"\nVd (Hcontempl (p4~performance |!heQributs'Zt2%broke up a flew to P1 in ear: "PutHabonnetlcyou'reBhome11you)5\rcorner,'.2 'eAslip|rthe lanAcome.!goQoAYcame way." S6"ne+5one group of -gCith EF. InL:*"et e #la.:qthey ha {Uy sat," a5JBthemQ)3ave the pencil 0.Jriin his, gui 4 3ed a surpr Ot&Gn ar2w#fealking. ToAswim]in blissS}%!DoLlove rats?" r! I hatM do, too--LIVE onesI mean dead,qwing rouSr heaAa stq[1for much, anywMA likIchewing-gum<l25o! 8qome now/?8"go1letAchewV3 2youUqgive itQ3 to8AThat`agreeable& hey cheweBturn'Y?K!irSk,!!stRbench "cet#ntment. "W>)an/circus? T #YeQmy pa7!"mew*Atime/ET" "I)f three or fouryQs--lo:. Churchr shucksbD-C (on/; qbe a cl5%nWScI grow )"! ill be nice1y'rBAlove ll spottAL1so.=v1getAhers of money--' dollar a4 cBsBSay,_+bengageSWjt`(2!b ٪"ieN.+ 2youC!to.E so.CknowqQis it2/Like? WhyG You S Qa boyRawon't \ FZ\ Zcyou kiPw all. Anybody%#do.b"Kiss?d=1for2X Ynow, is to--well[yIoAEverqH2yes+'Y8 ". z remember m F wrobbYe--yeW]YC%I  TShall 8YOUHB--bu5No, t now--to-morr8Oh, no, NOW7!--Vrwhisper aso easLQ #o took silenc Acons"and passedBarm Arher waiS]QT talezC7/outh closuher earn he add\$2Now!--d t-P3ShePj" a^2You vBfaceBs^23 seI;I~you mustn'<[--WILL you]?&,!N  .a." He n\DidlyZ(her breath stirr?Bcurl , "I--loveP-.(r sprang#tand ranfs+YCes, with1aft*uy/x Cher 1JQaprone1ped"nehV pleaSWn]ll done--all a. Don' be afraid Eat--+?+ll. Qhe tu{"aD YhandsA+2she us  qs drop;Qface,rglowingy"truggle,,O submitt-!omqred lip 3rNow it'ACdoneEPBt 2yout0mk+@!toXy,2 meand forever. Wi 3'll)u!LLkmarry +2--aX - 3ith)CEly. :. u's PART{)I('U*we^w02me, Rthere<Rchoos Dnd It parties, bE  1wayeO4're DIt'sW'3. IRheard -|%'g>mSAmy Lawrence--b2bigF1tol{ ~DlundUe stopped,1Sused. BTom!,/irst you'v3 to"W chil2cry94Oh,trk I"arshy   1you1Tom3 kndd i  BneckJ j%sg0%im!Qrhe wall1wen\bcrying05  ing word GQas req$: (!pr4as he strodWQbutsideY,2lesquneasy,: Sglanc2oorMQy nowthen, hoping she.RrepenSato fin:4shee-e1 to81 barnd feari.;'roS!ea hard2himke new advancesM ,Nqhe nervRmself{Q and _]"zstill stan797, sobbing.!'sDt smote himD ?2 ,ing exacoQproce-ge said aly: "* ], I--\ A." f4ply 4bs.D1"--/tingly. Y !mea?" MoDTom got ou( chiefest jewel, a brass knobToan andiron2{ $itd h,2thaq,{/3w * y Sc3uckY the flooruTom marH.:C hilR 1far[!rez1 noday. Presently 3buspect rRT1was7in sight. < 2play-yard7SthereU1she,v Cc, Tom!/alisten}trL7had no companions l oneliness. So s t`Ro cryfp1upb herself;qby thisZ L1gata3gai[ashe hatAhide+Qgrief?6cbroken aK of a long, $Q, achhfternoon6! nk#mo Astra/VSto exbsorrow/ q'I TOM dodged hp t through lanes96H@&ou!r51ing3larinto a moody jog. He va,"branch"9"reDH  6prevailing juvenile superstiti!0 c water baffled pursuit. HalfC1! l$disappea<+Bbehi Douglas mansion jbe summ"'Z ,1wasly distinguishablCoff Ccvalleyۖa a deny-od, picks pathless wa>r2ent;4.!onssy spot,spreading oakrnot even a zephyr(*_anoonda(at had 260 Tsongscbirds;:1 lasa trancCwas Vby no sound the occasional far-off hammeof a woodpeckiBm 1 re .1rva|wense of|8*sprofoun=Rboy'su)w!1eep melancholy;o A3s w<happy accorqhis sur1ingA sat< )oAlbowhis kneeO2n i.S, med69 * rhat lifbut a tr=1, at best +3orlRQbeen 2!eda2g--Q very dog#" by some day--maybe wh@8too late. Ah %die TEMPORARILY! Buselastic]o?ath can4e8Aresssqto one {rained shap*46Tom_&drift insensiblyJXZconcern"is7|.T cack, nowmed mysteriously? aaway--A'so3 ?countries beyoBseasQcame S! How 2she{ then! The idea of beQ recu,mto fill himdisgust. For frivolyR jokewStight"anAsy intrude`/1 upbspiritwas exalt3vague august AEthe romantic. Nota soldi<,"yell war-woraillust. No--bette4ld#joIndians,unt buffalo$$gowawarpatr4x2S rang-the trackgreat plaite Far W 0QfuturM+A q, brist2with feathers, hidej$ith pain,bprance. ,(QrowsyN $er|a bloodcurdssar-whoose eyeballaG unappeasu envy. But noOb gaudin than thi/dpirateas it! NOWK2lay~ #"im"glaimaginsplendor. HowMHQould c people shudder1glo(AS go p{Sthe d2seaf"hiu,1, l'qlack-hu 2racZ02e SsFc StormHIisly flag flyA fore! And at the zenith ofQfame,suddenlyDIold village8Cstalcb, broww-beaten, black velvet d ArunkCjack-bootcrimson sash,AbeltJ"horse-pistol9e-rusted cutlass atCAsideM2 sl4("atTwaving plumeIcunfurledthe skull Abone*  Bhear[2sweobecstas>$G #s,3TomJ, P--the Black Avengerpanish Main!"  j,d Acare's determined)2runfrom hom Renter' /\.2theDnext[ Afore rust now+1 to&Wreadybcollecresources %)Aent rotten log nv%'an2digu 5 onFihis Barlow knif1oonrck wood ed hollow"puusand uttwis incan~,i8 dively:bhasn'tDhereovW!st 2re!^rbcraped`"ir Q expo pine sh9:i8and dis(chapely,2 trcH-[5hos'and sides wer/ds'iHra marbl 's astonishmenboundless! He scratc Ss hea a perplexed air7RWell,1bea*y> +Btoss5pettishlyStood cogitatUsuth wasfa Mqhad fai91and0-Brade0AlookR$on as infallibl byou bu OLcertain necessarylsBleft  fortnigh'BCopenCplac"8theP" h ajust uh3yout%a1s2had1los.  t0 H,9 |&Qno ma how widely+}Qk"w,~ bctuallunquestionably *-DtrucF2faiQ shak"-Q its Bs. H"Cmany C Rasuccee3but{aof itsBing :Q occu2himtit several timesC, himself,n;1e h*-scs2warvpuzzledy!an\decided $Qwitchainterf Bharmhought he tsatisfy at point; soe!ar<1he Csand aqfunnel-Qd depo!itJ9=$ F2 toyG and called-- "Doodle-bug, d $'#mev0Wgknow! 5 5*! sn1egaBwork"3bug e a secon2darted um)fright. "He dtell! So it WAS aAdonef !I ;%!knv5'"HeDknew2 iQof tr to contens#chahe gav^"Ś$ag%iT`he might asAhave>  w1 ,Oatheref@Btwicl.last repe2wasRssful$0Qs layU1foo Qeach a. Jus^%ebYntoy tin trumpet 3faintly dow%green aisle~QorestWoff his jacke|trousers,$ a suspe9belt, rakN Tbrush 4thelSlog, 8 n rude bow1arr| lath sword4in A7$Bseizse thingSbound, barelegg 1 fls "AhirtL7halfelm, blew an answ@9atiptoelook warily outk1way2thasaid cautp--to an }!ryH!an Hold, my merry men! K;BI bl06Nowf>q, as aiAcladbelaborarmed as Tom. Tom]Hold! Who s7ASher BFore_qhout my+q?" "GuGuisborneVAan's).^1art-L--" "Dar  hold such language=Tom, prompting--fo8y talked "se book," qmemory.l ~/ dsI*! I am Robin Hoodkthy caitiff carcas:Ahall%." "ThenRindee% famous outlaw? Rvgladly will I dispute#2the=Fpass3wood. Have aeyGWtheirqs, dump4eir.Brapsf e ground, struck a fencttitude,!to61kBv) reful combat, "two up andfdown."p!E Tom aNow, i a've goQ hang=Ait lM!61y "a," panhK !er k. By and bhouted: "Fall!K8! W`+ sha'n't"Nrself? Y(AAwors!it/4Whyh M@!'tv;A#ay it is inVbook says, ' Qone boa[stroke he slew poor $.'!toNr ,ame hit oQ." T#>PFuthoriti 1Joebed, received!whE@nd fell.&"4U Joe,^up, "you8o(N2 ki1*Ffair{f!docE_/ell, it's blameC's aQBsay, you can be Friar Tuck or MucAmillD[ss%R lam M h a quarter-staff; or I'll bSheriff of NottinghamJe w9h?Bill 0AThis a@#soadventures were cr4FATheni!beB6 L!wa- !by treacherous nun to ble s strength away 1ughneglected w- 4And/}! r 1entAtribAweepOC4s, R|Qhim sbforth,V m"ow(his feeble hands", e" Q fallTere buryuu 1eenqtree." She shT$ b&would have diedQhe li>+Aa ne0and sprang upMAaily a corpse.->dA, hi!ira!Gutre Ooff grieao <$noz4u3mor Bwond what modern civiliz= claim to h Qensatiloss. They;F-rather be year in than Presiden the United States 0 CHAPTER IX AT half-past nine!ToB Sid\1senm"be[usualir prayer=(onqK Aawak waited, in rest"imc<{it seem0q be nearly dayldhAlock;Bke taqdespair&and fidge#asrves demQ, buttbas afr+aSid. S12lay,%!st"upJark. EverLDsdismall<2C by,'YSness,a, scarceo[fnoisesemphasizeSC ticking aHh Ato b!itS-A1. O+"&ame! cT(!cstairs creakently. Ev1ly 6 !ts abroad. A m#Rd, mu(snore issued Aunt Polly's chamberA now4tiresome chirqf a cri!thA human ingenuity locate,JQ. NexV ghastly?SdeathwatcDwall bed's head made E--it#abody'sMPnumberedUBhowl{far-off dog roseg 3wasAa fa<K a$r O./an agony. At ih| 1ied+had ceas@d eternity begun;00 to doze$Aspit2e)chimed elevenl0A;#%8me, mingl Ahis !formed dreams, a most ' caterwaulwA raix&of a neighbo)awindow81urbSqm. A cra"Scat! devil!" aQ cras<an empty bo;z}ais aunt'sCSshed T#"dea single minute laterlGand jr$al,Sroof 3"ell" on all fours. He "meow'd" withn once orpn jumped  g3]*QL. Huckleberry Finn washis dead cat #ysAW1off\A,#edO#a gloom%thh," (all grass4graveyard. It &old-fashioned#ern kind13on a hill,5Da miK'Eaillage<1hadazy board fencet $itcAlean 1warY1outek$th!buZod upright nos1. G n!ed!ew rank M ? cemetery. A2old*spsunken in,Mnot a tombston!; {-worm-eaten qs stagg#Rover $ aves, leanaor suppor 1finnone. "Sacred) of" So-and-Soabeen pdm#="ittLR have7Sread,5am, now*1n i3 r7lFA wind mo $reSTom ft {\, complai(#atw(x\<R6nly ir breath6[ -Solemn(Q silew&ppX $irvyo! t arp new hea1yk1eek6ansconcQemsel2ithq protec0ree great elms$grew in a bunch?-WDfeet " "y U  42for H "a 1imeS hoot abant ow.]"btroubl !ne om's refld1ive%.aforce Dtalk) Qsaid $: "Hucky, do&ɘ6 ead peopleGZ3 usDqhere?" Zed: "I wisht I@eEQ's aw3Zs, AIN'T36Q"I beAis."ea considerable pau*"il\Scanva "#iss inward! n_ %ASay,3y-- reckon Hoss WilliamssI1#O'Q he does. Least8rsperrit"7, +a+2 I' #u MisterxI`  Aany l DQs him#A "n'Foo partic'lar1(tXalk 'boutase-yer  Ra damnd convers3die!. Qw Ahis comrade's armE1sai:Sh!" "What is it~$?"i nc%Atogeq!be#2ts.K C'tis again! z1you+{0Q! Now"OALordTHcoming! TQ, surmat'll we do/I dono. Thiny'll see us!'OhbA can!in^ Qdark,M as cats. ihadn't comecOh, doay!. Aliev<1bus. We(a doingl If we keep perfectlyR, may1y waB us N$I'll try toRbut, Y1I'mbBof a shiverListen!"be1!ir s e tof voices float% 4far`(A "Look! Se;Fre!"M  w-fire. Cis it." Somv/1figaapproaK'!Rloom,M tin lanternaTfrecka  innumerable spanglek  K#a d!t' sya. ThrexA'em!yQwe'reqrs! CanBprayNB:BThey! gto hurt us. 'Now I5#meo sleep, I--'"8 AHuckHUMANS! On! iWyway.'s old Muff Potter's }aNo--'tqu so, is AjDYyou stir nor budgBCharpfE to q. DrunkBausual,Cly--qold ripAAll O !, 4stiI5tstuck. Can'"1Herq#Dy coN.[8hot. Col2B Hot. Red hot!'re p'inted?r ,q"!o'qs; it's Injun Jo(2ThaFD--that mur!' breed! I'd druthe Zdevils a der'>!. ky be up t4The.| Dnow,! t 1men $re!e 1     ' hiding- Q. "H?9Dt is Qhird ;\*:wner of it hel TTreveaV1fac young Docts_`1carryingYcbarrowTA rop a coupldshovels onCcast#lo=!c2opeUF7" d1putd|_R56karH2ack1st fX2elm  Q closIhave tou1himurry, men!" !idTa low"#on91com at any moaRJy growled a responsgan digg'Fo(*2 no# b<"gr s)Qspadetbchargiir freighw Amouldl7 was very monotonous. FinaX Q upongScoffia dull wood*<2entO4'Ror twyRhoist'dg>Sy pritd!$irB, goB!dyF!Qit ru - `Tdriftg?Rcloud(0allid faN4he P!as3reaaorpse "it, coverea blanke>buCope.l(out a large spring-knifkcn;#da3z Tthen " Nm$cu Bng's, Sawboned you'll*"ou$ Afive\$ s?y alk!" sai.] BdoesSmean?3te. "You require3r p?Sdvanc(I've pai#'4B don(B tha ,; r Q, who Dnow @*q. "FiveBs agqdrove my q your fX's kitchen, when Ito ask f@(c to eaK3youWa warn'!!re2any goodWswore I'd get,AzQyou iuaa hundcgears, RAme j1 for a vagrant. Dta thinkiqforget?I^Sbloodq Ain m1 no.2nowvGOT yougot to SETTLE"r!" He EQreate<,e !isy Bace,n!2is  Tq8E1retacuffian dropped his !exDCHered #hi^(&rd~b next ! h-t grapplF "wo)Rstrug'and main, trampl% gFtear@3'rheels. !JoaAfeeta81 ey2%am!pa1nQ, snaQ3 up'/V"cr"Q, catYEAtoopCand  w'Tants,Q an oCunitwat onceQ,d free,62Aeavy5 of'n fҲt(Rearth"it8? c YiL A sawXCchanSj2theb1hilthe young man's breas+Qreele4BGqpartly , floodi  l* `ablotteXAreadcpectacf1 Bened Aspee!awHdark%> remergedO , '8two formsPRtempl }aamurmurulately, gw*gasp or two%2wasKm- rTHAT sc; :Q--damF0Rrobbe8body. After h9the fatal2in r's open R hand M dismantled } --four--fivss passeJ7.mB za1. H1nd dw#; C Q, gla!atand let it falla>g)sat up, push2bodA himLJ gaz]aK&confusedlymet Joe's1rd,ie, Joe?u .a:ay busi%#2Joeout moving.d]d+[%I!!it{] 3! TRT 3alkdewash."YAtremDI ew white.1ghtagot so"!I'BM!r!o-@it's in m* yet--worse'nw= rted here.vmuddle; c!$re=#an$gQ, harqTell me}--HONEST`Aold ar--didB it?zJ(qto--'poAsoulhonor, I nevt1ant5Joezc#Oh$+Qhim s, ad prom! -1youC?ay1inga he fe6G ) Bflat !up:3comX1reeX[ding li!.Ajammz%.5 'asE you7S clip ere you've lai'!as a wedge til nowbd{Uwawas a- I may die1if B1all on accou(bwhiskevV!axcitem"I .uC$ weepon Clife: fUO_;uAy'llsay that.( V8ray you Atelle--that's a  4. I_2lik</U !upE { etoo. D remember? You WON'Tc]a, WILL  A/ApoorS'Eture o SkneesUrstolid G#alaspedQappeaa,.)4'veA #fanbsquarej 8me,N# I<#go$n :MsXs a man can sayIy0an angel.bQ*1you^!he0est day I live.> ?Ccry.d 40$#isc 1anyYsQblubb. You be off yonder wa!go+T. Mov 3and5!leny tracksX"onM(quickly increaseQa run  &)He8 If he's as much stunne Q lickfL2rum2 halook of bel#he1eBtillzgone so far he'll be +}-e\!it:Ruch a>% b= --chicken-hear1TwoO tqs laterD0Rd manv ArpseA lid 2the ?+urno insp8!b moon' ness was completet 9too-X THE two Aflewqnd on, towarkaspeechwith horror*y Aback;%?aulders|!to, apprehens95'$yA$m &be followed. EVastump #up'Air p9&.'and an enemyw[+athem c+:bbreath"as"by"Aoutlacottag41yy.=21ark1*aroused +H-dogRagive wq:qir feet Af weqonly ge=ld tannery!wegk down!" whisp&1Tom|<Qtween5dths. "4AstanRmuch ]&ucC)'s hard pantAwere-1repboys fixed sSeyes z 1goaDBhope"4benir work to win it. ained steadily]1st,sIy burst open doo cgratef BexhaIiBshel, shadows beyond. Beir pulses s4Tomac2 2'lli!BIf D dies, I61 hav>!it?D m !?" y, I KNOW 1Tom#om&2t a$JEn he #1Whosell? WePBat aj  ing about? S'pos%!th1appEand q DIDN'T!? he'd kill usLvoO:  sure as *g <@  ~o myself, HuW8q"If anyAtell)t 3, i)Cfool. He's generTdrunky%U !--2 E s C "itrN!ca#teJ:#sQreaso 8QBecau>&"'d1geSwhack"F. D'3 he*5seeT?$ \7!" "By hoke:$'s-!" "And besides, look-a-here--maybeqfor HIM<No, 'taint likely ^GQliquo5ghim; I#th  |h Rhas. 9pap's full Atake/belt him&3hea< a church)2youn't phase 1say his own selfZ)i3sam !C, of(Fqf a manjJGoberZ W&)dono." .*$ve*p)2you"an!1mumw%to.*  #atadevil 5Rn't myQy morWdrownding us&a Acats!weto squea(iF+"ha!. X>u, less swear to one/Z"weveo do--0qkeep mu"greed. I Xkb. WoulGAholds_Un we--" "Oh no @! dA thi . for little rubbishy commokngs--speciwith gals, cuz THEY!c anywa ablab i: huff--but!or%^e writing Ra big BClood2's m0 applauduis ideao1BdeepAdark  t;1our3 circumstances1surRings, ijbe pick'ya cleaniOlvAmoon', took ar fragmes"red keel"7 f 1pocDkK1 onV#wo0fully scra!'these lines, emphasizing each slow down-stroke by clam~7his tongue AeethRQ lettpApres QCe upW&s. [See next page.] "Huck Finn and Tom SawyersCs!ndI+Awish may Dropd!ea6 QTheirT"if33eve1ellX!Ro  p5filKadmiration of~acility inA, an sublimityQlangu3HC'4pinqs lapelH6was(Qprick,QfleshWN Hold on!!dob. A pi1assA8have verdigre#n Qp'iso$/ swaller somic --you,a." SoSunwou8bthread"%his needl!Aboy  1e b.QthumbcsqueezBa drfA. In,{Dmany2!s,amanage2sig!Qiniti9u~8Hthe ~ finger fo/e3ashowed  1ph"! HQan F, 1ath%2bur9!e 1le q5 to:,dismal ceremoniaincantfqfettersJ$ b#ir8consider(Qbe loF"keArwn away4!ig[AreptURlthil(!ugX$Dreak[Wother#A ruiEAuild2nowLQQ*iVTom,"6, "#uYAEVERf ing --ALWAYS?" "O r it doe]cdon't y difference WHATv xY got J BWe'd"--Q6YOUe Ywts rcontinuHtime a dog set up a long, lugubrious<outside--within tenc*md boys q",qan agon+!.ich of us^4 he;%!ga4 dono--peep througw crack. Quick 1YOU#-- 1 DO#Hu2aPlease1 72h, lordy0thankful0I2his)4 Bull Harb`" * [* If Mr. y+d a slave named Bullk spoken of him as "Dl!,"aa son 2dog!atZn"]   1--I" ( most scadI'd a betmM a STRAY dog he dog howledv~W'3Ats s:"nc&.2my!%!no'I IA "DOM! Q, quabAwith? !Z%eytrDHis z"waly audible"Ohr, IT S A1DOG1, qK Who7Amust3 us both--Uright"5.+vgoners.EU1misM   V< I'LL go to. I been so wM m2Dad_1Thites of p1$oo!do BveryD a's told Ndpaxgood, like SidNr tried !noaever I 2off time, I lay I'lWALLER if"s!7Tom0"nx4( . "YOU bad!"7Q"Cons!it ^ ld pie, 'longside o' BI amTLORDY 9 only had half your chanceom chokeds6andh: "LookyA! He?9BACK to us(ucky looked!joh "hil9he has, by jingoes! DFRbefor.bhe didpIS#l,e"!this bully, y. NOW whowing stopped. Tom !up ears. "Sh! k BthatI#0!ed"Qounds--like hogs grunting. No--it'!!snC mqThat ISkWAbout"it8I bleeve3Uat 't| #. Bso, a. Pap rRto sl{Aere, Stimesv t$"gs laws bless<1he Rlifts1s'HE snores. Buhever comOto5own{hXEdventure rfZsouls`/Qdas't`o if I leadR 1to,2, s~ts quailep_7the temp up strong:7 3oys#ryJAnder{2ing'7 @#to@Sheels Se !y 4btiptoe  , 4oneJ CthervJ~4hadlqwithin 'qsteps o|!er'pBstic  it brokera sharp snap.man moan]erithedp his face came inK . It was"ha+rd still\|C too)Aved, )Dfear|(? A nowlypid out, n weather-boar& $-%at2 di# sQa paraword. J qrose on5'B air!w1tur n+!th-2ang  Ua fewQ Xt.Awas $cFACING7nose poi* heavenward! geeminy,VHIM!".A botds a!--say a stray dog3ai Johnny Miller's house,A mid2,!#as.eks ago;6 ppoorwill=1 in4litbanisterZ2ung|aame ev?0U L#B}!yej W"ndyE#se 2. D&cGracieT falls2Afirebcrself terr next Saturd;#Ye@sBDEADwhat's moche's gbetter, too:you waitbsee. Ss# ,Cure  z,)a niggers sN:2all *h<7c,dWBSihis bedroom Kh"al Apent3$ss]$excessive cautionCfelliP congratuP.2himMRCknew escapaden1was _Raware3the gently-Qas awake$Y bv5. eawoke,=1andCrak$q ! ig# lAsens&the atmosp+HA%##Wh% ae not called--persecuted till As upRusualK4  KLtW.%Nairs, feelowadrowsyr family R at tԌ!bu finishedQkfastAI"no of rebuk)Nwere averted eyes;:!anA'ofCHthat struck a chillhe culprit' s He sat "nd &reem gay2it -Nwork; it E$no smile, no; he lapsed "leyheart sin'$tdepths.HNN"idG bbened ir3hop>g2Gflogged;Tianot so aunt wept overxand ask*m-E !gobreak her[!o;rfinally3him o{"ru&3andRher gray hair '1 so=~ '?2 usZ hT: try any more.Z!waCan a thous"ppgaA was sorer nQ:"anL1odycried, he pleaded for forgiveTpromised to reforh 2andj {.[jdismissal, !!he_1wonan imperfec51cestablut a feeblfidence. He lefk  Ro misC vAl ren4ful(2Sids 2 laB prompt retre back gat unnecessar_!mo^o school O%3sad41ook+}hqJoe HarHDwondered i-!ha!ic%nir mutuala<Abody2Dtalk r intentlthe grisly "them. "Poor fellow!" 9T+Cught a)Son toG@=grs!" "T2'll) iy catch him!" This ift of remark"milB, "IzQa jud';=frNow Tom shivxAfromA to heel; >D stooG3 of+3JoeZ$isB12beg}s6Bbe, andas shoute!'s  Aim! 7com!!"U!o? Who?"ctwentyT8. }1QHallo0s1!--=3out!tuM{&Am gey!" PeoplCrees over\'Aheadrrn't tryYB--he4doubtful and perplexed. "Infernal impu "!"aAa by~er; "wanosand take a quiet$aFwork12--dQexpec 263any=part, now u- b, oste%Ausly]3ingC" btAarm.;pa's facw haggar &the fear tha .W bstood 1urdman, he shook ara palsy4bface iNBhand@ QburstJa tears P!do#friends,&sobbed; "'pon my pThonor> z0iho's accTyou?"F" aYicarry home.xCliftme1and3ed ` thetic hopelessnes5sw!:"*Q, youaaised m/"'dD."Is ?V i4himM#. msiy anot ca=1easmhe groundn-*BSome!1tol"'tEM8Ond get--"-1hud Qn wavr4f2les` ra vanquSgestus?"Tell 'em, Joewv'em--itl0n,1tooMbEstar`#he  2-he8 liar reel offrene sta?_# FaFlear skydeliver God's Eningmp]f1seeAroke3tdelayedr JJ3illBaliv'!iraimpulsx  BoathE!avubetrayed prisonerafe fad d 5wayBinlySmiscreant1solrto Sata.#itIbe fatalReddle]~ Rroper-1sucQower - a"$hyyou leave?"DwoC|d Qfor?"ab BsaidRn't help it--$,"amoanedx:2 ru+ ?1see} 3but he fell to5. d repea)BjustZSlmly,minutes after inquest,=Foath 1seeCwerewithheld1q 1rme20qbbeliefH1Joej h Aevilw become,Bm most balefully interes1hadDA , yB not+ M  bey inwu(bresolv w= nights,d#1L should offer,Ih%ofPa glimpshis dread  3hel2rai !of[NRput ia wagone rremovalQwhisp3 Q 2ingv  l0!blqlittle!; Dboys&tXappy Tturn n$wBtheyQdisap "ed1morEn onarked: !three feet of . 7it O AfearL1ecrx+ad gnawonscienc /iqs sleepvAas ms a weekG1at Afast_~3Tom/' !alCyourx1so t3youp8!e B hal9"ti^rTom blaband dr"c H's a bad sign, Aunt Polly,*dly. "WzRgot oB min_d?" "NQ % '[Aof."k23oy'shook soaQhe spcoffee. "An 2 doTustuff,"Ur. "Last said, 'It's 2" t it is!' Y7Aoverover. And y!, 'Don't tor6me so--I'll-"!'S5CWHATQis it$V?" E+  1Tom( re is no\2ing*+ Qhappe\1BluckF2cern passedm7S's fas3 torwithout kno.!it" Aho! W3ful1. Im!ity4 my24Q3its7  S%Lqfound a-Sightypr itself . Becky Thatcherd"st #tolMT had EQhis pia few day<'"whistle her dow+!,"1fai)&HeTfind `"ha her father's Lqand feeI%< was ill.rif she p2 diP)9a3`qno longbdok an `@tar, norq piracy charm of lifCgoneMadreari2lef}hoop away,#Bat; $!wa 3joym3 His aunt "ed& 'rll mannqremedieS2him06wasRose prwho are infatuqwith pamedicinea-fanglWthods of produc2 or mend:an inveterate experimA3 in-s. When sRfresh'cis lin Sout s!in'k{2it;Kn herselfp?iling, bu/!el"at Whandy subscribert-!ll#!"H" periodicalNphrenological frauds olemn ignorance %B inf#1was^th)strils. A "rot" they cont about ventilR !ow$odRet upj/Ro eat$Cdrinl42howQexercI 2 22frag?!onTDelf *.1sor#clto wear,&all gospeӲs=aver obser!ha! h-journalscurrent month customarily upseXhad recommenO <Rbefor21s simple aonest e 1was+5 soan easy vict!gaQ$d <]quackydthus arm:'bdeath, .9 pale horse, metaphorici 1spe> "hell foll"Qsuspe `aot an &1 of[$$1balQGilea6 disguise&he) neighbors.n!wa6 creatmee3new/,low cond|)f$e!haRaat dayN*,bhim upehi}!wn mBqa delug Bcoldn she scrubb3a towel liki7Aso b?t him tona*Bhim Aa wemqblankets 1Aweatas soulw1 "the yellow stainsiV a his pores"--as7!Ye rwithstabAhis,boy grew morh  melancholyp!ej|added hot baths, sitz hFClung,A boyX#"inbdismalShearsRassisslim oatmeal dizbr-plastersb calcuhis capacitn)Hould a jug'sfSevery day}3cure-all-#om come indifferQ32ionn!!isfW_0cphase r1the1Tlady'L,constern;ice must b9!upny cost. Now?of Pain-killthe first a She otd a lot)Ua tasteD 3as with gratitud'Rimply7in a liqui0 J  {2and&P3els2!piZO iA gav a teaspoon# 6Xeepest anxietB,qe resul &r mstantly at rest,Zat peace again; for""?broken up` #bo+1hav!#wn a wilder,i , built arunder him.3feli.to wake up;-Klife might be romantic enough, iQblighy, , c1getyD tooiAsent "oo  %ng it. So heat over%!ouC!nsd ,X1finchit poO fo+n# 4Qfor in4ofthe became a nuisanch Rby teeZT help'2Aquit)q >Ieqen Sid,had no misgivto alloy!dePEsinc&3TomMF bottle clandp#el (" !rebdiminish" !itW Cccura t5was t!ltIta crack !siG-room floorit. One day athe ac 3dos  Sy"#'su$ c along, pur#eA(%heHR avar.lqbegginga({said: "Don't askit unlessAwant&Peter." But s1ifi# W2. "You better make suh$?ure. "Now you'v( give it to you, because E $ #m"mebiEQyou d,mustn't bl8Ebut your W agreeableEH mouth open)Voured.Sprang a couple of y+Aair,LSthen %ed a war-whoopsL!f & the room, b st furniture,/ flower-pom*  }Z havoc. NextiRose o}"hi6,#pr ja frenzy of enjoyment,<2his,F !jL proclaimingunappeasrhappines % Atear ?ahouse a spreaQchaos>destruct! Gath.U!edDime r&!im/w$double summersets, 2naly hurrah,AsailG1ughVt, carryK1res^Gthe ZGm. T  Bpetr astonish2 peer glasses;Alay ;qor expiaKRlaugh?#"on earth ails@Tcat?"N'u, aunt,"O. "Why,+i!diaact sogcDeed IWknow,e; catsq6kthey're having c A" "$ado, dof'?"Btonemade TombD1es'at is, I belie<(2y dAaYou DO1-  Qdown,n 3ingwAinte>emphasized by{ R. Too?@!viAer "f.R handthe telltale 1visC ed-valanceUi ald it tom winc 9yesBAraism Qe usuandle--5"ar.csoundlj %DimblS, sir (1tre"at)dumb beast so #pi Thim--Zd!nyj." "H!--you numskuhQat goAdH" iqHeaps. BRbif he'?Qone sqa burntF4out2! S2 ro 0QowelsX!of3'w"n,PBthanra human!" Z!fe: sudden pang6o1Thi1 pu yhl |6 ruelty to a cat MIGHT beboy, too  soften; 2sor=r0',I Rshe p<'3 onDheadd gently)'qmeaning -!stQ. And , it DID d !-&om)" i Bfacejust a percepttwinkle peepinggravity. "/!haf Q%ton-B? Ye*BforcX," adR: he 1lea!if!cr`wqno choi("By` `h2farFMeadow Lan,t !ll to "take up" t, Qd fai#up"eaG;, !Fink %,Bhear old familia!nd rmore--i Bhard0v$ou<ld worldc]submit--b A for1theQ sobs.a thick@O1 JW  2poi7m_'s sworn T , Joe Harper --hard-eyCwithD5tlyand dismal purp=Srt. P 9b were "two(but a singl&" Tom, wi 9#ye1fleeve,qblubberBsome about a 6p to escape from hard usag1lacsympathy at= by roamBbroaOFto return"3by  Athatm=1not"m.it transpir was a reques !chK2hadKRbeen  nIkN3#a)1hun1 up_. His mo ad whippfor drin ScreamhX  d knew ;*1plaUtCwishto go; if.<!waXpl but succumb2opebe happy0a regretDing ;"erW1boyxA $un) ddie. As=wEwalk gClong7 +compact to u 8 byePQthersqseparate till death rgm2 ikyj3lay.:tplans. "Qfor b2;a hermitC1livb qn crustJa remote cav1 dy O a#rand wannRgriefQ% m31to 1he U S&a4~_conspicuous advantages1 a "so ansente!pi Three miles below St.easburg,|!wthe Mississippi Riv "a OaWQ wide"a !qnarrow,%ed islanS \6$2bare  o"d well as a rendezvous%1 in2!edrlay farQtowarL her shore, abrvba densk{Twholly un o1estJackson's IC chosen. Whon!*aubject%Qiracis a matted2 ]Ay hu(up}R Finn8 JmRqly, for rcareersho hhe was$jy,75tlykmtu#!ne;I$ot]river-bank two,vn1favorite hour--4\csmall log rafIthey meanLLd. EachJr,2ookl6)such provisiA4d steal amost dnd myste!way--as bec +butlaws_:Rbefordaftern2donCy."agsweet glory of b~h12ttythe towne"hear ." All whohis vague hint!!cas"be mumTqit." AD Tom@a boiled ha9c a fewKs 1%ingrowth onQbluffMthe meeting-8VstarlBveryAMT lay Qoceanl3Tom6ed Qbut n3 m Q>the quietenN!ve%w, distinc$ 6stlAansw 1bd twic; these sig, K&e ;bThen af5ed voice!We!reTom SawyK^he Black Avenger Spanish Main. Name your namesuck FinnERed-Handed VTerro]2easw BBfurnq rtitles,56hisIliteraturA'TisEC. Gicountersignwo hoarse whispers !e Hawful word simultaneJ"torrooding<: "BLOOD!" 2Tom6 sQUC4Cdown@qit, teaboth skin1F/!es~ome extenXB'BfforF {., comfortable path (Bit l8the!of pCicul8!da/rso valu[&  b d4bac3had Tworn 2outy'"it $.gstolen a sg* ntity of half-c#leaf tobaccol- corn-cob 3pip/.3An3e s smoked or "chewed"A saik !do2tar"z)J ! w1hought; m]ahardly'@Z"reaat dayqy saw aWa smoulJgG1a hWd$3aboy qwent stc'@ 5andjErhemselvsa chunk Rn impR'adventurLbit, sa r"Hist!"[A nowT2theV suddenly halt!fion lip; movM on imaginary dagger-hilt4!gi1orders inX"ifj/Dfoe"cc, to "%W)'K dilt," " "dead men tell no taleWhey knew2 en< raftsmen 3allQ lC in stores or haae2{]D exc^ aconduc` /1 un"AicalAOPved off, ,iEmx CHuckJ1oar!Jo=D qorward.>stood amidships,T-browwith folded arm/7hisTstern_: "LuffDbI"wind!" "Aye-aye, siraSteadyNAady-f it is/!Le!t go off 1P 0Aboys 2dilcly droGd mid-stream vno doubtET"gonly for "style,O! t!to E any&particular&a?"l'?1 '?" "Courses, tops'lflying-jib?"Se  r'yals up! La[Saloft,$! a dozen of ye --foretopmaststuns'l! Lively, now1hak\/maintogala@RSheet braces! NOW my heartiesWHellum-a-leeKTrt! SX2wJ4comes! Port, 1NOW, men! With a will!  T\ drew beyoc7mid#&   ed her head7?then lay oi)Hnot high, s  B notathan aEor t=C82. Ha Awas j!duthe next;-quarter ran hour2t1wasGing BdistXwn. Taglimmenlights showed rit lay,1 "sl#,j vast sweep ofAa-gemmed water,the tremendous ev:4!ha happening. 7 7" his last"-Q Ascen!hirmer joy06ter8wishing "she"2rsee himuQabroathe wild sea,~ng periladeath Qdauntj%, his doom| a grim so/rlips. I,!bu mall strain'0R,!to&vet Island 6aeyeshoN'Cthe ["edZ!a vnqsatisfi\a' p last, to q3so I y came near let#e \Q drif)m\ArangQthe i< oediscov "j !inF%qmade sh\o avert it. About'clock ip1morU'Agrout+1bar8 B thewaded backzforth until Ahad 2"d ffreight. ParRlittl|'ngings consist an old sail"isgaspreadIr a nook ce bush$1a tbo shel6eir"s u TsleepVqopen aiDgoodq., .!y6/sk J log twentyirty stepk  sombre depth 4estDen cme bacon1fryb!anI1suprgAand fY"upcorn "pone" stockw4had;seemed glorious sporuAfeas%at wild, freee virginunexplor%5 un CR, far61 2aunm Ba returcivilizations a climbO&!ir3 up6Bfacethrew its ruddy glare the pillared tree-trunk$irbtemple?X aDfoli>afestoovines. W'!he crisp slice of ""on,qallowan* pone devou Bstre'3outt grass,Q;contentmenyBhave3" a coolecZ Qthey 9dena romantic feaZ 2 roh camp-fi2AIN'T it gay?" !JoIt's NUTS!Tom. "WhathHA Aay ikasee us Say? WellB y'd just die to b&be--hey y I reckon so, 2; "͉s, I'm suited. M/u't want"better'n$Aever@#Cgen'ally--and > Rcan'tXband pikAa fe<Z qullyragDso."HAthe dfor meXY6!toCup, y(!ch{"sh 'at blame foolish5uYou see 3do ANYTHING, Joe, ) aa[hermit HE haRbe pr0dxm# t0naany fuyyGUll by&tt!ayPAOh y What's \ "but I hadn't thought muchFqit, youT. I'd-deal rather b mq I've tN(!itC3, "'"go}#onsQ!adQlike ^^Ato is`Ce's M'respectedr2 a Q's goWhhardest 6Ican finput sackYa 3hea)s<=$1raiAd--"5at does he put V for?" inquireZ0Fdono s've GOTV.6rmi5!do2:1do 3/5wasDern'd if Iww'v?an't do%`#WhY:'d HAVE toP'N0!itY6I3n'tv"it2run.S" "R "! you WOULDnld slouc<0be a disgrace U no respon*ecemploy)chad fiqgouging Qa cobQ now A"tt:e', loaded it) was pressing Qal toRchargAblow! cloud of fragrant smokj&iMfull bloomp-1uxu   ) envied himW majestic vicM secretly &vqacquire?hortly. 0AHuck:Q1pirT?E+,"Oh^#n1a batime--(b 2hem3get "nebury it in ?6#ir $ w!re's ghost Fings]i kill everybod --make 'em walk a plankSA y!wo "q Joe; "YAkill5RsNo," asT## 2g--they're too noble}Tbeautiful, too.Awear[bulliest }es! Oh no! All goldsilver and di'mondswith enthusiasm#o? !hy#B." o"caDbis own orlornly I ain't dressed. h"a &ful pathoH=;Z#go3!bu1$sex@Ftoys tolbe fine#escome fast,a h0Sbegun <W^2him!^2his'4rags}Qbegin,l(Lqy for wy  a proper wardrobe. Gradu5talk diedk ;vwsiness6'[z t eyelidm fBwaifF pip3ub9U (Drhe slep qcience-aR wearL ta} 3 :J%in . 1saiYayers inwardlya, sinc Dith authority them kneeXQrecitC1ud;h"ru2d a0!no$s(1m a,,were afrro proceU lengths asS, les:might call2 a dspecial thAbolt3 c6cn at o Qy rea1ando7'reimminent verge of O.an intruder( ,: not "down." F ,4e>41egafe$fWhad been doing wroD -#eytb. 3meaAthen!rezr^CcameY to argue it away by remindingzhad purloined1tme@nd applesfAs ofKB C!thin plausibilities;E!m,che end? R!ar%the stubborn&"ta-was only "hooking,"F6,O"am@valuableCplain simpleSing--Oa command againaMi"Sov  5hat;a4 "bub", )U2not~Q be sd.!thl}Ume of.3$ e؍uP Lc 39]dstent # Hfell CHAPTER XIV WHENCawok!, he wond% he was. He sat5Q rubb Rs eye'ny"omBd#ool gray dawT#ya%-8of reposKdeep pervading calmGBsilewoods. Not a leaf r!!; ! s!ob|great Nature's medit!Bedewdrops W 2upowCleavQgrassBQ whitY!xcPathe fi,Dblue3werK|some hand$r it laydst to (/Bdit by a narrow channel hardlybhundred yards widetook a swim | hour, so i the midd#thEnoon2Yy got6ptoo hungrRtop tdthey fared sumptu"ha-%themselves $balk. B_S soontto drag!en6} 2itybrooded pG! s of loneliFsFtellUaspirit1oysy!toking. A sorQundef,e creptWmVdim shape'6#--budding homesick'Even Finq Red-Ha.was drea doorsteps\empty hogsheads~all ashame",1weayC none was brave to speak &a. For A Aboysbeen dullyM!ouna peculiar A ,2"sometimes i>2!ic"ofZ##ckAk"ke6>!no' #(isAA1 befpronouY!fo a recogn72 st a glanc4 \aassume1ist23 atfR Thera ,R, pro_band unK1;Yqa deep,ren boomK floating downDn.#is it!" exclaimed Joe,S. "I [!2Tomi whisper. "'T@!8thu+@Dan awed tone, "becuz4'bHark!")qTom. "L7q--don't\#."2wai% 4hatSan agV] ame muffled boom trouble$| hush. "Le(5seevBspraVAfeet%"hu_ MjS1ownp1y pCy u(1ankM!pe2out+2ated 9!steam ferryboakTabout1bel' v,3Aing @, urrent. Her T deckMScrowd b*<!re^# amany skiffs ,T&oru9 neighborhooBcoul{determine what em&!jeSwhitedburst z E's sKas it expSand rNa lazy cloud, tAsames Cb ofz1orn steners again{ 9now Tom; "somebody's drownded!`HGHuck&*last summer,\Bill Turner gotVvy shoot a cannon ov$at makes him comRdtop. Ytake loavBbreaRAput &q in 'em2set Tyr,anybody!!, L'1ll =9i #!op'I've heardDthatUJoe. qread dolR!Oh)](Ld, so muchW&it's mostly v 72SAYib it ou%. "y >6say<iqHuck. "p r@O1XWfunny. "But mayb!sa)E . Of COURSEb do. A1$<Tboys agre=AQreaso(1TomF,@% a!uat lump3Buninfeescaped, unawaR.Bby Joe timidly H1&ra roundB"feeler"3o hI rothers  # aa ;D--no[_but-- Tom!er derision!, uncommit s yet, join"Towaverer quickly "ex)#ed 1wasTT g f<ascrape4 as#tachicken-hearted a cling-o his garme"!s z&uld. MutinybeffectV/1laid$qrest fo{s moment."heMQened,&#no&H to snoreTQ foll13nexc#laG)lbow motioq,>V %@1twosntly. AT he got up cautiously,7CkneeZ#BsearQ<the flickerflections flung%!he"*!piJ !upDed several| semi-cylinder:3hinAbark%t sycamo)1finchose two whichto suit himin #3lt #fi&ly wroteV@shis "red keel";4qhe rollBB!pu"his jacket pocketFtM $he+Joe's hab remov$lD  owner. A CalsoQto the hatschoolboy treas most inestimable value--5m a #ch India-rubber b ree fishhook@$oEQthat !of marbles n as a "sure 'Lcrystal."tiptoed his way #!s Y "he  h drhearingstraightwayc=a keen ru  "irr \-V A FEWsirX&!waM ) BhoalNbar, wading qIllinoi].re. Befoc depth rea,%Chis  half-waF  a:" p="no%},#aso he k]1wimKremainingOSswam bing ups   $=faster than dcted. However, 1Zr6$al3AdrifUlong BoundUR plac~JfRmAis hA N6Aiecexark safP .R#,35ing. Shortly before tenFecn openroppositBDvillA saw2 ly ? Btree- the high8. Everything^quiet undCe bl- !stK2He dkRGZ1alleyes, sli!c, swamor four strokXclimb7(I)"yawl" dutyEPboat's stern!1thw)ited, panting. ;!ra!qbell taavoice gagH1 or:o "cast off." A]j "la("'sh]ZsAup, s 1 swQ4voy abegun.M in his succ7!fom*ait was2^AtripB 2. A/e!a HRtwelvcifteenSwheels stoppedDTom aoverbo."ndaLysdusk, lSfifty6Bdownk,<rof dangpossible stragglrHe flewY unfrequenl3leys$]C:r aunt's QfencehoRapprothe "ellE lBin a+)1-ro Bndow"a 8was,& r/ Aunt Po:Sid, MaryfJoe Harper's mother, grouped togeB talTH s b ' &the doort B dook softly lifBlatcn he pressed gHyielded a crack; ntinued push,G= band quQevery it creaked,wQjudge  squeeze~9ugh ;i #hiq, warilWcqweblow s=I5up. >CAor's , I believe. Why, of coursr-cis. No , gs now. Go 'longqshut itF"."j"edM"la"Ded" 7`|C"tould almo\"!uc nSfoot.#asJ "Q rn't BAD, so ay --only mischEEvous. OnlyRgiddyharum-scarum, F3He Z2any bresponoa colt. HE never mean12hart@2]%st2boy:awas"--g&he!cr[Irjust so{my Joe--always full ofdevilmentbup to  rischief G`as unselfis'3Das h"belaws bless m&w2k I.an!htz#m,:once recolEAat I3wed myself ]Yis6$Sand IP1Ahim Xgi#ldv!, R abus!!" CMrs.ba sobbebif her3 3hope Tom'Jvter offi*BB"butQ'd been 5in some ways--" "SID!"the glare 2 olc3s's eye,yBnot 12. "g9N_%st my Tom,"Qat hene! God' Cke ctQHIM--F< YOURself, sir! Oh,G2, IuR know=odim up!!!!Hesuch a comforjla he tohQed myJme, 'mosrThe Lor,!th2tqhath taSrway--Blb 1nam"21!w$Ait'sKard--Oh,! Saturday my Jo<#er bmy nos D him sprawl%aLittleH $K !n,TCsoonfKto do over K1hug3and1him6 IeYes, yj1howMfeeljust exactly/longer agoqQyeste(Snoon, took and f3to tPain-killI$ ct@e house down!Go%Agive"I  ''="my thimbleY3boy 1deaab P  H"An'rwords I7Ahear2 sa6Rto re 2#Bu\6Tmemor$X1the$la3sheqentirely as snuff;:T now,Nm Bpitythan anybody elsP #ou E cry -"pu^4Q%kindly word #imm$oY)DFa nobler opin$ H1befdStill,rsuffici Bhis  grief tB!sh] tIoverwhelm herB joy;eeatrical>aappealKarongly0is naturAo, b]R resiJbnd layX*R. He&on'F#ga|qby odds;Bends+ conjectured at fir!atP(/#e#le+;M+ec0rraft ha Unext,2]she missing ladspromised!shqB"heaQq" soon;Qwise-8*$"pA %atU "Sdecidk8g`fC"at tturn upnext town below,;|N(found, lodgede Missouri pQ"fisix miles t| nBperitIbust be`%1ed,1 hu have driv4rhome byqfall if5U1soo/  W searRbodieb!8Qfruit !ef Amere2cau; 2ingaoccurr} mid-channel, sinc Qbeing swimmers,otherwiseSBesca|r Wednesday A. Ifsuntil Sunday,3opexAbe g\!ndMfunerals&$ p"onA shuddered. g>Dsobb-j0 2go.  a mutual impuly two bereavedMA flu =/5Qeach Pb's armvQhad a|,A-o{!#cr jwparted.q was te+ far beyon`Q wontu+cRto SiMary. Sid red a biCMary<#ff 6. and prayeM so touchingly, so 62ith qmeasure1lov8OGer old tremb/Avoic  3welin tears ,B sheK&9h Rstill3A5#shZ"dsrmaking -sejacula1romB, tounrestfu and turn:Q "at* "as", !oa.| sleep. Nboy stole @;*cgradua;Aside, sha"e b-light=#andQstood4r Gher. HisIrfull ofA $e [5hisxq scroll.+ARto hi he lingRconsi"R face,arUsolutW "s x Bt; h(ark hastily iv9 !ntv k[2lipAmade#stORexit,pWabehindxAthreYhis way backmhB!no \Arge ! S2ldly on 2oatwc tenanRxceptWahAman,(xiE slept like?ven imag] CuntiGS 7 zi-<$on. 2 up. When h!pu`!a V6$abhGD, he2S quarrCacro  Qstout Awork !hiT !e , side neatlyn" ts a familiaraof wor1himYBwas &Aptur 3b, arguLRat it;1 beFAshipfore legitimate prey!qpirate, a thorough @ 1be Cfor z!enCreve8B. Soo<a qand entBoodsslwM`arest, torturin Cmean o keep aw:!an]n;Vhome-stretch far spent road dayJ"he r*DRabrea  rVA barr{JO k !unzbwell u1gilI:2eat=its splendorhe plungtream. A "he paused, dripp" treshold2cam + Joe say: "No,]true-blue, Huckqhe'll cl "ac?won't deser2zstm uZ>ğtoo proudfaat sorXI a. He'sBo2 ora55C whac[8/!e 0s is ourz^i4hey?" "Pretty nearKrnot yet_1wriIAsays:B aregO 2her+? W$\he is_2fine dramatic effect, @Aing +l.o%F. AW:o "co2fisshortly provide?2as WQys sea G!itGunted (and adorned)#Qadven*% Ba vaRA boa_ P"anp."wh p>AdoneHn 5hid)BawayAshadwQsleep 9!ss&'ready to$]>e#I AFTER dinner 4ang !ou-hunt for turtle egg+ 22nt *,poking sticks s yba soft vNe eir knees#duJ!A5. S9tAould{|igSsixty<cone ho6Qy werfectly round'ea trifle smaller`an English walnut famous fried-egg(gHCnighFanother on FridaBnq!1AftK7o%cwhoopi ua|s chased(j2anda, shedclothes ,  _tere nakePthe frolic far1 upqshoal wstiff current, wYtlatter {GC leg 1unde7^1cre qun. AndX9 !op) osplashed iY)Rfacesw palms, !7ing#Q aver-@Grto avoiQsprayQd finb g! "ug,jt0 st man du$s (9TAall WQtangl6S"egucame up b%b, sput q, laughqand gas1forth at on{ )BQ7imeh|aexhaus$1runBand  dry, hot!li ?+3covB_"up !by.!byk2terjo original performance onc/>3. FQit ocX /Hn skin re ed flesh-colored "tights"F6afairly!#qdrew a i circus--&bclownsP* b none  |"R thisRest p  `a. NexAy go %ir:+l"knucks""ring-taw "keeps"at amusement grew stanH1and a BTom Cnot ,; kEin k;@f;trousers %kiY!stfof rattlesnake his anklehq U!hecramp so lo8xhe prot+ @Bchar )di *Btime6Bboys!ti%ndwD res#waapart, dropYq"dumps, fell to3!lo1$ly"thEj Ato wlay drow1un.s u  r"BECKY" big toe;*Acrat`!9Angry5 1forD weaknessXqhe wrot!f ,!!thgcnot help i !er&itAEtookz"ouc Aempt# by driving 7a toget7!nd 3 m. But Joe's D1hadhn$Abeyo Bsurr.q $o 2Rhardly endBa miserB iIerlay ver surface.was melancholy, too"waeFhearted, bu)e~A noty 3howexa secret}^ to tell,B "this mutinous d2sio72not#asoon, Quld h$+1o b6Y@Bsaid2eatof cheerfulness: "I beY>Ebeen F 4is 1efooys. We'll( VgAThey>'ide1lasomewhY6UHow'd ight on a rotten chesto% f#--But it roused onlnt enthusiasm 2fad no reply. Tom!onz+3two!se}Aons;KAfail($ooI discouragz!k.M%sa  %" a A!lo%fgloomysid: "Oh, let's !!it up. I wango home. It'sQesometOh no, Joe''ll feel be- b{($by (T?!JuD 1inkah2?C" "u$ $4for)"(t) Bing- 2anyJS" "SQ's no.$Bseemp1it,0chow, w 2re t7! to say I sha'n't go in. I me b"shucks! Baby! Yousee your4,XAYes, I DO0#my.B--an)A, ifhyBe. Ih$2 ban(Bare.c'U"%ed.wlQ cry-I m,"we A? Po08aing--d8?t$it<?'so it shall.2alike i+Xe, don't you`sFstay|?ir"Y-e-s" !ou  . "I'll:Q spea-2you2 as- as I live.1ris\!"TQnow!"&9ved moodi [6and&#d<t!ho#1s!"hNQwants'to\,$ho1et  ed at. Ohr#3iceTand m[Ries.  V,A? Le0f#unts to. we can get0{aper'apAB< as uneasy Blarm 1seeGgo sullenly on/ sUAing.5# QmfortK Huck eying"prjO9Xso wiy5 such an om%K. Presently,v2 paxAwordwade offh"the Illinoie'AAsinkQglanc bU'3loo> `;yVYI#gog!ItfM L4  it'll be worse. J*usR"=)1canKgqAstay27+I!gosWell, g/--who's h ing you.+QCpickR scatqclothesjvtAwish4'd ol3youi`.wait for youq!weCV""3ra blameh5all!st q sorrowR awayM3Tom _Ba!6ng desire tug!at;#to ]#gotoo. He hsf stop,; sw Aslow. It suddAdawn y awas bemBverypQcT3. H2one Y-d?s comrades, yelling: "Wait! (tell you some!F#y j!ly1ped$SaCgM zh5e1ingc yK|cCat ly saw the "C"s # aN set up a war-whoop of apCk#1saiTRwas "Aid!"3qhad tol]m(,#2n't away. He made a uible excuse;O!hipIl reason "be:" fa#ev<T#DthemmA ^great length ofSs$so#men 1hol eserve as a A .B ladNCa gayly:4:9 ir sports will, cha6!im #ut:stupendous plan`Aadmi)wenius of it. Aba dainA and ,!he*ed to lear bsmoke, 5Joe caughQ ideaSBlike to trysXQpipes7!fi 2the@se noviceY1 d\Lbut cigarsPof grape-vinGQ"bit" Stongu8not manly anyway. $yo'Vir elbow1uffBrilyd!slr confid9AThe an unpleasant tastGgagg Why, it's@0as easy! If0a2e/sCall,"t + #SoI4 E. "Ic!no'hy, many aI've lookA peonm$ well I wish I!do's; but I 1%Tom. "T!aRme, h$it 1You1earK Stalk <k--have o qleave iKAif In't." "Yes--5MosUHuck.$7D too Tom; "oh,ZCR. OncW1 1e s5 ter-house. Do rememberBob Tann771 thand Johnny M1 ,Ilcf 1, 'ame say  !Ye\ !. B#ay I lost a white alley. No, 't*.z --I told[1. "472s iI bleeve4Apipe4dayMfeel sickNeither do>}]$itV1. B!be  4\ !! 7keel over wtwo draws. !le D tryB. HE'D see! !beRwould !A--I  Aa tackl2onc 3Oh,)2I!"G@s:youI any more%an!onqtle sni fetch HIM." "'Deed2oul U. Say aus now?!So ay--boys!saH !i BsomeRy're = ,W Qup toQay, 'got a pipe?aPae.' An2'll31kin%1carO like, as6rX  pIamy OLDw", (03 on'rmy toba+bCin'tood.' AndZ1Oh,'" r 's STRONG e3G= $ouhO1igh ras ca'm!Eqsee 'em-S4thagay, Tom 1ish0aas NOW5!!we \"weQerwas offQing, 27 w#y' dalong?Bnot!M4BET@ll!" Sotalk ran onV &itEflag"'grow disjointedBilen adened;erexpectol marvellously ]!^ry pore ip <boys' cheekame a spouting fountainiyj2bai the cellars   rs fast Kb to pran inund;2overflowing+M throatsqin spitx 2all*"doF = Fings"Metime. BothY1ere2ing2pal miserable, 'from his nervtfingersx!. t_ygoing furBboth pumps baiB"Mm|\)id feebld) =Wknife]hCfind Bquiv2lipb 1halutterance2'llyou. You go j`Rhunt r? !pro!No needn'tvHuck--wdS ,BgainAwait!Q hourCr%itpK'"to Dhis :yswide ap oods, both U!pa Aoth a1 0informed him2 if#ha!ny trouble agot riQ"itnot talkative atT}Snight4Rhumbl1henQ prepCdp "ft meal andBparez\ "ey[2no, 1fee,well--some+1 at )mӂisagreedQ2 A !id!aw-dand ca0{ding oppressive:#ai83see02bodiNXa huddl  !so1thet(Cndly*vionshipr4F/} 2ullj=aheat o  breathless atmospA sti<Ty sat94%Awaitholemn hush 7b. Beyo{jfire eK3swaSQup inAblac`!Hr  &aaAglow  vaguely revea^ foliage for a momTavanish4by " crc1str?#n & faint moanA siguL"th0 tranchesRforesboys felt a fleeting ,ywshudder fancy tha?S! Nd !!by/. Now a weird flash,! n?Ainto  hgrass-blade,=i and distinct %aBfeet $it[three white,/tled facoo. A deep pea "thP1rol:and tumbling "r heavenGlostw# r4Qdista$A Ƙ chilly air passed by, rustlingjyn!sn the flaky ashes broadcast !ir TfiercElm FN% stant crashD#retree-tops r'Mic:p$in terror,x%athick 6!p~q. A fewsurain-dropCl paf* .. "Quick!!W"foLtent0csprangs\Broot4amoQdark,awo plu&same direction{ blast ro trees, making &as it went. One blind yH #ndnbf deafJhFnow a drenchinv1 po@#heK hurricane droveGsheets a`c0Qround<" c#u Beach#,the roarafoj-C!s >eir voices7 ly. However, one by; O 8\ook shelterk  .Qcold, /Qstrea5 ,;o%!y =?DseryR1o b teful foK  x 1 olBl fl{Q$soW2ly,0 Wd noise1hav[A The6(esS!er:qhigher, Zthe sail to "se/1its ]4X"wiCaway- %. Iseiz0"s'1}Rfled, ye bruises, toԁ2oak`U86d-bank.b battlsTst. U}R ceas conflagrf of lightnR flamii*AkiesSbelowout in clean-cuTTless Qness:"be:the billowy ,<Bfoam$@Z0 of spume-flakIhe dim outlinSdbluffsoside, glimpUD drifting cloud-rZ1lan1veirmE "L9 some giree yielR>! fand fell younger growth;Vthe unflagg/ S-pealnow in ear-splitting explosive bursts, keeBshar8 unspeakably appa[storm culminatone matcy ceffort# qlikely *+9q to pieQburn ,! ig, blow itBand rq creatuA it,av" 2. IKra wild rfor hom#}Q. Buk}'do forces retir Aweakd h threag  peace resumed her swa  %nt>Scamp,YC! d3wed3hey`Q was Sthankp07eat"^Dthe  ir beds, was a ruinTJQblast? w uwere no3Rt whecatastropppened. |! i pz!ed9A-fir/Qwell;5 t-v-AheedSlads,3Bgene0ymade no prova +/#stHc! m pbdismay2|Q soak3t eloquent iNHtres/,%,1verY0 [aten so far up HQlog iL  dbuilt !(wW it curved upK\3 &$edn Afromground),%a-breadth or so# \V2!weB; soCpatitj-t7kashreds+qbark gaBthe 2sid#qed logs+ay coax61"toQ. TheRy pil=$5boughs ti]# r furnac<|# glad-heaV751g1y d{ , !boo"haOXD feanN ][3satJd aexpandd glorified8Q<]9ndry spot to sleep %6-B. A@6sunssteal iN2oys !si!ov"em sandbar2lay1<Ogot scorche.8drearily se(breakfas"CrustJcstiff-4mhomesick once;:%Bsignbto cherTup thp+;ɹ2C. Buc 1not %fo6, or circu .E, or"%Aremi1$ imposing &aa ray 6eer. WhioD, he`7mRa new devicaK Hqo knockcbeing aq e"be*c!nspqa changOHeattracis idea; sonzs;m^head to heel black mud, like so zebras--alB Zchiefs, of course/aEwent* `A"tt%=s settleQg!By|yn ree hostile trib(Vupon @ bambushdreadful 'kQ%hcalpedHvousands  gory day. Conse$lyan extremelisfactory one. rassembl\Dcamp-rsupper-*<|`KYj4but[ifficulty arose--!d]1notk of hospitalityR-1fir<8 ,: qsimple nAsibiI@"smv2 ofER processeLDaof. Tw davages;7wF 3hadd$ed%. oD}2 wa;with such show 6! aCSmuste# Apipe# 1tooqir whiffA tqdue for1h1gladBgone"rya0Rhad g;S e now smokeA hav Ao go^;Aget 67d be se#un02abl1not AfoolG jhigh promis, #of }practised cautbafter R dfair success y spent a jubilanAning\FeRhappiw new acquirp#would have iwnd skinning"QSix N s. We will$toqnd chatL?And bsince we=nther use >, . CHAPTER XVII BUT} hilarity ?Btowntranquil eZafternoons Harper~Aunt Polly's famiE22ereS3 pumourning QgriefXP . An unusual quiet possess= village, althoug"Rordini 8 !all consci*Ir!du ssaan abs^#ir+ nblittle*sighed ofte.Ftholidayqa burdeL !Shildr61 no) Rsportz h>gUbup. I Becky Thatch1!unqself moB2abo Q dese5 aschoolc)C yar1feevery melancholy sDund  t73to FPShe soliloquize:if I onla brass andiron-knob-!:(*Dgot ` e%to * him by." And she choked besob. 5)7sto CXo9!tchere. iRto dog  x( say that' n3 the whole wor Bhe'snow; I'll <.6A seeb.12is 3t broke )1wn,qP!ndCawayQ down9Uun quite1F!ofs Vgirls--playmates of /and Joe's-- b 1ood2!Qv1 pazfence andfNArentqhow Tom]rso-and-+d2ime"csaw hi6'6how#3andmrifle (pregnant# awful prophecyu(2eas "!)  er point>tWu2actwC"heClads" 8addNpa"and IBa-stR just so-- as I am nowOf)qwas hima Aclos e smiled,Y ?2way!th!l+"me !--R, you knowD!I wZ5Wmeant ,C/1can TL a dispute5who-Bdead.cin lif`Qclaimat dismal|qand offLevidences, more or l: 1amp!DwithVrwitnessDwhen ultimately decided who DIDrthe depl"exCwordthem, the luckR2ies Aupon1selA sor"sacred importanf z1apeand envie=che respoor chap, whono other&z"toF,)tolerably 2c pride 01'Z9# ucked me-BRat bi Rglory failure. Most s "athat cheapen&!1incWWa=4loitered zs2rec2r memori!osu2oes3wedC. W\-B hou 1UfinisFnextell begaoll, inst# r  @I1a vtill Sabbath2the ful sound %in<he musing9%TlSM#on` &rs,V5ing$ vestibulQnversCwhispers#1nt.zQthereF$no/Athe 4 ;g]6eal"of dresses +f womenZ<eir seatsZ3urbJ= T. Nonpi&er q churchd!beS full5. TXMa&Q paus expectant dumbn  CV,D#Rby SiEMary yV C ball in$2 qcongregb old ministere, roselBntileos Bseatront pew$ncommuning2., broken atvals by muffc5obsbaspread,hands abroa5prayed. A mov1ymnEsungRF tex<$q: "I amRH Qe Lif2EQervic'Dceedclergyman dmLuch picturA gra  6wayA rarZbthat e4!ou)!in9Acogn!Uthese,(!pa5!herpersist"bl1him rm always Ys?BseenRfault( Sflawsg +1relaGaa toucIqincidenm&iv`e:RqillustrN.Rweet,X3ous%s people !, how nobl_ beautifose episodespt  O rank rascalit"}.bcowhid 1 be@ \ 2and D pathetic tale1n, e"at r rcompany aand jo( !erba chor swelled upa triumphant&,6c it sh! r-s0ASawycre Pirat3#eds k-1envQjuvenkGDBconf"in%$ea&"s oudest momen_1hisq j"sold"Utroop"ey6 jsbe will;"beFBridiculouCtp UuB I" Tom go81e c )esd!cc4R's vatmoods--uhad earned YByear he hardly knew which expro85ostK,!Rto GozBaffe' BqI THAT !--RchemeoAturn'bhis brpI Qatten sa y had pa4o& mo'og, at dusk on 3, lmvesg+t6; U slep   1edg7Bthe 1ill nearly dayligh`UcreptZback lan@ TsleepE  0a chaos of invalid21nchA>f fMonday2 kSto To1tivhis want Aamou1. Id!ttI<@3say> fine jokB, toHeverybody suffe'G'most a week soAboysra good 1but01s aMjC you% Qbe sop-Aed aNrlet me ob so. I-QcouldO:U overtrl1hav| eN&Aive -=2hin9D1tha" warn't d 2but qrun off=Yesedat, Tom,";Mary; "and I believR OihAoughLCW1youR?Rg!, }#ac7iZstfully. "Say<", mJr'p?" "I--w*know. 'T?b'a' sp'NILryou lov UDmuchwith a grieved tB discomfo5Gv!me! c enough to THINKc, even+ didn't DOqNTuntie)vUany harm," pleadeBit's giddy way--he is2 inba rush%he|uinks ofrUaMore's Qpity.\. AndAcomeADONEj.1too'1'll !, 0!da 'Q late DQyou'dSd+"dfor me>Acost&2so 9 j1you V` for you5H2I'd)ADtterakDlike!I Vnow IVsrepenta1; "s dreamt@1any(I,,L much--a cj$$'s!no2. W QWhy, Wednesday night I!tZsu ! bl # b 8+ woodbox A nex Uhim."TRso we9 S 'do ByourQtake  0?8 !usfD<$Jo#'s -uhy, sheA! DiHNOh, lotsso dim, nowWtHa--can'lIRSomehAseem2ind ewind b)6.{1"Trh1der9s[2p. Come!"6  !hioo$ aforehe anxious minud then *AI've i[(.! t rr!" "Mercy on us! Go]-Tom--go on#R< 1you.1, '*door--'" "Go ON]VEJust;ctudy a . Oh, yes--rS you dkwas openeAs I'mMGQI didZn't I, MaryA[}Bthen^r I won'obertaine9Qas if4 Amade'P/cWell? -I make him do%Yb1himB--Ohyahim sh   M"land's sake! IAhear% b@my days! Dstell ME1any! i 1amswV. Sereny 4& i^an hour older.^Pther getCTHISj er rubbage 'superstition.#1t's/!!brbas dayVF Nex3 I r BBAD,NmischeevousM )"an+ responsibl3n1--Ik a colt,28 Pd$"! AgoodjgracioF you(1cryU"So& "Nof* nM)" "Then Mrs.e@2cryf "JotF3ame:C2she !ha SwhippERcreamshe'd thrit out he"CselfRsperrA1cyou! Ya#Qsying2t's1youdoing! Land ae]Gno!SiAsaidd  D" " O ! IRLBSid. did, SidMary. "Sh.d"leU"heL1TomSHI{ !h^6$off whereM$gone to,  fDbeen0sometimesTHERE, d'youd that!:92his8 QwordsG"Anhim up sharpTI lay must 'a'an angelcere WAS W xCtoldZ 1Joe>`a firecracker73Pet\ainkilleraas truPeI liveQ/!loCtalk%dr;Qe riv)1r ud%3havHCA Suna qand old MissRhuggeH4cri  "en bIt hap"!so 2surT'm a- sftracks /2n't`i.Zq 'a' se" %! \what?Ie3youq, " IwBhear`C wor2aid  !en  Pso sorryq I tookRwrote4piece of; bark, 'W}dead--we are only off 4'p %T tabl_  ;'hCyou sdA, lacasleepv8Iand leaned2lip6 D ,&I;bforgivqhm#at4she4crushing embracpt, feel lik( guiltie%villains.#wackind,  Dough~a--dream," , faudibl!up! A body doeV as he'd do if heVyA. Hea*FMilum apple  s 1was-,t--now gto school.=qto the Oc1Fat2f ui  ~2ack>'d-F1ing"Bmercy [l#t q on HimHis word, Bknow unworthy ofa 1nesR FHis *ad His hand+slp themEugh placere's fewAsmil 2e o= t{%4wHis res>long nightUDs. G2Sid >Q--tak+r)1off( 've henderClong.e children lefw old lady to call o vanquish her realism!sq marvelu(3had1Q judg_"toF_pi4"mi,"hethe house.XAthis zrthin--az\Bthatdout any mistakekWhat a hero/a, now! Henot go skipp~(%Rncingm"a dignifi!agƌXa@ who felthe public eyEm|cindeed; he triesto seem2 th2s ooaremark-he passed along?tW5Afooddrink toSmaller boysl%1flo+cels, as A to 6"enw"le$#bys the drummer1heaQ cession Ae elephant lead menagerie :own. Boys ofown size pretendVIknowaway at all'4were consu with envy,bthelesW EUgiven& i#av1swasuntanne6?his glittnotoriety3Tom !no# Ae pa1ithBr a =e3Dbaso muc}bbof JoeAdeli!9eloquent admir)݅*"eyT1two"esMAnot "inCsuff+."stuck-up."s#1tel ir adventures]5ungy#2ers9B;c@ 9ran end,aimagins}!irrfurnish material+,yorir pipewent serenely puffAroun Q Qsummi; glory wadCchedOQdecidbe independen@ ]6now. Glorysufficient. He_2liv|R. Now !heTdisti?'a, maybJ?qbe want o "make  !le!-- h  qas indi1Qnt as other people. 6 arrived. !seAawayQjoinetrroup of5%Oalk. Soo#!obed$s%3 trYQgaylyR ERforthi1fluJAfacedL Hbe busy chasing4mat?so4th a 2sheV a captur9h$icI3shea+/Cher 1vicinity&89qto cast!nsS eye =gPW1ch ~RI"i2!viFc vanit wB him)so0Awinn!im&only "set "#moE6himSdiligAavoirc at he knewKboutR gave~ qskylark`;+ved irresolutelyBQ, sig 1onc 3twi#glafurtiv45nd @QTom. 2snu71was1ing  particul0"to Amy Lawr7 Dne else. SheArp pRwnd grew1and uneasyKc=2tri1go away, but 2eet8t+2ous:1car71her"he "to a girl*as"'s%g!--)sham vivacity:Mary Austin!  A, wh&"n', #to-n?Cih!#--*Qee me"Why, no! d1? W1sit(Ix!ins' classu1go.Xw YOU!? oit's funn!n'+D you>uw2you 'QicnicU%Oh!jolly. Whol)XMy maa}5oneRcgoody;  she'll let ME com)Hieill. T#'s<!any#AbI wantQI)!ev4# nice. W7Fs itbBAQby. M r1vacBk fun! YouM r1oysAYes,tfriends to me--or3be""he:4ed Ay calked d"lo   the terr$Tstormbisland[h9P#nr PNq tree "o flinders".c";rwithin EYBfeet6lQmay I#G]rMiller.P.1And 1Sally Rogers&+usy Harper. "And Jo[Aon, g2claiof joyful"s 0 ogged for invitNs"To]1Amynturned coollyPcstill Atook# 's lips tremblAbars ca1her;Y!hi$se signsa forced gayet con cha tfJ7?!ouny 1got( !on aand hi61rand had4rher sex4"x'xGsat moodywounded pride,qll rang roused upua vindictive cast Y1gav| plaited tailsik, swhat SHE'D do arecesscontinuedBflirO jubilant self-satisfacAnd he kept )Uarto findG1lacerformance. At las AspieEsudden fa-rmercuryb#bcosilylittle bench behi/BhousT 4t a27S-booklfred Temple--and so absorbed2hey #so?Atoge Rbook, 1didby 5 ofsq+lB besides. Jealousy ran red-hveins. H1hat  2for "waqcchanceQhad o  a reconcili. He callc-r a foolhe hard names a!ofD~#cr3vexd!Am tted happily1, a'y!, 8.e!rt= Asing 3butRtongu{8!it 4He Bhear+,Aas s BwhenZexpectantly h;!onu1ammh awkward assent, (/N sFA misQd as Awise !toaBrear! ,0q and ag%#ato sea eyeball"=1ate>!clryj belp itqit maddUL q5Bough"aw;  ]Thatcher\ once suspe(`iC# lthe living. But3did59 +Ber f%/3toosas glad#Tuffer^3haded. Amy's happy pra<$inA!e.!hiac g&,o attend to; s must be doneAtimeUfleetin vain--N chirpedkT`, "Oh, hang hi%k  aget rioXher?" r those 9he said artlessly !ou" """ chool leJeShe hax3hl, t. "Any(Qboy!"p#gr3is teeth yGH1#buSaint Louis smartd20and is aristocracy! Oh, c a, I lij1youfirst dayuWqaw thisa, mistAnd I 1ick.Y just wait_ I catch you out!9%1tak  ermotionsZArash+n+r= --pumme>hI1kic&>and gouging.{you do, du0? You ho',Qthen,?learn you!" r Fthe Qflogg'as2o 15fome at noon. His L not enduByD3 of4 iAThis jHtbear noAB thea distrf'Rresum) 1 in'h bAlfredI*sy"">!no#to,Ktriumph BclouG 3she/nterest; gravi absent-mindV-s followeGthenLR; two2ree -"pr!up2ear footstep" iba fals%;i Ashe bentire({1 wisbEdn'tjit so faVsen poor Q, see!loP2notV)Ahow,E exclaiming: " aO one! look"1s!"{1pat(Oc at la99S saiddon't bo| Sme! I2carathem!"` LBearsagot up)Cwalkq2. dA dro'alongside+s-}2"buRsaid:,2awa&leave me 5e, .1! I1 Shalted, won# waZdone--forCFaid }i !snooning #hej on, crytC!mu Z?he O qwas humO egQangry!ea bguesseE Vtruth Rimplya;Gn0nXAventRspitee)I". far fromh=be lessPDBdGZ !3g~to trouble withoutS riskTAselfR's spn Cfell^ 4. HMhis opportunitZ!ly.e !onLfternoon/T?&inKr page. ,pi cwindowm R#ou5vP. She startward, now, inten28tell him;~ thankful%healed. Before s half way4, hh1sheSchang$migi 4 of Sreatm!heS@C her came scorc9R:S sham|yvz6 ge,!ondamaged i's account*"tohim forever,Ohe bargainVIX TOM 1 at:'adrearyoa_sm Qaunt R k1 sh\-Qhad b tQorrow an unprom$kmarket: "Tom, &1a n  2kind live!" "Auntie,o2aved&e?4Ryou'v ! e I-vTSerenM,ran old softy, expectingAor!o ZL :g$atn0 2hat4,!loRbehol{ s'3fouf!Jot7 2wasabtalk wt&, I don'1 $Q of a9will act  that. It makes me feel so b [-go\A andG!L l of myself never say a word." Thisa new at  %  3nes( aLH!toueCjokeBvery ingeniouse *A mear shabby !He "2heaA"no5ken71 to,#4he IBdn'tvit--butCT2Oh,i#'!k. c0your ownrishness66T Lfrom Jackson's I?2 to $urt yoo?\:ASa liem<%91n'tC to pityk* Rve usXCsorr8q!knJ8was mean,!#I J CB. I s, hones1),. Ayou &W<ibme forI"toV1you'&us™(n't got p!del!th nkfullestMi} 2wor>I7bhad asta !"atY2you ever did !it." "Inde ' 1, a%--52mayOQ stir2H!OhT Rlie--,!do[QIt on 1kesPcgs a hUFbtimes *<a; it'sH0 F. I k,1you @?X4"at)"&me2I'dLW#it Z power of sinsV72'mo}you'd run eand acted2it reasonable;n #me  %Ryou g y 22, IFgot all fulRthe idea ofa' the churchI("n'GBh2 a$Qspoil$Sotpbark back in my po 1andjA mumkW.1arkq2ark 13we'+ d 1wak8qI kissee--I doL6linS%aunt's face relax[! t.Sness %inq. "DIDqkiss meM !Ar.3 su ?did2Dq--certa|ArmRz ~Because IBcobyou laBare moa-Band "3ZBds sz Aruth.* tremor inRvoice&K9E!!bexAwithbf1 o " hTgashe raqa.!goAruin$1 ja#T c in. T0 _vher hand< erself: "No, 't dare. Poor boy, I reck(+ #ed bit's a1!leBlie,7's such aQ1romaI hopeLord--I KNOW BLord 1forr_.Qisuch goodheartd"it3"wa'#fi 1lielook." ShexCawayRttood bya|b. Twic-Dput 21takA garUand t:refrained. Once m1ven1rhis timo3forN)3Wc}:> llie--i!et%1rieR." SoG3. Aa E, J7y"flQtearsix3: "Athe Bnow,}5'|'mitted a millionl)!"X THEREAsomeAunt Polly's manner"~!BTom,; Bswep low spiriVBhim lightRhappy6. Hp&A luc YBupon O8e of Meadow Lane Dmood+determined3. W|Bc's hes$ h]; Iamighty to-day,6I'm 9 ,#2 do!4ive--pleaseB up,S you?vDgirlKRA him<dnfully( face: "b3thac. 65 TO , Mr. Thomas Sawyer.i AspeaM 2youR!to*h a!pa!onCd stunn-1 noYnkh!ce(inIrsay "WhHs, Miss S&?"j[ ?$&it%dby. So$1 no(OQin a Rrage, 03He mopedAyardf1ingObwere azBand ing how hebtrounc%if:iatly en#erd 2R a st"y remarkQ5. She hursWbreturnngry breachcomplete. It EY$to Bhot 0Rment,s#AQAwait)Q to "02in,was so im see Tom flo\injur2. I;1hadany lingl!noQbof exprAlfred %,aoffens;2lqad driv=vaway. Poor girl dOrhow faswas near. The maMr. DobbK n͢middle agean unsatisu3ambDqThe dar!ofdesires was3#be a doctorqpovertyWdecreshould be*Q highan a village q. Every he took a mystmQ book>CVk and&$1 in;{s "no6.5Breci8"R$! t& 3ookJ#lo21key#rqot an utMwas perisve a glimp[Q@Bance+T came1boy8c theor-1 Qnaturqno two 1iCalik6t way of getting5ats in Base. "as1pas!by4Ddesk% 1nea~R door t3tX)5ae lockADrecious H  glanced around;>B next instantHOs1The title-page--Professor Somebody's ANATOMY--carried no informa/mind; so s+!ga1tur s"cau!3oncaomely engravW frontis> --a human figure,qk naked !CK+dow fell Apage}3TomA ste$inAdoor&fcaught tpicture!bsnatchs"to >aR hard BSdindpeEathrustfvolumej2tur@Ce ke  out crying'1 shand vexF. ",2are1 asacan be4sneak up on a persou"wh 8y'r+." "How yH2looS$ta?" "Y$Abe a  ;wfyou're&tell on m1#ohQshall) !! 1 be whipp ICwas 3%P astampe,!fokdRBE soU i!% *2'E*. %&and you'll see! Hateful^' "!"she flungthe housd*cexplos>\:still, rather flustereC1onsBt. P+ O+  !Whi"cu&k," aCqis! Nev2xen lick! Shucks! What's a#Sing! 4ClikeS$--so thin-ski and chicken-". 4Aof c4 # Iq)t$ldV3'is lA's o@Gwaysa even a<&|tC7? Oxktask whof%3his book. Nb'll answe en he'll doUay hekoes--ask firs\An t'wOns" jiBing. Girls' facese*9yMM2bonT1'll .i  hatight - ', p1any#ou.*!coCDJ'added: "All,3"'dQto se"inQfix--!er sweat i"!")4joi0gmob of: lars outsideC[ags  !nd:ol "took in Afeel rong interests studies% #hea 1 at gc side Broom !'sX d him. ConsiL&3alltT, he 4Bpity`B$et+2all1uldo-/"HeVup no exultd!lly worth[ n  \ %Qdisco@ 6#adeHH Sfull I own matterE9a~72aft "t.64&er lethargE *"Xgood the proceeding _! 3Tom"ge(&aby denrhe spil2inkCw  >/sSG:adenialr mn4TomssupposeV A gla{Bthat%sJmergency paralyzbinvention. Good!--han inspir4! Hk"ruXbook, spring thi)"3fly5NAolutAhooke$ont" i)was lostl ,rTom onl9{ Wsted , bQ! Toorkn Sw *O  Bfacex1. Eeye sank under AgazeLv9smote even Pbnocent/Hfear>1sil%B onez count ten =kAatheV.#raH npoke: "Who  book?" nNsound. On 1havxrd a pin,1a still!continued;CAsear-4fac|  for sign uilt. "Benjamin@,!tuS?" AA. Ane  pause. "Joseph HarperD5+;I uneasinessE2and4#sethe slow tor+es TFDscant ranks of boys--c ,ed!ur3 : "Amy Lawrenc,eA shak head. "Gracie MillerQ samerYLusan! 8his)rnegativ(2waslMA was"bling fromcto fooQexcitG and a sa!op_!of/Rsitua "Rebeccazc" [Tomhf#--I!Cwhitterror] --"]R--no,4(me6b" [herA rosmappealE?XAG29lik;Da%br(3prafcis feehouted--"I:"t!}BstarperplexitH6incredible fF3Tom!"a C, toHqdismembfacultiesk wYNA for=#to-his punish"=burpris gratitudB adosCshon64himBpoorv!'st Bpay /O)1 IBed b~splendor qown actv Sb outcr7most merciless fla DMr. 2had8,badminiBalso receiSN!ce"added crueltaa comm o remain Shours0ld be dismissed-- knew who #wa k]h;his captivit3don he tedious s, either$C6bto bed, planning venge jgainst ; ;arepent5#ol4"ll^ 3for 3'jq "ry8"thV1ingHW %way, soon, to !Santer'%she fell asleep at las's latest0sdreamily inRear--, how COULDbe so nobl23XI VACATIONapproaching),nKqsevere, rjQexact1han[,i!a .!shV on "Examin" day. His rodkhis ferul8! seldom idle now--)=&st # sUpupils. Onlabigges7 young ladie}e e twenty, escaped la #' Ss wer vigorous onO!; lC he \,K6 wig, a perfectly balQshiny=#, Ronly d'B ageq T of feebleJMmuscle. }great day "ed?byranny#waEc=face; hec! H)!ur?Ie least V2comTnQnsequ Y1boy59 air dayNp8Fz)1plo1 rezy threw away noo "to'  a mischief y a$J"im\r retrib8 & rfollowe*yCful vCso s|Qmajes^| from the field bad#stBtthey co2tog_Ԝ#lag7 QdazzlaictoryBy swaign-pa."'s(BCchem3askEhelp0s v`1deldRboard Rather's f]3K$giboy ample -rto hateFTd's wifHBgo o"!sitSuntrySew da~J#1to !4fer !he O Aprep f3forQoccasAA3by 8Zty well fuddl Q boy  the domini roper condw$G on A Eveh1q"manage"Bhe n[ <9Vwaken hhurried #toB. I!fu; "im!esHc arriv0+" iewas brilli' Cdorn wreathsbfestooDfoli!xflowers! s 1ronH 2 {d platform,< Alack=#? tolerably mellow. Three rows of benches on *(!si\Rd six%1in "c m.foccupi dignitarw1own)% aparentusTg left, backh citizens,Dba spac emporary5u@"th&Blars3 !er1taktexercise ; 1of S"he"drY0"toxae statdiscomfort; gawky bigRs; snowb_ X clad in lawBmuslHKbcuousl,ir bare armsir grandmothers' ancient trinket&2 biApinkblue ribboLir hair. A>/!tas fillKnon-participa.%2. Ac"3boy!upsheepishly recia"You'd scarce expecaof my o speak in public stage," etc.--ac5ing#ai-r Vpasmodic gesturech a machine mahave u csuppos ' a trifle]aorder."he*7safely, though cruellye}3g9afine r!offHD?dp! manufactured bowqD. A u1lis$B"Mar a+Clamb]#, Qgbssion- aurtsy,yher mee,ru!wn#ShappydSawyer ӕited confid o1int)1 un hGindestruct"Give me liberty orme death" speech1furc frant4Aicult  $ia middlit. A ghastly "-fbAseiz m, his leg5ked m=  to choke. True  1nif/!ir tterly defeab a( attempt at,it died early. "The Boy StoodC" BӘa Deck"!owPAlso 3Assyrian Came Down,"!ot{eclamatory gemV"rerd,a& f^ meagre Latin class ,Qhonor prime fea41ing"in,original "compos\ 3s" a. Each-!er: !to<qedge ofr 1cle.1roal anuscript (tis dainty)F"eqCreadQlabor t to "expreDpunc!1the.r had been illuJ;on similar  Sb befor^, doubtlessir ancestoremale line F nCrusades. "F[Ahip"wone; "MbOther Days"; "ReligioHistory"; "Dream Land";qdvantagv  Culture"; "Form Political Government Comp and Contrasted"; "MelancholrFilial LovVrHeart L#sp A prevalentY!se\ca nurspetted m|B; an>asteful and opue1gusf"language"; <qtendenc dlug inRears 6 ularly prizedphrases until+ Fwornx%3outr peculiRthat ZX CmarkBmarrlahe inveterata r sermonwits crippled tail  Ae eneach andby one E m. No matter wCssubjectG Rbe, aA-rac 7$ & quirm it into some as "r AFa" rQus mi} !ul*templateAaedificG glaring insincerid"_not suffi o1assYabanish  fashion'Lit iT to-day; it never will bex,orld stands, perhaps. #]5ll our l$2herD1 do$feel obligwAclos.!iru1ithkBrmon|/aill fi >#MfrivolouT  Dgirl1dongest9XQrelenhly pious. Butis. Homely truth is unpalatable. Let u2oK"!."QXfirstNas read9one enti#1"Is (n, Life?" Pgreader can endur_'bxtractNit: "I5common wal S life(ful emot!do/ERthful9ly"1warvsome an qed scen 2fesc! Imag is busy sketchingt-tinted3Prjoy. Inû voluptuous votary}TEsees`(1amiA3 ei ng, 'the observe4allrs.' Her gracRarray7snowy robes, is whir! f"uga1maz3joyous dance;E eye is b !es rY 3 is#st gay assembly.-BdeliIf"#quickly glides by, welcome hourRs for1ntrBintoe Elysia cld, of bshe ha2 g\w fairy-li eF !ry appear kher encharvision! 3newjis more charm}aBlastfas1nds{Aenea@ais goo߁xterior,#is vanitflattery3onc 1souqw graterharshly1ar;ball-roomCqlost it4sF%Rhealttaimbitt= Qheart1she bs away1Fnvicaearthl8s cannot satisf U1ing1theHJq!" AndV#or3so D!rea buzz of g/1to 3durB $, Qwhisp4ejaf"How sweet!" 5qeloquenSo true!l had closed jc ly affli e\enthusiastic n arose a slim,X8r, whoseK07' "C" paU42comMTpillssigestioX>`a "poem." Two stanza&"it=!do+ "A MISSOURI MAIDEN'S FAREWELL TO ALABAMA-qlabama,%-bye! I love1! qBut yetLzCdo I:+1thec/1Sad1, sQought(!myR~bt doth And bqrecollesng my brhRFor IAwandH|!th[wSoods;Have roamN a;Tallapoosa's stream53blisten, *ssee's warhfloodswooed on CTide Aurora's beamA "YeM8Ame I to bear an o'er-full4`Nor blush4urnmy tearful eyeB'Tisno strange% RI nowa+pm2(to0s left I yield; Qighs.[W|sand hom2min  is StateW1TvalesL"--F!spq?fade fas (1col ag3eyex 9eoen, dear ! BturnQISee!" c Bwere4few$ho $at "tete" meKl"bu "po S very|ractory, theless. Next/ed a dark-UBxionEIfack-ey Qhaire qng ladyQ paus2 im'vwJa, assu tragic ex$n Q " m~ d, solemn tone:A VISIONN2Darbtempes 2was5 2. Aq on highA+2ingr quivered; butAdeep0"na T heavy thund "coE-qly vibr 1ar;s]rerrific n .gry mood-de cloudy chamberheaven, seebo scorQpowerXted over itsAor b,allustrFranklin! EvqisterouYwinds unanimaM"th mystic /Qblust?3as if to enhanceBir a Q wild!#. . "At5 a$A, so Rrearyv human "mymspirit sigh@eQbereof,k1'Mye#iend, my counsellorand guide--My jop Qgrief,second blis[in joy,'RQto my1. S#ve^9o. Z 3ose p!s !d Qe sun9lks of fancy's Edekromantic , a queen of beauty un#qsave by !ow_ctransc xAlovevPsGAsoft 1, iqQfaile2mak a sound,"bu1mag0thrill impartedgenial touch, ather unobtrui< Bhave away un-perceived--unse4. A1 sau res4herf1s, "ic5s e robe of December,21poi 0nd]Aelemtcwithoub0Tg5two"bresentV3Thi;(ma)1tenB}h1oundwith a 5so v all hope to non-PresbyterianN  #!okApriz%1osi~ Gwas /Qto be sfinest >81.cTmayorvillage, in deliveJ  rhe auth6 it, made a warm speech i Bhe sQby faT"b "" !heE  that Daniel Webster well be prouit. It may be rel2ng,xthe numbes in whiz4aword "4Qeous"over-fondlegxrience referras "life'sS,E$upeusual aver`1Now}m,"1 alA ver3k1putchair aside, !ed9 !udldraw a map of America #A, toa"ci geographyoupon. But he 9sad busi] !thu|&y 8SQa smod titter S!ov*=!e '/ nB wasDset =Ato r !it:sponged out2Qs and=dbm" he only dted themQE!evn E&ApronGMd$)$hi'>J his worky(if@PBnot uput dowQmirthBfelt"al B wer #en him; he i| was succeedingFyt;\5uit even6ly increased.Q igarret above, pieta scuttle 1his|,@$is- came a cat,nended a$ q haunch a string;1had&!g V 4PEjaws=qrom mewDslowly de#Q curvwAward-Aclaw,swung down-qintangi!!irRxKahigher2 --the cawb six i"absorbed teacher's head--down, "$owshe grabbu2wigNher despEclaws, cluS4iw1nat7u ", " i} Yr trophy7" ibposses 1And0Qthe ldid blaze abroadx's bald pate--fo 3, boy had GILDED it! That broke upEmeet3boyavenged. Vacn  3com NOTE:--The'+"a" quotaS tpter are taken%out alteriBfrom avolumeqtled "P7and Poetry, Western Lady"--yj1exa%0݇Qecise  *agirl pQhenceEAmuch9 Aappi"anYcere imUs be. CHAPTER XXII TOM joew order of CadetTemperance, r attracN  1howw@ "regalia." H3misRbstai^Q smok9!ch,Aprof as longSArema1a m OQ he fn thing--nam&a1 noBdo a+" iZasurestO  3 body wanA!goVQvery Pv$b soon W!rm] q# aQc to drc)q swear;Rgrew %so:!nor jL bof a c6to display i8red sash kept himwithdrawing from . Fourth of JulT61;Qon gaat up --iC"A2worrshackle7 1y-ehours--and fix0Bhope? old Judge Frazer, justic)Beacewas appares'"bei/ Ta big*funeral,  o9an official. Du( ree days[;Bdeep+rcerned 62the' d Qungry1newit. Sometimese: "ra$--#heRventuj1get Chis practiseO.R-glasrmost discourag yJbluctuabAt las'as ~Amend then convaltQwas disgust9'qnd felt !ns&injury, too !haQsigna,tat onceq"at#Bsuffc relapBdiedrresolve kP! trust a mand@T+Cpara a style calculated to killClate^Benvy$1fre[m@!reAsome!a La swears Ors surpr 1dids7Qsimpl| hga, tookBaway Charm  GDqly wondQto fiIacoveted vGwas beginning -4&ng Cheav}M ands. He attempt$BiaryPLed dso he abandonedT?!rsanegro minstrell!s cto tow aa sensand Joe Harper+-up a band of e-r were happm1twonGloriousbwas in a failureWAit rFT&, encx ! i!seI-e&t! aeatestBAin tabrld (aT!/ed), Mr. Bento actual Uniteds Senator, prov overwhelYQdisapXBment Gwenty-five feoqgh, nor +Q anyw;neighborhoosrA circu qboys pl"J @#  in tentsof rag carpetAadmi ,@2pinOB;two for girls#ens. A phrenologisa mesmerizerI3wen1lef H8_Udrear "evf>=BwereUeCAand-'(1es,jDthey,A fews6so $(Bonly2 the aching voids between acae hard= Thatcher1gon}bher Co_ ainopleat!Bher ks } bm1sidaElifeP.dreadful secre*athe mu  chronic miseryєaR canc^ q permanX* 2aingnmeasles. wo long weekl Mprisoner, dea}1andw"Aings1wasQ ill,;O !no3. W2cgot up aU3andafeebly{-$"!achange3com./$"nd2 cr.rb* "revival/0 had "got *1n,"{Bdult"thyLbbhopingsst hope!1e s$ of one blesOQinful"- A cro(Ahim Qwhere9Qstudy Testament4Rsadly9- "deng spectacl_  Ben RogersKvhim visi6 #ooca baskBractE!huup Jim Hollis B calLs]KK{2ous0ing of hisA 2 as DningSboy he encounti!ad2nother tfV Aon; 1hend ion, he flew for refuge a) F bosom of Huckleberry Fin! bwas re+Scriptural quotjirw_ re crept!an!be"2lizat he alXA allw!st4and .%Bnv=&st:Adrivain, awful clap ]/blinding she81cov!the bedclothe"ai! a horrosuspensehis doom; not the shadow of a doub  is hubbub was 1himrSdQtlm!thtgbearanowers aboveMQextremitp Bendu2h.i the result have seeme1him!st[ApompiRammunp Ca bu3a b(of artille+;b incongruou' E3 up+n'2 asrto knoc+ Bturf! insect likeB. Bbtempest spent itPcand diQout accomplis9its objectc boy's bimpulsgratefulreform. His +EwaitC"re>bbe anyDsK"dadoctors were back;w4hadd 3 heU!baO!is2!%an})ge . ehardly4D1spa#"reing how loneWQstate companionlesAforl@oPdrifted listless Btree+p41 acuqas judg a juvenile courr1cat her victim, a bird and Huckup an alley e@ a stolen melon. Poor lads! they--tTom--ha7E SI ATkhe sleepy atmospStirrevigorously:3e trial4k!betAsorbWtopic ofe talk immediately xyBaway$itArefeQO ; sent a shudd his heartroubled consc i[5LQpersu2himBthes#rkr!pu tqas "feelers";1seen-Rld beaqof knowz n -  Fnot be comforc2ae mids, agossip1kep(rshiver e"Hu##a 1pla+!a Sm. Itb QreliedbunsealAonguwhile; to divide)iburden[l87r. MoreoqBhe w/to assur-m discreet. "Huck,1you" told anybodh--that?" "'Bout wYou know." "Oh--'course IZ"n'Never a wordLAsoli2Qword,|Qelp mat makes you ask:qWell, I\ aafeardbVWhy, ?B, wen't be aliv$1dayQ #go out. YOUt2TomWmore A. AfnQ pausnQ5n'tL1get!to\,"Q they"Ge[!? !if half-breed deviLzF me z) gO$y ain't no diMn>Uthat's all(!&n.twe're safe %   we keep mum. But let's swi-1gai1ywa'!Qsurer}I'm agreeS# ry swore? , solemniti"%S talk,yQ? I'vBrd al " "Talk? Pit's just Muff Potter, $the timepReps mg!t,tant, so'sd7A'ersT{"ju9+Q samebgo on p reckon he's a goner. Don'gfeel sorhBhim,AimesqMost always-- *raccount thfA don %ur. Just fis 4 B, toSoney drunk onfSloafsFiderable; l-!we2do |MBwaysu&of us--pr s <+Blike@!ki?PE--heBahalf aB, onre Krn't enough4 2two"lo eEQby me?sqof luck!meBkite"me,knitted hooks%o my line. I wish w"geot$u" "My!&"n')W. And besides, 'tn't do any=;'d ketch{ AgaincYes--s>aI hate;ear 'em abus2 so the dickens6"he/fI do tooL)I[2say&toodiest i ip n !!an ver hung befoO1Yes=y+%7~Qif heK)1frery'd lyn^A'"it'" The boys]"aQtalk,Csit broum1. A# twilight drew #ey themselves ha6 * leAisol80Ejailz=an undefinp8d; z-m!clow;!irAicul+T But =eno angels or fairies i! tYss captiveAboys#\!ey~Qoften%!-- AcellYring andk qtobaccobmatche-;n gBfloo% rno guar"isl2tud /Qgifts Q smott!irL "s --it cut deep,lx@ 2cowASand t!ou2the Sdegreaid: "You've beenQy goo1me,--better'nw 1elsthis town1I d+forget it,Q. Oft1sayrmyself,I, 'I us\AmendMCoys'.Bings:Ashowfishin' place01befD4Bat I1 2nowjcve allaB oldthe's in92TomIQHuck b--THEYP)" '5-!them.' Well, "eBwful$"--and crazy  #--w athe on*1y I!un2 itnow I go:Qswingxiit's right. RighABEST, b--hope  we won't4at.! make YOUl dbad; yCed mh<say, is,p2YOUG !--m 3youSStandR er furder west--soSit; it'smBAee fw"lya&C5 Aa muP Rtf1non$ ae heregyourn. Gooda w"--"ly. Git up on Hother's backYl touch 'em. = Qit. S}`qhands--}1'lln1 th-Abars mine's too big. LittlBweak--buyQ 3lpel ^ 2shelp hi*.iy"."!home mis CnBream#full of se next day{e fter, he rt-room, dra@. irresist`,(1in,tforcing( to stayF| 1hav (1qy studi~a avoidpL"ch4FKTkelet !atdD Now,7#A us t** b--telleown waEskipp,h+sbegan--}AinglRfirst"as"rmtQubjec f  easily;ln! sdceased buP own voice;&ixAhim;qed lipsbEBhung!higads, ta]\no note of"d, rapt1ghaCR!on 1ale#q straina pent emoq q climax 5boyJ "!asdoctor fetcheETboard+"ag fell,@Cjump-P?1andCrash! Quick$Cighte}%Cspra|aa, torem1alloAsers gone! CHAPTER XXIV TOM1a gring hero onc>e>%pe2old-Aenvyhbng. HiR eveninto immortal prin;* paper magnyhat believe be Presid Byet,  * . As usualfickle, unreask9s % to its bosomBfond3 Alavi@XRas itb} !&Bsort of conducO&o"'s"t;fIp'#noJto find faulQh it.!'sv: of splendor and exul2 J2hiss were s?.  infeste=s Ddoomz deye. H!y aUcould', 1boy"tir abroadafall. Poor HuckiH 1samI"wrrand terror "ad*p7!ho!or* Awyer Qgreat V 6and4sor01hara y Jumight ldnotwithsta_A's f!sa!im+QZyq N.#4afellowDhe attornepromise secrecyqwhat of? Since }Sharasy![2 Bdrivp%c c'&Rse bywaad2lip ^been sealnsdismaler;most formidab=aoaths,a's conchuman race`well-nigh obliteratcXDaily2'"1madA gla\0Rpoken%!Vly he wish%1up " c. Hal"imZS nT 3be dVa othercY@ >+ He felt sure heMbdraw a+again until1man92dea,y@ Rewardselvcountryrscoured"no2 Jofound. Oose omniscind awe-inspi^marvels, a detective,1"upoSt. Louis, mo"ar@S$shhead, looksort of astouQ succ  3sZb craft!lyu=!ev1at ' say, he " a clew."n you can't hang a "clew" for#soZoEgot ]qnd gone8. s-63ure3was,. R slowdrifted obleft b Cit a"ly qened we"of apprehenV THERE comesVqrightly{1tru+26_)has a rag1sirrgo someqand digRV}1sur3is 9suddenlyU3one{e sallied+R Joe ~Bfailed of8. Next h<;!a %gwTtumbl@FI2FinRed-Handed." qanswer.m3 private-#op$e matter to >{kbtially`*Awill>  o take a hanwy enterpri RferedBtainnd required no capital a&u superabundanc)Rtime r rmoney. 'll we dig?" sair. "Oh,5.Uq." "Wh%D i[ e?" "No, inde  /a. It's-"in=y bicular5 --/ on islands,Atime@ rotten chests!envaa limbSn old@Bree,0c;falls at 1 mo aQfloor) ba'nted0Who hides iWhy, robbers, K urse--who'0? Sunday-school sup'rintendentsXIknow. If 'twas mine I Cide it; I'd9!nd1 a _&1o;1 I.l"do!XUf and leave it "ADon'y0Cy moA!No y)k,w$B#qy generUQforgeT 0q, or elJey die. Anyway, it  t 1a l "im gets rusty;!by- !bycbody finds<yx  Xtells howAthe 2--a  o be ciphCovera week because it'stBsign hy'roglyphicjaHyro--H"--picture>qthings,]Qknow,1seeTmean u1Hav1d got o"emas, Tom|!No0Well then,: Afind #61wan^ esbury itas or on a"ea t0Eat'sAsticTout. *!'v ed Jackson's I}iwe can tQagain/R timeSy' -1 up Still-House branch,=qlots of-StreesnAload1'emI#ll Htalk! NoTA81ichJ1forG _1'emI1Tom/6#llll summerf 2? SI#a brass po-a hundred dollar,"llAgray2 fudi'monds. HowaHuck's eyes gX1!bubPlenty4qme. Jus R gimmM Iand &noT" "AT8~QI betI:k!foff onDb Some 'Qth tw3Rapiec"#reWaany, hn2's <six bits oHvaNo! Is1 soCert'nly--anybody'llyou so. Hever seen on5E!No7I!nOh, kingsA sla|$S_"no5$I reckon@i!if3wasto Europ!'d.Qa rafr'em hopGr b" "Do1hopBHop?_-u grannylN2say>1did CShucks, IJ1ean'd SEE 'em--not V Yto hop for?--but IRQ 2seeV3scal &, 28$ aBLike!ol]pbacked Richar* 2? W_2his,Q nameRHe di'ny"1. K!but a givenIN!Bu.yiy like it-R 54D,Xa niggeroRsay--t Eyou  1irsn< S'pose we tacklj ) hill t'8side ofjrI'm agreea<got a crippled pickea shovel1setwir three-TtrampV*"hoCrpantingE]/7T downH2shaa neighbo!elq#- smoke. "ISthis, Tom. "So do I 2SayP$weCtreaF#re 1do 0your sha ZBI'll3pie5MU 3oda2day1Rgo toV&fSlong.0aQa gayrnbsn S sa"tod h AlivebM1!byy#OhP |any use. PapY CcomemFo thish-ybwQR2 daR\5as clawiIurry up,ZIjhe'd clea3out pretty quick.tn$buy a new drumua sure-'Whearts jum8ao hear[strike upoFyb"$#ed3dis <+Aa str a chunk. AtDE5Tomv -rxrbut we CAN'T b&. We spottv)AshadX2bo a doI$tF1the6re';"tthat?".wpAguesoyH Menough i1too5> or too earlAHuck 7ped .tat's it9Ahe. !'sDveryLLFaone upBcan'| 2thea1sidL$is` ',8C%Y#ofy%> ;2 a-fluttY&Zbafeel aP$'s!mNZ;'AfearTCturn)%uz'V front a-<Qa cha I been creeXAll o1ever since I DBI've=smuch soAHuck6y mN put in a de&# why bury. e, to lookGLordy!" "Yey3 7If !toRPpeople. A h1s b!toDintoQ'em, "L" "r2stiRMup, eitherjf2onet! 2.Akull !ay" DCTom!2wfu"it "is^U3a b,QSay, <lp~ d"trARs els?%,  $weY 5bconsid|/;dJ:The%. G  4s.c 're a dern sight worse'n  D lVN,lyocome slid rshroud,nUnoticApeep shoulder3f a:%!1griqir teet"Ra does. I Bn't qsuch a NPa--nobody 1Kt2but, dUtraveU 1 heu_! 1But <{#goCYthat fA norg 4v emostly M J#go5 Qa manaen mur, anyway | E"erODseen5 # except b--justLBblue'Rs sli& q window regular Gsl![Xflick5acan beu4h!cl~Qehind Irs to reason. Be1any2butAs us<pEDcomebP`f, so wl!us3our?7a<W$ df^#I it's tak@A y(qstartedffhy) TAmidd- oonlit valley bel[em stoodR""M&!, 4ly Ra, its S=s*ago, rank weeds she very doorstep chimney crQ)qto ruinq  -sashes vacant, a corneraroof c/!in1 boz*, half expectAo se. flit pas%Qindow n1ing 14 as befitte8 b:m y struck far of\Rthe rO Qe haua wide berth A*qway hom. r,Boods6 earward si_j Hill.4VI ABOUT noo$ 2 daNgG4tre=Ahad ffN"ir$Q. Tom impatien#go ;( Qwas mAablyc $alC%ly Lookyhere1 dowday it isbmentally ran%$V3eekhen quickly liftedG# a2led 3m--WI0once though,iE\un kKrR it pE conto m` a Fridap   can't be too careful8 A 'a'  1an scrape, :ing2Won a z MIGHT! Better say we WOULD!"'slucky days= $"ny BknowbP1YOUf2the:f 1it ;AHuckRn1said I was, did I? AndT all,.O_d a rotten bad3msdreampt1rat"No! Sure sign ofB F"ey{s'NotCgood% WL d*1ign  G,-2. A-_Udo is  by shark Zi Cdroph}5to-{ wplay. DuRobin Hg Who'sqWhy, he greatest m"evrEngland:the best. HGca robb Cracky, I wisht. Who did he robOnly sheriffs bbishop Crich2 RkingsR=9Q But naver bolloved 'em1divQ!upx 'em perfectly squa-h2'a'r Sa bri I 3youW[!Oh9qhe noblaaOT"R was.!men now, I can1youN R lick-can in ,a one he4iedD Ahim;NhEAtake!yew bow and plug a ten-cent piece"c, a mia3s a YEW bowIM /t7w, of cours.d if he hi| Bdime`Aedgepould set aand cr(2d cOB'll play!--nobby fun.AlearQF m% t\dfternoon, nowmy1casQ aa year=2eye#up qnd passs remark .1orr+prospect9Iibere. A5suna sink sey tookEway 5 aathwar| cshadowN6e,soon were buriAITsight8H(- Y On Saturday, shortlyV^  R bHnT4hadd&Ua chaCshaddEGir last hole*;]great hopeaGmere<oIqcases wz "pet#ad )(upafter getting down~qx inchep Y-O an some d1! aqand turZJt a single th{bshovel' Afail !isO a, howesDc+ BwentTfeeling jvshad notEds fortunehad fulfillep requirements <%of<71-hu(6. Rreach T 1{ so weirPv grislyBsile at reign^Rthe bAsun,{ bSdepre$Cbelines!dem"io he place[(3fra,# aHM Qventu7 ty creptD#do?!mbp_VT aw a weed-grown, floorless room, unplastx;aan anc CfireVs, a ruinous staircaser#er%ud hung E#nd abandoned cobwebsn#tl73ed,MC ened puls,s, ears ale\BcatcYDXRsoundAmuscAenseQready instant retreat. In a+Nfamiliarity modTReir f Qy gavm,Qtical#iYsted examinC, rather admi+[bown boƑ Qwonde"at it, too. Nexk1up-+isMqlike cu]!goqdaring ; =! abe but I&!--L,=Sto a 02and scent. Up\NBame 53qcay. InpJoC a@d mystery"qa fraud1 inCr courag4xwAH4n hM Lo go down and begin#1hen}BSh!" CTom. is it?" Huck, blanchingrG!..re!... HearDa "Yes:#y!(!run!" "Keep1! D you budge! 're coming p! tcr 1doo #stC./Rfloorto knot-hole!th bushy white whiskers; long hair flowed from u!hiRbrero dGe green gogglesec7'Cn, " Xa low voice; @#sa gr$Q, facAback{sthe wal12the=er continued ^ s. His mann\less guarF{0words more distincFLproceeded: Q, "I'!it oB 5andi,& dangerouDR!" grTthe "e dumb"A--to#svast su?boys. "Milksop+2his~ 2gasQquakeEwas O!'s +<!swag we'veAleftr--leave it( &'v !'B. No2!o i.f!wet south. SixfCmDfift5Qver'sDto carry%eWell--#r EKG m No--but I'd say(j2 us#doe9:Alook; it may5(" bTI,6!e  J!! ; accidentsi !B; 'tY$inu2ver9;i6f%l[+qh+qit deepDGood idea !thrRqwho walv Qcrossroom, knelt#, gv"qhearth-/atook o9A1bag Q jing?qleasantLe subtracW9Qrom i0nڼcthirty#Dcs for G"as+6for8e latter, #s <,(Q8owie-knifeUforgo<,bmiserig$an@. With gloaq ,A mov7q. Luck!f splendor of Qs bey%sll imag+!qETmoney/Ato mcalf a dozen rich! H sd1theaiest a !esrNDabother uncertainty as to w44to }2y nudged each ;--eloquent)r easilyRstood simply meant--"Oh,you glad NOW we'rbB!" mVTknife%Uupon . "Hello!" C he.?2sai4Calf-e"plank--no, it'sy!x,4Rlieve1--b`!w 2see<Kfor. Never mind, qbroke a3 [2hisWbin and i p3ManDU  rhandful8$ingold. Thejb abovebas excW cmselveY!as delighted.NwRquick4Bv$ban oldM24over amongst >#)5sid"a--I sa5#a 74agohaX|iaBoys'5andn X1the$b, look5ly, shookUA mut4 toM3  5use5Abox aoon un$edXA not *R larg!#wad2bou:Bbeen+dstrong5the slow>s+Qinjur c|5the" ain bliss3. "PardrthousanL Shere,p. "'Twas alwaysX Murrel's gangCQbe aruone summer,".stranger observ53; "vs looksPHI2 sa* sNow you $neRjob." Ʉfrowned. Se: "You# me. Leasx&k"lla A. 'T@ robbery alv\ REVENGE!"a wicked R flameBhis GR"I'llyour helpRBWhen finishednn Texas. Go homH<NT#anK3kidM1b %0$Sell--Bqsay so;ew  w dthis-- k Yes. [Ravishing overhead.] NO!- e great Sachem, no! [Prof[distress;1I'd---at least4 \Smean =but Tom, si%1nlyhad testifiSVery,mPDfortBAalond! Compan!be a palpCimpr5, h . CHAPTER XXVIId adventur4"ayily torme RTom's5s . Four times hE!s !atSFnd f6ait was:rhingnes5igers as  !hi wakeful4bEfAt bae hard realit'Fhis 1. AClay |AmornO(1ecaincidentsJND, he noticed%~dseemedL4ly Hand far away--someD ;3had#tworld, MfAlong " b3 :n i5him u itselfa$3onetrong argumentW Bavorj is idea--namely,sc quantDcoin2fAoo vkAreal Qhad nTseen !as in one massShe wa1all "ag"st in life,&Aimag= call re\Os7!s""  " were mere fanciful formCaspeech Zno such sumP qlly exiEpposed forf w"so= a sum as a 6z be found in actualy one's Ԁ" Ianotion treasurbeen analyze.yxy=Ansis 'a areal dgand a bushel of vague,id, ungras{`A. BR^K"en Ssharp!clearer (Vattri !inTAthem?h so he"`1himk1leae(impressi6q#no2a dream, a )isQsweptg:~ snatch a hurried breakfast!go2fin.ik e gunwalB a flatboat, listlessly dang+2t !ee3"atbs2ingamelancholy. TomC&2letslead up@1 su e did not do its1be 2q `o!xEGelloylf." Silence ab-om, if we'd 'a'Y 4lam' a"Vtree,0!go D. Oh$! 1fulF $,Somehow I most'x. Dog'd if I ." "What!K%Oh6ing ).U"en"QDream! Iymss hadn' down you8)1how  Q!xhf%Deams|2allpL#--()[tch-eyedZ 1sh l4 gom*!thR 'em--rot himm1No,_a. FIND! T /1Tom#llXhim. A fellerq ~3one Q for a pile-- a2's lost. I'd feel1ry shakysee him, anyw+qso'd I;2I'd,2 2z#'Aut--&s < 1--y95N'Bthat2&7/!ouAit. !dofreckonB"oQtoo d62Say--maybe inRs$'"Goody!... No, rRain'tfv5, is one-hort!wn3 y=#noq,@so. LemmkKS Here r room-- QavernQ know;Qtrick s3two?s. We cansout qui You stay hereU,zI come." DAoff c1caracHuck's~rbpublic#s"as G!an hour& EbestNo. 2 had# a young lawyutill so-. In the l&astentaa housek! 2#a 5 -keeper'sr2son  kept lock$)ll3tim82he 4sawq go int W!or}(A exct;Ymny particular reason> x1gs;Er Come ' BsityD8bfeeble98wVe6r by ent"Ding % ae ideaC"roG "ha'nted"e  r a  !re[) BwhatOYD'Kvery No. 2"$af&/Qit isE$. ?C youqQto doNE_(ngE2tell yous$do "at" icomes out J1los )ey e!a3?Qtrap Jbrick stor"`qet holdmdoor-keys1nip-of auntie'=,Bdark'"goS ry 'em. And mi,n, because he E#!to/|2tow 4spy 3)N#a "to 6youjyou just fGQ him;_Rif he 2 go >"1laca"LordyI !fovhim by myself+hsit'll b%", ov"He\Dn't B youRdid, b4he'A any' "ifU8n. 3o-- 1YouE<cBdark!. 3'a' out he coul f< #ber,&DOCs so{1; IP, by jingoesw"'re TALKING! Don'7|bweakenaI won' sI THAT#1TomQILy hung a e neighborhooo{nine, one watch52he PAat a ="K1thePdoor. NoF"orN Rit; n%aresembp2the 5ard=3te#Th promise]`fair one; sowent home`rat if adWAegre,Adark1cami AcomeT"maowupon he would slipthe keysE aclear,XmAclos2s(Tretiryan empty sugar hogs0welve. Tuesdac/&amE. Also Wedn/Thursday bbetter8"in$.sf0aunt's old tin lant 6 Qtoweldrlindfol 1ithh? <1 inp-'s began. A WB mid#v!upB2its1s ( !s 'd"s)!pu)*%02had Eseen+Dhad / }b. EverrV,3iou"Bblac5of SreignA peruQstill#waVbruptedby occasional/)#ofAt th<ggs1liti n~,=tl: Bowelx&wo2rs D A glokw>y.stood sentryrTom fel3wayZTjz  !of8ing anxiety$weighed iga(a mountainh$%sh?ra flashH$ C--it.f"en!buZO6ell- alive yet. I4s1Tomdisappeared. Surely"us Ded; &A was7`+!rtQaburst #D'Band ,G'1 In4auneasi L rdrawing-DrK a; fear rdreadful ] $/1ari1pecm0some catastroph 2Atake 1792not&to,]$heUable to inhale it(imbleful- TK$ar Athe beating. S1Tn"ofh%tEby him: "Run!"he; "runAyourt!" He needn',Q repe drit; onc ;#mairty or forty miles,RrepetCwas -3. Tj!tor  "J1sheʁerted sl#1er- e lower en/the villagxa By goin its shelter]Sstorm xrain poubwn. AsxJ] 0AHuckwas awful! I t3twob keys, aas sofI R; butsto make of racket=rdly get myRso scBT1bn't tuVck, either. Well,?!ou.Ticingkboing, I tookcthe kn!A ope@e !H&E@R! I h1in,!sh5fP, GREAT CAESAR'S GHOST What!--whatQ'seo1steFonto's hand!" "NoAYes!A#Ras ly s%asleep oARfloor4?Aold 5"ey his arms sprea[d1did Tdo? D0Bke u91 budged. Drunk, 2. IjUgrabbBAowel F+usIX'a' thoughS33tIx. My aunmby sick3alost iM A"Say,1box!diw@o_00.-}44 /8 .:ea bott|Sdtin cu 6 by(!; I saw two barrelslots moreUs S.u2now'!Fmatt'3at R roomTr!it mG o1ALLaTemperTYs have got aeC, hepd[3Who8u? But sAnow'Rightyt 1timg&ifqb's dru""Ithat! YouiQshuddIEno--"nom5And-B not3. O1  alongsidf, :u'< three, h  -&@oaTp*for reflectioZ+ S:38oky82les#tr 1 an#e}wwcR Joe'5'reQscaryhw eSnight# bp"su2 go  "orbwe'll Gbox quicker'n nJV<the wholBlongj%ido it 1too3you"<Ather4$"A= bill. A.v!to{"tr0Hooper Street a block EmaowWRthrow:bgravel=e0 3bfetch 1T"Agre01goo'Awhea*B"Now,  T's ov*bgo hom2gin" , %Qcoupl" +2"go61will youe!I TJ]t5#Ryear! Ev "damF&st2allIawooo[nǑ' hayloftZTlets nqso does pap's nigger man, Uncle JKA toteex  B wheahe wan`" t}JA any I ask him QzQves mGiBsomeBto eWhe can spare  !ik\r, becuzP'[" aL Bwas 3;him. SometimeQset rdeat WITH/1But  A body'sv!thwhen he' sr: 1n'tBas a steadyd-wXK,q"le.?A com hAS's up2'!, Cskip, @*."*IX THE firsR1earQ4QFridan glad piecnews --Judge ThG's familyL*7- before. Both 9o &Bsunksecondary import, and Beckyv the chiefCboy'="esSsaw h%tad an exhausi&1pla "hi-spy"c"gullyu!" $da crow2ir S-mate1day^scomplet[DRcrownsa peculi9satisfactory way:!ea[Aer mK to appointnext day foUlong-z1and\-delayed picnicfshe consentechild'>boundless;,Xore moderat.R invi*slAsent^s sunsettraightwayA AfolkLn4Ra fevapreparu(bpleasu6qanticip6's q enable90" ap dntil aQlate houh%%:vt!ofd1ingO4's s!an(ahaving to astonish1nickers with,2; b\3was$"oiNo signal c'vC. Mqcame, eBallyby ten or eleven o'cQ giddq rollic!c;/!ga  4_s -ro.UQustomelderly peop2 ma#;p$*!ce2ren@sed safe R unde9AwingAa feh"1dieeAe# gentlemeqtwenty-  sreabout1oldqm ferryboatQchart;t7! g<.flJ9r main sg Cladeprovision-baskets. Sid1andato mis/ fun; Mary remain!hovBtainT9nTMrs. 6 "tob, was:d7?oBback lIaPerhap H Astay   eRgirlslive neah"-lQ,c !y aSusy H,q, mamma+AVeryO. And mind !bey%yourself3bmR9T." P,"trQalong` 1: "Say-- 2you8 ntQ'Stead 3Joe2's *SclimbE!up AhillDstop` Widow Douglas'. She'll ice-cream! SsoJ"os Ai!--|+Aload8"it4sH#be t&!usg"Oh[ K/2un!?=nC%ed3But2illA say How'll shH6Rknow?^Q girl!edidea over a1r reluctantly(it's wrongK3--"shucks! Youg ! k REo!'sQharm?_sN1nts[!hao '"Bsafe4I b 1'a'" 6if IAwoulT splendid hos"itaa tempP 2baiand Tom's persuas02car+S q. So it>u Qay no? anybody?t 's programme. i1 itv(!rrJM)^7+''XAgiveZ ;took a deaV%s!ofAs. S"het&I"tolmfun atAnd why sh1he 5!it: h"qsoned--/c! W, so Ti2mor l^>o-night? T6QrA eveV 4out6theM1, boy-lik2 determined to yiel +5Aclin Tnot a{9t Qk of 0ox of money5  day. ThreeVbelow >EboatayAmouta woody hh& 1ied|3The* swarmed ashoreAorest distancescraggy hxs echoed farQshoutDand 95theØ1get!ho " Egone=y mry-and-barovers Sggledao camp31ifi th responsible appetitesVt destrucHJ" "L>2 feoC!reBFFing ( 2resbchat i2shaspreading oaks. BAsomef[ed: "Who' the cave?" Ever!wa5$. b of ca \Bproc   a general scamperhT+x0' hillside--an opshaped likO A. Its mass׎2ake&& !unbarred. WK small chamberM Aly a2ice" w0by Natur% solid limeston w 1a c& rweat. I1romJmysterious!t %erdeep gloom/look out upr!grKC'"sh--""un?1O6!ve!UDly wore offdQrompiDL2ganjIcment al]  Frush2ownit; a struggugallant~f1ed,62ursoon kn)/or blownlad clamop and a new chaseB3allQ havex(ndlrocession (!fiv(eep descenW4ain avenue,p!fl0qing ranGOVs dimly reveaYf!llqrock al5t1ir er of jun sixty feet overhead. Thisnot more than "en?Cwide?&nSstepsy%ill narr crevices bran@!from it on--for McDougal's`Rbut a%D7imepqraft.  blready.w's went gliW# p a wharfCAhear!noise on board(   C3as $usually are whornearly cto dea.AwondnQwhat 1de:Rstop w<<dropped her88'put his atten *rusiness`Bclou dark. Ten eKf vehicles ceased, sca) abegan ,#nk !ll 2foot-passengerkp |)1 be$itt)l <2lef| = qwatcher qthe silae ghosts. E  Swere /;/ Qevery$A$it1see weary long 2:b)u3},ed. His faith wasB4bing. Wvy use? "reA Whyk)C? AFfell~"ea;&l U instantQ Bdoord*^Tprangqx8$ Ti two men br,%onW- z Runder!rm0 ]Cbox! So sto remoE.Bcall Tom now?Ibe absurd--1en  get awayq #$anc7EDNo, c stick1!ire!foAthem<k5truP for security^discoverQcommuG3Rmself#*!ut Eglidg 2beh!e men, cat-like,qbare fe~!ll_E the8*5far&!noqbe invi  y |GP q blocks0n^ left upJ2ss-8y?"E,!qcame to% !pa}1Cardiff Hill;5Ctookfthe old Welshman's Whalf-m(hi-1hes!ng Qclimbward. Good, 5*VSdury itold quarryC) "stfa &-3on,b summixy plung.T7 1run 1ook whe pistols wekf#I Astop$t..Scome now becuz 7# 5it,7 ;I:lF3 I x1wan7runo}m devils88! i,2 deUph2hapAdo l?  Byou'aO1a--but +b's a bM!e2you:Ryou'v^Fyour=A. No"y U Adead--we are sorryC|#atCee wiqright w!toq#ou6 Rm, bydescription #weOaC = !we?RfteenTnAm--dis a cellard2was(sn I fouE sneeze. It wHmeanest kin16!lu " t3o keep it bp use --'twas bjt!it(#I iR lead/ 2my :3theR star-ose scoundr Q-rust*6! pbI sung"B'Fir!!'cblazedtt5he aqwas. So".  2offrjiffy, svillainwZ4N  a%oods. I B we eatouche|mydgAot a y4  bullets whizzed bdo us any harm. Ak!we9 the sou$Tw at chas2entS }!tio5_>ctablesgot a posse fH1offuV R bank&Cit i+qsheriffaa gangE bea8}"My}!.\XAsh wz"A sor2 ose rascals2H uadeal. But you cy  dRlike,euY2ladQpposetOh yes;JAown-(and follc AthemSplendid! Db2m--d BOne'B!olfdumb SpaniQben a*;once or twicQt'oth[sa mean-", VTP men! Happeng Dthem1R back2one 2andoQslunkR. OffAyou, 8ellfA--ge to-morrow Y Y"2depS!1. A__qe room   : "Oh, ptell ANYbod bR! Oh, eAG_ gByou -N%credit of w:1 di"Oh no, no! DVA!" )B men g  o said: "T2 7w Cwon'B2whyoia#n?  explain,!tothat he al Aknewn w"on3 Ahose!+4manUv 2anyHast him Juworld--c& for knowing it% ?d secrecy3morW1How&se fellowsA? We!ey Ding &usea!t #ramed a duly H rep -S lot,--leasyrsays soI5see)ragin it@ =much, on #!inx }3tryQstrik a new way of do7"ay u ' I,BleepQso I r  up-street 'bout midf a, a-tu~fg - AI go old shackly brick store by WP1, I3 Red upO%ll#2k.  %bcomes fQtwo c B"slf0%lose by me,+1unddreir arm'( V y'd stole1OneAa-sm3b one wah, !ri.s\ !me"igACt upBfaceIy og 1ig - eA, bywhite whiskerQ xT `ua rustyo a." "CmDrags ?Cis staggq5forA !n ?5Aknow Qhow i#msCIQTJy o52you<Fb'em--y eiO&to| awas up8y sneakedsso. I do$!'4+1iddDstilG& $ d:# JgVe begK%heX swear he'd sp;rr looks'as}2two  What! The DEAF AND DUMB ma8ia4at!!'aderrible mistake! H63his.jC Ru>sthe fai+i2 whNK smight bQ1yetdtongue/0@$to in spitball heFr do. He several efforts to creep!of1scrape, R's ey 1mh["bl5 9. P  ,be afrai!me 6 hurt a hair o qr head v3=I'd protec !. 1 is ;#leAslipout intend+ D. up now. YGEthat4 K q. Now tAme-- m S it i"3 -- a betra Alookit!ho51eye Qomenton bent over 9ear: "'Tab--it'sO'1 Joz ) gjumped chair. InWQ 1ll ,pe 4you{m#2ing#and slitting noses2wasown embellish 3men3tak1sorYrrevenge\"an #! a different matt242q." Dur7B&:alk! c Y 1 sades (h2hishad done,_ C#!d,^a7eqexamine,its vicinity AmarkP Qblood11y fnvut captured a bulky bundle of)Of WHAT?" IfqBwordBbeenn 3hey leaped withcqre stun0O!5AblanBlips]!-were star1ide3Qreath$ended--wao! )tarted--st?+in return--1QRgs--fiv1ten%!end i<f burglar's toolsY4,G' bMATTER sank back, pan5deeply, unaEably !eyt/m gravely, cur!V--and= NYes,appears to relieveB Butcdid gi# 3urn9!YOU expecBwe'd2?" a \H a inqui *Q havenfor material$ aa plau4#-- suggesteR?elf|!boadeeper --a senseless1y o~dK^/!noq+ to weighiokventure he c it--feebly: "-+T books, maybe." Poortoo distress!sma Cqed loudfjoyouseb detai$.Ratomy1hea Bfoot%b by sahat such armoney in a- pocket, q it cutoctor's bill likM Aadde!olG!p,y2re Z !a5Byou awell a bit--no wo8aqf #of8 Z'.*!ouit. Rest6Rsleep6Afetc2all_#brritat<6 heaBgoos!ed{! a)!icM!esf"aroppednBideaarcel b%.K%2Avern]9. c talk 3XW ahad on%rought i3"nod however "ha"kn/ bwasn't!sot%a qoo much:Helf-w!Bu![ 4'2gla@. Shad hnt!no4 beyond all qusnot THE,Oo mind was at rkexceedingly comfortaban factC Q drifbjust iD dir_`Anow;WA musw ;) in No. 2 zy!ilybat dayhATom a seizeo3golS \1out !or fear of interruption. Ju# pYea knoc9#l ` 0 hiding-"noX connecte!n remotely1lat admittedtRladiev gentlemen, amo*Widow Dougla Tnoticngroups of citizeny bclimbi2the hill--to 7 S\Qnews xBprea h(h the stor$Z'he visitor#gratitude"erbrvatiooutspoken. "Don't}a# it, madaGre's]z"'r beholdeQthan -Tre todmy boyc#he ballow Atellsname. WAn't ] v2butim." Of $&uriosity so va|"be1d tV#in )twa to eaAvita'mm be trans }Dtownb refus"BpartjCcretorall els> qlearnedO  I "to% rJ9"ypV8a noise L#Rake m:rWe judg0j2worMgQle. T"dlikely! !--Shadn'CoolsBao work pAhe u1 waGbyou up4carDR? My BnegrAstood guard sr houseeLmk By've`ack." More!C cam"beD,aand re G couple of hours more.G tSabbath d 1vacecQ1 waVly at churchQ stir1Beven` canvassed. NewV#n Dsign5two! 5yetA#edthe sermfinished, Judge ThDu's wife alongsidRMrs. mZQ as sI6ved1 Qaisle;-BcrowqIs my Becky>all day? I !edhB tirQdeathBYourS(RYes,"a;!tlp Sok--"T"sa2youIQnightEE/!noa kced palh$sabba pew,as Aunt Polly, ing brisklwa5pG by.64qGood-mo), A 'got a boy up missing.o1 myD!st Qlast !#--7you. AndY $'snvtto sett'q  "he H andar than7d. "HeB$us(`b, begi !to uneasy. A marked anxietCc's face. "JoeVSK?Y1No'b"1didqsee hima?" Jo="wa!su7 "ayWQpeopl amoving %ofWs}3aloD a boding Aines&k 1 ofzy counten\'of!if  .!On!ngfinally blurt2his  !we4ill Zcave! swooned awa f#Ao crrringing'Bands alarm swept/lip to lip,Agrou 2to ithin five minutesCbell fwildlyN6he "upF/EJ insignificanD<xforgotten, horsesaddled, skiff4man !!rd#ou1bef{nDrror was half an old, two h)dbcere po6aighroaA riv gC. A Blong091nooge seemed emptydead. Many women (ed9#anPa'q They cC)2too"wa/"l N;z#. tedious022ews/>wA dawqt last,   was, "Send candlesrsend food."4wasqcrazed;L{, also. sent messages! p encouragVtWaonveyereal cheT3 ]3h4'BdaylpQspattRwith -grease, smeTBclay Bworn7#HeJHuck#behad been provid%3 hi"Adelic feveruhysiciano4allrcave, s  ook chargg "ient. She ! s B herb4,'ahe was@Q, bad;7%in,fBr Lord'sKu !R"a \neglectez"aik good spotvQ-`"You can depen(>2at'xAmarkdon't lea9Doff. He n3does. Puts"2ome)0$on"re\Ccome(Bhis TA" E AforeRparti3jad Q ctraggl< bGllag strongeswEthe qcontinuxAarch gBnewsbe gaineBness]7edhansack71vis;Y S cornAZ ,o#ly#edCver one wan4z"pax!, [wcseen fE hit Bdist@qhouting0-shots sentr9:)1berrthe earthe sombr Qs. In&ar1sec21usu. rtravers/rtouristI7s "BECKY & TOM"DbtracedbRL=2cky'#Csmok near at h =1-so!biqribbon.   recogniz'e%>4hover ii7crh. !ofiAno omemorial )@be so precious Q this parted latestqliving h*RawfulpV! c.3SomzAw ann/a far-away speck ofzWglimm*&rn a gloKDshou)~fAscor'men go tro:1dow echoingz1aa sick; Vointment always f!e  a 0 donly a2r'st ree dreadD2^ 2s d#0 ]% jt # a hopeless stupor. N 0_;accidentaly, just made,groprietorS ++Tiquor)premises,qcely fl3  public pulse, tremendou)1the 2 wa5qa lucid%Rrval,lasubjecta asked--dimly 7" worst-- W.! Thd sinceaEill.p.h "stSup inr#bild-ey1vWhat? W)$Lm;lace has shut up. Lie dV! a&&+!me!" "Only02 meQing--&one--please! Was it Tom Sawyer TT burse>"Hush, h !Byou 5 must NOT talky'Bare very sick!zAn no5 bu1rF t powwow if i the gold. Sctreasu2gon Ugone MmJ$e bout? CuM +@TR.2houoD1dimu/7$3min^uF the wearrhey gavhh(|?&. o herself: "TNJh/poor wreck. find it! Pitysomebody !KR! Ah,j!PDAleftIThope ^5or strength either, to go on| E CHAPTER XXXI NOW to%1 toZ's shareapicnic*By trNathe murkyqSVr ompany, visit familiar !eI$--adubbedw rather over7ptive nam uch as "The Drawing-Room,"Cathedral," "Aladdin's Palace,"\so on+hide-and-seek fro^u b AengaBn itzeal until!exertionDrow a trifle Asomen6 a sinuous avenue hol+-/kf #tangled web-work of Idates, post-office addrU rmottoes~) g walls rescoed (in ). Still Uand talk:CscarcelyM3nowXK"ar!H! w+tq. They b2ownPK!anphHA she[.ed,yD   2 a am of watrickling over a ledgkQcarry k sedimenVuit, had Qslow-y 81gesm3= and ruffled Niagara in gleam5nd imperishabAone.%squeezed his smallP h in order to illuminate i q's gratAtion rit curta,]jnatural stairwaywas encloZ etween na9ce the ambi Ya r"bd him. respondehis call,1hey_ " aM-mark for future guid oqir quesAey wD, "waBthatXAinto depths ofL  2Bmark|g$ed?( of novelties to @!the upper worl. 3oneQa spa s", L1cei3muld"Rof sh[stalactit" land circuml.c7 [' H) 1kedG" OQadmir_ +1lef~bnumerous Aopen?0#toi artly bm Qbewit2 sp}Rbasint(dncrustsa frosta glitt crystals Amidsa| supported by rfantastic pillarsR# ?Q8"joof great katalagmCtogehe resul1eas  Q-dripqenturies. UnIZaof vast(ts of batfp themselvwaousand#qa bunch(s+3urb flockings 4 byrs, sque"and darting f  FCkneww4the danger%isqconduct'#'snd hurried herthe first kDffern qoo soon)Q a ba#Duck gGmits wing ,ugitives plungnevery newr#ag!atRb got r5the perilous 7 ubterranean lake,,a stret?its dim 3way !it@ p!lo2shaQrHe wantLexplore its b;,0t conclur!habe best to sit#Ast a9TR. NowO1timbe deepA lai&Rlammygb spiri@*Why, I didn't ,it seems1so M gaI hearY!ot+:m bthink,#, 9Hqdown beLhem--and:!n'=Qw howK/north, or sou AeastQwhichit is. W8Dn't >bm0Cweek9!ye"qwas plaT"at cf 2 beAthei8 3dleAnot cyet. Aqime aft"isZ< P CR--Tom qgo softlo for dripp`BaterZ3 aMf satR Bothcruelly tired, ye CssMfuld go 73 .Tom dissenD F2not>!st8D !ey'2 fae-bin froPBthemTrclay. Toon busy;G'1aid* 7Atimeh^broke the:AI am DAungr5J!me!!of . "Do you remembP"?"4he.Zbalmost1d|'s our wedding-cakeMSYes--!asTQas a 6li"goaI saveA&"us to dream onyF1way$n-up people do'll be ourSS"pp<Q sentP6  Bdivi#Re cakw 3 atT2appetite,Tom nibbled a:amoietys abunda"co"RfinisfQ with. By-and-byGtey move on 'yilent a mom"qThen he:z1can/ rit if In1you k#?"8'4pal}`.Qnw 1stamB!er Bre's ink. Thatw " iClast6 ! gave loos)S&il#diA{to comfor$ `$AtU!C"?")y'll miss uKChunt4rwill! Cl"!ithey're hun Ror us,laDare.Bhen $S"Whby get o the boatHM#itbe dark then--enotice w/1n'tnbIaanywayNr mother8you"bthey got q." A fBened "inT"brfSSsenseRe sawh made a blunderw% _hs2hat08! Tebecame$ndO uful. In a new burst of grief21 sh  ^ g"ingQstruc@s also--QCR:half spent before Mrs. Thatcher discov M""at/Harper's. 2 GR !biqno doub2:)Bwas a !on/M $on1it; }!%esso hideouswbat he 2$itG!waa5ger1torX,K [/s A portio0h z was left;Q Band ,.~dhungriD poor morsel of food whetted desir c : "SH! DiuAthat 2othyV " aq like the faintest, far-off. InstantlAanswYul|/d M)Uhand,@"*gr7 corridorG0s4. P  s(R ;.BV%Rappar a BnearU DthemdTom; "coming! Come"-- b now!"54joy,rprisone overwhelmFT2spe[ %moTswarmingfrantic half-clad pT, whowA, "T2Vut! t F " Tin panChorn 6addAdin,#Qpopul massed g}*!to ver, met=in an open carriage%"byaitizendrongedA it, joined itsWRmarchswept magnific? Q main et roaring huzzah* !was illuminated;~Pb;ar3est(t!tt w0Cever_ 2Dur%re firsthour a processars fil rough Judge-'s house,f<n"sa+,ejsqueezedt'", to speak butn't--and dr out rainiY"rs veK& c1ppi% romplete nearly so5[ a messe AdispSdkH#2cav2!ldv"!orL 1usbNTom lay 0aa sofaXWasuditory71him=1tol~A his!ofwonderful adjB, puR+"inAstri1add adorn it1"al JCudescriptOahow he %tent on Bexpel;7'Btwo Fs!as0* ARa thi^aullest4tchM3wasT"to he glimpsed aD speh6Clook*A day ;"2lin Oit, pushedshouldersa small hol1sawbroad Mississippi ro by! And if it5 F0Rappen#beVhU@ !se* 2at %oft/d[ %4rore! Hec7for/I%j @ @"imoAo fr.r$such stuff, $  &# w Sto diR~?ɆU laboher and convincg %"hoe@Q died1joy A she  actually>lueG he >1wayI& !anbn help2 ou?gAat t]for gladness+some men a8Qskiff cTom haI!em G33con rddidn'tE=qild talfirst, "#,"Dahey, "Q"$re]2les> bhWavalley cave is in" n m aboard, rowFa""gam supperqGthem rest G 1two4hreDdarkn.Fhome. B!day-dawn,=q handfu% Ahim Rtrackg,5R+twine clewyctrung +sformed A. T+# }BtoiluPi~Rbe sh3'ffA9s#Foon " y bedriddenFf}5and~to grow mo7 QBwornP ><2got,MV, on e"wa- {a"as  `"di8her room1Sun34she$ash1hadT'edk1wasaillnes#$omi of Huck's sickm Rto seoAbut be admitDthe bedroom; neit5- Uhe onB or H-x-bwas wam8; s introduce no exciQtopicL Widow Douglas staye1thaKaobeyed/Ahome? the Cardiff Hill event; alsoDthe "ragged man's" bod-%  ;6 erry-landing2had7Adrow&\trying to , perhaps. About a fortiVrescu E, he a visit:yi#plGrong enough!toc2Tom'Aintel:.., A waswm,t " ome friend4Tom$2ing>2oneW him ironicsqn't lik%!goHRy10he thoughqRn't mqO said: "Well,1others jusuQyou, )3I'v| ast doubt.)Ave t3caraat. NoAwill !atA anyH*)*Because Iits big do $atb boiler ironP weeks agoriple-lockedO"goTbkeys."tjite as a sheet.1at' matter, boy! H,Arun,qbody! F=aa glasL1!" "* gba!!thJface. "Aqall right. W1a M#Oh,'[cave!vXIII WITHIN a fewj2new1spr.%b dozen b-loads3nq @!to McDougal'sE1boatll fill#pak"s,5 CSawy[deDD bor4. -bbwas un4,%rrrowfulFeCelf sqdim twi xD lay^1ed )@,)"hiQ closrthe cra} "thif his longing f+dfixed,>clatest,,s cheer CfreeQcoutsidwas touchedd v-tick--a dessertspoonVZ2fou&J3was fallingsPyramids' Bnew;Troy fell#this of Rome7Claid(bChristtrucifiethe Conqueror creat British empireJolumbus sailEqmassacrqLexingtons"news." K2now3ill=4be #whBthesy3gU"ll\Bsunk2then| 3of ,w "raCw;} ]c thickof oblivion. Hoa purpos Aa mi=? Did thisR pati$d!fi ousand yearsready forD2flihuman insect's need?has it another important object to accomplish  xcome? No .Band 2hap alf-bree1out ^>Qprice8drops, bu3a(e !t patheticslow-droppVBater@!hey8e1seeb!< .b's cupC6Ts firde list2bcavernmnQvels; 4b" cannot rival i 4xKn,VB BcaveI flocked in boatsfwagons|3towAfromthe farm1 hamletsseven miles|I >1ugh%irYSrall sorAprov~NsUO/3hadN! as satisfactory a%. funeral y"av&1 ha Y%is5Ir*Bgrow[#oni#agovernIrcpardon5k qlargelyT2ed;Qqtearfuleloquent meet<$he#a committeJCsappt!apBo inrRF%1ingjSwail timplore*be a mercis trample $ut| Gfoot/h0"tokfive citizenwt&+idat? If. ASataC Cselfe$/!ofl)SlingsRto scribblir names-a tear on itLir permans impair Rleaky{Q-work"2TomAvHuck to& gave anRtalk.3!haw1rneQ aboum'the Welshmant, !is}Yq>s!? old him; R  5he TS talk2now's face saddenedw bI knowJit is. You got5QNo. 233 anbut whiskeytold me itAyou;aI justp must 'a' ben ]usoon as\'fA bus|"em8q hadn'tt)ney becuzdl!go!me ! w Dand aif you!musdB els's alwaysG4we';uget holT swag, Huck, I-It-keeper. YOUF -" I"DD.mI D1youHAto w   yes! Why, it seems!ag#8> CI folleredK-YOU foll1him2Yes]2youqcmum. ISS"'s;Q2himI don't want 'em soV Bon m me mean 6s. If itpben for me he'5V ain Tex@&w,.ns entire+%in-5Aonly* Ofit before.lp:,'!ba@ main question, "whoever nipp "in(, --anyways it's a g.afor us;G wasn't n!;Bat!"Lphis comradekeenly. "Tom,agot onO twQagainti1 cave!" cblazed. "SayM FgainT*"Tom--hone 1junf--is it funV!strEarnest;!--^$as# f ! ILlife. WiF#go"reAhelpZRit ounsI bet IxE2 ifwCRe can5 ouV  6"doDwith dlittleBatroubl the worl?aGood aat! What makesRthinkoney's--2you;rtill wef!re#we1mit I'll aSto giVqmy drum71&Cq I will0jxGT" "A!--va whiz. [!do1say "Ri$w,say it. Are*4IWaPave? I ben o-cpins a,"oradays, tbut I caKlk more'n a "--IAI$.">q G$qanybodyRm 1go,1^Qmight,Drt cK]  N ; ,Gri.bskiff.&2flo] ["re I'll pull itj_by myself A neeturn yourq$Q over2Lw2artA offm@B. We"bT32eatour pipes bag or two T%kite-stru ese new-fp!thA ycall lucifer m+rs. I te, "'s1imetbshed I2omeD" Aqaafter the boys borU&) #a W B whoU Cbsen(got undec^were sev` below "Cave H%," R: "NNis bluff herJ$s!Balik d5--no houses, no wood-yards, busheRO"ee5whi4 Rup yok#'s4 landslide? Aat'sof my marks. We' aashore.yG97inU're a-sta#8'6ahole I bout of~Qa fispole. See#4can.Biplace abou$P proudly mar"a clump of sumachncc: "Heare! Look at i;athe snuggesDis country9 "ll2Drwanting/ a robberrknew I'rto have1ng 3thi1o run acros]vAther!ve1it :&2'llit quiet,1let< K:aBen RoU1Cin--*$ o@ be a GangC #lsj* any styl it. Tom Sawyer'sA:1sou$plendid,L?  "it3doe And who'c1rob/aOh, mo6. Waylay people--W$!lyV2wayRnd ki "No-@Q. Hivm# t4y26a ransomUeWhat'sCMoneg3makR<y can, off'$ir{ b; and you've kep.mqit ain'2!seV2. T!enkway. Onlyb women1shu`9 2men5Cm. T5Fb beautqnd rich awfully scaredgt"irI!es5sZStake t|+"nd4pol7y!3 as3 ass --you'llMany book. cto lovXfter they,m s a week y stop cr!eRto le'i4dro Ay'd  { Raroun2com9. It's so insy real bully' $ Ibdbetter'n a piratQC"YesF&^7way Cit's6"!toQQccircus\!at{@y+ %1andaboys ew)#ho\  $ l0Qy toi#*a7tunnel, then madir spliced 1 fadK$a on. A&E z'%pr)Tom felt ams quiver him. HeQCragm> -wick pexSon a oC cla$De wa; t2ox*_ d flame struggl)AexpiQTf!ga4 o whispers,!foS-d gloommcoppresBirit yYBpres:ar 0LQuntilE reaAG,Wndles%rhe factx not really a, BpiceLa steep DhillFirty feet highW @eW+2Now@ AshowY.  Ae he+sa aloft+` sNAorne7ban. Doi!ee? There--0big rock over$ S--donKp}3TomCqa CROSS2NOWZ '{ r Number Two? 'UNDER THE2,' hey?  2's eI saw &# p`+r stared Qe mys Qign afB 6R shaky voice:qless gi} " o QWhat!>treasureVRYes--6it.'s ghost is  ere, certain."B 81, nKB. It Q ha'nk8Qhe di,Away /%2mou!Vave--z ChereS \wouldy#ngkJ 4"ofV #so & &omi3feaX5. Misgivm!ga+d}CR mind 7Lc him--)ym$Sfools m@of ourselves! & a 8|; Z!a = !R poin`#wen1had)teffect.I6_"atA #so/EluckxQthat {7 isJ VpS AhuntG4box5wen77c -ink of fetc4theBbagsFS@B1soog oys tookr1 tofm a rock. qw less w!#gue*<,Q2<  `3'reOEickswhen we go to robbingNSe tim hold our orgieCsre, too ful snug9 ) 0CW@ bI dono P%;#ofT% wWCto hem,] /"ing!a Btime getting late, chungry`We'll eat0bUwe gec6y Temerg4/ 0ed warily f 5oast clear!weZbon lun$in ! Ac sun d#Bowar[Rhoriz] Ay pun  kimmed uDe@KR2wil1chai 91ilyZ7 alandedI3tlyd4dar7c"!id!in 1lof the widow's woodshedrAI'll.3 up*ev1 it(Upa?!unna!ou"od!.#it"it=be safe. Jus 3lay\-  Atuff1 I nd hook Benny Taylor'swagon; Iqbe gone!"nuHe disappear#re agon, putcBtwo Rsacks!"itA"w"ld,Qon to!tarted off, dragging7rgo'|h+"'sh &tgay9q fy1 on: Pp~ allo, whop  nLWGood!1me,, !ar&Gpingy*waiting. Hhurry up, trot ahead--Ahaul~Vyou. qnot as b as it4# be. Got b;in it?--orQmetalO+4tal2Tomjudged so9 1boyGthis townAtake0$%sol away1imeNing up six bits' woraold irNS sellh foundry thaz3y w; 8wic'$at6 work. But that's:4Fnatux ",  '!"!wa1to [$Ch#wa$ever mind; !n&% !E'1uckGRf=hension--for heub} falsely accus; r. Jones, we haven't!Udoing Rlaugh!'-,ymy boy.i that. Ain'bgDgood+%Ye_"sh"nA &B to #yw%"n.-(n,%to be afraid for?%is+J3not+qly answ"!inq's slow$ ~1S,;into Mrs.# dXeroom. 3 le nae doorz3gwas grandlyn1bod4tof any consequenceu2&~ ThatchersQkB Har3the!es, Aunt Polly, Sid, Mac he minister3beditor-qa great0&)?all dressX bAThe a recei;<RBartiJdany onP#we!iv such loP Dare cov Bwith:and. 2 bl[ rcrimson rhumiliaUNHv u at TomFAsuffhalf as muchQboys "however. Mr. Bn't at home, yet, so I gave him up;5$astumbl2anda Qat myG"br "Bin a(0!An1B did3Sv 1. "TyNr." She cto a bedchanRNow washI% y. Here arnew suit$ clothes --shirts, socks, .UCy're+A--nobthanks*&--b! And IY%Bz y'll fit boyou. Get Dthem await--Bdown 1youRslick .3n s \rV HUCKD! "we can slope, ifu'Ra rop" high fro"Shucks!D d|%IQrthat kiUfa crowd.,^(8 athere,a"|&4! I"an!miRA a bX'Scare Q" Silm .vhe, "auntie has been  afternoon. Mary(your Sundayb readyU 7aen fre  . baAthisus qclay, o;ra)Mr. Siddy jist 'tend toT own busiO#'sis blow-nb`It's one2#atx1havtime it'sF 1andl sons, on=uw"Vcrape they helpej9&of4'Rsay--h, 21, i yk+wK  Fold 2is to try toq#_ J( C1to-,overheard himvbto-dayvas a secre"B it' lRof a (XE RknowsSL##1allf!trro let oz!doVQwas bqHuck sh !be!--xn't geta yG1outAknowS"AwhatA'zAtracYAbbero'V  a  BovercurprisQ#AI be4 drop pretty flatWbchuckl aa verygEe aatisfiZy. "Sid, ib2tol3Oh,:Qwho i# . SOMEBODY told--3 @ZJl_ Dpers:Cmean:R to d XI7<x !you'd 'a' sne sn9EtoldZ)0)Tdo an{21an !y&~mo_Tp(+J >  cones. X$nn:N  says"--Dcuffed Sid's {i  0k8q"Now go"if2arenQto-moFit!" Som Autes'GSguest a WD-tab[$ua dozen@/"pr!upittle side;F1e sixQoom, {t1at r vAbproperl Amadev4 speech, iY!!heOkNHB honPQF [T was Dwhose modesty-- A: fo)sHe spru+{a'Er adventu finest dramatic mann_ master ofDthe B it !onJs largelyFerfe8 as clamorousNeffusivechappier K+amstanc  &, ( air show of astonishment,AheapF compliment2 so: ntude upon)(a he al/Rforgoanearlyv l܎K!Amfor%this new2 K :k set up as a targeh  \gaze laudations <"sh<2giv s a homesher rooave him educated;Rcs-Fuld spar2 sAtartFi  \'s chancrcome. H#F32uck"2 ne's rich." Noa heavy strain2the9 tmpany kept baBe du E:2aryis pleasant jos5DsilearawkwardObroke it@(AMayb. cbut he0!lo it. Oh, you%n't smile--  1eY;&a 'tTom ran Bdoor1looked at eacha perplexbterestuinquiringly a_ Ttongue-ti* #ls Tom?"P. "He--well - any making at boy out. I(<4Tom}/,q#Dggli{Eeigh,2 di"afinishsentenceCpourU1masyellow coQ the C^Cqwhat dih ? Half of FRmine! spectacl1 general{way. All gazed, nwpoke for a momentn a unanimous :.n explan  #1fur5i nd he did^B tal!bumful of _,ca scarc!n rruptiony!tok the char/its flow|che had"edAJoneM)d: I,x^Jf#%isP2it BamoupC nowone makeFBsingy), I'm wilbto allhT3was[3sumt"edRG over twelve thousand dollarsr-!as+ 7 [Qaresentever seenl`e time before, "  Q N"ho1 worth consido7av,tyaV THEer may rest Aaj's windfall33$a j4tirDpoor(vof St. o. So vast a sum, in actual cash, seemed nexincrediblejqtalked , gloated0rified, until thOs' mTJdtotter&2*'e unhealthy excite "haunted" housq 2 anneighboring villzwas dissected, plank by U3oun1 duand ransafor hidden treasu Qnot b=st men--0 grave, unromantic menWmH1Tom >Q cour2adm(gz1qnot abl|arememb~2at 4bremarkLqpossessJ&};3now1say0Twere dBrepe 4didvrsomehow regardedv8Aableyidently lo{5power of doV'2nd r common !s;5#ovir past historr!up X v2ar " of conspicuous originalityto paper published biographical sketcheNt.1 # p>#'s !ousix per cent.dJudge " lt's request. Each lad had an incBnow, was simply prodigious--a9D-dayC8Ayear7?2jus  got --no, hpromised--MrcollectD Ha quarter a7 board, lodgd school a <^1ose  be daysF 2 hiBwashbrmatter.  ,@RopiniR 8no 3boy!goz daughtPAcavepqn Beckyd@ 1fatzwin strictCw!ceA TomAtake&a whippt6  dy2isiFv  Cplea,!ceK4thei3lie-w!olorder to shi*&at!hemo8own3saiTaq outburh$atyBa nod !ou<,5magz lie--a litaworthyzaold up-2hea-Rmarch1]breast to George WaBton's lauded TruthU"ratchet!mQ 7ghtzU bso talSso superb wR walk4 fl qstamped\AfootdVv!2Shec:straight of1tol#/it"op& 1seexqlawyer  soldier some day0look to i"T#!AdmitkY National Military AcademRafter(Qraine!es  9[Amigh9'Ieither care both. Finn's w0 qsthe fac#now undeQ_ Douglas' protec introduced him)"society--no2' it, hurluis suffer%1mornj1R bear?servants1cle 1d naHQcombeC1 br hCbeddly in unsympathet3ets2ad 3e[ spot or stx~uld pres/2earQknow yK$!haE#eaba knifufork; h%use napkin, cupXplate&QlearndWbook,@go to church2stalk so "lyaspeechT become insipid in hisX; whithersoXees"edC2bar ashackl civiliz;B shuiQbound1han foot. He bravely b4is miser|1ree!thTLSe day up missFor forty-e\Qhours^g! hO j2himw2in Qdistress. The cS profoundoncerned;~7u E %eyF- @1forqbody. EThird V)r wiselyPp*$Qamong old empty hogsheads down*]AbandU#sl-T p'inQm he $rrefugeeL had slepor breakfastoB stolen odd61end Bfoodbwas ly<f in comfort969"ipwas unkempt, unM1cla old ruin of +,had madepicturesqueRays ws01frea happy[S routvBout,"his"*been causing,s 3urg=Qto go gr's face its tranquilv took a melancholy cas63RDon't X CI'vey #itwT work6"T;"#"it:~U 2to :)d("ly_&7#them waysA!mex!up% / Bsameq 7+9Awashy comb mLo thunder0w&let me sleepJ/a; I go61wea[m blamed cloth!atA smo?" m#'dg1seeany air git A'em,Show; !y'1 rotten ni,a=!et, nor lay^ croll a@nywher's; I hai"liD cellar-doErit 'pea b A  and swea q--I hatm!m Cy sermons!Aketc xK,[chaw.Qshoes$w eats by a bell1goeybed by fits up!--VK's so awful reg'lar)dy!it_(,>#dvhat way, Huck(&qmake no differI`Qybodyq STAND &3t's1 ti so. And grub como easy--I# t{!esvittles,}3askAa-fi 1; I  in a-swimming--dern'd if{AQ1do 6t". H!I'42 to"sodn't no(#--. OuRattic"ipRSwhileA daym1git!st"my , or I'd a died, TomnKBAmokeu y?5Bgapeqstretch Q scra before folks--" [The+a spasm ofsial irrit and injury]--"And dad fq"itaprayedNDime!A see, a woman! I HAD1ove2--I yUbesidHZ5's $Copen_<S$it%I G!st"QHAT, QLooky%,0S rich@what it's crack); Bworr  9 2a-wwas dead <2. N7%seBsuitis bar'l %shake 'emmc>B got into%isAif in't 'a' ben Kmoney; ntake my sh@&Syour'gimme a ten-centtimes--not manyX#s,K_# Ra derR2'th's tollable hyx4you$qbeg offSQidderv"OhK3d6%Rt. 'TBfair if you'll try^;B!a UQ longI*e $tok<Like it! Yes--bay I'd&a hot stovAI was(!itcLC. No7Brichi4liv m cussed y_Bs. I6oodv  Rf  I'll stictoo. BlamBall!QSas we3gun_1a c*"ll+AfixeEArob,p&olishness has  k"up5pil~x1sawx opportuni%"CDhereHECUevYnturning 'qNo! Oh, -licks; ara!qin real3-wood earnest)J+CbR'm siV-?5But<l)#qgang ifarespec5R's jo3h!!C"inq Didn't[!go~a piraterYes, bu%'sRt. A 7 zfAgh-ti7"a NQ is--rgeneral~A. InTr!ri 6  Qup inQnobilRdukes03uchw,! aS2lwme? YouhC  A youP *nVWOULD+B" "wR%,tI DON'TR--but(vpeople say? Why 'd say, 'Mph! V#!  low characters in it!' TCU+ {h+`$t*#so , engaged%Tental"#e. Finally h# Rll go}aba monttC!nd1if  `3it,49XRme b't>%Q gang e_b, it'sQz! Coxo8X`2and G>Toh# a[oEWill/!--yg2? Tggood. If sheUt"ofroughestK"s,@qprivate-Dcussdcrowd ror bust] Astar/4NCturn$s? 3right offBB@Atogem"avQiniti  0Qmaybe(H(Lj;+W6t$12Bto sn9Cone [+ O#te rgang's 8+sd nNre choppl o flinder qkill an 2 anV his famiWhurtsX%ay9/e3y g8,!_3E bet it is3 "at1ing Abe dt midnightthe lonesom|3est@ you can find--a ha'nted " ib:-Bll rNB3up M#yw{(socyou've3 on a coffi 1sigh with bloodOt)Bsome RLIKE!frmillion )X!ieh n 8 s QidderAR I ro 8#gi% acr of aRLbody tal('-&itD bu+!sn!,wet." CONCLUSION SO endeth schronicP$G strictly a}!BOY, it kAstop ;Sstoryz!nofEmuch)p"wi becoming ^3MANone writes a!! a Sgrown*Q, he O4A exarto stopOB is,a marriage) iof juveniles, he W can. Mosgyrperform still liveare prospc2Som.it may seem ZQke upzyounger ones agaiM9 1sor"meAwomey turned@krRit wiwRwisesyOto reveaH&Rat pacQtheirDs at'4. Pby David Widge]previous ediwas updat2Jose Menendez'>  THE ADVENTURES OF TOM SAWYER0 /BY# MARK TWAIN' (Samuel Langhorne Clemens)P R E F A C E MOSTW%e 1s recordw areally occurred;nr two were experienc6 myb!rObose of"wh7 ]#3mat7$inY Finn is drawn from life; Q also$an individual$is a combi,Ybistics #re_whom I knewSabelong t.Sosite of architecture. The oddK!!stzqs touch}"onDall prevalentchildren!bslaves5e Wpwe period1is ay, thirty osAty y ago. Although my book iaGended mainly@ Athe qtainmen1boy7 girls, I!7#ill not be shunni "7$at;d, for vmy plan<"tooo0ly remind adul0 they onceathemselve^ 1of (rhey fel aalked,}Rqueer89s=Gimes 4. z!dUTHOR. HARTFORD, 1876TT O M S A W Y E RI "TOM!" No answ& g4iat boy, I wonder? You Rld lady pul'"!eratacles|$!ov #emcthe ro0rn she pm:&ut"m/seldom or +rTHROUGHhrfor so WJj!asyIher state pairA3 pr8V2her",Qbuilt3"style," not service--4'!se+raetove-lidsUs well. She looked 2z"&mo68!aiK1Qt fie0673oudP;the furniturUhear:e IQ aet holI1you A--" 2="by AtimewVnding punchingNL%dre broomj!soGdneededE2to punctuat Q!esBresurrected no f B catiJ6"diz!ea!1wenthe openDA andUiRtm?he tomato vin~"jimpson" weedsB constitb the garden. No Tom. S AliftWmavoice  angle calculfor distanc1 sh : "Y-o-u-T w!slTnoiseU"h42  i to seize al2boye slack of his  aand ar?Qhis fwA. "2! IE 'a'closet. Who!(.Pb?" "N  1! LI!at yourU8(Qsr mouthb!ISa truckXIk?-1aun. Dk^3USjam--FewFWAI'vet" dk"leGA jam@e I'd skin you. Hand me switch.# h.i d air--Sl was desperate-- "My Bbehia hatesB{5 S else#'ve GOT to doLIrhim, orbu!ilaTom di>-eidFAgood02. H  back home barely in seaso}help Jim small colored1sawS9-day's wo"likindlingssupper--at le6e{n:"to~=8hiscto Jim"Jithree-fourtht~$rk. Tom's!br( (or rather half-Q) Sid!al0Awith A(piccup chips),Z ca quieH1andE,%noDous,VBsome* While Lstealing sugar aQ offe{X7C askw+questions/ Ewere1gui1nd deep--for Bwantxtrap him6damagingments. Like ;pI6-hearted souls (1was pet vanityAlievA `4endowed with a t@ 1arkmysterious diplomacy0qhe loveacontemn0xmost transparent d׏ as marvel[low cunning. Sai u: "Tom1midQ warmR, warn't it8 BYes'OPowerful1'u "wa n(FAA bim a?Ae shvTom--a togL#unr.9;suspicion. H8dL93facKK!ld aQ. So [ ?SNo'm-ynot very mx =1rea+oY Sshirta#Bu } 1tooJ though." A-Qflatt hO7rreflects2;hy-2hir1dry!ny Bknow/*s8!hay Fher Glqin spit/1herC whe wind lay, I ZqforestajCwhat )next move: "S]us pumped on eads--mine's damp yet. See?" 88"ex:Uthinkoverlook(v circumstantial evidenc!mis=a 1. Tya new ins"5ion^ ho undo yourrcollar =bI sewe to pump on/Qhead,3you? Unbuttsjacket!#sh#of\2fac1Aopen]s@a. His qas secujQ. "B1! W Ago ' #I'11sur'#edQ A 8bee  QI forg(y*. you're a kina singed c"s --better': . THIS timu Sahalf sV*her sagacitymiscarried,3gla?ATom i3Winto obedient conductconce. But SidneyIB3you5hisith white thread, but Qblack5BWhy,OB sew8r! Tom!" rnot waitQt. As4ent>w3o85bSiddy, 2licfk abI|afe plac/nrwo larg22les "A wer#us.+sthe lapd6them--on^  D3theHpJDShe'D"anoticeQit ha_'for Sid. Conf6it! she sews]&_ &I wish to geeminy sstick to t'other--Akeep!run of 'emsR I beI'll lamX qearn hi4!Hene Model Boye villaghkAhe m&1boyOS well--and loatim. Withins, or even less, M1tenG-As. NQcause sV1onePR heavV.Bbittj2him a man's ow_aTand p 1bd !emgAdrov% mSb)y25!--ras men's misf+eiaexcite!of. This newwas a valupSveltyP1stlojust acquiredb negrohto pract5Pundisturbed. It conma peculiar bird-lik5, a Aliqu wrble, pW  &#he9Lh(Droof at short 5valAmids@@Busicxreader probablyEbs how !it.4ra boy. Dilige attention soon gave 8#kn{7he strodeFVtreet full of harmon1his gratitud 0^ an astronomer feels who hasg planet--no doubtlqfar as Eg, deep, unalloyedRs concerned,advantagFAwithT!boO t$XComerRsumme4ElongJNqBark,2 P"ly Tom chel2!hiustle. A stranger!hi boy a shader'himself. A new-cAJaA ageither sexXan impressive curiosiPJdshabby\WJ!Thy{`Qdress\"oo  on a week-A<FFa astou B cap dainty ,W- ced bluL3b round%5was#Rnatty0"sohis pantaloons2had;82 on#iGonly Fri"He!wo necktie, a br  aribbon0had a cit#KR air |bat ate&avitals B mor1staUIsplendid}1hig!oshis finerUhabbi E outfit seemed d3crow. N]boy spokeU,2oneEa--but Nsidewise, inrcle; theyArface toaand ey!ey#X - U!" "D3to see you try i,  8$doN> ,L.-'Y?1CanACan'A "An>\!paMp ! Aname"q'Tisn't5"of^,Well I 'low^ MAKE it my0)why don't youhI\2 sa}01ill3qMuch--mAMUCHrb" "Oh^ 2'rey smart, DON'Tm# I)l one hand:n!meIr DO it? You SAY aI WILLTyou fool~ "Oh yes--een whole familiesame fixqSmarty!| CSOME "Oh_a a hat+AR lump-8;Z[Bck it offqanybodyG61akeb!re suck eggsYda liarn %fighting.q and datake it up1AAw--aa walkXSSay--!meA morBsass@and bou1 rof~oOh, of COURSE+; then? What/ eSAYINGTx for? W>{EIt's XQfraidyxI AIN'TaYou ar7""I+A3/3eyiM1"sihaR eachm tCwereH  .XGet away Ahere"GoyourselfDI wo B"Sobstood,X Sa foo0d"as a bra' both shoving 2ainaglowertg1Q hate# nfget an a. Afte=Auggl ,Aoth <"hoy#flHmSrelax Jnx watchful caution|acowardca pup.1ellRig brozQthras'y3his44r finger.make himW 1toosI care forj{4? I;1a6big Be isUmore,hrow him'3at !T[Bothas imaginary.]$at's a li=DYOUR 2n'tAit s1rew6n ;G dus cbig toh<qFstepZ/y stand up. Ateal sheeFTz!w{ 1tepv-Dmptl N="sa$'dnow let's D crowd m;abetterZ{HSAIDh*--Wd[By jingo!Xtwo cents.jAtook1bro)QEpper>$ 1ockd cderisionRtruck*g0B. InF.QstantR boys1rol Aand 4ingdg3d6Acats3, 1pac"Rtuggetm A's hI 3nd fFs, punch3Qscrat"T's no,covered -#:'ry* confusion2for) ;the fog of baXcDTom %, seatedU!id1# p sts. "Holler 'nuff!"3 heaboy on%Rruggl1fre*Hcrying--.rom rage. dn. At last#go1 smwbed "'N"1up -)8jyou. Bny 1foo+Qnext  3Mqff brus6S2ustGsobbing, snuff5and1\Eally&Aback1sha1his;.1tenbhat he=a do to]the "next) 2ughout." ToTom respo0Rjeers"st7off in high feath as soon asI4was*(up a stone,2w i "hirbetweenhoulderss-\1ailran like an antelop_Qchase6 traitor{"Rthus ere he livednaa posia2gat2som9A, da the enemy toonly made2s a gond declined. %J2's and called 0 bad, vicious, vulgar&"ndc3[ m} Twent away;!he\ he "'lowed" to "lay"s'.g1gott>2ate#:2and$he climbutiously in r #unl an ambuscade,-Bpers4#Aunt;g"aw]2tat n her resolN 1 toT his %%2captivity3ard/became adamantine in its firmness. CHAPTER II SATURDAY mor;e,"&4Qworld#.and fresh/Qbrimm-1ith5P1wasng in every:(L" i>'!wa*RR issuQ rthe lip`Zcheer iniJfAa sp&tAstep locust-treQbloom bragranthe blossoms fill air. Cardiff Hill, beyona]ave it,B!grith vegeta!2lay (4farZ, to seem a Delec"Land, dreamy, reposefulinviting. 1ppe5e2alkAa bu| of whiteZ long-handl11ushcsurvey  1qll gladE2lefoand a deep melancholy settledAuponaspiritmrty yardsQoard k nine feet/s. Life c hollo7existence^Ba bu{1ASigh)Qhe di 2hisfpassed)Isopmost plank; rep the operB; di8Qgain;f8/ignificant qed streaqar-reac!co7'un8s"wntree-boxQ Jim 3skipping 5at va tin paiT singing Buffalo Gals. BrQwater (rwn pumpKRlwayshateful work inu"Seyes,Dq now itJ1not\k 1 so\dompanypump. White, mulatto/Qnegro! 9there wai'Qtheirqs, rest?trading plays, quarren $, g, skylarking. And h"al?Awas only a hundRgnd fif!!f,/3got)  under an hour. "ev an somesG!lyto go after him. U1Say, I'll fetcp'7'll`"soJim shook :wq, Mars #NOle missis, she tol|IBgo an' g<s3an'F#op ' roun' wif_61sayZQspec'zEAgwingAax m ,rs5$an' 'tend to my ownQ--sheed SHE'D+f to de/5in'2you Cwhatt!id#. SSthe w talks. Gimm $--qbe gonerC a a\!R. SHE ever knowI9 she'd take)Qtar dd me. 'Deed2wou.q"SHE! S ver licks--whacks 'e}URimble1whosE ,p5C }w%1 awP1but6hurt--any#it!if$Gcry.you a marvel" aKs alley!Abega.waver. "%!Di=bully taQMy! Da5Fb, I teQ! But Tom I's" 'fraid aissis--" "And besides,R will#shAmy s,^o"Ji- human--t> Qttrac  "ooHAfor iaHe put( *a"ntZebsorbing!Qest w. 4andS being unwR; V2s fZ3dowI k!ApailJg3rea+Awas "waCvigo *retiringcQield 7a slipperZ {and triumphEeye.''s energyeAlastq}Tthink%!fuE 1had $ne$Sis daH"rrows multiplied. So~ 1fre!s #tra**!onL 2sor@2delXBd)Bb they J$a bof fun8%m2!to|)96verZcof it burn like fire%2hiscly wealt- q examin0 B--bitoys, marble trash; ;8 to buy an exchange of WORKX* 7s,*an hour of purk4domi#retraitened meansB "s qgave upoAidea r=1oys4 !rkN hopeless7- e Qm! No=  3than a great, ma1 8entC 6! >qtranqui. Ben Rog%v-spresentlnK boy, ofbwhose ridicule dreadingdb's gai the hop-skip-and-jump--prooj6is lis anticipa2!HeVM3ran appl1 gie1a la%melodious whoop, at vals, foljB by -toned ding-do,, a* amboat. As henhe slack}1spey"1ookhQmiddlU, leaned faro starboarderounded to ponderaborious pomp3/Oce--the Big Missouri (d| %;wdrawing"of 1boac capta9engine-bellbined, s!,o7 Qself  <own hurricane-deck the ordersQexecuAthemR1K, sir! Ting-a-linga!" The$way ran almos he drew up slowly towarq. "ShipToo backmsHis arm"gh^Atiff8xAidesZei mAstab%h Chow! ch-chow-wow! rQhand,"escribingly circlesC3 rePing a forty-'wheel. "Lg l-chow!" Thej5 e "to &RShead B0her! Letg*mslow! W-A! GeO ead-line! LIVELY nome--outd"- #t'Q#'t ! T~ t(hRstumpMQthe bA! StSy*age, now--l go! Donb 3thesH SH'T! S'tH'T!" (Suge-cocks)"on . R--paix9!, yDBen (n "Hi-YI! YOU'RE:ump, ain' nH 3hisPFouchI!eyan artistZ(!n vi\ gentle sweect&!suܙ"s $R rang4)alongsidv7  2mou!%er #e (n"tu1 k]! "Hello, old chap,M4gotTs, hey?"heeled suddenJn31it', Ben! IC9TnoticDSay--I'm goBa-swi, I am. DoQ wishacould? Aof c# you'd druther[ !--0 ?5? C)I (6(omR:d,#bi2at 6` ?` $hyIETHAT#umC \Aansw1carG ly: "Well, maybe it iU zI,$it suits Tom Sawyer dV1meaQ!le{`you LIKE!3Thep u}1mov^"? I(see why I oughtn'Gl-1. De$"get a chanW+# a fence every da}1hat(2thez-Q in aSlight!toAnibbApple2R swep daintily=forth--steI"ba<1notK effect--advAhere?there--critici=50--Ben wat2mov@1getm`!"ndp( bested, Ted. P 5 heTom, let MEf a littl _o consent1althis mind: "No--no--LBl"n'ly do, Ben. Y7'e,1's  particula.u a--righ eNQknow -G if C& I^3and. Yes, she's ;-bbe don[ careful; v"onmRthous Ftwo can do i?wayybNo--is6Hso? 1--ljust try. Only--I'd let YOUCas m:" "Ben, ., honest injun; but-D$nn!o s!1n'tAhim;7/!, "/Sid. Nowy` how I'm fixed? IfEa tacklKsb[C&Qhappe+"itOh, shucksbQ3as lgA youocK,#mySFN2.bafeardW3ALL Rareluct|ig @qalacrit1. Ah i4e  )erAb workeZ"sw>LA sun( #ed< 1 saa barrel7shade close by, danglQslegs, m^& aplanne! s0Iter of more innocBT33o ln6material;ed along :; they ca6BjeerArema2A. Bytime Ben\!faY'1out!ra1he $+Billy Fisher for a kit!good repair;1whe>out, Johnny Miller b in for a1Ir! a!ngw  uCso o, R hourHT hour8 afternoon>," a5poverty-stricken; !2was literally )3 in2. HhW"s r q mentioetwelveA par6 a jews-harp,*ece of blue bottle-gla}uOthrough, a spool cann2B key|u unlock1, a!mchalk, a ca decantU& tin soldiQcouplQtadposix fire-crack&r kitten only one eyJ61ass>knob, a dog-Asbno dogv3hanNvb, four1as of o C-peea dilapid)old window sash 1hadsa nice,G_2idlM#thq--plent40 \2encQthree coat! on it! If2n't9>9ut )"heT have bankrupted+Bvill)d2aidCmselR!itnot such a!,Yqall. HexA3dis8+ a great lawRuman |,1out5 ing it--namely, ."inD&Ra manzboy covet a} s !isG! n5ary;^ difficul vattain.U3! se philosop&)che wri ]x@A now comprehen>qat Work $isaatever dy is OBLIGEDj,<OPlay< not oblig# do. And 2helyIto under* :U1ruc artificial flowers orW_5ing"ad-mill is work, ten-pins or climMont Blanc amusement 3are2y gentlemen in Englho driveb-horseJ$nger-coaches tw}r thirty miles daily linummer, becaus@privilege costs themDablenQbut iOy"IK wages fo*XAturnh1ntoI3txsresign.oy mused at3ovea%ub?GQwhichRtakenC r Sworld`whheadquartersv[eport(sI TOM , ]q lkby an open {@leasant rearwBpartYwas bedroom, breakfast-s dining and library,|c balmy D air* stful quieeq odor o%Y@.rowsing murmur (AbeeshFeir effec!he AnoddfQver h"i "sh5n,%1but#caLdasleeplap. Her spectacl)1progQup onsAgrayA for-F1ty.%" 1Tomdeserted #ag&` !nda0 'iRpower p_repid wayN said: "Mayn't I$} yKCaunt&'ready? How mu Adone*AIt'sd.XCTom,ro me--I= bear itIb<u; it ISRF." dY1truxevidencezw uBsee LRrselfe a1uld^MDfind1perQ4C. ofAstat true. Whenfse entir*"ed1notelaborately QrecoaM!an!n aeak ad8ogw astonish 4was#unspeakable. S|bnever!m U's no^# i2canCwhenM2 %Ad to B." A!AdiluO!he)!liAby a, "But it#s seldoma aRI'm bsro say. go 'long$pl/Aryou get@3som i\BB, or(tan you." &awas sokbcome bSsplenSchiev1hattook him#th&tsE- choice appleQdelivit to him,C"ov cture upoBvaluNflavor a treatAo it uit came~ "siT9ugh virtuous effbsd: a happy Scriptur urish, he "hooked" bughnutn !kieand saw SidQstart%pHl2 stairwayll tck roomsecond floor. ClodsAhand$A thegC)waXmtwinkling y52d a #Si'a hail-stormx # ct$Allec+ surprised facultiess*arescueQ or s0+Bclod7tersonal<G} MAgonerSa gat3eneral t h&2too9iY$!usTit. HGrt peace+ /"SiWAcall"tt s black $6+n1rouC1skipQlock,hinto a muddy allaled byQ%s aunt's cow-stT4 He aly gotrly beyo  reach of capuQhasteR the public squ$1, wtwo "military"N!ie02boy"met for confliY AccorO qto prev#sappointt <G3 ofޢ these armies, Joe Harper (a bosom friend)<the otheruse two great commay ! dYSt conyb to fi!--DAbettIil2Rstill<ber frys !geon an eminence/Qconduield operations bysD aides-de-camp's army wX uvictory+ nd hard-f@ 1 ba# T were counprisoners 'drTterms rdisagre d7y $ay 03ed;X 4R fell?and march "ayhTom turned home slone. Q!as &3useJeff Thatch-1ved_saw a new girl e garden--a love^<blue-eyed creaturQ yellir plaite1two-tails, white summZd embroi  )JQettes fresh-crow2ero4without f^+a shot. A certain Amy Lawrenc2U2his6 !efoJa memory of  Gm 1 he#d to distr#; !rePdKQssion"dogi o + ~Aevant partialit pmonths win8bher; sTesseda week ago; $ <bappiesx Oroudest Rworld WQshort_e!inRinstactime ssgu a casual=)visit is dH"sh this new ange's furtiv -shqchim; tf Bpretq6 Aknow\4was %"show off" in 2sorabsurd boyish ways,# wBadmi%{Bkept is grotesque foolishnessome time;, by-and-by,  )s Adang) gymnastiche glancZ@!idy MC girl was we(xher wayO $upn r leanedq, griev5b+Roping! tarry yetblonger 1halA1 moO  Qsteps m]1warQ heav great sigh asp$Ar for threshold.#1his:! lI", Qhe toqa pansyG L ! ss): 3 bo)3rou\Uad with Tr twoY Aeyes=#haWCdown d as ifBsome of interest goat direction. P- he pick:&w#ry !ba! iO,aead tifar backSas hefrom side8aide, iO edged nearer B; finally his bare-#W3(liant toes)w 2e haBaway the treasu# OArnerb only minute--(v Rbutto$1 inhis jacket, nexheart--orstomach, possiblAnot 82pos<s anatomnot hypercriticaZByway1# 4ung#<nightfall,ing off," a16 2irl exhibite again, though Tom comfor$"im$ 3hop@Abeen>,*een awar&P  Bs. FX he strode home !H[[%advisions. Allasupper.cspirit"soCrunt won "what had #inV child." He tookÁod scoldrbout clB Sidp1seee!miY QleastQtriedIugar undGveryG"goknuckles raQ!foxc "Aundon't whackmhe takesQWell,/1torsRa bod 1way"do. You'd b9  bsugar ifq*watchingu sezckitche Xs immunity, l"gar-bowl--a sor&2glog2Tom/Fllnigh unbear_'s fingers6`Rowl d1LVbrokeFin ecstasies*JB (!he controlP#Rtongu!il5 toF Bpeak6!d,^P1in,18A sit0 bectly Lyshe askejimischief|u! tCrRbe noA!so+   !asefpet model "catch2 Heo brimful of exultR1 Thold Q rld lady #ba stood abovwreck discharging lightnings of wrath(#Y v, "Now iVm2A8zt gQspraw1on 2loo potent palm#ups!to($"keTom cried out: "Ho 1'erbelting ME for?--SiK it!faused,\vl1heapABut 1shes5her3she RUmf! you didn'ta lick amiss,)Wsome other audacious Iaz 9 ." Then her conscience reprgeqshe yeaato say'3 ki l;ashe ju - !beo4tru!a  Ae wr7T cipline forbadhs. So sh rsilence2d1bffairs av2rt.|1ulk# a W "ex chis woBknew3Qheartb Bas ojAkneen was morosely gratified b 1ous\)OAhangno signal take notice of nona3ingRR fell"no cthen, s& a film of tears~ahe ref recognition!pilsick unto deathbim besee}D one forgiving*u]cds facew rand die word unsaid. Ah,+Hs !el2? A bZK the river,  Qcurlsw9<8sore heart a .sEhrow 1ow 4earxfall like r4 (ps pray GoAgiveAbackG!bog\  , AabusY9[Rmore!k.blie thlsi02--a suffererP"se grief C*# e$so, as feelBwithAbathos se dreams,hto keep swall ,Qlike to choke03swaqEblur:, which overflow}xr winkedran down*l?XAose.| ba luxu'"hi:op17gsorrowXnot bear to have"ly'Lixrng deligh\ Brude0Cit; <too sacr/rcontact7Tso, pU,his cousin Ma31in,!EalivAe jo!sesB4hom+ an age-longbof oner aountry!go~in cloudBdark u"on|Munshine in at@1"wa B fars the accustom"1unt=?S` desolated"suwere ind9. A log rafAthe S invi%fQhe se!i on its outer edg Aempl+reary vast*iram, wis4Lw_ u rly be djQt oncs5 un6c1the&'routine devisWn9N*Y+Cflowt>got it out, rumple!ila 'Fily increais dismal felic) %HeFQ1pitu knew? WOrshe crym8! L! r%toRarms #ne  him? Or2she(!co1all (,1? Tuch an agony of pleasu ) ` tC and 1gai 6set it up in new!vaosTswore ithdbare. Vqhe rosei?NJAdepa4l A. Ahalf-past nine or ten o'clock hey 3alo+'street tothe Adored Unknown ;X{ `; no sound  3lisdVear; a c/qwas casa dull glowbthe cuCof aX"c-story/Q. Wascre? He climb,jCs stealthyf/ !thn qood und]#at j Aup aC#,ith emotion; Claid]$wn9#g bit, disposingpAuponp Rback,]ands clasphis breah41hiss wilted5*1thutdie--ou~ jyno shelter bomeles-C, no !lya to wie death-dampsR!ow8  2benvTinglyqmthe great3cams4SHE:!eeww4'E outvT glad/U,p4oh!A!hev Atear>poor, lifWform,=>Dsigh~1a ba youngE so rudely b:*Duntimely cut ? Aup, a maid-servant'cordant voice profan" holy calmqa delugAwater dren#rone martyr's5"s!BstraB hero sprang uAa relieving snort%awhiz aPa missil/vir, mingledHV"rm Qa curHBshiv1glal !smb 1vag rAv!e >Bshotvgloom. No!Q, as +all undressed for bZ  omission. CHAPTER IȷCsun 5!2QanquiT"ld]abeamed8D4'ful village~a benediY Breakfas, Aunt Pold family worship:cL2ega# ab built6up of solid cAScriptural quot/s, welded`%A a thin mortar of originality Bsummf  7she+a grim chapter xMosaic LawKaSinai.n Tom gird Qloinsto speakh2bto "geverses." Sidlhis lesson/"c beforAbentt his energies5 smemoriz\CfiveeAhe c$"8the Sermo!Mobecause 2uld.#noO, were shorter. Aalf an hourugeneralw!no;wn =Qraver) %olN'Bf hu-3 !iss3bus $Qng re%ions. Mary took<1booAhearPSrecitahe tri!|] Gog: "Bl!ar 1--a " "Poor"-- "Yes--poor; b025#In? :$ i/Ubthey--" "THEIRS BFor +. Lairs is[kingdom &MavenEy>_mourn&ShzS, H, A S, H--Oh, IO$"wh is!" "SHALL BOh, # fb shall-- *Y/ I 5iWHAT? Whyyou tell me,1?--do you w !! bmmean for?2youthick-heaRhing, I'm not tea[1youpyA1 do. You must32leaI75. D"be"buraged you'll manage it--f 2do,11Agive #ever so niceC, that's0#bo'"ll{1! Ws"TMary,K C+'.ueryou minMbsay it's,< AbYou be"sou%. Qtackl ;3" [did ""*2und double pressure of curiositprospective ga2 diA)2ithD he accomplished a shin SuccesQ gave  a brand-new "Barlow" knifqth twel2d aSRcentstZSnvulsGthatGVsysteL[ DDoundTrue, the scut any!buwas a "sure-enough" 5t  inconceivable grandeurSBat--lBWestern boys >A got N|a weapon1#qunterfeZ3a injur<3obmysterw] erhaps. Tomr˻to scarify82cupuR\ "it )ArrancCgin F dbureau" !ca\ qoff to  eSunday-school. FLrtin bas 8andmABsoap!he  3"oo21setM4n aRbench2; ta$ d+be soapeiy; sleeves; poured>& ,W=y~e'  " Ubegan?ace diligentlyFStowel|-g"oo&&3 re),5and2Now49lhashamesmustn'tVbad. Water wShurt c#"Tosa triflncerted. T=5sin was refillAthis3xO&ito'b, gathaf;/% ebig brGU9(hen nDboth eyes sh8Bd grC+t.[ , 1nor&testimony of sudsR>2ripT Aface mse emergf>x,fnot yet satisfactoryQclean territory* " a%Achinhis jaws,mask; bel_p4dis lin1 dark expan5unirrigated soil]Rsprea7,rin fronlAback  2himBnwhen sheY%dR4him$Ba maqa broth1adistin<Bolor)Aatur2haineatly brushe2its curls w]Ainto2intsymmetrical effect. [5!iv;w smoothL[3labdifficultQplastere AI]3qhead; f(] effemin71andBown  lith bitterness.] Thenr!go! aP1 ofF#cl%1Busedy##on Bs duvH!wo s> were simp1"ot%#clothes& "soJRat we qthe sizV brdrobe3D"put`"s" !!S; she+Qneat "/m,his vast shirt MG2ovem,soff and c V-QspeckSrtraw ha)1now#oed exceedWAimprcand un2abl":Yy as E as OOTa restraint e lgAm. H-"atU Q forgie"5!peZ61 cothem tho"ly/2tal s9Bthe 9rthem ouH2los:Stempem~z bm$o do ever  Dn't "doAMaryN&rsuasiveTPlease, Tom-- 3So &zhoes snarlingJ(son read9/hree children se3for "!latat Tom hd heart; but3andbere fo0!sSabbath`-from nin$Aten;B church service. Two  "ermon voluntarilV :2too!ger reas.TZ urch's high-backed, uncushi$BpewsU!~h4d persons r edific_bWSplain,'a sort of pifR6ard*kQon totia steeplB Tom droppe(ps2acc0a comrader]2ay,N,o)2a y*;aticket5Yesy'e'Agive:APieclickrish fish-hookX2LesExa'em." 5(0 ? W propertyGd@!tr=cMwhite alleysb  E6Tsmall+ #oro9forSsblue on(1way ,b boys Sy camwent on buyingz of various colors ten or fifteen minutes l !/ qqa swarm; #leg Rnoisy: irls, proceemoE!se &dAed a quarr84Airst5jAcameyQ teac a grave, elderly man,75QferedGny-'6>aTom pua boy's @ !inM 3;"was absorb% the boy  ;[aa pin w I boyk%8 hear him say "Ouch!"got a new reprimandJ 'csle clasWqof a pa --restless,!tr\Csome> Qthey to recite their@w%~am knewuverses /,!habe prompv8ll along. Howe)worried @2reward--in T blue,,q passagl"e '(;2pay#wo1 of  ation. TenuB equa#onc7$Tbe ex^qfor it;0Cyellow onep #enV> Wsqsuperin;"ntat1ly bound Bible (qforty cin those easy3s) SQpupil2 maH$!myKe* (the industaapplic+4 toeTthousand]H2 BDore? And yet Mary had 2two%is way--it the patie5!rk!^  oy of German parentage had wonRqor five3onc#ed i out stopp/{Gtraitmental facultiesyCtoo (haand he~+Abett {U idiodBat dth--a grievouC2he :"onpR occa$y company f(1 exbed it)  'y come out and "(b." OnlRolderts13Bkeep}Li]1tedRlong  to get a2[s6y*sse prizaa rarenoteworthy circumstancer32fuls?conspicuous for  ;AspotEyQlar'stQ4fir"a fresh amb/that often_')ed\weeks. It is{1s Tom's qstomachn 1rea 1ungo1for#.o. unquestion6-Sntire& hNPa1lonQglory,qthe ecl+!atcI rIn due K  &Rp in {e pulpit" a6d hymn-book inh)!nd cforefi"O(between its leave Frd atten0G  ! m09>y,4aryAspee  RGs asoEBas i ainevitAsheeTmusic&sq who stu'1forAplat<$ings a solo atn %!y,:Qneithen sa refer.0k. ThisN0fa slimEirty-five a sandy goate8Qhair;1ore 2iff!Cing-wE"Bsensa}!itenew hero ups C!on l Xtwo marvels to gazt#injbof oneBboysall eaten upenvy--but tb)est pangI-swho perstoo latDS themselv contribub athis hsplendor by trad01 to't wealth+bamasseelling whiteprivileges s]D2pis,Urthe dupa wily fraud, a guileful snakeRgrass !4was;ew 2Tomo"as%2eff superin"nt pump upI7!s;it lacke&wS-true gush< IQoor f' tinct taughZ-xzw not well bea]l  k4was.preposterou8 c!!hae)Q thou[!sh $al wisdom on@remises--a dozen ,#capacity,Rout a8. wBprou$glsH<T1Tom it in heL-ouldn't look. ShH 3n ss grain %"d;Ta dim suspicionbG(b--came P-! wnEd; a1`#glrld her ] +her heart brokMs jealouaangry,t'&rs3shebody. Tom G!of (Hhought). )asohis tongue,Qtied,J4 2rdl"quaked--part75cau awful greatnes rthe manGmain6H$ have likBfall00borship!ifyqLq1ark # ph an Tom'!ca9Rhim aC * sand ask!qhis nam?hwstammered, gaspe!goUout: "Tom." "Oh, no,QTom----" "Thomas'"Ah~'TI7!or\ it, maybe{'W well. But you've)one I daresay""llit to me,6Q you?1ellQ "an"Qother", ","'Walters, "5!fay sirX=n't forger mannerI Q--sir1it!B's ayvF . t, manly0 Q. TwoLverses is a  many--very,(.'2ou $can be sorryUQ*c you tOAAlearm( knowledge is worthchan an@1<3is pa; it's4#e  Dmen;V$^d3Qman yC$Alf, -5day1'llR,Y9ay, It' R <)1rec ;A1 ofDoyhood-- Gvmy dear-5tha^mU<  Jood ,L$en? H.)3 ga beautifulI*\d id elegant'"anH  for my own, always right brin"upA is |2you<{!~&take any mone^ose tZZindeeE1nown't mind t $ m+ "isB2 hylearned--no, I know --for we are4$of3boyG!. 1no vAknow2nam^r, es. Won'Lbtell u9the first3tha`!ap$Fed?"l1tuga_utton-ho sheepishblushed, nowz1his! fO'MAsankm ain himH_\ETAposshtc2sweb simplest (--why DIDH=ask him? Yet hBrt obligspeak up say: "Ad'1--d}#be!.L_hung fire."*$me\ady. "TF twoeDAVID AND GOLIAH!" Let us draI%cu3 rcharity tYsceneJV ABOUTQtcracked be2theu church ?R ring01epeople(1 ga||"mobsermon. childrenHA 5!e C C eoccupi5ith thei s, so as K{Kd. Aunt Polly zTom and472sataher--TomL%"d G8sleB2!ha9A be GrE9the{e seductive `AbsummerEs asQ crowd fil/"s: 1gedneedy postmast=!hosseen better days C may<"hiJ "ha$y3re,| 4 unmp#ieOejusticRpeacei widow Douglass, fair, smartQforty!ene,O2-he4Asoul well-to-do, her hill mansj only palactAChosp+and muchKmost lavish 't of fes,St. Petersburg [RboastAbentxQvener,3MajsMrs. Ward;  Riverson,bnew noaACance_1ther village, followRa tro8lawn-cla.ribbon-de!3 p-breakern#q clerks!owfa body;C had.G vestibule sucD!cane-heads, a circYb!wa! o !imcg admirers, ti Alast!ru ir gantlet; and/AcamedModel Boy, Willie MuffFs heedful carlQhis m5 asXere cut 2x ! b=tN,>#to, v1prisrmatrons(2ll vh !so0. qbesidesa"throw;3 Qm" so. His whit.kerchiefZhF#q pocket behind, as usual ons--accidentalN)noa!he 1ed ytas snobcongregapefully (: 'T1once, to warn laggard0straggler a solemn hush f p! <Q+vdbrokenBtitt=8and& choir is galler=GF!edthrough =conce adQY Pill-bred, but I rforgottgh!rea2. I !y [B agoV.I can scarcely rememb?_="itI kg1 in foreignj#"ry* minister & "ou3hym-1reaba relish, in a peculiar styleZeat part His voic on a medium key&Zasteadi:/i0% a"* rBbore1strY5umphasis topmost wor splunged8spring-board: Shall I be car-ri-ed to!sk !on flow'ry BEDS of ease, WhilstsyOIH sail thro' BLOODY seas? Hqregardeadful readKZt"sociables" h= #R>!to;r poetry,Cwhen32ughcqladies l3 up<3han let them fall helplesslyrir lapsc"wall"C!eynB1k\!irZ5s, u say, "Words cannot71 itfis tooV, TOO rtal earth." Aft 2hym~&Bsung2RevtSprague#' into a bulletinGuoff "notices"ge,qocietiej-1i#)o4 2st qstretch of doom--a queer custom#is vin America#cities, away x4)1 agAabunZnewspapers. Often3Eless, to justifm 1adi7l3Bhard")q get riu'ittprayed. -, r:bwent iIhtails: it pleadea 2rBttle),3rend:7=eip ' itself; ?y([State officersqUnited . ' 'C)s5A Pre.t_q Governm$poor sailors, tossed bK1rmyM ppressed millions groaningeel of European monan  A Ori5 despotism1sucDght 2tid?'rand yet-M"yehqee nor !to &alRheath)the far islB seaZaclosedW a su Twords!abmfind gra)RfavorV!seLm fertile ground, yie%Qime a?0Charv9good. AmenP!re 3a r(Q of d v8! cPy sat down whose historybook relates disQenjoyQB, he< Aendu}Qt--ifN1ven9J r  it; he kept v y a63 --Lp"gc#, qBzc of olvthe clergyman'ular rout}&VaiQtriflsRnew m3 terlardedear detected iWhole nature resen!considered adAs unqcoundre I |/B a fU'R lit  " bAew i#nMmaAtorthis spirit by calmly rubbing iti d8, embrac"eah,3armpz}& so vigorous7at eo$;part companyBbodyvthe slend9read of a neck61expto view; scra0Qits w rind leg'AsmooT !toCbodyK|been coat-;~,&le toilet as tranquib if it.)$E safe. As!ras soreEaitched@rab for iynot dare--}4iev3oulbe instantly destroyed 3did qg whileB was2 onhhVqsentenca curveTstealq.Cthe ra"Amen"r!hewas a prisonwar. His aunt bthe acmade him let it go rhis tex8droned along monoton an argumea%"sybmany aBb &byBnod 3y Wdealt in limit 2firMbrimstonSthinnpredestined& Eto a#so !2worA sav1)2Tom_&ag ;; $ % h2how:t#aseldom: Delseqhe disc MH"is!he8qreally {16forE*a grand and moving picJH"&+=world's hosts at the millennium*B !onc aamb sh"%liS[ , ,!eaAm G2hos 5les1mor/C theEspectacle werQahe boy v# D" principal character beforEaon-look<>!s;#1fac" oirhimselfYhe wishe",Q tame lionf!w 8Qpsed (ing again,fhe dryQumed. eHpA him treasur # a large black beetlformidable jaws--a "pinchbug,"8#Rit. I/=ercussion-cap boxhm1did/bto tak)b' Afingal fillipgIbfloundKZ2isl1its !ur ger went1's Co!lart5its" legs, unAto turn over!ey !lo1forF^!ofCt. Other'uncR]1q relief# wyof too. Wa vagrant poodle dogNA idllong, sad#Bf, lazyI1oft e quiet, weary of captiv(1sig"for changeMs;HAdrooz Ataile8bwagged:1urvrize; walked a it; smelt a87afeu4 4; grew bPJUA6rY1l; Trhis lipqade a gzly snatch,YA misa;3it;/nn %; g diversion; subsid  Stomac)W betweenm3pawh scontinu experiments; !ath Aindi- absent-mindi(1nod ittle byrhis chin descen/ou he enemyAseiz[2re sharp yelp&li' fell a couple of yards away, S}Amore neighboring spectators shook)a! inward joy, s2afaces rA fanI s)_aentire #ppXdog looked fo8 4probably felt so r1entc iheart, tooBaG>qor reve1So .n:9gan a wary attMnWQ jumpfRevery2B, lightingP!hiKJae-pawsin an inchB2YouUX O=3Oh,Q, I'm,/"W4=--wQa, chil9 X!my! toe's moF1!" J#ol[UBsankqa chairB#%ed! cEB"a did both0,Arestwh/d<P," ayou did Ce. N ;1shus aonsensCd climb"thg{$ThS ceasrain van Afrom!to   ' it SEEMEDi"itTBso I B my aat allqQYour ,#K+ Sthem' aperfectly" "Ther|Tdon't Ahat @'Open your q Well--4 IS1butcre notwVto diG!at. Mary, gec>aa silk a['1Rnk ofq"ek$2n." !pl/j7 !hue. I wish I mayO%qdoes. P_@.1wan-]stay Don't you? So all this row was E1youM>ght you'd7i ibgo a-f*?yI love you"1+!ou !ryQy waycQbreakX?l !t soutrage!=." dental instru?S read #%on8the 8^I"'s:Ra loo& #tiod edpost. TBseiz* n^QthrusI($inR2oy' U hung dangb- } Rrials@*1qcompenst+s'#enrschool >fast, he6qthe envc( 1 bo"5metSfap in 1row&eeth enab 3 toMRorate!1new<>4 s9ing of lad9G%in the exhib@0;2oneShad c ' 2hadr a centre of fasc and homage2o[Qnow f:OJout an adheren Tshorn!Rglory'QheartyBheav 3a disdaibZit wasn'tDo spit like;our grapes!"%e wanderh dismantero. Shortlyb3camMthe juvenile pariah5he n;Huckleberry Finn, sthe town drunkard.,-Qcordi2hat2 dr1#by "e s{t 2idllawless and vulgarRbad--zxk?eq delighV-forbidden societyAthey dared?Rlike B!om @!reNCRboys,faxenvied >his gaudy outcast cond;as under strictIQrs no8Mm1Splaye3him1timf2got% Ince.c!slways de cast-off _سll-grown meAthey  in perennial bloomRflutt sCrags{!ata vast ruina wide crescent lop a of itp!m;ecoat, +72ne,Bnear^2his[ !haQ rear!buttons farY ; 2ack1oneMeaupportos trousers;Ceat ! b$A low~contained n A friM&rlegs dr4Bdirtanot ro[Iup. 1and?A, at"own free3Yrteps inKDweat in empty hogs> in wet;3Qto go2 orurch, ornmaster or obeyXcould go  or swimW1herCchos1sta/long as it suim; nobody~V$fiyhras late! p8 d3t)2boybarefoot Qe spr'gnv~Cme lsAfalli1to wash, nor put onf0wear wonderfully. In !rdJ8tQEgoesxlife precious{!adgrthought\ harassed, hampered, ; inkBR!ha!AJtomantic : "Hello$!" K ee how youh9it.a A gott rDead ca%RLemmeC"imp. My, he'tty stiff\Are'diqget himQB2himR a bo#di4zI a blue ti@1and"adBat ItVter-hous1 T#itBen RogersI!goa hoop-stickE6SayU!cats good for2hGA? Cu1rtsHSNo! IQ3so?JV some6A's b3BI beedon't.ibaspunk-?5S! I wouldn'tqAdern 85You-,  $D'OD tryqNo, I h DQBob TOA didrWho tol!so"he Wa5Johnny Bak im Hollis8 'ld2Benmca niggLC them bre now2ellt? They'll lie. Least<1all WA. I 2HIM(I%eekWOULDN'T\Shucks! NL!te`lbone itvQnd di=2a r/BSstumpLthe rainQA wasPI qdaytimeClith his fac Atump-3Yes* I reckon so[ADid j y5 3"I :.lAknow@Aha! Talk1tryN:o c such a blame fool,c@Aat! @S a-goVado any2. YV rbrself, e middle Qwoods\5Y's a Btump1jus'7rmidnighrback up!s qand jam/Q: 'Barley-corn, b injun-mearts, ^ {q, swalle_&drts,' 1n w way quick, eleven steps,(eyes shuthen turn.<BtimeYAhomeDrout spe+ttbody. B#f$Wcharm's bustesounds likxrood way !!wthe wayB donNo, sir,x1cann't, becuzoGartiest cis towT!BE1war 2him!!'dU!ed*xto workYS. I'v1offs'9"of off of my9sAway,m 7. I Tfrogsv$*`U 5got;"Qmany gb. SomeI!'eFNSnYes, bean'~de%1Havk?,"'sSway?" "Youd6 2pli!be#nN1getb blood"thN# p3" o rEpiec!be,d{q dig a *1t '`?aYrcrossrorqdark of6mooQ burn/ $styBbean#se Uq=.ll keep drawN$nd ,mA feteXFZ v+1"soQhelpsh!toOA the.Rf!sof}Qcomes %--;"gh,"bui$you say 'DownV;awart; 1no @'Bto bgme!' i & Tway Joe Harper doe!he1'enCoonville and mosQ bwheres#say--how do:"urA b!ak1r c+Enm?graveyard '%Ubout wwXromebodywas wicked hen buried3Fit'sFqa deviloP, or maybe%,3 't see 'emcan only+ 7indYAhear9Qtalk;|they're tahat feBawaym#he<<1fteMGqsay, 'D  corpse,i,A1cat,Qye!' ;2ll 91ANY7b." "Stnright.}  "No@Rold MrHopkins mz !soqAn. BQsay sra witch#ay AKNOWQis. S$*$pap. Pap says so his own self. H! axAone *a#!eeUawas a-Sring himC !e T'!ro-Bnd i!ha AdodgQe'd a>e)that very > $heFoff'n a shed wher' s a layiQbrokes1arm"W#!diOknowLord, papGeasyK1loo- *q stiddyDyou. Spec"ifcmumble d$b're saS he Lord's Prayer backards2Sayy y:"trB1cat1To-. .old Hoss Williams t8a" "Buy him Saturday. D` ?qtalk! H5uldbAarmsF d till -?--and THEN2Sun|Sevils Tslosh 1muca,2, I' L!nLaBso. #goT!f'"--$Rafear A B! 'T qlikely.djAmeow1Yes#, Z'geR Last timeOkep' me a-me8!arA1ays( r&rocks at mJb 'DernQcat!'qso I ho Abric{!hiDsdow--bu+BbwTIn't meowe bauntiea#me|Q4'll8!is%. 3!'sOL"NoQbut aS%Ou1-3at'AtakeG .Uqell himHAAll 4. It's aIqy smallr, anywa#anybody3runw6ae1 bem. I'm satisfiiwF!enAtick"Sh!tiu plenty  1 ofrif I walCo2whyn1#wed!cawT&Cs a Q2onef YAyear,b--I'llbyou my  ALessi1Tom1 bi$pauAcare3 un$Git. ~a viewe#Awist-. The temptation+strong. At%he"Is it genuwyn4Tom>'>!shthe vacancy.a!,"YB, "iAtradTom enclosQ8 A@lately been: 4#'sG"th separated, each fee !wealthier thqfore. y'4Tomy'Dittle isolated frame ,trode in briskly=Pof one who AwithQhonesbed. Heahis haQa peg52fluT BselfJ4}31eatI r-clacrit", throned on hig1reat splint-bottom arm-',R1doz)!luW" drowsy hum of study. The51rupcd "Thomas Sawyer!(Ghis name{f7 in full&!me$rouble. "SiO"Come upcRS. Nowbwhy ar2gaiN3cusual?= "to Srefugz"3lie' Pw ; ails of yellow hair hangingoae recogn$PHric sympathy of4%;&bat forTHE ONLY VACANT PLACE girls' sZ QinstaE STOPPED TO TALK WITH HUCKLEBERRY FINNY's pulse\:Qhe st helplessbuzz of 5r ceasedcpupilse) foolhardyaqhad los% u/:9*(d did w"Stqto talk@ Finn." (eno mis}e words,!isE!motounding confessionYever listen!. No mere ferul answer f4is offen%1akeyour jackej  's arm performed until it!ti#>Qstock1wit) _y diminish`A ordllowed: "l!goVs!th! And let)bSt0xr titter-VripplE{qom appe^rto abasiboy, but in .G14was caused rather0!byworshipful aw%his unknown id(&IAead _#urRlay icgood fortuntss Rwn upk(1pinc<c0)'Qirl h,away from himaa toss$&nd. NudgesBwink$qwhisperO4verBroomrTom satW!hiIs "Aong,"CdeskO1eem[book. Byby atten$DNjX#ed murmur rose]AdullxEPresentlboy beganqeal furdaglance robserved it, "4G,2" a8and gave hi-HbackRe spa\ta minut2she caut4duQ, a p5layi"erthrust it away1g!pu>Kback,^2butC&Bimos;$om9Sly reZiqits plaz!heit remaindscrawlts slate, ", Bit--2 more." TdJ uno sign. Now draw some *!hi 1eft;q. For a31ref:2to ~[Sher human curi@Axq manifeby hardly perceptibles !boPkAr, apparunconsciou+Qa sor^ noncommittalnmpt to s6 did not betra/h Aawar&itM 2she!inQhesitB$lyb!Le  Apart 6=*l caricatusra housetwo gable ends}a corkscreC,smoke issuingS!thn[AmneyX" "'s !es0Bfast6elfeAworkqshe forgot $D els`f6, she gazedAAment)n ,It's nice--make a ma artist erectH$an%front yard,qresembl(qderricka 4~1ste\ !ovgek&not hypercritical;Kwas " Const! a beautiful man--now me cominggom drew an hour-glassa full moontraw limb1 arhe sprea1finE$a portentous fanwL #t'#soI wish IPddraw."feasy,"q Tom, "1TlearnB"Oh,i#AWhen At noon. D 2 goh1to dinner&PDstayAwillrGood--tAa whas your] EBecky Thatcp5yours? Oh,$& l1theU they lick me by. I'mIAwhen \2YouW)1me Yes." Now<N  tl1rdsW /1"gg1see !Oh~ain't any\ Yes it i5"No'#wX5I do, indeed I do. 4letVYou'll teNo I won't--9Fand Rouble%"ou3G6A? Evs ! aA liv!6&M! e3ell ANYbodysOh, YOU!Lyou trea#o, I WILL see."+ 1sheher small =  Dnd aQscuffLAsuedq pretento resist in earnrut letts_ slip by degrees till thesdA4vealed: "I LOVE YOUj"OhMb-Fing!1hit hsmart rapreddened >b 2ed,~&theless. J[$K junctureboy felt a slow, fateful gripM3CB earp a steady 1 im+zSwise Aborne acros Gposi0own seat, undwNBpeppX/a7f giggles i!tna~-Cstooqhim dur;q few aw_bomentsfinally moved IsU4out5ba word3"al Tom's ear tingled$EBhearWjubilant. A rquieted 3Tom nQefforX Bstud the turmoilRin hitoo greatqurn he h#hi  Bclas1}1 boef it; theOgeography4 Alake3 o mountains, Srivery r contintill chaos wask  Aspelc got "down," by a succ`"ofG1babA dN3he C2 up=ae footyielded upkpewter medalj worn with osten|for months. CHAPTER VII THE er Tom triedl shis min,# " mXs ideas wandered.9,b a sig:a yawn, he gave 0V. It $anoon r4Fb wouldm} air was 3Aly dc#t a breath stirring. IRleepi$ sleepy day drowsing<Re fivUtwenty studying scholars soothe/soul lik= #is_bees. AwayE1fla sunshine, Cardiff Hills soft green sides th[ a shimmBveilaat, ti| the purple`iWa few birds float Q lazya!ir; no other liv*bwas vi$x1but7 4 co^W Cwerer's hear=!be3A, or 3 toA  fE to do to paq drearyH4. HcQ into%poO0his face l"gl%:gratitude3wasa#, ) not know i!enXJ3ivexrcame oua him a"Va pin"!6newx 3's bosom friend sat nexb, suff!ju9;4nowMadeeply{"grm& 2ent.1menj3an  7was'rtwo boy r sworn s|1eek embattled enemies on"!s.^took a pinBJAapel #as q exerci1er.AsporZwwU<rly. SooG 6}Beach neither g g1ull denefit*!ti<!o Qt JoeAQ4ate 1rew "neFthe D/!it C top)Btom. ","Whe, " Ahe iqByoury9nbq him up)qI'll leB!e; "2get d)et on my[,@re to leXalone I can keepQfrom  S v!, go ahead; star!upb escaped!pae equator{6DawhiPtU:5G݁ghis changbase occurred often. Wg"onZ !wa5r^&t7r absorbNHYblook o? #as 3, t9b 1ogeo|QsoulsC to B1ngsVluck  S b JE !hicd&atxDcour9rQs exc Xs anxiouh|!thH mselves,<0Egain:Auld evictorfvery graspn)"to#1 cbe twi%to begin,3pin'Bdeft+Rd him;1andTk W)gl:n(uno longzQemptaswas toocqreachedFand lent a11pin 2ang a. Said he: "KbI onlyd1wan TU2#NoJ a fair;e' ~3QBlame>I'!go l#mu+L?b, I teK|"!" shall--+#liALook !a, whos\ 1ickICcare$m /ha'n't touch %%,Qbet I . He's my/do what I 51him die!" A tremendous sdown oneshouldits duplic r!s3twoW dustbRto flbjackety[ to enjoy had been tooS]sBhushhad stolencschool wCetiptoe"\nVd (Hcontempl (p4~performance |!heQributs'Zt2%broke up a flew to P1 in ear: "PutHabonnetlcyou'reBhome11you)5\rcorner,'.2 'eAslip|rthe lanAcome.!goQoAYcame way." S6"ne+5one group of -gCith EF. InL:*"et e #la.:qthey ha {Uy sat," a5JBthemQ)3ave the pencil 0.Jriin his, gui 4 3ed a surpr Ot&Gn ar2w#fealking. ToAswim]in blissS}%!DoLlove rats?" r! I hatM do, too--LIVE onesI mean dead,qwing rouSr heaAa stq[1for much, anywMA likIchewing-gum<l25o! 8qome now/?8"go1letAchewV3 2youUqgive itQ3 to8AThat`agreeable& hey cheweBturn'Y?K!irSk,!!stRbench "cet#ntment. "W>)an/circus? T #YeQmy pa7!"mew*Atime/ET" "I)f three or fouryQs--lo:. Churchr shucksbD-C (on/; qbe a cl5%nWScI grow )"! ill be nice1y'rBAlove ll spottAL1so.=v1getAhers of money--' dollar a4 cBsBSay,_+bengageSWjt`(2!b ٪"ieN.+ 2youC!to.E so.CknowqQis it2/Like? WhyG You S Qa boyRawon't \ FZ\ Zcyou kiPw all. Anybody%#do.b"Kiss?d=1for2X Ynow, is to--well[yIoAEverqH2yes+'Y8 ". z remember m F wrobbYe--yeW]YC%I  TShall 8YOUHB--bu5No, t now--to-morr8Oh, no, NOW7!--Vrwhisper aso easLQ #o took silenc Acons"and passedBarm Arher waiS]QT talezC7/outh closuher earn he add\$2Now!--d t-P3ShePj" a^2You vBfaceBs^23 seI;I~you mustn'<[--WILL you]?&,!N  .a." He n\DidlyZ(her breath stirr?Bcurl , "I--loveP-.(r sprang#tand ranfs+YCes, with1aft*uy/x Cher 1JQaprone1ped"nehV pleaSWn]ll done--all a. Don' be afraid Eat--+?+ll. Qhe tu{"aD YhandsA+2she us  qs drop;Qface,rglowingy"truggle,,O submitt-!omqred lip 3rNow it'ACdoneEPBt 2yout0mk+@!toXy,2 meand forever. Wi 3'll)u!LLkmarry +2--aX - 3ith)CEly. :. u's PART{)I('U*we^w02me, Rthere<Rchoos Dnd It parties, bE  1wayeO4're DIt'sW'3. IRheard -|%'g>mSAmy Lawrence--b2bigF1tol{ ~DlundUe stopped,1Sused. BTom!,/irst you'v3 to"W chil2cry94Oh,trk I"arshy   1you1Tom3 kndd i  BneckJ j%sg0%im!Qrhe wall1wen\bcrying05  ing word GQas req$: (!pr4as he strodWQbutsideY,2lesquneasy,: Sglanc2oorMQy nowthen, hoping she.RrepenSato fin:4shee-e1 to81 barnd feari.;'roS!ea hard2himke new advancesM ,Nqhe nervRmself{Q and _]"zstill stan797, sobbing.!'sDt smote himD ?2 ,ing exacoQproce-ge said aly: "* ], I--\ A." f4ply 4bs.D1"--/tingly. Y !mea?" MoDTom got ou( chiefest jewel, a brass knobToan andiron2{ $itd h,2thaq,{/3w * y Sc3uckY the flooruTom marH.:C hilR 1far[!rez1 noday. Presently 3buspect rRT1was7in sight. < 2play-yard7SthereU1she,v Cc, Tom!/alisten}trL7had no companions l oneliness. So s t`Ro cryfp1upb herself;qby thisZ L1gata3gai[ashe hatAhide+Qgrief?6cbroken aK of a long, $Q, achhfternoon6! nk#mo Astra/VSto exbsorrow/ q'I TOM dodged hp t through lanes96H@&ou!r51ing3larinto a moody jog. He va,"branch"9"reDH  6prevailing juvenile superstiti!0 c water baffled pursuit. HalfC1! l$disappea<+Bbehi Douglas mansion jbe summ"'Z ,1wasly distinguishablCoff Ccvalleyۖa a deny-od, picks pathless wa>r2ent;4.!onssy spot,spreading oakrnot even a zephyr(*_anoonda(at had 260 Tsongscbirds;:1 lasa trancCwas Vby no sound the occasional far-off hammeof a woodpeckiBm 1 re .1rva|wense of|8*sprofoun=Rboy'su)w!1eep melancholy;o A3s w<happy accorqhis sur1ingA sat< )oAlbowhis kneeO2n i.S, med69 * rhat lifbut a tr=1, at best +3orlRQbeen 2!eda2g--Q very dog#" by some day--maybe wh@8too late. Ah %die TEMPORARILY! Buselastic]o?ath can4e8Aresssqto one {rained shap*46Tom_&drift insensiblyJXZconcern"is7|.T cack, nowmed mysteriously? aaway--A'so3 ?countries beyoBseasQcame S! How 2she{ then! The idea of beQ recu,mto fill himdisgust. For frivolyR jokewStight"anAsy intrude`/1 upbspiritwas exalt3vague august AEthe romantic. Nota soldi<,"yell war-woraillust. No--bette4ld#joIndians,unt buffalo$$gowawarpatr4x2S rang-the trackgreat plaite Far W 0QfuturM+A q, brist2with feathers, hidej$ith pain,bprance. ,(QrowsyN $er|a bloodcurdssar-whoose eyeballaG unappeasu envy. But noOb gaudin than thi/dpirateas it! NOWK2lay~ #"im"glaimaginsplendor. HowMHQould c people shudder1glo(AS go p{Sthe d2seaf"hiu,1, l'qlack-hu 2racZ02e SsFc StormHIisly flag flyA fore! And at the zenith ofQfame,suddenlyDIold village8Cstalcb, broww-beaten, black velvet d ArunkCjack-bootcrimson sash,AbeltJ"horse-pistol9e-rusted cutlass atCAsideM2 sl4("atTwaving plumeIcunfurledthe skull Abone*  Bhear[2sweobecstas>$G #s,3TomJ, P--the Black Avengerpanish Main!"  j,d Acare's determined)2runfrom hom Renter' /\.2theDnext[ Afore rust now+1 to&Wreadybcollecresources %)Aent rotten log nv%'an2digu 5 onFihis Barlow knif1oonrck wood ed hollow"puusand uttwis incan~,i8 dively:bhasn'tDhereovW!st 2re!^rbcraped`"ir Q expo pine sh9:i8and dis(chapely,2 trcH-[5hos'and sides wer/ds'iHra marbl 's astonishmenboundless! He scratc Ss hea a perplexed air7RWell,1bea*y> +Btoss5pettishlyStood cogitatUsuth wasfa Mqhad fai91and0-Brade0AlookR$on as infallibl byou bu OLcertain necessarylsBleft  fortnigh'BCopenCplac"8theP" h ajust uh3yout%a1s2had1los.  t0 H,9 |&Qno ma how widely+}Qk"w,~ bctuallunquestionably *-DtrucF2faiQ shak"-Q its Bs. H"Cmany C Rasuccee3but{aof itsBing :Q occu2himtit several timesC, himself,n;1e h*-scs2warvpuzzledy!an\decided $Qwitchainterf Bharmhought he tsatisfy at point; soe!ar<1he Csand aqfunnel-Qd depo!itJ9=$ F2 toyG and called-- "Doodle-bug, d $'#mev0Wgknow! 5 5*! sn1egaBwork"3bug e a secon2darted um)fright. "He dtell! So it WAS aAdonef !I ;%!knv5'"HeDknew2 iQof tr to contens#chahe gav^"Ś$ag%iT`he might asAhave>  w1 ,Oatheref@Btwicl.last repe2wasRssful$0Qs layU1foo Qeach a. Jus^%ebYntoy tin trumpet 3faintly dow%green aisle~QorestWoff his jacke|trousers,$ a suspe9belt, rakN Tbrush 4thelSlog, 8 n rude bow1arr| lath sword4in A7$Bseizse thingSbound, barelegg 1 fls "AhirtL7halfelm, blew an answ@9atiptoelook warily outk1way2thasaid cautp--to an }!ryH!an Hold, my merry men! K;BI bl06Nowf>q, as aiAcladbelaborarmed as Tom. Tom]Hold! Who s7ASher BFore_qhout my+q?" "GuGuisborneVAan's).^1art-L--" "Dar  hold such language=Tom, prompting--fo8y talked "se book," qmemory.l ~/ dsI*! I am Robin Hoodkthy caitiff carcas:Ahall%." "ThenRindee% famous outlaw? Rvgladly will I dispute#2the=Fpass3wood. Have aeyGWtheirqs, dump4eir.Brapsf e ground, struck a fencttitude,!to61kBv) reful combat, "two up andfdown."p!E Tom aNow, i a've goQ hang=Ait lM!61y "a," panhK !er k. By and bhouted: "Fall!K8! W`+ sha'n't"Nrself? Y(AAwors!it/4Whyh M@!'tv;A#ay it is inVbook says, ' Qone boa[stroke he slew poor $.'!toNr ,ame hit oQ." T#>PFuthoriti 1Joebed, received!whE@nd fell.&"4U Joe,^up, "you8o(N2 ki1*Ffair{f!docE_/ell, it's blameC's aQBsay, you can be Friar Tuck or MucAmillD[ss%R lam M h a quarter-staff; or I'll bSheriff of NottinghamJe w9h?Bill 0AThis a@#soadventures were cr4FATheni!beB6 L!wa- !by treacherous nun to ble s strength away 1ughneglected w- 4And/}! r 1entAtribAweepOC4s, R|Qhim sbforth,V m"ow(his feeble hands", e" Q fallTere buryuu 1eenqtree." She shT$ b&would have diedQhe li>+Aa ne0and sprang upMAaily a corpse.->dA, hi!ira!Gutre Ooff grieao <$noz4u3mor Bwond what modern civiliz= claim to h Qensatiloss. They;F-rather be year in than Presiden the United States 0 CHAPTER IX AT half-past nine!ToB Sid\1senm"be[usualir prayer=(onqK Aawak waited, in rest"imc<{it seem0q be nearly dayldhAlock;Bke taqdespair&and fidge#asrves demQ, buttbas afr+aSid. S12lay,%!st"upJark. EverLDsdismall<2C by,'YSness,a, scarceo[fnoisesemphasizeSC ticking aHh Ato b!itS-A1. O+"&ame! cT(!cstairs creakently. Ev1ly 6 !ts abroad. A m#Rd, mu(snore issued Aunt Polly's chamberA now4tiresome chirqf a cri!thA human ingenuity locate,JQ. NexV ghastly?SdeathwatcDwall bed's head made E--it#abody'sMPnumberedUBhowl{far-off dog roseg 3wasAa fa<K a$r O./an agony. At ih| 1ied+had ceas@d eternity begun;00 to doze$Aspit2e)chimed elevenl0A;#%8me, mingl Ahis !formed dreams, a most ' caterwaulwA raix&of a neighbo)awindow81urbSqm. A cra"Scat! devil!" aQ cras<an empty bo;z}ais aunt'sCSshed T#"dea single minute laterlGand jr$al,Sroof 3"ell" on all fours. He "meow'd" withn once orpn jumped  g3]*QL. Huckleberry Finn washis dead cat #ysAW1off\A,#edO#a gloom%thh," (all grass4graveyard. It &old-fashioned#ern kind13on a hill,5Da miK'Eaillage<1hadazy board fencet $itcAlean 1warY1outek$th!buZod upright nos1. G n!ed!ew rank M ? cemetery. A2old*spsunken in,Mnot a tombston!; {-worm-eaten qs stagg#Rover $ aves, leanaor suppor 1finnone. "Sacred) of" So-and-Soabeen pdm#="ittLR have7Sread,5am, now*1n i3 r7lFA wind mo $reSTom ft {\, complai(#atw(x\<R6nly ir breath6[ -Solemn(Q silew&ppX $irvyo! t arp new hea1yk1eek6ansconcQemsel2ithq protec0ree great elms$grew in a bunch?-WDfeet " "y U  42for H "a 1imeS hoot abant ow.]"btroubl !ne om's refld1ive%.aforce Dtalk) Qsaid $: "Hucky, do&ɘ6 ead peopleGZ3 usDqhere?" Zed: "I wisht I@eEQ's aw3Zs, AIN'T36Q"I beAis."ea considerable pau*"il\Scanva "#iss inward! n_ %ASay,3y-- reckon Hoss WilliamssI1#O'Q he does. Least8rsperrit"7, +a+2 I' #u MisterxI`  Aany l DQs him#A "n'Foo partic'lar1(tXalk 'boutase-yer  Ra damnd convers3die!. Qw Ahis comrade's armE1sai:Sh!" "What is it~$?"i nc%Atogeq!be#2ts.K C'tis again! z1you+{0Q! Now"OALordTHcoming! TQ, surmat'll we do/I dono. Thiny'll see us!'OhbA can!in^ Qdark,M as cats. ihadn't comecOh, doay!. Aliev<1bus. We(a doingl If we keep perfectlyR, may1y waB us N$I'll try toRbut, Y1I'mbBof a shiverListen!"be1!ir s e tof voices float% 4far`(A "Look! Se;Fre!"M  w-fire. Cis it." Somv/1figaapproaK'!Rloom,M tin lanternaTfrecka  innumerable spanglek  K#a d!t' sya. ThrexA'em!yQwe'reqrs! CanBprayNB:BThey! gto hurt us. 'Now I5#meo sleep, I--'"8 AHuckHUMANS! On! iWyway.'s old Muff Potter's }aNo--'tqu so, is AjDYyou stir nor budgBCharpfE to q. DrunkBausual,Cly--qold ripAAll O !, 4stiI5tstuck. Can'"1Herq#Dy coN.[8hot. Col2B Hot. Red hot!'re p'inted?r ,q"!o'qs; it's Injun Jo(2ThaFD--that mur!' breed! I'd druthe Zdevils a der'>!. ky be up t4The.| Dnow,! t 1men $re!e 1     ' hiding- Q. "H?9Dt is Qhird ;\*:wner of it hel TTreveaV1fac young Docts_`1carryingYcbarrowTA rop a coupldshovels onCcast#lo=!c2opeUF7" d1putd|_R56karH2ack1st fX2elm  Q closIhave tou1himurry, men!" !idTa low"#on91com at any moaRJy growled a responsgan digg'Fo(*2 no# b<"gr s)Qspadetbchargiir freighw Amouldl7 was very monotonous. FinaX Q upongScoffia dull wood*<2entO4'Ror twyRhoist'dg>Sy pritd!$irB, goB!dyF!Qit ru - `Tdriftg?Rcloud(0allid faN4he P!as3reaaorpse "it, coverea blanke>buCope.l(out a large spring-knifkcn;#da3z Tthen " Nm$cu Bng's, Sawboned you'll*"ou$ Afive\$ s?y alk!" sai.] BdoesSmean?3te. "You require3r p?Sdvanc(I've pai#'4B don(B tha ,; r Q, who Dnow @*q. "FiveBs agqdrove my q your fX's kitchen, when Ito ask f@(c to eaK3youWa warn'!!re2any goodWswore I'd get,AzQyou iuaa hundcgears, RAme j1 for a vagrant. Dta thinkiqforget?I^Sbloodq Ain m1 no.2nowvGOT yougot to SETTLE"r!" He EQreate<,e !isy Bace,n!2is  Tq8E1retacuffian dropped his !exDCHered #hi^(&rd~b next ! h-t grapplF "wo)Rstrug'and main, trampl% gFtear@3'rheels. !JoaAfeeta81 ey2%am!pa1nQ, snaQ3 up'/V"cr"Q, catYEAtoopCand  w'Tants,Q an oCunitwat onceQ,d free,62Aeavy5 of'n fҲt(Rearth"it8? c YiL A sawXCchanSj2theb1hilthe young man's breas+Qreele4BGqpartly , floodi  l* `ablotteXAreadcpectacf1 Bened Aspee!awHdark%> remergedO , '8two formsPRtempl }aamurmurulately, gw*gasp or two%2wasKm- rTHAT sc; :Q--damF0Rrobbe8body. After h9the fatal2in r's open R hand M dismantled } --four--fivss passeJ7.mB za1. H1nd dw#; C Q, gla!atand let it falla>g)sat up, push2bodA himLJ gaz]aK&confusedlymet Joe's1rd,ie, Joe?u .a:ay busi%#2Joeout moving.d]d+[%I!!it{] 3! TRT 3alkdewash."YAtremDI ew white.1ghtagot so"!I'BM!r!o-@it's in m* yet--worse'nw= rted here.vmuddle; c!$re=#an$gQ, harqTell me}--HONEST`Aold ar--didB it?zJ(qto--'poAsoulhonor, I nevt1ant5Joezc#Oh$+Qhim s, ad prom! -1youC?ay1inga he fe6G ) Bflat !up:3comX1reeX[ding li!.Ajammz%.5 'asE you7S clip ere you've lai'!as a wedge til nowbd{Uwawas a- I may die1if B1all on accou(bwhiskevV!axcitem"I .uC$ weepon Clife: fUO_;uAy'llsay that.( V8ray you Atelle--that's a  4. I_2lik</U !upE { etoo. D remember? You WON'Tc]a, WILL  A/ApoorS'Eture o SkneesUrstolid G#alaspedQappeaa,.)4'veA #fanbsquarej 8me,N# I<#go$n :MsXs a man can sayIy0an angel.bQ*1you^!he0est day I live.> ?Ccry.d 40$#isc 1anyYsQblubb. You be off yonder wa!go+T. Mov 3and5!leny tracksX"onM(quickly increaseQa run  &)He8 If he's as much stunne Q lickfL2rum2 halook of bel#he1eBtillzgone so far he'll be +}-e\!it:Ruch a>% b= --chicken-hear1TwoO tqs laterD0Rd manv ArpseA lid 2the ?+urno insp8!b moon' ness was completet 9too-X THE two Aflewqnd on, towarkaspeechwith horror*y Aback;%?aulders|!to, apprehens95'$yA$m &be followed. EVastump #up'Air p9&.'and an enemyw[+athem c+:bbreath"as"by"Aoutlacottag41yy.=21ark1*aroused +H-dogRagive wq:qir feet Af weqonly ge=ld tannery!wegk down!" whisp&1Tom|<Qtween5dths. "4AstanRmuch ]&ucC)'s hard pantAwere-1repboys fixed sSeyes z 1goaDBhope"4benir work to win it. ained steadily]1st,sIy burst open doo cgratef BexhaIiBshel, shadows beyond. Beir pulses s4Tomac2 2'lli!BIf D dies, I61 hav>!it?D m !?" y, I KNOW 1Tom#om&2t a$JEn he #1Whosell? WePBat aj  ing about? S'pos%!th1appEand q DIDN'T!? he'd kill usLvoO:  sure as *g <@  ~o myself, HuW8q"If anyAtell)t 3, i)Cfool. He's generTdrunky%U !--2 E s C "itrN!ca#teJ:#sQreaso 8QBecau>&"'d1geSwhack"F. D'3 he*5seeT?$ \7!" "By hoke:$'s-!" "And besides, look-a-here--maybeqfor HIM<No, 'taint likely ^GQliquo5ghim; I#th  |h Rhas. 9pap's full Atake/belt him&3hea< a church)2youn't phase 1say his own selfZ)i3sam !C, of(Fqf a manjJGoberZ W&)dono." .*$ve*p)2you"an!1mumw%to.*  #atadevil 5Rn't myQy morWdrownding us&a Acats!weto squea(iF+"ha!. X>u, less swear to one/Z"weveo do--0qkeep mu"greed. I Xkb. WoulGAholds_Un we--" "Oh no @! dA thi . for little rubbishy commokngs--speciwith gals, cuz THEY!c anywa ablab i: huff--but!or%^e writing Ra big BClood2's m0 applauduis ideao1BdeepAdark  t;1our3 circumstances1surRings, ijbe pick'ya cleaniOlvAmoon', took ar fragmes"red keel"7 f 1pocDkK1 onV#wo0fully scra!'these lines, emphasizing each slow down-stroke by clam~7his tongue AeethRQ lettpApres QCe upW&s. [See next page.] "Huck Finn and Tom SawyersCs!ndI+Awish may Dropd!ea6 QTheirT"if33eve1ellX!Ro  p5filKadmiration of~acility inA, an sublimityQlangu3HC'4pinqs lapelH6was(Qprick,QfleshWN Hold on!!dob. A pi1assA8have verdigre#n Qp'iso$/ swaller somic --you,a." SoSunwou8bthread"%his needl!Aboy  1e b.QthumbcsqueezBa drfA. In,{Dmany2!s,amanage2sig!Qiniti9u~8Hthe ~ finger fo/e3ashowed  1ph"! HQan F, 1ath%2bur9!e 1le q5 to:,dismal ceremoniaincantfqfettersJ$ b#ir8consider(Qbe loF"keArwn away4!ig[AreptURlthil(!ugX$Dreak[Wother#A ruiEAuild2nowLQQ*iVTom,"6, "#uYAEVERf ing --ALWAYS?" "O r it doe]cdon't y difference WHATv xY got J BWe'd"--Q6YOUe Ywts rcontinuHtime a dog set up a long, lugubrious<outside--within tenc*md boys q",qan agon+!.ich of us^4 he;%!ga4 dono--peep througw crack. Quick 1YOU#-- 1 DO#Hu2aPlease1 72h, lordy0thankful0I2his)4 Bull Harb`" * [* If Mr. y+d a slave named Bullk spoken of him as "Dl!,"aa son 2dog!atZn"]   1--I" ( most scadI'd a betmM a STRAY dog he dog howledv~W'3Ats s:"nc&.2my!%!no'I IA "DOM! Q, quabAwith? !Z%eytrDHis z"waly audible"Ohr, IT S A1DOG1, qK Who7Amust3 us both--Uright"5.+vgoners.EU1misM   V< I'LL go to. I been so wM m2Dad_1Thites of p1$oo!do BveryD a's told Ndpaxgood, like SidNr tried !noaever I 2off time, I lay I'lWALLER if"s!7Tom0"nx4( . "YOU bad!"7Q"Cons!it ^ ld pie, 'longside o' BI amTLORDY 9 only had half your chanceom chokeds6andh: "LookyA! He?9BACK to us(ucky looked!joh "hil9he has, by jingoes! DFRbefor.bhe didpIS#l,e"!this bully, y. NOW whowing stopped. Tom !up ears. "Sh! k BthatI#0!ed"Qounds--like hogs grunting. No--it'!!snC mqThat ISkWAbout"it8I bleeve3Uat 't| #. Bso, a. Pap rRto sl{Aere, Stimesv t$"gs laws bless<1he Rlifts1s'HE snores. Buhever comOto5own{hXEdventure rfZsouls`/Qdas't`o if I leadR 1to,2, s~ts quailep_7the temp up strong:7 3oys#ryJAnder{2ing'7 @#to@Sheels Se !y 4btiptoe  , 4oneJ CthervJ~4hadlqwithin 'qsteps o|!er'pBstic  it brokera sharp snap.man moan]erithedp his face came inK . It was"ha+rd still\|C too)Aved, )Dfear|(? A nowlypid out, n weather-boar& $-%at2 di# sQa paraword. J qrose on5'B air!w1tur n+!th-2ang  Ua fewQ Xt.Awas $cFACING7nose poi* heavenward! geeminy,VHIM!".A botds a!--say a stray dog3ai Johnny Miller's house,A mid2,!#as.eks ago;6 ppoorwill=1 in4litbanisterZ2ung|aame ev?0U L#B}!yej W"ndyE#se 2. D&cGracieT falls2Afirebcrself terr next Saturd;#Ye@sBDEADwhat's moche's gbetter, too:you waitbsee. Ss# ,Cure  z,)a niggers sN:2all *h<7c,dWBSihis bedroom Kh"al Apent3$ss]$excessive cautionCfelliP congratuP.2himMRCknew escapaden1was _Raware3the gently-Qas awake$Y bv5. eawoke,=1andCrak$q ! ig# lAsens&the atmosp+HA%##Wh% ae not called--persecuted till As upRusualK4  KLtW.%Nairs, feelowadrowsyr family R at tԌ!bu finishedQkfastAI"no of rebuk)Nwere averted eyes;:!anA'ofCHthat struck a chillhe culprit' s He sat "nd &reem gay2it -Nwork; it E$no smile, no; he lapsed "leyheart sin'$tdepths.HNN"idG bbened ir3hop>g2Gflogged;Tianot so aunt wept overxand ask*m-E !gobreak her[!o;rfinally3him o{"ru&3andRher gray hair '1 so=~ '?2 usZ hT: try any more.Z!waCan a thous"ppgaA was sorer nQ:"anL1odycried, he pleaded for forgiveTpromised to reforh 2andj {.[jdismissal, !!he_1wonan imperfec51cestablut a feeblfidence. He lefk  Ro misC vAl ren4ful(2Sids 2 laB prompt retre back gat unnecessar_!mo^o school O%3sad41ook+}hqJoe HarHDwondered i-!ha!ic%nir mutuala<Abody2Dtalk r intentlthe grisly "them. "Poor fellow!" 9T+Cught a)Son toG@=grs!" "T2'll) iy catch him!" This ift of remark"milB, "IzQa jud';=frNow Tom shivxAfromA to heel; >D stooG3 of+3JoeZ$isB12beg}s6Bbe, andas shoute!'s  Aim! 7com!!"U!o? Who?"ctwentyT8. }1QHallo0s1!--=3out!tuM{&Am gey!" PeoplCrees over\'Aheadrrn't tryYB--he4doubtful and perplexed. "Infernal impu "!"aAa by~er; "wanosand take a quiet$aFwork12--dQexpec 263any=part, now u- b, oste%Ausly]3ingC" btAarm.;pa's facw haggar &the fear tha .W bstood 1urdman, he shook ara palsy4bface iNBhand@ QburstJa tears P!do#friends,&sobbed; "'pon my pThonor> z0iho's accTyou?"F" aYicarry home.xCliftme1and3ed ` thetic hopelessnes5sw!:"*Q, youaaised m/"'dD."Is ?V i4himM#. msiy anot ca=1easmhe groundn-*BSome!1tol"'tEM8Ond get--"-1hud Qn wavr4f2les` ra vanquSgestus?"Tell 'em, Joewv'em--itl0n,1tooMbEstar`#he  2-he8 liar reel offrene sta?_# FaFlear skydeliver God's Eningmp]f1seeAroke3tdelayedr JJ3illBaliv'!iraimpulsx  BoathE!avubetrayed prisonerafe fad d 5wayBinlySmiscreant1solrto Sata.#itIbe fatalReddle]~ Rroper-1sucQower - a"$hyyou leave?"DwoC|d Qfor?"ab BsaidRn't help it--$,"amoanedx:2 ru+ ?1see} 3but he fell to5. d repea)BjustZSlmly,minutes after inquest,=Foath 1seeCwerewithheld1q 1rme20qbbeliefH1Joej h Aevilw become,Bm most balefully interes1hadDA , yB not+ M  bey inwu(bresolv w= nights,d#1L should offer,Ih%ofPa glimpshis dread  3hel2rai !of[NRput ia wagone rremovalQwhisp3 Q 2ingv  l0!blqlittle!; Dboys&tXappy Tturn n$wBtheyQdisap "ed1morEn onarked: !three feet of . 7it O AfearL1ecrx+ad gnawonscienc /iqs sleepvAas ms a weekG1at Afast_~3Tom/' !alCyourx1so t3youp8!e B hal9"ti^rTom blaband dr"c H's a bad sign, Aunt Polly,*dly. "WzRgot oB min_d?" "NQ % '[Aof."k23oy'shook soaQhe spcoffee. "An 2 doTustuff,"Ur. "Last said, 'It's 2" t it is!' Y7Aoverover. And y!, 'Don't tor6me so--I'll-"!'S5CWHATQis it$V?" E+  1Tom( re is no\2ing*+ Qhappe\1BluckF2cern passedm7S's fas3 torwithout kno.!it" Aho! W3ful1. Im!ity4 my24Q3its7  S%Lqfound a-Sightypr itself . Becky Thatcherd"st #tolMT had EQhis pia few day<'"whistle her dow+!,"1fai)&HeTfind `"ha her father's Lqand feeI%< was ill.rif she p2 diP)9a3`qno longbdok an `@tar, norq piracy charm of lifCgoneMadreari2lef}hoop away,#Bat; $!wa 3joym3 His aunt "ed& 'rll mannqremedieS2him06wasRose prwho are infatuqwith pamedicinea-fanglWthods of produc2 or mend:an inveterate experimA3 in-s. When sRfresh'cis lin Sout s!in'k{2it;Kn herselfp?iling, bu/!el"at Whandy subscribert-!ll#!"H" periodicalNphrenological frauds olemn ignorance %B inf#1was^th)strils. A "rot" they cont about ventilR !ow$odRet upj/Ro eat$Cdrinl42howQexercI 2 22frag?!onTDelf *.1sor#clto wear,&all gospeӲs=aver obser!ha! h-journalscurrent month customarily upseXhad recommenO <Rbefor21s simple aonest e 1was+5 soan easy vict!gaQ$d <]quackydthus arm:'bdeath, .9 pale horse, metaphorici 1spe> "hell foll"Qsuspe `aot an &1 of[$$1balQGilea6 disguise&he) neighbors.n!wa6 creatmee3new/,low cond|)f$e!haRaat dayN*,bhim upehi}!wn mBqa delug Bcoldn she scrubb3a towel liki7Aso b?t him tona*Bhim Aa wemqblankets 1Aweatas soulw1 "the yellow stainsiV a his pores"--as7!Ye rwithstabAhis,boy grew morh  melancholyp!ej|added hot baths, sitz hFClung,A boyX#"inbdismalShearsRassisslim oatmeal dizbr-plastersb calcuhis capacitn)Hould a jug'sfSevery day}3cure-all-#om come indifferQ32ionn!!isfW_0cphase r1the1Tlady'L,constern;ice must b9!upny cost. Now?of Pain-killthe first a She otd a lot)Ua tasteD 3as with gratitud'Rimply7in a liqui0 J  {2and&P3els2!piZO iA gav a teaspoon# 6Xeepest anxietB,qe resul &r mstantly at rest,Zat peace again; for""?broken up` #bo+1hav!#wn a wilder,i , built arunder him.3feli.to wake up;-Klife might be romantic enough, iQblighy, , c1getyD tooiAsent "oo  %ng it. So heat over%!ouC!nsd ,X1finchit poO fo+n# 4Qfor in4ofthe became a nuisanch Rby teeZT help'2Aquit)q >Ieqen Sid,had no misgivto alloy!dePEsinc&3TomMF bottle clandp#el (" !rebdiminish" !itW Cccura t5was t!ltIta crack !siG-room floorit. One day athe ac 3dos  Sy"#'su$ c along, pur#eA(%heHR avar.lqbegginga({said: "Don't askit unlessAwant&Peter." But s1ifi# W2. "You better make suh$?ure. "Now you'v( give it to you, because E $ #m"mebiEQyou d,mustn't bl8Ebut your W agreeableEH mouth open)Voured.Sprang a couple of y+Aair,LSthen %ed a war-whoopsL!f & the room, b st furniture,/ flower-pom*  }Z havoc. NextiRose o}"hi6,#pr ja frenzy of enjoyment,<2his,F !jL proclaimingunappeasrhappines % Atear ?ahouse a spreaQchaos>destruct! Gath.U!edDime r&!im/w$double summersets, 2naly hurrah,AsailG1ughVt, carryK1res^Gthe ZGm. T  Bpetr astonish2 peer glasses;Alay ;qor expiaKRlaugh?#"on earth ails@Tcat?"N'u, aunt,"O. "Why,+i!diaact sogcDeed IWknow,e; catsq6kthey're having c A" "$ado, dof'?"Btonemade TombD1es'at is, I belie<(2y dAaYou DO1-  Qdown,n 3ingwAinte>emphasized by{ R. Too?@!viAer "f.R handthe telltale 1visC ed-valanceUi ald it tom winc 9yesBAraism Qe usuandle--5"ar.csoundlj %DimblS, sir (1tre"at)dumb beast so #pi Thim--Zd!nyj." "H!--you numskuhQat goAdH" iqHeaps. BRbif he'?Qone sqa burntF4out2! S2 ro 0QowelsX!of3'w"n,PBthanra human!" Z!fe: sudden pang6o1Thi1 pu yhl |6 ruelty to a cat MIGHT beboy, too  soften; 2sor=r0',I Rshe p<'3 onDheadd gently)'qmeaning -!stQ. And , it DID d !-&om)" i Bfacejust a percepttwinkle peepinggravity. "/!haf Q%ton-B? Ye*BforcX," adR: he 1lea!if!cr`wqno choi("By` `h2farFMeadow Lan,t !ll to "take up" t, Qd fai#up"eaG;, !Fink %,Bhear old familia!nd rmore--i Bhard0v$ou<ld worldc]submit--b A for1theQ sobs.a thick@O1 JW  2poi7m_'s sworn T , Joe Harper --hard-eyCwithD5tlyand dismal purp=Srt. P 9b were "two(but a singl&" Tom, wi 9#ye1fleeve,qblubberBsome about a 6p to escape from hard usag1lacsympathy at= by roamBbroaOFto return"3by  Athatm=1not"m.it transpir was a reques !chK2hadKRbeen  nIkN3#a)1hun1 up_. His mo ad whippfor drin ScreamhX  d knew ;*1plaUtCwishto go; if.<!waXpl but succumb2opebe happy0a regretDing ;"erW1boyxA $un) ddie. As=wEwalk gClong7 +compact to u 8 byePQthersqseparate till death rgm2 ikyj3lay.:tplans. "Qfor b2;a hermitC1livb qn crustJa remote cav1 dy O a#rand wannRgriefQ% m31to 1he U S&a4~_conspicuous advantages1 a "so ansente!pi Three miles below St.easburg,|!wthe Mississippi Riv "a OaWQ wide"a !qnarrow,%ed islanS \6$2bare  o"d well as a rendezvous%1 in2!edrlay farQtowarL her shore, abrvba densk{Twholly un o1estJackson's IC chosen. Whon!*aubject%Qiracis a matted2 ]Ay hu(up}R Finn8 JmRqly, for rcareersho hhe was$jy,75tlykmtu#!ne;I$ot]river-bank two,vn1favorite hour--4\csmall log rafIthey meanLLd. EachJr,2ookl6)such provisiA4d steal amost dnd myste!way--as bec +butlaws_:Rbefordaftern2donCy."agsweet glory of b~h12ttythe towne"hear ." All whohis vague hint!!cas"be mumTqit." AD Tom@a boiled ha9c a fewKs 1%ingrowth onQbluffMthe meeting-8VstarlBveryAMT lay Qoceanl3Tom6ed Qbut n3 m Q>the quietenN!ve%w, distinc$ 6stlAansw 1bd twic; these sig, K&e ;bThen af5ed voice!We!reTom SawyK^he Black Avenger Spanish Main. Name your namesuck FinnERed-Handed VTerro]2easw BBfurnq rtitles,56hisIliteraturA'TisEC. Gicountersignwo hoarse whispers !e Hawful word simultaneJ"torrooding<: "BLOOD!" 2Tom6 sQUC4Cdown@qit, teaboth skin1F/!es~ome extenXB'BfforF {., comfortable path (Bit l8the!of pCicul8!da/rso valu[&  b d4bac3had Tworn 2outy'"it $.gstolen a sg* ntity of half-c#leaf tobaccol- corn-cob 3pip/.3An3e s smoked or "chewed"A saik !do2tar"z)J ! w1hought; m]ahardly'@Z"reaat dayqy saw aWa smoulJgG1a hWd$3aboy qwent stc'@ 5andjErhemselvsa chunk Rn impR'adventurLbit, sa r"Hist!"[A nowT2theV suddenly halt!fion lip; movM on imaginary dagger-hilt4!gi1orders inX"ifj/Dfoe"cc, to "%W)'K dilt," " "dead men tell no taleWhey knew2 en< raftsmen 3allQ lC in stores or haae2{]D exc^ aconduc` /1 un"AicalAOPved off, ,iEmx CHuckJ1oar!Jo=D qorward.>stood amidships,T-browwith folded arm/7hisTstern_: "LuffDbI"wind!" "Aye-aye, siraSteadyNAady-f it is/!Le!t go off 1P 0Aboys 2dilcly droGd mid-stream vno doubtET"gonly for "style,O! t!to E any&particular&a?"l'?1 '?" "Courses, tops'lflying-jib?"Se  r'yals up! La[Saloft,$! a dozen of ye --foretopmaststuns'l! Lively, now1hak\/maintogala@RSheet braces! NOW my heartiesWHellum-a-leeKTrt! SX2wJ4comes! Port, 1NOW, men! With a will!  T\ drew beyoc7mid#&   ed her head7?then lay oi)Hnot high, s  B notathan aEor t=C82. Ha Awas j!duthe next;-quarter ran hour2t1wasGing BdistXwn. Taglimmenlights showed rit lay,1 "sl#,j vast sweep ofAa-gemmed water,the tremendous ev:4!ha happening. 7 7" his last"-Q Ascen!hirmer joy06ter8wishing "she"2rsee himuQabroathe wild sea,~ng periladeath Qdauntj%, his doom| a grim so/rlips. I,!bu mall strain'0R,!to&vet Island 6aeyeshoN'Cthe ["edZ!a vnqsatisfi\a' p last, to q3so I y came near let#e \Q drif)m\ArangQthe i< oediscov "j !inF%qmade sh\o avert it. About'clock ip1morU'Agrout+1bar8 B thewaded backzforth until Ahad 2"d ffreight. ParRlittl|'ngings consist an old sail"isgaspreadIr a nook ce bush$1a tbo shel6eir"s u TsleepVqopen aiDgoodq., .!y6/sk J log twentyirty stepk  sombre depth 4estDen cme bacon1fryb!anI1suprgAand fY"upcorn "pone" stockw4had;seemed glorious sporuAfeas%at wild, freee virginunexplor%5 un CR, far61 2aunm Ba returcivilizations a climbO&!ir3 up6Bfacethrew its ruddy glare the pillared tree-trunk$irbtemple?X aDfoli>afestoovines. W'!he crisp slice of ""on,qallowan* pone devou Bstre'3outt grass,Q;contentmenyBhave3" a coolecZ Qthey 9dena romantic feaZ 2 roh camp-fi2AIN'T it gay?" !JoIt's NUTS!Tom. "WhathHA Aay ikasee us Say? WellB y'd just die to b&be--hey y I reckon so, 2; "͉s, I'm suited. M/u't want"better'n$Aever@#Cgen'ally--and > Rcan'tXband pikAa fe<Z qullyragDso."HAthe dfor meXY6!toCup, y(!ch{"sh 'at blame foolish5uYou see 3do ANYTHING, Joe, ) aa[hermit HE haRbe pr0dxm# t0naany fuyyGUll by&tt!ayPAOh y What's \ "but I hadn't thought muchFqit, youT. I'd-deal rather b mq I've tN(!itC3, "'"go}#onsQ!adQlike ^^Ato is`Ce's M'respectedr2 a Q's goWhhardest 6Ican finput sackYa 3hea)s<=$1raiAd--"5at does he put V for?" inquireZ0Fdono s've GOTV.6rmi5!do2:1do 3/5wasDern'd if Iww'v?an't do%`#WhY:'d HAVE toP'N0!itY6I3n'tv"it2run.S" "R "! you WOULDnld slouc<0be a disgrace U no respon*ecemploy)chad fiqgouging Qa cobQ now A"tt:e', loaded it) was pressing Qal toRchargAblow! cloud of fragrant smokj&iMfull bloomp-1uxu   ) envied himW majestic vicM secretly &vqacquire?hortly. 0AHuck:Q1pirT?E+,"Oh^#n1a batime--(b 2hem3get "nebury it in ?6#ir $ w!re's ghost Fings]i kill everybod --make 'em walk a plankSA y!wo "q Joe; "YAkill5RsNo," asT## 2g--they're too noble}Tbeautiful, too.Awear[bulliest }es! Oh no! All goldsilver and di'mondswith enthusiasm#o? !hy#B." o"caDbis own orlornly I ain't dressed. h"a &ful pathoH=;Z#go3!bu1$sex@Ftoys tolbe fine#escome fast,a h0Sbegun <W^2him!^2his'4rags}Qbegin,l(Lqy for wy  a proper wardrobe. Gradu5talk diedk ;vwsiness6'[z t eyelidm fBwaifF pip3ub9U (Drhe slep qcience-aR wearL ta} 3 :J%in . 1saiYayers inwardlya, sinc Dith authority them kneeXQrecitC1ud;h"ru2d a0!no$s(1m a,,were afrro proceU lengths asS, les:might call2 a dspecial thAbolt3 c6cn at o Qy rea1ando7'reimminent verge of O.an intruder( ,: not "down." F ,4e>41egafe$fWhad been doing wroD -#eytb. 3meaAthen!rezr^CcameY to argue it away by remindingzhad purloined1tme@nd applesfAs ofKB C!thin plausibilities;E!m,che end? R!ar%the stubborn&"ta-was only "hooking,"F6,O"am@valuableCplain simpleSing--Oa command againaMi"Sov  5hat;a4 "bub", )U2not~Q be sd.!thl}Ume of.3$ e؍uP Lc 39]dstent # Hfell CHAPTER XIV WHENCawok!, he wond% he was. He sat5Q rubb Rs eye'ny"omBd#ool gray dawT#ya%-8of reposKdeep pervading calmGBsilewoods. Not a leaf r!!; ! s!ob|great Nature's medit!Bedewdrops W 2upowCleavQgrassBQ whitY!xcPathe fi,Dblue3werK|some hand$r it laydst to (/Bdit by a narrow channel hardlybhundred yards widetook a swim | hour, so i the midd#thEnoon2Yy got6ptoo hungrRtop tdthey fared sumptu"ha-%themselves $balk. B_S soontto drag!en6} 2itybrooded pG! s of loneliFsFtellUaspirit1oysy!toking. A sorQundef,e creptWmVdim shape'6#--budding homesick'Even Finq Red-Ha.was drea doorsteps\empty hogsheads~all ashame",1weayC none was brave to speak &a. For A Aboysbeen dullyM!ouna peculiar A ,2"sometimes i>2!ic"ofZ##ckAk"ke6>!no' #(isAA1 befpronouY!fo a recogn72 st a glanc4 \aassume1ist23 atfR Thera ,R, pro_band unK1;Yqa deep,ren boomK floating downDn.#is it!" exclaimed Joe,S. "I [!2Tomi whisper. "'T@!8thu+@Dan awed tone, "becuz4'bHark!")qTom. "L7q--don't\#."2wai% 4hatSan agV] ame muffled boom trouble$| hush. "Le(5seevBspraVAfeet%"hu_ MjS1ownp1y pCy u(1ankM!pe2out+2ated 9!steam ferryboakTabout1bel' v,3Aing @, urrent. Her T deckMScrowd b*<!re^# amany skiffs ,T&oru9 neighborhooBcoul{determine what em&!jeSwhitedburst z E's sKas it expSand rNa lazy cloud, tAsames Cb ofz1orn steners again{ 9now Tom; "somebody's drownded!`HGHuck&*last summer,\Bill Turner gotVvy shoot a cannon ov$at makes him comRdtop. Ytake loavBbreaRAput &q in 'em2set Tyr,anybody!!, L'1ll =9i #!op'I've heardDthatUJoe. qread dolR!Oh)](Ld, so muchW&it's mostly v 72SAYib it ou%. "y >6say<iqHuck. "p r@O1XWfunny. "But mayb!sa)E . Of COURSEb do. A1$<Tboys agre=AQreaso(1TomF,@% a!uat lump3Buninfeescaped, unawaR.Bby Joe timidly H1&ra roundB"feeler"3o hI rothers  # aa ;D--no[_but-- Tom!er derision!, uncommit s yet, join"Towaverer quickly "ex)#ed 1wasTT g f<ascrape4 as#tachicken-hearted a cling-o his garme"!s z&uld. MutinybeffectV/1laid$qrest fo{s moment."heMQened,&#no&H to snoreTQ foll13nexc#laG)lbow motioq,>V %@1twosntly. AT he got up cautiously,7CkneeZ#BsearQ<the flickerflections flung%!he"*!piJ !upDed several| semi-cylinder:3hinAbark%t sycamo)1finchose two whichto suit himin #3lt #fi&ly wroteV@shis "red keel";4qhe rollBB!pu"his jacket pocketFtM $he+Joe's hab remov$lD  owner. A CalsoQto the hatschoolboy treas most inestimable value--5m a #ch India-rubber b ree fishhook@$oEQthat !of marbles n as a "sure 'Lcrystal."tiptoed his way #!s Y "he  h drhearingstraightwayc=a keen ru  "irr \-V A FEWsirX&!waM ) BhoalNbar, wading qIllinoi].re. Befoc depth rea,%Chis  half-waF  a:" p="no%},#aso he k]1wimKremainingOSswam bing ups   $=faster than dcted. However, 1Zr6$al3AdrifUlong BoundUR plac~JfRmAis hA N6Aiecexark safP .R#,35ing. Shortly before tenFecn openroppositBDvillA saw2 ly ? Btree- the high8. Everything^quiet undCe bl- !stK2He dkRGZ1alleyes, sli!c, swamor four strokXclimb7(I)"yawl" dutyEPboat's stern!1thw)ited, panting. ;!ra!qbell taavoice gagH1 or:o "cast off." A]j "la("'sh]ZsAup, s 1 swQ4voy abegun.M in his succ7!fom*ait was2^AtripB 2. A/e!a HRtwelvcifteenSwheels stoppedDTom aoverbo."ndaLysdusk, lSfifty6Bdownk,<rof dangpossible stragglrHe flewY unfrequenl3leys$]C:r aunt's QfencehoRapprothe "ellE lBin a+)1-ro Bndow"a 8was,& r/ Aunt Po:Sid, MaryfJoe Harper's mother, grouped togeB talTH s b ' &the doort B dook softly lifBlatcn he pressed gHyielded a crack; ntinued push,G= band quQevery it creaked,wQjudge  squeeze~9ugh ;i #hiq, warilWcqweblow s=I5up. >CAor's , I believe. Why, of coursr-cis. No , gs now. Go 'longqshut itF"."j"edM"la"Ded" 7`|C"tould almo\"!uc nSfoot.#asJ "Q rn't BAD, so ay --only mischEEvous. OnlyRgiddyharum-scarum, F3He Z2any bresponoa colt. HE never mean12hart@2]%st2boy:awas"--g&he!cr[Irjust so{my Joe--always full ofdevilmentbup to  rischief G`as unselfis'3Das h"belaws bless m&w2k I.an!htz#m,:once recolEAat I3wed myself ]Yis6$Sand IP1Ahim Xgi#ldv!, R abus!!" CMrs.ba sobbebif her3 3hope Tom'Jvter offi*BB"butQ'd been 5in some ways--" "SID!"the glare 2 olc3s's eye,yBnot 12. "g9N_%st my Tom,"Qat hene! God' Cke ctQHIM--F< YOURself, sir! Oh,G2, IuR know=odim up!!!!Hesuch a comforjla he tohQed myJme, 'mosrThe Lor,!th2tqhath taSrway--Blb 1nam"21!w$Ait'sKard--Oh,! Saturday my Jo<#er bmy nos D him sprawl%aLittleH $K !n,TCsoonfKto do over K1hug3and1him6 IeYes, yj1howMfeeljust exactly/longer agoqQyeste(Snoon, took and f3to tPain-killI$ ct@e house down!Go%Agive"I  ''="my thimbleY3boy 1deaab P  H"An'rwords I7Ahear2 sa6Rto re 2#Bu\6Tmemor$X1the$la3sheqentirely as snuff;:T now,Nm Bpitythan anybody elsP #ou E cry -"pu^4Q%kindly word #imm$oY)DFa nobler opin$ H1befdStill,rsuffici Bhis  grief tB!sh] tIoverwhelm herB joy;eeatrical>aappealKarongly0is naturAo, b]R resiJbnd layX*R. He&on'F#ga|qby odds;Bends+ conjectured at fir!atP(/#e#le+;M+ec0rraft ha Unext,2]she missing ladspromised!shqB"heaQq" soon;Qwise-8*$"pA %atU "Sdecidk8g`fC"at tturn upnext town below,;|N(found, lodgede Missouri pQ"fisix miles t| nBperitIbust be`%1ed,1 hu have driv4rhome byqfall if5U1soo/  W searRbodieb!8Qfruit !ef Amere2cau; 2ingaoccurr} mid-channel, sinc Qbeing swimmers,otherwiseSBesca|r Wednesday A. Ifsuntil Sunday,3opexAbe g\!ndMfunerals&$ p"onA shuddered. g>Dsobb-j0 2go.  a mutual impuly two bereavedMA flu =/5Qeach Pb's armvQhad a|,A-o{!#cr jwparted.q was te+ far beyon`Q wontu+cRto SiMary. Sid red a biCMary<#ff 6. and prayeM so touchingly, so 62ith qmeasure1lov8OGer old tremb/Avoic  3welin tears ,B sheK&9h Rstill3A5#shZ"dsrmaking -sejacula1romB, tounrestfu and turn:Q "at* "as", !oa.| sleep. Nboy stole @;*cgradua;Aside, sha"e b-light=#andQstood4r Gher. HisIrfull ofA $e [5hisxq scroll.+ARto hi he lingRconsi"R face,arUsolutW "s x Bt; h(ark hastily iv9 !ntv k[2lipAmade#stORexit,pWabehindxAthreYhis way backmhB!no \Arge ! S2ldly on 2oatwc tenanRxceptWahAman,(xiE slept like?ven imag] CuntiGS 7 zi-<$on. 2 up. When h!pu`!a V6$abhGD, he2S quarrCacro  Qstout Awork !hiT !e , side neatlyn" ts a familiaraof wor1himYBwas &Aptur 3b, arguLRat it;1 beFAshipfore legitimate prey!qpirate, a thorough @ 1be Cfor z!enCreve8B. Soo<a qand entBoodsslwM`arest, torturin Cmean o keep aw:!an]n;Vhome-stretch far spent road dayJ"he r*DRabrea  rVA barr{JO k !unzbwell u1gilI:2eat=its splendorhe plungtream. A "he paused, dripp" treshold2cam + Joe say: "No,]true-blue, Huckqhe'll cl "ac?won't deser2zstm uZ>ğtoo proudfaat sorXI a. He'sBo2 ora55C whac[8/!e 0s is ourz^i4hey?" "Pretty nearKrnot yet_1wriIAsays:B aregO 2her+? W$\he is_2fine dramatic effect, @Aing +l.o%F. AW:o "co2fisshortly provide?2as WQys sea G!itGunted (and adorned)#Qadven*% Ba vaRA boa_ P"anp."wh p>AdoneHn 5hid)BawayAshadwQsleep 9!ss&'ready to$]>e#I AFTER dinner 4ang !ou-hunt for turtle egg+ 22nt *,poking sticks s yba soft vNe eir knees#duJ!A5. S9tAould{|igSsixty<cone ho6Qy werfectly round'ea trifle smaller`an English walnut famous fried-egg(gHCnighFanother on FridaBnq!1AftK7o%cwhoopi ua|s chased(j2anda, shedclothes ,  _tere nakePthe frolic far1 upqshoal wstiff current, wYtlatter {GC leg 1unde7^1cre qun. AndX9 !op) osplashed iY)Rfacesw palms, !7ing#Q aver-@Grto avoiQsprayQd finb g! "ug,jt0 st man du$s (9TAall WQtangl6S"egucame up b%b, sput q, laughqand gas1forth at on{ )BQ7imeh|aexhaus$1runBand  dry, hot!li ?+3covB_"up !by.!byk2terjo original performance onc/>3. FQit ocX /Hn skin re ed flesh-colored "tights"F6afairly!#qdrew a i circus--&bclownsP* b none  |"R thisRest p  `a. NexAy go %ir:+l"knucks""ring-taw "keeps"at amusement grew stanH1and a BTom Cnot ,; kEin k;@f;trousers %kiY!stfof rattlesnake his anklehq U!hecramp so lo8xhe prot+ @Bchar )di *Btime6Bboys!ti%ndwD res#waapart, dropYq"dumps, fell to3!lo1$ly"thEj Ato wlay drow1un.s u  r"BECKY" big toe;*Acrat`!9Angry5 1forD weaknessXqhe wrot!f ,!!thgcnot help i !er&itAEtookz"ouc Aempt# by driving 7a toget7!nd 3 m. But Joe's D1hadhn$Abeyo Bsurr.q $o 2Rhardly endBa miserB iIerlay ver surface.was melancholy, too"waeFhearted, bu)e~A noty 3howexa secret}^ to tell,B "this mutinous d2sio72not#asoon, Quld h$+1o b6Y@Bsaid2eatof cheerfulness: "I beY>Ebeen F 4is 1efooys. We'll( VgAThey>'ide1lasomewhY6UHow'd ight on a rotten chesto% f#--But it roused onlnt enthusiasm 2fad no reply. Tom!onz+3two!se}Aons;KAfail($ooI discouragz!k.M%sa  %" a A!lo%fgloomysid: "Oh, let's !!it up. I wango home. It'sQesometOh no, Joe''ll feel be- b{($by (T?!JuD 1inkah2?C" "u$ $4for)"(t) Bing- 2anyJS" "SQ's no.$Bseemp1it,0chow, w 2re t7! to say I sha'n't go in. I me b"shucks! Baby! Yousee your4,XAYes, I DO0#my.B--an)A, ifhyBe. Ih$2 ban(Bare.c'U"%ed.wlQ cry-I m,"we A? Po08aing--d8?t$it<?'so it shall.2alike i+Xe, don't you`sFstay|?ir"Y-e-s" !ou  . "I'll:Q spea-2you2 as- as I live.1ris\!"TQnow!"&9ved moodi [6and&#d<t!ho#1s!"hNQwants'to\,$ho1et  ed at. Ohr#3iceTand m[Ries.  V,A? Le0f#unts to. we can get0{aper'apAB< as uneasy Blarm 1seeGgo sullenly on/ sUAing.5# QmfortK Huck eying"prjO9Xso wiy5 such an om%K. Presently,v2 paxAwordwade offh"the Illinoie'AAsinkQglanc bU'3loo> `;yVYI#gog!ItfM L4  it'll be worse. J*usR"=)1canKgqAstay27+I!gosWell, g/--who's h ing you.+QCpickR scatqclothesjvtAwish4'd ol3youi`.wait for youq!weCV""3ra blameh5all!st q sorrowR awayM3Tom _Ba!6ng desire tug!at;#to ]#gotoo. He hsf stop,; sw Aslow. It suddAdawn y awas bemBverypQcT3. H2one Y-d?s comrades, yelling: "Wait! (tell you some!F#y j!ly1ped$SaCgM zh5e1ingc yK|cCat ly saw the "C"s # aN set up a war-whoop of apCk#1saiTRwas "Aid!"3qhad tol]m(,#2n't away. He made a uible excuse;O!hipIl reason "be:" fa#ev<T#DthemmA ^great length ofSs$so#men 1hol eserve as a A .B ladNCa gayly:4:9 ir sports will, cha6!im #ut:stupendous plan`Aadmi)wenius of it. Aba dainA and ,!he*ed to lear bsmoke, 5Joe caughQ ideaSBlike to trysXQpipes7!fi 2the@se noviceY1 d\Lbut cigarsPof grape-vinGQ"bit" Stongu8not manly anyway. $yo'Vir elbow1uffBrilyd!slr confid9AThe an unpleasant tastGgagg Why, it's@0as easy! If0a2e/sCall,"t + #SoI4 E. "Ic!no'hy, many aI've lookA peonm$ well I wish I!do's; but I 1%Tom. "T!aRme, h$it 1You1earK Stalk <k--have o qleave iKAif In't." "Yes--5MosUHuck.$7D too Tom; "oh,ZCR. OncW1 1e s5 ter-house. Do rememberBob Tann771 thand Johnny M1 ,Ilcf 1, 'ame say  !Ye\ !. B#ay I lost a white alley. No, 't*.z --I told[1. "472s iI bleeve4Apipe4dayMfeel sickNeither do>}]$itV1. B!be  4\ !! 7keel over wtwo draws. !le D tryB. HE'D see! !beRwould !A--I  Aa tackl2onc 3Oh,)2I!"G@s:youI any more%an!onqtle sni fetch HIM." "'Deed2oul U. Say aus now?!So ay--boys!saH !i BsomeRy're = ,W Qup toQay, 'got a pipe?aPae.' An2'll31kin%1carO like, as6rX  pIamy OLDw", (03 on'rmy toba+bCin'tood.' AndZ1Oh,'" r 's STRONG e3G= $ouhO1igh ras ca'm!Eqsee 'em-S4thagay, Tom 1ish0aas NOW5!!we \"weQerwas offQing, 27 w#y' dalong?Bnot!M4BET@ll!" Sotalk ran onV &itEflag"'grow disjointedBilen adened;erexpectol marvellously ]!^ry pore ip <boys' cheekame a spouting fountainiyj2bai the cellars   rs fast Kb to pran inund;2overflowing+M throatsqin spitx 2all*"doF = Fings"Metime. BothY1ere2ing2pal miserable, 'from his nervtfingersx!. t_ygoing furBboth pumps baiB"Mm|\)id feebld) =Wknife]hCfind Bquiv2lipb 1halutterance2'llyou. You go j`Rhunt r? !pro!No needn'tvHuck--wdS ,BgainAwait!Q hourCr%itpK'"to Dhis :yswide ap oods, both U!pa Aoth a1 0informed him2 if#ha!ny trouble agot riQ"itnot talkative atT}Snight4Rhumbl1henQ prepCdp "ft meal andBparez\ "ey[2no, 1fee,well--some+1 at )mӂisagreedQ2 A !id!aw-dand ca0{ding oppressive:#ai83see02bodiNXa huddl  !so1thet(Cndly*vionshipr4F/} 2ullj=aheat o  breathless atmospA sti<Ty sat94%Awaitholemn hush 7b. Beyo{jfire eK3swaSQup inAblac`!Hr  &aaAglow  vaguely revea^ foliage for a momTavanish4by " crc1str?#n & faint moanA siguL"th0 tranchesRforesboys felt a fleeting ,ywshudder fancy tha?S! Nd !!by/. Now a weird flash,! n?Ainto  hgrass-blade,=i and distinct %aBfeet $it[three white,/tled facoo. A deep pea "thP1rol:and tumbling "r heavenGlostw# r4Qdista$A Ƙ chilly air passed by, rustlingjyn!sn the flaky ashes broadcast !ir TfiercElm FN% stant crashD#retree-tops r'Mic:p$in terror,x%athick 6!p~q. A fewsurain-dropCl paf* .. "Quick!!W"foLtent0csprangs\Broot4amoQdark,awo plu&same direction{ blast ro trees, making &as it went. One blind yH #ndnbf deafJhFnow a drenchinv1 po@#heK hurricane droveGsheets a`c0Qround<" c#u Beach#,the roarafoj-C!s >eir voices7 ly. However, one by; O 8\ook shelterk  .Qcold, /Qstrea5 ,;o%!y =?DseryR1o b teful foK  x 1 olBl fl{Q$soW2ly,0 Wd noise1hav[A The6(esS!er:qhigher, Zthe sail to "se/1its ]4X"wiCaway- %. Iseiz0"s'1}Rfled, ye bruises, toԁ2oak`U86d-bank.b battlsTst. U}R ceas conflagrf of lightnR flamii*AkiesSbelowout in clean-cuTTless Qness:"be:the billowy ,<Bfoam$@Z0 of spume-flakIhe dim outlinSdbluffsoside, glimpUD drifting cloud-rZ1lan1veirmE "L9 some giree yielR>! fand fell younger growth;Vthe unflagg/ S-pealnow in ear-splitting explosive bursts, keeBshar8 unspeakably appa[storm culminatone matcy ceffort# qlikely *+9q to pieQburn ,! ig, blow itBand rq creatuA it,av" 2. IKra wild rfor hom#}Q. Buk}'do forces retir Aweakd h threag  peace resumed her swa  %nt>Scamp,YC! d3wed3hey`Q was Sthankp07eat"^Dthe  ir beds, was a ruinTJQblast? w uwere no3Rt whecatastropppened. |! i pz!ed9A-fir/Qwell;5 t-v-AheedSlads,3Bgene0ymade no prova +/#stHc! m pbdismay2|Q soak3t eloquent iNHtres/,%,1verY0 [aten so far up HQlog iL  dbuilt !(wW it curved upK\3 &$edn Afromground),%a-breadth or so# \V2!weB; soCpatitj-t7kashreds+qbark gaBthe 2sid#qed logs+ay coax61"toQ. TheRy pil=$5boughs ti]# r furnac<|# glad-heaV751g1y d{ , !boo"haOXD feanN ][3satJd aexpandd glorified8Q<]9ndry spot to sleep %6-B. A@6sunssteal iN2oys !si!ov"em sandbar2lay1<Ogot scorche.8drearily se(breakfas"CrustJcstiff-4mhomesick once;:%Bsignbto cherTup thp+;ɹ2C. Buc 1not %fo6, or circu .E, or"%Aremi1$ imposing &aa ray 6eer. WhioD, he`7mRa new devicaK Hqo knockcbeing aq e"be*c!nspqa changOHeattracis idea; sonzs;m^head to heel black mud, like so zebras--alB Zchiefs, of course/aEwent* `A"tt%=s settleQg!By|yn ree hostile trib(Vupon @ bambushdreadful 'kQ%hcalpedHvousands  gory day. Conse$lyan extremelisfactory one. rassembl\Dcamp-rsupper-*<|`KYj4but[ifficulty arose--!d]1notk of hospitalityR-1fir<8 ,: qsimple nAsibiI@"smv2 ofER processeLDaof. Tw davages;7wF 3hadd$ed%. oD}2 wa;with such show 6! aCSmuste# Apipe# 1tooqir whiffA tqdue for1h1gladBgone"rya0Rhad g;S e now smokeA hav Ao go^;Aget 67d be se#un02abl1not AfoolG jhigh promis, #of }practised cautbafter R dfair success y spent a jubilanAning\FeRhappiw new acquirp#would have iwnd skinning"QSix N s. We will$toqnd chatL?And bsince we=nther use >, . CHAPTER XVII BUT} hilarity ?Btowntranquil eZafternoons Harper~Aunt Polly's famiE22ereS3 pumourning QgriefXP . An unusual quiet possess= village, althoug"Rordini 8 !all consci*Ir!du ssaan abs^#ir+ nblittle*sighed ofte.Ftholidayqa burdeL !Shildr61 no) Rsportz h>gUbup. I Becky Thatch1!unqself moB2abo Q dese5 aschoolc)C yar1feevery melancholy sDund  t73to FPShe soliloquize:if I onla brass andiron-knob-!:(*Dgot ` e%to * him by." And she choked besob. 5)7sto CXo9!tchere. iRto dog  x( say that' n3 the whole wor Bhe'snow; I'll <.6A seeb.12is 3t broke )1wn,qP!ndCawayQ down9Uun quite1F!ofs Vgirls--playmates of /and Joe's-- b 1ood2!Qv1 pazfence andfNArentqhow Tom]rso-and-+d2ime"csaw hi6'6how#3andmrifle (pregnant# awful prophecyu(2eas "!)  er point>tWu2actwC"heClads" 8addNpa"and IBa-stR just so-- as I am nowOf)qwas hima Aclos e smiled,Y ?2way!th!l+"me !--R, you knowD!I wZ5Wmeant ,C/1can TL a dispute5who-Bdead.cin lif`Qclaimat dismal|qand offLevidences, more or l: 1amp!DwithVrwitnessDwhen ultimately decided who DIDrthe depl"exCwordthem, the luckR2ies Aupon1selA sor"sacred importanf z1apeand envie=che respoor chap, whono other&z"toF,)tolerably 2c pride 01'Z9# ucked me-BRat bi Rglory failure. Most s "athat cheapen&!1incWWa=4loitered zs2rec2r memori!osu2oes3wedC. W\-B hou 1UfinisFnextell begaoll, inst# r  @I1a vtill Sabbath2the ful sound %in<he musing9%TlSM#on` &rs,V5ing$ vestibulQnversCwhispers#1nt.zQthereF$no/Athe 4 ;g]6eal"of dresses +f womenZ<eir seatsZ3urbJ= T. Nonpi&er q churchd!beS full5. TXMa&Q paus expectant dumbn  CV,D#Rby SiEMary yV C ball in$2 qcongregb old ministere, roselBntileos Bseatront pew$ncommuning2., broken atvals by muffc5obsbaspread,hands abroa5prayed. A mov1ymnEsungRF tex<$q: "I amRH Qe Lif2EQervic'Dceedclergyman dmLuch picturA gra  6wayA rarZbthat e4!ou)!in9Acogn!Uthese,(!pa5!herpersist"bl1him rm always Ys?BseenRfault( Sflawsg +1relaGaa toucIqincidenm&iv`e:RqillustrN.Rweet,X3ous%s people !, how nobl_ beautifose episodespt  O rank rascalit"}.bcowhid 1 be@ \ 2and D pathetic tale1n, e"at r rcompany aand jo( !erba chor swelled upa triumphant&,6c it sh! r-s0ASawycre Pirat3#eds k-1envQjuvenkGDBconf"in%$ea&"s oudest momen_1hisq j"sold"Utroop"ey6 jsbe will;"beFBridiculouCtp UuB I" Tom go81e c )esd!cc4R's vatmoods--uhad earned YByear he hardly knew which expro85ostK,!Rto GozBaffe' BqI THAT !--RchemeoAturn'bhis brpI Qatten sa y had pa4o& mo'og, at dusk on 3, lmvesg+t6; U slep   1edg7Bthe 1ill nearly dayligh`UcreptZback lan@ TsleepE  0a chaos of invalid21nchA>f fMonday2 kSto To1tivhis want Aamou1. Id!ttI<@3say> fine jokB, toHeverybody suffe'G'most a week soAboysra good 1but01s aMjC you% Qbe sop-Aed aNrlet me ob so. I-QcouldO:U overtrl1hav| eN&Aive -=2hin9D1tha" warn't d 2but qrun off=Yesedat, Tom,";Mary; "and I believR OihAoughLCW1youR?Rg!, }#ac7iZstfully. "Say<", mJr'p?" "I--w*know. 'T?b'a' sp'NILryou lov UDmuchwith a grieved tB discomfo5Gv!me! c enough to THINKc, even+ didn't DOqNTuntie)vUany harm," pleadeBit's giddy way--he is2 inba rush%he|uinks ofrUaMore's Qpity.\. AndAcomeADONEj.1too'1'll !, 0!da 'Q late DQyou'dSd+"dfor me>Acost&2so 9 j1you V` for you5H2I'd)ADtterakDlike!I Vnow IVsrepenta1; "s dreamt@1any(I,,L much--a cj$$'s!no2. W QWhy, Wednesday night I!tZsu ! bl # b 8+ woodbox A nex Uhim."TRso we9 S 'do ByourQtake  0?8 !usfD<$Jo#'s -uhy, sheA! DiHNOh, lotsso dim, nowWtHa--can'lIRSomehAseem2ind ewind b)6.{1"Trh1der9s[2p. Come!"6  !hioo$ aforehe anxious minud then *AI've i[(.! t rr!" "Mercy on us! Go]-Tom--go on#R< 1you.1, '*door--'" "Go ON]VEJust;ctudy a . Oh, yes--rS you dkwas openeAs I'mMGQI didZn't I, MaryA[}Bthen^r I won'obertaine9Qas if4 Amade'P/cWell? -I make him do%Yb1himB--Ohyahim sh   M"land's sake! IAhear% b@my days! Dstell ME1any! i 1amswV. Sereny 4& i^an hour older.^Pther getCTHISj er rubbage 'superstition.#1t's/!!brbas dayVF Nex3 I r BBAD,NmischeevousM )"an+ responsibl3n1--Ik a colt,28 Pd$"! AgoodjgracioF you(1cryU"So& "Nof* nM)" "Then Mrs.e@2cryf "JotF3ame:C2she !ha SwhippERcreamshe'd thrit out he"CselfRsperrA1cyou! Ya#Qsying2t's1youdoing! Land ae]Gno!SiAsaidd  D" " O ! IRLBSid. did, SidMary. "Sh.d"leU"heL1TomSHI{ !h^6$off whereM$gone to,  fDbeen0sometimesTHERE, d'youd that!:92his8 QwordsG"Anhim up sharpTI lay must 'a'an angelcere WAS W xCtoldZ 1Joe>`a firecracker73Pet\ainkilleraas truPeI liveQ/!loCtalk%dr;Qe riv)1r ud%3havHCA Suna qand old MissRhuggeH4cri  "en bIt hap"!so 2surT'm a- sftracks /2n't`i.Zq 'a' se" %! \what?Ie3youq, " IwBhear`C wor2aid  !en  Pso sorryq I tookRwrote4piece of; bark, 'W}dead--we are only off 4'p %T tabl_  ;'hCyou sdA, lacasleepv8Iand leaned2lip6 D ,&I;bforgivqhm#at4she4crushing embracpt, feel lik( guiltie%villains.#wackind,  Dough~a--dream," , faudibl!up! A body doeV as he'd do if heVyA. Hea*FMilum apple  s 1was-,t--now gto school.=qto the Oc1Fat2f ui  ~2ack>'d-F1ing"Bmercy [l#t q on HimHis word, Bknow unworthy ofa 1nesR FHis *ad His hand+slp themEugh placere's fewAsmil 2e o= t{%4wHis res>long nightUDs. G2Sid >Q--tak+r)1off( 've henderClong.e children lefw old lady to call o vanquish her realism!sq marvelu(3had1Q judg_"toF_pi4"mi,"hethe house.XAthis zrthin--az\Bthatdout any mistakekWhat a hero/a, now! Henot go skipp~(%Rncingm"a dignifi!agƌXa@ who felthe public eyEm|cindeed; he triesto seem2 th2s ooaremark-he passed along?tW5Afooddrink toSmaller boysl%1flo+cels, as A to 6"enw"le$#bys the drummer1heaQ cession Ae elephant lead menagerie :own. Boys ofown size pretendVIknowaway at all'4were consu with envy,bthelesW EUgiven& i#av1swasuntanne6?his glittnotoriety3Tom !no# Ae pa1ithBr a =e3Dbaso muc}bbof JoeAdeli!9eloquent admir)݅*"eyT1two"esMAnot "inCsuff+."stuck-up."s#1tel ir adventures]5ungy#2ers9B;c@ 9ran end,aimagins}!irrfurnish material+,yorir pipewent serenely puffAroun Q Qsummi; glory wadCchedOQdecidbe independen@ ]6now. Glorysufficient. He_2liv|R. Now !heTdisti?'a, maybJ?qbe want o "make  !le!-- h  qas indi1Qnt as other people. 6 arrived. !seAawayQjoinetrroup of5%Oalk. Soo#!obed$s%3 trYQgaylyR ERforthi1fluJAfacedL Hbe busy chasing4mat?so4th a 2sheV a captur9h$icI3shea+/Cher 1vicinity&89qto cast!nsS eye =gPW1ch ~RI"i2!viFc vanit wB him)so0Awinn!im&only "set "#moE6himSdiligAavoirc at he knewKboutR gave~ qskylark`;+ved irresolutelyBQ, sig 1onc 3twi#glafurtiv45nd @QTom. 2snu71was1ing  particul0"to Amy Lawr7 Dne else. SheArp pRwnd grew1and uneasyKc=2tri1go away, but 2eet8t+2ous:1car71her"he "to a girl*as"'s%g!--)sham vivacity:Mary Austin!  A, wh&"n', #to-n?Cih!#--*Qee me"Why, no! d1? W1sit(Ix!ins' classu1go.Xw YOU!? oit's funn!n'+D you>uw2you 'QicnicU%Oh!jolly. Whol)XMy maa}5oneRcgoody;  she'll let ME com)Hieill. T#'s<!any#AbI wantQI)!ev4# nice. W7Fs itbBAQby. M r1vacBk fun! YouM r1oysAYes,tfriends to me--or3be""he:4ed Ay calked d"lo   the terr$Tstormbisland[h9P#nr PNq tree "o flinders".c";rwithin EYBfeet6lQmay I#G]rMiller.P.1And 1Sally Rogers&+usy Harper. "And Jo[Aon, g2claiof joyful"s 0 ogged for invitNs"To]1Amynturned coollyPcstill Atook# 's lips tremblAbars ca1her;Y!hi$se signsa forced gayet con cha tfJ7?!ouny 1got( !on aand hi61rand had4rher sex4"x'xGsat moodywounded pride,qll rang roused upua vindictive cast Y1gav| plaited tailsik, swhat SHE'D do arecesscontinuedBflirO jubilant self-satisfacAnd he kept )Uarto findG1lacerformance. At las AspieEsudden fa-rmercuryb#bcosilylittle bench behi/BhousT 4t a27S-booklfred Temple--and so absorbed2hey #so?Atoge Rbook, 1didby 5 ofsq+lB besides. Jealousy ran red-hveins. H1hat  2for "waqcchanceQhad o  a reconcili. He callc-r a foolhe hard names a!ofD~#cr3vexd!Am tted happily1, a'y!, 8.e!rt= Asing 3butRtongu{8!it 4He Bhear+,Aas s BwhenZexpectantly h;!onu1ammh awkward assent, (/N sFA misQd as Awise !toaBrear! ,0q and ag%#ato sea eyeball"=1ate>!clryj belp itqit maddUL q5Bough"aw;  ]Thatcher\ once suspe(`iC# lthe living. But3did59 +Ber f%/3toosas glad#Tuffer^3haded. Amy's happy pra<$inA!e.!hiac g&,o attend to; s must be doneAtimeUfleetin vain--N chirpedkT`, "Oh, hang hi%k  aget rioXher?" r those 9he said artlessly !ou" """ chool leJeShe hax3hl, t. "Any(Qboy!"p#gr3is teeth yGH1#buSaint Louis smartd20and is aristocracy! Oh, c a, I lij1youfirst dayuWqaw thisa, mistAnd I 1ick.Y just wait_ I catch you out!9%1tak  ermotionsZArash+n+r= --pumme>hI1kic&>and gouging.{you do, du0? You ho',Qthen,?learn you!" r Fthe Qflogg'as2o 15fome at noon. His L not enduByD3 of4 iAThis jHtbear noAB thea distrf'Rresum) 1 in'h bAlfredI*sy"">!no#to,Ktriumph BclouG 3she/nterest; gravi absent-mindV-s followeGthenLR; two2ree -"pr!up2ear footstep" iba fals%;i Ashe bentire({1 wisbEdn'tjit so faVsen poor Q, see!loP2notV)Ahow,E exclaiming: " aO one! look"1s!"{1pat(Oc at la99S saiddon't bo| Sme! I2carathem!"` LBearsagot up)Cwalkq2. dA dro'alongside+s-}2"buRsaid:,2awa&leave me 5e, .1! I1 Shalted, won# waZdone--forCFaid }i !snooning #hej on, crytC!mu Z?he O qwas humO egQangry!ea bguesseE Vtruth Rimplya;Gn0nXAventRspitee)I". far fromh=be lessPDBdGZ !3g~to trouble withoutS riskTAselfR's spn Cfell^ 4. HMhis opportunitZ!ly.e !onLfternoon/T?&inKr page. ,pi cwindowm R#ou5vP. She startward, now, inten28tell him;~ thankful%healed. Before s half way4, hh1sheSchang$migi 4 of Sreatm!heS@C her came scorc9R:S sham|yvz6 ge,!ondamaged i's account*"tohim forever,Ohe bargainVIX TOM 1 at:'adrearyoa_sm Qaunt R k1 sh\-Qhad b tQorrow an unprom$kmarket: "Tom, &1a n  2kind live!" "Auntie,o2aved&e?4Ryou'v ! e I-vTSerenM,ran old softy, expectingAor!o ZL :g$atn0 2hat4,!loRbehol{ s'3fouf!Jot7 2wasabtalk wt&, I don'1 $Q of a9will act  that. It makes me feel so b [-go\A andG!L l of myself never say a word." Thisa new at  %  3nes( aLH!toueCjokeBvery ingeniouse *A mear shabby !He "2heaA"no5ken71 to,#4he IBdn'tvit--butCT2Oh,i#'!k. c0your ownrishness66T Lfrom Jackson's I?2 to $urt yoo?\:ASa liem<%91n'tC to pityk* Rve usXCsorr8q!knJ8was mean,!#I J CB. I s, hones1),. Ayou &W<ibme forI"toV1you'&us™(n't got p!del!th nkfullestMi} 2wor>I7bhad asta !"atY2you ever did !it." "Inde ' 1, a%--52mayOQ stir2H!OhT Rlie--,!do[QIt on 1kesPcgs a hUFbtimes *<a; it'sH0 F. I k,1you @?X4"at)"&me2I'dLW#it Z power of sinsV72'mo}you'd run eand acted2it reasonable;n #me  %Ryou g y 22, IFgot all fulRthe idea ofa' the churchI("n'GBh2 a$Qspoil$Sotpbark back in my po 1andjA mumkW.1arkq2ark 13we'+ d 1wak8qI kissee--I doL6linS%aunt's face relax[! t.Sness %inq. "DIDqkiss meM !Ar.3 su ?did2Dq--certa|ArmRz ~Because IBcobyou laBare moa-Band "3ZBds sz Aruth.* tremor inRvoice&K9E!!bexAwithbf1 o " hTgashe raqa.!goAruin$1 ja#T c in. T0 _vher hand< erself: "No, 't dare. Poor boy, I reck(+ #ed bit's a1!leBlie,7's such aQ1romaI hopeLord--I KNOW BLord 1forr_.Qisuch goodheartd"it3"wa'#fi 1lielook." ShexCawayRttood bya|b. Twic-Dput 21takA garUand t:refrained. Once m1ven1rhis timo3forN)3Wc}:> llie--i!et%1rieR." SoG3. Aa E, J7y"flQtearsix3: "Athe Bnow,}5'|'mitted a millionl)!"X THEREAsomeAunt Polly's manner"~!BTom,; Bswep low spiriVBhim lightRhappy6. Hp&A luc YBupon O8e of Meadow Lane Dmood+determined3. W|Bc's hes$ h]; Iamighty to-day,6I'm 9 ,#2 do!4ive--pleaseB up,S you?vDgirlKRA him<dnfully( face: "b3thac. 65 TO , Mr. Thomas Sawyer.i AspeaM 2youR!to*h a!pa!onCd stunn-1 noYnkh!ce(inIrsay "WhHs, Miss S&?"j[ ?$&it%dby. So$1 no(OQin a Rrage, 03He mopedAyardf1ingObwere azBand ing how hebtrounc%if:iatly en#erd 2R a st"y remarkQ5. She hursWbreturnngry breachcomplete. It EY$to Bhot 0Rment,s#AQAwait)Q to "02in,was so im see Tom flo\injur2. I;1hadany lingl!noQbof exprAlfred %,aoffens;2lqad driv=vaway. Poor girl dOrhow faswas near. The maMr. DobbK n͢middle agean unsatisu3ambDqThe dar!ofdesires was3#be a doctorqpovertyWdecreshould be*Q highan a village q. Every he took a mystmQ book>CVk and&$1 in;{s "no6.5Breci8"R$! t& 3ookJ#lo21key#rqot an utMwas perisve a glimp[Q@Bance+T came1boy8c theor-1 Qnaturqno two 1iCalik6t way of getting5ats in Base. "as1pas!by4Ddesk% 1nea~R door t3tX)5ae lockADrecious H  glanced around;>B next instantHOs1The title-page--Professor Somebody's ANATOMY--carried no informa/mind; so s+!ga1tur s"cau!3oncaomely engravW frontis> --a human figure,qk naked !CK+dow fell Apage}3TomA ste$inAdoor&fcaught tpicture!bsnatchs"to >aR hard BSdindpeEathrustfvolumej2tur@Ce ke  out crying'1 shand vexF. ",2are1 asacan be4sneak up on a persou"wh 8y'r+." "How yH2looS$ta?" "Y$Abe a  ;wfyou're&tell on m1#ohQshall) !! 1 be whipp ICwas 3%P astampe,!fokdRBE soU i!% *2'E*. %&and you'll see! Hateful^' "!"she flungthe housd*cexplos>\:still, rather flustereC1onsBt. P+ O+  !Whi"cu&k," aCqis! Nev2xen lick! Shucks! What's a#Sing! 4ClikeS$--so thin-ski and chicken-". 4Aof c4 # Iq)t$ldV3'is lA's o@Gwaysa even a<&|tC7? Oxktask whof%3his book. Nb'll answe en he'll doUay hekoes--ask firs\An t'wOns" jiBing. Girls' facese*9yMM2bonT1'll .i  hatight - ', p1any#ou.*!coCDJ'added: "All,3"'dQto se"inQfix--!er sweat i"!")4joi0gmob of: lars outsideC[ags  !nd:ol "took in Afeel rong interests studies% #hea 1 at gc side Broom !'sX d him. ConsiL&3alltT, he 4Bpity`B$et+2all1uldo-/"HeVup no exultd!lly worth[ n  \ %Qdisco@ 6#adeHH Sfull I own matterE9a~72aft "t.64&er lethargE *"Xgood the proceeding _! 3Tom"ge(&aby denrhe spil2inkCw  >/sSG:adenialr mn4TomssupposeV A gla{Bthat%sJmergency paralyzbinvention. Good!--han inspir4! Hk"ruXbook, spring thi)"3fly5NAolutAhooke$ont" i)was lostl ,rTom onl9{ Wsted , bQ! Toorkn Sw *O  Bfacex1. Eeye sank under AgazeLv9smote even Pbnocent/Hfear>1sil%B onez count ten =kAatheV.#raH npoke: "Who  book?" nNsound. On 1havxrd a pin,1a still!continued;CAsear-4fac|  for sign uilt. "Benjamin@,!tuS?" AA. Ane  pause. "Joseph HarperD5+;I uneasinessE2and4#sethe slow tor+es TFDscant ranks of boys--c ,ed!ur3 : "Amy Lawrenc,eA shak head. "Gracie MillerQ samerYLusan! 8his)rnegativ(2waslMA was"bling fromcto fooQexcitG and a sa!op_!of/Rsitua "Rebeccazc" [Tomhf#--I!Cwhitterror] --"]R--no,4(me6b" [herA rosmappealE?XAG29lik;Da%br(3prafcis feehouted--"I:"t!}BstarperplexitH6incredible fF3Tom!"a C, toHqdismembfacultiesk wYNA for=#to-his punish"=burpris gratitudB adosCshon64himBpoorv!'st Bpay /O)1 IBed b~splendor qown actv Sb outcr7most merciless fla DMr. 2had8,badminiBalso receiSN!ce"added crueltaa comm o remain Shours0ld be dismissed-- knew who #wa k]h;his captivit3don he tedious s, either$C6bto bed, planning venge jgainst ; ;arepent5#ol4"ll^ 3for 3'jq "ry8"thV1ingHW %way, soon, to !Santer'%she fell asleep at las's latest0sdreamily inRear--, how COULDbe so nobl23XI VACATIONapproaching),nKqsevere, rjQexact1han[,i!a .!shV on "Examin" day. His rodkhis ferul8! seldom idle now--)=&st # sUpupils. Onlabigges7 young ladie}e e twenty, escaped la #' Ss wer vigorous onO!; lC he \,K6 wig, a perfectly balQshiny=#, Ronly d'B ageq T of feebleJMmuscle. }great day "ed?byranny#waEc=face; hec! H)!ur?Ie least V2comTnQnsequ Y1boy59 air dayNp8Fz)1plo1 rezy threw away noo "to'  a mischief y a$J"im\r retrib8 & rfollowe*yCful vCso s|Qmajes^| from the field bad#stBtthey co2tog_Ԝ#lag7 QdazzlaictoryBy swaign-pa."'s(BCchem3askEhelp0s v`1deldRboard Rather's f]3K$giboy ample -rto hateFTd's wifHBgo o"!sitSuntrySew da~J#1to !4fer !he O Aprep f3forQoccasAA3by 8Zty well fuddl Q boy  the domini roper condw$G on A Eveh1q"manage"Bhe n[ <9Vwaken hhurried #toB. I!fu; "im!esHc arriv0+" iewas brilli' Cdorn wreathsbfestooDfoli!xflowers! s 1ronH 2 {d platform,< Alack=#? tolerably mellow. Three rows of benches on *(!si\Rd six%1in "c m.foccupi dignitarw1own)% aparentusTg left, backh citizens,Dba spac emporary5u@"th&Blars3 !er1taktexercise ; 1of S"he"drY0"toxae statdiscomfort; gawky bigRs; snowb_ X clad in lawBmuslHKbcuousl,ir bare armsir grandmothers' ancient trinket&2 biApinkblue ribboLir hair. A>/!tas fillKnon-participa.%2. Ac"3boy!upsheepishly recia"You'd scarce expecaof my o speak in public stage," etc.--ac5ing#ai-r Vpasmodic gesturech a machine mahave u csuppos ' a trifle]aorder."he*7safely, though cruellye}3g9afine r!offHD?dp! manufactured bowqD. A u1lis$B"Mar a+Clamb]#, Qgbssion- aurtsy,yher mee,ru!wn#ShappydSawyer ӕited confid o1int)1 un hGindestruct"Give me liberty orme death" speech1furc frant4Aicult  $ia middlit. A ghastly "-fbAseiz m, his leg5ked m=  to choke. True  1nif/!ir tterly defeab a( attempt at,it died early. "The Boy StoodC" BӘa Deck"!owPAlso 3Assyrian Came Down,"!ot{eclamatory gemV"rerd,a& f^ meagre Latin class ,Qhonor prime fea41ing"in,original "compos\ 3s" a. Each-!er: !to<qedge ofr 1cle.1roal anuscript (tis dainty)F"eqCreadQlabor t to "expreDpunc!1the.r had been illuJ;on similar  Sb befor^, doubtlessir ancestoremale line F nCrusades. "F[Ahip"wone; "MbOther Days"; "ReligioHistory"; "Dream Land";qdvantagv  Culture"; "Form Political Government Comp and Contrasted"; "MelancholrFilial LovVrHeart L#sp A prevalentY!se\ca nurspetted m|B; an>asteful and opue1gusf"language"; <qtendenc dlug inRears 6 ularly prizedphrases until+ Fwornx%3outr peculiRthat ZX CmarkBmarrlahe inveterata r sermonwits crippled tail  Ae eneach andby one E m. No matter wCssubjectG Rbe, aA-rac 7$ & quirm it into some as "r AFa" rQus mi} !ul*templateAaedificG glaring insincerid"_not suffi o1assYabanish  fashion'Lit iT to-day; it never will bex,orld stands, perhaps. #]5ll our l$2herD1 do$feel obligwAclos.!iru1ithkBrmon|/aill fi >#MfrivolouT  Dgirl1dongest9XQrelenhly pious. Butis. Homely truth is unpalatable. Let u2oK"!."QXfirstNas read9one enti#1"Is (n, Life?" Pgreader can endur_'bxtractNit: "I5common wal S life(ful emot!do/ERthful9ly"1warvsome an qed scen 2fesc! Imag is busy sketchingt-tinted3Prjoy. Inû voluptuous votary}TEsees`(1amiA3 ei ng, 'the observe4allrs.' Her gracRarray7snowy robes, is whir! f"uga1maz3joyous dance;E eye is b !es rY 3 is#st gay assembly.-BdeliIf"#quickly glides by, welcome hourRs for1ntrBintoe Elysia cld, of bshe ha2 g\w fairy-li eF !ry appear kher encharvision! 3newjis more charm}aBlastfas1nds{Aenea@ais goo߁xterior,#is vanitflattery3onc 1souqw graterharshly1ar;ball-roomCqlost it4sF%Rhealttaimbitt= Qheart1she bs away1Fnvicaearthl8s cannot satisf U1ing1theHJq!" AndV#or3so D!rea buzz of g/1to 3durB $, Qwhisp4ejaf"How sweet!" 5qeloquenSo true!l had closed jc ly affli e\enthusiastic n arose a slim,X8r, whoseK07' "C" paU42comMTpillssigestioX>`a "poem." Two stanza&"it=!do+ "A MISSOURI MAIDEN'S FAREWELL TO ALABAMA-qlabama,%-bye! I love1! qBut yetLzCdo I:+1thec/1Sad1, sQought(!myR~bt doth And bqrecollesng my brhRFor IAwandH|!th[wSoods;Have roamN a;Tallapoosa's stream53blisten, *ssee's warhfloodswooed on CTide Aurora's beamA "YeM8Ame I to bear an o'er-full4`Nor blush4urnmy tearful eyeB'Tisno strange% RI nowa+pm2(to0s left I yield; Qighs.[W|sand hom2min  is StateW1TvalesL"--F!spq?fade fas (1col ag3eyex 9eoen, dear ! BturnQISee!" c Bwere4few$ho $at "tete" meKl"bu "po S very|ractory, theless. Next/ed a dark-UBxionEIfack-ey Qhaire qng ladyQ paus2 im'vwJa, assu tragic ex$n Q " m~ d, solemn tone:A VISIONN2Darbtempes 2was5 2. Aq on highA+2ingr quivered; butAdeep0"na T heavy thund "coE-qly vibr 1ar;s]rerrific n .gry mood-de cloudy chamberheaven, seebo scorQpowerXted over itsAor b,allustrFranklin! EvqisterouYwinds unanimaM"th mystic /Qblust?3as if to enhanceBir a Q wild!#. . "At5 a$A, so Rrearyv human "mymspirit sigh@eQbereof,k1'Mye#iend, my counsellorand guide--My jop Qgrief,second blis[in joy,'RQto my1. S#ve^9o. Z 3ose p!s !d Qe sun9lks of fancy's Edekromantic , a queen of beauty un#qsave by !ow_ctransc xAlovevPsGAsoft 1, iqQfaile2mak a sound,"bu1mag0thrill impartedgenial touch, ather unobtrui< Bhave away un-perceived--unse4. A1 sau res4herf1s, "ic5s e robe of December,21poi 0nd]Aelemtcwithoub0Tg5two"bresentV3Thi;(ma)1tenB}h1oundwith a 5so v all hope to non-PresbyterianN  #!okApriz%1osi~ Gwas /Qto be sfinest >81.cTmayorvillage, in deliveJ  rhe auth6 it, made a warm speech i Bhe sQby faT"b "" !heE  that Daniel Webster well be prouit. It may be rel2ng,xthe numbes in whiz4aword "4Qeous"over-fondlegxrience referras "life'sS,E$upeusual aver`1Now}m,"1 alA ver3k1putchair aside, !ed9 !udldraw a map of America #A, toa"ci geographyoupon. But he 9sad busi] !thu|&y 8SQa smod titter S!ov*=!e '/ nB wasDset =Ato r !it:sponged out2Qs and=dbm" he only dted themQE!evn E&ApronGMd$)$hi'>J his worky(if@PBnot uput dowQmirthBfelt"al B wer #en him; he i| was succeedingFyt;\5uit even6ly increased.Q igarret above, pieta scuttle 1his|,@$is- came a cat,nended a$ q haunch a string;1had&!g V 4PEjaws=qrom mewDslowly de#Q curvwAward-Aclaw,swung down-qintangi!!irRxKahigher2 --the cawb six i"absorbed teacher's head--down, "$owshe grabbu2wigNher despEclaws, cluS4iw1nat7u ", " i} Yr trophy7" ibposses 1And0Qthe ldid blaze abroadx's bald pate--fo 3, boy had GILDED it! That broke upEmeet3boyavenged. Vacn  3com NOTE:--The'+"a" quotaS tpter are taken%out alteriBfrom avolumeqtled "P7and Poetry, Western Lady"--yj1exa%0݇Qecise  *agirl pQhenceEAmuch9 Aappi"anYcere imUs be. CHAPTER XXII TOM joew order of CadetTemperance, r attracN  1howw@ "regalia." H3misRbstai^Q smok9!ch,Aprof as longSArema1a m OQ he fn thing--nam&a1 noBdo a+" iZasurestO  3 body wanA!goVQvery Pv$b soon W!rm] q# aQc to drc)q swear;Rgrew %so:!nor jL bof a c6to display i8red sash kept himwithdrawing from . Fourth of JulT61;Qon gaat up --iC"A2worrshackle7 1y-ehours--and fix0Bhope? old Judge Frazer, justic)Beacewas appares'"bei/ Ta big*funeral,  o9an official. Du( ree days[;Bdeep+rcerned 62the' d Qungry1newit. Sometimese: "ra$--#heRventuj1get Chis practiseO.R-glasrmost discourag yJbluctuabAt las'as ~Amend then convaltQwas disgust9'qnd felt !ns&injury, too !haQsigna,tat onceq"at#Bsuffc relapBdiedrresolve kP! trust a mand@T+Cpara a style calculated to killClate^Benvy$1fre[m@!reAsome!a La swears Ors surpr 1dids7Qsimpl| hga, tookBaway Charm  GDqly wondQto fiIacoveted vGwas beginning -4&ng Cheav}M ands. He attempt$BiaryPLed dso he abandonedT?!rsanegro minstrell!s cto tow aa sensand Joe Harper+-up a band of e-r were happm1twonGloriousbwas in a failureWAit rFT&, encx ! i!seI-e&t! aeatestBAin tabrld (aT!/ed), Mr. Bento actual Uniteds Senator, prov overwhelYQdisapXBment Gwenty-five feoqgh, nor +Q anyw;neighborhoosrA circu qboys pl"J @#  in tentsof rag carpetAadmi ,@2pinOB;two for girls#ens. A phrenologisa mesmerizerI3wen1lef H8_Udrear "evf>=BwereUeCAand-'(1es,jDthey,A fews6so $(Bonly2 the aching voids between acae hard= Thatcher1gon}bher Co_ ainopleat!Bher ks } bm1sidaElifeP.dreadful secre*athe mu  chronic miseryєaR canc^ q permanX* 2aingnmeasles. wo long weekl Mprisoner, dea}1andw"Aings1wasQ ill,;O !no3. W2cgot up aU3andafeebly{-$"!achange3com./$"nd2 cr.rb* "revival/0 had "got *1n,"{Bdult"thyLbbhopingsst hope!1e s$ of one blesOQinful"- A cro(Ahim Qwhere9Qstudy Testament4Rsadly9- "deng spectacl_  Ben RogersKvhim visi6 #ooca baskBractE!huup Jim Hollis B calLs]KK{2ous0ing of hisA 2 as DningSboy he encounti!ad2nother tfV Aon; 1hend ion, he flew for refuge a) F bosom of Huckleberry Fin! bwas re+Scriptural quotjirw_ re crept!an!be"2lizat he alXA allw!st4and .%Bnv=&st:Adrivain, awful clap ]/blinding she81cov!the bedclothe"ai! a horrosuspensehis doom; not the shadow of a doub  is hubbub was 1himrSdQtlm!thtgbearanowers aboveMQextremitp Bendu2h.i the result have seeme1him!st[ApompiRammunp Ca bu3a b(of artille+;b incongruou' E3 up+n'2 asrto knoc+ Bturf! insect likeB. Bbtempest spent itPcand diQout accomplis9its objectc boy's bimpulsgratefulreform. His +EwaitC"re>bbe anyDsK"dadoctors were back;w4hadd 3 heU!baO!is2!%an})ge . ehardly4D1spa#"reing how loneWQstate companionlesAforl@oPdrifted listless Btree+p41 acuqas judg a juvenile courr1cat her victim, a bird and Huckup an alley e@ a stolen melon. Poor lads! they--tTom--ha7E SI ATkhe sleepy atmospStirrevigorously:3e trial4k!betAsorbWtopic ofe talk immediately xyBaway$itArefeQO ; sent a shudd his heartroubled consc i[5LQpersu2himBthes#rkr!pu tqas "feelers";1seen-Rld beaqof knowz n -  Fnot be comforc2ae mids, agossip1kep(rshiver e"Hu##a 1pla+!a Sm. Itb QreliedbunsealAonguwhile; to divide)iburden[l87r. MoreoqBhe w/to assur-m discreet. "Huck,1you" told anybodh--that?" "'Bout wYou know." "Oh--'course IZ"n'Never a wordLAsoli2Qword,|Qelp mat makes you ask:qWell, I\ aafeardbVWhy, ?B, wen't be aliv$1dayQ #go out. YOUt2TomWmore A. AfnQ pausnQ5n'tL1get!to\,"Q they"Ge[!? !if half-breed deviLzF me z) gO$y ain't no diMn>Uthat's all(!&n.twe're safe %   we keep mum. But let's swi-1gai1ywa'!Qsurer}I'm agreeS# ry swore? , solemniti"%S talk,yQ? I'vBrd al " "Talk? Pit's just Muff Potter, $the timepReps mg!t,tant, so'sd7A'ersT{"ju9+Q samebgo on p reckon he's a goner. Don'gfeel sorhBhim,AimesqMost always-- *raccount thfA don %ur. Just fis 4 B, toSoney drunk onfSloafsFiderable; l-!we2do |MBwaysu&of us--pr s <+Blike@!ki?PE--heBahalf aB, onre Krn't enough4 2two"lo eEQby me?sqof luck!meBkite"me,knitted hooks%o my line. I wish w"geot$u" "My!&"n')W. And besides, 'tn't do any=;'d ketch{ AgaincYes--s>aI hate;ear 'em abus2 so the dickens6"he/fI do tooL)I[2say&toodiest i ip n !!an ver hung befoO1Yes=y+%7~Qif heK)1frery'd lyn^A'"it'" The boys]"aQtalk,Csit broum1. A# twilight drew #ey themselves ha6 * leAisol80Ejailz=an undefinp8d; z-m!clow;!irAicul+T But =eno angels or fairies i! tYss captiveAboys#\!ey~Qoften%!-- AcellYring andk qtobaccobmatche-;n gBfloo% rno guar"isl2tud /Qgifts Q smott!irL "s --it cut deep,lx@ 2cowASand t!ou2the Sdegreaid: "You've beenQy goo1me,--better'nw 1elsthis town1I d+forget it,Q. Oft1sayrmyself,I, 'I us\AmendMCoys'.Bings:Ashowfishin' place01befD4Bat I1 2nowjcve allaB oldthe's in92TomIQHuck b--THEYP)" '5-!them.' Well, "eBwful$"--and crazy  #--w athe on*1y I!un2 itnow I go:Qswingxiit's right. RighABEST, b--hope  we won't4at.! make YOUl dbad; yCed mh<say, is,p2YOUG !--m 3youSStandR er furder west--soSit; it'smBAee fw"lya&C5 Aa muP Rtf1non$ ae heregyourn. Gooda w"--"ly. Git up on Hother's backYl touch 'em. = Qit. S}`qhands--}1'lln1 th-Abars mine's too big. LittlBweak--buyQ 3lpel ^ 2shelp hi*.iy"."!home mis CnBream#full of se next day{e fter, he rt-room, dra@. irresist`,(1in,tforcing( to stayF| 1hav (1qy studi~a avoidpL"ch4FKTkelet !atdD Now,7#A us t** b--telleown waEskipp,h+sbegan--}AinglRfirst"as"rmtQubjec f  easily;ln! sdceased buP own voice;&ixAhim;qed lipsbEBhung!higads, ta]\no note of"d, rapt1ghaCR!on 1ale#q straina pent emoq q climax 5boyJ "!asdoctor fetcheETboard+"ag fell,@Cjump-P?1andCrash! Quick$Cighte}%Cspra|aa, torem1alloAsers gone! CHAPTER XXIV TOM1a gring hero onc>e>%pe2old-Aenvyhbng. HiR eveninto immortal prin;* paper magnyhat believe be Presid Byet,  * . As usualfickle, unreask9s % to its bosomBfond3 Alavi@XRas itb} !&Bsort of conducO&o"'s"t;fIp'#noJto find faulQh it.!'sv: of splendor and exul2 J2hiss were s?.  infeste=s Ddoomz deye. H!y aUcould', 1boy"tir abroadafall. Poor HuckiH 1samI"wrrand terror "ad*p7!ho!or* Awyer Qgreat V 6and4sor01hara y Jumight ldnotwithsta_A's f!sa!im+QZyq N.#4afellowDhe attornepromise secrecyqwhat of? Since }Sharasy![2 Bdrivp%c c'&Rse bywaad2lip ^been sealnsdismaler;most formidab=aoaths,a's conchuman race`well-nigh obliteratcXDaily2'"1madA gla\0Rpoken%!Vly he wish%1up " c. Hal"imZS nT 3be dVa othercY@ >+ He felt sure heMbdraw a+again until1man92dea,y@ Rewardselvcountryrscoured"no2 Jofound. Oose omniscind awe-inspi^marvels, a detective,1"upoSt. Louis, mo"ar@S$shhead, looksort of astouQ succ  3sZb craft!lyu=!ev1at ' say, he " a clew."n you can't hang a "clew" for#soZoEgot ]qnd gone8. s-63ure3was,. R slowdrifted obleft b Cit a"ly qened we"of apprehenV THERE comesVqrightly{1tru+26_)has a rag1sirrgo someqand digRV}1sur3is 9suddenlyU3one{e sallied+R Joe ~Bfailed of8. Next h<;!a %gwTtumbl@FI2FinRed-Handed." qanswer.m3 private-#op$e matter to >{kbtially`*Awill>  o take a hanwy enterpri RferedBtainnd required no capital a&u superabundanc)Rtime r rmoney. 'll we dig?" sair. "Oh,5.Uq." "Wh%D i[ e?" "No, inde  /a. It's-"in=y bicular5 --/ on islands,Atime@ rotten chests!envaa limbSn old@Bree,0c;falls at 1 mo aQfloor) ba'nted0Who hides iWhy, robbers, K urse--who'0? Sunday-school sup'rintendentsXIknow. If 'twas mine I Cide it; I'd9!nd1 a _&1o;1 I.l"do!XUf and leave it "ADon'y0Cy moA!No y)k,w$B#qy generUQforgeT 0q, or elJey die. Anyway, it  t 1a l "im gets rusty;!by- !bycbody finds<yx  Xtells howAthe 2--a  o be ciphCovera week because it'stBsign hy'roglyphicjaHyro--H"--picture>qthings,]Qknow,1seeTmean u1Hav1d got o"emas, Tom|!No0Well then,: Afind #61wan^ esbury itas or on a"ea t0Eat'sAsticTout. *!'v ed Jackson's I}iwe can tQagain/R timeSy' -1 up Still-House branch,=qlots of-StreesnAload1'emI#ll Htalk! NoTA81ichJ1forG _1'emI1Tom/6#llll summerf 2? SI#a brass po-a hundred dollar,"llAgray2 fudi'monds. HowaHuck's eyes gX1!bubPlenty4qme. Jus R gimmM Iand &noT" "AT8~QI betI:k!foff onDb Some 'Qth tw3Rapiec"#reWaany, hn2's <six bits oHvaNo! Is1 soCert'nly--anybody'llyou so. Hever seen on5E!No7I!nOh, kingsA sla|$S_"no5$I reckon@i!if3wasto Europ!'d.Qa rafr'em hopGr b" "Do1hopBHop?_-u grannylN2say>1did CShucks, IJ1ean'd SEE 'em--not V Yto hop for?--but IRQ 2seeV3scal &, 28$ aBLike!ol]pbacked Richar* 2? W_2his,Q nameRHe di'ny"1. K!but a givenIN!Bu.yiy like it-R 54D,Xa niggeroRsay--t Eyou  1irsn< S'pose we tacklj ) hill t'8side ofjrI'm agreea<got a crippled pickea shovel1setwir three-TtrampV*"hoCrpantingE]/7T downH2shaa neighbo!elq#- smoke. "ISthis, Tom. "So do I 2SayP$weCtreaF#re 1do 0your sha ZBI'll3pie5MU 3oda2day1Rgo toV&fSlong.0aQa gayrnbsn S sa"tod h AlivebM1!byy#OhP |any use. PapY CcomemFo thish-ybwQR2 daR\5as clawiIurry up,ZIjhe'd clea3out pretty quick.tn$buy a new drumua sure-'Whearts jum8ao hear[strike upoFyb"$#ed3dis <+Aa str a chunk. AtDE5Tomv -rxrbut we CAN'T b&. We spottv)AshadX2bo a doI$tF1the6re';"tthat?".wpAguesoyH Menough i1too5> or too earlAHuck 7ped .tat's it9Ahe. !'sDveryLLFaone upBcan'| 2thea1sidL$is` ',8C%Y#ofy%> ;2 a-fluttY&Zbafeel aP$'s!mNZ;'AfearTCturn)%uz'V front a-<Qa cha I been creeXAll o1ever since I DBI've=smuch soAHuck6y mN put in a de&# why bury. e, to lookGLordy!" "Yey3 7If !toRPpeople. A h1s b!toDintoQ'em, "L" "r2stiRMup, eitherjf2onet! 2.Akull !ay" DCTom!2wfu"it "is^U3a b,QSay, <lp~ d"trARs els?%,  $weY 5bconsid|/;dJ:The%. G  4s.c 're a dern sight worse'n  D lVN,lyocome slid rshroud,nUnoticApeep shoulder3f a:%!1griqir teet"Ra does. I Bn't qsuch a NPa--nobody 1Kt2but, dUtraveU 1 heu_! 1But <{#goCYthat fA norg 4v emostly M J#go5 Qa manaen mur, anyway | E"erODseen5 # except b--justLBblue'Rs sli& q window regular Gsl![Xflick5acan beu4h!cl~Qehind Irs to reason. Be1any2butAs us<pEDcomebP`f, so wl!us3our?7a<W$ df^#I it's tak@A y(qstartedffhy) TAmidd- oonlit valley bel[em stoodR""M&!, 4ly Ra, its S=s*ago, rank weeds she very doorstep chimney crQ)qto ruinq  -sashes vacant, a corneraroof c/!in1 boz*, half expectAo se. flit pas%Qindow n1ing 14 as befitte8 b:m y struck far of\Rthe rO Qe haua wide berth A*qway hom. r,Boods6 earward si_j Hill.4VI ABOUT noo$ 2 daNgG4tre=Ahad ffN"ir$Q. Tom impatien#go ;( Qwas mAablyc $alC%ly Lookyhere1 dowday it isbmentally ran%$V3eekhen quickly liftedG# a2led 3m--WI0once though,iE\un kKrR it pE conto m` a Fridap   can't be too careful8 A 'a'  1an scrape, :ing2Won a z MIGHT! Better say we WOULD!"'slucky days= $"ny BknowbP1YOUf2the:f 1it ;AHuckRn1said I was, did I? AndT all,.O_d a rotten bad3msdreampt1rat"No! Sure sign ofB F"ey{s'NotCgood% WL d*1ign  G,-2. A-_Udo is  by shark Zi Cdroph}5to-{ wplay. DuRobin Hg Who'sqWhy, he greatest m"evrEngland:the best. HGca robb Cracky, I wisht. Who did he robOnly sheriffs bbishop Crich2 RkingsR=9Q But naver bolloved 'em1divQ!upx 'em perfectly squa-h2'a'r Sa bri I 3youW[!Oh9qhe noblaaOT"R was.!men now, I can1youN R lick-can in ,a one he4iedD Ahim;NhEAtake!yew bow and plug a ten-cent piece"c, a mia3s a YEW bowIM /t7w, of cours.d if he hi| Bdime`Aedgepould set aand cr(2d cOB'll play!--nobby fun.AlearQF m% t\dfternoon, nowmy1casQ aa year=2eye#up qnd passs remark .1orr+prospect9Iibere. A5suna sink sey tookEway 5 aathwar| cshadowN6e,soon were buriAITsight8H(- Y On Saturday, shortlyV^  R bHnT4hadd&Ua chaCshaddEGir last hole*;]great hopeaGmere<oIqcases wz "pet#ad )(upafter getting down~qx inchep Y-O an some d1! aqand turZJt a single th{bshovel' Afail !isO a, howesDc+ BwentTfeeling jvshad notEds fortunehad fulfillep requirements <%of<71-hu(6. Rreach T 1{ so weirPv grislyBsile at reign^Rthe bAsun,{ bSdepre$Cbelines!dem"io he place[(3fra,# aHM Qventu7 ty creptD#do?!mbp_VT aw a weed-grown, floorless room, unplastx;aan anc CfireVs, a ruinous staircaser#er%ud hung E#nd abandoned cobwebsn#tl73ed,MC ened puls,s, ears ale\BcatcYDXRsoundAmuscAenseQready instant retreat. In a+Nfamiliarity modTReir f Qy gavm,Qtical#iYsted examinC, rather admi+[bown boƑ Qwonde"at it, too. Nexk1up-+isMqlike cu]!goqdaring ; =! abe but I&!--L,=Sto a 02and scent. Up\NBame 53qcay. InpJoC a@d mystery"qa fraud1 inCr courag4xwAH4n hM Lo go down and begin#1hen}BSh!" CTom. is it?" Huck, blanchingrG!..re!... HearDa "Yes:#y!(!run!" "Keep1! D you budge! 're coming p! tcr 1doo #stC./Rfloorto knot-hole!th bushy white whiskers; long hair flowed from u!hiRbrero dGe green gogglesec7'Cn, " Xa low voice; @#sa gr$Q, facAback{sthe wal12the=er continued ^ s. His mann\less guarF{0words more distincFLproceeded: Q, "I'!it oB 5andi,& dangerouDR!" grTthe "e dumb"A--to#svast su?boys. "Milksop+2his~ 2gasQquakeEwas O!'s +<!swag we'veAleftr--leave it( &'v !'B. No2!o i.f!wet south. SixfCmDfift5Qver'sDto carry%eWell--#r EKG m No--but I'd say(j2 us#doe9:Alook; it may5(" bTI,6!e  J!! ; accidentsi !B; 'tY$inu2ver9;i6f%l[+qh+qit deepDGood idea !thrRqwho walv Qcrossroom, knelt#, gv"qhearth-/atook o9A1bag Q jing?qleasantLe subtracW9Qrom i0nڼcthirty#Dcs for G"as+6for8e latter, #s <,(Q8owie-knifeUforgo<,bmiserig$an@. With gloaq ,A mov7q. Luck!f splendor of Qs bey%sll imag+!qETmoney/Ato mcalf a dozen rich! H sd1theaiest a !esrNDabother uncertainty as to w44to }2y nudged each ;--eloquent)r easilyRstood simply meant--"Oh,you glad NOW we'rbB!" mVTknife%Uupon . "Hello!" C he.?2sai4Calf-e"plank--no, it'sy!x,4Rlieve1--b`!w 2see<Kfor. Never mind, qbroke a3 [2hisWbin and i p3ManDU  rhandful8$ingold. Thejb abovebas excW cmselveY!as delighted.NwRquick4Bv$ban oldM24over amongst >#)5sid"a--I sa5#a 74agohaX|iaBoys'5andn X1the$b, look5ly, shookUA mut4 toM3  5use5Abox aoon un$edXA not *R larg!#wad2bou:Bbeen+dstrong5the slow>s+Qinjur c|5the" ain bliss3. "PardrthousanL Shere,p. "'Twas alwaysX Murrel's gangCQbe aruone summer,".stranger observ53; "vs looksPHI2 sa* sNow you $neRjob." Ʉfrowned. Se: "You# me. Leasx&k"lla A. 'T@ robbery alv\ REVENGE!"a wicked R flameBhis GR"I'llyour helpRBWhen finishednn Texas. Go homH<NT#anK3kidM1b %0$Sell--Bqsay so;ew  w dthis-- k Yes. [Ravishing overhead.] NO!- e great Sachem, no! [Prof[distress;1I'd---at least4 \Smean =but Tom, si%1nlyhad testifiSVery,mPDfortBAalond! Compan!be a palpCimpr5, h . CHAPTER XXVIId adventur4"ayily torme RTom's5s . Four times hE!s !atSFnd f6ait was:rhingnes5igers as  !hi wakeful4bEfAt bae hard realit'Fhis 1. AClay |AmornO(1ecaincidentsJND, he noticed%~dseemedL4ly Hand far away--someD ;3had#tworld, MfAlong " b3 :n i5him u itselfa$3onetrong argumentW Bavorj is idea--namely,sc quantDcoin2fAoo vkAreal Qhad nTseen !as in one massShe wa1all "ag"st in life,&Aimag= call re\Os7!s""  " were mere fanciful formCaspeech Zno such sumP qlly exiEpposed forf w"so= a sum as a 6z be found in actualy one's Ԁ" Ianotion treasurbeen analyze.yxy=Ansis 'a areal dgand a bushel of vague,id, ungras{`A. BR^K"en Ssharp!clearer (Vattri !inTAthem?h so he"`1himk1leae(impressi6q#no2a dream, a )isQsweptg:~ snatch a hurried breakfast!go2fin.ik e gunwalB a flatboat, listlessly dang+2t !ee3"atbs2ingamelancholy. TomC&2letslead up@1 su e did not do its1be 2q `o!xEGelloylf." Silence ab-om, if we'd 'a'Y 4lam' a"Vtree,0!go D. Oh$! 1fulF $,Somehow I most'x. Dog'd if I ." "What!K%Oh6ing ).U"en"QDream! Iymss hadn' down you8)1how  Q!xhf%Deams|2allpL#--()[tch-eyedZ 1sh l4 gom*!thR 'em--rot himm1No,_a. FIND! T /1Tom#llXhim. A fellerq ~3one Q for a pile-- a2's lost. I'd feel1ry shakysee him, anyw+qso'd I;2I'd,2 2z#'Aut--&s < 1--y95N'Bthat2&7/!ouAit. !dofreckonB"oQtoo d62Say--maybe inRs$'"Goody!... No, rRain'tfv5, is one-hort!wn3 y=#noq,@so. LemmkKS Here r room-- QavernQ know;Qtrick s3two?s. We cansout qui You stay hereU,zI come." DAoff c1caracHuck's~rbpublic#s"as G!an hour& EbestNo. 2 had# a young lawyutill so-. In the l&astentaa housek! 2#a 5 -keeper'sr2son  kept lock$)ll3tim82he 4sawq go int W!or}(A exct;Ymny particular reason> x1gs;Er Come ' BsityD8bfeeble98wVe6r by ent"Ding % ae ideaC"roG "ha'nted"e  r a  !re[) BwhatOYD'Kvery No. 2"$af&/Qit isE$. ?C youqQto doNE_(ngE2tell yous$do "at" icomes out J1los )ey e!a3?Qtrap Jbrick stor"`qet holdmdoor-keys1nip-of auntie'=,Bdark'"goS ry 'em. And mi,n, because he E#!to/|2tow 4spy 3)N#a "to 6youjyou just fGQ him;_Rif he 2 go >"1laca"LordyI !fovhim by myself+hsit'll b%", ov"He\Dn't B youRdid, b4he'A any' "ifU8n. 3o-- 1YouE<cBdark!. 3'a' out he coul f< #ber,&DOCs so{1; IP, by jingoesw"'re TALKING! Don'7|bweakenaI won' sI THAT#1TomQILy hung a e neighborhooo{nine, one watch52he PAat a ="K1thePdoor. NoF"orN Rit; n%aresembp2the 5ard=3te#Th promise]`fair one; sowent home`rat if adWAegre,Adark1cami AcomeT"maowupon he would slipthe keysE aclear,XmAclos2s(Tretiryan empty sugar hogs0welve. Tuesdac/&amE. Also Wedn/Thursday bbetter8"in$.sf0aunt's old tin lant 6 Qtoweldrlindfol 1ithh? <1 inp-'s began. A WB mid#v!upB2its1s ( !s 'd"s)!pu)*%02had Eseen+Dhad / }b. EverrV,3iou"Bblac5of SreignA peruQstill#waVbruptedby occasional/)#ofAt th<ggs1liti n~,=tl: Bowelx&wo2rs D A glokw>y.stood sentryrTom fel3wayZTjz  !of8ing anxiety$weighed iga(a mountainh$%sh?ra flashH$ C--it.f"en!buZO6ell- alive yet. I4s1Tomdisappeared. Surely"us Ded; &A was7`+!rtQaburst #D'Band ,G'1 In4auneasi L rdrawing-DrK a; fear rdreadful ] $/1ari1pecm0some catastroph 2Atake 1792not&to,]$heUable to inhale it(imbleful- TK$ar Athe beating. S1Tn"ofh%tEby him: "Run!"he; "runAyourt!" He needn',Q repe drit; onc ;#mairty or forty miles,RrepetCwas -3. Tj!tor  "J1sheʁerted sl#1er- e lower en/the villagxa By goin its shelter]Sstorm xrain poubwn. AsxJ] 0AHuckwas awful! I t3twob keys, aas sofI R; butsto make of racket=rdly get myRso scBT1bn't tuVck, either. Well,?!ou.Ticingkboing, I tookcthe kn!A ope@e !H&E@R! I h1in,!sh5fP, GREAT CAESAR'S GHOST What!--whatQ'seo1steFonto's hand!" "NoAYes!A#Ras ly s%asleep oARfloor4?Aold 5"ey his arms sprea[d1did Tdo? D0Bke u91 budged. Drunk, 2. IjUgrabbBAowel F+usIX'a' thoughS33tIx. My aunmby sick3alost iM A"Say,1box!diw@o_00.-}44 /8 .:ea bott|Sdtin cu 6 by(!; I saw two barrelslots moreUs S.u2now'!Fmatt'3at R roomTr!it mG o1ALLaTemperTYs have got aeC, hepd[3Who8u? But sAnow'Rightyt 1timg&ifqb's dru""Ithat! YouiQshuddIEno--"nom5And-B not3. O1  alongsidf, :u'< three, h  -&@oaTp*for reflectioZ+ S:38oky82les#tr 1 an#e}wwcR Joe'5'reQscaryhw eSnight# bp"su2 go  "orbwe'll Gbox quicker'n nJV<the wholBlongj%ido it 1too3you"<Ather4$"A= bill. A.v!to{"tr0Hooper Street a block EmaowWRthrow:bgravel=e0 3bfetch 1T"Agre01goo'Awhea*B"Now,  T's ov*bgo hom2gin" , %Qcoupl" +2"go61will youe!I TJ]t5#Ryear! Ev "damF&st2allIawooo[nǑ' hayloftZTlets nqso does pap's nigger man, Uncle JKA toteex  B wheahe wan`" t}JA any I ask him QzQves mGiBsomeBto eWhe can spare  !ik\r, becuzP'[" aL Bwas 3;him. SometimeQset rdeat WITH/1But  A body'sv!thwhen he' sr: 1n'tBas a steadyd-wXK,q"le.?A com hAS's up2'!, Cskip, @*."*IX THE firsR1earQ4QFridan glad piecnews --Judge ThG's familyL*7- before. Both 9o &Bsunksecondary import, and Beckyv the chiefCboy'="esSsaw h%tad an exhausi&1pla "hi-spy"c"gullyu!" $da crow2ir S-mate1day^scomplet[DRcrownsa peculi9satisfactory way:!ea[Aer mK to appointnext day foUlong-z1and\-delayed picnicfshe consentechild'>boundless;,Xore moderat.R invi*slAsent^s sunsettraightwayA AfolkLn4Ra fevapreparu(bpleasu6qanticip6's q enable90" ap dntil aQlate houh%%:vt!ofd1ingO4's s!an(ahaving to astonish1nickers with,2; b\3was$"oiNo signal c'vC. Mqcame, eBallyby ten or eleven o'cQ giddq rollic!c;/!ga  4_s -ro.UQustomelderly peop2 ma#;p$*!ce2ren@sed safe R unde9AwingAa feh"1dieeAe# gentlemeqtwenty-  sreabout1oldqm ferryboatQchart;t7! g<.flJ9r main sg Cladeprovision-baskets. Sid1andato mis/ fun; Mary remain!hovBtainT9nTMrs. 6 "tob, was:d7?oBback lIaPerhap H Astay   eRgirlslive neah"-lQ,c !y aSusy H,q, mamma+AVeryO. And mind !bey%yourself3bmR9T." P,"trQalong` 1: "Say-- 2you8 ntQ'Stead 3Joe2's *SclimbE!up AhillDstop` Widow Douglas'. She'll ice-cream! SsoJ"os Ai!--|+Aload8"it4sH#be t&!usg"Oh[ K/2un!?=nC%ed3But2illA say How'll shH6Rknow?^Q girl!edidea over a1r reluctantly(it's wrongK3--"shucks! Youg ! k REo!'sQharm?_sN1nts[!hao '"Bsafe4I b 1'a'" 6if IAwoulT splendid hos"itaa tempP 2baiand Tom's persuas02car+S q. So it>u Qay no? anybody?t 's programme. i1 itv(!rrJM)^7+''XAgiveZ ;took a deaV%s!ofAs. S"het&I"tolmfun atAnd why sh1he 5!it: h"qsoned--/c! W, so Ti2mor l^>o-night? T6QrA eveV 4out6theM1, boy-lik2 determined to yiel +5Aclin Tnot a{9t Qk of 0ox of money5  day. ThreeVbelow >EboatayAmouta woody hh& 1ied|3The* swarmed ashoreAorest distancescraggy hxs echoed farQshoutDand 95theØ1get!ho " Egone=y mry-and-barovers Sggledao camp31ifi th responsible appetitesVt destrucHJ" "L>2 feoC!reBFFing ( 2resbchat i2shaspreading oaks. BAsomef[ed: "Who' the cave?" Ever!wa5$. b of ca \Bproc   a general scamperhT+x0' hillside--an opshaped likO A. Its mass׎2ake&& !unbarred. WK small chamberM Aly a2ice" w0by Natur% solid limeston w 1a c& rweat. I1romJmysterious!t %erdeep gloom/look out upr!grKC'"sh--""un?1O6!ve!UDly wore offdQrompiDL2ganjIcment al]  Frush2ownit; a struggugallant~f1ed,62ursoon kn)/or blownlad clamop and a new chaseB3allQ havex(ndlrocession (!fiv(eep descenW4ain avenue,p!fl0qing ranGOVs dimly reveaYf!llqrock al5t1ir er of jun sixty feet overhead. Thisnot more than "en?Cwide?&nSstepsy%ill narr crevices bran@!from it on--for McDougal's`Rbut a%D7imepqraft.  blready.w's went gliW# p a wharfCAhear!noise on board(   C3as $usually are whornearly cto dea.AwondnQwhat 1de:Rstop w<<dropped her88'put his atten *rusiness`Bclou dark. Ten eKf vehicles ceased, sca) abegan ,#nk !ll 2foot-passengerkp |)1 be$itt)l <2lef| = qwatcher qthe silae ghosts. E  Swere /;/ Qevery$A$it1see weary long 2:b)u3},ed. His faith wasB4bing. Wvy use? "reA Whyk)C? AFfell~"ea;&l U instantQ Bdoord*^Tprangqx8$ Ti two men br,%onW- z Runder!rm0 ]Cbox! So sto remoE.Bcall Tom now?Ibe absurd--1en  get awayq #$anc7EDNo, c stick1!ire!foAthem<k5truP for security^discoverQcommuG3Rmself#*!ut Eglidg 2beh!e men, cat-like,qbare fe~!ll_E the8*5far&!noqbe invi  y |GP q blocks0n^ left upJ2ss-8y?"E,!qcame to% !pa}1Cardiff Hill;5Ctookfthe old Welshman's Whalf-m(hi-1hes!ng Qclimbward. Good, 5*VSdury itold quarryC) "stfa &-3on,b summixy plung.T7 1run 1ook whe pistols wekf#I Astop$t..Scome now becuz 7# 5it,7 ;I:lF3 I x1wan7runo}m devils88! i,2 deUph2hapAdo l?  Byou'aO1a--but +b's a bM!e2you:Ryou'v^Fyour=A. No"y U Adead--we are sorryC|#atCee wiqright w!toq#ou6 Rm, bydescription #weOaC = !we?RfteenTnAm--dis a cellard2was(sn I fouE sneeze. It wHmeanest kin16!lu " t3o keep it bp use --'twas bjt!it(#I iR lead/ 2my :3theR star-ose scoundr Q-rust*6! pbI sung"B'Fir!!'cblazedtt5he aqwas. So".  2offrjiffy, svillainwZ4N  a%oods. I B we eatouche|mydgAot a y4  bullets whizzed bdo us any harm. Ak!we9 the sou$Tw at chas2entS }!tio5_>ctablesgot a posse fH1offuV R bank&Cit i+qsheriffaa gangE bea8}"My}!.\XAsh wz"A sor2 ose rascals2H uadeal. But you cy  dRlike,euY2ladQpposetOh yes;JAown-(and follc AthemSplendid! Db2m--d BOne'B!olfdumb SpaniQben a*;once or twicQt'oth[sa mean-", VTP men! Happeng Dthem1R back2one 2andoQslunkR. OffAyou, 8ellfA--ge to-morrow Y Y"2depS!1. A__qe room   : "Oh, ptell ANYbod bR! Oh, eAG_ gByou -N%credit of w:1 di"Oh no, no! DVA!" )B men g  o said: "T2 7w Cwon'B2whyoia#n?  explain,!tothat he al Aknewn w"on3 Ahose!+4manUv 2anyHast him Juworld--c& for knowing it% ?d secrecy3morW1How&se fellowsA? We!ey Ding &usea!t #ramed a duly H rep -S lot,--leasyrsays soI5see)ragin it@ =much, on #!inx }3tryQstrik a new way of do7"ay u ' I,BleepQso I r  up-street 'bout midf a, a-tu~fg - AI go old shackly brick store by WP1, I3 Red upO%ll#2k.  %bcomes fQtwo c B"slf0%lose by me,+1unddreir arm'( V y'd stole1OneAa-sm3b one wah, !ri.s\ !me"igACt upBfaceIy og 1ig - eA, bywhite whiskerQ xT `ua rustyo a." "CmDrags ?Cis staggq5forA !n ?5Aknow Qhow i#msCIQTJy o52you<Fb'em--y eiO&to| awas up8y sneakedsso. I do$!'4+1iddDstilG& $ d:# JgVe begK%heX swear he'd sp;rr looks'as}2two  What! The DEAF AND DUMB ma8ia4at!!'aderrible mistake! H63his.jC Ru>sthe fai+i2 whNK smight bQ1yetdtongue/0@$to in spitball heFr do. He several efforts to creep!of1scrape, R's ey 1mh["bl5 9. P  ,be afrai!me 6 hurt a hair o qr head v3=I'd protec !. 1 is ;#leAslipout intend+ D. up now. YGEthat4 K q. Now tAme-- m S it i"3 -- a betra Alookit!ho51eye Qomenton bent over 9ear: "'Tab--it'sO'1 Joz ) gjumped chair. InWQ 1ll ,pe 4you{m#2ing#and slitting noses2wasown embellish 3men3tak1sorYrrevenge\"an #! a different matt242q." Dur7B&:alk! c Y 1 sades (h2hishad done,_ C#!d,^a7eqexamine,its vicinity AmarkP Qblood11y fnvut captured a bulky bundle of)Of WHAT?" IfqBwordBbeenn 3hey leaped withcqre stun0O!5AblanBlips]!-were star1ide3Qreath$ended--wao! )tarted--st?+in return--1QRgs--fiv1ten%!end i<f burglar's toolsY4,G' bMATTER sank back, pan5deeply, unaEably !eyt/m gravely, cur!V--and= NYes,appears to relieveB Butcdid gi# 3urn9!YOU expecBwe'd2?" a \H a inqui *Q havenfor material$ aa plau4#-- suggesteR?elf|!boadeeper --a senseless1y o~dK^/!noq+ to weighiokventure he c it--feebly: "-+T books, maybe." Poortoo distress!sma Cqed loudfjoyouseb detai$.Ratomy1hea Bfoot%b by sahat such armoney in a- pocket, q it cutoctor's bill likM Aadde!olG!p,y2re Z !a5Byou awell a bit--no wo8aqf #of8 Z'.*!ouit. Rest6Rsleep6Afetc2all_#brritat<6 heaBgoos!ed{! a)!icM!esf"aroppednBideaarcel b%.K%2Avern]9. c talk 3XW ahad on%rought i3"nod however "ha"kn/ bwasn't!sot%a qoo much:Helf-w!Bu![ 4'2gla@. Shad hnt!no4 beyond all qusnot THE,Oo mind was at rkexceedingly comfortaban factC Q drifbjust iD dir_`Anow;WA musw ;) in No. 2 zy!ilybat dayhATom a seizeo3golS \1out !or fear of interruption. Ju# pYea knoc9#l ` 0 hiding-"noX connecte!n remotely1lat admittedtRladiev gentlemen, amo*Widow Dougla Tnoticngroups of citizeny bclimbi2the hill--to 7 S\Qnews xBprea h(h the stor$Z'he visitor#gratitude"erbrvatiooutspoken. "Don't}a# it, madaGre's]z"'r beholdeQthan -Tre todmy boyc#he ballow Atellsname. WAn't ] v2butim." Of $&uriosity so va|"be1d tV#in )twa to eaAvita'mm be trans }Dtownb refus"BpartjCcretorall els> qlearnedO  I "to% rJ9"ypV8a noise L#Rake m:rWe judg0j2worMgQle. T"dlikely! !--Shadn'CoolsBao work pAhe u1 waGbyou up4carDR? My BnegrAstood guard sr houseeLmk By've`ack." More!C cam"beD,aand re G couple of hours more.G tSabbath d 1vacecQ1 waVly at churchQ stir1Beven` canvassed. NewV#n Dsign5two! 5yetA#edthe sermfinished, Judge ThDu's wife alongsidRMrs. mZQ as sI6ved1 Qaisle;-BcrowqIs my Becky>all day? I !edhB tirQdeathBYourS(RYes,"a;!tlp Sok--"T"sa2youIQnightEE/!noa kced palh$sabba pew,as Aunt Polly, ing brisklwa5pG by.64qGood-mo), A 'got a boy up missing.o1 myD!st Qlast !#--7you. AndY $'snvtto sett'q  "he H andar than7d. "HeB$us(`b, begi !to uneasy. A marked anxietCc's face. "JoeVSK?Y1No'b"1didqsee hima?" Jo="wa!su7 "ayWQpeopl amoving %ofWs}3aloD a boding Aines&k 1 ofzy counten\'of!if  .!On!ngfinally blurt2his  !we4ill Zcave! swooned awa f#Ao crrringing'Bands alarm swept/lip to lip,Agrou 2to ithin five minutesCbell fwildlyN6he "upF/EJ insignificanD<xforgotten, horsesaddled, skiff4man !!rd#ou1bef{nDrror was half an old, two h)dbcere po6aighroaA riv gC. A Blong091nooge seemed emptydead. Many women (ed9#anPa'q They cC)2too"wa/"l N;z#. tedious022ews/>wA dawqt last,   was, "Send candlesrsend food."4wasqcrazed;L{, also. sent messages! p encouragVtWaonveyereal cheT3 ]3h4'BdaylpQspattRwith -grease, smeTBclay Bworn7#HeJHuck#behad been provid%3 hi"Adelic feveruhysiciano4allrcave, s  ook chargg "ient. She ! s B herb4,'ahe was@Q, bad;7%in,fBr Lord'sKu !R"a \neglectez"aik good spotvQ-`"You can depen(>2at'xAmarkdon't lea9Doff. He n3does. Puts"2ome)0$on"re\Ccome(Bhis TA" E AforeRparti3jad Q ctraggl< bGllag strongeswEthe qcontinuxAarch gBnewsbe gaineBness]7edhansack71vis;Y S cornAZ ,o#ly#edCver one wan4z"pax!, [wcseen fE hit Bdist@qhouting0-shots sentr9:)1berrthe earthe sombr Qs. In&ar1sec21usu. rtravers/rtouristI7s "BECKY & TOM"DbtracedbRL=2cky'#Csmok near at h =1-so!biqribbon.   recogniz'e%>4hover ii7crh. !ofiAno omemorial )@be so precious Q this parted latestqliving h*RawfulpV! c.3SomzAw ann/a far-away speck ofzWglimm*&rn a gloKDshou)~fAscor'men go tro:1dow echoingz1aa sick; Vointment always f!e  a 0 donly a2r'st ree dreadD2^ 2s d#0 ]% jt # a hopeless stupor. N 0_;accidentaly, just made,groprietorS ++Tiquor)premises,qcely fl3  public pulse, tremendou)1the 2 wa5qa lucid%Rrval,lasubjecta asked--dimly 7" worst-- W.! Thd sinceaEill.p.h "stSup inr#bild-ey1vWhat? W)$Lm;lace has shut up. Lie dV! a&&+!me!" "Only02 meQing--&one--please! Was it Tom Sawyer TT burse>"Hush, h !Byou 5 must NOT talky'Bare very sick!zAn no5 bu1rF t powwow if i the gold. Sctreasu2gon Ugone MmJ$e bout? CuM +@TR.2houoD1dimu/7$3min^uF the wearrhey gavhh(|?&. o herself: "TNJh/poor wreck. find it! Pitysomebody !KR! Ah,j!PDAleftIThope ^5or strength either, to go on| E CHAPTER XXXI NOW to%1 toZ's shareapicnic*By trNathe murkyqSVr ompany, visit familiar !eI$--adubbedw rather over7ptive nam uch as "The Drawing-Room,"Cathedral," "Aladdin's Palace,"\so on+hide-and-seek fro^u b AengaBn itzeal until!exertionDrow a trifle Asomen6 a sinuous avenue hol+-/kf #tangled web-work of Idates, post-office addrU rmottoes~) g walls rescoed (in ). Still Uand talk:CscarcelyM3nowXK"ar!H! w+tq. They b2ownPK!anphHA she[.ed,yD   2 a am of watrickling over a ledgkQcarry k sedimenVuit, had Qslow-y 81gesm3= and ruffled Niagara in gleam5nd imperishabAone.%squeezed his smallP h in order to illuminate i q's gratAtion rit curta,]jnatural stairwaywas encloZ etween na9ce the ambi Ya r"bd him. respondehis call,1hey_ " aM-mark for future guid oqir quesAey wD, "waBthatXAinto depths ofL  2Bmark|g$ed?( of novelties to @!the upper worl. 3oneQa spa s", L1cei3muld"Rof sh[stalactit" land circuml.c7 [' H) 1kedG" OQadmir_ +1lef~bnumerous Aopen?0#toi artly bm Qbewit2 sp}Rbasint(dncrustsa frosta glitt crystals Amidsa| supported by rfantastic pillarsR# ?Q8"joof great katalagmCtogehe resul1eas  Q-dripqenturies. UnIZaof vast(ts of batfp themselvwaousand#qa bunch(s+3urb flockings 4 byrs, sque"and darting f  FCkneww4the danger%isqconduct'#'snd hurried herthe first kDffern qoo soon)Q a ba#Duck gGmits wing ,ugitives plungnevery newr#ag!atRb got r5the perilous 7 ubterranean lake,,a stret?its dim 3way !it@ p!lo2shaQrHe wantLexplore its b;,0t conclur!habe best to sit#Ast a9TR. NowO1timbe deepA lai&Rlammygb spiri@*Why, I didn't ,it seems1so M gaI hearY!ot+:m bthink,#, 9Hqdown beLhem--and:!n'=Qw howK/north, or sou AeastQwhichit is. W8Dn't >bm0Cweek9!ye"qwas plaT"at cf 2 beAthei8 3dleAnot cyet. Aqime aft"isZ< P CR--Tom qgo softlo for dripp`BaterZ3 aMf satR Bothcruelly tired, ye CssMfuld go 73 .Tom dissenD F2not>!st8D !ey'2 fae-bin froPBthemTrclay. Toon busy;G'1aid* 7Atimeh^broke the:AI am DAungr5J!me!!of . "Do you remembP"?"4he.Zbalmost1d|'s our wedding-cakeMSYes--!asTQas a 6li"goaI saveA&"us to dream onyF1way$n-up people do'll be ourSS"pp<Q sentP6  Bdivi#Re cakw 3 atT2appetite,Tom nibbled a:amoietys abunda"co"RfinisfQ with. By-and-byGtey move on 'yilent a mom"qThen he:z1can/ rit if In1you k#?"8'4pal}`.Qnw 1stamB!er Bre's ink. Thatw " iClast6 ! gave loos)S&il#diA{to comfor$ `$AtU!C"?")y'll miss uKChunt4rwill! Cl"!ithey're hun Ror us,laDare.Bhen $S"Whby get o the boatHM#itbe dark then--enotice w/1n'tnbIaanywayNr mother8you"bthey got q." A fBened "inT"brfSSsenseRe sawh made a blunderw% _hs2hat08! Tebecame$ndO uful. In a new burst of grief21 sh  ^ g"ingQstruc@s also--QCR:half spent before Mrs. Thatcher discov M""at/Harper's. 2 GR !biqno doub2:)Bwas a !on/M $on1it; }!%esso hideouswbat he 2$itG!waa5ger1torX,K [/s A portio0h z was left;Q Band ,.~dhungriD poor morsel of food whetted desir c : "SH! DiuAthat 2othyV " aq like the faintest, far-off. InstantlAanswYul|/d M)Uhand,@"*gr7 corridorG0s4. P  s(R ;.BV%Rappar a BnearU DthemdTom; "coming! Come"-- b now!"54joy,rprisone overwhelmFT2spe[ %moTswarmingfrantic half-clad pT, whowA, "T2Vut! t F " Tin panChorn 6addAdin,#Qpopul massed g}*!to ver, met=in an open carriage%"byaitizendrongedA it, joined itsWRmarchswept magnific? Q main et roaring huzzah* !was illuminated;~Pb;ar3est(t!tt w0Cever_ 2Dur%re firsthour a processars fil rough Judge-'s house,f<n"sa+,ejsqueezedt'", to speak butn't--and dr out rainiY"rs veK& c1ppi% romplete nearly so5[ a messe AdispSdkH#2cav2!ldv"!orL 1usbNTom lay 0aa sofaXWasuditory71him=1tol~A his!ofwonderful adjB, puR+"inAstri1add adorn it1"al JCudescriptOahow he %tent on Bexpel;7'Btwo Fs!as0* ARa thi^aullest4tchM3wasT"to he glimpsed aD speh6Clook*A day ;"2lin Oit, pushedshouldersa small hol1sawbroad Mississippi ro by! And if it5 F0Rappen#beVhU@ !se* 2at %oft/d[ %4rore! Hec7for/I%j @ @"imoAo fr.r$such stuff, $  &# w Sto diR~?ɆU laboher and convincg %"hoe@Q died1joy A she  actually>lueG he >1wayI& !anbn help2 ou?gAat t]for gladness+some men a8Qskiff cTom haI!em G33con rddidn'tE=qild talfirst, "#,"Dahey, "Q"$re]2les> bhWavalley cave is in" n m aboard, rowFa""gam supperqGthem rest G 1two4hreDdarkn.Fhome. B!day-dawn,=q handfu% Ahim Rtrackg,5R+twine clewyctrung +sformed A. T+# }BtoiluPi~Rbe sh3'ffA9s#Foon " y bedriddenFf}5and~to grow mo7 QBwornP ><2got,MV, on e"wa- {a"as  `"di8her room1Sun34she$ash1hadT'edk1wasaillnes#$omi of Huck's sickm Rto seoAbut be admitDthe bedroom; neit5- Uhe onB or H-x-bwas wam8; s introduce no exciQtopicL Widow Douglas staye1thaKaobeyed/Ahome? the Cardiff Hill event; alsoDthe "ragged man's" bod-%  ;6 erry-landing2had7Adrow&\trying to , perhaps. About a fortiVrescu E, he a visit:yi#plGrong enough!toc2Tom'Aintel:.., A waswm,t " ome friend4Tom$2ing>2oneW him ironicsqn't lik%!goHRy10he thoughqRn't mqO said: "Well,1others jusuQyou, )3I'v| ast doubt.)Ave t3caraat. NoAwill !atA anyH*)*Because Iits big do $atb boiler ironP weeks agoriple-lockedO"goTbkeys."tjite as a sheet.1at' matter, boy! H,Arun,qbody! F=aa glasL1!" "* gba!!thJface. "Aqall right. W1a M#Oh,'[cave!vXIII WITHIN a fewj2new1spr.%b dozen b-loads3nq @!to McDougal'sE1boatll fill#pak"s,5 CSawy[deDD bor4. -bbwas un4,%rrrowfulFeCelf sqdim twi xD lay^1ed )@,)"hiQ closrthe cra} "thif his longing f+dfixed,>clatest,,s cheer CfreeQcoutsidwas touchedd v-tick--a dessertspoonVZ2fou&J3was fallingsPyramids' Bnew;Troy fell#this of Rome7Claid(bChristtrucifiethe Conqueror creat British empireJolumbus sailEqmassacrqLexingtons"news." K2now3ill=4be #whBthesy3gU"ll\Bsunk2then| 3of ,w "raCw;} ]c thickof oblivion. Hoa purpos Aa mi=? Did thisR pati$d!fi ousand yearsready forD2flihuman insect's need?has it another important object to accomplish  xcome? No .Band 2hap alf-bree1out ^>Qprice8drops, bu3a(e !t patheticslow-droppVBater@!hey8e1seeb!< .b's cupC6Ts firde list2bcavernmnQvels; 4b" cannot rival i 4xKn,VB BcaveI flocked in boatsfwagons|3towAfromthe farm1 hamletsseven miles|I >1ugh%irYSrall sorAprov~NsUO/3hadN! as satisfactory a%. funeral y"av&1 ha Y%is5Ir*Bgrow[#oni#agovernIrcpardon5k qlargelyT2ed;Qqtearfuleloquent meet<$he#a committeJCsappt!apBo inrRF%1ingjSwail timplore*be a mercis trample $ut| Gfoot/h0"tokfive citizenwt&+idat? If. ASataC Cselfe$/!ofl)SlingsRto scribblir names-a tear on itLir permans impair Rleaky{Q-work"2TomAvHuck to& gave anRtalk.3!haw1rneQ aboum'the Welshmant, !is}Yq>s!? old him; R  5he TS talk2now's face saddenedw bI knowJit is. You got5QNo. 233 anbut whiskeytold me itAyou;aI justp must 'a' ben ]usoon as\'fA bus|"em8q hadn'tt)ney becuzdl!go!me ! w Dand aif you!musdB els's alwaysG4we';uget holT swag, Huck, I-It-keeper. YOUF -" I"DD.mI D1youHAto w   yes! Why, it seems!ag#8> CI folleredK-YOU foll1him2Yes]2youqcmum. ISS"'s;Q2himI don't want 'em soV Bon m me mean 6s. If itpben for me he'5V ain Tex@&w,.ns entire+%in-5Aonly* Ofit before.lp:,'!ba@ main question, "whoever nipp "in(, --anyways it's a g.afor us;G wasn't n!;Bat!"Lphis comradekeenly. "Tom,agot onO twQagainti1 cave!" cblazed. "SayM FgainT*"Tom--hone 1junf--is it funV!strEarnest;!--^$as# f ! ILlife. WiF#go"reAhelpZRit ounsI bet IxE2 ifwCRe can5 ouV  6"doDwith dlittleBatroubl the worl?aGood aat! What makesRthinkoney's--2you;rtill wef!re#we1mit I'll aSto giVqmy drum71&Cq I will0jxGT" "A!--va whiz. [!do1say "Ri$w,say it. Are*4IWaPave? I ben o-cpins a,"oradays, tbut I caKlk more'n a "--IAI$.">q G$qanybodyRm 1go,1^Qmight,Drt cK]  N ; ,Gri.bskiff.&2flo] ["re I'll pull itj_by myself A neeturn yourq$Q over2Lw2artA offm@B. We"bT32eatour pipes bag or two T%kite-stru ese new-fp!thA ycall lucifer m+rs. I te, "'s1imetbshed I2omeD" Aqaafter the boys borU&) #a W B whoU Cbsen(got undec^were sev` below "Cave H%," R: "NNis bluff herJ$s!Balik d5--no houses, no wood-yards, busheRO"ee5whi4 Rup yok#'s4 landslide? Aat'sof my marks. We' aashore.yG97inU're a-sta#8'6ahole I bout of~Qa fispole. See#4can.Biplace abou$P proudly mar"a clump of sumachncc: "Heare! Look at i;athe snuggesDis country9 "ll2Drwanting/ a robberrknew I'rto have1ng 3thi1o run acros]vAther!ve1it :&2'llit quiet,1let< K:aBen RoU1Cin--*$ o@ be a GangC #lsj* any styl it. Tom Sawyer'sA:1sou$plendid,L?  "it3doe And who'c1rob/aOh, mo6. Waylay people--W$!lyV2wayRnd ki "No-@Q. Hivm# t4y26a ransomUeWhat'sCMoneg3makR<y can, off'$ir{ b; and you've kep.mqit ain'2!seV2. T!enkway. Onlyb women1shu`9 2men5Cm. T5Fb beautqnd rich awfully scaredgt"irI!es5sZStake t|+"nd4pol7y!3 as3 ass --you'llMany book. cto lovXfter they,m s a week y stop cr!eRto le'i4dro Ay'd  { Raroun2com9. It's so insy real bully' $ Ibdbetter'n a piratQC"YesF&^7way Cit's6"!toQQccircus\!at{@y+ %1andaboys ew)#ho\  $ l0Qy toi#*a7tunnel, then madir spliced 1 fadK$a on. A&E z'%pr)Tom felt ams quiver him. HeQCragm> -wick pexSon a oC cla$De wa; t2ox*_ d flame struggl)AexpiQTf!ga4 o whispers,!foS-d gloommcoppresBirit yYBpres:ar 0LQuntilE reaAG,Wndles%rhe factx not really a, BpiceLa steep DhillFirty feet highW @eW+2Now@ AshowY.  Ae he+sa aloft+` sNAorne7ban. Doi!ee? There--0big rock over$ S--donKp}3TomCqa CROSS2NOWZ '{ r Number Two? 'UNDER THE2,' hey?  2's eI saw &# p`+r stared Qe mys Qign afB 6R shaky voice:qless gi} " o QWhat!>treasureVRYes--6it.'s ghost is  ere, certain."B 81, nKB. It Q ha'nk8Qhe di,Away /%2mou!Vave--z ChereS \wouldy#ngkJ 4"ofV #so & &omi3feaX5. Misgivm!ga+d}CR mind 7Lc him--)ym$Sfools m@of ourselves! & a 8|; Z!a = !R poin`#wen1had)teffect.I6_"atA #so/EluckxQthat {7 isJ VpS AhuntG4box5wen77c -ink of fetc4theBbagsFS@B1soog oys tookr1 tofm a rock. qw less w!#gue*<,Q2<  `3'reOEickswhen we go to robbingNSe tim hold our orgieCsre, too ful snug9 ) 0CW@ bI dono P%;#ofT% wWCto hem,] /"ing!a Btime getting late, chungry`We'll eat0bUwe gec6y Temerg4/ 0ed warily f 5oast clear!weZbon lun$in ! Ac sun d#Bowar[Rhoriz] Ay pun  kimmed uDe@KR2wil1chai 91ilyZ7 alandedI3tlyd4dar7c"!id!in 1lof the widow's woodshedrAI'll.3 up*ev1 it(Upa?!unna!ou"od!.#it"it=be safe. Jus 3lay\-  Atuff1 I nd hook Benny Taylor'swagon; Iqbe gone!"nuHe disappear#re agon, putcBtwo Rsacks!"itA"w"ld,Qon to!tarted off, dragging7rgo'|h+"'sh &tgay9q fy1 on: Pp~ allo, whop  nLWGood!1me,, !ar&Gpingy*waiting. Hhurry up, trot ahead--Ahaul~Vyou. qnot as b as it4# be. Got b;in it?--orQmetalO+4tal2Tomjudged so9 1boyGthis townAtake0$%sol away1imeNing up six bits' woraold irNS sellh foundry thaz3y w; 8wic'$at6 work. But that's:4Fnatux ",  '!"!wa1to [$Ch#wa$ever mind; !n&% !E'1uckGRf=hension--for heub} falsely accus; r. Jones, we haven't!Udoing Rlaugh!'-,ymy boy.i that. Ain'bgDgood+%Ye_"sh"nA &B to #yw%"n.-(n,%to be afraid for?%is+J3not+qly answ"!inq's slow$ ~1S,;into Mrs.# dXeroom. 3 le nae doorz3gwas grandlyn1bod4tof any consequenceu2&~ ThatchersQkB Har3the!es, Aunt Polly, Sid, Mac he minister3beditor-qa great0&)?all dressX bAThe a recei;<RBartiJdany onP#we!iv such loP Dare cov Bwith:and. 2 bl[ rcrimson rhumiliaUNHv u at TomFAsuffhalf as muchQboys "however. Mr. Bn't at home, yet, so I gave him up;5$astumbl2anda Qat myG"br "Bin a(0!An1B did3Sv 1. "TyNr." She cto a bedchanRNow washI% y. Here arnew suit$ clothes --shirts, socks, .UCy're+A--nobthanks*&--b! And IY%Bz y'll fit boyou. Get Dthem await--Bdown 1youRslick .3n s \rV HUCKD! "we can slope, ifu'Ra rop" high fro"Shucks!D d|%IQrthat kiUfa crowd.,^(8 athere,a"|&4! I"an!miRA a bX'Scare Q" Silm .vhe, "auntie has been  afternoon. Mary(your Sundayb readyU 7aen fre  . baAthisus qclay, o;ra)Mr. Siddy jist 'tend toT own busiO#'sis blow-nb`It's one2#atx1havtime it'sF 1andl sons, on=uw"Vcrape they helpej9&of4'Rsay--h, 21, i yk+wK  Fold 2is to try toq#_ J( C1to-,overheard himvbto-dayvas a secre"B it' lRof a (XE RknowsSL##1allf!trro let oz!doVQwas bqHuck sh !be!--xn't geta yG1outAknowS"AwhatA'zAtracYAbbero'V  a  BovercurprisQ#AI be4 drop pretty flatWbchuckl aa verygEe aatisfiZy. "Sid, ib2tol3Oh,:Qwho i# . SOMEBODY told--3 @ZJl_ Dpers:Cmean:R to d XI7<x !you'd 'a' sne sn9EtoldZ)0)Tdo an{21an !y&~mo_Tp(+J >  cones. X$nn:N  says"--Dcuffed Sid's {i  0k8q"Now go"if2arenQto-moFit!" Som Autes'GSguest a WD-tab[$ua dozen@/"pr!upittle side;F1e sixQoom, {t1at r vAbproperl Amadev4 speech, iY!!heOkNHB honPQF [T was Dwhose modesty-- A: fo)sHe spru+{a'Er adventu finest dramatic mann_ master ofDthe B it !onJs largelyFerfe8 as clamorousNeffusivechappier K+amstanc  &, ( air show of astonishment,AheapF compliment2 so: ntude upon)(a he al/Rforgoanearlyv l܎K!Amfor%this new2 K :k set up as a targeh  \gaze laudations <"sh<2giv s a homesher rooave him educated;Rcs-Fuld spar2 sAtartFi  \'s chancrcome. H#F32uck"2 ne's rich." Noa heavy strain2the9 tmpany kept baBe du E:2aryis pleasant jos5DsilearawkwardObroke it@(AMayb. cbut he0!lo it. Oh, you%n't smile--  1eY;&a 'tTom ran Bdoor1looked at eacha perplexbterestuinquiringly a_ Ttongue-ti* #ls Tom?"P. "He--well - any making at boy out. I(<4Tom}/,q#Dggli{Eeigh,2 di"afinishsentenceCpourU1masyellow coQ the C^Cqwhat dih ? Half of FRmine! spectacl1 general{way. All gazed, nwpoke for a momentn a unanimous :.n explan  #1fur5i nd he did^B tal!bumful of _,ca scarc!n rruptiony!tok the char/its flow|che had"edAJoneM)d: I,x^Jf#%isP2it BamoupC nowone makeFBsingy), I'm wilbto allhT3was[3sumt"edRG over twelve thousand dollarsr-!as+ 7 [Qaresentever seenl`e time before, "  Q N"ho1 worth consido7av,tyaV THEer may rest Aaj's windfall33$a j4tirDpoor(vof St. o. So vast a sum, in actual cash, seemed nexincrediblejqtalked , gloated0rified, until thOs' mTJdtotter&2*'e unhealthy excite "haunted" housq 2 anneighboring villzwas dissected, plank by U3oun1 duand ransafor hidden treasu Qnot b=st men--0 grave, unromantic menWmH1Tom >Q cour2adm(gz1qnot abl|arememb~2at 4bremarkLqpossessJ&};3now1say0Twere dBrepe 4didvrsomehow regardedv8Aableyidently lo{5power of doV'2nd r common !s;5#ovir past historr!up X v2ar " of conspicuous originalityto paper published biographical sketcheNt.1 # p>#'s !ousix per cent.dJudge " lt's request. Each lad had an incBnow, was simply prodigious--a9D-dayC8Ayear7?2jus  got --no, hpromised--MrcollectD Ha quarter a7 board, lodgd school a <^1ose  be daysF 2 hiBwashbrmatter.  ,@RopiniR 8no 3boy!goz daughtPAcavepqn Beckyd@ 1fatzwin strictCw!ceA TomAtake&a whippt6  dy2isiFv  Cplea,!ceK4thei3lie-w!olorder to shi*&at!hemo8own3saiTaq outburh$atyBa nod !ou<,5magz lie--a litaworthyzaold up-2hea-Rmarch1]breast to George WaBton's lauded TruthU"ratchet!mQ 7ghtzU bso talSso superb wR walk4 fl qstamped\AfootdVv!2Shec:straight of1tol#/it"op& 1seexqlawyer  soldier some day0look to i"T#!AdmitkY National Military AcademRafter(Qraine!es  9[Amigh9'Ieither care both. Finn's w0 qsthe fac#now undeQ_ Douglas' protec introduced him)"society--no2' it, hurluis suffer%1mornj1R bear?servants1cle 1d naHQcombeC1 br hCbeddly in unsympathet3ets2ad 3e[ spot or stx~uld pres/2earQknow yK$!haE#eaba knifufork; h%use napkin, cupXplate&QlearndWbook,@go to church2stalk so "lyaspeechT become insipid in hisX; whithersoXees"edC2bar ashackl civiliz;B shuiQbound1han foot. He bravely b4is miser|1ree!thTLSe day up missFor forty-e\Qhours^g! hO j2himw2in Qdistress. The cS profoundoncerned;~7u E %eyF- @1forqbody. EThird V)r wiselyPp*$Qamong old empty hogsheads down*]AbandU#sl-T p'inQm he $rrefugeeL had slepor breakfastoB stolen odd61end Bfoodbwas ly<f in comfort969"ipwas unkempt, unM1cla old ruin of +,had madepicturesqueRays ws01frea happy[S routvBout,"his"*been causing,s 3urg=Qto go gr's face its tranquilv took a melancholy cas63RDon't X CI'vey #itwT work6"T;"#"it:~U 2to :)d("ly_&7#them waysA!mex!up% / Bsameq 7+9Awashy comb mLo thunder0w&let me sleepJ/a; I go61wea[m blamed cloth!atA smo?" m#'dg1seeany air git A'em,Show; !y'1 rotten ni,a=!et, nor lay^ croll a@nywher's; I hai"liD cellar-doErit 'pea b A  and swea q--I hatm!m Cy sermons!Aketc xK,[chaw.Qshoes$w eats by a bell1goeybed by fits up!--VK's so awful reg'lar)dy!it_(,>#dvhat way, Huck(&qmake no differI`Qybodyq STAND &3t's1 ti so. And grub como easy--I# t{!esvittles,}3askAa-fi 1; I  in a-swimming--dern'd if{AQ1do 6t". H!I'42 to"sodn't no(#--. OuRattic"ipRSwhileA daym1git!st"my , or I'd a died, TomnKBAmokeu y?5Bgapeqstretch Q scra before folks--" [The+a spasm ofsial irrit and injury]--"And dad fq"itaprayedNDime!A see, a woman! I HAD1ove2--I yUbesidHZ5's $Copen_<S$it%I G!st"QHAT, QLooky%,0S rich@what it's crack); Bworr  9 2a-wwas dead <2. N7%seBsuitis bar'l %shake 'emmc>B got into%isAif in't 'a' ben Kmoney; ntake my sh@&Syour'gimme a ten-centtimes--not manyX#s,K_# Ra derR2'th's tollable hyx4you$qbeg offSQidderv"OhK3d6%Rt. 'TBfair if you'll try^;B!a UQ longI*e $tok<Like it! Yes--bay I'd&a hot stovAI was(!itcLC. No7Brichi4liv m cussed y_Bs. I6oodv  Rf  I'll stictoo. BlamBall!QSas we3gun_1a c*"ll+AfixeEArob,p&olishness has  k"up5pil~x1sawx opportuni%"CDhereHECUevYnturning 'qNo! Oh, -licks; ara!qin real3-wood earnest)J+CbR'm siV-?5But<l)#qgang ifarespec5R's jo3h!!C"inq Didn't[!go~a piraterYes, bu%'sRt. A 7 zfAgh-ti7"a NQ is--rgeneral~A. InTr!ri 6  Qup inQnobilRdukes03uchw,! aS2lwme? YouhC  A youP *nVWOULD+B" "wR%,tI DON'TR--but(vpeople say? Why 'd say, 'Mph! V#!  low characters in it!' TCU+ {h+`$t*#so , engaged%Tental"#e. Finally h# Rll go}aba monttC!nd1if  `3it,49XRme b't>%Q gang e_b, it'sQz! Coxo8X`2and G>Toh# a[oEWill/!--yg2? Tggood. If sheUt"ofroughestK"s,@qprivate-Dcussdcrowd ror bust] Astar/4NCturn$s? 3right offBB@Atogem"avQiniti  0Qmaybe(H(Lj;+W6t$12Bto sn9Cone [+ O#te rgang's 8+sd nNre choppl o flinder qkill an 2 anV his famiWhurtsX%ay9/e3y g8,!_3E bet it is3 "at1ing Abe dt midnightthe lonesom|3est@ you can find--a ha'nted " ib:-Bll rNB3up M#yw{(socyou've3 on a coffi 1sigh with bloodOt)Bsome RLIKE!frmillion )X!ieh n 8 s QidderAR I ro 8#gi% acr of aRLbody tal('-&itD bu+!sn!,wet." CONCLUSION SO endeth schronicP$G strictly a}!BOY, it kAstop ;Sstoryz!nofEmuch)p"wi becoming ^3MANone writes a!! a Sgrown*Q, he O4A exarto stopOB is,a marriage) iof juveniles, he W can. Mosgyrperform still liveare prospc2Som.it may seem ZQke upzyounger ones agaiM9 1sor"meAwomey turned@krRit wiwRwisesyOto reveaH&Rat pacQtheirDs at'4. Pby David Widge]previous ediwas updat2Jose Menendez'>  THE ADVENTURES OF TOM SAWYER0 /BY# MARK TWAIN' (Samuel Langhorne Clemens)P R E F A C E MOSTW%e 1s recordw areally occurred;nr two were experienc6 myb!rObose of"wh7 ]#3mat7$inY Finn is drawn from life; Q also$an individual$is a combi,Ybistics #re_whom I knewSabelong t.Sosite of architecture. The oddK!!stzqs touch}"onDall prevalentchildren!bslaves5e Wpwe period1is ay, thirty osAty y ago. Although my book iaGended mainly@ Athe qtainmen1boy7 girls, I!7#ill not be shunni "7$at;d, for vmy plan<"tooo0ly remind adul0 they onceathemselve^ 1of (rhey fel aalked,}Rqueer89s=Gimes 4. z!dUTHOR. HARTFORD, 1876TT O M S A W Y E RI "TOM!" No answ& g4iat boy, I wonder? You Rld lady pul'"!eratacles|$!ov #emcthe ro0rn she pm:&ut"m/seldom or +rTHROUGHhrfor so WJj!asyIher state pairA3 pr8V2her",Qbuilt3"style," not service--4'!se+raetove-lidsUs well. She looked 2z"&mo68!aiK1Qt fie0673oudP;the furniturUhear:e IQ aet holI1you A--" 2="by AtimewVnding punchingNL%dre broomj!soGdneededE2to punctuat Q!esBresurrected no f B catiJ6"diz!ea!1wenthe openDA andUiRtm?he tomato vin~"jimpson" weedsB constitb the garden. No Tom. S AliftWmavoice  angle calculfor distanc1 sh : "Y-o-u-T w!slTnoiseU"h42  i to seize al2boye slack of his  aand ar?Qhis fwA. "2! IE 'a'closet. Who!(.Pb?" "N  1! LI!at yourU8(Qsr mouthb!ISa truckXIk?-1aun. Dk^3USjam--FewFWAI'vet" dk"leGA jam@e I'd skin you. Hand me switch.# h.i d air--Sl was desperate-- "My Bbehia hatesB{5 S else#'ve GOT to doLIrhim, orbu!ilaTom di>-eidFAgood02. H  back home barely in seaso}help Jim small colored1sawS9-day's wo"likindlingssupper--at le6e{n:"to~=8hiscto Jim"Jithree-fourtht~$rk. Tom's!br( (or rather half-Q) Sid!al0Awith A(piccup chips),Z ca quieH1andE,%noDous,VBsome* While Lstealing sugar aQ offe{X7C askw+questions/ Ewere1gui1nd deep--for Bwantxtrap him6damagingments. Like ;pI6-hearted souls (1was pet vanityAlievA `4endowed with a t@ 1arkmysterious diplomacy0qhe loveacontemn0xmost transparent d׏ as marvel[low cunning. Sai u: "Tom1midQ warmR, warn't it8 BYes'OPowerful1'u "wa n(FAA bim a?Ae shvTom--a togL#unr.9;suspicion. H8dL93facKK!ld aQ. So [ ?SNo'm-ynot very mx =1rea+oY Sshirta#Bu } 1tooJ though." A-Qflatt hO7rreflects2;hy-2hir1dry!ny Bknow/*s8!hay Fher Glqin spit/1herC whe wind lay, I ZqforestajCwhat )next move: "S]us pumped on eads--mine's damp yet. See?" 88"ex:Uthinkoverlook(v circumstantial evidenc!mis=a 1. Tya new ins"5ion^ ho undo yourrcollar =bI sewe to pump on/Qhead,3you? Unbuttsjacket!#sh#of\2fac1Aopen]s@a. His qas secujQ. "B1! W Ago ' #I'11sur'#edQ A 8bee  QI forg(y*. you're a kina singed c"s --better': . THIS timu Sahalf sV*her sagacitymiscarried,3gla?ATom i3Winto obedient conductconce. But SidneyIB3you5hisith white thread, but Qblack5BWhy,OB sew8r! Tom!" rnot waitQt. As4ent>w3o85bSiddy, 2licfk abI|afe plac/nrwo larg22les "A wer#us.+sthe lapd6them--on^  D3theHpJDShe'D"anoticeQit ha_'for Sid. Conf6it! she sews]&_ &I wish to geeminy sstick to t'other--Akeep!run of 'emsR I beI'll lamX qearn hi4!Hene Model Boye villaghkAhe m&1boyOS well--and loatim. Withins, or even less, M1tenG-As. NQcause sV1onePR heavV.Bbittj2him a man's ow_aTand p 1bd !emgAdrov% mSb)y25!--ras men's misf+eiaexcite!of. This newwas a valupSveltyP1stlojust acquiredb negrohto pract5Pundisturbed. It conma peculiar bird-lik5, a Aliqu wrble, pW  &#he9Lh(Droof at short 5valAmids@@Busicxreader probablyEbs how !it.4ra boy. Dilige attention soon gave 8#kn{7he strodeFVtreet full of harmon1his gratitud 0^ an astronomer feels who hasg planet--no doubtlqfar as Eg, deep, unalloyedRs concerned,advantagFAwithT!boO t$XComerRsumme4ElongJNqBark,2 P"ly Tom chel2!hiustle. A stranger!hi boy a shader'himself. A new-cAJaA ageither sexXan impressive curiosiPJdshabby\WJ!Thy{`Qdress\"oo  on a week-A<FFa astou B cap dainty ,W- ced bluL3b round%5was#Rnatty0"sohis pantaloons2had;82 on#iGonly Fri"He!wo necktie, a br  aribbon0had a cit#KR air |bat ate&avitals B mor1staUIsplendid}1hig!oshis finerUhabbi E outfit seemed d3crow. N]boy spokeU,2oneEa--but Nsidewise, inrcle; theyArface toaand ey!ey#X - U!" "D3to see you try i,  8$doN> ,L.-'Y?1CanACan'A "An>\!paMp ! Aname"q'Tisn't5"of^,Well I 'low^ MAKE it my0)why don't youhI\2 sa}01ill3qMuch--mAMUCHrb" "Oh^ 2'rey smart, DON'Tm# I)l one hand:n!meIr DO it? You SAY aI WILLTyou fool~ "Oh yes--een whole familiesame fixqSmarty!| CSOME "Oh_a a hat+AR lump-8;Z[Bck it offqanybodyG61akeb!re suck eggsYda liarn %fighting.q and datake it up1AAw--aa walkXSSay--!meA morBsass@and bou1 rof~oOh, of COURSE+; then? What/ eSAYINGTx for? W>{EIt's XQfraidyxI AIN'TaYou ar7""I+A3/3eyiM1"sihaR eachm tCwereH  .XGet away Ahere"GoyourselfDI wo B"Sobstood,X Sa foo0d"as a bra' both shoving 2ainaglowertg1Q hate# nfget an a. Afte=Auggl ,Aoth <"hoy#flHmSrelax Jnx watchful caution|acowardca pup.1ellRig brozQthras'y3his44r finger.make himW 1toosI care forj{4? I;1a6big Be isUmore,hrow him'3at !T[Bothas imaginary.]$at's a li=DYOUR 2n'tAit s1rew6n ;G dus cbig toh<qFstepZ/y stand up. Ateal sheeFTz!w{ 1tepv-Dmptl N="sa$'dnow let's D crowd m;abetterZ{HSAIDh*--Wd[By jingo!Xtwo cents.jAtook1bro)QEpper>$ 1ockd cderisionRtruck*g0B. InF.QstantR boys1rol Aand 4ingdg3d6Acats3, 1pac"Rtuggetm A's hI 3nd fFs, punch3Qscrat"T's no,covered -#:'ry* confusion2for) ;the fog of baXcDTom %, seatedU!id1# p sts. "Holler 'nuff!"3 heaboy on%Rruggl1fre*Hcrying--.rom rage. dn. At last#go1 smwbed "'N"1up -)8jyou. Bny 1foo+Qnext  3Mqff brus6S2ustGsobbing, snuff5and1\Eally&Aback1sha1his;.1tenbhat he=a do to]the "next) 2ughout." ToTom respo0Rjeers"st7off in high feath as soon asI4was*(up a stone,2w i "hirbetweenhoulderss-\1ailran like an antelop_Qchase6 traitor{"Rthus ere he livednaa posia2gat2som9A, da the enemy toonly made2s a gond declined. %J2's and called 0 bad, vicious, vulgar&"ndc3[ m} Twent away;!he\ he "'lowed" to "lay"s'.g1gott>2ate#:2and$he climbutiously in r #unl an ambuscade,-Bpers4#Aunt;g"aw]2tat n her resolN 1 toT his %%2captivity3ard/became adamantine in its firmness. CHAPTER II SATURDAY mor;e,"&4Qworld#.and fresh/Qbrimm-1ith5P1wasng in every:(L" i>'!wa*RR issuQ rthe lip`Zcheer iniJfAa sp&tAstep locust-treQbloom bragranthe blossoms fill air. Cardiff Hill, beyona]ave it,B!grith vegeta!2lay (4farZ, to seem a Delec"Land, dreamy, reposefulinviting. 1ppe5e2alkAa bu| of whiteZ long-handl11ushcsurvey  1qll gladE2lefoand a deep melancholy settledAuponaspiritmrty yardsQoard k nine feet/s. Life c hollo7existence^Ba bu{1ASigh)Qhe di 2hisfpassed)Isopmost plank; rep the operB; di8Qgain;f8/ignificant qed streaqar-reac!co7'un8s"wntree-boxQ Jim 3skipping 5at va tin paiT singing Buffalo Gals. BrQwater (rwn pumpKRlwayshateful work inu"Seyes,Dq now itJ1not\k 1 so\dompanypump. White, mulatto/Qnegro! 9there wai'Qtheirqs, rest?trading plays, quarren $, g, skylarking. And h"al?Awas only a hundRgnd fif!!f,/3got)  under an hour. "ev an somesG!lyto go after him. U1Say, I'll fetcp'7'll`"soJim shook :wq, Mars #NOle missis, she tol|IBgo an' g<s3an'F#op ' roun' wif_61sayZQspec'zEAgwingAax m ,rs5$an' 'tend to my ownQ--sheed SHE'D+f to de/5in'2you Cwhatt!id#. SSthe w talks. Gimm $--qbe gonerC a a\!R. SHE ever knowI9 she'd take)Qtar dd me. 'Deed2wou.q"SHE! S ver licks--whacks 'e}URimble1whosE ,p5C }w%1 awP1but6hurt--any#it!if$Gcry.you a marvel" aKs alley!Abega.waver. "%!Di=bully taQMy! Da5Fb, I teQ! But Tom I's" 'fraid aissis--" "And besides,R will#shAmy s,^o"Ji- human--t> Qttrac  "ooHAfor iaHe put( *a"ntZebsorbing!Qest w. 4andS being unwR; V2s fZ3dowI k!ApailJg3rea+Awas "waCvigo *retiringcQield 7a slipperZ {and triumphEeye.''s energyeAlastq}Tthink%!fuE 1had $ne$Sis daH"rrows multiplied. So~ 1fre!s #tra**!onL 2sor@2delXBd)Bb they J$a bof fun8%m2!to|)96verZcof it burn like fire%2hiscly wealt- q examin0 B--bitoys, marble trash; ;8 to buy an exchange of WORKX* 7s,*an hour of purk4domi#retraitened meansB "s qgave upoAidea r=1oys4 !rkN hopeless7- e Qm! No=  3than a great, ma1 8entC 6! >qtranqui. Ben Rog%v-spresentlnK boy, ofbwhose ridicule dreadingdb's gai the hop-skip-and-jump--prooj6is lis anticipa2!HeVM3ran appl1 gie1a la%melodious whoop, at vals, foljB by -toned ding-do,, a* amboat. As henhe slack}1spey"1ookhQmiddlU, leaned faro starboarderounded to ponderaborious pomp3/Oce--the Big Missouri (d| %;wdrawing"of 1boac capta9engine-bellbined, s!,o7 Qself  <own hurricane-deck the ordersQexecuAthemR1K, sir! Ting-a-linga!" The$way ran almos he drew up slowly towarq. "ShipToo backmsHis arm"gh^Atiff8xAidesZei mAstab%h Chow! ch-chow-wow! rQhand,"escribingly circlesC3 rePing a forty-'wheel. "Lg l-chow!" Thej5 e "to &RShead B0her! Letg*mslow! W-A! GeO ead-line! LIVELY nome--outd"- #t'Q#'t ! T~ t(hRstumpMQthe bA! StSy*age, now--l go! Donb 3thesH SH'T! S'tH'T!" (Suge-cocks)"on . R--paix9!, yDBen (n "Hi-YI! YOU'RE:ump, ain' nH 3hisPFouchI!eyan artistZ(!n vi\ gentle sweect&!suܙ"s $R rang4)alongsidv7  2mou!%er #e (n"tu1 k]! "Hello, old chap,M4gotTs, hey?"heeled suddenJn31it', Ben! IC9TnoticDSay--I'm goBa-swi, I am. DoQ wishacould? Aof c# you'd druther[ !--0 ?5? C)I (6(omR:d,#bi2at 6` ?` $hyIETHAT#umC \Aansw1carG ly: "Well, maybe it iU zI,$it suits Tom Sawyer dV1meaQ!le{`you LIKE!3Thep u}1mov^"? I(see why I oughtn'Gl-1. De$"get a chanW+# a fence every da}1hat(2thez-Q in aSlight!toAnibbApple2R swep daintily=forth--steI"ba<1notK effect--advAhere?there--critici=50--Ben wat2mov@1getm`!"ndp( bested, Ted. P 5 heTom, let MEf a littl _o consent1althis mind: "No--no--LBl"n'ly do, Ben. Y7'e,1's  particula.u a--righ eNQknow -G if C& I^3and. Yes, she's ;-bbe don[ careful; v"onmRthous Ftwo can do i?wayybNo--is6Hso? 1--ljust try. Only--I'd let YOUCas m:" "Ben, ., honest injun; but-D$nn!o s!1n'tAhim;7/!, "/Sid. Nowy` how I'm fixed? IfEa tacklKsb[C&Qhappe+"itOh, shucksbQ3as lgA youocK,#mySFN2.bafeardW3ALL Rareluct|ig @qalacrit1. Ah i4e  )erAb workeZ"sw>LA sun( #ed< 1 saa barrel7shade close by, danglQslegs, m^& aplanne! s0Iter of more innocBT33o ln6material;ed along :; they ca6BjeerArema2A. Bytime Ben\!faY'1out!ra1he $+Billy Fisher for a kit!good repair;1whe>out, Johnny Miller b in for a1Ir! a!ngw  uCso o, R hourHT hour8 afternoon>," a5poverty-stricken; !2was literally )3 in2. HhW"s r q mentioetwelveA par6 a jews-harp,*ece of blue bottle-gla}uOthrough, a spool cann2B key|u unlock1, a!mchalk, a ca decantU& tin soldiQcouplQtadposix fire-crack&r kitten only one eyJ61ass>knob, a dog-Asbno dogv3hanNvb, four1as of o C-peea dilapid)old window sash 1hadsa nice,G_2idlM#thq--plent40 \2encQthree coat! on it! If2n't9>9ut )"heT have bankrupted+Bvill)d2aidCmselR!itnot such a!,Yqall. HexA3dis8+ a great lawRuman |,1out5 ing it--namely, ."inD&Ra manzboy covet a} s !isG! n5ary;^ difficul vattain.U3! se philosop&)che wri ]x@A now comprehen>qat Work $isaatever dy is OBLIGEDj,<OPlay< not oblig# do. And 2helyIto under* :U1ruc artificial flowers orW_5ing"ad-mill is work, ten-pins or climMont Blanc amusement 3are2y gentlemen in Englho driveb-horseJ$nger-coaches tw}r thirty miles daily linummer, becaus@privilege costs themDablenQbut iOy"IK wages fo*XAturnh1ntoI3txsresign.oy mused at3ovea%ub?GQwhichRtakenC r Sworld`whheadquartersv[eport(sI TOM , ]q lkby an open {@leasant rearwBpartYwas bedroom, breakfast-s dining and library,|c balmy D air* stful quieeq odor o%Y@.rowsing murmur (AbeeshFeir effec!he AnoddfQver h"i "sh5n,%1but#caLdasleeplap. Her spectacl)1progQup onsAgrayA for-F1ty.%" 1Tomdeserted #ag&` !nda0 'iRpower p_repid wayN said: "Mayn't I$} yKCaunt&'ready? How mu Adone*AIt'sd.XCTom,ro me--I= bear itIb<u; it ISRF." dY1truxevidencezw uBsee LRrselfe a1uld^MDfind1perQ4C. ofAstat true. Whenfse entir*"ed1notelaborately QrecoaM!an!n aeak ad8ogw astonish 4was#unspeakable. S|bnever!m U's no^# i2canCwhenM2 %Ad to B." A!AdiluO!he)!liAby a, "But it#s seldoma aRI'm bsro say. go 'long$pl/Aryou get@3som i\BB, or(tan you." &awas sokbcome bSsplenSchiev1hattook him#th&tsE- choice appleQdelivit to him,C"ov cture upoBvaluNflavor a treatAo it uit came~ "siT9ugh virtuous effbsd: a happy Scriptur urish, he "hooked" bughnutn !kieand saw SidQstart%pHl2 stairwayll tck roomsecond floor. ClodsAhand$A thegC)waXmtwinkling y52d a #Si'a hail-stormx # ct$Allec+ surprised facultiess*arescueQ or s0+Bclod7tersonal<G} MAgonerSa gat3eneral t h&2too9iY$!usTit. HGrt peace+ /"SiWAcall"tt s black $6+n1rouC1skipQlock,hinto a muddy allaled byQ%s aunt's cow-stT4 He aly gotrly beyo  reach of capuQhasteR the public squ$1, wtwo "military"N!ie02boy"met for confliY AccorO qto prev#sappointt <G3 ofޢ these armies, Joe Harper (a bosom friend)<the otheruse two great commay ! dYSt conyb to fi!--DAbettIil2Rstill<ber frys !geon an eminence/Qconduield operations bysD aides-de-camp's army wX uvictory+ nd hard-f@ 1 ba# T were counprisoners 'drTterms rdisagre d7y $ay 03ed;X 4R fell?and march "ayhTom turned home slone. Q!as &3useJeff Thatch-1ved_saw a new girl e garden--a love^<blue-eyed creaturQ yellir plaite1two-tails, white summZd embroi  )JQettes fresh-crow2ero4without f^+a shot. A certain Amy Lawrenc2U2his6 !efoJa memory of  Gm 1 he#d to distr#; !rePdKQssion"dogi o + ~Aevant partialit pmonths win8bher; sTesseda week ago; $ <bappiesx Oroudest Rworld WQshort_e!inRinstactime ssgu a casual=)visit is dH"sh this new ange's furtiv -shqchim; tf Bpretq6 Aknow\4was %"show off" in 2sorabsurd boyish ways,# wBadmi%{Bkept is grotesque foolishnessome time;, by-and-by,  )s Adang) gymnastiche glancZ@!idy MC girl was we(xher wayO $upn r leanedq, griev5b+Roping! tarry yetblonger 1halA1 moO  Qsteps m]1warQ heav great sigh asp$Ar for threshold.#1his:! lI", Qhe toqa pansyG L ! ss): 3 bo)3rou\Uad with Tr twoY Aeyes=#haWCdown d as ifBsome of interest goat direction. P- he pick:&w#ry !ba! iO,aead tifar backSas hefrom side8aide, iO edged nearer B; finally his bare-#W3(liant toes)w 2e haBaway the treasu# OArnerb only minute--(v Rbutto$1 inhis jacket, nexheart--orstomach, possiblAnot 82pos<s anatomnot hypercriticaZByway1# 4ung#<nightfall,ing off," a16 2irl exhibite again, though Tom comfor$"im$ 3hop@Abeen>,*een awar&P  Bs. FX he strode home !H[[%advisions. Allasupper.cspirit"soCrunt won "what had #inV child." He tookÁod scoldrbout clB Sidp1seee!miY QleastQtriedIugar undGveryG"goknuckles raQ!foxc "Aundon't whackmhe takesQWell,/1torsRa bod 1way"do. You'd b9  bsugar ifq*watchingu sezckitche Xs immunity, l"gar-bowl--a sor&2glog2Tom/Fllnigh unbear_'s fingers6`Rowl d1LVbrokeFin ecstasies*JB (!he controlP#Rtongu!il5 toF Bpeak6!d,^P1in,18A sit0 bectly Lyshe askejimischief|u! tCrRbe noA!so+   !asefpet model "catch2 Heo brimful of exultR1 Thold Q rld lady #ba stood abovwreck discharging lightnings of wrath(#Y v, "Now iVm2A8zt gQspraw1on 2loo potent palm#ups!to($"keTom cried out: "Ho 1'erbelting ME for?--SiK it!faused,\vl1heapABut 1shes5her3she RUmf! you didn'ta lick amiss,)Wsome other audacious Iaz 9 ." Then her conscience reprgeqshe yeaato say'3 ki l;ashe ju - !beo4tru!a  Ae wr7T cipline forbadhs. So sh rsilence2d1bffairs av2rt.|1ulk# a W "ex chis woBknew3Qheartb Bas ojAkneen was morosely gratified b 1ous\)OAhangno signal take notice of nona3ingRR fell"no cthen, s& a film of tears~ahe ref recognition!pilsick unto deathbim besee}D one forgiving*u]cds facew rand die word unsaid. Ah,+Hs !el2? A bZK the river,  Qcurlsw9<8sore heart a .sEhrow 1ow 4earxfall like r4 (ps pray GoAgiveAbackG!bog\  , AabusY9[Rmore!k.blie thlsi02--a suffererP"se grief C*# e$so, as feelBwithAbathos se dreams,hto keep swall ,Qlike to choke03swaqEblur:, which overflow}xr winkedran down*l?XAose.| ba luxu'"hi:op17gsorrowXnot bear to have"ly'Lixrng deligh\ Brude0Cit; <too sacr/rcontact7Tso, pU,his cousin Ma31in,!EalivAe jo!sesB4hom+ an age-longbof oner aountry!go~in cloudBdark u"on|Munshine in at@1"wa B fars the accustom"1unt=?S` desolated"suwere ind9. A log rafAthe S invi%fQhe se!i on its outer edg Aempl+reary vast*iram, wis4Lw_ u rly be djQt oncs5 un6c1the&'routine devisWn9N*Y+Cflowt>got it out, rumple!ila 'Fily increais dismal felic) %HeFQ1pitu knew? WOrshe crym8! L! r%toRarms #ne  him? Or2she(!co1all (,1? Tuch an agony of pleasu ) ` tC and 1gai 6set it up in new!vaosTswore ithdbare. Vqhe rosei?NJAdepa4l A. Ahalf-past nine or ten o'clock hey 3alo+'street tothe Adored Unknown ;X{ `; no sound  3lisdVear; a c/qwas casa dull glowbthe cuCof aX"c-story/Q. Wascre? He climb,jCs stealthyf/ !thn qood und]#at j Aup aC#,ith emotion; Claid]$wn9#g bit, disposingpAuponp Rback,]ands clasphis breah41hiss wilted5*1thutdie--ou~ jyno shelter bomeles-C, no !lya to wie death-dampsR!ow8  2benvTinglyqmthe great3cams4SHE:!eeww4'E outvT glad/U,p4oh!A!hev Atear>poor, lifWform,=>Dsigh~1a ba youngE so rudely b:*Duntimely cut ? Aup, a maid-servant'cordant voice profan" holy calmqa delugAwater dren#rone martyr's5"s!BstraB hero sprang uAa relieving snort%awhiz aPa missil/vir, mingledHV"rm Qa curHBshiv1glal !smb 1vag rAv!e >Bshotvgloom. No!Q, as +all undressed for bZ  omission. CHAPTER IȷCsun 5!2QanquiT"ld]abeamed8D4'ful village~a benediY Breakfas, Aunt Pold family worship:cL2ega# ab built6up of solid cAScriptural quot/s, welded`%A a thin mortar of originality Bsummf  7she+a grim chapter xMosaic LawKaSinai.n Tom gird Qloinsto speakh2bto "geverses." Sidlhis lesson/"c beforAbentt his energies5 smemoriz\CfiveeAhe c$"8the Sermo!Mobecause 2uld.#noO, were shorter. Aalf an hourugeneralw!no;wn =Qraver) %olN'Bf hu-3 !iss3bus $Qng re%ions. Mary took<1booAhearPSrecitahe tri!|] Gog: "Bl!ar 1--a " "Poor"-- "Yes--poor; b025#In? :$ i/Ubthey--" "THEIRS BFor +. Lairs is[kingdom &MavenEy>_mourn&ShzS, H, A S, H--Oh, IO$"wh is!" "SHALL BOh, # fb shall-- *Y/ I 5iWHAT? Whyyou tell me,1?--do you w !! bmmean for?2youthick-heaRhing, I'm not tea[1youpyA1 do. You must32leaI75. D"be"buraged you'll manage it--f 2do,11Agive #ever so niceC, that's0#bo'"ll{1! Ws"TMary,K C+'.ueryou minMbsay it's,< AbYou be"sou%. Qtackl ;3" [did ""*2und double pressure of curiositprospective ga2 diA)2ithD he accomplished a shin SuccesQ gave  a brand-new "Barlow" knifqth twel2d aSRcentstZSnvulsGthatGVsysteL[ DDoundTrue, the scut any!buwas a "sure-enough" 5t  inconceivable grandeurSBat--lBWestern boys >A got N|a weapon1#qunterfeZ3a injur<3obmysterw] erhaps. Tomr˻to scarify82cupuR\ "it )ArrancCgin F dbureau" !ca\ qoff to  eSunday-school. FLrtin bas 8andmABsoap!he  3"oo21setM4n aRbench2; ta$ d+be soapeiy; sleeves; poured>& ,W=y~e'  " Ubegan?ace diligentlyFStowel|-g"oo&&3 re),5and2Now49lhashamesmustn'tVbad. Water wShurt c#"Tosa triflncerted. T=5sin was refillAthis3xO&ito'b, gathaf;/% ebig brGU9(hen nDboth eyes sh8Bd grC+t.[ , 1nor&testimony of sudsR>2ripT Aface mse emergf>x,fnot yet satisfactoryQclean territory* " a%Achinhis jaws,mask; bel_p4dis lin1 dark expan5unirrigated soil]Rsprea7,rin fronlAback  2himBnwhen sheY%dR4him$Ba maqa broth1adistin<Bolor)Aatur2haineatly brushe2its curls w]Ainto2intsymmetrical effect. [5!iv;w smoothL[3labdifficultQplastere AI]3qhead; f(] effemin71andBown  lith bitterness.] Thenr!go! aP1 ofF#cl%1Busedy##on Bs duvH!wo s> were simp1"ot%#clothes& "soJRat we qthe sizV brdrobe3D"put`"s" !!S; she+Qneat "/m,his vast shirt MG2ovem,soff and c V-QspeckSrtraw ha)1now#oed exceedWAimprcand un2abl":Yy as E as OOTa restraint e lgAm. H-"atU Q forgie"5!peZ61 cothem tho"ly/2tal s9Bthe 9rthem ouH2los:Stempem~z bm$o do ever  Dn't "doAMaryN&rsuasiveTPlease, Tom-- 3So &zhoes snarlingJ(son read9/hree children se3for "!latat Tom hd heart; but3andbere fo0!sSabbath`-from nin$Aten;B church service. Two  "ermon voluntarilV :2too!ger reas.TZ urch's high-backed, uncushi$BpewsU!~h4d persons r edific_bWSplain,'a sort of pifR6ard*kQon totia steeplB Tom droppe(ps2acc0a comrader]2ay,N,o)2a y*;aticket5Yesy'e'Agive:APieclickrish fish-hookX2LesExa'em." 5(0 ? W propertyGd@!tr=cMwhite alleysb  E6Tsmall+ #oro9forSsblue on(1way ,b boys Sy camwent on buyingz of various colors ten or fifteen minutes l !/ qqa swarm; #leg Rnoisy: irls, proceemoE!se &dAed a quarr84Airst5jAcameyQ teac a grave, elderly man,75QferedGny-'6>aTom pua boy's @ !inM 3;"was absorb% the boy  ;[aa pin w I boyk%8 hear him say "Ouch!"got a new reprimandJ 'csle clasWqof a pa --restless,!tr\Csome> Qthey to recite their@w%~am knewuverses /,!habe prompv8ll along. Howe)worried @2reward--in T blue,,q passagl"e '(;2pay#wo1 of  ation. TenuB equa#onc7$Tbe ex^qfor it;0Cyellow onep #enV> Wsqsuperin;"ntat1ly bound Bible (qforty cin those easy3s) SQpupil2 maH$!myKe* (the industaapplic+4 toeTthousand]H2 BDore? And yet Mary had 2two%is way--it the patie5!rk!^  oy of German parentage had wonRqor five3onc#ed i out stopp/{Gtraitmental facultiesyCtoo (haand he~+Abett {U idiodBat dth--a grievouC2he :"onpR occa$y company f(1 exbed it)  'y come out and "(b." OnlRolderts13Bkeep}Li]1tedRlong  to get a2[s6y*sse prizaa rarenoteworthy circumstancer32fuls?conspicuous for  ;AspotEyQlar'stQ4fir"a fresh amb/that often_')ed\weeks. It is{1s Tom's qstomachn 1rea 1ungo1for#.o. unquestion6-Sntire& hNPa1lonQglory,qthe ecl+!atcI rIn due K  &Rp in {e pulpit" a6d hymn-book inh)!nd cforefi"O(between its leave Frd atten0G  ! m09>y,4aryAspee  RGs asoEBas i ainevitAsheeTmusic&sq who stu'1forAplat<$ings a solo atn %!y,:Qneithen sa refer.0k. ThisN0fa slimEirty-five a sandy goate8Qhair;1ore 2iff!Cing-wE"Bsensa}!itenew hero ups C!on l Xtwo marvels to gazt#injbof oneBboysall eaten upenvy--but tb)est pangI-swho perstoo latDS themselv contribub athis hsplendor by trad01 to't wealth+bamasseelling whiteprivileges s]D2pis,Urthe dupa wily fraud, a guileful snakeRgrass !4was;ew 2Tomo"as%2eff superin"nt pump upI7!s;it lacke&wS-true gush< IQoor f' tinct taughZ-xzw not well bea]l  k4was.preposterou8 c!!hae)Q thou[!sh $al wisdom on@remises--a dozen ,#capacity,Rout a8. wBprou$glsH<T1Tom it in heL-ouldn't look. ShH 3n ss grain %"d;Ta dim suspicionbG(b--came P-! wnEd; a1`#glrld her ] +her heart brokMs jealouaangry,t'&rs3shebody. Tom G!of (Hhought). )asohis tongue,Qtied,J4 2rdl"quaked--part75cau awful greatnes rthe manGmain6H$ have likBfall00borship!ifyqLq1ark # ph an Tom'!ca9Rhim aC * sand ask!qhis nam?hwstammered, gaspe!goUout: "Tom." "Oh, no,QTom----" "Thomas'"Ah~'TI7!or\ it, maybe{'W well. But you've)one I daresay""llit to me,6Q you?1ellQ "an"Qother", ","'Walters, "5!fay sirX=n't forger mannerI Q--sir1it!B's ayvF . t, manly0 Q. TwoLverses is a  many--very,(.'2ou $can be sorryUQ*c you tOAAlearm( knowledge is worthchan an@1<3is pa; it's4#e  Dmen;V$^d3Qman yC$Alf, -5day1'llR,Y9ay, It' R <)1rec ;A1 ofDoyhood-- Gvmy dear-5tha^mU<  Jood ,L$en? H.)3 ga beautifulI*\d id elegant'"anH  for my own, always right brin"upA is |2you<{!~&take any mone^ose tZZindeeE1nown't mind t $ m+ "isB2 hylearned--no, I know --for we are4$of3boyG!. 1no vAknow2nam^r, es. Won'Lbtell u9the first3tha`!ap$Fed?"l1tuga_utton-ho sheepishblushed, nowz1his! fO'MAsankm ain himH_\ETAposshtc2sweb simplest (--why DIDH=ask him? Yet hBrt obligspeak up say: "Ad'1--d}#be!.L_hung fire."*$me\ady. "TF twoeDAVID AND GOLIAH!" Let us draI%cu3 rcharity tYsceneJV ABOUTQtcracked be2theu church ?R ring01epeople(1 ga||"mobsermon. childrenHA 5!e C C eoccupi5ith thei s, so as K{Kd. Aunt Polly zTom and472sataher--TomL%"d G8sleB2!ha9A be GrE9the{e seductive `AbsummerEs asQ crowd fil/"s: 1gedneedy postmast=!hosseen better days C may<"hiJ "ha$y3re,| 4 unmp#ieOejusticRpeacei widow Douglass, fair, smartQforty!ene,O2-he4Asoul well-to-do, her hill mansj only palactAChosp+and muchKmost lavish 't of fes,St. Petersburg [RboastAbentxQvener,3MajsMrs. Ward;  Riverson,bnew noaACance_1ther village, followRa tro8lawn-cla.ribbon-de!3 p-breakern#q clerks!owfa body;C had.G vestibule sucD!cane-heads, a circYb!wa! o !imcg admirers, ti Alast!ru ir gantlet; and/AcamedModel Boy, Willie MuffFs heedful carlQhis m5 asXere cut 2x ! b=tN,>#to, v1prisrmatrons(2ll vh !so0. qbesidesa"throw;3 Qm" so. His whit.kerchiefZhF#q pocket behind, as usual ons--accidentalN)noa!he 1ed ytas snobcongregapefully (: 'T1once, to warn laggard0straggler a solemn hush f p! <Q+vdbrokenBtitt=8and& choir is galler=GF!edthrough =conce adQY Pill-bred, but I rforgottgh!rea2. I !y [B agoV.I can scarcely rememb?_="itI kg1 in foreignj#"ry* minister & "ou3hym-1reaba relish, in a peculiar styleZeat part His voic on a medium key&Zasteadi:/i0% a"* rBbore1strY5umphasis topmost wor splunged8spring-board: Shall I be car-ri-ed to!sk !on flow'ry BEDS of ease, WhilstsyOIH sail thro' BLOODY seas? Hqregardeadful readKZt"sociables" h= #R>!to;r poetry,Cwhen32ughcqladies l3 up<3han let them fall helplesslyrir lapsc"wall"C!eynB1k\!irZ5s, u say, "Words cannot71 itfis tooV, TOO rtal earth." Aft 2hym~&Bsung2RevtSprague#' into a bulletinGuoff "notices"ge,qocietiej-1i#)o4 2st qstretch of doom--a queer custom#is vin America#cities, away x4)1 agAabunZnewspapers. Often3Eless, to justifm 1adi7l3Bhard")q get riu'ittprayed. -, r:bwent iIhtails: it pleadea 2rBttle),3rend:7=eip ' itself; ?y([State officersqUnited . ' 'C)s5A Pre.t_q Governm$poor sailors, tossed bK1rmyM ppressed millions groaningeel of European monan  A Ori5 despotism1sucDght 2tid?'rand yet-M"yehqee nor !to &alRheath)the far islB seaZaclosedW a su Twords!abmfind gra)RfavorV!seLm fertile ground, yie%Qime a?0Charv9good. AmenP!re 3a r(Q of d v8! cPy sat down whose historybook relates disQenjoyQB, he< Aendu}Qt--ifN1ven9J r  it; he kept v y a63 --Lp"gc#, qBzc of olvthe clergyman'ular rout}&VaiQtriflsRnew m3 terlardedear detected iWhole nature resen!considered adAs unqcoundre I |/B a fU'R lit  " bAew i#nMmaAtorthis spirit by calmly rubbing iti d8, embrac"eah,3armpz}& so vigorous7at eo$;part companyBbodyvthe slend9read of a neck61expto view; scra0Qits w rind leg'AsmooT !toCbodyK|been coat-;~,&le toilet as tranquib if it.)$E safe. As!ras soreEaitched@rab for iynot dare--}4iev3oulbe instantly destroyed 3did qg whileB was2 onhhVqsentenca curveTstealq.Cthe ra"Amen"r!hewas a prisonwar. His aunt bthe acmade him let it go rhis tex8droned along monoton an argumea%"sybmany aBb &byBnod 3y Wdealt in limit 2firMbrimstonSthinnpredestined& Eto a#so !2worA sav1)2Tom_&ag ;; $ % h2how:t#aseldom: Delseqhe disc MH"is!he8qreally {16forE*a grand and moving picJH"&+=world's hosts at the millennium*B !onc aamb sh"%liS[ , ,!eaAm G2hos 5les1mor/C theEspectacle werQahe boy v# D" principal character beforEaon-look<>!s;#1fac" oirhimselfYhe wishe",Q tame lionf!w 8Qpsed (ing again,fhe dryQumed. eHpA him treasur # a large black beetlformidable jaws--a "pinchbug,"8#Rit. I/=ercussion-cap boxhm1did/bto tak)b' Afingal fillipgIbfloundKZ2isl1its !ur ger went1's Co!lart5its" legs, unAto turn over!ey !lo1forF^!ofCt. Other'uncR]1q relief# wyof too. Wa vagrant poodle dogNA idllong, sad#Bf, lazyI1oft e quiet, weary of captiv(1sig"for changeMs;HAdrooz Ataile8bwagged:1urvrize; walked a it; smelt a87afeu4 4; grew bPJUA6rY1l; Trhis lipqade a gzly snatch,YA misa;3it;/nn %; g diversion; subsid  Stomac)W betweenm3pawh scontinu experiments; !ath Aindi- absent-mindi(1nod ittle byrhis chin descen/ou he enemyAseiz[2re sharp yelp&li' fell a couple of yards away, S}Amore neighboring spectators shook)a! inward joy, s2afaces rA fanI s)_aentire #ppXdog looked fo8 4probably felt so r1entc iheart, tooBaG>qor reve1So .n:9gan a wary attMnWQ jumpfRevery2B, lightingP!hiKJae-pawsin an inchB2YouUX O=3Oh,Q, I'm,/"W4=--wQa, chil9 X!my! toe's moF1!" J#ol[UBsankqa chairB#%ed! cEB"a did both0,Arestwh/d<P," ayou did Ce. N ;1shus aonsensCd climb"thg{$ThS ceasrain van Afrom!to   ' it SEEMEDi"itTBso I B my aat allqQYour ,#K+ Sthem' aperfectly" "Ther|Tdon't Ahat @'Open your q Well--4 IS1butcre notwVto diG!at. Mary, gec>aa silk a['1Rnk ofq"ek$2n." !pl/j7 !hue. I wish I mayO%qdoes. P_@.1wan-]stay Don't you? So all this row was E1youM>ght you'd7i ibgo a-f*?yI love you"1+!ou !ryQy waycQbreakX?l !t soutrage!=." dental instru?S read #%on8the 8^I"'s:Ra loo& #tiod edpost. TBseiz* n^QthrusI($inR2oy' U hung dangb- } Rrials@*1qcompenst+s'#enrschool >fast, he6qthe envc( 1 bo"5metSfap in 1row&eeth enab 3 toMRorate!1new<>4 s9ing of lad9G%in the exhib@0;2oneShad c ' 2hadr a centre of fasc and homage2o[Qnow f:OJout an adheren Tshorn!Rglory'QheartyBheav 3a disdaibZit wasn'tDo spit like;our grapes!"%e wanderh dismantero. Shortlyb3camMthe juvenile pariah5he n;Huckleberry Finn, sthe town drunkard.,-Qcordi2hat2 dr1#by "e s{t 2idllawless and vulgarRbad--zxk?eq delighV-forbidden societyAthey dared?Rlike B!om @!reNCRboys,faxenvied >his gaudy outcast cond;as under strictIQrs no8Mm1Splaye3him1timf2got% Ince.c!slways de cast-off _سll-grown meAthey  in perennial bloomRflutt sCrags{!ata vast ruina wide crescent lop a of itp!m;ecoat, +72ne,Bnear^2his[ !haQ rear!buttons farY ; 2ack1oneMeaupportos trousers;Ceat ! b$A low~contained n A friM&rlegs dr4Bdirtanot ro[Iup. 1and?A, at"own free3Yrteps inKDweat in empty hogs> in wet;3Qto go2 orurch, ornmaster or obeyXcould go  or swimW1herCchos1sta/long as it suim; nobody~V$fiyhras late! p8 d3t)2boybarefoot Qe spr'gnv~Cme lsAfalli1to wash, nor put onf0wear wonderfully. In !rdJ8tQEgoesxlife precious{!adgrthought\ harassed, hampered, ; inkBR!ha!AJtomantic : "Hello$!" K ee how youh9it.a A gott rDead ca%RLemmeC"imp. My, he'tty stiff\Are'diqget himQB2himR a bo#di4zI a blue ti@1and"adBat ItVter-hous1 T#itBen RogersI!goa hoop-stickE6SayU!cats good for2hGA? Cu1rtsHSNo! IQ3so?JV some6A's b3BI beedon't.ibaspunk-?5S! I wouldn'tqAdern 85You-,  $D'OD tryqNo, I h DQBob TOA didrWho tol!so"he Wa5Johnny Bak im Hollis8 'ld2Benmca niggLC them bre now2ellt? They'll lie. Least<1all WA. I 2HIM(I%eekWOULDN'T\Shucks! NL!te`lbone itvQnd di=2a r/BSstumpLthe rainQA wasPI qdaytimeClith his fac Atump-3Yes* I reckon so[ADid j y5 3"I :.lAknow@Aha! Talk1tryN:o c such a blame fool,c@Aat! @S a-goVado any2. YV rbrself, e middle Qwoods\5Y's a Btump1jus'7rmidnighrback up!s qand jam/Q: 'Barley-corn, b injun-mearts, ^ {q, swalle_&drts,' 1n w way quick, eleven steps,(eyes shuthen turn.<BtimeYAhomeDrout spe+ttbody. B#f$Wcharm's bustesounds likxrood way !!wthe wayB donNo, sir,x1cann't, becuzoGartiest cis towT!BE1war 2him!!'dU!ed*xto workYS. I'v1offs'9"of off of my9sAway,m 7. I Tfrogsv$*`U 5got;"Qmany gb. SomeI!'eFNSnYes, bean'~de%1Havk?,"'sSway?" "Youd6 2pli!be#nN1getb blood"thN# p3" o rEpiec!be,d{q dig a *1t '`?aYrcrossrorqdark of6mooQ burn/ $styBbean#se Uq=.ll keep drawN$nd ,mA feteXFZ v+1"soQhelpsh!toOA the.Rf!sof}Qcomes %--;"gh,"bui$you say 'DownV;awart; 1no @'Bto bgme!' i & Tway Joe Harper doe!he1'enCoonville and mosQ bwheres#say--how do:"urA b!ak1r c+Enm?graveyard '%Ubout wwXromebodywas wicked hen buried3Fit'sFqa deviloP, or maybe%,3 't see 'emcan only+ 7indYAhear9Qtalk;|they're tahat feBawaym#he<<1fteMGqsay, 'D  corpse,i,A1cat,Qye!' ;2ll 91ANY7b." "Stnright.}  "No@Rold MrHopkins mz !soqAn. BQsay sra witch#ay AKNOWQis. S$*$pap. Pap says so his own self. H! axAone *a#!eeUawas a-Sring himC !e T'!ro-Bnd i!ha AdodgQe'd a>e)that very > $heFoff'n a shed wher' s a layiQbrokes1arm"W#!diOknowLord, papGeasyK1loo- *q stiddyDyou. Spec"ifcmumble d$b're saS he Lord's Prayer backards2Sayy y:"trB1cat1To-. .old Hoss Williams t8a" "Buy him Saturday. D` ?qtalk! H5uldbAarmsF d till -?--and THEN2Sun|Sevils Tslosh 1muca,2, I' L!nLaBso. #goT!f'"--$Rafear A B! 'T qlikely.djAmeow1Yes#, Z'geR Last timeOkep' me a-me8!arA1ays( r&rocks at mJb 'DernQcat!'qso I ho Abric{!hiDsdow--bu+BbwTIn't meowe bauntiea#me|Q4'll8!is%. 3!'sOL"NoQbut aS%Ou1-3at'AtakeG .Uqell himHAAll 4. It's aIqy smallr, anywa#anybody3runw6ae1 bem. I'm satisfiiwF!enAtick"Sh!tiu plenty  1 ofrif I walCo2whyn1#wed!cawT&Cs a Q2onef YAyear,b--I'llbyou my  ALessi1Tom1 bi$pauAcare3 un$Git. ~a viewe#Awist-. The temptation+strong. At%he"Is it genuwyn4Tom>'>!shthe vacancy.a!,"YB, "iAtradTom enclosQ8 A@lately been: 4#'sG"th separated, each fee !wealthier thqfore. y'4Tomy'Dittle isolated frame ,trode in briskly=Pof one who AwithQhonesbed. Heahis haQa peg52fluT BselfJ4}31eatI r-clacrit", throned on hig1reat splint-bottom arm-',R1doz)!luW" drowsy hum of study. The51rupcd "Thomas Sawyer!(Ghis name{f7 in full&!me$rouble. "SiO"Come upcRS. Nowbwhy ar2gaiN3cusual?= "to Srefugz"3lie' Pw ; ails of yellow hair hangingoae recogn$PHric sympathy of4%;&bat forTHE ONLY VACANT PLACE girls' sZ QinstaE STOPPED TO TALK WITH HUCKLEBERRY FINNY's pulse\:Qhe st helplessbuzz of 5r ceasedcpupilse) foolhardyaqhad los% u/:9*(d did w"Stqto talk@ Finn." (eno mis}e words,!isE!motounding confessionYever listen!. No mere ferul answer f4is offen%1akeyour jackej  's arm performed until it!ti#>Qstock1wit) _y diminish`A ordllowed: "l!goVs!th! And let)bSt0xr titter-VripplE{qom appe^rto abasiboy, but in .G14was caused rather0!byworshipful aw%his unknown id(&IAead _#urRlay icgood fortuntss Rwn upk(1pinc<c0)'Qirl h,away from himaa toss$&nd. NudgesBwink$qwhisperO4verBroomrTom satW!hiIs "Aong,"CdeskO1eem[book. Byby atten$DNjX#ed murmur rose]AdullxEPresentlboy beganqeal furdaglance robserved it, "4G,2" a8and gave hi-HbackRe spa\ta minut2she caut4duQ, a p5layi"erthrust it away1g!pu>Kback,^2butC&Bimos;$om9Sly reZiqits plaz!heit remaindscrawlts slate, ", Bit--2 more." TdJ uno sign. Now draw some *!hi 1eft;q. For a31ref:2to ~[Sher human curi@Axq manifeby hardly perceptibles !boPkAr, apparunconsciou+Qa sor^ noncommittalnmpt to s6 did not betra/h Aawar&itM 2she!inQhesitB$lyb!Le  Apart 6=*l caricatusra housetwo gable ends}a corkscreC,smoke issuingS!thn[AmneyX" "'s !es0Bfast6elfeAworkqshe forgot $D els`f6, she gazedAAment)n ,It's nice--make a ma artist erectH$an%front yard,qresembl(qderricka 4~1ste\ !ovgek&not hypercritical;Kwas " Const! a beautiful man--now me cominggom drew an hour-glassa full moontraw limb1 arhe sprea1finE$a portentous fanwL #t'#soI wish IPddraw."feasy,"q Tom, "1TlearnB"Oh,i#AWhen At noon. D 2 goh1to dinner&PDstayAwillrGood--tAa whas your] EBecky Thatcp5yours? Oh,$& l1theU they lick me by. I'mIAwhen \2YouW)1me Yes." Now<N  tl1rdsW /1"gg1see !Oh~ain't any\ Yes it i5"No'#wX5I do, indeed I do. 4letVYou'll teNo I won't--9Fand Rouble%"ou3G6A? Evs ! aA liv!6&M! e3ell ANYbodysOh, YOU!Lyou trea#o, I WILL see."+ 1sheher small =  Dnd aQscuffLAsuedq pretento resist in earnrut letts_ slip by degrees till thesdA4vealed: "I LOVE YOUj"OhMb-Fing!1hit hsmart rapreddened >b 2ed,~&theless. J[$K junctureboy felt a slow, fateful gripM3CB earp a steady 1 im+zSwise Aborne acros Gposi0own seat, undwNBpeppX/a7f giggles i!tna~-Cstooqhim dur;q few aw_bomentsfinally moved IsU4out5ba word3"al Tom's ear tingled$EBhearWjubilant. A rquieted 3Tom nQefforX Bstud the turmoilRin hitoo greatqurn he h#hi  Bclas1}1 boef it; theOgeography4 Alake3 o mountains, Srivery r contintill chaos wask  Aspelc got "down," by a succ`"ofG1babA dN3he C2 up=ae footyielded upkpewter medalj worn with osten|for months. CHAPTER VII THE er Tom triedl shis min,# " mXs ideas wandered.9,b a sig:a yawn, he gave 0V. It $anoon r4Fb wouldm} air was 3Aly dc#t a breath stirring. IRleepi$ sleepy day drowsing<Re fivUtwenty studying scholars soothe/soul lik= #is_bees. AwayE1fla sunshine, Cardiff Hills soft green sides th[ a shimmBveilaat, ti| the purple`iWa few birds float Q lazya!ir; no other liv*bwas vi$x1but7 4 co^W Cwerer's hear=!be3A, or 3 toA  fE to do to paq drearyH4. HcQ into%poO0his face l"gl%:gratitude3wasa#, ) not know i!enXJ3ivexrcame oua him a"Va pin"!6newx 3's bosom friend sat nexb, suff!ju9;4nowMadeeply{"grm& 2ent.1menj3an  7was'rtwo boy r sworn s|1eek embattled enemies on"!s.^took a pinBJAapel #as q exerci1er.AsporZwwU<rly. SooG 6}Beach neither g g1ull denefit*!ti<!o Qt JoeAQ4ate 1rew "neFthe D/!it C top)Btom. ","Whe, " Ahe iqByoury9nbq him up)qI'll leB!e; "2get d)et on my[,@re to leXalone I can keepQfrom  S v!, go ahead; star!upb escaped!pae equator{6DawhiPtU:5G݁ghis changbase occurred often. Wg"onZ !wa5r^&t7r absorbNHYblook o? #as 3, t9b 1ogeo|QsoulsC to B1ngsVluck  S b JE !hicd&atxDcour9rQs exc Xs anxiouh|!thH mselves,<0Egain:Auld evictorfvery graspn)"to#1 cbe twi%to begin,3pin'Bdeft+Rd him;1andTk W)gl:n(uno longzQemptaswas toocqreachedFand lent a11pin 2ang a. Said he: "KbI onlyd1wan TU2#NoJ a fair;e' ~3QBlame>I'!go l#mu+L?b, I teK|"!" shall--+#liALook !a, whos\ 1ickICcare$m /ha'n't touch %%,Qbet I . He's my/do what I 51him die!" A tremendous sdown oneshouldits duplic r!s3twoW dustbRto flbjackety[ to enjoy had been tooS]sBhushhad stolencschool wCetiptoe"\nVd (Hcontempl (p4~performance |!heQributs'Zt2%broke up a flew to P1 in ear: "PutHabonnetlcyou'reBhome11you)5\rcorner,'.2 'eAslip|rthe lanAcome.!goQoAYcame way." S6"ne+5one group of -gCith EF. InL:*"et e #la.:qthey ha {Uy sat," a5JBthemQ)3ave the pencil 0.Jriin his, gui 4 3ed a surpr Ot&Gn ar2w#fealking. ToAswim]in blissS}%!DoLlove rats?" r! I hatM do, too--LIVE onesI mean dead,qwing rouSr heaAa stq[1for much, anywMA likIchewing-gum<l25o! 8qome now/?8"go1letAchewV3 2youUqgive itQ3 to8AThat`agreeable& hey cheweBturn'Y?K!irSk,!!stRbench "cet#ntment. "W>)an/circus? T #YeQmy pa7!"mew*Atime/ET" "I)f three or fouryQs--lo:. Churchr shucksbD-C (on/; qbe a cl5%nWScI grow )"! ill be nice1y'rBAlove ll spottAL1so.=v1getAhers of money--' dollar a4 cBsBSay,_+bengageSWjt`(2!b ٪"ieN.+ 2youC!to.E so.CknowqQis it2/Like? WhyG You S Qa boyRawon't \ FZ\ Zcyou kiPw all. Anybody%#do.b"Kiss?d=1for2X Ynow, is to--well[yIoAEverqH2yes+'Y8 ". z remember m F wrobbYe--yeW]YC%I  TShall 8YOUHB--bu5No, t now--to-morr8Oh, no, NOW7!--Vrwhisper aso easLQ #o took silenc Acons"and passedBarm Arher waiS]QT talezC7/outh closuher earn he add\$2Now!--d t-P3ShePj" a^2You vBfaceBs^23 seI;I~you mustn'<[--WILL you]?&,!N  .a." He n\DidlyZ(her breath stirr?Bcurl , "I--loveP-.(r sprang#tand ranfs+YCes, with1aft*uy/x Cher 1JQaprone1ped"nehV pleaSWn]ll done--all a. Don' be afraid Eat--+?+ll. Qhe tu{"aD YhandsA+2she us  qs drop;Qface,rglowingy"truggle,,O submitt-!omqred lip 3rNow it'ACdoneEPBt 2yout0mk+@!toXy,2 meand forever. Wi 3'll)u!LLkmarry +2--aX - 3ith)CEly. :. u's PART{)I('U*we^w02me, Rthere<Rchoos Dnd It parties, bE  1wayeO4're DIt'sW'3. IRheard -|%'g>mSAmy Lawrence--b2bigF1tol{ ~DlundUe stopped,1Sused. BTom!,/irst you'v3 to"W chil2cry94Oh,trk I"arshy   1you1Tom3 kndd i  BneckJ j%sg0%im!Qrhe wall1wen\bcrying05  ing word GQas req$: (!pr4as he strodWQbutsideY,2lesquneasy,: Sglanc2oorMQy nowthen, hoping she.RrepenSato fin:4shee-e1 to81 barnd feari.;'roS!ea hard2himke new advancesM ,Nqhe nervRmself{Q and _]"zstill stan797, sobbing.!'sDt smote himD ?2 ,ing exacoQproce-ge said aly: "* ], I--\ A." f4ply 4bs.D1"--/tingly. Y !mea?" MoDTom got ou( chiefest jewel, a brass knobToan andiron2{ $itd h,2thaq,{/3w * y Sc3uckY the flooruTom marH.:C hilR 1far[!rez1 noday. Presently 3buspect rRT1was7in sight. < 2play-yard7SthereU1she,v Cc, Tom!/alisten}trL7had no companions l oneliness. So s t`Ro cryfp1upb herself;qby thisZ L1gata3gai[ashe hatAhide+Qgrief?6cbroken aK of a long, $Q, achhfternoon6! nk#mo Astra/VSto exbsorrow/ q'I TOM dodged hp t through lanes96H@&ou!r51ing3larinto a moody jog. He va,"branch"9"reDH  6prevailing juvenile superstiti!0 c water baffled pursuit. HalfC1! l$disappea<+Bbehi Douglas mansion jbe summ"'Z ,1wasly distinguishablCoff Ccvalleyۖa a deny-od, picks pathless wa>r2ent;4.!onssy spot,spreading oakrnot even a zephyr(*_anoonda(at had 260 Tsongscbirds;:1 lasa trancCwas Vby no sound the occasional far-off hammeof a woodpeckiBm 1 re .1rva|wense of|8*sprofoun=Rboy'su)w!1eep melancholy;o A3s w<happy accorqhis sur1ingA sat< )oAlbowhis kneeO2n i.S, med69 * rhat lifbut a tr=1, at best +3orlRQbeen 2!eda2g--Q very dog#" by some day--maybe wh@8too late. Ah %die TEMPORARILY! Buselastic]o?ath can4e8Aresssqto one {rained shap*46Tom_&drift insensiblyJXZconcern"is7|.T cack, nowmed mysteriously? aaway--A'so3 ?countries beyoBseasQcame S! How 2she{ then! The idea of beQ recu,mto fill himdisgust. For frivolyR jokewStight"anAsy intrude`/1 upbspiritwas exalt3vague august AEthe romantic. Nota soldi<,"yell war-woraillust. No--bette4ld#joIndians,unt buffalo$$gowawarpatr4x2S rang-the trackgreat plaite Far W 0QfuturM+A q, brist2with feathers, hidej$ith pain,bprance. ,(QrowsyN $er|a bloodcurdssar-whoose eyeballaG unappeasu envy. But noOb gaudin than thi/dpirateas it! NOWK2lay~ #"im"glaimaginsplendor. HowMHQould c people shudder1glo(AS go p{Sthe d2seaf"hiu,1, l'qlack-hu 2racZ02e SsFc StormHIisly flag flyA fore! And at the zenith ofQfame,suddenlyDIold village8Cstalcb, broww-beaten, black velvet d ArunkCjack-bootcrimson sash,AbeltJ"horse-pistol9e-rusted cutlass atCAsideM2 sl4("atTwaving plumeIcunfurledthe skull Abone*  Bhear[2sweobecstas>$G #s,3TomJ, P--the Black Avengerpanish Main!"  j,d Acare's determined)2runfrom hom Renter' /\.2theDnext[ Afore rust now+1 to&Wreadybcollecresources %)Aent rotten log nv%'an2digu 5 onFihis Barlow knif1oonrck wood ed hollow"puusand uttwis incan~,i8 dively:bhasn'tDhereovW!st 2re!^rbcraped`"ir Q expo pine sh9:i8and dis(chapely,2 trcH-[5hos'and sides wer/ds'iHra marbl 's astonishmenboundless! He scratc Ss hea a perplexed air7RWell,1bea*y> +Btoss5pettishlyStood cogitatUsuth wasfa Mqhad fai91and0-Brade0AlookR$on as infallibl byou bu OLcertain necessarylsBleft  fortnigh'BCopenCplac"8theP" h ajust uh3yout%a1s2had1los.  t0 H,9 |&Qno ma how widely+}Qk"w,~ bctuallunquestionably *-DtrucF2faiQ shak"-Q its Bs. H"Cmany C Rasuccee3but{aof itsBing :Q occu2himtit several timesC, himself,n;1e h*-scs2warvpuzzledy!an\decided $Qwitchainterf Bharmhought he tsatisfy at point; soe!ar<1he Csand aqfunnel-Qd depo!itJ9=$ F2 toyG and called-- "Doodle-bug, d $'#mev0Wgknow! 5 5*! sn1egaBwork"3bug e a secon2darted um)fright. "He dtell! So it WAS aAdonef !I ;%!knv5'"HeDknew2 iQof tr to contens#chahe gav^"Ś$ag%iT`he might asAhave>  w1 ,Oatheref@Btwicl.last repe2wasRssful$0Qs layU1foo Qeach a. Jus^%ebYntoy tin trumpet 3faintly dow%green aisle~QorestWoff his jacke|trousers,$ a suspe9belt, rakN Tbrush 4thelSlog, 8 n rude bow1arr| lath sword4in A7$Bseizse thingSbound, barelegg 1 fls "AhirtL7halfelm, blew an answ@9atiptoelook warily outk1way2thasaid cautp--to an }!ryH!an Hold, my merry men! K;BI bl06Nowf>q, as aiAcladbelaborarmed as Tom. Tom]Hold! Who s7ASher BFore_qhout my+q?" "GuGuisborneVAan's).^1art-L--" "Dar  hold such language=Tom, prompting--fo8y talked "se book," qmemory.l ~/ dsI*! I am Robin Hoodkthy caitiff carcas:Ahall%." "ThenRindee% famous outlaw? Rvgladly will I dispute#2the=Fpass3wood. Have aeyGWtheirqs, dump4eir.Brapsf e ground, struck a fencttitude,!to61kBv) reful combat, "two up andfdown."p!E Tom aNow, i a've goQ hang=Ait lM!61y "a," panhK !er k. By and bhouted: "Fall!K8! W`+ sha'n't"Nrself? Y(AAwors!it/4Whyh M@!'tv;A#ay it is inVbook says, ' Qone boa[stroke he slew poor $.'!toNr ,ame hit oQ." T#>PFuthoriti 1Joebed, received!whE@nd fell.&"4U Joe,^up, "you8o(N2 ki1*Ffair{f!docE_/ell, it's blameC's aQBsay, you can be Friar Tuck or MucAmillD[ss%R lam M h a quarter-staff; or I'll bSheriff of NottinghamJe w9h?Bill 0AThis a@#soadventures were cr4FATheni!beB6 L!wa- !by treacherous nun to ble s strength away 1ughneglected w- 4And/}! r 1entAtribAweepOC4s, R|Qhim sbforth,V m"ow(his feeble hands", e" Q fallTere buryuu 1eenqtree." She shT$ b&would have diedQhe li>+Aa ne0and sprang upMAaily a corpse.->dA, hi!ira!Gutre Ooff grieao <$noz4u3mor Bwond what modern civiliz= claim to h Qensatiloss. They;F-rather be year in than Presiden the United States 0 CHAPTER IX AT half-past nine!ToB Sid\1senm"be[usualir prayer=(onqK Aawak waited, in rest"imc<{it seem0q be nearly dayldhAlock;Bke taqdespair&and fidge#asrves demQ, buttbas afr+aSid. S12lay,%!st"upJark. EverLDsdismall<2C by,'YSness,a, scarceo[fnoisesemphasizeSC ticking aHh Ato b!itS-A1. O+"&ame! cT(!cstairs creakently. Ev1ly 6 !ts abroad. A m#Rd, mu(snore issued Aunt Polly's chamberA now4tiresome chirqf a cri!thA human ingenuity locate,JQ. NexV ghastly?SdeathwatcDwall bed's head made E--it#abody'sMPnumberedUBhowl{far-off dog roseg 3wasAa fa<K a$r O./an agony. At ih| 1ied+had ceas@d eternity begun;00 to doze$Aspit2e)chimed elevenl0A;#%8me, mingl Ahis !formed dreams, a most ' caterwaulwA raix&of a neighbo)awindow81urbSqm. A cra"Scat! devil!" aQ cras<an empty bo;z}ais aunt'sCSshed T#"dea single minute laterlGand jr$al,Sroof 3"ell" on all fours. He "meow'd" withn once orpn jumped  g3]*QL. Huckleberry Finn washis dead cat #ysAW1off\A,#edO#a gloom%thh," (all grass4graveyard. It &old-fashioned#ern kind13on a hill,5Da miK'Eaillage<1hadazy board fencet $itcAlean 1warY1outek$th!buZod upright nos1. G n!ed!ew rank M ? cemetery. A2old*spsunken in,Mnot a tombston!; {-worm-eaten qs stagg#Rover $ aves, leanaor suppor 1finnone. "Sacred) of" So-and-Soabeen pdm#="ittLR have7Sread,5am, now*1n i3 r7lFA wind mo $reSTom ft {\, complai(#atw(x\<R6nly ir breath6[ -Solemn(Q silew&ppX $irvyo! t arp new hea1yk1eek6ansconcQemsel2ithq protec0ree great elms$grew in a bunch?-WDfeet " "y U  42for H "a 1imeS hoot abant ow.]"btroubl !ne om's refld1ive%.aforce Dtalk) Qsaid $: "Hucky, do&ɘ6 ead peopleGZ3 usDqhere?" Zed: "I wisht I@eEQ's aw3Zs, AIN'T36Q"I beAis."ea considerable pau*"il\Scanva "#iss inward! n_ %ASay,3y-- reckon Hoss WilliamssI1#O'Q he does. Least8rsperrit"7, +a+2 I' #u MisterxI`  Aany l DQs him#A "n'Foo partic'lar1(tXalk 'boutase-yer  Ra damnd convers3die!. Qw Ahis comrade's armE1sai:Sh!" "What is it~$?"i nc%Atogeq!be#2ts.K C'tis again! z1you+{0Q! Now"OALordTHcoming! TQ, surmat'll we do/I dono. Thiny'll see us!'OhbA can!in^ Qdark,M as cats. ihadn't comecOh, doay!. Aliev<1bus. We(a doingl If we keep perfectlyR, may1y waB us N$I'll try toRbut, Y1I'mbBof a shiverListen!"be1!ir s e tof voices float% 4far`(A "Look! Se;Fre!"M  w-fire. Cis it." Somv/1figaapproaK'!Rloom,M tin lanternaTfrecka  innumerable spanglek  K#a d!t' sya. ThrexA'em!yQwe'reqrs! CanBprayNB:BThey! gto hurt us. 'Now I5#meo sleep, I--'"8 AHuckHUMANS! On! iWyway.'s old Muff Potter's }aNo--'tqu so, is AjDYyou stir nor budgBCharpfE to q. DrunkBausual,Cly--qold ripAAll O !, 4stiI5tstuck. Can'"1Herq#Dy coN.[8hot. Col2B Hot. Red hot!'re p'inted?r ,q"!o'qs; it's Injun Jo(2ThaFD--that mur!' breed! I'd druthe Zdevils a der'>!. ky be up t4The.| Dnow,! t 1men $re!e 1     ' hiding- Q. "H?9Dt is Qhird ;\*:wner of it hel TTreveaV1fac young Docts_`1carryingYcbarrowTA rop a coupldshovels onCcast#lo=!c2opeUF7" d1putd|_R56karH2ack1st fX2elm  Q closIhave tou1himurry, men!" !idTa low"#on91com at any moaRJy growled a responsgan digg'Fo(*2 no# b<"gr s)Qspadetbchargiir freighw Amouldl7 was very monotonous. FinaX Q upongScoffia dull wood*<2entO4'Ror twyRhoist'dg>Sy pritd!$irB, goB!dyF!Qit ru - `Tdriftg?Rcloud(0allid faN4he P!as3reaaorpse "it, coverea blanke>buCope.l(out a large spring-knifkcn;#da3z Tthen " Nm$cu Bng's, Sawboned you'll*"ou$ Afive\$ s?y alk!" sai.] BdoesSmean?3te. "You require3r p?Sdvanc(I've pai#'4B don(B tha ,; r Q, who Dnow @*q. "FiveBs agqdrove my q your fX's kitchen, when Ito ask f@(c to eaK3youWa warn'!!re2any goodWswore I'd get,AzQyou iuaa hundcgears, RAme j1 for a vagrant. Dta thinkiqforget?I^Sbloodq Ain m1 no.2nowvGOT yougot to SETTLE"r!" He EQreate<,e !isy Bace,n!2is  Tq8E1retacuffian dropped his !exDCHered #hi^(&rd~b next ! h-t grapplF "wo)Rstrug'and main, trampl% gFtear@3'rheels. !JoaAfeeta81 ey2%am!pa1nQ, snaQ3 up'/V"cr"Q, catYEAtoopCand  w'Tants,Q an oCunitwat onceQ,d free,62Aeavy5 of'n fҲt(Rearth"it8? c YiL A sawXCchanSj2theb1hilthe young man's breas+Qreele4BGqpartly , floodi  l* `ablotteXAreadcpectacf1 Bened Aspee!awHdark%> remergedO , '8two formsPRtempl }aamurmurulately, gw*gasp or two%2wasKm- rTHAT sc; :Q--damF0Rrobbe8body. After h9the fatal2in r's open R hand M dismantled } --four--fivss passeJ7.mB za1. H1nd dw#; C Q, gla!atand let it falla>g)sat up, push2bodA himLJ gaz]aK&confusedlymet Joe's1rd,ie, Joe?u .a:ay busi%#2Joeout moving.d]d+[%I!!it{] 3! TRT 3alkdewash."YAtremDI ew white.1ghtagot so"!I'BM!r!o-@it's in m* yet--worse'nw= rted here.vmuddle; c!$re=#an$gQ, harqTell me}--HONEST`Aold ar--didB it?zJ(qto--'poAsoulhonor, I nevt1ant5Joezc#Oh$+Qhim s, ad prom! -1youC?ay1inga he fe6G ) Bflat !up:3comX1reeX[ding li!.Ajammz%.5 'asE you7S clip ere you've lai'!as a wedge til nowbd{Uwawas a- I may die1if B1all on accou(bwhiskevV!axcitem"I .uC$ weepon Clife: fUO_;uAy'llsay that.( V8ray you Atelle--that's a  4. I_2lik</U !upE { etoo. D remember? You WON'Tc]a, WILL  A/ApoorS'Eture o SkneesUrstolid G#alaspedQappeaa,.)4'veA #fanbsquarej 8me,N# I<#go$n :MsXs a man can sayIy0an angel.bQ*1you^!he0est day I live.> ?Ccry.d 40$#isc 1anyYsQblubb. You be off yonder wa!go+T. Mov 3and5!leny tracksX"onM(quickly increaseQa run  &)He8 If he's as much stunne Q lickfL2rum2 halook of bel#he1eBtillzgone so far he'll be +}-e\!it:Ruch a>% b= --chicken-hear1TwoO tqs laterD0Rd manv ArpseA lid 2the ?+urno insp8!b moon' ness was completet 9too-X THE two Aflewqnd on, towarkaspeechwith horror*y Aback;%?aulders|!to, apprehens95'$yA$m &be followed. EVastump #up'Air p9&.'and an enemyw[+athem c+:bbreath"as"by"Aoutlacottag41yy.=21ark1*aroused +H-dogRagive wq:qir feet Af weqonly ge=ld tannery!wegk down!" whisp&1Tom|<Qtween5dths. "4AstanRmuch ]&ucC)'s hard pantAwere-1repboys fixed sSeyes z 1goaDBhope"4benir work to win it. ained steadily]1st,sIy burst open doo cgratef BexhaIiBshel, shadows beyond. Beir pulses s4Tomac2 2'lli!BIf D dies, I61 hav>!it?D m !?" y, I KNOW 1Tom#om&2t a$JEn he #1Whosell? WePBat aj  ing about? S'pos%!th1appEand q DIDN'T!? he'd kill usLvoO:  sure as *g <@  ~o myself, HuW8q"If anyAtell)t 3, i)Cfool. He's generTdrunky%U !--2 E s C "itrN!ca#teJ:#sQreaso 8QBecau>&"'d1geSwhack"F. D'3 he*5seeT?$ \7!" "By hoke:$'s-!" "And besides, look-a-here--maybeqfor HIM<No, 'taint likely ^GQliquo5ghim; I#th  |h Rhas. 9pap's full Atake/belt him&3hea< a church)2youn't phase 1say his own selfZ)i3sam !C, of(Fqf a manjJGoberZ W&)dono." .*$ve*p)2you"an!1mumw%to.*  #atadevil 5Rn't myQy morWdrownding us&a Acats!weto squea(iF+"ha!. X>u, less swear to one/Z"weveo do--0qkeep mu"greed. I Xkb. WoulGAholds_Un we--" "Oh no @! dA thi . for little rubbishy commokngs--speciwith gals, cuz THEY!c anywa ablab i: huff--but!or%^e writing Ra big BClood2's m0 applauduis ideao1BdeepAdark  t;1our3 circumstances1surRings, ijbe pick'ya cleaniOlvAmoon', took ar fragmes"red keel"7 f 1pocDkK1 onV#wo0fully scra!'these lines, emphasizing each slow down-stroke by clam~7his tongue AeethRQ lettpApres QCe upW&s. [See next page.] "Huck Finn and Tom SawyersCs!ndI+Awish may Dropd!ea6 QTheirT"if33eve1ellX!Ro  p5filKadmiration of~acility inA, an sublimityQlangu3HC'4pinqs lapelH6was(Qprick,QfleshWN Hold on!!dob. A pi1assA8have verdigre#n Qp'iso$/ swaller somic --you,a." SoSunwou8bthread"%his needl!Aboy  1e b.QthumbcsqueezBa drfA. In,{Dmany2!s,amanage2sig!Qiniti9u~8Hthe ~ finger fo/e3ashowed  1ph"! HQan F, 1ath%2bur9!e 1le q5 to:,dismal ceremoniaincantfqfettersJ$ b#ir8consider(Qbe loF"keArwn away4!ig[AreptURlthil(!ugX$Dreak[Wother#A ruiEAuild2nowLQQ*iVTom,"6, "#uYAEVERf ing --ALWAYS?" "O r it doe]cdon't y difference WHATv xY got J BWe'd"--Q6YOUe Ywts rcontinuHtime a dog set up a long, lugubrious<outside--within tenc*md boys q",qan agon+!.ich of us^4 he;%!ga4 dono--peep througw crack. Quick 1YOU#-- 1 DO#Hu2aPlease1 72h, lordy0thankful0I2his)4 Bull Harb`" * [* If Mr. y+d a slave named Bullk spoken of him as "Dl!,"aa son 2dog!atZn"]   1--I" ( most scadI'd a betmM a STRAY dog he dog howledv~W'3Ats s:"nc&.2my!%!no'I IA "DOM! Q, quabAwith? !Z%eytrDHis z"waly audible"Ohr, IT S A1DOG1, qK Who7Amust3 us both--Uright"5.+vgoners.EU1misM   V< I'LL go to. I been so wM m2Dad_1Thites of p1$oo!do BveryD a's told Ndpaxgood, like SidNr tried !noaever I 2off time, I lay I'lWALLER if"s!7Tom0"nx4( . "YOU bad!"7Q"Cons!it ^ ld pie, 'longside o' BI amTLORDY 9 only had half your chanceom chokeds6andh: "LookyA! He?9BACK to us(ucky looked!joh "hil9he has, by jingoes! DFRbefor.bhe didpIS#l,e"!this bully, y. NOW whowing stopped. Tom !up ears. "Sh! k BthatI#0!ed"Qounds--like hogs grunting. No--it'!!snC mqThat ISkWAbout"it8I bleeve3Uat 't| #. Bso, a. Pap rRto sl{Aere, Stimesv t$"gs laws bless<1he Rlifts1s'HE snores. Buhever comOto5own{hXEdventure rfZsouls`/Qdas't`o if I leadR 1to,2, s~ts quailep_7the temp up strong:7 3oys#ryJAnder{2ing'7 @#to@Sheels Se !y 4btiptoe  , 4oneJ CthervJ~4hadlqwithin 'qsteps o|!er'pBstic  it brokera sharp snap.man moan]erithedp his face came inK . It was"ha+rd still\|C too)Aved, )Dfear|(? A nowlypid out, n weather-boar& $-%at2 di# sQa paraword. J qrose on5'B air!w1tur n+!th-2ang  Ua fewQ Xt.Awas $cFACING7nose poi* heavenward! geeminy,VHIM!".A botds a!--say a stray dog3ai Johnny Miller's house,A mid2,!#as.eks ago;6 ppoorwill=1 in4litbanisterZ2ung|aame ev?0U L#B}!yej W"ndyE#se 2. D&cGracieT falls2Afirebcrself terr next Saturd;#Ye@sBDEADwhat's moche's gbetter, too:you waitbsee. Ss# ,Cure  z,)a niggers sN:2all *h<7c,dWBSihis bedroom Kh"al Apent3$ss]$excessive cautionCfelliP congratuP.2himMRCknew escapaden1was _Raware3the gently-Qas awake$Y bv5. eawoke,=1andCrak$q ! ig# lAsens&the atmosp+HA%##Wh% ae not called--persecuted till As upRusualK4  KLtW.%Nairs, feelowadrowsyr family R at tԌ!bu finishedQkfastAI"no of rebuk)Nwere averted eyes;:!anA'ofCHthat struck a chillhe culprit' s He sat "nd &reem gay2it -Nwork; it E$no smile, no; he lapsed "leyheart sin'$tdepths.HNN"idG bbened ir3hop>g2Gflogged;Tianot so aunt wept overxand ask*m-E !gobreak her[!o;rfinally3him o{"ru&3andRher gray hair '1 so=~ '?2 usZ hT: try any more.Z!waCan a thous"ppgaA was sorer nQ:"anL1odycried, he pleaded for forgiveTpromised to reforh 2andj {.[jdismissal, !!he_1wonan imperfec51cestablut a feeblfidence. He lefk  Ro misC vAl ren4ful(2Sids 2 laB prompt retre back gat unnecessar_!mo^o school O%3sad41ook+}hqJoe HarHDwondered i-!ha!ic%nir mutuala<Abody2Dtalk r intentlthe grisly "them. "Poor fellow!" 9T+Cught a)Son toG@=grs!" "T2'll) iy catch him!" This ift of remark"milB, "IzQa jud';=frNow Tom shivxAfromA to heel; >D stooG3 of+3JoeZ$isB12beg}s6Bbe, andas shoute!'s  Aim! 7com!!"U!o? Who?"ctwentyT8. }1QHallo0s1!--=3out!tuM{&Am gey!" PeoplCrees over\'Aheadrrn't tryYB--he4doubtful and perplexed. "Infernal impu "!"aAa by~er; "wanosand take a quiet$aFwork12--dQexpec 263any=part, now u- b, oste%Ausly]3ingC" btAarm.;pa's facw haggar &the fear tha .W bstood 1urdman, he shook ara palsy4bface iNBhand@ QburstJa tears P!do#friends,&sobbed; "'pon my pThonor> z0iho's accTyou?"F" aYicarry home.xCliftme1and3ed ` thetic hopelessnes5sw!:"*Q, youaaised m/"'dD."Is ?V i4himM#. msiy anot ca=1easmhe groundn-*BSome!1tol"'tEM8Ond get--"-1hud Qn wavr4f2les` ra vanquSgestus?"Tell 'em, Joewv'em--itl0n,1tooMbEstar`#he  2-he8 liar reel offrene sta?_# FaFlear skydeliver God's Eningmp]f1seeAroke3tdelayedr JJ3illBaliv'!iraimpulsx  BoathE!avubetrayed prisonerafe fad d 5wayBinlySmiscreant1solrto Sata.#itIbe fatalReddle]~ Rroper-1sucQower - a"$hyyou leave?"DwoC|d Qfor?"ab BsaidRn't help it--$,"amoanedx:2 ru+ ?1see} 3but he fell to5. d repea)BjustZSlmly,minutes after inquest,=Foath 1seeCwerewithheld1q 1rme20qbbeliefH1Joej h Aevilw become,Bm most balefully interes1hadDA , yB not+ M  bey inwu(bresolv w= nights,d#1L should offer,Ih%ofPa glimpshis dread  3hel2rai !of[NRput ia wagone rremovalQwhisp3 Q 2ingv  l0!blqlittle!; Dboys&tXappy Tturn n$wBtheyQdisap "ed1morEn onarked: !three feet of . 7it O AfearL1ecrx+ad gnawonscienc /iqs sleepvAas ms a weekG1at Afast_~3Tom/' !alCyourx1so t3youp8!e B hal9"ti^rTom blaband dr"c H's a bad sign, Aunt Polly,*dly. "WzRgot oB min_d?" "NQ % '[Aof."k23oy'shook soaQhe spcoffee. "An 2 doTustuff,"Ur. "Last said, 'It's 2" t it is!' Y7Aoverover. And y!, 'Don't tor6me so--I'll-"!'S5CWHATQis it$V?" E+  1Tom( re is no\2ing*+ Qhappe\1BluckF2cern passedm7S's fas3 torwithout kno.!it" Aho! W3ful1. Im!ity4 my24Q3its7  S%Lqfound a-Sightypr itself . Becky Thatcherd"st #tolMT had EQhis pia few day<'"whistle her dow+!,"1fai)&HeTfind `"ha her father's Lqand feeI%< was ill.rif she p2 diP)9a3`qno longbdok an `@tar, norq piracy charm of lifCgoneMadreari2lef}hoop away,#Bat; $!wa 3joym3 His aunt "ed& 'rll mannqremedieS2him06wasRose prwho are infatuqwith pamedicinea-fanglWthods of produc2 or mend:an inveterate experimA3 in-s. When sRfresh'cis lin Sout s!in'k{2it;Kn herselfp?iling, bu/!el"at Whandy subscribert-!ll#!"H" periodicalNphrenological frauds olemn ignorance %B inf#1was^th)strils. A "rot" they cont about ventilR !ow$odRet upj/Ro eat$Cdrinl42howQexercI 2 22frag?!onTDelf *.1sor#clto wear,&all gospeӲs=aver obser!ha! h-journalscurrent month customarily upseXhad recommenO <Rbefor21s simple aonest e 1was+5 soan easy vict!gaQ$d <]quackydthus arm:'bdeath, .9 pale horse, metaphorici 1spe> "hell foll"Qsuspe `aot an &1 of[$$1balQGilea6 disguise&he) neighbors.n!wa6 creatmee3new/,low cond|)f$e!haRaat dayN*,bhim upehi}!wn mBqa delug Bcoldn she scrubb3a towel liki7Aso b?t him tona*Bhim Aa wemqblankets 1Aweatas soulw1 "the yellow stainsiV a his pores"--as7!Ye rwithstabAhis,boy grew morh  melancholyp!ej|added hot baths, sitz hFClung,A boyX#"inbdismalShearsRassisslim oatmeal dizbr-plastersb calcuhis capacitn)Hould a jug'sfSevery day}3cure-all-#om come indifferQ32ionn!!isfW_0cphase r1the1Tlady'L,constern;ice must b9!upny cost. Now?of Pain-killthe first a She otd a lot)Ua tasteD 3as with gratitud'Rimply7in a liqui0 J  {2and&P3els2!piZO iA gav a teaspoon# 6Xeepest anxietB,qe resul &r mstantly at rest,Zat peace again; for""?broken up` #bo+1hav!#wn a wilder,i , built arunder him.3feli.to wake up;-Klife might be romantic enough, iQblighy, , c1getyD tooiAsent "oo  %ng it. So heat over%!ouC!nsd ,X1finchit poO fo+n# 4Qfor in4ofthe became a nuisanch Rby teeZT help'2Aquit)q >Ieqen Sid,had no misgivto alloy!dePEsinc&3TomMF bottle clandp#el (" !rebdiminish" !itW Cccura t5was t!ltIta crack !siG-room floorit. One day athe ac 3dos  Sy"#'su$ c along, pur#eA(%heHR avar.lqbegginga({said: "Don't askit unlessAwant&Peter." But s1ifi# W2. "You better make suh$?ure. "Now you'v( give it to you, because E $ #m"mebiEQyou d,mustn't bl8Ebut your W agreeableEH mouth open)Voured.Sprang a couple of y+Aair,LSthen %ed a war-whoopsL!f & the room, b st furniture,/ flower-pom*  }Z havoc. NextiRose o}"hi6,#pr ja frenzy of enjoyment,<2his,F !jL proclaimingunappeasrhappines % Atear ?ahouse a spreaQchaos>destruct! Gath.U!edDime r&!im/w$double summersets, 2naly hurrah,AsailG1ughVt, carryK1res^Gthe ZGm. T  Bpetr astonish2 peer glasses;Alay ;qor expiaKRlaugh?#"on earth ails@Tcat?"N'u, aunt,"O. "Why,+i!diaact sogcDeed IWknow,e; catsq6kthey're having c A" "$ado, dof'?"Btonemade TombD1es'at is, I belie<(2y dAaYou DO1-  Qdown,n 3ingwAinte>emphasized by{ R. Too?@!viAer "f.R handthe telltale 1visC ed-valanceUi ald it tom winc 9yesBAraism Qe usuandle--5"ar.csoundlj %DimblS, sir (1tre"at)dumb beast so #pi Thim--Zd!nyj." "H!--you numskuhQat goAdH" iqHeaps. BRbif he'?Qone sqa burntF4out2! S2 ro 0QowelsX!of3'w"n,PBthanra human!" Z!fe: sudden pang6o1Thi1 pu yhl |6 ruelty to a cat MIGHT beboy, too  soften; 2sor=r0',I Rshe p<'3 onDheadd gently)'qmeaning -!stQ. And , it DID d !-&om)" i Bfacejust a percepttwinkle peepinggravity. "/!haf Q%ton-B? Ye*BforcX," adR: he 1lea!if!cr`wqno choi("By` `h2farFMeadow Lan,t !ll to "take up" t, Qd fai#up"eaG;, !Fink %,Bhear old familia!nd rmore--i Bhard0v$ou<ld worldc]submit--b A for1theQ sobs.a thick@O1 JW  2poi7m_'s sworn T , Joe Harper --hard-eyCwithD5tlyand dismal purp=Srt. P 9b were "two(but a singl&" Tom, wi 9#ye1fleeve,qblubberBsome about a 6p to escape from hard usag1lacsympathy at= by roamBbroaOFto return"3by  Athatm=1not"m.it transpir was a reques !chK2hadKRbeen  nIkN3#a)1hun1 up_. His mo ad whippfor drin ScreamhX  d knew ;*1plaUtCwishto go; if.<!waXpl but succumb2opebe happy0a regretDing ;"erW1boyxA $un) ddie. As=wEwalk gClong7 +compact to u 8 byePQthersqseparate till death rgm2 ikyj3lay.:tplans. "Qfor b2;a hermitC1livb qn crustJa remote cav1 dy O a#rand wannRgriefQ% m31to 1he U S&a4~_conspicuous advantages1 a "so ansente!pi Three miles below St.easburg,|!wthe Mississippi Riv "a OaWQ wide"a !qnarrow,%ed islanS \6$2bare  o"d well as a rendezvous%1 in2!edrlay farQtowarL her shore, abrvba densk{Twholly un o1estJackson's IC chosen. Whon!*aubject%Qiracis a matted2 ]Ay hu(up}R Finn8 JmRqly, for rcareersho hhe was$jy,75tlykmtu#!ne;I$ot]river-bank two,vn1favorite hour--4\csmall log rafIthey meanLLd. EachJr,2ookl6)such provisiA4d steal amost dnd myste!way--as bec +butlaws_:Rbefordaftern2donCy."agsweet glory of b~h12ttythe towne"hear ." All whohis vague hint!!cas"be mumTqit." AD Tom@a boiled ha9c a fewKs 1%ingrowth onQbluffMthe meeting-8VstarlBveryAMT lay Qoceanl3Tom6ed Qbut n3 m Q>the quietenN!ve%w, distinc$ 6stlAansw 1bd twic; these sig, K&e ;bThen af5ed voice!We!reTom SawyK^he Black Avenger Spanish Main. Name your namesuck FinnERed-Handed VTerro]2easw BBfurnq rtitles,56hisIliteraturA'TisEC. Gicountersignwo hoarse whispers !e Hawful word simultaneJ"torrooding<: "BLOOD!" 2Tom6 sQUC4Cdown@qit, teaboth skin1F/!es~ome extenXB'BfforF {., comfortable path (Bit l8the!of pCicul8!da/rso valu[&  b d4bac3had Tworn 2outy'"it $.gstolen a sg* ntity of half-c#leaf tobaccol- corn-cob 3pip/.3An3e s smoked or "chewed"A saik !do2tar"z)J ! w1hought; m]ahardly'@Z"reaat dayqy saw aWa smoulJgG1a hWd$3aboy qwent stc'@ 5andjErhemselvsa chunk Rn impR'adventurLbit, sa r"Hist!"[A nowT2theV suddenly halt!fion lip; movM on imaginary dagger-hilt4!gi1orders inX"ifj/Dfoe"cc, to "%W)'K dilt," " "dead men tell no taleWhey knew2 en< raftsmen 3allQ lC in stores or haae2{]D exc^ aconduc` /1 un"AicalAOPved off, ,iEmx CHuckJ1oar!Jo=D qorward.>stood amidships,T-browwith folded arm/7hisTstern_: "LuffDbI"wind!" "Aye-aye, siraSteadyNAady-f it is/!Le!t go off 1P 0Aboys 2dilcly droGd mid-stream vno doubtET"gonly for "style,O! t!to E any&particular&a?"l'?1 '?" "Courses, tops'lflying-jib?"Se  r'yals up! La[Saloft,$! a dozen of ye --foretopmaststuns'l! Lively, now1hak\/maintogala@RSheet braces! NOW my heartiesWHellum-a-leeKTrt! SX2wJ4comes! Port, 1NOW, men! With a will!  T\ drew beyoc7mid#&   ed her head7?then lay oi)Hnot high, s  B notathan aEor t=C82. Ha Awas j!duthe next;-quarter ran hour2t1wasGing BdistXwn. Taglimmenlights showed rit lay,1 "sl#,j vast sweep ofAa-gemmed water,the tremendous ev:4!ha happening. 7 7" his last"-Q Ascen!hirmer joy06ter8wishing "she"2rsee himuQabroathe wild sea,~ng periladeath Qdauntj%, his doom| a grim so/rlips. I,!bu mall strain'0R,!to&vet Island 6aeyeshoN'Cthe ["edZ!a vnqsatisfi\a' p last, to q3so I y came near let#e \Q drif)m\ArangQthe i< oediscov "j !inF%qmade sh\o avert it. About'clock ip1morU'Agrout+1bar8 B thewaded backzforth until Ahad 2"d ffreight. ParRlittl|'ngings consist an old sail"isgaspreadIr a nook ce bush$1a tbo shel6eir"s u TsleepVqopen aiDgoodq., .!y6/sk J log twentyirty stepk  sombre depth 4estDen cme bacon1fryb!anI1suprgAand fY"upcorn "pone" stockw4had;seemed glorious sporuAfeas%at wild, freee virginunexplor%5 un CR, far61 2aunm Ba returcivilizations a climbO&!ir3 up6Bfacethrew its ruddy glare the pillared tree-trunk$irbtemple?X aDfoli>afestoovines. W'!he crisp slice of ""on,qallowan* pone devou Bstre'3outt grass,Q;contentmenyBhave3" a coolecZ Qthey 9dena romantic feaZ 2 roh camp-fi2AIN'T it gay?" !JoIt's NUTS!Tom. "WhathHA Aay ikasee us Say? WellB y'd just die to b&be--hey y I reckon so, 2; "͉s, I'm suited. M/u't want"better'n$Aever@#Cgen'ally--and > Rcan'tXband pikAa fe<Z qullyragDso."HAthe dfor meXY6!toCup, y(!ch{"sh 'at blame foolish5uYou see 3do ANYTHING, Joe, ) aa[hermit HE haRbe pr0dxm# t0naany fuyyGUll by&tt!ayPAOh y What's \ "but I hadn't thought muchFqit, youT. I'd-deal rather b mq I've tN(!itC3, "'"go}#onsQ!adQlike ^^Ato is`Ce's M'respectedr2 a Q's goWhhardest 6Ican finput sackYa 3hea)s<=$1raiAd--"5at does he put V for?" inquireZ0Fdono s've GOTV.6rmi5!do2:1do 3/5wasDern'd if Iww'v?an't do%`#WhY:'d HAVE toP'N0!itY6I3n'tv"it2run.S" "R "! you WOULDnld slouc<0be a disgrace U no respon*ecemploy)chad fiqgouging Qa cobQ now A"tt:e', loaded it) was pressing Qal toRchargAblow! cloud of fragrant smokj&iMfull bloomp-1uxu   ) envied himW majestic vicM secretly &vqacquire?hortly. 0AHuck:Q1pirT?E+,"Oh^#n1a batime--(b 2hem3get "nebury it in ?6#ir $ w!re's ghost Fings]i kill everybod --make 'em walk a plankSA y!wo "q Joe; "YAkill5RsNo," asT## 2g--they're too noble}Tbeautiful, too.Awear[bulliest }es! Oh no! All goldsilver and di'mondswith enthusiasm#o? !hy#B." o"caDbis own orlornly I ain't dressed. h"a &ful pathoH=;Z#go3!bu1$sex@Ftoys tolbe fine#escome fast,a h0Sbegun <W^2him!^2his'4rags}Qbegin,l(Lqy for wy  a proper wardrobe. Gradu5talk diedk ;vwsiness6'[z t eyelidm fBwaifF pip3ub9U (Drhe slep qcience-aR wearL ta} 3 :J%in . 1saiYayers inwardlya, sinc Dith authority them kneeXQrecitC1ud;h"ru2d a0!no$s(1m a,,were afrro proceU lengths asS, les:might call2 a dspecial thAbolt3 c6cn at o Qy rea1ando7'reimminent verge of O.an intruder( ,: not "down." F ,4e>41egafe$fWhad been doing wroD -#eytb. 3meaAthen!rezr^CcameY to argue it away by remindingzhad purloined1tme@nd applesfAs ofKB C!thin plausibilities;E!m,che end? R!ar%the stubborn&"ta-was only "hooking,"F6,O"am@valuableCplain simpleSing--Oa command againaMi"Sov  5hat;a4 "bub", )U2not~Q be sd.!thl}Ume of.3$ e؍uP Lc 39]dstent # Hfell CHAPTER XIV WHENCawok!, he wond% he was. He sat5Q rubb Rs eye'ny"omBd#ool gray dawT#ya%-8of reposKdeep pervading calmGBsilewoods. Not a leaf r!!; ! s!ob|great Nature's medit!Bedewdrops W 2upowCleavQgrassBQ whitY!xcPathe fi,Dblue3werK|some hand$r it laydst to (/Bdit by a narrow channel hardlybhundred yards widetook a swim | hour, so i the midd#thEnoon2Yy got6ptoo hungrRtop tdthey fared sumptu"ha-%themselves $balk. B_S soontto drag!en6} 2itybrooded pG! s of loneliFsFtellUaspirit1oysy!toking. A sorQundef,e creptWmVdim shape'6#--budding homesick'Even Finq Red-Ha.was drea doorsteps\empty hogsheads~all ashame",1weayC none was brave to speak &a. For A Aboysbeen dullyM!ouna peculiar A ,2"sometimes i>2!ic"ofZ##ckAk"ke6>!no' #(isAA1 befpronouY!fo a recogn72 st a glanc4 \aassume1ist23 atfR Thera ,R, pro_band unK1;Yqa deep,ren boomK floating downDn.#is it!" exclaimed Joe,S. "I [!2Tomi whisper. "'T@!8thu+@Dan awed tone, "becuz4'bHark!")qTom. "L7q--don't\#."2wai% 4hatSan agV] ame muffled boom trouble$| hush. "Le(5seevBspraVAfeet%"hu_ MjS1ownp1y pCy u(1ankM!pe2out+2ated 9!steam ferryboakTabout1bel' v,3Aing @, urrent. Her T deckMScrowd b*<!re^# amany skiffs ,T&oru9 neighborhooBcoul{determine what em&!jeSwhitedburst z E's sKas it expSand rNa lazy cloud, tAsames Cb ofz1orn steners again{ 9now Tom; "somebody's drownded!`HGHuck&*last summer,\Bill Turner gotVvy shoot a cannon ov$at makes him comRdtop. Ytake loavBbreaRAput &q in 'em2set Tyr,anybody!!, L'1ll =9i #!op'I've heardDthatUJoe. qread dolR!Oh)](Ld, so muchW&it's mostly v 72SAYib it ou%. "y >6say<iqHuck. "p r@O1XWfunny. "But mayb!sa)E . Of COURSEb do. A1$<Tboys agre=AQreaso(1TomF,@% a!uat lump3Buninfeescaped, unawaR.Bby Joe timidly H1&ra roundB"feeler"3o hI rothers  # aa ;D--no[_but-- Tom!er derision!, uncommit s yet, join"Towaverer quickly "ex)#ed 1wasTT g f<ascrape4 as#tachicken-hearted a cling-o his garme"!s z&uld. MutinybeffectV/1laid$qrest fo{s moment."heMQened,&#no&H to snoreTQ foll13nexc#laG)lbow motioq,>V %@1twosntly. AT he got up cautiously,7CkneeZ#BsearQ<the flickerflections flung%!he"*!piJ !upDed several| semi-cylinder:3hinAbark%t sycamo)1finchose two whichto suit himin #3lt #fi&ly wroteV@shis "red keel";4qhe rollBB!pu"his jacket pocketFtM $he+Joe's hab remov$lD  owner. A CalsoQto the hatschoolboy treas most inestimable value--5m a #ch India-rubber b ree fishhook@$oEQthat !of marbles n as a "sure 'Lcrystal."tiptoed his way #!s Y "he  h drhearingstraightwayc=a keen ru  "irr \-V A FEWsirX&!waM ) BhoalNbar, wading qIllinoi].re. Befoc depth rea,%Chis  half-waF  a:" p="no%},#aso he k]1wimKremainingOSswam bing ups   $=faster than dcted. However, 1Zr6$al3AdrifUlong BoundUR plac~JfRmAis hA N6Aiecexark safP .R#,35ing. Shortly before tenFecn openroppositBDvillA saw2 ly ? Btree- the high8. Everything^quiet undCe bl- !stK2He dkRGZ1alleyes, sli!c, swamor four strokXclimb7(I)"yawl" dutyEPboat's stern!1thw)ited, panting. ;!ra!qbell taavoice gagH1 or:o "cast off." A]j "la("'sh]ZsAup, s 1 swQ4voy abegun.M in his succ7!fom*ait was2^AtripB 2. A/e!a HRtwelvcifteenSwheels stoppedDTom aoverbo."ndaLysdusk, lSfifty6Bdownk,<rof dangpossible stragglrHe flewY unfrequenl3leys$]C:r aunt's QfencehoRapprothe "ellE lBin a+)1-ro Bndow"a 8was,& r/ Aunt Po:Sid, MaryfJoe Harper's mother, grouped togeB talTH s b ' &the doort B dook softly lifBlatcn he pressed gHyielded a crack; ntinued push,G= band quQevery it creaked,wQjudge  squeeze~9ugh ;i #hiq, warilWcqweblow s=I5up. >CAor's , I believe. Why, of coursr-cis. No , gs now. Go 'longqshut itF"."j"edM"la"Ded" 7`|C"tould almo\"!uc nSfoot.#asJ "Q rn't BAD, so ay --only mischEEvous. OnlyRgiddyharum-scarum, F3He Z2any bresponoa colt. HE never mean12hart@2]%st2boy:awas"--g&he!cr[Irjust so{my Joe--always full ofdevilmentbup to  rischief G`as unselfis'3Das h"belaws bless m&w2k I.an!htz#m,:once recolEAat I3wed myself ]Yis6$Sand IP1Ahim Xgi#ldv!, R abus!!" CMrs.ba sobbebif her3 3hope Tom'Jvter offi*BB"butQ'd been 5in some ways--" "SID!"the glare 2 olc3s's eye,yBnot 12. "g9N_%st my Tom,"Qat hene! God' Cke ctQHIM--F< YOURself, sir! Oh,G2, IuR know=odim up!!!!Hesuch a comforjla he tohQed myJme, 'mosrThe Lor,!th2tqhath taSrway--Blb 1nam"21!w$Ait'sKard--Oh,! Saturday my Jo<#er bmy nos D him sprawl%aLittleH $K !n,TCsoonfKto do over K1hug3and1him6 IeYes, yj1howMfeeljust exactly/longer agoqQyeste(Snoon, took and f3to tPain-killI$ ct@e house down!Go%Agive"I  ''="my thimbleY3boy 1deaab P  H"An'rwords I7Ahear2 sa6Rto re 2#Bu\6Tmemor$X1the$la3sheqentirely as snuff;:T now,Nm Bpitythan anybody elsP #ou E cry -"pu^4Q%kindly word #imm$oY)DFa nobler opin$ H1befdStill,rsuffici Bhis  grief tB!sh] tIoverwhelm herB joy;eeatrical>aappealKarongly0is naturAo, b]R resiJbnd layX*R. He&on'F#ga|qby odds;Bends+ conjectured at fir!atP(/#e#le+;M+ec0rraft ha Unext,2]she missing ladspromised!shqB"heaQq" soon;Qwise-8*$"pA %atU "Sdecidk8g`fC"at tturn upnext town below,;|N(found, lodgede Missouri pQ"fisix miles t| nBperitIbust be`%1ed,1 hu have driv4rhome byqfall if5U1soo/  W searRbodieb!8Qfruit !ef Amere2cau; 2ingaoccurr} mid-channel, sinc Qbeing swimmers,otherwiseSBesca|r Wednesday A. Ifsuntil Sunday,3opexAbe g\!ndMfunerals&$ p"onA shuddered. g>Dsobb-j0 2go.  a mutual impuly two bereavedMA flu =/5Qeach Pb's armvQhad a|,A-o{!#cr jwparted.q was te+ far beyon`Q wontu+cRto SiMary. Sid red a biCMary<#ff 6. and prayeM so touchingly, so 62ith qmeasure1lov8OGer old tremb/Avoic  3welin tears ,B sheK&9h Rstill3A5#shZ"dsrmaking -sejacula1romB, tounrestfu and turn:Q "at* "as", !oa.| sleep. Nboy stole @;*cgradua;Aside, sha"e b-light=#andQstood4r Gher. HisIrfull ofA $e [5hisxq scroll.+ARto hi he lingRconsi"R face,arUsolutW "s x Bt; h(ark hastily iv9 !ntv k[2lipAmade#stORexit,pWabehindxAthreYhis way backmhB!no \Arge ! S2ldly on 2oatwc tenanRxceptWahAman,(xiE slept like?ven imag] CuntiGS 7 zi-<$on. 2 up. When h!pu`!a V6$abhGD, he2S quarrCacro  Qstout Awork !hiT !e , side neatlyn" ts a familiaraof wor1himYBwas &Aptur 3b, arguLRat it;1 beFAshipfore legitimate prey!qpirate, a thorough @ 1be Cfor z!enCreve8B. Soo<a qand entBoodsslwM`arest, torturin Cmean o keep aw:!an]n;Vhome-stretch far spent road dayJ"he r*DRabrea  rVA barr{JO k !unzbwell u1gilI:2eat=its splendorhe plungtream. A "he paused, dripp" treshold2cam + Joe say: "No,]true-blue, Huckqhe'll cl "ac?won't deser2zstm uZ>ğtoo proudfaat sorXI a. He'sBo2 ora55C whac[8/!e 0s is ourz^i4hey?" "Pretty nearKrnot yet_1wriIAsays:B aregO 2her+? W$\he is_2fine dramatic effect, @Aing +l.o%F. AW:o "co2fisshortly provide?2as WQys sea G!itGunted (and adorned)#Qadven*% Ba vaRA boa_ P"anp."wh p>AdoneHn 5hid)BawayAshadwQsleep 9!ss&'ready to$]>e#I AFTER dinner 4ang !ou-hunt for turtle egg+ 22nt *,poking sticks s yba soft vNe eir knees#duJ!A5. S9tAould{|igSsixty<cone ho6Qy werfectly round'ea trifle smaller`an English walnut famous fried-egg(gHCnighFanother on FridaBnq!1AftK7o%cwhoopi ua|s chased(j2anda, shedclothes ,  _tere nakePthe frolic far1 upqshoal wstiff current, wYtlatter {GC leg 1unde7^1cre qun. AndX9 !op) osplashed iY)Rfacesw palms, !7ing#Q aver-@Grto avoiQsprayQd finb g! "ug,jt0 st man du$s (9TAall WQtangl6S"egucame up b%b, sput q, laughqand gas1forth at on{ )BQ7imeh|aexhaus$1runBand  dry, hot!li ?+3covB_"up !by.!byk2terjo original performance onc/>3. FQit ocX /Hn skin re ed flesh-colored "tights"F6afairly!#qdrew a i circus--&bclownsP* b none  |"R thisRest p  `a. NexAy go %ir:+l"knucks""ring-taw "keeps"at amusement grew stanH1and a BTom Cnot ,; kEin k;@f;trousers %kiY!stfof rattlesnake his anklehq U!hecramp so lo8xhe prot+ @Bchar )di *Btime6Bboys!ti%ndwD res#waapart, dropYq"dumps, fell to3!lo1$ly"thEj Ato wlay drow1un.s u  r"BECKY" big toe;*Acrat`!9Angry5 1forD weaknessXqhe wrot!f ,!!thgcnot help i !er&itAEtookz"ouc Aempt# by driving 7a toget7!nd 3 m. But Joe's D1hadhn$Abeyo Bsurr.q $o 2Rhardly endBa miserB iIerlay ver surface.was melancholy, too"waeFhearted, bu)e~A noty 3howexa secret}^ to tell,B "this mutinous d2sio72not#asoon, Quld h$+1o b6Y@Bsaid2eatof cheerfulness: "I beY>Ebeen F 4is 1efooys. We'll( VgAThey>'ide1lasomewhY6UHow'd ight on a rotten chesto% f#--But it roused onlnt enthusiasm 2fad no reply. Tom!onz+3two!se}Aons;KAfail($ooI discouragz!k.M%sa  %" a A!lo%fgloomysid: "Oh, let's !!it up. I wango home. It'sQesometOh no, Joe''ll feel be- b{($by (T?!JuD 1inkah2?C" "u$ $4for)"(t) Bing- 2anyJS" "SQ's no.$Bseemp1it,0chow, w 2re t7! to say I sha'n't go in. I me b"shucks! Baby! Yousee your4,XAYes, I DO0#my.B--an)A, ifhyBe. Ih$2 ban(Bare.c'U"%ed.wlQ cry-I m,"we A? Po08aing--d8?t$it<?'so it shall.2alike i+Xe, don't you`sFstay|?ir"Y-e-s" !ou  . "I'll:Q spea-2you2 as- as I live.1ris\!"TQnow!"&9ved moodi [6and&#d<t!ho#1s!"hNQwants'to\,$ho1et  ed at. Ohr#3iceTand m[Ries.  V,A? Le0f#unts to. we can get0{aper'apAB< as uneasy Blarm 1seeGgo sullenly on/ sUAing.5# QmfortK Huck eying"prjO9Xso wiy5 such an om%K. Presently,v2 paxAwordwade offh"the Illinoie'AAsinkQglanc bU'3loo> `;yVYI#gog!ItfM L4  it'll be worse. J*usR"=)1canKgqAstay27+I!gosWell, g/--who's h ing you.+QCpickR scatqclothesjvtAwish4'd ol3youi`.wait for youq!weCV""3ra blameh5all!st q sorrowR awayM3Tom _Ba!6ng desire tug!at;#to ]#gotoo. He hsf stop,; sw Aslow. It suddAdawn y awas bemBverypQcT3. H2one Y-d?s comrades, yelling: "Wait! (tell you some!F#y j!ly1ped$SaCgM zh5e1ingc yK|cCat ly saw the "C"s # aN set up a war-whoop of apCk#1saiTRwas "Aid!"3qhad tol]m(,#2n't away. He made a uible excuse;O!hipIl reason "be:" fa#ev<T#DthemmA ^great length ofSs$so#men 1hol eserve as a A .B ladNCa gayly:4:9 ir sports will, cha6!im #ut:stupendous plan`Aadmi)wenius of it. Aba dainA and ,!he*ed to lear bsmoke, 5Joe caughQ ideaSBlike to trysXQpipes7!fi 2the@se noviceY1 d\Lbut cigarsPof grape-vinGQ"bit" Stongu8not manly anyway. $yo'Vir elbow1uffBrilyd!slr confid9AThe an unpleasant tastGgagg Why, it's@0as easy! If0a2e/sCall,"t + #SoI4 E. "Ic!no'hy, many aI've lookA peonm$ well I wish I!do's; but I 1%Tom. "T!aRme, h$it 1You1earK Stalk <k--have o qleave iKAif In't." "Yes--5MosUHuck.$7D too Tom; "oh,ZCR. OncW1 1e s5 ter-house. Do rememberBob Tann771 thand Johnny M1 ,Ilcf 1, 'ame say  !Ye\ !. B#ay I lost a white alley. No, 't*.z --I told[1. "472s iI bleeve4Apipe4dayMfeel sickNeither do>}]$itV1. B!be  4\ !! 7keel over wtwo draws. !le D tryB. HE'D see! !beRwould !A--I  Aa tackl2onc 3Oh,)2I!"G@s:youI any more%an!onqtle sni fetch HIM." "'Deed2oul U. Say aus now?!So ay--boys!saH !i BsomeRy're = ,W Qup toQay, 'got a pipe?aPae.' An2'll31kin%1carO like, as6rX  pIamy OLDw", (03 on'rmy toba+bCin'tood.' AndZ1Oh,'" r 's STRONG e3G= $ouhO1igh ras ca'm!Eqsee 'em-S4thagay, Tom 1ish0aas NOW5!!we \"weQerwas offQing, 27 w#y' dalong?Bnot!M4BET@ll!" Sotalk ran onV &itEflag"'grow disjointedBilen adened;erexpectol marvellously ]!^ry pore ip <boys' cheekame a spouting fountainiyj2bai the cellars   rs fast Kb to pran inund;2overflowing+M throatsqin spitx 2all*"doF = Fings"Metime. BothY1ere2ing2pal miserable, 'from his nervtfingersx!. t_ygoing furBboth pumps baiB"Mm|\)id feebld) =Wknife]hCfind Bquiv2lipb 1halutterance2'llyou. You go j`Rhunt r? !pro!No needn'tvHuck--wdS ,BgainAwait!Q hourCr%itpK'"to Dhis :yswide ap oods, both U!pa Aoth a1 0informed him2 if#ha!ny trouble agot riQ"itnot talkative atT}Snight4Rhumbl1henQ prepCdp "ft meal andBparez\ "ey[2no, 1fee,well--some+1 at )mӂisagreedQ2 A !id!aw-dand ca0{ding oppressive:#ai83see02bodiNXa huddl  !so1thet(Cndly*vionshipr4F/} 2ullj=aheat o  breathless atmospA sti<Ty sat94%Awaitholemn hush 7b. Beyo{jfire eK3swaSQup inAblac`!Hr  &aaAglow  vaguely revea^ foliage for a momTavanish4by " crc1str?#n & faint moanA siguL"th0 tranchesRforesboys felt a fleeting ,ywshudder fancy tha?S! Nd !!by/. Now a weird flash,! n?Ainto  hgrass-blade,=i and distinct %aBfeet $it[three white,/tled facoo. A deep pea "thP1rol:and tumbling "r heavenGlostw# r4Qdista$A Ƙ chilly air passed by, rustlingjyn!sn the flaky ashes broadcast !ir TfiercElm FN% stant crashD#retree-tops r'Mic:p$in terror,x%athick 6!p~q. A fewsurain-dropCl paf* .. "Quick!!W"foLtent0csprangs\Broot4amoQdark,awo plu&same direction{ blast ro trees, making &as it went. One blind yH #ndnbf deafJhFnow a drenchinv1 po@#heK hurricane droveGsheets a`c0Qround<" c#u Beach#,the roarafoj-C!s >eir voices7 ly. However, one by; O 8\ook shelterk  .Qcold, /Qstrea5 ,;o%!y =?DseryR1o b teful foK  x 1 olBl fl{Q$soW2ly,0 Wd noise1hav[A The6(esS!er:qhigher, Zthe sail to "se/1its ]4X"wiCaway- %. Iseiz0"s'1}Rfled, ye bruises, toԁ2oak`U86d-bank.b battlsTst. U}R ceas conflagrf of lightnR flamii*AkiesSbelowout in clean-cuTTless Qness:"be:the billowy ,<Bfoam$@Z0 of spume-flakIhe dim outlinSdbluffsoside, glimpUD drifting cloud-rZ1lan1veirmE "L9 some giree yielR>! fand fell younger growth;Vthe unflagg/ S-pealnow in ear-splitting explosive bursts, keeBshar8 unspeakably appa[storm culminatone matcy ceffort# qlikely *+9q to pieQburn ,! ig, blow itBand rq creatuA it,av" 2. IKra wild rfor hom#}Q. Buk}'do forces retir Aweakd h threag  peace resumed her swa  %nt>Scamp,YC! d3wed3hey`Q was Sthankp07eat"^Dthe  ir beds, was a ruinTJQblast? w uwere no3Rt whecatastropppened. |! i pz!ed9A-fir/Qwell;5 t-v-AheedSlads,3Bgene0ymade no prova +/#stHc! m pbdismay2|Q soak3t eloquent iNHtres/,%,1verY0 [aten so far up HQlog iL  dbuilt !(wW it curved upK\3 &$edn Afromground),%a-breadth or so# \V2!weB; soCpatitj-t7kashreds+qbark gaBthe 2sid#qed logs+ay coax61"toQ. TheRy pil=$5boughs ti]# r furnac<|# glad-heaV751g1y d{ , !boo"haOXD feanN ][3satJd aexpandd glorified8Q<]9ndry spot to sleep %6-B. A@6sunssteal iN2oys !si!ov"em sandbar2lay1<Ogot scorche.8drearily se(breakfas"CrustJcstiff-4mhomesick once;:%Bsignbto cherTup thp+;ɹ2C. Buc 1not %fo6, or circu .E, or"%Aremi1$ imposing &aa ray 6eer. WhioD, he`7mRa new devicaK Hqo knockcbeing aq e"be*c!nspqa changOHeattracis idea; sonzs;m^head to heel black mud, like so zebras--alB Zchiefs, of course/aEwent* `A"tt%=s settleQg!By|yn ree hostile trib(Vupon @ bambushdreadful 'kQ%hcalpedHvousands  gory day. Conse$lyan extremelisfactory one. rassembl\Dcamp-rsupper-*<|`KYj4but[ifficulty arose--!d]1notk of hospitalityR-1fir<8 ,: qsimple nAsibiI@"smv2 ofER processeLDaof. Tw davages;7wF 3hadd$ed%. oD}2 wa;with such show 6! aCSmuste# Apipe# 1tooqir whiffA tqdue for1h1gladBgone"rya0Rhad g;S e now smokeA hav Ao go^;Aget 67d be se#un02abl1not AfoolG jhigh promis, #of }practised cautbafter R dfair success y spent a jubilanAning\FeRhappiw new acquirp#would have iwnd skinning"QSix N s. We will$toqnd chatL?And bsince we=nther use >, . CHAPTER XVII BUT} hilarity ?Btowntranquil eZafternoons Harper~Aunt Polly's famiE22ereS3 pumourning QgriefXP . An unusual quiet possess= village, althoug"Rordini 8 !all consci*Ir!du ssaan abs^#ir+ nblittle*sighed ofte.Ftholidayqa burdeL !Shildr61 no) Rsportz h>gUbup. I Becky Thatch1!unqself moB2abo Q dese5 aschoolc)C yar1feevery melancholy sDund  t73to FPShe soliloquize:if I onla brass andiron-knob-!:(*Dgot ` e%to * him by." And she choked besob. 5)7sto CXo9!tchere. iRto dog  x( say that' n3 the whole wor Bhe'snow; I'll <.6A seeb.12is 3t broke )1wn,qP!ndCawayQ down9Uun quite1F!ofs Vgirls--playmates of /and Joe's-- b 1ood2!Qv1 pazfence andfNArentqhow Tom]rso-and-+d2ime"csaw hi6'6how#3andmrifle (pregnant# awful prophecyu(2eas "!)  er point>tWu2actwC"heClads" 8addNpa"and IBa-stR just so-- as I am nowOf)qwas hima Aclos e smiled,Y ?2way!th!l+"me !--R, you knowD!I wZ5Wmeant ,C/1can TL a dispute5who-Bdead.cin lif`Qclaimat dismal|qand offLevidences, more or l: 1amp!DwithVrwitnessDwhen ultimately decided who DIDrthe depl"exCwordthem, the luckR2ies Aupon1selA sor"sacred importanf z1apeand envie=che respoor chap, whono other&z"toF,)tolerably 2c pride 01'Z9# ucked me-BRat bi Rglory failure. Most s "athat cheapen&!1incWWa=4loitered zs2rec2r memori!osu2oes3wedC. W\-B hou 1UfinisFnextell begaoll, inst# r  @I1a vtill Sabbath2the ful sound %in<he musing9%TlSM#on` &rs,V5ing$ vestibulQnversCwhispers#1nt.zQthereF$no/Athe 4 ;g]6eal"of dresses +f womenZ<eir seatsZ3urbJ= T. Nonpi&er q churchd!beS full5. TXMa&Q paus expectant dumbn  CV,D#Rby SiEMary yV C ball in$2 qcongregb old ministere, roselBntileos Bseatront pew$ncommuning2., broken atvals by muffc5obsbaspread,hands abroa5prayed. A mov1ymnEsungRF tex<$q: "I amRH Qe Lif2EQervic'Dceedclergyman dmLuch picturA gra  6wayA rarZbthat e4!ou)!in9Acogn!Uthese,(!pa5!herpersist"bl1him rm always Ys?BseenRfault( Sflawsg +1relaGaa toucIqincidenm&iv`e:RqillustrN.Rweet,X3ous%s people !, how nobl_ beautifose episodespt  O rank rascalit"}.bcowhid 1 be@ \ 2and D pathetic tale1n, e"at r rcompany aand jo( !erba chor swelled upa triumphant&,6c it sh! r-s0ASawycre Pirat3#eds k-1envQjuvenkGDBconf"in%$ea&"s oudest momen_1hisq j"sold"Utroop"ey6 jsbe will;"beFBridiculouCtp UuB I" Tom go81e c )esd!cc4R's vatmoods--uhad earned YByear he hardly knew which expro85ostK,!Rto GozBaffe' BqI THAT !--RchemeoAturn'bhis brpI Qatten sa y had pa4o& mo'og, at dusk on 3, lmvesg+t6; U slep   1edg7Bthe 1ill nearly dayligh`UcreptZback lan@ TsleepE  0a chaos of invalid21nchA>f fMonday2 kSto To1tivhis want Aamou1. Id!ttI<@3say> fine jokB, toHeverybody suffe'G'most a week soAboysra good 1but01s aMjC you% Qbe sop-Aed aNrlet me ob so. I-QcouldO:U overtrl1hav| eN&Aive -=2hin9D1tha" warn't d 2but qrun off=Yesedat, Tom,";Mary; "and I believR OihAoughLCW1youR?Rg!, }#ac7iZstfully. "Say<", mJr'p?" "I--w*know. 'T?b'a' sp'NILryou lov UDmuchwith a grieved tB discomfo5Gv!me! c enough to THINKc, even+ didn't DOqNTuntie)vUany harm," pleadeBit's giddy way--he is2 inba rush%he|uinks ofrUaMore's Qpity.\. AndAcomeADONEj.1too'1'll !, 0!da 'Q late DQyou'dSd+"dfor me>Acost&2so 9 j1you V` for you5H2I'd)ADtterakDlike!I Vnow IVsrepenta1; "s dreamt@1any(I,,L much--a cj$$'s!no2. W QWhy, Wednesday night I!tZsu ! bl # b 8+ woodbox A nex Uhim."TRso we9 S 'do ByourQtake  0?8 !usfD<$Jo#'s -uhy, sheA! DiHNOh, lotsso dim, nowWtHa--can'lIRSomehAseem2ind ewind b)6.{1"Trh1der9s[2p. Come!"6  !hioo$ aforehe anxious minud then *AI've i[(.! t rr!" "Mercy on us! Go]-Tom--go on#R< 1you.1, '*door--'" "Go ON]VEJust;ctudy a . Oh, yes--rS you dkwas openeAs I'mMGQI didZn't I, MaryA[}Bthen^r I won'obertaine9Qas if4 Amade'P/cWell? -I make him do%Yb1himB--Ohyahim sh   M"land's sake! IAhear% b@my days! Dstell ME1any! i 1amswV. Sereny 4& i^an hour older.^Pther getCTHISj er rubbage 'superstition.#1t's/!!brbas dayVF Nex3 I r BBAD,NmischeevousM )"an+ responsibl3n1--Ik a colt,28 Pd$"! AgoodjgracioF you(1cryU"So& "Nof* nM)" "Then Mrs.e@2cryf "JotF3ame:C2she !ha SwhippERcreamshe'd thrit out he"CselfRsperrA1cyou! Ya#Qsying2t's1youdoing! Land ae]Gno!SiAsaidd  D" " O ! IRLBSid. did, SidMary. "Sh.d"leU"heL1TomSHI{ !h^6$off whereM$gone to,  fDbeen0sometimesTHERE, d'youd that!:92his8 QwordsG"Anhim up sharpTI lay must 'a'an angelcere WAS W xCtoldZ 1Joe>`a firecracker73Pet\ainkilleraas truPeI liveQ/!loCtalk%dr;Qe riv)1r ud%3havHCA Suna qand old MissRhuggeH4cri  "en bIt hap"!so 2surT'm a- sftracks /2n't`i.Zq 'a' se" %! \what?Ie3youq, " IwBhear`C wor2aid  !en  Pso sorryq I tookRwrote4piece of; bark, 'W}dead--we are only off 4'p %T tabl_  ;'hCyou sdA, lacasleepv8Iand leaned2lip6 D ,&I;bforgivqhm#at4she4crushing embracpt, feel lik( guiltie%villains.#wackind,  Dough~a--dream," , faudibl!up! A body doeV as he'd do if heVyA. Hea*FMilum apple  s 1was-,t--now gto school.=qto the Oc1Fat2f ui  ~2ack>'d-F1ing"Bmercy [l#t q on HimHis word, Bknow unworthy ofa 1nesR FHis *ad His hand+slp themEugh placere's fewAsmil 2e o= t{%4wHis res>long nightUDs. G2Sid >Q--tak+r)1off( 've henderClong.e children lefw old lady to call o vanquish her realism!sq marvelu(3had1Q judg_"toF_pi4"mi,"hethe house.XAthis zrthin--az\Bthatdout any mistakekWhat a hero/a, now! Henot go skipp~(%Rncingm"a dignifi!agƌXa@ who felthe public eyEm|cindeed; he triesto seem2 th2s ooaremark-he passed along?tW5Afooddrink toSmaller boysl%1flo+cels, as A to 6"enw"le$#bys the drummer1heaQ cession Ae elephant lead menagerie :own. Boys ofown size pretendVIknowaway at all'4were consu with envy,bthelesW EUgiven& i#av1swasuntanne6?his glittnotoriety3Tom !no# Ae pa1ithBr a =e3Dbaso muc}bbof JoeAdeli!9eloquent admir)݅*"eyT1two"esMAnot "inCsuff+."stuck-up."s#1tel ir adventures]5ungy#2ers9B;c@ 9ran end,aimagins}!irrfurnish material+,yorir pipewent serenely puffAroun Q Qsummi; glory wadCchedOQdecidbe independen@ ]6now. Glorysufficient. He_2liv|R. Now !heTdisti?'a, maybJ?qbe want o "make  !le!-- h  qas indi1Qnt as other people. 6 arrived. !seAawayQjoinetrroup of5%Oalk. Soo#!obed$s%3 trYQgaylyR ERforthi1fluJAfacedL Hbe busy chasing4mat?so4th a 2sheV a captur9h$icI3shea+/Cher 1vicinity&89qto cast!nsS eye =gPW1ch ~RI"i2!viFc vanit wB him)so0Awinn!im&only "set "#moE6himSdiligAavoirc at he knewKboutR gave~ qskylark`;+ved irresolutelyBQ, sig 1onc 3twi#glafurtiv45nd @QTom. 2snu71was1ing  particul0"to Amy Lawr7 Dne else. SheArp pRwnd grew1and uneasyKc=2tri1go away, but 2eet8t+2ous:1car71her"he "to a girl*as"'s%g!--)sham vivacity:Mary Austin!  A, wh&"n', #to-n?Cih!#--*Qee me"Why, no! d1? W1sit(Ix!ins' classu1go.Xw YOU!? oit's funn!n'+D you>uw2you 'QicnicU%Oh!jolly. Whol)XMy maa}5oneRcgoody;  she'll let ME com)Hieill. T#'s<!any#AbI wantQI)!ev4# nice. W7Fs itbBAQby. M r1vacBk fun! YouM r1oysAYes,tfriends to me--or3be""he:4ed Ay calked d"lo   the terr$Tstormbisland[h9P#nr PNq tree "o flinders".c";rwithin EYBfeet6lQmay I#G]rMiller.P.1And 1Sally Rogers&+usy Harper. "And Jo[Aon, g2claiof joyful"s 0 ogged for invitNs"To]1Amynturned coollyPcstill Atook# 's lips tremblAbars ca1her;Y!hi$se signsa forced gayet con cha tfJ7?!ouny 1got( !on aand hi61rand had4rher sex4"x'xGsat moodywounded pride,qll rang roused upua vindictive cast Y1gav| plaited tailsik, swhat SHE'D do arecesscontinuedBflirO jubilant self-satisfacAnd he kept )Uarto findG1lacerformance. At las AspieEsudden fa-rmercuryb#bcosilylittle bench behi/BhousT 4t a27S-booklfred Temple--and so absorbed2hey #so?Atoge Rbook, 1didby 5 ofsq+lB besides. Jealousy ran red-hveins. H1hat  2for "waqcchanceQhad o  a reconcili. He callc-r a foolhe hard names a!ofD~#cr3vexd!Am tted happily1, a'y!, 8.e!rt= Asing 3butRtongu{8!it 4He Bhear+,Aas s BwhenZexpectantly h;!onu1ammh awkward assent, (/N sFA misQd as Awise !toaBrear! ,0q and ag%#ato sea eyeball"=1ate>!clryj belp itqit maddUL q5Bough"aw;  ]Thatcher\ once suspe(`iC# lthe living. But3did59 +Ber f%/3toosas glad#Tuffer^3haded. Amy's happy pra<$inA!e.!hiac g&,o attend to; s must be doneAtimeUfleetin vain--N chirpedkT`, "Oh, hang hi%k  aget rioXher?" r those 9he said artlessly !ou" """ chool leJeShe hax3hl, t. "Any(Qboy!"p#gr3is teeth yGH1#buSaint Louis smartd20and is aristocracy! Oh, c a, I lij1youfirst dayuWqaw thisa, mistAnd I 1ick.Y just wait_ I catch you out!9%1tak  ermotionsZArash+n+r= --pumme>hI1kic&>and gouging.{you do, du0? You ho',Qthen,?learn you!" r Fthe Qflogg'as2o 15fome at noon. His L not enduByD3 of4 iAThis jHtbear noAB thea distrf'Rresum) 1 in'h bAlfredI*sy"">!no#to,Ktriumph BclouG 3she/nterest; gravi absent-mindV-s followeGthenLR; two2ree -"pr!up2ear footstep" iba fals%;i Ashe bentire({1 wisbEdn'tjit so faVsen poor Q, see!loP2notV)Ahow,E exclaiming: " aO one! look"1s!"{1pat(Oc at la99S saiddon't bo| Sme! I2carathem!"` LBearsagot up)Cwalkq2. dA dro'alongside+s-}2"buRsaid:,2awa&leave me 5e, .1! I1 Shalted, won# waZdone--forCFaid }i !snooning #hej on, crytC!mu Z?he O qwas humO egQangry!ea bguesseE Vtruth Rimplya;Gn0nXAventRspitee)I". far fromh=be lessPDBdGZ !3g~to trouble withoutS riskTAselfR's spn Cfell^ 4. HMhis opportunitZ!ly.e !onLfternoon/T?&inKr page. ,pi cwindowm R#ou5vP. She startward, now, inten28tell him;~ thankful%healed. Before s half way4, hh1sheSchang$migi 4 of Sreatm!heS@C her came scorc9R:S sham|yvz6 ge,!ondamaged i's account*"tohim forever,Ohe bargainVIX TOM 1 at:'adrearyoa_sm Qaunt R k1 sh\-Qhad b tQorrow an unprom$kmarket: "Tom, &1a n  2kind live!" "Auntie,o2aved&e?4Ryou'v ! e I-vTSerenM,ran old softy, expectingAor!o ZL :g$atn0 2hat4,!loRbehol{ s'3fouf!Jot7 2wasabtalk wt&, I don'1 $Q of a9will act  that. It makes me feel so b [-go\A andG!L l of myself never say a word." Thisa new at  %  3nes( aLH!toueCjokeBvery ingeniouse *A mear shabby !He "2heaA"no5ken71 to,#4he IBdn'tvit--butCT2Oh,i#'!k. c0your ownrishness66T Lfrom Jackson's I?2 to $urt yoo?\:ASa liem<%91n'tC to pityk* Rve usXCsorr8q!knJ8was mean,!#I J CB. I s, hones1),. Ayou &W<ibme forI"toV1you'&us™(n't got p!del!th nkfullestMi} 2wor>I7bhad asta !"atY2you ever did !it." "Inde ' 1, a%--52mayOQ stir2H!OhT Rlie--,!do[QIt on 1kesPcgs a hUFbtimes *<a; it'sH0 F. I k,1you @?X4"at)"&me2I'dLW#it Z power of sinsV72'mo}you'd run eand acted2it reasonable;n #me  %Ryou g y 22, IFgot all fulRthe idea ofa' the churchI("n'GBh2 a$Qspoil$Sotpbark back in my po 1andjA mumkW.1arkq2ark 13we'+ d 1wak8qI kissee--I doL6linS%aunt's face relax[! t.Sness %inq. "DIDqkiss meM !Ar.3 su ?did2Dq--certa|ArmRz ~Because IBcobyou laBare moa-Band "3ZBds sz Aruth.* tremor inRvoice&K9E!!bexAwithbf1 o " hTgashe raqa.!goAruin$1 ja#T c in. T0 _vher hand< erself: "No, 't dare. Poor boy, I reck(+ #ed bit's a1!leBlie,7's such aQ1romaI hopeLord--I KNOW BLord 1forr_.Qisuch goodheartd"it3"wa'#fi 1lielook." ShexCawayRttood bya|b. Twic-Dput 21takA garUand t:refrained. Once m1ven1rhis timo3forN)3Wc}:> llie--i!et%1rieR." SoG3. Aa E, J7y"flQtearsix3: "Athe Bnow,}5'|'mitted a millionl)!"X THEREAsomeAunt Polly's manner"~!BTom,; Bswep low spiriVBhim lightRhappy6. Hp&A luc YBupon O8e of Meadow Lane Dmood+determined3. W|Bc's hes$ h]; Iamighty to-day,6I'm 9 ,#2 do!4ive--pleaseB up,S you?vDgirlKRA him<dnfully( face: "b3thac. 65 TO , Mr. Thomas Sawyer.i AspeaM 2youR!to*h a!pa!onCd stunn-1 noYnkh!ce(inIrsay "WhHs, Miss S&?"j[ ?$&it%dby. So$1 no(OQin a Rrage, 03He mopedAyardf1ingObwere azBand ing how hebtrounc%if:iatly en#erd 2R a st"y remarkQ5. She hursWbreturnngry breachcomplete. It EY$to Bhot 0Rment,s#AQAwait)Q to "02in,was so im see Tom flo\injur2. I;1hadany lingl!noQbof exprAlfred %,aoffens;2lqad driv=vaway. Poor girl dOrhow faswas near. The maMr. DobbK n͢middle agean unsatisu3ambDqThe dar!ofdesires was3#be a doctorqpovertyWdecreshould be*Q highan a village q. Every he took a mystmQ book>CVk and&$1 in;{s "no6.5Breci8"R$! t& 3ookJ#lo21key#rqot an utMwas perisve a glimp[Q@Bance+T came1boy8c theor-1 Qnaturqno two 1iCalik6t way of getting5ats in Base. "as1pas!by4Ddesk% 1nea~R door t3tX)5ae lockADrecious H  glanced around;>B next instantHOs1The title-page--Professor Somebody's ANATOMY--carried no informa/mind; so s+!ga1tur s"cau!3oncaomely engravW frontis> --a human figure,qk naked !CK+dow fell Apage}3TomA ste$inAdoor&fcaught tpicture!bsnatchs"to >aR hard BSdindpeEathrustfvolumej2tur@Ce ke  out crying'1 shand vexF. ",2are1 asacan be4sneak up on a persou"wh 8y'r+." "How yH2looS$ta?" "Y$Abe a  ;wfyou're&tell on m1#ohQshall) !! 1 be whipp ICwas 3%P astampe,!fokdRBE soU i!% *2'E*. %&and you'll see! Hateful^' "!"she flungthe housd*cexplos>\:still, rather flustereC1onsBt. P+ O+  !Whi"cu&k," aCqis! Nev2xen lick! Shucks! What's a#Sing! 4ClikeS$--so thin-ski and chicken-". 4Aof c4 # Iq)t$ldV3'is lA's o@Gwaysa even a<&|tC7? Oxktask whof%3his book. Nb'll answe en he'll doUay hekoes--ask firs\An t'wOns" jiBing. Girls' facese*9yMM2bonT1'll .i  hatight - ', p1any#ou.*!coCDJ'added: "All,3"'dQto se"inQfix--!er sweat i"!")4joi0gmob of: lars outsideC[ags  !nd:ol "took in Afeel rong interests studies% #hea 1 at gc side Broom !'sX d him. ConsiL&3alltT, he 4Bpity`B$et+2all1uldo-/"HeVup no exultd!lly worth[ n  \ %Qdisco@ 6#adeHH Sfull I own matterE9a~72aft "t.64&er lethargE *"Xgood the proceeding _! 3Tom"ge(&aby denrhe spil2inkCw  >/sSG:adenialr mn4TomssupposeV A gla{Bthat%sJmergency paralyzbinvention. Good!--han inspir4! Hk"ruXbook, spring thi)"3fly5NAolutAhooke$ont" i)was lostl ,rTom onl9{ Wsted , bQ! Toorkn Sw *O  Bfacex1. Eeye sank under AgazeLv9smote even Pbnocent/Hfear>1sil%B onez count ten =kAatheV.#raH npoke: "Who  book?" nNsound. On 1havxrd a pin,1a still!continued;CAsear-4fac|  for sign uilt. "Benjamin@,!tuS?" AA. Ane  pause. "Joseph HarperD5+;I uneasinessE2and4#sethe slow tor+es TFDscant ranks of boys--c ,ed!ur3 : "Amy Lawrenc,eA shak head. "Gracie MillerQ samerYLusan! 8his)rnegativ(2waslMA was"bling fromcto fooQexcitG and a sa!op_!of/Rsitua "Rebeccazc" [Tomhf#--I!Cwhitterror] --"]R--no,4(me6b" [herA rosmappealE?XAG29lik;Da%br(3prafcis feehouted--"I:"t!}BstarperplexitH6incredible fF3Tom!"a C, toHqdismembfacultiesk wYNA for=#to-his punish"=burpris gratitudB adosCshon64himBpoorv!'st Bpay /O)1 IBed b~splendor qown actv Sb outcr7most merciless fla DMr. 2had8,badminiBalso receiSN!ce"added crueltaa comm o remain Shours0ld be dismissed-- knew who #wa k]h;his captivit3don he tedious s, either$C6bto bed, planning venge jgainst ; ;arepent5#ol4"ll^ 3for 3'jq "ry8"thV1ingHW %way, soon, to !Santer'%she fell asleep at las's latest0sdreamily inRear--, how COULDbe so nobl23XI VACATIONapproaching),nKqsevere, rjQexact1han[,i!a .!shV on "Examin" day. His rodkhis ferul8! seldom idle now--)=&st # sUpupils. Onlabigges7 young ladie}e e twenty, escaped la #' Ss wer vigorous onO!; lC he \,K6 wig, a perfectly balQshiny=#, Ronly d'B ageq T of feebleJMmuscle. }great day "ed?byranny#waEc=face; hec! H)!ur?Ie least V2comTnQnsequ Y1boy59 air dayNp8Fz)1plo1 rezy threw away noo "to'  a mischief y a$J"im\r retrib8 & rfollowe*yCful vCso s|Qmajes^| from the field bad#stBtthey co2tog_Ԝ#lag7 QdazzlaictoryBy swaign-pa."'s(BCchem3askEhelp0s v`1deldRboard Rather's f]3K$giboy ample -rto hateFTd's wifHBgo o"!sitSuntrySew da~J#1to !4fer !he O Aprep f3forQoccasAA3by 8Zty well fuddl Q boy  the domini roper condw$G on A Eveh1q"manage"Bhe n[ <9Vwaken hhurried #toB. I!fu; "im!esHc arriv0+" iewas brilli' Cdorn wreathsbfestooDfoli!xflowers! s 1ronH 2 {d platform,< Alack=#? tolerably mellow. Three rows of benches on *(!si\Rd six%1in "c m.foccupi dignitarw1own)% aparentusTg left, backh citizens,Dba spac emporary5u@"th&Blars3 !er1taktexercise ; 1of S"he"drY0"toxae statdiscomfort; gawky bigRs; snowb_ X clad in lawBmuslHKbcuousl,ir bare armsir grandmothers' ancient trinket&2 biApinkblue ribboLir hair. A>/!tas fillKnon-participa.%2. Ac"3boy!upsheepishly recia"You'd scarce expecaof my o speak in public stage," etc.--ac5ing#ai-r Vpasmodic gesturech a machine mahave u csuppos ' a trifle]aorder."he*7safely, though cruellye}3g9afine r!offHD?dp! manufactured bowqD. A u1lis$B"Mar a+Clamb]#, Qgbssion- aurtsy,yher mee,ru!wn#ShappydSawyer ӕited confid o1int)1 un hGindestruct"Give me liberty orme death" speech1furc frant4Aicult  $ia middlit. A ghastly "-fbAseiz m, his leg5ked m=  to choke. True  1nif/!ir tterly defeab a( attempt at,it died early. "The Boy StoodC" BӘa Deck"!owPAlso 3Assyrian Came Down,"!ot{eclamatory gemV"rerd,a& f^ meagre Latin class ,Qhonor prime fea41ing"in,original "compos\ 3s" a. Each-!er: !to<qedge ofr 1cle.1roal anuscript (tis dainty)F"eqCreadQlabor t to "expreDpunc!1the.r had been illuJ;on similar  Sb befor^, doubtlessir ancestoremale line F nCrusades. "F[Ahip"wone; "MbOther Days"; "ReligioHistory"; "Dream Land";qdvantagv  Culture"; "Form Political Government Comp and Contrasted"; "MelancholrFilial LovVrHeart L#sp A prevalentY!se\ca nurspetted m|B; an>asteful and opue1gusf"language"; <qtendenc dlug inRears 6 ularly prizedphrases until+ Fwornx%3outr peculiRthat ZX CmarkBmarrlahe inveterata r sermonwits crippled tail  Ae eneach andby one E m. No matter wCssubjectG Rbe, aA-rac 7$ & quirm it into some as "r AFa" rQus mi} !ul*templateAaedificG glaring insincerid"_not suffi o1assYabanish  fashion'Lit iT to-day; it never will bex,orld stands, perhaps. #]5ll our l$2herD1 do$feel obligwAclos.!iru1ithkBrmon|/aill fi >#MfrivolouT  Dgirl1dongest9XQrelenhly pious. Butis. Homely truth is unpalatable. Let u2oK"!."QXfirstNas read9one enti#1"Is (n, Life?" Pgreader can endur_'bxtractNit: "I5common wal S life(ful emot!do/ERthful9ly"1warvsome an qed scen 2fesc! Imag is busy sketchingt-tinted3Prjoy. Inû voluptuous votary}TEsees`(1amiA3 ei ng, 'the observe4allrs.' Her gracRarray7snowy robes, is whir! f"uga1maz3joyous dance;E eye is b !es rY 3 is#st gay assembly.-BdeliIf"#quickly glides by, welcome hourRs for1ntrBintoe Elysia cld, of bshe ha2 g\w fairy-li eF !ry appear kher encharvision! 3newjis more charm}aBlastfas1nds{Aenea@ais goo߁xterior,#is vanitflattery3onc 1souqw graterharshly1ar;ball-roomCqlost it4sF%Rhealttaimbitt= Qheart1she bs away1Fnvicaearthl8s cannot satisf U1ing1theHJq!" AndV#or3so D!rea buzz of g/1to 3durB $, Qwhisp4ejaf"How sweet!" 5qeloquenSo true!l had closed jc ly affli e\enthusiastic n arose a slim,X8r, whoseK07' "C" paU42comMTpillssigestioX>`a "poem." Two stanza&"it=!do+ "A MISSOURI MAIDEN'S FAREWELL TO ALABAMA-qlabama,%-bye! I love1! qBut yetLzCdo I:+1thec/1Sad1, sQought(!myR~bt doth And bqrecollesng my brhRFor IAwandH|!th[wSoods;Have roamN a;Tallapoosa's stream53blisten, *ssee's warhfloodswooed on CTide Aurora's beamA "YeM8Ame I to bear an o'er-full4`Nor blush4urnmy tearful eyeB'Tisno strange% RI nowa+pm2(to0s left I yield; Qighs.[W|sand hom2min  is StateW1TvalesL"--F!spq?fade fas (1col ag3eyex 9eoen, dear ! BturnQISee!" c Bwere4few$ho $at "tete" meKl"bu "po S very|ractory, theless. Next/ed a dark-UBxionEIfack-ey Qhaire qng ladyQ paus2 im'vwJa, assu tragic ex$n Q " m~ d, solemn tone:A VISIONN2Darbtempes 2was5 2. Aq on highA+2ingr quivered; butAdeep0"na T heavy thund "coE-qly vibr 1ar;s]rerrific n .gry mood-de cloudy chamberheaven, seebo scorQpowerXted over itsAor b,allustrFranklin! EvqisterouYwinds unanimaM"th mystic /Qblust?3as if to enhanceBir a Q wild!#. . "At5 a$A, so Rrearyv human "mymspirit sigh@eQbereof,k1'Mye#iend, my counsellorand guide--My jop Qgrief,second blis[in joy,'RQto my1. S#ve^9o. Z 3ose p!s !d Qe sun9lks of fancy's Edekromantic , a queen of beauty un#qsave by !ow_ctransc xAlovevPsGAsoft 1, iqQfaile2mak a sound,"bu1mag0thrill impartedgenial touch, ather unobtrui< Bhave away un-perceived--unse4. A1 sau res4herf1s, "ic5s e robe of December,21poi 0nd]Aelemtcwithoub0Tg5two"bresentV3Thi;(ma)1tenB}h1oundwith a 5so v all hope to non-PresbyterianN  #!okApriz%1osi~ Gwas /Qto be sfinest >81.cTmayorvillage, in deliveJ  rhe auth6 it, made a warm speech i Bhe sQby faT"b "" !heE  that Daniel Webster well be prouit. It may be rel2ng,xthe numbes in whiz4aword "4Qeous"over-fondlegxrience referras "life'sS,E$upeusual aver`1Now}m,"1 alA ver3k1putchair aside, !ed9 !udldraw a map of America #A, toa"ci geographyoupon. But he 9sad busi] !thu|&y 8SQa smod titter S!ov*=!e '/ nB wasDset =Ato r !it:sponged out2Qs and=dbm" he only dted themQE!evn E&ApronGMd$)$hi'>J his worky(if@PBnot uput dowQmirthBfelt"al B wer #en him; he i| was succeedingFyt;\5uit even6ly increased.Q igarret above, pieta scuttle 1his|,@$is- came a cat,nended a$ q haunch a string;1had&!g V 4PEjaws=qrom mewDslowly de#Q curvwAward-Aclaw,swung down-qintangi!!irRxKahigher2 --the cawb six i"absorbed teacher's head--down, "$owshe grabbu2wigNher despEclaws, cluS4iw1nat7u ", " i} Yr trophy7" ibposses 1And0Qthe ldid blaze abroadx's bald pate--fo 3, boy had GILDED it! That broke upEmeet3boyavenged. Vacn  3com NOTE:--The'+"a" quotaS tpter are taken%out alteriBfrom avolumeqtled "P7and Poetry, Western Lady"--yj1exa%0݇Qecise  *agirl pQhenceEAmuch9 Aappi"anYcere imUs be. CHAPTER XXII TOM joew order of CadetTemperance, r attracN  1howw@ "regalia." H3misRbstai^Q smok9!ch,Aprof as longSArema1a m OQ he fn thing--nam&a1 noBdo a+" iZasurestO  3 body wanA!goVQvery Pv$b soon W!rm] q# aQc to drc)q swear;Rgrew %so:!nor jL bof a c6to display i8red sash kept himwithdrawing from . Fourth of JulT61;Qon gaat up --iC"A2worrshackle7 1y-ehours--and fix0Bhope? old Judge Frazer, justic)Beacewas appares'"bei/ Ta big*funeral,  o9an official. Du( ree days[;Bdeep+rcerned 62the' d Qungry1newit. Sometimese: "ra$--#heRventuj1get Chis practiseO.R-glasrmost discourag yJbluctuabAt las'as ~Amend then convaltQwas disgust9'qnd felt !ns&injury, too !haQsigna,tat onceq"at#Bsuffc relapBdiedrresolve kP! trust a mand@T+Cpara a style calculated to killClate^Benvy$1fre[m@!reAsome!a La swears Ors surpr 1dids7Qsimpl| hga, tookBaway Charm  GDqly wondQto fiIacoveted vGwas beginning -4&ng Cheav}M ands. He attempt$BiaryPLed dso he abandonedT?!rsanegro minstrell!s cto tow aa sensand Joe Harper+-up a band of e-r were happm1twonGloriousbwas in a failureWAit rFT&, encx ! i!seI-e&t! aeatestBAin tabrld (aT!/ed), Mr. Bento actual Uniteds Senator, prov overwhelYQdisapXBment Gwenty-five feoqgh, nor +Q anyw;neighborhoosrA circu qboys pl"J @#  in tentsof rag carpetAadmi ,@2pinOB;two for girls#ens. A phrenologisa mesmerizerI3wen1lef H8_Udrear "evf>=BwereUeCAand-'(1es,jDthey,A fews6so $(Bonly2 the aching voids between acae hard= Thatcher1gon}bher Co_ ainopleat!Bher ks } bm1sidaElifeP.dreadful secre*athe mu  chronic miseryєaR canc^ q permanX* 2aingnmeasles. wo long weekl Mprisoner, dea}1andw"Aings1wasQ ill,;O !no3. W2cgot up aU3andafeebly{-$"!achange3com./$"nd2 cr.rb* "revival/0 had "got *1n,"{Bdult"thyLbbhopingsst hope!1e s$ of one blesOQinful"- A cro(Ahim Qwhere9Qstudy Testament4Rsadly9- "deng spectacl_  Ben RogersKvhim visi6 #ooca baskBractE!huup Jim Hollis B calLs]KK{2ous0ing of hisA 2 as DningSboy he encounti!ad2nother tfV Aon; 1hend ion, he flew for refuge a) F bosom of Huckleberry Fin! bwas re+Scriptural quotjirw_ re crept!an!be"2lizat he alXA allw!st4and .%Bnv=&st:Adrivain, awful clap ]/blinding she81cov!the bedclothe"ai! a horrosuspensehis doom; not the shadow of a doub  is hubbub was 1himrSdQtlm!thtgbearanowers aboveMQextremitp Bendu2h.i the result have seeme1him!st[ApompiRammunp Ca bu3a b(of artille+;b incongruou' E3 up+n'2 asrto knoc+ Bturf! insect likeB. Bbtempest spent itPcand diQout accomplis9its objectc boy's bimpulsgratefulreform. His +EwaitC"re>bbe anyDsK"dadoctors were back;w4hadd 3 heU!baO!is2!%an})ge . ehardly4D1spa#"reing how loneWQstate companionlesAforl@oPdrifted listless Btree+p41 acuqas judg a juvenile courr1cat her victim, a bird and Huckup an alley e@ a stolen melon. Poor lads! they--tTom--ha7E SI ATkhe sleepy atmospStirrevigorously:3e trial4k!betAsorbWtopic ofe talk immediately xyBaway$itArefeQO ; sent a shudd his heartroubled consc i[5LQpersu2himBthes#rkr!pu tqas "feelers";1seen-Rld beaqof knowz n -  Fnot be comforc2ae mids, agossip1kep(rshiver e"Hu##a 1pla+!a Sm. Itb QreliedbunsealAonguwhile; to divide)iburden[l87r. MoreoqBhe w/to assur-m discreet. "Huck,1you" told anybodh--that?" "'Bout wYou know." "Oh--'course IZ"n'Never a wordLAsoli2Qword,|Qelp mat makes you ask:qWell, I\ aafeardbVWhy, ?B, wen't be aliv$1dayQ #go out. YOUt2TomWmore A. AfnQ pausnQ5n'tL1get!to\,"Q they"Ge[!? !if half-breed deviLzF me z) gO$y ain't no diMn>Uthat's all(!&n.twe're safe %   we keep mum. But let's swi-1gai1ywa'!Qsurer}I'm agreeS# ry swore? , solemniti"%S talk,yQ? I'vBrd al " "Talk? Pit's just Muff Potter, $the timepReps mg!t,tant, so'sd7A'ersT{"ju9+Q samebgo on p reckon he's a goner. Don'gfeel sorhBhim,AimesqMost always-- *raccount thfA don %ur. Just fis 4 B, toSoney drunk onfSloafsFiderable; l-!we2do |MBwaysu&of us--pr s <+Blike@!ki?PE--heBahalf aB, onre Krn't enough4 2two"lo eEQby me?sqof luck!meBkite"me,knitted hooks%o my line. I wish w"geot$u" "My!&"n')W. And besides, 'tn't do any=;'d ketch{ AgaincYes--s>aI hate;ear 'em abus2 so the dickens6"he/fI do tooL)I[2say&toodiest i ip n !!an ver hung befoO1Yes=y+%7~Qif heK)1frery'd lyn^A'"it'" The boys]"aQtalk,Csit broum1. A# twilight drew #ey themselves ha6 * leAisol80Ejailz=an undefinp8d; z-m!clow;!irAicul+T But =eno angels or fairies i! tYss captiveAboys#\!ey~Qoften%!-- AcellYring andk qtobaccobmatche-;n gBfloo% rno guar"isl2tud /Qgifts Q smott!irL "s --it cut deep,lx@ 2cowASand t!ou2the Sdegreaid: "You've beenQy goo1me,--better'nw 1elsthis town1I d+forget it,Q. Oft1sayrmyself,I, 'I us\AmendMCoys'.Bings:Ashowfishin' place01befD4Bat I1 2nowjcve allaB oldthe's in92TomIQHuck b--THEYP)" '5-!them.' Well, "eBwful$"--and crazy  #--w athe on*1y I!un2 itnow I go:Qswingxiit's right. RighABEST, b--hope  we won't4at.! make YOUl dbad; yCed mh<say, is,p2YOUG !--m 3youSStandR er furder west--soSit; it'smBAee fw"lya&C5 Aa muP Rtf1non$ ae heregyourn. Gooda w"--"ly. Git up on Hother's backYl touch 'em. = Qit. S}`qhands--}1'lln1 th-Abars mine's too big. LittlBweak--buyQ 3lpel ^ 2shelp hi*.iy"."!home mis CnBream#full of se next day{e fter, he rt-room, dra@. irresist`,(1in,tforcing( to stayF| 1hav (1qy studi~a avoidpL"ch4FKTkelet !atdD Now,7#A us t** b--telleown waEskipp,h+sbegan--}AinglRfirst"as"rmtQubjec f  easily;ln! sdceased buP own voice;&ixAhim;qed lipsbEBhung!higads, ta]\no note of"d, rapt1ghaCR!on 1ale#q straina pent emoq q climax 5boyJ "!asdoctor fetcheETboard+"ag fell,@Cjump-P?1andCrash! Quick$Cighte}%Cspra|aa, torem1alloAsers gone! CHAPTER XXIV TOM1a gring hero onc>e>%pe2old-Aenvyhbng. HiR eveninto immortal prin;* paper magnyhat believe be Presid Byet,  * . As usualfickle, unreask9s % to its bosomBfond3 Alavi@XRas itb} !&Bsort of conducO&o"'s"t;fIp'#noJto find faulQh it.!'sv: of splendor and exul2 J2hiss were s?.  infeste=s Ddoomz deye. H!y aUcould', 1boy"tir abroadafall. Poor HuckiH 1samI"wrrand terror "ad*p7!ho!or* Awyer Qgreat V 6and4sor01hara y Jumight ldnotwithsta_A's f!sa!im+QZyq N.#4afellowDhe attornepromise secrecyqwhat of? Since }Sharasy![2 Bdrivp%c c'&Rse bywaad2lip ^been sealnsdismaler;most formidab=aoaths,a's conchuman race`well-nigh obliteratcXDaily2'"1madA gla\0Rpoken%!Vly he wish%1up " c. Hal"imZS nT 3be dVa othercY@ >+ He felt sure heMbdraw a+again until1man92dea,y@ Rewardselvcountryrscoured"no2 Jofound. Oose omniscind awe-inspi^marvels, a detective,1"upoSt. Louis, mo"ar@S$shhead, looksort of astouQ succ  3sZb craft!lyu=!ev1at ' say, he " a clew."n you can't hang a "clew" for#soZoEgot ]qnd gone8. s-63ure3was,. R slowdrifted obleft b Cit a"ly qened we"of apprehenV THERE comesVqrightly{1tru+26_)has a rag1sirrgo someqand digRV}1sur3is 9suddenlyU3one{e sallied+R Joe ~Bfailed of8. Next h<;!a %gwTtumbl@FI2FinRed-Handed." qanswer.m3 private-#op$e matter to >{kbtially`*Awill>  o take a hanwy enterpri RferedBtainnd required no capital a&u superabundanc)Rtime r rmoney. 'll we dig?" sair. "Oh,5.Uq." "Wh%D i[ e?" "No, inde  /a. It's-"in=y bicular5 --/ on islands,Atime@ rotten chests!envaa limbSn old@Bree,0c;falls at 1 mo aQfloor) ba'nted0Who hides iWhy, robbers, K urse--who'0? Sunday-school sup'rintendentsXIknow. If 'twas mine I Cide it; I'd9!nd1 a _&1o;1 I.l"do!XUf and leave it "ADon'y0Cy moA!No y)k,w$B#qy generUQforgeT 0q, or elJey die. Anyway, it  t 1a l "im gets rusty;!by- !bycbody finds<yx  Xtells howAthe 2--a  o be ciphCovera week because it'stBsign hy'roglyphicjaHyro--H"--picture>qthings,]Qknow,1seeTmean u1Hav1d got o"emas, Tom|!No0Well then,: Afind #61wan^ esbury itas or on a"ea t0Eat'sAsticTout. *!'v ed Jackson's I}iwe can tQagain/R timeSy' -1 up Still-House branch,=qlots of-StreesnAload1'emI#ll Htalk! NoTA81ichJ1forG _1'emI1Tom/6#llll summerf 2? SI#a brass po-a hundred dollar,"llAgray2 fudi'monds. HowaHuck's eyes gX1!bubPlenty4qme. Jus R gimmM Iand &noT" "AT8~QI betI:k!foff onDb Some 'Qth tw3Rapiec"#reWaany, hn2's <six bits oHvaNo! Is1 soCert'nly--anybody'llyou so. Hever seen on5E!No7I!nOh, kingsA sla|$S_"no5$I reckon@i!if3wasto Europ!'d.Qa rafr'em hopGr b" "Do1hopBHop?_-u grannylN2say>1did CShucks, IJ1ean'd SEE 'em--not V Yto hop for?--but IRQ 2seeV3scal &, 28$ aBLike!ol]pbacked Richar* 2? W_2his,Q nameRHe di'ny"1. K!but a givenIN!Bu.yiy like it-R 54D,Xa niggeroRsay--t Eyou  1irsn< S'pose we tacklj ) hill t'8side ofjrI'm agreea<got a crippled pickea shovel1setwir three-TtrampV*"hoCrpantingE]/7T downH2shaa neighbo!elq#- smoke. "ISthis, Tom. "So do I 2SayP$weCtreaF#re 1do 0your sha ZBI'll3pie5MU 3oda2day1Rgo toV&fSlong.0aQa gayrnbsn S sa"tod h AlivebM1!byy#OhP |any use. PapY CcomemFo thish-ybwQR2 daR\5as clawiIurry up,ZIjhe'd clea3out pretty quick.tn$buy a new drumua sure-'Whearts jum8ao hear[strike upoFyb"$#ed3dis <+Aa str a chunk. AtDE5Tomv -rxrbut we CAN'T b&. We spottv)AshadX2bo a doI$tF1the6re';"tthat?".wpAguesoyH Menough i1too5> or too earlAHuck 7ped .tat's it9Ahe. !'sDveryLLFaone upBcan'| 2thea1sidL$is` ',8C%Y#ofy%> ;2 a-fluttY&Zbafeel aP$'s!mNZ;'AfearTCturn)%uz'V front a-<Qa cha I been creeXAll o1ever since I DBI've=smuch soAHuck6y mN put in a de&# why bury. e, to lookGLordy!" "Yey3 7If !toRPpeople. A h1s b!toDintoQ'em, "L" "r2stiRMup, eitherjf2onet! 2.Akull !ay" DCTom!2wfu"it "is^U3a b,QSay, <lp~ d"trARs els?%,  $weY 5bconsid|/;dJ:The%. G  4s.c 're a dern sight worse'n  D lVN,lyocome slid rshroud,nUnoticApeep shoulder3f a:%!1griqir teet"Ra does. I Bn't qsuch a NPa--nobody 1Kt2but, dUtraveU 1 heu_! 1But <{#goCYthat fA norg 4v emostly M J#go5 Qa manaen mur, anyway | E"erODseen5 # except b--justLBblue'Rs sli& q window regular Gsl![Xflick5acan beu4h!cl~Qehind Irs to reason. Be1any2butAs us<pEDcomebP`f, so wl!us3our?7a<W$ df^#I it's tak@A y(qstartedffhy) TAmidd- oonlit valley bel[em stoodR""M&!, 4ly Ra, its S=s*ago, rank weeds she very doorstep chimney crQ)qto ruinq  -sashes vacant, a corneraroof c/!in1 boz*, half expectAo se. flit pas%Qindow n1ing 14 as befitte8 b:m y struck far of\Rthe rO Qe haua wide berth A*qway hom. r,Boods6 earward si_j Hill.4VI ABOUT noo$ 2 daNgG4tre=Ahad ffN"ir$Q. Tom impatien#go ;( Qwas mAablyc $alC%ly Lookyhere1 dowday it isbmentally ran%$V3eekhen quickly liftedG# a2led 3m--WI0once though,iE\un kKrR it pE conto m` a Fridap   can't be too careful8 A 'a'  1an scrape, :ing2Won a z MIGHT! Better say we WOULD!"'slucky days= $"ny BknowbP1YOUf2the:f 1it ;AHuckRn1said I was, did I? AndT all,.O_d a rotten bad3msdreampt1rat"No! Sure sign ofB F"ey{s'NotCgood% WL d*1ign  G,-2. A-_Udo is  by shark Zi Cdroph}5to-{ wplay. DuRobin Hg Who'sqWhy, he greatest m"evrEngland:the best. HGca robb Cracky, I wisht. Who did he robOnly sheriffs bbishop Crich2 RkingsR=9Q But naver bolloved 'em1divQ!upx 'em perfectly squa-h2'a'r Sa bri I 3youW[!Oh9qhe noblaaOT"R was.!men now, I can1youN R lick-can in ,a one he4iedD Ahim;NhEAtake!yew bow and plug a ten-cent piece"c, a mia3s a YEW bowIM /t7w, of cours.d if he hi| Bdime`Aedgepould set aand cr(2d cOB'll play!--nobby fun.AlearQF m% t\dfternoon, nowmy1casQ aa year=2eye#up qnd passs remark .1orr+prospect9Iibere. A5suna sink sey tookEway 5 aathwar| cshadowN6e,soon were buriAITsight8H(- Y On Saturday, shortlyV^  R bHnT4hadd&Ua chaCshaddEGir last hole*;]great hopeaGmere<oIqcases wz "pet#ad )(upafter getting down~qx inchep Y-O an some d1! aqand turZJt a single th{bshovel' Afail !isO a, howesDc+ BwentTfeeling jvshad notEds fortunehad fulfillep requirements <%of<71-hu(6. Rreach T 1{ so weirPv grislyBsile at reign^Rthe bAsun,{ bSdepre$Cbelines!dem"io he place[(3fra,# aHM Qventu7 ty creptD#do?!mbp_VT aw a weed-grown, floorless room, unplastx;aan anc CfireVs, a ruinous staircaser#er%ud hung E#nd abandoned cobwebsn#tl73ed,MC ened puls,s, ears ale\BcatcYDXRsoundAmuscAenseQready instant retreat. In a+Nfamiliarity modTReir f Qy gavm,Qtical#iYsted examinC, rather admi+[bown boƑ Qwonde"at it, too. Nexk1up-+isMqlike cu]!goqdaring ; =! abe but I&!--L,=Sto a 02and scent. Up\NBame 53qcay. InpJoC a@d mystery"qa fraud1 inCr courag4xwAH4n hM Lo go down and begin#1hen}BSh!" CTom. is it?" Huck, blanchingrG!..re!... HearDa "Yes:#y!(!run!" "Keep1! D you budge! 're coming p! tcr 1doo #stC./Rfloorto knot-hole!th bushy white whiskers; long hair flowed from u!hiRbrero dGe green gogglesec7'Cn, " Xa low voice; @#sa gr$Q, facAback{sthe wal12the=er continued ^ s. His mann\less guarF{0words more distincFLproceeded: Q, "I'!it oB 5andi,& dangerouDR!" grTthe "e dumb"A--to#svast su?boys. "Milksop+2his~ 2gasQquakeEwas O!'s +<!swag we'veAleftr--leave it( &'v !'B. No2!o i.f!wet south. SixfCmDfift5Qver'sDto carry%eWell--#r EKG m No--but I'd say(j2 us#doe9:Alook; it may5(" bTI,6!e  J!! ; accidentsi !B; 'tY$inu2ver9;i6f%l[+qh+qit deepDGood idea !thrRqwho walv Qcrossroom, knelt#, gv"qhearth-/atook o9A1bag Q jing?qleasantLe subtracW9Qrom i0nڼcthirty#Dcs for G"as+6for8e latter, #s <,(Q8owie-knifeUforgo<,bmiserig$an@. With gloaq ,A mov7q. Luck!f splendor of Qs bey%sll imag+!qETmoney/Ato mcalf a dozen rich! H sd1theaiest a !esrNDabother uncertainty as to w44to }2y nudged each ;--eloquent)r easilyRstood simply meant--"Oh,you glad NOW we'rbB!" mVTknife%Uupon . "Hello!" C he.?2sai4Calf-e"plank--no, it'sy!x,4Rlieve1--b`!w 2see<Kfor. Never mind, qbroke a3 [2hisWbin and i p3ManDU  rhandful8$ingold. Thejb abovebas excW cmselveY!as delighted.NwRquick4Bv$ban oldM24over amongst >#)5sid"a--I sa5#a 74agohaX|iaBoys'5andn X1the$b, look5ly, shookUA mut4 toM3  5use5Abox aoon un$edXA not *R larg!#wad2bou:Bbeen+dstrong5the slow>s+Qinjur c|5the" ain bliss3. "PardrthousanL Shere,p. "'Twas alwaysX Murrel's gangCQbe aruone summer,".stranger observ53; "vs looksPHI2 sa* sNow you $neRjob." Ʉfrowned. Se: "You# me. Leasx&k"lla A. 'T@ robbery alv\ REVENGE!"a wicked R flameBhis GR"I'llyour helpRBWhen finishednn Texas. Go homH<NT#anK3kidM1b %0$Sell--Bqsay so;ew  w dthis-- k Yes. [Ravishing overhead.] NO!- e great Sachem, no! [Prof[distress;1I'd---at least4 \Smean =but Tom, si%1nlyhad testifiSVery,mPDfortBAalond! Compan!be a palpCimpr5, h . CHAPTER XXVIId adventur4"ayily torme RTom's5s . Four times hE!s !atSFnd f6ait was:rhingnes5igers as  !hi wakeful4bEfAt bae hard realit'Fhis 1. AClay |AmornO(1ecaincidentsJND, he noticed%~dseemedL4ly Hand far away--someD ;3had#tworld, MfAlong " b3 :n i5him u itselfa$3onetrong argumentW Bavorj is idea--namely,sc quantDcoin2fAoo vkAreal Qhad nTseen !as in one massShe wa1all "ag"st in life,&Aimag= call re\Os7!s""  " were mere fanciful formCaspeech Zno such sumP qlly exiEpposed forf w"so= a sum as a 6z be found in actualy one's Ԁ" Ianotion treasurbeen analyze.yxy=Ansis 'a areal dgand a bushel of vague,id, ungras{`A. BR^K"en Ssharp!clearer (Vattri !inTAthem?h so he"`1himk1leae(impressi6q#no2a dream, a )isQsweptg:~ snatch a hurried breakfast!go2fin.ik e gunwalB a flatboat, listlessly dang+2t !ee3"atbs2ingamelancholy. TomC&2letslead up@1 su e did not do its1be 2q `o!xEGelloylf." Silence ab-om, if we'd 'a'Y 4lam' a"Vtree,0!go D. Oh$! 1fulF $,Somehow I most'x. Dog'd if I ." "What!K%Oh6ing ).U"en"QDream! Iymss hadn' down you8)1how  Q!xhf%Deams|2allpL#--()[tch-eyedZ 1sh l4 gom*!thR 'em--rot himm1No,_a. FIND! T /1Tom#llXhim. A fellerq ~3one Q for a pile-- a2's lost. I'd feel1ry shakysee him, anyw+qso'd I;2I'd,2 2z#'Aut--&s < 1--y95N'Bthat2&7/!ouAit. !dofreckonB"oQtoo d62Say--maybe inRs$'"Goody!... No, rRain'tfv5, is one-hort!wn3 y=#noq,@so. LemmkKS Here r room-- QavernQ know;Qtrick s3two?s. We cansout qui You stay hereU,zI come." DAoff c1caracHuck's~rbpublic#s"as G!an hour& EbestNo. 2 had# a young lawyutill so-. In the l&astentaa housek! 2#a 5 -keeper'sr2son  kept lock$)ll3tim82he 4sawq go int W!or}(A exct;Ymny particular reason> x1gs;Er Come ' BsityD8bfeeble98wVe6r by ent"Ding % ae ideaC"roG "ha'nted"e  r a  !re[) BwhatOYD'Kvery No. 2"$af&/Qit isE$. ?C youqQto doNE_(ngE2tell yous$do "at" icomes out J1los )ey e!a3?Qtrap Jbrick stor"`qet holdmdoor-keys1nip-of auntie'=,Bdark'"goS ry 'em. And mi,n, because he E#!to/|2tow 4spy 3)N#a "to 6youjyou just fGQ him;_Rif he 2 go >"1laca"LordyI !fovhim by myself+hsit'll b%", ov"He\Dn't B youRdid, b4he'A any' "ifU8n. 3o-- 1YouE<cBdark!. 3'a' out he coul f< #ber,&DOCs so{1; IP, by jingoesw"'re TALKING! Don'7|bweakenaI won' sI THAT#1TomQILy hung a e neighborhooo{nine, one watch52he PAat a ="K1thePdoor. NoF"orN Rit; n%aresembp2the 5ard=3te#Th promise]`fair one; sowent home`rat if adWAegre,Adark1cami AcomeT"maowupon he would slipthe keysE aclear,XmAclos2s(Tretiryan empty sugar hogs0welve. Tuesdac/&amE. Also Wedn/Thursday bbetter8"in$.sf0aunt's old tin lant 6 Qtoweldrlindfol 1ithh? <1 inp-'s began. A WB mid#v!upB2its1s ( !s 'd"s)!pu)*%02had Eseen+Dhad / }b. EverrV,3iou"Bblac5of SreignA peruQstill#waVbruptedby occasional/)#ofAt th<ggs1liti n~,=tl: Bowelx&wo2rs D A glokw>y.stood sentryrTom fel3wayZTjz  !of8ing anxiety$weighed iga(a mountainh$%sh?ra flashH$ C--it.f"en!buZO6ell- alive yet. I4s1Tomdisappeared. Surely"us Ded; &A was7`+!rtQaburst #D'Band ,G'1 In4auneasi L rdrawing-DrK a; fear rdreadful ] $/1ari1pecm0some catastroph 2Atake 1792not&to,]$heUable to inhale it(imbleful- TK$ar Athe beating. S1Tn"ofh%tEby him: "Run!"he; "runAyourt!" He needn',Q repe drit; onc ;#mairty or forty miles,RrepetCwas -3. Tj!tor  "J1sheʁerted sl#1er- e lower en/the villagxa By goin its shelter]Sstorm xrain poubwn. AsxJ] 0AHuckwas awful! I t3twob keys, aas sofI R; butsto make of racket=rdly get myRso scBT1bn't tuVck, either. Well,?!ou.Ticingkboing, I tookcthe kn!A ope@e !H&E@R! I h1in,!sh5fP, GREAT CAESAR'S GHOST What!--whatQ'seo1steFonto's hand!" "NoAYes!A#Ras ly s%asleep oARfloor4?Aold 5"ey his arms sprea[d1did Tdo? D0Bke u91 budged. Drunk, 2. IjUgrabbBAowel F+usIX'a' thoughS33tIx. My aunmby sick3alost iM A"Say,1box!diw@o_00.-}44 /8 .:ea bott|Sdtin cu 6 by(!; I saw two barrelslots moreUs S.u2now'!Fmatt'3at R roomTr!it mG o1ALLaTemperTYs have got aeC, hepd[3Who8u? But sAnow'Rightyt 1timg&ifqb's dru""Ithat! YouiQshuddIEno--"nom5And-B not3. O1  alongsidf, :u'< three, h  -&@oaTp*for reflectioZ+ S:38oky82les#tr 1 an#e}wwcR Joe'5'reQscaryhw eSnight# bp"su2 go  "orbwe'll Gbox quicker'n nJV<the wholBlongj%ido it 1too3you"<Ather4$"A= bill. A.v!to{"tr0Hooper Street a block EmaowWRthrow:bgravel=e0 3bfetch 1T"Agre01goo'Awhea*B"Now,  T's ov*bgo hom2gin" , %Qcoupl" +2"go61will youe!I TJ]t5#Ryear! Ev "damF&st2allIawooo[nǑ' hayloftZTlets nqso does pap's nigger man, Uncle JKA toteex  B wheahe wan`" t}JA any I ask him QzQves mGiBsomeBto eWhe can spare  !ik\r, becuzP'[" aL Bwas 3;him. SometimeQset rdeat WITH/1But  A body'sv!thwhen he' sr: 1n'tBas a steadyd-wXK,q"le.?A com hAS's up2'!, Cskip, @*."*IX THE firsR1earQ4QFridan glad piecnews --Judge ThG's familyL*7- before. Both 9o &Bsunksecondary import, and Beckyv the chiefCboy'="esSsaw h%tad an exhausi&1pla "hi-spy"c"gullyu!" $da crow2ir S-mate1day^scomplet[DRcrownsa peculi9satisfactory way:!ea[Aer mK to appointnext day foUlong-z1and\-delayed picnicfshe consentechild'>boundless;,Xore moderat.R invi*slAsent^s sunsettraightwayA AfolkLn4Ra fevapreparu(bpleasu6qanticip6's q enable90" ap dntil aQlate houh%%:vt!ofd1ingO4's s!an(ahaving to astonish1nickers with,2; b\3was$"oiNo signal c'vC. Mqcame, eBallyby ten or eleven o'cQ giddq rollic!c;/!ga  4_s -ro.UQustomelderly peop2 ma#;p$*!ce2ren@sed safe R unde9AwingAa feh"1dieeAe# gentlemeqtwenty-  sreabout1oldqm ferryboatQchart;t7! g<.flJ9r main sg Cladeprovision-baskets. Sid1andato mis/ fun; Mary remain!hovBtainT9nTMrs. 6 "tob, was:d7?oBback lIaPerhap H Astay   eRgirlslive neah"-lQ,c !y aSusy H,q, mamma+AVeryO. And mind !bey%yourself3bmR9T." P,"trQalong` 1: "Say-- 2you8 ntQ'Stead 3Joe2's *SclimbE!up AhillDstop` Widow Douglas'. She'll ice-cream! SsoJ"os Ai!--|+Aload8"it4sH#be t&!usg"Oh[ K/2un!?=nC%ed3But2illA say How'll shH6Rknow?^Q girl!edidea over a1r reluctantly(it's wrongK3--"shucks! Youg ! k REo!'sQharm?_sN1nts[!hao '"Bsafe4I b 1'a'" 6if IAwoulT splendid hos"itaa tempP 2baiand Tom's persuas02car+S q. So it>u Qay no? anybody?t 's programme. i1 itv(!rrJM)^7+''XAgiveZ ;took a deaV%s!ofAs. S"het&I"tolmfun atAnd why sh1he 5!it: h"qsoned--/c! W, so Ti2mor l^>o-night? T6QrA eveV 4out6theM1, boy-lik2 determined to yiel +5Aclin Tnot a{9t Qk of 0ox of money5  day. ThreeVbelow >EboatayAmouta woody hh& 1ied|3The* swarmed ashoreAorest distancescraggy hxs echoed farQshoutDand 95theØ1get!ho " Egone=y mry-and-barovers Sggledao camp31ifi th responsible appetitesVt destrucHJ" "L>2 feoC!reBFFing ( 2resbchat i2shaspreading oaks. BAsomef[ed: "Who' the cave?" Ever!wa5$. b of ca \Bproc   a general scamperhT+x0' hillside--an opshaped likO A. Its mass׎2ake&& !unbarred. WK small chamberM Aly a2ice" w0by Natur% solid limeston w 1a c& rweat. I1romJmysterious!t %erdeep gloom/look out upr!grKC'"sh--""un?1O6!ve!UDly wore offdQrompiDL2ganjIcment al]  Frush2ownit; a struggugallant~f1ed,62ursoon kn)/or blownlad clamop and a new chaseB3allQ havex(ndlrocession (!fiv(eep descenW4ain avenue,p!fl0qing ranGOVs dimly reveaYf!llqrock al5t1ir er of jun sixty feet overhead. Thisnot more than "en?Cwide?&nSstepsy%ill narr crevices bran@!from it on--for McDougal's`Rbut a%D7imepqraft.  blready.w's went gliW# p a wharfCAhear!noise on board(   C3as $usually are whornearly cto dea.AwondnQwhat 1de:Rstop w<<dropped her88'put his atten *rusiness`Bclou dark. Ten eKf vehicles ceased, sca) abegan ,#nk !ll 2foot-passengerkp |)1 be$itt)l <2lef| = qwatcher qthe silae ghosts. E  Swere /;/ Qevery$A$it1see weary long 2:b)u3},ed. His faith wasB4bing. Wvy use? "reA Whyk)C? AFfell~"ea;&l U instantQ Bdoord*^Tprangqx8$ Ti two men br,%onW- z Runder!rm0 ]Cbox! So sto remoE.Bcall Tom now?Ibe absurd--1en  get awayq #$anc7EDNo, c stick1!ire!foAthem<k5truP for security^discoverQcommuG3Rmself#*!ut Eglidg 2beh!e men, cat-like,qbare fe~!ll_E the8*5far&!noqbe invi  y |GP q blocks0n^ left upJ2ss-8y?"E,!qcame to% !pa}1Cardiff Hill;5Ctookfthe old Welshman's Whalf-m(hi-1hes!ng Qclimbward. Good, 5*VSdury itold quarryC) "stfa &-3on,b summixy plung.T7 1run 1ook whe pistols wekf#I Astop$t..Scome now becuz 7# 5it,7 ;I:lF3 I x1wan7runo}m devils88! i,2 deUph2hapAdo l?  Byou'aO1a--but +b's a bM!e2you:Ryou'v^Fyour=A. No"y U Adead--we are sorryC|#atCee wiqright w!toq#ou6 Rm, bydescription #weOaC = !we?RfteenTnAm--dis a cellard2was(sn I fouE sneeze. It wHmeanest kin16!lu " t3o keep it bp use --'twas bjt!it(#I iR lead/ 2my :3theR star-ose scoundr Q-rust*6! pbI sung"B'Fir!!'cblazedtt5he aqwas. So".  2offrjiffy, svillainwZ4N  a%oods. I B we eatouche|mydgAot a y4  bullets whizzed bdo us any harm. Ak!we9 the sou$Tw at chas2entS }!tio5_>ctablesgot a posse fH1offuV R bank&Cit i+qsheriffaa gangE bea8}"My}!.\XAsh wz"A sor2 ose rascals2H uadeal. But you cy  dRlike,euY2ladQpposetOh yes;JAown-(and follc AthemSplendid! Db2m--d BOne'B!olfdumb SpaniQben a*;once or twicQt'oth[sa mean-", VTP men! Happeng Dthem1R back2one 2andoQslunkR. OffAyou, 8ellfA--ge to-morrow Y Y"2depS!1. A__qe room   : "Oh, ptell ANYbod bR! Oh, eAG_ gByou -N%credit of w:1 di"Oh no, no! DVA!" )B men g  o said: "T2 7w Cwon'B2whyoia#n?  explain,!tothat he al Aknewn w"on3 Ahose!+4manUv 2anyHast him Juworld--c& for knowing it% ?d secrecy3morW1How&se fellowsA? We!ey Ding &usea!t #ramed a duly H rep -S lot,--leasyrsays soI5see)ragin it@ =much, on #!inx }3tryQstrik a new way of do7"ay u ' I,BleepQso I r  up-street 'bout midf a, a-tu~fg - AI go old shackly brick store by WP1, I3 Red upO%ll#2k.  %bcomes fQtwo c B"slf0%lose by me,+1unddreir arm'( V y'd stole1OneAa-sm3b one wah, !ri.s\ !me"igACt upBfaceIy og 1ig - eA, bywhite whiskerQ xT `ua rustyo a." "CmDrags ?Cis staggq5forA !n ?5Aknow Qhow i#msCIQTJy o52you<Fb'em--y eiO&to| awas up8y sneakedsso. I do$!'4+1iddDstilG& $ d:# JgVe begK%heX swear he'd sp;rr looks'as}2two  What! The DEAF AND DUMB ma8ia4at!!'aderrible mistake! H63his.jC Ru>sthe fai+i2 whNK smight bQ1yetdtongue/0@$to in spitball heFr do. He several efforts to creep!of1scrape, R's ey 1mh["bl5 9. P  ,be afrai!me 6 hurt a hair o qr head v3=I'd protec !. 1 is ;#leAslipout intend+ D. up now. YGEthat4 K q. Now tAme-- m S it i"3 -- a betra Alookit!ho51eye Qomenton bent over 9ear: "'Tab--it'sO'1 Joz ) gjumped chair. InWQ 1ll ,pe 4you{m#2ing#and slitting noses2wasown embellish 3men3tak1sorYrrevenge\"an #! a different matt242q." Dur7B&:alk! c Y 1 sades (h2hishad done,_ C#!d,^a7eqexamine,its vicinity AmarkP Qblood11y fnvut captured a bulky bundle of)Of WHAT?" IfqBwordBbeenn 3hey leaped withcqre stun0O!5AblanBlips]!-were star1ide3Qreath$ended--wao! )tarted--st?+in return--1QRgs--fiv1ten%!end i<f burglar's toolsY4,G' bMATTER sank back, pan5deeply, unaEably !eyt/m gravely, cur!V--and= NYes,appears to relieveB Butcdid gi# 3urn9!YOU expecBwe'd2?" a \H a inqui *Q havenfor material$ aa plau4#-- suggesteR?elf|!boadeeper --a senseless1y o~dK^/!noq+ to weighiokventure he c it--feebly: "-+T books, maybe." Poortoo distress!sma Cqed loudfjoyouseb detai$.Ratomy1hea Bfoot%b by sahat such armoney in a- pocket, q it cutoctor's bill likM Aadde!olG!p,y2re Z !a5Byou awell a bit--no wo8aqf #of8 Z'.*!ouit. Rest6Rsleep6Afetc2all_#brritat<6 heaBgoos!ed{! a)!icM!esf"aroppednBideaarcel b%.K%2Avern]9. c talk 3XW ahad on%rought i3"nod however "ha"kn/ bwasn't!sot%a qoo much:Helf-w!Bu![ 4'2gla@. Shad hnt!no4 beyond all qusnot THE,Oo mind was at rkexceedingly comfortaban factC Q drifbjust iD dir_`Anow;WA musw ;) in No. 2 zy!ilybat dayhATom a seizeo3golS \1out !or fear of interruption. Ju# pYea knoc9#l ` 0 hiding-"noX connecte!n remotely1lat admittedtRladiev gentlemen, amo*Widow Dougla Tnoticngroups of citizeny bclimbi2the hill--to 7 S\Qnews xBprea h(h the stor$Z'he visitor#gratitude"erbrvatiooutspoken. "Don't}a# it, madaGre's]z"'r beholdeQthan -Tre todmy boyc#he ballow Atellsname. WAn't ] v2butim." Of $&uriosity so va|"be1d tV#in )twa to eaAvita'mm be trans }Dtownb refus"BpartjCcretorall els> qlearnedO  I "to% rJ9"ypV8a noise L#Rake m:rWe judg0j2worMgQle. T"dlikely! !--Shadn'CoolsBao work pAhe u1 waGbyou up4carDR? My BnegrAstood guard sr houseeLmk By've`ack." More!C cam"beD,aand re G couple of hours more.G tSabbath d 1vacecQ1 waVly at churchQ stir1Beven` canvassed. NewV#n Dsign5two! 5yetA#edthe sermfinished, Judge ThDu's wife alongsidRMrs. mZQ as sI6ved1 Qaisle;-BcrowqIs my Becky>all day? I !edhB tirQdeathBYourS(RYes,"a;!tlp Sok--"T"sa2youIQnightEE/!noa kced palh$sabba pew,as Aunt Polly, ing brisklwa5pG by.64qGood-mo), A 'got a boy up missing.o1 myD!st Qlast !#--7you. AndY $'snvtto sett'q  "he H andar than7d. "HeB$us(`b, begi !to uneasy. A marked anxietCc's face. "JoeVSK?Y1No'b"1didqsee hima?" Jo="wa!su7 "ayWQpeopl amoving %ofWs}3aloD a boding Aines&k 1 ofzy counten\'of!if  .!On!ngfinally blurt2his  !we4ill Zcave! swooned awa f#Ao crrringing'Bands alarm swept/lip to lip,Agrou 2to ithin five minutesCbell fwildlyN6he "upF/EJ insignificanD<xforgotten, horsesaddled, skiff4man !!rd#ou1bef{nDrror was half an old, two h)dbcere po6aighroaA riv gC. A Blong091nooge seemed emptydead. Many women (ed9#anPa'q They cC)2too"wa/"l N;z#. tedious022ews/>wA dawqt last,   was, "Send candlesrsend food."4wasqcrazed;L{, also. sent messages! p encouragVtWaonveyereal cheT3 ]3h4'BdaylpQspattRwith -grease, smeTBclay Bworn7#HeJHuck#behad been provid%3 hi"Adelic feveruhysiciano4allrcave, s  ook chargg "ient. She ! s B herb4,'ahe was@Q, bad;7%in,fBr Lord'sKu !R"a \neglectez"aik good spotvQ-`"You can depen(>2at'xAmarkdon't lea9Doff. He n3does. Puts"2ome)0$on"re\Ccome(Bhis TA" E AforeRparti3jad Q ctraggl< bGllag strongeswEthe qcontinuxAarch gBnewsbe gaineBness]7edhansack71vis;Y S cornAZ ,o#ly#edCver one wan4z"pax!, [wcseen fE hit Bdist@qhouting0-shots sentr9:)1berrthe earthe sombr Qs. In&ar1sec21usu. rtravers/rtouristI7s "BECKY & TOM"DbtracedbRL=2cky'#Csmok near at h =1-so!biqribbon.   recogniz'e%>4hover ii7crh. !ofiAno omemorial )@be so precious Q this parted latestqliving h*RawfulpV! c.3SomzAw ann/a far-away speck ofzWglimm*&rn a gloKDshou)~fAscor'men go tro:1dow echoingz1aa sick; Vointment always f!e  a 0 donly a2r'st ree dreadD2^ 2s d#0 ]% jt # a hopeless stupor. N 0_;accidentaly, just made,groprietorS ++Tiquor)premises,qcely fl3  public pulse, tremendou)1the 2 wa5qa lucid%Rrval,lasubjecta asked--dimly 7" worst-- W.! Thd sinceaEill.p.h "stSup inr#bild-ey1vWhat? W)$Lm;lace has shut up. Lie dV! a&&+!me!" "Only02 meQing--&one--please! Was it Tom Sawyer TT burse>"Hush, h !Byou 5 must NOT talky'Bare very sick!zAn no5 bu1rF t powwow if i the gold. Sctreasu2gon Ugone MmJ$e bout? CuM +@TR.2houoD1dimu/7$3min^uF the wearrhey gavhh(|?&. o herself: "TNJh/poor wreck. find it! Pitysomebody !KR! Ah,j!PDAleftIThope ^5or strength either, to go on| E CHAPTER XXXI NOW to%1 toZ's shareapicnic*By trNathe murkyqSVr ompany, visit familiar !eI$--adubbedw rather over7ptive nam uch as "The Drawing-Room,"Cathedral," "Aladdin's Palace,"\so on+hide-and-seek fro^u b AengaBn itzeal until!exertionDrow a trifle Asomen6 a sinuous avenue hol+-/kf #tangled web-work of Idates, post-office addrU rmottoes~) g walls rescoed (in ). Still Uand talk:CscarcelyM3nowXK"ar!H! w+tq. They b2ownPK!anphHA she[.ed,yD   2 a am of watrickling over a ledgkQcarry k sedimenVuit, had Qslow-y 81gesm3= and ruffled Niagara in gleam5nd imperishabAone.%squeezed his smallP h in order to illuminate i q's gratAtion rit curta,]jnatural stairwaywas encloZ etween na9ce the ambi Ya r"bd him. respondehis call,1hey_ " aM-mark for future guid oqir quesAey wD, "waBthatXAinto depths ofL  2Bmark|g$ed?( of novelties to @!the upper worl. 3oneQa spa s", L1cei3muld"Rof sh[stalactit" land circuml.c7 [' H) 1kedG" OQadmir_ +1lef~bnumerous Aopen?0#toi artly bm Qbewit2 sp}Rbasint(dncrustsa frosta glitt crystals Amidsa| supported by rfantastic pillarsR# ?Q8"joof great katalagmCtogehe resul1eas  Q-dripqenturies. UnIZaof vast(ts of batfp themselvwaousand#qa bunch(s+3urb flockings 4 byrs, sque"and darting f  FCkneww4the danger%isqconduct'#'snd hurried herthe first kDffern qoo soon)Q a ba#Duck gGmits wing ,ugitives plungnevery newr#ag!atRb got r5the perilous 7 ubterranean lake,,a stret?its dim 3way !it@ p!lo2shaQrHe wantLexplore its b;,0t conclur!habe best to sit#Ast a9TR. NowO1timbe deepA lai&Rlammygb spiri@*Why, I didn't ,it seems1so M gaI hearY!ot+:m bthink,#, 9Hqdown beLhem--and:!n'=Qw howK/north, or sou AeastQwhichit is. W8Dn't >bm0Cweek9!ye"qwas plaT"at cf 2 beAthei8 3dleAnot cyet. Aqime aft"isZ< P CR--Tom qgo softlo for dripp`BaterZ3 aMf satR Bothcruelly tired, ye CssMfuld go 73 .Tom dissenD F2not>!st8D !ey'2 fae-bin froPBthemTrclay. Toon busy;G'1aid* 7Atimeh^broke the:AI am DAungr5J!me!!of . "Do you remembP"?"4he.Zbalmost1d|'s our wedding-cakeMSYes--!asTQas a 6li"goaI saveA&"us to dream onyF1way$n-up people do'll be ourSS"pp<Q sentP6  Bdivi#Re cakw 3 atT2appetite,Tom nibbled a:amoietys abunda"co"RfinisfQ with. By-and-byGtey move on 'yilent a mom"qThen he:z1can/ rit if In1you k#?"8'4pal}`.Qnw 1stamB!er Bre's ink. Thatw " iClast6 ! gave loos)S&il#diA{to comfor$ `$AtU!C"?")y'll miss uKChunt4rwill! Cl"!ithey're hun Ror us,laDare.Bhen $S"Whby get o the boatHM#itbe dark then--enotice w/1n'tnbIaanywayNr mother8you"bthey got q." A fBened "inT"brfSSsenseRe sawh made a blunderw% _hs2hat08! Tebecame$ndO uful. In a new burst of grief21 sh  ^ g"ingQstruc@s also--QCR:half spent before Mrs. Thatcher discov M""at/Harper's. 2 GR !biqno doub2:)Bwas a !on/M $on1it; }!%esso hideouswbat he 2$itG!waa5ger1torX,K [/s A portio0h z was left;Q Band ,.~dhungriD poor morsel of food whetted desir c : "SH! DiuAthat 2othyV " aq like the faintest, far-off. InstantlAanswYul|/d M)Uhand,@"*gr7 corridorG0s4. P  s(R ;.BV%Rappar a BnearU DthemdTom; "coming! Come"-- b now!"54joy,rprisone overwhelmFT2spe[ %moTswarmingfrantic half-clad pT, whowA, "T2Vut! t F " Tin panChorn 6addAdin,#Qpopul massed g}*!to ver, met=in an open carriage%"byaitizendrongedA it, joined itsWRmarchswept magnific? Q main et roaring huzzah* !was illuminated;~Pb;ar3est(t!tt w0Cever_ 2Dur%re firsthour a processars fil rough Judge-'s house,f<n"sa+,ejsqueezedt'", to speak butn't--and dr out rainiY"rs veK& c1ppi% romplete nearly so5[ a messe AdispSdkH#2cav2!ldv"!orL 1usbNTom lay 0aa sofaXWasuditory71him=1tol~A his!ofwonderful adjB, puR+"inAstri1add adorn it1"al JCudescriptOahow he %tent on Bexpel;7'Btwo Fs!as0* ARa thi^aullest4tchM3wasT"to he glimpsed aD speh6Clook*A day ;"2lin Oit, pushedshouldersa small hol1sawbroad Mississippi ro by! And if it5 F0Rappen#beVhU@ !se* 2at %oft/d[ %4rore! Hec7for/I%j @ @"imoAo fr.r$such stuff, $  &# w Sto diR~?ɆU laboher and convincg %"hoe@Q died1joy A she  actually>lueG he >1wayI& !anbn help2 ou?gAat t]for gladness+some men a8Qskiff cTom haI!em G33con rddidn'tE=qild talfirst, "#,"Dahey, "Q"$re]2les> bhWavalley cave is in" n m aboard, rowFa""gam supperqGthem rest G 1two4hreDdarkn.Fhome. B!day-dawn,=q handfu% Ahim Rtrackg,5R+twine clewyctrung +sformed A. T+# }BtoiluPi~Rbe sh3'ffA9s#Foon " y bedriddenFf}5and~to grow mo7 QBwornP ><2got,MV, on e"wa- {a"as  `"di8her room1Sun34she$ash1hadT'edk1wasaillnes#$omi of Huck's sickm Rto seoAbut be admitDthe bedroom; neit5- Uhe onB or H-x-bwas wam8; s introduce no exciQtopicL Widow Douglas staye1thaKaobeyed/Ahome? the Cardiff Hill event; alsoDthe "ragged man's" bod-%  ;6 erry-landing2had7Adrow&\trying to , perhaps. About a fortiVrescu E, he a visit:yi#plGrong enough!toc2Tom'Aintel:.., A waswm,t " ome friend4Tom$2ing>2oneW him ironicsqn't lik%!goHRy10he thoughqRn't mqO said: "Well,1others jusuQyou, )3I'v| ast doubt.)Ave t3caraat. NoAwill !atA anyH*)*Because Iits big do $atb boiler ironP weeks agoriple-lockedO"goTbkeys."tjite as a sheet.1at' matter, boy! H,Arun,qbody! F=aa glasL1!" "* gba!!thJface. "Aqall right. W1a M#Oh,'[cave!vXIII WITHIN a fewj2new1spr.%b dozen b-loads3nq @!to McDougal'sE1boatll fill#pak"s,5 CSawy[deDD bor4. -bbwas un4,%rrrowfulFeCelf sqdim twi xD lay^1ed )@,)"hiQ closrthe cra} "thif his longing f+dfixed,>clatest,,s cheer CfreeQcoutsidwas touchedd v-tick--a dessertspoonVZ2fou&J3was fallingsPyramids' Bnew;Troy fell#this of Rome7Claid(bChristtrucifiethe Conqueror creat British empireJolumbus sailEqmassacrqLexingtons"news." K2now3ill=4be #whBthesy3gU"ll\Bsunk2then| 3of ,w "raCw;} ]c thickof oblivion. Hoa purpos Aa mi=? Did thisR pati$d!fi ousand yearsready forD2flihuman insect's need?has it another important object to accomplish  xcome? No .Band 2hap alf-bree1out ^>Qprice8drops, bu3a(e !t patheticslow-droppVBater@!hey8e1seeb!< .b's cupC6Ts firde list2bcavernmnQvels; 4b" cannot rival i 4xKn,VB BcaveI flocked in boatsfwagons|3towAfromthe farm1 hamletsseven miles|I >1ugh%irYSrall sorAprov~NsUO/3hadN! as satisfactory a%. funeral y"av&1 ha Y%is5Ir*Bgrow[#oni#agovernIrcpardon5k qlargelyT2ed;Qqtearfuleloquent meet<$he#a committeJCsappt!apBo inrRF%1ingjSwail timplore*be a mercis trample $ut| Gfoot/h0"tokfive citizenwt&+idat? If. ASataC Cselfe$/!ofl)SlingsRto scribblir names-a tear on itLir permans impair Rleaky{Q-work"2TomAvHuck to& gave anRtalk.3!haw1rneQ aboum'the Welshmant, !is}Yq>s!? old him; R  5he TS talk2now's face saddenedw bI knowJit is. You got5QNo. 233 anbut whiskeytold me itAyou;aI justp must 'a' ben ]usoon as\'fA bus|"em8q hadn'tt)ney becuzdl!go!me ! w Dand aif you!musdB els's alwaysG4we';uget holT swag, Huck, I-It-keeper. YOUF -" I"DD.mI D1youHAto w   yes! Why, it seems!ag#8> CI folleredK-YOU foll1him2Yes]2youqcmum. ISS"'s;Q2himI don't want 'em soV Bon m me mean 6s. If itpben for me he'5V ain Tex@&w,.ns entire+%in-5Aonly* Ofit before.lp:,'!ba@ main question, "whoever nipp "in(, --anyways it's a g.afor us;G wasn't n!;Bat!"Lphis comradekeenly. "Tom,agot onO twQagainti1 cave!" cblazed. "SayM FgainT*"Tom--hone 1junf--is it funV!strEarnest;!--^$as# f ! ILlife. WiF#go"reAhelpZRit ounsI bet IxE2 ifwCRe can5 ouV  6"doDwith dlittleBatroubl the worl?aGood aat! What makesRthinkoney's--2you;rtill wef!re#we1mit I'll aSto giVqmy drum71&Cq I will0jxGT" "A!--va whiz. [!do1say "Ri$w,say it. Are*4IWaPave? I ben o-cpins a,"oradays, tbut I caKlk more'n a "--IAI$.">q G$qanybodyRm 1go,1^Qmight,Drt cK]  N ; ,Gri.bskiff.&2flo] ["re I'll pull itj_by myself A neeturn yourq$Q over2Lw2artA offm@B. We"bT32eatour pipes bag or two T%kite-stru ese new-fp!thA ycall lucifer m+rs. I te, "'s1imetbshed I2omeD" Aqaafter the boys borU&) #a W B whoU Cbsen(got undec^were sev` below "Cave H%," R: "NNis bluff herJ$s!Balik d5--no houses, no wood-yards, busheRO"ee5whi4 Rup yok#'s4 landslide? Aat'sof my marks. We' aashore.yG97inU're a-sta#8'6ahole I bout of~Qa fispole. See#4can.Biplace abou$P proudly mar"a clump of sumachncc: "Heare! Look at i;athe snuggesDis country9 "ll2Drwanting/ a robberrknew I'rto have1ng 3thi1o run acros]vAther!ve1it :&2'llit quiet,1let< K:aBen RoU1Cin--*$ o@ be a GangC #lsj* any styl it. Tom Sawyer'sA:1sou$plendid,L?  "it3doe And who'c1rob/aOh, mo6. Waylay people--W$!lyV2wayRnd ki "No-@Q. Hivm# t4y26a ransomUeWhat'sCMoneg3makR<y can, off'$ir{ b; and you've kep.mqit ain'2!seV2. T!enkway. Onlyb women1shu`9 2men5Cm. T5Fb beautqnd rich awfully scaredgt"irI!es5sZStake t|+"nd4pol7y!3 as3 ass --you'llMany book. cto lovXfter they,m s a week y stop cr!eRto le'i4dro Ay'd  { Raroun2com9. It's so insy real bully' $ Ibdbetter'n a piratQC"YesF&^7way Cit's6"!toQQccircus\!at{@y+ %1andaboys ew)#ho\  $ l0Qy toi#*a7tunnel, then madir spliced 1 fadK$a on. A&E z'%pr)Tom felt ams quiver him. HeQCragm> -wick pexSon a oC cla$De wa; t2ox*_ d flame struggl)AexpiQTf!ga4 o whispers,!foS-d gloommcoppresBirit yYBpres:ar 0LQuntilE reaAG,Wndles%rhe factx not really a, BpiceLa steep DhillFirty feet highW @eW+2Now@ AshowY.  Ae he+sa aloft+` sNAorne7ban. Doi!ee? There--0big rock over$ S--donKp}3TomCqa CROSS2NOWZ '{ r Number Two? 'UNDER THE2,' hey?  2's eI saw &# p`+r stared Qe mys Qign afB 6R shaky voice:qless gi} " o QWhat!>treasureVRYes--6it.'s ghost is  ere, certain."B 81, nKB. It Q ha'nk8Qhe di,Away /%2mou!Vave--z ChereS \wouldy#ngkJ 4"ofV #so & &omi3feaX5. Misgivm!ga+d}CR mind 7Lc him--)ym$Sfools m@of ourselves! & a 8|; Z!a = !R poin`#wen1had)teffect.I6_"atA #so/EluckxQthat {7 isJ VpS AhuntG4box5wen77c -ink of fetc4theBbagsFS@B1soog oys tookr1 tofm a rock. qw less w!#gue*<,Q2<  `3'reOEickswhen we go to robbingNSe tim hold our orgieCsre, too ful snug9 ) 0CW@ bI dono P%;#ofT% wWCto hem,] /"ing!a Btime getting late, chungry`We'll eat0bUwe gec6y Temerg4/ 0ed warily f 5oast clear!weZbon lun$in ! Ac sun d#Bowar[Rhoriz] Ay pun  kimmed uDe@KR2wil1chai 91ilyZ7 alandedI3tlyd4dar7c"!id!in 1lof the widow's woodshedrAI'll.3 up*ev1 it(Upa?!unna!ou"od!.#it"it=be safe. Jus 3lay\-  Atuff1 I nd hook Benny Taylor'swagon; Iqbe gone!"nuHe disappear#re agon, putcBtwo Rsacks!"itA"w"ld,Qon to!tarted off, dragging7rgo'|h+"'sh &tgay9q fy1 on: Pp~ allo, whop  nLWGood!1me,, !ar&Gpingy*waiting. Hhurry up, trot ahead--Ahaul~Vyou. qnot as b as it4# be. Got b;in it?--orQmetalO+4tal2Tomjudged so9 1boyGthis townAtake0$%sol away1imeNing up six bits' woraold irNS sellh foundry thaz3y w; 8wic'$at6 work. But that's:4Fnatux ",  '!"!wa1to [$Ch#wa$ever mind; !n&% !E'1uckGRf=hension--for heub} falsely accus; r. Jones, we haven't!Udoing Rlaugh!'-,ymy boy.i that. Ain'bgDgood+%Ye_"sh"nA &B to #yw%"n.-(n,%to be afraid for?%is+J3not+qly answ"!inq's slow$ ~1S,;into Mrs.# dXeroom. 3 le nae doorz3gwas grandlyn1bod4tof any consequenceu2&~ ThatchersQkB Har3the!es, Aunt Polly, Sid, Mac he minister3beditor-qa great0&)?all dressX bAThe a recei;<RBartiJdany onP#we!iv such loP Dare cov Bwith:and. 2 bl[ rcrimson rhumiliaUNHv u at TomFAsuffhalf as muchQboys "however. Mr. Bn't at home, yet, so I gave him up;5$astumbl2anda Qat myG"br "Bin a(0!An1B did3Sv 1. "TyNr." She cto a bedchanRNow washI% y. Here arnew suit$ clothes --shirts, socks, .UCy're+A--nobthanks*&--b! And IY%Bz y'll fit boyou. Get Dthem await--Bdown 1youRslick .3n s \rV HUCKD! "we can slope, ifu'Ra rop" high fro"Shucks!D d|%IQrthat kiUfa crowd.,^(8 athere,a"|&4! I"an!miRA a bX'Scare Q" Silm .vhe, "auntie has been  afternoon. Mary(your Sundayb readyU 7aen fre  . baAthisus qclay, o;ra)Mr. Siddy jist 'tend toT own busiO#'sis blow-nb`It's one2#atx1havtime it'sF 1andl sons, on=uw"Vcrape they helpej9&of4'Rsay--h, 21, i yk+wK  Fold 2is to try toq#_ J( C1to-,overheard himvbto-dayvas a secre"B it' lRof a (XE RknowsSL##1allf!trro let oz!doVQwas bqHuck sh !be!--xn't geta yG1outAknowS"AwhatA'zAtracYAbbero'V  a  BovercurprisQ#AI be4 drop pretty flatWbchuckl aa verygEe aatisfiZy. "Sid, ib2tol3Oh,:Qwho i# . SOMEBODY told--3 @ZJl_ Dpers:Cmean:R to d XI7<x !you'd 'a' sne sn9EtoldZ)0)Tdo an{21an !y&~mo_Tp(+J >  cones. X$nn:N  says"--Dcuffed Sid's {i  0k8q"Now go"if2arenQto-moFit!" Som Autes'GSguest a WD-tab[$ua dozen@/"pr!upittle side;F1e sixQoom, {t1at r vAbproperl Amadev4 speech, iY!!heOkNHB honPQF [T was Dwhose modesty-- A: fo)sHe spru+{a'Er adventu finest dramatic mann_ master ofDthe B it !onJs largelyFerfe8 as clamorousNeffusivechappier K+amstanc  &, ( air show of astonishment,AheapF compliment2 so: ntude upon)(a he al/Rforgoanearlyv l܎K!Amfor%this new2 K :k set up as a targeh  \gaze laudations <"sh<2giv s a homesher rooave him educated;Rcs-Fuld spar2 sAtartFi  \'s chancrcome. H#F32uck"2 ne's rich." Noa heavy strain2the9 tmpany kept baBe du E:2aryis pleasant jos5DsilearawkwardObroke it@(AMayb. cbut he0!lo it. Oh, you%n't smile--  1eY;&a 'tTom ran Bdoor1looked at eacha perplexbterestuinquiringly a_ Ttongue-ti* #ls Tom?"P. "He--well - any making at boy out. I(<4Tom}/,q#Dggli{Eeigh,2 di"afinishsentenceCpourU1masyellow coQ the C^Cqwhat dih ? Half of FRmine! spectacl1 general{way. All gazed, nwpoke for a momentn a unanimous :.n explan  #1fur5i nd he did^B tal!bumful of _,ca scarc!n rruptiony!tok the char/its flow|che had"edAJoneM)d: I,x^Jf#%isP2it BamoupC nowone makeFBsingy), I'm wilbto allhT3was[3sumt"edRG over twelve thousand dollarsr-!as+ 7 [Qaresentever seenl`e time before, "  Q N"ho1 worth consido7av,tyaV THEer may rest Aaj's windfall33$a j4tirDpoor(vof St. o. So vast a sum, in actual cash, seemed nexincrediblejqtalked , gloated0rified, until thOs' mTJdtotter&2*'e unhealthy excite "haunted" housq 2 anneighboring villzwas dissected, plank by U3oun1 duand ransafor hidden treasu Qnot b=st men--0 grave, unromantic menWmH1Tom >Q cour2adm(gz1qnot abl|arememb~2at 4bremarkLqpossessJ&};3now1say0Twere dBrepe 4didvrsomehow regardedv8Aableyidently lo{5power of doV'2nd r common !s;5#ovir past historr!up X v2ar " of conspicuous originalityto paper published biographical sketcheNt.1 # p>#'s !ousix per cent.dJudge " lt's request. Each lad had an incBnow, was simply prodigious--a9D-dayC8Ayear7?2jus  got --no, hpromised--MrcollectD Ha quarter a7 board, lodgd school a <^1ose  be daysF 2 hiBwashbrmatter.  ,@RopiniR 8no 3boy!goz daughtPAcavepqn Beckyd@ 1fatzwin strictCw!ceA TomAtake&a whippt6  dy2isiFv  Cplea,!ceK4thei3lie-w!olorder to shi*&at!hemo8own3saiTaq outburh$atyBa nod !ou<,5magz lie--a litaworthyzaold up-2hea-Rmarch1]breast to George WaBton's lauded TruthU"ratchet!mQ 7ghtzU bso talSso superb wR walk4 fl qstamped\AfootdVv!2Shec:straight of1tol#/it"op& 1seexqlawyer  soldier some day0look to i"T#!AdmitkY National Military AcademRafter(Qraine!es  9[Amigh9'Ieither care both. Finn's w0 qsthe fac#now undeQ_ Douglas' protec introduced him)"society--no2' it, hurluis suffer%1mornj1R bear?servants1cle 1d naHQcombeC1 br hCbeddly in unsympathet3ets2ad 3e[ spot or stx~uld pres/2earQknow yK$!haE#eaba knifufork; h%use napkin, cupXplate&QlearndWbook,@go to church2stalk so "lyaspeechT become insipid in hisX; whithersoXees"edC2bar ashackl civiliz;B shuiQbound1han foot. He bravely b4is miser|1ree!thTLSe day up missFor forty-e\Qhours^g! hO j2himw2in Qdistress. The cS profoundoncerned;~7u E %eyF- @1forqbody. EThird V)r wiselyPp*$Qamong old empty hogsheads down*]AbandU#sl-T p'inQm he $rrefugeeL had slepor breakfastoB stolen odd61end Bfoodbwas ly<f in comfort969"ipwas unkempt, unM1cla old ruin of +,had madepicturesqueRays ws01frea happy[S routvBout,"his"*been causing,s 3urg=Qto go gr's face its tranquilv took a melancholy cas63RDon't X CI'vey #itwT work6"T;"#"it:~U 2to :)d("ly_&7#them waysA!mex!up% / Bsameq 7+9Awashy comb mLo thunder0w&let me sleepJ/a; I go61wea[m blamed cloth!atA smo?" m#'dg1seeany air git A'em,Show; !y'1 rotten ni,a=!et, nor lay^ croll a@nywher's; I hai"liD cellar-doErit 'pea b A  and swea q--I hatm!m Cy sermons!Aketc xK,[chaw.Qshoes$w eats by a bell1goeybed by fits up!--VK's so awful reg'lar)dy!it_(,>#dvhat way, Huck(&qmake no differI`Qybodyq STAND &3t's1 ti so. And grub como easy--I# t{!esvittles,}3askAa-fi 1; I  in a-swimming--dern'd if{AQ1do 6t". H!I'42 to"sodn't no(#--. OuRattic"ipRSwhileA daym1git!st"my , or I'd a died, TomnKBAmokeu y?5Bgapeqstretch Q scra before folks--" [The+a spasm ofsial irrit and injury]--"And dad fq"itaprayedNDime!A see, a woman! I HAD1ove2--I yUbesidHZ5's $Copen_<S$it%I G!st"QHAT, QLooky%,0S rich@what it's crack); Bworr  9 2a-wwas dead <2. N7%seBsuitis bar'l %shake 'emmc>B got into%isAif in't 'a' ben Kmoney; ntake my sh@&Syour'gimme a ten-centtimes--not manyX#s,K_# Ra derR2'th's tollable hyx4you$qbeg offSQidderv"OhK3d6%Rt. 'TBfair if you'll try^;B!a UQ longI*e $tok<Like it! Yes--bay I'd&a hot stovAI was(!itcLC. No7Brichi4liv m cussed y_Bs. I6oodv  Rf  I'll stictoo. BlamBall!QSas we3gun_1a c*"ll+AfixeEArob,p&olishness has  k"up5pil~x1sawx opportuni%"CDhereHECUevYnturning 'qNo! Oh, -licks; ara!qin real3-wood earnest)J+CbR'm siV-?5But<l)#qgang ifarespec5R's jo3h!!C"inq Didn't[!go~a piraterYes, bu%'sRt. A 7 zfAgh-ti7"a NQ is--rgeneral~A. InTr!ri 6  Qup inQnobilRdukes03uchw,! aS2lwme? YouhC  A youP *nVWOULD+B" "wR%,tI DON'TR--but(vpeople say? Why 'd say, 'Mph! V#!  low characters in it!' TCU+ {h+`$t*#so , engaged%Tental"#e. Finally h# Rll go}aba monttC!nd1if  `3it,49XRme b't>%Q gang e_b, it'sQz! Coxo8X`2and G>Toh# a[oEWill/!--yg2? Tggood. If sheUt"ofroughestK"s,@qprivate-Dcussdcrowd ror bust] Astar/4NCturn$s? 3right offBB@Atogem"avQiniti  0Qmaybe(H(Lj;+W6t$12Bto sn9Cone [+ O#te rgang's 8+sd nNre choppl o flinder qkill an 2 anV his famiWhurtsX%ay9/e3y g8,!_3E bet it is3 "at1ing Abe dt midnightthe lonesom|3est@ you can find--a ha'nted " ib:-Bll rNB3up M#yw{(socyou've3 on a coffi 1sigh with bloodOt)Bsome RLIKE!frmillion )X!ieh n 8 s QidderAR I ro 8#gi% acr of aRLbody tal('-&itD bu+!sn!,wet." CONCLUSION SO endeth schronicP$G strictly a}!BOY, it kAstop ;Sstoryz!nofEmuch)p"wi becoming ^3MANone writes a!! a Sgrown*Q, he O4A exarto stopOB is,a marriage) iof juveniles, he W can. Mosgyrperform still liveare prospc2Som.it may seem ZQke upzyounger ones agaiM9 1sor"meAwomey turned@krRit wiwRwisesyOto reveaH&Rat pacQtheirDs at'4. Pby David Widge]previous ediwas updat2Jose Menendez'>  THE ADVENTURES OF TOM SAWYER0 /BY# MARK TWAIN' (Samuel Langhorne Clemens)P R E F A C E MOSTW%e 1s recordw areally occurred;nr two were experienc6 myb!rObose of"wh7 ]#3mat7$inY Finn is drawn from life; Q also$an individual$is a combi,Ybistics #re_whom I knewSabelong t.Sosite of architecture. The oddK!!stzqs touch}"onDall prevalentchildren!bslaves5e Wpwe period1is ay, thirty osAty y ago. Although my book iaGended mainly@ Athe qtainmen1boy7 girls, I!7#ill not be shunni "7$at;d, for vmy plan<"tooo0ly remind adul0 they onceathemselve^ 1of (rhey fel aalked,}Rqueer89s=Gimes 4. z!dUTHOR. HARTFORD, 1876TT O M S A W Y E RI "TOM!" No answ& g4iat boy, I wonder? You Rld lady pul'"!eratacles|$!ov #emcthe ro0rn she pm:&ut"m/seldom or +rTHROUGHhrfor so WJj!asyIher state pairA3 pr8V2her",Qbuilt3"style," not service--4'!se+raetove-lidsUs well. She looked 2z"&mo68!aiK1Qt fie0673oudP;the furniturUhear:e IQ aet holI1you A--" 2="by AtimewVnding punchingNL%dre broomj!soGdneededE2to punctuat Q!esBresurrected no f B catiJ6"diz!ea!1wenthe openDA andUiRtm?he tomato vin~"jimpson" weedsB constitb the garden. No Tom. S AliftWmavoice  angle calculfor distanc1 sh : "Y-o-u-T w!slTnoiseU"h42  i to seize al2boye slack of his  aand ar?Qhis fwA. "2! IE 'a'closet. Who!(.Pb?" "N  1! LI!at yourU8(Qsr mouthb!ISa truckXIk?-1aun. Dk^3USjam--FewFWAI'vet" dk"leGA jam@e I'd skin you. Hand me switch.# h.i d air--Sl was desperate-- "My Bbehia hatesB{5 S else#'ve GOT to doLIrhim, orbu!ilaTom di>-eidFAgood02. H  back home barely in seaso}help Jim small colored1sawS9-day's wo"likindlingssupper--at le6e{n:"to~=8hiscto Jim"Jithree-fourtht~$rk. Tom's!br( (or rather half-Q) Sid!al0Awith A(piccup chips),Z ca quieH1andE,%noDous,VBsome* While Lstealing sugar aQ offe{X7C askw+questions/ Ewere1gui1nd deep--for Bwantxtrap him6damagingments. Like ;pI6-hearted souls (1was pet vanityAlievA `4endowed with a t@ 1arkmysterious diplomacy0qhe loveacontemn0xmost transparent d׏ as marvel[low cunning. Sai u: "Tom1midQ warmR, warn't it8 BYes'OPowerful1'u "wa n(FAA bim a?Ae shvTom--a togL#unr.9;suspicion. H8dL93facKK!ld aQ. So [ ?SNo'm-ynot very mx =1rea+oY Sshirta#Bu } 1tooJ though." A-Qflatt hO7rreflects2;hy-2hir1dry!ny Bknow/*s8!hay Fher Glqin spit/1herC whe wind lay, I ZqforestajCwhat )next move: "S]us pumped on eads--mine's damp yet. See?" 88"ex:Uthinkoverlook(v circumstantial evidenc!mis=a 1. Tya new ins"5ion^ ho undo yourrcollar =bI sewe to pump on/Qhead,3you? Unbuttsjacket!#sh#of\2fac1Aopen]s@a. His qas secujQ. "B1! W Ago ' #I'11sur'#edQ A 8bee  QI forg(y*. you're a kina singed c"s --better': . THIS timu Sahalf sV*her sagacitymiscarried,3gla?ATom i3Winto obedient conductconce. But SidneyIB3you5hisith white thread, but Qblack5BWhy,OB sew8r! Tom!" rnot waitQt. As4ent>w3o85bSiddy, 2licfk abI|afe plac/nrwo larg22les "A wer#us.+sthe lapd6them--on^  D3theHpJDShe'D"anoticeQit ha_'for Sid. Conf6it! she sews]&_ &I wish to geeminy sstick to t'other--Akeep!run of 'emsR I beI'll lamX qearn hi4!Hene Model Boye villaghkAhe m&1boyOS well--and loatim. Withins, or even less, M1tenG-As. NQcause sV1onePR heavV.Bbittj2him a man's ow_aTand p 1bd !emgAdrov% mSb)y25!--ras men's misf+eiaexcite!of. This newwas a valupSveltyP1stlojust acquiredb negrohto pract5Pundisturbed. It conma peculiar bird-lik5, a Aliqu wrble, pW  &#he9Lh(Droof at short 5valAmids@@Busicxreader probablyEbs how !it.4ra boy. Dilige attention soon gave 8#kn{7he strodeFVtreet full of harmon1his gratitud 0^ an astronomer feels who hasg planet--no doubtlqfar as Eg, deep, unalloyedRs concerned,advantagFAwithT!boO t$XComerRsumme4ElongJNqBark,2 P"ly Tom chel2!hiustle. A stranger!hi boy a shader'himself. A new-cAJaA ageither sexXan impressive curiosiPJdshabby\WJ!Thy{`Qdress\"oo  on a week-A<FFa astou B cap dainty ,W- ced bluL3b round%5was#Rnatty0"sohis pantaloons2had;82 on#iGonly Fri"He!wo necktie, a br  aribbon0had a cit#KR air |bat ate&avitals B mor1staUIsplendid}1hig!oshis finerUhabbi E outfit seemed d3crow. N]boy spokeU,2oneEa--but Nsidewise, inrcle; theyArface toaand ey!ey#X - U!" "D3to see you try i,  8$doN> ,L.-'Y?1CanACan'A "An>\!paMp ! Aname"q'Tisn't5"of^,Well I 'low^ MAKE it my0)why don't youhI\2 sa}01ill3qMuch--mAMUCHrb" "Oh^ 2'rey smart, DON'Tm# I)l one hand:n!meIr DO it? You SAY aI WILLTyou fool~ "Oh yes--een whole familiesame fixqSmarty!| CSOME "Oh_a a hat+AR lump-8;Z[Bck it offqanybodyG61akeb!re suck eggsYda liarn %fighting.q and datake it up1AAw--aa walkXSSay--!meA morBsass@and bou1 rof~oOh, of COURSE+; then? What/ eSAYINGTx for? W>{EIt's XQfraidyxI AIN'TaYou ar7""I+A3/3eyiM1"sihaR eachm tCwereH  .XGet away Ahere"GoyourselfDI wo B"Sobstood,X Sa foo0d"as a bra' both shoving 2ainaglowertg1Q hate# nfget an a. Afte=Auggl ,Aoth <"hoy#flHmSrelax Jnx watchful caution|acowardca pup.1ellRig brozQthras'y3his44r finger.make himW 1toosI care forj{4? I;1a6big Be isUmore,hrow him'3at !T[Bothas imaginary.]$at's a li=DYOUR 2n'tAit s1rew6n ;G dus cbig toh<qFstepZ/y stand up. Ateal sheeFTz!w{ 1tepv-Dmptl N="sa$'dnow let's D crowd m;abetterZ{HSAIDh*--Wd[By jingo!Xtwo cents.jAtook1bro)QEpper>$ 1ockd cderisionRtruck*g0B. InF.QstantR boys1rol Aand 4ingdg3d6Acats3, 1pac"Rtuggetm A's hI 3nd fFs, punch3Qscrat"T's no,covered -#:'ry* confusion2for) ;the fog of baXcDTom %, seatedU!id1# p sts. "Holler 'nuff!"3 heaboy on%Rruggl1fre*Hcrying--.rom rage. dn. At last#go1 smwbed "'N"1up -)8jyou. Bny 1foo+Qnext  3Mqff brus6S2ustGsobbing, snuff5and1\Eally&Aback1sha1his;.1tenbhat he=a do to]the "next) 2ughout." ToTom respo0Rjeers"st7off in high feath as soon asI4was*(up a stone,2w i "hirbetweenhoulderss-\1ailran like an antelop_Qchase6 traitor{"Rthus ere he livednaa posia2gat2som9A, da the enemy toonly made2s a gond declined. %J2's and called 0 bad, vicious, vulgar&"ndc3[ m} Twent away;!he\ he "'lowed" to "lay"s'.g1gott>2ate#:2and$he climbutiously in r #unl an ambuscade,-Bpers4#Aunt;g"aw]2tat n her resolN 1 toT his %%2captivity3ard/became adamantine in its firmness. CHAPTER II SATURDAY mor;e,"&4Qworld#.and fresh/Qbrimm-1ith5P1wasng in every:(L" i>'!wa*RR issuQ rthe lip`Zcheer iniJfAa sp&tAstep locust-treQbloom bragranthe blossoms fill air. Cardiff Hill, beyona]ave it,B!grith vegeta!2lay (4farZ, to seem a Delec"Land, dreamy, reposefulinviting. 1ppe5e2alkAa bu| of whiteZ long-handl11ushcsurvey  1qll gladE2lefoand a deep melancholy settledAuponaspiritmrty yardsQoard k nine feet/s. Life c hollo7existence^Ba bu{1ASigh)Qhe di 2hisfpassed)Isopmost plank; rep the operB; di8Qgain;f8/ignificant qed streaqar-reac!co7'un8s"wntree-boxQ Jim 3skipping 5at va tin paiT singing Buffalo Gals. BrQwater (rwn pumpKRlwayshateful work inu"Seyes,Dq now itJ1not\k 1 so\dompanypump. White, mulatto/Qnegro! 9there wai'Qtheirqs, rest?trading plays, quarren $, g, skylarking. And h"al?Awas only a hundRgnd fif!!f,/3got)  under an hour. "ev an somesG!lyto go after him. U1Say, I'll fetcp'7'll`"soJim shook :wq, Mars #NOle missis, she tol|IBgo an' g<s3an'F#op ' roun' wif_61sayZQspec'zEAgwingAax m ,rs5$an' 'tend to my ownQ--sheed SHE'D+f to de/5in'2you Cwhatt!id#. SSthe w talks. Gimm $--qbe gonerC a a\!R. SHE ever knowI9 she'd take)Qtar dd me. 'Deed2wou.q"SHE! S ver licks--whacks 'e}URimble1whosE ,p5C }w%1 awP1but6hurt--any#it!if$Gcry.you a marvel" aKs alley!Abega.waver. "%!Di=bully taQMy! Da5Fb, I teQ! But Tom I's" 'fraid aissis--" "And besides,R will#shAmy s,^o"Ji- human--t> Qttrac  "ooHAfor iaHe put( *a"ntZebsorbing!Qest w. 4andS being unwR; V2s fZ3dowI k!ApailJg3rea+Awas "waCvigo *retiringcQield 7a slipperZ {and triumphEeye.''s energyeAlastq}Tthink%!fuE 1had $ne$Sis daH"rrows multiplied. So~ 1fre!s #tra**!onL 2sor@2delXBd)Bb they J$a bof fun8%m2!to|)96verZcof it burn like fire%2hiscly wealt- q examin0 B--bitoys, marble trash; ;8 to buy an exchange of WORKX* 7s,*an hour of purk4domi#retraitened meansB "s qgave upoAidea r=1oys4 !rkN hopeless7- e Qm! No=  3than a great, ma1 8entC 6! >qtranqui. Ben Rog%v-spresentlnK boy, ofbwhose ridicule dreadingdb's gai the hop-skip-and-jump--prooj6is lis anticipa2!HeVM3ran appl1 gie1a la%melodious whoop, at vals, foljB by -toned ding-do,, a* amboat. As henhe slack}1spey"1ookhQmiddlU, leaned faro starboarderounded to ponderaborious pomp3/Oce--the Big Missouri (d| %;wdrawing"of 1boac capta9engine-bellbined, s!,o7 Qself  <own hurricane-deck the ordersQexecuAthemR1K, sir! Ting-a-linga!" The$way ran almos he drew up slowly towarq. "ShipToo backmsHis arm"gh^Atiff8xAidesZei mAstab%h Chow! ch-chow-wow! rQhand,"escribingly circlesC3 rePing a forty-'wheel. "Lg l-chow!" Thej5 e "to &RShead B0her! Letg*mslow! W-A! GeO ead-line! LIVELY nome--outd"- #t'Q#'t ! T~ t(hRstumpMQthe bA! StSy*age, now--l go! Donb 3thesH SH'T! S'tH'T!" (Suge-cocks)"on . R--paix9!, yDBen (n "Hi-YI! YOU'RE:ump, ain' nH 3hisPFouchI!eyan artistZ(!n vi\ gentle sweect&!suܙ"s $R rang4)alongsidv7  2mou!%er #e (n"tu1 k]! "Hello, old chap,M4gotTs, hey?"heeled suddenJn31it', Ben! IC9TnoticDSay--I'm goBa-swi, I am. DoQ wishacould? Aof c# you'd druther[ !--0 ?5? C)I (6(omR:d,#bi2at 6` ?` $hyIETHAT#umC \Aansw1carG ly: "Well, maybe it iU zI,$it suits Tom Sawyer dV1meaQ!le{`you LIKE!3Thep u}1mov^"? I(see why I oughtn'Gl-1. De$"get a chanW+# a fence every da}1hat(2thez-Q in aSlight!toAnibbApple2R swep daintily=forth--steI"ba<1notK effect--advAhere?there--critici=50--Ben wat2mov@1getm`!"ndp( bested, Ted. P 5 heTom, let MEf a littl _o consent1althis mind: "No--no--LBl"n'ly do, Ben. Y7'e,1's  particula.u a--righ eNQknow -G if C& I^3and. Yes, she's ;-bbe don[ careful; v"onmRthous Ftwo can do i?wayybNo--is6Hso? 1--ljust try. Only--I'd let YOUCas m:" "Ben, ., honest injun; but-D$nn!o s!1n'tAhim;7/!, "/Sid. Nowy` how I'm fixed? IfEa tacklKsb[C&Qhappe+"itOh, shucksbQ3as lgA youocK,#mySFN2.bafeardW3ALL Rareluct|ig @qalacrit1. Ah i4e  )erAb workeZ"sw>LA sun( #ed< 1 saa barrel7shade close by, danglQslegs, m^& aplanne! s0Iter of more innocBT33o ln6material;ed along :; they ca6BjeerArema2A. Bytime Ben\!faY'1out!ra1he $+Billy Fisher for a kit!good repair;1whe>out, Johnny Miller b in for a1Ir! a!ngw  uCso o, R hourHT hour8 afternoon>," a5poverty-stricken; !2was literally )3 in2. HhW"s r q mentioetwelveA par6 a jews-harp,*ece of blue bottle-gla}uOthrough, a spool cann2B key|u unlock1, a!mchalk, a ca decantU& tin soldiQcouplQtadposix fire-crack&r kitten only one eyJ61ass>knob, a dog-Asbno dogv3hanNvb, four1as of o C-peea dilapid)old window sash 1hadsa nice,G_2idlM#thq--plent40 \2encQthree coat! on it! If2n't9>9ut )"heT have bankrupted+Bvill)d2aidCmselR!itnot such a!,Yqall. HexA3dis8+ a great lawRuman |,1out5 ing it--namely, ."inD&Ra manzboy covet a} s !isG! n5ary;^ difficul vattain.U3! se philosop&)che wri ]x@A now comprehen>qat Work $isaatever dy is OBLIGEDj,<OPlay< not oblig# do. And 2helyIto under* :U1ruc artificial flowers orW_5ing"ad-mill is work, ten-pins or climMont Blanc amusement 3are2y gentlemen in Englho driveb-horseJ$nger-coaches tw}r thirty miles daily linummer, becaus@privilege costs themDablenQbut iOy"IK wages fo*XAturnh1ntoI3txsresign.oy mused at3ovea%ub?GQwhichRtakenC r Sworld`whheadquartersv[eport(sI TOM , ]q lkby an open {@leasant rearwBpartYwas bedroom, breakfast-s dining and library,|c balmy D air* stful quieeq odor o%Y@.rowsing murmur (AbeeshFeir effec!he AnoddfQver h"i "sh5n,%1but#caLdasleeplap. Her spectacl)1progQup onsAgrayA for-F1ty.%" 1Tomdeserted #ag&` !nda0 'iRpower p_repid wayN said: "Mayn't I$} yKCaunt&'ready? How mu Adone*AIt'sd.XCTom,ro me--I= bear itIb<u; it ISRF." dY1truxevidencezw uBsee LRrselfe a1uld^MDfind1perQ4C. ofAstat true. Whenfse entir*"ed1notelaborately QrecoaM!an!n aeak ad8ogw astonish 4was#unspeakable. S|bnever!m U's no^# i2canCwhenM2 %Ad to B." A!AdiluO!he)!liAby a, "But it#s seldoma aRI'm bsro say. go 'long$pl/Aryou get@3som i\BB, or(tan you." &awas sokbcome bSsplenSchiev1hattook him#th&tsE- choice appleQdelivit to him,C"ov cture upoBvaluNflavor a treatAo it uit came~ "siT9ugh virtuous effbsd: a happy Scriptur urish, he "hooked" bughnutn !kieand saw SidQstart%pHl2 stairwayll tck roomsecond floor. ClodsAhand$A thegC)waXmtwinkling y52d a #Si'a hail-stormx # ct$Allec+ surprised facultiess*arescueQ or s0+Bclod7tersonal<G} MAgonerSa gat3eneral t h&2too9iY$!usTit. HGrt peace+ /"SiWAcall"tt s black $6+n1rouC1skipQlock,hinto a muddy allaled byQ%s aunt's cow-stT4 He aly gotrly beyo  reach of capuQhasteR the public squ$1, wtwo "military"N!ie02boy"met for confliY AccorO qto prev#sappointt <G3 ofޢ these armies, Joe Harper (a bosom friend)<the otheruse two great commay ! dYSt conyb to fi!--DAbettIil2Rstill<ber frys !geon an eminence/Qconduield operations bysD aides-de-camp's army wX uvictory+ nd hard-f@ 1 ba# T were counprisoners 'drTterms rdisagre d7y $ay 03ed;X 4R fell?and march "ayhTom turned home slone. Q!as &3useJeff Thatch-1ved_saw a new girl e garden--a love^<blue-eyed creaturQ yellir plaite1two-tails, white summZd embroi  )JQettes fresh-crow2ero4without f^+a shot. A certain Amy Lawrenc2U2his6 !efoJa memory of  Gm 1 he#d to distr#; !rePdKQssion"dogi o + ~Aevant partialit pmonths win8bher; sTesseda week ago; $ <bappiesx Oroudest Rworld WQshort_e!inRinstactime ssgu a casual=)visit is dH"sh this new ange's furtiv -shqchim; tf Bpretq6 Aknow\4was %"show off" in 2sorabsurd boyish ways,# wBadmi%{Bkept is grotesque foolishnessome time;, by-and-by,  )s Adang) gymnastiche glancZ@!idy MC girl was we(xher wayO $upn r leanedq, griev5b+Roping! tarry yetblonger 1halA1 moO  Qsteps m]1warQ heav great sigh asp$Ar for threshold.#1his:! lI", Qhe toqa pansyG L ! ss): 3 bo)3rou\Uad with Tr twoY Aeyes=#haWCdown d as ifBsome of interest goat direction. P- he pick:&w#ry !ba! iO,aead tifar backSas hefrom side8aide, iO edged nearer B; finally his bare-#W3(liant toes)w 2e haBaway the treasu# OArnerb only minute--(v Rbutto$1 inhis jacket, nexheart--orstomach, possiblAnot 82pos<s anatomnot hypercriticaZByway1# 4ung#<nightfall,ing off," a16 2irl exhibite again, though Tom comfor$"im$ 3hop@Abeen>,*een awar&P  Bs. FX he strode home !H[[%advisions. Allasupper.cspirit"soCrunt won "what had #inV child." He tookÁod scoldrbout clB Sidp1seee!miY QleastQtriedIugar undGveryG"goknuckles raQ!foxc "Aundon't whackmhe takesQWell,/1torsRa bod 1way"do. You'd b9  bsugar ifq*watchingu sezckitche Xs immunity, l"gar-bowl--a sor&2glog2Tom/Fllnigh unbear_'s fingers6`Rowl d1LVbrokeFin ecstasies*JB (!he controlP#Rtongu!il5 toF Bpeak6!d,^P1in,18A sit0 bectly Lyshe askejimischief|u! tCrRbe noA!so+   !asefpet model "catch2 Heo brimful of exultR1 Thold Q rld lady #ba stood abovwreck discharging lightnings of wrath(#Y v, "Now iVm2A8zt gQspraw1on 2loo potent palm#ups!to($"keTom cried out: "Ho 1'erbelting ME for?--SiK it!faused,\vl1heapABut 1shes5her3she RUmf! you didn'ta lick amiss,)Wsome other audacious Iaz 9 ." Then her conscience reprgeqshe yeaato say'3 ki l;ashe ju - !beo4tru!a  Ae wr7T cipline forbadhs. So sh rsilence2d1bffairs av2rt.|1ulk# a W "ex chis woBknew3Qheartb Bas ojAkneen was morosely gratified b 1ous\)OAhangno signal take notice of nona3ingRR fell"no cthen, s& a film of tears~ahe ref recognition!pilsick unto deathbim besee}D one forgiving*u]cds facew rand die word unsaid. Ah,+Hs !el2? A bZK the river,  Qcurlsw9<8sore heart a .sEhrow 1ow 4earxfall like r4 (ps pray GoAgiveAbackG!bog\  , AabusY9[Rmore!k.blie thlsi02--a suffererP"se grief C*# e$so, as feelBwithAbathos se dreams,hto keep swall ,Qlike to choke03swaqEblur:, which overflow}xr winkedran down*l?XAose.| ba luxu'"hi:op17gsorrowXnot bear to have"ly'Lixrng deligh\ Brude0Cit; <too sacr/rcontact7Tso, pU,his cousin Ma31in,!EalivAe jo!sesB4hom+ an age-longbof oner aountry!go~in cloudBdark u"on|Munshine in at@1"wa B fars the accustom"1unt=?S` desolated"suwere ind9. A log rafAthe S invi%fQhe se!i on its outer edg Aempl+reary vast*iram, wis4Lw_ u rly be djQt oncs5 un6c1the&'routine devisWn9N*Y+Cflowt>got it out, rumple!ila 'Fily increais dismal felic) %HeFQ1pitu knew? WOrshe crym8! L! r%toRarms #ne  him? Or2she(!co1all (,1? Tuch an agony of pleasu ) ` tC and 1gai 6set it up in new!vaosTswore ithdbare. Vqhe rosei?NJAdepa4l A. Ahalf-past nine or ten o'clock hey 3alo+'street tothe Adored Unknown ;X{ `; no sound  3lisdVear; a c/qwas casa dull glowbthe cuCof aX"c-story/Q. Wascre? He climb,jCs stealthyf/ !thn qood und]#at j Aup aC#,ith emotion; Claid]$wn9#g bit, disposingpAuponp Rback,]ands clasphis breah41hiss wilted5*1thutdie--ou~ jyno shelter bomeles-C, no !lya to wie death-dampsR!ow8  2benvTinglyqmthe great3cams4SHE:!eeww4'E outvT glad/U,p4oh!A!hev Atear>poor, lifWform,=>Dsigh~1a ba youngE so rudely b:*Duntimely cut ? Aup, a maid-servant'cordant voice profan" holy calmqa delugAwater dren#rone martyr's5"s!BstraB hero sprang uAa relieving snort%awhiz aPa missil/vir, mingledHV"rm Qa curHBshiv1glal !smb 1vag rAv!e >Bshotvgloom. No!Q, as +all undressed for bZ  omission. CHAPTER IȷCsun 5!2QanquiT"ld]abeamed8D4'ful village~a benediY Breakfas, Aunt Pold family worship:cL2ega# ab built6up of solid cAScriptural quot/s, welded`%A a thin mortar of originality Bsummf  7she+a grim chapter xMosaic LawKaSinai.n Tom gird Qloinsto speakh2bto "geverses." Sidlhis lesson/"c beforAbentt his energies5 smemoriz\CfiveeAhe c$"8the Sermo!Mobecause 2uld.#noO, were shorter. Aalf an hourugeneralw!no;wn =Qraver) %olN'Bf hu-3 !iss3bus $Qng re%ions. Mary took<1booAhearPSrecitahe tri!|] Gog: "Bl!ar 1--a " "Poor"-- "Yes--poor; b025#In? :$ i/Ubthey--" "THEIRS BFor +. Lairs is[kingdom &MavenEy>_mourn&ShzS, H, A S, H--Oh, IO$"wh is!" "SHALL BOh, # fb shall-- *Y/ I 5iWHAT? Whyyou tell me,1?--do you w !! bmmean for?2youthick-heaRhing, I'm not tea[1youpyA1 do. You must32leaI75. D"be"buraged you'll manage it--f 2do,11Agive #ever so niceC, that's0#bo'"ll{1! Ws"TMary,K C+'.ueryou minMbsay it's,< AbYou be"sou%. Qtackl ;3" [did ""*2und double pressure of curiositprospective ga2 diA)2ithD he accomplished a shin SuccesQ gave  a brand-new "Barlow" knifqth twel2d aSRcentstZSnvulsGthatGVsysteL[ DDoundTrue, the scut any!buwas a "sure-enough" 5t  inconceivable grandeurSBat--lBWestern boys >A got N|a weapon1#qunterfeZ3a injur<3obmysterw] erhaps. Tomr˻to scarify82cupuR\ "it )ArrancCgin F dbureau" !ca\ qoff to  eSunday-school. FLrtin bas 8andmABsoap!he  3"oo21setM4n aRbench2; ta$ d+be soapeiy; sleeves; poured>& ,W=y~e'  " Ubegan?ace diligentlyFStowel|-g"oo&&3 re),5and2Now49lhashamesmustn'tVbad. Water wShurt c#"Tosa triflncerted. T=5sin was refillAthis3xO&ito'b, gathaf;/% ebig brGU9(hen nDboth eyes sh8Bd grC+t.[ , 1nor&testimony of sudsR>2ripT Aface mse emergf>x,fnot yet satisfactoryQclean territory* " a%Achinhis jaws,mask; bel_p4dis lin1 dark expan5unirrigated soil]Rsprea7,rin fronlAback  2himBnwhen sheY%dR4him$Ba maqa broth1adistin<Bolor)Aatur2haineatly brushe2its curls w]Ainto2intsymmetrical effect. [5!iv;w smoothL[3labdifficultQplastere AI]3qhead; f(] effemin71andBown  lith bitterness.] Thenr!go! aP1 ofF#cl%1Busedy##on Bs duvH!wo s> were simp1"ot%#clothes& "soJRat we qthe sizV brdrobe3D"put`"s" !!S; she+Qneat "/m,his vast shirt MG2ovem,soff and c V-QspeckSrtraw ha)1now#oed exceedWAimprcand un2abl":Yy as E as OOTa restraint e lgAm. H-"atU Q forgie"5!peZ61 cothem tho"ly/2tal s9Bthe 9rthem ouH2los:Stempem~z bm$o do ever  Dn't "doAMaryN&rsuasiveTPlease, Tom-- 3So &zhoes snarlingJ(son read9/hree children se3for "!latat Tom hd heart; but3andbere fo0!sSabbath`-from nin$Aten;B church service. Two  "ermon voluntarilV :2too!ger reas.TZ urch's high-backed, uncushi$BpewsU!~h4d persons r edific_bWSplain,'a sort of pifR6ard*kQon totia steeplB Tom droppe(ps2acc0a comrader]2ay,N,o)2a y*;aticket5Yesy'e'Agive:APieclickrish fish-hookX2LesExa'em." 5(0 ? W propertyGd@!tr=cMwhite alleysb  E6Tsmall+ #oro9forSsblue on(1way ,b boys Sy camwent on buyingz of various colors ten or fifteen minutes l !/ qqa swarm; #leg Rnoisy: irls, proceemoE!se &dAed a quarr84Airst5jAcameyQ teac a grave, elderly man,75QferedGny-'6>aTom pua boy's @ !inM 3;"was absorb% the boy  ;[aa pin w I boyk%8 hear him say "Ouch!"got a new reprimandJ 'csle clasWqof a pa --restless,!tr\Csome> Qthey to recite their@w%~am knewuverses /,!habe prompv8ll along. Howe)worried @2reward--in T blue,,q passagl"e '(;2pay#wo1 of  ation. TenuB equa#onc7$Tbe ex^qfor it;0Cyellow onep #enV> Wsqsuperin;"ntat1ly bound Bible (qforty cin those easy3s) SQpupil2 maH$!myKe* (the industaapplic+4 toeTthousand]H2 BDore? And yet Mary had 2two%is way--it the patie5!rk!^  oy of German parentage had wonRqor five3onc#ed i out stopp/{Gtraitmental facultiesyCtoo (haand he~+Abett {U idiodBat dth--a grievouC2he :"onpR occa$y company f(1 exbed it)  'y come out and "(b." OnlRolderts13Bkeep}Li]1tedRlong  to get a2[s6y*sse prizaa rarenoteworthy circumstancer32fuls?conspicuous for  ;AspotEyQlar'stQ4fir"a fresh amb/that often_')ed\weeks. It is{1s Tom's qstomachn 1rea 1ungo1for#.o. unquestion6-Sntire& hNPa1lonQglory,qthe ecl+!atcI rIn due K  &Rp in {e pulpit" a6d hymn-book inh)!nd cforefi"O(between its leave Frd atten0G  ! m09>y,4aryAspee  RGs asoEBas i ainevitAsheeTmusic&sq who stu'1forAplat<$ings a solo atn %!y,:Qneithen sa refer.0k. ThisN0fa slimEirty-five a sandy goate8Qhair;1ore 2iff!Cing-wE"Bsensa}!itenew hero ups C!on l Xtwo marvels to gazt#injbof oneBboysall eaten upenvy--but tb)est pangI-swho perstoo latDS themselv contribub athis hsplendor by trad01 to't wealth+bamasseelling whiteprivileges s]D2pis,Urthe dupa wily fraud, a guileful snakeRgrass !4was;ew 2Tomo"as%2eff superin"nt pump upI7!s;it lacke&wS-true gush< IQoor f' tinct taughZ-xzw not well bea]l  k4was.preposterou8 c!!hae)Q thou[!sh $al wisdom on@remises--a dozen ,#capacity,Rout a8. wBprou$glsH<T1Tom it in heL-ouldn't look. ShH 3n ss grain %"d;Ta dim suspicionbG(b--came P-! wnEd; a1`#glrld her ] +her heart brokMs jealouaangry,t'&rs3shebody. Tom G!of (Hhought). )asohis tongue,Qtied,J4 2rdl"quaked--part75cau awful greatnes rthe manGmain6H$ have likBfall00borship!ifyqLq1ark # ph an Tom'!ca9Rhim aC * sand ask!qhis nam?hwstammered, gaspe!goUout: "Tom." "Oh, no,QTom----" "Thomas'"Ah~'TI7!or\ it, maybe{'W well. But you've)one I daresay""llit to me,6Q you?1ellQ "an"Qother", ","'Walters, "5!fay sirX=n't forger mannerI Q--sir1it!B's ayvF . t, manly0 Q. TwoLverses is a  many--very,(.'2ou $can be sorryUQ*c you tOAAlearm( knowledge is worthchan an@1<3is pa; it's4#e  Dmen;V$^d3Qman yC$Alf, -5day1'llR,Y9ay, It' R <)1rec ;A1 ofDoyhood-- Gvmy dear-5tha^mU<  Jood ,L$en? H.)3 ga beautifulI*\d id elegant'"anH  for my own, always right brin"upA is |2you<{!~&take any mone^ose tZZindeeE1nown't mind t $ m+ "isB2 hylearned--no, I know --for we are4$of3boyG!. 1no vAknow2nam^r, es. Won'Lbtell u9the first3tha`!ap$Fed?"l1tuga_utton-ho sheepishblushed, nowz1his! fO'MAsankm ain himH_\ETAposshtc2sweb simplest (--why DIDH=ask him? Yet hBrt obligspeak up say: "Ad'1--d}#be!.L_hung fire."*$me\ady. "TF twoeDAVID AND GOLIAH!" Let us draI%cu3 rcharity tYsceneJV ABOUTQtcracked be2theu church ?R ring01epeople(1 ga||"mobsermon. childrenHA 5!e C C eoccupi5ith thei s, so as K{Kd. Aunt Polly zTom and472sataher--TomL%"d G8sleB2!ha9A be GrE9the{e seductive `AbsummerEs asQ crowd fil/"s: 1gedneedy postmast=!hosseen better days C may<"hiJ "ha$y3re,| 4 unmp#ieOejusticRpeacei widow Douglass, fair, smartQforty!ene,O2-he4Asoul well-to-do, her hill mansj only palactAChosp+and muchKmost lavish 't of fes,St. Petersburg [RboastAbentxQvener,3MajsMrs. Ward;  Riverson,bnew noaACance_1ther village, followRa tro8lawn-cla.ribbon-de!3 p-breakern#q clerks!owfa body;C had.G vestibule sucD!cane-heads, a circYb!wa! o !imcg admirers, ti Alast!ru ir gantlet; and/AcamedModel Boy, Willie MuffFs heedful carlQhis m5 asXere cut 2x ! b=tN,>#to, v1prisrmatrons(2ll vh !so0. qbesidesa"throw;3 Qm" so. His whit.kerchiefZhF#q pocket behind, as usual ons--accidentalN)noa!he 1ed ytas snobcongregapefully (: 'T1once, to warn laggard0straggler a solemn hush f p! <Q+vdbrokenBtitt=8and& choir is galler=GF!edthrough =conce adQY Pill-bred, but I rforgottgh!rea2. I !y [B agoV.I can scarcely rememb?_="itI kg1 in foreignj#"ry* minister & "ou3hym-1reaba relish, in a peculiar styleZeat part His voic on a medium key&Zasteadi:/i0% a"* rBbore1strY5umphasis topmost wor splunged8spring-board: Shall I be car-ri-ed to!sk !on flow'ry BEDS of ease, WhilstsyOIH sail thro' BLOODY seas? Hqregardeadful readKZt"sociables" h= #R>!to;r poetry,Cwhen32ughcqladies l3 up<3han let them fall helplesslyrir lapsc"wall"C!eynB1k\!irZ5s, u say, "Words cannot71 itfis tooV, TOO rtal earth." Aft 2hym~&Bsung2RevtSprague#' into a bulletinGuoff "notices"ge,qocietiej-1i#)o4 2st qstretch of doom--a queer custom#is vin America#cities, away x4)1 agAabunZnewspapers. Often3Eless, to justifm 1adi7l3Bhard")q get riu'ittprayed. -, r:bwent iIhtails: it pleadea 2rBttle),3rend:7=eip ' itself; ?y([State officersqUnited . ' 'C)s5A Pre.t_q Governm$poor sailors, tossed bK1rmyM ppressed millions groaningeel of European monan  A Ori5 despotism1sucDght 2tid?'rand yet-M"yehqee nor !to &alRheath)the far islB seaZaclosedW a su Twords!abmfind gra)RfavorV!seLm fertile ground, yie%Qime a?0Charv9good. AmenP!re 3a r(Q of d v8! cPy sat down whose historybook relates disQenjoyQB, he< Aendu}Qt--ifN1ven9J r  it; he kept v y a63 --Lp"gc#, qBzc of olvthe clergyman'ular rout}&VaiQtriflsRnew m3 terlardedear detected iWhole nature resen!considered adAs unqcoundre I |/B a fU'R lit  " bAew i#nMmaAtorthis spirit by calmly rubbing iti d8, embrac"eah,3armpz}& so vigorous7at eo$;part companyBbodyvthe slend9read of a neck61expto view; scra0Qits w rind leg'AsmooT !toCbodyK|been coat-;~,&le toilet as tranquib if it.)$E safe. As!ras soreEaitched@rab for iynot dare--}4iev3oulbe instantly destroyed 3did qg whileB was2 onhhVqsentenca curveTstealq.Cthe ra"Amen"r!hewas a prisonwar. His aunt bthe acmade him let it go rhis tex8droned along monoton an argumea%"sybmany aBb &byBnod 3y Wdealt in limit 2firMbrimstonSthinnpredestined& Eto a#so !2worA sav1)2Tom_&ag ;; $ % h2how:t#aseldom: Delseqhe disc MH"is!he8qreally {16forE*a grand and moving picJH"&+=world's hosts at the millennium*B !onc aamb sh"%liS[ , ,!eaAm G2hos 5les1mor/C theEspectacle werQahe boy v# D" principal character beforEaon-look<>!s;#1fac" oirhimselfYhe wishe",Q tame lionf!w 8Qpsed (ing again,fhe dryQumed. eHpA him treasur # a large black beetlformidable jaws--a "pinchbug,"8#Rit. I/=ercussion-cap boxhm1did/bto tak)b' Afingal fillipgIbfloundKZ2isl1its !ur ger went1's Co!lart5its" legs, unAto turn over!ey !lo1forF^!ofCt. Other'uncR]1q relief# wyof too. Wa vagrant poodle dogNA idllong, sad#Bf, lazyI1oft e quiet, weary of captiv(1sig"for changeMs;HAdrooz Ataile8bwagged:1urvrize; walked a it; smelt a87afeu4 4; grew bPJUA6rY1l; Trhis lipqade a gzly snatch,YA misa;3it;/nn %; g diversion; subsid  Stomac)W betweenm3pawh scontinu experiments; !ath Aindi- absent-mindi(1nod ittle byrhis chin descen/ou he enemyAseiz[2re sharp yelp&li' fell a couple of yards away, S}Amore neighboring spectators shook)a! inward joy, s2afaces rA fanI s)_aentire #ppXdog looked fo8 4probably felt so r1entc iheart, tooBaG>qor reve1So .n:9gan a wary attMnWQ jumpfRevery2B, lightingP!hiKJae-pawsin an inchB2YouUX O=3Oh,Q, I'm,/"W4=--wQa, chil9 X!my! toe's moF1!" J#ol[UBsankqa chairB#%ed! cEB"a did both0,Arestwh/d<P," ayou did Ce. N ;1shus aonsensCd climb"thg{$ThS ceasrain van Afrom!to   ' it SEEMEDi"itTBso I B my aat allqQYour ,#K+ Sthem' aperfectly" "Ther|Tdon't Ahat @'Open your q Well--4 IS1butcre notwVto diG!at. Mary, gec>aa silk a['1Rnk ofq"ek$2n." !pl/j7 !hue. I wish I mayO%qdoes. P_@.1wan-]stay Don't you? So all this row was E1youM>ght you'd7i ibgo a-f*?yI love you"1+!ou !ryQy waycQbreakX?l !t soutrage!=." dental instru?S read #%on8the 8^I"'s:Ra loo& #tiod edpost. TBseiz* n^QthrusI($inR2oy' U hung dangb- } Rrials@*1qcompenst+s'#enrschool >fast, he6qthe envc( 1 bo"5metSfap in 1row&eeth enab 3 toMRorate!1new<>4 s9ing of lad9G%in the exhib@0;2oneShad c ' 2hadr a centre of fasc and homage2o[Qnow f:OJout an adheren Tshorn!Rglory'QheartyBheav 3a disdaibZit wasn'tDo spit like;our grapes!"%e wanderh dismantero. Shortlyb3camMthe juvenile pariah5he n;Huckleberry Finn, sthe town drunkard.,-Qcordi2hat2 dr1#by "e s{t 2idllawless and vulgarRbad--zxk?eq delighV-forbidden societyAthey dared?Rlike B!om @!reNCRboys,faxenvied >his gaudy outcast cond;as under strictIQrs no8Mm1Splaye3him1timf2got% Ince.c!slways de cast-off _سll-grown meAthey  in perennial bloomRflutt sCrags{!ata vast ruina wide crescent lop a of itp!m;ecoat, +72ne,Bnear^2his[ !haQ rear!buttons farY ; 2ack1oneMeaupportos trousers;Ceat ! b$A low~contained n A friM&rlegs dr4Bdirtanot ro[Iup. 1and?A, at"own free3Yrteps inKDweat in empty hogs> in wet;3Qto go2 orurch, ornmaster or obeyXcould go  or swimW1herCchos1sta/long as it suim; nobody~V$fiyhras late! p8 d3t)2boybarefoot Qe spr'gnv~Cme lsAfalli1to wash, nor put onf0wear wonderfully. In !rdJ8tQEgoesxlife precious{!adgrthought\ harassed, hampered, ; inkBR!ha!AJtomantic : "Hello$!" K ee how youh9it.a A gott rDead ca%RLemmeC"imp. My, he'tty stiff\Are'diqget himQB2himR a bo#di4zI a blue ti@1and"adBat ItVter-hous1 T#itBen RogersI!goa hoop-stickE6SayU!cats good for2hGA? Cu1rtsHSNo! IQ3so?JV some6A's b3BI beedon't.ibaspunk-?5S! I wouldn'tqAdern 85You-,  $D'OD tryqNo, I h DQBob TOA didrWho tol!so"he Wa5Johnny Bak im Hollis8 'ld2Benmca niggLC them bre now2ellt? They'll lie. Least<1all WA. I 2HIM(I%eekWOULDN'T\Shucks! NL!te`lbone itvQnd di=2a r/BSstumpLthe rainQA wasPI qdaytimeClith his fac Atump-3Yes* I reckon so[ADid j y5 3"I :.lAknow@Aha! Talk1tryN:o c such a blame fool,c@Aat! @S a-goVado any2. YV rbrself, e middle Qwoods\5Y's a Btump1jus'7rmidnighrback up!s qand jam/Q: 'Barley-corn, b injun-mearts, ^ {q, swalle_&drts,' 1n w way quick, eleven steps,(eyes shuthen turn.<BtimeYAhomeDrout spe+ttbody. B#f$Wcharm's bustesounds likxrood way !!wthe wayB donNo, sir,x1cann't, becuzoGartiest cis towT!BE1war 2him!!'dU!ed*xto workYS. I'v1offs'9"of off of my9sAway,m 7. I Tfrogsv$*`U 5got;"Qmany gb. SomeI!'eFNSnYes, bean'~de%1Havk?,"'sSway?" "Youd6 2pli!be#nN1getb blood"thN# p3" o rEpiec!be,d{q dig a *1t '`?aYrcrossrorqdark of6mooQ burn/ $styBbean#se Uq=.ll keep drawN$nd ,mA feteXFZ v+1"soQhelpsh!toOA the.Rf!sof}Qcomes %--;"gh,"bui$you say 'DownV;awart; 1no @'Bto bgme!' i & Tway Joe Harper doe!he1'enCoonville and mosQ bwheres#say--how do:"urA b!ak1r c+Enm?graveyard '%Ubout wwXromebodywas wicked hen buried3Fit'sFqa deviloP, or maybe%,3 't see 'emcan only+ 7indYAhear9Qtalk;|they're tahat feBawaym#he<<1fteMGqsay, 'D  corpse,i,A1cat,Qye!' ;2ll 91ANY7b." "Stnright.}  "No@Rold MrHopkins mz !soqAn. BQsay sra witch#ay AKNOWQis. S$*$pap. Pap says so his own self. H! axAone *a#!eeUawas a-Sring himC !e T'!ro-Bnd i!ha AdodgQe'd a>e)that very > $heFoff'n a shed wher' s a layiQbrokes1arm"W#!diOknowLord, papGeasyK1loo- *q stiddyDyou. Spec"ifcmumble d$b're saS he Lord's Prayer backards2Sayy y:"trB1cat1To-. .old Hoss Williams t8a" "Buy him Saturday. D` ?qtalk! H5uldbAarmsF d till -?--and THEN2Sun|Sevils Tslosh 1muca,2, I' L!nLaBso. #goT!f'"--$Rafear A B! 'T qlikely.djAmeow1Yes#, Z'geR Last timeOkep' me a-me8!arA1ays( r&rocks at mJb 'DernQcat!'qso I ho Abric{!hiDsdow--bu+BbwTIn't meowe bauntiea#me|Q4'll8!is%. 3!'sOL"NoQbut aS%Ou1-3at'AtakeG .Uqell himHAAll 4. It's aIqy smallr, anywa#anybody3runw6ae1 bem. I'm satisfiiwF!enAtick"Sh!tiu plenty  1 ofrif I walCo2whyn1#wed!cawT&Cs a Q2onef YAyear,b--I'llbyou my  ALessi1Tom1 bi$pauAcare3 un$Git. ~a viewe#Awist-. The temptation+strong. At%he"Is it genuwyn4Tom>'>!shthe vacancy.a!,"YB, "iAtradTom enclosQ8 A@lately been: 4#'sG"th separated, each fee !wealthier thqfore. y'4Tomy'Dittle isolated frame ,trode in briskly=Pof one who AwithQhonesbed. Heahis haQa peg52fluT BselfJ4}31eatI r-clacrit", throned on hig1reat splint-bottom arm-',R1doz)!luW" drowsy hum of study. The51rupcd "Thomas Sawyer!(Ghis name{f7 in full&!me$rouble. "SiO"Come upcRS. Nowbwhy ar2gaiN3cusual?= "to Srefugz"3lie' Pw ; ails of yellow hair hangingoae recogn$PHric sympathy of4%;&bat forTHE ONLY VACANT PLACE girls' sZ QinstaE STOPPED TO TALK WITH HUCKLEBERRY FINNY's pulse\:Qhe st helplessbuzz of 5r ceasedcpupilse) foolhardyaqhad los% u/:9*(d did w"Stqto talk@ Finn." (eno mis}e words,!isE!motounding confessionYever listen!. No mere ferul answer f4is offen%1akeyour jackej  's arm performed until it!ti#>Qstock1wit) _y diminish`A ordllowed: "l!goVs!th! And let)bSt0xr titter-VripplE{qom appe^rto abasiboy, but in .G14was caused rather0!byworshipful aw%his unknown id(&IAead _#urRlay icgood fortuntss Rwn upk(1pinc<c0)'Qirl h,away from himaa toss$&nd. NudgesBwink$qwhisperO4verBroomrTom satW!hiIs "Aong,"CdeskO1eem[book. Byby atten$DNjX#ed murmur rose]AdullxEPresentlboy beganqeal furdaglance robserved it, "4G,2" a8and gave hi-HbackRe spa\ta minut2she caut4duQ, a p5layi"erthrust it away1g!pu>Kback,^2butC&Bimos;$om9Sly reZiqits plaz!heit remaindscrawlts slate, ", Bit--2 more." TdJ uno sign. Now draw some *!hi 1eft;q. For a31ref:2to ~[Sher human curi@Axq manifeby hardly perceptibles !boPkAr, apparunconsciou+Qa sor^ noncommittalnmpt to s6 did not betra/h Aawar&itM 2she!inQhesitB$lyb!Le  Apart 6=*l caricatusra housetwo gable ends}a corkscreC,smoke issuingS!thn[AmneyX" "'s !es0Bfast6elfeAworkqshe forgot $D els`f6, she gazedAAment)n ,It's nice--make a ma artist erectH$an%front yard,qresembl(qderricka 4~1ste\ !ovgek&not hypercritical;Kwas " Const! a beautiful man--now me cominggom drew an hour-glassa full moontraw limb1 arhe sprea1finE$a portentous fanwL #t'#soI wish IPddraw."feasy,"q Tom, "1TlearnB"Oh,i#AWhen At noon. D 2 goh1to dinner&PDstayAwillrGood--tAa whas your] EBecky Thatcp5yours? Oh,$& l1theU they lick me by. I'mIAwhen \2YouW)1me Yes." Now<N  tl1rdsW /1"gg1see !Oh~ain't any\ Yes it i5"No'#wX5I do, indeed I do. 4letVYou'll teNo I won't--9Fand Rouble%"ou3G6A? Evs ! aA liv!6&M! e3ell ANYbodysOh, YOU!Lyou trea#o, I WILL see."+ 1sheher small =  Dnd aQscuffLAsuedq pretento resist in earnrut letts_ slip by degrees till thesdA4vealed: "I LOVE YOUj"OhMb-Fing!1hit hsmart rapreddened >b 2ed,~&theless. J[$K junctureboy felt a slow, fateful gripM3CB earp a steady 1 im+zSwise Aborne acros Gposi0own seat, undwNBpeppX/a7f giggles i!tna~-Cstooqhim dur;q few aw_bomentsfinally moved IsU4out5ba word3"al Tom's ear tingled$EBhearWjubilant. A rquieted 3Tom nQefforX Bstud the turmoilRin hitoo greatqurn he h#hi  Bclas1}1 boef it; theOgeography4 Alake3 o mountains, Srivery r contintill chaos wask  Aspelc got "down," by a succ`"ofG1babA dN3he C2 up=ae footyielded upkpewter medalj worn with osten|for months. CHAPTER VII THE er Tom triedl shis min,# " mXs ideas wandered.9,b a sig:a yawn, he gave 0V. It $anoon r4Fb wouldm} air was 3Aly dc#t a breath stirring. IRleepi$ sleepy day drowsing<Re fivUtwenty studying scholars soothe/soul lik= #is_bees. AwayE1fla sunshine, Cardiff Hills soft green sides th[ a shimmBveilaat, ti| the purple`iWa few birds float Q lazya!ir; no other liv*bwas vi$x1but7 4 co^W Cwerer's hear=!be3A, or 3 toA  fE to do to paq drearyH4. HcQ into%poO0his face l"gl%:gratitude3wasa#, ) not know i!enXJ3ivexrcame oua him a"Va pin"!6newx 3's bosom friend sat nexb, suff!ju9;4nowMadeeply{"grm& 2ent.1menj3an  7was'rtwo boy r sworn s|1eek embattled enemies on"!s.^took a pinBJAapel #as q exerci1er.AsporZwwU<rly. SooG 6}Beach neither g g1ull denefit*!ti<!o Qt JoeAQ4ate 1rew "neFthe D/!it C top)Btom. ","Whe, " Ahe iqByoury9nbq him up)qI'll leB!e; "2get d)et on my[,@re to leXalone I can keepQfrom  S v!, go ahead; star!upb escaped!pae equator{6DawhiPtU:5G݁ghis changbase occurred often. Wg"onZ !wa5r^&t7r absorbNHYblook o? #as 3, t9b 1ogeo|QsoulsC to B1ngsVluck  S b JE !hicd&atxDcour9rQs exc Xs anxiouh|!thH mselves,<0Egain:Auld evictorfvery graspn)"to#1 cbe twi%to begin,3pin'Bdeft+Rd him;1andTk W)gl:n(uno longzQemptaswas toocqreachedFand lent a11pin 2ang a. Said he: "KbI onlyd1wan TU2#NoJ a fair;e' ~3QBlame>I'!go l#mu+L?b, I teK|"!" shall--+#liALook !a, whos\ 1ickICcare$m /ha'n't touch %%,Qbet I . He's my/do what I 51him die!" A tremendous sdown oneshouldits duplic r!s3twoW dustbRto flbjackety[ to enjoy had been tooS]sBhushhad stolencschool wCetiptoe"\nVd (Hcontempl (p4~performance |!heQributs'Zt2%broke up a flew to P1 in ear: "PutHabonnetlcyou'reBhome11you)5\rcorner,'.2 'eAslip|rthe lanAcome.!goQoAYcame way." S6"ne+5one group of -gCith EF. InL:*"et e #la.:qthey ha {Uy sat," a5JBthemQ)3ave the pencil 0.Jriin his, gui 4 3ed a surpr Ot&Gn ar2w#fealking. ToAswim]in blissS}%!DoLlove rats?" r! I hatM do, too--LIVE onesI mean dead,qwing rouSr heaAa stq[1for much, anywMA likIchewing-gum<l25o! 8qome now/?8"go1letAchewV3 2youUqgive itQ3 to8AThat`agreeable& hey cheweBturn'Y?K!irSk,!!stRbench "cet#ntment. "W>)an/circus? T #YeQmy pa7!"mew*Atime/ET" "I)f three or fouryQs--lo:. Churchr shucksbD-C (on/; qbe a cl5%nWScI grow )"! ill be nice1y'rBAlove ll spottAL1so.=v1getAhers of money--' dollar a4 cBsBSay,_+bengageSWjt`(2!b ٪"ieN.+ 2youC!to.E so.CknowqQis it2/Like? WhyG You S Qa boyRawon't \ FZ\ Zcyou kiPw all. Anybody%#do.b"Kiss?d=1for2X Ynow, is to--well[yIoAEverqH2yes+'Y8 ". z remember m F wrobbYe--yeW]YC%I  TShall 8YOUHB--bu5No, t now--to-morr8Oh, no, NOW7!--Vrwhisper aso easLQ #o took silenc Acons"and passedBarm Arher waiS]QT talezC7/outh closuher earn he add\$2Now!--d t-P3ShePj" a^2You vBfaceBs^23 seI;I~you mustn'<[--WILL you]?&,!N  .a." He n\DidlyZ(her breath stirr?Bcurl , "I--loveP-.(r sprang#tand ranfs+YCes, with1aft*uy/x Cher 1JQaprone1ped"nehV pleaSWn]ll done--all a. Don' be afraid Eat--+?+ll. Qhe tu{"aD YhandsA+2she us  qs drop;Qface,rglowingy"truggle,,O submitt-!omqred lip 3rNow it'ACdoneEPBt 2yout0mk+@!toXy,2 meand forever. Wi 3'll)u!LLkmarry +2--aX - 3ith)CEly. :. u's PART{)I('U*we^w02me, Rthere<Rchoos Dnd It parties, bE  1wayeO4're DIt'sW'3. IRheard -|%'g>mSAmy Lawrence--b2bigF1tol{ ~DlundUe stopped,1Sused. BTom!,/irst you'v3 to"W chil2cry94Oh,trk I"arshy   1you1Tom3 kndd i  BneckJ j%sg0%im!Qrhe wall1wen\bcrying05  ing word GQas req$: (!pr4as he strodWQbutsideY,2lesquneasy,: Sglanc2oorMQy nowthen, hoping she.RrepenSato fin:4shee-e1 to81 barnd feari.;'roS!ea hard2himke new advancesM ,Nqhe nervRmself{Q and _]"zstill stan797, sobbing.!'sDt smote himD ?2 ,ing exacoQproce-ge said aly: "* ], I--\ A." f4ply 4bs.D1"--/tingly. Y !mea?" MoDTom got ou( chiefest jewel, a brass knobToan andiron2{ $itd h,2thaq,{/3w * y Sc3uckY the flooruTom marH.:C hilR 1far[!rez1 noday. Presently 3buspect rRT1was7in sight. < 2play-yard7SthereU1she,v Cc, Tom!/alisten}trL7had no companions l oneliness. So s t`Ro cryfp1upb herself;qby thisZ L1gata3gai[ashe hatAhide+Qgrief?6cbroken aK of a long, $Q, achhfternoon6! nk#mo Astra/VSto exbsorrow/ q'I TOM dodged hp t through lanes96H@&ou!r51ing3larinto a moody jog. He va,"branch"9"reDH  6prevailing juvenile superstiti!0 c water baffled pursuit. HalfC1! l$disappea<+Bbehi Douglas mansion jbe summ"'Z ,1wasly distinguishablCoff Ccvalleyۖa a deny-od, picks pathless wa>r2ent;4.!onssy spot,spreading oakrnot even a zephyr(*_anoonda(at had 260 Tsongscbirds;:1 lasa trancCwas Vby no sound the occasional far-off hammeof a woodpeckiBm 1 re .1rva|wense of|8*sprofoun=Rboy'su)w!1eep melancholy;o A3s w<happy accorqhis sur1ingA sat< )oAlbowhis kneeO2n i.S, med69 * rhat lifbut a tr=1, at best +3orlRQbeen 2!eda2g--Q very dog#" by some day--maybe wh@8too late. Ah %die TEMPORARILY! Buselastic]o?ath can4e8Aresssqto one {rained shap*46Tom_&drift insensiblyJXZconcern"is7|.T cack, nowmed mysteriously? aaway--A'so3 ?countries beyoBseasQcame S! How 2she{ then! The idea of beQ recu,mto fill himdisgust. For frivolyR jokewStight"anAsy intrude`/1 upbspiritwas exalt3vague august AEthe romantic. Nota soldi<,"yell war-woraillust. No--bette4ld#joIndians,unt buffalo$$gowawarpatr4x2S rang-the trackgreat plaite Far W 0QfuturM+A q, brist2with feathers, hidej$ith pain,bprance. ,(QrowsyN $er|a bloodcurdssar-whoose eyeballaG unappeasu envy. But noOb gaudin than thi/dpirateas it! NOWK2lay~ #"im"glaimaginsplendor. HowMHQould c people shudder1glo(AS go p{Sthe d2seaf"hiu,1, l'qlack-hu 2racZ02e SsFc StormHIisly flag flyA fore! And at the zenith ofQfame,suddenlyDIold village8Cstalcb, broww-beaten, black velvet d ArunkCjack-bootcrimson sash,AbeltJ"horse-pistol9e-rusted cutlass atCAsideM2 sl4("atTwaving plumeIcunfurledthe skull Abone*  Bhear[2sweobecstas>$G #s,3TomJ, P--the Black Avengerpanish Main!"  j,d Acare's determined)2runfrom hom Renter' /\.2theDnext[ Afore rust now+1 to&Wreadybcollecresources %)Aent rotten log nv%'an2digu 5 onFihis Barlow knif1oonrck wood ed hollow"puusand uttwis incan~,i8 dively:bhasn'tDhereovW!st 2re!^rbcraped`"ir Q expo pine sh9:i8and dis(chapely,2 trcH-[5hos'and sides wer/ds'iHra marbl 's astonishmenboundless! He scratc Ss hea a perplexed air7RWell,1bea*y> +Btoss5pettishlyStood cogitatUsuth wasfa Mqhad fai91and0-Brade0AlookR$on as infallibl byou bu OLcertain necessarylsBleft  fortnigh'BCopenCplac"8theP" h ajust uh3yout%a1s2had1los.  t0 H,9 |&Qno ma how widely+}Qk"w,~ bctuallunquestionably *-DtrucF2faiQ shak"-Q its Bs. H"Cmany C Rasuccee3but{aof itsBing :Q occu2himtit several timesC, himself,n;1e h*-scs2warvpuzzledy!an\decided $Qwitchainterf Bharmhought he tsatisfy at point; soe!ar<1he Csand aqfunnel-Qd depo!itJ9=$ F2 toyG and called-- "Doodle-bug, d $'#mev0Wgknow! 5 5*! sn1egaBwork"3bug e a secon2darted um)fright. "He dtell! So it WAS aAdonef !I ;%!knv5'"HeDknew2 iQof tr to contens#chahe gav^"Ś$ag%iT`he might asAhave>  w1 ,Oatheref@Btwicl.last repe2wasRssful$0Qs layU1foo Qeach a. Jus^%ebYntoy tin trumpet 3faintly dow%green aisle~QorestWoff his jacke|trousers,$ a suspe9belt, rakN Tbrush 4thelSlog, 8 n rude bow1arr| lath sword4in A7$Bseizse thingSbound, barelegg 1 fls "AhirtL7halfelm, blew an answ@9atiptoelook warily outk1way2thasaid cautp--to an }!ryH!an Hold, my merry men! K;BI bl06Nowf>q, as aiAcladbelaborarmed as Tom. Tom]Hold! Who s7ASher BFore_qhout my+q?" "GuGuisborneVAan's).^1art-L--" "Dar  hold such language=Tom, prompting--fo8y talked "se book," qmemory.l ~/ dsI*! I am Robin Hoodkthy caitiff carcas:Ahall%." "ThenRindee% famous outlaw? Rvgladly will I dispute#2the=Fpass3wood. Have aeyGWtheirqs, dump4eir.Brapsf e ground, struck a fencttitude,!to61kBv) reful combat, "two up andfdown."p!E Tom aNow, i a've goQ hang=Ait lM!61y "a," panhK !er k. By and bhouted: "Fall!K8! W`+ sha'n't"Nrself? Y(AAwors!it/4Whyh M@!'tv;A#ay it is inVbook says, ' Qone boa[stroke he slew poor $.'!toNr ,ame hit oQ." T#>PFuthoriti 1Joebed, received!whE@nd fell.&"4U Joe,^up, "you8o(N2 ki1*Ffair{f!docE_/ell, it's blameC's aQBsay, you can be Friar Tuck or MucAmillD[ss%R lam M h a quarter-staff; or I'll bSheriff of NottinghamJe w9h?Bill 0AThis a@#soadventures were cr4FATheni!beB6 L!wa- !by treacherous nun to ble s strength away 1ughneglected w- 4And/}! r 1entAtribAweepOC4s, R|Qhim sbforth,V m"ow(his feeble hands", e" Q fallTere buryuu 1eenqtree." She shT$ b&would have diedQhe li>+Aa ne0and sprang upMAaily a corpse.->dA, hi!ira!Gutre Ooff grieao <$noz4u3mor Bwond what modern civiliz= claim to h Qensatiloss. They;F-rather be year in than Presiden the United States 0 CHAPTER IX AT half-past nine!ToB Sid\1senm"be[usualir prayer=(onqK Aawak waited, in rest"imc<{it seem0q be nearly dayldhAlock;Bke taqdespair&and fidge#asrves demQ, buttbas afr+aSid. S12lay,%!st"upJark. EverLDsdismall<2C by,'YSness,a, scarceo[fnoisesemphasizeSC ticking aHh Ato b!itS-A1. O+"&ame! cT(!cstairs creakently. Ev1ly 6 !ts abroad. A m#Rd, mu(snore issued Aunt Polly's chamberA now4tiresome chirqf a cri!thA human ingenuity locate,JQ. NexV ghastly?SdeathwatcDwall bed's head made E--it#abody'sMPnumberedUBhowl{far-off dog roseg 3wasAa fa<K a$r O./an agony. At ih| 1ied+had ceas@d eternity begun;00 to doze$Aspit2e)chimed elevenl0A;#%8me, mingl Ahis !formed dreams, a most ' caterwaulwA raix&of a neighbo)awindow81urbSqm. A cra"Scat! devil!" aQ cras<an empty bo;z}ais aunt'sCSshed T#"dea single minute laterlGand jr$al,Sroof 3"ell" on all fours. He "meow'd" withn once orpn jumped  g3]*QL. Huckleberry Finn washis dead cat #ysAW1off\A,#edO#a gloom%thh," (all grass4graveyard. It &old-fashioned#ern kind13on a hill,5Da miK'Eaillage<1hadazy board fencet $itcAlean 1warY1outek$th!buZod upright nos1. G n!ed!ew rank M ? cemetery. A2old*spsunken in,Mnot a tombston!; {-worm-eaten qs stagg#Rover $ aves, leanaor suppor 1finnone. "Sacred) of" So-and-Soabeen pdm#="ittLR have7Sread,5am, now*1n i3 r7lFA wind mo $reSTom ft {\, complai(#atw(x\<R6nly ir breath6[ -Solemn(Q silew&ppX $irvyo! t arp new hea1yk1eek6ansconcQemsel2ithq protec0ree great elms$grew in a bunch?-WDfeet " "y U  42for H "a 1imeS hoot abant ow.]"btroubl !ne om's refld1ive%.aforce Dtalk) Qsaid $: "Hucky, do&ɘ6 ead peopleGZ3 usDqhere?" Zed: "I wisht I@eEQ's aw3Zs, AIN'T36Q"I beAis."ea considerable pau*"il\Scanva "#iss inward! n_ %ASay,3y-- reckon Hoss WilliamssI1#O'Q he does. Least8rsperrit"7, +a+2 I' #u MisterxI`  Aany l DQs him#A "n'Foo partic'lar1(tXalk 'boutase-yer  Ra damnd convers3die!. Qw Ahis comrade's armE1sai:Sh!" "What is it~$?"i nc%Atogeq!be#2ts.K C'tis again! z1you+{0Q! Now"OALordTHcoming! TQ, surmat'll we do/I dono. Thiny'll see us!'OhbA can!in^ Qdark,M as cats. ihadn't comecOh, doay!. Aliev<1bus. We(a doingl If we keep perfectlyR, may1y waB us N$I'll try toRbut, Y1I'mbBof a shiverListen!"be1!ir s e tof voices float% 4far`(A "Look! Se;Fre!"M  w-fire. Cis it." Somv/1figaapproaK'!Rloom,M tin lanternaTfrecka  innumerable spanglek  K#a d!t' sya. ThrexA'em!yQwe'reqrs! CanBprayNB:BThey! gto hurt us. 'Now I5#meo sleep, I--'"8 AHuckHUMANS! On! iWyway.'s old Muff Potter's }aNo--'tqu so, is AjDYyou stir nor budgBCharpfE to q. DrunkBausual,Cly--qold ripAAll O !, 4stiI5tstuck. Can'"1Herq#Dy coN.[8hot. Col2B Hot. Red hot!'re p'inted?r ,q"!o'qs; it's Injun Jo(2ThaFD--that mur!' breed! I'd druthe Zdevils a der'>!. ky be up t4The.| Dnow,! t 1men $re!e 1     ' hiding- Q. "H?9Dt is Qhird ;\*:wner of it hel TTreveaV1fac young Docts_`1carryingYcbarrowTA rop a coupldshovels onCcast#lo=!c2opeUF7" d1putd|_R56karH2ack1st fX2elm  Q closIhave tou1himurry, men!" !idTa low"#on91com at any moaRJy growled a responsgan digg'Fo(*2 no# b<"gr s)Qspadetbchargiir freighw Amouldl7 was very monotonous. FinaX Q upongScoffia dull wood*<2entO4'Ror twyRhoist'dg>Sy pritd!$irB, goB!dyF!Qit ru - `Tdriftg?Rcloud(0allid faN4he P!as3reaaorpse "it, coverea blanke>buCope.l(out a large spring-knifkcn;#da3z Tthen " Nm$cu Bng's, Sawboned you'll*"ou$ Afive\$ s?y alk!" sai.] BdoesSmean?3te. "You require3r p?Sdvanc(I've pai#'4B don(B tha ,; r Q, who Dnow @*q. "FiveBs agqdrove my q your fX's kitchen, when Ito ask f@(c to eaK3youWa warn'!!re2any goodWswore I'd get,AzQyou iuaa hundcgears, RAme j1 for a vagrant. Dta thinkiqforget?I^Sbloodq Ain m1 no.2nowvGOT yougot to SETTLE"r!" He EQreate<,e !isy Bace,n!2is  Tq8E1retacuffian dropped his !exDCHered #hi^(&rd~b next ! h-t grapplF "wo)Rstrug'and main, trampl% gFtear@3'rheels. !JoaAfeeta81 ey2%am!pa1nQ, snaQ3 up'/V"cr"Q, catYEAtoopCand  w'Tants,Q an oCunitwat onceQ,d free,62Aeavy5 of'n fҲt(Rearth"it8? c YiL A sawXCchanSj2theb1hilthe young man's breas+Qreele4BGqpartly , floodi  l* `ablotteXAreadcpectacf1 Bened Aspee!awHdark%> remergedO , '8two formsPRtempl }aamurmurulately, gw*gasp or two%2wasKm- rTHAT sc; :Q--damF0Rrobbe8body. After h9the fatal2in r's open R hand M dismantled } --four--fivss passeJ7.mB za1. H1nd dw#; C Q, gla!atand let it falla>g)sat up, push2bodA himLJ gaz]aK&confusedlymet Joe's1rd,ie, Joe?u .a:ay busi%#2Joeout moving.d]d+[%I!!it{] 3! TRT 3alkdewash."YAtremDI ew white.1ghtagot so"!I'BM!r!o-@it's in m* yet--worse'nw= rted here.vmuddle; c!$re=#an$gQ, harqTell me}--HONEST`Aold ar--didB it?zJ(qto--'poAsoulhonor, I nevt1ant5Joezc#Oh$+Qhim s, ad prom! -1youC?ay1inga he fe6G ) Bflat !up:3comX1reeX[ding li!.Ajammz%.5 'asE you7S clip ere you've lai'!as a wedge til nowbd{Uwawas a- I may die1if B1all on accou(bwhiskevV!axcitem"I .uC$ weepon Clife: fUO_;uAy'llsay that.( V8ray you Atelle--that's a  4. I_2lik</U !upE { etoo. D remember? You WON'Tc]a, WILL  A/ApoorS'Eture o SkneesUrstolid G#alaspedQappeaa,.)4'veA #fanbsquarej 8me,N# I<#go$n :MsXs a man can sayIy0an angel.bQ*1you^!he0est day I live.> ?Ccry.d 40$#isc 1anyYsQblubb. You be off yonder wa!go+T. Mov 3and5!leny tracksX"onM(quickly increaseQa run  &)He8 If he's as much stunne Q lickfL2rum2 halook of bel#he1eBtillzgone so far he'll be +}-e\!it:Ruch a>% b= --chicken-hear1TwoO tqs laterD0Rd manv ArpseA lid 2the ?+urno insp8!b moon' ness was completet 9too-X THE two Aflewqnd on, towarkaspeechwith horror*y Aback;%?aulders|!to, apprehens95'$yA$m &be followed. EVastump #up'Air p9&.'and an enemyw[+athem c+:bbreath"as"by"Aoutlacottag41yy.=21ark1*aroused +H-dogRagive wq:qir feet Af weqonly ge=ld tannery!wegk down!" whisp&1Tom|<Qtween5dths. "4AstanRmuch ]&ucC)'s hard pantAwere-1repboys fixed sSeyes z 1goaDBhope"4benir work to win it. ained steadily]1st,sIy burst open doo cgratef BexhaIiBshel, shadows beyond. Beir pulses s4Tomac2 2'lli!BIf D dies, I61 hav>!it?D m !?" y, I KNOW 1Tom#om&2t a$JEn he #1Whosell? WePBat aj  ing about? S'pos%!th1appEand q DIDN'T!? he'd kill usLvoO:  sure as *g <@  ~o myself, HuW8q"If anyAtell)t 3, i)Cfool. He's generTdrunky%U !--2 E s C "itrN!ca#teJ:#sQreaso 8QBecau>&"'d1geSwhack"F. D'3 he*5seeT?$ \7!" "By hoke:$'s-!" "And besides, look-a-here--maybeqfor HIM<No, 'taint likely ^GQliquo5ghim; I#th  |h Rhas. 9pap's full Atake/belt him&3hea< a church)2youn't phase 1say his own selfZ)i3sam !C, of(Fqf a manjJGoberZ W&)dono." .*$ve*p)2you"an!1mumw%to.*  #atadevil 5Rn't myQy morWdrownding us&a Acats!weto squea(iF+"ha!. X>u, less swear to one/Z"weveo do--0qkeep mu"greed. I Xkb. WoulGAholds_Un we--" "Oh no @! dA thi . for little rubbishy commokngs--speciwith gals, cuz THEY!c anywa ablab i: huff--but!or%^e writing Ra big BClood2's m0 applauduis ideao1BdeepAdark  t;1our3 circumstances1surRings, ijbe pick'ya cleaniOlvAmoon', took ar fragmes"red keel"7 f 1pocDkK1 onV#wo0fully scra!'these lines, emphasizing each slow down-stroke by clam~7his tongue AeethRQ lettpApres QCe upW&s. [See next page.] "Huck Finn and Tom SawyersCs!ndI+Awish may Dropd!ea6 QTheirT"if33eve1ellX!Ro  p5filKadmiration of~acility inA, an sublimityQlangu3HC'4pinqs lapelH6was(Qprick,QfleshWN Hold on!!dob. A pi1assA8have verdigre#n Qp'iso$/ swaller somic --you,a." SoSunwou8bthread"%his needl!Aboy  1e b.QthumbcsqueezBa drfA. In,{Dmany2!s,amanage2sig!Qiniti9u~8Hthe ~ finger fo/e3ashowed  1ph"! HQan F, 1ath%2bur9!e 1le q5 to:,dismal ceremoniaincantfqfettersJ$ b#ir8consider(Qbe loF"keArwn away4!ig[AreptURlthil(!ugX$Dreak[Wother#A ruiEAuild2nowLQQ*iVTom,"6, "#uYAEVERf ing --ALWAYS?" "O r it doe]cdon't y difference WHATv xY got J BWe'd"--Q6YOUe Ywts rcontinuHtime a dog set up a long, lugubrious<outside--within tenc*md boys q",qan agon+!.ich of us^4 he;%!ga4 dono--peep througw crack. Quick 1YOU#-- 1 DO#Hu2aPlease1 72h, lordy0thankful0I2his)4 Bull Harb`" * [* If Mr. y+d a slave named Bullk spoken of him as "Dl!,"aa son 2dog!atZn"]   1--I" ( most scadI'd a betmM a STRAY dog he dog howledv~W'3Ats s:"nc&.2my!%!no'I IA "DOM! Q, quabAwith? !Z%eytrDHis z"waly audible"Ohr, IT S A1DOG1, qK Who7Amust3 us both--Uright"5.+vgoners.EU1misM   V< I'LL go to. I been so wM m2Dad_1Thites of p1$oo!do BveryD a's told Ndpaxgood, like SidNr tried !noaever I 2off time, I lay I'lWALLER if"s!7Tom0"nx4( . "YOU bad!"7Q"Cons!it ^ ld pie, 'longside o' BI amTLORDY 9 only had half your chanceom chokeds6andh: "LookyA! He?9BACK to us(ucky looked!joh "hil9he has, by jingoes! DFRbefor.bhe didpIS#l,e"!this bully, y. NOW whowing stopped. Tom !up ears. "Sh! k BthatI#0!ed"Qounds--like hogs grunting. No--it'!!snC mqThat ISkWAbout"it8I bleeve3Uat 't| #. Bso, a. Pap rRto sl{Aere, Stimesv t$"gs laws bless<1he Rlifts1s'HE snores. Buhever comOto5own{hXEdventure rfZsouls`/Qdas't`o if I leadR 1to,2, s~ts quailep_7the temp up strong:7 3oys#ryJAnder{2ing'7 @#to@Sheels Se !y 4btiptoe  , 4oneJ CthervJ~4hadlqwithin 'qsteps o|!er'pBstic  it brokera sharp snap.man moan]erithedp his face came inK . It was"ha+rd still\|C too)Aved, )Dfear|(? A nowlypid out, n weather-boar& $-%at2 di# sQa paraword. J qrose on5'B air!w1tur n+!th-2ang  Ua fewQ Xt.Awas $cFACING7nose poi* heavenward! geeminy,VHIM!".A botds a!--say a stray dog3ai Johnny Miller's house,A mid2,!#as.eks ago;6 ppoorwill=1 in4litbanisterZ2ung|aame ev?0U L#B}!yej W"ndyE#se 2. D&cGracieT falls2Afirebcrself terr next Saturd;#Ye@sBDEADwhat's moche's gbetter, too:you waitbsee. Ss# ,Cure  z,)a niggers sN:2all *h<7c,dWBSihis bedroom Kh"al Apent3$ss]$excessive cautionCfelliP congratuP.2himMRCknew escapaden1was _Raware3the gently-Qas awake$Y bv5. eawoke,=1andCrak$q ! ig# lAsens&the atmosp+HA%##Wh% ae not called--persecuted till As upRusualK4  KLtW.%Nairs, feelowadrowsyr family R at tԌ!bu finishedQkfastAI"no of rebuk)Nwere averted eyes;:!anA'ofCHthat struck a chillhe culprit' s He sat "nd &reem gay2it -Nwork; it E$no smile, no; he lapsed "leyheart sin'$tdepths.HNN"idG bbened ir3hop>g2Gflogged;Tianot so aunt wept overxand ask*m-E !gobreak her[!o;rfinally3him o{"ru&3andRher gray hair '1 so=~ '?2 usZ hT: try any more.Z!waCan a thous"ppgaA was sorer nQ:"anL1odycried, he pleaded for forgiveTpromised to reforh 2andj {.[jdismissal, !!he_1wonan imperfec51cestablut a feeblfidence. He lefk  Ro misC vAl ren4ful(2Sids 2 laB prompt retre back gat unnecessar_!mo^o school O%3sad41ook+}hqJoe HarHDwondered i-!ha!ic%nir mutuala<Abody2Dtalk r intentlthe grisly "them. "Poor fellow!" 9T+Cught a)Son toG@=grs!" "T2'll) iy catch him!" This ift of remark"milB, "IzQa jud';=frNow Tom shivxAfromA to heel; >D stooG3 of+3JoeZ$isB12beg}s6Bbe, andas shoute!'s  Aim! 7com!!"U!o? Who?"ctwentyT8. }1QHallo0s1!--=3out!tuM{&Am gey!" PeoplCrees over\'Aheadrrn't tryYB--he4doubtful and perplexed. "Infernal impu "!"aAa by~er; "wanosand take a quiet$aFwork12--dQexpec 263any=part, now u- b, oste%Ausly]3ingC" btAarm.;pa's facw haggar &the fear tha .W bstood 1urdman, he shook ara palsy4bface iNBhand@ QburstJa tears P!do#friends,&sobbed; "'pon my pThonor> z0iho's accTyou?"F" aYicarry home.xCliftme1and3ed ` thetic hopelessnes5sw!:"*Q, youaaised m/"'dD."Is ?V i4himM#. msiy anot ca=1easmhe groundn-*BSome!1tol"'tEM8Ond get--"-1hud Qn wavr4f2les` ra vanquSgestus?"Tell 'em, Joewv'em--itl0n,1tooMbEstar`#he  2-he8 liar reel offrene sta?_# FaFlear skydeliver God's Eningmp]f1seeAroke3tdelayedr JJ3illBaliv'!iraimpulsx  BoathE!avubetrayed prisonerafe fad d 5wayBinlySmiscreant1solrto Sata.#itIbe fatalReddle]~ Rroper-1sucQower - a"$hyyou leave?"DwoC|d Qfor?"ab BsaidRn't help it--$,"amoanedx:2 ru+ ?1see} 3but he fell to5. d repea)BjustZSlmly,minutes after inquest,=Foath 1seeCwerewithheld1q 1rme20qbbeliefH1Joej h Aevilw become,Bm most balefully interes1hadDA , yB not+ M  bey inwu(bresolv w= nights,d#1L should offer,Ih%ofPa glimpshis dread  3hel2rai !of[NRput ia wagone rremovalQwhisp3 Q 2ingv  l0!blqlittle!; Dboys&tXappy Tturn n$wBtheyQdisap "ed1morEn onarked: !three feet of . 7it O AfearL1ecrx+ad gnawonscienc /iqs sleepvAas ms a weekG1at Afast_~3Tom/' !alCyourx1so t3youp8!e B hal9"ti^rTom blaband dr"c H's a bad sign, Aunt Polly,*dly. "WzRgot oB min_d?" "NQ % '[Aof."k23oy'shook soaQhe spcoffee. "An 2 doTustuff,"Ur. "Last said, 'It's 2" t it is!' Y7Aoverover. And y!, 'Don't tor6me so--I'll-"!'S5CWHATQis it$V?" E+  1Tom( re is no\2ing*+ Qhappe\1BluckF2cern passedm7S's fas3 torwithout kno.!it" Aho! W3ful1. Im!ity4 my24Q3its7  S%Lqfound a-Sightypr itself . Becky Thatcherd"st #tolMT had EQhis pia few day<'"whistle her dow+!,"1fai)&HeTfind `"ha her father's Lqand feeI%< was ill.rif she p2 diP)9a3`qno longbdok an `@tar, norq piracy charm of lifCgoneMadreari2lef}hoop away,#Bat; $!wa 3joym3 His aunt "ed& 'rll mannqremedieS2him06wasRose prwho are infatuqwith pamedicinea-fanglWthods of produc2 or mend:an inveterate experimA3 in-s. When sRfresh'cis lin Sout s!in'k{2it;Kn herselfp?iling, bu/!el"at Whandy subscribert-!ll#!"H" periodicalNphrenological frauds olemn ignorance %B inf#1was^th)strils. A "rot" they cont about ventilR !ow$odRet upj/Ro eat$Cdrinl42howQexercI 2 22frag?!onTDelf *.1sor#clto wear,&all gospeӲs=aver obser!ha! h-journalscurrent month customarily upseXhad recommenO <Rbefor21s simple aonest e 1was+5 soan easy vict!gaQ$d <]quackydthus arm:'bdeath, .9 pale horse, metaphorici 1spe> "hell foll"Qsuspe `aot an &1 of[$$1balQGilea6 disguise&he) neighbors.n!wa6 creatmee3new/,low cond|)f$e!haRaat dayN*,bhim upehi}!wn mBqa delug Bcoldn she scrubb3a towel liki7Aso b?t him tona*Bhim Aa wemqblankets 1Aweatas soulw1 "the yellow stainsiV a his pores"--as7!Ye rwithstabAhis,boy grew morh  melancholyp!ej|added hot baths, sitz hFClung,A boyX#"inbdismalShearsRassisslim oatmeal dizbr-plastersb calcuhis capacitn)Hould a jug'sfSevery day}3cure-all-#om come indifferQ32ionn!!isfW_0cphase r1the1Tlady'L,constern;ice must b9!upny cost. Now?of Pain-killthe first a She otd a lot)Ua tasteD 3as with gratitud'Rimply7in a liqui0 J  {2and&P3els2!piZO iA gav a teaspoon# 6Xeepest anxietB,qe resul &r mstantly at rest,Zat peace again; for""?broken up` #bo+1hav!#wn a wilder,i , built arunder him.3feli.to wake up;-Klife might be romantic enough, iQblighy, , c1getyD tooiAsent "oo  %ng it. So heat over%!ouC!nsd ,X1finchit poO fo+n# 4Qfor in4ofthe became a nuisanch Rby teeZT help'2Aquit)q >Ieqen Sid,had no misgivto alloy!dePEsinc&3TomMF bottle clandp#el (" !rebdiminish" !itW Cccura t5was t!ltIta crack !siG-room floorit. One day athe ac 3dos  Sy"#'su$ c along, pur#eA(%heHR avar.lqbegginga({said: "Don't askit unlessAwant&Peter." But s1ifi# W2. "You better make suh$?ure. "Now you'v( give it to you, because E $ #m"mebiEQyou d,mustn't bl8Ebut your W agreeableEH mouth open)Voured.Sprang a couple of y+Aair,LSthen %ed a war-whoopsL!f & the room, b st furniture,/ flower-pom*  }Z havoc. NextiRose o}"hi6,#pr ja frenzy of enjoyment,<2his,F !jL proclaimingunappeasrhappines % Atear ?ahouse a spreaQchaos>destruct! Gath.U!edDime r&!im/w$double summersets, 2naly hurrah,AsailG1ughVt, carryK1res^Gthe ZGm. T  Bpetr astonish2 peer glasses;Alay ;qor expiaKRlaugh?#"on earth ails@Tcat?"N'u, aunt,"O. "Why,+i!diaact sogcDeed IWknow,e; catsq6kthey're having c A" "$ado, dof'?"Btonemade TombD1es'at is, I belie<(2y dAaYou DO1-  Qdown,n 3ingwAinte>emphasized by{ R. Too?@!viAer "f.R handthe telltale 1visC ed-valanceUi ald it tom winc 9yesBAraism Qe usuandle--5"ar.csoundlj %DimblS, sir (1tre"at)dumb beast so #pi Thim--Zd!nyj." "H!--you numskuhQat goAdH" iqHeaps. BRbif he'?Qone sqa burntF4out2! S2 ro 0QowelsX!of3'w"n,PBthanra human!" Z!fe: sudden pang6o1Thi1 pu yhl |6 ruelty to a cat MIGHT beboy, too  soften; 2sor=r0',I Rshe p<'3 onDheadd gently)'qmeaning -!stQ. And , it DID d !-&om)" i Bfacejust a percepttwinkle peepinggravity. "/!haf Q%ton-B? Ye*BforcX," adR: he 1lea!if!cr`wqno choi("By` `h2farFMeadow Lan,t !ll to "take up" t, Qd fai#up"eaG;, !Fink %,Bhear old familia!nd rmore--i Bhard0v$ou<ld worldc]submit--b A for1theQ sobs.a thick@O1 JW  2poi7m_'s sworn T , Joe Harper --hard-eyCwithD5tlyand dismal purp=Srt. P 9b were "two(but a singl&" Tom, wi 9#ye1fleeve,qblubberBsome about a 6p to escape from hard usag1lacsympathy at= by roamBbroaOFto return"3by  Athatm=1not"m.it transpir was a reques !chK2hadKRbeen  nIkN3#a)1hun1 up_. His mo ad whippfor drin ScreamhX  d knew ;*1plaUtCwishto go; if.<!waXpl but succumb2opebe happy0a regretDing ;"erW1boyxA $un) ddie. As=wEwalk gClong7 +compact to u 8 byePQthersqseparate till death rgm2 ikyj3lay.:tplans. "Qfor b2;a hermitC1livb qn crustJa remote cav1 dy O a#rand wannRgriefQ% m31to 1he U S&a4~_conspicuous advantages1 a "so ansente!pi Three miles below St.easburg,|!wthe Mississippi Riv "a OaWQ wide"a !qnarrow,%ed islanS \6$2bare  o"d well as a rendezvous%1 in2!edrlay farQtowarL her shore, abrvba densk{Twholly un o1estJackson's IC chosen. Whon!*aubject%Qiracis a matted2 ]Ay hu(up}R Finn8 JmRqly, for rcareersho hhe was$jy,75tlykmtu#!ne;I$ot]river-bank two,vn1favorite hour--4\csmall log rafIthey meanLLd. EachJr,2ookl6)such provisiA4d steal amost dnd myste!way--as bec +butlaws_:Rbefordaftern2donCy."agsweet glory of b~h12ttythe towne"hear ." All whohis vague hint!!cas"be mumTqit." AD Tom@a boiled ha9c a fewKs 1%ingrowth onQbluffMthe meeting-8VstarlBveryAMT lay Qoceanl3Tom6ed Qbut n3 m Q>the quietenN!ve%w, distinc$ 6stlAansw 1bd twic; these sig, K&e ;bThen af5ed voice!We!reTom SawyK^he Black Avenger Spanish Main. Name your namesuck FinnERed-Handed VTerro]2easw BBfurnq rtitles,56hisIliteraturA'TisEC. Gicountersignwo hoarse whispers !e Hawful word simultaneJ"torrooding<: "BLOOD!" 2Tom6 sQUC4Cdown@qit, teaboth skin1F/!es~ome extenXB'BfforF {., comfortable path (Bit l8the!of pCicul8!da/rso valu[&  b d4bac3had Tworn 2outy'"it $.gstolen a sg* ntity of half-c#leaf tobaccol- corn-cob 3pip/.3An3e s smoked or "chewed"A saik !do2tar"z)J ! w1hought; m]ahardly'@Z"reaat dayqy saw aWa smoulJgG1a hWd$3aboy qwent stc'@ 5andjErhemselvsa chunk Rn impR'adventurLbit, sa r"Hist!"[A nowT2theV suddenly halt!fion lip; movM on imaginary dagger-hilt4!gi1orders inX"ifj/Dfoe"cc, to "%W)'K dilt," " "dead men tell no taleWhey knew2 en< raftsmen 3allQ lC in stores or haae2{]D exc^ aconduc` /1 un"AicalAOPved off, ,iEmx CHuckJ1oar!Jo=D qorward.>stood amidships,T-browwith folded arm/7hisTstern_: "LuffDbI"wind!" "Aye-aye, siraSteadyNAady-f it is/!Le!t go off 1P 0Aboys 2dilcly droGd mid-stream vno doubtET"gonly for "style,O! t!to E any&particular&a?"l'?1 '?" "Courses, tops'lflying-jib?"Se  r'yals up! La[Saloft,$! a dozen of ye --foretopmaststuns'l! Lively, now1hak\/maintogala@RSheet braces! NOW my heartiesWHellum-a-leeKTrt! SX2wJ4comes! Port, 1NOW, men! With a will!  T\ drew beyoc7mid#&   ed her head7?then lay oi)Hnot high, s  B notathan aEor t=C82. Ha Awas j!duthe next;-quarter ran hour2t1wasGing BdistXwn. Taglimmenlights showed rit lay,1 "sl#,j vast sweep ofAa-gemmed water,the tremendous ev:4!ha happening. 7 7" his last"-Q Ascen!hirmer joy06ter8wishing "she"2rsee himuQabroathe wild sea,~ng periladeath Qdauntj%, his doom| a grim so/rlips. I,!bu mall strain'0R,!to&vet Island 6aeyeshoN'Cthe ["edZ!a vnqsatisfi\a' p last, to q3so I y came near let#e \Q drif)m\ArangQthe i< oediscov "j !inF%qmade sh\o avert it. About'clock ip1morU'Agrout+1bar8 B thewaded backzforth until Ahad 2"d ffreight. ParRlittl|'ngings consist an old sail"isgaspreadIr a nook ce bush$1a tbo shel6eir"s u TsleepVqopen aiDgoodq., .!y6/sk J log twentyirty stepk  sombre depth 4estDen cme bacon1fryb!anI1suprgAand fY"upcorn "pone" stockw4had;seemed glorious sporuAfeas%at wild, freee virginunexplor%5 un CR, far61 2aunm Ba returcivilizations a climbO&!ir3 up6Bfacethrew its ruddy glare the pillared tree-trunk$irbtemple?X aDfoli>afestoovines. W'!he crisp slice of ""on,qallowan* pone devou Bstre'3outt grass,Q;contentmenyBhave3" a coolecZ Qthey 9dena romantic feaZ 2 roh camp-fi2AIN'T it gay?" !JoIt's NUTS!Tom. "WhathHA Aay ikasee us Say? WellB y'd just die to b&be--hey y I reckon so, 2; "͉s, I'm suited. M/u't want"better'n$Aever@#Cgen'ally--and > Rcan'tXband pikAa fe<Z qullyragDso."HAthe dfor meXY6!toCup, y(!ch{"sh 'at blame foolish5uYou see 3do ANYTHING, Joe, ) aa[hermit HE haRbe pr0dxm# t0naany fuyyGUll by&tt!ayPAOh y What's \ "but I hadn't thought muchFqit, youT. I'd-deal rather b mq I've tN(!itC3, "'"go}#onsQ!adQlike ^^Ato is`Ce's M'respectedr2 a Q's goWhhardest 6Ican finput sackYa 3hea)s<=$1raiAd--"5at does he put V for?" inquireZ0Fdono s've GOTV.6rmi5!do2:1do 3/5wasDern'd if Iww'v?an't do%`#WhY:'d HAVE toP'N0!itY6I3n'tv"it2run.S" "R "! you WOULDnld slouc<0be a disgrace U no respon*ecemploy)chad fiqgouging Qa cobQ now A"tt:e', loaded it) was pressing Qal toRchargAblow! cloud of fragrant smokj&iMfull bloomp-1uxu   ) envied himW majestic vicM secretly &vqacquire?hortly. 0AHuck:Q1pirT?E+,"Oh^#n1a batime--(b 2hem3get "nebury it in ?6#ir $ w!re's ghost Fings]i kill everybod --make 'em walk a plankSA y!wo "q Joe; "YAkill5RsNo," asT## 2g--they're too noble}Tbeautiful, too.Awear[bulliest }es! Oh no! All goldsilver and di'mondswith enthusiasm#o? !hy#B." o"caDbis own orlornly I ain't dressed. h"a &ful pathoH=;Z#go3!bu1$sex@Ftoys tolbe fine#escome fast,a h0Sbegun <W^2him!^2his'4rags}Qbegin,l(Lqy for wy  a proper wardrobe. Gradu5talk diedk ;vwsiness6'[z t eyelidm fBwaifF pip3ub9U (Drhe slep qcience-aR wearL ta} 3 :J%in . 1saiYayers inwardlya, sinc Dith authority them kneeXQrecitC1ud;h"ru2d a0!no$s(1m a,,were afrro proceU lengths asS, les:might call2 a dspecial thAbolt3 c6cn at o Qy rea1ando7'reimminent verge of O.an intruder( ,: not "down." F ,4e>41egafe$fWhad been doing wroD -#eytb. 3meaAthen!rezr^CcameY to argue it away by remindingzhad purloined1tme@nd applesfAs ofKB C!thin plausibilities;E!m,che end? R!ar%the stubborn&"ta-was only "hooking,"F6,O"am@valuableCplain simpleSing--Oa command againaMi"Sov  5hat;a4 "bub", )U2not~Q be sd.!thl}Ume of.3$ e؍uP Lc 39]dstent # Hfell CHAPTER XIV WHENCawok!, he wond% he was. He sat5Q rubb Rs eye'ny"omBd#ool gray dawT#ya%-8of reposKdeep pervading calmGBsilewoods. Not a leaf r!!; ! s!ob|great Nature's medit!Bedewdrops W 2upowCleavQgrassBQ whitY!xcPathe fi,Dblue3werK|some hand$r it laydst to (/Bdit by a narrow channel hardlybhundred yards widetook a swim | hour, so i the midd#thEnoon2Yy got6ptoo hungrRtop tdthey fared sumptu"ha-%themselves $balk. B_S soontto drag!en6} 2itybrooded pG! s of loneliFsFtellUaspirit1oysy!toking. A sorQundef,e creptWmVdim shape'6#--budding homesick'Even Finq Red-Ha.was drea doorsteps\empty hogsheads~all ashame",1weayC none was brave to speak &a. For A Aboysbeen dullyM!ouna peculiar A ,2"sometimes i>2!ic"ofZ##ckAk"ke6>!no' #(isAA1 befpronouY!fo a recogn72 st a glanc4 \aassume1ist23 atfR Thera ,R, pro_band unK1;Yqa deep,ren boomK floating downDn.#is it!" exclaimed Joe,S. "I [!2Tomi whisper. "'T@!8thu+@Dan awed tone, "becuz4'bHark!")qTom. "L7q--don't\#."2wai% 4hatSan agV] ame muffled boom trouble$| hush. "Le(5seevBspraVAfeet%"hu_ MjS1ownp1y pCy u(1ankM!pe2out+2ated 9!steam ferryboakTabout1bel' v,3Aing @, urrent. Her T deckMScrowd b*<!re^# amany skiffs ,T&oru9 neighborhooBcoul{determine what em&!jeSwhitedburst z E's sKas it expSand rNa lazy cloud, tAsames Cb ofz1orn steners again{ 9now Tom; "somebody's drownded!`HGHuck&*last summer,\Bill Turner gotVvy shoot a cannon ov$at makes him comRdtop. Ytake loavBbreaRAput &q in 'em2set Tyr,anybody!!, L'1ll =9i #!op'I've heardDthatUJoe. qread dolR!Oh)](Ld, so muchW&it's mostly v 72SAYib it ou%. "y >6say<iqHuck. "p r@O1XWfunny. "But mayb!sa)E . Of COURSEb do. A1$<Tboys agre=AQreaso(1TomF,@% a!uat lump3Buninfeescaped, unawaR.Bby Joe timidly H1&ra roundB"feeler"3o hI rothers  # aa ;D--no[_but-- Tom!er derision!, uncommit s yet, join"Towaverer quickly "ex)#ed 1wasTT g f<ascrape4 as#tachicken-hearted a cling-o his garme"!s z&uld. MutinybeffectV/1laid$qrest fo{s moment."heMQened,&#no&H to snoreTQ foll13nexc#laG)lbow motioq,>V %@1twosntly. AT he got up cautiously,7CkneeZ#BsearQ<the flickerflections flung%!he"*!piJ !upDed several| semi-cylinder:3hinAbark%t sycamo)1finchose two whichto suit himin #3lt #fi&ly wroteV@shis "red keel";4qhe rollBB!pu"his jacket pocketFtM $he+Joe's hab remov$lD  owner. A CalsoQto the hatschoolboy treas most inestimable value--5m a #ch India-rubber b ree fishhook@$oEQthat !of marbles n as a "sure 'Lcrystal."tiptoed his way #!s Y "he  h drhearingstraightwayc=a keen ru  "irr \-V A FEWsirX&!waM ) BhoalNbar, wading qIllinoi].re. Befoc depth rea,%Chis  half-waF  a:" p="no%},#aso he k]1wimKremainingOSswam bing ups   $=faster than dcted. However, 1Zr6$al3AdrifUlong BoundUR plac~JfRmAis hA N6Aiecexark safP .R#,35ing. Shortly before tenFecn openroppositBDvillA saw2 ly ? Btree- the high8. Everything^quiet undCe bl- !stK2He dkRGZ1alleyes, sli!c, swamor four strokXclimb7(I)"yawl" dutyEPboat's stern!1thw)ited, panting. ;!ra!qbell taavoice gagH1 or:o "cast off." A]j "la("'sh]ZsAup, s 1 swQ4voy abegun.M in his succ7!fom*ait was2^AtripB 2. A/e!a HRtwelvcifteenSwheels stoppedDTom aoverbo."ndaLysdusk, lSfifty6Bdownk,<rof dangpossible stragglrHe flewY unfrequenl3leys$]C:r aunt's QfencehoRapprothe "ellE lBin a+)1-ro Bndow"a 8was,& r/ Aunt Po:Sid, MaryfJoe Harper's mother, grouped togeB talTH s b ' &the doort B dook softly lifBlatcn he pressed gHyielded a crack; ntinued push,G= band quQevery it creaked,wQjudge  squeeze~9ugh ;i #hiq, warilWcqweblow s=I5up. >CAor's , I believe. Why, of coursr-cis. No , gs now. Go 'longqshut itF"."j"edM"la"Ded" 7`|C"tould almo\"!uc nSfoot.#asJ "Q rn't BAD, so ay --only mischEEvous. OnlyRgiddyharum-scarum, F3He Z2any bresponoa colt. HE never mean12hart@2]%st2boy:awas"--g&he!cr[Irjust so{my Joe--always full ofdevilmentbup to  rischief G`as unselfis'3Das h"belaws bless m&w2k I.an!htz#m,:once recolEAat I3wed myself ]Yis6$Sand IP1Ahim Xgi#ldv!, R abus!!" CMrs.ba sobbebif her3 3hope Tom'Jvter offi*BB"butQ'd been 5in some ways--" "SID!"the glare 2 olc3s's eye,yBnot 12. "g9N_%st my Tom,"Qat hene! God' Cke ctQHIM--F< YOURself, sir! Oh,G2, IuR know=odim up!!!!Hesuch a comforjla he tohQed myJme, 'mosrThe Lor,!th2tqhath taSrway--Blb 1nam"21!w$Ait'sKard--Oh,! Saturday my Jo<#er bmy nos D him sprawl%aLittleH $K !n,TCsoonfKto do over K1hug3and1him6 IeYes, yj1howMfeeljust exactly/longer agoqQyeste(Snoon, took and f3to tPain-killI$ ct@e house down!Go%Agive"I  ''="my thimbleY3boy 1deaab P  H"An'rwords I7Ahear2 sa6Rto re 2#Bu\6Tmemor$X1the$la3sheqentirely as snuff;:T now,Nm Bpitythan anybody elsP #ou E cry -"pu^4Q%kindly word #imm$oY)DFa nobler opin$ H1befdStill,rsuffici Bhis  grief tB!sh] tIoverwhelm herB joy;eeatrical>aappealKarongly0is naturAo, b]R resiJbnd layX*R. He&on'F#ga|qby odds;Bends+ conjectured at fir!atP(/#e#le+;M+ec0rraft ha Unext,2]she missing ladspromised!shqB"heaQq" soon;Qwise-8*$"pA %atU "Sdecidk8g`fC"at tturn upnext town below,;|N(found, lodgede Missouri pQ"fisix miles t| nBperitIbust be`%1ed,1 hu have driv4rhome byqfall if5U1soo/  W searRbodieb!8Qfruit !ef Amere2cau; 2ingaoccurr} mid-channel, sinc Qbeing swimmers,otherwiseSBesca|r Wednesday A. Ifsuntil Sunday,3opexAbe g\!ndMfunerals&$ p"onA shuddered. g>Dsobb-j0 2go.  a mutual impuly two bereavedMA flu =/5Qeach Pb's armvQhad a|,A-o{!#cr jwparted.q was te+ far beyon`Q wontu+cRto SiMary. Sid red a biCMary<#ff 6. and prayeM so touchingly, so 62ith qmeasure1lov8OGer old tremb/Avoic  3welin tears ,B sheK&9h Rstill3A5#shZ"dsrmaking -sejacula1romB, tounrestfu and turn:Q "at* "as", !oa.| sleep. Nboy stole @;*cgradua;Aside, sha"e b-light=#andQstood4r Gher. HisIrfull ofA $e [5hisxq scroll.+ARto hi he lingRconsi"R face,arUsolutW "s x Bt; h(ark hastily iv9 !ntv k[2lipAmade#stORexit,pWabehindxAthreYhis way backmhB!no \Arge ! S2ldly on 2oatwc tenanRxceptWahAman,(xiE slept like?ven imag] CuntiGS 7 zi-<$on. 2 up. When h!pu`!a V6$abhGD, he2S quarrCacro  Qstout Awork !hiT !e , side neatlyn" ts a familiaraof wor1himYBwas &Aptur 3b, arguLRat it;1 beFAshipfore legitimate prey!qpirate, a thorough @ 1be Cfor z!enCreve8B. Soo<a qand entBoodsslwM`arest, torturin Cmean o keep aw:!an]n;Vhome-stretch far spent road dayJ"he r*DRabrea  rVA barr{JO k !unzbwell u1gilI:2eat=its splendorhe plungtream. A "he paused, dripp" treshold2cam + Joe say: "No,]true-blue, Huckqhe'll cl "ac?won't deser2zstm uZ>ğtoo proudfaat sorXI a. He'sBo2 ora55C whac[8/!e 0s is ourz^i4hey?" "Pretty nearKrnot yet_1wriIAsays:B aregO 2her+? W$\he is_2fine dramatic effect, @Aing +l.o%F. AW:o "co2fisshortly provide?2as WQys sea G!itGunted (and adorned)#Qadven*% Ba vaRA boa_ P"anp."wh p>AdoneHn 5hid)BawayAshadwQsleep 9!ss&'ready to$]>e#I AFTER dinner 4ang !ou-hunt for turtle egg+ 22nt *,poking sticks s yba soft vNe eir knees#duJ!A5. S9tAould{|igSsixty<cone ho6Qy werfectly round'ea trifle smaller`an English walnut famous fried-egg(gHCnighFanother on FridaBnq!1AftK7o%cwhoopi ua|s chased(j2anda, shedclothes ,  _tere nakePthe frolic far1 upqshoal wstiff current, wYtlatter {GC leg 1unde7^1cre qun. AndX9 !op) osplashed iY)Rfacesw palms, !7ing#Q aver-@Grto avoiQsprayQd finb g! "ug,jt0 st man du$s (9TAall WQtangl6S"egucame up b%b, sput q, laughqand gas1forth at on{ )BQ7imeh|aexhaus$1runBand  dry, hot!li ?+3covB_"up !by.!byk2terjo original performance onc/>3. FQit ocX /Hn skin re ed flesh-colored "tights"F6afairly!#qdrew a i circus--&bclownsP* b none  |"R thisRest p  `a. NexAy go %ir:+l"knucks""ring-taw "keeps"at amusement grew stanH1and a BTom Cnot ,; kEin k;@f;trousers %kiY!stfof rattlesnake his anklehq U!hecramp so lo8xhe prot+ @Bchar )di *Btime6Bboys!ti%ndwD res#waapart, dropYq"dumps, fell to3!lo1$ly"thEj Ato wlay drow1un.s u  r"BECKY" big toe;*Acrat`!9Angry5 1forD weaknessXqhe wrot!f ,!!thgcnot help i !er&itAEtookz"ouc Aempt# by driving 7a toget7!nd 3 m. But Joe's D1hadhn$Abeyo Bsurr.q $o 2Rhardly endBa miserB iIerlay ver surface.was melancholy, too"waeFhearted, bu)e~A noty 3howexa secret}^ to tell,B "this mutinous d2sio72not#asoon, Quld h$+1o b6Y@Bsaid2eatof cheerfulness: "I beY>Ebeen F 4is 1efooys. We'll( VgAThey>'ide1lasomewhY6UHow'd ight on a rotten chesto% f#--But it roused onlnt enthusiasm 2fad no reply. Tom!onz+3two!se}Aons;KAfail($ooI discouragz!k.M%sa  %" a A!lo%fgloomysid: "Oh, let's !!it up. I wango home. It'sQesometOh no, Joe''ll feel be- b{($by (T?!JuD 1inkah2?C" "u$ $4for)"(t) Bing- 2anyJS" "SQ's no.$Bseemp1it,0chow, w 2re t7! to say I sha'n't go in. I me b"shucks! Baby! Yousee your4,XAYes, I DO0#my.B--an)A, ifhyBe. Ih$2 ban(Bare.c'U"%ed.wlQ cry-I m,"we A? Po08aing--d8?t$it<?'so it shall.2alike i+Xe, don't you`sFstay|?ir"Y-e-s" !ou  . "I'll:Q spea-2you2 as- as I live.1ris\!"TQnow!"&9ved moodi [6and&#d<t!ho#1s!"hNQwants'to\,$ho1et  ed at. Ohr#3iceTand m[Ries.  V,A? Le0f#unts to. we can get0{aper'apAB< as uneasy Blarm 1seeGgo sullenly on/ sUAing.5# QmfortK Huck eying"prjO9Xso wiy5 such an om%K. Presently,v2 paxAwordwade offh"the Illinoie'AAsinkQglanc bU'3loo> `;yVYI#gog!ItfM L4  it'll be worse. J*usR"=)1canKgqAstay27+I!gosWell, g/--who's h ing you.+QCpickR scatqclothesjvtAwish4'd ol3youi`.wait for youq!weCV""3ra blameh5all!st q sorrowR awayM3Tom _Ba!6ng desire tug!at;#to ]#gotoo. He hsf stop,; sw Aslow. It suddAdawn y awas bemBverypQcT3. H2one Y-d?s comrades, yelling: "Wait! (tell you some!F#y j!ly1ped$SaCgM zh5e1ingc yK|cCat ly saw the "C"s # aN set up a war-whoop of apCk#1saiTRwas "Aid!"3qhad tol]m(,#2n't away. He made a uible excuse;O!hipIl reason "be:" fa#ev<T#DthemmA ^great length ofSs$so#men 1hol eserve as a A .B ladNCa gayly:4:9 ir sports will, cha6!im #ut:stupendous plan`Aadmi)wenius of it. Aba dainA and ,!he*ed to lear bsmoke, 5Joe caughQ ideaSBlike to trysXQpipes7!fi 2the@se noviceY1 d\Lbut cigarsPof grape-vinGQ"bit" Stongu8not manly anyway. $yo'Vir elbow1uffBrilyd!slr confid9AThe an unpleasant tastGgagg Why, it's@0as easy! If0a2e/sCall,"t + #SoI4 E. "Ic!no'hy, many aI've lookA peonm$ well I wish I!do's; but I 1%Tom. "T!aRme, h$it 1You1earK Stalk <k--have o qleave iKAif In't." "Yes--5MosUHuck.$7D too Tom; "oh,ZCR. OncW1 1e s5 ter-house. Do rememberBob Tann771 thand Johnny M1 ,Ilcf 1, 'ame say  !Ye\ !. B#ay I lost a white alley. No, 't*.z --I told[1. "472s iI bleeve4Apipe4dayMfeel sickNeither do>}]$itV1. B!be  4\ !! 7keel over wtwo draws. !le D tryB. HE'D see! !beRwould !A--I  Aa tackl2onc 3Oh,)2I!"G@s:youI any more%an!onqtle sni fetch HIM." "'Deed2oul U. Say aus now?!So ay--boys!saH !i BsomeRy're = ,W Qup toQay, 'got a pipe?aPae.' An2'll31kin%1carO like, as6rX  pIamy OLDw", (03 on'rmy toba+bCin'tood.' AndZ1Oh,'" r 's STRONG e3G= $ouhO1igh ras ca'm!Eqsee 'em-S4thagay, Tom 1ish0aas NOW5!!we \"weQerwas offQing, 27 w#y' dalong?Bnot!M4BET@ll!" Sotalk ran onV &itEflag"'grow disjointedBilen adened;erexpectol marvellously ]!^ry pore ip <boys' cheekame a spouting fountainiyj2bai the cellars   rs fast Kb to pran inund;2overflowing+M throatsqin spitx 2all*"doF = Fings"Metime. BothY1ere2ing2pal miserable, 'from his nervtfingersx!. t_ygoing furBboth pumps baiB"Mm|\)id feebld) =Wknife]hCfind Bquiv2lipb 1halutterance2'llyou. You go j`Rhunt r? !pro!No needn'tvHuck--wdS ,BgainAwait!Q hourCr%itpK'"to Dhis :yswide ap oods, both U!pa Aoth a1 0informed him2 if#ha!ny trouble agot riQ"itnot talkative atT}Snight4Rhumbl1henQ prepCdp "ft meal andBparez\ "ey[2no, 1fee,well--some+1 at )mӂisagreedQ2 A !id!aw-dand ca0{ding oppressive:#ai83see02bodiNXa huddl  !so1thet(Cndly*vionshipr4F/} 2ullj=aheat o  breathless atmospA sti<Ty sat94%Awaitholemn hush 7b. Beyo{jfire eK3swaSQup inAblac`!Hr  &aaAglow  vaguely revea^ foliage for a momTavanish4by " crc1str?#n & faint moanA siguL"th0 tranchesRforesboys felt a fleeting ,ywshudder fancy tha?S! Nd !!by/. Now a weird flash,! n?Ainto  hgrass-blade,=i and distinct %aBfeet $it[three white,/tled facoo. A deep pea "thP1rol:and tumbling "r heavenGlostw# r4Qdista$A Ƙ chilly air passed by, rustlingjyn!sn the flaky ashes broadcast !ir TfiercElm FN% stant crashD#retree-tops r'Mic:p$in terror,x%athick 6!p~q. A fewsurain-dropCl paf* .. "Quick!!W"foLtent0csprangs\Broot4amoQdark,awo plu&same direction{ blast ro trees, making &as it went. One blind yH #ndnbf deafJhFnow a drenchinv1 po@#heK hurricane droveGsheets a`c0Qround<" c#u Beach#,the roarafoj-C!s >eir voices7 ly. However, one by; O 8\ook shelterk  .Qcold, /Qstrea5 ,;o%!y =?DseryR1o b teful foK  x 1 olBl fl{Q$soW2ly,0 Wd noise1hav[A The6(esS!er:qhigher, Zthe sail to "se/1its ]4X"wiCaway- %. Iseiz0"s'1}Rfled, ye bruises, toԁ2oak`U86d-bank.b battlsTst. U}R ceas conflagrf of lightnR flamii*AkiesSbelowout in clean-cuTTless Qness:"be:the billowy ,<Bfoam$@Z0 of spume-flakIhe dim outlinSdbluffsoside, glimpUD drifting cloud-rZ1lan1veirmE "L9 some giree yielR>! fand fell younger growth;Vthe unflagg/ S-pealnow in ear-splitting explosive bursts, keeBshar8 unspeakably appa[storm culminatone matcy ceffort# qlikely *+9q to pieQburn ,! ig, blow itBand rq creatuA it,av" 2. IKra wild rfor hom#}Q. Buk}'do forces retir Aweakd h threag  peace resumed her swa  %nt>Scamp,YC! d3wed3hey`Q was Sthankp07eat"^Dthe  ir beds, was a ruinTJQblast? w uwere no3Rt whecatastropppened. |! i pz!ed9A-fir/Qwell;5 t-v-AheedSlads,3Bgene0ymade no prova +/#stHc! m pbdismay2|Q soak3t eloquent iNHtres/,%,1verY0 [aten so far up HQlog iL  dbuilt !(wW it curved upK\3 &$edn Afromground),%a-breadth or so# \V2!weB; soCpatitj-t7kashreds+qbark gaBthe 2sid#qed logs+ay coax61"toQ. TheRy pil=$5boughs ti]# r furnac<|# glad-heaV751g1y d{ , !boo"haOXD feanN ][3satJd aexpandd glorified8Q<]9ndry spot to sleep %6-B. A@6sunssteal iN2oys !si!ov"em sandbar2lay1<Ogot scorche.8drearily se(breakfas"CrustJcstiff-4mhomesick once;:%Bsignbto cherTup thp+;ɹ2C. Buc 1not %fo6, or circu .E, or"%Aremi1$ imposing &aa ray 6eer. WhioD, he`7mRa new devicaK Hqo knockcbeing aq e"be*c!nspqa changOHeattracis idea; sonzs;m^head to heel black mud, like so zebras--alB Zchiefs, of course/aEwent* `A"tt%=s settleQg!By|yn ree hostile trib(Vupon @ bambushdreadful 'kQ%hcalpedHvousands  gory day. Conse$lyan extremelisfactory one. rassembl\Dcamp-rsupper-*<|`KYj4but[ifficulty arose--!d]1notk of hospitalityR-1fir<8 ,: qsimple nAsibiI@"smv2 ofER processeLDaof. Tw davages;7wF 3hadd$ed%. oD}2 wa;with such show 6! aCSmuste# Apipe# 1tooqir whiffA tqdue for1h1gladBgone"rya0Rhad g;S e now smokeA hav Ao go^;Aget 67d be se#un02abl1not AfoolG jhigh promis, #of }practised cautbafter R dfair success y spent a jubilanAning\FeRhappiw new acquirp#would have iwnd skinning"QSix N s. We will$toqnd chatL?And bsince we=nther use >, . CHAPTER XVII BUT} hilarity ?Btowntranquil eZafternoons Harper~Aunt Polly's famiE22ereS3 pumourning QgriefXP . An unusual quiet possess= village, althoug"Rordini 8 !all consci*Ir!du ssaan abs^#ir+ nblittle*sighed ofte.Ftholidayqa burdeL !Shildr61 no) Rsportz h>gUbup. I Becky Thatch1!unqself moB2abo Q dese5 aschoolc)C yar1feevery melancholy sDund  t73to FPShe soliloquize:if I onla brass andiron-knob-!:(*Dgot ` e%to * him by." And she choked besob. 5)7sto CXo9!tchere. iRto dog  x( say that' n3 the whole wor Bhe'snow; I'll <.6A seeb.12is 3t broke )1wn,qP!ndCawayQ down9Uun quite1F!ofs Vgirls--playmates of /and Joe's-- b 1ood2!Qv1 pazfence andfNArentqhow Tom]rso-and-+d2ime"csaw hi6'6how#3andmrifle (pregnant# awful prophecyu(2eas "!)  er point>tWu2actwC"heClads" 8addNpa"and IBa-stR just so-- as I am nowOf)qwas hima Aclos e smiled,Y ?2way!th!l+"me !--R, you knowD!I wZ5Wmeant ,C/1can TL a dispute5who-Bdead.cin lif`Qclaimat dismal|qand offLevidences, more or l: 1amp!DwithVrwitnessDwhen ultimately decided who DIDrthe depl"exCwordthem, the luckR2ies Aupon1selA sor"sacred importanf z1apeand envie=che respoor chap, whono other&z"toF,)tolerably 2c pride 01'Z9# ucked me-BRat bi Rglory failure. Most s "athat cheapen&!1incWWa=4loitered zs2rec2r memori!osu2oes3wedC. W\-B hou 1UfinisFnextell begaoll, inst# r  @I1a vtill Sabbath2the ful sound %in<he musing9%TlSM#on` &rs,V5ing$ vestibulQnversCwhispers#1nt.zQthereF$no/Athe 4 ;g]6eal"of dresses +f womenZ<eir seatsZ3urbJ= T. Nonpi&er q churchd!beS full5. TXMa&Q paus expectant dumbn  CV,D#Rby SiEMary yV C ball in$2 qcongregb old ministere, roselBntileos Bseatront pew$ncommuning2., broken atvals by muffc5obsbaspread,hands abroa5prayed. A mov1ymnEsungRF tex<$q: "I amRH Qe Lif2EQervic'Dceedclergyman dmLuch picturA gra  6wayA rarZbthat e4!ou)!in9Acogn!Uthese,(!pa5!herpersist"bl1him rm always Ys?BseenRfault( Sflawsg +1relaGaa toucIqincidenm&iv`e:RqillustrN.Rweet,X3ous%s people !, how nobl_ beautifose episodespt  O rank rascalit"}.bcowhid 1 be@ \ 2and D pathetic tale1n, e"at r rcompany aand jo( !erba chor swelled upa triumphant&,6c it sh! r-s0ASawycre Pirat3#eds k-1envQjuvenkGDBconf"in%$ea&"s oudest momen_1hisq j"sold"Utroop"ey6 jsbe will;"beFBridiculouCtp UuB I" Tom go81e c )esd!cc4R's vatmoods--uhad earned YByear he hardly knew which expro85ostK,!Rto GozBaffe' BqI THAT !--RchemeoAturn'bhis brpI Qatten sa y had pa4o& mo'og, at dusk on 3, lmvesg+t6; U slep   1edg7Bthe 1ill nearly dayligh`UcreptZback lan@ TsleepE  0a chaos of invalid21nchA>f fMonday2 kSto To1tivhis want Aamou1. Id!ttI<@3say> fine jokB, toHeverybody suffe'G'most a week soAboysra good 1but01s aMjC you% Qbe sop-Aed aNrlet me ob so. I-QcouldO:U overtrl1hav| eN&Aive -=2hin9D1tha" warn't d 2but qrun off=Yesedat, Tom,";Mary; "and I believR OihAoughLCW1youR?Rg!, }#ac7iZstfully. "Say<", mJr'p?" "I--w*know. 'T?b'a' sp'NILryou lov UDmuchwith a grieved tB discomfo5Gv!me! c enough to THINKc, even+ didn't DOqNTuntie)vUany harm," pleadeBit's giddy way--he is2 inba rush%he|uinks ofrUaMore's Qpity.\. AndAcomeADONEj.1too'1'll !, 0!da 'Q late DQyou'dSd+"dfor me>Acost&2so 9 j1you V` for you5H2I'd)ADtterakDlike!I Vnow IVsrepenta1; "s dreamt@1any(I,,L much--a cj$$'s!no2. W QWhy, Wednesday night I!tZsu ! bl # b 8+ woodbox A nex Uhim."TRso we9 S 'do ByourQtake  0?8 !usfD<$Jo#'s -uhy, sheA! DiHNOh, lotsso dim, nowWtHa--can'lIRSomehAseem2ind ewind b)6.{1"Trh1der9s[2p. Come!"6  !hioo$ aforehe anxious minud then *AI've i[(.! t rr!" "Mercy on us! Go]-Tom--go on#R< 1you.1, '*door--'" "Go ON]VEJust;ctudy a . Oh, yes--rS you dkwas openeAs I'mMGQI didZn't I, MaryA[}Bthen^r I won'obertaine9Qas if4 Amade'P/cWell? -I make him do%Yb1himB--Ohyahim sh   M"land's sake! IAhear% b@my days! Dstell ME1any! i 1amswV. Sereny 4& i^an hour older.^Pther getCTHISj er rubbage 'superstition.#1t's/!!brbas dayVF Nex3 I r BBAD,NmischeevousM )"an+ responsibl3n1--Ik a colt,28 Pd$"! AgoodjgracioF you(1cryU"So& "Nof* nM)" "Then Mrs.e@2cryf "JotF3ame:C2she !ha SwhippERcreamshe'd thrit out he"CselfRsperrA1cyou! Ya#Qsying2t's1youdoing! Land ae]Gno!SiAsaidd  D" " O ! IRLBSid. did, SidMary. "Sh.d"leU"heL1TomSHI{ !h^6$off whereM$gone to,  fDbeen0sometimesTHERE, d'youd that!:92his8 QwordsG"Anhim up sharpTI lay must 'a'an angelcere WAS W xCtoldZ 1Joe>`a firecracker73Pet\ainkilleraas truPeI liveQ/!loCtalk%dr;Qe riv)1r ud%3havHCA Suna qand old MissRhuggeH4cri  "en bIt hap"!so 2surT'm a- sftracks /2n't`i.Zq 'a' se" %! \what?Ie3youq, " IwBhear`C wor2aid  !en  Pso sorryq I tookRwrote4piece of; bark, 'W}dead--we are only off 4'p %T tabl_  ;'hCyou sdA, lacasleepv8Iand leaned2lip6 D ,&I;bforgivqhm#at4she4crushing embracpt, feel lik( guiltie%villains.#wackind,  Dough~a--dream," , faudibl!up! A body doeV as he'd do if heVyA. Hea*FMilum apple  s 1was-,t--now gto school.=qto the Oc1Fat2f ui  ~2ack>'d-F1ing"Bmercy [l#t q on HimHis word, Bknow unworthy ofa 1nesR FHis *ad His hand+slp themEugh placere's fewAsmil 2e o= t{%4wHis res>long nightUDs. G2Sid >Q--tak+r)1off( 've henderClong.e children lefw old lady to call o vanquish her realism!sq marvelu(3had1Q judg_"toF_pi4"mi,"hethe house.XAthis zrthin--az\Bthatdout any mistakekWhat a hero/a, now! Henot go skipp~(%Rncingm"a dignifi!agƌXa@ who felthe public eyEm|cindeed; he triesto seem2 th2s ooaremark-he passed along?tW5Afooddrink toSmaller boysl%1flo+cels, as A to 6"enw"le$#bys the drummer1heaQ cession Ae elephant lead menagerie :own. Boys ofown size pretendVIknowaway at all'4were consu with envy,bthelesW EUgiven& i#av1swasuntanne6?his glittnotoriety3Tom !no# Ae pa1ithBr a =e3Dbaso muc}bbof JoeAdeli!9eloquent admir)݅*"eyT1two"esMAnot "inCsuff+."stuck-up."s#1tel ir adventures]5ungy#2ers9B;c@ 9ran end,aimagins}!irrfurnish material+,yorir pipewent serenely puffAroun Q Qsummi; glory wadCchedOQdecidbe independen@ ]6now. Glorysufficient. He_2liv|R. Now !heTdisti?'a, maybJ?qbe want o "make  !le!-- h  qas indi1Qnt as other people. 6 arrived. !seAawayQjoinetrroup of5%Oalk. Soo#!obed$s%3 trYQgaylyR ERforthi1fluJAfacedL Hbe busy chasing4mat?so4th a 2sheV a captur9h$icI3shea+/Cher 1vicinity&89qto cast!nsS eye =gPW1ch ~RI"i2!viFc vanit wB him)so0Awinn!im&only "set "#moE6himSdiligAavoirc at he knewKboutR gave~ qskylark`;+ved irresolutelyBQ, sig 1onc 3twi#glafurtiv45nd @QTom. 2snu71was1ing  particul0"to Amy Lawr7 Dne else. SheArp pRwnd grew1and uneasyKc=2tri1go away, but 2eet8t+2ous:1car71her"he "to a girl*as"'s%g!--)sham vivacity:Mary Austin!  A, wh&"n', #to-n?Cih!#--*Qee me"Why, no! d1? W1sit(Ix!ins' classu1go.Xw YOU!? oit's funn!n'+D you>uw2you 'QicnicU%Oh!jolly. Whol)XMy maa}5oneRcgoody;  she'll let ME com)Hieill. T#'s<!any#AbI wantQI)!ev4# nice. W7Fs itbBAQby. M r1vacBk fun! YouM r1oysAYes,tfriends to me--or3be""he:4ed Ay calked d"lo   the terr$Tstormbisland[h9P#nr PNq tree "o flinders".c";rwithin EYBfeet6lQmay I#G]rMiller.P.1And 1Sally Rogers&+usy Harper. "And Jo[Aon, g2claiof joyful"s 0 ogged for invitNs"To]1Amynturned coollyPcstill Atook# 's lips tremblAbars ca1her;Y!hi$se signsa forced gayet con cha tfJ7?!ouny 1got( !on aand hi61rand had4rher sex4"x'xGsat moodywounded pride,qll rang roused upua vindictive cast Y1gav| plaited tailsik, swhat SHE'D do arecesscontinuedBflirO jubilant self-satisfacAnd he kept )Uarto findG1lacerformance. At las AspieEsudden fa-rmercuryb#bcosilylittle bench behi/BhousT 4t a27S-booklfred Temple--and so absorbed2hey #so?Atoge Rbook, 1didby 5 ofsq+lB besides. Jealousy ran red-hveins. H1hat  2for "waqcchanceQhad o  a reconcili. He callc-r a foolhe hard names a!ofD~#cr3vexd!Am tted happily1, a'y!, 8.e!rt= Asing 3butRtongu{8!it 4He Bhear+,Aas s BwhenZexpectantly h;!onu1ammh awkward assent, (/N sFA misQd as Awise !toaBrear! ,0q and ag%#ato sea eyeball"=1ate>!clryj belp itqit maddUL q5Bough"aw;  ]Thatcher\ once suspe(`iC# lthe living. But3did59 +Ber f%/3toosas glad#Tuffer^3haded. Amy's happy pra<$inA!e.!hiac g&,o attend to; s must be doneAtimeUfleetin vain--N chirpedkT`, "Oh, hang hi%k  aget rioXher?" r those 9he said artlessly !ou" """ chool leJeShe hax3hl, t. "Any(Qboy!"p#gr3is teeth yGH1#buSaint Louis smartd20and is aristocracy! Oh, c a, I lij1youfirst dayuWqaw thisa, mistAnd I 1ick.Y just wait_ I catch you out!9%1tak  ermotionsZArash+n+r= --pumme>hI1kic&>and gouging.{you do, du0? You ho',Qthen,?learn you!" r Fthe Qflogg'as2o 15fome at noon. His L not enduByD3 of4 iAThis jHtbear noAB thea distrf'Rresum) 1 in'h bAlfredI*sy"">!no#to,Ktriumph BclouG 3she/nterest; gravi absent-mindV-s followeGthenLR; two2ree -"pr!up2ear footstep" iba fals%;i Ashe bentire({1 wisbEdn'tjit so faVsen poor Q, see!loP2notV)Ahow,E exclaiming: " aO one! look"1s!"{1pat(Oc at la99S saiddon't bo| Sme! I2carathem!"` LBearsagot up)Cwalkq2. dA dro'alongside+s-}2"buRsaid:,2awa&leave me 5e, .1! I1 Shalted, won# waZdone--forCFaid }i !snooning #hej on, crytC!mu Z?he O qwas humO egQangry!ea bguesseE Vtruth Rimplya;Gn0nXAventRspitee)I". far fromh=be lessPDBdGZ !3g~to trouble withoutS riskTAselfR's spn Cfell^ 4. HMhis opportunitZ!ly.e !onLfternoon/T?&inKr page. ,pi cwindowm R#ou5vP. She startward, now, inten28tell him;~ thankful%healed. Before s half way4, hh1sheSchang$migi 4 of Sreatm!heS@C her came scorc9R:S sham|yvz6 ge,!ondamaged i's account*"tohim forever,Ohe bargainVIX TOM 1 at:'adrearyoa_sm Qaunt R k1 sh\-Qhad b tQorrow an unprom$kmarket: "Tom, &1a n  2kind live!" "Auntie,o2aved&e?4Ryou'v ! e I-vTSerenM,ran old softy, expectingAor!o ZL :g$atn0 2hat4,!loRbehol{ s'3fouf!Jot7 2wasabtalk wt&, I don'1 $Q of a9will act  that. It makes me feel so b [-go\A andG!L l of myself never say a word." Thisa new at  %  3nes( aLH!toueCjokeBvery ingeniouse *A mear shabby !He "2heaA"no5ken71 to,#4he IBdn'tvit--butCT2Oh,i#'!k. c0your ownrishness66T Lfrom Jackson's I?2 to $urt yoo?\:ASa liem<%91n'tC to pityk* Rve usXCsorr8q!knJ8was mean,!#I J CB. I s, hones1),. Ayou &W<ibme forI"toV1you'&us™(n't got p!del!th nkfullestMi} 2wor>I7bhad asta !"atY2you ever did !it." "Inde ' 1, a%--52mayOQ stir2H!OhT Rlie--,!do[QIt on 1kesPcgs a hUFbtimes *<a; it'sH0 F. I k,1you @?X4"at)"&me2I'dLW#it Z power of sinsV72'mo}you'd run eand acted2it reasonable;n #me  %Ryou g y 22, IFgot all fulRthe idea ofa' the churchI("n'GBh2 a$Qspoil$Sotpbark back in my po 1andjA mumkW.1arkq2ark 13we'+ d 1wak8qI kissee--I doL6linS%aunt's face relax[! t.Sness %inq. "DIDqkiss meM !Ar.3 su ?did2Dq--certa|ArmRz ~Because IBcobyou laBare moa-Band "3ZBds sz Aruth.* tremor inRvoice&K9E!!bexAwithbf1 o " hTgashe raqa.!goAruin$1 ja#T c in. T0 _vher hand< erself: "No, 't dare. Poor boy, I reck(+ #ed bit's a1!leBlie,7's such aQ1romaI hopeLord--I KNOW BLord 1forr_.Qisuch goodheartd"it3"wa'#fi 1lielook." ShexCawayRttood bya|b. Twic-Dput 21takA garUand t:refrained. Once m1ven1rhis timo3forN)3Wc}:> llie--i!et%1rieR." SoG3. Aa E, J7y"flQtearsix3: "Athe Bnow,}5'|'mitted a millionl)!"X THEREAsomeAunt Polly's manner"~!BTom,; Bswep low spiriVBhim lightRhappy6. Hp&A luc YBupon O8e of Meadow Lane Dmood+determined3. W|Bc's hes$ h]; Iamighty to-day,6I'm 9 ,#2 do!4ive--pleaseB up,S you?vDgirlKRA him<dnfully( face: "b3thac. 65 TO , Mr. Thomas Sawyer.i AspeaM 2youR!to*h a!pa!onCd stunn-1 noYnkh!ce(inIrsay "WhHs, Miss S&?"j[ ?$&it%dby. So$1 no(OQin a Rrage, 03He mopedAyardf1ingObwere azBand ing how hebtrounc%if:iatly en#erd 2R a st"y remarkQ5. She hursWbreturnngry breachcomplete. It EY$to Bhot 0Rment,s#AQAwait)Q to "02in,was so im see Tom flo\injur2. I;1hadany lingl!noQbof exprAlfred %,aoffens;2lqad driv=vaway. Poor girl dOrhow faswas near. The maMr. DobbK n͢middle agean unsatisu3ambDqThe dar!ofdesires was3#be a doctorqpovertyWdecreshould be*Q highan a village q. Every he took a mystmQ book>CVk and&$1 in;{s "no6.5Breci8"R$! t& 3ookJ#lo21key#rqot an utMwas perisve a glimp[Q@Bance+T came1boy8c theor-1 Qnaturqno two 1iCalik6t way of getting5ats in Base. "as1pas!by4Ddesk% 1nea~R door t3tX)5ae lockADrecious H  glanced around;>B next instantHOs1The title-page--Professor Somebody's ANATOMY--carried no informa/mind; so s+!ga1tur s"cau!3oncaomely engravW frontis> --a human figure,qk naked !CK+dow fell Apage}3TomA ste$inAdoor&fcaught tpicture!bsnatchs"to >aR hard BSdindpeEathrustfvolumej2tur@Ce ke  out crying'1 shand vexF. ",2are1 asacan be4sneak up on a persou"wh 8y'r+." "How yH2looS$ta?" "Y$Abe a  ;wfyou're&tell on m1#ohQshall) !! 1 be whipp ICwas 3%P astampe,!fokdRBE soU i!% *2'E*. %&and you'll see! Hateful^' "!"she flungthe housd*cexplos>\:still, rather flustereC1onsBt. P+ O+  !Whi"cu&k," aCqis! Nev2xen lick! Shucks! What's a#Sing! 4ClikeS$--so thin-ski and chicken-". 4Aof c4 # Iq)t$ldV3'is lA's o@Gwaysa even a<&|tC7? Oxktask whof%3his book. Nb'll answe en he'll doUay hekoes--ask firs\An t'wOns" jiBing. Girls' facese*9yMM2bonT1'll .i  hatight - ', p1any#ou.*!coCDJ'added: "All,3"'dQto se"inQfix--!er sweat i"!")4joi0gmob of: lars outsideC[ags  !nd:ol "took in Afeel rong interests studies% #hea 1 at gc side Broom !'sX d him. ConsiL&3alltT, he 4Bpity`B$et+2all1uldo-/"HeVup no exultd!lly worth[ n  \ %Qdisco@ 6#adeHH Sfull I own matterE9a~72aft "t.64&er lethargE *"Xgood the proceeding _! 3Tom"ge(&aby denrhe spil2inkCw  >/sSG:adenialr mn4TomssupposeV A gla{Bthat%sJmergency paralyzbinvention. Good!--han inspir4! Hk"ruXbook, spring thi)"3fly5NAolutAhooke$ont" i)was lostl ,rTom onl9{ Wsted , bQ! Toorkn Sw *O  Bfacex1. Eeye sank under AgazeLv9smote even Pbnocent/Hfear>1sil%B onez count ten =kAatheV.#raH npoke: "Who  book?" nNsound. On 1havxrd a pin,1a still!continued;CAsear-4fac|  for sign uilt. "Benjamin@,!tuS?" AA. Ane  pause. "Joseph HarperD5+;I uneasinessE2and4#sethe slow tor+es TFDscant ranks of boys--c ,ed!ur3 : "Amy Lawrenc,eA shak head. "Gracie MillerQ samerYLusan! 8his)rnegativ(2waslMA was"bling fromcto fooQexcitG and a sa!op_!of/Rsitua "Rebeccazc" [Tomhf#--I!Cwhitterror] --"]R--no,4(me6b" [herA rosmappealE?XAG29lik;Da%br(3prafcis feehouted--"I:"t!}BstarperplexitH6incredible fF3Tom!"a C, toHqdismembfacultiesk wYNA for=#to-his punish"=burpris gratitudB adosCshon64himBpoorv!'st Bpay /O)1 IBed b~splendor qown actv Sb outcr7most merciless fla DMr. 2had8,badminiBalso receiSN!ce"added crueltaa comm o remain Shours0ld be dismissed-- knew who #wa k]h;his captivit3don he tedious s, either$C6bto bed, planning venge jgainst ; ;arepent5#ol4"ll^ 3for 3'jq "ry8"thV1ingHW %way, soon, to !Santer'%she fell asleep at las's latest0sdreamily inRear--, how COULDbe so nobl23XI VACATIONapproaching),nKqsevere, rjQexact1han[,i!a .!shV on "Examin" day. His rodkhis ferul8! seldom idle now--)=&st # sUpupils. Onlabigges7 young ladie}e e twenty, escaped la #' Ss wer vigorous onO!; lC he \,K6 wig, a perfectly balQshiny=#, Ronly d'B ageq T of feebleJMmuscle. }great day "ed?byranny#waEc=face; hec! H)!ur?Ie least V2comTnQnsequ Y1boy59 air dayNp8Fz)1plo1 rezy threw away noo "to'  a mischief y a$J"im\r retrib8 & rfollowe*yCful vCso s|Qmajes^| from the field bad#stBtthey co2tog_Ԝ#lag7 QdazzlaictoryBy swaign-pa."'s(BCchem3askEhelp0s v`1deldRboard Rather's f]3K$giboy ample -rto hateFTd's wifHBgo o"!sitSuntrySew da~J#1to !4fer !he O Aprep f3forQoccasAA3by 8Zty well fuddl Q boy  the domini roper condw$G on A Eveh1q"manage"Bhe n[ <9Vwaken hhurried #toB. I!fu; "im!esHc arriv0+" iewas brilli' Cdorn wreathsbfestooDfoli!xflowers! s 1ronH 2 {d platform,< Alack=#? tolerably mellow. Three rows of benches on *(!si\Rd six%1in "c m.foccupi dignitarw1own)% aparentusTg left, backh citizens,Dba spac emporary5u@"th&Blars3 !er1taktexercise ; 1of S"he"drY0"toxae statdiscomfort; gawky bigRs; snowb_ X clad in lawBmuslHKbcuousl,ir bare armsir grandmothers' ancient trinket&2 biApinkblue ribboLir hair. A>/!tas fillKnon-participa.%2. Ac"3boy!upsheepishly recia"You'd scarce expecaof my o speak in public stage," etc.--ac5ing#ai-r Vpasmodic gesturech a machine mahave u csuppos ' a trifle]aorder."he*7safely, though cruellye}3g9afine r!offHD?dp! manufactured bowqD. A u1lis$B"Mar a+Clamb]#, Qgbssion- aurtsy,yher mee,ru!wn#ShappydSawyer ӕited confid o1int)1 un hGindestruct"Give me liberty orme death" speech1furc frant4Aicult  $ia middlit. A ghastly "-fbAseiz m, his leg5ked m=  to choke. True  1nif/!ir tterly defeab a( attempt at,it died early. "The Boy StoodC" BӘa Deck"!owPAlso 3Assyrian Came Down,"!ot{eclamatory gemV"rerd,a& f^ meagre Latin class ,Qhonor prime fea41ing"in,original "compos\ 3s" a. Each-!er: !to<qedge ofr 1cle.1roal anuscript (tis dainty)F"eqCreadQlabor t to "expreDpunc!1the.r had been illuJ;on similar  Sb befor^, doubtlessir ancestoremale line F nCrusades. "F[Ahip"wone; "MbOther Days"; "ReligioHistory"; "Dream Land";qdvantagv  Culture"; "Form Political Government Comp and Contrasted"; "MelancholrFilial LovVrHeart L#sp A prevalentY!se\ca nurspetted m|B; an>asteful and opue1gusf"language"; <qtendenc dlug inRears 6 ularly prizedphrases until+ Fwornx%3outr peculiRthat ZX CmarkBmarrlahe inveterata r sermonwits crippled tail  Ae eneach andby one E m. No matter wCssubjectG Rbe, aA-rac 7$ & quirm it into some as "r AFa" rQus mi} !ul*templateAaedificG glaring insincerid"_not suffi o1assYabanish  fashion'Lit iT to-day; it never will bex,orld stands, perhaps. #]5ll our l$2herD1 do$feel obligwAclos.!iru1ithkBrmon|/aill fi >#MfrivolouT  Dgirl1dongest9XQrelenhly pious. Butis. Homely truth is unpalatable. Let u2oK"!."QXfirstNas read9one enti#1"Is (n, Life?" Pgreader can endur_'bxtractNit: "I5common wal S life(ful emot!do/ERthful9ly"1warvsome an qed scen 2fesc! Imag is busy sketchingt-tinted3Prjoy. Inû voluptuous votary}TEsees`(1amiA3 ei ng, 'the observe4allrs.' Her gracRarray7snowy robes, is whir! f"uga1maz3joyous dance;E eye is b !es rY 3 is#st gay assembly.-BdeliIf"#quickly glides by, welcome hourRs for1ntrBintoe Elysia cld, of bshe ha2 g\w fairy-li eF !ry appear kher encharvision! 3newjis more charm}aBlastfas1nds{Aenea@ais goo߁xterior,#is vanitflattery3onc 1souqw graterharshly1ar;ball-roomCqlost it4sF%Rhealttaimbitt= Qheart1she bs away1Fnvicaearthl8s cannot satisf U1ing1theHJq!" AndV#or3so D!rea buzz of g/1to 3durB $, Qwhisp4ejaf"How sweet!" 5qeloquenSo true!l had closed jc ly affli e\enthusiastic n arose a slim,X8r, whoseK07' "C" paU42comMTpillssigestioX>`a "poem." Two stanza&"it=!do+ "A MISSOURI MAIDEN'S FAREWELL TO ALABAMA-qlabama,%-bye! I love1! qBut yetLzCdo I:+1thec/1Sad1, sQought(!myR~bt doth And bqrecollesng my brhRFor IAwandH|!th[wSoods;Have roamN a;Tallapoosa's stream53blisten, *ssee's warhfloodswooed on CTide Aurora's beamA "YeM8Ame I to bear an o'er-full4`Nor blush4urnmy tearful eyeB'Tisno strange% RI nowa+pm2(to0s left I yield; Qighs.[W|sand hom2min  is StateW1TvalesL"--F!spq?fade fas (1col ag3eyex 9eoen, dear ! BturnQISee!" c Bwere4few$ho $at "tete" meKl"bu "po S very|ractory, theless. Next/ed a dark-UBxionEIfack-ey Qhaire qng ladyQ paus2 im'vwJa, assu tragic ex$n Q " m~ d, solemn tone:A VISIONN2Darbtempes 2was5 2. Aq on highA+2ingr quivered; butAdeep0"na T heavy thund "coE-qly vibr 1ar;s]rerrific n .gry mood-de cloudy chamberheaven, seebo scorQpowerXted over itsAor b,allustrFranklin! EvqisterouYwinds unanimaM"th mystic /Qblust?3as if to enhanceBir a Q wild!#. . "At5 a$A, so Rrearyv human "mymspirit sigh@eQbereof,k1'Mye#iend, my counsellorand guide--My jop Qgrief,second blis[in joy,'RQto my1. S#ve^9o. Z 3ose p!s !d Qe sun9lks of fancy's Edekromantic , a queen of beauty un#qsave by !ow_ctransc xAlovevPsGAsoft 1, iqQfaile2mak a sound,"bu1mag0thrill impartedgenial touch, ather unobtrui< Bhave away un-perceived--unse4. A1 sau res4herf1s, "ic5s e robe of December,21poi 0nd]Aelemtcwithoub0Tg5two"bresentV3Thi;(ma)1tenB}h1oundwith a 5so v all hope to non-PresbyterianN  #!okApriz%1osi~ Gwas /Qto be sfinest >81.cTmayorvillage, in deliveJ  rhe auth6 it, made a warm speech i Bhe sQby faT"b "" !heE  that Daniel Webster well be prouit. It may be rel2ng,xthe numbes in whiz4aword "4Qeous"over-fondlegxrience referras "life'sS,E$upeusual aver`1Now}m,"1 alA ver3k1putchair aside, !ed9 !udldraw a map of America #A, toa"ci geographyoupon. But he 9sad busi] !thu|&y 8SQa smod titter S!ov*=!e '/ nB wasDset =Ato r !it:sponged out2Qs and=dbm" he only dted themQE!evn E&ApronGMd$)$hi'>J his worky(if@PBnot uput dowQmirthBfelt"al B wer #en him; he i| was succeedingFyt;\5uit even6ly increased.Q igarret above, pieta scuttle 1his|,@$is- came a cat,nended a$ q haunch a string;1had&!g V 4PEjaws=qrom mewDslowly de#Q curvwAward-Aclaw,swung down-qintangi!!irRxKahigher2 --the cawb six i"absorbed teacher's head--down, "$owshe grabbu2wigNher despEclaws, cluS4iw1nat7u ", " i} Yr trophy7" ibposses 1And0Qthe ldid blaze abroadx's bald pate--fo 3, boy had GILDED it! That broke upEmeet3boyavenged. Vacn  3com NOTE:--The'+"a" quotaS tpter are taken%out alteriBfrom avolumeqtled "P7and Poetry, Western Lady"--yj1exa%0݇Qecise  *agirl pQhenceEAmuch9 Aappi"anYcere imUs be. CHAPTER XXII TOM joew order of CadetTemperance, r attracN  1howw@ "regalia." H3misRbstai^Q smok9!ch,Aprof as longSArema1a m OQ he fn thing--nam&a1 noBdo a+" iZasurestO  3 body wanA!goVQvery Pv$b soon W!rm] q# aQc to drc)q swear;Rgrew %so:!nor jL bof a c6to display i8red sash kept himwithdrawing from . Fourth of JulT61;Qon gaat up --iC"A2worrshackle7 1y-ehours--and fix0Bhope? old Judge Frazer, justic)Beacewas appares'"bei/ Ta big*funeral,  o9an official. Du( ree days[;Bdeep+rcerned 62the' d Qungry1newit. Sometimese: "ra$--#heRventuj1get Chis practiseO.R-glasrmost discourag yJbluctuabAt las'as ~Amend then convaltQwas disgust9'qnd felt !ns&injury, too !haQsigna,tat onceq"at#Bsuffc relapBdiedrresolve kP! trust a mand@T+Cpara a style calculated to killClate^Benvy$1fre[m@!reAsome!a La swears Ors surpr 1dids7Qsimpl| hga, tookBaway Charm  GDqly wondQto fiIacoveted vGwas beginning -4&ng Cheav}M ands. He attempt$BiaryPLed dso he abandonedT?!rsanegro minstrell!s cto tow aa sensand Joe Harper+-up a band of e-r were happm1twonGloriousbwas in a failureWAit rFT&, encx ! i!seI-e&t! aeatestBAin tabrld (aT!/ed), Mr. Bento actual Uniteds Senator, prov overwhelYQdisapXBment Gwenty-five feoqgh, nor +Q anyw;neighborhoosrA circu qboys pl"J @#  in tentsof rag carpetAadmi ,@2pinOB;two for girls#ens. A phrenologisa mesmerizerI3wen1lef H8_Udrear "evf>=BwereUeCAand-'(1es,jDthey,A fews6so $(Bonly2 the aching voids between acae hard= Thatcher1gon}bher Co_ ainopleat!Bher ks } bm1sidaElifeP.dreadful secre*athe mu  chronic miseryєaR canc^ q permanX* 2aingnmeasles. wo long weekl Mprisoner, dea}1andw"Aings1wasQ ill,;O !no3. W2cgot up aU3andafeebly{-$"!achange3com./$"nd2 cr.rb* "revival/0 had "got *1n,"{Bdult"thyLbbhopingsst hope!1e s$ of one blesOQinful"- A cro(Ahim Qwhere9Qstudy Testament4Rsadly9- "deng spectacl_  Ben RogersKvhim visi6 #ooca baskBractE!huup Jim Hollis B calLs]KK{2ous0ing of hisA 2 as DningSboy he encounti!ad2nother tfV Aon; 1hend ion, he flew for refuge a) F bosom of Huckleberry Fin! bwas re+Scriptural quotjirw_ re crept!an!be"2lizat he alXA allw!st4and .%Bnv=&st:Adrivain, awful clap ]/blinding she81cov!the bedclothe"ai! a horrosuspensehis doom; not the shadow of a doub  is hubbub was 1himrSdQtlm!thtgbearanowers aboveMQextremitp Bendu2h.i the result have seeme1him!st[ApompiRammunp Ca bu3a b(of artille+;b incongruou' E3 up+n'2 asrto knoc+ Bturf! insect likeB. Bbtempest spent itPcand diQout accomplis9its objectc boy's bimpulsgratefulreform. His +EwaitC"re>bbe anyDsK"dadoctors were back;w4hadd 3 heU!baO!is2!%an})ge . ehardly4D1spa#"reing how loneWQstate companionlesAforl@oPdrifted listless Btree+p41 acuqas judg a juvenile courr1cat her victim, a bird and Huckup an alley e@ a stolen melon. Poor lads! they--tTom--ha7E SI ATkhe sleepy atmospStirrevigorously:3e trial4k!betAsorbWtopic ofe talk immediately xyBaway$itArefeQO ; sent a shudd his heartroubled consc i[5LQpersu2himBthes#rkr!pu tqas "feelers";1seen-Rld beaqof knowz n -  Fnot be comforc2ae mids, agossip1kep(rshiver e"Hu##a 1pla+!a Sm. Itb QreliedbunsealAonguwhile; to divide)iburden[l87r. MoreoqBhe w/to assur-m discreet. "Huck,1you" told anybodh--that?" "'Bout wYou know." "Oh--'course IZ"n'Never a wordLAsoli2Qword,|Qelp mat makes you ask:qWell, I\ aafeardbVWhy, ?B, wen't be aliv$1dayQ #go out. YOUt2TomWmore A. AfnQ pausnQ5n'tL1get!to\,"Q they"Ge[!? !if half-breed deviLzF me z) gO$y ain't no diMn>Uthat's all(!&n.twe're safe %   we keep mum. But let's swi-1gai1ywa'!Qsurer}I'm agreeS# ry swore? , solemniti"%S talk,yQ? I'vBrd al " "Talk? Pit's just Muff Potter, $the timepReps mg!t,tant, so'sd7A'ersT{"ju9+Q samebgo on p reckon he's a goner. Don'gfeel sorhBhim,AimesqMost always-- *raccount thfA don %ur. Just fis 4 B, toSoney drunk onfSloafsFiderable; l-!we2do |MBwaysu&of us--pr s <+Blike@!ki?PE--heBahalf aB, onre Krn't enough4 2two"lo eEQby me?sqof luck!meBkite"me,knitted hooks%o my line. I wish w"geot$u" "My!&"n')W. And besides, 'tn't do any=;'d ketch{ AgaincYes--s>aI hate;ear 'em abus2 so the dickens6"he/fI do tooL)I[2say&toodiest i ip n !!an ver hung befoO1Yes=y+%7~Qif heK)1frery'd lyn^A'"it'" The boys]"aQtalk,Csit broum1. A# twilight drew #ey themselves ha6 * leAisol80Ejailz=an undefinp8d; z-m!clow;!irAicul+T But =eno angels or fairies i! tYss captiveAboys#\!ey~Qoften%!-- AcellYring andk qtobaccobmatche-;n gBfloo% rno guar"isl2tud /Qgifts Q smott!irL "s --it cut deep,lx@ 2cowASand t!ou2the Sdegreaid: "You've beenQy goo1me,--better'nw 1elsthis town1I d+forget it,Q. Oft1sayrmyself,I, 'I us\AmendMCoys'.Bings:Ashowfishin' place01befD4Bat I1 2nowjcve allaB oldthe's in92TomIQHuck b--THEYP)" '5-!them.' Well, "eBwful$"--and crazy  #--w athe on*1y I!un2 itnow I go:Qswingxiit's right. RighABEST, b--hope  we won't4at.! make YOUl dbad; yCed mh<say, is,p2YOUG !--m 3youSStandR er furder west--soSit; it'smBAee fw"lya&C5 Aa muP Rtf1non$ ae heregyourn. Gooda w"--"ly. Git up on Hother's backYl touch 'em. = Qit. S}`qhands--}1'lln1 th-Abars mine's too big. LittlBweak--buyQ 3lpel ^ 2shelp hi*.iy"."!home mis CnBream#full of se next day{e fter, he rt-room, dra@. irresist`,(1in,tforcing( to stayF| 1hav (1qy studi~a avoidpL"ch4FKTkelet !atdD Now,7#A us t** b--telleown waEskipp,h+sbegan--}AinglRfirst"as"rmtQubjec f  easily;ln! sdceased buP own voice;&ixAhim;qed lipsbEBhung!higads, ta]\no note of"d, rapt1ghaCR!on 1ale#q straina pent emoq q climax 5boyJ "!asdoctor fetcheETboard+"ag fell,@Cjump-P?1andCrash! Quick$Cighte}%Cspra|aa, torem1alloAsers gone! CHAPTER XXIV TOM1a gring hero onc>e>%pe2old-Aenvyhbng. HiR eveninto immortal prin;* paper magnyhat believe be Presid Byet,  * . As usualfickle, unreask9s % to its bosomBfond3 Alavi@XRas itb} !&Bsort of conducO&o"'s"t;fIp'#noJto find faulQh it.!'sv: of splendor and exul2 J2hiss were s?.  infeste=s Ddoomz deye. H!y aUcould', 1boy"tir abroadafall. Poor HuckiH 1samI"wrrand terror "ad*p7!ho!or* Awyer Qgreat V 6and4sor01hara y Jumight ldnotwithsta_A's f!sa!im+QZyq N.#4afellowDhe attornepromise secrecyqwhat of? Since }Sharasy![2 Bdrivp%c c'&Rse bywaad2lip ^been sealnsdismaler;most formidab=aoaths,a's conchuman race`well-nigh obliteratcXDaily2'"1madA gla\0Rpoken%!Vly he wish%1up " c. Hal"imZS nT 3be dVa othercY@ >+ He felt sure heMbdraw a+again until1man92dea,y@ Rewardselvcountryrscoured"no2 Jofound. Oose omniscind awe-inspi^marvels, a detective,1"upoSt. Louis, mo"ar@S$shhead, looksort of astouQ succ  3sZb craft!lyu=!ev1at ' say, he " a clew."n you can't hang a "clew" for#soZoEgot ]qnd gone8. s-63ure3was,. R slowdrifted obleft b Cit a"ly qened we"of apprehenV THERE comesVqrightly{1tru+26_)has a rag1sirrgo someqand digRV}1sur3is 9suddenlyU3one{e sallied+R Joe ~Bfailed of8. Next h<;!a %gwTtumbl@FI2FinRed-Handed." qanswer.m3 private-#op$e matter to >{kbtially`*Awill>  o take a hanwy enterpri RferedBtainnd required no capital a&u superabundanc)Rtime r rmoney. 'll we dig?" sair. "Oh,5.Uq." "Wh%D i[ e?" "No, inde  /a. It's-"in=y bicular5 --/ on islands,Atime@ rotten chests!envaa limbSn old@Bree,0c;falls at 1 mo aQfloor) ba'nted0Who hides iWhy, robbers, K urse--who'0? Sunday-school sup'rintendentsXIknow. If 'twas mine I Cide it; I'd9!nd1 a _&1o;1 I.l"do!XUf and leave it "ADon'y0Cy moA!No y)k,w$B#qy generUQforgeT 0q, or elJey die. Anyway, it  t 1a l "im gets rusty;!by- !bycbody finds<yx  Xtells howAthe 2--a  o be ciphCovera week because it'stBsign hy'roglyphicjaHyro--H"--picture>qthings,]Qknow,1seeTmean u1Hav1d got o"emas, Tom|!No0Well then,: Afind #61wan^ esbury itas or on a"ea t0Eat'sAsticTout. *!'v ed Jackson's I}iwe can tQagain/R timeSy' -1 up Still-House branch,=qlots of-StreesnAload1'emI#ll Htalk! NoTA81ichJ1forG _1'emI1Tom/6#llll summerf 2? SI#a brass po-a hundred dollar,"llAgray2 fudi'monds. HowaHuck's eyes gX1!bubPlenty4qme. Jus R gimmM Iand &noT" "AT8~QI betI:k!foff onDb Some 'Qth tw3Rapiec"#reWaany, hn2's <six bits oHvaNo! Is1 soCert'nly--anybody'llyou so. Hever seen on5E!No7I!nOh, kingsA sla|$S_"no5$I reckon@i!if3wasto Europ!'d.Qa rafr'em hopGr b" "Do1hopBHop?_-u grannylN2say>1did CShucks, IJ1ean'd SEE 'em--not V Yto hop for?--but IRQ 2seeV3scal &, 28$ aBLike!ol]pbacked Richar* 2? W_2his,Q nameRHe di'ny"1. K!but a givenIN!Bu.yiy like it-R 54D,Xa niggeroRsay--t Eyou  1irsn< S'pose we tacklj ) hill t'8side ofjrI'm agreea<got a crippled pickea shovel1setwir three-TtrampV*"hoCrpantingE]/7T downH2shaa neighbo!elq#- smoke. "ISthis, Tom. "So do I 2SayP$weCtreaF#re 1do 0your sha ZBI'll3pie5MU 3oda2day1Rgo toV&fSlong.0aQa gayrnbsn S sa"tod h AlivebM1!byy#OhP |any use. PapY CcomemFo thish-ybwQR2 daR\5as clawiIurry up,ZIjhe'd clea3out pretty quick.tn$buy a new drumua sure-'Whearts jum8ao hear[strike upoFyb"$#ed3dis <+Aa str a chunk. AtDE5Tomv -rxrbut we CAN'T b&. We spottv)AshadX2bo a doI$tF1the6re';"tthat?".wpAguesoyH Menough i1too5> or too earlAHuck 7ped .tat's it9Ahe. !'sDveryLLFaone upBcan'| 2thea1sidL$is` ',8C%Y#ofy%> ;2 a-fluttY&Zbafeel aP$'s!mNZ;'AfearTCturn)%uz'V front a-<Qa cha I been creeXAll o1ever since I DBI've=smuch soAHuck6y mN put in a de&# why bury. e, to lookGLordy!" "Yey3 7If !toRPpeople. A h1s b!toDintoQ'em, "L" "r2stiRMup, eitherjf2onet! 2.Akull !ay" DCTom!2wfu"it "is^U3a b,QSay, <lp~ d"trARs els?%,  $weY 5bconsid|/;dJ:The%. G  4s.c 're a dern sight worse'n  D lVN,lyocome slid rshroud,nUnoticApeep shoulder3f a:%!1griqir teet"Ra does. I Bn't qsuch a NPa--nobody 1Kt2but, dUtraveU 1 heu_! 1But <{#goCYthat fA norg 4v emostly M J#go5 Qa manaen mur, anyway | E"erODseen5 # except b--justLBblue'Rs sli& q window regular Gsl![Xflick5acan beu4h!cl~Qehind Irs to reason. Be1any2butAs us<pEDcomebP`f, so wl!us3our?7a<W$ df^#I it's tak@A y(qstartedffhy) TAmidd- oonlit valley bel[em stoodR""M&!, 4ly Ra, its S=s*ago, rank weeds she very doorstep chimney crQ)qto ruinq  -sashes vacant, a corneraroof c/!in1 boz*, half expectAo se. flit pas%Qindow n1ing 14 as befitte8 b:m y struck far of\Rthe rO Qe haua wide berth A*qway hom. r,Boods6 earward si_j Hill.4VI ABOUT noo$ 2 daNgG4tre=Ahad ffN"ir$Q. Tom impatien#go ;( Qwas mAablyc $alC%ly Lookyhere1 dowday it isbmentally ran%$V3eekhen quickly liftedG# a2led 3m--WI0once though,iE\un kKrR it pE conto m` a Fridap   can't be too careful8 A 'a'  1an scrape, :ing2Won a z MIGHT! Better say we WOULD!"'slucky days= $"ny BknowbP1YOUf2the:f 1it ;AHuckRn1said I was, did I? AndT all,.O_d a rotten bad3msdreampt1rat"No! Sure sign ofB F"ey{s'NotCgood% WL d*1ign  G,-2. A-_Udo is  by shark Zi Cdroph}5to-{ wplay. DuRobin Hg Who'sqWhy, he greatest m"evrEngland:the best. HGca robb Cracky, I wisht. Who did he robOnly sheriffs bbishop Crich2 RkingsR=9Q But naver bolloved 'em1divQ!upx 'em perfectly squa-h2'a'r Sa bri I 3youW[!Oh9qhe noblaaOT"R was.!men now, I can1youN R lick-can in ,a one he4iedD Ahim;NhEAtake!yew bow and plug a ten-cent piece"c, a mia3s a YEW bowIM /t7w, of cours.d if he hi| Bdime`Aedgepould set aand cr(2d cOB'll play!--nobby fun.AlearQF m% t\dfternoon, nowmy1casQ aa year=2eye#up qnd passs remark .1orr+prospect9Iibere. A5suna sink sey tookEway 5 aathwar| cshadowN6e,soon were buriAITsight8H(- Y On Saturday, shortlyV^  R bHnT4hadd&Ua chaCshaddEGir last hole*;]great hopeaGmere<oIqcases wz "pet#ad )(upafter getting down~qx inchep Y-O an some d1! aqand turZJt a single th{bshovel' Afail !isO a, howesDc+ BwentTfeeling jvshad notEds fortunehad fulfillep requirements <%of<71-hu(6. Rreach T 1{ so weirPv grislyBsile at reign^Rthe bAsun,{ bSdepre$Cbelines!dem"io he place[(3fra,# aHM Qventu7 ty creptD#do?!mbp_VT aw a weed-grown, floorless room, unplastx;aan anc CfireVs, a ruinous staircaser#er%ud hung E#nd abandoned cobwebsn#tl73ed,MC ened puls,s, ears ale\BcatcYDXRsoundAmuscAenseQready instant retreat. In a+Nfamiliarity modTReir f Qy gavm,Qtical#iYsted examinC, rather admi+[bown boƑ Qwonde"at it, too. Nexk1up-+isMqlike cu]!goqdaring ; =! abe but I&!--L,=Sto a 02and scent. Up\NBame 53qcay. InpJoC a@d mystery"qa fraud1 inCr courag4xwAH4n hM Lo go down and begin#1hen}BSh!" CTom. is it?" Huck, blanchingrG!..re!... HearDa "Yes:#y!(!run!" "Keep1! D you budge! 're coming p! tcr 1doo #stC./Rfloorto knot-hole!th bushy white whiskers; long hair flowed from u!hiRbrero dGe green gogglesec7'Cn, " Xa low voice; @#sa gr$Q, facAback{sthe wal12the=er continued ^ s. His mann\less guarF{0words more distincFLproceeded: Q, "I'!it oB 5andi,& dangerouDR!" grTthe "e dumb"A--to#svast su?boys. "Milksop+2his~ 2gasQquakeEwas O!'s +<!swag we'veAleftr--leave it( &'v !'B. No2!o i.f!wet south. SixfCmDfift5Qver'sDto carry%eWell--#r EKG m No--but I'd say(j2 us#doe9:Alook; it may5(" bTI,6!e  J!! ; accidentsi !B; 'tY$inu2ver9;i6f%l[+qh+qit deepDGood idea !thrRqwho walv Qcrossroom, knelt#, gv"qhearth-/atook o9A1bag Q jing?qleasantLe subtracW9Qrom i0nڼcthirty#Dcs for G"as+6for8e latter, #s <,(Q8owie-knifeUforgo<,bmiserig$an@. With gloaq ,A mov7q. Luck!f splendor of Qs bey%sll imag+!qETmoney/Ato mcalf a dozen rich! H sd1theaiest a !esrNDabother uncertainty as to w44to }2y nudged each ;--eloquent)r easilyRstood simply meant--"Oh,you glad NOW we'rbB!" mVTknife%Uupon . "Hello!" C he.?2sai4Calf-e"plank--no, it'sy!x,4Rlieve1--b`!w 2see<Kfor. Never mind, qbroke a3 [2hisWbin and i p3ManDU  rhandful8$ingold. Thejb abovebas excW cmselveY!as delighted.NwRquick4Bv$ban oldM24over amongst >#)5sid"a--I sa5#a 74agohaX|iaBoys'5andn X1the$b, look5ly, shookUA mut4 toM3  5use5Abox aoon un$edXA not *R larg!#wad2bou:Bbeen+dstrong5the slow>s+Qinjur c|5the" ain bliss3. "PardrthousanL Shere,p. "'Twas alwaysX Murrel's gangCQbe aruone summer,".stranger observ53; "vs looksPHI2 sa* sNow you $neRjob." Ʉfrowned. Se: "You# me. Leasx&k"lla A. 'T@ robbery alv\ REVENGE!"a wicked R flameBhis GR"I'llyour helpRBWhen finishednn Texas. Go homH<NT#anK3kidM1b %0$Sell--Bqsay so;ew  w dthis-- k Yes. [Ravishing overhead.] NO!- e great Sachem, no! [Prof[distress;1I'd---at least4 \Smean =but Tom, si%1nlyhad testifiSVery,mPDfortBAalond! Compan!be a palpCimpr5, h . CHAPTER XXVIId adventur4"ayily torme RTom's5s . Four times hE!s !atSFnd f6ait was:rhingnes5igers as  !hi wakeful4bEfAt bae hard realit'Fhis 1. AClay |AmornO(1ecaincidentsJND, he noticed%~dseemedL4ly Hand far away--someD ;3had#tworld, MfAlong " b3 :n i5him u itselfa$3onetrong argumentW Bavorj is idea--namely,sc quantDcoin2fAoo vkAreal Qhad nTseen !as in one massShe wa1all "ag"st in life,&Aimag= call re\Os7!s""  " were mere fanciful formCaspeech Zno such sumP qlly exiEpposed forf w"so= a sum as a 6z be found in actualy one's Ԁ" Ianotion treasurbeen analyze.yxy=Ansis 'a areal dgand a bushel of vague,id, ungras{`A. BR^K"en Ssharp!clearer (Vattri !inTAthem?h so he"`1himk1leae(impressi6q#no2a dream, a )isQsweptg:~ snatch a hurried breakfast!go2fin.ik e gunwalB a flatboat, listlessly dang+2t !ee3"atbs2ingamelancholy. TomC&2letslead up@1 su e did not do its1be 2q `o!xEGelloylf." Silence ab-om, if we'd 'a'Y 4lam' a"Vtree,0!go D. Oh$! 1fulF $,Somehow I most'x. Dog'd if I ." "What!K%Oh6ing ).U"en"QDream! Iymss hadn' down you8)1how  Q!xhf%Deams|2allpL#--()[tch-eyedZ 1sh l4 gom*!thR 'em--rot himm1No,_a. FIND! T /1Tom#llXhim. A fellerq ~3one Q for a pile-- a2's lost. I'd feel1ry shakysee him, anyw+qso'd I;2I'd,2 2z#'Aut--&s < 1--y95N'Bthat2&7/!ouAit. !dofreckonB"oQtoo d62Say--maybe inRs$'"Goody!... No, rRain'tfv5, is one-hort!wn3 y=#noq,@so. LemmkKS Here r room-- QavernQ know;Qtrick s3two?s. We cansout qui You stay hereU,zI come." DAoff c1caracHuck's~rbpublic#s"as G!an hour& EbestNo. 2 had# a young lawyutill so-. In the l&astentaa housek! 2#a 5 -keeper'sr2son  kept lock$)ll3tim82he 4sawq go int W!or}(A exct;Ymny particular reason> x1gs;Er Come ' BsityD8bfeeble98wVe6r by ent"Ding % ae ideaC"roG "ha'nted"e  r a  !re[) BwhatOYD'Kvery No. 2"$af&/Qit isE$. ?C youqQto doNE_(ngE2tell yous$do "at" icomes out J1los )ey e!a3?Qtrap Jbrick stor"`qet holdmdoor-keys1nip-of auntie'=,Bdark'"goS ry 'em. And mi,n, because he E#!to/|2tow 4spy 3)N#a "to 6youjyou just fGQ him;_Rif he 2 go >"1laca"LordyI !fovhim by myself+hsit'll b%", ov"He\Dn't B youRdid, b4he'A any' "ifU8n. 3o-- 1YouE<cBdark!. 3'a' out he coul f< #ber,&DOCs so{1; IP, by jingoesw"'re TALKING! Don'7|bweakenaI won' sI THAT#1TomQILy hung a e neighborhooo{nine, one watch52he PAat a ="K1thePdoor. NoF"orN Rit; n%aresembp2the 5ard=3te#Th promise]`fair one; sowent home`rat if adWAegre,Adark1cami AcomeT"maowupon he would slipthe keysE aclear,XmAclos2s(Tretiryan empty sugar hogs0welve. Tuesdac/&amE. Also Wedn/Thursday bbetter8"in$.sf0aunt's old tin lant 6 Qtoweldrlindfol 1ithh? <1 inp-'s began. A WB mid#v!upB2its1s ( !s 'd"s)!pu)*%02had Eseen+Dhad / }b. EverrV,3iou"Bblac5of SreignA peruQstill#waVbruptedby occasional/)#ofAt th<ggs1liti n~,=tl: Bowelx&wo2rs D A glokw>y.stood sentryrTom fel3wayZTjz  !of8ing anxiety$weighed iga(a mountainh$%sh?ra flashH$ C--it.f"en!buZO6ell- alive yet. I4s1Tomdisappeared. Surely"us Ded; &A was7`+!rtQaburst #D'Band ,G'1 In4auneasi L rdrawing-DrK a; fear rdreadful ] $/1ari1pecm0some catastroph 2Atake 1792not&to,]$heUable to inhale it(imbleful- TK$ar Athe beating. S1Tn"ofh%tEby him: "Run!"he; "runAyourt!" He needn',Q repe drit; onc ;#mairty or forty miles,RrepetCwas -3. Tj!tor  "J1sheʁerted sl#1er- e lower en/the villagxa By goin its shelter]Sstorm xrain poubwn. AsxJ] 0AHuckwas awful! I t3twob keys, aas sofI R; butsto make of racket=rdly get myRso scBT1bn't tuVck, either. Well,?!ou.Ticingkboing, I tookcthe kn!A ope@e !H&E@R! I h1in,!sh5fP, GREAT CAESAR'S GHOST What!--whatQ'seo1steFonto's hand!" "NoAYes!A#Ras ly s%asleep oARfloor4?Aold 5"ey his arms sprea[d1did Tdo? D0Bke u91 budged. Drunk, 2. IjUgrabbBAowel F+usIX'a' thoughS33tIx. My aunmby sick3alost iM A"Say,1box!diw@o_00.-}44 /8 .:ea bott|Sdtin cu 6 by(!; I saw two barrelslots moreUs S.u2now'!Fmatt'3at R roomTr!it mG o1ALLaTemperTYs have got aeC, hepd[3Who8u? But sAnow'Rightyt 1timg&ifqb's dru""Ithat! YouiQshuddIEno--"nom5And-B not3. O1  alongsidf, :u'< three, h  -&@oaTp*for reflectioZ+ S:38oky82les#tr 1 an#e}wwcR Joe'5'reQscaryhw eSnight# bp"su2 go  "orbwe'll Gbox quicker'n nJV<the wholBlongj%ido it 1too3you"<Ather4$"A= bill. A.v!to{"tr0Hooper Street a block EmaowWRthrow:bgravel=e0 3bfetch 1T"Agre01goo'Awhea*B"Now,  T's ov*bgo hom2gin" , %Qcoupl" +2"go61will youe!I TJ]t5#Ryear! Ev "damF&st2allIawooo[nǑ' hayloftZTlets nqso does pap's nigger man, Uncle JKA toteex  B wheahe wan`" t}JA any I ask him QzQves mGiBsomeBto eWhe can spare  !ik\r, becuzP'[" aL Bwas 3;him. SometimeQset rdeat WITH/1But  A body'sv!thwhen he' sr: 1n'tBas a steadyd-wXK,q"le.?A com hAS's up2'!, Cskip, @*."*IX THE firsR1earQ4QFridan glad piecnews --Judge ThG's familyL*7- before. Both 9o &Bsunksecondary import, and Beckyv the chiefCboy'="esSsaw h%tad an exhausi&1pla "hi-spy"c"gullyu!" $da crow2ir S-mate1day^scomplet[DRcrownsa peculi9satisfactory way:!ea[Aer mK to appointnext day foUlong-z1and\-delayed picnicfshe consentechild'>boundless;,Xore moderat.R invi*slAsent^s sunsettraightwayA AfolkLn4Ra fevapreparu(bpleasu6qanticip6's q enable90" ap dntil aQlate houh%%:vt!ofd1ingO4's s!an(ahaving to astonish1nickers with,2; b\3was$"oiNo signal c'vC. Mqcame, eBallyby ten or eleven o'cQ giddq rollic!c;/!ga  4_s -ro.UQustomelderly peop2 ma#;p$*!ce2ren@sed safe R unde9AwingAa feh"1dieeAe# gentlemeqtwenty-  sreabout1oldqm ferryboatQchart;t7! g<.flJ9r main sg Cladeprovision-baskets. Sid1andato mis/ fun; Mary remain!hovBtainT9nTMrs. 6 "tob, was:d7?oBback lIaPerhap H Astay   eRgirlslive neah"-lQ,c !y aSusy H,q, mamma+AVeryO. And mind !bey%yourself3bmR9T." P,"trQalong` 1: "Say-- 2you8 ntQ'Stead 3Joe2's *SclimbE!up AhillDstop` Widow Douglas'. She'll ice-cream! SsoJ"os Ai!--|+Aload8"it4sH#be t&!usg"Oh[ K/2un!?=nC%ed3But2illA say How'll shH6Rknow?^Q girl!edidea over a1r reluctantly(it's wrongK3--"shucks! Youg ! k REo!'sQharm?_sN1nts[!hao '"Bsafe4I b 1'a'" 6if IAwoulT splendid hos"itaa tempP 2baiand Tom's persuas02car+S q. So it>u Qay no? anybody?t 's programme. i1 itv(!rrJM)^7+''XAgiveZ ;took a deaV%s!ofAs. S"het&I"tolmfun atAnd why sh1he 5!it: h"qsoned--/c! W, so Ti2mor l^>o-night? T6QrA eveV 4out6theM1, boy-lik2 determined to yiel +5Aclin Tnot a{9t Qk of 0ox of money5  day. ThreeVbelow >EboatayAmouta woody hh& 1ied|3The* swarmed ashoreAorest distancescraggy hxs echoed farQshoutDand 95theØ1get!ho " Egone=y mry-and-barovers Sggledao camp31ifi th responsible appetitesVt destrucHJ" "L>2 feoC!reBFFing ( 2resbchat i2shaspreading oaks. BAsomef[ed: "Who' the cave?" Ever!wa5$. b of ca \Bproc   a general scamperhT+x0' hillside--an opshaped likO A. Its mass׎2ake&& !unbarred. WK small chamberM Aly a2ice" w0by Natur% solid limeston w 1a c& rweat. I1romJmysterious!t %erdeep gloom/look out upr!grKC'"sh--""un?1O6!ve!UDly wore offdQrompiDL2ganjIcment al]  Frush2ownit; a struggugallant~f1ed,62ursoon kn)/or blownlad clamop and a new chaseB3allQ havex(ndlrocession (!fiv(eep descenW4ain avenue,p!fl0qing ranGOVs dimly reveaYf!llqrock al5t1ir er of jun sixty feet overhead. Thisnot more than "en?Cwide?&nSstepsy%ill narr crevices bran@!from it on--for McDougal's`Rbut a%D7imepqraft.  blready.w's went gliW# p a wharfCAhear!noise on board(   C3as $usually are whornearly cto dea.AwondnQwhat 1de:Rstop w<<dropped her88'put his atten *rusiness`Bclou dark. Ten eKf vehicles ceased, sca) abegan ,#nk !ll 2foot-passengerkp |)1 be$itt)l <2lef| = qwatcher qthe silae ghosts. E  Swere /;/ Qevery$A$it1see weary long 2:b)u3},ed. His faith wasB4bing. Wvy use? "reA Whyk)C? AFfell~"ea;&l U instantQ Bdoord*^Tprangqx8$ Ti two men br,%onW- z Runder!rm0 ]Cbox! So sto remoE.Bcall Tom now?Ibe absurd--1en  get awayq #$anc7EDNo, c stick1!ire!foAthem<k5truP for security^discoverQcommuG3Rmself#*!ut Eglidg 2beh!e men, cat-like,qbare fe~!ll_E the8*5far&!noqbe invi  y |GP q blocks0n^ left upJ2ss-8y?"E,!qcame to% !pa}1Cardiff Hill;5Ctookfthe old Welshman's Whalf-m(hi-1hes!ng Qclimbward. Good, 5*VSdury itold quarryC) "stfa &-3on,b summixy plung.T7 1run 1ook whe pistols wekf#I Astop$t..Scome now becuz 7# 5it,7 ;I:lF3 I x1wan7runo}m devils88! i,2 deUph2hapAdo l?  Byou'aO1a--but +b's a bM!e2you:Ryou'v^Fyour=A. No"y U Adead--we are sorryC|#atCee wiqright w!toq#ou6 Rm, bydescription #weOaC = !we?RfteenTnAm--dis a cellard2was(sn I fouE sneeze. It wHmeanest kin16!lu " t3o keep it bp use --'twas bjt!it(#I iR lead/ 2my :3theR star-ose scoundr Q-rust*6! pbI sung"B'Fir!!'cblazedtt5he aqwas. So".  2offrjiffy, svillainwZ4N  a%oods. I B we eatouche|mydgAot a y4  bullets whizzed bdo us any harm. Ak!we9 the sou$Tw at chas2entS }!tio5_>ctablesgot a posse fH1offuV R bank&Cit i+qsheriffaa gangE bea8}"My}!.\XAsh wz"A sor2 ose rascals2H uadeal. But you cy  dRlike,euY2ladQpposetOh yes;JAown-(and follc AthemSplendid! Db2m--d BOne'B!olfdumb SpaniQben a*;once or twicQt'oth[sa mean-", VTP men! Happeng Dthem1R back2one 2andoQslunkR. OffAyou, 8ellfA--ge to-morrow Y Y"2depS!1. A__qe room   : "Oh, ptell ANYbod bR! Oh, eAG_ gByou -N%credit of w:1 di"Oh no, no! DVA!" )B men g  o said: "T2 7w Cwon'B2whyoia#n?  explain,!tothat he al Aknewn w"on3 Ahose!+4manUv 2anyHast him Juworld--c& for knowing it% ?d secrecy3morW1How&se fellowsA? We!ey Ding &usea!t #ramed a duly H rep -S lot,--leasyrsays soI5see)ragin it@ =much, on #!inx }3tryQstrik a new way of do7"ay u ' I,BleepQso I r  up-street 'bout midf a, a-tu~fg - AI go old shackly brick store by WP1, I3 Red upO%ll#2k.  %bcomes fQtwo c B"slf0%lose by me,+1unddreir arm'( V y'd stole1OneAa-sm3b one wah, !ri.s\ !me"igACt upBfaceIy og 1ig - eA, bywhite whiskerQ xT `ua rustyo a." "CmDrags ?Cis staggq5forA !n ?5Aknow Qhow i#msCIQTJy o52you<Fb'em--y eiO&to| awas up8y sneakedsso. I do$!'4+1iddDstilG& $ d:# JgVe begK%heX swear he'd sp;rr looks'as}2two  What! The DEAF AND DUMB ma8ia4at!!'aderrible mistake! H63his.jC Ru>sthe fai+i2 whNK smight bQ1yetdtongue/0@$to in spitball heFr do. He several efforts to creep!of1scrape, R's ey 1mh["bl5 9. P  ,be afrai!me 6 hurt a hair o qr head v3=I'd protec !. 1 is ;#leAslipout intend+ D. up now. YGEthat4 K q. Now tAme-- m S it i"3 -- a betra Alookit!ho51eye Qomenton bent over 9ear: "'Tab--it'sO'1 Joz ) gjumped chair. InWQ 1ll ,pe 4you{m#2ing#and slitting noses2wasown embellish 3men3tak1sorYrrevenge\"an #! a different matt242q." Dur7B&:alk! c Y 1 sades (h2hishad done,_ C#!d,^a7eqexamine,its vicinity AmarkP Qblood11y fnvut captured a bulky bundle of)Of WHAT?" IfqBwordBbeenn 3hey leaped withcqre stun0O!5AblanBlips]!-were star1ide3Qreath$ended--wao! )tarted--st?+in return--1QRgs--fiv1ten%!end i<f burglar's toolsY4,G' bMATTER sank back, pan5deeply, unaEably !eyt/m gravely, cur!V--and= NYes,appears to relieveB Butcdid gi# 3urn9!YOU expecBwe'd2?" a \H a inqui *Q havenfor material$ aa plau4#-- suggesteR?elf|!boadeeper --a senseless1y o~dK^/!noq+ to weighiokventure he c it--feebly: "-+T books, maybe." Poortoo distress!sma Cqed loudfjoyouseb detai$.Ratomy1hea Bfoot%b by sahat such armoney in a- pocket, q it cutoctor's bill likM Aadde!olG!p,y2re Z !a5Byou awell a bit--no wo8aqf #of8 Z'.*!ouit. Rest6Rsleep6Afetc2all_#brritat<6 heaBgoos!ed{! a)!icM!esf"aroppednBideaarcel b%.K%2Avern]9. c talk 3XW ahad on%rought i3"nod however "ha"kn/ bwasn't!sot%a qoo much:Helf-w!Bu![ 4'2gla@. Shad hnt!no4 beyond all qusnot THE,Oo mind was at rkexceedingly comfortaban factC Q drifbjust iD dir_`Anow;WA musw ;) in No. 2 zy!ilybat dayhATom a seizeo3golS \1out !or fear of interruption. Ju# pYea knoc9#l ` 0 hiding-"noX connecte!n remotely1lat admittedtRladiev gentlemen, amo*Widow Dougla Tnoticngroups of citizeny bclimbi2the hill--to 7 S\Qnews xBprea h(h the stor$Z'he visitor#gratitude"erbrvatiooutspoken. "Don't}a# it, madaGre's]z"'r beholdeQthan -Tre todmy boyc#he ballow Atellsname. WAn't ] v2butim." Of $&uriosity so va|"be1d tV#in )twa to eaAvita'mm be trans }Dtownb refus"BpartjCcretorall els> qlearnedO  I "to% rJ9"ypV8a noise L#Rake m:rWe judg0j2worMgQle. T"dlikely! !--Shadn'CoolsBao work pAhe u1 waGbyou up4carDR? My BnegrAstood guard sr houseeLmk By've`ack." More!C cam"beD,aand re G couple of hours more.G tSabbath d 1vacecQ1 waVly at churchQ stir1Beven` canvassed. NewV#n Dsign5two! 5yetA#edthe sermfinished, Judge ThDu's wife alongsidRMrs. mZQ as sI6ved1 Qaisle;-BcrowqIs my Becky>all day? I !edhB tirQdeathBYourS(RYes,"a;!tlp Sok--"T"sa2youIQnightEE/!noa kced palh$sabba pew,as Aunt Polly, ing brisklwa5pG by.64qGood-mo), A 'got a boy up missing.o1 myD!st Qlast !#--7you. AndY $'snvtto sett'q  "he H andar than7d. "HeB$us(`b, begi !to uneasy. A marked anxietCc's face. "JoeVSK?Y1No'b"1didqsee hima?" Jo="wa!su7 "ayWQpeopl amoving %ofWs}3aloD a boding Aines&k 1 ofzy counten\'of!if  .!On!ngfinally blurt2his  !we4ill Zcave! swooned awa f#Ao crrringing'Bands alarm swept/lip to lip,Agrou 2to ithin five minutesCbell fwildlyN6he "upF/EJ insignificanD<xforgotten, horsesaddled, skiff4man !!rd#ou1bef{nDrror was half an old, two h)dbcere po6aighroaA riv gC. A Blong091nooge seemed emptydead. Many women (ed9#anPa'q They cC)2too"wa/"l N;z#. tedious022ews/>wA dawqt last,   was, "Send candlesrsend food."4wasqcrazed;L{, also. sent messages! p encouragVtWaonveyereal cheT3 ]3h4'BdaylpQspattRwith -grease, smeTBclay Bworn7#HeJHuck#behad been provid%3 hi"Adelic feveruhysiciano4allrcave, s  ook chargg "ient. She ! s B herb4,'ahe was@Q, bad;7%in,fBr Lord'sKu !R"a \neglectez"aik good spotvQ-`"You can depen(>2at'xAmarkdon't lea9Doff. He n3does. Puts"2ome)0$on"re\Ccome(Bhis TA" E AforeRparti3jad Q ctraggl< bGllag strongeswEthe qcontinuxAarch gBnewsbe gaineBness]7edhansack71vis;Y S cornAZ ,o#ly#edCver one wan4z"pax!, [wcseen fE hit Bdist@qhouting0-shots sentr9:)1berrthe earthe sombr Qs. In&ar1sec21usu. rtravers/rtouristI7s "BECKY & TOM"DbtracedbRL=2cky'#Csmok near at h =1-so!biqribbon.   recogniz'e%>4hover ii7crh. !ofiAno omemorial )@be so precious Q this parted latestqliving h*RawfulpV! c.3SomzAw ann/a far-away speck ofzWglimm*&rn a gloKDshou)~fAscor'men go tro:1dow echoingz1aa sick; Vointment always f!e  a 0 donly a2r'st ree dreadD2^ 2s d#0 ]% jt # a hopeless stupor. N 0_;accidentaly, just made,groprietorS ++Tiquor)premises,qcely fl3  public pulse, tremendou)1the 2 wa5qa lucid%Rrval,lasubjecta asked--dimly 7" worst-- W.! Thd sinceaEill.p.h "stSup inr#bild-ey1vWhat? W)$Lm;lace has shut up. Lie dV! a&&+!me!" "Only02 meQing--&one--please! Was it Tom Sawyer TT burse>"Hush, h !Byou 5 must NOT talky'Bare very sick!zAn no5 bu1rF t powwow if i the gold. Sctreasu2gon Ugone MmJ$e bout? CuM +@TR.2houoD1dimu/7$3min^uF the wearrhey gavhh(|?&. o herself: "TNJh/poor wreck. find it! Pitysomebody !KR! Ah,j!PDAleftIThope ^5or strength either, to go on| E CHAPTER XXXI NOW to%1 toZ's shareapicnic*By trNathe murkyqSVr ompany, visit familiar !eI$--adubbedw rather over7ptive nam uch as "The Drawing-Room,"Cathedral," "Aladdin's Palace,"\so on+hide-and-seek fro^u b AengaBn itzeal until!exertionDrow a trifle Asomen6 a sinuous avenue hol+-/kf #tangled web-work of Idates, post-office addrU rmottoes~) g walls rescoed (in ). Still Uand talk:CscarcelyM3nowXK"ar!H! w+tq. They b2ownPK!anphHA she[.ed,yD   2 a am of watrickling over a ledgkQcarry k sedimenVuit, had Qslow-y 81gesm3= and ruffled Niagara in gleam5nd imperishabAone.%squeezed his smallP h in order to illuminate i q's gratAtion rit curta,]jnatural stairwaywas encloZ etween na9ce the ambi Ya r"bd him. respondehis call,1hey_ " aM-mark for future guid oqir quesAey wD, "waBthatXAinto depths ofL  2Bmark|g$ed?( of novelties to @!the upper worl. 3oneQa spa s", L1cei3muld"Rof sh[stalactit" land circuml.c7 [' H) 1kedG" OQadmir_ +1lef~bnumerous Aopen?0#toi artly bm Qbewit2 sp}Rbasint(dncrustsa frosta glitt crystals Amidsa| supported by rfantastic pillarsR# ?Q8"joof great katalagmCtogehe resul1eas  Q-dripqenturies. UnIZaof vast(ts of batfp themselvwaousand#qa bunch(s+3urb flockings 4 byrs, sque"and darting f  FCkneww4the danger%isqconduct'#'snd hurried herthe first kDffern qoo soon)Q a ba#Duck gGmits wing ,ugitives plungnevery newr#ag!atRb got r5the perilous 7 ubterranean lake,,a stret?its dim 3way !it@ p!lo2shaQrHe wantLexplore its b;,0t conclur!habe best to sit#Ast a9TR. NowO1timbe deepA lai&Rlammygb spiri@*Why, I didn't ,it seems1so M gaI hearY!ot+:m bthink,#, 9Hqdown beLhem--and:!n'=Qw howK/north, or sou AeastQwhichit is. W8Dn't >bm0Cweek9!ye"qwas plaT"at cf 2 beAthei8 3dleAnot cyet. Aqime aft"isZ< P CR--Tom qgo softlo for dripp`BaterZ3 aMf satR Bothcruelly tired, ye CssMfuld go 73 .Tom dissenD F2not>!st8D !ey'2 fae-bin froPBthemTrclay. Toon busy;G'1aid* 7Atimeh^broke the:AI am DAungr5J!me!!of . "Do you remembP"?"4he.Zbalmost1d|'s our wedding-cakeMSYes--!asTQas a 6li"goaI saveA&"us to dream onyF1way$n-up people do'll be ourSS"pp<Q sentP6  Bdivi#Re cakw 3 atT2appetite,Tom nibbled a:amoietys abunda"co"RfinisfQ with. By-and-byGtey move on 'yilent a mom"qThen he:z1can/ rit if In1you k#?"8'4pal}`.Qnw 1stamB!er Bre's ink. Thatw " iClast6 ! gave loos)S&il#diA{to comfor$ `$AtU!C"?")y'll miss uKChunt4rwill! Cl"!ithey're hun Ror us,laDare.Bhen $S"Whby get o the boatHM#itbe dark then--enotice w/1n'tnbIaanywayNr mother8you"bthey got q." A fBened "inT"brfSSsenseRe sawh made a blunderw% _hs2hat08! Tebecame$ndO uful. In a new burst of grief21 sh  ^ g"ingQstruc@s also--QCR:half spent before Mrs. Thatcher discov M""at/Harper's. 2 GR !biqno doub2:)Bwas a !on/M $on1it; }!%esso hideouswbat he 2$itG!waa5ger1torX,K [/s A portio0h z was left;Q Band ,.~dhungriD poor morsel of food whetted desir c : "SH! DiuAthat 2othyV " aq like the faintest, far-off. InstantlAanswYul|/d M)Uhand,@"*gr7 corridorG0s4. P  s(R ;.BV%Rappar a BnearU DthemdTom; "coming! Come"-- b now!"54joy,rprisone overwhelmFT2spe[ %moTswarmingfrantic half-clad pT, whowA, "T2Vut! t F " Tin panChorn 6addAdin,#Qpopul massed g}*!to ver, met=in an open carriage%"byaitizendrongedA it, joined itsWRmarchswept magnific? Q main et roaring huzzah* !was illuminated;~Pb;ar3est(t!tt w0Cever_ 2Dur%re firsthour a processars fil rough Judge-'s house,f<n"sa+,ejsqueezedt'", to speak butn't--and dr out rainiY"rs veK& c1ppi% romplete nearly so5[ a messe AdispSdkH#2cav2!ldv"!orL 1usbNTom lay 0aa sofaXWasuditory71him=1tol~A his!ofwonderful adjB, puR+"inAstri1add adorn it1"al JCudescriptOahow he %tent on Bexpel;7'Btwo Fs!as0* ARa thi^aullest4tchM3wasT"to he glimpsed aD speh6Clook*A day ;"2lin Oit, pushedshouldersa small hol1sawbroad Mississippi ro by! And if it5 F0Rappen#beVhU@ !se* 2at %oft/d[ %4rore! Hec7for/I%j @ @"imoAo fr.r$such stuff, $  &# w Sto diR~?ɆU laboher and convincg %"hoe@Q died1joy A she  actually>lueG he >1wayI& !anbn help2 ou?gAat t]for gladness+some men a8Qskiff cTom haI!em G33con rddidn'tE=qild talfirst, "#,"Dahey, "Q"$re]2les> bhWavalley cave is in" n m aboard, rowFa""gam supperqGthem rest G 1two4hreDdarkn.Fhome. B!day-dawn,=q handfu% Ahim Rtrackg,5R+twine clewyctrung +sformed A. T+# }BtoiluPi~Rbe sh3'ffA9s#Foon " y bedriddenFf}5and~to grow mo7 QBwornP ><2got,MV, on e"wa- {a"as  `"di8her room1Sun34she$ash1hadT'edk1wasaillnes#$omi of Huck's sickm Rto seoAbut be admitDthe bedroom; neit5- Uhe onB or H-x-bwas wam8; s introduce no exciQtopicL Widow Douglas staye1thaKaobeyed/Ahome? the Cardiff Hill event; alsoDthe "ragged man's" bod-%  ;6 erry-landing2had7Adrow&\trying to , perhaps. About a fortiVrescu E, he a visit:yi#plGrong enough!toc2Tom'Aintel:.., A waswm,t " ome friend4Tom$2ing>2oneW him ironicsqn't lik%!goHRy10he thoughqRn't mqO said: "Well,1others jusuQyou, )3I'v| ast doubt.)Ave t3caraat. NoAwill !atA anyH*)*Because Iits big do $atb boiler ironP weeks agoriple-lockedO"goTbkeys."tjite as a sheet.1at' matter, boy! H,Arun,qbody! F=aa glasL1!" "* gba!!thJface. "Aqall right. W1a M#Oh,'[cave!vXIII WITHIN a fewj2new1spr.%b dozen b-loads3nq @!to McDougal'sE1boatll fill#pak"s,5 CSawy[deDD bor4. -bbwas un4,%rrrowfulFeCelf sqdim twi xD lay^1ed )@,)"hiQ closrthe cra} "thif his longing f+dfixed,>clatest,,s cheer CfreeQcoutsidwas touchedd v-tick--a dessertspoonVZ2fou&J3was fallingsPyramids' Bnew;Troy fell#this of Rome7Claid(bChristtrucifiethe Conqueror creat British empireJolumbus sailEqmassacrqLexingtons"news." K2now3ill=4be #whBthesy3gU"ll\Bsunk2then| 3of ,w "raCw;} ]c thickof oblivion. Hoa purpos Aa mi=? Did thisR pati$d!fi ousand yearsready forD2flihuman insect's need?has it another important object to accomplish  xcome? No .Band 2hap alf-bree1out ^>Qprice8drops, bu3a(e !t patheticslow-droppVBater@!hey8e1seeb!< .b's cupC6Ts firde list2bcavernmnQvels; 4b" cannot rival i 4xKn,VB BcaveI flocked in boatsfwagons|3towAfromthe farm1 hamletsseven miles|I >1ugh%irYSrall sorAprov~NsUO/3hadN! as satisfactory a%. funeral y"av&1 ha Y%is5Ir*Bgrow[#oni#agovernIrcpardon5k qlargelyT2ed;Qqtearfuleloquent meet<$he#a committeJCsappt!apBo inrRF%1ingjSwail timplore*be a mercis trample $ut| Gfoot/h0"tokfive citizenwt&+idat? If. ASataC Cselfe$/!ofl)SlingsRto scribblir names-a tear on itLir permans impair Rleaky{Q-work"2TomAvHuck to& gave anRtalk.3!haw1rneQ aboum'the Welshmant, !is}Yq>s!? old him; R  5he TS talk2now's face saddenedw bI knowJit is. You got5QNo. 233 anbut whiskeytold me itAyou;aI justp must 'a' ben ]usoon as\'fA bus|"em8q hadn'tt)ney becuzdl!go!me ! w Dand aif you!musdB els's alwaysG4we';uget holT swag, Huck, I-It-keeper. YOUF -" I"DD.mI D1youHAto w   yes! Why, it seems!ag#8> CI folleredK-YOU foll1him2Yes]2youqcmum. ISS"'s;Q2himI don't want 'em soV Bon m me mean 6s. If itpben for me he'5V ain Tex@&w,.ns entire+%in-5Aonly* Ofit before.lp:,'!ba@ main question, "whoever nipp "in(, --anyways it's a g.afor us;G wasn't n!;Bat!"Lphis comradekeenly. "Tom,agot onO twQagainti1 cave!" cblazed. "SayM FgainT*"Tom--hone 1junf--is it funV!strEarnest;!--^$as# f ! ILlife. WiF#go"reAhelpZRit ounsI bet IxE2 ifwCRe can5 ouV  6"doDwith dlittleBatroubl the worl?aGood aat! What makesRthinkoney's--2you;rtill wef!re#we1mit I'll aSto giVqmy drum71&Cq I will0jxGT" "A!--va whiz. [!do1say "Ri$w,say it. Are*4IWaPave? I ben o-cpins a,"oradays, tbut I caKlk more'n a "--IAI$.">q G$qanybodyRm 1go,1^Qmight,Drt cK]  N ; ,Gri.bskiff.&2flo] ["re I'll pull itj_by myself A neeturn yourq$Q over2Lw2artA offm@B. We"bT32eatour pipes bag or two T%kite-stru ese new-fp!thA ycall lucifer m+rs. I te, "'s1imetbshed I2omeD" Aqaafter the boys borU&) #a W B whoU Cbsen(got undec^were sev` below "Cave H%," R: "NNis bluff herJ$s!Balik d5--no houses, no wood-yards, busheRO"ee5whi4 Rup yok#'s4 landslide? Aat'sof my marks. We' aashore.yG97inU're a-sta#8'6ahole I bout of~Qa fispole. See#4can.Biplace abou$P proudly mar"a clump of sumachncc: "Heare! Look at i;athe snuggesDis country9 "ll2Drwanting/ a robberrknew I'rto have1ng 3thi1o run acros]vAther!ve1it :&2'llit quiet,1let< K:aBen RoU1Cin--*$ o@ be a GangC #lsj* any styl it. Tom Sawyer'sA:1sou$plendid,L?  "it3doe And who'c1rob/aOh, mo6. Waylay people--W$!lyV2wayRnd ki "No-@Q. Hivm# t4y26a ransomUeWhat'sCMoneg3makR<y can, off'$ir{ b; and you've kep.mqit ain'2!seV2. T!enkway. Onlyb women1shu`9 2men5Cm. T5Fb beautqnd rich awfully scaredgt"irI!es5sZStake t|+"nd4pol7y!3 as3 ass --you'llMany book. cto lovXfter they,m s a week y stop cr!eRto le'i4dro Ay'd  { Raroun2com9. It's so insy real bully' $ Ibdbetter'n a piratQC"YesF&^7way Cit's6"!toQQccircus\!at{@y+ %1andaboys ew)#ho\  $ l0Qy toi#*a7tunnel, then madir spliced 1 fadK$a on. A&E z'%pr)Tom felt ams quiver him. HeQCragm> -wick pexSon a oC cla$De wa; t2ox*_ d flame struggl)AexpiQTf!ga4 o whispers,!foS-d gloommcoppresBirit yYBpres:ar 0LQuntilE reaAG,Wndles%rhe factx not really a, BpiceLa steep DhillFirty feet highW @eW+2Now@ AshowY.  Ae he+sa aloft+` sNAorne7ban. Doi!ee? There--0big rock over$ S--donKp}3TomCqa CROSS2NOWZ '{ r Number Two? 'UNDER THE2,' hey?  2's eI saw &# p`+r stared Qe mys Qign afB 6R shaky voice:qless gi} " o QWhat!>treasureVRYes--6it.'s ghost is  ere, certain."B 81, nKB. It Q ha'nk8Qhe di,Away /%2mou!Vave--z ChereS \wouldy#ngkJ 4"ofV #so & &omi3feaX5. Misgivm!ga+d}CR mind 7Lc him--)ym$Sfools m@of ourselves! & a 8|; Z!a = !R poin`#wen1had)teffect.I6_"atA #so/EluckxQthat {7 isJ VpS AhuntG4box5wen77c -ink of fetc4theBbagsFS@B1soog oys tookr1 tofm a rock. qw less w!#gue*<,Q2<  `3'reOEickswhen we go to robbingNSe tim hold our orgieCsre, too ful snug9 ) 0CW@ bI dono P%;#ofT% wWCto hem,] /"ing!a Btime getting late, chungry`We'll eat0bUwe gec6y Temerg4/ 0ed warily f 5oast clear!weZbon lun$in ! Ac sun d#Bowar[Rhoriz] Ay pun  kimmed uDe@KR2wil1chai 91ilyZ7 alandedI3tlyd4dar7c"!id!in 1lof the widow's woodshedrAI'll.3 up*ev1 it(Upa?!unna!ou"od!.#it"it=be safe. Jus 3lay\-  Atuff1 I nd hook Benny Taylor'swagon; Iqbe gone!"nuHe disappear#re agon, putcBtwo Rsacks!"itA"w"ld,Qon to!tarted off, dragging7rgo'|h+"'sh &tgay9q fy1 on: Pp~ allo, whop  nLWGood!1me,, !ar&Gpingy*waiting. Hhurry up, trot ahead--Ahaul~Vyou. qnot as b as it4# be. Got b;in it?--orQmetalO+4tal2Tomjudged so9 1boyGthis townAtake0$%sol away1imeNing up six bits' woraold irNS sellh foundry thaz3y w; 8wic'$at6 work. But that's:4Fnatux ",  '!"!wa1to [$Ch#wa$ever mind; !n&% !E'1uckGRf=hension--for heub} falsely accus; r. Jones, we haven't!Udoing Rlaugh!'-,ymy boy.i that. Ain'bgDgood+%Ye_"sh"nA &B to #yw%"n.-(n,%to be afraid for?%is+J3not+qly answ"!inq's slow$ ~1S,;into Mrs.# dXeroom. 3 le nae doorz3gwas grandlyn1bod4tof any consequenceu2&~ ThatchersQkB Har3the!es, Aunt Polly, Sid, Mac he minister3beditor-qa great0&)?all dressX bAThe a recei;<RBartiJdany onP#we!iv such loP Dare cov Bwith:and. 2 bl[ rcrimson rhumiliaUNHv u at TomFAsuffhalf as muchQboys "however. Mr. Bn't at home, yet, so I gave him up;5$astumbl2anda Qat myG"br "Bin a(0!An1B did3Sv 1. "TyNr." She cto a bedchanRNow washI% y. Here arnew suit$ clothes --shirts, socks, .UCy're+A--nobthanks*&--b! And IY%Bz y'll fit boyou. Get Dthem await--Bdown 1youRslick .3n s \rV HUCKD! "we can slope, ifu'Ra rop" high fro"Shucks!D d|%IQrthat kiUfa crowd.,^(8 athere,a"|&4! I"an!miRA a bX'Scare Q" Silm .vhe, "auntie has been  afternoon. Mary(your Sundayb readyU 7aen fre  . baAthisus qclay, o;ra)Mr. Siddy jist 'tend toT own busiO#'sis blow-nb`It's one2#atx1havtime it'sF 1andl sons, on=uw"Vcrape they helpej9&of4'Rsay--h, 21, i yk+wK  Fold 2is to try toq#_ J( C1to-,overheard himvbto-dayvas a secre"B it' lRof a (XE RknowsSL##1allf!trro let oz!doVQwas bqHuck sh !be!--xn't geta yG1outAknowS"AwhatA'zAtracYAbbero'V  a  BovercurprisQ#AI be4 drop pretty flatWbchuckl aa verygEe aatisfiZy. "Sid, ib2tol3Oh,:Qwho i# . SOMEBODY told--3 @ZJl_ Dpers:Cmean:R to d XI7<x !you'd 'a' sne sn9EtoldZ)0)Tdo an{21an !y&~mo_Tp(+J >  cones. X$nn:N  says"--Dcuffed Sid's {i  0k8q"Now go"if2arenQto-moFit!" Som Autes'GSguest a WD-tab[$ua dozen@/"pr!upittle side;F1e sixQoom, {t1at r vAbproperl Amadev4 speech, iY!!heOkNHB honPQF [T was Dwhose modesty-- A: fo)sHe spru+{a'Er adventu finest dramatic mann_ master ofDthe B it !onJs largelyFerfe8 as clamorousNeffusivechappier K+amstanc  &, ( air show of astonishment,AheapF compliment2 so: ntude upon)(a he al/Rforgoanearlyv l܎K!Amfor%this new2 K :k set up as a targeh  \gaze laudations <"sh<2giv s a homesher rooave him educated;Rcs-Fuld spar2 sAtartFi  \'s chancrcome. H#F32uck"2 ne's rich." Noa heavy strain2the9 tmpany kept baBe du E:2aryis pleasant jos5DsilearawkwardObroke it@(AMayb. cbut he0!lo it. Oh, you%n't smile--  1eY;&a 'tTom ran Bdoor1looked at eacha perplexbterestuinquiringly a_ Ttongue-ti* #ls Tom?"P. "He--well - any making at boy out. I(<4Tom}/,q#Dggli{Eeigh,2 di"afinishsentenceCpourU1masyellow coQ the C^Cqwhat dih ? Half of FRmine! spectacl1 general{way. All gazed, nwpoke for a momentn a unanimous :.n explan  #1fur5i nd he did^B tal!bumful of _,ca scarc!n rruptiony!tok the char/its flow|che had"edAJoneM)d: I,x^Jf#%isP2it BamoupC nowone makeFBsingy), I'm wilbto allhT3was[3sumt"edRG over twelve thousand dollarsr-!as+ 7 [Qaresentever seenl`e time before, "  Q N"ho1 worth consido7av,tyaV THEer may rest Aaj's windfall33$a j4tirDpoor(vof St. o. So vast a sum, in actual cash, seemed nexincrediblejqtalked , gloated0rified, until thOs' mTJdtotter&2*'e unhealthy excite "haunted" housq 2 anneighboring villzwas dissected, plank by U3oun1 duand ransafor hidden treasu Qnot b=st men--0 grave, unromantic menWmH1Tom >Q cour2adm(gz1qnot abl|arememb~2at 4bremarkLqpossessJ&};3now1say0Twere dBrepe 4didvrsomehow regardedv8Aableyidently lo{5power of doV'2nd r common !s;5#ovir past historr!up X v2ar " of conspicuous originalityto paper published biographical sketcheNt.1 # p>#'s !ousix per cent.dJudge " lt's request. Each lad had an incBnow, was simply prodigious--a9D-dayC8Ayear7?2jus  got --no, hpromised--MrcollectD Ha quarter a7 board, lodgd school a <^1ose  be daysF 2 hiBwashbrmatter.  ,@RopiniR 8no 3boy!goz daughtPAcavepqn Beckyd@ 1fatzwin strictCw!ceA TomAtake&a whippt6  dy2isiFv  Cplea,!ceK4thei3lie-w!olorder to shi*&at!hemo8own3saiTaq outburh$atyBa nod !ou<,5magz lie--a litaworthyzaold up-2hea-Rmarch1]breast to George WaBton's lauded TruthU"ratchet!mQ 7ghtzU bso talSso superb wR walk4 fl qstamped\AfootdVv!2Shec:straight of1tol#/it"op& 1seexqlawyer  soldier some day0look to i"T#!AdmitkY National Military AcademRafter(Qraine!es  9[Amigh9'Ieither care both. Finn's w0 qsthe fac#now undeQ_ Douglas' protec introduced him)"society--no2' it, hurluis suffer%1mornj1R bear?servants1cle 1d naHQcombeC1 br hCbeddly in unsympathet3ets2ad 3e[ spot or stx~uld pres/2earQknow yK$!haE#eaba knifufork; h%use napkin, cupXplate&QlearndWbook,@go to church2stalk so "lyaspeechT become insipid in hisX; whithersoXees"edC2bar ashackl civiliz;B shuiQbound1han foot. He bravely b4is miser|1ree!thTLSe day up missFor forty-e\Qhours^g! hO j2himw2in Qdistress. The cS profoundoncerned;~7u E %eyF- @1forqbody. EThird V)r wiselyPp*$Qamong old empty hogsheads down*]AbandU#sl-T p'inQm he $rrefugeeL had slepor breakfastoB stolen odd61end Bfoodbwas ly<f in comfort969"ipwas unkempt, unM1cla old ruin of +,had madepicturesqueRays ws01frea happy[S routvBout,"his"*been causing,s 3urg=Qto go gr's face its tranquilv took a melancholy cas63RDon't X CI'vey #itwT work6"T;"#"it:~U 2to :)d("ly_&7#them waysA!mex!up% / Bsameq 7+9Awashy comb mLo thunder0w&let me sleepJ/a; I go61wea[m blamed cloth!atA smo?" m#'dg1seeany air git A'em,Show; !y'1 rotten ni,a=!et, nor lay^ croll a@nywher's; I hai"liD cellar-doErit 'pea b A  and swea q--I hatm!m Cy sermons!Aketc xK,[chaw.Qshoes$w eats by a bell1goeybed by fits up!--VK's so awful reg'lar)dy!it_(,>#dvhat way, Huck(&qmake no differI`Qybodyq STAND &3t's1 ti so. And grub como easy--I# t{!esvittles,}3askAa-fi 1; I  in a-swimming--dern'd if{AQ1do 6t". H!I'42 to"sodn't no(#--. OuRattic"ipRSwhileA daym1git!st"my , or I'd a died, TomnKBAmokeu y?5Bgapeqstretch Q scra before folks--" [The+a spasm ofsial irrit and injury]--"And dad fq"itaprayedNDime!A see, a woman! I HAD1ove2--I yUbesidHZ5's $Copen_<S$it%I G!st"QHAT, QLooky%,0S rich@what it's crack); Bworr  9 2a-wwas dead <2. N7%seBsuitis bar'l %shake 'emmc>B got into%isAif in't 'a' ben Kmoney; ntake my sh@&Syour'gimme a ten-centtimes--not manyX#s,K_# Ra derR2'th's tollable hyx4you$qbeg offSQidderv"OhK3d6%Rt. 'TBfair if you'll try^;B!a UQ longI*e $tok<Like it! Yes--bay I'd&a hot stovAI was(!itcLC. No7Brichi4liv m cussed y_Bs. I6oodv  Rf  I'll stictoo. BlamBall!QSas we3gun_1a c*"ll+AfixeEArob,p&olishness has  k"up5pil~x1sawx opportuni%"CDhereHECUevYnturning 'qNo! Oh, -licks; ara!qin real3-wood earnest)J+CbR'm siV-?5But<l)#qgang ifarespec5R's jo3h!!C"inq Didn't[!go~a piraterYes, bu%'sRt. A 7 zfAgh-ti7"a NQ is--rgeneral~A. InTr!ri 6  Qup inQnobilRdukes03uchw,! aS2lwme? YouhC  A youP *nVWOULD+B" "wR%,tI DON'TR--but(vpeople say? Why 'd say, 'Mph! V#!  low characters in it!' TCU+ {h+`$t*#so , engaged%Tental"#e. Finally h# Rll go}aba monttC!nd1if  `3it,49XRme b't>%Q gang e_b, it'sQz! Coxo8X`2and G>Toh# a[oEWill/!--yg2? Tggood. If sheUt"ofroughestK"s,@qprivate-Dcussdcrowd ror bust] Astar/4NCturn$s? 3right offBB@Atogem"avQiniti  0Qmaybe(H(Lj;+W6t$12Bto sn9Cone [+ O#te rgang's 8+sd nNre choppl o flinder qkill an 2 anV his famiWhurtsX%ay9/e3y g8,!_3E bet it is3 "at1ing Abe dt midnightthe lonesom|3est@ you can find--a ha'nted " ib:-Bll rNB3up M#yw{(socyou've3 on a coffi 1sigh with bloodOt)Bsome RLIKE!frmillion )X!ieh n 8 s QidderAR I ro 8#gi% acr of aRLbody tal('-&itD bu+!sn!,wet." CONCLUSION SO endeth schronicP$G strictly a}!BOY, it kAstop ;Sstoryz!nofEmuch)p"wi becoming ^3MANone writes a!! a Sgrown*Q, he O4A exarto stopOB is,a marriage) iof juveniles, he W can. Mosgyrperform still liveare prospc2Som.it may seem ZQke upzyounger ones agaiM9 1sor"meAwomey turned@krRit wiwRwisesyOto reveaH&Rat pacQtheirDs at'4. Pby David Widge]previous ediwas updat2Jose Menendez'>  THE ADVENTURES OF TOM SAWYER0 /BY# MARK TWAIN' (Samuel Langhorne Clemens)P R E F A C E MOSTW%e 1s recordw areally occurred;nr two were experienc6 myb!rObose of"wh7 ]#3mat7$inY Finn is drawn from life; Q also$an individual$is a combi,Ybistics #re_whom I knewSabelong t.Sosite of architecture. The oddK!!stzqs touch}"onDall prevalentchildren!bslaves5e Wpwe period1is ay, thirty osAty y ago. Although my book iaGended mainly@ Athe qtainmen1boy7 girls, I!7#ill not be shunni "7$at;d, for vmy plan<"tooo0ly remind adul0 they onceathemselve^ 1of (rhey fel aalked,}Rqueer89s=Gimes 4. z!dUTHOR. HARTFORD, 1876TT O M S A W Y E RI "TOM!" No answ& g4iat boy, I wonder? You Rld lady pul'"!eratacles|$!ov #emcthe ro0rn she pm:&ut"m/seldom or +rTHROUGHhrfor so WJj!asyIher state pairA3 pr8V2her",Qbuilt3"style," not service--4'!se+raetove-lidsUs well. She looked 2z"&mo68!aiK1Qt fie0673oudP;the furniturUhear:e IQ aet holI1you A--" 2="by AtimewVnding punchingNL%dre broomj!soGdneededE2to punctuat Q!esBresurrected no f B catiJ6"diz!ea!1wenthe openDA andUiRtm?he tomato vin~"jimpson" weedsB constitb the garden. No Tom. S AliftWmavoice  angle calculfor distanc1 sh : "Y-o-u-T w!slTnoiseU"h42  i to seize al2boye slack of his  aand ar?Qhis fwA. "2! IE 'a'closet. Who!(.Pb?" "N  1! LI!at yourU8(Qsr mouthb!ISa truckXIk?-1aun. Dk^3USjam--FewFWAI'vet" dk"leGA jam@e I'd skin you. Hand me switch.# h.i d air--Sl was desperate-- "My Bbehia hatesB{5 S else#'ve GOT to doLIrhim, orbu!ilaTom di>-eidFAgood02. H  back home barely in seaso}help Jim small colored1sawS9-day's wo"likindlingssupper--at le6e{n:"to~=8hiscto Jim"Jithree-fourtht~$rk. Tom's!br( (or rather half-Q) Sid!al0Awith A(piccup chips),Z ca quieH1andE,%noDous,VBsome* While Lstealing sugar aQ offe{X7C askw+questions/ Ewere1gui1nd deep--for Bwantxtrap him6damagingments. Like ;pI6-hearted souls (1was pet vanityAlievA `4endowed with a t@ 1arkmysterious diplomacy0qhe loveacontemn0xmost transparent d׏ as marvel[low cunning. Sai u: "Tom1midQ warmR, warn't it8 BYes'OPowerful1'u "wa n(FAA bim a?Ae shvTom--a togL#unr.9;suspicion. H8dL93facKK!ld aQ. So [ ?SNo'm-ynot very mx =1rea+oY Sshirta#Bu } 1tooJ though." A-Qflatt hO7rreflects2;hy-2hir1dry!ny Bknow/*s8!hay Fher Glqin spit/1herC whe wind lay, I ZqforestajCwhat )next move: "S]us pumped on eads--mine's damp yet. See?" 88"ex:Uthinkoverlook(v circumstantial evidenc!mis=a 1. Tya new ins"5ion^ ho undo yourrcollar =bI sewe to pump on/Qhead,3you? Unbuttsjacket!#sh#of\2fac1Aopen]s@a. His qas secujQ. "B1! W Ago ' #I'11sur'#edQ A 8bee  QI forg(y*. you're a kina singed c"s --better': . THIS timu Sahalf sV*her sagacitymiscarried,3gla?ATom i3Winto obedient conductconce. But SidneyIB3you5hisith white thread, but Qblack5BWhy,OB sew8r! Tom!" rnot waitQt. As4ent>w3o85bSiddy, 2licfk abI|afe plac/nrwo larg22les "A wer#us.+sthe lapd6them--on^  D3theHpJDShe'D"anoticeQit ha_'for Sid. Conf6it! she sews]&_ &I wish to geeminy sstick to t'other--Akeep!run of 'emsR I beI'll lamX qearn hi4!Hene Model Boye villaghkAhe m&1boyOS well--and loatim. Withins, or even less, M1tenG-As. NQcause sV1onePR heavV.Bbittj2him a man's ow_aTand p 1bd !emgAdrov% mSb)y25!--ras men's misf+eiaexcite!of. This newwas a valupSveltyP1stlojust acquiredb negrohto pract5Pundisturbed. It conma peculiar bird-lik5, a Aliqu wrble, pW  &#he9Lh(Droof at short 5valAmids@@Busicxreader probablyEbs how !it.4ra boy. Dilige attention soon gave 8#kn{7he strodeFVtreet full of harmon1his gratitud 0^ an astronomer feels who hasg planet--no doubtlqfar as Eg, deep, unalloyedRs concerned,advantagFAwithT!boO t$XComerRsumme4ElongJNqBark,2 P"ly Tom chel2!hiustle. A stranger!hi boy a shader'himself. A new-cAJaA ageither sexXan impressive curiosiPJdshabby\WJ!Thy{`Qdress\"oo  on a week-A<FFa astou B cap dainty ,W- ced bluL3b round%5was#Rnatty0"sohis pantaloons2had;82 on#iGonly Fri"He!wo necktie, a br  aribbon0had a cit#KR air |bat ate&avitals B mor1staUIsplendid}1hig!oshis finerUhabbi E outfit seemed d3crow. N]boy spokeU,2oneEa--but Nsidewise, inrcle; theyArface toaand ey!ey#X - U!" "D3to see you try i,  8$doN> ,L.-'Y?1CanACan'A "An>\!paMp ! Aname"q'Tisn't5"of^,Well I 'low^ MAKE it my0)why don't youhI\2 sa}01ill3qMuch--mAMUCHrb" "Oh^ 2'rey smart, DON'Tm# I)l one hand:n!meIr DO it? You SAY aI WILLTyou fool~ "Oh yes--een whole familiesame fixqSmarty!| CSOME "Oh_a a hat+AR lump-8;Z[Bck it offqanybodyG61akeb!re suck eggsYda liarn %fighting.q and datake it up1AAw--aa walkXSSay--!meA morBsass@and bou1 rof~oOh, of COURSE+; then? What/ eSAYINGTx for? W>{EIt's XQfraidyxI AIN'TaYou ar7""I+A3/3eyiM1"sihaR eachm tCwereH  .XGet away Ahere"GoyourselfDI wo B"Sobstood,X Sa foo0d"as a bra' both shoving 2ainaglowertg1Q hate# nfget an a. Afte=Auggl ,Aoth <"hoy#flHmSrelax Jnx watchful caution|acowardca pup.1ellRig brozQthras'y3his44r finger.make himW 1toosI care forj{4? I;1a6big Be isUmore,hrow him'3at !T[Bothas imaginary.]$at's a li=DYOUR 2n'tAit s1rew6n ;G dus cbig toh<qFstepZ/y stand up. Ateal sheeFTz!w{ 1tepv-Dmptl N="sa$'dnow let's D crowd m;abetterZ{HSAIDh*--Wd[By jingo!Xtwo cents.jAtook1bro)QEpper>$ 1ockd cderisionRtruck*g0B. InF.QstantR boys1rol Aand 4ingdg3d6Acats3, 1pac"Rtuggetm A's hI 3nd fFs, punch3Qscrat"T's no,covered -#:'ry* confusion2for) ;the fog of baXcDTom %, seatedU!id1# p sts. "Holler 'nuff!"3 heaboy on%Rruggl1fre*Hcrying--.rom rage. dn. At last#go1 smwbed "'N"1up -)8jyou. Bny 1foo+Qnext  3Mqff brus6S2ustGsobbing, snuff5and1\Eally&Aback1sha1his;.1tenbhat he=a do to]the "next) 2ughout." ToTom respo0Rjeers"st7off in high feath as soon asI4was*(up a stone,2w i "hirbetweenhoulderss-\1ailran like an antelop_Qchase6 traitor{"Rthus ere he livednaa posia2gat2som9A, da the enemy toonly made2s a gond declined. %J2's and called 0 bad, vicious, vulgar&"ndc3[ m} Twent away;!he\ he "'lowed" to "lay"s'.g1gott>2ate#:2and$he climbutiously in r #unl an ambuscade,-Bpers4#Aunt;g"aw]2tat n her resolN 1 toT his %%2captivity3ard/became adamantine in its firmness. CHAPTER II SATURDAY mor;e,"&4Qworld#.and fresh/Qbrimm-1ith5P1wasng in every:(L" i>'!wa*RR issuQ rthe lip`Zcheer iniJfAa sp&tAstep locust-treQbloom bragranthe blossoms fill air. Cardiff Hill, beyona]ave it,B!grith vegeta!2lay (4farZ, to seem a Delec"Land, dreamy, reposefulinviting. 1ppe5e2alkAa bu| of whiteZ long-handl11ushcsurvey  1qll gladE2lefoand a deep melancholy settledAuponaspiritmrty yardsQoard k nine feet/s. Life c hollo7existence^Ba bu{1ASigh)Qhe di 2hisfpassed)Isopmost plank; rep the operB; di8Qgain;f8/ignificant qed streaqar-reac!co7'un8s"wntree-boxQ Jim 3skipping 5at va tin paiT singing Buffalo Gals. BrQwater (rwn pumpKRlwayshateful work inu"Seyes,Dq now itJ1not\k 1 so\dompanypump. White, mulatto/Qnegro! 9there wai'Qtheirqs, rest?trading plays, quarren $, g, skylarking. And h"al?Awas only a hundRgnd fif!!f,/3got)  under an hour. "ev an somesG!lyto go after him. U1Say, I'll fetcp'7'll`"soJim shook :wq, Mars #NOle missis, she tol|IBgo an' g<s3an'F#op ' roun' wif_61sayZQspec'zEAgwingAax m ,rs5$an' 'tend to my ownQ--sheed SHE'D+f to de/5in'2you Cwhatt!id#. SSthe w talks. Gimm $--qbe gonerC a a\!R. SHE ever knowI9 she'd take)Qtar dd me. 'Deed2wou.q"SHE! S ver licks--whacks 'e}URimble1whosE ,p5C }w%1 awP1but6hurt--any#it!if$Gcry.you a marvel" aKs alley!Abega.waver. "%!Di=bully taQMy! Da5Fb, I teQ! But Tom I's" 'fraid aissis--" "And besides,R will#shAmy s,^o"Ji- human--t> Qttrac  "ooHAfor iaHe put( *a"ntZebsorbing!Qest w. 4andS being unwR; V2s fZ3dowI k!ApailJg3rea+Awas "waCvigo *retiringcQield 7a slipperZ {and triumphEeye.''s energyeAlastq}Tthink%!fuE 1had $ne$Sis daH"rrows multiplied. So~ 1fre!s #tra**!onL 2sor@2delXBd)Bb they J$a bof fun8%m2!to|)96verZcof it burn like fire%2hiscly wealt- q examin0 B--bitoys, marble trash; ;8 to buy an exchange of WORKX* 7s,*an hour of purk4domi#retraitened meansB "s qgave upoAidea r=1oys4 !rkN hopeless7- e Qm! No=  3than a great, ma1 8entC 6! >qtranqui. Ben Rog%v-spresentlnK boy, ofbwhose ridicule dreadingdb's gai the hop-skip-and-jump--prooj6is lis anticipa2!HeVM3ran appl1 gie1a la%melodious whoop, at vals, foljB by -toned ding-do,, a* amboat. As henhe slack}1spey"1ookhQmiddlU, leaned faro starboarderounded to ponderaborious pomp3/Oce--the Big Missouri (d| %;wdrawing"of 1boac capta9engine-bellbined, s!,o7 Qself  <own hurricane-deck the ordersQexecuAthemR1K, sir! Ting-a-linga!" The$way ran almos he drew up slowly towarq. "ShipToo backmsHis arm"gh^Atiff8xAidesZei mAstab%h Chow! ch-chow-wow! rQhand,"escribingly circlesC3 rePing a forty-'wheel. "Lg l-chow!" Thej5 e "to &RShead B0her! Letg*mslow! W-A! GeO ead-line! LIVELY nome--outd"- #t'Q#'t ! T~ t(hRstumpMQthe bA! StSy*age, now--l go! Donb 3thesH SH'T! S'tH'T!" (Suge-cocks)"on . R--paix9!, yDBen (n "Hi-YI! YOU'RE:ump, ain' nH 3hisPFouchI!eyan artistZ(!n vi\ gentle sweect&!suܙ"s $R rang4)alongsidv7  2mou!%er #e (n"tu1 k]! "Hello, old chap,M4gotTs, hey?"heeled suddenJn31it', Ben! IC9TnoticDSay--I'm goBa-swi, I am. DoQ wishacould? Aof c# you'd druther[ !--0 ?5? C)I (6(omR:d,#bi2at 6` ?` $hyIETHAT#umC \Aansw1carG ly: "Well, maybe it iU zI,$it suits Tom Sawyer dV1meaQ!le{`you LIKE!3Thep u}1mov^"? I(see why I oughtn'Gl-1. De$"get a chanW+# a fence every da}1hat(2thez-Q in aSlight!toAnibbApple2R swep daintily=forth--steI"ba<1notK effect--advAhere?there--critici=50--Ben wat2mov@1getm`!"ndp( bested, Ted. P 5 heTom, let MEf a littl _o consent1althis mind: "No--no--LBl"n'ly do, Ben. Y7'e,1's  particula.u a--righ eNQknow -G if C& I^3and. Yes, she's ;-bbe don[ careful; v"onmRthous Ftwo can do i?wayybNo--is6Hso? 1--ljust try. Only--I'd let YOUCas m:" "Ben, ., honest injun; but-D$nn!o s!1n'tAhim;7/!, "/Sid. Nowy` how I'm fixed? IfEa tacklKsb[C&Qhappe+"itOh, shucksbQ3as lgA youocK,#mySFN2.bafeardW3ALL Rareluct|ig @qalacrit1. Ah i4e  )erAb workeZ"sw>LA sun( #ed< 1 saa barrel7shade close by, danglQslegs, m^& aplanne! s0Iter of more innocBT33o ln6material;ed along :; they ca6BjeerArema2A. Bytime Ben\!faY'1out!ra1he $+Billy Fisher for a kit!good repair;1whe>out, Johnny Miller b in for a1Ir! a!ngw  uCso o, R hourHT hour8 afternoon>," a5poverty-stricken; !2was literally )3 in2. HhW"s r q mentioetwelveA par6 a jews-harp,*ece of blue bottle-gla}uOthrough, a spool cann2B key|u unlock1, a!mchalk, a ca decantU& tin soldiQcouplQtadposix fire-crack&r kitten only one eyJ61ass>knob, a dog-Asbno dogv3hanNvb, four1as of o C-peea dilapid)old window sash 1hadsa nice,G_2idlM#thq--plent40 \2encQthree coat! on it! If2n't9>9ut )"heT have bankrupted+Bvill)d2aidCmselR!itnot such a!,Yqall. HexA3dis8+ a great lawRuman |,1out5 ing it--namely, ."inD&Ra manzboy covet a} s !isG! n5ary;^ difficul vattain.U3! se philosop&)che wri ]x@A now comprehen>qat Work $isaatever dy is OBLIGEDj,<OPlay< not oblig# do. And 2helyIto under* :U1ruc artificial flowers orW_5ing"ad-mill is work, ten-pins or climMont Blanc amusement 3are2y gentlemen in Englho driveb-horseJ$nger-coaches tw}r thirty miles daily linummer, becaus@privilege costs themDablenQbut iOy"IK wages fo*XAturnh1ntoI3txsresign.oy mused at3ovea%ub?GQwhichRtakenC r Sworld`whheadquartersv[eport(sI TOM , ]q lkby an open {@leasant rearwBpartYwas bedroom, breakfast-s dining and library,|c balmy D air* stful quieeq odor o%Y@.rowsing murmur (AbeeshFeir effec!he AnoddfQver h"i "sh5n,%1but#caLdasleeplap. Her spectacl)1progQup onsAgrayA for-F1ty.%" 1Tomdeserted #ag&` !nda0 'iRpower p_repid wayN said: "Mayn't I$} yKCaunt&'ready? How mu Adone*AIt'sd.XCTom,ro me--I= bear itIb<u; it ISRF." dY1truxevidencezw uBsee LRrselfe a1uld^MDfind1perQ4C. ofAstat true. Whenfse entir*"ed1notelaborately QrecoaM!an!n aeak ad8ogw astonish 4was#unspeakable. S|bnever!m U's no^# i2canCwhenM2 %Ad to B." A!AdiluO!he)!liAby a, "But it#s seldoma aRI'm bsro say. go 'long$pl/Aryou get@3som i\BB, or(tan you." &awas sokbcome bSsplenSchiev1hattook him#th&tsE- choice appleQdelivit to him,C"ov cture upoBvaluNflavor a treatAo it uit came~ "siT9ugh virtuous effbsd: a happy Scriptur urish, he "hooked" bughnutn !kieand saw SidQstart%pHl2 stairwayll tck roomsecond floor. ClodsAhand$A thegC)waXmtwinkling y52d a #Si'a hail-stormx # ct$Allec+ surprised facultiess*arescueQ or s0+Bclod7tersonal<G} MAgonerSa gat3eneral t h&2too9iY$!usTit. HGrt peace+ /"SiWAcall"tt s black $6+n1rouC1skipQlock,hinto a muddy allaled byQ%s aunt's cow-stT4 He aly gotrly beyo  reach of capuQhasteR the public squ$1, wtwo "military"N!ie02boy"met for confliY AccorO qto prev#sappointt <G3 ofޢ these armies, Joe Harper (a bosom friend)<the otheruse two great commay ! dYSt conyb to fi!--DAbettIil2Rstill<ber frys !geon an eminence/Qconduield operations bysD aides-de-camp's army wX uvictory+ nd hard-f@ 1 ba# T were counprisoners 'drTterms rdisagre d7y $ay 03ed;X 4R fell?and march "ayhTom turned home slone. Q!as &3useJeff Thatch-1ved_saw a new girl e garden--a love^<blue-eyed creaturQ yellir plaite1two-tails, white summZd embroi  )JQettes fresh-crow2ero4without f^+a shot. A certain Amy Lawrenc2U2his6 !efoJa memory of  Gm 1 he#d to distr#; !rePdKQssion"dogi o + ~Aevant partialit pmonths win8bher; sTesseda week ago; $ <bappiesx Oroudest Rworld WQshort_e!inRinstactime ssgu a casual=)visit is dH"sh this new ange's furtiv -shqchim; tf Bpretq6 Aknow\4was %"show off" in 2sorabsurd boyish ways,# wBadmi%{Bkept is grotesque foolishnessome time;, by-and-by,  )s Adang) gymnastiche glancZ@!idy MC girl was we(xher wayO $upn r leanedq, griev5b+Roping! tarry yetblonger 1halA1 moO  Qsteps m]1warQ heav great sigh asp$Ar for threshold.#1his:! lI", Qhe toqa pansyG L ! ss): 3 bo)3rou\Uad with Tr twoY Aeyes=#haWCdown d as ifBsome of interest goat direction. P- he pick:&w#ry !ba! iO,aead tifar backSas hefrom side8aide, iO edged nearer B; finally his bare-#W3(liant toes)w 2e haBaway the treasu# OArnerb only minute--(v Rbutto$1 inhis jacket, nexheart--orstomach, possiblAnot 82pos<s anatomnot hypercriticaZByway1# 4ung#<nightfall,ing off," a16 2irl exhibite again, though Tom comfor$"im$ 3hop@Abeen>,*een awar&P  Bs. FX he strode home !H[[%advisions. Allasupper.cspirit"soCrunt won "what had #inV child." He tookÁod scoldrbout clB Sidp1seee!miY QleastQtriedIugar undGveryG"goknuckles raQ!foxc "Aundon't whackmhe takesQWell,/1torsRa bod 1way"do. You'd b9  bsugar ifq*watchingu sezckitche Xs immunity, l"gar-bowl--a sor&2glog2Tom/Fllnigh unbear_'s fingers6`Rowl d1LVbrokeFin ecstasies*JB (!he controlP#Rtongu!il5 toF Bpeak6!d,^P1in,18A sit0 bectly Lyshe askejimischief|u! tCrRbe noA!so+   !asefpet model "catch2 Heo brimful of exultR1 Thold Q rld lady #ba stood abovwreck discharging lightnings of wrath(#Y v, "Now iVm2A8zt gQspraw1on 2loo potent palm#ups!to($"keTom cried out: "Ho 1'erbelting ME for?--SiK it!faused,\vl1heapABut 1shes5her3she RUmf! you didn'ta lick amiss,)Wsome other audacious Iaz 9 ." Then her conscience reprgeqshe yeaato say'3 ki l;ashe ju - !beo4tru!a  Ae wr7T cipline forbadhs. So sh rsilence2d1bffairs av2rt.|1ulk# a W "ex chis woBknew3Qheartb Bas ojAkneen was morosely gratified b 1ous\)OAhangno signal take notice of nona3ingRR fell"no cthen, s& a film of tears~ahe ref recognition!pilsick unto deathbim besee}D one forgiving*u]cds facew rand die word unsaid. Ah,+Hs !el2? A bZK the river,  Qcurlsw9<8sore heart a .sEhrow 1ow 4earxfall like r4 (ps pray GoAgiveAbackG!bog\  , AabusY9[Rmore!k.blie thlsi02--a suffererP"se grief C*# e$so, as feelBwithAbathos se dreams,hto keep swall ,Qlike to choke03swaqEblur:, which overflow}xr winkedran down*l?XAose.| ba luxu'"hi:op17gsorrowXnot bear to have"ly'Lixrng deligh\ Brude0Cit; <too sacr/rcontact7Tso, pU,his cousin Ma31in,!EalivAe jo!sesB4hom+ an age-longbof oner aountry!go~in cloudBdark u"on|Munshine in at@1"wa B fars the accustom"1unt=?S` desolated"suwere ind9. A log rafAthe S invi%fQhe se!i on its outer edg Aempl+reary vast*iram, wis4Lw_ u rly be djQt oncs5 un6c1the&'routine devisWn9N*Y+Cflowt>got it out, rumple!ila 'Fily increais dismal felic) %HeFQ1pitu knew? WOrshe crym8! L! r%toRarms #ne  him? Or2she(!co1all (,1? Tuch an agony of pleasu ) ` tC and 1gai 6set it up in new!vaosTswore ithdbare. Vqhe rosei?NJAdepa4l A. Ahalf-past nine or ten o'clock hey 3alo+'street tothe Adored Unknown ;X{ `; no sound  3lisdVear; a c/qwas casa dull glowbthe cuCof aX"c-story/Q. Wascre? He climb,jCs stealthyf/ !thn qood und]#at j Aup aC#,ith emotion; Claid]$wn9#g bit, disposingpAuponp Rback,]ands clasphis breah41hiss wilted5*1thutdie--ou~ jyno shelter bomeles-C, no !lya to wie death-dampsR!ow8  2benvTinglyqmthe great3cams4SHE:!eeww4'E outvT glad/U,p4oh!A!hev Atear>poor, lifWform,=>Dsigh~1a ba youngE so rudely b:*Duntimely cut ? Aup, a maid-servant'cordant voice profan" holy calmqa delugAwater dren#rone martyr's5"s!BstraB hero sprang uAa relieving snort%awhiz aPa missil/vir, mingledHV"rm Qa curHBshiv1glal !smb 1vag rAv!e >Bshotvgloom. No!Q, as +all undressed for bZ  omission. CHAPTER IȷCsun 5!2QanquiT"ld]abeamed8D4'ful village~a benediY Breakfas, Aunt Pold family worship:cL2ega# ab built6up of solid cAScriptural quot/s, welded`%A a thin mortar of originality Bsummf  7she+a grim chapter xMosaic LawKaSinai.n Tom gird Qloinsto speakh2bto "geverses." Sidlhis lesson/"c beforAbentt his energies5 smemoriz\CfiveeAhe c$"8the Sermo!Mobecause 2uld.#noO, were shorter. Aalf an hourugeneralw!no;wn =Qraver) %olN'Bf hu-3 !iss3bus $Qng re%ions. Mary took<1booAhearPSrecitahe tri!|] Gog: "Bl!ar 1--a " "Poor"-- "Yes--poor; b025#In? :$ i/Ubthey--" "THEIRS BFor +. Lairs is[kingdom &MavenEy>_mourn&ShzS, H, A S, H--Oh, IO$"wh is!" "SHALL BOh, # fb shall-- *Y/ I 5iWHAT? Whyyou tell me,1?--do you w !! bmmean for?2youthick-heaRhing, I'm not tea[1youpyA1 do. You must32leaI75. D"be"buraged you'll manage it--f 2do,11Agive #ever so niceC, that's0#bo'"ll{1! Ws"TMary,K C+'.ueryou minMbsay it's,< AbYou be"sou%. Qtackl ;3" [did ""*2und double pressure of curiositprospective ga2 diA)2ithD he accomplished a shin SuccesQ gave  a brand-new "Barlow" knifqth twel2d aSRcentstZSnvulsGthatGVsysteL[ DDoundTrue, the scut any!buwas a "sure-enough" 5t  inconceivable grandeurSBat--lBWestern boys >A got N|a weapon1#qunterfeZ3a injur<3obmysterw] erhaps. Tomr˻to scarify82cupuR\ "it )ArrancCgin F dbureau" !ca\ qoff to  eSunday-school. FLrtin bas 8andmABsoap!he  3"oo21setM4n aRbench2; ta$ d+be soapeiy; sleeves; poured>& ,W=y~e'  " Ubegan?ace diligentlyFStowel|-g"oo&&3 re),5and2Now49lhashamesmustn'tVbad. Water wShurt c#"Tosa triflncerted. T=5sin was refillAthis3xO&ito'b, gathaf;/% ebig brGU9(hen nDboth eyes sh8Bd grC+t.[ , 1nor&testimony of sudsR>2ripT Aface mse emergf>x,fnot yet satisfactoryQclean territory* " a%Achinhis jaws,mask; bel_p4dis lin1 dark expan5unirrigated soil]Rsprea7,rin fronlAback  2himBnwhen sheY%dR4him$Ba maqa broth1adistin<Bolor)Aatur2haineatly brushe2its curls w]Ainto2intsymmetrical effect. [5!iv;w smoothL[3labdifficultQplastere AI]3qhead; f(] effemin71andBown  lith bitterness.] Thenr!go! aP1 ofF#cl%1Busedy##on Bs duvH!wo s> were simp1"ot%#clothes& "soJRat we qthe sizV brdrobe3D"put`"s" !!S; she+Qneat "/m,his vast shirt MG2ovem,soff and c V-QspeckSrtraw ha)1now#oed exceedWAimprcand un2abl":Yy as E as OOTa restraint e lgAm. H-"atU Q forgie"5!peZ61 cothem tho"ly/2tal s9Bthe 9rthem ouH2los:Stempem~z bm$o do ever  Dn't "doAMaryN&rsuasiveTPlease, Tom-- 3So &zhoes snarlingJ(son read9/hree children se3for "!latat Tom hd heart; but3andbere fo0!sSabbath`-from nin$Aten;B church service. Two  "ermon voluntarilV :2too!ger reas.TZ urch's high-backed, uncushi$BpewsU!~h4d persons r edific_bWSplain,'a sort of pifR6ard*kQon totia steeplB Tom droppe(ps2acc0a comrader]2ay,N,o)2a y*;aticket5Yesy'e'Agive:APieclickrish fish-hookX2LesExa'em." 5(0 ? W propertyGd@!tr=cMwhite alleysb  E6Tsmall+ #oro9forSsblue on(1way ,b boys Sy camwent on buyingz of various colors ten or fifteen minutes l !/ qqa swarm; #leg Rnoisy: irls, proceemoE!se &dAed a quarr84Airst5jAcameyQ teac a grave, elderly man,75QferedGny-'6>aTom pua boy's @ !inM 3;"was absorb% the boy  ;[aa pin w I boyk%8 hear him say "Ouch!"got a new reprimandJ 'csle clasWqof a pa --restless,!tr\Csome> Qthey to recite their@w%~am knewuverses /,!habe prompv8ll along. Howe)worried @2reward--in T blue,,q passagl"e '(;2pay#wo1 of  ation. TenuB equa#onc7$Tbe ex^qfor it;0Cyellow onep #enV> Wsqsuperin;"ntat1ly bound Bible (qforty cin those easy3s) SQpupil2 maH$!myKe* (the industaapplic+4 toeTthousand]H2 BDore? And yet Mary had 2two%is way--it the patie5!rk!^  oy of German parentage had wonRqor five3onc#ed i out stopp/{Gtraitmental facultiesyCtoo (haand he~+Abett {U idiodBat dth--a grievouC2he :"onpR occa$y company f(1 exbed it)  'y come out and "(b." OnlRolderts13Bkeep}Li]1tedRlong  to get a2[s6y*sse prizaa rarenoteworthy circumstancer32fuls?conspicuous for  ;AspotEyQlar'stQ4fir"a fresh amb/that often_')ed\weeks. It is{1s Tom's qstomachn 1rea 1ungo1for#.o. unquestion6-Sntire& hNPa1lonQglory,qthe ecl+!atcI rIn due K  &Rp in {e pulpit" a6d hymn-book inh)!nd cforefi"O(between its leave Frd atten0G  ! m09>y,4aryAspee  RGs asoEBas i ainevitAsheeTmusic&sq who stu'1forAplat<$ings a solo atn %!y,:Qneithen sa refer.0k. ThisN0fa slimEirty-five a sandy goate8Qhair;1ore 2iff!Cing-wE"Bsensa}!itenew hero ups C!on l Xtwo marvels to gazt#injbof oneBboysall eaten upenvy--but tb)est pangI-swho perstoo latDS themselv contribub athis hsplendor by trad01 to't wealth+bamasseelling whiteprivileges s]D2pis,Urthe dupa wily fraud, a guileful snakeRgrass !4was;ew 2Tomo"as%2eff superin"nt pump upI7!s;it lacke&wS-true gush< IQoor f' tinct taughZ-xzw not well bea]l  k4was.preposterou8 c!!hae)Q thou[!sh $al wisdom on@remises--a dozen ,#capacity,Rout a8. wBprou$glsH<T1Tom it in heL-ouldn't look. ShH 3n ss grain %"d;Ta dim suspicionbG(b--came P-! wnEd; a1`#glrld her ] +her heart brokMs jealouaangry,t'&rs3shebody. Tom G!of (Hhought). )asohis tongue,Qtied,J4 2rdl"quaked--part75cau awful greatnes rthe manGmain6H$ have likBfall00borship!ifyqLq1ark # ph an Tom'!ca9Rhim aC * sand ask!qhis nam?hwstammered, gaspe!goUout: "Tom." "Oh, no,QTom----" "Thomas'"Ah~'TI7!or\ it, maybe{'W well. But you've)one I daresay""llit to me,6Q you?1ellQ "an"Qother", ","'Walters, "5!fay sirX=n't forger mannerI Q--sir1it!B's ayvF . t, manly0 Q. TwoLverses is a  many--very,(.'2ou $can be sorryUQ*c you tOAAlearm( knowledge is worthchan an@1<3is pa; it's4#e  Dmen;V$^d3Qman yC$Alf, -5day1'llR,Y9ay, It' R <)1rec ;A1 ofDoyhood-- Gvmy dear-5tha^mU<  Jood ,L$en? H.)3 ga beautifulI*\d id elegant'"anH  for my own, always right brin"upA is |2you<{!~&take any mone^ose tZZindeeE1nown't mind t $ m+ "isB2 hylearned--no, I know --for we are4$of3boyG!. 1no vAknow2nam^r, es. Won'Lbtell u9the first3tha`!ap$Fed?"l1tuga_utton-ho sheepishblushed, nowz1his! fO'MAsankm ain himH_\ETAposshtc2sweb simplest (--why DIDH=ask him? Yet hBrt obligspeak up say: "Ad'1--d}#be!.L_hung fire."*$me\ady. "TF twoeDAVID AND GOLIAH!" Let us draI%cu3 rcharity tYsceneJV ABOUTQtcracked be2theu church ?R ring01epeople(1 ga||"mobsermon. childrenHA 5!e C C eoccupi5ith thei s, so as K{Kd. Aunt Polly zTom and472sataher--TomL%"d G8sleB2!ha9A be GrE9the{e seductive `AbsummerEs asQ crowd fil/"s: 1gedneedy postmast=!hosseen better days C may<"hiJ "ha$y3re,| 4 unmp#ieOejusticRpeacei widow Douglass, fair, smartQforty!ene,O2-he4Asoul well-to-do, her hill mansj only palactAChosp+and muchKmost lavish 't of fes,St. Petersburg [RboastAbentxQvener,3MajsMrs. Ward;  Riverson,bnew noaACance_1ther village, followRa tro8lawn-cla.ribbon-de!3 p-breakern#q clerks!owfa body;C had.G vestibule sucD!cane-heads, a circYb!wa! o !imcg admirers, ti Alast!ru ir gantlet; and/AcamedModel Boy, Willie MuffFs heedful carlQhis m5 asXere cut 2x ! b=tN,>#to, v1prisrmatrons(2ll vh !so0. qbesidesa"throw;3 Qm" so. His whit.kerchiefZhF#q pocket behind, as usual ons--accidentalN)noa!he 1ed ytas snobcongregapefully (: 'T1once, to warn laggard0straggler a solemn hush f p! <Q+vdbrokenBtitt=8and& choir is galler=GF!edthrough =conce adQY Pill-bred, but I rforgottgh!rea2. I !y [B agoV.I can scarcely rememb?_="itI kg1 in foreignj#"ry* minister & "ou3hym-1reaba relish, in a peculiar styleZeat part His voic on a medium key&Zasteadi:/i0% a"* rBbore1strY5umphasis topmost wor splunged8spring-board: Shall I be car-ri-ed to!sk !on flow'ry BEDS of ease, WhilstsyOIH sail thro' BLOODY seas? Hqregardeadful readKZt"sociables" h= #R>!to;r poetry,Cwhen32ughcqladies l3 up<3han let them fall helplesslyrir lapsc"wall"C!eynB1k\!irZ5s, u say, "Words cannot71 itfis tooV, TOO rtal earth." Aft 2hym~&Bsung2RevtSprague#' into a bulletinGuoff "notices"ge,qocietiej-1i#)o4 2st qstretch of doom--a queer custom#is vin America#cities, away x4)1 agAabunZnewspapers. Often3Eless, to justifm 1adi7l3Bhard")q get riu'ittprayed. -, r:bwent iIhtails: it pleadea 2rBttle),3rend:7=eip ' itself; ?y([State officersqUnited . ' 'C)s5A Pre.t_q Governm$poor sailors, tossed bK1rmyM ppressed millions groaningeel of European monan  A Ori5 despotism1sucDght 2tid?'rand yet-M"yehqee nor !to &alRheath)the far islB seaZaclosedW a su Twords!abmfind gra)RfavorV!seLm fertile ground, yie%Qime a?0Charv9good. AmenP!re 3a r(Q of d v8! cPy sat down whose historybook relates disQenjoyQB, he< Aendu}Qt--ifN1ven9J r  it; he kept v y a63 --Lp"gc#, qBzc of olvthe clergyman'ular rout}&VaiQtriflsRnew m3 terlardedear detected iWhole nature resen!considered adAs unqcoundre I |/B a fU'R lit  " bAew i#nMmaAtorthis spirit by calmly rubbing iti d8, embrac"eah,3armpz}& so vigorous7at eo$;part companyBbodyvthe slend9read of a neck61expto view; scra0Qits w rind leg'AsmooT !toCbodyK|been coat-;~,&le toilet as tranquib if it.)$E safe. As!ras soreEaitched@rab for iynot dare--}4iev3oulbe instantly destroyed 3did qg whileB was2 onhhVqsentenca curveTstealq.Cthe ra"Amen"r!hewas a prisonwar. His aunt bthe acmade him let it go rhis tex8droned along monoton an argumea%"sybmany aBb &byBnod 3y Wdealt in limit 2firMbrimstonSthinnpredestined& Eto a#so !2worA sav1)2Tom_&ag ;; $ % h2how:t#aseldom: Delseqhe disc MH"is!he8qreally {16forE*a grand and moving picJH"&+=world's hosts at the millennium*B !onc aamb sh"%liS[ , ,!eaAm G2hos 5les1mor/C theEspectacle werQahe boy v# D" principal character beforEaon-look<>!s;#1fac" oirhimselfYhe wishe",Q tame lionf!w 8Qpsed (ing again,fhe dryQumed. eHpA him treasur # a large black beetlformidable jaws--a "pinchbug,"8#Rit. I/=ercussion-cap boxhm1did/bto tak)b' Afingal fillipgIbfloundKZ2isl1its !ur ger went1's Co!lart5its" legs, unAto turn over!ey !lo1forF^!ofCt. Other'uncR]1q relief# wyof too. Wa vagrant poodle dogNA idllong, sad#Bf, lazyI1oft e quiet, weary of captiv(1sig"for changeMs;HAdrooz Ataile8bwagged:1urvrize; walked a it; smelt a87afeu4 4; grew bPJUA6rY1l; Trhis lipqade a gzly snatch,YA misa;3it;/nn %; g diversion; subsid  Stomac)W betweenm3pawh scontinu experiments; !ath Aindi- absent-mindi(1nod ittle byrhis chin descen/ou he enemyAseiz[2re sharp yelp&li' fell a couple of yards away, S}Amore neighboring spectators shook)a! inward joy, s2afaces rA fanI s)_aentire #ppXdog looked fo8 4probably felt so r1entc iheart, tooBaG>qor reve1So .n:9gan a wary attMnWQ jumpfRevery2B, lightingP!hiKJae-pawsin an inchB2YouUX O=3Oh,Q, I'm,/"W4=--wQa, chil9 X!my! toe's moF1!" J#ol[UBsankqa chairB#%ed! cEB"a did both0,Arestwh/d<P," ayou did Ce. N ;1shus aonsensCd climb"thg{$ThS ceasrain van Afrom!to   ' it SEEMEDi"itTBso I B my aat allqQYour ,#K+ Sthem' aperfectly" "Ther|Tdon't Ahat @'Open your q Well--4 IS1butcre notwVto diG!at. Mary, gec>aa silk a['1Rnk ofq"ek$2n." !pl/j7 !hue. I wish I mayO%qdoes. P_@.1wan-]stay Don't you? So all this row was E1youM>ght you'd7i ibgo a-f*?yI love you"1+!ou !ryQy waycQbreakX?l !t soutrage!=." dental instru?S read #%on8the 8^I"'s:Ra loo& #tiod edpost. TBseiz* n^QthrusI($inR2oy' U hung dangb- } Rrials@*1qcompenst+s'#enrschool >fast, he6qthe envc( 1 bo"5metSfap in 1row&eeth enab 3 toMRorate!1new<>4 s9ing of lad9G%in the exhib@0;2oneShad c ' 2hadr a centre of fasc and homage2o[Qnow f:OJout an adheren Tshorn!Rglory'QheartyBheav 3a disdaibZit wasn'tDo spit like;our grapes!"%e wanderh dismantero. Shortlyb3camMthe juvenile pariah5he n;Huckleberry Finn, sthe town drunkard.,-Qcordi2hat2 dr1#by "e s{t 2idllawless and vulgarRbad--zxk?eq delighV-forbidden societyAthey dared?Rlike B!om @!reNCRboys,faxenvied >his gaudy outcast cond;as under strictIQrs no8Mm1Splaye3him1timf2got% Ince.c!slways de cast-off _سll-grown meAthey  in perennial bloomRflutt sCrags{!ata vast ruina wide crescent lop a of itp!m;ecoat, +72ne,Bnear^2his[ !haQ rear!buttons farY ; 2ack1oneMeaupportos trousers;Ceat ! b$A low~contained n A friM&rlegs dr4Bdirtanot ro[Iup. 1and?A, at"own free3Yrteps inKDweat in empty hogs> in wet;3Qto go2 orurch, ornmaster or obeyXcould go  or swimW1herCchos1sta/long as it suim; nobody~V$fiyhras late! p8 d3t)2boybarefoot Qe spr'gnv~Cme lsAfalli1to wash, nor put onf0wear wonderfully. In !rdJ8tQEgoesxlife precious{!adgrthought\ harassed, hampered, ; inkBR!ha!AJtomantic : "Hello$!" K ee how youh9it.a A gott rDead ca%RLemmeC"imp. My, he'tty stiff\Are'diqget himQB2himR a bo#di4zI a blue ti@1and"adBat ItVter-hous1 T#itBen RogersI!goa hoop-stickE6SayU!cats good for2hGA? Cu1rtsHSNo! IQ3so?JV some6A's b3BI beedon't.ibaspunk-?5S! I wouldn'tqAdern 85You-,  $D'OD tryqNo, I h DQBob TOA didrWho tol!so"he Wa5Johnny Bak im Hollis8 'ld2Benmca niggLC them bre now2ellt? They'll lie. Least<1all WA. I 2HIM(I%eekWOULDN'T\Shucks! NL!te`lbone itvQnd di=2a r/BSstumpLthe rainQA wasPI qdaytimeClith his fac Atump-3Yes* I reckon so[ADid j y5 3"I :.lAknow@Aha! Talk1tryN:o c such a blame fool,c@Aat! @S a-goVado any2. YV rbrself, e middle Qwoods\5Y's a Btump1jus'7rmidnighrback up!s qand jam/Q: 'Barley-corn, b injun-mearts, ^ {q, swalle_&drts,' 1n w way quick, eleven steps,(eyes shuthen turn.<BtimeYAhomeDrout spe+ttbody. B#f$Wcharm's bustesounds likxrood way !!wthe wayB donNo, sir,x1cann't, becuzoGartiest cis towT!BE1war 2him!!'dU!ed*xto workYS. I'v1offs'9"of off of my9sAway,m 7. I Tfrogsv$*`U 5got;"Qmany gb. SomeI!'eFNSnYes, bean'~de%1Havk?,"'sSway?" "Youd6 2pli!be#nN1getb blood"thN# p3" o rEpiec!be,d{q dig a *1t '`?aYrcrossrorqdark of6mooQ burn/ $styBbean#se Uq=.ll keep drawN$nd ,mA feteXFZ v+1"soQhelpsh!toOA the.Rf!sof}Qcomes %--;"gh,"bui$you say 'DownV;awart; 1no @'Bto bgme!' i & Tway Joe Harper doe!he1'enCoonville and mosQ bwheres#say--how do:"urA b!ak1r c+Enm?graveyard '%Ubout wwXromebodywas wicked hen buried3Fit'sFqa deviloP, or maybe%,3 't see 'emcan only+ 7indYAhear9Qtalk;|they're tahat feBawaym#he<<1fteMGqsay, 'D  corpse,i,A1cat,Qye!' ;2ll 91ANY7b." "Stnright.}  "No@Rold MrHopkins mz !soqAn. BQsay sra witch#ay AKNOWQis. S$*$pap. Pap says so his own self. H! axAone *a#!eeUawas a-Sring himC !e T'!ro-Bnd i!ha AdodgQe'd a>e)that very > $heFoff'n a shed wher' s a layiQbrokes1arm"W#!diOknowLord, papGeasyK1loo- *q stiddyDyou. Spec"ifcmumble d$b're saS he Lord's Prayer backards2Sayy y:"trB1cat1To-. .old Hoss Williams t8a" "Buy him Saturday. D` ?qtalk! H5uldbAarmsF d till -?--and THEN2Sun|Sevils Tslosh 1muca,2, I' L!nLaBso. #goT!f'"--$Rafear A B! 'T qlikely.djAmeow1Yes#, Z'geR Last timeOkep' me a-me8!arA1ays( r&rocks at mJb 'DernQcat!'qso I ho Abric{!hiDsdow--bu+BbwTIn't meowe bauntiea#me|Q4'll8!is%. 3!'sOL"NoQbut aS%Ou1-3at'AtakeG .Uqell himHAAll 4. It's aIqy smallr, anywa#anybody3runw6ae1 bem. I'm satisfiiwF!enAtick"Sh!tiu plenty  1 ofrif I walCo2whyn1#wed!cawT&Cs a Q2onef YAyear,b--I'llbyou my  ALessi1Tom1 bi$pauAcare3 un$Git. ~a viewe#Awist-. The temptation+strong. At%he"Is it genuwyn4Tom>'>!shthe vacancy.a!,"YB, "iAtradTom enclosQ8 A@lately been: 4#'sG"th separated, each fee !wealthier thqfore. y'4Tomy'Dittle isolated frame ,trode in briskly=Pof one who AwithQhonesbed. Heahis haQa peg52fluT BselfJ4}31eatI r-clacrit", throned on hig1reat splint-bottom arm-',R1doz)!luW" drowsy hum of study. The51rupcd "Thomas Sawyer!(Ghis name{f7 in full&!me$rouble. "SiO"Come upcRS. Nowbwhy ar2gaiN3cusual?= "to Srefugz"3lie' Pw ; ails of yellow hair hangingoae recogn$PHric sympathy of4%;&bat forTHE ONLY VACANT PLACE girls' sZ QinstaE STOPPED TO TALK WITH HUCKLEBERRY FINNY's pulse\:Qhe st helplessbuzz of 5r ceasedcpupilse) foolhardyaqhad los% u/:9*(d did w"Stqto talk@ Finn." (eno mis}e words,!isE!motounding confessionYever listen!. No mere ferul answer f4is offen%1akeyour jackej  's arm performed until it!ti#>Qstock1wit) _y diminish`A ordllowed: "l!goVs!th! And let)bSt0xr titter-VripplE{qom appe^rto abasiboy, but in .G14was caused rather0!byworshipful aw%his unknown id(&IAead _#urRlay icgood fortuntss Rwn upk(1pinc<c0)'Qirl h,away from himaa toss$&nd. NudgesBwink$qwhisperO4verBroomrTom satW!hiIs "Aong,"CdeskO1eem[book. Byby atten$DNjX#ed murmur rose]AdullxEPresentlboy beganqeal furdaglance robserved it, "4G,2" a8and gave hi-HbackRe spa\ta minut2she caut4duQ, a p5layi"erthrust it away1g!pu>Kback,^2butC&Bimos;$om9Sly reZiqits plaz!heit remaindscrawlts slate, ", Bit--2 more." TdJ uno sign. Now draw some *!hi 1eft;q. For a31ref:2to ~[Sher human curi@Axq manifeby hardly perceptibles !boPkAr, apparunconsciou+Qa sor^ noncommittalnmpt to s6 did not betra/h Aawar&itM 2she!inQhesitB$lyb!Le  Apart 6=*l caricatusra housetwo gable ends}a corkscreC,smoke issuingS!thn[AmneyX" "'s !es0Bfast6elfeAworkqshe forgot $D els`f6, she gazedAAment)n ,It's nice--make a ma artist erectH$an%front yard,qresembl(qderricka 4~1ste\ !ovgek&not hypercritical;Kwas " Const! a beautiful man--now me cominggom drew an hour-glassa full moontraw limb1 arhe sprea1finE$a portentous fanwL #t'#soI wish IPddraw."feasy,"q Tom, "1TlearnB"Oh,i#AWhen At noon. D 2 goh1to dinner&PDstayAwillrGood--tAa whas your] EBecky Thatcp5yours? Oh,$& l1theU they lick me by. I'mIAwhen \2YouW)1me Yes." Now<N  tl1rdsW /1"gg1see !Oh~ain't any\ Yes it i5"No'#wX5I do, indeed I do. 4letVYou'll teNo I won't--9Fand Rouble%"ou3G6A? Evs ! aA liv!6&M! e3ell ANYbodysOh, YOU!Lyou trea#o, I WILL see."+ 1sheher small =  Dnd aQscuffLAsuedq pretento resist in earnrut letts_ slip by degrees till thesdA4vealed: "I LOVE YOUj"OhMb-Fing!1hit hsmart rapreddened >b 2ed,~&theless. J[$K junctureboy felt a slow, fateful gripM3CB earp a steady 1 im+zSwise Aborne acros Gposi0own seat, undwNBpeppX/a7f giggles i!tna~-Cstooqhim dur;q few aw_bomentsfinally moved IsU4out5ba word3"al Tom's ear tingled$EBhearWjubilant. A rquieted 3Tom nQefforX Bstud the turmoilRin hitoo greatqurn he h#hi  Bclas1}1 boef it; theOgeography4 Alake3 o mountains, Srivery r contintill chaos wask  Aspelc got "down," by a succ`"ofG1babA dN3he C2 up=ae footyielded upkpewter medalj worn with osten|for months. CHAPTER VII THE er Tom triedl shis min,# " mXs ideas wandered.9,b a sig:a yawn, he gave 0V. It $anoon r4Fb wouldm} air was 3Aly dc#t a breath stirring. IRleepi$ sleepy day drowsing<Re fivUtwenty studying scholars soothe/soul lik= #is_bees. AwayE1fla sunshine, Cardiff Hills soft green sides th[ a shimmBveilaat, ti| the purple`iWa few birds float Q lazya!ir; no other liv*bwas vi$x1but7 4 co^W Cwerer's hear=!be3A, or 3 toA  fE to do to paq drearyH4. HcQ into%poO0his face l"gl%:gratitude3wasa#, ) not know i!enXJ3ivexrcame oua him a"Va pin"!6newx 3's bosom friend sat nexb, suff!ju9;4nowMadeeply{"grm& 2ent.1menj3an  7was'rtwo boy r sworn s|1eek embattled enemies on"!s.^took a pinBJAapel #as q exerci1er.AsporZwwU<rly. SooG 6}Beach neither g g1ull denefit*!ti<!o Qt JoeAQ4ate 1rew "neFthe D/!it C top)Btom. ","Whe, " Ahe iqByoury9nbq him up)qI'll leB!e; "2get d)et on my[,@re to leXalone I can keepQfrom  S v!, go ahead; star!upb escaped!pae equator{6DawhiPtU:5G݁ghis changbase occurred often. Wg"onZ !wa5r^&t7r absorbNHYblook o? #as 3, t9b 1ogeo|QsoulsC to B1ngsVluck  S b JE !hicd&atxDcour9rQs exc Xs anxiouh|!thH mselves,<0Egain:Auld evictorfvery graspn)"to#1 cbe twi%to begin,3pin'Bdeft+Rd him;1andTk W)gl:n(uno longzQemptaswas toocqreachedFand lent a11pin 2ang a. Said he: "KbI onlyd1wan TU2#NoJ a fair;e' ~3QBlame>I'!go l#mu+L?b, I teK|"!" shall--+#liALook !a, whos\ 1ickICcare$m /ha'n't touch %%,Qbet I . He's my/do what I 51him die!" A tremendous sdown oneshouldits duplic r!s3twoW dustbRto flbjackety[ to enjoy had been tooS]sBhushhad stolencschool wCetiptoe"\nVd (Hcontempl (p4~performance |!heQributs'Zt2%broke up a flew to P1 in ear: "PutHabonnetlcyou'reBhome11you)5\rcorner,'.2 'eAslip|rthe lanAcome.!goQoAYcame way." S6"ne+5one group of -gCith EF. InL:*"et e #la.:qthey ha {Uy sat," a5JBthemQ)3ave the pencil 0.Jriin his, gui 4 3ed a surpr Ot&Gn ar2w#fealking. ToAswim]in blissS}%!DoLlove rats?" r! I hatM do, too--LIVE onesI mean dead,qwing rouSr heaAa stq[1for much, anywMA likIchewing-gum<l25o! 8qome now/?8"go1letAchewV3 2youUqgive itQ3 to8AThat`agreeable& hey cheweBturn'Y?K!irSk,!!stRbench "cet#ntment. "W>)an/circus? T #YeQmy pa7!"mew*Atime/ET" "I)f three or fouryQs--lo:. Churchr shucksbD-C (on/; qbe a cl5%nWScI grow )"! ill be nice1y'rBAlove ll spottAL1so.=v1getAhers of money--' dollar a4 cBsBSay,_+bengageSWjt`(2!b ٪"ieN.+ 2youC!to.E so.CknowqQis it2/Like? WhyG You S Qa boyRawon't \ FZ\ Zcyou kiPw all. Anybody%#do.b"Kiss?d=1for2X Ynow, is to--well[yIoAEverqH2yes+'Y8 ". z remember m F wrobbYe--yeW]YC%I  TShall 8YOUHB--bu5No, t now--to-morr8Oh, no, NOW7!--Vrwhisper aso easLQ #o took silenc Acons"and passedBarm Arher waiS]QT talezC7/outh closuher earn he add\$2Now!--d t-P3ShePj" a^2You vBfaceBs^23 seI;I~you mustn'<[--WILL you]?&,!N  .a." He n\DidlyZ(her breath stirr?Bcurl , "I--loveP-.(r sprang#tand ranfs+YCes, with1aft*uy/x Cher 1JQaprone1ped"nehV pleaSWn]ll done--all a. Don' be afraid Eat--+?+ll. Qhe tu{"aD YhandsA+2she us  qs drop;Qface,rglowingy"truggle,,O submitt-!omqred lip 3rNow it'ACdoneEPBt 2yout0mk+@!toXy,2 meand forever. Wi 3'll)u!LLkmarry +2--aX - 3ith)CEly. :. u's PART{)I('U*we^w02me, Rthere<Rchoos Dnd It parties, bE  1wayeO4're DIt'sW'3. IRheard -|%'g>mSAmy Lawrence--b2bigF1tol{ ~DlundUe stopped,1Sused. BTom!,/irst you'v3 to"W chil2cry94Oh,trk I"arshy   1you1Tom3 kndd i  BneckJ j%sg0%im!Qrhe wall1wen\bcrying05  ing word GQas req$: (!pr4as he strodWQbutsideY,2lesquneasy,: Sglanc2oorMQy nowthen, hoping she.RrepenSato fin:4shee-e1 to81 barnd feari.;'roS!ea hard2himke new advancesM ,Nqhe nervRmself{Q and _]"zstill stan797, sobbing.!'sDt smote himD ?2 ,ing exacoQproce-ge said aly: "* ], I--\ A." f4ply 4bs.D1"--/tingly. Y !mea?" MoDTom got ou( chiefest jewel, a brass knobToan andiron2{ $itd h,2thaq,{/3w * y Sc3uckY the flooruTom marH.:C hilR 1far[!rez1 noday. Presently 3buspect rRT1was7in sight. < 2play-yard7SthereU1she,v Cc, Tom!/alisten}trL7had no companions l oneliness. So s t`Ro cryfp1upb herself;qby thisZ L1gata3gai[ashe hatAhide+Qgrief?6cbroken aK of a long, $Q, achhfternoon6! nk#mo Astra/VSto exbsorrow/ q'I TOM dodged hp t through lanes96H@&ou!r51ing3larinto a moody jog. He va,"branch"9"reDH  6prevailing juvenile superstiti!0 c water baffled pursuit. HalfC1! l$disappea<+Bbehi Douglas mansion jbe summ"'Z ,1wasly distinguishablCoff Ccvalleyۖa a deny-od, picks pathless wa>r2ent;4.!onssy spot,spreading oakrnot even a zephyr(*_anoonda(at had 260 Tsongscbirds;:1 lasa trancCwas Vby no sound the occasional far-off hammeof a woodpeckiBm 1 re .1rva|wense of|8*sprofoun=Rboy'su)w!1eep melancholy;o A3s w<happy accorqhis sur1ingA sat< )oAlbowhis kneeO2n i.S, med69 * rhat lifbut a tr=1, at best +3orlRQbeen 2!eda2g--Q very dog#" by some day--maybe wh@8too late. Ah %die TEMPORARILY! Buselastic]o?ath can4e8Aresssqto one {rained shap*46Tom_&drift insensiblyJXZconcern"is7|.T cack, nowmed mysteriously? aaway--A'so3 ?countries beyoBseasQcame S! How 2she{ then! The idea of beQ recu,mto fill himdisgust. For frivolyR jokewStight"anAsy intrude`/1 upbspiritwas exalt3vague august AEthe romantic. Nota soldi<,"yell war-woraillust. No--bette4ld#joIndians,unt buffalo$$gowawarpatr4x2S rang-the trackgreat plaite Far W 0QfuturM+A q, brist2with feathers, hidej$ith pain,bprance. ,(QrowsyN $er|a bloodcurdssar-whoose eyeballaG unappeasu envy. But noOb gaudin than thi/dpirateas it! NOWK2lay~ #"im"glaimaginsplendor. HowMHQould c people shudder1glo(AS go p{Sthe d2seaf"hiu,1, l'qlack-hu 2racZ02e SsFc StormHIisly flag flyA fore! And at the zenith ofQfame,suddenlyDIold village8Cstalcb, broww-beaten, black velvet d ArunkCjack-bootcrimson sash,AbeltJ"horse-pistol9e-rusted cutlass atCAsideM2 sl4("atTwaving plumeIcunfurledthe skull Abone*  Bhear[2sweobecstas>$G #s,3TomJ, P--the Black Avengerpanish Main!"  j,d Acare's determined)2runfrom hom Renter' /\.2theDnext[ Afore rust now+1 to&Wreadybcollecresources %)Aent rotten log nv%'an2digu 5 onFihis Barlow knif1oonrck wood ed hollow"puusand uttwis incan~,i8 dively:bhasn'tDhereovW!st 2re!^rbcraped`"ir Q expo pine sh9:i8and dis(chapely,2 trcH-[5hos'and sides wer/ds'iHra marbl 's astonishmenboundless! He scratc Ss hea a perplexed air7RWell,1bea*y> +Btoss5pettishlyStood cogitatUsuth wasfa Mqhad fai91and0-Brade0AlookR$on as infallibl byou bu OLcertain necessarylsBleft  fortnigh'BCopenCplac"8theP" h ajust uh3yout%a1s2had1los.  t0 H,9 |&Qno ma how widely+}Qk"w,~ bctuallunquestionably *-DtrucF2faiQ shak"-Q its Bs. H"Cmany C Rasuccee3but{aof itsBing :Q occu2himtit several timesC, himself,n;1e h*-scs2warvpuzzledy!an\decided $Qwitchainterf Bharmhought he tsatisfy at point; soe!ar<1he Csand aqfunnel-Qd depo!itJ9=$ F2 toyG and called-- "Doodle-bug, d $'#mev0Wgknow! 5 5*! sn1egaBwork"3bug e a secon2darted um)fright. "He dtell! So it WAS aAdonef !I ;%!knv5'"HeDknew2 iQof tr to contens#chahe gav^"Ś$ag%iT`he might asAhave>  w1 ,Oatheref@Btwicl.last repe2wasRssful$0Qs layU1foo Qeach a. Jus^%ebYntoy tin trumpet 3faintly dow%green aisle~QorestWoff his jacke|trousers,$ a suspe9belt, rakN Tbrush 4thelSlog, 8 n rude bow1arr| lath sword4in A7$Bseizse thingSbound, barelegg 1 fls "AhirtL7halfelm, blew an answ@9atiptoelook warily outk1way2thasaid cautp--to an }!ryH!an Hold, my merry men! K;BI bl06Nowf>q, as aiAcladbelaborarmed as Tom. Tom]Hold! Who s7ASher BFore_qhout my+q?" "GuGuisborneVAan's).^1art-L--" "Dar  hold such language=Tom, prompting--fo8y talked "se book," qmemory.l ~/ dsI*! I am Robin Hoodkthy caitiff carcas:Ahall%." "ThenRindee% famous outlaw? Rvgladly will I dispute#2the=Fpass3wood. Have aeyGWtheirqs, dump4eir.Brapsf e ground, struck a fencttitude,!to61kBv) reful combat, "two up andfdown."p!E Tom aNow, i a've goQ hang=Ait lM!61y "a," panhK !er k. By and bhouted: "Fall!K8! W`+ sha'n't"Nrself? Y(AAwors!it/4Whyh M@!'tv;A#ay it is inVbook says, ' Qone boa[stroke he slew poor $.'!toNr ,ame hit oQ." T#>PFuthoriti 1Joebed, received!whE@nd fell.&"4U Joe,^up, "you8o(N2 ki1*Ffair{f!docE_/ell, it's blameC's aQBsay, you can be Friar Tuck or MucAmillD[ss%R lam M h a quarter-staff; or I'll bSheriff of NottinghamJe w9h?Bill 0AThis a@#soadventures were cr4FATheni!beB6 L!wa- !by treacherous nun to ble s strength away 1ughneglected w- 4And/}! r 1entAtribAweepOC4s, R|Qhim sbforth,V m"ow(his feeble hands", e" Q fallTere buryuu 1eenqtree." She shT$ b&would have diedQhe li>+Aa ne0and sprang upMAaily a corpse.->dA, hi!ira!Gutre Ooff grieao <$noz4u3mor Bwond what modern civiliz= claim to h Qensatiloss. They;F-rather be year in than Presiden the United States 0 CHAPTER IX AT half-past nine!ToB Sid\1senm"be[usualir prayer=(onqK Aawak waited, in rest"imc<{it seem0q be nearly dayldhAlock;Bke taqdespair&and fidge#asrves demQ, buttbas afr+aSid. S12lay,%!st"upJark. EverLDsdismall<2C by,'YSness,a, scarceo[fnoisesemphasizeSC ticking aHh Ato b!itS-A1. O+"&ame! cT(!cstairs creakently. Ev1ly 6 !ts abroad. A m#Rd, mu(snore issued Aunt Polly's chamberA now4tiresome chirqf a cri!thA human ingenuity locate,JQ. NexV ghastly?SdeathwatcDwall bed's head made E--it#abody'sMPnumberedUBhowl{far-off dog roseg 3wasAa fa<K a$r O./an agony. At ih| 1ied+had ceas@d eternity begun;00 to doze$Aspit2e)chimed elevenl0A;#%8me, mingl Ahis !formed dreams, a most ' caterwaulwA raix&of a neighbo)awindow81urbSqm. A cra"Scat! devil!" aQ cras<an empty bo;z}ais aunt'sCSshed T#"dea single minute laterlGand jr$al,Sroof 3"ell" on all fours. He "meow'd" withn once orpn jumped  g3]*QL. Huckleberry Finn washis dead cat #ysAW1off\A,#edO#a gloom%thh," (all grass4graveyard. It &old-fashioned#ern kind13on a hill,5Da miK'Eaillage<1hadazy board fencet $itcAlean 1warY1outek$th!buZod upright nos1. G n!ed!ew rank M ? cemetery. A2old*spsunken in,Mnot a tombston!; {-worm-eaten qs stagg#Rover $ aves, leanaor suppor 1finnone. "Sacred) of" So-and-Soabeen pdm#="ittLR have7Sread,5am, now*1n i3 r7lFA wind mo $reSTom ft {\, complai(#atw(x\<R6nly ir breath6[ -Solemn(Q silew&ppX $irvyo! t arp new hea1yk1eek6ansconcQemsel2ithq protec0ree great elms$grew in a bunch?-WDfeet " "y U  42for H "a 1imeS hoot abant ow.]"btroubl !ne om's refld1ive%.aforce Dtalk) Qsaid $: "Hucky, do&ɘ6 ead peopleGZ3 usDqhere?" Zed: "I wisht I@eEQ's aw3Zs, AIN'T36Q"I beAis."ea considerable pau*"il\Scanva "#iss inward! n_ %ASay,3y-- reckon Hoss WilliamssI1#O'Q he does. Least8rsperrit"7, +a+2 I' #u MisterxI`  Aany l DQs him#A "n'Foo partic'lar1(tXalk 'boutase-yer  Ra damnd convers3die!. Qw Ahis comrade's armE1sai:Sh!" "What is it~$?"i nc%Atogeq!be#2ts.K C'tis again! z1you+{0Q! Now"OALordTHcoming! TQ, surmat'll we do/I dono. Thiny'll see us!'OhbA can!in^ Qdark,M as cats. ihadn't comecOh, doay!. Aliev<1bus. We(a doingl If we keep perfectlyR, may1y waB us N$I'll try toRbut, Y1I'mbBof a shiverListen!"be1!ir s e tof voices float% 4far`(A "Look! Se;Fre!"M  w-fire. Cis it." Somv/1figaapproaK'!Rloom,M tin lanternaTfrecka  innumerable spanglek  K#a d!t' sya. ThrexA'em!yQwe'reqrs! CanBprayNB:BThey! gto hurt us. 'Now I5#meo sleep, I--'"8 AHuckHUMANS! On! iWyway.'s old Muff Potter's }aNo--'tqu so, is AjDYyou stir nor budgBCharpfE to q. DrunkBausual,Cly--qold ripAAll O !, 4stiI5tstuck. Can'"1Herq#Dy coN.[8hot. Col2B Hot. Red hot!'re p'inted?r ,q"!o'qs; it's Injun Jo(2ThaFD--that mur!' breed! I'd druthe Zdevils a der'>!. ky be up t4The.| Dnow,! t 1men $re!e 1     ' hiding- Q. "H?9Dt is Qhird ;\*:wner of it hel TTreveaV1fac young Docts_`1carryingYcbarrowTA rop a coupldshovels onCcast#lo=!c2opeUF7" d1putd|_R56karH2ack1st fX2elm  Q closIhave tou1himurry, men!" !idTa low"#on91com at any moaRJy growled a responsgan digg'Fo(*2 no# b<"gr s)Qspadetbchargiir freighw Amouldl7 was very monotonous. FinaX Q upongScoffia dull wood*<2entO4'Ror twyRhoist'dg>Sy pritd!$irB, goB!dyF!Qit ru - `Tdriftg?Rcloud(0allid faN4he P!as3reaaorpse "it, coverea blanke>buCope.l(out a large spring-knifkcn;#da3z Tthen " Nm$cu Bng's, Sawboned you'll*"ou$ Afive\$ s?y alk!" sai.] BdoesSmean?3te. "You require3r p?Sdvanc(I've pai#'4B don(B tha ,; r Q, who Dnow @*q. "FiveBs agqdrove my q your fX's kitchen, when Ito ask f@(c to eaK3youWa warn'!!re2any goodWswore I'd get,AzQyou iuaa hundcgears, RAme j1 for a vagrant. Dta thinkiqforget?I^Sbloodq Ain m1 no.2nowvGOT yougot to SETTLE"r!" He EQreate<,e !isy Bace,n!2is  Tq8E1retacuffian dropped his !exDCHered #hi^(&rd~b next ! h-t grapplF "wo)Rstrug'and main, trampl% gFtear@3'rheels. !JoaAfeeta81 ey2%am!pa1nQ, snaQ3 up'/V"cr"Q, catYEAtoopCand  w'Tants,Q an oCunitwat onceQ,d free,62Aeavy5 of'n fҲt(Rearth"it8? c YiL A sawXCchanSj2theb1hilthe young man's breas+Qreele4BGqpartly , floodi  l* `ablotteXAreadcpectacf1 Bened Aspee!awHdark%> remergedO , '8two formsPRtempl }aamurmurulately, gw*gasp or two%2wasKm- rTHAT sc; :Q--damF0Rrobbe8body. After h9the fatal2in r's open R hand M dismantled } --four--fivss passeJ7.mB za1. H1nd dw#; C Q, gla!atand let it falla>g)sat up, push2bodA himLJ gaz]aK&confusedlymet Joe's1rd,ie, Joe?u .a:ay busi%#2Joeout moving.d]d+[%I!!it{] 3! TRT 3alkdewash."YAtremDI ew white.1ghtagot so"!I'BM!r!o-@it's in m* yet--worse'nw= rted here.vmuddle; c!$re=#an$gQ, harqTell me}--HONEST`Aold ar--didB it?zJ(qto--'poAsoulhonor, I nevt1ant5Joezc#Oh$+Qhim s, ad prom! -1youC?ay1inga he fe6G ) Bflat !up:3comX1reeX[ding li!.Ajammz%.5 'asE you7S clip ere you've lai'!as a wedge til nowbd{Uwawas a- I may die1if B1all on accou(bwhiskevV!axcitem"I .uC$ weepon Clife: fUO_;uAy'llsay that.( V8ray you Atelle--that's a  4. I_2lik</U !upE { etoo. D remember? You WON'Tc]a, WILL  A/ApoorS'Eture o SkneesUrstolid G#alaspedQappeaa,.)4'veA #fanbsquarej 8me,N# I<#go$n :MsXs a man can sayIy0an angel.bQ*1you^!he0est day I live.> ?Ccry.d 40$#isc 1anyYsQblubb. You be off yonder wa!go+T. Mov 3and5!leny tracksX"onM(quickly increaseQa run  &)He8 If he's as much stunne Q lickfL2rum2 halook of bel#he1eBtillzgone so far he'll be +}-e\!it:Ruch a>% b= --chicken-hear1TwoO tqs laterD0Rd manv ArpseA lid 2the ?+urno insp8!b moon' ness was completet 9too-X THE two Aflewqnd on, towarkaspeechwith horror*y Aback;%?aulders|!to, apprehens95'$yA$m &be followed. EVastump #up'Air p9&.'and an enemyw[+athem c+:bbreath"as"by"Aoutlacottag41yy.=21ark1*aroused +H-dogRagive wq:qir feet Af weqonly ge=ld tannery!wegk down!" whisp&1Tom|<Qtween5dths. "4AstanRmuch ]&ucC)'s hard pantAwere-1repboys fixed sSeyes z 1goaDBhope"4benir work to win it. ained steadily]1st,sIy burst open doo cgratef BexhaIiBshel, shadows beyond. Beir pulses s4Tomac2 2'lli!BIf D dies, I61 hav>!it?D m !?" y, I KNOW 1Tom#om&2t a$JEn he #1Whosell? WePBat aj  ing about? S'pos%!th1appEand q DIDN'T!? he'd kill usLvoO:  sure as *g <@  ~o myself, HuW8q"If anyAtell)t 3, i)Cfool. He's generTdrunky%U !--2 E s C "itrN!ca#teJ:#sQreaso 8QBecau>&"'d1geSwhack"F. D'3 he*5seeT?$ \7!" "By hoke:$'s-!" "And besides, look-a-here--maybeqfor HIM<No, 'taint likely ^GQliquo5ghim; I#th  |h Rhas. 9pap's full Atake/belt him&3hea< a church)2youn't phase 1say his own selfZ)i3sam !C, of(Fqf a manjJGoberZ W&)dono." .*$ve*p)2you"an!1mumw%to.*  #atadevil 5Rn't myQy morWdrownding us&a Acats!weto squea(iF+"ha!. X>u, less swear to one/Z"weveo do--0qkeep mu"greed. I Xkb. WoulGAholds_Un we--" "Oh no @! dA thi . for little rubbishy commokngs--speciwith gals, cuz THEY!c anywa ablab i: huff--but!or%^e writing Ra big BClood2's m0 applauduis ideao1BdeepAdark  t;1our3 circumstances1surRings, ijbe pick'ya cleaniOlvAmoon', took ar fragmes"red keel"7 f 1pocDkK1 onV#wo0fully scra!'these lines, emphasizing each slow down-stroke by clam~7his tongue AeethRQ lettpApres QCe upW&s. [See next page.] "Huck Finn and Tom SawyersCs!ndI+Awish may Dropd!ea6 QTheirT"if33eve1ellX!Ro  p5filKadmiration of~acility inA, an sublimityQlangu3HC'4pinqs lapelH6was(Qprick,QfleshWN Hold on!!dob. A pi1assA8have verdigre#n Qp'iso$/ swaller somic --you,a." SoSunwou8bthread"%his needl!Aboy  1e b.QthumbcsqueezBa drfA. In,{Dmany2!s,amanage2sig!Qiniti9u~8Hthe ~ finger fo/e3ashowed  1ph"! HQan F, 1ath%2bur9!e 1le q5 to:,dismal ceremoniaincantfqfettersJ$ b#ir8consider(Qbe loF"keArwn away4!ig[AreptURlthil(!ugX$Dreak[Wother#A ruiEAuild2nowLQQ*iVTom,"6, "#uYAEVERf ing --ALWAYS?" "O r it doe]cdon't y difference WHATv xY got J BWe'd"--Q6YOUe Ywts rcontinuHtime a dog set up a long, lugubrious<outside--within tenc*md boys q",qan agon+!.ich of us^4 he;%!ga4 dono--peep througw crack. Quick 1YOU#-- 1 DO#Hu2aPlease1 72h, lordy0thankful0I2his)4 Bull Harb`" * [* If Mr. y+d a slave named Bullk spoken of him as "Dl!,"aa son 2dog!atZn"]   1--I" ( most scadI'd a betmM a STRAY dog he dog howledv~W'3Ats s:"nc&.2my!%!no'I IA "DOM! Q, quabAwith? !Z%eytrDHis z"waly audible"Ohr, IT S A1DOG1, qK Who7Amust3 us both--Uright"5.+vgoners.EU1misM   V< I'LL go to. I been so wM m2Dad_1Thites of p1$oo!do BveryD a's told Ndpaxgood, like SidNr tried !noaever I 2off time, I lay I'lWALLER if"s!7Tom0"nx4( . "YOU bad!"7Q"Cons!it ^ ld pie, 'longside o' BI amTLORDY 9 only had half your chanceom chokeds6andh: "LookyA! He?9BACK to us(ucky looked!joh "hil9he has, by jingoes! DFRbefor.bhe didpIS#l,e"!this bully, y. NOW whowing stopped. Tom !up ears. "Sh! k BthatI#0!ed"Qounds--like hogs grunting. No--it'!!snC mqThat ISkWAbout"it8I bleeve3Uat 't| #. Bso, a. Pap rRto sl{Aere, Stimesv t$"gs laws bless<1he Rlifts1s'HE snores. Buhever comOto5own{hXEdventure rfZsouls`/Qdas't`o if I leadR 1to,2, s~ts quailep_7the temp up strong:7 3oys#ryJAnder{2ing'7 @#to@Sheels Se !y 4btiptoe  , 4oneJ CthervJ~4hadlqwithin 'qsteps o|!er'pBstic  it brokera sharp snap.man moan]erithedp his face came inK . It was"ha+rd still\|C too)Aved, )Dfear|(? A nowlypid out, n weather-boar& $-%at2 di# sQa paraword. J qrose on5'B air!w1tur n+!th-2ang  Ua fewQ Xt.Awas $cFACING7nose poi* heavenward! geeminy,VHIM!".A botds a!--say a stray dog3ai Johnny Miller's house,A mid2,!#as.eks ago;6 ppoorwill=1 in4litbanisterZ2ung|aame ev?0U L#B}!yej W"ndyE#se 2. D&cGracieT falls2Afirebcrself terr next Saturd;#Ye@sBDEADwhat's moche's gbetter, too:you waitbsee. Ss# ,Cure  z,)a niggers sN:2all *h<7c,dWBSihis bedroom Kh"al Apent3$ss]$excessive cautionCfelliP congratuP.2himMRCknew escapaden1was _Raware3the gently-Qas awake$Y bv5. eawoke,=1andCrak$q ! ig# lAsens&the atmosp+HA%##Wh% ae not called--persecuted till As upRusualK4  KLtW.%Nairs, feelowadrowsyr family R at tԌ!bu finishedQkfastAI"no of rebuk)Nwere averted eyes;:!anA'ofCHthat struck a chillhe culprit' s He sat "nd &reem gay2it -Nwork; it E$no smile, no; he lapsed "leyheart sin'$tdepths.HNN"idG bbened ir3hop>g2Gflogged;Tianot so aunt wept overxand ask*m-E !gobreak her[!o;rfinally3him o{"ru&3andRher gray hair '1 so=~ '?2 usZ hT: try any more.Z!waCan a thous"ppgaA was sorer nQ:"anL1odycried, he pleaded for forgiveTpromised to reforh 2andj {.[jdismissal, !!he_1wonan imperfec51cestablut a feeblfidence. He lefk  Ro misC vAl ren4ful(2Sids 2 laB prompt retre back gat unnecessar_!mo^o school O%3sad41ook+}hqJoe HarHDwondered i-!ha!ic%nir mutuala<Abody2Dtalk r intentlthe grisly "them. "Poor fellow!" 9T+Cught a)Son toG@=grs!" "T2'll) iy catch him!" This ift of remark"milB, "IzQa jud';=frNow Tom shivxAfromA to heel; >D stooG3 of+3JoeZ$isB12beg}s6Bbe, andas shoute!'s  Aim! 7com!!"U!o? Who?"ctwentyT8. }1QHallo0s1!--=3out!tuM{&Am gey!" PeoplCrees over\'Aheadrrn't tryYB--he4doubtful and perplexed. "Infernal impu "!"aAa by~er; "wanosand take a quiet$aFwork12--dQexpec 263any=part, now u- b, oste%Ausly]3ingC" btAarm.;pa's facw haggar &the fear tha .W bstood 1urdman, he shook ara palsy4bface iNBhand@ QburstJa tears P!do#friends,&sobbed; "'pon my pThonor> z0iho's accTyou?"F" aYicarry home.xCliftme1and3ed ` thetic hopelessnes5sw!:"*Q, youaaised m/"'dD."Is ?V i4himM#. msiy anot ca=1easmhe groundn-*BSome!1tol"'tEM8Ond get--"-1hud Qn wavr4f2les` ra vanquSgestus?"Tell 'em, Joewv'em--itl0n,1tooMbEstar`#he  2-he8 liar reel offrene sta?_# FaFlear skydeliver God's Eningmp]f1seeAroke3tdelayedr JJ3illBaliv'!iraimpulsx  BoathE!avubetrayed prisonerafe fad d 5wayBinlySmiscreant1solrto Sata.#itIbe fatalReddle]~ Rroper-1sucQower - a"$hyyou leave?"DwoC|d Qfor?"ab BsaidRn't help it--$,"amoanedx:2 ru+ ?1see} 3but he fell to5. d repea)BjustZSlmly,minutes after inquest,=Foath 1seeCwerewithheld1q 1rme20qbbeliefH1Joej h Aevilw become,Bm most balefully interes1hadDA , yB not+ M  bey inwu(bresolv w= nights,d#1L should offer,Ih%ofPa glimpshis dread  3hel2rai !of[NRput ia wagone rremovalQwhisp3 Q 2ingv  l0!blqlittle!; Dboys&tXappy Tturn n$wBtheyQdisap "ed1morEn onarked: !three feet of . 7it O AfearL1ecrx+ad gnawonscienc /iqs sleepvAas ms a weekG1at Afast_~3Tom/' !alCyourx1so t3youp8!e B hal9"ti^rTom blaband dr"c H's a bad sign, Aunt Polly,*dly. "WzRgot oB min_d?" "NQ % '[Aof."k23oy'shook soaQhe spcoffee. "An 2 doTustuff,"Ur. "Last said, 'It's 2" t it is!' Y7Aoverover. And y!, 'Don't tor6me so--I'll-"!'S5CWHATQis it$V?" E+  1Tom( re is no\2ing*+ Qhappe\1BluckF2cern passedm7S's fas3 torwithout kno.!it" Aho! W3ful1. Im!ity4 my24Q3its7  S%Lqfound a-Sightypr itself . Becky Thatcherd"st #tolMT had EQhis pia few day<'"whistle her dow+!,"1fai)&HeTfind `"ha her father's Lqand feeI%< was ill.rif she p2 diP)9a3`qno longbdok an `@tar, norq piracy charm of lifCgoneMadreari2lef}hoop away,#Bat; $!wa 3joym3 His aunt "ed& 'rll mannqremedieS2him06wasRose prwho are infatuqwith pamedicinea-fanglWthods of produc2 or mend:an inveterate experimA3 in-s. When sRfresh'cis lin Sout s!in'k{2it;Kn herselfp?iling, bu/!el"at Whandy subscribert-!ll#!"H" periodicalNphrenological frauds olemn ignorance %B inf#1was^th)strils. A "rot" they cont about ventilR !ow$odRet upj/Ro eat$Cdrinl42howQexercI 2 22frag?!onTDelf *.1sor#clto wear,&all gospeӲs=aver obser!ha! h-journalscurrent month customarily upseXhad recommenO <Rbefor21s simple aonest e 1was+5 soan easy vict!gaQ$d <]quackydthus arm:'bdeath, .9 pale horse, metaphorici 1spe> "hell foll"Qsuspe `aot an &1 of[$$1balQGilea6 disguise&he) neighbors.n!wa6 creatmee3new/,low cond|)f$e!haRaat dayN*,bhim upehi}!wn mBqa delug Bcoldn she scrubb3a towel liki7Aso b?t him tona*Bhim Aa wemqblankets 1Aweatas soulw1 "the yellow stainsiV a his pores"--as7!Ye rwithstabAhis,boy grew morh  melancholyp!ej|added hot baths, sitz hFClung,A boyX#"inbdismalShearsRassisslim oatmeal dizbr-plastersb calcuhis capacitn)Hould a jug'sfSevery day}3cure-all-#om come indifferQ32ionn!!isfW_0cphase r1the1Tlady'L,constern;ice must b9!upny cost. Now?of Pain-killthe first a She otd a lot)Ua tasteD 3as with gratitud'Rimply7in a liqui0 J  {2and&P3els2!piZO iA gav a teaspoon# 6Xeepest anxietB,qe resul &r mstantly at rest,Zat peace again; for""?broken up` #bo+1hav!#wn a wilder,i , built arunder him.3feli.to wake up;-Klife might be romantic enough, iQblighy, , c1getyD tooiAsent "oo  %ng it. So heat over%!ouC!nsd ,X1finchit poO fo+n# 4Qfor in4ofthe became a nuisanch Rby teeZT help'2Aquit)q >Ieqen Sid,had no misgivto alloy!dePEsinc&3TomMF bottle clandp#el (" !rebdiminish" !itW Cccura t5was t!ltIta crack !siG-room floorit. One day athe ac 3dos  Sy"#'su$ c along, pur#eA(%heHR avar.lqbegginga({said: "Don't askit unlessAwant&Peter." But s1ifi# W2. "You better make suh$?ure. "Now you'v( give it to you, because E $ #m"mebiEQyou d,mustn't bl8Ebut your W agreeableEH mouth open)Voured.Sprang a couple of y+Aair,LSthen %ed a war-whoopsL!f & the room, b st furniture,/ flower-pom*  }Z havoc. NextiRose o}"hi6,#pr ja frenzy of enjoyment,<2his,F !jL proclaimingunappeasrhappines % Atear ?ahouse a spreaQchaos>destruct! Gath.U!edDime r&!im/w$double summersets, 2naly hurrah,AsailG1ughVt, carryK1res^Gthe ZGm. T  Bpetr astonish2 peer glasses;Alay ;qor expiaKRlaugh?#"on earth ails@Tcat?"N'u, aunt,"O. "Why,+i!diaact sogcDeed IWknow,e; catsq6kthey're having c A" "$ado, dof'?"Btonemade TombD1es'at is, I belie<(2y dAaYou DO1-  Qdown,n 3ingwAinte>emphasized by{ R. Too?@!viAer "f.R handthe telltale 1visC ed-valanceUi ald it tom winc 9yesBAraism Qe usuandle--5"ar.csoundlj %DimblS, sir (1tre"at)dumb beast so #pi Thim--Zd!nyj." "H!--you numskuhQat goAdH" iqHeaps. BRbif he'?Qone sqa burntF4out2! S2 ro 0QowelsX!of3'w"n,PBthanra human!" Z!fe: sudden pang6o1Thi1 pu yhl |6 ruelty to a cat MIGHT beboy, too  soften; 2sor=r0',I Rshe p<'3 onDheadd gently)'qmeaning -!stQ. And , it DID d !-&om)" i Bfacejust a percepttwinkle peepinggravity. "/!haf Q%ton-B? Ye*BforcX," adR: he 1lea!if!cr`wqno choi("By` `h2farFMeadow Lan,t !ll to "take up" t, Qd fai#up"eaG;, !Fink %,Bhear old familia!nd rmore--i Bhard0v$ou<ld worldc]submit--b A for1theQ sobs.a thick@O1 JW  2poi7m_'s sworn T , Joe Harper --hard-eyCwithD5tlyand dismal purp=Srt. P 9b were "two(but a singl&" Tom, wi 9#ye1fleeve,qblubberBsome about a 6p to escape from hard usag1lacsympathy at= by roamBbroaOFto return"3by  Athatm=1not"m.it transpir was a reques !chK2hadKRbeen  nIkN3#a)1hun1 up_. His mo ad whippfor drin ScreamhX  d knew ;*1plaUtCwishto go; if.<!waXpl but succumb2opebe happy0a regretDing ;"erW1boyxA $un) ddie. As=wEwalk gClong7 +compact to u 8 byePQthersqseparate till death rgm2 ikyj3lay.:tplans. "Qfor b2;a hermitC1livb qn crustJa remote cav1 dy O a#rand wannRgriefQ% m31to 1he U S&a4~_conspicuous advantages1 a "so ansente!pi Three miles below St.easburg,|!wthe Mississippi Riv "a OaWQ wide"a !qnarrow,%ed islanS \6$2bare  o"d well as a rendezvous%1 in2!edrlay farQtowarL her shore, abrvba densk{Twholly un o1estJackson's IC chosen. Whon!*aubject%Qiracis a matted2 ]Ay hu(up}R Finn8 JmRqly, for rcareersho hhe was$jy,75tlykmtu#!ne;I$ot]river-bank two,vn1favorite hour--4\csmall log rafIthey meanLLd. EachJr,2ookl6)such provisiA4d steal amost dnd myste!way--as bec +butlaws_:Rbefordaftern2donCy."agsweet glory of b~h12ttythe towne"hear ." All whohis vague hint!!cas"be mumTqit." AD Tom@a boiled ha9c a fewKs 1%ingrowth onQbluffMthe meeting-8VstarlBveryAMT lay Qoceanl3Tom6ed Qbut n3 m Q>the quietenN!ve%w, distinc$ 6stlAansw 1bd twic; these sig, K&e ;bThen af5ed voice!We!reTom SawyK^he Black Avenger Spanish Main. Name your namesuck FinnERed-Handed VTerro]2easw BBfurnq rtitles,56hisIliteraturA'TisEC. Gicountersignwo hoarse whispers !e Hawful word simultaneJ"torrooding<: "BLOOD!" 2Tom6 sQUC4Cdown@qit, teaboth skin1F/!es~ome extenXB'BfforF {., comfortable path (Bit l8the!of pCicul8!da/rso valu[&  b d4bac3had Tworn 2outy'"it $.gstolen a sg* ntity of half-c#leaf tobaccol- corn-cob 3pip/.3An3e s smoked or "chewed"A saik !do2tar"z)J ! w1hought; m]ahardly'@Z"reaat dayqy saw aWa smoulJgG1a hWd$3aboy qwent stc'@ 5andjErhemselvsa chunk Rn impR'adventurLbit, sa r"Hist!"[A nowT2theV suddenly halt!fion lip; movM on imaginary dagger-hilt4!gi1orders inX"ifj/Dfoe"cc, to "%W)'K dilt," " "dead men tell no taleWhey knew2 en< raftsmen 3allQ lC in stores or haae2{]D exc^ aconduc` /1 un"AicalAOPved off, ,iEmx CHuckJ1oar!Jo=D qorward.>stood amidships,T-browwith folded arm/7hisTstern_: "LuffDbI"wind!" "Aye-aye, siraSteadyNAady-f it is/!Le!t go off 1P 0Aboys 2dilcly droGd mid-stream vno doubtET"gonly for "style,O! t!to E any&particular&a?"l'?1 '?" "Courses, tops'lflying-jib?"Se  r'yals up! La[Saloft,$! a dozen of ye --foretopmaststuns'l! Lively, now1hak\/maintogala@RSheet braces! NOW my heartiesWHellum-a-leeKTrt! SX2wJ4comes! Port, 1NOW, men! With a will!  T\ drew beyoc7mid#&   ed her head7?then lay oi)Hnot high, s  B notathan aEor t=C82. Ha Awas j!duthe next;-quarter ran hour2t1wasGing BdistXwn. Taglimmenlights showed rit lay,1 "sl#,j vast sweep ofAa-gemmed water,the tremendous ev:4!ha happening. 7 7" his last"-Q Ascen!hirmer joy06ter8wishing "she"2rsee himuQabroathe wild sea,~ng periladeath Qdauntj%, his doom| a grim so/rlips. I,!bu mall strain'0R,!to&vet Island 6aeyeshoN'Cthe ["edZ!a vnqsatisfi\a' p last, to q3so I y came near let#e \Q drif)m\ArangQthe i< oediscov "j !inF%qmade sh\o avert it. About'clock ip1morU'Agrout+1bar8 B thewaded backzforth until Ahad 2"d ffreight. ParRlittl|'ngings consist an old sail"isgaspreadIr a nook ce bush$1a tbo shel6eir"s u TsleepVqopen aiDgoodq., .!y6/sk J log twentyirty stepk  sombre depth 4estDen cme bacon1fryb!anI1suprgAand fY"upcorn "pone" stockw4had;seemed glorious sporuAfeas%at wild, freee virginunexplor%5 un CR, far61 2aunm Ba returcivilizations a climbO&!ir3 up6Bfacethrew its ruddy glare the pillared tree-trunk$irbtemple?X aDfoli>afestoovines. W'!he crisp slice of ""on,qallowan* pone devou Bstre'3outt grass,Q;contentmenyBhave3" a coolecZ Qthey 9dena romantic feaZ 2 roh camp-fi2AIN'T it gay?" !JoIt's NUTS!Tom. "WhathHA Aay ikasee us Say? WellB y'd just die to b&be--hey y I reckon so, 2; "͉s, I'm suited. M/u't want"better'n$Aever@#Cgen'ally--and > Rcan'tXband pikAa fe<Z qullyragDso."HAthe dfor meXY6!toCup, y(!ch{"sh 'at blame foolish5uYou see 3do ANYTHING, Joe, ) aa[hermit HE haRbe pr0dxm# t0naany fuyyGUll by&tt!ayPAOh y What's \ "but I hadn't thought muchFqit, youT. I'd-deal rather b mq I've tN(!itC3, "'"go}#onsQ!adQlike ^^Ato is`Ce's M'respectedr2 a Q's goWhhardest 6Ican finput sackYa 3hea)s<=$1raiAd--"5at does he put V for?" inquireZ0Fdono s've GOTV.6rmi5!do2:1do 3/5wasDern'd if Iww'v?an't do%`#WhY:'d HAVE toP'N0!itY6I3n'tv"it2run.S" "R "! you WOULDnld slouc<0be a disgrace U no respon*ecemploy)chad fiqgouging Qa cobQ now A"tt:e', loaded it) was pressing Qal toRchargAblow! cloud of fragrant smokj&iMfull bloomp-1uxu   ) envied himW majestic vicM secretly &vqacquire?hortly. 0AHuck:Q1pirT?E+,"Oh^#n1a batime--(b 2hem3get "nebury it in ?6#ir $ w!re's ghost Fings]i kill everybod --make 'em walk a plankSA y!wo "q Joe; "YAkill5RsNo," asT## 2g--they're too noble}Tbeautiful, too.Awear[bulliest }es! Oh no! All goldsilver and di'mondswith enthusiasm#o? !hy#B." o"caDbis own orlornly I ain't dressed. h"a &ful pathoH=;Z#go3!bu1$sex@Ftoys tolbe fine#escome fast,a h0Sbegun <W^2him!^2his'4rags}Qbegin,l(Lqy for wy  a proper wardrobe. Gradu5talk diedk ;vwsiness6'[z t eyelidm fBwaifF pip3ub9U (Drhe slep qcience-aR wearL ta} 3 :J%in . 1saiYayers inwardlya, sinc Dith authority them kneeXQrecitC1ud;h"ru2d a0!no$s(1m a,,were afrro proceU lengths asS, les:might call2 a dspecial thAbolt3 c6cn at o Qy rea1ando7'reimminent verge of O.an intruder( ,: not "down." F ,4e>41egafe$fWhad been doing wroD -#eytb. 3meaAthen!rezr^CcameY to argue it away by remindingzhad purloined1tme@nd applesfAs ofKB C!thin plausibilities;E!m,che end? R!ar%the stubborn&"ta-was only "hooking,"F6,O"am@valuableCplain simpleSing--Oa command againaMi"Sov  5hat;a4 "bub", )U2not~Q be sd.!thl}Ume of.3$ e؍uP Lc 39]dstent # Hfell CHAPTER XIV WHENCawok!, he wond% he was. He sat5Q rubb Rs eye'ny"omBd#ool gray dawT#ya%-8of reposKdeep pervading calmGBsilewoods. Not a leaf r!!; ! s!ob|great Nature's medit!Bedewdrops W 2upowCleavQgrassBQ whitY!xcPathe fi,Dblue3werK|some hand$r it laydst to (/Bdit by a narrow channel hardlybhundred yards widetook a swim | hour, so i the midd#thEnoon2Yy got6ptoo hungrRtop tdthey fared sumptu"ha-%themselves $balk. B_S soontto drag!en6} 2itybrooded pG! s of loneliFsFtellUaspirit1oysy!toking. A sorQundef,e creptWmVdim shape'6#--budding homesick'Even Finq Red-Ha.was drea doorsteps\empty hogsheads~all ashame",1weayC none was brave to speak &a. For A Aboysbeen dullyM!ouna peculiar A ,2"sometimes i>2!ic"ofZ##ckAk"ke6>!no' #(isAA1 befpronouY!fo a recogn72 st a glanc4 \aassume1ist23 atfR Thera ,R, pro_band unK1;Yqa deep,ren boomK floating downDn.#is it!" exclaimed Joe,S. "I [!2Tomi whisper. "'T@!8thu+@Dan awed tone, "becuz4'bHark!")qTom. "L7q--don't\#."2wai% 4hatSan agV] ame muffled boom trouble$| hush. "Le(5seevBspraVAfeet%"hu_ MjS1ownp1y pCy u(1ankM!pe2out+2ated 9!steam ferryboakTabout1bel' v,3Aing @, urrent. Her T deckMScrowd b*<!re^# amany skiffs ,T&oru9 neighborhooBcoul{determine what em&!jeSwhitedburst z E's sKas it expSand rNa lazy cloud, tAsames Cb ofz1orn steners again{ 9now Tom; "somebody's drownded!`HGHuck&*last summer,\Bill Turner gotVvy shoot a cannon ov$at makes him comRdtop. Ytake loavBbreaRAput &q in 'em2set Tyr,anybody!!, L'1ll =9i #!op'I've heardDthatUJoe. qread dolR!Oh)](Ld, so muchW&it's mostly v 72SAYib it ou%. "y >6say<iqHuck. "p r@O1XWfunny. "But mayb!sa)E . Of COURSEb do. A1$<Tboys agre=AQreaso(1TomF,@% a!uat lump3Buninfeescaped, unawaR.Bby Joe timidly H1&ra roundB"feeler"3o hI rothers  # aa ;D--no[_but-- Tom!er derision!, uncommit s yet, join"Towaverer quickly "ex)#ed 1wasTT g f<ascrape4 as#tachicken-hearted a cling-o his garme"!s z&uld. MutinybeffectV/1laid$qrest fo{s moment."heMQened,&#no&H to snoreTQ foll13nexc#laG)lbow motioq,>V %@1twosntly. AT he got up cautiously,7CkneeZ#BsearQ<the flickerflections flung%!he"*!piJ !upDed several| semi-cylinder:3hinAbark%t sycamo)1finchose two whichto suit himin #3lt #fi&ly wroteV@shis "red keel";4qhe rollBB!pu"his jacket pocketFtM $he+Joe's hab remov$lD  owner. A CalsoQto the hatschoolboy treas most inestimable value--5m a #ch India-rubber b ree fishhook@$oEQthat !of marbles n as a "sure 'Lcrystal."tiptoed his way #!s Y "he  h drhearingstraightwayc=a keen ru  "irr \-V A FEWsirX&!waM ) BhoalNbar, wading qIllinoi].re. Befoc depth rea,%Chis  half-waF  a:" p="no%},#aso he k]1wimKremainingOSswam bing ups   $=faster than dcted. However, 1Zr6$al3AdrifUlong BoundUR plac~JfRmAis hA N6Aiecexark safP .R#,35ing. Shortly before tenFecn openroppositBDvillA saw2 ly ? Btree- the high8. Everything^quiet undCe bl- !stK2He dkRGZ1alleyes, sli!c, swamor four strokXclimb7(I)"yawl" dutyEPboat's stern!1thw)ited, panting. ;!ra!qbell taavoice gagH1 or:o "cast off." A]j "la("'sh]ZsAup, s 1 swQ4voy abegun.M in his succ7!fom*ait was2^AtripB 2. A/e!a HRtwelvcifteenSwheels stoppedDTom aoverbo."ndaLysdusk, lSfifty6Bdownk,<rof dangpossible stragglrHe flewY unfrequenl3leys$]C:r aunt's QfencehoRapprothe "ellE lBin a+)1-ro Bndow"a 8was,& r/ Aunt Po:Sid, MaryfJoe Harper's mother, grouped togeB talTH s b ' &the doort B dook softly lifBlatcn he pressed gHyielded a crack; ntinued push,G= band quQevery it creaked,wQjudge  squeeze~9ugh ;i #hiq, warilWcqweblow s=I5up. >CAor's , I believe. Why, of coursr-cis. No , gs now. Go 'longqshut itF"."j"edM"la"Ded" 7`|C"tould almo\"!uc nSfoot.#asJ "Q rn't BAD, so ay --only mischEEvous. OnlyRgiddyharum-scarum, F3He Z2any bresponoa colt. HE never mean12hart@2]%st2boy:awas"--g&he!cr[Irjust so{my Joe--always full ofdevilmentbup to  rischief G`as unselfis'3Das h"belaws bless m&w2k I.an!htz#m,:once recolEAat I3wed myself ]Yis6$Sand IP1Ahim Xgi#ldv!, R abus!!" CMrs.ba sobbebif her3 3hope Tom'Jvter offi*BB"butQ'd been 5in some ways--" "SID!"the glare 2 olc3s's eye,yBnot 12. "g9N_%st my Tom,"Qat hene! God' Cke ctQHIM--F< YOURself, sir! Oh,G2, IuR know=odim up!!!!Hesuch a comforjla he tohQed myJme, 'mosrThe Lor,!th2tqhath taSrway--Blb 1nam"21!w$Ait'sKard--Oh,! Saturday my Jo<#er bmy nos D him sprawl%aLittleH $K !n,TCsoonfKto do over K1hug3and1him6 IeYes, yj1howMfeeljust exactly/longer agoqQyeste(Snoon, took and f3to tPain-killI$ ct@e house down!Go%Agive"I  ''="my thimbleY3boy 1deaab P  H"An'rwords I7Ahear2 sa6Rto re 2#Bu\6Tmemor$X1the$la3sheqentirely as snuff;:T now,Nm Bpitythan anybody elsP #ou E cry -"pu^4Q%kindly word #imm$oY)DFa nobler opin$ H1befdStill,rsuffici Bhis  grief tB!sh] tIoverwhelm herB joy;eeatrical>aappealKarongly0is naturAo, b]R resiJbnd layX*R. He&on'F#ga|qby odds;Bends+ conjectured at fir!atP(/#e#le+;M+ec0rraft ha Unext,2]she missing ladspromised!shqB"heaQq" soon;Qwise-8*$"pA %atU "Sdecidk8g`fC"at tturn upnext town below,;|N(found, lodgede Missouri pQ"fisix miles t| nBperitIbust be`%1ed,1 hu have driv4rhome byqfall if5U1soo/  W searRbodieb!8Qfruit !ef Amere2cau; 2ingaoccurr} mid-channel, sinc Qbeing swimmers,otherwiseSBesca|r Wednesday A. Ifsuntil Sunday,3opexAbe g\!ndMfunerals&$ p"onA shuddered. g>Dsobb-j0 2go.  a mutual impuly two bereavedMA flu =/5Qeach Pb's armvQhad a|,A-o{!#cr jwparted.q was te+ far beyon`Q wontu+cRto SiMary. Sid red a biCMary<#ff 6. and prayeM so touchingly, so 62ith qmeasure1lov8OGer old tremb/Avoic  3welin tears ,B sheK&9h Rstill3A5#shZ"dsrmaking -sejacula1romB, tounrestfu and turn:Q "at* "as", !oa.| sleep. Nboy stole @;*cgradua;Aside, sha"e b-light=#andQstood4r Gher. HisIrfull ofA $e [5hisxq scroll.+ARto hi he lingRconsi"R face,arUsolutW "s x Bt; h(ark hastily iv9 !ntv k[2lipAmade#stORexit,pWabehindxAthreYhis way backmhB!no \Arge ! S2ldly on 2oatwc tenanRxceptWahAman,(xiE slept like?ven imag] CuntiGS 7 zi-<$on. 2 up. When h!pu`!a V6$abhGD, he2S quarrCacro  Qstout Awork !hiT !e , side neatlyn" ts a familiaraof wor1himYBwas &Aptur 3b, arguLRat it;1 beFAshipfore legitimate prey!qpirate, a thorough @ 1be Cfor z!enCreve8B. Soo<a qand entBoodsslwM`arest, torturin Cmean o keep aw:!an]n;Vhome-stretch far spent road dayJ"he r*DRabrea  rVA barr{JO k !unzbwell u1gilI:2eat=its splendorhe plungtream. A "he paused, dripp" treshold2cam + Joe say: "No,]true-blue, Huckqhe'll cl "ac?won't deser2zstm uZ>ğtoo proudfaat sorXI a. He'sBo2 ora55C whac[8/!e 0s is ourz^i4hey?" "Pretty nearKrnot yet_1wriIAsays:B aregO 2her+? W$\he is_2fine dramatic effect, @Aing +l.o%F. AW:o "co2fisshortly provide?2as WQys sea G!itGunted (and adorned)#Qadven*% Ba vaRA boa_ P"anp."wh p>AdoneHn 5hid)BawayAshadwQsleep 9!ss&'ready to$]>e#I AFTER dinner 4ang !ou-hunt for turtle egg+ 22nt *,poking sticks s yba soft vNe eir knees#duJ!A5. S9tAould{|igSsixty<cone ho6Qy werfectly round'ea trifle smaller`an English walnut famous fried-egg(gHCnighFanother on FridaBnq!1AftK7o%cwhoopi ua|s chased(j2anda, shedclothes ,  _tere nakePthe frolic far1 upqshoal wstiff current, wYtlatter {GC leg 1unde7^1cre qun. AndX9 !op) osplashed iY)Rfacesw palms, !7ing#Q aver-@Grto avoiQsprayQd finb g! "ug,jt0 st man du$s (9TAall WQtangl6S"egucame up b%b, sput q, laughqand gas1forth at on{ )BQ7imeh|aexhaus$1runBand  dry, hot!li ?+3covB_"up !by.!byk2terjo original performance onc/>3. FQit ocX /Hn skin re ed flesh-colored "tights"F6afairly!#qdrew a i circus--&bclownsP* b none  |"R thisRest p  `a. NexAy go %ir:+l"knucks""ring-taw "keeps"at amusement grew stanH1and a BTom Cnot ,; kEin k;@f;trousers %kiY!stfof rattlesnake his anklehq U!hecramp so lo8xhe prot+ @Bchar )di *Btime6Bboys!ti%ndwD res#waapart, dropYq"dumps, fell to3!lo1$ly"thEj Ato wlay drow1un.s u  r"BECKY" big toe;*Acrat`!9Angry5 1forD weaknessXqhe wrot!f ,!!thgcnot help i !er&itAEtookz"ouc Aempt# by driving 7a toget7!nd 3 m. But Joe's D1hadhn$Abeyo Bsurr.q $o 2Rhardly endBa miserB iIerlay ver surface.was melancholy, too"waeFhearted, bu)e~A noty 3howexa secret}^ to tell,B "this mutinous d2sio72not#asoon, Quld h$+1o b6Y@Bsaid2eatof cheerfulness: "I beY>Ebeen F 4is 1efooys. We'll( VgAThey>'ide1lasomewhY6UHow'd ight on a rotten chesto% f#--But it roused onlnt enthusiasm 2fad no reply. Tom!onz+3two!se}Aons;KAfail($ooI discouragz!k.M%sa  %" a A!lo%fgloomysid: "Oh, let's !!it up. I wango home. It'sQesometOh no, Joe''ll feel be- b{($by (T?!JuD 1inkah2?C" "u$ $4for)"(t) Bing- 2anyJS" "SQ's no.$Bseemp1it,0chow, w 2re t7! to say I sha'n't go in. I me b"shucks! Baby! Yousee your4,XAYes, I DO0#my.B--an)A, ifhyBe. Ih$2 ban(Bare.c'U"%ed.wlQ cry-I m,"we A? Po08aing--d8?t$it<?'so it shall.2alike i+Xe, don't you`sFstay|?ir"Y-e-s" !ou  . "I'll:Q spea-2you2 as- as I live.1ris\!"TQnow!"&9ved moodi [6and&#d<t!ho#1s!"hNQwants'to\,$ho1et  ed at. Ohr#3iceTand m[Ries.  V,A? Le0f#unts to. we can get0{aper'apAB< as uneasy Blarm 1seeGgo sullenly on/ sUAing.5# QmfortK Huck eying"prjO9Xso wiy5 such an om%K. Presently,v2 paxAwordwade offh"the Illinoie'AAsinkQglanc bU'3loo> `;yVYI#gog!ItfM L4  it'll be worse. J*usR"=)1canKgqAstay27+I!gosWell, g/--who's h ing you.+QCpickR scatqclothesjvtAwish4'd ol3youi`.wait for youq!weCV""3ra blameh5all!st q sorrowR awayM3Tom _Ba!6ng desire tug!at;#to ]#gotoo. He hsf stop,; sw Aslow. It suddAdawn y awas bemBverypQcT3. H2one Y-d?s comrades, yelling: "Wait! (tell you some!F#y j!ly1ped$SaCgM zh5e1ingc yK|cCat ly saw the "C"s # aN set up a war-whoop of apCk#1saiTRwas "Aid!"3qhad tol]m(,#2n't away. He made a uible excuse;O!hipIl reason "be:" fa#ev<T#DthemmA ^great length ofSs$so#men 1hol eserve as a A .B ladNCa gayly:4:9 ir sports will, cha6!im #ut:stupendous plan`Aadmi)wenius of it. Aba dainA and ,!he*ed to lear bsmoke, 5Joe caughQ ideaSBlike to trysXQpipes7!fi 2the@se noviceY1 d\Lbut cigarsPof grape-vinGQ"bit" Stongu8not manly anyway. $yo'Vir elbow1uffBrilyd!slr confid9AThe an unpleasant tastGgagg Why, it's@0as easy! If0a2e/sCall,"t + #SoI4 E. "Ic!no'hy, many aI've lookA peonm$ well I wish I!do's; but I 1%Tom. "T!aRme, h$it 1You1earK Stalk <k--have o qleave iKAif In't." "Yes--5MosUHuck.$7D too Tom; "oh,ZCR. OncW1 1e s5 ter-house. Do rememberBob Tann771 thand Johnny M1 ,Ilcf 1, 'ame say  !Ye\ !. B#ay I lost a white alley. No, 't*.z --I told[1. "472s iI bleeve4Apipe4dayMfeel sickNeither do>}]$itV1. B!be  4\ !! 7keel over wtwo draws. !le D tryB. HE'D see! !beRwould !A--I  Aa tackl2onc 3Oh,)2I!"G@s:youI any more%an!onqtle sni fetch HIM." "'Deed2oul U. Say aus now?!So ay--boys!saH !i BsomeRy're = ,W Qup toQay, 'got a pipe?aPae.' An2'll31kin%1carO like, as6rX  pIamy OLDw", (03 on'rmy toba+bCin'tood.' AndZ1Oh,'" r 's STRONG e3G= $ouhO1igh ras ca'm!Eqsee 'em-S4thagay, Tom 1ish0aas NOW5!!we \"weQerwas offQing, 27 w#y' dalong?Bnot!M4BET@ll!" Sotalk ran onV &itEflag"'grow disjointedBilen adened;erexpectol marvellously ]!^ry pore ip <boys' cheekame a spouting fountainiyj2bai the cellars   rs fast Kb to pran inund;2overflowing+M throatsqin spitx 2all*"doF = Fings"Metime. BothY1ere2ing2pal miserable, 'from his nervtfingersx!. t_ygoing furBboth pumps baiB"Mm|\)id feebld) =Wknife]hCfind Bquiv2lipb 1halutterance2'llyou. You go j`Rhunt r? !pro!No needn'tvHuck--wdS ,BgainAwait!Q hourCr%itpK'"to Dhis :yswide ap oods, both U!pa Aoth a1 0informed him2 if#ha!ny trouble agot riQ"itnot talkative atT}Snight4Rhumbl1henQ prepCdp "ft meal andBparez\ "ey[2no, 1fee,well--some+1 at )mӂisagreedQ2 A !id!aw-dand ca0{ding oppressive:#ai83see02bodiNXa huddl  !so1thet(Cndly*vionshipr4F/} 2ullj=aheat o  breathless atmospA sti<Ty sat94%Awaitholemn hush 7b. Beyo{jfire eK3swaSQup inAblac`!Hr  &aaAglow  vaguely revea^ foliage for a momTavanish4by " crc1str?#n & faint moanA siguL"th0 tranchesRforesboys felt a fleeting ,ywshudder fancy tha?S! Nd !!by/. Now a weird flash,! n?Ainto  hgrass-blade,=i and distinct %aBfeet $it[three white,/tled facoo. A deep pea "thP1rol:and tumbling "r heavenGlostw# r4Qdista$A Ƙ chilly air passed by, rustlingjyn!sn the flaky ashes broadcast !ir TfiercElm FN% stant crashD#retree-tops r'Mic:p$in terror,x%athick 6!p~q. A fewsurain-dropCl paf* .. "Quick!!W"foLtent0csprangs\Broot4amoQdark,awo plu&same direction{ blast ro trees, making &as it went. One blind yH #ndnbf deafJhFnow a drenchinv1 po@#heK hurricane droveGsheets a`c0Qround<" c#u Beach#,the roarafoj-C!s >eir voices7 ly. However, one by; O 8\ook shelterk  .Qcold, /Qstrea5 ,;o%!y =?DseryR1o b teful foK  x 1 olBl fl{Q$soW2ly,0 Wd noise1hav[A The6(esS!er:qhigher, Zthe sail to "se/1its ]4X"wiCaway- %. Iseiz0"s'1}Rfled, ye bruises, toԁ2oak`U86d-bank.b battlsTst. U}R ceas conflagrf of lightnR flamii*AkiesSbelowout in clean-cuTTless Qness:"be:the billowy ,<Bfoam$@Z0 of spume-flakIhe dim outlinSdbluffsoside, glimpUD drifting cloud-rZ1lan1veirmE "L9 some giree yielR>! fand fell younger growth;Vthe unflagg/ S-pealnow in ear-splitting explosive bursts, keeBshar8 unspeakably appa[storm culminatone matcy ceffort# qlikely *+9q to pieQburn ,! ig, blow itBand rq creatuA it,av" 2. IKra wild rfor hom#}Q. Buk}'do forces retir Aweakd h threag  peace resumed her swa  %nt>Scamp,YC! d3wed3hey`Q was Sthankp07eat"^Dthe  ir beds, was a ruinTJQblast? w uwere no3Rt whecatastropppened. |! i pz!ed9A-fir/Qwell;5 t-v-AheedSlads,3Bgene0ymade no prova +/#stHc! m pbdismay2|Q soak3t eloquent iNHtres/,%,1verY0 [aten so far up HQlog iL  dbuilt !(wW it curved upK\3 &$edn Afromground),%a-breadth or so# \V2!weB; soCpatitj-t7kashreds+qbark gaBthe 2sid#qed logs+ay coax61"toQ. TheRy pil=$5boughs ti]# r furnac<|# glad-heaV751g1y d{ , !boo"haOXD feanN ][3satJd aexpandd glorified8Q<]9ndry spot to sleep %6-B. A@6sunssteal iN2oys !si!ov"em sandbar2lay1<Ogot scorche.8drearily se(breakfas"CrustJcstiff-4mhomesick once;:%Bsignbto cherTup thp+;ɹ2C. Buc 1not %fo6, or circu .E, or"%Aremi1$ imposing &aa ray 6eer. WhioD, he`7mRa new devicaK Hqo knockcbeing aq e"be*c!nspqa changOHeattracis idea; sonzs;m^head to heel black mud, like so zebras--alB Zchiefs, of course/aEwent* `A"tt%=s settleQg!By|yn ree hostile trib(Vupon @ bambushdreadful 'kQ%hcalpedHvousands  gory day. Conse$lyan extremelisfactory one. rassembl\Dcamp-rsupper-*<|`KYj4but[ifficulty arose--!d]1notk of hospitalityR-1fir<8 ,: qsimple nAsibiI@"smv2 ofER processeLDaof. Tw davages;7wF 3hadd$ed%. oD}2 wa;with such show 6! aCSmuste# Apipe# 1tooqir whiffA tqdue for1h1gladBgone"rya0Rhad g;S e now smokeA hav Ao go^;Aget 67d be se#un02abl1not AfoolG jhigh promis, #of }practised cautbafter R dfair success y spent a jubilanAning\FeRhappiw new acquirp#would have iwnd skinning"QSix N s. We will$toqnd chatL?And bsince we=nther use >, . CHAPTER XVII BUT} hilarity ?Btowntranquil eZafternoons Harper~Aunt Polly's famiE22ereS3 pumourning QgriefXP . An unusual quiet possess= village, althoug"Rordini 8 !all consci*Ir!du ssaan abs^#ir+ nblittle*sighed ofte.Ftholidayqa burdeL !Shildr61 no) Rsportz h>gUbup. I Becky Thatch1!unqself moB2abo Q dese5 aschoolc)C yar1feevery melancholy sDund  t73to FPShe soliloquize:if I onla brass andiron-knob-!:(*Dgot ` e%to * him by." And she choked besob. 5)7sto CXo9!tchere. iRto dog  x( say that' n3 the whole wor Bhe'snow; I'll <.6A seeb.12is 3t broke )1wn,qP!ndCawayQ down9Uun quite1F!ofs Vgirls--playmates of /and Joe's-- b 1ood2!Qv1 pazfence andfNArentqhow Tom]rso-and-+d2ime"csaw hi6'6how#3andmrifle (pregnant# awful prophecyu(2eas "!)  er point>tWu2actwC"heClads" 8addNpa"and IBa-stR just so-- as I am nowOf)qwas hima Aclos e smiled,Y ?2way!th!l+"me !--R, you knowD!I wZ5Wmeant ,C/1can TL a dispute5who-Bdead.cin lif`Qclaimat dismal|qand offLevidences, more or l: 1amp!DwithVrwitnessDwhen ultimately decided who DIDrthe depl"exCwordthem, the luckR2ies Aupon1selA sor"sacred importanf z1apeand envie=che respoor chap, whono other&z"toF,)tolerably 2c pride 01'Z9# ucked me-BRat bi Rglory failure. Most s "athat cheapen&!1incWWa=4loitered zs2rec2r memori!osu2oes3wedC. W\-B hou 1UfinisFnextell begaoll, inst# r  @I1a vtill Sabbath2the ful sound %in<he musing9%TlSM#on` &rs,V5ing$ vestibulQnversCwhispers#1nt.zQthereF$no/Athe 4 ;g]6eal"of dresses +f womenZ<eir seatsZ3urbJ= T. Nonpi&er q churchd!beS full5. TXMa&Q paus expectant dumbn  CV,D#Rby SiEMary yV C ball in$2 qcongregb old ministere, roselBntileos Bseatront pew$ncommuning2., broken atvals by muffc5obsbaspread,hands abroa5prayed. A mov1ymnEsungRF tex<$q: "I amRH Qe Lif2EQervic'Dceedclergyman dmLuch picturA gra  6wayA rarZbthat e4!ou)!in9Acogn!Uthese,(!pa5!herpersist"bl1him rm always Ys?BseenRfault( Sflawsg +1relaGaa toucIqincidenm&iv`e:RqillustrN.Rweet,X3ous%s people !, how nobl_ beautifose episodespt  O rank rascalit"}.bcowhid 1 be@ \ 2and D pathetic tale1n, e"at r rcompany aand jo( !erba chor swelled upa triumphant&,6c it sh! r-s0ASawycre Pirat3#eds k-1envQjuvenkGDBconf"in%$ea&"s oudest momen_1hisq j"sold"Utroop"ey6 jsbe will;"beFBridiculouCtp UuB I" Tom go81e c )esd!cc4R's vatmoods--uhad earned YByear he hardly knew which expro85ostK,!Rto GozBaffe' BqI THAT !--RchemeoAturn'bhis brpI Qatten sa y had pa4o& mo'og, at dusk on 3, lmvesg+t6; U slep   1edg7Bthe 1ill nearly dayligh`UcreptZback lan@ TsleepE  0a chaos of invalid21nchA>f fMonday2 kSto To1tivhis want Aamou1. Id!ttI<@3say> fine jokB, toHeverybody suffe'G'most a week soAboysra good 1but01s aMjC you% Qbe sop-Aed aNrlet me ob so. I-QcouldO:U overtrl1hav| eN&Aive -=2hin9D1tha" warn't d 2but qrun off=Yesedat, Tom,";Mary; "and I believR OihAoughLCW1youR?Rg!, }#ac7iZstfully. "Say<", mJr'p?" "I--w*know. 'T?b'a' sp'NILryou lov UDmuchwith a grieved tB discomfo5Gv!me! c enough to THINKc, even+ didn't DOqNTuntie)vUany harm," pleadeBit's giddy way--he is2 inba rush%he|uinks ofrUaMore's Qpity.\. AndAcomeADONEj.1too'1'll !, 0!da 'Q late DQyou'dSd+"dfor me>Acost&2so 9 j1you V` for you5H2I'd)ADtterakDlike!I Vnow IVsrepenta1; "s dreamt@1any(I,,L much--a cj$$'s!no2. W QWhy, Wednesday night I!tZsu ! bl # b 8+ woodbox A nex Uhim."TRso we9 S 'do ByourQtake  0?8 !usfD<$Jo#'s -uhy, sheA! DiHNOh, lotsso dim, nowWtHa--can'lIRSomehAseem2ind ewind b)6.{1"Trh1der9s[2p. Come!"6  !hioo$ aforehe anxious minud then *AI've i[(.! t rr!" "Mercy on us! Go]-Tom--go on#R< 1you.1, '*door--'" "Go ON]VEJust;ctudy a . Oh, yes--rS you dkwas openeAs I'mMGQI didZn't I, MaryA[}Bthen^r I won'obertaine9Qas if4 Amade'P/cWell? -I make him do%Yb1himB--Ohyahim sh   M"land's sake! IAhear% b@my days! Dstell ME1any! i 1amswV. Sereny 4& i^an hour older.^Pther getCTHISj er rubbage 'superstition.#1t's/!!brbas dayVF Nex3 I r BBAD,NmischeevousM )"an+ responsibl3n1--Ik a colt,28 Pd$"! AgoodjgracioF you(1cryU"So& "Nof* nM)" "Then Mrs.e@2cryf "JotF3ame:C2she !ha SwhippERcreamshe'd thrit out he"CselfRsperrA1cyou! Ya#Qsying2t's1youdoing! Land ae]Gno!SiAsaidd  D" " O ! IRLBSid. did, SidMary. "Sh.d"leU"heL1TomSHI{ !h^6$off whereM$gone to,  fDbeen0sometimesTHERE, d'youd that!:92his8 QwordsG"Anhim up sharpTI lay must 'a'an angelcere WAS W xCtoldZ 1Joe>`a firecracker73Pet\ainkilleraas truPeI liveQ/!loCtalk%dr;Qe riv)1r ud%3havHCA Suna qand old MissRhuggeH4cri  "en bIt hap"!so 2surT'm a- sftracks /2n't`i.Zq 'a' se" %! \what?Ie3youq, " IwBhear`C wor2aid  !en  Pso sorryq I tookRwrote4piece of; bark, 'W}dead--we are only off 4'p %T tabl_  ;'hCyou sdA, lacasleepv8Iand leaned2lip6 D ,&I;bforgivqhm#at4she4crushing embracpt, feel lik( guiltie%villains.#wackind,  Dough~a--dream," , faudibl!up! A body doeV as he'd do if heVyA. Hea*FMilum apple  s 1was-,t--now gto school.=qto the Oc1Fat2f ui  ~2ack>'d-F1ing"Bmercy [l#t q on HimHis word, Bknow unworthy ofa 1nesR FHis *ad His hand+slp themEugh placere's fewAsmil 2e o= t{%4wHis res>long nightUDs. G2Sid >Q--tak+r)1off( 've henderClong.e children lefw old lady to call o vanquish her realism!sq marvelu(3had1Q judg_"toF_pi4"mi,"hethe house.XAthis zrthin--az\Bthatdout any mistakekWhat a hero/a, now! Henot go skipp~(%Rncingm"a dignifi!agƌXa@ who felthe public eyEm|cindeed; he triesto seem2 th2s ooaremark-he passed along?tW5Afooddrink toSmaller boysl%1flo+cels, as A to 6"enw"le$#bys the drummer1heaQ cession Ae elephant lead menagerie :own. Boys ofown size pretendVIknowaway at all'4were consu with envy,bthelesW EUgiven& i#av1swasuntanne6?his glittnotoriety3Tom !no# Ae pa1ithBr a =e3Dbaso muc}bbof JoeAdeli!9eloquent admir)݅*"eyT1two"esMAnot "inCsuff+."stuck-up."s#1tel ir adventures]5ungy#2ers9B;c@ 9ran end,aimagins}!irrfurnish material+,yorir pipewent serenely puffAroun Q Qsummi; glory wadCchedOQdecidbe independen@ ]6now. Glorysufficient. He_2liv|R. Now !heTdisti?'a, maybJ?qbe want o "make  !le!-- h  qas indi1Qnt as other people. 6 arrived. !seAawayQjoinetrroup of5%Oalk. Soo#!obed$s%3 trYQgaylyR ERforthi1fluJAfacedL Hbe busy chasing4mat?so4th a 2sheV a captur9h$icI3shea+/Cher 1vicinity&89qto cast!nsS eye =gPW1ch ~RI"i2!viFc vanit wB him)so0Awinn!im&only "set "#moE6himSdiligAavoirc at he knewKboutR gave~ qskylark`;+ved irresolutelyBQ, sig 1onc 3twi#glafurtiv45nd @QTom. 2snu71was1ing  particul0"to Amy Lawr7 Dne else. SheArp pRwnd grew1and uneasyKc=2tri1go away, but 2eet8t+2ous:1car71her"he "to a girl*as"'s%g!--)sham vivacity:Mary Austin!  A, wh&"n', #to-n?Cih!#--*Qee me"Why, no! d1? W1sit(Ix!ins' classu1go.Xw YOU!? oit's funn!n'+D you>uw2you 'QicnicU%Oh!jolly. Whol)XMy maa}5oneRcgoody;  she'll let ME com)Hieill. T#'s<!any#AbI wantQI)!ev4# nice. W7Fs itbBAQby. M r1vacBk fun! YouM r1oysAYes,tfriends to me--or3be""he:4ed Ay calked d"lo   the terr$Tstormbisland[h9P#nr PNq tree "o flinders".c";rwithin EYBfeet6lQmay I#G]rMiller.P.1And 1Sally Rogers&+usy Harper. "And Jo[Aon, g2claiof joyful"s 0 ogged for invitNs"To]1Amynturned coollyPcstill Atook# 's lips tremblAbars ca1her;Y!hi$se signsa forced gayet con cha tfJ7?!ouny 1got( !on aand hi61rand had4rher sex4"x'xGsat moodywounded pride,qll rang roused upua vindictive cast Y1gav| plaited tailsik, swhat SHE'D do arecesscontinuedBflirO jubilant self-satisfacAnd he kept )Uarto findG1lacerformance. At las AspieEsudden fa-rmercuryb#bcosilylittle bench behi/BhousT 4t a27S-booklfred Temple--and so absorbed2hey #so?Atoge Rbook, 1didby 5 ofsq+lB besides. Jealousy ran red-hveins. H1hat  2for "waqcchanceQhad o  a reconcili. He callc-r a foolhe hard names a!ofD~#cr3vexd!Am tted happily1, a'y!, 8.e!rt= Asing 3butRtongu{8!it 4He Bhear+,Aas s BwhenZexpectantly h;!onu1ammh awkward assent, (/N sFA misQd as Awise !toaBrear! ,0q and ag%#ato sea eyeball"=1ate>!clryj belp itqit maddUL q5Bough"aw;  ]Thatcher\ once suspe(`iC# lthe living. But3did59 +Ber f%/3toosas glad#Tuffer^3haded. Amy's happy pra<$inA!e.!hiac g&,o attend to; s must be doneAtimeUfleetin vain--N chirpedkT`, "Oh, hang hi%k  aget rioXher?" r those 9he said artlessly !ou" """ chool leJeShe hax3hl, t. "Any(Qboy!"p#gr3is teeth yGH1#buSaint Louis smartd20and is aristocracy! Oh, c a, I lij1youfirst dayuWqaw thisa, mistAnd I 1ick.Y just wait_ I catch you out!9%1tak  ermotionsZArash+n+r= --pumme>hI1kic&>and gouging.{you do, du0? You ho',Qthen,?learn you!" r Fthe Qflogg'as2o 15fome at noon. His L not enduByD3 of4 iAThis jHtbear noAB thea distrf'Rresum) 1 in'h bAlfredI*sy"">!no#to,Ktriumph BclouG 3she/nterest; gravi absent-mindV-s followeGthenLR; two2ree -"pr!up2ear footstep" iba fals%;i Ashe bentire({1 wisbEdn'tjit so faVsen poor Q, see!loP2notV)Ahow,E exclaiming: " aO one! look"1s!"{1pat(Oc at la99S saiddon't bo| Sme! I2carathem!"` LBearsagot up)Cwalkq2. dA dro'alongside+s-}2"buRsaid:,2awa&leave me 5e, .1! I1 Shalted, won# waZdone--forCFaid }i !snooning #hej on, crytC!mu Z?he O qwas humO egQangry!ea bguesseE Vtruth Rimplya;Gn0nXAventRspitee)I". far fromh=be lessPDBdGZ !3g~to trouble withoutS riskTAselfR's spn Cfell^ 4. HMhis opportunitZ!ly.e !onLfternoon/T?&inKr page. ,pi cwindowm R#ou5vP. She startward, now, inten28tell him;~ thankful%healed. Before s half way4, hh1sheSchang$migi 4 of Sreatm!heS@C her came scorc9R:S sham|yvz6 ge,!ondamaged i's account*"tohim forever,Ohe bargainVIX TOM 1 at:'adrearyoa_sm Qaunt R k1 sh\-Qhad b tQorrow an unprom$kmarket: "Tom, &1a n  2kind live!" "Auntie,o2aved&e?4Ryou'v ! e I-vTSerenM,ran old softy, expectingAor!o ZL :g$atn0 2hat4,!loRbehol{ s'3fouf!Jot7 2wasabtalk wt&, I don'1 $Q of a9will act  that. It makes me feel so b [-go\A andG!L l of myself never say a word." Thisa new at  %  3nes( aLH!toueCjokeBvery ingeniouse *A mear shabby !He "2heaA"no5ken71 to,#4he IBdn'tvit--butCT2Oh,i#'!k. c0your ownrishness66T Lfrom Jackson's I?2 to $urt yoo?\:ASa liem<%91n'tC to pityk* Rve usXCsorr8q!knJ8was mean,!#I J CB. I s, hones1),. Ayou &W<ibme forI"toV1you'&us™(n't got p!del!th nkfullestMi} 2wor>I7bhad asta !"atY2you ever did !it." "Inde ' 1, a%--52mayOQ stir2H!OhT Rlie--,!do[QIt on 1kesPcgs a hUFbtimes *<a; it'sH0 F. I k,1you @?X4"at)"&me2I'dLW#it Z power of sinsV72'mo}you'd run eand acted2it reasonable;n #me  %Ryou g y 22, IFgot all fulRthe idea ofa' the churchI("n'GBh2 a$Qspoil$Sotpbark back in my po 1andjA mumkW.1arkq2ark 13we'+ d 1wak8qI kissee--I doL6linS%aunt's face relax[! t.Sness %inq. "DIDqkiss meM !Ar.3 su ?did2Dq--certa|ArmRz ~Because IBcobyou laBare moa-Band "3ZBds sz Aruth.* tremor inRvoice&K9E!!bexAwithbf1 o " hTgashe raqa.!goAruin$1 ja#T c in. T0 _vher hand< erself: "No, 't dare. Poor boy, I reck(+ #ed bit's a1!leBlie,7's such aQ1romaI hopeLord--I KNOW BLord 1forr_.Qisuch goodheartd"it3"wa'#fi 1lielook." ShexCawayRttood bya|b. Twic-Dput 21takA garUand t:refrained. Once m1ven1rhis timo3forN)3Wc}:> llie--i!et%1rieR." SoG3. Aa E, J7y"flQtearsix3: "Athe Bnow,}5'|'mitted a millionl)!"X THEREAsomeAunt Polly's manner"~!BTom,; Bswep low spiriVBhim lightRhappy6. Hp&A luc YBupon O8e of Meadow Lane Dmood+determined3. W|Bc's hes$ h]; Iamighty to-day,6I'm 9 ,#2 do!4ive--pleaseB up,S you?vDgirlKRA him<dnfully( face: "b3thac. 65 TO , Mr. Thomas Sawyer.i AspeaM 2youR!to*h a!pa!onCd stunn-1 noYnkh!ce(inIrsay "WhHs, Miss S&?"j[ ?$&it%dby. So$1 no(OQin a Rrage, 03He mopedAyardf1ingObwere azBand ing how hebtrounc%if:iatly en#erd 2R a st"y remarkQ5. She hursWbreturnngry breachcomplete. It EY$to Bhot 0Rment,s#AQAwait)Q to "02in,was so im see Tom flo\injur2. I;1hadany lingl!noQbof exprAlfred %,aoffens;2lqad driv=vaway. Poor girl dOrhow faswas near. The maMr. DobbK n͢middle agean unsatisu3ambDqThe dar!ofdesires was3#be a doctorqpovertyWdecreshould be*Q highan a village q. Every he took a mystmQ book>CVk and&$1 in;{s "no6.5Breci8"R$! t& 3ookJ#lo21key#rqot an utMwas perisve a glimp[Q@Bance+T came1boy8c theor-1 Qnaturqno two 1iCalik6t way of getting5ats in Base. "as1pas!by4Ddesk% 1nea~R door t3tX)5ae lockADrecious H  glanced around;>B next instantHOs1The title-page--Professor Somebody's ANATOMY--carried no informa/mind; so s+!ga1tur s"cau!3oncaomely engravW frontis> --a human figure,qk naked !CK+dow fell Apage}3TomA ste$inAdoor&fcaught tpicture!bsnatchs"to >aR hard BSdindpeEathrustfvolumej2tur@Ce ke  out crying'1 shand vexF. ",2are1 asacan be4sneak up on a persou"wh 8y'r+." "How yH2looS$ta?" "Y$Abe a  ;wfyou're&tell on m1#ohQshall) !! 1 be whipp ICwas 3%P astampe,!fokdRBE soU i!% *2'E*. %&and you'll see! Hateful^' "!"she flungthe housd*cexplos>\:still, rather flustereC1onsBt. P+ O+  !Whi"cu&k," aCqis! Nev2xen lick! Shucks! What's a#Sing! 4ClikeS$--so thin-ski and chicken-". 4Aof c4 # Iq)t$ldV3'is lA's o@Gwaysa even a<&|tC7? Oxktask whof%3his book. Nb'll answe en he'll doUay hekoes--ask firs\An t'wOns" jiBing. Girls' facese*9yMM2bonT1'll .i  hatight - ', p1any#ou.*!coCDJ'added: "All,3"'dQto se"inQfix--!er sweat i"!")4joi0gmob of: lars outsideC[ags  !nd:ol "took in Afeel rong interests studies% #hea 1 at gc side Broom !'sX d him. ConsiL&3alltT, he 4Bpity`B$et+2all1uldo-/"HeVup no exultd!lly worth[ n  \ %Qdisco@ 6#adeHH Sfull I own matterE9a~72aft "t.64&er lethargE *"Xgood the proceeding _! 3Tom"ge(&aby denrhe spil2inkCw  >/sSG:adenialr mn4TomssupposeV A gla{Bthat%sJmergency paralyzbinvention. Good!--han inspir4! Hk"ruXbook, spring thi)"3fly5NAolutAhooke$ont" i)was lostl ,rTom onl9{ Wsted , bQ! Toorkn Sw *O  Bfacex1. Eeye sank under AgazeLv9smote even Pbnocent/Hfear>1sil%B onez count ten =kAatheV.#raH npoke: "Who  book?" nNsound. On 1havxrd a pin,1a still!continued;CAsear-4fac|  for sign uilt. "Benjamin@,!tuS?" AA. Ane  pause. "Joseph HarperD5+;I uneasinessE2and4#sethe slow tor+es TFDscant ranks of boys--c ,ed!ur3 : "Amy Lawrenc,eA shak head. "Gracie MillerQ samerYLusan! 8his)rnegativ(2waslMA was"bling fromcto fooQexcitG and a sa!op_!of/Rsitua "Rebeccazc" [Tomhf#--I!Cwhitterror] --"]R--no,4(me6b" [herA rosmappealE?XAG29lik;Da%br(3prafcis feehouted--"I:"t!}BstarperplexitH6incredible fF3Tom!"a C, toHqdismembfacultiesk wYNA for=#to-his punish"=burpris gratitudB adosCshon64himBpoorv!'st Bpay /O)1 IBed b~splendor qown actv Sb outcr7most merciless fla DMr. 2had8,badminiBalso receiSN!ce"added crueltaa comm o remain Shours0ld be dismissed-- knew who #wa k]h;his captivit3don he tedious s, either$C6bto bed, planning venge jgainst ; ;arepent5#ol4"ll^ 3for 3'jq "ry8"thV1ingHW %way, soon, to !Santer'%she fell asleep at las's latest0sdreamily inRear--, how COULDbe so nobl23XI VACATIONapproaching),nKqsevere, rjQexact1han[,i!a .!shV on "Examin" day. His rodkhis ferul8! seldom idle now--)=&st # sUpupils. Onlabigges7 young ladie}e e twenty, escaped la #' Ss wer vigorous onO!; lC he \,K6 wig, a perfectly balQshiny=#, Ronly d'B ageq T of feebleJMmuscle. }great day "ed?byranny#waEc=face; hec! H)!ur?Ie least V2comTnQnsequ Y1boy59 air dayNp8Fz)1plo1 rezy threw away noo "to'  a mischief y a$J"im\r retrib8 & rfollowe*yCful vCso s|Qmajes^| from the field bad#stBtthey co2tog_Ԝ#lag7 QdazzlaictoryBy swaign-pa."'s(BCchem3askEhelp0s v`1deldRboard Rather's f]3K$giboy ample -rto hateFTd's wifHBgo o"!sitSuntrySew da~J#1to !4fer !he O Aprep f3forQoccasAA3by 8Zty well fuddl Q boy  the domini roper condw$G on A Eveh1q"manage"Bhe n[ <9Vwaken hhurried #toB. I!fu; "im!esHc arriv0+" iewas brilli' Cdorn wreathsbfestooDfoli!xflowers! s 1ronH 2 {d platform,< Alack=#? tolerably mellow. Three rows of benches on *(!si\Rd six%1in "c m.foccupi dignitarw1own)% aparentusTg left, backh citizens,Dba spac emporary5u@"th&Blars3 !er1taktexercise ; 1of S"he"drY0"toxae statdiscomfort; gawky bigRs; snowb_ X clad in lawBmuslHKbcuousl,ir bare armsir grandmothers' ancient trinket&2 biApinkblue ribboLir hair. A>/!tas fillKnon-participa.%2. Ac"3boy!upsheepishly recia"You'd scarce expecaof my o speak in public stage," etc.--ac5ing#ai-r Vpasmodic gesturech a machine mahave u csuppos ' a trifle]aorder."he*7safely, though cruellye}3g9afine r!offHD?dp! manufactured bowqD. A u1lis$B"Mar a+Clamb]#, Qgbssion- aurtsy,yher mee,ru!wn#ShappydSawyer ӕited confid o1int)1 un hGindestruct"Give me liberty orme death" speech1furc frant4Aicult  $ia middlit. A ghastly "-fbAseiz m, his leg5ked m=  to choke. True  1nif/!ir tterly defeab a( attempt at,it died early. "The Boy StoodC" BӘa Deck"!owPAlso 3Assyrian Came Down,"!ot{eclamatory gemV"rerd,a& f^ meagre Latin class ,Qhonor prime fea41ing"in,original "compos\ 3s" a. Each-!er: !to<qedge ofr 1cle.1roal anuscript (tis dainty)F"eqCreadQlabor t to "expreDpunc!1the.r had been illuJ;on similar  Sb befor^, doubtlessir ancestoremale line F nCrusades. "F[Ahip"wone; "MbOther Days"; "ReligioHistory"; "Dream Land";qdvantagv  Culture"; "Form Political Government Comp and Contrasted"; "MelancholrFilial LovVrHeart L#sp A prevalentY!se\ca nurspetted m|B; an>asteful and opue1gusf"language"; <qtendenc dlug inRears 6 ularly prizedphrases until+ Fwornx%3outr peculiRthat ZX CmarkBmarrlahe inveterata r sermonwits crippled tail  Ae eneach andby one E m. No matter wCssubjectG Rbe, aA-rac 7$ & quirm it into some as "r AFa" rQus mi} !ul*templateAaedificG glaring insincerid"_not suffi o1assYabanish  fashion'Lit iT to-day; it never will bex,orld stands, perhaps. #]5ll our l$2herD1 do$feel obligwAclos.!iru1ithkBrmon|/aill fi >#MfrivolouT  Dgirl1dongest9XQrelenhly pious. Butis. Homely truth is unpalatable. Let u2oK"!."QXfirstNas read9one enti#1"Is (n, Life?" Pgreader can endur_'bxtractNit: "I5common wal S life(ful emot!do/ERthful9ly"1warvsome an qed scen 2fesc! Imag is busy sketchingt-tinted3Prjoy. Inû voluptuous votary}TEsees`(1amiA3 ei ng, 'the observe4allrs.' Her gracRarray7snowy robes, is whir! f"uga1maz3joyous dance;E eye is b !es rY 3 is#st gay assembly.-BdeliIf"#quickly glides by, welcome hourRs for1ntrBintoe Elysia cld, of bshe ha2 g\w fairy-li eF !ry appear kher encharvision! 3newjis more charm}aBlastfas1nds{Aenea@ais goo߁xterior,#is vanitflattery3onc 1souqw graterharshly1ar;ball-roomCqlost it4sF%Rhealttaimbitt= Qheart1she bs away1Fnvicaearthl8s cannot satisf U1ing1theHJq!" AndV#or3so D!rea buzz of g/1to 3durB $, Qwhisp4ejaf"How sweet!" 5qeloquenSo true!l had closed jc ly affli e\enthusiastic n arose a slim,X8r, whoseK07' "C" paU42comMTpillssigestioX>`a "poem." Two stanza&"it=!do+ "A MISSOURI MAIDEN'S FAREWELL TO ALABAMA-qlabama,%-bye! I love1! qBut yetLzCdo I:+1thec/1Sad1, sQought(!myR~bt doth And bqrecollesng my brhRFor IAwandH|!th[wSoods;Have roamN a;Tallapoosa's stream53blisten, *ssee's warhfloodswooed on CTide Aurora's beamA "YeM8Ame I to bear an o'er-full4`Nor blush4urnmy tearful eyeB'Tisno strange% RI nowa+pm2(to0s left I yield; Qighs.[W|sand hom2min  is StateW1TvalesL"--F!spq?fade fas (1col ag3eyex 9eoen, dear ! BturnQISee!" c Bwere4few$ho $at "tete" meKl"bu "po S very|ractory, theless. Next/ed a dark-UBxionEIfack-ey Qhaire qng ladyQ paus2 im'vwJa, assu tragic ex$n Q " m~ d, solemn tone:A VISIONN2Darbtempes 2was5 2. Aq on highA+2ingr quivered; butAdeep0"na T heavy thund "coE-qly vibr 1ar;s]rerrific n .gry mood-de cloudy chamberheaven, seebo scorQpowerXted over itsAor b,allustrFranklin! EvqisterouYwinds unanimaM"th mystic /Qblust?3as if to enhanceBir a Q wild!#. . "At5 a$A, so Rrearyv human "mymspirit sigh@eQbereof,k1'Mye#iend, my counsellorand guide--My jop Qgrief,second blis[in joy,'RQto my1. S#ve^9o. Z 3ose p!s !d Qe sun9lks of fancy's Edekromantic , a queen of beauty un#qsave by !ow_ctransc xAlovevPsGAsoft 1, iqQfaile2mak a sound,"bu1mag0thrill impartedgenial touch, ather unobtrui< Bhave away un-perceived--unse4. A1 sau res4herf1s, "ic5s e robe of December,21poi 0nd]Aelemtcwithoub0Tg5two"bresentV3Thi;(ma)1tenB}h1oundwith a 5so v all hope to non-PresbyterianN  #!okApriz%1osi~ Gwas /Qto be sfinest >81.cTmayorvillage, in deliveJ  rhe auth6 it, made a warm speech i Bhe sQby faT"b "" !heE  that Daniel Webster well be prouit. It may be rel2ng,xthe numbes in whiz4aword "4Qeous"over-fondlegxrience referras "life'sS,E$upeusual aver`1Now}m,"1 alA ver3k1putchair aside, !ed9 !udldraw a map of America #A, toa"ci geographyoupon. But he 9sad busi] !thu|&y 8SQa smod titter S!ov*=!e '/ nB wasDset =Ato r !it:sponged out2Qs and=dbm" he only dted themQE!evn E&ApronGMd$)$hi'>J his worky(if@PBnot uput dowQmirthBfelt"al B wer #en him; he i| was succeedingFyt;\5uit even6ly increased.Q igarret above, pieta scuttle 1his|,@$is- came a cat,nended a$ q haunch a string;1had&!g V 4PEjaws=qrom mewDslowly de#Q curvwAward-Aclaw,swung down-qintangi!!irRxKahigher2 --the cawb six i"absorbed teacher's head--down, "$owshe grabbu2wigNher despEclaws, cluS4iw1nat7u ", " i} Yr trophy7" ibposses 1And0Qthe ldid blaze abroadx's bald pate--fo 3, boy had GILDED it! That broke upEmeet3boyavenged. Vacn  3com NOTE:--The'+"a" quotaS tpter are taken%out alteriBfrom avolumeqtled "P7and Poetry, Western Lady"--yj1exa%0݇Qecise  *agirl pQhenceEAmuch9 Aappi"anYcere imUs be. CHAPTER XXII TOM joew order of CadetTemperance, r attracN  1howw@ "regalia." H3misRbstai^Q smok9!ch,Aprof as longSArema1a m OQ he fn thing--nam&a1 noBdo a+" iZasurestO  3 body wanA!goVQvery Pv$b soon W!rm] q# aQc to drc)q swear;Rgrew %so:!nor jL bof a c6to display i8red sash kept himwithdrawing from . Fourth of JulT61;Qon gaat up --iC"A2worrshackle7 1y-ehours--and fix0Bhope? old Judge Frazer, justic)Beacewas appares'"bei/ Ta big*funeral,  o9an official. Du( ree days[;Bdeep+rcerned 62the' d Qungry1newit. Sometimese: "ra$--#heRventuj1get Chis practiseO.R-glasrmost discourag yJbluctuabAt las'as ~Amend then convaltQwas disgust9'qnd felt !ns&injury, too !haQsigna,tat onceq"at#Bsuffc relapBdiedrresolve kP! trust a mand@T+Cpara a style calculated to killClate^Benvy$1fre[m@!reAsome!a La swears Ors surpr 1dids7Qsimpl| hga, tookBaway Charm  GDqly wondQto fiIacoveted vGwas beginning -4&ng Cheav}M ands. He attempt$BiaryPLed dso he abandonedT?!rsanegro minstrell!s cto tow aa sensand Joe Harper+-up a band of e-r were happm1twonGloriousbwas in a failureWAit rFT&, encx ! i!seI-e&t! aeatestBAin tabrld (aT!/ed), Mr. Bento actual Uniteds Senator, prov overwhelYQdisapXBment Gwenty-five feoqgh, nor +Q anyw;neighborhoosrA circu qboys pl"J @#  in tentsof rag carpetAadmi ,@2pinOB;two for girls#ens. A phrenologisa mesmerizerI3wen1lef H8_Udrear "evf>=BwereUeCAand-'(1es,jDthey,A fews6so $(Bonly2 the aching voids between acae hard= Thatcher1gon}bher Co_ ainopleat!Bher ks } bm1sidaElifeP.dreadful secre*athe mu  chronic miseryєaR canc^ q permanX* 2aingnmeasles. wo long weekl Mprisoner, dea}1andw"Aings1wasQ ill,;O !no3. W2cgot up aU3andafeebly{-$"!achange3com./$"nd2 cr.rb* "revival/0 had "got *1n,"{Bdult"thyLbbhopingsst hope!1e s$ of one blesOQinful"- A cro(Ahim Qwhere9Qstudy Testament4Rsadly9- "deng spectacl_  Ben RogersKvhim visi6 #ooca baskBractE!huup Jim Hollis B calLs]KK{2ous0ing of hisA 2 as DningSboy he encounti!ad2nother tfV Aon; 1hend ion, he flew for refuge a) F bosom of Huckleberry Fin! bwas re+Scriptural quotjirw_ re crept!an!be"2lizat he alXA allw!st4and .%Bnv=&st:Adrivain, awful clap ]/blinding she81cov!the bedclothe"ai! a horrosuspensehis doom; not the shadow of a doub  is hubbub was 1himrSdQtlm!thtgbearanowers aboveMQextremitp Bendu2h.i the result have seeme1him!st[ApompiRammunp Ca bu3a b(of artille+;b incongruou' E3 up+n'2 asrto knoc+ Bturf! insect likeB. Bbtempest spent itPcand diQout accomplis9its objectc boy's bimpulsgratefulreform. His +EwaitC"re>bbe anyDsK"dadoctors were back;w4hadd 3 heU!baO!is2!%an})ge . ehardly4D1spa#"reing how loneWQstate companionlesAforl@oPdrifted listless Btree+p41 acuqas judg a juvenile courr1cat her victim, a bird and Huckup an alley e@ a stolen melon. Poor lads! they--tTom--ha7E SI ATkhe sleepy atmospStirrevigorously:3e trial4k!betAsorbWtopic ofe talk immediately xyBaway$itArefeQO ; sent a shudd his heartroubled consc i[5LQpersu2himBthes#rkr!pu tqas "feelers";1seen-Rld beaqof knowz n -  Fnot be comforc2ae mids, agossip1kep(rshiver e"Hu##a 1pla+!a Sm. Itb QreliedbunsealAonguwhile; to divide)iburden[l87r. MoreoqBhe w/to assur-m discreet. "Huck,1you" told anybodh--that?" "'Bout wYou know." "Oh--'course IZ"n'Never a wordLAsoli2Qword,|Qelp mat makes you ask:qWell, I\ aafeardbVWhy, ?B, wen't be aliv$1dayQ #go out. YOUt2TomWmore A. AfnQ pausnQ5n'tL1get!to\,"Q they"Ge[!? !if half-breed deviLzF me z) gO$y ain't no diMn>Uthat's all(!&n.twe're safe %   we keep mum. But let's swi-1gai1ywa'!Qsurer}I'm agreeS# ry swore? , solemniti"%S talk,yQ? I'vBrd al " "Talk? Pit's just Muff Potter, $the timepReps mg!t,tant, so'sd7A'ersT{"ju9+Q samebgo on p reckon he's a goner. Don'gfeel sorhBhim,AimesqMost always-- *raccount thfA don %ur. Just fis 4 B, toSoney drunk onfSloafsFiderable; l-!we2do |MBwaysu&of us--pr s <+Blike@!ki?PE--heBahalf aB, onre Krn't enough4 2two"lo eEQby me?sqof luck!meBkite"me,knitted hooks%o my line. I wish w"geot$u" "My!&"n')W. And besides, 'tn't do any=;'d ketch{ AgaincYes--s>aI hate;ear 'em abus2 so the dickens6"he/fI do tooL)I[2say&toodiest i ip n !!an ver hung befoO1Yes=y+%7~Qif heK)1frery'd lyn^A'"it'" The boys]"aQtalk,Csit broum1. A# twilight drew #ey themselves ha6 * leAisol80Ejailz=an undefinp8d; z-m!clow;!irAicul+T But =eno angels or fairies i! tYss captiveAboys#\!ey~Qoften%!-- AcellYring andk qtobaccobmatche-;n gBfloo% rno guar"isl2tud /Qgifts Q smott!irL "s --it cut deep,lx@ 2cowASand t!ou2the Sdegreaid: "You've beenQy goo1me,--better'nw 1elsthis town1I d+forget it,Q. Oft1sayrmyself,I, 'I us\AmendMCoys'.Bings:Ashowfishin' place01befD4Bat I1 2nowjcve allaB oldthe's in92TomIQHuck b--THEYP)" '5-!them.' Well, "eBwful$"--and crazy  #--w athe on*1y I!un2 itnow I go:Qswingxiit's right. RighABEST, b--hope  we won't4at.! make YOUl dbad; yCed mh<say, is,p2YOUG !--m 3youSStandR er furder west--soSit; it'smBAee fw"lya&C5 Aa muP Rtf1non$ ae heregyourn. Gooda w"--"ly. Git up on Hother's backYl touch 'em. = Qit. S}`qhands--}1'lln1 th-Abars mine's too big. LittlBweak--buyQ 3lpel ^ 2shelp hi*.iy"."!home mis CnBream#full of se next day{e fter, he rt-room, dra@. irresist`,(1in,tforcing( to stayF| 1hav (1qy studi~a avoidpL"ch4FKTkelet !atdD Now,7#A us t** b--telleown waEskipp,h+sbegan--}AinglRfirst"as"rmtQubjec f  easily;ln! sdceased buP own voice;&ixAhim;qed lipsbEBhung!higads, ta]\no note of"d, rapt1ghaCR!on 1ale#q straina pent emoq q climax 5boyJ "!asdoctor fetcheETboard+"ag fell,@Cjump-P?1andCrash! Quick$Cighte}%Cspra|aa, torem1alloAsers gone! CHAPTER XXIV TOM1a gring hero onc>e>%pe2old-Aenvyhbng. HiR eveninto immortal prin;* paper magnyhat believe be Presid Byet,  * . As usualfickle, unreask9s % to its bosomBfond3 Alavi@XRas itb} !&Bsort of conducO&o"'s"t;fIp'#noJto find faulQh it.!'sv: of splendor and exul2 J2hiss were s?.  infeste=s Ddoomz deye. H!y aUcould', 1boy"tir abroadafall. Poor HuckiH 1samI"wrrand terror "ad*p7!ho!or* Awyer Qgreat V 6and4sor01hara y Jumight ldnotwithsta_A's f!sa!im+QZyq N.#4afellowDhe attornepromise secrecyqwhat of? Since }Sharasy![2 Bdrivp%c c'&Rse bywaad2lip ^been sealnsdismaler;most formidab=aoaths,a's conchuman race`well-nigh obliteratcXDaily2'"1madA gla\0Rpoken%!Vly he wish%1up " c. Hal"imZS nT 3be dVa othercY@ >+ He felt sure heMbdraw a+again until1man92dea,y@ Rewardselvcountryrscoured"no2 Jofound. Oose omniscind awe-inspi^marvels, a detective,1"upoSt. Louis, mo"ar@S$shhead, looksort of astouQ succ  3sZb craft!lyu=!ev1at ' say, he " a clew."n you can't hang a "clew" for#soZoEgot ]qnd gone8. s-63ure3was,. R slowdrifted obleft b Cit a"ly qened we"of apprehenV THERE comesVqrightly{1tru+26_)has a rag1sirrgo someqand digRV}1sur3is 9suddenlyU3one{e sallied+R Joe ~Bfailed of8. Next h<;!a %gwTtumbl@FI2FinRed-Handed." qanswer.m3 private-#op$e matter to >{kbtially`*Awill>  o take a hanwy enterpri RferedBtainnd required no capital a&u superabundanc)Rtime r rmoney. 'll we dig?" sair. "Oh,5.Uq." "Wh%D i[ e?" "No, inde  /a. It's-"in=y bicular5 --/ on islands,Atime@ rotten chests!envaa limbSn old@Bree,0c;falls at 1 mo aQfloor) ba'nted0Who hides iWhy, robbers, K urse--who'0? Sunday-school sup'rintendentsXIknow. If 'twas mine I Cide it; I'd9!nd1 a _&1o;1 I.l"do!XUf and leave it "ADon'y0Cy moA!No y)k,w$B#qy generUQforgeT 0q, or elJey die. Anyway, it  t 1a l "im gets rusty;!by- !bycbody finds<yx  Xtells howAthe 2--a  o be ciphCovera week because it'stBsign hy'roglyphicjaHyro--H"--picture>qthings,]Qknow,1seeTmean u1Hav1d got o"emas, Tom|!No0Well then,: Afind #61wan^ esbury itas or on a"ea t0Eat'sAsticTout. *!'v ed Jackson's I}iwe can tQagain/R timeSy' -1 up Still-House branch,=qlots of-StreesnAload1'emI#ll Htalk! NoTA81ichJ1forG _1'emI1Tom/6#llll summerf 2? SI#a brass po-a hundred dollar,"llAgray2 fudi'monds. HowaHuck's eyes gX1!bubPlenty4qme. Jus R gimmM Iand &noT" "AT8~QI betI:k!foff onDb Some 'Qth tw3Rapiec"#reWaany, hn2's <six bits oHvaNo! Is1 soCert'nly--anybody'llyou so. Hever seen on5E!No7I!nOh, kingsA sla|$S_"no5$I reckon@i!if3wasto Europ!'d.Qa rafr'em hopGr b" "Do1hopBHop?_-u grannylN2say>1did CShucks, IJ1ean'd SEE 'em--not V Yto hop for?--but IRQ 2seeV3scal &, 28$ aBLike!ol]pbacked Richar* 2? W_2his,Q nameRHe di'ny"1. K!but a givenIN!Bu.yiy like it-R 54D,Xa niggeroRsay--t Eyou  1irsn< S'pose we tacklj ) hill t'8side ofjrI'm agreea<got a crippled pickea shovel1setwir three-TtrampV*"hoCrpantingE]/7T downH2shaa neighbo!elq#- smoke. "ISthis, Tom. "So do I 2SayP$weCtreaF#re 1do 0your sha ZBI'll3pie5MU 3oda2day1Rgo toV&fSlong.0aQa gayrnbsn S sa"tod h AlivebM1!byy#OhP |any use. PapY CcomemFo thish-ybwQR2 daR\5as clawiIurry up,ZIjhe'd clea3out pretty quick.tn$buy a new drumua sure-'Whearts jum8ao hear[strike upoFyb"$#ed3dis <+Aa str a chunk. AtDE5Tomv -rxrbut we CAN'T b&. We spottv)AshadX2bo a doI$tF1the6re';"tthat?".wpAguesoyH Menough i1too5> or too earlAHuck 7ped .tat's it9Ahe. !'sDveryLLFaone upBcan'| 2thea1sidL$is` ',8C%Y#ofy%> ;2 a-fluttY&Zbafeel aP$'s!mNZ;'AfearTCturn)%uz'V front a-<Qa cha I been creeXAll o1ever since I DBI've=smuch soAHuck6y mN put in a de&# why bury. e, to lookGLordy!" "Yey3 7If !toRPpeople. A h1s b!toDintoQ'em, "L" "r2stiRMup, eitherjf2onet! 2.Akull !ay" DCTom!2wfu"it "is^U3a b,QSay, <lp~ d"trARs els?%,  $weY 5bconsid|/;dJ:The%. G  4s.c 're a dern sight worse'n  D lVN,lyocome slid rshroud,nUnoticApeep shoulder3f a:%!1griqir teet"Ra does. I Bn't qsuch a NPa--nobody 1Kt2but, dUtraveU 1 heu_! 1But <{#goCYthat fA norg 4v emostly M J#go5 Qa manaen mur, anyway | E"erODseen5 # except b--justLBblue'Rs sli& q window regular Gsl![Xflick5acan beu4h!cl~Qehind Irs to reason. Be1any2butAs us<pEDcomebP`f, so wl!us3our?7a<W$ df^#I it's tak@A y(qstartedffhy) TAmidd- oonlit valley bel[em stoodR""M&!, 4ly Ra, its S=s*ago, rank weeds she very doorstep chimney crQ)qto ruinq  -sashes vacant, a corneraroof c/!in1 boz*, half expectAo se. flit pas%Qindow n1ing 14 as befitte8 b:m y struck far of\Rthe rO Qe haua wide berth A*qway hom. r,Boods6 earward si_j Hill.4VI ABOUT noo$ 2 daNgG4tre=Ahad ffN"ir$Q. Tom impatien#go ;( Qwas mAablyc $alC%ly Lookyhere1 dowday it isbmentally ran%$V3eekhen quickly liftedG# a2led 3m--WI0once though,iE\un kKrR it pE conto m` a Fridap   can't be too careful8 A 'a'  1an scrape, :ing2Won a z MIGHT! Better say we WOULD!"'slucky days= $"ny BknowbP1YOUf2the:f 1it ;AHuckRn1said I was, did I? AndT all,.O_d a rotten bad3msdreampt1rat"No! Sure sign ofB F"ey{s'NotCgood% WL d*1ign  G,-2. A-_Udo is  by shark Zi Cdroph}5to-{ wplay. DuRobin Hg Who'sqWhy, he greatest m"evrEngland:the best. HGca robb Cracky, I wisht. Who did he robOnly sheriffs bbishop Crich2 RkingsR=9Q But naver bolloved 'em1divQ!upx 'em perfectly squa-h2'a'r Sa bri I 3youW[!Oh9qhe noblaaOT"R was.!men now, I can1youN R lick-can in ,a one he4iedD Ahim;NhEAtake!yew bow and plug a ten-cent piece"c, a mia3s a YEW bowIM /t7w, of cours.d if he hi| Bdime`Aedgepould set aand cr(2d cOB'll play!--nobby fun.AlearQF m% t\dfternoon, nowmy1casQ aa year=2eye#up qnd passs remark .1orr+prospect9Iibere. A5suna sink sey tookEway 5 aathwar| cshadowN6e,soon were buriAITsight8H(- Y On Saturday, shortlyV^  R bHnT4hadd&Ua chaCshaddEGir last hole*;]great hopeaGmere<oIqcases wz "pet#ad )(upafter getting down~qx inchep Y-O an some d1! aqand turZJt a single th{bshovel' Afail !isO a, howesDc+ BwentTfeeling jvshad notEds fortunehad fulfillep requirements <%of<71-hu(6. Rreach T 1{ so weirPv grislyBsile at reign^Rthe bAsun,{ bSdepre$Cbelines!dem"io he place[(3fra,# aHM Qventu7 ty creptD#do?!mbp_VT aw a weed-grown, floorless room, unplastx;aan anc CfireVs, a ruinous staircaser#er%ud hung E#nd abandoned cobwebsn#tl73ed,MC ened puls,s, ears ale\BcatcYDXRsoundAmuscAenseQready instant retreat. In a+Nfamiliarity modTReir f Qy gavm,Qtical#iYsted examinC, rather admi+[bown boƑ Qwonde"at it, too. Nexk1up-+isMqlike cu]!goqdaring ; =! abe but I&!--L,=Sto a 02and scent. Up\NBame 53qcay. InpJoC a@d mystery"qa fraud1 inCr courag4xwAH4n hM Lo go down and begin#1hen}BSh!" CTom. is it?" Huck, blanchingrG!..re!... HearDa "Yes:#y!(!run!" "Keep1! D you budge! 're coming p! tcr 1doo #stC./Rfloorto knot-hole!th bushy white whiskers; long hair flowed from u!hiRbrero dGe green gogglesec7'Cn, " Xa low voice; @#sa gr$Q, facAback{sthe wal12the=er continued ^ s. His mann\less guarF{0words more distincFLproceeded: Q, "I'!it oB 5andi,& dangerouDR!" grTthe "e dumb"A--to#svast su?boys. "Milksop+2his~ 2gasQquakeEwas O!'s +<!swag we'veAleftr--leave it( &'v !'B. No2!o i.f!wet south. SixfCmDfift5Qver'sDto carry%eWell--#r EKG m No--but I'd say(j2 us#doe9:Alook; it may5(" bTI,6!e  J!! ; accidentsi !B; 'tY$inu2ver9;i6f%l[+qh+qit deepDGood idea !thrRqwho walv Qcrossroom, knelt#, gv"qhearth-/atook o9A1bag Q jing?qleasantLe subtracW9Qrom i0nڼcthirty#Dcs for G"as+6for8e latter, #s <,(Q8owie-knifeUforgo<,bmiserig$an@. With gloaq ,A mov7q. Luck!f splendor of Qs bey%sll imag+!qETmoney/Ato mcalf a dozen rich! H sd1theaiest a !esrNDabother uncertainty as to w44to }2y nudged each ;--eloquent)r easilyRstood simply meant--"Oh,you glad NOW we'rbB!" mVTknife%Uupon . "Hello!" C he.?2sai4Calf-e"plank--no, it'sy!x,4Rlieve1--b`!w 2see<Kfor. Never mind, qbroke a3 [2hisWbin and i p3ManDU  rhandful8$ingold. Thejb abovebas excW cmselveY!as delighted.NwRquick4Bv$ban oldM24over amongst >#)5sid"a--I sa5#a 74agohaX|iaBoys'5andn X1the$b, look5ly, shookUA mut4 toM3  5use5Abox aoon un$edXA not *R larg!#wad2bou:Bbeen+dstrong5the slow>s+Qinjur c|5the" ain bliss3. "PardrthousanL Shere,p. "'Twas alwaysX Murrel's gangCQbe aruone summer,".stranger observ53; "vs looksPHI2 sa* sNow you $neRjob." Ʉfrowned. Se: "You# me. Leasx&k"lla A. 'T@ robbery alv\ REVENGE!"a wicked R flameBhis GR"I'llyour helpRBWhen finishednn Texas. Go homH<NT#anK3kidM1b %0$Sell--Bqsay so;ew  w dthis-- k Yes. [Ravishing overhead.] NO!- e great Sachem, no! [Prof[distress;1I'd---at least4 \Smean =but Tom, si%1nlyhad testifiSVery,mPDfortBAalond! Compan!be a palpCimpr5, h . CHAPTER XXVIId adventur4"ayily torme RTom's5s . Four times hE!s !atSFnd f6ait was:rhingnes5igers as  !hi wakeful4bEfAt bae hard realit'Fhis 1. AClay |AmornO(1ecaincidentsJND, he noticed%~dseemedL4ly Hand far away--someD ;3had#tworld, MfAlong " b3 :n i5him u itselfa$3onetrong argumentW Bavorj is idea--namely,sc quantDcoin2fAoo vkAreal Qhad nTseen !as in one massShe wa1all "ag"st in life,&Aimag= call re\Os7!s""  " were mere fanciful formCaspeech Zno such sumP qlly exiEpposed forf w"so= a sum as a 6z be found in actualy one's Ԁ" Ianotion treasurbeen analyze.yxy=Ansis 'a areal dgand a bushel of vague,id, ungras{`A. BR^K"en Ssharp!clearer (Vattri !inTAthem?h so he"`1himk1leae(impressi6q#no2a dream, a )isQsweptg:~ snatch a hurried breakfast!go2fin.ik e gunwalB a flatboat, listlessly dang+2t !ee3"atbs2ingamelancholy. TomC&2letslead up@1 su e did not do its1be 2q `o!xEGelloylf." Silence ab-om, if we'd 'a'Y 4lam' a"Vtree,0!go D. Oh$! 1fulF $,Somehow I most'x. Dog'd if I ." "What!K%Oh6ing ).U"en"QDream! Iymss hadn' down you8)1how  Q!xhf%Deams|2allpL#--()[tch-eyedZ 1sh l4 gom*!thR 'em--rot himm1No,_a. FIND! T /1Tom#llXhim. A fellerq ~3one Q for a pile-- a2's lost. I'd feel1ry shakysee him, anyw+qso'd I;2I'd,2 2z#'Aut--&s < 1--y95N'Bthat2&7/!ouAit. !dofreckonB"oQtoo d62Say--maybe inRs$'"Goody!... No, rRain'tfv5, is one-hort!wn3 y=#noq,@so. LemmkKS Here r room-- QavernQ know;Qtrick s3two?s. We cansout qui You stay hereU,zI come." DAoff c1caracHuck's~rbpublic#s"as G!an hour& EbestNo. 2 had# a young lawyutill so-. In the l&astentaa housek! 2#a 5 -keeper'sr2son  kept lock$)ll3tim82he 4sawq go int W!or}(A exct;Ymny particular reason> x1gs;Er Come ' BsityD8bfeeble98wVe6r by ent"Ding % ae ideaC"roG "ha'nted"e  r a  !re[) BwhatOYD'Kvery No. 2"$af&/Qit isE$. ?C youqQto doNE_(ngE2tell yous$do "at" icomes out J1los )ey e!a3?Qtrap Jbrick stor"`qet holdmdoor-keys1nip-of auntie'=,Bdark'"goS ry 'em. And mi,n, because he E#!to/|2tow 4spy 3)N#a "to 6youjyou just fGQ him;_Rif he 2 go >"1laca"LordyI !fovhim by myself+hsit'll b%", ov"He\Dn't B youRdid, b4he'A any' "ifU8n. 3o-- 1YouE<cBdark!. 3'a' out he coul f< #ber,&DOCs so{1; IP, by jingoesw"'re TALKING! Don'7|bweakenaI won' sI THAT#1TomQILy hung a e neighborhooo{nine, one watch52he PAat a ="K1thePdoor. NoF"orN Rit; n%aresembp2the 5ard=3te#Th promise]`fair one; sowent home`rat if adWAegre,Adark1cami AcomeT"maowupon he would slipthe keysE aclear,XmAclos2s(Tretiryan empty sugar hogs0welve. Tuesdac/&amE. Also Wedn/Thursday bbetter8"in$.sf0aunt's old tin lant 6 Qtoweldrlindfol 1ithh? <1 inp-'s began. A WB mid#v!upB2its1s ( !s 'd"s)!pu)*%02had Eseen+Dhad / }b. EverrV,3iou"Bblac5of SreignA peruQstill#waVbruptedby occasional/)#ofAt th<ggs1liti n~,=tl: Bowelx&wo2rs D A glokw>y.stood sentryrTom fel3wayZTjz  !of8ing anxiety$weighed iga(a mountainh$%sh?ra flashH$ C--it.f"en!buZO6ell- alive yet. I4s1Tomdisappeared. Surely"us Ded; &A was7`+!rtQaburst #D'Band ,G'1 In4auneasi L rdrawing-DrK a; fear rdreadful ] $/1ari1pecm0some catastroph 2Atake 1792not&to,]$heUable to inhale it(imbleful- TK$ar Athe beating. S1Tn"ofh%tEby him: "Run!"he; "runAyourt!" He needn',Q repe drit; onc ;#mairty or forty miles,RrepetCwas -3. Tj!tor  "J1sheʁerted sl#1er- e lower en/the villagxa By goin its shelter]Sstorm xrain poubwn. AsxJ] 0AHuckwas awful! I t3twob keys, aas sofI R; butsto make of racket=rdly get myRso scBT1bn't tuVck, either. Well,?!ou.Ticingkboing, I tookcthe kn!A ope@e !H&E@R! I h1in,!sh5fP, GREAT CAESAR'S GHOST What!--whatQ'seo1steFonto's hand!" "NoAYes!A#Ras ly s%asleep oARfloor4?Aold 5"ey his arms sprea[d1did Tdo? D0Bke u91 budged. Drunk, 2. IjUgrabbBAowel F+usIX'a' thoughS33tIx. My aunmby sick3alost iM A"Say,1box!diw@o_00.-}44 /8 .:ea bott|Sdtin cu 6 by(!; I saw two barrelslots moreUs S.u2now'!Fmatt'3at R roomTr!it mG o1ALLaTemperTYs have got aeC, hepd[3Who8u? But sAnow'Rightyt 1timg&ifqb's dru""Ithat! YouiQshuddIEno--"nom5And-B not3. O1  alongsidf, :u'< three, h  -&@oaTp*for reflectioZ+ S:38oky82les#tr 1 an#e}wwcR Joe'5'reQscaryhw eSnight# bp"su2 go  "orbwe'll Gbox quicker'n nJV<the wholBlongj%ido it 1too3you"<Ather4$"A= bill. A.v!to{"tr0Hooper Street a block EmaowWRthrow:bgravel=e0 3bfetch 1T"Agre01goo'Awhea*B"Now,  T's ov*bgo hom2gin" , %Qcoupl" +2"go61will youe!I TJ]t5#Ryear! Ev "damF&st2allIawooo[nǑ' hayloftZTlets nqso does pap's nigger man, Uncle JKA toteex  B wheahe wan`" t}JA any I ask him QzQves mGiBsomeBto eWhe can spare  !ik\r, becuzP'[" aL Bwas 3;him. SometimeQset rdeat WITH/1But  A body'sv!thwhen he' sr: 1n'tBas a steadyd-wXK,q"le.?A com hAS's up2'!, Cskip, @*."*IX THE firsR1earQ4QFridan glad piecnews --Judge ThG's familyL*7- before. Both 9o &Bsunksecondary import, and Beckyv the chiefCboy'="esSsaw h%tad an exhausi&1pla "hi-spy"c"gullyu!" $da crow2ir S-mate1day^scomplet[DRcrownsa peculi9satisfactory way:!ea[Aer mK to appointnext day foUlong-z1and\-delayed picnicfshe consentechild'>boundless;,Xore moderat.R invi*slAsent^s sunsettraightwayA AfolkLn4Ra fevapreparu(bpleasu6qanticip6's q enable90" ap dntil aQlate houh%%:vt!ofd1ingO4's s!an(ahaving to astonish1nickers with,2; b\3was$"oiNo signal c'vC. Mqcame, eBallyby ten or eleven o'cQ giddq rollic!c;/!ga  4_s -ro.UQustomelderly peop2 ma#;p$*!ce2ren@sed safe R unde9AwingAa feh"1dieeAe# gentlemeqtwenty-  sreabout1oldqm ferryboatQchart;t7! g<.flJ9r main sg Cladeprovision-baskets. Sid1andato mis/ fun; Mary remain!hovBtainT9nTMrs. 6 "tob, was:d7?oBback lIaPerhap H Astay   eRgirlslive neah"-lQ,c !y aSusy H,q, mamma+AVeryO. And mind !bey%yourself3bmR9T." P,"trQalong` 1: "Say-- 2you8 ntQ'Stead 3Joe2's *SclimbE!up AhillDstop` Widow Douglas'. She'll ice-cream! SsoJ"os Ai!--|+Aload8"it4sH#be t&!usg"Oh[ K/2un!?=nC%ed3But2illA say How'll shH6Rknow?^Q girl!edidea over a1r reluctantly(it's wrongK3--"shucks! Youg ! k REo!'sQharm?_sN1nts[!hao '"Bsafe4I b 1'a'" 6if IAwoulT splendid hos"itaa tempP 2baiand Tom's persuas02car+S q. So it>u Qay no? anybody?t 's programme. i1 itv(!rrJM)^7+''XAgiveZ ;took a deaV%s!ofAs. S"het&I"tolmfun atAnd why sh1he 5!it: h"qsoned--/c! W, so Ti2mor l^>o-night? T6QrA eveV 4out6theM1, boy-lik2 determined to yiel +5Aclin Tnot a{9t Qk of 0ox of money5  day. ThreeVbelow >EboatayAmouta woody hh& 1ied|3The* swarmed ashoreAorest distancescraggy hxs echoed farQshoutDand 95theØ1get!ho " Egone=y mry-and-barovers Sggledao camp31ifi th responsible appetitesVt destrucHJ" "L>2 feoC!reBFFing ( 2resbchat i2shaspreading oaks. BAsomef[ed: "Who' the cave?" Ever!wa5$. b of ca \Bproc   a general scamperhT+x0' hillside--an opshaped likO A. Its mass׎2ake&& !unbarred. WK small chamberM Aly a2ice" w0by Natur% solid limeston w 1a c& rweat. I1romJmysterious!t %erdeep gloom/look out upr!grKC'"sh--""un?1O6!ve!UDly wore offdQrompiDL2ganjIcment al]  Frush2ownit; a struggugallant~f1ed,62ursoon kn)/or blownlad clamop and a new chaseB3allQ havex(ndlrocession (!fiv(eep descenW4ain avenue,p!fl0qing ranGOVs dimly reveaYf!llqrock al5t1ir er of jun sixty feet overhead. Thisnot more than "en?Cwide?&nSstepsy%ill narr crevices bran@!from it on--for McDougal's`Rbut a%D7imepqraft.  blready.w's went gliW# p a wharfCAhear!noise on board(   C3as $usually are whornearly cto dea.AwondnQwhat 1de:Rstop w<<dropped her88'put his atten *rusiness`Bclou dark. Ten eKf vehicles ceased, sca) abegan ,#nk !ll 2foot-passengerkp |)1 be$itt)l <2lef| = qwatcher qthe silae ghosts. E  Swere /;/ Qevery$A$it1see weary long 2:b)u3},ed. His faith wasB4bing. Wvy use? "reA Whyk)C? AFfell~"ea;&l U instantQ Bdoord*^Tprangqx8$ Ti two men br,%onW- z Runder!rm0 ]Cbox! So sto remoE.Bcall Tom now?Ibe absurd--1en  get awayq #$anc7EDNo, c stick1!ire!foAthem<k5truP for security^discoverQcommuG3Rmself#*!ut Eglidg 2beh!e men, cat-like,qbare fe~!ll_E the8*5far&!noqbe invi  y |GP q blocks0n^ left upJ2ss-8y?"E,!qcame to% !pa}1Cardiff Hill;5Ctookfthe old Welshman's Whalf-m(hi-1hes!ng Qclimbward. Good, 5*VSdury itold quarryC) "stfa &-3on,b summixy plung.T7 1run 1ook whe pistols wekf#I Astop$t..Scome now becuz 7# 5it,7 ;I:lF3 I x1wan7runo}m devils88! i,2 deUph2hapAdo l?  Byou'aO1a--but +b's a bM!e2you:Ryou'v^Fyour=A. No"y U Adead--we are sorryC|#atCee wiqright w!toq#ou6 Rm, bydescription #weOaC = !we?RfteenTnAm--dis a cellard2was(sn I fouE sneeze. It wHmeanest kin16!lu " t3o keep it bp use --'twas bjt!it(#I iR lead/ 2my :3theR star-ose scoundr Q-rust*6! pbI sung"B'Fir!!'cblazedtt5he aqwas. So".  2offrjiffy, svillainwZ4N  a%oods. I B we eatouche|mydgAot a y4  bullets whizzed bdo us any harm. Ak!we9 the sou$Tw at chas2entS }!tio5_>ctablesgot a posse fH1offuV R bank&Cit i+qsheriffaa gangE bea8}"My}!.\XAsh wz"A sor2 ose rascals2H uadeal. But you cy  dRlike,euY2ladQpposetOh yes;JAown-(and follc AthemSplendid! Db2m--d BOne'B!olfdumb SpaniQben a*;once or twicQt'oth[sa mean-", VTP men! Happeng Dthem1R back2one 2andoQslunkR. OffAyou, 8ellfA--ge to-morrow Y Y"2depS!1. A__qe room   : "Oh, ptell ANYbod bR! Oh, eAG_ gByou -N%credit of w:1 di"Oh no, no! DVA!" )B men g  o said: "T2 7w Cwon'B2whyoia#n?  explain,!tothat he al Aknewn w"on3 Ahose!+4manUv 2anyHast him Juworld--c& for knowing it% ?d secrecy3morW1How&se fellowsA? We!ey Ding &usea!t #ramed a duly H rep -S lot,--leasyrsays soI5see)ragin it@ =much, on #!inx }3tryQstrik a new way of do7"ay u ' I,BleepQso I r  up-street 'bout midf a, a-tu~fg - AI go old shackly brick store by WP1, I3 Red upO%ll#2k.  %bcomes fQtwo c B"slf0%lose by me,+1unddreir arm'( V y'd stole1OneAa-sm3b one wah, !ri.s\ !me"igACt upBfaceIy og 1ig - eA, bywhite whiskerQ xT `ua rustyo a." "CmDrags ?Cis staggq5forA !n ?5Aknow Qhow i#msCIQTJy o52you<Fb'em--y eiO&to| awas up8y sneakedsso. I do$!'4+1iddDstilG& $ d:# JgVe begK%heX swear he'd sp;rr looks'as}2two  What! The DEAF AND DUMB ma8ia4at!!'aderrible mistake! H63his.jC Ru>sthe fai+i2 whNK smight bQ1yetdtongue/0@$to in spitball heFr do. He several efforts to creep!of1scrape, R's ey 1mh["bl5 9. P  ,be afrai!me 6 hurt a hair o qr head v3=I'd protec !. 1 is ;#leAslipout intend+ D. up now. YGEthat4 K q. Now tAme-- m S it i"3 -- a betra Alookit!ho51eye Qomenton bent over 9ear: "'Tab--it'sO'1 Joz ) gjumped chair. InWQ 1ll ,pe 4you{m#2ing#and slitting noses2wasown embellish 3men3tak1sorYrrevenge\"an #! a different matt242q." Dur7B&:alk! c Y 1 sades (h2hishad done,_ C#!d,^a7eqexamine,its vicinity AmarkP Qblood11y fnvut captured a bulky bundle of)Of WHAT?" IfqBwordBbeenn 3hey leaped withcqre stun0O!5AblanBlips]!-were star1ide3Qreath$ended--wao! )tarted--st?+in return--1QRgs--fiv1ten%!end i<f burglar's toolsY4,G' bMATTER sank back, pan5deeply, unaEably !eyt/m gravely, cur!V--and= NYes,appears to relieveB Butcdid gi# 3urn9!YOU expecBwe'd2?" a \H a inqui *Q havenfor material$ aa plau4#-- suggesteR?elf|!boadeeper --a senseless1y o~dK^/!noq+ to weighiokventure he c it--feebly: "-+T books, maybe." Poortoo distress!sma Cqed loudfjoyouseb detai$.Ratomy1hea Bfoot%b by sahat such armoney in a- pocket, q it cutoctor's bill likM Aadde!olG!p,y2re Z !a5Byou awell a bit--no wo8aqf #of8 Z'.*!ouit. Rest6Rsleep6Afetc2all_#brritat<6 heaBgoos!ed{! a)!icM!esf"aroppednBideaarcel b%.K%2Avern]9. c talk 3XW ahad on%rought i3"nod however "ha"kn/ bwasn't!sot%a qoo much:Helf-w!Bu![ 4'2gla@. Shad hnt!no4 beyond all qusnot THE,Oo mind was at rkexceedingly comfortaban factC Q drifbjust iD dir_`Anow;WA musw ;) in No. 2 zy!ilybat dayhATom a seizeo3golS \1out !or fear of interruption. Ju# pYea knoc9#l ` 0 hiding-"noX connecte!n remotely1lat admittedtRladiev gentlemen, amo*Widow Dougla Tnoticngroups of citizeny bclimbi2the hill--to 7 S\Qnews xBprea h(h the stor$Z'he visitor#gratitude"erbrvatiooutspoken. "Don't}a# it, madaGre's]z"'r beholdeQthan -Tre todmy boyc#he ballow Atellsname. WAn't ] v2butim." Of $&uriosity so va|"be1d tV#in )twa to eaAvita'mm be trans }Dtownb refus"BpartjCcretorall els> qlearnedO  I "to% rJ9"ypV8a noise L#Rake m:rWe judg0j2worMgQle. T"dlikely! !--Shadn'CoolsBao work pAhe u1 waGbyou up4carDR? My BnegrAstood guard sr houseeLmk By've`ack." More!C cam"beD,aand re G couple of hours more.G tSabbath d 1vacecQ1 waVly at churchQ stir1Beven` canvassed. NewV#n Dsign5two! 5yetA#edthe sermfinished, Judge ThDu's wife alongsidRMrs. mZQ as sI6ved1 Qaisle;-BcrowqIs my Becky>all day? I !edhB tirQdeathBYourS(RYes,"a;!tlp Sok--"T"sa2youIQnightEE/!noa kced palh$sabba pew,as Aunt Polly, ing brisklwa5pG by.64qGood-mo), A 'got a boy up missing.o1 myD!st Qlast !#--7you. AndY $'snvtto sett'q  "he H andar than7d. "HeB$us(`b, begi !to uneasy. A marked anxietCc's face. "JoeVSK?Y1No'b"1didqsee hima?" Jo="wa!su7 "ayWQpeopl amoving %ofWs}3aloD a boding Aines&k 1 ofzy counten\'of!if  .!On!ngfinally blurt2his  !we4ill Zcave! swooned awa f#Ao crrringing'Bands alarm swept/lip to lip,Agrou 2to ithin five minutesCbell fwildlyN6he "upF/EJ insignificanD<xforgotten, horsesaddled, skiff4man !!rd#ou1bef{nDrror was half an old, two h)dbcere po6aighroaA riv gC. A Blong091nooge seemed emptydead. Many women (ed9#anPa'q They cC)2too"wa/"l N;z#. tedious022ews/>wA dawqt last,   was, "Send candlesrsend food."4wasqcrazed;L{, also. sent messages! p encouragVtWaonveyereal cheT3 ]3h4'BdaylpQspattRwith -grease, smeTBclay Bworn7#HeJHuck#behad been provid%3 hi"Adelic feveruhysiciano4allrcave, s  ook chargg "ient. She ! s B herb4,'ahe was@Q, bad;7%in,fBr Lord'sKu !R"a \neglectez"aik good spotvQ-`"You can depen(>2at'xAmarkdon't lea9Doff. He n3does. Puts"2ome)0$on"re\Ccome(Bhis TA" E AforeRparti3jad Q ctraggl< bGllag strongeswEthe qcontinuxAarch gBnewsbe gaineBness]7edhansack71vis;Y S cornAZ ,o#ly#edCver one wan4z"pax!, [wcseen fE hit Bdist@qhouting0-shots sentr9:)1berrthe earthe sombr Qs. In&ar1sec21usu. rtravers/rtouristI7s "BECKY & TOM"DbtracedbRL=2cky'#Csmok near at h =1-so!biqribbon.   recogniz'e%>4hover ii7crh. !ofiAno omemorial )@be so precious Q this parted latestqliving h*RawfulpV! c.3SomzAw ann/a far-away speck ofzWglimm*&rn a gloKDshou)~fAscor'men go tro:1dow echoingz1aa sick; Vointment always f!e  a 0 donly a2r'st ree dreadD2^ 2s d#0 ]% jt # a hopeless stupor. N 0_;accidentaly, just made,groprietorS ++Tiquor)premises,qcely fl3  public pulse, tremendou)1the 2 wa5qa lucid%Rrval,lasubjecta asked--dimly 7" worst-- W.! Thd sinceaEill.p.h "stSup inr#bild-ey1vWhat? W)$Lm;lace has shut up. Lie dV! a&&+!me!" "Only02 meQing--&one--please! Was it Tom Sawyer TT burse>"Hush, h !Byou 5 must NOT talky'Bare very sick!zAn no5 bu1rF t powwow if i the gold. Sctreasu2gon Ugone MmJ$e bout? CuM +@TR.2houoD1dimu/7$3min^uF the wearrhey gavhh(|?&. o herself: "TNJh/poor wreck. find it! Pitysomebody !KR! Ah,j!PDAleftIThope ^5or strength either, to go on| E CHAPTER XXXI NOW to%1 toZ's shareapicnic*By trNathe murkyqSVr ompany, visit familiar !eI$--adubbedw rather over7ptive nam uch as "The Drawing-Room,"Cathedral," "Aladdin's Palace,"\so on+hide-and-seek fro^u b AengaBn itzeal until!exertionDrow a trifle Asomen6 a sinuous avenue hol+-/kf #tangled web-work of Idates, post-office addrU rmottoes~) g walls rescoed (in ). Still Uand talk:CscarcelyM3nowXK"ar!H! w+tq. They b2ownPK!anphHA she[.ed,yD   2 a am of watrickling over a ledgkQcarry k sedimenVuit, had Qslow-y 81gesm3= and ruffled Niagara in gleam5nd imperishabAone.%squeezed his smallP h in order to illuminate i q's gratAtion rit curta,]jnatural stairwaywas encloZ etween na9ce the ambi Ya r"bd him. respondehis call,1hey_ " aM-mark for future guid oqir quesAey wD, "waBthatXAinto depths ofL  2Bmark|g$ed?( of novelties to @!the upper worl. 3oneQa spa s", L1cei3muld"Rof sh[stalactit" land circuml.c7 [' H) 1kedG" OQadmir_ +1lef~bnumerous Aopen?0#toi artly bm Qbewit2 sp}Rbasint(dncrustsa frosta glitt crystals Amidsa| supported by rfantastic pillarsR# ?Q8"joof great katalagmCtogehe resul1eas  Q-dripqenturies. UnIZaof vast(ts of batfp themselvwaousand#qa bunch(s+3urb flockings 4 byrs, sque"and darting f  FCkneww4the danger%isqconduct'#'snd hurried herthe first kDffern qoo soon)Q a ba#Duck gGmits wing ,ugitives plungnevery newr#ag!atRb got r5the perilous 7 ubterranean lake,,a stret?its dim 3way !it@ p!lo2shaQrHe wantLexplore its b;,0t conclur!habe best to sit#Ast a9TR. NowO1timbe deepA lai&Rlammygb spiri@*Why, I didn't ,it seems1so M gaI hearY!ot+:m bthink,#, 9Hqdown beLhem--and:!n'=Qw howK/north, or sou AeastQwhichit is. W8Dn't >bm0Cweek9!ye"qwas plaT"at cf 2 beAthei8 3dleAnot cyet. Aqime aft"isZ< P CR--Tom qgo softlo for dripp`BaterZ3 aMf satR Bothcruelly tired, ye CssMfuld go 73 .Tom dissenD F2not>!st8D !ey'2 fae-bin froPBthemTrclay. Toon busy;G'1aid* 7Atimeh^broke the:AI am DAungr5J!me!!of . "Do you remembP"?"4he.Zbalmost1d|'s our wedding-cakeMSYes--!asTQas a 6li"goaI saveA&"us to dream onyF1way$n-up people do'll be ourSS"pp<Q sentP6  Bdivi#Re cakw 3 atT2appetite,Tom nibbled a:amoietys abunda"co"RfinisfQ with. By-and-byGtey move on 'yilent a mom"qThen he:z1can/ rit if In1you k#?"8'4pal}`.Qnw 1stamB!er Bre's ink. Thatw " iClast6 ! gave loos)S&il#diA{to comfor$ `$AtU!C"?")y'll miss uKChunt4rwill! Cl"!ithey're hun Ror us,laDare.Bhen $S"Whby get o the boatHM#itbe dark then--enotice w/1n'tnbIaanywayNr mother8you"bthey got q." A fBened "inT"brfSSsenseRe sawh made a blunderw% _hs2hat08! Tebecame$ndO uful. In a new burst of grief21 sh  ^ g"ingQstruc@s also--QCR:half spent before Mrs. Thatcher discov M""at/Harper's. 2 GR !biqno doub2:)Bwas a !on/M $on1it; }!%esso hideouswbat he 2$itG!waa5ger1torX,K [/s A portio0h z was left;Q Band ,.~dhungriD poor morsel of food whetted desir c : "SH! DiuAthat 2othyV " aq like the faintest, far-off. InstantlAanswYul|/d M)Uhand,@"*gr7 corridorG0s4. P  s(R ;.BV%Rappar a BnearU DthemdTom; "coming! Come"-- b now!"54joy,rprisone overwhelmFT2spe[ %moTswarmingfrantic half-clad pT, whowA, "T2Vut! t F " Tin panChorn 6addAdin,#Qpopul massed g}*!to ver, met=in an open carriage%"byaitizendrongedA it, joined itsWRmarchswept magnific? Q main et roaring huzzah* !was illuminated;~Pb;ar3est(t!tt w0Cever_ 2Dur%re firsthour a processars fil rough Judge-'s house,f<n"sa+,ejsqueezedt'", to speak butn't--and dr out rainiY"rs veK& c1ppi% romplete nearly so5[ a messe AdispSdkH#2cav2!ldv"!orL 1usbNTom lay 0aa sofaXWasuditory71him=1tol~A his!ofwonderful adjB, puR+"inAstri1add adorn it1"al JCudescriptOahow he %tent on Bexpel;7'Btwo Fs!as0* ARa thi^aullest4tchM3wasT"to he glimpsed aD speh6Clook*A day ;"2lin Oit, pushedshouldersa small hol1sawbroad Mississippi ro by! And if it5 F0Rappen#beVhU@ !se* 2at %oft/d[ %4rore! Hec7for/I%j @ @"imoAo fr.r$such stuff, $  &# w Sto diR~?ɆU laboher and convincg %"hoe@Q died1joy A she  actually>lueG he >1wayI& !anbn help2 ou?gAat t]for gladness+some men a8Qskiff cTom haI!em G33con rddidn'tE=qild talfirst, "#,"Dahey, "Q"$re]2les> bhWavalley cave is in" n m aboard, rowFa""gam supperqGthem rest G 1two4hreDdarkn.Fhome. B!day-dawn,=q handfu% Ahim Rtrackg,5R+twine clewyctrung +sformed A. T+# }BtoiluPi~Rbe sh3'ffA9s#Foon " y bedriddenFf}5and~to grow mo7 QBwornP ><2got,MV, on e"wa- {a"as  `"di8her room1Sun34she$ash1hadT'edk1wasaillnes#$omi of Huck's sickm Rto seoAbut be admitDthe bedroom; neit5- Uhe onB or H-x-bwas wam8; s introduce no exciQtopicL Widow Douglas staye1thaKaobeyed/Ahome? the Cardiff Hill event; alsoDthe "ragged man's" bod-%  ;6 erry-landing2had7Adrow&\trying to , perhaps. About a fortiVrescu E, he a visit:yi#plGrong enough!toc2Tom'Aintel:.., A waswm,t " ome friend4Tom$2ing>2oneW him ironicsqn't lik%!goHRy10he thoughqRn't mqO said: "Well,1others jusuQyou, )3I'v| ast doubt.)Ave t3caraat. NoAwill !atA anyH*)*Because Iits big do $atb boiler ironP weeks agoriple-lockedO"goTbkeys."tjite as a sheet.1at' matter, boy! H,Arun,qbody! F=aa glasL1!" "* gba!!thJface. "Aqall right. W1a M#Oh,'[cave!vXIII WITHIN a fewj2new1spr.%b dozen b-loads3nq @!to McDougal'sE1boatll fill#pak"s,5 CSawy[deDD bor4. -bbwas un4,%rrrowfulFeCelf sqdim twi xD lay^1ed )@,)"hiQ closrthe cra} "thif his longing f+dfixed,>clatest,,s cheer CfreeQcoutsidwas touchedd v-tick--a dessertspoonVZ2fou&J3was fallingsPyramids' Bnew;Troy fell#this of Rome7Claid(bChristtrucifiethe Conqueror creat British empireJolumbus sailEqmassacrqLexingtons"news." K2now3ill=4be #whBthesy3gU"ll\Bsunk2then| 3of ,w "raCw;} ]c thickof oblivion. Hoa purpos Aa mi=? Did thisR pati$d!fi ousand yearsready forD2flihuman insect's need?has it another important object to accomplish  xcome? No .Band 2hap alf-bree1out ^>Qprice8drops, bu3a(e !t patheticslow-droppVBater@!hey8e1seeb!< .b's cupC6Ts firde list2bcavernmnQvels; 4b" cannot rival i 4xKn,VB BcaveI flocked in boatsfwagons|3towAfromthe farm1 hamletsseven miles|I >1ugh%irYSrall sorAprov~NsUO/3hadN! as satisfactory a%. funeral y"av&1 ha Y%is5Ir*Bgrow[#oni#agovernIrcpardon5k qlargelyT2ed;Qqtearfuleloquent meet<$he#a committeJCsappt!apBo inrRF%1ingjSwail timplore*be a mercis trample $ut| Gfoot/h0"tokfive citizenwt&+idat? If. ASataC Cselfe$/!ofl)SlingsRto scribblir names-a tear on itLir permans impair Rleaky{Q-work"2TomAvHuck to& gave anRtalk.3!haw1rneQ aboum'the Welshmant, !is}Yq>s!? old him; R  5he TS talk2now's face saddenedw bI knowJit is. You got5QNo. 233 anbut whiskeytold me itAyou;aI justp must 'a' ben ]usoon as\'fA bus|"em8q hadn'tt)ney becuzdl!go!me ! w Dand aif you!musdB els's alwaysG4we';uget holT swag, Huck, I-It-keeper. YOUF -" I"DD.mI D1youHAto w   yes! Why, it seems!ag#8> CI folleredK-YOU foll1him2Yes]2youqcmum. ISS"'s;Q2himI don't want 'em soV Bon m me mean 6s. If itpben for me he'5V ain Tex@&w,.ns entire+%in-5Aonly* Ofit before.lp:,'!ba@ main question, "whoever nipp "in(, --anyways it's a g.afor us;G wasn't n!;Bat!"Lphis comradekeenly. "Tom,agot onO twQagainti1 cave!" cblazed. "SayM FgainT*"Tom--hone 1junf--is it funV!strEarnest;!--^$as# f ! ILlife. WiF#go"reAhelpZRit ounsI bet IxE2 ifwCRe can5 ouV  6"doDwith dlittleBatroubl the worl?aGood aat! What makesRthinkoney's--2you;rtill wef!re#we1mit I'll aSto giVqmy drum71&Cq I will0jxGT" "A!--va whiz. [!do1say "Ri$w,say it. Are*4IWaPave? I ben o-cpins a,"oradays, tbut I caKlk more'n a "--IAI$.">q G$qanybodyRm 1go,1^Qmight,Drt cK]  N ; ,Gri.bskiff.&2flo] ["re I'll pull itj_by myself A neeturn yourq$Q over2Lw2artA offm@B. We"bT32eatour pipes bag or two T%kite-stru ese new-fp!thA ycall lucifer m+rs. I te, "'s1imetbshed I2omeD" Aqaafter the boys borU&) #a W B whoU Cbsen(got undec^were sev` below "Cave H%," R: "NNis bluff herJ$s!Balik d5--no houses, no wood-yards, busheRO"ee5whi4 Rup yok#'s4 landslide? Aat'sof my marks. We' aashore.yG97inU're a-sta#8'6ahole I bout of~Qa fispole. See#4can.Biplace abou$P proudly mar"a clump of sumachncc: "Heare! Look at i;athe snuggesDis country9 "ll2Drwanting/ a robberrknew I'rto have1ng 3thi1o run acros]vAther!ve1it :&2'llit quiet,1let< K:aBen RoU1Cin--*$ o@ be a GangC #lsj* any styl it. Tom Sawyer'sA:1sou$plendid,L?  "it3doe And who'c1rob/aOh, mo6. Waylay people--W$!lyV2wayRnd ki "No-@Q. Hivm# t4y26a ransomUeWhat'sCMoneg3makR<y can, off'$ir{ b; and you've kep.mqit ain'2!seV2. T!enkway. Onlyb women1shu`9 2men5Cm. T5Fb beautqnd rich awfully scaredgt"irI!es5sZStake t|+"nd4pol7y!3 as3 ass --you'llMany book. cto lovXfter they,m s a week y stop cr!eRto le'i4dro Ay'd  { Raroun2com9. It's so insy real bully' $ Ibdbetter'n a piratQC"YesF&^7way Cit's6"!toQQccircus\!at{@y+ %1andaboys ew)#ho\  $ l0Qy toi#*a7tunnel, then madir spliced 1 fadK$a on. A&E z'%pr)Tom felt ams quiver him. HeQCragm> -wick pexSon a oC cla$De wa; t2ox*_ d flame struggl)AexpiQTf!ga4 o whispers,!foS-d gloommcoppresBirit yYBpres:ar 0LQuntilE reaAG,Wndles%rhe factx not really a, BpiceLa steep DhillFirty feet highW @eW+2Now@ AshowY.  Ae he+sa aloft+` sNAorne7ban. Doi!ee? There--0big rock over$ S--donKp}3TomCqa CROSS2NOWZ '{ r Number Two? 'UNDER THE2,' hey?  2's eI saw &# p`+r stared Qe mys Qign afB 6R shaky voice:qless gi} " o QWhat!>treasureVRYes--6it.'s ghost is  ere, certain."B 81, nKB. It Q ha'nk8Qhe di,Away /%2mou!Vave--z ChereS \wouldy#ngkJ 4"ofV #so & &omi3feaX5. Misgivm!ga+d}CR mind 7Lc him--)ym$Sfools m@of ourselves! & a 8|; Z!a = !R poin`#wen1had)teffect.I6_"atA #so/EluckxQthat {7 isJ VpS AhuntG4box5wen77c -ink of fetc4theBbagsFS@B1soog oys tookr1 tofm a rock. qw less w!#gue*<,Q2<  `3'reOEickswhen we go to robbingNSe tim hold our orgieCsre, too ful snug9 ) 0CW@ bI dono P%;#ofT% wWCto hem,] /"ing!a Btime getting late, chungry`We'll eat0bUwe gec6y Temerg4/ 0ed warily f 5oast clear!weZbon lun$in ! Ac sun d#Bowar[Rhoriz] Ay pun  kimmed uDe@KR2wil1chai 91ilyZ7 alandedI3tlyd4dar7c"!id!in 1lof the widow's woodshedrAI'll.3 up*ev1 it(Upa?!unna!ou"od!.#it"it=be safe. Jus 3lay\-  Atuff1 I nd hook Benny Taylor'swagon; Iqbe gone!"nuHe disappear#re agon, putcBtwo Rsacks!"itA"w"ld,Qon to!tarted off, dragging7rgo'|h+"'sh &tgay9q fy1 on: Pp~ allo, whop  nLWGood!1me,, !ar&Gpingy*waiting. Hhurry up, trot ahead--Ahaul~Vyou. qnot as b as it4# be. Got b;in it?--orQmetalO+4tal2Tomjudged so9 1boyGthis townAtake0$%sol away1imeNing up six bits' woraold irNS sellh foundry thaz3y w; 8wic'$at6 work. But that's:4Fnatux ",  '!"!wa1to [$Ch#wa$ever mind; !n&% !E'1uckGRf=hension--for heub} falsely accus; r. Jones, we haven't!Udoing Rlaugh!'-,ymy boy.i that. Ain'bgDgood+%Ye_"sh"nA &B to #yw%"n.-(n,%to be afraid for?%is+J3not+qly answ"!inq's slow$ ~1S,;into Mrs.# dXeroom. 3 le nae doorz3gwas grandlyn1bod4tof any consequenceu2&~ ThatchersQkB Har3the!es, Aunt Polly, Sid, Mac he minister3beditor-qa great0&)?all dressX bAThe a recei;<RBartiJdany onP#we!iv such loP Dare cov Bwith:and. 2 bl[ rcrimson rhumiliaUNHv u at TomFAsuffhalf as muchQboys "however. Mr. Bn't at home, yet, so I gave him up;5$astumbl2anda Qat myG"br "Bin a(0!An1B did3Sv 1. "TyNr." She cto a bedchanRNow washI% y. Here arnew suit$ clothes --shirts, socks, .UCy're+A--nobthanks*&--b! And IY%Bz y'll fit boyou. Get Dthem await--Bdown 1youRslick .3n s \rV HUCKD! "we can slope, ifu'Ra rop" high fro"Shucks!D d|%IQrthat kiUfa crowd.,^(8 athere,a"|&4! I"an!miRA a bX'Scare Q" Silm .vhe, "auntie has been  afternoon. Mary(your Sundayb readyU 7aen fre  . baAthisus qclay, o;ra)Mr. Siddy jist 'tend toT own busiO#'sis blow-nb`It's one2#atx1havtime it'sF 1andl sons, on=uw"Vcrape they helpej9&of4'Rsay--h, 21, i yk+wK  Fold 2is to try toq#_ J( C1to-,overheard himvbto-dayvas a secre"B it' lRof a (XE RknowsSL##1allf!trro let oz!doVQwas bqHuck sh !be!--xn't geta yG1outAknowS"AwhatA'zAtracYAbbero'V  a  BovercurprisQ#AI be4 drop pretty flatWbchuckl aa verygEe aatisfiZy. "Sid, ib2tol3Oh,:Qwho i# . SOMEBODY told--3 @ZJl_ Dpers:Cmean:R to d XI7<x !you'd 'a' sne sn9EtoldZ)0)Tdo an{21an !y&~mo_Tp(+J >  cones. X$nn:N  says"--Dcuffed Sid's {i  0k8q"Now go"if2arenQto-moFit!" Som Autes'GSguest a WD-tab[$ua dozen@/"pr!upittle side;F1e sixQoom, {t1at r vAbproperl Amadev4 speech, iY!!heOkNHB honPQF [T was Dwhose modesty-- A: fo)sHe spru+{a'Er adventu finest dramatic mann_ master ofDthe B it !onJs largelyFerfe8 as clamorousNeffusivechappier K+amstanc  &, ( air show of astonishment,AheapF compliment2 so: ntude upon)(a he al/Rforgoanearlyv l܎K!Amfor%this new2 K :k set up as a targeh  \gaze laudations <"sh<2giv s a homesher rooave him educated;Rcs-Fuld spar2 sAtartFi  \'s chancrcome. H#F32uck"2 ne's rich." Noa heavy strain2the9 tmpany kept baBe du E:2aryis pleasant jos5DsilearawkwardObroke it@(AMayb. cbut he0!lo it. Oh, you%n't smile--  1eY;&a 'tTom ran Bdoor1looked at eacha perplexbterestuinquiringly a_ Ttongue-ti* #ls Tom?"P. "He--well - any making at boy out. I(<4Tom}/,q#Dggli{Eeigh,2 di"afinishsentenceCpourU1masyellow coQ the C^Cqwhat dih ? Half of FRmine! spectacl1 general{way. All gazed, nwpoke for a momentn a unanimous :.n explan  #1fur5i nd he did^B tal!bumful of _,ca scarc!n rruptiony!tok the char/its flow|che had"edAJoneM)d: I,x^Jf#%isP2it BamoupC nowone makeFBsingy), I'm wilbto allhT3was[3sumt"edRG over twelve thousand dollarsr-!as+ 7 [Qaresentever seenl`e time before, "  Q N"ho1 worth consido7av,tyaV THEer may rest Aaj's windfall33$a j4tirDpoor(vof St. o. So vast a sum, in actual cash, seemed nexincrediblejqtalked , gloated0rified, until thOs' mTJdtotter&2*'e unhealthy excite "haunted" housq 2 anneighboring villzwas dissected, plank by U3oun1 duand ransafor hidden treasu Qnot b=st men--0 grave, unromantic menWmH1Tom >Q cour2adm(gz1qnot abl|arememb~2at 4bremarkLqpossessJ&};3now1say0Twere dBrepe 4didvrsomehow regardedv8Aableyidently lo{5power of doV'2nd r common !s;5#ovir past historr!up X v2ar " of conspicuous originalityto paper published biographical sketcheNt.1 # p>#'s !ousix per cent.dJudge " lt's request. Each lad had an incBnow, was simply prodigious--a9D-dayC8Ayear7?2jus  got --no, hpromised--MrcollectD Ha quarter a7 board, lodgd school a <^1ose  be daysF 2 hiBwashbrmatter.  ,@RopiniR 8no 3boy!goz daughtPAcavepqn Beckyd@ 1fatzwin strictCw!ceA TomAtake&a whippt6  dy2isiFv  Cplea,!ceK4thei3lie-w!olorder to shi*&at!hemo8own3saiTaq outburh$atyBa nod !ou<,5magz lie--a litaworthyzaold up-2hea-Rmarch1]breast to George WaBton's lauded TruthU"ratchet!mQ 7ghtzU bso talSso superb wR walk4 fl qstamped\AfootdVv!2Shec:straight of1tol#/it"op& 1seexqlawyer  soldier some day0look to i"T#!AdmitkY National Military AcademRafter(Qraine!es  9[Amigh9'Ieither care both. Finn's w0 qsthe fac#now undeQ_ Douglas' protec introduced him)"society--no2' it, hurluis suffer%1mornj1R bear?servants1cle 1d naHQcombeC1 br hCbeddly in unsympathet3ets2ad 3e[ spot or stx~uld pres/2earQknow yK$!haE#eaba knifufork; h%use napkin, cupXplate&QlearndWbook,@go to church2stalk so "lyaspeechT become insipid in hisX; whithersoXees"edC2bar ashackl civiliz;B shuiQbound1han foot. He bravely b4is miser|1ree!thTLSe day up missFor forty-e\Qhours^g! hO j2himw2in Qdistress. The cS profoundoncerned;~7u E %eyF- @1forqbody. EThird V)r wiselyPp*$Qamong old empty hogsheads down*]AbandU#sl-T p'inQm he $rrefugeeL had slepor breakfastoB stolen odd61end Bfoodbwas ly<f in comfort969"ipwas unkempt, unM1cla old ruin of +,had madepicturesqueRays ws01frea happy[S routvBout,"his"*been causing,s 3urg=Qto go gr's face its tranquilv took a melancholy cas63RDon't X CI'vey #itwT work6"T;"#"it:~U 2to :)d("ly_&7#them waysA!mex!up% / Bsameq 7+9Awashy comb mLo thunder0w&let me sleepJ/a; I go61wea[m blamed cloth!atA smo?" m#'dg1seeany air git A'em,Show; !y'1 rotten ni,a=!et, nor lay^ croll a@nywher's; I hai"liD cellar-doErit 'pea b A  and swea q--I hatm!m Cy sermons!Aketc xK,[chaw.Qshoes$w eats by a bell1goeybed by fits up!--VK's so awful reg'lar)dy!it_(,>#dvhat way, Huck(&qmake no differI`Qybodyq STAND &3t's1 ti so. And grub como easy--I# t{!esvittles,}3askAa-fi 1; I  in a-swimming--dern'd if{AQ1do 6t". H!I'42 to"sodn't no(#--. OuRattic"ipRSwhileA daym1git!st"my , or I'd a died, TomnKBAmokeu y?5Bgapeqstretch Q scra before folks--" [The+a spasm ofsial irrit and injury]--"And dad fq"itaprayedNDime!A see, a woman! I HAD1ove2--I yUbesidHZ5's $Copen_<S$it%I G!st"QHAT, QLooky%,0S rich@what it's crack); Bworr  9 2a-wwas dead <2. N7%seBsuitis bar'l %shake 'emmc>B got into%isAif in't 'a' ben Kmoney; ntake my sh@&Syour'gimme a ten-centtimes--not manyX#s,K_# Ra derR2'th's tollable hyx4you$qbeg offSQidderv"OhK3d6%Rt. 'TBfair if you'll try^;B!a UQ longI*e $tok<Like it! Yes--bay I'd&a hot stovAI was(!itcLC. No7Brichi4liv m cussed y_Bs. I6oodv  Rf  I'll stictoo. BlamBall!QSas we3gun_1a c*"ll+AfixeEArob,p&olishness has  k"up5pil~x1sawx opportuni%"CDhereHECUevYnturning 'qNo! Oh, -licks; ara!qin real3-wood earnest)J+CbR'm siV-?5But<l)#qgang ifarespec5R's jo3h!!C"inq Didn't[!go~a piraterYes, bu%'sRt. A 7 zfAgh-ti7"a NQ is--rgeneral~A. InTr!ri 6  Qup inQnobilRdukes03uchw,! aS2lwme? YouhC  A youP *nVWOULD+B" "wR%,tI DON'TR--but(vpeople say? Why 'd say, 'Mph! V#!  low characters in it!' TCU+ {h+`$t*#so , engaged%Tental"#e. Finally h# Rll go}aba monttC!nd1if  `3it,49XRme b't>%Q gang e_b, it'sQz! Coxo8X`2and G>Toh# a[oEWill/!--yg2? Tggood. If sheUt"ofroughestK"s,@qprivate-Dcussdcrowd ror bust] Astar/4NCturn$s? 3right offBB@Atogem"avQiniti  0Qmaybe(H(Lj;+W6t$12Bto sn9Cone [+ O#te rgang's 8+sd nNre choppl o flinder qkill an 2 anV his famiWhurtsX%ay9/e3y g8,!_3E bet it is3 "at1ing Abe dt midnightthe lonesom|3est@ you can find--a ha'nted " ib:-Bll rNB3up M#yw{(socyou've3 on a coffi 1sigh with bloodOt)Bsome RLIKE!frmillion )X!ieh n 8 s QidderAR I ro 8#gi% acr of aRLbody tal('-&itD bu+!sn!,wet." CONCLUSION SO endeth schronicP$G strictly a}!BOY, it kAstop ;Sstoryz!nofEmuch)p"wi becoming ^3MANone writes a!! a Sgrown*Q, he O4A exarto stopOB is,a marriage) iof juveniles, he W can. Mosgyrperform still liveare prospc2Som.it may seem ZQke upzyounger ones agaiM9 1sor"meAwomey turned@krRit wiwRwisesyOto reveaH&Rat pacQtheirDs at'4. Pby David Widge]previous ediwas updat2Jose Menendez'>  THE ADVENTURES OF TOM SAWYER0 /BY# MARK TWAIN' (Samuel Langhorne Clemens)P R E F A C E MOSTW%e 1s recordw areally occurred;nr two were experienc6 myb!rObose of"wh7 ]#3mat7$inY Finn is drawn from life; Q also$an individual$is a combi,Ybistics #re_whom I knewSabelong t.Sosite of architecture. The oddK!!stzqs touch}"onDall prevalentchildren!bslaves5e Wpwe period1is ay, thirty osAty y ago. Although my book iaGended mainly@ Athe qtainmen1boy7 girls, I!7#ill not be shunni "7$at;d, for vmy plan<"tooo0ly remind adul0 they onceathemselve^ 1of (rhey fel aalked,}Rqueer89s=Gimes 4. z!dUTHOR. HARTFORD, 1876TT O M S A W Y E RI "TOM!" No answ& g4iat boy, I wonder? You Rld lady pul'"!eratacles|$!ov #emcthe ro0rn she pm:&ut"m/seldom or +rTHROUGHhrfor so WJj!asyIher state pairA3 pr8V2her",Qbuilt3"style," not service--4'!se+raetove-lidsUs well. She looked 2z"&mo68!aiK1Qt fie0673oudP;the furniturUhear:e IQ aet holI1you A--" 2="by AtimewVnding punchingNL%dre broomj!soGdneededE2to punctuat Q!esBresurrected no f B catiJ6"diz!ea!1wenthe openDA andUiRtm?he tomato vin~"jimpson" weedsB constitb the garden. No Tom. S AliftWmavoice  angle calculfor distanc1 sh : "Y-o-u-T w!slTnoiseU"h42  i to seize al2boye slack of his  aand ar?Qhis fwA. "2! IE 'a'closet. Who!(.Pb?" "N  1! LI!at yourU8(Qsr mouthb!ISa truckXIk?-1aun. Dk^3USjam--FewFWAI'vet" dk"leGA jam@e I'd skin you. Hand me switch.# h.i d air--Sl was desperate-- "My Bbehia hatesB{5 S else#'ve GOT to doLIrhim, orbu!ilaTom di>-eidFAgood02. H  back home barely in seaso}help Jim small colored1sawS9-day's wo"likindlingssupper--at le6e{n:"to~=8hiscto Jim"Jithree-fourtht~$rk. Tom's!br( (or rather half-Q) Sid!al0Awith A(piccup chips),Z ca quieH1andE,%noDous,VBsome* While Lstealing sugar aQ offe{X7C askw+questions/ Ewere1gui1nd deep--for Bwantxtrap him6damagingments. Like ;pI6-hearted souls (1was pet vanityAlievA `4endowed with a t@ 1arkmysterious diplomacy0qhe loveacontemn0xmost transparent d׏ as marvel[low cunning. Sai u: "Tom1midQ warmR, warn't it8 BYes'OPowerful1'u "wa n(FAA bim a?Ae shvTom--a togL#unr.9;suspicion. H8dL93facKK!ld aQ. So [ ?SNo'm-ynot very mx =1rea+oY Sshirta#Bu } 1tooJ though." A-Qflatt hO7rreflects2;hy-2hir1dry!ny Bknow/*s8!hay Fher Glqin spit/1herC whe wind lay, I ZqforestajCwhat )next move: "S]us pumped on eads--mine's damp yet. See?" 88"ex:Uthinkoverlook(v circumstantial evidenc!mis=a 1. Tya new ins"5ion^ ho undo yourrcollar =bI sewe to pump on/Qhead,3you? Unbuttsjacket!#sh#of\2fac1Aopen]s@a. His qas secujQ. "B1! W Ago ' #I'11sur'#edQ A 8bee  QI forg(y*. you're a kina singed c"s --better': . THIS timu Sahalf sV*her sagacitymiscarried,3gla?ATom i3Winto obedient conductconce. But SidneyIB3you5hisith white thread, but Qblack5BWhy,OB sew8r! Tom!" rnot waitQt. As4ent>w3o85bSiddy, 2licfk abI|afe plac/nrwo larg22les "A wer#us.+sthe lapd6them--on^  D3theHpJDShe'D"anoticeQit ha_'for Sid. Conf6it! she sews]&_ &I wish to geeminy sstick to t'other--Akeep!run of 'emsR I beI'll lamX qearn hi4!Hene Model Boye villaghkAhe m&1boyOS well--and loatim. Withins, or even less, M1tenG-As. NQcause sV1onePR heavV.Bbittj2him a man's ow_aTand p 1bd !emgAdrov% mSb)y25!--ras men's misf+eiaexcite!of. This newwas a valupSveltyP1stlojust acquiredb negrohto pract5Pundisturbed. It conma peculiar bird-lik5, a Aliqu wrble, pW  &#he9Lh(Droof at short 5valAmids@@Busicxreader probablyEbs how !it.4ra boy. Dilige attention soon gave 8#kn{7he strodeFVtreet full of harmon1his gratitud 0^ an astronomer feels who hasg planet--no doubtlqfar as Eg, deep, unalloyedRs concerned,advantagFAwithT!boO t$XComerRsumme4ElongJNqBark,2 P"ly Tom chel2!hiustle. A stranger!hi boy a shader'himself. A new-cAJaA ageither sexXan impressive curiosiPJdshabby\WJ!Thy{`Qdress\"oo  on a week-A<FFa astou B cap dainty ,W- ced bluL3b round%5was#Rnatty0"sohis pantaloons2had;82 on#iGonly Fri"He!wo necktie, a br  aribbon0had a cit#KR air |bat ate&avitals B mor1staUIsplendid}1hig!oshis finerUhabbi E outfit seemed d3crow. N]boy spokeU,2oneEa--but Nsidewise, inrcle; theyArface toaand ey!ey#X - U!" "D3to see you try i,  8$doN> ,L.-'Y?1CanACan'A "An>\!paMp ! Aname"q'Tisn't5"of^,Well I 'low^ MAKE it my0)why don't youhI\2 sa}01ill3qMuch--mAMUCHrb" "Oh^ 2'rey smart, DON'Tm# I)l one hand:n!meIr DO it? You SAY aI WILLTyou fool~ "Oh yes--een whole familiesame fixqSmarty!| CSOME "Oh_a a hat+AR lump-8;Z[Bck it offqanybodyG61akeb!re suck eggsYda liarn %fighting.q and datake it up1AAw--aa walkXSSay--!meA morBsass@and bou1 rof~oOh, of COURSE+; then? What/ eSAYINGTx for? W>{EIt's XQfraidyxI AIN'TaYou ar7""I+A3/3eyiM1"sihaR eachm tCwereH  .XGet away Ahere"GoyourselfDI wo B"Sobstood,X Sa foo0d"as a bra' both shoving 2ainaglowertg1Q hate# nfget an a. Afte=Auggl ,Aoth <"hoy#flHmSrelax Jnx watchful caution|acowardca pup.1ellRig brozQthras'y3his44r finger.make himW 1toosI care forj{4? I;1a6big Be isUmore,hrow him'3at !T[Bothas imaginary.]$at's a li=DYOUR 2n'tAit s1rew6n ;G dus cbig toh<qFstepZ/y stand up. Ateal sheeFTz!w{ 1tepv-Dmptl N="sa$'dnow let's D crowd m;abetterZ{HSAIDh*--Wd[By jingo!Xtwo cents.jAtook1bro)QEpper>$ 1ockd cderisionRtruck*g0B. InF.QstantR boys1rol Aand 4ingdg3d6Acats3, 1pac"Rtuggetm A's hI 3nd fFs, punch3Qscrat"T's no,covered -#:'ry* confusion2for) ;the fog of baXcDTom %, seatedU!id1# p sts. "Holler 'nuff!"3 heaboy on%Rruggl1fre*Hcrying--.rom rage. dn. At last#go1 smwbed "'N"1up -)8jyou. Bny 1foo+Qnext  3Mqff brus6S2ustGsobbing, snuff5and1\Eally&Aback1sha1his;.1tenbhat he=a do to]the "next) 2ughout." ToTom respo0Rjeers"st7off in high feath as soon asI4was*(up a stone,2w i "hirbetweenhoulderss-\1ailran like an antelop_Qchase6 traitor{"Rthus ere he livednaa posia2gat2som9A, da the enemy toonly made2s a gond declined. %J2's and called 0 bad, vicious, vulgar&"ndc3[ m} Twent away;!he\ he "'lowed" to "lay"s'.g1gott>2ate#:2and$he climbutiously in r #unl an ambuscade,-Bpers4#Aunt;g"aw]2tat n her resolN 1 toT his %%2captivity3ard/became adamantine in its firmness. CHAPTER II SATURDAY mor;e,"&4Qworld#.and fresh/Qbrimm-1ith5P1wasng in every:(L" i>'!wa*RR issuQ rthe lip`Zcheer iniJfAa sp&tAstep locust-treQbloom bragranthe blossoms fill air. Cardiff Hill, beyona]ave it,B!grith vegeta!2lay (4farZ, to seem a Delec"Land, dreamy, reposefulinviting. 1ppe5e2alkAa bu| of whiteZ long-handl11ushcsurvey  1qll gladE2lefoand a deep melancholy settledAuponaspiritmrty yardsQoard k nine feet/s. Life c hollo7existence^Ba bu{1ASigh)Qhe di 2hisfpassed)Isopmost plank; rep the operB; di8Qgain;f8/ignificant qed streaqar-reac!co7'un8s"wntree-boxQ Jim 3skipping 5at va tin paiT singing Buffalo Gals. BrQwater (rwn pumpKRlwayshateful work inu"Seyes,Dq now itJ1not\k 1 so\dompanypump. White, mulatto/Qnegro! 9there wai'Qtheirqs, rest?trading plays, quarren $, g, skylarking. And h"al?Awas only a hundRgnd fif!!f,/3got)  under an hour. "ev an somesG!lyto go after him. U1Say, I'll fetcp'7'll`"soJim shook :wq, Mars #NOle missis, she tol|IBgo an' g<s3an'F#op ' roun' wif_61sayZQspec'zEAgwingAax m ,rs5$an' 'tend to my ownQ--sheed SHE'D+f to de/5in'2you Cwhatt!id#. SSthe w talks. Gimm $--qbe gonerC a a\!R. SHE ever knowI9 she'd take)Qtar dd me. 'Deed2wou.q"SHE! S ver licks--whacks 'e}URimble1whosE ,p5C }w%1 awP1but6hurt--any#it!if$Gcry.you a marvel" aKs alley!Abega.waver. "%!Di=bully taQMy! Da5Fb, I teQ! But Tom I's" 'fraid aissis--" "And besides,R will#shAmy s,^o"Ji- human--t> Qttrac  "ooHAfor iaHe put( *a"ntZebsorbing!Qest w. 4andS being unwR; V2s fZ3dowI k!ApailJg3rea+Awas "waCvigo *retiringcQield 7a slipperZ {and triumphEeye.''s energyeAlastq}Tthink%!fuE 1had $ne$Sis daH"rrows multiplied. So~ 1fre!s #tra**!onL 2sor@2delXBd)Bb they J$a bof fun8%m2!to|)96verZcof it burn like fire%2hiscly wealt- q examin0 B--bitoys, marble trash; ;8 to buy an exchange of WORKX* 7s,*an hour of purk4domi#retraitened meansB "s qgave upoAidea r=1oys4 !rkN hopeless7- e Qm! No=  3than a great, ma1 8entC 6! >qtranqui. Ben Rog%v-spresentlnK boy, ofbwhose ridicule dreadingdb's gai the hop-skip-and-jump--prooj6is lis anticipa2!HeVM3ran appl1 gie1a la%melodious whoop, at vals, foljB by -toned ding-do,, a* amboat. As henhe slack}1spey"1ookhQmiddlU, leaned faro starboarderounded to ponderaborious pomp3/Oce--the Big Missouri (d| %;wdrawing"of 1boac capta9engine-bellbined, s!,o7 Qself  <own hurricane-deck the ordersQexecuAthemR1K, sir! Ting-a-linga!" The$way ran almos he drew up slowly towarq. "ShipToo backmsHis arm"gh^Atiff8xAidesZei mAstab%h Chow! ch-chow-wow! rQhand,"escribingly circlesC3 rePing a forty-'wheel. "Lg l-chow!" Thej5 e "to &RShead B0her! Letg*mslow! W-A! GeO ead-line! LIVELY nome--outd"- #t'Q#'t ! T~ t(hRstumpMQthe bA! StSy*age, now--l go! Donb 3thesH SH'T! S'tH'T!" (Suge-cocks)"on . R--paix9!, yDBen (n "Hi-YI! YOU'RE:ump, ain' nH 3hisPFouchI!eyan artistZ(!n vi\ gentle sweect&!suܙ"s $R rang4)alongsidv7  2mou!%er #e (n"tu1 k]! "Hello, old chap,M4gotTs, hey?"heeled suddenJn31it', Ben! IC9TnoticDSay--I'm goBa-swi, I am. DoQ wishacould? Aof c# you'd druther[ !--0 ?5? C)I (6(omR:d,#bi2at 6` ?` $hyIETHAT#umC \Aansw1carG ly: "Well, maybe it iU zI,$it suits Tom Sawyer dV1meaQ!le{`you LIKE!3Thep u}1mov^"? I(see why I oughtn'Gl-1. De$"get a chanW+# a fence every da}1hat(2thez-Q in aSlight!toAnibbApple2R swep daintily=forth--steI"ba<1notK effect--advAhere?there--critici=50--Ben wat2mov@1getm`!"ndp( bested, Ted. P 5 heTom, let MEf a littl _o consent1althis mind: "No--no--LBl"n'ly do, Ben. Y7'e,1's  particula.u a--righ eNQknow -G if C& I^3and. Yes, she's ;-bbe don[ careful; v"onmRthous Ftwo can do i?wayybNo--is6Hso? 1--ljust try. Only--I'd let YOUCas m:" "Ben, ., honest injun; but-D$nn!o s!1n'tAhim;7/!, "/Sid. Nowy` how I'm fixed? IfEa tacklKsb[C&Qhappe+"itOh, shucksbQ3as lgA youocK,#mySFN2.bafeardW3ALL Rareluct|ig @qalacrit1. Ah i4e  )erAb workeZ"sw>LA sun( #ed< 1 saa barrel7shade close by, danglQslegs, m^& aplanne! s0Iter of more innocBT33o ln6material;ed along :; they ca6BjeerArema2A. Bytime Ben\!faY'1out!ra1he $+Billy Fisher for a kit!good repair;1whe>out, Johnny Miller b in for a1Ir! a!ngw  uCso o, R hourHT hour8 afternoon>," a5poverty-stricken; !2was literally )3 in2. HhW"s r q mentioetwelveA par6 a jews-harp,*ece of blue bottle-gla}uOthrough, a spool cann2B key|u unlock1, a!mchalk, a ca decantU& tin soldiQcouplQtadposix fire-crack&r kitten only one eyJ61ass>knob, a dog-Asbno dogv3hanNvb, four1as of o C-peea dilapid)old window sash 1hadsa nice,G_2idlM#thq--plent40 \2encQthree coat! on it! If2n't9>9ut )"heT have bankrupted+Bvill)d2aidCmselR!itnot such a!,Yqall. HexA3dis8+ a great lawRuman |,1out5 ing it--namely, ."inD&Ra manzboy covet a} s !isG! n5ary;^ difficul vattain.U3! se philosop&)che wri ]x@A now comprehen>qat Work $isaatever dy is OBLIGEDj,<OPlay< not oblig# do. And 2helyIto under* :U1ruc artificial flowers orW_5ing"ad-mill is work, ten-pins or climMont Blanc amusement 3are2y gentlemen in Englho driveb-horseJ$nger-coaches tw}r thirty miles daily linummer, becaus@privilege costs themDablenQbut iOy"IK wages fo*XAturnh1ntoI3txsresign.oy mused at3ovea%ub?GQwhichRtakenC r Sworld`whheadquartersv[eport(sI TOM , ]q lkby an open {@leasant rearwBpartYwas bedroom, breakfast-s dining and library,|c balmy D air* stful quieeq odor o%Y@.rowsing murmur (AbeeshFeir effec!he AnoddfQver h"i "sh5n,%1but#caLdasleeplap. Her spectacl)1progQup onsAgrayA for-F1ty.%" 1Tomdeserted #ag&` !nda0 'iRpower p_repid wayN said: "Mayn't I$} yKCaunt&'ready? How mu Adone*AIt'sd.XCTom,ro me--I= bear itIb<u; it ISRF." dY1truxevidencezw uBsee LRrselfe a1uld^MDfind1perQ4C. ofAstat true. Whenfse entir*"ed1notelaborately QrecoaM!an!n aeak ad8ogw astonish 4was#unspeakable. S|bnever!m U's no^# i2canCwhenM2 %Ad to B." A!AdiluO!he)!liAby a, "But it#s seldoma aRI'm bsro say. go 'long$pl/Aryou get@3som i\BB, or(tan you." &awas sokbcome bSsplenSchiev1hattook him#th&tsE- choice appleQdelivit to him,C"ov cture upoBvaluNflavor a treatAo it uit came~ "siT9ugh virtuous effbsd: a happy Scriptur urish, he "hooked" bughnutn !kieand saw SidQstart%pHl2 stairwayll tck roomsecond floor. ClodsAhand$A thegC)waXmtwinkling y52d a #Si'a hail-stormx # ct$Allec+ surprised facultiess*arescueQ or s0+Bclod7tersonal<G} MAgonerSa gat3eneral t h&2too9iY$!usTit. HGrt peace+ /"SiWAcall"tt s black $6+n1rouC1skipQlock,hinto a muddy allaled byQ%s aunt's cow-stT4 He aly gotrly beyo  reach of capuQhasteR the public squ$1, wtwo "military"N!ie02boy"met for confliY AccorO qto prev#sappointt <G3 ofޢ these armies, Joe Harper (a bosom friend)<the otheruse two great commay ! dYSt conyb to fi!--DAbettIil2Rstill<ber frys !geon an eminence/Qconduield operations bysD aides-de-camp's army wX uvictory+ nd hard-f@ 1 ba# T were counprisoners 'drTterms rdisagre d7y $ay 03ed;X 4R fell?and march "ayhTom turned home slone. Q!as &3useJeff Thatch-1ved_saw a new girl e garden--a love^<blue-eyed creaturQ yellir plaite1two-tails, white summZd embroi  )JQettes fresh-crow2ero4without f^+a shot. A certain Amy Lawrenc2U2his6 !efoJa memory of  Gm 1 he#d to distr#; !rePdKQssion"dogi o + ~Aevant partialit pmonths win8bher; sTesseda week ago; $ <bappiesx Oroudest Rworld WQshort_e!inRinstactime ssgu a casual=)visit is dH"sh this new ange's furtiv -shqchim; tf Bpretq6 Aknow\4was %"show off" in 2sorabsurd boyish ways,# wBadmi%{Bkept is grotesque foolishnessome time;, by-and-by,  )s Adang) gymnastiche glancZ@!idy MC girl was we(xher wayO $upn r leanedq, griev5b+Roping! tarry yetblonger 1halA1 moO  Qsteps m]1warQ heav great sigh asp$Ar for threshold.#1his:! lI", Qhe toqa pansyG L ! ss): 3 bo)3rou\Uad with Tr twoY Aeyes=#haWCdown d as ifBsome of interest goat direction. P- he pick:&w#ry !ba! iO,aead tifar backSas hefrom side8aide, iO edged nearer B; finally his bare-#W3(liant toes)w 2e haBaway the treasu# OArnerb only minute--(v Rbutto$1 inhis jacket, nexheart--orstomach, possiblAnot 82pos<s anatomnot hypercriticaZByway1# 4ung#<nightfall,ing off," a16 2irl exhibite again, though Tom comfor$"im$ 3hop@Abeen>,*een awar&P  Bs. FX he strode home !H[[%advisions. Allasupper.cspirit"soCrunt won "what had #inV child." He tookÁod scoldrbout clB Sidp1seee!miY QleastQtriedIugar undGveryG"goknuckles raQ!foxc "Aundon't whackmhe takesQWell,/1torsRa bod 1way"do. You'd b9  bsugar ifq*watchingu sezckitche Xs immunity, l"gar-bowl--a sor&2glog2Tom/Fllnigh unbear_'s fingers6`Rowl d1LVbrokeFin ecstasies*JB (!he controlP#Rtongu!il5 toF Bpeak6!d,^P1in,18A sit0 bectly Lyshe askejimischief|u! tCrRbe noA!so+   !asefpet model "catch2 Heo brimful of exultR1 Thold Q rld lady #ba stood abovwreck discharging lightnings of wrath(#Y v, "Now iVm2A8zt gQspraw1on 2loo potent palm#ups!to($"keTom cried out: "Ho 1'erbelting ME for?--SiK it!faused,\vl1heapABut 1shes5her3she RUmf! you didn'ta lick amiss,)Wsome other audacious Iaz 9 ." Then her conscience reprgeqshe yeaato say'3 ki l;ashe ju - !beo4tru!a  Ae wr7T cipline forbadhs. So sh rsilence2d1bffairs av2rt.|1ulk# a W "ex chis woBknew3Qheartb Bas ojAkneen was morosely gratified b 1ous\)OAhangno signal take notice of nona3ingRR fell"no cthen, s& a film of tears~ahe ref recognition!pilsick unto deathbim besee}D one forgiving*u]cds facew rand die word unsaid. Ah,+Hs !el2? A bZK the river,  Qcurlsw9<8sore heart a .sEhrow 1ow 4earxfall like r4 (ps pray GoAgiveAbackG!bog\  , AabusY9[Rmore!k.blie thlsi02--a suffererP"se grief C*# e$so, as feelBwithAbathos se dreams,hto keep swall ,Qlike to choke03swaqEblur:, which overflow}xr winkedran down*l?XAose.| ba luxu'"hi:op17gsorrowXnot bear to have"ly'Lixrng deligh\ Brude0Cit; <too sacr/rcontact7Tso, pU,his cousin Ma31in,!EalivAe jo!sesB4hom+ an age-longbof oner aountry!go~in cloudBdark u"on|Munshine in at@1"wa B fars the accustom"1unt=?S` desolated"suwere ind9. A log rafAthe S invi%fQhe se!i on its outer edg Aempl+reary vast*iram, wis4Lw_ u rly be djQt oncs5 un6c1the&'routine devisWn9N*Y+Cflowt>got it out, rumple!ila 'Fily increais dismal felic) %HeFQ1pitu knew? WOrshe crym8! L! r%toRarms #ne  him? Or2she(!co1all (,1? Tuch an agony of pleasu ) ` tC and 1gai 6set it up in new!vaosTswore ithdbare. Vqhe rosei?NJAdepa4l A. Ahalf-past nine or ten o'clock hey 3alo+'street tothe Adored Unknown ;X{ `; no sound  3lisdVear; a c/qwas casa dull glowbthe cuCof aX"c-story/Q. Wascre? He climb,jCs stealthyf/ !thn qood und]#at j Aup aC#,ith emotion; Claid]$wn9#g bit, disposingpAuponp Rback,]ands clasphis breah41hiss wilted5*1thutdie--ou~ jyno shelter bomeles-C, no !lya to wie death-dampsR!ow8  2benvTinglyqmthe great3cams4SHE:!eeww4'E outvT glad/U,p4oh!A!hev Atear>poor, lifWform,=>Dsigh~1a ba youngE so rudely b:*Duntimely cut ? Aup, a maid-servant'cordant voice profan" holy calmqa delugAwater dren#rone martyr's5"s!BstraB hero sprang uAa relieving snort%awhiz aPa missil/vir, mingledHV"rm Qa curHBshiv1glal !smb 1vag rAv!e >Bshotvgloom. No!Q, as +all undressed for bZ  omission. CHAPTER IȷCsun 5!2QanquiT"ld]abeamed8D4'ful village~a benediY Breakfas, Aunt Pold family worship:cL2ega# ab built6up of solid cAScriptural quot/s, welded`%A a thin mortar of originality Bsummf  7she+a grim chapter xMosaic LawKaSinai.n Tom gird Qloinsto speakh2bto "geverses." Sidlhis lesson/"c beforAbentt his energies5 smemoriz\CfiveeAhe c$"8the Sermo!Mobecause 2uld.#noO, were shorter. Aalf an hourugeneralw!no;wn =Qraver) %olN'Bf hu-3 !iss3bus $Qng re%ions. Mary took<1booAhearPSrecitahe tri!|] Gog: "Bl!ar 1--a " "Poor"-- "Yes--poor; b025#In? :$ i/Ubthey--" "THEIRS BFor +. Lairs is[kingdom &MavenEy>_mourn&ShzS, H, A S, H--Oh, IO$"wh is!" "SHALL BOh, # fb shall-- *Y/ I 5iWHAT? Whyyou tell me,1?--do you w !! bmmean for?2youthick-heaRhing, I'm not tea[1youpyA1 do. You must32leaI75. D"be"buraged you'll manage it--f 2do,11Agive #ever so niceC, that's0#bo'"ll{1! Ws"TMary,K C+'.ueryou minMbsay it's,< AbYou be"sou%. Qtackl ;3" [did ""*2und double pressure of curiositprospective ga2 diA)2ithD he accomplished a shin SuccesQ gave  a brand-new "Barlow" knifqth twel2d aSRcentstZSnvulsGthatGVsysteL[ DDoundTrue, the scut any!buwas a "sure-enough" 5t  inconceivable grandeurSBat--lBWestern boys >A got N|a weapon1#qunterfeZ3a injur<3obmysterw] erhaps. Tomr˻to scarify82cupuR\ "it )ArrancCgin F dbureau" !ca\ qoff to  eSunday-school. FLrtin bas 8andmABsoap!he  3"oo21setM4n aRbench2; ta$ d+be soapeiy; sleeves; poured>& ,W=y~e'  " Ubegan?ace diligentlyFStowel|-g"oo&&3 re),5and2Now49lhashamesmustn'tVbad. Water wShurt c#"Tosa triflncerted. T=5sin was refillAthis3xO&ito'b, gathaf;/% ebig brGU9(hen nDboth eyes sh8Bd grC+t.[ , 1nor&testimony of sudsR>2ripT Aface mse emergf>x,fnot yet satisfactoryQclean territory* " a%Achinhis jaws,mask; bel_p4dis lin1 dark expan5unirrigated soil]Rsprea7,rin fronlAback  2himBnwhen sheY%dR4him$Ba maqa broth1adistin<Bolor)Aatur2haineatly brushe2its curls w]Ainto2intsymmetrical effect. [5!iv;w smoothL[3labdifficultQplastere AI]3qhead; f(] effemin71andBown  lith bitterness.] Thenr!go! aP1 ofF#cl%1Busedy##on Bs duvH!wo s> were simp1"ot%#clothes& "soJRat we qthe sizV brdrobe3D"put`"s" !!S; she+Qneat "/m,his vast shirt MG2ovem,soff and c V-QspeckSrtraw ha)1now#oed exceedWAimprcand un2abl":Yy as E as OOTa restraint e lgAm. H-"atU Q forgie"5!peZ61 cothem tho"ly/2tal s9Bthe 9rthem ouH2los:Stempem~z bm$o do ever  Dn't "doAMaryN&rsuasiveTPlease, Tom-- 3So &zhoes snarlingJ(son read9/hree children se3for "!latat Tom hd heart; but3andbere fo0!sSabbath`-from nin$Aten;B church service. Two  "ermon voluntarilV :2too!ger reas.TZ urch's high-backed, uncushi$BpewsU!~h4d persons r edific_bWSplain,'a sort of pifR6ard*kQon totia steeplB Tom droppe(ps2acc0a comrader]2ay,N,o)2a y*;aticket5Yesy'e'Agive:APieclickrish fish-hookX2LesExa'em." 5(0 ? W propertyGd@!tr=cMwhite alleysb  E6Tsmall+ #oro9forSsblue on(1way ,b boys Sy camwent on buyingz of various colors ten or fifteen minutes l !/ qqa swarm; #leg Rnoisy: irls, proceemoE!se &dAed a quarr84Airst5jAcameyQ teac a grave, elderly man,75QferedGny-'6>aTom pua boy's @ !inM 3;"was absorb% the boy  ;[aa pin w I boyk%8 hear him say "Ouch!"got a new reprimandJ 'csle clasWqof a pa --restless,!tr\Csome> Qthey to recite their@w%~am knewuverses /,!habe prompv8ll along. Howe)worried @2reward--in T blue,,q passagl"e '(;2pay#wo1 of  ation. TenuB equa#onc7$Tbe ex^qfor it;0Cyellow onep #enV> Wsqsuperin;"ntat1ly bound Bible (qforty cin those easy3s) SQpupil2 maH$!myKe* (the industaapplic+4 toeTthousand]H2 BDore? And yet Mary had 2two%is way--it the patie5!rk!^  oy of German parentage had wonRqor five3onc#ed i out stopp/{Gtraitmental facultiesyCtoo (haand he~+Abett {U idiodBat dth--a grievouC2he :"onpR occa$y company f(1 exbed it)  'y come out and "(b." OnlRolderts13Bkeep}Li]1tedRlong  to get a2[s6y*sse prizaa rarenoteworthy circumstancer32fuls?conspicuous for  ;AspotEyQlar'stQ4fir"a fresh amb/that often_')ed\weeks. It is{1s Tom's qstomachn 1rea 1ungo1for#.o. unquestion6-Sntire& hNPa1lonQglory,qthe ecl+!atcI rIn due K  &Rp in {e pulpit" a6d hymn-book inh)!nd cforefi"O(between its leave Frd atten0G  ! m09>y,4aryAspee  RGs asoEBas i ainevitAsheeTmusic&sq who stu'1forAplat<$ings a solo atn %!y,:Qneithen sa refer.0k. ThisN0fa slimEirty-five a sandy goate8Qhair;1ore 2iff!Cing-wE"Bsensa}!itenew hero ups C!on l Xtwo marvels to gazt#injbof oneBboysall eaten upenvy--but tb)est pangI-swho perstoo latDS themselv contribub athis hsplendor by trad01 to't wealth+bamasseelling whiteprivileges s]D2pis,Urthe dupa wily fraud, a guileful snakeRgrass !4was;ew 2Tomo"as%2eff superin"nt pump upI7!s;it lacke&wS-true gush< IQoor f' tinct taughZ-xzw not well bea]l  k4was.preposterou8 c!!hae)Q thou[!sh $al wisdom on@remises--a dozen ,#capacity,Rout a8. wBprou$glsH<T1Tom it in heL-ouldn't look. ShH 3n ss grain %"d;Ta dim suspicionbG(b--came P-! wnEd; a1`#glrld her ] +her heart brokMs jealouaangry,t'&rs3shebody. Tom G!of (Hhought). )asohis tongue,Qtied,J4 2rdl"quaked--part75cau awful greatnes rthe manGmain6H$ have likBfall00borship!ifyqLq1ark # ph an Tom'!ca9Rhim aC * sand ask!qhis nam?hwstammered, gaspe!goUout: "Tom." "Oh, no,QTom----" "Thomas'"Ah~'TI7!or\ it, maybe{'W well. But you've)one I daresay""llit to me,6Q you?1ellQ "an"Qother", ","'Walters, "5!fay sirX=n't forger mannerI Q--sir1it!B's ayvF . t, manly0 Q. TwoLverses is a  many--very,(.'2ou $can be sorryUQ*c you tOAAlearm( knowledge is worthchan an@1<3is pa; it's4#e  Dmen;V$^d3Qman yC$Alf, -5day1'llR,Y9ay, It' R <)1rec ;A1 ofDoyhood-- Gvmy dear-5tha^mU<  Jood ,L$en? H.)3 ga beautifulI*\d id elegant'"anH  for my own, always right brin"upA is |2you<{!~&take any mone^ose tZZindeeE1nown't mind t $ m+ "isB2 hylearned--no, I know --for we are4$of3boyG!. 1no vAknow2nam^r, es. Won'Lbtell u9the first3tha`!ap$Fed?"l1tuga_utton-ho sheepishblushed, nowz1his! fO'MAsankm ain himH_\ETAposshtc2sweb simplest (--why DIDH=ask him? Yet hBrt obligspeak up say: "Ad'1--d}#be!.L_hung fire."*$me\ady. "TF twoeDAVID AND GOLIAH!" Let us draI%cu3 rcharity tYsceneJV ABOUTQtcracked be2theu church ?R ring01epeople(1 ga||"mobsermon. childrenHA 5!e C C eoccupi5ith thei s, so as K{Kd. Aunt Polly zTom and472sataher--TomL%"d G8sleB2!ha9A be GrE9the{e seductive `AbsummerEs asQ crowd fil/"s: 1gedneedy postmast=!hosseen better days C may<"hiJ "ha$y3re,| 4 unmp#ieOejusticRpeacei widow Douglass, fair, smartQforty!ene,O2-he4Asoul well-to-do, her hill mansj only palactAChosp+and muchKmost lavish 't of fes,St. Petersburg [RboastAbentxQvener,3MajsMrs. Ward;  Riverson,bnew noaACance_1ther village, followRa tro8lawn-cla.ribbon-de!3 p-breakern#q clerks!owfa body;C had.G vestibule sucD!cane-heads, a circYb!wa! o !imcg admirers, ti Alast!ru ir gantlet; and/AcamedModel Boy, Willie MuffFs heedful carlQhis m5 asXere cut 2x ! b=tN,>#to, v1prisrmatrons(2ll vh !so0. qbesidesa"throw;3 Qm" so. His whit.kerchiefZhF#q pocket behind, as usual ons--accidentalN)noa!he 1ed ytas snobcongregapefully (: 'T1once, to warn laggard0straggler a solemn hush f p! <Q+vdbrokenBtitt=8and& choir is galler=GF!edthrough =conce adQY Pill-bred, but I rforgottgh!rea2. I !y [B agoV.I can scarcely rememb?_="itI kg1 in foreignj#"ry* minister & "ou3hym-1reaba relish, in a peculiar styleZeat part His voic on a medium key&Zasteadi:/i0% a"* rBbore1strY5umphasis topmost wor splunged8spring-board: Shall I be car-ri-ed to!sk !on flow'ry BEDS of ease, WhilstsyOIH sail thro' BLOODY seas? Hqregardeadful readKZt"sociables" h= #R>!to;r poetry,Cwhen32ughcqladies l3 up<3han let them fall helplesslyrir lapsc"wall"C!eynB1k\!irZ5s, u say, "Words cannot71 itfis tooV, TOO rtal earth." Aft 2hym~&Bsung2RevtSprague#' into a bulletinGuoff "notices"ge,qocietiej-1i#)o4 2st qstretch of doom--a queer custom#is vin America#cities, away x4)1 agAabunZnewspapers. Often3Eless, to justifm 1adi7l3Bhard")q get riu'ittprayed. -, r:bwent iIhtails: it pleadea 2rBttle),3rend:7=eip ' itself; ?y([State officersqUnited . ' 'C)s5A Pre.t_q Governm$poor sailors, tossed bK1rmyM ppressed millions groaningeel of European monan  A Ori5 despotism1sucDght 2tid?'rand yet-M"yehqee nor !to &alRheath)the far islB seaZaclosedW a su Twords!abmfind gra)RfavorV!seLm fertile ground, yie%Qime a?0Charv9good. AmenP!re 3a r(Q of d v8! cPy sat down whose historybook relates disQenjoyQB, he< Aendu}Qt--ifN1ven9J r  it; he kept v y a63 --Lp"gc#, qBzc of olvthe clergyman'ular rout}&VaiQtriflsRnew m3 terlardedear detected iWhole nature resen!considered adAs unqcoundre I |/B a fU'R lit  " bAew i#nMmaAtorthis spirit by calmly rubbing iti d8, embrac"eah,3armpz}& so vigorous7at eo$;part companyBbodyvthe slend9read of a neck61expto view; scra0Qits w rind leg'AsmooT !toCbodyK|been coat-;~,&le toilet as tranquib if it.)$E safe. As!ras soreEaitched@rab for iynot dare--}4iev3oulbe instantly destroyed 3did qg whileB was2 onhhVqsentenca curveTstealq.Cthe ra"Amen"r!hewas a prisonwar. His aunt bthe acmade him let it go rhis tex8droned along monoton an argumea%"sybmany aBb &byBnod 3y Wdealt in limit 2firMbrimstonSthinnpredestined& Eto a#so !2worA sav1)2Tom_&ag ;; $ % h2how:t#aseldom: Delseqhe disc MH"is!he8qreally {16forE*a grand and moving picJH"&+=world's hosts at the millennium*B !onc aamb sh"%liS[ , ,!eaAm G2hos 5les1mor/C theEspectacle werQahe boy v# D" principal character beforEaon-look<>!s;#1fac" oirhimselfYhe wishe",Q tame lionf!w 8Qpsed (ing again,fhe dryQumed. eHpA him treasur # a large black beetlformidable jaws--a "pinchbug,"8#Rit. I/=ercussion-cap boxhm1did/bto tak)b' Afingal fillipgIbfloundKZ2isl1its !ur ger went1's Co!lart5its" legs, unAto turn over!ey !lo1forF^!ofCt. Other'uncR]1q relief# wyof too. Wa vagrant poodle dogNA idllong, sad#Bf, lazyI1oft e quiet, weary of captiv(1sig"for changeMs;HAdrooz Ataile8bwagged:1urvrize; walked a it; smelt a87afeu4 4; grew bPJUA6rY1l; Trhis lipqade a gzly snatch,YA misa;3it;/nn %; g diversion; subsid  Stomac)W betweenm3pawh scontinu experiments; !ath Aindi- absent-mindi(1nod ittle byrhis chin descen/ou he enemyAseiz[2re sharp yelp&li' fell a couple of yards away, S}Amore neighboring spectators shook)a! inward joy, s2afaces rA fanI s)_aentire #ppXdog looked fo8 4probably felt so r1entc iheart, tooBaG>qor reve1So .n:9gan a wary attMnWQ jumpfRevery2B, lightingP!hiKJae-pawsin an inchB2YouUX O=3Oh,Q, I'm,/"W4=--wQa, chil9 X!my! toe's moF1!" J#ol[UBsankqa chairB#%ed! cEB"a did both0,Arestwh/d<P," ayou did Ce. N ;1shus aonsensCd climb"thg{$ThS ceasrain van Afrom!to   ' it SEEMEDi"itTBso I B my aat allqQYour ,#K+ Sthem' aperfectly" "Ther|Tdon't Ahat @'Open your q Well--4 IS1butcre notwVto diG!at. Mary, gec>aa silk a['1Rnk ofq"ek$2n." !pl/j7 !hue. I wish I mayO%qdoes. P_@.1wan-]stay Don't you? So all this row was E1youM>ght you'd7i ibgo a-f*?yI love you"1+!ou !ryQy waycQbreakX?l !t soutrage!=." dental instru?S read #%on8the 8^I"'s:Ra loo& #tiod edpost. TBseiz* n^QthrusI($inR2oy' U hung dangb- } Rrials@*1qcompenst+s'#enrschool >fast, he6qthe envc( 1 bo"5metSfap in 1row&eeth enab 3 toMRorate!1new<>4 s9ing of lad9G%in the exhib@0;2oneShad c ' 2hadr a centre of fasc and homage2o[Qnow f:OJout an adheren Tshorn!Rglory'QheartyBheav 3a disdaibZit wasn'tDo spit like;our grapes!"%e wanderh dismantero. Shortlyb3camMthe juvenile pariah5he n;Huckleberry Finn, sthe town drunkard.,-Qcordi2hat2 dr1#by "e s{t 2idllawless and vulgarRbad--zxk?eq delighV-forbidden societyAthey dared?Rlike B!om @!reNCRboys,faxenvied >his gaudy outcast cond;as under strictIQrs no8Mm1Splaye3him1timf2got% Ince.c!slways de cast-off _سll-grown meAthey  in perennial bloomRflutt sCrags{!ata vast ruina wide crescent lop a of itp!m;ecoat, +72ne,Bnear^2his[ !haQ rear!buttons farY ; 2ack1oneMeaupportos trousers;Ceat ! b$A low~contained n A friM&rlegs dr4Bdirtanot ro[Iup. 1and?A, at"own free3Yrteps inKDweat in empty hogs> in wet;3Qto go2 orurch, ornmaster or obeyXcould go  or swimW1herCchos1sta/long as it suim; nobody~V$fiyhras late! p8 d3t)2boybarefoot Qe spr'gnv~Cme lsAfalli1to wash, nor put onf0wear wonderfully. In !rdJ8tQEgoesxlife precious{!adgrthought\ harassed, hampered, ; inkBR!ha!AJtomantic : "Hello$!" K ee how youh9it.a A gott rDead ca%RLemmeC"imp. My, he'tty stiff\Are'diqget himQB2himR a bo#di4zI a blue ti@1and"adBat ItVter-hous1 T#itBen RogersI!goa hoop-stickE6SayU!cats good for2hGA? Cu1rtsHSNo! IQ3so?JV some6A's b3BI beedon't.ibaspunk-?5S! I wouldn'tqAdern 85You-,  $D'OD tryqNo, I h DQBob TOA didrWho tol!so"he Wa5Johnny Bak im Hollis8 'ld2Benmca niggLC them bre now2ellt? They'll lie. Least<1all WA. I 2HIM(I%eekWOULDN'T\Shucks! NL!te`lbone itvQnd di=2a r/BSstumpLthe rainQA wasPI qdaytimeClith his fac Atump-3Yes* I reckon so[ADid j y5 3"I :.lAknow@Aha! Talk1tryN:o c such a blame fool,c@Aat! @S a-goVado any2. YV rbrself, e middle Qwoods\5Y's a Btump1jus'7rmidnighrback up!s qand jam/Q: 'Barley-corn, b injun-mearts, ^ {q, swalle_&drts,' 1n w way quick, eleven steps,(eyes shuthen turn.<BtimeYAhomeDrout spe+ttbody. B#f$Wcharm's bustesounds likxrood way !!wthe wayB donNo, sir,x1cann't, becuzoGartiest cis towT!BE1war 2him!!'dU!ed*xto workYS. I'v1offs'9"of off of my9sAway,m 7. I Tfrogsv$*`U 5got;"Qmany gb. SomeI!'eFNSnYes, bean'~de%1Havk?,"'sSway?" "Youd6 2pli!be#nN1getb blood"thN# p3" o rEpiec!be,d{q dig a *1t '`?aYrcrossrorqdark of6mooQ burn/ $styBbean#se Uq=.ll keep drawN$nd ,mA feteXFZ v+1"soQhelpsh!toOA the.Rf!sof}Qcomes %--;"gh,"bui$you say 'DownV;awart; 1no @'Bto bgme!' i & Tway Joe Harper doe!he1'enCoonville and mosQ bwheres#say--how do:"urA b!ak1r c+Enm?graveyard '%Ubout wwXromebodywas wicked hen buried3Fit'sFqa deviloP, or maybe%,3 't see 'emcan only+ 7indYAhear9Qtalk;|they're tahat feBawaym#he<<1fteMGqsay, 'D  corpse,i,A1cat,Qye!' ;2ll 91ANY7b." "Stnright.}  "No@Rold MrHopkins mz !soqAn. BQsay sra witch#ay AKNOWQis. S$*$pap. Pap says so his own self. H! axAone *a#!eeUawas a-Sring himC !e T'!ro-Bnd i!ha AdodgQe'd a>e)that very > $heFoff'n a shed wher' s a layiQbrokes1arm"W#!diOknowLord, papGeasyK1loo- *q stiddyDyou. Spec"ifcmumble d$b're saS he Lord's Prayer backards2Sayy y:"trB1cat1To-. .old Hoss Williams t8a" "Buy him Saturday. D` ?qtalk! H5uldbAarmsF d till -?--and THEN2Sun|Sevils Tslosh 1muca,2, I' L!nLaBso. #goT!f'"--$Rafear A B! 'T qlikely.djAmeow1Yes#, Z'geR Last timeOkep' me a-me8!arA1ays( r&rocks at mJb 'DernQcat!'qso I ho Abric{!hiDsdow--bu+BbwTIn't meowe bauntiea#me|Q4'll8!is%. 3!'sOL"NoQbut aS%Ou1-3at'AtakeG .Uqell himHAAll 4. It's aIqy smallr, anywa#anybody3runw6ae1 bem. I'm satisfiiwF!enAtick"Sh!tiu plenty  1 ofrif I walCo2whyn1#wed!cawT&Cs a Q2onef YAyear,b--I'llbyou my  ALessi1Tom1 bi$pauAcare3 un$Git. ~a viewe#Awist-. The temptation+strong. At%he"Is it genuwyn4Tom>'>!shthe vacancy.a!,"YB, "iAtradTom enclosQ8 A@lately been: 4#'sG"th separated, each fee !wealthier thqfore. y'4Tomy'Dittle isolated frame ,trode in briskly=Pof one who AwithQhonesbed. Heahis haQa peg52fluT BselfJ4}31eatI r-clacrit", throned on hig1reat splint-bottom arm-',R1doz)!luW" drowsy hum of study. The51rupcd "Thomas Sawyer!(Ghis name{f7 in full&!me$rouble. "SiO"Come upcRS. Nowbwhy ar2gaiN3cusual?= "to Srefugz"3lie' Pw ; ails of yellow hair hangingoae recogn$PHric sympathy of4%;&bat forTHE ONLY VACANT PLACE girls' sZ QinstaE STOPPED TO TALK WITH HUCKLEBERRY FINNY's pulse\:Qhe st helplessbuzz of 5r ceasedcpupilse) foolhardyaqhad los% u/:9*(d did w"Stqto talk@ Finn." (eno mis}e words,!isE!motounding confessionYever listen!. No mere ferul answer f4is offen%1akeyour jackej  's arm performed until it!ti#>Qstock1wit) _y diminish`A ordllowed: "l!goVs!th! And let)bSt0xr titter-VripplE{qom appe^rto abasiboy, but in .G14was caused rather0!byworshipful aw%his unknown id(&IAead _#urRlay icgood fortuntss Rwn upk(1pinc<c0)'Qirl h,away from himaa toss$&nd. NudgesBwink$qwhisperO4verBroomrTom satW!hiIs "Aong,"CdeskO1eem[book. Byby atten$DNjX#ed murmur rose]AdullxEPresentlboy beganqeal furdaglance robserved it, "4G,2" a8and gave hi-HbackRe spa\ta minut2she caut4duQ, a p5layi"erthrust it away1g!pu>Kback,^2butC&Bimos;$om9Sly reZiqits plaz!heit remaindscrawlts slate, ", Bit--2 more." TdJ uno sign. Now draw some *!hi 1eft;q. For a31ref:2to ~[Sher human curi@Axq manifeby hardly perceptibles !boPkAr, apparunconsciou+Qa sor^ noncommittalnmpt to s6 did not betra/h Aawar&itM 2she!inQhesitB$lyb!Le  Apart 6=*l caricatusra housetwo gable ends}a corkscreC,smoke issuingS!thn[AmneyX" "'s !es0Bfast6elfeAworkqshe forgot $D els`f6, she gazedAAment)n ,It's nice--make a ma artist erectH$an%front yard,qresembl(qderricka 4~1ste\ !ovgek&not hypercritical;Kwas " Const! a beautiful man--now me cominggom drew an hour-glassa full moontraw limb1 arhe sprea1finE$a portentous fanwL #t'#soI wish IPddraw."feasy,"q Tom, "1TlearnB"Oh,i#AWhen At noon. D 2 goh1to dinner&PDstayAwillrGood--tAa whas your] EBecky Thatcp5yours? Oh,$& l1theU they lick me by. I'mIAwhen \2YouW)1me Yes." Now<N  tl1rdsW /1"gg1see !Oh~ain't any\ Yes it i5"No'#wX5I do, indeed I do. 4letVYou'll teNo I won't--9Fand Rouble%"ou3G6A? Evs ! aA liv!6&M! e3ell ANYbodysOh, YOU!Lyou trea#o, I WILL see."+ 1sheher small =  Dnd aQscuffLAsuedq pretento resist in earnrut letts_ slip by degrees till thesdA4vealed: "I LOVE YOUj"OhMb-Fing!1hit hsmart rapreddened >b 2ed,~&theless. J[$K junctureboy felt a slow, fateful gripM3CB earp a steady 1 im+zSwise Aborne acros Gposi0own seat, undwNBpeppX/a7f giggles i!tna~-Cstooqhim dur;q few aw_bomentsfinally moved IsU4out5ba word3"al Tom's ear tingled$EBhearWjubilant. A rquieted 3Tom nQefforX Bstud the turmoilRin hitoo greatqurn he h#hi  Bclas1}1 boef it; theOgeography4 Alake3 o mountains, Srivery r contintill chaos wask  Aspelc got "down," by a succ`"ofG1babA dN3he C2 up=ae footyielded upkpewter medalj worn with osten|for months. CHAPTER VII THE er Tom triedl shis min,# " mXs ideas wandered.9,b a sig:a yawn, he gave 0V. It $anoon r4Fb wouldm} air was 3Aly dc#t a breath stirring. IRleepi$ sleepy day drowsing<Re fivUtwenty studying scholars soothe/soul lik= #is_bees. AwayE1fla sunshine, Cardiff Hills soft green sides th[ a shimmBveilaat, ti| the purple`iWa few birds float Q lazya!ir; no other liv*bwas vi$x1but7 4 co^W Cwerer's hear=!be3A, or 3 toA  fE to do to paq drearyH4. HcQ into%poO0his face l"gl%:gratitude3wasa#, ) not know i!enXJ3ivexrcame oua him a"Va pin"!6newx 3's bosom friend sat nexb, suff!ju9;4nowMadeeply{"grm& 2ent.1menj3an  7was'rtwo boy r sworn s|1eek embattled enemies on"!s.^took a pinBJAapel #as q exerci1er.AsporZwwU<rly. SooG 6}Beach neither g g1ull denefit*!ti<!o Qt JoeAQ4ate 1rew "neFthe D/!it C top)Btom. ","Whe, " Ahe iqByoury9nbq him up)qI'll leB!e; "2get d)et on my[,@re to leXalone I can keepQfrom  S v!, go ahead; star!upb escaped!pae equator{6DawhiPtU:5G݁ghis changbase occurred often. Wg"onZ !wa5r^&t7r absorbNHYblook o? #as 3, t9b 1ogeo|QsoulsC to B1ngsVluck  S b JE !hicd&atxDcour9rQs exc Xs anxiouh|!thH mselves,<0Egain:Auld evictorfvery graspn)"to#1 cbe twi%to begin,3pin'Bdeft+Rd him;1andTk W)gl:n(uno longzQemptaswas toocqreachedFand lent a11pin 2ang a. Said he: "KbI onlyd1wan TU2#NoJ a fair;e' ~3QBlame>I'!go l#mu+L?b, I teK|"!" shall--+#liALook !a, whos\ 1ickICcare$m /ha'n't touch %%,Qbet I . He's my/do what I 51him die!" A tremendous sdown oneshouldits duplic r!s3twoW dustbRto flbjackety[ to enjoy had been tooS]sBhushhad stolencschool wCetiptoe"\nVd (Hcontempl (p4~performance |!heQributs'Zt2%broke up a flew to P1 in ear: "PutHabonnetlcyou'reBhome11you)5\rcorner,'.2 'eAslip|rthe lanAcome.!goQoAYcame way." S6"ne+5one group of -gCith EF. InL:*"et e #la.:qthey ha {Uy sat," a5JBthemQ)3ave the pencil 0.Jriin his, gui 4 3ed a surpr Ot&Gn ar2w#fealking. ToAswim]in blissS}%!DoLlove rats?" r! I hatM do, too--LIVE onesI mean dead,qwing rouSr heaAa stq[1for much, anywMA likIchewing-gum<l25o! 8qome now/?8"go1letAchewV3 2youUqgive itQ3 to8AThat`agreeable& hey cheweBturn'Y?K!irSk,!!stRbench "cet#ntment. "W>)an/circus? T #YeQmy pa7!"mew*Atime/ET" "I)f three or fouryQs--lo:. Churchr shucksbD-C (on/; qbe a cl5%nWScI grow )"! ill be nice1y'rBAlove ll spottAL1so.=v1getAhers of money--' dollar a4 cBsBSay,_+bengageSWjt`(2!b ٪"ieN.+ 2youC!to.E so.CknowqQis it2/Like? WhyG You S Qa boyRawon't \ FZ\ Zcyou kiPw all. Anybody%#do.b"Kiss?d=1for2X Ynow, is to--well[yIoAEverqH2yes+'Y8 ". z remember m F wrobbYe--yeW]YC%I  TShall 8YOUHB--bu5No, t now--to-morr8Oh, no, NOW7!--Vrwhisper aso easLQ #o took silenc Acons"and passedBarm Arher waiS]QT talezC7/outh closuher earn he add\$2Now!--d t-P3ShePj" a^2You vBfaceBs^23 seI;I~you mustn'<[--WILL you]?&,!N  .a." He n\DidlyZ(her breath stirr?Bcurl , "I--loveP-.(r sprang#tand ranfs+YCes, with1aft*uy/x Cher 1JQaprone1ped"nehV pleaSWn]ll done--all a. Don' be afraid Eat--+?+ll. Qhe tu{"aD YhandsA+2she us  qs drop;Qface,rglowingy"truggle,,O submitt-!omqred lip 3rNow it'ACdoneEPBt 2yout0mk+@!toXy,2 meand forever. Wi 3'll)u!LLkmarry +2--aX - 3ith)CEly. :. u's PART{)I('U*we^w02me, Rthere<Rchoos Dnd It parties, bE  1wayeO4're DIt'sW'3. IRheard -|%'g>mSAmy Lawrence--b2bigF1tol{ ~DlundUe stopped,1Sused. BTom!,/irst you'v3 to"W chil2cry94Oh,trk I"arshy   1you1Tom3 kndd i  BneckJ j%sg0%im!Qrhe wall1wen\bcrying05  ing word GQas req$: (!pr4as he strodWQbutsideY,2lesquneasy,: Sglanc2oorMQy nowthen, hoping she.RrepenSato fin:4shee-e1 to81 barnd feari.;'roS!ea hard2himke new advancesM ,Nqhe nervRmself{Q and _]"zstill stan797, sobbing.!'sDt smote himD ?2 ,ing exacoQproce-ge said aly: "* ], I--\ A." f4ply 4bs.D1"--/tingly. Y !mea?" MoDTom got ou( chiefest jewel, a brass knobToan andiron2{ $itd h,2thaq,{/3w * y Sc3uckY the flooruTom marH.:C hilR 1far[!rez1 noday. Presently 3buspect rRT1was7in sight. < 2play-yard7SthereU1she,v Cc, Tom!/alisten}trL7had no companions l oneliness. So s t`Ro cryfp1upb herself;qby thisZ L1gata3gai[ashe hatAhide+Qgrief?6cbroken aK of a long, $Q, achhfternoon6! nk#mo Astra/VSto exbsorrow/ q'I TOM dodged hp t through lanes96H@&ou!r51ing3larinto a moody jog. He va,"branch"9"reDH  6prevailing juvenile superstiti!0 c water baffled pursuit. HalfC1! l$disappea<+Bbehi Douglas mansion jbe summ"'Z ,1wasly distinguishablCoff Ccvalleyۖa a deny-od, picks pathless wa>r2ent;4.!onssy spot,spreading oakrnot even a zephyr(*_anoonda(at had 260 Tsongscbirds;:1 lasa trancCwas Vby no sound the occasional far-off hammeof a woodpeckiBm 1 re .1rva|wense of|8*sprofoun=Rboy'su)w!1eep melancholy;o A3s w<happy accorqhis sur1ingA sat< )oAlbowhis kneeO2n i.S, med69 * rhat lifbut a tr=1, at best +3orlRQbeen 2!eda2g--Q very dog#" by some day--maybe wh@8too late. Ah %die TEMPORARILY! Buselastic]o?ath can4e8Aresssqto one {rained shap*46Tom_&drift insensiblyJXZconcern"is7|.T cack, nowmed mysteriously? aaway--A'so3 ?countries beyoBseasQcame S! How 2she{ then! The idea of beQ recu,mto fill himdisgust. For frivolyR jokewStight"anAsy intrude`/1 upbspiritwas exalt3vague august AEthe romantic. Nota soldi<,"yell war-woraillust. No--bette4ld#joIndians,unt buffalo$$gowawarpatr4x2S rang-the trackgreat plaite Far W 0QfuturM+A q, brist2with feathers, hidej$ith pain,bprance. ,(QrowsyN $er|a bloodcurdssar-whoose eyeballaG unappeasu envy. But noOb gaudin than thi/dpirateas it! NOWK2lay~ #"im"glaimaginsplendor. HowMHQould c people shudder1glo(AS go p{Sthe d2seaf"hiu,1, l'qlack-hu 2racZ02e SsFc StormHIisly flag flyA fore! And at the zenith ofQfame,suddenlyDIold village8Cstalcb, broww-beaten, black velvet d ArunkCjack-bootcrimson sash,AbeltJ"horse-pistol9e-rusted cutlass atCAsideM2 sl4("atTwaving plumeIcunfurledthe skull Abone*  Bhear[2sweobecstas>$G #s,3TomJ, P--the Black Avengerpanish Main!"  j,d Acare's determined)2runfrom hom Renter' /\.2theDnext[ Afore rust now+1 to&Wreadybcollecresources %)Aent rotten log nv%'an2digu 5 onFihis Barlow knif1oonrck wood ed hollow"puusand uttwis incan~,i8 dively:bhasn'tDhereovW!st 2re!^rbcraped`"ir Q expo pine sh9:i8and dis(chapely,2 trcH-[5hos'and sides wer/ds'iHra marbl 's astonishmenboundless! He scratc Ss hea a perplexed air7RWell,1bea*y> +Btoss5pettishlyStood cogitatUsuth wasfa Mqhad fai91and0-Brade0AlookR$on as infallibl byou bu OLcertain necessarylsBleft  fortnigh'BCopenCplac"8theP" h ajust uh3yout%a1s2had1los.  t0 H,9 |&Qno ma how widely+}Qk"w,~ bctuallunquestionably *-DtrucF2faiQ shak"-Q its Bs. H"Cmany C Rasuccee3but{aof itsBing :Q occu2himtit several timesC, himself,n;1e h*-scs2warvpuzzledy!an\decided $Qwitchainterf Bharmhought he tsatisfy at point; soe!ar<1he Csand aqfunnel-Qd depo!itJ9=$ F2 toyG and called-- "Doodle-bug, d $'#mev0Wgknow! 5 5*! sn1egaBwork"3bug e a secon2darted um)fright. "He dtell! So it WAS aAdonef !I ;%!knv5'"HeDknew2 iQof tr to contens#chahe gav^"Ś$ag%iT`he might asAhave>  w1 ,Oatheref@Btwicl.last repe2wasRssful$0Qs layU1foo Qeach a. Jus^%ebYntoy tin trumpet 3faintly dow%green aisle~QorestWoff his jacke|trousers,$ a suspe9belt, rakN Tbrush 4thelSlog, 8 n rude bow1arr| lath sword4in A7$Bseizse thingSbound, barelegg 1 fls "AhirtL7halfelm, blew an answ@9atiptoelook warily outk1way2thasaid cautp--to an }!ryH!an Hold, my merry men! K;BI bl06Nowf>q, as aiAcladbelaborarmed as Tom. Tom]Hold! Who s7ASher BFore_qhout my+q?" "GuGuisborneVAan's).^1art-L--" "Dar  hold such language=Tom, prompting--fo8y talked "se book," qmemory.l ~/ dsI*! I am Robin Hoodkthy caitiff carcas:Ahall%." "ThenRindee% famous outlaw? Rvgladly will I dispute#2the=Fpass3wood. Have aeyGWtheirqs, dump4eir.Brapsf e ground, struck a fencttitude,!to61kBv) reful combat, "two up andfdown."p!E Tom aNow, i a've goQ hang=Ait lM!61y "a," panhK !er k. By and bhouted: "Fall!K8! W`+ sha'n't"Nrself? Y(AAwors!it/4Whyh M@!'tv;A#ay it is inVbook says, ' Qone boa[stroke he slew poor $.'!toNr ,ame hit oQ." T#>PFuthoriti 1Joebed, received!whE@nd fell.&"4U Joe,^up, "you8o(N2 ki1*Ffair{f!docE_/ell, it's blameC's aQBsay, you can be Friar Tuck or MucAmillD[ss%R lam M h a quarter-staff; or I'll bSheriff of NottinghamJe w9h?Bill 0AThis a@#soadventures were cr4FATheni!beB6 L!wa- !by treacherous nun to ble s strength away 1ughneglected w- 4And/}! r 1entAtribAweepOC4s, R|Qhim sbforth,V m"ow(his feeble hands", e" Q fallTere buryuu 1eenqtree." She shT$ b&would have diedQhe li>+Aa ne0and sprang upMAaily a corpse.->dA, hi!ira!Gutre Ooff grieao <$noz4u3mor Bwond what modern civiliz= claim to h Qensatiloss. They;F-rather be year in than Presiden the United States 0 CHAPTER IX AT half-past nine!ToB Sid\1senm"be[usualir prayer=(onqK Aawak waited, in rest"imc<{it seem0q be nearly dayldhAlock;Bke taqdespair&and fidge#asrves demQ, buttbas afr+aSid. S12lay,%!st"upJark. EverLDsdismall<2C by,'YSness,a, scarceo[fnoisesemphasizeSC ticking aHh Ato b!itS-A1. O+"&ame! cT(!cstairs creakently. Ev1ly 6 !ts abroad. A m#Rd, mu(snore issued Aunt Polly's chamberA now4tiresome chirqf a cri!thA human ingenuity locate,JQ. NexV ghastly?SdeathwatcDwall bed's head made E--it#abody'sMPnumberedUBhowl{far-off dog roseg 3wasAa fa<K a$r O./an agony. At ih| 1ied+had ceas@d eternity begun;00 to doze$Aspit2e)chimed elevenl0A;#%8me, mingl Ahis !formed dreams, a most ' caterwaulwA raix&of a neighbo)awindow81urbSqm. A cra"Scat! devil!" aQ cras<an empty bo;z}ais aunt'sCSshed T#"dea single minute laterlGand jr$al,Sroof 3"ell" on all fours. He "meow'd" withn once orpn jumped  g3]*QL. Huckleberry Finn washis dead cat #ysAW1off\A,#edO#a gloom%thh," (all grass4graveyard. It &old-fashioned#ern kind13on a hill,5Da miK'Eaillage<1hadazy board fencet $itcAlean 1warY1outek$th!buZod upright nos1. G n!ed!ew rank M ? cemetery. A2old*spsunken in,Mnot a tombston!; {-worm-eaten qs stagg#Rover $ aves, leanaor suppor 1finnone. "Sacred) of" So-and-Soabeen pdm#="ittLR have7Sread,5am, now*1n i3 r7lFA wind mo $reSTom ft {\, complai(#atw(x\<R6nly ir breath6[ -Solemn(Q silew&ppX $irvyo! t arp new hea1yk1eek6ansconcQemsel2ithq protec0ree great elms$grew in a bunch?-WDfeet " "y U  42for H "a 1imeS hoot abant ow.]"btroubl !ne om's refld1ive%.aforce Dtalk) Qsaid $: "Hucky, do&ɘ6 ead peopleGZ3 usDqhere?" Zed: "I wisht I@eEQ's aw3Zs, AIN'T36Q"I beAis."ea considerable pau*"il\Scanva "#iss inward! n_ %ASay,3y-- reckon Hoss WilliamssI1#O'Q he does. Least8rsperrit"7, +a+2 I' #u MisterxI`  Aany l DQs him#A "n'Foo partic'lar1(tXalk 'boutase-yer  Ra damnd convers3die!. Qw Ahis comrade's armE1sai:Sh!" "What is it~$?"i nc%Atogeq!be#2ts.K C'tis again! z1you+{0Q! Now"OALordTHcoming! TQ, surmat'll we do/I dono. Thiny'll see us!'OhbA can!in^ Qdark,M as cats. ihadn't comecOh, doay!. Aliev<1bus. We(a doingl If we keep perfectlyR, may1y waB us N$I'll try toRbut, Y1I'mbBof a shiverListen!"be1!ir s e tof voices float% 4far`(A "Look! Se;Fre!"M  w-fire. Cis it." Somv/1figaapproaK'!Rloom,M tin lanternaTfrecka  innumerable spanglek  K#a d!t' sya. ThrexA'em!yQwe'reqrs! CanBprayNB:BThey! gto hurt us. 'Now I5#meo sleep, I--'"8 AHuckHUMANS! On! iWyway.'s old Muff Potter's }aNo--'tqu so, is AjDYyou stir nor budgBCharpfE to q. DrunkBausual,Cly--qold ripAAll O !, 4stiI5tstuck. Can'"1Herq#Dy coN.[8hot. Col2B Hot. Red hot!'re p'inted?r ,q"!o'qs; it's Injun Jo(2ThaFD--that mur!' breed! I'd druthe Zdevils a der'>!. ky be up t4The.| Dnow,! t 1men $re!e 1     ' hiding- Q. "H?9Dt is Qhird ;\*:wner of it hel TTreveaV1fac young Docts_`1carryingYcbarrowTA rop a coupldshovels onCcast#lo=!c2opeUF7" d1putd|_R56karH2ack1st fX2elm  Q closIhave tou1himurry, men!" !idTa low"#on91com at any moaRJy growled a responsgan digg'Fo(*2 no# b<"gr s)Qspadetbchargiir freighw Amouldl7 was very monotonous. FinaX Q upongScoffia dull wood*<2entO4'Ror twyRhoist'dg>Sy pritd!$irB, goB!dyF!Qit ru - `Tdriftg?Rcloud(0allid faN4he P!as3reaaorpse "it, coverea blanke>buCope.l(out a large spring-knifkcn;#da3z Tthen " Nm$cu Bng's, Sawboned you'll*"ou$ Afive\$ s?y alk!" sai.] BdoesSmean?3te. "You require3r p?Sdvanc(I've pai#'4B don(B tha ,; r Q, who Dnow @*q. "FiveBs agqdrove my q your fX's kitchen, when Ito ask f@(c to eaK3youWa warn'!!re2any goodWswore I'd get,AzQyou iuaa hundcgears, RAme j1 for a vagrant. Dta thinkiqforget?I^Sbloodq Ain m1 no.2nowvGOT yougot to SETTLE"r!" He EQreate<,e !isy Bace,n!2is  Tq8E1retacuffian dropped his !exDCHered #hi^(&rd~b next ! h-t grapplF "wo)Rstrug'and main, trampl% gFtear@3'rheels. !JoaAfeeta81 ey2%am!pa1nQ, snaQ3 up'/V"cr"Q, catYEAtoopCand  w'Tants,Q an oCunitwat onceQ,d free,62Aeavy5 of'n fҲt(Rearth"it8? c YiL A sawXCchanSj2theb1hilthe young man's breas+Qreele4BGqpartly , floodi  l* `ablotteXAreadcpectacf1 Bened Aspee!awHdark%> remergedO , '8two formsPRtempl }aamurmurulately, gw*gasp or two%2wasKm- rTHAT sc; :Q--damF0Rrobbe8body. After h9the fatal2in r's open R hand M dismantled } --four--fivss passeJ7.mB za1. H1nd dw#; C Q, gla!atand let it falla>g)sat up, push2bodA himLJ gaz]aK&confusedlymet Joe's1rd,ie, Joe?u .a:ay busi%#2Joeout moving.d]d+[%I!!it{] 3! TRT 3alkdewash."YAtremDI ew white.1ghtagot so"!I'BM!r!o-@it's in m* yet--worse'nw= rted here.vmuddle; c!$re=#an$gQ, harqTell me}--HONEST`Aold ar--didB it?zJ(qto--'poAsoulhonor, I nevt1ant5Joezc#Oh$+Qhim s, ad prom! -1youC?ay1inga he fe6G ) Bflat !up:3comX1reeX[ding li!.Ajammz%.5 'asE you7S clip ere you've lai'!as a wedge til nowbd{Uwawas a- I may die1if B1all on accou(bwhiskevV!axcitem"I .uC$ weepon Clife: fUO_;uAy'llsay that.( V8ray you Atelle--that's a  4. I_2lik</U !upE { etoo. D remember? You WON'Tc]a, WILL  A/ApoorS'Eture o SkneesUrstolid G#alaspedQappeaa,.)4'veA #fanbsquarej 8me,N# I<#go$n :MsXs a man can sayIy0an angel.bQ*1you^!he0est day I live.> ?Ccry.d 40$#isc 1anyYsQblubb. You be off yonder wa!go+T. Mov 3and5!leny tracksX"onM(quickly increaseQa run  &)He8 If he's as much stunne Q lickfL2rum2 halook of bel#he1eBtillzgone so far he'll be +}-e\!it:Ruch a>% b= --chicken-hear1TwoO tqs laterD0Rd manv ArpseA lid 2the ?+urno insp8!b moon' ness was completet 9too-X THE two Aflewqnd on, towarkaspeechwith horror*y Aback;%?aulders|!to, apprehens95'$yA$m &be followed. EVastump #up'Air p9&.'and an enemyw[+athem c+:bbreath"as"by"Aoutlacottag41yy.=21ark1*aroused +H-dogRagive wq:qir feet Af weqonly ge=ld tannery!wegk down!" whisp&1Tom|<Qtween5dths. "4AstanRmuch ]&ucC)'s hard pantAwere-1repboys fixed sSeyes z 1goaDBhope"4benir work to win it. ained steadily]1st,sIy burst open doo cgratef BexhaIiBshel, shadows beyond. Beir pulses s4Tomac2 2'lli!BIf D dies, I61 hav>!it?D m !?" y, I KNOW 1Tom#om&2t a$JEn he #1Whosell? WePBat aj  ing about? S'pos%!th1appEand q DIDN'T!? he'd kill usLvoO:  sure as *g <@  ~o myself, HuW8q"If anyAtell)t 3, i)Cfool. He's generTdrunky%U !--2 E s C "itrN!ca#teJ:#sQreaso 8QBecau>&"'d1geSwhack"F. D'3 he*5seeT?$ \7!" "By hoke:$'s-!" "And besides, look-a-here--maybeqfor HIM<No, 'taint likely ^GQliquo5ghim; I#th  |h Rhas. 9pap's full Atake/belt him&3hea< a church)2youn't phase 1say his own selfZ)i3sam !C, of(Fqf a manjJGoberZ W&)dono." .*$ve*p)2you"an!1mumw%to.*  #atadevil 5Rn't myQy morWdrownding us&a Acats!weto squea(iF+"ha!. X>u, less swear to one/Z"weveo do--0qkeep mu"greed. I Xkb. WoulGAholds_Un we--" "Oh no @! dA thi . for little rubbishy commokngs--speciwith gals, cuz THEY!c anywa ablab i: huff--but!or%^e writing Ra big BClood2's m0 applauduis ideao1BdeepAdark  t;1our3 circumstances1surRings, ijbe pick'ya cleaniOlvAmoon', took ar fragmes"red keel"7 f 1pocDkK1 onV#wo0fully scra!'these lines, emphasizing each slow down-stroke by clam~7his tongue AeethRQ lettpApres QCe upW&s. [See next page.] "Huck Finn and Tom SawyersCs!ndI+Awish may Dropd!ea6 QTheirT"if33eve1ellX!Ro  p5filKadmiration of~acility inA, an sublimityQlangu3HC'4pinqs lapelH6was(Qprick,QfleshWN Hold on!!dob. A pi1assA8have verdigre#n Qp'iso$/ swaller somic --you,a." SoSunwou8bthread"%his needl!Aboy  1e b.QthumbcsqueezBa drfA. In,{Dmany2!s,amanage2sig!Qiniti9u~8Hthe ~ finger fo/e3ashowed  1ph"! HQan F, 1ath%2bur9!e 1le q5 to:,dismal ceremoniaincantfqfettersJ$ b#ir8consider(Qbe loF"keArwn away4!ig[AreptURlthil(!ugX$Dreak[Wother#A ruiEAuild2nowLQQ*iVTom,"6, "#uYAEVERf ing --ALWAYS?" "O r it doe]cdon't y difference WHATv xY got J BWe'd"--Q6YOUe Ywts rcontinuHtime a dog set up a long, lugubrious<outside--within tenc*md boys q",qan agon+!.ich of us^4 he;%!ga4 dono--peep througw crack. Quick 1YOU#-- 1 DO#Hu2aPlease1 72h, lordy0thankful0I2his)4 Bull Harb`" * [* If Mr. y+d a slave named Bullk spoken of him as "Dl!,"aa son 2dog!atZn"]   1--I" ( most scadI'd a betmM a STRAY dog he dog howledv~W'3Ats s:"nc&.2my!%!no'I IA "DOM! Q, quabAwith? !Z%eytrDHis z"waly audible"Ohr, IT S A1DOG1, qK Who7Amust3 us both--Uright"5.+vgoners.EU1misM   V< I'LL go to. I been so wM m2Dad_1Thites of p1$oo!do BveryD a's told Ndpaxgood, like SidNr tried !noaever I 2off time, I lay I'lWALLER if"s!7Tom0"nx4( . "YOU bad!"7Q"Cons!it ^ ld pie, 'longside o' BI amTLORDY 9 only had half your chanceom chokeds6andh: "LookyA! He?9BACK to us(ucky looked!joh "hil9he has, by jingoes! DFRbefor.bhe didpIS#l,e"!this bully, y. NOW whowing stopped. Tom !up ears. "Sh! k BthatI#0!ed"Qounds--like hogs grunting. No--it'!!snC mqThat ISkWAbout"it8I bleeve3Uat 't| #. Bso, a. Pap rRto sl{Aere, Stimesv t$"gs laws bless<1he Rlifts1s'HE snores. Buhever comOto5own{hXEdventure rfZsouls`/Qdas't`o if I leadR 1to,2, s~ts quailep_7the temp up strong:7 3oys#ryJAnder{2ing'7 @#to@Sheels Se !y 4btiptoe  , 4oneJ CthervJ~4hadlqwithin 'qsteps o|!er'pBstic  it brokera sharp snap.man moan]erithedp his face came inK . It was"ha+rd still\|C too)Aved, )Dfear|(? A nowlypid out, n weather-boar& $-%at2 di# sQa paraword. J qrose on5'B air!w1tur n+!th-2ang  Ua fewQ Xt.Awas $cFACING7nose poi* heavenward! geeminy,VHIM!".A botds a!--say a stray dog3ai Johnny Miller's house,A mid2,!#as.eks ago;6 ppoorwill=1 in4litbanisterZ2ung|aame ev?0U L#B}!yej W"ndyE#se 2. D&cGracieT falls2Afirebcrself terr next Saturd;#Ye@sBDEADwhat's moche's gbetter, too:you waitbsee. Ss# ,Cure  z,)a niggers sN:2all *h<7c,dWBSihis bedroom Kh"al Apent3$ss]$excessive cautionCfelliP congratuP.2himMRCknew escapaden1was _Raware3the gently-Qas awake$Y bv5. eawoke,=1andCrak$q ! ig# lAsens&the atmosp+HA%##Wh% ae not called--persecuted till As upRusualK4  KLtW.%Nairs, feelowadrowsyr family R at tԌ!bu finishedQkfastAI"no of rebuk)Nwere averted eyes;:!anA'ofCHthat struck a chillhe culprit' s He sat "nd &reem gay2it -Nwork; it E$no smile, no; he lapsed "leyheart sin'$tdepths.HNN"idG bbened ir3hop>g2Gflogged;Tianot so aunt wept overxand ask*m-E !gobreak her[!o;rfinally3him o{"ru&3andRher gray hair '1 so=~ '?2 usZ hT: try any more.Z!waCan a thous"ppgaA was sorer nQ:"anL1odycried, he pleaded for forgiveTpromised to reforh 2andj {.[jdismissal, !!he_1wonan imperfec51cestablut a feeblfidence. He lefk  Ro misC vAl ren4ful(2Sids 2 laB prompt retre back gat unnecessar_!mo^o school O%3sad41ook+}hqJoe HarHDwondered i-!ha!ic%nir mutuala<Abody2Dtalk r intentlthe grisly "them. "Poor fellow!" 9T+Cught a)Son toG@=grs!" "T2'll) iy catch him!" This ift of remark"milB, "IzQa jud';=frNow Tom shivxAfromA to heel; >D stooG3 of+3JoeZ$isB12beg}s6Bbe, andas shoute!'s  Aim! 7com!!"U!o? Who?"ctwentyT8. }1QHallo0s1!--=3out!tuM{&Am gey!" PeoplCrees over\'Aheadrrn't tryYB--he4doubtful and perplexed. "Infernal impu "!"aAa by~er; "wanosand take a quiet$aFwork12--dQexpec 263any=part, now u- b, oste%Ausly]3ingC" btAarm.;pa's facw haggar &the fear tha .W bstood 1urdman, he shook ara palsy4bface iNBhand@ QburstJa tears P!do#friends,&sobbed; "'pon my pThonor> z0iho's accTyou?"F" aYicarry home.xCliftme1and3ed ` thetic hopelessnes5sw!:"*Q, youaaised m/"'dD."Is ?V i4himM#. msiy anot ca=1easmhe groundn-*BSome!1tol"'tEM8Ond get--"-1hud Qn wavr4f2les` ra vanquSgestus?"Tell 'em, Joewv'em--itl0n,1tooMbEstar`#he  2-he8 liar reel offrene sta?_# FaFlear skydeliver God's Eningmp]f1seeAroke3tdelayedr JJ3illBaliv'!iraimpulsx  BoathE!avubetrayed prisonerafe fad d 5wayBinlySmiscreant1solrto Sata.#itIbe fatalReddle]~ Rroper-1sucQower - a"$hyyou leave?"DwoC|d Qfor?"ab BsaidRn't help it--$,"amoanedx:2 ru+ ?1see} 3but he fell to5. d repea)BjustZSlmly,minutes after inquest,=Foath 1seeCwerewithheld1q 1rme20qbbeliefH1Joej h Aevilw become,Bm most balefully interes1hadDA , yB not+ M  bey inwu(bresolv w= nights,d#1L should offer,Ih%ofPa glimpshis dread  3hel2rai !of[NRput ia wagone rremovalQwhisp3 Q 2ingv  l0!blqlittle!; Dboys&tXappy Tturn n$wBtheyQdisap "ed1morEn onarked: !three feet of . 7it O AfearL1ecrx+ad gnawonscienc /iqs sleepvAas ms a weekG1at Afast_~3Tom/' !alCyourx1so t3youp8!e B hal9"ti^rTom blaband dr"c H's a bad sign, Aunt Polly,*dly. "WzRgot oB min_d?" "NQ % '[Aof."k23oy'shook soaQhe spcoffee. "An 2 doTustuff,"Ur. "Last said, 'It's 2" t it is!' Y7Aoverover. And y!, 'Don't tor6me so--I'll-"!'S5CWHATQis it$V?" E+  1Tom( re is no\2ing*+ Qhappe\1BluckF2cern passedm7S's fas3 torwithout kno.!it" Aho! W3ful1. Im!ity4 my24Q3its7  S%Lqfound a-Sightypr itself . Becky Thatcherd"st #tolMT had EQhis pia few day<'"whistle her dow+!,"1fai)&HeTfind `"ha her father's Lqand feeI%< was ill.rif she p2 diP)9a3`qno longbdok an `@tar, norq piracy charm of lifCgoneMadreari2lef}hoop away,#Bat; $!wa 3joym3 His aunt "ed& 'rll mannqremedieS2him06wasRose prwho are infatuqwith pamedicinea-fanglWthods of produc2 or mend:an inveterate experimA3 in-s. When sRfresh'cis lin Sout s!in'k{2it;Kn herselfp?iling, bu/!el"at Whandy subscribert-!ll#!"H" periodicalNphrenological frauds olemn ignorance %B inf#1was^th)strils. A "rot" they cont about ventilR !ow$odRet upj/Ro eat$Cdrinl42howQexercI 2 22frag?!onTDelf *.1sor#clto wear,&all gospeӲs=aver obser!ha! h-journalscurrent month customarily upseXhad recommenO <Rbefor21s simple aonest e 1was+5 soan easy vict!gaQ$d <]quackydthus arm:'bdeath, .9 pale horse, metaphorici 1spe> "hell foll"Qsuspe `aot an &1 of[$$1balQGilea6 disguise&he) neighbors.n!wa6 creatmee3new/,low cond|)f$e!haRaat dayN*,bhim upehi}!wn mBqa delug Bcoldn she scrubb3a towel liki7Aso b?t him tona*Bhim Aa wemqblankets 1Aweatas soulw1 "the yellow stainsiV a his pores"--as7!Ye rwithstabAhis,boy grew morh  melancholyp!ej|added hot baths, sitz hFClung,A boyX#"inbdismalShearsRassisslim oatmeal dizbr-plastersb calcuhis capacitn)Hould a jug'sfSevery day}3cure-all-#om come indifferQ32ionn!!isfW_0cphase r1the1Tlady'L,constern;ice must b9!upny cost. Now?of Pain-killthe first a She otd a lot)Ua tasteD 3as with gratitud'Rimply7in a liqui0 J  {2and&P3els2!piZO iA gav a teaspoon# 6Xeepest anxietB,qe resul &r mstantly at rest,Zat peace again; for""?broken up` #bo+1hav!#wn a wilder,i , built arunder him.3feli.to wake up;-Klife might be romantic enough, iQblighy, , c1getyD tooiAsent "oo  %ng it. So heat over%!ouC!nsd ,X1finchit poO fo+n# 4Qfor in4ofthe became a nuisanch Rby teeZT help'2Aquit)q >Ieqen Sid,had no misgivto alloy!dePEsinc&3TomMF bottle clandp#el (" !rebdiminish" !itW Cccura t5was t!ltIta crack !siG-room floorit. One day athe ac 3dos  Sy"#'su$ c along, pur#eA(%heHR avar.lqbegginga({said: "Don't askit unlessAwant&Peter." But s1ifi# W2. "You better make suh$?ure. "Now you'v( give it to you, because E $ #m"mebiEQyou d,mustn't bl8Ebut your W agreeableEH mouth open)Voured.Sprang a couple of y+Aair,LSthen %ed a war-whoopsL!f & the room, b st furniture,/ flower-pom*  }Z havoc. NextiRose o}"hi6,#pr ja frenzy of enjoyment,<2his,F !jL proclaimingunappeasrhappines % Atear ?ahouse a spreaQchaos>destruct! Gath.U!edDime r&!im/w$double summersets, 2naly hurrah,AsailG1ughVt, carryK1res^Gthe ZGm. T  Bpetr astonish2 peer glasses;Alay ;qor expiaKRlaugh?#"on earth ails@Tcat?"N'u, aunt,"O. "Why,+i!diaact sogcDeed IWknow,e; catsq6kthey're having c A" "$ado, dof'?"Btonemade TombD1es'at is, I belie<(2y dAaYou DO1-  Qdown,n 3ingwAinte>emphasized by{ R. Too?@!viAer "f.R handthe telltale 1visC ed-valanceUi ald it tom winc 9yesBAraism Qe usuandle--5"ar.csoundlj %DimblS, sir (1tre"at)dumb beast so #pi Thim--Zd!nyj." "H!--you numskuhQat goAdH" iqHeaps. BRbif he'?Qone sqa burntF4out2! S2 ro 0QowelsX!of3'w"n,PBthanra human!" Z!fe: sudden pang6o1Thi1 pu yhl |6 ruelty to a cat MIGHT beboy, too  soften; 2sor=r0',I Rshe p<'3 onDheadd gently)'qmeaning -!stQ. And , it DID d !-&om)" i Bfacejust a percepttwinkle peepinggravity. "/!haf Q%ton-B? Ye*BforcX," adR: he 1lea!if!cr`wqno choi("By` `h2farFMeadow Lan,t !ll to "take up" t, Qd fai#up"eaG;, !Fink %,Bhear old familia!nd rmore--i Bhard0v$ou<ld worldc]submit--b A for1theQ sobs.a thick@O1 JW  2poi7m_'s sworn T , Joe Harper --hard-eyCwithD5tlyand dismal purp=Srt. P 9b were "two(but a singl&" Tom, wi 9#ye1fleeve,qblubberBsome about a 6p to escape from hard usag1lacsympathy at= by roamBbroaOFto return"3by  Athatm=1not"m.it transpir was a reques !chK2hadKRbeen  nIkN3#a)1hun1 up_. His mo ad whippfor drin ScreamhX  d knew ;*1plaUtCwishto go; if.<!waXpl but succumb2opebe happy0a regretDing ;"erW1boyxA $un) ddie. As=wEwalk gClong7 +compact to u 8 byePQthersqseparate till death rgm2 ikyj3lay.:tplans. "Qfor b2;a hermitC1livb qn crustJa remote cav1 dy O a#rand wannRgriefQ% m31to 1he U S&a4~_conspicuous advantages1 a "so ansente!pi Three miles below St.easburg,|!wthe Mississippi Riv "a OaWQ wide"a !qnarrow,%ed islanS \6$2bare  o"d well as a rendezvous%1 in2!edrlay farQtowarL her shore, abrvba densk{Twholly un o1estJackson's IC chosen. Whon!*aubject%Qiracis a matted2 ]Ay hu(up}R Finn8 JmRqly, for rcareersho hhe was$jy,75tlykmtu#!ne;I$ot]river-bank two,vn1favorite hour--4\csmall log rafIthey meanLLd. EachJr,2ookl6)such provisiA4d steal amost dnd myste!way--as bec +butlaws_:Rbefordaftern2donCy."agsweet glory of b~h12ttythe towne"hear ." All whohis vague hint!!cas"be mumTqit." AD Tom@a boiled ha9c a fewKs 1%ingrowth onQbluffMthe meeting-8VstarlBveryAMT lay Qoceanl3Tom6ed Qbut n3 m Q>the quietenN!ve%w, distinc$ 6stlAansw 1bd twic; these sig, K&e ;bThen af5ed voice!We!reTom SawyK^he Black Avenger Spanish Main. Name your namesuck FinnERed-Handed VTerro]2easw BBfurnq rtitles,56hisIliteraturA'TisEC. Gicountersignwo hoarse whispers !e Hawful word simultaneJ"torrooding<: "BLOOD!" 2Tom6 sQUC4Cdown@qit, teaboth skin1F/!es~ome extenXB'BfforF {., comfortable path (Bit l8the!of pCicul8!da/rso valu[&  b d4bac3had Tworn 2outy'"it $.gstolen a sg* ntity of half-c#leaf tobaccol- corn-cob 3pip/.3An3e s smoked or "chewed"A saik !do2tar"z)J ! w1hought; m]ahardly'@Z"reaat dayqy saw aWa smoulJgG1a hWd$3aboy qwent stc'@ 5andjErhemselvsa chunk Rn impR'adventurLbit, sa r"Hist!"[A nowT2theV suddenly halt!fion lip; movM on imaginary dagger-hilt4!gi1orders inX"ifj/Dfoe"cc, to "%W)'K dilt," " "dead men tell no taleWhey knew2 en< raftsmen 3allQ lC in stores or haae2{]D exc^ aconduc` /1 un"AicalAOPved off, ,iEmx CHuckJ1oar!Jo=D qorward.>stood amidships,T-browwith folded arm/7hisTstern_: "LuffDbI"wind!" "Aye-aye, siraSteadyNAady-f it is/!Le!t go off 1P 0Aboys 2dilcly droGd mid-stream vno doubtET"gonly for "style,O! t!to E any&particular&a?"l'?1 '?" "Courses, tops'lflying-jib?"Se  r'yals up! La[Saloft,$! a dozen of ye --foretopmaststuns'l! Lively, now1hak\/maintogala@RSheet braces! NOW my heartiesWHellum-a-leeKTrt! SX2wJ4comes! Port, 1NOW, men! With a will!  T\ drew beyoc7mid#&   ed her head7?then lay oi)Hnot high, s  B notathan aEor t=C82. Ha Awas j!duthe next;-quarter ran hour2t1wasGing BdistXwn. Taglimmenlights showed rit lay,1 "sl#,j vast sweep ofAa-gemmed water,the tremendous ev:4!ha happening. 7 7" his last"-Q Ascen!hirmer joy06ter8wishing "she"2rsee himuQabroathe wild sea,~ng periladeath Qdauntj%, his doom| a grim so/rlips. I,!bu mall strain'0R,!to&vet Island 6aeyeshoN'Cthe ["edZ!a vnqsatisfi\a' p last, to q3so I y came near let#e \Q drif)m\ArangQthe i< oediscov "j !inF%qmade sh\o avert it. About'clock ip1morU'Agrout+1bar8 B thewaded backzforth until Ahad 2"d ffreight. ParRlittl|'ngings consist an old sail"isgaspreadIr a nook ce bush$1a tbo shel6eir"s u TsleepVqopen aiDgoodq., .!y6/sk J log twentyirty stepk  sombre depth 4estDen cme bacon1fryb!anI1suprgAand fY"upcorn "pone" stockw4had;seemed glorious sporuAfeas%at wild, freee virginunexplor%5 un CR, far61 2aunm Ba returcivilizations a climbO&!ir3 up6Bfacethrew its ruddy glare the pillared tree-trunk$irbtemple?X aDfoli>afestoovines. W'!he crisp slice of ""on,qallowan* pone devou Bstre'3outt grass,Q;contentmenyBhave3" a coolecZ Qthey 9dena romantic feaZ 2 roh camp-fi2AIN'T it gay?" !JoIt's NUTS!Tom. "WhathHA Aay ikasee us Say? WellB y'd just die to b&be--hey y I reckon so, 2; "͉s, I'm suited. M/u't want"better'n$Aever@#Cgen'ally--and > Rcan'tXband pikAa fe<Z qullyragDso."HAthe dfor meXY6!toCup, y(!ch{"sh 'at blame foolish5uYou see 3do ANYTHING, Joe, ) aa[hermit HE haRbe pr0dxm# t0naany fuyyGUll by&tt!ayPAOh y What's \ "but I hadn't thought muchFqit, youT. I'd-deal rather b mq I've tN(!itC3, "'"go}#onsQ!adQlike ^^Ato is`Ce's M'respectedr2 a Q's goWhhardest 6Ican finput sackYa 3hea)s<=$1raiAd--"5at does he put V for?" inquireZ0Fdono s've GOTV.6rmi5!do2:1do 3/5wasDern'd if Iww'v?an't do%`#WhY:'d HAVE toP'N0!itY6I3n'tv"it2run.S" "R "! you WOULDnld slouc<0be a disgrace U no respon*ecemploy)chad fiqgouging Qa cobQ now A"tt:e', loaded it) was pressing Qal toRchargAblow! cloud of fragrant smokj&iMfull bloomp-1uxu   ) envied himW majestic vicM secretly &vqacquire?hortly. 0AHuck:Q1pirT?E+,"Oh^#n1a batime--(b 2hem3get "nebury it in ?6#ir $ w!re's ghost Fings]i kill everybod --make 'em walk a plankSA y!wo "q Joe; "YAkill5RsNo," asT## 2g--they're too noble}Tbeautiful, too.Awear[bulliest }es! Oh no! All goldsilver and di'mondswith enthusiasm#o? !hy#B." o"caDbis own orlornly I ain't dressed. h"a &ful pathoH=;Z#go3!bu1$sex@Ftoys tolbe fine#escome fast,a h0Sbegun <W^2him!^2his'4rags}Qbegin,l(Lqy for wy  a proper wardrobe. Gradu5talk diedk ;vwsiness6'[z t eyelidm fBwaifF pip3ub9U (Drhe slep qcience-aR wearL ta} 3 :J%in . 1saiYayers inwardlya, sinc Dith authority them kneeXQrecitC1ud;h"ru2d a0!no$s(1m a,,were afrro proceU lengths asS, les:might call2 a dspecial thAbolt3 c6cn at o Qy rea1ando7'reimminent verge of O.an intruder( ,: not "down." F ,4e>41egafe$fWhad been doing wroD -#eytb. 3meaAthen!rezr^CcameY to argue it away by remindingzhad purloined1tme@nd applesfAs ofKB C!thin plausibilities;E!m,che end? R!ar%the stubborn&"ta-was only "hooking,"F6,O"am@valuableCplain simpleSing--Oa command againaMi"Sov  5hat;a4 "bub", )U2not~Q be sd.!thl}Ume of.3$ e؍uP Lc 39]dstent # Hfell CHAPTER XIV WHENCawok!, he wond% he was. He sat5Q rubb Rs eye'ny"omBd#ool gray dawT#ya%-8of reposKdeep pervading calmGBsilewoods. Not a leaf r!!; ! s!ob|great Nature's medit!Bedewdrops W 2upowCleavQgrassBQ whitY!xcPathe fi,Dblue3werK|some hand$r it laydst to (/Bdit by a narrow channel hardlybhundred yards widetook a swim | hour, so i the midd#thEnoon2Yy got6ptoo hungrRtop tdthey fared sumptu"ha-%themselves $balk. B_S soontto drag!en6} 2itybrooded pG! s of loneliFsFtellUaspirit1oysy!toking. A sorQundef,e creptWmVdim shape'6#--budding homesick'Even Finq Red-Ha.was drea doorsteps\empty hogsheads~all ashame",1weayC none was brave to speak &a. For A Aboysbeen dullyM!ouna peculiar A ,2"sometimes i>2!ic"ofZ##ckAk"ke6>!no' #(isAA1 befpronouY!fo a recogn72 st a glanc4 \aassume1ist23 atfR Thera ,R, pro_band unK1;Yqa deep,ren boomK floating downDn.#is it!" exclaimed Joe,S. "I [!2Tomi whisper. "'T@!8thu+@Dan awed tone, "becuz4'bHark!")qTom. "L7q--don't\#."2wai% 4hatSan agV] ame muffled boom trouble$| hush. "Le(5seevBspraVAfeet%"hu_ MjS1ownp1y pCy u(1ankM!pe2out+2ated 9!steam ferryboakTabout1bel' v,3Aing @, urrent. Her T deckMScrowd b*<!re^# amany skiffs ,T&oru9 neighborhooBcoul{determine what em&!jeSwhitedburst z E's sKas it expSand rNa lazy cloud, tAsames Cb ofz1orn steners again{ 9now Tom; "somebody's drownded!`HGHuck&*last summer,\Bill Turner gotVvy shoot a cannon ov$at makes him comRdtop. Ytake loavBbreaRAput &q in 'em2set Tyr,anybody!!, L'1ll =9i #!op'I've heardDthatUJoe. qread dolR!Oh)](Ld, so muchW&it's mostly v 72SAYib it ou%. "y >6say<iqHuck. "p r@O1XWfunny. "But mayb!sa)E . Of COURSEb do. A1$<Tboys agre=AQreaso(1TomF,@% a!uat lump3Buninfeescaped, unawaR.Bby Joe timidly H1&ra roundB"feeler"3o hI rothers  # aa ;D--no[_but-- Tom!er derision!, uncommit s yet, join"Towaverer quickly "ex)#ed 1wasTT g f<ascrape4 as#tachicken-hearted a cling-o his garme"!s z&uld. MutinybeffectV/1laid$qrest fo{s moment."heMQened,&#no&H to snoreTQ foll13nexc#laG)lbow motioq,>V %@1twosntly. AT he got up cautiously,7CkneeZ#BsearQ<the flickerflections flung%!he"*!piJ !upDed several| semi-cylinder:3hinAbark%t sycamo)1finchose two whichto suit himin #3lt #fi&ly wroteV@shis "red keel";4qhe rollBB!pu"his jacket pocketFtM $he+Joe's hab remov$lD  owner. A CalsoQto the hatschoolboy treas most inestimable value--5m a #ch India-rubber b ree fishhook@$oEQthat !of marbles n as a "sure 'Lcrystal."tiptoed his way #!s Y "he  h drhearingstraightwayc=a keen ru  "irr \-V A FEWsirX&!waM ) BhoalNbar, wading qIllinoi].re. Befoc depth rea,%Chis  half-waF  a:" p="no%},#aso he k]1wimKremainingOSswam bing ups   $=faster than dcted. However, 1Zr6$al3AdrifUlong BoundUR plac~JfRmAis hA N6Aiecexark safP .R#,35ing. Shortly before tenFecn openroppositBDvillA saw2 ly ? Btree- the high8. Everything^quiet undCe bl- !stK2He dkRGZ1alleyes, sli!c, swamor four strokXclimb7(I)"yawl" dutyEPboat's stern!1thw)ited, panting. ;!ra!qbell taavoice gagH1 or:o "cast off." A]j "la("'sh]ZsAup, s 1 swQ4voy abegun.M in his succ7!fom*ait was2^AtripB 2. A/e!a HRtwelvcifteenSwheels stoppedDTom aoverbo."ndaLysdusk, lSfifty6Bdownk,<rof dangpossible stragglrHe flewY unfrequenl3leys$]C:r aunt's QfencehoRapprothe "ellE lBin a+)1-ro Bndow"a 8was,& r/ Aunt Po:Sid, MaryfJoe Harper's mother, grouped togeB talTH s b ' &the doort B dook softly lifBlatcn he pressed gHyielded a crack; ntinued push,G= band quQevery it creaked,wQjudge  squeeze~9ugh ;i #hiq, warilWcqweblow s=I5up. >CAor's , I believe. Why, of coursr-cis. No , gs now. Go 'longqshut itF"."j"edM"la"Ded" 7`|C"tould almo\"!uc nSfoot.#asJ "Q rn't BAD, so ay --only mischEEvous. OnlyRgiddyharum-scarum, F3He Z2any bresponoa colt. HE never mean12hart@2]%st2boy:awas"--g&he!cr[Irjust so{my Joe--always full ofdevilmentbup to  rischief G`as unselfis'3Das h"belaws bless m&w2k I.an!htz#m,:once recolEAat I3wed myself ]Yis6$Sand IP1Ahim Xgi#ldv!, R abus!!" CMrs.ba sobbebif her3 3hope Tom'Jvter offi*BB"butQ'd been 5in some ways--" "SID!"the glare 2 olc3s's eye,yBnot 12. "g9N_%st my Tom,"Qat hene! God' Cke ctQHIM--F< YOURself, sir! Oh,G2, IuR know=odim up!!!!Hesuch a comforjla he tohQed myJme, 'mosrThe Lor,!th2tqhath taSrway--Blb 1nam"21!w$Ait'sKard--Oh,! Saturday my Jo<#er bmy nos D him sprawl%aLittleH $K !n,TCsoonfKto do over K1hug3and1him6 IeYes, yj1howMfeeljust exactly/longer agoqQyeste(Snoon, took and f3to tPain-killI$ ct@e house down!Go%Agive"I  ''="my thimbleY3boy 1deaab P  H"An'rwords I7Ahear2 sa6Rto re 2#Bu\6Tmemor$X1the$la3sheqentirely as snuff;:T now,Nm Bpitythan anybody elsP #ou E cry -"pu^4Q%kindly word #imm$oY)DFa nobler opin$ H1befdStill,rsuffici Bhis  grief tB!sh] tIoverwhelm herB joy;eeatrical>aappealKarongly0is naturAo, b]R resiJbnd layX*R. He&on'F#ga|qby odds;Bends+ conjectured at fir!atP(/#e#le+;M+ec0rraft ha Unext,2]she missing ladspromised!shqB"heaQq" soon;Qwise-8*$"pA %atU "Sdecidk8g`fC"at tturn upnext town below,;|N(found, lodgede Missouri pQ"fisix miles t| nBperitIbust be`%1ed,1 hu have driv4rhome byqfall if5U1soo/  W searRbodieb!8Qfruit !ef Amere2cau; 2ingaoccurr} mid-channel, sinc Qbeing swimmers,otherwiseSBesca|r Wednesday A. Ifsuntil Sunday,3opexAbe g\!ndMfunerals&$ p"onA shuddered. g>Dsobb-j0 2go.  a mutual impuly two bereavedMA flu =/5Qeach Pb's armvQhad a|,A-o{!#cr jwparted.q was te+ far beyon`Q wontu+cRto SiMary. Sid red a biCMary<#ff 6. and prayeM so touchingly, so 62ith qmeasure1lov8OGer old tremb/Avoic  3welin tears ,B sheK&9h Rstill3A5#shZ"dsrmaking -sejacula1romB, tounrestfu and turn:Q "at* "as", !oa.| sleep. Nboy stole @;*cgradua;Aside, sha"e b-light=#andQstood4r Gher. HisIrfull ofA $e [5hisxq scroll.+ARto hi he lingRconsi"R face,arUsolutW "s x Bt; h(ark hastily iv9 !ntv k[2lipAmade#stORexit,pWabehindxAthreYhis way backmhB!no \Arge ! S2ldly on 2oatwc tenanRxceptWahAman,(xiE slept like?ven imag] CuntiGS 7 zi-<$on. 2 up. When h!pu`!a V6$abhGD, he2S quarrCacro  Qstout Awork !hiT !e , side neatlyn" ts a familiaraof wor1himYBwas &Aptur 3b, arguLRat it;1 beFAshipfore legitimate prey!qpirate, a thorough @ 1be Cfor z!enCreve8B. Soo<a qand entBoodsslwM`arest, torturin Cmean o keep aw:!an]n;Vhome-stretch far spent road dayJ"he r*DRabrea  rVA barr{JO k !unzbwell u1gilI:2eat=its splendorhe plungtream. A "he paused, dripp" treshold2cam + Joe say: "No,]true-blue, Huckqhe'll cl "ac?won't deser2zstm uZ>ğtoo proudfaat sorXI a. He'sBo2 ora55C whac[8/!e 0s is ourz^i4hey?" "Pretty nearKrnot yet_1wriIAsays:B aregO 2her+? W$\he is_2fine dramatic effect, @Aing +l.o%F. AW:o "co2fisshortly provide?2as WQys sea G!itGunted (and adorned)#Qadven*% Ba vaRA boa_ P"anp."wh p>AdoneHn 5hid)BawayAshadwQsleep 9!ss&'ready to$]>e#I AFTER dinner 4ang !ou-hunt for turtle egg+ 22nt *,poking sticks s yba soft vNe eir knees#duJ!A5. S9tAould{|igSsixty<cone ho6Qy werfectly round'ea trifle smaller`an English walnut famous fried-egg(gHCnighFanother on FridaBnq!1AftK7o%cwhoopi ua|s chased(j2anda, shedclothes ,  _tere nakePthe frolic far1 upqshoal wstiff current, wYtlatter {GC leg 1unde7^1cre qun. AndX9 !op) osplashed iY)Rfacesw palms, !7ing#Q aver-@Grto avoiQsprayQd finb g! "ug,jt0 st man du$s (9TAall WQtangl6S"egucame up b%b, sput q, laughqand gas1forth at on{ )BQ7imeh|aexhaus$1runBand  dry, hot!li ?+3covB_"up !by.!byk2terjo original performance onc/>3. FQit ocX /Hn skin re ed flesh-colored "tights"F6afairly!#qdrew a i circus--&bclownsP* b none  |"R thisRest p  `a. NexAy go %ir:+l"knucks""ring-taw "keeps"at amusement grew stanH1and a BTom Cnot ,; kEin k;@f;trousers %kiY!stfof rattlesnake his anklehq U!hecramp so lo8xhe prot+ @Bchar )di *Btime6Bboys!ti%ndwD res#waapart, dropYq"dumps, fell to3!lo1$ly"thEj Ato wlay drow1un.s u  r"BECKY" big toe;*Acrat`!9Angry5 1forD weaknessXqhe wrot!f ,!!thgcnot help i !er&itAEtookz"ouc Aempt# by driving 7a toget7!nd 3 m. But Joe's D1hadhn$Abeyo Bsurr.q $o 2Rhardly endBa miserB iIerlay ver surface.was melancholy, too"waeFhearted, bu)e~A noty 3howexa secret}^ to tell,B "this mutinous d2sio72not#asoon, Quld h$+1o b6Y@Bsaid2eatof cheerfulness: "I beY>Ebeen F 4is 1efooys. We'll( VgAThey>'ide1lasomewhY6UHow'd ight on a rotten chesto% f#--But it roused onlnt enthusiasm 2fad no reply. Tom!onz+3two!se}Aons;KAfail($ooI discouragz!k.M%sa  %" a A!lo%fgloomysid: "Oh, let's !!it up. I wango home. It'sQesometOh no, Joe''ll feel be- b{($by (T?!JuD 1inkah2?C" "u$ $4for)"(t) Bing- 2anyJS" "SQ's no.$Bseemp1it,0chow, w 2re t7! to say I sha'n't go in. I me b"shucks! Baby! Yousee your4,XAYes, I DO0#my.B--an)A, ifhyBe. Ih$2 ban(Bare.c'U"%ed.wlQ cry-I m,"we A? Po08aing--d8?t$it<?'so it shall.2alike i+Xe, don't you`sFstay|?ir"Y-e-s" !ou  . "I'll:Q spea-2you2 as- as I live.1ris\!"TQnow!"&9ved moodi [6and&#d<t!ho#1s!"hNQwants'to\,$ho1et  ed at. Ohr#3iceTand m[Ries.  V,A? Le0f#unts to. we can get0{aper'apAB< as uneasy Blarm 1seeGgo sullenly on/ sUAing.5# QmfortK Huck eying"prjO9Xso wiy5 such an om%K. Presently,v2 paxAwordwade offh"the Illinoie'AAsinkQglanc bU'3loo> `;yVYI#gog!ItfM L4  it'll be worse. J*usR"=)1canKgqAstay27+I!gosWell, g/--who's h ing you.+QCpickR scatqclothesjvtAwish4'd ol3youi`.wait for youq!weCV""3ra blameh5all!st q sorrowR awayM3Tom _Ba!6ng desire tug!at;#to ]#gotoo. He hsf stop,; sw Aslow. It suddAdawn y awas bemBverypQcT3. H2one Y-d?s comrades, yelling: "Wait! (tell you some!F#y j!ly1ped$SaCgM zh5e1ingc yK|cCat ly saw the "C"s # aN set up a war-whoop of apCk#1saiTRwas "Aid!"3qhad tol]m(,#2n't away. He made a uible excuse;O!hipIl reason "be:" fa#ev<T#DthemmA ^great length ofSs$so#men 1hol eserve as a A .B ladNCa gayly:4:9 ir sports will, cha6!im #ut:stupendous plan`Aadmi)wenius of it. Aba dainA and ,!he*ed to lear bsmoke, 5Joe caughQ ideaSBlike to trysXQpipes7!fi 2the@se noviceY1 d\Lbut cigarsPof grape-vinGQ"bit" Stongu8not manly anyway. $yo'Vir elbow1uffBrilyd!slr confid9AThe an unpleasant tastGgagg Why, it's@0as easy! If0a2e/sCall,"t + #SoI4 E. "Ic!no'hy, many aI've lookA peonm$ well I wish I!do's; but I 1%Tom. "T!aRme, h$it 1You1earK Stalk <k--have o qleave iKAif In't." "Yes--5MosUHuck.$7D too Tom; "oh,ZCR. OncW1 1e s5 ter-house. Do rememberBob Tann771 thand Johnny M1 ,Ilcf 1, 'ame say  !Ye\ !. B#ay I lost a white alley. No, 't*.z --I told[1. "472s iI bleeve4Apipe4dayMfeel sickNeither do>}]$itV1. B!be  4\ !! 7keel over wtwo draws. !le D tryB. HE'D see! !beRwould !A--I  Aa tackl2onc 3Oh,)2I!"G@s:youI any more%an!onqtle sni fetch HIM." "'Deed2oul U. Say aus now?!So ay--boys!saH !i BsomeRy're = ,W Qup toQay, 'got a pipe?aPae.' An2'll31kin%1carO like, as6rX  pIamy OLDw", (03 on'rmy toba+bCin'tood.' AndZ1Oh,'" r 's STRONG e3G= $ouhO1igh ras ca'm!Eqsee 'em-S4thagay, Tom 1ish0aas NOW5!!we \"weQerwas offQing, 27 w#y' dalong?Bnot!M4BET@ll!" Sotalk ran onV &itEflag"'grow disjointedBilen adened;erexpectol marvellously ]!^ry pore ip <boys' cheekame a spouting fountainiyj2bai the cellars   rs fast Kb to pran inund;2overflowing+M throatsqin spitx 2all*"doF = Fings"Metime. BothY1ere2ing2pal miserable, 'from his nervtfingersx!. t_ygoing furBboth pumps baiB"Mm|\)id feebld) =Wknife]hCfind Bquiv2lipb 1halutterance2'llyou. You go j`Rhunt r? !pro!No needn'tvHuck--wdS ,BgainAwait!Q hourCr%itpK'"to Dhis :yswide ap oods, both U!pa Aoth a1 0informed him2 if#ha!ny trouble agot riQ"itnot talkative atT}Snight4Rhumbl1henQ prepCdp "ft meal andBparez\ "ey[2no, 1fee,well--some+1 at )mӂisagreedQ2 A !id!aw-dand ca0{ding oppressive:#ai83see02bodiNXa huddl  !so1thet(Cndly*vionshipr4F/} 2ullj=aheat o  breathless atmospA sti<Ty sat94%Awaitholemn hush 7b. Beyo{jfire eK3swaSQup inAblac`!Hr  &aaAglow  vaguely revea^ foliage for a momTavanish4by " crc1str?#n & faint moanA siguL"th0 tranchesRforesboys felt a fleeting ,ywshudder fancy tha?S! Nd !!by/. Now a weird flash,! n?Ainto  hgrass-blade,=i and distinct %aBfeet $it[three white,/tled facoo. A deep pea "thP1rol:and tumbling "r heavenGlostw# r4Qdista$A Ƙ chilly air passed by, rustlingjyn!sn the flaky ashes broadcast !ir TfiercElm FN% stant crashD#retree-tops r'Mic:p$in terror,x%athick 6!p~q. A fewsurain-dropCl paf* .. "Quick!!W"foLtent0csprangs\Broot4amoQdark,awo plu&same direction{ blast ro trees, making &as it went. One blind yH #ndnbf deafJhFnow a drenchinv1 po@#heK hurricane droveGsheets a`c0Qround<" c#u Beach#,the roarafoj-C!s >eir voices7 ly. However, one by; O 8\ook shelterk  .Qcold, /Qstrea5 ,;o%!y =?DseryR1o b teful foK  x 1 olBl fl{Q$soW2ly,0 Wd noise1hav[A The6(esS!er:qhigher, Zthe sail to "se/1its ]4X"wiCaway- %. Iseiz0"s'1}Rfled, ye bruises, toԁ2oak`U86d-bank.b battlsTst. U}R ceas conflagrf of lightnR flamii*AkiesSbelowout in clean-cuTTless Qness:"be:the billowy ,<Bfoam$@Z0 of spume-flakIhe dim outlinSdbluffsoside, glimpUD drifting cloud-rZ1lan1veirmE "L9 some giree yielR>! fand fell younger growth;Vthe unflagg/ S-pealnow in ear-splitting explosive bursts, keeBshar8 unspeakably appa[storm culminatone matcy ceffort# qlikely *+9q to pieQburn ,! ig, blow itBand rq creatuA it,av" 2. IKra wild rfor hom#}Q. Buk}'do forces retir Aweakd h threag  peace resumed her swa  %nt>Scamp,YC! d3wed3hey`Q was Sthankp07eat"^Dthe  ir beds, was a ruinTJQblast? w uwere no3Rt whecatastropppened. |! i pz!ed9A-fir/Qwell;5 t-v-AheedSlads,3Bgene0ymade no prova +/#stHc! m pbdismay2|Q soak3t eloquent iNHtres/,%,1verY0 [aten so far up HQlog iL  dbuilt !(wW it curved upK\3 &$edn Afromground),%a-breadth or so# \V2!weB; soCpatitj-t7kashreds+qbark gaBthe 2sid#qed logs+ay coax61"toQ. TheRy pil=$5boughs ti]# r furnac<|# glad-heaV751g1y d{ , !boo"haOXD feanN ][3satJd aexpandd glorified8Q<]9ndry spot to sleep %6-B. A@6sunssteal iN2oys !si!ov"em sandbar2lay1<Ogot scorche.8drearily se(breakfas"CrustJcstiff-4mhomesick once;:%Bsignbto cherTup thp+;ɹ2C. Buc 1not %fo6, or circu .E, or"%Aremi1$ imposing &aa ray 6eer. WhioD, he`7mRa new devicaK Hqo knockcbeing aq e"be*c!nspqa changOHeattracis idea; sonzs;m^head to heel black mud, like so zebras--alB Zchiefs, of course/aEwent* `A"tt%=s settleQg!By|yn ree hostile trib(Vupon @ bambushdreadful 'kQ%hcalpedHvousands  gory day. Conse$lyan extremelisfactory one. rassembl\Dcamp-rsupper-*<|`KYj4but[ifficulty arose--!d]1notk of hospitalityR-1fir<8 ,: qsimple nAsibiI@"smv2 ofER processeLDaof. Tw davages;7wF 3hadd$ed%. oD}2 wa;with such show 6! aCSmuste# Apipe# 1tooqir whiffA tqdue for1h1gladBgone"rya0Rhad g;S e now smokeA hav Ao go^;Aget 67d be se#un02abl1not AfoolG jhigh promis, #of }practised cautbafter R dfair success y spent a jubilanAning\FeRhappiw new acquirp#would have iwnd skinning"QSix N s. We will$toqnd chatL?And bsince we=nther use >, . CHAPTER XVII BUT} hilarity ?Btowntranquil eZafternoons Harper~Aunt Polly's famiE22ereS3 pumourning QgriefXP . An unusual quiet possess= village, althoug"Rordini 8 !all consci*Ir!du ssaan abs^#ir+ nblittle*sighed ofte.Ftholidayqa burdeL !Shildr61 no) Rsportz h>gUbup. I Becky Thatch1!unqself moB2abo Q dese5 aschoolc)C yar1feevery melancholy sDund  t73to FPShe soliloquize:if I onla brass andiron-knob-!:(*Dgot ` e%to * him by." And she choked besob. 5)7sto CXo9!tchere. iRto dog  x( say that' n3 the whole wor Bhe'snow; I'll <.6A seeb.12is 3t broke )1wn,qP!ndCawayQ down9Uun quite1F!ofs Vgirls--playmates of /and Joe's-- b 1ood2!Qv1 pazfence andfNArentqhow Tom]rso-and-+d2ime"csaw hi6'6how#3andmrifle (pregnant# awful prophecyu(2eas "!)  er point>tWu2actwC"heClads" 8addNpa"and IBa-stR just so-- as I am nowOf)qwas hima Aclos e smiled,Y ?2way!th!l+"me !--R, you knowD!I wZ5Wmeant ,C/1can TL a dispute5who-Bdead.cin lif`Qclaimat dismal|qand offLevidences, more or l: 1amp!DwithVrwitnessDwhen ultimately decided who DIDrthe depl"exCwordthem, the luckR2ies Aupon1selA sor"sacred importanf z1apeand envie=che respoor chap, whono other&z"toF,)tolerably 2c pride 01'Z9# ucked me-BRat bi Rglory failure. Most s "athat cheapen&!1incWWa=4loitered zs2rec2r memori!osu2oes3wedC. W\-B hou 1UfinisFnextell begaoll, inst# r  @I1a vtill Sabbath2the ful sound %in<he musing9%TlSM#on` &rs,V5ing$ vestibulQnversCwhispers#1nt.zQthereF$no/Athe 4 ;g]6eal"of dresses +f womenZ<eir seatsZ3urbJ= T. Nonpi&er q churchd!beS full5. TXMa&Q paus expectant dumbn  CV,D#Rby SiEMary yV C ball in$2 qcongregb old ministere, roselBntileos Bseatront pew$ncommuning2., broken atvals by muffc5obsbaspread,hands abroa5prayed. A mov1ymnEsungRF tex<$q: "I amRH Qe Lif2EQervic'Dceedclergyman dmLuch picturA gra  6wayA rarZbthat e4!ou)!in9Acogn!Uthese,(!pa5!herpersist"bl1him rm always Ys?BseenRfault( Sflawsg +1relaGaa toucIqincidenm&iv`e:RqillustrN.Rweet,X3ous%s people !, how nobl_ beautifose episodespt  O rank rascalit"}.bcowhid 1 be@ \ 2and D pathetic tale1n, e"at r rcompany aand jo( !erba chor swelled upa triumphant&,6c it sh! r-s0ASawycre Pirat3#eds k-1envQjuvenkGDBconf"in%$ea&"s oudest momen_1hisq j"sold"Utroop"ey6 jsbe will;"beFBridiculouCtp UuB I" Tom go81e c )esd!cc4R's vatmoods--uhad earned YByear he hardly knew which expro85ostK,!Rto GozBaffe' BqI THAT !--RchemeoAturn'bhis brpI Qatten sa y had pa4o& mo'og, at dusk on 3, lmvesg+t6; U slep   1edg7Bthe 1ill nearly dayligh`UcreptZback lan@ TsleepE  0a chaos of invalid21nchA>f fMonday2 kSto To1tivhis want Aamou1. Id!ttI<@3say> fine jokB, toHeverybody suffe'G'most a week soAboysra good 1but01s aMjC you% Qbe sop-Aed aNrlet me ob so. I-QcouldO:U overtrl1hav| eN&Aive -=2hin9D1tha" warn't d 2but qrun off=Yesedat, Tom,";Mary; "and I believR OihAoughLCW1youR?Rg!, }#ac7iZstfully. "Say<", mJr'p?" "I--w*know. 'T?b'a' sp'NILryou lov UDmuchwith a grieved tB discomfo5Gv!me! c enough to THINKc, even+ didn't DOqNTuntie)vUany harm," pleadeBit's giddy way--he is2 inba rush%he|uinks ofrUaMore's Qpity.\. AndAcomeADONEj.1too'1'll !, 0!da 'Q late DQyou'dSd+"dfor me>Acost&2so 9 j1you V` for you5H2I'd)ADtterakDlike!I Vnow IVsrepenta1; "s dreamt@1any(I,,L much--a cj$$'s!no2. W QWhy, Wednesday night I!tZsu ! bl # b 8+ woodbox A nex Uhim."TRso we9 S 'do ByourQtake  0?8 !usfD<$Jo#'s -uhy, sheA! DiHNOh, lotsso dim, nowWtHa--can'lIRSomehAseem2ind ewind b)6.{1"Trh1der9s[2p. Come!"6  !hioo$ aforehe anxious minud then *AI've i[(.! t rr!" "Mercy on us! Go]-Tom--go on#R< 1you.1, '*door--'" "Go ON]VEJust;ctudy a . Oh, yes--rS you dkwas openeAs I'mMGQI didZn't I, MaryA[}Bthen^r I won'obertaine9Qas if4 Amade'P/cWell? -I make him do%Yb1himB--Ohyahim sh   M"land's sake! IAhear% b@my days! Dstell ME1any! i 1amswV. Sereny 4& i^an hour older.^Pther getCTHISj er rubbage 'superstition.#1t's/!!brbas dayVF Nex3 I r BBAD,NmischeevousM )"an+ responsibl3n1--Ik a colt,28 Pd$"! AgoodjgracioF you(1cryU"So& "Nof* nM)" "Then Mrs.e@2cryf "JotF3ame:C2she !ha SwhippERcreamshe'd thrit out he"CselfRsperrA1cyou! Ya#Qsying2t's1youdoing! Land ae]Gno!SiAsaidd  D" " O ! IRLBSid. did, SidMary. "Sh.d"leU"heL1TomSHI{ !h^6$off whereM$gone to,  fDbeen0sometimesTHERE, d'youd that!:92his8 QwordsG"Anhim up sharpTI lay must 'a'an angelcere WAS W xCtoldZ 1Joe>`a firecracker73Pet\ainkilleraas truPeI liveQ/!loCtalk%dr;Qe riv)1r ud%3havHCA Suna qand old MissRhuggeH4cri  "en bIt hap"!so 2surT'm a- sftracks /2n't`i.Zq 'a' se" %! \what?Ie3youq, " IwBhear`C wor2aid  !en  Pso sorryq I tookRwrote4piece of; bark, 'W}dead--we are only off 4'p %T tabl_  ;'hCyou sdA, lacasleepv8Iand leaned2lip6 D ,&I;bforgivqhm#at4she4crushing embracpt, feel lik( guiltie%villains.#wackind,  Dough~a--dream," , faudibl!up! A body doeV as he'd do if heVyA. Hea*FMilum apple  s 1was-,t--now gto school.=qto the Oc1Fat2f ui  ~2ack>'d-F1ing"Bmercy [l#t q on HimHis word, Bknow unworthy ofa 1nesR FHis *ad His hand+slp themEugh placere's fewAsmil 2e o= t{%4wHis res>long nightUDs. G2Sid >Q--tak+r)1off( 've henderClong.e children lefw old lady to call o vanquish her realism!sq marvelu(3had1Q judg_"toF_pi4"mi,"hethe house.XAthis zrthin--az\Bthatdout any mistakekWhat a hero/a, now! Henot go skipp~(%Rncingm"a dignifi!agƌXa@ who felthe public eyEm|cindeed; he triesto seem2 th2s ooaremark-he passed along?tW5Afooddrink toSmaller boysl%1flo+cels, as A to 6"enw"le$#bys the drummer1heaQ cession Ae elephant lead menagerie :own. Boys ofown size pretendVIknowaway at all'4were consu with envy,bthelesW EUgiven& i#av1swasuntanne6?his glittnotoriety3Tom !no# Ae pa1ithBr a =e3Dbaso muc}bbof JoeAdeli!9eloquent admir)݅*"eyT1two"esMAnot "inCsuff+."stuck-up."s#1tel ir adventures]5ungy#2ers9B;c@ 9ran end,aimagins}!irrfurnish material+,yorir pipewent serenely puffAroun Q Qsummi; glory wadCchedOQdecidbe independen@ ]6now. Glorysufficient. He_2liv|R. Now !heTdisti?'a, maybJ?qbe want o "make  !le!-- h  qas indi1Qnt as other people. 6 arrived. !seAawayQjoinetrroup of5%Oalk. Soo#!obed$s%3 trYQgaylyR ERforthi1fluJAfacedL Hbe busy chasing4mat?so4th a 2sheV a captur9h$icI3shea+/Cher 1vicinity&89qto cast!nsS eye =gPW1ch ~RI"i2!viFc vanit wB him)so0Awinn!im&only "set "#moE6himSdiligAavoirc at he knewKboutR gave~ qskylark`;+ved irresolutelyBQ, sig 1onc 3twi#glafurtiv45nd @QTom. 2snu71was1ing  particul0"to Amy Lawr7 Dne else. SheArp pRwnd grew1and uneasyKc=2tri1go away, but 2eet8t+2ous:1car71her"he "to a girl*as"'s%g!--)sham vivacity:Mary Austin!  A, wh&"n', #to-n?Cih!#--*Qee me"Why, no! d1? W1sit(Ix!ins' classu1go.Xw YOU!? oit's funn!n'+D you>uw2you 'QicnicU%Oh!jolly. Whol)XMy maa}5oneRcgoody;  she'll let ME com)Hieill. T#'s<!any#AbI wantQI)!ev4# nice. W7Fs itbBAQby. M r1vacBk fun! YouM r1oysAYes,tfriends to me--or3be""he:4ed Ay calked d"lo   the terr$Tstormbisland[h9P#nr PNq tree "o flinders".c";rwithin EYBfeet6lQmay I#G]rMiller.P.1And 1Sally Rogers&+usy Harper. "And Jo[Aon, g2claiof joyful"s 0 ogged for invitNs"To]1Amynturned coollyPcstill Atook# 's lips tremblAbars ca1her;Y!hi$se signsa forced gayet con cha tfJ7?!ouny 1got( !on aand hi61rand had4rher sex4"x'xGsat moodywounded pride,qll rang roused upua vindictive cast Y1gav| plaited tailsik, swhat SHE'D do arecesscontinuedBflirO jubilant self-satisfacAnd he kept )Uarto findG1lacerformance. At las AspieEsudden fa-rmercuryb#bcosilylittle bench behi/BhousT 4t a27S-booklfred Temple--and so absorbed2hey #so?Atoge Rbook, 1didby 5 ofsq+lB besides. Jealousy ran red-hveins. H1hat  2for "waqcchanceQhad o  a reconcili. He callc-r a foolhe hard names a!ofD~#cr3vexd!Am tted happily1, a'y!, 8.e!rt= Asing 3butRtongu{8!it 4He Bhear+,Aas s BwhenZexpectantly h;!onu1ammh awkward assent, (/N sFA misQd as Awise !toaBrear! ,0q and ag%#ato sea eyeball"=1ate>!clryj belp itqit maddUL q5Bough"aw;  ]Thatcher\ once suspe(`iC# lthe living. But3did59 +Ber f%/3toosas glad#Tuffer^3haded. Amy's happy pra<$inA!e.!hiac g&,o attend to; s must be doneAtimeUfleetin vain--N chirpedkT`, "Oh, hang hi%k  aget rioXher?" r those 9he said artlessly !ou" """ chool leJeShe hax3hl, t. "Any(Qboy!"p#gr3is teeth yGH1#buSaint Louis smartd20and is aristocracy! Oh, c a, I lij1youfirst dayuWqaw thisa, mistAnd I 1ick.Y just wait_ I catch you out!9%1tak  ermotionsZArash+n+r= --pumme>hI1kic&>and gouging.{you do, du0? You ho',Qthen,?learn you!" r Fthe Qflogg'as2o 15fome at noon. His L not enduByD3 of4 iAThis jHtbear noAB thea distrf'Rresum) 1 in'h bAlfredI*sy"">!no#to,Ktriumph BclouG 3she/nterest; gravi absent-mindV-s followeGthenLR; two2ree -"pr!up2ear footstep" iba fals%;i Ashe bentire({1 wisbEdn'tjit so faVsen poor Q, see!loP2notV)Ahow,E exclaiming: " aO one! look"1s!"{1pat(Oc at la99S saiddon't bo| Sme! I2carathem!"` LBearsagot up)Cwalkq2. dA dro'alongside+s-}2"buRsaid:,2awa&leave me 5e, .1! I1 Shalted, won# waZdone--forCFaid }i !snooning #hej on, crytC!mu Z?he O qwas humO egQangry!ea bguesseE Vtruth Rimplya;Gn0nXAventRspitee)I". far fromh=be lessPDBdGZ !3g~to trouble withoutS riskTAselfR's spn Cfell^ 4. HMhis opportunitZ!ly.e !onLfternoon/T?&inKr page. ,pi cwindowm R#ou5vP. She startward, now, inten28tell him;~ thankful%healed. Before s half way4, hh1sheSchang$migi 4 of Sreatm!heS@C her came scorc9R:S sham|yvz6 ge,!ondamaged i's account*"tohim forever,Ohe bargainVIX TOM 1 at:'adrearyoa_sm Qaunt R k1 sh\-Qhad b tQorrow an unprom$kmarket: "Tom, &1a n  2kind live!" "Auntie,o2aved&e?4Ryou'v ! e I-vTSerenM,ran old softy, expectingAor!o ZL :g$atn0 2hat4,!loRbehol{ s'3fouf!Jot7 2wasabtalk wt&, I don'1 $Q of a9will act  that. It makes me feel so b [-go\A andG!L l of myself never say a word." Thisa new at  %  3nes( aLH!toueCjokeBvery ingeniouse *A mear shabby !He "2heaA"no5ken71 to,#4he IBdn'tvit--butCT2Oh,i#'!k. c0your ownrishness66T Lfrom Jackson's I?2 to $urt yoo?\:ASa liem<%91n'tC to pityk* Rve usXCsorr8q!knJ8was mean,!#I J CB. I s, hones1),. Ayou &W<ibme forI"toV1you'&us™(n't got p!del!th nkfullestMi} 2wor>I7bhad asta !"atY2you ever did !it." "Inde ' 1, a%--52mayOQ stir2H!OhT Rlie--,!do[QIt on 1kesPcgs a hUFbtimes *<a; it'sH0 F. I k,1you @?X4"at)"&me2I'dLW#it Z power of sinsV72'mo}you'd run eand acted2it reasonable;n #me  %Ryou g y 22, IFgot all fulRthe idea ofa' the churchI("n'GBh2 a$Qspoil$Sotpbark back in my po 1andjA mumkW.1arkq2ark 13we'+ d 1wak8qI kissee--I doL6linS%aunt's face relax[! t.Sness %inq. "DIDqkiss meM !Ar.3 su ?did2Dq--certa|ArmRz ~Because IBcobyou laBare moa-Band "3ZBds sz Aruth.* tremor inRvoice&K9E!!bexAwithbf1 o " hTgashe raqa.!goAruin$1 ja#T c in. T0 _vher hand< erself: "No, 't dare. Poor boy, I reck(+ #ed bit's a1!leBlie,7's such aQ1romaI hopeLord--I KNOW BLord 1forr_.Qisuch goodheartd"it3"wa'#fi 1lielook." ShexCawayRttood bya|b. Twic-Dput 21takA garUand t:refrained. Once m1ven1rhis timo3forN)3Wc}:> llie--i!et%1rieR." SoG3. Aa E, J7y"flQtearsix3: "Athe Bnow,}5'|'mitted a millionl)!"X THEREAsomeAunt Polly's manner"~!BTom,; Bswep low spiriVBhim lightRhappy6. Hp&A luc YBupon O8e of Meadow Lane Dmood+determined3. W|Bc's hes$ h]; Iamighty to-day,6I'm 9 ,#2 do!4ive--pleaseB up,S you?vDgirlKRA him<dnfully( face: "b3thac. 65 TO , Mr. Thomas Sawyer.i AspeaM 2youR!to*h a!pa!onCd stunn-1 noYnkh!ce(inIrsay "WhHs, Miss S&?"j[ ?$&it%dby. So$1 no(OQin a Rrage, 03He mopedAyardf1ingObwere azBand ing how hebtrounc%if:iatly en#erd 2R a st"y remarkQ5. She hursWbreturnngry breachcomplete. It EY$to Bhot 0Rment,s#AQAwait)Q to "02in,was so im see Tom flo\injur2. I;1hadany lingl!noQbof exprAlfred %,aoffens;2lqad driv=vaway. Poor girl dOrhow faswas near. The maMr. DobbK n͢middle agean unsatisu3ambDqThe dar!ofdesires was3#be a doctorqpovertyWdecreshould be*Q highan a village q. Every he took a mystmQ book>CVk and&$1 in;{s "no6.5Breci8"R$! t& 3ookJ#lo21key#rqot an utMwas perisve a glimp[Q@Bance+T came1boy8c theor-1 Qnaturqno two 1iCalik6t way of getting5ats in Base. "as1pas!by4Ddesk% 1nea~R door t3tX)5ae lockADrecious H  glanced around;>B next instantHOs1The title-page--Professor Somebody's ANATOMY--carried no informa/mind; so s+!ga1tur s"cau!3oncaomely engravW frontis> --a human figure,qk naked !CK+dow fell Apage}3TomA ste$inAdoor&fcaught tpicture!bsnatchs"to >aR hard BSdindpeEathrustfvolumej2tur@Ce ke  out crying'1 shand vexF. ",2are1 asacan be4sneak up on a persou"wh 8y'r+." "How yH2looS$ta?" "Y$Abe a  ;wfyou're&tell on m1#ohQshall) !! 1 be whipp ICwas 3%P astampe,!fokdRBE soU i!% *2'E*. %&and you'll see! Hateful^' "!"she flungthe housd*cexplos>\:still, rather flustereC1onsBt. P+ O+  !Whi"cu&k," aCqis! Nev2xen lick! Shucks! What's a#Sing! 4ClikeS$--so thin-ski and chicken-". 4Aof c4 # Iq)t$ldV3'is lA's o@Gwaysa even a<&|tC7? Oxktask whof%3his book. Nb'll answe en he'll doUay hekoes--ask firs\An t'wOns" jiBing. Girls' facese*9yMM2bonT1'll .i  hatight - ', p1any#ou.*!coCDJ'added: "All,3"'dQto se"inQfix--!er sweat i"!")4joi0gmob of: lars outsideC[ags  !nd:ol "took in Afeel rong interests studies% #hea 1 at gc side Broom !'sX d him. ConsiL&3alltT, he 4Bpity`B$et+2all1uldo-/"HeVup no exultd!lly worth[ n  \ %Qdisco@ 6#adeHH Sfull I own matterE9a~72aft "t.64&er lethargE *"Xgood the proceeding _! 3Tom"ge(&aby denrhe spil2inkCw  >/sSG:adenialr mn4TomssupposeV A gla{Bthat%sJmergency paralyzbinvention. Good!--han inspir4! Hk"ruXbook, spring thi)"3fly5NAolutAhooke$ont" i)was lostl ,rTom onl9{ Wsted , bQ! Toorkn Sw *O  Bfacex1. Eeye sank under AgazeLv9smote even Pbnocent/Hfear>1sil%B onez count ten =kAatheV.#raH npoke: "Who  book?" nNsound. On 1havxrd a pin,1a still!continued;CAsear-4fac|  for sign uilt. "Benjamin@,!tuS?" AA. Ane  pause. "Joseph HarperD5+;I uneasinessE2and4#sethe slow tor+es TFDscant ranks of boys--c ,ed!ur3 : "Amy Lawrenc,eA shak head. "Gracie MillerQ samerYLusan! 8his)rnegativ(2waslMA was"bling fromcto fooQexcitG and a sa!op_!of/Rsitua "Rebeccazc" [Tomhf#--I!Cwhitterror] --"]R--no,4(me6b" [herA rosmappealE?XAG29lik;Da%br(3prafcis feehouted--"I:"t!}BstarperplexitH6incredible fF3Tom!"a C, toHqdismembfacultiesk wYNA for=#to-his punish"=burpris gratitudB adosCshon64himBpoorv!'st Bpay /O)1 IBed b~splendor qown actv Sb outcr7most merciless fla DMr. 2had8,badminiBalso receiSN!ce"added crueltaa comm o remain Shours0ld be dismissed-- knew who #wa k]h;his captivit3don he tedious s, either$C6bto bed, planning venge jgainst ; ;arepent5#ol4"ll^ 3for 3'jq "ry8"thV1ingHW %way, soon, to !Santer'%she fell asleep at las's latest0sdreamily inRear--, how COULDbe so nobl23XI VACATIONapproaching),nKqsevere, rjQexact1han[,i!a .!shV on "Examin" day. His rodkhis ferul8! seldom idle now--)=&st # sUpupils. Onlabigges7 young ladie}e e twenty, escaped la #' Ss wer vigorous onO!; lC he \,K6 wig, a perfectly balQshiny=#, Ronly d'B ageq T of feebleJMmuscle. }great day "ed?byranny#waEc=face; hec! H)!ur?Ie least V2comTnQnsequ Y1boy59 air dayNp8Fz)1plo1 rezy threw away noo "to'  a mischief y a$J"im\r retrib8 & rfollowe*yCful vCso s|Qmajes^| from the field bad#stBtthey co2tog_Ԝ#lag7 QdazzlaictoryBy swaign-pa."'s(BCchem3askEhelp0s v`1deldRboard Rather's f]3K$giboy ample -rto hateFTd's wifHBgo o"!sitSuntrySew da~J#1to !4fer !he O Aprep f3forQoccasAA3by 8Zty well fuddl Q boy  the domini roper condw$G on A Eveh1q"manage"Bhe n[ <9Vwaken hhurried #toB. I!fu; "im!esHc arriv0+" iewas brilli' Cdorn wreathsbfestooDfoli!xflowers! s 1ronH 2 {d platform,< Alack=#? tolerably mellow. Three rows of benches on *(!si\Rd six%1in "c m.foccupi dignitarw1own)% aparentusTg left, backh citizens,Dba spac emporary5u@"th&Blars3 !er1taktexercise ; 1of S"he"drY0"toxae statdiscomfort; gawky bigRs; snowb_ X clad in lawBmuslHKbcuousl,ir bare armsir grandmothers' ancient trinket&2 biApinkblue ribboLir hair. A>/!tas fillKnon-participa.%2. Ac"3boy!upsheepishly recia"You'd scarce expecaof my o speak in public stage," etc.--ac5ing#ai-r Vpasmodic gesturech a machine mahave u csuppos ' a trifle]aorder."he*7safely, though cruellye}3g9afine r!offHD?dp! manufactured bowqD. A u1lis$B"Mar a+Clamb]#, Qgbssion- aurtsy,yher mee,ru!wn#ShappydSawyer ӕited confid o1int)1 un hGindestruct"Give me liberty orme death" speech1furc frant4Aicult  $ia middlit. A ghastly "-fbAseiz m, his leg5ked m=  to choke. True  1nif/!ir tterly defeab a( attempt at,it died early. "The Boy StoodC" BӘa Deck"!owPAlso 3Assyrian Came Down,"!ot{eclamatory gemV"rerd,a& f^ meagre Latin class ,Qhonor prime fea41ing"in,original "compos\ 3s" a. Each-!er: !to<qedge ofr 1cle.1roal anuscript (tis dainty)F"eqCreadQlabor t to "expreDpunc!1the.r had been illuJ;on similar  Sb befor^, doubtlessir ancestoremale line F nCrusades. "F[Ahip"wone; "MbOther Days"; "ReligioHistory"; "Dream Land";qdvantagv  Culture"; "Form Political Government Comp and Contrasted"; "MelancholrFilial LovVrHeart L#sp A prevalentY!se\ca nurspetted m|B; an>asteful and opue1gusf"language"; <qtendenc dlug inRears 6 ularly prizedphrases until+ Fwornx%3outr peculiRthat ZX CmarkBmarrlahe inveterata r sermonwits crippled tail  Ae eneach andby one E m. No matter wCssubjectG Rbe, aA-rac 7$ & quirm it into some as "r AFa" rQus mi} !ul*templateAaedificG glaring insincerid"_not suffi o1assYabanish  fashion'Lit iT to-day; it never will bex,orld stands, perhaps. #]5ll our l$2herD1 do$feel obligwAclos.!iru1ithkBrmon|/aill fi >#MfrivolouT  Dgirl1dongest9XQrelenhly pious. Butis. Homely truth is unpalatable. Let u2oK"!."QXfirstNas read9one enti#1"Is (n, Life?" Pgreader can endur_'bxtractNit: "I5common wal S life(ful emot!do/ERthful9ly"1warvsome an qed scen 2fesc! Imag is busy sketchingt-tinted3Prjoy. Inû voluptuous votary}TEsees`(1amiA3 ei ng, 'the observe4allrs.' Her gracRarray7snowy robes, is whir! f"uga1maz3joyous dance;E eye is b !es rY 3 is#st gay assembly.-BdeliIf"#quickly glides by, welcome hourRs for1ntrBintoe Elysia cld, of bshe ha2 g\w fairy-li eF !ry appear kher encharvision! 3newjis more charm}aBlastfas1nds{Aenea@ais goo߁xterior,#is vanitflattery3onc 1souqw graterharshly1ar;ball-roomCqlost it4sF%Rhealttaimbitt= Qheart1she bs away1Fnvicaearthl8s cannot satisf U1ing1theHJq!" AndV#or3so D!rea buzz of g/1to 3durB $, Qwhisp4ejaf"How sweet!" 5qeloquenSo true!l had closed jc ly affli e\enthusiastic n arose a slim,X8r, whoseK07' "C" paU42comMTpillssigestioX>`a "poem." Two stanza&"it=!do+ "A MISSOURI MAIDEN'S FAREWELL TO ALABAMA-qlabama,%-bye! I love1! qBut yetLzCdo I:+1thec/1Sad1, sQought(!myR~bt doth And bqrecollesng my brhRFor IAwandH|!th[wSoods;Have roamN a;Tallapoosa's stream53blisten, *ssee's warhfloodswooed on CTide Aurora's beamA "YeM8Ame I to bear an o'er-full4`Nor blush4urnmy tearful eyeB'Tisno strange% RI nowa+pm2(to0s left I yield; Qighs.[W|sand hom2min  is StateW1TvalesL"--F!spq?fade fas (1col ag3eyex 9eoen, dear ! BturnQISee!" c Bwere4few$ho $at "tete" meKl"bu "po S very|ractory, theless. Next/ed a dark-UBxionEIfack-ey Qhaire qng ladyQ paus2 im'vwJa, assu tragic ex$n Q " m~ d, solemn tone:A VISIONN2Darbtempes 2was5 2. Aq on highA+2ingr quivered; butAdeep0"na T heavy thund "coE-qly vibr 1ar;s]rerrific n .gry mood-de cloudy chamberheaven, seebo scorQpowerXted over itsAor b,allustrFranklin! EvqisterouYwinds unanimaM"th mystic /Qblust?3as if to enhanceBir a Q wild!#. . "At5 a$A, so Rrearyv human "mymspirit sigh@eQbereof,k1'Mye#iend, my counsellorand guide--My jop Qgrief,second blis[in joy,'RQto my1. S#ve^9o. Z 3ose p!s !d Qe sun9lks of fancy's Edekromantic , a queen of beauty un#qsave by !ow_ctransc xAlovevPsGAsoft 1, iqQfaile2mak a sound,"bu1mag0thrill impartedgenial touch, ather unobtrui< Bhave away un-perceived--unse4. A1 sau res4herf1s, "ic5s e robe of December,21poi 0nd]Aelemtcwithoub0Tg5two"bresentV3Thi;(ma)1tenB}h1oundwith a 5so v all hope to non-PresbyterianN  #!okApriz%1osi~ Gwas /Qto be sfinest >81.cTmayorvillage, in deliveJ  rhe auth6 it, made a warm speech i Bhe sQby faT"b "" !heE  that Daniel Webster well be prouit. It may be rel2ng,xthe numbes in whiz4aword "4Qeous"over-fondlegxrience referras "life'sS,E$upeusual aver`1Now}m,"1 alA ver3k1putchair aside, !ed9 !udldraw a map of America #A, toa"ci geographyoupon. But he 9sad busi] !thu|&y 8SQa smod titter S!ov*=!e '/ nB wasDset =Ato r !it:sponged out2Qs and=dbm" he only dted themQE!evn E&ApronGMd$)$hi'>J his worky(if@PBnot uput dowQmirthBfelt"al B wer #en him; he i| was succeedingFyt;\5uit even6ly increased.Q igarret above, pieta scuttle 1his|,@$is- came a cat,nended a$ q haunch a string;1had&!g V 4PEjaws=qrom mewDslowly de#Q curvwAward-Aclaw,swung down-qintangi!!irRxKahigher2 --the cawb six i"absorbed teacher's head--down, "$owshe grabbu2wigNher despEclaws, cluS4iw1nat7u ", " i} Yr trophy7" ibposses 1And0Qthe ldid blaze abroadx's bald pate--fo 3, boy had GILDED it! That broke upEmeet3boyavenged. Vacn  3com NOTE:--The'+"a" quotaS tpter are taken%out alteriBfrom avolumeqtled "P7and Poetry, Western Lady"--yj1exa%0݇Qecise  *agirl pQhenceEAmuch9 Aappi"anYcere imUs be. CHAPTER XXII TOM joew order of CadetTemperance, r attracN  1howw@ "regalia." H3misRbstai^Q smok9!ch,Aprof as longSArema1a m OQ he fn thing--nam&a1 noBdo a+" iZasurestO  3 body wanA!goVQvery Pv$b soon W!rm] q# aQc to drc)q swear;Rgrew %so:!nor jL bof a c6to display i8red sash kept himwithdrawing from . Fourth of JulT61;Qon gaat up --iC"A2worrshackle7 1y-ehours--and fix0Bhope? old Judge Frazer, justic)Beacewas appares'"bei/ Ta big*funeral,  o9an official. Du( ree days[;Bdeep+rcerned 62the' d Qungry1newit. Sometimese: "ra$--#heRventuj1get Chis practiseO.R-glasrmost discourag yJbluctuabAt las'as ~Amend then convaltQwas disgust9'qnd felt !ns&injury, too !haQsigna,tat onceq"at#Bsuffc relapBdiedrresolve kP! trust a mand@T+Cpara a style calculated to killClate^Benvy$1fre[m@!reAsome!a La swears Ors surpr 1dids7Qsimpl| hga, tookBaway Charm  GDqly wondQto fiIacoveted vGwas beginning -4&ng Cheav}M ands. He attempt$BiaryPLed dso he abandonedT?!rsanegro minstrell!s cto tow aa sensand Joe Harper+-up a band of e-r were happm1twonGloriousbwas in a failureWAit rFT&, encx ! i!seI-e&t! aeatestBAin tabrld (aT!/ed), Mr. Bento actual Uniteds Senator, prov overwhelYQdisapXBment Gwenty-five feoqgh, nor +Q anyw;neighborhoosrA circu qboys pl"J @#  in tentsof rag carpetAadmi ,@2pinOB;two for girls#ens. A phrenologisa mesmerizerI3wen1lef H8_Udrear "evf>=BwereUeCAand-'(1es,jDthey,A fews6so $(Bonly2 the aching voids between acae hard= Thatcher1gon}bher Co_ ainopleat!Bher ks } bm1sidaElifeP.dreadful secre*athe mu  chronic miseryєaR canc^ q permanX* 2aingnmeasles. wo long weekl Mprisoner, dea}1andw"Aings1wasQ ill,;O !no3. W2cgot up aU3andafeebly{-$"!achange3com./$"nd2 cr.rb* "revival/0 had "got *1n,"{Bdult"thyLbbhopingsst hope!1e s$ of one blesOQinful"- A cro(Ahim Qwhere9Qstudy Testament4Rsadly9- "deng spectacl_  Ben RogersKvhim visi6 #ooca baskBractE!huup Jim Hollis B calLs]KK{2ous0ing of hisA 2 as DningSboy he encounti!ad2nother tfV Aon; 1hend ion, he flew for refuge a) F bosom of Huckleberry Fin! bwas re+Scriptural quotjirw_ re crept!an!be"2lizat he alXA allw!st4and .%Bnv=&st:Adrivain, awful clap ]/blinding she81cov!the bedclothe"ai! a horrosuspensehis doom; not the shadow of a doub  is hubbub was 1himrSdQtlm!thtgbearanowers aboveMQextremitp Bendu2h.i the result have seeme1him!st[ApompiRammunp Ca bu3a b(of artille+;b incongruou' E3 up+n'2 asrto knoc+ Bturf! insect likeB. Bbtempest spent itPcand diQout accomplis9its objectc boy's bimpulsgratefulreform. His +EwaitC"re>bbe anyDsK"dadoctors were back;w4hadd 3 heU!baO!is2!%an})ge . ehardly4D1spa#"reing how loneWQstate companionlesAforl@oPdrifted listless Btree+p41 acuqas judg a juvenile courr1cat her victim, a bird and Huckup an alley e@ a stolen melon. Poor lads! they--tTom--ha7E SI ATkhe sleepy atmospStirrevigorously:3e trial4k!betAsorbWtopic ofe talk immediately xyBaway$itArefeQO ; sent a shudd his heartroubled consc i[5LQpersu2himBthes#rkr!pu tqas "feelers";1seen-Rld beaqof knowz n -  Fnot be comforc2ae mids, agossip1kep(rshiver e"Hu##a 1pla+!a Sm. Itb QreliedbunsealAonguwhile; to divide)iburden[l87r. MoreoqBhe w/to assur-m discreet. "Huck,1you" told anybodh--that?" "'Bout wYou know." "Oh--'course IZ"n'Never a wordLAsoli2Qword,|Qelp mat makes you ask:qWell, I\ aafeardbVWhy, ?B, wen't be aliv$1dayQ #go out. YOUt2TomWmore A. AfnQ pausnQ5n'tL1get!to\,"Q they"Ge[!? !if half-breed deviLzF me z) gO$y ain't no diMn>Uthat's all(!&n.twe're safe %   we keep mum. But let's swi-1gai1ywa'!Qsurer}I'm agreeS# ry swore? , solemniti"%S talk,yQ? I'vBrd al " "Talk? Pit's just Muff Potter, $the timepReps mg!t,tant, so'sd7A'ersT{"ju9+Q samebgo on p reckon he's a goner. Don'gfeel sorhBhim,AimesqMost always-- *raccount thfA don %ur. Just fis 4 B, toSoney drunk onfSloafsFiderable; l-!we2do |MBwaysu&of us--pr s <+Blike@!ki?PE--heBahalf aB, onre Krn't enough4 2two"lo eEQby me?sqof luck!meBkite"me,knitted hooks%o my line. I wish w"geot$u" "My!&"n')W. And besides, 'tn't do any=;'d ketch{ AgaincYes--s>aI hate;ear 'em abus2 so the dickens6"he/fI do tooL)I[2say&toodiest i ip n !!an ver hung befoO1Yes=y+%7~Qif heK)1frery'd lyn^A'"it'" The boys]"aQtalk,Csit broum1. A# twilight drew #ey themselves ha6 * leAisol80Ejailz=an undefinp8d; z-m!clow;!irAicul+T But =eno angels or fairies i! tYss captiveAboys#\!ey~Qoften%!-- AcellYring andk qtobaccobmatche-;n gBfloo% rno guar"isl2tud /Qgifts Q smott!irL "s --it cut deep,lx@ 2cowASand t!ou2the Sdegreaid: "You've beenQy goo1me,--better'nw 1elsthis town1I d+forget it,Q. Oft1sayrmyself,I, 'I us\AmendMCoys'.Bings:Ashowfishin' place01befD4Bat I1 2nowjcve allaB oldthe's in92TomIQHuck b--THEYP)" '5-!them.' Well, "eBwful$"--and crazy  #--w athe on*1y I!un2 itnow I go:Qswingxiit's right. RighABEST, b--hope  we won't4at.! make YOUl dbad; yCed mh<say, is,p2YOUG !--m 3youSStandR er furder west--soSit; it'smBAee fw"lya&C5 Aa muP Rtf1non$ ae heregyourn. Gooda w"--"ly. Git up on Hother's backYl touch 'em. = Qit. S}`qhands--}1'lln1 th-Abars mine's too big. LittlBweak--buyQ 3lpel ^ 2shelp hi*.iy"."!home mis CnBream#full of se next day{e fter, he rt-room, dra@. irresist`,(1in,tforcing( to stayF| 1hav (1qy studi~a avoidpL"ch4FKTkelet !atdD Now,7#A us t** b--telleown waEskipp,h+sbegan--}AinglRfirst"as"rmtQubjec f  easily;ln! sdceased buP own voice;&ixAhim;qed lipsbEBhung!higads, ta]\no note of"d, rapt1ghaCR!on 1ale#q straina pent emoq q climax 5boyJ "!asdoctor fetcheETboard+"ag fell,@Cjump-P?1andCrash! Quick$Cighte}%Cspra|aa, torem1alloAsers gone! CHAPTER XXIV TOM1a gring hero onc>e>%pe2old-Aenvyhbng. HiR eveninto immortal prin;* paper magnyhat believe be Presid Byet,  * . As usualfickle, unreask9s % to its bosomBfond3 Alavi@XRas itb} !&Bsort of conducO&o"'s"t;fIp'#noJto find faulQh it.!'sv: of splendor and exul2 J2hiss were s?.  infeste=s Ddoomz deye. H!y aUcould', 1boy"tir abroadafall. Poor HuckiH 1samI"wrrand terror "ad*p7!ho!or* Awyer Qgreat V 6and4sor01hara y Jumight ldnotwithsta_A's f!sa!im+QZyq N.#4afellowDhe attornepromise secrecyqwhat of? Since }Sharasy![2 Bdrivp%c c'&Rse bywaad2lip ^been sealnsdismaler;most formidab=aoaths,a's conchuman race`well-nigh obliteratcXDaily2'"1madA gla\0Rpoken%!Vly he wish%1up " c. Hal"imZS nT 3be dVa othercY@ >+ He felt sure heMbdraw a+again until1man92dea,y@ Rewardselvcountryrscoured"no2 Jofound. Oose omniscind awe-inspi^marvels, a detective,1"upoSt. Louis, mo"ar@S$shhead, looksort of astouQ succ  3sZb craft!lyu=!ev1at ' say, he " a clew."n you can't hang a "clew" for#soZoEgot ]qnd gone8. s-63ure3was,. R slowdrifted obleft b Cit a"ly qened we"of apprehenV THERE comesVqrightly{1tru+26_)has a rag1sirrgo someqand digRV}1sur3is 9suddenlyU3one{e sallied+R Joe ~Bfailed of8. Next h<;!a %gwTtumbl@FI2FinRed-Handed." qanswer.m3 private-#op$e matter to >{kbtially`*Awill>  o take a hanwy enterpri RferedBtainnd required no capital a&u superabundanc)Rtime r rmoney. 'll we dig?" sair. "Oh,5.Uq." "Wh%D i[ e?" "No, inde  /a. It's-"in=y bicular5 --/ on islands,Atime@ rotten chests!envaa limbSn old@Bree,0c;falls at 1 mo aQfloor) ba'nted0Who hides iWhy, robbers, K urse--who'0? Sunday-school sup'rintendentsXIknow. If 'twas mine I Cide it; I'd9!nd1 a _&1o;1 I.l"do!XUf and leave it "ADon'y0Cy moA!No y)k,w$B#qy generUQforgeT 0q, or elJey die. Anyway, it  t 1a l "im gets rusty;!by- !bycbody finds<yx  Xtells howAthe 2--a  o be ciphCovera week because it'stBsign hy'roglyphicjaHyro--H"--picture>qthings,]Qknow,1seeTmean u1Hav1d got o"emas, Tom|!No0Well then,: Afind #61wan^ esbury itas or on a"ea t0Eat'sAsticTout. *!'v ed Jackson's I}iwe can tQagain/R timeSy' -1 up Still-House branch,=qlots of-StreesnAload1'emI#ll Htalk! NoTA81ichJ1forG _1'emI1Tom/6#llll summerf 2? SI#a brass po-a hundred dollar,"llAgray2 fudi'monds. HowaHuck's eyes gX1!bubPlenty4qme. Jus R gimmM Iand &noT" "AT8~QI betI:k!foff onDb Some 'Qth tw3Rapiec"#reWaany, hn2's <six bits oHvaNo! Is1 soCert'nly--anybody'llyou so. Hever seen on5E!No7I!nOh, kingsA sla|$S_"no5$I reckon@i!if3wasto Europ!'d.Qa rafr'em hopGr b" "Do1hopBHop?_-u grannylN2say>1did CShucks, IJ1ean'd SEE 'em--not V Yto hop for?--but IRQ 2seeV3scal &, 28$ aBLike!ol]pbacked Richar* 2? W_2his,Q nameRHe di'ny"1. K!but a givenIN!Bu.yiy like it-R 54D,Xa niggeroRsay--t Eyou  1irsn< S'pose we tacklj ) hill t'8side ofjrI'm agreea<got a crippled pickea shovel1setwir three-TtrampV*"hoCrpantingE]/7T downH2shaa neighbo!elq#- smoke. "ISthis, Tom. "So do I 2SayP$weCtreaF#re 1do 0your sha ZBI'll3pie5MU 3oda2day1Rgo toV&fSlong.0aQa gayrnbsn S sa"tod h AlivebM1!byy#OhP |any use. PapY CcomemFo thish-ybwQR2 daR\5as clawiIurry up,ZIjhe'd clea3out pretty quick.tn$buy a new drumua sure-'Whearts jum8ao hear[strike upoFyb"$#ed3dis <+Aa str a chunk. AtDE5Tomv -rxrbut we CAN'T b&. We spottv)AshadX2bo a doI$tF1the6re';"tthat?".wpAguesoyH Menough i1too5> or too earlAHuck 7ped .tat's it9Ahe. !'sDveryLLFaone upBcan'| 2thea1sidL$is` ',8C%Y#ofy%> ;2 a-fluttY&Zbafeel aP$'s!mNZ;'AfearTCturn)%uz'V front a-<Qa cha I been creeXAll o1ever since I DBI've=smuch soAHuck6y mN put in a de&# why bury. e, to lookGLordy!" "Yey3 7If !toRPpeople. A h1s b!toDintoQ'em, "L" "r2stiRMup, eitherjf2onet! 2.Akull !ay" DCTom!2wfu"it "is^U3a b,QSay, <lp~ d"trARs els?%,  $weY 5bconsid|/;dJ:The%. G  4s.c 're a dern sight worse'n  D lVN,lyocome slid rshroud,nUnoticApeep shoulder3f a:%!1griqir teet"Ra does. I Bn't qsuch a NPa--nobody 1Kt2but, dUtraveU 1 heu_! 1But <{#goCYthat fA norg 4v emostly M J#go5 Qa manaen mur, anyway | E"erODseen5 # except b--justLBblue'Rs sli& q window regular Gsl![Xflick5acan beu4h!cl~Qehind Irs to reason. Be1any2butAs us<pEDcomebP`f, so wl!us3our?7a<W$ df^#I it's tak@A y(qstartedffhy) TAmidd- oonlit valley bel[em stoodR""M&!, 4ly Ra, its S=s*ago, rank weeds she very doorstep chimney crQ)qto ruinq  -sashes vacant, a corneraroof c/!in1 boz*, half expectAo se. flit pas%Qindow n1ing 14 as befitte8 b:m y struck far of\Rthe rO Qe haua wide berth A*qway hom. r,Boods6 earward si_j Hill.4VI ABOUT noo$ 2 daNgG4tre=Ahad ffN"ir$Q. Tom impatien#go ;( Qwas mAablyc $alC%ly Lookyhere1 dowday it isbmentally ran%$V3eekhen quickly liftedG# a2led 3m--WI0once though,iE\un kKrR it pE conto m` a Fridap   can't be too careful8 A 'a'  1an scrape, :ing2Won a z MIGHT! Better say we WOULD!"'slucky days= $"ny BknowbP1YOUf2the:f 1it ;AHuckRn1said I was, did I? AndT all,.O_d a rotten bad3msdreampt1rat"No! Sure sign ofB F"ey{s'NotCgood% WL d*1ign  G,-2. A-_Udo is  by shark Zi Cdroph}5to-{ wplay. DuRobin Hg Who'sqWhy, he greatest m"evrEngland:the best. HGca robb Cracky, I wisht. Who did he robOnly sheriffs bbishop Crich2 RkingsR=9Q But naver bolloved 'em1divQ!upx 'em perfectly squa-h2'a'r Sa bri I 3youW[!Oh9qhe noblaaOT"R was.!men now, I can1youN R lick-can in ,a one he4iedD Ahim;NhEAtake!yew bow and plug a ten-cent piece"c, a mia3s a YEW bowIM /t7w, of cours.d if he hi| Bdime`Aedgepould set aand cr(2d cOB'll play!--nobby fun.AlearQF m% t\dfternoon, nowmy1casQ aa year=2eye#up qnd passs remark .1orr+prospect9Iibere. A5suna sink sey tookEway 5 aathwar| cshadowN6e,soon were buriAITsight8H(- Y On Saturday, shortlyV^  R bHnT4hadd&Ua chaCshaddEGir last hole*;]great hopeaGmere<oIqcases wz "pet#ad )(upafter getting down~qx inchep Y-O an some d1! aqand turZJt a single th{bshovel' Afail !isO a, howesDc+ BwentTfeeling jvshad notEds fortunehad fulfillep requirements <%of<71-hu(6. Rreach T 1{ so weirPv grislyBsile at reign^Rthe bAsun,{ bSdepre$Cbelines!dem"io he place[(3fra,# aHM Qventu7 ty creptD#do?!mbp_VT aw a weed-grown, floorless room, unplastx;aan anc CfireVs, a ruinous staircaser#er%ud hung E#nd abandoned cobwebsn#tl73ed,MC ened puls,s, ears ale\BcatcYDXRsoundAmuscAenseQready instant retreat. In a+Nfamiliarity modTReir f Qy gavm,Qtical#iYsted examinC, rather admi+[bown boƑ Qwonde"at it, too. Nexk1up-+isMqlike cu]!goqdaring ; =! abe but I&!--L,=Sto a 02and scent. Up\NBame 53qcay. InpJoC a@d mystery"qa fraud1 inCr courag4xwAH4n hM Lo go down and begin#1hen}BSh!" CTom. is it?" Huck, blanchingrG!..re!... HearDa "Yes:#y!(!run!" "Keep1! D you budge! 're coming p! tcr 1doo #stC./Rfloorto knot-hole!th bushy white whiskers; long hair flowed from u!hiRbrero dGe green gogglesec7'Cn, " Xa low voice; @#sa gr$Q, facAback{sthe wal12the=er continued ^ s. His mann\less guarF{0words more distincFLproceeded: Q, "I'!it oB 5andi,& dangerouDR!" grTthe "e dumb"A--to#svast su?boys. "Milksop+2his~ 2gasQquakeEwas O!'s +<!swag we'veAleftr--leave it( &'v !'B. No2!o i.f!wet south. SixfCmDfift5Qver'sDto carry%eWell--#r EKG m No--but I'd say(j2 us#doe9:Alook; it may5(" bTI,6!e  J!! ; accidentsi !B; 'tY$inu2ver9;i6f%l[+qh+qit deepDGood idea !thrRqwho walv Qcrossroom, knelt#, gv"qhearth-/atook o9A1bag Q jing?qleasantLe subtracW9Qrom i0nڼcthirty#Dcs for G"as+6for8e latter, #s <,(Q8owie-knifeUforgo<,bmiserig$an@. With gloaq ,A mov7q. Luck!f splendor of Qs bey%sll imag+!qETmoney/Ato mcalf a dozen rich! H sd1theaiest a !esrNDabother uncertainty as to w44to }2y nudged each ;--eloquent)r easilyRstood simply meant--"Oh,you glad NOW we'rbB!" mVTknife%Uupon . "Hello!" C he.?2sai4Calf-e"plank--no, it'sy!x,4Rlieve1--b`!w 2see<Kfor. Never mind, qbroke a3 [2hisWbin and i p3ManDU  rhandful8$ingold. Thejb abovebas excW cmselveY!as delighted.NwRquick4Bv$ban oldM24over amongst >#)5sid"a--I sa5#a 74agohaX|iaBoys'5andn X1the$b, look5ly, shookUA mut4 toM3  5use5Abox aoon un$edXA not *R larg!#wad2bou:Bbeen+dstrong5the slow>s+Qinjur c|5the" ain bliss3. "PardrthousanL Shere,p. "'Twas alwaysX Murrel's gangCQbe aruone summer,".stranger observ53; "vs looksPHI2 sa* sNow you $neRjob." Ʉfrowned. Se: "You# me. Leasx&k"lla A. 'T@ robbery alv\ REVENGE!"a wicked R flameBhis GR"I'llyour helpRBWhen finishednn Texas. Go homH<NT#anK3kidM1b %0$Sell--Bqsay so;ew  w dthis-- k Yes. [Ravishing overhead.] NO!- e great Sachem, no! [Prof[distress;1I'd---at least4 \Smean =but Tom, si%1nlyhad testifiSVery,mPDfortBAalond! Compan!be a palpCimpr5, h . CHAPTER XXVIId adventur4"ayily torme RTom's5s . Four times hE!s !atSFnd f6ait was:rhingnes5igers as  !hi wakeful4bEfAt bae hard realit'Fhis 1. AClay |AmornO(1ecaincidentsJND, he noticed%~dseemedL4ly Hand far away--someD ;3had#tworld, MfAlong " b3 :n i5him u itselfa$3onetrong argumentW Bavorj is idea--namely,sc quantDcoin2fAoo vkAreal Qhad nTseen !as in one massShe wa1all "ag"st in life,&Aimag= call re\Os7!s""  " were mere fanciful formCaspeech Zno such sumP qlly exiEpposed forf w"so= a sum as a 6z be found in actualy one's Ԁ" Ianotion treasurbeen analyze.yxy=Ansis 'a areal dgand a bushel of vague,id, ungras{`A. BR^K"en Ssharp!clearer (Vattri !inTAthem?h so he"`1himk1leae(impressi6q#no2a dream, a )isQsweptg:~ snatch a hurried breakfast!go2fin.ik e gunwalB a flatboat, listlessly dang+2t !ee3"atbs2ingamelancholy. TomC&2letslead up@1 su e did not do its1be 2q `o!xEGelloylf." Silence ab-om, if we'd 'a'Y 4lam' a"Vtree,0!go D. Oh$! 1fulF $,Somehow I most'x. Dog'd if I ." "What!K%Oh6ing ).U"en"QDream! Iymss hadn' down you8)1how  Q!xhf%Deams|2allpL#--()[tch-eyedZ 1sh l4 gom*!thR 'em--rot himm1No,_a. FIND! T /1Tom#llXhim. A fellerq ~3one Q for a pile-- a2's lost. I'd feel1ry shakysee him, anyw+qso'd I;2I'd,2 2z#'Aut--&s < 1--y95N'Bthat2&7/!ouAit. !dofreckonB"oQtoo d62Say--maybe inRs$'"Goody!... No, rRain'tfv5, is one-hort!wn3 y=#noq,@so. LemmkKS Here r room-- QavernQ know;Qtrick s3two?s. We cansout qui You stay hereU,zI come." DAoff c1caracHuck's~rbpublic#s"as G!an hour& EbestNo. 2 had# a young lawyutill so-. In the l&astentaa housek! 2#a 5 -keeper'sr2son  kept lock$)ll3tim82he 4sawq go int W!or}(A exct;Ymny particular reason> x1gs;Er Come ' BsityD8bfeeble98wVe6r by ent"Ding % ae ideaC"roG "ha'nted"e  r a  !re[) BwhatOYD'Kvery No. 2"$af&/Qit isE$. ?C youqQto doNE_(ngE2tell yous$do "at" icomes out J1los )ey e!a3?Qtrap Jbrick stor"`qet holdmdoor-keys1nip-of auntie'=,Bdark'"goS ry 'em. And mi,n, because he E#!to/|2tow 4spy 3)N#a "to 6youjyou just fGQ him;_Rif he 2 go >"1laca"LordyI !fovhim by myself+hsit'll b%", ov"He\Dn't B youRdid, b4he'A any' "ifU8n. 3o-- 1YouE<cBdark!. 3'a' out he coul f< #ber,&DOCs so{1; IP, by jingoesw"'re TALKING! Don'7|bweakenaI won' sI THAT#1TomQILy hung a e neighborhooo{nine, one watch52he PAat a ="K1thePdoor. NoF"orN Rit; n%aresembp2the 5ard=3te#Th promise]`fair one; sowent home`rat if adWAegre,Adark1cami AcomeT"maowupon he would slipthe keysE aclear,XmAclos2s(Tretiryan empty sugar hogs0welve. Tuesdac/&amE. Also Wedn/Thursday bbetter8"in$.sf0aunt's old tin lant 6 Qtoweldrlindfol 1ithh? <1 inp-'s began. A WB mid#v!upB2its1s ( !s 'd"s)!pu)*%02had Eseen+Dhad / }b. EverrV,3iou"Bblac5of SreignA peruQstill#waVbruptedby occasional/)#ofAt th<ggs1liti n~,=tl: Bowelx&wo2rs D A glokw>y.stood sentryrTom fel3wayZTjz  !of8ing anxiety$weighed iga(a mountainh$%sh?ra flashH$ C--it.f"en!buZO6ell- alive yet. I4s1Tomdisappeared. Surely"us Ded; &A was7`+!rtQaburst #D'Band ,G'1 In4auneasi L rdrawing-DrK a; fear rdreadful ] $/1ari1pecm0some catastroph 2Atake 1792not&to,]$heUable to inhale it(imbleful- TK$ar Athe beating. S1Tn"ofh%tEby him: "Run!"he; "runAyourt!" He needn',Q repe drit; onc ;#mairty or forty miles,RrepetCwas -3. Tj!tor  "J1sheʁerted sl#1er- e lower en/the villagxa By goin its shelter]Sstorm xrain poubwn. AsxJ] 0AHuckwas awful! I t3twob keys, aas sofI R; butsto make of racket=rdly get myRso scBT1bn't tuVck, either. Well,?!ou.Ticingkboing, I tookcthe kn!A ope@e !H&E@R! I h1in,!sh5fP, GREAT CAESAR'S GHOST What!--whatQ'seo1steFonto's hand!" "NoAYes!A#Ras ly s%asleep oARfloor4?Aold 5"ey his arms sprea[d1did Tdo? D0Bke u91 budged. Drunk, 2. IjUgrabbBAowel F+usIX'a' thoughS33tIx. My aunmby sick3alost iM A"Say,1box!diw@o_00.-}44 /8 .:ea bott|Sdtin cu 6 by(!; I saw two barrelslots moreUs S.u2now'!Fmatt'3at R roomTr!it mG o1ALLaTemperTYs have got aeC, hepd[3Who8u? But sAnow'Rightyt 1timg&ifqb's dru""Ithat! YouiQshuddIEno--"nom5And-B not3. O1  alongsidf, :u'< three, h  -&@oaTp*for reflectioZ+ S:38oky82les#tr 1 an#e}wwcR Joe'5'reQscaryhw eSnight# bp"su2 go  "orbwe'll Gbox quicker'n nJV<the wholBlongj%ido it 1too3you"<Ather4$"A= bill. A.v!to{"tr0Hooper Street a block EmaowWRthrow:bgravel=e0 3bfetch 1T"Agre01goo'Awhea*B"Now,  T's ov*bgo hom2gin" , %Qcoupl" +2"go61will youe!I TJ]t5#Ryear! Ev "damF&st2allIawooo[nǑ' hayloftZTlets nqso does pap's nigger man, Uncle JKA toteex  B wheahe wan`" t}JA any I ask him QzQves mGiBsomeBto eWhe can spare  !ik\r, becuzP'[" aL Bwas 3;him. SometimeQset rdeat WITH/1But  A body'sv!thwhen he' sr: 1n'tBas a steadyd-wXK,q"le.?A com hAS's up2'!, Cskip, @*."*IX THE firsR1earQ4QFridan glad piecnews --Judge ThG's familyL*7- before. Both 9o &Bsunksecondary import, and Beckyv the chiefCboy'="esSsaw h%tad an exhausi&1pla "hi-spy"c"gullyu!" $da crow2ir S-mate1day^scomplet[DRcrownsa peculi9satisfactory way:!ea[Aer mK to appointnext day foUlong-z1and\-delayed picnicfshe consentechild'>boundless;,Xore moderat.R invi*slAsent^s sunsettraightwayA AfolkLn4Ra fevapreparu(bpleasu6qanticip6's q enable90" ap dntil aQlate houh%%:vt!ofd1ingO4's s!an(ahaving to astonish1nickers with,2; b\3was$"oiNo signal c'vC. Mqcame, eBallyby ten or eleven o'cQ giddq rollic!c;/!ga  4_s -ro.UQustomelderly peop2 ma#;p$*!ce2ren@sed safe R unde9AwingAa feh"1dieeAe# gentlemeqtwenty-  sreabout1oldqm ferryboatQchart;t7! g<.flJ9r main sg Cladeprovision-baskets. Sid1andato mis/ fun; Mary remain!hovBtainT9nTMrs. 6 "tob, was:d7?oBback lIaPerhap H Astay   eRgirlslive neah"-lQ,c !y aSusy H,q, mamma+AVeryO. And mind !bey%yourself3bmR9T." P,"trQalong` 1: "Say-- 2you8 ntQ'Stead 3Joe2's *SclimbE!up AhillDstop` Widow Douglas'. She'll ice-cream! SsoJ"os Ai!--|+Aload8"it4sH#be t&!usg"Oh[ K/2un!?=nC%ed3But2illA say How'll shH6Rknow?^Q girl!edidea over a1r reluctantly(it's wrongK3--"shucks! Youg ! k REo!'sQharm?_sN1nts[!hao '"Bsafe4I b 1'a'" 6if IAwoulT splendid hos"itaa tempP 2baiand Tom's persuas02car+S q. So it>u Qay no? anybody?t 's programme. i1 itv(!rrJM)^7+''XAgiveZ ;took a deaV%s!ofAs. S"het&I"tolmfun atAnd why sh1he 5!it: h"qsoned--/c! W, so Ti2mor l^>o-night? T6QrA eveV 4out6theM1, boy-lik2 determined to yiel +5Aclin Tnot a{9t Qk of 0ox of money5  day. ThreeVbelow >EboatayAmouta woody hh& 1ied|3The* swarmed ashoreAorest distancescraggy hxs echoed farQshoutDand 95theØ1get!ho " Egone=y mry-and-barovers Sggledao camp31ifi th responsible appetitesVt destrucHJ" "L>2 feoC!reBFFing ( 2resbchat i2shaspreading oaks. BAsomef[ed: "Who' the cave?" Ever!wa5$. b of ca \Bproc   a general scamperhT+x0' hillside--an opshaped likO A. Its mass׎2ake&& !unbarred. WK small chamberM Aly a2ice" w0by Natur% solid limeston w 1a c& rweat. I1romJmysterious!t %erdeep gloom/look out upr!grKC'"sh--""un?1O6!ve!UDly wore offdQrompiDL2ganjIcment al]  Frush2ownit; a struggugallant~f1ed,62ursoon kn)/or blownlad clamop and a new chaseB3allQ havex(ndlrocession (!fiv(eep descenW4ain avenue,p!fl0qing ranGOVs dimly reveaYf!llqrock al5t1ir er of jun sixty feet overhead. Thisnot more than "en?Cwide?&nSstepsy%ill narr crevices bran@!from it on--for McDougal's`Rbut a%D7imepqraft.  blready.w's went gliW# p a wharfCAhear!noise on board(   C3as $usually are whornearly cto dea.AwondnQwhat 1de:Rstop w<<dropped her88'put his atten *rusiness`Bclou dark. Ten eKf vehicles ceased, sca) abegan ,#nk !ll 2foot-passengerkp |)1 be$itt)l <2lef| = qwatcher qthe silae ghosts. E  Swere /;/ Qevery$A$it1see weary long 2:b)u3},ed. His faith wasB4bing. Wvy use? "reA Whyk)C? AFfell~"ea;&l U instantQ Bdoord*^Tprangqx8$ Ti two men br,%onW- z Runder!rm0 ]Cbox! So sto remoE.Bcall Tom now?Ibe absurd--1en  get awayq #$anc7EDNo, c stick1!ire!foAthem<k5truP for security^discoverQcommuG3Rmself#*!ut Eglidg 2beh!e men, cat-like,qbare fe~!ll_E the8*5far&!noqbe invi  y |GP q blocks0n^ left upJ2ss-8y?"E,!qcame to% !pa}1Cardiff Hill;5Ctookfthe old Welshman's Whalf-m(hi-1hes!ng Qclimbward. Good, 5*VSdury itold quarryC) "stfa &-3on,b summixy plung.T7 1run 1ook whe pistols wekf#I Astop$t..Scome now becuz 7# 5it,7 ;I:lF3 I x1wan7runo}m devils88! i,2 deUph2hapAdo l?  Byou'aO1a--but +b's a bM!e2you:Ryou'v^Fyour=A. No"y U Adead--we are sorryC|#atCee wiqright w!toq#ou6 Rm, bydescription #weOaC = !we?RfteenTnAm--dis a cellard2was(sn I fouE sneeze. It wHmeanest kin16!lu " t3o keep it bp use --'twas bjt!it(#I iR lead/ 2my :3theR star-ose scoundr Q-rust*6! pbI sung"B'Fir!!'cblazedtt5he aqwas. So".  2offrjiffy, svillainwZ4N  a%oods. I B we eatouche|mydgAot a y4  bullets whizzed bdo us any harm. Ak!we9 the sou$Tw at chas2entS }!tio5_>ctablesgot a posse fH1offuV R bank&Cit i+qsheriffaa gangE bea8}"My}!.\XAsh wz"A sor2 ose rascals2H uadeal. But you cy  dRlike,euY2ladQpposetOh yes;JAown-(and follc AthemSplendid! Db2m--d BOne'B!olfdumb SpaniQben a*;once or twicQt'oth[sa mean-", VTP men! Happeng Dthem1R back2one 2andoQslunkR. OffAyou, 8ellfA--ge to-morrow Y Y"2depS!1. A__qe room   : "Oh, ptell ANYbod bR! Oh, eAG_ gByou -N%credit of w:1 di"Oh no, no! DVA!" )B men g  o said: "T2 7w Cwon'B2whyoia#n?  explain,!tothat he al Aknewn w"on3 Ahose!+4manUv 2anyHast him Juworld--c& for knowing it% ?d secrecy3morW1How&se fellowsA? We!ey Ding &usea!t #ramed a duly H rep -S lot,--leasyrsays soI5see)ragin it@ =much, on #!inx }3tryQstrik a new way of do7"ay u ' I,BleepQso I r  up-street 'bout midf a, a-tu~fg - AI go old shackly brick store by WP1, I3 Red upO%ll#2k.  %bcomes fQtwo c B"slf0%lose by me,+1unddreir arm'( V y'd stole1OneAa-sm3b one wah, !ri.s\ !me"igACt upBfaceIy og 1ig - eA, bywhite whiskerQ xT `ua rustyo a." "CmDrags ?Cis staggq5forA !n ?5Aknow Qhow i#msCIQTJy o52you<Fb'em--y eiO&to| awas up8y sneakedsso. I do$!'4+1iddDstilG& $ d:# JgVe begK%heX swear he'd sp;rr looks'as}2two  What! The DEAF AND DUMB ma8ia4at!!'aderrible mistake! H63his.jC Ru>sthe fai+i2 whNK smight bQ1yetdtongue/0@$to in spitball heFr do. He several efforts to creep!of1scrape, R's ey 1mh["bl5 9. P  ,be afrai!me 6 hurt a hair o qr head v3=I'd protec !. 1 is ;#leAslipout intend+ D. up now. YGEthat4 K q. Now tAme-- m S it i"3 -- a betra Alookit!ho51eye Qomenton bent over 9ear: "'Tab--it'sO'1 Joz ) gjumped chair. InWQ 1ll ,pe 4you{m#2ing#and slitting noses2wasown embellish 3men3tak1sorYrrevenge\"an #! a different matt242q." Dur7B&:alk! c Y 1 sades (h2hishad done,_ C#!d,^a7eqexamine,its vicinity AmarkP Qblood11y fnvut captured a bulky bundle of)Of WHAT?" IfqBwordBbeenn 3hey leaped withcqre stun0O!5AblanBlips]!-were star1ide3Qreath$ended--wao! )tarted--st?+in return--1QRgs--fiv1ten%!end i<f burglar's toolsY4,G' bMATTER sank back, pan5deeply, unaEably !eyt/m gravely, cur!V--and= NYes,appears to relieveB Butcdid gi# 3urn9!YOU expecBwe'd2?" a \H a inqui *Q havenfor material$ aa plau4#-- suggesteR?elf|!boadeeper --a senseless1y o~dK^/!noq+ to weighiokventure he c it--feebly: "-+T books, maybe." Poortoo distress!sma Cqed loudfjoyouseb detai$.Ratomy1hea Bfoot%b by sahat such armoney in a- pocket, q it cutoctor's bill likM Aadde!olG!p,y2re Z !a5Byou awell a bit--no wo8aqf #of8 Z'.*!ouit. Rest6Rsleep6Afetc2all_#brritat<6 heaBgoos!ed{! a)!icM!esf"aroppednBideaarcel b%.K%2Avern]9. c talk 3XW ahad on%rought i3"nod however "ha"kn/ bwasn't!sot%a qoo much:Helf-w!Bu![ 4'2gla@. Shad hnt!no4 beyond all qusnot THE,Oo mind was at rkexceedingly comfortaban factC Q drifbjust iD dir_`Anow;WA musw ;) in No. 2 zy!ilybat dayhATom a seizeo3golS \1out !or fear of interruption. Ju# pYea knoc9#l ` 0 hiding-"noX connecte!n remotely1lat admittedtRladiev gentlemen, amo*Widow Dougla Tnoticngroups of citizeny bclimbi2the hill--to 7 S\Qnews xBprea h(h the stor$Z'he visitor#gratitude"erbrvatiooutspoken. "Don't}a# it, madaGre's]z"'r beholdeQthan -Tre todmy boyc#he ballow Atellsname. WAn't ] v2butim." Of $&uriosity so va|"be1d tV#in )twa to eaAvita'mm be trans }Dtownb refus"BpartjCcretorall els> qlearnedO  I "to% rJ9"ypV8a noise L#Rake m:rWe judg0j2worMgQle. T"dlikely! !--Shadn'CoolsBao work pAhe u1 waGbyou up4carDR? My BnegrAstood guard sr houseeLmk By've`ack." More!C cam"beD,aand re G couple of hours more.G tSabbath d 1vacecQ1 waVly at churchQ stir1Beven` canvassed. NewV#n Dsign5two! 5yetA#edthe sermfinished, Judge ThDu's wife alongsidRMrs. mZQ as sI6ved1 Qaisle;-BcrowqIs my Becky>all day? I !edhB tirQdeathBYourS(RYes,"a;!tlp Sok--"T"sa2youIQnightEE/!noa kced palh$sabba pew,as Aunt Polly, ing brisklwa5pG by.64qGood-mo), A 'got a boy up missing.o1 myD!st Qlast !#--7you. AndY $'snvtto sett'q  "he H andar than7d. "HeB$us(`b, begi !to uneasy. A marked anxietCc's face. "JoeVSK?Y1No'b"1didqsee hima?" Jo="wa!su7 "ayWQpeopl amoving %ofWs}3aloD a boding Aines&k 1 ofzy counten\'of!if  .!On!ngfinally blurt2his  !we4ill Zcave! swooned awa f#Ao crrringing'Bands alarm swept/lip to lip,Agrou 2to ithin five minutesCbell fwildlyN6he "upF/EJ insignificanD<xforgotten, horsesaddled, skiff4man !!rd#ou1bef{nDrror was half an old, two h)dbcere po6aighroaA riv gC. A Blong091nooge seemed emptydead. Many women (ed9#anPa'q They cC)2too"wa/"l N;z#. tedious022ews/>wA dawqt last,   was, "Send candlesrsend food."4wasqcrazed;L{, also. sent messages! p encouragVtWaonveyereal cheT3 ]3h4'BdaylpQspattRwith -grease, smeTBclay Bworn7#HeJHuck#behad been provid%3 hi"Adelic feveruhysiciano4allrcave, s  ook chargg "ient. She ! s B herb4,'ahe was@Q, bad;7%in,fBr Lord'sKu !R"a \neglectez"aik good spotvQ-`"You can depen(>2at'xAmarkdon't lea9Doff. He n3does. Puts"2ome)0$on"re\Ccome(Bhis TA" E AforeRparti3jad Q ctraggl< bGllag strongeswEthe qcontinuxAarch gBnewsbe gaineBness]7edhansack71vis;Y S cornAZ ,o#ly#edCver one wan4z"pax!, [wcseen fE hit Bdist@qhouting0-shots sentr9:)1berrthe earthe sombr Qs. In&ar1sec21usu. rtravers/rtouristI7s "BECKY & TOM"DbtracedbRL=2cky'#Csmok near at h =1-so!biqribbon.   recogniz'e%>4hover ii7crh. !ofiAno omemorial )@be so precious Q this parted latestqliving h*RawfulpV! c.3SomzAw ann/a far-away speck ofzWglimm*&rn a gloKDshou)~fAscor'men go tro:1dow echoingz1aa sick; Vointment always f!e  a 0 donly a2r'st ree dreadD2^ 2s d#0 ]% jt # a hopeless stupor. N 0_;accidentaly, just made,groprietorS ++Tiquor)premises,qcely fl3  public pulse, tremendou)1the 2 wa5qa lucid%Rrval,lasubjecta asked--dimly 7" worst-- W.! Thd sinceaEill.p.h "stSup inr#bild-ey1vWhat? W)$Lm;lace has shut up. Lie dV! a&&+!me!" "Only02 meQing--&one--please! Was it Tom Sawyer TT burse>"Hush, h !Byou 5 must NOT talky'Bare very sick!zAn no5 bu1rF t powwow if i the gold. Sctreasu2gon Ugone MmJ$e bout? CuM +@TR.2houoD1dimu/7$3min^uF the wearrhey gavhh(|?&. o herself: "TNJh/poor wreck. find it! Pitysomebody !KR! Ah,j!PDAleftIThope ^5or strength either, to go on| E CHAPTER XXXI NOW to%1 toZ's shareapicnic*By trNathe murkyqSVr ompany, visit familiar !eI$--adubbedw rather over7ptive nam uch as "The Drawing-Room,"Cathedral," "Aladdin's Palace,"\so on+hide-and-seek fro^u b AengaBn itzeal until!exertionDrow a trifle Asomen6 a sinuous avenue hol+-/kf #tangled web-work of Idates, post-office addrU rmottoes~) g walls rescoed (in ). Still Uand talk:CscarcelyM3nowXK"ar!H! w+tq. They b2ownPK!anphHA she[.ed,yD   2 a am of watrickling over a ledgkQcarry k sedimenVuit, had Qslow-y 81gesm3= and ruffled Niagara in gleam5nd imperishabAone.%squeezed his smallP h in order to illuminate i q's gratAtion rit curta,]jnatural stairwaywas encloZ etween na9ce the ambi Ya r"bd him. respondehis call,1hey_ " aM-mark for future guid oqir quesAey wD, "waBthatXAinto depths ofL  2Bmark|g$ed?( of novelties to @!the upper worl. 3oneQa spa s", L1cei3muld"Rof sh[stalactit" land circuml.c7 [' H) 1kedG" OQadmir_ +1lef~bnumerous Aopen?0#toi artly bm Qbewit2 sp}Rbasint(dncrustsa frosta glitt crystals Amidsa| supported by rfantastic pillarsR# ?Q8"joof great katalagmCtogehe resul1eas  Q-dripqenturies. UnIZaof vast(ts of batfp themselvwaousand#qa bunch(s+3urb flockings 4 byrs, sque"and darting f  FCkneww4the danger%isqconduct'#'snd hurried herthe first kDffern qoo soon)Q a ba#Duck gGmits wing ,ugitives plungnevery newr#ag!atRb got r5the perilous 7 ubterranean lake,,a stret?its dim 3way !it@ p!lo2shaQrHe wantLexplore its b;,0t conclur!habe best to sit#Ast a9TR. NowO1timbe deepA lai&Rlammygb spiri@*Why, I didn't ,it seems1so M gaI hearY!ot+:m bthink,#, 9Hqdown beLhem--and:!n'=Qw howK/north, or sou AeastQwhichit is. W8Dn't >bm0Cweek9!ye"qwas plaT"at cf 2 beAthei8 3dleAnot cyet. Aqime aft"isZ< P CR--Tom qgo softlo for dripp`BaterZ3 aMf satR Bothcruelly tired, ye CssMfuld go 73 .Tom dissenD F2not>!st8D !ey'2 fae-bin froPBthemTrclay. Toon busy;G'1aid* 7Atimeh^broke the:AI am DAungr5J!me!!of . "Do you remembP"?"4he.Zbalmost1d|'s our wedding-cakeMSYes--!asTQas a 6li"goaI saveA&"us to dream onyF1way$n-up people do'll be ourSS"pp<Q sentP6  Bdivi#Re cakw 3 atT2appetite,Tom nibbled a:amoietys abunda"co"RfinisfQ with. By-and-byGtey move on 'yilent a mom"qThen he:z1can/ rit if In1you k#?"8'4pal}`.Qnw 1stamB!er Bre's ink. Thatw " iClast6 ! gave loos)S&il#diA{to comfor$ `$AtU!C"?")y'll miss uKChunt4rwill! Cl"!ithey're hun Ror us,laDare.Bhen $S"Whby get o the boatHM#itbe dark then--enotice w/1n'tnbIaanywayNr mother8you"bthey got q." A fBened "inT"brfSSsenseRe sawh made a blunderw% _hs2hat08! Tebecame$ndO uful. In a new burst of grief21 sh  ^ g"ingQstruc@s also--QCR:half spent before Mrs. Thatcher discov M""at/Harper's. 2 GR !biqno doub2:)Bwas a !on/M $on1it; }!%esso hideouswbat he 2$itG!waa5ger1torX,K [/s A portio0h z was left;Q Band ,.~dhungriD poor morsel of food whetted desir c : "SH! DiuAthat 2othyV " aq like the faintest, far-off. InstantlAanswYul|/d M)Uhand,@"*gr7 corridorG0s4. P  s(R ;.BV%Rappar a BnearU DthemdTom; "coming! Come"-- b now!"54joy,rprisone overwhelmFT2spe[ %moTswarmingfrantic half-clad pT, whowA, "T2Vut! t F " Tin panChorn 6addAdin,#Qpopul massed g}*!to ver, met=in an open carriage%"byaitizendrongedA it, joined itsWRmarchswept magnific? Q main et roaring huzzah* !was illuminated;~Pb;ar3est(t!tt w0Cever_ 2Dur%re firsthour a processars fil rough Judge-'s house,f<n"sa+,ejsqueezedt'", to speak butn't--and dr out rainiY"rs veK& c1ppi% romplete nearly so5[ a messe AdispSdkH#2cav2!ldv"!orL 1usbNTom lay 0aa sofaXWasuditory71him=1tol~A his!ofwonderful adjB, puR+"inAstri1add adorn it1"al JCudescriptOahow he %tent on Bexpel;7'Btwo Fs!as0* ARa thi^aullest4tchM3wasT"to he glimpsed aD speh6Clook*A day ;"2lin Oit, pushedshouldersa small hol1sawbroad Mississippi ro by! And if it5 F0Rappen#beVhU@ !se* 2at %oft/d[ %4rore! Hec7for/I%j @ @"imoAo fr.r$such stuff, $  &# w Sto diR~?ɆU laboher and convincg %"hoe@Q died1joy A she  actually>lueG he >1wayI& !anbn help2 ou?gAat t]for gladness+some men a8Qskiff cTom haI!em G33con rddidn'tE=qild talfirst, "#,"Dahey, "Q"$re]2les> bhWavalley cave is in" n m aboard, rowFa""gam supperqGthem rest G 1two4hreDdarkn.Fhome. B!day-dawn,=q handfu% Ahim Rtrackg,5R+twine clewyctrung +sformed A. T+# }BtoiluPi~Rbe sh3'ffA9s#Foon " y bedriddenFf}5and~to grow mo7 QBwornP ><2got,MV, on e"wa- {a"as  `"di8her room1Sun34she$ash1hadT'edk1wasaillnes#$omi of Huck's sickm Rto seoAbut be admitDthe bedroom; neit5- Uhe onB or H-x-bwas wam8; s introduce no exciQtopicL Widow Douglas staye1thaKaobeyed/Ahome? the Cardiff Hill event; alsoDthe "ragged man's" bod-%  ;6 erry-landing2had7Adrow&\trying to , perhaps. About a fortiVrescu E, he a visit:yi#plGrong enough!toc2Tom'Aintel:.., A waswm,t " ome friend4Tom$2ing>2oneW him ironicsqn't lik%!goHRy10he thoughqRn't mqO said: "Well,1others jusuQyou, )3I'v| ast doubt.)Ave t3caraat. NoAwill !atA anyH*)*Because Iits big do $atb boiler ironP weeks agoriple-lockedO"goTbkeys."tjite as a sheet.1at' matter, boy! H,Arun,qbody! F=aa glasL1!" "* gba!!thJface. "Aqall right. W1a M#Oh,'[cave!vXIII WITHIN a fewj2new1spr.%b dozen b-loads3nq @!to McDougal'sE1boatll fill#pak"s,5 CSawy[deDD bor4. -bbwas un4,%rrrowfulFeCelf sqdim twi xD lay^1ed )@,)"hiQ closrthe cra} "thif his longing f+dfixed,>clatest,,s cheer CfreeQcoutsidwas touchedd v-tick--a dessertspoonVZ2fou&J3was fallingsPyramids' Bnew;Troy fell#this of Rome7Claid(bChristtrucifiethe Conqueror creat British empireJolumbus sailEqmassacrqLexingtons"news." K2now3ill=4be #whBthesy3gU"ll\Bsunk2then| 3of ,w "raCw;} ]c thickof oblivion. Hoa purpos Aa mi=? Did thisR pati$d!fi ousand yearsready forD2flihuman insect's need?has it another important object to accomplish  xcome? No .Band 2hap alf-bree1out ^>Qprice8drops, bu3a(e !t patheticslow-droppVBater@!hey8e1seeb!< .b's cupC6Ts firde list2bcavernmnQvels; 4b" cannot rival i 4xKn,VB BcaveI flocked in boatsfwagons|3towAfromthe farm1 hamletsseven miles|I >1ugh%irYSrall sorAprov~NsUO/3hadN! as satisfactory a%. funeral y"av&1 ha Y%is5Ir*Bgrow[#oni#agovernIrcpardon5k qlargelyT2ed;Qqtearfuleloquent meet<$he#a committeJCsappt!apBo inrRF%1ingjSwail timplore*be a mercis trample $ut| Gfoot/h0"tokfive citizenwt&+idat? If. ASataC Cselfe$/!ofl)SlingsRto scribblir names-a tear on itLir permans impair Rleaky{Q-work"2TomAvHuck to& gave anRtalk.3!haw1rneQ aboum'the Welshmant, !is}Yq>s!? old him; R  5he TS talk2now's face saddenedw bI knowJit is. You got5QNo. 233 anbut whiskeytold me itAyou;aI justp must 'a' ben ]usoon as\'fA bus|"em8q hadn'tt)ney becuzdl!go!me ! w Dand aif you!musdB els's alwaysG4we';uget holT swag, Huck, I-It-keeper. YOUF -" I"DD.mI D1youHAto w   yes! Why, it seems!ag#8> CI folleredK-YOU foll1him2Yes]2youqcmum. ISS"'s;Q2himI don't want 'em soV Bon m me mean 6s. If itpben for me he'5V ain Tex@&w,.ns entire+%in-5Aonly* Ofit before.lp:,'!ba@ main question, "whoever nipp "in(, --anyways it's a g.afor us;G wasn't n!;Bat!"Lphis comradekeenly. "Tom,agot onO twQagainti1 cave!" cblazed. "SayM FgainT*"Tom--hone 1junf--is it funV!strEarnest;!--^$as# f ! ILlife. WiF#go"reAhelpZRit ounsI bet IxE2 ifwCRe can5 ouV  6"doDwith dlittleBatroubl the worl?aGood aat! What makesRthinkoney's--2you;rtill wef!re#we1mit I'll aSto giVqmy drum71&Cq I will0jxGT" "A!--va whiz. [!do1say "Ri$w,say it. Are*4IWaPave? I ben o-cpins a,"oradays, tbut I caKlk more'n a "--IAI$.">q G$qanybodyRm 1go,1^Qmight,Drt cK]  N ; ,Gri.bskiff.&2flo] ["re I'll pull itj_by myself A neeturn yourq$Q over2Lw2artA offm@B. We"bT32eatour pipes bag or two T%kite-stru ese new-fp!thA ycall lucifer m+rs. I te, "'s1imetbshed I2omeD" Aqaafter the boys borU&) #a W B whoU Cbsen(got undec^were sev` below "Cave H%," R: "NNis bluff herJ$s!Balik d5--no houses, no wood-yards, busheRO"ee5whi4 Rup yok#'s4 landslide? Aat'sof my marks. We' aashore.yG97inU're a-sta#8'6ahole I bout of~Qa fispole. See#4can.Biplace abou$P proudly mar"a clump of sumachncc: "Heare! Look at i;athe snuggesDis country9 "ll2Drwanting/ a robberrknew I'rto have1ng 3thi1o run acros]vAther!ve1it :&2'llit quiet,1let< K:aBen RoU1Cin--*$ o@ be a GangC #lsj* any styl it. Tom Sawyer'sA:1sou$plendid,L?  "it3doe And who'c1rob/aOh, mo6. Waylay people--W$!lyV2wayRnd ki "No-@Q. Hivm# t4y26a ransomUeWhat'sCMoneg3makR<y can, off'$ir{ b; and you've kep.mqit ain'2!seV2. T!enkway. Onlyb women1shu`9 2men5Cm. T5Fb beautqnd rich awfully scaredgt"irI!es5sZStake t|+"nd4pol7y!3 as3 ass --you'llMany book. cto lovXfter they,m s a week y stop cr!eRto le'i4dro Ay'd  { Raroun2com9. It's so insy real bully' $ Ibdbetter'n a piratQC"YesF&^7way Cit's6"!toQQccircus\!at{@y+ %1andaboys ew)#ho\  $ l0Qy toi#*a7tunnel, then madir spliced 1 fadK$a on. A&E z'%pr)Tom felt ams quiver him. HeQCragm> -wick pexSon a oC cla$De wa; t2ox*_ d flame struggl)AexpiQTf!ga4 o whispers,!foS-d gloommcoppresBirit yYBpres:ar 0LQuntilE reaAG,Wndles%rhe factx not really a, BpiceLa steep DhillFirty feet highW @eW+2Now@ AshowY.  Ae he+sa aloft+` sNAorne7ban. Doi!ee? There--0big rock over$ S--donKp}3TomCqa CROSS2NOWZ '{ r Number Two? 'UNDER THE2,' hey?  2's eI saw &# p`+r stared Qe mys Qign afB 6R shaky voice:qless gi} " o QWhat!>treasureVRYes--6it.'s ghost is  ere, certain."B 81, nKB. It Q ha'nk8Qhe di,Away /%2mou!Vave--z ChereS \wouldy#ngkJ 4"ofV #so & &omi3feaX5. Misgivm!ga+d}CR mind 7Lc him--)ym$Sfools m@of ourselves! & a 8|; Z!a = !R poin`#wen1had)teffect.I6_"atA #so/EluckxQthat {7 isJ VpS AhuntG4box5wen77c -ink of fetc4theBbagsFS@B1soog oys tookr1 tofm a rock. qw less w!#gue*<,Q2<  `3'reOEickswhen we go to robbingNSe tim hold our orgieCsre, too ful snug9 ) 0CW@ bI dono P%;#ofT% wWCto hem,] /"ing!a Btime getting late, chungry`We'll eat0bUwe gec6y Temerg4/ 0ed warily f 5oast clear!weZbon lun$in ! Ac sun d#Bowar[Rhoriz] Ay pun  kimmed uDe@KR2wil1chai 91ilyZ7 alandedI3tlyd4dar7c"!id!in 1lof the widow's woodshedrAI'll.3 up*ev1 it(Upa?!unna!ou"od!.#it"it=be safe. Jus 3lay\-  Atuff1 I nd hook Benny Taylor'swagon; Iqbe gone!"nuHe disappear#re agon, putcBtwo Rsacks!"itA"w"ld,Qon to!tarted off, dragging7rgo'|h+"'sh &tgay9q fy1 on: Pp~ allo, whop  nLWGood!1me,, !ar&Gpingy*waiting. Hhurry up, trot ahead--Ahaul~Vyou. qnot as b as it4# be. Got b;in it?--orQmetalO+4tal2Tomjudged so9 1boyGthis townAtake0$%sol away1imeNing up six bits' woraold irNS sellh foundry thaz3y w; 8wic'$at6 work. But that's:4Fnatux ",  '!"!wa1to [$Ch#wa$ever mind; !n&% !E'1uckGRf=hension--for heub} falsely accus; r. Jones, we haven't!Udoing Rlaugh!'-,ymy boy.i that. Ain'bgDgood+%Ye_"sh"nA &B to #yw%"n.-(n,%to be afraid for?%is+J3not+qly answ"!inq's slow$ ~1S,;into Mrs.# dXeroom. 3 le nae doorz3gwas grandlyn1bod4tof any consequenceu2&~ ThatchersQkB Har3the!es, Aunt Polly, Sid, Mac he minister3beditor-qa great0&)?all dressX bAThe a recei;<RBartiJdany onP#we!iv such loP Dare cov Bwith:and. 2 bl[ rcrimson rhumiliaUNHv u at TomFAsuffhalf as muchQboys "however. Mr. Bn't at home, yet, so I gave him up;5$astumbl2anda Qat myG"br "Bin a(0!An1B did3Sv 1. "TyNr." She cto a bedchanRNow washI% y. Here arnew suit$ clothes --shirts, socks, .UCy're+A--nobthanks*&--b! And IY%Bz y'll fit boyou. Get Dthem await--Bdown 1youRslick .3n s \rV HUCKD! "we can slope, ifu'Ra rop" high fro"Shucks!D d|%IQrthat kiUfa crowd.,^(8 athere,a"|&4! I"an!miRA a bX'Scare Q" Silm .vhe, "auntie has been  afternoon. Mary(your Sundayb readyU 7aen fre  . baAthisus qclay, o;ra)Mr. Siddy jist 'tend toT own busiO#'sis blow-nb`It's one2#atx1havtime it'sF 1andl sons, on=uw"Vcrape they helpej9&of4'Rsay--h, 21, i yk+wK  Fold 2is to try toq#_ J( C1to-,overheard himvbto-dayvas a secre"B it' lRof a (XE RknowsSL##1allf!trro let oz!doVQwas bqHuck sh !be!--xn't geta yG1outAknowS"AwhatA'zAtracYAbbero'V  a  BovercurprisQ#AI be4 drop pretty flatWbchuckl aa verygEe aatisfiZy. "Sid, ib2tol3Oh,:Qwho i# . SOMEBODY told--3 @ZJl_ Dpers:Cmean:R to d XI7<x !you'd 'a' sne sn9EtoldZ)0)Tdo an{21an !y&~mo_Tp(+J >  cones. X$nn:N  says"--Dcuffed Sid's {i  0k8q"Now go"if2arenQto-moFit!" Som Autes'GSguest a WD-tab[$ua dozen@/"pr!upittle side;F1e sixQoom, {t1at r vAbproperl Amadev4 speech, iY!!heOkNHB honPQF [T was Dwhose modesty-- A: fo)sHe spru+{a'Er adventu finest dramatic mann_ master ofDthe B it !onJs largelyFerfe8 as clamorousNeffusivechappier K+amstanc  &, ( air show of astonishment,AheapF compliment2 so: ntude upon)(a he al/Rforgoanearlyv l܎K!Amfor%this new2 K :k set up as a targeh  \gaze laudations <"sh<2giv s a homesher rooave him educated;Rcs-Fuld spar2 sAtartFi  \'s chancrcome. H#F32uck"2 ne's rich." Noa heavy strain2the9 tmpany kept baBe du E:2aryis pleasant jos5DsilearawkwardObroke it@(AMayb. cbut he0!lo it. Oh, you%n't smile--  1eY;&a 'tTom ran Bdoor1looked at eacha perplexbterestuinquiringly a_ Ttongue-ti* #ls Tom?"P. "He--well - any making at boy out. I(<4Tom}/,q#Dggli{Eeigh,2 di"afinishsentenceCpourU1masyellow coQ the C^Cqwhat dih ? Half of FRmine! spectacl1 general{way. All gazed, nwpoke for a momentn a unanimous :.n explan  #1fur5i nd he did^B tal!bumful of _,ca scarc!n rruptiony!tok the char/its flow|che had"edAJoneM)d: I,x^Jf#%isP2it BamoupC nowone makeFBsingy), I'm wilbto allhT3was[3sumt"edRG over twelve thousand dollarsr-!as+ 7 [Qaresentever seenl`e time before, "  Q N"ho1 worth consido7av,tyaV THEer may rest Aaj's windfall33$a j4tirDpoor(vof St. o. So vast a sum, in actual cash, seemed nexincrediblejqtalked , gloated0rified, until thOs' mTJdtotter&2*'e unhealthy excite "haunted" housq 2 anneighboring villzwas dissected, plank by U3oun1 duand ransafor hidden treasu Qnot b=st men--0 grave, unromantic menWmH1Tom >Q cour2adm(gz1qnot abl|arememb~2at 4bremarkLqpossessJ&};3now1say0Twere dBrepe 4didvrsomehow regardedv8Aableyidently lo{5power of doV'2nd r common !s;5#ovir past historr!up X v2ar " of conspicuous originalityto paper published biographical sketcheNt.1 # p>#'s !ousix per cent.dJudge " lt's request. Each lad had an incBnow, was simply prodigious--a9D-dayC8Ayear7?2jus  got --no, hpromised--MrcollectD Ha quarter a7 board, lodgd school a <^1ose  be daysF 2 hiBwashbrmatter.  ,@RopiniR 8no 3boy!goz daughtPAcavepqn Beckyd@ 1fatzwin strictCw!ceA TomAtake&a whippt6  dy2isiFv  Cplea,!ceK4thei3lie-w!olorder to shi*&at!hemo8own3saiTaq outburh$atyBa nod !ou<,5magz lie--a litaworthyzaold up-2hea-Rmarch1]breast to George WaBton's lauded TruthU"ratchet!mQ 7ghtzU bso talSso superb wR walk4 fl qstamped\AfootdVv!2Shec:straight of1tol#/it"op& 1seexqlawyer  soldier some day0look to i"T#!AdmitkY National Military AcademRafter(Qraine!es  9[Amigh9'Ieither care both. Finn's w0 qsthe fac#now undeQ_ Douglas' protec introduced him)"society--no2' it, hurluis suffer%1mornj1R bear?servants1cle 1d naHQcombeC1 br hCbeddly in unsympathet3ets2ad 3e[ spot or stx~uld pres/2earQknow yK$!haE#eaba knifufork; h%use napkin, cupXplate&QlearndWbook,@go to church2stalk so "lyaspeechT become insipid in hisX; whithersoXees"edC2bar ashackl civiliz;B shuiQbound1han foot. He bravely b4is miser|1ree!thTLSe day up missFor forty-e\Qhours^g! hO j2himw2in Qdistress. The cS profoundoncerned;~7u E %eyF- @1forqbody. EThird V)r wiselyPp*$Qamong old empty hogsheads down*]AbandU#sl-T p'inQm he $rrefugeeL had slepor breakfastoB stolen odd61end Bfoodbwas ly<f in comfort969"ipwas unkempt, unM1cla old ruin of +,had madepicturesqueRays ws01frea happy[S routvBout,"his"*been causing,s 3urg=Qto go gr's face its tranquilv took a melancholy cas63RDon't X CI'vey #itwT work6"T;"#"it:~U 2to :)d("ly_&7#them waysA!mex!up% / Bsameq 7+9Awashy comb mLo thunder0w&let me sleepJ/a; I go61wea[m blamed cloth!atA smo?" m#'dg1seeany air git A'em,Show; !y'1 rotten ni,a=!et, nor lay^ croll a@nywher's; I hai"liD cellar-doErit 'pea b A  and swea q--I hatm!m Cy sermons!Aketc xK,[chaw.Qshoes$w eats by a bell1goeybed by fits up!--VK's so awful reg'lar)dy!it_(,>#dvhat way, Huck(&qmake no differI`Qybodyq STAND &3t's1 ti so. And grub como easy--I# t{!esvittles,}3askAa-fi 1; I  in a-swimming--dern'd if{AQ1do 6t". H!I'42 to"sodn't no(#--. OuRattic"ipRSwhileA daym1git!st"my , or I'd a died, TomnKBAmokeu y?5Bgapeqstretch Q scra before folks--" [The+a spasm ofsial irrit and injury]--"And dad fq"itaprayedNDime!A see, a woman! I HAD1ove2--I yUbesidHZ5's $Copen_<S$it%I G!st"QHAT, QLooky%,0S rich@what it's crack); Bworr  9 2a-wwas dead <2. N7%seBsuitis bar'l %shake 'emmc>B got into%isAif in't 'a' ben Kmoney; ntake my sh@&Syour'gimme a ten-centtimes--not manyX#s,K_# Ra derR2'th's tollable hyx4you$qbeg offSQidderv"OhK3d6%Rt. 'TBfair if you'll try^;B!a UQ longI*e $tok<Like it! Yes--bay I'd&a hot stovAI was(!itcLC. No7Brichi4liv m cussed y_Bs. I6oodv  Rf  I'll stictoo. BlamBall!QSas we3gun_1a c*"ll+AfixeEArob,p&olishness has  k"up5pil~x1sawx opportuni%"CDhereHECUevYnturning 'qNo! Oh, -licks; ara!qin real3-wood earnest)J+CbR'm siV-?5But<l)#qgang ifarespec5R's jo3h!!C"inq Didn't[!go~a piraterYes, bu%'sRt. A 7 zfAgh-ti7"a NQ is--rgeneral~A. InTr!ri 6  Qup inQnobilRdukes03uchw,! aS2lwme? YouhC  A youP *nVWOULD+B" "wR%,tI DON'TR--but(vpeople say? Why 'd say, 'Mph! V#!  low characters in it!' TCU+ {h+`$t*#so , engaged%Tental"#e. Finally h# Rll go}aba monttC!nd1if  `3it,49XRme b't>%Q gang e_b, it'sQz! Coxo8X`2and G>Toh# a[oEWill/!--yg2? Tggood. If sheUt"ofroughestK"s,@qprivate-Dcussdcrowd ror bust] Astar/4NCturn$s? 3right offBB@Atogem"avQiniti  0Qmaybe(H(Lj;+W6t$12Bto sn9Cone [+ O#te rgang's 8+sd nNre choppl o flinder qkill an 2 anV his famiWhurtsX%ay9/e3y g8,!_3E bet it is3 "at1ing Abe dt midnightthe lonesom|3est@ you can find--a ha'nted " ib:-Bll rNB3up M#yw{(socyou've3 on a coffi 1sigh with bloodOt)Bsome RLIKE!frmillion )X!ieh n 8 s QidderAR I ro 8#gi% acr of aRLbody tal('-&itD bu+!sn!,wet." CONCLUSION SO endeth schronicP$G strictly a}!BOY, it kAstop ;Sstoryz!nofEmuch)p"wi becoming ^3MANone writes a!! a Sgrown*Q, he O4A exarto stopOB is,a marriage) iof juveniles, he W can. Mosgyrperform still liveare prospc2Som.it may seem ZQke upzyounger ones agaiM9 1sor"meAwomey turned@krRit wiwRwisesyOto reveaH&Rat pacQtheirDs at'4. Pby David Widge]previous ediwas updat2Jose Menendez'>  THE ADVENTURES OF TOM SAWYER0 /BY# MARK TWAIN' (Samuel Langhorne Clemens)P R E F A C E MOSTW%e 1s recordw areally occurred;nr two were experienc6 myb!rObose of"wh7 ]#3mat7$inY Finn is drawn from life; Q also$an individual$is a combi,Ybistics #re_whom I knewSabelong t.Sosite of architecture. The oddK!!stzqs touch}"onDall prevalentchildren!bslaves5e Wpwe period1is ay, thirty osAty y ago. Although my book iaGended mainly@ Athe qtainmen1boy7 girls, I!7#ill not be shunni "7$at;d, for vmy plan<"tooo0ly remind adul0 they onceathemselve^ 1of (rhey fel aalked,}Rqueer89s=Gimes 4. z!dUTHOR. HARTFORD, 1876TT O M S A W Y E RI "TOM!" No answ& g4iat boy, I wonder? You Rld lady pul'"!eratacles|$!ov #emcthe ro0rn she pm:&ut"m/seldom or +rTHROUGHhrfor so WJj!asyIher state pairA3 pr8V2her",Qbuilt3"style," not service--4'!se+raetove-lidsUs well. She looked 2z"&mo68!aiK1Qt fie0673oudP;the furniturUhear:e IQ aet holI1you A--" 2="by AtimewVnding punchingNL%dre broomj!soGdneededE2to punctuat Q!esBresurrected no f B catiJ6"diz!ea!1wenthe openDA andUiRtm?he tomato vin~"jimpson" weedsB constitb the garden. No Tom. S AliftWmavoice  angle calculfor distanc1 sh : "Y-o-u-T w!slTnoiseU"h42  i to seize al2boye slack of his  aand ar?Qhis fwA. "2! IE 'a'closet. Who!(.Pb?" "N  1! LI!at yourU8(Qsr mouthb!ISa truckXIk?-1aun. Dk^3USjam--FewFWAI'vet" dk"leGA jam@e I'd skin you. Hand me switch.# h.i d air--Sl was desperate-- "My Bbehia hatesB{5 S else#'ve GOT to doLIrhim, orbu!ilaTom di>-eidFAgood02. H  back home barely in seaso}help Jim small colored1sawS9-day's wo"likindlingssupper--at le6e{n:"to~=8hiscto Jim"Jithree-fourtht~$rk. Tom's!br( (or rather half-Q) Sid!al0Awith A(piccup chips),Z ca quieH1andE,%noDous,VBsome* While Lstealing sugar aQ offe{X7C askw+questions/ Ewere1gui1nd deep--for Bwantxtrap him6damagingments. Like ;pI6-hearted souls (1was pet vanityAlievA `4endowed with a t@ 1arkmysterious diplomacy0qhe loveacontemn0xmost transparent d׏ as marvel[low cunning. Sai u: "Tom1midQ warmR, warn't it8 BYes'OPowerful1'u "wa n(FAA bim a?Ae shvTom--a togL#unr.9;suspicion. H8dL93facKK!ld aQ. So [ ?SNo'm-ynot very mx =1rea+oY Sshirta#Bu } 1tooJ though." A-Qflatt hO7rreflects2;hy-2hir1dry!ny Bknow/*s8!hay Fher Glqin spit/1herC whe wind lay, I ZqforestajCwhat )next move: "S]us pumped on eads--mine's damp yet. See?" 88"ex:Uthinkoverlook(v circumstantial evidenc!mis=a 1. Tya new ins"5ion^ ho undo yourrcollar =bI sewe to pump on/Qhead,3you? Unbuttsjacket!#sh#of\2fac1Aopen]s@a. His qas secujQ. "B1! W Ago ' #I'11sur'#edQ A 8bee  QI forg(y*. you're a kina singed c"s --better': . THIS timu Sahalf sV*her sagacitymiscarried,3gla?ATom i3Winto obedient conductconce. But SidneyIB3you5hisith white thread, but Qblack5BWhy,OB sew8r! Tom!" rnot waitQt. As4ent>w3o85bSiddy, 2licfk abI|afe plac/nrwo larg22les "A wer#us.+sthe lapd6them--on^  D3theHpJDShe'D"anoticeQit ha_'for Sid. Conf6it! she sews]&_ &I wish to geeminy sstick to t'other--Akeep!run of 'emsR I beI'll lamX qearn hi4!Hene Model Boye villaghkAhe m&1boyOS well--and loatim. Withins, or even less, M1tenG-As. NQcause sV1onePR heavV.Bbittj2him a man's ow_aTand p 1bd !emgAdrov% mSb)y25!--ras men's misf+eiaexcite!of. This newwas a valupSveltyP1stlojust acquiredb negrohto pract5Pundisturbed. It conma peculiar bird-lik5, a Aliqu wrble, pW  &#he9Lh(Droof at short 5valAmids@@Busicxreader probablyEbs how !it.4ra boy. Dilige attention soon gave 8#kn{7he strodeFVtreet full of harmon1his gratitud 0^ an astronomer feels who hasg planet--no doubtlqfar as Eg, deep, unalloyedRs concerned,advantagFAwithT!boO t$XComerRsumme4ElongJNqBark,2 P"ly Tom chel2!hiustle. A stranger!hi boy a shader'himself. A new-cAJaA ageither sexXan impressive curiosiPJdshabby\WJ!Thy{`Qdress\"oo  on a week-A<FFa astou B cap dainty ,W- ced bluL3b round%5was#Rnatty0"sohis pantaloons2had;82 on#iGonly Fri"He!wo necktie, a br  aribbon0had a cit#KR air |bat ate&avitals B mor1staUIsplendid}1hig!oshis finerUhabbi E outfit seemed d3crow. N]boy spokeU,2oneEa--but Nsidewise, inrcle; theyArface toaand ey!ey#X - U!" "D3to see you try i,  8$doN> ,L.-'Y?1CanACan'A "An>\!paMp ! Aname"q'Tisn't5"of^,Well I 'low^ MAKE it my0)why don't youhI\2 sa}01ill3qMuch--mAMUCHrb" "Oh^ 2'rey smart, DON'Tm# I)l one hand:n!meIr DO it? You SAY aI WILLTyou fool~ "Oh yes--een whole familiesame fixqSmarty!| CSOME "Oh_a a hat+AR lump-8;Z[Bck it offqanybodyG61akeb!re suck eggsYda liarn %fighting.q and datake it up1AAw--aa walkXSSay--!meA morBsass@and bou1 rof~oOh, of COURSE+; then? What/ eSAYINGTx for? W>{EIt's XQfraidyxI AIN'TaYou ar7""I+A3/3eyiM1"sihaR eachm tCwereH  .XGet away Ahere"GoyourselfDI wo B"Sobstood,X Sa foo0d"as a bra' both shoving 2ainaglowertg1Q hate# nfget an a. Afte=Auggl ,Aoth <"hoy#flHmSrelax Jnx watchful caution|acowardca pup.1ellRig brozQthras'y3his44r finger.make himW 1toosI care forj{4? I;1a6big Be isUmore,hrow him'3at !T[Bothas imaginary.]$at's a li=DYOUR 2n'tAit s1rew6n ;G dus cbig toh<qFstepZ/y stand up. Ateal sheeFTz!w{ 1tepv-Dmptl N="sa$'dnow let's D crowd m;abetterZ{HSAIDh*--Wd[By jingo!Xtwo cents.jAtook1bro)QEpper>$ 1ockd cderisionRtruck*g0B. InF.QstantR boys1rol Aand 4ingdg3d6Acats3, 1pac"Rtuggetm A's hI 3nd fFs, punch3Qscrat"T's no,covered -#:'ry* confusion2for) ;the fog of baXcDTom %, seatedU!id1# p sts. "Holler 'nuff!"3 heaboy on%Rruggl1fre*Hcrying--.rom rage. dn. At last#go1 smwbed "'N"1up -)8jyou. Bny 1foo+Qnext  3Mqff brus6S2ustGsobbing, snuff5and1\Eally&Aback1sha1his;.1tenbhat he=a do to]the "next) 2ughout." ToTom respo0Rjeers"st7off in high feath as soon asI4was*(up a stone,2w i "hirbetweenhoulderss-\1ailran like an antelop_Qchase6 traitor{"Rthus ere he livednaa posia2gat2som9A, da the enemy toonly made2s a gond declined. %J2's and called 0 bad, vicious, vulgar&"ndc3[ m} Twent away;!he\ he "'lowed" to "lay"s'.g1gott>2ate#:2and$he climbutiously in r #unl an ambuscade,-Bpers4#Aunt;g"aw]2tat n her resolN 1 toT his %%2captivity3ard/became adamantine in its firmness. CHAPTER II SATURDAY mor;e,"&4Qworld#.and fresh/Qbrimm-1ith5P1wasng in every:(L" i>'!wa*RR issuQ rthe lip`Zcheer iniJfAa sp&tAstep locust-treQbloom bragranthe blossoms fill air. Cardiff Hill, beyona]ave it,B!grith vegeta!2lay (4farZ, to seem a Delec"Land, dreamy, reposefulinviting. 1ppe5e2alkAa bu| of whiteZ long-handl11ushcsurvey  1qll gladE2lefoand a deep melancholy settledAuponaspiritmrty yardsQoard k nine feet/s. Life c hollo7existence^Ba bu{1ASigh)Qhe di 2hisfpassed)Isopmost plank; rep the operB; di8Qgain;f8/ignificant qed streaqar-reac!co7'un8s"wntree-boxQ Jim 3skipping 5at va tin paiT singing Buffalo Gals. BrQwater (rwn pumpKRlwayshateful work inu"Seyes,Dq now itJ1not\k 1 so\dompanypump. White, mulatto/Qnegro! 9there wai'Qtheirqs, rest?trading plays, quarren $, g, skylarking. And h"al?Awas only a hundRgnd fif!!f,/3got)  under an hour. "ev an somesG!lyto go after him. U1Say, I'll fetcp'7'll`"soJim shook :wq, Mars #NOle missis, she tol|IBgo an' g<s3an'F#op ' roun' wif_61sayZQspec'zEAgwingAax m ,rs5$an' 'tend to my ownQ--sheed SHE'D+f to de/5in'2you Cwhatt!id#. SSthe w talks. Gimm $--qbe gonerC a a\!R. SHE ever knowI9 she'd take)Qtar dd me. 'Deed2wou.q"SHE! S ver licks--whacks 'e}URimble1whosE ,p5C }w%1 awP1but6hurt--any#it!if$Gcry.you a marvel" aKs alley!Abega.waver. "%!Di=bully taQMy! Da5Fb, I teQ! But Tom I's" 'fraid aissis--" "And besides,R will#shAmy s,^o"Ji- human--t> Qttrac  "ooHAfor iaHe put( *a"ntZebsorbing!Qest w. 4andS being unwR; V2s fZ3dowI k!ApailJg3rea+Awas "waCvigo *retiringcQield 7a slipperZ {and triumphEeye.''s energyeAlastq}Tthink%!fuE 1had $ne$Sis daH"rrows multiplied. So~ 1fre!s #tra**!onL 2sor@2delXBd)Bb they J$a bof fun8%m2!to|)96verZcof it burn like fire%2hiscly wealt- q examin0 B--bitoys, marble trash; ;8 to buy an exchange of WORKX* 7s,*an hour of purk4domi#retraitened meansB "s qgave upoAidea r=1oys4 !rkN hopeless7- e Qm! No=  3than a great, ma1 8entC 6! >qtranqui. Ben Rog%v-spresentlnK boy, ofbwhose ridicule dreadingdb's gai the hop-skip-and-jump--prooj6is lis anticipa2!HeVM3ran appl1 gie1a la%melodious whoop, at vals, foljB by -toned ding-do,, a* amboat. As henhe slack}1spey"1ookhQmiddlU, leaned faro starboarderounded to ponderaborious pomp3/Oce--the Big Missouri (d| %;wdrawing"of 1boac capta9engine-bellbined, s!,o7 Qself  <own hurricane-deck the ordersQexecuAthemR1K, sir! Ting-a-linga!" The$way ran almos he drew up slowly towarq. "ShipToo backmsHis arm"gh^Atiff8xAidesZei mAstab%h Chow! ch-chow-wow! rQhand,"escribingly circlesC3 rePing a forty-'wheel. "Lg l-chow!" Thej5 e "to &RShead B0her! Letg*mslow! W-A! GeO ead-line! LIVELY nome--outd"- #t'Q#'t ! T~ t(hRstumpMQthe bA! StSy*age, now--l go! Donb 3thesH SH'T! S'tH'T!" (Suge-cocks)"on . R--paix9!, yDBen (n "Hi-YI! YOU'RE:ump, ain' nH 3hisPFouchI!eyan artistZ(!n vi\ gentle sweect&!suܙ"s $R rang4)alongsidv7  2mou!%er #e (n"tu1 k]! "Hello, old chap,M4gotTs, hey?"heeled suddenJn31it', Ben! IC9TnoticDSay--I'm goBa-swi, I am. DoQ wishacould? Aof c# you'd druther[ !--0 ?5? C)I (6(omR:d,#bi2at 6` ?` $hyIETHAT#umC \Aansw1carG ly: "Well, maybe it iU zI,$it suits Tom Sawyer dV1meaQ!le{`you LIKE!3Thep u}1mov^"? I(see why I oughtn'Gl-1. De$"get a chanW+# a fence every da}1hat(2thez-Q in aSlight!toAnibbApple2R swep daintily=forth--steI"ba<1notK effect--advAhere?there--critici=50--Ben wat2mov@1getm`!"ndp( bested, Ted. P 5 heTom, let MEf a littl _o consent1althis mind: "No--no--LBl"n'ly do, Ben. Y7'e,1's  particula.u a--righ eNQknow -G if C& I^3and. Yes, she's ;-bbe don[ careful; v"onmRthous Ftwo can do i?wayybNo--is6Hso? 1--ljust try. Only--I'd let YOUCas m:" "Ben, ., honest injun; but-D$nn!o s!1n'tAhim;7/!, "/Sid. Nowy` how I'm fixed? IfEa tacklKsb[C&Qhappe+"itOh, shucksbQ3as lgA youocK,#mySFN2.bafeardW3ALL Rareluct|ig @qalacrit1. Ah i4e  )erAb workeZ"sw>LA sun( #ed< 1 saa barrel7shade close by, danglQslegs, m^& aplanne! s0Iter of more innocBT33o ln6material;ed along :; they ca6BjeerArema2A. Bytime Ben\!faY'1out!ra1he $+Billy Fisher for a kit!good repair;1whe>out, Johnny Miller b in for a1Ir! a!ngw  uCso o, R hourHT hour8 afternoon>," a5poverty-stricken; !2was literally )3 in2. HhW"s r q mentioetwelveA par6 a jews-harp,*ece of blue bottle-gla}uOthrough, a spool cann2B key|u unlock1, a!mchalk, a ca decantU& tin soldiQcouplQtadposix fire-crack&r kitten only one eyJ61ass>knob, a dog-Asbno dogv3hanNvb, four1as of o C-peea dilapid)old window sash 1hadsa nice,G_2idlM#thq--plent40 \2encQthree coat! on it! If2n't9>9ut )"heT have bankrupted+Bvill)d2aidCmselR!itnot such a!,Yqall. HexA3dis8+ a great lawRuman |,1out5 ing it--namely, ."inD&Ra manzboy covet a} s !isG! n5ary;^ difficul vattain.U3! se philosop&)che wri ]x@A now comprehen>qat Work $isaatever dy is OBLIGEDj,<OPlay< not oblig# do. And 2helyIto under* :U1ruc artificial flowers orW_5ing"ad-mill is work, ten-pins or climMont Blanc amusement 3are2y gentlemen in Englho driveb-horseJ$nger-coaches tw}r thirty miles daily linummer, becaus@privilege costs themDablenQbut iOy"IK wages fo*XAturnh1ntoI3txsresign.oy mused at3ovea%ub?GQwhichRtakenC r Sworld`whheadquartersv[eport(sI TOM , ]q lkby an open {@leasant rearwBpartYwas bedroom, breakfast-s dining and library,|c balmy D air* stful quieeq odor o%Y@.rowsing murmur (AbeeshFeir effec!he AnoddfQver h"i "sh5n,%1but#caLdasleeplap. Her spectacl)1progQup onsAgrayA for-F1ty.%" 1Tomdeserted #ag&` !nda0 'iRpower p_repid wayN said: "Mayn't I$} yKCaunt&'ready? How mu Adone*AIt'sd.XCTom,ro me--I= bear itIb<u; it ISRF." dY1truxevidencezw uBsee LRrselfe a1uld^MDfind1perQ4C. ofAstat true. Whenfse entir*"ed1notelaborately QrecoaM!an!n aeak ad8ogw astonish 4was#unspeakable. S|bnever!m U's no^# i2canCwhenM2 %Ad to B." A!AdiluO!he)!liAby a, "But it#s seldoma aRI'm bsro say. go 'long$pl/Aryou get@3som i\BB, or(tan you." &awas sokbcome bSsplenSchiev1hattook him#th&tsE- choice appleQdelivit to him,C"ov cture upoBvaluNflavor a treatAo it uit came~ "siT9ugh virtuous effbsd: a happy Scriptur urish, he "hooked" bughnutn !kieand saw SidQstart%pHl2 stairwayll tck roomsecond floor. ClodsAhand$A thegC)waXmtwinkling y52d a #Si'a hail-stormx # ct$Allec+ surprised facultiess*arescueQ or s0+Bclod7tersonal<G} MAgonerSa gat3eneral t h&2too9iY$!usTit. HGrt peace+ /"SiWAcall"tt s black $6+n1rouC1skipQlock,hinto a muddy allaled byQ%s aunt's cow-stT4 He aly gotrly beyo  reach of capuQhasteR the public squ$1, wtwo "military"N!ie02boy"met for confliY AccorO qto prev#sappointt <G3 ofޢ these armies, Joe Harper (a bosom friend)<the otheruse two great commay ! dYSt conyb to fi!--DAbettIil2Rstill<ber frys !geon an eminence/Qconduield operations bysD aides-de-camp's army wX uvictory+ nd hard-f@ 1 ba# T were counprisoners 'drTterms rdisagre d7y $ay 03ed;X 4R fell?and march "ayhTom turned home slone. Q!as &3useJeff Thatch-1ved_saw a new girl e garden--a love^<blue-eyed creaturQ yellir plaite1two-tails, white summZd embroi  )JQettes fresh-crow2ero4without f^+a shot. A certain Amy Lawrenc2U2his6 !efoJa memory of  Gm 1 he#d to distr#; !rePdKQssion"dogi o + ~Aevant partialit pmonths win8bher; sTesseda week ago; $ <bappiesx Oroudest Rworld WQshort_e!inRinstactime ssgu a casual=)visit is dH"sh this new ange's furtiv -shqchim; tf Bpretq6 Aknow\4was %"show off" in 2sorabsurd boyish ways,# wBadmi%{Bkept is grotesque foolishnessome time;, by-and-by,  )s Adang) gymnastiche glancZ@!idy MC girl was we(xher wayO $upn r leanedq, griev5b+Roping! tarry yetblonger 1halA1 moO  Qsteps m]1warQ heav great sigh asp$Ar for threshold.#1his:! lI", Qhe toqa pansyG L ! ss): 3 bo)3rou\Uad with Tr twoY Aeyes=#haWCdown d as ifBsome of interest goat direction. P- he pick:&w#ry !ba! iO,aead tifar backSas hefrom side8aide, iO edged nearer B; finally his bare-#W3(liant toes)w 2e haBaway the treasu# OArnerb only minute--(v Rbutto$1 inhis jacket, nexheart--orstomach, possiblAnot 82pos<s anatomnot hypercriticaZByway1# 4ung#<nightfall,ing off," a16 2irl exhibite again, though Tom comfor$"im$ 3hop@Abeen>,*een awar&P  Bs. FX he strode home !H[[%advisions. Allasupper.cspirit"soCrunt won "what had #inV child." He tookÁod scoldrbout clB Sidp1seee!miY QleastQtriedIugar undGveryG"goknuckles raQ!foxc "Aundon't whackmhe takesQWell,/1torsRa bod 1way"do. You'd b9  bsugar ifq*watchingu sezckitche Xs immunity, l"gar-bowl--a sor&2glog2Tom/Fllnigh unbear_'s fingers6`Rowl d1LVbrokeFin ecstasies*JB (!he controlP#Rtongu!il5 toF Bpeak6!d,^P1in,18A sit0 bectly Lyshe askejimischief|u! tCrRbe noA!so+   !asefpet model "catch2 Heo brimful of exultR1 Thold Q rld lady #ba stood abovwreck discharging lightnings of wrath(#Y v, "Now iVm2A8zt gQspraw1on 2loo potent palm#ups!to($"keTom cried out: "Ho 1'erbelting ME for?--SiK it!faused,\vl1heapABut 1shes5her3she RUmf! you didn'ta lick amiss,)Wsome other audacious Iaz 9 ." Then her conscience reprgeqshe yeaato say'3 ki l;ashe ju - !beo4tru!a  Ae wr7T cipline forbadhs. So sh rsilence2d1bffairs av2rt.|1ulk# a W "ex chis woBknew3Qheartb Bas ojAkneen was morosely gratified b 1ous\)OAhangno signal take notice of nona3ingRR fell"no cthen, s& a film of tears~ahe ref recognition!pilsick unto deathbim besee}D one forgiving*u]cds facew rand die word unsaid. Ah,+Hs !el2? A bZK the river,  Qcurlsw9<8sore heart a .sEhrow 1ow 4earxfall like r4 (ps pray GoAgiveAbackG!bog\  , AabusY9[Rmore!k.blie thlsi02--a suffererP"se grief C*# e$so, as feelBwithAbathos se dreams,hto keep swall ,Qlike to choke03swaqEblur:, which overflow}xr winkedran down*l?XAose.| ba luxu'"hi:op17gsorrowXnot bear to have"ly'Lixrng deligh\ Brude0Cit; <too sacr/rcontact7Tso, pU,his cousin Ma31in,!EalivAe jo!sesB4hom+ an age-longbof oner aountry!go~in cloudBdark u"on|Munshine in at@1"wa B fars the accustom"1unt=?S` desolated"suwere ind9. A log rafAthe S invi%fQhe se!i on its outer edg Aempl+reary vast*iram, wis4Lw_ u rly be djQt oncs5 un6c1the&'routine devisWn9N*Y+Cflowt>got it out, rumple!ila 'Fily increais dismal felic) %HeFQ1pitu knew? WOrshe crym8! L! r%toRarms #ne  him? Or2she(!co1all (,1? Tuch an agony of pleasu ) ` tC and 1gai 6set it up in new!vaosTswore ithdbare. Vqhe rosei?NJAdepa4l A. Ahalf-past nine or ten o'clock hey 3alo+'street tothe Adored Unknown ;X{ `; no sound  3lisdVear; a c/qwas casa dull glowbthe cuCof aX"c-story/Q. Wascre? He climb,jCs stealthyf/ !thn qood und]#at j Aup aC#,ith emotion; Claid]$wn9#g bit, disposingpAuponp Rback,]ands clasphis breah41hiss wilted5*1thutdie--ou~ jyno shelter bomeles-C, no !lya to wie death-dampsR!ow8  2benvTinglyqmthe great3cams4SHE:!eeww4'E outvT glad/U,p4oh!A!hev Atear>poor, lifWform,=>Dsigh~1a ba youngE so rudely b:*Duntimely cut ? Aup, a maid-servant'cordant voice profan" holy calmqa delugAwater dren#rone martyr's5"s!BstraB hero sprang uAa relieving snort%awhiz aPa missil/vir, mingledHV"rm Qa curHBshiv1glal !smb 1vag rAv!e >Bshotvgloom. No!Q, as +all undressed for bZ  omission. CHAPTER IȷCsun 5!2QanquiT"ld]abeamed8D4'ful village~a benediY Breakfas, Aunt Pold family worship:cL2ega# ab built6up of solid cAScriptural quot/s, welded`%A a thin mortar of originality Bsummf  7she+a grim chapter xMosaic LawKaSinai.n Tom gird Qloinsto speakh2bto "geverses." Sidlhis lesson/"c beforAbentt his energies5 smemoriz\CfiveeAhe c$"8the Sermo!Mobecause 2uld.#noO, were shorter. Aalf an hourugeneralw!no;wn =Qraver) %olN'Bf hu-3 !iss3bus $Qng re%ions. Mary took<1booAhearPSrecitahe tri!|] Gog: "Bl!ar 1--a " "Poor"-- "Yes--poor; b025#In? :$ i/Ubthey--" "THEIRS BFor +. Lairs is[kingdom &MavenEy>_mourn&ShzS, H, A S, H--Oh, IO$"wh is!" "SHALL BOh, # fb shall-- *Y/ I 5iWHAT? Whyyou tell me,1?--do you w !! bmmean for?2youthick-heaRhing, I'm not tea[1youpyA1 do. You must32leaI75. D"be"buraged you'll manage it--f 2do,11Agive #ever so niceC, that's0#bo'"ll{1! Ws"TMary,K C+'.ueryou minMbsay it's,< AbYou be"sou%. Qtackl ;3" [did ""*2und double pressure of curiositprospective ga2 diA)2ithD he accomplished a shin SuccesQ gave  a brand-new "Barlow" knifqth twel2d aSRcentstZSnvulsGthatGVsysteL[ DDoundTrue, the scut any!buwas a "sure-enough" 5t  inconceivable grandeurSBat--lBWestern boys >A got N|a weapon1#qunterfeZ3a injur<3obmysterw] erhaps. Tomr˻to scarify82cupuR\ "it )ArrancCgin F dbureau" !ca\ qoff to  eSunday-school. FLrtin bas 8andmABsoap!he  3"oo21setM4n aRbench2; ta$ d+be soapeiy; sleeves; poured>& ,W=y~e'  " Ubegan?ace diligentlyFStowel|-g"oo&&3 re),5and2Now49lhashamesmustn'tVbad. Water wShurt c#"Tosa triflncerted. T=5sin was refillAthis3xO&ito'b, gathaf;/% ebig brGU9(hen nDboth eyes sh8Bd grC+t.[ , 1nor&testimony of sudsR>2ripT Aface mse emergf>x,fnot yet satisfactoryQclean territory* " a%Achinhis jaws,mask; bel_p4dis lin1 dark expan5unirrigated soil]Rsprea7,rin fronlAback  2himBnwhen sheY%dR4him$Ba maqa broth1adistin<Bolor)Aatur2haineatly brushe2its curls w]Ainto2intsymmetrical effect. [5!iv;w smoothL[3labdifficultQplastere AI]3qhead; f(] effemin71andBown  lith bitterness.] Thenr!go! aP1 ofF#cl%1Busedy##on Bs duvH!wo s> were simp1"ot%#clothes& "soJRat we qthe sizV brdrobe3D"put`"s" !!S; she+Qneat "/m,his vast shirt MG2ovem,soff and c V-QspeckSrtraw ha)1now#oed exceedWAimprcand un2abl":Yy as E as OOTa restraint e lgAm. H-"atU Q forgie"5!peZ61 cothem tho"ly/2tal s9Bthe 9rthem ouH2los:Stempem~z bm$o do ever  Dn't "doAMaryN&rsuasiveTPlease, Tom-- 3So &zhoes snarlingJ(son read9/hree children se3for "!latat Tom hd heart; but3andbere fo0!sSabbath`-from nin$Aten;B church service. Two  "ermon voluntarilV :2too!ger reas.TZ urch's high-backed, uncushi$BpewsU!~h4d persons r edific_bWSplain,'a sort of pifR6ard*kQon totia steeplB Tom droppe(ps2acc0a comrader]2ay,N,o)2a y*;aticket5Yesy'e'Agive:APieclickrish fish-hookX2LesExa'em." 5(0 ? W propertyGd@!tr=cMwhite alleysb  E6Tsmall+ #oro9forSsblue on(1way ,b boys Sy camwent on buyingz of various colors ten or fifteen minutes l !/ qqa swarm; #leg Rnoisy: irls, proceemoE!se &dAed a quarr84Airst5jAcameyQ teac a grave, elderly man,75QferedGny-'6>aTom pua boy's @ !inM 3;"was absorb% the boy  ;[aa pin w I boyk%8 hear him say "Ouch!"got a new reprimandJ 'csle clasWqof a pa --restless,!tr\Csome> Qthey to recite their@w%~am knewuverses /,!habe prompv8ll along. Howe)worried @2reward--in T blue,,q passagl"e '(;2pay#wo1 of  ation. TenuB equa#onc7$Tbe ex^qfor it;0Cyellow onep #enV> Wsqsuperin;"ntat1ly bound Bible (qforty cin those easy3s) SQpupil2 maH$!myKe* (the industaapplic+4 toeTthousand]H2 BDore? And yet Mary had 2two%is way--it the patie5!rk!^  oy of German parentage had wonRqor five3onc#ed i out stopp/{Gtraitmental facultiesyCtoo (haand he~+Abett {U idiodBat dth--a grievouC2he :"onpR occa$y company f(1 exbed it)  'y come out and "(b." OnlRolderts13Bkeep}Li]1tedRlong  to get a2[s6y*sse prizaa rarenoteworthy circumstancer32fuls?conspicuous for  ;AspotEyQlar'stQ4fir"a fresh amb/that often_')ed\weeks. It is{1s Tom's qstomachn 1rea 1ungo1for#.o. unquestion6-Sntire& hNPa1lonQglory,qthe ecl+!atcI rIn due K  &Rp in {e pulpit" a6d hymn-book inh)!nd cforefi"O(between its leave Frd atten0G  ! m09>y,4aryAspee  RGs asoEBas i ainevitAsheeTmusic&sq who stu'1forAplat<$ings a solo atn %!y,:Qneithen sa refer.0k. ThisN0fa slimEirty-five a sandy goate8Qhair;1ore 2iff!Cing-wE"Bsensa}!itenew hero ups C!on l Xtwo marvels to gazt#injbof oneBboysall eaten upenvy--but tb)est pangI-swho perstoo latDS themselv contribub athis hsplendor by trad01 to't wealth+bamasseelling whiteprivileges s]D2pis,Urthe dupa wily fraud, a guileful snakeRgrass !4was;ew 2Tomo"as%2eff superin"nt pump upI7!s;it lacke&wS-true gush< IQoor f' tinct taughZ-xzw not well bea]l  k4was.preposterou8 c!!hae)Q thou[!sh $al wisdom on@remises--a dozen ,#capacity,Rout a8. wBprou$glsH<T1Tom it in heL-ouldn't look. ShH 3n ss grain %"d;Ta dim suspicionbG(b--came P-! wnEd; a1`#glrld her ] +her heart brokMs jealouaangry,t'&rs3shebody. Tom G!of (Hhought). )asohis tongue,Qtied,J4 2rdl"quaked--part75cau awful greatnes rthe manGmain6H$ have likBfall00borship!ifyqLq1ark # ph an Tom'!ca9Rhim aC * sand ask!qhis nam?hwstammered, gaspe!goUout: "Tom." "Oh, no,QTom----" "Thomas'"Ah~'TI7!or\ it, maybe{'W well. But you've)one I daresay""llit to me,6Q you?1ellQ "an"Qother", ","'Walters, "5!fay sirX=n't forger mannerI Q--sir1it!B's ayvF . t, manly0 Q. TwoLverses is a  many--very,(.'2ou $can be sorryUQ*c you tOAAlearm( knowledge is worthchan an@1<3is pa; it's4#e  Dmen;V$^d3Qman yC$Alf, -5day1'llR,Y9ay, It' R <)1rec ;A1 ofDoyhood-- Gvmy dear-5tha^mU<  Jood ,L$en? H.)3 ga beautifulI*\d id elegant'"anH  for my own, always right brin"upA is |2you<{!~&take any mone^ose tZZindeeE1nown't mind t $ m+ "isB2 hylearned--no, I know --for we are4$of3boyG!. 1no vAknow2nam^r, es. Won'Lbtell u9the first3tha`!ap$Fed?"l1tuga_utton-ho sheepishblushed, nowz1his! fO'MAsankm ain himH_\ETAposshtc2sweb simplest (--why DIDH=ask him? Yet hBrt obligspeak up say: "Ad'1--d}#be!.L_hung fire."*$me\ady. "TF twoeDAVID AND GOLIAH!" Let us draI%cu3 rcharity tYsceneJV ABOUTQtcracked be2theu church ?R ring01epeople(1 ga||"mobsermon. childrenHA 5!e C C eoccupi5ith thei s, so as K{Kd. Aunt Polly zTom and472sataher--TomL%"d G8sleB2!ha9A be GrE9the{e seductive `AbsummerEs asQ crowd fil/"s: 1gedneedy postmast=!hosseen better days C may<"hiJ "ha$y3re,| 4 unmp#ieOejusticRpeacei widow Douglass, fair, smartQforty!ene,O2-he4Asoul well-to-do, her hill mansj only palactAChosp+and muchKmost lavish 't of fes,St. Petersburg [RboastAbentxQvener,3MajsMrs. Ward;  Riverson,bnew noaACance_1ther village, followRa tro8lawn-cla.ribbon-de!3 p-breakern#q clerks!owfa body;C had.G vestibule sucD!cane-heads, a circYb!wa! o !imcg admirers, ti Alast!ru ir gantlet; and/AcamedModel Boy, Willie MuffFs heedful carlQhis m5 asXere cut 2x ! b=tN,>#to, v1prisrmatrons(2ll vh !so0. qbesidesa"throw;3 Qm" so. His whit.kerchiefZhF#q pocket behind, as usual ons--accidentalN)noa!he 1ed ytas snobcongregapefully (: 'T1once, to warn laggard0straggler a solemn hush f p! <Q+vdbrokenBtitt=8and& choir is galler=GF!edthrough =conce adQY Pill-bred, but I rforgottgh!rea2. I !y [B agoV.I can scarcely rememb?_="itI kg1 in foreignj#"ry* minister & "ou3hym-1reaba relish, in a peculiar styleZeat part His voic on a medium key&Zasteadi:/i0% a"* rBbore1strY5umphasis topmost wor splunged8spring-board: Shall I be car-ri-ed to!sk !on flow'ry BEDS of ease, WhilstsyOIH sail thro' BLOODY seas? Hqregardeadful readKZt"sociables" h= #R>!to;r poetry,Cwhen32ughcqladies l3 up<3han let them fall helplesslyrir lapsc"wall"C!eynB1k\!irZ5s, u say, "Words cannot71 itfis tooV, TOO rtal earth." Aft 2hym~&Bsung2RevtSprague#' into a bulletinGuoff "notices"ge,qocietiej-1i#)o4 2st qstretch of doom--a queer custom#is vin America#cities, away x4)1 agAabunZnewspapers. Often3Eless, to justifm 1adi7l3Bhard")q get riu'ittprayed. -, r:bwent iIhtails: it pleadea 2rBttle),3rend:7=eip ' itself; ?y([State officersqUnited . ' 'C)s5A Pre.t_q Governm$poor sailors, tossed bK1rmyM ppressed millions groaningeel of European monan  A Ori5 despotism1sucDght 2tid?'rand yet-M"yehqee nor !to &alRheath)the far islB seaZaclosedW a su Twords!abmfind gra)RfavorV!seLm fertile ground, yie%Qime a?0Charv9good. AmenP!re 3a r(Q of d v8! cPy sat down whose historybook relates disQenjoyQB, he< Aendu}Qt--ifN1ven9J r  it; he kept v y a63 --Lp"gc#, qBzc of olvthe clergyman'ular rout}&VaiQtriflsRnew m3 terlardedear detected iWhole nature resen!considered adAs unqcoundre I |/B a fU'R lit  " bAew i#nMmaAtorthis spirit by calmly rubbing iti d8, embrac"eah,3armpz}& so vigorous7at eo$;part companyBbodyvthe slend9read of a neck61expto view; scra0Qits w rind leg'AsmooT !toCbodyK|been coat-;~,&le toilet as tranquib if it.)$E safe. As!ras soreEaitched@rab for iynot dare--}4iev3oulbe instantly destroyed 3did qg whileB was2 onhhVqsentenca curveTstealq.Cthe ra"Amen"r!hewas a prisonwar. His aunt bthe acmade him let it go rhis tex8droned along monoton an argumea%"sybmany aBb &byBnod 3y Wdealt in limit 2firMbrimstonSthinnpredestined& Eto a#so !2worA sav1)2Tom_&ag ;; $ % h2how:t#aseldom: Delseqhe disc MH"is!he8qreally {16forE*a grand and moving picJH"&+=world's hosts at the millennium*B !onc aamb sh"%liS[ , ,!eaAm G2hos 5les1mor/C theEspectacle werQahe boy v# D" principal character beforEaon-look<>!s;#1fac" oirhimselfYhe wishe",Q tame lionf!w 8Qpsed (ing again,fhe dryQumed. eHpA him treasur # a large black beetlformidable jaws--a "pinchbug,"8#Rit. I/=ercussion-cap boxhm1did/bto tak)b' Afingal fillipgIbfloundKZ2isl1its !ur ger went1's Co!lart5its" legs, unAto turn over!ey !lo1forF^!ofCt. Other'uncR]1q relief# wyof too. Wa vagrant poodle dogNA idllong, sad#Bf, lazyI1oft e quiet, weary of captiv(1sig"for changeMs;HAdrooz Ataile8bwagged:1urvrize; walked a it; smelt a87afeu4 4; grew bPJUA6rY1l; Trhis lipqade a gzly snatch,YA misa;3it;/nn %; g diversion; subsid  Stomac)W betweenm3pawh scontinu experiments; !ath Aindi- absent-mindi(1nod ittle byrhis chin descen/ou he enemyAseiz[2re sharp yelp&li' fell a couple of yards away, S}Amore neighboring spectators shook)a! inward joy, s2afaces rA fanI s)_aentire #ppXdog looked fo8 4probably felt so r1entc iheart, tooBaG>qor reve1So .n:9gan a wary attMnWQ jumpfRevery2B, lightingP!hiKJae-pawsin an inchB2YouUX O=3Oh,Q, I'm,/"W4=--wQa, chil9 X!my! toe's moF1!" J#ol[UBsankqa chairB#%ed! cEB"a did both0,Arestwh/d<P," ayou did Ce. N ;1shus aonsensCd climb"thg{$ThS ceasrain van Afrom!to   ' it SEEMEDi"itTBso I B my aat allqQYour ,#K+ Sthem' aperfectly" "Ther|Tdon't Ahat @'Open your q Well--4 IS1butcre notwVto diG!at. Mary, gec>aa silk a['1Rnk ofq"ek$2n." !pl/j7 !hue. I wish I mayO%qdoes. P_@.1wan-]stay Don't you? So all this row was E1youM>ght you'd7i ibgo a-f*?yI love you"1+!ou !ryQy waycQbreakX?l !t soutrage!=." dental instru?S read #%on8the 8^I"'s:Ra loo& #tiod edpost. TBseiz* n^QthrusI($inR2oy' U hung dangb- } Rrials@*1qcompenst+s'#enrschool >fast, he6qthe envc( 1 bo"5metSfap in 1row&eeth enab 3 toMRorate!1new<>4 s9ing of lad9G%in the exhib@0;2oneShad c ' 2hadr a centre of fasc and homage2o[Qnow f:OJout an adheren Tshorn!Rglory'QheartyBheav 3a disdaibZit wasn'tDo spit like;our grapes!"%e wanderh dismantero. Shortlyb3camMthe juvenile pariah5he n;Huckleberry Finn, sthe town drunkard.,-Qcordi2hat2 dr1#by "e s{t 2idllawless and vulgarRbad--zxk?eq delighV-forbidden societyAthey dared?Rlike B!om @!reNCRboys,faxenvied >his gaudy outcast cond;as under strictIQrs no8Mm1Splaye3him1timf2got% Ince.c!slways de cast-off _سll-grown meAthey  in perennial bloomRflutt sCrags{!ata vast ruina wide crescent lop a of itp!m;ecoat, +72ne,Bnear^2his[ !haQ rear!buttons farY ; 2ack1oneMeaupportos trousers;Ceat ! b$A low~contained n A friM&rlegs dr4Bdirtanot ro[Iup. 1and?A, at"own free3Yrteps inKDweat in empty hogs> in wet;3Qto go2 orurch, ornmaster or obeyXcould go  or swimW1herCchos1sta/long as it suim; nobody~V$fiyhras late! p8 d3t)2boybarefoot Qe spr'gnv~Cme lsAfalli1to wash, nor put onf0wear wonderfully. In !rdJ8tQEgoesxlife precious{!adgrthought\ harassed, hampered, ; inkBR!ha!AJtomantic : "Hello$!" K ee how youh9it.a A gott rDead ca%RLemmeC"imp. My, he'tty stiff\Are'diqget himQB2himR a bo#di4zI a blue ti@1and"adBat ItVter-hous1 T#itBen RogersI!goa hoop-stickE6SayU!cats good for2hGA? Cu1rtsHSNo! IQ3so?JV some6A's b3BI beedon't.ibaspunk-?5S! I wouldn'tqAdern 85You-,  $D'OD tryqNo, I h DQBob TOA didrWho tol!so"he Wa5Johnny Bak im Hollis8 'ld2Benmca niggLC them bre now2ellt? They'll lie. Least<1all WA. I 2HIM(I%eekWOULDN'T\Shucks! NL!te`lbone itvQnd di=2a r/BSstumpLthe rainQA wasPI qdaytimeClith his fac Atump-3Yes* I reckon so[ADid j y5 3"I :.lAknow@Aha! Talk1tryN:o c such a blame fool,c@Aat! @S a-goVado any2. YV rbrself, e middle Qwoods\5Y's a Btump1jus'7rmidnighrback up!s qand jam/Q: 'Barley-corn, b injun-mearts, ^ {q, swalle_&drts,' 1n w way quick, eleven steps,(eyes shuthen turn.<BtimeYAhomeDrout spe+ttbody. B#f$Wcharm's bustesounds likxrood way !!wthe wayB donNo, sir,x1cann't, becuzoGartiest cis towT!BE1war 2him!!'dU!ed*xto workYS. I'v1offs'9"of off of my9sAway,m 7. I Tfrogsv$*`U 5got;"Qmany gb. SomeI!'eFNSnYes, bean'~de%1Havk?,"'sSway?" "Youd6 2pli!be#nN1getb blood"thN# p3" o rEpiec!be,d{q dig a *1t '`?aYrcrossrorqdark of6mooQ burn/ $styBbean#se Uq=.ll keep drawN$nd ,mA feteXFZ v+1"soQhelpsh!toOA the.Rf!sof}Qcomes %--;"gh,"bui$you say 'DownV;awart; 1no @'Bto bgme!' i & Tway Joe Harper doe!he1'enCoonville and mosQ bwheres#say--how do:"urA b!ak1r c+Enm?graveyard '%Ubout wwXromebodywas wicked hen buried3Fit'sFqa deviloP, or maybe%,3 't see 'emcan only+ 7indYAhear9Qtalk;|they're tahat feBawaym#he<<1fteMGqsay, 'D  corpse,i,A1cat,Qye!' ;2ll 91ANY7b." "Stnright.}  "No@Rold MrHopkins mz !soqAn. BQsay sra witch#ay AKNOWQis. S$*$pap. Pap says so his own self. H! axAone *a#!eeUawas a-Sring himC !e T'!ro-Bnd i!ha AdodgQe'd a>e)that very > $heFoff'n a shed wher' s a layiQbrokes1arm"W#!diOknowLord, papGeasyK1loo- *q stiddyDyou. Spec"ifcmumble d$b're saS he Lord's Prayer backards2Sayy y:"trB1cat1To-. .old Hoss Williams t8a" "Buy him Saturday. D` ?qtalk! H5uldbAarmsF d till -?--and THEN2Sun|Sevils Tslosh 1muca,2, I' L!nLaBso. #goT!f'"--$Rafear A B! 'T qlikely.djAmeow1Yes#, Z'geR Last timeOkep' me a-me8!arA1ays( r&rocks at mJb 'DernQcat!'qso I ho Abric{!hiDsdow--bu+BbwTIn't meowe bauntiea#me|Q4'll8!is%. 3!'sOL"NoQbut aS%Ou1-3at'AtakeG .Uqell himHAAll 4. It's aIqy smallr, anywa#anybody3runw6ae1 bem. I'm satisfiiwF!enAtick"Sh!tiu plenty  1 ofrif I walCo2whyn1#wed!cawT&Cs a Q2onef YAyear,b--I'llbyou my  ALessi1Tom1 bi$pauAcare3 un$Git. ~a viewe#Awist-. The temptation+strong. At%he"Is it genuwyn4Tom>'>!shthe vacancy.a!,"YB, "iAtradTom enclosQ8 A@lately been: 4#'sG"th separated, each fee !wealthier thqfore. y'4Tomy'Dittle isolated frame ,trode in briskly=Pof one who AwithQhonesbed. Heahis haQa peg52fluT BselfJ4}31eatI r-clacrit", throned on hig1reat splint-bottom arm-',R1doz)!luW" drowsy hum of study. The51rupcd "Thomas Sawyer!(Ghis name{f7 in full&!me$rouble. "SiO"Come upcRS. Nowbwhy ar2gaiN3cusual?= "to Srefugz"3lie' Pw ; ails of yellow hair hangingoae recogn$PHric sympathy of4%;&bat forTHE ONLY VACANT PLACE girls' sZ QinstaE STOPPED TO TALK WITH HUCKLEBERRY FINNY's pulse\:Qhe st helplessbuzz of 5r ceasedcpupilse) foolhardyaqhad los% u/:9*(d did w"Stqto talk@ Finn." (eno mis}e words,!isE!motounding confessionYever listen!. No mere ferul answer f4is offen%1akeyour jackej  's arm performed until it!ti#>Qstock1wit) _y diminish`A ordllowed: "l!goVs!th! And let)bSt0xr titter-VripplE{qom appe^rto abasiboy, but in .G14was caused rather0!byworshipful aw%his unknown id(&IAead _#urRlay icgood fortuntss Rwn upk(1pinc<c0)'Qirl h,away from himaa toss$&nd. NudgesBwink$qwhisperO4verBroomrTom satW!hiIs "Aong,"CdeskO1eem[book. Byby atten$DNjX#ed murmur rose]AdullxEPresentlboy beganqeal furdaglance robserved it, "4G,2" a8and gave hi-HbackRe spa\ta minut2she caut4duQ, a p5layi"erthrust it away1g!pu>Kback,^2butC&Bimos;$om9Sly reZiqits plaz!heit remaindscrawlts slate, ", Bit--2 more." TdJ uno sign. Now draw some *!hi 1eft;q. For a31ref:2to ~[Sher human curi@Axq manifeby hardly perceptibles !boPkAr, apparunconsciou+Qa sor^ noncommittalnmpt to s6 did not betra/h Aawar&itM 2she!inQhesitB$lyb!Le  Apart 6=*l caricatusra housetwo gable ends}a corkscreC,smoke issuingS!thn[AmneyX" "'s !es0Bfast6elfeAworkqshe forgot $D els`f6, she gazedAAment)n ,It's nice--make a ma artist erectH$an%front yard,qresembl(qderricka 4~1ste\ !ovgek&not hypercritical;Kwas " Const! a beautiful man--now me cominggom drew an hour-glassa full moontraw limb1 arhe sprea1finE$a portentous fanwL #t'#soI wish IPddraw."feasy,"q Tom, "1TlearnB"Oh,i#AWhen At noon. D 2 goh1to dinner&PDstayAwillrGood--tAa whas your] EBecky Thatcp5yours? Oh,$& l1theU they lick me by. I'mIAwhen \2YouW)1me Yes." Now<N  tl1rdsW /1"gg1see !Oh~ain't any\ Yes it i5"No'#wX5I do, indeed I do. 4letVYou'll teNo I won't--9Fand Rouble%"ou3G6A? Evs ! aA liv!6&M! e3ell ANYbodysOh, YOU!Lyou trea#o, I WILL see."+ 1sheher small =  Dnd aQscuffLAsuedq pretento resist in earnrut letts_ slip by degrees till thesdA4vealed: "I LOVE YOUj"OhMb-Fing!1hit hsmart rapreddened >b 2ed,~&theless. J[$K junctureboy felt a slow, fateful gripM3CB earp a steady 1 im+zSwise Aborne acros Gposi0own seat, undwNBpeppX/a7f giggles i!tna~-Cstooqhim dur;q few aw_bomentsfinally moved IsU4out5ba word3"al Tom's ear tingled$EBhearWjubilant. A rquieted 3Tom nQefforX Bstud the turmoilRin hitoo greatqurn he h#hi  Bclas1}1 boef it; theOgeography4 Alake3 o mountains, Srivery r contintill chaos wask  Aspelc got "down," by a succ`"ofG1babA dN3he C2 up=ae footyielded upkpewter medalj worn with osten|for months. CHAPTER VII THE er Tom triedl shis min,# " mXs ideas wandered.9,b a sig:a yawn, he gave 0V. It $anoon r4Fb wouldm} air was 3Aly dc#t a breath stirring. IRleepi$ sleepy day drowsing<Re fivUtwenty studying scholars soothe/soul lik= #is_bees. AwayE1fla sunshine, Cardiff Hills soft green sides th[ a shimmBveilaat, ti| the purple`iWa few birds float Q lazya!ir; no other liv*bwas vi$x1but7 4 co^W Cwerer's hear=!be3A, or 3 toA  fE to do to paq drearyH4. HcQ into%poO0his face l"gl%:gratitude3wasa#, ) not know i!enXJ3ivexrcame oua him a"Va pin"!6newx 3's bosom friend sat nexb, suff!ju9;4nowMadeeply{"grm& 2ent.1menj3an  7was'rtwo boy r sworn s|1eek embattled enemies on"!s.^took a pinBJAapel #as q exerci1er.AsporZwwU<rly. SooG 6}Beach neither g g1ull denefit*!ti<!o Qt JoeAQ4ate 1rew "neFthe D/!it C top)Btom. ","Whe, " Ahe iqByoury9nbq him up)qI'll leB!e; "2get d)et on my[,@re to leXalone I can keepQfrom  S v!, go ahead; star!upb escaped!pae equator{6DawhiPtU:5G݁ghis changbase occurred often. Wg"onZ !wa5r^&t7r absorbNHYblook o? #as 3, t9b 1ogeo|QsoulsC to B1ngsVluck  S b JE !hicd&atxDcour9rQs exc Xs anxiouh|!thH mselves,<0Egain:Auld evictorfvery graspn)"to#1 cbe twi%to begin,3pin'Bdeft+Rd him;1andTk W)gl:n(uno longzQemptaswas toocqreachedFand lent a11pin 2ang a. Said he: "KbI onlyd1wan TU2#NoJ a fair;e' ~3QBlame>I'!go l#mu+L?b, I teK|"!" shall--+#liALook !a, whos\ 1ickICcare$m /ha'n't touch %%,Qbet I . He's my/do what I 51him die!" A tremendous sdown oneshouldits duplic r!s3twoW dustbRto flbjackety[ to enjoy had been tooS]sBhushhad stolencschool wCetiptoe"\nVd (Hcontempl (p4~performance |!heQributs'Zt2%broke up a flew to P1 in ear: "PutHabonnetlcyou'reBhome11you)5\rcorner,'.2 'eAslip|rthe lanAcome.!goQoAYcame way." S6"ne+5one group of -gCith EF. InL:*"et e #la.:qthey ha {Uy sat," a5JBthemQ)3ave the pencil 0.Jriin his, gui 4 3ed a surpr Ot&Gn ar2w#fealking. ToAswim]in blissS}%!DoLlove rats?" r! I hatM do, too--LIVE onesI mean dead,qwing rouSr heaAa stq[1for much, anywMA likIchewing-gum<l25o! 8qome now/?8"go1letAchewV3 2youUqgive itQ3 to8AThat`agreeable& hey cheweBturn'Y?K!irSk,!!stRbench "cet#ntment. "W>)an/circus? T #YeQmy pa7!"mew*Atime/ET" "I)f three or fouryQs--lo:. Churchr shucksbD-C (on/; qbe a cl5%nWScI grow )"! ill be nice1y'rBAlove ll spottAL1so.=v1getAhers of money--' dollar a4 cBsBSay,_+bengageSWjt`(2!b ٪"ieN.+ 2youC!to.E so.CknowqQis it2/Like? WhyG You S Qa boyRawon't \ FZ\ Zcyou kiPw all. Anybody%#do.b"Kiss?d=1for2X Ynow, is to--well[yIoAEverqH2yes+'Y8 ". z remember m F wrobbYe--yeW]YC%I  TShall 8YOUHB--bu5No, t now--to-morr8Oh, no, NOW7!--Vrwhisper aso easLQ #o took silenc Acons"and passedBarm Arher waiS]QT talezC7/outh closuher earn he add\$2Now!--d t-P3ShePj" a^2You vBfaceBs^23 seI;I~you mustn'<[--WILL you]?&,!N  .a." He n\DidlyZ(her breath stirr?Bcurl , "I--loveP-.(r sprang#tand ranfs+YCes, with1aft*uy/x Cher 1JQaprone1ped"nehV pleaSWn]ll done--all a. Don' be afraid Eat--+?+ll. Qhe tu{"aD YhandsA+2she us  qs drop;Qface,rglowingy"truggle,,O submitt-!omqred lip 3rNow it'ACdoneEPBt 2yout0mk+@!toXy,2 meand forever. Wi 3'll)u!LLkmarry +2--aX - 3ith)CEly. :. u's PART{)I('U*we^w02me, Rthere<Rchoos Dnd It parties, bE  1wayeO4're DIt'sW'3. IRheard -|%'g>mSAmy Lawrence--b2bigF1tol{ ~DlundUe stopped,1Sused. BTom!,/irst you'v3 to"W chil2cry94Oh,trk I"arshy   1you1Tom3 kndd i  BneckJ j%sg0%im!Qrhe wall1wen\bcrying05  ing word GQas req$: (!pr4as he strodWQbutsideY,2lesquneasy,: Sglanc2oorMQy nowthen, hoping she.RrepenSato fin:4shee-e1 to81 barnd feari.;'roS!ea hard2himke new advancesM ,Nqhe nervRmself{Q and _]"zstill stan797, sobbing.!'sDt smote himD ?2 ,ing exacoQproce-ge said aly: "* ], I--\ A." f4ply 4bs.D1"--/tingly. Y !mea?" MoDTom got ou( chiefest jewel, a brass knobToan andiron2{ $itd h,2thaq,{/3w * y Sc3uckY the flooruTom marH.:C hilR 1far[!rez1 noday. Presently 3buspect rRT1was7in sight. < 2play-yard7SthereU1she,v Cc, Tom!/alisten}trL7had no companions l oneliness. So s t`Ro cryfp1upb herself;qby thisZ L1gata3gai[ashe hatAhide+Qgrief?6cbroken aK of a long, $Q, achhfternoon6! nk#mo Astra/VSto exbsorrow/ q'I TOM dodged hp t through lanes96H@&ou!r51ing3larinto a moody jog. He va,"branch"9"reDH  6prevailing juvenile superstiti!0 c water baffled pursuit. HalfC1! l$disappea<+Bbehi Douglas mansion jbe summ"'Z ,1wasly distinguishablCoff Ccvalleyۖa a deny-od, picks pathless wa>r2ent;4.!onssy spot,spreading oakrnot even a zephyr(*_anoonda(at had 260 Tsongscbirds;:1 lasa trancCwas Vby no sound the occasional far-off hammeof a woodpeckiBm 1 re .1rva|wense of|8*sprofoun=Rboy'su)w!1eep melancholy;o A3s w<happy accorqhis sur1ingA sat< )oAlbowhis kneeO2n i.S, med69 * rhat lifbut a tr=1, at best +3orlRQbeen 2!eda2g--Q very dog#" by some day--maybe wh@8too late. Ah %die TEMPORARILY! Buselastic]o?ath can4e8Aresssqto one {rained shap*46Tom_&drift insensiblyJXZconcern"is7|.T cack, nowmed mysteriously? aaway--A'so3 ?countries beyoBseasQcame S! How 2she{ then! The idea of beQ recu,mto fill himdisgust. For frivolyR jokewStight"anAsy intrude`/1 upbspiritwas exalt3vague august AEthe romantic. Nota soldi<,"yell war-woraillust. No--bette4ld#joIndians,unt buffalo$$gowawarpatr4x2S rang-the trackgreat plaite Far W 0QfuturM+A q, brist2with feathers, hidej$ith pain,bprance. ,(QrowsyN $er|a bloodcurdssar-whoose eyeballaG unappeasu envy. But noOb gaudin than thi/dpirateas it! NOWK2lay~ #"im"glaimaginsplendor. HowMHQould c people shudder1glo(AS go p{Sthe d2seaf"hiu,1, l'qlack-hu 2racZ02e SsFc StormHIisly flag flyA fore! And at the zenith ofQfame,suddenlyDIold village8Cstalcb, broww-beaten, black velvet d ArunkCjack-bootcrimson sash,AbeltJ"horse-pistol9e-rusted cutlass atCAsideM2 sl4("atTwaving plumeIcunfurledthe skull Abone*  Bhear[2sweobecstas>$G #s,3TomJ, P--the Black Avengerpanish Main!"  j,d Acare's determined)2runfrom hom Renter' /\.2theDnext[ Afore rust now+1 to&Wreadybcollecresources %)Aent rotten log nv%'an2digu 5 onFihis Barlow knif1oonrck wood ed hollow"puusand uttwis incan~,i8 dively:bhasn'tDhereovW!st 2re!^rbcraped`"ir Q expo pine sh9:i8and dis(chapely,2 trcH-[5hos'and sides wer/ds'iHra marbl 's astonishmenboundless! He scratc Ss hea a perplexed air7RWell,1bea*y> +Btoss5pettishlyStood cogitatUsuth wasfa Mqhad fai91and0-Brade0AlookR$on as infallibl byou bu OLcertain necessarylsBleft  fortnigh'BCopenCplac"8theP" h ajust uh3yout%a1s2had1los.  t0 H,9 |&Qno ma how widely+}Qk"w,~ bctuallunquestionably *-DtrucF2faiQ shak"-Q its Bs. H"Cmany C Rasuccee3but{aof itsBing :Q occu2himtit several timesC, himself,n;1e h*-scs2warvpuzzledy!an\decided $Qwitchainterf Bharmhought he tsatisfy at point; soe!ar<1he Csand aqfunnel-Qd depo!itJ9=$ F2 toyG and called-- "Doodle-bug, d $'#mev0Wgknow! 5 5*! sn1egaBwork"3bug e a secon2darted um)fright. "He dtell! So it WAS aAdonef !I ;%!knv5'"HeDknew2 iQof tr to contens#chahe gav^"Ś$ag%iT`he might asAhave>  w1 ,Oatheref@Btwicl.last repe2wasRssful$0Qs layU1foo Qeach a. Jus^%ebYntoy tin trumpet 3faintly dow%green aisle~QorestWoff his jacke|trousers,$ a suspe9belt, rakN Tbrush 4thelSlog, 8 n rude bow1arr| lath sword4in A7$Bseizse thingSbound, barelegg 1 fls "AhirtL7halfelm, blew an answ@9atiptoelook warily outk1way2thasaid cautp--to an }!ryH!an Hold, my merry men! K;BI bl06Nowf>q, as aiAcladbelaborarmed as Tom. Tom]Hold! Who s7ASher BFore_qhout my+q?" "GuGuisborneVAan's).^1art-L--" "Dar  hold such language=Tom, prompting--fo8y talked "se book," qmemory.l ~/ dsI*! I am Robin Hoodkthy caitiff carcas:Ahall%." "ThenRindee% famous outlaw? Rvgladly will I dispute#2the=Fpass3wood. Have aeyGWtheirqs, dump4eir.Brapsf e ground, struck a fencttitude,!to61kBv) reful combat, "two up andfdown."p!E Tom aNow, i a've goQ hang=Ait lM!61y "a," panhK !er k. By and bhouted: "Fall!K8! W`+ sha'n't"Nrself? Y(AAwors!it/4Whyh M@!'tv;A#ay it is inVbook says, ' Qone boa[stroke he slew poor $.'!toNr ,ame hit oQ." T#>PFuthoriti 1Joebed, received!whE@nd fell.&"4U Joe,^up, "you8o(N2 ki1*Ffair{f!docE_/ell, it's blameC's aQBsay, you can be Friar Tuck or MucAmillD[ss%R lam M h a quarter-staff; or I'll bSheriff of NottinghamJe w9h?Bill 0AThis a@#soadventures were cr4FATheni!beB6 L!wa- !by treacherous nun to ble s strength away 1ughneglected w- 4And/}! r 1entAtribAweepOC4s, R|Qhim sbforth,V m"ow(his feeble hands", e" Q fallTere buryuu 1eenqtree." She shT$ b&would have diedQhe li>+Aa ne0and sprang upMAaily a corpse.->dA, hi!ira!Gutre Ooff grieao <$noz4u3mor Bwond what modern civiliz= claim to h Qensatiloss. They;F-rather be year in than Presiden the United States 0 CHAPTER IX AT half-past nine!ToB Sid\1senm"be[usualir prayer=(onqK Aawak waited, in rest"imc<{it seem0q be nearly dayldhAlock;Bke taqdespair&and fidge#asrves demQ, buttbas afr+aSid. S12lay,%!st"upJark. EverLDsdismall<2C by,'YSness,a, scarceo[fnoisesemphasizeSC ticking aHh Ato b!itS-A1. O+"&ame! cT(!cstairs creakently. Ev1ly 6 !ts abroad. A m#Rd, mu(snore issued Aunt Polly's chamberA now4tiresome chirqf a cri!thA human ingenuity locate,JQ. NexV ghastly?SdeathwatcDwall bed's head made E--it#abody'sMPnumberedUBhowl{far-off dog roseg 3wasAa fa<K a$r O./an agony. At ih| 1ied+had ceas@d eternity begun;00 to doze$Aspit2e)chimed elevenl0A;#%8me, mingl Ahis !formed dreams, a most ' caterwaulwA raix&of a neighbo)awindow81urbSqm. A cra"Scat! devil!" aQ cras<an empty bo;z}ais aunt'sCSshed T#"dea single minute laterlGand jr$al,Sroof 3"ell" on all fours. He "meow'd" withn once orpn jumped  g3]*QL. Huckleberry Finn washis dead cat #ysAW1off\A,#edO#a gloom%thh," (all grass4graveyard. It &old-fashioned#ern kind13on a hill,5Da miK'Eaillage<1hadazy board fencet $itcAlean 1warY1outek$th!buZod upright nos1. G n!ed!ew rank M ? cemetery. A2old*spsunken in,Mnot a tombston!; {-worm-eaten qs stagg#Rover $ aves, leanaor suppor 1finnone. "Sacred) of" So-and-Soabeen pdm#="ittLR have7Sread,5am, now*1n i3 r7lFA wind mo $reSTom ft {\, complai(#atw(x\<R6nly ir breath6[ -Solemn(Q silew&ppX $irvyo! t arp new hea1yk1eek6ansconcQemsel2ithq protec0ree great elms$grew in a bunch?-WDfeet " "y U  42for H "a 1imeS hoot abant ow.]"btroubl !ne om's refld1ive%.aforce Dtalk) Qsaid $: "Hucky, do&ɘ6 ead peopleGZ3 usDqhere?" Zed: "I wisht I@eEQ's aw3Zs, AIN'T36Q"I beAis."ea considerable pau*"il\Scanva "#iss inward! n_ %ASay,3y-- reckon Hoss WilliamssI1#O'Q he does. Least8rsperrit"7, +a+2 I' #u MisterxI`  Aany l DQs him#A "n'Foo partic'lar1(tXalk 'boutase-yer  Ra damnd convers3die!. Qw Ahis comrade's armE1sai:Sh!" "What is it~$?"i nc%Atogeq!be#2ts.K C'tis again! z1you+{0Q! Now"OALordTHcoming! TQ, surmat'll we do/I dono. Thiny'll see us!'OhbA can!in^ Qdark,M as cats. ihadn't comecOh, doay!. Aliev<1bus. We(a doingl If we keep perfectlyR, may1y waB us N$I'll try toRbut, Y1I'mbBof a shiverListen!"be1!ir s e tof voices float% 4far`(A "Look! Se;Fre!"M  w-fire. Cis it." Somv/1figaapproaK'!Rloom,M tin lanternaTfrecka  innumerable spanglek  K#a d!t' sya. ThrexA'em!yQwe'reqrs! CanBprayNB:BThey! gto hurt us. 'Now I5#meo sleep, I--'"8 AHuckHUMANS! On! iWyway.'s old Muff Potter's }aNo--'tqu so, is AjDYyou stir nor budgBCharpfE to q. DrunkBausual,Cly--qold ripAAll O !, 4stiI5tstuck. Can'"1Herq#Dy coN.[8hot. Col2B Hot. Red hot!'re p'inted?r ,q"!o'qs; it's Injun Jo(2ThaFD--that mur!' breed! I'd druthe Zdevils a der'>!. ky be up t4The.| Dnow,! t 1men $re!e 1     ' hiding- Q. "H?9Dt is Qhird ;\*:wner of it hel TTreveaV1fac young Docts_`1carryingYcbarrowTA rop a coupldshovels onCcast#lo=!c2opeUF7" d1putd|_R56karH2ack1st fX2elm  Q closIhave tou1himurry, men!" !idTa low"#on91com at any moaRJy growled a responsgan digg'Fo(*2 no# b<"gr s)Qspadetbchargiir freighw Amouldl7 was very monotonous. FinaX Q upongScoffia dull wood*<2entO4'Ror twyRhoist'dg>Sy pritd!$irB, goB!dyF!Qit ru - `Tdriftg?Rcloud(0allid faN4he P!as3reaaorpse "it, coverea blanke>buCope.l(out a large spring-knifkcn;#da3z Tthen " Nm$cu Bng's, Sawboned you'll*"ou$ Afive\$ s?y alk!" sai.] BdoesSmean?3te. "You require3r p?Sdvanc(I've pai#'4B don(B tha ,; r Q, who Dnow @*q. "FiveBs agqdrove my q your fX's kitchen, when Ito ask f@(c to eaK3youWa warn'!!re2any goodWswore I'd get,AzQyou iuaa hundcgears, RAme j1 for a vagrant. Dta thinkiqforget?I^Sbloodq Ain m1 no.2nowvGOT yougot to SETTLE"r!" He EQreate<,e !isy Bace,n!2is  Tq8E1retacuffian dropped his !exDCHered #hi^(&rd~b next ! h-t grapplF "wo)Rstrug'and main, trampl% gFtear@3'rheels. !JoaAfeeta81 ey2%am!pa1nQ, snaQ3 up'/V"cr"Q, catYEAtoopCand  w'Tants,Q an oCunitwat onceQ,d free,62Aeavy5 of'n fҲt(Rearth"it8? c YiL A sawXCchanSj2theb1hilthe young man's breas+Qreele4BGqpartly , floodi  l* `ablotteXAreadcpectacf1 Bened Aspee!awHdark%> remergedO , '8two formsPRtempl }aamurmurulately, gw*gasp or two%2wasKm- rTHAT sc; :Q--damF0Rrobbe8body. After h9the fatal2in r's open R hand M dismantled } --four--fivss passeJ7.mB za1. H1nd dw#; C Q, gla!atand let it falla>g)sat up, push2bodA himLJ gaz]aK&confusedlymet Joe's1rd,ie, Joe?u .a:ay busi%#2Joeout moving.d]d+[%I!!it{] 3! TRT 3alkdewash."YAtremDI ew white.1ghtagot so"!I'BM!r!o-@it's in m* yet--worse'nw= rted here.vmuddle; c!$re=#an$gQ, harqTell me}--HONEST`Aold ar--didB it?zJ(qto--'poAsoulhonor, I nevt1ant5Joezc#Oh$+Qhim s, ad prom! -1youC?ay1inga he fe6G ) Bflat !up:3comX1reeX[ding li!.Ajammz%.5 'asE you7S clip ere you've lai'!as a wedge til nowbd{Uwawas a- I may die1if B1all on accou(bwhiskevV!axcitem"I .uC$ weepon Clife: fUO_;uAy'llsay that.( V8ray you Atelle--that's a  4. I_2lik</U !upE { etoo. D remember? You WON'Tc]a, WILL  A/ApoorS'Eture o SkneesUrstolid G#alaspedQappeaa,.)4'veA #fanbsquarej 8me,N# I<#go$n :MsXs a man can sayIy0an angel.bQ*1you^!he0est day I live.> ?Ccry.d 40$#isc 1anyYsQblubb. You be off yonder wa!go+T. Mov 3and5!leny tracksX"onM(quickly increaseQa run  &)He8 If he's as much stunne Q lickfL2rum2 halook of bel#he1eBtillzgone so far he'll be +}-e\!it:Ruch a>% b= --chicken-hear1TwoO tqs laterD0Rd manv ArpseA lid 2the ?+urno insp8!b moon' ness was completet 9too-X THE two Aflewqnd on, towarkaspeechwith horror*y Aback;%?aulders|!to, apprehens95'$yA$m &be followed. EVastump #up'Air p9&.'and an enemyw[+athem c+:bbreath"as"by"Aoutlacottag41yy.=21ark1*aroused +H-dogRagive wq:qir feet Af weqonly ge=ld tannery!wegk down!" whisp&1Tom|<Qtween5dths. "4AstanRmuch ]&ucC)'s hard pantAwere-1repboys fixed sSeyes z 1goaDBhope"4benir work to win it. ained steadily]1st,sIy burst open doo cgratef BexhaIiBshel, shadows beyond. Beir pulses s4Tomac2 2'lli!BIf D dies, I61 hav>!it?D m !?" y, I KNOW 1Tom#om&2t a$JEn he #1Whosell? WePBat aj  ing about? S'pos%!th1appEand q DIDN'T!? he'd kill usLvoO:  sure as *g <@  ~o myself, HuW8q"If anyAtell)t 3, i)Cfool. He's generTdrunky%U !--2 E s C "itrN!ca#teJ:#sQreaso 8QBecau>&"'d1geSwhack"F. D'3 he*5seeT?$ \7!" "By hoke:$'s-!" "And besides, look-a-here--maybeqfor HIM<No, 'taint likely ^GQliquo5ghim; I#th  |h Rhas. 9pap's full Atake/belt him&3hea< a church)2youn't phase 1say his own selfZ)i3sam !C, of(Fqf a manjJGoberZ W&)dono." .*$ve*p)2you"an!1mumw%to.*  #atadevil 5Rn't myQy morWdrownding us&a Acats!weto squea(iF+"ha!. X>u, less swear to one/Z"weveo do--0qkeep mu"greed. I Xkb. WoulGAholds_Un we--" "Oh no @! dA thi . for little rubbishy commokngs--speciwith gals, cuz THEY!c anywa ablab i: huff--but!or%^e writing Ra big BClood2's m0 applauduis ideao1BdeepAdark  t;1our3 circumstances1surRings, ijbe pick'ya cleaniOlvAmoon', took ar fragmes"red keel"7 f 1pocDkK1 onV#wo0fully scra!'these lines, emphasizing each slow down-stroke by clam~7his tongue AeethRQ lettpApres QCe upW&s. [See next page.] "Huck Finn and Tom SawyersCs!ndI+Awish may Dropd!ea6 QTheirT"if33eve1ellX!Ro  p5filKadmiration of~acility inA, an sublimityQlangu3HC'4pinqs lapelH6was(Qprick,QfleshWN Hold on!!dob. A pi1assA8have verdigre#n Qp'iso$/ swaller somic --you,a." SoSunwou8bthread"%his needl!Aboy  1e b.QthumbcsqueezBa drfA. In,{Dmany2!s,amanage2sig!Qiniti9u~8Hthe ~ finger fo/e3ashowed  1ph"! HQan F, 1ath%2bur9!e 1le q5 to:,dismal ceremoniaincantfqfettersJ$ b#ir8consider(Qbe loF"keArwn away4!ig[AreptURlthil(!ugX$Dreak[Wother#A ruiEAuild2nowLQQ*iVTom,"6, "#uYAEVERf ing --ALWAYS?" "O r it doe]cdon't y difference WHATv xY got J BWe'd"--Q6YOUe Ywts rcontinuHtime a dog set up a long, lugubrious<outside--within tenc*md boys q",qan agon+!.ich of us^4 he;%!ga4 dono--peep througw crack. Quick 1YOU#-- 1 DO#Hu2aPlease1 72h, lordy0thankful0I2his)4 Bull Harb`" * [* If Mr. y+d a slave named Bullk spoken of him as "Dl!,"aa son 2dog!atZn"]   1--I" ( most scadI'd a betmM a STRAY dog he dog howledv~W'3Ats s:"nc&.2my!%!no'I IA "DOM! Q, quabAwith? !Z%eytrDHis z"waly audible"Ohr, IT S A1DOG1, qK Who7Amust3 us both--Uright"5.+vgoners.EU1misM   V< I'LL go to. I been so wM m2Dad_1Thites of p1$oo!do BveryD a's told Ndpaxgood, like SidNr tried !noaever I 2off time, I lay I'lWALLER if"s!7Tom0"nx4( . "YOU bad!"7Q"Cons!it ^ ld pie, 'longside o' BI amTLORDY 9 only had half your chanceom chokeds6andh: "LookyA! He?9BACK to us(ucky looked!joh "hil9he has, by jingoes! DFRbefor.bhe didpIS#l,e"!this bully, y. NOW whowing stopped. Tom !up ears. "Sh! k BthatI#0!ed"Qounds--like hogs grunting. No--it'!!snC mqThat ISkWAbout"it8I bleeve3Uat 't| #. Bso, a. Pap rRto sl{Aere, Stimesv t$"gs laws bless<1he Rlifts1s'HE snores. Buhever comOto5own{hXEdventure rfZsouls`/Qdas't`o if I leadR 1to,2, s~ts quailep_7the temp up strong:7 3oys#ryJAnder{2ing'7 @#to@Sheels Se !y 4btiptoe  , 4oneJ CthervJ~4hadlqwithin 'qsteps o|!er'pBstic  it brokera sharp snap.man moan]erithedp his face came inK . It was"ha+rd still\|C too)Aved, )Dfear|(? A nowlypid out, n weather-boar& $-%at2 di# sQa paraword. J qrose on5'B air!w1tur n+!th-2ang  Ua fewQ Xt.Awas $cFACING7nose poi* heavenward! geeminy,VHIM!".A botds a!--say a stray dog3ai Johnny Miller's house,A mid2,!#as.eks ago;6 ppoorwill=1 in4litbanisterZ2ung|aame ev?0U L#B}!yej W"ndyE#se 2. D&cGracieT falls2Afirebcrself terr next Saturd;#Ye@sBDEADwhat's moche's gbetter, too:you waitbsee. Ss# ,Cure  z,)a niggers sN:2all *h<7c,dWBSihis bedroom Kh"al Apent3$ss]$excessive cautionCfelliP congratuP.2himMRCknew escapaden1was _Raware3the gently-Qas awake$Y bv5. eawoke,=1andCrak$q ! ig# lAsens&the atmosp+HA%##Wh% ae not called--persecuted till As upRusualK4  KLtW.%Nairs, feelowadrowsyr family R at tԌ!bu finishedQkfastAI"no of rebuk)Nwere averted eyes;:!anA'ofCHthat struck a chillhe culprit' s He sat "nd &reem gay2it -Nwork; it E$no smile, no; he lapsed "leyheart sin'$tdepths.HNN"idG bbened ir3hop>g2Gflogged;Tianot so aunt wept overxand ask*m-E !gobreak her[!o;rfinally3him o{"ru&3andRher gray hair '1 so=~ '?2 usZ hT: try any more.Z!waCan a thous"ppgaA was sorer nQ:"anL1odycried, he pleaded for forgiveTpromised to reforh 2andj {.[jdismissal, !!he_1wonan imperfec51cestablut a feeblfidence. He lefk  Ro misC vAl ren4ful(2Sids 2 laB prompt retre back gat unnecessar_!mo^o school O%3sad41ook+}hqJoe HarHDwondered i-!ha!ic%nir mutuala<Abody2Dtalk r intentlthe grisly "them. "Poor fellow!" 9T+Cught a)Son toG@=grs!" "T2'll) iy catch him!" This ift of remark"milB, "IzQa jud';=frNow Tom shivxAfromA to heel; >D stooG3 of+3JoeZ$isB12beg}s6Bbe, andas shoute!'s  Aim! 7com!!"U!o? Who?"ctwentyT8. }1QHallo0s1!--=3out!tuM{&Am gey!" PeoplCrees over\'Aheadrrn't tryYB--he4doubtful and perplexed. "Infernal impu "!"aAa by~er; "wanosand take a quiet$aFwork12--dQexpec 263any=part, now u- b, oste%Ausly]3ingC" btAarm.;pa's facw haggar &the fear tha .W bstood 1urdman, he shook ara palsy4bface iNBhand@ QburstJa tears P!do#friends,&sobbed; "'pon my pThonor> z0iho's accTyou?"F" aYicarry home.xCliftme1and3ed ` thetic hopelessnes5sw!:"*Q, youaaised m/"'dD."Is ?V i4himM#. msiy anot ca=1easmhe groundn-*BSome!1tol"'tEM8Ond get--"-1hud Qn wavr4f2les` ra vanquSgestus?"Tell 'em, Joewv'em--itl0n,1tooMbEstar`#he  2-he8 liar reel offrene sta?_# FaFlear skydeliver God's Eningmp]f1seeAroke3tdelayedr JJ3illBaliv'!iraimpulsx  BoathE!avubetrayed prisonerafe fad d 5wayBinlySmiscreant1solrto Sata.#itIbe fatalReddle]~ Rroper-1sucQower - a"$hyyou leave?"DwoC|d Qfor?"ab BsaidRn't help it--$,"amoanedx:2 ru+ ?1see} 3but he fell to5. d repea)BjustZSlmly,minutes after inquest,=Foath 1seeCwerewithheld1q 1rme20qbbeliefH1Joej h Aevilw become,Bm most balefully interes1hadDA , yB not+ M  bey inwu(bresolv w= nights,d#1L should offer,Ih%ofPa glimpshis dread  3hel2rai !of[NRput ia wagone rremovalQwhisp3 Q 2ingv  l0!blqlittle!; Dboys&tXappy Tturn n$wBtheyQdisap "ed1morEn onarked: !three feet of . 7it O AfearL1ecrx+ad gnawonscienc /iqs sleepvAas ms a weekG1at Afast_~3Tom/' !alCyourx1so t3youp8!e B hal9"ti^rTom blaband dr"c H's a bad sign, Aunt Polly,*dly. "WzRgot oB min_d?" "NQ % '[Aof."k23oy'shook soaQhe spcoffee. "An 2 doTustuff,"Ur. "Last said, 'It's 2" t it is!' Y7Aoverover. And y!, 'Don't tor6me so--I'll-"!'S5CWHATQis it$V?" E+  1Tom( re is no\2ing*+ Qhappe\1BluckF2cern passedm7S's fas3 torwithout kno.!it" Aho! W3ful1. Im!ity4 my24Q3its7  S%Lqfound a-Sightypr itself . Becky Thatcherd"st #tolMT had EQhis pia few day<'"whistle her dow+!,"1fai)&HeTfind `"ha her father's Lqand feeI%< was ill.rif she p2 diP)9a3`qno longbdok an `@tar, norq piracy charm of lifCgoneMadreari2lef}hoop away,#Bat; $!wa 3joym3 His aunt "ed& 'rll mannqremedieS2him06wasRose prwho are infatuqwith pamedicinea-fanglWthods of produc2 or mend:an inveterate experimA3 in-s. When sRfresh'cis lin Sout s!in'k{2it;Kn herselfp?iling, bu/!el"at Whandy subscribert-!ll#!"H" periodicalNphrenological frauds olemn ignorance %B inf#1was^th)strils. A "rot" they cont about ventilR !ow$odRet upj/Ro eat$Cdrinl42howQexercI 2 22frag?!onTDelf *.1sor#clto wear,&all gospeӲs=aver obser!ha! h-journalscurrent month customarily upseXhad recommenO <Rbefor21s simple aonest e 1was+5 soan easy vict!gaQ$d <]quackydthus arm:'bdeath, .9 pale horse, metaphorici 1spe> "hell foll"Qsuspe `aot an &1 of[$$1balQGilea6 disguise&he) neighbors.n!wa6 creatmee3new/,low cond|)f$e!haRaat dayN*,bhim upehi}!wn mBqa delug Bcoldn she scrubb3a towel liki7Aso b?t him tona*Bhim Aa wemqblankets 1Aweatas soulw1 "the yellow stainsiV a his pores"--as7!Ye rwithstabAhis,boy grew morh  melancholyp!ej|added hot baths, sitz hFClung,A boyX#"inbdismalShearsRassisslim oatmeal dizbr-plastersb calcuhis capacitn)Hould a jug'sfSevery day}3cure-all-#om come indifferQ32ionn!!isfW_0cphase r1the1Tlady'L,constern;ice must b9!upny cost. Now?of Pain-killthe first a She otd a lot)Ua tasteD 3as with gratitud'Rimply7in a liqui0 J  {2and&P3els2!piZO iA gav a teaspoon# 6Xeepest anxietB,qe resul &r mstantly at rest,Zat peace again; for""?broken up` #bo+1hav!#wn a wilder,i , built arunder him.3feli.to wake up;-Klife might be romantic enough, iQblighy, , c1getyD tooiAsent "oo  %ng it. So heat over%!ouC!nsd ,X1finchit poO fo+n# 4Qfor in4ofthe became a nuisanch Rby teeZT help'2Aquit)q >Ieqen Sid,had no misgivto alloy!dePEsinc&3TomMF bottle clandp#el (" !rebdiminish" !itW Cccura t5was t!ltIta crack !siG-room floorit. One day athe ac 3dos  Sy"#'su$ c along, pur#eA(%heHR avar.lqbegginga({said: "Don't askit unlessAwant&Peter." But s1ifi# W2. "You better make suh$?ure. "Now you'v( give it to you, because E $ #m"mebiEQyou d,mustn't bl8Ebut your W agreeableEH mouth open)Voured.Sprang a couple of y+Aair,LSthen %ed a war-whoopsL!f & the room, b st furniture,/ flower-pom*  }Z havoc. NextiRose o}"hi6,#pr ja frenzy of enjoyment,<2his,F !jL proclaimingunappeasrhappines % Atear ?ahouse a spreaQchaos>destruct! Gath.U!edDime r&!im/w$double summersets, 2naly hurrah,AsailG1ughVt, carryK1res^Gthe ZGm. T  Bpetr astonish2 peer glasses;Alay ;qor expiaKRlaugh?#"on earth ails@Tcat?"N'u, aunt,"O. "Why,+i!diaact sogcDeed IWknow,e; catsq6kthey're having c A" "$ado, dof'?"Btonemade TombD1es'at is, I belie<(2y dAaYou DO1-  Qdown,n 3ingwAinte>emphasized by{ R. Too?@!viAer "f.R handthe telltale 1visC ed-valanceUi ald it tom winc 9yesBAraism Qe usuandle--5"ar.csoundlj %DimblS, sir (1tre"at)dumb beast so #pi Thim--Zd!nyj." "H!--you numskuhQat goAdH" iqHeaps. BRbif he'?Qone sqa burntF4out2! S2 ro 0QowelsX!of3'w"n,PBthanra human!" Z!fe: sudden pang6o1Thi1 pu yhl |6 ruelty to a cat MIGHT beboy, too  soften; 2sor=r0',I Rshe p<'3 onDheadd gently)'qmeaning -!stQ. And , it DID d !-&om)" i Bfacejust a percepttwinkle peepinggravity. "/!haf Q%ton-B? Ye*BforcX," adR: he 1lea!if!cr`wqno choi("By` `h2farFMeadow Lan,t !ll to "take up" t, Qd fai#up"eaG;, !Fink %,Bhear old familia!nd rmore--i Bhard0v$ou<ld worldc]submit--b A for1theQ sobs.a thick@O1 JW  2poi7m_'s sworn T , Joe Harper --hard-eyCwithD5tlyand dismal purp=Srt. P 9b were "two(but a singl&" Tom, wi 9#ye1fleeve,qblubberBsome about a 6p to escape from hard usag1lacsympathy at= by roamBbroaOFto return"3by  Athatm=1not"m.it transpir was a reques !chK2hadKRbeen  nIkN3#a)1hun1 up_. His mo ad whippfor drin ScreamhX  d knew ;*1plaUtCwishto go; if.<!waXpl but succumb2opebe happy0a regretDing ;"erW1boyxA $un) ddie. As=wEwalk gClong7 +compact to u 8 byePQthersqseparate till death rgm2 ikyj3lay.:tplans. "Qfor b2;a hermitC1livb qn crustJa remote cav1 dy O a#rand wannRgriefQ% m31to 1he U S&a4~_conspicuous advantages1 a "so ansente!pi Three miles below St.easburg,|!wthe Mississippi Riv "a OaWQ wide"a !qnarrow,%ed islanS \6$2bare  o"d well as a rendezvous%1 in2!edrlay farQtowarL her shore, abrvba densk{Twholly un o1estJackson's IC chosen. Whon!*aubject%Qiracis a matted2 ]Ay hu(up}R Finn8 JmRqly, for rcareersho hhe was$jy,75tlykmtu#!ne;I$ot]river-bank two,vn1favorite hour--4\csmall log rafIthey meanLLd. EachJr,2ookl6)such provisiA4d steal amost dnd myste!way--as bec +butlaws_:Rbefordaftern2donCy."agsweet glory of b~h12ttythe towne"hear ." All whohis vague hint!!cas"be mumTqit." AD Tom@a boiled ha9c a fewKs 1%ingrowth onQbluffMthe meeting-8VstarlBveryAMT lay Qoceanl3Tom6ed Qbut n3 m Q>the quietenN!ve%w, distinc$ 6stlAansw 1bd twic; these sig, K&e ;bThen af5ed voice!We!reTom SawyK^he Black Avenger Spanish Main. Name your namesuck FinnERed-Handed VTerro]2easw BBfurnq rtitles,56hisIliteraturA'TisEC. Gicountersignwo hoarse whispers !e Hawful word simultaneJ"torrooding<: "BLOOD!" 2Tom6 sQUC4Cdown@qit, teaboth skin1F/!es~ome extenXB'BfforF {., comfortable path (Bit l8the!of pCicul8!da/rso valu[&  b d4bac3had Tworn 2outy'"it $.gstolen a sg* ntity of half-c#leaf tobaccol- corn-cob 3pip/.3An3e s smoked or "chewed"A saik !do2tar"z)J ! w1hought; m]ahardly'@Z"reaat dayqy saw aWa smoulJgG1a hWd$3aboy qwent stc'@ 5andjErhemselvsa chunk Rn impR'adventurLbit, sa r"Hist!"[A nowT2theV suddenly halt!fion lip; movM on imaginary dagger-hilt4!gi1orders inX"ifj/Dfoe"cc, to "%W)'K dilt," " "dead men tell no taleWhey knew2 en< raftsmen 3allQ lC in stores or haae2{]D exc^ aconduc` /1 un"AicalAOPved off, ,iEmx CHuckJ1oar!Jo=D qorward.>stood amidships,T-browwith folded arm/7hisTstern_: "LuffDbI"wind!" "Aye-aye, siraSteadyNAady-f it is/!Le!t go off 1P 0Aboys 2dilcly droGd mid-stream vno doubtET"gonly for "style,O! t!to E any&particular&a?"l'?1 '?" "Courses, tops'lflying-jib?"Se  r'yals up! La[Saloft,$! a dozen of ye --foretopmaststuns'l! Lively, now1hak\/maintogala@RSheet braces! NOW my heartiesWHellum-a-leeKTrt! SX2wJ4comes! Port, 1NOW, men! With a will!  T\ drew beyoc7mid#&   ed her head7?then lay oi)Hnot high, s  B notathan aEor t=C82. Ha Awas j!duthe next;-quarter ran hour2t1wasGing BdistXwn. Taglimmenlights showed rit lay,1 "sl#,j vast sweep ofAa-gemmed water,the tremendous ev:4!ha happening. 7 7" his last"-Q Ascen!hirmer joy06ter8wishing "she"2rsee himuQabroathe wild sea,~ng periladeath Qdauntj%, his doom| a grim so/rlips. I,!bu mall strain'0R,!to&vet Island 6aeyeshoN'Cthe ["edZ!a vnqsatisfi\a' p last, to q3so I y came near let#e \Q drif)m\ArangQthe i< oediscov "j !inF%qmade sh\o avert it. About'clock ip1morU'Agrout+1bar8 B thewaded backzforth until Ahad 2"d ffreight. ParRlittl|'ngings consist an old sail"isgaspreadIr a nook ce bush$1a tbo shel6eir"s u TsleepVqopen aiDgoodq., .!y6/sk J log twentyirty stepk  sombre depth 4estDen cme bacon1fryb!anI1suprgAand fY"upcorn "pone" stockw4had;seemed glorious sporuAfeas%at wild, freee virginunexplor%5 un CR, far61 2aunm Ba returcivilizations a climbO&!ir3 up6Bfacethrew its ruddy glare the pillared tree-trunk$irbtemple?X aDfoli>afestoovines. W'!he crisp slice of ""on,qallowan* pone devou Bstre'3outt grass,Q;contentmenyBhave3" a coolecZ Qthey 9dena romantic feaZ 2 roh camp-fi2AIN'T it gay?" !JoIt's NUTS!Tom. "WhathHA Aay ikasee us Say? WellB y'd just die to b&be--hey y I reckon so, 2; "͉s, I'm suited. M/u't want"better'n$Aever@#Cgen'ally--and > Rcan'tXband pikAa fe<Z qullyragDso."HAthe dfor meXY6!toCup, y(!ch{"sh 'at blame foolish5uYou see 3do ANYTHING, Joe, ) aa[hermit HE haRbe pr0dxm# t0naany fuyyGUll by&tt!ayPAOh y What's \ "but I hadn't thought muchFqit, youT. I'd-deal rather b mq I've tN(!itC3, "'"go}#onsQ!adQlike ^^Ato is`Ce's M'respectedr2 a Q's goWhhardest 6Ican finput sackYa 3hea)s<=$1raiAd--"5at does he put V for?" inquireZ0Fdono s've GOTV.6rmi5!do2:1do 3/5wasDern'd if Iww'v?an't do%`#WhY:'d HAVE toP'N0!itY6I3n'tv"it2run.S" "R "! you WOULDnld slouc<0be a disgrace U no respon*ecemploy)chad fiqgouging Qa cobQ now A"tt:e', loaded it) was pressing Qal toRchargAblow! cloud of fragrant smokj&iMfull bloomp-1uxu   ) envied himW majestic vicM secretly &vqacquire?hortly. 0AHuck:Q1pirT?E+,"Oh^#n1a batime--(b 2hem3get "nebury it in ?6#ir $ w!re's ghost Fings]i kill everybod --make 'em walk a plankSA y!wo "q Joe; "YAkill5RsNo," asT## 2g--they're too noble}Tbeautiful, too.Awear[bulliest }es! Oh no! All goldsilver and di'mondswith enthusiasm#o? !hy#B." o"caDbis own orlornly I ain't dressed. h"a &ful pathoH=;Z#go3!bu1$sex@Ftoys tolbe fine#escome fast,a h0Sbegun <W^2him!^2his'4rags}Qbegin,l(Lqy for wy  a proper wardrobe. Gradu5talk diedk ;vwsiness6'[z t eyelidm fBwaifF pip3ub9U (Drhe slep qcience-aR wearL ta} 3 :J%in . 1saiYayers inwardlya, sinc Dith authority them kneeXQrecitC1ud;h"ru2d a0!no$s(1m a,,were afrro proceU lengths asS, les:might call2 a dspecial thAbolt3 c6cn at o Qy rea1ando7'reimminent verge of O.an intruder( ,: not "down." F ,4e>41egafe$fWhad been doing wroD -#eytb. 3meaAthen!rezr^CcameY to argue it away by remindingzhad purloined1tme@nd applesfAs ofKB C!thin plausibilities;E!m,che end? R!ar%the stubborn&"ta-was only "hooking,"F6,O"am@valuableCplain simpleSing--Oa command againaMi"Sov  5hat;a4 "bub", )U2not~Q be sd.!thl}Ume of.3$ e؍uP Lc 39]dstent # Hfell CHAPTER XIV WHENCawok!, he wond% he was. He sat5Q rubb Rs eye'ny"omBd#ool gray dawT#ya%-8of reposKdeep pervading calmGBsilewoods. Not a leaf r!!; ! s!ob|great Nature's medit!Bedewdrops W 2upowCleavQgrassBQ whitY!xcPathe fi,Dblue3werK|some hand$r it laydst to (/Bdit by a narrow channel hardlybhundred yards widetook a swim | hour, so i the midd#thEnoon2Yy got6ptoo hungrRtop tdthey fared sumptu"ha-%themselves $balk. B_S soontto drag!en6} 2itybrooded pG! s of loneliFsFtellUaspirit1oysy!toking. A sorQundef,e creptWmVdim shape'6#--budding homesick'Even Finq Red-Ha.was drea doorsteps\empty hogsheads~all ashame",1weayC none was brave to speak &a. For A Aboysbeen dullyM!ouna peculiar A ,2"sometimes i>2!ic"ofZ##ckAk"ke6>!no' #(isAA1 befpronouY!fo a recogn72 st a glanc4 \aassume1ist23 atfR Thera ,R, pro_band unK1;Yqa deep,ren boomK floating downDn.#is it!" exclaimed Joe,S. "I [!2Tomi whisper. "'T@!8thu+@Dan awed tone, "becuz4'bHark!")qTom. "L7q--don't\#."2wai% 4hatSan agV] ame muffled boom trouble$| hush. "Le(5seevBspraVAfeet%"hu_ MjS1ownp1y pCy u(1ankM!pe2out+2ated 9!steam ferryboakTabout1bel' v,3Aing @, urrent. Her T deckMScrowd b*<!re^# amany skiffs ,T&oru9 neighborhooBcoul{determine what em&!jeSwhitedburst z E's sKas it expSand rNa lazy cloud, tAsames Cb ofz1orn steners again{ 9now Tom; "somebody's drownded!`HGHuck&*last summer,\Bill Turner gotVvy shoot a cannon ov$at makes him comRdtop. Ytake loavBbreaRAput &q in 'em2set Tyr,anybody!!, L'1ll =9i #!op'I've heardDthatUJoe. qread dolR!Oh)](Ld, so muchW&it's mostly v 72SAYib it ou%. "y >6say<iqHuck. "p r@O1XWfunny. "But mayb!sa)E . Of COURSEb do. A1$<Tboys agre=AQreaso(1TomF,@% a!uat lump3Buninfeescaped, unawaR.Bby Joe timidly H1&ra roundB"feeler"3o hI rothers  # aa ;D--no[_but-- Tom!er derision!, uncommit s yet, join"Towaverer quickly "ex)#ed 1wasTT g f<ascrape4 as#tachicken-hearted a cling-o his garme"!s z&uld. MutinybeffectV/1laid$qrest fo{s moment."heMQened,&#no&H to snoreTQ foll13nexc#laG)lbow motioq,>V %@1twosntly. AT he got up cautiously,7CkneeZ#BsearQ<the flickerflections flung%!he"*!piJ !upDed several| semi-cylinder:3hinAbark%t sycamo)1finchose two whichto suit himin #3lt #fi&ly wroteV@shis "red keel";4qhe rollBB!pu"his jacket pocketFtM $he+Joe's hab remov$lD  owner. A CalsoQto the hatschoolboy treas most inestimable value--5m a #ch India-rubber b ree fishhook@$oEQthat !of marbles n as a "sure 'Lcrystal."tiptoed his way #!s Y "he  h drhearingstraightwayc=a keen ru  "irr \-V A FEWsirX&!waM ) BhoalNbar, wading qIllinoi].re. Befoc depth rea,%Chis  half-waF  a:" p="no%},#aso he k]1wimKremainingOSswam bing ups   $=faster than dcted. However, 1Zr6$al3AdrifUlong BoundUR plac~JfRmAis hA N6Aiecexark safP .R#,35ing. Shortly before tenFecn openroppositBDvillA saw2 ly ? Btree- the high8. Everything^quiet undCe bl- !stK2He dkRGZ1alleyes, sli!c, swamor four strokXclimb7(I)"yawl" dutyEPboat's stern!1thw)ited, panting. ;!ra!qbell taavoice gagH1 or:o "cast off." A]j "la("'sh]ZsAup, s 1 swQ4voy abegun.M in his succ7!fom*ait was2^AtripB 2. A/e!a HRtwelvcifteenSwheels stoppedDTom aoverbo."ndaLysdusk, lSfifty6Bdownk,<rof dangpossible stragglrHe flewY unfrequenl3leys$]C:r aunt's QfencehoRapprothe "ellE lBin a+)1-ro Bndow"a 8was,& r/ Aunt Po:Sid, MaryfJoe Harper's mother, grouped togeB talTH s b ' &the doort B dook softly lifBlatcn he pressed gHyielded a crack; ntinued push,G= band quQevery it creaked,wQjudge  squeeze~9ugh ;i #hiq, warilWcqweblow s=I5up. >CAor's , I believe. Why, of coursr-cis. No , gs now. Go 'longqshut itF"."j"edM"la"Ded" 7`|C"tould almo\"!uc nSfoot.#asJ "Q rn't BAD, so ay --only mischEEvous. OnlyRgiddyharum-scarum, F3He Z2any bresponoa colt. HE never mean12hart@2]%st2boy:awas"--g&he!cr[Irjust so{my Joe--always full ofdevilmentbup to  rischief G`as unselfis'3Das h"belaws bless m&w2k I.an!htz#m,:once recolEAat I3wed myself ]Yis6$Sand IP1Ahim Xgi#ldv!, R abus!!" CMrs.ba sobbebif her3 3hope Tom'Jvter offi*BB"butQ'd been 5in some ways--" "SID!"the glare 2 olc3s's eye,yBnot 12. "g9N_%st my Tom,"Qat hene! God' Cke ctQHIM--F< YOURself, sir! Oh,G2, IuR know=odim up!!!!Hesuch a comforjla he tohQed myJme, 'mosrThe Lor,!th2tqhath taSrway--Blb 1nam"21!w$Ait'sKard--Oh,! Saturday my Jo<#er bmy nos D him sprawl%aLittleH $K !n,TCsoonfKto do over K1hug3and1him6 IeYes, yj1howMfeeljust exactly/longer agoqQyeste(Snoon, took and f3to tPain-killI$ ct@e house down!Go%Agive"I  ''="my thimbleY3boy 1deaab P  H"An'rwords I7Ahear2 sa6Rto re 2#Bu\6Tmemor$X1the$la3sheqentirely as snuff;:T now,Nm Bpitythan anybody elsP #ou E cry -"pu^4Q%kindly word #imm$oY)DFa nobler opin$ H1befdStill,rsuffici Bhis  grief tB!sh] tIoverwhelm herB joy;eeatrical>aappealKarongly0is naturAo, b]R resiJbnd layX*R. He&on'F#ga|qby odds;Bends+ conjectured at fir!atP(/#e#le+;M+ec0rraft ha Unext,2]she missing ladspromised!shqB"heaQq" soon;Qwise-8*$"pA %atU "Sdecidk8g`fC"at tturn upnext town below,;|N(found, lodgede Missouri pQ"fisix miles t| nBperitIbust be`%1ed,1 hu have driv4rhome byqfall if5U1soo/  W searRbodieb!8Qfruit !ef Amere2cau; 2ingaoccurr} mid-channel, sinc Qbeing swimmers,otherwiseSBesca|r Wednesday A. Ifsuntil Sunday,3opexAbe g\!ndMfunerals&$ p"onA shuddered. g>Dsobb-j0 2go.  a mutual impuly two bereavedMA flu =/5Qeach Pb's armvQhad a|,A-o{!#cr jwparted.q was te+ far beyon`Q wontu+cRto SiMary. Sid red a biCMary<#ff 6. and prayeM so touchingly, so 62ith qmeasure1lov8OGer old tremb/Avoic  3welin tears ,B sheK&9h Rstill3A5#shZ"dsrmaking -sejacula1romB, tounrestfu and turn:Q "at* "as", !oa.| sleep. Nboy stole @;*cgradua;Aside, sha"e b-light=#andQstood4r Gher. HisIrfull ofA $e [5hisxq scroll.+ARto hi he lingRconsi"R face,arUsolutW "s x Bt; h(ark hastily iv9 !ntv k[2lipAmade#stORexit,pWabehindxAthreYhis way backmhB!no \Arge ! S2ldly on 2oatwc tenanRxceptWahAman,(xiE slept like?ven imag] CuntiGS 7 zi-<$on. 2 up. When h!pu`!a V6$abhGD, he2S quarrCacro  Qstout Awork !hiT !e , side neatlyn" ts a familiaraof wor1himYBwas &Aptur 3b, arguLRat it;1 beFAshipfore legitimate prey!qpirate, a thorough @ 1be Cfor z!enCreve8B. Soo<a qand entBoodsslwM`arest, torturin Cmean o keep aw:!an]n;Vhome-stretch far spent road dayJ"he r*DRabrea  rVA barr{JO k !unzbwell u1gilI:2eat=its splendorhe plungtream. A "he paused, dripp" treshold2cam + Joe say: "No,]true-blue, Huckqhe'll cl "ac?won't deser2zstm uZ>ğtoo proudfaat sorXI a. He'sBo2 ora55C whac[8/!e 0s is ourz^i4hey?" "Pretty nearKrnot yet_1wriIAsays:B aregO 2her+? W$\he is_2fine dramatic effect, @Aing +l.o%F. AW:o "co2fisshortly provide?2as WQys sea G!itGunted (and adorned)#Qadven*% Ba vaRA boa_ P"anp."wh p>AdoneHn 5hid)BawayAshadwQsleep 9!ss&'ready to$]>e#I AFTER dinner 4ang !ou-hunt for turtle egg+ 22nt *,poking sticks s yba soft vNe eir knees#duJ!A5. S9tAould{|igSsixty<cone ho6Qy werfectly round'ea trifle smaller`an English walnut famous fried-egg(gHCnighFanother on FridaBnq!1AftK7o%cwhoopi ua|s chased(j2anda, shedclothes ,  _tere nakePthe frolic far1 upqshoal wstiff current, wYtlatter {GC leg 1unde7^1cre qun. AndX9 !op) osplashed iY)Rfacesw palms, !7ing#Q aver-@Grto avoiQsprayQd finb g! "ug,jt0 st man du$s (9TAall WQtangl6S"egucame up b%b, sput q, laughqand gas1forth at on{ )BQ7imeh|aexhaus$1runBand  dry, hot!li ?+3covB_"up !by.!byk2terjo original performance onc/>3. FQit ocX /Hn skin re ed flesh-colored "tights"F6afairly!#qdrew a i circus--&bclownsP* b none  |"R thisRest p  `a. NexAy go %ir:+l"knucks""ring-taw "keeps"at amusement grew stanH1and a BTom Cnot ,; kEin k;@f;trousers %kiY!stfof rattlesnake his anklehq U!hecramp so lo8xhe prot+ @Bchar )di *Btime6Bboys!ti%ndwD res#waapart, dropYq"dumps, fell to3!lo1$ly"thEj Ato wlay drow1un.s u  r"BECKY" big toe;*Acrat`!9Angry5 1forD weaknessXqhe wrot!f ,!!thgcnot help i !er&itAEtookz"ouc Aempt# by driving 7a toget7!nd 3 m. But Joe's D1hadhn$Abeyo Bsurr.q $o 2Rhardly endBa miserB iIerlay ver surface.was melancholy, too"waeFhearted, bu)e~A noty 3howexa secret}^ to tell,B "this mutinous d2sio72not#asoon, Quld h$+1o b6Y@Bsaid2eatof cheerfulness: "I beY>Ebeen F 4is 1efooys. We'll( VgAThey>'ide1lasomewhY6UHow'd ight on a rotten chesto% f#--But it roused onlnt enthusiasm 2fad no reply. Tom!onz+3two!se}Aons;KAfail($ooI discouragz!k.M%sa  %" a A!lo%fgloomysid: "Oh, let's !!it up. I wango home. It'sQesometOh no, Joe''ll feel be- b{($by (T?!JuD 1inkah2?C" "u$ $4for)"(t) Bing- 2anyJS" "SQ's no.$Bseemp1it,0chow, w 2re t7! to say I sha'n't go in. I me b"shucks! Baby! Yousee your4,XAYes, I DO0#my.B--an)A, ifhyBe. Ih$2 ban(Bare.c'U"%ed.wlQ cry-I m,"we A? Po08aing--d8?t$it<?'so it shall.2alike i+Xe, don't you`sFstay|?ir"Y-e-s" !ou  . "I'll:Q spea-2you2 as- as I live.1ris\!"TQnow!"&9ved moodi [6and&#d<t!ho#1s!"hNQwants'to\,$ho1et  ed at. Ohr#3iceTand m[Ries.  V,A? Le0f#unts to. we can get0{aper'apAB< as uneasy Blarm 1seeGgo sullenly on/ sUAing.5# QmfortK Huck eying"prjO9Xso wiy5 such an om%K. Presently,v2 paxAwordwade offh"the Illinoie'AAsinkQglanc bU'3loo> `;yVYI#gog!ItfM L4  it'll be worse. J*usR"=)1canKgqAstay27+I!gosWell, g/--who's h ing you.+QCpickR scatqclothesjvtAwish4'd ol3youi`.wait for youq!weCV""3ra blameh5all!st q sorrowR awayM3Tom _Ba!6ng desire tug!at;#to ]#gotoo. He hsf stop,; sw Aslow. It suddAdawn y awas bemBverypQcT3. H2one Y-d?s comrades, yelling: "Wait! (tell you some!F#y j!ly1ped$SaCgM zh5e1ingc yK|cCat ly saw the "C"s # aN set up a war-whoop of apCk#1saiTRwas "Aid!"3qhad tol]m(,#2n't away. He made a uible excuse;O!hipIl reason "be:" fa#ev<T#DthemmA ^great length ofSs$so#men 1hol eserve as a A .B ladNCa gayly:4:9 ir sports will, cha6!im #ut:stupendous plan`Aadmi)wenius of it. Aba dainA and ,!he*ed to lear bsmoke, 5Joe caughQ ideaSBlike to trysXQpipes7!fi 2the@se noviceY1 d\Lbut cigarsPof grape-vinGQ"bit" Stongu8not manly anyway. $yo'Vir elbow1uffBrilyd!slr confid9AThe an unpleasant tastGgagg Why, it's@0as easy! If0a2e/sCall,"t + #SoI4 E. "Ic!no'hy, many aI've lookA peonm$ well I wish I!do's; but I 1%Tom. "T!aRme, h$it 1You1earK Stalk <k--have o qleave iKAif In't." "Yes--5MosUHuck.$7D too Tom; "oh,ZCR. OncW1 1e s5 ter-house. Do rememberBob Tann771 thand Johnny M1 ,Ilcf 1, 'ame say  !Ye\ !. B#ay I lost a white alley. No, 't*.z --I told[1. "472s iI bleeve4Apipe4dayMfeel sickNeither do>}]$itV1. B!be  4\ !! 7keel over wtwo draws. !le D tryB. HE'D see! !beRwould !A--I  Aa tackl2onc 3Oh,)2I!"G@s:youI any more%an!onqtle sni fetch HIM." "'Deed2oul U. Say aus now?!So ay--boys!saH !i BsomeRy're = ,W Qup toQay, 'got a pipe?aPae.' An2'll31kin%1carO like, as6rX  pIamy OLDw", (03 on'rmy toba+bCin'tood.' AndZ1Oh,'" r 's STRONG e3G= $ouhO1igh ras ca'm!Eqsee 'em-S4thagay, Tom 1ish0aas NOW5!!we \"weQerwas offQing, 27 w#y' dalong?Bnot!M4BET@ll!" Sotalk ran onV &itEflag"'grow disjointedBilen adened;erexpectol marvellously ]!^ry pore ip <boys' cheekame a spouting fountainiyj2bai the cellars   rs fast Kb to pran inund;2overflowing+M throatsqin spitx 2all*"doF = Fings"Metime. BothY1ere2ing2pal miserable, 'from his nervtfingersx!. t_ygoing furBboth pumps baiB"Mm|\)id feebld) =Wknife]hCfind Bquiv2lipb 1halutterance2'llyou. You go j`Rhunt r? !pro!No needn'tvHuck--wdS ,BgainAwait!Q hourCr%itpK'"to Dhis :yswide ap oods, both U!pa Aoth a1 0informed him2 if#ha!ny trouble agot riQ"itnot talkative atT}Snight4Rhumbl1henQ prepCdp "ft meal andBparez\ "ey[2no, 1fee,well--some+1 at )mӂisagreedQ2 A !id!aw-dand ca0{ding oppressive:#ai83see02bodiNXa huddl  !so1thet(Cndly*vionshipr4F/} 2ullj=aheat o  breathless atmospA sti<Ty sat94%Awaitholemn hush 7b. Beyo{jfire eK3swaSQup inAblac`!Hr  &aaAglow  vaguely revea^ foliage for a momTavanish4by " crc1str?#n & faint moanA siguL"th0 tranchesRforesboys felt a fleeting ,ywshudder fancy tha?S! Nd !!by/. Now a weird flash,! n?Ainto  hgrass-blade,=i and distinct %aBfeet $it[three white,/tled facoo. A deep pea "thP1rol:and tumbling "r heavenGlostw# r4Qdista$A Ƙ chilly air passed by, rustlingjyn!sn the flaky ashes broadcast !ir TfiercElm FN% stant crashD#retree-tops r'Mic:p$in terror,x%athick 6!p~q. A fewsurain-dropCl paf* .. "Quick!!W"foLtent0csprangs\Broot4amoQdark,awo plu&same direction{ blast ro trees, making &as it went. One blind yH #ndnbf deafJhFnow a drenchinv1 po@#heK hurricane droveGsheets a`c0Qround<" c#u Beach#,the roarafoj-C!s >eir voices7 ly. However, one by; O 8\ook shelterk  .Qcold, /Qstrea5 ,;o%!y =?DseryR1o b teful foK  x 1 olBl fl{Q$soW2ly,0 Wd noise1hav[A The6(esS!er:qhigher, Zthe sail to "se/1its ]4X"wiCaway- %. Iseiz0"s'1}Rfled, ye bruises, toԁ2oak`U86d-bank.b battlsTst. U}R ceas conflagrf of lightnR flamii*AkiesSbelowout in clean-cuTTless Qness:"be:the billowy ,<Bfoam$@Z0 of spume-flakIhe dim outlinSdbluffsoside, glimpUD drifting cloud-rZ1lan1veirmE "L9 some giree yielR>! fand fell younger growth;Vthe unflagg/ S-pealnow in ear-splitting explosive bursts, keeBshar8 unspeakably appa[storm culminatone matcy ceffort# qlikely *+9q to pieQburn ,! ig, blow itBand rq creatuA it,av" 2. IKra wild rfor hom#}Q. Buk}'do forces retir Aweakd h threag  peace resumed her swa  %nt>Scamp,YC! d3wed3hey`Q was Sthankp07eat"^Dthe  ir beds, was a ruinTJQblast? w uwere no3Rt whecatastropppened. |! i pz!ed9A-fir/Qwell;5 t-v-AheedSlads,3Bgene0ymade no prova +/#stHc! m pbdismay2|Q soak3t eloquent iNHtres/,%,1verY0 [aten so far up HQlog iL  dbuilt !(wW it curved upK\3 &$edn Afromground),%a-breadth or so# \V2!weB; soCpatitj-t7kashreds+qbark gaBthe 2sid#qed logs+ay coax61"toQ. TheRy pil=$5boughs ti]# r furnac<|# glad-heaV751g1y d{ , !boo"haOXD feanN ][3satJd aexpandd glorified8Q<]9ndry spot to sleep %6-B. A@6sunssteal iN2oys !si!ov"em sandbar2lay1<Ogot scorche.8drearily se(breakfas"CrustJcstiff-4mhomesick once;:%Bsignbto cherTup thp+;ɹ2C. Buc 1not %fo6, or circu .E, or"%Aremi1$ imposing &aa ray 6eer. WhioD, he`7mRa new devicaK Hqo knockcbeing aq e"be*c!nspqa changOHeattracis idea; sonzs;m^head to heel black mud, like so zebras--alB Zchiefs, of course/aEwent* `A"tt%=s settleQg!By|yn ree hostile trib(Vupon @ bambushdreadful 'kQ%hcalpedHvousands  gory day. Conse$lyan extremelisfactory one. rassembl\Dcamp-rsupper-*<|`KYj4but[ifficulty arose--!d]1notk of hospitalityR-1fir<8 ,: qsimple nAsibiI@"smv2 ofER processeLDaof. Tw davages;7wF 3hadd$ed%. oD}2 wa;with such show 6! aCSmuste# Apipe# 1tooqir whiffA tqdue for1h1gladBgone"rya0Rhad g;S e now smokeA hav Ao go^;Aget 67d be se#un02abl1not AfoolG jhigh promis, #of }practised cautbafter R dfair success y spent a jubilanAning\FeRhappiw new acquirp#would have iwnd skinning"QSix N s. We will$toqnd chatL?And bsince we=nther use >, . CHAPTER XVII BUT} hilarity ?Btowntranquil eZafternoons Harper~Aunt Polly's famiE22ereS3 pumourning QgriefXP . An unusual quiet possess= village, althoug"Rordini 8 !all consci*Ir!du ssaan abs^#ir+ nblittle*sighed ofte.Ftholidayqa burdeL !Shildr61 no) Rsportz h>gUbup. I Becky Thatch1!unqself moB2abo Q dese5 aschoolc)C yar1feevery melancholy sDund  t73to FPShe soliloquize:if I onla brass andiron-knob-!:(*Dgot ` e%to * him by." And she choked besob. 5)7sto CXo9!tchere. iRto dog  x( say that' n3 the whole wor Bhe'snow; I'll <.6A seeb.12is 3t broke )1wn,qP!ndCawayQ down9Uun quite1F!ofs Vgirls--playmates of /and Joe's-- b 1ood2!Qv1 pazfence andfNArentqhow Tom]rso-and-+d2ime"csaw hi6'6how#3andmrifle (pregnant# awful prophecyu(2eas "!)  er point>tWu2actwC"heClads" 8addNpa"and IBa-stR just so-- as I am nowOf)qwas hima Aclos e smiled,Y ?2way!th!l+"me !--R, you knowD!I wZ5Wmeant ,C/1can TL a dispute5who-Bdead.cin lif`Qclaimat dismal|qand offLevidences, more or l: 1amp!DwithVrwitnessDwhen ultimately decided who DIDrthe depl"exCwordthem, the luckR2ies Aupon1selA sor"sacred importanf z1apeand envie=che respoor chap, whono other&z"toF,)tolerably 2c pride 01'Z9# ucked me-BRat bi Rglory failure. Most s "athat cheapen&!1incWWa=4loitered zs2rec2r memori!osu2oes3wedC. W\-B hou 1UfinisFnextell begaoll, inst# r  @I1a vtill Sabbath2the ful sound %in<he musing9%TlSM#on` &rs,V5ing$ vestibulQnversCwhispers#1nt.zQthereF$no/Athe 4 ;g]6eal"of dresses +f womenZ<eir seatsZ3urbJ= T. Nonpi&er q churchd!beS full5. TXMa&Q paus expectant dumbn  CV,D#Rby SiEMary yV C ball in$2 qcongregb old ministere, roselBntileos Bseatront pew$ncommuning2., broken atvals by muffc5obsbaspread,hands abroa5prayed. A mov1ymnEsungRF tex<$q: "I amRH Qe Lif2EQervic'Dceedclergyman dmLuch picturA gra  6wayA rarZbthat e4!ou)!in9Acogn!Uthese,(!pa5!herpersist"bl1him rm always Ys?BseenRfault( Sflawsg +1relaGaa toucIqincidenm&iv`e:RqillustrN.Rweet,X3ous%s people !, how nobl_ beautifose episodespt  O rank rascalit"}.bcowhid 1 be@ \ 2and D pathetic tale1n, e"at r rcompany aand jo( !erba chor swelled upa triumphant&,6c it sh! r-s0ASawycre Pirat3#eds k-1envQjuvenkGDBconf"in%$ea&"s oudest momen_1hisq j"sold"Utroop"ey6 jsbe will;"beFBridiculouCtp UuB I" Tom go81e c )esd!cc4R's vatmoods--uhad earned YByear he hardly knew which expro85ostK,!Rto GozBaffe' BqI THAT !--RchemeoAturn'bhis brpI Qatten sa y had pa4o& mo'og, at dusk on 3, lmvesg+t6; U slep   1edg7Bthe 1ill nearly dayligh`UcreptZback lan@ TsleepE  0a chaos of invalid21nchA>f fMonday2 kSto To1tivhis want Aamou1. Id!ttI<@3say> fine jokB, toHeverybody suffe'G'most a week soAboysra good 1but01s aMjC you% Qbe sop-Aed aNrlet me ob so. I-QcouldO:U overtrl1hav| eN&Aive -=2hin9D1tha" warn't d 2but qrun off=Yesedat, Tom,";Mary; "and I believR OihAoughLCW1youR?Rg!, }#ac7iZstfully. "Say<", mJr'p?" "I--w*know. 'T?b'a' sp'NILryou lov UDmuchwith a grieved tB discomfo5Gv!me! c enough to THINKc, even+ didn't DOqNTuntie)vUany harm," pleadeBit's giddy way--he is2 inba rush%he|uinks ofrUaMore's Qpity.\. AndAcomeADONEj.1too'1'll !, 0!da 'Q late DQyou'dSd+"dfor me>Acost&2so 9 j1you V` for you5H2I'd)ADtterakDlike!I Vnow IVsrepenta1; "s dreamt@1any(I,,L much--a cj$$'s!no2. W QWhy, Wednesday night I!tZsu ! bl # b 8+ woodbox A nex Uhim."TRso we9 S 'do ByourQtake  0?8 !usfD<$Jo#'s -uhy, sheA! DiHNOh, lotsso dim, nowWtHa--can'lIRSomehAseem2ind ewind b)6.{1"Trh1der9s[2p. Come!"6  !hioo$ aforehe anxious minud then *AI've i[(.! t rr!" "Mercy on us! Go]-Tom--go on#R< 1you.1, '*door--'" "Go ON]VEJust;ctudy a . Oh, yes--rS you dkwas openeAs I'mMGQI didZn't I, MaryA[}Bthen^r I won'obertaine9Qas if4 Amade'P/cWell? -I make him do%Yb1himB--Ohyahim sh   M"land's sake! IAhear% b@my days! Dstell ME1any! i 1amswV. Sereny 4& i^an hour older.^Pther getCTHISj er rubbage 'superstition.#1t's/!!brbas dayVF Nex3 I r BBAD,NmischeevousM )"an+ responsibl3n1--Ik a colt,28 Pd$"! AgoodjgracioF you(1cryU"So& "Nof* nM)" "Then Mrs.e@2cryf "JotF3ame:C2she !ha SwhippERcreamshe'd thrit out he"CselfRsperrA1cyou! Ya#Qsying2t's1youdoing! Land ae]Gno!SiAsaidd  D" " O ! IRLBSid. did, SidMary. "Sh.d"leU"heL1TomSHI{ !h^6$off whereM$gone to,  fDbeen0sometimesTHERE, d'youd that!:92his8 QwordsG"Anhim up sharpTI lay must 'a'an angelcere WAS W xCtoldZ 1Joe>`a firecracker73Pet\ainkilleraas truPeI liveQ/!loCtalk%dr;Qe riv)1r ud%3havHCA Suna qand old MissRhuggeH4cri  "en bIt hap"!so 2surT'm a- sftracks /2n't`i.Zq 'a' se" %! \what?Ie3youq, " IwBhear`C wor2aid  !en  Pso sorryq I tookRwrote4piece of; bark, 'W}dead--we are only off 4'p %T tabl_  ;'hCyou sdA, lacasleepv8Iand leaned2lip6 D ,&I;bforgivqhm#at4she4crushing embracpt, feel lik( guiltie%villains.#wackind,  Dough~a--dream," , faudibl!up! A body doeV as he'd do if heVyA. Hea*FMilum apple  s 1was-,t--now gto school.=qto the Oc1Fat2f ui  ~2ack>'d-F1ing"Bmercy [l#t q on HimHis word, Bknow unworthy ofa 1nesR FHis *ad His hand+slp themEugh placere's fewAsmil 2e o= t{%4wHis res>long nightUDs. G2Sid >Q--tak+r)1off( 've henderClong.e children lefw old lady to call o vanquish her realism!sq marvelu(3had1Q judg_"toF_pi4"mi,"hethe house.XAthis zrthin--az\Bthatdout any mistakekWhat a hero/a, now! Henot go skipp~(%Rncingm"a dignifi!agƌXa@ who felthe public eyEm|cindeed; he triesto seem2 th2s ooaremark-he passed along?tW5Afooddrink toSmaller boysl%1flo+cels, as A to 6"enw"le$#bys the drummer1heaQ cession Ae elephant lead menagerie :own. Boys ofown size pretendVIknowaway at all'4were consu with envy,bthelesW EUgiven& i#av1swasuntanne6?his glittnotoriety3Tom !no# Ae pa1ithBr a =e3Dbaso muc}bbof JoeAdeli!9eloquent admir)݅*"eyT1two"esMAnot "inCsuff+."stuck-up."s#1tel ir adventures]5ungy#2ers9B;c@ 9ran end,aimagins}!irrfurnish material+,yorir pipewent serenely puffAroun Q Qsummi; glory wadCchedOQdecidbe independen@ ]6now. Glorysufficient. He_2liv|R. Now !heTdisti?'a, maybJ?qbe want o "make  !le!-- h  qas indi1Qnt as other people. 6 arrived. !seAawayQjoinetrroup of5%Oalk. Soo#!obed$s%3 trYQgaylyR ERforthi1fluJAfacedL Hbe busy chasing4mat?so4th a 2sheV a captur9h$icI3shea+/Cher 1vicinity&89qto cast!nsS eye =gPW1ch ~RI"i2!viFc vanit wB him)so0Awinn!im&only "set "#moE6himSdiligAavoirc at he knewKboutR gave~ qskylark`;+ved irresolutelyBQ, sig 1onc 3twi#glafurtiv45nd @QTom. 2snu71was1ing  particul0"to Amy Lawr7 Dne else. SheArp pRwnd grew1and uneasyKc=2tri1go away, but 2eet8t+2ous:1car71her"he "to a girl*as"'s%g!--)sham vivacity:Mary Austin!  A, wh&"n', #to-n?Cih!#--*Qee me"Why, no! d1? W1sit(Ix!ins' classu1go.Xw YOU!? oit's funn!n'+D you>uw2you 'QicnicU%Oh!jolly. Whol)XMy maa}5oneRcgoody;  she'll let ME com)Hieill. T#'s<!any#AbI wantQI)!ev4# nice. W7Fs itbBAQby. M r1vacBk fun! YouM r1oysAYes,tfriends to me--or3be""he:4ed Ay calked d"lo   the terr$Tstormbisland[h9P#nr PNq tree "o flinders".c";rwithin EYBfeet6lQmay I#G]rMiller.P.1And 1Sally Rogers&+usy Harper. "And Jo[Aon, g2claiof joyful"s 0 ogged for invitNs"To]1Amynturned coollyPcstill Atook# 's lips tremblAbars ca1her;Y!hi$se signsa forced gayet con cha tfJ7?!ouny 1got( !on aand hi61rand had4rher sex4"x'xGsat moodywounded pride,qll rang roused upua vindictive cast Y1gav| plaited tailsik, swhat SHE'D do arecesscontinuedBflirO jubilant self-satisfacAnd he kept )Uarto findG1lacerformance. At las AspieEsudden fa-rmercuryb#bcosilylittle bench behi/BhousT 4t a27S-booklfred Temple--and so absorbed2hey #so?Atoge Rbook, 1didby 5 ofsq+lB besides. Jealousy ran red-hveins. H1hat  2for "waqcchanceQhad o  a reconcili. He callc-r a foolhe hard names a!ofD~#cr3vexd!Am tted happily1, a'y!, 8.e!rt= Asing 3butRtongu{8!it 4He Bhear+,Aas s BwhenZexpectantly h;!onu1ammh awkward assent, (/N sFA misQd as Awise !toaBrear! ,0q and ag%#ato sea eyeball"=1ate>!clryj belp itqit maddUL q5Bough"aw;  ]Thatcher\ once suspe(`iC# lthe living. But3did59 +Ber f%/3toosas glad#Tuffer^3haded. Amy's happy pra<$inA!e.!hiac g&,o attend to; s must be doneAtimeUfleetin vain--N chirpedkT`, "Oh, hang hi%k  aget rioXher?" r those 9he said artlessly !ou" """ chool leJeShe hax3hl, t. "Any(Qboy!"p#gr3is teeth yGH1#buSaint Louis smartd20and is aristocracy! Oh, c a, I lij1youfirst dayuWqaw thisa, mistAnd I 1ick.Y just wait_ I catch you out!9%1tak  ermotionsZArash+n+r= --pumme>hI1kic&>and gouging.{you do, du0? You ho',Qthen,?learn you!" r Fthe Qflogg'as2o 15fome at noon. His L not enduByD3 of4 iAThis jHtbear noAB thea distrf'Rresum) 1 in'h bAlfredI*sy"">!no#to,Ktriumph BclouG 3she/nterest; gravi absent-mindV-s followeGthenLR; two2ree -"pr!up2ear footstep" iba fals%;i Ashe bentire({1 wisbEdn'tjit so faVsen poor Q, see!loP2notV)Ahow,E exclaiming: " aO one! look"1s!"{1pat(Oc at la99S saiddon't bo| Sme! I2carathem!"` LBearsagot up)Cwalkq2. dA dro'alongside+s-}2"buRsaid:,2awa&leave me 5e, .1! I1 Shalted, won# waZdone--forCFaid }i !snooning #hej on, crytC!mu Z?he O qwas humO egQangry!ea bguesseE Vtruth Rimplya;Gn0nXAventRspitee)I". far fromh=be lessPDBdGZ !3g~to trouble withoutS riskTAselfR's spn Cfell^ 4. HMhis opportunitZ!ly.e !onLfternoon/T?&inKr page. ,pi cwindowm R#ou5vP. She startward, now, inten28tell him;~ thankful%healed. Before s half way4, hh1sheSchang$migi 4 of Sreatm!heS@C her came scorc9R:S sham|yvz6 ge,!ondamaged i's account*"tohim forever,Ohe bargainVIX TOM 1 at:'adrearyoa_sm Qaunt R k1 sh\-Qhad b tQorrow an unprom$kmarket: "Tom, &1a n  2kind live!" "Auntie,o2aved&e?4Ryou'v ! e I-vTSerenM,ran old softy, expectingAor!o ZL :g$atn0 2hat4,!loRbehol{ s'3fouf!Jot7 2wasabtalk wt&, I don'1 $Q of a9will act  that. It makes me feel so b [-go\A andG!L l of myself never say a word." Thisa new at  %  3nes( aLH!toueCjokeBvery ingeniouse *A mear shabby !He "2heaA"no5ken71 to,#4he IBdn'tvit--butCT2Oh,i#'!k. c0your ownrishness66T Lfrom Jackson's I?2 to $urt yoo?\:ASa liem<%91n'tC to pityk* Rve usXCsorr8q!knJ8was mean,!#I J CB. I s, hones1),. Ayou &W<ibme forI"toV1you'&us™(n't got p!del!th nkfullestMi} 2wor>I7bhad asta !"atY2you ever did !it." "Inde ' 1, a%--52mayOQ stir2H!OhT Rlie--,!do[QIt on 1kesPcgs a hUFbtimes *<a; it'sH0 F. I k,1you @?X4"at)"&me2I'dLW#it Z power of sinsV72'mo}you'd run eand acted2it reasonable;n #me  %Ryou g y 22, IFgot all fulRthe idea ofa' the churchI("n'GBh2 a$Qspoil$Sotpbark back in my po 1andjA mumkW.1arkq2ark 13we'+ d 1wak8qI kissee--I doL6linS%aunt's face relax[! t.Sness %inq. "DIDqkiss meM !Ar.3 su ?did2Dq--certa|ArmRz ~Because IBcobyou laBare moa-Band "3ZBds sz Aruth.* tremor inRvoice&K9E!!bexAwithbf1 o " hTgashe raqa.!goAruin$1 ja#T c in. T0 _vher hand< erself: "No, 't dare. Poor boy, I reck(+ #ed bit's a1!leBlie,7's such aQ1romaI hopeLord--I KNOW BLord 1forr_.Qisuch goodheartd"it3"wa'#fi 1lielook." ShexCawayRttood bya|b. Twic-Dput 21takA garUand t:refrained. Once m1ven1rhis timo3forN)3Wc}:> llie--i!et%1rieR." SoG3. Aa E, J7y"flQtearsix3: "Athe Bnow,}5'|'mitted a millionl)!"X THEREAsomeAunt Polly's manner"~!BTom,; Bswep low spiriVBhim lightRhappy6. Hp&A luc YBupon O8e of Meadow Lane Dmood+determined3. W|Bc's hes$ h]; Iamighty to-day,6I'm 9 ,#2 do!4ive--pleaseB up,S you?vDgirlKRA him<dnfully( face: "b3thac. 65 TO , Mr. Thomas Sawyer.i AspeaM 2youR!to*h a!pa!onCd stunn-1 noYnkh!ce(inIrsay "WhHs, Miss S&?"j[ ?$&it%dby. So$1 no(OQin a Rrage, 03He mopedAyardf1ingObwere azBand ing how hebtrounc%if:iatly en#erd 2R a st"y remarkQ5. She hursWbreturnngry breachcomplete. It EY$to Bhot 0Rment,s#AQAwait)Q to "02in,was so im see Tom flo\injur2. I;1hadany lingl!noQbof exprAlfred %,aoffens;2lqad driv=vaway. Poor girl dOrhow faswas near. The maMr. DobbK n͢middle agean unsatisu3ambDqThe dar!ofdesires was3#be a doctorqpovertyWdecreshould be*Q highan a village q. Every he took a mystmQ book>CVk and&$1 in;{s "no6.5Breci8"R$! t& 3ookJ#lo21key#rqot an utMwas perisve a glimp[Q@Bance+T came1boy8c theor-1 Qnaturqno two 1iCalik6t way of getting5ats in Base. "as1pas!by4Ddesk% 1nea~R door t3tX)5ae lockADrecious H  glanced around;>B next instantHOs1The title-page--Professor Somebody's ANATOMY--carried no informa/mind; so s+!ga1tur s"cau!3oncaomely engravW frontis> --a human figure,qk naked !CK+dow fell Apage}3TomA ste$inAdoor&fcaught tpicture!bsnatchs"to >aR hard BSdindpeEathrustfvolumej2tur@Ce ke  out crying'1 shand vexF. ",2are1 asacan be4sneak up on a persou"wh 8y'r+." "How yH2looS$ta?" "Y$Abe a  ;wfyou're&tell on m1#ohQshall) !! 1 be whipp ICwas 3%P astampe,!fokdRBE soU i!% *2'E*. %&and you'll see! Hateful^' "!"she flungthe housd*cexplos>\:still, rather flustereC1onsBt. P+ O+  !Whi"cu&k," aCqis! Nev2xen lick! Shucks! What's a#Sing! 4ClikeS$--so thin-ski and chicken-". 4Aof c4 # Iq)t$ldV3'is lA's o@Gwaysa even a<&|tC7? Oxktask whof%3his book. Nb'll answe en he'll doUay hekoes--ask firs\An t'wOns" jiBing. Girls' facese*9yMM2bonT1'll .i  hatight - ', p1any#ou.*!coCDJ'added: "All,3"'dQto se"inQfix--!er sweat i"!")4joi0gmob of: lars outsideC[ags  !nd:ol "took in Afeel rong interests studies% #hea 1 at gc side Broom !'sX d him. ConsiL&3alltT, he 4Bpity`B$et+2all1uldo-/"HeVup no exultd!lly worth[ n  \ %Qdisco@ 6#adeHH Sfull I own matterE9a~72aft "t.64&er lethargE *"Xgood the proceeding _! 3Tom"ge(&aby denrhe spil2inkCw  >/sSG:adenialr mn4TomssupposeV A gla{Bthat%sJmergency paralyzbinvention. Good!--han inspir4! Hk"ruXbook, spring thi)"3fly5NAolutAhooke$ont" i)was lostl ,rTom onl9{ Wsted , bQ! Toorkn Sw *O  Bfacex1. Eeye sank under AgazeLv9smote even Pbnocent/Hfear>1sil%B onez count ten =kAatheV.#raH npoke: "Who  book?" nNsound. On 1havxrd a pin,1a still!continued;CAsear-4fac|  for sign uilt. "Benjamin@,!tuS?" AA. Ane  pause. "Joseph HarperD5+;I uneasinessE2and4#sethe slow tor+es TFDscant ranks of boys--c ,ed!ur3 : "Amy Lawrenc,eA shak head. "Gracie MillerQ samerYLusan! 8his)rnegativ(2waslMA was"bling fromcto fooQexcitG and a sa!op_!of/Rsitua "Rebeccazc" [Tomhf#--I!Cwhitterror] --"]R--no,4(me6b" [herA rosmappealE?XAG29lik;Da%br(3prafcis feehouted--"I:"t!}BstarperplexitH6incredible fF3Tom!"a C, toHqdismembfacultiesk wYNA for=#to-his punish"=burpris gratitudB adosCshon64himBpoorv!'st Bpay /O)1 IBed b~splendor qown actv Sb outcr7most merciless fla DMr. 2had8,badminiBalso receiSN!ce"added crueltaa comm o remain Shours0ld be dismissed-- knew who #wa k]h;his captivit3don he tedious s, either$C6bto bed, planning venge jgainst ; ;arepent5#ol4"ll^ 3for 3'jq "ry8"thV1ingHW %way, soon, to !Santer'%she fell asleep at las's latest0sdreamily inRear--, how COULDbe so nobl23XI VACATIONapproaching),nKqsevere, rjQexact1han[,i!a .!shV on "Examin" day. His rodkhis ferul8! seldom idle now--)=&st # sUpupils. Onlabigges7 young ladie}e e twenty, escaped la #' Ss wer vigorous onO!; lC he \,K6 wig, a perfectly balQshiny=#, Ronly d'B ageq T of feebleJMmuscle. }great day "ed?byranny#waEc=face; hec! H)!ur?Ie least V2comTnQnsequ Y1boy59 air dayNp8Fz)1plo1 rezy threw away noo "to'  a mischief y a$J"im\r retrib8 & rfollowe*yCful vCso s|Qmajes^| from the field bad#stBtthey co2tog_Ԝ#lag7 QdazzlaictoryBy swaign-pa."'s(BCchem3askEhelp0s v`1deldRboard Rather's f]3K$giboy ample -rto hateFTd's wifHBgo o"!sitSuntrySew da~J#1to !4fer !he O Aprep f3forQoccasAA3by 8Zty well fuddl Q boy  the domini roper condw$G on A Eveh1q"manage"Bhe n[ <9Vwaken hhurried #toB. I!fu; "im!esHc arriv0+" iewas brilli' Cdorn wreathsbfestooDfoli!xflowers! s 1ronH 2 {d platform,< Alack=#? tolerably mellow. Three rows of benches on *(!si\Rd six%1in "c m.foccupi dignitarw1own)% aparentusTg left, backh citizens,Dba spac emporary5u@"th&Blars3 !er1taktexercise ; 1of S"he"drY0"toxae statdiscomfort; gawky bigRs; snowb_ X clad in lawBmuslHKbcuousl,ir bare armsir grandmothers' ancient trinket&2 biApinkblue ribboLir hair. A>/!tas fillKnon-participa.%2. Ac"3boy!upsheepishly recia"You'd scarce expecaof my o speak in public stage," etc.--ac5ing#ai-r Vpasmodic gesturech a machine mahave u csuppos ' a trifle]aorder."he*7safely, though cruellye}3g9afine r!offHD?dp! manufactured bowqD. A u1lis$B"Mar a+Clamb]#, Qgbssion- aurtsy,yher mee,ru!wn#ShappydSawyer ӕited confid o1int)1 un hGindestruct"Give me liberty orme death" speech1furc frant4Aicult  $ia middlit. A ghastly "-fbAseiz m, his leg5ked m=  to choke. True  1nif/!ir tterly defeab a( attempt at,it died early. "The Boy StoodC" BӘa Deck"!owPAlso 3Assyrian Came Down,"!ot{eclamatory gemV"rerd,a& f^ meagre Latin class ,Qhonor prime fea41ing"in,original "compos\ 3s" a. Each-!er: !to<qedge ofr 1cle.1roal anuscript (tis dainty)F"eqCreadQlabor t to "expreDpunc!1the.r had been illuJ;on similar  Sb befor^, doubtlessir ancestoremale line F nCrusades. "F[Ahip"wone; "MbOther Days"; "ReligioHistory"; "Dream Land";qdvantagv  Culture"; "Form Political Government Comp and Contrasted"; "MelancholrFilial LovVrHeart L#sp A prevalentY!se\ca nurspetted m|B; an>asteful and opue1gusf"language"; <qtendenc dlug inRears 6 ularly prizedphrases until+ Fwornx%3outr peculiRthat ZX CmarkBmarrlahe inveterata r sermonwits crippled tail  Ae eneach andby one E m. No matter wCssubjectG Rbe, aA-rac 7$ & quirm it into some as "r AFa" rQus mi} !ul*templateAaedificG glaring insincerid"_not suffi o1assYabanish  fashion'Lit iT to-day; it never will bex,orld stands, perhaps. #]5ll our l$2herD1 do$feel obligwAclos.!iru1ithkBrmon|/aill fi >#MfrivolouT  Dgirl1dongest9XQrelenhly pious. Butis. Homely truth is unpalatable. Let u2oK"!."QXfirstNas read9one enti#1"Is (n, Life?" Pgreader can endur_'bxtractNit: "I5common wal S life(ful emot!do/ERthful9ly"1warvsome an qed scen 2fesc! Imag is busy sketchingt-tinted3Prjoy. Inû voluptuous votary}TEsees`(1amiA3 ei ng, 'the observe4allrs.' Her gracRarray7snowy robes, is whir! f"uga1maz3joyous dance;E eye is b !es rY 3 is#st gay assembly.-BdeliIf"#quickly glides by, welcome hourRs for1ntrBintoe Elysia cld, of bshe ha2 g\w fairy-li eF !ry appear kher encharvision! 3newjis more charm}aBlastfas1nds{Aenea@ais goo߁xterior,#is vanitflattery3onc 1souqw graterharshly1ar;ball-roomCqlost it4sF%Rhealttaimbitt= Qheart1she bs away1Fnvicaearthl8s cannot satisf U1ing1theHJq!" AndV#or3so D!rea buzz of g/1to 3durB $, Qwhisp4ejaf"How sweet!" 5qeloquenSo true!l had closed jc ly affli e\enthusiastic n arose a slim,X8r, whoseK07' "C" paU42comMTpillssigestioX>`a "poem." Two stanza&"it=!do+ "A MISSOURI MAIDEN'S FAREWELL TO ALABAMA-qlabama,%-bye! I love1! qBut yetLzCdo I:+1thec/1Sad1, sQought(!myR~bt doth And bqrecollesng my brhRFor IAwandH|!th[wSoods;Have roamN a;Tallapoosa's stream53blisten, *ssee's warhfloodswooed on CTide Aurora's beamA "YeM8Ame I to bear an o'er-full4`Nor blush4urnmy tearful eyeB'Tisno strange% RI nowa+pm2(to0s left I yield; Qighs.[W|sand hom2min  is StateW1TvalesL"--F!spq?fade fas (1col ag3eyex 9eoen, dear ! BturnQISee!" c Bwere4few$ho $at "tete" meKl"bu "po S very|ractory, theless. Next/ed a dark-UBxionEIfack-ey Qhaire qng ladyQ paus2 im'vwJa, assu tragic ex$n Q " m~ d, solemn tone:A VISIONN2Darbtempes 2was5 2. Aq on highA+2ingr quivered; butAdeep0"na T heavy thund "coE-qly vibr 1ar;s]rerrific n .gry mood-de cloudy chamberheaven, seebo scorQpowerXted over itsAor b,allustrFranklin! EvqisterouYwinds unanimaM"th mystic /Qblust?3as if to enhanceBir a Q wild!#. . "At5 a$A, so Rrearyv human "mymspirit sigh@eQbereof,k1'Mye#iend, my counsellorand guide--My jop Qgrief,second blis[in joy,'RQto my1. S#ve^9o. Z 3ose p!s !d Qe sun9lks of fancy's Edekromantic , a queen of beauty un#qsave by !ow_ctransc xAlovevPsGAsoft 1, iqQfaile2mak a sound,"bu1mag0thrill impartedgenial touch, ather unobtrui< Bhave away un-perceived--unse4. A1 sau res4herf1s, "ic5s e robe of December,21poi 0nd]Aelemtcwithoub0Tg5two"bresentV3Thi;(ma)1tenB}h1oundwith a 5so v all hope to non-PresbyterianN  #!okApriz%1osi~ Gwas /Qto be sfinest >81.cTmayorvillage, in deliveJ  rhe auth6 it, made a warm speech i Bhe sQby faT"b "" !heE  that Daniel Webster well be prouit. It may be rel2ng,xthe numbes in whiz4aword "4Qeous"over-fondlegxrience referras "life'sS,E$upeusual aver`1Now}m,"1 alA ver3k1putchair aside, !ed9 !udldraw a map of America #A, toa"ci geographyoupon. But he 9sad busi] !thu|&y 8SQa smod titter S!ov*=!e '/ nB wasDset =Ato r !it:sponged out2Qs and=dbm" he only dted themQE!evn E&ApronGMd$)$hi'>J his worky(if@PBnot uput dowQmirthBfelt"al B wer #en him; he i| was succeedingFyt;\5uit even6ly increased.Q igarret above, pieta scuttle 1his|,@$is- came a cat,nended a$ q haunch a string;1had&!g V 4PEjaws=qrom mewDslowly de#Q curvwAward-Aclaw,swung down-qintangi!!irRxKahigher2 --the cawb six i"absorbed teacher's head--down, "$owshe grabbu2wigNher despEclaws, cluS4iw1nat7u ", " i} Yr trophy7" ibposses 1And0Qthe ldid blaze abroadx's bald pate--fo 3, boy had GILDED it! That broke upEmeet3boyavenged. Vacn  3com NOTE:--The'+"a" quotaS tpter are taken%out alteriBfrom avolumeqtled "P7and Poetry, Western Lady"--yj1exa%0݇Qecise  *agirl pQhenceEAmuch9 Aappi"anYcere imUs be. CHAPTER XXII TOM joew order of CadetTemperance, r attracN  1howw@ "regalia." H3misRbstai^Q smok9!ch,Aprof as longSArema1a m OQ he fn thing--nam&a1 noBdo a+" iZasurestO  3 body wanA!goVQvery Pv$b soon W!rm] q# aQc to drc)q swear;Rgrew %so:!nor jL bof a c6to display i8red sash kept himwithdrawing from . Fourth of JulT61;Qon gaat up --iC"A2worrshackle7 1y-ehours--and fix0Bhope? old Judge Frazer, justic)Beacewas appares'"bei/ Ta big*funeral,  o9an official. Du( ree days[;Bdeep+rcerned 62the' d Qungry1newit. Sometimese: "ra$--#heRventuj1get Chis practiseO.R-glasrmost discourag yJbluctuabAt las'as ~Amend then convaltQwas disgust9'qnd felt !ns&injury, too !haQsigna,tat onceq"at#Bsuffc relapBdiedrresolve kP! trust a mand@T+Cpara a style calculated to killClate^Benvy$1fre[m@!reAsome!a La swears Ors surpr 1dids7Qsimpl| hga, tookBaway Charm  GDqly wondQto fiIacoveted vGwas beginning -4&ng Cheav}M ands. He attempt$BiaryPLed dso he abandonedT?!rsanegro minstrell!s cto tow aa sensand Joe Harper+-up a band of e-r were happm1twonGloriousbwas in a failureWAit rFT&, encx ! i!seI-e&t! aeatestBAin tabrld (aT!/ed), Mr. Bento actual Uniteds Senator, prov overwhelYQdisapXBment Gwenty-five feoqgh, nor +Q anyw;neighborhoosrA circu qboys pl"J @#  in tentsof rag carpetAadmi ,@2pinOB;two for girls#ens. A phrenologisa mesmerizerI3wen1lef H8_Udrear "evf>=BwereUeCAand-'(1es,jDthey,A fews6so $(Bonly2 the aching voids between acae hard= Thatcher1gon}bher Co_ ainopleat!Bher ks } bm1sidaElifeP.dreadful secre*athe mu  chronic miseryєaR canc^ q permanX* 2aingnmeasles. wo long weekl Mprisoner, dea}1andw"Aings1wasQ ill,;O !no3. W2cgot up aU3andafeebly{-$"!achange3com./$"nd2 cr.rb* "revival/0 had "got *1n,"{Bdult"thyLbbhopingsst hope!1e s$ of one blesOQinful"- A cro(Ahim Qwhere9Qstudy Testament4Rsadly9- "deng spectacl_  Ben RogersKvhim visi6 #ooca baskBractE!huup Jim Hollis B calLs]KK{2ous0ing of hisA 2 as DningSboy he encounti!ad2nother tfV Aon; 1hend ion, he flew for refuge a) F bosom of Huckleberry Fin! bwas re+Scriptural quotjirw_ re crept!an!be"2lizat he alXA allw!st4and .%Bnv=&st:Adrivain, awful clap ]/blinding she81cov!the bedclothe"ai! a horrosuspensehis doom; not the shadow of a doub  is hubbub was 1himrSdQtlm!thtgbearanowers aboveMQextremitp Bendu2h.i the result have seeme1him!st[ApompiRammunp Ca bu3a b(of artille+;b incongruou' E3 up+n'2 asrto knoc+ Bturf! insect likeB. Bbtempest spent itPcand diQout accomplis9its objectc boy's bimpulsgratefulreform. His +EwaitC"re>bbe anyDsK"dadoctors were back;w4hadd 3 heU!baO!is2!%an})ge . ehardly4D1spa#"reing how loneWQstate companionlesAforl@oPdrifted listless Btree+p41 acuqas judg a juvenile courr1cat her victim, a bird and Huckup an alley e@ a stolen melon. Poor lads! they--tTom--ha7E SI ATkhe sleepy atmospStirrevigorously:3e trial4k!betAsorbWtopic ofe talk immediately xyBaway$itArefeQO ; sent a shudd his heartroubled consc i[5LQpersu2himBthes#rkr!pu tqas "feelers";1seen-Rld beaqof knowz n -  Fnot be comforc2ae mids, agossip1kep(rshiver e"Hu##a 1pla+!a Sm. Itb QreliedbunsealAonguwhile; to divide)iburden[l87r. MoreoqBhe w/to assur-m discreet. "Huck,1you" told anybodh--that?" "'Bout wYou know." "Oh--'course IZ"n'Never a wordLAsoli2Qword,|Qelp mat makes you ask:qWell, I\ aafeardbVWhy, ?B, wen't be aliv$1dayQ #go out. YOUt2TomWmore A. AfnQ pausnQ5n'tL1get!to\,"Q they"Ge[!? !if half-breed deviLzF me z) gO$y ain't no diMn>Uthat's all(!&n.twe're safe %   we keep mum. But let's swi-1gai1ywa'!Qsurer}I'm agreeS# ry swore? , solemniti"%S talk,yQ? I'vBrd al " "Talk? Pit's just Muff Potter, $the timepReps mg!t,tant, so'sd7A'ersT{"ju9+Q samebgo on p reckon he's a goner. Don'gfeel sorhBhim,AimesqMost always-- *raccount thfA don %ur. Just fis 4 B, toSoney drunk onfSloafsFiderable; l-!we2do |MBwaysu&of us--pr s <+Blike@!ki?PE--heBahalf aB, onre Krn't enough4 2two"lo eEQby me?sqof luck!meBkite"me,knitted hooks%o my line. I wish w"geot$u" "My!&"n')W. And besides, 'tn't do any=;'d ketch{ AgaincYes--s>aI hate;ear 'em abus2 so the dickens6"he/fI do tooL)I[2say&toodiest i ip n !!an ver hung befoO1Yes=y+%7~Qif heK)1frery'd lyn^A'"it'" The boys]"aQtalk,Csit broum1. A# twilight drew #ey themselves ha6 * leAisol80Ejailz=an undefinp8d; z-m!clow;!irAicul+T But =eno angels or fairies i! tYss captiveAboys#\!ey~Qoften%!-- AcellYring andk qtobaccobmatche-;n gBfloo% rno guar"isl2tud /Qgifts Q smott!irL "s --it cut deep,lx@ 2cowASand t!ou2the Sdegreaid: "You've beenQy goo1me,--better'nw 1elsthis town1I d+forget it,Q. Oft1sayrmyself,I, 'I us\AmendMCoys'.Bings:Ashowfishin' place01befD4Bat I1 2nowjcve allaB oldthe's in92TomIQHuck b--THEYP)" '5-!them.' Well, "eBwful$"--and crazy  #--w athe on*1y I!un2 itnow I go:Qswingxiit's right. RighABEST, b--hope  we won't4at.! make YOUl dbad; yCed mh<say, is,p2YOUG !--m 3youSStandR er furder west--soSit; it'smBAee fw"lya&C5 Aa muP Rtf1non$ ae heregyourn. Gooda w"--"ly. Git up on Hother's backYl touch 'em. = Qit. S}`qhands--}1'lln1 th-Abars mine's too big. LittlBweak--buyQ 3lpel ^ 2shelp hi*.iy"."!home mis CnBream#full of se next day{e fter, he rt-room, dra@. irresist`,(1in,tforcing( to stayF| 1hav (1qy studi~a avoidpL"ch4FKTkelet !atdD Now,7#A us t** b--telleown waEskipp,h+sbegan--}AinglRfirst"as"rmtQubjec f  easily;ln! sdceased buP own voice;&ixAhim;qed lipsbEBhung!higads, ta]\no note of"d, rapt1ghaCR!on 1ale#q straina pent emoq q climax 5boyJ "!asdoctor fetcheETboard+"ag fell,@Cjump-P?1andCrash! Quick$Cighte}%Cspra|aa, torem1alloAsers gone! CHAPTER XXIV TOM1a gring hero onc>e>%pe2old-Aenvyhbng. HiR eveninto immortal prin;* paper magnyhat believe be Presid Byet,  * . As usualfickle, unreask9s % to its bosomBfond3 Alavi@XRas itb} !&Bsort of conducO&o"'s"t;fIp'#noJto find faulQh it.!'sv: of splendor and exul2 J2hiss were s?.  infeste=s Ddoomz deye. H!y aUcould', 1boy"tir abroadafall. Poor HuckiH 1samI"wrrand terror "ad*p7!ho!or* Awyer Qgreat V 6and4sor01hara y Jumight ldnotwithsta_A's f!sa!im+QZyq N.#4afellowDhe attornepromise secrecyqwhat of? Since }Sharasy![2 Bdrivp%c c'&Rse bywaad2lip ^been sealnsdismaler;most formidab=aoaths,a's conchuman race`well-nigh obliteratcXDaily2'"1madA gla\0Rpoken%!Vly he wish%1up " c. Hal"imZS nT 3be dVa othercY@ >+ He felt sure heMbdraw a+again until1man92dea,y@ Rewardselvcountryrscoured"no2 Jofound. Oose omniscind awe-inspi^marvels, a detective,1"upoSt. Louis, mo"ar@S$shhead, looksort of astouQ succ  3sZb craft!lyu=!ev1at ' say, he " a clew."n you can't hang a "clew" for#soZoEgot ]qnd gone8. s-63ure3was,. R slowdrifted obleft b Cit a"ly qened we"of apprehenV THERE comesVqrightly{1tru+26_)has a rag1sirrgo someqand digRV}1sur3is 9suddenlyU3one{e sallied+R Joe ~Bfailed of8. Next h<;!a %gwTtumbl@FI2FinRed-Handed." qanswer.m3 private-#op$e matter to >{kbtially`*Awill>  o take a hanwy enterpri RferedBtainnd required no capital a&u superabundanc)Rtime r rmoney. 'll we dig?" sair. "Oh,5.Uq." "Wh%D i[ e?" "No, inde  /a. It's-"in=y bicular5 --/ on islands,Atime@ rotten chests!envaa limbSn old@Bree,0c;falls at 1 mo aQfloor) ba'nted0Who hides iWhy, robbers, K urse--who'0? Sunday-school sup'rintendentsXIknow. If 'twas mine I Cide it; I'd9!nd1 a _&1o;1 I.l"do!XUf and leave it "ADon'y0Cy moA!No y)k,w$B#qy generUQforgeT 0q, or elJey die. Anyway, it  t 1a l "im gets rusty;!by- !bycbody finds<yx  Xtells howAthe 2--a  o be ciphCovera week because it'stBsign hy'roglyphicjaHyro--H"--picture>qthings,]Qknow,1seeTmean u1Hav1d got o"emas, Tom|!No0Well then,: Afind #61wan^ esbury itas or on a"ea t0Eat'sAsticTout. *!'v ed Jackson's I}iwe can tQagain/R timeSy' -1 up Still-House branch,=qlots of-StreesnAload1'emI#ll Htalk! NoTA81ichJ1forG _1'emI1Tom/6#llll summerf 2? SI#a brass po-a hundred dollar,"llAgray2 fudi'monds. HowaHuck's eyes gX1!bubPlenty4qme. Jus R gimmM Iand &noT" "AT8~QI betI:k!foff onDb Some 'Qth tw3Rapiec"#reWaany, hn2's <six bits oHvaNo! Is1 soCert'nly--anybody'llyou so. Hever seen on5E!No7I!nOh, kingsA sla|$S_"no5$I reckon@i!if3wasto Europ!'d.Qa rafr'em hopGr b" "Do1hopBHop?_-u grannylN2say>1did CShucks, IJ1ean'd SEE 'em--not V Yto hop for?--but IRQ 2seeV3scal &, 28$ aBLike!ol]pbacked Richar* 2? W_2his,Q nameRHe di'ny"1. K!but a givenIN!Bu.yiy like it-R 54D,Xa niggeroRsay--t Eyou  1irsn< S'pose we tacklj ) hill t'8side ofjrI'm agreea<got a crippled pickea shovel1setwir three-TtrampV*"hoCrpantingE]/7T downH2shaa neighbo!elq#- smoke. "ISthis, Tom. "So do I 2SayP$weCtreaF#re 1do 0your sha ZBI'll3pie5MU 3oda2day1Rgo toV&fSlong.0aQa gayrnbsn S sa"tod h AlivebM1!byy#OhP |any use. PapY CcomemFo thish-ybwQR2 daR\5as clawiIurry up,ZIjhe'd clea3out pretty quick.tn$buy a new drumua sure-'Whearts jum8ao hear[strike upoFyb"$#ed3dis <+Aa str a chunk. AtDE5Tomv -rxrbut we CAN'T b&. We spottv)AshadX2bo a doI$tF1the6re';"tthat?".wpAguesoyH Menough i1too5> or too earlAHuck 7ped .tat's it9Ahe. !'sDveryLLFaone upBcan'| 2thea1sidL$is` ',8C%Y#ofy%> ;2 a-fluttY&Zbafeel aP$'s!mNZ;'AfearTCturn)%uz'V front a-<Qa cha I been creeXAll o1ever since I DBI've=smuch soAHuck6y mN put in a de&# why bury. e, to lookGLordy!" "Yey3 7If !toRPpeople. A h1s b!toDintoQ'em, "L" "r2stiRMup, eitherjf2onet! 2.Akull !ay" DCTom!2wfu"it "is^U3a b,QSay, <lp~ d"trARs els?%,  $weY 5bconsid|/;dJ:The%. G  4s.c 're a dern sight worse'n  D lVN,lyocome slid rshroud,nUnoticApeep shoulder3f a:%!1griqir teet"Ra does. I Bn't qsuch a NPa--nobody 1Kt2but, dUtraveU 1 heu_! 1But <{#goCYthat fA norg 4v emostly M J#go5 Qa manaen mur, anyway | E"erODseen5 # except b--justLBblue'Rs sli& q window regular Gsl![Xflick5acan beu4h!cl~Qehind Irs to reason. Be1any2butAs us<pEDcomebP`f, so wl!us3our?7a<W$ df^#I it's tak@A y(qstartedffhy) TAmidd- oonlit valley bel[em stoodR""M&!, 4ly Ra, its S=s*ago, rank weeds she very doorstep chimney crQ)qto ruinq  -sashes vacant, a corneraroof c/!in1 boz*, half expectAo se. flit pas%Qindow n1ing 14 as befitte8 b:m y struck far of\Rthe rO Qe haua wide berth A*qway hom. r,Boods6 earward si_j Hill.4VI ABOUT noo$ 2 daNgG4tre=Ahad ffN"ir$Q. Tom impatien#go ;( Qwas mAablyc $alC%ly Lookyhere1 dowday it isbmentally ran%$V3eekhen quickly liftedG# a2led 3m--WI0once though,iE\un kKrR it pE conto m` a Fridap   can't be too careful8 A 'a'  1an scrape, :ing2Won a z MIGHT! Better say we WOULD!"'slucky days= $"ny BknowbP1YOUf2the:f 1it ;AHuckRn1said I was, did I? AndT all,.O_d a rotten bad3msdreampt1rat"No! Sure sign ofB F"ey{s'NotCgood% WL d*1ign  G,-2. A-_Udo is  by shark Zi Cdroph}5to-{ wplay. DuRobin Hg Who'sqWhy, he greatest m"evrEngland:the best. HGca robb Cracky, I wisht. Who did he robOnly sheriffs bbishop Crich2 RkingsR=9Q But naver bolloved 'em1divQ!upx 'em perfectly squa-h2'a'r Sa bri I 3youW[!Oh9qhe noblaaOT"R was.!men now, I can1youN R lick-can in ,a one he4iedD Ahim;NhEAtake!yew bow and plug a ten-cent piece"c, a mia3s a YEW bowIM /t7w, of cours.d if he hi| Bdime`Aedgepould set aand cr(2d cOB'll play!--nobby fun.AlearQF m% t\dfternoon, nowmy1casQ aa year=2eye#up qnd passs remark .1orr+prospect9Iibere. A5suna sink sey tookEway 5 aathwar| cshadowN6e,soon were buriAITsight8H(- Y On Saturday, shortlyV^  R bHnT4hadd&Ua chaCshaddEGir last hole*;]great hopeaGmere<oIqcases wz "pet#ad )(upafter getting down~qx inchep Y-O an some d1! aqand turZJt a single th{bshovel' Afail !isO a, howesDc+ BwentTfeeling jvshad notEds fortunehad fulfillep requirements <%of<71-hu(6. Rreach T 1{ so weirPv grislyBsile at reign^Rthe bAsun,{ bSdepre$Cbelines!dem"io he place[(3fra,# aHM Qventu7 ty creptD#do?!mbp_VT aw a weed-grown, floorless room, unplastx;aan anc CfireVs, a ruinous staircaser#er%ud hung E#nd abandoned cobwebsn#tl73ed,MC ened puls,s, ears ale\BcatcYDXRsoundAmuscAenseQready instant retreat. In a+Nfamiliarity modTReir f Qy gavm,Qtical#iYsted examinC, rather admi+[bown boƑ Qwonde"at it, too. Nexk1up-+isMqlike cu]!goqdaring ; =! abe but I&!--L,=Sto a 02and scent. Up\NBame 53qcay. InpJoC a@d mystery"qa fraud1 inCr courag4xwAH4n hM Lo go down and begin#1hen}BSh!" CTom. is it?" Huck, blanchingrG!..re!... HearDa "Yes:#y!(!run!" "Keep1! D you budge! 're coming p! tcr 1doo #stC./Rfloorto knot-hole!th bushy white whiskers; long hair flowed from u!hiRbrero dGe green gogglesec7'Cn, " Xa low voice; @#sa gr$Q, facAback{sthe wal12the=er continued ^ s. His mann\less guarF{0words more distincFLproceeded: Q, "I'!it oB 5andi,& dangerouDR!" grTthe "e dumb"A--to#svast su?boys. "Milksop+2his~ 2gasQquakeEwas O!'s +<!swag we'veAleftr--leave it( &'v !'B. No2!o i.f!wet south. SixfCmDfift5Qver'sDto carry%eWell--#r EKG m No--but I'd say(j2 us#doe9:Alook; it may5(" bTI,6!e  J!! ; accidentsi !B; 'tY$inu2ver9;i6f%l[+qh+qit deepDGood idea !thrRqwho walv Qcrossroom, knelt#, gv"qhearth-/atook o9A1bag Q jing?qleasantLe subtracW9Qrom i0nڼcthirty#Dcs for G"as+6for8e latter, #s <,(Q8owie-knifeUforgo<,bmiserig$an@. With gloaq ,A mov7q. Luck!f splendor of Qs bey%sll imag+!qETmoney/Ato mcalf a dozen rich! H sd1theaiest a !esrNDabother uncertainty as to w44to }2y nudged each ;--eloquent)r easilyRstood simply meant--"Oh,you glad NOW we'rbB!" mVTknife%Uupon . "Hello!" C he.?2sai4Calf-e"plank--no, it'sy!x,4Rlieve1--b`!w 2see<Kfor. Never mind, qbroke a3 [2hisWbin and i p3ManDU  rhandful8$ingold. Thejb abovebas excW cmselveY!as delighted.NwRquick4Bv$ban oldM24over amongst >#)5sid"a--I sa5#a 74agohaX|iaBoys'5andn X1the$b, look5ly, shookUA mut4 toM3  5use5Abox aoon un$edXA not *R larg!#wad2bou:Bbeen+dstrong5the slow>s+Qinjur c|5the" ain bliss3. "PardrthousanL Shere,p. "'Twas alwaysX Murrel's gangCQbe aruone summer,".stranger observ53; "vs looksPHI2 sa* sNow you $neRjob." Ʉfrowned. Se: "You# me. Leasx&k"lla A. 'T@ robbery alv\ REVENGE!"a wicked R flameBhis GR"I'llyour helpRBWhen finishednn Texas. Go homH<NT#anK3kidM1b %0$Sell--Bqsay so;ew  w dthis-- k Yes. [Ravishing overhead.] NO!- e great Sachem, no! [Prof[distress;1I'd---at least4 \Smean =but Tom, si%1nlyhad testifiSVery,mPDfortBAalond! Compan!be a palpCimpr5, h . CHAPTER XXVIId adventur4"ayily torme RTom's5s . Four times hE!s !atSFnd f6ait was:rhingnes5igers as  !hi wakeful4bEfAt bae hard realit'Fhis 1. AClay |AmornO(1ecaincidentsJND, he noticed%~dseemedL4ly Hand far away--someD ;3had#tworld, MfAlong " b3 :n i5him u itselfa$3onetrong argumentW Bavorj is idea--namely,sc quantDcoin2fAoo vkAreal Qhad nTseen !as in one massShe wa1all "ag"st in life,&Aimag= call re\Os7!s""  " were mere fanciful formCaspeech Zno such sumP qlly exiEpposed forf w"so= a sum as a 6z be found in actualy one's Ԁ" Ianotion treasurbeen analyze.yxy=Ansis 'a areal dgand a bushel of vague,id, ungras{`A. BR^K"en Ssharp!clearer (Vattri !inTAthem?h so he"`1himk1leae(impressi6q#no2a dream, a )isQsweptg:~ snatch a hurried breakfast!go2fin.ik e gunwalB a flatboat, listlessly dang+2t !ee3"atbs2ingamelancholy. TomC&2letslead up@1 su e did not do its1be 2q `o!xEGelloylf." Silence ab-om, if we'd 'a'Y 4lam' a"Vtree,0!go D. Oh$! 1fulF $,Somehow I most'x. Dog'd if I ." "What!K%Oh6ing ).U"en"QDream! Iymss hadn' down you8)1how  Q!xhf%Deams|2allpL#--()[tch-eyedZ 1sh l4 gom*!thR 'em--rot himm1No,_a. FIND! T /1Tom#llXhim. A fellerq ~3one Q for a pile-- a2's lost. I'd feel1ry shakysee him, anyw+qso'd I;2I'd,2 2z#'Aut--&s < 1--y95N'Bthat2&7/!ouAit. !dofreckonB"oQtoo d62Say--maybe inRs$'"Goody!... No, rRain'tfv5, is one-hort!wn3 y=#noq,@so. LemmkKS Here r room-- QavernQ know;Qtrick s3two?s. We cansout qui You stay hereU,zI come." DAoff c1caracHuck's~rbpublic#s"as G!an hour& EbestNo. 2 had# a young lawyutill so-. In the l&astentaa housek! 2#a 5 -keeper'sr2son  kept lock$)ll3tim82he 4sawq go int W!or}(A exct;Ymny particular reason> x1gs;Er Come ' BsityD8bfeeble98wVe6r by ent"Ding % ae ideaC"roG "ha'nted"e  r a  !re[) BwhatOYD'Kvery No. 2"$af&/Qit isE$. ?C youqQto doNE_(ngE2tell yous$do "at" icomes out J1los )ey e!a3?Qtrap Jbrick stor"`qet holdmdoor-keys1nip-of auntie'=,Bdark'"goS ry 'em. And mi,n, because he E#!to/|2tow 4spy 3)N#a "to 6youjyou just fGQ him;_Rif he 2 go >"1laca"LordyI !fovhim by myself+hsit'll b%", ov"He\Dn't B youRdid, b4he'A any' "ifU8n. 3o-- 1YouE<cBdark!. 3'a' out he coul f< #ber,&DOCs so{1; IP, by jingoesw"'re TALKING! Don'7|bweakenaI won' sI THAT#1TomQILy hung a e neighborhooo{nine, one watch52he PAat a ="K1thePdoor. NoF"orN Rit; n%aresembp2the 5ard=3te#Th promise]`fair one; sowent home`rat if adWAegre,Adark1cami AcomeT"maowupon he would slipthe keysE aclear,XmAclos2s(Tretiryan empty sugar hogs0welve. Tuesdac/&amE. Also Wedn/Thursday bbetter8"in$.sf0aunt's old tin lant 6 Qtoweldrlindfol 1ithh? <1 inp-'s began. A WB mid#v!upB2its1s ( !s 'd"s)!pu)*%02had Eseen+Dhad / }b. EverrV,3iou"Bblac5of SreignA peruQstill#waVbruptedby occasional/)#ofAt th<ggs1liti n~,=tl: Bowelx&wo2rs D A glokw>y.stood sentryrTom fel3wayZTjz  !of8ing anxiety$weighed iga(a mountainh$%sh?ra flashH$ C--it.f"en!buZO6ell- alive yet. I4s1Tomdisappeared. Surely"us Ded; &A was7`+!rtQaburst #D'Band ,G'1 In4auneasi L rdrawing-DrK a; fear rdreadful ] $/1ari1pecm0some catastroph 2Atake 1792not&to,]$heUable to inhale it(imbleful- TK$ar Athe beating. S1Tn"ofh%tEby him: "Run!"he; "runAyourt!" He needn',Q repe drit; onc ;#mairty or forty miles,RrepetCwas -3. Tj!tor  "J1sheʁerted sl#1er- e lower en/the villagxa By goin its shelter]Sstorm xrain poubwn. AsxJ] 0AHuckwas awful! I t3twob keys, aas sofI R; butsto make of racket=rdly get myRso scBT1bn't tuVck, either. Well,?!ou.Ticingkboing, I tookcthe kn!A ope@e !H&E@R! I h1in,!sh5fP, GREAT CAESAR'S GHOST What!--whatQ'seo1steFonto's hand!" "NoAYes!A#Ras ly s%asleep oARfloor4?Aold 5"ey his arms sprea[d1did Tdo? D0Bke u91 budged. Drunk, 2. IjUgrabbBAowel F+usIX'a' thoughS33tIx. My aunmby sick3alost iM A"Say,1box!diw@o_00.-}44 /8 .:ea bott|Sdtin cu 6 by(!; I saw two barrelslots moreUs S.u2now'!Fmatt'3at R roomTr!it mG o1ALLaTemperTYs have got aeC, hepd[3Who8u? But sAnow'Rightyt 1timg&ifqb's dru""Ithat! YouiQshuddIEno--"nom5And-B not3. O1  alongsidf, :u'< three, h  -&@oaTp*for reflectioZ+ S:38oky82les#tr 1 an#e}wwcR Joe'5'reQscaryhw eSnight# bp"su2 go  "orbwe'll Gbox quicker'n nJV<the wholBlongj%ido it 1too3you"<Ather4$"A= bill. A.v!to{"tr0Hooper Street a block EmaowWRthrow:bgravel=e0 3bfetch 1T"Agre01goo'Awhea*B"Now,  T's ov*bgo hom2gin" , %Qcoupl" +2"go61will youe!I TJ]t5#Ryear! Ev "damF&st2allIawooo[nǑ' hayloftZTlets nqso does pap's nigger man, Uncle JKA toteex  B wheahe wan`" t}JA any I ask him QzQves mGiBsomeBto eWhe can spare  !ik\r, becuzP'[" aL Bwas 3;him. SometimeQset rdeat WITH/1But  A body'sv!thwhen he' sr: 1n'tBas a steadyd-wXK,q"le.?A com hAS's up2'!, Cskip, @*."*IX THE firsR1earQ4QFridan glad piecnews --Judge ThG's familyL*7- before. Both 9o &Bsunksecondary import, and Beckyv the chiefCboy'="esSsaw h%tad an exhausi&1pla "hi-spy"c"gullyu!" $da crow2ir S-mate1day^scomplet[DRcrownsa peculi9satisfactory way:!ea[Aer mK to appointnext day foUlong-z1and\-delayed picnicfshe consentechild'>boundless;,Xore moderat.R invi*slAsent^s sunsettraightwayA AfolkLn4Ra fevapreparu(bpleasu6qanticip6's q enable90" ap dntil aQlate houh%%:vt!ofd1ingO4's s!an(ahaving to astonish1nickers with,2; b\3was$"oiNo signal c'vC. Mqcame, eBallyby ten or eleven o'cQ giddq rollic!c;/!ga  4_s -ro.UQustomelderly peop2 ma#;p$*!ce2ren@sed safe R unde9AwingAa feh"1dieeAe# gentlemeqtwenty-  sreabout1oldqm ferryboatQchart;t7! g<.flJ9r main sg Cladeprovision-baskets. Sid1andato mis/ fun; Mary remain!hovBtainT9nTMrs. 6 "tob, was:d7?oBback lIaPerhap H Astay   eRgirlslive neah"-lQ,c !y aSusy H,q, mamma+AVeryO. And mind !bey%yourself3bmR9T." P,"trQalong` 1: "Say-- 2you8 ntQ'Stead 3Joe2's *SclimbE!up AhillDstop` Widow Douglas'. She'll ice-cream! SsoJ"os Ai!--|+Aload8"it4sH#be t&!usg"Oh[ K/2un!?=nC%ed3But2illA say How'll shH6Rknow?^Q girl!edidea over a1r reluctantly(it's wrongK3--"shucks! Youg ! k REo!'sQharm?_sN1nts[!hao '"Bsafe4I b 1'a'" 6if IAwoulT splendid hos"itaa tempP 2baiand Tom's persuas02car+S q. So it>u Qay no? anybody?t 's programme. i1 itv(!rrJM)^7+''XAgiveZ ;took a deaV%s!ofAs. S"het&I"tolmfun atAnd why sh1he 5!it: h"qsoned--/c! W, so Ti2mor l^>o-night? T6QrA eveV 4out6theM1, boy-lik2 determined to yiel +5Aclin Tnot a{9t Qk of 0ox of money5  day. ThreeVbelow >EboatayAmouta woody hh& 1ied|3The* swarmed ashoreAorest distancescraggy hxs echoed farQshoutDand 95theØ1get!ho " Egone=y mry-and-barovers Sggledao camp31ifi th responsible appetitesVt destrucHJ" "L>2 feoC!reBFFing ( 2resbchat i2shaspreading oaks. BAsomef[ed: "Who' the cave?" Ever!wa5$. b of ca \Bproc   a general scamperhT+x0' hillside--an opshaped likO A. Its mass׎2ake&& !unbarred. WK small chamberM Aly a2ice" w0by Natur% solid limeston w 1a c& rweat. I1romJmysterious!t %erdeep gloom/look out upr!grKC'"sh--""un?1O6!ve!UDly wore offdQrompiDL2ganjIcment al]  Frush2ownit; a struggugallant~f1ed,62ursoon kn)/or blownlad clamop and a new chaseB3allQ havex(ndlrocession (!fiv(eep descenW4ain avenue,p!fl0qing ranGOVs dimly reveaYf!llqrock al5t1ir er of jun sixty feet overhead. Thisnot more than "en?Cwide?&nSstepsy%ill narr crevices bran@!from it on--for McDougal's`Rbut a%D7imepqraft.  blready.w's went gliW# p a wharfCAhear!noise on board(   C3as $usually are whornearly cto dea.AwondnQwhat 1de:Rstop w<<dropped her88'put his atten *rusiness`Bclou dark. Ten eKf vehicles ceased, sca) abegan ,#nk !ll 2foot-passengerkp |)1 be$itt)l <2lef| = qwatcher qthe silae ghosts. E  Swere /;/ Qevery$A$it1see weary long 2:b)u3},ed. His faith wasB4bing. Wvy use? "reA Whyk)C? AFfell~"ea;&l U instantQ Bdoord*^Tprangqx8$ Ti two men br,%onW- z Runder!rm0 ]Cbox! So sto remoE.Bcall Tom now?Ibe absurd--1en  get awayq #$anc7EDNo, c stick1!ire!foAthem<k5truP for security^discoverQcommuG3Rmself#*!ut Eglidg 2beh!e men, cat-like,qbare fe~!ll_E the8*5far&!noqbe invi  y |GP q blocks0n^ left upJ2ss-8y?"E,!qcame to% !pa}1Cardiff Hill;5Ctookfthe old Welshman's Whalf-m(hi-1hes!ng Qclimbward. Good, 5*VSdury itold quarryC) "stfa &-3on,b summixy plung.T7 qn I fouqoing to sneeze. It wH meanest kind of luck! I tro keep it backCno use --'twas bj!toPait did!i*Q leadB my T rais3theQ starhose scoundrels a-rustleget oupath, I sung out, 'Fir!!'cblazed6d place5he aqwas. So"1. B<"ey"2offrjiffy, svillainwe after[ ,uQroughqwoods. I judge we n4atouche|myd a shot apiece y4 their bullets whizzed bydo us any harm. AkRwe loVB sou$Twe quit chasD"ntand stirred constablesgot a posse togetherHoff to guar river bank&bit is Eaheriff1a g |7S beat}Ms}them pres} . I wish wzA somNose rascals2H bhelp adeal. ButBcoulaee whadrlike, i!Adarkppose?" "Oh yes; I sawk$-tAfollc AthemSplendid! D!be8"--d AOne' 1 olfdumb Spaniat's ben ar>here once or twiceqt'othermean-lookQragged--" "TPo men! Happeng Dthem1R backqe widowC e  qy slunkR. OffAyou,  fA--ge to-morrow Y  J 2dep!at _Aleavhe room Huck  exclaimed:!, re don'tANYbody it Fblow1R! Oh, e2Allr say it gyou ought to havecredit of byou diOh no, no! S!" W young menhg x A saiT- I3why1you- it known?  not explain,Q thanK"ay Rhe al 0too muchy "on3 "me`+1manU Manything against hime whole world--uld be kill knowingasure.  promised secrecy3morW1How1youq to fol hese fellowsa? Were}  Ding &usea!t while he framed a duly cautious reply. Then hec y u, I'm aS lot,--least yrsays soIdsee nopRin it@sometimes I can't=much, on #1ink] !it}1tryo strike a new way of do7"ay u ' I,nAo I  r up-street '1mida, a-tu~2 itxvyD 1 goAthatshackly brick store byTemperance Tavern, I3 Red upO"!an4".  Qalongo"s ftwo chaps slip %lose by me,;1unddreir arm'I reckonV y'd stole it. OneAa-sm3S one d al sstopped.\ !meigars lit upBfaceIog Cig o?theeA, bywhite whiskerQ Bch o-#eye rustyo a." "CmDragst #?" This staggqfor a momentAknow  somehow i#msCIQ "on2you<Fb'em--y eiO"toup--they sneaked so. I doggTAwiddCstilnAstooBthe Und he aFvone begK5theX swear he'd sp;rr looks?!asdll2two What! The DEAF AND DUMB1all had maderrible mistake! H6qhis besA1keeE2man1getHsthe fai+i1 whR might bQ1yettongue seemed determi him into trouble in spitball heFr do. He several efforts to creepof his scrape, but -'dS!upumh["bl 4. P\ L ,# be afrai!me 6 hurt a hair obqr head v3. No--I'd protec !.  z is not;"leNout intend+ D1cov 2now|  Uthat  dark. Now trust me--tell mI Cit i"3 -- betray you. Alookit!ho5Eeyesoan bentKA andpiar: "'Ta--it's Injun Joz ) almost jumped chair. In%  1ll ,pe qyou tal#Anotc:"eaHB slinoses I judge(your own embellishment 3men3tak1sorYrrevenge "an #! a different matter al2." DuringB1theVAc Y  t{s trwhich h1onsSdone,_ to bed,a lanter qexamine,)its vicinity for marks of blood11y fMnv ut captured a bulky bundle of-- "Of WHAT?" IfqBwordBbeenn 3hey leaped withcqre stun0BnessAblanlips. His Astar1ide3Qreath=ended--wao!fo8q answer )tarted--stLin return--1seconds--fivAten nd i<f burglar's tools. Why,!'sAbMATTERDyou?4Csank,1pang6 deeply, unutterably grateful eyed him gravely, curiously(NYes,1appto relieveoB Butcdid gi# urn? WhatYOU expecBwe'da \ja inqui1eye* for material$ a plausib<cswer-- suggesteR?elf|!boadeeper --a senseless1y o~dKRno tiRweighio at a venture he --feebly: " -school books, maybe." Poor>%too distress ma  laughed loud1joy6t, shookadetail[his anatomy1heacBfoot%! b;(at such armoney in a-pocket, ait cut octor's bill likeqAadde1old,y2re Zaand ja5Byou awell a bit--no wo 8a little f #of8 cbalancyou'll comejsit. ResBleep6Afetcall right_#brritat1 heSaBgoos!ed{! a)!ic%es4forHQdroppbe ideaarcel bt2AvernQreasu a talk XW ahad on &"nod however "ha82n't!soFt%a @Amuch:elf-possessionuo [! hat gladh. Shad hntSnow h9beyond all qu6snot THE,!so mind was at rkexceedingly comfortaban factC Q drifbjust i direction;A musw still in No. 2 zy!ilybat dayhATom a seizeo3golx \1out !or fear of interruption. Ju# was compledea knoc9#l ` 0 hiding-"noX connecte!n remotely1lat admittedtQladie gentlemen, amo*Widow Dougla Tnoticngroups of citizeny aclimbihill--to 7 S\news had spreadh(h the stor$ visitor#gratitudeer preservatiooutspoken. "DoQay a # it, mada3 ]ara behol\&o-Tre todmy boyc#he ballow Atellname. We An't v2butim." Of 4thi&uriosity so va|"at"be1d tV#in )twa to eaAvitaT his !th them be trans }Dtownb refus"BpartjCcretorall els> qlearnedO < I #to`2reaJn"and slept straia noise Rake m:$Wegrn't worth1. T"dlikely! !--!ha2anyG A lefAwork pwX as the u1 waG4youDscarto death? My Qnegrostood guard sr houseeLBy'veAcome ." More!C cam"beuaand re G couple of hours more.G tSabbath d 1vac was early at churchy 1ing$  canvassed. NewV#n Dsign5two! qyet dis#edthe sermfinished, Judge ThatchEwife alongsidMrs. Har s she moved1 Qaisle;-BcrowqIs my Becky>all day? I !edhB tiraBYourS(RYes,"a;!tlp Sok--"esa2youIQnightEQ!noa kced palhBsankba pew,as Aunt Polly, Cisklwa friend, pG by.64qGood-mo), /. 'got a boy up missing.o my Tom st Qlast !#--7you. AndY $'snvQto se q  "he H andar than d. "HeB$us(`b, begi !to uneasy. A marked anxiety~'s face. "JoeVSuyou seeK?Y1No'b"4did3A himv?" Joe&aremembu)not sure!2sayWQpeopl*ped moving %ofWs}Ralonga boding Aines &k 1 ofzy countencChildr!B anxc +7!bteache!ey1saiDnot ; !wh|%A Tom Dw#Q boar9 ferryboa. a homewDrip;]"dark; no one 'of!if  .!On!ngfinally blurt2his  2the  Zcave! swooned awa f#2o crringing'Bands alarm swep6lip to lip,Agrou 2to  within five minuteCbell wildly cla6he ="upCardiff HillEinstant insignificance,Oxforgotten, horsesaddled, skiff4man !BrderRbefor horror was half an old, two h)d1pou down highroa river toC. A Blong|)1nooge seemed emptydead. Many women (ed9#an4+@ 51y cAthem."wa/ql betten words. tedious'-2Bews;"heA dawqt last,  was, "Send candlesrsend food."4wasbcrazede.{, also. sent messages! !peencouragV,qconveyereal cheT#]3h4'BdaylAspat1 -grease, sm3Bclay worn outJHuck#be cprovid2himTAdeliQfever@ physiciano4allrcave, s a came ook chargg "ient. She ! s B herb4,'h-@, bad, or in,"the Lord'sKu!Ho\Anegl\   good spots inQ-!(You can depen5i"8at'don't leave it off. He never does. Puts"2ome?.$onQreatu!at>(Bhis TA" E AforeRparti Qbegan ctraggl< bGllag strongeswEthe qcontinuxAarch gBnewsbe gaineBness]% being ransack7been vis;Y S cornAqcreviceY1tho#ly#edCv%4z"pax!, [`c fq hithert Bdist@qhouting0-shots sent 9h:)1bervthe ear Ssombr Qs. In&ar1sec21usu. rtravers/touristsnames "BECKY & TOM"btraceds,2cky'#Csmok near at hand a =1-sob9 ribbon.   recogniz'e%k4hover ii7crh. !ofCchilAno omemorial )@be so precious Q this parted latest the living h*6T! c.S80 1at 5und then/a far-away speck ofog glimm*&rn a gloKDshou)Aburs!thbaa scor'men go tro:e qthe ech@4zca sicke disappointment always f!e  F$0 donly a#r'1t ree dreadfu`nights d#0 ]% jt # a hopeless stupor. N 0. The accidentaly, just made,groprietorS Temperance T3kept liquor)premises, scarcely flEthe public pulse, tremendous Qe fac&5qa lucid%Rrval,lbsubjec3a asked--dimly e worst-- . rsince hz#Eill.phcidow. 1tSup inr#bild-ey1tWhat? W$i}Lm;lace hasyshut up. Lie dA--whAturn&+!1me!~32nlyl1"meQing--&one--please! Was itxqSawyer BThe qinto te>"Hush, h !Byou 5 must NOT talky'Bare very sick!zAn nox 1rFBhaveI t powwow if i the gold. Sctreasu2gon Sgone !}7tshe be bout? CuM +@TR.As woD1dimu/5$3min^uF the wearhey gave him h(|?&. o herself: "There--h/poor wreck. find it! Pitysomebody !KA! AhGn't manya's got  ^5or strength either, to go on| ing." CHAPTER XXXI NOW to%1 toZ's shareapicnic*y tripped athe murky Vr rompany,Z  familiar !eI$--bdubbedXrather over7Cptiv8 ,!s "The Drawing-Room,"Cathedral," "Aladdin's Palace,"y\so on+ hide-and-seek frolicking b Qengag* it with zeal until!exertionDrow a trifle Asomen6 a sinuous avenue hol-/kf #tangled web-work of Idates, post-office addrU rmottoes~) g walls rescoed (in ). Still drift3Urand talf8Ck M1now$B par!H! w+tq. They b2ownPK!anph1she[.ed,yD 2 to'"ce 2 a am of watrickling over a ledgkQcarry limestone sedimenVuit, had Qslow-y 81gesm3= and ruffled Niagara in gleam5nd imperishabAone.%squeezed his smallP h in order to illuminate i q's gratt#"He rit curta,steep natural stairwaywas encloZ etween na9ce the ambi Ya r"bd him. respondehis call,1hey_ " aM-mark for fueGguid oqir quesAey w "waBthatXAinto depths ofL  2Bmark#br,?( of novelties to @!the upper worl! $on Qa spa sr, from 1cei3muld"aof shi stalactit" land circumferenc7"a (1leg) 1kedG" OQadmir_2and"2ntl}SAnumerous Aopen#toi artly bm Qbewit2 sp}Rbasint(dncrustsa frosta glitt crystals Amidsa|>rted by rfantastic pillarsR ?Q8"joof great katalagmCtogehe resul1eas  -drip of centuries. UnIZaof vast(tw/"atfp themselvwaousand#qa bunch(s+2urb flockings 4 byrs, sque"and darting f  FCkneww4the danger%isbconduc#'snd hurried herthe first corridorDffern qoo soon)Q a ba#Duck gGits wing# she was passu! ci bats chasm r 1oodQance;> ,ugitives plungnevery newr9age!atR> r5the perilous 7 ubterranean lake,,a stret?its dim 3way !it@ pqlost inshadows. He wantLexplore its b;,0t conclurbe best to sit#Ast a!, !. I!fo A timbe deepA lai&Rlammygb spiri@*Why, I didn't ,it seems1so gI heard any!ot+q" "Com bthink,kB2aresdown be?am--and:!n'=Qw howKCnortT #ou AeastQwhichit is. W4ldn't heaWmH2." . grew apprehensi2"I B how4we'here, Tom? WemUstart%G2"w'. P'raps,!anb!y#aybBIt's" mixed-up crooked qto me."reckon INCit--0qbats. IyI s/ ll be anuqfix. Le!ryRso asqo go thV$ tqB"Wel3 I hope we won't get lost. I8"soz!!"5the girl shudd!*possibilities"eyasi 1sila  way, glancat each2opePcto seeKIook of itMyall strange. EItime Tom Qn exa 3ionczQwatchW+Aface %ansing sig72say4ilyEir(#is2cthe on)$we1 f 0 away!" Butat less bhopefuPrfailure c3urn to divergvenues at sheer random, in desperate }dof fin \ 1saiwas "all !,"!AsuchBaden1 atRheartb2ord.trand souv Tas ifsaid, "All i#!"Qclungais sidan anguish of fearTt!ar" keep backU Oscome. A5she;Oh, Tom,/C1, l2!goqway! WeW.ret worsH 1off!iListen!"{ he. Pro; so deeps"ev#ir9_were conspicuousBhushnSshout}EK- 5mptXand died\ O in a faint resembled a rip+m laughter. ado it *-# hG ,* . "It isI<;Qmight2 usBknoww j/Bgain[! "6"^ pa chilliJ"rr 0Q ghos , it so confess;&2ope Sstoodand listened; y#no V*Drackn  is steps!as56  Q a ce  indecision inDmanner revean;rfearfuli"to$ C--he1notE1way!u?!ke marks!" "1, Irfool! S IJ1we   %e|T No--G`6ay.1mixQ." "Qwe're! #We1can  "is ! Oh, why DID we U"{ Q!" S!nk,Qhe gr8andrenzy of1thaHV'dappall 8$sh(1die alose hason. He sa !byband puGarmsM; "bu"erDq bosom,"Cpourrher terrors,Eunavailing regret ar echoesU em all to jeES beggto pluck upD9s+"nofell to bl1abuqhimselfD)is miserable situ;!ha,etter effec  1try*Cope A4get-2bfollowEver lead if only he W1not Q likebore. FN:m)+An sh5S. So\--aimlessly--simply at!--!do!toF, keep moving ,\  show of reviving--noU3anyback it4XAits O4e w !spht been take( kSg'2ity- Q. Byb0X#'s ^ 1bleI$ou economy meanmuch! Words not needed9Qunder,ope diedUT. She@SjauNthree or four pieces in his pockets--yeB Cmust)iz, fatigue&aassertaclaimsEdrenn+ pay attenJ !foH2was !fuAthin sDCdown1imemBgrow precious,x some dirp%Gany Qwas aist progr4 bear fru6 ato invite5!!enpursuit. +frail limbs 7^er farthersat downsr.AhL$yed of hom 3the\3Ts the t0qmfortab`dU a, abov,!5b cried5Tom=bome wa_] 11all*#Sementhreadbarez#us like sarcasms. Fo*Z heavily uponshe drows!Tf to !omgrateful !at52ing?her draw=eaw it grow smoo#al0the influ4of p^1ms;K&bVa smile dawnedh Speace e reflected *an$@Fhealcis own,!%is`! Sato byg1ime#y'!es@3$ley Wmo#s,rwoke upa breezy littleF stricken deansher lip]sa groanC1ed lA"Oh,WrCOULD I:Z4ish , had waked! No! No, I don'tR b! Don' 1 soF5say  2I'm@dKSslept; you'll feelR, now#fi&@!utVWe can tr!I'G#en beautiful4ry in my$. DQt we are+6Maybe not, m 1. C#upkoP"They rosa An?K51hanG1andAlessyJ to estimate!lo}.!eyK/R#Awas Re>0Cweek9!ye"qwas plaT"at bnot beccandleAnot cyet. A&im7\tis--the# 5ellR--Tom qgo softlyo for dripp`BaterZ3 aMf rresentlsatb. Bothcruelly tired, ye CssMfuld go 73Qurprio.Tom dissenD F2not>!st8D !ey'2 fae-bin froPBthem{sclay. T6oon busy;G'1aid* 7Atimeh^broke the:I am so hungr5JT . "Do you remembd4Bis?"4he.Zbalmost1d|'s our wedding-cakeMSYes--as big as a barreli"goaI saveA&"us to dream onyF1way$n-up people do'll be ourSS"pp<Q sentPw Bdivi#Re cakw 3 atT2appetite,Tom nibbled a:amoietys abundak "co"RfinisfQ with. By-and-b= Gtey move on 'yilent a mom"qThen he:z1can/ rit if In1you #?"8"'s4pal}`B. "W.F]{1stamB!er Bre's ink. Thatw " iClast6 ! gave loos)w_#diA{3to  "buz$AtU%!""?")y'll miss uKChunt4rwill! Cl"!ithey're hun Ror us,laDare.Bhen $S"Whby get o the boatnMit might be dark then--enotice w .n't comenbIaanywayN2r m1K8you"b=1got q." A fAened 2 in"brfSsenseRe sawh made a blundervw%Zhh2hat98! Tebecame$nduful. In a new burst of grief21 sh 1hat"ing1strT7ers also--QCR:half spent before Mr atcher discov M_"at/Harper's. 2 tU !bi & *"aifaSunday "--aMondayt!to!to1, br sorrows woo oppressive,sh+p 8gon*$ha!!mi3 2agorno doub:)Bwas a !onM $on1it; }!%esso hideouswbat he 2$itG!waa5ger1torX,K [/s A portio0h z was left; Band ,.~+ iD poor morsel of food only whetted desir c SQH! DiuAthat qoth hel " aqe faintest, far-offq. InstaG*C!swYul|/ M)Uhand,@"*gr7 corridor ia4. P  ;.BV%Qappar($ a/ BnearU DthemdTom; "coming! Come"-- b now!"54joy,rprisone overwhelmFTspeed was slow, R, UpitfaC Tcommo"O1be vK"edscVhortl"on28vstop. I  V!fev-Vep, i a hundred'B%no)iUsany rat"go" oabreastreached asT1dowfquld. No bottom3 =EGwaitw21ers8 @q; evide{3inggqgrowing Rt! a b or tw2hadZ $al+}2t-se :+2it!choopedhgShoars$$Wof no use!t.ahopefu RQan aganxious wai Jqand no ?+9Q4 !grMh QwearyZ ;c"ey;`vQfamistnd woe-!3c beliebe Tuesday _!isp. Now an ideaH i5"re!so !deages nea hand. It $be*? $se!ar!weR heav Adlen"He+a kite-line) +3, tto a proje*TT, Tom#lead, unwinding the hUQalong8?nabtwenty!ended in a "jumpingqplace." Qkneesqfelt beBand =Qaroun\xA! r&(is handsvE!ni;[ qn effor  Eyet a right I #atT, not Qyards ,"ma,6# a,\"edzBrockAlift!: a "?i^Y6was e4iTnged to--aq Joe's! aralyzed)U1notwas vastly 4eF nex)the "Spaniard"m ris heelDget s)#om",E Rat Jo8notAshis voicome overM_llbestify b court^&!9 qdisguis!e cQ. Wit@ ,w=R, he 1  Q weakAever4cle2bod W%to( : `,!,qnothing  mpt him to ru risk of mee+}He was care kO " h2see btold h!"ha ted "for luck=.!ut:1wre- 1ris3AeriowUfearsong run. Ang5teda' Tsleep4q change$dtortur$a raging wWday or Thur"or'3FriTSatur1, aa been givenQpropo5(sAwillo!nd8JQrrors8+1eryfhad su S!drRapath;"A rouT#Sh!ou_!it,"$"asrdie--it, NLmK3o gn7theQand explorekb chose ashe imE'w5peak to herjhim promit#/Atime L"bhh@$an 1allRover.ek Qa cho5Asens%" ia 1thr; $ being conf ->rURscapetthe cav=h :ent Bone )   h62and?,z DressAick 1bod #of  doom. CHAPTER XXXII TUESDAY$Cnoon!anKCtwilshe villL St. PetersburgJ+!mo + Flost)$$haund. Public prayers61 up@Qthem,"2manc privateB he petitioner's whol  t>no good new the caveqmajorit c  up the que  ir daily avocas, sayFQlain @c3KB!Mr)very ill1a great par ( delirious. P)AbreaVto hear her. BhildeQraise2heae&minute at a!, lay it wearilyQgain a moan. Aunt Polly had drooped inNfWd melanchogray hai "!grUYA whi1wen6 1its!5 one n& sforlorn. Awa!the middl M a wild peal]Nb bellsK[ %moTswarmingfrantic half-clad pT, whowA, "T2Vut! t F " Tin panChorn 6addBdin,iAopul massed g}*!to t1met=in an open carriage%"byaitizendrongedA it, joined itsWRmarchdswept magnific? Q main et roaring huzzah* !was illuminated; nobodyDto b;ar3est(t!tt w0Cever_ 2Dur%re firsthour a proc@e4 ofars fil rough Judge-'s house,f<n"sa+,ejsqueezedt'", to speak butn't--andC2"raX>t 1all K& c"ppG Kd nearly so5[ a messe AdispSdkH#2cav2!ld"!or 1usbNTom lay 0aa sofaXWauditory abou qand tol~A his!ofwonderful adjB, puR+"inAstri1add adorn it1"al JCutdescripahow he%tent on Bexpel;7'Btwo Fs!as0* ARa thi^aullest4tchM3wasT"to !heOCpsedOtoff speh6Clook*A day ;"#liCOit, pushed6shoulders!cA sma;&l1sawbroad Mississippi ro by! And if it5 F0Cappe #beVhU@ !se* 2at %of/A d[ A anyB! HeCc7for/I%j @ 2himoAo fr.r$such stuff, $  &# w Sto diR~?ɆU laboher and convincg %"hoe@Q died1joy A she  actually>lueG he >1way4 1$"lp2 ou?gAat t]for gladness+some men a8Qskiff cTom haI!em G33con rddidn'tE=qild talfirst, ""," qthey, "Q"$re]2les> bhWavalley cave is in" naboard, rowa""gam supperqGthem rest G 1two4hreDdarkn~thome. B!day-dawn,=q handfu% Ahim Rtrackg,5R+twine clewyctrung +sformed A. T+# }BtoiluPi~Rbe sh3'ffA9s#Foon " y bedriddenf}5and~uto grow QBwornP ><2got,MV, on e"wa- {a"as  d"di8her room1Sun34sheQas if 1hadT'edk1wasaillnes#$omi of Huck's sickRto seoAbut be admitDthe bedroom;"Uhe onB or H-!ft a"6bwas wam8; s introduce no exciQtopicL Widow Douglas staye1thaKaobeyed/Ahome?the Cardiff Hillrt; alsoDthe "ragged man's" *  n%$ ;6 erry-landing2had7Adrow&\trying to , perhaps. About a fortiVrescu E, he a visit:yi#plGrong enough!tocR talk2Tom'Aintel:.., A waswm,t " ome friends sex(P%2oneW him ironicsqn't lik%)go@ y10he thoughqRn't mqO Xsaid:+!reothers jusuQyou, )3I'v| ast doub#)Ave t3caraat. NoAwill !atA anyH*)*Because Iits big do $atb boiler ironP weeks agoriple-lockedO"goTbkeys."tj2ite.asheet.1at' matter, boy! Here, run,qbody! FDvaa glasL1!" "* gba!!thCinto|face. "AvEW1a M#Oh,']cave!UII WITHIN a fewj2new1spr.%b dozen b-loads3nq @!to McDougal'sEb~well fill#pak"s,5 CSawy[deDD bor4. -bbwas un4,%rrrowfulF*Celf sqdim twi xD lay^1ed )@1, dPrwith hiQ closrthe cra} "th!if/longing f+dfixed,>clatest,,s cheer CfreeQcoutsidwas touchedd vQprice8CdropVQis da(e !t patheticslow-droppVBater@!hey8e1seeb!< .b's cupC6Ts firde list2cavern's marvels; 4b" cannot rival i 4xKn,VQ mout6 2aveI flocked in boatsfwagons|3towAfrom:the farm1 hamletsseven miles|3ySrall sorAprov~NsUOA4hadas satisfactory!e funeral yDT1 ha Y%is5%heBgrow[#oni#1 toagovernIrcpardon*$]qlargelyT2ed;Q2teatnd eloquent meet $he#a committeJCsapptfkBo inrRF%1ingjSwail timplore*be a merciful as trample his dut| Gfoot/h0!;kfive citizenwt&R, but+idat? If. ASataC Cself$/!ofl)SlingsRto scribblir names-a tear on itLir permans impair Rleaky{Q-work"2TomAvHuck to& gave anRtalk.3!haw1rneQ aboum'the Welshmant, cis timYq>s!? old him; R  5he TS talk2now'saddenedw bI know0j[rYou got5QNo. 233 anbut whiskeytold me itAyou;aI justp must 'a' ben ]usoon as\'fA bus|"em8q hadn'tt)ney becuzdl!go!me ! w Dand aif you1mum,dB els's alwaysG4we';dget hoatat swag,3, I-It-keeper. YOUF -" I"DD.mI D1youHAto w   yes! Why, it seems!ag#8> CI folleredK-YOU foll1him2Yes]2youqcmum. ISS"'s;Q2himI don't want 'em soV Bon m me mean 6s. If itpben for me he'5V ain Tex@&w,1hens entire+%in-5Aonly* Oit beforel4ellTHuck,s4ly,'!ba@ main question, "whoever nipp "in(, --anyways it's a g.afor us;Gq wasn't~n!;Bat!"Lphis comradekeenly. "Tom6Rgot o+twQagainti1 cave!" cblazed. "SayM FgainT*"Tom--hone 1junf--is it funV!strEarnest;!--^$as# f ! ILlife. WiF#go"reAhelpZRit ounsI bet IxE2 ifwCRe can5 ouV  6"doDwith dlittleBatroubl the worl?aGood aat! What makesAthin["RF's--2you;rtill wef!re#we1mit I'll aqto givelqmy drum76ing&Cq I will0QjingsA!--va whiz. [!doh1say "Ri$w,say it. Ar 4IW#ar ? I ben o-cpins a,"oradays, tbut I caKlk more'n a "--IAI$.">q #to"thqanybodyRm 1go,^Qmight,Drt cK]  N ; ,qri.bskiff.&2flo] ["re I'll pullj2ackby myself A neeqturn yourq$Q over2Lw2artA offm@B. We`&bT32eatour pipes bag or two T%kite-string8`u ese new-fp!thA ycall lucifer m+rs. I te, !'s2Atimetbshed I2omeD" Aq%the boys borU&) #a W B whoU Cbsen(got undec^were sev` below "Cave H%," R: "NNis bluff herJ$s!AalikA2way_5--no houses, no wood-yards, busheRU. ButO"ee5whi4 Rup yok#'s4 landslide? Well,!'sof my marks. We' aashore.yG97inU're a-sta#8'rq hole I bout of~Qa fispole. See#4can.BiRplace1P proudly mar"a clump of sumachncc: "Heare! Look at i;athe snuggesDis country9 "ll2Drwanting/ a robberrknew I'rto have1ng 3thi'o !itvAther!ve1it :&2'llit quiet,1let< K:aBen RoU1Cin--*$ o@ be a GangC #lsj* any styl it. Tom Sawyer'sA:1sou$plendid,L?  "it3doe And who'c1rob/aOh, mo6. Waylay people--that's$$lyRnd ki "No-@Q. Hivm# t4y26a ransomUWoCMoneg3makR<y can, off'$ir{ b; and you've kep.m#ityXV2. T!enkway. Onlyb women1shu`9 2men5Cm. T5Fb beautqnd rich awfully scaredgt"irI!es5sZStake t|+"nd4pol7y!3 as3 ass --you'llMany book. cto lovX)%ey,m s a week y stop cr!eRto le'i4dro Ay'd  { Raroun2com9. It's so insy real bully' $ Ibdbetter'n a piratQC"YesF&^7way Cit's6"!toQQccircus\!at{@y+ %;1andaboys ew)#ho\  l0Qy toi#*qarther 7tunnel, then=yspliced 1 fadK$a on. A&E QpringY Tom felt ams quivert" him. HeQCragm> -wick pexSon a oC cla$De wa; t2ox*_ d flame struggl)AexpiQTf!ga4 to whispers,1for#st-Tgloomm3opp[>bspirit yYBpres:ar 0LRuntil 5reaAGWndles%rhe factx not really a, 3pica steep DhillFirty feet highW @eW+2Now@ AshowY.  Ae he+sa aloft+` sNAorne7ban. Doi!ee? There--0big rock over$ S--donK-R3TomCqa CROSS2NOWZ '{ r Number Two? 'UNDER THE2,' hey?  2's eI saw &# p`+d stareA mys Qign afB6R shaky voice:qless gi} " o QWhat!>treasureVRYes--6it.'s ghost is  ere, certain."B 81, nKB. It Q ha'n{k8Qhe di,Away /% 2&--z 2her!NoS \wouldy#ng.4"ofV #so & &omi3feaXBHuck-,aMisgivm!ga+d}CR mind 7LQoccurYso him--)ym/nSfools m@of ourselves! & a 8|; Z!a = !R poinG #wen1had)teffect.I6_"atA #so/EluckxQthat {7 isJ VS AhuntG4box5wen77c  cones. X$nn:N  says"--Dcuffed Sid's {i 0k8q"Now go"if2arenQto-moFit!" Som Autes'GSguest a supper-tab[$ua dozen@/"pr!upittle side;F1e sixQoom, {t1at r vAbproperl Amadev4 speech, iY!!heOkNHB honPQF [T was Dwhose modesty-- A: fo)sHe spru+{a'Er adventu finest dramatic mann_ master ofDthe B it !onJs largelyFerfe8 as clamorousNeffusivechappier K+amstanc  &, ( air show of astonishment,AheapF compliment2 so: ntude upon)(a he al/Rforgoanearlyv l܎K!Amfor%this new2 K :kq set upa targeh  \gaze laudations <"sh<2giv s a homesher rooave him educated;Rw. Q spar2 s/"ulKtFi -\'s chancrcome. H#F32uck"2 ne's rich." Noa heavy strain2the9 tFpany kept baBe du E:2aryis pleasant jos5Dsilea=Obroke itb's gotEa. Mayb. cbut he0!lo it. Oh, you%n't smile--  1eY;&a 'tTom ran Bdoor1looked at eacha perplexbterestuinquiringly a_ Ttongue-ti* hat ails Tom?"P. "He--well - any making at boy out. I(<4Tom}/,q#Dggli{Eeigh,2 di"afinishsentenceCpourU1masyellow coQ the C^Cqwhat dih ? Half of FRmine! spectacl1 generalaway. All gazed, nwpoke forAmentn a unanimous :.n explan  #1fur5i nd he did^B tal!bumful of _,ca scarc!n rruptiony!tok the char/its flow|che had"edAJoneM)d: I,x^Jf#%isP2it BamoupC nowone makeFBsingy), I'm wilbto allhT3was[3sumt"edRG over twelv#[sand dollarsr-!as+ 7 [Qaresentever seen at one time before, "  Q N"ho1 worth consido7av,tyaV THEer may rest Aaj's windfall33$a j4tirDpoor(vof St. o. So vast a sum, in actual cash, seemed nexincrediblejqtalked , gloated0rified, until thOs' mTJdtotter&2*'e unhealthy excite "haunted" housq 2 anneighboring villzwas dissected, plank by U3oun1 duand ransafor hidden treasu Qnot b=st men--0 grave, unromantic menWmH1Tom c3were cour2adm(gz1qnot abl|arememb~2at 4bremarkLqpossessI};3now1say0 dBrepe 4didvsomehow to be regardedv8Aableyidently lo{5power of doV'2nd r common !s;5#ovir past historr!up X v2ar " of conspicuous originalityto paper published biographical sketcheNt.1 # p>"'s  at six per cent.dJudge " lt's request. Each lad had an incBnow, was simply prodigious--a9D-dayC8Ayear7?2jus  got --no, hpromised--MrcollectD Ha quarter a7 board, lodgd school a <^1ose  be daysF 2 hiwash himat matter.  ,@RopiniR 8no 3boy!goz daughtPAcavepqn Beckyd@ father, in strictCw!ceA TomAtake&a whippt6  dy2isiFv  Cplea,!ceK4thei3lie-w!olorder to shi*&at!hemo8own3saiTaq outburh$atyBa nod !ou<,5magz lie--a litaworthyzaold up-2hea-Rmarch.]breast to George WaBton's lauded TruthU"ratchet!m tOU qso tall%so superb wR walk4 fl qstamped\Bfoot?R. Shec:straight of1tol#/it"op& 1seexqlawyer  soldier some day0look to i"T#h National Military AcademRafter(Qraine!es  9[mm4 yeither care both. Finn's w0 qsthe fac#7now0_ Douglas' protec introducm)"society--no2' it, hurl# iohis suffering1mor1n hv"ar?servants him cle 1d naHQcombeC1 br hCbeddly in unsympathet3ets2ad 3e[ spot or stx~uld pres/2earQknow yK$!haE#eaba knifTfork;FUto use napkin, cupXplate&QlearnmWbook,@go to church2stalk so "lyaspeechT become insipid in hisX; whithersoXees"edC2bar ashackl civiliz;B shuiQbound1han foot. He bravely b4is miser|1ree!thTLSe day up missFor forty-e\Qhours^g! hO j2himw2in Qdistress. The cprofoundoncerned;~7u  E %eyF- @1forqbody. EThird V3Fr wiselyPp*$Qamong old empty hogsheads down*]AbandU#sl-T p'inQm he $rrefugeeL had slepor breakfastoB stolen odd61end Bfoodbwas ly<f in comfort969"ipwas unkempt, unM1cla old ruin of +,had madepicturesque%ay01frea happy[S routvBout,"his"*!he6been causing,s 3urg=Qto go gr's face its tranquilv took a melancholy cas63RDon't X CI'vey #itwT work6"T;"#"it:~U 2to :)d("ly_&7#them waysA!mex!up% / Bsameq 7+9Awashy comb mLo thunder0w&let me sleepJ/a; I go61wea m blamed cloth!atA smo?" m#'dg1seeany air git A'em,Show; !y'1 rotten ni,a=!ets, nor lMcroll a@nywher's; I hai"liD cellar-doErit 'pea b A  and swea q--I hatm!m Cy sermons!Aketc xK,[chaw.Qshoes$w eats by a bell1goeybed by fits up!--VK's so awful reg'lar)dy'itk#>#dvhat way, Huck(&qmake no differI`Qybodyq STAND &3t's1 ti so. And grub.>too easy--I# t{!esvittles,}3askAa-fi C; I in a-swimming--dern'd'8{ 31do 6t". $!I'42 to"sodn't no(#--. OuRatticip out awhileA daym1git!st"my , or I'd a died, TomnKBAmokeu y?5Bgapeqstretch Q scra before folks--" [The+a spasm ofsial irrit and injury]--"And dad fq"itaprayedNDime!A see, a woman! I HAD1ove2--I yUbesidHZ5's $Copen_<S$it%I G!st"QHAT, QLooky%,0S rich@what it's crack); Bworr  9 2a-wwas dead <2. N7%seBsuitis bar'l %shake 'emmc>B got into%isAif in't 'a' ben Kmoney; nPNQmy sh@_0Syour'gimme a ten-cDJ sometimes--not manyX#s,K_# Ra derR2'th's tollable hy4you$qbeg offSQidderv"OhK3d6%Rt. 'TBfair if you'll try^;B!a UQ longI*e $tok<Like it! Yes--bay I'd&a hot stovAI was(!itcLC. No7Brichi4liv m cussed y_Bs. I6oodv  Rf  I'll stictoo. BlamBall!Q#as>cot gun_1a c*"ll+Afixe Arob,p&olishness hasP1to k"up5pil~x1sawx opportuni%"CDhereHECUbe backnturning 'qNo! Oh, -licks; ara!qin real3-wood earnest)J+CbR'm siV-?5But<l)#qgang ifarespec5R's jo3h!!C"inq Didn't[!go~a piraterYes, bu%'sRt. A 7 zfAgh-ti7"a NQ is--rgeneral~A. InTr!ri 6  Qup inQnobilRdukes03uchw,! aS2lwme? YouhC  A youP *nVWOULD+B" "wR%,tI DON'TR--but(vpeople say? Why 'd say, 'Mph!G:'s Gang!  low characters in it!' TCU+ {h+`$t*#so , engaged%Tental"#e. Finally h# Rll go}aba monttC!nd1if  `3it,49XRme b't>+Agang." "All rightb, it'sQz! Coxo8X`2and4 G>Toh# a[oEWill/!--yg2? Tggood. If sheUt"ofroughestK"s,@qprivate-Dcussdcrowd ror bust] Astar/and turn$s? 3@D offBB"ge7B!ger$vQiniti  0Qmaybe(H(Lj;+W6t$12Bto sn9Cone [+ O#te rgang's 8+sd n're choppl o flinder qkill an 2 anV his famiWhurtsX%ay9/e3y g8,!_3E bet it is3 "at1ingAbe dbt midn[qlonesom|3est@ you can find--a ha'nted " ib:-Z23up M#yw{(socyou've3 on a coffi 1sigh with bloodOt)  RLIKE!frmillion q bullieh n 8 s QidderAR I ro 8#gi% acr of aRLbody tal('-&itD bud she sn!,wet." CONCLUSION SO endeth schronicP$G strictly a}!BOY, it kAstop ;Sstoryz!nofEmuch)p"wi becoming ^3MANone writes a!! a Sgrown*Q, he O4A exarto stopOB is,a marriagew iof juveniles, he W can. Mosgyrperform still liveare prosp2Som.it may seem ZQke upzyounger ones agaiM9 1sor"meAwomec y turned@krRit wiwRwisesyOto reveaRat pacQtheirs at present. wxlz4-2.5.2/testdata/README.txt000066400000000000000000000001351364760661600155560ustar00rootroot00000000000000The golden data files (*.lz4) have been compressed with the original C implementation of lz4.lz4-2.5.2/testdata/e.txt000066400000000000000000003032431364760661600150530ustar00rootroot000000000000002.7182818284590452353602874713526624977572470936999595749669676277240766303535475945713821785251664274274663919320030599218174135966290435729003342952605956307381323286279434907632338298807531952510190115738341879307021540891499348841675092447614606680822648001684774118537423454424371075390777449920695517027618386062613313845830007520449338265602976067371132007093287091274437470472306969772093101416928368190255151086574637721112523897844250569536967707854499699679468644549059879316368892300987931277361782154249992295763514822082698951936680331825288693984964651058209392398294887933203625094431173012381970684161403970198376793206832823764648042953118023287825098194558153017567173613320698112509961818815930416903515988885193458072738667385894228792284998920868058257492796104841984443634632449684875602336248270419786232090021609902353043699418491463140934317381436405462531520961836908887070167683964243781405927145635490613031072085103837505101157477041718986106873969655212671546889570350354021234078498193343210681701210056278802351930332247450158539047304199577770935036604169973297250886876966403555707162268447162560798826517871341951246652010305921236677194325278675398558944896970964097545918569563802363701621120477427228364896134225164450781824423529486363721417402388934412479635743702637552944483379980161254922785092577825620926226483262779333865664816277251640191059004916449982893150566047258027786318641551956532442586982946959308019152987211725563475463964479101459040905862984967912874068705048958586717479854667757573205681288459205413340539220001137863009455606881667400169842055804033637953764520304024322566135278369511778838638744396625322498506549958862342818997077332761717839280349465014345588970719425863987727547109629537415211151368350627526023264847287039207643100595841166120545297030236472549296669381151373227536450988890313602057248176585118063036442812314965507047510254465011727211555194866850800368532281831521960037356252794495158284188294787610852639813955990067376482922443752871846245780361929819713991475644882626039033814418232625150974827987779964373089970388867782271383605772978824125611907176639465070633045279546618550966661856647097113444740160704626215680717481877844371436988218559670959102596862002353718588748569652200050311734392073211390803293634479727355955277349071783793421637012050054513263835440001863239914907054797780566978533580489669062951194324730995876552368128590413832411607226029983305353708761389396391779574540161372236187893652605381558415871869255386061647798340254351284396129460352913325942794904337299085731580290958631382683291477116396337092400316894586360606458459251269946557248391865642097526850823075442545993769170419777800853627309417101634349076964237222943523661255725088147792231519747780605696725380171807763603462459278778465850656050780844211529697521890874019660906651803516501792504619501366585436632712549639908549144200014574760819302212066024330096412704894390397177195180699086998606636583232278709376502260149291011517177635944602023249300280401867723910288097866605651183260043688508817157238669842242201024950551881694803221002515426494639812873677658927688163598312477886520141174110913601164995076629077943646005851941998560162647907615321038727557126992518275687989302761761146162549356495903798045838182323368612016243736569846703785853305275833337939907521660692380533698879565137285593883499894707416181550125397064648171946708348197214488898790676503795903669672494992545279033729636162658976039498576741397359441023744329709355477982629614591442936451428617158587339746791897571211956187385783644758448423555581050025611492391518893099463428413936080383091662818811503715284967059741625628236092168075150177725387402564253470879089137291722828611515915683725241630772254406337875931059826760944203261924285317018781772960235413060672136046000389661093647095141417185777014180606443636815464440053316087783143174440811949422975599314011888683314832802706553833004693290115744147563139997221703804617092894579096271662260740718749975359212756084414737823303270330168237193648002173285734935947564334129943024850235732214597843282641421684878721673367010615094243456984401873312810107945127223737886126058165668053714396127888732527373890392890506865324138062796025930387727697783792868409325365880733988457218746021005311483351323850047827169376218004904795597959290591655470505777514308175112698985188408718564026035305583737832422924185625644255022672155980274012617971928047139600689163828665277009752767069777036439260224372841840883251848770472638440379530166905465937461619323840363893131364327137688841026811219891275223056256756254701725086349765367288605966752740868627407912856576996313789753034660616669804218267724560530660773899624218340859882071864682623215080288286359746839654358856685503773131296587975810501214916207656769950659715344763470320853215603674828608378656803073062657633469774295634643716709397193060876963495328846833613038829431040800296873869117066666146800015121143442256023874474325250769387077775193299942137277211258843608715834835626961661980572526612206797540621062080649882918454395301529982092503005498257043390553570168653120526495614857249257386206917403695213533732531666345466588597286659451136441370331393672118569553952108458407244323835586063106806964924851232632699514603596037297253198368423363904632136710116192821711150282801604488058802382031981493096369596735832742024988245684941273860566491352526706046234450549227581151709314921879592718001940968866986837037302200475314338181092708030017205935530520700706072233999463990571311587099635777359027196285061146514837526209565346713290025994397663114545902685898979115837093419370441155121920117164880566945938131183843765620627846310490346293950029458341164824114969758326011800731699437393506966295712410273239138741754923071862454543222039552735295240245903805744502892246886285336542213815722131163288112052146489805180092024719391710555390113943316681515828843687606961102505171007392762385553386272553538830960671644662370922646809671254061869502143176211668140097595281493907222601112681153108387317617323235263605838173151034595736538223534992935822836851007810884634349983518404451704270189381994243410090575376257767571118090088164183319201962623416288166521374717325477727783488774366518828752156685719506371936565390389449366421764003121527870222366463635755503565576948886549500270853923617105502131147413744106134445544192101336172996285694899193369184729478580729156088510396781959429833186480756083679551496636448965592948187851784038773326247051945050419847742014183947731202815886845707290544057510601285258056594703046836344592652552137008068752009593453607316226118728173928074623094685367823106097921599360019946237993434210687813497346959246469752506246958616909178573976595199392993995567542714654910456860702099012606818704984178079173924071945996323060254707901774527513186809982284730860766536866855516467702911336827563107223346726113705490795365834538637196235856312618387156774118738527722922594743373785695538456246801013905727871016512966636764451872465653730402443684140814488732957847348490003019477888020460324660842875351848364959195082888323206522128104190448047247949291342284951970022601310430062410717971502793433263407995960531446053230488528972917659876016667811937932372453857209607582277178483361613582612896226118129455927462767137794487586753657544861407611931125958512655759734573015333642630767985443385761715333462325270572005303988289499034259566232975782488735029259166825894456894655992658454762694528780516501720674785417887982276806536650641910973434528878338621726156269582654478205672987756426325321594294418039943217000090542650763095588465895171709147607437136893319469090981904501290307099566226620303182649365733698419555776963787624918852865686607600566025605445711337286840205574416030837052312242587223438854123179481388550075689381124935386318635287083799845692619981794523364087429591180747453419551420351726184200845509170845682368200897739455842679214273477560879644279202708312150156406341341617166448069815483764491573900121217041547872591998943825364950514771379399147205219529079396137621107238494290616357604596231253506068537651423115349665683715116604220796394466621163255157729070978473156278277598788136491951257483328793771571459091064841642678309949723674420175862269402159407924480541255360431317992696739157542419296607312393763542139230617876753958711436104089409966089471418340698362993675362621545247298464213752891079884381306095552622720837518629837066787224430195793793786072107254277289071732854874374355781966511716618330881129120245204048682200072344035025448202834254187884653602591506445271657700044521097735585897622655484941621714989532383421600114062950718490427789258552743035221396835679018076406042138307308774460170842688272261177180842664333651780002171903449234264266292261456004337383868335555343453004264818473989215627086095650629340405264943244261445665921291225648893569655009154306426134252668472594914314239398845432486327461842846655985332312210466259890141712103446084271616619001257195870793217569698544013397622096749454185407118446433946990162698351607848924514058940946395267807354579700307051163682519487701189764002827648414160587206184185297189154019688253289309149665345753571427318482016384644832499037886069008072709327673127581966563941148961716832980455139729506687604740915420428429993541025829113502241690769431668574242522509026939034814856451303069925199590436384028429267412573422447765584177886171737265462085498294498946787350929581652632072258992368768457017823038096567883112289305809140572610865884845873101658151167533327674887014829167419701512559782572707406431808601428149024146780472327597684269633935773542930186739439716388611764209004068663398856841681003872389214483176070116684503887212364367043314091155733280182977988736590916659612402021778558854876176161989370794380056663364884365089144805571039765214696027662583599051987042300179465536788567430285974600143785483237068701190078499404930918919181649327259774030074879681484882342932023012128032327460392219687528340516906974194257614673978110715464186273369091584973185011183960482533518748438923177292613543024932562896371361977285456622924461644497284597867711574125670307871885109336344480149675240618536569532074170533486782754827815415561966911055101472799040386897220465550833170782394808785990501947563108984124144672821865459971596639015641941751820935932616316888380132758752601460507676098392625726411120135288591317848299475682472564885533357279772205543568126302535748216585414000805314820697137262149755576051890481622376790414926742600071045922695314835188137463887104273544767623577933993970632396604969145303273887874557905934937772320142954803345000695256980935282887783710670585567749481373858630385762823040694005665340584887527005308832459182183494318049834199639981458773435863115940570443683515285383609442955964360676090221741896883548131643997437764158365242234642619597390455450680695232850751868719449064767791886720306418630751053512149851051207313846648717547518382979990189317751550639981016466414592102406838294603208535554058147159273220677567669213664081505900806952540610628536408293276621931939933861623836069111767785448236129326858199965239275488427435414402884536455595124735546139403154952097397051896240157976832639450633230452192645049651735466775699295718989690470902730288544945416699791992948038254980285946029052763145580316514066229171223429375806143993484914362107993576737317948964252488813720435579287511385856973381976083524423240466778020948399639946684833774706725483618848273000648319163826022110555221246733323184463005504481849916996622087746140216157021029603318588727333298779352570182393861244026868339555870607758169954398469568540671174444932479519572159419645863736126915526457574786985964242176592896862383506370433939811671397544736228625506803682664135541448048997721373174119199970017293907303350869020922519124447393278376156321810842898207706974138707053266117683698647741787180202729412982310888796831880854367327806879771659111654224453806625861711729498038248879986504061563975629936962809358189761491017145343556659542757064194408833816841111166200759787244137082333917886114708228657531078536674695018462140736493917366254937783014074302668422150335117736471853872324040421037907750266020114814935482228916663640782450166815341213505278578539332606110249802273093636740213515386431693015267460536064351732154701091440650878823636764236831187390937464232609021646365627553976834019482932795750624399645272578624400375983422050808935129023122475970644105678361870877172333555465482598906861201410107222465904008553798235253885171623518256518482203125214950700378300411216212126052726059944320443056274522916128891766814160639131235975350390320077529587392412476451850809163911459296071156344204347133544720981178461451077872399140606290228276664309264900592249810291068759434533858330391178747575977065953570979640012224092199031158229259667913153991561438070129260780197022589662923368154312499412259460023399472228171056603931877226800493833148980338548909468685130789292064242819174795866199944411196208730498064385006852620258432842085582338566936649849720817046135376163584015342840674118587581546514598270228676671855309311923340191286170613364873183197560812569460089402953094429119590295968563923037689976327462283900735457144596414108229285922239332836210192822937243590283003884445701383771632056518351970100115722010956997890484964453434612129224964732356126321951155701565824427661599326463155806672053127596948538057364208384918887095176052287817339462747644656858900936266123311152910816041524100214195937349786431661556732702792109593543055579732660554677963552005378304619540636971842916168582734122217145885870814274090248185446421774876925093328785670674677381226752831653559245204578070541352576903253522738963847495646255940378924925007624386893776475310102323746733771474581625530698032499033676455430305274561512961214585944432150749051491453950981001388737926379964873728396416897555132275962011838248650746985492038097691932606437608743209385602815642849756549307909733854185583515789409814007691892389063090542534883896831762904120212949167195811935791203162514344096503132835216728021372415947344095498316138322505486708172221475138425166790445416617303200820330902895488808516797258495813407132180533988828139346049850532340472595097214331492586604248511405819579711564191458842833000525684776874305916390494306871343118796189637475503362820939949343690321031976898112055595369465424704173323895394046035325396758354395350516720261647961347790912327995264929045151148307923369382166010702872651938143844844532639517394110131152502750465749343063766541866128915264446926222884366299462732467958736383501937142786471398054038215513463223702071533134887083174146591492406359493020921122052610312390682941345696785958518393491382340884274312419099152870804332809132993078936867127413922890033069995875921815297612482409116951587789964090352577345938248232053055567238095022266790439614231852991989181065554412477204508510210071522352342792531266930108270633942321762570076323139159349709946933241013908779161651226804414809765618979735043151396066913258379033748620836695475083280318786707751177525663963479259219733577949555498655214193398170268639987388347010255262052312317215254062571636771270010760912281528326508984359568975961038372157726831170734552250194121701541318793651818502020877326906133592182000762327269503283827391243828198170871168108951187896746707073377869592565542713340052326706040004348843432902760360498027862160749469654989210474443927871934536701798673920803845633723311983855862638008516345597194441994344624761123844617615736242015935078520825600604101556889899501732554337298073561699861101908472096600708320280569917042590103876928658336557728758684250492690370934262028022399861803400211320742198642917383679176232826444645756330336556777374808644109969141827774253417010988435853189339175934511574023847292909015468559163792696196841000676598399744972047287881831200233383298030567865480871476464512824264478216644266616732096012564794514827125671326697067367144617795643752391742928503987022583734069852309190464967260243411270345611114149835783901793499713790913696706497637127248466613279908254305449295528594932793818341607827091326680865655921102733746700132583428715240835661522165574998431236278287106649401564670141943713823863454729606978693335973109537126499416282656463708490580151538205338326511289504938566468752921135932220265681856418260827538790002407915892646028490894922299966167437731347776134150965262448332709343898412056926145108857812249139616912534202918139898683901335795857624435194008943955180554746554000051766240202825944828833811886381749594284892013520090951007864941868256009273977667585642598378587497776669563350170748579027248701370264203283965756348010818356182372177082236423186591595883669487322411726504487268392328453010991677518376831599821263237123854357312681202445175401852132663740538802901249728180895021553100673598184430429105288459323064725590442355960551978839325930339572934663055160430923785677229293537208416693134575284011873746854691620648991164726909428982971065606801805807843600461866223562874591385185904416250663222249561448724413813849763797102676020845531824111963927941069619465426480006761727618115630063644321116224837379105623611358836334550102286170517890440570419577859833348463317921904494652923021469259756566389965893747728751393377105569802455757436190501772466214587592374418657530064998056688376964229825501195065837843125232135309371235243969149662310110328243570065781487677299160941153954063362752423712935549926713485031578238899567545287915578420483105749330060197958207739558522807307048950936235550769837881926357141779338750216344391014187576711938914416277109602859415809719913429313295145924373636456473035037374538503489286113141638094752301745088784885645741275003353303416138096560043105860548355773946625033230034341587814634602169235079216111013148948281895391028916816328709309713184139815427678818067628650978085718262117003140003377301581536334149093237034703637513354537634521050370995452942055232078817449370937677056009306353645510913481627378204985657055608784211964039972344556458607689515569686899384896439195225232309703301037277227710870564912966121061494072782442033414057441446459968236966118878411656290355117839944070961772567164919790168195234523807446299877664824873753313018142763910519234685081979001796519907050490865237442841652776611425351538665162781316090964802801234493372427866930894827913465443931965254154829494577875758599482099181824522449312077768250830768282335001597040419199560509705364696473142448453825888112602753909548852639708652339052941829691802357120545328231809270356491743371932080628731303589640570873779967845174740515317401384878082881006046388936711640477755985481263907504747295012609419990373721246201677030517790352952793168766305099837441859803498821239340919805055103821539827677291373138006715339240126954586376422065097810852907639079727841301764553247527073788764069366420012194745702358295481365781809867944020220280822637957006755393575808086318932075864444206644691649334467698180811716568665213389686173592450920801465312529777966137198695916451869432324246404401672381978020728394418264502183131483366019384891972317817154372192103946638473715630226701801343515930442853848941825678870721238520597263859224934763623122188113706307506918260109689069251417142514218153491532129077723748506635489170892850760234351768218355008829647410655814882049239533702270536705630750317499788187009989251020178015601042277836283644323729779929935160925884515772055232896978333126427671291093993103773425910592303277652667641874842441076564447767097790392324958416348527735171981064673837142742974468992320406932506062834468937543016787815320616009057693404906146176607094380110915443261929000745209895959201159412324102274845482605404361871836330268992858623582145643879695210235266673372434423091577183277565800211928270391042391966426911155333594569685782817020325495552528875464466074620294766116004435551604735044292127916358748473501590215522120388281168021413865865168464569964810015633741255098479730138656275460161279246359783661480163871602794405482710196290774543628092612567507181773641749763254436773503632580004042919906963117397787875081560227368824967077635559869284901628768699628053790181848148810833946900016380791075960745504688912686792812391148880036720729730801354431325347713094186717178607522981373539126772812593958220524289991371690685650421575056729991274177149279608831502358697816190894908487717722503860872618384947939757440664912760518878124233683125467278331513186758915668300679210215947336858591201395360301678110413444411030903388761520488296909104689167671555373346622545575975202624771242796225983278405833585897671474205724047439720232895903726148688388003174146490203843590358527993123871042845981608996101945691646983837718267264685264869172948414153004604004299585035164101899027529366867431834955447458124140190754681607770977920579383895378192128847409929537040546962226547278807248685508046571043123854873351653070570784584243335550958221912862797205455466267099131902370311779690892786623112661337671178512943059323281605826535623848164192144732543731002062738466812351691016359252588256806438946389880872735284406462208149513862275239938938734905082625472417781702582044129853760499827899020083498387362992498125742354568439023012261733665820546785671147973065077035475620567428300187473019197310881157516777005071432012726354601912460800451608108641835539669946936947322271670748972850464195392966434725254724357659192969949061670189061433616907056148280980363243454128229968275980226694045642181328624517549652147221620839824594576613342710564957193564431561774500828376935700995419541839029151033187933907614207467028867968594985439789457300768939890070073924697461812855764662265412913204052279071212820653775058280040897163467163709024906774736309136904002615646432159560910851092445162454420141442641660181385990017417408244245378610158433361777292580611159192008414091888191208858207627011483671760749046980914443057262211104583300789331698191603917150622792986282709446275915009683226345073725451366858172483498470080840163868209726371345205439802277866337293290829914010645589761697455978409211409167684020269370229231743334499986901841510888993165125090001163719114994852024821586396216294981753094623047604832399379391002142532996476235163569009445086058091202459904612118623318278614464727795523218635916551883057930657703331498510068357135624341881884405780028844018129031378653794869614630467726914552953690154167025838032477842272417994513653582260971652588356712133519546838335349801503269359798167463231847628306340588324731228951257944267639877946713121042763380872695738609314631539148548792514028885025189788076023838995615684850391995855029256054176767663145354058496296796781349420116003325874431438746248313850214980401681940795687219268462617287403480967931949965604299190281810597603263251746405016454606266765529010639868703668263299050577706266397868453584384057673298268163448646707439990917504018892319267557518354054956017732907127219134577524905771512773358423314008356080926962298894163047287780054743798498545562870729968407382937218623831766524716090967192007237658894226186550487552614557855898773008703234726418384831040394818743616224455286163287628541175946460497027724490799275146445792982549802258601001772437840167723166802004162547244179415547810554178036773553354467030326469619447560812831933095679685582771932031205941616693902049665352189672822671972640029493307384717544753761937017882976382487233361813499414541694736549254840633793674361541081593464960431603544354737728802361047743115330785159902977771499610274627769759612488879448609863349422852847651310277926279743981957617505591300993377368240510902583759345170015340522266144077237050890044496613295859536020556034009492820943862994618834790932894161098856594954213114335608810239423706087108026465913203560121875933791639666437282836752328391688865373751335794859860107569374889645657187292540448508624449947816273842517229343960137212406286783636675845331904743954740664015260871940915743955282773904303868772728262065663129387459875317749973799293043294371763801856280061141619563942414312254397099163565102848315765427037906837175764870230052388197498746636856292655058222887713221781440489538099681072143012394693530931524054081215705402274414521876541901428386744260011889041724570537470755550581632831687247110220353727166112304857340460879272501694701067831178927095527253222125224361673343366384756590949728221809418684074238351567868893421148203905824224324264643630201441787982022116248471657468291146315407563770222740135841109076078464780070182766336227978104546331131294044833570134869585165267459515187680033395522410548181767867772152798270250117195816577603549732923724732067853690257536233971216884390878879262188202305529937132397194333083536231248870386416194361506529551267334207198502259771408638122015980894363561808597010080081622557455039101321981979045520049618583777721048046635533806616517023595097133203631578945644487800945620369784973459902004606886572701865867757842758530645706617127194967371083950603267501532435909029491516973738110897934782297684100117657987098185725131372267749706609250481876835516003714638685918913011736805218743265426063700710595364425062760458252336880552521181566417553430681181548267844169315284408461087588214317641649835663127518728182948655658524206852221830755306118393326934164459415342651778653397980580828158806300749952897558204686612590853678738603318442905510689778698417735603118111677563872589911516803236547002987989628986181014596471307916144369564690909518788574398821730583884980809523077569358851616027719521488998358632323127308909861560777386006984035267826785387215920936255817889813416247486456433211043194821421299793188104636399541496539441501383868748384870224681829391860319598667962363489309283087840712400431022706137591368056518861313458307990705003607588327248867879324093380071864152853317943535073401891193638546730000660453783784472469288830546979000131248952100446949032058838294923613919284305249167833012980192255157050378521810552961623637523647962685751660066539364142273063001648652613891842243501797455993616794063303522111829071597538821839777552812981538570168702202620274678647916644030729018445497956399844836807851997088201407769199261674991148329821854382718946282165387064858588646221611410343570342878862979083418871606214430014533275029715104673156021000043869510583773779766003460887624861640938645252177935289947578496255243925598620521409052346250847830487046492688313289470553891357290706967599556298586669559721686506052072801342104355762779184021797626656484580261591407173477009039475168017709900129391137881248534255949312866653465033728846390649968460644741907524313323903404908195233044389559060547854954620263256676813262435925020249516275607080900436460421497025691488555265022810327762115842282433269528629137662675481993546118143913367579700141255870143319434764035725376914388899683088262844616425575034001428982557620386364384137906519612917777354183694676232982904981261717676191554292570438432239918482261744350470199171258214687683172646078959690569981353264435973965173473319484798758064137926885413552523275720457329477215706850016950046959758389373527538622664943456437071610511521617176237598050900553232154896062817794302268640579555845730600598376482703339859420098582351400179507104569019191359062304102336798080907240196312675268916362136351032648077232914950859151265812143823371072949148088472355286394195993455684156344577951727033374238129903260198160571971183950662758220321837136059718025940870615534713104482272716848395524105913605919812444978458110854511231668173534838253724825347636777581712867205865148285317273569069839935110763432091319780314031658897379628301178409806410175016511072932907832177487566289310650383806093372841399226733384778203302020700517188941706465146238366720632742644336612174011766914919235570905644803016342294301837655263108450172510307540942604409687066288066265900569082451407632599158164499361455172452057020443093722305550217222299706209749268609762787409626448772056043078634808885709143464793241536214303199965695610753570417207285334250171325558818113295504095217830139465216436594262960768570585698507157151317262928960072587601564840556088613165411835958628710665496282599535127193244635791046554389165150954187306071015034430609582302257455974944275067630926322529966338219395202927917973247094559691016402983683080426309910481567503623509654924302589575273521412445149542462972258510120707802110188106722347972579330653187713438466713807546383471635428854957610942841898601794658721444495198801550804042506452191484989920400007310672369944655246020908767882300064337725657385010969899058191290957079866699453765080407917852438222041070599278889267745752084287526377986730360561230710723922581504781379172731261234878334034473833573601973235946604273704635201327182592410906040097638585857716958419563109577748529579836844756803121874818202833941887076311731615289811756429711334181497218078040465077657204457082859417475114926179367379999220181789399433337731146911970737861041963986422166045588965683206701337505745038872111332436739840284188639147633491695114032583475841514170325690161784931455706904169858050217798497637014758914810543205854914100662201721719726878930012101267481270235940855162601689425111458499658315589660460091525797881670384625905383256920520425791378948827579603278877535466861441826827797651258953563761485994485049706638406266121957141911063246061774180577212381659872472432252969098533628440799030007594546281549235506086481557928961969617060715201589825299772803520002610888814176506636216905928021516429198484077446143617891415191517976537848282687018750030264867608433204658525470555882410254654806040437372771834769014720664234434374255514129178503032471263418076525187802925534774001104853996960549926508093910691337614841834884596365621526610332239417467064368340504749943339802285610313083038484571294767389856293937641914407036507544622061186499127249643799875806537850203753189972618014404667793050140301580709266213229273649718653952866567538572115133606114457222800851183757899219543063413692302293139751143702404830227357629039911794499248480915071002444078482866598579406525539141041497342780203520135419925977628178182825372022920108186449448349255421793982723279357095828748597126780783134286180750497175747373730296280477376908932558914598141724852658299510882230055223242218586191394795184220131553319634363922684259164168669438122537135960710031743651959027712571604588486044820674410935215327906816032054215967959066411120187618531256710150212239401285668608469435937408158536481912528004920724042172170913983123118054043277015835629513656274610248827706488865037765175678806872498861657094846665770674577000207144332525555736557083150320019082992096545498737419756608619533492312940263904930982014700371161829485939931199955070455381196711289367735249958182011774799788636393286405807810818657337668157893827656450642917396685579555053188715314552353070355994740186225988149854660737787698781542360397080977412361518245964026869979609564523828584235953564615185448165799966460648261396618720304839119560250381111550938420209894591555760083897989949964566262540514195610780090298667014635238532066032574466820259430618801773091109212741138269148784355679352572808875543164693077235363768226036080174040660997151176880434927489197133087822951123746632635635328517394189466510943745768270782209928468034684157443127739811044186762032954475468077511126663685479944460934809992951875666499902261686019672053749149951226823637895865245462813439289338365156536992413109638102559114643923805213907862893561660998836479175633176725856523591069520326895990054884753424160586689820067483163174286329119633399132709086065074595260357157323069712106423424081597068328707624437165532750228797802598690981111226558888151520837482450034463046505984569690276166958278982913613535306291331427881888249342136442417833519319786543940201465328083410341785272489879050919932369270996567133507711905899945951923990615156165480300145359212550696405345263823452155999210578191371030188979206408883974767667144727314254467923500524618849237455307575734902707342496298879996942094595961008702501329453325358045689285707241207965919809225550560061971283541270202072583994171175520920820151096509526685113897577150810849443508285458749912943857563115668324566827992991861539009255871716840495663991959154034218364537212023678608655364745175654879318925644085274489190918193411667583563439758886046349413111875241038425467937999203546910411935443113219136068129657568583611774564654674861061988591414805799318725367531243470335482637527081353105570818049642498584646147973467599315946514787025065271083508782350656532331797738656666181652390017664988485456054961300215776115255813396184027067814900350252876823607822107397102339146870159735868589015297010347780503292154014359595298683404657471756232196640515401477953167461726208727304820634652469109953327375561090578378455945469160223687689641425960164689647106348074109928546482353083540132332924864037318003195202317476206537726163717445360549726690601711176761047774971666890152163838974311714180622222345718567941507299526201086205084783127474791909996889937275229053674785020500038630036526218800670926674104806027341997756660029427941090400064654281074454007616429525362460261476180471744322889953285828397762184600967669267581270302806519535452053173536808954589902180783145775891280203970053633193821100095443241244197949192916205234421346395653840781209416214835001155883618421164283992454027590719621537570187067083731012246141362048926555668109467076386536083015847614512581588569610030337081197058344452874666198891534664244887911940711423940115986970795745946337170243268484864632018986352827092313047089215684758207753034387689978702323438584381125011714013265769320554911860153519551654627941175593967947958810333935413289702528893533748106257875620364294270257512121137330213811951395756419122685155962476203282038726342066227347868223036522019655729325905068134849292299647248229359787842720945578267329975853818536442370617353517653060396801087899490506654491544577952166038552398013798104340564182403396162494910454712104839439200945914647542424785991096900046541371091630096785951563947332190934511838669964622788855817353221326876634958059123761251203010983867841195725887799206041260049865895027247133146763722204388398558347770112599424691208308595666787531942465131444389971195968105937957532155524204659410081418351120174196853432672343271868099625045432475688702055341969199545300952644398446384346598830418262932239295612610045884644244285011551557765935780379565026806130721758672048541797157896401554276881090475899564605488362989140226580026134158039480357971019004151547655018391755772677897148793477372747525743898158705040701968215101218826088040084551332795162841280679678965570163917067779841529149397403158167896865448841319046368332179115059107813898261026271979696826411179918656038993895418928488851750122504754778999508544083983800725431468842988412616042682248823097788556495765424017114510393927980290997604904428832198976751320535115230545666467143795931915272680278210241540629795828828466355623580986725638200565215519951793551069127710538552661926903526081367717666435071213453983711357500975854405939558661737828297120544693182260401670308530911657973113259516101749193468250063285777004686987177255226525708428745733039859744230639751837209975339055095883623642814493247460522424051972825153787541962759327436278819283740253185668545040893929401040561666867664402868211607294830305236465560955351079987185041352121321534713770667681396211443891632403235741573773787908838267618458756361026435182951815392455211729022985278518025598478407179607904114472041476091765804302984501746867981277584971731733287305281134969591668387877072315968334322509070204019030503595891994666652037530271923764252552910347950343816357721698115464329245608951158732012675424975710520894362639501382962152214033621065422821876739580121286442788547491928976959315766891987305176388698461503354594898541849550251690616888419122873385522699976822609645007504500096116866129171093180282355042553653997166054753907348915189650027442328981181709248273610863801576007240601649547082331349361582435128299050405405333992577071321011503713898695076713447940748097845416328110406350804863393555238405735580863718763530261867971725608155328716436111474875107033512913923595452951407437943144900950809932872153235195999616750297532475931909938012968640379783553559071355708369947311923538531051736669154087312467233440702525006918026747725078958903448856673081487299464807786497709361969389290891718228134002845552513917355978456150353144603409441211512001738697261466786933733154341007587514908295822756919350542184106448264951943804240543255345965248373785310657979037977505031436474651422484768831323479762673689855474944277949916560108528257618964374464656819789319422077536824661110427671936481836360534108748971066866318805026555929568123959680449295166615409802610781691689418764353363449482900125929366840591370059526914934421861891742142561071896846626335874414976973921566392767687720145153302241853125308442727245771161505550519076276250016522166274796257424425420546785767478190959486500575711016264847833741198041625940813327229905891486422127968042984725356237202887830051788539737909455265135144073130049869453403245984236934627060242579432563660640597549471239092372458126154582526667304702319359866523378856244229188278436440434628094888288712101968642736370461639297485616780079779959696843367730352483047478240669928277140069031660709951473154191919911453182543906294573298686613524886500574780251977607442660798300291573030523199052185718628543687577860915726925232573171665625274275808460620177046433101212443409281314659760221360416223031167750085960128475289259463348312408766740128170543067985261868949895004918275008304998926472034986965363326210919830621495095877228260815566702155693484634079776879525038204442326697479264829899016938511552124688935873289878336267819361764023681714606495185508780596635354698788205094762016350757090024201498400967867845405354130050482404996646978558002628931826518708714613909521454987992300431779500489569529280112698632533646737179519363094399609176354568799002814515169743717518330632232942199132137614506411391269837128970829395360832883050256072727563548374205497856659895469089938558918441085605111510354367477810778500572718180809661542709143010161515013086522842238721618109043183163796046431523184434669799904865336375319295967726080853457652274714047941973192220960296582500937408249714373040087376988068797038047223488825819819025644086847749767508999164153502160223967816357097637814023962825054332801828798160046910336602415904504637333597488119998663995617171089911809851197616486499233594328274275983382931099806461605360243604040848379619072542165869409486682092396143083817303621520642297839982533698027039931804024928814430649614747600087654305571672697259114631990688823893005380061568007730984416061355843701277573463708822073792921409548717956947854414951731561828176343929570234710460088230637509877521391223419548471196982303169544468045517922669260631327498272520906329003279972932906827204647650366969765227673645419031639887433042226322021325368176044169612053532174352764937901877252263626883107879345194133825996368795020985033021472307603375442346871647223795507794130304865403488955400210765171630884759704098331306109510294140865574071074640401937347718815339902047036749084359309086354777210564861918603858715882024476138160390378532660185842568914109194464566162667753712365992832481865739251429498555141512136758288423285957759412684479036912662015308418041737698963759002546999454131659341985624780714434977201991702665380714107259910648709897259362243300706760476097690456341576573395549588448948093604077155688747288451838106069038026528318275560395905381507241627615047252487759578650784894547389096573312763852962664517004459626327934637721151028545472312880039058405918498833810711366073657536918428084655898982349219315205257478363855266205400703561310260405145079325925798227406012199249391735122145336707913500607486561657301854049217477162051678486507913573336334257685988361252720250944019430674728667983441293018131344299088234006652915385763779110955708000600143579956351811596764725075668367726052352939773016348235753572874236648294604770429166438403558846422370760111774821079625901180265548868995181239470625954254584491340203400196442965370643088660925268811549596291166168612036195319253262662271108142149856132646467211954801142455133946382385908540917878668826947602781853283155445565265933912487885639504644196022475186011405239187543742526581685003052301877096152411653980646785444273124462179491306502631062903402737260479940181929954454297256377507172705659271779285537195547433852182309492703218343678206382655341157162788603990157495208065443409462446634653253581574814022471260618973060860559065082163068709634119751925774318683671722139063093061019303182326666420628155129647685313861018672921889347039342072245556791239578260248978371473556820782675452142687314252252601795889759116238720807580527221031327444754083319215135934526961397220564699247718289310588394769170851420631557192703636345039529604362885088555160008371973526383838996789184600327073682083234847108471706160879195227388252347506380811606090840124222431476103563328940609282430125462013806032608121942876847907192546246309055749298781661271916548229644317263587524548607563020667656942355342774617635549231817456159185668061686428714964129290560130053913469569829490891003991259088290348791943368696942620662946948514931472688923571615032405542263391673583102728579723061998175868700492227418629077079508809336215346303842967525604369606110193842723883107587771653594778681499030978765900869583480043137176832954871752604714113064847270887246697164585218774442100900090916189819413456305028950484575822161887397443918833085509908566008543102796375247476265353031558684515120283396640547496946343986288291957510384781539068343717740714095628337554413567955424664601335663617305811711646062717854078898495334329100315985673932305693426085376230981047171826940937686754301837015557540822371538037838383342702379535934403549452173960327095407712107332936507766465603712364707109272580867897181182493799540477008369348889220963814281561595610931815183701135104790176383595168144627670903450457460997444500166918675661035889313483800512736411157304599205955471122443903196476642761038164285918037488354360663299436899730090925177601162043761411616688128178292382311221745850238080733727204908880095181889576314103157447684338100457385008523652069340710078955916549813037292944462306371284357984809871964143085146878525033128989319500645722582281175483887671061073178169281242483613796475692482076321356427357261609825142445262515952514875273805633150964052552659776922077806644338105562443538136258941809788015677378951310313157361136026047890761945591820289365770116416881703644242694283057457471567494391573593353763114830246668754727566653059819746822346578699972291792416156043557665183382167059157867799311835820189855730344883681934418305987021880502259192818047775223884407167894780414701414651073580452021499197980812095692195622632313741870979731320870864552236740416185590793816745658234353037283309503729022429802768451559528656923189798000383061378732434546500582722712325031420712488100290697226311129067629080951145758060270806092801504406139446350643069742785469477459876821004441453438033759717384777232052065301037861326418823586036569054773343070911759152582503029410738914441818378779490613137536794654893375260322906277631983337976816641721083140551864133302224787118511817036598365960493964571491686005656771360533192423185262166760222073368844844409234470948568027905894191829969467724456269443308241243846160408284006424867072583661011433404214473683453638496544701067827313169538435919120440283949541956874453676459875488726170687163109591315801609722382049772577307454562979127906177531663252857205858766376754282917933549923678212008601904369428956102301731743150352204665675088491593025926618816581008701658499456495586855628208747248318351516339189292646558880593601275151838235485893426165223086697314511412035659916934103076974774451947043836739600076578628245472064617380804602903639144493859012422380173377038154675297645596518492676039300171943042511794045679862114630138402371099347243455794730048929825402680821621522346560274258486595687074510352794291633405915025075992398611224340312056999780516223878772230396359709132856830486160362127579561601328561866388146004722200580017580282279272167842720649966956840905752590774886105493806116954293569077377792821084159737469613143291808510446953973485067590503662391722108732333169909603363771705474725026941732982890400239372879549386540463828596742216318201530139629734398479588628632934746650690284066719018081265539973675916799759010867483920062877888531102781695087545740384607594616919584610655963327283485609570305572502494416337066573150237126843581984154103154401008430380631442183776750349813408169325201240813452285974626715177152223063741359255747513535160669108359443999692315898156732033027129284241219651936303734407981204656795322986357374589031654007016472204989445629050395873788912680565516464274460174738175296313458739390484560414203426465560422112239134631023161290836446988901247285192778589195228773637440432659264672239982186452797664826673070168802722052338600372842903155828454593854349099449420750911108532138744823216151007808922516285123275724355101999038195993350032641446053470357293073912578481757987468353429629749652545426864234949270336399427519354240001973125098882419600095766257217621860474573769577649582201796258392376391717855799468922496750179251915218219624653575570564228220399546682648329822996167217080156801080799777126517156274295763666959661983507435667132218383358509536665806605597148376773866922551603463644386269977295750658468929599809168949981898588529537874489519527097766262684177088590284321676352132630838812766335363319004134332844347630067982023716933653652880580156390360562722752187272454764258840995216482554453662083811789117725225682611478014242896970967121967502094421226279437073328703410646312100557376727450271638975234111426287828736758358819056742163061523416789476056879277154789714326222041069587947186435439940738639948986836168919377836648327137363654676901173760246643082285362494712605173293777247276797635865806019396287718060679122426813922872134061694882029506831654589707623668302556167559477498715183426989208952182644710514911419441192277010977616645850068963849426165593473112961064282379048216056210094265076173838082479030510998790719611852832556787472942907151041468948104916751035295897242381802288151276582257190705537652455285511598636421244284176256230139538669970308943645907600684938040875210854159851278070333207779865635907968462191534944587677170063778573171211036517486371634098385626541555573292664616402279791195975248525300376741774056125700303625811704838385391207273191845064713669122576415213769896260940351804147432053600369234179035440735703058314741623452840188940808983125191307741823338981880316339159565954543405777784331681162551898060409183018907512170192983622897099598983405484962284289398469847938668614293324543983592637036699355184231661615244505980576745765335552338715678211466689996845227042954589710922163652573965950289645637766038988037941517917867910675199009966139206238732318786758420544279396366759104126821843375015743069045967947046685602358283919759975285865384338189120042853787549302768972168199113340697282255535300044743958830079799736518459131437946494086272149669719100359399974735262764126125995350902609540048669398955899487421379590802893196914845826873123710180229775301190684280440780938156598081694611679374425663244656799606363751546304833112722231812338371779800439731087402647536582575657351059978314264831879619843765495877803685261751835391844920488198629786329743136948511780579298636452193232481339393090754566368038513630619718033957979522539508697432546502659123585049283028832934489284591373621624852528877442891851104093746333590660233239711922814450735588373324057814862662207486215513375036775585494138678352928273109003823116855374520901095101174796663003330352534143230024288248051396631446632656081582045216883922312025671065388459503224002320453633895521539919011035217362720909565500846486605368975498478995875596103167696587161281951919668893326641203784750417081752273735270989343717167642329956935697166213782736138899530515711822960896394055380431939398453970864418654291655853168697537052760701061488025700785387150835779480952313152747735711713643356413242974208137266896149109564214803567792270566625834289773407718710649866150447478726164249976671481383053947984958938064202886667951943482750168192023591633247099185942520392818083953020434979919361853380201407072481627304313418985942503858404365993281651941497377286729589582881907490040331593436076189609669494800067194371424058105327517721952474344983414191979918179909864631583246021516575531754156198940698289315745851842783390581029411600498699307751428513021286202539508732388779357409781288187000829944831476678183644656510024467827445695591845768068704978044824105799710771577579093525803824227377612436908709875189149049904225568041463131309240101049368241449253427992201346380538342369643767428862595140146178201810734100565466708236854312816339049676558789901487477972479202502227218169405159042170892104287552188658308608452708423928652597536146290037780167001654671681605343292907573031466562485809639550080023347676187068086526878722783177420214068980703410506200235273632267291964034093571225623659496432076928058165514428643204955256838543079254299909353199329432966018220787933122323225928276556048763399988478426451731890365879756498207607478270258861409976050788036706732268192473513646356758611212953074644777149423343867876705824452296605797007134458987594126654609414211447540007211790607458330686866231309155780005966522736183536340439991445294960728379007338249976020630448806064574892740547730693971337007962746135534442514745423654662752252624869916077111131569725392943756732215758704952417232428206555322808868670153681482911738542735797154157943689491063759749151524510096986573825654899585216747260540468342338610760823605782941948009334370046866568258579827323875158302566720152604684361412652956519894291184887986819088277339147282063794512260294515707367105637720023427811802621502691790400488001808901847311751199425460594416773315777951735444490965752131026306836047140331442314298077895617051256930051804287472368435536402764392777908638966566390166776625678575354239947427919442544664643315554138265543388487778859972063679660692327601733858843763144148113561693030468420017434061395220072403658812798249143261731617813894970955038369479594617979829257740992171922783223006387384996138434398468502234780438733784470928703890536420557474836284616809363650973790900204118525835525201575239280826462555785658190226958376345342663420946214426672453987171047721482128157607275305173330963455909323664528978019175132987747952929099598069790148515839540444283988381797511245355548426126784217797728268989735007954505834273726937288386902125284843370917479603207479554080911491866208687184899550445210616155437083299502854903659617362726552868081324793106686855857401668022408227992433394360936223390321499357262507480617409173636062365464458476384647869520547719533384203403990244761056010612777546471464177412625548519830144627405538601855708359981544891286863480720710061787059669365218674805943569985859699554089329219507269337550235821561424994538234781138316591662683103065194730233419384164076823699357668723462219641322516076261161976034708844046473083172682611277723613381938490606534404043904909864126903479263503943531836741051762565704797064478004684323069430241749029731181951132935746854550484711078742905499870600373983113761544808189067620753424526993443755719446665453524088287267537759197074526286322840219629557247932987132852479994638938924943286917770190128914220188747760484939855471168524810559991574441551507431214406120333762869533792439547155394213121021954430556748370425907553004950664994802614794524739012802842646689229455664958621308118913500279654910344806150170407268010067948926855360944990373928383520627992820181576427054962997401900837493444950600754365525758905546552402103412862124809003162941975876195941956592556732874237856112669741771367104424821916671499611728903944393665340294226514575682907490402153401026923964977275904729573320027982816062130523130658731513076913832317193626664465502290735017347656293033318520949298475227462534564256702254695786484819977513326393221579478212493307051107367474918016345667888810782101151826314878755138027101379868751299375133303843885631415175908928986956197561123025310875057188962535763225834275763348421016668109884514141469311719314272028007223449941999003964948245457520704922091620614222912795322688239046498239081592961111003756999529251250673688233852648213896986384052437049402152187547825163347082430303521036927849762517317825860862215614519165573478940019558704784741658847364803865995119651409542615026615147651220820245816010801218275982577477652393859159165067449846149161165153821266726927461290533753163055654440793427876550267301214578324885948736899073512166118397877342715872870912311383472485146035661382188014840560716074652441118841800734067898587159273982452147328317214621907330492060817440914125388918087968538960627860118193099489240811702350413554126823863744341209267781729790694714759018264824761112414556423937732224538665992861551475342773370683344173073150805440138894084087253197595538897613986400165639906934600670780501058567196636796167140097031535132386972899001749862948883362389858632127176571330142071330179992326381982094042993377790345261665892577931395405145369730429462079488033141099249907113241694504241391265397274078984953073730364134893688060340009640631540701820289244667315059736321311926231179142794944897281477264038321021720718017561601025111179022163703476297572233435788863537030535008357679180120653016668316780269873860755423748298548246360981608957670421903145684942967286646362305101773132268579232832164818921732941553151386988781837232271364011755881332524294135348699384658137175857614330952147617551708342432434174779579226338663454959438736807839569911987059388085500837507984051126658973018149321061950769007587519836861526164087252594820126991923916722273718430385263107266000047367872474915828601694439920041571102706081507270147619679971490141639274282889578424398001497985658130305740620028554097382687819891158955487586486645709231721825870342960508203415938806006561845735081804032347750084214100574577342802985404049555529215986404933246481040773076611691605586804857302606467764258503301836174306413323887707999698641372275526317649662882467901094531117120243890323410259937511584651917675138077575448307953064925086002835629697045016137935696266759775923436166369375035368699454550392874449940328328128905560530091416446608691247256021455381248285307613556149618444364923014290938289373215312818797541139219415606631622784836152140668972661027123715779503062132916001988806369127647416567067485490795342762338253943990022498972883660263920518704790601584084302914787302246651371144395418253441269003331181914268070735159284180415100555199146564934872796969351992963117195821262627236458009708099166752820365818699111948365866102758375863322993225541477479210421324166848264953111826527351008031659958888814809945737293785681411438021523876706455063233067233939551964260397443829874822322662036352861302543796600943104500158604854027036789711934695579989189112302233381602302236277726084846296189550730850698061500281436425336666311433321645213882557346329366870956708432252564333895997812402164189946978348320376011613913855499933990786652305860332060641949298931012423081105800169745975038516887112037747631577311831360002742502722451570906304496369230938382329175076469684003556425503797106891999812319602533733677437970687713814747552190142928586781724044248049323750330957002929126630316970587409214456472022710796484778657310660832173093768033821742156446602190335203981531618935787083561603302255162155107179460621892674335641960083663483835896703409115513087820138723494714321400450513941428998350576038799343355677628023346565854351219361896876831439866735726040869511136649881229957801618882834124004126142251475184552502502640896823664946401177803776799157180146386554733265278569418005501363433953502870836220605121839418516239153709790768084909674194289061134979961034672077354959593868862427986411437928435620575955500144308051267664432183688321434583708549082240014585748228606859593502657405750939203135881722442164955416889785558265198046245527898343289578416968890756237467281044803018524217706136533236073856228166664597654076844715963930782091017090763377917711485205493367936868430832404126789220929930411890501756484917499452393770674524578019171841679541825554377930299249277892416277257788147974770446005423669346157135208417428211847353652367573702352791459837645712257646122605628127852169580892808988394594406165340521932514843306105322700231133680378433377389724881307874325614952744243584753011150345103737688223837573804282007358586938044331529253129961025096113761670187568525921208929131354473196308440066835155160913925692912175784379179004808848023029304392630921342768601226558630456913133560978156776098711809238440656353136182676923761613389237802972720736243967239854144480757286813436768000573823963610796223140429490728058551444771338682314499547929338131259971996894072233847404542592316639781608209399269744676323921370773991899853301483814622364299493902073285072098040905300059160091641710175605409814301906444379905831277826625762288108104414704097708248077905168225857235732665234414956169007985520848841886027352780861218049418060017941147110410688703738674378147161236141950474056521041002268987858525470689031657094677131822113205505046579701869337769278257145248837213394613987859786320048011792814546859096532616616068403160077901584946840224344163938313618742275417712170336151163782359059685168880561304838542087505126933144171705880517278127917564053282929427357971823360842784676292324980318169828654166132873909074116734612367109059236155113860447246378721244612580406931724769152219217409096880209008801535633471775664392125733993165330324425899852598966724744126503608416484160724482125980550754851232313331300621490042708542735985913041306918279258584509440150719217604794274047740253314305451367710311947544521321732225875550489799267468541529538871443696399406391099267018219539890685186755868574434469213792094590683677929528246795437302263472495359466300235998990248299853826140395410812427393530207575128774273992824866921285637240069184859771126480352376025469714309316636539718514623865421671429236191647402172547787238964043145364190541101514371773797752463632741619269990461595895793940622986041489302535678633503526382069821487003578061101552210224486633247184367035502326672749787730470216165019711937442505629639916559369593557640005236360445141148916155147776301876302136068825296274460238077523189646894043033182148655637014692476427395401909403584437251915352134557610698046469739424511797999048754951422010043090235713636892619493763602673645872492900162675597083797995647487354531686531900176427222751039446099641439322672532108666047912598938351926694497553568096931962642014042788365702610390456105151611792018698900673027082384103280213487456720062839744828713298223957579105420819286308176631987048287388639069922461848323992902685392499812367091421613488781501234093387999776097433615750910992585468475923085725368613605356762146929424264323906626708602846163376051573599050869800314239735368928435294958099434465414316189806451480849292695749412903363373410480943579407321266012450796613789442208485840536446021616517885568969302685188950832476793300404851688934411125834396590422211152736276278672366665845757559585409486248261694480201791748223085835007862255216359325125768382924978090431102048708975715033330963651576804501966025215527080352103848176167004443740572131294252820989545456276344353575741673638980108310579931697917916718271145837435222026387771805250290791645414791173616253155840768495583288190293564201219633684854080865928095131505012602919562576032932512847250469881908146475324342363863860247943921015193235101390117789997483527186469346024554247028375300033725403910085997650987642832802908445662021678362267272292737780213652404028817217012490974899454430826861772239385250883760749742195942655217301733355851389407457348144161511380845358039740277795072051893487170722955427683655826706766313911972211811528466502223383490906676554168336907959409404576472940901354356409277969379842065738891481990225399022315913388145851487225126560927576795873759207013915029216513720851137197522734365458411622066281660256333632074449918511469174455062297146086578736313585389023662557285424516018080487167823688885575325066254262367702604215835160174851981885460860036597606743233346410471991027562358645341748631726556391320606407754779439671383653877377610828300019937359760370467245737880967939894493795829602910746901609451288456550071458091887879542641820145369659962842686882363495879277007025298960996798975941955735253914237782443302746708282008722602053415292735847582937522487377937899136764642153727843553986244015856488692101644781661602962113570056638347990334049623875941092886778920270077504951511405782565295015024484968204744379710872943108541684540513016310902267112951959140520827546866418137305837933236150599142045255880213558474751516267815309465541240524091663857551298894834797423322854504140527354235070335984964593699534959698554244978249586929179182415068053002553370412778703476446244329205906832901886692400222391918714603175399666877477960121790688623311002908668305431787009355066944389131913333586368037447530664502418437136030852288582121720231274167009740351431532131803978033680228154223490183737494117973254478594157962104378787072154814091725163615415163381388912588517924237727229603497305533840942889918919161186249580560073570527227874940321250645426206304469470804277945973817146810395192821550688079136701210109944220737024613687196031491162370967939354636396448139025711768057799751751298979667073292674886430097398814873780767363792886767781170520534367705731566895899181530825761606591843760505051704242093231358724816618683821026679970982966436224723644898648976857100173643547336955619347638598187756855912376232580849341570570863450733443976604780386678461711520325115528237161469200634713570383377229877321365028868868859434051205798386937002783312365427450532283462669786446920780944052138528653384627970748017872477988461146015077617116261800781557915472305214759943058006652042710117125674185860274188801377931279938153727692612114066810156521441903567333926116697140453812010040811760123270513163743154487571768761575554916236601762880220601068655524141619314312671535587154866747899398685510873576261006923021359580838145290642217792987748784161516349497309700794368305080955621264592795333690631936594413261117944256602433064619312002953123619348034504503004315096798588111896950537335671086336886944665564112662287921812114121425167348136472449021275252555647623248505638391391630760976364990288930588053406631352470996993362568102360392264043588787550723319888417590521211390376609272658409023873553418516426444865247805763826160023858280693148922231457758783791564902227590699346481624734399733206013058796068136378152964615963260698744961105368384203105364183675373594176373955988088591188920114871545460924735613515979992999722298041707112256996310945945097765566409972722824015293663094891067963296735505830412258608050740410916678539569261234499102819759563955711753011823480304181029089719655278245770283085321733741593938595853203645590564229716679900322284081259569032886928291260139267587858284765599075828016611120063145411315144108875767081854894287737618991537664505164279985451077400771946398046265077776614053524831090497899859510873112620613018757108643735744708366215377470972660188656210681516328000908086198554303597948479869789466434027029290899143432223920333487108261968698934611177160561910681226015874410833093070377506876977485840324132474643763087889666151972556180371472590029550718424245405129246729039791532535999005557334600111693557020225722442772950263840538309433999383388018839553821540371447394465152512354603526742382254148328248990134023054550811390236768038649723899924257800315803725555410178461863478690646045865826036072306952576113184134225274786464852363324759102670562466350802553058142201552282050989197818420425028259521880098846231828512448393059455162005455907776121981297954040150653985341579053629101777939776957892084510979265382905626736402636703151957650493344879513766262192237185642999150828898080904189181015450813145034385734032579549707819385285699926238835221520814478940626889936085239827537174490903769904145555260249190126341431327373827075950390882531223536876389814182564965563294518709637484074360669912550026080424160562533591856230955376566866124027875883101021495284600804805028045254063691285010599912421270508133194975917146762267305044225075915290251742774636494555052325186322411388406191257012917881384181566918237215400893603475101448554254698937834239606460813666829750019379115061709452680984785152862123171377897417492087541064556959508967969794980679770961683057941674310519254486327358885118436597143583348756027405400165571178309126113117314169066606067613797690123141099672013123730329707678988740099317309687380126740538923612230370779727025191340850390101739924877352408881040807749924412635346413181858792480760553268122881584307471326768283097203149049868884456187976015468233715478415429742230166504759393312132256510189175368566338139736836336126010908419590215582111816677413843969205870515074254852744810154541079359513596653630049188769523677579147319184225806802539818418929888943038224766186405856591859943091324575886587044653095332668532261321209825839180538360814144791320319699276037194760191286674308615217243049852806380129834255379486287824758850820609389214668693729881191560115633701248675404205911464930888219050248857645752083363921499441937170268576222251074166230901665867067714568862793343153513505688216165112807318529333124070912343832502302341169501745502360505475824093175657701604884577017762183184615567978427541088499501610912720817913532406784267161792013428902861583277304794830971705537485109380418091491750245433432217445924133037928381694330975012918544596923388733288616144238100112755828623259628572648121538348900698511503485369544461542161283241700533583180520082915722904696365553178152398468725451306350506984981006205514844020769539324155096762680887603572463913955278222246439122592651921288446961107463586148252820017348957533954255019475442643148903233373926763409115527189768429887783617346613535388507656327107814312435018965109238453660236940276060642119384227665755210663671879603217527184404651560427289869560206997012906367847161654793068868305846508082886614111979138822898112498261434559408961813509226857611474609406147937240008842153535862052780125014270055274468359151840373309373580494342483940467505708347927948338133276237937844629209323999417593374917899786484958148818865149169302451512835579818112344900827168644548306546633975256079615935830821400021951611342337058359111545217293721664061708131602078213341260356852013161345136871600980378712556766143923146458085652084039744217352744813741215277475202259244561520365608268890193913957991844109971588312780020898275935898106482117936157951837937026741451400902833064466209280549839169261068975151083963132117128513257434964510681479694782619701483204392206140109523453209269311762298139422044308117317394338867965739135764377642819353621467837436136161591167926578700137748127848510041447845416464568496606699139509524527949914769441031612575776863713634644477006787131066832417871556281779122339077841275184193161188155887229676749605752053192594847679397486414128879475647133049543555044790277128690095643357913405127375570391806822344718167939329121448449553897728696601037841520390662890781218240141299368590465146519209198605347788576842696538459445700169758422531241268031418456268722581132040056433413524302102739213788415250475704533878002467378571470021087314693254557923134757243640544448132093266582986850659125571745568328831440322798049274104403921761438405750750288608423536966715191668510428001748971774811216784160854454400190449242294333666338347684438072624307319019363571067447363413698467328522605570126450123348367412135721830146848071241856625742852208909104583727386227300781566668914250733456373259567253354316171586533339843321723688126003809020585719930855573100508771533737446465211874481748868710652311198691114058503492239156755462142467550498676710264926176510110766876596258810039163948397811986615585196216487695936398904500383258041054420595482859955239065758108017936807080830518996468540836412752905182813744878769639548306385089756146421874889271294890398025623046812175145502330254086076115859321603465240763923593699949180470780496764486889980902123735780457040380820770357387588525976042434608851075199334470112741787878845674656640471901619633546770714090590826954225196409446319547658653032104723804625249971910690110456227579220926904132753699634145768795242244563973018311291451151322757841320376225862458224784696669785947914981610522628786944136373683125108310682898766123782697506343047263278453719024447970975017396831214493357290791648779915089163278018852504558488782722376705263811803792477835540018117452957747339714012352011459901984753358434861297092928529424139865507522507808919352104173963493428604871342370429572757862549365917805401652536330410692033704691093097588782938291296447890613200063096560747882082122140978472301680600835812336957051454650181292694364578357815608503303392466039553797630836137289498678842851139853615593352782103740733076818433040893624460576706096188294529171362940967592507631348636606011346115980434147450705511490716640635688739020690279453438236930531133440901381392849163507484449076828386687476663619303412376248380175840467851210698290605196112357188811150723607303158506622574566366740720668999061320627793994112805759798332878792144188725498543014546662945079670707688135022230580562225942983096887732856788971494623888272184647618153045844390967248232348259587963698908456664795754200195991919240707615823002328977439748112690476546256873684352229063217889227643289360535947903046811114130586348244566489159211382258867880972564351646404364328416076247766114349880319792230537889671148058968061594279189647401954989466232962162567264739015818692956765601444248501821713300527995551312539849919933907083138030214072556753022600033565715934283182650908979350869698950542635843046765145668997627989606295925119763672907762567862769469947280606094290314917493590511523235698715397127866718077578671910380368991445381484562682604003456798248689847811138328054940490519768008320299631757043011485087384048591850157264392187414592464617404735275250506783992273121600117160338604710710015235631159734711153198198710616109850375758965576728904060387168114313084172893710817412764581206119054145955378853200366615264923610030157044627231777788649806700723598889528747481372190175074700005571108178930354895017924552067329003818814068686247959272205591627902292600592107710510448103392878991286820705448979977319695574374529708195463942431669050083984398993036790655541596099324867822475424361758944371791403787168166189093900243862038610001362193667280872414291108080291896093127526202667881902085595708111853836166128848729527875143202956393295910508349687029060692838441522579419764824996318479414814660898281725690484184326061946254276693688953540732363428302189694947766126078346328490315128061501009539164530614554234923393806214007779256337619373052025699319099789404390847443596972052065999017828537676265683558625452697455260991024576619614037537859594506363227095122489241931813728141668427013096050734578659047904243852086508154491350136491698639048125666610843702294730266721499164849610746803261583352580352858275799038584091667618877199539888680431991650866887781701439663176815592262016991396613153738021294160006906947533431677802632207226265881842757216055461439677336258462997385077307751473833315101468395296411397329672457933540390136107395245686243008096720460995545708974893048753897955544443791303790422346037768729236001386569593952300768091377768847789746299699489949016141866131552200856673695770822720338936659590666350594330040363762591189195691561626122704788696510356062748423100605472091437069471661080277379848576543481249822444235828329813543645124092220896643987201997945619030397327254617823136363375927622656301565813545578319730419339269008282952718252138855126583037630477490625995514925943105307478901043009876580816508144862607975129633326675259272351611791836777128931053144471668835182920514343609292493191180249366051791485330421043899773019267686085347768149502299280938065840007311767895491286098112311307002535600347898600653805084532572431553654422067661352337408211307834360326940015926958459588297845649462271300855594293344520727007718206398887404742186697709349647758173683580193168322111365547392288184271373843690526638607662451284299368435082612881367358536293873792369928837047900484722240370919885912556341130849457067599032002751632513926694249485692320904596897775676762684224768120033279577059394613185252356456291805905295974791266162882381429824622654141067246487216174351317397697122228010100668178786776119825961537643641828573481088089988571570279722274734750248439022607880448075724807701621064670166965100202654371260046641935546165838945950143502160890185703558173661823437491622669077311800121188299737319891006060966841193266075165452741829459541189277264192546108246351931647783837078295218389645376236304858042774417907169146356546201215125418664885396161542055152375000426794253417764590821513675258479774465114750438460596325820468809667795709044645884673847481638045635188183210386594798204376334738389017759714236223057776395541011294523488098341476645559342209402059733452337956309441446698222457026367119493286653989491344225517746402732596722993581333110831711807234044326813737231209669052411856734897392234152750707954137453460386506786693396236535556479102508529284294227710593056660625152290924148057080971159783458351173168204129645967070633303569271821496292272073250126955216172649821895790908865085382490848904421755530946832055636316431893917626269931034289485184392539670922412565933079102365485294162132200251193795272480340133135247014182195618419055761030190199521647459734401211601239235679307823190770288415814605647291481745105388060109787505925537152356112290181284710137917215124667428500061818271276125025241876177485994084521492727902567005925854431027704636911098800554312457229683836980470864041706010966962231877065395275783874454229129966623016408054769705821417128636329650130416501278156397799631957412627634011130135082721772287129164002237230234809031485343677016544959380750634285293053131127965945266651960426350406454862543383772209428482543536823186182982713182489884498260285705690699045790998144649193654563259496570044689011049923939218088155626191834404362264965506449848521612498442375928443642612004256628602157801140467879662339228190804577624109076487087406157070486658398144845855803277997327929143195789110373530019873110486895656281917362036703039179710646309906285483702836118486672219457621775034511770110458001291255925462680537427727378863726783016568351092332280649908459179620305691566806180826586923920561895421631986004793961133953226395999749526798801074576466538377400437463695133685671362553184054638475191646737948743270916620098057717103475575333102702706317395612448413745782734376330101853438497450236265733191742446567787499665000938706441886733491099877926005340862442833450486907338279348425305698737469497333364267191968992849534561045719338665222471536681145666596959735075972188416698767321649331898967182978657974612216573922404856900225324160367805329990925438960169901664189038843548375648056012628830409421321300206164540821986138099462721214327234457806819925823202851398237118926541234460723597174777907172041523181575194793527456442984630888846385381068621715274531612303165705848974316209831401326306699896632888532682145204083110738032052784669279984003137878996525635126885368435559620598057278951754498694219326972133205286374577983487319388899574634252048213337552584571056619586932031563299451502519194559691231437579991138301656117185508816658756751184338145761060365142858427872190232598107834593970738225147111878311540875777560020664124562293239116606733386480367086953749244898068000217666674827426925968686433731916548717750106343608307376281613984107392410037196754833838054369880310983922140260514297591221159148505938770679068701351029862207502287721123345624421024715163941251258954337788492834236361124473822814504596821452253550035968325337489186278678359443979041598043992124889848660795045011701169092519383155609441705397900600291315024253848282782826223304151370929502192196508374714697845805550615914539506437316401173317807741497557116733034632008408954066541694665746735785483133770133628948904397670025863002540635264006601631712883920305576358989492412827022489373848906764385339931878608019223108328847459816417701264089078551777830131616162049792779670521847212730327970738223860581986744668610994383049960437407323195784473254857416239738852016202384784256163512597161783106850156299135559874758848151014815490937380933394074455700842090155903853444962128368313687375166780513082594599771257467939781491953642874321122421579851584491669362551569370916855252644720786527971466476760328471332985501945689772758983450586004316822658631176606237201721007922216410188299330808409384014213759697185976897042759041500946595252763487628135867117352364964121058854934496645898651826545634382851159137631569519895230262881794959971545221250667461174394884433312659432286710965281109501693028351496524082850120190831078678067061851145740970787563117610746428835593915985421673115153096948758378955979586132649569817205284291038172721213138681565524428109871168862743968021885581515367531218374119972919471325465199144188500672036481975944167950887487934416759598361960010994838744709079104099785974656112459851972157558134628546189728615020774374529539536929655449012953097288963767713353842429715394179547179095580120134210175150931491664699052366350233024087218654727629639065723341455005903913890253699317155917179823065162679744711857951506573868504088229934804445549850597823297898617029498418376255258757455303112991914341109413088238114443068843062655305601658801408561023324210300218460588586954418502977463085858496130037238190325162225570729975710727306066072916922978033647048840958711228045188511908718588299514331534128549297173849768523136276076868494780364948299904475715771141080958058141208956059471668626290036145602625334863284986816039463372436667112964460292915746181117789169695839947080954788863503281129626899231110099889317815313946681882028368363373822281414974006917942192888817139116283910295684918233358930813360131488748366464224381776081007739183393749346933644748150564933649323157235306109385796839902153381449126925350768211098738352197507736653475499431740580563099143218212547336281359488317681489194306530426029773885492974570569448783077945878865062970895499843760181694031056909587141386804846359853684034105948341788438963179956468815791937174656705047441528027712541569401365862097760735632832966564135817028088013546326104892768731829917950379944446328158595181380144716817284996793061814177131912099236282922612543236071226270324572637946863533391758737446552006008819975294017572421299723542069630427857950608911113416534893431149175314953530067419744979017235181671568754163484949491289001739377451431928382431183263265079530371177806185851153508809998200482761808307209649636476943066172549186143700971387567940218696710148540307471561091358933165600167252126542502898612259306484105898847129649230941215144563947889999327145875969555737090855150648002321476443037232466147111552578583071024936898814562568786834745518893385181791667579054210421036349316257870476543126790661216644142285017446278477132740595579600648343288827864837043456066966456899746910373987712891593313271266247505582258634928427718355831641593667712218537642376222104779338956378722902509543014182257180331300148113377736941508488867501893156994849838936052666818012783912005801431596441910546663236810148207799356523056490420711364192200177189107935243234322761787712568251126481332974354926568682748715986654943041648468220593921673359485057849622807932422649812705271398407720995707236227009245067665680069149966555737866411877079767754867028786431817941521796178310655030287157272282250812017060713380339641841211253856248920130010782462165136989511064611133562443838185366273563783436921279354709230119655914915800561707258518503167289370411936374780625824298250726464801821523430268081486978164824349353456855843696378384153838051184406043696871666416514036129729992912630842812149152469877429332305214999981829046119471676727503742221367186614654042534463141660649871499001000660041544868437352208483059495953182872280520828676300361091734508632133033647289584176588755345227938480297724485711815574893561311524926772006362198369980664159549388683836411891430443767715498026544959061738265591178545999378510861446014967645550103653971251138583505085112442517772923814396233043724036032603181442991365750246012787514117944901305803452199992701148071712847770301254994886841867572975189214295652512486943983729047410363121899124217339550688778643130750024823361832738729697376598820053895902935486054979802320400472236873557411858132734337978931582039412878989728973298812553514507641535360519462112217000676321611195841029252568536561813138784086477147099724553013170761712163186600291464501378587854802096244703771373587720086738054108140042311418525803293267396324596914044834665722042880679280616029884043400536534009706581694636096660911110968789751801325224478246957913251892122653056085866541115373584912790254654369020869419871125588453729063224423222287139122012248769976837147645598526739225904997885514250047585260297929306159913444898341973583316070107516452301310796620382579278533125161760789984630103493496981494261055367836366022561213767081421091373531780682420175737470287189310207606953355721704357535177461573524838432101571399813798596607129664438314791296359275429627129436142685922138993054980645399144588692472767598544271527788443836760149912897358259961869729756588978741082189422337344547375227693199222635973520722998387368484349176841191020246627479579564349615012657433845758638834735832242535328142047826934473129971189346354502994681747128179298167439644524956655532311649920677163664580318205849626132234652606175413532444702007661807418914040158148560001030119994109595492321434406067634769713089513389171050503856336503545166431774489640061738861761193622676890576955693918707703942304940038440622614449572516631017080642923345170422426679607075404028551182398361531383751432493056398381877995594942545196756559181968690885283434886050828529642437578712929439366177362830136595872723080969468398938676366226456791132977469812675226595621009318322081754694778878755356188335083870248295346078597023609865656376722755704495258739871812593441903785275571333409842450127258596692434317689018966145404453679047136294238156127656824247864736176671770647002431119711090007474065945650315375044177982192306323700872039212085499569681061379189029961178936752146022386905665481382858280449537530160921422195940638787074787991194920898374091788534417523064715030278397979864517336625329511775105559014160459873338186887977858817291976604516353353556047648420520888811722831990044504284486852338334530105533929637308039738230604714104525470094899407601215247602819963846343554852932377161410869591950786873276075400085220065031871239272857835807010762542769655355964789450166013816295177908531139811092831583216931563867459747449584385282701658246192092219529134323496779345585613140207765996142546463288677356891785576835169608392864188830094883324700447958316931533832382377876344426323456301679513671047510469669001217777128065522453689371871451567394733440447280450959433090683667110655953338602938000999949010642769859623260401863733572846679531229683156358145420890540651226419162015504500430562136991850941034609601030543816694795964585804425194905110733387679946734471718615647723811737035654917628707589456035519195603962301157866323750234725054461073979402475184415558178087962822231972692984516683306919505079993357259165675557294585962182052650473353712351623662770479333289322136141858785972771685682725303734836891911847197133753088446777943274857148827821608844765700041403499921376794209627560883081509438030705666022764678117533361028187800710219794428777313146387857817205661409023041499923248268982477222109852189758140879763486146763606368674611966620347304608917277240045953051376938375381543486981101990651706961774052218247422657652138152740612699012706880875386408669901461740890540981877671880076124151967064152117653084325544261017536348281196837493395825742541244634247233586360777980960199745187758845459645895956779558869098404768259253477849930457883128541747079059795909431627722327844578918694214929451540174214623240300841907975296782445969183509474202123617940309048634960534054931299919496087957952586977170236680033862505764938088740994009589948109397983231108838769236490221499111120870639202892490698435333152727991330986335454324971441378059132240814960156485679843966464780280409057580889190254236606774500413415794312112501275232250148067232979652230488493751166084976116412777395311302041566848265531411348993243747890268935173904043294851610659785832253168204202834993641595980197343889883020994152152288611175126686173051956249367180053845637855129171848417841594797435580617856680758491080185805695567990185198397660693358224779136504562705766735170961550493338390452612404395517449136885115987454340932040102218982707539212403241042424451570052968378815749468441508011138612561164102477190903050040240662278945607061512108266146098662040425010583978098192019726759010749924884966139441184159734610382401178556739080566483321039073867083298691078093495828888707110651559651222542929154212923108071159723275797510859911398076844732639426419452063138217862260999160086752446265457028969067192282283045169111363652774517975842147102219099906257373383472726498678244401048998507631630668050267115944636293525120269424810854530602810627264236538250773340575475701704367039596467715959261029438313074897245505729085688496091346323165819468660587092144653716755655531962091865952628448253731353698162517351930115341581171353292035873164168839107994000677266031617527582917398395852606454113318985505747847121053505795649095931672167565624818782002769963734155880000867852567422461511406015760115910256449002264980039498403358091309140197877843650167960167465370287466062584346329708303725980494653589318912163976013193079476972058034710553111117215859219066231028099212084069283091906017370764654655683413207556315315006453462321007133584907633048328153458698497332599801187479664273140279381289961720524540674695271948079930396730194274036466594154400092799908634806622334906695224044652158992864203435098858422692019340575496840904812955522654754650713532842543496616084954788090727649930252702815067862810825243222979985391759845188868387004477101866772159439708514664612871148749531862180941719676843144666435175837688436786081446319641912566574047718699160915550910878919431253671945651261878486910876729910565595155159739659034383628124629118117760949411880105946336671039049777312004243578115790429823045072038322781246413671297959415082918378213212876890545963586369344879749784841123274921331663162812456388238288715648447883142417650147980187858215768793063001153788998014623690135803753306246148576074932567807682651045738059018831237617271889933790487113395588485234240255002352200613574914318259142479829367775490496399350755839668967578364316618369307625603528602940662803255416535431518013714821941772672244005268401996533334184004345525296592918502940131600651124395297874364222806977720437363717873457948420238745151249157913139411148608416429347958793681868609689684640858334131017858142710955416293375915178392341303110543328703526599993904966822112768158316511246866451167351378214345336650598328347443536290312393672084593164394941881138607974670134709640378534907149089842317891739783650654751982883367395714360000003439863363212091718954899055748693397700245632475954504411422582410783866837655467400137324322809113692670682805397549111166171102397437749479335174036135005397581475520834285772800986189401984375446435081498218360112577632447389452051636938585136484259964518361856989088721789764694721246807900330925083496645841656554261294195108847197209106605105540933731954888406444080280579549008076040034154662137669606444293774985897353625591959618552448187940317374508256072895120945456562159540405425814886929842786582357673195799285293120866275922366115137445767916063621675267440451221051052090834707443986137829082352772895849625656881972792768694795806100573787084121444815034797422312103295359297822377134077549545477791813823542607184617108389097825964406170543546968567030745411634244134486308676327949177682923093183221341455482591367202823284396549001805653203960795517074496039006696990334199278212696767771835209083959545341866777944872740383733381985235884202840150981579594685874537989503257362809837592216229258598599123843993575573285028613155970362934249814178056461615863415338635077223269996508860870999964899373049307170967888740149746147542880387421250689212155876692242387434701120990859082164073576380817386959755176083877600277517253037133445654852635661720197563001580049790223419586738061442401502436288957503206533690825756785507020555105572381878574650371086308158185862815883054564662297694803970618265491385181326737485227188267917919091354407852685476254126683398240534022469989966652573155637645862251862823092085424412805997628505488913098331761884983352975136073772030571342739638126588567405013841074788943393996603591853934198416322617654857376671943132840050626295140357877264680649549355746326408186979718630218760025813995719923601345374229758918285167511358171472625828596940798518571870075823122317068134867930884899275181661399609753105295773584618525865211893339375771859916335112163441037910451845019023066893064178977808158101360449495409665363660370075881004450265734935127707426742578608784898185628869980851665713320835842613381142623855420315774246613108873106318111989880289722849790551075148403702290580483052731884959994156606537314021296702220821915862905952604040620011815269664910068587592655660567562963361434230232810747488395040380984981860056164646099819257616235478710913832967563761506732550860683433720438748186791668975746563456020002562889601191100980453350423842063824039434163502977688802779835087481178298349417211674919425601608685332435385951152061809031241698182079314615062073826097180458265687043623935757495737332781578904386011378078508110273049446611821957450170106059384336519458628360682108585130499820420578458577175933849015564447305834515291412561679970569657426139901681932056241927977282026714297258700193234337873153939403115411184101414292741703537542003698760608765500109345299007034032401334806388514095769557147190364152027721127070187421548123931953220997506553022646844227700020589045922742423904937051507367764629844971682121994198274794049092601715727439368569721862936007387077810797440975556627807371228030350048829843919546433753355787895064018998685060281902452191177018634505171087023903398550540704454189088472042376499749035038518949505897971286631644699407490959473411581934618336692169573605081585080837952036335619947691937965065016808710250735070825260046821242820434367245824478859256555487861614478717581068572356895150707602217433511627331709472765932413249132702425519391509083601346239612335001086614623850633127072987745618984384288764099836164964775714638573247333226653894523588365972955159905187411779288608760239306160016168434070611663449248395156319152882728822831375458678269830696691220130954815935450754923554167766876455212545681242936427474153815692219503331560151614492247512488957534835926226263545406704767033866410025277276800886383266629488582740369655329362236090572479794734434077704284318507901973469071141230364111729224929307731939309795452877412451183953480382210373644697046967493042810911797232448615413264031578430955396671061468083815548947146733652483679138566431084747848676243012018489329109615281108087617422779131629345494425395422727309645057976122885347393189600810965202090151104579377602529543130188938184010247010134929317443562883578609861545691161669857388024973756940558138630581099823372565164920155443216861690537054630176154809626620800633059320775897175589925862195462096455464624399535391743228225433267174308492508396461328929584567927365409119947616225155964704061297047759818551878441419948614013153859322060745185909608884280218943358691959604936409651570327527570641500776261323783648149005245481413195989296398441371781402764122087644989688629798910870164270169014007825748311598976330612951195680427485317886333041169767175063822135213839779138443325644288490872919067009802496281560626258636942322658490628628035057282983101266919109637258378149363774960594515216932644945188292639525772348420077356021656909077097264985642831778694777804964343991762549216500608626285329471055602670413384500507827390640287529864161287496473708235188892189612641279553536442286955430551308700009878557534223100547153412810957024870812654319123261956462149376527526356402127388765103883255007364899937167183280028398832319373301564123277185395654932422977953016534830128490677845037490891749347389015649588574802194996722621185874361039774946338633057887487405540005440439344888192044102134790034598411927024921557026873700970995205391930979319495883265922171508324621942300185974396706491149559411733728199869021311629886680267446443489233020607003821262841723679627307191405008084085703978151998148822390059948911946474438682533745889962375133378280532928272016815977970066488394482446332210928320504045983008943565954267256879714918703447338237767914829203283196838105907715727191903042365315650957464549643425328069510396558733549803850995143463506175361480050195045201350200180281506933241918267855737764414097080945745624854867704904368368717590918057269794010465019484853146726642978667687697789291431128505043098192949736165944259471754765135205245072597538577958372797702972231435199958499522344049394502115428867244188717409524554771867484911475031801773304689909317974472957035192387686405544278134169807249382219749124257510162187439772902147704638010731470653154201300583810458905006764557332998149945854655105526374914354195867992595981412218735238407957416123372264063860431988936249867649693592569592128495906254446474331759999685163660305216426770428154681777589339252115538590526823311608302751194384823861552852465010329467297198112105314125898165100120742688143577590825227466863206188376830450921784582526239594189673003640808624233657620979111641766331328852352062487922978959456450333733139422384778582717195412347860434376165241568717943562570215636666680088531006728947033079540804583324192188488870712275670333173939262509073556164513677064199539111948881240659821685787131385056850623094155206877987539740658484250135205615103489821873770245063583314243624807432542464195984647411575625441010389671576677263196442524931941806472423789334668561083789808830313571333157729435664956078125304917594015895146954965223118559669048559467607968190167266634650186182955669893965019614544401768162810604465068448139561667220729261210164692339016793399632833013163850830967942792934551268435760356901970523138364640961311774904600772840862214747547653221505518116489887879087780918009050706040061220010051271575991225725282523378026809030528461581739558198122397010092017202251606352922464781615533532275453264543087093320924631855976580561717446840450048285353396546862678852330044967795580761661801833668792312510460809773895565488962815089519622093675058841609752282328250433712970186608193748968699961301486924694482420723632912367052542145464162968910442981633373266871675946715392611950649224725627254543274193495995569590243279097174392258098103601486364409101491734183079646345064833303404765711827040276868271418084574998493392039317445402616663674646668754385093967129918067471909885312710726724428584870694307099756567949198418996425748884764622030325637751112534060087936904565779272035205921345924272965206683338510673615276261016026647772485083344719891986802656197236420847504962661607797092906844757798251795569758235084371746103310387911789239441630112634077535773520558040066982523191225570519133631407211349723226549151062961739050617857127509403623146700931176133132018631158730886798239298009805089491510788371194099750375473674305745187265414016446924576792185753680363289139664155342066705623272936001177781498886100830877849571709880858667023104043242526785955562077310543072298032125941107957349146684680220501816192150766649106862033378713826058987655210423668198670177861672671972374156917880001690656659046965316154923604061891820982414006103779407166342002735828911994182647812782659666207030384795881442790246669264032799404016800137293477301530941805070587421153284642203006550763966756168318897005152026656649929417382840327305940740147117478464839241225676523593418554066440983706083636457657081801664285044258224551650808864421212113914352453935225522162483791737330329812349528984098613273709957407786789349311975204237925022851375880436791854547836416773151821457226504640800104202100410766027807729152555503218182387221708112766208665317651926458452495269685376314437998340336947124447247796973890514941120010934140073794061859447165516612674930799374705772930521750426383798367668159183589049652163726492960837147204067428996276720315410211504333742057182854090136325721437592054640471894328548696883599785122262130812989581571391597464534806099601555877223193450760315411663112963843719400333736013305526352571490454327925190794007111504785378036370897340146753465517470747096935814912797188187854376797751675927822300312945518595042883902735494672667647506072643698761394806879080593531793001711000214417701504495496412454361656210150919997862972495905809191825255486358703529320142005857057855419217730505342687533799076038746689684283402648733290888881745453047194740939258407362058242849349024756883352446212456101562729065130618520732925434179252299417447855189995098959999877410951464170076989305620163502192692653166599093238118295411937545448509428621839424186218067457128099385258842631930670182098008050900019819621758458932516877698594110522845465835679362969619219080897536813210484518784516230623911878024604050824909336069998094776253792973597037759066145994638578378211017122446355845171941670344732162722443265914858595797823752976323442911242311368603724514438765801271594060878788638511089680883165505046309006148832545452819908256238805872042843941834687865142541377686054291079721004271658 lz4-2.5.2/testdata/e.txt.lz4000066400000000000000000002720641364760661600155710ustar00rootroot00000000000000"MdP!t2.7182818284590452353602874713526624977572470936999595749669676277240766303535475945713821785251664274274663919320030599218174135966290435729003342952605956307381323286279434907632338298807531952510190115738341879307021540891499348841675092447614606680822648001684774118537423454424371075390777449920695517027618386062613313845830007520449338265602976067371132007093287091274437470472306969772093101416928368190255151086574637721112523897844250569536967707854499699679468644549059879316368892300987931277361782154249992295763514822082698951936680331825288693984964651058209392398294887933203625094431173012381970684161403970198376793206832823764648042953118023287825098194558153017567173613320698112509961818815930416903515988885193458072738667385894228792284998920868058257492796104841984443634632449684875602336248270419786232090021609902353043699418491463140934317381436405462531520961836908887070167683964243781405927145635490613031072085103837505147704171898610687396965521267154688957035035402123407849819334321068170121005627880235193033224745015853904730419957777093503660416997329725088687696640355570716226844716256079882651787134195124665201030592123667719432527867539855894489697096409754591856956380236370162112047742722836489613422516445078182442352948636372141740238893441247963574370263755294448337998016125492278509257782562092622648326277933386566481627725164019105900491644998289315056604725802778631864155195653244258698294695930801915298721172556347546396447910145904090586298496791287406870504895858671747985466775757320568128845920541334053922000113786300945560688166740016984205580403363795376452030402432256613527836951177883863874439662532249850654995886234281899707733276171783928034946501434558897071942586398772754710962953741521115136835062752602326484728703920764310059584116612054529703023647254929666938115137322753645098889031360205724817658511806303644281231496550704751025446501172721155519486685080036853228183152196003735625279449515828418829478761085263981395599006737648292244375287184624578036192981971399147564488262603903381441823262515097482798777996437308997038886778227138360577297882412561190717663946507063304527954661855096666185664709711344474016070462621568071748187784437143698821855967095910259686200235371858874856965220005031173439207321139080329363447972735595527734907178379342163701205005451326383544000186323991490705479778056697853358048966906295119432473099587655236812859041383241160722602998330535370876138939639177957454016137223618789366 38155841587186925538606164779834025435128439612946035291332594279490433729908573158029095863138268329147711639633709240031689458636060645845925126994655724839186564209752685082307544254599376917041977780085362730941710163434907696423722294352366125572508814779223151974778060569672538017180776360346245927877846585065605078084421152969752189087401966090665180351650179250461950136658543663271254963990854914420001457476081930221206602433009641270489439039717719518069908699860663658323227870937650226014929101151717763594460202324930028040186772391028809786660565118326004368850881715723866984224220102495055188169480322100251542649463981287367765892768816359831247788652014117411091360116499507662907794364600585194199856016264790761532103872755712699251827568798930276176114616254935649590379804583818232336861201624373656984670378585330527583333793990752166069238053369887956513728559388349989470741618155012539706464817194670834819721448889879067650379590366967249499254527903372963616265897603949857674139735944102374432970935547798262961459144293645142861715858733974679189757121195618738578364475844842355558105002561149239151889309946342841393608038309166281881150371528496705974162562823609216807515017772538740256425347087908913729172282861151591568372524163077225440633787593105982676094420326192428531701878177296023541306067213604600038966109364709514141718577701418060644363681546444005331608778314317444081194942297559931401188868331483280270655383300469329 ,41475631399972217038046170928945790962716622607407187499753H 75608441473782330327033016823719364800217328573493594756433412994302485023573221459784328264142168487872167336701061509424345698440187331281010794512722373788612605816566805371(788873252737389039289050686532413806279602593038772769728684093253658807339884572187460 Y31148335132385004782716937621800490479559795929059165547050577751430817511269898518840871856402603530558=32422924185625644255022672155980274012617971928047139600689163828665277009752767069777036439260224372841840883251848770472638440379530166905465937461619323840363893131364327137688841026811219891275223056256756254701725086349765367288605966752740868627407912856576996313789753034660616669804218267724560530660773899624218340859882071864682623215080288286359746839654358856685503773131296587975810501214916207656769950659715344763470320853215603674828608378656803073062657633469774295634643716709397193060876963495328846833613038829431040800296873869117066666146800015121143442256023874475076938707o932999421372772112588436087158348356269616619805725266122067975406210620806498829184543953015299820925030054982570433905535701012052649561485724925738620691740369521353373253166634546658859794511364413703313936721(5395210845840724432383558606310680696492485123263269951 19603729725319836842336390463213671011619282171115028280160448805 Q820319814930963695967358327420249882456849412738605664913525267060462344505492275811517093149218gS71800194096886698683703730220047531433818109270803001720593553052070070607223399946399057131158709773590271962850$ 51483752620p74671329002599439766311454590268589897911583709341937044115512192011716@k66945938131183843765620627846310490346293950029458341164824114969758326011800731699437393506966295712410273239138741754923/u245454322203955273529524024590380574450289224688628533654221381572213116328811205214648980518009202471939171055539011394331668151582,87606961102505171007392762385553386272553538830960671644662[ 26468096R 06186950214317621m40097595290722260111268115310838731761732323526360 ?731510345957365382235349929358228368510078108846343499835184044517042701893819100905753762577675711180900881641833-9626234162881665213747173254777277834887743v 8287521566857195062565390389449366421764003121527870222366463635755503565576948886547085392360474137441061344455441921013361729N*694899193369184729478580729156088510396781959429833186480 3679551496636448965592948187851784S3326247051945050419847742014183947731202815886845707290544057510601285258056594703046836344592652500806875200959345360226118728173928074623094685367823106097921599360019946237993434k78134973Q2464697525062469586169091785739765951993929939955675427146549104568607020990126068187049841780794071945996323060279017745275131868099822847308607665368668555164677029113368275631k46726113705490795%45386371962358563126183871567741187385277229225947430 56955384562468010139057278K51296663676445187246565373040244368414081448873295784734849000301947788802046032466084287583649591950828883232065221281041904480472479492913422849519700226013104300624107179715027934332634079959605314460532304885289729176598760166678119379323724538572096075822771784X 61358261289 1294559274627671377944875M657544861407611931125958512655759734573015333642630767985443385761715333462325270572005303988289499034259566232975782488735029259166825894456894655992658454762694528780]C2067478541788798227680653665064191097343452887833862172615626958265447820567298775Q2532144180399432170042650763095588465895171709147607437136893319469090981904501290307099566226620303182649365733698419555776963787624918852865686607600566025605445711337 22055744160308370523122425872234388541231794813885500756893811249311863528708379984569261998179452336408742959118074745341955142035b"8420084550917084568236820089773945584267921427347796442792n0156406341341617166448548376449157390012121704154787259199894382536147713793991472052195290793961&10723849429061635760459623125350606853765142311534966m1511660422079639446632551577290709v-156278277598788136491951257483328793771571459091064841642678R972367442017586226940U0792448054125536043131799269673915754241929660731239376354213923061787675395871143610408940996608947Qg406983629936753626215452472984642137528910798843813060955526227208375186298370667872244301957937937860721072542772890748743743557819665Y a618330 #91202452040486822000723440350254482028342541878846!591506445271657700044521097735585897622655484941621714989532383421600114062950718490427789258552743035221396835679018076406042138307308774460170842688277718084266433365178021903449234264266292261456004337383868335555343453004264818473989208609565062934044e6144566592[25648893560915430642Q52668472594914314239m4324863274"846655985331046625989014171210344q7161661 8707932175696A013309674945418540711844643394699. 6078489245140589405267807354579700307051163682519487701189C A282741605872061841852971891540196882532893091/3457535718482016384644832&7886069008072#76731275a639411!71u804551397295066876047409154204284299935410258 75022416907694316685742425225090269390348148564513030699251995904363840Z26741257342244776558417788617173726546208.94498946787350929581652632072258992 17823038096567883112M5809140572610865884845873101658A7533;,48870148291674197015125597825727074064318086014281490241467 !327597684269633935773542930186739439716388611764"40686633988568416810038723892144831760707450388721236436704331409115573328018297798873659091665961240202177855861761619893707943800566633648843650891&57103976C9602766258359905198704230017946553678856743028597460014378548323706870119007849940 18919181649327259774030074879681484882342932023A8032)w03922196875283405169069741942576146739781107154641862733690915849731850111839604825335187484389231772926135430249325628963713619772854 9244616444972845978677115670307871!93:a4801496752406185365695320741705334867827548278154155619669110551014727990403868972204655508331707823948087859905 563108984124144672821865459971596639X 1941751820935932616316888380132758752601460507/ 83926257264111201352885913v !29(B8247%5533357279772205543G#K630253574821658541400080531482069713726214975557605189048162237679041492674260007104592269B351881374638871042735447676235$c993970632396604969145303273887874557905934937772320142954803345000695256980935282887783710670585567749481373858630# !28230406940056653405848875270053088324591821834949834199639981458773435863115940570 351528538360944295596436000221741896883548131643997437764158365242234642619597390455450683285075186871944906476779188672030/30751053512149851051207313846648717547518382979990189317751550016466414592102406. 46032085355540581471592737567669213664081505E406106285 29327662193193993386162=6911176778, 3612932685819996523927548842743541440288453645559512473554613940315495209739705189624015797683263945063323045219264504965173546677569929571898969047090273028854,66997919929480382549802859460290527631455803165140662291712~7580614399348 62107993576737;96425248a20435579287511385856973* 60835244232404667780209483146677470672548361884827300064831A6022rA46734 +8446300550448184991699662208774614021615702102960331858872Ay9877935257018239386124402686833955587060775816995439846956854067117444493247951957215941964586373612691552645757478698596424217659289686q0637043, 116713975447362286253682664135t8048997721411919997%3033508690209225191244473932783761563218108428982077_LQ053268369864774102027294129!883188085436732780687977165911165422445380f61711729494887998650402975`962809358y 14910171453435 a542757Q44088338168411111662007597872441370823339178861147082286575310785366746950184621407364939173662583014074302668422150335117736471853870421037907750266020114'548222891666364078245016681534121350527857853933260611Y70227309363674021351538643169301526746053606435173215470109144065087882?-6423683118739093746423260902164636562755397683401948293279573996452725786244003759834220508089351290 475970644105677087717233B6548M68612014101072224659040085537982352538851716235182565184822031252149507003783004112162121260527260599443204430562745229161288917668141606391312359753503903200775295873924124764518508091639114592960711563442043471335447209811784614510778723991406062902282766643092649005922498102910687594345338583303911787475759770659535709796400122240921990311582o6679131539915614380701292607801970 R33681543124994122V70233994722281710566039318772268004938331489803385489094686851307892920819174795866199944411196208730498064385006825843284208558233856693664984972081704613537840153428406i5875815465145982702286766718553093119231286170613364873183197560812569460089402953z 11959029596856Zr3768997c228390i14459641410822928592228362101928229372435902830038844457013837716320!3500115722010956997@ A49649Q46121,9647323561263219511557015658244276615993264631558066720531275969485380573642083849188870951760522878173394627476446568589009362661233111529108160415241002141959373497A6155[?027921095935430555797326605546779635520053783046195406369718429161685827341222N8858708142740902481854464217748769250985670674677381226r1653559y57807054 769032535227389638474956462559403789!" 007624386893776475310102323777147458162553069803;3676455430305274561512961214585944432150749051491453950981001388737926379972839641689755513220118382486507469854920380976919437608743209385602815642849756549307909718558351578940981400769189238906309054253488389683176290412021294916719581193579120316251434409650313283521672802137241594734409549831613832250548670817222147513842516679044541661730320082033090289548 1679725849581340713218058281393460498505323404725950972192586604248511405819579G!419145884283300052568477687430591639049430687134196147550336282093994934310319768981120 Q369465424704173323895394046035325396758354395350516720261647961347790912327995264929045151148307Q/938216601070287265193814384484453263951739411013115250275046570637665418661289152644469262221629zQ32467#63835019371427864713980540382155134632237020715331h!083174146591492406359493020921122052610S068294134569678F839349138234088427P19099152870804a913299!236867127413922890033069995875921815297612482409116951587789964090 Q73459Q2320516723809502221396852991989181065!247720450851021007152235234279253126| 082706339423217625700763231391Q70994693324101390877!517A4414Q561897973504315*669132583790337486208366954750832803187867077 525663963479259219734955549865521419339817Q39987.7010255262Rq3172152$(5716367712700107609122815283265089843595E96103837268311707345522501941217015413;6518185020A3269!20+ 327269503283827391243828187116810895118789070733778695925658"33400523267060400043488434329027603M02786216074946965498921047444392787193453670179867392080384563372331198385586263800851634559SG41994344624761123844617615736242015935078520825600604101556889899501732554337298073561#21101908472096600708320280569917042590B1692865833655772875868425049269037093426=22399861803400211320742198642917383679176232845756330`6777374808 9969141827771 884358531893391759345115740238472929090154685 )79269619684100067659839974497204728788183120023338329803 ?65480871476464512824264478216644266616732096012564794514827125671326697067367179564375239174 B0398f 13734069852309190464967260243411270345611114149835783901793499713o 3696706497637127248466611082* q449295538183416078270980865655921102733746700y42871524083566152216557499843123871066494k670141943786345472960697869333597310953712649_826564637084905801120565112895g A5664'92113593222026568/18260827538790002.58926460284908949222999Q43773761341509652624 3g0569261451088578122491396169125342029181398986!335795857624435194008943955180554746554000051766 825944828833811886381749594201352009095100786494186(#92739776675856425983785874977766695633501707485790C701370264203 4801081835618237217J+36423186591595883669487322411726504487268392328453010991677683159982 3712385435731268120244517540185237405388029012497281808950215531006735981844304291052884593230647255904423559605519788393259303395729346630551604309237856772292935372084166931345752840S 746854691620648991164726909r897106560680180580784360046186622356287459138518590441625066322224956144B81389710267602084553182Rq3927941x,946542648!172761811563006364 116224837379105623611333455010228617051f1957785983334846331792+(9465292302146925975656638996589374u1139 G05569802455757436190501772466214587592374418657530064998056688376964229825501195065837a523213)71235243969149662310110328243570065781487677299160941153[362752423712c7E9926713485031578238899567545287915578420483105749330060197958207739558522807307048952+3555076983788192635714177933875021634439101418757671193891:q771096015809719)a93132902437363645647303503737453850348928611314163809475230174508878481! 741275003353303416138096#1058605483557739"0332300343415878146346021692350792161 48948281 !10G 816328709309713184139815427606762865097808571826211700314000337)1815A1490g* 03470363751335453763452105 954529420552320788174493709376770560093063" 10913481627378204985657055608784211964039972344556458607689515569686899384896439195225232309703301037277227710870564912966121061494072782442033414057441446459968236966118878411656290355117839944070961772567164919790168195234523807446299877664824873753313018142763910519234685081979001796519907050490865284165277661142565162781316090964802801234493372A6930/M79134654439319652541548294945778757585994820991818245224493120777682508307682823350015970404|5605097053646Y142448453825888112602753909548852639739052941829691802357120545328231833564917433719320806287313035896|873779967845174740515317401384878082881; 63889367116404777559854812639075047472950121999 212462016770305177l9527931687663050998Q59803512393409198050551xB3982[!13+ 00671533924012695458637642201085290797278413017645532475270737887640 200121947457023582954813 809867944020220280822637975539357580808631893207586444420664&49334467698180811716568665213389686173592450920801465%9777966137198695916451869432324246404401672381978020 441826450218313148336601#197231781715437219210sa384737 226701801343515930442853848567887072 205972638592249347636231221881137063075069y 109689069251417142514349153212907772374854891708928507602768218355008829647481488204923953370222705a317499 7009989251020178015601042R42628 372977992993516092588451577896978333126c0129109399310377342591059230327765266764187484244107656444776709B&9232495841634852773517198106467383714274297446899232025060628337543016787815320616009057693404906146176607094380110915443261929000745209895959201159412324102274845482605404361871836330268992858623582145643879695210`61667+3442309157718327756580021192827039104239196642691115533359YQ8578203254955525288754644660746202945r6004435 73504429212791635q73501598 22120388281168386586516846456*A1001412550984797301388460161279246359783661480163871602o59A0196A4543261256750718]!17 254436773503632580004 %9906963117397787875081560227368824967077635559869284,876869962805379018184814881083310079107596074550468891268679281239114888003672072973080135443132534771309418671717860752298137353912677281259395822052428999137169068565042157505672999%771492796088315r69781611084o7225038608726183849479397574406649127605 1242336831254672783315131867589156683006792102\3685859120139536011041344441103090338876152048 09104689167671555373346622544B520262477124279622598327840583358589767147420572404743972023289590372614868838800)49020384359035852799312387104284598160899610194569164698>82672646852648691729484141530046040042995850351641018990275293668674318349554241401907546816077'q2057938+7819212884740992953704054696222654727880724868550804657104 5487335165307057078458424!0958221912862797 ,54662670991319023703117796908927866231126613376711785129430t2816058265356238481641921447325437310020627384668123516910163592525882568064389463898808727352844064622081495138622752399389387349050826254724177817025820441298537604998278990200834983873629924981257423545684390230122617336658205467856711650770354756205674O1874730191973108811575167770050714320127263546019124608004516081086418355396699469369473222716 972850464195392966434725357659192969949061 Q33616 61482809803632434541282299682759802266940456R32862 965214722162083982459457427105649571935644315617745008283769350541954183902915103318793390761420746702886796859498543978945730>39890070073924692q1285576cq6541291T;52279071212820653775058280040897163467163709024906774736309136904002615646za956091@9R62454<.44264166018138599001741740824424537861015843336177729258061110084140918881912088582076270114836717607490469809144430572622111045833007893316981916039171506227929862827094462759150096832263450737254513668581724647008084:A68208 7134520543<!77*1729329082 %Q1064516974559784l40916768 693702292317433344999869018415(9931651250163719114994852024821586396216(1753094623047604832399379391002Q29964R.)16356900944508605809120245990461211862331827861446472779/18635916551883065770333149851006835713562434188188440578002 18129031378653794869614630467726914552i01541670258380324778422724179945136535822609716525883567121335195468383353498015032693597981674632318476283063405883247335125794426763987794671312104276338957386093146315391485487925140288850251891602 q9561568r!91j50292560541767676631453;.(496296796781349420116003325874431438746248313850214980440795687219268462617287403480967931949965604N/028181059760326325174640501645460626676552901063986870366826321A5777' 3978684535843840576732982688r 743999091750401889231926755l540549560177327219134577524905771512773358423&835608092a98894163P78005474379855628707*407382937218623#S65247719200723765889422618655048755b57855898773008703234728I40394818&622445528662854117594646049702772449079927514644512541586M'a772437772316680200416I41794155478105541780 5335446703032646961944>(831933095*582771932031205941616693902049665352189672822671972640029?A7384\1475376193A7829763824872?94145416947365492548406337936?W541081593464960431603544354737728802361047743115330785159902977771499610274627769759612488879448609863{285284765131027792o 439819576175055913009968240510975934517001T3 222661440772370508900444^Q29585 Q20556 949282094386299461883479093210988565949542131143 q81023947$087108026465913203560121875933791639666437282836752TA1688ba794859z756937488964565718729254044850862444994781/ 25172293439601062867836366758453319 547406640152K!94!43%27739043038687727282620656631293875317749973230432943717638018562800611416195639424143122 1099DA5102 576542703790683717576487023"288197498746636856292655058222887713221781440489538099681072143012?152405408121570540227441452187654190142838674426001188904172457053747075555058j316872471102203537271661123048573J'87927250'010678311789270955272532221252243616733433663847565909R22180a407423P)86786889342114820390582422432426464363020144178798202211624847165746829154075637702227401358411090760784647800701827663362279781045463311312933570134869585165267459515187680033z9241054818176786777215279827025011719581657760354973292372473206785369025@339712168 A8788a18820230552993713239719433308354887038643615065295512,20719850225977140863812201598089436356180859701008008162255>391013219819790455200496185837q0480466J 80661651702359509713320363B+ 56444878009456203697849734574606886572701865867757842758530645706617127194967371083950603267501532$9029491516973738110897934782297y$117657987098185725131372267749706609250Q68355 714638685918913011736801432063700710!44+I76045825 80552521181566417553430684826784416 8440846108758821431764164983m7518728182948655658524206852221830755306118393326934164459415342651778653397980580828158806300749952897558204686612590853678 331844290551068977869841773560311811191387J? 11516803236547002987989628&1014596471307916144369564690909518788 88217305838849808095230835885161605214889983586323231273089098615386006984035267A53872159209362558178898134162474864564332110431948214212997931881046363995414965Q501384# a702246*39186031959866796236348930928308784071240043102270613759165188613134583079)a003607 572488678793240933800718641528533179435350734018911936385467300006604078447246928!!46*I0131248952100446949032058838294923613919284305249167833012980192255157050378521810552961752364796268600665393641422730630016486526138918\B5017q9361679T 1035g8h %5975388218397775528129815385701687022026202746786479w(0307290184454979563998448368078519970882014070926167499298218543827189462821653870648585886462216114103435703428788629790834188716062144300145332750297151046731560210000438695105837737797660034608876248616409386452521779352899475784962552439255986205214090523462508478304872)a268831 "7055389135729070696759955629858666955972168650605J.0134210435576277918402179762665648458026159140717347700903947jA1770`13788124853425594931286665346503372884639$/68460644741907524313323903404908195233044389559060547854954620T667681326243592502024951627560708090043646042156914885552650228121158422824W528629137662675481993546118143913367579700141255870143319434764035725376914388899683088262844616425575 q14289820386364384* 65196129177773541836946762q9049812wE6761915542925704384322399184844350470199171258214617264607895969!-81353264435973965347987580626885413}32757204573294 7068500169500469597583893735275386226649437071610511521!23u50900553232154891779430226864057955586005983764827i 8594200985823514#5071045690191913590623041023367072401963126752362136351D80772329149508591512658121438233710729491480884723552863941959934556841563445779517742381299032601Q57197x$506627582203218371360597180259408706155347131044822 q8483955x 941981244497845 R545111735348382537248253471*758171286720586514828531727356906983993511076343209131978&a316588J62830117840:10175016:293290783217748756628931065038380609`4139922673338477820330202070051718894170k4623836672063274"3661217401176691491923557090564480301634229430183A63108450172510307540942604409687066288066265900569082451407632599158164499361455n205702044309372 502172222997062097 609762787409626448!604307863w85709143464793241536"3B6956107535 6%53342501713255588181U50409521783013946521643659426296076857058569850715715131726292896007258760156484055608861316541183595862871066549628259953512719324463579104655438916515095418730607101503443060958230225745597494427506763092632252996633821939520292791797324709455969101640298368308042630991048156750362350965492430258957527352141244514954246297225851012070780211018810672234797257933065318771343846671380754638347163542876109428418986017946587214444951988010425064521914849899204000073106723699446552460209087678823000643377256573850109698990581912909570798666994537650804079178524382220410705992788892677O.08428752637U40360561230710723922581504781379mr126123487833403447383357360197323594660427370463520132718259241090604009763858585771695841956310957774852957983684475680312187481gP!393 "07"'161528981175642971133418149721807804046507765720445708,747511492617936o9922018178939377311469119(a610419UA4221[ 58896568/01337505745038872111332436739840284o1A9147h81403258347584151417032: 61784931455706904169858079849763701475891481054 54914100662201721878930012101267481240855162601689425111458|83155896604600915257'6703846259053820520425791378948827579603278877535466a182682 !5135637614859944850a384062>9.&911063246061774180577212381659872472432252969098533628440799030007594546281549235506086481557928961969617060715201589825299772803520002610888814176506636216905928021516429198484077446143617891415191517976537848282687018750030264867608433204658525470555882410254654806040437372771834769014720664234434374255511785?4712634180765253477400110485399696054992650809391069"148418343D15266103 41746706436834050474X98022856103130830384845712947673893937641914407036507544622061186499127249643798 ?537850203753189972618014404667793050140301580709266213229273649718653952866567H21151336061144572228008511837578992195D=413692302293139d370240483022735762903991179449924848091- 024440784828665985794065251041497342+h5419925977628178182K {022920108186449448349255421793982723279357095828748597126780783134286180750497175747373730296280477376908932558914598141724852658299510882l#52232422185861913947951842201315533196343639226842,q1686694 53713596071l&3651959027712571A8486 0674410935215327906816 421596795906641112018761853))2122394012856686084694359374081585364528004920724042n09139831231180540432770158356295136562746102%A706470377651756788068724988616570948466657706745770002071443325255557365570(320019082992096545498737419756608619533492Y/493098201470037116182I939931199955070455381196711289367735249958182011774799788636393286405807857337668q3827656450642917396685v+05318871531455235307035599474018622598814985466073778769873Q36039774123615182 026869979609564523828584A3564,W544816579996646064826139661872030483911956025038111155093842020989459155576008389798994996456626254051 107800902K!01N 38532066032574466820259430618+3091109212741138269148784355679352572808875543n)230772353637682260360801740406609971511768804349274891971330878229746632635635328517 [9466510943745768270782209928468034684157443127739811044186762032954475468077511126663685479944460934809992\#56664999022616860196720537491499512268236378958652)34392893383651565369924131096381025591146439238052139078#1561)!88U1756331767258565235910695203268959900548847534241605866898200674831631742863291196333991327090860650 26035715732306971210642342 97068328707624437165532717978 111122655.5152083748245003446304650598456969027616695827898291361353530A3142188249342136442417833519a65439416532808341034 7248987905091993236965671335077119058999923990615156165E01453592125506964053452638234521559992105781 .I03018897920640888397476766714472731425446792350052461884923745530757573490270734249629883A94209610087025013294533253580456892857072412079660^5056006197128354127w525839941711755209208201510965095266851138975771508108494435082854587F S94385756311566832456682799299186153900925587171684049566399195915403421836453721202367860865536474>54879318925644085274489190918193411667583563439758886046349413111875241038425467937999203546910411935443113219136068129657568583611774564654674861061988591414805799318725367531243470335482637527081353105570818049642498584646147973467599315946514787025065271083508782350656532331797738656666181652390017664988485456054961300215776115 339618402706781490035025287u3107397102339146870159735868589015297010347780503292154014359595298 46574717562321966405(77953167460872730482063465299533273755610905783784559454691602\96414259601641710g1741B5464823530}'132332924864037318020231747h#377261637174453 726690601711176761047774971666&16383897431171418062222234571856794150729952620108620Pq12747471996@+q72752290536747850205000386300365262188006709266741048060273419977566600294279410904000646542810744540076164295253624602614761804q3228899A8283= !18676692675Q30280f !3563680895458990l31457758912802q 0536331938211000954432412441979491929162 4213463956538407812094162148;1558836184211642839924540275907196215375D#067083731012246141362048926555668109467076386536084761451258158856q3033708583444520%61988915346642448879119407114: ]159869707957459463371702432684848646320189863528270923130470892156847582077530343876899787023234385843811250013265769320554911860153519551654671755939679479588103339354132897C 89353374810625787562036429427025751212113733021 51395756419s q5155962 328203872634206622734786 365220196557293Q06813484929229964q2935978j#X5782673299758538185vA370651765306039680108789949050665449154457795 3855239801379810434056418240p62494910454{ 48394392014647542424785991096900046541371T00967859515639473321909345118386699?q7888558?221326876634958059123761251203010983867841195725887799206041260049865895027247 67637222043883985583477701125994208308595666787531Q51314B97119596810593795753215552420465941008141835i.7419685343267234327186809962504543247568870205534196919954530 443984463843465988304182629{295612610045884 A4285F0155776593578037956502680613072175867204854179715789640155427688sA7589# '362989140226580026134158039480357971019004151547655018~J5772677897148793U2747525743898158705040701968215101218826088040E1332795162841280/O0163917067779841529149397403158167896865448841*y6368332179115059107813898261026271979696826411179918656038993895418928488851750122504754778999508544083983800725431468842988412616042682309778855649*4;45103939279802909976049044288321989767513205351152305456664671437959319152726802782102415406297958288284663556235809867256382005652155199517935510691277105385526619269035260813677176664350712134539837113575009758544059395586617378282971205446931822604016703085309116579731132595161017491934682500632857770046869871772552265257084H 73303985974423063975183720{q3905509M23642814493247460522424051972825153787541962759327436278819283740253185668545040893929401040T68676644028682116072948303052364655609553510A1850"V121321534713770"$962114438916324032357415737737879088382676184587563435182951815392455211729022985278518025598478#960790415G04147609176580430298450174686798127758497173173328730528113496959166838787707231596833'090702040190305035958919946666520375302719237642525529 95034381633698115464B 5608951158732!5424975710520894362639(2s 2214033621065# 1876739580121286442788547 897695931576689191763886984615033545948985418495502516V9888419122873S26999964500750450009611686#1093180284255365399716605475390734891518965002 c 817092482736108638015760 9547082331349361582435128299050405405B2577Vq0115037[69507671344794074800"Q416321063!86 *552384057355808637187635302618679717256081553287164361114!10703351291392359545295140743794314490091932S*!32I b999616'593190993801296 97835535 369947311923538531051736669154087312467233440 50069180267477250?903448856673081487299464807786497709361969389290891718228134002845552513917355g16150353144603409441211512001738697261466786933733154341007587514e582275691935e84106448264951943804240543255345965M 6579790379775050314364746514224847(347976267368985\44277949916560F825761896437446465681978931942V &68246611104276719364818363605341087489710668663188050G 929568123959680449295166615409802689691689418764353363449482900125929366840591370059526914934421861891742142 1896846626335874414976973- s639276768772014515330224185312530844272724577116150555051907627625001652216627479625742442542054678576747819095948650057571101626437411980416+&a133272 8914864221276298472535623720288783Q% 8853973790945526513514407313 =9453403245984236934627060242579432563660640597549471239092372458126154582526L,47023193598665233788562442291882784364404346280948882887121 a642736" 1639297485616780079779958 G43367730352483047478240669928277140069031660709951473154191919911453182543906294573298S478025197760744266079830029157P;19905218571862854368757786091572692523257317166562527427580846062017704643o 1244340928131465976022136230311677500828475289259463348312408766740128170]A7985Q89498)A9182I3fA92647203498696} 26210919830621495095877228266702155693484634.6879525038204442326697479264829899016938511552124688935873289'$ 62678193617640236817146085508780596635878820509476201635075709002420149845678454050050482404996646978558002628931826518708714613909521454987992300431779500489569529280112698632533646737179519363094399609176354568799002814515169775183306322329421991321"50641139d1371nR82939;288305025607272756354837420549785665989546908993855891844108560511151035431810778500572718180809270914301016151501308652284223872161318316379604643152318443466979990486;75319295967726080853457652274714047941973192220960296582500937408249714373^ 88068797038047223r58198190Ha684774 S08999164153502160223967816357097637814023962825054332801828798160046910336602415904504637333597488q8663995E-108991180985119{86499233594328/98338293109980646160536024360404084837961907254216586940948668209239614308381730362152064229783998253369802703993180402492881443064961474760008765430557167269725911463199068882389300538006156800773098441606135584370 73463708822073792921409548=a69478551731561828176343929570234710460088230637509877521391223419548471196982303169544468045517922669260631327498272520906329003279972932906827204647650366969673645419031639887433042226322021325604416961] 3217435276493790187725226362 !0751941338259963f020985033021472307603375442346 Q72237s!794130304865"A8955400210765171630`9704098331306109510294140865574071074640401937347718815339902047036749084359309086354777210564861918603858715882024476138160390378532660185842568914Q446456616266775371236599283248186573925142949855514151213675828842328595775941268447903691266201 R18041?9637590025462 413165934198562478071443494 991702665310725991064870989725936224330070676047609769045634157657339554958844894809360407715568874728845183810606903802652831827556039590538150724162761504725248775957865078489454738909{127638529626645170044596263279346377 02854547231288003905 84988338107113S#6575369184280846558989823492193152052s #36!2003561310260405145079325925798227Ar2199249 (122145336707913500607486561657301854049217477162051678491357333633425768#6125272025094401943067472866798344129301813134429940066529153857637791109Q00060' 799563518115967647250756683 #52352939773016348235753572874236648294604770429166D"35 2237076011177482107962590118 a488689k2394706259542545844913402034001964429653706430886609252688115495962911661686120361953192532626622711081421498561326464672101142455133946382385908540917878668826947602728315544556526593391248y 395046441960224751860114052391875*4B6850!096152411653980646!42d4621794913031062903402737260i$018192995445429 7750717270565927177928553719a3385214927032183436782063826553411571603990157495208065? 462446634653253581574(24712606189730608605590650821630687096341197519257743181722139063GZ9101930318232666642062815512964768531386101867292188934703934207224555679/78260248978371473556820782675452142687314252252601795889759116t q08075805272210313274447540833192151359345269613972205646992477182893105883947691708514206315571927036363450395296043628850885551 37197352 38996789184600327073682083230847170616087919522738825234750638081160609084012422243147610356332894060928243012546201380603260812194287684790719254624630905574929878166127191654822964431726355#54860756302569423553427746176355*1817Q91856!871496412929056013005391346956982949089100399125@A90344336869694D 629469485149314726889235712405542263391673583102728579723061998 8700492227418629077079508809A5346`.q2967525Q9606184272388317716535947786814990309787659008695834881371ux 54a141130Q27088X`a971645774442100900090916189819413456 A8950 /1582 8739744391883308550990856600854310272 2653530315586820283396640)1694y 8628829195751038478%68343717( #4095628337554413567955424664601335663617305811711671785407889849533432159856739323056g085376230981047171$093768675430183701555  223715380378383833427023795 40354945217396 954077121073329365077664 470710927258086789718118249379954!08g88892209638142815615956e"15135104790 35951681446276709034504574609974445001669186756q8893134(Q51273p57304599205t1122443903196476642^8164285918037488 066329943689973009092517`A6204"1161668812817829238231122174585023808073372720490W95181889576314103157447810045738236520693 591654981303729294446  1284357984809871964143085& 852503312898931950064572250175483887671061073178169281242483613796475692482076321356427357982514244526251595251487527380563315096405297769220778066455624435381362509788015677,!131573611360X890761945591820m/U5770116416881703644242694283057457471567494391573593353763114830246668754727566653059819746822346578Z22917924161? 5576651833821670591578677993\:82018985573368193441830598702F 259192818047775223884407 478041470141465107++I20214991979808120956921956226323137418709797313208708645522367404161855907938167456582347728330950224298027J5952865692318K003830613787324345465005827227123250314207124881002906972263111290676290809511457580602708.0150440613944635064306974278546947745987682100444145343803375Y847772320520653010378 18823586036569054773343070911759152582503029410738914441818378779490613137536794654893375260322906277631983337976816641721083140551864133302224787118511598365960493964571491686005656771e31924231852621667602220733688448444092344709485680279058941918299694677244562694433082412438461604082840064248670725{]Q0114334042144736834536384965447010678273131695384359191204402839495419568744536764598754887261703109591315801609722*977257730745456297912790617753166325285720585876637675428q3354992 120086019043<!230173174315035220466567508849159302592661881658.165849945649~5562820874724831835151 Q89292!8880593601275:82354858%30866973145114120356599169341030769747744519470438361007 2824547206461738080460290363R93859 38017337703815467529764559651849267603930017194304251179404567986211463013840237109934724345579473004892982540268082162152234656027425848659568707$5279429163340591502507599239861122434031205805162238787722303963597091328568G160362127579561601866388146004722200580017580282279272t2U;99669568409057525907748861054938061169542935690773777928210841597374696131( 808510446953973485067590503662391 87323331699096033637717 72502694173298289040023937287965404638285967=2318D'139629734398479588628632934746650690284066719018081265O"367591679975901086748392006287)131169508754574038460759461691958461065596<83485609570305549441633706657315nQ26843!41541031544010084303806314421837767503r 4081693252012408134522&6267151771522 Q41359xO,75135351606691083594439996923158981567320330271292842412196R(3734407981204656795322986357374589031654007016472204989G9050395873788912680565516464274460174738175296313458739390484560414203426465560422112231023161290836446988!728519277858!87440432651722186452797664826673A8802a233860x2429 284545938543490994494207509111085321387448232)007808922516285123275724355101999038195993350032641446055729307391257848175798746835342 4965254542 #34-363994275193542400019731250988824196000957662572176218604745577649582201a839237*"1785579946892249675017925191521821962465357557056~&20399546*829961672170l 8010807997771295627429576366695966198350743566713221j258509536665806605597148376773866922551603463644386269977295750658b959980#9981898588529537 95195270977662626841770885z3216763521326308388127663353633m,343328443476Wd!82$6933653652880539036056 5218727245476425884099521648255620838117891177252256826114780142428969709677502094421226279437870341064631210057274502716389752341114262878287358819056742163061(6789476056879277154432622204106958794GPa354399T[89868361(A377832713736365467690117376G 43082285362494712605y37772472767976358410197718060679122426813922872134061694882029506815899366830255616754987151834269892089# 64471051491141944119227701Z166458500689 42616559347311296106428237904821#1009426507M 3808247903057907196118528325567 942907151041468948104916J52958972423818022881512765822571907055376524552855115986364212442841762562301395386699703*45907600684938040875210854159851278)3207779865635907968462191534944587677170063778$211036517486371634098385626541555$266461640227979517524852530037674u5612570030'.1170483838539120727319184506471366912257641521376989626094035  4743205360036923417903544073Q83147416234528401889408089831q3077418233389818803 59565954543405777784331681162551898060409183018907512170192983622897099598983405484962284289398469847938668614293324543983592637036699355184231661u450598057674576533555233871567821146668999684522704295458971092216365257396595028964563776603898803794151791786791067519900996613920323187867584/27939636( 02184337501574306904550466856023582839197599752858653843381891200428=A549397216819911334w82255535300044743958830079799736518459131,K649408627214966971910035939997473526276412612599535090260954004866939895589948742137959080969148458Q2371097753011906n44078093815659808169461167937442566324> E960636375154630483311272223181233837177980043973108740264753658257565735105997831426 7961984376549587780368526%539184492048819862978632974313q1780579 64521932 33939309075456636803851397180339,522539508697432o26591235850492830288329344892m7362162485252887744289185110409374633359066023323971192281445073558837332405781486266220748621551337503677558549413867835292;09003823116855374520901095101174796663003330352534143230024288248051396631265608158204521688392231202567106538845950322 W204536338955215399190110352173627209095655008464866053689754984789958755961031676965871612819519196688Z678475041708175227373 893437171676423299567166213782736138899530515711822960896394V 04319393984539708644186542g 8531686975370527607010614880]1785 c083577948095231315274773571171364335641324297420813726689614910956421480356779227056662583428977340771871064986615y787261642499fA8138305394798495874202886667951943482750Q202352470991859425203S!839530204349799193618533802014070724816273043134 Q94250V; 043659932816519414973772 /58958288190749004033159343607618960966949480006719437142405810C1772195247434498341419181799098 5832460215165755317541561989406i585184278339h29411600,930775142851302128620M732388779357409781288187000829944 R66781 5651002446782744569551768 497804482410579971077157757909352580382476124369087098751891490499042255682 3131309240101049368241449299220134638053834236067428862595140146178201810734100565466708236S281633904967655878990148747797247920250222721q0515904c/92104287552188658308608452708423928652597536146290037780167001` 16816053590757303124858096390023347676187068+ 6878722783177420214068980k 35062002352736322672919640340935712256236594964320769280581655144284955256838543079254299319932943296601822)3122323225W6556048763399988478426451731890365879756498207607478270258861409976050788036706732268192473513646356751295307464477714942334767058244522579700713445898759412665460941421144754000721179060745833068686621557800059665283536340439991445294960728379007338020630448 45748927406939713370079627461355344425147454232752252624869916077111131569725392943758_15758704952417232428206555322808868670153681482911738542735797154157943689491063759749151524510096986573825654N521674726054046q38610760578294194800933437004686656825857982A75156672015260468436141265295651989429118A86819088277E73794512260294515707367105637744278118026215026917904004880018089018=+7511994254605944167733157779517354444909657521310263068360-/3314423142980778956170512569300518e47236843553640276439277790863896656639016677662567857535423994742791944254466464331555413826554338848777885997206367966069232760173385884376314414811356169303r20017435220072481279824914326U78138949709550383694795946179798292577409921783223006387384996138434=a850223K38733784470928703890536420557474836284616809a0973792041185258355252015750826462555785658190226958376345342663420946214426672453987171047721482128157607275305173330963455909323664528978019175132987747952929099598069790148 =954044428398838179751124535554842612678421779772826898973500795450583427372668386902125284"09 A0320)54080911491866208687184899550445210616155437083299502854#96 655286808132479310668685585740166802240 92433394360936223390321499!2507480617*846445847638464786952^1953338420340399024'56010612777546471464177412625548519830# 601855708359981544891286863480720710061787# 936521867480594356998585969Y1932 0726933755156142499453811383165916626831030 7302334193841640768236,668723462219 251607626116197603470!4647308317268261q2361338[9060653440"04 !12690347926350394353183674105176256570479706447843230694302417490297311t 1132 q6854550)107874290549987060037398311376B0818x!'075342452699344375571944666545352408828726753775919707$8632284021962955 %3298713285247999463893892494328691777019012891422018T 6048493985547116852481055999157444155150743121"203337628695337924395471553942131210V 43055674837042590755300495066499480261479452473102868922945566495862130811891350027965491034e5017040726801006794892685536094499283835206  5764270549629974019008374934400754365525758905546552402103412862124809003167758761959419565925874237856112669741M"7104424821916671IG17289039443936653402942265145756829074904021534010269239649772759047295733200279828160H5' 76587315130769138323171936266644655022907350173476562930333185209492984`46253456425670225469578648481997751332639 9478212493307051114749180163456678888107821011518263148787551380271013798687512993e303843885631415175908928986956197| 30253108750571889625357632>7576334842101666810988451414146931*!14180072234499419990048245457520704)1620614222912o68823904i 390815929611110037569995292512506730 38526482138969863840524370492187547825163?A24301036927849762 7825860862!517347894001955870478 588473648038659951196514095426150266151476512205581601080121827598257747765239385915916506744984614916116515382126672692746129053375316305565444079342787655026730121457832488594873689907351216611839787734271587287091231138347248514603566138218801484056071607465244111884180073406789858715927398245214732831721462190733049206081744091412538891808796853896062786011819309948924081170235041355412682386374434120926778172979069471475901826482476111241455642393773222453866599286155147534277!'833441730731508054401388940840872531975955388976139864NA6399i+'600670780501058567196636796167140097031535132386972899 98629488833623632127176571330( 3301799923263819820940429933 3452616658 ?931395405145369730429462079488033141099249907113241694504241391265397274078984373036413489368806034000964063154070D+Q24466Q!59 13119262311791427949448972814772640383Y B80175%Q02511 :7034762975722334357888635370305350ws6791801)!66/78026987386075542374829854824636098160895767042190314568494296646362305101773157923283 1892173294155315138698878Iw32271364011755881332524294135348699384658137175857614330952147617551708342432434174779579226338663454959438736807839569911987059388085$750798405589730181493L 950769007587519836861bQ25948H99192391672r1%55726600004736787258286016Q920040270608150727096799714901416392742828895784243980014979855030574062002855409738268781989115;A875845709231721825.!2960508203410 600656184573508180403234772141005745m!80Q04049555529215274933246481040773076611691605586804857302606467764258503301836174306413OA079941372275o764966288246790109453111712024389B1025P158465191767v$775754483079530649250860028356296970450161379356962m775923436166369375035368699454559!74C0,1812k %6053009141644660869124725602145538124828530761355614Wq4436492 9093828937321531281411392194156066316227848361521406689726610R.7157795030621329160019888063691276!6706748549'4276233825394399002249897288366026392051870415840843029147873022466513711443954182534  1819142680759284180415# 519914656493487279696935199'17195821262627236458809916675282036581869911194836585837586332299322554147747921042@68482649t826527351008031659958 480994573729. 814114380215238767064550632330672;55196426039744382987482232266203635286130254379660094310450015860485402703419346955799891898 9233381602302236277726084846296189550730850698061500281436425336666311433q5213882l 6329366870956708mNA2564!:5997812402164189946978348320376011613913855499933990786652305860332060641 90G423081105800169745975038516887112037747631570313600027425027224515709063044963692309383823291750764696840035! 50379710% 998123196025337336774379/71381474755219014292858678172404424804932OF3095700292912663031697058740921445647202271079648477865731066083217309376803382174215t3815316189357870835616c+1255K.q51071797189267433564196008366T6358967034091155130878201387234 321400450513899835057603879934335567762802338543512193 /87683143986673572604086951113664988122995780161888283412400412 !51=455250250264089B6494780377675180146386554733 8569418005501363433953502F&62206051218394185162391537097907680849096741942890611]61034672077354959593868862427986;79284356205 $50014430805126766443218368832143458370854908224001482286068f502657405750939203135881722442164955$697855582651980462455278983432u169688907562374672810448030185242177061365332360738562281666645976540768447159639307820910170907633779177114852054933679368684308324!78A2993z1905k a48491723937706745249917184167g7930299249277892416277257788147974770446006U6934615713520841742821184735365236757370235279145983764571225764612260562812785216958089280898839459K52193251O0610532270023113$784333773897248813!32b527442435841% 1503451037376882238375738007358586938044331!31 -7025096113761670187568525921208929131354473196308440066835155160913925617578437-048088480230293043926309213427686012265586304569131335609781X09871180923844065635313618267692%1338923780297272073624396723985414448075728681343676738239636107962231A490755144477133868231449954792933813125997199689438474045425923166397 20939926974467632392137077399189985J(8381462236429949390207328507209804090530005916009164171"0540981430190644437990583127782662576228810)14704097708248077905168225857235732665234414956169007985 884188602735278086121804d(6001794114711041068870373867437814716123614195047405652+!02785852547062709467713182211320550504657970186i[257145248837213394613T 97863200480117928145468532616616068403160158494684022434 "387422754177121703361511637823590596a805613+2542*126933144171705880517278127917564053282929427357971823360#46762923249803" 828654166132873909074116734m,71090592361551138604472463787212446125804069317247691522192E 0968802090088015356334717756{125733993165330324425q2598966_0 164841607244821259805507U23231333130062149004227359859130413%V27925858450944015076047942740477402533143054513677103119475445213"2258755504897992674685415295388714436963994063910$01821953989068518675574434469209459068367792952 543730226 953594663002359989902482&a826140 081242739353020757512877A9282+21285637240+485977112648035237601a714309]1d?2386542167 3619164740217254778723896404314536419054110151(q7379775/32741619269990461595895793940622986041489302535678633503526382&148700357Z801552210224486(18436703'r2667274l047021616501b a744250;399165593695935576400052363604}Q14891?4777630187630213606882529627446023807752318964! 4303318214865563701469247654019094035844372519153521345576106 469739424511797H87549514220100430902357136368926194937636 645872492900162675597083N564748735453168653190011222194460996414S67253210866q1938351926694497553568096931962642014042788365702610390456105151601869890067302' 841032802134874567200628v82871329822395757910rW1928630817663198704828738863906992246184832399290268539249981236709142161348878150123409338799977609742750q5854684{a0857251360!62(9424264323906626708602846163376051573599050869800314239 8W 294958099kB5414$q8064514 9292695749412903363373410480943579407321266012450796613789442208485840536C178855689693/1889508324767933004049344111258343965)21115273627627867236\745757559585409486248261694480201791Z085835007862255216359376838292497809043110204870897571503j# 6515768045019660252155270r1038481 0V !405721312942528209895454562763443535757416736389t8q310579949179167182711458374352220263877718052502907916454147911736162531558m 955832881902935U21963368N8086592809513150501260G!6220847250469M814647532434236386386024794392932351013901177899974835271864M 02455424702837 33725403910085997650987642890844566202167672722927)+Y21365240402881721701249097489945443082686177223938525088376074974219594265521730173335585138940745734814D1138084535803974027779 518934871707229554276836g1706g3911972211811528466502223383490906676q336907959409404576472940901354356409277969379842065738891481990225399022315913388145851487225126560927576795873759207013915029212x37197522734365458411 602563336%44991851146917422971460865787363135853890236625572854245160180804871678236888855753250662542623677026042158351601748519818854608600365976067432333464104719910275623586453417486317265563913206064077547794396713836538773776108283000199373g370467245737880967939894493795829c0746901609451288456550071458091887879542641820< 965996284268i 634958792770070252989|'798975941955735253914237782443302746708282008722602053 "27782937522487.78991367D?153727843553986244015856488692101644780 29621135700566383479903340496238a092886027007750495151140578256529501502448496820474Q10872./854168454051301631090226711295195914052082754686641813730583791505991420452558V1558!15 q8153094 2405240916638575512988947423322854504{73542350703359849645936995349596%2449782495869E 182415068053002553370412777644624432920590683290188669240WQ91918|,31753996668774779601217906886233110029086683054317870093550 3891319133335863680374k6645024184371360308522+121720231 7009740351431532131G!8022815422349018373179732544785941579621043787870721548140917[# 61541516338138891258851792 :60349730553384094288991891916118605600735705272278749403212506454262f6947080427794597381714681039519282155068807N01210109I B461368719603149116237G53546363964481390257117680577997517512989796670732926748864300973988118077x67781170536770573156689515308257!596050505170424209Q58724 868382102667997098296643622. 44898648976857100173643547336955619347638598187w59123762325 34157057086345073344397j 8038667846171152032511552823716146920063473833772298773JQ028865943405120579838693700278331236542745011346>(!861078u521385286h62797074801X 79884611467626180078155791547230521475994305800665204p'17125674185|q4188801r1279938r6926121C1015652144190356733392611669714045381:0811760123270513163743<+7571768761575554916236601762880A3106865552414161931431267153558715486674789939868551087357626100692MQ59580 529064221779B4878 A6349970079430809556212645927953[ 631936594413261117944256602433064a20029519348034504503004315 858811189695053733567108u 86944665564112662287921812142516b 364724490212752525556448505638391391630]636499028893/A3406^ 247099699336256810236039225kq55072330 4175905212113903766092726584<b873553 42644486524780576382616002385828069314892B577587837915649022275b=3464816247343997332060130587960681363781529646159632606987449611053683842031a183675 4176373955988088591188920114xB5460661351597999299972229804170711225699U459450977655664099 &82401529366309489106796329673550583041225860805074041<b78539539 0281975956395q5301182{04181029089719655278245770283085!37$1938/32036455905642297100322284081259569032 8291260139265828476559907a166111G14541131514410887576708185489428773;9153766450516427998545107740077194632650777766140535248 49789985951087311~1p5m43735744708366215* 10978865621068q2800090~ 30359794847986978946643402708991434322239p/487108261968698934F71605619lR22601j083309307037750687697748584032413247464376z 8966615197255618037147259507184242 U2924672903979153253599900555733460011169355702022572244277295026384053830943399938338801883955382154473944651525123546035267423822541483g9901340230545508V2i38649723899924257800P>37255554101784618634786906460458658260360723069525761131841342252747864648523 5910267056246635080255305855228205098919781842042502825952188002318285124483930594`!09077761219812979540ua653985 9053629101777939776957892084510979265382905626776151957650493344879513 J91922371856429991508288980809041891810154508131450343857340325795497078195699926238835221520814t.6268899360852398275371780376990414@(Q602492!63z3@82707595039088kq2353687&14182564965563294518709637484074360669912550026080424l253359185623095537656686612402787588310102149u0d05028045254/'85010599912421270731949759 M76226730504422507591529025174277463649455505232518632241138840619125701291788138418156691823 00893603475101448554254bq7834239p)70813666829750019379115061709452680984785152862123171377897417492087541& 6959508967969794980679770961D 7941674310519254486348U4mQ14358256010831711807234044!3737231209 241185673489739223415275070/DA3745U!86 6693396236535556479102508529&1422 9305666062515229092414871097 834583511731682041296453633303569pa149629~73250126955q2649821)=A0908 #53824908489044217555309468320556363164318939176262r 0342894851843925396709224125659330A3654a16213220037952724803401331352470141821956184190557610301901995216474597344012116012392356793078231907702884158146056472914817451053880601097875059255371523561122901812847101379172151246674285000618182712761250252418761774859940845214927 A5670f8544310277046369110988005543124K 6838369804708640417669622318770653952757838744542291299666230164S7697058214171286363296501304165012A3977 9574126276340111301 721772287129164002237230Z,f85343677016544H0 Y31127965945266651960426350406454 .3383772209428482543536823186182982713182489884498260285705690I(579099814464919365456325949657004468M9923939218062619183440u26496550644S 1216O 1442 844364261200/ 28602157801140467879662321190e7624109076487087406157070486658384585580327799732792914 8911037353001987311048689569173620367 A1797"3099062854837028361184866722194576217750345117701;00129125592546268053742772737886372678301656835109233228064990845917962030 A68061808265869239205618954216319860047939611339532263959997495267988010745764665/a400437R35133685671362553184054638475191646737948743270916620098057717103472:302706317395612448R78273A0101Q84974Q%'265733191742446567787499665000938706441886733491099877340862442833450486907338279348425G8737469497333*719196899284953456104571933866522247153668114566659695973* 7218841669876732164933189LW 6579746122165!40m 0022532416036780532999092543896D0166418903884356480560126288304094213213002061645 298613809946272121432723445780681992582320285139823711892654123446wa7174779 7204152318157519479|"564429846308888463853810686217152745!303165705848974316209831401326306699896632888)+2145204083110738032052784669279984003137878996525635126885Yq5596205278951754498694Ka697213U286374577983487319388899574634252048213337552584571056619586932031?-945150251919455969123143757999 016561171855088166587567518106036514285842H+90232598107834593970738225147111878311540875777560020664129323911660y6A8648 86953749244898068000217666674827426925968686433*Q654871 608307376281613984107392410H*1675%"380543698803109839221402605142975912211591485059379068701351029862207502287721123345!101639412512589543377884928342363611244981450459i*253550035968325337489186278678359443979041598043992124889 079504501170116193831556m 1705@;06002913150242538482827828262233041513709295021921965083747146978458055506*539506437316401173317807741497Q673307 00840895406654169466574673571337701336289 39767002586300254063526400660163" a839203r 35898949241282702248989067643853399318786080192231083288 A8164I264089078551777830131616162049792779q1847212.9382238605819867446686109943830499604244732548574162397388520162023847842561`5971617831068501562991n874758848a815490 0933394074455700842090155s 3444962128368313687375161308259459977129397814919536421122421579851584491669+1569370916855252644720786527971466476760328471332985501945 27589834505gS31682265863117660623720172100792221641018829933080840938401421375969718597689704275904150094659525J "8762813586711735236496412105885493449664589865182 A4382,913763156951986179495997154522125066746117439488443331265943228671096528110950169302835149652408285012019083107867806706185114574097078756311761074642883559391598542167311515309694875837895597958613264956981 842910381727212131386815655 *109871168862743968021885581515367531218374119972919471325'914418850067203648197594416795088748793595983619600c[ !70"04099785974Q24598b7157558134\ 61897286150207Q5395369296554490129530972889637677133538424294179547179095583421017515093146990523663%4087218654727629639065723341455005903913890253715591717982i626797447118/+.5065738685040882299348044455498505978232978986170294984183762k 7574553031129919143411094130Y1444306884306265 01658801408561023324210300 A86954418502977 1585'J300372381903251622255707299757107273060660729169229780336470488409587112280451885119087185882995143315341285492971738497685231362760768684947803649482999044757157711410809580581412089560594716686262900361456026253348632849868160394633724366671129644602929157461811177891696958399470809547888635032811296268992311100998893178153139466818820283681382}14974006917 {288881713911628391029568491823335893081336013148874836646422438177608100773918339374934693364474815056493364932315723530610938579683990215 1491 !35$s738352197507736653475499431740580Z9143218212547K 1359488317681489194306530426~3B297444878307794587kQ6297098437601816940310569r41386804846359 0341059483417884389631799564688157919371a7050478(-541569401365862097760735632832966564135817028088013546326104892768731829917950379944446328158595181380144716817284996793061814177131912099236282922612543236071226270363794686353339175 46552006008819975294017572421299723542069630427$060891111341653489343114917531495353006741974497901Fe81671568754163484949491289001739377451431928382431183263265079530371177806185851153508809998200482761808307209649636t/+3066172549186143700971387567940218696710148540307471561091W3165600167252126542502$225930648410589884712964923094121514456394788999932\J7+5573709085 48002321476443037232466 552578583071Tr8988145-&86834745518893385181791667579054210634931625787040126790661216644142285017446278477132740595579600648343288827864iq3456066q d6899746910373987712891593313271266247505582258634928427718355831641593667712218537642376222104779338956378722902509'[1822571803313001481133777369415084888675018931569948498389360526668180127839120058014315964419105466632368++20779935652305649042071136419220017718910793524323432276175682511264813329743549265686827C98665494Z484682205^167375057849622807932422649812705271398407720993622700924506766568eK86641187707976775486702878643Wt4152179 C5503028715727228225081201706071338033964184121125385624892013001078246216513698951[@1113356244383818536627356378343692127935470923011965591491580056170725851850316&041193637478062582{5072646480182152343026808148697816482434931855B8415"1184406043696871666416514036129729992912630842812246987742933230521499998182904611!767275037422213671866146540425344631449871499001004154486843735*T"3059495953182872280520828676300361091734508632133 2895841765887553452279384824485711815574893561311524926772006&a83699859549388b143044 A5498q495906173821785459993785108614460149676455501036539712511385835050851124425177729238143962330437240360326031814429913657502460127875141179449013058034521999927)0717128477703012 #88684186757297518921429565251248694398372904741036 9912421733955]O3075002482336183273872969737659882005389590293548605497980232040047223687355741185813273433797820394128789} S97329881255351450764153536051946211221700067632161119584102925256853656181313878408647714709972455- 71216318660029146450137858"0209624470377137358772008673805410814004231141852+9326739632459691404483466572204288067928061602988404340053ba097065V 636096660 a096878013252244Q95791qB92122653056085A1115q4912790\436902086941987112558845372906322442322228 22012248769976837141985 225904997885514250047585W !92H 599134448983419735833160701075164520796620382579278533125161760789 1034934969814942610553678302256121376708142109!31y24201757374q02076069533557217043575351774615;B 83843210157139981379859660 6DA1479%&5927542962712943614268592213899305498064539914458869275985442!78T71367y!91%.5825996186972975658897874108218942233734454737522769319922263>2072299838736848434917#10202466274795795643496150126574338457586388342I53281420478269344731299711893463545029946817471281792981674396445249566555323116499206771636645803182058496261322346526061754135324447020076618074180N 85600010a99410923214344D&347697130895133891710505038563365035451664317744896406 86176119362267689057695569391870770394230494003I22614449572516631017080642923345170422426679607075404028551182398361531383751432493056397799559494254519675 819686908852834348860508642437578712929439366177362839587272308* 68398938676366226456791139812675226595621009318322081754694778875618833508387024829534607859702360986565{22755704495258739871812593441903785"133340984245012725Q924349018966145404453679049423815612765=o478647361766717706470024311197110900074740659456503153750441779821923063237008720392120854995696810613791890299611789367521460U90566548138285828A3753fX+2142219594063878707478799119492089837409178853441752306471d 17839797986451733662532951177510555901416045987333818688797785881 7660451635335355604764842 8881172283199004450428? 52338334530392963730803973047141045254700,076012152476028199638463435548529323771669591950786873276W0085220087123927285783580625427696553559647894501660138162951779085311398110928315832169!86%4744958438516582461920929134323496779345585613140207764254646328867735689178557683516960839286418883,833247004479583338323823778763444263234563016795136710J.4696690012177771280655224536893718714515673947334404472804509?.906836671106559533386029380009999490106k85962326040186373357284667953122968W-58145420890540651226419162015504500430562136991850941034609654381669479596458580 94905110767994673447171861564772381173703565K 2870758945603551919560396Ha578663)23472505446/47518441555817808796282223197269298Ba507999591656755572942:26504733537123516236627,q3332893 2141 97277168568272530373483689191184719713{!884467779432748571488278216088447657000414034999 K942096275608830815094380307056660227646781175333610281878007102197944287773131463878578172!409023041r32482689824779852189758140879763486146763606368!96 Q47304f727724004595305137693837538154348698110199065170696177405221824742265765213815274061269901270688087538640866990146174 981877671880076124151967065G17653084325544261017536348281196837493395825742541244634247233586360777980960199745187W"54959567795 098404768259253477849930457883b1747079059795909}#7722327844'86942149294515401742146232403008419>1r2967824a 83509474202123617940309046053405493129991949608 25869771W6800338625057649380887409940095899481093979832311088387692364902214991111208706392028924906984353331527279913309863354543249714413780591322408149601564856798439eO780280409057580889190254236606774500413415794312112501275232250148067232979652230488493751166011641277739G02041566848265531411348993243747890268935173904043294851610659785832253168204202834993~598019734388988302099 52288611175126686173051956249367180053845637855VQ18484178415947974355806178566807208018580569556799018519839766069335822477913650456270576673517096I933383904526124043955174491368851159874543409 Q10221H 07539212403241042424451570057881574946080111386125 024771909030500402406622607061512108266140 62040425010583978098192019726759)99248849661394411K7346103824011785 08056648332103907386708329869107809349582888870A155925429291523108071159723275797510859911398076844732639445206313821786226099916Q52446!70289690671922822830451E363652774517975842147 9099906257373383472726498r 4010489985076316306680502644636293525120269424810854530 !06P'236538250773340575475701704367039596467715959261029438A48972455057290856884960913463231658194686605870921446537167556555319620918659526w 25373135369816251735193011534158117135329203587?A6883x9400067726603161752758291739839 6454113318984784712105350dQ90959E1 624818782002769963734155880085256742246151140601576011591025644900200394984033580913091401978778436501679601670Q02874Y$1584\970830372598049465189121639760131930794769720580347 1111172158592190662310280992120840692830919060I 76465465568341320755631531500645346232100"#84907633048328153458698497332599801187479664273140Tp1289961720524540674695271948079930396730194274036466594154400092799908634806622334906695224044652158992864203435098858422692019A9684Q12955*r4754650xA8425!61547880907276j2527028150678628108222979985391753 8 +710186677215943970851466461287114874953186218094171967684340643517583768843678608144631964191256657404771869916091555091087 a125367&512618784H8767299105655951551597396590343836281246291181}!9494118801059463d 03904977730435781157904298230450720383227S4 2 4150829183782132128B4596/ 934487974971232749213316631*5638823828871564844788314241765014798018785821576879306301788462369013580375330624614857607493256771265L/q3805901 3761727188993J=q8711339852342402550023 135749143182591424798293677754904963993507558396689675783643166183693076256035286029406628032554165354315180137148219417726722440052684019965333341840043455252965929185029401316006C39529787436422280697772043736371787345794842023874515124915791313941114860841642932A79366096896846408Z131017858142710955416293375915178392341L&054332870352@!93L68221127681583168664511 4345336650598328347443536290312393672084R!438811386079746701347096403785349071490898423178783650652828833673957143603439863363212091718954899055748693397700q2475954-142258241078386683765546740013732432280911369267068280539754l 661711023974377494793351B1350-81475520834285772800986189401984375446435y 821836011257763244738945205163693858513&599645183618569890887217897646947212468079003309250832+41656554261294195108P209106605105540933731954888406444080285 490080760400341546621376696*!29Q8589755919596185524`#94031737450825607289512094545656215954040542581488~278658235761799?312086627592236611513744576791667526744045122120908347074S13782908235278496256568819727%Q69479 005737870!4448150347974223121032953592978223771340W5454777918138235426071846171083890978259644061705435469685670307454116342441344863086763279491776829231*4Q2823284396549001805653203960795519603900669699033419927821269676777183H9h"34a794487"83q9852358q8401509'594685874537989503257362809831622925859 A238475573285028613155970 424981417805646161586341533) 699965088608764899373049307`788874014974614754288038742125068921215587669224238743470112099085908216407357638081738695975517608387760027751M56548526356617201975 580049790223419586738061442X24362889575032065336908257567855070205551055I 878574650371086308158185 5883054564662297694 06182654913851813267374852 267917919091354407852685476KA982432246998996665257315t45862251862823092085424412805997628505488913098331761884983352975136073772030571342739638126588567405013841074788943393996603591853934198416322617!73943132840050626295140357877264695493557463264081869797186302185813995719923601345374229758918285167511358171472625828596940798518571870075823122317068134867930884899275181661399609753105295773584618525865211823757718599163351w 441037910451845019023066893064"78@013604494954096650 38100445026573493512770742674257848981856288699808516657133208358426133811426238554203157742466131088731063181119898802897228497905510751484037022905804830527318849599941566065373140212967022208219158629059526040406200/%26966491005926556605675p03614342302328-48839504038098498186005616464609981925761623547871091383296711506732550860683433 a874818A68976)Q20002c 960119110098045335042384206394341635&6888027798350_w17829834941721167491942560160868533243538595115206180903124169818207931461506207382609718045826568704362393575749573733278157890438601785081102446611821957450170106059384336519g836068210r 049982042)58577175933849015564447305834515291446799705696579901681932056241927977282026714297258700193287315393) Q1541118410141429274170353754200369876060876550010934529900703403240133480638851409576955714719030277211270701 548123931953220997506553 684422770002058904592274242T #37051507367764629844971682121994198274794049092601g*439368569721862936007387077810h309755566278073712280303500488298439195464$ 355787895064018998685060d@2452191177018634505} 702390339407044541m 4720423764997490350q9495058!2844699407g473411581934618336692169573605050808379520363356199476919379650380871025073507vA6004[42820434367245821592487861614478717581068572356890760221746273317094727659324132491327024255193915D 623961233A8661kUQ50633[.2987745618984384288764099836164964775714638573247333226653894< q3659729905187411779280;60239306160016168434070611663449248395156319152882728822831375458678269830s12201309548159N%a754923h776687645521254568124293642747416[ 033315601516144922475L<5753483592622626350476703386641002 76800886383266629488582740369655329,H609057247979473477042843185079 6907114123036411172922492930773193930979545287741245118395348038221037364469704696749304281091179723244861541326403157843095539667106146808381554894714673365248367913856643108474762430120184893291-9q8087617913162934549442539542272730964 =761228853473931896008109652020901511045793776025295431301889381840102470101381Q62883986154569116:BA5738CNS73756940558138630581099823372565164920155443216861690537054630176154809626620800633059320775897175 A5862254646243995353917432282254332671743084< 9646132892958456792736540911 559647040612970477598185518784414199486140131322060745185909608884280218943358680493640965157032y007762613237836481490W 8141319598929639844137178"6412208764498968862979891087016427016901400782574gA19896129511956804274853178863330411697671753 21352138395844332564428849087291906700980249628156062625863694232265849062862802h 101266913725837814936377496059 169326449451882926395257723'077356021656909077097264985642831778694777804964343991 92165006086262853296026704133845005078273906402875298641q4964737w{188892189612641279553536442286955430551308700009878557534223100547153412810957024870812654319123261956462149376527526356402127388765103883Q7364801671832800283988323193733015641232* !39$3242297795301653483012778450371749347389G95885748021949967226211a361039tA6338&78874874055400054404393448881920441021347900345984119 9215570268737009709952053913194958832659221715083246219423001859743#9114955941173372819986902131162988668064434892330206070038211723679627307191405008084085703978151998148822390059948911946474438682533745889962375133378280532928272016815977970066488394482446332210928320504045983008943565954267256879714918703447338237m48292032831968381059077157271919030156509574645S12532510396558733.a385099T%6350617536148005019504520135020018028150693324191826"37764414097080945745624854867704904368368 091805726979401046501948467266429786676876977892914311A0430949736165|9471754765135072597538577958372797702972231435199958499522344049394502115428867244188717409524554771867484911475031801773304689909317974472957035192387686405544278;q9807249974912425751016218743977290214N80107314706531542013005458905006. A73329945854655105526374914354195867992#1412218735238407957;33722640638604319889362=!649693592569592128k5A2544- 33175999968516366030521642228154681777589339252115538590526823311608302751194384823861552852403294672971981121053&89816510012881435775227466863!30450921 G2526239594189673003640808624233657620979111641766331328852352062487922978959456450333733139422384778582717195412347860434376165241568717943562570215636666 53100672894703307954021884888707122756703331739392625090735Q51367;99539111948881240659821685787131385056850623094155206877987539740658484250~ 615103489821873770245063583"[3624807432542464195984647411575625441010389671576677263196442524931941806472423789334668561083789808830313a315772R6495607812530491759401589514695496522311855-4855946760796819016346501861829556698939,61454440176816281060446506844813956166722072926121016469233^9339963283E56385083096794279p 51268435760356901970523138364 131177490460077284086221474' 322150551811648988787908778q090507061220010051271575991225725282523378026n052846158173955819812239701009201720225160635 6478161553353227545326454 9332092463!76'1717446840450048285353pa686267B3004o/558076166180  8792312510460809773895565488* 0895196220936750588416097522823282504337 186608193748968699961301466207236329123670525421454641629689104429816326687167153926119506256272545432741'1995024327909q 922580981036A364409101491734183079646345064833303404765711827040276868271418084574998493392035402616663674646668754b3967129918067471909A2710! 4428584870694307099756567949 ,89964257488847646220303256377511125340600879369045657792720921345924272~66833385106736152762610160266477724y34471989198g 5619723642084750496266160 192975779825177582350843717)3103879117892)63011263407753577580400669ia191225dj913363140721134 1510629617390 8571275094036231467009311761 1158730886798239298009805089V7883711940375473674305l-726541401644692457679218575368036328913966415534206670562327A1177fA888610083087784957170988085866702310404324252678595556207731054307229803212594113491466846802205018161921507666491068620 713826058987655210423668198670 7M74156917880001690656659046965316154923604061891820982414006103779407166342002735828911994182!;2782659666207030384795881442790246669264032799404016800137293477301530941858742115328464L065507639667561683188970051520266=9294173828k 30594074014711747846483924122567652359341855406x83706083636457657081801664285382245516864421212113 2453935225522162483791737330329812349528984#A32737407786789349311975q9250228513758804367918F! 836416773151821457226504 010420210041076609e72915255550321818238722170811276620866531765192645845249526968537631443799834033694712444724779697389051494112001093K73794061859447165516612579937470 30521750426383798367668159183t96521637264929608371067428996276720315413 043337420571828540901363257214l!054640471894328548696883599785123081298958157139159348060996015558f!193450761663112963iA9400Iq6013305r2571490692519079400711150478537"7089734014675346551747074709693581491279718818785B97751675927822300312945518595042883902735494I 764750607264oq1394806 05935317930017110002144VA5044 412454361656>q0919997z2 58091918252554863587035293201420058570578554192177305053426875337990760387466896842834026487332908888817454530471947409392584073620582428493490247568833524462124561015627290651306185207329-,17925229941744799950989j87741095146417007 0562016350219269265990932381 A4119!44H8286218394241 067457128099385258842631930670008050900019819621758458932516877698052284546583567936296961921908089.1321048451878230623911878024604=490933606999809477625379297359703r66145998378211017125584517194167034473216272244326591485859579782375297632344291124231136860372451443876580127159406087878863851108968088316550504630900614883254 !19/6238805872042843941834687865142541377686054291079721004271658 lz4-2.5.2/testdata/gettysburg.txt000066400000000000000000000030141364760661600170170ustar00rootroot00000000000000 Four score and seven years ago our fathers brought forth on this continent, a new nation, conceived in Liberty, and dedicated to the proposition that all men are created equal. Now we are engaged in a great Civil War, testing whether that nation, or any nation so conceived and so dedicated, can long endure. We are met on a great battle-field of that war. We have come to dedicate a portion of that field, as a final resting place for those who here gave their lives that that nation might live. It is altogether fitting and proper that we should do this. But, in a larger sense, we can not dedicate - we can not consecrate - we can not hallow - this ground. The brave men, living and dead, who struggled here, have consecrated it, far above our poor power to add or detract. The world will little note, nor long remember what we say here, but it can never forget what they did here. It is for us the living, rather, to be dedicated here to the unfinished work which they who fought here have thus far so nobly advanced. It is rather for us to be here dedicated to the great task remaining before us - that from these honored dead we take increased devotion to that cause for which they gave the last full measure of devotion - that we here highly resolve that these dead shall not have died in vain - that this nation, under God, shall have a new birth of freedom - and that government of the people, by the people, for the people, shall not perish from this earth. Abraham Lincoln, November 19, 1863, Gettysburg, Pennsylvania lz4-2.5.2/testdata/gettysburg.txt.lz4000066400000000000000000000023221364760661600175300ustar00rootroot00000000000000"Md@ Four score and seven years ago 'fathers brought forth on this continent, a new nation,ceived in Liberty,e dedicated to the proposi8 that all men are cre, equal. Now weRengagb0a g) Civil War, testing whe[ cor any7 so o, can long endureWVmet o~battle-field ofsC war2have come t`a a por2@, as a final rPplace those who here g[their lives{N0 mi. It is altog1fit-0we should d is@But,a larger sense,+5not>' - consecr hallow -bp groundi`The br@men,Qdead,struggled ,eid it, far above0poowo add or detract. uworld will li note, nor  remember w&"ayq but it5Pnever2get*rthey diPfor ue1, rx,%beP9 the unfinished work whichTyf!Q thus so nobly advancedw}A@ to q@task0ain0befM!uspat fromse honored take increase!voaB"us gqlast fu+PasureqD2- whighly resol s@ad s@"diDvain@under God,;`1 bi"f freedom -sgovernment!people, by' dperishYis earth. Abraham Lincoln, Nov19, 1863, Gettysburg, Pennsylvania lz4-2.5.2/testdata/issue43.data000066400000000000000000200000001364760661600162030ustar00rootroot00000000000000w&)uOoDFr- \"G/1k:)5Eȁ5ΩT}fLoW $6L~{iR]{.BEWH)*ֽE4TXiU!"y !0 8V2[*/]οKHoɀh콶H_Rt%xRFuy%[&ˢ&lF_|2RnҦB<4w?o?ܸ }>_^E{km]&Lp 0W*u֝Z 1YȐ]J+O:2-U 5׌ m *fanVa.@ոTda꥚`_}!SdFO% ϖڈMȫk)B_^3ݠdW9OP-#daͮ^ Ӿmw VP8 1D,$#%' ջ o4gvNP#Qc}E#Wv_,cKYt5TVl>D3K$X,:*W}ąG >![F_rRj.s(4vл"D+/$uHkim4r]!;boŧƥE 5bOC1ut^tIh0:״"I8}(ٖ;l6)|}/V[Ӣ;mC㪹ЋK(hۅKb.>@[DЋ32@r hs 5h1̮fsس69MA0NW`'-{ѪT'TGrouڷbQo>^%׵FҋNzKEbҍter M\qTWslJL(ϙ Dm6\žSWSIJE6fpB2&?{~A:UaWP3ILutYO$YB &L,u+~DmK |3Wph1aW/I2?XcYy8/u_1]6b 8! =@C[lD"ƹb`KRJ+"**k/R~ƺ7KI)Bӯ3Q =!,yxׯMk-qo}ɅzS/tFPbJn\;꒼'#郙h( MF:`>e/W0CHs}>c8/R $}r3q?)݂mbJCx'b&< dOG6,R['q"k-*6»#z.Ha N#8ffK8H t<ozFx̵FC2[780m,^ER~}=jl商z;+E5VMZ2?4 #)0@:PlǞ{fg [%4SF*D2k-xNIL[șw'AEF `7#~VYes4Zj<b@B诟2΄: $V^Dz0aξσer.@8v+ﺒY\@@b[+"?I39lv.j`<IENJePʶO&!Y`*%`Ϙ|\ӭ$H`zO%gviO"@M\vSfNy+1UDW;C"z-;\Q ێQka36ʿ1Q:0mIyEZ_ő絯oFPb6!1m PVЭ+Ao4ZLV$"fD}tHFd}!+ opvNWEA3SnYQTeYu,Ⓧ}:Ӓ|7UIϑIhq{E?(3?[;;AQn=:n"AQnڇdjN c9zIDH-C<aPw'hz.f+]TK{^Xze<Ӱ|2᤯ M_wFX(v\ƙ"ԋzӞrŽj}R `!6^Ff'PI^H=OqH4C"N^Ld"rHevbþU\uܷ1%( UH2|:_)<./#ۼ4rA@p֕%LCF ۽ˌgz a嬽51eSXUc]?4KP]7t;y:i/+9VI{E! I@@asI'VmQ[qv+uc_EbOÿ0]"eh^M #B[իvo]B(;Dp쐛E ծuztE̙O8&^j+˟ A zv@Ł$}tH 07`-`{*’>2kƼW> \GA k2˩q  tܑ ]`Y֚Od DL sR`)`Xp2ru0% m >](XXԜe șQƉs zNEQQA[@>?Vd ,|GT9J$-A|Op=A_jg?3|?8 Zr~B~<9NJ*0n4QRI'^SwV>n?;E@'XOYr* \.e^'7 齍ڹU|D?W~҅ TyES/}UDzJ0' #.qLT@%#Iy3o8zGw܅w˕} 8+=0MloKwP[X93'zpw2qn6 # T|Ez5T@f[RPŤGR;H `RTiwyu+;R,,3Cj/3.U| YpxU}{EɨuR  kȬ=|sx6B;+^~'ZIW Nmjt5.΂A>$V6ͳ;s )l[iW#cߝ}pEnRi5Q bZ p!K<8O-0rxE8)hb{\r[#܅p(3:,thOJLU׈ܳw54c024L{&Z&-p1itEgRb2{kųsz۹3Ctj7km wΥN[giE a=;G.-ĮJ1BE_ʳoϲ#ҍ ֔N CR c[V$av #Tүy1p1ۮfRK .~onPADZZ>T+J䬳kI4:gioX\IU*C"3w@Q^juP"Y#}U&|c۟һSqhCSZ"GߩN;bLz`L EgQ_{qlwg/l薋m RDם6do3V( $yw\$Ѵ6KX|()K5IwG9CyCqqWm돱v~31h>-9;a|XosV4; vltZN@w HKwwk䆋˕] BU\@2R݊HHPiemD)v/:w#MH! ;F\DW$ vsUX!P.9Kk`a%t*ZP0< i/ Yw6SY5shjsWAQIwK܄u>^9uFcѧ2v!{7sCgJ3ኩ?)&Z`KKGl. eiҖp'#~)>#.?:jM+Qw+emׅ!})@qiNVQ/]ReBĥ+KKι\ic4֩pp}=գ.=xg CgF| 끑tͿ)8+-DN?\êA2Ӱ](iT© 4XXBŴGi4t"=D6TY,crbbC"nML ڙh%0;[Y|r~_ZK[G { @!᷻$&0U_ \ҙA} 9·DO¬*ܝ9^gӍqv7 ?5f@CH6J_2 (ꢵ<$l ri=<'rۗÕOx&h8մgTdvpBt&6-\<Ѿ)z3 ;wUGg\(O=DWV/~Yf*<1085M~d(s݌/|&/ܾ=s:u.ͣ* oWGUt+ e XQɜ <43gPbO!ص! &R:tsW#J>+]̗n^~ q &!tj ;BZOC8-NW8]Z-EDDfTFw`ƥxlţ~f/ ]6R%Ȱ$?ۃBTWVL<^uGKO͵hLJ%KSi ;1o#밾/X@jUsQxgFdJmVA}(I^W>s'?FsKGޥ |s&zc4$0q38opEĀd&Z70)c";"̑P۫Ƈu$Awd-*q)G-gvwAHdI]2dX=F:=ROPt8 rcX~Jr!c r`^C)P;L>.ݑ>d{b A+6j|N`eR냣l`T2CKI̯IV%,|_0E@x4=i%űQ!v1B sX8_'?nn:dXlv|6=Qh[zSB%u/t⮖.! BtG #_ZQ+ѩD XQ_ڶK.JP۽:6=/G7-JO'>7%߭8c@(ko&h[J0LxӅyx3SpS[,}Ioy#1ʆA)_boAtaVxsW=Pgr D>iRS~0Y< -DA+TcaՏ80|緷j#GVS3Z5^ıf UH4l nU-+;FN pїLaP=Q:dE֏թ]" :top/"# 7Gl#T3f` bh=D):٬%VB Ā`R ,:1R=3z7|Y`u2JO68`7ScQɎd?#壿g1EH9˙y˂Xp[oFvEw#)Aʂ} -ΪH/9ϯ/P1$mHߩneHGFFC@3x+hn7ҍn`F^W|-+)?;}OYeisLm uZlkFU v ɻ,ۂupDRd+MU3XRU+Ny59Sē\,m'ͅeOSΉW͝ voF34ӧ8&:a-fECt5n}w֝7'ǵsl^0GVp vJu,\l\5SS0V̝]k؝)tk*HHTEB6n7UkVէMGiӓKxM;,:?rh,ʹ[j{$XXѲ645xY2H*^6]k-H\+ Icufo9ꛊabwLrgYf:|Do{tAD@ p?~^P@@~SN1w⡜ɔ@N9HM[[W)=LxAou>=2Fs=6s.+cyE<_4}u@.|ts\TrԆS:#?[/@]z~ț7 5(Z~q[ՋN; Ԣެ j`q;uzM9LO0"sִc µr_(»"";(b623qpOY#|㪘~]Vr:|3oV(tvPb?r={do/(: $&,CZur}NX뱥4؛a{>]ʬJ[MnW p,`#lf ㍽&mSr95[{}4Me.4uon̢kD}V2Cz>,ʠZ*]ƻ9~ܱ-UIKK>ƅS{'Q<ΕHHS?/ةYzr:D y@7k9C*/?3"TN\ Z⎻mik 58Z7V*y2:n.*hB%5U})79?%Viܱb|Ⱦ I/[}U "z⎩aqM\5JIcftd;d`a749hv%B~/L3%Xb ER螻Iibʟ!%/FטYz_%!~ou[#p*%)U Iu3M+f"xV4K" ǑRnz|X*jd:ls&N`ˮxӲ,uJ4**՝Cwp.8CJ͈cORʣ-үF0P{ï` Dz[ΚAK{Kn-&旪9E(bh(ppQdS6qE"uk l @?!ӧ[iGa-KfutA F- OaWXHB2Q3kWgq}fkoe9UkA^Dҿ=e{8WMF=eѿ)ETk`.9zI ` 4oLLT6EJm6tD. lg^#pJjƥD]KĐw IN ?+ɥ`_@{/HpUKL!>" M&aap(V1j_MFP KM8w 6>(}9ILO5%tatI]tQL#S("D` '5t` gPL#> ,f [(-d#&< g*eTNzC[4OwBM&Shoa^Fgc|y!Po Iy|Iy Y~|'crMR\+":p|f||Y'P 23rӏ$~>by'TRV7^O87RAԬ CǙ"OJwkJlBb~l ^CDiA o瑹8J*hlUغ!Ԩ}rBP(RMM끑 paZ&ZI;BznnF|<1la 9@LMJIv PP"!r}э7Zt?B BV%t" '< JH-E/룯ˎ(My~l M!|57=dy Ez}pia>DQh ."}٧Q!D8i&z:1+*QC(z!K=%iaQ9`&SUY ֡h. պ<&SɵS&P82=ͥ/˩, AS ]G1W[V1ʀVHi6eLU*tn vLJFpi4%~=cW-HHީΈNM e1a|SI&frB[NT|RCG(erntp'Fmh+R.̸T8n;.EpePTi+*>I/ ~C pj5ŝ"Ħ%4ыxBCQ/6-T!ܔTQozM#5(SM0Mǂ,i*Yd ! (T`495.Ssw݁OO^o:N6r=9^cz.W$DGqlW cƸ>>w p\azO0"a"JWN1OYb$4N;KNVą _ߍSצWf5U&N#EZPwn?!*k=@O߲[=:iǖ"6!aQC\ z$E<;G,ǵ%9C[Fx1-T5U j$u⒪WBf9vZ⻇bv橍)r2 Ef)Z<_lV}[[_ư2DyE;6W;~nDQCpgjw͛-(ðQp/~ZdE0rAYSٲcmSٴBUc^rJܼƢR74?O~]}J^%: ǪROg3 x\ ?.;M3a竉x;7QSblO7R4t-e&E$}[ ?Gn4\(v:y oi2/st 1B _m@D5Y0runhhN -|$ᕌi%"e^ޝS!w!K0c! Ig;\5뻑+-tAX^hb379yfwC0C+`H D}퇛bVFUnPD%$y†ބg͞?JuhWMe3[*%ebȨ.. 7z233:|kXKN2HJAem -2C8Y,[a `"YY6 `aZfJab B0)7l`&X- J:@6"mzQP.ҮDX*ˌgGü 6m#m'?4U1%0 w"8(h _N 鳲=qNhmC0ObmAjEZ!o`\&R]WТB^ wrSoW s>@wO1E\N bT |u&^N@w]ZPQfzG1]R42 5w]r qyAiYqw_Xo;ފcl^csbb5)2CB(:. *K]3< .j c+*=BȆvM"rnگfOCķJdZogԤejynt9 yb_`uleκkگi嵙z) zN1ִ=iw6t0M3r۸۞o24[3wp<|Zd Jp'oio్[46(ԅ ;q ue#"|$-,V }6Yh6vl/ enDsYu"z<yb1+Z3@ ^mzB& ;BT[p.u}Lb}{ ]guN,Jjí (tZZ݂4lAT(AF!̾_1>Lbq"xN΁?Ƌ) c k@Ȓ1buBT\af7HeخO۲wN*Ψuߙ\UKr2ZE"+4=| xENdyɺIͦ-qH N{.Z/Hon-Zw"+a*l:ڤzSX$EdJչf0}6x%g+#oxQf<=CM_كF On"3▎ԽW&'rDMG+ؤh.ᚎ,9pJpNY t $;*،?4,͞wYQ@W}a^Q^vbԋҡa"^3tӴ6dkd$Z|*}ky\(sM7xk\6|u3lZ#Gݪ\XtB!_Tg ҍ?i[/'g2Oإ h«h{}eG FZkQtE>oc4oD |f-I+u)( Šg<"Ćhse1jkf6urrxze̮ mTB0u|Ә<@7eVu6IQhХu} b\;G(l@Ô8[V'pmhB2Pz^B^$PCOkNC\k)SRHϮ #|g0Ld4 Mh (LIʸvAdgW?Y{[iIHM2d#c+qI⩮zslKgH'bó? ʱ7 \0pq}Bs1%4'8_ӓP*I0Ċ߹by- =v2(('._C}C|{Rf(]0\e8J+<)jy1"4 ëFR.3'^wVDwitUT\M,X ֘J#뚍Ed}%:cZQ)mGXS07FC +͐5Ya,3R\1Q4/))VKhKV+U_ ы;+OUԙ$ع8 j(O H ⌉6Uy-&^ٕ+ih V,WLaZ4,U$ՆWgV$Շ/˅,CX¨~EDLGȉv[`r銢l27FB~ytElFVAE;Oz c<^~LGEbyLR8o5ͮ+Bb!WNY}ptqŸĄ=YrBu6~g{>Ja= )"^$1R% K_\ ڇ6˱2\)ֶ+N!FkrY,ÚvBh_mćݪ2u*O &-C} 4|S;ͨcx 4 Ք+Cd6V$du\)!2kUSA$TwkH2AA*Ո PhCAf/2%S mTAF ÓvUJ1%jHw#<ӎ킁y̨5}2DKAG`&F MڢND"RFO¼rFüG½7&UQuIY`1c 4\FzGe{qF~ #3:4B$n ?i%y{EB þ'ߊ oݚzex]82|nPb!E؆bѣlFn1pNkLdLkJqe3L J1O+{5p0lk1j õDJ9"ZˠBBMgiɂcs&Qt>\ A匵2@ CndSs\^&s,8C@αNU2Ql0P Ͱ^R^UZ5r'JN_7O/ fl&I~]w? =q˺9 lA ¬{$ial|"t9?' a&GPQ*/ۑ2-A8_#NsP Z<0ݦC! -gP+Aȇ>jw}Diڡ!&&Suqذ_v#ru%N m-hא9 8"ɲsy>5f|}Lfn8~8zOBA&`e% iyu_pNBО (x^ѯb!Y+|)vΦ'NPgbTm:JL\$a_sD}_ B!3D!s(D.BwSGi>n+~oZ&{:Snos4jktx 7[ZgCOB. !]" }\"b2|Ēfc-GVC=zV9nahr}c36QљaI4#PZ? +Ya%KP#-v[SNl*UҪd\%i(ё e1,dDI'g@Tgct]=F Vyx耉1L 5ipdc |,eO0R3GM )ƍZL'hqʏ3gf{dP֙9 4de6Oe4W8.KW8DRX qLlTWUTqTN%513Yb((FuM- yU/blbE Kkv56 :icD4W;Υ-D]ģZ1^øQk;4Wk*IJ 2T9 Zޢ&TGXGk5[BdN"d*թ@ɻ.IT.=uxHʵc| &r ]mTT0l^)̸4\~Q'vD2f+iNXZ_$4d>Y֮Xy^'}jmRREn"#ST~ egcm=9&dFj[ fCuAt</`P'D7>v~Vp;@]bv'B,_o%ACuyt !}#ò66D6t(e_BN jĩOB&q=EӨ-g K0RB|gr)Ҏ\QA0&`.+gIa-"N~Iz\:Rzq"["<.Uˍ4}GyT$j}f6)v ƈU 1"]GͿ A_*Il@k]?,((|s& +rk kۮ ⚌?'uY#nE ^*]0ƞ$A$x.A/v1#/jY>^ WU!YA?9fhHiҽb|z &؆~@^&irx |Mڵ`ڷS spC@dw!2>RbLo @(vj٥w7 n]!b{+o_p0Xj^iAwo z5Lx nxt[}ynzBzk|w@Io5nfLOv(na^^|vdgEY6y n^T"B~$vm_@{^s!}^cOc?_xfclӀfLV#_2;!"""jƸyE%"Pƪx \l smf jA/#FW ~wޅB6Z~"ps¼„0ҢW/2TTdDJ@S>1I*'s{q=@RؼkyѽulĞ#FCfe+T55iuT |=իULR)I5- \8s)/wIvHKGе/buJ0F_0;.-{;F֕80kO p M}|\cc?,CDJcTZ_)qG CяcJ\Ȱ1Kj q=T l|!gzJ"^֏Ii⩱`ӊڌ{e)}pa-(K+`˘a(rI46D7 ^UG uڔ*n;k~s)іڠ,T/]tZŋgj~َqnbdduMy|/k-Ҝ40r=m0@Ml?xI,ۯۧII65:{4y+FX]."όX ѓ"AmX,ߑ,d xavA C%'ypOBj=9QrH ՎTcYRv"Tj c>Jl8FMSLFVO'Zung~LercN;KI9i]sB;cɎHV+L R:U9#IQV8k -U=  9o| r4*dUH4SR-a`c|E^`:+{B" T5>[Y^iPre1Ϝ}@nɡ!gm{\c6kwnZՒi8%M:MȖ0^FLH&КPma{;\܍|JvּZ=Ԗ@-+KɘZ+fyN(wl$^ŶtQPOj7^ՠ Y; @`G)sa=߹F Eh3gs}E(< @.:L|:I9w.M:y[7^S ;  )} ۊy&zUo[:n(i*K)qnĉߓqyTy<lUK^UWڟWUPY Zx lp3ۧM) {,zR>=on>xMƔ4 _@֘J!g S IJ2#qP(;D4INDK (hh{ҳ3|#L;K -7?S6oV.!KU-.Eܳc [n'ѢK`!YKm.Y hFs)LFA>*'hĘXݐ,фg[#z2L& 4"Η]D GHArCjm5V+^7n^5'>oI*### E6U)1I2gRӘ$|Zy?nRR؆U `xiH`8^I`~TXdK\WI=:|սs3g=d] L/ۮ7/[/=?PʭׂpS<^e/upx:c<ﵪ|B %'J* @2%$8F,DUh-B$1b-EJc ̒-(ڳ3Q*g{VK_1k\˳cht_`O٦[yY'ڨgYKyDr3Dv4Qy⃈Ub7H~ʻFz4`樢cTDMӃ!T1[ sCLtJJa gT.18Gr=yur՛[?#j?F"764;MLe ٕN)A^IL1eyq8/R@iǜ~ F)_2;r _~&r:us}MGr❋5dMKw2MfbSD)c˵9rEt զ˝JR5`xDǮl? Iu[pD浀Sޏ0\lW[<`2F%Bi H͉#GCPYԐ8M j:ȝk1 NpW&n.ra1?]cZb̪N*/ N: !?Kf(ovO0?ϴzB=0hȨXDL^8Ww* r:m{#- Z*0;L™f󐡛D}T$t ;E C"|[-PE /C')AD;tڵ6%W@6XmJ6n r lwm6tN^]'4pCJ%vB@y N @%E*3!f&}O!VdB:FMrx «U x0 D4cx^^~uv_A_: Y?à qupkWbW96ENhH q+jJ41 <_:&(jHE+dpiJ7u쟃6>fӚYtG[>/Gk.1cy'FUtTS J.g(%uWf\ ܡNo+h5`r=_T1$$$.; |'0WB`@DyV!D|i<]Lu+bw16(b` -YGAZ>6Q$X=QnU4X#nHL5@5`ŘǾѪL~#CR7Oi-pȹ #<;0wBZ4CDOeqbls@Ϝ:ˌ)?]Q`냷P@DG|N+i^Z'$wNˣBzkNlљCQcъW|lge,FDCfKB}ZXk'wPɱBj+6"](:lQwsPg6#W~ huI7JL "rNb֤.TZdf8`[#2J_=fbeBJ\M a]9|+G:"9:?JM@ 伲4tJb S|/ ;QTtnpW|%֭u\ UB ;#'7o.ȖvzFW@-ב {/XBl,!wLpR@ ND:*]iY}0YdШW0`5DS;v.+ϛ+RFu!D-p+C&%,f.ޚ?;x(xN2 6ly954Rr,MpwX_ /WQ Z;:a' JˌTB/crUj:1u`7کp)4+b`lpLBljO?1QUN ;Hobtwdd8IN$n:ɶgzѿ'@4 3>WzӞ/AS+(\s ,Ǫ_{9熝@G$^#ݬzo K=`uACɖ Gh yq51!:/~d%0砍1{Q1\\k`)<~IZͮe&92H0͉zN*Z1v+ }sV搤^s.* Y>Rk`{a:?#7$rxL]9]l5k"ZT8_ꉲK$ds=x|Ar BFhk>YF&[V]ЦU֠#@FuiPUʤyK`P0_;8C_XVK( \hnT1%2F?ǨИ`hmOwJ߼Tk@Tnxis.'N[8C9\*ZRsc7eۏvNŘOAl'M-c5;Z[G (_3sNJ ImG? q#1  TZ,ΠoV0'feXnl=kORx.q*U`e@R̸q鞢M1g)iVjf;DRXʍfIk2EΨMYH@Қdžh qHB6@DZ ē]^ˢZ QC!mwIFߥ;StMa$ՃNE*J>Na_:m2d܃K B2),*BCD*Bl=_:P 5K˩o눧y"d+ qoRYV!rǟwH(TyG]h" EZ&Ura0$)2d 4H۽#0h<5މè'*@4硼1u$ށZ *a|3E4*yJ>B3cFKNtf8e 5$S }mI U7̃zȏmn'YBV:r;<{,L%I'IŶN[@y'Xfᅼ Ӡ_*/]\cPZy1 m+'?u~Ey]N5grbxt@yJ5g3)vrEBF=?vU]&QP,rY[Ү])a?ژgBK3 kcfǶ/ _7|]&n̡GJ^ h]E=lF$)2Z"CshЌF\j mN̥8I5CG'}KJi&TVWH;qsvlsŢ2q/!N"B,* J5G2C.)W*ToAlo.鏞ނ%1azY,?5;XKTɓsa'9ZSsܮO@;U;zMe3wM+DR{sj#VdؙLJ7ʋ3ʗ͈r[X~<DP]9`odHRHŁ y½F箋A:/r˕Zp>: ۗ1(՛t*Uͨ9 Ha3\F*&[)Q38;1)/9%gS( ﳓx[Y#H]]Tdw&xLqnηr4`I#6gEC:)]X\y)b锂*Д쵆/)vݑO* bP8A.قeP :< b 0a1 G 9dW OkL!9tuEs/q[/QnR=Do Ӫ-ky"9$CgfІC1F#cWm o SBl߉Hl257#qTHJk duz/ǀU'eIq il|0r{!PV/hny㔌)]Ω[Su}zb0m"hÙg`M{|jv/SQ"U RZV A!P  BxFro,{ ac9jL-$s*˛W:CuYg1vAtdz79;aK1}x Y_hs,/'p=ejSZe5fR$NVyiu7ʭVMu*ؼ ݿɥ2Kz7|C!oS'8 B`.Nub/}_@OX%WܥajaPhl,%mLnHI:u&"@J.QQvvX?/l[-gJ8*~ٜZGq2L!a9ac`œ|29yxck[-5HHq]RU>}U{X7lw:+?d;EV!4iHj[UM)PSvƗ:F=ITY<ͩ0nՊkHWfk9)Xt=&PɝE9Z(T3V姍.|_|n,9O-]$`7~TѺD(%L~d`tqb0B&b^$E.Ɲ 7I\⦙n"*R+]Ak'NL0RJ4P=0T QȦK$3dյ]`Mh#La]\NN/;ٕeTi,MAjLQ`kM M8tq)Q^tp4rdHqFdtimOT2 Z EI Ѳd1anq[$C]XW'8n^WR8@NJ|?GMS@9pV?CsgV{) e -R6Fr9ԸmB.`:^ roVdq)~$(UEE"Kft*FXuHjp8ieB7tFG2M[ @/K}‘"- 1mPz:slեPSI7%E4Д#AYh_\nTZ^w281R6fz9pfytnuፙHрi$#TɃIpsWQZ<bLR2t` a_')TbVxasGe+{ͯ(&_d.1EgDpԨ @lZOeP9p04,tǪ 5VFl2tVajBH}u|ꉞnOadyLnxNס^E~{p1 J(\G7RpW=ۙmpBnx$k0ۓP9'Т;+/PNoaaV5̴&)5R3H+@N3Y8}׺EUDPzzx9D|iʹhaw3t3opVP/:`{'#:Y&&0["ϧ^\ߜP.&e# B@n~J +۴u6K^ Yi"V[))|5d7lY09YPAJcpQix]"{B7RI͎XB^lVpn%%Udaˀ ]J/1fJ>OVcöXbA7pqJє2p:ecC*_Œ|E1:ű*`E.߉ +rKNPN#FFkƸJķ4 N{W(6ЀK2%XόSnR98 YVBZv:q]om bq0PNC= m%Zhz$ K] ϝ,}S,5(ÀʆF$N6Ю1ϑ@ii9q ߜueeZ5UDp%=9lt1]/FQln, 9Aml%v Sܩ)Wm&+EǮU9EeC2GQ2dyF ܑf'+KL;dŘ0">LV>0EM4) y%.),/N&RXv )~%.L%?5bh~T0,5ܮ,S- *)U d[E# 8Q_ȉ1|)%@_YNfp1h ![HȊ]IASb?'Cy!j!T 8LMjYO|c>Q 3:AhC+bMg֥K]<<+|{"G,zBVB@.8[t놥![d8ѮY 7Ctro6(/[ Zʖ P# Y2@ÆZK(`@>Uzls/qyJpG&COM2C\Ms3-SK%I\ FZa&Ok[Tļ-[l1Pb$9]%4 `ܯ("U(ab=lE (#mɦWcFyUFƻexxIsuoL3e~fHL7dp\@H|uvPXgM,H2!@ӯ`jE67٥['mZћ-JN-3doYg 6Or]*Blw߻j./]  ͖mYoRpM K s_U52 ʠ+򵂗Q_ݐm1۲کU`t u;]wS]0wd {˟{MdޭOAh:~κ\^,~= TdOMS Ԛ3ؕ 2 f[ {[b؏^# YK~TňQ%%e^t %6Nzo0P^%Z@gUF>e+%y3رCj@iM YLΈ >f56.b;,x~:PY>ALW2ȾҔiJ佖5;Ȉ# V#`bѯ K z9he//89qG H%O8c25Xv`]]O+7tP@_~8d$/R7uGΉ C-5APt)zF}.`ȱXM.xBRG)Mӑ3AIO [.ZQe)uk)wS />׷G~QHY>cV?&##c.nw$^p0㤪پ.1ʚXBcCiT%IMDVy3rx4D31Bspvۘd6E#X{ Wqx XԢƢo9Yc}=G]q(-5[p?n[w,kM@M .C^m$g.9b'e G)~cB ;Lg'/ݺ,=St*8?Fihae KU'P2K) ErKB\J}K+qwug g'Ch`A?3 ULfU 5sdU45ҽM<9vWcÊ )FrLVrIDص’zushVIObo%N}bן`bKtڒtJ I[]Շ̭7˕vwvgC4k9`zŊ Y\깴$0k[+Vu 4CNܣRMr)`a&*lW)f SC$?e^EeȢeC(A5S.f t?3 һu 0q-l')`Svʮ+7U0*15UB36u#;5Y5Y<3NqJjmn& R&3* J$;Vʔ&Dn42+,;Nļ<'[n9gN=aWT-dž+5FҴQɊVn-4+AF@}spi?0d.):%E +rf6ȚzlaY)2jxCLWfLVP b"$HέtYLUD1bnc? 8E^A":Nu -TگK4\*~ۑ% ͳHC?M`/)u )M>G\'#5ryM2"؏iCi5 V2PJ€6ȿ8QFfK~!ʛ؇n0}A8]i h  =kծ tZdݷa^%J `VGɕ0_5>)_fBf?)ժ:$w> Cw9UT BWwʂP uR'ڹӮI&YEɴxjz5-,VSOGd,RD Uf]]CKC-pZM1n9-@..P`T*!)nyz&kRVUEMYH#6G`-S ڌD&߭p L"G_?iiir[Q;.;ɭ{r˛+u?6~S:UE_k|ӊ,Ji:#Ǹ]3NzNuH`$f}|bcۨM)}b.,?K1pkD}uz(;NzǧS--`6әɅOFM |NJt"h-x:r2bc TsCX4T?:1MLܡJ Z,K7~[ܵg%ƽ`,XVnMگd!Xi?Wdنȧwn&:S/͵73 &Wׅ D)T C/g"%&gWLCJۨ=A,_; ҎP>ZQ^¦SmM;MwFY.g $n+Pꒈ=6Xߟ]5), ? oTҨ3OVeg$jY0?b=@=?8zx 4 W5pLا؛D]VD:!b-,%6 M%қLG_ys?øgOOS}*cenȋm8ϑKe<.VSe`/J[ϗh[t[/O#nZ~>ZZaER*szv -g+`iRhR'.pM&m_J (l^MCWQ m\8H_fg3nQ$筻4m,Yz0Q^h6[JE&x#ܶ";_ +Na4!_س7hhU/W _Ő3[&&( ) QH3b KqG[$HGz`]~qKNH70&N*5?n}ԻQDC j0 W(ˊRhp[ ]~Y4#}גÔt2@O0Ose@k ٬V 6ݞ24"BQ168@veA"A\LN|ORA{Q2ir v]v*@8 l0? %1!g8Òk\BjCllّ.*j͎Q@*ŭud\kQ/k#1J IDkvqZiv8sazt&M%M{nxW n`Wˮ8e3`;p𶵰_fBzOOb$ 5#|Gn1eCTkQ+hHhIt*N7_( H C\UYqUlL捪yh'?y\yoy fZLEPK2ܥjfMʅu"N"L"Om"Fů]:y: pW {"]OQL;ݸu!(~}:cxyݜs~u{M@VbtUCu0!8EP{ހ'끮ͧUė)Mo|6աjnmh#vHI*U"!P4@hp |POF[FxgиHD׺ux>ǝCwfy"wۺA>Y,}R}1 z}j2x x>)[s+||: ˣ?#9ջ-{{f _d|&b|.E{|.m?}皷LJÒ:c~"oD?!;]y*aKg£c rNQ[DH7(Mᘑ@SFaad"%$&VZ1"7:g:Տo-s4rhmP9n u ~+ r#r$s]t]!dȉ_Z McbFLH RthJo0 *c^ĻrlP- d^CG宩ML q46Diʾjlf¥B4F~~ Qkvl $2i[ѨZ-[o߲֡lH2Ȇ; c@olLl^jQ~yx0hqNp|{s$6ohFJ J`c9DG Bp1 gi0t.C3VfvlV P&R5>~'ZK%jjĒM'/B{?=#OY5g%CVRT\0OrgYp7l'l#hY @zcةf5 ,guMTddncAlˏUJ A@qeΣL|fI k"o>C/z56nGtQ;-P %7h67t&Tg=?*u=Ħ :jpͮ (/+Am=}dJY%h˪:6'>仢_G:=tt.U /r_եxy^f{ėi@cv)Z}_[IYL"QGa]VMDApSw1.IY"%ȍN*K%FyLsNzI]E=l 3${*\:V&|\޵biO XS"O5n- Vsm0LX5m}a2QlwxS}}E9l0ЬCf\Jy_\΃tS o _,-Fǯg.yW i[|DNZK!7d]U>Qt6h,u Ӝlf HǦ_Q RѭmW2M3VI]rEnxuXjۿy7Tnf^;yB:% rBsoqo!GZc" 2{)P7ϭ_/XNb^[qS悥ױH# ͵ -pz`+ψ2>]OFQo24Ύ.;2< disَl@> Wim?5.>jYxax ʁ9ȽQ`qbM7GN쫉Tw-8g?q H2\ZL VJ 1PU ?0F;ᗡǛ[0Vdc壷1 ؇~hO:sD"&*] sb`wbX=쏗cÛ0)L^ds4T0!U t,Cr(h+@.d_(㪱mJ^^ϋhfK[r߾qciEJv(+JH͸\KƠЋ8!Owۅہ<2R(k5ֳM3W%-֋ߦ|u7_S֠fRN8,g&V4ҝDQv[(Xg*π/Ɓ+3O?H1111111 11(bt`D EB1$H1rARt&ET(FY5 d^hGVERaB48V.d /.oIjqic:0y@X|7=8%pnw4=I?&}d:ǻ3q%&IVj_rPv:_iq2q(G￯ORS1V4Nr9)( ʾw.j6SVOS//q\(Nxɔp?r8uCcRaB佭t̊^ű0Xee<۰\%irwh,p8֎ܩۡ\,@Ԩ\1ƐI#42WQAaL#fKTSZ蘑( #I!\FKf.pPlށ-#<e IM\!XU$NR\U~ΡA]3ob;sn#ј]^BQe;qcn"5bI_N8%^S$n" f@Pl*n>Q2frA#+1fM]$5*Qi,qPq#ը/t _`ml0 uZXՇ;Weԝ l"^S׈-3ov\kMTGa9qj _X. [ rMF7 ޓ f$]Cv@KZ LMC);b&C9(uCBgg Dn T䇿{w=N'L3tXkgڢYy}u;X^ۃ.$ rbT+vE8gK78e2gRgk=w蔵Xn?.Yc6aG7B7@9Wcm,yc|_\sPHwp`ї^ ptִXbؔ嗖@'xMe {Vk.+,oh4d0gb  C"d0cM#Z*hI sJ!}3}q7BȢLި͑v*Sꐊj zFѿx6;(eMzoQF(ΗK!Qu5hrmX;Ne͕r,fU M<͑;NNu %dHʧQ^ W:^CH=3i ~G3sa+ޡU{,;$٣>ՎAϧgTHW糳EeٕX9~pmeNDCߨը=;mMN5;ojW$ *-51iݽ33-jΛf T6:'S1)':]+5vƏ+4k<ÙV٩1,maRTI3oZ(}ѹoZ;ʼnRHel[^[KQ[׌~?.-7l/TDŽy C7U=@G 72p{ `dO*/B` -{kݨNtiE"yUЩ6g5mq!L8>AhA0}z2.WXX\N ֱLKro6x^3o&'P ܮ]e١f\'rj{bdO>Hp*ccOFT^~%P|9^>@kC>34EA-Eÿn}m_O5/jS=} m{JѓrH|6G;+Š%xɼJM7ɛ[hDȔi a ? 0}9=xHv/˩U!)Vb7pz 2PdN'jtjtbzpnڣR ;2wG 3o\Z<8(wgp9lWЃ;e(u,)­eE6v#zTCʰ.Cǃ Xao;.̜*coK=% 0'HC#<X{)S n)o]S-)mwhDRt逸5<9P :p ېﶰKwwSWNg( PwfKKPwpWfqɛ?vfkL0  "Pb;JgԷR %P#:V={E/UAGWgb/!_ZXЈd(ZPi(YcS(16Cl5B:{zFa31O(;;#[rF}CHat¡_ReŒ_m!) 9MU]ίp,"*.SoL O];㌄sA=WF]*!J/:*J]Yң -`YİdAR|uG|ޔ2|[=|\..~_'h?q>45l4 ` =|&qXzp2#czXMŬR8l,:tD" %xbk`H^\9n<3 G|V6C HےS2舌 F Rfyﶁ({ KRٹGxZbaWaqsIC=R!7?T-khaYDZR9OsZ xEܭb (0ҧE Z䥅 !I\O}8(|&DJH) zaDH6~_p߿hӭl@‘ZS drGO5<R@K g]bPB XHqΆ!]hfcXD%ƫ!]`b\0"o-;wa3}^dP"B@Ůi>YedI:#z|sdZmz,UaIT\MSL[= ;(X2ڃ0]h+Ii0Ő-!Y: p: 8B W,zH#D.-8TU97!Ҽ@!r_h ^P'Kx;P<LH$Ἑ6尜ĆIɂtSK&.=jXbI7 ʼU! b;@R]1^qW5^ho=(<~4dT.vI Q2Qm=adR)Ѷƒ$d%Nxl$#*Epgj3s#92yHFa; ;"u>k-X5,Q!dlYl T*:7q|ı!&5{kjQqFRq>Ho]yK%Tb4Unr(+09j52orG(q9/n롫<4S#PN,Hr-~),XG"!G8||[}c|` -,dqm*IYɍ4idxxSwyNhj̏mjWrJ[BU1|.$x5W?±f&> auc+8Eie$ϜP))>G %O[n▸s!Йs-I/PlGԺb)F@dtyv/R'HW< xn;.>&V^VZ>(gq+י`CCB`yӘ(,gu D_vN|4mA"bQ(?l]b\5}L}ipUh3v÷ P~|]y`HWlDlx.O9']ys2!HQǥmrw0/̰O2{ǵ`r?LGrάT:*^$g}z{b7v V+?ĎnŎڲX<ꞍM怰,Ѱ )H/PBQ:S{%s(qP(,>ľo-")w4 nLܽ ,RC KT!-]{= KF!t#=UɓqR%1rRPfr 406ːAMGqqМΖkbbPq9g"Xn#!BIu2hR xH}0`Pm` 7]o0Fx?_чD1 HȨ`5E9 2ҋ(BtuwwEÛ:$z!<|HR O2fb8EZߴ_zrd%u%P}خl,ef]kln\zru5 }a4ANY[rT9_wr-FSSOg9/s`޴r0:ـPEj0PI׊i T!zs|6)TEiޛݴH[ ,џG `'/Gǐr(Add/> (á6`98J"W0H B tT$!th$^QYp/A-y>`BN] $aE*߀ʱ_ڎ$W`\#CS@QR CvM PMMg@$ K;pi{{k:+OK )-.U\( MĀ')ž|Rx" ?-{\kcs:]t:QҨ]B=(na`4s{!{`yvC;x4$ ;o76!`2|Fa}s!xDQ"{2{â19k|q bhO(WO' Wo-8nDxE9=͛Vv7' خ42YmKa,EF %/m㖌6m%T k珊y̵˲RY2˩俹m1/J"gf BdR%Z2E+2 AWd3>M"H#Zc9,z GP p I f^(qs*7Z#X{QH%fPj# [j\, we,?Uu*z~+> uk$)_ƖO+<$X :f{\>쿉%>J sXp1lJ0n:E`[=A|G݊+ n^/hGKH ϔ] Q1)ʬ)rjE0(.`H,Դqt$Sj9FHYS0ast|޼x߾䊠GQXAD쟠/0, ױcWk*ohm[Z]Tc@ĕNWSU+.-Tv+dVk7"C~jĻUxֵP{ la~lXQӐvRLAKla9V/SǨPvI΄mm&qI?o.rha^Nez3bT|g#H?7;;-KH:RVn0Wt' ]-J&\$w=PU6NqVQw o [SB//Vk,$&RiunmJSC°LpiµȨbujDyC!fhbڤܪiX~\dSf_q]n,)v3l0$ٔGd`HzVȋ($~ap<Ǥ\kp}fiԣkW8LZV@X{\X#\q\i`CZi&_/?ypJcHȣ6%UeZs1a,=Ӆ]s|LؒV:2BLPnN5Lx` =jنB(jTl}3%cN~.+8&6k,=A9~k\wr2c\]]EFno| #Jm=8F 1 ddD5lWSHrwwDë%7;SR\%Zr7Tx E7Eկ,d.gҖH$Gm`һ!J̔_poݽbj1$ͮ!:YER:v}711]_Ү9Dg92&rbG*U/jL*bSZFEf.I sG 7#d6أ|jyE8)w3qr&V7Gͮ(&bC4_~پ+i!Cprh$JAyN_ݤvLH|*A`WOv]RTC&1θ ڬOq〨 9Qv 8YgtD\YYQ!)EwH2D(7?\cqS~6ѥYvvx WF*#./C8&7Y;{̼5,ࡥr֠gUwH%3^hV9Nj*g {A@=--Q/Q1R?!dV哏L&ÏqC4Gm\jV.ڱwTvX0:I GllDRg S☒q~puyձ"s骬D&l(@$?ܭefgH,Cܙ@ R_oJAnCBBo%SC" ̌//'‰L7?NH% V2n,_I?3Ix㈜sz`&';K۷S2^AۓY)oa*7C\u!ox!-gH,g;eU&UrB *c(a7mwYҠT&{1>sPGzVQ!ϩPy "N)d*TQK"eU¼U.]/ " 臆@ܵ9/&'};vGjGjj;j{*;@S7XJ~X5L;ꅾ8H07)Tp";hn}X|5i l}.9LmX{kտ2dcԈ5! ^P Rj/@F XPAŐ/.W#S˹8]aQzU`^,$۪RNib?.QRCYaԫߎi0jD%LG렛˖Z+og{,ZQׯFjZvr#՘z}y݈U§ǤQ܌ _S05ւf?-d\̼-stpLz!La!_N"=:/G}⏉3`KA4,# >#&}eT S0z&C9|}Զ: k~ ct G<#Ԟb S<+ĩ@@|l|nyqearh߳ Y71a>B<$ߕa[\\{]^Ҽt T| ny`{'ȚM`:Wl砨tXz45]y9kʘg|uǺY5/\?HzPy;Dz`>W|;SQ;>[I׫8} ónQ? 1tw(QgKn@{4/Xm-ZF3|qG%Q ,^] AG+A͜c8؄v/GO+fWF*6đs6ӯE:l yx}+Lc jmsZR/y5 Z0E2TQilO0=X㮝"^N`5|`"Ey*ܸ.cZX{3ԈBlԴWf:)g9P`w삔s' ?5n0PWzXc\ʾMv^Sl\4x&Pc=ءx1gxU3Y ҫ$'n*OId֌vk9։Ugz?r\L{&z* v1~Ac`QĿh'X**@w~ëX6eуW[$d=hA4fJ #@4#)aVe'xv##Jw=xd'4w/<ͅȖycIR6eQcF?K5+?,\$-Tk`*^~_Ry)4eŔ*G EDROjG6nW 3i%ejMno]t] ۡhh~M9ߡlmol49<0^4q'n iƒ~)fI 4L;+ҫN.Uai5E2ahE_L.^!-q@&fW^-?ue+bQT^7_xc`Ądd```5^b/g,̃6#L{!\cg%g%ff%dd%ee%`@t)51MR!:AZ4h6p6whϏ?+n= ȳBfq_"sy%u#|O zc} LۆrK:<%z?d-mr mTxGZW.gn:)Ց+_]}Vρhܚn}xK?=?t1:? MCZAe,6!\uݓy3w{uziv۳ٹ)k4o/3W^n1A[vQ}7:KHI(ۄA>_5So cCcI Ԗx~/\]AovqC+ FO}”8+f) ^'Sѵ,=Y]TWpGU=DUzIj9f>xQxT2oer>ӚFH3r^dBD3۬˺(luFy~dƂ~&U¹& 3nϪrzà S#zF>y}}x4Xbh?24 -,xO>%VQ)Z$ )(iwo ;=i3dp<)))8ML h +k*ӎ9G"E2NFMg|(Nd)1R"H1"nkh#aiUeӈgu & ol`oR?^`9t 7mCMI  ʤfU]jB8 4pthR'5k'̠ЈC|z {өql¸L}޷MW&M'](ZF#~Ҫ W-e{^9>׬LCҚ,H1#gH;0>*@0EX;X@Ten(|*)`gA॥!D`+w5\TY,ddiRƥ9*a.FfH$@²Y ؂:)ZcDN~;}O8(b)qc+n(CFX=˿F[XIͰ fe Kƀ'7E@ 'JIaF#0nq6M4sԇ]U7R?5@,h'RqgS@Lh_pA eoocӬHAռQcJz o^O0׌PoM–I. ,>/畯P $vѓdj^]%RMr8RkQRNe=bFY58!>{-&5=</<_[@gIO }P?96)Sq[G{+ɝߚ4>;uk˱2t?sf32 2i`_?`6 22Ǯ"Ȩ|0G¥ F7'<؈):t)sߩ~G\ > !oy2UVئ4zSH#镀S~T*XGG@!m ")bX1&9c-,W!o=h4tB岛R52gTKą,3*̮Zlo 3)Wr0x` fQ3 x|tMC~Ek-J+N(6G)p ?3ȁqoK?Uȶb_p k"P{hoW}WXl:'@eK 3`SYL^SGtv;uD`=& [JE) wY >D[eszk۝TGNP +-bPhUHVY1`HP @Z.Oںe7)N[y&G|F kV؅m$|,f.0†1b!; 'zzX6ɹea9ϴ* {H Zp(-n%;P!Ph`G&Ý>hyA]q[EA_ϲʲ*>o"ƀ [|r|CVAW#37O?p?{>o8Mum{|{!% F_y:c@hO/DysE;G؄C{֬$tQv!ޙ8w56b,O~E.^%~b2NZj_U|*u9^iX |u[x&=4U'xE'!'Q.+G#H⇊an2@<"!yL$'eMODˡkh X]cB &rbQ}+ Xx!08 zmp; BoE6"SL*/biy9 C hKFs׸a|}/y j z rR?bbq)Y3~aҦ[ZҊar_݅|?٪3c c?ܚ$,gO HyQukl{s jȩ*&xV>Fz~tXA0אIJh6TRe=d[W+^{G.ů1iםPUh)F* C.*WoCN[l$QU` }aFcS)}aּ\#([#^\eT SP  R  `H+ | nDA]m+ cr_)R#ZoEĔwFa|/1Ѐg4K'HjĪA{f+*q=FoyqZ.p!YOEЪMA}m)%m“#e$6iM2ۣ7þk? KH2^?;2';_ Hv[l% d$0M20eb.#N`,*H-kG[,ZZVjqgb̚?VCNĖ@1A x[ j;چ/4 | Crrhn jה SSxOӖ;D%C 3[@W^to PeH$sHg)f-tg]č xcVߕ?Sr/SXP< ï1"߄B M?c/q*Sj~\>4366Je ϊjQnrvazhc`~yNbp06k&XZ=\q677X&/4]iV=3]*FSI%Z\1ei{1#h+ej] B:pRipG&A( #{B/*9TMA A((hFٝ `3!B^$9 OvecaԵ-a[Xxg_]E{H iȄRg[P񂗴;a;M" 4H=j?Qo2a=i#Dp¸QoDBݰ'. ڽ<ᤃ@ $:! ` "m-ܓANJ"e0Ak MbYD)6X{})zۚK EF=CNDOb/󓿻'Gş F,eqݔd)zMRlqmL\.fW :,hW?O{H׳6RiU"sFJ,0[R WG.݆dhU$Ag:%XJIJfU@1lq)nEia%5EmQ57?4S gNAjɼƦ-MD *,gj\kY#{W 0V2Ԧ\E,Υ[i\+빉SU,Wx+N|o'u xjpV#yہ?JN77~+r>:Y *#FL"N)S.4n{C!CRa>аH>!({S0}0aE 6|| Fj!$EbIJJF<#E&G;I((ؽ"Z/&QQk}f>YOzߜH,v!c{+t(FO,{`Fj;Jл %sR_Pҽݟj"VM@3F}B"A<Ρ3C8+cíw\p%%Za;ĺNaeyOkfF7D7`F1Zu!:_ί | qdBxR7n)-L$vzӪBKMAMnO81\fǐ-G &^ ^G}]x$/^l-|7Cw_hT[k+?f~y~<4DOAޫ?Q5_w2*GIoY%S$B GADzEcֻr•Z=+H+b;ÀpP)l4>A\:+%6{?7i;2j,qFcjA b|D[?aWc߰27'aQmmTNP^ĺw'c b&4wvre!pKNV$lA4IH̭mKler[,2̶>%ֈ%U\M&:&'2|>d 0y)g0oKIFn`rv1n1}BbR 廛"t>`3۱g|g7Eu7E1e,.t6r' nr\yg}pl6g GZd!N15$YmB=<&ȿ_[OeюIO, ~Bc2 #7-Nwt-x/-ۿ??i3҉XM½DkJ]2:ElKH=oxHE/s}AV?W~o.>:;}o-36χ$ܠW2/Q/l]}5=q=` SaJq]QU&88!H|\79]`g W!aD ds4{CdPqiGĥz Ef{l.|^q,>mu7% 1ݏgշGdcM-xuo@4X|Z{*y*|*FtmD0fN:Uߵۺ||yBt nIe94T*ƔpM4Rj^JVk) WL`H\06j)DͤGML`0~ْbL4b2p׌s_ ̸v88r% &jẅT8BڡIɒ 2rwu|xV骻FLsyep!|M6>0 ԯ_2t( ,A6ƴfEt#ٓYhH wrST:Msz { s6:MxD6ɾ)_pEēYi3*e^YP\5#eԊ2H(DE53N )cvpWAMTOJw;$| dh76 ‘;2gb4BBPOVyߨ[A N>11PHB!;5 _?lH7:[F~7u>;g#'.O-7#~M.^' ;i,dV@~f@}7TJ@"RVEo( @.HIo^8 ]nJ5k]Ȝ1&d{QN >k}JUkWĶhja]ȂFm9 M%Z] Nϳ|dXy)n .s84X`@ heL4z}Xμ )G*/.b;mX@ؐUyx›⁎ ̨^@7)?vj!>XSd^k] OlߏFdfza}ak; `xY + ˏ.J? Ou#[& W^law$4]шP].]?XjzYꞎ,-ȍb{nmm< gb`5 _7ދБNlda"9ٻ5#B2wH/# X"F=6a3p5`N OdkD; 6/L-ə@?8?@?䝼"p(i4%/A9} U>]3jiXP}]'=]W00̢a5+4,;8FR@}|G]u`kRh.p7\U㈉-Bp)"8NΠʂavN-#-ؓF-- Y6i)֭66F/;QzȾ/,;xF@3XebxCf(by\Q%0on[ L@J+ b@l$փ,Q>lAiNloD\%&TX zH\GQZ#-[$ f3Bai*!%,{I$`H wSgV@em m; YP^lQyֲYjaivr͆-dbA J]Y&}T'C")$!M Ƃ~XpHY1}P4f w!şn)C񀻐w+@=QEth "S.M?{Q<~Dl- {<"g5!'$+ُ#,#Y4>ڒ_e[%B].ܑ{r1_GipO^5e{ddh,ec^05aqa!q׼Pxlntڏ$0u^{XpZW}H#òncR~tK֑M,m:JSutVo/M9{>՘Ak)5LNiN8ƻ/TU/zmUz !pLR*PXc*'#,ZJwZ3h5rgV`{SpP"̀n6 BjP&!P;ˉC:*B jO#JrefHW ۷ LϩL5 `V"Պn"<`bHؗ4C8ݶVqP/eMK$+DZ9?=JL \kkd{aCf)JZB~=rWb^֐eduɶ8.Go4WV|-5]ʥ74~z[`Ԝk?]{~,1PGʚjG?7_0;XyC/Be:rWX {j1f {Jpm&8R˪bX^GyGTu+q< {Bf9Lshi=G Ee7fM|(R-Q+&@v^hm %.$gi d)iV|ld#iɴ(mxBF0Љ](-1Nz{ ]3(p!2 DU_;l1tvDwOUJ#F0ђxlalN?KvIW@%% &$|'AJtdviY,\;BQI|<973x{K~Y.EMGcE!7ܴHL))xD?yDv,=h(,~0@Tp< ԝ)#Zz8Y|{Ii՜S(i˗|^V'}v;*ŔG8|+>6)G&gK&5;I|UP.F!P.{+zIגD+ &d͈<>؉\`6Nh/|Hhi Õ65܍fg%Px2 e rdT 6%2|z YDZϙw8C3ӥ)r-k珫i?g`m:n6p:O ة2'K1R2Ӧ".t _la-G-<8ؿ Lcҫ8]խwR2g(TaSu{=,H_{/jwbEr A )̭(=.*IM4/n'!Y҄ZyR甖@*XTx*+Cgg =Og g{rׁ|*jU C8GFI ~fgFèQI`ב..x uCnϒL}a4g #Ё RaQ I,TJ$-/5s(SM"XI)TE11S: G8_~Ri0g0e@L?'s+_ET+s8Np1 Z؄I 7A] N#nnA}5ͽ=ܔn*/Elb tvwPg7~7IdHbA8-LG7O6B[WvHm{fi8S{ȝƞ-kj{kt&d MX$"3)Jȸ3s=40>h3+Zg E?%fF2B֒ixf>4ɝm1t]>BN ղ!P;Skx=r9C>n'=GYOUOggo<e`+ 0MtҘOY\`Rl(9_d(s ;Ҟ:pz mi`m|/jd+^>pPip5_zӔ:CE)_?8J:Ÿ p|%;FõBY2eԥJ䖼tHE+SVi:D:i5eK6y8zKg`\5GUYHa-RL<%rO&Z{ҽWVˏo0 u&1~KDcq  Of% ײ)0 iSh: 16$\4e$l0UP,p<dsp;.Lf+?ͩYHiZ45GT/o"eZ9aOih@`@ C01fXOEq)v蔁 ^lo'~]<nP$)aBJyd2m Jڝ ?I?QB_)[ ]֪(J\>scn^`0}̪_C6\؁)E`]uuwxGwp5_cX{[KO>E0Z X 4̱CM\gÉm pޜd50v2,F)|~]Ǹ{rgZZ)QHIDEű~;GPϚhBF:Cpt-fw pEB)F1@}'HF;W:%^4 ڕc!^D^7o$lvpAvyn6r8~H{8ĎF(Ƭ:sT;^p} m&0YZP܎o֧83;0OaMvx NL{i'h„4uEv`I? =[.S4zd.S45wf#&ܨz0JF| 0@N@hƬZM`y5jhnق@a2Hp[Ҽ)Au5`^j݂Kz>6XS~*p$B$d>6^6ێ8%\c]"kۡp!1A r}"A@mڙn;Pv=e)O5pJnkvR#5 K×Reþ!z_^'ϩ/|bߒ)/ߚ߼o&:t׏ `R=PCg no.VcӲ ^ʦ @҆Iъ8|c:y~Qp;\;6dZŨ=6l FG a_={YmCsz1c?=+?剿&Yt9NOlV9 O7Dm6Wa4A,6lSQUQ~I+2?6|Ĵ(XOc`I?m=\X-o(1f^jsl,3TEPB컫Su0+KTaK[D 7<`q "d'lBS9 Sdlm K\`=NTKv PP )1( BZ(/؋YS@AC7788NA\ 0:D dƱ'et$> `AجU::qCbC\f$rbN\f$2lDF\ ЃF0yDVN00,&HT6' Lp8: NEFu Xn)RL_: c3OLfnYC I*e)KY GIjeg LfK̉ez AvM"W~zBYlsYռ4J7ZNVz:a?:+J1(_@UDg S+UToD 2ȳD"u"Q#EU'ܚ#, &ѠPg1DN(4b2ppܲSߤl|Af5ԢsQ.mV6|1@RIs|}@g~};J5 ߬Շ8sID9Z$Ʉq=m"͖̀}Mţ +HTA TY3Wtj9Kn%(b[up]%^\_lSE){}8eIRhY$ dnJZCcAX:@*V-+, ]jNolW>@ n(F3AqafyXlN"G*('h3݁ڍx/QNם$n9L޲||eCCS?;.Uo.}gZqj׹^wֳN<q鷦0w֧_eܑO:i3~o( 5f*7\4˕'ߧ+>U ߿r(_;/x0b+8Z+u cp*( 꺮⦐xWC0*>No%# ]NYORܘ;PUQv!ɓ"ICV~{>#t1dev_~=>!L3=!"B a{[jB7'e誳:&&V-a;G 7fp4k/G'n5{tqOήfʭ~VEMFH<>nijW,U|X!]Pȁݳ U񇪓hᚪԃiU%cE6=΢T{!ztnRQp^:'h;ӒP"*{0 j2V0\kiKaAƠb/9iHZVZ"{ҽVק꫻5ZcBuδ_r>3'RvݯNS{OB>\jU20 ֚ #> cm;pEjAx~Lu؈WMxhG=ߢWFX8U?~ˆ|G]Gvb,ki D @=r"8Qvo-.T-T*Lg‡Uul[:oFΛ|cInj;'L#c%2I $^AhQNĝ!*:.O;J$ÌR}cb;hGpma@GXMxC61=6^NBT?,o`[;aLBpmB1O#X[>[z"gh~ >iуuX(%X/Ӓ@˖dV1K9{ SQu]L^a#Kx? 3)m/ay4ڿYRٯpdGSPBUQ/NZPpPbyN—%FCQ Ә6Eʞavd#(oF (1clU\G2^LpzJX=PU^ۑ)Gن\FSe˰ԛX4PG>pSƙY)*7XH0߸TSL64f@@Ge9f)hY$0{w)y<8ߧwD<<`-WŁ֥E5EbRr |[>>I -kzİ>휌i;= bEe}n|}_j`\07yZ27E}dwYПlթ%52e#%ae]&Ŏx_XY15,Jx9v.,ٹ:ir5pK\iV9嗴5CMR5tF{mIa:}͡kvȖ<]CM_e- 91>S]1#>9~اWl4e0"‡%$>9,CM6˴\\*evRlYw%dZ Hm"%% xBdeFuI>k֗'$rӤo.(xoŪr*>@wKH բ 3Z+Jl-f}" d1 Gj]$Ǽ3yę2˶x5ў3-ɁNeͱx%]ZV!'P ]0npOHߺdƷKVaS(ʳVtN6KYr|&Gf9~T"nx4LBuvI:R;7M%)} d u8Xxcljg|Yw=V%* ޭ|@U%+ITk ϝOή/lgGuҟ8-,K̓|jX+cޚ n86)BWYr9UBALʜA!?C]5 7I<E|FJ\VUSq3J tũKP*0AbryUZ!DNDRbrNvD07 ޅ'fV?aqd9jͼ`:0=pG2𣊠{>dܓ  ā_ ?xGթx!Q`0q5Ne_c3>yȲ# Yo(sp$~ UYqhռީ t('Vz=A>)?ƞ&YWZ"(E3B]ByjksVyiWCL]M_y$]}Ʒ;d9/_",c{m#^ %<]N*cNkOpPziN1T$ī5bSz&c Km3tZѣݤ_.bYCp=QnHa޾;9|/.+gdgʒĿݸ 0,H|{BH]PhstNfa<&9,afL H\k\AJ",5XS#F1 {E:ʜ P4j>@/s?j! ͮWvPͤ[ +!xhZuQ<6Ġbv,ho%1) &H]Yuy'o+V}}sMF6\Pk86w'oKjg$I{rjxX*ֈKFL`&!fO9TU3=o 8&6,zL-bNTEQ S+?w{O$7odߐHkЁWIя2џX_q+.Ԏ3 p'!&t V'Sts"?u 龹NVz0\ίl% Za#dDf7 f LzsgD!rlex7}}2a昅X ഇ$<5e<7C^M*8gn_(qpk~dht>to4]H}<3- x 'nX{ז~f߸IZ%*&.^ȩIUiR3Xh?ߨ ?gV6W]־1fQo Lc{j?8Y<[,ICaqA#o- <-Z('9:f4 PZpBrz=s:rvޡ+C- a S2OF m1Y=+,BZ.98W ͨﰻ+ĴOgi3eYsjWlQ;~9w%.%_ pj11/>ڪ?G/ގ萺IrY~]M?3ƺ\8s^ASl9`p+ ^Pڇ1pvCj{OsAsoAnP;NӮ7a^gq0_iJaޱe=iX{N v\ou01h\<'obN9)bb4Ve,5c|њ/8,oI^ϴîE<1E2U۵Ws $yrO]%՗t?{3LJyeY4#'v &~C?1 I(NYaUVق#iZUx&)S=+ϓ*`JT*` }áF/ůΌc-66AL 0Έ.Nanɋ'Eaۧ '$$, '$޳c0&,wD>#&t! =z;)̹{l Ljrp@GR7J#D=қ q9V3~+(q-(!V~V$gQ#bB/bw0KhR70˝;Σ;h? b)~Zûv?!BPQzT!aК!q]Hؚ2Gtσ r -&.קAkO:X=wN?X1b{$T#əM+?GPбyR!o*?On')haUZg˞~W,*TO 8\ $n]N҈Y`uZ}O:ӄ#Ң/'g&֯*8Q\Bo-R &yEv`x\cBۋggO9~>fPnCgx\kJ-.]#q} L>tLzsV70Q4PXmmEoF?vo܉ tȜ.fɼZϸcGs8arX11Gӿ:,?r?e82`:o(r ENO4w1 \P_Z6C7 |\)\P T3 2\.G$arJ_D"9fNH\ҋYě׎wߋH**C>OcP4qR47,s sEBȨ8ա6^ n45Ev˗3m Ѿ[VȀOWXmY&O[#gV,%Nt,uZKցևAY+{3{Vɓ=rX|F杞eM=*w] {AsϹEwZGfաMM^ }5az.2s5HzܘDw,ၡ"c[dylgI#?(mhaP ` ^R;]/5t֎7p)YzDeTdJ bV8ǸbYa['QD+'fb"Ŝ1TUE{aMe5ZÑ)b (K(ĮNYB:TVdجp%}ա*X:1>~(~>YuCMaM1 3 7y11~ J'YҠh|_xhfH 6V7czH&Y[xQ]]Q,/ (>!Pw urkғF`FmrJ!z /lQ({3U0(BBEhi=C3BÑ?ϊ+~DIAgɁ"/{>,As̜3hyw>,29c%0k 99DC[5;]h䫳痭~Gcp(SKGGyg|35?NYzmnm/v _=фpD =' 3ζRr}9sѣu1OQ@Y-:3T@Luc#gj\hS)uE- r.{v7c8&>LLLaxSv3ʿ}z ^/`$`b,]dx2JȹCN 8`uG?AuXsϻErNdȉbpYu[%CCtVح냖8p5Vy"v90iMn77ڠ%XE}悮ddH|F, A~cJ[ RpfS2xU:)=-qyx%^9ռzOUZR[q%]ѽ]ʒIeUHU #$cV]k㤀bjO `9fYE*o+ dHx|Ex% ݱxeܒR)e`R~d/ +֎+Zq"?I_++hR:{;΁az}G\vRMJ SRf|SO%9YN6GކLcMu\o%jZ\am[(߽K⊽uZ?1!SIB)JE[*N*;o ѽ5̢},_pSp}6A!&7(U_Z"`߄PѼ9w߅Jq"lYTb (PX) j aGdM!`C/+^hFܵm*(|l沼u֍$~* mF 94$\ ۿHG3}pN# P*?%gq@ Au>Y*ڍ6~m)eFPiCi NI%b}2d;PlX5EvY+P`@Èi`|bFel!, 9mZ ,eTܚw:\Q߾Rb:/ͥ`Z-YL2s"[#:#d ޶p̓xL Gd,+ 2M g ld3mh.Ct@6MheJ wuNJLh3ɛbτLh1~P^Tt'CѣiAAjԃE"ۢ-"ס,KTdgmQS H{kvm3ť,A`Wa,P0쨘1wx˷))RthDņi f>nh|?|淄NM5y D'TK# ĎKoomFa#1ɳ*-[¼mAGؚ+|TLX'*St=&e\( BA##Mq}NdI/uUDsV]xD!:SUGdٞ`q߃5TgxRoA,UγFS])C=/'3rKit`:M @U739trMb̑5kLyٛ\p\FmDBm6+I嘜%,lKٻhfIKSFoZqg)Bw3-f[lC|~}`$s VH/_q ur½hħfYʯ(6dˆ;Y?8s^kSS`]""C7oiڦHu%Lqn 4x>5#ed:a i>ӱbMTί\cwXqNA.(:'d2{tAGuoCOl.?}ϭR"|b$+~IiТ)hHZM6L~GZ*s)D:s}#=5y؛e+znyK3wh2cvo㢥T#Z!iu4 "gޘ1WhtQɉެp4/,$KZB1q_S,VTP>7̖e舄sgk@r$IeAMZ窴4)Ekv\KvѼ;?vM J)6EoaIFb1892=~[^Njc7u+|cVU^^ ^0VUBՈ$AV\QBۦd4vϐSF)&ʽxygmN?-/}#]C} y3#p *Il/٬ ?MX$(۶+><+e%N#!ِ1 B8=ݏnÃig"^ ͢<)/mfaO(Zً͟T:q'cK-*S(Ίd KH %Z ̺jŢeӻ29!H{hI6j )Xqf!*`fii[up{`L&D#wxT.{5~'~6'fkH'5~c&Hh`Ƙ(OY6΍3%?TĆ36a0P]T\7a :_6HWHTMIFmˍSOdU,|#Zc2Zƥ3c&h83mJBK7:P ?LQ@Ao{vSi쿥0gnmgTͳqR %\Ro֔HL %rWTh`91%myHZcƭ<8f|0úϐiJ)>3]f-czn:mskzNMc~7nBHb"!2[AE5}` !{"?VAxi@ak;ŘUd)1EiͱUa_dmһl?n=Y8yZ{5-fA4A7S>y5YdgkXC*xdX(}З娼FPǫmeJsv+?wI,E*tМڳƞMˉ9g!av5 S)pJۇXCi'F屏u::qM!<WO[ҧzܸu]V< ][}7p=Xw 9 ت4nISQ=T=u51qY zV)tܔHayr_~MĢ=&4LH$qX>pE& ;IA:Rī]\(6}*yAݞ&eZz^z.kr OBW sXj"Lk:,f9Qh4YS`)t144S/sX _"a| 'MdՉ M} kzZȝw +ZP $14'T% kI[֤'|1-ʎ1rC HrYHdYVgXVD]E}v Yq-$J6 |`+bCBA (Ŧ;*Iw $IB6p(S;tcx}V}e&9l̃Ov45aYat ^V+Q0PܳSj44 #'4Y$SsC" ~)bf˛!hcUnjlϑ6+|fBPu'zegF%ʁWX>sg_m< 8#s vJE43JFgandE܉)7baD b<W}l:UA du[qw)*눠PЂ2kE`S6*[.mN֎8{(ZG;qYdR;|Ѻ)Gz//2M6ul:,bE\`$:8RnM xg"[[q԰~y" d*B:L63)zu3!%a\s!'dXq5NlV_ îJfRUUVm9>Kn&[Uȱi£ldކaH#+ħDe+D֘*hĬ򠩴PeYh9 A,?1 yUR{k˖M93/ϊʐ;z@$qqNgjI& cMB6yhl71EruJu-f@EO;@ж1a vgl[fyU˲ڕfy WhiZ&`ӂċD?%"K-W^ җHRT)Ǿ1 `,0h@f[w uuH%0fPWAx7F9r*S4v*yTJɫT˸'&3"Gp8ZA{vQLKH'LԀAAf8it94|4[F{R,lSlS:Wf$1g $Wͻ`<ac;]`tNc8( q tIF,!{FݐyKnԩw]:q9u#> @Z9oc5$IN6a0VY{@)oZ }NEAJ {/BCrFo] b {Р $yDe|rR*wϓ r/A?\ ?_IQ9@}kALC J3*MҖXu6jYnN658f9x Mz} )n3+&B5T}uP2Pą0 ;}QR:ѥLqrϕMwcolllĶmv͓ضm۶{{jͷLwSr5YWC-|Nzr¿1ܿ 25 'մr%22 @MXVS v..Y~>vђ ԧߢXB@ӂ:VeRɹ!E{IK;v2_z|}(Y`ne ~fZq]ȊXb&siz+I z6KKf0}NY1iS jUԙ+#RdECv^}: 1zQLh$A9n4)&NNfˣ,62V/t2ҧż\/ѭ]z𭤋-%zn{)w(.{4$rC3Du TXz$RH!Ih,"f]|fe om1Edl*/P}h:fnMl}?Y%} H>2. tB)lZu-:e(~,Ij{XS}"ZJ˭Yp@R|mnՅ d5)Jy'׶#z7'en#b> 5bdBJ*!~ULsm3#avDQx_$MT&s :HrI0W3zDz/h9FA2q]0s]P$^R_@+P-o2|^gJz_9NJ[XFSCwQ;qfTsE&y3q#?} Z_ux+m&ҜykO!Щ)p>F&ƹ4!uRT Aa)І[U8 0: Lfg Z2ѱv~ bP_K&/c_P6]ЉAǞÔc>vY*;#o@%ڱܙFe/Jk@8V^ՠ*C&uqʹ]݄x 5iz )P2a ѧB{l[eWv0 C{&j  ^`($)S- m]F#_(hAV+Ī(yZވ\03Rč-U:zpu~A%Dޖށ.Nt [V/򫼙+2QR/xL_T/);ϾB|Kʍ86^S|;lӑȍ/})ʚO l\/BݚL,4QWƮ?~I]zTjc*Bpgi0C/Lb^/,o[7~doT"E} ##-𧥇 ?fK\ްX*tQqBݑ孷4O vM/TnP{JZdBF GNF Bzyn17aʲߑXnK^3q>{ hwJq/<@"_ r_hRK\ 3Y|Mb~J”uVAM+ǸA No /QKͭ,3l4QɟdHBBZ^$tө0u9F&@ہp~CR_\"_>{;%:Li)Rr|vR@V="~%Ope޻歧6OH0x)lBWʧqSBށ>dS*uޮoNMHom1MPT'NÒI{wխ/ݢKZ@6f4.f6)ybەwn!ѻ#NWCf̔K~k=tMq;QX!\' vdqH'薊TaQњs7S0\O ̙!q.ݛ5nֺ?M!6fU!>t;oGɌ&tƴay[X > ݘ)t( 7sb:$Ӂ lX=.!ɫZgg>\㛿Sh]ڰ6h?2iFȜqKzO *=)JV͎DtkI։]<Usx!&v]M؈%֋BRvfr]Th]c>cp:sPKaݹOipGy:`a_LG7m$,=lR? b9on/R񆽅ղJmV쌨~^rP՛nkmd-<`w>ك#§THՆggk9uW/ksEr-N֣ q}زao l=?u_U ݭ,9btMe5=Hxz9CT@2@b쟕M=7E»dot. >ߦ\קs-gN@ d1Ig%5=̆?OPo+/ʼn/9T)Eˈ/)p{x_z _n'vGX;]1o I.GW2zIZ!'Pv7+L+X@^ *H4q.V߈̅pLF*& Mrmi<ېk9B]RXbn,305-oeL# I9&qƲ,S;@ԨIZ}E?Oĺ^-JF+vǏ\j6rqZ3BBG9Y5}YV}`Q0fmc}Zގo39I0$6G'n1s H0 Lsma"3 1*WFl觰+=TSKTf g >0eJAiU2) m @/p'06sJcmZkLRhaQj9  ޙ+؇ MG cJC;z@em۠se%'_EP*=c*!{ (z5% M{^$@pZ GFjic:pI^9䷾_X%\zLMV <%*~_GoIu 4"ta=BpyezoD vM4sB~de{P3z)0,v!rGCN]ͯV?WզNT2;LI!ZJQQat pIWCZC)?zI#?0JOqjѻ+fkUK)G,gSC^se.E`,Oa:1jkK>-]f`_Yy t =~N1x(Hz\1Ck/;oGTLte/y$kV]s П}aMx~7Fλ=Z@HgW5}Qv= kqaL t^Q8z':<^5TzR)>Q_,V+ߛKHR)R)ogf!(c%@uUqPe ?iMEoO"N-0<ѪY,w2>'J9oWK3 WbxTL_ULK\9[]ƳPz$VM`[Z31ߝ(1yNF$OvbH3\5S>j!Հc(`(/. {_S Ъd-!O%ԋ-KzP?\6%9=WWQA@Om`F&-[QSnj7V+26z.Y(?u__X] pvL{|x|8ThySe:$T]kl`&V1I3MmhKSu+Irjb0J H1~g*K| c6*ȔɡhcL!nV[z)Rm$0{"9 x>Knq `VmEK27`Ih3uB9 fIGf"Fk.Hs8}᝷Ԓї ʵ1rGT3˅?hvΧ -sPVEk8A=z5kȼ1S?l:\G?pd&q('y?wM.?~"*I "c4|k):`nJWՔ̈́p9;y9[X;8X)0g ?=g{nP7]&1%ټ@q9 J2wʂG]ȡ3lF~Ѷ<܌6'oa)$2,!_p \O`Қ~^`qYi~ϊ:ƣkIDz+-#i0pɮ_u"+$h'uƫx˵(j_wo<[7#pPk#xF.-]xak+|YطF|Pz) .|L)9<ؠ%m =G$lKXA2/]iзMS#Z@Pd+̆; "I7(m-Ti鐃,[Ljl WM+&A܍9ȼjbC`%~Ioy2ɼ )JQ8s3e 6eH|^bLKRPaN zM%Y%)L,("EyעnJ>k@!NhfE0L,8Mԕ¤>N•n~>Ϥ5 <Ԥ&jΟf^RBVBUBrԗ@+Ec0Ey7f4Ycma=Fݲs9ci#pVfT41"fԙGc\Xye1\)hU1˺峓ksis MtE# 5%IQG- 65"0Q"\ aPvxK]IܩQ^j]SfsM"BҫoFn[tBX˃$LS{ \wZW_y?A~r(AX3oSkTDj;+PcbVl,H&}%?< hE4DU,2ElϡGB(L)%x}g?j2Kך^OQ0p"E^wxkvWD|_ykpoFj9WQX.{ sv ?XC*IB)J;'6_3BZgVv 8$cTB-=WbQ++N`sd ¾钫^ڡCg.춐궄L%ͫBQ=S ΒnoEکZ̾Cb@Xk^RcUn伜gY\-F!,{gS!7>>%S5ۉdlW$k(%2"Q'VLK nK+͸P{R'*flYƔad RӚ4Á1#jwTaUj<\:2mVN-eAjN6V߿m梁Cwf!UP6݊tۧbfboi5` 2B>#U'H8]X,Mz ѻ$%^v[qnkL.%P[I^1z6aڇ@XP#ESF^9U)jTNRtmF1s btm+ru4rbĕOo3}զ<]'ʰ dyRf5b˸<9=v,ZQi'ދ0ֳٕ,q#b Ͱqk~v?Jq!q2 ?)Ӱٮ]p!CPWi!fm5J}^#*>uSG*Or?X\ 6}(!0\ɰ@7UG&ϣѮ;qkxCʵ4dppWS&1]\M[!#q\ӃV03Q{:]~~ĭB8FY9OUN{|}ivbQ0~}~Ȳ/?WюFoV,b7?uڤYϊS̮t3جYVH]+]tuQ:V7d+ZZր?Ǧ`p?~ԡsXvO]]=R*%]M?`vɂمҁ i*}A dV Ԑ-jٻeV@yb<'CKNLzk]n'߃PVP/-6PP #KHd|t#gdm-ݚۼU= О)r8V܃ Mxo5`7- ,gN_-<_/\m^X-26#OG_xcz#T|C QO_4׬_pmy7XMsAH\BB(A_Qբ=!k0d?B5-ʌ:1@i8V^8I}̣q_3}9`"r>$pFلTI~鶑| ԛ:vL*dX"ʦϨ2}19FePT\ wXnl_\-_Af7 ^q^rg*8!fȸBkR4"1yիp !aԝ' o*rS@V8{zT9ztE dRZ8-'”Kr1 G>|0-y]4 ÔK-V9uQYgW<:}%!K-,굴3*"vBGieE9C@BO .>?'\J]O6em!1gHukUi050}TE0](>bM W[ncؔ )[xmѸj>,=K{ϕ Uh8*Pb6+t>dq'LܝC7*@m6iZ$|G|fjIB .fk`̞Ɯa.#.<$:eqMgk'R7˵C -Uϡ9lA?AC?o+]dUd(f ӼtLk9nn!C9~xbMAmά.Fҥq0S %@qgGy,B*v6j#oqIFLa`aAa`&l1{hۿ 1^|G/5''?܊|8'3+P?v땹P`ٌ:9Ɛg]%w4op2nHxĝ]I*_35waس&j單F klÁ&=uEn6Eg`鐍đ_݊;4fxvIFz,3iVOAjуqot&,7ޠ7:[48ք>=C| F|J/%& ; >' mei{){4RTG҈LV&B7hZ%"1ɟM[D.8O\;rJ\mpCC'/{S ~AzUxƒyZ`[m6͝CGGYєptK >#7B)<8%[\?/;=]o:O w:zl#* 91tz ۡkY2c)feyPt ѮO*n~)Ǹ4XC7H=(DXݗRCDMJ%y[y4$'U+?q> s?a='bXqghqi ԡOw-{aj޷9&@m㋪fr!iu?%[Mb+ߴ|e#7wA17Pk 2)xu0ZȴnE48 Ag 칏ϥoP ,par!y5\(612E9r6K[`A >ޚխ0M()KCga{{}*fUA| d w0*;Nqɥ10o'5 p+/bSMsỎ{7wE=uW1j+}E?JU* Vkf&M-tőgvq^3dN{;#LBv ?t\#?ǪPM%2P)@R-8zau9(KD)G\t䋘9g. q%1qn8!&a9TĖ?7IQhVL?W˿O+=4vIrWG#Qa|B @8%r9GoǸ`^Qs?^ Cij$w!GD#0?~\""tUM/hmCk`D,ͅTU7%N.(_l6I߁k'sNڤJxԟ@Ш>~qe kcڑ37"ޚ$B%x.mR`6{d%`voIQ`e|l(Z+wa zBZĻy!:@X/Уs[rlyk8V:PpT$dr}֚ۇZ)9WfBmqۿF XD&qb` yMw}ϒR7EGkZXQ 933Q -L6ET`vk[߮{{6!/ˮ EcxR"L^_R7vVV$ٸy,( G}cyxܧ1+;|{ȝ$"HHQ,L%,f2QM=vxqxNU(qe,43HvK[ @ndV/(ֱLҏ ""Ze;2# 2ŌEE^vb6KF&%oҿb;ѹG(A<׏WJqBEcd qZ*M]WNaA#Z;KNdJ1Ϊ:k&# >P5}͹#_֢A7røu=*s%G2bfv>oI> }w*g#Yv1C!U Vy7{qVzgu,e&`&ށfϸU2!HWpfMLiz$8]{)v|U&n0C|;n08P檍[9lHiCT`*:` ΀=M0*1߫/G0#S^4CXzPѭTI3Yb-sPѭotk!OL7Ɏ]x&.<4pQk+kS\#V of9'POmY͍X?=f FF̽Js%RyBа_w.Ѽ1( dwSh$bڤ1c <Lӆ%x毶$^>2cOeB EdCRr&U[`tTb6mBNi{`Y\JIԬIR"ԹO.5Q޹O_t}\%9-->@ w:Go5G U$NGoL^MI.ެ=uS\&mIBs{\ ƍ]Xzs^$n [~4<=ډ~`o޾ׁkEγjK٣h'+אwf,ՎȣV"GA pZbD㙣~xfų_ϸstq7aU+[) *'%\-5Fa}Bgb@={y-܌rzzH$ |ax+): iCéBP{`JFýbլ)ϊe"]欚Mb4"!ȴŪ-\V m[^6}YT h|KCtٚ[KrHrW\m^uC{URY3ڙJ`LCO?S ۶m۶m۶m۶mvw^~{N]TTf'{-2.:ZC>4%|$Y)̅MtXnO]r8|@ޏch) T؜Y7Uw2[cѤ = mG\1mMУF$IJfW;u;#3*{ؤ;48 .a_HIe=G/& lsg`k@mҘ==e3>,.xînqp˖!޽#GzD=s:ҴVrSwy yS8d59ɂ.' cb1'%' Yij OPy7|AG6_ P~NC}y|6}8o}PIMxhDRZ|z~=8H?h=Fza v>ȗܘ 9(jo'T>_O&N9~= f"}ͺP"1du'.qd}B9hqj3?,U ֺsc=͍ŭ$): mȎҩC+Ȣ$rU:,U*Ḯ}ŐL-lr@5}a(r{4>g_z0;VR[ڮ);AEۖRA&Ѱ2= MeSfmR Md1 oR9p>?'/ s=p{8||!E,SPB]]CT ~A}x͊a?gؙиHfM ԿkfB:l+.` ȷ8"v,2fi0>Ьzӥa@YjRVBze~SlcL?njcZ9lU88ev@¬@B2] 8C!s8Oes=hboq]P@"[RS(.33MzXЈlm"~-\l~{ I_d.5aCKGoFD Ϗy(̷]M ϣb ᱟ;;?|,^6M̞ -LFm40" ѝ%#RHXf3o>8HGy1WҘbY#y:&'ND-B@HNL*sӲA"_(\' DΉNЉ;{"q>c}` \E; v)!aR/wmNKF [ּfW( 3\䓰N % 80R1~,}0k+w1Joݎ.cWWrOW܋&`v8qMaB]J@{Mu`ԩ3冼bsFƪo@+s8OhBx72Z+O q//VxV\{4="Zz>wߋKCQq3h"np~em) o5S9U.i=7)nאT\q~rWdsjfU%ݑu=>*d-VSN\{#UT*NA.@oY>\|GiUVGqCSpӦl`!/5 򫶚i1([Kd LjyF;{1R0F[uP9]x_? R65R0湯e-\mMUcKS lk喏fC֣Sa0o.0Mq/lEs.⠫ب(ŞEct݀ӝqYW<>})WBG$r#ėp-ߗ<Ѯ5VJ"BWZOzYn/7a><;^m%Kr6컠DmCJJʱ?|)   sVVEZbs\TږjXS ю*%k!)TG}B9ixͽ݋&gL[96)eL4I6a adu>[gqZ'X_YccV6qpYB(D^3wf.BƳm$c6y#K$ZYlid_G 'ԺY=Q'CT^t_Hg¥.xjYE2Q{[AD.x>MB=/_t^ }GRX2lB'84h=$Bg]I g6i͖}b5QZXl uz-7EVkĖܶj0%N6aT嶢t~Bȑ69J2<+szZhIzɄ#3ig {s_>_l<+ * dAia{tbÓ\:$Yr~r,ÜإN)bKYfrS*H-ithʹ$(y?RaCހ.1VyS:f*%L-j-5JR7 S4 MtUKxνp5ʼ~)1,l c4`ޫ?(]X }qcƸ)w Y #jٮ'b-#CF,sS#9#zP HT(|R#Lr*89ÈZ^(mRI Sl^)iOz`>^{Uz>b\ȣaE{X"BXUCp\ Z,m豵C{jq Ud:Pw>.5&w2qMBe2mJ!qLGF& 0s~jho",:s"tg ?B@l4r^30iy]I%Qݱ y1p~%N~ݗߧn?&˩Hs+R`(WD, ].hD2kÄ\k\]0MUku,qYd Z,>ž a}F I!d?ȇ~dEcAEA-sQϞ '~['?jϸn(9$pW-ޱTb!.<~ujH5.ޡVŻA]3ʓګة}Fo;ҩ=Q`>ѱHӯI:NR~J]hh;UD_;>qPco<4 t+%C櫏UTyvI4TM=>ytQ$yF+[zwKi`է>.wpQS4Z5vL`ZbRKtD3얕qϠ} cF#vDүf=VWsVߚW@G&tO0#[?ۄ>AfNu+BNuJfh0ad6^";^ 5fE5C FLܬs&W;Gr`A5s0*VrprǿI9q0H.{wv\1!͑Md'-msR3VT̏ԤB2ėcy*txj-I)5] 9[YTX8KRL||_C \%HS6R$rdeG/Jcr 4 @G4l];z]\7tmA_^Ʊwt߉ɱNF@*Z0XmDtzn!CH*g541unQџZ _XO1ۤLbT˘o`eZ'Y z]|~MG=`ƍ! $s@(gPsSA^5<@{/bvbo>@4f*2L$r[TvF5z0̊V(X!_G!ë`DuU6ffP#qL~o⍵9u7z cU8.dpMj&Sz\Pky*HbXqc߽&Io*erQS ݿ8Z"7GDdK"$c' #9l54ъYSX$2z2_Nfa }\=y{-:qH,q]~AԚ"LTe(kab<$nЩego[-tzbM9T:E4L,{<B;ah72ڏK=[q$-/'}!b Ŭ)ȱΌ V(M(g6 eh@  uӁCC- )CyC $Kݨ$?2QHwȘ`hft&26Y7{߽R@]-U;#QR>VB,EbfD}`A '+:>넿?O.pa?}Hs9kԉt-t#PJG@76Acts~Jͻ1}ûMNcTSBCE5ɮIJEHH(Pţ,7" pa{AM-<<1ce mFӿm~w/RPJNR'M:1ME~K'.L{ln}+\-ʹrAEX11!CWJ]K+,zd="bkΟW v{ۿ' Bч((f ̴T@n} 0'aٷ3q6SeFjir6ĩLnJ e6e!{oD?Fv{kfYғiIYO.y1]mm:xonZO[o˨ظʣֹrnr׮2XG5l 3ZfuO^>v|\kxLG LmT( m ,U}L-Uv+1'½Z݋Mzkڔ_?츋=1ݩT Z-RmVޭ]؋g;Y 3E֫]m[iW%lݲ1Mn6GaXmsB̏>.]ޤ(R&LIΫQ†g[}:Ǚ:jb-I$$9B BBCjC![E7# "0BqJ0!GR0 ʊ1Gn(ȯe/dM۽ȣ3.niD4t8=]WoӔ-僅Ia1. БokEDӠh4Bd&P(Ҩ`L3$=:QY)p Z΁0 wA7X榎¨pie{;p<_A&!Cǂn&PWL #0Q^: 3EFbQ"E2|!ɉ"^>2'%%$?GBxFC[rFJ}Vg&#/ցF3`yICl\Ae0ۥ(?la6 GŴQT~W%5L!@p;"pZ7=M_P!{?tC] vu;ݛR@奇X<uhqu BӦM`#C*n> rcјc63NU%ѰIqixݤvmŢ.]THr4f=Mz@mlV $:ÁJfxȖnk??aab2LhmD{ĺ+ܪfխv-ժKi4Υ-IgL -VH9JY.f/BMܻ{>؅4Z APl_AԹQ_ " ۽EM7Pi?V]=>gpg s+ϒLt B2D h> dV6wTɢ!F.Z„'L/%EW%GrԲ ъ=F1'WE- l6Ix13%gnPʶgXsiQ̇l>:]R,-O/XY7k?̃Lo^J%#FQG7A}ϭ·>60WO2y}r&GI! ȧQփQ>YNISգg98ŤʇԽSmoRv;[g׾t I]{c&#+kvŋ)+2dRț"-w=$)lL VK^ T\{Jc}_XO/LY*4󩿿ZK4ǫN޾fDb%18UmyBa'>S! P쎐UU^;ڐT9$lRTRM&[C?,s?%šMzܑPn20-llQխG{"En'Oa-(?LܮJȌٰ ee(BKeQR*R"F9;IW$c^z<'CbM3FAMCB]^hiϯ700X]aTz&4AqIy_^'z$ſWeǷw=;ưJ6o͕/`%\!9qnn#(1^wʃIY#pk3#z`U^zpKI6 ~9!g8kJ4+n){DHD%[HdL-=bYa_JbFh\k|8W%dkW>Bc"yvS4&%ٲLÀiā&`IM!z6]\TbΧ8(΢(9Tָ/;4#$+P%]1$S_yƟ[cYcg='`kg-OT_2?>qZ{a5%[ޞW3B`TfEFrАkY6 Lzd :p MӺk};wż, s>i3DifBTګbi("gYcFK~ACU*c1KMM"6ϞpLH2}2sl#%+pXjKa2ۘ:uW"}V*{mUÕ8Mf"`ՐWo(^%oL#y--5u)E'EƴrH,&ZSas`}g[6 r %2j̴4V1dk)ek.x|+>{nFIjGQ ɳR4!QVB_pgCΠ.ѯ H5t`@ PĤ ,P{WX^"Z.NKT|?յR_[-S?^}"!LwN!}~`~4#޳ԜC ?xݨȧ%>*V'&Btr^mQ,q7nHp&Yӹb3d",@23?pE5FЌYJqG(OƄ VP,r[`<,ghiOpz ¾@-~w+lz96}ȊN߲!?)7T˶d;R\&04e4blY`̸p2< G@b|?!ɾcNKI^x4ox|B AÇ+FڢФSb#GEH<=+GckKYZWRhv&Q!BNhV5oVXO\g!fW'BiM0k[[ ;[u<),[jBDoRG#ɣHHfJpJ'ZDi9k,E䴫(Y>j6qѐңTsZmf%.JtPBU+>roR]}5j$[YÙ6^war1sX!";@e=>N(\ 0*+$t Pv]A}F DJ 1:,t_Rb,==NC[^M`s3bO0 os`}i^NL>N ]~LƗIGκNh*B7gYx]54/̱YPck 8C,az[ű=b9f'z5)( ɼG1*bcx8 :m}.Xʰ Ï@mnDjW˳ADX]-@]C=Ę1 rvh0հ">A=d>["Q 0B>A6[tp K qVH+%Bqtg ]x?u8 ;Kn!)WpXj/6whC1bԲ⫧( eL;k("&Ȓfmr|Q)f.ƏʌЎ71EWDG[Gv{~pӢ#3 7$O./2qy@Ov=':ko;';+ v7? ?~/;_g?h/eZ{. s r᎘;7̟43$L}{R?aAU~\m(nOUK?'>e04 >zaHEC$YFD32yRO*PaG[ BQaj ͉b4fh ur}ICI 1<ߓUo݋p `_9'\S_ s df9{  xȰ ɮنgF1:Nq42^`!O`;NM6ۓg)IbY⏞#Sbwks(; <9]!f3 rS_ɧv2n\.9tӑ`] pcO5k(Ntv5O%DqgGaQԇ.xx4΀ Ti_alut@K kVl) aKNKbpP[jS@aM|u_0|}qiKqh- FaZ yyt. uFtw9T(kZ%@Kpaj`4] * YҪWڴ5äPn[a-&$eYk bX:@Qh` R MXDZ|ưO i|Zd*S61n6FɶMYb)lrK+$ Es n M' U Jꍷ(v8d"bB-qh6gPGAu|\ĺ2=.Z]`fP [.#ic ~`s@?lDWusAL)*bc9\E=P)̎3dy =Bˣzgàŷc3"M¬bmV;[-6(8vKktCZ s( ѸYd6DE}:llP|#L}sqk 7ձ[LpG lcY:W4} TLam:V󕒱M*͊ %?T睱8cKT8v rD=c͚g?{dMK]]f THp B׸G%B+HqQq| +CTը*R+¬*RlQjpGW IԳcXt'\9 Q5Nyx'~`y!b Bw,l".;Cnb_c牘%i1{A0wIR+|t0 XbNR3yAp,h!'VTdZVo5BoX0D~eZ_$zWJ/TJ/3"+~sIn5$)h n\):-R ď/A%RYD%/y4RQ&\l"W]h6m`:YН(Nc}w|:Ly/jžxH-:62vȿ*'Uz秉mB2l&E68TO?OGT@4cB4hJ*GuRw-\CjvdLYRq8e*6Vk^6b-ucR ,tM8,"/e :_@h!AGAs!R%!r@zh{HLZR9tg<*Y-ϕðыCrޕ;GS ooZX.# +=#n0J6u7~F NJVwx7w2χO1_׉QL ;с}iǂS$;B=J.إoNCW}sO}dE;tSd9p!7$7oehT7?;/~ 33=%ydޟX?e(m(HČ mp 7޻U~ ^A_sIs7,o^}wo]e|}`AFyKa'V"TRxƚ-/|fhM$I.`R=-(_k XpfR, RmA$RSX;,v5}Y|x[ũ^Cg[12"-,Z3ٳ kݖzHmS,DlL/$1Rwm(mC7聅"O:J:kzy$)dĘn3\Հ kQ^mD)46Y F:m0 @Q /%ӜI C`KFЛ9{٘22JטV4[e7BfVg_HݱO;iw#v=>fz="'ILßfw'0r({ ~.\gKNՇ38 .{lq!]B$.w̬k-u*gTӤ -lRgh$v:- 2-hWL[/IIZ 5P9| ouu;=AweV@lLK9zCrE(7sW{W0g1=?NI1 [[O ?A1 -4lLуe:%UD_K^ lV2fG(b%>Ϟs⺍23xv|߸8>.ZavHX7k8B9=NڙLٵM  s 3X€ `RѐhlIOA*0"⚱ e48pW͒5w~RbBSt҈?[(s{tȘ5BRp[}./;d֜)E* QFU^FN8>o梧§;S?g1[z.[` E~|`<15& j FTch5U:1V$,cªc&||fJ 'iz*v hV`Dz8"bWn h!#8zx$1F$(a$t{b ut,Kp1H8!DY{tt^607!Hσp3SjmCyq@o> :X ]Ho0 S-bH:'<=vs| 54!=lI`x˹nl|#8d4cF]=*/*kc},(T]<j=.-*lü -y?xj|VB͈fbˈ|J5 cB* =lWu*W cdyР!XlU!aYD RFA|Dp-fpࣈg d1d#Kޓ}vQ'N4! BTU=}~M6!hattr-ƀm E ;yw"tc}'07gU{P'_pV Cc:;٪}w y~M&¾Ks.`7E>JLԹM/<^ LyS>Jg4|gEC6U`ثmA.jPg[ɷ :#65hRS+Gެ Ғeh̠ifL 0Rx=P)8Ӏ:.=@t<8}eAwK"Xp|jf,t,3[XG@ E _ x=/\ݰI-ӃEU7CKt[\Bd,(EۀP /mgNVuy͂YSR+H1˙@CR-&`6p%IҀr^SmbbҜX)I1ъ[JN}AK^Wm.kXr48GEl` B&G.k8Fm KbF, @>Q w?jI>:92-+r{HC ?ڛPĄ}hW쮈wu" qc=?,4_-\ JP0(*Zm,WZ6o]~>\\[]68]& '0)zfSr!-*9l|5>z@,ZQ\!@XP{ {SN[ș}8D ެAR0 g5b(!#\7>Pęsvgtg Cn/'vQAS#+Em8mc[9vwhS|inY—ӦǞUڂաb8}r`!b)LG+ :37%'#"' fVAQZzh^Ĭtj,qpr̰i)Z& <vz lpo-e)O'YiFIMkьDLkDmYl\ENn.O*ECѩCLu+;aѯ c;E;Ka/rCH ҅Ӈ1:e##$& |z`% ,RƬY3VciSI 6 e{%A)mᎋuw"2i17Qf;GCSVV/jV1ߟ L۸nFf:z?_b^X̐93^tQ99G,ckwJV.Ѯ<~J)1nCHƃ7ʣ$.zdDr"Ǜ{qy{CGݚ0c93;&˽#] bv]A-ew24?"*EIu<ȎܐxmS,`joki阹!+嗕Tf"y 8Wj .v΄)tNc \3Xz*2.B;T7U`vx^΂0Nz>)@Sn #G]t2&.+X#^tSrrH>,2™'BGqX'N?f`C'GN֋v,r/o܊3]G7/I_y*} qWzOaygByyy ym܉ Hoiß_͒OInzOsoV?nbߞd?Ap!Œ9 |Z w~ǟ` ^;J#csD!iU8j' ptԎ0Γ[59. )Bt1'|!pYCYZ-‘^'&6U+ Ya˫GHjidM^|Hhjv8tEFe ~X ̬ Ĵ6k%ꏠJ8H? Pj%"ݽ@'y~ZMR` ,B%qͶ0@+0/FHbQ `PE''BTrNR#}].etQ=IT'p[>/Vʖ_>g??dwøw@w;=X^lv7:]b爫鷰;o4mU0mE8jE!-tଂ eيjsWk a|_-]v/2uWNj7wz];|]k|?}{дykǁ3%83gǴjLn5:n8L+0YPOԍROn-T Z+"`R.:lڇPH"xh>hb `#3XG?_I\s R 5lL6X` x).3c/xp}H"Uǣ#_1s,lohKdKDK:/t+xCzcVjeNyhJs(kq4&W:Q&?RrvY|NĹoXcX#d\#RVCOWCO44Qrx:Z>+rr @0)bdp-U`.x2<AN|.Ug87ǔ401Gc1ɚJ ڭ9佰uZ_wZ3(/^څ7]ޟ{D-B4N3f>*Y/Uj4]HЈʺ)/~ [ǖ?Vأb6mzMx[BTuW{Y?+4YXj'ܨ,C ԵR2QTfB|;)2ɣ'R!J%y ULXΒY wAF-T9GfoPUvb $0e܇@ jCn Z޽˃/íIloa3jljzcb)E5m¨D2yoD! ܜN!u9Lzv!] kS?w8*%ۋXR E<Vq2 k,{+ԗ'^wJ1|CSvLPI@d`ScRqOL[ʴU]f(sKK@5g0hPl1:J)0] Ʌ0Y)76ѥNm4~`0qOidHDAaDfAW7Qqr ǢsYj)'oDi&@;?-p/8 ?,s"Me4X>s'7ᆬ8&YK3/YwpP5MU[lBb]ZV95 A>ô.5%~^HK6k}hs=Rf y5 82sХ<8Ɏ.Ȳs$ͨ|DA}7Xr7 ]]}n=ș~5K`%G.#WX#Zq?lE؉,IAKoIRqf8}qOzp-x&m"/MhtGZ"gτ3ؑ}.Y {_8\7s*OOV޳5.gDc,MKA OL\.x6:NJ7JHfq Pm` [aP(Wuhwu7Ѫ^mJf?L!9G62~rnwug[enmv|^=p<lZW2vd:iAK2&&xHtR9$2¡KK9,5LMCq`$'[br #tdњb=$$EsbBydL|&8|#czGfξ,^mѫ}r"6HP.zzD:8^ӺVz^Dэ|ašT;EaTv7UKbJ5Q]^/zM4Mm6)"AN.$=N;yim=Uaj,J4Nv]I+yPԜgXSX_x ru⢟C"Dh' (`QvYV5lDK~Ivzm.@YT' fd0E!gsM or%zur`q0,B]ğpwaY2Hwa.nC-H!Vw@`^lՈq]t^DCӢ=chw8x_bӴ _GݒLS EMT/%AY6KȣPRsG@8)nCS䈾RxOk?f}g&̏[s2^I RWۮӍtkv*vv4(e&mm 6;d\G o!xَX+|}î1Q>hʭ^?qY|>P:/beƛsV썬CÎ71vaV (el͝IGus3ؓѿ=h @hIVSП1#xf#їE*c8\@/g ;.5ûcHrDƕq5wܣ6&b/{Yen􃉽_*Pl&wEzXc)m}:6 tX3p~d'òZ՗U)k.Zw1ZĒn~>U}~uˎdS?C@5 fpa$E$xfd^e c0 ` ^ 6O4* uNVk>vH [_XfbQ5 a c[Jo=K/]a1O@͠(dp50:g(Zk+BEx/@A^YTa|[c9[:[z3[d1l*Õ)[.`"Dxi?Yj!6cJ2 XQQ-#&d"$>8mhVrQٵX114k,[} L&X$gI3sF'{ʊ0D e [a\,6( =Яk4g渔 rY+į3/W"{w?39=%G)"R `qHSu!9jشE3X̑3c=7阓iw~MS9f2 s ZETMEͅl%LlnÝz8ShЅs-_DqSaŕ@IzY3b\*I% +A}SY}@UPt tp~@,w€+~5\f& 8YAmXgAXyW*Ұ܎- ;{~.xՈ;g~gx-Jg7؊.zp58 nu&Z/j~KمcN iw@]`q~m)8Z=eH=6;DB)(wK]C'UL{ )IVI,y{pq_uCVc]P{AWs^8ݰQv?z(-?Po^aڃ2(3Y mFycܽp?> \PCxt)2[Bpvoj޾΃xE|vEb(ס`[ЕF|Z;NGn/4 1)4T+OT['''k+T,COL[0 ʥ;iK;Սrh}p>9A?8YoDkܟ3բ!UUqp6tY1D_6ryx qayzՍr=>iJ3Bn{pwܞrCs`}tܞr#n,I{nZÎYeJS nJ7O7v;;e76XJRѨD2e-=:$pkX/, dU$euJU%IUm 6G>3aw#aGq{MCx H8O2uO2nU"E+3H*ˏc!)-M MQ 8jԩ qp j8Q^ĒbI<@!OOJ?_L\b&@NR|6Z@]LoJpJ(JcٙyN0 ^S9x9 F=⼬20ԅ KP曔Y77 JK2]"̠",Q~^Q⼄(bYw jK2{2/,/"fv40./-"̌} f_7$yUɳm"Z:;T}ș1 ]o|sA!vzE=ƱOҫ5,?WI `u]sꯗ*v ~L(yh+0Nֈr7p 6Œ0%,_sMH>Ss鞜*j6.lkPΙjP9wiwH3jsz|sn~(:=Ft8A GJf+Dʚ^95>17qDŽ"~E /QeR&O2hC;SbCr:64D9@9"v-A3[.:)﫼Uh*Lzz^|9!M+ %*Qz*ɚrћg^[ X"K.cQb%=&(*6| 69&enEG)\L4!ۯ<Μ2=+clq(2.m>0i"ޛ.)#\ Mkia)iv~Ljlΐ3~<"ɪ線o6>(sF,ƊG9koI bd\+Gq7>^| 1V@xy+Xp ]+U3㙁cF_&uCcsjvsʑ'p8̪}NW[FLmawc]yxF  v0 Ts,&N(}Co8vఇ#K /mV OB81 ́6׏-cxIs|`줓{ 4C"{ u:K .$oM}2iCmڒ`Ci))ro .RW\iC}AE&}cb>h{9p¹ɞv*-*bZWt?Qqt.]ל7Ic,DU|=Who.exp6h٣+-T3[fKzv̓BWWhS`{OQ{v5Qf4[VFZg&W[[}Ibິ~vyzD:|R>_&ݨi)r%M jeEsmqp 5GZh &[4 J vTĜxyNVP'/M[i9QjYIH,L;.=n!!&ҽ/ #1Z6OL=x7m~ cP+3rށP κȦQrS/]``p^upDP>3z22ҳi**^|KV=,__6Z)Ut?Ph!x[a.V[N Xy?ul4J&lH ĘI:neTz 8&D(bbv54K{׸ՖqZ6KQD%Ryy]Iޔu'Cn`ud+r">f㯹! .hY>r"xIJk4}ߋ`nzIB*e%qX-h=ӳ /evfΠN: ҷBF7_öGXR @&YU-;$5؞4``mq)Ma2m?FRQlB8*x-) ߛ󁛒)x)Qnn>m1^۳I<_WOx8CkIbi|#C#p7c ݅oq2Q Hts7BT˞L+ '珅߽ ?)LF fh4! C}S[@p*?r`0jŕ6]:ԲFݨH٨L٨Pg(i9n*̡HG^Raqg-EE, 2Ȑ_q֌:x^8-Ex+ڢ7F nD0H '7S%L,gN"?ohJ&ɡ)qisV-=v^b tn⭬>wVMS=k:9MfHfw#eZԯ:Ţ}QŁDqGV/ү 4|hI9w(A?>I"ȶ6ţeB}pb\6 +>v1@s瘝Ζo;'vB18-15K28dXm"`8Wf&WdoF[Iޕ/jaYV7 ,㜭 + &)ܩv}:īR=`\|6 %4 9 U!h4DzCh =3Y^RTIZ=:uQ@슫O4fmn[2=~^fHþ%Òw#n$Q)Zl<;N\8w{> j3BIfcH<U,{5oR ΥzEt!cz *9fͥJܔQnɚpD#3|+Nbt0E| f dIi8'K3 ҩ-~X:ž)fѢRJ<. LcP$΢Z?H dQJJ"ӓf9nYҐ8{!:[kTQmgJgPM/Ҿ1[ˡJV<32 6r9 QF1V FA d+(C~)PW̓ i*6ez ,_rt)I8_ͮwC  гUp R1+wK$Bv٘֋[8 pb?0X7lӟ;z3jԾ Bc-%tUĿe \M3@kM7e zϼ`뚟2OE߫g 뜼:߼R7 w/' k/\LZO{:Lޤiz`J$`7b&lTpCXiIL](5}B/#H03zVrT iTNJf8;¢n˞!I&^Cp]jXuDۚO 8gl c2ɍ*Hw. Ù<򓸘rovSxvx.8p@C}H} @iZ6֑iBc5$꽣̀ruSB i2Hu!AHD7D ḋF2sCyemdɋ (/-n ^F73*]mm 1&+q'ӉyqM#PVy0r,d XPVyJn<6+c\ʼn9˛>Zv7N={Ġz#]pєĕyn츯})RN蠲#G!e$$|TRsm&M!&Mc~dqd8~5_l7"Rci(}Med{"jRr/4B:vpQB/jw_2A^# 9`*dI}e SR:ušik 6+ z~.z3Gi'19@o5B<arOKS&lGXH(~Z0 [Ulٺt~E ȵU2Z<0bfiQPCRCE% ,ڊoPt8 T7R,6bg^4&ײirmk97(*{.pT{nEky3%Ov9JaKSu0()w) A/TZ,3KeA"JjK)/0(T3(,;t#۠޿WiAzRu0#\e^Uѯ)Cml,^uI`ɔ{ ">Э)~Ù78{.]][tm۶m+,۶m۶mv,w}?`ZzzOFk^KU%͜fEe2V |HҷSKvOy|J]4@$7D%`4)n?[/(5m!cnd FH1>?iWw`= n.M|>oIWbJ\C,qçbO${ː^p~1w_P-̔vpZнLa%`(zKFC9)s(Y?ZT_jͩ㨢 KNJ cKj,dbC"N!c 7hn?+r֮;Ajl꼹^{ڝQ8~vyb1ZAړNXc`;ڵ0W=ip5 $@#Qd$̫6K4R<6'^9Ն57\{}ْKiNW},I!ywQuT怃N`7$olLI)ǹIMLln8Jnՙы׃'  Y,m܋j J"AͫSmYzUhDT@^ ]@/Z1}7r,V5򝎙@3EbZ:c_&)(l&eԱv=ʫ-m 48&6|?*N|,0lA:Z0q~ 0ss~PI<,Dutd]*Yn!k $H:E)#jF*:hѦ6e=R<V>CdTEX\DLtL$I0Hb!aq$YZioϥ%9\Qmk(>/[ՈrSWT1 =6΂~gR5 OH`Y?8 :TB$*4АG)[r&ߨDs 8Xp(Ű%FRd7J`\.[&ZdӫtgH;݊ kbSW^6jd;"ex(O2RHpuv2NUݜʨ  6)MndKryM\O$dZ8Vtqm*!yxcT}x.ĆA2SIdFB}p!ʢj\쁜e!;ڀE\BzԳ9Ňh{[xNZGpF/:KW"78L{i/KçT(5a/Q4Lz{`—}}>+E ?T`%^ꪣ#T@Z[ٌSGkZ.BgǏvv51~ PrYȇh0|xm+p7mܑ-d;gld횟|2TAiBHJ 5ÄSDh5^ vr1ud_c u\mvrmtbfc^ fuYK\g:-ch36a;h%}Ҽ鷺Ljn`hxēxUQNߧO2rS܂eC"┕ɻ.uVt(V@HS*mxQ rdPvI8TVNV(Vc-Ll([:_kTbMU`-YȆU[ߺ/Qzr`&V薐ݼXvm.;jݫ8'GX΢5 Tj+[uf\?P'3Z&]pV64JW[x4T!cЛSjI4~2O]m JI+JR,e*[jgj\PA7(pѶi#8;./\p4YtiҩhJG3>rJnpx$b%b~p1Jb(NCP}Nx!FIc@\XGf@B@Hzh&AM3ʨ*Z~xZm!L\2݄8&q2%r=OfukFf H?X^|ayZɹ_~Ğ+"Y4F=1PJt1.+e_2}"@|CwN;ЧzgfC;>>7K~jqq0K4+U\RgMiUH:pD}:5ǗfQh H#)79`|Y8Mz=ĀbX79B8G:Zs80fZe*.ܬKbܛua B? kۻ.Ml*z.Q9.ާY2hclƀ/,P4le|A\CHHȢrXCm#8ui'͎/l(dV|e@c!o!C/){&J 6Owa& 71.TqPxz L"' Gߏۍ^77 冴IdXɔ[_VFfSpO!e< x] ٸ+Tu4O] wRjU=\!%pS([KERG5$i.Un# @-W֥z0dEF(hڲ NFɪT٩'$n ډ44ؿ ̀eΘsDG!&g2IS}ΫԜȒɒ SݖJ:TNfRƴIiDzY Ĝx*WK W 9ID .o?4&Uq,`iAjx|Y`b??z,;.7)fWɼcVE~΋)Z.N0}:}.sܦIC>$ld$ %Ѳp7n#AѶp!s{Has<丅PF嗇DצuAKЍz# CXVHZtCa َ(lL CC%hUtt(#̥7X}{.3\"`Tx?I/gF8|.OVx{ÃG$*܈ʐ@2|&Uϟ XXk$+Y!'Dz_,ߘ;\yӳ]YCϐFlUӯʘCO"}gTw <=7O`pfƦ J .r27dr+v4aSBώ.MsY&ʪd._sQ+!H&tuq ASi~|aȔiudy\@0[c9k"-'k-0/BSW;xYN ^q@|㸳5rާhH$Ըym>V{̻͑\wׂ*qS: meRi:PWӝNÔCƬ{~WuY%爐džۙߣ-XSS*z-`%#CO'!։#QUrA}KGmlEA5!S2 5`oW7~QU"A@N8詯ٝ*}qD.[)-\r\Ǎe*Q AAі%w)Jaq-/;i:-2(l!OE(!糁X8ۓLiRhwu3|Z1?E>?5^p5"9gb8ݼv~C@5AҸ+B+Rgs:4sбߠRx»HG9a^G1n %d8oK2YbFzG9VG;?鮎=t¹hrtdAg?YJIp{Q +*U)khS^bx^ȡהXpaИP+˨Em$J :g~Xf&f2?6]c:q mb= %e@-s[?ք Rq.h2_4WjIZ]Picn̬m%fsƢUeBt`"s ;G+ѸNw#IULH7}J%shխ湶ܵj(;gjI۲T\WV}JWl{MHN姸VX*p !;] | ?.2z> 3NmBb 32yw VG& !gDԼZSn46 0qUӜئY`GopeLI`ή-$D8d(d99 매ўޠVM_N vXBW?gA4E!<<@Zq8A!j]uex"֫s"cG>`nUdSPK֓ x9:K˃Gq4+ yu|+H(GHwa[ #~d,pTg@?LPNFqxRs5I?!/JW>+嶆J̵L۹0d$:FT[UӖ+#bw߮U :7[yY<X VO9~ |RKssg&j'0 y_0kb42Dn[^9vOY?Ejэ)6䒞S^qغѨUV]>RJQËRiW}m_w\@?r~VGG@tܘ.wl>x2P6u+][ܕ u\r=v1YovT]{sǜFDܔx}e[Mrܲр032r*"/yx(k,#墇d~!!XyXF[BW3NЃ;SQNXŃrh* {?LLHFߵ|:S2CK0r8;t)F˯hҰqm 8O%7f[|cuqr13usj~Ss^M_PmjԘk,S lG8(GLGoD@ח.BLtgyHƓmK&[pGV6U,:y O&F )da{Dh868Xnp=p{0&UkW, FWթd23<]u)5ˈJ˘Nc+qd8Grxog,S")Fz[znlYQm ѥ7G7-b`2PP>_Z"HJc:% JZ=bҊ X{Z0R=_0?RbP.XwKI{L &"O)'/{Oxq )]TDma#Eȵ;+tۧ4 sDص'{FB0)$)oٱ;BPD[:a \jVzND&㫗D^- BDYc%NN gZ?H`ܾ'CkoiD68L 6YVʘZW_wG]FhߪAD(^tߝjؗdmn'QlXlD-ٻ?"nT.o7JF>\fWuA/Оww̞{o6>HVC!-DM6aΣ>PDAQm[~L*_ VYԲi:!_ҭㄠ}8ev0loA3'?!KO?Boc@ڍ&T:A)fZ+ u, Rel'jb2VkǦ9עN B P:"{<5{Wp[d|U ybZ6}АR|aI VFM@~P!+,CKX?颤qg&H?~=M^p@%Tvǧrӯxv5a^N5>PMǵTn) V=]>5Z2{Vkթ}V#q*HAo;x7Ϋ1brrjP­-sol{HCeNI>q)a;bR|[/ ѹRfZK1f51lfըİ9z%KCOͫ6Hyx6ֶC 5ğ?#wpEYDȴTŚXP^p:Ye韭7+!C8yP{z\DNYZDx?1hNS˥ZV/?\-W@y* (%T1"(z֘RWm8O\q8%>eV[)|ѕ!=cσר Bo㙟/V<~KʕJm]Mqyc>`K-ײUAnDoq#:)OA;u,N,^r5=f T+lB< `Oцʫ+dt ce:45㒈zL ,jx@?b#P8ik?g ,HKE&)L/DEp1pe{1~,|"\1C^1^sw?ܗP=~ RI@V7П?mue71[,VUjʅUJJ(:FJGA=+i)@ Xg}|cQ&ŽsOZxɇttcN>ǙPxVlb_p~ 3짠.P^&~n,R X:&(Y2XxjY` ߋYͳe}8d_ЎQQLL!CʩUTUZ[Ij"uEX*KLB<]QU`ci`ӠdD2u1l'h2/%tG|ϛu@- _[G5줇vfj''Ì;;U;j]-5X^mik:mPG+QZXEZ*aRlEE,MW]S]|nmablN},,&DRʥ]GAc@ vz頇z")JJv퀏|nX5<=}<a<38١,Y|ZEJ{d\?Y[MV>?2|Z}#I-K`#G\O6KS}?EF6x'F{T fio0e G5Onvy|NEgv:?NxӋ+7dGOQDF)9_OjQ. ?'^ ']j=Ze}Ok۩Ү7 % Ty3M1fCR(HJn+X.FBj1amV W#ZOT͔bKU: m2t-[Ǎo hZ KB7;"qϏ5ymN߅nxlyhgg{llHnj?@fKn ߻$4o┄7iBʉýBmӿc'EHʹ&Ns 2{%V/ Wgi_{) `'ӗFt3*3!^2gMhI^P.8?rԊLy1&/$vS62E]>(˱/nv6zy̕|[H)xvm2 /hF8̰r,hwZ'w6t/mѻ,eQ$mLjzpzy(E7ذld.C7ny5n:iɎ7v+ʷhE8o9t%M ^Bū^LEpů«c13ח_#\HF]&>op>sVLdYYg؝r4脾 27@Jaw=\fwOe7}!K[ɓw;#a%eM=j|`\Ͻ9E,yTfGzZ+A/FȚr5Ixnw4)m(1ϯ|ѡ0jJDc?x}9kҵBZ/Ѧ󖏫Kfq rސ#s^8VӉ4ܾss~.sf=()j}Ǟ5.u$W$*_]ġ}6D[I줆X$>K+4 izUDE3QMzsOTDCxDg7]5W]|ZW"$4S2ڮo-ԷguoBU< έu`Z(LD'n_ZMAb= P{G ^ _=>|=T ].Y3i@'%cfB1ޡ :]sdLPaqDb0?@PP_Z64؄;aܦ>ݿ܆q~m?7-24x eP⒚$/=a=J]q&*Qc=?tIVf9X]iNeՏGȠ8F>+3W(#HAD&P|,@J+ U^Wp|+6+=P) kvJ#s@cτ.J,F<#WWdoǭOTUDG/ ̳85QVE' lԢ~xmZ|n:| ?tOtw~lʝb?H jytKH?$-l֮*|ohȉ.5/ [TJYw@[:6Q ;$>_%(;{E_9gNw V*0߄qeÙ7lĦ('>0^@lfZj(.rP.9}:m|?E~]pcd 3D& =!mGܶE{;ij@2K<2n*HhZ(5Pꄳ]ZuBp97s(qD& ~?,n/D5_3ΐvƦo-:~Ռ$@A Œ,_!bs={~49 G߅Q<Q5CHg lgdzfǫJ*IIlHG*2.rNm' ׉OhwwqpTA%Swwon:GJ͊[ԬM?hپ|Q+<줜5_p΢rKJg>.2۞ZB$݌*B@2dth26@a[Rdhu`)fV+Hg@YpKDixk?>@7($ HLdG7TVRzMya|ozpU3G6Oc,72`KBϝ-[RHʂ1лMƍ,AsX<p)Qu;ˢ2IXk<Mk^Kv2]RYp8WX?2_;ʄP;zEh~KLX~p0fVV^DIYvD3+%I`cD`@`*X{)1Uq&݂ :NKN¦*v^Wīce_qNy4j OEՈыnqQΎr#Cg&J82/FQ2 gS`v#㉇_T^dD>қbG O6jc4mxx)mc¨9Cw*oc%ȍz''Hy*Kr^ۀbDDaem{6v2R*a!=9h-@PRͨAZ)UJ=\xѽ!;@8>sa* ̤Q*meC#3c}W4HCFJvB\1dwoeϔv_R,nGT= lqbfAQo$Um@J?.=:&j5̂xԑ:_rFl*;rpxmRS0F-4`84Ԛ͟$ق&"$Ft|OZ7)}#f)\4[)Uqa{E;I]{؉%2(5=MQ=_j՛NS}(SzmgaAr>]>9/>іREK+0N#XQ vr` ƷАTRU M=Wx؞C)4T,Tz5% JXA 7vrE#g;-YŽ]b^d e|2#n%~ˬC5N|_ef;dpTvL<#n \igQ"!7{g2g)r(~ipR1;^e{jc6 "NBWO 0hR6XEMI;5Ħ-ݽCU\).9)ɦi;x[M_2ii<,.8'Ditp+eP.O%Ebh%|L;Q5AoUsQD]`Ɯw@N@3z% x)ZէZ6.Soi XH ޵o 1[0\ܨPZt %FmXQl8+^ȪbD_ }XTʦ&*E Y"AOpK twoN)unFZY}wu `E#^?m/l}ͪw]8VT#J{);:폋:%  Y0\ae͋NPmOtb$.X^JSjO7ӏut? [xߝ*Okm=R }ϊ-QՓRD-XY~م%ɷw_Qŀ΅EQPi녳գ;LJIO'%Ӽ&ܥDY]&{Hk> 6pZ@#5X ^#Zx5 .H;3q 1 rUFU,b/qLEn۪Ūo!Ep/)/dx|sќw@=Ver.~h9ܵ~\j8;h `/"w6KJ6+!]_ b^Sv+Sq_D;!+yZy6H?>CFv30tՄRfӖ6zlaTkThQNjJYX'ha\~pt-4o '\~dDbcĂ x&$&"T"TS7'kDd7woL2.ت#X}T: K;ӂq"ؼe>Hna԰*9Tj ߭ZB҃  Q@鄨9h]0FD&Jz{4*XAmLԡU: g9' N M?5_F1ZRu|# 2] q 3;D*L P"bj`J?2B 3?-7 m8ؘ[0 wCeV7yClN|MREwPwQQ9#*fL'p8{Lm;IǶm۶m۶ѱ;cVǶ:oϨkcy5欄PJEg gGbS8d1EhV`x:j/jNkuA!L%/}_Z* ~7 -`(+kVv~ƀ (+ݠkѾX9IRf@Ox/xDGROY4y@}cG&\cM7{pQ2dO[M#0A7%JE?&b' w,1  Bn;`DGm Fbk󤼺" YdSƸLT?<8KJ(* >'ŎTM~z5k1iSRRj+riҟ`tkC5cXvjem+1}2V^ ,Wh,hI Y8qr yL)1rh/TLfx>67;ԖEM$V=2f3~0`F\LJ)%9C\Pj8m{LrR;>?ct'oBMF$}%P4a8YKPj㰚.ꑼAo"-{v ){ȝl:)&,`fT2fᄒ$t*K/*5YGw ib%A]eCgX.ď*Ķ$P *7g.?HDGxz)} I)jٽhY#Y{8">߆@j0:.4da(Zdύc7k({4쑹FwsɕqЋxj/ȗ1 Tp%+ߡń'xDf=[Y7`wpٛ}*ڈGI~Z@zQ -^dF7_s஑tھ#&Dybn#6=?׆C,5!6 ]ZtS[iM <6 V鱭:T@ҷh0.JXe7BU^=qN"g `:3H 7` 3AZ965xBV3( 'PV}T3U ]G ' 'nEMG RG!lKQDeƚ=XJ ϶Z;#MҤ7M`}``)kJN"7h{}`氄DS!(sm#?˶59lS{*=y(4DLKGfA˷ԊCRnCm׈}Tzg.,+QEpD}Dy g2UTg,erLe}#E9*cڸ ))sڮAe fu*xX|(c1<$PT<<:Co~K]2o-p?JQZR_+@Do$`EpFS )i'E'-޻ ^$Wgbk4$~+(~J";_j TLghUaKo*gwE/"nD5mQQU^#s1tĿ*+ׯL'˴&сXJSWd8Jaѧ]y c[يcYcU,7yQ47g*Ԭ䐡Rb|~iP-ɱEG^UYڟ,ڹOׅCek(^]A|b2G{vʦo[cz;%׏}qu(ΙXYͰ-' XGԤ̄E.@)!-[|,g2u9}  X-b!1L:ӔQ;}JP]]s̺^8\.__":qs-2̤G)+M;Rz<'C9|Qk:-iА @]ʳҜ\(""fhr(ʜ CYYzG4RψRqvW^}~Kr3yQ8ZZ,x Uϰ՛ȟr5v%׮e@H4(>K4іIˌnF۷^ fS9 SR`A~-?2x4>_MwHѿsDsC@jرP- % 2YJzN3é "8(텒` (;z'' O%uשݩP@hͶm] ƍL` 6m@&Uace}jL(=t:^,;/~QPֽWu-r+sR!Wσzgc5XPwbE:kV)];W9c.줋DB!_)etcL-jI~(IjHބ]#EO=|O6@D[^T܊')vefIA&gXa&;p~{"~.g}ދLdzg}Oje~mVr}_RvJRl6$w|δ,2}+D6Ʒ]rXvwN>kl\mo >|MK^pXV;l*$A1\/dnZg_20=4#~#A"̊,ֻq?UUJ;L`[+g1 *IHLZr!8MZp&Ujykl04"?DAo5R$3/hu@d'?]Hpjh{ [x @6$JN^!`F5?R3.鵈O`K=5a%dAi/?*0E3H#98a3_O2ESZBxͯ/__;lmpr-H].}W?83!~&0E)H:QgR/B'uX+TJcDRJ}qko%6Q#SesK.qq(YZmN8olXWz 2_MI:be4yW0B6@⭛򷦂 Z8ծfD? O6; @ҳleI΅&zB,P_Ƙ1/Q rӵ宏e׮OP 4ߟY!!vI CZjKSJW|AUVn*9s:Jf5,Еr"mu޹ N"9v0gѮ>O4W`ūXLp#W;g0=_ydCoٮυ Sc2;.mk }A zmZ%?ZƔxZl-=:iܚF=~LiLx{mvmxJOs4Paq%$$$F0bcc%L㦐}| Mų۝eF)5kMӪY+Zb-Շ]$:GLBw@X6Q:/h]82*$>AB'Yab]qY+>@>s_qqr(΃% 3P/ʗF /`hWdн Q(.H LCj*I<5?̑pr+o `_mN/Ѡ+`N(@' *eX)ɖOd]pS"p +KSlms?VMIʞ_ƿw/War~hk(ߵuX ٥a|/E jev)=kQRn ٻRZR["6p%{kBKſ_,w?Nfzxvz !UHEF%c*bb1+I*,v\v-6%Jsfuvz]Z7|PgP9ߩ{jyjrE#A"ǣO3mq$Psû+X.=ߺ['-77f۞;lq wRFЫ3" nCkY;/Zeޕ"bFv ba =щɜ ]iz7_^vؗhƏ>u=# P+?Ǔ*?cv')3Hˮyj ]>+ٜ雈I2D] e pܖ^ɗ WDcrЊljuN6xܛ%L;zm >\x6v :vgHl!f6A ^F➃To_~ HK_-%m.t 挄5ަ)UE޴C}םCN5MPfe:qm瓥0ܻҼ>DVQ h3:D̤wSw[~w-y7fGZ#[kj(p~J-ώKk6sn*QJK}J&^0?뢫9Žnn 4/Lo{$y6auxqwN[FLrZcfDy;[譵> bz^|)q}lz@$!D"KTH/,=,/r(D1,"KE#4u97P>$KX,9Z CiN[β" YII2m3}i'x;K%i?dRp |,Lޞݾبƞ\S{iRR:0( %Ffc*G'_hon=_B^(oQ\iNKulQDXL=_1L}3VLpawd6-`~q_DUYw!j*JJLF)!PEU,IU%+eNpZE:$s93jP"% 'pegqmgpPP'F?,gb`몳eH ~8du=ZtESI3d" sQ2W R)0LߤYnhZ%F)@j46R*d@wHhntđroZCq]'N2C<hh HmƱSD=\ N՝!ȷ`tVGYf7ތI7 Ig,c*x0_p.L33=|D`d4j[]1L vaqyⱅ86'QFU*V>'d`߽ am1\{"hޠj%hF1C|06?wo׊/ĩXH6Hya$#dBYV{kgJ70\=z`E,QB]!gIxSKȣV]ɸﴬmp gbƢ4 ; zh]H?ch#bH5EbSZ'HAKnUYߕv ȿ}&i i * i0, _3$ qO)qKQ4& kTq) t1խ trn7%U\Vb#sS#oYa`.p(1yYryA}Bqpb0MՁ݁- J+ R2 =$f?𢼲 q,t~xR[??oyxJ^Ե0w"LӒZ'K [ub“ES#j - SHR.%iU+`FA?}g(S}_z2ݮyݨ>Oy磂| 5""4l*W8YU:Y;]_ZZ= YÞ d~XlYl,7e)FPpX[2/wl>. j bدqZ4%#i_g;O-($?hbnR/i6>m=_S؇3cݷ]NCcX>@g/Oa2Zoʥ,C}e+CwzcDF[f.P搜D@JPp ̄Ө<⌴ Ms%AktlByoWNiMgz: m_y[oW:dm5m5~ 8CO <\T'椩+hy nXoh5\X:kx! 5kxCz$dv%l_%=bc%ɏ勍&l?&<2%c3H%iȔBT8d$76RT>'ܗtN%i9% 4!0~ UFFQJi!s̑ӺBφ"pD_ h\z}9eQ\R2I;ztT>'7Qӻؓaja;YFw0 rFabf҉´<ή_Ƽ3% ؤ-dHLI)u,oOٖzVv`+mw{P#x68GΧOT2ܙK:dƞY>ž."IB#d!ct42XOa5 Ck bCvCt&E?p;^RGDD`2{ 8L4C R MxFsמn&;.50#0U{wp+6/֠iuEt/ Ɖ$gي=e04wlJbJbAr=,!Nݘ]$b  N*b N%dgF؍h7#O ؿL&mƯd>n%#4voY[ *pxi!XdS/R))P"P5ԑ5v y!WњާKPc!pN0 :X>Zxu[}~4ik9?!Pja. J;Kz>oIKȉqم)Qv'ʗ<cRQsv=3cgx1pCwN6wҧ 1gZON1ӄglDQ2WalI@UX+wN2?nÀѪuѰ^ݐo%(N;8 ?fҧ$, ?p mkL* mG҅Fq\^ S3dWv&g#A!cRuZ?UOsCZ0uDb^hDc/ܔCa (\g.jdn+_WIm͛@V1p kEtǢTw7FSD;pHk*R1dNVԂI,sN,>s]5S;YX —O?l'@-kK\/"OJ%Im6Q3,F:V^ÜL Ƕls{|‹6ڮ2=N*{D|?X|Y0Үg!k~DZ{@2 ~} VN!,~u&Qwd9,b*4Eb bY_uY-AU;֛ȑ#s:#;0ٟpj 3}}KpW5-RC"YGiJ` Rf2b VivSJ'\҄9@qr^fGmN%Ñ ˹ m*@Ki@]c2g @I o٩66}fvim/_5ֻX7iVã;ޠq;^(Ia,,kh 1…6mK\xs U$#M=j\!Q&OͶ NU k72N`%RU9v)GˇşV^iנn~?p/K} +sJ<$2^ ](dNWpCIjC2{M-n旲PgIL6*NTŬۜ۞&0*;|AX% / E|$.Né:S\(uѲO%QZϗbYO#nw|Yt-gejDqk7s-t3*H2_ ƸΓvwru rـܹPMJq͠Z }ғঝ3@|F՛T/߆mgho1tȠW?#~OiU6*4Uem`wu\>ns<>SFЇ(&Ҩs Te}sxJ+ 9L6@m!=`L6AX{pO_Ǚ fP~k&کYɛT;ۉYyTƫ= ,?K4l?SbM7{7݋ZyN3WgسR?/(I{G}}% ſ?D&S=a2}sk~`?e3b @4Sڜz=W/eovn> jt([uI_U, 2sK؛Hs%ܚDžЉt,m,n+,ٳ0n6ǖ&5 V7͋JOENUX`4y-﮾FB t{Moj[M7@DDBW-iPoxˏG7oSbܸ!ȚQm zRM (7K14 %P :33ᩬO(Ŧ i҉NGx8AYpg\h6sDͪy5Zm[ ŏٓ ì_RW{Q@ld&7Ìc^<5LÚS%k79z kGR^rٿ N'1K9)0 dD_پԃp\)TԹ9FUe2ψkB${[~[<={kFD\+oA2:w_:6ԡ̪q &DNVPafQv5v/*Y` ( i+B^۰|z>z'|\< $jn18ZkҌ8'1s1QEp <-;6Jhxuy{I: 6jsHw%Q1q,1oqYei;\^K݅ ymR7ݳKo~8B ugiPr.h |cS^[ S+PŕM7|}^[O~ 1`%U@#'^JTRq;X MY}WчÖSǘ@| mS`L$v&r!&]J 1)8o|5\R0ʥW2}3iR_0Uː#M8.1yNtAMOW_òt?8-W0#6.bmnzKv(z7+-#v$mH'17Rָ˰- +V|j13_9kuLZL{17Ibx۟J ={DsXY6m_:@.Ai攢E7#&" Q[mU&./J /J: ]Fɮ?fwER]K";Ɓyo,:B\H"_M8/&<A #_ l-ei["b؊\—yv1*!1@pϲ"D8&2 Y l= BK3Y 8;Q"Ә#B5@[8"n6~x:"c3%fԃU^ wG]lqL pqpP_{yQ̈a^4? ^A voi|%oE]n"y bueC#.ss8SڙRVWĸ?#BB1/CI#F!FXX—WS@^r^dz!T¬+8BI0e 3Z|irk8Y @pcE [MU˗HPSy7R^p! ~/ -otk~Yd+/,P=5cP_FphoXtҺD6E'aPfH|uWJxPxo>o"E}N9$}7,bhyV)%Ԥh:3(^v^ ~.L$%>b 0sgo:DD;ZzV.F*lwͶx;N+O[-k8p;Ud:VW+MS6A{u5y_C}>g|ΗNQ4uR0.4`nfǜ+AVnaY8iuqu6bsBZN[m :SMީ诐{V" }#iϩMwsxA!4|~GMZ";,r.Z܋$0;}ToH&<[ NSh%o8?YJPoC ~H[燠uCP\_R%m4_q^G2dwD'Y4Y+ԭjdjńeEɓ sŧ=,sӛ滮'7 -+ci~LlOymA.:OJgj%3,JWrŔ%LײXPx~ľi[/GY`ȥRɷBNj$?ɓ987pJ>q'aU5o=j4Ph34lg.QԄ$PK:Ό5ۼGi[mG@OVvB_ll&;WXe14"HBά/\LHcF^at Wq'``Fh}31<$uaػ]SǢc_.AJ!]0Y)k焒 76ǫ(_L:ZI[B%YILsכ=xp)[QMeNbE-4KF0-Q ּꫲV ԉD+ ;?ŊT}"ltEyk Wp|U&l0,`1ozD vÊ撘,bbj>!FH=+oJ3(h2d)>_R--!=X+n Zb:oi[/ZM#W]ꌃGH:(6{)Hr5i6YLU.+Uii%OB5\"3BE;RDU>Nd .G\AES+G| J]it[5c!?ᓽb2)#Օ)QoYA ŸGz,*̿a{^*Xy0J]e + ik?)9l&u"ɵƻIe d|K2[LW10FHA}KodkX>)GO2Dh*ُ[X=Gh.V bZϙ)ZV<l)>ak6ې7a(O:Q ޙӦN_1zyNw (ۙ'93h^ǵDy*ϒ Ūwd##T14\'dOΙ)!;E^$"Y)]n+ 8'z;u>U?Qogch3k$7+'U_KRuAM+5[ 7)+J!\{H ^yE^0 ?lʔ̬?J[JB6/L6,FiW; 0$d/:Vq@ U;4#ċEq2"E<ÃPEa2%T^L8+õ`TH ?ɎL!HKhSog6Q@=k:#'yϹS&/ʼnMn[k]V:UqѮ],eX[p5Cbk͢2L'tԏx LEa^q˕B V:хv7zLk[4ڼ0,1?Ebg5"bzmnS7^J[0X5JR-Z# >i]ؘ˲>a~B xXM \(*d@,\_U׬^<촩>XN5%MJHXdQ:AMCjh!򅒚ֻݎi2s%Mo{"HTTv5hP܃GY郧2EC3ztk@'O\/kX#6 ]{0S Eڴj ୩٠_[|>tbVFU @ܠ/M]~s3KAhNTgO'nD3܄ZD-TX.,Dˍ@ꢜxCj4>^#R;̟"Tv*Y|DW4aO cϲSЕƊBVf&1̃gڻvF{/X\-AtKL+T(vkݙ=@B⊿b6Xi֣6J`R9-ke}"Bƴi5xR1®H%𘎗ϷHW$LP9S1 [~ с69b3١%3.6SK/χkO(%_A!A5# 5N,U|ݘNLCUget*G܁KBFX<:nױ[Z> &mnغ5h/7UU,; ]TeB\2,5!K&0ͼr: 1Jxٻ_v{ ܠAQ637zf>vu0n\OpD%rCLLɺݢ7u 2{谇 ] M}>2\'oթ-2{xJ(S9~5f 9-DEܽO{&3zwgt|gj;߾R?R!:e\SY: \HBcy8g?AHF>- ȯ1x#Ɛ*Mt1qs?xe=/`-RJW =\kį4V-fG;4ة SBdqC_Mܖb}S6sZJu瀎fv=c(4^(܂u/lzhu#q1:'K|cdvN\}GfںZ1ѲL,$ieln)A埈G2k+ijچWDN&QVL|׎Eۖ@иM˖5o*8fܘL;+ca ١<('W.&.ä 1;Zt1Gnk%H1sgCʡȬ0;M'pBܪ^mlSq@p*h 6Ak#/"BsAӯPHF+/+YJll yO~ }m'dX)ĉFt{{X}`B^<=݊SӤYQ1rSqv.-탢 +,zK͡Hp*ɜ_Z.$[Fې8)$q*Bw$Mwָ!RX $^|&ϓ*FzP5UK W/h!y=$ xL;4򃑉tz 'DO\*D~!Pp+y ƣ @C8[Yg<3a^ (*վԶLo-n=A"@=vo}bϾ Mlp\Jpvx}L~Áh qwؕlX\+>3;,t65cu(96v@U!u:?ؼPt_:cQTfBš&MP^ݒAQ@'GudHG0[@ 7 pkmCjYL=u^: 5.l()Kȝ[1J\N@]U-RO]e4j?jny2+u]9?i1oJbj.=aɪqm ͨ\gΝ , .:Pu:Y;mǢ%?Xe}H2@5:Ka;u;ނGOরuyd,v/a@;C6|8xCS$BrBt!'uN` ;ܭ=K]cb෈6~r8@5ڀܛ(fHx.> %j8jL A@-*}Z;V+x5los1⍈e$tZ?W3O/1QZxO|cdPԋD%ʯim.ZF>-7qM+\|AX_ uQlM[_.ʢ[z#~!LdPҼ.!5|k hܞ;J1I> 漪'zj^ se}'h;9s06mauŚ'ݺ sQ %| j'FO^9YFRrmH{ I 3hp)/!c2 M{̆&Upjh8Z%3.pc]m⒲1ّrP&`ѽ[lXx]bt4 q4 r,m=|:B+5B xgj~qᢵg?ޑIC֔l33G uApF \d\^u$Ad''Wܷy͋oJr$a:\}(~6 .u>|PPlA[K¼`AOBAAYH'lCw>o1̃1{@=V`" URX46r3;m7x3a[B_Ʈf$Uϐɂt0TU [1G3(mxmc#F$iF/c'`5XGxI 'He54:2eyG?ҒRzɷ'hcґzhCu$Rh.4m'U ΁Up`8B~ {r?OB=4ɇVCPð悸9|DL~bU2FFW9P݈!²6Spa|Ge {skY=kUxsn^c`Vo|ꏵeцYOzrq AU閰 ψPCâF-($Lf"g%ǤHT$jV۳:2y _Ļ^4tNH' r4ʜv}& o0o{br)b|j1% !je3/mGb݌1qw29R@><(Kh4DF&͔K {hU]'τJ@P:kn 9wXGXcDV7^y../(*pmoDWQZe0K)h6 c$J[ƃL@BJT Й-z̔m驛mmt:m kT3Ipf}z,jY-uB q_W17 =A-t"Cci< xϏJ:[8Mhύzy}Gz)]X2u}j6z "E[p#]!j$%†J5?ʹ0D#@6k6NܿdI\ 7R@I&'&%1nTmpr-e)n, <Juޞ6YiymZѰE! =<:4XpÖ=5 ]I`+NDK |DGۆ1/ifO==dU$eD-{Vͯм`BEޫQ}oZv=:%UB8*|YD- hM>+ow S#NX2V5 SC$sP7 S#٦OEb 7E $ 'ag5U\Ґm ^9DAmᎴ;lB{2jnJxluccOs3#'a !o>7)1`h_Yy} Xʉ2UJKB#wyW旈4!xgُ\k-)%Ll.w6. L\c{~W?Ǵt2]45=lîj:YàlثQײI*bˎ$53d`)y99kNi cl_5z+N9/أ$ ]v yR+myJ>.U cU'3Hْ%mi/>~ok"^$ߒG?h!N5Z5c}~|Rd/X}{c(°X2/s,#S9؝!)fCطo6eq-pF?4ԵGf`^UvV̬ˋ-G`~؅)D-8~[bv#hMۙ]V3"aqZ+Im>aA Vm;ijk5oV_t,Ɠk$ڲz;s֩{6O}Y%&p -m6_wNՎ:e=j\lZ EK&eb {7ӭswĤvC~E]GZf0x!t GO:,nmT+72kV;_6(\?GS=¦\'ۊUT8bV&U#m+ηKV,~ߎEw~.Y_.DƟXCYRQN"wGLv;`'q'ɁoSQ>f/2m>+hրM]2y|Uu#(s'(hGCcC؋ W^ERn YupXEVmy͔ Xl8ۻ !VbtEZ7WX`4HmMnG;?H&SD4 X9VLI0疚3 B$p Ekr =K5~bᗃK-U 'l_$O)`}wsjxEcbהW)@|sP1 fcydGST;c~XWΩ൮,jtkor?m=܅}`P?nO<+ƕA`K"R¡f6"U2F[,EC.  #V!Bա]oҩ=@sHwCbNeMȴ{Z=N󑓣+f[i_>?5g_.֕OC=7z >{ˈzFR~Ga-\)!1-W!`ta{0T&ffB^'hrC 20 /)azf.mŇ'qs_9g_rSԑ֚(NZ9V䷞{"p) Bvbk{ q55=K{e+ޝ~c,'HpIcR:|Ukjܓ:Q3612xlP$ tޠK;Bּ=+e|}v+ќ+*2w͉L e*JC,|SA& I .L=x̌u@~+t3qVScHG'G''{NCd#ZS@Ru9{hBxXs4{_{ ,Jl|Yk'ZaL'_T6UB^ćxU¸//da Ɂ{:e>ТjxZʎľ}$i 0%j3ʏrrbǣΥ' 8Vg`?@TQъ/®7r(]h/v Uz$pL+X kҁ( Ѹ3~,#fܷ-Rjn|e1IY76q|`5\2ʥ-9g"s-ѢOk>EQQM~fŁ|,-,6{¸66KDeEUxe㹭tI3Cs粊۸cjNYY}7q486>q:8T*%IIgK<\Wbp.vҥE!y?Ѹx%biTG˪Z 0K\d0g|leUU@V NnO6&$D f4 ߀cg }}6a 8 30-C| 0w$DB@M`o+w3\}) E] !E 0]~׮Ef;A29{YMo@={g빏B2gA(|*;Ў.D(@Mi'D_KD>Jϓ_?iָ[~eeOBýӛ^pd/^^ fjl_Y4c^72KG4~ XNƭ4GFZ{˕tB.COǼ [ Y$ n.`$#v>{ ji~ k C|6{|xGP)]7dmT7q)YPVN"ۅT+4dҌ eOۋCӵ @ܢںEǑR>mLֲ}kO0]jťD@-=fhuSM̈́?Wd9vr^(Q{lhP VB=Wb@m~JmQԬazIڙ0וmLOVu=ȉ[s2+YR|g0F5uC[:뗍ڗ0nڙ?صseG j]dv,&$YMX4w̮iUҷx$1qX2ӑfKݛ|Nm{* t~< m=g|¤/>QGa뼋)lpqԻo3YVYӐ+")v,2v˂ XцȂ]Rؿ6,6Z [!َeu m7g2dR2 f#NZ゘>g5yk>!sc+Vf>bY?wKh{ kHj`(R6zg^2 Jxw̚;hܷ T7:/SYVyٴ"! w wf'=(j]t 6M rَ}LJ.]:rˏwXL26[~# Ý Gzb/4vׇl<.BǷR.tWBcuw6+!})VƐ5Vzq:z̵~y6~E^4qcu֑];[6!RSsK;[N)nsjTLoh8Kaj]zJ*#=%r\&6n-MTsڂFKTșa}A"?}~ucxa2tv 3?zvx|=!a<=T.\1 2ղ(FBe۬Yy8~WHБLr]&1Yx={8죠7H 19 =|A=}QMK7#.2+e"иT &1`]؄?N"WNF7Fe̫~ײG Ziw<ɣDpwJGI^xIwSn!goVIukV<`da&brbx6dM4Pc{i6oV2Ƞ( O%"u>fj>Xh,,rKhD f\IIhl-7G8G1 J;G{vj$ E AHJ!cݷx@$nU3;Ѣ Y4 ^]"<H;:fA;Uz|Ɋg-{9-:ڙVz?'G0 Y3b`3fu4Ax 6p4"iP[z-̀WV{`Y!ݏd ^.$7eNz]xx N0^5 y51S^r,7 k:v8gXoyx ]g-0ߟk k@7n:B7;XF'e㶐ÏMKX}7:}uW{h&~D25b>U^k4=A' j`$BRQԁ_z`-Si*okv/1Pzr@4"L?[Z i&G.3>@X bYy#H2o:Kp}"ePķX?q£0T!*'rU4,: oݿP":1N9dx`GjH*f0';39N$L<&V%JAO0i:6Y?oIZ~x]RfXc#"QmK*f('/c1uU$V>i'B17gep TJD C iȕ-oS͈Oe>w*>wy==9$VO^~^9>O|_ P^А:r5A+$WVd{$'ȮАؠ6ŕT$6&dD)L 6pQU'NiF]Cd-QmˎoGPT#k.jb. _;ÞÞX_T{ay}v"ĆXý/Glv~eIYCVU@}9Bc1ݸ0S}Fl w@Z=ʀt482 p05VD^u RZip1 n Y`Gz2)Ud* Z hG:.F$Ӛ}=u%4_>f?Wa\hiAw#_%eWOxY0سΠ*Pp@2U:r=/:2CDvQ1ŀ1XxY&PCQִE.8@),r')!wn}c!OjIļpD6lL:90t;n.:93H3& on̨0?_9np>pHubHH"᫤D$DD:BU prJs 6ڊ(eO16O]60ѻWT%P=_[2XLa(dd B1Emi}yd|,, cH#aiG|Z`\ iݺݻ}o;<[`;ol]7!gչܮ$M]Lݢ$2$;ɩ6)]s$/΀Zh݀!jN/qKmS⋏>p'<'hw-Tܮ> cTy/+,i%¨>̤]3^G%[u1Vc"+iiI'GA>$\d^Rse\96MJyR.zж);͸6L+,:';'G {l^ `aq09u>P@zV9v>!!PPBL ,~Hy,u7t "#34Dʅv"_ӟ >h=^lh[$g|z~sf3))%j22voY,+-WW0BJY;NeCS~@DD)aalSE%h*q(_?pVQYz }rPX_ƭ2[~j0_XNlC&#^,|DS66)Bj3ƂHA6ImqY Lʚ+DLCٰ>]uoztx,dlF#RDlbf5`WT#CShKַ j']&ޖ/V+rbD#ףAhI3~R0PF] :Eci2oŜj$(@fHU&]LC; +dIța!S!$f'h!a;t-8 (ơJraDO-,*Fkb7! e2Qɘc+ dJ\ZX+Sn<Z(:ũTQDNxlxb#2^[/[^Jn/߅@AaOfvQn #a:9vق PB|v%6l#l%܍E#ė {lM J4ĵ@NKGI}Y*gD,n]_ fW<`$ yGovp4 0oJڍ`֙P͜uvNdA x]83L8;pny@r΃+b!7C~ rեe@kfo+,) qW Gq/A1zyTT'|^Fϻ4TPfG YmB ~XkU4ɢL[5$#B\ZaC@PP~|#`')]x3#ZX3%yeD W4 H7w mlEW:N6,؞lX0mǺdf,}Tqk ] ZT2py\䂅-S-?k(Jm+h؞H4}YS $$GO5'cR*n%D,ۮZLiII:⩍4^Ķ&2Ȭ*r`~֑)M!Xl8 diGX[$13BL`B q3Bw'Cxd+[Y7}c5n>'ziB,T?Z%KR@_W#I\qstqg{AWW vJYMX) ߃Xpn\(Xu,l|!os$Rb܌ͳzv4qgA&iH@Yfe"'Hb28PvjD, $ӽLd͇R꧿ˣXvFz74G\tQ}uKdS*\J y%fs Ӻ"dT\LP}8:gz3|?ᩐHSMg)Jt *nbUQPv (F-!Q>Q!0C!Syl(0+\wz9IYx\M<) 8Xc|ՑCTX# e} 腌̟D %5o߾SgP\Pv.X;֬e8B 4e?/]3 3ⷒ]0y8"d')u[r1j>uy &r>rܮuэ1ݣgjVYL&&d8w 6SjҔaa^tXEb'qdpHz;X+73)C7*0+O)"c ;fK92&4&RnTiMǭԳsof:HTrkpq:EZcna>BFDT68ۑ2jT\ ã"U;~=avX_ڽFcUlF3=^I#b =:UJ~q(/,3 yrqΉ;&+2ӝsWX\LZ@0d$ibɨ9D"{5Qel*qB{K 388єE{f5 F6m^X&;G#XlBhD19ϣdsk{H%=/ F5K@.nⳡ ?Fi<-tDEGk0 != >8vG H?ǦU5ࢰWğ<M6J8x4Sd8FO {4r4:i%(;,/Dn%k1!O1tYNr\p  "{_~cjO,P0}ie#97Ybb[6[/熒C-BUyYuh%WdG7\p| ~~oms}OOv\w=o Ѽ9bM~UC8{̾[8m۶tlNN:ݱQǶm۶>nU֭kWm~s9{ͱPKnZ}R5͉\(sN/mK4Vi0P5^?)EhK;^E(,ZJ,Hw0e[jmu(Cbʞ'K)Kva}roD;1ݾJDh .{+4)s[2RChvRDhޖ3}C;e2K2.6`fw@ym`g\ Vq@K)ǎ&:Ȏ#sm!=s*DfaU<Ҧ &9>=:(=x[do5Ŗe4` Mj!Κ<XZ-b(l%?ۍcn`nf)O%iU!G֯%+ݮ j1_/edN)O.S̉.t:NcRҔΫ>#JY a08grQnFl[bnA,qҘխ8aM`l'煫Y{Ne`JJI'sp5; ނ #^J4Eb*"A=*+ F=Ҵ))D2Tai׻%)V(C0(Grh5/Ԑ%KvȋHIG !B A"4a犂:H`%{б ~p4]gJKw?3 o! o*Zi=,ø@;l7ȉtaaø7t[Ay;ly.ͧ?A?Di7r~qC$5u{02*m3AL8l#ؔR:IDݦɲꀨNr94yGX (1 ֋ڗp:L4E(qtoV)rMQ%4^cյHIj$ڛt]9u8v27H58k4`> /wCiYqd#5uE2 "{Lb%<|q Ed!1Jp>NQwrޚ5u6E,yLeZ:>z_.il@w|RH/TKIs#_+⻘^ͯۖ0hL ""BGϧL!L& X khɊyԵr? #ԧ{^X!PXd5(Xd IPuƾ/lC䪑YHsY2훜"NRZ Z.;->ڕhImJ?ֿkD쿭_-yb Ё]MZVMWxtA]UT -{_\Mew_ ܬ{3-W yr|P9-j ]4M5m޺Tma"bqV{UE*U*7+FaЩuAGhӉl~_ϓzґДZw|-޵gsӨirBCB[wd}t~ُ&sAaqBn=ǣd(:p~N'НgNH] s/w|Sx.B%tYL܋cK[a o6fs~eT af+ex Q+g|6r*l2)la2lR;lG?>33&窰H&.'没RD̬ӎzҎD!0/1z0TR1z11DA:S{ȬMSḘR"X^1>wRSŭCdhQi6,R,ly!hH1*zpH]r'KXK Wl$H$bc`K71pG g;+[l;3e;20Hs ;r Z yja/Z0db788r +f2EFv,+>6\RasXgdUɊ f|羿`%6 RLkԀ=ۀgEހrUyۀeԀ1u>@@΍рŕUҀ˭3Ӏ͵W*ś ׀{ T⌰p@0;R|-)m2L9@({C/Ƹ7Rc,p7f}2ړ; 5-=PWt ~cwcin#&${j5/]j5=j)7)[r3"O0j73}!7E131g3N<1}5![fgx UH 髗rT 9BzS5g9rJFA}6#$[Ŝ =G$r]8t|jՑe!;ZW&@whBSͻ-k-o^ڑ*9Z}nZ^RcɜWEKwEGfOuD3;$v]Wǵj@ŤbIuvk|ǨjR"O&h*VP]`g[#jNє19CBgV U{,$yܟV Y{lN\V?hkԜ%rVsܶk,vO_ Yobk]c{89[99>H"2?1J6YY=ᨄˊ/0bkuX d?[\cz \9mD`h˒( j]k5Y)b倄Ϣ/I6JZf-)C/鶺_mXeLƝ理M!ZD$M8.jٟɲgD樗{w'V=.TYpx+cr>MJVRxOs~ PNd_1F Mq׫49SesU^)xL-߱m*4N>|/^$ =̿L[733?__Ҷͼ"ڗ}"V5]" OBӭ)Xh^NfhKҬ Rc[Cзp| mj}ka}w] ~*ZhH"HךaLi_ }FNc _Y+v6OU1nî^0w0%heTHdq^pݒ&/Ӟ?Kto,]6FO6tsp!\(=?TO}U`y?ɫ2i1/{.J/ԦQ(FQ blPd=ֿuڔw "ՠ`%)P:Ly_,a~2x6,xDXs ȆIr(F>*_G !r@Bex,C v2።KAcؔF.x\+P bLE1Skig{V/α {'*K ܨ@LTDzBƩ@%ULo/I=dt;rJCCk4ݿ wrȖ:@E:Axߙ/-oSj=.3V**m+ț ;!Gy-YxHacLی 0ő9˲绶 ÷&;%ʙN}Î9rRqiZsDWQ&Hl7\9IU$J''ã @$oz{3M'"*"n&ed2QE@4*Wo W؀pu Wn?{Agw{9~e[~ C/{ +@R6qG]vRoف !R@M[I'b" H35MP>S<`]J7i)J[o݅D"WY9덌5n_x۰40."(D_[{ľqaOvh '$e$?*Qz`dX;1<0zjbaԓdvtN3"Q_5*v<(1LP;=$Nu|ݜ(>#\83XOhZ14KlG[f(L@ADq(8)_obYZ7z+B'ݕL16{cY2[9*޲ ?ZάxEƛdZ`mtU,,\T鴪 0,M]Rh([*y՝<)4!Xm>EI(hAh~ī ,6Ffj.; b͒nǸXMPnˡkѪPH-*U\K RٿY90̥M<+ԩ6>&-5ye="GV3"`ԭDwb2F ةk<\{ ϿZ 㲈4-+ ^!`@߫~ z}K[Pf1ZT3LsN<2Vxҧh~x\Lm:M NH !vxxɔ4\Qx\#\XG@=6+xXpapXOȩDFxDsFnB33upކP L2tRFunyΨ p&+P|as뽗:? @zFzB :Рw3vuF} HO=Pϖ$F™Ks?{-Mw|[c_2@45KsE iϑj& bF~ᓛTCNWu+P\?D"H}DH} G ele~^#&XM >y-@hޓAm_zA`1b=`$cs!W'-Rv#HlJwJΙq PŽ=w J[Fx`I':%!l̩n|q=!ٳ0ߍk3űS~!Gfnj~f}g($ZOEȸ؉N5 ~]R`I\tgRєN. +̓5Hk6}`8=㉠WVW ߫Ake>Gaee*jvC}\hF,Z.ɐ2ʷĚ6ߋK@g!~2P4(~Z*;xXY|2aah3A,"24U%$ EǬ x+y.gHzgMZgCt]dzi:{숑>nҰ;CIqVj ?( Bޠ,-JACb7q9Or+G!Unռ=YӀMwr^cGe<ppQfI+x6?QbVT^?Z;!+fbk@` ] n&-0&w*g%!6`ZT>ֽjY_ KzDUI2)|f"umIaL{pkus1m7A\N)9b굯78U8sB&axjϡqҦ} }:*?MQPgjaybgv+?AoS}^ }RɪA8Gkr8@7|P eN$,E]B"Fu**3!"в#N# / ML6FUٔBpCC] 8ޒ?)PatT⻐E*"M q M7~Sq}Xjn7#)l+xjε̙p_j٧gHEX~,[:嘮7I 𭶟1@4I<1фvI% S{Y']K=Y@ཏ|wY6Mډn s=#faX4mo$+/[78W>]dXbg~FH4 HLY4Kxc/%KGD70/SP `01tIUreI,+l<00`E{#;| cjm<2k}chylg!߮#QOkI^5wET80OʠnAJcHğ(Z4.?(; 7E0BMcoK{rڙ^O9e`7`3pUhK|-!EF]՘ bur/_=7 = /Zhف tv;y7QL77i[=ݖ;Ac{i /~Q;=:?]!͍_h{#l#МhV9H1R^)1 w)+X+BaZ5ԧ81pgyRy1AA A\nw ѷ᪎Rzp]󣖁677z n{amw\{$7p:W&Z@t<# 2UQ!l%ȬսI,TH5[ȃiY~I apff(-$| K~,P8l}ԲQ\+0%]uOPJvPZj%E@¬?\H}'U}[5u8+% 4]C SI5RIX2/c\9SYAon҅e<ȫ 7L7CZ3 ^r1}vAcP X@Z &o!"onAj&&/L(Uv~u : ^.#9 UT_s@  >"ϝ9"lh8Wh8]دG%pѹB;s-xU ) ;YZ:Uv2Ҫ @C- LxAayAig d6:t|@DĠXn@ A^Ae{b-AїTÑVhbyX[{iD`W`asR5Ͽ,ΰ4QtkQC?Q fWJ@AXYuzUr0#Τ)|B,9l|׊}\;%`x8f WHJ X wPe2D6S {W4(SLpb2SDǼ[}2u%k_WҁPrv*4&9fِn.rg}j9OWF\9Y3D'id(/ \ BT+Z v{.-zU܃8~T9W)d[k[2(dϲ֝.nJ-QcEizךO,F6I)39W6QZimB-G.햨nh O8˟.G>݋'2fޝ t!=X̪9ZtZ-uw(Q%)T?T1Ikw6Ӹ_WzH37E =c5xHI pEq &qA h.2ʳayІ H:JF$1SR˲QЍ2+p⏌z1eK&'nN_H"_eYh1r:vи/c=,)},m-~dA15S-1Q3N)U$.l4Do@Jx9Vq@/>o->q0*ХHlZ +,7usRki j}!U`X>XEbΜ:~Qc ŤfUmOW'S ~J4:7FM94XW!tHLBP7#`OI'a ȚyB"(x2^ʈSeR3 wɄ5gm:$~,JâHphz +AXa&X)u;^GrȰe71P_\hD[AE _l>;~x>&{z'#ƪ*G8~ VAm] u`OLבBr@N:*GwZIj\^8'`U@r_'ȓHaԥЧAr@j"gC ߇W<9ܧB5+sDg;T^{ 4"IpVt et c3laC%7z=   8O-7T0HmG L X%X*P*PAtGRtg"~ز3MttxHOUx|~3EQA~>urp KnB!Xx>4S"{қ'0P /X!rSww|?M LE!p(a3vY}'pNZ% R>Y$hv$ʃbmY뤱E{05kfhOsy]EtBK|m =c|r|5>F甖f!iGuq-$x@{K⮁A vMUIՉqwyhP]8Roz$yeh9^eH$-kvX8Z@BuC&>//cM:#}wp$G=Ug/KΓXXnkP+!:望a `(3$XPac}!:F6 tۚr0w8:g yl FOяWi!T1UΫM.[ˑ2O2]Jşr2x!JUE GWZ೟Y+?wQpx^@-˴Vj qj.!>@7fhTUVo4P=uEyUT]ՂqJP])mbNhK`OX _`:͇%~ElAF D#nه\J V3>f[8Gyq& XE-h$F<@0?IA3gV_Q7(7H0t 9$4V^&)z;6MEhFs#ȉmG"1.t &0A~莵Wxw!LIexM hfQm_KI즈Y9ŅIAwmrfݐ=#. qALH;WlJ>)@fv$zöëG$B_TӀX5dTW҄H0#+s "?"12$bB}!NI):;n~J# Mtd6w2#֯l0iHKӓO^WTApdyϮf4μKt[iA\zqZ`/%ؾd0DopD>.XO/W5[3{s'pI@`$J@0 EHT(Y!~SS`bj`aSy3@ҹWKSNLXZ+@  ,) UՄ7@7fT(9̫}Z4f2-2K[k6VN֓qY'SaD%(cf.gyB77rJ!<ɽ9;n|`ޓ.[]#'jPjnSQA38jjH49Xw` a]tv:m+Bd4ttZB@Hz]6v:JPXٿ=nwt윱*h?{KKnڀ ajմC&rYQ9$A$؈[ޗ^~ {䔩׎7h[r|a\uYuB$>r2T/R#T7m~oId ?,1"‘:j6O~E'Lvljwl((B&_ܑL8qa:V1%Ppc> י0t3gsUiۖ>y]ipa=?a|S(G#6>'4yo%=n M(mA!lVo0׺{h0Uˇv>6CFڲhF;n!h9YTY+m1 !Nm%$ oA8'7F3ΦgLM:j'joi Z=T"A1ݹxTcGR^%h 9^AW[guhyx;A-87iM/ ~upYK4)qeVz;kGIHki. ˳f 8g+\ @8ªFi lJ3W~MwYΔAR\S`UoNvMFv~ eqJ YW5US䲕*- Er${3A F:o{3p2FOpj R|ۉǎwzZ)sl2N%[TB9jOr4%Q[EljԜӋ$m.t) WjJw7CgLȌ ;Hs:z5Tmz+f508Xfe fv 3˽JT;+TJpX4+G†t'uq& ;TsCsi8  jt3ň}&tkMh^,#|tk93Stb|˫4E >b.8P h |)#[ Oa汢3y] JC$du誨.K.c瀽e֦ D5m#oh'ŨFKWEA)KL HI}<~SJYx\ jI}j=3|扑We~L_1 b ֌OFGmI|ntG|%Nx]@ҪUlf'P<9ɡL_-qQB%aIQOԯ(ZVyKo1#Bs\;6FsX<GڙC}q|{(ER"d+k}KJ1RY*Jʞ6TJd)$Go<}>~|{{qWkZwϏ}GADRkj|ku6-d?*ݟtL{GFagM܆ ;֪%d']Y+iܧr /<݄K@^Tť*G,]jt){J~V3*b E[`fs=lk9#YGa/mT*g9UjG9QZKsV_mix3v2غ)tIBT\\q{A\죭ުqnleU|/;{\<菶9Nfxo{&PzD@˭ag$( hopZv MVh[ߠ;aqaRyvN垸%/Sk ubFyW%2|8>wuJ+56eKԐۖWE 79o^shEE#ٮcqd}FޚY~hRO~mF.-%.sQN'%Kj=Qf^d5G9rrЏ5n2Ş[e?hc֞5ݡ7"yrN1 ezPdoϙ}ϴ1;GseSI= 4/j{@STdv̪O0bLd62ynsqfw #J"93XO.ݯ9U7墡}Uoj==>S^s~[{a^K$GG}Xrz` 1;B%Zj֍rm yrHp9xC;. .&m!}{'%-Ѱjb?#͆h4|d&-i'z(Uټqp;z?8kf=s(6Lnv~?wPJy9m,)82Vqg qZZ<\bc@Rݹ+" >oU?&.8IU؜Y$)g92Ș=IkjMu jpjp:v»6k+0etnR Ek̗fh>&ͤ27PȽ:C*ӕlUMEsvXާQ#oȚJ"6P-]YqY޽Eoa!U'i6#z 6~%\*GcԺe+9^,,<ڂIt5oWwnnyleO^M%B2n6w;b/VjJŴuƳh&)0٨l\ꚰn@w GXx|8wQ6^[{7%RBjD~ q *䳋}!<(`S5̎Y)T>׵2߼L^r~͚4s¬sWE{㝊/Kxj3uHD'6I<2_1Kȉub&FT]nU򄑶ck2;4_ hdz z%eG^!6LG*+b _3:&Ͳ UdW=8an;c)לTM((wፓ^Kv\Wsw5s~zB+M |-REmYv} O*ص E+oxpRGsDžz|q߫}3"vWj;N,-yKs6 D5lύ:w6X1Lm9vmy%"$ϗn6{\ekcGK78)>k|ͽ{B%T\aSFMƉf%l`>d1˚m!-t@UQFxD1[Gx|$aȖij9WԿ~MrŹ7SQ=2Y]WdJ[H F^<+ŭ(ׄoNF5ȩ=/I>7^xdu26WtP9)Vu^=82/ȴ?4r⪠}E=Ld~⍓c>cKz^Ӎ*h-2$&a; %evcQ_#n捇rcy/ q|;K6^69wmHЋƗ]9lx{Չ-u-|nxgD]企E,"q{} #$<\y\uCwwmwEA~{'zJg5Y ysJV6UzYhoT9$?UQA3xsKնHʴXy\FڣVqybא=J;;J,z# |$]罞&v=TuYс\zD{mZ,>ilo?V7K.pRU{'Z]wWΪk*< w3RjdzQ]ڜ9ʽɜY* i&6yn1DI{9A;\8]ĘobyLgw6q/˽9K p]Y}p+n',V4ԉ+q/̵^nxU[.~YުWsB#dQ C@X6+VP=:TQW޵hG\]uk_|\ݹEe:8y ʅ7Tqν_.A(S_\ }9 əh*U+Jl iwGv]},lBS=8i }" ~ Ege$R[_sp:ϺŽEم]RHf9؋\v:(v/*6Źd2 \]}cns23Rr9V]@33OK?~~U,łXV(\IoAX|?_U! K{﯋si;:`be*|#p}8+cG}y3kE+}k3cG+7: < '\^A lljpB4uh{"v\qX(qHO/xt3>H"P,p_~4?`iE SAz蓟@q#CCBI~xO(7 ֖@8B M}{8^ rv8M yС6Aܯ,O ՂA}=,̿??g}Q`LᾳuPg 4eL8LȂp4Țh /E D]8)b QR6ˀ', S g|!T8IL5џ- fcQބ pԿ0(@-A^J (oZ63XpgCES6[-PW'8@ZUJ1:=NCu׫wG~9mq!P64 @iۧZFn+*d,IK`ZfӀp8@n4W4@&$vŲ tUWZ8ڙ$ң(Og?}`L|g r"I.ĸ8.~hi]P֍۟.eCXz0@Z$N.8D\AyEkf.-LEp Z隋+VZKf!eNHUԻJ;Vk22)đf ?1ŴAid@1gݖ@ $Ny PgxqtMaeL4QI3RNDիc!9* ^+[(8x,L% ο2f 2oÉ0!D`K +cahS0hKg9IPYh8tP qJP )/K*C'f`Dɾ`8,uoƧ=wXTiOhq /§E :F_tЂS&D>B5(ؽe2EnH$(Aᒿddi.0xl^47bg7.^%r P\mtV"^L@&`4Wn{J!{Q0=CL9椓C>NTj.33_(>4ytпbo桦7Ix ܰx*(C?nhd)3,մ`f;8j e2H&[^vPs&R|Vc90i` ̍ĮK_g)ҢgOfRyȨۄP>]nK(*4z` gxH.]}jt s LA w-z ::~ CѐWaf #ʓ3 {D7}חmdcL?Ş]WA"'mzO;&|11s7u ̾wQw,wA>I#px3}VJ3H-B72nP&DПM 9>Z4W!v丟?.΅0Ftu)lCմIl CB^JGU]Ilj\"JA|sm<yp0^u0 e9A 2Iν`2J{ q3#" UOAg3[<:"FF̳"6t=C/ 93],N@D="bL M֢ mE8|%hg|@Go "w胧AVU{pO$!Atqu7<|e j0R>bN/ LyeV6># #`@S(x^tN@\8 5' c`N%+iҝC}g' -W@AJ8@ͫEyBMR*)`O~6<}KNB|{6'sM0ZEDtMs1C'}A'\  6~H;'dzi($0 hMtpsKB^ J  ՅQ<'Otɗ$c,U+) Xd622'a<[%޳3.`0T_,/^ #8HS͠5e}k xh -+='<5>LGׄH"PvqS#5D"Ĉ~]`=7h6xP^F!i'/~>"&ҧ7S@L'?+-DW3gX1%_vxkKoO@W@|T([C\(YHiD 8f = XkP/_X# lD >L *a{f~ D;&Z U}ڴaF8׽pey08y1YXk].laL $P`KrO|GDAyY67s@C:²uϗ'`C\RRc7wmR!R^%2fXcUoyKD $,IJ=Ia[[aj$bqU`NZ{7kđÍ CɢIg ћ5Ad*y`7Q14\C~{n:hr̀^WI#|FEF7pL+B 첡 > <n# El4灣0FIo!wJlTcLɍ>>D)! O BJ27ˠG.x ck` Xh'JZUV<(իl,cS(z+:-{:>N!S(BoWh~c n2FY#!Y'I sbLBsϿ5Xbpa _ͨ#w@GKj'ȇCܐexߩ m婧ovLlcZe}ȤJnB)ޘEaGBֺKkK %bWS.G6cAA]!hA&HC:hs Ւz4t޳+rE~n͚s=/Z?fN!!&uמn?Tρ7=>݁KSڌϭ6l>ozC}8h3Y~1ܼ!-HY .bAE:3\C\AmAHbݾ44 6}otae茄FO?C5\M ;u <`@T_ȉkϣ7F9t>:3bylVx}( Ohq8 p|1z3axqH2ssf6'Nw#aS`%i6/?``:n:{LJ cF8`AeFoFsQT@>R (xU eѹᯃwm_TA맹KpAP ~HO %xo)= Ce0Xx97 ns6ՌRK:], ~>?'FBqiÑ[]pFVs)ƿ6fЌ7[; :,,lh+qP߯0_EA[%gi "&f]93#C%\^ ?Q@4gi&zP{^x\۬;6 $OX6mE&H,kIVM] iĚܦVbbC'6>Dlɇnw}\S&MѱW3S2$S#NlGQefmm Vv0xK@̅\$\tN yff=0⇿7*dGPz2xNncFбp=KɭBdߤy*?txA_6P`&Dj94bc,Sߌ8] O@ߥߧо:Ϗ!T6|H0!=x~◽* 0Q(@T\UiQ LX(WPv,{1xP`BmP#. 1N G^!V鹈ſoѲL0Y(9#JOӉv+dd˵|b;Te"0Y7n /& 3CbFᬣ|,DB_1.[L+iRY dHs0YhEA߬eG,\s@;yqddaֲ$xDTZE,K^{/8Jqj ܰb5YC2,Qj?+M @,xK ~.k`P^FX{$!#|& ,q+hB?;uJ-],3Dk1Y(U5i<h& , {%>9& V c,7_,bI; "B{LJ K5A}Bl@DNVDu1Y(b,}.?p& 9u-V,Rb}^8/& l|󀭕(bbP*Sژ[C;LJlʿq^zACuQX,O B{B.W'B(6/c0.Iϵ1.=,yqÀ8bi8S2& #{I@q1Y^|4fBrEG1YkuNpVqLFobQ0Yat^DOc0ual8>ˆn.D`q=ˆF+vAbQˆzgHw1jp lq9]da\ 5Ѯ;,F%q{"4 Rhda\qza,L9A0!P#L)]=G+ڡ兲p3T jGQ& e?ػUO~Y:0Y(!K&h;O8d쇦ι "|XMeekw'& e?tY576#X1Y(6~w qiqU݉no1YڙY1Y4Ӳ|d݁daׄC5k/& eݞb4 A^a0!r"F/dKaI,f'ayNکlCi1rLD*[G-y:iO6~:wݯbn|v>:ZcٱASZq EL5⺎ݵ:h)mV;OVz96[SCuMVbkx[#B -{(kEHMڿ -N].K{=vP :TQ@ MI*syD[1v#+>)qٺNm#Z`ǵwMXr -c(\sa,C T^gOȫǮ9Qy{ ȫ1U d--Ww{+-WTO嵧#B ՉW%Z Ή=krwj[ͣ-đU&6 Z N1n#MuW&@^1{M%1<Z 7$:Amh/URk}-W|Eq"-WCsޱ|/I~@^5p YDXu:-W__|:2]WhzjGLWf1@^󞗵*K[`uȫϺ?L㶅\)ȫzy^"\ȫiZ$o\ȫgzv Z c겢5}i572桜CK+˿Z c٧OZs^Vȓ89k-sKQpZjE_YT\Vm*Ek"c[lC׵T߂"cXϐ+NRdLv=@AKW*3*2&[?T{͡Bֽo-0ݡȘlq"+]\Wh)2&[ gQRdLlzϹ1ZɖuxPrՊ6ZVðd㐟7KE}+O5L\RdLJm .ZVhgajkDG"c.#R,BK1ZB/-Eds}j -Ed~ejEy"5w2[qh)[FqK\׷qRd925l>'} UMJ"{B^/'g1_ǂHh1z-EbˮG///ѾӠ_l%(Ju-[Ll=5_̭rCKV/2fjZkguՊgCKS;*}n5_l;Ϳ&yR/Bp]N.a"o؂ʾRcr@u>+>[Sy0Scihrh't]D_Z Y~Љn/#k_O{4{rZ E;7zZ W^jYohnnX gjy>#JD z J|͔e4ubQUrdaػ=0Ϧ**X' (Juc8 Tx:L362=v;~'mnc#6\\(M[3 EK/!Y%GHK7<~ K[h{5RE wlmM!f6Ne Ka]NEqg{h<06Zʇǐ[x[-եU"83&1z֍t|+g誹Hߜ˦ IoFG"{$a˰yFQVF0%37N=Dd?SKzs’Bcc57u7 t6=HLOoT Bt6}IlD8I4!- HzetKK݀R!W j[Yͭ{KIvsE5nށ' x%3>(!68b(\A c"}vt[}o;Иj))詄 n^p, Ll Nr3r\ j} P 9xVNd*eOnTPD?ĜVOiD%nZk9V,k y mLz9 d"Zgkiof`oGO,ak^R͒7C?V8:U["~X]cfy=zȳRnaŌ%i5H1Fja; 'Gmv=-Lu9w:Wš?!btTuLX`”o_Ӄ:>㟾k 9ĨpKC;]\vgo+z(dEvU&PP8<)^Jہ0?)“ '/I&(hzao`_Uj1PʰA<ï x*X1>k7&[:?iteS]kszn}wC `2%l ƏeuɦOuUT ެSF/ 7A4j@(!,),="#1 4, ļ횦ӜKV.{|P<)uݧϴ{<̵秏o>MzF:*TBf=Mg!{c7 ۻZF9%gX+SުZK/5;3f7{0mnyI>`-ϭ,:`X J_QNw n\3hP'!,Oc'w]X!ftxNFr8E?>ɳ)%B;dFv :I  <{2w.nfЋ"!AUkeGt[F8W80Gl\) Unᚐeh`p6[W&~UF6ў\$=oA4fM]~ג9l4#@ǽVH2VvDW=OeZHFz֮.ڰDپK~mR <[WwR)*{pDjx% ) 5\WNSqer|]1S52+Z &]R$Bh+сJ>ARUupQ9n+G6W|Y=i$j(͘(iiTs}1^7#ۘjBVt^sV)frxg~_0eӎ+VҐg vz4w`6Hb. ٚ57R,%6qsNpxSɜ9˜+ %[%[555\AF-p^d9gjr)^}P{T=~. ]䶆*_JJ 0 }7!٘]Qs|P:#.<1گ{hWoNE U b%[BP6NvU`:+Q._D}C.}N|4ʏJSQ;kLAt!kT$15z&:i~8[ =RӐ| F=1F>#a1tێ]ƫMܲ쵻Ӻ߁:Y9ma3|0\lF7WqO|5JeՅ!o4coFڂ~YK{Љ؁Vq>5bKΤb(mRo7"HHn37MJDiV(qT\.8 YM%k z%9p@4̻F"۹Co?1fSV! JdF:.PW3R$<и zm.`bZ\`k(Oe˞9ى~pUNNY2 }EA;B+B %ДTY Ҋ%t1F6On%͏52k#l޴,3_!|Lݝ iH.LEdkٲ7=zp'/l{N/K,J7j:۔_=3L:[wq%VZ+o /Eco\5P`/#K59.)-+(RQ9Qj|A'nKG9r4^~&jZ(?-X|_-i4TŽ t̯҆1 2x5]:.Pp̙~KҮ)^Rf5}ߓnl}DTeOJ#eaj`]oDu__?  8 {'$_Z]h] i`o6:>'.:sI&bL:$38_t.`;md{yۅ<~<'m~N2pwiW$ Y g엿繜|\: ?=-s~wb.?}$?oNt O[O]9wu<}n8IIu)EI'?[^@w;IJqtv=w$%՟nb!&/@R;h5PK;`YqjTDS/lib/junit.jarseO֮mUڶm۶J۶JҶm_w};wޱY;cFK@utɈ( HȊ@ _e2"Jʴ22R4R4S L;22.TP'wRtFA :92$؟fbkLhCOQ"Silbdag_:ؘ9Z?fjG[[Gp:YؚۘߓZ Di uD_T ڹ8 [Xۙ3Y89Ha ItHg,,^ (b6 Jne˪咬y߀?3<MqE ɡ(Y[4vI(6 +>ln%U/A*0q#1} Z8aWSˤ1#-qWq 9 eӆ$RiwмVPlwRI,Pr[ JyU`r-d4l;/3ex %u%htPB%旘/Y$o)ũ.<ĚuVcrQuf0s!vaN'| ƣk_Xz0~Vi L+t#cA0T W [4kķ#^-QYDb? "PLG/CmHZ85ܫi`uqFS>尒u6f8ɟPlCUSwC4W.mE5%T?px.%RrE&r xq_!_ 3 Ɨm1ɏN||~,MA%4yM(>!AD i 3K|OAn}v=CVӥF#?oﯧZ(~wW1]Q} w`G﫠:&~*}6 ~w$j&TLz/ |D_xhE8`%%ҙ):WDP?0w8~ƨPM^,Pi2V.n`c]Xr &wLn/% yz"5GVzC i"ˉ,0jʬhs!RB>SԨ-Ћϥe/("J&%W;e3o>|Vu[H(jӯ̞̇%I@w|!OIJ[F)-$dm.Btb;:$JI2僗 4x"IфG|ܝncX2:LGx@N FZ3 z0GPXFlEoB$Ẍ́f04ב,B#D۬S^+R +7*ԥk k E bag)#/[uCUEpga7]KY+Wt`}J=N[\nQ9=Bz)D&߁=M']&f&FN{8C5I=Q3ڑ$3}N"j{uUuk8&+j=586KX[BZOC x.@!^ SB-$t.s=eCϟWT}F @9J[p%9$T bsB9 Q{:!0f 6}ŀ n 0D<J]#"x/r[{Fґ€j 6['^xE6r_0oyPM߂:f?GqCn|ѵ)m ׁ9fqvt}-.,I8C7[F[3X!l8 1!0Gxb$N_{~^:c֬UY|/ש{mo>poͨ:xhn~?+Ual{7Dnx MԝAeb<RL>'%J4A)c"eʼMjv>_Wr-^_*vT\1YJ/ 'uQG!/1G:6<`rp*=gf&jF14dQ+6d6XGU Y(E0iݜ&Q"a )l2@XW 7NRLa%5H>>9ER2)+ҡBnHx!)a iμ/SjbtJˉbl. jkRpSGAb6$kf?hOAVn5eki:=Z'9Mlr2X0a6C;ݰd8 ؂BTSAiXHcuc pivV^Rm+Ći^eB{ATP\T:@٭)7=/C}e  ( ו΄#@+p! ZPZeBZX9nέW+!n"rf7 1JT99,sEB3 RkfdrYV'] F^˼0Vo8U1,DRe \e,*N 8t)s0]ͳ+{,cť6;Ԯ1ʹ -Ko8߻QrIVƠVI৿%d1 u]e.u S>%wͺCZI`-D ;J,CE[nZ +Xh^tPz}G0f_b7S//O(/fe$|yՉi@-q025WLsj( AR9Vbѣ[`1g()sdz(bj/1TR?8K*>2y6u.U$lTlwZj}ga-IrPog\Z[ E_aËrpo]L [)WS\YI좪ldv6Q@E`VZrp 'gTWޛ:| Υ'/S?̥Pe?.xpWb¥l-!p2 Tü6 IҤ$ b0nyc$F]3pa>k`g <agq!'֚K l}ˀwFKԦ b(e0UJvMAY|:XZίJ6_#LLY̸ZGGh}[,|䍵Vcm ΥfX2^$wPٓ.Fx@fE7jLHkӬ@:M"jR81Y*Q>  #svmThdEd/#:Obe/NM(c3(&DݷL-vP}Y-6bpNmTLjQq h 6Rcj#[v\mb;8>ڵSD7N(fǓI1B +x%85A ;c. 2b[4EVl2-D>6^Ox(愂krZ\&N Ze6k2ؒ~bR-M&%_* TI=Uv|ܨ%'60ٶI)52.6jWe(cƄnG5 "nJgT;_~aӰLۧI)\4 @bz0qzqZbxO` G6 T=7?f9v-w Sy!;p!8od"yޯF(5u\|#4ARvߑg3 64u!YXB qX~ͬ4RkE|U_JI%Jm.L9#h7ھspM!.j)q nMi&2, q!;l߬?cGu;|e)/lcDS0L@uo ^Ž$*-~4Vᅊm2"-&AӤO>IPJ&(;?DG6PrP`[ 5@k+[))ԂjDVOz@ ck6o4N e[ Jn,>}dwnH7ܞo:gT#bu( s/.>Jxq~HC4vO4j?Ve^l+1s~Fʄ9C"iXygཱི+$z fe|DzW0~HH~%m_ŗ 뚻v/ ?vc4P•MVrR$ xFpX83lvfƞޔ9Q<U#RAX^ٔߊoܰBleWAH~vc\#G֩]OuH4gy3ؔvuMABe؊\ AT,O Aw0qBA*w6&g4Ch ,TJnFz2jULzbZ-_Ci#A{X%B'MAIW"IC?w7 )4$`uE:DcX)G&'X吵YYGD-:q&=(B䨂94 Z!ΘN>)XmSD:$LWo R-w{~$0O?l AgiՌ4i{ i3fŬx!8 [Ϩ;[:M)* QSKs^Q/#~q`A1U>uad _cpJ 2[Iv8N@RTm$Gc+@*zTE@ɺP1\H $Β^Lռbe% 89T##]vkaZ.{[X g=a k(+Tk\VKTV^m{>}<|1C-k>>腯zЯg[hdn[;ew%H4W_e;|=$[|vR'vS&@NO._bYA0hItnflm ]3T+k\MɐP7.IɲdgkD ]$U7GdV$1B]rOz7nQd(dᑖbM3@NHaK>̹NŶT-|MBE zu ~^fdܶdLabTPuA7ua U0i-֯;9]QNSMU5[Cp&z_S1\?%bK(qhX~YjZ*?X7_>a给z j^ES,(iY_%մ:R6ԺI$>76Z!&Kf Q 7/Qf%KҦSm__{T!mܧ&^IDlj=s#.jY-pv!U(;@"O}Xj%tLVN,ݻi@w.!$+0\z-{ %iD!Bg_7W97`2˵:rBf~15§$*najkʼfE]WNa&1a]MЎTҸDrjy7 *Swvؒ^|H? {h kcJuHCHm6,yiV6gfU gb]e`[Z3 qQ$U@|0 R$a0אynj"d.<(VU`Yan )1xj/ij< 0h646?St1Ulq̘M8ao22s䡎}ɡ66I/>~/KȩIqf)Fak۲|M7Neāooe쟷fn:VfRRN+,+A@X$ *!{^Pe5:MIL UU@N 4#fW/SV5elU9:{4.-BuGhAđr-TH/xTgIx/$G/%_v*#MtЁ!à#eo@R}4,!)-%mxz /- #.)(U|*/LV,FLv T'/76-|$kBji6wN\ ]~-Su T .x|g<&OG)7LvD3lo^OmyYY3:x%3j!o|ud$*t+ZFQpt8E 2}>hgZgQei,/ '/ʋY{-ޖPԿں'2za:b*J"9R}-ఝ^/bRv!ZJ#Xk (;Wa'0w2{i:eO!W熀I'Ϣ7!$68xoqգ#]kVm 7lAZ?EW$0ß@uxir9\dx8(BDTE#e``k `Uj˗ a\T\z¡)J ^. 9  $nY1SrN%cT>;֩Vj7Hz +fX7hS~I(rJU ţ ʮQ4}5J 3ۈȣ;i\wU P2$q(c8+R#_8 pJk,GXf8iD<<3KӀN 3]6l=(YŪGtu IդB&)q75HBi<*)nG\Ѹq -8SZ=˘ud#??Nfcأ7`~:b)ՆI;(5ԏi_))Q'7)cH >,40BΠQt~-Jr+FY Lk*%KC+jgS)ҧc+Ioc> |ms*zT8Ld&%"z>KS R%yh^B43z/cʆ@b8aMW.P'.U XQOF҉{_u~|5yK/T3 +[CL2*d?"Hm"2aq~섗wR(H~1w 6P Xd1)rUN9SYk؉jv3K|="*?)`'gS)+ WP!8Q,fB8=#JŞqZe Le[dkjj21A3#ܝp0t$a MCѺJ#rcqѼe |5=XAg6;ZjEN㜕aøzkd`ϣA4rfRf\˫iVtbP:gaمoCs20 sVE}_}tHGxdlNi(AoTB}=3yrAK`ɳ֗boIoX]z p Q7%v=i yZ7%cCY m\iruH`>SCh  >RjwMqA5$bl=S.ԏ3qQ&Ɯ&~w-ٮa@ n$[+{qf $yi TCGFHQ_SS?LMC~R?'ގvlWC ضKu׷yYxZOl=3y2DПZo-0\y Y#kș'@& PS 3AhEz I-=}n iiKG>5=7./x$g[||_Fee[#AK+.T*)PfPzI;U0C7=pN{sR*%YN(2L)Rؿ'uJ?ۋ#*QT75vQKYu!(c^hwGEˆWOM7BLn'EGL/hb$qnT':I=Y 3N Uœ/BIVIGn1Kn*F c'IVc0]q 2JIǾc$dV Dt{s]ETq"lPvjZ*n}G5692Y; ]B0 TcLBP5;SQ'Gy&9`鿿’N! u%v{lku5a U(A5*0!D=y9-1mEI4CX==XΕD$mWe1ے.)oE]'j齆&auuB)BY\ū5,ڢy @]E¦~AB1]lb7G1'lnY跥jaFw汞 z;M~!hzjڄmGIP.6sTlrAV{ $rq:x6^6l;غ3eCk.15y] nXLz~2̈en^ Ms'b]T@mY !Pބ'D]iwg?1i&b{sz$߅py׮.:]+5c/S+Qf ]-)__MX]fE鏮A-pCx bV1o⛔IwǚCd ֘Y{stKVa 9 YV;\Y[.HR$McVVdo%_ØCwbCnC"2j"o: /j;.wŬ$>i&Q&|&Qu2!׫h(+ r`[T ;/7Qo8䠨lt}S2Ue$s^54''<_I`)?[Rj }𞐺)}v(n2\(?VwңV 9g vc ;UMoA"v^oM# t'/wp?bz =<}{B[O[L,(+tdm`ZkZb%AQqsΔU&*0MM-p,DC " 6D%mTTOƐ=~%X!3tO~r Сf@Z0٪IZ8"Z938(a)f^(rLx ,rkBy* ,dTZvK>о&qk_Q9ICƥQeB]P$`Ҭh B S)|j<6V6ԙ`R)$~zX\tNh =Җ~Mk 6wkD*p!64%?-!(p?`ںpp3l2.+(y,K+9UN2x/RVՈUE~55yԹBsGEJWlH?a$7.zs^3QbgQ>IUU?r"Tx˫Gc|'Fd:a~1#7ll}Zp&)O? Y6RvxéVW"ov _tS&8E[gڅW*Ugc~sIם T7 @' ҉*fx椙t0K's24zfd 9*=Nl$5-mrr|Iw/_&ɳHピFI,7S+hsgi(^n2?vA;>,ڼl/]ҺNf?0 @uv21u٩Eѽ~0{zMTjx{);p_qhljۉӉS7ɥjxB6:i R~7o\L2?KwYM_<s|N1^u=R!O}$~!Z_P\~ #nW~ZG[ 2CrC*b|Sı1{0 u?]B=N5o] uP `5U KAP\Mh- IKfʵTyԭn!j鎙@3ߨ@N.ro;|IuPN1QSbz/_K90끟#@ =IG0B|Gfb#@͎_d{GeE4,<H1<z,99';`_r ^q4M=aS|QȎ;e--+Ѳ{-"k(bTxOQaFԲtCQgLeҎ΍' uLǁE vΥg%s;ǦSKJfp $rVdE zϻUmU`nQ72#.d#&G)Tv5I6&PN3׭+%-/h^mFG]p0 1H`_@mLÊ䡈<ꖌzydžKy }ЇxO)2K^10q__]C:IwׁPy"owO6"}:Ֆ&pʾ6v沢dDOtG|1߽:y˅ ?=tfo kȒU3gcDpk\'}sNH!g<==WŔ ukϨ!hGأ; # ضKDNh/d.d{փjBo'SB؁V[vl._eF#'x%fb=/IpEϧoI9 c1T'Otol3m;L'"Wا*[/ozRpQl/oTr~ Gc:>~;%e"~O/ickeO66G.jWΞ*I|UwH(ط9`(e/'صDsv6/I4tgOi G2tGs# 'bChR97eFg|-!p@39S^Ɩr፲N[,~#t',0+^ H+{֔`Z"Wޛx^rڸ2fg>y4:`(4?cxᴓfBvήcszx;-ļ3r[>&3lJk̽;i6f3PtaݾG#R=*٭7+Z4yȫoMXf{Plxܑmχz/gtb/wLb4l \['Ru/Wbu'+Q"u)DZɓ)dEJV2h/ԍӂ/m蚃f/,("Cct cmX@RF0ϙCeA;SF0(hW3zUVKʨ3$iw:c᫔|y*j_3~(uۉ]xDM3+4=1NW3Iu0Aҥ h*oSNJB[U\jJyՅbH yDA*>kƥJܤZi DrREBⅎ2srN{^aCMƵѻ}7Zu.f8q6NeL_PT,e%¢qYe}j% k:Ky+"o> ֑wukݖuؙm۞m۶mgl'36Z{O?xQ՟TUXY/dlXi㶖^e3.oL_puifST ;sA܃ǎe=\8f{Q Lq"+knw(H.T狯th (|x>$Sauh\'*XH2 $ sg;(ڪ]>pVn,Wl ,㝽K;ڒ87o8E% 't[0QjHCSUNήl_;]Kc]\L^_FX!x JXܧVgn[JU?hw~#3I^ҡ-*ACV\%+-{A4w|,ׅ?-93@'Hߒ?#w >;u(#,1q~ZXGiJ/N~+Y(s`ݿPqS]ciM$lX5mp̵Om\^B%xæ%I m{D>le!Дz1=Cy)%7wNI*'cPx  ɱr1و=AOvG?} 32D0m!{&9l ;({.l~vsBxHYm9z 5GHJx?{@ uyd؄b &5oHl( Ed)K@\99g9_c. jJAfj`/=< 3zUrly$[XF 2EΔajE_ qABНhc$xs5% Y@^%Z ͍{W& /\,-,>bi'Hor$bGzLҤA\ƯfS6@|g\^>iVWWVtݜNAF׏ڨFkf"| O"!(7eM E5{z'lDD 0be%vYaŤA ^u%je8䍩u^jQ1u1 諞$ùBN-sMNz`u"H/OO߲q:v[iqӋ8yȈd-e`{C2uyB T.kE碧3yCdQ=[ lHbHc1(N_1у1={Y/gu3Ͳ%JҀZsX6N~[q7+_1O恸=݃BgK>Eb!{Fpߦ-`4_v/z9#Dbn* 2{ OA_CHr_bT Ro^׿cUߡb-`Pʃr3Q$=60ᤕy;v"/@O *9uIvG:ky~ǿ[Q=cd"X p RHt 9<tTSN josmZ=ImAVEW+z5*Ծm-% Ef&ݵv-SuV˝5[S}ޏjQ>fp"1L> gg T!\y3,{MC&k;t8Bg:xbWن jһk 4g֠Y3St1Hsʔt KO3D$Yv@Z(t<(Rrζ&-_{Պlkul]J@x^ 螲\CGl# >|ERSVư!"A% V@+-~1jp|a3&4?i9i; -Sr}Vt L߶2Rl_%SSCS@ݿ;[ӔjWы ^bȄ/-ew(=/CYlI'C5]S\+.gw[n+lexvY]*7݈ V:ee BToOI񌭥c9 (a^Lӆ5ccJB\(Cw]@Ʃ1a$xWv*ob.!RĦ;U{IVKKDyi=XZ^"~f #uZDŶFMW=\Kl" [ ~kU;2,M %v-V]]N [O0,R0ޤf;cDGP k4ڄtsk8őqƌ lٷ+G24ݮYv ͰѼNiF7.S!h=R._IB-ZL2y+XڹZn :.5q7 Ap s2xbU5$Š=S"8NG^qϭ/>wx"@ݬ'V'# %B7j$mbFD@5> B8Rhx4%Sy4Qrha'vA oA{(=BPPSrͣTC+6N_$F6^WX#G{ݗđ߿(1?0ě|jPW?|b_!O!BB15w2tw]oҖ_\>thD7>=!*$@N v5'LdBC!h{:㉻`hwq3Ä@,G|#~k}:+l:GNELoVGšhB7JV!~.+&0Sk둬I39̧E1.2> Vy֑ktp !HC{ڼTHpu'^_fbHL509*2e"+g8دŃlYggPor=[9 tͯ ){F'č=LxQ ]H7(-3 Hy͓%Ιi(KpkUރ (N{A@Q6 #O ؜3S!WڲA*j wa$ Theofx~7,PO9 g9a}WwXIk11si4g'8^11LJ#ָ7P>V}92 ,- 1. Y7]eP¤聑aT|v缶f Ev_MO} !eCA F244P6JuP[]r RN F82HiS8S+ސqU0q E4)\){D(Ỉ2JI.f{L~5c;}.~("ED@ SԠ, Ȃhi)w)陑T Ġfum0@Q3YZ7\sFOdg yS\x: @V˜' a|^L0 + 4QȠi~tƠ2H,; țzegfk`$Mb@$gi,%gi_ca#y%u}s1ѾߍuH_ly%S{K5 0}-RZy/ #gM;G3?;қͷ39G9 ݑt(k5GOM}? 8Oڱ[`D]0*>uqSpcOHs<5`n(vmYك M‡q$#^O77KID S8s x=:hD]@bڗtDQ[#|6FCMOk"nH:"FoHgbK5Cٝ(mFq/6GC{{YҭFxij~h%T^oxWރ`'OnxФEZ%%S5m7<|8B2ߋ #~)uЂqEԿwyeNN\"*^GM㡼 feN7a8EWi{y¦nWQs!)h^gL=xq=i7ƭ鷞hRuѹ`2dm}da_j0|'iRxJ7d5hj'wmAggStm%L\r`Pa?I1NL&p'R.hd.N B*!풨t-j)1uK ?yfnf7}{Fo\ׯ*{B(:spKK[aqͭ#F6Cpm:d8u046V; T Z|k~4SAEOv{LnpJ?ZRC߃NPei(9^x(=~:R)De&U4pa ]Anݼj~Uy7yI l]ǒڠ̯52\n ȅ?xM׊m~םbiTRJq(< ;{^/'J :ct֪+kαb8\oc튰F]?<_yrXvR%M\/b?uq^v2h:m$~"FA5!aneL3fSOD[n$u8!tA(P3בQOGقHPT|"VXL0{u83hL!.N= 偩LϨR h>JIT}C:gz6Oʤvd[[R&smzMv/Ux-uȴmHR F'yCd àyP74ѮDhXQZَ ?%scv$=~[ƍ0y/lK&H^&m_XEy'fCe nir(<*7ffV^$QC$ ;+0MjqJ4%֑njr5v!)@f*+z3|B1C 3ֽCGp1CW0̪ ɛ4C qpE:JW4«t˜M@h޺Za >ZUzU'\\D~BODWCuݾP52r)hyysxЊx]^@$Kʼ>E]]+[irx䎕7>Lʜͤ!7>i&tOZyrs0kgFL~>~6>!\GhzE[j:W3KYm[ϖz\$Qqҽ  =-gB@ѴfNSWMh֊#06Y &}|? / ]5FpW.?0(Њ<@'jv8:eR`0(Za`+ :7-ٞ)I ׉H 0Q/R/fhicj"be~" ÆP<" `3dlch $VNDBsjgeC>3ڛ=NtpA$&oz1T6ʜ锌ɔK55?,iz$Jh}GՏ\kʪj0El$)#N fVKh-! ](subр*D:)ɡJ{PURwv2&x Qrvx "4{THtňlghZ}"{ߡTGp/ O)m ,N>UG&[aثg'A RHHbWD`\6QtFR7U Tk[+6OA5loot=gy>`åcJj㺳/ȬT<YЫceM-o>V1LwWB lc`K (]:-9uD Mwi*dgHNqN#ڢJ̺*p# h&{dtad])q~i;,4)3P[)B9VF#A{ۃkeHƬfP8GA7+mœ4J$nmcF7f)헻2GyDv΀)ऺ+TWv9H28V|cI 'I5DXmwvۃ$ v9RV _,>tɻ SIHOQ!_]H/ђ;u"5Oc(6)#LSwI? 3Fk`ko 9e$=X4Ӡar,ź1ȹ(֔oH aD!u.ō=ET|>rh TO?'{ScC#'YYAe\P(t47o:|> (⽨ܛ'KJg/XSW_U_㏚NrM RS'@/P4kҙYdF&ؖ肨z/GByO:ꊲ S A޺Ɵ.ױq Э1ZkXeΞYXR=ǠddNJiRf4r [D>Z<$b\IU/2bil,mABغ<Zs=am?n.sT`zx#_`K̚49qݳIsP9OG hj 8^gt%\щL\4VMm92ux].Jǖ1b8ʭ+az n98mX|AgG.SzE4 YB-%cRFO{H~Q3 irWA۠G~y38SZu1Fbs)dC 'iEj6BWֺ0P.d ${H44 vEWՇ  P#%#=d^jEpPb'Vw֠Aknօ`ckA b zy ntm\!7 v"cĝIE_Mj U.o#P7k/'>(\Ԝ5T9TlLyʹ{MxvP`˯z9֮*-;m S}cK6ChXr:Ҧg:Dyi[=q ڿڃ1JX0(=}=WT Y{n!uycz};Uz:i'{jzFT&[/~d峼2xGDT|)@, {OCvE1ݻdyjj0*G=L* @Zij'|۪byOhx``3֭69sv)%~.@swr0?UfoQvRzX+p'/?hkqL}Yf#9?s}UU Kg P(HQ?,y( $|‡뵝hM_={)[LD`ҙ;99}=3yq- 7liG:ёJ-2/^*ˠ*{j|?oFo$kkxBG؀5P3&Iw^Yc gՎ\"K9ήi!OSU'Bm!ͣ_Tw2ۥ$Ów1}/C HŶ." ob^[3ZIӾDa!|yAY@ѠK|%`AE&qedn/3Xo^OD퍔(d XO: =Nps3/r,%t4;_*uxEVGۢ1z?v-fb<JyNyY!Q0NHgr%rId-$ߡ0 N`]Hctgd̐e}ğW1CrwWwX<d+ѳ鑶zNiEd®Qd*b%~vb:8Qۨ+w#к~f: tIO&?";NړZi,$ *b ̟!#9X D\^CdMC硓?Bml#:"oaqnk_d3%=w2E4'cbU &LP#AnuX.ZEk\st?<V  |Mؿ?Id5Q%#ϳi-כE (V ZfCiTU S5'`@cu' ~<(9EW\ c~{]mB #fW0bYPPCg65p-h/#%SgW*h=KND \AODB^hԭ\R/lچF$HguWZTdgD΄Ga1DVPJE^J\[o%}Yv/rSq< sfx1jHBhT y Um=qvgJBd΁*ìl0dfpt-R+\Ϫ {Ewicz|`ױ`1 fy)x?ox0QpLVR@.G)Bu߁]!ϰƵ FUd'x# pO:k;CQs?Ɠ$!g?g#52:;@ECF&T958CDOrэ3)vRLff 2?^0esRGmwu~HGÀLgiϙw{k0MEļɒ䵸61pf$ypaOkqӃHB4j{ IinY28US˞oX"nTu?:ZZkeIS2ξ:In*( ¦@z*S$TŒV*\濬T^.Uk*DU|3Ý\UxrCq2\UXZ7P$jt2ȸW&t/j u=QĎrv6QgqdC3SKaZTE+ xS%~Yh~ z"l-˭ϷSm6da%3EVp[-:vEՠ߯\H[haqNr-w%-8ʇ.!X`-1\Bۉ΃6goy6KX{V19P LwIi.Q44n6rTQ7{-%&k(Y˱ b%q M'T ePoZt5 C*%)'am!C*FGK0sLo nsJLͦBb72^`:#0 WX\!#Nz S K:"6cxtFC~lY|=\S7`~GD JWß; j˹fpJݳp\+)Ojh5&UdH&͛BcVgRl3t%$uKOdǯb1|8]4y$u[DFiN!!.(.?]D |h $@=%qM!eaD1ZՇx K8"a_N,w8j|-\MF7pE(.-|C?xyݿyE +kԦ_]6XպWD* 0TX ΁kYPB`.Y( YS4Ql5@ǛفXti t'#D]rltKE#Qz=E 5H+cDSFЕi|DThRvi&SG _\?c3Ae>rZ!]f"x 6I}zG4szC> z߳}C}F9Ds|!LK6OZf=M]fg5g]ᓟk_NkU;w]%KGv(QXMΦ@$a-‰k5zCL__i~W$6aGff"̫JB'YۺX*v IKq:_:|dAv,6ԫTPalѓPuoa45m.hjJH5I"M9ZwWYT5Q5e͉P+IX!̖}qwp8yGIҜ?DaD}pFI攴]6<t=kShgk!7?D2LNo!f-pp6djjH1 -]k,Ao$о9N/A}|菕މ_ƅ=!Y{'CÇ! F,T#S;IAgS)>=Xe0jt%z?_EH~œFyEHl/xo> Ǒ97XJbJ Is*uaOS7ra_1^°b2qנFaw%[ ҧ,ʖg`Xw8+we&Q/R`\kiyzj*6ËҔmf:lM Q&1V-Pڱ~/B 1"bRtiKȋ-3&Is'z؁!dDkh = ntGp}cZ%-knmr\ɩdaJF3ס^jQXlsx̔E:u^IBb#+hlw 5KdkCTa,kHe H0;O%gHѺ[Dצ]ZTRÒo~lȭ`oӅw nl_)%m’vq+zEckǠ9KAMuPC?(4wBAqS@x --9!D B3b:>t r>yv/Ģsʑ,~x" 1n\ʔ=9`iHY8MaSnH[_JjQE_]q Rc\oG'L/MH]KJ\!s,8jYG.t7D2cTF"jYJ_ uy".GG4ҙM|Vѹlki/[ZLx a;9 41Hryf0yp] qM^G1@BbǎPrk3? yo"Plۥ!*O?g"|h6x2}0 ?웢lۖ-3wڶӶm۶m۶m;wڶmۨsNW]iU?}9ΣB4T6z]^s(]ݔ|`dV W-ܽq `\?[-p)Y;j:YZ H8ӶzkI=5l (0-7^L 7).0-O>ϚIUݯ.@>.p#L(f0sЬqS:dc.]7Npg@({m W6HV3W'*Ium( ze*6ͰfWPٝ 4܂_!hڨ!W Rz]\*\Kd ;HOGUZ2ڵ#X !X/Q!?]lιP--0 0y*)[`^ X;׏8-p~b|"n}I1^p`OD.paG@  $6O01pJς5?MXj'^r-P |PD΋;47(o¶sV.-A5:P:xa3n v,L*\]성4HEu[FfV;VKprtvJVa+>E>܎v,c1[bvAyF7%sg2|M oC5K}Pt/>E>#iVLdwd:&{]:&Wh%mvپ*&/$6L>'0\/[3ٛſ;Ry,bvh!J`d&{οDnJ=qk[vߩ7bv]M+HTdhxUl:Vo|Z*Y>žWs|W> ˜ޜ m@ZR#iwȜs o뗍'Ro3>mEqNɀ8ޖ.èy@DWb˓XLzW7B6Nw>u~+IrΓN9Zyσ?ɟ)|%`<KqHG3vvC2#}@i4_nqδ|dLaF~mrFS EFFs۝kDB 8YјW.էR⾩&YL§1ZC3Wq//D<&T|҃wi" 3*Qv;)a̰gs ;۲u/O #HJ>>~vl~ t[vjfַB ,+3L(֗WK.ܗ5ڭ뒭e__GFsW^4 wRσ}zu2C)vmC5[kW{MDwDJ df~=[Eq{(3Aq >r[:Gxxh6 RwhĽb~Okh`,fl\Y<41܉>2Z=A;]dJsP n=8_}RՑۧZS^1*X6ؘ~yi\ty*4›BJ>&WR0 03R >ĨjYla芆^iRM(<)5zwAUm7sCN᨟I;Y 4,&"o/SXIŦf>7m/-E;JW~aN y4ɴqKZCػFA>o+UlJfCq>No^Z&Ij{ ji&n%^Hٟ\́E;'q[KNec b[*i}4]b"xc.[Jdq 3YwDli(][VVXCm0YE >1 Dg/2fh&v7sgd ԧU?쏼>ܳP@EAZ@3ne1?)ffE\JCe]h 7HF*薺x N/9')L3`| {oq;ԞvIO7v~:N}uq0"B`8?NjZ#2ڈ]za'T‡9}c/`L֖JbN4,s mZEdp*nQ#ۚktˈߘ'>=.C 0bs2 13$ NK)u;m<9f2v=QA7tOcq_izvᙂ+,q|}Wh=M\-l[إ5~cj~f6i`kb4w`B[3Nhả?[k4djrTRi2A1{ >ih"?8F~yϯg}*@)S[z' ?v8]s~&'u^rI4^Th]|GlE F) ĵs'DCuߚV߃! oS'  p`I'N#-@B)oAB\1_D 0uŞ`pjy(6v[}DE}HI(oY'bY>T<l 30_>Ɖ [E[)UɁNΫçϤo@r-_֯ 3LkjJdSAuYOCsTp=u/K|m n;x~ Џg"p1tڲ=BIo'ź= \<93ZyqX؉ܚ.cR* @.+ŵ%~ekqbGb5 u1}5"s(?N_ 9tq7 Z i5!Xt"+ti$blٚF%MKC4wה* þ_RiZjHC:U~M{?ٕ-Nɒy'8ezLDnhB |17&;'ۆ˻`>^Ev#d}GxϷ']}}GI1ML que2}I-a'8q粀_D,Ѥhd &ϛA|)EV]KWw3ǘ. [ hKLa>:#p!Q4;wHmQ{@7 z@ղ9RfB_梥3eT83+9kB -.Dkxt%VTL.Q5Gr lD~ ,} 5Jľ*KN 6]vb5r4'e""nHP >5) tg&dqwvhOaGX4dq#A]Ef2`"?[E|*"V!9}'l X'1F7$.x!@9J'1% )yQj= szyEŦC0_iKU ioPףocеm NJ5reDڕs\֮vGHuqp%6BL^w&˕!lUD٨hW)B&{'|Ct2YDǣB(!C~k̎AţRiӹL21;v8Nd NX #*~:_#^n{Xp9W]C*Dp5ylШRlqSC1q=rGP^7zR׉kRߤnS|aDF)G冱74)}hGo 4Wb%sC&[ޢDmi+Ogd2ϜUĈ6U6sr~J}2{h.B=a:˓*UYyd,@l6~ HѳƔMZϺQ1w>zqר(Iڜ҇/O] '~u~jW;cQꗪ|jK 4HG=lZcV'2M־˕b+&v wWt9U;I:Quhr?7@=_A FqUknbK ߁вFK񛃏1$V=)x^V#,=>фZp5܍QDHQsRytɞXv^hd$J.]N. @uhw OD`ȥMxHE{IlγW^PoMd1J ^Vd xF8oS[@kpZ" 꽎e]ræopBgo&m{VRGStpHSٱ,dH,t,U :W@J oy`CTݘ'~I4&7fPqL0#GL} ꞃ1v;ax*}w9pUlw,%_wDD'XS@,~d:dhSbm_ -S٣S/Lx%l1x^\M(ow" Z̓5i|Wͫ 4" 㐒Eaf\ӳ%x,!ܹ0PƆ0e)'*8 *CRz2"H$My UCYmI)@03W]Uc7C+g#c#;[?3;a項]zSSp^)kAv^>JĒ1I$LbӾ lzYOBH N-tU"g暑E?I["Gpm.i-;BB&cM*Ʈ;k0F H 50;Azuw-nv`{鵃wG?F?ΈH 4}]Sp>?u$\ ~':nqJU>^tDdicٽBtxөfp]Q~|b*^p7ҫ睢X9~a7eR?@&})fjΚ__u;Ȥ5UTb‰ RY+X[VR`GBޱޠN,v{U[]j|ޥ2""'4?/eN|5hV4i\.;tx#U\7AfKtWS*7w ''~yi}.xǠM*Mo"En'}tn*RS)L1Q>kB_aŤ  hѨCVÌk3F^M51R|\=?KTy o`çV|Wv=e8gWki~%%ђgar5q7PՄyiiO|q^Z!X (4r.F 4wݘ[|g7Phju[a#K?o#Oi& RmE_15x(#|^)PtiTش4D jǥiz lxJ l^}|?ys Rjq77`>f:3J?Y^x9#2:>ˋٿh w ?yqiQ }j@c#ݝ4yܾYy2O#pxx8n0y^+Q >-4Γ11izK╴)#URYiד:KNr]_5g4 6KWgL6mݒKCs-0Dr{'?Oy{Gy# 4yv=T -&~eqȾ]pavֆ"rAkPSBG`8=<e/ k蓡/uND#]7l*nt[' Yɬ}hRZjHnX`?(շܹ[L7iWɖJ'-&(Kd]X9%&d 9`[Kp%HjL)pz }}76ByUi7eN1yf$dlVCԅ5h+ϼ( I5̡UO"p&/G'f%TLBOA\T552>C1h ?/,a&{PN/͍)Yjm&׳ߥc| !L#C;/"W/R42OGܨĐ8(.WxS. GPSTb@Ĉt |  v?pFni{M[+dT\]'Vz9j18s_))̍ ,Jxc`W$x2 ZG1 ;N !CiJ(P|ݟ,fYja.Tnq.B1. ۮiY@΄- }4M"_GO.֛P=T{R1I?_M9V`Ys"!P~QB B xZkyi;t(neė"`ջw19RHgP*𫍥o (ap9|@8֡j4]i`E_#(UVoV=^Gk}+WdCx)M@CЅzv;=|gtx?~Ѳ с;Y8n#VױO`m9Aܜ̳P簚,*`:y ,i1.b.+IUDNF2ߋ fv)4om]e8!R^@Հj6&쑨1L}v "!]4(rXĚ% Y{)u__6ڀe5y`L#"LUxY02eԔ]“z/#jHJ}#؆EmIJ7rZxk-?L?Y7Qy9dnZ{+>ɹ&$8$~m >01y prqmv^8F|bWmϫgmGs&;ɼ&v{e|U')F&?en%$9_8~ Yig+5(o)p$VnAK5De~n4;Q{Ucp-\Z!_ć]&*vNܦ'?PIW^qi] S=G4 1omeǝhjul#P f>j\ADK>1Oↀ4^7JcIl6r@QQGyaHQ喼̓kWxj[\Q6>[x5y@@;qY 1Oi *|\{C*l*pr~+[G89](e΂+A_APf⯁Jk9+o(Thۯ*tZE&CuZ"aj^V=me{ƍWْ| Iϧٷ9w6~ؓTaQu˱S',(ZѤK0vN%7009m7DD=kMеkrOj ZqrwcJfg]&2ft?6UԎŵ5 wio3Nvo+i6J2)ap'*Դх ,D[j\ʳP*vmIFrr&ʨ3ξS skQCd*=%BDMѽF,RIjivwɒ% ̘ aṴp7=2dgUJ v^uf^fέj"!oP!q2/2ytSG{wz  晹298lyء/!RԒ0Q=>lrԛsRTQ]Dژ2BO%c4yO hy(7"Tq fÉ"Y.ie2b hΧ(c WxI-E;A_2$bK9]gј? #6ώF5m@`ǚn܄amRNaDU5- xj>c.g̟Et\ٗ--8U;w8p>kdɥo(>9e z]fŁ-^Qen7O@ÐxT(f04iQ>XR?F\'5,.^ :1O.d#EpBН@F71euј3?@}~Thcs<Eq HRLOe(;X’_JSM]b#TRª† |bmv|:byӤ畝{߿xG bZ9Ϳ9s9̌k+jޱN@r D%>!NJ7xGwkeCkd._;$ kֱQBD-'fY~E`uj)@}WŵaG7du5+fYmwnpe0Ʋ܋%WKu7GG0ʀ}[rT2E]V{Hˊ҆]#S}dgB zbKqaV!ڹ[܍h2h:+8 Et+jf7 :egQKE뻑wr(fA9QgA)^gѣDsQNRLBB4qldWj>}g nM( l߾:w{+_7Exz}mI൚q2nkt=YaEf9 O?6 j uyDr|eFHo"F~ )f19%7|;ӌXRkh,Oz?k0?ɣ Q4 x##̿@~6- }ofb"ɥ>2z KOfu{/m,Kꋂ惚UVf 5N<}Mz*-l=4B8:FI&=TLit8̙a#]TE. y71ǢP т˝7fZ ;qdA2eugp['al'dԲc EM;bv:%>ΐ9zفʡz_ƶgtiO}1#՜ F]ȶ'Tegt#Կi'f=8iTaShsP^@u4!]MCf\3B|뻭եwe$zjmё{Q9jcj>p}ItnOR [-_Iѧv-,E =sB7;+;;,ʎߡJ,(DAO8\з;I~ =spvhIJ'DOY;3360t0i~w(#4`4UOtD /q _K3&9PZǀ6w E#^Bn o 9N8`9<*w1,W.2*Sў[*905j|?1YT?LĿLҦjmWVϐݛĄ,uoBJUB&XRi5kMZFϳъdcT]{=g,ۧNϒsn.X&GV ˦cTO>S]eɓ"c2P=O|=I_ވ!@JW]) 7 ^RLn,91k i}ݩDSM]F϶! |ʹ#.S>V]k24OpMpu.Oʊ r^:`&?8E0cwCN*+`'1.K5nɎZc +~jo`|}{ۏoZ0%t]g~VWgN tfECRelufTu|~p<w:T\9:OҞ0OsJU7{vQ-\$Վ`c/f5z)S{fUWЈ?*1 5 ;cWpJfefIS]yW`ƕAF/-eI gS[CSKbmhg%EGbDБZJKxd>h#`Ja͇|17 -aڮY,ʂP\TG>nO9) odGC ~=TdӅ3n;k1ó NxTp _/B3D7J IӺҸ_KdORf1-@"C"qm 7L^?}GBo=9gݻ 'c:甔IIJf4ߵ1 <)3Ȫ)NXf&Po%FϿfSwl ⶩ~Jyȟ y^BQCoX>>`t=^99;TCB`'͹S#XP̒Td_o=hAWIM-Zk OVb&&Au7 ڛ `LhQ*ʈ!_. Cno7B٣nP$<^L0ApB>PVnK{'n0 &*Ғ|މLճKj]*tTsp)mm°VHh!p?]h&=my~oH%t' *iB&*\"N2.~4 ~Br0i@7⺩H0HfQe<!x4g\.\\樟r5ӯi;2B/=?5jxCyh W<\? ݑL'*|,;tJ} YR)xzr]q`rz ^_\mPVə1 Vyк49@c~Q43 Ƕ\d\V/#_lu-+ $S\Zc[ f댊D{aw)>?OY~:IHGsb\UC]! 'cIi6PVXEpmɃ$qծ\jLJ$2ְ+{s>["lRپ,5OyijfHTeehee]eDr$F \BZ^fbN JH!!1?2q顎ntKl>F~2ͫEU4Ӻ9MĹ cRƩ:ı>o0o yFUK/S:ͨV WzLlңcNG_b0ۨU ;W=œu2Ȃ߫N%k`s_{>eS&W G,tTL^-zď5_0$ A YyήY&'o5#cC@,U:m,lgHyvK@ ,206s9}BH`Na'F\F{&ٍ*KaCQp[&C3 etR\F@|LHڗ_nnNL/5ÎU0ъ;jIޥS|N`)^(ƯXrpj㔫X\VA r JxSLx4cr'˩Dw6'Lӆb,Raz@2.lH[o[>Id07qlfQ.)f2B[TSUf,sjC D][,CE9t+m٩XAYSʋE' uʂ vƅB .P=D/.AqBTr_tcaب/B_8} "F,}LqϦe἟ Ψ0Azڏ+8>S~nDyxZml9yŲgфۤVf0bM + -˧o_Z k#E`+LуSJ8poSI̦-Kp>m‚F\rGe8R?#wPglhؖ )v!7Օ efvEMO( ? Kw27\a.C~OXYPίIϔ<ДP AuAh7]K+\".7x=mX<v^BZۆdwLTJ=k@틊 +b2])"Zo\$0ı>'{ }n ґPܜ2O +}`/?n7坊ky(=H$DXPUm?zcsV*" c-rQvwR<]~̸w;d77YFXMq nV=h^Bo\1|ԓ\qlY#z\KR-ꭁ6,,&O }^:~^*oO}Ox烼Oh[!z VOQk֑ 6lx& x#NjSVT/vnNQWDZΚ\GTcbuAُKLIVkChUAɘ!1Ew.[5Ϭ跀p@|8Zʽ8>Đ@CF3ʰSo>C:8Y9?0"v' 혪c *$m 횯MYUQˆ 뇤~tXm?'Rcvtǚ@R54'm))ce 2p.NIQbXm41L;5jA4h sa%Ē -R8YZD1g V%}R4FTxT0e-%Cs6?1ĺ-Xb ;4~1 $Hm"S;%3,Ɔɂ2?NђS;b[8y.[|eYszF] S_x&6/3KV`fԩvy쩙j0FFohf3iA֎YiS=aw!v3wr(Q9 BsS^a[F]li>mAP*'kej cZtV:ՅoPq: 0R #4KO<$m|tD'|$H &H a\QU |g<353P~XWWEfhChAW(EWMnb]R~YԮ(P(ԸBCwUMS^l_|dF!Ą:JCI }Ƨ2$oјg2ΟZr,u-4D^]j-mA1~"Z&BNۤ]-fR9e{)R7xړ sߜD3# 3y?^+oF^x#ݼ-@j> >p +% q%aIYuSI'LY%xaySN}4cݱ*ZO\1y3>"AwVYƾG+̓KqHU^z%QG:)Y[tUrt^9*jQ,Fel\?30.y'; Bi@V*JZH㠁3yhf8=qYŀ\a'kq3C<U\[:uVuSMgT6Vu,K..Ii}dK`S0S֜[\N@r9aI\2"ĤMs !eY W-F?B81I8lٝ;)~6Lo%7?3D"WjrU! \hLj٥/3ܿCթ(6W 6f':9FKHT864INe~Đc|x̀UY50 ΐ D%q$jO9Ab eS>M WEgFסGYKv/{;LZqoŦ.UyL4u@iuz;z8f>P F)a>Ԡ_.zHI*5\n z3lLHleqz1YXKMw3=5 5A6}/J߹Mp9HDlP_@Iتo1m[&r_<V30:0P~"IW=4 (|G-c>ŕjj'i1 5`Ok;퍯P[ԠIxmXhBk@qĪ2+:if .r#^lE. 3,Po,ag:m[H ȓ9WcV'׊:O9?R(= hr>+6QÄWPS;p3@~{"0)p0K.eF+_3n;&++e2(jc |͢nR Y(0\gIf K BhЗWIVI?;(͒6`OGNWK@ߦ Oq#J`^e_"`OD>{ULJ=ۖדQ+g™FU{^K1y%X^'Z2^vZJbF`AX:E 1ECcN3()a\х5Y1f!6=dC RwWq#Lփy=1ӖAr9i3k ";T$# UoÛƹ5%F~C*H}>uݘQuZpmٝ6~WCzhZYoĜxwvа}vыA29G#̀Ib%e2/_94^Y" \'?(aSOqj *ۢ.J@WH i>601psjuE1rrY pa8yA?y{e3nr;[py;Wuzr-z%Pk. yʸrúT h$`Ѽs=7k@@0iJXE[؎OT:Hh@.4V8am ~LPOoHj|d;X*U2U& 7\1:[-һxlƼ~l\.rt/RB/ktPnqK hmZ|<CR_]Cv/-sb9E4FlwXvhE}8I``@nJ۲_.edݽB%H"*t=֊73z IJ-2)8LUn:m"NYY+m*%]9iW܈8CU&PM㪩_nfG>8eN[. +)zrڠٮ4Bl1$pP w6 h`bpA5(MT ,H4ڂŦk7UĹyW!z>}AWQn454[yU ?ZӦf2tG;='P>j]rF:U5x6}bPb]-65uS㬺H*_.{ `ڙ5^v, h"S\!oPfl"R PQeƋ1{2d/ĕC4fgObܓ^r op@988;lWcf&͍~qluaO.M;Erwv'u :.apTXhVMH{!!?M>4VбޕC~0f>?8;v?V0ҙ>otB",AvR0 Gjy e`>1.b66Ry[.\ #~Vļe?SK<u5eO/'JH %V|l N7۹4;Dyl%?0'*l?5/ ::F= a0 ʬ,`z1 U< P@tI_wydSkwZzoy|Ku3\=ƫjLeY Mq@Q8v^IrUMoy J8Rf XbPswP+eU0ۧ䐇gK=^R]eaypYrQ]@t?`I=Q$ K+ɮRbm  ]#H4l3p7?Oe 0&# 7͌qLn!YRķJ1Z f0=\3e^<8'EgwUO3nUru.ѹwdy"rN_8Gr9&c؀dM.\a &0/'%K}(m3 3{*{guM7JPf$rbٜ[Q)̺TاL=Nֺ=ĔQCLj8ϙTNxQr ؕHX$\TTsD,Ü~L9 blp(-$C mGm`Qѡ?-yL=EwҊZt {^,13ZMyiYHW Wj"N";|pXЛ-9.\LI.Y{+ڐၥ*EOYԖqY\VMˮi*A${.D>ےb  D IsX C?ʄᗁƤhXa6))`P^Ņ#Sꞌɝ'F,۲˛,]Όz!a Kb4UCC[L;kZ R!;mŞ} b&[uҔ 2斩V~%S^3ωY5%tϺuMܭsCe\@w)t{!Uv@)@?RvGvGppםسĮ( S`TD[TY4*GC[ 9V8*ޤY^NSS{ΐ-N@9#(FuN^^ 8g|e]~LwiQ\' l q}֮rq3 {8uf%Y ol,Πg -`̂3[\q>?)ɂirgDv' }* :dg>x(h^ZzsxF" ~ǫ}]spUѶ`c zrROlntL7{>#mG :1Jɿ\<*: h(0DfM/Q h%[@yWc@}TGWGA?X lӖMkw?+H@^*q?p/7ΉI@BT-Cct\(p*еxDftXtB{@{({q[]>E [ZEU-;?yCl^Wy4w677ϟ;:: YbFlfbcS'UTTtHUDe ] Ӝ-C%M‹ DiHE(Cei q 4KRB(u#UU&wC; ܂q@ 0i,d5F()+ANZw.)˒ɸLchI5V )lfy[d@yEBg2*J.Y )m"qtS *=3)!a fT4?!&̘M,UlʌuYpŒL?IiAAi .u,t^R ,(cU)>A;WlaG:eoC#RUܮ{}ggǏowavᔋv-(yy 4{~0{7K? ֯wz>)R&l't*ހTX?թ!%%h!($/Q?>uHW }@s޵ۼL\vb/tf}`>oVRRRo\]]ܞL2lѠ#+ڤʋ#{Ed'eIdA΍讑Έ!!$#K5"DJA`4EB8KۈP*X` %ܛ+p!ĹH$n@4g3%@"dl_kIcWd2Վ&g[!'H7l4Ia4*%a,)f=PPS𘖖'<'"Q|_K`8ΠR?OMtd:ŇSf$1asβ*aD[,<Ǥ:Ea+NB<"c/؂ RFw}ǏFqiidU$;hNB^ldeaᤎ˽_/ѯt}7c|o㱯#cxp'8EqE[`h U 8mP!0:/}CY\PGC1?{',@G_6 [jf$(D F˹|p؜ 5$t][stȈ*̙ EEiYпDبW;-C -1DݵcCCY.٘MT2,(BZ2>~ԙ ߁޾!4`5,SX陒jP,IMvjSL+?S#̢JGA>Y39Do$*Ŷ%sv Wψyb3^GAl*ftd>ZTht *j)2ʵ D[ \<:T=ss-ՊPUv6tvq3ۂBv.NvyqǁELht7w)? 9И,k sM{;GSsj#= o%([ ECq oWFY NA Tʧp5Hˀzٱ~:yp\?,|ʐ7ɯe6yy"gGZeLZf6xs֊LRʖƑ0l'NT`,O.,OjE" )s DW.*ef%`n*>\?Q+8/w{gOirʟ(Gb*B)PO}LR ()O"jPmrh:͍A2d! M{e0$oS !ut9 AM$Dx00,(WaډV:ʳ9OR@Ysr' ƗJ@c%R!EO}ĤltH3̲r&2lTdu9y7B2ΰw & ٔeD餁J)ag F#AvpaB^CȣJrAHO] %ۆ!OG7VDh4Gt@ fͧ׽8#v8jk.NВС[#e~C#Չb$3.3[g& ||JĦqVo<09NВ3Hzl8`ZU9Q쁒&1`j+wYZu*׸採V1SPE<lrr+γbZOҢsC6凶j&%Y|;&eq4¨ZKj`DPAIL~gpQ;W&V"F,6VÃU^,!Zp\SVN-$${b ]Ϫ,&W8m1f b KEzԤp/yzR(mIcBlk {# VhtǣKΰgawt|:hiY ˮ<}05%ӄԬj:InZ,MKz?ї{rT޾Jb&{`ٺ_wY?tQB9TA}co5_7G٣\KKo+m!Ym{ImpO\:J-^643G!t&qg,¶>[CĨqf5!rrfgS+}z*u]X&bu3 -g1f#p OO$%'6JA } ѹ/:p&ZJqH<xwjIQ80Ilon*4+zfpDxuob~ ;3ev]LJx@J؇qmN ĈC YRG3r}G%75 7ٚh{`G^U)0E ?`ЏC4e޷%Ѓ4#%U1OπrB)MQ~z?pqI.6g-c]G'mЦٽSo-OG|uJ .Ro*!QBvgSo <A7).1.Qέ-ܻ\ש˴o>6hX_-[\4 9/ia{;gSw.8@A/V!ҹS>B7:VIfw[q[͛ܕ;H`6$fߓ`ᳲGPDj]I,fy;?(G8buNl"rAn鼘`x|>kT1%nbϘTȄSS/P :m<{sGY-!'m㿳QUF%/B P)b(hi[&~ dhlɱV*5;v|)8?Ђ5:ƍi x%ŗޟ&J8)#˫ Ca(֙9=_? óm/j ܼbfp<sq ّNh#S .%JOBiRS mF 6„ 5'+r\!082*IrDzw,kqORiUv;A$I,o4b؀ r5|H6 M7Xt-eYL9dž*]gG9iM$>;Yq<#8GI7\g@to#Pj2lFydg~:| ƒWZ[`J&B Ş*[W5XPh1Wj*! O&/wœ_(\:$['ɚf9 Q-Z=X茍"*F!Zwf?3i 0[P/2bhA*Y*Xd9f<:h"lި[IV#0!Ajy00-})}YdKTJ=7{pv`iUWh3[DNRVֱ}8 KM~2eP"9IOn[sH}H\ =#'Ƶ^5Ŋ&f(L(t&& ȃ;XL XbtS}L-MA⁾3M,CE9f()>;Rp =g6 T#AN /|.ؚ% <%d,7arX|SYyL'<Vʇq^8Eoh&͋Qckrk_Rg~VѳF.KO [ՋO A?P9\5rpqSvdEUpH|Z[n ʾϨ)9^)c/[Sa7ר:fXQIW ?"c0x*B;e H{Lm+N*m6+m۶m۶m'Ol[Z~{txq^:=ٵKT[ Ψ|~Hqw=ƝkOF(D2j{q׋}լ:x\ 5[3^9{vGi g(²Գ߽z:al)A{?_# ÁOLɜn_tP Mq+q,YLj0 HJPX1r'\#5*մ~Bag7",Y+:+06V54D&q!력XϋǬA/ǒm˭|TJp¤Q~gKÑVDp3X %=zɸՙ= NT Tk05/yϊ䬖LJe>яiίb_0eWTtq9'ɘ+4kRZgKꏧt)DrU;8DX+o#0b8c:{`2^NK4@]+pLd'!{7YnR"Hʧ\+?nQPֲЩ\U`bF`fctߎ{ϒwn# 5$D"7[)+^nnJ&w8@vd.,6aFi H%[y OtP0_8͵7 TVI(!ø(DT[@l4 /Վ< 'r\^\#T4*zue>IhAF8knLD9R'`*zj3GDoBq;^`9;mZ]X 暗OGnϋ r*9z-x+fuopwc9'ێkywi!XtO4ebtj GزKWn &UN1(јrYak i,iN e' m_:\M]/U<N>| (A4BgNu)8]3?̨&'CIj۔ gճ9&!QGSzIYn"2+-V*J 2Hf ' ӑv(W1> 1>~ǔX]]s!]*6PڂKPgMXX\{Y:;J5hWBs=\NI=#[2~E$=cDަpY5P*[b*{_Z P }@1\('ʯ t>ZXu.6="ITc)e'H`r0;֙;C#qstZT>+BFw[nM+L}+ÔHlHFwa@8w/i9cpݰX> >Xʿ8Z.МdĄ颬ZkØ~@&b+"m 6C?hH^銇 ^b$(kKj&r/6:Bښw¯MHL郭H!cΟ|6e-L{%* vD1Qhhh,F >ٵoؚ`,11ε`*\W%&w=#,^TTg%v<`AEgшOE6H<&H&yNlL%q…C! > KchZV5>HgMl_s%KiG#:g4ѣ mR2E_![Gt &3SD3ʯ*G{#hY)lk`^@i9$->e\FjE7HA&8W2r P˟Q\\{܅ZU  Lb*_秘5e<3$^%9^nY1/O-#%Z)s!]33"whG*6jiO-}-Z$txT]f)Rr\>ĺ0(,a\Շ63\X8uNܐr6]MX"Mv^l~qDΰn"mr)cDc\ *J^bd:3D;Lt<= xB_#2p)c߫lRA䣜yT4XI} W= &ǝH[}Jt7đ uEe`WePEnR RU޸#SK8OOe2K[n9orNI{yۅJ^Cb]Jk3d4:_Gi||8sGV* $+u^~*hWI !P k YIb'sOuH;')dBn܋JF<;Pntdt%,/Yh`23Ll>\k>8-Fif?:4J]4X}Vs"# D' F[ <_h Qi]3DK> a*[z  \&f˨eC5Dڊ'FQհvYEwʽ$c* Ko)"GVyD\Nv1QE5pJɥh"˓"UK&nmfYYQܙݕa'U~3QlvPݚ"Ȇ7x Tw9cOt 5J;ZG<{2 G$p"AorcO:CBV0įdǬK%R/Aǿl&$+e1LH^ȴȎkDl~D;7/op [KKZ+瘚XhUn J qɏOsapyنJ7[H&Ǹ_:.Eݫ |O*x|%37#uP"eҤڤĔE$ŶN9L8x?t4 `lQ} GM\}0TS'B*vGt=\cb-"붩cy ?!ˀIRԲCl'r)='"!AuN\ujFE$RyMJ#}}|9R# gn޸mTM b{yaۢ㽎 A9k8:4=K7`KVo-P{ix\N-EKSV,AG-<1K!||Ng'._f"u1ͦ(A00DD9k\8@Boz0734{ ,#ZhъZ4 *F:S2ǕY猞"|ׁN1)(xAEQډ\8>Ec[cD 0XӹΑI Di Ede,uN)i{qsk?gÜVy FD]:DɈ|w~#i*FbŨ['!({$1Vz3-Bdx␳$n :N-7VH+sV|i!Wd$io5߿:u]cE4˿'-G|1x%BC_Rᅖ*YAP ަ6*TlFz Ec"o^>/w19ʼt3|  Pމמ]ul@R.>Xި /B3.4XAn2l ̾\IVEȦBr?NakbZɍ kMįBz8p%%8 dCpuDA1e?׫m5'ʎH#YÀm8^PZiW'J(>sIx"57C.-dp^ZGfs\;po?\ 4poFs 'k5 6XD|s 4%)&y(+$ ^+>Pni]{+6O>5Ku ᯭCKdJ!?dj%Zqݡ|E7$4ehڗ`:q(X9%>W>yVk`&HP,ecen^˽D$.5~zFL/p>>drWryu[Ɛl$A :, H+poQR^8hN,}X\e_duFUE@٢.Qζ: RwLXLpυJyIlC#ll YWHD[D~!#9 -DzҟWV@Gv >n3x'wT3գ,dQF]jZHH]vfu4lu7]&aOа&> dbQ˸W:,u"k=yU& L[Ԕ^PDt Aq-fC-nVGUfM$Tv-pq sF=OǶY%tR۝Rx}7HaR1˰W>aվt㰸أT7)՜.+}ǡF[2iYGok*MW dx(^9uY2xidɻi t’E?O%&EYvF!l5wzl7d,8f(S~dz]X`e386 >UdFlROJO|@c4i⋨M)T %PGb"[w b}^HwgqM׍><{#L\_r'Nb[-qI5YEX$ʽz'KW݅a$5{M- $+f P||uZJ"?db7ޚ%ƃW9(xBdWzۋC-@@Sɺ=l'1M cy~zfR`GXNmԄu$4fdJ$R'؉m}a_ˁlV JPPuςr);* ~~EO":ԍD$8YቃCSi]n#jQo]Ā0r]DI˶B(iy+5;0 eG,P}LAU &ӌi&/ Z/U%\⌛֟@0o.].aJ%BwI*}']NYͪ*ሌ=؝Cb ͒S?w$BwRa5!TY::N>Z=`ܡ $dՎ@)!'=m IGVT-^!| / OCicnD^-)VRG?ꥮfTPrzIi`pI8UWu#4eD!)\o)ɴy>ǛZxQ$zǃ#/=#l&tG<{#6OHL)FAZR5݇666xet̕ a툜le+;(ؠB?r9;c}~'Wȭ{!,pHi]:4kv|x ἶk $Li?ӲֻiIܖV4⸮Ț[[' "u.;vlЍq>hGX}"7Y^[`B)0g"a{džÊ寯U`ONIO槙:lkY oOHMB9criDr"|WSDgtPf5~? V,:dX$ĹN.,dNY[2,#O7z̀&/GR!Xa Q^bæS FuLvPM֊."cm}(Sz~;]s*^O;R?X?}*S(ܸ!"pO/Ւ10 UpԵ;}!rov+VpX{ >y7H)2~姰*dqD\[#@Vjv הqO|ahWsxƲB஝YV1/2{ηP X!%3\9LC*k5CЦXI@5뢭uI9?gBVMgy3̻ŵaKNqPHv1|C1XFaGaFŭ#(7SWQg]D@7#?jwxQUkӵ=b^4& XK[h4QV4qb A=Dbi:TVx.18F'Y r sOq&3$>4vycqzq3,*פJ4;G țf{W*UU{ɑ0͠n#HP^u2xE$s3=)WGЬGh"BŃ0[\˚J m)_#ӫUg]7-ꓰIݴo8ErIwp* +X?Z,; xHF@LeF?i i3!iCʛ Ɩb娑}J4_qmR Cd'`8膼S}' h">BP+vNݷzV)d%_Vy[ |?{Hed}GUf@[p!!?)yU_Hb&ߚN/A$=ea5Ī'n\ biqUD78:B z*h8=NV$QB0n >b+?9,i_!$?%в5zXN; 3̢q"g6{UB$#7"i_cPl8YcVoVaG T 4DIQ[LHmQB d筤ZJiRjR<ﲜ'X* Mc,`٭ojpB-V]ԮH[ogLh8_nn!zc>]ouԷ5aׯ$g`T^l2fmĬQ&ƛR*9Jia/t\&8VSwh4ۺ ~{ J0jQ0SPL9^M1D@D*zy)@K)Ք#UjԞsyê=)Wsi,iǩ9[8˨"mkmrt`SHSwAu 5E6tFtLXQ{ȏ!IM'<,5$㟖 )6SZ\cS([rNyDъI7ۑ@jt'+?wͲ)+5XTn)ҙUUfSR@.YL0>#WInT^l-l+S^G1.g U/!?dRW <.J/纰LZ<.LǜRz+z<}Gp*i$_j9pH,i̾\Yx^Ȏ2jrLQ|g+[m="eO;l>:?H UCn6h=xKq`^]:xUnJ)b0zĿV#`=W$ ;`峿3l;u3$E|+#ZI>:Ki'X~#I kQ[׽0a Y-Df\!p7raOua=n\z-5Mc.t #<_ޱNT嬳HȻR=}, 461ssjj5XA”E|`LSFi5>,DlPi^(`UZr:2WoG5e#^^EkU X  Rf%Zȕ8:) DcmײWͧ)?O#1~>sSjAi_tѾ<3ż]t@24sBcU*[Dx-2aC4tʖ+ AXľ"I%K¥+_UXcDEϋE5%hx5$?^?ULU3VHLGD&p鎆 %F6`x_E 2#̛ʖoяߖʭZN2 B* _2rSk k  5޸"DH:Jr3.7–iSeN I6g UT46YbRmvE-tu]J(r9iȣ d3柂6=Z2xR߁.S[D7U{e`TW2DVmd%: d*\/a)t?խ@ч)9hB̒-XRP ]\kypZ} WR8!=l-vrY74HnUL]"\Z)'Z.)5"hdIߕ7՝Rr&M#\*!\J9-„zUnCGЁiQfG䌻ئ`^Ji\1W_Vڂ4f'u6_:%sRS6u9ɳW -$3`z w _srao[h-cRT~mW'5jˢF`Y٧!u㫨 GN>u,بe%pq r9H vx {h=J}mB Z5KCl#ۦ".WrQY%BUiRY4ܶ.j6%-3|1#+ɳV׀M |="ǩ&H{ oAǓHxJ'M1O3t)Gp*rbxRNX Fu֋ņv+jְӀc+Z*?%( \NJ#&7!s1ܺk֖Lb_K#q?*Bny9$dyй^;Ϣz~RyU没T ?c`uac%{6N:ꙫu,ٗK{ʅGw8!Lq@~e=dAK%V{N[ALS\m-KK?Gϵi2j:"aXM)H)`ADFJobzTс-jvF,;:M K@z~flzᘫdV3SdljqF]: xNI\{酛k#uY BΑ &DHRzXCilʁ=+@xXٛ!Dh?`V xjjkx`C=8"C@R 0e-@xr27QYnJb2Bj'az X-ya,6FW0DoI^nJbER:ȇhHi)N0C_c#d rd'9J'=#mΩQáݱMeps5n8OP?WHihNgU `g([CDP>)t,In R]#V儝M8Ra8kYGaiP:5_6+^!9\*Y lPճ3/2Q<\o-訝 L`wj|νhu gВh24yzM&GԊu1TmPTl_ŋ2* ҿ/k'L/l2kSB/g*m)LX0rrX>+*'a)+ 3tY2Tn!+,d7@!+$Rv% )Z}{kց'Wy&<7 7C rJ@J. uSw&T dn92&Q>Q.Ë]6(NVG y9O2N:[oryy)|}'A+v=m!qʃ;zkE#G8W`b"W$w36ݿ 7uUȱ# 'p9ANB<GM+7)T_]J)P[2s TzS&pqzz'HfSSSsFeN%!zBmڇ6EoV&%ZV?(-4WUݡ"a[T%1y9 PŖiZ?(b}t%؁=8kk.+:]&|Jů~stHw{"- ?iU˅]0_z* [fR T~)Z i,tzN^%SĉO9 s1̃~n*Q J|VVZ"KKXO3v V|8O)Ya|;P͞~w']WIt) ~UT "`D!@<@IJP%7;,K<>>dpp?8;ϨOލW`ƪ$&y,L0!:74)-|S6nDͰ\uGMᕴge+3wݰ]T"wCaB, `Kb [8a›}?E`e?ƣ)։&23t2*Q̋9D@TPf14p"sg#Dh4U;:6DLrjda}7)X[\ӶmZӶm^Ӷm۶m۶>q}zΪQ=FfvmoM[5`i/vmJh}@`:uj۔nkPc;q XW`W:0kF9ç1o7DZɺl7x1Q#ϋI넘4eaCK#[9g8aNnlҢraݭXXpjU2s9B3gB;!>&5w&-;{4=_oWo)rag]Ig ZP>tf!@!MޗЊ;k9܈Tr^g7F8R'kM$WL$'~)[% $F~Qo. N?ek}v`#(mٽQ0 Mwu0jp$>\m q1xoP!@SUZ X#酢N*/%nwmDSցE|7-D> Uae^ŶFc>7Y%|m Ŋ9C)YcqʥM_^9c 4~$>{SiDҚފYm1&x-i/,^abmFv7V$bl{(sINUtr]xC1{f2e,SS\iUݚBUT*1)e5_Z嬧 Ͻ8܅^f%Ù5 [0c)üKT>ܬ8F]Զ5TKJYFd=3_&PUadDHsFA^FlY&cjɊUqINq!q/|%TG@`Z:q^.tCK f1#:dr8ρYgy.]Kp ?@2 C%Iڴb/KpPmГ%QRTf?F̙IbKp8GRhKZ_mڒC"`H2{XK!%Q.sf3Kf@:֥Ta 41 b'/B{1ۭh.ǟj7c h9M^]-ےuuш^Mk d^o$ƙlT[5 bnZ?v\+v6SWSG:_k]WE6' &hɺF"y,CvX쨕㞫9㕍ҐM /2ʐ/3s'P;HuT 8Wh\,: 0F6{h*]۵ &-!ЉZWٙ_@>)$BFׂ)#qƬ[~$̌c6!iqdL6a%UD͘e=ٰ!Ε^8Goz<%c3˃ /*wӆqn !M|? t^Spϙ_#VFe,p9AA"꤀ fbG_x8) Q ʠz=G`a'NVLG_49 BWɨ06nQbPеR-K@zt0eg0D%aiZKSecƶ"0v觮eOLubiA"^ »Ka|o[N!/}<@@}k lӲ[lZś|X$pۯ2((s_uA2Ka#h'z%&Ib ll=s#> й2^*Mޞ>Y<1|krFqain_5SũF_ʛOLPC[|m yl iEjMᤲ|?PR0,e jS+ʥmT;dOPI'OIg:o]I* C6Ȳο{/ c|kK)(*a'Iy\ԟ|c6E@g?9ղQQY-1S9Ɲ*@brn =%ɕ4Ws<*Y(dDVzh4K  *׼6':8~CK܈z-} (rYBoVr{vĨJkE #ГD1. \SKTёNUb*QV&K{.35p 6j^O8)E11#AV0cmZŷWC=Nëkp (F9UC*^ÛQ;}x% s},l1#:N$\*p].p&ݰUbKOJNR(H2eB YSLҟe*FtN뀋!B,P-l*$/#Wk,c{ULvdCtR+ '!w~"^N㽦!ʏ+t+ \ߦV(m7zcduP獁N)TB ZC<F{;4G"aeİbTX(D{U.uNZqgm} wa"}W)+Aq6Kwz8벟eqso:c5kHh~~ cO\i`o]+|ګJTzjF2rU!Q3r!wo™ddVZC=:ᠦOy,uOfO?u  T O4x4m@g^o.c͒:C1,25£1) /H\5_!|a賘|>yaj4ӜL^Zv˥.# LG,K![g+cA+sC˿sP[aBfC'w$AV=|k2u)Z w.E٢0_.2 b6v]&iM!^ 8Xp~cNa7I(&>Ie~Q:4%/N[b=6k@}a}Sٟ`9-wpgY]X .k8"t=J tE[q{5sr*bfT׈8qvl0V JW ¶Qpjhzx9C8(5'~_?jseQepbe0r$=*P>JÑßN_dLCg.zRX~R cc::[_au[]x<0 3қ3RAúDCθ,b~Fh}Ynŋ}D`tw6'La !訫R\*=Sv_=זK܁5y),rˀmU +Y%* _l@^ե52rϲ StO&9\?;wȕcF(;)zlr=zf0W+) aZWS XObp8Ϊ'n@X/"\+X aQdq!q5dOcGƂg vsR|pwh5߫10nML?gB RܤK3+#Չ==ǂ RT7/Eu:Ş[yڬXKj;y=2[#= Lr&g+@-ث̀Wq@cJK&٫emkRۍ1E/`/lٙaZ*ie ugZ,.ؕg@֬SE ($s@O H&ÿE+,ؔ-&%[D YCQp# 2 8dx+[w 4xq&CWW[ҍT:';Ypc3G.% Իuz$Nk0%~ԩ x‰cRy|?a efC@hMCW!k>E' gBj6]{ 9PP:LF&PŰF&кOr(VQ0,2S$!K8z=g|k,ӔQFJvScK9EYxN/|1V eY8ƗBNh&%,hTI}T8P'_5K JsPD"?e>Eԃtt Ox#ݏɻt3x3ZCdB#LǾЛ3[A[S걡sycuދ`4f? B9Ȉu/\wĢKwmLf bR&ɨ-tP\X(j96s n swz{ˣΏO͌L~d6ʨS(¾NJF>R_Һeצhjbߩ yRI ?u#Dۻϟ>+-)z[92 %N)fqS8tzW"= UO^Xֺ!S5}ҼAc޿jPnK1I+9ժñz~}F4c"@vWхu*\וF~sޅ0E. UFcgL|LW%mL/93'>/T'fg\uU$ ['umw,2 Lj+Gӻ0VwB\ S$jɒ!&#*.V\<5\V0QnV.8,}G"x9ۭaL%LKBE Z`CUJD-I}C=d0Gngz . piׯJ ši6A-h[ԂObb?M5Q&MQz8%xliR>dvC4~TF[M&ݟ#P~9a'o+ R]07&Pk qC 2 T+b1R7QbdI\I*L'(˼.f214e-3mVb4 *aBkp " { Ъd&ŊG(,\ Gh\OXC)MZ){ _A XRt^uQʹ}T6\1Ε F}w'CFYtի?DD&7`ƺ"`UIj7JD+ f[E-A(9 G8~#PկX_W#Q!Hߎ%U֦\ έG]zc_^.ڣ}e Q\cgW}rz0*?}e|*4Cy(Xh ˼fwt_rUxJ8g=@ ـhSe9 a ADtC/pC6q!JjpdH4cz;:|tРg wkeZeUq[I[u/F3O()G7"yW}t ~e5T:W(yƽ(q(g:̞!kxyk!89yzPJbIb~ 6i ;0H~o>DZRDU1y?~.aGSEuU~ix>vFy:R|-{nx=U5K57a3C@Փ.Z]6{{u)4R+-vpg0EAxI &*b<8 3 "H2Bi.< mvwbz> >r+(ڌJ7,^މ+:)^떽SSXx vK/\~V!8(:_t̚1d^=} c^2V"t^(գ]ceU4^*"Gm*˷QԖaՉ pSk2Enǵ/3n+]7 elօZHOy-$%f*@58uO$ܤa p7B:5bq ۄnD'hitԐ]58Jٕ?@1-d'Ui5HƝ."F/t+)qm@վ9$'vzU>i<&Z ou &H8:rl)\A%c0Uǣ; $ƦXQ"yiO|=-|䙙^3|3;xf9Z^T1NUE^㧸*!LHԑJ!mgkz*I@3L=]>QOe1>N+޺j{a6s)$TE=]Q/>^Q J;J\}Ku,^{O܂ T@d؀x='6_l~kD O"_+:;[GEb-OD}u3'քœ]7]/;?d ~cO75,R>e۵E(3@!+Q4D^0]@s7IXA?φfWڭ?2Xi?s4`' dۺW hAixTL]U m |x9G=DjlQdXej)-˝70#iͻleOm5 ]`JOr+|!R)L)F@v`"?aXc> Bdz 򗐚Ww)r̵<Ѫڣܓ2Y\܅#>p,eNmn[a5P<&K]ٶ0V}GXg*[r:.['(,AFQJltV7s^ʈɐ1],AKuJR zN|bIb(Y JPK̽T$ @zrƯ6ZIzqCʢy:N}*{-_k}vL3P8wчvcăn6$jd4C, Y)q+v> ]$s,'lZ_w<*5'U(5 OmEgԖ}jympPw0Y 8Q ,U'suK1ӚpFt씴OqωZʍRs޻P@_xae=#E~4@W>b?w+F}Sõ.30gO+: oѷIٰۇ+=$H~0y5M|o˄ o>-ŠC44\:RMJ @QElTr06.5]e2X97!i  aЎ ,jP\~dKҁq!P#C%]$?r=ldPE~_WMr($WM?="-͡ܗdZT)hAäDz|: x1dma=ُ*D)qY?7]Lu3Qc)b鰛ДZVgEM1U0toIk7Xڍ~^:HVBTm()rE QZ} A)+GzE'"+w*PSjfZ "> : eYaEL>?zaA*)kJ}"GixC3c*#sG  ?3cGVpt{geQɒ2' yCrO/v5p2@S7y+?㇯Jo";Hc$iH h j~TnL'WPw=n3zCGP'k2LAdױc'I\ڹ[»0:hx"[f)*`78^bqyJA@*ߤD5'؆ D$3 t.}fyEINY蠱 &⸀4 ;?o+I c49Vuؿői|$Ԇ^dP%FC$괆M]Qnt n{jnG_XNZ2p]cpb sQbyFMe^_IԄ?聯-- -oQ2Z3o "V_cD շ3 &Ç}E"4eZcIhϻJ~%.Rx@X'^t>19ᶇXE^<8b] j Сٗ0 wh f2ꈆm,sG?DI؅>YqjB^`܂QKh!G>ɮzPqpUuN^GŸsPz ̳<#>nݛb;n0Uju+/z;8PT]baϯo -fVJ>O *v3O?xZJݬeTS˙FIWIu CQ{$s i՟!8c*ub%KMn x>U<uǺɺkVlԄks7 uCв,#H|rم{rHl|'%Jegp0m_ .jmS:=88i/9!4޺0?c<|Ad@zh2dA[<]Ry쬴C3F y%I$K׆13Vmf tܔfCx*H Gae8\)f:p2 Х4zr4UZKʟ?0q4 *&zN: p -< מr\G6Kcf$ެ=gH 0&0 <Ӌ[8Q~fTfJ*Nl(;o腵W=Zpvll) NGZW W.fM6)#\Nc*K *|^oA zE̢bS^T*O6ےf+tA A;1n!Lly^J-('B<'V [foa{-R_=6B2!Nlf2^}̹ f̈́vm<x6P! 11"+ _8. E..LpzS.Md(G5|}@ϓ񵕻Cx=b&>YKuldm#3Uf֕-$X>F-&yR+ TR6wP_ߛ>s 1Z*,t/ˉ3pjt0O|)9[zw|JזV=>} F{{(ɖD)^, %\8A>z{,aO;a?R\>Կ&x h#H@`9]wANCP:A&ǥ^.&5R+(sFO+Ɋ]uRWS)9Tѭ 3T8.e!s%R%a n][ѰX %zjcnmSro h}qߌ#ҟ qy|wqq_5(S!G Swe!mk;j JWsl?8bj~1AkVzwlw(O|*aA.gb'4˞uf.Y.77&G מr7s{; +љȶmòF# 181%/Ȥ/+ۀ&aɵLRk ,6&>ZyDHEL(DAYb+]afMZh!M<'Su@a{@*ak z(-rP"NΉHKY&F%fT%# QtA|q-nt}Ml@V`2/HYh (1]L5VTP+EMhb׃aRCWBypBu[9{MhmGG8ImǓ,|:h+V*ijU')959t]KlQC&S; anfJz*`g'uqnbZ-T,nF|K}Ki <됚l}?=<>?l|PZqUF#9&@j0!X}9k%Ë%Ay谳I1hp!i!f# Se`>f]9\ΟРB 'h `&sЗJP[tRu"bSdžb#ͭyWq)AI=HrKLHV`fh't$H̔9(9?=HH}ªD~RZ%%n9p//ScK>aжPRXp.kJNED<uJ{SV(RNbVs)kCF75~+I(((:v//R'/ū) ?GvE1S#2Mҗk}I@2 e{&:{)\Z3YyLhw' 5wLYYjJVBdp)ZX^8Zz[)"BFd=2Ln\{J(de+$d%"n}{^^y<{ytKN%nCX.M yc&o ?wPI)r)VwJ[}G A9KK㭼ߑeoSgXxY";Oκ3{yAlj-Ojtf3<3] v y|g sK{ᗪ$_^Ǟ | i)ZH\kX:Xqz7' %ȴ^w3z;uL5\I]/'l.__vbJ)@)`#hCylDAˈC]ӟaLKo}3S{6;Yl?d0y w9BCeC% IyS\o:aÏw7ENJ{|Ǖ_ec!Q~˜b}uĘru댓_Gu?O~>>l^dUrs\O^v΂i#G=jTdN0QQ'ֻܠH7`P E;aNn" Y۪GCq\SSP!s++b)+c-y:9%x$WԏQݱi)lr+};'5J % áNY9Ywt6c{h*H)afzӯQ WWȈ7A+x̎p/s dZ+dƺ :UV-qRsߐY!ZJ25xЀHdpVO848PwnjXْp V}.7xq,UWꮕ%ٵ oԟO>?"L^x3eB\sxhɸ%R"o%6kw5KE9G^ƨ~vShKz%˱xяuK$>z6K7*k!ٳ'_\0>u׷N(uJ @*Eyz^}73V}eG/i茡vzW"#߽"yx>!-˱OO*$BO&bCKc&kX.~amLKS0;,*-Alى}ˤǢY\9MQ=e[Wo^R1ӫwx\Ӷ4k3DO=ewt7\=n [+|eIFiI9^bH8vUɫڒZZ94\>T`,/xrvݵowDloΪ)5`x==Fpp˩gzc9򱱖iF`s\ܣլ! Ϸ\Cfg9_İ6>2CMer2QY8Wrr/:oZ$XX }wV+3N}di~KE?%hgQl0;NT6Uz0dI6t*2?:B]LψmdЉ %H -,x׳||rq֩Ƽqլ`gMFgj8A}ҵ]Yikzt=t3Ӫ~|w7D\绰Z2ktY>RX-0^~WP/7. ٪@3s~Qeo). J~]7$MŒ.di*^1`IKcԥ4b^5߮3sg6v+<$ޜw[g?]O÷r1IO)8D42]7'[;<GgS;kvDo~H/̤ŔN.UVټNTJO2 ҚsA4Ş?5)Y-\BC ?qr0juB/52GޅI6~C[]/Mh0| ]]u3\!Bi0r^ҶNhv跸Kas|^{f ~/H'h1b.pY:2㠥cF*vɖh*Xٰꐴ[LQiD$ȨX~TL'>xXQ\ꤿI,Wzu8'aET /Wom{I mť4n eSH8>|QԭW&Eq/%î+Zf?(ӥqeO2\)[hV\*2l_ :9XM=9{&V/!}`~_\CJ˴׵.OlFDbJwx[r'p>vNd%zm)n4R ƟS1#7,/<~&cuy^3AR_?f3~KR2u6#VndVmFz|7kvHUrLUگ_%w]m>+%m1 Mjtժ=q$Q6Aۺ;JdεtDHmVVe\fbk56nӇL8‚q~G0SczyE@Nb:^".tYkP4D9|aWI"eV>uڬ toyzNΒuHmG%&wllMs CN: 8WyG;mic0;GK Q҉Ѣkj{T('/X0+ F楲A):;Zē,)NA^vbMpl鳋ׯxԺ״]{֛fR{V5JRa&풗px6/5MQVq`3OaXAb k:o=Ӎu>niǞ8f%"V.VX-U+sBsSr/op߽hE,_pۻ3q˶[z$ƽ.N=WA;+,^f"\HD;;r!"s iX{=!5K|Fy6ZL3hT5:5}IWhl'ۧUd?}kѾ<&(hj=t]6l[[WY!t2X2˧1Y_tx&k֚Ƴjv+eK\-S=-095N'sY&,쏴C-[JM ;2nE2{n4F뗽4KN 0o߾ 5" k5ݻ?xh'mYI1NwjVq,i iɧbaj8"r;mfhnz?zjaX9+[7sCםKRe`[V<*sovwJ]82O *kPL~FZџQG gNSe=ͷuAy:@vPQ^<0׃&./Պ|.x?^O-rz@;aH%" ŋ\D4Z!~:S?8˶_ҷʍ._X>䋠VSYv5 !ѝϫ6Fcrjc*78?u.iz;RpbUstaVjߜ=Ÿmy$uG.x=i;,3@""6c"8ӑOb $4HpaR;h:Z1r1UKƴm1;kY.>Pnvbye,I|kޤr;-_C/f⣻B-Mv[su4M6đ]!Pj'0qgүS,"(M1- BJKN]IC2;C9)*͆iߛm_GEJQE\#Hţ!jGDF[K95mU?*_/opOw_Kuᠩ!ځ31؟-@ >.8ob_:Z}<lb}7pOEaf(>ȝ#|1k6P֎<:1wO0&y.DKhFp8!nv#aTꕶ~.z=P5ԚjyT]72OA_Q u~EEE@jFnVA3I =740Z@FCPfW̨A% Bo~ *3 &/p@ zWփ98@M~y"E۽rp88`;i%Sg@QpHGT wFVhsI!Z\A q=0q+aD hiWt]3?]Pukdb(M)k8p{v м`oQ^]_k /wh SF[s]y'ӇQ!"f O4]ൊtrO8 =0uDq) ĥ@ska+8@R;}Oˁ5KZp@ G'2te6X٫8=џ,$E@~`]CPXhrHh@ɣiG,d} 3"k[!xRLKpD'0>>N6 6`\Dkǘ׀J !u(79>Dnalbx޷|`/|pŌp\n$ffd3l{ axeZ 9p]uCaJCx 4nM(*MI"@)@P K?z|;?KRbӱc @'0Zi!VK"tܤa`4z](,t(0a8+|UrPa]BhtmcKw0ܝ-2prqFQnC9ˀ=aQ9w!G:aRG)ؔ@Y0,805>?II8 (k%~T\0qaU~ƍcVra ,!{@a8ɰ房B$a ԝ6.=Q a,`mI KȽ{@k>DqocJ] =Dp"xaD KwĮao m[cw^C 0r`oW螌g%tvró?Ro #u;a!|{a#`l"B_u9ǸɁI־ ɈCưNC1xϤ1jZFMl"hL=?focx}H&B꾋7У_#9O7@a )βw@KqAh}_Nρ8PKgm= jTDS/lib/x64/PKhm=jTDS/lib/x64/SSO/PK;5|EjTDS/lib/x64/SSO/ntlmauth.dll} @UQca&"Ƞ(T Brkx_ ]Zjk?uoՖ[-)[mҮ۾DG537o\<9Ϲw7pB'G7x娷8WRZmrUq +**E*%UK+̶bgRllؾsS/q<ޢiixcoRxc)\]..-*A<}i"x[e/7 KY\H1Ro7XadXPvfނG rr!NHitAwr;A H\?9Itֈq{@fP,$pG'%l`,4 nc|IU,#mc3pvΓvq|βJ(";yo9!GܟY#x,aDCԜfq~}|Oj:.} F7 K UO8 wrK55<8pA>a* n9PTi*J Nӎ;f)݇S7ćxu0:3RG5^r-> 3,c~3|bxO\dVGW$f?HhXWj#u(ȱObnj9vR;nwrEc7_|@ JG#X)eW. c^S2 2)jNOAG]PM{x+zuo̔$fu8x HޡԄ$IU@/E\^RB ML:4":*6 >&D`<;XgРd@{R1%6*य़ЖSf| H0Jek4 ]T=5$ \v$ 0$T/O\]SNVb3w2^lc_Yj>S&=]k!Ue{\"!m-t:~3G$(^zua Am;J_˝b0'1'%CQ}ZJ(tv4"!PXn7W40 5ԏ-CvY$|FLUM;ah2VTLPl@'g=-`x˙Z!ꁙtLT S(fHMr %LN|Y`K>\Gx"*$P CQ+c)?zbS[?fM;z&(gb,TSs?VڢL,QLEhbY&*Ћ96vJ:Ez7NNW fj0@Lc߭G5晕tȸOG&@Jr\QҨ>W,gTjeux ch]("fF&{9JoC> -e 60 _6*[WE*Xfz| ~OFx:_+co!gѹK)3 )jzULb9#6ƗIm{'`{]2ܽ1Pvo 6j$P.P},_!؟3M5%pf=0daO P~T^|X_͵7h'>/Ң@a_,v+eqP zQdE*猏!*iYBWGF*>Y{`ӿ="iե\A["`з3r-NK{oƣ+ǫGnF(kw^H;#z@ P{ӳ߼cKP= 08L=㫤 'Aƿck@qw@l0'QHF>y2Ғh{Qlt!MlhH  t\ A[_Wii-.*@!&jz.ږyzŽ,j.F [40UidQ]W zN|dl?H֓>Ľ)p-gjEIME>M9nt"`<4cʱPq_Va{6]i-nvbW@fMEֳ͢մ+ܫ>w^ACr\]r[sƟ”іkt?N'ޫ >XKI9>7~}ۼѷ` &З}_?ԟ{YH'@J7*T kTJr/P+ +,TBB5, 6 ,𼺙h*?5z/3T BZ`X\r~z=}CxL%7$C~A&zd@ @* @>dkPVVZ@8\‰A1FV=qP~wo( #wJMbS}"޳ q&lW{l&6os=Yf.B7ӔE\_tp, KyEE6FAUfN/g*a`bx*n FzLj;"撚"Yw d)?2!j(J4d6F:cɱ_5: SWʯ3Eel sJ5@6'Pl>,A?ÅuՂOW sMVjjۀѽAO5Z#VE~Mg"P>VoiH'L^+[=AoO9 } 4 kdƦKX'ю0S9.R'/d f*X$8<fqxj ny8I$H #lA L0*^<Rd%z :H먞r kCl͌zcVw)#ڽѲf^R]Pw EvQmִ̮6{d5"DSط>eG{AY lFU'z20 r;dG6v莄ìzuF c!j[#KѪiB.&:NSv9=Z 6,z;`.nI գv5h {ܤ?k|AX{>UC7?TڸU&%#v[RMzBj }0)v>;.i`dmAS3ci.PkUjV ;JHJhI}|'LUC#Ȼ|51 wD_?Ho ϗ)*!r+h&+|t9C%;%U 8KQ(3chljzb.(+:uA ʫ_R]pN?=ñi?<>ƞ;| R[f; پqXf}E j+ۮp}CE. 4y稌,f6 }CΊKW7,^Izdr+GYPoTGp : 0VfQ 7m6HGhjx'2 ۗOY(_յq)kr7bm cuomhe1 k}N9 !)Y_o -kǺӬjX6 4vڐA% 7$SY^~t֣*458\CufYΊ-=z] :GÑn5󧜭杧 l>S[C%^†l;#MȂR 0Nllw8`+CmrǙOϊ#FZ 5 ZKؒ%1&fbɆ}.5Z1`<@' Q] Y#X&4 |VqW'.`#6@HXͲ@' _7ijqC~,XZܒ:.թt=1Gk ZeiD Gt[neN>E-9BÒ<;OTO)%> {޹*m Jp[Z 0k#؁$N6KXUHK?Jl1ocE;zjYs(8b!4S52+ƴkhNSMճa쭑 mO].$<S4SVCaKBu \aְn`%SadP +pCnsϒlN̙f,#)b9gçoi-* BrU.VQ|42B#r<('ui(c!"4PK\,a< HwoO]|L)Xdag=f΂E^5^Fj@k!?p)]Nw}匍9flɡE B oDxʐ DS\1zclo̅o4s."^˓`vefvXo˖Ú9[OUZpȗ @Khtx6fp_Cݻp+). D\&pEeId7oNkg 90YV.2H`=lUNi3Z V#zvt:N]l|Yg i]3WH륹Z4]ԣ]Q.s5/j,&gjÏZ4Fso.ϞU8XjpYօ t"_m 7 9z 3pBZܐisn(Mȼ!bN2=Dd/態|K8-6 3#I ]ػJEEKFcJʴ!{rxnu-|^\V:K9ݰ5oIwfo~uэu8T4c&L~2X\{ťTWY\>89JÐyqַI>`q-l3|Dy`Q;p+lۿ?^-1n{1;vOujvn*?+8< @[n@Ҏag)[u8^Zo@3%=lû&xc7QUqa_hvǠblD^a<1̟h%2na!tN9O5>6oϬ wѴ*o& [SN_ TE=gPڇqJ.K;h(N f)'"T*;,/ٻ =Ɋ[ܮP~Փ O*hb=ecg3*ZtiA7|dFJP[ݗuOP8h/Zs ~_m ŽbxZ' y{/Yg١10Z݇v=)-3f5M7/΄bzB{U1t_jQjtkӝx=t'^G9ڐ0loiW{t_* /@418 7=y ).J7M)kbn4}t8m|ti {v6Vvg*fs-qƬG)o6b*߆ta# jqtoަKszi~4¿1g(}ߦE`0t'} _V` &o$c} Oik:51V=`ѧ?4zsU5)=8&t%r"SMz#@<2Qċraz ӝ>\˃{}CZ̢(uk%-2r;aO+9t5+҃!\³ L/66 iѻ1iH}=le-pA7 ښe }Г';,'1lۅg^kեHK-1f6ڮkͥ0ѰZڃqaZb,m|ҥr'h&ăH܊6-P%[0z6sy0AE`l/=+vT|+xze?ц[tne>5؟AP1>5 "?G h7b\ƙ1.NW0ڷ*X}k/~ 6B^ &7J{1AA?3h>qZ ?.=2Nӿcf #Y5VXISi/U]6XׇE`q v:1ځ.C}O)c=,Pr8fL_U`iCP"ĉ4I5g'n9Xi?iUӶI4o% Cݺ9 ˰`f7%-;fHj*OKDUIHɓlZ=u+czNЭ+]w?(2yfH&w| J06u' ܃ ÔAcϊzDubm |pJ5ŕa3-X(a,Zo^:)&nKAg ]IEJwǠ m@ uz>rr~h5xLTw9 8QRE1\*k<ZϢTP7h >zҸ",*~D_ߡ'9R {|3n\lvJs6yKr]"b D`G%M[Ŭ{tDk췾ʰtɨ2Oer $*_0OE=XD)1A_S?^SߋvGP9zg~# ob~3w2"^nb~3|A=%ֽK_=.IH-1FF1^BOY`މ:tN*_||u\Ek`hZ+Ckd3M]A,9iG,yKgɐLdə, U&߱d K>’3 9&b: ,@@[\S^fh|-Ԫ5;k?3A=Gbcr1 rqw K4")nB[+zj&./.^Qt)`XzhKvtd4OBhO@-vf5>$'!wex #Ǚ:_AM\`~~I5-tUҦ4w/Mko33?o+I=b0V]40{xIOHQ g'(F,%l [2Ȗ %l [^gA`4>'s< ^FK1qg|)!f`1|}.4jvw)L9d+QXHkďXЛ %Q[NW埡vcq!~]DKH>:vƺ=> .-CjA]8O%:>{VojXJa .CCJJ>[qh~֞r^*t kQWwV8AhQb^m%ĆM`u 5N`䔀:)u$ .Nƾbli]!~Y8M& Ѱ[خf=)uMɪi nr2e K9U|sFX fk h/֢ҭlmZ:aVC/h褟!xVh=+ij"F~7kh*ݏ:L!l( cP<0-¡˚nm MjdME4җyɿNU>l8+Ux{)!bVL8Yf6v1zԪLK'G4*4Lw|!zK5tBZiC5n8r~u~JjE3ƝPt./oJvp0cWM IN9+ h(3ȕ+J_tlJ(:;XMܒĘޛmQHEgAy5>ȗ#Y- : |zDUݛ4tJez_C焷ɗO7`N`TԖ@iVy0)S֌Bd8ۛ 䵛T,@ AI/S-Cd?ꝫzTki^gj}=] ׫b;څ6nO`Oz6^{rp$q4&e8: j%|@fkeZVfke`F[}!^z%x?Q=TAT[5a~=a!%}kahvMЫSj"ܗ'K3)g-QWz㭆}`O¾~_>D"oȺELql= 齉7 29,QJ_vRKK@ :zVǿ0}I3 ƍS9Ld}%_l`|}'a K3͒g<,6GҧiKKrT3&*77h$ )xkT8g8s `rwG8T Zݪ*ZeCo-1vOzcwAT&ݑ2ESt|!BbBo뛶 ~*UznU'V|xUUS. `]$ڼ5x&X@aaYTYhˁqѻaJ1v ƷqǷ$dfN>=ϬlX5$O\$]bV ec< T)%"Ȍam+ *"<P`6Cxl#CF=ݼäyX![cPQ{48eHtoJn"=j " 4E4 Azofxgk@9heMPt6:'3iC ĤWjA`fkYJ,02#9(Rx|! ;"x9?pCFD#XWm ,pRwU^zS0ɄG7>AoPVTM];TOﰧWM#~iAaIE,OOU~B1n"U|w# O%'(xhfRs(a_s71/̧뾚O?fZBoOܰf|GH4>c;P?TSi=)zrbQ:W_c_5;#h=VooS;% نo;9촷n3>q֣+8d( uBqX 4,AoJV帱k5 ^0G a8簂Zwpp)pa"?P0p/8l氃/8&q8{9,㰁G8|ý尃O8$00Naç9|SK?`"94eڠz<+bͭ2²\Ptf9 ϑmuIRqhm \-UUUDg1÷pU,VK+J²~ Z]X WVY5ς_Iee j%! YX\Oߘ4}$+W˝啮 "P,XGd._gʵΊ/Y,Iw9EWso]ծrs#җYʪ)s\Ej@P^]Tr:)aNqia/gU, 0%N>9Xk_07(Hl ?HNIb\G'8yTL O|c>ᬨ֔P\V}eK t,W%A+uRayTQyEee4#v]+++[0D?fY}^] b",?瓳Yr'|W.b h1e0 'U'6~3\RX B|Jy1"h ( PF/ܐS,vR/,i 7U *,C]r'3gdeE9?̟z5fOA!_UYZ!⨁T)SZ䪬\-VfN燣tеEC$2B U\_qNjdaafss ' c&]iaWy ""QуbbqCƛ O1r175?2ƛ'<)I&65eܞ:cfڬ;̰δe͙+wd/Xhqnޒ+]YPعzMI}k+*wUҺ5xp[ĔV&n2P,ŹUБ@'(aVWi[_Rt-\uբpsTVIUxБl 3VRA3q`O1<1g<4>;[Y fy+m"g*W~A庐"`G?O*nBhr"Yم^~sKc-ABq">7 .ă -%Wq!3U}0Hje gPDBٕ42WPD̃1 |ǿ 5O~IpX?M!z$rvxNX2!Q7ɍ_ !Ao8OFr@ rͥ@덄4'E@8O UȧǾZ2e,[7 y Әt$nZ4呤8 `>L!dM@kޠxI׌$_<5L༕ӎ> Ohgk8B⒵$)KhaR,tNG>LGy\NWqx@Ahsp0*tl >} iQOniLNXPBf~E^&Iǐy2t4q99q<ɏR ƒ>ly~vO߅in D&L{l, EHvOCb$\FlHY͸H2N4؞i1Dlމq1 /-wIKtf\ġs(o1c;b=Z,,[VBJgY]%|e?[!i =R;֗)\ nxۋ Jc+ + $ *ZԥNWuieEV i5_%5|ӳ+2L3)’yEkT E\a +r>R;lgArP~bqY.9*+JUs-t9S2 Dn?? n?8#{q= } ܸ4F`Te兒XB5ϼ +Pq2(\W)\ENꕒXZ2773JM+GrU.gU˙p1;-+*/*||'g,F'Ԭgx<,p'𰯚u,|$p/?p3'pÉ<<ʇOd<|o<\ÏO𵟇*]!,M>}}Gw}t c ߹?'셰>(> 7 O>Gqm/663]U O}ƍ|{whBK_O?ѣ w?w@ 8y?*2cs-!:^c0Wc~+ g/>;Y{3Էآ}LVS˄ܶDF<.C87:_CB "=QFAAixYpƏyÙ<,.urBi,nF> pn䰆C*K8,0CToh8a zy^ⰇCOrxP&簁8,㰀CTǤ> _~KC@zRP*7@+c_+ۑˀ>Pm4pwf+΁\4_Z\Zn&acy=y"|9\/ T;| X&PB]bx_\z7OAw1 D ^cppBvՅ#|7u ja2ׂKgpX 7|}o-*fWSz| kgPW  f}ς/5f ֱXFnp9oXh# f(P~;+i;'o؁OS^K'x/ v&sY &2M# |faO{8[3)гi[AnZ/× ωϒ`l`ip`/m*~ z0>a8]o4B":e.P2o[\2 ցK;X3db-o,Z0p惜?#aʡgW䚺&p;\>+R!^F5i%/|_x 9LGCf·ģy<@| ځgZIņX Y%v,~׵v-;9-rRRARX8sYM4O2nP& 3!O99!He٤jbͤ`1Ę!^P,*~h)r~K{ eFU4@!<ȅ>7*")"P WCE-uLX}iȧ*H/m]6'~+@٥\P:P6r ВLr?>SivTֲTW eFT_5mg&{hɴG[(B8rH%*PO'WE*lX}j@&Y] >^T\-Ic̴c'(bkI<%KAS-"O_3bdɬ̃r_f*<70_}{zړ 0ݏ<>2!0D/ 9K*Y' ߔTTxMǚ:&3 $>L3%wV?PKgm= jTDS/lib/x86/PKhm=jTDS/lib/x86/SSO/PK;TCjTDS/lib/x86/SSO/ntlmauth.dllZ}tWvFF6%Db@P‰i [xh(13+T:ٜczflN%džm$nۦGR6F _}#@mO}{}, 83=hE;,~p}]-=в}1;-ʣIcwp8 }97mmy ȟ&_ ;_hX~XWkcs-Z[[sm+Z8χN2J >[Y.SO7sstrf5юpt*a[52%8ytw<%C_H{=lzQ(ц@s+awEA٤$q<Eڀ(6(m9u۶r.\X㜫̫~H((eǧKDL)UņJJv-jZz 0!QV k$3&K 5>vo@D9Hd>j(61 ho$cZTz((3@Bz>{p0!ȁ"m)s&)w~I*@ձQeMQ4S#>J ] X=(# !F)q6)aj(^NTrJA 27`Կ4-9ʓzJеKdi*x3K[|6 ,HlK':Ɗ!Wܦ/:`.k G7ʾY@'G8B$"h )P) қ@eHML2B7'쇺UU*`F$+b虯ds&OmTT.Vl69Q/ #dfC-$AQn`j줚s>T\w /Oַ >!0j[ 6(zMU6@GYRQm"5iIb(mTAgT1S͙nolg YTŌaqoI[k ))Fr%zS4Fh` 0m1?jbn즫7f$@8swUlGX 돭ts.2 Q Q'H>M G1Ö|Ò|:'Yk:Oۻܕca樃9N ^;G套3NaX jspmI4 wq-\NV0 G,e>Q±\_IJl̟yȵ<2+v9"tm|^fE|י |gIYüny:flD)+c.7Ǽ(W U͜- |ذ5$Nogychl@-鸃S) MAn8ߜsM۶k2 ^m~\)\#RxPK=LcӉLTWimgԱaO.@l|dn6tvNݟ\+E+[gl13Af:[Z1L3чgU'x*(|qޮ*&{ưy+fK>mH)`pIlٙ8z%"vxq&vLLŠ#ean:w ?y]6Qn{Tީ).x#Sڎ'LѸwo?7Y9Ed,`eF L%֡fÂV~NAgo0nVҕ1i)0;LciY` JZeVY"KKs*PqOPRTYrѮs|*U\.k-D^ ?%r>ԟȪ_hʰaѕa6 Z` ƃ9BeO5M C?~$;a·o")z2v[V[iΛYܬ VcfMb 59s_v<=SQ|ڤ)'xΆkjʠ'Kڷ6nBBHM:ðh6uV&螵zmVQ9m9˫ؔp ]ov![ t{RIC_ 4[̮zA uKOZA;uuBbn0 t=^Է mQ)D& K{u^E!w{zSZS{afv/Lnaބ,A,j̴;HȀ1ƴtżxe@z9;|]e%=5)I #?NVų J"b"Mr7I*|;J騖oaVrǁhQʱ͔ Akȱ1xlnKfo*5"jT O}K픇X꺾.!K: լʺ]!OGթ nO: KA'KacP;)pX g iHg XQL^o*y6t{`"K(RhWiEGv?ŗ&E^ÆEk2'+<ΗkM$NE(@:ߣ\vy8X  |f@8wMqNQZ):{T\$_N6\papICFCebBb2@ CrFtD^-gZ5)"*Lk;ߌ<]0 9(b2qLvXo*UdzM % _bO fdA=)CCb<G:Oi9D b+<<0D^gwZmX(vks&Bz1doqfw'ǂ ؔL5PK4!DˣxHL' G!Wk~/^=%'σm@l6@noGq;@h /`bJų|+y^Xz8bf|4 <{s:Op=ݐfN FG,>uX'ӊO_@%ÿ['1nH&A!-Gɾ(R?kKz:@Q &[Se݂~`yma,| [ K2K31b9 T?Aq#4nj* -Lr;ĠW8W2IP<"pJXo4Ѓ0'Yo.j/AQZ1Q\QE@6ٽ5^h{i$5iڼy֦aDmbӥk Q*p9s‚1M^1ܙ3gf̜9gſb*& lBɮ߽e$+# /C!P55GmRHא`Hbs>@sq,PU}u{q[Iabo$cMҷ— %6} l |{Blb>c_Jޮ}f߫!ZyyJڼ᜼ljHV&{8CҎT)Bɥ9[3! 3O̿4;.@Z=2) OBӆ SWdƊ+)oRvJb팡92\xV2B!bZro^4k7klZ!{TӟŘP"㥂^F(Mj ѪyH' yB(3"ׯ;)h0jaGrTڮ0MZf2C z1#DP@<6f7_l0ln2f#uD257+XEJiQ晻,# A#МSS\\?RHQ,<,(RDgd.Y'I9,jye;GdKgt/hߟ z*J *0/x)|cR)e+=ԏ <""]~($+wUZԐ7&Xi^a ͗I o}vAdpm[Sm1"xjTw{r!?c7Mա\3L.` )D0G -!;+N6X1[>jz2\p9 =TPӐ WdeOx mc 0@O$jC|C2<{bCVULx,ebɀ4 /1 zZXy=mMAZ߆k3=u-22.K"ͤ^򌠙\SH4\4Š0؇@fg GK2U!ic LR#hT( d5]тB$ !jֵޅ՟s~∮U0kE%K4* QDž8imd,z0QUҎh+фèD8&&m檚ʰC.(4de[ƳJ܄ChfVLcUkC6471i PD؋? K?ܝ4c)B^ Y"Krg-̬)+Q( ;IoJ9i4xx圓+Ȥ/NގO@*GߡS2:A=A\jlFЕMŦ.t[ iƜ1P6&m=ZoT-n'008ZjI'b04FYY,p7K/c͹4(,#j˂%:7rEd%]:a 9aƴk7b=oO49)> TŽ2D)c2跰b2[܌c>>-=ʦOe+npR/L_ؽ՟&&.i)a[r2/I1D<`a80IclM5"Cir6_&ߞvzu'؋}S,:Pg34 rq'#=;y/ua, ͘#b57@wȂE-( l3Zs,(O8ܱcKd.&wjHt1憠BA36;/x-yL=uAiFO)UʶA/KbG 97}m5f#؀0>ϠI*kWՋNC !M͍Vx|| Pcd6ZŽ9B:p1r~@Xl3w{|FAb{z<ʘyyY4aFab`PzF*ƐY'L"&p<[ԄyMEeGG\ k>b# +`]hW̖[o7wx&h&+1$ #h@x ȺƇ)V+vJ櫞 ob9n>̝uF3YAO`O[7w qNz1zvJT{۹tXYfF3X,1WiHTؓ=x|s<+^$^ p]4c0D6uQфY_tHC.@ *A`>XBFHo3w)X+=a%@!Mٶ%'iHu)![Fo"GC^2@hO`/B@9īd%% wZ\yeM$U$h޷_$+,{)푧I JJ'uXvm_wqϻ&&}[trRi$)FF9'ѭYl7K d[|"O ra\;|~:զdF6/Cy.= #o\2\K_~?~|0-$Z>aN`dhG.2\:"+ ?i_^}5徜.2I{q]d? {(xflH@Y>Gg#0"i.ϰ]@M,f$2<DO?|#_>>> >=_gFKjytDƍ7pԺ?m%ClEYj?pp<3ǔpRAl9C-S?R"W,3_IV?O 9x帽>G_\k?uwh6\ owR)4Ȇ̇ E󩱕O\F*=LOZkOK/C@z 5 sPqLIcKcgAʫ{>E" _}u>lѫ5@` S6J e\ i&sѧH^ L䗵CG;ۍkǻ2tʙAtdK3; #S@DZ )Sޘ&DqKQQA:L%;APom M7w+-djngKk jٷufr6A4π\x++dб/PEI-`ɋ6J6uت4Mzz KTpCQqB7TWTS% ,NvXNUƀ\(vkQI2a|2&R 0@>hqOハlMnZ[ Y|龍>ub\wc)&sK"گ+%0̍.w)Ce ˞{r4tT16kxf!`[3@x?{gV/\\4 D5~EC@y~XZxK a$qG>iƮ!%;!+}B2X*-P5~. 픽N-v74^ע2MiL},P b'wgPLi3W͒S.ɖ,;xRm@'{h;O{.%wGZ4irXȋ㊊Qs]usx@\FLVѬDTԡ/ }x{+f>Ue'=DD1Ib@ @j돻}-G٧ gD6)aG 7d:W nSҹ\!W UU4rEfNƬf/5l+]VVC*ƆRbR5T}^wW-S=q=MEBt)B3=Mi& } 踖pe#DЦw;7RGmоC۾Cwo }G8!cBʨ0 wҾk-$mC @owk}Gh]J{xK26l]^"#-$Euo ,|wC&3w zXF_} ^ 8D&oeBOӖT㲊4o@e60q*.W^WrP=z- W5$4\/iP {1 ƙ27Ct'B#J=3|1q QXAIRA/n9`8pZCXZC/| u *W G3ڦ=a5vU?,4.ܪQT.pǶw-qjٙ/hi9iSy VAE(6dozɛv@(GE-icH(B=fݑnSPH y&0F',h2죓0hCj+v6VO<ջ8^xJ{9QFǵ{gsα fM {z=HΘ\)GA0ŐR3?_uQi1ds (MRN ~.G?xGaɾNdOQn`?X`};h{p5) pyG@@S)H&S\7=1e顬PSRf^>~`##xvG {pM}?R;9ganb;v9nTĆNU>J>P>Vi nX@* E*Uј|-,aJPeuqhr1^6/^cE:%tAw/}ѱw-} JX]m8p @tEp"T ^8p``b%E%,pT4<78 p `bEa"*/j](w$r {HxǬrH-e^a+˱Zlevk5Ț JhYݑ(2rrk&v䭶ە|T|KnH̚/L8vZSeM%[鬮|ep9|_prWXM{ 0 0X{Keh~O%=W pftM%80/DյP\㦺drWR~~&wv3krTz2MkWގx8h+cvlMiO- X\5[kudL΢.6a-04]: Ny.)J<,qS_^]=Zn!͜"ʘWOU d˖%U^S>8(<ʖOQL&ז\n]P[?^ŠUdž#-㜇U>q]w7\9+5$ }4Ao;Pv'˹˝F*8G+v׸ԇ"N ֐;Nb>G:tD]1NQ+c9VKYk`YM}s9oBk5[A>SQh.ٝaلmXmǰV;̻0C󚼌|BI o~\ie?p?Y4Q4Eհ[[Afiʂܲ5(SOkkzgY-rM.XwU2.m%_6Yܮ:e^z{lK%pIɍlwMٝJJcWz Κȭv=k u&Џq((7 պ"8HkMfpf"7JGTt%<7YQj#ʄ6(gU[ͱͦ--M:<F'J#4Il\F]"]cqLݵ[LEyv ^ďaȉM9:2G|jۤ|G% |X(d?C aj𧁟 @:|[v;lÏ/_>^oC8:7n܍q7ݸwn܍q7ݸwn܍q7ݸwn܍q7ݸvx6W׽ZǤg655ޮ*jjqquV:7.5WӛU:?H>UZ_{WMPMORFؿ{nN/|_Wh|ÿ"/tӈ᜻_3T5*䢌A~K~~pM^xyv=0bWJ1T gI!jH" *$PCJh" RFZTpNqdDl0h)UB,;{/N3Nw緻<}ٳ .kUr`p"0+݀q@dt]GM_|*5מkˣqqKY9ˬ[]wwqi".K9lJ `iuPpGہ>g9;&nɬ!B_S0.I7S I GJC7 )6֣vO(2(c7 ;_똜8xuNvmT6k1 AZ1p @ *2A8P) CL) |2`_a%V4j] mT+Zf P0a_`[ 4W,J@)48JXW@i:d*htjȝ yҊdY̍o V띮# X e!8]䁴@K̯V@u`Kc4hsT ԙRK:XxP?AirѴr-7EPc6z4Hsx0dSoˌU/f|- EoRme2fQPr\k Ȫ4Wx(G@o7>l#As 1A߅zC_ cQw=e'|jYx=iA~nG BȨkb!B"D!B.{v2\x)^kx7>!$d,#+ZK HzӁtO[wX&[ƚ]|`o[Nkuu'cxQ$<@,ψFM\{~~>j۽-ST5:U:wsS=v{|oxOz_x۽S6M{]jv}uޢT_梧E Os+aDL2L"ϒF+$4Τ5t=})byl`+.n_匏|&w u-Y0ak7KەR>f;gs̹Wr*GMPyTW Տ3jڭVuD]P]noۮNqn}= Jx W}w;ⵁwFzsޠ[>}PGqn>B[=qo<?9xaI0$KgcX+c)-g ZAve6Ip"ΣNS9Z+r)qBΖi[*PԇseM m]wGg GNtڇ~2ݨw_V{j4{Co/v@ߠiDyy6t+mt;A;n,%D6i`?eM~v=9wSyy_f&ad&@f.Xb-bxIQȾ~i'Si{l7ٯA?u?}<5)u*O5ZLR "lrlzTDAw&}o}0??}Jח_?n8[x5:\O1|FY) d1' KAi/ڇFb~t. i>ʦ@4԰B$f[n'?y?kzfi큹n_"ClC j3Z{6yN^x]ӽM{'R̳>AvGHD8Kx '%؞q+I; z4 FuHi ѽY!>+.i<Y-r-Ƚ}cyX yJ9RqW *QR}TDWIjŠ`nKS#UR9j&rUfU cNիjjP!B"D!/PKhm=jTDS/lib/x86/XA/PK;#nMjTDS/lib/x86/XA/JtdsXA.dllZTSW! ȳ6*jh:t'Xq %1TAa@sP#5;vqv;3z=gzκ{sv& յUV.r4*{_@c=g{~0ZaXa1j)f2W3?9 ggnsC7o7oټcNFaysɣu22&[b#k_͟=^ |ƽ\{ <;wULv5n>~oA[mKBD+\19S4i *qp5&G'} pj5%&4 H<0ȘrGo-`gE'||j}̠MvNj66yzsL /RŘU|&1rE01_O&k߶2*M'wpL2Q&D(eL2Q&wRbщ2㻻\>pJpUq 1?RUerezz/poEAxdLʆy<ɴm]9_*,,շMg7֮uƻ`Eu86bSY2W6\J,늢ȑFX2#TaCr@"^O7<{(aKV]6;4'/V '&k;yYS6.5YȧcrSvxf.`[ . |?(Vp,0'a٠;а8]{M@DqbHb]ټS~J!`R j*{ v7F#oԘ/PE$y;|!cTCC-t;v쒟(b Bݳfv4rot~8:ëxZA3O Xw<ၶryf>c.,4Zsʽz&$8|H>2ީNXc FlFeh~ dzIg!wU'DZPfPi]mq fQ˖䁡Чi)]97*6 xut1N6:Vд;FUaj*Y q$6篘=쯰a eHŝx.8[,0؂:8gΫ87ƫWOqEZ=|֎AfC۫ydC{$Y[e)QĨun60\Rf&Uyv?f;T9 ['q4q,U^H(NjK5wեjR@;x9!mx+H[8Uj/|4a&,o{l:DeoREE#,e qo -B2(n3ƨ-_'=L\&1F ^8(5k 돳L y(LKpMp9pk \5pkL5 9\5I!\^7^CځSH]"ekiSlq`|Ԭv^z;OtM08Lyh&TR<;ɠ ZǪcaoU,">`'f[[X+v™c^1&L\\8.,6#palZ FX=_4Ťeᗸv&-Ede7%}/SBטнm`;~/ ; 'oL#wMm{PyZ&"}b >mzh*L_҉8MG/`t?t,|[~gڍjw_~|/N88A^Tgw%*qJ?/)~dJ޾nQIEPڸn ;uos/V_mXtG]B޾s۶n6X߰>_sQ|{{׏|öz_=C98% q_kdb|< r sAzNIݔe%gQA,Ld"(9L3e$gSfyRf'Rbn?;{RH|a.dzpO_|0Q\cXaN2Z\;H7D(̜ء3Z1;n}ȉwIt>/ڻ:sƐeTᇭ%[+ *d ̸N\kS"3Qȶ2J[꧍4qU2szN?yg*N xc[lk/qq2D%E;"=ǡ,f11;dgJMnɪ_yӐnIv[@ + vԵW>t&I}*8-X!UZ+ÏijuE/|(dujV2ڔmXrd S'r|vEj g/wz|cE{h, 3ьT3L!?:3=޻p/ #`DeҜ[OPGk*syJڗUv.l=ۨ>ĭmCRHoBp/gV Ս\$eLRp! =ey9& EAVS!4k tYab)(2 C 8FE yA +`:UEyIYd)GЌ+ 4V |O_5OJF˳Y9xv4I=6CmhΚG]h{Lb.UV2{ i>+J1/÷birޑO^-GGCש!i 7֕HoG9|naQ8<]MJV6M?w7b.8x$x¿SFKl7}e~K싞\S IpWcj/ƙznt:@WÞp0wn )u[- i.;dʚ/K:D uŝ@<;49H$g~0ԘzlCjy YE׾kExk2ry4 v"]5O +B%6ϊrT]]Sߓ~A;& ϟC(BqFFlmEТFIS;gε ɺ4yMb\NͫԄaIخ%l+ >.[U{~d|g eVsBRH16f8Bn\x8H]_ L}y0|I(01,@' G ƚLNC~u7h:WGm󜙖ӯLdU*T͊c MZMo}tvCnX/7_K =!9CX58NV/_iD5RE1J9s=J&zܑ8=ƒ$ We!O2*]|g`1iHFs'D!) g$ғﶬ }wR]61Y}rnƕ0wW@!H^L+ w6t2f" .֗A惨.Z:ɲi4_)F#@ '/孩|"4nG>aG[ " Q=?EKb 3PT#B9܃^a0 XHn&B*'d ʐ_$dQ;%#+ᥛurmr  ? C be|FJYEvjKl<"~{o;F O[>E\p<4ēi3Ӎ&V2Yv4&$PTin:VzÛvcLmFJ0}VpUcֳs (/@f_p ?G]yl~jAlDeLAE/v;G{N<|?ʫ<mh|uǫ\ĊEV՟v{ ưڵ =̹-w1Qਢ!"9syÇA靜Wbgej7=0+GΞzݱJY><ML'CX]Uƭ8(nX1&lB6ş ci/ȉ}@Fĩ~3Ocz&˸}V|*-@|LApdg$4w@ Q@J5^9vښG4G}֠VA!Sg+-I43`׭A%%%WϷ%UW-(3o5urZljPk=kvK'F:j8|؎%. |4OPc:bj"ѲUD-KLJ,4T+SGCRަb>e19irma-%x2Pg3kBnlخo| i}S zvTg6eCSm\K)i}(}/ٙ{S4/3H~*pǰ-2IBgοLif~ ſJ B]f%Ukvجދ@i/fTyƷ*W%z:Ey÷Y:uLt ~4|ft3iX"AA6 og'Ie嘎"N >12 JH)Av{ ',+DSyr/s=uAT5`Sdآ2g=/"BS}zH[?v 5 tspUO-Y`hfb`ԅzVy1Ga+e*di⋳&h Ii82Džm(&:5)rTH ^]/aq!~6"BݵU̵X;8 #c]{NO|sF֏ Zlj +}T,2;:i PQk")c^e 㯕EK3LILPBa3 K JI*W0 &h 1j;1J-Ip[ l>0ȝ#>fF(8].>Et])6DD\/[r`O_\ +:e1Dnǒs^|kDb@!4/ٙHqF nQ9T?.:\ FlFy(dž: 'HH˼K)Aspe EGIs3-_CS1g<Ǖ\{ZWǚ۶e?SwK,~ h ጝeίU3sKܑǷIQn~Ĭ mРZ{Cb4Ewڭ`֫J୅o% <|YR$k>y 䢨-q(=݂H]8$оaE6`jd SU*D5-r-lZVvKH'c.4U٩? qr T`gĿ֏J26 rK`̧>?|LEŲ<_9}ϖ s5E !AQ/4lj5zϻ|vz'Zr݁] fwSY3ea܍ vQjeq/ ]'%@JOŏ,ҭ$96=ʵv_!|ckTr|4/;7",R272x3-ƾ~F>8 @>we(T=c+ .F8Z7`"M"yH H矑+Ax9Ui˄nAEUX^tt)@΁ٜ}d_?/HLNJ_WK6w \v+VDYtE+KD1+JzG g"+j'+G>eo:B'JA2;FzL;򡷡dVKC2:1XA@$GCi+'_._EЃz|CGr^&Emq4&L~A 0)xU]AmY.YP%' Qkތ8PU;/\pפa="ba*5^/V̔F Cְ(Ӝ:ń9E)ExyϬNtEO_meibnbBsZݸzH w:"VLmG/a*|o(G#G[ ֛PDRLgVʜi*ޡ(%#h<` ͖GY5 `l?8)gsX4@vkY$s><AqoLU+gF"/pS^Wɬ=ՕYcz)ps T0ԐP0 (cUϥU.n?DC1jC ywovU."JJzS]r%>O*B3*u񤇎X6.LMį U~ T#.KðߡOO7Z2gwqOPol o%. 訐N<[!;X+-쀉0gkxm_e1'Xڠ7/̖}BmFKfh4BV ?Ǣr<ҕFcxm} V;I\ny*JFڟ;hvI`~ucj Q6xkN,->k@W|]Nl=&H;EȊH eBc^ (HO6Efec+Wb4uH  ]oB{6.ˊf1Lj@Hx9hj t>c+2 C=+ $wVʨ<2 D SN1F%y'E Rрwb[*LzU~(Z| @r[AՏJTcWؾ ch8sG$q)=-E@ j5RAY!.,7ݸ,GҲЅCo W`)]xT.q*?- I[&[g-ȯ ي΄)PX#LٲQX3q0όy$>?5OU.ePe@U]P5 xY*ŻYgD[Sއ<=T :*H'噴=l\ƲyRO`]vv݅gzCBȰ̒.m'{@b(`mq<>l9iU'A"3a"4v!P S];C)cemXqS㬷2&B?㪰*[ ;K:AHzj1 kbҮ{P*zb浳{8R0`Z |)p)۵p?3#m2 듚t$4Uj_JrmfkܻurrʹXxbx.ROC: V]$/RsX6ץ;SO)pR~S E^#ϼ^Jn.Y&p['R+N!O1)>'J\*#dSԀEͺ/ 15ה%{b, o6dL {0~Ǩ°Fwv]O>˹XVf*._Iz ni~t*ȮO z;僔W,ӥNpf[)@C$?v{~a{#{5n1uY.& &Ҭs=-M@RU<\ ĺ$$~Ng},ˈ;"s# e/r?AX_t[$DkF-/>\B1?|K6#0QiXGX*Ica)#S*4=\0X]Ә&6IDH 0dPŜKWg t)΢?t "Z5r PKHqMu7 k GdEnT+B95/؜d6ُRpY@dp%d(OoNVٔ&L`*JDL~< =VN|Fga{>U,ZN4%nk*Ku3Uĕ֥9lyG;:9`5 x'jz>1z(j%^ߏ(Bg^ɃxZӊ,ξcvҥ|xsmxBGlGK* ªKW~ą=q&BsV./,yrO!5J}xJ-c |'pbTvPZ dNT![6s1x"SCɟE pܚw҂{xH( A*?FpNpAv"6 ZwˬU&+r]ײ&]%MgϬG6X[:^%G5kg;΄ja/2Γ1IRoҮN!M=yM% Xr!R ̱9fKlz Hcss'n5a Mix8A0R +Ykh^o(ʋUhDҫ6=~yBOgʉ/1+Zu_s^\JFw 3T d:8q'❯LRz@s=8r+͛o/EXlT/oͥc0,w?-久CRXeP@'j9̵6i^X<S-Ĵ$/Ї{'!]Y8x 5( RɌT ٪?".^xAw%~4O~ )s$QRnImJ|eѐkT |&7ZQט\SP4NWSXƇ\oD2 ItC^e={;Di7l9tPbO~@= !ka$qW$Fw ./I5Fv+XR :^%bKFM# ?/,>P 78޸Yr>V:=Ku5w+8H` Sc㽴]0yÊR]kC5oyĩ;?ڝtM8YW0+l@GAxSO&˽yxZJE,kj;c=LU|ysng|^5)4yR #oE٢ bVShGmqrí5k7Qb6CE4g?MB.Qͨ|Pzȯ/?KuWd08%-12\@~+ IʊU·{I}:~ "k,#V=~ ~ tJ96^V G\ O&`yÛ5*hr+j EDoL/EC]gQ O_TGAUcI8s^1&^d&s|oe̍*WI0DZHOoN&#y\cpNj+V{i7Lv`> ±Ro/. /4+tdj$R}U!^fUz9OF{) F[xSeVRE 3bq,ߕAUk m-^AYs.xB>3cA|Һ났vA:jpSz8eH~$W LxtʫPT]n jNd;6}+y&:ǟ;@ mX:wzezsoM̫R"jLI 2BJj_En٘;Xժ.(P򊀯w7m9eycA /tZkJ2v_`̕'(uY/*6hpj(星. zKqyYPl.@3&Ņ/|+4;'t G'T'95"QӍ0_AYe1۩f|z @;ArM`|qScJ尊lnW~U}F>̊>f}_nrt";<(j+v\r2LŠ«S:iS_{TY"{|!`=J53{@GVcyc[&kAס~&+#x8:91`_,_L9Of+Q7oh! JVBh^GWڛhZ Gav̙+gR`Lm#y*W: Mu^Ű#lLћ>KOHaσ(ş9ks5`z$ބVmڎ&V[}i|Eq mgwanW)CץW):,{s%ӱ_)Naʥt-nR%鲱q2^|xoT~hukWI\p%1=$J.n^}cc%$Mģ9Kruu[Jf4@8C2 #~ LS|ySu,#1 #@y kEg%İc" H\ǎ`-p粜.i`_q;p-Y%P'Y+i(G$GB(Zmu*ߊYV=;ei 8ſ KC뛩'O^k% A$lh_$RZ_*:Xܚ?Fs[}>䂌n.UFf @i֌ \O\!^!鍽4#ډs?DµɶdESVpiCwɍĸ N!J.5Z5895#G/ <'R9 !w@XFҪx*wXRtC;K""#qsoDPj5JQ2li'唌=d;X%tZ K]Y@`sf gbӚ4]#ԀK_g'FyT? Ҁ8g5&v[buGV-Hfa5!vEMR_G9`KOr͢OgP'q\,r%d]|'Ql3ISXDz&T{;I(7a B[p5@w.P}}yu7 n5I=WRd2e\0 T $Pv̪ay|4"ZQfXHOC?C}ZzN޷l" ,B"tk+]pdCTӨYN{ pPĵn SǒRū |rf !^m%J<\£Ԏn!3fa 8C; fW7"XU-b@ tWA"e^[\م eP)]KyK[8)RpTq,KU~(uVxCQ LOx܉UWKpueDvUi[8{dW[ iSG{xn|9kv"OVHT8P?27(cahOITeR8-q%?k\Z_'Luozu>xx0KHgt VR^G*`%,S1PjA_UZ xo_tr@'鬓5z8n{ؐ&Pg f%=^RqÅdpn۸ >.EAPKlr\`v]>tY7Spfe VTk&aM5X-[Po¢^,8CtLut$Fh𞄔ӀN~ZTi NTِJPq*OM폑uY#|L`uRfGR993[7nAx:,Wp>`}9?-5-&=ҵ8c`7?h#X ''kgP|DuQ{Ѥ"j,z$GVL}~Mؑ>$opYBYƉ7O=9CG&jX#ӊ]Kax;n`D0wvz==?CzXh;W XVѠF ֫%?VPT9(`԰'~'uvʼn0aK `LH5?ii~qg%8c [pJ<0MS~#+ u31gY |4xʧd(xTڃe6B~]bYOv?j.g`IYu<*N PpfM4eȜi&}OYՂ}S-wWӑ(eH 6쳦_f#;Q!8?&|5+BB ŭ;d1,9O"oZ^W'Hf^A͕^ǩ'ded9Tmv]>'.fI2B Q7yK I* P.g(,mr*#Px`yo0pz#zHIbY1!iqŽ[3/c2[C +׆>VĈp)<|!5S6`OCǰux;<GIA~FDfhThvPDsCa߲uFJ$݇r?A?z赽Mh]b4 o\c0>D.acvųe%B-U{ms$+PkUK^ =ٺ#ڐ`V>qΥSIaެ,더4/gCt4r]g RɋQr=k*ckEF1V\fET.).dtY"̐1\}u:^2њMײsWԬn\4R)HZ|N_2%uޤBټGeM(!Ne.p gJǢgSCt#c,ԖxQS=&'%a<jսzpq=fKWDN'zu;y=&s=>&)M`ӠM>u` XMpD;]WC ;3¾S_ ] .UC _&[ࣧӀls'(jXGe3rR Il4jEJ6Eºz?#a B'V*K,6y=@fv7Jh9ҿʓ3PyUʠM NR ,(y?ZG.stFjQ "il2@#ZDu'M)nKySr!}q'c1 E]9=҂់4bD%NqldO06 <L Ǎ7*-7'E!{O s˃[Jqfm춘*4:Zx+ba?rl`E6%$5 kنP $hEqo w=jj,_$Y\EǶDp681% dg `v/VL.\nD CV65Nt#wﵔ2 lW]ߖd>,4;+̝<{ ynT]To ӱn9ddvkcVTFq"^YIRduYAX5Ѽy}ZR,̧"ySװhTapu3%;+)N@/I'7BrRp-"ّ=BKp ֹ}#a*vG6yW2.0sM9942s,j؈{bXȄHg*zɉR7 ] s.rQ4X36Gf;+!5z+=hcyD !LcxG~|WF-|Ofʞq&xܟHo2ȩKT[I@{^CHrޖ> -fnt!l*;VGsn,}m 3%IZa$̔A:!4R8AXv!X𡝼5]b'̡}} r9Od}h2vV:NVeeR-mjEaK c9IH)&y"ϓYr[O`?-"rZ~>: o,R/oJ¡˟_Ǒ S 1~5VK;ɐ>SG 1u_ù!!N0lĪH?}pN'Cd?pxw*`033T-8Q}_13 ?߲[CgX7YPonI7.{3cT W$>^\jJ36mk3eOWm"Oy ⹒*|՟2:bQQ4HuQ5't) TZ7APNQv|%1 Q<* Ի?Xv7GϢU|{MΖ̨H5[?q#*7p MwgFuTp.9fV E+EȎҲ:"ldj/d; IiI :}t)CBTzp)7{lp#0}k9N&A;-oT ʶ?YеFvՋCoּ nSZ_]%ZS-Zm$WQ3ؓHw Zhnb}TMsgW-C޺OFbݎIѽAjH*ٶ"%(dcuqN\D}-Fī߭V|0뷑a^.>#[WB4NȤ mRVDWWI4&d}.󤻜oDEOEUL x{S D3 u|*=r9IC=f2"ܔ#Y/3GAZ:&bsW`X(|X8Х3.R[˳EGo<_p$n[j_s4AMk<g=Y4ؠwp}.YH"VTmoN4qWmX+Iwh>JhyJINjb b;F(/}di#"lYFd(A"f34uT3lzx âQ+"hInS{*u .{fp'5Ÿ{b :xsdϧ _ gJA!! Iٚ @aqvGIp ?O|![| fw%P*^nA2pڬZ* ! xb\@P5&΍= ҫe]dBeK{[3-G0^LKoyv\2W;os"0FWkGz)w ٱ 8Bbr{<QQ3vq+NEOZԡx^4ǢK$e&`tn5iޭ@Fudŀ-Wt'S.J@{JZGw{V䴦ͽ܍]%Oúnq0·QTp?ܭOuLP>C5DIS֫Pi+CP֢PR:v>?S2R'Gw&TWInHGv1s߸RioMRy!# 4YYNj kCPv/'"RiF2HjO$yx+ǾgœG' NU>+y.Jfl'z,D}P7%ܥ"Szwn$w>-찤{NPjYͭe VU{]*12(V1zPy)3,j26v5Bh!"B_yx JjeHGiu/Ѯ2C uRΏMɟ m:,tes Dbf2ٹxa0Ltq}e&O,JPQSz*ƭys*SC]N;1.l;rLbLS%7 &n(tM""s۪鈞^TKG_"MP vUBw}E=ckE9 9e`&=>#熜%$w)@=aenf[aPp`i)XV{cvdhmC&H w&Yj)w(-vxGue2ar<2 ?dJq*_dF(!@X ?_Fykר?/9fm szJD(IDUب+ٗ2Ii~ v^(3K=bMv.%Q;/ :S\ Zz$ʻ|4.b)X`Rkkix&~}HZ?fALRN/ߘɺ fʁS*W -[hK{~p/nViNa *˒aѺ?-,#Nk'9\;?C0߾1,jQ&XIZbIVpɑPWq)<&FR! rküxy1V>ByWP {49׏%a~i}N -T- aE\=|{KOEYk,bnƧ/˄UMM#FΊǺӤ?Pcoz җmD K#}~ue\nAT 9 /lr`B-Djkm [H}m RH>\{=‚IZxVktlœe:ڎA̖HE(堩4~~?a[= Sx?ir65@Ob*Ϥ IEϟ s hsmQ럒sahX \(Pnl5{W?a6}e a vSE(5; \&т_?_"j6"繌Deq87 aTGbP㼔GM"u<^BӚ=⊧ZŒC3B`-I%pX!- ct/A;kJ7Ɛ.DOSrnkN_:%-7%9 ]]B W⭌Dz,ȈKm\R@g51o?Cg@Ę*P?[rmj>n;mI LN=ӒU§ 6$ץthl[=.;L=W=(k""3|lgBNݼЃʹrO 9m||NK%N=7U( %ܰMVd0SpW ! ݉-[~dkPL H}3Ԃsb_)ݠDެ[ 5{<']l>[$6Pˇ=D!#6*D Xb֒A~UUK]DdDmnu6{3G (bwK} ƷDž >=<]ߟ1Gs ro"Оg3EJK&:?:&IWgO$ PX%#јymC6|L[1H u+J$qNT&,{ l-fӎ)vsP#ơV—+#o[ MK͆ր<8M"m. !5;̌G' P[^Pd)K׆E/':-KT<Xk@&O YgUޔ:3ŗ`P&n|WHau,YƢL_7Ir"ȯ_뗅R5i 1+d?߸wf@ B-hmUុ-<ϻp#L˩7D& ʋ&fl%F&o>ZjP^M,u|BW,9Aоbș J|"ۜ̑oҗ}#\?+m `MX I  7_,YM/~sp 6HR2kiA[4̣aȝ5W_\L'猠k6.yTv<Y|}r:uT?Avcd~NJ9J fQXPO}'X!/~Vq@n\ [ i6kX˹{ O `0L nPy106Çc [M?rn@-KQ {Fd{)<c9SCoP!w=[#X!*rN)gչKt&>,>#x{c#=T5nꆒۇ-^)ds=>NK(}4>$J'< ωQob_wZCTG;m/J(Ԥ!5vcQ3Ō]]E,bOQm=,j-[S ;\e@|mϏ:E|I8 >Spicw2R!_^$l/"8jٺ _9]{UMw&f1nS^=Ktne|P@*l cXcLOlS X{IȵU|p~4h c}doܤ>9}g{ɜ 8#uυ3\LsgT N~m)qOJI NžLD-*|CU;BY[,ˠXAb* SW9Jxl&@QEsdrt͍@ # 5 ΁e%?Ӊ9l/2YJRaEcM0"`%tR^E񙫣ǪD̓NTU\ߋt,Rryv?0pnoҾ'!%B,>f1qīĒ6FXKWG)_&82dֲb!~<^NTc.zx^ig\V}u3y® C0it3310&!3/醅L<w/" 9xueÌ@wrv7giNx);`reSyaK\YY-F@^gPĘ0+)z$~nS^CǪ PgSgrjN#c 7ZĺONw)>_ӹbh`:yeR&Ы2wL=j5p8Z}ƧPXS"i~Gg;Λ}Z7q4qc@%<]@?jL 5d^[w4p{" ]͂R'VN7g)?ݚ>%+:Dךe4g] ␁N2zq r!u wJߟoޱ+Nga:d(L/ k5ctzzUWF)?2t@pNLbT?@8NE\OyP bt`eF3!H18B\u1H; #T}ۊw۴^4_.&'|e%*0O{i3O4xOū\߉&_wgj, P?7cd'7nْDpTZ~ ~\-M|-$O0?O g]SҗݽU>JxOzAS1as_i1^qkZkec@ԙ~<»Y^c~'GTG"n{}:iHe=C=[ 3;8,;\Uw40my ytU7}98HOFQiufe\@=% ~<2{/S̮^u%4n=[|DGNzYSnExEExQZ_JjZm/|ؓrllqHNa1uGL*D>/hA=ǃ/%P9*2@2Q:xb=/ØigSrI'̦XߋGGj^by*V|-zÑw/+j|HmI,4QĶBJXVYyI٤,0e b>R_emrEw}d>ߝm =hԒlkQW6 N{My; JJN |yԷ{jfKVW:0Ib%TH^-\ƁFb1u$Nwk?)ЎD+ l~KGBn֝{]>, '!6ztujxì:㷆bipS[Û3BP? JBI`i}b8Gܺ|2}Te2!#y<0D-"LD:Y*b]+X:ЕE59PS؈s[rS˳Uﮀp/B]%H4ɼw7$`0[;&9_=M=n}L^5a,y܂,wp n74d{zt_.0͡N΀*~(jF,"zHѱ BN_~5x/.mYTdv>-_hkb#폽Rv L='~Q)='?UW_GIFhV~wb}Ǹ?P%Ur~X7I֕crkKJ3 Y.[X@Tk]Իw# (Y{zo22{:z:0XX LKHh]LlCu4,$LaeYƱ*:oE2GT`&ͤ1qʟڼ#ucXhn2eR/A1]"<"*nJ,Nw_[mf8*j5eS06@qTW$Gz(}0I_.\Rf49_ɅkdCK܅?tzɖhc5z/toeai,G-I3'PmJ%L~-#xƂ^ꈘm5+jFD1+r59S Vmƿ&.f$ ꖂJ2kG37HKR\DU/Aʴ0 -Q { ṣ _ċ/]DUUcWa52jn,"(Hh dz{]̊rd\gi :WͻA%`Î']:{r>5xSE= ;+.y8FC5ͭddaS2HTܷo!a=ReydP WzD` qU{:/YVgADŏ+t<(Cyl0t~ ؔP~y9(kͥGxuZ[sU|d8jhOET6PMx VITZiž uu rA6˄3R ք$02L;(_x[s3넕_@2Uby(9?p*dؾ`S.4\UPqCkH[HW:o%fqCk*M/{K}nLfLY~A>ƜAsqaAc÷ƞ^JsTezB$SAQ:K?C44RKX8S+3z+tdJSf`u?dD02M%.M :,y֧6o:?c8^[@j^P0wA02~U~]^mTK^6yMSr5#x'܈Գ,Jt1BEs5Kc]f)áWnQtNE/L͌Ŵ%b&ep5"_!dMYYGC鵽[Z8"MGTWE1J{jO+e _65Mr*rQ%eJ`(h=vgzEjF yxtjt4EmC\L_Ӧd!b DFq.9( Ku<5|U`]̿ՒqG);[C`=O(/V-g]ujT֝`ȎqơePUa N)#8i ˪\&8jFHY7u^?cmCn> ^ GLFA1wc" uU"?X7 5&/%֕OUé6I ǃmdM7~ u~?I`Ohoe  b{_=V|Nmj/WWeO #Vsk_ۉ  {. {C)mv FpMYZk CI< T"?SU!jӦ,U3tck>ĭtkT0t6 Ma~w)5BחncQ:B'^hY;AU܅j5a?{ew{v?V|0"ɍNᗚ g ˴|: QPdR1S׌RqWuJ^sHS53up8cŸ+R6II9bz^hbZeaw$ځ_UB-:v\h LH73Rt?DEoƳ9k8A8.o'YZ]1N#' (v 8-ڊ[ ,)E D2<^5u GkJ?-^$>O ɨWXl"nˤ_e_j%(1@?&w=0ej#ݝ8ޕ_x)Bʍ~]:3E+C"Iasܗ ]3ԗȴ67#xto7X2S#h9|h?bI~*Hڴ(uau3>Z<ᕸI\=0^ayC等g Z=Sx|N *%M˦CkkwX/н9k>d~P#{fCL,Q#{4R ط<$a>8aقc&CRI.PS #]zӪ߂(]$9/-s?.6]{xD*`Di)}b\/y.%u"5-έ;L-?0IDg$i-QDb_gh^OIim5` -P7 LoY}9ʾŖ[ID]Q8LZ }KG!# 51N;*0ũ;*pq. Swt.%w;4:JM]PY |s0CaЪNo3L$gAC c 9ui͋xAka(7$FMJ@bMmcu5xRM)ȜP Oe8O _d_:/`W"(%*׿6ilo;k3#Йu ԏz'^.\>6vFl?.њU*6Roktت=04uc)#õ@*˗N 0GX/B+iS;q.(g1 zL V훚⑩{_.9^v@qt<Ig/b+JK+ӴJ}x2 Ӌ¨,vg\ \Xr7e0gזhHP5ph83mqkR}sU3 bQXɬOVʩ!xfb_hb/+Ӥnm#Iު}=m/8c@<Ņެ;t~֓y U^h1Аz܏&A9o|<ѴL-in^qt1HZLicwkl>DsKzo&@8E!>gj0CіIsh.Xdѭ19x)7ٺ3_.G©W"\K 3ך]j|ؤ8:z^G95 &?{owbi(.; G4y;08B2DZn| bJAvqm2JMH ylKLm:y #y oZr+[{#Fvv*ZuYJ;l3C8u(=F2p(E~],tLY f8QI9A3|Q7|$ U-0q"겮%'8B*WykFۧ!A*l5{CCsi<='d>${}GȌ&x{iG%Ӎ=lp2DܹtW6@ᕥoٮe:"]E1$䗹f$.ݡ6']Q9Ox/Yg`Q+DGcY_ߥ/ Ӷv[N@4|<!=ݵh%m}VA_䪂5&̵ b52gTklUc:T!fTŒHi0??7pwaNi3_J\y[j:wzKW wGCu{ś[\PcVG*&`eID2S%03_hDPwZFy+||o?:@[wDV&6|N,zLj/>ϤL]?:(J]q&{鶌1nw2H&C#cK40eHm`厩\ ӋQjJq 7[mXEԠ7IϛujC\3%6;Rx^=H$Of}RN(rVPXp6nqrBiY><-ظFALgޞ ,PxAkR |G؅ #*‰<Ɲ,\x#.ԠR/ ;=Pv'Rq*ݩYlHTI ٚG[=;NTIG jܼ5s24FBH^'4w>CDw41 g4s:D3rp%ND ]E>cWn<$V׶P0:]~jEݙ?D) Q߮SE^_?Uq韭f0̐~0!hCyP(VYB̈́KrD-7eӚQFc((C5iv@H4R݂* ن Fs o@kdtt.Pl쪸&۵ hҵt.*[֑!+r!= ̉U;5_G8G?+A y9^'8ꆇ/w|)9n*-9K\"d "k1.(o9Ŋ+ Oe[7ipq#X*G#40& "ؾs#GIe7>' şbb4ڹ cM?4{A~[zp▎U*6%}Nx^yw&aa:܀(B츽,Ɣ$Dnwfozg|ܸafs 0MUfdugLT{"5ljy^$18?]geW´h۽M@WP-:=6vX@ 4 $CWoǓ{-=Vf k 'l)2Xޱd~O6qo<' 'qS%,%1 ,>1~^;_0 ]En i GcsO[[4*+;MʓD)3D%>եB#@UE K<`JКx;;<|A"e\l+s@ѭޱiӫ񾲊jƎֲD)XUT+'1yRxI&ƭP,tD<6:@p&T!Ukvf&GkCQ@4H+>e"ӨQ#͜_5hOS皓xԋIvODg /gHهpwWZU0u4FKR bUpSel{SuLYΤp+[P'5b}[Ƀl\oFPwrP9Z"%f@El;7L~̒hkX˜-qAA[)Dzd`6>4g%2g"7x#K=@TSء*02˛yO h |PiY u~k"h܎Wzc!5'ԑ:9T>ƌ&y3zu%[~"%'Bte-#nnzpT0!j`hl6z_C&haTGl(W: }|1\`탠M*^CY_Ɗ[M˘+~bHXu3Cs gv~`=NN RG"I2_Y+XBnp&InЏE%[@+O 3)呄b`Ϣy(|wX>gDRU({YrvH,Kqm~l9ssׄTg9vıUN+1R~tc#+PdH)Ayf"|_0%>%c@aA˳C-[G4LRFQ5}?T_D!, ngF|W@^[#钿뎸~4UZQ!J\ꬷOS)(E]ZKx_ B Yq }pc]JTv7is'ճ0+ٵpSU3odS!_.\Sݓ'dȰlldhz/,ԺaUx '{P,Gz~>j=76n[dtygi9|ScRs̔%a$0|j犋QG ;z|oC<wo@?KQzw˖b>UV3G X0s*S#UBYpuQeIB@*(oq;uN<2dEDpPoJ3$P@S5m0 MNcNZN]t8XAOj(mSm|ˢ,:x>csf2ײ*mOJ yfQ7q*[τWt@= Y%HzcW-]ى!&)tr Jf -j_7͛HrT>("l˨3-poi\ Z\M Q+YRJoGM|xd6z Ф`uS)ѡ9f KyW*"Mb|p=?fR#2̴-p*A#shH<-=ZI!1g*)\3W >,poSQ`8X#EX6xy67ӪW6G˘1gX7Q0' WsogH,JeH1j"t6l z7& qX!Jshc(DA̵bJãQ1z'4ޢtf=҃u:YiqӃmO4jSsF`#/QHVYd]բ]7ކͽ?_!E?>1V'$# ϊcU×Hd˓Q{:7gvH=V݊jBFD; Q*ًQH.4W-yCbS-?cXݭoC~`^OiOP餈Զ@|%R#O;MT}374II&$sU'UW/L@+eD'myA@M4];NQLhkv90͍.'ZHbG.M2WaNqrdG@qgw.zu9Åt[C \4i"v-{nj1:Gu~FC`d4MP !*YO\)A?i,0 n#hYW dU5Hz--S.6såvĖɷR1?0(mډ7>g4м7JEc>m"1ްU\4ŵKB W$'\$XqP`6U[A/?_*&+1hlMSaIQsWA@-WNe"jGj JֿJ` $yU`O^8 @ H Ug:v^-cjV{~mr)5GN0w w1hxd>`#= `R(̟D6saJLχ@x:c>3בX+@$>zFNx&ٛ*Y4:jgډ\|\ǫQɭU zfB:23"Ӎ@IDKD7*~/?-Q ")/Gc̰Yk(=?Nk%^, $JzڨZdF RCziГv# ?c:yR^i66Roʓv2#SRtt$/n-)7 ї!vHhḞ$J]Dn1{7|`+露-sAߚuPYB^5GTgFTx |Żb"C{Xn$hRxla>\[ 8M%Nj'D8fM˟0e-x}H0ti:=DˆDPjo!Gc9M m+Dkf@LGbJggc]zN~7?[Wy]V n!Sa~ 120IX"ƭ3R[bڤeYx|Z %|"FvpY2=SBjt3 S~Ru$L{:/ecwi.ߞ}sW\~#W|#Â"]x\W~7GEt g{[K7/BSm4&ݼXo')UabfB3,7h505U]0O.!\X${˃H f=~>7غv' Ӈ0"38X.`@ 8H&MF' v^ sՇɺ^_ ,)Uj*}2ee= e¥[QC6}<5m2V>4p[eKYЫY"O$e5 =F?6ePs)ڡ 33 ӂ+ۡ( \ݿ,\HϞ磓qRAzGχ'W+@%Vb)_nkH)yTx]rАkV1z=袮=J?XUL `+Lj1c;`e*T]0k0ܥ}2dA OkQ x ='faiTF^y=}̓?ԓ`9V>Os*?_F]' .ǦIh1&G6"|13[*<4΁N;ICcgzn-% U MR,*)O.[܁)W^O| #PJ]+pN/F/lEըNL:_@&m1y?HcAcI˛F%P6YAc/=m)jt{\Ch[_#"nP7送e6j2aMcrszVL bw$UnًeH.P CmFyⴐP.zJŹpjcxifO Td ?z,Ӓ]C vڷS79DjFtsLjsmqZVyލ2R'O_#,A vSĩ Q}ZUTCB A'bT թ>}_D,&[,/zAAB+i~¡A$Cie֑P>QG&Һ;ap!_Uw7*+F;=bQ2N1yg]9wA Gϣ2giEʀDAభP k72Sӣ}лg-l|SZHz/J&t G 9Y*0}b¢0vqdC֏ry v۫r I6njNOr/Lvt3S:EHm9VGe+}RDw}JyJ걵S8xdɂܦ7e (%6< =Y\FkI'{ؚT͛/$&0~Hl3teǟ>KV?%vx/r+>^ds*}ȓєG -p#./+drgS>EWyboΙ2d_ds Q]]Hy}"~cVZ֌ paS:NX![ k.hj8 p nuh2fjIJ#FV$׌^صU`֞:g,˜!өQШt>m]\AEL8r?s|NV!XZ>j=8lҭ2}ۦJ'~z$+С8yW}wuZG*0LDQ| v?2>ؽ-01A%[~M u^UgI<7˲B;*J!$USdk cׂ156l.s />;c6߮t?* ݦxk@ Ԙ|9Ucb_S bM1IFS T79GH-ԍFlIH嘔 13.d}IP[exUDq=d%h=CxF绤?mpwDBsfχȷ2g@ѽqBԛ}zz=pؓ RCqP"MWŽWUg L(G [\HF27K饲n")t?@´6Eq|]+R&!O,~~hۭPBh/ܛ׷Pۣg2ypF^9 qfwd+AL ?mQ' ^TbHà[lәIvHQTc1]Q '95qkVooDq۹(Hn0Z`.W/WD Qp4Zm`#LldTu[{f4fuL$Bp2YYH.Rߕh < e1K58q vx܀C%N})G0}Ɖ7hCnGP\G|SP(L]vI #M8.V8]~_oZ4"\L:9l#HyJ'BY}$FC:_uʑ;se7 %$J<:eس8W>z4)hP_# SRuGlYJI;3J/8@{ҐPwW c}c\JHj *% Rw.+^uz#Uwz@E}Z* p`bi"q qJ>c2YUPy=spF*,!,ƙ/acbI˜mؿ6Iۃe!/'%۱9=] k p̊F?ʨd@7E p̻ h ϶tnrHMjPw~/h[V,xq!Ix3=D+s2{hO`vՑG8ޓ^bfc~qsep|tRj Y7 Փ$&ݱSW)*;nx3("9K]T9 !, xϘ~6Ey C=G߷k9OU5F}8x?L1Z܉WDL- iCGO dQ2;cOtN 6LR6* -sE5I܆x=4CP>sWf8 phhWO16rN\HPHJ]Ln[9}F3E4[nvv4|GJ}P>HY|2x#?o):f1mNkԣYpV/,\,ڄMf=(wD~<_3Z 'DeU7U#I0ka4ځP5op<.QcTK>T7hgu')5#ZP{897u+ܩB?nCߋ?\%L-'\΁D;_ӂd%LA֫uDE|||a"Y EEy ($Ҫ#:Ƈg\rdW¨UX@IHP#^q?o^i?qҋת ۤoDqqtcnC;}ĆY ~BWmfB`Xg 6H ʔQݷ;_˞UP&gH*ysA1mمVw#DQ IyT},uԃ*-N!>4qA]γ/1k낙6mBb5۔Rًxxص If(v#fˏB.Jw87ů쫕N^I"=/to^i06>n*0 u4ΌDXٍƉ&M+5cPs!ĸ1"Vtb벖0IF)_w> Gd5"c OA+Fw&ME:`"4@ǗL$pvIg aTS0 ieQ.xy \+8C>PZG{}bWl]5/T̙j{ⶀ򁋑uzw @џ/8èSZ%v]>BTyM^Ā\#K/Xn`!H9ғ|U,Uaz_ыjNxkgUB8ɖ+j>1|Ck":UdPʓJ6/6?r"8mKC-oHo;eb@-R6p,34:%M3)$\^E~wZ?[4G!kv`̆KN]>RN>UIEScI@u^w["_VXjn-6@AkjD&`g>IfRlh}#ӑ \Q/IВ P=(>{}#ՖL$Q%$B-APD\hu :CĔy. @Y!(IWZXHnpN $/J$²VlL!7*C%wC pP0B$21oNO&ۡдi}>qZU'Oi&hr t9Ray ~y@t91OElK%VR\ ,bOM䄨H2' _&D_$ ,AaJմoyC^MaNJI0؎ 7ZY㞩 V>*Fulm3Z6tn>SIS{:Xxtx)0)_Cp^V94s7@kS\^@#Z ݦT؁WPhXʰ7w$l,= b+{ޅ^lJ嘫=K3T| 9@fڪjGݿ?yV1/iY m i|,6_|G(WY"֕Yk?,sa4b{|G2/ BUl홀2MBեthxrD2ߏn+;VH.LG[M]~3(9_;/wuru?9 YbZ9{ύ5 0niM3W6 ۭe-qsl]u~*FC h)n^)ю&X?73F>^NΘSS%?Q#񘻣'.չWB؆etuмa[u7c@Ob `Y%fmzbiE|yS4U \=u;nf:=gpdr|7]&ᖻ|al5I[gY8L."ޘVڏL4"^ycQۇe%IB L8q/&yOAj)~f mx|]|ɒGއ6ku8؂z?ǩ/Y* ``6}IBV8"8Ur$J. =V)bહY/\)ozYBidj6*2 8hW\d3c`T<)Y{\:58w : ÇƵFM9j$\\.sRb`wI*FZrE 1587.2 XO]%֯V6}_.h]Hٲ2(Y?Fr;E1ۏhfS,e5lAYW+F{WA:1KSZ#xK:kt)iʗ\RlpzzvцHnåOheZoM6B Εx\ot6T٠{?ֺk=0o5HiyJ s :wHDjuJD*/G f*b>8{cljЀ·'KZėj0`}Ve1DʖcgdjT=vѢ2UC ?84jlv[fXG$QB9,!ǝ` :AX<"@ nP2sw4M7@7˩6QfBtIir#  \k>ŸZt-]z/C@?'D=tupkG#g:>gZS#?k1,gEr'6Y*F1#OlVt1 {jJ?<\e}}"kVEñH{䈞F_zQ҉qn87uY=֢SdMf?O R)7<+)- q{&*>ph=nE%~`JZ}RZtX j_sHo=vMP2?lP7`ps,Ӊc|w{Nc2 B'=4tCF(W^Rv@*g?P0k&X($F$- :.\(, !;5tvcyFj%Dhf,,׫n7̫R!uʿMǃɥz3DmLAx;Qڳ {^d }UV09%=SHԖi'ky+QQo+Y9cw?G-WV>B 1e= cE⺟0q?p^7][R$um4Ez\A*cVay:2˷6-~}p̢$vxBw]J#bƩIC'8 v~EH_\!Edl6:7$!4IV|OMUp[/3A?S.|fUץݦ4 Ő 105#J[h\À6B[ޏd„c1G˘.Cu0{@H%tÐݥ <\9\[=nMQ(%.YOoxs6 _))uP7A7Tוn0Zh옷QQhJ=N[8fʯHT<+^+dnAŌ|9|`~WUf)" i0St101yU;[dGFkzyi-ˢ/y=<fv wgPМTzZ4ZJm s)gL5#,LzJO `W2rA/d<$~^80Iw|*MjNvz@0eDa>H^}{(˜ҵA, L%{z+ר-ۆPS}e/tg`*eggٳӮ&!OIV <'*ќcS# Y^K+\0;BL5cPP h{x{N1L:ֻ1RWC/>ľ` 4zRLy9^byfg%Yl[1w#Rl{nѹU>knGdں?9ub23!XWv(q)l#U%x*囌>tn󾊵6+8t*%TVSmJoauۚQ73篥Pr¾X uArG*)ixSh@1lr95K@`{T# xa\Iv]@Pnۍa"J?6IA#A1a<$p3VkW >0Zw;|]黤^h&y$<,vsFyNfX/ Zsp DQls[0QZP4;fhhGSeH(т>=TP( k m~TEBUYu'v_.V_faAMr8]J;G:T1 XzBq۟0pFVT=yX(Mf99+.:O֤`si fρbf[Jag#B^E.(9bKEo3Bx: ~~~gLC({p5ռҡD"UA8 1*<$:A'BN,V8o ,ZzE1txmg#!%QohHuWo"Hcq U|:_4  :>TçYZ'dو wh \p>^NCR' G ?zh KN<- g܎呮JLu`,ldHT~#LH6ceDwұ,"+Ù$R |L F m4) xpdwg%cKa>Ja.cըD~#Ϳz+"nظF&G-hwYr'Q4xIREHkށy%|ȼ0pS[m1##$%w*?R9D$ DbdQhaL Y(5W k"DmJ6u[5$wנWz2 r56WRkԜEH)ЂM:m.ز0gHl49 Kk˳{]CݦJQ}~[tj]ÿ ,ax[S杷Yj&F4 Vu>#)SyceG.9{*  P5-OjT>[`kx`b-&[d"zd1UMŪ. XVA/y`@}=ݽ$V/q,)\ W[J[4ʇaly#<`8'} -Y]g0ۂib6K 3QYΕjB X(#,ۅRh@K/$-%8m_soF~e^شf=ZlZ0C?VFBMIlCr Qg,e&)=tJkSm}9z{4F6ieB/P)KC6ɨa2C,8ҽ2H1ΈY3C_qYE:7 9ؿkOҲJq792=*-ejZOh&K`Zzanv_n7áݥ \^ Y,. >Sn/YrG +3hS4^O_ $[{ (:nxNC< m;/iVVNKGܵN (%$wkGK?+|:ȱUJy?KZb$Q(2c^$./ϲ? }4oF㪇As:ްOOn[#.tn&upg<((e'X ¶ٯW~7DwxΠ64t\0jiCYe8OC>ז4u<whAAa'=G0>3;8!z:~-9}ixA$.]>!D5+F@\u\ 'd~X ayX2?!{qv<9KBuȦS܂GOkCr+iIX&Q#יl=ףL% I^wI,!OꞆ0,e8j"(@?&rZW~ZZ[F~(q?8-m2^r,8SYJ}-/?(S~aU&X#- BT7璁m|=&Y x9sm7S+bSSxUEݯMIU&4lkREd+L4T}p2 mQ "۩ᜲZ%|٤`56tRQ0`܉=ZJ/hMZ/kr]LyIP}S Fޮ MR0-xg"zeÎrvj3w@7)̖⍻#Բf?мn|TdHY [4$@K P;g,#ܡ'՝t揌ŗSNl>sC qUa.3,d_Jf%2Mg~A2M"Pp^1h_7SBӨD 3Ժc?+f9к_,4L+1 2]'Qz!ڑD$"'Q.kG(.MEId 9sODq 9#a' iڳaN԰< ϣd}?P }Z؞k:9}'_ 8ᅨION $E6d Z1:}M|)TN"WuT>Fi]66_l̥Ӱ@\~G(0ɠO68J# 9 hJB4,VԣC H Xυ aE?1auUxe~^GwR%F9O m{ B$A8o\\-#{ X[-i݈p<ٶkƆw ed H,r?DDlm~M,T㸉Քĩ-ZFD%ȘZZ~Qϲ-$q#݆F^3-1[L:Rɽ2 z哯 ~.`A? "{u=K܋#!5Ic t$lzEeIlQɜ?1)҉q :6$Z I&j!yUvuNR@/i_bQ{!$NC$Oe˟6#m3A+m;L&ؗ Ku—Z);$qy9MI&!mХ-U i6Q.p}ULjuijT+_6MC`]d o}rew?6T&Ñ(/'NJ1 KNf85A\߀JG~邲E]z谟8'xI=TCJRxA_ R}84yhum瘯Tޫz쯇;L M,V\Ux D^OlLJd2jXjjiG$Nvٲj@~A^r^8vh"L@:ɤ~2C)Tx?r\-'23j"Pdaa6`5Y>$J*!bFq nԓ- -+Gbf׬tWMkb1.۲4O=P<aTu1{"~ 7^tX?)`%BsI#Qz*`mDA ƈ~ra8uqB9Ąh.=0=Nծ\!^bzJڤ闈uWƧ$S\>C\Tq')`aX!i*207ȕ[jiV )%T(ېAȓ0(BtΝΉ#l3WH}{6pABW#& {ZbFL.` trWx>rӱm-}>v}v:b;[^⬵Ep@Z'=lcPIPA\+Ry+mE\LSLp V=CS0ʸW)pzqFV,bQj8yH8[ذG`Ꞓ/{B +>Q!(?4#!bGLrк2LvI#l] ?%73dYC7e /\s,G@ r9t8W\&R &ɻ\b|`@^o7]T(fɍڽ 䄋W8 S! )3ŬeXF9Iad}Iax 8 =c][LdA$9B>~ϐE;Q471uC;kCfV[u)پc\PG!2l'yẠG>r\)ц_(/sb}Q*[Uc缾Ã0>QULy:XR=v!4LN-\L͐ˀL YR\0i pip)ZJ0%8tI#/!ӡ8}Dhj6ڨqdQ_atfW`PuMۼ+^uyh'sH.h01ahG 3C `՟(GqiO@gsojQ܂e.V7hYxIn}0rŬN1lU ^Z70m󽟪l"ΏF o_p;驟5W\fSY8wQV~kUp<2h;[n86!_3CFL5؝a u6{W[.TZBFhD3TSe6@{iG=6f KS0,쁴6d$tsGu+=132.Oz{%JW\X{Thc] IsL`+x/}޾# rs3wl|*}?=uE"^k{\5]8VNI#9avق'PfNMס$&!̓xz6'h"r-PxM\ sE#uF^8Q&9]JDI>S.sۄvd*ya7hzcP9ʊ=TEG?bA5q&?N"PI *c{l0v51zUtJy[E%Ɗ +CEՍ X]q+1b_/aг5v9(J+DrS+P 8NYK'z(EfyU3THWOq,jyqW/v!'zd:zXMyҫJUZ涛u+W+i\_af͸ hc7Q ;%x{u(>c7&,RֵyT?8\Z?^ ב΢DdND'BOI`/G}X83 AADDC£Uɢh S!A` gD'`T88ՌTw{f)mQ\reY}e?V``c |Ձf߽U8E+RvP45%7#֑CK5܎qHNu_chS,[6C\I*~eV"uLt@ZՅ7d)s U7\peʿ"7Zb_o#2FBay1&E)4ZBO]6=v*C©lAzۄ[_ɚnc(Y]R禴-Y;& Rz~]LO)]g ʫ:CT"^ᣎ8+Yl9x ՕU?@Hct L ]SgZ!bLxȶqyٲIԋ dJ V|#!nO']ڃ>et>kzۼ!r;*soyI*{v{nJVr2wK#G1lr fM14Ex3q[+mUf}2Lqɸd&uK{a~8CAsLJlwr0>Z1oXwY EIoWmf#Ev· 5v9#x OH|  q$dfov1} !ͦ &9y(7 {rT|4tW-e{thj=J2t. O3rE9t =LYU`AVOu! ow{w7 s'zF:Xh"]c taގ7MxzMDj!eS a;]w2Gt#\k˰4[D[vrh֙Ll " ( dMn#{eҥ\9\kƱA!{8}Q88vA~~mNwy%ɦfޅ6 ~pCyX+K o+T -y|F*B({4 l3, ·FHk3E[lb49  1ŊJfn$"oۛ,%2>=$m*[]v&2瘞*E^NZv 3SݏQ Q\0Q$Vf/rl3c)םϩ)d޳ns3R36!XNk?2Abs_yMaXGݻqL )'MqGH2Jd=K4h?wSzgn\w2ri1a8ɷ`WJ*w_i_= }Tɟ/8y4rQ&VeOk b"fL?an0ן:ftd0w3 4 D۞iNB2(?IA䔓pncN8Jx/w#{+`M nnWa:-V禤]%R0 Z`m:[Y Һc(yDD`2x`15-wf?%G2,K=~3hx{4f #JmkL]HgFߺ1ڦXxg?i{]6dW ;άS2evd;0z6Y3s{SLb<́#ZX-_",7+G_q ?%uoT/%Cbgx'ߎS%Fvɵ8SnbAsb)-XzִIsJ _u4{W9r]TOlG"I^'mW^.rsEmA@Az5n#O 6b 3#@Fqr-l ӜfSԽZҾ0+2`[84?n>($#Y㥪I(p/Gl]u^#kaS\7}zh' 2㕑+lL&;wj2̉ VHEBŗ8: KfYԀUB ̫%/koDZuKElgJs˽M^[,E?LQ,zr檸ݶxQ:>e;a]bIcIGjz;VZPH~[tgtsdA7o 6D@ @@jHQqCͯO~m mEcחO 7g@y?#n ~,8@Ք0qPj زZe|f6ll)XphF,Rp@`s B:ֽJ35y2Cw ten852Em 酤V%&fJw^VlАKR]KXKO8 2fI50 ~AI!1l.{-pfRɩ]怺%Ċ 7_v趠RĉUK}5*<TQvyHq^h%XNOwm; r]ScOF,n(#Lp/ә_t֣=E1`6fRژo0 f0]4/U0}Mh30ΖzjՑͱ"sDhD%"Юn:AhөWTZEL\)N0/NvO=62ܚ)B:7*oovu&D¢V7ӫmoU}R{SHpw.7g0!}k ;$ԛ lnTXD +,+jז_.sfX>wqV.aBMڦ]t}kC3YUͅ^wKJD)_!r(Ȥe$bG7*dO*$hP~IٙAk_j_T^.+ߠ[f!fD] \_at%ڗ>gg?> dam_2aj)@Kn A-s\{Db+c}ԈXxP}Ep|Y޵V?ˊeGb}j ? -CQ%Qq!6Ga_`h<+ ܞ;V`BY_lU֕@ASw"`2_J! S[Ne' Tƕ'wrH-SNUf9ۜ4$ ߫AN—٨\enG}bisG #d0߮bQ$ Q9+/vmsByĘϰ}},5A,(0õaz9ab+zKŀTI.M4lM{l~.vMe<i_T됢%@6&RMݕ]ΫHO{3j6t:hM>ݺ۞oCk?GCaߊJ$t:Uv ɪ)yDRڪP]"`R O4&ƇRڞ\WiX䭳te`y9drTiD"I6#+/` jъR rLڃ4dqZ΄ \ѱw_:Qev^"6oUlPp^f>}ryk+4R vN[9O.~-uwX/6n.=Rdи-ّgԹ2~*칋DI b mF4Ol|=@_`ύ^VkaSĿ,>[6YXg>ߝC/LGJ$KW=R-dr?喎\:A^>+YyAB2_j J* 8F=Nv@(-6c#tn*|IA)t3]%q>q *bn v,,@ ID " u.CEO6Rk}qג[n_ӝP>HQ[h%6跻8+8_XqB#&T=KzwQ\L @L `Ѩ*UMIh]U(v쒛{!>H .ttM@4,m. z#3[}C|_6s]4xޟ-pgGoȬ:"]'95_) WRzX wq+p%ׅ:8V^Ԅ!sRFv0/",L?6S2*5&*_̝f"hmy(!'L](%?WPR8>dmr_ cAo09D`p*S*.,H|4#2"3Ƙ6Ij.Fp:F.(ok-2\{߇7}FKYޠBWLϨga ui&;e,K5:$ͺu=.&$G1ce!F2CI&ȸ8/ -&UO|cƫ⾸g[{)l/Bb /eI;%š*Q umh(RFAoƄ(WVH p%g#U(_S4`-HJr4ΰ(<.*RB!J|@k0ZxYjwX?Z!U5Y&T95 ռgX%5 Jvq]|xBG؃]MB45P=Z;\̇Iq.abSZT^T͔#cߌ ן8!jv~ s|5J$Ӛ׵8ͨn##UVRF%c`D L&=бIHخa~C7{S7I(?Ṕ=OieZ(A0wh+Rb7cZgMM"̂F1κ^_#S;cTvޙm) 15L2)`jCt-UO5`FMbAt/֔FCWρFFKlL|rz_i"Et;+VN b>Dف!z:ipin}(̏HU{6}E'dOل2 MN tnu8Sv:yJ@`Li#'' ȹQRI u:(14Xu$s<?-oI5\`%a:Trշrt:RpځIll>g ٫`@@KQmcGMEu@z}I94=Vطr~*['_*ޚ3?1i;u!K̈́ϵ c[訯MUeaΊ3KSyf+k4{,vfMo1)vb W*M֥i<&7W)GϚf'ҳʼ>!}|с~.f~9tF q/ 4(\p -EWPY4Kٙ-R;m5ʷ:dmq,50⽎P!uTI {0H5ݚT_:%z-o\32jSмm 9>wVXy9r pUS~ELNX^ u -Qi ;S5 tc[x[(-"i6\yn18GW.2A]݋͞t3Y$Z0eupz=aD0[M'.w O6biLs +Gp N8;8P=UGxTCw<*/J6~3#ݾ *D<]g1 ]Z;̤.|߯ލCEwHU%5+#ӣ??&Dgq6x {f}LU,r>Bv?CM3OJ ͋ $vHV7"HF d'1Muqګ2~I<^%MZc, R:%<0SW9F*Rt.UT&nf2)9H(@M yjf᭬k8ݶ<.ljyNSIüs Fim뵸^2YDz!,ͨ@<5=tdX@=HC覄 #Q4!\v W둫qkFP|QNS`_L74i@v&Ip4Ńi=CCd^ a4n$~]C/)L/LCM[Tlbi #fe^1a*L/ {,3 YVJXzwTII)o2 yV/VnIQ_տ.CaǓ$N%jx){ HA篐E!w R<&ìƜZG@Ъ8VД"(R{흸PNzUMfR\G8k&M/z,sVx8l)$^9z蚕٢Y=S .)yD IxAawf,C=N)%Iskq4DU:1,_bgGKXWjD+?݄٩fVzf1C D^I1uj[㡗,5G#r+{Y9h/^Lpt&h?'rY*u>X -Q9?7nZLd|\#14ܶ~^k=Bf&=WH5ú9"=21?KiaL[qb3W\ଯPVel}E.h8f$Dh(4uk7HbsS`)Mg8ӷG\W#9|C8"UO&>*"Cuc5 {gh'Lt6FKz^=s{gGI<_^$J? @(Kq:]h@,/& %Q!Bl;j,/]k &L{F[O:͑ǠHj#?+Moݶf&K !+b  VmHbW}B怽P5?It]çJS>ce86y^xYLi8\m^CY,;@zOEDZ(Ѐ =1>TzymdwLFTe@yX\qI a ,GЂcۧQi $LE?Q]ۑ)8#{Hq߹afH+EruZ:R1w/SĬj'wB[)2CB~SPYtkHav !/{YܱNdfa1%}S>_##֫v+!V#^ÿLuu 1<>Qb傢1nCYOr?Vve -hfoܫ;lS $^~h@D8Dt8\I4tg}+'˚L_Ɏ(}EBӦ)y%_ "cXP!1w"1nYԅ,NjPE16|u#lMXޣ99dJ-ƅS Pu),x܏FKCzU:8/fV>e, f$1F:^ƥ hԉPn[shp2ʟ,/K[7$=2qV O`(sJJsi=9>E6װ(E EFr[imNd ,s/ltlIkD55gJg]v;]0=>5WߴGfr׋jvn#eh6Tc+%߳ҎTʢ1/ }Ü* WW2 {z p@ֻӵ 6<2ZZm9UVeʉ A^_e+=:]j{)Vq' Uٓ,fy_!ItM5}1N_` UPVBԳs0j6o@hÕ6ߊ3!h7Wd9MIvW: q6s67v; ߳Rp01+3mEДJ,"bejf%pc 5;r]5oI+m[!%$PE6K}qPv%T? 'dG\ٽN,ܹvKS8$yFn41ju{; Qq7" Ƒgډ螶rh9>P2G톆bm7rw/aKK2=n%}gsD?' b׼s*&poTjk(X|+{)/eK췣ੜPhkH)?*j)Ȼ6Uz8A炬 *>y㘄н[&xXa!^UxW¨cK^!'VC}."-җkS$xE#5? G2q9mD}S(=M%%n}hzwuBz acT9uJ!N(ן{iKҪ 3'WtPa0xMEbakSrcC4Kh7~2\КO[m6)ɡ!ל#ٛ(͙ eMvq(@3޳=|l@M€Ae ga*TL*ϻP4^h 111C'ǝ/6wAı_blF؂in;ᚚho_ gm#ЅhX#JDDS&1G3XxKXfڥ=" KoktoP E~jм{ؒE@Qplw7E,&F׺OHɾ$ZBhpW^x0=`5>`L~staEig|,. ӭh]{$w 6eTQ.N ٥p'SFK >$ܪt#L8{I5rE 4Ѥ (TkG3E %g^sVh$ĄoWJ+/R%| OZsS#!&&D_〯oH ?J߅K05EFsh5i&h%\ ms= Z붏zx<S )GKc=i Aݳ]xI1}#G]P{Zr 0aXp8P{PtmSM"b7ȼXLzyw.P dk*5!'><'5]{FnA_)ʶjg}\z@xR`z ܒt^ KpFIo@Ur=3j6As&>ƽik =a-kb[{?y {2{?;C5M$KĘCG0H]am.xlA[bS"Kylg0AE%رm$f;g1SܚB(>M>̺a?2HuAw+l'eXD1Ud#MWF݂(*IV*QaMũ:\ ǕSX56wMK>#RF&Om+008[5"*=fkS|gc# ƴMQ_e aWHE HnS(ٸxeR`6S YxӞ ?#Ҩ0a7*)TMc1 ng-Wlzf\O;nwP˔/ rDHQ6u, '&!%_cN;0cٻT끳T.ś|x`sPZ@xwo[1HYx>,&I)16_rN1b2E2$TT䏧A`)!uu,T?2PٞlE2F5|l߁kTsM|;Qv߁!E^vr:'hIժ9)bնяZEw/Dd/)m3 ޅoE Msy[:d`qWzD)Huz8X72W6x7gJ-/:^@d-^&GoaޗUG9iv7rl·;_}˂O ܿ4lSEb!,(7RK>#i`H6 Tǖihii$*dEз23K54l J瓴 DK_㓅hqܞes&e]dP]*D.X5ڙQm2΋&lai`|71q&So3xHpd9}qrQήȽJ-7k_atR +9*Fވ. B/&25 nEn,!WNjcR%ʁ>#" a 3$0qć4.Qԭ@ {3SCO9S_,d7]je㐡1CN"X%oC\Q?)& dJ<}]c6 :ܙƳۉ cmBwlӦO,br$hʝf8}\LtF3I=%Sxcr64~uޓ %JՌyn$d3Cn:Ke8Â1@]$77*)洷 QR!B*m_a:ǏHD.g+Ze3R1P,;\{Ϛ4Bd 异>Jw `F-O 0d÷X|(T60- 3"mY]pygIڿ IWV XY-<tӲ7ؾPUںHb!IARmk$m +(I:agLkh lZN}[nzWB kcv]%l @jR& !Th:NI;/2?Y&"`+*f:D ~}TG4.}.+0Fd{HML7Kh`rey?BNMH!6ގ&iIM5' u-Vs9-JL,skR'Z. 7a| Ni(><_ӽ-<n ^QIH`_X0nӟ S"Uwԡr1mb(d`A}a-~!8c֕>& Pef5y'@$6Ua{hFWcIBbUцh'`sX(`+P0NQlYL36 O:+w|{L/ k'ūcpC0+l,ؿ7܉'$źQ8gӓe/!WJ'.>U57$B![\3e+O6M~,Rr]zns,Tx| 8 UT e.n B&;!{đha5U_0<#ѵ;צVU;ֶ~B#Tvq4YKi{M&#%6m6bMNO}Ef>R.ZVkce5w4n2:.y6k7d~Wb6̇ E=gszlfQ!툚Dur"sx|3-&,s9auĄavM7Cw"SLd3 =ι8ujP04e&T; z/8 tȟc*}j65`T.`8CM?px <~zfgV洭 m74SY5VXMZ!ί,Jzиֳh=ȃdfčXsC|}y\g["]OnT 0CQO|B #9)D}g,h3Nr|縏tWOjGa%v"rQƄ\'2\'O/CU邆0X -#>鮋0EXu}*%_{pd^i:ܓ, W[Uհ󫴟]S)쎄kg WVu]|~~Lj-VSWQ6P!г۱M@Np~h /KKzhqe0^N@ƩY @s_ &93\M%Sx )dI0BXGzfLv;mq5KQα4k:4Z p ' a)YSiĬ )` l]FW;FI`5̰XTL&ЮDKzpԮcNo^ښI\4EV4:Ɓ:@+`Vtor-mp8)NFGAHݠ$xF!6Jv;P n]Ao)|Pl!Wk^XJą7us`Fƣ)+Q> Ogh#UzJcY0s;p7W mG6\)&@T6!f2$B%$ ^;~Uz4ѫN_0K d-Ӫaڬ|TSk$G7h?uQD=#a2{EŔ-DHX%SRtQo)>b%FK1W$rQzA.Fd b$ӔhضԂc |MrD1鱎r&A킭:T#řd6F[($Y{\ ~#&"*%]pRi۞*kxEz-(G”ϱWJ !L>R*~ k"7! ^Xt%PnU-1&"N’= lmjXիE|9stDv5#9LE|G89V4wL{FWʁ3LgLa 1;r_Ն^ThWZM,FwYrO9줬Ne`bfŁwmUN4fnT`R 4||dXDx$jFuaPԣ Ȃ>^E,N)mHb]!x%z@Ub{qaxkYgNeb"OU6{fX u=&7xX@E?{C҃OcpGٞo~|k/I= KauIvvxXc(b/i+³gʪT`=#%meANE󲯂5Qы_KY닩;'JJk@fH{: |H?Bڠr=lF.)5Uq6b$9d_92>oZ}7,|+ODb>/D48ߪ%rrA^{A1C~ʲ[;IG=IHO/(۰z> \CBs%0L0l0.)b;+W3n|*@=\\'VJ^Ohj'' 5~d:}o)mcu¾?ꖽiNpPOL\> %ov6YbR8]El ɤUg[Q o.v\K xQ,˄P Ύ!@7xP$k"BQ%[Q Z. i`%T]Zˀa^dby hy2 ]8`ϖr'RDzP| ,Xwk@o!їjnR6cr'eﮨ2.+?Cz7` U^c=NɍlSQ13ꞋN(ܒ{SC!m/ǧ1#$ž8!9y HEM+;«9PUAjr:vAdl FOHwŕ>DʱR&/STv; 5a{ jRmȰ[tBx6T- cL;F78g.F/s@/3a6~wxw@{e^']o5T2vjio&}^gI- ~ $Nϭ5]59f<ڍ<d@w^w)߃XDǮ$r0.N4r' z_nՌfVtD܇?u *[BT9DKB%ew lP6%d =pƾK '6(`mdCR?rw{>8=أH(QS{m|9 ,C9l>8Ob!M'-5U9[޴zIA`#liG4o}'ɟⲮqZpGes E_ʨMRę.KGOt!?@W+׀Oeg3 &0g KC9Z@mBH6vYӸ_ˣ&UYIplT +dw*LHt{#z=(pXƤ:?0V7Vd c9D);ZƨA3>E^{T9 nMQi)1t{) 浟nj 6&MBH٢:zu؆{ CmKA6uftǰ/0^Yv!y+j)=iĒ C¶݋79}zהB Fy0M9 x+mab1}xfw+dƩΓD^g{PbuYݚ ĨJ>Uz_qU}^RI37@֜DnLs~<'֣>ksx6G> 2*<1R7?ܖ]ϑ$fU^CS| $CAИ $8:NRBLoYUH>q/ɻeqZd.78 8 <h;oO//O´*j y*(9A؝j쁻Rb b홻3v"n\;[noP@JToq/%Xnjacljgo} YLq 4J [f&%I7e.TRMC|9*<\rxdVy@mW361rTĄotS'b"P>K.[Ƞš m1su B.ߑ_&ckƛ[;g d8Jd) anxn)z0Pb? i/}l)iMQw?m Gv*BLL$l8I8BQ氆+2,qąDX bfpR: H xq@m8xkjYOȫ{c ʔ◗#*>mEU3ۧ'R?pDcBna7DϽp_'zea"ꁲ0Z{̶Lkgwek$zo%4BS~q.Z}#My+5B֟sh);?)ҫіLI}njy|薣/-Ɖ2lSOTlJ֨ d! E%;.U.ie> 1O0Xo ˟ZÂ&ڶgͶ!y4 PDNvvc)6/{,"<ωo1Yξm¶!m1yF@[6ZB}@#ESM`R.#T*#nx,Aw])SG_-&0k:gS3GDy/@!_pln ~˙:kfPڷKumjp0* R ZPvVّc!^'J|k1 Bpj?,j#(n'.ȷk@44e XM %1S@1v[:Cp1m}9-]GSjirG!%ߒn?G(+5vAD? ' 2~gOp|}΅qX8|E_X,INDp,' ƿ2)d!KϪVכ+aש8S^g ݅4@q56JR. */@wh{ܜ(u>QE,J!kxMMD=\Ѫm 4V Sf+ZY]fIdB5m`PY<J/w ]`n+JCx}@S=[†> tJ+86`!uZsZ. 9l/N>/_*ѡr9ӁtV#䫞+r~p49{,uXA@R/{>mszo7(uREΉH̨!zo09 XboA_@,kδæ,S0i~q^SFd1Wd6Ǔ^˫*>aa%|b%DJEb u]$0ܬ1t;;̅c2}ïtiJp(*񾋋Pdmg𐷵oh]jYu V֌, ț#tL}D72D)(XJ/ilM b iٽ|,82#2qi8JVT0 ]ekS#拷7B*cgu3ZԕCB.$\:n%` n%r~ 18*čB3-luH1D`ʸE,2y.ChhS`uyeҢ-pT*9Q?Af>L/4)Z1]'^0C-}؆h1Ɩtj-Ίp;dT }5tjƮ \ԣew74403k\k2WRE5$Y(q_ƟZ,-glrFhGwdCř,7m7U|O)~gQ5toB)0l!ܔTg|ʲ >K]P6џ68S})xsD:XbCJE'WiC/쇷F༟!wÓlHϴ5pCoӖF!92U2B_tsoqғo/%("R/S0?,Fv^;Ec\R5~>¿q(lB9! *סּ( K[1E|d>_orXdM?`ot[dA(/06Y(w")shwK/E8KG~S$A )qO'oz|eRwL7gRZc;Dp$jGOH7h GtrVTƶ5Ug+jx½+ut7 [Yvqw25SZwsy,NQMa' pm}=4_c4$a1nek&@u$ht &?јjVטDtTI6AfF|ڨUIXST ,]o%;Ho8q;* C8NC2׼䍾_axr@* FcN\J D &6@[X;+Hq@A庒zJ|LF^h⟾uE=ޠ檰HD{ B1䗻e(;:1ZA~Fcfpu+;t kUJKզ+,R'קm@"ڢcQ[J 0{ q+lVIDJ nx4Gw@O[yG\$yq8C)5A!ùDĪ2a eYI>x:m :_\!R dƨepʧ#Ζ呑z ^.XP5pHW&z.]DSSNE8PI@'@ S{>cDBA쨷;s,L5y!܌ yD sgpO̓*fIV_Wu.cNB hlxw(SԢ<|\y됯v8;p Ku ۪T!erXF"[ږkpSһ ֟7fbP:3pMF;!qe~JCbmcFWLt7Pe- y܊I0EŞ0/N󆚳{dicJQbtn.@|+h]47m- Pz}3FnC==abejXǛQ~Ď`3І0E}qmq:5?[K Z;ZkQW_+TŶ`WY"ܰhJ<_*Q(P,ik!fS}h8"IybٗH31 WSoNP9 Wf0`jwyOqU:(S(xHe0mIl4eyt+)"+ &@`"X'&+$5q @ka"^)@[CCWX+|ye`_[pr_k6vZzh( ;߉U@ ` Y&ț-kx|n =V49sqdo>xLMRKo^;T72HԎ-8d< :)=/9Ws_^kzmևT'=>u(g,҃vq,#aL2#ņLjd5BK__=dܨ1P;fyRkUiNx8<ݮDž*ǂ"i 9^f^{gMmPsw]%S+Бȳ}W9v8_IӒXƞ\ @܌_eFX*|'f(0sH/͉:i|J^,2:Ze!o"`wt蘩.oSjt(Eݕ+\` / yαW7[QYm8zs\ܔ ;}j*@.`2J' ƐyɋBp a\zYڤto'| 3 . ҇ [N7C p«i| M֭z si{Պ m)6 &{P"?GѬ")}K}LT!Cİz{X%XqR( 51ԉivR5M'0a6qbX3`%xBe}c fM#vSr7&x6p84m'$Y{cfoNл^6>!% =!-$%@[sM5JVf#:)3TH_ˋ?֖ʖ5 6ud3?LBGLn&sd4v+,7 ÚLȎ[BX2HJjHӥ.r~ZOi"MWu߬ s&97 V*嫣~>/d3嶱jmn2M/NcFY['m;̶}сfׇb,[N|{-bu nyOb}I{M&|ORq z$b O4J s4Y3 W#?BzPh\ZkGxidk[_K DʇȷvN =+]졜dhkKB(GVR]ni)_aq9^WnZ & K0nki9,/m3k $=OZ-s@a7 Bm~XwϻfBIݟi rXo2HK"bqIZ'9͊| ( E)A7瞶C2K7Ka۪tfJ4c>]+ - B~߹r˹AmG+FW[z&iY g tgO0 Pt.7nRf0>H!aC \)qt$"d9VZ\α+N :I[ 4?]sޯS;& `V'# ZOD2f"\aP\*[72Y!Z -3dȵv:4ax582gNcNM)GOF'݊T@hO(Ӣ.&}qcHBEp@(us;'ss jBxY߀W?SBj56eTRR6 <_5驞 t3nsvgс`e" 8LPy;}}JzE#+?d\X)%<)lԳu#DYG$?!LmRSuQzPSA# I0sO٢A>UO)޶b.LcYelq1vn+VM~S}-.ԎpMns. SܺxYGTZlT-7#c6 HBX,dzv+YҙST2GN/Qԣ~7x.'QK- ѐ,LxM$X* MJO EܫgW4ɇ讆yzJ:Q60r @=+B~b\l X<"lڇ<_L& e;㗷=Lұi갠<{8Ѡ'w 8!$7l;#z/kBREf;gw[-NHzdj TmIgqADk^O !$dtBsHb,vG,bLZY;<[þ< [nXE)C(FT,+Te3־ch;:B CV/O"HoQE^5ʕ2dn FhĎ s$)xVkI|vr*+6 .tR*_?b‡\X/gp )-"F%q[̷-gL[1<.N %+5G{ nS$jG,/?[mO+6:ϰ6@~JQKXIwbl~oeA &tzVm%ésMX3.~`1Yl7 cĉo(|r"sH2xx?u ĩ~G17eyj3CRz$5hW\ Netx.(`kQy+S# Äo:ZFb|=cQ~*DSҧс£ 7t%ImhUՠ6pЇ0J!N'fhP=S~3;' 08<6}j=ig h2IA R\[t MYR+n]ȯ#iSnƚ$Aq8o e4T@M`_n×Zpsc5eaDML8یA27@O$J2|W-/˯]34oe[w-SܛZHiʣ3(+mX}ж`B8e7rgs$$;} V, -U3=z#zu]V8 +TuEŢ3?Dd'0z>#J_@{/\#MLPqq,λ5T?3E7bT *^ \v/5M}?"e_}ѱqP裀GKYzK]]~^v.{s^Kcnk {[܏t5A '&GC,7K!7J].2eH&3&h/T2A,@zgM԰m^70`q S^~q@, .{@8ˑu؇81"Dzߥ6'_7c+u a.M Esx9Zofx@51{nHd͏ 1U9<_fd"?./ϵYĞeOB-ڟ/whru&6zQXVzTu1 0981N⎙2M,[ ֪;ch@I)w8J,g'Ru8"fa6DQNcXOVT-TX;*}YqOW@Ι;;jzyZdBu+&Fd ax|w7@qzW{Zj-1G˔s)dڵTҞGQŠ )NPr{VQV yUf\NbݍAIj`M-%wG<!u=u;;rYOoQI4Oد@m,eM?x^_KI@=A3c1@>Bź (wS7s=/Xq.Im]xvv弮Ď- =l(މ@kHЉA_QX6U{MD*`VX`R&[CCoxL3I]x~J2FS2TgLh ,{9™v\i]eVPԓje[2 '@s8ÙoZvV2w`u_W~3t;USIL@~0 f5;w7Q'{L q1g[6iޱYrWżz Q7̺=oi8>[l|d8-!M줳ݝFCUqϡ{o^޿|=EXPD]/sB9lL? D]uU0DXnSͻyyE+\ݔSkf ߌ YA^t{x(,#[iƀR!,>45N>c|Q:Y!aϴqRCa%ێ`Ə5ɯt6Oc((~Kld Cmh ߬c,!Кw@ppnDxj9+N:8:sgp\a_0XYhm'}QkW[_A7L yҰ""xiSksġca &=҄5ϕJȫa_!r9<Ǩl3Bx=ӿD\(F 5-W5Xr[m 6Ѽ<^ROnѝ@WIMĻ)=tC>Ņ;-9!m/ǚAop4&Kzҧ+ $ Ԃ>NSTYШ(ݮ!B .챀w*lz%IXyHғCܩJZ=$M(@+N/0y^u< ֫\@& 2ᥨnpwv+4ԪΉӓ-"x(^y /MoM~'(F𼲍GӼVsS:LC`) .wRPiUY8et(r2@,Bg3T0+BW^-H|]"ER/? j/!y|%{m)(+afWR`;A]<%sҙFuwX  g_N Ь4o}Ҳ 74N`8;j`F_BF RUm/W](.Gd q8~žbn?Y` ]ŢV]DY'Ӕ_t|$g&_f\G;I,xzk.[&{] WIFl Tv3Vb<ѿ+ ld̐<`{aQG#;,V fs TAgH 9F£SXk]ɝJtѾ ɩz"/]V5*^e9$CN:0d$T *OPrI ZH2yz?&j+Hb^N#\ɑ_A:'B&R:Q^`s߇eݜW JخeT_q6/6lƹK%"|֍lxeX\{E!wʚ`fD~#+(%4m'3"T,l*Dx.dgSL'4PB^NY^uH1}F w^r%WaR>)'ȴ}NعM^Y'@*5YZ~h$TZJDUAk6}u H*H;~T/.߉(C{>MDL^0b[5{sY~0UOߢlbNRyZrB6o;6o2W+na# kO~AKt ӆUMP@ 2 p.gPgA.nɿ}_ևCw!Dg:P'RVv;-6QE_dsX4c {0O;d]$1>q֓ka^"7ߦpT|(l0GQ@ (Q6;t38(DSMIY|$Fz ,1Q.yg\po& 6SOz}H(?@3,ԇsԊF_k|.lw6DJs0A|,O[dIOp)Ύ~+ơkՠx 3!3~Yr!:PZoc`1J+dt j T:kHG*hhdak@Cu8~avZc<%-<.F)Q6ʋu&W<O"H~jr拭U%~MbEs[ V`1soHhʿFVɦmڌA5NB;]eLάlw)௷N t=~AԿT ǘ4''7f ׻\WXȥ5VGxySFꪁ|~ mOXڿd;ʟec'> ҈tv/ٰP{,>A⹰OT),i@Ӱ;\T*V54];Nq6 %MG/o+5;wItz'N+bٹ&k>]!fcMc͚|'c\x}`^}se] }H?<]k|XsIU鿻ޭ~= !k߉bқ orxEJ>BJKUQ1Y~0:hv)R sFQI;>pV|tJDw=k( t4HVL2f^~oŝ!e3Z9A嚀19#Zpvq#%'t%!E!z[G&j>u!Y?M^tɞD:!~8}{T>!m0*]&v.=z*D$ N.ή}ƏW"J^ô-_2cIK`=vv2Ϻ/Q16r%t&ǷJ$}?3v∏UJ9͛̌oο+Zʸ>,ͮ78 jʐ$7^9-x]hBp%M~EBL mڭi )yrn(>`gVDUl,Jv8eL8Kf6a8AR(y!(Gsߜ41-:>&7Rǽ?z@ xQ}G©! ;D%h!e{7j>w- b1<27qi^ ƒ%|Ly|)|S8S(?<yb6dSCa R`l w %zDVdAДx5C4Lx[poiո> LMcB*EJ,U\6,c9@_}fMABЩ쐉Hvݘ.XrI4VC*"[DZ -װ)Pg\+fR'B :O A4k{AuMPp6|7 ׿Tg̥{Z%M͠|9G-C}O$ b-sI2%{8j Ԯ0@uaYCP=+LE8{x|Dg;ɫk{Nrv!ڏ_P@cӸaQ*rE6rӈiƣ}ܤ)+}2렸*kJ6u>w~/bQ7^`Ŏzhy:ruT4rf,tfo1gK}.~x2щ`>,]#>{ٗ#O pcz$vs}t7 ~g,"J*6Aג G˸m* j̐fk!U:.*Hv ){cmjJ/5I*pHSM4d-FZ-]\XB  #r5J3i &nMoe #E/·2PQWBM~Bah2$nS$W [k[<Ǵ?NL' $?EW*t J2r[D6-c$!5Q**ϖ|'E\TobM/Ϥ,4{& =~K6~qcF;qAV"$ mwՆno|X -zor˚b[4_1 q, ~2>X3b`ba-7dJ”O) .BkQ"OY'TůzERl3D3령MWq9@ l+#uSH&nWFT/ /u 7"y@qMm(~4dc3,% th  ïngZneBgoO'er՛IɒqBpȠV:aI܌X oO20&pZ5d ۤd\ O%ږE2f7Ak/,# *.[ TK8vd]O^~)5YUg Iy(Vw JjP@>wgI6@gF{maj׍Xb6_oIǏ#_g_ CP@J߄LWdtSR J ȡGT#T Gkd.=)FT3 Nm*,GqN#\~#9u۽hotYԁ8k|GGu)8oCH,-"ׂ5W?SA~=L+zG + <=|d8}h0$҂AGa7nnU3 JM&֩ !7T|{#n^vӥpPRA5*slyN-P dV`SźY,`dyEDm|'԰]).dF2[(-d<[j;:rV̆x{O5Y{OݤQz e/&8\y5"1AP A IBRLZ4&Nuz'WOMQꡃVSi3w?zIY yq+q>%42{Y-n~X\2-  AXgCuc aoY cVg\jܠXWI16@9bH?4iK_'*߀Yxd`?YGnDž+fU&ݎٸ<$b³l,LM:%U*Z=wSf.]}pH)#$v"ݹs|xxB3pC}\$br9egVq1XQF O͊M-`V)Hm[دix:i׻L2qkqY~Ӕ+B"N+EѣVؽsՐaܫGU:`:z}֪ RV5BW, v "=ۜ"&ٷroPQW,}OׯMb3Y|oo [3/Ƙ[xҭ<%xyĩKr⛴x '4=8RmJ&ڮȴȕTCu@TPd19ޛi<.;c /Wg3n|HN1KdK)ה#|s-_ŕ;V|B x7prt4!NT՜G T)<ހ4 piQH{gQMZ xAs]. 1Nƈ"(V?gנE;,.nLŮ79>!-<=Xcp^^5oZf օ b̢7q__^7a7ȠU570GfۧGx3$:nNb1-b1Df ޅs޺CB / "{K{-Z2Ԭ#lj^ #&<#zZR3βi8Q;YU*`) Tc1ucԝp{9V%@}nRܚWZY)y1M*=p((UMs=dYHn2_B4/@YS4ȹx|/: g?`ѸbKrYC.N]Ip- YZçq3E5 U'J}"~K(֙ :,9N]4ɇ ֱ? W~r^E =Oa\G"%'\PjqчXQ)=MY$Ff8;`m4rcaJ[GqC QiAa҅Ka3WoE^SDrv3BZn׆uf?s*W'n:[ `!΅NBPNks톱ZAzR?`@QPЭORC`+V9eͯ HeTݔ d׉V<Y, ?vܲ42vU|.!U?1RtY\ȦvBm(pp[O#V3 { Mv3 F+Wgo8R!GF"2e21E)%Xݖp/A\SԠxFSU^ɡbAON퇹ǛVMA{B &ɠ@$9X p{qFSp|f,tуԊ ݦ{HW<_4ch:- orwd}PVΌY'B-+ȍTT4"YIܛ$pfYafϗEgLau)&Xs@C2iM%qvn NA:Z<q`lx7fDEDu)E皺L oIvHrTyT{L`Q1؂11 n'blI7z;C}buφO%Qi\6iiLN-!6Sw085Detc~+ fUIUJ`PˉL}rnoW?Ōj<'98k+⎤;hvڣc] 8bd* >*,1$Xh=Q[Y <(dž{2*Or^D!crM0AahKZ65Ld.k0ʤ{N[UgE^U-LDve%@ fEq?1d۰8(keĠ( n*HX'u҄;C{;֞!=Z>({5/R볣/.S#[;;7AY97 A[垳@M/|0|ZDK&ئ@I* O\Zr3PWy1Y]Qe!q?k/kH}w'4dfId=:WS fZa!)$Ӥ!\ht [&,Zz4+ ko-ӂ}#,a~{jq!}鰩AF tZNd詃;|Ӣ !,Hvx |VT̨^bUxu3- ^{%9HT"kSzw(S`I9bːw9,g\) uN.uNIFavhW%؞E^χwmgs 3e_$.Wk$3%Imi^ݢgtX%UalX&'.]:@QRP& W؜-#;Ob亾i/UIO'א4LL}M$ ^XU;mfhN35P&|\>%(8_}C݈ị2h~w>#X#?aygjg:=6#Ork62w<Ѭ-  ]kU8D;ӱ?#ZO= $(& <ZH?JG2hաwJGd,e|  | h{c)asL!xqtS{fYg$f$UQT-;$j^/! !YHkm?rAS[ن]2!{6 ISolP{V21cև-6#Z֡7A}b|ORW6{In'aI 'NWP69O2Ԍ5KFG꼁AxLo%6P[NB:JݗT=)x)Qs=i ~ jsCN(jĝ+,cGhd:+W謁~Q]G5)VMQ\ԊY??2xSܵjK B{n,[bt`ɲQg"b' Kuu2|L?zF^Sȩ>I@¡=7(?%M%^{|P1Ԙ,q c.aYdBr:?Wed?NyULJn0HZ^39Fݵ8b++ ;ģÑW4mtK _<^l WS~&^ akd H|x&{Eyse&R8[qIf2Τ^uv lOc=l|-)̕OA [evQCȇQhd/0K^?VZNk\ۚ t:KT/YrVDP>N+'u%gwV}F/XQ|1Q'-`tE1A}D?UOzhoÜq@K,#߇J&Sҳ49àv-h gD+clj_zs-[3l,d),sh>lS8Z%QbW&yMe>&rV'eFʽ'*ZwQ_E bjb}~K/wVQM_vܷ BXI #eGUTsX#YI"?r0t+x޳\F|d#c/xax ̺f8iqTUr[߀Y6ŭnDl!*U>ȡA $=Ix0V߇cA7ԂȊߓ! Vi9$mBD6̫~S Q.T|?FxfS+c$PAǿ%WCfd>7%DO\a:3{X {~_+H> V}*W-U}:IO9N-ZBRC8qnِ!٦ȞQgyc|ZHqggꦒAgR9SN!JKе`$oT څw>DԵl¤!mriG0MRۥ,ڈ_K]e,?7KqMPݺC .H)*i n`CފHಅÂ ~Fڤ@<-]&ǽPE!N@*];8 Jui=tw_rr)YEMJ2xҾeқ00"l;DZts15NsZ Bӟ@^Ȏnf&3d=I3(r:JOԺWwRo`˂˺&:''%%4vf<32FyE`zZf>:Q&yKc2=󹧹4jܥdo?<Ʌ=& x7޻/{VS̏~)mn= 6lCg[Щ@lԓ%kn&,s0=RY9#4cbJ3Y$DpGm"+t]&᫢*cEUyVMܷ_UZi|3Zœ&ӺXҾo[mVD.<<8iɁheIJ($N|_KiȏXm#SH9ͦ/ObL0G@ zq0X Ϯm쨥K-w6,_ܛ}:?YNQ&ID,7>|Y&QklS$=緬 ;1*h;i#;BTn41u[\m5CqQY_׿3sF]{/qHS|ȼ7ҢA{o.﮵yύ4 *3!w攢4kxON"LúysRV&_wc:s3wB TK o\CN\U1qjJ .rM ΢9YWUۦݿ@hO$ Q.J}\_aMzHȔ&f)lmBT 32#7]݄.][*H~F{!!ٶ$o܄ݖb\z?#p+O!Ah6['~|'3b-/p'b$cہZ!&+PH ErqmP9ڨ⴫VYq}d|6|/0f8 XPQP+1_/t0,j(@C~,&1FIi(uDL$1&jrrqU96[Tp 2zN>=6Ay0Ul_c8%_Q[(jKqR3b mn \6fSX ʞm Zܜz(ykcfGo2NcʸC(qTDR1(mzĽ, ;xtƺ%cn)^빂>ZL5&*VM ѺNCXSvˮH5;Юll[ow $Qᓒ |ۇKrv+gOf,c̍hxXN IQzhU $~xYC Ɋ.Rc522j.?fPTCfv{1WI }; lVZP8bxyv^9H<{3޴/Y6>-iv*"űE[G $-|/@%i+hHmDKi{Ycz;9s _y(ܟrQxh[QJ|k 71uS;̍8ހ`=X]DrQ_ &ILhdslYMK (-֖=%ao g\XC'xn>O<᳸cOIyx@-&l}XH3'S!, R[ngDM;xj疧=/4 IMj<᳆p^X9g69dq(2wE1H|pM ܗ !)J\O M{>h0E2;$G`T-O~y|Üvp6K5K1ԥi>:j + lHX@BntG fQI)\`eI }D;զI* z)Fhh]?K̈8 c)#Sxj̖w(HxG(z-i*O>Z^Le@לO5'ȝxW7{ؽoqk'Gf'>a$ąT6vv[¾0 U&ubBbn*SF-aZwm[g  ҫ'H]k:5uFͱڞ/yԝb6;ח;QYmz ([Zv׶!/\$bq cרr¡s,K6o^>&u:]Ub0s=p k2oàAЇ-GڂMEjVaJ-ѹ ~`w YBSbīk 8![G;1/A&7̶?:` (Xfs˜CNdm4ka59yoZ>iۗa{(ڗJ'V|%jS! ,EѴYܣ2cUG fN]@ȑ;|wdu}eWR]Ϭލy,Vl<#<|Hq XZĜ?A bcIRB A ~a=wߺܛƻV ήr{`pp՚:Plڶ FpEc<'؇w_3>↙Y'9QlRbw>PM `-ďOi_c 4<~d(KķUBpO5XT[8GL;{Cۤ|Qtʸ 0ug {)fP{Ys_w^;/$]Ki~^֬|h}J`#@X$M`y!l,ѭA/ ¦_+S60{#mH/f8M>6!u_LF+HR,n]R_kI0(l:jK ^m:A ~5ڤV( uK m"xUS}q[s޹EAq=rZR4AnH}*G+Cp\ͱ*# \BZxM5<֛NqDڛ?6wepZ7C^d?u!-l|Q# s&g^4.CI-iR$)t -cD? щyPU,`;kK(&O0^DU_\W|S/GWX͓\nPiT}zyAzEFK"oh=8_$Se,n`<̱.VjA: <(CV&,{9ʻR Hm}2_7k-AzD/'WLԒ\ \59%Ƥ\τ=.HDa?]IQbP{gn: OWY0,WE VVX_.h=}Cи.Mb{[6; |S v.H#bWJBxG]m\i81t&-8յg7|a \*!kbԯi5;%W5vcoU\ H{BҭpR*tкqa1 [D󥍟dM۠ʁ#R2c[#L]旪 3ĺ)fF7l f;h^ f ibESV`Yni3?sի ofmCnAQZ5,q>ފ*uMJWG K9GMndq|5SOx &~ Ncd|x,J! N6i>*2dЀ#c3.9DϏ| .-">veB)~&S3vY4W˜$ʆڒ'F1ΏzAlC1g@%e8U  ;f>|M!KqS !>T?5`TڀoHn1U3KƢn Bo|seOz'$@(a= #Aܦ]qg){k%v!ҹ^(ʃmr 01zV&*AZxm+}-WJIvGC2{h%e I =v 1{ ;sZ_vYe!ph2rj!.eoLR/[x- x[v_Lw &]mۻD4_gUv"`)Cg:+c☖U.F@Łf2&fAW4s~vsv&=ottv;dAZ )dBAL)UKt3W"8m/^ iU?zkth&R480xӑ1)BлkʖtfZ75cQzz2G@ %8eWv0s^ڱֶ͸*ʃyU 'E L:nnJ݂ @X?ۗ1 n U-g+-{UUrm0 i|pԥ0+En_Rw,U9z(i3f矇#qPX!ĊaT] ٳ.{tJyDEK.^B)qt1W{#n3G6HMiOR.hA@i{ZBZL`o*57am$^P0siO Ӂ"FtBP8`UtJ=ou!+ ~xQiF(Ƈ<ܱ pW1i>((S< -0lRO:1r 2,lP&1Du0zsrj]lin{Dmq̆ }& ͲmCyfd 7{y~,T VQ q}T =|?Q[͂H?ºW0\&$ӆ,her")uP.ۃ$`ݏT`hv?sKЛhԨI&TaCseFSY[D2xgޤDՅPP:U뎨ZٳRVpz>OPa, "0 C гew1pJv0"xaeLgc(#MKR({kCs;y^"}2 V?ѯ&tAKϒF]}M~1 u&yy'W濑4=ƽfe W|wŒh'Gk&ׇ'3m?"I3 ]ז}}jhaCuSNZs\iŪk7ӕ>ɲBl#Ő$#='+hJ L$s{2ڈQoՏ8n~xDYI:L}@tw$AL6mG5'4˾7x\8Q %P%d2 P60k44/^|Yk 3dZ #&թ:{SϹccP$Qt@_዗( !ݬv* faZ™FV^ D zw |l12;ȌAۜ54臐; זJ@LgB:ĹrO+AfEPSF{ vfF`@oL"e=pW#23-S {l3;:)$R[kKQ.a6^dkUYmm^OQؙuLͬUAXсC2L -NZGC6a^ĽN$&鍿0vyoX%o3~oH.h$}-\81։2lЕq#%YSU!@L=g|3 N9>-L2:`-CIi.иq:aR *&r1؜3 |mq B.9,̷n6elBzI{,LKgZ ݁oLX43sr[Yc$>^cN%lM5r=Hi!vPh} :<,ڼAzk. g-E*.+K<SӫceBS?-87e|P֪Q\p'8d^ĹhԇO4>>q."s)-;p?FKw|9zO?oiT/6VJXf|`l-Q5͏:2Q9ϷnӮƔЈ[JC)s$C iRRЖj^p~-yOXTȠX-%$Ey.|'uΜ귭P4kBkwM z#3zbuMj׆)+.х? 0.izzHTk |!6rm*/g.mur|՝gҒ -a%%Gk`Jl^`AjG$GӇ_?145pbhQݲsA_GJe GyR@Ijl<5ݩy\BCIOBxz}fR^},W*@a*vp eN?]QCJA:Cb*hDUaLƇ}7=u$TBr7E:y-NAL2JRiLJ!7^_1ȍ5l|B^!z"=e721!`^4YmZBr\0 B/=w*f?3!HNș?VC2t!$ Y 6|SK#8B+"5_=e2ψS<$ƨG!*_sNO^hmÔ"2~?{_Vz;Tg+$[Ad%&vm(jꝐiaރx'ʖ3W 5@>e1 ށG5J@J.)Jz+vyXAs'/4@HX!'FoHf:p4bR*| wt !:}Sң՚|2stxꚀ[fkrBVogM-B8%W\Y,].rB4v: m0]^%H<GWS2aUzޱ/o=]N4S!Mšڋ'ď%Rw1N;STo٠۱_j͑5.R~Ooq {fonn8+誻t7'įÒF#1/Gv='`/10\MrJU${C+@<Ǫ\ko\sփ?bՉ?WtDb'GH$J1p 4U,r>+,1*5iˬw]pv3UELy%ֲiV>M;,l1ŨFa]>;) p2nlA6_z1Q@G/존-CR$GzdA+jḨCIx}v媕35vGK&:-dY+j&ysɗvF\"0d M9#<`xV)H~4뉘i<-1*cZ针|@Il:'Lo* Dp5 )nn:T)$NJф!xB4<V1TָXר(;[:ospz}A |l3&q,uY9յ\ۇS\-角F/bb-=Oo5LП[<@/C2ZS&nĆ !)gV*x^}9>)GEچOiY%ot5az[xFTnA8|$x%ԛWGu5qeOO9*? LF%K ZN[;buTGOBRh~΂iX5zF 2]w֖1Ře1BW! 2)l{v&*SFm"Oj`9.0ߚ6o-KWC 09FX)zޔGgLB(*q,>*&ďa[>s ~פI H1,#,YgiU^nsB/<MygG|86Xfaj_S-0&6U-ʱ:`0[|%g[pڀ6he=O|"fn:@nN:3 }ة>w|SpiKL?;,JcU:Ld#Ʈ2o#^J \ʐp0S!ZH; ʩ֋E2^ ҅vvËw{4kVD#C3 -<;7n9iۓ+u/- r$:;SL^Nv)Ho}y>ȡ4gRګl0: }I"]*y. 7ttP1 F-_hA=:2aH˰,nNv C6Q&9/er8XmO(!hԩ]+SNH_f@U@>oy&?dTȷ$n99jWbMb=TډryǗ1fJ=3hQnY"9֢o_ql"'' {Ps*8dFbF=.Jz4\*88^"4)+Z/<_Wc*d~$nmnV5AEdɊXH֚E$ 볡\kq*>Ec[Xō|؇n^ǷIfd!r=*k%A*j֩<0#Q' wv vbyae W_3y|rOQC8KJ"$yvqXЩA T&g{䍁;Znd0݂?ojH:,ۙS \`C(D`yEjtXgUӨR8w0FUz$DsZMl)bhl6keۑkb0J]kTKt+,|yxD ͛#ݕvCA|@a?b.+pPjN`PBpw):lgfQJ8P<*\}HurB.5\lI6}ctʡAЦ֑ˈGc⎃]@7<4DToD\d8U'm-@``iWӮ&}7 XɫU(i=OfwU)9l(Ƨ U+)L{Mh HL L5t/ >Q?Xҥ[J4br.WfڴAy ੾J7׽vaM~g^KFHڐȓ@7:zrAy{)QƎuo'5SW;HEJ1%Ż54f f!UwU4Mr%VO:l)6Z(@b$ Tlh{cx̬Cz=@_!^+XtÅ,!삫쒃ٶQJT ÀX#.oi-~k#{X3;f o_BE:@TmGo"σ=ˆ~0[dCOJ5 gna?q.SD7J<1P CuPDEz9`%Gf&a&KWUONmj1WJ,Ma/]䛲 e/rȋX--/.O޼cX\%>g+WM@!!ҏSø09bF|$"\1-XT 2#r#.D)3e#G"(I~!}i/a3:%IRic ; !vckNS3L Y첅cy^*Q#O3\i [ԁ5 6`AC IKj\\S_j)VD.$ գtZK@tӊy8p܆H$\[tazJg?QN+NН8MKfyG;tZ!!4} qă+_œT Ɠ FL(Arm&=%%3:vP/T2_T99`0= 3Զ |LWMMl,yvCI եaV =cW ЅCGW;sݹIn79Y_:"\[zVEMkge4& M,\a\,9_x<:]}pf+ 7Z%BGa* ywB6z W7!1$PH>^+`._aPM7Ha.@O!`Mwvu| 9V\o{ɶFuZ@7UVH/b$5$bp&RyW\)gJڋzR, JR?͎)rLu3IjG=MBV,Z8C}-L.16[Axe(a_ Ws},-)](] -~_龕MAduck-4X9sU#vN6cW>g@91fU![$lB-f4g]u:-|OTu 1*Oy 1v+;¿W 4.چE4@Jiم#Ac|_lNLMYo,v^ A2]o.E[My[ ['pvO[ $p¡=N Ƽ8[',/J=N̚O=5'kE.<+j'Xqtbv.`:%0K+eb0h/Ob&-?doi6`V >OUP19 ')4o/6'|d.=@aAGhi.'}A֫!r)HaPi`$2( GԹ:zT`{kOl/͗c9PI?`C}*mucuz[L(̩ &W  "1Eq3TxcPOT hO{e~, N[?30T%;\K9/PĘlC/|)Su}fOtgU{&)Nc/;VO$\:(>kH ZkkɠP\E<ɫC#1IFP/K (ubj}ƠWq*zM-}ruY]ص9qT#Yrqѧte|%M8BHKB63Hc%bv;'vVT vpG!ur\߮3p9]w=%<T{-r[!_HTXc<::r W4~Ƒ,cycaHћN nqܓe\7R&_қ +AD%c5/ "#158|s ,P HG ;׮DoIkV^v$*Ȉ Z2w4KV*rK*quz,T̞jiMG_INJV0sQD5' m<0\D-,ɷCw[*ع0rcfEncKpid,1l # (t_LBsd?v#9\X_#ϸ͢[?H;:HM8eE{[()Q@Mg#Ղ`.7|+a"@n6k}J5=Gߢ'#GK B[ABZ ̵œcf`z#sHL7H#;|{oX񚀽8d'DVRa:8(JʈtC9]_To#IH_ZT= k~`t^@g JC#0G?n&} )̄ Hf5gVJ45wU˰朿4 |VCKW5B&/aHԕkF> .đcMDEMՖ|8Q`TB _fk R/hIF {H2GS;!?Sf!$HE@Zhkia#Ø09COWT9v/߫}djIn6L|W! ؇TB!=v.yiѬb?*9lEH֟d-e he邭G*U!CX\x) pP.}8ub7u!.C颫RL-`@2}1nBl -؟dı8 *N:Es! uZ oEOw2FTPHB#b~Y%]oj=}\┰.0uB ~`[~M/Nu8W&jֽY(="{=mvWtWADuU4n՗HehV'ڣ`~]`,|`dxE*" "$zW6J=_9*v$R?e=8z\st#UK5sseͷo o\fe+Yc,#iG?Lba/hIXZq4oB*],rʖ%{Q(po.@Dg|NyTMjl܏ Za}SDICipFqsHהDؓN!Z~ 5bZ(QB)Y_% WFh3;&js[q ,I 4`e} ū aH ],T'_T6%^r|uyXi `ہz]m0?-pT~(&FREeRs r-L>Z6`_偙]RR?e-^;A3<ҟ<#ZJ%"7, }= *dǪ6j}zEݟO݉i舿-)y?ሗh?L,i$ŲLyEI2H420V}lM!ʢ׽`4fQOr,X9awzM_5w!p42 ȓt,C1\|$(t!?VGmϦ\!/veC0lf8h56)\Sԇ6O@o b@ pR/-q@/q4hq(jh-d6s//YjٜA,DžӪD7:L߿_䈻_y444bC %dʅMqg٬v$BQ_+^Lo5]Z9liJ ]=|pa.mU)FyZ*RBnEYrtU)zr#;:兠`!),Jo5sӈSh;+08–:qUU?evKeWMyR=a:p·ބ% ]9kr%|V+XI@یWu{+ e)^ ҟ0RzLb²Zg0V"liBl!"p7y5.çQVnOunkJ4; BL9mn9%s˞d}88vE{ͩ&&m` < ^+z$l͋/kwjRS36 |!PӤCgr`e%@LJ 4jlt_bi-Ƥbb"tqƵ`^T,BX~qwKF5HlJ.0NX7gva^^F{HW AE97Q\0΢MCՍ4HԘI Ml%yU]kLy_'"w`~j^M,@rk<бg al[]xeU锃r`p1`McJp?{|2N4iLTH}AD}z":;3 |nJM,Zu:Y*c7a]eP <l`ތ^ q~mvkֳQfs 3)G_. ],Xt8b5[>c4qZ\~CоĕSƦPdnT^ :IyjXdky'ϰ& c Vp`IPDsCϟXf^ Q'\hɳdހ缱Sc;,|f M[CO$ 2p]ܕ] $]7HƅhFː# 4/Y110 ޚ@oAgFd(<'^SJfn,z (#@WMisVq0,%t?YIG*х̑ы^8:)|<7FfL*I!#ýEƢv^M+a}WDs!1%6M<Lp&-|ig'q?y7]ii.Ox<3X҆E)2>S4E̊꒴!䙅%Շyjn-"V@4T>?)V_{ wZ.J2vWfjjDߋ @:ѫYlcBO_[w(R-[LևWqkFj ҪOI~yY&j@5@r^RnŽ>1oR3Hux dP12ݟ׊6EjD{XdR?=#kխ#֣/ɧ4~G-,HGf xc2UJ7Ը@>Xwg-DsO2Ig"N뉮3nQ$7 #.l]*3v 9Ȓ(0[k_ t-D\6&_L"J{VLk{| $L?3UMb j`m&"jrs>iJaТ.*p fT*#7HC{Yg= [re)v'eC)IAT| Pޙ oDܜ h.Yv7X-rKNG< ~s@#R6 ?N87$!OL9Paq&9yE g\\ 7P>.;+P`|1WH&kxyWs>^pU5ƬoX݉rYiYLqɽF`ӅЮ\ag`uc.zD?r8WJoiPod|ZdV;g=up'JCz[BNNSThͦ0?y 2%]a*+nK\-_@X?AU3/FPӺ+|m6,8o$_ᲽBEi;(>iGD! vku- 5Vm{,{p岰R~h}nBx_ qYFg8%˯Ƒ_y_D&pFw}'6aENMFft\Ta#  p|s\ ΝiSp } *«T7Hʫֆ>/Y//Etf?ʷpZŽܦ\ʊ0MҿIUM0HhZh# 2'cC iĐXnRXS)=}-yUҫy޵+Sp"FܓvpxjN0W*{t/hdF'<饝t/ު^3<95iDD}8$|BB*{@Ũ O!0u4)?*VyM)oV!Q4Z|+ mPȊj2"0`\{A+J3Ĵ岻)Wh(ÑuCT70uL}z$<DL&9},szF%"1C/vn##*OQfk`5.(vck;PTu:xE#…T+)u;yaAmQ(3S|+- 1"..{ֶ{>ؗxYsliËb7X~:,nxNdʦ04g{N:`YL44Zn3M,0gޔ )Q~2LI4ىhLT, Lsp5&Md00J0ʏCOkxd׵wHtO!^Jʭ/kR>+?Wݾ cz?59*>Ӧ*;xMR]*K7EQi߯a;6 H| BP^l$L'i@Ӣ8Fz$(;$~<?ŅfۃvWiS07B_U[S8O_ R}cAE[ nuJ]CCUt[Ru_%ay}u~i^@ s`( .3ZV}(nDЛ^ E7ٹpþp͆!TDxt"hM#m9 vff+jץtmҪk~J[>?|2sW tO{DtG%$C,uL}2jXf-Ytp`\b! CZQKVvJS0m\NXJ؍-  oyԑ9nW sqqXQ */I]J7k_|9 r1)܃/ϒAx b o!DE].sv)jѾ l_y?%]ݦhEt^2iA[{~ѥI}c M"A $-"}+eŝG8"]aXG"a f<3Êi~q8H1H)lh`C]:<(rY럥FC:!Q'_ w7A6ܣSAPçZt]$(UTq6Ԣb ߑ^X ؤqQejз(n'@rq\\+2z@Ghk۩cpUa>@TYo| ȁhm}=P )!yZ8/rvw5twEA( Vr Ǟl zS~DH`9d?P?;REq1[[,`xU(rpvY-J;5r!+{M}) ZO`~U>" J0#k6a{U!rm\%lEDC1V ~L3w G}@:=Ek%c;{Jp< 9 agFGI0Cd}-9h""{wHד\~v;;gßyrN,͛o6-i$O#* _g U\ˎ*R1w0TM*f$ _dy˾ ן'VT%XĘjK`lڦK-!to`c M98E'YK`d[Z47{D1}܄[bbE"㭊ӐWūfB%#KE6ȥx6 zM+utFHx|4/7A;MZXsK-S]K+PEm?-!C`ѻ2Gby SByoõ4|N~زJlG)ωo{`K>3bj;T Ih(V|K<܍oS*\s ¡{Lkj]d 4X4SiFT~N"Eih_zB|dšS:je~^LE$&լmKƳV8 :DQ~D+f<,Q*=>OY :\x2XV:*V(z"'iTwT ng,,T1oex7@|)Kp1P58_F]Аg; |Y<,!+.*vcA#X/|3zH \?4fMIVE=c`Mfџ|/׊6|b-;2~XQYP`TBq|q%$ R_Oi7-pf3 0o MT/J͉}XW; "}MsMmI3.DfaD^1&zŚ>5e']G?AW8+|a-jk \I?El*w\pn$w:/GQF苓ܚ? ā_ kfԮ binf]N܈LVul q(|?a*mūX಻B5(#EXq,%־`6qڥfƊ$"rK@Ujѽ%'JpC>{Kh1;2q߸Y[x3%ZV孹"xOv~PVLQAcsɴP Fd[w‘@.T ݒ|M~ f6zAaQ1j|veAX*э8nhX;j-J.}4j#?I|'+xG烊~XSH3U**!bx|LB`%10 jĺp}Ka'0D[p46YuS~ 6,3m? JB][~%; Rw0%ic9\ 0f>j4Br<> 1z zA~J#*>`ΪRH{~iCG~S/oqGzCl)'] 4T\+jf])9_Cu[{ sfE%j 瞖YT^[ND˸>ᥙ܆4#ʞn8ቑysmޘ &ɂ9Ǔa#ևk.K; (VLU\l(j $_C- ~>;R)_?[w {7k]ncAVG;ϘFz-f3;^LUQ||SQ}a k ANGm`#byx07{;82; !3bV4?즁^{P" pNjg3F \2?">{_CۑLCrn\ _J_ hko+{ǰuRw5 ۪uMiCj\;햼0 Q0ˁN#i* )!J}śIe3-g´{~Mڃa˚;DƦXBx,7d`؊ .OH/C@M ic@@iw=T/gw~0"%jWM3;^E ױ9jRw\1g"amj<0EGF$#rAQXNVÿ70bwU|IYOcA`/cv7x6!zj֥KɝwVۢDd'{O*>7z3Vl 7t%K_r(@[ôob-ɴb.%OYj?$6=@p S m"|ZT!{E\w~0.&aޞ( C-:nqs>/`n|ʌ*ud)QMi_&x%o38fѸov۠Cod'>eׅXT>q\C=ymzF(M%aZ634g*Џ9$2QuYQ>w6R.Ø!jٟ/)B[(OZ=5l>G`b@np"h9 [u ϭKTPcb!D(gȰmj37+z!T֊ B;-k2}KdmE (${)*pIer[ҍ%l˃. VGCN0sT ʴUß+7 d*>3H,wД˝Qi/ur2Y=ysX04]/<ڔy- >OM:Ӕ֏Ғ~&VcVssE\Y Ox,OS`NI%%e"ޖ RM֖m N# 24'R;SDZ9'`[cTB_+8J uęӌb /~,w ĖO/v1Lj%U3# / XEo\ _Uɨ,R\Q?g&p!ai.MokD>!(g5 G#-&gp)DݒS˷ll*h4gI_DY]k.ؠ㣶c*(6AԒ~D,/Xh"@ot39-WU[8a*p/)v0d&i6M`28f|z pj03u2as!Q\;R#d/Ϥ$ﺇ)l?D5}ՑNu#/_^ Xٜ[3AJ@73WGM({%Y?Oʊ&(`TD@x+)`5 S2c$_]:?Liѐx.LV\`$ڮ"  **ri: 婀CS7DuyO ј^TYlv6nnYdk޴:h'C!((IC4Bن,+"X%a]L ,sFηc89f$)qs=RUb12V2,d=SL eON4ʨl>IY:Fb/jufdA %ڗYQꖑEr61U'dUFJ7Eաp>Q <|CUJYN;6PY,@S%W:/L i#pvIcI_.L ށ\6f A۴{DbNz%a\Off(z/]r+Y-zȗKPGeFuŬ`;qJ@K%X`n(Fʰ좽 ^Y(0I/%ײs푉GW  V+&5 YM`t)L_$GgkR% W֐2$u<pG7d!G*YuIo3ݵJC_uF{br.V5⎕R[*MA ,"z2dP[Zٽq"G;ޯ 'HbMum4)jc]E`Yq> c? 8jOQtV3lx\~]кM?2w.H6D<9`)! [C1#[c`כ5wC3,)ECHe=*` d6:jPg7 6' < L$)L /x~U$km榈ct;- !1;`amc("]3w(ߥAq|Ʀnj3Ĕr-$.#^Mbl /bVi1Y[쿧9M  ^mM(x@#`w36gS;+_q`㕨s=  YE  {!%W> y,(f|4<~m˶;X}^d ~m?Cx,yvJ35@Q qq& aJ$8~nFiZ\4Li/]h

$xƵei#6wUZ)&A~S@^y^P+'_4=V{ި]Dv=N,h UtNg7}`MYsXʹ϶bbJb)# cBFd^ &ZEdf)TȀ 1r*InW R2x5;@ݣg6~zOCgosA>el$&x4\hgoɸ6#󱨘<[^4BvBURy85U{^ϝ& 'b1]>]&ckix& O?3Sϒ(*KMKbxz&Ծ~dt?^sgN:Pr@`yL:MEVrY5QJ%!b}4 /WXķY&EaM=l Ke<5U2xX rH۶QDs-o2̫jQd!R IbIZ=ѣ_[W?LX] VT4-81բ'vm!m; ύvZh\H1.j!Zy؁}*i8ǍcRXWs6,)"Nrb骁 2?Gw3.o/(6}%cߎ΍""0?津hz1у^gPN}HE$ŵ7s|aRMvb ƢO_B^C5<$*̴L_ÁRUolZ:voB|F@\ iSp[VB: p aG Gr"s\NvaӲnc*' mb.8G1$BF§e1;{@d)P=w1w%B"Fz Di@q3 m{ޮG_*1ԹuV;3R=:MVC[et Bٯ;?I薋CbsG%Ea-jr)*&WHh͒&׷y[w›5R'"oSrt|~sϹkꖌڥW0ݝ  0&\PI^yE6$TB;) F7+'wti2囮e@K@RCU ~h@ b/{{ݺ $B.4ºl:k3=X>򊡇ViooSaAJ&7̙( ߧia6+V5\Q$jev<]i(AŶS0PIRvMR\ ۮ aCD%9<҇Tc*o"jlO+2 W=3ncQ @P Uja!ipxs7NwE;oyy3Gq=mW8ȣ3nٌ3U =iʾ(>@@mфmMv2{i@&CF~]A>hCf3bYڪ90{ wW}mPͦQP#yDR^nk {Y;,.ؑDžԆo>,}hJ1[oeyP=TT%aսP3AS>2I*SaLCWwX$Stի7,@; d Q~i]KH7PG-kI *3ׂoq@6/,8I@aqGAJV˚KjC>4h& ?Ph%^ >e56ه+flR3Ik֌&.IāOĘʌˆyp/"J*sfC}.* :buԛ^{VZ &мBvMC4o$_TaS7x((@ƘpIs=] B2ɴ? Yg!eR,_^&㳡w;EFh+Xcxi&gQzsI \7JJc?g[oWxW4T{fjl u"fށJʨT?)e;~zI9vߺa׶$<Շ 5cE5o#$ !z]\sn@Kd|sޚhߓm~yUȺiMW@m'blG'Dj~Hhs]zs)LC#$6@Ӏ`h}ݙ2'{`8Qت'd< Hanw&⚳VR=)6\ZK)Iwj}X9n/ݜsCCF)Ƴp-)jI TcH wIb0V`jXmp.h3Fbj\%U;mB49b~hљfO"j2tLAcCIc̪AԍL,N?ь)AѿeS#H9+mqœ|Acf=fxcv^-pr"i\i7iSTB TfA$}f|?@8@՞a˖:[0g彰H%je1J:bIB|gҋRJE0' 7洔SE4LĖO3eMN04 ;BV)XEkK^v.52VFIt^6|ΧW K5\>stou0j7=ϴ+7TƷ@\x8ea$ZP1i$g"\iwq+f[1i!nKhqg=fN:9Ǻx'(Jr*KI%:UpZ#o6˟X?ֽxv7>b_^@sm5mɬ^&W}"r l&^',|9! 2!p23(nA&tGqDH=G3qϞ\46TJqoGnsG!Zn2l#S';77)Qi_ͅIY˹S%"5hJ1'd#w)>S<]9VBMH ߭`!b&63 3#vɯ8*93V4Xs\M2V-;u wB#xF5/ s);eqMP4$=QvП,"]o?5՜O;?Dy=(^Lǒ)ry`_}32P+<*L.*HjQ7 #P,гTr< (lM/MyF^eG3mDJqtXv[,ƶԦ.;;Tŕ-5Jۉ `#2lu ez]mT{M&5p`&DwQH,pN&:kV̱"rrϡ` h։[iP#><F0g$UXƎNog [oU9yg(~ՔiV@ENAS*У{|=KT^v',P0 ewym?>Ac04>7bkڥW|<a[\XIBْpWPUĵQ1z=7beGMv837~~04 UNNjHт/ZF /yH`~:B/v~tn5Mڸx:GqIw|]FEK-/hכ1:y[!xn]d[sT?h jH-Gc<;(C ڀgRWiuz7^?e|AY<f9\D"cPgE?]Ro "-ҳ"_#2慵-*ίLz/H$}a%πA|NrSq ̈́*Zd8#0zf$DH%BR"i+>A@\ACSv/ցgP^٤|Zʜ{+~;z^dTB;{ya~_WBa€0`%TFT87/e8|Z2d.nZя3 PtN׍i gMR-gl^R"+Sv%-?aQƽ֝wQ8( _Bx'L|ڽ `((<7ZDcuŠz/h|įj"Q#lR8*3p #(pHۂ9N}Y`h\'lӲ)Q6)xhJƭq 5eOu՛n@/؆+Xͻީ'W%*gj鬧uz@k%|F'-yt ;nzGN 6۵NPzyPG}ZOcqO#.z3/x"L 0;|^jo[+p`C ] U7XL\`gza KQ8 [L/R딖\jP?EL\6}OhлXާy6%ٮTmu0L%8F)5p]'GZDqӷ BPNpͣu n%xfz R4r-&p'zԻ;??يTj4wpZݔ)< EU\x^~L9Y˷Lh C3sB܎,w{c[D`N ?'$>EAtR`+4[!n'S#.+ q/;AvÅg蚾<2Wv~z%LM[-PFI pS BaOP|Yduj-U@D%}5ƔXmYr j!êSЭY3\FJiʖ.ZVbaBȓ̼A1}8\S;$wƴڀL FQ=(W&;[L/g$ ┩A3)'q5kt WN,1}YZ㇉! @fAkqoxش!e_f O?b@+|3S`5<,;PInrWYn4yl3y`GA7⧇;.7  hO.!5WZsj[N+Bo}弐*6~N/ꤋ#y~r(؞_x 'ts-V$|pnOF5 (3dO P4^6[tʩAz6χ{뱙Xٕ-1Ż5$ŝ?pӼ^IҐ/)6:v#hr} HfpdT-Y~54ԥ.ٌhLH~SVI׿Y`U~Cτ!2dN0JcmٻԑAw&DN>Dv'Q!a#`./rHOJGUJٜqݎo# O8MXeԯrfђO_+]\0l'u2pw06{rXgrooX4ph(Srم&B/'43U[_2ϲv_?=gels&EB(]Z\;؞f9Qhe0Ј~d-Nm^I-ɀk|V[6. {e4[c'l8ȃ;JZWB=gDK@:stլ~TK=hFR8\.l|cGU8B`kKѺ\F(|ā7LV|]Z.* k wdľX.c@)R[y- ] r1s- ].w;b_ Xު[=DB#w${:?EyB/8a7'.V,PԁF#̒17cuWmՋQ:v>|`uO"`*f\Dg_*m3YU*`tGZ,W7i-7&a XI ؅"ĥ̚N642[SOоX]Zgs'2HQR+Xvo&ͯ!΄&p_!69l̰C)YbRh&A4—*fvG ӹ&*aZ4k]q\3Rby S.= HedcT &z IzW. 1&XVѪcʮU|uө9?7TF X$ޣSֱ0X"FM#b2e!x^vcskM^ȁ7t=3̎"{^F1ldh0a.\ó O);Zh4r%GEE3P@X. d22H߀!n΁XT%1u=GO"4͝k NоAY 0Z>%AZĹ_eūݳNnϷ/V`V@RSrAqxDáB.V0i Q3a H%WZ ?!F/_\x,̃gKvNQz|Ď(^u)vzn܈أ4c(I\ y mִ}"(W4j :lKa6t#V%(`jWא)7zA=wf 1ʣě_9KW1c 4 J3eWovMCO.5RZEA$ڐ䵝5ZT^QL/Owz똫@ ƸH_$G1PING*d쉽#g0tuS(iɾ/Iaî:hOu/r>e NsxBS9VG9/vN4ݸh<М}Pqq{WTm,6(|c8>9z {^Y+QY/V4y/8ח'b4x~_K.|螦Փ$Д/WۉK:1?{O e /enV]4*k7.? @7NuH!}lCm_c^79N;.6~,'[T*H}kV"+d1\ګ`OI" ԎJ# 99 r!Ӛ|@hO}7ixZTE)7z?Ovc-Z 9ȝQ4 ;uIw^HwSVv.,TI Ni-J?ħё@pa\ƍz- Xjk5çݜL3hţiAͪ>iRK@EnjDx*V]y۱vhH$8HȲY~7 1 V.b~ B?%"%g+@^yFE ä%~;[jlz O`SXWUdS6I-p KF LavTO#?I8,Ĵ=#g嗌J=L AlӭCVhO͘\x7(CKkz9Eص+q[WX=KqSXxO W&zE [зĔ;SK5l!'&x[!82!jb~cT ]!y?bT-oR)Ųa[pO3 *HRT۞$j%1~qA{P1-]0`ɐLUG^\P)I(/+KxEuP4 P[_]>VY gĢ5@K05ʑU87Z,S{;ژP@ʌE,AXhV\xg]3o/"9o$E잁SOc O03k(Tl&KuJwPū捧~vLN@L> >A7g\[/ ͠h:cǯm' a_KĊY ёV㧿*cTtpqz&StgvpyN!:|svK}XfDxxdX2]W$pI-@ftFC $D3z&@fs 91K2e[lw `: R$f$pǟa96L %82țo ۘ.ߧź%Txw8=y^%en㜶F2ل>2+EJ$r~T!Xfe[{鴅$^VramRƸS8*U7u;$  ˸vj4u*Y"1w=0LZ]2$&ywՎvnU "^XչԴ(@k*IB@uDUUo]rM M<6 q$*=I\hꠍC̝w)o,$t#0cw={u,%1fUq{&[L%r͙aSFLVDA+.X^?K^YG ]p -F"n%e Hb'1GFp\ݯOomܽw?QV8g}x{rߐ{ u"Մ,ddOuP}g"˘ by;nGVvZkd|{?͚"ֆ`E31ɾ啢m,D]Zp++7W=0fՈqzc(?l>O@BHr4%9FlOe[JJy ǐoD?_wQI @CGדfAH; '7+7 mE l uؚOLwW qu^3$e"8g>#<6ΐgy۱Z= ߔ/H.7mLД6KS|H\)T̺2Y|`a2. ɡK Dqiq*4D! #h_Ҍ9>ށ:LPXB\ݔPaacgB?7d~G?Q3r Ϡ`[Ej0 ~@ꚠ_ۧ0QK Avf:z'xeA Ӭs?IgGǂ[v `t)y7ã2%Y:?8)W!ڞAPq䑖?ӝAPۅ*N"Kz3#ϾTN1VBsL]tgAyLߓeºB=(mL O?,kL7dzÔ h]71[O3#W%"b]܆i?Pom-W@7[P_H[K\.OER(U1f0vʫ[2YlC~@]f+BCvtF{E7G`%|Jb% VKX+܎ ‘u4V`c?XRn8qj .Qv)^r+Cȕ*|' hkfn%#HyEbd+iXbJplDt?IzkµMKE*GT;3G-[Ęig|&`L> ښD0T^>p\7PTUJTo?$m,h UWq^.o ֥PGNV,}^.'`??PiEXb;R\Bp!sxlRlm"ĥ/:`ȷ2:3" )Ѐ[èD+.;Eķ Q/<@=N%ƿ^+r[MKFA<:{)Wq ElxfEpoixd[^"qDю\bctx:PyV4UOL<Yp?䘋Qn'[j?7QYN-'U2,Qvs',Da+V<}D8@qw ܨ$8-Bot0&dR+2Hn?HıO?.Qۧ=’,`jOaϥDXŰդ ~W2HPR4୬Ko\|R{yrK#H)ar=^HXP3ζţ~.JQ6w<b:;\#!:FwI 6զs,&Oʨs~~!hUk.RY ;`>~v(!;83Bd]R0? Z3hN*/x9uyu)Pޡffύ*^KPk%N0#BTvGȕ>RJ\NXia%"z99eŤ4_<:a Öԛ HU+!w8 J‚\KYF0JC)i7b<8%Y&2s#2(w˽O[7%2vn'S=XGMF9! v8wJpT .]@ˉ%K|v9hC6+^ة(qnھo:G&:?:Δ4eQe%^7eJľ"q@2P Pa{N"sSEқ Ň5-V;ofc$4>g Xm!$6 S=T; gY-dg76qjʉkv\ ~Y+Y~r6Sycqs4q% khn>I1GmƱ 5 YQ`'/})vѯ-0dAN^`J҆z6! :}$'9rQ ›[. A5=͙N^#)x?MLxΩ >2\Νz=qbu+i~qAEՖB3ۖiw1n3*ӫ;9jܫ邴@BJQaClL>gRKx.sU)g ߡgy3%)UDY=$b_ & \tlLW򈎗ZHn@'n{WF^B]8[{Q}KYֳS2>~x{a> j5irQBњHdvngbx]pQ.gg9>QYp~;P W 2SZrp,l|o%jĜޞj{tBh5T;`Ҵu?S_=/O0R7e! Q̵jދ?0&#/+sulM='iaL(|OHu#rzavth+wm"r'}TaR6u0"g_g> HMBBٯhc&WR|Iufc޽h7 Mu΢^x~NeV2eӉ(#ge~S7&~ `6=uJ3 kOj9MNy9>%ԽYb&M0PdQmgvrڑ^) kMg=Ί$p;>0ϳʤʓ$rXӒ\sXt^Ji}Β"Z'A?""!B?hv2{ƩPܦ I%q$D>EIb5?ID{;^?UֈM! E}M[On"N_VYQQAue]xJ>z0;Wjp,h2~F}"|Fj02+aSivKfC?p`f4c:uHT;P?qDzSa)gy(^@n*+9h5Awy!)جo2.&eQj;`,+BXwсKZEChtҥ_Jš=!op?OE[(]|AX+-b~$b[{4 բĮ;6vR,}0MSp&3auy"&5% sP'xgcAn׆NIX.bBZT|jq\]F;ct9eC[耶h;׭rih-prYnG}i 9Uz89Xa#rE)x=|DxHVQ~w%0J?N]#zDDBE x)CoıL[@Vcho揸-<5:cˠOV( d jR(a]q=- 4gvÇ/EhF*(Z79H֊_no(?l/;TS|K[} vFЭ+a&jWadkOc6 ).i4Ŷ3lŘjre\ҭ]W5< kWFt [E]y,{>vxH<^MD&Q?{f&"R"{86FX<ȲP0jgѪq^b-[%9t$olV̫ viRe+bD̺]˚fj%GBoD~Uht ݪlG(Lb)~` XkP0wv FZnD~QV${.#Gܷ`{Ϧ9I#|2׼y?j(VQ#;%%m~tbIu>x`sjKJIk~i6k6f BZ#¾Q sI^/dB8B,mˢ5q"z+VʪnT(m76=`쿇c@Df )_m9$"^gV?͵ϻֆֲ֡[Opc{klv*7?MZѩxxjk;F›@]yjT_rpļajQj=q6t~V*׭i FfTE;Ԛ9_{#Vȋ8jQD .Ws؞$V.B9ҳqcLiaReZ 򺦾VE!_5S t}wVBϳԊ ::<\$4L+]Kq]?!bB@5725ŝu2ZTff ={ዧ7l KXKidG锅L>W)kՠmG gY.fm}:L$n{g2`j- hd'S*vܿ >C۳aSnBMRco HIbf w?FSQc$;#4Z%x)&FS*\$(JxpZ ~WKojF,'pؓP m;|SQ1LZMk)*/|h5H\0I5U<A7aգ y7#qr !>o+d}NF\٬#רuV堲pW4)8y|$N+b`br-ϤlA~Tzp76N ҽTg v*'rC(iL q6CW3X~+=P%CfUd,73MBREG#."?QRH'= Hi8(4AZ@*XƌY. v˒e\x m)rkqEeȕ67Qn0OݓE|rw;E g&O6\1Tgr!I ~*nV3Jӑ!^2ìG!$Mb|P6lZLWPQmhh2⚾4ɿC!,Bd ?dz (qT=2͋j9`l4rf _^>C~)֥|@ǀ]A ~Ua 1kUh {eSbeJbnq}载hn|ǿM ADڱm͛} (}j< j Vɷ.+U7g-b9Y۵ M|FIP4$[`ڬKD~y/"c*?R\eLi=[\#i/hKLJt: NζљTHreZ.\bAeܫ2ʃvNş}/+~PFQkdd?i೾E{I (Ug<1t=IGֆ/mYfht)B!5V`(sIm'/,uB|@$~5ˎV,"KSڊU*q=I^AiUscXTnpU޳|G3EGQ(l>"Qjb(ʩ;),LBL 5c29]{UX3RĶ-ůb1` COˀdͺ "1tl 4V\$/  CeՖ(u^1#/^SK5ah\"]tҲ5%uN'.*.E3~1JbByy4P^%&J$@ͪwy Z ,=H?OGN//6t@j[5Њ/i hIyory5R]PWvл̎D[Jӈ|$f|Ѽ_ oA,SԹC}IW&\ <8#_d1ah~NAУ1灳XW2n­5Fnd $'\o=zfXk! l=R9at0NIuv1bd,*.j6b0-DGnI=@{Rfs\>G*GldPh؃gr3 ,J[MKd{QU#">=H!~r(D+]4!WR'ĪaB~]Uxh;OZCkhK7`2hs^Z&Rfi #@ںZZ^"cw^"H ANkW9`YmfI6#jH>d\ pVE\ cy53,Vy1"|Gʉ1{[#WQ73ZqWb%Kj[>4Z0CtxڗhY^d>Z #]ڈдN;j] }AeCdcy0rY( 4(B`B εxʥ->T-+s-q;%u% M_^:t 3{{TC_* y5q`$_?tf?28*Cmu_S;ϑZ1 q=Pi:GHYxCzV9YZXS>7|1nςЯ%Z*9)@ˬ\)tFfk+ƫI,CmF(J9X[a2( U?A#R!xZmACny̋Hxmnx R7wh,is+_+qƌT.fj?7MfBdoHE oOy%ޝ)4癏zId5z%mdTZ,"b7ZCg֞>\ c6A/& =JQUZpH<E(tRF2 zRfHecB=ؿA`>qMa3pf`EV* nZR'A4-rqԆRP% / =zb}1O z8[5ڿ),~BZJ ;vKNy0'mXcT]Q|\ׇΜvK5TԄ: Ҋ"D"4$/9D>h7R?[43%E$.wSxA?!Q-T]WlC m>NutP`Ν볭3T9,1+E!FS-B_J[sAKD%|04tp.`8 }cng \oZJυ2Aq}mR l|z=t \$՟v6G C=+Ռ宯z}G_ulW R f +mǧ6OhO*baT w!lbܩ:vN?H@gn {wL9eϏJk=4:!^ =7ezFdv]UHA|o򕙷B d*VxUS'A zp3㭩$ h ^%0GUXui,\ph-aKhFkiDnf#h}~`IT`ȗ%RZ ']o$qOK?+ p|enZ@rdxӉnDrf#$qhe$óJwI_KC%a`w#ckJ`Gq{!![`/a]x_TwE{gN%OۥL%BȖ/_ )أ׌TЈ;c`+r~.klv칵+GegunN,ЄZώ._]#`/XՏ_ u>^{`Y^FO~Sj"}kK=H}i5:E浹z2@ dGh1t5N\W幕uq"lYˍbxJ(]t_ɩ.sCϬY)y K&c'0nK{LeRjAY2f\dxz-c^Ɓe@Vnf󓁉с)3n,~l:t" {զ!9J!Hv`*vƎ$EvCWպqً,uFn 1Fjd/w/͑(Sz@J&[<aD1ͦdK@LepmFf-L"BSO'uQz~Pu([C4o*mFV1L1G /E7 yDb\pkj. er8H3i Uiy }&AQKn}b$|l_šRႁf.ɸ׸(m%P>y 3}ͬ+ƇFuy(F}Hy}_bc%iwnhlrmt8ղ)bRI"ؐų_3k=>鿋蒐'Z7\<[=(g,Ϧ eGX}Ŝwe-Շ\t D1%wS徟TM$ׅAt_7ȩǽ >ӀxuIć L[+ߏPs[T bR8ڠ,3 ;ϰ#U M\O1řqn3;dSsC#3R&!Q(@HRLw?Wqcf1v,!S{:Ip] G$Ыi"5S蕘޿@(>3z/."?;1N!ʝ`wqB[ܿgU&~u0jPqlyvL~!LҨGKhD/@ԅ>X^QJ^~>JA/ ]TlQ(UpeqM|aF̤OU܎EvG咪M2RL1S@uk`I#JХzwm!禥? $h>aS-YIo<`)vs-d;* coYFmf_X47o,$eD:+CglijY]'H%쏎@;k S9<4!w9ze*14Sѝg17ra7v)=@_ǵ<3۔3ЀmpJX{CFhw(߆EϛG}֠) N@lm#aBr͸hD8+1{E(SDˉ=)kgbޜ~#hNGJ.+'j ܝl*;!|w) 8sk3i΄87ν|s%ezdEh4@anCk=wgx@cZW=Ozp6*ȗ-ri^ ijώӷATGkxy CS2BLmsSNٚ ^2 zhHNW7J+"gwɵR^4i[JS_ٹA49EfCGXFea5 O7hz 5c:r&j{ ^pQR?>wZZI_8ְLZ/]F"`YK^}zq=\f(fA>dո}XUsP$OkWUw^ʬw,~IbKٱH #uݕP$kU90qu[I仡Ң$\,3m sWp3oJsoI=ߊ r:g`qܤa9+J<""'N8#Eɬ[jBڢ'ы/PtSbA5BMK(i1*]&Sp- + Z"pr>ް'BI_*0rxGeoâzYzZǖ $Jf>6МQqrr8g(Ko <~4HM,L,b gae0\;нq||5r 1 ~VRؑ%pՙmF_EͱJ"niE"n6٨@~}OP T(>':Rf= n;2XTB8\Χ' @_`t27G J(}aYNL*ͮ=6?Wm .E >yMYR3I`ﭿjC;2~=3yZ[&wt0&aO |,ߚL8+K(Id}+˯v³ By_d7Euе9%_gMYH85덤fC7r5sg~ 6 i@`;L\6AxߞZb3G3PQ:9nqom-#oS,=Yn xKR/ PjQZDo޸c*Wc20c\#F}hWꖥyX.cV 19V+*FWję= wAg ܸGE=Z řDo(%(] ּLlzcaP|ES<^B/-OqJY(9u9RnZOj6Uz,XxT CNw̉kBR~xcW>u6h&=*e-tA!ʒb9Ryk E0֧OfNd8B+MHJ[얂!QIT󝢫Zܬ~k}+,FjCUҐY=:ݢK>K$ԋۙކ uIi \PPw!Fhd^W%MO9;С(:ڰBaŃ|ԏk 7AJ'̃Ugg%!-nU0{ U4fyX?$Vil\ /]ðVLܷ26/鲈`Af\UȤVt#W!$=/ ;p< U7؎(Q d$-RE<8Y>ԥ6LV8EYC^9/?p bi.ogA.Ro:?frɒ(t8].Q9O߾@(k+ԨniD ⹕^3q|QЛaK#ݼ_q!h'Z t*Z{:7ܮJ. ;QEΗ\eYs1-ۙW/ضyE^jq4P{eii-6Dc0E9/2C"Z#Q2@BiuHdt5̺"<'\ rv*2f9fSK:=ANrt/ݴIxP%> Go _BF1P*@_d®]4xb|Ngjo~C XCBRahOyթ(A +EӞ% ".쎇?r,Z,o9QD!8s3}5DDWwYPVQjr j 2SXեmĮ w&5ٺ8DI&͙:q)s7C$*"I?kz=<ہ|Tc+&*(6jFĄcY8.Žv3DےM - A@he3[]>/מS帨6|d 'Mޞ? 4GXLAGOH%y[cW(yv?ޝ|K^%ͱ wt6bNjc,2`ɓ~r8Û]l\ ~4|՗vO+VT(XMh7w^z6Θȴȹ==,boSUj8.(D4r_fu̅Fŗ tY'9njIOqlKў-`gkYP! K݅c`u9`lSh~;X!i2)Zk^c~lF2nNd*Dî-=zܸF}P:#Oidi)rl!#\y󴂻1rff}<uk_D_py WrSU-f/`*BRYw,2ê3 Ěɿx^úE/„f?lLjă?L̕QCNQ2%:qwYm/tC%u4%qov(m hj ׊7n :%*mʩܼѴ Ϧ[d[dDcS@t0\\,%*ҢH$f;Xqj|=ێQKC]O5 G7o%aKŪ8SYn2P{$؊`GE(W fw◚fJ_G] B;K  l9،I̩g {(ZqLCPT-B|kP+;VZw}7,S#@ްC%2٭sE2TZ4/m] {2[D]R Z:#+ [э:ߨ4of-aq~[xRPm+)ax@wN -?dguX<K>.+<Xj-#vӵ#e0ӟPf\w4O&,I*Kq6":Kc;cS5sd̉a#!2IX&1n%͂5#ԕڄdơ@&%uf3((Vwonr  6Ϸ.\TA 1 +P27; `30_;"?KG>yi3?eMNP=ǨGG%NtCƒ:MGGР4~^0--y<ht3/1ߟ2!2 $|z(LK@*ra&3HngkǩJxZ |+nNli }oȬ>W*Z%:L5-Ջ{<]WXer"G#TfC*ev;1~ߡ9ztX=`z؜5ٛJ6TxbKř3Q5I21q/eAUŧĕL܋ӒZ ]I#y}&v) /"rk @~Ć>FVH"IGp4^[U$fj ߄f+جȢGZˠ&즱K!$/]ÒX b A2l_;5X #Z9w,L?hpZc.I8咏3<Rh v}4FA&BUϸ;"t|)A|$5zK V!țPM5Y[%YfmV P>/Oj eP1cM[%\o#ƽ`G\㲻!~E}vrMƙprш΄ )9ŁOA4XlSۚ}qz/@] `A[27:O+Q-h=Ώۇ\^Jßq@JOn3R>nAs3Jr,0ť߅ڿ4mI5ȟ&j1ݱѐCvҨrOo&EҺU!Mi%]YH=`/&Ǘ(Iy))[ے­/{`% 1ec\ey]Lc/BvȖdK^wOT #:D$qKn [k0*]x0 Wn`z!f:t~LՒ u$^,w#($ZtRpL ͕%ĿX"YTֽC_OㆰlJd96UlHt 13AYr8 _hG޷iVFe#-x3 T uTh*='Fѡl?ə?9(P,ARfBIfmI%! &2+?WnFlacYwΩXH{z;il2"OgFHfcL 79F 7+x(!g#A 4c)ºWH= * C%>4Od \q=FRV B=Mmc,$/x{a5RMO=n+rsš6:kaN1:(2 lO}- gͶEXjIH1LorA(_CAcn"b䋤q y2LSk`H=9U y@l\6)H`^ޖaL01<)^t*0 Ӆ-:Z`Ce[dv].VCFQx ֋eKO&z$rn2C׼!E7&=x11/9\ۘ5L?7 VFϏdc.\9{"zI󻖎:AFǣ.gG,ςD~4_+\Jq]UwyՙbR|Fz`6^rz"`Ԉl.r<|%,A||}xdli UCEF 6(%QJp9G'2? Yjr\}Q1{v_G*+R! q򴤥%;mUaoWЎsӻG.ވ _(&iD`Hv RhbSnI<~Gޗ*|7>H,?~+_tK(ӬU c,,Yeloh34`IY@*Npk-^3ُ1S:V$A!6A(s/1 I̯8plERI\S.+sɔa^mY3H?<ݮ^eg=zhON+ՋѬ]X`liFB+5>3#DK@,m>BeRC g1 RјՄ:ZHxrpy`- Rg \:3*7XlL7Z6lA|$駛mF$0~Lzߢӗ>BGo2gmMI[lq8`fKSd`W$VS;mz|Px˗ĺzMx9Xn'qgհ9ea`u"k^e|OWѩ_ю0M+w@Qpِ6^VJ@Yn|%vy؏W3S{ɊptU8>@!Vp0y'#e[{V $3\ʍgaF6c1xKZ%)d%ZE#7'~>hvXo2,C.H)ȯi/e5s7y0~ÊٚkݒM m|~23Wp1/w)'@ gm'q5 Y>^Oj-X9ݒ9IMz}P,b֛e5c\뎭7!notllS"At[/Z=68` JCVNJ|ؗm!1c^O}hu(~# $`MidN%w|Qe xʯV.?}HQ|/u2u36Qb@& 5%9LP4=\mKzᠠ~u;gr_w$%V xEF/.NnMff6leЦ>xc(%ɝw-2WoQ<D$̷Ekuܘʜ~9S4mU~6)QA=*)Xa9P7`\޶(n2fD+ݝK ,LYhNJ8n qMzZr9Yt4nRLo MCwAفzx\}y `QI}iP! ڞ$U $vD>y|0֘O5]؂T=}ޅJG}-L5\L&_Y6MR,x̣fev 2V!V]Kx4I>'_˹xގ $x֘}AJdij+H0X\A(GFh*;M虞H&'>RPm-r7Lʼn68=>+9] .䏢Yݝ4miw5̀XP8 ƛCVV ^) -^GFPηp90X s{;vA~tmTL"6D,e`´1\mN8"DyRv|Қ, ް|q΢jX5_dPO- 7@c8< ɸO:nbG[%Uk8nD?w-ޯ[~h u4f_ֹ ~upzYA Km*g{M"FV/x ]ɲ'.qSKKI<hhT_*X&9m8sJLT2Uh/}@xcIFRAL7B_upho OhCS\F HɴQ)x`an\:aOld7 Ʋ#1!{p*mi 1Kl{hB]Bt7c毴~|GbJO#|H0xJOĹe9~[I(UPtF]g1]n)j.SaaYs-2 LmcC5@휑exp)7M ) ,TK7:[-&D5/xi.0leWӿck#YCA6:\7!%Imz l1$2J)Zמ1.+˳!VZ`r)V`-⍂52|!-tkqb̋<0g`wZCbl;3`izk 8RW  wCsjGazH,«n"jݍ _Jң7Ż0Ύzm%@-r+_JQ^s !9)P.F9d#Wx_eqq{fnSeȆ{MG7c̤ ^#"t?uvWY91i`3gۓJ֞Ln /d,,PzYV Al?_VʦoK} |4ӑ+1K6[qltQo{@uk0nAlQu Y`*`Cmد-0$ \p:^}N3BkqKtMҕ@iCQb.mS=(YBvmbB) bC0n]0\@!NwvD䟈nv[wW4Y6-KS˜>'&± ug~5ޓ޸,Ⱦ˭qGD+T>;ƵorǣQu-1ْn!5vs}Ѵ S<xsZ%H4}l&/{oe9aœo˹r(.2њ8k`!$f-JM^m]1WXN؉9Ć9È;m`Rḳ>;n v1ke^y}?) x>SN[Q~eiž 8}>Ab,\iF9v#`хu1uykl9TrÖ E1h' ]ja/:L61{]E`$n(=*?nӂq4aC'@aǔ|cqAb83J ڲm`)ARM񖖏n [ iBΝ -WΑথw ]0aRi3gCO,J `~'vqu^jX.ɥYſlѿ-0ZGOuF(xº\r tSMM[م?5v}AoCJ/cݛp>O1QZ`-;V 4]es-a$J2!kc0%0t` ÛT_U F>R`]9T h-"1&\T6fLTQIم)ft>c!oٞCoQY87+JHVGR `gx-!! w.ZQ9bhCN0XM=R}K{PlU pDqnC"J v!N".!꿉wU̚^-z|sHr?%rx.]T\r<7o[KhLAm].Nn #\@\Sgj,n\ %CktsHlnpz<^28к`*;vY= 9=_!Y`r1N mv@ܢ6%岅 \ˢW qcKI S3j2~lʔ\kDQkߡ+gk2A fΛ$OWD;,@<*iJh [/:6טƂ![\dMSv}7J4-׍ԆQo6-(#kJe9zlᨋ`xY'G"dhPO-E+:NR"  Ǹ. 46@qz2rͫ/1LpxP{Y0fa./k9O-*\đ~/pLrbVQ4վ~2yyM;Q֩NۑԨܸ[E{^\ΗZEMC:As^z&o 9LUrfY:tNw2y1uve&n~ElN&!:,":DghR,3eI*Œ1b&F4yUš^Z6B]M'H/Bơ֝].čB~7Hd)YXyq5#Vgt1h瓼LQ@J(8WKxQ}Qޱ;ٰق{d1:TA(n)]u› C:pkqtb\s7G [s\Exp9Ϥ6ŊP/W L|tL`/=ņYGoR7BA!0#wQ#z[v#4WrCsҁsxOKn)PG%-MssHi@g{)oRJ)M2u(lAC#=%ڟ3K*_€/|7rZwelޙ&9'FK‡{ 7p1'kRcI/a\TpoDnj ALr qR/9# 8zHGX*qukʼn%g1OW!s ͽ-BHCl끉vVap0[ Ev,Edje"VBBũIܔ+Q@.#:S%͗()f92LMQt FF'aܦ+ ٳjR$F NDyZi)LE'193]lip85N^O6]ՉhhaW83 =KYr(3 Hѫq++́JCc}(U{}{ ykJofA\6`,PٰU6͢v-Ğ!? @ns;h⚄(a+2UmBBE! E+d@d=Nӻw9ub0_;;!ZۿxPZc80} <||6P+S'.lSr;axD~6Uð;!p*Ɩ -Yg?b P}In(I;dZ8,;(k{(^ITץZ&b1AH(߯ %. ӌbd+J|{C`>;4VSen7Iϧ y^ Nښi_࣏{gSs䲊tG]bK$gy֋JZ !X|+_t:W1e/'{Ktj ae\F'O^crqo+`60t޴ibRlΖaGut 0f#Q)~8djLr%]ZE. ,2IIBAl1GĀ_J%;U`sM 6;c#g71V,zq2N.*0Z 6M3"^cBՉΦ2TῃQnr<:)ϙ!ﻻh>##@}E*XAA m G>? "Y_zWzV vd ..,1Oh5cZQJV:zq):cıjq5ցr$~voA龸Ĩ%R1قg^F%5y&p?/_f~/|77]_DD9&z9)v´`Tرɭ,6 M8HΛ!Kl#ۛ+7/PX#xvC1[)#_B.F+qnvETI22RpܨoL1;-EAĉvB B r@ZHYm F6md$#t/^8cwʙ̜)_`! }>0 Mtk2SIΈ pgsLiswo@6[:[}:asʿmy2^A$ɋQNR i26 CD >vFEObFB [#dwciFχ=Y:j3d_-О%Uo]ضj[SzY}~5 Ɩwsm;ʭ4hHlGbnN˚ps^5qX)M#=l|8f&8Kc7GC{ ,S%(OLS)ʕN/b nnF:v%=@O_%*7 C1rGk@UpC)+ඛF/Ω9a 'jRR:9d YGSfRnN-Ik1VW("Ql%0=0oE @'5-A)Ie+azzG.Sj! $o?eOʖ R?ofmҾD<}K'npn%nD"my4T18\e8CBQ:z X`5~?܏e~FaCEX-#JLHJ>עgz$h3]kx|j2 tc,V)s短Ϲ`㛻Z/o^}\"I1 va64s ;$g:[0hb:*R1e)}7B(.[n{.] V~rOL@m d+~DgCxKY!,YmFU=z`[, VClS^$5Bb6CGm&:QՠiM@>ҀMɽaJRHsvtPabx>hT&IʚT|\UuF>eaFq\x8a. 9Fot9$*+Fe"eq%;W G8ǰأ_3#=h ,J#h+p 3DUtU;HYZ'(&F0Ըho u gpa%t8NR/'3hS7®z'[e&v˨0VuJCN "n׋C!V%' Ι6۝#[aמ0q}s=W3t@1tR"iXCIQ1z>ꓒ\[wW_n`O(%i` 䞲7-@,/ 'R@k7g+1er&Sg&?R3.aX4QB_h1vѾOG>u**{{`-1'3A" ]J|B[Iٜr d*,U yԵAaXѦ((2lHa+XA'¯li Ƚl gDQn/s^-1ZRcgHi8xt̬>ySi9ng^v>{s w@Ϟy0>=O !' sx9rCGAN" 沁nB_L\jM~#SN+B76]z|2X2[G]z-St]4buQFH ѐJfS%d)zJv y-'wvQV%g*oiD~kaRy+jSRsBΘRG&ݥ^M<#0V":$BdZFkH:[*ܒfo A"_J8K\ @/ү$_To28m R\ QvFyl8XՉ:wd^Gjzk=eW*E1K6&`7ydzgn8'oK&\.͕߷CsZn+ZdV}_Ge {b(嬂^DUǸZ pB¯C˱?9XвVa+%s}KODv JlGgpmaYqϳEwCW1B+fULս6<6B},cC8ƃ)cDFh}B'DHS񁝈UsނT;y{ZLSuwU~tWڲ78uL3+(%g;j',+xA4 ?!TjUG:B߳0+ڼ[Ԍ:8KP4*gwiGEy_i_@\jӮ?HhNi/}螂ph}hH@2ź= ,8x쀏FR .rh(Qwbl Vei e1/S$#+DVUU$YYh7e+NW>n75\!6 6T1'sW 1vhFс f`6ضLMlT @Yl1#gYxp/:WfBpULj:eAY!H 4P.<1v.#VOI઱)"? `7N/mLrph. :jy=]lC`yZgkUq} .:xAJ[ڲ~^?H]U< jZ{ۍ 42k 68ڠ5<5e\ў8x=SDt6wqV?ON%x.a D]'7~'Y& {5c?, rq]Ǘ,}&k{'3٦C|Ƥm6$c IC<['.3tL& erJ<糜o;: ,X3"vDv r`AЉnQBNt{ĈBpĺ8F<%}mo XپLFwrv㍋WŚ>"7noz@s1͊|׶'ݮc#^VauL:ߙ\WoDZoؓTGI1"a{6 7B(Ɏc\U#kg5~t-S%aQ9Co4jy;W8C"\j,sMϧb%v69HXȱ<F ܒdw'&cQ#nGyPJ;r2k}4)z;RVEo ;-D5'V?t%|}h C8A,D9Z̜yz$()&B\٦+q$\!VX-kRhL : l_ک24O/];$pf]b-%ٱ;GP$F mXQIá߆'+&Ijj|F-),(;vxtċQR L+xRDw},k[&>bnRP6P{'! @N?-߻j/dGݭz;1\uud>HJ>^ŔsMNQ_S(-3td7F ~Wy sø}*)mbU;޽)_VBkm3sa@oLaѿ.ؚLUp͟ɵ;^@[B꘾5nxGmNěNh՚dFL"|K>ǏXQßkqw'Hw\瓝uڌ B?il2}PJ9|R-PXH'鸗( ;+2eCo- YL7,1g@q,O'LRE%$-/cǨҐz>R$L.kWlӐI{  $tK!m6æ3{`+lz>_}>6`lLfv3µKa;۠ I)>MZ-7ڸH,F\,2e ԋҤَ4jmb98=?'Ls<4~9J| \*ץЙq~ی7B2zoDT6fҲ,0|KV85|5!KgG`}֓H/ fNy$XD go;xz]1 P(Tf1?_wsd~Uܿf5HK{IA=Ol}qEUON=w-ZH254Y]OX='&6/DB'<u;aa>Dpυ@u8-8v@iqu,84zuQ![aH3$^O$(櫍l~Û#/Ù |^ Ea(44Snxe*!4R1JQD wr/0sL7~;M~p Y5ZK+aDDΈ% xd>k39iD^X~풤[(eC-aܜB1TRwhp۸I]M'Squ#GBc讧*ExMb?qBtQfH]it| ă`gVv\PvT(w tFu\Hz9#^GFWIӓCGbbmqPq4;L qUefeU7-Oꋈ&(zZ%`]3}י36n%}?/@ܵZɢcO凗%D_/ٔ3W A:Xt] Xh}/UEs'zʾz:h!T\gZ ovAѵnJfjV*f.ı54';D]l>%AӮgNu]|`vU6oG7w;Ric.60ԷQژ&% `/8n!(v[~ŨX=+Z0oipvW402*ٸi24ܮ"!VMd]@iw+<]M.ߧ #TJEK r$7ߤF %1YuwNeO(2C'u4Fs rWFb[eHEm\PT >pNuk uOC 1~Vl_Xkє:"AgX#?{4W8iB,=_c$3p$HRQ1M!_WL`+5?n8H0hDQ+vcc5 krTb l/jr>Yx~SUw d1B(iςD}/.'ǒ|6%'V{wA˙s =P +aTp(%cxXӶo]D*FPȻެ~F _Y֭c$En69h^U+L^iRKxنDk4+>?l;s6uE{j[UYecG n ~>WA E'*;g7n>ODGꟇƘ  /1dԃSz.jFrFzH1L)^,x}9 N$v`53b>^ oSv!ޮmQ)lk/Ź&4ə|UЁZg k18Po&|sJ]󗹵nK紡*^s|$"ه#=Fo-D*ZbbV-.AP.͙kYIKHwt_B.fLTKP$AwZ#_; pWn>OCyʲ6 ]Ms0.*ܴ{i Ww/IiT/QԦ"8<]5ٿf}0KM{&;ZYPyPXAO)X&[lCp*Q\/]tŐVkŞc(p*Oq 9Q<F:*QX -ojϦ"A ژ܀tםc]Mqi(RU{=LP-Ƈ,/mc'/4efg݋;Y0L=5G|GL`;Q.#QAeTjMFxֵXxAr$yfb.Ahܕ0/-z`]ryfB,fII p!k3Xj%i}JeY)bWt3_7)—+֞ wɺcM,wq?(/n{VRTs~tZN\73m/ӝBq5A~ )ު8x}fJ=NZa#ʽہa۶GdQH{f7?\ĠL^w07F)CKT~5MN-Ĉ'<{x=PQ Ϲp7l|~EKgJ 0wz='_)UwO/&L})# }_ 24SRUOOޱF9^JPW78Bp7EJt F;w .2cJF#0HX{[AYc1>~Vu% cءƇ6 Nhl`I7%+|b_EZ4(~NjksQqɁ$jWL?S_i2v恁Hį \}b_)n Gmc]$MŐ-w`sUW,ho>%_P?pkٯ.4@\wIf>z??(&GR0._mx[ bTA&X/yEB4E3J3[3tB ])^I 3_Ez`=4EXٍJHYNj}>A|qEj0SVi~(\]w 1e%?jkp`G4 #-{l8p>.=*FhT*qSzʽo~V]ј&tBC+fZ~ $ ?s~S'IFzGs ­S{̅[7PQѢ[ݫd8ޫtϜ~gR0#"Я [_UUqg? PbD:$%`$^i~ێ~9ԙMo A#a-'JjϢ^Z6Wf@}Nf׺umч_I_c9~QNJ-#FKGE.S1V i"eh%v/fYE[gnpji}B̫*5/$ܢF)*5׻| }Idg[ƤHCJJ0]wɱњU(yy:j.U/& 9o]]M$'K+RYLK/K^9lĮ4-ٕ$޹~-j]4ʛ$f/igq0_ =#mS# ss>Ho mO+^Yr%($[5*8N>w>H@Z_CȊւFc%7ɴQTW$gzIJC/5cQi%phЭ y+ȅ~JJ $g|mbw8|Ѳ%\B)C*$ tRAb LYpP^ R.惂h+kw/4PVܲe8GN[m|s-T-< b̗L7(E`hg2܈Eޅh Z+V&YR?Ug '7f]YGHfR? C&u[A" YdಭA|dv̟}t#c{YNLu|MAR@=G.mkĎcdu*Bw>L6=2gns,sa{ƹÅ|ztJ,-gIJà !}o \XQ#Q# Q 1m:?+=5_* sn*8Y!()|u@YFRMb%EwbC~Ph&¡Bq*y0QW%\)b7Ht- rs7VB'w Ӑ8+mť#Ps`c¶Άmlv|)A75z4g0yFxujÍ}RC۞J[V LõjWTM9e?mV K|33@?}6pqblHt:@jOrJJpZ őqӁ!\I 33}_*lK=gT,%Iq Vz:× #I xŲjq)hI5EW/Y (#; xF jK S' :_]3xYpXl?t'<.y`7S&)¶%8&''.iA;R?hEkAt/>FٯNO﹈CˊJCcj -iDK;bdzT'pOFN#w_İV<D ,:XSqtr% UUZKT<%lԚثcp{(CyQ 2tn7Ǧ,t}3f3LˊޜKھ|X!y:PercjE֤EZL}f2jNCҼ £fɩ%hZؒINpfF?M˒TX+"U2Т3FS'g@carXM1@0VA[ *;V#/O 0w\2i=%pNf(1~ӂ\W]|p_' YeF`=Y&Tiw Ay$p)JhxAy~\IqZ.nd. 3$gt5kKI(Qk+UđQjH$(5KvjүRcJ̴m~?nG@r.S f* 2%hE3Jn'(D`AҢcSGަRq]mz$WjdQ@y1t/~4u]OPdW48e=odl-Mտש]Z w }ح9?&ѥ>y+5 |]M̂k݋4 FMg›~ G;B HQWSfcy$RϟLK# yrqbLcv QNQ;} NNlƐudZN8Cl ¨BYqhv='Nb^?̬Aae>BvHXTS*ɉ2КQ^7JOf ^QFw3G  ѿf %W DC(]W >rw 墅qG34yW{γ4Y4K f>`>0>\!*iA(nۨSo?A3tRwTҨčb]_>ڌ6Ugk0H8K' :\_,xgA _93)S;IGP[Cbb$ӏ "XSUNҏ{Zcvqj.3 Dh\ܠҖ{#g@ *r)F<j8#l\pyo]Ne+Ti܊5v ~%ON4Y eo187+R{^vB=Sqq:!fބN蛋7\ikËVƾ5̵x>K x#FB38z.pSS F27^7`jl; (*;s5r ;ȯ"`gF6cp6mҊa?/oG#v4euŐ~a챚q G%S<[7i6RS`dBV0ΆKV?B~.kzC(v =ts N.q9Ǡa'3BdʯK4ҡ8z݂;Y@aT[& R&T|; %pҪ1kD᧺Μaֲ ] +GBpP ?^nij-즯 ;JjKʀڢ]xYCJK|@bz+@cNgKhا .HdK7c4_ ZT(SF:j'c_.b MYL_ʞ\k:5\N8B~2)ɔ'/Bbɟf_O_G@Ǭ#)) ilv)ŃxBX^rfN٨ e-s Hi)ޥ- #5b!!>?oJD4peg!BKvp¶?2?$n Nw F8JDv]W,UByף8mcȜhs 7ܷy"k3[%]qW_'?u6{tZ&b[|V0u|N [F@'=]X!0x}(Y?"p ]VSJh&DtE+O`@*5MzC3n#HYq:(2-e;-cmXYAJk[* Q$u j`GZcb~t>M]*'8o^Ǭ4c.w6l?YəeD {69M7g$w`*w_PZ7w&>3_ _;6CbVt8=PKABy?'grڒ/9=^Ds,b&dV-Kew^V^y7^oO_ߧKN*+j(5,ůgm%["aj^'"'$"{u os(* nuǹF;K%392Qf7v_S/KO Pb%&$q%}z2tekx%\r\U %λ~ ̘2d zcԳڑ_8H LܳD-RE!-G-8{D\e'b_P2΋/sq{Hs9#WˋՒӎjm8LZ[|!`#u*kcyУIQYxg8% Gb|U%t" \kɟ lBDѕkRZ䘫D%HnGSEl Gs6}?T済("[;O JuXkf+~f @ }ԤW`O %ȧ~eO\-KC4/Ih| GYS>Ņzԃ4.4vFKO1#S- WB[]98BVS})o\ # l)m8X,ܶ=ve,D!g7G\o[t3/ "$Uc"#^7 Nzb֒V4hi*B`Flxе܉kudK*7`] j+BlDÇrR@|SVCcNO/z(b~(+d( #2РKbPl*1MN"I{jNYmVH@rpM:+[.>?Rb+8ovU]PWNh3Q`Ma}Mhj)E$1{)ĔjH-PG;ܒ#5c,+`9PR'RA?KC?nN6JӲ/9>i}-`dC@[Ǟwe~ݪGl@pظw" \)~RœϻÍ8_Mc#/-ùB~ L6TeOu {^^ 7`E0"HC:h䫿],C YY&au-} za#qf&"B7{f垢{S V^271 MV,]#Tqjٳ;ݿs8ZedL!M?<-1H&+'% ,OJ;N)gw$Hr&4Wq M7lt?3@>C^@[Y6rbhW ?}N`)wOCQ,90 ;r&DB'9] ̀Ԓ0G _ԓ_hG9 d #KHG/΅3,Y[rgg:PHy`oh!H`lx֋.NJӴRT%sT2|qˏI9|qa2cPA:Ľ𻌛~L͏2䅚N1h(#6Bo("<;#7sY& *%RC+´hڥ2RnDJOm}lT [tBF+qZSd Lyu8A]- &/Pjvkt/y6zLf9*E uV 5+kwj/lT50~&*Bi\G3@q '2ZzWY/0p4htY}WԩHbIL kwoy7MuSG HFQaq rE1mv&"ȹ!?YX 0i>pPEZW* e6dW O Fm,p˷3㏹ 8+{?Q1Mֺ>x┡p5%W]ҚQTU/2V Ww? l+<ѩuكPS2[b` '#uAhD9 bۼpQeZΔG[< 񓍏gUHaSv.*LN!=-vr k ,h|4<ȚKW Js҃\JaWہ%} _"?/QfVC~"' V; U+K;);/{jπJ+q {} `rě8DwxZ`$igvGP5j4vΚWAO+0>od@Merl Z-f]/?\69FI8r.g\SRw']} UX#}5EnGEƭU|6tWwu|>f0t%8{l?#n/4VbLb^ <Ҷ8](Lc;ǿP>>>i#~/[(LUs8=nL` {"mUXST%]7 K;ф79ǂOP/zp!]Ŵ~᪠kʪr^O,>[氄YsOT^ish³fa)܀BN9dO* m*>SŋpI􎦧)`0C:VxVX_#.2 ? HHC= 6EUW6BG=k{#X" ݆]XH[o(ꃷ'IvV|E4 /^>z# 7K􀪝B.,|yXGp LxjOwPT<Z~̧ WSêm"eCEL \o0iz z.;{U웾rDg@Qzά]c=pɻ4_,fEp4w=_s|\VcoC^Txxo85YԉD+n-%=Fإ(F6mt..ViI9' f+2GQS Ƞ-%8L͋^ѹ W ur\)7jYTk#%'W5w_{QQq>5ӌx>xy= xT:I?*ǁQ"قB*Sl 4._ ه)} 2JwY':9$Z\CϜWfEp Cs/k6 :M/ߤE!,ֺhZJ'u0`B!(6JETFKX',}1)yl3;J?.l1,B2.r>s®_N10mh!P y_`oXm!q,a&ƋiBѿF03ԦJlC V,ՃuQDGG.ׅy0sBI &% ]V^6#pG0sf"N,"IifȹѴEEAŚyΝ6c:BFkZZ4hTٙ9aC}w|(;#(R6eѤM$ZV7Hl(![ڐƛX,Ka!/) _bS!c#Ae"O(*dV Իݑ_a T*3܈Vy|V~MBnۗFָuyb;iU˾+ڥ4un :D.+nn s,ͥT$U2A x9{@ì 2|cC cMH;j=pmjURhY:Cѓk@C͝ 0!Ae<(5 l>z&'eRFA:He:ۍ Z24n6jeu,FJMO1n~DQ;#NPU' *?M 'w|)pl'jZrhgsn/D%8cW@\rk̏SA/;J9"9waT{ZmyXVΣ@ͺa" `191ᚭ2w`}Wp|m)Xi'PDΟ|F/%bf_ gRiw0ۺmow%Xo7Қ6IEٽ),Drf^ qa\> 7 wn3/XdhSÜzeZ'5B&P!:b%w}<!ßfyMFϰJi9KME pي^@У$иP?ߤTFӤazxH1y e; &&۵ӅrC܃݆;&=.!WO/XbhyvI,B{KӠRq/WTlםjУfiMˠz aU*ۜݖAH ,7~2 T_KS]lP6.3ҩ7DќZ ~ "DMj'}Q[rOo8mg'6:Ք:vB WqMʁMqf^|w86.˾iXCFUKTTٷԶ-`K G\chR4vV:tñVdf}8?rY y£&MRJn:@1h s`&} TLw xZQP\$I -Y Ozy\3qȅ֜G'w&'a_Ѩۛ{9D;(QݓDJe;cPDͼpJ9 X9*{vk2aV$Xhu$lNo$h8u_ilG-1|kD]Sv=2x|NƤllp5}ᔴ44GFD ѻ&#|)C9hz0_zHC>hiف W65`{YZ$x`!AYت|sWI)BwjJ}v ʗKb,~FLQ, d ao?RB\ܒ+%eb&ot*gߋ'5ȴHt#!;<~&IүcRHp:CETCM{z䀖wD=$;'; k87`l̨K` 1 d8},6UpZo~ K~m/ݜ%Nm@p %/[Nr|75$LŐ6)Ւ*.z.21;_vs2KN` @G6&Q++e jOCI:q+JHt&J=v#ύ6c)mF؊F@G(򛉪ׄǍ'6Q+1V8ØMك]wZW'P?` bZx:TIV/ؠN _sTa@k_`/u IJDv`[~ޞk+1 xrHX{ ^LaI'(z_ fRQxd"}%@, M 5 [j Re,Fr1~߇hن :#l&Kj>1tp{ܯİ'OşT{F+ߧg𩐈`3Յt慌,횩lHI⿻zAdDl[L%,˫fR^TR I!}UZ]s=f)I 0Iw6"` Է!=1Ռ=,̓E(s+$zDu:V{ڟ-Lp9 3zȣ8x tcc{XNs.#تH>[_"JՊzi@lt!:sYDn7F`Mʖ8A7.VHuNkE?餱 }tsm6'R92^rzە$^# ص)p^:KG$<[ ^IK d]| ?_ ;ڕҷަ|(&5cC"Zw+ݻì$YSȣi X!iG!y*)b*}w,X/ =c\y]ߨ|]zA",ʒnQ>uoZKp()rڄ}Ts˃~^{%VEI0p]U헴mD9W'w\IGm>JՏIJD嶰'3~!9­-_{֎e c"op+oC6GQT`ܿdINUagpp?$\ Y;A=)tʾKRDU m5ߟV\AC>NLjv9h,?i;\Vi]!ݗeFm}=&BiK0FQroZD63*<_Gc9!I6ct-uI['Y5㧃ᇅEc>c[T,c-vL -hzqQЇp5ֱ:ʟSЁJ:+su=;4iƁo_ħ}N2_~jϱ:+{&HNʤvf| 1b>a`ߕl[}u6TOq h!X[?r7 ͵a7l<5|C +Um°=T(8YRYa3ٵ$0ۄ˻[>B殏(VBGSe'' e UeWMGqҔo;"QՁEKH 1ic%ͳ ,N$cP2a1 7*:fPKOv0Oc4Slj.@`E%wJ/5Eh!XUI `g/93"+ӓ/dϝ\ky ̆ 9^4EūMРNbwYk1[q+:.MK%%IK>Jrw6aKv,|S0u|ѫyR똣Av5,nĊz=5Bo`fFDYA5ѼzO/ɲO>ܓ{YZ4F(bVUXVfSBl(/jߘ*04J#:.Hoì#g2oĕ{{G7ƽfc7q7⧯)֋֟"Q CQ; mȰ[(V#Jv*sbR=7j:N*fY(XNi1˼(t[C#lO d\g\A[S@Dh7M_IqJFD,eQv62ǸG|.1rw2=Kt&)"m*W3RO'$`I%o'jnX>@Mx8;;'=N+l崴ORi, βy}3"ڋ,NŸEj ;9,mnwϷ'(M9*Akt嬁!j㛶jwQT1$A7Yf6?C5@R2 ͽ _U]>lp5Vu~#HT#,B(wFELr|`\FM~_J~0T?SgQr.cg#Ffi~6 .&0P[ C($|@<5=6@oo m7~n7^c$HƠGH`5*r/[>Vq*Dt`W1Iޞ66+^]Z2#q |yf](Ԕp$Z_ b; Rm5áM/ V)x1MX6W$JOrm=?ipEK샻:7vX/+H }i)Yr!&N OD sY?M\6=twiT,ۃU2=\-D O&n23gpgj{c{HnZN/pV{?NKYUزA9"GTb]˕$;Icݫ7=7Sl`/YxݻgP*d-Ԥx gZ 3sD˒Eg:ۺ& {* CEuQ{/V^u3JM߼t,xvUcW|iJ[YQM9ftD)Pu8s7&rvh ~f /`wa@gPXw|Eы BB]j}얨S~yLȄ^=Wr#QtkdVFӷEb@#&{Q ZO0KғTOaۊzqn;A7mM0NVTԞxۺZ"/ܪ\#%yz\^տA1zճ`&8TΜB֕1ZXcMY[r",;q*0S'_WjJocձ.}]y9 XV6Rc<I;"RN2隌|hRL__ٕJ?ɦFw)D)ȠـuX&Nܧ:<5]ӲV2mM<OTg}P^C~PBE!&Ŭř0+\fV<킺=Ӻ'KxQ8F[<_UwMӬWmx_p!AtmVVIs#!= >?w*2z勵bIU(3 2fuEGd1m8_*\V|Ad'{ឝ ,GKk*[1{$*ܩ)RInLDr^>=vs_bW]f Xb Mszx zTlL3h*R7 KSFclA֯mep4y\CW.VG7P$YEKɑqځV:ƆTHb<biDVUZb^UEus(G[yriy=`X@%d3+'$ NNp͂zhǿ5Ļ ?aV n /sp+){Jrc⫺Fbp1;rFs~E,]=ent-;KKD 7Oڻ^L?`#_rСq&YUN0̯ZSmDz;||6w~IFgq!BUqy#Wf& '{_Ni3|.rk i vx@*HWݔYM{ ;:WXuK P\3ےYUL)ܯ+f H15tv]/X/hzFŵ<e>a}砗u b@k"nNw:p݌ԸTCKKl@n}SF Crv3gbGw\o>kB2 Ir+̍ŵP|%XU_w={A?yw+l ?T%V: xUg<73 [5N⨦+:OC ZRHZ)߷rR]1D9ecIťTAww  N_SO$= q$ (ߚi_b;~3?]=&0{Tg0hn%wr:\CI^ƥikq݉ϸ*Ыu27QsR𤥜c* L,N/ͱJPqif@ȼI`Ս ;wF)X%AKC:f&^&Q Wjr„e%Z:y`';PꏇV$qxuj96Ex5$mu[b#'1bB5e&mʼn [.nG5Sl>k:(`&!ڲsΘʛL?Di ĩTsew#Nd&Ӑ~^R*olMAnSd77(HX #8 gTΧ[4X5Jk|0Hrϗ dl# zkn>ҖdO )z~̛Hj|bzI;<-f#_oNB(qtr'˜~[ n%ϗ)޵^Vnr~ۓ9h@bh Uo޼rֹyG7Ox$ه4?)22Л{V3 e1IT4sLqmOXs ɞE΀%)xaѝ}-Dg9LP;Q$1D0?waSPL^^+d Nʠ^NXGLQgۑ7Hox:NR:Qjvkz|p2vr8[/ܳ )]ΚB] *BVlBUǽيT[tdloB>ǘ \{3ؕclG|`[MuD'2Z}e,%lv)UہyKꬤX:)vxkbGwxAoՕ1pRd!Wl>lF[#ZdTl@VfL.;mQ)bF,˫\`5k/5xqдtg 6/7tPӴM=)}.$<󩞚L0LD&7ĊνR'|G}e$ ڛRxyU%(ݯ,9{h:"8+mMrHMn~:mܑʿzQU%.XHfKFN@<&HrC#!>%8"2;h9~uѮwkegܳ]1z<&9TN+]TpAq<4ߟAX(z84"<7';Ay D6sKq d~b 9Y(ڕ=_F;Mk }9%!}Jj'cm (9PW=U&u256 'IPe]'h$kd\·nv ]\n?g۶ hɔa9 Af;i]y:W=ZΟ1Ť+RZ7HBzʛ[$7 WRutk0[$o4$6b2Su|Z~UoÈ}A>֠!SIv$˯{YPȩ RHu$Ĭ\$&n̉3=#j8\dT7SuCET QiS`Ӹ+=Ud"M.BZH1MZO_l n7wyM%,mȡv\iZZo!MXrhn } !M$X6;sf7%y5 ʐ˖w\UpQ˝SG+,Sh +vC8Ðb >dA{Ғ-dA:kh":TĚ~+bIQ|0 >0ݖ0{D"]p `@ rbT`Ml$d֎Vr{agI:_od53IeÅZQs'S,"2g2V0h6DkajjO7/ fk]0檵ި/Bv5VFuEA_88;X4Ꞙ*M枃kJXlZk}8&o- IQpIz1M$l*MH8T[Ό2 1~- n5륽G h>`.z Si6$H/A[" 7Ҳ 5#gG?sޭn6aR9'oӗtY%aŭernn!J q[MAṠrڼ^}Dω{z`2i=ϓߊqj>茒1ڀv[߾|~7ZlrK%qwkTa:}Vj!\F -W1}UkLIg~uw0OȻ)1v?DnQ[4ݢ"YŒtU//T la~ gp3nᇳER08좊wSǖ8Mgװ{wc6S'hGU%6O DaRz!.Hی7d+d%՚.U.2_Fr7NΤ $0;;vў93=WVHйTjNe==}f$^ȉq1qF<.$jw;VST*+Iճ \%Ru~TJ| ciϹ!CT?2; ` N-Xv/@aĤ`v@4ALҝz@U)PFb^V,OK*Ä4fOiKH:\]wI!-ҵڻ􌁨](ަq6|)!%zI^ %W*#AMZ7dʆ!nZ: 4|]*w한t 1D3J*$%_dRztن[ KPÑwgaS#(ך1gd)ȿ e\^X{w) 7kQ&éW]SfcN'@*w;MQ;3 i 0/zUGvR(!gȺT8]~{@6yW\ְA*|݊뒦;7=e͕j&6oFZ$U7^k$$a$KTKcZ" SUoB/8QrcK޾dɌ$5|콄3Igg9Z=Ɉ[%5o3<'"N澢sDz~NJE ~ڵE\jO7D W2E'mIAȲ"6 g )5-ZܯO8eA9L }+[$2`Vw+t$i%X Z>VTٸFYpDୃ7GtV676!5_CV !՝眄hIypvj) bP>pB ;`PkJQrDOhjW`%x2SqU`T+ 'cA #sa;gE,pKh55MImHz|>A'Lkf6s$"Q 支 "NMwؕ7H:Y'W 4s2ivjq.$ذM.xL; 7 r#_N.o+6(3)6UFTӏVΡȔaG$&pυJ3?|uJ D;y*𤩎;Z™<(A9(K)"눍 Yyw= iwu7T/}YYy:)w[# eР[[qm\,E: 2Tv>Y\.@O6&g4ʯ3Tig]@އw3h~ž ;֧WX]_pT>4JKI)ʧt4}EUJHcc}m"I0tsG|hGhpr9/<o~]˕Af@W~m ͪ}v~x6;/qMLUl撄N+NZ2#x?JNLst65Zlh\;sn&v(0N;>tٳ{[kޅ¯|yhraǭCxFVEo*!7"c[Fٶ<7! Z#F<߷]Ვ/{DCģ{`yV;^&0E7/T}fv(VV~ð!nLo+~b}ɫCԂNazّy;wCjsT,BqyE͝GHRu?80IYoC[ijcOJ ێor gBd^t%Gpjymda;S:vGd9}z(70#>pa-i,n%w]̡-L>N;tA!ò9lv7.$.`TGk{OΨ X~/O'A'c+C'DyN +5b[\؝fnB/\nʆ`WBt{Nrx&+:Uu{= nB4שjJdiwsg>U.w}(h苳x0{uq^FY^w)4tOiO9{twfb'b;X-Jf@(Ktƺ AȆ[@셣;,`Hcfq`vn}4Q]nSء'Y*R2ʭ}k?P.>w a[VDz|tŸ4a}m@RoFTR[8'k!)a1=1<>`DfF V+;D>.4?N/+S vr(m *iCۢo\ʢBfR챢oP "5%mp8L)-4wp/ :<B?*1 ) O޺lI;J_=)F1X4=5Ce# 'E(iIc}r\kwk{f01Φ NinCq QRև@O%owE{&?s_X'@87gJ8}V4dQD4fe }ʯ =uu)X~J՞?~\8id>\4xW6{cdĵbIɿwM%sauuLۨ724`Fc䊪U,N1g`B_K[91YDo[s/{<ùDvƨe#dS}q߀jlQ:xXڟ|6,ϣoǯ1T -jmvC7Ҷ %^l FGƔ \ 0:M8`Ӷ2lkc\:ڬ&8m])$^ PA(>MgG M}AԀv FgBAc;[wbR&Xby@y B?zb_˲8n CBǸŋp2ǜA5(Brq\t's`mJIJE8hxzLՂe @AHS8|lox Orf9Rf''hA4) o1?<("WAMs0=V32:.i@wT'0]ņ4 w>zJT'=΅]ɹPH! 8֎Q{W&|XFBu !g7C#66*;4(!%rc+tx tB]5N$g}En8"dgɌC;>_}+EJ܅Hq q #E=q j1N,-䃮:FWlFscQFQYu5U~`j  ϋ<`i6] ˦L BPmWbNmFU>poz"=qNcFlYBm+JOG)Bb/ūޠ:Vzm"~N# 9󷈞ҢB0T(w{/5Ȳ؏ju{u{d,,L1B)qڜFB9PV? 28JҚW_GHVeyi]g%3CUH@٘!wwFnM_h_t's  vT9/8ĹXFAeyeLj!ܱ4=m L!Q)E7vZ$ߴsWQ}y6 5n\v/mbϺ2:heXf"L.^/[[VQJdC[Ģlu=}?E|EȻ%7g!` 4.;I ԷToRW$F yprD98BMΙ CAε(*&D=XkU5J6Ae+O(v$>w*pj9YggŲg`_8˿YqTдE \x4\)gAB20}it[MA|<)P8]`? ! q YK~#8QX"CۏiQ/ٴ0G*8s Vz3#0dHjMч. ۲W]b#z9BPjf{5xb|1̭-'<v qsS -m`8CQQdjHW@R=6WruU VTe!_/lC#Rx^q_ WTqyz>֢jcV+Y\.󾃣\N$%DFm缧-QW /ɟ-RxA ys[ad=CԊ5-UK˂ox(cc}\H].{ ,yia%嫈$;ea$X~+V*@`pYjW ?Ͳx,bG@_G p!9܄R,ŵr؀rITtT2W,Ժbj@/>ua$[Tiڐr-D@|^nX~B*Qb6s[=hνe []ʮ]:Rm %[[[Yl}k"$^5" z D/,-}=.~9,sNcpD KhR2.߂5aav9{*;`Is#܋y_x>Ca/glFeU#qFv&,r h Tt^A q ! cM|A[%@kS AǹRՉEOyR=}hi䠥$Ηsp0K/W S_ Е؆*0҈EkBp\(L9!q*P4b'Dۃ&(" ~S;9|xLꝷ O]!]Wwp[yDbh|mQ+={R1'- E4il8M;Pwx$';ӎ{g]`|?R8> `b~3<:e1;IlgZ IQ}h !&`KvR1֍QG?;ST Nf}~6 MF )" auꈤpT^.\mo+K&5"tjЋ1 `2:b޹uA\dq鹬O%\ey 3Yʽ{\XDj麳ќ)Nbn8'*yLg:-$H-jOhfOE{&kpʐ tac> ;`s {E$=Ĭ*3=ݭIbZ\!56}֛kZQ|Θe JؑCCT](~ː{RL7/EP8Jo$q>J2#;dZΖũ&d)0˵OG¬L1QVoLݤT"h3GV7 TtcY4nSlK:t姚pt>Fac0%Y1"<>-\T./nw `jQ#ͨ#LU`'CCl3;)ZYf+wuawn/a T =Y_'i sL[ 6,@t”rLftOo퐞$$Ar:w6Fy7QF]yh}&o7Nr濨R#?IK䋲9la9"Ϫ 4B@,\_{ j$|À"}@玏1CO*MEF0@qv}Cg70(P9 #VIQA_l7d魁9.}t*c3_NTj(g"5=rνޚ2ȎXen!O۫dV ?&h;GCr LvؐN.ב;_?zu$Af0E'IVB{4Vf(rM([eaM^ƔZwQt-nW* P ,d?# =D*M_@qռ!}94p`!açG,ҤLISܛ#acLỴ PchOU{:dRcsFg0Z>ۺ!6&𚮶݂%V!3B].jd 5C^lGc|O5.I]Â8{1+7tB,%WsQ $kōwЅ/ć)ouBB]r(KUx#L11֦AT{|3L(p|tp_Mϻn D~%T`nBWql9_|YwU4NgI i22;qH@@H!$VAs?U#6rutt`tSS)La`Y8zM7uSX&L'`aHA/.z3RL`D9kXD!LJ(¢wqGA-;mq 8&Tsڜw'C:bWA=@6shS]!ºkHݦEg߈w*眉+ًs ܿWq_Th l~&+x+0. ~ߨҹTV8UJMS83+*KdDrQθ;dZN8oYr3 X ƫ;}uI%z%;7fEΞ"Ω?o {Bi]^C>s5m4Mx"t;c- M:B[s]T;StLK6L7Y_LɅ&9mL/sHDm(ޠ2EރssEOwْe*cjD|)*%+ !X<-VAcI7ɤh٭ &vF{^7ٜ9Dڣ&GQz_ ^FP=OfQW/k.В5_Xoݖ1ɠpu,f ud| c] Ȫ^aA{f,ۼ*%U -22*turx;˿EV`oOc h| 2S⸡&MWq3՗S:/UgRU9un!]NG'{*J8oZT 5FPEZ 4A"K%Ox+ 12/fG.*wTBF~j%c> W03yjjܪ< ӝ;[#erăM,b, Iݺ+6M,^%&u!9uVRμݮц9oWw!4]v׷0#_)ӎ]T7DޭmUg]PA&no5 4H9''S8AN?A.ZYdrF` ,T.ً0wT:5P]xX*AHgpB +Mx AL#Ï96TY]8ֶ5;mn1fgE'j(87Ya+y&mTt6 }:.+='L[P$HidƁ~_QqY[~絹UOT`MEv{qhx\EY nN!@W@im{)my—`ni$dxUQ~ʎcbNR#jQcn/ m .TEyTaDh>$M: µɘb\}k6L~fq/Y,u~V{3n ΃&y;(3مN!C_yt_`+n9b\Xj]$: d UӐ_ _'iKE +&`v(d >$L?f\=7O_Ҵa}z_U)N .krw$~: U$똺𗿚';}>aIW\W\+Z(gnU|fT\!}Q*'x$ XKN-[dp5AV~0l⢵ʣb{"B9"$3"L.EZ7Pg+#_,g2P^hS2s#y}yIŧw8if$I:^^X;:-_tvf^Jur+?BIHμGqoUMZr]Gs+NvkʙeWό".~e!G%> B- )P ARU ZD[N]T 陉_~x28 -@S*{rCF`Dh B<@q3)4'%+6RI5{ѷ J ZHO*8Z͞ 4AI-M"p6"5MtOD.0tqWVIyr=hkD&be>E4p6\Բv?M: t@%Ye?+ V^*>l ܁-_4/W:یkXھU4.Ɋ_Q,nqeEMa?d?M(svSF]^?I|  53`== n󼍰jM*Z$/_\4/F* A%~ [&7Y !SEj -޺W|lRkc/@ֈv -r낧'UNKE(D#aOm5rL{b7Y@"i= vƇ׭*8Puqˡ ~w=1Y#кb-j/&y&yr{jb3'=E,"c:(.":OSu4@:qu"7U7wzdؔID>1S au ovw򞇆|QA̫ȊZs0RlX,F`JN,9AoՃH.Qץ%Aw +NJ #<WYݾ'^3V ó/y/Z *)#ITKWxW+eLW{wC殈]^%L񜉱Ϧ|t?P}e 9vZ]{N6XVT6A={O=Æd=Qh@߭N E뭄 <06Y^<|/aH#)&:Ȣ{n*~t# XC@`c!i < MoК<\2Z'F{".;|yֳS{7XSe(T+‚ L5$Z˔+;"RK5E qIJ!0`jv3=&cIm͚ ZF'*X5/xKbݷ _oW✖aq :ѣ }{wZrpIiu{ 5&$gs7yoD @w&^ﭗx$l r/ޗ^,ƪ`q|/TvH pvZ.Fԣ UuZRѼ 0Bd#Ru9#Pde sP=aL?2F{I9ɭO=a߯;!z62B{ZKPw=1_qXUpֶ)4{!*z&dE{aȫr;‹՗M| *YuodY* 0!ލ2:vVS 획ku2%\*PePtekh]t^h#>|+`(OE<.!UdIE ޣdТ͒RRB Gb ٤t}0+6e}t{;gm%2k^Y;E~q$e]Kۯ8d~/E46-s+)Æ!*Wr#گmӭW.˹+] ǧ~dB3I}f2Φ;cj8OLXzܮLAmx*ڿwbPA'QC'2܀#.~ wXl@>70؟.b+)` ,M8QlSʿ~EVu-+pRU ٔ29tfٍ(J0fs*2 |xl%~{%Җ\F3{,Ҟ8f8ZwA;}O/}<Rc ľp[0(|o3:&Qm֬sʗ.H Tlc$y$LyW6(le5=3?nvIuNO$6zTc@K-ԕz cj>&ܸտ$eAĔL#hſd0L*-+B~amQwHbqN^9-Uw*j+J3T=ٷv܂N  ̒fFWŴ:as Kpo I"ݟ`pܴeQa10q2`4Oؾl>Hp>IwuxkITSԚ闍ѷީb}$IR`D=3ZXjfK P/bJŢߖ^o`Ot ben7+6-Nh4م%\ r*<͵rayzq.7PLl&r{M7.~j;+,6BX; )\6g, &D2(#vk NS0wFmUi~ _=3M˨|nkgrA/J.ڂ%,U5%1t aFMѺX3@D\1:bXt_cns?YXO$nȇgοbrZNG 5y;dln 6]޶}PTHؗFLuaL0jSu7h:*6)i٩֦EXw߰}G-׭RoM.^ eq=y3@%A댘`Vhl咕 V,l W9AjJ)Iv99߳PDIb)kݟ{|`!=، %篕qR^a3܆[sП^|[Cvg6(*{ZذnYcZ CuIj;:W5ywn_aBERZQnn XK{Yvvv}Fl xn0Q}6zZ>YdMڷى d#Y'(Wve4>qAKOuօkc N>(Ws/P#r&v5& ة򸱢`/_+ۍDAJiHeEm=Q%ga61@J<0[$m |'n![B01B_F#)wЊwK [VȬ_iMav 8Y\Ҙ<D^>ab5ƿEInKVpaS1_Dꪚ vD"}](;e4`h fݦϻhM ]mA Qql mTω*bZ6]hw^!3ij5`fd,ƥ ´T5MTEaN9ynR T:9rGU-Ӌ_ai$s}̲L%)Z+Rۄs VAj> ЁRG}W_YS[|bxD{f*!) ѹXx1ǻ2Tb3 s:T,O/e#[% KѢ y#,ig, ڗ΁WUf%LgDgLuLiyݸ,g ,M!iJt ѩI|0MC}1`v5z̎=_%5kguȅx]Vrߥ|uI麖 ٩ĚӉӚ ufN(}zyh!a}ʵ!<|+݊$^|*.NnpAC@`;5,ϔ'8Bn_ 6 Oqz:J@_B@:റ-xՎ{oޮ/b:Ƨ'珰}4F/*]XUVOgQWF8; E"Vkk\6ۡdhȵ;o/gH]]QRߋ!Ħt.,tͲy_~x=kvVg},ji~TVlwVh͢{tQX-Ⳟ Ss kJ} 18rrtbq*B "֊S Eh|vPNL{+]~DnM NpK.e_yFLJf`>D 4ޙ`zcQvˆhc{O3QDjZC>A|qK%8uD1V%}k.!kg^B@Llvl+ɚT%pPH 3wUHw~Go#CC_iB3Ǭ~0tymq̔)fjf5] 1jn/P\B⠯qHMp?5G[0aB=(Vycep{͈큓 zfwp zwT8$\vjрI1PRF6- DRxe$W`'b"ѱq Ƹw-ceF  "C]PM:Rq]34'\id'w$GyzAq5I8EJ |}x*Ywӧo);թvUJr|B~C-06fӬXnHBx,(=J*?Z*n,^\BOԓ ˺VWʐl2*Y qwpҚPs$[ɺI[Z66cMu7BcSBfd0g=7fRUEZ/( o>Bdd&XySDaVYh!`Gi:*"/*1#O;",gH%S_L+ ! ]|+Q?PȠVGu%wЭ)6G`wsl0ǀvх 0Fϟctqjo`!BK )sl/"|y@!J]8o^aCRJ"V\1@S]m3WL*ĒJbuwQD,ڛTٴZgd\/$*2:W_@]r˃ۑ;hA"!bL 줟>\5/ V\CBFo2>U|jA ˜5AWZǯPE|M@H|I4UܭmN*30)gC* ]})܁+g8UJ&#r6mG~%{-8pD ò%HGorJ IOс{Z!tݖ(!kms:GsBqjjD'eï9pe bM{V"AK Ŀ6 .8y-J:%4alY3n)g0t<"n/{[k}Y[(v(t :ol@]w}8f"˚=Džtɹ\ _N &xήbg&l'6&z*!&J|WXWִizXMosG62 c|Tta!F3 _fatP'_\ BJOw%ۅNV'=wgjF]y^ ,^746H,j:o{k2*IcjMQ^)0HSuaޜ+FCfF WArJ.o`\;FSDT{oz|.euAa0 Xʛ B]^{EԤI/ln|Vca Xg),2r,y߅ N`# .ےAW?\kd'L*W/q2潓4}7<˝ЋiMGkoԷ< 2d7ΈE7>A!h wP^zxqIWcV}l]V4u[[B8)tZP6^LGI< WSvhYp%Ő*fPdrCg>TF+iB :)Ȳ`zye`+TVK $Z1* ~f_DzPv?>匆ufq;WWɀgBW3:֮Lec jY'r^#p rJwpwA`ۿ-Q K-%;"R|v゜|+xu&!ڡx`7֌ewyО7ڳ{ޚC/P|頥8쉬؁>#hb-S;5k_w!uEj4(!q}NB^,4'FȑA~{L2.E&75!nAi͉FoiqWh=,:p9(4eT.-v."{UL2BB0[BXzCy/)fس\~:ˎcW17 Pq3!FS8±6P)9'w@IBG:wHz,|yT"W/-$kؒo>-2Nu 0BÍb0\ҩz {A@Sw8ڲ]nv,=bWPZ`E j6>9U[,R `b(z`OTSoۗq5v앱ktE)2lٯ)({ ˠY\/}I9iԹEAJQE!e;yާs_qeҲ+CԃfjtF ~F1 Qm5|A05-0Z.(`}ePK,ghPoasycЌvAT[WĮ8+tVَT/)#ǿ[JNb KϞu飯%ٵӡ}9K@Cqxi+ֺ5Fm9t)Կ?&Bq~_ވL?P atO-ST1p#1RQKj_-۰b`xU m!"?'CρAEₕ#L=9ѓ ,参VISX?Ux-0L|-f*Eۿ}D^tBU<,uxS`1IS1e`ao1dr{I*"PX+*s?]yc'ƿއ|UO @[lNax6ӈ͂XdEn-~sR[*.ZMn\:`!e(qXi.[ۋ''B3Y}q@C/Cnpjo0V$!j<)|MGDD.F0 Hɷpr1Re 2)\:cb !<{K"lc)X%Eo~k3m8',n{R5zwSA M~xuW`Ӥ} o= qܜt j=Pz!wGl^:Uս)*UԖ׭D]63hid0RuaHAJoJJx`&ىH~*BV֌K|`ޘ۰ڀd8ܓl*(.h"Tm6R1L啴Cܾ`]ͫO ; /s PEYJg2 KΩjWԻ{F ~̫C ,k MɎN1Ruq3kߎe:ܘx OGcZU9WY/"}j@ɿDR݂~t;bt.iIXC*䢞/?HТ({}_;[Ji&gCTIN69`#孧e*2]4&!gTuU M&!3:@IUh|C0|L?@?`Ǔ bKnܸQ%ˆ0 6@[25ẃT1K%>Z@f?5@M4gkJ_*'q 9[*0Q^EY&v?gsMOFz8 wu]oYš~x3uU+5-5&6}|_F2Y[C*[oQzA|jk\mڸ^ژ[Ӿj+&R)nxzC 8K%Da 8:>9#Z$zڻ<5MYseF]x7 vZB͐8ɘ, *%Cz9ZVvrc "v\x-ܩ4W·.H*W~Y=i]T.#թ1M-("~wOPP5;d#. qk4cM X%9JeqdIgܺ?x% +ΕMguPݼ̡4Ny$da7 w]pӞa2 to_|=-"4^̴eYYq 9ko:ڳi+~[V *XM63xQRm e^$p;62T?"MQIku]/IW5;d _E]EܞD{i1nro g*/$^ i )ܛh,~""2}nq_8΋t4ry Tͯi 9rmݢ .R)Qfa}a$i R"\uVuW)>%qkR0?fU{eEX]x 2 z'}(Bm=1)H*Ҍyᩦb8p!9׃zWN*$AFES]tH܏=ַ%X*y:,>-&@Yy+KqQ+xasy8µ>:ߔ,Ex >az Ili? "ō!ϭGG?t$:Q#"H((őf:K l5Xզk]Cp (X|# GLil†0, ?|,xa|ꢨJYԦ.MHSH{k켐6?'kwüW^LH:>T,4[ kE'vĽt7gu#[gK- ;4bI*n'zW [\rI~t4ʲH 0 "L1v_uGk e h'@"Mg ke GMn1P]^p!1# dzKk;ۢěB5 ?I?' l.9ɋc &_@H#߄+zsuu+즣+ק4X%u͈?Gf%B=v>gbK9p+vۨÇpNQjEJ"NB!]*tq-Z`\Fʯ8Q%-3«4;r0A0LOuˆ+  !*!Ax2Ze dL/#JF.Z)\%kv4=yO3NԹbe1J5k^1b bZn[pǵi0ucϨxݾV ;|vM!s/Cܳ}Lsp 2 + M в~m~BAѦջ^!ojn\5I}OƔ27&#&oZf.Is9X޵o (^Dž4>^p׃Ę̼X9u<\u޸瓅$WDuea'-O*tE@;nV#Y j7䕡ԅĮ;t7w׀p]W7(ӛ&">|w8LYEׁ<] s]gCd?-VA-Mp ̴ͭ2Cͨ5 *.8DVOa:P6k}j2(őVÊpH X"%qZ p,Zw䧴3 1ɒ^7vn>Ql*J"ˆ'||{Ϻ8sGv?ݩydQCõ1*f-! Fg yBqg-~t4~+7F؃X=XFUcz >Z/ZJ)ΆJcNWjrwU@֦) 0a)]"#d^Q(qe9@~ZF(Yy,A=VHr"HQa纺TI0%F0XDHl>!z(mzeUjy>MPJvu V #Ϗ(e ȼAVQ902mެ,g@~ll_'}׻nTF1nOJݼbT.֢IGKO( fA|%mgXx#suRNOjc!*ϏQwlIKK2i#BߊW~Lļ&ziK,@o(F|\t|[MkD1-ؤg_]]p3 ue[P7M#" xTgh9]|lR".PWhZ.BhM5کڸH 8v ZײX-zbܽK{\jw-Mb\Y>n;MZMTJFm }e>D˂tJ+iPf{L%89`?kM3hXXog`f%o9#u~Kw!s9hK-i.uR::~Dhb_`3sE,Z21ےl>&e gՎ>ykD 5sWr 88t7|;S{q׆ZYݩFZ8ڄ.Tx/́,8J0ޤV4[}+s=T- $X5"p%;_е&Jӣv}AQ| @=Nء n 6k Nt$&Ey8c` E@.L•%9*g#AkV|m.wHA3&Lnhޙ287]|)j u7V\zM\["k?6+YGrhA\8 GnԮa95odR<D.5癮D SfU`=iP.Hrؠѹjd)o_Kmuj|Jh6cN;Xj6bkLI9c=~ CC&,"ٍ՗+fț,^rSs,[;@٨]d:!⻇U?S 帜/ɽ~K tJxF"M@&n捛Dؚy0e}1" QBݟBKvR'MK$fıZ>*= $z`کn`tUʵ.MSҾLto!L-S6c"Q(\S}^… Ƞ!qz7{mT{]}tmHR 1˩7=4ԬߐDL싆BqAW9iדS?s\_I*\ z:* iPٓ Btdo;4mbs "\$ K\DIƪ81̚e8auo,9!XY䓍ִ8lCZ|`T#1{]CHq!F##/~ 7@}G©K:|I⤒̡;Β3Ýت` b_Wаpqv>T49ps#r؈l%^|W-8k_}jJ^ͫ;SЄL^~~|\Υ ǧӐV6́Iq)KVo%ؿq'TJqlTE۞;?z5c2+p_5+"#recr> ;8e<'C#bАhMtxkk]YÀ@&BbiԴF Fe1.W~д s 9NGsb yߚ*o :ġaM ,zpkl" d/ILkzfKhi?e: MIʞ!J.RV6)/rLZФF&_mMPen Zf?ړoHy>_m<ɧ!#UXm8:<(M<ٞƨ 8B>E9:W)LsA]9)[B-8Qݓ>WoVkc0^\la nQ԰| }{44p(SRC=)$3?Mp Qa_aRXO:Wo<~pL/l~քwQ8U8X*gUNS%uuTwZ2>ڲ;OR m9ZMUk,g_Ⱥ:YYW˯܏ӭ׎a ܲ|]P'/g. 4+E#Y ;$ zjĊǮ`yB2VǪs2rGwY{-?=舗〪j N,ԭj dPHH"M- ,ݮO4Zo`l=WC2{QDW:%+i5FgWlY;2 2 ~OЃZ1Gl- NUEq=Z%`ՐkrJ?voꝜNW[#xUK|۝͗ hԗ n C"3e.ػ5.6_M]pi EH HoZkQjy Hfʪ,QuFOЭMTS_[x?bғ\D!Y.rlB⵳|ί]!~0=MXtF5_E/8z#G]h z( "F4\/ˈk-\ѭ5g&<2D;Uw|܂cDev8S+]N5ju 7J5FMHsexP}a/1 -NW%>zz8$zB\EwؖJHjsMjoB$:sIz ]+ Gf{*Mq!Ej/DE\lLrQMrXinZ{{[~ W٩+S ~)*$oEw“fp)wꆟPՐdWYơO'wڔV m S5ϴ^ Z_i-~1OT Sz]!`aM-UiB'gS!hᒥf ]`Hg<A+_<"R>ۊ K;q!=lͯuÞn0 *}-0ÎyjCeiŕJM&vŗ߰̈́aU2yF9iv9(w nRy; r-` wM]LaI,,)ISyY3vWvǨ$;_+L:G0iw%VYJXھJEY YY+&l([%ilU}6D?3(!L)Xy[\Zr|ٚLS+k ڪiܹC4F^CU\'HqxR59zɃ)3^ "C DxcK{/슦a5F槧ݫa74xO1fQAagʛL5O` |ܤK@xfΏ\O-TiG`kbPA8L ~xQXFaM><"j\]5<ǯ\{)cb`5H ͤ;rj{P٩Ƒ$2!؈#M^ ȗJ7F #]J[h[GtB/|;وI`FI7}gp৚4UIxm6DrN ZIܾ/K[hv81 U߅]Ox SjEM_k4J{Yvb&T>/jWa*Pc|]˱9Ayn䊕PObMj"\Կ8? H.?@xJMx9xƒg-4;_yJN2_VǠ͓8T\fhdUns%Yg̜@ޘr*y<: 6FG `}Xnh{7Mhï 8{v>_JwIQ\3Npݓ"3PHe^ C/?@ jYL3*gA!& .- %90윋,ŰW")fN^`06%hdEۻ21̋+dh R'AbMe=WDN*-DM)/ NhȈъ;O SmmfEC$ڀKF?0D8z@"x3 TGMpJle{bh 3]Tg/83"ΐY*F>j5Ij@㜱FE\"]B-:Om70II)KNB0id;ߕ!}aij8\=1,5'X_o aKHҧBN7(l틗#zR0Ħ(&3Wқ-g #vLs qײַ8ZbE!"p9ҭ'.rhe-y]8Sm~ RU8;X>o΍>Z+7 erK:Zo;(L&i9+`?u$ E |c$ 3hbMZ2֔{o#zC 022 |*>XxC+ 1%Sz`IYj;f2=n]`z%]RVioqXRFXDn~" xoڻuvđGB&c_sM͚+2\'C6 _S+0x:J$EMǡ2N;j\F0Ώ RwCxV_(5jAx]߾B꽆~oh#E OvIyn<Ӻ1saD sTsl(F^Iy2Xuv|DqpX J*Kje?[UFoWy@v*Y,tm]h 7p 8^f8:$& 1If^B Mg ܁aCOC k]L^2egcI;v L*k0V#ItXqO55Rh1- \>Fg}bܶԌzTn tt͓-$X6'xBڼ'I%qk"B`X}*%1χLG%P 3Rd)6NI|}23)D9rdhL.)6My. qHԽ}xD VBK B^.j\$fY0qvEk)4 $!ж=8j|'NF;^DG\.n2?:ʈV0eb:*%AӰYu8MCFA!T½0&ؙU$alU{3@fb@zݧ]W[ ᛳD'`OS\~!-V$lW;:C1!k :*Z6PPjlZGt943?Rmm9q4;z̪h=\f ,i @ȧ@;57OM-bcNa }sI,s,ۼ8e'orixf\-g[6b71eN LȪQ$wR30)*pn?, ƇrJi&#YL1%Vk4:4\zˁN֎PD& '\Uz?]Xh%Yt;C &? ?<}I8"U?,qv}=od'qVrIa l=,!rR\cD'aK7,3teYqNB< 0l!^N`ia_[5` ¯ )%_8LL]:g=''L0) AB{BҶН_їrӊlas.^Iޭ3=^>#G}.2oɖ: [ۻScI頭- .9p0 Bq*zHG>ci@$S<~|T0Tu>`(v!v8հ}ZJO9Z;*ZNn2N~tKo*bO0r-kb;=_߯!= 6\rQw#40V}dwhNܝf_c\JxQ@4HQvi;JϨ(Lw9< 5eȢX /&NT"f-Y̲_$Y]adN%,żéԨr˂]龛+Y2=BW%7>.EވJv qG>iPsh^726r1-2d݂%sP}cH(b:îl+kmqfÝTuP!G+bZC1gm~J$9ѫdh4Co+I $ /ޕaNB{x jF_"a NB?4@RŚi+&isӧ.iTsګdIrTj䡬%֍3r$i܋a<yq!=$ ;,cw3&' {U$LuZQzi'>EN[p·cKS07)IEobMc(; +=AG q,)Bss("Nnzؓ"nD]t?̗O1 M4+Q`a8&ϼ_>fbAmV)Y=<߆B'S'u]onlK4GXr3&Ȫ!KuQO垗{I>^zBRseLG- $(EL2E[ªD~T6ubM/X0(bBL?q(.@ߕz#[xN˹| )SZim4?0c vM:vF;TVX54HxJrOr~(Nu5 ~X׮,/gQ /_]9Ԓ6ĞDu+x{{~ީPZ.A%`)Z̈Y4Ns2Sgh҂| +c~[KpC3 Uu'PKJ C-(x6F*·LaAsW&J?5]`;8v:0!菹 cحzu? _uv%. (䂗t^qZw8neaS%ܴ]"5qLsvfcˉΆaxTK8HfߜԫT`@bawu[܈# im>˿hXsg7r)b>"w)ŧ"e j::u=>?0- aMciRt45 tؔ[Q/3SinB6-:\ĢֱS>ǙN/LG kӺ+63zVJ-nMLEбYgj4zkd9=H :<]賊b T&W#X%baÅnQPVG9> 0Jue' ku*FQwF4q-P]UBĊkx gg(-QLYAq 6:Ҥ+"nn`Bc 8Kmхz_ͧrw2jowp&pɋ [B_ه)H; &ΑТwӝ 4M:xΉPSI:E<&쭜c7zǵ+)l Ao$?a!a3":cll*b"%;\^[:cuV3r W߷_| 5K&a<>(ha)ѯw+QNzxS R^Of 0ZgmeNpuAFh][4e|xֳijws?/P۩7Nm ҿJJW'dp'iLAA!y>_pGN *;"Dc eM 1/v"{^G?~QH gMfz{e Dejn?׋z!lD8I % BzZkI+7 ɈF *ec LpO'H?ӊעOKu'bk?F& C}2NqHo؜PaRHME=)~mRUtkm7¯ <251\ )Y]nP1$n&ڵ޶ϙoI!2 4RV|$3"eAG`HTԛ7@5TDJ{ZמD?UR9!b EֲWԀ<{v徶 kkT-Tӟ bvҠ؞tm V[5(#2m,ZrSn;M7t}/~0ظ[ ~.gʜOK7ExF}GI@t^*GKao-6ëro (Ō\X D* Ȥ?C>dkq tk1Kڊ+%/lZȋ'Nag'H]t\@@ G`4Dnp4~9b2W}.螫-nrQJ'(Ίx^)+nS ny/xupXÓNKYL^P5<+p/[0s^ruP4z)uV7ZI7-C%Gc…A$$!F087eG٠}jv=᪮HXJXD\ 2A29ճxa|D*aȶַ"Vgi'o̦Lk}HأtDl`/{zRӏMtc(<jz) sk>~"^ԘT+|\]wߌB@4!ih_ыDtTxșʞ6P!Ϩk1?{:{"]v7jXe?~<2I4J'L呇qou VZ@@.x2Y|#J˛?''+)75qTDWbI|1])gqZ$T>inɘ溺k+{ȶݜ$u6.7fzKL³Vp.zQOu5s &d2J~jF|MC|ّdJ'')h#HrGɋ NOLE;1e0<9ġ~'yc$Z/jMvO0z%)UF)jj]pF!1yPr)q)wDՍerEͯ0=N S^-vɥdKAm1x$A06%YAmb/(q`e!;KG׼ \1@/22 pEшFpg%'ж[Oag۹bAV'v zb|"X(E#5i.+NFzhxyFn}?oW{J^w-Q3^'(-&S:(١S/bcV|D(PpiJ"6BgMn} !L(rP}G;I^pG0{5_¥~ks}cbWΠ TKOLĖYT3 ˴/ .y(4QX/:]}ܵDغ?l ܅A#"M3„9J{\O_|\z>8_z[uJߛ1IKW2q`VzkG,`f^h\s}j@ M K{X+W{G{d=+LGA]; k/>kxJH]ǁ=/F5Fq ͡x 6+qע1Fp ݇}T{2hG.tOqHC:,tR猞~ ]`X2Q+=8!!"aS-6S5 6zw[`NLVT X9'SKآt1uI]ʾ9^m| 4rdtYi~S_{}q}t]W&-XcrV2H*b![Ubpo091t@lw u> ges JQw GSσ8@'I>WRCW$FыV%6:T$6Rq.uUƀ}@Wcayww'rkFf[t̾`l} %ݸ@}eQpf,&PLl/Z(/$2u\%[b`"DR_lΥ0h VS&7C''_/1 6<oYaD$otbkIe-:䑗}+VkS'͢xX/(7W? /tĝwI:Wq<=߿Rs[Baa ZCigA]Hƈ_mO+y .duiA4Ϋ*RbT0'⥮fC qE?5 ߝ+NfCf` re|QU]8]J̩Z `Z&fui& ,n澯Ep3@#u4`䵒tabS|Ng"0M҂< İrޫОv@>ķ< PUFtS||M os>m Ԍ<3jbJ4кS{bLdR jWk4z 0ۙ9["¶*91}[z:B,c#bcMd2ݲcv6CO!2Vf̲E"0}m 7ٸ{:3C+YRcJ!- ~ȧcq3BJuarMLҸ+9uͤ15{9Y/钯yϾn>:XƎT6#UgrIC#z3uX5?2py $1=?Ϭ1 S:4%AO5{A&OY ǡv3H猄611,h^r>hbN!NޏdkŨs 倱]dEB*֝NQah]*VXx%w} {&\žx!ۊ0a,!IAmyag@+dJTBs6{qafFhyٴf~=CM5쌝hD!T$w` uy(ڢԵLaP0q=(CPQ^pFHOWpH@39n(HL zrz]EB">CB 83R@;Wǜ ]VwشCd@-ݎ͉WI)E2N0JWhC=o[MLJO}qE$9i曚 |#26tx1hzoub-CaF/(þ* ddwuv鈚 co+tH)3jHUT_,PO {fB3SspUJhq<*7$g%DnMG6v^ұ5;$nO魧 ƽ%5]c&qNV^OcOؑzt7 D4`s8;ݨ?ܙEZ']qpMag. :'[]HQ>;Z_@>T1y_ nSGCJ[UӰ,B+BILj F;Ą;*:5WB$Eg}g[G`Z7*`vObjrzp}1ägvceY@2X(ƴF*CѿMb# ;9w`IUw[XͲ Q6ΩX B'7~꣍|nhc*<AYC oa4Pƥ8Py\S0Wh zrXXoֿVxh?J}ˠPчBya,ˆ83i`C}oЎLDZ֘-OVr,7+Ϯ1),:RVw> RY;¦a{[#V]Y2JhfwN]7pmG=ú\Jf<[[.kr F; 4*(7,_#ݡ{z+-E"?d;CD~L-H[nd[VT4]Zϗ7.!Ay YI $CB W`;"*.Ra*@¦rY\wifGj˹VCXM4\1:$3岕8?vL{E`}=n] 9[بw.|?B td< 1$46 ["cР!&M K-esUiGҎ痗0 TQtc~-@ZD%U-ke%8XҡBLt,7oYؠn>i2܇^Ԛ3Պ~7 4dY9Wg [CRj~boE0ZVZo?Sz=1M2.KO]$.`XVݗUﷂ )o5Xdal 9UZ2F/9Q"~)Øve)^VXpdJ;=cFҿg.;-߯FFȻr,e L%Z>ZezeP^M@OH =t;z]JX}i.eѯNio3*]ZfN[ NW]l""l*: .deA抦d+FI՜ G6X4+㝏E6/+ ekT`F7cz8*p Y{ԘqI9}1sJX^P'"F}(eO>=o;F[;Ö$jP8.ۙskp:@| dBG.%XUNH XJw6h} JglP_l-rSmx[rf ,zn_{"W|(m/,Aq*[AX2A , `l×+J}'Jեre)?Rٟt 1T>5ݩɨ ֿFT)K x<3!#}}c] 2t}FE摦ahPUvh܉G *MQ+V6" i#C$/ 禎 )u)2iԂYAXH_S ,V+`5vِa6IփѼ9I-U Q~։0 RїԴCz;Ξk}2TmE_'À6L*֖Dy^* /H e`4=i' ^%xB7߼ Kp0*YmwH@'36[WZ}ډ82!{Α^ $̷K5)/BX^<F R}܂A p!p !MȺ.)c?kF+YrFcӀ5$N,9,g!ETW0%|ю}nR<,ZɶUUDIco.8D4ի{{n*V XB39}s0B1ɺr.& Pu`)\  _b3X&3Ӻvv.\t w3$T&}4xH2vqge0bc44jF^,$H=0mrHĆ,h;cQgz⮌teFk LBխh(Ưd^U?Ca,#T,X<;ۭ0 ݐTfD= Ap)<&t]{9i] :%25I1ŊH /a]w$);*a')6Nm wEy:8U>\} #F|{QlnAtf G(96Ar{&5{U>kmCP#?.C*؞s³I3Ha{c'AKe<6W1awo?FVX4A~s^v[x}hUE;͏ϥحSS2E1%}xWp>ڮ5_Ț~_$NnIh("vpͅ$&']/^@j[ٮ[yEzI fLjrh?p 'lcXŸA0l3ӐuZ}y`l 8FJkzS[9@wL;~OK lqC }8~z~e^O$iдQ$NZYiKge&d="D`JH[}mOw [f4S&欉R o@ LdZ=c|'g4%**K?RZlMT]OFUeRMpLac(w%]{}pD^bF+k˹BC} Kf,o:AC2E5HW=Ws敥'P;O)Hp(+V'&s>|ے\Yߊ䳍Ë1iWpZ_)bj)Sz#/ _@[xXȏZFywDm0r9Չa_|hy}{"fҿy &}ud؍K)=9Dw2(P#>&oc:o2gOU;J`5Z I'?h5Qvl׉ xèG3?U?SקmÎW(FBL9T EuO*aР [lσ936Пc6cZ( <Oz~F^}w[ЭңSA1vYjL15Cak{(:@GCmw8o(u O8QnR\VϏVbZ5QO@]7jeb׵[H>"9B@N1jI@2θ?t'$[C jD;//<\,%Q!PAmAAs~pD[2J;hvvcw? yɦwG $.>G|&Y4vfhMw\ئ8FΩ9KyG,W9!RQIW 9|]`= #B| +[vS#=%/Mƴ:%|b/ ͓J}ޚVmOR܏@ǯ\"ngbsUN~))^\ߜ{`VYH_;R~=~'|Wo;[ޥ:),q i=fԎ4T&e:b8 ChoR+ԧXcUɎ\Pay3jr,Yrk̃ɥҘ*X p{XS H&xB:c Qr3AY.Ezltx 0zPu&6)_Qڍ3t׏-)XԀqf^g֥֠|XZ 3 6넺k,/qI f}dz=Ne[/ޮ|LC粚EoBS T)dLGAk5}ůI'Z9#kܯ1}~/6<0+p3c?OynV%$sppJ 6@ zsm ;bk锝 0NeLȳgР0?R TBU 9-h%EU GU, jY,%+$"''iN׊<HBf\E*_8Զ^EJJ>*x, $EIlSۙxZ.X/@ (դhb /q=lsnpu鮌 6Ko"s$B\?*iDn|"VLT >!,As~MHX'ɧ9X|qGqLU7\Ym3! h f灳Z5M}:}9i_x2SPN( A~I,}aa!0 >.bQj$MƆB|δK)v"dzǔ\Ř`FShlc>ny3b>4 Q1_=M?`q8YQLyFDZ"ZH#q'bn̟д=+4:pqQHcT͎6{fӒ!F~c?ApL,NdvflSѯA[ iIWnOq˫isOPPжRdWqmƂSIgB0IGΒ4WdB @s08 h+GL\ {V(Q [=ASG !D#z ?xϦE5v!R^`" z{x 'cp-i:9λn ՖEy۶+)g+oJ7#~%7F*` lldô"iƺYĂv^eJ$xAy":D!u}ϵ(7VIni7t c.Z>j+$/2;Z`h^7'P͗ _,PPK/}~=uhz"x{8f6NTkDrMaE[Ύ^rߜ^,z U3y;kVQ/r}hFM,%Hs\& dwOEFP+B%޼Bu 6Xr4&!J>&2zзw? 7Oٯ셢xRJ$Lh?y2)m|Izfa)S5T'C Pf&Vs?Ͻ3lאSnD:&_Zd?$?F$?o ih$Feȑsy3N, BYu_k)]wd>jߙ^dSF S+qMO+uhZsh;#2xG_TӈXҚb2ڧǴ&heoc[Tҿ[i$Tgq 9JIR]o=9ͥn>eXL \&٦=fPi+)yl+Ez4qն7r<{OGY~sBQzZ 'ȣDCz3ᱶdV]`CVOlgV_gr]ƓU>}=|@6slz *5A7dpcPAQ!qso7Xį(4W#x6=qfGjeZ'"U4VRiASsAR.7j}aVJ9m*;ē .@*CH/,M{t-,lt`q"i{S@^!OM[,᡾(mԊSF;gtϏ\yo&rX[>,l_ Tb8 `l?Io1rHw~z7Ґ?=`*±Ʉ@5ٕ3ltqANZ;hlRSoF6'?~ˊp+ vP#6C6Z]9~dm%;jkK'"g8'23s?iI#dٰ^@766%5rܘZfreށgWx"G?:ߚR-`|{~%^kݷ&)hl]Rv /x:z#:4aEۘRQS .~Ǣ?Q=t^9@Y . +V$"i}sW=q!!iU QYC9y 0zkUv#p6 [Mv B>K_bdA * vbC.i| @^ TXmzd*U}.}DŘŭ {_iqr$cqx?2?5[$ypaZ S8J4y5$`Jtl@K @ӞԱNW:x\ChJISrV=GKdhe_[⬲2O\HDu89'0c06wT|n^@;}5WȐ g<}ſ(GEv%8r(0yx} 6b1Z`-r`P|_w b>~@!tff]'fosT3>RaGx~K+ HDW2;OXCoj}}5"N6{zV:Ѱ{.DP0E ^M(Eq5T˟Ͷ/uEamu,ʱ׎4鰗;y5w{gM$ bROg1vPy4WŦA<_JGQ޷IK32E; zɸC. m~iP@޻>$TQ3 N 99rYox.]t%W)nlb p9hjBoI )oE: &]3"?iRMa7~./J ;b*=a}ɮ(\}?F|}) YP]rFn⹧}> -wn o-&|3Ԣq7tI7 J.{J߯g'>ϯ?hҪqRI&PDo."s氜fX4-f -FUذZ!+!mcJ_O(;}Pzv J&+Ѣ5U/%~-4`5QԤ GtGoV9^NQEKQJ&vVMߵ**ԥ3Äu@XpT9(]6OR7' š[hxwym0WS٘iΖK7vdQ?RG`G{9|TΡ K͑t/kʮo]0n Y`C:/ǎe"">y"4Of&Jv]_$Z% ”$ Vnؤf{U-Wyu_ WmP/9ڗOONUxMfd! tÃ#'-U.+v3?h6 (-V<"JxP"$ɓUa΃4an,dpOy⦾ARƼ]Åp0e039͆k 熡s#t^\~Y, c d-=NR}kwsgd#[~/y3^Ɔ'Q9@7Eg۶G''dj(Y+۳|>Kt9o$ kْ4.TTG 8ŨPjtT &{?0TPg~py"@ #R7qww5GUMާ} /g*iq b]UG">YjVFI]s;UI #pK\ !@LޝBљ)5~X9H6o?wcj\v nkhD>Qa^O6|ˉ1U%_4QUF:i2[>&'4JU|?R1dFe=U3_e`"JpSJD7#<KYNR٤.Pc ,jdo(>_ |4>G| <~9i෨Uůڿ8oGU t$^(3y%ouˑd`2'Z8i5q3\Mjރ4X0 臤񰹅4bQtD4j;>u׻!%cla1B&̹#׏M\k :_N@[go0#'@ӽ]rqxeM)R;V oWGgr/ D[Zi0Qs@z2y@v<2ɑ|F[WVoX_=pPSʬ,dxJ|W̬tQz+T%v NqTؒDCHi)a}tuw] r+];#{jϼdI#U[YǹI u8zkYٴRnQA%xK\YyOաFqh6ō {yM?Xl`$cK @Y]7?,a'r22 d{)Lg5N"Ff dRu@m,3ֹjb2B6NZV[CKvd`ҼF`u@"tX-zYRo|g䬀Vb4 يhѪƮd*pR`Zi}B1ȣz|0}M[@~*|ݰj ⭣g*D9϶z .gKm{)]-3͡ԶӸTS3xr: }&or]GvگSA5i 5Jzg97vGCEStNHr&i_5fjAJebZ|iUL#PPIMQUH,!2s~'|aJ(a t<l.T 5-m"XVeTcסp5^ =8ԭ/;ll j}5H7Z~mL3ZZHb݁akV{Bz-Ga!ymIYf cޚI|^ws5ZVD~џ5E?X h\Kl Uu&3}Q-8oEP5 9X}ۅ9q;BPGK;nI!܋ k`| X3QS̊tum`7UܨAA!#VD?hWȦK,T@Kp wX~?cpm*k,#MVݱP'VįA27Zlk8n죘+M_Kpa:FD-ۖ>i &Y}8'9J uMSFwy@̾N~=^kA1q=u/4Fk!2Q@."MxUh)Iq@(uV;F>EY?l& ,x-}32".$ִs [ j%jsKP*ähb߱g'\pX#lVMq%! S-[r6ס Sã6QCP} {4Ga~[{ϭ܏0\=8±߃e K sm:jBodmmuOAjKoEbZZ.~ğ{rɿyY=F ]dk j;v\bo[ ~ fofcS|f,/HpaK]Ҡ£V _4mI)yM4]@fu!QjiAgY}@b= K;]@}.gFFYs{ ʈh2J[HE/ /`ZXc\6 \fF5k0\i)5V;s^C׿~@CtŢwTaݔ@v]sv2w! s2.˘\:WU0_{V@y˱RUAϳa9\/林CpD"'`U\eV|'>Hd\r#trxe@G6oRRP! fA≁/Y/ ;`fT"?[h BSn2"}:Kbvˀ$cqMiq"U;[ ١_WA-gK;1Q:,'ZȍqjWMrG0N2ci8Yz]zw㭮@4zJl Z`zwOw*'2;w73I AɅp´ < L "* :0϶CfwhM]5қ@W>=7:!V;)IDpO(9>N1Z៕ná{Zk2 W.;`mXK xE Ur2HgށX=qvr6Ҟhl^ciڑVrb-Zb TNAYǜݤ4ˌ)ʺ(*0P rE+;0; -Tܥu7)!g-exd"?{PY]"9@Jъ 9Ѧjj?)1J4ǵ#G6! w-2b Uz<GF1'qmM06}u=(=Viҩ]Gm[JZA 07-_QsG,_B(sދ!$QLYi'CϮj5+R/<̈GejpG(TTWS&"-$E?nz 7gaïjTL"mqȻnKrscnykOp0$2G ArY!-Ò!@p8"cNL0:U Iw3⦚g*tM]OGRc{Ej'{"N__?g@,MHLlmFvHW@*?7K4C j\KҘJr0{u} J%ؽE [|Bp'.%C}Y#&Ppʤ4&^y Cȭrٸ19Of9Zy +ټ˒嬴gs@ҹ.ؼy3R4j B@82л>,Y8'z 9N:}C?(Bd'g3, 5ɟN8(oF3U7C$1q \_4djdGM&4 @ CtOvxڋAzyP,mJxGY$`4trxhj!iwqD:ir^ΠD ۏg2[լܦڙ2-߶wi%Bc)o\66I2kbAAf{h_U|`m'VbчU~[o"Q܂ ʥ!O-aBPpY%lD4?PPVŋ(c?zjEJ|ͪ/﩯ج- >R6u10/Zw}V́Q$iF.VzHoAIM]ҭƅ= p`|)GD6f:JZx|1㮮*r[hAy^+ܴ>|Y|&>GOϒ3YcD7-b堊]Y3EMqkӺQ fﭑB~˫]tFQ!wGu@X|&lji&56 4$'/_YHjΐqZm=Uue1L 'Ǐ 7?e^8Fwk&E:h*cDDu^;+d5 (imRX]*%13Nh < WhjAH/j)_94l(NEb#7K]5prRORo#z, ukh )[}_3ʕ߸&#ϐMDZL.'kW!(j]%ZQp'@ɕxC)a =6(w~R8 P_og;zy*h#zgV:TtgjD^yw{*09 d /«#ڿzWPô3_ -L^YHRPsɢ`0ffYwt [Y5|ihA@Pע]~{Q4jZW/~uNs6'Y€wD^w8_B1բ@M[˲mcY2<|+gZ|G[4hXхoC7n-ZX=A$ ]?FQdD}:ְу :JW>EIOl6D'm ߤ_G D,At@(xKK` Vu*ao1L:{rƼ-x)ڶտh{3CTD;~Bu`pMj2J/Ɓ(E~6QI肮=wCg ~^w$x`e>fTY%?q*Vħ륛xSDSK/$PD"שNNjTƮ0TH} `tOHN< Z8y >OwW@IoeZB#d乛R\DS j筻NOUń"/VsQFȮL C$oi9Y`]f/"S_]0^ht)CD[N߅SͿt~,0l2 EXAՃUm6PA29D.KfW/7؂U2xj<[]7 'OI\%mp-idq {/LOf~nno3sr_jW0Hk'Z8/6դC;\` vHu ` 0+a=\c'|rVݬ2ء˯S/Cm.c9Kn\h%31MS"Hj]!U {5y (=ozZN-/*-HqZu OP7yy/7D9U25+mAH˗ IU\v⤓=0$|1P~kj\6i1;'EL4#-ujUH5/ɴJC"9-:ٻM 2Pl¶q"˞}a/D+「aQǺQtQ7N".|7xok8<8%k/}Uq/}[I@dI u>`dK-йJ4f3k83B4^9Rvrsє2gFlupj\r∾`WZݦZ,Zt=/JTKQ:yiwcL`esjq52I N %}eI~zK@AKH ',P.w o[u4Zq9 ?gTX SK:9֣?C 9PaJdfy*!$`j X!x`\3â pIrk(mN6T^#:hqd'XgWҤ OIɈw8=qC3stG$&VEWĦ#<pjYKpҒ/xFPX> PDk6]i$ X$y<DG-HchB܍j!q*5H k}͟: oFKlQ'ۻHOĩhԘk,qȬ0mT00uZb={AHӧB`䂈 ЄY G,uspLRO46JIā'#ĕHa,CoYӒ\r˰AP<a/|6CL:ҹAj0p){r?' {yeZV <[-5z4HSx=ӠQMX=>kMs~֭go2xOģZ\Q?~K۶:Nn@DћtR,:RQ&ԭX( P ?IVMgTZ|^P%񚋆^iy~廂o:{uZ4D,Tw=r(弇)7=wzxa79SzLT3 4F v#,tܓ{a_*8BG}\mE"N8n-5M:aèsPsM(j!"(| `w([0MBь "0 D rES)f:Y@Xy!s0JgƇ &Vu:I \1K!{μaE_IIt)E~*RC~`rl1-ږrxu.mRrw[m_u*W ej&"S< 7kbS3|, !!zUu oڀtZ RV44gbG|,9ȴ? lP+ϡ1"[Syz=ȾM/уzSL\ٽ@⡶ؚIiehTT^}=>/g>5&C֘BQ&̔\xcMw2C?mxgײ (>v{8gpD!hˤ{3׹UCĻꕔlaMhLũ"[8WfȘ&&LX^V@ ;mx8,^ẑ]vdžFVC%E-QsˉDqQ}&DOs.$!l793[f#{ad b!![*iG1 kq%nȪv)/V:t@Y@X5mQF4 I543d%JGǻ?΢H okدOR4votTYE4$\JD^9uCt.JK. u'kSBY96+VVj1m]!Z_os뺌BNw総 -1)xl.rnU>"a% XrTâYFMʈLtYv :J$V QT6)m/5{PXaуMf5'䎰R־߲EH!8@@Ūx=KIGCQ U=7 տѽU/i7Zܭ/e09+2nэ,a(7F`T-,,H Kwx sÙMT 9㖧ߥ度"{,Ȍbh:v定 'beXHk jualc~-+[3X5wʳcIt'd*}rá}`68EbKHZ>MZ7#W KYśp9J++]jJ=nY( '(<ohH"֙<Œ]CjyUB ݅XTZǻ5q] d,ۺ(ۡ@ھtoЅǙmb $CL}|aaﹺϣ)?~Zn!)L3Ep#H@/ފtID%g)"3'Ţ@<۰]?&!B"LZGPE䩘iZiAPd*[;{k.+qy+}K]COC\M[[{hC̕zgyʩ=ĚT=xaۂHCT8dv>)px[]p6vyN^?~9Ӷlzl?3HnuQaiš ""⚒";O( ܺcrov&8]B)<\ f};7(C]d4m]FSV7rG ʍbF/0fU2\wdqoPHv X/v:wg57FPѹ$ vw9GěgdrIz.Ӎލģ3dS"q4C {6A_!r0LTog쉕];jSȧm5&u$#F|RB0GOl<$dxTUT.OJCzѯaR!Mxr:d_fOLWI);or~8HL:k,~;0W6L@ֿ%Z5eɢP%4i/ڒ"jY ?N_,L?99[Ke~G 7]$)OYgM<^:ˮIrGCeޕ 5;R |-Jof|R*WY+N5Vf^}l[VUcA}e؊-]GK1֤f,L%t!2Р 82!Rq"i&[!*uVȿN}4'mF+a_U4Z ?NJ!V'oH zT]/>"CP;kL~1z*4.)y^?J>u̟ P)G)X&z.k~2UuD%%qe?;r}ʁ{!?g7e(|%>[h1oQqM;It4ݻ UK_c;߿sogD)@'MD0QѺj97 Yl.)S֣J`[TkyX7eOo}*DT^H`_/_oHd<]Xᲈ%QUdm7$] xg7&vaR)[jV?Bc}i@JhQ޾n\/ѽL~#e_%KFq+>4Ŋ$q>K5^ odcdkdƕ巓;3?\F݌L%sx#_w}щ(dXfE#;ə;UL8[݄E#W$ОCXR%@$-cs訄 [O`D $J}Rk6jCM72 *j7zZtȳA]B9_($W>ԕA6 f Ų#WP%X3LeZ Zm@]aaϮhCNXC6˖}_DIs=~YٮW+F U総n19ôx v&=^*\t\E0tSԾБźk+ǩr+NI90(zu҂.3MҲKz_ؽĤx:Xu! 0Ý =7p+e73 dKpZ PXٓ#Prsf>/AX g rM^εS}sCwl~vJ(r[D7{1|kQBtq|(Xs5?Ou%QVO7?% ;u0R(e%W$Q3YKSetv;%ڿ :aҏip8҉1{m3oW ;@erCRe! DPISZieӹcEuZ]q?[|=~k<ch{ԕiȯ7&T6nqɒFh'C/*>$Re$ @A''SYVyMQtg onapWJOhD+'q8E`D]>g[X+/|w.d<8} 9QI'N\_H8&Ɇq!0?ɿxlǃqc*ո[CcB#a:1g#<7ɕT=Nf-w8f]<$%T#)۟$5~caJkf<3s9\,_/f*5:GhO)b3˽EY5.ݘqv?WCIJ'kE Kb#wV]vӫv*~}%c;E-: f?Z%fI$$oa 7X_*=C@vv>(n~::hmǒD>u3.MMW5[.XJ&ϐSF;k+1y~ k;0yCwEzaJqxn\> G5ȎtuQ% n+AYB8C0crΕ3@F$c+CW[,4m:6BV@[ (q(|ǣ3ـ.a^9܌5]^9/LbpqiN%H%gnj60٩Wٟ W,qGժ)ELƱgH$m鄄U.|%H0wk)?cv^D~uWE':>4Ne Q!RC#u+/yÇu"%2?t]|jZL;I8Tcu FJoT@ϟZh[ `t6=|*x0)Tg?+NÛpt0)-`+vbbct4m#{`,sþ:𽹸a|=`+ˑ>h< Vc.@yO#tߦ0}^&r6oz0kCt G &^bdY0aTsi->(>{QV"C[<"*Bm,ST,~Вrૣa0~X#X z< N Ѽ%3$g~ }<;Mhk .H5P4`w`M,V﷬E,X֊bY_xW+l ؋xɜJRUUQf^S4g#NZ.oF{CDh!k(κr`y`MaŊw[%L[uk$O*xBtg6IHO#i*9r !(*[7X.On8j]$d#퍠{L aEqء'rRq 1ZUfx3z7Yt:Sa.l7͕G{bX9zTc5P)~t IIDJp#vV y+s:ڳ i7`7-"3!Y\U#J̓jnzvUZxǕϼ7 (1oo"*^(˛$dι/08wot6+#Gob4՜eh|Jfo͓/56۟816S׿KBK*Oܖc(THRJ"4'yS:YL@ӐƐ \7dD54Y*hg4"2x6֗l*<]N}@{X4QD ^p~Goz߁u/A][IMcm8\1*לS4DC4HPx)TD:!<#h+k *,v)R%dP`D)!0Q$5Z 0e T,t vnlM3cK╜p;D S-ڞ]ޒFgAj8}Pr1JD5bƖجkԞ}P33|D8l$ T2MT\=I u8%pe.G h[aTPbUu%5,+v4/vȬ&yO0B72$\b'ѓb[^5)ޔ EhV[Pi J&At6ʫ e*n"q))2~O v-%%ۜ@61OD]8c@Уq5GZ()<$;!(|c9|x tz!)MI,tB)%b2{_b@ ~hhaqbx3=V`: IQ;L-;/woJ(aGT 1of*@SBu>W5{+_%&$ sWE>0WA'l\+0i=kYhֈ }ڄC[F vts~d")t.'x R9FZNj+ǷtR|eߨ$!+D0ysQcaѨ-C+w gjyAlU]X}vEA8O6l>ajE$J0>ڣ83VƇll3 ŵF1yzRKNE;֣ړm7U ØMdNPbwC,n?5U=lܕ^ 4j!;x}O3 U1ESVI*d m\^L8ϔ|Ŷ&_\ZQ& /ea qx; eN/cʥ7YMV^-X!">$tiڒ95Ȃd8@K*{b܃bC[d&pR_ߡpORx2,T8FhdA- 5 n~\ L" dڵKj& 0Ʈ6v^t?`WR81iЂrG;ekh=SL}5 Q͔U3!Swjʺ5ʎ[f+$ta|l:hxAHWNvWp~)e,Q<)WsU{(@y/nr7^ԙQ&{@/)XID e嘗9oy?%|Gҷuˏv&!|0—P6pN29֥şOV>8ʉ{- xH3kpϨC5(/ۮNyh r x t755o @-63!4Mn3jHL{+;&\ⴜx.K;1eM\ȖI;ٶqĭⳁO--ǖZ(Զ; !֛a`ӳ*[ jkv{Qq%_bǦ ͕3r{; ?T'ڑwM~/YETf-!y\e;'-uJ5 pHSJ",l}Kb=7v]Z[6hYlW A-=5&L71W QNCUKɆ~ C*޽l<9fY%rD|0vž$ a0tάuiBF}brjW6n vϤ{[30Xە>ŐO?'"(y|E^v/,9`Mx]5pj奉MC&=%{GQ/hYBp|&wF%2ak8i]p5%bO:l ֐mչl]j#$>I@MO0m~:wt&a1;Q55%fl+;Nm̵8Ҥ 1EfV6K/Rq Wp-U+g'1)C8D8b^̮]G.5Q"fڙ(Hל\Frt+EYQ_]LkUe #B@;Ycfp@rvgyt!H'Ȣ;Wa !|>v~AIx޿j;/AN<^u),Ny\AV;ss&3-/s*NWDD'{xӥ4;}g53J)Fʐ)37; /+< 5q2 VuOVӇp 3@Pz=d c `' K3άޅ*ž(é'^i4#eΘ;]X@ SE^.悋6U#83~2cli_ T-ܛ&|55#yi|φ#aӚ һ`7(xF xkvո;s7&3LR;/.P(F!3jC4x3yMgLU^$.,QSe+h9QayI@ʌ qݖ,̈'|\yj+:: &qX<Xpy/f!e:M;ӉЙio!"$S¤f :X R# Y(gk};m6'oZӃ G3 *[!gٻޘjخfNb6sT /eE㽲Hu3[ ICD8nYUES%;|* *hKaʱP 4ŖV17:/Nq美CZPMJgqQP'k/83;qݍ/rf7#_(z`ܲ.bd& L.- 9߮ c+?L3x7-l(wnu;|ǙN3cȗE\ 0{sW8XZʂLIǙeo1;t]HZu0EI{(MᔫƜ _-n( $WLS[k"'3bb-N .EcQ.l+>$`aeYI|ÑtW!8|Լ Yn ;W۾W_̈NJ(GȰ<%}-VbGe)-dqGS7(z_}u[ fxql a^"bns!Lce2Ul`^x1سzcp7#ͿϵŠ{B" R3Gmyи8r9VR:Ա2ƔI!5"!Mpge#?Sg O5жm<V!eE0:t)_=Ũ"LZ- z2;y~J^k4G/)xwk.z$8,s;GTK:~owkGdd:T\n[P| 7!x*_X9Xj"pI($o\yJ8=b7+feo**a50ᐧH%=A1?rTIPP.l~,]p0u=<4.P[^1ӆKzS}5zR]&ȟή$Z+$"k;.#I~Qs~ 0)? g $YX((Y9sqIO6r{: "&Rc%tV}|Zbql*S@gyFRؾ-rW:AAK3 {Y3kEh435Xycɰ,zqyģȩ'xz\",c Kd)'!|s/$l?ig6RxpΥwpGaF_H2CcHnDu&>%‹<NL1q(+߁<%ۍO]0 nc;t#o%ΐ?4:'A(NUWWsQ8L$5y w\bvNh>_|:r>w!](ҡHf_Fe&RaԕG{svSvh Ax$ls2m8mg?ˎFG΢~,Uge;__ 3* ~RB>@fJx0)n: P0@1]΋}6:۹`ei9̤l.h_pŝ)Y {Tی>swvVX0yހ˲CطxXEYd1["l7 4Wm.ua{W宼9KդԤKڊvm>LŒ V#pP~5ͼ]$-!4ABf"Mf{*75Oto3*>'L{~C #ͱطudכ6ީ^0xux) X%\rTME9mOԻx#^%,vv= q6uR@y4 3yq*f#L+kEҥi|y=vLћ9u?JL{(OG%ƇP G Y?Md/9X=WAf0Ovؓ;|$ҷ~wh:E{[z20CL6M>_#*G]HJ/Z=ǎzf(qK,fRJ ;Me%iix3m= 9d?'~֒K{co,m!c)ϱVy} Dk@糢,j ,p26cɍ}4#FZPg~wo:b4NXzbnw Z^j5v*,;ē:+M`g%uV,&wZ_#S\Kq @c}F*E tVӜ r$ZST#DDg kQ A2R"3a{b6AKaZ{-b&ZSa{o.;$ ܿEhmp|n|#:ӿ< v3p%_S=q-X9lVi4GHkJ# S3::56<"Z_?X{+E(6T^,t\ yN@r\[ 'bM[ Rd)"5Oตq1 XXysR7 _xҎ +VmSQyW;Y[JIlH\2?,:ȯIA?l8 T,HsYڌvy؀YBoW8?F(%2g%}cɱ$͗qj Ävy^BbIoCsbB0%>eN%NG%J88G*@I#> +;4{e? R濵̘O+rA f= ہݽ?)*4z 궟46bvF9Y$4Ɂm!wN,^׻}xEIY J:NC1ȅ8f )e)WRDl\㧖zW<20*ƒbXuB"ǹff7>QeNmS-;w ]~ %0k%YiV^GKX%l.aӨ=_|1}dވJT19Aox9{h0PT|[ sŭeo 61Ֆ` 2~w/ $A!mq'' W+@:r,>95-qII2 y@5Zp%FfħJ &F4 / vdY)+(KM[ M{ w)\񫬕8 e!fz+-k8wx@|Všٶ>YLDމa;=G[>B~SkoJ獂[}VɌ3D+;\eG]x]Gӟa>Íᨫk\aF‘{2 !x %]ī1·"sb.6O^QESHFr(c-.:(6|8is]\\!"I枅G^&#W:В5&Ġ|e`Iʢ(4p1L[K+k.he+u2%au;N9PZWG1M㹖*k/ՒPnXDT4xso YEiy1[tIyi)]S>>,!OGStn#*iA!K1[&E>)O@!`UT*.gTѮr$W{kt ) IGTv 鮕ktXb]_׉bWe[MHwUIXԹ֓iĨWEǮg$R  ΄ɞt`zw,a5} vƐI]Gam®I0ek7 @8KY+3;SJ[%1\td#Zg|Q{7@2dskBJf(J*$0 |+6 V{N?(e!0={Y_ ;n/wݛ{^2.F̣ЍhS/W)4Șup*6*I~>(.*Iw4(14)z!-Õe`9X;V}NEnj뙲~>&s,)M4gw" zi" Ubnln+[e8n!}=Puo[o,*W7wc!SIjctyTͣ1+S pa+V CV{n3U{ 8O=X0?ihLßE w3.Ŗwۖ)(]Z\OAu],JWZϭ!Ј=A}t J%ňv9-RnsYrMa;e|'G?{ϝg7ފAE7o5@[a]d %f Fм*M[6*k`,5fbuykSyaڎ\ ̬?Ӎ{Ś"lP/˞Kcƥ|4K&Wxq_^>W[+R)bjWw]lX&ABx'lמ$?l{t<5pjD!&nZt80fOO9lcn;$ul|gD _ݤpA<@9E=Un69l?#F|$Nt_Khў}Q=uҠ%: 8Ab lՆC-3vgp)'P?wAbO1 š8jQAG HϋF^g ͗)H@ 31^(QyTG<#x2Jpg~#&{/̰scpˇ[$;V}zv/+вmPd= d>XԚ׫:kSwt7+HHP>xAv ZZ1|G5ѿcHWBPiR4AuY^aytœ qmGa]RkyZ;"24k#bdI1@cSd !얥* l.Ub}Q<=(wB\ ,X$NW5zpr£H"} oUý%'T2'qK'ڿ5ILn'~C).<]ĤUn)xd*6Z} /~+F R' dIkA`o\kےDNh#1q]PVN̻ЭFiWd jP9FI'}GCnV< 2 ~v\gsd*uA"Ah!ZE~@Ӳ6&[y(RXꕹ&^N(IIT2ԍ$K6]@V'f&;6[_orNJpq[C#Q䟦T):2Lo CBx$GA>B먎C M6}ڠ )+m%E H A蠲7"Q莻@m+cOSf;9({ ͯoaP1(G|?WxK'm.qptP-'(!UϬ3-_ ޞL:pn Z}e xK>ÓyE; q[l k  $6='4n~2Ȧ}YCҕ{g­a#bP遏`GIMwjR>>eݩSTb-r"A`y jCmY ҜD+ D_)Z%bS E rf1-_}T4[TXa>sNz12_N[4cKħdٻ /s}RqZɪaƜJ 9UĽm;]›0WMdLJN TAx 89XPM5#xO;uc)BZ]괞%ܻCZ4t6:fa=*~(ua+cZj$"5y5A7d;QL]TorV Iw6<~Un".nbFSMJ"4>"&X̀&¬78Eߎ'^[~8 |2.P*EpcӝɮP^eV죇`oȊO/+,޾d%C8h=Boq >,#/x4 4gVr^D%(hUN*Efh^oS^?N~-@ 8gja*~{5Ի)NZ|5aX3pdϼifLm=ˈ+Xl` 3%ۉi+Qd7x_ \Vww< پ54C>|"oX0|Od=*Y6ğ0/Ÿe,P?j+vgދhWb] >-* F_<׎LNcvHb9F7}S$Va/j'QQZ~vSqgvO[ מ)a\ ڢTQ]vɔ~JH<.3Yh݄-p4:Zla+g%drAF؃5Q2U37bqݧ rx/*?NT=e'Qɲ'CAIfٿ8s,tirGkX@ɟzo,o;sԤP8P6PڳՔx N Egg~pKIߣ\1x0`~ wlX#dVeQ9w'yiS}2I׎"SgގKA^3Pu-۸"',}Ժ f߿^b#)cbulENRo~xx*q[ ` ŒH?'8D&Rqj{-?iN ^z]*qGZ?G)9`*SX\PKUDu#ISۃeThǸC.1CMn- #Fqa6`h8urdhVnzj:`rhL}ꏺ9"\y2yD.H$|a59V}O=\1Nd"%y |!l۲ G^9L#?0(M;uՠPtAsoBRU\n:{iuBBW JGskC'e=*I_ _Qa;jhNgfAfD|GCwTd˘4_nQ0c$a&;8g|V|;<`GURRI;>UQc6,4Y݂dCMT*$AJ vw_,aj]s-Ќ5ƛ|04)֍ aZ~ ]ntG_^#=wJtOpOgb[X)rX]&+LM“PD[{pД⮟[9TٹWG17Z!UGPPh ux)+@msϪ`ai2,âPT|P#@)^Òc,϶h|~<Pc߬&g1VUc&XoIN I.Y7s|ji` jЬNM쯷M? zM{M4;>9g*̊nx46X a a>n~;x$碕4-oh+^q1aLLKeg:- \^9۽0 Sֲ/w `cAC~`9d[WQ/6;5TFM0c8<*},T)Fѓz MX`, *6L2-S>tbe MZ;i&%\r04ƶ!yp-tf$UzE ڄi;Za"nm`\tEEp9 -B_01uHڥu=n.'VÊ59NS]x΂ۚ.D¹͋FǧW݀nL4.{ϴȎia@V pQ&}0F;xݘw]\T5= lo6=2+JA, 駱:LC.Rq|˪zU0-ū\)GnDV/p@Ȝ̸ˮw%ž&SO>*W7F䧱qr}on[@2[k'<xQӂѨ< i̢E}VG؄=*B*Ş"ebi鬰)#@J-G8țGV_KYҽ=c;Jn+7SEG?iI;_` ̽7^qWxt؎KTjM FFmLeqd!EV]1fނx]MM8@xM tj )_kAʱ5uKKe6e0d'85,ݼj†r 5$q$7JxQ1()t!`(ݦ"t^ҽrmc/AVEFb5CQ@\5N*ҏx1|8xb'z(lع$ceU ,%B”޺DJ[MR,+F!E0zRK\w!ߺ.bMwKb۽f1Za @6ෘX !cS6S _U}b9Q{UB?yP.zgfyd}.1v(t>jS5UMuZrYc/@'#%:/]A <8(2R!Ɂ^|ڋ e!K~mY4|>(Oc X=3͑@[c2U G9WEsmvM(3/Lr|mP/iWN|j:= ʁ\w1b2sMVf>21b6Qj7x(3g܁ XuqYy 2L$Y![ =ov'Y7~ !m"S|苉^E1 mP)qbd%>7,Co=!FY0H %/=RxfQ@X#NtK,+:?R$gn+ c;{Vs<†/MQJuH 0cǕM:H'n Ԑ"y&nˮ,p0F[\@dN ca+]((m.hRGIm8uh<`UdG/}g晇C(@, tJLv'<`] B6zBnK_.m tSKQ;pP a"q񝷅-!]W8{B4xRc XIܞlM! V{F}+JVD5+d7@%7<Ѻ{Y~lh4Q^Qbx(XX_t 4FV|lo3k8e} =nfj5_ڪ:|BD4K0yBrOvU)XQ^R;Y/e̳Yz2ބH%zDۣjn~ϑݽ=ux>mHLxq-~hǣ_L#^( }#DFPBGA0wBqFXLc⒭^+ed+rwR;~]ګo6b-`88;sR*]f8\M5ə^qV ^t]`Z^Weɶ@>Ys)4&">F1.K7(yu=XȹΊhh;<׫z[j@Ji|-K:V/Rzd,zdRެ4 S|OF4}&~~ `: l*P5ղVp`fB۬FkSL4I&2ddm Z|vY}+&Y,W!E U-gKf9hC_No- IbfMMcTh@QnCUKB릦Ŗ^Uy#n7eZc 5#ꯀ1Ky"c+:OIXFi2ufDCw"IܒEB *<@cٍkյ/k{7aSDK@ah"4< /eaF?FhyΑ`c[w=Wcø m( E}w=5V@NHwXkU;1ɯ$%E .rq`4Q<ы_j}Ξqlm&童F^ka2rAW9ZlVn}ZU|pHiCvG2[^-EvEH$rEէ=f?gLc0nHsNS0yή1GނXfs#F]iu/V^fzWxE L;l2Afv0p!i*F4 `Qe*{^=pe/` N㍢mEu15vj3H.9 ϥP.H$92z/UQ۹p!$ntKBR7Z"``U|l4NJf H&x?O(x< SR썰x m<+xFMj7j8][K“{xG^2F"8I 0z.IQO)`'QuI E/> "[c#Ո 2}}q;ȑQT!R{!X-4!o VLt'5l\j[cjb1 G s=Ác\a8f۲ӘOq ߯ȥ22&#2ZHiaz NkvKۥG6[3Wjho:9"Mu}dQ7 Pa ̚ԕ^\KX~^ ˗f!8th:TΎgbR4-U d.Ǒ bQ躋 tL޿s8.Y(mĭhJ%M3C(~\4J5s-AW*+鑽fGqHN >,3(_uE ow]Lb|;"I>vj_Ad%YA_<&Gv0@oBZ7'rՊJ>dzŦh )~||ߌYGԗX8Q%@_BfPO'd`x t"-ڴZQG"{]lMq1_v*r"=rk ݩw;ϰ_x8HV(<VԒ)Sێv{wr0`sz|EHͷ#n'I0gzIaI'- ;ݰsTs>Eh+~X 4WL e ؎ǿN=TYY3ԧ,CYN9sD |T7DJ&bƋ7] W$Ԛu.\DT+tsQƖyK JI2Ge j!:$)1Vlwtn55* jtSZZZN93$T)'q/hۉ16"w2K.%-mVb/v'm f :UHDg\fS#/g&a >bn+ 眈0oxֱ^%T0μrJr -ߴ lAT$#/yLGT*TWk҄R"qI[axKuS ZAO6}eOwHX~y9:GWN$Y3J;Vb J!/jQf"jyVLۄclN&\$H{d{q{ȁJCůr.+ =m >f~~ůf2uj aڙO =s%9i{>HE `>[]pnJYѾa$c  i )>?o .GVQL1S"X[,jGq\ ZvN{X\2 qZ.rM.ɏ;TTPM:niz4t\e"^kBj^)c/kQ-Zȃteedғ $N!s:Da8yc)&I;'xbDl醹=T[cIl\1G@ׯ O V@h~լ}0LK9n z?h\rcR #A,N8mC dWXIڔ:n A @[Buw&dr^ocr]mY8Y Qo]5:9{8%!o3ZaQJrN9-v&*(J , u;I#f Ƈ4Dž LJMw^p@B_0h!YYr^`O[\L#ar4jm^gZMNyԟ\QElF>Ӯ *ldhÓǏ6V͘H),1~_J"99ԮgnbΪ2, /b@5~D(950 .A}'΋ރpK|`Y2\U!£1|+[#/0}=) BȂ@oA/REs9Y#9zVZEz69ei}oI\[}&ݫXů2d-pqeR$1Iϋfk!Hv6Uq&N,VG~!& }^CaqٲETZ}"h o DߊDoIJܶLY osoC H`i|͘Q*sH:x*KgGbEsnEd& 2V)6TKEWl,`n,*X&.0HEoPjU몊h*ZSp-yr@NRatUnQ^h6kߍ/n+"@"VyH-\m\8/ɇ]ԟN6_.JX@AlRڐ% \oK\'CX%y\]-z|LT殚tv@|rxn 1:֤ 1}kْ9蝁Q2 usyF u ZQ8^c +utIAŃ0/R/:k{z4+*ai4R3Ri jw%_imǟVJ,2a\I{2J@{6$4L'>A$FK^>ttAHn",`{#,!3I-L\bɮ58ٶreϯ1.E# t=˔t en\Ӭ6~қܓEډT;fMi O$ m%92 1=.aizD'Wp^ޡc~7=U@R 2'qFhHieUF<L /#GM$*wRAUNU?OFN|`%a3/ERÒhl fQLCŁ s6uT2[$xmլlalFm ,L+9|!E,ధ*_RU40\O?~.|d-6j"@L$b(vm/Z!SCőB =v:InC5p˧y*y+Idj^lUeyvee+GQJǚOD*yb1y2ɘǪѐ EFBEsx3G7{!09.xQuZ& W>m8Ke=7-S }͕Jӿ]yQص3Y.! jlNג 2A4ӶaYMʋIgD[.8]@''EnIO3mhhW9N5ܢ6~ <9PQ࣠(oyy`"><~@P=(g o ׳gтҀn].b{@QgtW&夁AtW ţn\<DUm/$SJ\`Q# ec%TtWVdSɊl8sByJO(23 0aT%BL( WǓt , U-y,4>*8-Q(;'b>9f@v(ײOԃ ԋxvb?ذ'6a5: 7XZڣ8yimhU>L :?@akմC*`ԞCGwJz+:y9Y,ׄ })跈? $j'g CO%7>˩ )MΑL^• V@jXI37DEpJ^[tĜYV-Jeù`vXJ;=:w"ɀAgAΛ*%v_@]j"(Z3;WCs!2T8D΂L8Q?6<@kL]}BSv(՜MQMT[1dXK8v#{촳OdoO_D':SoᒯX(YľkC\ ,Ą/y7cwX( *NO5)}$T$l"BX鯞݁Bp&5q)gN N^;씃1#5Z2+2g> {"^JGU簨 X0֙n vS2=Io0"0lbw>#^Cu.F/rEgދ4uX7> vF=ʂ"CYD:TYo]~xزwo,™ty<0) r͍ozW+bae)m*PQ+RqG&4Zl!_HR R̎C'j&439{xdEXfr4 Y)ᚲD+y9^m4ӗ1ʭǐz~d~UwBfvZ|~%hy Ma[rY^5q4f6~"+ p˄'y|jbkir+=ÑXu%*㛢DxWCf OA#DY?WH2E.?Z"\,o0f1{޽2Tޞ)v}xx{,ܮ8LD }GHȓs jީKt;nyQEcB%F\W$*n-RAiY>i=Т@k1 ;8c{=3^(TJ#|ev%A k (ucIt6)?eʶ0P.l|oGSӞ&HznTu 7Ba5 !;w{3g.󻙥ePN4|q E7}KELZvLYyZL/˲{V i!p LcY?4Y/Ef0wx<r ߯b)õ(7 }J'F2OV3Db=1CFep03g)hojc.fbh iIV[X$뾑K[L%.=h|HL{j8'h[|&H:*}Kj0wl*jI{^{{?'w˃Y-6S`?ekU+R"mLG8hx(6eE/T~+E9;VuK+EF#|} k5V7"I Uagg#/VՊg}1Ƭ.ï`&t-])p ?p&aUiHN=dn3IΐZ/|N9C8 j*OM}fgJ_ݷF"dK5=AG3楊cL_f:8})IHS GŽj$Ǫ̷0zzТo=헯sUe4+|".e_n`~@> ~#uTltcK?c6^\OyߑN3XF^f[߈Q]$n禈Hu4Ag/a/trHdG~SZ.T?͏'~V񒌲U^.<BWzbC&Q ਴YgC8 =|/O94vl҈?46Yz@,j"ZyX&/=j ĭh3?&UC$G7pdAz;CMj⋐"^n7 C3$iJ`N,>MK-z~WOR'ɚrV{ kDqc)``A"~.1Rq.;_*?@2>]V- ګS+. YƩ 相W6(A4 n TS8kkyFgJ+;ՙ[=丄$BCkPKXg*.^Tf{XˎN}aFzAߨKK.QOR 40ZL(`2-VJ\N Dkv.o/?\)hۓ)~fa-5,x&,_G)=NQjMK|靄lu-זx.~Rʹ|^h R܀7%5wl^a (c3E9[ é!GϛV= ә5D6^0,fED"(ɱ$J A_`]کwAO'm`}?u%qGn0:_H72#"kR@!>cC%j1!m$Vh} DMδU aN"]4&?dt':LCYzjt5xc Zn+R';k<*(·PW&=BDm9{z2Z}~[xrdi .Ӿ\q%2W”gKXPc !jH 6Uz[)?1k<.m\aG9 aWg5OhٵV[qsS]n9]Zf^xvL8 eHrsƎ:rBS#zsQ%.OJPn>7Ei|GGc0TS圄i:g^' r 2^9:02j rn c7L; zɰ?K#f| [0N$rw).h8&bO]K쯡񈣑_eBB8U~=ۦ2Cu ||C髅gмŃr=}][!p,).2}8/8t.]LE^QC6\ {םOJ!Hܦ\-M8 TڡM"޶'{r7mKi@醤烻X(aUv|b߅F7. `4no*~DŽVa߀ ] #l$9{-SjZQdHHۯbP ѳ ΑEM{G\xL~"ΐ*>DNUM]r0`Rq.DOyɏIa֌Q&~K Yט)ruf€ͮZU[-C`.[8w7=XLHʴKcOg^ÑlV~U,S^\b <=|o 8rx}M37; xђT_P%T04 `CoƒP 7t6 Tw^e8W6"I _^nD9ymKgı1U\`t4V$G757\S&-%@Fh^&[~ʌvnkGp!2o*z,$[J\s舫OB*UrĖg.,I8C\ 3#^+".tZslkۡ<[CKґ 5K脼!{4@?xߦ K},b0oٔRPY>EL B9nh+LFѱuLEf['\b՝Kvs,a̜\9Hŋɺm> & @\Vf//Em:n Bm3#baYef/iGVID2AJFgsl0ˢYγy!ٍ"ov[tIRr&.y:ОuA! E<Ԟ~-GА l sm|vNSq¦66(`U5TS~KTԷ[M\g𲲏W4Oi-w>-fqKe;FgdGsJK܁(OÖ`I?`UЂOɁiIv>-˯6v56qPV>2 Y3ը.P\d,8kda 1qi-u/!P0R&qĖEo*k%}A;Koݨ6" Xu\8jdȧX)=G J'lr?;shoJ'qyU?V k\HύG^S oC_\.i+P+8ܝ2! CoCd!&*KU~=Q?DQC'6Zk:+kDV)/vT++^抽c?#dYhuPS,ZE3Iyv3؅mLF@LR-ͮ4Dy(#-҄j Z"ke-LH,:l ~޲4&h=כTķr4*N JiwyT! -gp UYt*5dVJU璦CIF J/0sY%M;W&YlUo>cDE d 8iKNV#*Ɔߦ>x ^EP؆%^q +ٞh'ͳd^fqJ\%ɖcŹTG3v:Ǘ"DBjmk܏^E:W.Qp'ea П9޸d2V4qT$(H8ǽkjCeCAQwy3z?:RѼp7 KnPd ȃp51q)r*OY Tg5Lιyqzܨ kX೜Ya:% Kt#ܫIW"L?yN/gb6#A"S9UBwȋzgp)0<$Ӷ2\KU?!f0;v|azp CazmŲ % 1 TYDv zKO8EO/Uwj՟>7>G?l#X%mV-ZH>+xVvq:kH֛]U_kaq=S8311++v|7ڢen@/"x/-DҚ^i'@2dطM+C|"̹x=%Z;JZ!؊uʶaԲUGZ"@Ϧ}]9hwjJ f {(ZO4]!BrcyA!M.F&V,0&YjyQWPC [S}4(nO׷[u[D%rZ<4H'@#p[> > )o̲FGzcD<%tY J&tC^yמL=6g/LZZG=SNCYj[ p*fln$.R{HEC)WMT2TܛCRe=Mwy ް6f-f3Hz1+U4SY)T˃QcթuTpG+tZjEzi'ֳu2&;4= q1?d:B!< ; B:܈V(14Y o=4l7z<'H쑝B)[o'* :<Ctb$ss/ܨ灃 kfI>J qv_1K|V)=P1px 8QN&.=n#/vE=REdw+jʷ{iAD)ykz"NCl+naw$W=4 iY`XT ?.+w:dd1tll9&(CE;–γ ',c%ٱύ@vcV`:1 _ޣv%ڀt-O0]ᥭӜD+5[2slD#LDRNp kGJ}dU3~z?~BD-]Q S6BeP9?|QĢ..]fOBv jt%^By*sյ_7m-#ɞzRSeyblď!XX^CV%M^sϲ&ʧ4JdGcҝ`LFTjE {WYr 6t! k&'Lԭ3P@7NXp5%\H5`"ϕbE)J>IuT + Uie# Ajp/,~_TQ0;> |MUfʦyR[⋣4,nyCjٺ%EA'`oNBzf+t榙'-),Emi@ jJX }yBKLUgk]n}"sENMtO|._6#r9A`*\!n<8􇗮wɤ(/o-Pm)K-]G-#{~ ;^иsFG< Gco{Sr%,FMf\ ?fG9>dTYs?v,g=q:} 9d1txIdꕱ_uNיLJ oM 2V{|}:r?6,R eCo#ǰIGv:H9.,;fa"j*L5ͮH Ƌgߍxej xSe _Wp6 ։M >|Z/H%W '7*'6Zrz cMC6 h?ʽIϦn~-t+ʶgx| ejB.F[B3+ `*un7S?eCi] g#TP%n ժbcIgu{sR]K`vm͋*FDUE}v$ seUlG7@W#@.޹b;PŐߢF&~[gA7Xz[E&w@oPȔHTL_o9 B`E9ۇ<{nat1A?}gDb}F^Y-95ќ8hmS?z}2VXNCv_O8wՆFҔĹo]ķ)\,/ZvRCݝn.ˌOEǡj|.T7\EA, :zaHXh,H3'}YSjAyR}]=*@$BBD\;y6V] F6 GN67bK)+y m64o;d.XA5pu4E6$W|RNP*vwv1Vq-\1u cƆz{]G/Jky9chK gD;P gN/K3θMͯ́-BfeMa7 nq("iL"mD9W M?B̦:&;s@\aTyn4&og2npkޙSL%NacKR3.֓bюli|̳<"%]6!cN< ~)eKU{02.Z\ _7uG^i ;jM7 p妻ڸ̄75 N*E=&r)!|* fx2t;Ԇ_Vm y53߂RG,Dc mpW wۼ h"yH17@OM2Zu$PBK7~4Q|h=$98T< ]9&#%^e|#Dѝuɇ]3~qT7)φ7фc'~  {slY yDz24>2uB!Jg\i\nv Ὦ%q}ha<%)n &*9oH:K,n>;bZd;:_KLԀ5ʹ@1:NFQV%I#]IUK6`b>k&d P]qDIAz G?ThRg"ѧ".k=Ӿ@| *Wl,vVhKo6QQYvtAkGg28^3CO$`>_9,Snj<39DNN5xXɘ$ o:|:<17SL刹Sh; KG x3cC[I7jNACcS"_1XV926l@=gV$(8M=A7>Ӹo'ءwtՅO i^O`\@()v$?_D|O싗~(,v;(”$JHJ%YV ,ڴ̅lX sd_]//zp>ʌJnEOD&\0S_lTN9O⦖K/@aQ 0+FϟpԀ^+MqIW1 |V%ӄ%K raHO!eZEK?I ~.O}oAٸ@058‘yz$JKkslRaz~i  347d+<^7JpuFmfn)OS#ti:Ty2?;)Kc$o ۓ+/ 1oƝwc{]5P H$֊p [\bb+cVWCd$GR-;k^Rd`mxh_]]aƢU;1 Y: Iz6ostk᪱?Q4FX٘(O0w Of$LAگp+6n{ ?)E e̼ V+FWSS,FuRU91+ǻ%IHEX*^H*=Uf"?~Mԁ RYxCFhFjQJ7]Lc>#[{9K dk1a@*wUdKyd]^`AUUlrQ~^Ho!i>1[Ӧ $kV02ByX\/˩,+٣S)73..$1 d3@mS)ok`&"#G|'e L3'cߡW)hjr-1icn dR8-cGsPt@b4POVZ_uE <;?ro狮QW;c~ۙ]P(#AvXYW/\B=`ev"`94#ܚ4͚ (/izezkei\+Z?2ܖq>E;%}U3ܺLcI)>>6]+rv">|u!O_іDO͓ =rܐ:w9ft+r-5~uZbl|<P/RX}OD|5\Y @Wz$Z2/Ibnxԧl#;+|! 0wσe WD^4 ;['p~)lm#! ^ /شLR c2fH 2Iπui^l>( Na{0(f"YM[ m,r| r'g:s^31i+# ,zx2 7si‰!2zrNwuC2۱ǚSjIK`ٳC&Lr Rp0M_NTz+sfwjfSFyᠾ ) lkZh-uu止\BUd>(>uȿ$Ʉ"~a⤐T{Oc1A0o/ep>D^rssf_U_y A>yU5  ?4[?F𡃡o 6&< )rn~9^C#=ָQK(6Ymdl7o|+A]Rv:Gń~vb~J%͞@FN5Zn5A3 m9nB=Lzz7̅[\bno8/}䖚d; = 1$ #5Xfgub+hVf,5,gO:E킫]D[FJQޟ2E#onڌvA26u Y|#z=쓛dPx_x a l+pwx, a :pX}w'v*]ޏN;5zWkxxa:@v}& "-`v F1 y'P4 I``H.ކ3Q*Ow; 7#q\^yffݝWvl >] y/R-7}gJ"6|)9_VBVS L1Nܣ1JΎgd';zxعJ6t(XA8%* TuJsO6_Th@ÈU ]eKL_2 u"T;IVL~{ĝ~ ʠ[4 mlJ@Z1IH֚ʴ^Z[=d YΛT1%ju1G`Ur'6p7#K@#te}2D7%Go9^ y%*缹hE߶:/\ fdTEi]j8̷Tg[t`t˨g@GeJ_i(J$ZyBյ)E ?!3iD+1jvŏ9)/XD1+!#~<^]||e aI ]`9*i~ƫ'Ѣh'2 R>!(P&`_S7,;^ s[#^9eꕴݍʲR$IġlIe\=هk=')Mم'A0]m&RE:;pMbZ޸_&w3egncӾѳOIK:f}*0goKKkdn O׽䭣ZOQP>6!~ױ(^S9d\q'oSE–8}1f[b%N;iEmfSKBBz L~4ص'OAّ OL8F?vVNp{v(eoUD>,(iQ)CõIx=5#< hén'mKGAa/qk3wXĜ\dɹ_j]*V4HkK""X̝'O*@_/7iiEBA?X1F3#,?"l椴JUHgzkOO2ph*L8?ma *7dA ʓ(ܝQ|S;NiNrFFBVDT>Io7,MVXĺHcK&tZ Q OJ+Ă`҈Q Dz^Cyl#aTh#gk?ki z"yh δjFca,}0Q_oW6߬Ft4B+?*ZY]Ǩ:`0:'8k<S$Ty+ ۜCewZLɯx?֙|2n iT\1/$ЉQ8 emZa. f|5bTvJܰ,1XA!.êNa5Ac-,)h`E\~R oncւj\14[B(0XJWQR_[U)5a+3wp:󥉎@RwimhYz?Y.";[;a̜q 3bf3fBOdm.T>.9 IԵbXdZq,%Դ! /kH 0G~u.>7rX":U L&twkR3< R;PZOglEa'лXC(oe>sfvX-Q}#.Y I2i,g#dOO[ũ(V>*C Q5WRM郗.455]ꉪ&؊07kJC쇫igUoފ!|Rg16gE^_Cw3S-JX:8$BX*R?]מZ鬒rJzǔ~Q\ F9nn(Zx ւA G8Jl.W9*E ?dB72Ն!Q(gkq}m")'huCDXn()r$[r}>oUaJ4>Q0dTCvD/2r4P]rۼ@w|p(FF ߟ>?NtLNpa(ɿER 4׊ 4.kJP  6,#ZBD3t߸@3B+҆Xw nIPv ؚm.yG- [+|~gKiKd K:cECta@M&,T WH`Ē p zZ{ĈtEӊJVHu2\#j%ܘ<  fSp*WJx>PX[L$̸ Y#uzC]x|mԝЊ Vz,`r_,a!BCϖ8'~I) -Htf@M@%8Ac-x$s2>/Lq»K ]W$Ѡcشy{1?OU/au>.%5n&SW1<V'X"~ ɬwb= UD!$TxYBdx}:@#Qú,Z' S/Wjd"0]|˴pH(7HÍ3濥-Y共NQ98ҭ]8A3v;.ذl9!F?3l),׃)Ou#_Yk܏[BbvX@^P5xl{UɽpkZ-1,yX$?Buc~ "lMQ3$'80v-G*^-fqGbF&G2e8ɧhކMD E€x~S/;ؑ`t%M']= z6P9A`yC'Y~٣v6A$S:`&#%PƳF eq0Bih' :6JU6ilYhlP<ܰ : 3k* ai0To|^[&䅜ւ5؎Tjm`hiJJyr~BvI#or_m1oM=_G9H{T_ecj&Ѳ):K}L8eoUl#ЎӚ7 bA S2 i0wsɭ|4s3ˊ߶n4Yy啥 9 q2VA晶ڭlC( 5n[r}efbDs3ݎ4 Q{@zEpb#.]$?Qp+ /9RrkR"is: Ǡ=& Cמ}M6+X;d\$冓qB=C6:kXpB=D Rϑs n>Ꮱ.2z^4i [ hsd3PJg {š^tۿ렌‰uKhN(r]UnqR/_+jBeEWv.eU=`!Ltzt{-̩E.!w?(LTTe4ePA5G 0}V'oy8\P1Ž$fqsRNAs6}~QmÌ& mVj +ڇ?xZɠY,2+~5R6N:zs:)Y?C jwuon\+]ղڦkbtTsCl~gt#ZB[m3Օ"ڱO798tyھYgo;#'ȿ{LkP>xDA:=-޾ n~E+zoX j`yexRè5i3`Dg{t 1XSGeWܣ-4gzϒ]ۭ|^ v XfyFOd;-9!C$%8 XI@H~ҎF5 Iq Zzt#:n),qtJIcWFɐ#|u{K Qp<7ƿah$ȑ5!wk g) = M14OH,"kֿ9+d y)4(Ҿ }u \UUЬuk´Ywk 2" pa+u K1[D'FvaoCÂ#r=Kaiӭ" ]0HVefbca-g1DL Ϧfܷ_~[ܾ Fu꟬ke wXq́,D' 3v ;@ߔEqFRf#\t9#ۉB#OhR\\St*ߦ5mR;5W'/:ŴOhIdAoT1x8pI5‰VhI"2d?X”=ag6f-Tl-'QfZ̦rWePThdZULT!aF/[87%yCwSb3^ԛD*}]=j:dCA l5i|ZJ eEeH*cjEi_+= {\*=@I72gs[1jyGO @7_/@WampF᧒"%cadT$>քRV{BGVU.powt#MY#i= @. H+hl"2h$AD3Ss\c=.uV%,n1yTKnWq(&4>oDѴN2ro]rBH-ie)awQ02O`/cq\= ]P [3 G*$\)[ D]iX6i3K%$:NHV}, w|_k[<$ϬƭHrg=rTnCUY[rQ92CZf_38V D^TiEaT쵸rѓ&iGW[U?sWՓ\( iA#oO l EojBLmHM%GMO.j5! },<: 뵒H n ID;] FYz=5pWY#Iυ56 R3g+[or-9@R!Wܣ @ do]E}3w_yYgSg/tʲPgHm@ >A!rpu ȼj@Đ>p<!s`s8$/Iݢ M:h3 /+ʹ+ 1_!3A<GBʊϣcÆ%n7-oZ-' S[n1<<  m:LC p_݌p,b;m&-}ZvMK-rku?u*u[foHQÿT:* Ļ ӖOKTg=<]*A;& :vo>2 Ts*;6ŏ;J'sUj2迶|4E\ aO )Ht:O 2mmy!ž-Fݷ|;c7-4t A=gܹ3Л.W1>mBO9?HGqmN[BUY eߔ]#"Nc`_^Ѫђ?@:](Q?]HdpȒk%Vh{NJ}SVZ|oL,6,Fm`͘U;OGPKm(u4_^ɰJ̙/#$pXAY}͜!r#IC-ya.L;Z|sV3ÕTLFA 6 |,I(8"\,&m>t,zȞʁyQ6ɍkdx3`"G-YV rKdo+ ҄Tg ?[鹔=}u 9)CgodsA̓_Ug}[*FW1D$9'ESO94eC"R*SopAe+(WJrs r&bg;O-2zx#urQ-K+'VYIBw{L_$$/n.sW4E ӏ[[ ^@L!#ַ[s9NaȪ5pѤɾj%߆cmh" Ue?XEKmk>BRQOטNtAw_X! b nAчvwȐQ\J1o'+_TK,44O~B%D.ρ)̶du~ϙprxs@7w5sw>: T;5ΌHؾ!^rpr#-`~]vr wuS0:HFiWBn)jGd4MmB,JXqڝfubTR/>Eo9?QqϹQwcmDs_BRܐ_|-A%xr3ǴŹ3CbmdK`}U%}@vnNu$m쩄2 RNsL-̬Y.s+ Ś[^KA)S7KRm@ս2mu38=w:Pss.!`$:rM2r?ꍧgt/+-$56gҾP>Ҍ |ǧD$VgkS|#}e(h%ܥ5AZ[?U] )ٶXޕ[2DtVGշ}*PF`S )5U):oVk7ǨuC8$ c{GU0 mc/Gd(-4x/fwcqqO8yώv)DMλ1הE,]'J?VZůQLr+4>%| ?J 0 |M^žy(߸8M]9ݣv KtAirix&DjW<ib3>}E|Et";V*# @ܦǟon^<|fUΡ؁//,ӔWO@A{zn:i?j'1i>]W/Չ8]|ӮʓtI϶/ɡ' '"ߌFȗoIp>pmDU= Xw(3 ܧS%}c'ǡzHWCsR[d+܃~x G?= Nig{Gnm k~؞(PriIɗ*rsRݑ'Ȣ!; WS&7(zEl;'o˺I_=)vs|ժ|Ovy 5zu 6P{ ͭKu-B;#ʼn*(z_H~8_/ɰ,k\t&HnM);yAyo@!ŧt{8!w[uNBv2umQ! ud"~<=΂`-Ip7˿MQ}}19o}`.uIi=ݫZ,5'|o R-_w.E K/K ~߸X\M/ 7zQ?[Ce@6|v'47Y*%p%ON?mI2AGH]k2^}m%۸QuA[q#eݛ ׾^suxE{ ª'?UEQ5zyu륑pO*fCn l}`l3h S12!D׿@ Թ#u.℞Mnfbz xa{~7^?G=o\@gd&'4T\`INU" O:D%7?tBLrX nߑvx>=3B/ݷ[gJjǭ{Oj\r{BCi TtP Y\7qV*6Hmla_mKkWǔl!_H>&脪doqLubQAg1Z*FN#R"Zyx2[2KF%L\*e=դ<@Oe40 K:nDGEg6`&cEͤl ~CG@` 1D#G7f>,Q[O$ {൜!2?ZUG\lo{(ؐbx:H {[iL3Mrnn[>NwvW, _)s~UĬPzS,O%H"ݾ:{zs֥0IEI: ;u_gn2R,]Q"Z4 [4??39q2F`7?S&LYTD쭇@\41o*d7Z8 Vh?4:3Zch{,hj8;CJ1QrLaA~>ZesgRK}\:z㴶aKtOl[ .X\:j&S+oj?ڄ,cG퐢7  Oa,+L1D4d#:_3Z8; t6{2n- Rɦ8{*hlԣ@NAđʌ`|\pJ%,D̝zf9RwE<4L%$̣a "OcUx_KQ!@)1%¾m-ۗArG}L]C6v{ eIuN阆GȰ勢[uϥ*,nS*7.M1d\J'U-vM0As}e-iurՎ q_4J 5nz;林П IrC63x7Z}vEFȨp W'红7NP&_I!UH-Pr 7Vr0sƍ˵IΠ2,#zY~H C-blb$ ^Scqu`=GN2@|zQ;x9_`o6 Pqz\opWQ%L/h6Crר0/dII4.:NjaTXk>*=B"˝1='oc)JuG,dh唂C~orדr;CM'lb^<β! > [ݡ8rv' RrdlnV>6WXS{$t͞%}AC ы<^8b IV3*+)[8;!1 \nZ0{Γe)/W!?>&(փ1tr˪)xFw}ދS;}BĥudfS.RU01dFqp%> G$JH#ƊWOdq8s_IcOT80Cc$j߆y3K\rwI |Ub5{^&ky2n1$a]:bH:t<^l<$'V](2/W`XS)pS̰6S+K XhJB)1'!)H}QApÕ/әqb&12N4L'#kMdq̚'Rx`JI wgB؎2?OυxCi$e6тm4$0OD/0@NsĎQoKvۈ2Y'Pjh@ega%g_D h_k06snbٔۖշ+EqSv˘kmr]!ڤt<%]}9Zbbn,^,fW3ǂ F L8`[f>Q& GϦ`AB/" Tbek}pɹ"K7L)~ez7gQ5؇\wAE58 ߀bi;R&.UiFYH;KFZS&k}iVmz'34.)wEO Q\krjZi-1Z"0Ӽ%ʃq.ݦ@g$@TECL,Pp u?8;Сx$AV  kK?a+8\rѱ۞d|Őwan,&|l?jB?a= #sDʥ8t{mrX 9s 4hE0 v銸K:Rͬ&n*fqDlJ;i|n~noh i^ DJ% {`GDK"~x>BU2_>ah-ls0˫^FG.ѕevgz_P{?J"*|߼tFqZ"r•!>^+M9zzϮ } ]Vy11Hp,0_/LPY4r#mtZY;'+^d3:`ضkU opEQERv|~j]*FC oa9y$6JkBuϞ͓M+j{@NR[8տ~P7>5 AM%)L tRAwl~_nH76:7rg2 )W w%9Ānʫ42ac F  -j 1#Q~ kL~̌(dc啪JN=z &v}Y%30@rVx]e' mܩť5M@jΎ.!,]T2w7N7;"sJsyv(0,$V޴}8X&sN5wk #d'/1'yLqĢ&Ha:jX6Ǽr WCYڥ05ФLxg%>k&V!{UCk"vO'Jڍ{| 8j"-DM- !r7/*BΤN|yrIxsȃU%I-XB5Ft&Y1ǯeyXߤ:їR) ~U(>œkyyA(=D Ɩ|f<,dLu%\dE]-5Ìg~OM@kGj|{MLًXqCsc(nI>!۰S)⭻=fKM6úȣ[QːޟnEb I^*.tQ|7PnUNnHDbz^ m dx\$vHMU~/\FJ1g<6B7\7([奴 J91hJi«$'^(,y$Dr"#R+XyZ.f|uwǔqIĊ8-&RJMF:0y"(l1Kgqa2{ eD:j$%ci, Pg$o<2yv5jZ!a}ȡE O}H,E'Y?V o'aMDor_! *EkoY{R5IChOh)qFܵ>^ڡüO7bYcQ DD髆r< `ZR^fjs]@T݁It|5VH)/79 >{]r!aZ=mk= :U,cth:iGL!lzTiVɳ]}>#$3dVp[^nէ}/H#\i &:gK9uA 4eQU% +7]VRɄԔLe^f0%P_pkoJ;> S_{J 3>3<`} L9)YfpOeQ$M$gixD.}6Ce l-OwC]K3J͏~LvW=E@9Ψl`7j%ڒd2HЗ qfE|S5[kw9aѰM),;"0|)뗠_X5.Xʈh6\?kZ)ˏ5}%G$#x)[Yi\(嗾3#h C xǒ%L&j{!#,N )$sO.WUJ2c "04N~&#? RD Is03RyNHL_k02\z'?|! &kwYp',,D*Qe+LQ[=N; L:8x$F|{?e twTU(J%.jÁůcg20vl]C^s# 4-^![٪c _G^G3Gz![Z@J, hj_Jjkق{\ 1նwr`j)Xp97FКBUqBX% wxhuaՃ囮 {~g;w ^?Ώ HY>fS #הsx$aQk'ovXEOϺ'-- ތCYBz ^j-!6zJs[d"q1{+ƀyGw3eͲ]Y@dIjA,~7=m 'ވ5%p'T:6 0P ~8m_) 20L!ŏWB™f^2l U~w~1)Ѹƪ2iG7 ~+mw:{?`O;i," FXFO$Ru4ȉPFŋy{@ުޟУD7:1|\'Je'E"8 tP뾽9.&n1f+mOP#2(7ZS'yKQJ̎:h9Bz#%/iqV*G]mxxL?;'1RBpn~kL ].WW6Omp~h@p@]Zv((#dmv†~d7oe,ATT2,3Y⶘\D!Q?Al %vt#lbd_zH{vccY@EZp#u JzwDUGS\nEP59qֳk9KlKV;Hy- 0ϒ+;jRةpc;PooLzeQn!=a?G8-IgdP>\v] X U+33; tuu]%m#ld_lrE5CUN"X-Wؔ언 2 P(@Fz=0?(!j_Q]eba}^*,(} (qF<";[D:3xb eEэL^V*tmw"4 >k-CoTe׈(`$(PԚ"{z0tye7]u_ Mڠ'/<0Ąz?\2ۯqk&QsSy-CR ttai~=hh iUڦc#8b.kp;'9Q&㤻]E!*aza(B >6\e-ːn`F)sd=詼yf4gWN[}oNsD o]S >%DϐfD^~CI'< {h,#,,F]z.YN!cy!25hoU1 =z7 N+"AxLe\©P -. :` B|/3G O \3` x@"7P: tQ4ł , Ps {1_|D[i}oVEm={2m(*?3qa͛Di$t Z5Cz?/52żNOZ/*uj#N]IN=A=T MS}͓W2k 1_?? WVrraPYnLE5:4n @U,L( 5tמ w|8֚A$ci3[xDcE@/Qu "^q؝*Adv;I`5G,x{;3#û\9ȬᮯΜ%D}3ptKDGκGim+X]!/hk}[>3ҔO+&_O&q)x31z l]tȵWv!|$Q⌧it f\B~O*Ւcȸ?J ò rуb tVR4-+AxhӶPI %q |__K\Džp^{N*.5ሾXLPܗyK rBοHҲHζ[]߲G s/Mw5 3npitd4cE #I\O8 /L %t /N:A 4d4iX9tzf޸I],m_8!#k\<ʴc2M~1}Ôˈ4ԌuU'^~0lf$8ݾaS^`u/l3ІԹH6l!]cbj5o+L"BA M-sܱX&n' tΏN Gqٿ$ ˧p9{-+^H??ma^XOEe!0&G ;=M?"|+[ZSc+}9-',q=#(uӑ^>}@uHJZ+ r݆N`$u9Ib:Kŕ;[8U6_R%f,9%e2 8@O2:qCO2 OS|zz٬҃w"5(#nQBgY YQ]vdRz"fFqM#(^@FhIg=VԽ0X ө4Y b͆K7Թx =C0y$TF__,`,5dlN7d{Mc_MP $NB)Zqk%1mijxzTY78~~.α!!G"Љ2@ )4֑Õ?!HI֜E% >e^` .'|xW}s(\uOmzCY𻨵`L/..tIwaåLdxV4bRZ %W䧦z_bs5giJ#qdP7Z,JQL\=H ON6BN3 1B <+ AHYlm{АD(]7f]S[|:1tGlw4{^P5߆!/5yܷaa_G! KPZ! _2.eum>i)t]S >Aˏ3`*>GmMZa[gO炕Xnb\+F%cQEä_*Ni:țssu >;=5r$+2?̠lu*[mk#CAX(Sh =]h\v>P8͔JHKfsm&(٬N>wRU"FPAg>Rd?fɬP? 5鑇 K/.R G^ix+<Um}m'G>|_`h(5d(sUoC %Ez!+ϋVC։ 'ߤJ^0]qS{n~NZsN p:|D#~۩-I;c1BoR;?b:UhPV \/Z S],.<%DT8-77L&\n ,g5p0_&4amsP^2;V^Vྭ=d2A~-Rܹ:1pT8 ۭ3GqBN- Gy9CbE[ /O/%x"~ K4qMxq2φzzΜ+kaWتWrHE,YSde~r5½5}#>f^G({7Yu:=Ug9b;7M=,3NLf )c7{<jWoӫ4yJ]ݬO|%y;6y6>>jm{mR~[q}GbI ~2 ݔ)gi<b`?;\'#,}läyԋߛ.fglQ-#=aahnKzkh(=hbkg. s1tK9v$N60W"h'_56fumvC. ?EnnixȐŕj5ܾTkyHw+!PƏRΆeW #{X q 2^Vy}~ zT팬:9) Sc ?bϞVxۄdUX;P\D@a:q][)|A2v7TC}U{ C)~=߯?Hjiwn0/ f-1&t[ t /'MP/:/CF=^Nc:.Σ BSvӀ6q`-aNZ1wU=yAr> z_ma?ؠp [LV8iexh17cQy;wL* WP$]ʮPrL߂gigk ,쨭>Fh׾^H^@ʸCkPHVn5BWc8lc^US:D_d%p)Knpo_}F,T(7ۓZu* %I>䄓rV7.;;[*Yet-k7|1IQƉu3v?Q&-+[4*rי,-rL0t؀F` ?g F]<6 z@RS*Q?"&'K&<A6+M6plX|1rS!wI3 @u?TV3/\l+ُt8 2֗qVL)&SO9txO- L~;IgA82~=Lښ&D 87QP^~ySf ax\|<#(~K<sS'&au@(C;Fw(#fEͩE HoC̋ iE+-['>w"!o9hM\Y\+~GFu[IXF,"B"m #ؘ7"yZzj*/.0c7uv>-tXa5QJ곤<dsI $xRlY.U1"p/V.. Øb}!j.fΩGL"wKhՏ+,+G?ufi߭V<ˁ. d JTǥ71pt>>( {J' =Ґ%#_1ѺY,='NvG/g4g̸ =2"BFWcrpy]m[6ȽD&gMB^3:5B$|91s"2xDxy섂VA5i ̚)H8q0sm7)k?~xg%!S]Z@F[i.LO<.Rlwԝ*Q_e ʿ@uK o=Xea/-ຟQi[:B-"grVGv=) gהfq:r4ǂٖ`1Km5h'D@cY,]NS&J_xieG;uISr#g o2r$4t)*Zkq!)?}Ŝ=QZȍL4eqrQVg/\+oLږ _I!(|UHڡ>b#Qћ"{D3R zw Q ]?~1t)N O^eH؛KZpl"nwzmѿr,[@9ouF|LDYjUz,ћ}~oUֲ,_ā0`(ܐjXvS/X$[?{j^FKv//>6wQT(Nam-eS,{`>RBcUs"k5x tuY57^ܿ/i@!a1b׮[.v+=ͽ=5'STwvKl~uD=;w#1Nv} [%:9>|.队B;a|W[{68P~JD v8)l*_#) ;\UmmnGH0$vE;~ǫThL}FeV&;ЇgU nÜZ6j:ť`tϞ~1R D$Exד|=( K37n"d Lp 4zS-ݢ;f+P"ha8pܷ ˘ O:BS qFDbz<Ǣɤ~5F ]aNF[! ֈM[Ӫ .,ixYoK݈{geGLu6y/ˑ>qnNFMj8. :YP#}}k\żgiyj!K~)y.ؕQ{9RgarA_$C*[ : ])J&xp 2E+Qb+1mprҔ| h"m lcx2{1z߀w1Oam|G\&֬~`Y$s^v+3rۋD pZT4Сq''XXo\ abޥ!I"AĜp̅g1QG^MV_\@h ԚӃZ@p7^t 8u6xABŇ)?5Y! WV}Ej?<TR_pwL#*xIB(~#r ng4hG@'͕YWCVL I!' #i{{#]o~wTmxŇ KJ]|n:W`(m&+"M*s#\ ؑNԈuɼY֒.ۯ WGo(^ȀkIgM◎J6QΡ Yeh=qd bGkX_59U``[ը"ߋzz\/z肾Dhbn.izY !ҡgZ3A/Zs$tw0gS7:KXR9X[9JcYh1?3P=PBȶ@oU3 v G{Z,eV%)BG"Lj.і/f~7Cu,k~zK9_n||̡l^>c?:wKYu|jN.0rwW-q+KBpdqtF{V~ $̭Ph}q7KlXr= `ݱAdp?N\Rmz]`jD[] q݀ҎsYhhDHL*SdG6Z(A+YZ*;I4lq8l< v&AK(yݛv}& Rq s)Xd ٸ RlX6I{6q N1zڐF/Ϣ IWzʷ4􀽝aM7拤aWZ_@Gz9OhieN ů#S_oGgK td%@ )z{*z-cm. <Ⲥ2b$78qaL+-!?癵yC j CM]Z/̓S5j^sjΔuI}]'ZeH*%Rh*@;2L~p`Nm=IW%*)?IA@Qׯ!(0[<^=n3ÙWA%L'ਰ½7|L3 Rp(÷1(ŸPU;D6oʯy 2@1D hĵD2  <7L6WUt4/oȡgeGbB.76-l kH\ %&Y%ʉC6.۱6/anMml/bp! Q)L>Q}F$V/4'Uc2"pF34?jXd0p胝E_Ο6ٳy#}֯SH ݳZڔE^`ϵNwU*HJjjL,ܷ:|\k#Q_C⯒Jr- T: M[5lT)} Sn][^&Øu+onM`C@F 1Ր0gRW/ͫㄤ7fD$vPd+Ͻ$Z^ J}\EdiL]Flk`yw.۩8n]oEߘѩ'w'2jKpE(k#eP4x;b#w5Qբudz N"ԸR=jbݬeK ` 0bǜpˊh#)tgmOqOkpoD^EF̑zP/\vy/[F5">h|٬ 3JN$ K1.O{P_@Чxk1R1?BMM֔#TaGZGa{Ik55V٘~\8Q@`lȎk1`t; x#M-쬆t! Xy,VY]Z/URv.S+,㷮K[͹-w?*KuQe{N1J keKqɀ:Z VI–$)a'& MM')Gyj;T޷kJUC t$( xj6@bScTt4=h>l?5VPs6)䆽E([C~6"!yR.}dHp2oAQ {'/v&|T9۴P ȩs/]Aa7h3̍gtۙS1S/>1G!T7^;Ƌ|>l1SU :bß\1%2َ1-޾jظǹf_w2Omb!k6+mVԼWLϾ!ɑҹs C dґ<yj*RC2Q!z{ZG"[K=q+>7;~(kp<'"`'4z>:i|3^Sόeou49^ Vb'iiܶ611ZEm3ZC]RbQ, VZ&{n] !7@P~vrYI<xT`ir}z^\Bh_$hK-Ɵ(Zy~u/0~Xj=wq\i_%P#!M@D]}z1.y2C``fY&z+{'b=d9Ly OLpB41l>'rX.v ФFwڲ=CԞ bADcFӧN#ۆR)ʸ~ #gSyuٕ=.+SK&0 z2Ec|/ pc'5pِqgplұ T ,fOXZ"f$txeA_*QAe]O.E*MCS4~Nc=Kb,zY>Vey=Հ7ǐVU剃i \˶ s.7? GÈ/@ɯFN ǵ>WwLá"зQ\5rhL۸I)!_\t1Ѥ)oyJ҉O`*̷\~`iaHD]F[DYLdq8yZY\ kHmV: :m5w˒*gcp?vINvA``UyP.:JD)iyw "EE_x?TorF4Mer톜.4B)I!r V ~࣬"DΩ?Ό[c'oY[rr9zxU'f(G`1"ZԼԇ2 gKI”+bFe>QNLWY՗S3-@Bd9p$,VϺ]')%tRn_ ޮ;j=CvݖO4!(.ȳT$Ẓ Sli#pGbId6ln];F:zM\6E8kSLWY.0to#dĨ_F'tD@Ǣ.`r8}1U+$LJA W#rԹsq7t3ˮOk,ڦ|o(*%[BֳV2=?1y/TzaBۿ-V@&RW3 Wh<~"_fӽoHP@Z퓁.=XQcpoQw'iηޟVEC]Ng}<66{A_ov1ED7W#QFc?W<;y"/̮ʊ奛Rf=\n16 kT}O6ŀc>+f>(TU#( sW B f??u<|HRѤ<'UN-Z3u 7 [d -CWϻNJc$M\5)^WҾ,[bEWG|/>'DgtӨ𐱶-[r)aǑ1rKgdוSj*"\*mtW5ĦQn>&biݒ?wma7?ϑF`# r,/8lBq-CN4a(vD<vOq:1 kD~r7F %HQM5kigSO>۶@>oBr_ K#C.UQ*C{93 aOl{QgT(U]; _É5 켵/x326RY؊iCJp-z췂*%IR +kbAH܄]vqL<X%t1㋜99:,빵8h~yy}1#wχ0'Hg+mT9^Ҿٶ<>8-,˛L:FC="&ZmiNr?YdE=?[MqHiYڴڒ_0pcٰ Ynu8 b(#цcPjIt*íSv̭nFa")Yb:0/F=.X 3X1pg%O#Y}udlIY'6P-? |w]ҟ+cQLeR{pi1:~#M|P|N<~wgUKlZHz1C.ZqӂzJ) R#jNzP52ċ܊$-8t|}z&B:)5 #mN-uʾ|wHk2=G?cdd0mʨ"{ *l ID^hɅE&Zy-_|Ml X|@coi%xGf_90ɍgRچ}bhS*F1,#ǿ ޗX%;o-f^J*NyO4hc)OO+(I +ֹG'ubag1fe:91<&7p>DocmDFNWdӮkC]QЬq&8Z_~c&?a8 7d4 3>@O qB< {'rKhSAY^hۥ!"q.|V@ m`gՍ ) I$T>[Dj u(^E𻎞j˷9ٌD} uD4KT렗Jw6,Y<?w]tXXDw哀c8֪OanZ/P2 ,6~E׾2bs"V  [پf~1>+e .TL;[kmLF#lZtsaоJG·OpK~GHJaTl.-} 1:]̉}P! e)Ǡ_Ӈ(4q:Zd>4hL`HKt}20IB8}ŋ(h4A䏉b6m/2آ_BGc |y zx|t <ۛcV󤊍u E,t_kDzVc:,4=ၷK"3v{RC=bT20 2­5nP=/MOóKWD5'܈pL!eC@W_b8`󇶝W&_6HQnLqF!vpB5H,`IW  ܽ7vr&yRu{=u|/KA껾^"BDzuw,G]n@SZ/,N^zX!PgQw D+˾6gM%VEu}V6鳫8Ugg!j?n<^`¯j \X:BjYNl}VZ+{%Wo@Կ&ielKUup';A#xA@CߒS; R8w=ʃf1 lgv= 6W(~BJA]->_J[3 0zt2JIV"pj4]=G]KI6* <d"5tTvgғ?BB‘LB:D]rԇBvoy:rXrCCcd Q Qi'~ gI[Ur#c<ffvÚԠ,J\×9#rn=;Rjq<&"j=Plts=Nh"##5 qqDꭄ`{ġAWb&縆r0'IU2r^y .$)wjvP Y"dw~iB-jV0TZQIFznM)"#ݬgZ?}K&\eA1{+>d7nIn L&c2}ws?Gヰڞѫn↔yf g1b"IXDQ "Fb`_bDp!Xʗ)Ez6dRׇ7X6Eiz/:dn䌋I7࣎PY\)vOB "7Gcn{tM~. =g EQZ 9G/碹c=WX 4ͿջwНC)-7#6=G,a}ki£zr夵'`*Ȱƨ7<-Z3Xk6mk^AgY6QjΗ=S7ca|o qwi9yaw7O{ VmŪCA,]ڇ_z:hA+NHSoLJċC`a$֊(ikDiS{ufE(O'8%T0f+EEUpb,_[OkpYy~[~Ao bg2J(" -R ӴbŃ=3~n#Tb=IFh E?;a3%+Д$~hB>4}|Sf*ggz.ZsОaPV ăd;Hd/J DG($-*7ֲKN!N_ä^K?NZRWf@?= }'fp@DVy(;e56;Y5:M(]N7% j[ LwS_.=.2A!QM(p5y/j6,\pL<"ka>JmwS ![_|oXI[ i0Ryac"7oniRL!ifc_l`Rvc0( u}h8fbwNyy f`96D $9 Ruڭ5 wYx"K]xZI+ >r;A(rb*a5%x0L!T ECc#x5>z1|t؛|?ŗ^|wf6&Pg] x &(oR7iDit2̀^#*Ack"a=s`OGlo*(fϒbM~nό^/h2TE hj eʫST@$ODXqHū:[2KExwmBQr`iri{<qR7e 2g^y5?r}D jv,=m/WB`LxRʧ;kxYK ] 0/9CCsP!RV4+-~nq}'X "-xHV†I 9m:?s9(9]oL=>P nVOFĊd8ݠY–"oT+t;4'Br2W!« *5nҜ$'C'.(ri HóTF &/r=ׁkf1F$6UHx|Xu nJc_| >?u$#kBA-` ꪊSߝ㹓X/%Zs8{_mcሄ02Zd f  4foRs 2 T_㿇l2djy(2%>U/I_ =Bc-{Y ./eY]FҸ9WA;a`4hl e ~(eo9^hs@+vXda<//>h#s avW)y< Rx3o/`(]n&T Rp)J;^?uzY/0̗E(B rJ|a[\⩳~ \[ZMPI#pj;ӧ|#"(au&PRB bzu k6quP禭tL3=/=eo|,v~hRQ|SMqvByhDZ޶#b.w><`Wû}^=x#q,P׋$f[W`2Z ;l*+(4 eY9u@ ʸkQȿKGu${ְ8 ""wF#zbQIGA:r}j׷Q}`U;`a 4Mѩт>w}ȍ|b5i۹I#DBff{WL'"=jA{MXF.A搲EȴS<7 {]d` 7K(|h&"βK8%D;ȱ?^4;=!O!&h].+~Fc=9ߦ-Q8|-Wa?㻮dfnI07[zo %z햬wN3*N-uynOdrIA.1!@Oҁb0x Y.#%4%5S-d?t5y6REw-9ҋv>"L= .ztX'I$_Xp{oSUy!"E}aUE*Lj]Mv.A ҅aB\!ʕ6F XsKt3q3 ݽ S: %~aj|L4'quovBdFEjGk)?;'bQ۵نGă*k 2_,]-qw?yJY 90,KvP_vew+QMt2Pg򄚓xf NɎے@vsjК]>8e% 7J1ȎAeRk6 dSO;Y0\ta)Dnmt 9,Wnk6'mHm-dZ|u9K1Q_F66qI[}ْ|ϣS39ڹ*a( beYkQŤ3׋0cYТ0E`z63'ϔhiJNqӇ7x. ѪIFZZ^=JF3`eoI"l#vk=_5aFec f RWy^S s0Nn q,|*&7dM"8~d.J6&fib89֟jA] QX-K/?S qyXy3uSp`# RISb_Y|A!r L3x~Oo&+ ,p:jZnyl.VE O%Ґ1D,L? mld& O(|~}v%_?(OB -.(p`A}Jf)$6bL`:E5 `w_RrZ'ִm FA'f]8@AQQE]7z T{zùbYеZz!G8;^5%NCu^oUCjV@>_߹(|w3 {opl(;z eJS,mt6F)ʟ ;,^VfP DIzN_6PxbD;Bs Zŝ|Yt +Оd͋A7Y]x-B#p,Lbs5X4uҎb$g}rIW|ɁmS?-BUαzH9ǵ]Θb0Ɲk[lvIG6'/66/rexpmꨭB]xw%@C^3TP n nr5t:7s=Ԕv*n-˻kΏJϮlֱP)+ 1~Y"P*s;+Q#d" 󼛻ЗIf&ԉ-Տrz8bR2 E'Q pўqR8~`j&LR0 ޑH}+vo* 'y5!6+ߙ.Oݏj_aT(J1Ck7b~K Ci'>`xI]}/_MbiŒ%S(|&ec$)}onq kbs[ l{WTz h#úm 0&c@k:vIDɈ>۹! F/r5L\v0eMUHTvsve"l8 v eK}lrNy.4"Xu8Ċr:4Ur1Kۿ:5T?d6P=g A߭k g ! fLa&, sVw4fj_BB2r, ҥ.~;S]+FD+bB(Q*[mL-WEO3j#>F;͊kjwL1 LSٷVջdhkvk0$촿T וFw٦g/CG.i.z7yIv\; { qfT3bA9N4QָL9ǽ'ߴQy[0ᲮUaP5 }M֮]C,QNjXRhmi+j3@V20 ]ndѬqĥu Gn&w Ȅ5’^h~92ۻnF'<֔}q}(b9=vYHq F7H}sgi<@g&Ju?BJ8TV@1|#BEZ)GK鎕O=x-aC{~MgzMt=beR6MLb&v,7j<z=K8AJV~w& c@lEU'!bH̆Ji+̍I5-p1꼓)NGWxL\y%?b@m ` &(n"k_]),Sդyc xQpYzQQ˕Iݑ_^z^Sv:鐃"VRfhʆDBB%)ndvu#1TKX;«) 'ne +y7sSw}'p=0Vuq ) xPm>Áw)]NOD"M=-QFjsIFdžUqM_YVxf Ld4~'K iZ;rI ڕmw3R &M]x87;ISia3_ ٭ *[b;L0`g5O?ta~x<}5aKn$O;&  -+fmr"LV}c:ByO^($w_]Ow/ʒ':ꑮXޫ#& BK=~A }Z;R k;Fx }Q8_\c[I>7h+$ u&s@uh7FaVfK-=÷}۲ѿ"yiݫ#V-H+J Pp&O (Ul_3i0 q2D\F<eUs XuU .T RsF߿¸4|83@h:Dq*GOrRƵjn4$Xvd Dͯ1 _ߝ5w,pXz#.(Z%^Q^t&h&#}LH2a~uf^rlR[~E.-d3G-oN>k5"wRmԯ_f S:Wgǰ pj4,ʰwzTo!e9>3t;پ~yڋdjpRPf[eR%iW_u7H[Qg&SPdb/Q Als+c$ىMcjΔ\T8MØg94OV8isezE{ˍ &czgg0ڲȜ,d_M;bHLtºC(ˊ!AԪbU %폵0VWDn%Y*8D$sq.$UE2uF}YBK]|XgDiU #F#5=OMc,IFZ=䛥9wĀWYpDd,פQVl,Y0uoιZI+)^C!\n?C9S)4J;CݗZG[Xgxb4O[19T&uѐġ5.Ӣaޯpe_(3+@; ROX6!Zn0"L<~lO&=mAw+yU~~% Nr[%u`&xG#=eGɹs}AQ}5SiaR:N1)3fRYVgj3hɒ]̦1)Vw =;>] 1(ԭdDd. /ޛ8Qrq'$띮u{;1|˖П[AH[B,o-X-y@, 8&x)05I;V0mybe0\{&ܨD&ġJ6q4kSm܌M91hgTKQ9hԋt9X!+\!ȧRLd vr] \^2@ao?7dY!U;qScT g\|b4ޝ Pk,նUv8$uVI:opmV)*Z X†L$Cc#L9|}n7($}E~-⅘dD-ro|r;R` '~8,0&Vm&ll(q_ ?6̲}CkzN6QV BI5k 6/,d82[>0; gx1g }-]M4=0¾`lAo͕k}[aPT, sk&=l-&KƸnYuG6!%fi'^)Iqp*RVH-W=<[:X~lVaDL[*3TyIT2q]+h8>ϦF{9f|e{"2~A]`W 5`gPK.6[O29: "/1]&W!qzWA (lzZb1x׊ =^{t;;otԲ+ uA79Y42٪qg?N1@P:!aטi\>7z}-sڰ3E[ czM%Ivc5 i)-H&R]fqx?A3K}@t% aS7Բ⣣8op{Yc'nHd!*j=`ܚ,n<Ji )IѩV4:\cyic=qXbm\Irb*4s.17=A? +(Z.{/ʀhc(_(X B4>b`W rL1Q.bgbi^jw\haF+8?'fu!cCFfEay%w"ʬ29XM=ap.`I^PP?~ZWgQis\Ɋ-cͳq`QG%{ov ;R.xa/Ո$ւV1CPb'mn῁xOU<zM\\b>1Exh_>,dopjdؠJ?<`ZD /7o+[1A{XXsXGk]v"F[Gm=9{Ĕ9vQ:T?oXux̶P9btHAQ% 8썔|>U]4zM(:ӄ#!18!5bV ɕs&sv| ^׷4:C*|82ԚmSYk9ndkd+$:N"]S_|qPbAdrD ,AZGl\φxo`7̶v6+"2U1*[BkhFg/{ GTAg^-t!ӳc֞JN ŜZ\<Nt;V^~ONYed*H8?lw՚)NvSVP0i=q\bM6Xt9- !sթ=v'9vµ=* * Ƈ"IE)~遊=閉~7^S8Wm ڦUDy{P?yS5z3x VRFPtS6\3|Yt(aРj_'ao)KNҤҸp%3Kc>_pǬUye΢7Y؏r^16.)vShR%D!aIzi18H/K o؜r=6 r"hf@tVLd)ǚ ^&mF?,]Cs*B3(W!Nii= ٪S`8珯)Kxڕ_7`H=b{dAM\Wi*fChO;3=ٔ1+R f6OQIZ05L͆ź[%wqfR·F~IC pEFd?݊p*['<{[aP%zIN?e߻wfBjnZͷKsHlj )J\@ a`6e8ץRiGh9@:[ߐ2$P򊌥0Erkl$mz!5G|oTl=9%c}tBXq@)):4C52J}]0E &6$gb!J&.筌wn޻N2iΩ|O;=Y_5pp&-:3 {ȚbӞby䖪gWCiIPx3vl?qj9hۧb6ƂfF(6-vեI|˚v1tGG$.5d8h"e--ֳ}la71ZEtWFk)8, VvQ*(P! tKs1V C5aiV|AU 5g`7#( 5꠮^q!ek:KpzI?25CqS9K-cΏ*NnM~L|e" }ۧ54woӰ\6AƮ:\+MJRȌa_3ԒiM)5-fCIncHG`]>>Tꦂ)EmҏW; 3R y-o b_y?bJyP3)3V0eJ"ShOY~mbKH+ӭo\HV_.90:U.FUP U.<ѐ2|qgs̀$ iHqZU/) 49ZO zUY Kkxb"MϼҲ;6tAUw#<6I"#4=g>6yXj2ly٦–K30cwWFD{mg}]*ɿT0펀= rs8K1}٩vl8NATm.8ܔUQںfz\ɮ(X\Fd8@@%FTևAYēc+KzVsK?m~ h9N;ijŞw#1uf4hܮPiz7->Zg3SfDɏ ˴e*eLDɷ N*1A 7 /*Uy(QIȰA+BX喻Rĉ\zmK@4'W. Zgt)ڀ,qO vÞ#*̢n3- aGBKajZM]/ۖQ}Z>DV}\72~,)6t#l0dTF8 bU|NZ;!;HB6TWG;&(g* gp^`Y}7"01QMBb7RV$s/.7b[(FESq5:ypa예GoPKesL+4 O֖ΨԌ/STFGe0dT&Ɗ;N2!`^/E7)oSazs˄[Kd#U= i<LjV4#ݲA N҆%E$`k! I;ן˦i?Ͼ@%3bRLL3\-Kk-TjvuD9IP7hB0=Z(3ų:+E )% d[#Gh&&E ѠHHajS)xA5kH:B4! a"đia񛄒7=Rƶ̄N 'xHߞ1Ǥb+4 dp_W8,. _!8,!2u*٠D=j ?g%?hl4.?_ ^>yp_-^]4[( vSpIe`HiKm'W]4$fn3f# I (+W+8W! h"SFhk{K%2-JLZ/hyN&8Ә"#"ҋ$d5e"^p48vZejU*}# Hw-8Cйⵑ,c!5;4a(VtY v`9 ;$O񋬭&d{48p[,VG/IIP+qVf-h JGg0a20쑇9xur8uM"R5D/g;mcfzd?* =kW'`L # 鏦s`7`_FnA7N&]ZJ4FKy&T8 Qڅ0CMv|YqeRRRY18̓ ğה+i] \)U0>K Pžӿ{%U?^<ÊAq=@PTF1K52n[(KjE2)+Nat r`ޛo"HvZ*uQZR8q 7b_hQ UTۧ h .u$-Yd$m;9XA'Fn>%K龡?rxg,^o='\.M͘f-/ ֓hRV=.cH+R6RLE5,'!bC'L-ܶ+zV_M$݀JVuĀ%-2)POJ4s'Yz,Ik_72CLvt95nP6M_yz!g\O'ġ_Z G]Q"HHv%0{gcEk7&)0c ֢olElzȼ8J# UUDFVѺٵ=p~_dAqa D t:k­TRv_:) )"7M#==vxPaCV\cJԃ ^H$ք 6n g 3ϴI]-P~Yx>IoYL6]$l0^X YF_lJP@1 oHZ_`P 7~#\FB^S,~ B06n rޝb-fB}W"˥***&WBp-k*/j:ima"7뱍riؽ78pY/1$˝ D{,MEN ~0#z nʙyG*IE]r7 IPL <'ڮ0Ne[ @6$0C31)B OC@ $s)Ϣ|DXZR";˓W#zs9D qY?Pd:ֱ|K!0x❂/$q#?#NtFz2u[CȾ\( tLy NWӤJ/ Ǘ,3 :iĶqL͡y5J@Q"@BL2Qm1Vf`qZ-*}Ԕjl ]fgpVI8݅r|:"({GOʌ4vYxHtY'kM"g"*A t€ۗ1!kRQcVxл,,$fcT<%AJ&a>}tWR 4cEzQ*av{\A$Q/{u_VWFR(%*D +qZ/i迻[2{z6REćX_k`@!$ZHH{pJgTRjJs_KL}DdU  (WZ5 B!'w,w+u źB%F& m`7O68MIs8A".gw{&.F³Yo:b3êF;wA3\xErTp^PF5yV99s/Q0WOA\`Z}LzVNrg uw ظ&hܥe誣_m̥x;&zGĢM.sSg$7,MAuIйNw JVYӮ%[`ƞ`m/2(9-EY3sZ#\Tw$Q80mԶ;gKsPFJW"dhqٴDЂB'OƲ~]p4% Pcs6c!N[ @9dչJfO c ǂSx M;QRtvv_V L&A{iQQG^U.uw$4[=<qP+bvA  F[ (8Zl5Fp Vrs_ߘ#GNj?XdP]׊X Ca[㇗'j< 70F6P5;~:{roznVZTY1jV 2Ӫ3w'sHOV[F)'9.rcc֕]ns.GO-THMq$Hb$rb1Zmh~]%U/^˺O~ c F <K3$c.a=iY>S7ɗw [‰MWǎNleihbp WRX0 Wu@A7~2@m8,_b9]ջ^ 4s6=!-oO-{8N#^Fak\cy7`dkVilW^Lu)($+Crku*̬LhiSp1T9њ(p "G~c^S 9N ><}dϪ#u{VF&lg"xwE6zÑQYbYb 3#nn -ŒvìŖƬOg3PFH"g&(Q~Lǖ?aS<*Wi#ӿB!pOP;)`Զ|wֻ 4syFNl1D X<Э419Ó^1;"r'Ş-'~%j8@a2 _֔(% 4(|4 ,dI<Λn[5a|m|]o>2ewEl5kj Xc^DE^]cIw 8, /SaH]xs\tS:5|K#iQ2&D̦et.'<=Ry.t +PȣS4rhg-9Lڵ)F8>f>Ճ HA~a }Ù SJnIKyD^6Bj~v8Ia.|F ݙw]󕕾!,*Aj\ki0kWcrS:pDmlZBXo:*ȩ.۽^w֌FeF!8ZH2wQL/j}*D @Z\o/$̬q[?;/ࡊLSfG,*Gc}$-et:3R0|߃)Ju m9l\G'T~芲K.6e]]ڽ$!؟s7%&ԧ֠Fvoh݀V&…5< 9LT2K8`%P:Xg2>3DdWʠ&"ƁϫLVVvQXPdѓ" bwقgOVi’7C.usX`5 sމxVt`5d~mU]ڧH@ )(i ڋy MщO8`xAG޻*XaeQ0=HT2s13Ϭ0PrW+9ÆTE6 zW,Hr6C+5DnhNXȦkG>Լ=ތVԗpftcR(ȜR簅jJMQ'Q4Aէ+ʢ 7[Fq@rECMPgM |8 |l†Æzeɣb ]$A|GTsaT eI+Г!* @L]'B3D9%Vg|ā@:O$f3͕fkȆ,\/Җyc9|<LX5@z&Hq 6!ՋwI JfS_imޔ4ӄ^%d/Ǻv 9J$'~% 䐼K:<rJqY3gq Uz8H3N{)=n1!!l i'SH{MBMWʚt&v F>gM>JPezp=sftzHT1Q_ŗߣܼ9GJ8hfSN5O*Fa;g\y1H8X3[T;0Iw!SQgK#W6c.\ ?KO'N.wÿ^3jl]4 9Vo"<%̠耗BfCIg(O"#Fc렇z&fm *M?[jq{%dBt) V sԻ_] s]뤰8os) B8;vAVK\AIy0LjUtr w:_-xn2m)P,oS PQVYOm(b+_!vR'VS8gǝ#Hu괔hw<`y]ȩw8*T˔դDsz:La?e>Qm~!֝KFS~)tHӫU0v.9 P#J3xry.%h,SGݓMq +|^6"Vw\Ծa0B6{} l@Y>P-pĸ9]%rNN'sD -֭k{J(CaM֣Pe FOji`oo;Ȫ?fr◺ۼ2R>g8uC4`2 D&S1q!z|鐸MVW3!?KE_0wLsMx)YmF~7rzdЙH!ylBU}hXj<@+ e'76kKJPׯE F3ubr -񟏑2SJU76Z] ]kBPc?wIb-&zV=Q>#ҹ s20p Ė얖5RP:0UI6#hiyp4y0N}5ձ-tͰϔKpq2:V *NjRᆪ$r`(lXH_윪Pڨ` @Oߘv?Q$Z-P窒-ธQp} V؋Y:{Q4GsI?f'٬+ .xý.U%TbMKv(?vVtlQLkX-u d;8+6d*QS4rH"QHKGNg1v-rG"Qơ܉4" -x@}4*4/ 0hZlo}mu~YM#,kiz)TKoAZC!<4Mzn. U u&*x28͞\w&J}WC]{# wԵ2dZov^T.!kyzԥrD~Ijh| F!  ,nKcZs gHf1~`5Tx#j10r"$k<դ9D2d@ݾОmPeI"oWgl Pэ6Ղh5߸WOP*F3 W[94aH40\/ji5YșDVZe_d/Ol2&9[l+_#]b;u~+״nStqFfI%Og%9"ij!VGx8u>$K˱Ly)-01ݍ;8,$|4ROn(j4׫J6{Fk׭ m 9'Y,/ 4EMĸ1Eg/ьQfG*HO`H 咟9%T\3i (HồÄ^={_ڦ8a(RZB%9:pzi]H21]@7ه9 EܰT/rޖ@C ':r+FRW#ӆmS[Kͭ%#^-Q別ЩoXĤ G~?Y|pf)2@$oXG7[Bf OXA־)pbjcwa=f#YFcq4QQ{'Bpd/)6HCzUUH}ѯ?炎7Պ9L`zGmXrr}xsT:x)g@(=:]Mc[PRy)DsK$, MCM??$bCRdL\aI"' ?(M?4d =MgT=( K=Dw2nJJZhe5Mr|=x3k# nq;D%!Qү.~ߥGԒM@3)^w5ݨVv@oLF'L}V@4-w~`Ez$ D*Cac\{VJ1֫m7$dW#5*0HDpo`dq@Tvhr?ul<Ȟ:5^P\m2渘wQG@J& qrhYTq֙ըVl8Z{4akY;e2<IAj.2\j# d[F"yǒR)* 퉶bC'`C1&Re&fNj޵LV fO[NTKkWosmLj"=a[]o[LɌ*+Ѓc"Q,;9١Xr@ѐ“(xi"J0~ܳţ9}󾋄`**fKҜT?o/mS&qN""3K7ica 䓬pt-*,)h4'uhxLjf.Chorbgf3k?{5G`**ի38qU_ &F]~G%;c;>kfFJVSU;-W0s~=DmDa'7MgʉA &W̟?>_]~blW`7[ b79z!.OGqGP&IQp )zTr08uQɘ9+wj)~]%ZДV k[(E;eπ0N+O1$vz8ߓBhrJHR旦뺊,pnްB=@G~ݻ.pH,˘$2&(F %9Lg Ib>B1f1 j[88]_pqb%uck*Y=9:wnnNYtHȧBu'8*yqxl3{1'b|2&/mXEC:_aǶ[ː7[w|e>t8䣀iWmʁZ%qE#?bi]=Tv9B EL1I`ONPdۖ@" Њ[ Rjx ς 4qכuF*Ms5G5sirPM&1dd]DyN$/vj] ^j<@@ ez<M!_, IZm[B'5>eR9%CV%I +zr(ѭsbxL({EVHO,VUBD46=Sq}%"rsR[! a]omWaԴ4zʞ FNHSbwf+;^!ic[67*OڍTt]+DN,=q=< 9x4rx+[RZɥqꥳW6eŏ!L0f@/Jb%!,m5qae&`&0:tB2텿a6K<3> 0ʩlaG楣up,N(\{ cKiMF( СW$ސ˅[34%*,xwpa;M֥5S @%VDs⯘sMGS.sIԷEپaYj^ga!AU BlJxK$S]3joyaEVį[?WvP feI_jd]O}=B{{@lѴ#iZ^#w-~$6VO{ 빯_G5&#@۶ʠKC0r/E{yiR~7scAXqg09<"R^5kCLE UsǗ-p`Df($S-GKp lrN-r2p{>-uSD$%ad+EB?kJR9hUm Uo'! iA,;m,BLyL,<rsޮ7y _l:?]Vu(*% f:HY8\xpC75)LʀlҽDhI(t40"ߏn(:gY ZB%VrA^p}bO*';W3*+`> H;g.t$ Zax{Z2M,Rfhp#>U~Rw r=-] )nB;˓/]X1nZyB/wqXa2,X4klX 2ڎ₥i0ڀ%|$p ih9JCz+XhwIu% ocacP9ọ0vFVH~5 ]dJ!dGye(E:&T,C،ZkCV' \Cg>_Z륔?e'hd";[(˽6SkAC@W%Q)cbz3nŜ$fC\/R;}k7 ,wLzcywSoXsBA+) 0ѪT^Ϩ<26pGLhݕh#7*_#"u0uL_ǹ&Ah4`IsKcH9X-p&RQKvcz-!=/{y @(CrAv0,4I/@`^=[ 4[4 I$r肩͋6b{y'&n%męqɜ1|8֢;o7/e(NYNq*cUlt:6:c Az[(CKy;.%*𹛕Pc@՛ukOHX~m1kiNG| HٕN_q3+vTǓQP0#_9PcePٜ?uh,B ٙkSpXOJmeF˔F e^YA9yMcI[A@ðmÉ dWg;N}d~mQ`3Taș{ҘcX&ߢѸWݝjirlT\Dz<](0Qc!Y_ZgԂҲK6|K(ٗisEF_*Y~g[%$54d5BH+n=Ec{@t7?IU%*ThOՆq@I*QqJ.F[)8HfsG2/]tK$,bt$,*?rXGyc+" ˊt]dRkKc [n)V{]]:gz`RXLWt,0D(I!B796߹fTMAqf83 td/{2k,?ntBT'GA=mc (ۤ<(^j¦cp9b;I1J}1s(Fj;hM_y&҄ B+B|^ʳoILGDcb{ Cg_ 9fʮyfk~f]|!nP,ܧ"0Lq\EB-RpA9.ХLu8_ptӢo ]E0L,T(7׌?Kwv4XcPt$h9+:@6rqZ g^{Ll{wA5lZuRc-v䂃 Ԕ_oζSP:.ϝkĕ(pR|`4K"c7Ʌ?#Y7ymj}:`ȝޒ~K9mKeSZ4G5dm/Dz~$# ,4KERצ^w'T=[qle?m0)(CRK5e[*}P+`v0VV;?5綘[+g?aD"nJ%4FhLg4:5e Dk mbJӖd%Тq S'^SȖJ\hL]mi_W D~εjXrؿ, G2fg<{߈B T^& = |`1=Hj!A:6% JV>" nӉww8uIuӦNxW"K)lGg~\nE*(֨/@ ށXg-u7Yx7 vstn$fZ}]-NS"U]p Ug]1԰x@vP_iN^4&}8OcD B2u3p3$GK)Y)1C4G8V@. {"@SVELف|x6-wkr>,J`;D&unOƽ{7"GC gD5LTŤ:0:9Œ:SCR@ k+u:DХ0pNQUYpXFx9:ߤ"$N5 :~ ו,ljq1Vhn9#GHrE̳ NJ.I{Oq~}s]: WwNAX`sc"K-7 {=6 bDoaN-q /␾r81ojun5eɉ2WݸFwޒB?8yTzCY-z\Ք1lJzM6K? W9-8F I0`@ɻvb縷͡a)Np#gu_vv.8.@Z|'5(e;Vi#1!SJd UA< &V1zY,ϭ-~CU;oa3@k?yh![nA]{ %LU)W;0)BaSD%BȯeόK#s2F!WLC2ގobT~-;M;JXyeܝcPA`} ^C$x~@_u/Zb [wȥ9/dؠr? KDB_—;b7H]Onax{`{OB|%vHKhcqh?38B6N‘h8OtϢK'+tz0@໳&P9LCF*7,D<ݗ-DALO8Ie_;f{}.E^6'5>C)}G: -:LwLي]v) MUAr`K=;MuXDyySu b0-gkS!iS,Zcښ)d#)=S]vʳ* 'O|Gq%D5e򕴒vOX5/3,5 9:Jc( =ea?TNL@Fč䟿e0L]R~仩 '*)7>elZ]|okʎsrD()CҘ(.rXK'GxwVa- ΄4 =DHI^^wn o*w:aRMQ5((Ԛb v6@2 )I3!^-lO+SM\o=C~.3f /md5715ݬΛoe>, $. rҖʍ/Vҙ- y*!L\T!Iw$Sϙr '.o0?Icۑ59p8U.V AE. /M58@U_l' tx5צd!4 POOqw {gT A?HNUI\ZsM.F0ͅhVN<ӛNwmjimiwCfg?HlC_t⫮8vT/bɨ9HkJEbI%U6һtMzd#6jL˰BP*AI ze%klFKm%c?DjFd(~)Wo!J*'{wɐN\n|SL} ެf ?"~(+` Gf9&QI8# *(/jojRu 4ڃ2[~~|ԓJd.;Ynz VnLsOQ-KK>:/.oyoi=WYjW"(ՇM%)0J]xx7K'"W u'Gͪ("5 ђK*҇%ukR{n2cD|Tyi|m%;g=kQۮz9t~E%bPJDN0 s!V+|bo ㍦e=ybeO8Eu,Ai4)$,/_-_YȩoPg)f #OūY˺h&qN.:+2( ŀQ l=|: O&zYU߮$Gxok6}}z.@ZAlҴ..uەГA8IptTDm; qM$[})_y'=W<]h0nm2«m.s22Wګ@,Nu:sYTRA( ԃ{00h҇_|M e0O/'w bFoʘun)rSDkh_߉om3Ԉ+ON[V=6q*KgƘ%s1f0' V H1$|,צg:J⃪ÑPp*EZd:=g "/ 4Y< B}^I+ )"gt}e^Nݷތׯ\F~ Q*΀G9FY6vpէ݋֌>  C} pʫ7Ig!:B51^ޔW%1.A ӁvFgt$E'd5 |ߑ> 74RKUo5~xB5[H-v>{Ŕ~JuƙQEu`܀f'ԍY  hU2_>'iFB#<bO׾GIW9e66'jA^:n=u0O;ZVÿ*`ǐș0=liD*/nϖX| :ݫa5K+%W=Y@.#3iRQ9Gt=nsm˝_VpMqWl'by 4EQoc>9D $ߐ !"k3l=֤6{ Oz}5&عۤm驀> / ņb簮@P6lwd> ?k'>`QzK+ی  %— {)qg) K4J MѤ|\K.G~%O?I[?滛ʘ:]BenBLl6IIF=e+.C4dL *H`.j[\" D1X>0j$ a8jyE4 ذwقzYn x|&TW_i xcKg.HW*!SAږSڮOO}}cA%:pL3d ,q,* FAUzzE"YФEpoL7kv.f!=St|m/<|;1|B eA]*r{GMV2 wi^X4eQ@4T8KR!ﮒq8f׾0+ʈ\{8IWx#"X^y4絝lg_NY2( aQ&_kjϏI5YuyNn)6=X!!+Qr҉!O7  =45]G"$-)1b3ǰ!)+;Bˌl|AED!:W3CEAMEvQHp ڕQ#DaR!GEhdޏ:V%l͌$ =K1GVoY>?GD. XdmoYݿR2hƹ#[L>p*9 K dVQUou*gօ'^+ó{$7`}ϊģAvyoQ$J=BQW_(ؙɟft*h˧ĈljU(ɏ?d"pa7~9c&Lμ*R<젪7m plhTA* B)'Iƒ?IJm-.+Ȣ~-vtn{hRP4nЋ# $Bܷ__awI8 ڒY{VjsRԥLX{g}EGA3C9}OhDnlӦzؖ_Gp {[w\Z{U.N[;J@ TSB1gYW-Av%esmk>%,u~׷ %UaW̌[T#u9,%QD:2 V0 QnJ!BY–j5v}Iʈ_x]mI,ثlc J0ȵL]F:3S[̣z~G NT9$(LT`3nMCu(Qgx)H@8`!v5jfA VP`Lcw?GGO U>+4ߵPΡÂ^w JeUbK/-pO@4eH<Ţo+WV-'4$.c0מ#:#p&>ޝeE8l' Hk_K5ߙ:.Xw4$e_\Ц'1L-7DJLG=S c2$dӢ&otlH'^~mAӄ+bQAS\ ż7Y޿qR;5d^|}k)=L9S_%TaHCH'Xa8G(GGLߺ/]KU"UdH \L\Q<Uؾ@cNGk(v`:lFm }xkMq ع8pX n쀫Uv*/󚠌*0:e#= Ǵ? ^c$1 c3mp!:tF4PxVR9L ZصʲY~K ~y}'y';a X􄐗ե ;Vabb:{<QS^@ DRK^Ro~c?:Iʽ׺gqsYf҉S顟(` 0]UC&yfDryLC򫝡GdYk ]MjdNYoi=N]@;omcSԸ0z":-8XX} Q,1} v%n.tvkq;n)xiTu!XVRKAc!C.L^kyY Ȇ)EeQY%6t+Ьd1>g<Ԥ+۷?Ԃ&vcJcf؇kh,hCqWb_&w5^ L->3(snd_N}m7(*-.7uJlO<.:ו?Q+;C>,]b-Vys EHiBif;l wl`F"s؁ѳtufk c{UWq6]*b09,j [)}QMzy)C~/[N]`Q ~[Ceo֦2Q/Aj"_UMK#>3 bmT~<^Z rέ^X4;CE\*6+hJ.@ڜGZݴz@tJrƵV'lt4]\kFlT+h[ŶÇ(yLh+#Wpp.ɿ^D 0!/I=Q} zk{`1i+dDK$BAT+=Lo~VN%-rk"h67|㝀<̋OvL)E޺\Rq6%d?Ͱ/xsVCγ~O? @` 3k_>Hٸa: ᛩ7s .sl3oZh*"l/K-/+l#`?)/h>5zQk"g/=OMGؚR?ekavڴaur qJmȏ2Sl>q0J;MU ayJJj¾͊N IƔ0tE=~<唝 9xW@%&S6O?ǜϻbt 3}axms6k޻ܤYB}R`  S)N6dȊ%g?#0!}DO De1C%d#{߽N4&Ԍpn d*qk3^pDX?\gS{Jg\ZWr95L5bۜm)SƱ)+7u^!̻ET&A"8< q^t&Hlܘ:)mu+AWiYMb E`FS֎ ԞB>G|aSI(7;tΨOCkIID?ț<8$q"c(GQ%3Џ_b|yfCS!^hLq<⶞: Yj .(Ĺo!0wc)PF?| N*]4mHtãtb_w`:g3qM=;#Y} d,M"A)ᩃrkwn@u 7frb3m;[}Ѷ̹((B÷<9g29c7(QOxb(:CS'čeuU /a]Q$@#0`6Vd<{IĜY&_LbZ8TMg"a`<0f$m wHg WRYGhS+y% +֭^OXWj07Ev)sh~'[)"&a rc>ÞeFv|NeKz`#M.F kFf]B V$̇ >s3ײnCӦ>N0ܩfuAu- o&9 س0ʼI&km;;Q:4EhЫ#UAtƴWFTӾҝ,cDs(C tk%pY& v?kf_g׊\<̾A;dyPM2\qP8#|dׂOjn Dn %u.hGVڵÓǗP7uBU_}ʦ哒 !DUIKF٦#}Gў/8p+NK>.JUƥ GG>BFm]MPc/cITgHȲzqTSkٖo(BƉ*0 D 5a-ۇzrҫasK]9HSk,.28#cۮ!6ɎEQO]T[| -1tcVS"X`gô:fZsX]4Uy&EK<'SRǯJlڀuL ߭ K%6y+&(KCtۿi9W+w5\7i^g򎜌ˆ@I\ȫPAu@`ޝA{/Y; Ňs-˦}n՛_B_1 ,a\V +r<Ȃ4!i]2}Y""nMZ*;^l01?$!U猖5c*"Uv.uwV0bnRxXD 4zm[< [v${ ^(:T.^_ $\஬?Vvs5R2cw*FftGgEzٙ |n=%Ȯ*3R8XW\j,^0s6e33pyʁil_NS$Vj OC2m7יfpsj6Rs,3. 䫠jpSd1j-].1eVմkX:@5 17?o)$t(/Τn9 ]H^sٮxuۄ:,UIbV<[U4~[)gA!wUؕ{9j4PB7}d*yg,/RjP8bы~ѿT‘yG:`c>ٖ0CEP)k[fCXgqi*Ա=Pv2tkP +/0vY3<m"v_)//npT#ƞWnw8YO&є3 \XAsVI ?XFdxoc Cƪatmk(:v'֖yԪsv, 3l/cA?pUyV)Vɾ}Nk>Kh7,ճ<;ām%ҪBY-c>ׇ(fk#s/~^MR!!/ݞ1+8nOM㧵E=q甕Y~BJvIYRYli:X`bH_/e5K*rՔmX)z yGWRU.YQh_gv/nž[w fs@|s7WWFQ(_xT|7Y-KlV!I ^xtJJHhwo3{rd\:e>V6ū(8mv'f5Ͷ,@!_~ V{VNDX?k|=!L%ĭs8M,v:għ;PbCN\3m&e*ͷ9DA ۂh!/)dc+[ w|)}>ESCrj`Lm0O߱dqvѓ s")gճ ׵(I?21r9y;ٯFs6AYC@xS anC9g35d Mpo<=bբi8d&೫:`Ӛ {k$w5l^/Qx2և̂|{y l1} cf񘘫u0`?(7R}>O2ZD\4^li8LK-{gQrijm)fT0?TJεq_gpGgY뉒gJ3ykbie5.~:/=5t3)w|!*Hڳp`FΣu겿o fs{^M>@J]9-NI  DE'<|hC8%-hinJ/t]r/PhH*X+6AǑ8F]) ^YFZeϙN޾=>p\>J0n[#}W㚬4MAp232FxQ`?;>& ~}nC!x:gS y1I^w5{:w~;F0U4AJ4e}1)*y}syI7lZ#Ͻ^F| BRКpuO;4Y8P9copa&T*xt|UꆽWAwJ͐Z,{fE~H>͏ :faL$WqDff6C-Kͦ#sD=붎v&jsl=RHbΜ %]aֶ)3 A#Tr@o;5PPs\;fgC @2 DԷ"N)#s[+sjM=h|Z]>6-zsY[o*oɃ0gnPm꾭=e0Sؿ)t[9\EuW6Ġ}^[6<c=/كZ欿W?yѦC *6z=&M;2a{+3;]UDc7,lImDC&"HYBlAh۲H'uQOwxrP!TV- fw*aXinW ncn,a5~ۉq{D4'3KŦJЀ-2{kkcrYjȪ'};N-N ԟIÄm[#@VL03)LտZ͢r4B;㸭Ss(IL as[.+vv/>AXs 4$qW C8,2d <̴ð7v6~qKHKzf}|-yKcbeڻ/L^+X@"l4[SpԐrsO`LB usQ|XTzDH*3HaxWF8/Kf_c~V'0]9QE~TD\Y24 u蓱$<:\룹I>(Ж&_fhodB UI=T}(qz@>{ȃ0Ȁ'z d4vkNzUa˽f`u#>/z1l {UKoSK])RQ`OvYn lFD8N? ?3snT6L^MB,7:95 `@I db:g$kY@MCW7HU dIIc000vZYQvP#ĿX56Â2+rlz6' u`wwbq * -M(eMXlZGs.k(?0n>Dq=viL|@@LϡgǙۖ$UFw(F[9Y ^7J5kIEi97 n;dw NE[ZBIxOC;j7*&3+1_.gih?'HIeoݐs'>UaIoІ۫? rI H1{4""WiK],tQoE 3U&C./`-m\B)dif/|iOkx(!J5z )0|WJV2${S:#^ub0ZTR`vSJ&eh XsG pu wJ{,}D%d?BN;f&/$zc@Ldl*~+ݹO tj9e &֧3e9lFEpDa>q*R3A^abiZ!sbv'kit28>$\?O9fexT렉0mf I6ie)LiZsjJ5h.pG(z9H4gehceh vݳc)NDmbf!oMnW Bڈ@JLGj=# D8eeikmw$oG_ySn-|V<@\?CAh:7p9_bP!"bJv8q_IGp6D r20FxpC;~f^RF*5ީDz m|yk>N ursW5 EMLw;'e=ake꫅o W݄7^S Өm!4C,ŋGz"ǘkD.!z4Gb~ߧ&ʤJ%Q}-u8.yk׉oW\\ZC: 6+N7C(ɳ} 7U[ ۍ`>yIU#Fmwq$w؍jrig2'M,3R ]Ї޲ܧ<];̓1.tLBj+$ 5K PA3ɱJsFDjQIޜqSS@%Md# s@e۪2#I4:ah5/I\Z̾̂'0o~#pC]Ϡchw~ƌD>&k ?e9_3+{ # "cҴPQ;"9_̨v9hêߋE|c=.*!oܾH fS'R=CAn qeI Ͳ< r1f=") Jj_D^+gDi]*|* /+0qHԵ1,/ m˳USm)8x sMJ`E$Ι s>dʼnGG%!˗kIr y  |FeesWd%T煏&T0 ɉcm] N}x?J ~)V/#}Qyy>4ή0^/]0k$rbX#u`V$9eQ8=@0M֩kz2N6mϬwit‘xER Hsz$Ԑr& DAWϯ2XRⓅIq!v ]J:uj;#́).1Ϧ/ʺAFqp/ԒywQbLtgS$)ivUr3a)yy֋ZeJX6j%ljJS߱\ME_>-HDžHٮoMwd@QmȠVɁ5!6paݨCWDjQe+yw͎@ ke]Vr26#eg3 ~G59G3mWy^?È&*臮TWNYe^X<t;mK 29t{NP6us  \nBN3tΆ"׃*RRks *~9|D!3OeJaCm{%1@dm?5,\YqW!).f567D3>oEz< V\qG=OmBHOU!DٽTgc"sZT/UuªT [ݯe.fb1ƭn*.@_fN{ 2`HwjaY?R|9reD?EbަpLhci-VRSu~1O~|L"_I&ڬ1voM9춘zx󽼩Qʶ3{Z8* 'BK$G-AV&(ӊķqa{hn^}̞o{i^8v[XZc~ձ^1%<:yy,tVjY^.:HO>'1>^Oa̯?y+c89e }ur7do/@G*kk,l#7 S8{ Y- JuM}Y#r]tAقSs}Gm9])G3š]u^#"oæ=IF )P1j9`(-Wu@OY8"g< ?!LD:h 1I˶H bBb4LXGq(<OxQtYӪ;te6?D^*`k`r8+܌acrFd iS}~AhD\{5[a>f%ɯeȓ|Qynﯣi{jB!HGB^E?Feo~RBW BNp%MA_snˎ_;H9?ocjңV4DnB Me3>fkg1Ё!8{JxO5}Q#%}6Hg@jW#W8OCDFb;05k"Wd€$ʻ4TҲT=tApƝ7rzmd_a_D_)V1{:Nmti<[&/6*6NE{F\m3LQ6R8)&FaBPN<:@!Ծ&С;,"pa'ȀtC#K< әDΝ#4 -Tb>2: ªŰß&F~.†GpH. 6n \#F,L~NԾ3''5X/L&S 0Z_\֬#]\-5CJs錐%r_clCvcU?r(uGjs0Hjp=OT t:L+$tRT?zU9\;x-qJN7K]M4D9_xox:H~| t\Myܫe.`.AK2670̎.dw1+Kp]'3@d tYr[e !޿wuZC?i=.Bx,|6<4Ų"Sp]ka+˸&DjVb`Yrאc$3d3Jl!0h*dMۋ_لsfڥ8ݾp"0eYڹeg|r+_~FIG>E8AiA`ȷ;{1mEǨID٘N 6WOH*:B2xޢZojB.-K{y/3% Y*Θu>*GhE` b ~!@'#]x/_$u25@ŏ!1 [Lt+{xOzݬ҈AҮNZvq@WD}íRбopg0F}.( }eɴ Lt^@u.p/tF:^P. w7ʦs"\fI(OsKbo)놰4H7X8<+jEYWz;tsTmT9vȺOA}n+1`nN՘@[XFB8M42;As-0OhG  SOCe+̑;؊,܄D)\ǔJ&|7.)`dL `ȚߣZTkI5=g5`xv _/he`J%SQ~Qko\VCYH*Iֶ}1?e׀'%?V`,uA8X"5.äE~1({]*ilhTu|&Czbxoxu%g a&N^' @bcV 65Ytm+U$>E δݭ9:fG'8ck~+ Na%d߆v$Y\ϮQWaT XtFgU/amaZ*^ r]PslUj8n׌}Zuk[FoI-]C`+M +KD.6WxS(%1"F/Z}rEkEىGECI( NK| f骯q~%Kc6!?FBRz s'ҔtU@Egq3 Y~rQFEZNH'<~;0pE?)xxQi!CkpULǩOYJQ,%!mM-ގS%>P`::ڧd2JSxD/~/G[[o=B@#Q$& Cuu]#fȧZ Aãbn #(\>On݀7/k? e+P1qRHgϕ1MG 9YdgR^$pLNUvFp.v^xKԶ֕8'hinbREoJ,tGs:Ǩv9oMνzѾb|Bk0lZ(ܝ `퇫*\߳wD@V2&Kma{.~p;>5w*|;Ρdf0 D1 \<ˉ: eV{Jpyx x͟ZG)rŸgvE[N%]^)q~zap٠U ۮ8܊ W[avcQJvHheZwxۻ } /BC%o|Hٶ{}XZ``Wt<a#ZhKfwWS\@xܵ*" Wh (IyGؤ~{A HG  9YԸՐrM$f4bHZ"|~切,7)Qz[Zhrc-{zP9$@@Eߎ񔘥byWWkǽ>,zr;!rjSmA;4P [QLTE+-D~T?p`>Qk)8JJ(E$d(Ei2\0[,kLޣ6dy X q ?g?yrZ5Mbėfiſ>}Ryz4vJj|QrM ft|K.e@| '9R5K2%yzm?s? ֈ, eŹ4v1fә^/`O-_ }G ` .m*o;5(&7,~l>񺅡<'cɕ'7sB;2,$PA?mϸyDUI!O'D&⤢nB+}2A\ۻ.RHuGT+D^ B)nuw3!kEl>w?wSē&h7ob Ǹ/u `rvɀ#BFDݧ'M<\-KAU.(]u@ lb7Li/3%uAK !&Ia8GSA@]cB"s`;uoXHJnCΌRMp?55mp*hep҉v2aeIbx ]w_W7d!Ѡmt1D@3b ̢BBoKp2aV9ٖVYb'MF*qh'G{a `I3[L(5O?P"[K,ܩa=۠l̑Ь&ꚫ,g yG,~#U蠎V!5EBHgASd~:L1vy7pM7fܲLX"ńvPhOGPwo1=+w3g/_܊dV,Oo|đ Z zD* G<+`r\juG26h5, !MU?z;GgTvyC!ݼ\0 AeN(<3r躸Y#( D-G _2T`Nts"XXz B~KG?=NrbMz{Ğ%BR{@HES9\=?pCE# AŤ8/jϹ^V"?y#̃%68Xᢪ´a D㒨w E6;_+3̑x\}%oOE*5 VTX1аڇ82S& ԊTIJzpKF.oFYi'X@F{Zd0o{+T9݊x'Bi(W,h>^8J橄m U GLĻe^oU; %S6;0<|ׄ#׈$ )ʈIi&EgxͫM#\X LNdn[暥ŊȮdz?NJE+~I*_Jj v;s40t*@FujG]FkX4PF/2ه]~{CeJXW2Ips ݘ\w!! 8^-3qS?mgp?)]k|ʶEic5^=`ŧa*०ݸ(8Uᕙq:AcqWVQXTi[]Wxb?/ ʠbik"uf_:DED*]I5r}9t%\nr-Cd"^J}* |x.~zmr$&C:\_Y ej *&7yGfe:GqmL(,K\!RnbZƥ*$~y./-rՀ#RtZ*oC1]E '}^> `V]#&G~*%XLIX( ng>|DB =a4sA/L-b^bʊ=T[AON".{ڦ(8MfNp|/"4Y?1gcϱ׏xqj'ͲmDڝvx5L#~60ٛ#΋*Mb˨gdCX!D(MO5!6DWhV^4:i7ԭ\#ʲRvoL1ZuɕȦWm7: &} !iR{\hV81(UPZ1p}>ҟVr[v\ #cш^[B FEٗ'ݒn9W 5s9o9RKoj|@!^wϩb7*~bC#l?UVFSd _=7e!Pa(!Œ|C͵L2F8p ߁Rnx1h-lYt꼙>l0 'BWyysj=8р+8'𴨚Bzk ۆIת䪢T3(<8\k( ύ= A<:ƒC@+[<3 Y'BH̊ȄH{G娧N#$-zXVD3AbY6l{LR]ɈFGcADR6./N%RD,hѱjkγr~T:kua5V mUfc}Sgbb>dRwhQMef#^W8B6=1N{[#Ub'Owf*I>?r!Mz$rnGc,Z  [%_P]e')߻ٗܽ &5j`BtuMo " Y+G@8 ]5@ץ4>rWqO`tPNBNI' C`ErL, ,R/ᨈᏐ`> +pL<3.Hdm{Y)D")6$=\ i]ӉoZӳ ]P>cCBMqswwR$$4M | ;괯nZMl9_(LV 4ɯsTlH*kEWAjwЧ̘Gd6ﮡQ#¸]f0reyLE§#Ҫ&̅O߀39{4JS2T=XS)WyEIbQOt4[x}:eiuZ%3Q\vӲTجb&sKC~"?ПEmWm׆ &0Yzb62ZQ(_ˢ'iߝEG2V<@ / X9m?HB-tK#.JRȁt_;CJ7#z߸"*lMôR9d\n}@yѱLݗV?Z'yQ>"qozLlgOs?PC9az p|r( -g) m`Csj4ԒyHӬQ.pR.3;!1;.nv\؀{M9j6]$c1.+W*tYN'Y;p!)]瘑:qAN*,*6u&]!*##BF@HJ7REn\u{A55覍88Ob,Fn"xnp9ɟ4ogJbAW˟rF(JDv8S.r=R㜄G`=:?ݫ-?ncV.<9v xm\qe1K!Nr{fwO헴XF>s4o} 36\>>oo8,Q Lo!;/3X@3dH{: Lڙ@YHu 4;G3w{ ^a[5 b!`T ~!STo "4aj U2p58X,_'oPtŸ)#{6z ~b.]r~4mG 9|f ۅf&NK~j|џhH|/S{JSja?J3*5vc@.|G}ƞ)[/L[[ "~01s~{7{ȕ7!N5(dO?K;-7 B Y',lgZZ09U܉r'0Ѷ|&)xC0e!{)T Rx#r0w{YMy5>6%i>8Y` KhJn0trAL" ^Z"C8 zP f5(G05NJPHsU˿Bb8.HڧH􇒺T ޟ눪T3l:Owa*i% yOmt`:ҞV(d^ubY!IegY>S!ȏSLlf* ͅLaXg( d l6<[)AEp5 qδey/Y*;-5rBLf/RߢuaA .,Q&=<דNlO[b*x٬{Q[b+T/OtsQw4geY9ږ^!Z EN-Ut[u9$V/ Lחv\qt@Z6_ČD$.@&覉a:kdo)e048+( T!# ϜpqлmwA"\)a#rB<ϟ 2qBExL0~NsgUO- >'a "p(wG#($k<"r$ j0 hӺQm`4yXݲ.+(&MC<4/ӖtPb)oMbӃy~ds{7㬉n"|LVK;p?YwApgV Eϰ~11I>6 ;a H "VExjy|hH44ڽlhz ՠ&z-<;hg b6M:p9=fx>*ظ@ɬY%@uNYLW]ι+1J`#+{ct񱉡Ǐ鉜Y#E~DUϘA J4*)QX_7g[~9{ 1{DO&+SaH^%t=>|JTx]*HJa5O<7w; xO0 -fjaaQg a"]b~|5U"QFHNH'T-X{>N T,,vmH˖̽) hǝW _IcDVIVVDIB)7X 3&I0 VШD_k$ObjhG>N慻ս"|9:<[HQKFT -߀y<7ѿaMk Li?qm䡵-@U(;2(KUv`) ž#Bc=D@[C26[djoCІw/FNFL W%bNۭ$tqH wDw+PݝǢN/VS~\㻫K@]G=_@ +} Pt@AwK-W14pW*`KrJ>5ݒqEzvLCzZ-j CY::puO!.{'0Ugnm7TzC asW5_'1e2x7?$`vI= U Ze]5C3bPi'\_UsN+{_!s8!C[ތ>K~Fh(>l"^3wF8K³3dkL~w©k?Ꮙyޫ/TBVUq5<X /Zl썌T)7 o%/ byN{~!i2KUѯbiݦ]9}<?qȮ/劖9Jiuө$[j./hòc;i!#j[Ƒ!#FZc0T`hT >cNn љ䢟]EI)^AVK.R_R/XRP?oIҭP+YA3kV˶g{iH:iSCH(sRnΊ Zd+5 e?G\.G&, (R]E΋NT)i(_0%k,[cRMy'-5ի\%wPn }7 1o/ߍ}}ZZu,[X%TIc2_[6h[iŶL҅q-tڜ'> ]FKDZ+Aӡͣ.)U]B.ɾTT& H=xxdLI %wNu,h4巩NԮդhHlK2l fKټ5T T\/@W`Q3m{"owaANbrs[;C O+*Z]@%/E q39) ~hatvZMTNAxR$a@S7@"Rh<xujW78z$879vGwK2!nDhs~?Pl &3+i_Qc`s*pxer-yvw~|j5p;8t1X*YPK$LR$ 'hg@|#;綀[ݜ73@-<}2q pqWs/BR!Thgȯ{NKSu+uR=~bO9?3R-s&O݄{ڲʒlQ/(*_mKzT\8<@c.Y.ݽC=6,0-+)G^'C.10d}\eAq=2,Jn#2sO?ŶCy p_\GfâK!bGo:bK?ۑ!:5h*_a (u@0<O(̇opz,?5V*:UŸy²YhfI*;-G HpfHEn3QTúX0b3x4x"q-U`(ST1`Odtt;%=.91k&/@Ҝ$GO"DԜhpt0jђTBwϢΠ|p/$`d4k 9F^0SX 6.6RU\m&1pP-VeZvOb4(/y$q(ftQ̵ăK/#2"~CT1H`OF-+U(nN <iLC1h=v9?@@iOH-Ў^6XDA8k$ llͻΡ=Us̹/Wj#0goucaeSE+JRR.J&TSxe:-oskO@+c=\x!7-$ #T34̍'1AGV$j [1y%osO$je Hև4ϕ T:J@~ rB#%;N16&UIkH@!ۍU'mzi0odelvtWL csZ cGCFz}+R#}SUm,oolAo%4EZ5@?e53)}라fWVŌl'eu;mo'pJ͒8`_x`5eyIbSk%";w[Kk6D&d2$Meu:V-#VdR=Z&/@8R# !!x1oβ0kapQw:!٠3-&ŧPӻuu4.5CMOijTPgg'$]*ع+~xM^;2HL(i{MgPhS\mǰ$yǼ= nj1 s #ep{\Ks;/t SE01v郼O C DCO4O.);Kv4鮉*4y~qS _ IhϿDfNEdr mk0۹=@h))ql>~" $߻?ѹBU"/[JAHB;gl|FI\gKUuZ\]#p:/eԔ`na~΂^`jqm؆ױpRgt8QoB=$<|4s^174WwGn`բjj |IfP6ldAWuM`|k$6C͜Qw4.{?Gpƨe )$0pJn%[TA bQ=v۰) M}5j:|%!=Rn-9IXBP-ֲp3F8.f8&/RRIL]tdkQQ _8?%{7pjE4_r*I6Źũ,nʶ|/ O/@bK.JFVIk6{4Lղ-ҕnbCN lťv@!XHqJ*vV*TYiSrnHg7%߀U-j#_P(63뚄Cvu9n4+4y5[j3i/g:5MW卖t,̍ojYݠ٪2$vZLR!7hCj Sr]T72αNyB[Et9yؠh˩1HPŐ"/\B%W."H$)C4>R @?,;K> ]|T~w֚=-1Ġ۽Գt҇ }NwH.gkq q4ۘv#u>uo\tPͶ2[ϫpUSz5> ҆U !8\BTg/'{-uOe '؎X2oDB/*f,3zX tW7)AO3+@9*dhXJ;74bT°R2կ|fx7Y MghOfVdDdRH/&x\^ =`?RRAvT2sy)l s6wVnA۱jFW' Z$FAӻ t{㔊0v~e!+/{E%Ue6t'~O_UAm]WzZ֍E0en-fHLQw}f|_!瓼KkW^L-AlD8 B'yRnbDŽobߴ1 i`܃EQNUu7g +GdG_f{L IE g\vs˜pDy z-GёK*r/j wCggl,6:] \XtN{H=[ a g=тUvs{nd!ly (!N6@@!?)uf=FadنIdr~g0i_o֒~~m8KrTO N}i:NҗO]ԸD]I9q1F2 M*K5aKe]{*8E5 c2Un>^+9OFuHJ~N6k3d2AZv֑o<1?I׃bIK2@+\+'!ey *eJHj7sKnG L@8ו-j}Yia}'mXZ f䛉]] ;+r&bםo{jPohEy"Ad ^S xjCfv8#OxPT^$T*]T6ev?FH2=DÏܱ:>4KSvl\Q;:oXVI}lNe. ;bw m Sɷ~[AS@. 4_˩B=Tļ,z!bg_M5DyX\)#g >aռX+QfտVtoK a֮d`{+u"+gTrB)7i FSX{_K:leWJ9C\jɽH:ə#4so6М=uw\9EbV3xU?x}Bj ĵfv=E Ɨ? zp& Y~_pL8˺.ܩbSp2[;A&T\BCx79I_Cv|kFB963bOqӨ3 ǘC- #plN\- HFg*1ktl"кrbTRI2@Dq'TBj`@-n.Υ4 ׮1@7Nxt;eU P;k]=aA]d7!`A|+P&U!^yф}ː׿[80(1oٳZu:;Sd_ayNW4qF?g$c$6< 8hI' >k[Lh|R:n\!j1('a6*IVs,dܖ^k.HnDCq`N!5~ csV!x v}mz@5-S+xKabl"9m"УL<`W.n D'SYwYX'@/ DƆc7qpvՓj@$f9Vd]Engxφy&p٪Uش q N^*#B _IC8@nPC\ݛʑuZ=pH)xkA4m}T- V瀼`(GKՄFg q8?o~i^7rv8ҳ/lbRmvWsoЙ|S}ceBQZUog:XyZ[('D,ڶ 55b^Q1yaYcj S V`I|ޓYz3=.1܎W/Qz e2~>4hgјBҩ60G*-x`+Zara F-wQ94?!+]~tƽb6W_55m }ϴˡwH%EP}ݨY#!7 qAT{z,&j7g=ʖĉ.'qyȔ G9RR; #^ 2}e~ 1BS] Ԭn rnb1Yߚgh5\ثQJ$9y~$uX9CaiF3U}gs~62[ SBk0R_]7hֶ*~(>^ˆivXۤ@+S l@Y݅g쌋+/ԸL .y\xaB2龹~8###E,bgzrbMòx&3lOWx< RCP&6UBcɞW=6 1{āW"Y^~7]Jr1Zvb*u~ՙ+,aFC<6Es{r D)n^:NJcܯJ$E|l%?3J0нƮ cujA1-,xo6@B9HF؁ k36Sijd(Q%9WҋRj<<40iw%Xxk3/֮E_v;80 .Z7Nx0u (,[WYd4qb̬~_W&hi/T,~ [l{ȐxWU ,E]'mɌPӨ?d(DOG,]1(I}AM@mG=EY0=Mճԫ LdۚS4}ۙ}Aoxʠ.ii]6U" suWO@s#;[z|| !% uz-Ġ*WiB?H4P̯c d,}ɋţD$y雱,`qaIa::H^f{kNMN*[/)929TWKSje$yulMQEtQiR8ZHNڏaLZ (wTv5{c‰ܩ]nn,I* =^$gϮ!|?'gjĆlu(q!EE DK Vӎ&k,yCXu*&R]1]>dLVtQOta,UJh܃f?R0x>9*ߟ[m34;+enZn Ez1LH"9~ 2O[9m [#&%Ӽ=7)B,ZT4!6w1(/VЄ-9?ϰ,(5(LU`nP[.vmu N4F)H$FקuQMz 8rPn2_XhΣ߸J :x^c{Ri #d%4/ "?Ş < jFu8 >t-t'1V7LV>*֪{/ \(dD9*ۦ$S|# -߼膳q  lTxps:06MF qtϿ{" Z=4[E_#aY&^cWPݘQel(c4rͱLkq rջlq:\5"I\gMAZǚ ;AUލPMО`yzvnKGS[IB A(IND@UYb`noH:N6&pT .x$H 6dERi 5TL!/h,z[1\)5u+{Rn@bŌ*h`=5wx`k<}@bl4DD.O:o]欩w1#XםK:=*h7i|Rj418X(*߮${*6R@?лJψ~}"a33zJ$)'y'$W ι?U}L뎾&Y>ƒTm? z{YRS߻ECzq) d0@le#얹if'Ef#H (s5?">ȟ $Ưr ̻$x̓ꅎƵD+7 ^!S{Ljy+cTRjl[Akm@d@k@}1Gyʋ?z1 an$KbwN>떿 fiٷRW>1# ?eLˏ,l/c{ehD+ RjU(+βUYg,<ǓR3>Ȼcξ"za#{& p|r)x =tƯpqFւX2U ~s㧹쮿elKEա/=MCg%sRTCnܿAIhv˷d\`^Ri.iC+ K\ġ'|_ F @VFٗ!ܹF3|s@[)Fv7`yW"E#~r\:w<]~\ꇖ@W -^OAʿgd Jgr-VQ;ꖦ>&ch}h5_NH;9a$,sΡyvFq^P NJ(,$/crA!7m+/oXuwTX/GA%@wD%G~O N|w-jy?&Mx@KK t{ Pנ۩ߞT͂^ Gθl_ D:l Hu2%םQ6]oA`M4"]*Dfs,WbSPU+'# 0(CSO=U`n9Ȝ"Ȏ+c4 VULU>#'t`F8;孓A_9fV&" 84șDag^LƓPVk{q&{a`ɔZY'|G쟓Ё+44]apNL.MǵBS5mvI$diO]5d!C :fIBwwdj%{>_$DvlW񸲑Z2P䷥Fo rL! `O7WIM'Ϲ \T[Ȅ'BQcPIp_4]~{}1?7%x`Q% 3Fqbq(%WJԛ5 & |' Z ^DMԵ9rDb"*S4ŀ}Hv p!W@whyOSnOW*GUx`WIW^:yd:C d\Of6x3U#m+ # nkx)A#C@Aԭ-QGIPkuJL^[M<2fpJBQ9 M^wz_\a)D6̦W4!&!†!d4;:/6Υ,z#j,1C1Ʊk^Ԅ-9ʘCٓmF,*T7y&{@!}6Hpj(E4:7c P+b]CB>SWbf~sXW \GE]<0Ħo=].ȼ{'x'sbx*>2Ig}0 ]0 ړ]MZʷX5d"j`(!H2$=l2TpJ`+7{]^8$X&Ieq($홿}g̖c}|A/ލ]2!}FB7rX滘I9OlN{(a]f1xx$UWH#!Y(VQ)/,Kg*$X1"~,4A&h/TjI84S-o$N%B>y&7XI*yF]}U ۬ +IeTZnLkXw5%)`X?uQHuid!'}ށvM1~aDғ5M{>{2)isAH]5Vŗ!i _`:X 8+Dk˹0;%A7I ujbIv$y7OVnH'6dpxL)83 [d4Ö3 8mL>A#O}XQl~=:"Mβ.+w94AX\.gNv[TZ 5ڄ-εU/2VQ<xs35j;oVZN.K`ߝ4yi,lpklοHnM!?(4Y0jZeL>`lUc@gJ9lx'zku9]@+Pv']n.^'LSp+\ۉfXz~Ү6(VZ\, dd~^C|)@,|9@t48syub [R5Zxia@;*ц6X_D2z2㋎H`W Mt[ :ϠĽ+WvBG? (nz#0hOS`麟fk1,V* WO݊q7;9 Ա9<@ef=&s4 @N[FEF@}xZIREf:|So^^V쑟иw-7_@%{bOq23,6hOLkE?vcɊ #ݣQMI)tUU٨rӌ:Nz^h4 RYmeزkK'lQIY6XG n*;6)"(Ψ_#Tĝr@ھ&D _ -!D-}^&W H?nZA_ꢎ(81`jYf EueV&3S2|vKy}GWǕ38$(庇iF@E}b[:!xVi3@ ( .fiY0[`VcrP:0w< ZtuDn%w3hzZtҴS-WZA]m=vfLqS#@LE܂- (cYp_/W3&e)A, ئ0y1,gz65h񍶱'viȄ=-|3I&I(i- lJy AT?lls l1D@3M^+ ȀtZ8nLmr ^C4l-|ͤ?cӣ\xn,*0T$3d-hBg/+mu.c":tTɧ@Uv ) $"-e;D="&ʊ@{c JeeG-{OhCQK>1>Bk5_S rȢ~4;Je;Ϥ6Er6$ gMJkR|:ǚtMS:VFϔ ؎Towgx7O ֺ/~:q@D2_$ Xk^ ޱP3"rȒY\Qa81?;|?K*,-F_Y6d4 ,)R*qe}(=;y=AڲT֔5'DЛ<=եjH} 6Sb7J) BJn]qƘm~V}#2> ;iqИ|CtTxh"wFH@=\*vE 5עs],,31&i}R6ͶFMt?z~t2y2KGSb] 0X$|YiM᫩3:h.B MͬN4Gln w Kqjy"FjWKqP]`Tnv fYWH8T7I _`"LD$ZS8M@яLӠ8nGk!y/.~RbIy d=nL`kQT6 ^Rtf`)|v&+.RyyL9tN/&p#FojAplnDs>̹RәY 2gV%sӮ p9^INڠ͵<.brZkray{Ẃ/YNCOrщVp$*(vT㆛l^Q "ޘ!{UC'(^@2x>1]BcfBo?FVKGuG؆m@ bE *#Ɠ"8Hu k::'mp-M*5}0SU[ض{q7HX ]STע'a؇ ?"OX$VGиX9NҺyPϝii T0=b6K*&DD Ȏ5!ȣ%jպ-W ̯:MT'뗃c.\E@ٜ Ua^5WN-D E酇ޑES-'Ͷk-O|L'ϡFbR2bZC7v?'{)8NI7B; <=ɓmLQɱ.Z.v('/(tGϺh#~z0kS߭l-_a]nO3w!cZj<ƂzBa q@_+Vn-ZCl2|'*wXE''ޛ Qt9Xkvh\oҷ@\\v.koi6XAF3܃o8tHlXe_,)T"кVR2ל}۽`^x%aR+l ~;⣲뀄0mq~,2c$޾ID  MK-W˯$Zp! mBB YZ$$0RjkƓ:U M@>K1=FR?U޾\m#p';@C+ P1{:Ԧ12Vqj,;:uj@#AI ?8DY.eX~O]l,ސ ~[(^\j١I`FYt'DŽL{Gi}kHGaAfT!jD!0ݍ e?"emci :'7mXt^vV=^aC A别6Ez}t ZEhB(  hPgL)H<dKh_{w>~t%s6ZbrxHZXj`μ-FQ|8">O/?q6pPdAdrHa-/ţc'OF6e0V2#7ġ]7 6gCP78Œo@ͧai06g4֮EVOh>؞ױs-C?6I˂BN8_xFlƒooF :5m3,k'BSGo#ILߤ7K%ӘM/&Zk$/lհn6,I 7~l [ݒ#b[gNBg: 3Y< ;\#V*@WD_\G}!CFi㰻v]2R]/Ƹ|v(Ӯ'6d@K3s.7<~B itì94%:G ǽBC_i'V·ly "` (F"R݄ڞו̫[q+_3mutGr743u.,Z33|u;EUDӆp^t5snuʎ*D:}|mPQIuZUuK/uK򴅿!ukܚ\FqE_JS\nT! ٺJV/(GZ[h;.ESDb]4"ПkE*>Z57q~FI0E.NWt7 )Tt HMvԧ6F >|'b0Z Uvs7IR]wƸ}1#`%12TX3iq.)4tɆߒ! WgQyEZs`&D#2Ew}E 1ɰ@y!%K1LZ xs.euc RZk8 "LE MaoC-Y^;@oኺ&O ,[eT"e#_F@{1C5mӰw!r 0] Om h\~EqO 9 wSoGjkxdT/vS%X2P~a.icǐb`Cy{DAl+IQzWDbh$*-9bVK)2gв\f^S=_b1$߫"c]02DzI-hJ)b~ݓb|٩ 1' R/^b_`? ( ٥@b`%#eE Wٔ7ax2nㄪX5ZN2iZl+ٔ^mW""F mX}i`ckyv+GkCm ƣ"EJ6{7`c?Vy`i>EX5{4/ZzTzjFe<n1 @(=v ?8 \ְU-Q{<S)-JlF Z9'G#j6bDe|d@zܛ*:-y9 Yh[O6ʅN6v[<:{K70-/L&rW߉3:F~"b@i(o՛ N y2ĝ:X\Xp ۖ9{{Ք}aNL+q%@[N"U$dD$lHw5`UQ\5ڑu\zW(>z,:|90L)(je `vfH>V"sjF43Jr¢E9 `o@fkBvJCz?콽a<1[2āqp>Wﳈ\^Psv+~>^g hSx;a^,ˠ)[:6FC=d#T7ɷ<(Xyp  {-x˟q\θlaCp~]>u$]ރ 9ћ.~VkI9][#wX ~݉zq`zX~(f00{r@E LBw[ p ESx-@wQlcm@H1V[z7`n r`5Px _NH_L1"0u?V ]ӹ} W=$CQP)sXjpN@9n9 ˄z?^PWy8LפRY_ݩCswlPxa٧m s>l<Ȓ+nXYVDbQsGB_dkHW|7 3=D~ NA#}Oji.y1w-%w7ZԈ H?<\ɻ?|Gk$c;ufhN 7qb+SU0 AC h &elɧ0Ԓ3+29#whO}KuaTϕX(5oOj}*`<\V03H到Ӕ4p'320]| j $N^k;- aE\ wS}uWP]UcsT0)@* d;n%(gJoQw٠y`\Qed/ S6o bK YxY1>,?M͘TGQ#y 5Bɻvpi [\ܦO(y&?ZtUbSTO'b"aN:z.\EIL[ݡc ]J"cm<"ؘ&$ lb.TҫиUTDY[mD9о/:UTjSuO:C;&hF+  2 7'Oqep\UiO6;RV> ki0+CDW~:~蘜j">NqqEϼ-#OČH`+Qw;l;^7:~ob;y4`'ޥ*`pSH%~>јX tf2d,\yR 4S1SՍ+P.%5/ /9!<8o4 geim\+E7*ua,zsUD1=YJ/z\mDY.SJ8 _jzK=2Ni32x1]]n:jed6$R0:㙓QH+셡l\8G%#U;B>fTU@#n N>` U逐J;ʆL♏F; 銂 k[w% mK.wg6@M[%Uq)A*j8+¸ ߅ uPtp͖G;>JL.SCemOPXf~d{ 7g%SXo36EJс[|y1Q$NsM|@B3G"J_r7D٧O12mWu5Ghٔ G)f7+hq`ýwB4Hv\04 G{gpHM\?$v5>z_Bt#A]kNp*_3YU\u鬔٠qؚD*OH@,h/= 9wǴi^O%#to0PkEO?H e %H(=b(#< Oɦ;;P+⨺VZJk"3X;J&.uiE[PiQ~HM8yt ͘r:G,$4TneƩQ2.A`0|Nє ,u=T8z YK۴(BQhgrcAA<cs3ʝ|. ]EZ%Y!vaۋOMH( s\A.`Z;uZ$ qUș۠a՗O-0A`\7ynWCL1Hh7O%ub]+u^&+bs>mG<)waZB:8]_u&n6zTJBQҰQYj<+"XBu x?] EQ&|Q+gF [&! Sbfت{BRgGmVKf{v*>&|ϳz1C!O[2݁58sh M9YG$v !P*!MeٞktaNΖwX( @FS1h\5͌#ùSj\gT) '405;vθ)dް(J [ږ[ܯX᎐;j]s H {YW4La]oNjYsj:8(nZe%зBH$Yw>Jd0 j);sTD% ,"Ǽ>+M2pz'a8V Pkk#|Jѧ>$n? T5 'N-wΌ&1Tq>|MiDHyzc{[1I?EaMBJ0[^HA>Q#̗ˇW}ϓ:̯ +u~] 0*'PƙJnGκ揭GIqa.;fE]pXYܐE;.9I U/ktv9O0n ;r`~?%.,!<)^Ojʀj@P Gpvgnvէ-@/Dڽ)n`ͼ#k1O턹0j rR\Az?D]D*z;m~,_q#W5Zcbn3C?ϓp-'?RwGU$?*Tp`T/sEj:4h6ˏ[(NvytLa(sQ{3U*Lq0lk\Pӧ$JK2c.?$FU}_<9uMT1Jtp~Vb2DQΕUnode)r!n̖6y>\>vK/{! Fo:.|/&g!eɤLgՖCtT,#NmW{v,Z43ɭTN/P~> LY!O9_).DGk-9:{0}Ӻ6D?0QCV˥D|ETyh2hsb寸yKBJ)G40r(a~Ht 㨾ŠfV%)}1xTuI!.KeMl54ʲU])az avG̝/ 5 Fk =u$!GL>oS9sL2 u7ʒVr beEWvMN&;klp~S[2_H1v:g13L7> 520Q<3P^Z "7(dL,N.}BzJrzisLueseuWt mGpp_c\p(\x>\9&0)?5V'ol 1 V(7>PC0ԏ@>KV1 }Th0̻d9LE9sEЀWsސO?ϟuк; tj ˾yYJ=u(|FIW%׿=~#W x6w""]6;Y$F->pp钳r~a]^{mrz$Bwq|8(X(|4MSOJ\,E`F}p3s1jPjz.U#їAc__|O~TUÊ-P1t9(&L@dhp ᾈi1<8X'8c B]:Q%&\.ee?f]SjsOO4U"ycy1y8t33(C r vO&oZ6pqz2RO ^dPYKM6D~|o+Rb^b.7ޚSp '}{;amysDw΀e5DH*GdȺ>/!TD:FTNwyj`, A"оKR+asJqB >綎\h8]L9?Zu޿UZ1\˫r2s!!껻&kR1R` f.f +9O^Ȇ}LaA4U\e%*fQh&@ؖxQd/˭ޠ4 JiE),չ.rGMu}w 7i#nb˱ HtB")?xGiH>V cVWq\I:[#qrF],#b!f30y+I{#T`(X ?aȂdAi?Y$Q4*KbO}AWV-fFl}XDϚx1G )=i1Nw}zwmDz߯%s cbbͿu%RM $XT}:ˢӋR_KZN#++蝀%WM%:Lh ~y< NKst{ g^ڷf=U%77vZL1Ý7V㟼Nza-ON>N:X[(1mvK&jAJ\X/L{( ΄4[j/`ͧF=1js8OvT`Iιj5GW'ȺTľx%h d۶PϘ\$15?F$"q) .C/kgҊ+ As~6;l[5dVbs!M/(E C%c3i<]t.)֭JG"!*'Ek%6iqe:(be(>gݣ&<;ҼVmmǍ2g ";wb0lg/C8}tL(Ԓ5?9BvТG!ܥS6"Ҏ2BK۪BC+'ks?tj P.ݱ_lfb+9q6L]cBtrxlh1wb|.=NFf}rUq|1',M1CDŽ$kȓƮai1ۜX$_lԼenmR>Xzx[p硺deKy("!YO9x+Z%@zk+?u pF#‹WRC@tRud$>ck29l㰒a7ԏ`f;8%m`R ZV׋a Uy)/[ΪqtHJF A#d2@쮽 -%4s_d 8)̦MtzMHnGƩraVm5~|:C*ԍB^`G!FԳs=dre(4$ 7=t(ˊ0ӴW%d|Hl7M9cvFljg?i]٨Ktpd*,xEXUޑ{Icw\ףzi^H]%zZ]\Dyb!2.R…Bwr7Py(mCkKF[(]Ps⟴m޿e3إz̈́փ2W3?;r Xah2ϴ.J6mڃ&c}oc+y AgMjXb[Qk~8X${)X#TqП1J2 uQr]ɟatI%i*XH}d,ܶ?GXf~;޸y:jT aJ ! IEm I .V(Fj9*Ӝ]\C 7Trex.ܱ.-cT`WCP(/MEf=$Q6Iqs~nyc;;md*DD ],tCd p=)~-9Y]8gkӯg[tGQLg0bޏaS-X6r~u,\S=~n4=% 9g/"f: Ix+qv94 .!= hq Za9З!Y& Ƃ5ϱ)W23/L(9VKjWhpf`%-^Qb=5HDZ1azrrs $ 1՘Ζz7A_ib/`z#R͕s܌r'cܙ$8T_O+7`%7:U~OE'v񆤈W ( (z:=ؕ#6 ]B!]x3G 5 *tOOKlB~Mx1,קbjWYQDmmws:v9{E&$Z10u{mYtr*"X qN(w߄ivs\Hʨfe-_$)JQ*!XLtrIvp#3DshAy )Iy'æC&Ydy)+ݝVbp#')^h w:,Bq™/Vhtt^SʄC%ϲ ,[1QHZ#WC^yU O[?̳ m#,5rEtXǏD{uSlteg'P9(ȌulY9nθ莝lYLD{}D/YH=`>jI^PmMxG1W exGA?8Ww\"28^ue&i3B)P*zW 2Q³A >þ'>в7ZY?2"jttI!b'W3pR,YَF,u|alVk)%E%oa; Z%e |V= hO4_-xc>)>DDt1v[HMYIz}*S)[h`Z3+c5&_ Vq~Z9H{u'5:bW~X2,,Z/uP3CŐKh JH{3.$肷(ROoSj[S-rcy'V3V25e5#;`Btktbr?bL?`ShF8̷lU_>b&̥JL'PK0qgȲp!=6:dr^; c"vv.KLAI?͝Vf EE8r@K;+O &NT´OU]'1F%O"6ƈj(b9r1+<6&n? K !pz)s]N=44qyhA\ CsT=P5tʤ]|C e=>E'|V{E$ wo4fPnq֗:8]<'@|K}~{E-ˠR;;6|ċHh[)b:934gZʺ$bT$y[(kLuF[hMyW'Ҁ&',0zZdhCHɞ]:ĔGSkm 0"sUc hlBs1*3 ݅{oc,g_<˱4j"c?g0CedN.;+XȚVN(U#G2 &)g*鱠tdEڀj6UGxvx_F~2vSj39}ϤҧzĊƓډy+.^t!盠t|'xևPS׵ҏd#rI$ *)w9]OIQ6 + aXUT/G~.nLP]Q7T/,shGHśO´8un@wIQ)yqI3^`J2_=A4Ru{w|?Ge3Ca@ې{gfDvN,JW_hDkH$K.gGd[^, 5%p?vvwJjv ^ zJcW4m^oh<hh Y%$5m' xwuw+ۃji +-(NMy%v1YL ̼G I"3qYƸ![p4CS[i2oŽuLq'灍wy^wf!jÕƛw>>cKfZhxjA{FpgAt4Gds"j"z[QY 3qe%|zj"Ek;LzE1|oݬPҹKGR JS'#xph2%W_%ZYGO=wb/%-@pX4y"J^C!'j^;Ņ)dho`(*ވwmν$fs.NuT樓Eàn+_ZKpV.5<]?EG\_2Q0ROw"Cp7;W5bXGtR}'ui_L_~ 0s=G~S:XƬr:d+rf_~pPnAqd+s)M!سBIm 39B )P fZA{FͲmDB&Ķg0A((&r~:gd !xsX$.@ni_"a-p?29Nf]@4e`cp BxE Oc1ES*)FD;SΰI47@W~n3p"/(cI^DDWkə4bTUT[|X!ݶZ6<0NUKGrBz7K04(ـa1 SN:X"PM/lһ'%%иeC֯l Xi*~i*cSw~^,fANt]Xܬphޯ 3fl={\Dd71́"pO*2?n0 ᬸw|~+pXO!o;ܟc~RI )-**D$Jj9c& WZ7ǣl,{ʡ< ́ɥoFe q "jہI >"I(S^ Ŋ{ÕMl ̷.%(z2^Zb\ &OBuKuOHn) HM[J)Mش"w蒯kg1Nd( HZҩ[%(C̕q7FNXaRr5"Z7&RsG'SEH;ǁaF#P:HTl/{i~8fc X!a^/1yΕkWPTGuC?~@\]/UEC-*)pzFkmmA>tJt˅ uu#o `x$uݚ80n8{型z hC_Ey3TXs9fBx={'?p[&CPg!'V\`.0vgSǑ*4kTX{cxp$K V* ՠ3 pRY, >p=Y/1nԟxvX:|J`-}x1U"t7Mz%;R(45ݰQkUyakGNσx Դ.kåU)dF4;bFцW"e 9MeYujLk(.*E$ š~v `P8GzvБ }"+aZ{!ә8D=W/9h1t t`,z} rq@z0ɽInAQ6_,%[!dSu(nWu/`28[ߺB&sRHl?RN2Oݡd 3jٯ`gl{^x+%ֱAMjk}r浘lX=w$~$FQV{(\_*X 0)@زͼۇ?hA!VʞBsjTJk?*%~<e?3x.>9j _;0րgy0GFkvߤ~_\6O?gQٞ m0O$Н WHlkz<=2;PZ:mf*F ,^Vt*P5|2"0f2/O=G»5RTo{0N5n*>_Aa& f%=X㎭Y`7vˀNm,aU_mk **bFM`lݨeXB'FM,/ GNQdd!e>T[ c23~ngn'6fٿ˸Dx8yq|s܅1uDw/WՐe)?}^WEك}I&”Ve\4XkW*^28r/Eƽ8 sKژڎxKy XޥwΟۦ4:?S~Eoۀ  ώӸyc!rݰ}Y]mlp̓{SJ^+Ӣ'V"5]$'-j6u L˿[!Õ`4:nNJW+}#5m$-k(n("=ȅ hυQ.aPp~JG->~Ny.R~<6crt~Oʃѭ`,)R_9W|h\ c[(o$xaigƞZؗLcBۉvlvRB 2oWSA/I1ٷ#.Ar𥧹`L!(unUprࣛfL E[Dr˽df*KOeE6|,'eUIlV@hJUW**# Hj`mĉ_>û<(I*ՌBQ?ٛ3 XY}Z@Т ֬L .l CJpE' R轱=gUDsol:=}˶6de1^,9"@ a;yڬ-,;>[KOƛ ^n[R<YLΝxsX\if8.;ajQ>OqƐclC?4έKg!?dIM%K'1A4eVWFwﯳAvpA,l54`LGШVLN~)]Ӕӝ`5@-wL-HXʍ`&ѣks3\Lƕ}D᤺6G|Z-QiJӚw6c\2c2`}2n}&8y=h3ɔ7@e舘|bQ!3' #9т[ǚ7.QW?P[o '@Ŵ3p+2;9l‡1e] +3Zj u|Wiq5,P^ac邼T8gC,4/n _9F,ڛʹr̎I怆Y9xpL 77Z3,+lRUDv'Xݿ,bv(ʔ \E{2ca?kHu?kˢ|VFjh4S1悋b,şNd fZ nm-$,S:܁F}#6<; &S1 m^'L?z=t3, 8BL}C1_zJCCN9Tlx|7=%h9YD1:RvxB?N?7$v3! |ڿN 1ٸ':r-|vh+p(|.:V~iÜd pԅ;`.8O.6 |,>S@< |@E(;HDHGey֌ORK؍r֦- >ޤc-mT13Ԑf)pXL)Қ7t6:1>UV#DcC[LHX'}( gJ) W6blSi4 3)eK9Tu+ n^r:F֒\Lo<᭡( p#R6CPˣo8\aҪ=;q>k)\@cݯ13d^d4͗_+#r'9;ϱ- `ieb#æ?7TdF˹?w6ӡWRK'0 T~2HM=`#]ΛxlWy+ce9)h2cxh$);v {[D?v}Vhs'3AO0M Uj]GT=OwjO[_8*/,xw d):J%rs*[&+o_hjl`7H 8c**6 |=聕A' [rUV ,<76^@JU) ׌#1b>j y?_k2F -| BaԿܧY>z[^Oܱ/ajDZZ~c.fGYQN{8;zm2X: [Sn \Ǻ:̈́(uww^mlͅu0SM7Us#hv@-z,Lr j1o8ӊO+rּg2|eK"#wk?ClG&[ej+ïZoR'BJ=|F& L (}eN BY :ho}i\{X7=H($Pܘ|cnIa[G0ns7;U=)s(^ j/Ԩ.b'3 [T>[+DM`E;Nu5kY%n-bYͻpɺt:XLl2",'qr֝}jw}HhͭvR b;>nL^qd`/]v3PDԺP7Io>ӗ M!rOsa ^O7yU?Nc>R]LYzܱad>!M`lgW +]mJndnCEp$q)v7$MS_L?j\r=OT\ dX'2#Ls^CD>/ZNo򅗭-YtZjJ&C'(I6B2A3z]}1(78ʱᙔlۖz9^p^HO溱YWCj6y ',]9@&1 Mx}<.!@I1!}'qA P5"%::?zwyg򛸣rĨ~B|-UgddrLD._xrĤP{̼k+ЯоǬ0(:XF Hu2m+#{:a,H1Kde[ڜqЀOkto.F6z0 Xt{ړq-vA}F(9Trnlч8/*8IE|b(RSx_Bz?-驇[^HAT"YÞm5(Ő4*i3hch^} : K0sUS?w&x2֖_Qے"* t^P%g۔yG#%9 *(i7rA_Šy-Yt7˿sgC.օu)y ufKG `!ӟge&\lm-is>SkJJb==UH ey+n1T@c-pQx֥݅ P h/dQ)EJį:A[t=q̤s LC:q#֋0 +[$?3n`uꇈ!1Ҳ j(e]D73]XIצRbANzq";Uť^u8<NjX4-y0s_ڗ\=YU`t9sC_O9gz>FponxR:pݯc<-ȱ*CtcP. A+j󃗜Z)nMc9Gڨ%U}ox {O]ӀonPlu/f9T$޼HtbCqtGe#o%L֨}[Л4(J@}"QDҨ1LV@ذ C`x- B29e_ 7JhO2Zn:\bcy_/ﰖ@" N{+,C{&+3E^)8G;Zpjo\3X}r_L 'C F_g>4 g#D}iړ:4$e1L6*&Mi8L1i@xՐ)NBeϢ@x+G@{?Z/['끇 0]\m{Xfz*#Ez*sNM!ދRlH_0[5ڒhd^ ks׏P/˥ 9V#&`pRvvIy <#(f:3D ,=9EC_);4sDl!V}86pa;u1fG+XAca0,߻{37S p}+ҏqYn?&"E\>? GmZod7ƣزٿ(Bnζ aՖD.wb@$v̌0\ y GpƉCyVT3hď6J! f6[g1Rpa_7EzF W{f?YρO**(1|e0 8!7t끕=WBK )A/|ƙ$MH$74?Ru(4FSDe{G)WBH\>!T3"U2&I^&B(Rw nI: ĥ0urIdǢ?(khg~-ئ'!7E7c H YT˰(^jY9EzlΓa $2f9-o[-T`cn< {0 X|eOag:ATR ϴě $;' c6/@n&UׄosΌf.>B\fkg/izf&G1"=N;CGVP>SeT$,2(e|'lrDUlRq%ec.KArslXfԇ/nU\:Fl,ox2e5X5Q[wכЕ#: 1ruP3h *w3 g0 bj.';rKir&>[ ov }\e@*;rE@xbc|%j=5EnɇC5l ^H =(ѓxѓh'0j{Ȕ6 4T)tb 5̹k}3G86ދ gV+Ѹ:[!U'z䄢^5[J ?*\6:{a[I-i^R'LO޷9ݞ;SEPKhVPeAMo$B CDk ޸㭞Xq q"/I7 .)Np$ *(pP2 a-(k~=`)S-cLNl(xMuۄjY{?KE 2/%^%ump!ᯖ4.qcKkN'[dӂl|+ȽT S44NdML(HCӂր$DEZikmbv8ԁu3钤2{!'%òxG54r<~'ʻ8Z 0I3[f@څuV#^߲LY-g25}v؝*y@pw=,*\c4ڠDn҃&͚Mh}IDU? `$^@L2(BCd(9AsM&q[ ]]aqE3:mG3#u z{2f\9n:-AU({)4[m%WpÛ WnhJ1/e~>$'rྵѠvFe(AIvlyN[?? "Pkb/9V@rӐ;0zY25"! @n'80-K˔~:Hyfmࠠ3,եyRnDj)&2 Gd%l$-ZJHlyļ}YHɁK ϯtmyt#Nf LXmS$ɱ[gdi,?Ŭ~gѯXF;k܉:]ݯD\ZY0@&qx0K# }?*1z/"*S+ Xߏxr WQCS? &C^ȸU=v~(awi36'=8τkE٧`nT+u)ps$ O&'_)ͶZAi99Xn HD{"u%ln_Y334[:M; ):g?Iغ1uD{bQD&Ve菿#r yYqhO0s$x]8ؽ%A%̞z)4h#2BF PvϿLpP؄9@=S0r)\gD yҼZJC\507C1gNmy>Aٴ8.sUU99`[`odL8^~/Ғ" eZq:WjK~9 ,#S)NCL¶vt'#`0-ӿDSP(gU6nRiGV5]4#\◌哐I Atnԓ>_2HEs7`,Yvoar`x*eKl}IlQO#n# x[3Y[{L_;kFzbI{qxhQK%Sݼ)`JСBVSFd˯QcŖ(l^{͠uْuA)hZԍKӾ}-``lhɎvJvT@RM$Ne0ŊWV߭v\UcM49XΣ>4} 'by'wrܜ`!Z.8'M=9%{=rwQy^ :ZV<'8cG% *oxT=a栓x@J(%K9sY3+ ½sх\yqWos" oedOΰK39~ 5'G-G8^})v'hVQegeKK>;PNĐs-֩:θ=k>,w80ºV0lTiwZSW:cID0s+ DgDsA9W%ơ&ٝD4^3y켟SGkIMAy%_y6hU2v m#|ʕ&UtG\ĄGpOp-uvaUm@z*S92zhY7<21nwGކ2_i8j")퍠;P\#O5OϺ)49ot0uIXO:Q7 0C#~ ȕ re#Wlԁb H`,lXa]@s"ߺ~EWSg<[}Bp3zY ߶㥀7߻?Oy> ¼g uլTz n5R[2,,$Ue Cuuݍ}k7||!F)$;G& OCDh4NM(kVӴr; +#yNꧬM @mX`&[bL|LiL@QұN3 "*9NZ" 2MZw= !|o_&2VdDyq鉆tIR OC'7#XXK[>%b |V~iv睤бY˖iER60g3*'/_1H_03M)[3;{ue@ P 7$cDea^եp bVE,*pVLPZx嘬=9z|LHg.CDL;1ϊ(*6/O\._r.+q5' doՁC]TbİK$,GB#>䖩Fl W!_3z8}b-q温ö3d]$C?:4IVK:_1tq3XB;"ֺY/̒?<"d2f0DJwKiOvU G@o 觜:jObA &(k_Eh[CWLS{bLfl`7zdI_UI~ip\I1%K˷nycerʶ}#c%X֚4GΥTu_c;a痢I!f@@_s{R8ҹĹ"VAFCA~X\I >:GIC#KU1*a{# G4j8A&o .:hؿv܍Q>Vۼ,n͈zBfsfb ]\o.wpޑ"L! 㺔!{ߍҩ ݋#إu3?A^c w}i ޶1b߂|ƃ?oEd>nhW-#o ;d̓wՉ#tDG{t< wb:ߴ< Tb@1ܢp@T{&DU6}mDװ`Raَe/sKlS4MiML}R>MTi(^~,~t|>Y!uYmm oI{Yu;)5p rC] 32빶>-ѮݭHoXCE!H$r쁌RK4kfYᓮPpxTB$OYպb>g%VAq\\8 !r9{Z])%#NPብ+pv)t N~ǖ+a."]A;Dܹs@w2CRXZ4!@;FyiqP<v7Z͠DWy7_C\inXF˲Ey|aUqυJ+}e1FE'a8i$; 14U9 *q7 UmhA+} kD5D۱vվeJL5(M[~FBp͒$2<]4Xf(f h장V4.5NjSE^Vۈy/'x.*t^~?EH?:'ι?0a%|mVht>sTm:TCNUi'AC6:cMQP 1chs> NeR2w߷e60-M sw(ڈӅ_y3Vgzz>^NQŒñE!2Bˤ#-G|5+ИC.R-+mhe$h}Q'kCF2kH.vO3YSt(RZo~/| aB2Ev8xl4#wB ֆ6n94~#ДsDCuv_p·v&fRA;5ɼo3+L* 'o*G&HEЮA [UaCT:]2V˙dnGK&{h_#Lu~ .Hxө1p/L5ouSi3v3#(KI37uvC/i@7Ew U8^m!d-;`Qx62$XVB 5堆'vΧ}@W`1ڸ緋[?{2\Hm 1 { @?~qw^`|_l1yJr u"d$/y$t +?Y EQZ<_jaM㰣43fK"I b)BR4?35ykޞ f7w,B$5`S D` J|Ii{|X? B9}ݖ5ĩh1~/`iZX2k=x }_Sh;>$_%Qi ˱r& `M!i $"M|t~UN,4But |W9%~Ƌf!n+BH8$BR+23م\JJmb:&W4~{4Ҏ9GB|l$~̭ڏ2ǎ0c烽j%xE(mF~(w"dr*Sο_Tqwfui [$sv* @'wZUl^!?"Z=Q ! ` B k2Z2񞵈{&Ί8y0 )nw2˹٧cyo[<+ vRK!aiRrLmKeɿ#Yག#$f/s $0IvoR Vͳ*56!/ut~Y{{kZ6Q1eۜvyu7Vo8%L=9@uR2n䰪)m|`? 4BF/N@>J.+5PSȲ9Xd0@ S&H , [I9/myySCk~fS&H8?6YzA>*gڼz1BMFbJXNy:vH]ZIaۊ Z5-K͕g.9Bf Vh&$sG%]4 (2 T%j;bxsƁ(ew x豧o5?ٜH2GMpz#Yj9uVkq4 Q7~gVE)w@՜ޘ-C03wo̦␽$Vf}3_)LSpuv =糸A܁H_ ag\:-%؀Y1Aͅ{_g]|=:`$/t?L2Ozhb=dfh  pR=fcGޗb`WMjr6~ ݸOA(0UN GCS |vMu;+FXUjKL"FDW]RӒZ^@d3uȈlɆȨ٦A4(O, ,3za)wv&E/E-m.s۸#!U̬"iBJ=ѮAk4!)Ҭ\nЭG;1cmMCb!4t0ݻz-ܿtbMұh2V xIďH7 h70ONd[`388a9" 2L^^?#cp!MZ[$mJTSq\Oȴ˼*۬%»%f:#թp ufwpj塐_%C1{ ly=CYz}3ZՄv{=-:=9 {%PcG`'^Dn.nx̚391ޟK}P)ƑЧhѶ8X8RȪ$۳XЗQ}_zٿ]GIYWkBo8?&T<| ,0SUg(4;0o+Bq7cpsb  t 1`hw%(LK;Pgzd4KɆ&ot7F6PzME?toH.jRtm†kK-uUNZL 6i9 Ig Xꈦ F | 0tlz"jzCjۑ)_cͭ3i/fs70 +Mw٩/`߄<{+¯P ſƒӴQsGb.$"#sJ&rXwwj9 ~`&\EO#R 0ҌAEpRDa-"ߺ@x⶟@_oMuX,FL-*ΔO B#unӁEJ1ߍn]RJǠapƖ Q؄qdcCF ?J@`p$M~e(/' 'kt〕P[W;\M|vIl)R)_Vt.L@9 f4oQKBMDt?]|*9F>8}o35efOaηbL|QP?bHpBPUQ.P Jٙta%#X泶07HfFz9V\.';gO2߻Z{y|I Bt?~m|ܔt{~*iA|\, \9J}l\a~-,QPRZk8cC!@j'EJ<& jq$w_eѦ5#-ވ%ڠ^moXcK2_ t,lFuxJ3҉k!2MRAUTjהϭEt-QzxӒv6jD *P+Ž~*[yN[Jsn>OYt 䔆v#d'PƤo!nD֡Di3xVVt> 5 #F @dGAX@FKFyS Tv*6E-<7Wc#We =RU4cKu53ϝ[(d㿼+\؜*jua5?´j[w!ӈ eV*e[s ;!|uuɖID1nT_G['` AV98 w@pQ#︂Z>>Gɰ,J.]q4FHMH!׊!ݢ[hu L%y]:62WQ j-\!*ŝ8j6PW-lطՋ BO| u3ws6|J U-#QrgLԍPcݾYN@B9jD #\Q&my?[`kAmIN.ZZ,7x> C ӭvv(%tqƛkDRǣ# Dii<ԅsGuIuAO Lޅ_E#әiD[ Eo6al䲶o˚4PӜE}$=FD"nfR f 4k[kS]F+Uyc>wƁ wAAf_ː_XޢF)l˅ĵ.!a&P?bjtO  g{3xJt& Iɐ\Z$?T"r2סn)H?y,$=xQ 3TQ\U`=h9/]&\d2 jWwrONF ćD4hDGy/:oHO)*{uB9;F++r_=<_#MS >J>8?5}MdWTNNq{ŋR譀#c~vFUd)3 #^G9(3VzɄss_@IԎK#3+Bƥ&Yzq#3,dk/tcw Cd85=cW7u}2IX&WS z%&j\|A6 ˒Su Ywp[q?/ksM[ fhbNJiŽ 3<ťkGI@^Ae}hq8б6 W|cI6fC'e/n0>gc N\'$ZK) `|qDb3 Xk- 3x2/`sʷϚ7RT"lrz9twSl4j 9S/5md!;~Ό!X2W,9A2e[BR|qm%J};W_@c? G+yKWʗ4˶wL@[u1 H7P?G`+WGfiljQ-$g2jj+@a+,8,$ U#y(Ȅ.VI'd@t9R4[ՠjUmQO$3mbX|-A^4%Dw%\3 v,:P悉 I޳kѝX8:#Ȼ;1UηV΁tc76QPm~Hv!zp33bgmSK=Huaڑ搏5t0whN-kdl%B ^픎ivZSq! ] ۫AF'XVn?)6aXt~B̠{pEyk6TqKr|Ju9n( jnBͬ*X3a׮`Z&(MhbuW zw~,sf֬{ i/,6Ws^Bǖ*Wϓ6̒̍eq C[^P KAtxZ=ܮ(:HɼiL6yPX؆t.!ߊ;X:7h!ߒQdn .o^2J9|=C.4X^YQ!G:EYMi~ZB̍1t8^hI5~ow9::,(yWl*dV=_--룽1z[ucC@QRp K( '.& rYHbwW6B+;z`+E#멕T !?YMd1[uC+7''ηk(QQkЄ: 3> R?h& =lt: ,k0t~B.D$zM ǜ2X업~1<AظW)K |nVc]܌ya2#$ΙQa& e4U.MB y~iE@F>MI41qT:Wգۜ4&Ct:Wi?< @S*5ϫ6\94: 3SXuS}Jc*W:毮mh^] S_o`kzߛp #  ԇxf= 394@-zBA}7|]ڃzXOe*A`>-+Uo %j@_?!>1gHn"d]rы1니ب8riWjJ;۝-u"BT2dx+mxNlD/ۻAve&}WJd)Vgy*M}12 xMOqƵje Q\ʏd0ysqZ1J+ o|k%5GL2'4z ߋ34YP/"lo\1C폿UAy#UuZ{fԈEvgKotVMQIJR=TSk(X{q<}1B/w,.~$qŧEU8qciojH?S Pݴ#VbAh1、RKN׳:gܾ+42!~~Nr)2i'zt?'xY_Zͪ"v򗈘e$єQ d֬CƬ8ʪJrrv{gP/[cD{?M@-:ҕ.4FIۙQ]Yi~?S"Q?@X3ɮZ]b!IvU`q\EB@a<8*rTvX$FyDJ NGJV0*a cq͑B("|nzSdH*C5I›ƣ?j8w:yeSɽ/,Ǖj{9+X`B숐\ܢFƐ2%~Ԕ圢Œ;?;4H7m%%p Q'0#z1|>H#y8QTj$_$RږP޼0:߇F׏|ێ#Jղ dF<QGt(ҦiQՉlM0T8 )5A!:{ SQvP4q{)Q Tۨ얩\a~{MtR Vw3|7aoy0͊ ݧRt+4`iîTήpGR%)6)JMIw(?IvYʐ{| dg鶺,1Mn&hcUɲb r TlT3?9bgGDBY}czC(sG#ɐOx?Yo:A*MNkLۮ)׽h4tZj'L7^O%֎u`x'"x>CO{мUҍ,) 5Éνj C\S&z v]"9 A?ڄ,?.P0b)Em5 lyb4XL+YhUMOU]sQh"`K׸{06%#3D11ryh70^fpw1NWoE "#&n{D[b{˂b-@4I`,hk63Vj|OlWA)/Y"mgAZRD]2KuJ9xͯ⎪]ߩpZǼ1^H[Ī]{0l_3z,fz>QryՂbd"wIuЊrN'ˇW}ns1uYY#,ȅLg;X2Y٩zZ{~lXMV[$veeG n3C|#;~ hPR[Nsq$ӥ:PR}D*Cn"k.gYP8lSwo_qQ$6h\Ws^R:\(A (ꌳ硧wAˇ--dY*b#VԸh~3+>!;lbo.ȄbLhbN 5cN9$C_H0N+q_N1u@tT l1 ܒ{F;ͱH~KG{-3 o6ulV""Y[GWvYX:f8Vߠr(u]Ev~/j}Ƿ*8:Z+Yzu[l0 B䷟&LkiitDynqF~rWҨ%Rv=f5HkZ'D8nL2U=3`oՎ=uڮ¡cn$g, {%Hj_ 9cO YffP2re%"Bi=C_0FMxL;ӓ7oaEA +ΣN [+0iAuՌWV뗆 D bfiJ.>yB?[nܠ}QmǷb ЀpC͎Sϝgk ;\W-RK'(7tpi'GV}:V_=~}ФؘR]ER(v&jz]`ZWYM_mF gD8J׵ͨ-҃\!VsyQ.yam@(8|rc;P2ŠökG2g_ @:?s5z; C/EC08qLe uߜuRLyFKNhx|e23E%[g~u+aՠ$-,{_qg'VZhLުV1I\SgpYln,=+F-9K΅a˥Xh>6#;}W'AFPiR!o>8I! hڹ12d_nH'cr U?)?ɓ!})g, ~΄ց goZwާQCj,{tc4eos9i| a7^Ŧޛ6wP R5#̵gɬb1ֶ%&iFQRO:xX5S;ތI:+BnKO,0|zieM5RKt7".1{ 'iu=uX-)1sim;eh]8!m2⧙Xl-EccvBZ EHԧ7%=Nf'fʙCJT۽>TTU _l5?'zpEҝ%,6MUh`'YbC̆!UҎ Zc/$y!vjr8W#Z߳ri*[bhJ;}j1]|=\*}XH|9c5[DJ56-qiK񼑸X!?#րyP>hvgzܦ:x2{ d9B'};HZ!wW_W14$ik[MK] Q ochgb{ǗCR ?sBZKCF-(;;y}>8|76txfeqm Dߐ {ʩwh5Oҿ613CHL]]O)axndYrN$[X 6後rėphH<x*ҏnGyo`GЂh;Kr$ 2[7߸[C>!CGUgD4"v(Lv/ꦦef}67l"^V>НPM +uPjtNKh; #O6oDsCL4'Xtg&a*Ӗ fMt˹6*甋]jL:\3|.Nvp7rpiWsͺ ,yrl5f"P9䞍#urÌQm]=yWK}swBx# 'F 0A޳?>qL@rͨL5ܰ:YvxsG˳{`|-@-{ǬQ˹k]վ¿IptY8TkKT8 Usµjl-'_ptk Z=q=t ׎VqAngaQfHU9 mDD=#cSAFN)9Kߢl Wc06EBesPb& vy< q XHۊ?yAfn %HU'QWvfie>c._0@9>]/2:|^C z0Uyư_3QH}+_14B)-vϳxg4(Rl%oEŚu] ]<~q"ݾ{dFN< 6vޡUo&%F,18Zp^0W0>+XJ3 d{Ĺk߶F2SŗޯIQ^0wLy 4T+{3׵@&EbPd QvCv/z5H}|#Y곉}q| 7Zmv/Ĥ>j)4V9CG,} GfmOHy/1lOJҥ]Mw  s )) nL`u#KBm#qD4BC{65gc hbSlz91;crj3bΙ3NHXV]@ P rP ydO1Ja(!ʊg~=УPB"f0\7(\!cn51;\zu ػ3QȎEG)\EBI7A%bU,L՚4 x`TjYdC fXdÓѫ"aomH$R՝B4X/ #|M\ <{N"/on9 > -xTsch<` g"Fm ] $d)5\w*w?K6~ffši%1݋t$Lq)!2 7g|c}鿶&b#ek.afhg=1'fX9W&W~´t İ[oE Bhbc,a.u~HtR3KNDK:F2(T_6X(X,M<K{!V/eK ?3@ܾ {cj"8B^ S4?B)kî`}^rFVE&UʇiUs;Htip󲾚l>)ij>eSmr3*hZV^x?NأsOE@@Uy\Rڿu/J}R̡OSEN TFQ7c0$MNy-"[Jn?)3n_qԭ%)t_':+YMw*Ǫhd}}Meou?!)ϚP9;JZLNw8]`߼(TJ2Tm[Kf.'6rj/%M'̙ŝᮌ/1k ڮ9 86ծf;gL 7 ቎@F<<1̞nI8rUv%{C%?źTz/ e#u/+SŞeG`zMlY)%ڳ* \B%MU茽ѳϾ;dG}I-ΙaU6Dd`Rg\ } hS8!>{uHC!gNM}w VF H|b+F .< # [Wn %VPEq]zy;bu|V9 _6ȮAPҲϳI%W`{9t"v'"O=U狂.'oepr[cJO/VZr HOYJ眑UaMeg[+7mw&D݉ƸU@!?b7SR?i4cg:[ntqDΜ\mG'td/rs/[Wj+~LvXҞO8ԅ 'S4g;R5Z~ϰVt)* >f`[m"a އqKBw- ,Btdos>=B] 9%V\˓q%(جj0b,{|p.h"h]i16"g!>_X<ۍT^d~IѶր"&lw8;<*L ΂e EtRS0Ek#!q j8h L)6ǧv _ 45}c49/.alP_2v>PSy>rÅ RgCK7+yP4]+wWDw bg8ש"p^:Zjeͳ3q8o]:A}~Ú.]_:YWZ(TŻ"Z"1@$5w,GhтY #3$)eP*:w_Q͉ڭ=X/ .wc^28!’[^%NebMw7Ń =ύ\=nRB ݻ 15T'e\+KLʀ_ܭJdOY+um箃ԝ+YZ(| $Pn3`y/w m#V%E5O+,L)%9P= cgX$BiW#' \L"ik:PuNDtU&97As'~yBDgZ;X$I-3VZS\V|EuP\ngav*.r>QJ(! (mc*Azz8Q7}MdtNj CWt}iYʍQVJ[Xݑ\M>]]žj'߇qiI}+D2c_Z+S7>̺K\`H)FjOεQ)L*6"0O3"IyNm8H} @R0 w-q3oÖJ9uh<0v\bˢvCĚT{Mr4B0|g-1 dB윉i PߡUq=$)rkZj &Ԭְ0bj1c-_ס`nuu0;yrXmŏ!a;P;tE+pS`e7V3⥓fLgf-.2JBgayCDc'S"ܦUe,sH4|"BKC4i {m7J\ZgJeeFoiʇcŚ'0c BeqQ n 7ze,I9'av=ωJ$Gjlf8(I*;f."BY}ku@L2:ЗbȒ(䓬8CƐYc!W՞VkGOY9!K-VK(ܹ45D=Ur[Ip=qF" :3@N}m"+'Z[k=b&7EP<*Vv݉sʸLO7*wU&Ty2pNw w;жa"x\]1N]厒l֘9}>6FAt~ 3f̬ح7_>Έ(fA_,\e]cΡ}^ rc=J ɕ-&W,wBmbI?@K\/`{XtSGϬXD a=Df=3QgX2ÃBJ[SmOskGIN-͈`M{oGGSUGEOV2B 3Ui48:} ?j,%2+$dy ! *b=z.X'pA_ۭBDfrpSAJ$P,I qz9:_]dT >ֆ}>_1Z#8T-dG|ĸ):A4"aƽk_[!t" IlynpMvLo:5J R% f׷7nP`ј ,к ,y9Vs p*I:D8Oe4uo %>rKdX-ڻ1nf m{GΩA;wN0ڇXl:+q_ik62CĨ_~z;j9i.C{ F7P-^d=Iir☚1؎QjО˓0{3{hgXr+pҐh-(o쓗Q;'M1k­mNP$8% ϣY#2K{^8_eE{yZpQc2Džl{TGC1Y|; FS J*#VXН$74x\d]7"c=Uɘ3j8h7㏓Kw чz`OKiVbיeUff~AdHㄯv7q0kmXJ2@rg躼pxU$טPBX%-phy H8RI6&)w|\z)I \A7sʮO ILU=8(9zkQ*X5ZoutM~gn Q EG(u #SCْrv\d?zo^G->y3/v,HN.i4ҵ:'}ZoDBހJtHZ s8+ 7Jf> @w^ >D9YijS c,kn:qt }>ZuIrOyriho0--rNUZ$0T[ktXC_Ω/t/NKb4c; qK`cp"H,>Ge2׫cvf""hEP?*q%1[W7Xڭ z;1PĊ*g .H=Ȍo?Vɺ9VKutzH" Z Y哚e>k&ȿԘJܗ ˌ\%|ElSYOqVr8Au| hRoGTa/ܱj f/Y tk󜨸rBt0UR ץ3YAl<O^ߍ *lп؝>ؖQ 4<zZs"Bx@5WHnV kKpX:J '^0_!/2œVC>r:>-6d7Խ}ԲQ >`%8!"s1>[,ǂRAY(l 3?>0Gw[IxTHxl$JM/pu+,QZW5k b{g@: N$Oda/:wUab{czeL.R]P2mR dsqGԮ.Q˜<6Y/T'䍾ڊQ*,Ҏ'< R`m pYޜt=T3%+im?;JSpMpfOy`8'iGk-BbϽ/8$B>bLl|BmDȉ0{^ni1R?u!¾̢ yً2A(n۸W8Jxe=!͹p "p22I[SxS_# Iew׫61JZyagˡu/^8 "9(=mLq?ZU<#*(ӸΝ&I<"yQr8= .X2ʿ=Xpd- jSeG_oJ.Sҽٽ`-&h~E:1y)TCoxpTݥ/XxMjJ'mr8#xK/xX$: ɤi_ +:!{x_ЎQȯxkoa#|#g=}פF 0}(8m+ K쾪;). Hh;տ킀eoei~}z0zpq"vaݡP JK`;(o=U#.p_[x!6%ݣCa* | 8Kl~i49e_(bxIYtrX6CݢV)VϝD*r%սZ1V8<GzjWː$sWyc8X2yc-yy"@rfq *~Z"]> o^ąg⫪4*$ SI5{ DՕ H^6]0^Aj$5זWɔ]T2 ̀jY2ńUoꟖP3A(''1lL| c"hk)CgeZs",taNR;V&u2K eD/u nI vD5j3>GNv=:H4;t,4'b'b!_WЫfe>'aK~Y[^c"_߻Tmb.9( XTѱ1T8CbbvðfΝ^ԇĊ3u_dBBEQ a0 tLa Xݪ9:O*ihW] Z7vI+.xnN7^pƋ&#mVMyז*Bfӌg Pԙ]hB۳μ`n{3RΑvlrG8RiZJ|q=A'?X.4E$A˰fj r |qOGI#{ÃԺB##MzQqLs>_/CSlrblł!@h+ު`=L}`-wYkV`d($v,=ECә.0чޯ-^lj2@>[j^'b'ˈ\"K8xSq1@=( ;vVdՆuXL-c j}~R?Mu<[]2|,o6!=Oŧ:oሏYp$}Rkn7g4;.)%V},Z" s ʭ3 pw}wz6խdKU>i-Y< @)w^vyzZDca>fՔ`y%$.m}֫YܟQG5 x!t;=yq2u}[LZi._'>'$NO%!pьRIȼw13;SJyqCsɈW1_!W kB]_V],,Vͷ"m[&綵ISCa{/^`6RmvaLT?Aarjѻg%;oTb,”1y}9 bF$r?#ADc]tqrFlze1jN> 6 wb:5_鋻J VPp #lCEr S!! B>ޗNAXZgBk=w#x˴4 wJTDwm>}OG.sn`/9 Gd~^;!}ftrf{_i"imH_j/%~:8ax& W4,k/UQ,h"EbYݤW6}t,"Pc־N3x"`>a(!Hc 3U l!!Gŀd(xMT+#U%z`uf 6ֱkN\$3SjR҈7H[,KС>21{`_~7Yjg-Ts7- @hRɜA VM412`&ȘeYp,}8jE:k-&ЇSjD %rߠ?p^|Їr_ 7BX,æ$f LEldi JF~јLuX!K뺣hc~uYdv"VvON,.NdiFRŽY(VB;4b목x=| ',n]GVll^ $sڝN\Ɖh6bjD]Q?Ŏ;JX(>Djs5UwV尫U4aG2x 3Baqf4z'7P$BBnmۻ{cn(Q'꾺ȰB.۱+WK)g`DG +mnFꄾ#1;r&Zqܕ~ Qmm`GCa'T2g:Q!h֟$ZJiX|?(v@y .-z$pF3"]'_utRZ/b9K::tm@N~ޑ@y1"]NA(l>MUiێtݧ-Zu.W|ȡ.(adӆI}.4`Dks q s2/*{ ";0X#!2UNo ]{fbspm6]|f B@CLDybr*cMm$W6i2ﵠAFWpj>Əľus>Ue'1ӿÂIwg~p//-iWkFVAG)hflM#ټ~Ati)?E{BNU!F}+Cކ̇UȑYݭ ɞBˣA" "w+g CK"4[UOѫNZꚓhBN’4]]R qa w pq.> H&FbԨp*p6GOg^&JZbo0/o]Fdt8ϥкF8bvZlQ)BN,?ڜbDI#i,`p8^rcL_Iݻ%l}HmdNLdJn磄D ==Ƚ'`8zCXP0 <yY9Û9AxC׭L.̳琩:^<.Ny}]KFʈ)=+4Bb,Op_Ȑ3oxmŚ wH^|PM-paʋgP:q39';xJKl*. ؼY2;mW-pN~32^aېLKذ/47Uz0KǻA }5 Ig<,ȫfX]NG!b>umTX7qfc-&)sp`eWn–ץH. bG 8!}(a5JgfԾw̉ܡF9w|&h]OG8,$%K7U<'\vo 7 /r UIڭo9*W{:TjxrĀʄWEĖJٞunpf+W Օ>SWO" {! (NJ5bm{oYh4wPSF)el lievvV \ D}ˋwF&z]\l"~]I6K'+^IhfCy r,ӗJ"3%z'I%>l>ʼC(1ZuZɥ _·N-<|M.[1;|BD)OJudFn\acݐ _n|ilFU3}9e܏ǟ#w8%אʮjx6%uc_lj{]?T.fXYҬ=Q)w,Ə9ZJ@cp{lVdžѫ&>,m%KWb-$5wtpybCXQHϷ>(--ST#U)@w\A. &N+ݤT2S ĤLpg YL9+F) JAKWs\%#QHU@Ȗ,i# @CС=K +SRlШ[DwC#4 {IѽGHb¼,aWѴn֦/L^ ӃE/K&X Bbq]<{UH X :ټ)Iw@-ޏ&f'j}H/pa_tH̀  Ŋ=&o40m"]FԊO=3ˋ7[Dį+uŦK r) NiXɜUx%% ]Fv0 e>5ud6lO_*3l;h&Hut@:BQo! x.R0lɈ7&mhYy8تL U>G W@@Il2D֖2'M&>`0;xa]`r)dcsʝ#|Pq16lF̴e1u14ؾw.`N`K9c!ޜnYY%X,"¾8ⲋ }Bײ͞$_7FSU?u ,7BQ?bXts} Ɵ?=%O{aGB:ۡ,U?w^YXt?ʴ' E%n 98m 'жuBR&@HYb `Ohwz=82> B@*k%e874R1[p5H_W:l4ozT> `iu׬-G`3AMO+07H] i+^; s)"oZ{QJ&[?ȎvFH/q0jVl̯1LIY .U=SBi(:{F Q/mTJpx4pT$̴*-fTw@Y47MzK{@g M1r?M(LcRn%#+C .Wz\*hzxZx3žQZ\Oqt`2^ģӭ& L#Hsl i_PO |o1 b,$XpQ"vv_[)ei*k"Feʰp(˯{bG }zr"/7O\@*nr wU^$&:!I]HBr39d/$tC t8ʛ1mF/=)_c9eFH5Ea$ -:RGo݅b)-nAԚڱ {W|~*s)J](L|knzMV9M 'z2op(g[]*Dsfk!?0:ǁtkM]HKQܫ]$8zFNL\}LJeqx0Ӡ\fˆ̓cKx5ۛ$q0-կ5N6'ȴ(ov 1A@he5B!A~E0m:a{O-&YZ&e ʖzCXwbRn<?Bs"Qk p=rJ.DGU{ݶ!绽u4QC#3|N͓Jc^lf[2&6GߚY&=s}zi&-hľi}/2Y6}LAN)uy:*h[GPmxA-Un?r _5EXMm3g[9vK (p`Jf#m-4 Co[1rS5NEd% RGs9@t[bf/Ӵo\jH7?vP҄k״sr$hBCkɲ]*ef:Z8fM)]S+m-.[\S.Xj?.t-dt/wt.!aun@({a#O%b(+ֱ+XN,F`[ ,Q -rZWt5Sr'ЬЮY\5Y3qM$kQFOyz5v2=g2OܻqpܹG"gԮL\ށ2~IBȋ@̿xn@NXpi+T& k?{@T(TTY`d<`@OO; }l_ȫSލy:y\9O*]V8΂M4[%ֺ[L.0v Ј8##ߔ''B]]١eч{AG!ݛmJ\6kkqSO3^2:+Q[+?ʘO*jNҙ6Ck6u; .EzVws SY M@hqy3+ "h,rp{e(T7+wc$ЃZhy }@!\Z$XfmLxZ~.hȷ\IA-{ނB"Y}~R%CqU.ZlyA s )jD;RbUݾ3PT9@OR^ڐ:!H^ 37]1+ }&-|PI#3!t;ȌAO%1N_qMv̡g p iXK9Zw>"4aPdKip(H(}r)mWN?e9a {b94x|FG-X)^6]RR҅2,^TPxV'7D\%P{=^;?~!-MR~JSa/'+SlsB8t>_?606&K P~dzݬk% c9z,?!Ndtr6㘫?9tqO]&XB4KNCB+S*u ٌeXĿVܘ+÷F%T8ɶ?nu'攲g=p%d@AQfc.ڲ{\Xl,`v`ؙNȮj~ 2o(* }DmjAEcёD!({Q٬t]S;R7n5s/s-UpHj=p? ^\(`ζ]`y3{ ZG L-”'3en]_,juqvC2 ӾLfj4?Q^H`GA2 N3;V}&74Γ*{٭~S'5 GVuUewyekD!Hfg~}Pd,!'P߽~Ӫg{ӓVْYPWRV45+WhX'K|=dOZN2aWP̗)[>j8aƢ- lҫ8}kƔA!sgNM#Qp@o>y3[dߵ[pqF.٥2 )tqUC߭ TTX<ɑ Qv=mdTrf &m^3Şiǿ% E?p\Gc g[Y6(px(<_/FϷj[i&xv t,mCMo bP{@)WPPvZgݻrt"RswqzmMv3PcÖb9g\6UzlXUQq )ݙ2zS9#QdkQWZι' `$tt/Z DbF5:j.+m,vap.]N\amD ܛdn{ j=t*nZlZ{Z6e)Wke"#ֿؓ印(Q-2q̃}Rq &] &[]~E&,Eݧcr0d6i{&HaKW0[R 2ճew\}^}vQeG~D*" mq@'r;Z9e sd~/*?U8!츚=VyC v(؛GCc!3#<[<}PEՖ.*9HԼYWlEcOBO_o[4UzǠ'->"'1=eGrpy # `!Jg V_zhb{\7`lx 9RV#&^:cJq3F˗3&.d.Z:( Ea2O͂¯ST95fߡv_C;mKW~޴C_iEO :Ȩh蘎.Bö~\V6dS:si~H,k褁IԈH+t!MOǀtW9F"R_kLȲ(k}s '@A @`>=QzŪ~)vud a{:K$ V\@Z,e!kMSL2nLXNhLIQBaߢ0,6HP}γiXl@sI ;-#>-#w) I3_M5yS,Vl9<Ș)DUWfɁeVGL#_G& 'Viz$8_W'璽%W~VO0'|#S~8cHYQ_#!NUe\/M(љ}G_Q:!sst>L{KbK2R& 0PώLlw^VvBȌE6IGTp1\fiMzxg49 szPinˡL):E+rXf4g/etgT|l^<}'=Z1/:X7q!R=Mi#X9pPat'in?8¦M8˳CG c1<]U a>knA\Kwc<p'FQ|L}:RUe7pY{Y^bCx +̩Y]u>7kxI^Z=8-0-CCl.F&9Ǝ.ȃ7XsYE \;/T'0N&Ku'߶.wG5Ra5|Zcc5goP"^R2$HEa Yۭo&(N.[$=*qskXߥ4^{5a6քp -N%Ac /bU~w60F N<˵.ߠD״MNwשq2vX{vOrl?[ ) * |6ΛH;ȴԃp9mKo?wgt\K /+X fILvFvW~ Qn\y;m!*gԩTkSY*^6XI6Y`uf~ UOrTmk3+qyHm[amG] VpzcS`j|3Q^e,$ m S;Ǚ'д|Lq7+b$u;kQ?9:D@r X-2VDH9\ke{`F| ұcs>Y&<tJX§5ǃ_Fţ/=\^3t-$AVv!̟x!hB@ŚH.43ELR4 {%K3wPUg%]/~eME^R{_h oI ɧ 6\fs;BQkTfn_".C4rރ'qe!/a?0dKpiaVo]ipi4XRQ{6uPM;4KRU>.}4NҐn~'W$*wP)!%8Q_BWel ISiN_M!5̨;ǁ}k)u`Dv``5 2Kܗ"mEf ғSsRS0DQF~[QxJYJJLUya9xTjiS*'-HoHXY'+iT ofbF[IeX/YR7LT sʝƪe\S½(j&݊23T!;s $j1WO4Itytn\e!7;;W JbM+_l |xixNnVF ,Ab*SlY'c ?; plS]8f'fԾ7 Ą"q{z)c-xvݬW"5jR %R8Wp7Ck$+b7ZEJ卒GﺜG~H6Ntn|J4/' ʊ tHg;$Z=H4sƫ46z,9wEb˜ &cx#UJi(ROȡ,9MytáY ]ta )2W*{reOة&Qu.c oԈ ef_׽QJZYߝIt$@EN~\6-emGw=7,U19˫S|bφC!>jN/ uD{Li&ÀcC$Hѡ sv⽲zߖVGJw4z/q"kDJ%To䑐i(<^=mMw@,-"S*0J_%a0 MV`g2[ 1,p/7YA.d˗qE3f~ism?Z]>*:T 6ϣ9ʘVl$3Yca'-/Nq ݟ܊JY<PI(l:|x3U60,v<؇ʢڦmd+([NQ y6)} ,N^x[}>gOd=? );1xu /!U[ hh^Ihph)oyσMl%+a]P6E{WP&N QS)@.ع1¯lƾrյ{n9go&LSn5'/ͦ#+T|9Irja-WBQL,h. OyQuZI,/]Z v.=R=EU\Vf@?iZH%|4"80ݚAgT})J.@+9#PrE,/9 *"s\YiF{+Zx#n@x9s)NV0}Ŏ'R17 l Ku8Rjn#N1UKʂܺ[^Kה"My]bB# yύx-o#kLnyo&9k=7DJa~nRQYN6"rW>a0'%i(즨i_Õhbss]ϝ0zP. ol.rh&V{a5@Y _+jMR+hc6 B6'4\BXl<"rWb쫡-2p咢` :q-׆?F֝JXrƖsI|-jZi`ŠU~oPM`UA EI{ƾ($SP+M,ٌ}ԺФ0TV`&;'Vk3O?>Z,FC+~_]%3GM a*RZX)Su=~2,shrK/lԣSf-G[HYuyNb~*gN_BqNTb,m/,N@ǚMI>VV, pTNf[571 }+쩳!!y}vHl^H׎PhzBu ҅KhQ/ I&/1+6\;'N3u6 PiMeq,ix顇Euʬ WX Fh2XFGi͙Ѣ?^wxXU $ukQ6Ϩu鈾a b`< qdI(17)l0Z΋ogq)yr64vvmG>BQy}L$<]gdi2JW=لL< Paȥ ^Z n+=`in1aN4G1fC_D}I9 ݘq`lEݘN%CXrKcW&)V%(>B ctF^Z\n}JDkI%'_o`W-&/>nWͷgehuQꩪD'J%McY s\>.?O/5x˥Ĭ_ŷ駍^̉Mͥ;)uk N4'B,٥hJlN+LU|# ALsEWvaA虞FTϒ|wswp&؄ݠ9GzL_#{*vH^r( ]٦Zb4 *˖M~QQkQU//X,?ɨ0= >tBs s| r?O[dGjq8vs]ٳۗg#-z 3|<݋!p@(v^t;^S|e̛.#5^v9^e,s\vFUdd[p)dt4@s1GWRވUڔa\lȵB˜GTqCH˯Af2GVF,v4 +Hwԓ%q3Ň;?t(v-iGĪC!7']EoeHu`rd>5\GAkhQKMh& }9kńv\-B[FT,z*5~=:̱($1d %>(|j0lw܏ch,4MH e>QjE 7t@>/5TGj?EK?1 nZ1 Mv\)x{X(˖"X:7uĢ?[~ <l!=}lN`hUV,pe<%h*ӼC?:]:.1* XM(~VuXޮXџVS fs"zR˨HϼWS2j(4@((&vܳBc$ AFMYNRH {",.t#G>g\ #^7w<䤁|e΂|ҋw#4o.>Z~6;fodx)~`A&k έ N5%9ы뙨PYϏ/_* 窩;ܲ&Ƞ3.W09qK ,{G1 p󱸰QQIrb8_v Ao9T1W`G?ͬ>ĥ3S9#Tj/Twӛ*q0*~W:dAPșcꚣrܜ>l$B|]?+O*?~"^r"2WY@qlR}/@U64р8zǽn IuG;,A#BhHx]]RRݲCeMĪL%?7n59\Ve$GTB}Me3ઊoYq S`ɟ!vL]'KyS.W."3Pke7,15WtT-ioBIH֟E Ե/nc @\[,[l[A*Kzes5v뙽ΥMc\%2'k* @4\EGMV<ؘ$Y n?'߹ܚˈTXY= Q6b O$tRir/-\t9!II/teQz-sm#AszkU"aOKrS qΥv\= E_4/`V*Zu)YLӱ"aX艚 xfق^]ŃعgfYG@|g?;fH"9+H>OG^^IP M#Ҫ5!,KJ1]8=W_\1m?[I,kQfU A~S۱ ᴖ/ .VmdZCϨ1Xklk[FȐ5'[nmAḧ́~wS9ێ_b20Qiab1HmoJ;O2)=rkAS B/lBCHeƣC׷M_,ot]7Z {:qMnljn{T塙w!kj1>8Z5˂))ӜPӇ^b=/?ub[NiGC4X;Rz7I稘ϑg@E+7njgJ^)4ߟTDVb}2H9VG րDصRpdomt{-ft^"y煳 zrr5'Z[xy_sۤȀ`2't r $}l6޾~hkļ|MޫO!d]!5. e( [^mlۉP ER+a9;l'`UuTJdݗ c~t-l6Cxm[@; O`z5|6xu] sX<)k頍TGv~__)ONfbAm$yX̖)kp Z}@"W"ﯪ==Zgq瑽o{ seDe|[I<- hS'0ynvhM`,#sJc28)NQc"8ѼiR\#:PFnY,C~N#wSCBk9ǑÜlhORVpr*HO0u>dhШX4ku)4n( tcfPB(W~G ls ulr>XU۩(-vԈn*R=jqYyLnPN)አ$J49(9z`aMQ̲Z&P-?@.nrxbA!fDh(.۪;Jk6JIIۼ> d|DGSLBa +X{,t g+e~3f'$ )8/=g>?u_HA N3u&{;8_z ڏ}X^$3_ 5ăCL|wkdUHf ,)-#ƕi}UzF׾'?@lʹpܛJZOmO.cF`gvI@MueTV&spUl G9Ѷ:Sy-5J >Lbw2@y'}g&꽳!PL˸7f,1VvrJ*hs^a┧2ryePw.q~ +JP5ÍlqbFݚ{9MbQӽ%|KL[}j6{#]xf?[uZVDʫgX$ EjC rWTЎnP/Ŋ_UOg TYws*mf d ~OMB k9H/C,b&{8Ū2>d@QYB@|mq-!F3}BLZћYrV~8X$bg-2RϓU0U4$AW^dG䴢 k~jqq 44N^ 5n9(mhǸ˿`m랖#Px6 割2As, U/λ g5🵭Q9Ukpv ]/3ŘQ݁3P/ igP}=|= ^? rb&w؇qwhfAZP=q+Z E3*#UA!=8;ʤ{>uGQ=) i49g41dwpa72V=Ë& !^rMf֐]˃p3O&_94Sf3o+ZYO$Mvdts".iJ=~~ ܑ-ʡR0%*'q {=&)\|+,a\p)?r:yfEQJ юyt/ֹ(jj9ߎ[$pfN.XuaX,܈ЉBq)(V==l<F>O?q\az}@LZ'Nnjp_TγgB7!P)C="JIN'7s/|Mja5LJ Z}::S{Yʙ@:gTPJ؂ϩ0k=3('cs҄$#ɫvW+ ]m=&!q#E2TdyI}5s6ؖ ͜kPq, b&OzA$N*XɂX=!i'Ȏg'_wʏ;2e_J+da+Ei\,KZBB7MRlx|"N~~An]aMtA.8LLg~VLF6M`J \EM~(N.*,_0X} E}K/3xAvɔ_! n*IAv#w6wb7=~CcRuy'NaݚhP{u_Im8H@܈ylG)uPeSʭw-^}RLXC?~] ;|[$!:u Sx\FeW$-wc5Y>YNЕTX0)Y\ZĖy aJ6x- "プ-TءIF_<}pk߆zN? sN ͗PP0ժ(>Z XēD:-乫cKGn imwmbTںR6, h.9*DEkoAfBWx:x,*x OG`ʱZGB׶Vǖ]].KLjs`cwAy3BnGJNn]?3 ZQP9BnJEmdfJLl~q(qBhu”;@ҒQ"JׁF6-z;IuZslO Vm`60͓3a{GGɷPݼnަA3(vĮ72 ^k!pXYj%|fQE놐,OBw"bFv52bI5CUsbóȫ*;͆)ź,1F}Ɠ {ۊzoڄQx n5}y&tg^sFϔw4i~Wnk^L\Hߺ&ΔJMƴȢB7֢xa& z0U81,Z9eU_NYNJuϓ2]B|Gu T4"fR*y"=a]2E*'O8U!,!773?S-Z0]:P8h9BpSJ뻐_3 Z 𚇱c2'P{*w1^@]sGS.N}SjAؘ;IO6-an[u%bf$ʛQ| udIfYi8oGCg‘ x.俯*DK$TDִj ÝL95ցRXd~)Yr;f&^zƎ51`Ve a.K3> 7^M5RNT˓@-!/xsS$ֆ}D\QBO E$<;?ϫ@Ҡu KC8ِ:me3Y"oVcƬJ,7Ҝg|%ʖx+d6c":(ehP"y!wyKr"{PiSl(s372Bq j` e%yXעg*~5퍆. Ep5kӀz7DN@ nROA?DK64qlw)&V 0.1v]du"dg[4}zS7V]f*L9[p?Vƨd&}:?`x Î KoRZ{mqJ*>~2X_G?GZ q^,³Yc]+"lD[zkAWl5T{!!?m/aɔQ r:IЀ%MnpވI$A|1DD@[S3^ LxPI2_\ hnΓGgr颇FTR'B:Xs;"~ C.#de, u7O*SPN.餞US42jR>!:mXdS: J+8E ژ~{n|όOdQ:߲9vUs((bbK_x7֍VoQasm<.zUXZh-c4|E"HE@1wP61znp ny:Xku,umYj|BJn vlᱛZVSZ4nQbǡQqXq<žy\r4+5cb{?^bE@gKĞ3qwDaco#hCQc4 wj-E8G Cf]X 6Hj>[.%H;Ӽ xatx˘]#_+-T`[rHs3ߎxeջG2M4 8fp&2~]]olXE^fzbx.xCY ҇Cf Qjk$%/NdƄ<H ­=Gvw50ˏlL*y{G0o #ڨ!OjP,?ۏQ$ZV2ضA7J%C%wj\۠FS9M,AzLHJzNMG{_5W+f ɉJ,-i~~hKTyqW7RO $֕%+VTh m D[qtZ/|)z"Ϥ^s6jn6AöЬPً}<-?JJVl' yXX/1%lTqY,Yt֍h:,'|3]Sy Ạ:dD[4IpzFTs4JymϱBkJÁA5}ླuAtdG稘S:6`Po*g`tuP.[pV]8kX[Kq6 !iGʖBXD?n¼*t)f8rIP`^tgHm'kfvvYcc'aZW6*c`;]4-»q 77Ky{ER2=C%yPDHqrR镋]nVJt[Z4/?jc)bgQeGYV>.:6V4Fŵ9|y]LjB{8 h'ֳ |7 ԑ괶hɜ`3l̈́ 2w6kHwsUwW0F(TŖtx:XT&wq!M<&4^gx'F8k,Y>efy2=brY0v=D5iP_DnH\ҧlۭyT'y9]^S>Ac+BH)[c &nnU>N{mB! [=+R6>lܞF\Lϔ/KNo*g0 -M_bjGp%;/4+ QHyk˚%8ƿEwt5zY *4cmLbC -\t!-<䷗"88C,CS9$RSvE,}ۼ ߜB;-s.1D :yL2 E-rj5ɝ BB{Ԙ+"*tD+(~͸ QXT xA7C^ĦVf*?N#XE:EIeLxBfpeEq:5\y51J7u|IImS&˸5eMoJ^2"-46PfΓp 1N\EuB6\>*\In䅭WHp C63"-Sv+Yqh ?AA\iRw>Fၣ'`e3^ Wյx(BulfhΙwa+aI\1EA ]&M]Jj*W}qUJT[ ,UD&6?Ы>Vg]ąZ\3#0PɏZ41=ZEڕLCM??\8p[-O貍|T[F 3R3"ó]C`6pjބۚm G|%[P"D^"WZ7#7 ,ӗn92nZ&@˕g4Κc+CLv3|UɺmּWW)mOҜ]<{ UMbqhTfG$P?zn$:oS#A-ddGszYY+fTXY P̐S`ozЖY-Cۮ9-G<6fa̱XýW9 7Dx佥u+X땣N`nv"R Eޑedo|n`uZ=*+ДAL%ϰky"?ߒ<j8B lW{N*: 0;zeYټVշHBbny/4{kJ~PJ" On/G>)0ߩ8 Vm~s;yeͫ-af~}+TH~N>h7X!L!pIXXwQ6PFC%C 3&Yg=IStVAWؓ! zc,PG䴬_zVt~tg]! ;tzc`G>nu]]y?~gaNsĥh].%+Nl]Q"䑴b^K̽M(GZŚ\nr?Dbvs[i>VZx wPf)lXX]z Y*ᦺEytgQ T'Bg6=$֍ pwCN Z^VkA3O{l|Ӷ-fX=NlGٕI>J{bQ)եCfN2&@:\{[$䪶$u?p3 HcLKKxdG2\UL P.ゝ&8a*F{W]z (m?P?ӊq緅(+ג?%3mP$uH1 QrǦw4RB9Ay5N+qg{KÚfr-K8d8oS{6FzI>m/0C+N gZ.a1.Ig `);UF=6+b\Y8Z U6`kx/U# +|Qovl9d-.'G.'\*ݷ5aK@9[e $Z =&kVVua)ތaaIF$?rdzq2DoL '꯱;@cr*Aa:0hQR\T#ŢAըicQ*.kCPG }N|R̐1<ۥæ`Qi] A(B{Zbܟ X; NxJ2]"@6wg~&9p+cnW||sPLCIԘT~Hvl5FΪ ʯ)i ߨyR' Wk˫[P5 x&w׽u{DȒmܞ\$V:k!h{0I?\skXLVp[SsǖBk.^$DBҝ-9*I_ROϸK>3Vʇ]7wunRnZ?s?\W[9&B:.3 ɑv VMS1}:| )FbY%>WyOFj#Xֽ*{632UɯA^#~yVم\@il[j@ġ (ڳL:*IR3~D, X eD:!GH|V8hZP(CajqRO}=/"Y<J7者fJJxƕWw!H /qg B"~eMDv3h{-U k4%Fz(?I`r^D݌Rسg}Pxbr4j6C$c>evqi<C> EK׊?,>Zcf5\YxL̎jBךnh].;ics'Om|8IhFjR_0öST6ZNYnGNF $oH~*]:z p,JA[яZ‚ (6HEi{D骬ÐBu1gQbO< {U5֚płN36JDkgl%DxZ:wigB$.hÕmQa+,[e |M3Vr.nBnh^K;e(t֩(oU5_v0X`#KAJU-رHSSa1XIʥ6'OF[2! 2qZ:^A=ڍԫs[3C),ԚߌHv){[7 {B%Qč?20kSۊ}k@-*u\11JRa?fLiKp㮹 uJɬ$J{jSkǾx2,QJ!wjq1{dTlo\ ̜˵]EgĮ[*N~]a:x!Jd׊ AYGS{zSsMC` Eh&x&[K>Wߩw*q?sp]hC4eI1|szf(8`+e51ZWA#@.bRdw^LU)vsƜn7"pnz8h9aol0i盟dGٰro/N*pJ}e.o%2u>p/782n楲?crY Ϳ*rO"Ί{бYƠzsYa_x>xM*2J.kRqQj5%kϏFG:߽ia#[?Pb9 *E7(IU * ](?kAO~_GR6&=ڃGc}8L 6J?zcw]tɉ@,t%1\Uףբt4wHae|;ZTI*'q3NҿHG="r(LO`@;qܭ[AM-D IbĿG>S 65|}/ }W~;Y0c;t)L d"pe<˘T~=gHׯ M>O!fFsz]hX b_o;콾]Q0ˣhUpS.LU^8%8*|  ;A8_x1c3JWjtbA 9xx ;=V6܂&޷zjЧQ2&s /ҟ&ީL CE b!$}\> `\*@ 3 y"A51|، \Tw/)@Z(2loq*\_6CalBk"_ۯ)-+] />&{lrYޭ4=ƅh6 !tk?VV;o^nĠC%8ϖ /c+*:iS{OIuP nqPМcFu!Cc1uKPXٌs8A'/FZ Ǯ=腢$n~߾BC )K?o.d/-sl\DH皡s'FFfx[/X= SRRcDaR:/Xj"{?ӍG;'sI<E)j3!dNZ*]ey;a."X9N*;"Eɗ1RlCIa,RP*̄HrD8L4OHe6zVpبrbW86aǘp܉piq\,r@vrFg8GrD7CF4>\Q- fpKˉ:fQ(SQͿwfˆOsloڌ5.94Gc iDl<j? {FhlWZ" + "tN!;j V抇;;5 !=D4m~<]3\ _ :YL*k?%7p<+R|ޤ! EMT]p;9Oִ܂qځP}y[4^d ˊWn9)A.0I4o:M&kf\0_W>mx1h˴lzM n`nE.v1Қr1Kű[nӟ-mUT6Β {9Z^a91ӉBeDϷ(J3v )'eN:b anjfs&rl;r'^Fׂ+zA ܹ(ɇ7"櫐׎.cW@yJ<[+6iύTOSgUTdLJa)vds:TWތ>gj`5lM{ƾ>A =:Nt!׭/Tfpr7(Kx{^*-,@Bgto6o(AӴ1O ~Y< T7y`#k ?^)Fj%옂=;7 Z3OgTDAKZۂwU!2gK{ۜ웂ioݥꍵ Q/,e?ޢAVTM/U3+ibfxMVG|-2ڼm7;hXb.:B :_$N 8B\M|П>wJNHؤ4Xq)0$|p&p&~J8Q#6-K ,Hزoe*.jPo4bY̊r_UZ'>pVG9Wn,^itMX+]yw@'OF_ds%_s7!f9pE37Wn>Vij: j BE_dm%@6#Nڑ(,LjMe;K%LD8=G! rucpТŃyȜO|Ou"֥rF{$r˥{MS-S m[[GmUƂRMY`*]gNNX.9+ƕ.~ӎ~j%P$%Ge`ϛ%멊q" :!.R^8G_\?!5&1p͵|T-B\ $\&s@?jjs}t jz[2Mg6l45b Di[éDV9Ho ;A^ YzNOtiA:„/RnH+ \s׶>EokEҫza_زR4.݁JYD贎% 1_%Xy*\@mSsxU)Z$ U {Mfqq'?1KG`2o" onY,dySwˀMDQܖpt{q$(2 f1wMB>B٠H1!wY=8{Rm0"eC9ceczm3?UKgn ?Myk:Btf|(_滦MM%" R%&nـqxcA$N l7Yѳ{̽?n5m컩=+PAt0 ߊEoiN~vdNq9H@똁jA"vi-UB#;&fa.9 |V'k>IMƤc)R [3Fjt?O#E+̎bݻABoa6g?L /u׌Ka(6gUQ{~twO S5i\s@@q:fA;NhC>> jKlSUg4cob=?`?WVN-G7*ОA05aqw}JQgU|~0 S?@&] c;R _8'vUސ6Qth㝱vfs"(5A1HM[ Xy"T %EgҴe p_^\IZZ $vX,[nv䅗% 퇝Qh*Y8'w}j[Et>G&i@3U6"44y5K':=^R>\C6SԽ=nr=;Jc0@uu`|9::+x.Kˋw@ o6S_SA`ˎTt 3q%Q6k' u.")-A~bݝ+1O.B)g7zi/'B{W"tp!XPu0gx來pL+sW\ sy%/Fyai#W@ Ds^$+I}8tjF ?g5lRN"Qd_Xl94^(Lzr͖R9HeJI|n3D}>r&B_B#OKJ.hI32LL]S71O_ƘM,'t‚Kb̦rhCCDߪK lB"1OE"ԉSy!gćj}im:(%47VR^a'(Ndr+U,^t䕨Qn6:~>_٥X%L+%X[{M8 ۳7&d fS9:S%)"(򳵚}d($o>C)hsY](bSFmN;GvC9W'ÄՆW.I-G]B ![A.R`]*MBntA\b!inA >ެdC FI^yqmƞd~ZOT6"uuAT +|D[VR6+]08%1{nXY)Se-6ce^gJ%oGYa?7ZIrLZvYnaݵ>}O1laO0&MgA\Q"z:,r-P ^V;fPiOAdA6 #Lb"]쿏A=%39*R]cw&xi]6BY$I֦Cw9oc4+Eag8W;?y%K@N@j̍]}YRN%ibFB:M UN.#[d@aCbzzcf JhfT7kSoYAI?ڊ.#BYc촲1ŴK{}_o? x6Qy!ibfYP+ qkk2Ru癰\B2rVՍ馫\^@C0UkOҏB?4-R:8.5r0Qn i;(,0F]VwC彷@`RE Z#:5>| hpuƗBoQ=!/oSd]Inx;8^6qn'3u"}bjءi0ퟪ$W-d [R&TL(VRQ23ߵNa 2 P~_0;RKݟ;t!֎> Co4|ܡs}I!YU6Q8jH6=1^uR3gJ.R/=,5+9z˩Oa/\iƄt[9oaW)a>ms!~IR~ֶ Kn h &͜],MVmQSxe}Jbg P{ b_+zn2δs^o`0V'+q|)7V.\m-k!^ .V>E"AZzu.w͂c.U~I{nqSfNǬ]R>bd >Ujt<@(p$ ߃'RQy iҰ>Χ M[>jٷ8:wV1Q j:(e5x8v^{G}Hl#OѭUC*,t|A>ѰzSYyΏ:Chj\Kok zlq$mYN,E9#4̉pΎphz):m3PCf3`r!,jwP@U=;OyGu@&.7Zgw)5*a.%,F5&oZDBKq^̖\y3r;?0~do+/8kq_x8' V@mI_uJ/+Cn#'vk4/[9C6:kG71y:z[M+dζ* wS\q`ptmxG8Y.D/}5];B|v~0:@j:&e{iUIHGlN:TRu~F}1ESǯB9xϤ7.u*9?Hm]2w`s.Y<ǍN9wTl{` IN) *0LamP Q)97|]k;ܟWDž 芏=۸ 9 rs#9B3-vo&9/,qv8[?#>a:d# 8!+"Wb}8kw{RߗV3R#$WqNsxCvaU*NPPcrQZ9Sڐ@eaG'O5[4/zցD8d }E06t.vՃw,a3YE3r:Yry]$Z~_IT:V de+lmDJ1vۖtNH٪)r<"?lEr >$haj3F8|ȟZn 2#U!uoKK1Aȫ"'b-yMHxF1g}׹+/*ImJry橴=aUd˯"X;5XYH觠g7ZZ3)|ڶm!j*1Y.Q+8lE0p t?ϞQ 9r-Yu!, MLy3WSu>Q\M,rEw"4xoOz>?.^5j. 1 {+ICS!iy0L~/,+\x Ls@XZ(:&xQ-H\#=8˽+Ysoѱq]$g?DG$"uQ9ÈjS5ہU!Ik#5jld鵂þ[,/ =q7+rk߇Қ /6{f%fn_ӣ;]@g=X`^-Hr7LRFqqj}5nQ0e$)'S129vUq]jQ.p:"lN}֟]0:-Hybڊ ;&;CdTLS2s|Uո\"Dl|ͬR5izU;IyAW$vX82?h.T@Σ#HFm@uJNmYMd*phP׿(9:L>'EexlI pq?:1kC:Re_5]f [I=JQمw T07>4DOi ;%!us:]tS5EnM\C:z%bze\B baPSZƫGŸ bCx 6}92¦vrC[$Bg, ^@p\k$Bz&\ AЦ6_zV@%>ՙU!F;ÈVײVD VP**[<4GƋ2kHb.Xm>hſ_9J'Q ӐBϿT^oVKY@j{f𪮹!@۳&4j;0'S>W2C-_kJFiU' Uz3rs^}Ϸ){X`{<ױ,V6ŠG#H-M;ՐDdQ:,ƿ -G̖؂8v0姻@ǁWCg[pnUP";@lƑrD,lF<"ͬ9ٙh K$k qՌnܮ\n$Hknƕiz/ Osyɺ _'m_&CrTMei= j.'&\Uݞ-5b:/ [SgQY"{T6:> 7Ɇ0uz`f(K{2Ͽ|Q㘌<3[>l_gHjCȐ?mZAqǃ_9RJ, /o7+7l$'{I)հ%Ia6SqʂlIVmیN:D{"go>Rc\VR?m[ ppx_$)T_P4 lueRN,POd G,* B=%XEݳ) |䉵o3)c# [U3UOP1vbbhfJ{t5M TM$ Y<jS*EH S@k=_jjlo;x{ϿHZ(*|_үj#.D.p8Lvo5gډOZz=DIʗ@kWG)Oh)o9AsMƪ& (:|aDgICTvMzߟJ6j{o|I>Iɶagbi*.n?/1|AY`_7eC1czn;_ ħtJWGit]o$a0;%kffA6ƓxGBmķ"KmqxHޱc`Ff5O9onifWo<ėo9GH]l9mϯ;Er$!V5.ٰFC/ ~)E1@_I:4¾nIQxXgHG'Rsjt`e ɖYoj̆3ۖvޜJL1@#ٓpDR7:5Ϟ_:1E|9%"8G',xmk}-^Mư"ԇm{S\;L0V!bk\gj,74ĎˊĐ+Ukњk,~fq1N 6<$q(~@*Vέrj&?Czݖv(Έ.3'qr"p;o{l0\(O9d|c8dfm Xly`$ LU'lB`*:R]6U.' z)gȷYg'W]YW؂K~d8F$40C$KV.ud7IWZ =z]s ˱jw8~23,C=9.E"gH=iC_1!4a* MRpQ15\E-!\ŷu5[͓ Jjؽ΁53+s+TqLK+yaw I?x&/\nK: K {_25ZHw8-E\ qh#.Q=j^}^UkH1)\ g= M" FpԑJ>'$N` Ucr]PǗ% x4`>/}{Q""FՎfF<$ҍ,0aP‘ ,Mstt-};;;cPM cĥJD-BzCx*Cx8{*R!㷦'A &;?"b;6 ֹU8aDl+ᙈ1^;k' 3?2Q4=HtYAEszAܛCbF,@$o$6~y uLU_iєDT*cOt%:;#>n1GrBXT't ry[~\ãP WO\dY’kmH0U=s-H<h}m"K+}ZngW2ٛ'v1bfҖ7/&\7HKoRaAvv· ɒ vXd&vBS7RG>jYI4_cޛDӔj&7wz*ő}En6޳6eAe-#`Х I1"id .1qA2 GX*rfhw6\@6$z 2L]ve$] 8T(ET0LrQehKdO'l1N# )j/x|0i-qjŰ:Q^5X }t;YTliRD{H]^"ʺfԛln_-_N+q~%F'A6f s5&7Szl:v k^̛PU)o12XݟTVwE㠿R  pS|7NEQv RMY*,#ӤpbG$|5n`fٍܷ~Zd>"/r/[yT|D%ݪDz29'&bĔ;BSbYR[ PhkWeߓ4^35Sj7O(c3=\gFiϨḡ"\۟jYɡ~ꑂLͿ1~ ^=#B5~iw#ⷷi*0A4אNzDjR ubYHG<͡Xz L3KrnI~?F = zO'݇>@ޕ[4&wes7Z=Dƛµ ͹ b}aD%wK1F>TXH~JiV [Umwп@96H,47i2bnu*n0*BFv$@N {CeK^lO1…*q!w-BdmY /dԐi˽G.lBIB/V)P0 I^mTKh(Wt8FQ7]<1}\-('&;8)gvK΂1 ͉2[_,cnD;rNkRd]/L58GL5H >sCh7#/ )]F{+ok4R'l+(RJ"Xb[aPqrMg/Ij9L%|Ky. 7@uD$Fgw` r{|W4fj0 ʀyHO0<$[nNB1[wz1PȐ6ąô<Ѱ9g8ԝMMʙšhPwF,lͱ=$VTlf ^mu zeC2ME`%e |z U\Bk &YrV8uw.Zne"u c_2:go3" >ТeEò2|nT@s}ĩR˵9P^R |E?tKSpaT-sr:,Y0b')Fī/'x )#> &W IEҵ UحTĪtitOX|pW^AP Jt͝R͹ȭ GlLQIaw/lg] epJ5/$,7O| &#lHJS;qYd. DTi7w8c幱g,wFVѵVvZ~; |;&T^}h+V{#h+ܴ闋}P\sE^u:M|ȉ~TMET@OdlAeejDTm}򼟓yoDrq)0˸5kS,,uhwJ 5rM[Mz dJfvaO"]X5t _ LOmBVَU`b_oR*u^0tCdG9*x*H ߂{ey%6t -Mɵǒ!Jo%ʡ޴!]P+|}W_\;0vܦӁN*uS%APTJ+.#d3a W^(^AG#8u8y||%$tS+eq}t"Fʹ}ԇM敔IaRNS ?"rBb1UӭVO(zSA;s,~$诸Z)NNnJ0 8 QnS%a*HF (%#$]ohyCI6j=aP4}}A(i)*XF/#*+kP+ht?pK)˫S"QL/ښD_}l1ig d=?tX{*7T(SC*4=sN,=cծ9ZbM[WgL AMYAU~ENruvMp ɯJyi לݜHZ7JqƐ_Os#Y/fmRa,N!4k{ntWM i/ ȪHThs!)`f0M V yb7oܕ9nA*c>INQEW9>7>]oz7cȁJx3&`tàvJNw9/cafGV/cOA b &ȫH=⍇7obHYTDW/w.6\F|!0{|(/! {j %8W =E3Ex]=)*w~?][q96s'9Qܖ$b63ݎ7CW"pg(7H=j,T\0Z DN;q0KXO-,/gFV. NIոpiVƋQgۥք]l*L#"k[ِa/G 5"i!^nYpJ(A^qm8^'_xp\Og| xv4x9&y]_>خj㇚s1Skߘ_ꈕǘv% e@D6}eǼstTdhR hP)$Jj !8l5`|1zshtJ R]^]:rZF8aK.OsJu7`;S?6wvҧ-ʳ>eqV0|YHU=X3O+gRL'za5lRoT]Sߪ!\]כ?ΖO#t&%ĝKUU_]qJKpq_QFC#=;<=\PJf~Sg)EDMUm)~%`gvn"ji^GIJ0M .x|dbX۟@e!(C6.ݩuטX x+d# .*i9s1ΐ-K2ve6|f>uJ]閠Gh&e!$cQDEJL;BSӣjWt69 0 i8ѻ]DrNz-.G*LrΣi!MR{3*.vߞVDKDU7h=\'w3G|)3Ti~<Efu@?&>^3y`\W[޾z1M-"p [HMƌhpD(|OvQ,La&Dy$E B`uoJ9ж`z~\k?m#?iڏSjgR"êOVMCB,P_%ʅ_rUN ? ЌcTĥLxz0j+Jiu1}l8O$.lz= O.fQ,MMsiEuϸ`,,~TJ+5l(tamiQG?(7ܲ!!? tI1in"1#v@~zH=F246y QVQ}&V\V{߯"w|HSwTW9P7t/ XN"sI Oz}7ޜˆ0 CW. GJ'$HJǵW m$_# ~q$\yb*$UЂ=..rQR׏]8` A3ˮ՞+~ k7$G_ y\NHӖABFa/D;zVū߅{XQy-DEXe{E5֖~]K9CZbW_6%?yRveUhYDB 8Tt){3l#jߟŐbU P#X$̤s{*[+VNER'S\K@N\;l/lDd/$#eqg@rKrna@oҤ|ĖjFJb񡱙ߘqltS|J3o.j^ViKvE#*M|jkP<,p齳&FL v3Fmk1';4Q]+Qж6_ځWr6V\% Gq}z~"W1(\ ʤ>#Eu:Ro$- p~W.S¡T9K̛j~$24 ȉڈR0VLp+'#2`Oj̍.!׹c(9tW?  g\,%%?`z]'lbw̐GN'"hga{je%ue/a.!SxiZƍy[vOΊIWRAgG_)ymcƧxqEڎ6eɈ+vֽ1Muh;a+pc+/!lj0Ju+&&Rըd U~E#uk.W`KI =ٽ6lpizxSit{0"TmeҲ8^t±ᗐCpT,=4ȠvaʡvD d==x^3piKuty< (cEWLh6xZR;怳igĨь}K6/8LgHC)ܰ)pY+fYt jwq$Fcp#dw(Qg/z@DJdT/i߸k.uȱnRqP xp(KrX!`nZ\L0Y޷;?N=.>j=plHebn$3 Ym_ 12GФm4˂%\f9OLcjjŝ_S 1N BMgc{Sg>HPeGf]0H$ym.޲< p\@%4ӝ]hF:~ۍOE]9gyn^d%t_p\ft0򟊨ޟ(P/"/aqsMwJvw6Rڞ"b O)18$0 $`=S%܋_#r~Mq&NXB\Q.2w/]3C92>ol2ķN /P[ndԳ=eb}gv="m{hO2o;`y7~bT&*Zke"좵O[7[Ν72{vqG46Wb ڊ ) mz0Ic/r$5LQIv=LŎa.`hcWo_GA,)i ,ofӠNͽzNX7`3JVm\՞K<wuE01W{IvJk]Jo5K%Mrpᜠ9ԝt0ّ+]A [W{341( k]Lr4KP+;)6+SQ1T; yİ-Z!&6`,ɸ4yE=PK L-?xƉvϸTZ~za%ixOU5ڙL[l ٹl0MWrٰq3Xt 8vQ.xANGï- `g(}`_0Lm?'&n{4ߪ^ۮMMa3"@dg eZŗ?qrUE;(ޜے,9J~~q^`x㥃}N~^=_Z"hQa\VdG^_G(lq y&<_ʤf7׊ĵljd shYK~HP|JU}aB[o]FirsR#ę|)?Pk8z*v㪢Enqg7}܄fa @XBH"θAVp ;y xt>iΏ_}/h^`,ە&HEp? Q$B} 0Y|]i"ߴ Lﰬn}=*do\O˹hR}ҮTD:YۤXok.x&Vp9$2|^905 nnk}( &X\$e6dB"s`Fh%e)mͥs=)9Rt_/bOWתWz1dGi)Q/֡Ƙ/ .B舛V8Ugj~]:/uRL4|/)}eJ983M+֪ӆOœY:…\ 2mkR=4+~989vHH#xurvx5*T,F -V47X&<4zevȌ.IpETC@y?|e`D22x(/m_OKz|x2xNBbW͘1B\8~ر9!<`/K(|{&g7%&;hD4(po?Qli*g43VbkhY_OE} ?$:!-LԿ5*4pV5k֨vd=p:Ql5 JuuzK6̳|Vyv?q}>R͡-شQ'J8 //GId~6x;Z FhRlLfĘh%z9[n:tp`ޒOGB3 ')Z$NSv*tN@G2NB?@cs~]K[aB2mwnjι>CcBn҅a>ԗTR}աk7R_C:2Ǻ'zD:? lyNXw?o;d?jMNQc-&,`g(@iKp\j)p\4Beo0݌|Ĕ$2(攛{u}n8SzhBO:u|,M+bUՍ=K>'xL #![4f?zPhx60T㼊''Lˮ&T8VCX[rTܾ@~#3 TxԋO@O=i0zWs۹7ϧa̭xvYO֞*;iC277@HqdǦp8y3@& Kv3mfАdmgv[Cw7ML~~{hΥ݉;=:` xڶ RDQS*M[kR ຾q8lEEtV(O,ґZM̢[*Im.5s$ 8:Ux2Np£=Cv5y1ߠ :rAm'aHKj3^(dgcqLŒ>c:L)Y7r+۬Ñeo A7=!Oo;y~q޴tmB krP9 B !˄ x1z>!2u'ld ZERx;ۤcuF'UpN6xf_1F@-y𵧄{J~@\ C~ИM$]:ٵG)gO Eg5A`'x5ĉFd!P ;{ fi $NT xTb{[䕞)MH R2xK9\EY }Q G(M؈x E,PJp58DI6!LaaG7g҉2K;ҷ O=x }E~ܝe㦿qAb@sYUvdNg,$(Ѧd잔a(8unnRݟʱcRgCuBߟ~9/fsn`KG2;PZ 3(2ns¬4B!4(G\u9rgT}qT$u^y6뙃1^j]!j7%n$.ʖ$^2" Gé{"~?=!:n\(̢gQ͎)H%oIhy[{shBXgIMcQ[h Ib Jfַ?X M8ԳO(!z GyrBHH-"ⱉVDwa7浊5<;ᲙBM%O 8ELj΍Lo??d"TLt P".q鞵Ai `U dT`c"oX xHE0 .O(sIW0Ǡ3]څϝO gp]/TWXGڐ~t>MI ]\|Q,OESu:k4w^Q5?0݆^;R5qGPW:laT~sH~%J|& tQcJz=kẼ @3JiښELG(cK4hӌězh$KZ'0e1MP& M LOU{Z"ƘifEmS{^呋"p͔k_3my.)uL ;"g_dG*S1 CeVKKWI!SLݤy,c-75/27: џ՚ԪC/:51@3nHXFՇ6\UzPA>hT#ƤDBPݿ\&Bevd{Қqt FT,#dDR,5ET TzǁKQRΎHM~gJH cB~y| w7pҷўk1I>òtN-ݪÉG- i2xλ2Q\3"67a,ojz}58EvcDDҗ!J>I6[(J\cOxW6`x2r4z9_K/W"D$i+dNofїT UcKg5Y!d5&E/-} e?>`#@%[auU,^L n Xt'[_B_X޼<6L5@J.3gT@0-*[iD->I ˪bw"VGTJOA!f? @D/ l?߂n$0 ACZ1ڶ_KP5)C$(\U%e_rkΘXf[>k'Խp\ʏ‘rRk/rPDqN$*(S<~ŧtG@V ܰD/F9NO? .n&znucy%kh\F'Du8Y i^kh YK,a-I%fhӃK2LgAT=6@bnז$U&9xY0ɒ }2'Q9hQOۖ2Ȇ9Q~p5[C^ qj4ЭT>zœ8;@X=oYo*_<}Wc'Nޭ--..KjϹ̌@%0* si@q( U6YDvф&$M&J9TX/GԊ)=ͧjV$$[\[1@Rb9I{cx.0( y)faw*N{g𯑀Vn-Q+vۊQ(!#6[Iv^&y/gMǽZ]֒ON4srPޑGMճ9]rWR)ҥT?nf'\л=Te\|O+/ȴ ? igGeL䲮wf,:ױqO&qؔv Ta-iݸëk&[Vk+V&7(6}b4E"$jux}Dccy04"r`{dC\6JFoys\oEdh7A؋?VS-,x?mST95R4؎k2?;= $hG \4\%Z3?%ΥO(kʝV'iM=yB4l]HpBNOS\F&mVfSr" =`h$ļ^1zg9|  +MegM]&KD8CެsPPB[s͹$~j; fX訆'',~XG]@Tb|YiM2Y'o+֫^z '[} }Оp 3/~6WK5 ӵƇMD9pGvW.r0ީnDYt T Pų} ou8`Gw:ޖG ۻo>Stg.P#7E#kLf`TLF\R;~R2kJBx)X3{/ ESU~6^* p.Yݸci KӢf )2?:^Ad&MaaqtKDh K58`h)@A? oD?n4i=EXUh1B6r}Uß(PKPj3 AQvR&'njRDvz8Ɯ6ɲ85 M3bz~8$wG4d|Y$%p"ur@o swUYi-TBb懩{v3[vذC9Yņu\Y@wժn3Ҵt\xSĂNfHG;a|^)5TEȳ+ eԄ'`Ʉ:' Vx27z?KF=Qu;&D*hy+W/˼hW(swړzvlr'/t|֫w^Yh(YG6C}G/a!kI '!y$ޡtYTg }{XGa4M"䂃מ_`ܗ{h6?˜4W3ҥaK:1 bۇaoWtJ;9:$ԉoelJ =Ho}:ҢiAF^]!@xV~*crmWXߖD"xi07Ö=AEwg$1咉38)k73 d`-N&q:g݀Pg{ϬV e,b8(nh,+ǔ]Ip|5oV  ErHZPH@0 R03Rvi_s.#Ud:jM7{:P6bXZN'၅.S|H҉\nlDt O˟03R : f s_>n?Z|Й2/;hvh|L.noNק@Y ]|{y4ny}QQ"(JǍe__jNLJװ8Fy#q U9h7w k ؀t:`ˉuPd+#=R19F<=H*7Mdon<I/W+)#pnnioOyJ)rDR;%ы3P&weQ% klB XB2  :HWAA8wBlbTrC:!$g̙fEqX!X4m9jcQRs_ gH$B!^kicBwx0%Xs$pK-|M}T3 -5Hbo7c:UrcRn=FBCa!Kv ڴ+Vqjj' <[~WW{,ȗL 5(fr]Za`$heh "_ieOB1I~p#9:[h PzKE- cxauRҲT*mv}ID=ȶiV@-O^ ".3 ڝ6.ħo1U<~ҡ#^ؘ<(MLؒ6Qϴ#\YyViV] YŐYm&%ȎOf6kCWģx``YHs # [VakqY\Z;C ){&WT߭i=(%ղ/U[;&E L /^eޭ?[IVmC e޻z|ҏ8E*EJW67N/j,= S-70FVaa ä] BF=V2 k>&14|u˞`e ͅ:J@  O<:*I }Mm @JԷCii~bG*uCs_9Ceu{rCú^#C4@zLTpdδi<_Ȅ h0'CJȹ hr}5Xb eYe*z _ vqYʛ~ HKߥCfe4^gRK>meavȑRZ:>nrx_4 "HiST :|۞r2=fXdF齚e$_ tY/=3=:g;f ;;ߚ9Nն}k fS k=VւzROb$IK ʟ'x4S }Xv䏺Ni ~c%-.>klD4?Jj|gL6 ~k4w]|!y)ɟfІMzDT@Z4<C Pz\wܖQ(i-/?qޫ_Cqސ>_jyKP(!2,mҬ<SZӸ"chugtYafC#F p⭟$g>A 5N7-mޕR^%@t@ǁ,TE-H*(T{75yJm,۶]%y1&VEۯ$le :ͼllțx]|;,M e-Hj@rh*=ͻZ B"8/FBq7_Ia\@FU4LFcp;?fXs^cxbwn<Ϊ?<; xЈ!`Fx*r6ftZ0)T 5ލ4VJS*,>ktRO+X?*I/úD_msK^6 ުƹi9pĨam`,~ 4b,lwӐ" UDr KBе)>jG->lfF_(.zFAXg\߻Sk UיִF*e6Im0vur#QRAD&~?'yb*+>2i'/J$U\s­ ا;]ge3@{ pf,{,KW;tqe޶gYłAKAgv}:]Wn.Nd㹆NJV.V 1>'(Fmh1$Mk/4}!D\*,s-~>k̅ajs(j^w^DCҜd~.+\Sr+%^*Y)ƕBDxHS0>kֵghTm4kZ%VE]> q4A%CK>V!OX_W؂h'f+8k ,946 uePfun'PDVzC>9+B \ss{"Vū{F\ ;ppƗc>.y>YZp 8~. 7b& sgJZ?6"gnA=0%i"wEc;jfox@\=a`Z\Kmĥ=l9j 40ʳԯ Ge.48 {0{{.] @k֌\֟k>N>>3F Wm.>Lן<~rZD̟J*)^g*iqgiO Qw;˻`G~^qJ/}Zu<s@w>7g$)y| *']\q;}NDRTo VM.`] _Z =w,OzYh2\A6= a9ᦾxBTdaݲ l"O)f}@&$rT4M5D!d{76Djp!ʰrǘnᴖDlfwexNS2:]5bW.H `ѸNT @\'ey`qQsY ֳ-iM:Boʿ-yãeݪ ״T+cRriuך2%,oO+vWLkLSƱ~IU(\͵KV7^pUr Kӱ^ޙ(!/(0$?n}cQNdO' P"kT&2C XWXiRqBލ X%_.1JPb P%CM Qʅ|q؇w&OT5T?YE>;>ykط7C6n46;81 m8Jƪ#OGktζLVɈȯ~IqBk~[0"gX49*8cC88dֳQˀw]`6ɹz] BEf^#u} o"W萡־1.oלL{#D(L겳גZD_`|Re}0in#S5>rgLV9F~V%NCi c],7 O:PTsN!5-|#zy:s[(ۦ.V~fY0'kqZ½5s,8Q?)o>jp /m M'z:ˤV/ B[9+k^ !p >| ª'>sE YKON'r 45]tca/Iy%ېc$`I ƎyZ*-R# Ne137͆ݪ|N+ʪ(s˖LxOuοLB;Rh9J_(,NnxZ\@ha &92dMW֧4zGvѯ[+/xC@= mLЎ͘E1W8W;"P=)tKz^ܣ?ɼ~iCM@ߥ:sB8Z/A~hI9:O%Ʋф=jJ }^O$Z쀨_J~ {MpDC̅$48E@{ج\޴!7PI&BT,B<9S^mD7{&i۩e "wϡ PdA''<]XFBctZn*Molx(QH./i>{M47Y̔XofKC0-i]f"W:|P|❞ oFWC[ d%KS~f;sz-M.$˘aB!,Zxs'B=~M_p=WԄsbܝ',񅕾T;ҷ! &~N.C^zkvr!ą'0XKl(pP\KKQC^Yfs?C*uTXxOް[24.Ac8߾QnʕE1wh eEIu囱zil],7!Wkw_R@BmL,I ]<45hoIDN> zYVct蒻|Z0ξPfTV'K~{@ߙXMFǓ[@גAPY6\`CɚH8=͌ Ժ 'd!^X~!0(m*2_ E}ֳ4}S"Fc3ށ$nZ,{Qr@tWXgF˝z("߈s^Kf[b/{$]tm?|BԏGQc;iwY FdU&Q=LL(,mQ/g.o)gӞq⥩ćf5$ru/ %5HT&#٧HoPã6cg@f/%.Y/\_FW8mT &u݋Ps7~>}UQ?^2zTM"ލs0w8Vh/篇I2@!lDrɅqIǭ.u@l'1aMV;De Gl &j Q1ʝUsNv|cӛj Y*>8'p-s;\,J^-%'r:ŬVb4l Vr6 i#_,ȍ'+mS:N@hT`L"g.nܓہ7y:NFt ;ݶu6{%m;=|X)"ti iΏ0w@ǮS9!` 4I `T-EN\&g,wgj@ҿG(!jZe0>&zs\Z\@J0"yo w2_TntrZ]DU4ɹu ^O)8̰7)f7&1 T[U`r'+/)_vLd(.}<HwbR,!̏s .Ů䠶FԤ[pA;NҹMS*uXCNgk笎m~G!tmDVz$j<9Ai-3lHM{1~9tIEݑW2/2::^0,(Y! FC$ ^.6EfVr 0$vL B ]A›[taM@0EtޏeY50tV$bT3L3Ei..Հ,,+:)vԏ0OZ7¯?Z,Cw@%hQiy8C_*ߔc2C׉QA8rfh!?+&J2=td嫲Nh"F4G¢RA襁idbȞ\ -)^2nӎvW*587N֨Xcx|=fI(ovO~N$ˢN,ui@OM r!w: op@ePM0;ɨU-|r·a55/DZ v?7pS [Dp߷8xֻ^ҡI8TZtXh҄}qs`f 89S֝@iEuBZ#|W݀o.y)r?B#JQLdOtKjHJ:Ίt)#"R&q8 QE#9`pT͔bme>BS6]⾖I`GlTIU<1,ed HڌD+cv]?2|d=m ܕݚ%y5使CTY#sϣS0B >w7/؜qs@.l{0|丢sXDEMutDqDU3ހ$Gl9VBQzG?TɁXHsSN{1q]،`;0\Կ-ldҟuY&4|[J, ](TOhBKsDR,`,F}8LFx0_ eYB %.؂*ٯgq,PxӑSFFq]0VK(j]eB\!tK2!^9Mkֿy焐UQuC:+seXsN١շ n ~@~ZVBc#Cmj%m'B"U$jl7Pnt$E#J$„_"f]@2*c> B۠y(Dv>Wd.>췥<t L+6F-Ϩ;2곸 38WB.IEyͭt]E}P$+Vls(} Tu j_HĢ w|OIa-^;ݎ=fXLo'"5v, |xS|߂7ǧ%~.1e ҈jX]1g8o2'lmLx1$z3v{1H :s(&v V#[VD7`U.8՝Yv0wӭ7EY6w9&PT_ؙ·Vq+;Ʌ3*Wru5EkpxSAf@o㙮t[>?eK3R1 GX9jQxJƷ=ު^Ke>\~#5VAk15%҃"6lKeXBë([,vߥ~Q<: jdLQpi .MK VC' -EDmjN6GvkqsېfgJ^< աb#9DN9{)"\a4꒛mgm[ vnc _A\ZzO6;ݡg9ԓZpUxRW(-Bc^hfwȥKl/($+d[WýP!]Zdʞ 3Fd>ۣ,o kEXTRbNwV^{&-fή=rasH ]rT{! b7;p45FZP7 )4 r$-[zYʘ_N,YQ]k?^;ؠj]\qH4jumgZ>.Fќ,&7"\]T#r E;r|Ѳ7 nP1jfJHzwt1S1w}0:'# t49:)JRM< RCu% dԴ#$1D%Sڂ>6rO8B_~ +{Ypx6;6Qgv~(p hIpXBYQH!g휙x]4(VyjM~&M$bꄅ+~~o%aAwՔndYb{bV&*uH:,LFd lP8ZPvH܃h@OiF0w1pm!@LD.|?iVė"~װ _q\zTɦB!R?PSҡrLT~d83׿!fOL c;tľ;$/~Vl]oQwˆRm : VP_"b\6o+u?>bC>,iGhPzm[@&oV]s%ưOQ;{??'xUI3"F,+#6k|+vE'.Ѝ.vR#L%8As2j/nvT,6"%FiXM$)!Qq=yt3aBdڹD{ 9Ja><?OX %͂ZU56ϪGEe7= 4d e#c6qV6P#28RQ'\OD:.G#II_@D=cX'*?ӿ9|o /@urs'_闎cE~caGh6ԓŬG{Ms[a!)L#.H\juaYsq?fa,mud|+xX8+ dZJ;jyNcmHmєVeŠj*mjz&(*ˎ̰d",-EneI%riMP8ʞ!+Y시csUzۇ]{cd mlˊ׋,x%CqګJ8!!!7vnA.^`KT̴(Vq!C`=T8-Bjv[rG59% ^fB1$%v&>7{ySjxc\"0‡Nn ̄JvUBތ) ~9  Ipp"r,) -L1Kdgd]\ӿ!$Գo͓=;GM!F$Qy|O@bZF"$TU;Jp}<͋={$Ad*{z_i c!-C ^' @w^ o??ǖɆM]3,A:}2@rۓ>Dp>xaJ76S:<.+i!,d]"JvBHg@*&a/ڷnԻ/&zВ~|LNQҳd5ET"5K4[A]ZKwgz~L_+jm[6&ESt yx70[V)T FRSs#Bq.B94;` Yi|:sa f W<9 d>[2Ǘw5n)u.[-6B9QÞ+,W{=f8QWiQdM?Azlp3~3ymV˚v7(wυK0{x'l@3iʘuuAw`[Z"%愣M!/⭗9j?T m?mBLGZ5!N `eMoN|7CxxZҟ<0&NGĚZN w,' 1iTY$s6+=)@?_9SiR{joc'xPV śzr,xs%S<D[iRkoيd1`Muls2q ,YzFf6UgFNM@4#BZ'7ŲՀB9jK!8縫^esno׌tE.V%~VɨeL5ٴ)q1خ|JHgϚ_;׊6<rIURxpD"ùJn V~edDϲ H|` ǦmȚΙ1pFVpr&7,#˦ӭx]>bwIv%9E)=`'s dqaR(>ljUWtȯ4jwB6[-C.ӽ@`w~"GX/0ddPu "SY [ITd݋?LԸE.ߞY Y`7ˮ0QjoH{ di*ѻI !qL"pQ?>E\[z̗* g]: :vCi95HtB\ad>`$KҪ:Y XK(Y3Qjb߳e⹧g0X1 vq^YWK'ǘ mkw^J f{hl>gP=mFą\=S,a((G_:an0@K:` %ፊHEX6g>%EB/Xcm|yÅݥcv`qk_U> XJ:⹯{tSؠCK0Hp'-\]=9J4^^"#Ȓ<]Ճ~"Jc;0@0)ȜJhuM'&c=-4awgLH"W8l| 4HFS$ֵSP"q9i8]kg5y H T'#maڞU j$}UMZ!07Q3=P]c_ɦ4c]҄ i-S@ 'QBaٖ&J+2=\'}BE9'iDi #c&p +$a1:۸XuNC29ȴj.i:ody؃ٱ+:a gL+M箩8 0J?q~WXD;Djc,|#dp7Y(iw =p1[ hRKA 1sو@MHEan(+" EN6D*qpeQW:0A*(ثVF0:W!hW4b]}U»_A{⋫4N; VD*Ea/QiN0ͫ \0KeJ̊RyC;^s"7<ʱ*ex#^]cšaddᲳu'NAt0Q)pZ16_0S&c4ӊ_RFU?Fc^Rd$u*yE7~gFw%GAqRhHxpBLGӵ}:z񉓺Z }KZTK{r<}0[nJ qw$PP<8Z#L_p5WxpճF!]-uhjz>fX#!E?'v`+j5āDw ܝ'@stU7|֌ptmIѮTP~US@)C ܢDj+$yE_.*h1Dq=# }T4_چ ay0\)takΌ/,/ö2NT$7&`ej  oqL(`I @:$"JAX ω ź=r.GS<ĻSxa|H,Tw ҳ{\yXᝳ˅&aH?pz8Ayڨn/]5aQhI8L>;<j! ܁zQnf`ZJsFAVh9)vqjg5E-;-aHt[Fޯ/_QA%96*~Be);X6ţre|3AF!<7k yO!%Рzsn[pG8KDlp'O`Wb7& YGM~5L/3byRޔ.[tXYZ<}>B~Ŵ)Sq,&OuX/ 8tQAZeHT:Y$WMc"φ/fm!kw *i0(&I4msc% 97bϤ~rwhhV2 yq5>\:K}AD}?4 vY hFİ%/wnhd-Ĩ1MkbhJ{Pa-!"$݉k[2K9bȖ-"&<TP[KK;^̶Nn@KoUcH7S=s=EA#{LЯ@W2AodPF{!%Ѷ~goաo]nUj+k` vsqΥab-S6jg'f|J~EiQ! ǸCR7nmrn^xLTE]荢MٱXGe9xl 6D/_ H,BL6!_N`Xx:>>Ejz'h.>BR=tg)IHA:q4y7CD a6m."-Dwn@T}Ў:ˑTV0Et՞6G=˦k<J'&>64k:3-3m1QI!=2&,Djf|&'4H%|{3L*gA8 o/1%*[cbL!72I΅utyl@!dž;="?=a8U1mV^lEՆ[BRPXGZ:Y 9Ce}\IKԯ8-Hsjڲ%3 KN?A6%2F27W±)y4үʠ%oݐ&>_`z&!pxw&9:J{ix$~TZDf1?7vwREQғ\G|T:-N2 Jȩuoawi7t'G2tSAی!%KM FN2F󳻶DRG< LQ Dg9 Wx~~pъ~H1'C[kWt /J59?$kHL/I#$&LxJ K\N*d*,NjKrd*_3?qxZל-KM0g785I+Zv{c7#rݹTjHfbS}GJ;R%9hC31gi (g %GU)y HF@Xn 8j?A;|e8,vC6StK<)W e?U1ybajh8Ʒɵρ۸ w}<&uorIKS`uU[Fo"8n}0 A=lL<12ܔ/% bWd\%蜔tY`{\A!(UAcR2 -gY1h3^ƝHH!f"̴m͏1]HWo3heZ/"̽#=v畐1Y!=*"?kqbe9-Ww3 RYbzRݶwň]A18?`{L x`aZɀ\NI~cVij_}l2i\]py%2c+_ EMT;RfhQ^x'.1]܏89zڹS)Z&N8#ԟjm‹t%WW:@c)f{T*"@p ^3Zb%u/E"_SۨgƳ sg-؄Uù-eɣ:SuJhzþqֽ#owr 汑=*a%rdD>|4볾~6ptFGշ3*t-pP+Db>E:_C| MGR*>au8u2P>A:Zg]m3[o;-(b+vjz˞lr4w% 6Ȫ/w9>5@zMW !Sf6bM!n荃[fҽ~gKe7{Wԙ241V&7>Z9l:wP6a<2Q vCnEƆ@?b#R(͞ ܰ|ztťtw#׀O%cqYLEmcENlwy.=Zgrܽ0{Gby2WIeq@چF?dP5Q_}"!3=&F^ɸ'7{O{}m )aC`pүOW34suץKQGmϫ|֖5*KfL6o@ $'C\Rq_Ӏg'S\XY^*s`d)~,4zDA$Þ`6^m˷=2UfllDwP-~Ŀ3F851pCǛiz8HQm|e_6v/ӢT{;q}~*s2^lxYx~ j{6H7 o\&dZbx84z2`l};Ì$y`D޲K(tf+xǎcl$dcdN;_lfH9)TȏʒA/`n^$ì 3 oYM,]G^j0rr֝2D[itOQޡk i8M*;2*ialgOՉvt pqDi< y/9"ro)_exPKռ5Qb, U3iA,j/$o~$Z~P<)j0/5߲pA{$ U~¡(7'8j&R ;x0#2ف)+(5`](y";B/"]z_'28?d&3a4ר>7G ?d P[&HT4W>d6R3a֪q1,kE~ 31Q]`ϖTA*z&m̾p`]<eturF 1>}xFwg?e"7A^Qm6Lb<} 07e_ |<`J/dC4jL z[{c+h970-5E}wӅsR|?‘[m!VYҵM9y_gA/zJxKC)N-dNл{Ȣ{H0iBD7CWi+dga XP*l~pe(t3AF#N'*l;ŷ^}YIP{8BA1!=cchWX][.H_ +<.lsզ3WࣛΛ q `6.u8%n5bltŵg*@rwP5 '{k8J4@ IZ>*BG76IUx%3TċԤ-\Tʩ Eo /(/ Kzb{h,)NiS,Ohi*"'a/ߨC F6{vhwa1j({Nd@qOez0ë9T& i)5S>"}q/%2d ,8-<܉v|.ѢZNu,E,!ɹw}q~n).!\_ѻ|xB(P07-]i7#,+, YTo%J)Ga*XqHԈE(g'"TH?Mf#^ foOG:¾*!#'Q[@Hrc B@R{6{ G${6Ө1|Em P\0Uwr1A1bDgsf` nG } :uNW*t^Zs~UV/+ֲ nc Y65Q~If\1׆'s!+c-PըG]pl:>x$QK8L**ś3펥8>~剿|yѫ֒eQ̪mU)o&к=eO۞>_OuOb-:Ay6$.cEF BdVlЬp-L}ޅy5%]cx Qs>9Bp7wxzycTHDܠ? SW'JEPɞNQ@ LLQJ;ACH6`v,-ZXǤ/1*+8JX߭3=v5Q (gl)H.qxY@X:hAsj搯CЂFQog~jnSV@'Vrj{fP2 z`?M)tT]JuiZW{\a'G%gW&\暥NWE> GKSibCUCh<+Ji'x$8-Z4ݜdaXHlo: rd Hr35Wo$>cqί{'s玙9K|&7+83@95ap#χdEVzU nO.5x.ܲck8m݊z*]6g[УUp<;)+on1uDf0 656Iñ=[Y6b-"iº"6 ]ʓT4LQD4!yN!,OyXbR s4檠4ńS?Tq_g "0|D_B}q'Sz/EUp!d+=^ !G9yDm-&D|QN-EtHюRx y,(3;5ɛࡄ{TGnӿ ÷DILI/Ok{&̪ YAG?b 9_ =W43NKB^E1cxaFSnQ8Pw xfEoܯ}-Y(ϔ1̣X.yގ[/N  >* ش.O_^% "Ԭv&vꥲXd_G"-V{F> < UJPNneȵ66an`{㮿9n5c i=k[X ɅQd4fN؞?Yn&+(FwO\2e~mJ?@-õp=HQHT–zzK>.|&$ja|PڕZZ o)Ma(N;*/\ 6k%nAo҄U{*hU nUKWOV]`d@h^^ ц{U֡t ZSsX(Jߨ;bg/dX/S›b- ܑI-ZwF6-hw^Kz7..(QVI#3.^{H5(@3(Xm ;`POs>eoE.FM_pQi߂*X)q"Gq oIM_i> H:ĄQ-~5@yEj@Iji:씘д?fݜrIC_E5]^+I"Aer;œU[*cs-ĕZxzǡHrVMg{hSbFвMUe @-Lh`/5Ű^ eر"|]ps2 ~3j 6Mg;=C$zÇR̮$HoS'+/#V%5ΞYO@&5&u~~3%6UXs_9fA=ĕ륲ؐ`R3U_\%VG̈́ -<͈z3FBµ$QÈ)DhfR +ĢBdWg5bWߙ!ZA(iZe+☼.޸)I¦` 1 w@^e G?3+N0u6eT'ZO%y-* "hg@.a3XI\Zlo5zbz4+k{ܯfe|~{jX=bL@L2fЛ7 AL^.qi~cC8ÎLؓlS!iP _SqgO#1WQپc_k 6MRsvA6իQ ď! ۔5"RBֈ.Vz󧸤VU2砅turF7dL8JnƢ4\#=W-:}8%ADK|I Gm1z:a\3屚=>)цv7c%y%d `D&8 r6Λ .eN(ۓ-STj7a.Q{ܨë Z[!oos4U_ET\zʼncت+;н–i;!Ш&/6Z2rr F,0ٛ0Sn:oHDxN?|$}s4.ȣr"A1R@m# X"`OV(17,Iڦs"?8j5r̝.bg01/ ꉍAʨ& 21ZChk28 11>1dkw`)7BTɃU,ӂ+s^ Lo>[ҊAHHfĝ3@ERX"jH6Q~gԟ,JNpPJ(BZI^NgōӴpnz跋@&\H'j;N=C]G%mOm*tf Ej pX]^ V?_/LUOɖ$WcP!+%3!'}|uKm3禣9{`'Q8m RzaCQp1'ڿL*p-V塵ӓ{x~|up~.7)h021RW3 )5f }<>oq9"X Dφב\79{t9n9Ffx ;[% kQMUA x-Po! TSvƠ%X|Sx ].[ek}Nm=*l*xGcMP%yfpZ`ijEf!>|Il:g{!o\Id nŌuw!bbf <Z07͐ ؚęDl.[cȉGX}*{[gLCJ~C4l>ݭ܅xh1ZdJ,0"ǔvff2S˜YoI[ZÃaT<{a6 (,\L!CЅzV)ՉpO-;|XģCXA 4'z|";0}sZwT`<`${6JjrA3ܯ6LEeVQJ* R_1]x1ykMɯAt=%[O>(%rBV%p^[Q>򯓰s"$x/qVNjه$@Ki;|\,ꀱc>;K*fYb-,N@#l&AYUgO9t܀µ^L"e8rʽN{qV9Gy`z^s3 $*:aH @5 ͐qY-{Ơ!16@'T| q!TNt4SoD"TȩAJ[ _tzcu(uƔկkk^JSr켰+G:2E|[җڰD"Up5QŅfB;ʇY%7/rQ?qZ`Tqi0/y,;%?ɔZO7tl}L(}"z}9L4,d;Dy!11!k )  iC5˨qMr뽷zւX4y N'Efl+H8'. mH׽ِ8'#.c{Xg)U.ff1j}\CNô@ݍ; ;H0s.d@Y;txvX6W_ݷ;yXxcZ~kj^p(#:7hL[b՞3}دx c>Qލl"GڤۀBE #j?{Xeϳfa<B᩽n NuӘdpsbg_ x"+|L9g4DAK<B4Lg=Āj[Ҿ>wԣbb`4_)Oek\lӷZ]pvi5Sq,]}X;13hu qOgB 4ʊI$b+yŏ85ɵG( wrVi!+* b6:me$x_[#YL|M}_SGLo~@w|dU +rJ8A8h:een 6fl =ڲX}la}+X+Wݐbgʎ9Ȋ'e#*Aj5srR%&?c!I DaIuۙf(E&uiIB ?<]õ@(=6.OJ)HIB \k: 0f ytyG|,])7YRKi9092<h(T)3tۘV~"x4S74Z^X޽k 70 tK)UTP*iE!b,[Nɱ#M"(PDO;}Ă,sJntI-j7GvL*Bnn,WJডINo&P@\ji?Ҳ}X =o8d#.c1Q. 5R5 ʈ$R+ wo9 4rpW8jW6UޔGLͳoV;"W+>7GZ]>|rymȩ E IohZay. I 'PHakY7)҂>Ƌ>sŹfE?,Pb|s5״$u] õK %gy LDl2./VReoP *Wr]Mb 檁9;(HMAf9wH "g!=Ku ‚z@>TnUo@y𡮺F` ̳8p(:}o(x* e0y+csԱzdXt VT!=Gv?fCB/@oxk\N'NV ًr\mq yqH 5 ){o4n%s)J>&?6Fl -}p4v#2<'&3U(XnA 0PmU=; | ш4 1و2D=P^~sgYºI~ܷ[c3} `m;^Q'8F@1jEp߻Vˏ#4HGϮn6y6 W "CpXPҊX@"EONGǿdgZx-\ʛq|43ڟ D`1Tz"@1IкE#?1-j lP }/b(ᅶ{QqWZ~lI*˔)YzWIY˙<EwڀYGٗU)"f֧5곦m>XOJ#dz,bc1̢ |Yw7)!DL3X=G-͚>mJWfdc~4-(Mv7`oN'~2sEC+8de ٽr$o.Z8)t%6᪑* ;t}ၙ{G~㦒I OͮI e`A+V6.CrKI\dzVllլ+gv ⎞3A"Hǰ :3'`!RԪJW)"Jzo?S@).=t(Sjxխ}q'5.HzTQGz6dv0 I+ 5tTmHLf<7,[]ĞtBKue%tj5 , ^kLv-sk"g2M sТ63iŀDɍjNf&6p i&afR/ -pC`ɧ&Fo!8pD tfrJ)d38KՐg 2Sӊ'-JMТ}ZuLtOT}5O:Z#MЪ@ qy'8/؉GQ j*Nv+8d8D @Ky_8_ς0WI.}ߨP _òL;ٯ%1R@Z"t3LhDgf\-UPU[x.8 %GZCRP3r%{7gx!fp#zԎ#/pA#ȡLKh3;#89e'VdVTxfZJC@'%:Y<4zc.d@ {-};ޤ3\nҬo~㥴,nnD49e$) ;,1 0(MܯiSS # :2VY)F j)r~HJGOPݕx%9 3g7_u? sɅ^IY"镻F})*f*$[ֵ'A4B;QbH \@ ]yt-2jqkh"[15O6ga[sĽT  xbT̆Opdvq)tݺ$Ɛ|VMg ?aN}i^nt~z|iy<>S |Xn]ayZ20>ܙ n֠:gNG KH77ćn4 %cP75#nsmɶѝ$q g)2i0KWx@0EFXSD` W568Bך½]J*H<%^@EMZWެVsF~m\hyU;/n$ ɘORC0#ELw(`zc+^l o8IBкgmN$FEΔ)G ސ  Q$sx2LBӷ r܆6ɖz&}y LDxpdE ?v/~lIJX{pI7(-S1jد$VOPxmd|7 `B@MA6 ٙGe&,JC95ry-fFblO(qN4\͓8i je^Mi_W+Y̩'xUЈM<S!L#uN=7#8-㈀E]ytRLJtHN8 D9ۤҹ[Хv</ӭeu9uOZo =v0]'@h:@ ߐ)5^ v^JdQu7^MسT[&(̍@&ÝLLһ2gqyO@A|Bk-3{r+ Eg{\_~=kpE L*"tj#%&m030uӀ8ky I$=q." _"@"d,@F"JS2z~ya=;{3Sor2YJ0pO*oCelX TGm5 Ђr"0dB"|#{ &4ӷ8r]ڸ)@I-Zfǯ6/Wu\{%`PI(%?rz<:rY[ǜ_V=R+/3_#ˬ-贷'p{Y^H ȟMFbEd^&: o}{r> x>C+T^`56{&SZ#ʣTmYPy@Cѭ:Vӊ^P5l|Aɪ'g eΦ82߷q1C&eة4<qB" 2ۅ@"誖:;T?(LzyGO?s˯T 4\-LHGŽRIu>JBGȘafl`\_z[dRzN 5&}n6d/)v#C5x[qIuJp:U>~4̪Iy+q˞['9ő] ,U4tg^s}lKѪNqBW ;&z3@T̢D_3_ }"|u[委S8KH+|}0 5)g g2e'):8m<|u|6ɸR8%+lS5^#zU"BTpqm5A&3-RH?zKڂ^ėt :r(N<^@KYtdR1QFիS`Ci7IXؕ(xbޔv xH/c5kΛ`_C,u$gGP켮ayjlWe7.䂟 M٫֮Z76tu7|<%D'F.U ՝yd C}6!۠,,rP}"'(n)5 Z_Kzsko`brJלvnbb`4bx}~i5U{AmZ;qG0=C/"u(Tߢ@*/x *~I"1':ϸ߆cwbc$r0n{s!fg~}&@@LejebSg`mwU[@MG-]^b_j_`j:8unkypS}-@n|`px9~F:9<_OYWpO\3<- Eg9 %GZ W&{>ivɋ2׼U ^Q4p]ĖjJqvـj}sfʝQrouHGwt1okTuAL,`W/SPD_Rؒz1R}U w鐧TTMҘWD L`}Inn . X]lֿ( o g"a<ε3x]a-@5K8dDY,I-R8RqҊqi&K̟RkV:o2ls6kg0 @})CJ md݋`^sK EK<=d>-'Osd=ff|:I-YfCi QMjτ08|%ӤuØGR٨ DH>l(w+Ij03ۖ5 d7lIWBI!ތV*dE pTpNO2߮ W.e-=zcGQyX7-Pz#[]F+b(%Z(@2L.&3 tR߫KP5yu"O>it\)1 wR^{l:TUP!1/év_\6BFR=8q`ƇÈTuWBpn5U9/S%fX_UIt-H •q-i3biM4HqK! n볢x 4i1DM6 oȼI+ ()_G^V-͚S)1VB˓⺴V5 Eh[)ۢ{g6FNmc^CmzN_*]P\b↤n# q#4#C$ q4',i\G;]O lF{dHæ!i 7bǓp09햧u^>`b+V=Z%*APe(o^0ՈZmq+Z@u{w+&=);2abSEL hٰ{QA)P~{?*-EYji箃晉5}Tѧ^qG5afDѤ>X߈PWՉ.dg{NƮC# eȎ&ҌxwZKҠ&xM䃆}AZ3LPTN#*ygBO?4(\?|̩+NBȇ8Bь펾xBR c>I=kLЕ3)12RQ4#HLnO#GP*!-:B1{Jzh:̸ z PWۊWRYju4NH0sR"} H袴Jݒi.H6lQ)&Oʡg@ޠrolaLJGraʖZ%YJrc?O.TǶt69e3>e1Y$FbW``ij X` ׸ $Ȃ5# y Mvv#IKkzh2"P˴!F rNL]j (uoqt|UYTfvFW 3RJd"?oJс?Hyuб$ԟٰ%:<9kSAp4O92WPO;ԁہ$Ma1hld=w#JW?\5kaC-B\a[ O8esHFmvꑘeDi^q/7y> j¥.➆.  qZ@6\YHBY;c y(`"pܧ<9=#5]yLs?t \FL^W oTٮѹ.MK: #97MJj͈2_yRR]u@Qf W!NH(pT a)G=ӹ^wC:l;*cCeR64:ஔ{0f4!&( O`} (g0QN8 $5-X/O)ۗ:}rMT_ o!jUx'^p &H\ޏ!؜iDqP|>H~ Ʈrn&h3(ٺK= 6ˀwՌpqƴ[BGF-M}Y~Dor/Z`P Dm#[jwopI( r!5~,ޥŷDEodTgIn[cӉ1Mȃ+Nʮ騔62ņCiVKe;π} Sq縕D<`bl8PrK]x QQdx )*Gt -HV{ɁE~~q;BpvI+P}O < 1}7|yn\<Ꙥb7Ij1r{:dqjWOڪJ Xu8C)ea]nub/y nvbD_!Ax paVD[ۓ 4 |Gۃj6t)^ഏ_^.CzYF7e+"V=j㯊S@j'u|u).JayK\zn\-գ<ض{ZS4VxeO{Ta[d`-5go@ 9 a8@|c C hW&Pr ;SJ dUL/ ]&fjgme'Iy/CS雳KMm];1π@2N aD{Z~LfXc{2;\+z1peiMŰ.sxVW>@OLz#ej~f }<@/aFE;%%=/Z? >c-32)ٹYܬI(MCf&<lbrW!`~/cfMI*дs"!oWu9{ ,Qg:zш&>O=^]j#v~RO6pF 9KbY8$?l5 1ˀx12vc<O.Skl7^gC^:lymvei\KKRɗH_Me*T> ٙ?pAhʀBJYOQt_hٽW[&]>u<8ecПآ Wp cO\Ũ9>/1j d[G=kL/ׯ| YzvYozl3F\<\[wZH(&%UxIl4/׻6$G\ CGlGʰ ɋ“0b%Wcc30(-k$rUU<+=xMᠭks`Tp'Xi:T}?Q{yCQ;ǤKd u08V-hIr>c$7wy &پ\Kx8h#ѼYĬOcX8N[C'nՀ*ϾqF&nhPk]2VfdYI#$9 {s&4H83n~Fw: uٶ#.~׭+p!ŋwU oNaƀ'4Z`a&}=y}7$J8"됹PӢn?ZZ3֝Z0ِ,66Μʲ"cV%/`zE4e|pT'H6d}VK/_pD$D6Ҧ "x^jn[~2,51g0ڮBC*p*{ jа8§ j~\ |UYDڥw1/]-ݠ4hUy> GGu* ",G@ `ź8 7Cc:R6C aD r"|$㯹:pcUwQ@8C]sXE,^ Cyu+zADǣ_vfo~ak~E#dw=c}٤pNkOG(5oIDZ,S0mDdusT z@Bڔu)닊"h.;8j ڵ"F3@x$.k1 vD\F9k(cӮW{9U Vl9YEKp帎ReK DQ|Gd2_x0! !ZrڧPf!Kz*J~N, x?Bn3{j+m5AWͽ;4(#]/TUʥ}$!f\wa z ~2aJX;sHY[^L:ZHYz9hᯑu> &c f^3EgyUR &bZNm Yc`Ax#GJo nN[wKpg`ܵnۆֻtaK> X_9(mۣε\; W]3~BMy&cMQ_72|"UJ8wu#fnidX!%Ȑ@F` `AoڌBz~.<AHIZU#&^LQX$G1h!y}f')f4ꭺFØ0-gp#\=Yk5T\A~e'˷'x=0 k[Y%,Ů5i@eFG -8v:,R?-9 փmfO mڛS [eBrf4OYg۟U MR%A/396g"s35_-ofR#!#"HRJ6xLCĬ'PumI1r;g0P`:%``ѩXb^!"Kd&cɡk˝'yv9Pj /z/ ( >:Ad:JH!t%r: ~,ƻz:ZeKmo-r*!|e!#PIJ`%̠c&e(DfҢ׵(0x3xIm9m+Hwr*ѯim.;@yA `%~ L :y"Mw9FϤڇUn &Hdӊv-l`?R\nR-WH(l#j(BJUh +VLn& G >JO_-?F}e>)jr"갯SK.&W%+W0!fO K(4 %+"`O8~-sz">Ɩ7?plZq"KȜ68FYC"o-a ٯ[UI/)r#b{d X,gLx|Wޞ7Z,5c /&~HyPAQ4mrm]pH=xվ:0y^9&?<S^K@G%xL&GR8@JMnfvS:fЖ+P6l N4YsbvV='l1."S󰖰c%Х2T]r ;1a˔)xNfvwM980Җj9Zf܌ŊӿA!uڀ;٧FRTGQ SJuρ b ޡH21#EB__oflHp;FqR%c:Y?J1>M7פ|c]:?'JL@k9Pd@CBrmeYx J,+\ <כ*vc=qo0<uA` 9.3F7=c8Ĵgu$X bi%$fUIuE>>>0鲊 |"Qna:{ꄷ_v&5 уvlSx و"x\={. ƪq/YQw:tZ:ZU|Dۄff ՍU&LPX5HY,-0lee`!Ͳ߇-~mc_8vfͪ-ަpbս;QDc2SzGg$.hwli韇:Wsv@&9P!'ETeꝟn5.s0S9ǎǯ\[[NAku6)ӋI>S^c}R.9̣*j(:f?50Tghde?GF[ݼ {ej9ŻrƦ,P^N󱧍ZA%mO!r& Iÿ6ߓS;",Qʡ"B 5/EUp%ɡ69K_4u>(A0٤xCbbtDE%9C*^O\f ӼӨFKZ,` ^(ay Jƴ% q M6$ sQ& IGϪg}z'zNIoQ-'[PT^3hn&&qs\ MK_3 ܉]}gG.?f/C\{Ep;V+дJXĹD8"5 oomqҜ`o=ę:t\))@K* A/z}P_O6ҼE ^oZxq5#9J=[Z+-S ǧ<|J ˅ǷS5:e1P *i@w DHl)\eo@2şڵЌ1r aX q6m2DО 8GJj+)"Y wT.2Jo5Yaa(vyk0/T8yt0$j3J @ۻ2Sc}:(zs9iSHiKGH Xx/=LzZa_簆R Vy"fyTRahLC3PW,l&!Z+Sjph.nH;kWTXSKA u)DND!q]%Ld_}#jքvdv{v%}qzC~dn8GxnufvG)Ѓ 8tԟ晦/4RL3xgLf,(?wX/Cw&m)2.f{ t}!'PJ)BdjcT>Нc>&tMe񁰾VLɰF?~_XjgAA:9VzZi,4͙MPT.7k-h'3k| [#@"V'0bB vӯocWWwgr%KU T,A 0uN~cq\_[ QVͷBO:I13Fܼ~Ag}K+EĀ3nH|&l '~IĜ׊.?S?% v=7YP=%Oԛn_f.'$-.@d/RU»طUp,'yUxpsSPn_*`v3 @%/8ٌ% ߚ|6-ě?Fm]ly<ŗ{4k]>kZM`hdDz7[Kn梁ax hTXߘ0!Ol>"~9e`ѰF2` 䧪 Kp%+\]"6Vg $0ڸ|nn?l cB/ł33>#'Y3D&UdIC[Cnj*25z4ro fe*} i5kJ=0$ ZAk`"ؖ| GuP-Rlfđɫ# $2Vkf[:PI4gL~t#gj6?hi'A Ttk7>=E{_p4spx ?'Or?͞c`eN^T\/qq)hhlMH $<>d#'Q1U6^O+{5ȣ4;,fa2O!}_ X5^i*ݤ:[ : m96ԆN@DЀOxj 市u];[IM.(9#Tq2MS(ZG]lblQn&WJ|ow1.0;a VH@ܣU{grĒ64&1-: [RȔoĘx3ˤIy Q-Nw%頎&7 @184.0.r+H;f͕xc=(1>=Mvj$:x\|s)=Z'/Dxˇd~/;4 KT'5+hJA-*FÎω?&{Q%p"X-q#|w\ ,pª$# -}ڒ,(Xc_6 w6:j7 +j* ۑvx[~D kx2&ڽjxniZ $2-ULm&qV[G9-τw S'6c &`)dx✴0hqEh6I_ࠓuYy^8jYUIw78+B˒w`K=A TTsIw fZUcگ*w<c|H܇&T/WWF::|ۺdKġY[G'*vQM[io4 >.'nG>i;w-dvj,l9s-K {J)Ss!wl(U/D%,4 lmғ`νUo2`bcD%K6b(-41'®_-Ԁ.ޅl&$&i,U]_hbrnvN\(fhVy2SmxLs0}Oc%7xH/.$j,B9kGJH9|Isq׏~q$S;B2|j-0*R)z FY|:-(SDIXU+sU}B\jY̿:g4R ,ɡ`]BK<#2_;Ѕ[Y{Ic$gTO01`,m"־u&OZ"5Kidj\xsNWE;$рqh#uƵӆMZղ1q+[ET$chοѢS#{~B8_L/i h#16忍eK?mZHj[cg~'2q2fbz*߅>RkϾӉ 4Q.{m"%^%U9))6ζ},Kbz>Fu;2PjlJu.}>DDVYHt_NHiو\yH]hZqTz`Swtr("0k^ ZtrW%L ALN'`{N3I,2ZuB,$lGM$og_*bEH 43cFc"8e@)/'3& ;=8GI}NÌyo(ߑ\Qjgqt$+TW&Q~v s":TK`w6&a%1ed2k~itSȄw-mB=\\Q>{JҐD|]h/˜gdhvt|톄jܙy( %s-Ԃr0 r}pUeʔG T߯) K砦 ʼt dAkG4dbӰۧ ~Nk bzZ3s s+vPeU}m ˭A?^W3zy^:n:Xl %ZS@ЂT!"+J vΦ;AmX p2/yAq.;0ՎC T1B!)+;ۥ֌9i c-LgcՖz!.wPY")|uyt+@`a5VN#y@!{e>S(]i[á4l E><3pk+tI9!^Cgo'浸2_2wC[dM`Zq73cdojӿ*Lζ6,_bbv" <3m`7T1sүCz7j z8izB0[ETqc_Iʯ eH'nK:A\h)ߐN t|P}::5 T&7itO|QKlewp !ض{|<( Z9d*kD/+q7(n bّ6_kfN6s-ުd"1:t I"I@^߇qv"90s!_֌wZ+rkY ;o1§AP 2mzMӏ UL]Aa엝|`~&ᓃZ{23H*.D0Wk2wPS'iGFz N_?@,5D=sJav ĩ*'T?۲#mmv#=ggwn B"[]0s4D(/0K"92Ťs(= .! <"AYGc8S=-՚WBk+ͺWNM=Zc#X[JI;Pz<}%['aZJޓ4;_gQ.͓+ Lq*q3G!֮}x 7ˤvI{>ar(gUv}m՗+Tjc!/7PmA,{*.TBpl'\b[k Ul+`zyO9C2XE#M/Z5mŁB+U%yaΡxH x|c|S_H'RZTwŷ]%7brB85>,>9g1m,2VmJa'-_U] `cqȊ+w8;Xvx|6b30>䞲, M.defcsyʤ,xCZɏYƺSUpW2v^,gt0W5Ltg2Ib LIG ,C<_#XUU%VBJuq*<>L_Mzt[끞0<.v~8çN)/pDyd z1{n' dybOP kgqlʈěxG͕9͛7fj7wy"MHr;T:Pi{JB޺ >Oerv>J|! $btJ;,Iv,%ʉ.~C/pdjJHU , +QxNFrȱd=goOC*%jT $@\}b:vWQ*6A[qg1]Is{i\rПX,E{q^ S6'y&-8D, YAs_xy!JX~V 3SHOW1 = +[ʆ^q-*rAh^7#IL`榶QN Qf}rG&sXua27Xt, Y# xW2NMsikCn;C~L_޲ a7xȾz1}8a25H#E4 C}z,xH16TӬyv[@| C#đjKWNbY ;;D)FLw47Ϙ[MǸ6l~tc4_Wc; 6W NRh٬F } RN+o>)C?l(Z!v iN\&U/J$ 05ߗ^ N,EP,9tlU}JHF(_\nD%U ܏gM/_T\KRm@v~rȉ"Qc'NeTf?3v~ʦȰ^yUQdxaK,t<3ы!%8Z3xhX&G!0 Z)2 ZiRM62s*2:G-ٙp 7 W i]L CR Dv@r©Q+@yA& TEЋ`&nO B< e"]3;ZRaC=>GSBɼ @@mGysip`aI?- б4eKriEz<240~o ߩY#z͋e&t?Aq65,6IB!Ԕ'0 WVϘ? VQOD6[] f+WtO݊֯;"W;]z'#ߜ[s,S;t>rpZH" 0Jʚiq Z?%y|(PH`w%3mlCՊ/9t H$JR>AuVstZ#U[D?E'ڠE9~|b(~pDNyxJ>fxݦzi-AA`1S*|Sux]u=gu㌦z> b}M!㉕rK uorpJeW:<9ߘ kY B9CD}Byr-ܥt5myTJ Ȱo_g -tR Q<Υ<{Ecr O}rsoyypoL@Ҕ gSVWbC# kUUĩUsO$࿙A,9~)yFPkaEWSq]pZO>>x*(YZ)8q`NAX.x*RӤѮTt`3[# fu:5Bƈ_H;)qwO g8h-CEkhxd>[(-СeVx+VT7;́s F)3XE*}Qmwg"{KahH(ĸNVqVePRpZlqB1NݴSfdJϸH=4ի"gf->mj}#hO:6'q /*N6]qU 4MJI_4[y׮e5CL%3}]аXX7%3i^xXIR(|Y@\Q|@δ͵Bv$1Yd{HPs 60t^XFC"Tmch&R3`9ƞvVqF?y.`(jWs+v}R 2N_J @qo1^ 87 i}G1MZ^މg/j>i9H@[ ?7Z { L'y)ԣ.ʆ cRً"#FD}C4ghW:ߡՍtbBL 04UP\> MεlWyn{n˒́X2I!lM5 W8%Lraeڪ1 }u*p(uS̡/K>yE_ꮿR#Bhh 2\_ƹwJ4^ļ:𸗃K`[Y#(9",s ˆ:*9 hjybu ˍexe%co γ͂#mcj̗ wܻs&Y(RR j~0č)sQNy2:jC֞{6Ad-HOUT8~vl2*^/#2*^}C1X~oExV\ jJEYTrAuhK/j̓ưg擕[pHyxeZ}S\=y [NSB>8:qJj?R.oGƺ1ѽ;n E ZZmsuՈ7bJh;BW@Wvu1޻F9g$";g[Ț^x fHLnQVuV([tQ)G<:FvlWJ!},~NQ|sPQ(12=1c`lJ`QK`y *<|1bO-+7>Ɍ26PNx![j_yn8AsN 2ALwyg*,f7+o |bVk19R~ i}]$aBONA-erceDoxX{"X`(EoWjfż$$Բsdn7^`-S"] N5j㬗&y2Sz =]}p#.Yn|1$*pߗ Wu{Z[3T!ݲRIqr~@J.Z&)(v?_9u0+c*`MZ*H.COOaj_+ 690NL8 U"M?pq^q|@*w0L^B'<-:.i&hu, n Ӽ]1KpK'L<ᴋR 0%p+HSX*;0)bȘ-zqtN.n=2Wsp.AABQi3QêC&3)=WAڞ "RQosyAF4 y!*kq&I$(`9(d! (pj)Rä?́]ic j "}Z MRِ$fק8w_|}tyzMH4DuޠZ [B`?BCΛoɿzyFpO7<Ǡճ u&P8g t6ܘۺ"(_e^~TZK^\PCc5-f(b\DUӢ8. XGc&sdQަ{wr9Tv&LlmVp)O08ŠE 6 *'5̲ e$A6bT 9e1;bH OZ&l8BJ,2pw7z`1hzu 6'/;u(a}|(k??4H々ܩ~[FUN Lc^h 2=Ua$+!y!W=" s ] r ^1M RO ῰F@ y/%7+$UOɔb .Ȧj¦w%/U+c":!vJyR 3Y"6f`)eq* ALimHyJO4Xc4lK|8C<6yZ(Az[ErPwK:И<ՠϟPiA-K§eWR}|a۪'sZ.Flūս#l3{wFXˮ0S3tv֒YfSţ[-nq̹լE̡c*>l*=!K% sEJ6R\Hqӄa\|Dꔅ΃%aO MT+̯=3@Nз1 (9_a7,Z"|Rx4gϑ)Uz+MͶ;1h0й%"+z{qI7%*s#TQf"PN5RKէj%ѱg ɥ:%,edk$?>oBO]YwE¹e2￯5_K~KȺ֡;ix4e ʹLmuX4}{~2Cnajv F13qY3sV/UrfǺPk{҃Oeacם4i.=9+4ʶ!]lM1]ktS01X2NiLIbwC 8N(D أ5K_:T,eQ;Z$.&2JklƞXϸc%>O6`k'?$zF-*#s fr56&tR)%ͬi;Pv8\w:"OR-B`bm5wv'U\p~* ]BȽSRRrfQ{솼F&Kh)^*Ui>]FUrlA+T aBp3O]*)'1h/SnK’v9؉lYC|f,4r׷w]T~#0ʷSc $h+ifF['d-J=$n( QpS~|]9f6!). QqaI/);.,'Cͭ<> lxх  I@nolP䏠}Ӄvtǒ̤Fu@KOR|)nMmX%'_HmaMiW{k5cM|r~o"\M[gg&fu3?y<2󋸡kp %~oY~??/ܬb6mUUSI%_uGUq-=?xf퀀b<]fTc>Ի5Zr^Ia;j8k,>>ЖbaE׉0 "tPS̘̍gqosj^N@xsi-W-1}='āF79DOΧJ~Rl=G.2GATnmOK.mll0lW(5cݧ1U~6ZaL=:5ΞJ;m`#S#: Уm]S 62 u&CJs.c%x$C&PdfhEӗcs¨Yb_5Dm=jC{|^&4"mhltѳb.HNv綐r/V_.[zc )8ѿUhj~^PYĤ,Oi0NXhJ,yZnR"֧Xc%c|{bq%I^V&*yRMj.͠ZtEºi29Pcك_C(kDS_<6Cg۴}A盰k}gs?jR,1'CF oH D1J3@$'Or]@:qqwgGS4 |5`R["?2ei}*QqN \V~n>(&^) ?0)6 7 IJ|0d0|?T8G4NDP6fLsr1n'**Xv)Η[eǜOH ?xΘeag^2pJ ":be}țh%!YtLu͠}k`X^1u:+8)WQJ6@9P!5vذ{ MčͱGN"C?(_t=>%G`m]0$v bgFe h]Oۮwv0t\U5xt4kFÀȼF3YK\wݾZSNY lFӃFo(̶U5*g߿RjdnGJ?d]))⍈ )ĉ6o%6I,Rkh߹B iVѵ^!&׮+ ~y+gc?􂑖Űv=$RG9iQGi_䳙a(=P]`4$) FwKtnjd}?}Ft(d VbY.dmD}]79pu#)-D5F%-{+֥<_jܢ:o^Swi>E2@ܓyF^l{盟O/|auGkT9  yxbqo+xqG5-rtfYЄNҖV 4VC>1C<5$x.J^*A-bR8s =:5RYѕ{ly:>3ۂ6{~L9ưW]J\)9x+:}~O֊d|`iu-76T@Eٱ!M/ ^AK۔!Gs Kau|ԝYT'HihMt} Njzas,R;xOijjtS}:e0M0Dn6 _8Ă(3;lm-:YϞe*XΤ=ׂ+ջ7o2z70Rq fQ/!-~^B`n@WP<8 tduEIPls$ojZu#~ڙ6 B8e,n՟q+;t-#x-ovנ Ŋ= Z=OMQvM% r `b \*77ъZv(a/aO4vk>:]%լRhδxqR˂O#g6 taKy03! f`ҧCZʏk]MXG_)!8j(z-'5U9(Ki€y+*r w">*Fz]$VP:7}.U~!b|BsF(6hHTkʬk9 yRA8 ~&Ub3Q=Dr [<sFƱ[;g<V.% +FI1]q&øG~Gɫ~,zɑxPp,d/(y4@p&CE::#x=6*sq^:CaԦ]b{?\ {trQ))AFow=XيGZ.gnQ74#=1gG4 k\>hsI 290t;nd)₋/ŽlpZy @1Ygy+Em I |%n2vD)/D]!вQ"z;U5xS3:>\nbLt.[oOӹaGnSWsuSE!Q T 5K]3+Ɯ}vQOyTSBj@38quy?;ήȄo<Y",_J uf"GP2M;XS&+e"C;tB (r>kDHIAm#6O5tk!s;3 z.Xfgb+f13Rl)iGG*#H0bnQꤒD"AkZ5F4A'%.w`m! SGVPg =v=E"/ģ}jg[Hfq˧LEԍ*{o|ف_h2$ß ]#"4t MNJN띙3򐭀!oc[iNvu,@3LO[D8SE %2՞Tbldzه;.rb}<=MQ ki8?aHhf e ^c k^ʃ3Rk!M*o xDQGȷɹ& ͮ>Ʈo 5%Y;e`myoz4bbvq{ekE*Z\C%:yʿy`\yEM6Yd.rua$G I:o:T, YAbV2, 3QB 4a S(P A|dQh>wLND//p/ -Ggm,QZL) yp(_o`ŁY2Z\=Ƭͬ<$.(>;->‹q^$j z2)E<>cENR >5BG⪚`4|5▟-(H{П:l=mq*o3ɖ x¦VDӟlC!^z~_d˛W JS>dscN"J|Hx5O^_&"rs,q M@,\>wŵxt))ru`8${> IGJ~Rx_([EϿDO.%:Pl q. >c&x.CಬɢEh[bR;> ޟB,_.9]tNNI͑Xt"Qko7`NQZ%7ej}x(F+t@+IQx?p_ʸ޼I/4(\ΤE"RGٻ5%Kҍ( #3Ounn;;Ey6/8>ZvˤJ͈ξjt |zL%mCF$rR!RU!v R$lm~niɌ+Ͼ?k`fKI;F<1TMw9|0"G8!^؁Xe+wy zji[.jRj } ]”u>As%+K#sTXF&(l g;(QXq^X@ \'dW0ث`|>9f-j@$ԇP=qc̅%Nr+/2/f9iTՌ~اvhw:p,JC$Z|Mq/J÷2`t+pg~) #ea , T~%E5 ;#ŏPLYB%DBV[ϔ@ќ1$~Rh7JZ8 6XhCFm#3m(CaSe)Сڊ\et7o+ 3R"1ӭ~vrwQ[@FN@ygmMK?mη; .`hbNQkyx{Z:SAVb7VRx$o b0ИfXVaIw[oWD#CƦ@GLaW^v FS;?g/k 4X9'.፭dsۻi rLQVcJs=O9XRHA:o%&^LӉP !8֐Pt ^6X%3:: W#RWp| Sbq2Ϩ@GV = W>c*B3(l=B{pbzh.1lQO1ߕ±E:7 )A-ߢ% ]Z40G82?Io#20b".̟|i?U f3 䕃H(;P)Cy@sFQ%ʋ3`(žfTE1G4NDm1qS)%W|‰~J%"lMoxa |^e&dŒx6`P5}nl g%( JrXWD>mu_bJڐ)?t;>0x{*{f߃m`a#1җ0vVXAnVC)`ni;H+v՚bMzR2FJ^! BOPڒrvLFe͘y>E"Qh 6TWPSjhܞٰ%X_\ sgp暎 ~qaiZoLX_92BùL ăW8꧘5r$o~4PF xPHmV?nJ0/~oۯ MfKd5xx|BB9]E V(|~梊FV4]j ,oo9{M2 sa7ȇUI|#_{U(ew3J)$W~WIڟ̧PN_\>P m?[CVEQB -v'3#+ pb:~k|9 0eɟE+;ޓϸA#c4x"U+\&0'xb3ZA81e(ZVNx`QN_0{BGO.(5 4&&Z8d{]tv1qEߨD+%d *"=t 96  L:FzLO׭K)?>E2S@ E>0G_7+ELQ`?@HDbV_DlD"Ut@]㤭?Jb*[rp]F,#?VIzW^z}7ĉCx[F>R| Z 2{yt$ N[~=%Z e˜)/L`-: V$'f1;RꂏUDT-ۥtR&D "v݊P.#4B<[䴺-9Gt,Qgefo^ $E!8jڹ5$GI|f-c8SƬOBr-W#,/VB$dE ^qa;xeWcHՖ#MucU~X!S!Pa.SjBRgA])<n H'A~C+< QI銾b/}bf֔q0!4n4}^"~m(8bd eQą@FlpDeꪟ~=E魑XPV'J/gaRnMH<Y}V[{=d0Vs cXɤ)n_#G To܁Xs!? +! p1Z}h4E_#k?1xFP ^|紗߫D: d! ADPӜtE5Qekw ߆&;,8IC7xuwlR{ ue"W1ZO-< j^<^X_xc2rrxWtluo-P0k=5P~ iQ vySy_X2~\ f% VD(P8*?6c,#tGE ǂ)5\p`luPlfN}< 1f_6pni=.dw zՒlrvuN]8"Ou.ɯ%0Gp9'r|^٬91>V `nWDz>7/mpr[C;0;=ٍpծ`@Zk^qbluBg,mM?`i̡t"X+o-_k㹓&`Kvzۅ+^yGVJ)]HppɐM7-"#Hؗ}hP~t)utcG&?IWWC5Fq“~pB@/o:*YD /rGt,7DjK/5y-aȏK3jR/ C ?=ʈ^7VVp6[z DuE'7d_*2lcxS:m3^ qG$ZIg^l_ NlxIIiq$xEmڛpcz3g,G_3x{1+? O Z*5h>ix-FbZK5?H޻f WT%^33L_ޫzZp]ٿ^YTi8ەlEaoM֚n4һVovtF&|~H-sUpũoD/z Ko7JjnQ-Us!\|/l req8Kx|zx$q];gp:%p/ǻ%~w'4%I9c/tzBCaGloU|~} DQq @6 | &K{G*Cn4e=/;xzy0NZ(4f_k+1D鄭Kk墩{`5;NQ#cF{U68m  (YJ#c5HKC\ ( ^K:mOLwExwj@`N;v=5,9Ms/f;1Y=b05upŸvs<¾~VdՑ-<# Q_SߙOB,YyʆܰHYWT t7yGQ&Gl*ƚ #N'x屸*5ha6nj,K\ =X-3V K5 J6W}4L>uTђ~40 wѽE ,qg@ b䲟wj|u7Бs׃RG^BWѥ//#% .tb1¼3GE/ 7<7!4tP?G{3iH1 J^+,m,n h;C~`͎z(_[^/HS@I#Inv&}t H`-7"x6{:'inWy(OI-VIni~kv8W~"Gc6 SpLN|>Ky0o[nBNUsU3_-]  n[EFýu{k\}t![ vr,J1O1gƑn4v%&<-bQl;& o׺@$s}A7UG[ϔ=c"l}!Hjy%ЦGVN"K86jCK?BKU5)Pp5&K2h?IţcON>]Eӵ?w">d@1[B#etd|{0nސjzt1eMMnMPr򛛚}|>^Y?M-qc6#eŸ}nء>%U':VdJos }vX;,~u;͞z/Kc&VDvAv]P^BoѹTlR33Wj8NodTCUӳa̪r~pCCE[t RY~Q(,R3y=u.|2Y/}9=svl.嵰},(S8m;;] ~ Uq~\7ƪ2'ćŹwmY ]R\._ gdR1f+X^Z[(DSXغ7eZ)nO7R+p I,0WT&{ U]{wԀOGe8!bZ-~#hZ>o<-F+5U%(K^U>iYBoWw}Ƽ]>b7x#f➛YZ/-_$PIdGRK֑(m`Q~jN<}ѡ9p0Og5 B<1ΘrqL9\|Ĝ"ǓT^ch:oD"1fh"7@'=5JZgi=7@T5q֏#| Q)CxFo _gXac8:0&>hXO^ ռ{۵eNۆ^\cT AZ6_yk5r{I35q֎y tw ǎas<&%*":Yzރ>[EDCQ1ʍܡ3E'CY ˸|~gwiϼA\GܱS󰦔k7'uL^eYut~u6^.|֗-S4Bٲ0+7CLG:HIb!Z!+&wר$RDkp9a&yO^ 54k$CnιcYPҤ*(a(ƹlj4dԸY7[T2{Ly@?1UT2sZ;?%1ynT iJ=Bvޚ-hլ? DFn-ܳC[7afN:D D=JWۀ룚 m &fO"V)3飑|X~qq/ b>N4{>XByIA=Q&%[%qpyu~7oxI 2mXߡ{=bGT8&l6GS< S gO04e#f_O"2B#{R'@w`:ėA(>,R)%?1_/t6 Y_@`I;u%Dx Ey7 W($I*X*:U@[rn" Lja x??Ls+ht<Ԋ %@w ܣrQӇE"j-:-޲/Z?@p,S5PhjssKVA54+1ϠaIc. qKxJ` 3D /kͱi t]^%c?OUJf=e\-ǢseͰC|' MۻmǣH3l0WVwE¯$' )'GwOuvB[x -=FJ}zV;fM^\Y:]VҺzSĘiT7J tl"_pG_pXj(/+Ⴆ6̿#S83п:7)<1"بxEE) Q:gJ_EXU1y'!9t$c\o FXS}\tEHE;y{fWՐ!q؅+ն/!~P6yY얀/C)uU.M)?jM='4ʹ}14_P6Zi8n\6;HC6;aFۗzw'᭤ʅlJ3)a:,M(9aL rAapl5e@]VcCG1 >62!O[yCX+Y _ҵJJ/zwt',[n(0JMH)г ][@a}p\&&epJ,SyVxt2yuM5,)86U01};/ k5Ölf |,LSX%N?4f?K7[=M v}Ca]a<¼-b2+~?0B\1+Wt1LxH3VVA!!쩕k=\4bOl˂]7l3Q6SMHnqF럮"0D$?ZFN|kdavvM5`vꄙðLz̺>u֖hV@Gbhm/x|tCU ;%3>lb;ʜr :f43Dmx Þtm>qp<?C\A\NZn,ىmzI@DZ:SzȨT"'j1[4İ[̻*RЋ=0|n֝@47[<ך>[ǔQg]I+}«;-*ci㹂]jd[Z=RܻB{dr\Y4)(h4X0۶uk:n%\MzlL#)Ӣ S4|v@VhE@zz n&i=eWߥS@Jbr<,X;z˔|#Zc|cʎJ5ZIt ೂ+k}ZL!ib E$ijNu'#Vvaw%.݄ܹBct-#b듢c +[ksiWF6pp:O0bd3:w/PpCrcUH6|eDPsOp Ĕi!QRx.dc)ѓaxPR|a^=auJ8/|۱)Ү0CUkġ1F_fҳ '<t4ie5ƣ/ŮO (8#*$19%B@K)) :vyu1x&QB6CAnH5+mxkf62[ kBzy^Y0,~P(qCڴE7n$leX#)4`۷07#bb+;qWy=2@.%Vl ^ ia#_'X t/c'9n̺7[T7ZPF $Gl+`o<\H;H&)زTkQI]@|A-fl70e}G#TChJ  vI&)ehd켇+WHF `Bh) r2+\0AD":-!z >R,8YJ" 3N2ضг;+W060ɉNOJn2h/L>%\@l SC]:!QfHjK,rY+>!/[,$Jcbш(RįcFw*μ$%φI^D#YN\ؼf3%ߘO7R򬩞,lK"N+m՝!FSj,6,M`7v.A5HCo[Z׈ZFSa*0Ɩ S)gMpF;rFEeuȜ `悊WP-nin>ٞN8= `(wZ bB4/MWߕ,rsz{M']`,CͧbDJ{E)|7ắeO"(6k4mAuʐG>ߪsGmN9 jy$k^+_^R8XRQC#U֑i'NMJzbuw&r$֓Y0lJx:c1y `Qh./15tX =ņ$ ¤{RAz4JpOT:}}ЛpINO^)#^fh)7c?䜯 wC_]h ((;T%uTi"~ M?39m'XIo˸kS\,4W[Ю5IgSUW|qFFKvI4.^BVhvP4K_hWid@ysMGvC)}TJp &f2>6 EZll ae[IrdkZzjҍʻQ86j|ڸȴ䷌͟SbJ,~7@<)m Y'5 B烳-O5Q/QġzOFW(zEW\0^u˦⍪ɞ`lx}s\;.n׈}{sgWuP4t'[ <T>F+/+b-QaؖhWuBO!.4kԛQ{u:1?ɞ!9,YCl.a!!!uZ9m=J)&mRaM ѡ1ߙnLφ#wނG>jEeve;s'),VVQ׼5~BHE%FHGSwGqՃslZ,^^8KL4->V+7? fZKd~F|`7oQޯh$ԁr4/2)拽WHm_girNWwZ\-_pzUpy*$@;sL o!oQxfVW&֍e, rڻf:mr>ymׅYz` BC'Al68\ISW̑jd}-(0(џ'609~0S bBj y%ݬơx-fLsGRdmW ƫZއiIyϡh9۾N?jorYK]nG6&hFM]:ޞX4wQ`XHMɌީQ "2L+r1'EoQ\ދ8Yv@6^.ڭC#e5V)k_i6jX#/FQ1< D.h3@eI}x?^yb9Rs O0Sp,|1G`#O%Mj 5ܘ A -By*{ \.U?(V\L.e]pnc[-DžEy_pJE,oJ4ցK܎?;a_aɇ򆛯TN2?e ϶'q'  bٷG9qlҩJ2 qNI^[畊:(fzƥO~W{蠆wL,F0MB 3{;YbSN7> gE~s&^]c !Nl(w#X(zͳd aVQ'$C%t@ڜC7p$'cXYh)p7IgoD*+"'Cу7Q< Qfx",,G\\(=)jezJCR7Ml2iMA%>::ncڄqsgӔ [I3.Czڂ# g@FB'=M47%>Z^~YuT&W"eNK+P.f+eć,8p 1*>(OևOućSuY大@|9:zpu+oﮍS#CZW;Oi&XoOƾ &}v{dq(` &HzׄEJ-q~,ZN)v8pSBUq|ף.L΍ڗhd*VN^ţ1kާ>N~^΍}e/Df"BzmȶĜC!kMV)~ Hirׄ2z ÇuU4p:7LCӒk;7/Z+KߺyAn!6S cqNVaONFcC=6U7k֕E NUKQ3m)Ҵfy)0p)' +1td %|!113T۾yS,F[|X8cĈa`ixbAcҥTT4~ȯG%?'q'l|8V"4Jt*(yf[V$3LiaCC@46@ZaZ? +@_ڼI.&*!+c:FC^Nt cċ cu !13Atx@Yk f uzp$={WUl2 kcL d,䫃b,dlGv59Z_*u۫Dob2[JC[SMMkե4d kyד) * *ix]7/TTZGsLT\]g=]h;yͳDU4w&≠eײ @-b;E\5@–Q@`yP{,УˍD]?\5 ^ AePT̾K,2-`^ & PC[GwYgFG"O,]/xJR=aE[?V6 ]e| Ft1Z k2gfBuC.2V{+Ov@)pvAϟ\yWwb߀ɯo}W}v^˽'@4'Q~bf֦ nd{Htk~ Oʫ%/ҫVui6.>D-œG,yUgU.y'?ZC^͠Pc+f!Pt!0F ]7^zઋxMqɌ/'R[SMd4wxt~M/+?hݻ)C!)G8\-]N|Ϋ>]&eIU-֝ `4(4ԻUK$eEU]%s*<@‚0i@Ey!b^ N2$H(()Cb)]4Z0T{ b{˶cYwam~ڱYb2;]'q0Kv>Z%'>tizR&Df.bl( iG~ry/mhrƉLq": h{aN(_ane$<:SSzle#jl)i"[l>P~`kqK18ASOΧZ$ V'w} qV=k S WI8Zݡ²\BAI<14Tf{?mLRs?o L,=xo(+xW%ZS8QI1"S"VGCءo.E&/u'ph+V6. &@Elnγ=.7`b@<$_y-k4H 'q9")VK10G uVLbP/-ːm%̦wz°c?dy=uמUp+ D)2:ZƙHWD% aLnW&N<:GKd~j&]=RA}oϲސJ>_"=fb6sThm)$W3Xls hsd=*"c$8e34"9 (Z랾#%'p,EEd$2A@U18t<]LnW _oǴ6Nxq$}>UIn|EL6I[/K(9A!9TJ %%0}[Pǧ_?#20Pq1 ?fJ]kt} 6 {`_/:k7-Ց#A2' RL% w D#U\=O)җl/{7(v$ fղȿE:b#ThrEn:dqj MKbp\_@\Qx Ԡld*\rkA9@$S 񟊿x>#EvxUɢ I=Ƽ}L9(DEw$h5yb=cyPLlqv_k<`z"bUhS۲80i?dJ,-Hj" CFxp{˶qCkۆ,]K:gdZ&x@Z9~N<%>!&9{q %2lEzfkLw xkD3떝Ͱ a*z1DЅ7pЖ 7m %B ?̓wm}dݺ}F8+tKVѝ |=Y%.@n}S^ lMJTxbUݕX=K% oUTH'V5O\k96h@'"̹6^^rFcJw Vq+8cP3wHm##\?+_;d3e/wjȩkVJrsD(RshXՓ-Q U/rAHq7'K0nxDŽ-~*7]mPWa[Ѕs̨Iqx@ei$m:^-T㋋˹q' qcmcjg;Cns+(gu#Tc8].CNڃ Ys >.Т]3؄iUtu!!i.$I`x\J1c# VBA G ;7u2cDI'6j;+ &AlQdkbgE"t_˯}*J/#ZTaWRBwE,D|J}ɷ0cڤWzB`k8 b̈|F-=Th PԭDuSh-ŭQ3<1f eqwdw@ 2I:W6IW_,ZLۈ\Ia@d 30Θlʥa.aDt юm7N< Qw;v yeq .fҏEr ^\cNXPb9 4A;2m59:cW昶^E_1I|e9؅M94)vl蟤'PPԌivs(.3Ds } )Piء{[jEQ֖E8IQ|#kww69aCBԹʢڋ5hm)o,xBӢ$X Ŋ,(;J/]!Z٣6vzDK\K@/1z,coz؞SWچ%oץwC IrGcv7hiYC1,Y(/@ V0¢ߒjhm9eеF!_5Y49f>UIׂ0YA{8 pvz<ĸՎɢ{CVe'#p*3y5|(a6od̷M-gy\I0 `g\[vLJY\z,aD5HIě>G%fpΈ's$~OĚg_5^dk9iY?ާzcEH,VR>1|Ց ׼"ҷ 7 P8^J` rݎ4df<{q$1rb9L!#{oeR!ëT86綢VGpt$X:)8JZ$esDA{S^\1@^Y?(q<[98mqzZ'D&<۞krR.+<ׅ㬨k!v.O_;¦%| U%:nz ;_)TϤCc9Io󇶖:~7,Ep\D[K'L* S T[Ϣh 2&yq߮fϵ+6ԕm+ գ؜]H(^GB8@ۤcHp Vvjco:9|*=K0'*ƇH)rм |Sr pEk3$^VF+RIAb\{>8hq "NUOdžEaSl8kNꖀW#Nӟㄺňn)~mP u1Y&rLcLJD6\l(s/IaO.FK$x/T^@kqJA2o% 1VdSZeLXnk&Y5p0VmpϭF1~$)7 u4s&:Qu)-%&REX/4@PcN ǍLO q@'ՀUF>tS4Ҫ`sy;(܅QC(u9v.#!Y3dA2\2 {t$EHHP(0'{wY ؝Jvj* 3Ԏ> a'Es?p%gi=6TcD#7/e+%YՎN Twxޔw2; eM"ja&m{}aҩQQZ.UktJlZ$4xʜlqS_`uiHH$;ҟ*};{ϴi3 S7mSVң?2Qdr_Wyd>ql e/ށoR'Z[h@Md%UAGFWkj]w[ZtɄ%ߚ%㯺g⠟i؊|%UR<޿_/goltTPGc D?At,Z%Mg)A.xʀS˱r٥UqJ 暥<C~9/w/{xtX9t-66Mg;" BN~7*UoEv/:dʐ@~fJ m7$(\?#{;®9?^#0@;܃]7,})xh9H"k+ԕ@c_XKJu_J?T~kQ U"|wγό8F93AF%H,|oQʍ>5FQQoe?0fJ2x~`,>ŝcS#L!Cdhƒc̍ZW@qgZCiXQ(p.ueB6GN<] ]9w8 ȓF2sC!D 'LuE']M7 nlZL"Ǿ=/e3GkP" Y&^B+ʁz\=.6S 8bPp?7y8f BCGDcRwqsLtQTUT׫[I 79>c#48'ascJ2qBm(qslsª%-n+7Fs_HNCwaAzjNf-ڙPQ6]ЌdtQx3UAa,k.ֲxWSxzZ0mfsxB%b 6jZś>)!%JΝ ޱxo16YܑId]/=T[̜yE\Zڶ^u҄k,F,wx(yp{)ϟԪhz$,vK#oX5?6  UK_^獱F.r^7X%g=6~K>3?)}\L0 :v/\`n6hGIl^qXffH 4T V6-Ք/AVp|`UZ3 qkFa*/梔~EWYrT>zb3]l=294WNCmSH !`5|,^ã[d[L|kndJE[NNZE7{j1 6I k{|8dI(rq&?wyBߡByc˘9we.X X!`p5Zr#CƆSKj vYKK*߆_jx·9C0 ;F.Q٭}icp89jdiOZ LIRGAMX@5a(g+Ljs^W,{ l]XqݼF_R=Cٺ5+ #RH owS?a3o 6SbH=C@ )H,!ӇרT$~~ф§>,~41)<^e)qp1Qd;7x+}eM%Ƞ5WJh7kZ.~9o%yFf;>VޛaitM1 >pZpÌ agn!>^|HՎP-D:FUb&C3XmϮj-6(^C˷]`=l0b?^|6myƞLxLh޼2dB^7B1$OB+ ^UIԤq9_Ļy|MlH paO 1`Mg\zY|F vh3s"y><B*I-p:`#|H>C:'h P>~V/ɬJ C:dE[`f}]-P)1?AdaǚvG3 ݔa 2е8%SBXCԑV1iۢJ)髱 s^KJ9n(ߒ*PKq-j3S&D{l5s~UEa&G#Μ$?b悱C# j22ͼ]Z<ߘ&o**jwSmЅ s]'ä>SM5SQy5 KAHVo J̝Òړ-g{O .وnWYgP:Ɛ0!ʓN ^((Rx.}D> lIKfNx5K|e Hvuv;}oB! TME{O.`)W3s"AKv&-k0F-:MI(!ve2L&8}% [b͜=l#T'7[bt²ӑYnQlTx=}r(o`)H;wWY|njR&~bѹpc "rt$?yFb9q^/؉$;vG/sh'_slMUyJ+CzfCg0/2Dgg  뒉Sp_h!'LEIڼݻr%ŇcSV7#aXC@5x}&O23eYۓ']cMӤg, +{!wttʫ=?3ɖrFBf .格4+U%[6N%5YuzY*9sǾ#6ɱO6e0RYU ltFw/C(FgʧE[dH?J>F:1ZGbvj"*}+MٕTTj)4z,v$l5guf¥2i\|4% %-l5%[L~^Y26s>p{]7XSPP ƮQN턍7yJ?Rysuu#l:U~3FfRH+5B¹Q-4@'c8Ky͏ Y_΍W2HO65|do.j*/6ۤ lrvtjٴFM#=gc͏q+e/T#K yM\4^H"J2 OY.}@ _mm.jBt"/CCy;dE#= sB|ii34z}9B$Ŧ2¥ߔH/ܪ' n[k،X4n<`}{?9r% FCNE>'9q c+˧n8rE툫v! 33!?X @$ [OuZgm:&Zq"aL;}vJe/g ?{"Geft ;r[YirVPh3\G+P*I\4\|J :%LG4raƓ0Wy`Ķ27T#) (_Pv /c $&mg܏+?u]I ߜ15T9ns*]Ͻ,{) ~oYS%A˓@{UB)RM݀C8hKEK." կXس!I$]|lWSܑ-P3Wn}8X@*h8Jv OhN]yb!zib}-z:oU$AtTfLv$bZ߈1"VNHns{c3l>U#)-s;@Zb: D}?it*]EX/oqm<;mI,>+.,ACgH`˜~xi%$--CwcNTYRFK 0-Y!.(vdb#rpf|24Z|miIH*WuA@T#T"LTwG+ǹ#n6ܚOvя hd΁ @16[wUE=jZo%=ah&[q{VFaD`0(2IUmj#oMCycdptai.C6ae`wGEb~^e(L-ɟ3 @&F2(&b%[!'Z{[R}A%5a $\c$r j|ζDw_P -<nY0qT#XD KCqćV _[l=P_TvD[ŭ^dy6$ WOu*HFR$VhG9C~7**}vstX+5#F"T\L>V-;VΥ< 깝â wt＀v|+BW:&-fʯJt8-Ypc`cz"\ wPC[&fcfR4HL[:L z]v_El_(`]Q^Rd4,I?ZG'W0*c8S6cdϣR"N~CEQqFbRii3h Y0"oδ!wS+&&7FPD͍Jp좜i ,}?Хl#HU;jcegll؋&plGЀ.atzlNư£ g^{@z!!?Q,K=ǭSv'Hȍ (/QX #  ֞Eʢ\ƤlGTstC6j^9=^X=A+Fow81L$,7 ״VZ?:p[+;WǿZZVM*o 5h?M{i6/UMEO3E=Y2OEHBsgQdz1C~`_yodY@IF9m&`]t 3yj%~r9M4!;\1Q1(k99ְ0 =[%9Rus+ay)Vˀv>K(ԷO 3LŔ ɲU<*J+"v5Gn}+!?Aǵ[B @N$]Itdb\rfL8bh$يH<>E3@ 6W"޲<8N tyw &Nգj. $``K_4]C l,MB%^]YPv,F$8oBa!.ѵPl/EJip?=Mcx'ц*Φ$ nVqE]@A/zk3zYk?pj2j aWTG/n'$}S0f1$1WEJ"4X+dtwYfl2K^'/~ A_*7*^!9aD(C\AXvYJ3,JvQr,-aJj(gg&jJc_ z=0*-2k^a$^y\:`sm=02>wt[!fǶ%pXW$ ]0$} ό1~~NW=ڮSͯƂ h_#h/uq@w >o(#,J_Q/~U'PO$ AJ&;sReYp,Lɀb$fy9E3b yy#T(^"D54cY ʟ!** `xK\L=wܛٺJ<2(8>5}i GӒ搸P_#cq %$dȌ  ⣦OۉoEzosv~Mi %j%^>qǗTe8]{!&C*vlȰ0|Y l&+)L=Lօʛ X[⋰Rh3s$p;Ι[;wn2=ibt-ˋ^1X47fyיv>)[QU2E\ ac"ςc#eݣZY< +@ zoPx>o$tǶE(s\NT:Y=^2ӻ|R:t?K*ܾWKFQ-ҕ4'1Kmzl2OsnfNTF1f'|3U arESx?棿¶ń'`yT:x,!!c D##؛-sxےg%Uپ[aۦ؉^e+d龋@|8^#5=TLj4^:v+Ra ӽOds+[5&,u9nm$YⱩR-NaRzRcŚ6Q(nauIw ݏeK B4cuGЧ}$5 xDCȠ%-Ѩu8:cN>JM$VߡPRqHSgjJs-Vd^麃Lt!TGQa|tŢ Ck|P)ְ-:}-W] &Wz ,xu X~@GϖCSBygPy+~ao$^ewq)·e wZCD|t~:fq~CRCgƔyQQ2: t<ͻk遡8hJf0zWsB6$O*ӟ#!CP?2z'9A!eS8%Y?ɖMG# hr#NC"?_@+L1_"}ƭb tLǘGgAVj1Ġx^d>DRzXr]h,5?ϴz*,'y(7(ӑ?xcz~؊}`r{&D` [Y\/iIҷnW7s@sЪ۟ ^ԅ?Tw| /1}_ū8LY{$`jZV)2ppgU{; I`oXRhN[i3^w B(Rٜ辄`KDIbd%+Y%Mϡ,ds!Y!.塔YU@6T|ߌo|~P/ȃln.==*ul(n$pou/*jb*o_L ^bm-h2[ۏrsNgޕi|5MͼЯsi9]5s8%蚗͊YXTGan_k&gZ*֯jxp̑bRɊ5;)u?SPvBh^.afz8v2ߍ/`KqQx85!?4YJwDVA6zn F|Aߞ/&UצtD4X&p~mVIǡ }rCwG1'-r{ߋT eܫtQ[=lzq(Ѷ/.QӳD%{[N}127BƻT/dea&PS|SD]TZ2J܅o \XQ T ilWTyn^hR0O, x-{ WEm_݈5Hi XPzCGҠ_/  _fBp㲖Vv~4۝Wh4-X.o':Z x*kd%FjWm|O2=0j[ȖaٝM^5Aio1"IH:M[fGF{-ւ Vڴv)/&KL6(0^3Z%1*$)Kj_}&eTW> QGT]u([b,A_$bU0#b؄Zc ]xjB5hCh|]XÜ_&1zzzw@Kч2"HؓdP l(zA 83XVƠ-`^[NOJਯrɘ8zƬȺ4˾]|_.6c9#YAb˕aI<{EE#uSI&r~;;eM5a͠.#=W+>P3#&Hc ZOU$/߈n~* I lnmLlU,PTx2!9Ή#@/gKQ; Q#m $eu̖Vr$8)-HaU06MSH%UI:Ci$Ĥpad;&ށ,wCiC\3 ZtH(&JDnΨoWxP*49%BTbP9@x=3H8+Lem$X Z2HCKmtf]ÌMtf\9#[)`ԑYv@4ZnSSv׎idE^@(7Kk*DLcR^Cm($H P9c\Uwpϰ<ޙ QaǼ3R@# CwkLڃkC6힛u .Bǵs@J<GKݓ>GY6BCp@'UڛɠꐜgY||as~qpԙg%2jFb%rq(m X $WFM/Џ/d޶L ~ڏl0_j0ge$O)kXӫL"Uّq.dGa @HE@'6:|%, U} fH.ozroF.fHE$5֯MKI=U(JWӓ-cOQ YQ9|}<<˒9gd/\o?<7jvsWMgswJ%˕*A䱺݈r8?U\ |sd܌7ڟHJ CʒvxQZh4$t˃>p甫Yq_y,2:isø74OEs^86Dpw6pcJ6 1i˜{us}"<[TαDrՄ_=MP \XyXE/V7,\W2ӪCU{#;6;`C!WBN8߷ٸ+# 7b`yU 6DY\_HLjYkmr  =YM!gg>O4-$ӧH"JMFF)\:crG`Vܶw8 CQ%"}<Դ2װALMp-1)멾5PKfU6G:Bڐ18UJ &2Gv>Cjh&m`<\l@kQj;crP숆ZLP05'Q N]-ƔY=FCXg !3j5 +!7݈:%jfbq]*{`2v<|gᇑi5{EOjk% awwt)Ff9[oܑϖឺzc \Uپ>{aSe?AXW4ed1{k3=8<$Ag_-F̳|bȨ+yTO<'^s_[uu~_UJAj 2kT]:ImΩ?tŠG#8!iWZSvy;Ib W%o1$*sP ˆlz}4 SG!IZg1Ő~mZ18"j = T7Wfzks,Wjtx>fGk."n|y_)<}{]QQJ쒚+IA63yg `AM~ 8"˚gls,=H,G7YA? ;(ΰf78<+RW&v~) \<FUFܿ}x.;Plbh;ϓȠPH9&D^L Ǖ3WJ]hQPAs,r; Wk ܜ' ޣ![ӕ^ wC(J/ b_QqZ#YLZ>)@=wUdC Vȕ/+\d/BWrD-~SjQjI*2w9ނvCҼ{9lvc#O|gu72+։S<Al벺̯+H?p0D8 Ґ0w"g§j@^H];+;RptDH6rր{C`CSŲ,>aG6c{zrIm_*w ~b@FzLtQG¥St*ffnF}z1;JQwvO 5[xqEPҤq22Dca;`. ,O\՗ #r.~w]2q~aP £U;Q|o-գ%kBkUc):`d\GPY5s^!z 6JY9N(glY9%yhTYc?LE荪&|5~|gubx٭K7qMA܇."UƛU%7B4v OVs u0U]`Ϡֵpv(zWYKXAda"^;T$(e4&o_t }76jܸۅq&>qu fѷQ$'[6JVE9}yd<:DhHr}EwCʪm2 gP?=}>X//An6t~#+Ham0I9Ԃm~'znZ_Hwa*_i#i-X؁7mƢbK?`7b?SÑP Q.p?֪,>krEw:^yrr:>fgN) !+X xQ2VQk(1ޣw'#0TN$}t1Kx{QŨ/ڳ;tspjBr\/O_n\,]T$Km[wںS'CYHd*/@ yH. WIX.+&te腹JcEv.NvX;TSoF3>p[M)8:]Q6X7_୸'ko;`H5d{P{3gpݚDUa0mu2=45:mlpi\#<ĠZ1*S]@}Ia+ f{bk2w;;-V?1?덳[ c .qXfKkˋ*"w߭ PU52YUYH@zhΙ7}v׈ΙI̼0Eo -(^Q ^b$ Aj?s>c2 sM"/pvӣ/;M4M@"ŎVn.as{V5ÿgz0؋DL{_=qKŏuޙY D)W'<~[b?8:/ýB֘ذ7+{`+xF 64p.6@f O\Gm!f_+?{9';& 1ҫFXNX|XE6qƦcJ @o[ha ͥ6 /<RD:SG7C7ʁhΫՒ*g;!(R>6\+@LTM1d0sSeYTC?:]]$r}5_¦wRok׹7tUV ^GM߯6uD@G&"}p#OH?,\hƜ >9/} ^C_uUu۶Y>2l  % dp;D;PWU\<6d;6V6jlK8TWmls,T5<@vOKCIi1lДT2trEbvqzvwzZo,vf|:ær:x4|mG4NcAV(ǃwR>F2?Qfpvۅ"hGG`D ;a,@K_iYjӔШօ$xh1TX18O0JxsYGP2M2אnɐJBYto,jTMQv#gZ\— -.rgWXql'<1>OL})L>L"aJQtzqM+8VbXD&a Hz(Z4I9PsE4A] bv1~ky\O)${PTeZ)#ڈ̌dӑḥ[{N8ٜ4>G!8TΟ25|J1>v#8o SybGdDژ@MX5ɍlOV X!ӲЧdC؛K@ j6!hey42 R*3Xshv M}޷l] k¥ܗLVLqHU!_PZAҏ\>PI@>*}[M(1xrդ!Sp2ndt 뇷~vo'>CN^ލDɓt#!J(y4م$o(lQMl(A .rYLxfr 5.|ԇȂb%{r}^(K@&~_fiDW/r-{GiEK pGw Yتg֩qzM?T&f:5, Y$ CrCĴtfjKBuXP L ^~P늼L ]o>n~f70T8KԂVB>&4n#߉q]&qb~KMfqP w~;v+//WXxoP]H>&rJhg˻,f," X@*$+jCSR|"+- r%[QdاΏ5HmYELF&76@ ݧ&g3na-e˄ʂG0ݛBű[p-m$ePUJnQ2*4kf~A'\QroI5%Q&$1ҡ$BVBc|vp>dRz>Jɀ4?;7{l=TZMxd"[?^lkA[6ij{?a=3vDAw"3Ͷ<2:唳Mz3àVxô\`PW/[0^%*J*6sF@ |pz6JF \h~_?|x `$7413?y @YC^;lYGFVM;<@NJoaͼK+7B 7(=q1NWRXxN30&IVEB-o#/-4^<:9AO:O, /0CbHorI_;H>g\קW!b߯G;V_%T=ɴ)κbQF!H ~E#2lh=Sqsr!4r#Œ93={⍢q}Q)?{} S C:{Zrϟ\Q "&_K]Ll$BhWi8iLKă Z:~ k 9[j#xU!Φ5Ei&w[q}74W. JՆKt[?9sb/π/ oq vH༑ c睁NS_:Eda #hkXzn"ъ<ҕ9h['׀wډ',x鬶 nϊdX}Me]p}uE2kQT:Y((Ҿ2B2 18'luzxS!_ y|!)=ɑ!oR{iq\CC0% oH7s+d{2Rh|n09triջ琬F@A5}nlN45<$Rcm* KǴ8S"ZeuO*% }Y!Z&# /B<˒Yi>Vl݌CoVW&M?s?:%jO08Ft'Om bsôd)+e`gT8lPhގsI*к ҁ2|l:Pg@>m&7WԑyXG^=%{;HNFbI2"jNP;⨃pq$TIJ bTqΎ6因e,⇹|YX9^Cb5(P7GUc O}!epf̰&j,`wlڝI4\Rp7Ԑaa³|5i[^*IҔyP a~| 2.*]* #;`3O+ch#MMtz (Z'BQr`(W=r*!jƬRǖ#1U莍Pzm7B26fE[M97PwrrEwwDO~#S#M_r|&j-zxЄ;rf()1za 7VE ilqY(uC\KĤayމ@&=Qopz{jQ :/sdJ*U\[Lر@9UC@e= t@m,uΏu>dKsM>iE.϶N///5Y_L-͛ @T5y {nJ&{γ#P5&vn'Ra)M\2RLH)g8<QΞbuMw~LS9 -B5j mұAc N[d c{Dɸ~1 `pl&jˀ4v>M 5/G \i2onp7fo"jg:+8-y|m?Z,J!S4HYX60-/3 Ϯ.)hPN$ybϯ|Wk[m<&&}%IRH\F:˥, =\d %|0_K _N"$D 4e5ҵxN>c y@v޴i 4z8Lٜ_Q~ :nC*>7#4ުҢ}͆_q蟿)M(@T_5j> i]蕯wD ָ}зc[zr6[Nz:EI$0($ jtwT\iAT>sh4wӌ,iT3:O,/Dv\ !#wI(6sQb ]4´}!ЛXnF/1IQ{4=[xb7^aROBPU`|Nֆ,]ۡ6Q/dK6|z`+|`25h +1O4&C iO'C_ay|irp6ΌqyUTR-R&/ FtUEKKC]|aY>`Z`ZfzVG0S1RQo\@f?thBLP36A͚z=8\GFuvy;3<۹- ?cBI(CEeGgZcSGXS;J~d n~g^w5~ VsH_4L\+О1g 잺Z;w\?OA] Jᚕ„f`Qv(W%8 6 !E*>Q6^ j+5nhڮ9銮_"hT{VGWdA@Lzfs1._R ÜbR҉+ jטdm9M|hQQG[t=_ bolIq(kDv󢎕!׳ᯡmSq<Eb@.9h\0F8#SgQ:5 Ld |#ϩP5 @} rud)Yh3>/ \T&W\`k|Cu(t`ZJhM*4A7 ]Ҭp<Ни,>F6oqc#3"y#^bu^T]uU%g:T=;*'}฼11mK&s6=r #K1"u! T$59 hʯVZTo: 'I$fB#ey~͝va>. *R@iQ!tpxd=D|w'L+M"KfL շ屋-My7S6P f] ?PNo!m5|PB$%7gt͋ &BsB)4QtfҊG#'Ω)].ϳɩjw2V[ HPmO04q{Ugh8d>!ʒRHw?{xnױ1Ot&A9& A-1G;{9 jI oJ L;ܑww hyK:QLyE9= 5PC@{*nc(Ǐt$&Q3&w0ZDnilL 2܇^j89Xx9ETh2؋dFMJH}3Z+Z(^ՙ ѲW[j>8DbWs{s!~/Pc: %t(&1RNCyaqhNWFԴŒC$Fn5un<;oFY0P=g\ j,n9֎an/5uJ]fB OBM۸-#0Lh eB9P|KFI}a.\$ b!.XEF&Gl2(i}iއ?s'5Zb&K%󝰺Fh"oO!NWJc2ئYՀ (1H+:fOK/OO e^ K{WblkFEޤApZ>3ϣEF7`pYL=鏓n܃}-!0Ainw 5 KpDЄy0{.Z[V[,cKh> g1) 0j`'{`s̀ evx0d[KEŅ H_bh0S8Ue`߈ZMt!0ȿ3{0oV< OPO|L{w,.c}$S) bM ↷ΪAO~PXtaϰ ؀b#kM)B;YR;zVpqu(@8 R&%\ʱ Ƙp=Q!U ka(y1Tg [V20<ɾ{Љz.y/dEd$ !U늭mZh;9Jf'Ɍiƻiz7,vTg-j厪۞kӣP~B‡8F%y\h.K hxń;;]eGv++/of!d4Q#r0]TA5 ^tV6>s'& Q8A$?FOA}^٭ؽl-]~}#x q!Uf[X IDZ-x&wR^߻~F+L"ܥ2A+Pȣ u 푣6\6jfTq& {3rٰ4݌(& RTQ1Az$ #I#IX㳢ZY=.kĩEA娷)L׭"~؉Ŀ@w\nT ,`$K+T+؍CYpz+ y :gNQ{&g'p+s]Pè__mpv ~-:EcIҍj&xJ[n[Mc iŠx)I:E,?4x )'vU--mp9 Ib9y_9QC;EI sʴ)PvZA]}|6xkFqO mF3LG6֡]gO)*x_(as33{EX*fvΓSkb9_0}k{EDSҖ\6\qR{(CiT+B_O*7`LbiàНwŽ(FO<T8!T!Ϯ,' '/AKo;@p/$<U5rjOr:هMqi/{?-BgŬ>Z8(TUp7X*b|75q;L@uT9;uQX=w>9G/6m@hYD&zFu U1:'F<% X}\5ceIj)a啁)t#F:T;#U|R qNCr c;ұ֊m5U"F'HlMzʲO I**tILoA| nkiEА"!őZj/{_2q ' =\O_%|ф/Zð95yt+L>u |KGOTv\!&͑,(G! ƻY $m"\IMuYEf ł}M/Gw6;xMp+/:[@KR4;f礔rD(N]2c3p{`-suV?\I_#Da',fșb8S~){t sJټBK Z.&ա wشC.*!URI&PgU/lYL?u}p ^@VT*`]Jsia-\jH@ 'HaW{s,S u8޺%fp+,Sw"&e\Chm$0Qrq84Xdz^"^A9mU5v@n*y.+vo. gUhkMe%}],L99QdYPiv QC@'Yjv÷4"5=,ej˼UhݟCo[_7"\mM`5zv[Pؖ.g;KHFbyf{g T^Vn=KSTY zN ꭖ8pPdepmu<(2'>F[su˯eDVnvgMQR,*'gЁ$1cBsQx*7Q(5E7/tV;z?N7:`Ȟhtf Jٳ*c`"P. ތϼ˻+C2CCo`#np0]Q/L4w?p!%KE:#2px3x҄uIbZJY#@:SN[Fm[x /*QH1VBp.@\r9U{[ m\1G_|7?8Sd%1[QjMdDWڄ6#x6} !c`]fp)ѓ/b|QU$K#ݗtu:FUꭩ'0.VH WKhxw12q6 7KX H-8 %⏌pTRڴ)kCu6{JP1 tpĭ[_Sk:f!pŒoLais(GmYߋmKr$SR^V2J_BY^Lsj0RIY?s1̒W]@  8,̱c7% A` fs{19E%,sQf 5wLE_eJHGخ /JpZ-PH`OUhrr{#'A h򯼥%鄘 i8s,)l"7lrvkq>c|K[d&n;n!lWk[yaH9p7vUW$*aQ9P 2sV h1((]-//cFH- p1撥c"xкtL)L?\ɉx01zO"_6,5NƷ sb+`Hrۼ̾,w51c'ўN+OzkӃQ<9K {m aYF;Nxk腰criO/MJ%CuUc2$-\n)_`F>ůYUDdڅ<3ҳSlh{b~x$ajD-\uO{D)k5Lo:*)uxKW7e ]1g OtvW)nIW^&f05Omc(MqhNBLUYv5_[ G20.;;ZPطw,P$2&` "uг BiPğR|fԥG7]~hvi#JXFE 5jJ}=S>8~u^w ֿzܸ{iOn}tiBDO5JA*]u$nLxFByWY%(2{?/CB<1\=ENoH<@3Bf\zr_X917\Öjݬ!<1PG1F 5Փ,z;-oLݲOT1nk5>fs5/IZ9O9$ײїR8ɧ&e"xP MuWzO ufX bvxHpA:j( &*W7ik}323Gq:g^qN4iwQ‰9ZKG Q\ʻ73<:z㫖nK>";Z#P@k-Zb&챱׶:*$PFKKq8=L:D54'1P}w)BQ>JcAzcxK* _+IPm+ W;G}}Xg0"gAOS;{(H'.\| /"GTc"zLVSS? {t09D<ψ?oUӄ2?Y@Z-;h!ZftZ|h8V3p,PY^-f!Q60 Q܀/:'ef2ۍ<'X'ӰDI+%.¹;WQ ZI9A =9EMz7gS)q(>ѐf[}LIh+:G/^vN Q66*"5 ;'Tv#+;kJ0-,- X*(|u9YJ>ɺ`j{,ǃOI#1XA8.1ȸqzi hm2~!;R tlaۓ5ƬDu%u!~M I+w9eD7/AYsI~m7mp& al_,dm甀Nm$}Įy.W bwG j-Px}d|Z9JP6+ 3'58| qrn"\e{#8QRa ' |辜DGKpW$oƃL2;jy)Ӓgaz\iک)w]dMxB3hG<{'eq9q)fXjk3jnĹ%*KO>׮0zuTU=idLcguuLЄyOۛKlOߵ\BœWw+`-~] |FkOʄZjBbbXY`pI=޵4pŘfv_RZ,09?TowN>u@ћ?//p.;yN<`7PQ.9G (%+WC\lv@aϙ  3)5v|8xYCPPk85/'S!/'qB?}p!ݘ ߝyZenN*iB߷S!$\)z f0aҵgYቲ e(uV5'Lc]5d% hD#VwpN¶ Q,f@Cbx֪|o/5c@Xƕ!!BavN{X>f-殎|>6l@,x9-瘊N$[&$3ϤAh`BG Dz9&}Mp;J':QsI?ۓN.KRh7^79GZ\7a焃lokT 4XBG{D`Oe@\e*5!BDV㵵!g5[Grn.i >K٬Rvv#"9fl_o<XUh \v vܗץCnz?9k:|\q4]14(>dYIbXsiit֯@ _;aji0O5٢AuL, W "{vXJ{v[`8ד=|_F6Zs%שXN+7FPf$zRq@n$-~Wr,4gq:fc3Y8/hu/TtKbЎK|K \.n$)jC~cej?WxOՆg f=k>h}oIb( '}ȏ&r58~ )hs׹7 >Ќ +14ȩQL_1vcW_sHByiyT! ._4.:&jcD3(%* qM'6C~Rg]*'ݿ1458b2 =p{na6Tb9[%Һ{ zH ti" lyikZx1BMQt7>,9ߋuG]ˆ \o r pݘ>u!݁t&{!bP*2"x?Cmsk2aCGi\g럛SvR.1e-u P`T)tpٺkmB6ο H{(O\ުZƅÊ.iJ 2 ֈ9T{&,6ѭ0H ߒq'})uA0X^5`?-l̈́G8Kch UP?FI9m \޹D"2+veWR+ B {yDll!]nrvFB'!nZ&sg ͪ&in{r5G7B $b69i{Uumߎ . Ry9T0yK?ۖX3MnƖ:ppy΁uW~=m{Tp󔜠V5Qp;DQ0 D0X2g`^9޽e,l$(:vS?e8j9;9Scsnc4sę nR3ԟ,>ȲFl'̡AG'BkG]3r!S f H8MklR!?.줿5 g.;f Kx9aQD 4THgE#c5~ɺy,iqYkGĭ6#-n,b^L{e\pn< *D$i}K2mu:+ l[VMPeUf]]. >QqMFo@YK3{32fI fģ xpȮ1Z|qL=sA Vc~HBm`_Z QmAnD8U{4)r1$oam:VEpZY W ,C;֎COHt4n']v1nsb(A ٥&W 3Ckۍ|?c@e::o 7S|ᔑ9xZZR4!҄tu⺸t kH2WU'.y%5]wuTK*M n.G$ m Ywx +H{}En5so1$܅s,j;EA \%R޵+x6|b姆[p%K.ieZ|gd⍡(-mth gn0((PLmq=hygG&sM‚g UA)VزN\vNDVz G7㜀mѷjb 4HCŸC2l'SSj}8|5߽kys쩄8: Qk)lE&]@brgN'fMT˘ĴL S\pCNmJa;Π \߹@|+G@!}}nŲ%)MԾ5 c^rh瓍79Z̊+Z34)0Ȏ—[Q#H@豎?0cZi=JFu(eݦ >CDZ³/ŧ=4f7 U{ͳo"Yϙv-n|e'i&$@cӐ,Yvtg!H+`3 7|=s9N c)%5#jH%ǭws"8E{ S|ҙ0!XQ53!V$/ʬJ/&&vQϨ-R:t;;Z3g=o(N$qSl1 %dV;M.(Krc]tGi_J_xxO-`mFJt~p&LU׳kqB,ɣ6$M/alWkm/oϕ 6G o9RU(]Gt'QZRrnв*F3N&fۏMX{"QQ˲/hic o;-ɀfJ(k'٭ YB h; 鞰}4򵌆I"5<)E6fмq ?b|e?οzJ Xqvnr2'(>4\-Fq;л/lCJ p[;y/O憥q ߞ0Un7(`a ݳkqE (T63gF;qC R+}>>eCyP51NșPl06#J})"n]}{|"f=M4TA:qSVM%`- WF:#~{% wO%\GX?uFܵ/ۆ?F$-Gا 簸2957M~Ҥۧ}TV?8 xPKZt\} 3oyHwM>8`  OXk?(4:8+1<enS68Cb9f9՗H=:5v@[-V[E \ cMd}f- ~B.=nV o);Î9@̶ƽo%1Dz#tG< "Җ[! cLI@Y״usYZ A c%f!+nΤOiKoFp+$!}gx1`S } BÃ^r0}1PbCY^*XY{}`E ^"TO_?V>'LfxADZQD^*",)Su)a>1JK}5,]0ߚMƲ)JZԟZ=HPUNzj=Z 78/fe Ux|.I! whK!X [$e=Zc^-|Qw]HNstW]UPjYO']Ow+I !Å?JeՅ޸~ |4y絲\7-t,&r\UÎ.% G>ɗupexąosWp4=| up$ *{6%. dֶ-#0j5)RO |hsN{NH?Mji۳>*S\&1WXKsOHΟ#b; ^z~t;ѐ@ggXP=nWRi}00mBhy8u+/=|,35OFBRhI[[R٩@?(qBNlqE=s:q/AT8W|WYuuXz¿8 vNH>Yc˙P+)]3vj0t4; >?p`s:`NͧiV\c/t~? D@J{6T' Hf`t2bVIiZRM!Z[5'b@=2hp8I>6QDg9 R_tmV 5Mv+m?vbm0.)W9RG_ ۔>4z&ԨSC}ʸ}8U.)nͧɥ6/u`{#0a}0򖣓G_ mr?y(8oˏZAqI Z UoYX6v#&Ipbo?,߁dts1zn!?g1<,xe wd!>8uj,?ۡ-}zs[@'cǕ<ϼ.ƐYMkKyF܍hZ7 s-zX3H% ؒP.-B.eĚ͙פcmW}+{'[& ]m+ޝFs7DYU;]%"%߻>DQ ZCk5R"j 1o[ųC2`La'Ƈ3i_t(ݶ"~8̸0bgQ%`}(:5&jt U_&||SZͼ2ޤ"p+E: 2Z:9=G(E#9JFjΘJAx}-\"{b=(x6pzyA6S8Cv>:1N.FHaY?j!H[θ2q`}W*TsNbLV.{{$=zHKv\Rʊ}-iydz Ҹ޲즀DC܃~Ԃ(V6 jUA.pLQ .?"YJRB8g-VZx!5mF75u z}v룓4?eEi8BvOR&Gj)b 4Llp6TI'LC37gBI7]IV2':#s8f,/!AbF8T=oP%(ق}´0 qYi$@1@(.DӖ5ȣ+.I7ׂH<۝cOl}Gu+S`~ :-v^ӺuWMMDȼcZ^'jДz0z:(ԕ{n%DE2籍%UK<M/"ϚiµpiYYZ@1E'A!mzb0MXc", P&¾2vd">vd"9]@aAx_;SzS aD8a8=XxqTWR) dvٙ}|Y؛&r ֏# Sn}CYd%MwBv~"F %#>՝p=:wN <۝Xͽ,\O%8/bgh  c n@@p;G_aeH* &.mMD^\Y vrPLFY-X >5I1!T> 1֣`X;Z@N^\h?+ h` 00IpwђƬoHvRM@׳`2":Rmѿr=ҕAӪq {W;X VpLX qm8{"sr~d:~{OQ\Vlچ{dS/vL=i5ӷr^Z5)>$дCN:+Ac2YěU1uec QYd~`$Yh|I.jpe: G0Oh߮.^)]|q{eXwm~h^9ҽg(qCi~Up*b DwtPL5 pb"-|kh2s8kr8CG=󌢃`ڎ@%`s]VLq?\d!$.|&f^?=ȁ_|gj^YgU8s:п8}tW_A^*PsIMj,u k~%u B;TNn@:Fs"B(*O{3`υv~C~qϙs17c^v/rsnm_Kd)3X":{v$IſǐKs ޕ]qg8湶<]mody fƓ=z!k1H/7&9o,w, nbA]/ \P]<¼{ }:(E{`h6Q.]6QAᐆzټw?5wKxn@֝Z"_'zeA{9ZOͳ6);'ˉB6ډFZMZ|`~K:㠧& ?BKv͵\h&Ej}lVG Ԝ.Vrs2LW=j |>v @ecbXp;1o. R@( >]̒e0¡L]*hI9jkq,qQ-In}~/6WLA'd!{m8za(sM YIԗQݰ)W1-+;DԀZ)g(LTV;%WAjB Q{jVӡ삓{ BO6i ,`x%'U}Lvr>_GpsMHTf~ ]a8;t~Y9s6!K<2efu&wЀ M@XԅHaĠè[Fpƌ8pH? _r:IRȂqhPi3j4I\Hd3]Uyk\W)3J+ :=͜%g&.6,hlօdP̦A2\7}JHX> P?caNe\nVr^|(؜PwgG-GkUV*c|Ԥ3Y:t-6eUw\ R+ˊWܲKDQI cO(8~*4ƵB9 t׌{gȰ!UNI 6x *R޸1$D]l?zfB1Vq¹*/'h2e>lALgH[$y:HWhN0s(C[q&Fa|۔#Pw{²y@\v߫9V7*]"dCba!Y {4=tTie[;w# #v>򣉟YPDu1Yuy#:zz^V?j(" `NNvWQ}kak({X0X~BЅ"nvql(*eߎH!vdLLo BWIV`Qa.WgbmٴBoH ӳ7Ӕ'SC!H*h$δaWl0P`.ʥ3!z*nb,e挭ñl! ͦDiq7=P$aЧipZi+iB|M&\t\h?wU ݑoJ`L6y]|inhTY5nǨ.ح=Iyj|ŹSXUZ6Q^{(Y 2+m1Eyt0T3_P)ݷ=f\P 3mVexOIaeY'Hf(YE旇56K05u9qB4+gBLx(P,0< k3}f }Qͪ87bfϕX?S|GDr]Mɵ껌4ߴt. Jnݶ}2W38 3ݰZ#m(kkuOW_N9 $+z3HPLwk2z{M\G J7 fev.ALr"1LPhȼSBlr ِz϶>`iE"A*ǀBta(~~W7OgQdStjy.f|(eퟸ( =`'xD,dh\a襷5M$0 c FALU8j-jSG(,Ykѵ37X +x{3i!VZ_@$Bl uNO؉A -Ifl>JBjO>|TAW8c;c(<%f"^|zpSQѐWrIHa䀸8jfm:njWZxn}py1eLN7 "py*{ k5?5)=x[zVt+=6u*d5Wfr2 f:LY<2kQ,E_ |ñR& 8m!` "z)t!`m hV>`ӧvaI^v} 7r+&t듽ep|TbDݤ 5\)]3hhU,Hˬ/A.dc8]!y6Zl\e$y܅-VqLU\<1^-IU HJnmFw>ixW:4~ z2khj<ڽ1#dNpc&;R WfS'쑊AF1 |B'0.eD]`V9ҽSu.ff:) {n3E8.n:"9pegdyS'S@TY6uo[QjHQC Q 2|Yݐ'@-22Sj~?τe/}b {(߈H1#U(]:6)hW܉x<U"T4 F\cmnp810Gs!6aӌCRn}5h$pȊz"Υjn}K 4ɹ.ox 4Ĝ6pG-y,zuEU7X9AaLo+vXwZY!\{Jd/xDwaӘj%S={.f~OF~2녵ΑV&p4h=Fzu& [b+&Q6y{-%.ޜ*[*65季昻#@GmN¿Ơ 間Fk3Mϓ8cpBF c]2~K-[3hl*]-Ed])&eaZHSxWR qZs>Vm:Ҕ繓>V#Is1U?cu={#/a",U^oQ*U? ~Q) {;ʳaİya7L3VBfpQI;4 Qf f*ţO-ǽsKN-cRULeNNxt~B. HΪ_k'+C ɭw\g6IOQIJ&҉"PH긌??~sȨ>oIjAQ:~qZG`d,zл#'{46 lR Z2C?dX#oP9.AIt2 Ҡ/=xgz}w^$νgK f>L^`C8D#vf[R]Ի18Ҝ NGU>h 1{HR*#4 (OY?M2ǵ{@ިRD=nN#Ù x~jo"-= p p G~ߵv]o DFNR䬾n5HmH꘷}ٮHwgǹXy$??-{~dYMAhZMKto :YG1K_;m O15hI;T5^zM?iPRt\Sω 0O}3IH QKK - /9gmMdJX}m/DgٜCZLv E(e a`o܌C7UŘ91|YL==H@{to>Tݥ!b_\5;7K ܧ㇃]UY`29VyNsw6o\uXRՇ$6CQWD~=Pٖd?Ǣ .0lrpV)uȞ/ wghA؛ǪKL\uYAO TEzvcJ?OS1e(;9XOlr-s%Q2y~pLg4!kBfvqSu*jrX:o'D?X; 8]Ŧ_A|3ʟֆnw*m`D8[T$\LL9O'd;`m!Z5NBmK9^ɛݞ}z$nB,s " }Q~9J'PvuRM=_a{p~rF/o-[&R<ʛ'GTddD Y3D|S zgjW*h/F5(^C|slؚ5XXDS8@ ~{yBj;Tt?Y\-ԋV̊m YeًnIEY X@Q&4Sʠ/[)vA𝿌,h3Gۈcш.VLV6S`Xj -ڬyύe^a)ChmQ߬Oݯ:$D!X?>IŰ;nC~^Mjgm#7'UtXCp36cq>01Vѧm,~>~CcnD .F-Rvj]BzeLgЖ8j[FӊM=OA*3 .*X߷XMKj ]ʵkWNwFdR`"^4V[*n_LC`>{rԡ5Bo?i`$t.b?_=2;mݵ9CuvZ'&gF)9H o$ @Gx-E{Pĸݮ] |ߚ\%#4˾&joZLhBdF.+@' *'aBh}Rq3l<6_xo !HRf.312!L2"?'wJURc<FN|a^\vJpf"V$dZx1Їߐ k"UIu[j޶"Tٲ7R[W:lj;+ PXh.CIũL+Ǯ q;ZUpZ\M_*D4[*H> |{@q!OM4]\'pd{v-m]P:py3L);WsDuZ(t+q߭- Yeu K1 PJYҗS`EwxO"\V~y-_1=( Fh\P5{)aWuM)PjgWC:y k?CC|sU@J'O)t^~-)M @n-6V"Y|Ɨh E=L(ǰBUҢ_-]  }©cf[#NiW;m =GG؉U=IGy8HAZ$9Ub솛cbyM>?q10PS # nqI@T'wC9K|.wJ5悛Dd䦗+Kx&ס7:6Ь8@bV[TlW| Ǿ/v+c+11Ndw󗪈33)Ucmv~,0L D^5H 7Bӳ FNL&-wKɉv = ~hKe#!_Q[X}R*.YG VdKkZovK_/Ynޯb$}Ft" K `.1VNcO!sܞzn(p4xꉡRg~9:^Znn3a3tԇ[-DAQ;3A(AGe]I?zt(019("ռi>YGi"ɪ՘y*1vںeD1|i0d/m*wQ+K67…_GﻝЧ(9d~vh-UR ̞2ާNߨGlsaSHj+g%2lY1X" h1Du-Nwnufe̜ŔژѷfAtN+wsdG J wW9y74YQmUT mu u}?h쫵_]J |CaJe5'8l@{\`b͉\ڋ[eDpe~rO{zgD21z-ml9˗ mH_]=96+Wұ~,KlZOmAT e/y|$\QϨN;IΘඍRûC>g{i5X- d`s? 6%C*E8{~Ѣ]dN$aG?_^^v3l_%ǽ (TwkFgiQCyYZ;a{{oEIC1 8?M;\ϖ>\s\ Ooc gdݹ)\{˕N"HpG,]j ` Q V nmއA=<#NaEۻ٪Z.o9/o荞6O]z T݇56?+;wWW{-Gy.`qQជsPtSV5)8|ƨIĢʡI4sl#{)0K=7QxK*xqE=6⦈ш9Gǒ͎dtLIdŬ'PZ!.dqj o6AEMfqUfmQx6"s_ġe)".k ("pXhsMEcnymwkSTKyJvmnS9 Ğ8HF|J)#3G8MMmd% &E)"G8#-0ȉ3RؓƇn: M&pf14CG38H)PWGh}j To"POo8.!>CpO*;-uaT~٭O]B0 ;/O$8|'rUh9p%@M+7Q|Δ:ORrH+Q:E A0!$!i`05Fen[5Xtg5Q飰#eUfM<|{pa ޔ_XmX/tިu^;Tn+Z4rp#ٟ/Q'z x9X8 oeTKxxwv'iٜv!_X2k-H2ev/C12dz EKuZ-7(ߚC;AyFuti$Q˫ŋ]0&blt[}| IRķ p:tH#ChTSQBΰ4xC(ڡQ{ >z? 31k@׈;#S7":8fͩ\UǷ"d㪻T:S$پK?((,fz!mZbzO;gMcn(&T70$^yn"68LQpgJs7F2a@FhvHNItsъ&e3.4CX*~'r{w7?Fq^Dq:N9uS>+`B]rwчJbӛjg¬?OR7wL "I8^ٲ=#p?։-r.n]a!)ժ!ٯ{s [O]ٷIM . }T#PHaxJX4"MBtGEv p2Oi!-.JJH"'>nOL1>Ew 9 5y+S,N|?UwRz|+d e[DIdOz*,wwcAU-YRF|!-F8uF6bfWdYiWTGnWRCsHK:ۅ"̘}]Aܗ#~~<фU^k02YO֭ܽ5[B< )@P[9ŕ@ō| r6k7 M+,} }B$b# Z= G1MI'܃1't+#"ἣc + j;Еg k0SB3څ?= |I: QrV)7;}[xlN|3M{drB BfLDN{bc70i e=M 2|LX y?-X꨺{eimv@ęOi9 B\zO>JߺOkDTb>g\FϦͺc&yyB#Lit/eMo!x+>xZ(0XzBIs\-[Vg1@85K-t;I1oC k俢4Z#L)RVy^CϞ_<\^X`- QύAK\9Cj p}$|R$|Hm |'0*i͜jgwCR kf2^jRh*!i6nO@8 6piF,YUa02Kj2<73 {̧p, bj*SOPŬ៿Rw/$9.6wP,MTDb%^g {: E]]\f . Wv\ždq"P!rqE-QA.ձYac'H4a 'z˭s8u;L]bA@?bF'fÐތj0B›B5TQi%$A[!Qy]ɽx^0QPj4n}btQ mVlg86?Jz'Jd|'|%f< dzV;l4w~I3<0xW{6bWtGDTIb򰝄9/(t?0H}loɑ8i b?l>{З<5=IJr*"EM&5ʖΏ}`D͡ӆMYA#F/ɽ6Z5SRU 1rru[*" ͰG27)3?ǤI^UenV.p%5((_c%C-9+o|[+)@[T`+.W/ cu6+o)q͍)\>;_;\~ !KR]I HNq]~{Wn(|'`]FqS0bhz%%#3'XpWlzAnp1d>a-W2%f)lW= 0i ݄fmY\>hX$ʭ¦wcc-L`CˢΑBvI3滓B7\ϋ )0efj[yKפQZFXE.!JD@SnaDFQ&!Eea^BFB2pEmbîIu)+5Af򼝮HynoFLnX6޷:qaG;amE\|XBC l)wp2ʏ;>Vl1ɕǹˁR?%ʣ\ߩ~ mdH(ʁ(kcQЃ7 7TѴ%eUwmB3eF R[c"Aȏ*ƺ9\q_ӀsEGUn|Ya_PHl-~ԏ'mjFQKTC^FqDT%#PTu]&`$aHWa7U.k&FgoFKR#K4.k$1ЏAoH2/BF3|: '€^"(CittW6U-W3;mIO]ޚx~⭌;VIi\34)3ϠIBuZ~)r~(cƁG2P/<  )Ғf 2zmY񞫀e-X} 0%K_ t 0|LLv`ح[Ůw6fo?DɜAReb~sc|k \զgH 1P0=h֦ #e;{BoY@h G3% :ou Eϥ bUQ%iGubgQ&7>7/\*r䫰t+Mc~ ̴oTe'KG\ )_`>[z(%4i6Bb`ȣo:rXIFӉidxK? :<ዄPIElR*>Zy$p*Ǘ>heZ)Z\uHoBB|9C^Q]-׀@Fᴬ,3E<{jN!"y9Ic0WZ1מǒk{;:.$#U(jހڍQm:TڃypE9$Voˤ]Nj7hSJ(vo vDm%q<N:Y9v@ kh'+OOK ُ+q |X0vkKLQ-KT"4M(?Wwܶ*Z"mJj]2'smkYcTT~5 &P~I*`k/ }!q'尨X~_g~J4{ɓD_G p%j3 3v^0ۥX=mT6U=RSYթX?ؙ c>'Qcu⟯n'RO~& .+F3"ec]L@Ag}O̚x?-TR񤰘.$s'nC(N4FЏY˖r%3GS qčp b+}sy:H]"I~)` #9:3̂xQ~ Je&~<-)xhb ?3#q=$yȮ];*owveXܓ1Y" T`ٴ&@ +mI#!o$t_Wn 5<~[~RA ڜ[>甆Zs޿ј_܃g>LK_xGW.E*`%L sW ΈHh)hB+~P u+G뉈FpQ3M.qgճMI\4zKqNb9LO7/Lv4R,Э*9?!w{܇,ES.rdPxF,OWyƭ^ٱ-=2+bNMj9\f 9Nc(|DK<#͝|?3iB N#qf_)>鑊e#Z8xRJzhlfL`HMIE}MDkk%54Q}8(aQgo@-a9BcSjaLTA6Ϟx}<bɛ34YAQ4_ʊZv=aHv'j!~eóQtS115lڻ/)pʌ}t蛑dF)O Jq9lgM:>6-QJ^קXi+GJqEPp?JIFuNFa`]]y  Ju ]d:L}ecw~998 [(dR ?Fe+E(*뺛{F/w"+ 1.0[P6nC`ć9EZN_h͚n2<[Za/֞u2϶ɠ/ * 5*|xM"d9Ca|3ykGb.'nky (%KGu6,GlI.BxBNю:8P`)tMlw0 fOWT[(­1Fe 0h -'z/}*@D-aɁܓ9nSm!ޖ;\Ek  ԙKAY];vG~]$u?HC8gfN"ӭECjh%E@<8NrpΎ-w|[v@T/ =CxnGwF<(XE#jpv%аGH<\wKtrUXBUR;y4Tzj<j,ES½ QyYK(6 ifΕgR_\e~OT6._)9_[C ZZ&|[$3:,G@R\E3g'nR  {g^;]`~ 8]~6˛KRÆV]cK}wK!L㨉MEL6MqjuCT ~#D陹d`*aYK$3Oz(Jl칥|kAa&r^m!Tw6u\!eIqf-~+I!ђI( ʣi i?VB2wq wXە=Χ/Se nspVhd\~t}Bpz+8lV$͕}D@6Ri5E9E^lAL4vw },cǡՌɤT6mbBs+$8>4YHbl*|ps&\\ [TZIGyca+$6FV{[Z=+BvGNg 7fr':z+"&yg0xQ,C([h]KG03TN.k& &4HWtsEКV^Q+Rcq+" @GWY XL:&Up#MhoD v2 hךc_ȷ[{!ɥw_Qؾqp!x TD}b?o/ &xw`,x = ә1TrǛgmcfN[O|gD{-tc,kLԴ }^%8K'gBz5v)h3LWût;C &ƽ.mL96 P;~[UDNbTj|Pv"5s.b7Ev!΃C+:nIdѡ7wDf_Џ;MU‚ƼyVS\5E[)& }΂\5:Ew#aoPRH/.yxg!Sï[jzk;pu H9?3_^vPVDa~+SOI()^UJʋ:?OW#5*׬9ħ2q@nEص-Ȣ*P..ⒿIЦOr{D1/aQ'C$.%zhH~}˚ss{~BE[8I95mnE~SeJ#+)1vjM,/R^^cjQjSͷ:w>P]mn*2Z9 q "pOͺ7&?r(cS#]{U 2۸/M8v&3l0@#T ]BdEz0jl$yr-\-.Vv[LpStiqP!kze=Y cThCjb/q!ϱT9nI[<NE0)sR h7;,'>%c8`dzΓNoG42n^;ROxk\,Dz!}hSr ݏ! cg ibx\Y+]Ѿpqo\:)hKP3NI$3}0su)rXxzf·Q UHRa95gU9#b S a<;QߵU6qMҷ0Q+\C©m}> W<P%HFn)=ϝp+w0@T2.?' Rޓ  & >0&z@(q @ y4sd4K薃c[>%X\Rb*uwodՃǓ53$ï `v`P H-!m5x_h!l>xY$/8"9海~P7x: [,`w?VВAH {6QjKi{sٱA!ʔ}~[%! CC"!8E}*Wb 1fT)[# Vwuu&% T^W`xhϲ,"`4=W>bjʎTTU*ffJwUJ׺Lm5b1gIꕰJ\u0 ŕ0@2`*0RmЂC! `VSh$f@[+ՁB;lt= tn;ݱF]/DnI3^jXH)wnu@ߛR9҆IjTؓs'}njDwˎ#Myj{f[*]y869jll { jML# ;QZ`j*}< {P\j_?é~DƚDU59rK #E wF/Y'ipWE&<5s}*5]V h$7@D ݉ [PeA`"du{Ԣޡ4IXaVakqϬo#FttփsxXrKW`w̷*Vgz7<׏+ڊ.vvS|XRx/fN]T [5KO6Yf: 9/+9/ָ>:>0QT'"5OX uƪoЊqfgoFnq,pHߚh".(- 9G:;38ϜL3d,髄^H"=.hbñRZA^F T#%HmKubs@\} D"51Vp[++{)Y NʡkO,*ߧb̽[ }piZ)%B`܌|[ێFW2Tq~pD҈ "qMeNqo Iܣ܊ X6w Og~Ù >>iW(-TRW8DD?YaDf4mA1\v=6$ˮ@$}~vKsYv.^u'1pKX[_v#r8\.x#Sw<'i Xȫkm7ZDZq-nnv"N?c܇{&u %r@O3C%Hx̾ 4*+(!ђa gHzeϛ{ؑ, 3W92!Z ]quӥ)?k}\Ç6MҲԓ J%N=,I6[˃M^g]'bpaf/;`$̀W?Ut 9ma5uޙ T>x b"#R)bzQ莮2ݲYM9~v i5A7½j!I#f(!7O 0KtƤàzwO*J #l! t=(] W%sm {!?o :LM ;,LAk*AKT]m{$W!TYc&`דxC$Dڑɕ>ߤ?z Ȅ8u$H_-0U";³æo9\`R߸kdI)r.Zc&(BK v/!]¶-ȾߚHJoKrE˂'gq.&:&6My VN @L{+Rp>L_|x~Ȋ0#tU1bJ Rs`3{1^^ˌ6I?7=htžnP04ןDD/_ /QxF.ŠOX7FF=mp-ȢJml7䦗zwϖhð^ 7Rݵs hJuo+rЪ]aOnџ%tLGdcF~xL9mS8-(UpV#Cɦv`rx.Jr).HHko d,Oq;'}ſY6vHL 6w}m'F~IJ]jmiZ|'!. 1JU!'i +k%hS&;x`"3w9PTB︺Of7sdH)\z=07Fɹhk4@qk4YCM~,@1eMgJy)%o-*3e? cgA+aK$oP2NZ<.!&)k@@mDҌl[mYT)#L[~-< -AL3S/#VwAW uO 9.gMwIlKl]Ϗa葓MM@4%ҁԼN:^:C.LIu: 80\eK 1e 4oJS1iڢQ$BW#^%JcP+4ܚA_%6b\c'T!+{ ш)2%1LϹU?q/(HYriKB,-x_g|/)0#ךLHJkԚ*TLk8zP<ڏ 0TĠ0 Jscm.lΣ]d46D Aw,**KM(7VCAnWO/Eym>q/^E/'9(&<ix6SUyk5d|_S堄y"氩Zw[$Mn?-~{r>-b3$i$\[zOmh gIMLΡ29x^?Xt %b6 s 4)>l+dK0z(iin=)xJ#Yz;\%Psj:i3$a]ALT1ۦ@?z.(t-vOyƱ󇆇7;@%-Xpj֐& ZD4zŇly[=]R?鯷?³y kF<а,f i+Ǥe<-C(.N,7(oye~A'%_?ۮx1擜Kv>f]w.!*sA> {WUHёEHjQ0S-}mboPX,~`vyЁ?b9I/|1Hg0\eI[m\ō7;07PR[׳THM/1s`vY5>gSYg3cñD#|N0QRe],!»䢌?sT(1r?>|[E 4D;4,bWm PFţ0ݔ~0 =lvZ5)wcNa/۽QZˉj{鹏4SJf=&2']"w|rak+͟*p]ݧ6۝Z,+0u[J'@w; Xkc'C5: )mF;'WQ*5-}GRޚz1{?rs/VMqi3'tF`SNW: /Y[/vjN 2H܊}e]w͆>xs@]c&2>R9ՉwC 8s&׿⢦Na_Uߦ 0ds"=F4jp\VZ4ﭕ.oO*6IafT6&dpd:=~C`$ߌMh:O!US# |hA7a"Bvo*oXIv5W+*S} 3y+W eE -3z7Y(p'aBZ6%EpȈtNvl챂S竦-+e.xbeF..)GC9/loSC^sx(=t>=jnZ)^\URw}Z2B:M7jY'Kp*w`3ps |*kKKm 9Jk eJ-MZo &jy>rFGodpYр{6~Œ QxǝP8Z\TO1NVU@9z1%W߇b)d .äv 2G6CQ"h!tR-fdlӒ4C;o+\:-YO+~>eY5d`.JܜF.kJB :ib>/FP.~F3;E0&JH\V4"k\~!0  Mv,=mw+i̥O j%Ұ﷽L-4\(ܖq؃~BfEHY@f>}]yvYюYD9<8~CVkgd} e܌bn_ 27%kpƚv)L]mӱL>x=)fmW`^ൺ`jRҸX _&P|˦˽' :³[pqp_i]^=d$3p7m<9+ zTf&T9Tk[I3VɿʀEmD#S_:UÁC,ϛ)9VؖT҆@6D{gK |7C7 v|ѡw|/@ pS}U.;Y'Z[}ѥoЃ N$"&P*WfF]zgB6FYZm)*Qp@[[4W02~P&-=* ڰb?Fz -icToviO`cld4u%N(FaHO). K;ɍ/eNV8]+1KmK/@'?F@i,4(GIj6즲 o')[M]}9p2YYEՉw?VGkWLgvҴ \3uj`떘~~蔟-qU&Md*{oT|oUoع<ʖǕ x';?v}e’p 3 - Ŕ$!tfWc^3-$f)V~yS*K"`T"W .7/h@ICY-#nW33+vt4riO`|q5whM˲8$k[1a(Bl|Ill-,'Z (\k>hS ٛhqչrWB)TuiTbqza:\K)0x (!I4,6/M8%@c@ veP(5i. 4h50 oe`Oϯ2@:Ep$PL{Xwr'E,k_4"xz=8'%9Ǝqp;yEr+%?XSi2Y}ٕ#,= l :TvFYQُRe4_y[ҰkyT ]Lұ7#4Trzr.$I1r`PvjJ Z_/+-q&Mn(Q!\x[ +['Kԍ@x3g(^Պ' A2J*WP _.Tz]iɛƣyy>NO˽yTmu9{cj@;d=N+GiqZ"ZU7Z.&λƟWQ1}l]n0}xy-vkg?,2ۆƌ̩;my mM^m̃e(\FfV!CX5nIuxN~Jc%<Mjnu\A遐a5:,Ćnu4TEu%@MN[obVc3i |m9>Lg'?ό0cu(A;L4qEY}؆Qigh 9|BhLJ jqت0K qf pQ>x#iosqB3ڹ`z6xvcYϊ.aEa*&r:F՝ -@Y a?% *$ȡ{ <!\9jM˺K{*%ߩ:e}meCƀՔOȡ'ˍwHb.LX)+IX:s?Bj U$Wʹ l}#IcHw~iñҊ?pҲz~z-@$?`NalSDQqG+A̅Iixs2HPzE-;`YP ؄c1lLs I@8ǠH:yEGa Fiw *s/^o`;2,IuDK]^1p NER0yPE\k \Qz3}BtVF~(vc|t7BUG$}ck U漜vvR9KD") (Oqbn1z6I |$3}x*ABLIePw ~6XR8nr*"z,6KNxrQu84&Ebh!0\bv6iZ GZ01'^h+5\Ze2)\{͐'048joPs| 7 $ƕz7%ǞzKB*ӈWd8BMy*6rINSՙzNٱJCY@~rd.,vZF5Ĵ3߅uG>"}8.9͓n|A).c E$( &(N/&@߹`aes+@|VA»}%}{f:-3E,# hqO!U-f;GZf(Vޓ x+Ti7]IFn@h6a^qWy#p`Ud>~ۦGf74}V*vҞk3GU5j;K]]]Y@ -{(j+{/ֽ_Zyh+\7k͊?8

5fU69ppO\M`Dɻtuj.Y* rx\C%!|Q3L4}y\u߷+C\[YRRU?Zq_e"R#Fd\滛{߃=J|ųBG!R,A!6o@}~[hċڣPcؑ.H™ z{DU ֫zH| Z9}`-ᄁ艒InT*7>Ap_\C &:Jp6I2ښG_T|U9z3pB0fg[ɡYYt: :C7e jW VMt¢#]n'،{#횹 ԬZn1 bkA=xfe]e!)`nړ<Ž1:.tzqOIOعVI Hn3o=H#>80Y#Dr<vd{vBB:'A 9y4 ?LgH?l@ K#M܅K) %& DbQ/eH+O3톌P\}Jwdd_edeA($Ffޝ-ī"3C&Оm="W %b :\OҗZ><-|-b š vN,b#;GyITxX`I)Z NtO#}d=@WC$HM'Ө *Ud龬VG<7h"ؕ, ?G†ڌJL31%я~\׽+ώ)J i~`ņ~&} or33<*|\$F/k%CCxS-f?/% e 52z7ƑȱO? /+xl1INͯE!c۲?1j>d' #HD:u;7@LjjKoO7kj|AlwbR;97Z.V]!/NOt:e^"a]k4zmnIS[ĢYH 1)5d=CIT>謧m0`4Rc0bS禪 N}? NK$OVt+&|v0e}*Ty#io֔1 5IxgƜ~fFD8Qj(T5=R);cy ˈR {MOB*P:W+j!5E$dcꙙlY¹qb!G>6.egf2'1_4?_2)fIUHN\]JExE % .B'6*5&/)۰Q:GMsmuHf53=ͧC{QlVD{Q`=9H t!7%$M#'ЇƄ vޯl&Qyn 5b'9+ftH4'rDL||YmX׶Q{=B W.TH׮]}x:to2`hj._,fHSΜ[P6jC/?=ΤX#(!H󝉕rhSx5^aN~(54XJq8iơuw್%F,TdWp8LsL}NfGJTAzsFWV>(8Hz%겮 -/u3Kp̑F[й0-5襌F2G넺~ aW>_@LIֲ{*8b$?B薶k .*{Q7 H䘙RtR vUA7&ZNIomNr{!⧗t$ZVL6ᤦM{Ў5#ܼ-`A2 "%GKl+aKϝ^L:́ $6Y9)˴J/DKj;S? z6J ZEfg}4p7̋k RRHH /Oo+Uo> GJ,2쯞X[).Gk$E ^U; :zK8ZBүnfL<>HHL[{Tۮ7g~`nP41fiHZ|,RbZ2% ݳCfA|$…[̣$Bb'=7UpcՆ:7u><7}K!f̌|l2 &`hS)K)&v[5*im1ZD‚ۨHÌf弮F jg Cub_Mnx#h'kILS5up/Ðp-gwH:n koBh4؀R~7]i=,Ezjn^OHD'z1;.o\{5F7*Z Ƈ89Z0%d8!JV(MOp}D2#G70(y"Q:p_kd:b s9أГj1fUCnWY"r*IlM33 :E2dOr"sNVON3Tua mFwddjg6ux_1@Jbo5Fm)zJhn#$b6iEjRa=񨰬[`Hpڨ=oXF@6p>_j^cE;z ߋ1Pt[X.bM`>*Sd&yю4JL;}ri}mcewikUՃc#|Ȁ]H>d=p+}YJt* J8y!bo$p^|B=6wB\͏ &kHiLn~I `2_yd7&ncV=*_f䥛D ͬz 3xEq<61\E T·F['Gp͚t?+jww,8Ck =ph_Q48'KՆUsW=(KK,Q5wsEU˶&ȫ$_|^B}r9r9[Ψ/dVůpJ,Udx"(bON7/;Hq#_i1I^WZ}L2H.w_ZԺjQ8׌tJZY{Bx10*^2TG $e;6쉃nYt2X,pQ40|n.Y$'wW0Vih,]$#o$_Hvծ-A/˗`K*p( U!8en)[95GH}2q豗1pO1U]}V̀-y0f9dD$uK /;6ը&qajY_&i[;tF|;;Jd< auw :oو]e<: 8X6܋9? xdN / x7^Q uyz e1EG͒0ʡ[ʲRJ1cMc~/}Q #m70#5S̶? 9ip|Z FtcE#ұE /\0 AXR;qo9J(ic7ʒ5̻Vj(T-h,, sL@z׭0 0~ ۥ%0"́> E^r<Y(Gsuu3vB[8!VCj7*h?RÍ2AITvBVVf+9mo^Hp^0DOѤ4zd&R`tp!<6˓]vjh\u:LPu%6K+ a 7 d% R^}؝jK1 w`q{,DG!^n4#9a摷aH9 &4zW7, wN a4Jâ '}SvL- E??\q;py*E˳Xs'@j!k k `js=t:*Ty5ojJHeMٸdrpG͐Acc,c J;R|`{@Z@OʧuXDޑ$b4$B[7ٰ@AL>ن r_eh$)}7QǂCXϝJG-$BF|j]ƨ@DRC2̇m= ʰ#s0[yn4WB׭yYi:n<{i#́-^=R`Etz/=PL,^)Kk)zAq?9;qi! }#E-{j7Mqk,uƇ'Dd}{WnEBA:&Tذ͡8(ԑȭ7^x+NK #qcλq!Oe){ADD~|cwadTQ yjBT(Ǩ4u+Tjw9ZxmB6e Xf~ Gڳ/  {AFT[!El{Y^V=7\Qsb&2JݤӻRpNvхTSCp?lX8xN[:tq ι,cj!!G@Unmk3 CTMDso94NIC9"I$Z`3͆]Dm@h˷P&ʼn]^AR *B6 Z?7_@C"+D?p\i-p&G6#~HdQ8Pa92\ }d" ]/)x0@a5uϯ$Tn@&~?Ӑ GI|;E 0ؖ%3lAx`0HK_eaILg8m\$Bmbr]KL)}N$UƓywWMeH\]Y睌RIfj|QGiB/eLuNB.^AYל_im9{PB c6w 0jKy-wU*ÄeQʬkAȴ 3i%FkG)E|~o H ?-PDp:h(.^?ƥ( ~gdQN!z_"`v'7t>I 5XTojmQ&8pu( Fn A,CE*:6BPT'm?wpө V0fK/tcDRvbߕ"j8(m"'{#mĹ4A$eºkvl%|Ϗ]Iաo7d(&Jf ƲWL>? Gfg{;:QɦCR(I7}+g<@Xs/cAbZghAys}oш\gGcB 8A N;>>&1+x~81 (¦%jnxT >ۇSc; 5+Ƒ,EDqlHA7aahie,7;s`]@d_P,_F of7jgAU3ҶP!uئSx$+0S\wПo ' QC0: AW; ae5Gw,D^x+>řx/~EV(v ?+XAC[;>Ivlx+u#X'M]1J`(_8V~>4*"U Lv*~$6hlS`~9|!7bݕn06<?jz@ipĨ\_uJRN?vfqGT]m-{^["PX1xXuo9fgj7'cq=4ڠs lV7Nɽ-O_;B1#oaAG]o{ t*M`ukz(H^T<r1ܓ4jvĘW5l:6ꡠ&os9Xv3nysDZ!AcZg'4"}7gq!ճxp}T㐀 &yUOOq2I!ޤGw! ?qPXb2&]$X5O!hN:q$'BtnH'R#Vd:m8%$< lCŏ_sEy., #Et6eldGiΎ2@'€;(9LJ/ExCh.X."V9;~E9"eɋW?wKNMusˏeFr~}ֵًl<0U.D>vj+T{<=3UILꌆMz|pNaZ2<7v=9C]Yf 1]u\hzri4c3>,Z_õ:(lBq8RcJΆqvWCG OI4Ġ" M>![r#o< iJg2oOXZl۪2F탫tyBbx fV@Y~<^RH&= hmrFF\_ʥѨ {(2=1(jNRO}lQc'*Ls|Eӝ`kgd)2DUh6نfjC-@6M%8hntcKulHu ُ(7G= ܆,_E ]0zMkUj)@4$&OJ?vK72teFD0=U{c߽E\f)ÍT?a#[jP4ƘCGDePWpjK]N "Kd `UunmүWBT-h/7n\h" o@9?f`ؾG!7Ȳsz-X <̅luM5R-=$=X֨ek_dѝ_pNEo;z1 Y c*%px{ )!G֓5[5Dǝ3Olƞ[6pJCv; h4G.,?\{ޚ7_>?2z? q裈uޑhw(~IږO߭rtL;er[6Y qܥ$X¶ hE$%[=0/QOPiz҈T͈Lk}[A'M}?X(VKC0+,R#FZdŔf̌2pG0;3ͫ w2:vs; ʥg`>-hR8f'lcD"WR' E^J,,Ƴ0rnǕQm;8^lQ`_d?EEY۠֟ڮ\IJ M++HIe"LXvRhC8&1ڳ&A&XX}_[z_6Hp1Z?{EaCЈ{-B/e<ݩķ<;=+=!WSOwvXVW>Y^uM?C?O/)w=?T#p7 J# q~W474,*;H'mx׏P ?cYۄPK Q0؁{;$FĘ?$u  LZE @|b [T}I*C:6ݚZgUvk<mӓ'^x:i@xN7퇨?Ar($M-܁-x*h^uWl{"a:e!e=<<N+ rmi xsQjNs<02[Ow#b4Is&6EM*C? s!rQsœfFAqIѻ ÷kt^%vU)g"yUXuV*; fVϮ$&+H5Ґ^G[kg]1gFֿKj^ՔLiX<8I{qy}ܻYMf"b^?\"s^ san djƒuitS7grV[F0sL #" ༬8 H&B"{6XvgF} >< SaZ/#}!6z 3 mi1Ͼt>X"7BeM 'RAc7hl}UOk>9}"ڇx& #Ey΋u8Ӹ 2v2^A)3G^ƼK\pd UcZ@ ޜD8 aIh]F&0GЎ! 8duW:tᩃioU>J.,i8/ҖyOۏfz(WGv91,3_p|Vݾ!i Sz)m"w4*`۽?so .}̩0 0.]RW:ЈWm Ǥ^%%f ې0h~OdbW~ŷՑZU`5pŰ$xKY2O(ȫm#1~|/aaD2A zBiK^Y ÓԌR xka/`L/no!Oӑ/C^(ZwD/XזnV$͋k\hT>SשO4 J4?0P~f f/lW+'7s$O $X~{$H2`LdQڇ$PS6m W12x;" *, GiY*+ -:-k ϛ-MZ1&IKOiS"d7%A~ʯq0,&6N통;jdpObc]ʰ21w&^-~$IB/8X wm66zF=l>^@nfIe-6_ZU3Djcrҋn; NG f`ȓ$0SD7۱q{rg$]k1<+ L,ڑn+nmguLWG@œu2]=3[BPƓYJ7GOw~p],{ ׺ LPM[Yˁa0\:.ßt'JCcȁ'pymrD5v?ηܕ [/y1 (9sܝ=Ѻτ ʌIGx1N;K8xQ=Xx0Q䄪rS^5r)GqH:*vqJc5DZ$$߈Ɠ" 1z[R1FڭE"?/E[9[s $̓vʚ0ijiEɒ! q:]\a;r*~=WP=$o`ϙ)3S_'J?3Iiž!W.w/xާnBj]n `0}f=-鯋;lK_:N&h4&[,:r>Ej)| *,p1(VGߙY(${ z;;BACž(9r/} ~V&e3kG9muCPgLb2uҊ͇a&>&{>K{{ufܸIωlzGD݋C#r1wLx8屨"2]n}Ğ#MzHeI%* >V<:,BԌbNua6C Ļ\ωhA;T UWg~ g(7 6C?d/C|w`2yZ" *)yDepꆳ3͇* QDYJ=%m k鿅]I&1X7ɕeeMUqXg=0|Ȅ˵ʥ|8JPsaڥy]{ k0BMU 8MT<Wd+Vxb| (3irT\% ,åg]Ay3F?Q.8)4zbT~ɳЮu5Myϳ&gؑ;b\ sSW1v m+t ]t|aCy):G`މjXțDI6KL+8E ڕOJqU+ `[D6v6]}\v#6m':QzCFCN"'|]@gOo1{Z~<[_; c44|?rEz8YNxh~b{_/Éd0?Mm3zx(Mg*ƆNvf _DQ)(8 \xXSO~[?7$N]r򥠯,kjxA|cll~QxXGaL.9:)+dpU/3QT#nØELJ):5,\n%<9uUeVd'@X_"~%0RF%f1o pDL:z sI>2]ٍ&AU!R.nbk{9`H`"YJss.5j3g˾Fzgr΂=Q[DxRLbhfD?-zgM0Bj&HzRxR$cZˆA,w)XIZeb#Oo>oJ?hrD2:k 1Aˆ=9,DP e!979umE3^H}ڤ=b:7cі﹉lmFl^/ x{&Qw܊sZqglnpAfl ^h$[i`vqmN\1酪f+[y<6>@to7.J!Հ/tXZxs^הzUgtO=_-Ea*dDDߧ`JY!M*&^Fnz;5*|Oo6oיc|I- Q(Dy8ߥFlP,(HD@`0^ 0\|1 pi(;T1FQE.j2\ \ '"ԦADQV)fئ ,kЖɂ2Ln9{QjK'u<}`/lk;FsOǸ6J ;8<ɦsȕA o5yF`\ Y v|U@HI+bN~xOBU !-/8:+&vp0Rꋍ q"߱aRu|Fpʕ94z7E@6=46M-+^b{˳afSM ljbO^ŰҶur2nq2 U5ԼMgN]"t1<-ȴ#<|NVkn^Er΄QV&Jz^dPu_ 9Z" =U@pNEvh;o 3]fdEH N^>i8SU'!Eo, R$of,-rFeu-f⠥;S,c }Val^YFC =0RjE+./q΄WBDcQێ\i4ґU4O~t-,iwD_>J5Z (]$f@Q:dTJ.9ɘmN8/'L^$ mL.7r,ԲOO2j|§=*k%|Μ`3fC\:۶&Iۿ&/l28] ?|3ժ j\?_Ӣ%UX"[ġ*[@ecĉ @GNYSJt| UoN-;Iɺ$낀9.(ږEñrJsX=@=&ƟDŅ眷)4+Ž!xΟjF=ib+VͣqPdu_$$=RP8B:EIy"Ju Tz7T05vIyY n]o|e\s_9z"niMnNRNpHnyMJvaM ,wG6GuKpmHIVfs᰼ƫXioFjfߗ 8i荫Ĝ֢Fǒ~hC-"[4!F*Kucb1YiNW7TwNa/5DոZ-tZ ~vrO[9 )kX5T#4TI>T+#) ڸ'<=HMJB2=^xCgwbaԠk}1fEJ7yvln C-N^Hj04<(TKҙ:gdF5y= f:WޘH$`W>87+9uX7FvEl%:t69;(aC.kVk:I:݅cT"V^_Y_7 ░Km'"OM'J#}E~H_`VW*& c׏ =ȠƳC\Ϣ'LJ߱#4~S歍ZМ9%b ebkSntI/̴0S̽b95Z@}oQ s):h>`еods ^Rʹl>VL׬b 6Ӓd[B{{-|Qv*hl߂V080;KTzi=#8 )NZF_Bx(uI( 6],)x6Xbc7Z yFN)j]ٚmY%סtca` ]kxY3cbu nRں׷科m|&ҭB|!;KsĴ]Lѽ[Ƙih:%њf5rڢfs* NB"|hV9dZvXd!&QAdN6eg#^o5^HS| 5ل&6=}\39-m}T0Ӈ>ى>QĽYj x@lԖBlTbdŹ=՘jIuց"93' X+Ga3ai$1,60eG?ǝXHOGS[;` ל#l%=S82qhJ ^:tOJu*Iu羹 lpo (4,oXc-Nh oQMU (L}"G5f Ŀp@r=lkrG fTSrVWJR {ۧc4VTًf?Zyԍ cYw,RoA[x8*>D%ۋ M/1F }~ٲjd~`~fF)[-kweYqbڴ $Ll4QB4y| ^gPN2 ߫ PLeH+`.D[T>ʂżBi;|&:khrwRުDDr0: d9I+3t-iN iI (I#YIцNh^?m;HܽͅXR\o1H؀AUe6ti(UpKHO,;'!ìùؐ kq(2Tiah.M}}[zWI>'Gs,Z7FR`)I0P=HuACT!>#?r7p@gw9Ct|[N"HbP3{e@@Eå/E {gnU+lb@SSmaC!O.,QRMJᄾdgpTbJˏ D-)~xҕƳ ,H&gw5E4dؤ׾#B xFMb!'!T}-x .,.Ḃ pw YQ|Ɩ &F落*MoUJ±"zOFl[ŴN;M?&W15#o'U>(V޲٧,B6v9ΥdG2:Cq#ȼkuQ0flCYuLpjT0<&3^65dUA65JEuׁ[4h: R=(VNbK"U\ *D )&jmQ2}D&u`ccc$Yș;IlHl+ ~xp4[Aj~c[R 4"::!ȝ='Z !}*;inc(OK|0mTu!Y&6Qjs wV)%iȈhUk >l[zlqg=Z}鲰%rQ@69%:Q1pC{9|V墰 ;,?杫秴/&elIagI3{mGPS8d+%rؗܪJ) Xo,`z Vh|@ 8|g@,)Ti-&#vENͬXN >$>(ebKQڤYP!pm\}2 <9Hr$2)cgZѨ_6F|_4O8陯y.JZxiP_Dz`]Td_h!Y"|vADZm|'ؚaآꆱ_T[2RE s &ZN] . ;_cJHɄdIJĖi&CEow6]S?QjKY͔}hffH&|Zl?ߦ"܉S|XH+/QlF@qrWmiʉ.RbRǎNbm7fNѼ>302.xF/5Z2?;G+Ո6Eڼwё:ݺXXm24.?zYqV-RФo9&  Zg:c+ sW- PZ8;*^tLJȹ)qo$^*[+ HPbk2C;T)G[d:tUk [ؠߺ_4Dq٥Gy8"(Kh Yux,231fIoL{Zv$\d3-U2&>QadW?X.ͽџbHˋw^~L#3wWj,SZ'̓=EcqmA]Ĝ_CNFX!ǯ tA"M^XJ;"C%bbD?q3Y"l 'TË6Ihfi:N%Zt[YLVBW1UQ;_N >uw2Qۓ u$!l<Gj}m{yAF{Y׻DXWT7 n2vVZy*IvsS!Zݢ|ܬH~\IG*FRꪪ:(Oq _yeC$xq1Y.JX<{藜QU /kIx2~`/E-(P(GH-X,>2UPj/ܫ[^XD5j00%(XǞq}Ŭ2"2-&dLCCDb>pm34-1J'ک\s7k-K 3H2d>Tmt>_Mc_p̮Hi?]9KVX2 j)mk-*S"UEkX1]f(/0 ǫA, 3CGϜФ<W`U;d;f=)+{)^WUdwh Ø"S. v+v[WU VLxwoѝMUqq0LȒe/#y6uF%ERvtHQfCСA\CR>0g_[pQ}:۝R3܈$߼ *ͮ8ŏQҊZRQD\{l1;eP^WJyeI[y])aY ?)uQAaFU˭W0.ۙ4Mݡ:^BZ-zA? ^x,ȏBl῱SD=<1xNJv̳Z@лpkm:u"jt#eXiԧ`Ee|{"E=3)_}Xwi"I45%硫 LvgΦA~dF/> vO9\1$ڧXþDvdWςګ5]O3ng/ Ao%jr>L"]t"7p-F BC]rgP0D--RU2/_Jλ4N~m*1n?gKAN]? bDYOΔt|B&鼇jn&$CǗx_l~&{}zPLPT+LEqC|lkuo#&'hij}U;pK@,{~^Lym?+ULdxo8&i&K$@śgc@OhN__UWc()vw 5 H ;u` >=Cُ35wiyT+~W r/sCaYm< ac/z j?8S? 5rBG~|DO+OL2 td"\T4eU7Xgp"}gy,MTAu-2=?@z3ܜ7k~ŹJbSğk90[U2[gS U_3*總B_Vg,4uvo"ݶg3n[>1*cún QgK^g&i.@X|!({1ʌDMKo5:jH x`lD%Nha'%?]%oth>~'xoz6O0!%zڗQS"zSY&tzxUЖfAJd[ˑIE$lk+F֩Mٻwij%e ی^K@a Ve9}2e-X)LD[sZ ~E#?^G 'E1p;n oģiQ  ;$OR,m1Y ))=@ڦys`#˂lNݼ*@PRBF5:>/Ua)Ors.8 upZ0t1gtĢ 7 H^F*E(> IY8X[-ꂍ'T]-x%k7$5hlyYR)FD4uրS:v2em4}oD ¨.=#f~zRw{$IK= PA ;WY36x CzPtⸯtĄ KAɎ9-zke0$.P⨱Cm>;6i]ZwuzK؀t W#h-"_><ť0@}srd`a=^, #R]\<4~". ;0cN||YA*YYgQa&Y>;Z"kSGtaCCB9TkOoWN'3Y|P*~-srxs2F1\F+/TC` F MSԜR0h&#{+Ll _N1N;uT#~gѺ@l!_W8}`lhTYz*J" gio{|{;Ew:VnA'PY1q6kl>E~ nGiۢsS:aEO\ E|eY9,WRHLO*ҥuDԳt]ut vO\07)3xWU4 C&j}+NO,C`h@b츍zй@'0b XOQpd XO.h<퀪S[j>*C}kuU=\fX3g5M;\6~UWIȑ׏٨ΑX\ܰ+|S~P| yrϕ QR7򢬊>(\`Cql(1¨ (aӰB-wQx^iOKƳ2C9׹h9rDs*Sx6(tvx- DyKC@2\'<1 (I6骱Ѷ09!x ~؟ni"ŹZB8ݳ,|6}m/1qn =T?ad%0*nsk^ͻš)!$HZLcŧELŒ`Lh8ރZ)Z uiBB <IKr3`2fhtx!KqIر`zd/ڱxVT$ԎJG-+jDғg$ʐ5ǣ{.f܄zD!H ΓF. c@rUsk FNKg݄"SeC,ߞ09fT6xo4rv Zb([ MOQKhTޣ^aB sIGi_*Ы1o,,, (vFߊhtE2E+sߋ׏L!.ʅ fԕCUKֺ~kPj3tQh7jd/s*}G S,"0{~X[-2* ƕTn, fWd*2y`XK]zwI#ߏ{g7$"H-%(~-c< kd%FYB eZ5[ `JC0Bd/3v^%ޒ`W$ӮVNn%ǭlڙ~*X3FF2O[z$]X(ip oYS&P& ([ʑ)Xr)R ǜo2aũ`syX8Nn@>\.Qڕh)E#QYozapב,olu{IY ,O 2'6+xpXvYmNMK?Tn22 725YZf gu:XdЕS-GVdΚ6XU2jY4vo'8L ~ۤP]%'3Q9 .VEa>xkOy 4\ =3 2ag;Nѡˆhw1ݝ/tewl0lWR{N J` Yf`S`ppr\yאޕ^<&)&V;chP%U ,0ViBBsߖ8BÛC3pUœ|걗9b"~1aO|C>)^g;^D.4N'`s7- /_*|AB[=ISS-V{ vۛ{,,ļ\`|̓Ko_~kɂ'iut]ڏWl- i_ -hh.l@uIZO*.dp m#WR9>La儹6^k? }.{ Bϐ&3h5q+؏؅I Ue I8OMTS?ѷIw͜i~d.0!+f/X/"6 c8]rm׿j[0& ^v-r1ѝlW==]i̐;;4?NL~`#i>KcDV.1*س5͓\;*tOfxh.}#"TvUa SBm)ٖwhѺ&7f#ЦNaG-@p~!Q񎸸a]썈`Gy&dè]7P\;em,y@M9 ³=[SGH ÙY+[˺x# foDWsuU}Z"#鹴^$m{,WX@Y~g7 f6v\LyJ*o6;t--%q\TC ˹hyxzx;)WrMb`z66\5v oiYpe 4l^Y@r vUSN RZC(!5̮h$vV!#!_1B,0@!ƥuZJgCQx ScQe;G|X-9DE'K[-B, q3>8,hb7' #2??;BP;;ws'_d%sZ&;ux<,(.x%Ų`sr^ Ѽp_] fhf"vҺy#u]Qb~&~}3:af/fpɽtXeFR_D_EeÚ?Swʋ^$,+9 71aqB {>8^G5z{Ӭ?ཡI5)KovתoKA#מcm{)4pR|"Ms;.gN!wTL e \6}jAZNE }%xGy?EBS0^IEB] 6Ө}4,1Ӏ .k|mZ{k0r81CR~(2{v{ Xb@WLjo @qCǪA-,'$J]B#nӚS_Ahͧ)fn@Ap}"k ;(P#h~IdIDL[vM- h&`Zbt45kD'e9&)+6=(:Uс?wn02'k5 aS|D`y*QX" Ci/*TdU'{Ͳ/_ ,*UAI.Zxo|R4|ސsZxF`]:C!MZ$ 0k$Vk 0^^/"☙#H{+Il60l-\ʴ[P/D)IJDLG,d?k@M}o@N.Hk r =,NZ4[Uh* )g-KA#a Ck^or"˳((LUH QD\ dj Lphhݥʎ\E}K(GwSK>;9Io= ƌl81uI95mPErXS,hbXJn}40NDRnjIvrW ya:Lt錖5qDŚj93vEUvC,dzk{^'#ڵdL3#~ڭwwf.7 1wWy}^bӸu#EF, lgm[F!CaAGI&nENܣɗ$ B|]|1}4yqI'ц^` 1*7G-|ˣ^vwPK 4١쐶p.6;y$m{4}|X5pʽÞ=GǪZ9hL'HjeY&_# ;;'4rH1\/tGVSyD$<8hv L&: .xԅ'*ǩ$Z$7U!E"y~j>[(Ƴz3flnv+<ܻW{e8.2HHM(٠߀l&8ep3*C`{vb!ǒmD_kr'&({LEEs{7󽿐﷯"p:,sOɽ 4@F],ߙwLԯT3 Jd%b`ݻqIeY`ꅗ3ŷ[KK}`TeQYHO> 31N$bwnMGT,Yrg]J'9nE2*?'ToEbD*ia9fc_v$HCDzjR5͎&V_༨iT|VYmZ$Ef$tBJjvcYADYnN@}h6*8hݟӼUSa{}و=|sL[=  [  / ^y dO>+t)g33sLi,+4ϯ$$8!:.]%s!OZKz@m#/F.ÖFƓ<^ts)Dl- H ap`p'G6oс_Kpߢso Ra .'x~͌#*I[ntj#,<}ߎEIh֗Sޣ3d*V0'x+LVDqWѡ-8u%Qncf!JM)>M2ʫ38hp:zl!%i,wUp6m> T A<\e6͘-Fs W͋ ݺZfNN 3_*3r#fh`C( N?vΆw Qn'KDS\ׅp2X1\U&ݙpfCui梘˜ha+/>?ET5{.8] *v3(0YLZ<:Mx;_OJڻg)>\q<,;)Mƶ/G[a`^"s_ l@ּ[wq`9X0&?7ɔY t *j~Б9$ =_ˬdVu^? !N^oh4m~R:a qՔmțUF d׶ErI+`NR QcRLF;HF?~IDr{$![hn-$USO< T/,2^GVI  skA]t0yi-1ljchf*A"grM.!uz億7VgPTd80&_sڴl>t'tӲm⟘s} rhnQKHi2 }M'pX{G .PY W/Kh1u(.}kw6,d/E|9;86c+0?;u5C9N ƚfؔ9Fj3{N U,P(;cҖ%`}y?CWr& 9,Ġh\lTfqh>0 @Lp)LwW`OX PT! 4'Fpø_1(mU%pIIô%b*biUnipڙSg֐1e 5{` t9Nf @Ŵ(/[ rU  Lrq^dX-;TʣG[s+1r^l k&3"ЀaKʙ.=(u}yC&(SA,p53Lcdu/A$Pu;W5HE#>7kMh@NgqK(B=$XMs8-%!;g]m kt&PC5{X$|W9)E%"~vnb!~%" AA0@DUxLܾ8Rxչ\r@8 qйH_a=xbWs.Qa$B%r%WyxڌpV9|&)/T|vKP!CjRbHe]x(c>73h:PE<'%7"Zs o/~1)0X,zӨ;[. \"@aS#8ֱF| @QiEHeM}r٢,<ߓN)\V&>zy 2-k[OuV1I&B+t[|,l . ր٩hdqwۢ6RܲՖ@J&!uu$&n#b,c`Dw_MJ_W0~- >vGQ*ůFR2KH!ϰi JrNy{ȊO?gPz&ﮄh/*7WGHD1 i=z% Ȁ"N}RdYF1(B'6oT=0y%SRۼ/<,pQu'.V%"fX4q典wE"h=R5h1eYPsji^i XQ݀?s߆*졙&JCgpͮ[NZ5AHg/ ɤJˡ/c̎˿X<4Rp*WuttޑйVڄs3SpL& ,s=_7{O)t[*dG]J1FA=!Qfg[bleX?Wh8fd{`XtkP*v,Ƌ`4189-$'CP(da:G){,3RAW9g <Kh8kYJmYy M'8r{J.TtYFL*[O=j/FG%}&ye0n lA剺(J)q6D`z@!X<}iL˵rCF>LuJ杚6,eKZJ^zlzw=m15&y m#㍰KmklBA@KTsfJe3ƹu7I~U#Ɛ}*Ey1Uڣ# Q"_(̋,~D@LqɕF.&,JE^X )W1]+!GMpwFV%ȡݯFP&Зr ߢʩm=@meokv:Z>9J!ecy@ +7pic>`R,t:kP拦D(7A:gC󬀩@9x.Uȗfj5fBf^%'HPyRw $};a;[$l#vd@ \, qOg/,ЮR7gӪX{$ʙ3ɫ)$?oJ3 +/WZ}Zo wW+O7; UM\:6m}!EpȤ.RNߴ1Z'w(Ltyv̨M)s<諔]]K*^_dnN{ oq#b Wƹ2 Zlyyl-'${ lGZp aYy@rёiZ'z$ N?Bap(;G8v">W2_wQvMj||.uq]i)))樂ֿh~Ff߳;py ODtlEpB̊& zr3!Jb\ վ֡vAMByP;G/e} %3YDZFI䕨pyoOAR(G,{S!y7&;8J;d"⡢&fS꼳?g}ލ VG I+Z %t%C8feہ,8Ɠh.fLaT''ms:<.Dn^ned62 JF"c3,$5c\dh0wAQ/QjIt('8[d9sBkv#]DFޑN;<Ԡ!x0-!:Nro^ӤB J,|͊*KESS֤ }ŹC]mcӎLE[\˶iAH6IWp<:{H-L@ŧ )g8M4s8KW:eԛSulQ_lrU2ET)eY5+*1B+I{c!~Z4 iva՝oQo<,zVq؆׸0i[G^`Q]:௷׼ˁʙ`U݆^|ukP6\\:p_HĽ dԡ ϴe8, A\.jSF2ZB7ٰbwD08ȵ8*napP z3ijcʯNڻ7ޫ҅ =cB݊yӥ7L2HgeVy`NS]2rr=0 bH{{k"&@߈Uh=uJ<,F}f8rM4Θ(-Z(/ƾ5TqZBXˆ0qmD7B3} ;~ز%tIߤ=>(ХȆp-e^2t=N3 r;%U=qg q(DOW%oQ=<"T#ZbM±~ȑBϟlVY ʈf'q5G&(/FN(j5Q ݪqq & iVژlءٗPF+:}G?eܔ'p`EknEK'3PVGR\9f=@e &(B/KD]I~VnLO$חd-u``m`V P@[&fG$h9fp-Tv :>T:Wբwuh7uu)wL20Z^6CȃSR̷$BM! L`-unιMAK;Ͷߦ_`G4K,t2֮S9[؃KHP~Yd!뭾gE ~hLO̅}AgҚJ] Glrrn-^5)8KVb:νݬH}:u51JUK{@pg ֦}`I]He)B.5 Y+y ?Zw|L5VO&hV0hs$cĕqw9bg}E@㊦r =@=6ڨFv7++ҮC9{)@<~5B0GcN*UT矠%_粙h3S\փE A*(:붛w1&rk~[` o4[!d?@sj֪ny]<P~Ϡz7Ka>otE}#Z9Ѳnz֒N?:6W<[T\`g}=hs!`SZ |f{8 iv&MAw1s2[1nJP$@^G[ם"T[-ׯScNߊYx =jG6#N3xJaѲ\n.aYZ,SN> QYk/`]8nj5yRgC+{V8_LXZZc. 1 G1kn7im Ӎ"SE _eăx#gu 1+\[׊:S9!^}(B EZBarx Tj׌-NS, w 09(* Q̗64i|~wa۹#_p!,iY*c*v׹D\9a0@h= 5 t.p|ҷ?T޳%$3wFl_G z5 ;ݭ#밴݃Fbpyn%rXnJ.P~N8b3ACHQhMbi?E-s<M6/,F' Mtgf-gLϣQFw97 ʕ+>F2= ;6(ܩ☷U(Y!L\cB {n yXt[q.,~v}2Șxvuj1hBIW$E96]lC"(&8Jbɸ`7&ϏSBVTԷ|ogd̥JP*Y][Dmk.UsQ9`WMuܫI}VCk9ĻNlt +=lUo o}毯q_Se JG [j QOS:tq |lê% Q|0WӶKso 6rr46n_1=f^r zpX; >\-3)WDnU<ƀñݸt8Vo/@V3G62b|9`N=cE!U@`Dոѝ}N> HPP%w>LV4%vt4'̲?+wGց{dIzw9tx^-V_.BF['pm#*p {{BMf+l scxAՄ I֥xW?VK5Xyn@Co} c.5G!ƏYA"ES/^$[4hiESHW S@Xwt5+PaI`ITCquxr SOE&kd U'y7J 8+}99crAY:WDh9 )u[ Gj3C!pS?!m <.LWx]:v/Dmh'%[Pv-51cb2kJ`I ,7d/W3lNn!mV}]-!7DۜT'$rs)3@ 'E6g'd 7Ɓ)=&D•ʟ"JPsEW<n둭HhMnz?a.-i/`Gh1> "q ζӡm|= גT<__&SJ0$Z7!E(,!aϻD:4لOOtfz2zXurXbyu՛#ȈϦ[ZxZ5΁bbGG^陞ԓnhFswJJtpYYpϭ]eBZďZ$$adO>u7sҔPuCiz`_nabj & S&k?$uj+54~8uga'bȵ+Sqx|~Ufek%f?( vK%SHٝ4~vKϛFGkЇz` k֕ƿӍ+VAxqʬО *%I+>aԂ ܛ?Jftiw!`D⒠*AmQOo=f:Ȩf5!)Z 7?1d*cU'h fM{BXhS g:Kw6L:;nyYeew\R"q1v5,N 0)V8¯‚Ǩܩe r94$FG1˂j4 X8+!-&ne ~1"W/N;2>@G!N r~MrWy@3`%.d-K$ Ijst`d1ŽprZX*5hIɾ(2C`!".WeWNrUy M]>=kż-|2c]lCr'Qj] "=tt%9#Ee5@bN&zs qPt8]Ot6JR ,=:0/gW D#9K!pу LO+RkuAOсb6VYO^W^tߚ!d8ݼ9t oRb<IFW ޞqjFҼ҂pZ{J^ c=TnS["H yeU*Uzj3䋙+֏ lQ+3rId18ni~鷴w Hm(aYg 0CS^jћdءtkAu'."rv VUD2ECJ+7ps:rjiF)C6lWMQ\ L"ZJ|fp`&*rWV}jjZt9T Ụ; u?sZ/fOgi.,f_&W_#?"YK]02pms`.;>/G=mIjq7 (D TcK%?2TN%[b[?w27BaW!Ѽ['ש/ɮ$СM ރQF2V.7哎b~M-'-Iֆv $5R \j=&ёuD0p|O \wƬ@˟F٢5һ ?݃¨q)S*0,x^`篚VX F^( 3f3. BvTnM2Ae=C&9~_$$;MXxL겶?3b8hP' ,zgǔ[8vV/;-/-3tӽxzOkZƗ쇏 ""mR_Ƭl{7gSYM_%?5)96cyT4Q1 v5\s QfQP/eLM ZK=slWӝ+>!l:b#Prx}2`ЫOCh-,39 2ُyh$@4PnPJK:nQ>-"FF'AFu.EO+ Cz +>F3I^'S`BM< k H`bY O}l7 ĮlX@[*39m4KNٵARGlʗ6(tINA7ݔ 4c*ѕujgJh D%WBtrit[NG>li!&:`9o@mӤI!&0~d )$D^ PN '& C4/QL_ AK1| 篽TaVO\b;bE>a,a9h;<Ǖ/pi*E4ʁU:2>h@!r/_q R0漕ߙu>u(GQbܮcʓWN~u*C,<:7f `{e-B+2{wL<̊->s3T>#<Ի:{Yc}ZQtxg "Z@eىv;Yr9F~𤍋[[5zjk|`cտue8\ꅫ@._s/gTos4^5f(m2»oc1f%FVgJ ԛfb'ޞ4V]vG䦮(5SFDfLOO=1vCOǔRvpy }Belݚdi k"i.9؟ 4e Tb?$4=qD \ױAR$ԡ͒g?eb)H8߹+znm*Lvg~Lkp=" `ln¿w'#`k!F"5%]}f aLaL3 ?cz_?y:q\l ?*:D39 2m"0 Q>hwOOE@'GLpWj EIPQÁC0+T*3l~,We$1bF[l؃ۃ ^alitl8#?~pJST99xm o\X`XK _tGqHbJ 155dY|HE,jyqIg!nbD{/XV1Sc~a#RQwj^zj-4t11ED-( +cSk%itɁ鑋ѳH:EI^8k*?$Duz;HF-y   myGjeQ f}wBY2~c?^Ǫ?,ރ eOk]tEqpeӲ.&2=C2Vvm/cK ފ\ +aCV}@ƵcIwcm+?;J =0b=cfh'H0dg$67R 3ų `!%ڢui"o7%gh Ǧf>,4JDvlžt%i)qȶZRY4&xbsnyxH! ;uƟY$:F-[$tD) 0&D%kEH/xp qΠU:IZ2pՖGÓ.}ObǤaO1`T)un̹Y.?`yʏ̉N._.GPq͉ۡMDPU̱b`ym5^VHtrH6aLP *Q Eysȧ{AiVКNXF5WоF1ARn znqܯJM:E#*eB{ryF1Yy %ϖrڌj%ˬMPnZ,w: ͽ2л0f- I H 0LLVk/1ZDQe5 xį2Z[ַ)9 37.zK,k8qm]~wn@$>e7ع?v2 7sWT(%j&\6ðz|KoU5{wA-vJm Y4-fb(ys"(hx #uZ]C n`$!T ]/sꋲ@FL2zl?ߒ w:ڬ_?TPeu'7 EhN% )y~\y_.ZwOrτQ{.KxWcQqv흢zU ʭHҝX4y嚡U|Wa}v}rcavcӇe  K93--nʭQ+ Ix,OD]ȫBUE `IOԷG1y`[VYo¢bB͛RF x f '-*䙛d-an7 QH8wKB9B)xY[_lSZi&>p/c6|ȫe26bq| aQqg˔[~t9\Ȥ!vDDzQiar_xp/VL_g8OP̂0 яpZ K]+Ig=PQW];`'1/$~k\H^HeŰ1>r(>205.:U/#PFO6~c \@ Mɱ%v-Y[:V(^oX"7fmߔQ#7r׮JT̩{J>n<_20Y2(È@NH%f;MAY=6vzplB>76 1[kB/"&EM}.\b[]1nY 6c)g{`{Eɟy6W/57 m|)~WC+i=@2$o 8>oRk@olϯ ӭ>I ʚ޵7j:R^b ~Ė$a{^̘8tcILcF7r7Ncs•-%.<.?V6\ǥ/ԑnczAa?7^`bD~ ׵/ R#ZޜdÉ _4OB9Fg0eBGMJ W/VVq ct>!}:cRXmԻCY_ joJۣK7;r;P^e"Y)Dal$r.Kp:]L|oÝ]0sW$5g6{͖#ZZ~,7U'JL4Muؖϧqy}JE59&\;Q€pw[QܷSuf:99އߠSC-9Bto^`Cn%ǮHq>u^%e!0rGx幃8uOx~\hc>EK-5 ~ޕҽE* ʳ%oh?Z{=_Xu}le/n5#&C5kܺG٬E";w/3cmі ./;b0Acq ./!~ ",f>0-jC[չp>r. mL4y^lBmi fy?0TڔݳA!?9*05(6|TF9Ѣ-☖$sO.]:ɿobkǾ5Jͳ"E.<3XI} sUSDDqyl &V!ӣ`xƜy] l ˝ђ-xaqG6ZܹVݬ+i x*-$6 5&23W| 1mSoOlP&:sT0%W@+>Hm@Cw, q }JB a6Ƙ ljNp !@I끪AVu y ?*ic~vc'܌_w$]ۏTN#x3ߛbOtdbRW g빢!U^! z v qEb":񫄔jq i%g0\&mcN @}{Nu9)UboȐ(\rW`\Q3{M}]1 (#A!Z1}.xx*0pЄ;+^8$8R^3e\۞e1zW`X|3\Mӓ׃##1pMFz"cRpP@"_PV .;լ>!E%䢋{>CYj#96SQ^ҿ $+%ROVM:}^f^5K| `\>Rᇄ!lFyį@myMl*JkE]Y',L#DT>lXPJ yWc$P9A8lZ ?vI]g1 .duL AnxsfM@WՎy/[ {#9bU谖w}̀PADT7h)4" 嶑X{U4Z"Mº;cfg{|wc_`N$jP 9':EbmҝCҺhj~ۺkJݫww6u˩.=Y*EYNs6E5%'W6A2vuUkqSi!>Gt~Fpg|J`7֠~tUELְ[ͼYcbCc5~GIU1'zap1- xwmPڂRƅ_uT`}no,AXa,2O6]XKK0a mֱ`o=64Bt|P1TBU||E\F.':E)cё5zrffwh?V6+ܠLP0ݑrN/qsOS=uY q] ;ǻShy%I]sG{Xܗ٨Kk z$d5G"NHR+׳V6xmk%5MBT7 @!(kWz[3A^:9|KU2^y)e!N[aě(<:%I}xè!B4>' _DWWnX':<,g,!m_7ރU~yqyeE*{pVV䨧rMٯ[Rn}EͿZCueE?л(j"/4z6CI~㧖#űJ9=΃OӜm]8H cSX-$mAOu;n9-F5lgp> (*zmQ9%P詰E/(>00h=@-eEo.w-6Wze *nJ(ԅq;BM?4g;M\ .fPV[u'L/U;qw!.c= " WjIwPFa|@pxgrS?1Es|90G5MH;6 ܙj[C|c :qo0 ַe2zbۮېVeexeKf}݁fL8KRbv:d^vezt W_˻JpindNi},JA 3٭]pR<K;sfjQ(Z 2cczI\UK ]9{>rDxTr7O*A{g%Yz$_2KuJx#aA f}Qku _940k)ё9( ВKR=$]A؏޶9ԑuxU k |! Nղ4j[׽d#a(ChѬ W9 G FnR9!Q#,/gc4*EH_c€?gkFrLb%G/u4 LXe $ﺽ^zV.lխH ] WK0K*|XTVRZB"{_,T8d/b<+b<s)(o,'R#ߐvre&n G|@\qРH ^>fvGv,3Gycw!Q]\eV[hA >z_ ~ju#ErxvCgEXwc,PS"NK}IRVAF{"CIZ’6b.&i禶5)1Xpn?+ӉVbj6Z+>Qy(N9\ՠY:2oIVG シԳ(5k8,Zݱ32S$P/Әk.dFEh[k ]|tj0ý֒فio? D.a-U#"e6[Ni/ge8itq- !:1!`|?2Oqrx/.lX,o$F A~Ɗߛ9e[,R6<_6S3םQcWKPIY{fhkN@,3OIg@7לtG/I\VUZ|.OQAGqKgJ+f^'P@zQQ]ZQ9,pwN.)Hx"1uHID mg4#WU)u NS2Ҵiu^ےh!tC8X>ev~?][𛃒ת$%eAMIV jčgC da.oȶ],j"&:hݛ4|tx7ϕ+ftMs]9Lŷ8{!}G HfD"> 趑X Zd$wQ?V&.d^vַf8Bv&csܸ[Zie[d/孙Fc,=uAѽ fXlc 6ϭ̺ӸBtm.;\'{NYiپݾ]9v$pBgiZcO3^8:Jݓ۶2}ӅK7!^B H`>,k&Nz^7EM,@[}m?Ep%#8=~cXܖ~I1?~F){ʑCilȂ2/λrc˩7]JEF8C8#~?0m99"ZhŋS: =eo ]!*'~%g^P$,lu_#w)BӰR15X۽$[;qo @78H <A2cNfun"=]7L"DUN(Ƅ鄋ek3@yBd_7#h4 N]V.6CBQ67_Ǝ! Q!(D"]hktwqqkuB.Xptح=.:v'貝Z]QY5uP̡w`hݸXb,~.K^>F$qfW?OdG4I^DͨU8$w)"58.91rA!tEo>iΞ־k[)&7 KMGX+ҍ|>Y_`J/ńnJ@&0lSac;>y01Hi4.2i:n}Id0w7V$T_i"@"/ )Cq6ܮʑ3RG '?MczoBIRֲci_a aLщCā< +0Ӹ>Q5RT|kV+T9nv28d#䴶u*{< GYurɪ+eS1%*#үt 0X'`޾) Ld4q"fMIq9˕Ŀ,b8qC[9Y~Sm]j~{f*!PmۋyGz:kY_>Q&O]dO8>§RY@{ݝ"`~} y/ A@faߢJG r>DeZ7Q$ߥj]ZycnC$,6Byioh|L0dӅaM]/MhQnaKCtQD\uLOHS)lRC$j ǟmC;VhL*ࣨ؏};)'MBtwfMk6aaM##YAkŧU"4imtL!y? m YQ/dfGd|Yk'KvHh*A o?7nMUeKr FʌdR ]'QI20'ދXkd7LE ;+14ZGΈI\Z]XTxF.\g~Y waJ8BP2'˜zo"d䡃PpQ:l sm&2uSF,~Ͼۇ{Ec@DOZWT ~-'>zi4uܣV[U~#ziQjSZx[ V0~CAZ} @W EFz|Yف4>6B]V0@qMNE* 8%݂1ujvv`'=n'boA~", ]K,`H#\xix8=mJ9pg}#$πƊ͜Vm# |#;#)c1z7Rǃ W-~8K f6fbz;))QU0;C'ELQۉ6ͯa.[$5G  XFTzRlpbڛBm.wxF]㍻꠶Ԉij]eJT fgh ᔵu2˿;ȋү,dґ szQC?9<}XB*sE F eNw?mRB݄ǣ{"[# PlkMQE˓hp`,l'r4wޡ8Sa2!swXUɐrfNtz8s[Qx;] hƳq|X$A`l{N2‹n֟O ZV,U-\^GEȆ_(l֘:úIF߀?U &9'_Df|F$21Ȍoqn05+jTnś|LGcNZ dWa.r"Ј@ ۉKnozq7L@ϧ`BOؒLBh3ˌF^1Lά }ihA2mnL([8XvlP WyÑŵtX@'; >ʇx$ ԟ~9lWB4Hfk_Lg<O1e~%x{ܴ& $.ߒKR#CIo:VG5\kpmFÖڤ[SQ^!T^GӇ+٫U+C W& 3:m_l` ܍$w6'z?2—/m۴]}{y(ӛP;w%)՝'ts7_v8j4{7G1sx 2u\dl2{<=>j:1ߦݎ{eF-SNJ2lNa:;))?KYg/nϠ@=_3nr %t@rdLCv$V'Ռ[86-UC@Pb?ӔGn`0Ɵ}RmqO@S>#[I/';O-xVb$L(g%:*I F  b.X۝9ykiP %$FExs%Fo#$Ѐ_;|ۣ#J&dbaHiQ ,tT)Iᦊ+~0FmcVx_+u[kޙ~-2*Ji4 yEb }U1Ԗ}Jn{RtR. l6@ rv⨈^ g4㏎tn'7JbjTvv9OX1Q<}B!=HAw)ĦSHS"ޜP mˏrVB dqa5(dABznжm8lP|k4,衲,t5KvX=NZuMaa*t[%(hX%}EաP6vgӜ R'PI899gy/dxg!5B3WO{U4jAoݓZTMÓd{e`[Cg%;KVx'+dˀ,i2H" u Qwx8]T}8eke˭^^=ȷ :;6ҽ,`:勀6A[oMgiQ7{caiJ }[M?Ƹ|3-`yGw09pԼ!U4OBqy5kykmIwLD.?}g"_)!oaĒbU 4T,&36qVJTWt"=Rfמ9@d 4F9H?=D4‰ fj>sO 3_Ay< *i aQbi& To7 ʤ8 ߪٺF8T<0]m0y4107 7 *v^Tv5:5E_$|p.&N^)yCXL_7 '#e@i4Hl笃s `A'դrdrŝI0$Ю lI&^RlNq販o=j6ރma٠+(bbXҸF @8\5hmjǤ K|1J]Xb? s6EElfO&bďdd @ 2:bo8|@\ޫ0ʛQ'prqcO* L,7+ޅxE$z L,^s8ZZt{ǎwNl_b9%;ʝ?#8 {6LMF+X\Y6XL W8`p g3~ޒae%^/m~ҘPE*l'fdP?R2렧N?v`ǒ\Y_R/ǟR϶/)))Ew"`hXccqPE F@sXAd2JUR5EτY,wϡT[^/Ӽ.~ EbAYC9e-NtAQjbfJJW{BNv :%]FN|l)X24M| ]@-]Xq 8ł|X~ u|,:b0u$fGH߀/ذ6iբ;ލ!ZKN:v +1GZAK Xΰ줟'Jhxի=R۴ CDG%\kW3pؚ-U׼:|-o](;ag'qUsUґS[A>LTg͘gmԱ4%/]gCg|vyOFDY.d~^޽Y13Otͷ fI+[s@g KY_\iFoӯzyw;>|z %׿4W>n,-gz:"R6+ot7n>GCP ְ)+ҠnGYb!h_Cwr/| i-xɺ`ϷF޴K^EkNv^]ԥT|3)*wm)ۖX V F 2(`ry R?@Hj]3a7P Enu&QTÄ-R|kv.w#MqϠ9s$ǹA1 9SeJچLpH}jl荊s^B1obĚE?2iVq--`!>ַ 8`埻x_ϏAG~\Fe.ݹf@;6U r7Kʫrg/o,MSʣ+XSvO&b#Mw:7jNIaj㶫e5ZD7r@}v*Ϳ s{5zlf}/ idPS._1aUɛV|B:c1ߚ(c<2ָ(l^ #!GK*)=85-{u}oȖ "Yq{Yr $Vb/;lKawF;21PʩaTm٭WW"j!ih cʎؐ5xd /zR:ws.ewiǒ qSS,29=ovRGF^۵=; ڝ962t9Tvj?߶$gX'OtqGq@dձXm'DՔ;Rݶ& 7osnEV9W?+,%BzfaL]Jowm `{,R:޿,w„tUx>htpaՃ WBxHW<6(Gnww Aj0]\e<P2mDW:z&_Ԓ`V l'"7>AFDEܖIU$=/xe!:F&Rt8({x]gI-2M.2`|rYyq3]]"3z)ṟ)*1+@8Ko=ݕ|h2g (9->dךրhDL--wVA!{&M.]s 7a*U1e%%1o8EźQZ׼݆op6 #i/(#aאvNe6R~CGk.ݪXaGKoEc5#z t^*{ HY[ (ɿ#hh3:s&oB F!2ں}4r-gomX}#!ܘfvx1tT/cAqDZrb/h1#0x;N0@#3|v,W s|Ą.#<[ضyog]Ec/oM΅/:qQMB‚KڒN 0ΦtROK1MLA--/Tl1l ]踌F@[8U[9Qһ4c> g%oD6të%SnKmj ޘiHnc~}c"dn3%Ү-0`E#g0\ q=F <7a zs],C fcy?-,NPx/$b2>=R9֪Gӊ# |g:|0%ߡ ,)0/CCE×ߠ/tm*`̪w vmH#f7J¤ rntН <[y ;qS]N l)""MF{G˯q: `HcFȯnǡjY$iT ntâzcKz}#jL*'AC ]+q)D>@ju{4T-Ր(?_wjBm2yfx)Exm7fobp`7y{G_N$$?G&­)4.:Q:<|O $Qtۖ³U#E#Y s6ʢ< bØS.,J%`u<1YBìXSK1ÚܗK s1}S[[ųNP^VȻymCTq)p $B>woŵ u,EQ+$lձz̟p%FWL"Sbm԰rkl1. TQ~X#"Ëܑ&taبMySm!E@k֦Ēל* >᪺x ?%`32 zCWv)W'%0t3;HJ+}V 8<ۯ EfԿ9^0$hҞY{>@'Sb4>H[jH FNOQU|ezxJk;psP6^1;>kcR/ލE=e 8÷Kqw #M]2J"p}R\PmfaӽqL?SIz_㟕|u;=}2׸0tiNtF^#f,'R1[bVRQOds{mSF_""8s`!ڑt!rH~"xNWѥǸo MyTirqLy<Ը}ԉCS9*UlV3j r.]9hwpPG^g+qtQKXcDGESX[Dg@?k=3YIk|?.ŇQiaЁ[ʈa%]~KZ #J {,ilؾdOxX? j.` 4bƁ!u6ѦNL{{ HSf섊kl7/†o4]AD"_bđphoB˧\xwρ\ hKڒX0c?ϗ5\/Q}ed3 &qPfYnX }oE֏DHwBm*Ovg_d 4ݪN{a[<迯0ýY 4ͤ/}ᎮQGs*%eC݃ 9h(mCL1lQ/FsvвW4Z!L*[ aMҌ@Hzp 2shǙE[sѰE2DmfdVfe8/</QCdhόh,\6gb!W|,XbaciIOh/c6Me=;-t cic1زe7VNWL4r&Rqj 틹aPU?aB|{u`,X]oP{*ߋ =[ ;_IFΞxD#С*zP<@TuOXG˞v5sl&H~Cp_{W h]cB{I-%.AhK񪆳 Rf^ 0-qD]j?;Y,B?RķuMsHfC 2ztq,&II!xӈF휰Xz+hI 9|wXNS#~wiX}F@Vsd(q:_<:Hw5QzZT@ @Γx G YVaoKgK6.fHG} `ְC:<) ֥9Cp,P˜)yEUQ7هeƲZNpC'Bm?Q@*7٣.H' Jk<ثV"3Ηƶ1cdoc䷑. ȺF܌p7u\3,&iEvoD_ڗLou5Y/"Rz:R1'0P=" 2b,eJHl+a zG7:g`m^-i C,6AWO_R7\29wQSŠ9^]/FU\}~-JʪL֮Rh~~cn7o▗!OLĥCef}9\|[GA"Wx0̜^(T ~Wl~ C=3#ʓ6!~`P~b|[R NF<:]n`zO }wzHInu6%U: Z? ]:ZKB66Vp)@3Ҭ\D]#+1,a{p:fCO` tyj7=iuIe{٤WWXR[kx\y2vMk[|V:Hi$Duen))6K!2W$HkYM}qY f9pVUNzH1y"e[}TW:*صT@€|}r]/ƂiJ/ 6D u2|Xsjk5=x:7_?c!j)Cu~*{WA6@9YŴh ˦jPp#Gb4WByy.:VpZئ|ncG&?ZGk<,gBVBQ#'9EA9SI2*4}هbև+Ɣ6["huMA :"ei0El`l`BSZSM]͗y8@gw^m8 hAɰo//5d(0^ՋS.9=c{EjI3ץ㢨,(_i;{A %a04<[J\'Mq;HrN0̓-`ϡ 4ܸϮ^ u5a7Zj(\VoS;l4{7I2oc#I[9|,8D+Fԯ $Pym *[k1ZRCa2 Tиd`r)m~b^$" ]}o:}ʖ0;Z5Hpʳcޙ]+&;@H~DzvBd\w bQ)WcxQ†sOKuN+"\l"]wm ᠀/QSzD}N.Yx4CsΆe҄L{90Wİ(U%R3GLmΤ9q![fU| Y)&o(FXs5>ffh>5#eԘB.̽l }rSnA1)Ў3(գ#+bf|~-őW^ Sj]sruʃB8Ved4gٳXOkIR X~r+BۀdUَ992ǝ{yqfT?=_>sXb8+YnmOSNmM O]1VU ; S #Pc,"Y3]i؃ Uv)r)|N^G=9G$>TÃ:΃@m<6&pqC^r7,!#⹖C! 3sNLhCC]5S'tJkAhN i#Y*q*3qQt3R9TˌbDOGPx֐W/UbЮwbaD"Q WGyGd^?+cA/ xvbi}:_uTf1Ľ"1;0}oH-4eH/lB5Cw$vlFtO$0r'H/T?~qrߒ[;i+2fQG4ɞs fPOA 2! cd$8[w-bWޙv3Dz]4u$P0K=HS'nrvJ>ʱxP2>5ߙ >c%Ũ 7`5! -woZIۿK\%MrQ! ~(H"R%3p;;H+uOF8:PXig%|v. {G^ Qe*r\;+(}K?c$Hu)*mqM yp`m %-B([sa@j͔X;nTY` ~S;w_ʜ9(WUG,PM;4ě^98z0tN6&! c`޹I?Bѧ6T²3ĠMk-fj톻 ˴Iz'mʪcZRmy9r2RAOyCIoI_Ք*絘0r 7ͤ˵ tʁ"2Y+T3J9tc ٩(iE(KY{C]8O$qFBi]x |ok9+f79xƘyEDW`.z S %G!ǽ i)ғx]q5Jhj"sIxF֭T*QwBRmS1w>ח)5 lon2ǩQ7[v:A .RӖD-ѳJ2kdD鵮x2<4%[@f'u/#ۂ@w(z?nPܜ "aәO'yYu$S@-o_鎁Gמ_+w!- k"#.."ZO9`eVW1u#kqeh {'i;B E@J}cJ^MN:$O։\ۺ/z?7RUWrvR̕[1=a/Vy%I$ IqzOz&:6g AԞ9Ǖ)w7^!~9o !>],.] MEe67m,I"--M]PmP3/㘛ɌG oM!Hn/j*ϽD(%:c: dn:s'ەJGG~z'`F4(:#Nn;(4SSk[D0Z>TvZ#LXYZta4 >Kt0kFZO}7GVtɬ AũSh9W$ZE 6JweL]xDn5;?,e9!Cj hO^*Y *zmB[)R:^s]jQ&bh;X.[z'6#z K̰%0s'2 ʭuYg-?T<1\ 2ǩcԤސ.y=0.[c_\:h6 y :7QbٗFlVnʣp QD d0,$ n|G!~lR3dI+[1[<$R-C]۹u~Gh*N!G\>5}`mbr~=K POZJ b%Ͷ¦&~tlw$f4C2C^(rӊJ.؜f7gmո1o˓;"Sd!7q, N?[$*Uy^9jl=i@kHcӂg47HDn5ʃ]2jy4{Xqln! jy*a)^{.^/uEljFڏ`+/MҞA?{}/_ݶT7jQkz5 T)86. ?I(Zs`W+K){L+וӾV]p?Za/)VtMHuV:]&x?s3kKI"  ̈́lٺ-k9wXj=]gu Arߪؗ~^dn?U~yk&*:h^]֮.gW$eCUk߉_/lC\6b[cbʣWL[h;H-6CD#Fy.}S\M4Q>xi9VWN_ GwyxfC)Tr [(e0\w%(h pK̔!Ā>=1cpYY:S JD@&`84Fz(keZ( +HRi6!> nVO[4}QvbR#uӂ=L5K54&iU\xo}1= Bb}yrRb7G>&bTl-5v9K'[ސdAǞVOKLtp@QslUa ^@4[X~|5 J w-_M]!RNp󏤃9wc[cNIHor+N,Kj0 CwٞT펕;rmtB+jʻuWf4#M8-w7x#zZPGjrb4묿n0N'+SNc~2uSe̼5']}|?qm+>~|{E sҕ!/&ix爃g)S$S 2^ӻʬHN-Lŭl~jz"B+]),3e/_#:`GxiP17}ŽOC’?1d+vA@m38 5Q^/ztIC8tDWd(Wߑw%iTOϳJny \{hxTihiBG~0{B﷘$nyOF/| Vc<6N\8=ds3Zd#J]0d© QH)HKڈGbx%4L8 0s3Ci>'m\ze*g;;Y#ۧbܺ6kR{pԲzjuZ\uA [B" у)u5 ZE6湫m<½Kw:bH=޲lHw &QD./:^Lf,o?n.*,~'}J-GؖG̒2b3XHѮ2*:rOW:TLi(3RVWCꝄ S?K]'\b{n0).Vk=N_z~1mQR=:1V/VjB%}hH &~ijI 943GpS>Y w>"e>@h:\o|BXB\a5_ACv]8fČbX}ww<$z], |&LnY|y`+7Y6Z2nyk9=۵)7`LAhU_&lM><Ip]|9jt7+俓>6v".^(UZ8j+&RYb7ʸηƎKz%-}ȴ삁FG"nN9tup-q u-:/&7V }) Жc+SG QyyذW{-_34SZ\㐞Yh (铥eWGTEQ>Ȫ? ΄qL@:r_ R<6k}Nr\)3;V_zZܚ ZwJvlp)"~<{ӜZ-m equ6C=' krUG!j:5HyATTpSs^rXZyu"|Xqpd$ɿ*iDŽ! N@!}'n&qG$1+` 7bF wg.G1LDHAiN^~-5 Z_mB-ƣ+sl.Ԗ\;!FF1L6yGX#ܮ % 5Ad/?ѥC/}K ٻ]Ǖ?zh7yP.H9ygB:eB#$WL6={cebD<7:O-4Y2«F?:oSƢ[*-Osgexyl|D8` +#L Jil" vAOOlFz</PڱWI8!Qb^|V&7ٛ֐xà*;<,9+I\_ǰ5+D ۅ V?)HJ%3v:iaɄ}n߭ʃ`ƀ OO4b;"3CoO7e'c'9#!AD.5ePX3JR bOhV 3lH V(˞lL h\aI?UE<߻S]%tt @}֕u^ꕢ_ w 1p fkd#G6*3$<Ĭ?\q2~=O*|`KA6i1M0O>wUsalzXȔ܆%d W$I2 O25q0}A~9V ^V-DfqQ,]u ˚p7`}W&5EC$P2͛n&n^HlXl''3o(#Y7JG'yqRPf%$t+K=un7^N^(![&o," !}hQmnS[MIBnEH br C0Yc|GՓ"DɂۋAN<D3$ oZm0 v9!3V=q.m{Kv;n[mo'9ڕ 쒚| ,Nz¬k$c e# վwsE3͐_mb/۰dfGo_li~x2lFs{\7@ڼ`0˿CIRt>ab@V7qeB,F^mqK-GQF>wi45C t?Z|'jvჿ%q#)dVB1_+qLAꤞER_^ H SՉ(IQkxH,nD&0^EfL9Tִ<X[_3jDdnA8[jeb gpX=~Ư6V+Wjz2:H&a2sŵ9c~7E }bt8+k̯=Eʱen%qY"Z|_LNɭ[=E˽E*T0չZӿ_ ?1yH"5bF}Xiyedī1UƸ8J="C UCDol=Kˍ~\4bI" 1Ha֭Fg57 >АF0c G0~kS( ӶΞz.+vVݹ )BJcfdz܆r[jDQ#e,HMDx<;wPͽ?asB=jmGD}QgK5Z/%;&]&ܟ՟7)34Qi &0'-d<ֆ "LVrQ#k[3)ngDШr,dݚ[''kkFCϕm0\&q@j8igTiU١Q!69$N[r= a 11FaaySD}l '%qh+ \?@Uz6tI~PVSeĕ'8NH٠|~Mcgq.(])8f6X5G˗~Կ!FclKᘺ&wh)yx hFSotLtD5pl9e*HK z X'rn߬vwۡDlR{f_r<?]' od1˹rEG  !#%<·!?ð6ig/e~ZPQ`'rEeb}=\/Svg~ vk2&*-!M1OchQE`[H+xEa̴T $MѻedcrSU#"T|ôjzNEn.tA#d D| u-}^˅ (%abtr'L]KnH,U0*)R#_m%ד;wBYʽd\۩ӽ]yeXt!sL{xNf{s@J 2"Њ4}y_Fkk^/lO3 Ed%wE- -d5X}sfҫ`r"V{BMNjA@P6o,-)p̼˃)Fh*,~.Tv ~;N]cmFmnł#7n! 2khRg91~Ku,Д_2o(jf [}LqLhM)kwP^E֦Z"yd_;;1}RzECdW2mH㒩`̯<*?hMwHI|QW8*a.F!XpmTXZpc $AfhRy ?}a4) Xbk Bmټ ]^ZtoTœG J3a'1`E{{<@JWKScF:`-JBYk4Bv`GxU‚Nֈ'Mihmmk†܂99 ]ӛE@0co{kP̅y3ib.+ioOM7/؇y`Դ{݊厽q28aú:oLGrPǟ>O4%=r]TDb:Fa3njH'je] $M)֖+o".Ev's&q>h '&9q ǭz~}A-T&@p?SYuݘL+*+p)Q!B%D?VO.FCF@!]BHw$/ٹmէ*15xOO+R& /o~#u6tQ=h1KU8;Sq?о4rI4݉2e췂_LyH8b"F27Fg 8j`k a!2l4 ͘0,t81/)yՙ"MVWC [4Go..h;#$\?Eber;볞x&m7ӣaJٽCD[$kO?me|w==Z|rz-|(žrq5x%zPPFT`ɨ6,2Cyt5wZψkNH9x@L9@>xx@r*aby6\Su ;:XU;1Ʈ75 qyg3=zXPlQ0'kZPA"hߞ; _9iP~ƣh3RڵIa H~nAKhڡH px~mqvD\m}'&4}ldoK|DJ&Y}€M,>ŏȫQJ?ߣJRYN?`X.ZVe 6 xw,'0u65C̾龜끊6|&TR\AvKJk3-_Ϫ7)4J7\2:F߶4gx~zî}D@ REF`qH|1_G}?|D Al+Q>P[cʀd DW5@o`ݡn-@ 6VF\o,Z2x@/q߀~ڕ g OǪN1\Ip:Qw}ik@34E*E9JQ#Fhn)mB?P?7/_-TʾdD \e`=MM!QǗ II\bmz8MV\|{n\: &Qt7,*,28-MƾzB_zHmؓFzsc(-}5ꆣ! ")D1-t/c"%Z) Gd ҳT!n#\"sq7)E"% <ߒAylsAnW>nBsƊ$m_ X<؃StN`@6F_2ĩT&9QlZjk̡%upY[*n{ .\y0ھŦw+@486I\F9&4sz b߬3{r|~E_"9}[տuF@V`MFo^Z 4+Ȏͧ/;4%Ͻw=8z6uj[fw qzw?QiB&/H7h['$b&2ReOdy-a=鼼zAvxg=l{GC~MSҿ{F7_*Tj"r/<5yR{"Ld{f̘jX7)i 2H"%j +KǺzW]2jFfF;~5h &AS)( qp1սXdۣl ;gGB BpCۦLo 4Li(ڍkx]r,EkFJpxݤ ][O;ŸlƁ @eС1{_eE ) @z~hM꺯@Cw}yqkc& Q`'n}&<Z7ϋRľ/D{f,9Iz7f+CԹmF OĩIg1J2/܁-c $GʏTA4TqX`rT>(܀ϹtBPeek}3\uf@ʅ7/fAtͺf|.֥-tzt)#O2jY_85KGZj"Ys!F^_߅JT\78H}G'݊5W~pEHm \*S"H~j#tt `ct(ۙ!ZQٸuk26zv*b%(sk^qR &>ؽ@#|R$*3cL -!WBSuju|:c**_PL[_O4NldM:4}sRJ)Չ5c`S`x>}jY!7y m^pURĴ8^F3IcllJUcIҦ_DPgJ!H_QR `}b$bеt'+B-::9`*Ǿw LC_yQԼg*fҾ}!6Q[O*[.S?eyHc҇M~}= M?$؜}|RI@ybߞ[)s^ w)G*'JjY ,,޺CXܦ&u7 DRo؍l+ cac9!/(!C"0dzzږBOŪǩ-X3!13buox\fS<8yOojlhUgd>v܇  מ:6=0! ; &Y y*f"P=o/Ýu""*NXSG|njeȌ5+>! nK@N Dֱ!5k=1v#Ci'/ܐs !x~eTreCn,]yV¥ٻ;J "t5EӾPT@ :-,җR8vh#芉kmj2Lv uSؚzR0 嶺?r3*GfS^>ZcRŔȯeeKe|I;|v>GwH1:/`G,tCm>/qox`3.SIr]~rwWyL~ }&:\47Dҧϡ9I781syY{m!#*BZoX2!;zlMT:!jM`Cy.8UND0 0O#wFcR'<5/.'a&,uv#AX'X_ &"_tKxhoP5~v*˯ lBF[T0MܒqpܞdAùOݧKp-FG}{C+)Ά21Nնj2>p`Eɵ(` N90ovFUvi[D WK\줪pe(w\jD/| obQuArպ];3nk#Wg%QG ɟ6eeݠ(.ZC*zq,(|@9{6C;ʥlg6񍔇ds[DOPmQO\_*!azEZH\\O .Oά{M; X_<I\[9EdΦqzb^{kkԇ=Zu'-hh]4 碁'9aj^ܵҢ#=Q4ic~!3{Vg2%63~XYޗFˌ/1c9%I?Rm<ՉHI 3%KWs/E72fIw'Icqq 7xEEfΠN#+c\gE#h&! k( m! \:@Jk]Aкlhoō0$+nf&a/Y ]!I ͂:⏺-aE $MnR9eK&FL2"?n#RzKe)c=uI o\&?$iGv)P 5"Hih3>`2w*{>\T+(pq%tB>9&ԉ.AU؞39-٠pk~0>>ɝ]=8ǏuNw_QJ&NHb>|vmfBi-oA F-kF7ʭOwĞ Xmؐп4P$|V5Eìpa M)IH "Y{Y;ViKQq4D( "m!ֻj',%Lۀ$m)I:șox0*G;b/,%U[wF B$KLi$5[%l,KŪHnV\jn U/ݰvՍu5 ;[ a;xlbVtƺ]&நrPsl@I.'Qrżt!y̻n(,:̳)Kj̊8@yz뮄ojWk "n!x.o5H|:f<܊ IeƏLt5N<"p'Kg%U̞TA#иZ#?~nL g{[NR2_|{ !%_oi%(_7g[ZfwB]SdN[Ptsڱ|w.,.a3B=GW޻NmH&jL{whzc7&X Rf! ,R*kV S&,单Ahf\NO"&ju mHcB `XC=^.O 8O5Aq],&Q] .~?m%–pjy)J G~h|qY@FcuxuҌ,+q I>B/PuO.`Ɖ 3U N- 9z oӭKb!wZ^<ƐgyJcĊ:ߋCj;Y3>; #A8.9w?=EK`lX(<zy:g[9ʠUp!΢ ]"*~~ir7M sJ"r~ (Cy1OAR_NmsmR@`+a[{|5)Ȟ3q:ʔYn'EpFmQqr)Mb3(`AN]1G_$I]]O]5$V<\ )$Sx~2m>y z5@oyh7,}Ks%M6}B_& H6xM*uJ<(%#o"ףSCW^s&Kcw횋/vm5}P&g m0ˡ'f=KV xȼDFQ*:szc8@Xd =糾(HLӰ$:~f-MxP9PL+jw4?l^S+C$=@4q"/ z-(qad9gkz36K:91BtҵDB1a1]| jGKTg`'9],rzfEWH䣺#4mNx"˻bv\7)\ 苜juRXQF,$sNKr!+dm~԰r&!1Tj|2p]S+B}J>\*fz1љ _x 7J? !NASl P)d/#D;ytXJ.* Bwףh][g?xŹeU"xqm?;O*n^@~<߿ evPL|IP RGލ|e-=Cx2 J.hbŻ︠刎J]I㨐PrU dbݠiL󭞽_^RʩM"E&^eK->c l:~;+Bs P^f,V㬖L|>nNZV~g;ѸKqrj^/cO}Y:\mg PX4'bw}`p?iJyG8́VZgշx5b XaC2-ڮa0ޞvAgB_E.uHfB¿e-ue=)88ۤԡX >&z46a$lѫk9+9,pHY:zq9H=jU6FZBٷkn23*R-vY寜1Khl|,Dž\=czrh^幌[Dpb ԄgՓ#n#_ `"WhX ~/eq]Akゴp%~|nˤ`n(}&:Iƅ1(&u{ f뽔##s1W[hW7$\s9rC!&AeÆ Tj SutWfswv57mڷe3SW!;=D58?Q7]aT"2y JI?ݏEj&wR,֒`)5ڿ=q{ -RgI5!ԉlTx w[I;[5')L 4%zHVn/C3+Sc5n9#W(1 w]뇻y 93,=eZţ)iX&pr^LVv?*u9_Q0,!H(C4!a +RTKHAl! >ȥ nNv2냲3#r~򵱟7d5oC'CmE ˙M|nurmcxBN*zsrUeIWf]^Kv4S* X"fa#5y 85$ ii=ؘi?P`<jzb8U־FIVb۵B>9z!:D |ft[:]q>@cys9Э;Zdje~9 tglSUE?l/VtWڡΊo!fahLj>r{<224/0SL:3]ASn ~r–LPy5ĦxvO˴b U(ݺѨm2 yET0=C"dj+ҳ&?ƃr>,G^CQQcJGj5[6WgpS:.tX`X9pd[41;|m5a%BW KCO{)ڷ,)}ZQ3UJ (Tci~9hE}CJ/r֫Uh z߳K9B4J$Q$\hjçv)ar);/!=%"6Ik}BEnHj{*hjJ]ؘRý8Z ܆(@*G} Cc ^7,- ҈Bۓ{킠 g u}2G.H֌`KlbwP5Gh=1,h?8y0:jnYY)Oڏ[ glrpݺL6Lc^v5,٫DŽ[##ֲύYWKGkĴx߯-&SoˍDoՑ?3>u6.sFG-=Bm<:`CL˞w+-?7a˘O:{qZi_{_ȇpoH<2某Ф-hT!6?F9F*Ƹ"Mjsz TIhJnYNGW뜣gfaj$ٓcaQygs @͑V:uJZ6kQ{A)N] Dx /D$zXl5]Nwo~ Rn\u|tA|f +Esצ4/i{\JNuSs{6ʆ^M:Q#ixWbTk|-4ؓ\ITΆX@H ذקA67DaKD9H+ `r")Ү* ;w v8)o_?^ #nl% kPI+ge!לy%`&1#͟aK=&2 DHG SNpzbhР^N-CX}=9)%]^|٧4{H rq%k.. 2_2JɦQH4P75}(qVCCFMwTWh ƔR7F:P~w5@D<;Iiu.K $Z"qyɥфKKדIHՏn]ƞ@{efzymg\ s\ÞMIٮ|ĹD_;F{/R7N8$3 WqpX~̌&>o5'Ttdj>azrU~Uk^'s9Vn]_~s(qۣlc97"" c'2sq~KZ}]ci[JTBq-p< Q4 khr+݊-_Q(ЏG#>G;s]]>>ϱM5:鼅!\{1̞Ԍ0'Z?SދRƨ?1w=Y<6Њ%ջx6*&.N$"LĈlC—V` ̺/<b嬞:%dcc٠< p`1.X'Ꙃlί=5l4x :gEQ7pn~)"BAD1Tќta}ZlṭdQ(׳R3Li{!NSW%G׼| |%ֱ͸*ؓDRo lÃ;>NZJKF# 4P@\`~ޤ˧5Ұ|=3@M<0 uI hmaY{[h܂0aߣ| HL;yxhrs_OQI0MI,U/ 3iV`jX31;0y(IMih B,XS`tv?sꞗnOvs4~wDw%H}ĝfr7[iZO~=/DHYp7@NOShCT@.@+7;Ӑk6WE(U {c{m.XPQS*ʷh+ 'JB 8AE3KkpMb8 Nɚ kܸ"/蟚 s%5-pL5V7NLY[rK~D@mJrtFRZ\gmpsCRޜ6ZT>PDԸ`ZSНZ&Y=ʹj0עx jiYn}N/*1YBvVJc\oVla73,¬K۞ 1y-GA\ )Aier1 ?q9wlDħJ=hb aN+ɋ67H\9%>H DBi2Κ}, w6/ԳgQ l&)p=JAѦ&^"ITFԶ1u_OL{qخjH{KybŤGck[aMMoze=H8y H*h}]1`4䂜GDnSB ]QvAKĕܣnDAMDSm)OtwP@Ǯ#?$cC ʺ˟Oq m@L8|ϰUշe9!siÁؕx=^?? w.Y}y8#Lb:Spj"_zVv}ADvd08FFl`H[7bƉ<}Us3\8n rxZ\,R`F-!ۻ3 = )fI:z"67~E̗.ÏrcbLlo`X<aM\y9za.iDqnuOUoovglKAr%+>\lvm޲pjoЊ2tPY\!aVcuzB{l+h-mLg5V.i蛭6J %yP;7R9(kAA,!"ꚥDmy77S.=]Y({73ȃ!~58n[>W=8CZt;|ԑS@:j9Mz&ejOT$_`# ]ϭiGBqDq}C,xU,FY`_jarO =dͩЈV[=M%Ѩ^@}v?Wi1DЫYf޼WbGBJʏ> )CO&%NEsM鴲q$$r!* 6mœߐiR]) dG/;R<";9,.#BzOb$؞ݲ՘kJ<~Ό!u$IRa#'JL-Ԫ ZF2cq4]c{kxCO{e)$8uW]`Ss%T1[¨Xg2-rBFw E:طI*N$$o$pX5QXc>fB|;ig}h/%= mi4蹧[!5Dia/ jc}@ 6aRTN޶sxo<e^]ǹcN2Hh#m}Og>P pݰp1 zv2%d&X!jyA; _.ZWD]6xeL EɄT7VjIz$aA=8F)@yi,buX%199׺o>* S[  0=pe2#}⠰c%qկBx~zdm&>ɻE@vZ|"ԟRE6£9o3͉ԼNeDÍ)dȌIy̘#*燊_4\F٤Bujs$uK]nn%lG~wƧdgA5d]UȇNJE&5uvv=l|N*}f_rLG=T:'w6: ? ;HDhEIZ)>QqIXSb~r4 Yc <#}iC5{@>!1q 2B}snvEZNO81fuJ)c85ZwU( B)[ҘɶTB惞< D†95RbK-2z1dX%nj.^llV3[ ZsFs-`S&OrfmY/?'\C|WYXKkP̰ʐ-e+M}LnVeC%YVDzGkTmQ~+[ӣ)Ov%:VPm+F4Ty)z\Kd(<1r Xo. H;c6{Lmˏn(E' l۾'r/EyHŧZt͕'] 'v\,{\z |-Lc "BO2D´P7Ⱥ#^5P# 1h~4 zA"4oC'R^c2L Àİ@p|9H &g~'pU+蟥n:HHDr8YjgRB,r/]-:-%>ꎖU+l2$z~}խ?4[Ն^ OTJ[-rnÞ^c\,\YB|r*,Ka{e8<<,z"Az)]*-kTx:?wb;kNtт'z{ΚiZoGW՝>MB\+^5bn}p1}g@h!Qn}MFYEVpn?q߼L tK9Wh.u ڀNp#7-luݵ/~ G*龚S!Gw3A-MB>n.}&sʫ YR;R.5Q"mTDSo% ϝ xHBe ģ)8$Txi/a|Qɹ= qJh20HMQ8[t׫cnT{r s~5ꉻ%;iXAH!;%jb[d LJ{%~1,/=~OƣP̊-Q}#*`b;91pdG0ybs؇6j+EAt ފ{s/2#,]OVXF$p{I%!yNӳ2,׺nv8qL2#96 H̞yZ7t'h$yL!' $%ǽN}z BDD1-^^hDh`a9 jHȪ۰,[uFyY.uטb b5 i{?M|08!W[ˑ8Qr*?*յ99}V>TGBҶ]f~pIW%l`B. RQ&I@% ߮| ͢2zqn_icN_hZNv{7»OS6,n)uڧ u eǣ@6PUMmX鋸k۫olP,2F?e'V_ܖJJ+H%Xͅۦ_h6{jeS.\® *NO6<7܂4cGkpNo6'&_Xi o@!&{ Ry{ ۟ڔ5aόizM#cx>pѧN.nSAMk`9f>6y?˹8\|ZD冶T ٯSϯEАz+;_3%101E"+^ Ey| _ĺ/x~ʩ M(5` B]s!%$'Q:د~U>$SQPcj^3?,6Ms|DSԆqKCnbm1M>¾ 8Y SҴCߤ8rtn(:žOC"^tUkyע7Og]~Cg(=4){X4I'clɎ<}ޯǤvg0wz)g193P{*$.DGpt^e\r}I [6!-ګ̺#r)pDTeV&l21"/-d=2%#r{CoR$nGY s6Gn,,,3 #np<c\+@oHE8 fUT_e[&ys쨐33@bs]0v`_dM/9ԮMK㋍E+ukR. uB"# ͍)WgpQ9e+os^)x7~_Nd|l;|V?m skn ji՚57c cFP祝xz5{ LJBNgXXVrL/[5coGC\J+݄(ʌIzoٽ㳒BZ@c BD\߷+J-6}7пMGgm3x9'}ڽk-_5nKE|+8uimUTam5sN6tbexI`%CA>$X$IVj9,Kjo/^""NnD6,SKhepPmHp+U]gg_x;/^7!t 'N&ƨrl.A^[qdbXh擈szfM csa/S%/>1l(L,e 3/ʷLk3S`"2϶#[2zhK JvL+صp@5sCa0 aZ~#֥oWkzaweX)ʖGh`ʄrȻŒ$0ٴD߹A6}n]`!X`}u3d% /? (5G/^QNޫ }̠DWǰ [c*#r7$YxB4y\Mt e7H{4Fo9ECFb03HT?v Kٻ }SrF:>S_Wy 2yl3c+̏#Scӓ.-Q"02Y*|:)9HnW*$%Ƃ1ǔ%Ӽ?m413="+PlM0 jI @SW_+ 8h^r/{cքH|f<*u&p0g0rӧ^I6B)GN;?Y%UŧV$@LJF3J.(01 6cZbE)s {8.ľXuLIX? cbky*k6hGJFhs?s4|/Waz?Gh|NAHwAn%n9vMer0j[a@E!3`9-X.̠Vfjm f_(AYo=GjG{ 8HAy4{$JeKU@zc2T盧> 1,h-vveʷ&4р[w%^{O$b6cp6|@@ogCfMC">,&9 BqEI& Q}_-StmQ1bm͇ fKTu:c)ы~"Eƾs0ǽX_ } B6+t3 šmȔz"8N 7WMJؼIZ clBp#`XhD{"0la.] ӅO8.9$@ s^.b[0tƦ@{7LEl6I6xJFe*ΨΓޣGK;N{Nm?%#cEΠ%9zS-sZ:eMȆ:J/8ʼB a9^C3U4#(ԻO]2U TjpB򗦟*>LJ5~F"ZhFeTrX;U_k{5ߞ/H$9Q(SxTKI>~gp[Q_ބܽ>x$1Ι}=,"mї-8mj"##?9Qcܺee *Bd*^oח)onaFJș`ZIs:Lj2Cj<۟pJX1y%5:iWx% ]7* xl&UF_o`}m9|Ü2k`8f^)e3.8C1k3e*"n}HVYhoD;QUY ոegaРn~W{o'w_ VrXy\eXǪ̂a}@xNwbEv%sfpy/hKɴdfT1:d9 q }7 ̼_&}&OK_ZtaA#?J-<H[CX%QHulx볛 E &hv-܋|mM AtKA䅻.g<,XUQ7Gh9 > ˮvY `LSQm@ayK& P:cjWn X2|}-2tn9̐M$^*]UϵZ^EȊ\ݪ`NJ*0{kVR||NP5Iur|u6\ԑTp<ßOtB:,/G1PnqūmUg"B̈́ժZNV`-@řacygdΌߒiڎ ˷ϏozITT)MU'0qcW(D.io)&pNGᚥ U|֣W8a/aZ ,ٞ@;s5R(' duz+:@VZ3GOJ5;$/l[P3l{3'Vt\TC( HSK(\GfJOu =xVzN֚"Oms籣CRA(p %LB]5"C#XJ}FZev+ !M|,yƦ'-ojnAboMcZX::Ҷw]/ V{*C(0MUGU8.K;&Iõ6K0RLiJT_ PLpZ8bs  v`GhG\`0lA rC0 [<*QXJKBҚ8sVzQ>݅G\; wg p"7[9G^ܸR毄LZ)o{::oN:&ɇP|*>'$ƫ 0724r`ǻ! UC%μϢ \nVħIS(`.nU^<]7Jc4b6B7#B̫lc ˟ 䖟ϕG!vfF+aPd ;Ŏm3F3좾+}:֚nBӴ5dbǡ-)Pgy&ͥqu062Ǽ/Sh!Mh L`b d)AIxLe-)V 3Hy- sf\vbP܈ 5%O2\V;ҟx {x{Y9\Mp2҄`p-84R=lC[I_&8f#Ȁ)UlIgW_5 _T}S}j4gLﲠ* "x5onlҫf5ԋmƴ~#cGw<&M8{Do-.F_@ hy0wfk 6@cwHIUsIn;K>T]+-Up~y `;>C՚:I0 mٷ#b<*cA`nD/dSZu~Uh^ Ӯ' Y)+o{>gXО-A$&ځ(tl(s3M"fXN` Ȋ_dx^pRWF']:};cB`|?_ ۬| (-_V@TVw}E֖[V@xC#k"soP(Y?w<.P%a~"qIxV[]Qc00UXUވu_؂[3w?Jr<abTxE*R͔ݟ텙UgK^ϱ@5{JuRqFgض# A#*@{Z6[T<7*amv10BS]eX~W8Y/̍ +@mj6/24(tCxf춉ܿ+H+,xJ-{y2$d٧C6%q{NzW_,ròhyF#sd~ISsjPf%XGoh3&FL|<5 KbMVw6t=J 1ru/+޲b/}}kA_ɹT ;/6:֋?̈yQ4X6.\VǐỖprpU qeJ$pJ9?G k>S7: +l]'s+fʮv,:8|? w;|!f94;m9uP6Q_SZo{$Mz"v׊=BandQo;w3$Q!u~FRDd f'|哢mq[FeP|V :Ǜ'҄߫gZ8RjbX1dd39f@/'xM˜I/0tq=9wvZp $_ j_v5) gF%BW;]NHGy[ҳ@֦.-~KW )ygn"lh_ L9dN.Cւ+$=L&6]&ldAMY؃r%$܈aMbVV6ޙSJ{ S4}K[' Sy^JR[Zgި=0}02̇H}b~FegSk汜eәKI33^.haɯ11E~ղqyP(r-VHÒՈP2\LW)Ng Sܛ-C6w ;٧iXW4~«:Ë$uFw{jI5̺rZB",W ш68sE$GnjiMҩUKrɨ"qƝ]5LMCwOC8*Z`nC{Y+a U۞ߪu :2O"K>I&$ވ4-" q>'@fԏo2f.n38{yf>z$:fVkK~-䡙Qy3: 9N,"|M'wTµun_H1^]hukg&$a6b];ij>ꦝU#T1/3J2M{*႟Bk"gyBA!"Ui&oPՆ:mRh+zDl\[ьn<Ml6UU \Ԩ 0ġe-mqIncSҷ&݁2uin,Q9T-dX .Wc}gs8r>AP W:hYm̏?^5 |[T9,qfbz9-Q͹)]68->>mYL*RE%3YTVrHo8V~gn/m"S'!ҫ^g.KMcpZJ* HĚGh~zz5*#NAP_mުLGvtjS4~VW|8NQP\BU3 DC@Pew.{cFsrMhɐ+3 T' ?zX9 JGg83zIU ] _o19\a`J|KA;hhҺ0GEy$>e |w븹UѰlڝ 54wEɦ|hL.L~StS d!|JKn'/Y Cc~^#+OBG+oq*G;FA]1I Ѐ\()VRKVY6gvaBu8E;Vf&#`F#Z beE P#ƳSg 9A@oFf(L&!1t#r3ACbI']dj(.i?^5j Om2>#~𨩧/<ҭy /}| 932ѐt_:;_/Z ʊȥ1{T1IڳM@Vw9b3/A~1fXY[4Iar , jqLIx) HYF$\ j;&&F"όGkMVP~ngʔYfaF5SEthRមt>WgVjbVwQY,O -sr;Sf瘾])趠VhZ1PcL͕*#t|/:m#iѣ,p@lF/k"0UyvSSs6]͊ Hom%$X=ᔙlb?J-i ℙIEQ\ `#2SV4r+aej t=XX)l#x[>ŁJz D Jk6& iQ8³6USeo4מ #26"v֗L ]PdNy:Up'VR*>(ژw}zm u`1fJ뢐w[6ei_v5uz8Z^W!UUu[~m%~; +јh(CP# #0q^/bB +MbUXyS{6Smx \4r/`# .!r6:N$_loT4*\h݁/ʰeP)-3 Čf~GZ>̻}Avj3i~(r@-H 䚈A!Ǖ!+cd曾bd;0lU"X];š20?k#U5BHĭ~/VN $q(LO# , d=HlBL% 0 4zLaڌS[gֹ o](wWppD~oNŘf$ʫ kbef7H b'c>I cgr2v^_ !3](qCz%lŗ7/O RzjYK+ G$S+|e̵m xEyw^+̻?V og7<(CFaOqM^=-v zKX3-c u\6 HlA!>nd(9Ԇɰ%6ITiPN_ ˰K?`Hѝ .u5~5vœw#Wխ~W;OdXlX](%@RNb6j`at<b xׂZ~& يU2gEdn=GS3VC/(f^k NXF;?1 ;) 5^i"C-M~&B°Mw{e.iz5hPS>bnΧJ~tPHWGNuIWBu>}g=ir Ĭ.E|Jd^<\@]ik4^"be85 !Ud8so¿fmJ39>]+wJ%y4Ȱۑ7I+&nzgpD#Rʨ@)wM1z!PС7$u3̂&Έ_z +p׋֤H)#ٓ~!CƧfZ/22?{lYOX51J(nfm)~x&n_9FUV:~˚\5?vZ}-n!r/NhWr(Wۖ.ҾeiFr8HޥQ[[a 'y\BVy[=KOL?}Egfg]Qİ٭zju Ggbh\yz-)-}1s\aC M{8F=5lZ{*[|@8o1Y3Ka 0uk5OXAz"Q$,Epg M13l4\:IEOGyW"'^7:S@u=a34vxM[4,Gp91@CSeNsz1Y1sj))sӿhhZEaRYS~XJ Sћq_ܤYb̰D@Ca[nwM#}VM ٤$?OxKzli 3JH\Rhh6$xp\{^; Z:RMBcq*#lZaJYdZW# ~\_BNzEHNA/o#"S#n|2xQp.u&zޖ"q:sw9/ֳ"kfkzRv1b8(}Z1 [HP~`I0"DA(ƅ  8?/+vĻD:𽝾hؠ}UASPte[ }Ew܊y\tcփ#pף{nI/LMˏgK`]vkMHrXtO:~/"4 '&RȒB!`LRm Sy_@#ueY1SJeG=3Ds]^/j]uH_MQvAIq=(67(4P1"5!Uª*B+퇹؋jnsNa2"r_n>"uc >z8F{Л(hm;><5{@dxa^XیmS2@q|db.%AAJpd>[?le5-&Jz_=c,ѻ60ԯL](u+WԖ ڢAEQ@~U93iRm| 'g-to_ F\0jHoA~ɑ"E`)-jTu>9߷ Py'z4G+iJ`─{^l*Zt\ޑ +7Hr䥇SiFW>qJEtʽ*._#m6Y.]g0|Ы=L*Gpjh0EѮ#SUz$:ι AXՏQ2 } .#W܆}n$yq%Rv!֊c۩2w(+Ӥ[, 㸌1I[ a`,-wYe+ևCFF,eЪdYjƦ^jjkS>%'恵DXf: yj:"}/?l5"! pΉzc7h:Gs8ȇ\ò۴\ m_SfM:ٺ,ww_{=r/x\yxQIK/_nl[$L(fr[rϟ0!qŃ+p/g10pAҸcj+rGͶ: ܷj»b`︼kȼE9 5d#:{|کE4XαA^=Iuk p%Ma:K[_,ӯ|8MGRxR|8n"Z^h휇[?;MɢK")]|( i\?p\%?&$uvYi8n:) 'R{lQR M '9/75i@1 TziAqA1Y#yi k|WjɌ3#@j<i5.|=ԻI F?oNVsc7+¬ẘbh>7kXb{ Bƃ[tZ*_ENE;_ޯt^I*]Pp%;t#?Ia2~\;F)8NwgvQG0G'&eQ7h[w4M1`߂07nobNB$dTڑ6OqyGq{MpU*6Ǔ\':6ƺwr1T Ъ0p>0D;}UʆN'x:d͊;{ {1xt0޶99tֺޅûgT ^LJNB E^*c!?ϱ7F7aL#zi&2K G"{J?BC_٫n7F ڠ\d@>SOnZZ_p";g5m:ZiUzvD\FeZbzԡAd9 Ar q txDjۤ yJ e# x/]IizOCdϢ# 6|æq-yk7׮AMǏ$:oݪFLތA: LLqV(Y<Ò;ؑAgepf5sE"3ߏ14pe8BY=PR`l+m6h[V!>N69FflDcoxjʜagR=# t2'mҚqC` &-Fs/r̹ˆC ߢ%v>/opw/ȹ5jhQģ EeX&S)5Q!@]5y#JGʆm2tI>^oH|Y*%ĒOYwnKo?g,8v> re&龲'`Cqm{hy>]DPYo:R`waa~К%̅6S$7DiD E;Zp1>GNjRU {"I$.X5 B+ " {㾧|IGEa{DfE?C*c8bu03q&1.B\&so0~3j6 R<*8 70*HJmjMTMTN;nj#4l@ wy[G maB+|Q:`KT)+Lþ鎕)C2:Bw_̳l2=\Q4>]&&3fTxw7 u afHʼugaoV%ՇDP1!)Ɨ qp*08isS'RswWǰ /k?ch }l\+kDtdzS궂Сv;vZV4L\v-̫OG^ z_r rP0Vps\x~]v"0{Q"Ȇp}Gk5W8ٮ6-jw`I$ԎxBWzJ{` \7 ެ2]oL БOfR_cK&7*&pHmK^Edaf0#fvJw/]/Izaq)8wgJ\*PmhfK )aVBsQw~H;ZyĀ Or4UNxZSxG=,7RAsU»zd qOvJW 4;{XmpN&rT ͨnXO̊8Ht.4-(%J|U_bT,vɼ _n&  ztfwݑ\Z#~CPl/Η1mPţjv$2="'ßZ"}bkl&KTGxdlu5li{%%iB~LȋZQlu{[rrrSELw@]YeȁSQgz<*vTX"#~B%ZC|mOdp ߐXM61EzhF!DP* b醕NU=SpNsLw4sA$p|G1Ob\ȨvKU t~!^D~o@׆*SKe1n_ZB"+`X `uičm{3C*g=y[?RLf?UM#Ļ7~׽2lԪ04x֭M쫪YʂE ֈ ܶ1UJSuܓDLSRaAǁmO~J?=]ˮyv+{`8lu !Lgac#dDsV b, 6337o"v5υw3-w^XK\!|u>a$nVLDo6*ɑ@x۲ VjVm,ҷZʹl8rӺ'LpN J쇦PtMc^ ,M]"\b@=Ycq9x$UdddY>eYViiYIʡ. $O<<Ű,>9n₪M)EL!X8cI@ڗ\G/h&P/,Yl}&ˍdw&#i̡dz{C@.ekX%cYj4Ik-ac02Q<4 6k)  rȯy}1g4QR!`76jFK!+>k9ZdRi(Ѣ̅\_Y=@.3B[U_Lr1 l嘞gyvk\ bO\Fc xN?,FHFS3X@^`KŶ?z@s87rqF$^Zwj󌒤OXT!d@Bژdguӣ 1}(DvpVcgr&x,+~Y ZRͽS! de9't?>;g%)zU9rg9!c]@;|!!6u* gCLVJPV'P( >.mxJCG.ar.YĹ~M ls9M[)b'Wz90}Fޖ.y&)m'i}>ꯐ3o@9N LAȐݝ5xBEIK.%Pp؉`"L(fe)8N&.VBN_ֻ/H\toW?g@B/{^(!PۿȄX\s4hmp.v(Z]w1cأsQ{9(J;kwK&Vp= $V?G%XZpa2^5S|I໴"&*CN)Dž Eaf}Mō;pF}34OKP3q; jGǟT8GZYT& pXe2;_8GHEӚz°+dd}&ͪ$9iZ~Z_%Wf uQIt. ]\a/&ՙ]gc˼ A6 Q`hk@Ӵ.B3 Yloj#x&\:^Z-S2Ҷs An|*Y*T=#ZZ+nm{J@3_*4 Ǵ6X], #~*pV: P^Wq=fgt@`90ѐ~xA7j˃›xM`te׭ta'm@Ϳ b%}آ֟hnЉYN5<"DI,ףbF xVD `^tGX e9.3DZ௬^Y: E*Uڇ4)/&Iw]u?@ 0aHy ,nTQ>7 r:gbW{4sa h9nxP%^5yՖ6<ʘ:ⷩ5s<3'x m3}ş97PhC`cIFdfVPA42کsY@Wf g\%%y)-t# x*i2ާR9XrpopLPbcD}": c&3CrFY%+(Nw)IUP}} vN!E%- Œ:a\z09a\G;٤u*XP*;=p8)ŃOܪnwULr2A?F®Ycڳc?s| I(8I )T N%n@ +@2r<h :MQ<"ANG$P-qQֶ)!AZȡ qk@T _vrq k\"?,4G=|7SH.ԫTP U)S\FH}Ap2^9cI] q$Vb=mj 7ϡm|@QT֍;R<1_V"oEڎ:l% 8V8(NNSD(i7SeB7˿; -<6UX4UgN^:Fsꠒ LwH:dߑ=c=/uֵ-kfU1NU+H17rJ^ؗwBKܙ&U׶h5LG6RK&?mVcǛ.j _/QyPېوבo8sNں>WQ/_+aFru'SVFӤ :͔@jRΩ9zRO\ȝK ܽrձTtfNw+BgJ}Y0﨔xPYóPK0xS'!Ϥʜȗ.d7_t^lGg 6C=) ~qS`}t t _k܊4 hG ޔj.Mdq"4(]WߡUAL(ߜ(M( ia^:]_ذwEY}] ^eTUyBGX$Ae|AԷq['9-}iMM>2?ibR qc0rc nh+؞ԊPc{z+Q5z1ͶugĢ~z䟗z{Cy0Y C%+t%0v?~ys0DgԨe 3XΑS)TD8EǐYt*L%yKZdg}b;fݿ B̝o*ߙ.$ 0|kBtTj$|A74H>c;O#؝k g߫ 'O^ 1? N8$FiOXVO|F FҘ/ ǔe;-aSwJCL8ks4#ի ]*O~,'&227G[U*eZK3BMnTs""Zx^%h$k@t!H#KṶ*5@n"ζ0.("R"-AM`pMO܏Z*<96Z 7oܫABapuSO _qo:\o^x-7di}uha 틦48ѣPE9g 968qe8Luk3{Nl(|zM'Ʌ_HXZ`44-LE/D|ʜCט|ʷsr}U ̚2.ꭕgbN@q/up`E?hM^S>2-gV8ݲר T=(NQ0 $y˸OD4 +NJ纷D,Ly-g!rGz5\$N,D\Qrʞ4KSUvp n+&\FJ{Xg9>eߜ(.rԆy>3*4-!n5#b_>+]V#_r̈\׎+^mmT ID)&nјEcUKpϐ{<ضY/sS`@5! lkT~)c[Ա5G$xi\N8ULnd0JF." j<9*p%o찢:p>:Edz#mQN]"H4').lrO{x 52\\:0 nLҦĴ28ϫȀD3ʱ1svp>qRr2*G&fOlfi>RH9fX5;M]ۢ(+Bel }9&ܗ_9 $"jZ)13"cYNK_&=p\6? 12VJtnIyd( FV`h&2}U&F?@> {\TI*{l!_\t`B4TK4kUz޵[W7Z@lGSپ|?ޮv*LH{R e8;n6aG}qvǼN)maȚ*5{Lf^T<7n_+,גּ0]Tumωn y$z2{2'AUfDwrq9:llXXlF3]È˚{3]zٯul01^])D?smߘ駜oNH&"~C;$y8oXJ'fSb%=]ʪP͡+!S*CܳTBB_Lo ^ ;L0h2- "IV}mC`F=|VX\޺bUr3z"C#g!_̆-_f)fUYi2F0Mhn7zu%k 军vq,c׈}-Ps/|G@)lgQv~cBQpSPPMG5瘸DWt|-І-[íIdŸ\;u,sf3HAaDm Jq|j%'y3si>F7-68 sqp:v;XӦ0eh.U9VY-i.V}xvUh!ؕQC!O9 q)tvAMfos]0+Hg` .Yka+ urٝ%ƳOVٞ STUN"+ÞU?[jBf8Pqߗ xC=ȈuDs]րa1]ߗi<2siҘ.ャx`W 8לgڢ*_!X,VܵOXUYcżWoبEگIȕ+X r53f7.-5Sf<:ɍC+&yeyB ZӑEºL~2uDӇD&j(j^ܥ ^] h.B뷊MeTJx[.J a_،]X)V4.t eg x_ԾH7oIt 9޲؟B?~I/pz{#%"#N3]0UZmFvzH]iMa-4NZ[x!KE&+3nnזps^E5 L*$5Nf_C< g1Y?.\ktɷDvUm: Quxm_bC m dnP-,ux`5((+(ߢBrT1=' 4 b`|VC9]RB0k"sm /5Xd3`n !Թn{ ^gh  d ƥ2Y&A ?*iZje}TNKB:}.wQkƋWvXH$")CF$-yF,)D5|6- =ocmJ uga 뎥)IuV;yK)U}P@v~DeD YJyxAQ aוqPw=nJt'Poġ'>*fR%VE<]5[H b@hm+ |% >+1Zmtx'?+$4.mrT6J~4!%CBvTDZpLBXQR4UWn*\GU|oRed^"EԂ-91= Ӡa T7U.&V3'>Sq V.l%" Q40s9+/  oFdft{æ\[fU34L@$?"k;}D!/#a}3] #iѢtACd_!Xz(Qf<`4$CJW~Y#rx#hņ#tcSyT*Pmz*%6hmz &?)J<#Rp\ͮ9?DrYX>df̵ EeY`]) Yss1;?x6Rih4MRwk/9rI4Dtœ8D55PE* VBH/H>V*g$K}t|~EddN3\:֓MOl^aEؒщCVq{xܲHf9o̰q JٍuQ #E ;~pċ~,sz߁mi4GLt_KX<fB֤ T23Rw/|Z}aTm@XRj[V~L),H X#}S]Wz9:.Rڜ,͹Bty @Ed~WW4bQ_;ai CG@1?$:da';ԁYׇHֱ/^;<8};h$bsQY6;~H{χSb=ivYΰ.q+տe{YlL~ 詷 Vĩ@fr35Ųls蹜?Hw&7** ~VĢƥ/-Hvd1 SתskTH b/dE"LL8_Oњu  ?Q5z5]n f7 nwCO;<#>NToddXٲ 1w ?.Wk׎uaCl@KW̗q+ڬ_~֚ۼǯgk{Q+sPToZ_2ĭq7_>!:C1vE!jٯ7?BlnQa9j}?{$ $EMSCEh'J܇&mU$qA4sl-sś鼜,4+yG?TY(idGkDw-8a׀L"D C 5c?VY4[XxTibj3nԯ P$F+3d,C.4[7I=js} ?zȈEJ P's:m#6t7AZ%\~SbzlLߦ~fP_څT<7Y{NQuQPcLA&;7\OPq$ܨbvHTd.릉]=W* Fh_.jXa޿,`/A?tkI鸄dj`(Q&;>"AU#i(AT4WSMDlG!0[* |P iwY}!,Dl n_1fyrA~~)H s' ."V|!-t6+ភkހH#l$B$+c1a5em^oނC~sm`S[ T:Ȅ7? bb yͯkoc*1}U[//͖h{2 rʜyx{+G$kҷMQwN[G@aO!.4#[g2ck 7abş ldF+uDr+chU-`]۪&77%P FɕUw*~ qk$IlcV;5 t#5`q[nz]P3ÂUO0(.?0 Mv+] R/KoO{O:9a9bSwV(pgX롞txE yh9 )qpgoVjZ˵xb 000/{7#>QNԉ6iZ".yke=ve`X^v' eR6Սx~*"kJZ_P743VO`H}LG/V2QEtz, D)8`#9Y9vq17'b *EjI*C 4k`tQG]p{{TFљQx͡ ފgHv&!.3MVN.x5J!,kUx &8Zf-፼E a|fBR7t*Qc!hH8}HHL osp3M% Dd:]P}b,O#uؒ0(֎` wcma3kM/]ql4=a3a.hKP''w(euc$KI18WIӏY)P&pc`n(@}[7_r,v1:$b4^/Nڬ=,.Lf7yTC݅/6Lz<.6|0">TT( jg#.uX-=SKB?hk鳥\1^G1N6%үǏKDlĶt\\wњDH_rqq~0f*@&<*u^VIF{$%f^!(r]ǧ 9z%XqYv/肵$ 1ql= A?rB[f HHe~yRg x۱_w^#A'X9fVL,oDaI'Bu)>o<"QB-WM%KCd[Qő(0y!MZAbb߆"UAjGwꠚ Xcu#Zަ#%\\ztcزt}1Mlb[Jk_;dպS<ߓkʵ_"&eѢTo%P٦krkc v;-Ԥ<-q*y@+ԙtk)08:XΠI腶B7ؗ%lDZ٤'ǯP1ҧ~/Byx_"S:>so4r7%rL>}wJ: .mޅT"]vn}zNU=(^@R[f gCD}>HFp|[ƐN/jc"ySҳɟN?sZPM\"N O(e*@ 8}˚XNw8%>Mکk2~;˸u^ޗ̉k>p 6L le<4@.!Ȁu[(GcgFk˄(Hyڼէs]Kó9K(VG LgY MEy\Y-.B"݂inly. oџ$8h{?uFέ%߽|h{ra`Oղ!p֦qr3PkPd]/mUx3RéQm('~p5T^]3Z6dv#x|bVԕJUqt,yh.l-}uc ēZe9 8Fs%eAK)m*:Scrn7s$u^zلAvP}8gXm @Nh *hf7ec˾I3/"_P K+}'@P/'&>\6r~>r9ZS2aaPӌJt!Ϸ/ōdΡP<h;8+:o xoPQ[)+[W]TήHA2%R1./;xc[0-&(f9-Wί*$[iӸH۫Hڣ@ y%q3T<W\=g/b1!^a6^ίA5 zƺc 8ӂcen߭nbfWY}}qf /z-q/Ľ;P@r]po߇Շp| Sө+~Uʳ]IKsܧOIJ -)%0?ұ-'kmS TlGd;eXE| {DP#*hPBV`pJ@Duu"|XŸ{ORoSo91oF9\UI1֥HX5'E2c6p {B[ x.!H_LzRռ^w(L.wPr؜< AĐX@mTjn/cW`ZGb@ʗCүdMl&61$:p ᳼)[exXO9J|wqYq'R`ƻ:;vc&S B/%Ȃ6w޳gS=`)yĆ2}h΁؂G@a[%yeS24_~XՇV3:+l6xJ ,gmz Q x$)!C}IGE$Lt6߈\be4!(^4sE8,fAQb'mD4O H pw,Z-V^Dl90Nk;Q~(J_xM g.ŔXyQ4(Md) @D"W_oZCT@8Y-E '}`9mELx:UfvoqQ,gvݐ6gbAC 1Ejknz>fYuJ^R]DNXwK}]`jW,D6 zWݺesH\n?E,_J7J:\4:NΛM /Kʗ |Q9,Ԛ˽&ՀD^$h_`N?dUCF [ M '0>=lvl tKNf؉|heaIPjl,.g[oʉh cA=q"b^Sy[x&O?+l!51;Ѱ@Mzlېj;Im_S jh{l`r8Hƣawfu 43E:;ovcnz-ۑÒ"k=wcZe{aIϽ؉G ASyar N74Wʪ5AyjGܐ|whj?aCU H|~nj7Nk+BtO%Cmr:۝6"evҶ]%7c‚\`Vrv"ySA1vDMbH]yGM@M]جa>ЫX`566fW"n_CYG~Ws i}:OB36N{>`k&֭e]^p&`-YyeNG x$VZ &a.?"$_Iz#3S"նX?SWN}&hыL3R'Ρ u~{HA xoᄻbGKL@;jč4c"ce7P9fY$IASU5ɅP G8Z5]9jG3$B BS|KeO+Ղ;@ҬO*aI |AJnti,u7nqSh>wH{:hHeoY4nZLA+޲%n/^UR>Jf8e$!NOF=ͱ7P3xcHnQ3aLqE{YT`{i.} pPOJaSr;gGvqn2B!L~.A.yE%U1K6鉺TTJ@ޑ "ʇCcɱn/rrkVM_XʴwzCJFT$Q34ƸcI, 8z>9!O=kMJYqWkv?ao@+{g(E69F*w~|2ZR\d8BqB.VCsʹ4 Zה6pԱyaiTʜ Wҏ˴g[+FS">#}N-k)21Y!wAeW+$ =K]Z9ey2pD<؃qkOfD䭀m 𴱧ۆ?AIz"B5'1LI;41_ O2(_)r@ilT]=ۛhpmiYEx5Zg+PE$0X(G0]@MD 3=>eI,DTV򎵰/'= -hG{@<)ʢߞzz^Ṱ68 u(QV)fUGo19,_ {HI!hoI?n ?XK)ls{DX$@^upig$Û&t#BA BԀZ>u!h[K:0دL)LfAQ$;mQ?3j+hnF 8+Kݷr<\&\Bi +tq *˨Ƶ( MV'3d%*)4J_ *u_zAr~:ʥ_c8о3t75rH;iE4g, Q0NVm5\ ӣ6W;4cHJ[lʵG C1|ʚ,MpgrB0T2櫣Gg+]֌̓-@‫L*?\[R'zY{We:݅ 6=>1D ?0a(Ng5XJBTU~*(B5yVy?U):g!V{Թyv6Ï 7Ko_~,-pM}s+'/~j򨟛Յ8C+U E/mn8PxNR^jAenٞ\EZǞfBv=S߆M%Xj˟؈#ajՌbDdtI%4*k cwgfU/I]"t^lsLd~{ G+oWו'iK <5lpk"mתG4 "rvۧyH~g5pYaţ5%k'>1 ?#v8o.@ά@ $li?[rO`#@pM_P(i{sAX U~UԠ?{ Ͽ=@ϨI>cD:bHEWڛҶ9Ypz,d{[öXOewKhV5Zd+57D"u6aKZNy"$[)L;gܝQ0~Ձ`YIVX̩I~zll6M/=t[Tn*&E17R!]D_rT8vƽIK/F+҉taw᱓O3RV8ji=[.A {F>uo6/vf%_+\k>.FLYDUvՓOT ޒ+Bmp8iUz5fI)ɑ 6^5oTp_R;b0G7p>qy .U؈] XtgfFU8xx4## C%nyF-|_n)~uNP4fhy2˔zU``DսAFFz˻P4<p<R7Qok\C t2Lt2:Xyzux=\&-2 ~ЇN%#|rT ˞^Ӽ&BQql>}dIjG5I'ϩwT ց3Hs@sx"!^l -"qO]])#=&Jhcc3ԐS}fOb"RHUZLH<$3!(E%H,խ&_е0(6 F@dWxhOqj|\=;H5xKL*EPߪ~ %DtZ&G#yFm{%+ON4Gg˦ #3vx%C{m(j[|IFX.j^@`{bX1!ƹlRي ;jQLam1qw[\g9i΢\;zN)'yasMw36oXr)_KZxG i":)nG?CSfg!/aJ,Ɔ@_ 쐌חn+-Jb[8_H }UT?,'vDgAgKf0ԁ[^tdԒG^1 hG;3n~Q!'/ @,1(qN BiT0-R5 > Slp.ZWZ͇i"^ODT}vCj?̃z1z'EJBpy)"! Po&2t>?J+ ߛX\{Ŗm4h-a0EɅj&[Tpkd ,яS?%{/;)Gi聲S~C Cb{G>-J~ɽ%OZs#d#jn]wڳO+.X*jʙo鱵ot(Ѳb"tAH0~<.pT>sWr Rmŝ;P!Ll"-_cjaމ.3iP;Abfw.BԁUd"rv% Y*SmH5Hi(a9z`ש#zAyO*Tvo=W/dlX[mρpܲPC|Z _t|7]P̣>gYu/|ڝȢ.g^+mgz^+aEO./ . B ډ_ v\.8( H ziyl;ms@3:XlgNTXaa@zP,3}*oA%aKT<(,Gfӱ.? W3 yדB\'4t131RWNUOw*i-z~/Dȕ`B4bbpqĚ,e._!yk) #O0x0IwLRMȪT>81' XwlLgQ DkVxSv!-BI"].?΅)ZG5lVC+7*F>«|to\΋,@.}Z>ppIs?B~xfړqR^p#2]:EQ} 5xQZw`!y!P\5 حȂ8+g>IEڮ1Ԅ :ԒBpMě|cs8 j{hA֯99r*ۊ]ÙϬy_ʲq{Cq-)0N)tX<*S#|W6eAh-%hhIsW5653aB.ozd ?bB\8fQCr0Iq uR F=6Ed"BId@aM0 UTK`>8yUI4#RկN%f%h~U|?Ӳw924[9gw(7X~&.TZw8\_1ghjv6SzI v$X/Ϫ!-oG ays㯣4/T{2-y?`L+|)9bO9[Y_wag#qJQa^UŞ6o"57H^4:8|e5qѻY9$pB/aߛV$7WB3L<>!+,̔_4 ʒX @mW~#@Q|w.T'Ygv tc<.\H3(})}n(2@U3'Z)>s`yN<fA]YOoVfʚ"ԔÎv!pAAg+Ob\aW H]Wnzy/³;S^#2bIBͥz(L\gJeވGvH-exer=]ި;2,Xs܏vz5R.8V Y(VXQ~փv pH4mEil8}E 6hLQtAc.)г9%7(1$GH1gatA&o^)̌eymeLT<[l`ђї#pke2%YM -g&꽋&I[ywk3 TĚRxa@;[V\^/ L8s0,e_Fij[*"/W-ES $aϥ1?VzŁMqc|ҳ`y6'g/[$QLx,΁Q{(=g9hIzF#FLiKX}t4DPa{ޝ }JP@]C䙠#! a7L |#7?;PY\/[6LfP2WRdN;<,8':ӮQ,mԶzTjR~ cb~SN~N)}AGOf*eX:09SZRBG_#5S&s̰j.eֲ)ia+F-ug㑄MT*vrӄLbB+i0r 3c+lvvcB pDH -xʧTrTy3}SEqhnޅR5/Е"S~|=sfM_!̑  WIģr]׾_UҙX3 庘ޡhܾ|؎`zr蛕j-T;]c)U~sAb>\K0*=E2hPo>xɄ# Uƽ8=,^,u]?[ز%eI7+9@ ƆCOa[N3[M);b[;?iLč=cE0Uf(7a.|; j8;~F`N-[`XJq&IȮ{㯓]vQtrP$A 3{e,1%ydz`1J,^`4oH TQQ+ 8 R~I dYhV1>41z63Mlv[&M\n!5c=J?Va> 8iMQU1]lG_LǏ4m7ZhSTl$dRhzR^Ө|4Wr0l,yˎfp(n}? ?C3'($UAe߽Bu%>61e10dnC]\uRkdtb:Vp4@}oŐI&Pr7=h)6i%Tn3<(.,6#/E8Sg|'c/`E٩ʝo^ HGN#Z ^p_> k&h'k jB=5D~wm 7=֎8~aFq 00A7h;lVmdo'VM iYQg冔4_E14{7z-AL"2íE> V%9&ףւK٧, _01󦁲+2qE)yut JV i(%c^.7YѵΞx;2N<@#ӟvLJ+ը!89'TYwJiPenˋ+)wZ7X&FUqz뫄7uor!"ȥpX_ 'nT.׵ :.^`ZfjR0.bWB&y韹J8+d. @,ԚieV딱25nvf~Hǧ!oBz9FC\ 4#ݾ1%(L jv3ٷDUާArU.pU#97ꆫ7ö+}L%?u6q@whнE:X_nt8" S ͗emu*w 7_?nwY0 Q~v}} 'Kn2d Ľ3}"&hQ@bѕEϰ%I<voo2Yr ??I•Xd}4/ldbjy:lV.Q s/4/#B5͏=B>L3Tt$Ӆ}8] *$7͏H;Uw(i++#&NV3/3TY%sXTBHȼWcէc>- ^Z@7ۃãH4 ̈V]3x C,5mAoh b͎ZGۼM-ǐR ja݁ۤPâ7q{p]86;:9A{YCnNcHNn9ܳୠ# jSOߒ:e@tq C̀V^?#OlAa:Nf4rlsU'VnJ[4ơjx@1i*~ H՟qJ<1<ԴSZ ~mJP̓=jHvBYʅ n0;ykHj_]yPW-G'`#(h`9Έy@ 9λ~*9p5,c 0EX+6x ۽3Ĉlo3Uj/%{]@T 4PTzD53xw cEDk'Q# rӝqO%ȯ62?cYUz v]qT_Ds^=Z(A' ]|i4ZHjnͬz~O0W@ Zkm'_|jX_KqF3 z:#~dÂ!P+uBъ* ؛.a_:h9jX$H:Elχt,V(K:+) A)~柩3;XVV>*8]cF8`0a@ԛ)ŰD{(peHV@4b|ՐlYq\5.R"*/xYlmdݢQvE6m[5`?cn[kffAn(__SRRT4 #IgnŚozkؼwH3I3 VOltf!iѧ]7M ?%ҾESWkd<39 cpZS8 5wU1#CeNh)F(MNݺ<;hɴuJἚ7\F{ otI1R,rF4Ί+4w ®211Ba8Kd{Ǻ߯{*ȑWq&W"X[+o7T_CEr$pw WWwUe]/K9#{ 92yD D}޲#MFLW)`|6&(8rn_ݘ"S\[럲p;)KR-ssj@Me3ZT b%7@<&z!*9ɾfmq]#eJE_P3 [_`7b+w [iOƅ pU" tQw^\}(-ջPGoI0TOcȟyJc :8Sz\c#Ί<$JPINqП5 Z !x{S7gϪYݱ[P1kvybzZ~<}%m9+g MLhQd;4lI< T2 L!XăR|NyYWb@B~xĂ/([sP5轆R=5b#Jp.|H4Y#=hĻ*zj+VW}KvgqwglkVy $ =3K; u32 P_b ȥh xz0!hYs)tl^F_oUO3POm g+관2'SjPDE@{LHL ӵ?~ l^..:+W.'z֖9ePzT`%ޠagzQ@wb@Zwl$-#NRHi8Z*XZ>$#frrl땬{V_R@ vQs/fe+m BxPv5ɑ;0y4`ўs !14t0Po3qW8.imZI޷ng_A{RmlcR̫{>WI})/̌G68 h.|Wf<ߜNULIaUgWM?Y{v@JB*hIrh*TH Wd(z{eaFZf@!+*%!C2}7I+{9]`7M"zjtl>N4&Q&UՓib0f;:B>szɝXbwP S܂u Ģv6j*aL=~*p">v.=-EF7Cq_zr)b@"$̆Rg5`ޓؿA z~T2rkvV$Yly6}_~|+$2 i%}3f7AZ _p7eye1Uwٴ[|h>Tk 2~w#e4K "+>9O,5(ZkIc]2zO= ?Pu=cw\<QLJ~~ӭ箽Q{t 5ʆkNͷ ~MnCOխ((CLweNJ\|wL"E` EY45TXu x8fH7ًZ;X 햶j湎 }4s>D(ʸŸyhYxeBat~ uW_8J5 -bJg/< ,BcVyX,6<@C8&B RWnȜ phN_F {Rf~)%5\ jUL]r:+.dȼ>^,  <5C{Nd**&02 FCF<*$R+iCp;yu?PzK&]oLq+;sLHѰh{VSodgA3j`Ů N!`.N|6b17 ؂or\$BX;x" x'OA۷!o,v۔кՉ_۱ASUIy.ȡ(๿“CH{{?D 7iCX4ۯoɎw7gs7{+RouAd!zun\@:3; p~ aީWaUPxW[6&/kZA9(F>ޥC y&s#LCuyrP=f+Z&" c 2fSfܷD&.t4-}<<ħޤq@}lC,s]'tWۈ,"CT)"Uur."P\& l ubuhRtЉ"g|v#F-^-XZ|K Xd ;=>|ٯK.9u_hTlw?rx,7]Y;K*--?iڐzjԱh :4.C@-g4Vb((! #K($ @DHcЅѪM0(.Yy#SAF趉OUD*Y:(%QX (ق@灮1ɼ& Z^N.Ѥ8RA ?y r$-k+D0iPބVk~X G6-xvRJ`b< }HFuάl|Rc~zD[z-q@뮮e&ni UwBʀrGEQ4NR{G5ŕޢ+.Va-F){h,Wp-iylYjbk;(0S49_ru|߭tX͉oT]TD IM(I w%Yd)ĒٌP`k/FzFqdf1/Ge KIn.*LvB/|_xZk>θhq^)H:*(!3U9z6q@PS=SuF+A_JIo4rqN{R .'֡;||ãrf/jrZ›ŻX.2N#?tphcϚ~]Ic="īU^|xUov7^-p805U~9BEl pR.ňSNYw-u 6h&al~qݵ c7*(Ҧm&ƙG3f1I -U:Ix$L Ӕ; (Ad*KۢZD(JJ}|;QȞ]6YgJFMUءW<ކc ݍb 0zm~/p]Ȋ_zi0a*&Gn|\UmxeIdуW G4/٫ȲO.T3Ӊf[ ?_eb.]!r3W'stߡW Ϻ@^^@T1!J=rbU~x)8M|+Q'镧F,!{8712[.('u~pҗ|ͼY^o/Z?˚ sjS ve(A"yl3D-F :k|Fߣ>]0f˪HR} MvLĽ gǺ*6EZ(=5;Y%mM=5m)NNТJ& s(w®CO_vֱS2#ǬiPL>l~@yqĬhTfouiJ|I!PvjΌi>@POmrg^\4(`m41|C5HPX-^&%1r%oDd``at&;೑:OȣHd,e g0mfჴM8b+su{kMz8b^I]w9hpFCwt;` ,Zև_ߊ s{|ҫL% 3oM?WBP2%"bs4Kx䂤淣?OQn$tw?|B0n@D$sSѭ&jߺ-dhҚϥhHqd2 nr@ ؝+^cX HV/#{|`j"TQ{%Сz2y5+{ dT/ >qOA{߯T F:2u D-PQ&ZKhȦRx$Ez՟GV%*H7cӘ&>HX'8eꁞR+P0[u},jX1Oݘy_))Ov$fq&L ^[۲-bŇ԰f R M:?. hI͡U]Nکa/"-[pxEsU`$TrfVÆ$X/|m`X}Kydmii&șw2vK`Bt:ɭ;X?/»BujBί>{I%ac+mH&jC17)/&.OYnМ}9K~g,Fw2nlbce(yC#U 3a%Rj\b-/iVuN nHR'8i4Fmb: Q3w-x ܹ4,su+Lc}2a C>C QhߩMq 6u: })UH賔r/f*bt`%gFbZoHf判}uFb%$2G'ldds›i*z iJKt@r:JG P[`7 g\ s?b]2rpOCA7EhPDN0z:!*Z(S`;?кܛi+(Pm(:% Ap_m揅1KpD@/Ѡ.ŵYcF|r jXFdF2OSB STx!hEGQٽS V+p,G9.ԇ9+1JytrWMHp3>#mJy߀qE{ac#ΈCCVJ<ۋ&v~e>h5@bI#gêx֙ȃHpe/6 Mvv7#*or\h6+]3BǾHmm?'Ė 1V?Br!A<؎>LP.n( Z&]Jx3LH@ u 7?$v` ԃL6=gմtC*´=Q1eēҦmk\` 6ٶjwEfhR h3=u& @zz Y(ax=`%1'$RrPi`a,qNl[D~iCd/bQ}C,vtĞ:?QVS:Lj>|c0IM?fcW} J5I2ԢIԁ7MW"&SzeG8 (P8 }Y{'~rQ{ '́n9|_,Gs!-X:eXfBmU1"x?&g_l[{QXG-8o~wnà l; tb^{Ԍ.ӆa8K6mKxhGl҉0hk >auՏޫ|+R/XՈ}*"wԎ8v"YuMuz!L|dhY}Y|lvz2`EXՍ?#a*NЙL.]\}y@ ~,##GJJ{#{Bd._3+rCԒ }|ppYt6ŀkڐO hai;H -P9}h ۉ]| ֲi`c=W4lԆ Y+(nVGb0{g]i\W?;^iy9ܦPi} [hӁ VMmmu)1Oi#؂7*\@gŴ49uJ#><٢AcB Ic`f&*ݫ>2o8Z T @>WE;C315:GC1&*V`C $+ 7.y 2otPᔼՋD۽T<]=.A䮺F>1Z>Hr[lǨbTI :  jo<|aQQ_e 81zN:pՔOcM%gz?7,JDr|ֈ[.+FC؂l.݄ꈡv0PRdOlDOTY/~YYVhz1txdd8w^vESeˇLk&8zZ1#u$g(P%Q  &XL+QޓvyJC?-b ݝ13E[oS_ߛh6; oy\líU:s?ElakLpmCˣ P"sC11k|nv.D oh"&wmt8)`2U3lTOwcJ~'"OEz?G))*B ]bn3<Qז4Z0wEs8UQׂ쇩 jB;@-`DVЩN4$%"G6\:ln+3B3[lC謞G#60TT6R [qŗQz; zyxzfyd2YukxA^.QS:[OWFfk*n({T`qnEtOхőQ]*鲼u/[G` w'.C)8֚ %M] ˾r+ݙ:)Ј >GUf.Nu"R:5?omEϲ$#Tx͜[ -{3hęnf%6b$!iÇd"{˅!%͵k10r#Pe.) .G =78h#_vG\۬3W9glWl kK+qTh$x-xp5J*G;?Ғo%_)=qB4v7s hM(w q:UK:v%v,3e*B5O6*F?a(2mdO۴Y䝆;[R[?DDWpv>T̃@2.gRdI܂zb!!@•q2>=lb+mzӾHMvq<S c.ߵ~11111}5!;"obl!ЇDvn1n:zY.r{GG9`gQ`9 貓J}тd;W^ DJ"*O>ݞ~D=YJ)*i$_%HeGn-j=]ߑ{׆U?YswF(?cF!O᝛o4j|W'C^ό*@xW8CeSU$MO/$nmVAl2qbkpG" 5zzrɷ \3x͸sfE}T֒B*"QŦNVObk9=#-eH=~-Vg%TC\EڿAhDFS#g JK*2m_<+3Y{!yiD3ԁ@&"[uz;`H]Tss,wCd hHŠPY]8",hFQ꧘z#ѽgY;87ybRuw d*G瘠n+ ]t%%*(77x"+q:l.Shc"isՇ ^X5z­@o\\$-[Y}"Cӣqg30.9cA^Ԥ*XbD)B+)ddenwBHZz}:dXL{ ;pKp `$;ϲ jedH6B1;1umT͘4#S:g[q(6A%hk6%t9{ b(28х拞jM)PpFb _ d9q-_Vyy$\ZOk۷ۅ#:6'EkNݚ{UW:Xl"2/3' 1{ eXD.\Y]# K~"-$陱V|U.=0 tkFX mJRվi޾ DӋE۳xDKQHuO> :ÁiК-6[LAP[+dZ/U;ln Ey܅_@EE՘ҋ)dW:OjԔSj6h /=0:?}qϽ.$#&UEOOGH9s<6 ݷdhpnK[3%MkF0W eвߕmФ4iO 3(PlWVvwY`[{jl(el_]=Qϧ6? 儙[뇹b[:pc*>jp7hS_HwI>#aϴ+$PvY1K D(8M`1ULNDdH3E<%29#@qMtϕKjԬRcw[Se,cbOOѲE)bnKࡎnv!& cXg\lX@R!J=i7!AxT1NX ==pxqM`U֢kXN%gзL(]&ݖI KwlJ"5Jf^hMXָW29o= N˓ LĶ.ԼL}XdCuj Mx juvC8kPCB-_ॐ+V5 ltVQɾbu*oL=E2KB"k c)jY3NQѲWLJsH0SCAQtB$9CE֜nB.KD`trC /broFS=Dw{`&|}*臋eC@GJs38_UTJ{zA̸*od@ԗ/ijC#%ϻ4od4jE1 ĥU I#VdĀ.y745|h %JCC&P7\Y1 cIdydJT{縫h\MNzM7eZ*m.#(nO|g훢SeuWJfDu*CStNh~Q.Afֈ~m5(^aΈ͆cu+HԠ "|yus$/{!]cCWXf~cRzH%Dp-"c$3s)wZ߷l*/':bh~^KesSӺ#nx)t6B-G֥/I|o>3hēfU$RD$FT-c9bVm 不yKu&;R~]ZpYИӇDzjcpDdӵK+L G`hP}ɹm+q7ċ<ґ 0%}yiT:-D/$>I &g2r%G! 4Q3mCI$͙U\=,8+7]u?LVj.@S{u2ZɄM~N8ޢ=US5Ȳ: GEqx} =\Cf e"o0ݚ+F! @7%8k/2[%H苊|Dj:Q[7$a'`V扈C0ɫ+YlM4#A?{Dv6%rg6~#H}ycoR:g˪|T^?)- "֢ZpAnc=nxEoF4# Gtu[P]ۍ5Ndrk& Hjh(~euȏC1'BNtrݢ $ WQ#2 'ܬ"GY݁'x?,,f|8GO?jym&79f%VN\xmQFU @ˏ)U`\F.TR1ЗV3 i͘07(=y1<( >;yg\(1P`u$?0i&Q2quŇެqiEbVhBl=g#aZ sn} $&|$0a zJ7n;5GM{/kj5r{ڇe;xryWDj6IKbui-bQed#q~ :$/ig"U:Sl DL㔦1Aq3kxK61GM@6P ~qJ`S˾R\Y*HAIGT6rj8k  y|d2, a]t&`%EYLy*#>+x"(L~u%9~s!h6Ip6%i> (Κ{_ϯJV:l5gLjxO0F*8_4E2/%cՍ'[ nK@0a}?䰂 wқOf͞B(FU:*"5Xѱ=s) Elh6R?쥲J@IjKSr(=QඊU`cptzCt~[z|{-""kO 'wËw񀊇QR2VY0Fvsx5kxԱo ,pKw$jI0Vlm3tQSi!*18w:EvRUnw ~٣)@F1TXHZz]ʬuw͏oE؆Z|.l}:5.l:aA*ySþϝ ӱ$h[-A{!*~`%xTgoQlonz #T&,&:/Jx̶K-3P**9lz?4;`کpQ^"tm1YdxuJ- Pzjm\UH)[bٴo$*G$ӃB3FL@R!Zإ6.tNoʯq."F^Cn[WK Ȧ?>X'_kܣh m{K^cS })jne( ~| 3"d[;apxjb>]]~OʑhB;sBN+ n | \NXkswMiu"`2z@Uqg0R-0T7S #5|@'d7m\z[^bYJNlȎ:߆LKnҬ)Si,3,_9zg&eU02P~9B̰>dD[@כS|YQ$ƉBz :nVoQ^^1hsTVo+ٓ8L=z3jGGg2oj72ȶA~?yUJ]PWu%9f( EW伂e醗'5{gQ_i/PWI?4jf0DK1PK5ʹt+,E T<:?\lTQy푯e)ʁ,3xR3¶ њ umk@jX:5Uҭ\yhBUjoK3N7YԘS,C?Î=+Aw`DOԕU0j~?5xSUEejߩZS@oyOt/̼<0PZ>B6śD8NJ#ǵrw s?]͆S%7ThtJJ(TC?cYx?>*CZ_XOL {!圩?B oR wɐn.Ӏ+Ā-@7&[@CUjA~IlxA"u0Ú>;i'pit/g:? #U]@߅{(Xbc@1Io2G(G8d#©.2IKwЉoTgO\= q5Dضʈ;Y ̿8F ;HP0˜7;M?xq~`.z+JPw&PJYjVu`X7Ӿ( yoMa]C:!!^hp( `렽8<9 pw"R<,JˬRcjn6t@`GN o@wsZV]9?v4Z! : ʰ1/;7F\||:\3q;"hB\Ux 8㋀ngGP̮_+DI"F}kvypmwu;=FpC@abuAe*_/4,SH|mi;V6$7Ѯ\!{&9auL>7)IzqnW_qv 7Yu{ ҝ|M_oN3Of\i 'k!9B:pcLOfԞo&<>2v8;% c3ks6:¢{gj ɄrNs~[> @mڪf@EIX^PO@@_ZZƁ9P9"*d,!"0Pybs+h)R?LO5`9\IXфuq`< %9:LyUu^z}hrtv 'H[Tdv$͍N.NZKuc) 9@7[1b|YGRr, O"^LxPkoAۗyَ:KO QhД iX'~tgicQ+{>~Oܻ[drI ӽ$>8= HT7Xi&zySUAxc<͵b,0kOH:0ݸn$2X^i4?>]@ND|PS"n'CԸE0I,7If oV8xPZ 84Xrۋ;ywu*fia<>Eja`~ 5O-(^G)oA 5;QrсP q#ORjkic L9z^V_TNܩN5o?0~&^Xw8l2ő~(L[tܡ<\ފ3kǂwp꛱9rBkV&qzLQwi%UiӢHC\'Gx^}hWz^8}Hا"Dk>.ꎙ䂼KXu7 ݞϒn*~5\4MwOo۷պX =RR48)OL ?2~pxn ;@ $][y *dKiҏ#4d(N? 9 ȣEvxMDr|oڡqNաCsܞz?glԸǕ Jc>kR9Wf!#p{̍]#,Nlnշ/ 8v%0=SC[Xg>t)}Wxu@gY\$ V8&}kE`ʰx_mh`iV|B"ž|ZaR3(:f_ǚ w\qis om#/׌yZEvdvquͶ^yyi p\y(%y-ª: 4@C(Oe+ (Tjlx5i 8f M]of7f#&sI9,_lCm77`D26ocBR:(E(EnCOyGaƝ;?TItBӠxE+gfA5DfMEW ޤu~\kez0Q]NL@m&6\,!Ȩ.QjbYK$8x+2bqOrQ/O})-߻Mf׼^YY&Yo1Iz4/ b:Z#kѣ1>D0qlԭ-FOvf2oJܞ$։o8Plqx) 6#α,nKNxeGTpȟ  gtKϡVSXD.*MnuCRŌz!l`?ߺB8 `"҂jtbgѴJEN>qVw<LJ'PZgĬ\<>&KV!J:Ct`BsXF/tSMf%͆n+LU:̦4YI3  K.r x>V|/wz--t<#u1$뵽W07χ-l{1&D>'5)!@Ի&8Gw2Nյ7)bw@=5?<(4NZ>{SP 94Ut$yM-)c*UoNGN&0O_zLHN`YP2:'dus|Y>W?z>݆~.'VpC߶D=m%OjE'<nCQyW*R3Od4X5fR'#]ӡ,KX,AϠCޣkdz5 n aZ5/3Crd1pcq9$?Z0yZ>,]vݝ2ւM\ɠ[[86{{ɴqW\-<_O sϵ5^Ў.aWw{kIZ%,mR}d\(M"y FL2i/@:@!z8Aާk t9{TO*|?&AɎt7-EkJ5IN rfH>o<.8.IY֜\zGa=7tl@#M lT{r&ґIEdq`%+m'\ !zϯK\ cM17jlZyє®mZ|{C q9+€fdaf@^#C_yIYW9{q+=$hM׹yUZԖF~v>ۤy~M+ҴlѝȡTwJir b˲< rF,˦:ȭekS* eAc/N\tP@۪OS&_1X-I8wK2S>i׊*jwr*di#.|2@idw3ٍl׾ƒx&{iuPw 2QD%%H5׷}(bLq>+B0le:4h\:bv[RW(C n;'huY\P~DP]|yGn&ұ=4Zʈ6AՇ,`m0]EYf;re#,JE)ZJL也Rh8/S/xWm/LQr͆5~| L V2԰*J ڱ|~}D%Vʬ(@Pq͡8<S`+  -{FxiM> %qmTݟFm{=:>#E ahkO)( Qm ^!K} 56*O"a `Mysv:z&ҽ~m{jJu?H+i!Qzb| rߌm>npN4U;ÿ7/Eu黟O@Uk:pGhSr\H͓Ak"%֤1I:ʯ`-h)ҴKx_eϱ7YB GD kr!jȐXBPmOq>2d ±Sd1llQDOPiھwKNiM89kDdSSFX;3Ǹr#iK08F˨iqEV2jr'(A6S"RF7}XA_MY\8R` 1gk'bK܌Q2 )ݢk{<>,s|>~xeu_n Hv52 1;F[$bۯVgy.OЙȕ.H6 ,J㨤ԤΝmI r1; {r|8TuG5Di s-ԩqYзkЇEEp+{B6rCYf3$t2N [::8jca^$7E]6T!OY>#Ĵ$ F a^8g4Qny')RҳweoeKgd>k|w)6` QI!Y}Or,ۇi/J C m&v* 6]zbjk,)_fWTt껓~t^,a\R*on+b@4%U~qutPy< nH}LOKSZ4'X*+!ʃC5ys]V<9xGsX|;wT!ƶ~Wi]b1 :qS^6LCex7.9v>,Jx,m#Xӥ>(仲t/O5㬭?|, SF v{埪οR8k%Bw8 iDgnG196%<7*1S>K%N{][4O0;Q#ZܕE*^654j׼LImΞ2 3GUV  x3"x#!5GrH,mAktV O.y:yO/{WC+7@kȆ g4*#%4q\ھo:Grw]|g1ElW|~RR"%>3] PӰٍb4yUMh)ԦpF#DRSW\"SSҡP#dPC˳{mKiMvlc&R-Ybjsl&HʴV SO捡?JRT87J6g%!}:iKԻ /zD^"yNq1yҀlҚ)?Eˣ 2S֠R"Pj|)Jy^hGw𔫧*wBP.Z(>-;MJT-3`D/:*";0cϕ6ʆ71?>1ٌn,+sKa<4I6s$i4~J .s~=+"!X㞻,9n5#-4cpH 6l߉o~ 6j%h&u$#wepk2}̕q)Ew8]ϑM!LU-[$ F>I7,` UiH"v!'0SzVt򑋈!6hɫ,hNY~G_v\|WrW*pXOT.*P|+AMε6"΁tM8Q3*:.V$+Cޢn{5_k4 n|JzkI$O%z|i|M_? Fez. wH|^$%v$\JGuZM9*$K;;~:lSj[UN Gsǭڒ>.&9R`H`ka(zMU ǧG\6MdXz˻c@]=󦦒7dA]vN^D"PpJ2ΝsK1b. X= ԏ^X:z#zu~tM11S`8^0,c&C*Ɔ! ]DqOm$9Acځx|h,4b.FKŽ}: jm UC>r(Z~Y#%\=zB5КRIUg{67ѡj\2} Džw,ԣBntTFk$Z}3Jfͯ ,{q кdC-_:90cVe~q} 76Vfq+ח$ʵÎؘ nȫ+lwtSD.cp{˅9cdvzȗ)G זJ8f#U!˧q~ c =8{IIdn|Y 15ɶ١X<}g[p߇WDQ)k8>}TƸNL1f֝bG\uť,ǃMv(vu0׊I@[^$x(DH=b^BR&_-{Hxi5N0E%i21av"d${#V e睦sqӰ 5/%V~{l;%br^k'YL0jNe83ÁeV**aX4Ri*%yekrC U[Cy/AnoځPfkTԣ#e6ߍncVdFFuЕV[,/4DNȼPW51Z" l8u˄6O2s:5,obvR <ʽs44ٸ0uD .읷Y&A$`䔟 hb7F}+%4l[:(ӏ<8-ۖYO(! yed Q= =!Jg'l%Q%x|D[A7JS1ttͨbc$ytőYp#[Ksl|UclQb(Sb0q){]tdß҅TTngN}7~t(=["R_h>$VCnFf &p nApxGZzڲ%7 ;k)e)sB"&hU|p MB 0x^ȈBvf Bu<{ʹ2'Dj|-⃯Aʂު@Sy]NtҸe,k0ݎϽ q`4Pf)!J񇍤3_t{ѷ7T5C8XuEײ܆qU]<ف:8\fXܧNZdZ<;e ʿ륟@a+[%ZMzt)ɐJYB,.wpDϦM %@vWdq>Ԕ9b2M=b[tlN=ʮx3q;= E0is,mm<^%n|7^?h=(˩aU6VnΑ[Ҙ)8GC^dR\>J1"JtK6H1"Mė\`KiE]a!dxr.p->*IEU{އgjBi7I+-yz`(ε!äF^wZHkz8'ת9X70.{fqsz2_E,.Xy, kₒ!)^mD`i}nDupE>+fµ8ggӌ}LֱB.  & QJJn2 ϒ+ ^Ut7WCNES;6*""i]\ig2>IF ُUhVkS95^wyw"x3+9{v>.{Woo~`\ޗ"e,聙?h0PSjak*4˻5@nCFPI`)1v|rZ.;xbv^Nꢊ5[1, zGStmG#Q tГcg$VQ0_siUO}Pfsr+E DQlw<V ıܱ.Hl_jUEۢe fY1ߩG|2:&Q lXgn9πivug͹z@.m <V_fwʷxo$.Nڭ,Ub8*V3l\ΉrdՃ5Pۤǣײp=oiδE?~f*)[JjX8ûm ߕI`-?hk^teo"؝J9bB awf xfU5]2/<ӏ 5Sm- & ZIΝQ:=nNZ[+~jV-KATd:&b/3EV 6do:)!gVH6>e4DP( {s%hp 'yk N>6m^1JlR* nL]$0@W6rr- `¹>[;{9^YhJϓ^d~G>#bGR3 $e/-EWJ#x̑R {c}^,37D*\ɾ)GWTU) xL9:YUo/])5s5v>ZLb Fr9H|09V?PFDpf j>sGf0zPH4]e)8ZUפ3 blȅ;^kw72qo.V`w} ek̶52c}O#3.N!--P)[:@nH%t3=-bZxK'\ 1%2,jGX?4h0uEhdx&qsn&F,[cd$MmffIodpۍ EH$Cɿ*ǑZt]m 3yK¹M#X㇌Z5OP? 4 +5}[E U`|7{ERn gQQM?-Ra 1| j/rp!qXe(yNSc7ojV*rsvI=@U\&̢YP]̞[sMoC#1q3+RdۢlDNLMogU~O J+Ю=,.Ŕ7(l/(DiTE`puyqRm aw"n(0&ehq>./2XNjA OTʐ#v -q 7p".%|T]!9: }EǍЃ˕7B gin "YW/=RdafcX(E>G/(i [Zi?KyJVr#,no4s CPl(d@2W(C&8H_sX%gE xn{J3n=b @)9 ql$F'><zjN9>NT%{rhv-RC0'U՘x_%8\GMW$m?G.ŘPXS_'ty|[WǥiK6Lu;%If([4lmC hV_J_>kڹӴ[h-[qbS} !2OcmxM n^!drKr>=8CYHÚ:e5.IƄ6>4)Կ(1c_|0y0FuLWѪ}n2s,Lo,IоlV]jZ|jd CMLwE,!N{C':(`m6%;_X0' F Li|tX2(ěd5)8?`^`QtwLk !7FݜZJkW"ŖZƠ`k˃* ;x-k6joӁ! yrDT98hvI.*¨,aE<-2o)e~Q_ij"]oZd9;H.i}!$Q[G8'e3sqc€PJk5ΡJ!Ȉ ?vFIg$n++4-H<ke{DೊDX^z%D_5p:Q]EshH z&X!K"yY}W0\]#!f<3рC3Zo${` t8%[tC|]j |cQ={ͅ9nvn]D[5q逜  YoQ%RoƊG$_ڤ'z,W$<&[P6ጇQ\qAP5LDSc?b26Ān&HN+o,Y; )g+xP6k2먚e`*XM3k R8ChM7u86Qk6$Y1x3_3Y"+ ;~\/t)- G}wHdL'JHՕpp:X;ѴSC#FV1*wq;@xGՠ೾;2-sb駅Yu,cy{#Eab}ul-'$A_; 3KSR1g,W &y㉒xwbΛуTȽ8rwe7Wv=^^:^R)l:v\?`ħ `$scYjy@w4%qvPp*Eej;Ǟ.>``"Z`pDRXK _@lֹ;vNfp1vފrS} A<"U>SǑm}%P^2òX%z%+r9|آwn.`Hƒ" s&K{vckGU4}(΋hͳ!") xrS!UI"MbRi-nHn0 `&?T9wq B2pR(K,L-PIgi>t:',=$jiU* l('^Hr6zN %zs ?]1Ce#O6Lq%AaRߋGkEO@#kR\6.\7F2t\)HvDq~vI[.F jեV 3+'sTկ1PZjg3 ݊Ͽ$>aJq dOJt^_8DPP|g}_;$CI)j妟eu#`[t@\)bGp E8| x@\B}CP5 YL^NH ciVр[Kuc kq*ꖓ wawO Xap2C[O#jxe3LlhR)l}ڱpJyS3(WLА-͋7p$``ڣ4]xvb 6^oMAC }6S/S5dHo~,A= Â߮?ERB#&^"|xH gqQ94a#p~jQLj2]PӜ)o\BJ;uæhLޓ$$<8O@R|zxG8z<?[}I){1y#J_/ $b7FQFt6kw>>֠lN] V&Ojk;>cR6s_ 1|cn}d0ި0L:ǒFmSBu89 ƈ)) >CNq37yB̈q Eq-cW"S'M^t`*[Fwa!uQ7`20Ӊ,6zp<ǟ3|[v&6[]N}{~KWیgw\w|i<],[I.dB@jp0lp2J^|㌈_ q-ќMl+Nlx09Qv7tڄ6pW̱ᗼY󻲳AbE4"guj֏pEkMmO=uho΂?|%K;n g0>sJK331zѿ1Fk!N$Ql~}NVed´DŽoN%t ͖7P&/+Z&u=TzBu 2zr{[$\cE.Kۘ3ڠDœS KS{&[[l{+87x/s3@(LjnϪ(6t& >9K Rw[JZ)5 Kƈ8Iӵ%3dzk|ZkLm뺵-. Y1R;.Ox-nrPІ.-ckMXasa%}NrZe C`/KFtsZ_sh>%>Qu?EVřUN}^'@\q%Cm&^!el05@.2 b0L yBٖ,{qoSR dƷ|#>;-Nԇ! l.90ga4chk,ʚCo0\ W02OKt~ @ OV;XȩʬOj&C񺒜yr>ijHA6d\PK6C}j:>NbU_bu@h!yS9G#R> VdP7 mOUђ6~$lw1_ǔ <Qͷ{L(r#|e(*A11&ݛFLhW aZ9[>C>#~.[zKr(h"1u>A@L9I@і`;|"OungUq{`?(g3)#i 00gP@jʯ)h3?ףUm s3$y ~hO B/k6fmP4\G^~b9' u֤ݰp꣸t1gMB  1+GZV.#PgaRgyi;k5eӰDL, y4o<U|wO +6ll7#,N;yGlM;wźBqH/,"-lwFzO'Q lrˎN{E k^ݥk;fr!>Vde/{c O8U&-ڌW 3K-2߹:迫'?n ~Mk9I(LK4 ݏ^JR?,0hO¤ەIu{O x3o`5Ɉd{ C"(kj5wDȶ/E9UauƄPײFyꝡ`hC/o6cF_m5͘L~H@>]2M|-3 YDKs\] VrO+H}䇶d: :C |]XZ)Me?<סr~vu]VF(׭/B8ä_ |RHfF(K>NSjD}KX!8 2R/k@εu.'Jބuy6GJeZ^_}?cfNje"dtdkY22 856$˯a(ًQ14eK&؅pGg}J5_GPЛ*O 4ڞ5 S ̺#y{ɝʘ(ו/A8bƧ4rn/\pQ֘\6?J$\=!Vh//ZgNyVL}kFFE© ^u4~JaKV7(Faxq;j>9qsq@H5{d/ŌG_1"zTsQTKmfBЂBu[R*@xA;Ȳ0vzҽQ&zm <.^7Glf+:.&MztT8˱~] tKcm,9eXZiG<"8,}f2rQcvaTW,#w+LRXbZm݁qd.x;TxO335S 톨kh9q UFVa/ޗi lk:+H0Ð[\aI9ȉWyQVlPkOt7քɖ_0vc/HM?*)'X":#Р>u^YsƤsVi|61"ġB!c[0joiօ*PPX4lFZڈRY=5%+l-ĸ4tDy`)1*h9dT?)n'DhQk*`#iSD舐h B -/;͋ll,fmZUuP#1dCvpg城ݯyB-)Cc#op֫VDu#6jᩎ"of,Cfzv </F  ?A& fqKn8I?R%n: ҿM˅DOE suKtG>,ˆe2Bfvdž޲rPiO@܂w_ҋ q0c5 B|J=^WA32OrdjF <׃u:MdV DZqڇ\H~dPۭBk! ֢/yAR` ܁~Ȟ\/w"<Bq"t/#MrZ<Tʚ]e brs޳9#/ ZKy )'E4 Esٚ@wTZ/1A xurv=uPɨ8֝WDJHINu1P QYSh(?rU̼~B<)$nƛ jlR%@y{qAM/l$X"p\ IOEAr)pA<ǗI86ESqj_xq?O6ֱCD~BT%}  *8w OoS.d-[^M?;eX= h\&xhrI_"`("/5(jvu >ؤ(Li?^(SM51߁0 w oHf&uF+0̰rٚ/J''lz8g29-JCt@.~ ti@&V㶭.iZfj"*"_4cD~IP\D( zY)Dkpx<^* _s3Yq5`&+y.@2Q VmAb:['X\M/< d#ܯNQmR+Y@Ʈ7WE0hHw#]7V⣭T% pD6J\c'1z&P!aQѦCgCRB2d {hx BYG4/ x,p^g>:!ܥZeߎu֥eULܣm0W7Ed ~Ns2qKw(CUJXO050g{CP<{]"cw%OhZݗrGE.Qhɽs,IҶ/[ I`l. 6Ug.B&夅GEf.uw( "h$qG<17BeßXx7#$I4sn׈IՐ|"ovv; :7sz!fƺ6:=OD'14z{w\X .;<GEW0TAΡ*dpҾSK|X00۽&"1/ff{8KV|JhF }BoƎKӰ6;\hQeMh=/@Xj~+51JWN$65Ҁ\9;9F4͌o45bu6 l< &gd"frKr@|jL5Q7֮N5 qHuxmMIjdPZYU$Ov+ _׼\Ϩn- PZw'a du"sEh"R\*ba&u2^ȶ0yv&<{ו_3kc.B5mЎHcQ ծߺ-AR*ɟ*μ(]XhlL_Z%x'ђiNGx8`Ǘ6NQ׆VמCɟ~]y S?$<õ!-٪ָ6{U܌|<E>ݾВ{}A /[틂PyؼM,s Q yEBX47#Q R+/P}y7RuI)^x dռYEr2٩5|j׊~ 0Z)L]tL"N3F.kܭ5I(狡=!ݝ(eX(TO"]kwHJB8de- \-euY2gj 꺣+O+)qp i<"nlvU~~V|C R x"VwLwn"M`V`Pj C3-]uG2Zۓ.voS|l 3 v` <9Gy͹$E%s}7 R ?|҂?ĔIG#"9ĴOZA .ktա˅ە.AA_#d)!EN'5y,rShԀzbL{em|߼*ܽ+i߽DE٧'0 jwI]*M)^` zя[seDQ(9ݳR]g`+,T7]@g9vFr 6vGD24%1HL p5w, ϪS*OS FHV-A8l&qOa0B0Kn٢"2Qw= Ds13>be}:5;Gbh:gL#;ݢ|y1 Oj{IiB7ս4}iz`))Aq D5˗-7SY+J}(o`EeI&ÙвR` ^[Ɩިv)Y{ |GmZt@6H H܎Ojp D7"f BDѦu'CgD2:n~⸚OBƔ#a6,v/zέ{DJHȿ`i!C(簥cm>ɜcW\(Q^^y/d G흤~Qn18FE b *ڎPR}a3$Ȉ#LڹU1/OrNsS8OJ^C,'@P%E27sA=;VV|)y7]#=u0A";u*G%WmyqwCʉǯxvhxyq;-;Jy1R*\޴b"dhQ?ѕ=hnJ.wΜLۈ.Gk9~R haV@T'k4xlSijj II;1CA8 А8V>bPY7e@gYbKJ*K >KOOu#ߐHU; s7ʼnG=goI 6d|gD?\aY?%SoO"e]b:'\K<Q:Y6aRE0/ n~sj)lF*U`ߒ3x2 $2C-By[ZK&`7(gsǥ YޛfhTۋQE!%zj\nE'`^V;"!sݺjwp*ux9uDZ"$Z幂(G;D 2ԫrStO݆N 4k5&kG~|OSc2=TU=﷓ Hv"9&0/ l :1Ǯ/C<5x{2o# S8`Sd%״9:oɴ?gz"`fF-HTN"yF TYg +či\p1nX,*S@)b= Oj:x-..o6SΗ>Cg9Ju}݀39;TzRTDj'3 _6^[35 pg<,"Gm#,;$2g0lNڛ^i0_hٸښ)N࣒qs)]03*M6ct@Vz#,$u!O s a y @Di6#is-b, Nfero4gw&e@ m'U59 x'r8 *hg̮Pd ;DKUabHqcNN2_*bԑp[ 8܂c4u񏙵kͩ?t/*ӷ)E5i%m0nR=ŗ}t*-OIJ̉1Fa9|{> eF*!4tezĴ9@B6sv8Ɖ)hy!Qm ?ePE]̖2Bk.o cox`yc` jtKBf>c(X+v84}Fjq%*%`[J3>OZs,[hL<@7'eWE8epjS;E,mQs<4)9 r &akȠ8<^9qK訵R? _&4^7ń~b'uYWp۩:vFE'Q+In4y R>~N[֎0Mc{ǩXwF2Y?4KaKI]Up=[ KP)vδ_=& 79EY at} ,%vuRY$7%VǢЗ5ej#}F c^gAj8gt}cLbY{^ƈ]ko4RF85G$`OAUd'[9 d!E@6=UiclgF076-"؜,4kF;:G +i)UQӱM ;osk"rggp"ʫ:>ߙfzIy;3; )gP<)4ps:\PnZF 1&^/R8 A+(_$ۃ&ՙHt,{BwaF2 I{ҾԳ$ $t#.8PJTV,vhw-qG]? 4R?[DB%^hb n'pӔP]]Z`uyQbXa)I\c\*IGmm# VNܺ!CKVKVn KrޘȎ.ƭ H?ՅrD#9ۅ*;kX3W] 8m_zjdr`o)6R|pO1:n[ ZۂUNSHrߎL:f ltd^ٲy#y6ʰdf5v>bb(֘?ejU5&I>!4S׃(LmW919XGOM%:)G.{ 4C88d"7oj?Rb<)e#I#O.Bۖqd#soI vݱi¶] )/ Z:K,o2h5p-HASEv^| \'ńm I^T$( [фy%DŽzB+DKඔȟͣf޲:Hֹ]u ' UЌqT&}h$s{e㣔P %urB9q(x @uZZkNP͜ %Ė(I'#'f];8}Iqi[l !E?; Fhu@ZPDQR8n[%ߔSg2i<8ő\aiD{?C}Crnou2efFpX3S/6X߷?_3Jf#f4NMQ~Y{~݈cZY߻Eݵ^ΧO( PݳTgz> M7c-蝹GmD(/ذ lUm+^z'̘go>ɺ+v~D+ٕGVMdbUv&a *}yc_}Cݜ^J4cP6Ű12tZJD6PHg*dW:mvzfລUMH˚OEa";pO a@sO H\lRx x[H^gw&b)'Is*7 {Z GؔQWgƷJ"㉫1[pz۱cY{FJX pz)Ab'?6A6Ь6ħSy'̎g3C cDzsiCAm-{v `u.W|imC*[6%&/M"`4 F3;Es I1,5H*_pY% fi,5zljQXZrUaCl mB~0V>{z/)wO5>TlBԤ-^hIu){?U)8WbuzœBgS"ډ.O3V(z\D˕l*b1O>gpd}-8=Zhf# DŹPJ$ dKűRSI/>xwbܗRys|[/7AS>0 ]V|Hr2AWLܔ̗E@KQ-* ҭwt>7"pǯX|FgHOw oB@ALy e 5B>xE$UE6l li /ED p u~w#tb6@yA)@`^ Ahs:xݾqy}CeW`|S%[;؋0׀h;zymZڳ_}sd_Hm6WJ{hƺO-6T+VvL{T=Dͤ*`Y]Զ&!6n +XX@\r# fxYQ\FXQˑxٽ+. <(M1;<80jr7Tu^/tKPS"2ʤLz({64{$f6e v^pVD5T.Si񰧦dm|5n92Y"ދܟ=6Đ8?Zq)pZas/'HSb_h!mAXg2 &֍?]V Ke(tuJE68Em l o]7Z5 ge|ŒuMu}\O|_P~MQ>N}E|<ݢ&'mg Ȓd IԁgNwEFJ= CJľfaVۚ3}V~2R\ꥒ˼CɩE끲ΰlJw$'aE YqRP~)#%88F1(0GD+yFcGڠ7+dD9 vU) ޟKE&f54+:4|[jJ]<"d2sP{y fZ0@+T#']3˺`6|eo*`D}='ʢ79 M y .|mꆺ>{VyH2Ap GX|q"1E|GyIaHfg)A\P "T9?;֝ST{xG at}I}NAS7g%spLu$>YS3,\5r;zcL˪dq%4IrZi&ܻH61dzMl5D R3xvLGs)a*MHuYB=,_^ջ$ (*F*wSyhtLqnf(}#yQo(?*>@lzo ofBM{ZX^?J'RMF@K(!EWN~a1'ҵI`ٝ.1HoZD_hO$.?sGҺ'?>կ7N?K;9KrVƏڳ~J9]nv_4ߤbH!: 'P%#Y*1c΀%0Gv;6?ݓ0C"Tr/ήn̹jiA0:z: +VDOGb,\3s{4t5ǺƘlk1X]@(#Ï\W핫 Vs/D{OဥԴ"9t㊻VA XtVr7&&,GZw/[-'ݔ\"gKxO ފW G ?W53&]irpL{x0KVҦle74`,KѿYuïʈtǺF2Y6s s2Qh#4xz8 g@!H["܀^PCD!4|(t;$&?Dh10MG]чUqsO +ܜbJbHeZQS9ӟYRoXW&&{ĄQP"ȃѣi_뢥2G{K+ zpf?VrJ ľ~,8v^﷎/l.2_DwmЏK?KޥΪ|e (0Y"<6|\q`(ߧ.@9BDdCjdPVYwDmnjG@ 0 0sڼjT;"Xgp-^c64AL\F$ &2# - ӣY  2_|WyW 7z~qKCy(s Ab㈃cI DF xg@_#8ٽ-iyXO >E7لO%s2`+<ցfk=0F^& >+DY0d/Obq$5J(vc|䳮!]Y̷ h@YHtYL2JIs0F=N2,V,Z$WZ/v byohQbSenRg+Q00`V.d0.ńgSF}B^8;@JLQT N&|~Z/"%UjWPE9ϐ?!iwMh:2" hF \ޫ4Bab1v(ʸk-ryiGRY\jzP),fH{))) :re&VOh8|/1^e\779XrXƛb@1EO<`e|WW^B1rO=Z۸l՚7ӆ,zTtM(8l4,k3\rw1n^YcN${Ec"f1Nuq~t4H>j ܿT<ΎyHԆGU`xfSŵ+}W:X DMF\lF g}'qbwX‰֯N@-1_IEŌSc)Ɨd1 9C7ʵ(ivEzIBGRAV Vf#-OF.(Ax}X-ׄ)G˼A:uxI3c7l}˓vc]:|`tvJ8`2| m`xRu1Li|+NUWlhzVH BfF}f؋%d A.^T]qnu3&B Vt3 r{ddS9}QWsI\| %\" jˆ^UzXP|imp }KM.SsrMtr-j3>-6|<:tG7$r_wS@vYH0Ox9:>wI*J. ɰ.c_w#過Ǖg>88-UwPq4kMïmܺT&K$,ݰߴ++va.GLsעx2G.DznrG 6Ra/}j\k~`A/CI}xlQ nGFh G^V7>-A2 EΉ7pF ^k9F^{KDu'ymspqFNE)7v|?E^/y}2sKe+mAYnaIK׫=`8JLCo }2uƫ(:s.Z|kzq.\J~Kn(ߤLhf$X8}pƦCR+!߁j9W"j>e4d-VNQy:r\# G}_>yaߧra埑"9`iYf)]`M|́x4npLfPPtf=+F n?#"X"v\FWm 1V3 3mo! S|衢Q#s;z0g+]vl 4Y,COjPB3jWΤpBɽo ~/'WL $Q3#y:f Zʓ)@,d{"{$řuٳK)1̒=k"DmHjQj6pŲd5)D<~Ϗޟ {.r`DÃd;}qdhBfRή)ree*YrLld2eZ]>>)ɫQ?&iߜsl8=:0$ԹR\mt21ĉs| |fWfM_gB%A48ι%cOLiYK]^&8^ 7Vs"&MrNp2_CsT?^kH$lB`Ar_YcMw!b{%u& t~$a՝r٬?[5Gf/G =11z6<23r 8r'%^QĎϛ{z Y_g(o?GZ>=GP%e^-$1X=xxb!x;#(.,t>:0وLiSC>K)!+1w3MI1JP0+D&S\cUa<̊c72M5]L̇,ٸ7Ky5׈ش/Ur"rOG!ю|(CQ; O+ݒ/RXYf\F?~Ѩ4ufY 19smF(bW2 >8\hvkP37SxM,FosVIL(386:4JW9FT27R0v ,`N]qe=Nܠ0ʔ6}pc| Z@p|ǜPWF9A5lE5]5Ȓ"7(1f )6QeNqp--@>Ĭ Jh=gq_w8w[jCƄz*+HpNļiմ;㫟F|o|MXhfl8yC].䐹pbs(?z=Bff<CDP%:˄^C- Pŧ0fsV6-,OV'A#rnNC.R]76"a>% GM|ZyIi.uW!Z噽0C'{Vu1LJE.Dy8uHOI_b\8$ˆ nsUlݵ'CyKA )յ,ͪ¨~BW/Wbriٻm61"X7.!BNږ>$^UU khTDv=,QkX@Pn-uUXABSM `G"NB. =l(-Sɀl'i>$bT}6ȴ]FE}4%w_q]?(W?o&W`\h6bʲ*vyle.a|;\f7BL0@12U9F)w,? Cmy,)RfE}~'qym÷ʌAIʝ2CR_e)*qō%4BxCrn]049][ ܺy>#҅8b(4^ET6@z.f߇5ߗzUH{UKE{NUk6)U'L!)1bTro6¹l,'lN0rc:[^Yt0GZfM IV[XS‹TXm)Ky4j'Aя?2EpooS1Fd(7=nhd=sǯtKͼ:[Nhwf2Hp3u:¨Z}TvI xn"YMB;1(1lxiR˷#`U|R?K]Lu &E._tjwJYM2{xOѼJKxҏg|uYj7˹B2?se3"IZ h1A2ڜrM˔RF9?of`"ԯNDzlʞƑ2r/ ,q>OKj1JbNXJp*2}]hl- Jo߃rr>k;dFgb*9iUiIJRLT0sЕlRNɔ(+̸Q\%tXKl'Qj_ UR{6$Ϝ՛@_q|QJA4ZGuwVi6j0WEx􆬾ՃKts=# V (*yq߇^)oL 5jl Oֳ̟.[kSf٬YND!F_w=]5oyLq_KBKfGe ,Қ`hpGRApfƔ/Mr3ݑwuIrrM_IhpB?z$gRʩ=;RQoj+I&_"?]n⃅-ZÚi.UeA(Ư3yNw՘,,J8} Ӛ:4)Bvj.@b{|5rAπrS&[gG~˪GS" Ĥ nv?,!SF/ Ya+EV|ȡQ\*:yp}L btn˒: -$%`iRG851*,`}@0;&r[RI"vp*dEÂIYNemB8vn9qόl`dh3+4RkQק`\1xT )v٢M2"=P MԿ.ҷJ4PU$sn=.@K_ 0h ]=f+>/ӤܤSb !}[EӜ8I@XN>lk8gɪ"6V]>qfo5PmfGUDc4mF[P3/t\Ҽ֡4R4vq9L9]&X@m)7qk_ϗxVBef>(3mE" f#y NP]gWׇO$&&/) L22*AʬdZ)=I3֧tL|I]X!~Rь۠Vyw\lGMJkS%@i5N^C͑Af_)NMF‘ecgIYB7pnFXVc;%RubX1 y^zuDvRl1 4_qV]gB{Ka,͏ac Pbw/ vRZ'Ȃg ugQ,4^ 4U>%ZY )wB|Z ٮ8܋_A w6D|s;w@Bh8, lL:cȱKFR`E_$? `fpg;, g*?0UuiaȎ[k[l=fk#)^ H#06^ b*4X`L#!fOLư!AҫP (`G:T{[F~JBAAp*XfUM8ScU?ASPUe-^5)w9h3wL('7$+y nܠ O8n9 pM,2Q8㖟bu_ .8wQDBA@O&/ 05V430 $O M.vQy#fKF{/"r3g="?s~Z(;H*t$p!*' XM‘X>^ 7Y{2ɓ(¤ٟQ‫6*59_YRžvfZ?٢^2-b40'r;jg|9l[U c"j!jH+*E|NGRoTwHq%jhHdKLLtk4k5Deǐp62;5nܴMՐQ19*eZxH ?ll7&KC΀.jB}IlSm7[dy;@aB ;hnkB Z8`M[YgG꙯Dmu\F{ ƨw 8M-kL#V; ]gD1{VGR<$ HT\c+rUs(hR~wP<śeՋ9I% Buf%:aWH!ñ‰LWj |qR-L66Dd$⌆p#Rpib`}x-s]2mn %-{i2&i B` glKI2koE<^5ke-8Wg} "u)y')qpoU/͕B%sIťb\`B O%P[47>2 5]_ܚLNfaYs<6ǐ縡rЎ}eN[zbD`̭"1gYNfB(Zt uagŽՋNH6#X{$!L4H1 >D`+_x υV~&x (0 3u铙qDpً{O}CJ%T+LnlW8 ^K$/\hHKw;* I, KT0)ڲA@dl`fM;Wd$clœ?sޖ6̽u3A{OBH*KK7ՇۄIu{sA V{k dJ(g2*Sl9S! o|ew?VJu:#;j?/\xp=ne2y- |u>h,PM`FlB6PM&NZ~UzY}s䀰n_.γ)wsmc=\p^^EJWSD4]' WJE-lU/+Z \ͽ>6@xl#jԻjDG1,s<߲O\Sedo ?0w+I%HQ{5iN }:*7FEjO?{e=^o+F FBbgPE¤.VٔOabK{(K  $)!< 2:9}qNq(NYݳi3o Qce\D ̕^<74>DGZ\<؜Gk$Ru0vȋI*SP7e`sSg5+=2D39~I,)0kv<2J<͕SWMW&6x%9+bc})U:\~@s!$Fe^?N橊;ocXj dPDepU)mL9{*$y]:S&\peHYjT>'݌VMH JhA35m5мЃHK## l9t>Ю/ ""<:޳CBx̲ M|:rxA|wA:{BG6jv;mTBVKk_!" O"t&<O,ۆ#ylڇTŴe҅ duøNGMӚX90|-sb#vh;)_f Bt5 +7yQ3k[K]$zU酊Ob$h}J/@9IM#VMqKX15 u֭L_C ~({[hzjwOg|q a f nWHх|iFW5b@Խ$E"dv&JS$ρ7r#\:IH\)OGg]µ]D0[D@G_Ta:Iv"cjc~sF712ed_˞3[6V9)]nzyZ?׀H#&{N 璣 @vs|ˎ1.􀎚ۑR١"1 0N#8FuG ;’kJS: (ot:71CoQ2E$T<exxqQ3waO7(e!ϧnWf9g8*J]TQCuti&)I*Ó )|Ty{DҝrȰ3b'3Z<~nAQPmbyjʧҭߩ J|l@<ƸPaG UMxcQIUMWeDcV꾅e 珂~ȥLk˥}Mfi}#'cFde7/WOOhS?7`w>?NU<'TҢ`ODv po A־ܖ%tLkQ>0 ^}6c]v+Α}3 $gpQ# ڤ.kp.?ˇ3R\ثeCYVz_|ˋ+mSM"%.[b(jo{Ţ"ʃ{Sb/JT;  t$Eb PB#'g@ nidNg&dL]EĄǘ1[MWjƬ36&)pƅ7߽dRs I XH+i /A˩9טťTIsvƁo+ct0k؀eʡ^L HgszK$݄=S-]{0|VdȄ.ܬR]v7E S ہ tQE&0o=H&gvZwK*F`RP,u>`Ɠ~yK4 @Z5|G7ՁMɇJ*di7˴A".'0JA00λu|aDTE*WĐ"MfAlLeeM9V e9L%l(+>"ױcSi!պ|% NQ: 8 R)x+}ET%0Q$6 &'~OZ=3-+MPx$<v7Iœz^;9Ƒ'~oG`AJQ і6_lZБجK5|q>$Y C Nɡ3~kj7|kQګ-dsۦ{5k0! <q @5n+H+Am"Fq3 eQ`Okn'7)@k?z?'S NkK$O>O3ɚޟts׍=M>eGIYg`AyB4Z1zZ.c}1.%\a( uUlz F]Fdq;G<~1,g'%^/i1't?&EaZ{07,7 R^Bʿ3ݪ { fΡZg 5j~\~1o,yI$#Oecm ~gX0+EϿjA#?N~zOqw8W5*\>->Kp<%f<+=I(cyd rlfaH*Zu r (D]z8oҖ@]k XW{îdɴQpsKaVJ n퀐F 8|epDBHW)eG dC%n[.X{!u3V ̦F9/𐑖n3%4s*ePḘQ7IC>˺p~Ly?_ʣH-]AˤQDg( Xê$iG)!Mtq=%~f0xFi? ; 1-w6 HhiIĒiGM9e ,F9Ag%drΘG7njRGEiT$Vr *Ag+G8@CYݏfE;Xf^bvl,ArHlOruj %)'|[EYYRY7Ѓ9eJh)Q_ӬAQÌ'å)y!52˩{uy ͸2?W]lmY|Y*Z pˏtsLxMqr[Q Yem Pg:p[Ths9Ή`]MkwhJ,2bUQ >k!jJ]=kϠPR/J"i=OHI $\i$ݕt&k˄M./1CjQ $W"Cs'E+ vu:,WS[`*; j hʨ0ƻR? gis}c|_x'3&kˁʮ2^AOZ2=/,T&睐E'NyH ^ XG&^fk5#SpCPyPA߿Z:lַi .\A&yA`oWǓov9S*W,r8`cr'|ӊ <.l Eȵ$m =jkL-\W ϶X\N-oB9 )zMqTa U 6#GB)&NGF,ʼ^f"bװi4:!G7B9yÀqcXP(N: P.8(= !Bd;m,rߴ|ҽI5Z:+O,Ok<eQ`gpr~~kkB:v>TRy%> fȽNx5lh |!jgEIsVϞ eF ӫu .spط6uZ>H;8m )u8kEN'; mL %wۂU l(#[<;wޠxm0}6c5/R6J[[ |//kB yi;]+z>ijqm9~lpq䑩;ꃲ5,I$6wYvXb8BPr5P@XҐ " !}2OvfnNc ⩋Tд\oMPƐ?SњmM# ط (S׾ΏjK̞SaujG'51T!>cĨm3D2e 7O$=1WX͸YkeH!f{1\D4:0uQ<"[>>@{.y7*yX)< *,ZݬoѲF aE0S9|.m.CKR֡1&ˣ..߅)~6d;I7\x2Krh .1eS{ZEl!e5ZU(`̳%R7kn+@9?{Hi T;jNas`$d_>wlkqCы4hs-{bڇp )@`f*7IEIG\7=xNeVbOB| 8NNY+xrfT;NUAb}{,@ek4Yte2RMtt`n3bA ##_V͈$0%_/[}x M) ԬXyLzeDlj~}@%:HkN ~"@KK9n/x.ט#|GJ%ڔgH4 ؞go VxMtMݱ%c覽™@"E%2r:b$-ge៙\GDN:MN~ |2LvH)QU0޿H"{V"_e_kUR.ߞp7ey7gb(< 4gFnJ^f|EÑHڝn''C ~wu `| fzb5r p*ڥ]S yS]Bbd%4-T[LAӸN4T*)"I-yo|Fզ$YKSTCU;E9 ^ "`5<Z֡{-"\GJGޗMاe.A}ePҺqEDIlOsv"{Aֽ\[(om7*0 z[]w"l ?ͨ֡YN#Mi4͉qN<=%a֭fGN N:<`;Y).,qK^Fݨ xn$(xY*%-%ٜآP!w]]+Ҍs,-Wf(m oFr'l*`Af/"XTdnW0O>;0L 8sTQٔk*3LQ@SdslӴ+,l=v*#0jNG ߰(1ڢh-fpIXOY{ |T(PMWjόAˢ X'? Kȋ O Զ8$`m[G!f&5נn jin.l]XPnS.1[?slB]X>MK+R}䂤k0D}q]_Fg1d&6e =hBZh n]5%{M^8~:䂾c+_hX!S2ce~|2"1o1oLz,/;O%Q`\kI%.05ϪmzcJ:l~Oh'&ŔT̃^/@@G,T F"bN=K}b$'ؽ]r2ƧϋCX !onnx+nk2jshz's87_{G:+.1b#c*Z!Yp3E N\[A YͻA'^]& pan}o-] 1a hHPjX ɦ=>\w{baf5P{"+T$iJSPS~o8RȞɕDK}*;A5f5mb݌i>;ig[ľ632 vC\ʏ`^\˺a% +l;` ڤ!:/uRoISBԤM]@Jd]W2ĦP/0RĚ/_2k_1w4҄24 XQվ+l޼'wp]TD'-ھy 7¾qߎs]ISipYt]ph9 o1J~C=Y,W =Qt&0_9Kva̶?Vot23oDI(2|?;EEiE#xMM͎.hX{f6c+ݻfsM1ˢ&&Eݬ\@UX:gqLli0}՞^ S|A;`d$~xW]R5@ ?³]ӥn Ao<C(fS΍DĿx qsPgra'34M,;7e{;H׿߅&#biNHڽSVaK ۠XBv(U8 h+ b h7فنUJ^Ek6$3!YYϟm{S̔;!`XnEm-fQAAh3bfM@Pf&fcR5h<Ϩա?)[ړxY#t&b#RL#}]sGlmCޓw-mR+U6e@HTB89喆F{|;fRf^7(3u7h蛛ϜekHN5ÆxsPZǙjr`t[.܆#!j;ٞr;gwg BjR(/h"̜J;VRh_ZJzjA iǚx0K@뀶E?jm61dRxy2װ?f@-Sx;/G?! y[81WI<1P:jJϼCٱ!]W;{cF:=* WɟNOҠag1H+N af3fl㥾2\5#AM{RUCX)'$H+W@&kRe!6]ߨpIJ|lrEԹJGǤƽ;$ioNoYc5~cg2gy>hS0`GuWaH˙Lǯ hf+w:6a065X [f;X@`^Ѝw/ІIkڣO_aIj=P?fKڹb'.-w"+!&M@GD"$h7p ҾEjWj-6`9NI F/ӸȆEH3n!6M QCΞkE(ygdc䷗\xI;w uf| m9ǂ j]>X5k7O/:]:$ojSn2" ˁוVG+mΆӑ~N lh(0M~6 2%@MZ"2fcuAnX$e\‰NIflu-QZ~*R~,;"g(WWOJzz7lX=h1) qZtg~A]E4 8)*[w VE Ė|'[W"Odq j0nޑ?_y0Z{M ?lC ֆ@x1dzz޼~r*ϕ/8I-̋Sle`Ż> 6f|8!aoBeqgw&hX$( )A N#EhU[ n7(d(p4*/lKc_Vo%A~(B#Hy 3]dYuVUuΣQPѩEVNjbõ]'ZrɱD<Ț%3\xr˓ >FwS'=]eK>xh"쨕##R')p9;(UT! h4^\mӎxz\BܾUxAEj~@l2Jгuw0,5$cFzԁr6ha'nG956U%hܝbryYt8YkQ0:NūPqXHco~Kʡ":FJ wWEAOoraԡ<`lu&؆ 3. W6Kuyp2OYvC!%Bp,i.نOؐm;BL QOtݘ_0GT5x*(>SGZjou-&0@qvO*bSGyFe5Sm3b9rȫ,;E.!#a sJ6_%ĤlM>3i wFo򟗟~RsR`}7MQw*8<@Ŝ6ml p->CnO(TG94hWX3e1 DS%G^ ȍ l/S79~`+Ҫ6$cB"z}su6X,T]JV|EO"&E3_ih%fSDv?N@kxM?\Ei"RLobUm*?ޚ`@>VWTꉵP9CPir'[]9-ZY!S[eAvT3 a !?t25C*Z<`5GT$BE9bYȝg;A}9:$0> ruvsJ d" / V]i< t3Ւu.tKo7P_6 IZBa |SF>t A\ܫv8 LNH֚(4t-Cd<\Iptڑv-1O}p98F[x7co#x1S2i&buwJ?݁ӌ.whN ~X>| .8Y7v>.Pшn_H2T5;#xkOEag쉕]{ >y Lҡ Hzk]Nٴ"#D%LQja3qtO0=m@N/;]k0&7O?X+X(P{q( .bm^V67E 1Vdb1.PZ-K1%KcXcP2QF&Ѧ 0 GkOCB}@i2=B"q qifL}@G>_$A}r6]28'@&pBֽ桕&IAI@"0ph']?X q5jgw5ks j#-Ê;-GNOT Ȋo]C9ըUxf]OZAˏ;rN4]enxs"`f$vގ:fӦ-5Dr<(X^jҨߡdp'VIKe^^gS6&{X_"l %U ":8]~#?Y[}0>PK\ c8x ɂ :Ƨ_Ӵ2n )|M3Lw[kpqH#yXs)w%AI X~` Z`]^kW'<M{$&K,DG3TM͉lkYW2 b ȣXl@V8\~*Ҵн 'Rޓg.5T-" eEf$_A*ǦrJj} 8ݢb<##[r,EEgq &ѵ#0u_Ro]8#8H%7ʗ<3@%+%k C>2܉sɗ^E2]-Sx3;2F"#:$ԅzNWL$dM{L] ňgcɷZ+`{5;{ |ΠT? |JN %cVJ͖_ 4s z}]2FQOGP_5gQ葐XkLׄ ſ-{q3̜[ڴ..P3R`26g`׏%ѽ˷-6,ca^g ֩{G,oJO@'J)0UWqΙ ƅR5N<%.!̶A'zt2\Q[ 4A<ȡx5t߲p+*b7 a P2YzZT腃`PdJ",CE|9҉O?UQ'uXL@PVڽj}*W%zc_p*|"R;Jy=_$E$R_ˍeحBe1Y TE=aJ9R{˭k^B_~^!\D `z v ײREU}:_-wfb ik[IxCZUͷqΤ̻p 1WcUٮ T~&ZI1c-2׭@`ߕ׹ݕFμkǽx-_A7Y:+њ<览-ZK|yDD ?.*."h] oxFs"dm=ЍvrX>YMoOk,]mәw[ S }0h٨82g:iz~{ֶlKن @6!!OAy PI;XX|;Ht{i+ sV.<´qYWFƦ)k*- --O0 Gٷ0=$ZQnT#"*"B:mPgTs*6v|){}7-K1FDdwۦu6(e ODII8^LR%\jgO ΤMd|L^[wz .`ZIYD$pgWkck#B<-yMzULc/&$^_mїR~Z-aBO H^9&iMڨRd%1xy,qp5Tt3K*rCMq~\nl#4[^ rD^Km[ A$*t*zXVRg^B3ppdVOS# kRRY=۽= Aj͙,ʅ h~߮mQj¦鑵t+Sl=V EvF q!KCj#AyAiYW!TBR^7"JFW6R[A,5 <+lKmG)Jg⽞!$6ɩ[Sn}`(nT.[RMd23S4bli`hSWTӮ[oG>LJ0\c=)2MWJϋi+O%C7#~,uRc q sDVG2iBc +:SD=2(_ \VŅȂ cT%]S"'A*a߇pCm3X)QO펙k_mi`{נ'W~Iyu+6ctT=|Huxs\PXd"5BGNqWLUR6Aկ*yȴ6aQ|f Y27˩9)%]d?6 frQW̑<|'sԚh06?MqZٓ3Oq{ze.2̈́:{}`P}5-Tn񢱨ӏhc5[PrSL7H{[7 C64 n2*w5{stdonxE3ҩi6 V6.0e,Te"\ɣ!iK%1`U!2ђO 'dv+=۵b⡫A-/#wŸv`t$YG[L$NAc` Z^5=A0N^6۱kMXe/].ƉH#&Q8g:`iCXw`0 ✯8DK{ɑ[!7w0 FGl|cqs UOCr!B5+ƨ!2yj*am]I;ҟZ, V7MW 2OBZ a_UŮ7F{$cKx3w-?ﭩ56" @:kO!RKraUIB߄u9 TGR8F7QjGX^-RåzuTp]yupL%Ol4 ?ϸp_܊Q ,8B GtwUl͠?o&T=yJQG<4}ғN|u;`E=_X}.OeE5fcMAҊ}0/3P<*veP\;YIe!2cia2x0cH! HQvoR,6yYmr5Nձ ۂ&cTzWv(}߫ P[,z tTeZzWau5 w51rA"ۊTDj^R@WT@v)^8_HfdhE{&\9 VAus? !JRj+xm.  UjgjݎpF`wq\Ix븀,u '΋B5FH%D}\9%sӔiUݬF1kFzyQb`O>g|)f%Ġ^P @`e/s5$-E2Lw{7t&+G"kO'i05NMx<~Om [>VxyFUd[?e-.CeO\^y܊ԍ\8VIҎ(.ἱ*H+Qj0+/TP4j7FOgz%t jX~(8fYFe\MmHghA!B N${us=pb*X9߈d `I4ݡtژW+qy7îo-E̽<&R;D$ޏ!`jgs!k~;$7nt &;u=JO gj9P=U| !sFeh0&𖋺g?w"ۯci,w#N@Q8J*G ch|3nwTDD'4ˍTþ=>3r H&ZSlf HkTтà@6w2DPKuUiAv;-`Nӽ_E#NtBg1ҳi~+ܱ_ˡcЗSusRNsvx2nn̎ k_mH{VnQXM19ozbjǤ68sIGkAwjӈ.тژciܟRX,.^*va=+NtJ Yo#rݮb7bтNѪj⁅z;)Eą(uFj2I-BZnMZw|Q܈>h|3bxBx8{;! A&':m6%rR<(Z)fzg?Ղ;qz)Q(t 'EI󲃦kzk3DZ -GUr+}~!co Q\B<YTdf{B7>˗@c  "y !p %p +4-!,\>=8TŅ#,8jw஗oĄ9VJ=9h@x~ FM^t4Ԧ+~ l[zDxn wNO`XklTEv8rx"IJf31tJR qP0O/t)ɂΣ V['W[kD'o@:X#4 F& za` ,$cq7rLRt-_r#Ě)$b d\Tm=uxOr=B N-V?+G&'0XfC^P:{+ =G9Hq5&z"'g Rq0^__g”G0톤y&mJ[MYA?Vh-o=N8DC5q{QsI%{'1ݰ&f%g^gfӐ(yl{yٝ[`7WQ&jZxr _n/ ih(EN-zi85jYuWЗGꚗWO$y0߻tӛ&VF{۷#I=n ק] :y198Ip,B^HC*\-'¯ӘG+1ƴꇠq!C*A uB޷jˡ缩f"g:yRYf){O'|nrMe'0:(44SY'9·\ t4XDV3;Hh )k AĀ|P=?3+Q ]E9:[ R!IݰDާCo;fsǟwQ(w%+aL"+OO1_ՇA\lQЧ'W#:7MD4™sHsiȦC,aÑpF]M$jYG#ǛH# %\EjWMjx8a__uC .`gׯmuRkޑY`#%Ԇ1oee5q+76wfG2p!4p!u]nDHW[`|P1p 픁Uw|ZKsbXieC_bՑkKVZ9ܞO5*e:OB0T'# 1xg%ydmΔ bSE(4pR)'a?S=Z|މuU:W-bzQ:g`a4xx"Cpk'X}fkZ(X_d̎SzX&tzJuˍfHq,4AدNשUHW7kIz &;Sх>9KK*Aͅ ­f>j?r7W]e{ J5̄{#<w8ɲյ4_f\ѢծZ"g,pʦ_P~=ܔfS% ]gaH ɴ~ȶ2\CĔȿ~ gx;lrwYӻͫ `ʫ\Dbc\@TfT frµ-w[V(),cRmX*$C,丩H:vCD]8Ј>*j=Y &R "e֞v C@Z#mkG˓4/ZQ*פ]P1 >sq89IHXWWxו)jKد& D]Lکik5l9s4]b^b}|ȨT2&*;%%C1AX|Zf̬|$`?s 2v+dc{^po&NIŘ!;(Rq򎽉Td5eQxdҔR'0?#ZY(!JA +-㶨:Det끹8AU^Ya>e2Оy ~9| Xh9WՒZOle= 'Wi1O2F$o B"R5}oV"x+%@8'9Nx50%["tD"(*}"٭ó [|)儳&ͩ?\`uq_H^zZ*aЁ5!!| 02l3*^<_C&LGqTR\u(X:dh\M/*TvZ"i*Z.XLr˷`d̎Mnz$1CF&R:bDJ'|㩆P $pȖ8)a(bhq@O6k t?YtfP _"R_TG5|"hߺxPE7_!OG5[j|[9t lD(w@,T&^I~ 2wpGŠR|ؿ݆<:_\TjխhǏ/Cl7'L\/]5PA pY Wg ,+M33x:pHU gF/ yeI'tϫ,MQuahOzEup \;,tA kgg-o3ѫ3 T4Dp=[GYg,zDo)#Ld0HȲv+ GΞCh܁~I-BaK+)i6?S*sMmq&!Pt#l5B.b݀nq3(F`#2;7vOU=$YOCE2!|' EZm:̟~V}řHIzwitT?VgKۗSO&l!'BFϰyڦi\wg[&/d]ܒj m"X7p =ʁԟ?uPǞ˱Gpe1'98@x6/-h~8u>74~og74,# ESM PzN=jڃ}0,p ߇p BCx}HU/8z^Hѿ`{~2 tȳQVYǀMfwMr AV[{NHήa0G"Nli":B S{;DRjQE=O~HwWLB˘CNuRos%Z$daapVľؚ+?^ki0䃃~NjҠ\;]@ o Iek6RQD;{O|}zwg\H|QсwS"qlq.`W:VAJs@>hx)|/ݡHJN[F^|pms+x9@f f,*ahȥKʀlGB>ADf9XLh=6ʬNBڨ X 9[oz%`=_[2a5 o1 ƌުmFEAIEݐz/"&Ǟ%U`E㖖uFS_R lΎkQ:<Ĭ;OiQ~ϰ^N BqWM'/F~,c|v3(@aWs^)IKa\{*/,pj*G5 "7kQ/[eBp~& }kd詟I /ޅ7 L Fn`_g-TgE5ˎZPa L5[69p3]&8zC>oXD`=iz#"N಴;#Q2G1G}"/eo5bdduNOz ¹"Ӕ?F2u: ̀X'-\+zSnypAhف>kz4UWsbO4Q2F^\':,%_Npv cM|BѭA0xLBB;.^ۺxfajqhP6D[mw+ * 3LNܶ2ďyRᙜP?uCXvP|"1t d ^2wϹ!t<FcqQ)qBJBAqb-6ԧY3OdL31/* M\aV,89L97VW,M1K7w랾̲o[nxˇCq@*ӥ8Ѽ GM֦i' ZC\: aՁ N/(8pa5~8Es>xď$9LpiFZ!S >lL6͍R_$T6cËwL\MIQH<-G>$сC wZ7p5c1% neRaeu+i{ Xu$vf8>?a.k?g\8`WE[MhWD 9DpҡfN[D pY&;36roCŒ9b1m*?f,mu/j>pweERp Snp[Clhq%\2R=~&?r jd B8gU~e_&|> Bb^ŪN&*T *?MPX 67HnuMRV&ć&`:؅xĢ^>H|Aq^{+xbH;EF<:.򒨋KS2L/zBc)lj)sڣ4 _OE=ld~YB =}Pn-w㷥J2w g{6"A?%m/JYNSkLR& #YhQ'BZoqNf#Z,І*j+ߎ(iS p u)C ȳdn?XY }A?9Mtjjc'Eu9Jvn\E˛;_^`MuI*x_ =aqns7v Fgz@/#ᚼs̩Ԉ{&#y-;E#Cڄ'(#vG1oϤUL+>&`MO@:Ql7Z9)&(sj_G|'t4UjfDq%),;{)Fa3UÐ)]Wp#J~̿ KU=eIiC *XuY*軁Iu6g-Y[fZMw7&"s`qA߶Z^+;1M4)z{^לjh wr֧SteYb;@ГDS6Q+8{k-h}fEH>:w()[Lf/pgL%N$j*~_2ۉzBt>-32f@N㼾7,^2,0;'X_*Q]u#Uhf~^-BSLq+e ]6܇4JQipu/%miPkRm\}n~kiY@Oܶ !8=4ɭԕlgz65t?W5 كL(oeXx4c L/5C%їM_np"}CADr=(q,_>}>/خZEOQq/vgR̝ ݑOM.LrWtk`q$M\=5iNBHm⾋LQiP:3~)5C/dy݁7'Lb)OfE ysJ޹Rуdog߳c:m[s36+۸q"gذ3~[8>z r,hq!HDJₒ&s9s)FLۯ*C)l [LX@(y4 (xR eͻ!rmpX$ }2ܯk=쌥ӫ>"Qr& B Dȋb蝊p!^V~P>48H9bXǶˆ 6~賄`7l}W[FQD1ʬ[m8P 4?#b\|À!04};QbRtb#b#%&u(yq/9eW[ PT(N3?z(]*9o,U92-%:OW5ԡn|R)LHR.@dgtfs{1\GYaDwy*$t%WC49.aٻ vls̡?9שL'n릹s94S<,k ~^S q*<N]Rׇ3, ":c˟>a5\g e}ZU,CqtklMSݓzm.wr #>kj=y'NAs|sU1( NOͨ M\伨[Ə_ tY@ӂR>-X+NG .)A_rl{.f $:%aj0łjĦ9 VAi%h=#GfFgwCX-mi1D4}]]wb^\#5"c󷹽%-֌2C ,ʔ2߱mwL&xJ{ uo]m~k4ڦhOzV r}HvV" omM 9";:%iޛR0Y83++AM t<Gx;bs$K71v/Y8Ԧe€Eb33'p|ln?zbföbbP $=-k;+@/(%fnp xxwd ,!l-f(I"l?a~P'M>z>&zf n᫑HyI%d ut?#6(&V7[ON&HH<+So{$@kcui;NjGĕWURWgVɿĆ;Y؄XA3 GOR/ ~DU\*#.,ɍIBe1yϜD-6Sىi_拀htTزeZ#I߬k)w|p*s'MɣzZ/ 3dUvpa \SB":G`9={b .<5nN7? #`;% +J2žkF98q)ȣXaQ@LS:喝ƚFO9 W&??-L:Aeɔz ՜i&YqbxLce΄FE{7E=[@+ &swQ-P V˥e7Q8T pqWk Yc %|I/jӷC-`!Ne'"Aƿ[@QCy@.QWiwI$ [(Y;^ h NKSބ?=͆Z OLb'Ԙ}qI& jt/nRPUYl{.n0'7W@{Dj_HvȫO(1V`WAt];n*FPqxTY90%Ǹ\J5nZ *LkTvc\0:A0>,NPo*&[6vf2gYYQ&_Sc|uijR7HjL"I)4ty_Ӹ}N 쳦zhH3 $@`/(-zAD&i?x]JMkCPrMVyQ Dx&XKd%m0(VD_3T5NiSm@b)s6H .c܌ ϳ>M.PF^iI4%u BsügILe7ĵx !+\ÔޝÁkբ6Wh~Fr*CFVφy-g2Z'z_,ix\"|Y8}reXdY/-[;fTfβ*mtQ_9@VWΠ_GBϕR "1C㯦n}zM2p5ޱ,:<`Q趌7=R[B+O:4\stQ: EZ)P2cƉۡƨ8`k3y1bc P]FS: Nrmdst|>HŬm6e:%WstҼXМ|07ܧHo4T~q%Ok /._2^I6o g'W`h{_' bHJa0/TrB823O > SہBJF8d ձ{~Q4S֢^>xug+tEjj@){ïWj|g K$Qx$=]I6%۞)c`3z<.+Э6h.h+Ϛ(40dO[Ko0KeN ڃݕ]\i&ǹy[pTLQTFH轪n/J;+e?aۤNc~vJ9dUZ5@h1oӇ֜2_9뱀êĀe>KɏC3]8&F3`a$(eo(ͨF:.i%o(\Bͺ:]偨"u,[\8)ū؎lPO1kJ+\iч$㪆J% k9}x pޘ^ O;ʥGQ :ޭ1ǰIዃ F鉖h!0' /=dxbXhBABr:ٗ஻%|y͟u/s?=?P}=[g R$6 OÛ@ uq]jaZ9twx;첱9(OPk2?!QENf# .Jd\o*:RO,}~=fH4:(I@9bBF ֌&FX eFDXvf}әCJ5j9妪z_bLwX0c0zrFdN1JxHXw^DK}Kx,/xe[70 ՙƲ+'NTܽ\s2G7P2/VZ(SEPTlT"u[H ;`lب,aY@ʢCgX5.D=pI{t[V8fT.5JUA7)#"usV7NB\L"ίƉl5{@,T7&s=@'B &KXK) h\__s Ӆ07ts/%Őoo,i픦h4+1gi5K` &@ӔYCq&q.="Som#^"{0u}pқiPKcFngiKfi,fh mʅ ė9d;f#4قlj©I!ޚ@Lj= ]mL8 <Ȍ.X@J7T"#Ԉ9GIsEeK%o>E*EOQwuW= QmH$3a@^ǘl7K>-}طG]qYlf} ZC8lVOaKcU&߫[ǐ Y] 8[+-F:]?s㱕 /^`#ePæ6@LᄗÎgG4LR/{s *R}GrS984;/fjv^ s 7} If*8;F/n[aX&{( QBYbtC5ʹ*? R,8TWS恞FK'lMoa3.ӐoŠ&X>s"=J+tSl&lˉVơ,7^mFٯYks:9\ͧj%HM1Cn9zDߨZTPe[^1#JH9HyVq}s8m(,ҳ8xIL<}z C 8YIi:TgCQQP+aӖ)YL =]d O/}00t&fl*ƾ(:V.2^}usfZ2z:ѱ.7dOe@M8r]./ {U/IM?Oaޟ+\- 3}Ss Τ2RЎ|)aҠkK`W&Mp>D(*}(^vx쎕ˆFHTq+f=#pjnzV^xõoRsLJq!s08f5 8eׂ(T;יF6=DcR`ߘb.}D" ^c۷/g=;5^ XveȍkI=We_&%c޽WxD:/~n|i>}Hm 楙CVv"2jyF|A'@s?0R8]c$71O%Yxz8RU1 s'f~|UJ;yOt,F:gMĹhF/Xzkuw!MDNJ;fI h ,(?~7lݮM]RIH Rèu䭔 ?I|8AQ%ߌkӐ&&l@.هh pÊpOg͉Ժ^tBdT^ִp@-R% 51MKTQ<e4#€]dn|7eI6=H^UJ)c^s# wRC =M!.{|0CXt?T+OQ^!Zh ̆l3on6aVn9n[ÅI{CW5KkR'B`Tj*^=s21:Vwl&@OIv ΄ƱdsV-J_590YfK:BZCp!HgbhO&]R\&cÉZ>d s ώ6cGP.r)o>בBzcj[l1F4# vHYXWe 5YͅA#BԲToyӔޘ"ΪuQ] y]d(k&`ϼd|=ehfYփj|5C")ڈn}ꂅ*C 9R^_Z|$0:Բ}~;饶Ee PI(=C~&.J R ҕ/ tz2I$ؙlk[#ړjeg5]Ptpi`* wdii j\o Kf@IHD z"-S&~(~k-(u x P2ۼCUTr YGIkx%'O$SUNQs7s]T|)jULjH*5^/lIg0I: ȫT3~/ꑠ@ +Kcޚq'X: `Og&^(/o_@l"BDf?BCxGP+AoQ- QqL-Kʻnß( ~tz`rkh =.8?Ǜ؁Rb׬kռ_^joztPX} =TsiPĻr :}"4" K(xl R"ŷz_Bߐ-u|YBXY NΙ.g˾?,)A\& d[H dƵC!F $ #Q]V&~r(({P>ssb r1H'P- !~PNeO Qpse%8CB@ ( cMTWpkVΑAoևPcf$txf`)Sl1%tε 4z, )`qĆFQ -5A 9K {Pzݢ?L ۹|>G&К1ߎK_EZ~p~_Kh'~`w8C^wIâRYk <8X$˱1ȴwxlc;>/hd4zZ癜EfibL H%ջZ  zT\O߅֫35 +$?^$kWQ*n,t@o!P:{|@ 15N"S/c -˕~pz`_$Hqw !] Od&-%8J4zPJY8EvFN6 ܔ8/9X mqhbAdsC~IOmw ;ijBQv,+GĆrˆaڬ U@XuOb0qgL[:0yL3hctuBl t -(PǦxGl=dm|f/5 ufDۗ,t4hF:i-- &>VN!AjQJ@;P~c7#o(a5o2ójlJOIզ[Z+9TFaS.UR3etXwkFueJH:aL֮%^%~b2 E=#uժ43YOhWtp ˘<[lIČdOyܑq_4[SO| X~ɘqM 7O=c|8tH6 .sN4ӈTןKO9.{zlav.oe0CgA>JL/R6bq﵉ЊG؏# 64ɞ4~ 3Y#=}V(|I̍hCL@fZ .f(3e@(SvlWBʴ, >.Ɯ/[h~޵&׮st\3P YЛnIDU[z r}/QFq=6%:ivcNpkBJm nL ^GIjep}Ĕ%{f0D n.,G4]{&60*HGM5B*̵1}/gm:~pbycNFJ) ˩lxQDg T}MdS]<ϰϯ\ 㴽KGwIH_0*yל6˙*6nFǓe5F֏y 8#yL*˚F r~PN4G >hX\X,2M y 8ϤKL7*PP]F9fVv"VEДHE^x2w F\Z1DPk *w0f3'*=2HڍMGvEt u5im_@+MV¹Ag4T+WkEĿWvN(hee BҥB*"{PO0"05ThL8?贴: ' N#ppnAZV>*{ &*\B  S+l0L,~TJLL6gI!"Ʀn!y32Y-KQu=~<=d1uPP\&bx^ty_wI9 T&ŀ-=7G1Jt]Vԓm.*{UB%`Dsbɖ)5ꍴ*Xy'/_ s"@&=5a%3fֹ=Ɗ#R!9D Z@hdCdkl[7!5wNn={r|&suJ$|687NaHA; wezc~32'Te{~Yt r4\R)Kp~WI4Wj ; 󡞜tEl1Q4O1]QΣ}Oѩ ^dJ0ĜuIi74Iј (O zvb6+JH+dޮiM#&;M6腬Ȕ,m_^:81`}j/ԝvΨY1\<-?ⷓV %7{rAfHaZ^,y>US"t60\K|B1n*r$$^n?,! ^-+!& S~u:24YB_ty+2cm6=x3R6Z?@f6h"j}$"I,R *Bw)R63uF貖U =:ȱ¸Pth)q!1μnsЕ tIa΅Pj\)HrInBE'`D&Έ?4՗ ,̉)d[|X?Jg"$AuEŶJ@^"Ήoh`Fm7SE&ryu<aڴym' R~9Vm^bm$˃x&5 ;q@L2Syw!K\ؿei|AN/965͚OIv)D JtDC6H\g״RvW0f)n&"Ƥz<\)`yMRtnqDL4{Eh% J/OtfRuJVEXM%T4xT[=Эϰ@1^S#v7`Nkf^65!tzy`F$$x(i/` vfU)/*ddeL' N&zoޓ9i`HO}V7X^bBr?ҷtfq_ȊgAJP$?3"+W}"ʊ!I|a8 L Q\PLϿRS+/+[B1 0iB)&+=PUq܉DB+|(HQnt{㾌JQt&rK/k-:lNT93q*5 oX3~.rFnRmi/rM):967 /!p(+1 EF`FG-ŊU=y:'F$_G6=CJCzJ1"I9[-Cs0%(}ggXyEp~Յ>]c3K"(:AƂ[gec]9bW,h.sŕju]М:nZ-o4U[n 0vQ&9KYXjGo<<,ruX)}wuBٖB<_(otgѮj/a٩"[6Δ9+lxN fs@ȼO#cG`b)[3|@欳9jK1Pp3uc؄e ܇2;jl >ƻHp6*4 yzNg{ r:nb7>|IoS];0 UhU/5 T&l<[mUurTDԜO>:ID&IۆRZO6ϴ%¨k0ᵿ_[zd4UQ#m2%d9_S%+]4MRWKO_+9 w*iKx,QR ^Y0: 0aJQJ#wgW$(e\tQaJm$% 5 )JVRܳU1i27TWpב|;hVˍoJW-0lz{|V[ZjSz*B~e =)$MS;kΏ"<7@;LE$EĕQ *zo P$ ? D:Sio<2=twj*cB~kgvwi'VU㑭I8\WB?c՚Ǟ Nb6T. Iڷ]hl7.SNokR:k=hФVt -;}h"`Gz$>t7_6޹c=On3/;tO!w g"RwCaijcA6q>B\D^̆j9Gy^ab GΞ39͑x`RaKRhn}P:5J-Kvb(sjEYI =ǐxYJDC 5^+R頸?O9;8zE>Q /!ݐ40ݗ^EgV*|D @}[Ƭ)c%ݶ8RɰSgz yr톕8X$h:t,CDu<9^kLk[54^O@r 4i j+1 e ~\\]Z4~(%@R;%&迁&~Ry4Y` 45D4XI0@6!.DjPÜ-.?:sN͇t@C)_;_1IhS wF p=*чA|ƬcApJ-ۤٳCdjn^>{?gMh@$&_ǣǓi72^%W5b3GNpާݕrdrJ3#\ b4u=XzD %_3#=eIfdkS)@-d+iHVG*}IhU R\mv 5ק01LdiK%OjtIuwV4ZhV]/(t1Be'Xk9D#ՋR_ kxP<S3RXwj'N7x'U6awυc \4+cR `LPQ飣"l{ $O M]U$a-xr&roY C*+<{JHm?N.G<̝ERBp[XJR7S8A*F#p}TLS򚣌ш^l씳7KO~;7{].lپj (KRK9`2PBN(O&e li]3F={KeVpj IiͨRvvnRkG]߶~'(kLy8/6yNT h B 2uI$ۈr!Iy[%.lywM5ܬJѾio(&ߑN%AY>]z>bn~OYr?m妺?Jm @Dfڭ}7yJ5z.i9}x`X뜩.LZKB<^C?A ^&@mkEy@(CᲛz86h5 eR]yݩ-p [ +mw >}6CޡFc.y oFXǿSt=uxOK0 a0o(S-[R\ǯy Bx&ۢٺI:"_cIq90⣝j&fnE#^YGMҝ_l/,(N]ĢzW(1E59C^oŢl-#B+yJJoZ2r?*"%P|1@1r/4)TyT=&|8jVL&L1܀Hn o:oG Olʪ(I05x~'- N*y):}~A! S%bQX#¸}4`>9:ހޱ~Or"Ȩ(VaPنS$!\<;کʍe^EWH0!fF{ _1wpRuqr%cM`)꧒e4k*gMoi y0MBL$b0'ZG\zU'_<$ob@ t? o 뉮ϐ꜌ApaNc, >C) %T$]"6mz=pS >d"Z<#zG;L\x̬^5?MƇD Xex` HUfG9t\2pwui|OKNC@ޫ"fJ;|=?xRy.#<[' xPliJ drp|ҸXd3ehm!-#Š-JO;q%.&< z9@崲"̥&tD='/ŗuIbﮗ7yUd.,Jh zr=Nј^\$:13ci[g\YlZ+ 搮>H ru,s# rKćEڴA~<ڸs{ɧk!Fv/]BTшfC07di]W+3<)\˙ ݕba.(Tѡ NZseFAn AcGkŻ t`+JrXVH)lSji!R+@^t~xh{_`gʎqR/4DYq!>` &D;Y-IO^%+r^o#Y, ƣBJX'Z1Ve\{ƻw+/%꒽ MJS|ɪ҂9s7_[m&V9XDBC9 wT+MRf~v1I@v׷ZB ho)JEҌWu2O'<5>\% 7=;2tq].`uYƤC w6;\C5%7<$ 95I-y&zrF:JOW:zBkp.RVO+[3 c[59AKZUzsv(0oxݳVC59oE@R9lr3h c{$R.Foj=q*8>_:˪ceַ"LHB&iR jN·NӜ%ؒq3|<qvv"f{*z%|%aI{|&G*|A4pLpAfQ3!Lo19 \t""d wgb˫z[;/"Vc [$@krsQ*z@$H9:4j#G '3/;k>G]K~w'fM8֢G:½)JnYs{%mQL)&ոO"t/բnH,_eKӁʥDOp_;6;zUcǰ.Q好8?j}pF7~**v|hm9]t3\Ԯ-5tss59F@!TgY[tR# s{+%]Rk +^WFǦB% 6P!b2-9$`ҩ n_J;4@=!r1EVkm(Ư:rS=y27@| Qkh5|id"wH&93fuxbn/!G)D>+kQVjr!QJ=$rR.\.byĵYJJɺ3Qg5[P_PubMDϷzD1¨nU%6 NEvxb$d>9'xV9vx?yUuAY@xVi?ۢY5( [=wUqZlH6?=zפԥqQ`T\¿9yq#$&PiM4˳0AJuusB|{O HSb$aD5+jw]Y7sɢxxB&Xh e~HXtx}YAt8s`fPn}ʬzo HZ7ȠkՊ&`.F*6>50xt3c?Sy/7AĿ'Ei})!.1s3"|6~A׌;(U8f>im?D'wRO}%j=%QCpAb~+E+|c{ CT$MߏɑY,<3Vƾș!xVɌr7N=u *µi0Pl?X骥lG @bY?"2ᩪڵ[r&uoR}bR:nX#5d/jZ4%h`3 Icؖܯ2RrD"G-U 8tD[o;۹J15i7 nA^7޶$XHc>m}=b%mS>8y. /3g/i6xdq?I#eO,~6 AavlS .Y**㖦2LlPie 1rOß[L;ߊV2(-ZID[ IzZ z>Q.,漵JoK:VY"tG'{!9ki$6f>1p4}^1,NDa D Xsⳓ(nf'NI!ӇEsM3=4bZUuynK3 :)w3au]XsJf%["{SvsvBjsk? >Re9Ҵx<XTohb 5Jx,V!7`US,ah2OyHw}תjp14"[oeCdpW;^n>6~77J)x& JiC__CJoN;3}/([pgRfZp7ydj`7Ukd]Ku lZG J!\oڧԤ )3- НY쑥cT [eROIEUC4&!Ŗ6i_|@jpܿ|=Eƒo #Nz?Mwt,;Ql[vmW|]-.h-<, mMn Xj>ΈNR˼(( IM^~" f$NP.BsqC5M6 EVOs4g'sͭO7CuM* 4(Ҽ+``|v:q5$! Ĉklu/ &]Ē0Ntu4e4= G'zdLpG׿vf$`-GH,^gD 41QFs)>oƫbiL\(;ib9/Wհlҡp24ݨh(}1~'C @ˣ3[M4k6cI~r5j+eIW_y$+wڪDxÝBz;Wb.M!Eu]Yݔ[+/f|ʔtoCdgieUV߃5RωР>ޓP^?t%&&k ׄ,&DVKSh|y>:;7@qpI΃]y$sҌ3Ym銇=ղJ@Cৌ3 SPbw` !ɕSׇ]梮'(VPݻZѴ/[s.ԭsPIB^ė8">k$pRpo``2!] O&T%TN{rc](Ui3Db[j-cRl/6.m蒞lӮ时 =xnʢiI  1" RɥDFMrpsbnPFh3 b=;GBF wgL' yKmJD›Dz{x5fNarCE}v FU[i,y"^ *ۂds =qDusZ5$keҬQn4&LHJ}?yQQ,m?M96_3S¥f[3s>:+ؘhAÜFQ:͕'AfWI\Q%2|K ljMab')cU5j*0VAs3[h/+AF}f>+ݸ@lN πc5yw437%UPL9O t!$d:>i٥'*4^of:πty _٫Fe3U:ʆLW2΋t[:}J AkQW4PM\ 9kZ8k|ħh.;:y3˺e Hh Q|>o*Ԫ9-KL$TMƕh'[&1yp*؆a"5Osbk3Ƿ3G:uj-(nnUt@lCINg(u; YW+h˧,6qyJZZt,nK8TPqكeSRqt]Y!|"N_[9]t_|*ORc 'F7E7ɗƂ'\T|Yo VƴK| Nu1؝u XK-#41 r%|7zsdl 0[J榅Ր3j!b\~`1dQ4Hް԰.LxX+ྷL̈́m$U9=GQj+]24z^?Rp$eJq{x\k6#PD :Qv3TADD_ǖq9y6v^C> 4ǡ银2DŽ&<4#I8HI,/J,+zF _;"  > +؄{%kWLCR˷2܉#oYop挱~lCEI?q4Ly(zIiuo$<0,3Gω{ _rUO+=,Pvd~VO?zUB~PV1ޜ 1] P_&ʔv|ɞǻ),IP[?pR|K )&1M2U.Y+j,+%dSYLN։m"<ډZKv.UG6eSk=vz .p*z-&:Bd/3d A"0so/\`N% YF, o92>|_yq%ʤзgV3'>UIdJhߴՓ{(QYh=jæ8^!%=Iؖ :f"w/+"nQ'GƘvSX.7l2Z?IdP'3-S[/9(#6; ~iO[ KLסBZ*nˤWb PeVF{ HꊝF~\bMY8gywԣxy^.SHB&FHa%iU6#~]$7Zy`#c,ÖzG1/QhwR$$豜.pQʀ4VHӿF*iAK 7+Q"e_u5*Э{B$gV:^J?;ĿGGTQV9,bo6OyMg. X4?7);Q-M GvX>:;(޳%p.s`ӡADD~/%[K|U{AbQUX&Cyq&E.a9f_hU)j/g =k!gDps%QؔAg ~~8,[2f%2[@B*Es_=Qnx$D^3}ӹ/x{Tl=pD߈P: bN: SBs߸vHњ]S~ds҆$ܼIBy#8~>I:Γ{wgBorqb)n#Y;)KZ d['Ň?">B1T%= 1G9*BK*zM]Ӝ*bb60ZٗaT0^ >xɽU5 (zqyѠz+T(ZHГg*e5M)`rLd<EM;Be7B AsqoV2R"_ui8>/mfK>t3)n+"`2Bwk ]ZT !)0I8Xx10-xO3NVP?㡻2gO_hέ@:8)#0%GLjf K2603^umhr5N  9v 牟i<ܘ|_@4i8U<^?w*5@y`u&zpI|)cbN| /4MՑS>%'-q T'jnwiKz{Uas"2p7bwC kc׌'|F]Lt㓶&v^;VVڔ1獵a0^u";+q@; &zhO^*L6`]lS/. ?}Q3R|楒ep>-iU-XbsW%Șhy\{#K @N\SNHnj "\@pK㎽\ma'B~%a#Ll :@0LeP:1NE' ӴgA.H$6%P/$W; :`e>D|FЀpv.jDeX6^bsr_B˒GC5Rî6Z,S5 L}wd`؎cHbc'+[;eK5@gyfPrNStZ'ĕY9b܆k,4)V!jmn :5xbMwe~5(IbTyIB5Jaw*) EFԅƬV !@|$-W3]FKx@:ƪJ..ü,}t:׾kH眒P$k9p^GpulY)&T/iV3 p4Pϩ].8۷Puyg0iı{( Un^oOzɾyߊd[;7aOTakv]ZmNvhm-. ž#Vpi$_˖i7vJ6^~λ׌y>Snbst;>lԗoO \ZMLro=ޭ/W1F!*'l;>a. )u!D(dEṏ'`nZr1 % B*mEbZO)HYAQ\ /nÂDJb9;ǡsdL4/;Zkd%t ,Aڡvl9-u :_pn,6MIъN!Ԅ'6"8 f2 uUE y ȡ4kb$l#` G!AQ=1|Ϯ_ [B`w͙肩d9Yq&k% fSE1<xћE/Ge1A.d*2#mz9/V?ca ^ *GUHNzg6i%وZ_O#WNvsa&fw1G=ZƟEm4 YuNډ}eU8{SV,kS&9˟Z@ڠᯯ`Bdʛ\*>!4 䔏"m?zEr+BBǜ3v,4&1[$͒l7(Va9LQŌ [Ѯ`{SessT0iR iusiQ.\bW:f|בdڑ'p2S2$ʨ|FNJK:vw#Gri K[Sa~RX%p3q׃!lvSxmVuy󭏾-*E`pí/j={% w+Wj P6sr3[R#uR6fd:NظFg*`R|L4].ׯvV `.J;zꤜ6ŋL;uoѕc_wwy-@D F3Qq(IFKfj$z̆J"Im3PL|Ϫ-+ d\WcfRzWlUdpbGGC:x²ۙ=,oMn!_ F!'Ɯ_RJuh$EKˆ8sE 5KUc%X;g*ֲ*\mKK-S)%I#k"S)73Xb{8t!&-f_rUsɤcHWl3NF&)T=gY*;BC*yvtm|vA\LŸ.5"طi}_}yU dlN+=:֣[@v֮frMi-{}7zQNpUT9;W2 j+R@BW-6 \$UOzEh Wvh\SZEԻN~YMòKb3\n7<_qjfOTn{{4wh>Zq+/xP%i(%? Pvx7G^J\\6缄T Jz(^aFjo,L_Le#N-Z]eg֛ :]N4&&gؕofQ :6jA!bVTh/4/]50*4@*)oM jB9 fPZ/s:uV-w7*ڮt3X1>aG:⨠1Ym݌tZ A%Z8HL=4J%Xb3z9G~Mxm;J|XK^wӦС&i "♈lJsYBUG<+KZ  7dn !jB "&mLX Wq:9J9|/H3}kuJ!`cmW5ZQ.1(A2~qѕrw[7j`e)=SiS[#/M}PLVFvk&eCM6LSv;2Ԏei1p=͐6q! ٟI,!4Q+Ǜ\l)RͬUx6E .F3˅*9 Ζ7moyFsy,B>ih(\+2oMUXuE¦*fP!v|\2 a,0-ɹ[1_J]%ϒhIcCno z;4+O8Y1G(S ǯAؽƋTv7g]1F漌iSV5}nZѝݔ(LDdr}KǗI=g.IfN0;E Ϸ~*zbջ.%U]n:3z i/Rקf2IQ1O*sDleKrrM'qTلdb^,}  ltSZ}E7z%u=IwיΣ(qQt<# wr`,8۽bdH٧,`~LSG.@Y.fY57ǍOd?;gXJdww߹X$%33Yޢ'xu K &.&=dB6TMVm_g4\ljst1(:[-r_M9ɻexxAsO눠suʔS<0t(%\7)˯IsԞXUo}'rSz6樶<7IŊejIq2"֭a#:Y8fL*yQysdJ)Xl\z7 6ZQ[ղKnL) u77iq{Y> *()ڀP] \RJ+jH r4tIdM.E⮪ qy=Kp3"%;jY2FѮg%0Ako2ףEa*$ nUM_}l~ yGh &%LHVuvsHo^U7avCq =w'D}-37[~ &TY <2fŕ7RC_0lNma*k;B+TG?lO,]"|3G@A()1G 5u蹰g:~CX}43)peM.N-dDϡ$ML(oX%YdʅVLP='iR7*X`RĮ/R8SHNuyxcty^"vZbrgs+t7eh1`+ֆF KBG4~+@sz}ؕ5@eVu!q/#N_$ 렫uoLNՈC~_7 Β'WiO v-iQoIys nd ;f^܍)X7\keq`!#LOu#G!0cF NSc3a.Ei3&XX<{Ґ!ǯ/B"vü|͍F_ЋZe 􌎐hPአ0  Y aw4_J |gqW H='r\K%ޗ Ϧz\ߛga&nH'*5Z{2Bhtfr\-HɸN) xy5=,RꮩwOy90L=ЖSo @v2ુ?<` ORkUcL\zpNp@#O:cΦ#Nߘ-6O/x-Ob??RԿ'@aYFOodžPF?MI촺1qI␽aYhM4ϸlp \0yٴV`x(=}fFK6;X8&NՉ oQcPɈ¼Ql/4rB31ʈc /o1%ˑY=l2Z'*@j1 ^,?0sh a*Q8̆<ܒ53!;++0$ilJ+JFhGgLA`=g3za4r4iW:yZ3ǦvҎ܅c?R~he[Q7G*-3:f9TS2h;xTl+9vYj%!ce ̸T⡚K3BCF0 x),V\ƹdHʊ S95Du2&,DBxהxHkmtvQ.ۍ_9x#e,Z>#N8:9H)!S ?vJi`ҳ!F`=-Pᨌ`ȾCڊX84-~jH6<#zjYnp+di×!>؏Ю5Ƅ6ѩ`( AT2RiWWny vX4 A{'ywJ6dNDOūfEӡ Z]7C nKH̓7\qA?P K0;g静x_OfBFd)遣褔`kn]Y^`RyJ~u%} z!RRð"F0j;o:rotaew.fjVLNW`2+-nIj( X\e'OD*$UcZatȞ]@2'όusHЬukHlD_มUXPm5hǪɹ|NLlKݬ_fT!g0G e1n| ڬ]]3Ğma.( 3h T\/Bt5pzbq9LqfM;h%" in%T Qsz$>@,J,NDe90!cMo[>jxRww<>G¹#/h1Y%upĘh$vkIr43laB= ]{dhwu܄)im`wyҒ#& u>1h?4ÊN3Vwǵc ATs2=ۆ:*>L ,zbyT/+U5+ڙ3t٬ϩsȱj+yP@ }wqjkKHȲ"sq3x-K$'k*Qǜm{U+F3ufS,YuXq>3_VUyD$D4̰]-d/B@In>9N n143Yd#z;D-\YxON"ZRX2 bOtg?!i{U \]ͪ$Yj`ޝ.?aRHl֣|{ %LdaWvD{tظ*jM7c?K,0ϤshirO4*n ֘=Z5s.c qo>?'TKRLKJFC(ˉg(lWj*bd iY0ċ}Q 9ه$zAClۓ,;m\Jtф(eOlD.h7YV ,%f{xrt6%م]{$dg<47\EuH5:)Hޤ\o{'S%{;T4I= 0.>d$ t1sY9MVB_o)s8#چ4dX/ q}c=@li"&Ys/HIo]FVvŠd5ft#^@UOdJDwUE<T^;m)'d4Ve4OshRQm),-[6N$"tǂi!n΃gu͍=޳Qm‹ŷ_>;=eE'UvWSҒY-G3~Gc| Ey86zj{ 9߇f70bg-_?[?΄UXlR%>9|7בgЈʎ(謽 ܌aXU'SNrR=UJʑvRê7X$T&eW 3qG:Sz|HNMls#$t_+՜kx)Aj7yh~qJ0Bvk GϷЋR"rkr ;sr 4'R^8q]!fޖ=%(ezܚŦ5}K:[|z±1#1vK1` Qi@u8-$JROk9_z/3,H? q˪ HI.d61ȘKLMX0biΪw@U[^z]EP.9Aftǘ} rKͺ:I2v< t"=ÓXqYoA8'Եmh xA}opYfF != LS}‰ 9U02t" [xo &wlHw1͊]lj-zKMJuƓҠ A*<Jkד:ʱ7d8_z^_`Ŧ@=7Eo[! D#ˆly7VnBtKl?Ron+-iwoe'CBLdzeq(c=TF`F5s%rz5>v~_{5jзnm+*_ğ-:g}KcS8rJKs]qC^V|H221pɿW~ZHg6ʱ=~WEa6s|Zf+{22TD#*#8:dό 99{Z?yO aԌx TvSjbMOֻ3:l̤qH8{%;yu;ƂgYZ  iW r]$+4&7zH;@%'%RVJWa\/]]B+Ӗ6f%swqs/!;6S(&5]Xa536F/N~Q[B0GAvNSx{Ckng6Uz`9$T<Ꮱ9$Bl\#b/{]ëf'FNΞx0Ź|']Ȝi܍Tny>G6 BtkٱU7pmx>4LfBح5}gP( K;6i G~ⲝƵpBtR"J\x3:lʹN[Qvo6o(a1*IoOlaUࢋ@ͱ@<\=ph3t HhNX#n`+Q1v m;&ȲߔIo֠ɥP"d\ /BhZa 2~)_:;lq>+Y%Z_ OȼULZ_E%߱w.@ht䮲g,+xGk*(Ъsb;gjɇuʛlmȷ,# ڷY']k*m7L`X&rU(b8l:F((HN1 ߻#/o/@նٹi#/%`nF( ':N|S">ʵ+8#{r 򊿄Tnd\O ZKP)|+|9-n$K k{ ۝/-A;TaN< fUf6܄b{Eঘ2}5BV *v(s*@''2]N:7t)s^|dޘWq~.,uA|VrZ5vKwʮ#kANSYxUt2-$y.&&Q܊O?lV+K9Ԯ WX "980t# ^{qyqVi]Jɞ&?XږW)|9X6~L:b3M4GͣD :Ew5Hc'F2w0q(Q>[*Q)?Q$IoY@,XA?w8ae1u@ mҞן{^J(d I|_*s= -Ae*)Փs:Fت(F1і+brǶtLST'(qʷN*.Є ('{5u}eb5oJsݺ3!v?PQ#MMT+XE=ɒ?TG"^- gaҊL,C!UVJGs9vW\ۧtu@1փJLтiCJ1@Kfiϋ& ݷTq6l/?e4kl-ůC]UExW2|A>d)3z0n^~Ns %h7:=Bmvj[݃.\tBnp噹P:F bK%eǮd 4IA[Ve̊-&`FU#umȄ"ΪY) wS:ZkOa6]CNP?zm]hxέdyMvS%EKAB :ҝ-{-oQVR6W}' yI:xtUnϏqKҶ U?)b'?۶55[3-d#u{UWne'yT2N^јeHSe4S tZ6 epJx4mC/}HMҰ !_ 3I&C>DweI^<޻dYz<*T] t~eRm`twB $̂6M]κ/]2\gc[UiU:@AG:nkWr#Gx#Jل?ƖJ7#=8c7,,AA 'jZgt1͋Y^95_5}@lc2haC <>Tdv4ݘӼPb)l#$' g1xNv[^q_g>e4$l!X_t;B+BuC9GLLƩÝz]P&1zٓ]sKG KG A|5SClIvdܸ+K>녌Fϭ| q8=!&b˦/Oq8.J |zTp%pesd:MJ"MHu;COIۑ1Vz0Rcl˦ ƿ%t!'DV]?N1Dr;v E˙ῧnV%MwwQt p:Tmc;(P$1c.vphE yӐ !ܵ@;y%Ưrg̺2Zbsna5B\g+Ch`i8UAE-zļj 4N tA\7ʛu:sn9;M)͜^$WZI弲D屡b^bO!ü]G| Z zqY_ꌪzS, d)Ս%)\)0{q7Z4؆}`"% PzED Aj5gY# #, SC-F}Ɂq/Д[_;Sgi,Vcc]M okp6㷠5p_&)̓ShnAzVNgg2o~L՜?ۆ9g)z@;ISc\(m!Uy&%ƗY@´/(-]ĩDvU9}}*P" J\ 0Rl SInQȷ;\>B8` r21|s@TA)4 XE n:%.qqrãun~gfy^RX=&.=ZͶl}jF_7VW4KLBo5;>2θh7rO|j|5\•ɹϢ6ɰ(E <<\/=jfUuBkN?;kቯf+8JP7OYqbqd8 e&my.B5y>R;#JZ*ݯv4&xPEچzeV)ZO7W+ n"Tqhq et'.ŘOfUD"xP''!%8e`0[xF_ݛ!7 @}Wk#"K5euQ[Ky僷F(^4k$o0udɦ@|ni!zq<1v}4܅ SqtoZi:Y Tܲq$$HjChEhߴvd0 ݓ82ڛE*k9g(Xu&KloH?zC M/I;JR< C*!>f7D'#B`m9 )}BɎsvjF4]~(y֘f<&dAAgtj=;1#_0dWKaJbW%}ÿ`Y3y&@nOIw,ޮ4E1LoKŻ̋/ިZӤ6y&;~.9>BF5qͿT\mzx^Ŧ=eAntDQs-qntC^0/CheYsK*%C.]^  ?:u( c@&WvrS m *Uh7?T2 tgtXd; P썟MB1>U! :5߭dy/9QkuX*}u'K $ PK ZWX\S_ވDzmoSu5oG.W;.w*,ߥcCs12 eK~HQ )^n.m<=QڡOE="k%m5Oʘ{t5utkOk=E~S`Nxe7zPRp1M{`TuGU7 I22bvf|TC4t Je8Pi{YH4)9iЉkU]Ob/rߚgrgBϻ13}eH؋G?~ n'yq?لdTDyk9zXKYZm+MTfv o\8› xC:ҳ$X{4]՘]꩔ (P(lizReg!k]E̎_eqQy9En \Ψ\U+]^ X\ZN\v//3r%km*aԵBI$I1]Da[%Yjn̰c$1ºifVCՇ*q3AAPևt=Enկ"שMȼq$qx5lX#I׸Ozy]?P ΫoƢ6Z2 /Mrtl?GFS_h}-ՖwMI=g1~uj!/ˋ3]uaK\XCtpnHh>Lm"#m.4o6ŀ4'C*FDJ*ϲoӵś$*LkNςkp#ܺSX;eKY\d~lTĨiO+FحRkԣ5xJH74z T­Ón%ѝ<3@ fŷvSݰ4gÍױͷusBz6&٥eP%8_ǧ(8+miӤyOdښMU޺Lb P>l*fa4 )۱XhQDKY2T)govmȺL u؃3c,+@$]<Db;AdB%8M{d1;y{kmVr,eu#Ey0V p7NHo \G_k8Y[ݝ Mt'd,z{1[]<{.k+We}t01A1`@97#Y[g h;wG|Ɉp2ߺaTtH8;]ƀ~][yyYͲ]xz4PcgbVmųwEZՂ1ǡTm#IbI_|ߩK#g (|בz"0C\p6x+?Ԟ*K~ulk{!מ!*\ѕx# 8q"bk 7@1Y*jL)UN?)A&'chSb dZ)GNFE~4QIrC0DlC]gR$,Vw@(.LѷEb=I'נaQbu#vߚ y*[+˄Hm~<^!9)?QZi^ 3; pW2Ob>YޭoB)w;+QD0Z4 l;G廯>iN#Ts%=,-j\S]X=o)Y܂ CyotBz8!. 6Aɲ=obp:9mz2|+Yu V?/퐭Ȃ-rX/Mj=R%mmF_͐z0:,ܢ)Қ_nUur?L d_8/$ޞf|P>뽶K p냅U QJk:y *Yu0QM^Tx>p`WGCTJ-Xu9 Ad:*ogƦEEZ/ 2eAQ6+r􌿭0/)ZHX ]YI')9"oe E*ޅD}#L;W,{)Z͞'K`0'}X P1zNEz)~7U^ |l̔"NU z#]3͟:Ri8QԎLm(izeG1M$X~$LJͤojhǗbHO#ΖQr+֡siIzq硘SI~̰/_- đbuGu0At,,F7ɬFNu8~NOz5VY/YkRH 3Aw$X%V㠎% lpZJ1i#L$y R4 Зx/8T=0NZ k3y/T̖zn0q`&o:糑Λbӥ3`@đ|!KGPA0g x4wg+ml wͣ`$ ^H g[?)T9rγcP ѤK` ʞi"Z6ڙ;tW1`xZO+tu X-YDj7@9F #Sgi] Mbt|sd,5h19E235tC$JMӮǏx?Ff5ƴj[Y5:dvrZӢV?*}v`!a i Ia Bxzx Dzya\!G܄]ͧ`l+9\/7 S(sۂ; SOf.t'ƶf4',r6sȮByC+'ƻ˒1eU{\.DӔ!63ɧZxtkv]z`b-#ˊ(v0"d߹IS*l^n_0+0FTn"wip*J5Pdl=ZrRqoL¹Sx$R1`(E'Q ϪZLZɔ0CMس*Ę$G&p2Zj ,E}!¨L V2whz]՛o&wL7Wm|Nkc 5l7]O=ѹNvP 665/pwLC볰[ Q[+ ]]?>5H1LM4lw9n)?DR˳v)K X \PiJL6~7Cq="Yer.i/$P?|w3'4X} \*+-{:zoy$J,\3E tUj4c %B019[_B{y0zD k?$) pCvHmJ_=2 > Ád;8~$Q\/߉ɤdn9$$IU,T CWyNvˠCdWËZO/ɦcXAG Gzn&jZ4f)VCdס= 8tU!5+TFmXͅFcc}H`JsbmߖE2P>aCX A=lst*h fCgK8 .X086oiOT4!XMzJ**e+K*F9 y\So%>2TK%]@.B&ԞiEc^Wptl ^0V-D}HIǐc<vbȅ#JB{Ϣ& 0CM< r>f6Ybv g>:5rau}wUެiӷ&sFn ҳ"<֛$M_\JUOJ򦧋و@c+lX2zDG8:uSɪ727/ޙavJ PwlYDwӝOL}eR0 l&G!_J]3 cN/{XC] J&X|5 >)q8'=H9YpA)dgYDAcxcC$u<x.f&巃VCBP_oƧwgƀ'bEPUk>Eނc}mF_ޅQ\0Woʴx L=vevP\'&CU1+ QZAee N Vzr4+$p 2}hȕ/Ԧ(Ǥae#zae:ap~sTQ`8pwbϟwv,@Gk\e-G޷ř͡`GS,l#hAXV ky~]Ʌ4 g3njN|"#xq-_ҝ,9KMU ]bbK(Ѕvf?(#2 Xda/){^5H4(YN|-餅ɆE8ĭ9= ?]®iGu Q;OՐ P<ѵ{5vD~7"Ѥw[q3*_H6>dҥʠWy:mf92 )d/ V>0}°"4jK% `,|79w6KY؈nK+,T[|kEɎul0I1=`AJw? sG"탊1oEX4: 8V%k]L'{qTfϺ೮]4c=Tjq\(NJXd˙+U2*S{hLpж#*2}.#se=2q%4GZ}BEJucIN>'o{ XI_ *Iٴ¼GAN̑B8 M r1`Ouus;pCr=v QFF_w&PBJR{ZJE-HLٝCh\-KT{&׊BI M:ՆD:BO>?~Oj1D["Wx&J]œor+E ub[kR#2Gэ>~?Q/%,hFߩ0[E>BkuJtHng169P%/٩>>~ݚPY4X Ƅ<Ϧ\!t">x,RT>k%{"9ejsq!&y#O ̸ &bn]W:S|tuz3sAc*u7[KBqurGI0|شewY}B--_*ۉTe nLYI@f$;vj jjSϻub}7ODIE.>Fn}!{޺9zOSyԕA[{꺥V}^꯼-ՙQזd& $r걡Դ1n&M0-lv2y1Zʦo2B&˒ar&<V^v}%o׏Ktݴz{Fu(5dJt)zưo['ဆv~ Z#I}zU t?5(F~V_֩U #3#,:3Fz}$`z%ԑ/2ɽK~tnOxb/0"؉B+S̾Q i@|U- y#uHҟK4ܘ{Y7N Õ۪O20DSj؁)D{@> o^=ݚ;$=2#ԑӁoƫRY>^loYD(Ι8Cq)&-I* z7hĵjn3rl]$B=&DNiLI"?v,d@[T%7`8한k[{)7潚%o xPYAY _~G:~ɗEЂw ")|o E=P9rK!|.e?Bc\]r 4?CdN]ۿK{v}C#&]@vGxqzD퉸P>Z2M(pڵSnp%\|q PrEKUs,e>l{%qhܩ h7IMw-9Z"#\(혁`نwcOvTV pRkkU̢oKC VF P䅟 [cEʏ;8z_=q:\fF fwef/!S%E7) ~-*g?"^*>iwmkyXSQѣpqvӟ1~H-FAVPJ"L΅4.yZdۚL+K_'/햆~6DO00&vGW]?P95\9/{I@gj9}@=Ђ|Vΰbߑ}Btk|DN&m`Bur/E=oexZ\ 4آZ@E061I򻲄Ls:̯l{)X+p$6w'!$mZka ӭ$_V%ʯ 75IQlIOw9sNs/?2L{ljFehmgBEV<Ա]$)-C}z3%{vu+4mvll (F( %ʹ<H8ÈOt睝0KȹȜDFLT_b>;ƸxBG 7GH1;}\Fnnc Ħ12-C [ , 9Fc%GZ 3Hp eo-`dWA8kqfS(*W&^"TF^L&3^ B;Bt4ieyJ]{hfz2=Q \iݬd~g y * &2ر6I"V4ٞ ?=.cvVf?C*<2odSuF䩘PZ ¥e(]g_)ijp(D#[ (ȼT+J K5E9]|eޥ-{5̈ 8cX/moۡd_`ٖnZN1_]RtrGMéWL?FZ3pm u'eUF/D <\u{JÖ_zDd7,*,1j#@V_p 7g\|pڵg7^+H}R # H-Aj50T%3KND7Z&/#|>ϸ;łB5O:_QfJ4#"VV>jEG9}g0W_W[G>3aRs( pLFs wI q+q};"\IR[~6yi,>D XeuƻwixR<~\ԥ\|l!dNd_ sw,!82!̛ޟ`T~vI {önذL;` MG2%?=yAr6 T!-".nb{c9=DG5LO Q1Y\rr7G(e:ȚR)~+j+ɌzOʤ{nbK. Y}EW,#JY#[ܕoR 3t 4ܵ> xȇngvןR9le9c5ł5a.u+he> l˷Z3YqD<틭C{3MsbưVl( {'dvH\?#Ko2{06Te]ȃ F>zq ё1˕8\Š]gH2ܗIYu4;/ ,:E &bVN?cB.b*pYlB+> v=Y.dջ\zRVL`3cF'\ y%avkBwxY뱰"]RHYM2[(5%ߘx!Rp{=G|:IӔWBAؗ{v3,?UU쉖EJ_P#yF=n/;V<Լ,]šxr'툼4-J$-'7^X= A]Z9 9-DOWWZLcU[ Oޯ\"U*mήC%\|I 8(<$b DwU)4u*CcXqEF]3ZV\ӣWGlKf*?4Y)O([/4_ %6](>*bΓ%XȯI''v)\l8Msr0asOu[c27HȽB Ɂbmdu8cL"4Ymh򲋔tLŎo m,_0@ȶ&)f#^vO;&Z5z_e)oA>c^nqRӒ/Bretg܀Wn5hwۉ`mԺA^F`nT$1? LutQ{tG1 MK {Շς9;0`ƣٹ21;O!Roy/b4ĢgtzHdJY62a#4 dZp&4 jv>+:@\SMxü^GS8TXYX?x4 VV*-={1soEP,M/d1= je/$3Z\[ToYL秖Ӿ4\JY.|B1(O'OpJP09q7lq\ G6 wHnmw8& x=Q,1 x*Wxth^hkm eSʩaŦ1U+tEzv@n.)2'iwTE%e2KJZu!WI vB\ r EHs@˞ӎ ZzM>,bjIPݫBmM0+eGihH/:)9IQ;C3$obYݜ4 CӲRBIy4uE#w`#Z˒eRI(躶2W׍2A_BL$SW K׷Haۨ P/JJ%v\*-7#4f2gmOUV(JA]^Y:,M-|jWI=O䑝@,>$ZEH "OW.Z!ދShiiKh.<^MC}(?bVU'Y\EXпͣ2\on鲻3C̡Lv_j? /SS( ?W^".66SEZ.0\SO%糦m(m1Ve'藷3 e#R,fEyS O8,,뛢UT"_֏u%eR/t1{@H?S< 6(¥l(sDܴjIlF&^A^dxyp !lrtkgi7߇3bT7P86\@RZϮmkF3f nHms謋}i$:[剆N\2{A mM4Ā" 򒈿kq?O#sk%;ԕĬe2 O4x&rtsOsMR"~Ͷ{AщYl"'4 cʀ+#qPsJRRWd8oU(,U'JUHʶ 6<+ǡW XSO`A6viv`N)i?ie&dj~u-D?Trh@a-D-A3 Vz,YBc ߳BrW G_xٕS*"K)6WQG y#؎nةTPGVpf~/4r%IaE=K~v*'|F;Qa8f[Ϧ0f<  j{ K!@PYdD.OA)QCQJy> Adؓ;J tp\wddž̊-Ap,7R gÞqLX)㒢;s(h0qV&Y͖%^tjGG5|ijne~ʪf)ek_W M/a@%dU/IZt,9%i^1#wDwrTd$#ҝvn1,ÿ!K*)83Mq7h ? Ȳbu8a`ӏ&&lڝ&V+=1p,C։Ry3yl.: ̔ơc'Okţ*gzș^ WK'pQY9f,GOFUPA4:Ku%8?2EL-D@5ڀxPY԰dHJ6)z-eAظ![hݻqεE8QоFhMbIum52#g[IG*S܋2@qXaQ ߢ} Y kVBiԴL~D9RV4ZӮwas2gB-2#SUXoW8/7Ե6=4eF #r?~,\ٛ_D!H]iu "P&Z&Pr H[Y&WXqK᪐1u.t̸֡k@֟)X!t0K\`HWCվnEDx?b"Ae𶏚pkLqb__}kVY GeT}tƏNH4(%,:&2:"-0NȗV? D$s[-)7d='3ܹf)a1̔5pqD _ۏV~O4|2~s] 8WApBƪ/$tO882W`d_d==]U]P=s2v=u\؎Zw(:˓Pi]0j܋R wr92̸3I {Ga[eDChЋeBjf H"Tcc+|̴nq8v ,Zޠ~h%$9ODwG}Fme .Ǎ- cHC,޶-{h\hFwЪ˩x.'& 3 Qyx9Zɒ _uw@t֥G8aBUob8( p6| 0Bp4)1]dENA;7x#-@ǒg)RӚ?!y^zWa;#USK۪s}Aޖ eVzFKm`T+HsLN!{<8TJi@|OZ|oLL[ۚWM)iO~ԶP]FkYSގ.%Rᗓ#'bB8pܹ9{0W/*W(QD x$+PȖiŋj97Q-zHl$H2BHY$Jhx~ ynLkr2{ˬîq[_}=UEBXntȄe@GrxWkX+jYtsDv $^>/M@5Mf!!)45>hܱvS繰;V/ofSZ(iqX|Vp?(FT&hR[mGE_1B!aL`u'8oFrλRVkιC&a8i.ټ--I2\9l%a<*UZBsK9M9,&.:WWbAwh5}'>є݄pZix^/L&ѣ(Zjz&9g0.,m:K ' ”'7|69Ui^%ʝ#'ʒө%8b]#-, 9w}1OaVoic[nywɁKM,{y _> c'S\ʢ, !aqPˋ<|N`x6enaYw\~myӜۮ!>wrB4gͬ!* ɍ=:s3ROיJ "Z-XQ Lw+eRMHˈm3a+/% %3' 4lM KƔmyκ-tE,1&d#F,qfY/2W@湫%ĜÜihÏhI]"HV3Ʈӌ @=8^fQZ@*0*=XJx {":93j.zƢ&/8>J1G5{ae3Jg'|JKFQ{T9?T}Ԥ1Ax3gbqMh}Dۘ l~$P]KcUXdݴ%hX% gr& {cP&C]c.;[P͙|8㱈`GuU~b^R!.=C@.SgԖ"D9Q>$kbT8 ʐN~jv_y*sC+ؗØڎ%7㣧X}vcn\[ ;fsLOt5_gs(OZpLK4־,TY|#S:` ^|B#⹀wJ͊96@dmh+(_k˞b,eO=g]avPiXfNpԤQ8<ۻ$AW.Tb6sg4N"{pHH"l ߍ<,ZD>SG 5A)9DZˬ԰K@VQuD}?TP_YVzp{࿨8kz>? l%W@#ěFVЋ1P7Q`l9> Y +*)Ⱦsԕ m1;)8[jP.ieBS*ˡѯqavM(Ѵ|Baȕ'>ϞtiEw(oᵗفJ[ʢ8ڟ}XX~W-rs1^lnDWwqŸō:qV(~{^˅I8 AS7(,kW)eUU2fF˹tŹVilWR#ڶN1QPTD:8>" uh y#gH_v?ڪ?OmMPazMNP3JWmpúUjԉYp|UvDX5A6P3ckY=΍/OEƊ1Hsx"t% y"ZU9% mue=!Ԏ7cNPDq}]$4]_ɦs>ry-(uG4(U٘v>V *H2Ӫ#< I=+%>`'@ncNm8Rϝa:J'-%_pWlw|:pRpA$9ahܬZ@$EpB ߽c7֏;yn"OeVQ^ fZ?ToUӴ<5E"KאH}78o/!JB ; %@08Ox i:V-?Ӱ1ٰ@JmvCJmҩV%ۯE `Go_"6hF܄asy"V<2Mqikt{fA9l x*U2҇f'0+=)%|rvAky/B;z<]B^Q3z8zyXO#E pyg\x3ӱT}IqlNHX@) fN@cX,}f`$z] .y;1N?,U_>r R?#-V\R%tot4qI2ֹg+Qs29?tz{NGeE.UP;6tp`; _RVVlET!)C ;ٖZjzBVAu7tRyp56 ?m8ۯt[tM/C*n&a5wp}]FD7W݄k.Y=o1* +[Z`HZ>i)uS "%kmc往4K2MZsрͫgap0찂-pT3bbRK 7s"Na>_u%@|#XphF9.&ZQ4*UZAK۵GlP3'[ z:]YkmRȧI'*zL!??jp}O ,AԘy9S؂xL9E},2t_r~tЙP=vk9ΐ|RL$f(y]9:E!BbHnM~$E[ɧC=R_ k{ǿ~Y~Q,Tb$ٞ=MyGջKp[ tWGN2teY^1’^ە:‰~cMP~mZ47٢iKE0_y@ef%„β_ohKd)|=v4n{%+*IN*;VͿWq-2QO׀ږ'Hv|Ne|,ͫdW s[ 1{jFF LvaQj [BY=p@ssL{K Gȁ`λsR{ bH5n/VpT D!$Y&ϣkAo6b+M/T 4,3XQƛ[T)1z?}S>p"ZX~AG\ٰI sP;wtY䂚Uś! VZ֊r{*NH_ q2Fؔ'zq_\zI+ѩ O$l 9ƫR@+Ϯjlb,㜐3WfGUR(!sЪقD#K(c3"++-5YnIJVr i4 r;A\fXV➰jb"`N,mԜhLo7Sd CFBO7(hEQA\*Fc,8>HKC+ z&hSj[I qۛ,HVo0Y%.d n/P 5ķ4% F#?G-7+!Ymͦ1rhOÛw"JicJUm64u$]S燽~onD,%,:ê7՟7*\Uz j{l g"`@@QNM{rpcO-Ϋ<Ғイ()zQv Vb!\ܝ I kJ N|۝t}"^ #QzhP(Oi] MMq_iv!orEUfrjd3SdTXq.4ݴu,%IM0&b( .h CJs ʧq`-WB c >iةd20o K[#z r}%jbС~F*Dˆ 7QR6jk`F2h]m IR(A0lqK;4~)f/vTgiԢG`J܌'y^keo{jс.ReSoa^ū/z%?p8]C:ztE+ / PJ=#SV#W@CeR8ܴ "D)0+V9RJ]/U6C%y엻Ժ]T*v!!a a ,C5TT4%V6؊)v qŹ$?I 9iw~Ұdd+FDϒ} -2xGCzK9yq>Tլu7jquJ0۱Mxv8xa"oWŁ%ͬ0AZLLHGJeYKRaE7p7Wڱ,ud9Kdb?Cc{0rٳ&{ebufBq TBCGgK mn%@}4&||TuV@}b7ni;sU+ RU,TD$$c`QCc_O凩qDsX8Lz-AZg) ܵ˝I2u֦&sfJu)f鑅z߶1,Ƽ ǞVLab7ؚk$.3E9J[b? +N?|[Y2 mWZXGha܌7eA'O1 Ԑ1z>F1Ua';5F|a#x4 `4e-}X\Z ֹs%D2B|SՅ;}Y!Y_-`9ryDz5uCe?tmLxRO]N[sCdCx<¥eZ:%h6Hl.YpU7۞jT3 Q9w--KHtD~Xd!s c f6|9h{_ (λUH+DkqeB{<̧y(O(Vuɮ[j?(*Y 0$m!aI87iU֑J6,P\Hj-HE)D=^}2ԁ85~r hmwFQd>$ f;VG~xɲ⇊%aоn B}DǭqyNW`J2#Қ~["U;i6w2TQc'^kwgnN ٸ$ǃoQ3kqVG!ݴRX𖂠x;V6\vTqhb1 Ҵ42{s\' Qv.3QwC`>.o気cuթ`!`ǼƋ%6hpIj_Yxׁ<n) ^QGY%Kȟi̽ey> -5Aσ(trͿ8`<A:ނLmM/Dć\Q|tMW'$43 H]biw)GXw"N8ycڻ"[+%}&N!/@k}1^~*2  am.+9n~awg|XUxBB.4T7:HHR r@+ZTzHiMF AW$ ְx'4:^ WeIA^um;Mn˪ G1-Ff -}o.bի;ZY0ݼ9F#A:l%6 ,7n#hy \(9˜sVHׂ1ͅaho G{5;2QݭFO:SfcC#i B#TFUm n<+,ܮ>TYhU1%|8y[geb2PO+VED) >n >A9,BHOyL", *A/JRǘ.AgHm.in6# Ћ{UkXD)^p)|=,y3`\VwX6$?fI8\X̤9.vp^=)dY\׬m\Z{z]uB-TJJ@um*,|N:H v8XboG2 ُX[L $uAc }4IUVJ!;5("Ù-u"{mYsCObzoDV!(( *JXTS# /.Zs$K#Y/{g"r!&o. OgJ yvW[t$@orIm:uʿ ϱg'f_kluTTs9#v,;9`$ qͰxR@&x\x&e㝿m4gzCc: Ӑ^59Z[}_%[KAI3b wYԾ+vVUA5*ծTW$Vnhx=L^<QIwq[.tyӪ]s'RFX>?;[a)GVcvA&G􎇑׵s5BDsRGi}IFԨ"]9$ORb(:Y(@pQVu70[9J4=v3mTS՗!v{-&!ǂ.wX$x3Y2tih)ztٹU䆢Zpt$`s3$=? 륀63i KhI票ih9-P@NЃ_C!9Z~|!mJ6X/T?T<*T%dl{:h*(ʄUc>a -ne1BmcA^~):.Ֆ%3plLI"CpSLzN;dQӧMb oѝzK,7=RЦr]27n)0GA$ytWc+eELt`4'j׸2Pd~D '1GR~(t]|vpɡ\֊'_5 \Hԁ=i/IWcS)')ۓ̻KIgp4~MRv8p| m. @1좪KMْ)jY\y!n65_CT)1R}:3 Xf%!~UIAdd7b9ᴪ}* m#{ʏ9v{'T:; COT؂T$ ;|$ '*' F~u)R;͠syA'u2}}es7{gi7z0:%o:d]KwƞS;vլ"`ziR2i3l ~+L[(}>Y"3KúgO2#(K,J];xQI 90!u1qT!s+}C$菒ֺuR~ZT\9Kitǃ-,jXL}ND 8%t`xbQX١-_1.< KE9^4T]g|r~5%&9txy rTm;? hG4U  Sh?٥ʟd.YrZ?k|cv";\vCJ u9U_+vOh^%/j)욷o{JIYV.j܀4ܦ$f-TnZG}d1p5<9N&IbA`!c5sєn1j{rT6A3/׻Utuu{e?g$O6i|r{\+=i4h!1N?9"Ht(T;; NQNVp̊`Y7U1!TN1Cnɚ/:%!Q/ԔMQdt 4g8;HA`Ch"^jp;T^AJǥ; TyԨ >Y{Vvuiky+_18PZ~0FL ;5$V,lp&:aʢ9f6< 2 )6bcika740h;y#_Mvvkma]jmyJ#ԓ_ C5`BqTm*¡ :C ,.~;xhBDs^,g{y8iL@bd:{L; lAW9V jr+:c*6\«p |W[ ̻3 2 2e2Y5Gmuc5Ɏ;|5LИwudISهqg*"hX :{x!XM9I8 %ɰH!G+,ߓK'Pg{V*^}j-^G,)pL!1AB,v?ίu6F*c_ î_#T9[ԪE?G&_\d8Tnk:'KZ^ CJn~7]8I||+Ol= P#y`?dckUktm'3OAUDI ]PVjE|H`vR{O &]nT &u-I1CrqnE.M.NĆ8FRJ) :?+!p?*B_<>6RN CPw_hjMO2$2F*|&2#u_#N 'E&wKrSw,%JQ˪hӰw6If78М#UEN?f`qѤC@+*NwG}flx+6qHhBU! p8$xDZrci\+xdM]ri9k5z'-0 Ajzcu.T'@⽶gr析oRŷV3kxϚf)F{H1hy~'Up3'W"EZ&ZvpЋ ک=^ fk<@@8pӛy!/8mkL㾣ߨNe6-baP=R2ߚ NMػYV18@r` F"WS6-"-2AGsK_z 0TN" \ji,Quc̢q]`}ҁJ~a{!uJР#67L_H!P~ !H|lͼ -O>2(:Y!tj:)*"J ^LZ _.؟w!y+yo(q+"3E.U_7K+2@.qd==t BR$YHiCKVI,ؿ I3!R-! BMƧcq>+Ub'$}WիUAP_ʇQvML^uDz{<;;+):T25{+گY(o>_~l0_)+i(Qb uq 3 s2&UEZ>9e=Ј__}I{ﱸUkqzָc82pQ]3AZWIN.P>f$v3y:+7$h# I_ 86MU޶~ tP3 0i#BS5. r$!nTB䫢3nlStbf[D3S]DWor0z]eD!zEKL]{b"+Z~w}Kv.` |v?c@%d49aQ꼐ޟ`E[s3R^DH uB~ ĈjHoUs~4sG=gnfqKꥒWyݗ|dc&ef[ӻhAFaHDk)'~ko:%Ki2ۧc"16e99܄ 4<32p+ybgz̀υ_3ɼ ԇn1e拘:|ݱb|_ vR^_5AuFjJHa= ?XZk >vWzjU2 !!` O߿^忶{[12 ‹'nvZjjՒ$;$[Aio32dDwbܥn6~&Keb0DW s7FQx~X_魪mȦ?־CN0^e↑nW^v6 P7tb"~vl[_ 9F!6hR0E`K/ H\\O-yO VQҬ;EQ'A(ϟd"?^׊CRԉE_ig̠Rpr(*ݚ)ZT/rta+n*E7V_>ۄ͖ J}<']77 ۋ3u$=\WdȈ(6KOzv`8D÷]l+ƭ]rWW.p}0r.hjjӍ?i"~$e٪tt솄HtX< .R0cb4yhgQ9yKZ{kj_f8l  Iw,K֫BgRzVEDe*,.F܈SCu~Ay'LjLwF|NXYzul.KGf.&hPmHEUGۈ)fֵ$CiR! Qi7>pS$DDX`-b8޴6\/r+|_0X-U/-Ow^4.r8yej"[>ҷ)J]Aq*&. "I+7gb˄5Xo_]7֢ѺfTDY¢?VêmWBG +.\*Ls{~0Ci4=\F} KLb}.<&JXW}ܴwk 겜 L|<&HD3 ]SU4~qx'VRoO.>_qA Em:=wo0{©YٖjV3J6I-o/'!Q_֓QxbIc~Y1{8S虥PnyI0~U xϕvYM+F<9,.Sxl\?"(v$,-M9q-/ed)8;!lhCTJltl%d rHW|U T'-G~m-wD04Xe/bJȟ :/ᕗ223s(2Q}A_[4`W?S~ֳq/nF ?sXg舘}Q8j b`QU0*ݣ7f qjư&#sE@7hz T]OL^Fz(&78JdznxOxڃtz \/vms/fۅeupjv\Ej?,LE~\dD}8`0M8F_ߵpދtڦրe߉xweӰz18bc5K$ xVuwwttp h)W[RӊTł<-f-o+}4F1dWl7}neL:ƸLSQ]]j sVn~e2S1 h0IϾ'H e1gqEA7(J*Kҧh>߅GKҗ&/TXnb 8b!Wж}S*/,O\.=%E4Le7cTc^ZBtӫs+j(`ŵ2o42,߯@/jjQshy`Ec%8bޥ>UQ2ۗ[ khBi#W .nZ~ȦEO9gQ 2Is=h#.&"ڬ^."v^.yB:nt} $\=$=؉8Ega'J*Q9*ƢEߣ\qӀk[^!Wu^B76Ol6wÖ:mS׊^jnͪ\7ӫ^AT t+Pu~ ‘`̍RXWۨ|CeT88M Nܕ`^!5avfhQ/["D]DJH${Qb,2kBuӰ9XŶZ-PK7v P;\(n NZ' Uͮog\N_zc3Qmjw%IO>[y 3WNZA*n+Hz"ҕHlH'(Gv&a)lQ) Z;:2e&}52@V)z/5[~r8KX/I!B 2I[d~"wgT$8ĵSTݮ4fj prb2OٟukmhE%`;^h_9 W L>Xe(DZz#)7frU%FRPz;HQ65>~bCkuڱݟEŴozQMÔ>,^;|Gjԕ {' a b =OIqWʱSMխE(R S$k v:B=@`g@|!Odt|ڀB`\_@ϒ7B/cs\ϸSɦYF#s.;;ni̔4B_ύtq8)]e/!A悙vn#Y13: 7T/Ȅt G"o"8}TaDm?ν._;2.ebݗF*2HԞ%]κnG<" M=0>b +MR}8JǫkXg8o@dZ{95qiB{!']~6~?oW̴ 8Ɯw,en_}]6R'<$c`%V NB5 (@o;d}j_E!RcRiROFm3ə*~)hNKqUĬ0Tw+_n."x`Cc Oꋲ?cP!%_&!;;_7ҙ$6[qKt=o-cu äset6P1s<Em;v ~۪_8[ ɥ-|3{LNKsqնG)MUas9Ps1:sq}-;q{$qNnhwW?Mױr!!eQ+0qzk(ߤRSuYs8 #_oA5 ja'.j£_fiE|.lKSV(NU'n,hJ2s vxaa*uv ڞBR Jf7S㏊O8矛\\LtMz vh׸I/gi4CpgQw(nW>ֽA׋gf⻛aJa*nYEA.:X_=uhXI$~I!ϸ>)wu.&j_,chܑ̅mŖa< '̢/fpȹ‹Q}.SQ䧻aC~%JJ푨ce{ZR1 O잔 iA X좂C6'G$T N+!h*iXWWBxKb ,{bU͞]0b&[ ge9Va*gӢAWr߮]Ak_S=5 ,cC{"m)l穒>1< U՘m`8݇w laZHɏqRaiTo]q^1<#h\zP“Mfv+tpp|2߂8)&|I}XDkITk= ! 6 6w4?DBŦ3z~Pa:i!d<7`&ؿW"\'R2<\H50uP ڶ" b8_ b1ɷX{uWegp4܆MR s֛tF1ơyH& j h-u䎿zjxEP@k:#UN*-osxã&5bߜY\S˚ݻ1}z{0{Qnc\&3Gm ސ&U Zw~ *`vNJ%7CZX ^`D!doUOT^48|4> H|n4Ib{tkܭ&rQByCz{?e QɈK+#S̨ p2{&jS*~$I$L=iTlKZd?*g ז ӄbYqvoK+L2~vR$F9)f/ <IXZ%z$tN,(gˀ2bE18~Q:Jzwm˨5ÒT5}.*baa0ae27v9(u9!$e{O7T㡌N $sYP McˤMfꏂND SDgT$TwS?;Y?5|LѼc#G L"uz: Kn7Yp u߃DvpHFΞȲmwWBBpkݏQuGfES \uŤ7b%A41#4㛤rM9L>&ûP޿PVD!ۺ.bNAY*v d NeSyxYR#)%.ۛө}UpЂf?h 0%JD Lr CpB?e #J0cf[SZ3p1A uG,[=>Ѕfk4|~~":7jΪbݙcC8O;Ɗ-T`N KžR5g^8 l &p("Vy|M@}&`iSM|*$6FBdI-`Cb1OԖ,`N'Tpm*N9撰2;ݻldn+tz4o&huƳČ-AhǞ:ZzMZb[C֘HP1D%=y. X$^ V?%q(֮.dUPPǫ$Ohs& 2=mOD3]FO\!:x0W#F<1MBK&e ԾUxs@s c1 ba6Ӊ %>~BBpiYUQlg>øtؓwHU@0GhҬ@mO{mLx* D0`wfkk $8#XdLW|;//EhȺP%`p 7WBͺCHV0 @S>cN^UI>Z僞\0w5@$7,x Bs8<iγҳ,kCDSS+ _5U"-BWh²^aakdTzDZeSQSr:ب$=ba N&%GHy͝VJKVQU\ݗ@XpsE}*~Tz94V˭[|ak: =ut-asӑc~sԚx κS%cK}lkF7u* S; Qz-衑a6 rw9B+#ޡ(7`j MQٶ1 .փ@t3i{5@L[0<[+!5+ &}F5XmKFDRm4D8IȳvP"K~c93PbŬ`7SӥgDf-.^S_@%B0b=&[mT :j3(J*U-ַHRKz~ákRx/scׁ; *{?3cCdcN巁p?ugL}Dj2 !^]A<-vE_9x1?Pd w=8JX%T fkwvd)M&fA9rAn9i4T;<@vZ:5p[MwEFv,>F!-kJFn}L;f>(3CsD6՟Y-1OA-!7"$B<쳅׿^Ū8~7/.74+s}XuP6 /~$?J lJ4.qs#EJ<[/D`/D[Pa(xQK\/}`q_ 7j)ƕJ\x3\UjI mn DMx/q!dwA&QSң=Q5ku"QW/O&=%AFR9/d7E.UN&-e\΄YⰘi-hhv@;sϦ!,ly 5)1Hr-#R60Ev+T,SR f*G-+fh소#Tk[W[нKD>4*}ڲ _L }5uKN5!ɚRww ?_cfwс/[\Q "kr}lh& M彻k͇͜}j.5 ҅k FYG6 )z޺z#(DY%E,%r$vhzu'`M?'ɦDXw2WH|Gį;,s$m^;7V-rfeO6G(ޥlS$#s7z&dvK|VA'$sd=E"Y~U#mUnMQ=So 903(e!k;O=ppMCaq<}jw6[2Zh"JNҤv.=Q4#9e#7oB |#Y9YQfV|bxa^?]Ұ4Kc/}`SbK܊r~n)Z;j)S˧ehulAUhS6 gs+}=) $_.)I}at8ԥW'\I;Yl{[z~EGu&#ptl#,ё涘zCiEm#ufC@oIWӡҧIĴeh8`Ie~>fVC*q@VmʸQn@g>c-ܡJHʄW+Cv]TT4?r^B.;z/'0{M>,JClOm^ܥYx^'$wk[|ށ  l[`߶ѹ8Lhn8Hy7oUz,Ö=jJzY:fy0`%Z! ?@ fP#!~ta Fq _ 2""'nq9уF3SΐU sFYE 0V#mG)/Kb Lkb1Ӑ/'R_q.O~ *fa?5O] EPsҴKwpq^JQ`AI= JUV[I& rt"pal1_6@.P=QL3*:T>v< OP5eHǩC'OϬIfv+ *$#vOBzQFTiBV`7ép_/{t+*l|4֟XCTƭ4@ҧIІ-@2⣡2' aZ4l.t" 9bliG!;#.V$12?dз@-*- D_t3S:]`F (+eAЯw@]\ m93X{]-lԓ86wn]?:UnU`ˈV&‡#`#k0 ~ӰN^!m@RwEӤ2$t-f]J^~U}sL@+r vFM|=zbhE3I,oR/jxܐ?-n .|iŠ:fږ`ׯZ-S̡rPg%|FT<"Is䈡;A=WJ>MW1:o`I^KvFn)"?OȞ%❾1- Mc/{^c=o9Kỏ"0QjT8s%Σ5hQ$ONA1 w=A!0i V.9;QםO6|6Z2T>M?IW&mkx>oM1kN!!_Wu{)Կ] PviR$/#Ar(4@y=$G:h_aq#dvQy$t\-N;ZÛ;?Q烻d Lyqg~h[lbOD{D,}p^+𿱜6і +lP3ǧm%(+ՓٞI- UbUw?ɡQ4$79M]'O&Ȳ]*يOGTL>!/s; WYJ*VpƏֈg5:TG+DH&n łtփ}6ϯicn4t~G Ⱦ0=ғQlg#kw.l'1%}%ϲ-ssGA*rۏY x5|mS=&4FV1ض_UMɟӾbn ֲ)4G[FjHo1d08NuSi0C)ࠀH Aě:z? kNctqtiE`:8!Bef ol#ut;6[JK%:P(Z_I-!}hRTl1 8~=,oOS%0x:`p"cɈB0 qnp(0{~(p7.{Ukԩ|E<>gFagt zC;cJ>əhL`_ؘ?uX`GOD=#H1Mjz4(< nڰ2n+[>$~例fljݤ_wE@r$+ `b5 A|[lpZ0)b|y|g^7aRJFS;2h# KٺeS]t3oSm_}J_[Q?k1xm񒱀LCSt bvq3.'.Kw)`0): 3,i">w/wύ5G U`8&Þch2vr_GgU ,G+ladt˶:RW2jQ/y/˾vVc# `:k}!1#EEAwV=I+i:.- ":iZwrd(\߶[jaG` (_i;Pb"ǿs Rl4ogGc嚢sCy! 16"^mQGܖPv,L*Q_umL|t7 ;e잿!K<[{iK̎!"V|ed_ʲ.\ɝ[^.$hy2wD9u`cj`?b 劓cԁ:bM#$* W9=g4AruD3 vf˿'۝&~Ɔ1w a~`t⪢8\1n;3R 6YhC[R |۫d[($jH 8,\9M}x+@ =ʴf܌&pI'nȲ71h8ͯ*^B5+7?_J>FѶnE^P"Wi:ޣ=$T{I]Ϯ7G%avs 7srZ1xlL[K ty LQ* K0mDB(Qj7mR&%sw~*tإO\UgKLgq#qyiߏfy&} H CˢN|Χ1k ;-\L6i#'?\yM䇿J)@]Tx]-;Fp=g!Z2z>k&A}ܩ*ݦit%};JQ-j$ϵroϦvd'f<&W}^@eA&™tmGAs(˫[gY;_` +\ i3r/MPhHKS\#YS(fg Ƃv&6 z(&٬Vlj]+cHW\eO3˭H FXR5%jWBLVӖ[ Toji@Cc3f|uVIn`ÀpAUBvuy@$41$/&nuNZ}h@ȆB dUƲ+=]- ;T{FiQ*Qm$EwT\߉ H=,=2rg uxtS3aICT$GQ7:xM+)>-ʄdv<4Y8vK-߯'m[e6Ognٱ&GioT ՗D3ѹ&+!OD+pjRXB-`z#Ar$8"n @ Û:;۩BUV.leF!d9n/;z7EΛ DSohwN zPA+dq]NGKU)AzY[٢]vb]|D ҍ%MьBYV~N yc~Tטՠ\s&&S4@oL%N;T@(J#"H0:uC$P--մ(_9:u|O"G"z䑱;'4S_Iﭜɋ4:;饎xPݧX^I(!l"R\"O9DX}1"g<+ǵBpx୼RI'z_fͯ~:8Vh-Aч1[3U<s9OwvLDcKo-jlﺼ(TyCcV7P*{nF9Zf!pNP v}Lū[6 D%gB zp9ڽxġ'#N\JܜZm]H )DZtKѿ9Fo;ؘ 1izSavJEg ) #+OΝM4؄x<*6Ty⟱1oX*~)PʄX>E}a Q$G#P,J3=c7Hڛi+z*>W[xD+? P}ߔ3_%^ynhh к"Jd5U)cESɠdqDXwgIg." &%C,h58G*18ۃ.~!A˰O⋦F#Y?` 6Qz_sV~],kدr鑉Vt'K z>E_*:o7a#pAjꣅLD buݮ"D>&t[s4w M Qcz)գW{Z1d{RߊGqCf,t:ANAmT 1gɲ̷kŷgڂ1nD5)HE-_._zSW m] Ng䳚3/v {敹~-0B'Z٨Q4=H慔*@#,0`{V8yC}뉅%OdT{ja"| h{_ċ 6E﷏H<$f5i+pk |o7 F(NJ:A+Xrog1r Yk c}) zxn Gtwi3uȍ;brMI d%-€z6.)pziNJD@q~(2 {[sB>'oCz%QEUM.tq~?1ۉѩL]_f 78ZHvK/g )YqL;i?xh]C+aDW W`4,,vr.LDr/O6qX*؜ _ ˧ƽFը À9ۢtSn;Quy~$n\VoLx^2C|I׆J ňA8]t#wV>+O_rС_[x74\DB) WQ}Ai*p^S^#I@9t4@N"*hQ ;M3>"Ϸ"V!ؒ& tTق4vSAyۋו0o+XCDo 4M'zV. Kfu&DhW?[_K%w7b9P :Zy 9Pw%ݤߊ" TFvnGwkիHԅ? 3^V~a[S[ES/{jϳ9|eJ~\6\ GSn3߼wq+V/Zpg@j a*x+<>07r^o܊Knc+J8JlѼpT{ mN,)αeLtU`X5R_(hI`;R30(QNm!-Z@?+%icyq/pbɟA3p!xqICПΡE=6q$ Gohݑ$(Q@˴nVly= +oȋ551%uUa赮pXXCn6䜼zqohyd+&4^桫\1 ַ<:]CK-=lXV/jΕ:6H|q]曤YiFM6vT},@Mz~ҶZGں s bYϾ_' ` j.ϟDHʝ}G6&uv'L(0HFtd>h%ALr_r22@[=\IJSKwq Ea 4AT3DJ1 h3ˉ%Ca8oZz ܨz*M륥)?P턵Lk^ ULzɽaAV}/P=s1bW7v@v&ZRʅ`ѧBҊ~9 SLu!߮/G!$<˧bUAفu6H^U@ :y#d*OCYXl\zs=MEJTyʟO7#C\š~* ƐWh/ K7u(f>e%U'#j!'N(tuB/hפUr&߱.0Z4<][MsToÚ\_F!l&|?-MA{.7GȕIpiMj|iND0 =5}bkc[?UHKVsk_Q"яՍqk⬰ < xsHӨO54o_U7DZ)˻%:tcYaT|qڐeKaxP="HzV^TgjxF a7`4fE5D.py~LE@k׌Y9^}?!Bb8,,H`a ;x; p XNr`/gu 0(]\"C(7*ԢuণƖx0,uDdo{N7%Se@ђɥp0O;e/7SV!,ؼo+ Xn?wkH?G#ɥ}.Or!Vר|LgłX\ZPqFN L*0-kH.j(5U7ds vkJ8 C.nb(N8F"$s C~倥.'L$PjxX-T8aҧVm2_RgxTn?at<.G$g3HO5%ꡠ øҼR0źn/{5k lG:exmBl]8=4v6sK6YV$ggͱ26\AR8UH2@nʼnM|a?Ңzo s.LiiO se9P;РiyI't2;pJ?wl0hW3? HJL)OQ&gJ-/fݚ臲S[M/ee@?So^E$:(4U \o5sCLt) o0 A7WRWgZ1R|cפhp%bJipذ{n_R9LMc1}/ h Vg=|#ۮ)fnŷx[EgԻ]LF+jYo]c#"GϓDHtWح%M(غRMܰYCSp Jf5rq5[}#-7S+(.*b$<T5C4g+逬)E5Fmh5u2DA.Q=:bD_Z6]^-zτZ9TQp:]8`–P ~'Er ii'׹!㫠:>\o.!Ksk+Α}Ոm#P5q@m_%t=X$ֻ%Y]&ca < T R jDz4gVHV4{ Y&2=Q,bџsѴ).-CCT /4P<*N0]6g%G[ p5&(crLXe4 )b۷Zfy PP3M[mBGm ]\xæ#1Y!rDF菑5 r0HY +W3iA -+?GResqK RSqCayʩnJgF e ׊7VhB΋?8u-^\ٛ1*,q!VJsgK0SIOOtOqZq;$fbKQ9z0LgZ W4CfWXjLDt^Wm'ʓH,nBwB"F1]VGgSY g P4ӟ<|ϖ g3#twiSkAW֝'kF;g)8}\*ij'>~mFy֏fM?T9R1i߶7i9Pg.Xwh Fsa#soV4IA7\WZu~$g:o) K\r!X5@s:1TÑuJȏ,J7U9s:#x:YoJFL͡:aa[%SQF tm6q6l/,oxy^u׫;)x9Q I ]8A5{-{%jzyHmg]K?XiNT'TEYtr]6&S(p#ΰ53_m.:$Ǘf{?c @u&9f2 S9!s "FX%l% ttjpg@Z;񓯂ŵ=]HJ,Ȕ&nbwldE'-VEƼ1rֶaPE#S0@H@q2K"=`s^ӳ1/ڏFދ* V48;٩DV|\Mik'RP~;Bq-}naiO~_]'}^Ͷ=^e]@ȗ塝YHˢ9s#D(UA'=={SKhpA`A{A9)ފ>3}6Ғ +A t%vD\7_yzB9)?<1ףicĜh^pʲƨl~\8ؽQ{zZL:f }u-}^1<֔p T3md}H[$y4f3_5h7ݹ;轪j\i$W#~~ӲCH/Sۊ7.CݽRv*QB\_raT$tXbGP %/w`PuҝՅ{ʑMM: cDѸRVYu"fR]\\[O,ż'Vl빀}U6_ 8mhFNKKB2ҹD}4Bo9?gOVS ~CvT.,"k\%ÿ җu:I [+r9Snr orD}I$UJps5nF_'*y(8 *GP25$䆪Hd?oK"Ks7.h%ti/"gC!9k*F,ЗDS_ 6W8ΖI(=lV>&0[ƨI} %Ժ!UX-riU\IP׶ȥgq|ƐKAlJI&>@R8 G$JBwy ZispH(+*utx!\ݿr=627qH$W1̘U|&p /RTry= 7)4Sn5hB&*'e}[Q3ΥwO\?""nO&r B3( eV ߩ!8NNR$!D hl9QF>)y[nqQ+ d U"C=AyY7ZEaiQ;fN}N1;tYg>B]*^LF.3:{Sq.萆%bJ2TOqY ipWCA(Ȅ|Z?BЇp0fȔv] U/V T*Hq]/=k#s?35@fx>D.mLCћM!gn^źj>U4MK=0=xoǒ3FZ7R 1J @9nSY^Dh{yRRux㙍l&eM&՘Y^S'PZhGs`?F"+(F66D35E4ٴtxW$dXw ?ePCERac E^-02&jQ\St4ŞdCcU}0~djRYm |O_K)ߓho 䝂5Lv$'8]vFn{ FjC1׹]>> W)$}RbL{]cϯ+ʴ}8 Nu]giI }-[[c31W*Ls7`X3 S'Xgلa(*f4Ul"0*h d6h]$  ݕ>1G tv"^ *kWYO@fCLh:ԑuUl"D"}j U |Fnͳ]uS @ (ۗM#G0)(t GS * suaKFޕ5"2]p}Z<ˆ_Ȃ*F$ !ذS; 7xFN.SF!FuPLɴY(B`!~smvίP6Q=Qۙޙ/G;< u. ڷ5$"_af"7W.4pCgT<@IYߜ' $3vz$8(Bc vɶY<}ha2ڐ_Bɩy+jkq%a 4W7Bo\4B! 9bC>3bPťPq(,j6(+$~qf;GF[Z0,~v ; q3`lVrVv}r}֜Bl?LE!7<;!}gOSP64Z-/a^hĢ4bu=ԚDBFf;&4Y[ s檞C% 'aJ(^:Ik&ArYcV]NG4TSuT*uDhiU(شU֡9 _ Dhr7Mjf/{Lڔ vjV *KOQ$ %٬ƺ.MDDyLU06 Pc)ޚ^B_5c=4W~7(;Y`U!T fµܓ& )ʦ= )bM}EȾȵSZC=*y*`NqԾ#$>QKPrb /"֝=Uǰrz95B|m@`%|egp 9T>*:k -:w6Hhu(J7iFMѪWo+zZ 8-rp4qO(KcD,uM!Ey2Kh& 7="`-O7F96RA .FG&5+9[# e|{ P\ 82M֟SӨńiJ';>y&tgvG/RD"-i3ۤ*> +hdMLp\/ùM;RMܲj)M v g,կyRiۦY(TѽMg'4ޛt=OC%26iWZ|9p&w./6qA-!C>*ݮ Uǔ4 Fħg'{h1hvF˚٩M6=%1oÝ(D 莺fI/DG%P oطZw6RXO{uG*Vb>12[չPbl _36A:iGdi8EFW ҷcn", V|zm3?y<4ɧH~"ժGdWb+HOP$V<2>KjyusAe= =6TF~f `<78jVZp3[v&X'Bs6?5oR%[ /J#QgT:f,=Lf* u`y[ƞ1x.O zw+E)Ul?F 3j f ny٠O~VNc"z4`1[Ex1ZDZzS`c&ڃ?J :`s@u-vX|HP=)qtcW'GF}'[ !185^>|X9q~ ŽDBWv|-<iѥjViUtgvے۔\3ԦoBz}x{c=U0e".V,Mlslߌ-7A$!0l9ҖcNm𨝻yϏZuY=i{Yv&Qʷ덈4-'%4=Πr2WVY\19ʜeBwnWe_*ܡDMU C"y!`sCdtV?౴<>[-daYՆS*9|c( [Z`8o5Ȗ+İ06Vr)9*Wh5Ā|:6f:~\ếS )RW8FZn^HMfI*ka p&.&Z2Kiۆ d'yw%lYWQM]Resv%t!TIȶjǸCA#m}͘?~} Ւg2W_[ P?e_1&SgDQ`hfX[a*)_E46Mg͉z$:4+7eb,P5Tɠe*BAvJ.v/) Q@A_\ncO zKsoj,TM I6K3cn2\"ϕ;Áu1Z!<+\P]*YFz[쉷l_-Oftw<ҘkL Ȱ2! shx,W}|?YM*E>xUpz,L(F8h8[@ͅw xJ@z.}׎A>92_!ZrH3f$./a 9/(3|E}>5a :}dAX54I&߸p7` j 9NZk:"eN!1ޖ?j{bkI7MhYPQ{X`̉HثjUo1?_oI oGsdϖfJuur](%Bq_4˜qy?h,S#=?mCB]>~rL^^O8;1QZT.))uT|zk!&2 AyBʨ(p}a|k-8b^6M׮h-SUGwx=aI AVmC3O&9Xd]0Ly5ivs+yN6M=-&)ku ׾VyCefOY{"l1 :(KB4BFʡr[`>% ppR_x*MPu>TmMfY8$NI7iBڋb? g5E),֥뿅@=QO$I Mq \JZFMs ԪHx׷|)F.pcD0/t=֦,qw6{.IÑ5ƈg{R>x)~W7Y{~+; yrPh,@h.EOz0YjϘ(Fhc1 2Ub޲Ԧ)J47`4B(zthn|"ZfK)h[V&D:(rM:Xr2z'udzKhr{oHf 5NJ;+v=MA@?s6~و,JV0\(;DeI.ꅴ务yq$gM| 8P)3$bMfu8x5{IdW1l4ZV8dCUzQ@YGIƼumz4^/m+Zxo>|GǶ-6Xf%12,Gڀ&NBHPh*KlxB5gRx!)e"4@ܚ-LC S3dc@3pMmy+O|{d)T4 k&MHP]H~cHuW{DWo ̿f:2F׆D&[wQKm u5=m(m)\5qfOgK"ٙNϒ|q%](3RMŀP؛yO q7Dk^+%?YWiwFt/ 1y[| * Z_{ L!$%(-Ȕ$1&EKߐ%)z@&=gA|&32tCdkeSg`]G`O $5 fAϥ3U*:jiBFҙPIS1UҲ+] .j$qU8aw*=_Jq{('^Ef=3_Ӷg!@FûmΞgnNnH]Au jdY9 }zs޳WP%ȧmBIPgz~Ӛ[/֢̿45.O1id ҎP kO.x&h: c9:AZ2|IO/*;ο,i=<y9̟?UU M*/Cʋ$UrDQNXzN9+;Eƾ0FAƠo4D9݌Uh)y>v}F$Ymb5Xѓ[#(~p&)@QEಹ!h/څV5G1if; " RS|]T+)iyڱ4WgLR:I߽K;` Pi_%S+8-f ; zinb1J/]U9S4+^Fq: vOBи)#-; ohFi@W WD`i]c^(F¨wnNZAƕuָ jDz6oNp:}cqT%#vm**-h6Q X6M+Z"} 1Qa6PӼ|4B\&gޥ~xUwȻ譃ohvu6aETT{[-Kx%گ kY|L4Tg\< ?W.Y>F\-,[ޠbnP2Njw /z i X^JיYM\B.DDXII֨1"8dDӝonXf@1P^%KKM@ t l'ȀSDks밴*$OMx`̪EGˉ.紌4~Ya{OX?l74~@ -Nӊ_t7AΧA;哿˰#miX_n7}YPY̓0*_83a 9&A_g0̂.B=t99'<*ˇ=s3=]ۍqY,1\CS3AH!iL"M?FzWȗHG+z6 M&Yz! Z!IC0"e8S&5h`賭 qUB!qD Ds>H2@~3ʺv+&dfw0P llXuS.Tq&SOiNy@ 77VjL>pU3r=XN(7Sȯz۱rՠF+yڰFʉqIc ԼaU]41կ LK5+N5-7~̹kÒ1.ZH?.Ry1w<hFywLUeyNN6 FmzF 7O{L}{N tdF+*^z E༻ԑ'+%Aq 5^jeY6jK|}Ūy9UY"5Zf~-VꈮFtevLITZH.[-0N*H:)ѤaڶG67'Hy,K-e>j)<@W{h$%E%By''mtYFʡ%S"!麱'uHayA 8s) nêV lmT_ƒF<Ɵ#'cy"k|&TIfuz.8KKv\/<9s=.\QvLd'_n"f݆!z"WG!7i; E X|6sxОʍλ5Aq+HcwnEm4+sn TSH U+Fjڝ: @qɓ`dnUiEsCIF?KcAsAсJ<6 0ߗV,X䨛#ōgO~:cqXȦ8]G5͇fܝҕN\5d>0;,tC\zPtpȪn_+ &âh҈, ;qC5a2 |a(:no67xH]Yt||% 6yy,'֎/:{x}\3XQAxk*a:oP?5L;zgq#<)9v5Wg#^ŋF"'K`I 0 Kwzpd[ÈCfIL`WͷBY|T_M phM?hc󝏣>zFǺМ?˧݄_D NN&͢mnicbN4du1rk?[NIK.&44XFI[oS n8{#BW9pYUg5WaOnܭrN}!@/Q `X ThM@_FKpKU 4hK>EcO*TJOlA y1Rt@s0x] ǧ=ǕEn'T doyVU9;K[ݑG2${7.[1}P< (o@'7xZ*s7~ 5w41}5EŶ=G9 *5L6yJzWS jz HZ}?iǬ#9,#ϵS*$,f~z~8ȧ]XgDpf#un:Ua#"0[(38hFR{W018JCHOpsNDIJ^#Ԫ}6(ER2Δ r}紗 ҫµ@z 5q@[ZDg]#0 2.ρ(wL^1<3 Q*OxX\9HJnxT@5;Oɢt0]^p,8ȮߩVf?MAkB(@7Un2I)WUnxsep;kDP]R-0|1GkSP#²b yPP~R&Qxv28^D,F0ܰKtWC֊URjy<_m$xfaU}hh" :0'%ą hV ܸ[?oF|L/KFK4s2φ1v.U $P'6)2+bsyН#d1e, =yM3 3| U $b3@r&o@/wd0c *s&I:;/#Ew潖?f { !@w \-g߈Ji}'uTQ1Hs$zވ̶f1]&n12`sZs?5kxPdN6}sA(Ud[z@X F$h^+k -T00*2#  J|3C)0 9n-|V̠awuHtjUg' exg w f]pLn!]١1{k"G,D!O+EꓮsL-] ԏ߷ .H@iZ6f N!ܯTW6Bs:J0 AWFg$Cr&£WӿŶ5&`ڨ%nhT 2x(nL)@3, τ3HZofl&,sZ I"wW N0`s!}g9R&;5SZͮY~)g%l5v(%QsՖѸ&ctYq37?ĕ[&}&g)0Tsțu h 3a\Lnc :#:ה`W%ec^ v6V BsS 1(fFVڥMcCwR;|n'Sf?4cDQΠhg+Qewyd]$L}!.A/HmRcsF\ؔ7Ie VT{l,uC6': b!~=DK!m>K GyT3/=Lx^I#kl e )ڸNt /x) ZGD4C YG j:R̨$SvY7+'u5gY4he3IO>/%jȄ[ɹ+⧡zԖE{.QJIaffu2P<V[۲hCUe#Y_ kM>Q,돫'la1UD͓oG{eG1+N8.=lI)R9$0X5Jh~L-^>2/ŧG{PU6;&d5xWzerrMfHFl^<Q:y.;m;uWWi]F4 L[\d(?mu.7P -rm{83azDdrdgXau40B,j,:yg bVLS| X*pDʄF.[OYF.9о Qp:ԛ2x|)ѳ줕LjoB/5KPNqǥz(ēð[&{wu23Țf(jS̢c F-)]sk qF C{_+=irXĂEIe.Xl/fj:]6nYKDg؅eY+[Q,on8.#Е9->N鵌sAbCe0~h^j .hfGC ?@퀗/I!o1z_wܢen!ѝ}K5qӽs~(Q7*9&m 2^!`#3 E;cג(wIE<-x64/mh{uK[{d{amnb٤@؃-H9)|)@:O NjXm{3'^KS嘠e)V-{ד ( /90e:礼'=<O8󸈎~p RWmzSbtNaA,/;hR~ (zhXݧflsEf' I1BoUKҋA^c hcƝ_S%Uȩ/+V6+gD &,u@4H^^ט遞T(u;{ZK]i`@?&&FP}9wQEiJǜY[9l|g%Zlu*:Χo_$fO車vtV5O]:D7!&T+Tq*L&qr}fױȌ{W&!d(J/\ђh构rS`YVuFbg&(ٜ Du5[ ?cyw~3+n> 1ɟ^ ط^r.ue(po-$uZl$vm=_C)GK-<ڽ3Zy[tEEbs(v@uy@G1Sf=8Shw8+ը eŢUQx1+xF[FcMgθ=X^\n\21yh(!$iLF?$@iC;vL<(=|$RQaSd$\a: \\DA.:"v˅}Pv)S LLkWB=c0qξYS|ļyq.o!Wnd4ccaԡ"/pyGl\ᰠe>7yᛜ_w΢nwdZXJF]1:4-i;J3R陒9 tTSZ < (-m9 /%\0J+ %74$}a/udj$:7Ї&<6/Vy͔ndK[ -xUK܅+]ץ}$1yPåVKԠM`Mp e{=4Ղdc8*VB}V,8XG|@ wGŶP81dAtq׮H5NjyR-GulNs[U _byǯX5jfQj% 'άlFn \^9ڿD'i,( v?; Lle'NH;"BKYؗ';Wu$TP-CW.lkHD ו|{ u_WvVA2%U&fED3Df%gj< :Gh09 6XS&&`| 2s$5x= ñx"2`inb'Z)תǺMrs3z!~ 񠽠yji3^wӴF1l:M$q鳵<}}FRfӥD a#H6MjεA tl8caTөb*̸:7 f w6IavY 8SP]5'ORM~ۀx}V 5Qo5~{,k snv?[Pho+Kk9]PaO}KZBA*r ,?Q_; 8C98d]ŌPew!k<֞3L#--ơP5]dZMWb~Ge} W;rp j˺;x9 E^U 6.eW|Ł߆3Sаoߋ28j`͡!D|n MVˑT6V֔k Nf>~wXIbܣ>,]iV(BF/ Ab3c-,HH#*I5 }'QJr``S7d XqhrD2Mn#x0oJe % {ꯛjŮDn@z:sjއk H6UM ~_"~Rv(WlDv|NWk}PE_R1"Lg"#P KhBTtutA ] ^BS*Zjy|fiar<,Gߧ9p)֚ #K5G:V ƴ\ͥUsYҍd~W=uᥥ+W%=Z ($V3 cbd?Yo Mc)b`mqo BWAsY"vaUZ|mOxFdTDrp# }C*A^>oC':}e ~}逽 -#N&[r`7`cb岍5g-EK#7|W@}޳CUni!$ m*~lAG+ܙ70P(q Jp}94)qKyֶY ݈G-h͆ oshI_o`%?nJg`Xwh[wh}Z2$p.SWDE+`(9oiCwM' wavDd,)y0+&0΢.w6/ (Au]-E0|P'Nڀ^>X茤" 1a΍Cwk,ȕ¯/!ٲl968v7`6IHRǯMEp T;`Ol1uBɷ&3. GS DUكXoA+n~9/6bYz3JtOQscpWC) t%D )>8,a 峽:@nhWq`6dL޽zCgPN۰ݷᒴh NofxkOGha$fUh@z=h7TKXqQ&4]2=!X +43iXЕVN^ yk Mm%v6D *?=3Stmű;7+L} aQ^pkΝ{Gs瑐.~LvM{Kd~{ ʹ4lj3]'ﻕp'Gp9R,Rf H> bvE<^Zd`^qYڙrXNI +}dY^9B"\IܣhK>pޫcE!"I]m3Ѕ BNVor__ʂ.B躶HWLl}({FeW.P2~˄yS2[@[7T?|s/hzʼ'bV}y85!4ǟϽN6PP%XI:p[,[Mi[)-哐 (W,!}M5gsL4|fX@ةBU.mP}F鶠 p w[.z˓#QK/BJ N/W@Isk <”>`;7(*bM]6/(Я=Ý 7.!㯳Lㇿ3nVV :sI1^pڻa)| &*[0m$֪ˀ*2haHnZ~dGE@lZ3vGޢ1mdC[Z䴍Ͱ[SVL({k, ')qf g1<$ģ}!ɪ&AU9W.#my0v=\F*ELho$Y9 )*IK`BaAE}6aYo>>@;(Ozs5w>!=\czu.Q߀E5ǰk7_χM.k<i7lv[#b/ߴT<&tá:$$UlR{#G[z$2Hŧ.9=Nwg6ޱU>!!kf45}JNS Bldl $t9Ԟ7\z.oZ(Gɟ/]'SVRv h3=~̕&,>H:U Usxr_5)Spo&; C&,^$%NP; pADeL'A׉Z75]4CyC"P9·21 Þ{ě;Ěvir=@&`) l0^ZávItC\n"; F߳,u|mL$q`2V2Xp42 )`S Vt0> XO2d< rdhN'[i]>hb ]O\z^S3-0:E9̏JE G#9f5}j4:#ɍ,mnk &AꑬXI*]伲$ԡ4Aa^X JadYR[/O?P2?,$\Q*qxW3Ò8tpMBgsBN1ձ* ԑI<?= /VC*8M*~Z&&g MMTkI w x%;wZpGALyUxٰe#WTҜ](p^jLPUV]ɸi3Ii}(~8(.Y\;k8: #^푸 4&(/-g|r˘LτF۫;;Wͧ}{߲7>`^e. R)|t gE 7I-4-`jwSj «9@N7jnQjxPd o?< Ɲ6z%#儭L^/zaVru>Ӧd Υċ%pj3*H][X(crvY_u|͎p&ֵⶏVo737O܎  k 3*ސz듒ׂO8Iӕ:#4diP(au ]1{N o7?jk'?BUΒ[ *9s<'$l Vax8X/;7x$wm~!mJ yl&H u/5ljH~abEY266G@3z%zO9C| GQXkl^$2&895j]~&i֏{䊱wwNͶxm&TnbuVew׍dlӊ^wpth8Stn;hDg hh39:`zF!z+^U5ɿaf8׍fIOXkbU}mT0q'?$wcs=&ʔ{3R"uHh [5=CE?8yHک ĵ0DVQU@툜EyڟF▒|*+˂wu=+Oi|t'WGV=1Oz5iZ44qBflȬtuX͎-]H5;s&.:4;B}xr%Hlָd(eGT܏  3;HZ-oCTޒEӱ/A <IEZt;eQ Vs6`E44P;~ Q&~(@+ѤջUX(XAVʒMY LN"5{*gM}A`>8s ? i=ON4LUX+~ԇ k 4+` KHp/ªفFԪ҈[#E7z0HJC&0dEIMMtS%iE|ļ فw8IaiYƂwJλ`MTi[PpH;We0QWȇmNFc1-Xfb2P\3^ײeBp#٣AJ,D.pWppOpGRBe҇J9ʃ[RV7mf17:@L2%Iq)8oD,D1%a ?{}F?8mG8WM:滶QZJS>L_@b&UD .c<,*(4KƄ;^ Z M+b-~* oc-`r_os#j:Z\myㅸ rf ,kU,B29F"ltE8;䎲mf"3,ቄ WQ.Pk,ta K\+|[СY:02u )l1A5nEKB'/W@TԒ8: wTr-LYn&wׯ|g(ݷfxřG 6SNVXpiqԏ4ǀf&HO{K{{>㍷4ի=22ܾ}\:sPmdQsx)u_'cفd7L̈m04 nE;L[QA86b0RWֳDmmuH7탴 7{]ƚfx[Kc&f] ;Δ0j֯XJ{= w1QR-*Vw "$Й䟀|-trݎZ/OZG_[^5򑵛gQ#͇u`XdN;157vwHH7ȓK_Ā\aK#eKq}һC`W"|'Pn^I%}A1530zʀc$NBCZWbYwOl8U"ua@X-?"Qͱ\Bi w+`Wј8gwFt-ۓfPx0 X>J\k~vJ&v)ߞc%?ECR u5˟i1u Dld 1N<TbE`DS$.ohQE*J[{{^)de%!҂q]Y1P6d$X['r@\R֑zowzb 1W)0|{x' /"IMӽ-V?咱/.1\p.gM ø*ӅbҙW%la$Iln %1tsXN4ti)(ζ4*"#]\3;^UO5 ~"ij!jZo+{ͪJfٌ"[?A|/n[?\KV FpVTL3ȯO|՘${)|#Y\3a  KˤȀ~BFkn7 փ;Øwb; ONb/1Ly-+z>8w\61GDJ"ohA-CÔ97Y-~cOG ;rxk} [oݮ4[81s"r5_H'ivu#00<8.fZmV\d`uSeEa'/Wwh}Uz]"ɞ+LW(IꖎL_vǩh~fT&3}adhܙ$#Vp!xy*ӗl"C] o81R~`7Brg]Xx5VQ }77Nks$-n/2)\3AWVs(`_=IFo9[],VUzg9Gڲ Q;A@TW+ `WkׅoM(_|aEijap] )(DTxCkeO=B|81嬜t<^q{Uf:P {^(j1W֬Bm:=,X㮼5(jVB/ 9hvvz b3ŹibYVwjH?f”3ݝoϛހyDU٠^oyvMݵgbf0 ?*\g#SsmA&wc;/\>Zu)ց =eɣZ(wЋ31jws/Bfզ Fl=H$BCP(c8/RdA#S=J2Ȼu O]"'_x1 GՆ%2% g}Gbyz׭-T=j'8iT߀Z?/XGOB7,!(!SxgÕڡvWvwoaW\[8arJS=RN؂(Sí䬑{O%Kd+A3ˊ7Y{'L9qg?=XTvf}A?7d8|Cb0]ndnCK[dfS {,XvA1,!<&zC\Jx 8NFƈOwb@!$hF /n5{DwY;hJ3E>'+Ó/\,xW|58ۙ{>*-?תpK TR4? = Aӄ1ܸEoMY$w1LSC*$P9b$pgiʮG/K\xoV`iS{z),~x)fCESV/9ߎX!lvJ=5}f&[H)uAh,YpUQvh`#-c]$pvl&N'gє*<1a( ej $ ]~mU1T 冁Ndo,Ϩl鈽"& MA;X 20KQIl'$, ikߨl.Ly-I?Xȸm#S/i ekO^tn'cڤ_@tٲ"u ƕMh42q+5 ;)M` ΞS]K&@q -m=9 ei Ks}&V$<) BƦL.Y$]O\P㦿h (̈Gg2\۰ yTѣc}CVlS }}iDϺ+0av~;r٢Sip8 1p45En uynj``RQ>' t,>B#V hk8*L]ll3G{9*)9/%mj6F1|]t)=i \r|waVI`_}Uk9-J-5 IB_?,s[|oCŠX3y5Zb32@q] ~zm!z )#=cet9#v::닒J.DKFT9ӼcB/ 0!כ5V =Yf+vaq 1`KvU~<&촻ulWAI쟵ks\TCNxPc\$xu.R,zLreR FtWYj¸k!N+Y..$#,Rߎ+!#ų)Lz`Sh"cת񞦄Nޔ^7)aEG(_1h12JTZ$Br4*Kzk0E rLlo2%ԥ^.UfMN1P=S;CYF2ⵠC,ݸ逌˺D.tP엾gM(fce; }o_5qZ/^j^y2;OqqѮ_͹)RzݼYq1KMxa?G|Ncxp+I3R~g [~p*R$CI[Yg cr1C&C(GRCyѭ ׻y[l<ߝ352-E]CZ+F)Pe'낫2˄&l](I˽×L~ (R^/#SyU$ĘIAW}`Ak u}*j 2Ԙ@ `z-com׊ ,>DS|8mt[ ~ovXa@РGM:Z{PUݥ)Svtܦvz'i nctMUX94QjE"ץFlp8BrPE yjЎ[b`e!>rx Ol+bѩӔYo& QO]EnEZ7510`0.[8'VJ q$1BUjabtkdDnxa>F3K5Tۻeo*gv!y"*&ե(pvNke OTykH729o3Y6j! ˅` Bb'8r~}+4]6 e\XldӮ7~{I0$br6v@sI5\ tU-3juPЋ CB"(2HS0;sʠg>$24칅|Q!JoUɴߡI&>ǥ0*sڬ'1pԛcY$-LV!%8~)7"WVc~j.1ئk}2Z)41^]St; -\3Е:h󭄛tI=wPGPY|4ɿs78t1gY8Nbf{7{ I+_Ns*Wn>z+KR^IyRۀ7@Ѿ:J3;xkpeٺk~ES1^1Q u,r<ڝwtJh|MXE31%>Egw=G?r]Wv拁S/t&eH h8" Plhc}>y^™Mn?f' D"[(|&Z1ҫ~fD ,J,(`1;,_Zp 3$Ol_3LѠ,24tI83 V>e.`R Dii%qVȚ{@Jq~aQ֝G~t9pPy>1V|%&3CBI|lYchΏ= Cu IzC(vsZ[n]QFԱ f-z**'ثTAyI&,ȐLy8û.R}Wrw#ET%VvnI i1fC)yjG+bwфeUk)Ab,KmEނ=!-thx>ugޅ GʢAkPғ ۵rlby!XR>]~bQGֶh0i#n~>ZvBN70I 4=`=Z1vr3]jZ8ʼ՝RvLsHMM"{r?A%ˣBR ,{ofėmױC]McB([B2wl~kξNT@JڭA"CD 19 x0&ѫf_Jd剡v+߯82m(B`6y^]Otq۔wB½,[zP<ԡh }]U=0=>&O:w/_̙qCqu!jqSe|m(Y+H&ݹa_cGOB?^\32*A3`Vczg}}\ru n_*@HxtVRaی8u|eyF&KZd?|I3pʨ9!$x7?pEAEnG1mIY@eMħq7ྴ}˫8¿ǝkv4E"β 7ecVRJv"F00cup,iTnj)+je4Br ,7gWj)JvYm3#UT׉ Rl{ /s>Lo&^l`m_CnClZS?Hܼl$ jı@(DyGa0!9Y֢*oɢY7 Ai&2Vg=2ρF})7q9PZ̹`Ssl77ֱG yVۊV|.&f)z-#vU`6մ)$GטwVEITq뙨_2SR~ͧiڴ[2CmMKwhjh jq%B)#XB;r ,4O䘅N{jVX-`/5GQ[e(ӎ313ʾ;qKY(9_pFd"k3dp*FHM*8Pʷ>y{4$JfVEBarfC OϘġ΃f!֦+DhK#V`Ds[kwaw) "@CSVZU_H Q^n9Zjh8f@l.1P/TbEBk|@kjH8ǭlkX ~VLL#Ue:a󝮰D-Ļu$#܊ND*ZHLOm{GW?%$rj0k^QD7NϞ3my+XN ?*\ZM?>yV&JJ`{eNPW$DcÆB:!܄*1B7P΋ӯ/\F) KȨ!xnL& MRJuuC|a~{]2LS Vo pF}xNu>FJݭ7Y|g#sw; O5NԎKnٷl[UW ((AKbR0+?ey~.gur?Η.*xtZ"7r] ͩ} e?)(R&/%Db*n>P bۤI$Uqe2v*T/wYo칝*tg""!~beF1r[ٵl(ǏoA2]a;@YP" )cS%S'嫏`mӜ?3I]Pa ō31Hવ">2_ @5'ZJyI6kH vűape]lb߹)W8,Fa|b|SY}+;b ZeyOI/^7mNkXQi}=vc!aiU\j#Np.-3~~e6 `c\Q1}зOGX  ɼp<0BH8U RH j3>- V&.DOSk0#%.KXCTQwX?Àˆm8L7ܪfC\.-@ZؐelsK3 .WMm&ũƊ2@{j+%e7}! 6%X1i`= 趀 7'Bmoe`zZb^oIN\@;tJV)P&cC#v:U3<C |Hi-j+@yzM~*yΓz+7Aֽf_ƐJbW2Ϥد=z~_S֋z2[Z"iS`w_k52g6 cc(9"mE C;Owh9)~$`b@yU:,=['CNsfC䩚5ȕ}MLK69]GhKU Hğ-]y=R=˰t–!Sۆ%яSad942hM=L K3ÃZy)|%Ѥ]](p&=ph2 JIgTW"S_: Yej+ȸX4daEΞ_cD3[\i?ѳxA@(T ^hO[dתdml(d^W" Ao lm+]6{?& EOKk+Ytس X>PS78TpĒZ]:hZuvvrn[rݴ:伟L5IX @&n!P{%1VE[j\]A# b֪<%5uWu|9yQ#X!|Cc-9Pm?@8f\ġZ۵6&s_I0oL60F/iIQO#7FN wJ19H/B, ceR=Ҟ?vUћ]q3MMkg!)-1v64Gh``WoQ}en q49[_/U@%vVhu%u?"`} wZР2) U[LؼO'r';:|RY ɹP^j|3 "x̐c /u [&A{OGA5Z5,*_aFzJ]aӻtF]e\+d'c,!KKeIQ[ e7dlKdo#\3f- S{ o%GJ& U_3vW>O[2=:56!'9X\q5\^b3LW6h(R;O\wvIV*^ꅮi <޷[VCHG7CKВa5R^PNm']lHHN Rhɠ/05nZra8;w ;P}WZWo43VJޱnKecrN4Qw飗mE\ za {ɥ`g{1=(`Z P=ݟWxzIFQ:llv'vT0OX_C٦ )I{c3>gvوRNupnz#' U# `?"#2/.~Eǂ,1 Sj(QD 3;_5򏑲y0%P]@=C*|zD[0 GM{'LMBX)dъW7o옕@|Kuz ٭2BVwEY9+q0n%5}JT9<ڃ zj:}4V 9nt( Ŝ@/eKhʍIḴż 5YgJ`@.;a?'.$l$}f|ځ"qGYZӢDdZԑiMߟw1s` "=MW8|w]rQ_+^倛Tk/MRo%f86Tirx?hȮZg(+C:q𡌣\3H s5F`AgKEЬY}`}PߤJ "]޴md,`\Vd$X)8"oll1"/fۂX7؏E.Å]].vfNJ5=L/IwLpN+K==,:a*.U3c5ןw*ʞqI^d>+tjkAe ]#qIB] []`TRY>+ v/(憂EgX@/q0xvNDZj"Yni_L 'K1- i']xȓ:NU@Ķ>kGgYC1Mx룉2,VqE5j$>ӊf\6.Fz%Eٻx}e"7"J`1r+K'/:ik`h)Ph$=XӲA{ V'y9~h`$2iP`O c:[^70l afB+nݭk)4e\ͽoiw9tޠbĮ!r4]tQ*8s̯З:}}TG "_Ng4q3`+sV(-1Mt \w7=ZM[76N(>+S$"2![{5.mxc2~YVTivmGqёM#csè2c!Ȳp֟cd%~Pj;Z+bXϸegoeMKqn7UynЌET!h9}kLUa3$hu).Eӏw?jsV`~6xtHg0dE쪮(v-SQv}A6R 5 od96U"ԯ†lި~r; ;%DluySٰL*B~<累}8&ĺ:.%}|pT1ҷmTBf9@sB;2ޢga=]"١8{7v4-_z96Ƈżt"#hA2VK!L=X?j?TJSURzrVYHx&.j$nicFMCJ`@6 W]c>F*T/}ap6 #'}8>e~ܲo8E<[|Z@,1^+*j n]ʌu <-sT.Xa(F&Bmib 0םk {HiR̯-Z%'g&- B,uF驁 MqAk]Dr.8"Cʉ+:8 ζ+8*_adRʓ`AI*xH?NuMpF)paMYWX-U{\n/ g l)#vjCe(g&{DvT"EY.ѝ@0qfG+W]Lf>W^ϛo9 V`.:SC̵u$?mpwΠ U(}@PFfԛdG*"dC}K;r!x^L++'^ Ig.%߉@a!>:j6p9>ɬ DSr\lKxs(; :y:QIpNȞ>`?S4]r:!@(<y#rO(iap (c4`&ld7Gd@\ViY'G .O$hc1~łc"Jr@3Cw.g)0? <&2gH 1K#$\5M87Ԗ!"` >nJn J,7%PL)?MF= "@3$t-1ޙ{fsU ֐t݀JOԩay1_6?ޚPJ$7 r5(]|v#u'[F扛N;0-:ᖟVz8ee1,H1OpN`z).gƾ fI>a HKPItDdA"b:^#;DA&OQHNLܦ ߌ!eB4!g3wA .8G{QI8#ߴE[F;lL9l0gUX}.}5#tjj 9',=!˾J23`<1B2I8_ 6VA2Xf ^`hhh f 0_G)iyq}- <e\%^\½Lv+ki k8l"2sd%F(b6fg"19+C^A3I32rRb<2SXޏ#i\*"i3%sbg'"Rl6ݤ& >#3īN9G{ "!b%ui0=#qAYI/nj}W(H[2irUw^vhщ%{'**Dat{q$n:zf[EAf?!a٫:a oG rp;eN$[Yj63RMH,:ON&凊֓8qbeDXRKPzW}pJE:c/vh![WfHEƀP%LU:=nqSh(&3>Fƹ2qR&yTKΌ\Bv 5GSB~w۩O|:*ڙb[ UpvW4~)oI8ԩ7>Jhw(2w^i.X( ;РL! fԛ$ں((ÄΞ\ W'u?*EA$ vr)ЧsYN} fyڬ8[, 7 0R7^j[vr)?,<;XR]#@d 5&>Jw1BQWsiB23F)WlS`oF#$F%5NDLiՂ8/jyΧ1S3pD(8o yO=\vޕsHUSePw7Bl7٫粨NF\G> 6s =S{diD][<lQ DdϜJ9kbg17"y[vcm~Y|G ŘO~kZ@$ǣNU >mCP?!p7;v!L"yu`!sNQG $FpsoÏдU]M TQ y rLB>nu)a2RwAocw  "#I1 нd$sV2Ӷ"&Y9dW֏:{ IrRROm*'ї[貗ع޷eGP\&nK@ŠXl$35:6D+܈b5dds p4;H4( (tHVjaeMI9؇ /c+=_ˎnFC iμAm\fZ>4;V;UKof5Ԡ!۟rPNEfwJ4R6'8a1sjQ~ц4ٌCd ոpP><Q5nBv-'@"TzyPkVQєey/HU i'/yOQ|-ÚAVJ~uۏ^u$ 8rIù\n9.\Cete/ËK i>@]cN;1`.)Wyr_Zk%fPGsȹ|e}|0S}8Eh5EspV@?ݪ ջ/.ѻ6k鰽h,I@8M3WR4B{goI(pE\*+8ӳ)h,_εҁ/cu =HO/IF=JX3*x:]`Jt|9fXV/|:7{PۺktW_|1mYIM[`h.!дq'3LnyVi'wO6Ś B 9>c%c%/v B:<-e6I>m$RA}j n$sK|g;Mc~R"rEbj%zLj@&)&+뎐V<ю|Z{OqևBT][9a_E,@J |Z5?ޣQfmg 89(>jמ7`SFjp k󸌖r#l 8t,!;k9z*|irm>+>b~*]BM!֫Jp]4- * Z ĨB¥auc)(, 9bYUI95Њ$pO!&(0%-9N/ykWXt_Wy<ϱ[t 'G'7DŽўiڭP ĝhq뇗t:D%@7AwZa5ianY E+'7du-Ker;jv,%edTq%JM 3&qMun&*t .چ; "@G lZmu4Jۡ4f'KDFIT*0䬺ٿCAcn`2̟&& A$m.y66wpA5v QK/gAବ' CFV*Z oj-*%#wl(Ddݝ/j'M @I[liDebg@{(ܶaM.lHcIR-̊3:3os(J+OFW^* 1JjEU3qsxPlszJ_cS҆$0~1`'*vEo%%xD!S8Bi"{_+%a:WhM@] 9T$JZWn#d9PC]`u:"R YTeSOOUslN!" c̶d,YRA=H.> D$]nNw[#V9뚚+ 1FOL5^iK3A|DOf^?γ[cu' | e464#,d 4AU_ĚIY"v\nF(3okLsRtlDDA;Tt1T@ z3aêfkd6׭_ ,hVZ.MZZC TVrR_\[ri`WlЙrv#G: $Ǧ`QJoT.0/eSޕ%G4^}LVY?إ箍v q˨EO$ko=z$hh*!EТTҾCBqM:l+vXnomQ6*2PX_E'ע~A6#2E'}f~_{n!EQ-ť+CTabqg/+F!bn~ Z+ FB!°4OkM \ 'Y9#LǐAOGde}goNq'vd\߷a?ظպhꮢopfHIo's1Zʁ$Qq-q!Vj q._a6ŻV*xLw[EXT!e vvX<[ӿ=i83ΟCNsWv+F؁4#0%ǣVM/W-һE*4] U@$'͍<Լާ"? g`}İɛeه K\G"MKߕF9 I:Xi҉/RۗA A,`4ߥRśZvbLxӟKd]`9.N2^Ӫ4D9bMt}]EY|(M 6-? 3-grb<˙=*ߢW_CY] oh^r0EV` esҩ, WQ 8lŘ`ATF>NR?-KkP8ؿ^0M " \V7tˈL#FJso_dw!E \_8%jo*C ~bO#u 9mm_ʚ1]ZrnQ;Y %民/ -5ΣqQ!AÆst*KDu|(MVQoK}~RfpEYA> qPdB8FAop ?&!J;)i|!0,$+Be$H 4?i1@CҽmƽOEAq[` ['Χ"N6d%uWJ)(2KU'ٱU7o37nbl5Rj L#J5焓魋"/v'*m]^V1$VU2I=8_q`92- pTG7JOGe`~R[?kEvRܬ&f߼Ey#Wt&Γ&.XJ Y;fwgݬCP-tzaWq8+hbkya72̍CjMϣ "D#]YՎ wm]eMIb0 }~B>!.9UqՉؤŢ _-&Ju]&`-bVQgi;?>}79#O|N͟uf]{ʭ+ 55;X˯bB#q=Ec2u<G8!y\)-X,<1 %OL&ג5JSidN]qȔtktKl >ٌ%_ѓ H VR*3rH˷ C8hp٭>? Zp"4ar؞ԎL7b4O}q%'Sj0:4u$2pfZFf`+L޹v)_"U | )$Zʝ{bWN4W^|VB]b$ 9bg_a;1&eK< ]4NP boSe%5R\3:jG?4>A3/C/&~ 7᫄3kcߙ6.8KEB鿎rmvn`~YES8ȝE&[(,7t"nkpg6Aӑ,82h37V)VBUDS$LV÷Rdl}5(<{z'q M=ۧiaaQͼ4($./A@&\x ^ZZ4W< ml sJ0A ѷ8SH>n(c8ZÉ y@%[zNd E^֩<}+=383 3k= l:Lz\O ƣgFo>X7'ټlzIW\;uZ^'6&ܜ)p\rFi*K[Rm#cV.286¸$iTW@"F m\t3Ep_imw;Jr#[z_?<8l9VRxu[p*jY!Px|Q#d [uHhf&j6"Z⹐$C1Vh[V|ً(÷~OV  َW &z*o=ܻx٬dXf%,b ~!k-/qwn\>zٱAu2+Cڻ`>8cW+|cQP3ƹ?:3^Λ$<^ZD]yb~3y:p& thR ɍR#y5L E7>cvq,H%pm ˡH3hy׿OPjVUȕ2mndhM#-Su~NkJk cד[Gd(Jo- Pɛ5.LJD;:7.kZ5+#gԵDH!Su]*ˆ}sվ؏G r hM}*\bHn_7Fi-n+G4 8[W_o4}J(suopMh?f=p3{鉾:il͌WѽDjYfƙyq*W٩qT0V%(ƶ4|Sj7g; 6tTS`&^ccO%g>0XҮB9#er:TDtʛ>Rz#ŮB~[=-f96 F[R2 nu5pRA<4~)#SNxJjȧQK-~fy\A~lMP8A6w oa,QV﷟`M=t]= ݄rE_-=-CAeFw lmʾ@X7!\u U+;A9V˷ Q$1CT^#& WemYf> ji BPTd]o_d6됗0S۸pV -@"6УļK-km*%=igOM.dN#=IB`s\zx+I pLKfGrE]#3?䲤Ԗ9ĄL^p9丁E!-Ő;!ϟHkjWZF8em=V?"qBmPW%EbF.-+$1+J<"_q4@d: k6g|}b:/Ux1O&V6 4O5h{R4А`wCNNg6ɘJ[$\n^[UĹ?@w?¸ƼXeA2](gO!"Pyq}|.r'{3lsS _ 7Ikē@7~g%o^Ixˈ@1~Go*I;tyr|`_ e|Zׅ5 zD{v9O@+דܶߴ4'~@]e G"2({QeҽrwMn@T Z_"A.:}Ġ`~d=#"ʈ`a:[RxyzH,GpN]& ӣC@@4(X>(_2}V6TWG0Ҁ#$\ȷXB4Z X>_iAEp%l6 LX*53fyb"щ{DI4W kK|@6h/j`x_ӵ-‰묮vkgȋys3՘lɎ59/ƥ܌W%ZɼݗKQso@R9Vۙ7V JS gA4ځw;{m.B?L}ƆV}W01{gS-JwoPf9_#Κpȗazqoa0e±y>{㦮[#wWlHVY`/H!}o*vTX']ŎE&;'IOP5R=o< l9J3 `sE͐}u KC !S#7n6G#oJ{cR-tYNQ.[SPqitf0D Dmľlz>@ZӒ\-086f#!]{H(0+Amk" ɿz'`LWD \'}a i捞7xKe"Blrsd g`GI=Քޏb2}_Kͧv1d}UFV+VȎ+]˧Ϭ_u5Zxh*VxHL^!a!I6r+x\@e̸RP~F,"טVHir;к]k(N qTbq)T#Y{Ch4'i*%)`~h.#`IA1HU9Km@\ ?EhBhMmbX7A >]ܸ~pbˈG(qy 1`oNDhf38$VhH53 Q{/%gUCF%zlI!ȓ>i_6Q 033АlMpAr5bbh- 5sgpQ"eK$cl*f5{f_vx.GZ ZJNићYܿ!pB1Ɵ^f8DzQEr_TpVWΑ\xN}k>ĨTuC/#.94GIT?]Je?x5Y?sU$=4Q'Rpk:StP˯(I揼<{t޵(*iR )D=%5'ѻ/EΦ,.SMv1!Ts q(_'tOTx/y/fMz\d1DwŮwW.?F+"*)q/@Œ񋤢'‘Ab^_{'.|<If nࢭڶvoy([SDi{g5عl0 !}]#ɛnud&$wA~K)8ƙF]E̯&ɥhj|4Xn>C1N F{|#gw8!lPP6JiN>PgpeFS*$ i0Q|PJ~2{r%?SxRĒF]@xI!^CB b-*cm }7|!nk8q~T%^=Ŋ)4{l6xPpG˗mlCA@2"""|OM;rжmW9fqq) Y O%3h?L{E O;Pؼ]ď3On +\dj[+q~ GyGW*2AҸFN^K1.qj1Н~-Ҵ!( 1|<*vK}KZO~]7d&ZADj>тآPY 0qGEkgTkDN4^zz\4I+3I<|Oos1[O:`kC*/<K xQ|'F,lIto㐾rfB:;'}kr|olڟvrm}/\@oNڱC@ZS;TkX:z]dSm\`P~t@܊dDT%I]+/8XgmM=Κ"v`,>_#?+A"I2SuJܻv7+[Q]xp^" r)uĤoØ+QK7]sw\C?I,#I㖶H=-za9M+CMC5hEhr" ٗ3A}XbVEFY!q@ ,OiH[9*0/Ȟ_7ۑDvvM[jn]6#MO;ZBHk4{0=}T8$`WK҅ThYWE_u -tav'ob|UwWնbפ$ o>qAx}!)YCoyӏQėZfNTbL(=\#U9Abw/6z8dMB*O@!Ӏ?g@AuYTlWȰ:P[]bEC+4!H}kgw9A!0m9&t}Gn`$iw^;7*ia׫B8}Ii RO[k!i)I;t]=`A)yu~NmͲaNY%6߂{ 0RޑDͮefNJlkq@? _ ] vze#6FZ;7vZ@ɰ3:Pcru+0ULh6 'Rij(S0aNUdO;!j8;:&=ɝv<**DI)QgxROb_qC!?7urVu eErŦo~gh1i fxHtn[>#OtlC?mŋ`}l;]Xc'ߎA7X$SsK/ \ (v r&$;Ϻ ŪPĒ E}]d>/0[P4^~K4Kce͝m3AZv^vgN` !y E`ί/:"wgh5(!Dek{(tq{ {=whﵠi\&lb D]/D5 9{^k } 0>0X^B/Ϥ;Rӫ- 9]kff0`7SH,C:P9ڛr=$3ōtt!*yxP;iȤ8.7[B%mIeO=4)[_hiokd'ۅ4J4TO)=Ds) ?rԁ5^@l0 RXe7,[Ӵ>"P;kkoıǴᚼ7ӯ{B0䛻-,g%[^kL 6 86pbͶ *xI'ш(ՃkK >8qSS ~їXw+*{Ы&Y~owlϣ]`Pͩ iA=Zcu!4y:h6j)6>FqOA< ?09H@Q}06><߈\645)WɲE' ]]10AxdӲ(8+n<[닪(Z" IopM `hߵCĊf&˸ Џ!IvgbB˱;.w]yݿTQ&i%ĥ}f.e̶j2jm56C5)U[?Pƞrۉ`A2qFj)o塚լ¥gȬhR9)p6 zvIa`C%{`{h}*8ܣ h۲7Vcc tp]35E6#KCOȝCf ,N{iYsgv<TzSIʁ0nF7+>0|2@-Ƴ1RgyIk">Z=|h$xsr]"Bр_ q,QYjJXm(I+u8&^Y`CR }yyڎ@ҋ*\Dd3鈌FKŹ;+{G ŝj+H ^@'iFLIql,9۰L4OwK omLx݄ҒtJw7x׻\' sAhBu堏U#jFFBTc'$iA}ڼ2=zYRX~ RtbȤ]Qw}a~SehKgDGk~T4V-C[pF>e&-Vxz wɬ,#ډuނ80_a !G[0GQ1ȓQ 7]9)2µL ƺ!2b.#zvU[&&<]uF_u,=ø_4pIK{1b^_Ow Θ:'iS\;^U*^26½欇eY dc/ 1^dZ髋_1O{{f@Zhk4@Ux3M3ػa/7.axQx*ys0-F)[C}$ATk7D/ݾЎCŀ`MxWi2#-M+̴lRKc\'=B^Eh*K;E[|Nt#9|:I$d=w K¿fe 62x~5$gpF;"N~k7jH^ bF6 W|\%uW0َhfXgPtyʘxcHPq<WƘGtxY]ޚ5cC 9|* m̽6+HE xlycܮ%Q@i3l ԷPMm jkGU3C#eb /#屦GqN3&p~HLW.%S/8(wPWڵ>Tҙm@=5 mou ثZ(ݮiotKq&pl.2qh{ ma A@MWPW)b piΞ j-^ߘ&pzV$DrTŎ[ }ɭ_lvo#U<;^RD Wbed+7hʺ]|)徕rT#Z0#eNSmoZf$:+oYpTk/yE*bGFqhl&:&c㭖,+%[ f?"g3 EeBud5Tq:zFod5 ۉ uOtr{@e0/]~'$g1̀F|RMu 03/GeܗjX8C#৑߹ńha<(Ƣ!4qck GcQ, =s(v$ kW.T=2u c9s"%11 .fUoNܽ,< CCW -2|$7QWǗ+8Y?Xqlmc?ҴhzjlaY{׸l 3R3K+2.c\ e>s_RKNNJ)Ey)[$gUfN`P Ul )GloCa&Njm}iE,mĶOم14} ń1C۵I9+YYqןL{Q}pbob*jwpCB7##՛R;cQm+\%Bw^9#Y?G_7#0[U'\%yt!"/Qvچ*J lM|AB3/]ȩP4`5&쳴_LE#Ri9ɠ5+:>Kxy=ۍat~@ 6DgH5H>1*Cmˀxa|U~um.lSuō},8AtL@EV4._dlFne#Kv=0N^ňo 3ڠQ%e@pWwTڋ5ч,Qʛ3,[&SV}\{"{ 1Hzc<:D1m rQu_2d^MB1«^jz 4U{Zj;9QEi X` Ї}SG䛭) Vb0l85荠rUcS$e| ]2c|?*YF 9=l7K&`,9I+Y!7)ӯЗ;1d1DÙ7tVBcν)N-aVl-~Eu~,J3Z>"`U}b%umv'HM,N3W*$ zZ5rT?cO9*o\\yJvrD_r |H7UYvy0%RDk w{=wվ&Ϣ+s,*~/MA͔5/h.63b#2cIѾcrL =]=Oy\)J`8VOZr8uPD0;\v 0Ox&ߔR<_ne_c_qCW|_ {_?%al2X|JqS6_~WH0M gFGyRuX=]bđ.}sb\@a4-k5 ~)# J0_cϒ'm^橓 Ė:7fXsSʏ٥sʣ\>cB3}ޑ%kfU@$*wvY$$_KGW K䁦?5 OwLDP_HNO(R Yv,pImWre_:2gv?,A׆̦7VPz󹘖JpMm+}C^>)הCZ\/хSe/l)z"\bZ E7a VcR56jxՁƜÄؐC-lp)táBԴ7Q$z0UH\yD:$!6gL3vwʠ dSIsMȵ?U̱3F̲IEgxcys}' =z ;{ƊX[*f3$<54#)=I2]o0Ɲ(xolO$ߏATa6UW׸u<(N(?'LIQΒ>^( Kzv ٟRÌec! dDCq,[̍@*Ji"S:$,.5K^p91 |r^h NEsa*!WssKb3fu8F@C̰;Yމ8CW怉Ώ-ET3\)rLzz> ;zlI2Fz9SUg䥰/ybQ)q?w!_ uh#Uj䡭"9'[y sI~o'ڗuuYJGyKF+=VEȴ1 A%ƶP.72Mh^(LcmZ=ub˞~ wy'*_;R eS٫j4lҿD Y7INppĵ/u:{ 7bZW?^*|5aV?9^>,V|A.`ڻٹ,8C?HjqmAd Kl s.Y`-|K3} '#LPk#dӅ%Q&imꮻ4DR&`լP'IjĶUY8.˦mCGn!}!x4KVTjC` >:̀ ҵ7GZU,ZI|_e{xA?X){AYD;\x L(aOU+,1G2Awأ[߭YfM(w_&Akŏ 2g:Ta.awDTp28ŵlBa&XR]Sab3wK$G)a;߄b \z3a6F-XeoW/NRw@X*qpUhhVmx$ XkDJLiVRdbրiryŤ,~gaj7𥨅s64w[FA~ϽOJ3 u<1<.tϑJ 0ܘ 0RRxwW^=RFf%(FXbF9nI??EF \ +,bx!#""7ԍCn;VlI]Fԫn_hpr b L !gA٩bڶXpS7+0aWŀ_aD}dYݸyu΂3=XCG8W Fkr!CT7Y$:(AqR}S=ϖRr ]JuqVxyMoIO0΅+fxJ"C\|2 S3 t)rՕqLkV(EP1uφcbjW/?qC9Pv;UU7]BcIZ^=/97mDz2 $&Q qsz/e«}G,Ʌ~jm6RdCҺ RbeNV" 1-*DCC?b]%CxHJK VhP"ܾ0=nK[ANBo/ƬžFkm6Z0:XKʹvOm΀'"qRUup|ܺ d[ oml(kրaªv" ύd1 ʬ-b"4Z[;@:+fU"&5~lwm LEw%# (|X ľ<ɇ ?47G&Qfތ9ut'iANp^0K{ׯwTG1Ϛ<ނx{cK$ *) Qد5lBIp- _iX i>$ӧMpo~\`Mx[1-Չnb;Ҫ["5L3~MsbeNYsw@Nbayt, w-aM:Z[Å7}bahGYNJSAc|aoP-x솃bׁKc@T6/XZ]yIki|id Fm=seٞW/D{]{E(V(X> ORs~d,Y&IE֢ISR5<NN N|~y}]it#rNN}U Zc bQҺ5OT˿{6&*!2Ѯb6"$2˱6XY):2 (LvqZdcG3)*bb.z?d#A"?P Tn]_ ;/;L>n X"_CEπd f 24%\j_@Y]Wz\t57r`t*ҸI08 # a.څA0NqUѠpS'bDV ܟ6XOZALt-Y]oM|ΚjU+NdΆ xg,1[TR1 숊kdtx7>9%g_TpO,7Ix T9-9k q7-*ma|*&ԭmd,'_<+ 3ߡe )!<( Ogcb݇8S*r].Qdt́-G|Pea>}]zzU(X8cz 21q Ef~7 pQZ="MX;aŕ WɃD/ >RDԼ3pE (x[߉EdP⌆əB͟M,ds5,"f@ %4Zh^dBq?Uabъ0}{NzA1㈡쫎@m_)ȖVQ"*5kH&ZZH4"R6 uJs|RIt&f+ W5Iq[6K4kD#?ǐJ"HqQeR\~}`|rh[Azw?̃ ٷo(*"U` Kq$'ϡr?[ EnҦqnl=#]<n0y&~W xlD}SSLBRʷ8o1 y"DwB`tL)P@Ԇk\-%3^Q6h?ux@emN%i!6j! yaI|Ow\3TxzdIE^@PM<VhQfb{ 1 >WUҥAzUybv8O!,**9-1)-2+pB7 CWY (e>O7`?6ܟ_`:tw/kpLke;D-@-zYtĉRfn7Y,2 CMޱcbY ?JS7+!4ijF^,QKRccN3xwcH42Ok(|P=K|"Z1 a*)_^uCT󦪐3M`tSZZOR%~3"y8uzhik_2rH. /"*c܍pkB-AzHmZKMzRιҿϼ9=g[n4J~M5!(9ֲ8D?P -f8SR&_!^Rݿ&?A(U8 ý{[lf2먐E9ۜaTWAC)LtZF1L @dW뛧Ӽ >X`QVp?Q{~tpW)U#w$\ 4Sr~|Oz U:muM2?kF_^ÑBYSqT^5*M{2Ѕa}{gU,(OxI.2Pcm7_ TizʘT 'GV/fz ;cvC*Z&֎7n.' d-٥-{ow2{!&Wݫ K\X&HIx#_<]>e7F#dkDcYSUPe<֝u_t;+*w;n0_q~CA>-WC> 7V3(g'] p*lK z # pqn)L1"QPlu6v9pKELI.sfF!qYm,,Qo~<}lZ4mjvM-6u %r_|K)iEed9EZ?1C{ C_Rp•ȷ&aO?/)hEXډU h!~LE o_'mof t$ BB\CŬ=E7{4ʺ|, ^btBJXUtL. uMYFbdl`.^gps,ؔjз4j;VP! kr6TβީN`J(Fw֏T^,N!!m4Mzs1ʚNCnV!H wn$iGs^!qa;]copIv_rffG0fW!kIBv/B'VksGY?w(qb~&2)QjU᭹PG$ΒʭTNt_ ۈ,CfDsYE|1&3DPHPAS\A= JmktZS$_J#Km[1q!qz"cg޷4 Fq75g?Ի% Szsek֬{u?@ɠ,W-\$ #'oxuEZ&|sݴi0$36}<յ)Qi!tnoVE7$EG'!yTUJS]1iF\^T2o(\HhZ#Ze8fqȺD,#yp{dr0Dz8@abvOr(.n$*<}6 't9**QTVf*zH"Q?`{BhpN@dcاNy 0V8ibz{muyp9`Sa@#-$~Ơ ǩ9#I!.!oncGsZ>&7%R x{53&eE|]` SaCpڛVTqߞ_MzEیA騕u7.s?ü7K0CL}0T7ӛ_ o[ yÏt!S:Ŀ+Hɫu(/'#Qۊfhה?K(x^&ZzifPuNtbf@mU;睚K)禥U܁TW ^h@|XbݑG=z%!ROyS1`v'nUה̸|2QsB#R9 J?g h̓U5V 0Uqd>vq#P}WjjM:ĽRmB;@סud597 xCt< T1R$QCe$E͝ .zDఝFLONtyG\pQ!WORb&0=;%CRJu֋K]ܙweBBLUg?1 w'rĘOu q<9[U~ y391yJ=qp :caZernU=ټy| X;~~kuhIeFc)BHu_[+)#ηSjbV]r]$ˆɌCb`@9e<d@AĞA{l+7AyB@@NLJYl?l&{&yŊzP߽nH@!vT/!Ź;{Ra2*Pv*5{։IQµ#39lӓ(>*{XS!Ǫ7ظ-Bq&XdMD[=!54:A'qOl2I%,*+2QEj ƫekh~nmՖg#ƸJ'M˫B CuP斕q wQAއ兜w*Mz嘀E0].6Dv]y+ޭ1B=RHEԏL&zxp } c*l+ޞD}i^ymtxst>s81T^~I`C.b>u\̝&Qy7>mԚdF]fsf)Ѩa̳}9x`9÷lw'QbMoBGq &l uX1C "O@OkI6bs-@ #1CqK]*t2ණ,T^܄%! Ul6灋.k ZJ1q MuO uPX.Npa17%r0k-:{xX9[4vIdAd:t߻t 3 eU>WAsI~o`YWޡ#Q}?4\"t y;R%] 茎DGH)7,KeCViU5z&>ifz͙W8=_m-'bcz}fu?Ip 1b)M" `m֥Ir0I^t-ôC+/Ld_uDYFߕYv[7:6 |^]S;lV@Us^ XJ?ϙȖ5p6KnBB=z˳45 Q&,msOHʉ4 (o[3{|w9:Zxi)y &^Ǖm)mxw]:y)TOǴ&(ŶPAo! zT_|f"mu>1 HE%L~ uO:`Ģ*rR]jA@fBc 4U]l|r׻ է9 :"T,ځ1q M |lHexK^^ @Lt>2l%c߲i|OۂfM|N!f F^ھS'j)Y$led+[2L폁p6ЅN1)g}w.$4||f)t CC9H|M9ݕ(M[ GL (}T,2kԮ><=ZiV&)Myq0ALnNh-ߊհ,xAp>2qWA_OK(G0x@I+>_ޑW놥Z5eB)/F퍲`.REzŨaih9j^ռVsўj!]q{a 1!gjӋ>rnhvo>x*ɆJ㞋<'cU߀!|߻sѹFLRL%C}?{ b mz4>kӄ{%Jir kyΫ+K LXdS}AV]U0L02aV6es0:਩B^4nl'Z5{k*}zz۷$ٮole(n (!IrF9zZޢ$a Q]c4QE[FB֫ݵx: eNT/T>VWʣJk;3C.eƟꗬ{rCirUpٱNf`63J a)HIevf}%K=T5XR_e%+`@QGbIkroOQgG~p2Dq-|}|g]r kV91<0z;W5bL>krKCъVlZ YdE4׷Yj %B~뾌ufuwԄXNȓ-5%k3dXju#9"w'⟠4X2vUE67zy:-bQo-fANpZ?' Upd_E \x8leǺYں_y D(pGETT;څW.DԶdpˁGמ "U.rOEG\k5wt]m PQ 0 o;!~@<ܲ29e\IfO:FQ۽:ǧ#W[ (wt-I@DXv?A6Z@4AC JsH(U>V6D7"٧B{C$W{+F!VZFvY[6:>%H,< *y-*voŗ+JJA2J gw䄍bo=D@:Fo@R׃iV5k 2}ߵ\jic\Na}5L%e=cxZŪ;ޜG.A1HشP5:S6[kH:\Jđϡ5%(P+t'ty;]gju;BhWs'"W)d#b ;0!ěj_@}ahpZMi {1PB4H 1w'iPP=ߠ2)ffmSlzgڑa1a:ߐ.S=XPXVWgnR0T wN.{#Ԕ\>;4%Lv!(Wotj3^ɰx:+曋jrYq06k0zND6}e,߀O-D" ܇.)NkwۊqFf. Zy CϋJ(#Cs:RmY_|9ҰFu)"ԚVKE++bJg%^ZQBB3LP%L@[,'ИZwwj:]SMhFj QVk?Ǧ#g6UZ|e RPFk4)ȵ|H;OYGj3xK2H17=i 4(`O)xV%oӥ;"_2= O E>'*;FB,fEx@@UREFvwTU@%y-q <t gȥ5\E!;nf專񔺽اP"C Po|vÊq`WK"Ђt dъ=֛XPkS|-߇K_B?*-lՑ>f]8izhYAiQ9[?m$LKl9|8ѫy8Bx97\Tq8aPA:[M[;G٣Ho'u')^ѷtwӒ$UlOpOJ;کFTϐxk;N^gVB.,˚{5)ųiƀqY~$?' yJ#̲ZdJJ!IҲ db US1Xt+_ޛ cm YxQK ִ$gƜZ7X΀F_`:j"C]?38x FMy *a=s%uwd<ͧi#q SB"Pw0͒%6%R8M Ua2`68w#*0ǟ3 V%:'7AG;Q9b(Rڅ3lhkE9dA,x~#rM6a|KqK޴yyKkQ=]֤onlQ.r9xSO`^?E:nm2cVއ\&RwΣݙ0` 5_Jq~\\1dH@VG(gٿNXd~+v[ :hJ`{>Hx{00QIş>BabEY5fWž3׀FZ;z@dedũ2}m{S4I%|Vs_iC~,B#վL{bfoM>5ܯ)>#tr>j)T{1<>>h6"MenCrʲp&NUвaCtku%ڸW)(wנ__/.6TÂ\j|p$=ׁg2#\K UfL̶Vz"kLtƶ{D~0?i͘tmpȱcӭ/)r\͍f)߸-+1r(E38hSC(@we'f8s2~e ߖmzG|%6DiLzSiɨ BgmkUs\0~Ùa̪)<9zs+a}RM)k.B6{m-1~$C3Y>m{: Lx%+T?cLuOKu]^r깾ꖋYg>;o Y>aY TT]D~YaU6X.:uG7,^G: Xv {ѵdfeurYu:yyֆ"[kji5L]`յDu}<%UwsTAOA'ZJdoERF%˚ES,+TGQf恵W ҦnxSq~,^8ghЫ#BVI؈6'dgCAsj_\,GK~$duƁ'Ӻ? fJo5*M GG hm4Vo'=ckwIG;ʌߒ"n ۦ: e9`(.ɫNh1H ,*9!S ]oڅ?ו"SYv@R*hEd4$/Fm"a#ն>2S_"eMu6ѐ*.\ .mф,Mq|ֿO}z'VEd^@T:̆57C=J$lN#:v洒 ~Qu}̖d@Bm滛&oK7ManI lvs(y\+9o;вd?^q%TPq)M~4O]u\ip.Yi%TK+8>1Hc!:gv{0h B`?fn iCL>{oND1ΪԪ*]S@bOir4oq#:HYMrD͸SAUt00wvjKv pj HxFѺݿpAwp4@0==*?]w.#N *{a)R q|{(Q-TAe) ӶUNbf|3Ni9ƅb&{<:ZWE•LA7fT8L-{]M[z+2XC5?Z o=SFA_PP5O>@8|m3Ji8Uh fcs8[e,D%"3HfsvbwT0,%e%"gu,p-{SL=#% 8sW!О3Ġ4iLMܠy˔Ql7BVᐮy>]3!/c6+[eAaGK8FëdRGPt0 1[Dݦ%':$X8=k io+3IJ=\1bi(G\4 Hp?}$ږҝ~Z*騰ʯiIt`\"YY@[_> O" @ѷ zeTc-a$PzDqG5z%k?i U^;m2Z6YwHUm-|Ap6dO{:>/`(69 1jfQ /υu1Ȯ!-JZ\s٩Я1&ܤ nL )w&J ;wzn~}G,Tߣw %2_rEv#nx&2xO>;rnq̤=Ld^~<샆&U"ЬΦ Bg6V+O(k3:9ZSwdn#+Xc̶sE^PE̐$Ynj?W.+/HkiE+x"LLKzn|V|&hN(O`rEWt]hE~bd^o, EE@I~S+lW*TT4$ 9nΘ;yvwiMWTtuCjtזv{lܠdiv :9,X([HGQ3>/ݥ %BNH:XQ<꫍fnLTx(ۛERpsAoWDV>V"vY[淉z; %Qƾ#dzT Εu]]]UH|$kR)Hx)b+!K\BW}:] v!_~+0a<_y4y1$LY1}YPąU8|t*e%[Q`fA*9au3z=똾`X FxrQN |x{D$}qmK8MaJHeO)k,-TV֩:tP Cn(GYBFܗʍ9=Vmӄ/Я!0#kn"UHeſB^7x\F=NXwՊq!/<4zJ5,#+*Zn<5Օ/F" ƥ\6򍖗֘=G:phm"^,F}j79:rW%Op؈X2Tߵ%G먘@x$Puو(jg+9 HwQvmS$Tr0#[~K71ubH2u.Da&жc2XP4pp5vmIٯr\] BLȴ'`ـ- ?4kS\rhJ!`(.Pth鋀y׸a>nRm$%MQ@|lx4DGw<@ϤZfy_z5L]:a'7}kah1ׁwxm; )p0G8#X ԑ3rW6&#-x]Cܧ:"q&iakjԇЇ"q9&!1^+uGj> ,*Ipz8x}U$pv<}`"<]"w^C-HZu)\嗡 iŌe#6)Td+cIRy [ܚ͛~Q)V#>rq"uFAPhCs l$nY~4Kdf?@!JYyK0>sE7`@0t c@14K] LHA>(ёo>m?o3x,_߲pDJp_ t#+SPR5͈f_vLR s]+1jٸ1R\-E>uIX bAL^u ܗ%U!]5M3/Wr(~XUJmI&.x\zx}A[w$S5Uեj -onsr&lXx[{st@ -wbDr'OjLxEJp9ʺW`>1">b5A}s>̀\f܂L^|%*|36+][DMvmk^Zs g7,D2砺PC %NsDlq;`xE\q{?6{_Mu;m8`1b55m͛#x9(pQFkҞ͋0AU6젓0~Mڼ&k  -_xaYV(_}]:7ޱJD` ɼLAlک6x0V0խ=)hCsk|@\/L׿O6Pڇݼh}Nr՝3.ip$ߘÞ[a!w/isGח9k+;_TXRV S23>V; W *69 Ӏ]lSHMr-n' I7lȭ|C!Mؕd6|kñoPѯ6Nm_򒨢 ;~Ua2knM c!E(r/t"vgLeV ? JwELݾo9>.va,\3iZu0݉zec"3@٦,+ra+a4,k쟷T*0$[C UNz^HT-͢5):K  '>mq0vL3i[3~r }D/Rj֦`ztyX8z;w#{# yvĪ^i ٫6CKvr^ޓW⣀^_%#13Qrdh(6V1>-??^Fm*TGtV}3Eʹ.zQ9V=V:%Y,=c* &4t`F5K* Ub-},QL'A{Wpftqj=srNZЧ4eWOSMNbq?Y2e*[r%##Coi>gRPьb~ٌf'Bç$:& \rxZkIcg\ӎu2$H|;x I-\%3$s o 2{1_֞8KN*#K'@,C1P6qD q DZ@{`L p%{05od3&(6&T1='zi _y@kC X;[1uˌ.i0~l_v&KɘzoܪfTL'эFDezQ#~\S?R `&22ŝf$?\ųc0?MZ#c2*ncB?")$Ŵ f*UHK5Wuƞ) y!k\eS'q:o&e}dTjIG%;(SV h)yRZrM'<qp_?E(]ƝZCzg.3MuOwlP/\xf1 pٛA?SsUXkL#|$|r^٧Co_w32ऌjo$x_Bx9W+B1vK@NK0z t z ϧ0{r֟B.ƫXxVۥMkX;MKex]åV(}nvbz~TC9!qـou17SX̍>|tq\75Є(Ng63“6v-:3'^,`+C oe !\:"Eof2J]>I(UO*NF48Ğ9T\^ןqdОF૓4iΡzVIeQ:촖f2) )0H6tz2@=~U1e2?1n$;?]i,uYOʞsy)=X<-/(g_s m*سRQPF:#O-$iʗcmwɺjѿ'UTVngݠ^w=Wr3Y5?%uBj c1_KdcFfA*Q3g9<- AL6~_N#D5>c(-*7)Wu?C7H5̮s6Nh30#AܸDWC0&[C2Tg++ jE"湤c߿\L/kˌB PSdNqPё*ZfUN#q̈́?d&NAEM)h1V 2O̲"j"PvhAK+9)Ag`bkdOxSz &]wh+.A85DA"KKN^ay+έJOV$^b]Ѓۤ}B%#abeGr5A̺p1I $ N&FH&i0pWI<">*'4+`/#4,zMO'\Jζ oGccdβ[ 5y uMtóbU*5V-SzailZ~x_sJad b@خlXu߫=/d9PD ytH/A1(k7>jWֲ^ߏA" ~ Nr^*><NSʜyVt#Ԭ0(|n a O z.xP7D_X$^sW bBabTIlc^˂ ,`EiZ YbW !LO}@R̛>b:<]RG5~eu,}Dwxg:yzx6Rײ'O嫦9a~o\ יD(LnjirK޿E__F~rLOq4Ůɜ5y`X<@ВFAuAaix'Q֋EiŹg\/* ԎQyN_C+Ǖo3" JuDw4&;PVMee١J*k#ݑ"x*x8Lnb.Pq )'#Vչw4ZlDBa?]Z{+QCPP4+w4脚Н2>`b r%NqޤX{%&J2 øa t1KgKTR#-BRx@YBgeF!{u$ w-,5|gן_fdɖ$#I@X%$ '"tmx2Vq%|e04_v卵[rf9\BdX 6gÝ;|"7[GN 'ၹcYpn4LchX W͜e{_Nd~|}pY7O-8Q/\xRfޟԵdmBhu /$e :>Fg)Ȍ: ;iOC끖uۉ~[]h+Md7DAN&յx嘿{5i2x 0\T Lss9TLIbgI/vyk1/䐭!Fȁ Ѧa8=@6”"f4ьP6B_R[!J=i7:ثįA&|'|@(1D!^n@ylgar SνE?UnةB.EuY*Z4d GI,D&3C BnY,UY͎w(3#$Y|8N*czA=T^DKA(ܩ?ỈQ) A_I1u$rs[ d6@k9P&lrp†^L&+d*x>ٝXJ\ !E<>\R6@K 6|P1h9%Ag!A6B%.|x_QI.E6Рj%S`Q)1 BlV Q[ɬގW5 ƥDV!Z4\/pр: ڷcPrAG-w1HڑUM2DZc Ad(ZË_UPB'20QDrf?:2A7ŗs_tx2 7"p4o4 :ä8IR+U6 A&s3ZH4'R(`W+1Z7?.MAgf6UzȈN^Ǽ|r-ۗ+ <o v'[gVEGCI'XڐYΈ^(nK8Y*hq9RXO&') xg ZF@kq#tˈz $gnNcN>Qdm6V$Lý"89\؃=b%s>x.vr'u k~$ܷnzx3&qϜN{w4˓Tnw ׷D4ݿ= %l?Y ,Ê-WJDBs"/e6V;:N;&K\DŽJG M褪􍦠V{ksaJƳ/iIn s~CHDQ(T%qNֽ0^&79:H~^PUl%REVFTi5/Eqylm-ٷ_y jÉDY@+(AJ-Ӝ%|5ddSm~Vw?znGzlF]M3QB8(<8NkwۤJBy "#- v^ ӧկ?Q:@`޺ !]Tw&]yh3d3Xcp dCҫ#JQ^)`+q&\RJq)1CrqԪ0>E[&{f ĪJ{&C%[ЇT&!W*NTv6CTM!c^k:BlO#Sf+2Yk+NH\{ Sehwjk/V y؍p>SQ Hb,cdTk\ .P;%+mlU=Bpv9xN'wGକCk#D<Ȁ/b; B܉19GEd4Fg[*;!*uJ*tڨEɏ(u~J]f{TT_7vK Uf ƻ''z5nƠUy<{ή²~$ !~ e+UK@Cv4ɻ˅lKV!wxH2 FǠBҪxU?Y_\T8ŝUGV^I}E3K~ Ode=ۅ,Kli ,[l# y)b]NhvQJdJŘU0tU+1րYY݀ߙfă,2ts$3vO|dmdbhgکo"ryezxGu [sNWczd`׫#"yZfhBKls:\OFRLı5H>t,. |M?!JK`%k݆g)6cY{swа!:[Ƅ"!lEa't)? pFk`goHEHaA}1p@Nz+4 +r0)M@!σ%VuBrѥiv|0{#yw ܊:MyKW<М?VY2Eip4prkg;J Q,! "jS#~k.]GsQ\aY@tu1羖{V㾂>z)( Y +GdCDP0x(d%s)D{Tҟ2gHnĥ3qI87!9.Qf56GO^ke痎!~pV e:Hps4cvKpLrڬ~DE|Ja)F̮7AW/Y6:2C9eeauw˵aux|R&c&`]/Rm].|!D'>WkMhbn{JBo:(sAJ,6 AEV{!A*߲~Iva3ɪRa :9t" fL)PRhI9GFvӱfO\s_YuxrčRȷE59xPvZl()MZK-odNx%|%K%*$姽8z 2Ϊ'=!qF3B|nzmi}/&ʬcd{ 魸^)}rЃw߻gM;KK+Wqeҫ/ZNIbՠv ڈ/e7g4'SТ$0] OhV__rĐ9F"vn~keP&A x%(*`qY>d! pBJւNVs0{2H],NwTm荵p;;.jMf26(s]눠H>R#B'cb.A,ޠoy/aN Z}ȼ\9沴yW*Jld uyai'u+NC ;o(ÊBg@ΤVi'G>G?8e"ܨŽ}{5MNCbѱNms]$zCj;;Rʶ`o.]%j .BU:^$ۻRNt]=`̹7B lhrgSI~jtFfb_|^4 <4x6(b@)#^KQ-@xAP/)<ϙ!C5d1uD1Ủ5a*5_t_mQ-j<\gJ ˈRu[ȟ/ 0u6.o ɡTUƤY 9*QN~'ir~jZ;BP?{y6l, I`2mH-AJզܔ٧Xc^t&Q*ɼlz E0J𶇶O55LFT}.w~\WUsDt$ӭL`+aRI};ȩGjv3kJ.Y+ Ʉx5/c"/u% |3 ytN5If>عu<w8;|y$ϸ5wDi[F"I+͜7Fh"C%cfZI7 5u$izOF׊ϡiS:2hRhXi,=8=IfbeO;ڬ3v dd5}fhjNbxN7T8©hDծv:_ hsĮ~UBO;xF/q|;euLOsq/a:ps-"1>R4eY`xb  O Ś~FTyZglǵB7pҥʞ3 zJDN˻1yoce"z2j9k3ەȰ4ՋjDB:p%E [2zge+S#fE9;T)e_W:X#|W# p ujh%*sB'%ћt3粲6>7€@ho!_-~g"ٯAlwM\ V6f&k?W1p0w9vJI"aY4 z8-3`P'pIv"?P}0bQ~ ɇ/pCS:Hɚ/x!C;9N+栏9PNd.nb`Odz=ک4AX#~@fw<{8"xN a@"&_\-2@ 0zمEB3q}.w=Ly$ Þ,7{eR4oEd7 קW֦msu_]j$@'^tďbP4d@atozl]w NKLł ݤTG5B|G/ 8AKMY MI?NAE/_x} ;=n 7N4 _T)~"" =>+O/ A G`]9RrXI1WeS'33 tgjswkL )óvh ?'r-R@^y}mB.^m5Vx<= =6IH2[VD Jqi[vߵ>Sܸ+nG(m;LmA=f.r]2Q1 I'}Qw7 ‡I.s5dj<>WWQ(l1 ӏG֟߻p,x ݲo&[HFN>>_kV\ Hӥ|J/ݢ((ZkO(Ot*ubIX~/tta=D![½CQW=" z&rahY]xR ##vQ9ou V IB ak@mIaQ(-޾dǗ9 gߐLե8T_g}m#@i.RYQ Kj001mW!\GtE+wV xi6k@HgzQ"Ǐ.}P~ûJei;eYpO4*Bo>`8z?AkxLi+!? x9(V4Y{B+ ë_w>2;ܰo Ceدp.E4Rwh;QxPvN1s5\6`S0vS༐'QXKv9}~yIle ԇ>?sxJ;(4(O.7{R}_&!s=sT~~sşO0̄?xHejKSrd60 bmg/DZ&( !*A{,jWNwkepFvHq*Z?LV9)Ɣ G :l5#9/)Q@}Q.fNjzVf9386Fڿb!ZV=el2؆'"1_79u ȨXu |$'=4bt\R4*Ƴ8:QE,@'J]~S'H@.f9ˠ7~ᅧ꾕NZEW~/LF9Mrd{J-`,gْ  B_8^cԘ.ѕQ3"dx@ ,#UQ,ϱ/ҍ?Z! F4=:pܜ+CUVR1EC|$x&X8㋯RU/O-[KBrZ5_Ɇ d=f6 ʒr4:W28(=9)~Qie^ rD;_N4GcʒuDr"ڟM픥S%H%Y GM _5V0-}_~&Bz& D9~ԳR2lw\w_2䮤F_"-yi9l*sqL b}/{G *i=VjD2q!v/ J Hg>z*tKeyp3 0xDt,jtu rfMq5g nh.:4!7%ۈ>D"=^@[ybv} hiz MǶJihX޶7X+6.-U6PT TJ i|i CٜVh"L72nGr>D>+ !a.[&_[#"۝As@MuʣBb[>sw#|? bFgެ:;y/}J2?uKà&gUV`qM;&7~ ^<<~%e HM܌EZ* ս5k_N_)kxy (Zԕ QJ;@#/ ksR3wH.WT9|U-1\2CsX/WZfQRRGY{/S(#y4ɌI]ZFɆv I, 3xHؔ U ?ϋ*̵w]69Д-ʠ 8\"c0Y(v,J%.A>+c&mLA9=ޥ >{kȬv*9Rt^=b uwB̔y_}D*$HRU\Cq pGT6e#+w$3Ro \jz QŽhp)e;3?V;k([!ʀN?j}/}iEd7N5юE>)"3kqnO>4Jk-Pm-' =ϓ7/t~ k\}e bqfnAqg'ⷂ4fy!uwPӓ8?&3 ^uHDU ĻSJքnC4KέCiY\+ᵿL$G@ K҆qo|[3,KW}Aٓg",9ߐ{$Ѐ "qzXz9U z3oN<`L[.ȼMxM|FOԳk0DK} qׂ0\~7` s%ρyVO#9'E7gc lM}r6yFWX̆>ޔmU8a}D T[Xًw画-qg~Ok;cZbVy١sd]VyHbP|8&=3$f(İn;~ cL$3p/trK <6 3Ҡ;tegc5$Ǭ] Cj * I_^E\@',w?*wa%}rҝݻ+HK)`ӏUe7ރKC )y[۲[ Z7݁ \ UI_](u|9)&u}rRdv܆:{.;=kXFCĎ -#UDz-A?}KK =ܻL'Q Q ($@V(=D3-.ԉWo".D*,Tc3qNJu1Ê(l/CZo gZsʖ϶::H뢫2{|`g#A1o-h 9( hKP=?֛Unsx&k:3$C SƐx=Q漇s~A@ఝ̝M8NNnVT"nmhG-L.1;3yy1`{'0T?ԂP9& G)'DF/ڬo=(#AM@7X º &e`7-(ݠj1m"x " 6Aef^UFR0qP%RC3 6FhvArvĺ x;,]QIu<s"dl6w^'Xm";piirNUu1Qoy YH(x1`O-RD ΄\tO4BgV.X^O捨^W{l\w'b:~~^(l_ [!͗Jfv `u=o2wňq(f>53 l4M\?NTK߀E gJ{ݙ>Qt_hs](e>WxR-\}Pu?QߚZ4sÞkN>?# ? JټxeF $ w4Ւ!hY3>#Xt龏.ɠ<6lc`ϡ9HʵdVp.jnğC?Tt.*ɘ/iP齦, +iWDbDyQl, z=KlA1Lʨ՟Pm`rr<~S5S$ZM@ߺ)|=5ȂZWV]B-c7J\Um 8^/Jنe( ʬe }23j;}-!w ]-EG ԗ[p3Nqc}Xr %N'[=9WDP,@ Pυ8|{b~t԰)+_-muM9dpP1}&'iE1ʶpg䓤ABjo+@yU3qAF4e4+.%눙vZ?/  ajX`[`2`BaLvP:| *pahNgL!MagTFx3y#t=" N>/HWȤD~& E?e >2:K/sSdZ#Fņ4C,߉lՋ3FTmQ"|[q)cVF_9ӦD+l#cv"\jszuu&WxAS KaTw&BDj\WpأKGV#=q=Vi뎭9څ?KɗPC%Iyy֤^2TmSÜYر(M`CWoAT p.cmFZ~7]3eyDK_쇹/0}{=q<-q1jrq~_ڲuHY@X#2*XwQUh9}ZvQWV*e](q(+)2Fi;aob؋X;5IHm bMc[Ӧ_!ʇlUp2B{;U*OZ9_y^nDOA~D~.6簐6af=Y;bRIIFjtCs#*N(iXQJ|sXx>&+lG.@[ß!mpIOGbl,O=<i~ݧKܒ q1Hzp1R:z;3cdءpyӼ=)OdV=5?C|0{ /VظuzZl#|1]qȦRGPĿI8v*GU#M|>K6Y(~cq`46#i|}kI2M&Nt$oUW|SU/tPLv47P6&f(GRΜS!V)hqd{0 j޶N 񓮱}i(JP'xc: >QYI8*3,95eTfTsROsMd-]U[>8H>³қ̊~j7ҷ߳O5`l5y116'F'!#=>ݹl9Γ5]Υ-]ƈtߋK50V?iM][eSJ7՝koi|r0vq{njWD/42?f` `Ĉmk\y~ +mJ߈u C"3vA-b1-o9)2/L .]|9 22'8XuK< w)mKD*`j0+qcf00'HpAh- q`_ ItY+ >S ߞ#5-\0wk&_Ǜ ryޤkz{Fi[J=b 8oZ"Lzx̬w [ãdQaPIJbI2;m:wk)J$ƴXu`,p6HR?os3Eŵ$4Ḹ2 ]s(4:͎@VD'Dݡ >zބQу/3ֶetiƳ§hPez/8m%k(AG{A!uQ,+Mqy˔eTJq1$iJ ).Bziev/3J]=5ʟNU iDe?Y.Mtp&/R{Wd ؉IV+I"\Q  ;[E`bb/Gy5>-'\Fst n V 08J۲g wV4{i>2h*\&iap!UStB,,\)qMp%!g7 ^֠?4csVš{o@|vTF~KR P<6Z3X_Xe2*, jްmW͛6(%vy|) p"? 9ob:̓L<)kz8ynRij 5=d:^d62eU{[ʹ|kIeqZ_F㓭* :jLnCw]&<\|4ra3{ro:ũ:K⺈hL6ߙ&R1 qg 6~DkvS}̣CK`$~R Պ4T>%h[瑱5.R)Yk> *x$o\97)Rrֿyn->)0Z3F^nAV `*0,؃mVL?W_RU}7;\'W|P6=S\hBC ,,roT|VWA|6ymy; <;n zk mLbL D2[X}+q"vuuӳ} WvY!l[ǔ,f 낞85,IUpv(aguķOMg]P4wN,AXM*As2Nt\;`d|nԄec@CػaEC\庿,x7Vw/N~_ &VUm!̠Ϛʻ-"md=y7,+h13ӆ~$ y~tL[礝# JЌKzQbb[do0IgV}jU1=A]KMdÏ#᷃r̊moȦv+Yρ@|? 5=S?~\]CۘJBk ZrlۋHo I#'rӧQڠUMnv)|P8Y,`mͨi1G7ň5a&>zS [塿4\T2]{!UF Pg @F6>u%&4hR\+r! yGeiԺ:lnh_OL@@_fZ]zUPq92[Ygv6q4Cp[}?H[BLL:ٶ:.}L2&c#mz+5Is@ű"iBfhY]T$g^l-(  fua[Jtr@)SHrd `f_Mf޲A?ǭLǛ n$'E:(shyC31r EC*n-eu<$rMGc; B[U,|Gp @{lGa]k5b, E| FU>\j^Ywg/vC@ɭWlkа5زz z;6o 3.YLxn[2*N6+n8\0"CljJf )>2 R}Iƭ_Ǐ!]G[08o4dZx}:~} 7WFY Du<ă'c9e Qa?`0$W(>vp!#LZlY9v>;v"2/iܼpk*x&}pVTww=+9fg-?ΨǁVLރhɁZ};z>s`4UF ]7|._V8wXovL[bU}IӻԳ R)$W?^p0XGѵH>%ü :0:5u͒RO~&CFp‡ jŨww!JNٶQU%R5LvON'G$v`vohW_R|>Rgasf¡^\W}Q*uJ"7ܟ)~.nD ~aA1'+%FO#ԩ8֘2ibL~n;_F0<Y Fc+YEsD~9( 2OmuAQ"-㟘*YŠ3JVTDhAS|T5&KYc^wV<듄 $:ID I5F(^ C¥ ލ}*}.=^ݺq+Z(d U~釪w.dqF6`PV TڕHgϦX-(.; 'JKuo0M Zi §mmǪM4 ]L{h.v+>zDRdNbԏ'KH,N{WUܟ2y4Rӝ.t͕pD)[ Fyl2 Phc{p1<˼#_FhphvjpZB Ӊ=ڰMUbIǠWG99H>7YLٙ3aw8Vz9v\lv MC?*3d$Z:u5Hĥi)~W=JfW,%o-mv\W)pd @T V<1#Y;tu4drK.I3WJ Hlcg#jQeJZ\~WT\8h*3Kla' 3-o$ߊ:!@5GBҚd f8u9%sfMm,\EŸg3&3i?݁ HJ^;ѥ}_^&~CMk]XJ1d7N{*_ Il;]l+]w#t&\/t+ȗ Ma iӄXҺ'S/{OФU0E>_=x d߼qxSFhR@2h & 刮UZYD7h4'?coń0MR۞YzF<щշL=A<2\gzRz;J`N2^ʂUcĒMԜb A,\݂U~?^?D~fŁ,ɂ-¤0ff0#Mw㸡L=2=r 4Rw}%ir_ov{魋4~Bxd}\a7YHТa(0nT {-> j)"܃P{D!PżŽc^q&hWp?.x/NEOri`~+9x|eaTʷ#~0k?Pf~m2(l4| U/xpқ CɴzJJTpY;eU4wJh@^ F30M*Z c5:eDr'%eFh,LYD c9STӁi|EuDZ#r1UjblI,hPꊠŅ=$1CY(?=3]$2o(Dn5%{)FݾYگ s<Ӱ+q7B :ka;_5F\\jG%mQsRW; ٺS e5?w @ H\bXH9j{lzC}@Tf).a6?zo#;xpɉ"m@j8T܈!0wx[-v$\*W6rɫOOOtlU"s7@}{/Oock'}Sz_]؀qL?@fn4K}zGSb%= Eo7Zj3gץ0^#5b- /.hZt{2oLHEQ0'3lБ%d%YġӑڑuqIs-y' x^*]  +4KWN#Q7IbhZRӓ i{:^"@w\zPt™GC;q("9ޯX;J֡U%~8yK1Y&%:*s]SSF̬ Cpʓ}yH'=Vv6  rq|+-7dtMvr fqX9ɵBhVRSz$m=f&dZW4ԙ5sz( t>ه uznITRIu5fL8h9WMt༨w8|".;Kw2Q*BCq IvX?aaHïbTY9Xމ 5u]fPZ|#\<)+ma+͢VS+Wa(>Ec\S^t(A8P+5q)\ۇ&E0ә(Ϋ (#3 bq[<R5]aWƿL9kuB)Ru$ǂo }x5ġ̔~r@Ws4نb35us.48j3AϝŰ.fy3y]vKb襖{ &O2Mri`1Gtn Yl,/QU2_APXHY(AfX5'cGU}) "crdRcxpoxҜhtÓhj93Ev0'i-|ߗ*ɀn4 g.;(КzY&)s+ƽ(UG$1;+29k AOVh,+" ]4rrhݜ=߃l!Twe q=CK} Zi)5/$N8GrV|C)cQ +I:m1u&' Wp/ &bD̽Q?4ibC{VC)xNlVn)(l͞Gpo?Mڵ9z{4U)ΠIChu8tzNlk{<,FṚ5jIJAۖK-Gĕ"ⱚwz470a|ֱcYA6ޓ mX޴< ڔ].Wl.`; m 7-qIfD 4H)EOR!DsG)\X҈DH2 Q*ڋb\g`hi9 IS Y}S 6pKޏ=Žf3;st Jd\|k*f65[ڨI;g/] WK0k ͺqV dՆ7]v|ӻd"I|.I+74WN,IxآXq4 [FjWzr ꬇?  VogJAK#UrhWfjev5CB`8`̚r1Ku=a8A@Ѝ$*x. j^Ћ{bÿ+" Ű\^ f$ΊH?}RJvqkBVgthtE—eK&P,Zt|UqTzgnq0R!wpx¨ ]"Iט_і]\\mi鎵?% ^樾\ (Sj pl /JʚlH(^%[!bp}_T_)% #C_8 &ÚwL2*獥+L ~LV!|jO+5xbi_9t/A+[1kZ#} g牣;JvZ:Pk9)R>7P&n>KՊnqLy":K# A=oߊAi}}bPR!n߸r58 FwkC%Qm(cԇ3IKZ9[*}67:&u$Oh?хyn~tIjËK{I nSύLAA3$׾׻_DYN"pVHO2i5cx8}`_dDʑ 1V#vdrsC3ot%zwKt xbnCUq[2 ^(#sFFPJ .1EQIDZl@,Iƀ}@%2ՂtUl] wHJFwJ#2ԶcUڤ޳,7b&u"뮗툓 h̾3Rh?DPֿS]*BE<| D}"m'@#e[B\;YD8Ss()Y m^;A|uzhl}U1Ts5H$J+3BO0:#&C飘•t]AuJ=hK=!iV( /\< .GzFX|D$:1no"vH1[ wUAƄGZג|>c=V[l5 KhV &:DVױDFIiBQvViuDO8롸J:f=MDȤ"O~Zꟁt/"êP`RіBvG}_I _90fpܩ  .x{kCkd5YLWBEN%[]wI(w3TR5Fq{~P?swM cj8om/Y?DS4+}5|Kt%Up:% 3$fuq۶YX:mֶV`E3(-{$қH {|3/ ~G P)\Iz]*HNH2@ i)R4ChwaD`1t׉Z|PH-FОBs:|!KyX E_,LeV^$"ijIJwk-`$&P㡬)O[}'o32hoȕ\&qGĝ6`{HDuUr(A$:[@jb".^Ie:9݋92[[]T5"ÜNiJBOq;[4l)|iOMiD3JKƿ>2NCĶB<)Vȥ/d6.}Vv:4PuFwBfxׯ? zGk UV\^Mb &AqCjdʮrIn]9),Qu֬t֦63Nq9h%{Ǔ, &׍q} r[/4n9S"܃umysAH{<\3hE7S-!Z]8sWݷQL5[#W("ԬӒ@r<EƓ>ABuǤ'J<V,`득@(KSr=FoH yk1{L[IigFHF|3!/ELϟ|L G$RqlStj gl†SBfvHz?| F; v8󬚽 =QH+p߬ X6y*:$ ?cN+)Fъ‰5.nC_:Q\[bPsPQM(OV=m{Uh jzwT{!xz:L?ڧ^ephXͼvͬq79"gJ{\ŵ3;;m3kGѰ%O֐c:Kf%25}nXP ",I#kL L vCW'  ^Fc]#zHG$a̼\8wК0S7$,[%x«XE)Qeey">;PkZӛ~KE8- MBΙ}7,ERyL>H=tիƿe~UwIm^Eh)3K5qi:m%&Gؿ3 nُgz*g+dTd>MX^,p?ZQǐYd#pDTȌrc'&;3jZ_ `g׺{mV첫mSFT"“Эwwݖ6VMGBkzCC_ Oйi&GEE(0 Ll$I(Իx*yGͣ'6,|GLm5ZVٱimrR.^Li&'A,z@u'`.fHj!wiFy~J?+I\G=?{ω5mtWȚHحr֖puN+3B#s`%ucᯢK [Pk@f$XE~(Qe J+t'v77S_`>ŠjP6!1۟UYR 2!W>u)>`HU)A' 0 6Zu#F0+ v']oSho/5d lttTP8C(TE ?-]!˻Mž|[˖V:@aW픍ĚwŵGs#[ˡ=''l,d5y6jjXCX"0~tW꽚cLFmv/_{rA̾%(*XAg_ܐToW*^6 *<"kgw7z:;_^{!Q阴ONPWN,uS|~$zأ샰o&UD 3)xD3فeiVD#tb#[ƀ,S\R/&&61&#!;2{ d§1j{Wf6@dlB$By`pmx`&&،N,[VN7XQma®qB(dXr r=ih]gr"p7/0 |)Kbmw!踓E焺E rJP`HIH^)#BkB?U )k/ AM@'MVfֳFh'%FH9[{Ld.β6y׫`䕈TRa}Ij1 ]Nro<045 1AM kG*&kq.:xy6X8ޤDASa^0j##獋aQ&/)KЫ Bq  FLb YOqermjݨ9i3LVMk;B ۽3Nm(սb1 SzQ ٞg^^}OuZF#R,v"oE,ݫj6!;]Oe;D<,]KfP~P-9>6"ON$~ NI0pFXkX)vtw,1R3. 0Y[y{]+q$,ʓL WC39u,{1R5ta8K%3-q( @&r5zԡҕ=!mpDɍdl?J?D*"X ިXq-e&6-ww{hн͞ڬi[yҙ Q@ADlw ?RKG \M\y@ؒ #b`5'G;nj IQaOhn.,;Zx)]_ '~Izykdq3ݓj& Ӷ-"ئa#+"B򺸟Ep̳ %ǟ=FR8OҨjQgیt!y'\u !j܁E4?aK IHE5-l6*C>'3'ˡpō)p-o Zna?:QKbO?9WX:^[ͥe5㟼*l8`>+r]=ݦrp`Kh6\|v%H[CJK~gs~AN{77zC9h{t)3x}xH ӥޝ0 n`9?.z+IIkլ(8|;ZTɪksIu~%n|om}DOI6vgcd,UR1̦jb;`ګev&ٕa\fnGHFHf! sD~m/| sk e3! ]_ ^_ja\NDfDh<֢mk9(Gc,]h]ձqJGh|n5m<xj߈ 4harPpc Í4wE G&?ёt=wq䡣ae` 9id/aw}-Gp f W)ǯ[Y| A 2̍kV{ϵrI y[(!)pŇKt84DOyl!+]y|$fqr x˱@V~g zx`570 (T,tX:hS(Mn] 1TH#8j*_e'8~fL[ 9N50۠&S&wa}׉f,E-i{˗1ǿN~ދ_K:{{~*4פa$+\m>M@uQ&چ\Y>gFPTSJ鈇-XV-~qV,R:3"tS`-j~+X .9!tHg!TsD{_J~GWvu:&Gc|Z?RGK}ludh[e#3Dx47aGB^xQc`xo ľ"R1:se'>1qRRO~WNKOl>eX2ucr7^zѷ :_:lS35%NO_5P^:*vAK9dZN'Q> 0(l;.f|NdqLx*˃@J˪eW1ZPg $rͯuX=:2>P`Y B*'s񆯐$剭2z7M~\pߵX=n44'yz㝃z+27,$ +$S,.<^uh߃t{r:#SuO=xY7ˋ>6n39tPZdДPt\R21ʒ_΋8N$}ɵ N\l!Dr=hhy{/V꘩63@.?0%}[a/ٍ񳚺: .LIgkZ9#Pn|ɹ7:8ٳ=;>cRkYIAt_Zڟ9d#tx4:(JeT =.-u^K|daW:-̟Wjʥ#h\+QbB <$cl*ƱVS FA7W/1&G!xGEüL:nDe[53y%Z5OVd荙NaS4:yX7mB)Wn`-ަT c]M6.Udɖ4(F˥zkՖWEJ# J,ۈ[><~Ψ0-88,1@EV\bN1}Kվ}epy$V((y25g|" B׭p*m4^0vXٸ M-.c5Ҋ0A h]z`f!|Hu_:~7j  "w<$V8Ag*h{|;Td7#v3/ m{>~J*pCi&@Z >=a93Yx! l" s娫ܝYj7! 4AxR|<}(+ES'z{cѷ>!l,c(<'rO?oA>.XKfnV%61j 7ҳ FP' =ÝB#9P] ~f=Hz7[Edq#n42oI*ffVKE5J`桉$,.EK#YS!{q/h~Ïdm+ysIe ɮ_| j毈:[!%@4?T+P1$^N=o3g@V(Xgfks8RulemapDH>flidqFO29B.[Ǹ! F&Q@09t_p%tZG])_w]ʨKc-oe͔ Y0eqܬsqnZ9X+?|O=5ۜ3(a{x5`6FetY`\qn9AA )d-qLA-*3 U+ylnR %lFԮs>PL8WE(j}nHgA:]~ixtI+y=K`Pp;SE FU_6IF=tQ700Tցa̋z/gw)0b1"2),p+[Cw$W- 7fTH>G42(VY畷*rb@!:GNb 3lEB-mX}e¿V!`_ܬOf /-3KFEqV X}v̤xk0.MHoL?dyPM(nC_+s_D/ Ow(sb>2ď :ֹEQg!0ny^,O~ Z1AK[5\1>ĴMdr ZҘ̫DO\]↊V3U_@QGd.u,P˿;q$PyܸǨ*9q8o) C9UE |UUSX+`zo [;t Z2 _N/;//Jr%\={ShlŦ{ #Ku,J2CMX$ëcP2Rdj2'rˢulݘDtR#A[ld.&#(U訒uDz]2 ƻ칊tDj#WU/UہFtuG򣩵&}vG0и~FFXXTUQ( OYE:6>O l/[ʤ{ F8GL:U[J3p[4>|y; a 1f[0a [QhcDj'9 ^2jbTTt: `U0PPCRG`tzx?E,n|]D ubwnQٴ)L?~l\UeEPݿ+._ e'h,m3"xėۂT(gQqQXBl`<|pvWrƇچBz/ǶjTazO\PwAb&QyiYaIZ/\y^X°뭾ᇤ_QY>z3_7eC;&=FBVW!2u$!kV0r0D]0W#j %df۱1-\M/$QZxT W(5(YEHk 39U錇tVNKF1iϑn}feH֫<gJ=dL_;9i> *)DԱj)́(|aƤe:eҕ:iq_;[Em3;[}᭧lv,BB!Qc5 6CFͰӦ>>α"}zviӥk=ā;ni )U144+a -}(ZZtL $*)\]bT1|6$^uA)۾a1 ^nN:(97ͷш.Vm=ڦ4p0}DDJe Hӎvf]^0-Oi͏GOnQX\G>'q_Wqu+Q&w#n"KAkw[-z=5a`qP(okI[ZV_eZōweupw3_0 ֶ+R.7^s.ebf+yM L*İ/84.zAZ6TԺ"^(4hf@{v-?viv@KfPt/u^FB.Qh=jHOS.<0lkOruיŹ6d\㡱IWf++V:k ˏw1yD痄_jx7rFݍ; [R0lxg:o m'*v]?>W%Fu b1n2j |tGI_kvr"^ ;m3nxq~䚢R0y'`A `bCwh.QbT47l U _ʅQh~)hoxąey_ x5Cq7V)&ehXVpڱ]3kl![^vJYa&vFbz7Acƥ;*# 4qY( >]zUdle̵* wٸ=O\`o[yk.{QSiʧ^H^ U\5da"`qpV)xR cLyVpG.`#0! -$ {Y6)WPa5` ר8bz8Y!q?5TJHuDP0ev&4 coQyTDžZNM ʁ$QN^Ž%ZMQxSa{(O&rR Lƻƒ& ':^L]ZU19]e$,G*i(86tP6&y!*0d9ZlZ`-hviw6Nlq]fAI,m*tڷ1΀/Ё𷰚uݜ//o Y%&#s mBP$^Ҫp%y.J=&jD*qQV}Q:?tUjfK:i* H MGqFY]߾-I5iUp>#T'smnf#u\C .PC;#l?yniA.u1xQ.RF4k_]+_m ។8pȌ#pxlӁ0d5@F`j祫髦Z40󙮓lUO8tE;=~PÆ׉}c!M]"eTU!\a뇽ߐS\ט( T^Pi)89aPP?1)p|~@8/:aÛ2 "7W+Q1`ڨ*\V zTEA7*.bմ -9!b%\s/Qbhl[@^yxY|H!m7/#9P ZԂ tuDN;nL1F>Aris(K3z`pIhwaDFᆤ*@~(ud\HteP{臷.EIJO_C \"1jg2OX<һkL40͑ܐAH;Qk-hIZu\Ҿ#7K!Pg vc/KioRnhGdxڨ<7{V\u"ԛkqϓ0 8-INW. ǵgU Qx2. -& Nl XϵBhUCq|x n6AK/C^%eMvcӆ9b`dU@ç~U/qD}DRG2Jz(0ʘlf@|.'=ҫ2?V$WԲBaհ{OM7^"SH=ELHnRF' qy& e-BHxN\njtK\a/CñTcP H-&.8ACq`z+ֺB@3kBμA-jmt"N?ҔWȣ8focΪJ_3y،{П[],^+"<Q+jx,L} {n?d}Ks-r?=34<~PT@:׼Ab0sC{p{ 6dy'kmvğ#ve˻5%u3|銻dWF#WY(2G:nqer-3Ʀ$]?*¬7!m릪b%>;4Eԩ:VPj݆%_`vcaTHѿUdOYEu W(O~GH41WI ɊvU~s;_.PRіc:f!姄c5o=^ }A0~wu=?*ƭ* ݗ˽P_(BFMKLcF 5tlvtiD3! n1uM*PU|U^'g-ǮkE`@0blҠ Cޑ{Ȼ_3Cu&13^8Iѥ ;ME<]N{1b)|QoQSt_9߬O !S$ZMuیfL4T:6}/9(!d?Ё?6̡\njbI׽Bjh]AZ29<z~zBДទ^\!k{@op8[kgϗ@WӁ(nF]G< N]\_5gMxO$hfb/-CK}R,M2Wk~#狒cwq޿q~qοW% jUY0JBai1EUw({\k Zo'x4=SxجZMI-e-/Y-y5@nˢқ!$~nxTC!)+%z;/G}#Zx_ٓ]`'i|{(xmiӌ G5\5N#a)U5c&`;DpKrol(qFK^uV[$Y`8d\[+j9kI|iᜏ R{0l oZ7WZ/ǡˉ>`YJ) xϋc3/Zh8],LΑ3}ܼ՘h[+]@) Zc fJ!8v3}*.M &61̈́w'$ٗJ\g~s]!k4k6 ŸM[S maľnцHL 'C_c7gQV=t&Īpkl+ι>HdxZe14fhRB'EkUmߣ"IȖv/V?K5KdeC/C(O_,@!>6tvSv=@AN3 V) i#6,qXUR=7%cZNֽ8}njiX;zJv[Ty2^SA[ƷY)ѥ #3-PynnuLh R 9H6+kaV홌-, X'Ntev/f0N 睏(효WYR O+q~(K=J/飖*P$BeV.'.zCzJ]&JdXds3zx7jUy(`aC_`鿚zqVv8{ĠTY A@Dxr5"So#WZ>#^f_y1}mJYjGoqaP.p|5m@* !a/́w+D|WpZo%Q6b-WgL8 ^hV$r5&.25.q^ YJxUO\H/pwFKAѩA A#/H>S\JNP9R93P@?α:;0q.o8d[uLu|DX^wb<a/FjH.ЗXKO^QyH+FU0W#QzseÖ9i#_K5.^Vp/wSH,Jۃ&JqRl~L svp-4dykQ+Y?F;9:(ռhCs ꛝ}l25-%mB9o]<:c0yM >E圏SCpv7+)8]q9TDDo7Гy?1#J΅khMQϽ͆! kX<πcW";A@#F:8ZF<c\CoOJ-$u8j%6A-r:1m2,[dC)0avOTv9p֊Dd"U3vo$%j#Ixcݱu[d-龮`FpG{BSuG$rБ̨z@oCUo{>8oZH]ߋ > 0Q':vZ. db3vn T{\nWlӣCC -Ƥ9QDTʝQG:I8&-moiWX yrgxg~)./TA${"ӣ`f2B@U?tF["@/".?DA; Մ^X݅23jA(uE )X(HnNo4J ulǼEm7g?}U@m#*R;JDb\}$(JSNZȊRj>r-FխGǰBOplc>4zȎ]h%FM#R# ExQ$Ut)x;<JDV|ۧl׬v!'n#KU~qa>p dt#I*NK5&֕\znrp!yX.hкs]:tjd]H(K{r3xoY`-2Y"2Ȫ^ UASd!Ɵs{H"(* 3JDAXsLBXOKuE}HЧ9UD@ssJG)h1)vD[+/ NDzFAF݂w&5 ^"27!pڅMiN틩X?@JAK\`5yIKPD_Јݙ0^ 7j}Q1,b.)UWf1exʯĝm7"&j٬zaK$79Mrê'Q| Zd-r --N@IUa幩Q$- Ȗdx ՞EΚ7aÐm$z$upUmI]e: d~{;=hdP"-nRa俻ӢGJc5zLtuCrB?nk*v Zdt"g9Cj_|of̌TEU{,GcB$~Eؙh[ֺ  ic12YBd5NY!c$YIcMU.l&?`UElU4D+06x[y ,O8F-N`N*G\X.EiX;tinخ z%sH/EK{ZmT`.pE:8TՂMZD!X?R.?kwyC1&p0-Q`=S&rPP ږ} {&i,pJqѼHQth9P! (re`tuEc]oH5X3S\}V&^"N :D5X|Z'JCS>&h|@xʱ.[]Y^V833..( b|mB6g>K;"IKJ'dm9#DQOc Qe eJVd .wg%{Pn}bm$F<^p< TRG߮ r}\_3/⦖I"dtMcPS]kg~A)/yjB+{%d(~X-! ~ v2>ÿEቮxɥ7dd5Bϸ6 jeϒ6xt@7|1LE&Uՠā-'hy:,pa@ ͢wM5U~hf䚪͌_zȠʍp4ie;M^\ be^4=[>ʗf{i$86 _=F!Adp/*ĝkbo{M$/yc9F>8^ Y~Ճ$srB@9# f^qUӹ >4J:M7׏KZك|C>ɽ'DZr4(K&`ޤla;ymrjk&󡋽evLf#XN0KdQ%D114{M1rF_&S_+U};&qYF @ZFIs θwJ͓-154}UK}.vO]P;aDn{΄xwAFU{4i@)p*U>"?/~ݺ SecYUHUd~Ei%:mWCj-}+ѻoR`Ӭ2ɍg=b{vb@YZQNzpWR\dZ@J 8nnq+#;H45FlzT,SMYZ`YscjH.cNcSmMN& YtBDPl'X%jTn["ϖ>E;'j z㻠(0iZ^9{ xc<`)o"KQJ_[ej֞Zuk-<}aj1Z(܌-H,'Lmλ$a(1*(QdFoݨS̿ZQ/J$;^eA|pKFL#]R+:p,:. sr-(A |f K))zK2[G/N}*hG.aֺ:O xo1~B-Җ {f $Fsc_m& X1>DA:BMCO }Tn}f'*!hNĶclOIS2n;dժ<*a'p+}cOF6\ آ <녍*s$L ?ig'*ْ]~wA}Eu |$[r/{i Ξ* ޸%0GoMq $^~G"?Ԛu}&pTEš?߉]Й;G MT?vyϡtz!mHwG.& 8'^+ԪE"@x7VSuvfm -v.6gRCdV@vǖ%n&M5;NK,ѾCyGdE~OAD<5^~isO'H@?vtTk.Q hcF7'μA2~< Q/&Ba*`bj_$?.v61N,}b+ ][%}ڃ;$dLU4] HQ% |5+>KYxD R#rG?`*1163z\a&I0`rOVYͤU##ڭYۘWti[Ay7l<%m}a!ۨ٪ܔC] YSecĐوvdLDkonQ*r{׀+|W\8[/!5] _x3݀ޤD& V-8ʈf'%`Cz[Gp~5rɳ_@ʪ͌8v }zWgoodL[dp' {N6*#6FzﲯM{зii Y)9{J.6rj] !>/8Ql_;&=M<\6# O #!ۼrU bSMlZ؜R `g!LJhɪPbyu%BP_$AL*yGW6G3#'=f!⥥ۄO/C,S(Sblz*2ign?sh4a{^J^R3 !:S)|W#)P-5/Lr%huƐ#)bˀ.EY{$% i:SThqjwI*S;Iܨa%ѱ{C+sUaVe-? lO=&~{)je1 xvv@(bWO hE=ڴPx13f2i(Lkd_'I Ct5 B7|Ӳ67 'ηs{*"~ņ IFDLy g 1rըP˗0 .n-̓7ӒHlx&8r?lyjz/<\J2̔uT_U˭ٚ2rgL^o<Ͷ *N&If9`{$r4̓Mj*Xd_l0JF}>{B עY5brEܤ`꾍&d&Wu!V-ɢ[[ΐӴ@c,{&TkūޢIm< 9' 8ao7 E8P۾/cL= / "(:A.z^6:ZtS(~ x^I^`۸PQF(&1/ݨ(3)| ڃ_پ -z7jeXq[C'PVj3)]|-MimP"*P,Cl*Y~Hz誵CV4 O~7 G.V᝞/ %.7?up5ao-4Ŵ3edG+s oA3[`n 0!'^Uy^r)%gr|_YP\S]cVݮa}qɤO bTA_V0@%K?]`}Q 􋢓lы#ɧS_Q; ہm -i RL9=%'cˢ(٪}~-Of.ћzBO2mVeַV ̽Uz&'J@a΢mDf1xD N/ ujƀwl)a΢+DX@Y|mrUvSQ` $0eNJ-^ȸ &(oh;r -o~#}rSe*~$w& M]iy*Mfcb[DYCRO!z\}6 uD^`WE)+W'D='54Ǔ12G,;̸Ã5 NN~ &q!N\\x͋ &?D*,STzNh(MŪ1 I m͉Cjw^7DL"VCr.5 A-kݯ1?D19䶔q!jF՞~!@a*3HI)N~|П| '1Cu`i9EYϑ"J0%,u<3d5Z NZԚ\;<N2y?LW RTd= *J—eeˌbcI tzMv=ŕ`2&( (( 1UB-fQ~e3DTy@Y`ݮJOha柯aCBSezn⻙W[5Fc#$2`dZ[IĤ|5Lk'x FST^62̗?ēH 11:ku,Ò;vY Cw[,绲n*5qz^ێmb+}z^@[!|P6:>2< VL$6ů4po[y8jȆ:d[~@!t7LʠŽe5> ܘ d4Js.j(@o\6?,_ >1R6a`˚|v ǯJln".nWKare}VҌڰ%&3i}̓ K,z-P+U.@=(:+<7n k>&YRE&[ܝr~wu9<}t,ݠ0z [F&@Lc?l~d{ f((?ca~h`3SST9X>%Gu?v{/nz<  yS&hÿqIHŤʫv#;_[B=9eܼ)G̩ѓ\hbmb#D@m˩ToqPϷNBOn|E9KUID7g6sH y^OpК5^h826L=2fMdFW!ޫݽ,3s3=cvjN Մ4қybe(̥==ä!$'s&y$QQirIyϗΒD<77mykio٧->8ʺg2cxATՋ\'WS)khr Ss< c;^_G [ I ?,3fyņpٓ(23۳ iQtޯ"ނG2r;ݬPf$^Μ{6=O?eX0Q WkkPƝ8ݑ u"m?IfP݃\r3}=qZ)Q7Qh;l2.ztoByB ݾ v;y}zJ"WA = 6 4`e 3u1~_3vl. @1o35{ d5Bjm!"} p(| c{t$1-g_/ڒ7X p+cG{Xf9# "y>8Ƈ!Ho_jgA%RLT6FBXEwn¯B@[Re5o9ņؔ{ʑ6V?JlKs\ MG[g CɔA3YGFa3'l+fo*oc=Š[ޫ]]S>LAt1 ;?Y`<}u|z>hɺ.!>AI!1,ee紕'#1Z+_Gmb}0=s~N[P/$"\х/ 0a$ix`wI!BK)&X:^"GCW-:|Ch7G8NSOݼ&J/ޖ^n,s/z)ρ@|ٶQ+Γ&]HK_p&087偧C$w$(C\Q;\ 5SR6%b^ _ ce9#Y„ AD1%W_Xn]XFLGכ7VEʯ4cR.zDfgD+M >(Q pվDBٗ(WQd*eurS*( @MxS{1wXT)RI#c5Y5I{v,RR ݌s& L6\e;#I@1!"<ޑvX\7FAg @#8Aņ˘٫. \B@]rB6s1r-"f*||1aҦW` >rmR.xwa"l*3ߞ}}Ip sg#W™)bSUb XYHrqa8p\3G4> o3@30KIx-vR.*pЃ zhl6X(v$Th׊N[ܗ/rИ4S%:LF|tSy\emւ7}tsvUҡAK3=9!Ou@I{}TƑ.m{<ZwMԲdr)T{h+(zO[-d]';?% "C1*K~SG @@{@}_moCQ\lN+oRL!GMyTŝ)}Ċތ_^mk~g[Yo=k0ʭ_T-:q;- H?e-.U;]EҊgu`!+eGx{epsrMlӉɟwkQaKoi$dzrROh-K!cd93LC<5_sBiepєY pJ!fD4n\(DŬ:f#`wNۜH1U-^4n.yE%)*i;n2E:vGQ(Px\rZ'dM5,@TDc?=!ȷ߆qcUt7}r1lrc T_2v&DFҦD~*+) $6.zs,h/2_]TLk ߧC.)uJr:d5*\lx ■ Z_ư6`f{zlk1O襙HG|_RI_1.,Xo|`_iPj,z><ԗS<ӕTINU}_x=2E1E`,x'텬ñ`G ;$Y2Sz&[q@ Me4M[o;dAG6:84k㣲̓Sۮ|] J$X#_+g7Ȧ|kY0GТPwjOv8R͐\C1ϛǽoSr5ÛVc@`#߱v ܱgs`FE+#.IJkcH[*#٣CNjm4Jf~:7eP|`8"{HHܻ.Vi. ;3&-ѷI,H `'3ћOν5, gbмvVjX۪VKXGi:z05"ԧ9Jl-wfYlrpúl_l^zgEqwp8* 1bDMO׿=1bϭGN/`D3?EΡc-vN.Ԋ +(֛]) Sq"U/B|*2}W`;o:}HbBϽSd䓣9tfx+a2t"K.ʝ2j"f@\ZinGfjWSx]aɧ))E:N,D)Yh92ai#:uIŜۛU }ȫQɔ|1(d@e1k׀r5YJSn꧋t(*:F[e?&TbabPʀ2 %J[ 4!!vis/,s\`{$}pd_ݟǗݣ_{Ͻq2Tz`?TԷf+XOYwMS]q7-+~Z'& )dN>A?D8VJb` 8+gQҿ>(}eCk}1{N$tn,b|h)HupOއv+_!Pz5#c%U׵=E$JF*Px68WQ)V[_@cs8X VCSEh .5yu^y04"YWsX5uYa8ͺhZ[٭1M*ZMt0_~v _SRf'ࠈyZGS\Jfג|(ܩpfOܛ9D-&;&1EdB:Z)T`LńOCk)LBttvXNv=RGPL7 Cw,hCpϙ-ϙYIjvgrRˍ_뤋/;ɹ.ᨗI5/s\t C]42CHZaVwoR}bHw+diR}tDR`Ɨ]|ʭv4jV$r[R/-5!+D'Ij#'%zUr)DiVL>zjҤJ)a&ugNeAwIxj-5W)J36+aܬ#4kGQH50ˊ5WN(XxjBTk4ͬ+>O#Qf.hC~SIJ Ê8+b)H<1*O`S4\C*{KErP{ۥVd_@@3京ú^ר]Sg%x0U|5ʂo:g6d-SCF}z([;s R2u?xKx[ -◅l$Shns qx<6E/6)JqԖBis_W7؛k҇`5YS +>GC1z1'juUD=.7Ew-ۋ5չ"a mY['uw%ck=l(Y9ǭ` Jݻt1QAPS~V`P+BdǮ+wD,4 RT}2^):0W"DM.a$U%}QE,I`:] z8oh6 )XϏGZrRPj܎$Nj۹¢ꉄUUJ2'.j2_<'~O39CkE eK s>NGJ@Wɤ"o i99 m8!ǭ$' %ain$MJ,Ec@!]6E˭K)QN kOh=5$MD#ݙvn#hп v[(^!VmTŀ-XfK^FSF1dlP7A 6RaAxv\pjR&Z֔I,A_4mhk&KH,DeYu/^1툾' xgWy՟qeәHk'J'b)%&Ix {JS%B\ޯ $Bhqj"UʺD: c atW%̚l%ٌ%zΘ ™2HCFm. n&tT|ΧeKsR/Bgrx9]G9㸓5PDJkx8ޞ…(=d/Cx*#X= g?tC;e)S`&nygh~46P 6ޗ)PXJ̝(Iu7Xr,ʚ,''amHa>fN1|,<Wqdv9glmAO 3FeF-$>~"Wr 3W/CnLn {O)]<("?w6t966oEA2(9NmK(ȴQބ6dщ\Yo*7 kWX: j頠*0Ѫc ]nou98$qc.Ask+Rw5>V". x7|۝鮭X}ufuM"m6z( ֊MJ*)JDKR ]׫bjXڹ I{o/SGP4+A,(gw䮄-Z!FlRsCcy`n4zaw^) J?ìR`dۉ8llaf N|z|= :,ab_֖( !Htc8;d /bW |{7Mmi LM;gϙ]Q;aM - GDQ w"<[q"6f{!g>坺絾P(<_vy H^6I9<{@ѥP..?1-Jl2 y 1$A|!I E!%bD3g$E]D;фӽJ,'  K KG,_ƮkP` ̻..〧1vuC@[@6Q?Ki~[.T.CwǀZ[%8vf_}#~m7;0Y 9:MvXMʕt'J ?9#OɧMS}}xl䃰y-i? K&ثn;&$񻎓O^_W WG y肌C`f/q=hezHGqI?PGqG/uHO(,\.Bw#ZDU{ mϙȜִu3_, L K<p!}Ef0űNƍTN f2i D>4jY%rZ;A=1f6́܊[j4@Z}Wxub}l%BH~*s#zj/۳ z6uș> G GjN=$C]֦Y2šIЌYS6V٢gH |%nM^.qI^fM5wls%WZtnKQ }&zlBv{OjjA{D%22C1.Yį]SR >^D7#÷`4"eCQv[PЏs܉8k戬Gihv9(%>ϲ7볣&pȄ^Pɇw'X-M|qru}zR? pu_|\ex%?HjJ1ڱ,ISIsKc/AM6 CG}sA[@UGr( X%p4fbVW}\wg\8ݔr#L&?/x:>&|RYQD#M) diRiC3XG,㘲(l s ,Ȅ҈5 O"0ԌZ"OD7#0D'@Elu%8ㇵRˍ8 \Gyv4\ O/L2$Y7̹!>a4{}(glh崬WNB?JFM/A16r㰏_+JF{NMGCw3Հ+*⊸ C#b9[Krm/oMEʶ P=B`මrCn r&T+K -y3@[*;/kw o"$$M| I~6D]U׼$ ٢tYe)lz*)֖¤(W;SѺ>>$ۙ=ٰA6E"Jө%tlH~(!*ejH|)B)M灻»Φ4]h;lF#D~jk ?6' 6VGQ3E˴d:MڙLB,ίbքlAh6Ot4.bK% g ?{Z$O+)7 p,_7++ >筴EAS,6~1Z٣%lFC94L@hu%H^Nٝr5CzՆV F\Uߊ9o#ӝ@"]k^ mk(: =Q KS4%-u0H 9 w9ὲ} Nz(Ƈrh}dqHD06,[haD cp3vNsZULK_$ݴgŨ 'Ȅ944&^:eB!7=aidP3!ɿL^/u-Ϋ[D ~d{&>-cDoHᅵ0}Ϲ3NƝؙ 1~f T4Zd]\=AgsR,eB 8^r\o-%Hbr4l|S y5UV6~PG"3jxC5'I6q̞Q]/ cM #vF7Zr ZoEy(JYsRۻ|9fG@x:k[dֺ١s{/'A:;;Zm:<=@kŲPkqjiup~!&[';ap&vD&:qr8v@pa14F8k54^&/E.jQ^4ײƃV1!t{W_rE'!_ gUFiGh812ZYq?~p@| G b:E5(dU {Bȟſ)x] ct/1ըjOC7*+9W̛)$1zH:h *j0XTD}KNS,L oqp>?1O_*ZNnHc!?,Rv]ği=f/@Fl(%kR52>T[s)_DePy\Hf'ߎNOEy\ko_8I:LEMzl x54H`RW=w $tEcխf3 :Tm4Cy\bQ67I`ç,\߃M&BeEv×FynvW*SA$q1FXfڮNJf1IE􌹾mp,N4~t>xBBSf=~pnjœ.ѝĨH3,oa ecћsge[%=I573+vuW1k-*0}Gwx6v>VE՜g.! ?p-gZ^k"9V7ש!R!H\4#H~ &HLN~uơb5nHpE6hlfvhbEo߼by;Ԍ^xѝe 8hX0~f@I,t>FV7S[{zk[tN"L"H7NQ٨3qL1wh<&8Zw&UiGn^f +}9 N1U0wG&Zg O}^:$3g pK[;=V M~"[ZXmzӗ'ډL? &'a0"GJyQDM=[ˮϱW4 3z <XV,H]勀͎ppf8: F͘Y'bHdugoEcM0|S.+1 ]RPC~M@cH6 {z8Ȁ#~69*gMs_Y [t @ k6f}΢VQyMh}EӛWBR$!1G<:r|R_6_95&c,XSn ΁9?}N(_~xzAřWda|(Z-)*V.jM᫈ !mgիv .~ \~ldʥp[dK])ZdT[2Z;ρux(Jݴ$s6LfUAcHck󲗹 I* PM>mv(I}:Q}I7xRH `v֕wt3նh(70A(DISkC +R-LWKUGs&exO*)~P /wie)rlEXBbgXTQ0B$erLE3L@1 UYE"3|pX'V c^@e0bueaqsD99yPC!q&mAi=_ט 0YLNTT#-QD26ͨke]}%FB~~zweo`.ݰ ERl[ӯp{ӷ媨ȯ>xT=~}4k"!A{1 fd srTl:ğǘ_~zpvEsE&ga} يH-t"'BUᓅ*_d6|= #Z^\_18~.p)va.|q.{0 T{ FaX/B_N$mC8hD>n12F8i2YeMԱ,A&cv[ ߰f|dʣCzЎ,FDAJ!Zz¥?\)"@̌eDi\d_}_w`(|Aj4kb,t o6aI?1#]"dl_6yRLL7kO1Mzua^5?ڒT+1KH^W1i͆KO.CbHE= 02u 8-`OȄU,#r@zJCh0Lȸl֚P<%)~"[rCålym,7=gy| |gxS^-hOC>pاM5=~^ġÏϒzb2.2zr/!gI?Ѽ:Pz>?C]ċMD#K9R%sHbCiG|rDO҄((U[LNy06 wPBY Ovxz7f__x$'.e| fX6 W9WFs'nCt1O3$j=TrQ1Ǔv"2{[m‡AytE ._ H$s#N$F%PU7q!3JC(PgtQ!`m:WLV!〫v\W;ݞP^o  1+wb.kΙ>Vš^fM)7,U$JS C@k6ܸ]"oJW|PdA(*.\w4t.HTW P6i5:lgH TNX_\]M:GB[Eȥ&F⩷΀6Ҷss.yY3A'SC8NsӸھjUF7(*< L- .ӷTxJ俐Z)-&[V~ Y~]N.N\PY? 󑨵8R}<WAem+^ ]-n] EBw/ NSmOhnXkZ'5Ⅱ>tVY/)ѤlMv̰Mc-򪓟,'Wܰᦒ4`m ;D4qVѪΫaE?;FI>5w >m?nf h$ǸiyVa,@se%׹^ ) |!k_w5,C9.?QB݅U.䴢HJ%i'7%GN%`L[˶.jNR2(\ki>,thhriX 9z`IØJ y]P:qX'z0Q+qpِH}0҅cSIzh֖͒b2Nc4"k=EH!'2= &DU*"] nM+xm!f$yc_q\-ɦjd󪍩5^俴L^~@ B y%&ՀɉGµTh5 Ƃâ긟)'` zim)~Ժ zO޽Lxg;1nw@r HQS@|z$"MVkV|pTqJэjyRC_CMzkCke],Y,uRB\E 14|ŋ$(74}a{EN3$ВQuߦ O5LVJ,X3W FsXlEy i<6nO:K%|JnOEb0xn$[lj 6w\Lr0UNtɁ~Y̿U <}.H8)S~#cS>WtrZoe3- jY .8Ӥ^$_{@Ad>z̳} btR ߯Z[{5ڝ dqX)ewıL#@5H)R79bK)/}4##mX3 [ZHO6x04^&fbj<#GXJ Hψ_ Ba.!춚`- &Xqdl9ڦjpC=1PXEc-e] %ԃ?z'/4pU = ~A exF b)Fy⨋^;qv',e\f(iMj[K8$~D-#B)[}5E<ΚNEJg#uv)D=5}aM?@ _@/U+ p'HpXXkX=k<'Œz? _n^-짿vx석o&tj~^HśN̑ ϑ_Žb'x.z)dz*a<(}_l;VB  D.Sx*)#|^^"\ϼ v:5ϲin^ֹ)w^^@$s@?te/O\}d~60UqWHHӵ< ?mhۖ8ȆVd|q@a]q: -rP"ݞ&怆PY"ÉWl; 0:$a>jN|UKr;!YqT[!sdoI)&cs4(6A|>_9>cVe&wW8lRUx,3O^HgCNhAglXdwHh6cIx< j'הۀ PI A~JEѫ X-rJ(yI0 BkT]2&*5 OQX~bvܱHqQ#cX/&@X AƓd{ 17螢RL RRM~w־HZ9ʹݼn x)y8{7^Mq6Z=䡖!"W^(0Y YFRi-Dw=-g*2+jՍiM;[9h2 Aa [Q~-c. :gEB_Z_ys؀[>͞-bEz;J?F('e-t#'8uNJ]x(s<2wn e=^%{t)WP[}r’VlQ-`~PP%&y^( CzHAu8x'\;,S؉<zn9K,'4=lC,W(\y#[Gē>©pga-PX룛jթG#Wc=PA 1MUDFZyPKZLK\EL!-com/sun/java/util/jar/pack/PackageWriter.javaUT anW[anW[ux <s6S ITˌ4b˱zr"!5EҎv nK_~d'rJ»y~?^u(~$2aa(PEy%BA;hz5]c>]>O?g .;_#12 %B0%g#O[Ɍ w}N>t.axTXFP)qB\Oa|b0da RcWk5@ر[JHdEH6m/W0,( !rRȡFU,k%㑌zGpbvc)Y'|]4}^(G1? g,2R0]˃Wf˷v 2N96KO9ǵ xV]vcikBAz|$M1TX DBa \[np*+L(]!/vvܿwSYa%>=IawS+)#ǣ'̸ {2 [b*4:`C(KY:NWI; =Puϔ *IS8s55Oµ`lH0OBVWTgX% UK/rkIVŎlaS8P=" q0lywD?\@#{ј2 x[m | qF"Ơ47Ld%v9fP v£H[ ?\"[0M2E6az7 gQ1i @NA64~506`?wlS{/ECn8!ld-Ѵx^sTM4[;`+hf\pzX06 ~+dr!fh40L fd aS W"8Un׶Q OziaiR6zq~hV9!:lAAFaeks)9Tfun皘A -UW%O#S;= MF;\j4yT-P}0XYK?gRӤO1' x 9r֮x٠7 ڧM uyꐕ?9zJ0@6TUx~?_@ jƑ<\Ɠ:0=.hn "RۨV_mm??OBBQN oQU).8Ĝ`ր]N Bt %ON3yaJFiG%*M;o em H/}g&iƈ]M0{Ap/iP2=4 C$<UPWk.b(%I8?X! l>7dDv4E1$&ȧK}4T/(2QUNp2RJC/H T})@х2 b},'m ]P/Ah=qɢnj(ꁤ=;Ez'n[!]"pw+#) tT\v|~ހNE6X1z]M0<`XN k"Er?r&i{>R:jm|u +nSH3˨ ze ?p@ô+!GF罏ۓ&׽q EvdT/ Gol+)Y.TT볕m@fx3^w5Ȣ/5_ s4m!௅iN$^*1D@iTl0Gg! >>' l\ D+2A e ыyXr|?.nFחɸkϳ=|WÛqe^dmj2;p"' OPVA(e0&&v ttпUG2: IaATpRN hɔ\ ?F`#E{or}ixf,YCNB]t bTl:'Ѹ油?ft2ª 'x8=cwN} @[v*,t )cH*9dr3aA.!{£dYɝ& R)l+!XĵEuZ~fA^YIVW < Xc5`S)*,Bqf'jLkE"@# ¾gk| s?M 34 m\P9j\#c7h-ܘ7tZW?2*H%%aMNN7͢q}᥺lurf[eRr/_j u,5n{Rf2S\0i$L!"amޢ0tmʪ&J5 j14+cz[˱(\WeR:p 0O{AO`d7~p(~40$?)BˬX7)!)"l4JƒS#8*ǭ]nK__FKc]۵M2U%r qI&B"ajΎZ^dWWt}*MKU@`WQK{[#XXQE2[kuDֽR.rXj[!d:<BR,{XVTz AQǷ(=غ~.-ASEVL:NSrŪo_m *$X\jޘm@+DPte/cr1d1|G:ŊkDGkAzy"Ԥ(:vJE$88c3a+3)puMYŴPtU$˚zZ [rOܘ;?n蹔 {::һ`+Li/-M>ACm}e4? me:dCaCݛ;V2X E-nݷ7"ۆCA6޽ݳ[Cɂ]XRgaVc낒OGZ ynHnNA6^8AJ+^J+:`*b6̙ʣcGγff6,Qg"yvw(XneǖЃ]Бp<0쟾FKeΔWwaPp5/ .HJR}W͸͕g溭Ƃ9-KHpEJѶ.K'U)cʀIv0];N7Vhm;*kxԀy; Ǔpr{~>lD9&O%葯0}ܑWl&V#g\V3p tӯj͹" C"M.d|̦yE[$,P]Ji$T܈Q3~+.3G_lk;E)9f}ϮqrA *4)+_jOxė/~кU9Y&2>to\џɪ^6;tQa\1AE2Q$рk,`PIdSqAƊT"wlGЅJ-Lfc‡9ua|~`hyHa3uJ} ncE r;A:s&O!p%gJЛN# ]VcRt#0~r&JeFp@ mSݝ%qNRp'K3s 3\.a:?=;Y!/,xr 6Yl h3fRe̒Iz|@pk(Mb({ ævpB/ 3k@Dlʴ )逰[y <*1f^4oֶH|ʲjoIVL8jul+Ɩjݦ2"~wAs=]2ns]fP E=c<5GM 6wMd&M, =18%!:edhKMߞT6&3ufhmlI>Q>v-8lͭ]A"QYgP:gzNݥԯ~# %aznyO c@-igeׂY3 Qs42t[\̻2bubwm[ŀyX0om'%8V)t=لIE EiIMpӅqu'1Is%qxRLwhYH^$4sxQ*JJ6.bvbn@%F15(3͹y!9U#q2D=nٜ&c&s~Qc[5.5ŦQb-U1ΒJeZ]5[ o'ϻ"ˑz+{\PFd}Zԣ\^ 0E3 mN&qC2W#I/~ڜOISo(8~ٚn7N-(dBte(rV׍[+ů[FiW+ݢhK zٰPm&Y"s^IpnֹxM1-=$pa6y/۠:$䜄'2N%VfOzr1yqduz_-’-BO+_{df&ICKOGOJgBeCY gt:Ex]=(OpH,#pr^R?%׋ṱpo@>hh?#38J kɟՁ9n#+ %|KfLՂ+uvHFQŴ g3RoLI%m;]^ܕ˽e7&'??~!,yL'z = eq4ȫ, өmW?6)E! N,J N*(Z44lϖ Va&!RRYЃzoa8ܕ$dG֣rP`>ށ_>Hs-FJUIMk,.*^Cp5e[dwX^,2bC֢g U0e;#@K mJR7ȯi$C;{ RSZ;z.ghx3E VĆrn8qni^$RN΢lOAP5T {AR&522t'+{!8OW2sza$bSޑϭfO?{BgO']+c(-EM$x-M宝$)<T޻|53c3OFyk v9$͜qbZɐȰ)^lu|ڰթBWV-[xQ7qnEsuxh a%ޑ`dCgVkQ)ҥ1[gRc! q֘W;`r e|)xX)wz:GV𞄖fϝGvgcLr `3pNՉlPլ"%`*Jlÿs-ɯw˺'vNxaԬC3{i6w7Sl/f)VEt_Lҍ>A[<1 ('vĖ #{#ב%H+-w) T! BnnѾ-xÜR R:]M?;x#v;čsTCl 7447܉]_!TX .n,pIL*-$E+K1 K R cs)>裰XbV4(k2;Y☣xz D(zth MPʚ uGUEp<2ãOY~~qVI<<ҮkLbu7OjCא0EhLBW /P;v X`T-jAkQA/ZTlh)KrQIEw~Ϧ44ޙ患,-jT{ցᵜg s6ӷÃק~;:1MN*HB΀I!^O!{_1_2Hf(`6 (>_!w" =G2bKI)) Dr?gV|U'^7 J<~5SPXWb)Gᤢ`p54ToƸނt(0O8_v0:=hZY +2 XEbs4/ݐu\&xJ"nI1uiO q"N;)#J +{#F+qpX"dhdZ3Fzu 2iҙ[)d ]y%&*bf6C84 9̆| quZ2zag68E_Xzbrҋ[m\0,&#u4h9n  >P?4[/&Iq *uRqօDopr4`y 虬"=){m ]XO/J J?2oΥq BpX*^?Ke&8,LS8"!niweG{{A[^L :osxRz4qA&j?Y/ N׼¬ws-Ɲ~֩Kbԝ/[~2%}&X-(){M,'`Dt6l_W"LMܤEpb 2 L"U@S `Q(- +ʃqb}~$m 3WNY #d梲bڳMIɰXDrWcAU8"b݁j[P-"0޶}F Z^œʯ\Ⳙ{Zͼ賄MGql=h+ߍDΤ4͠b}X=%`X9 w ?IOGұCyQ/kep BHSU?ër˹AV=>N4m&]0ԛ=ԏ?NicΦxNqٮb9 ⲅtWEr[r%e?/j辄GQ:cQnG 9_?}go_WcWǹd%VNUX`a)t4QkޡQ6<=jAmMXKa,|6F,cW{;c UWlhw6%#R>~#rV&mf8ӳÃ'G~pK|iQK'/ݟF"sF!饓r0zEʍй8Q`[賑Ujm#-޻\V΋ 13jN##mSImn޴y\SiMp<KD!Q #%QEx '/FN4V Uh(Edel|`45[Mڵa)1wb  {qMBޑLq˥/OVnqN  Ƽ"K=MGPHsnq5MNM?o$&v`BJ\p>J67 ) .{2xE TN2r;&g  TގvU]hRAE :*$<)|o)k.D^dxtd+ӯN^>?MJwe;W▒G%Lk`0ˌ, rehB00(ħpd,gu~hPaWzƋʒ!0 x𲩭ɛnχ% ٮL-&>U ȑ}. A[&xf(Q JSufi6 I"T[ΘSZ4p%0%ENL[O}_L@Y̏ZLZh_B!%clvS@Ow ŴDXHSy?~j^QN7 EUÅh [٘Ah6RY!b$ u {+[ ǣU_/(ZڨFKۨsXAR^v[℅Njh1[;+Am",>uNM|BY]ܻ gϛWrARk۽¬V 0DIRԲ[rWOY@_[zSm \nap>ȗ\cp"el,OŌ>u>Uya%ݢ,Ϭ&Uk&/dA֒IXe=Oetq@·0n9X."]B&Ux6+Gu/"\Ve9bh{v-c(tꉜ[ D,r"9OZ Tk[e0f< u̠ bZN/n7~yRdgA1V]sG/ hYurY[aR#ʌ\9ZDvXnoI0"a9fQ.^o(KeWմq(Nv!l(Z]Bn$v]6-$ ٨ҼxTBE# bNN,ßVUJ1d\FȦuabe`ݽm:b#ˋȉhٲh'u1iιg r`&tF :}bAnN70oOG1D*Ūt4Sã? }[PV7oA\&B!6lqgW>5+󵨂mrzt]Lz`5_tP(JyPۃU GL|NkT>`šC_(i[q'kc `',6JYYEP>?Oa&/:7 ]*ysV{ <AhHn_S#n2K F۟!?X7)R\>3]:B-u2:< ZLBWRwb#+})\ Y A-8 A*K /(i/6m#BtԔD4FTg XY/-4€ #fph`r̥pr@W_,X[EM ˈBJU)C,gb> %HH)ZC|0uqܶMAHjkMZ1d[wsyb1d'/ߞ47jYvJ., } 3eo|\dz^0E<!DݡGi0Ő7 KU':&[jdƛ`^hnT|@ZPaJ@VIu ͫ|~}VsTe [a8lT*iްQ- BGW5he6Cn܅?,yA|˻ i񱀷p:h9vZH,5hli.e`fߣ.Nia.%G:KPAr}*m8_;LS>NNcIoC졽;ʒL1 a?ie"UÅT`(-&#=Z:w{ϺNd8X׭97V|Aɝq#5&7MLn?)4`0$|d/_A,ַF B0!+Ԛ aqp^dCC:]B+*_Fpa]gutP̰<.<9C/m+WKS56%M ;f73h j^f#Edt V*ȃYɐENYL>шv-l&L^/wb  2dli(Kt>L.budd^SH%A81m3˺^j(ʽ!.Cq\ˢFCx/'>G2~W D;s /DiNm?Ych{O o CA0H[&kDX9zbu2y7[ WR[6# 1LVXeAd̢DHKKDD^0nY4 KIFOެSG pGCV*c=f?K^jO/'۲hoUQW5ݍow`K9T𛹝ZqHѦq3L`io̓"ԥ&`VM*V9/{&*G$Hrb>M>~*~9y@&nEF+}N%g6jY΀g7R>dMNqsl9S22L Ŀt#6e{|s6,:dO@֦KgeC! /ޞnS'踨, iDL5+ؠ̱x\Mzq#g˵#9-*o&Sq{&t8E|{i;yL۲hm!C8sNO6F5)$ěp6veY)eum5|VZ0n*񘱊J SxٺPv iu? ޿۴*nǜA$**dJJke[ď\ȥrQ+PUc40z`MXY/+s1`iQj-ƄjJ@`Wzxg_§-m()#a=$Q<}6I8rdʪf+yCJ(@fxJnIZ,ր Z;Wϟgw3aijphH6]?"i>w_t"zWci#͵x|KS{usR/fס5߮A1 ,ߌ'w)N>Û9د-ELdVnQI&ڒ<АFmd0]\Wl^zKPt;7 Rѩs?L17I [2e{H{ Sؗ &:](o|OKQ|Q~x\ڍ*^ˆ{`|/u>oszIDdvmXr5WRZʈڜ9B_4RYi Y\&IgvATpa ߩfI't HzBg*;yem =rlv#CqpSv "ٵ"T3J^JyxX1݌D:WJ&o:z}:{..G:Nv"fqujvP(hٵl?@:YKcB;E#TvfuIFyϲw!gs {nomfю}:lO*O"Z缊Ǟntx@y5O“{doxGuzNLRQ>-/0fB~PKZLCLd*com/sun/java/util/jar/pack/PackerImpl.javaUT anW[anW[ux h$H&w{bfys;;؟SfmĎp~3?M3`?A6JRͮvps0u@8Ѓ%y7N|~ ÉIv_O=xG;6prdH?paJuB) O;3ra'Yht;K~6>=tJ/(=Rsh;& gT7<ҏt,eҘ;Uʻ  y9Ȫ:AOٕ5)!vó(^8Y4}0NņfX#/= JwN xFn@l , S &Wf7 rʢ9}C6]T7g ?'qBL;Ka\?H7%l|.&Q_Q'嶘~apxA)d.,&Q`@X2l)p_IvAf?Z#O CnF$ yBYA4CpL x$r|w%$,O @ }j =ѝ iK sbw4RRr bL%9 ygT@ȧ|D'i Lqk;ꂛL:w"YxK9щǤ*`-nA4.g<=>fa|$oǧ=o3 {w޽ߍW{,̤NXqhSZv:Y*;:nSתuuвO+_Vٲؽs R evUH`<"DevMv XS`{ˍ~2!GWq%~- ]<<`)]atSi ńJhNEj!w4e- eFz!D bs|s @8Wy;IˏAQ/ųn1T|u;f5UoVpgŠLL9-(gP0zACtŏ9G!X&AJlN:- BT>9uȇE)w }R'mŸ>#(5,5Pq45qX;^HId 7."zQA>J0i0π*!g F==6,++f8x7Fv`8E <:D3/HFV\;yǢ47"qE`ʧXUDs^=IC9 x yaOv7;~;k/ rok-@nڝi|:eɫ֥BB$ZA| +069׃wx{;uXU⺣AԞU!rz6 >g^o8 +N"!Keju<^ۭ⨱8T\s?( > Kq FK )q|9a0: .Vc'Dq䅵az@f4aPO 5%li-wPh׹wA_7%_!7m^%d/Bt$_sްdZ]o=:Xsa+ pݺ*zBz[J JykAW= lU`0RKqw#6>3–%=_][Sr3 KPo*l 滬4BߚWe{ΗXKh^a`xqKBp `UoyWn\c6V$\vǽk\849!=*!fom+7߰g%Θ :䅜6󢮰HX w0f5/ZbﮠHcZgrVhaBNMw.a6 Vy騶fp(R'|`5),(?&!CTۉޡȗ] ?mmG(NoԞQUz|wٿ;j+ŃO `ﰌ =~Kt-yQtn/ВU=^GY;d"`\SzkG057yK!K'Nxd#^Io~asYdIޡ@Q/rT6caAKlG|@ .\O)gMrCl8k*b|k~Ѣ1Ì& \8w`mȎXϠJ9V?o!JwZ&M0"9;*4, 6uU.Xo.D":k [r^`K&&f]V 2\?\ {v[-eh?Y{żM*vSO(WZN[qr@U%oMS0ܠp*G舙A*H p D.y`j4$y&1wr%ܒ-Nw؏+:piG$@d:WGzn|m^_$lؑPP谉; Q?y=ė#hKPPB*H?2RYXu}6<%>'r n㥒5|('Kh(ĩ,u?HTMys\ rc]@`)iqXAA9'$Dg3 !! 􌫄Ĕ<-ZC"Ţێ.'"~65ϫJTQaщa AݜJE}PЖdlDΚ [Q" LBMչ4ޢ(GiG=J*zVSb |Ru<8+8jf/cGPu+͊&+zqp @WT2XZl(C`xZ:l&:AClCY=%2 o53 %JGeDb~g` 83H鏜y$ՄǍw0Y3*uyu#f(}7`b,#is>n@bS~QIU'rh Ek]t9 Q"SjO-8^zI BP6ʚݠӵ? x!+ VulWYCﲫ^ xB 4ryD C3:1([8:rIɥva^ _`"h?Ow^u^QxkY 8NuQpX9Le\Wfܸpۇ^_©l6^ /S?Wg㵩)j<5,z0=X|gqsn<0@^G N0ױ䫎M*@)d:bql,+x4_4AQE3*$lT$z*,xW@l?z"z@Kؽ{gpH`UGQU6m b oJՊ8vd᧘6:[]nK} 0zQhK@*Pm-(-\Ƌ}P ʟ__Qu#oZWhľ8 OUG{n%Ee.,J:6aQLYF ~cGtd*O"$Zp[j uZx^Xl]* jlV\iۯ*cWJ& [(v/ۺ 9IMunnی 'G-h Frjs)-1x`A)bekp^B'Xօ[o䟍}sR, [mZ.V,̯z B+o g%?_8 o8mlF $ϒgĸo `~ өpv#_ǓؚqQR@:ON#+M2 7iXV  H3KL3ď> F-Ʊ>Z bd־_|urBrPKZL\UJ0com/sun/java/util/jar/pack/PopulationCoding.javaUT anW[anW[ux ,+v7@ Aw/[uG"Fhf{Nx9^ow8賫{`<\E |eAh^Q,\}]ݰ˫כ?Oqlcv~1>cώ? 1])`22Dm3Oğeh/B$,[ dhI?~r~Hxy{l{"L{IG!( }S#P 6sihb,3粂k ! & O20`#06ei>2Es4y0q"\DB, C5v~Iي/=rn5 >ן!?/jS%Ȼ ؚ?x"h4q?ݮ3>WōXһhCi~sam~1;dC2NR$HXQUC,g=F*;%GV uޗ(m$d`A^,a֬ ѐsq8د"aX{&IVP:d"n0clЕr[p4umSЇjN P6pyaPi]9 ^#Q))XQ,!wo 3tT>[hdKm픔 [COiiyc>U7;)T|A) p{ٴz@Ⱦ1P%mB 5Xiv5;L\vR7ss"[$ }kl~;Dlá,O9Dp陦Dj_Mل2٧n<cf!Fb!hBKYB8c.2FE<1|gߋ:љ* *З: bS}0H}ý8ŏ;i\r *]?st"\͗\?BȦS?۷hk(5m?ju5CVv^63 qp4TOS 8ՓoK]!JBn2;nS%bnWBJg'*uKY_Z`y8/% AƁF 5r~tɟtH9aFz#3qVty_~:ߞUA*lS^P [ؚyr]1@|*.?DDB$P80TjxJ9.{+pM_!Dh V*REL 3'%4BGW#М'8L:js G-3+S?XcqKEQ\7l.,te~ klAG٠#;x=4!ZAr:=uk@iSH,zo$@Aߔ_Lް.7KȆ[cb/a"|$  &~zgO>~f##_—4'P[wl )((GΞ'Iv@tFD,m瑬Ʉ{ك1Ò)?z×P5>}qN X9R"pZg:Wh<[|:GuQSN>5aFBrQ\_QZV-aWeV_H{[c}}n &熗mWČUppqF}&9qEŬjǀW~U6`E`QDW!T.rKo&^r֛\ cnr`JLs?v"x>s0WvTKzV]H#I$R U+R 5cA fw3顅QzꈐK%*Eq㜮OJomƚF7#@Kxg486ДgurʍZ` J5k*Cr`8ejNmH?Z&\JIX[•DcXHoYUgy\$ݴ{3<|e-`ߋ=T7^K;EI 7~Ϧ %#9{hRA`%zH̢Ғ(ג_,HnJBa!rǑNid]"jQ ,cՉO2bj)Hq?%<}g;^9^8J .P~ 5-yvFVT쩗2E {n*6)C͊?yfZ…x=1%R h@ w2&ym)BōE#aJ**fJ"+xkNVGjbkj'}nkBHfY(/;(KI9mKSW=,=O? N#9!<`8if^͘N?hVlq7,AOuz^>'괪%.@-Nwب8XZQWr@ ,SƵ#:/Kݒ+^宰DO3_LGI?&]H }3Ql0.DdIv^󄃯4lYʎAkOe4.J& цqj^|&O V>YRՀY۾GuQ \cIKP-TcD+6q@ruv2,*ZnIr\(l{BdMn!&G1Dxʹ֠O [AF~GgoeX _\B fm~Ovߡ jKW72g4Tt`4[~[J#S2k,+VC.T粋bJQIصQgp0>$VlӲ+,;!St2JSk2z|Syk Ţ6B%Z- ReeۀjԍߑX:D Ī# pMWXgv ; ʋ/R-$; @QlJ{{ ǨXc `@ ? ,5:T,yk>[*iOje2NV} `atpEs TC1;Z-NvuZ9œ+eШ VY H/z@~Gz=Klf.,մ,i{ph&Һz~@xTp-LѹC%[" x,?6$thH]IoI>Oxx)5bQOf)}OqnsjvI͎!6[heiaɆV]oj@ fl|Эwj֥K#?ɠ|[o~#۰a-|"VT?<taLT㉟FauZؾ@#Ea{43wǮW|IQ nuT{e_ȐLQD8Y>$)ꍦe#lr]}:F$ٰ-d84 Lʜ'&,舰|!adAԷdYԭ.oVm)zBn !kliB1imQ|Ϩ[ĎeQC ɳP'BBd_/1[Dh8;%&YmX7;l}} {9?~x60kOE27q k_,oDƾGlcjkwQI< ~wc;ZPֲtitoDC%CzۤځBK<-@j Q"W|^᩽6阥"˷xD+<ild l4M6pD%Y`IɍIGQ gcՊ`zYh0'#W;⯽낸:)!)?';Iy w8>-RuX=7Z$)oxUR_`:fZ?<|u{tٯv:-GqOchfUx ?N_mۧ_l4K4  uzPKZL 5d;'com/sun/java/util/jar/pack/PropMap.javaUT anW[anW[ux ]s۸ݿΤTrqrMǚؒFu:$)BRk{wKC Kbw ϏsrW[6y؁ ;$t6FLڤD͓D0Ěy6pJz7SgLc2vnr1}?\OqLplzݟCޥ3Fc%q ƈhC;%[@e$8(as='=&H`$bb) w edd̈́yH^H.G 41<+hlhcҟ*k,TDTP#(V?܈D\m]T-¾l8n%hCլP`hт.\/W4(er3z _4Սf~`$lsz=" {SؚiTr %Ahu;_?8p#w71ݍGÉ0z(3Ly@SD$(ڢ~\Q!b;QC Y5tA@ } "4\iPpxJ y!თ/irbꇮ!O7W _92hr#W''ݗ'?vOݤ6 \FS{ vQcm8dr#?׈Q ־DGll&۠U 9d0АՖJK-b-fKhEG:G.CWv|6r5s?t:8Deel$pg()^z f zM▮jFH:$&k'~2~-2R h8@QVd.@5wL9 pܬya$8$*Q C F WXeu>q1Ag>:zGP ylBXSe##JkX"cWˆ eڧ b9>&v9ɼa !0Bۋ` "_vRNچ5UT'x- 6+|YϘ_'~Л?9;$f+άsΡ< mН_]VUeR P-xrf|È͙@>ZDFGp )Kww3M'}6kVx)8 %c^ &>T18n۟vHID`dz[p$f]~*gt]p MnƧ;, ZZ_<$6O;_/! a@'Ф:H xӛ: XIE B\^y&"2-| ?{~7aԛLGiqICU 1-Ѓ-Mx8FDaJɵ"dB6a= 1Cm'B~:@0\@a)4]I@9l5IgY y'X'ݯN~6\*LuнKI6#c ]{UL+Hjea U3cᲞVBRza2tqbH5yAZX`yp1XdEȄ7@ ; cevp۷L~ÂoM!I3 Ӝ1UZfu4XTmPٶ\fvZUoex4  Yj>l*l`률!2ɍ{MK3$^K&JTn  `'[$P524 lؑ {Yʗ|؇BkZc+YctKc]DS(- ufT[$̴9ƽ6l`G j_mDSKcɲLajJ} y7pT..th5AE]E^1cH%9VS g.87PA8],-" $GưXjvB#f% R%9{GZ/ˎ&ww#I-XA ϼy|feg~|uϗզ;uW_' ]̮\D0K(WUEz zoi7-j'L~;LgV@wMd6dc;`=J> DK fFꏂɂA7/6f5'i68 k6{=%񌇢S֢Ut S,U$-I;SCw F +iM_fC\@)eɸ;9w3)4J+&>R=@t}~7?,7 /aY^M']%6—YALla/R_Vorߜ=1q"+[΅B=}*qAyy- vIa%LJ &25]" kUZIu[ ]|]RW- ޶,SMTIۭh#QpxFлFxCost~<^ VBFWV [uҾvWV |9`@ G%7Xiʆ7JD+޸;'%P {1)m=3*j{?YEq},qsE[j3Omo_ oqkEoy.m֒t|GPsSlo˝Gjoї:Ci:ȡVϺa5p4HmlV#~NtϷ|Gkե-ޏ*OңF)H=Nt$tJZцV堯?E1kr  6Es-"jyvfM, wd#]dXJ눺 3pZX֥*x4<5#/vPXޑڲ$5,[z Uưtӡ@ָ!c9ܡ{? 39^=溜zh''/Ympg c hig P@<'=sGۖl%ݟ n1W%]"&[A>cMA[fo*n3@W_C=,Ս)}WԺE p^XxS@V _崺Ț&g+jQ ) q5w?e}MD׼J;~ǧUjk|y=j F lѕ>Z hZcPMVeuϠoij fZ8נݥ|Q *GIɎH#՝^pdݧE(=ՎI5e۶(v 7Eu\2Ќ`^ߠBZu6yz:BᕯUς^M-WU"oJ!hne޺m:#OH/uj=[$`hH(ψb]kI-!q/D_n}k_)EU}&,iYJYx^7S{t]Y?lŭ%µF{ǽ緣PKZL%6)com/sun/java/util/jar/pack/TLGlobals.javaUT anW[anW[ux Vmo"7ίSrU!7S>]>PTwR֞yf<}Pƈ]xOj?oX(90=hY`ө9n+P-7+UQs! Mh[kDF3QkӄVaB#=5Sf?F'2A#aġۦԑnppqnq77aD:"rXqcVZM%G0xW)rWC lq+fJ"EaƉ0 k&wfy];d%c\=!%^\6@Hu9ô0B EzgC6NYjᘍ{=>S|&lzٟU]:g1@ӥ4S`w`Fͣ{1۪y;dHgFKXxZox((Ų~Jn6 @^gF`'?LVg;c-lw’M<Jpw/a՟~dJ#tЛ1Utب3f<NzDGv 5hTEe`AŖN Hf GC>[; N[lkH ^1s+OdR?vp|8.@,ib !)4hH.#}B2IA.6[rvMwHM Pѳpxu.yW`Nx>b&&|]ݳD {;j"R>{~NKn<ٳ ?75Ϧr-~Sy ^{ozD 5UCڪyEn}ϖ[ ;porHspH.҇&ڪuvd%՚Í'ogVc\*5E-C6V6t5ㆇ66zx"M.47lzuP'S Kq_@s 7AC 鑓 o[B@]`1? -$T`U h:To(@c'3gJl'"gV,`бOR8yt>8Q2ޝHi%efh6 Z6R .D[gLCfܢ%hcu+j3'rEZr ] x@)U8jdFycY+~ 5otxL&c)b` Wli%-(¨-"Pٜ_^CD VI _y@]RyP6 yˁ*٦]+ Bkl (J0¢56Z BZ Xm@暀Vp΀|qM?t*{6#Og,֭#@Bj>XbAD<#8kzL)C`o]=g Qw޹N׽߆^%9P`k;“0Q&Gę8mn")Z5*YLgӛ)k%54m1[S01EҀ^ !7l6Pө']eV.6"Ng#)#Ur`Ö_bE~V`c[szջtZ3el:޺k z U*^ޫTͽc>Zsׯ#o 8mа_pգ(Slr@٬ e?᪭|;f=7(CM 1ӧ :RoJ&)r?&?’*-7/myKDξĬOr?? d}cV/gn~?}!XFrҬm:ry m޾\ ]1&?$3Leѩrd)'c S[=2t}@n`iˑ!Qdʞ6ن;/ƽɤ9>w^.3ؽik3zmZq,z]d 7EdslJ͵#~Ifce}7r) /jzx?w!T^h7spTY!٬hδw{L%OAxE]Jn)G~jՓZkQNHF4 ?si&{ rg%Mճ{hfj5cQlܒ^h<%^Bfk8?bAݖ*wGfZ1ﷅTn-0S|3ٚH݇ <HGxQG&X`sPKGI @ DjM$6aGXa̰1 ęoxÞv]'C^8 dQ=YSԉRO")YB{OW*06^'_8i~dY+Diz -PuMtG>zePKZL.$ή1%com/sun/java/util/jar/pack/Utils.javaUT anW[anW[ux [[s~ׯ@iCԊr6,EٌːT;h]\.e*spYt:E.swG3eL~hm¿PR?dFNJLyDSD2;pJڗ dpa{nNwcw ]vɻn;FHc"`%cDy|G%;![FiU,,aHGz$_ m{Hݱ̅zNŞC~ 4F*#4SK׾SMhK-~ Ay[WqMOlF/YOr Wck[U<,1*@H!\v H^eYz®Gd\MjHp=Waa (.KiwQcmW֯sG4_c{ 3)|D"CjBӣ=s0.ȓ&#0er".5#~[vʑ/7 =,DamPLhNIN>I </օv;24X5NLt, ܚ/<_;=uK%.Z͛yku}C8wB%& ň n[۲fl xROpH)XUn T=6{J0{ 2Fty鑅|brQv{!9aI WC3x tecvՔn> AI÷`r#'^vq9ԯ!j~XvsSw6L} PJ4ZjU|~HqvYmIoH1jȾx5//ׁ2Tp.=_p((7 e\8Ʉ*MKb%6&Bv)a$%JN T5%.-p CNN{/Ttd;-J˃E7 ˚u1xb[ ~(k7yE* Z,6%CfpV_bSG4.D7Z'Pn2~3XF7;Ŗe4aA]bRG)TT| uA@_#80(g+0qoĿ_`B*\</Ѐf1&MVht5gY;m_\Yy> ##gh)U/'*z} }'lZ פ68}&i6F!qF/bMm9Po8@DhZ|uϺ0qGQːSeHՕx$Gc|ٛI`I+` wc{A/\s *^OKDu(#v{;ʹ jn,PuTls G4 cwr8^J9 V}[1[]78'2kй[B90l?ery:j˗zQXZ'1aB$Y!91n^n zpww9'RQ5qh>S2F%AG@}˘ í'n.=.{ Xh *ԂPe%-қ"C}tx$<eJ\j1.eb{,aA_'+bcԠA jG.6 :p7o8O6w1u(l}KE6v\57\me9e19Nh8U.q"uvUgӶ04&6p!\yr0_*qx\u7d OӝNIBSbbu:o8Q *0=+:ݦ7T&W.6ãMU0C2+ /tvP5z$ڙ#>6Ԫ`JN'п&%gKU1 p,4by Șcڡxv <$t%7~uQ8lU% 0/,NNb7idƉ `o:1Aox#c>p>ưfI@|O'u}` B*aH;RtP,n[G\߿MӋQ.V@^%A?_Yg5&T 1Py3M%M7lj*`˝OVNJ%]#DDztӥq!-9qcX5},T8WP_!ͮߝe}t݊2q,MYNt'W=fdD+snXV9,Gř:XPv>Hz$ .셁4E: A.k\ySK\ɐ]2T#(R#?ܯ0d$s\H5q-R(fDQ+Jx2lDm؈J{}' (WQaH&?{$G"D2w+$KѐWw 7mC_#O#ۮk E_24>7$:!hN9r-ۿ j@ίẤ1ʽ`.*>*W}cdcRa,;*bjXEyđokc[·y:ڷ2m/X9?T9AL% NB o,a2XjjT?}/| GAJokɽŽ7]z},n&-YB'꺍CJiH2h:mp3z8=sOnI܁u*{h?S&Lލ:4Jca-lAN}YQOhDMT Ӄvޠ,}}(Jsu>B~){mDa|/7Jdjҕa1P5-j[X{QU)q*><2EHB{3|͍MäwebyWkIDd LnXZ/0<3ザByXOlF;ϳ0nIPTmvg (E9Jgx`.}`|v=X B "n طwt#xkVgCr դǭo1OpH~%HX֥X'<׭jց5ȏzeg ͟dk#:=3'W(Ӏueߴ(y7:4|g:VVi~Hd ҧ؇΋ŝe 3|S]J>5U|X]")֏s p6CwU j9aiECZtzR& =8W zM|ap&gdZq6ų3)c5S%>hQ 3Ni`G NO<|;_SQM2_E_&H _ ցHPQIU1N(>n\ 3A[f;%Ͽ'XH"DK+.nA4e*R涗\iMͅr`.^tkG~4Y3嵉) R 3ퟂV׾YkJ$h$ )ܼ;S z9B"$8YN?j!{:_02]}fBRrǼJ;#L-U\8<[.lʾ;UA#'iK'lPއ>LDlV<6_D[uG'bYTS^#IeJ~_ +!"z!k՝ ӑ/ <^h DY˛tZ)д|#u݉ ӎtl,i03*Rޗhg@xoM 4R<NۉUP2RoE"kxy>2b| &Zn)~eqVwq( 1{_"<+#hA3A^z+}(_)M2cEP=Fϫ|BD.#(}Z$I!"Z܀qK~w.等i YD%͑ꯣo|TM%"(- W#dE& Dǂ K9&c_9 ؜Jq 2w.se ^Di(aEs$%2P"D%ns㻹SDC/b?|?NF͕ܿ",c0쎱ûTx#?u(",@Pv{0YRR]x}1/ [TF)yOF=q̤-,̱^g/m=XzY=[oo3 ׆5:2ħW(-) mLTA9!&%1WjO]֥}d̹&j)/,E9 "l8ORe'Z5>^U{#8)Ň,O;{|VDv'oG#u&ʴrnm;(Jkj oO̟5:5tg|m*X\xK4\\snv g N[RVu}ex<\k 1o0Q4bHܛ6#6[mA_w[)qIߒ~E\FTl }*zF7V7+oP2Uj4G>T;RJNaZ^Yl m5N"B)u(Nw\R"?|ΎJ}Vh av9 (F{r}_$&E7twutvTT`(*cAۜo'L+%,m},L-ЭIG;:F|+mD~yS.pN7o#B/Y1 uW`Sыrm.XEd2LTyj7蛫X«֞-k&,'ՃThpըJxK7r~iPrU1P9FɧZ&<*ΐ`E,b5RcE)u_OEK0,em!6j5VS?f|Y*>}G1,vb:iaѰb>fLxرMM*SkC%|־'EJ/8wѦD" Z*zh#PwV;T Kd(}fȯ93\\]T&-M=,+ 0vq]HU GH!4t8:.辫4/n7$~'0V[UY/:,I :~W,ZDQk*u>w2"$x;%X\: `܆jun--ya=~ˁrFMR cT Do{gms&9I mZ0#%aÈakƊPš,CU c\Mٸ]^Q*8?G@q#ekA7 "R~Gʂ cR jix۴H/: 9 ȯSξsK]Tq.G#gn@O42PqnH+=:i{\ѫyubfP3!zQzeNv -=ْQw('vAuPSs'.ce+Y [7 ]#w49@)" )Jں̙)45YRՏO?;(ȸӻtg";;\ "`8Φ?(g;sUtܕ Uk4z+`f EsȎJ?9oLCṋ :(U~~g( ΋Iڇ|6?<:|J""szoH5]?PXV4MF}oU h'!y]fs)K0j ا^Y|3!2I5X1V NR {&@?}aUlp粮QO<\bك/2+gYe=0Bkb[\ٴ{bJGMCѯ8$֚r)jNƚ6!le㹳~TJkBy2s9hOY!W?թC#=N''+jŮjưVy1L t~_7>D/S4,]1;E*eGR=*b ‰9A$_O5.n ܽ I/3*3/(kX:gL|; R17}ۀ[Q7HѓuH mũ+=C_M+Lu*=3)PX0!MgNgnKv%%0 ``ǏPlҊF/3Bȗ-HmcZWcMf͍T`Α/Iy9`"iLڍslF[V҉<}#Rȯrcgs2ȱ*,mdTI`Bf9jleiCB;3:G6ޟcu Z{ Ͱ^%hMt_6d.|.!6(:=|7B:XW咱ʈ3%4uC.}1WÔAtg+Z.`C~l`E^qb[MФqN,Z*wp ەM_6x^Z Vv ‹Ġ#BK?k#?q(@ 9 G'='*Qs6S\u3.O)4ꋪ _uLxr,{RF0.t׺jASTkVBU˧o*AVN9M-bێr/ OsayȉBܠlOLf{,4 Ķ/1))4"J8YIr"][Y߭;|.AVNɆ/6O5 JM,QG-QocvReU*0/R@$ ژEبSvKNrIeDIYt;A}(`.uL*iE4|؟.U+0 ]mg\Twc/fEOK\]pc/-uJizIM~oo6*6R:E5l=ސiuν&,_V\nt(PH{w64?9PgiM ZhyI{m;?$'Ds\ ʔZp0i1͢k E_1ٔW <_,HW| ?a= Z V$e[vN\YigQn;k}1Z pVt&sW5*јa.eWj=vb#xzzvא͈ɆЯ* \V3sg# זF}N!ǟ|dV튲0 =4Lyl :jx)B@8-@GWk~T>i$P ٩4W_:?Cm,ᣚ7  Pݲ6erpZXvLa4PbC&(/#ɗ{]+ ZA5kEZݩЃ);EbP7K_"ݧE X4Im; S<)q*POWTEN+Gl{!8H2~̟evK3Tk\m4ݪ*ÉH-r kr]*żp U4)`xX q"-0kp|(z_Ԕ#ĆZOSaH Ң#X֟{훌 SDbzNIn{}T{aiy O~Qע,0b+$ȩneoŻSwZe@dhjr+҈Գ$7%+cvra_  D 7cϛy'& JRryٞ7zy[w\Zy1+Ux n 낋yKDd\a/Ī诊Uu"]mnM>|+YQV\hݰA4Ҥ~-d{,Mh&EP3H^@e+ ; İ'<-̼(@UTx<H=L.;E(!Y :V8kW%`"r*Тzp{bp]\T3ʲylCdgo"d`T!8$GEŠ?c$ 75.;\Fy۫'܎KꃎH՗YK`,_fWv Xeɺ4 q::a6)|gafA|' 8)\wV3}oq76GGd`Ƞ)c3dJILF%VkhJAS{MuxbPȨேٿ)XF}u]OpEF젚H.6,J jc,;iVhIs\H8hPc뒤 I-7IZ߯Q8{^]~B0p X\>=\ᾒԟMSBToV Q"b AENm\nxR01SIUvŚ/1DĊ1ME|֨7@ڋ?|&6 e%T}Tv]+w/zV8D@IoP"LNdG3bZ/_bixs ΌEZF|\Ht}[ i$U|7%Z׼+P^ ⺦FѕɭS1#jH2큔5/la. ݾD2GӺ; \ЛK~єqjYהGe q^ȹM:K ,}-D yTu3.'=M u =F&h\ LE%᳄"lН u벹Mlg#*$} ]#r0Hp\-w dtgڌ0`f?x:jp@8ԛK<=;R4,j&-sOi9KX G l/wmP;sTΦshfrc70.@p;wY6pE( Zc@6$P=0X\a}CH,×[qz˃!|Xz !ɕ"*?bv^g4H *ufW>3 "5Dt uz eXT6t&|n9 ;=)sY}k/]m?Ac8Qqv< , ZɀTm ww~@BW!#_ صU7= f+H7jnqx)Kd&CK ჱow dI1U|0fY}?QكYJr]‘l-Lvx;q1*,#JEhgzɂѢ4׈% +P[E<&i^'x=` `r&J=kirf VN/GR;(;FSO{]$+ojD< re-9/#Ke31a݆URUf߻}4|24 K.LEA2˻Vg{UJ@7GjRf9~OjI'y;y/ j{tt L/s=CIa5".̙q >h(56#C->/ .8hאhC\`PiSƧ0qH[.iB~ _AlA'gYEH;Z R(cFd>+K T`8h~σ3'<{@JNBV, WgG)MEfyuFl;4" v-81rix$nmYGg\/I«e 2J[!&#g E1j|ykZu[\̈́^rs3_Q\1ck <;3za)8ܝSGH7vaI?d*lז6Ո"[ vl @C1NokGk AN8m[Nۨ10F &{7_k/ TY %؁ӣ3U8kJ4Y(.Ny(N/p6ǦU_la$'}w}wQzGi@wxN?\C2.w=hi;7-ApnK򇦳!fA /֭f?߽:`DxU4}umIq~_bSlF UvpuԀui٨tBYXViQ8Dg,sĵ^IXdl$ 3IВoz՛x}7fW)eI%U`xQsWp/Ye/%T۫;1)_mzwzX9zdjPMwc@:z Aڷ LrBV*OY"*k u/>y"6@U*ky(. [qװ(kM52"i0lZ,sf%!JzcE q 1Ѽx[mK@1>,76jtrC6C~KGy\e/'|W IANG%'dMQ6"|%"F6X.̞݃m**ǑVt!-%[ؤ%Bwh&7J<}oݩ!@ L#H\mxxf&")Џ/2;.vH6G4оϦ-5Qk)+ĭa#*a0_aKkpwȠW{aV7r*tTGxhQ"CIYmcVc|~כ1S7M*'Z2ӝ5`ن 6. JW)+b]df[ g QO1qGxB4>$sߊhCP>R|䶑b.kFD-i~ߎ?l1R&4wJ[ X{`QTeV<07/_yWHLM0D*c])v |Iwʌ>1[y:ѭOV?TJ8H,m,71 V17C' p[ImIDHW ulY{6Ptcpʭ쀪 'rm}q:Ƒ4C> [|cB"*'zۺ*`LQ|a/h3)ix_fc$,4\ľkv՜ǻeJզF{|? vm&e9 -b?R-`?6s&mO#~/ LC`TF+wR$Y4It,'%M`a-a}]rC),~DzN97t{(M8vbl?___G0wgN(a'=OD* >j$*inՐė }.6 ٥̲hsUAdx ktmNN& ML* o!ܘXV (}4kf^ /\G|8 &seRQcd& :PU8ς!n(F;lx y>C49?vߏG0^A=/j6oIJyD0}ځl0_tg+/8F -ak-g8[wWT)RFu봈,դG" ZReoϚEu(4UCxcP1~[SI'F`d~ʼw!\9Vૻ =2vF< zp"@}K@ _)3rwffGԱ1^2/*br󲼘G(0ܛoltA d!~7jm:/9͹A {{w HqQ .51ޞ^Kfa %md\2܎ Qcɻ7&Q(@:!.zcͬGG=:|`hx<jOj$ j̛XuaVXGGMd,3yWLp>jt& ,cehqxԫg a=T\Pd$=G\_yﻏWNڟ%D/;$=_sOJC(1qSOH2`t=.zΑadZ, !ڂٷ#A 8w9G)iQ 2 s@BS̓|%K@ch>rdkvX)Nf{t*R91Q=P0wZ)_Q[Nkؓ'(sPhېJmS,qH35}lgxZcP1ݭ-MkyQwH*V\̷>.jbvȉ3C%Y:} eme QƈbpU~pxufuɻk8qGŀƃR$r2 ;Z{SK?(m*i[ضȒ!b~M+c;R6|Bߐ G -yaw+MkqߴOv5$c;s 10AH+e*۞ved=?AÍz“ȟ@.R[^ =?6:6걃۲md|n.b{#u g :/$#v-ps1#"E547Bp)¬c81UgRVd}?5tL<Dy;Qڄd¿KYxڒw}3hwX`.a"G⥳gI.-S`CLОt_*+ERrp ~#TVldwD%s^]Ùrp"+^ѵ1s Ď*9`:M|P">i"Dp| ,,`>YZ6@!fDcқ + )LJs[@з#l(KϞfA"(tMY(! rrOxh{DufRcn$=EߖT4||fs}_JK᡼lXXkE!"O)(;S/OҠ=aC]wn#s`= ԗ U[HD_rn*˂Ci֧x[0<]1.VX^[JHgnrR fȍRCpғ:½"1Ķ-is.!rkٙMQVHXG Uf%}63,תxG^D{{ }qBn䈜_"#ղX׳8#L]3T,Ky+ q9|#LKx {lB 'dD-?`yn̚*:ZBS!{dǚ30eQPo:sg{vRW0c/IUIA&Ã6J=!I[KȷQLP%:`t\X& OCv@3Eh+85ԁDنƇ ɕ, m454=4n g;c2{b0wǟ[4 pFGd"#Vc!xݳPfC1<523v'uHtei  9vL:b'ڸܷ3 vG0y-,d2E:S7qEsM)bm/}XùV`~,wcl2A-)U[t,`:opM_z93c*Sʟ w&fHNfQ|Mm0G[D*熌vgȽaO|x4|4'(Ź-p3SKN[ ز5(b+~CTT SDUyESd9^. eȥgɷH̒zQH֣pD@v$t^Td0 oL>]#W޵5I1s 2N=A& L_7*dI B N 8NdT2dhłAT=Ʊ$bi`!;|+e\[ZPEzSY5Kl %ۤ8-;ZImO!KFuutFmcd`'8K]7J`QO㱲z[N3x8+#4 (o/&K6+_u']NAq2#"#O'M B_ءGݗ1Y}ihԊʯՀ/tܧs7~:_ɑmAQd72:߬m%)`ֵ){?_)wJpg^(YΣ`|D+L^Y]@II7 r&k;u";#b_ *dXCʜL0.7UHR6=r,3%Z3ΰ.o DxIjO;/\.](o9p¢"Mʿ/FSs-G6߶.cH"$0D_Y9pOąޤ !ڲ 3*L;m]'L /6f, ;=YW;zB {ؖH=ܼo4>zi'SRX>I|nE_`NOՈɞyG͌lSׯIu?yA6L¼nM ӟ_6 I]LD2*pg% QZ-z#d` _fq-3#I"%:pk*/ced)/@y V,׭`z堔 &/Ӓ <1 U(kZ1_{hUVK 8D5c%Ξx4#^͹kDP4p/aI;%ysvkG{# Akr/~Uuޘ֗h>\=kfCsz [Vĥ&כ ]US1}Ҥ wW1ZQ ID\LH<FִvZ鶐27 5:Aʃǁ9Üil< c.;{3w3%!R=Idw)I {/U 5@-t|N?A{E{e>h>H*:t-g9?=V S#OiLrгaL,*8(qP?(;>udSم͚sAȯT --z^p@_ݰe2!Oeڶ)"|Yi:cv[=ĀҚs.rp(}41i(5t҈Y[  v)\$% XWHl;n=c&g;Rߣ@1qaR@I¿g|cͶPZGc$"f p؀(B|Xƈz?n'b(Qޘ`J u?6(s(d7rߑ qM >1CnPV·V$ '޸؁A)7,A;="WFQ~4SY*XYҭ|䄕ATmm pȐ%}bPJvIY)G,mڨ õ{L F&s3ƺqyc<Őn=&jp quљrdr qfɿ.z1_A_[7:!CV-=iFW?iu(}'( GV$we%GlS؉Q7š?Kg W \`REcG5u別e҄|=` ~rE))ZlMz'I!"AɗEW6-ÕUw8OXW#I=*,>v"=!DvxLJ/*UbDrK^oafD>;FÔgt׸"^tGMg7j417ؾ$CYjs c9@`&n Z$Z3gK<$~"wd,|_3Dct}۸=G.dL#FƩ -LA@q[lOe65YO nDeRjvtO&haaA/x,>6u Yg~hdȷ̓WiWkCd-^e$#X́%tNj"5TwG*F v~|G,1uZ}+ܗ0[n=(.zn!~E4,:Pd;V(߱T-FoZ.34>3 zzX|Ђ"ܔic1+JgaZlF"[TY 8p4qw[8#p8 щ-8`)9< /4*:ΙddUr:Nz";*h?qA7m-@ ֞'xWkKUV<-'F!fOD-vmWH], <&Ǫ,7|"ɧ4pSBQkD ۯ>MȸK~uCCɪ2`Tߥ⬴5{SЂ_p|$c>U2 v-PY{\m<:v]#cBsOBDxߢ,j=;x~G U5 Uu%53-=H:z28}}@NunWݘ\4|' '#OQsF},ER>JyڤMKge.}* ({DD\+[K/Rf]ީ(%ezq-'vL}8謞R4Q 03lrS,KE'w?h 241-}J_0jiYndA4G0H$1U MH6A1Afk0>͓ `>%ȟE\`##1&bmED1Q4QU{eF@5AJjACGntsH 1(4=RCE0)M.=Dlr_t4TgP{0Կ~Xjifu]!ϙu+8tK %]qA&5tTSםSaC+,j.VWQ@@- g0Jn!Hܠ`ʩ.=\#BvJd{2~E~K&:V´h).T+EUUD (NeqHG焀,>P~x؀ܗ2lL;a5FvAiOD:q-`5> q.%H3- y,0NFeD5ǷmffE +N W;,@TiyW([qPaDx^d\ G^]5ȖkCr:xcǞp%ҢUGfI4xjp,P(~iP*l `&QP$Cf/6oRO$OWW$͸blw׵ :8j4n4u H ~t O=Q MrAac+W(3jY[?eANAonفe2e qeUP"J0gJb2A=NUp vbaWxFe 4l sfX:@F@Ndyv]w}OޟΥcQ3~IAbIPgW𹭢51VR~׾Ccb>#ϻqMl=1zԉє"Wag( )/U\tב?VReMCh5 ],)'=X y踘@g؈hsHhM:jOzp2`dARqgiDIݸ('a~pfR"H.JD)w(ܚh 8u j1d|H6p /T+i6Ġ{?:ɣR_ >^?,(>[Bv:qп8u4l΢ЗY}i E^C|:n_$R|CTS+u ~2+; KǩŘѹ _&GKZV0d5 Fu4D2aDJqSx%hjtX>±l7Jt%.F}Lc,(gDH2IC-3~wt#3S; :&+fki31tB⩉m|ΏvLZ7+L7zo} FXT=3 t<.ҨКãǍdhrdmT[r,-{MX 4sx"-K>! CFulՒԪ";^9S]F^Cá y_ɧ$J0鄙T:^y4g>8l lvuO"*@ nt n5;@mL.ftKD5'jGt'~v]W ʄS!P3c}[D8x m:/hX~zS^n%My?8HOvSZMbRY-!j~W ΛM"ַE+Jt( 0]ɨ+Zdl;j̴+z@ [ߙI!*(gn w%$3n`&!>>Q!&yg% #Mla@,A .!VY$w;0T ݚh.Ȧ֦GEE4xZC֊lHهrғWnD+ÉVgFӄKjyYsU_WE @:>%I`F$#*d?З^C:HFjآ}y=EH x柫JT[D~'Xٓg ͺ!98N6Z7?фr=ʢWgȤze^7YD3HT%a^Թ8 )&Rkh =uy(3\1ދA7\ܞ%`<}C$Z>ɤy6 cTJONL(Xvlz10*2VH8?cgۤ_@l"SE,c\0ϻHY}+E̟Xvhl^Vgs JWf Xʇ]YCF?F56R Y.ʙgAh/LPdbFʄn"|{*g^6G2>(Ue+A5GlŨ32_a4V/tL>W]،,U\ ,K7/;0sM$# 0 0"ގlN&`;'3KٶSS:+v,ضpvxX$GS"mu1|Ƞ ]Ô~\'mˋ +Ai9Oo⛃'?T§Qzm4pq88ch ?& 9-1h'gWKMFNyt75%ӷol_YVe㮉XE/0bOҤ{)ADWװ+Ċ'L9\mEOa 6#>f>9u~:וy #TNnqؠUT93Vn utvqIm0ƴa]Q!hʔ:W̊LGX˷]Χ/cx"u+`#s[D͠\h5F~|~ΒQ4[@S}]0XMxy_ lI@$k|4s{%[n,"_YV/ h+l;gx;lB/t\NPIp <q,>oҫAJ^شce6k`ʟL^991\zBWxcA^iO"TTEa-" @͞@n ƣebX0̭]\EUFv4~B~P(i_hs]Odc[xg {#,%Qޫ+_EOTXz-3eXAc?ݠH8v@w,N'[ OYI*kol00P"*`@34F3N>{i2RpX*n0c6#Wٟʣ$)6"'|KoT'AH0qj_ y1xmba+kB?}/ÜEj7í)?` 6%kJ&ɐ^ycEjm+ #OO0ϤI7VPyߡ'W[˸: S?GEYUyl-bT2dإ7Fg>7ѐhT2"+@"m.Tyvȓi7GҠw;4V̮ոGĸD dwv¡0 6OKl /6Î"KhX$T<,}poxl 4Kql69 ^ y15,,p뷖q ) f5\~엋.?f,=@h-o8o $3@}e[V|?{:l3lIDR $;/_a17clЯ_AM'%Qu$j 62WP0M(Bp<] 2DRիb&D/#w#q7t;ꪭ" 6"WWg~|ІQSs[{V* n MllBԀ"`MA8eUУbpz>@9Ni}$Cy b{EƺR >'MNzʣ ~Nn͈鸲 ş5hp鰤k4^_,$+&֝ڒJy ,ߙ3,P V*j HuBx'JK$4HQW{s4ѫl=V-Gn f}[׈˿! {>;)7(.õ"X1fVFRHU!2 ؒt8,sƎtԩ|]|Fy+W>ޯ{$B7 FSN5d p-"<:cm$\PD^sٻrA1/qYd_wv\@ERap/Ő^@$M y~93).͋g5C8|}nP@DJ'?uY@ ade?A:SZ.SZע)]tNi]4,Z#BnXc_ PWsvfKmOl3[c&W=̪pdȡEI$Kw `&L$Řsφöל!bm$JY+"qhU#6 7#1 zV@-,)| 0~_RCLTL3M^cJ/Lb*MS deןn*<|q|,ZC^&##eK=vMGypǫ.|Vj?:F3bl!(:bw*UF9G3۩\@&F&nH[>elɹџvEf&\E.65)&oӪ]Fr >:Z5X@ vrT7tmn,\e\ijHzXPH/eŻہ\_8}V"Q,tK?0IU4^ czA47TB0Vϋ al!h RZW@ո6T7㳜]0>z8:7v<1oTu./~IL0ԢzvT t*IGP][T3|rpY5CCEN! >;C I5T..vw`yK;7,,v 4X보$6rP*g֨Or5Uh}^t7zu lŨAy_YE#:(zq}E_fzg$rLLz(G X2`e[ڿ(n4,NB8˂S}R+CpL?4&kka ЫGU{~^:9{g㸲}pp`!K zF^x7d  oD"emZzO[, QAŎΦYmB`(#_~Tb զ.l&p {(gOg([¬hf'< X{0W8Oܶ~>b{Nsݛw%4_O!hsk"-dGbGA?6G &O.@ԞZ=Q*üg888yMV=CkzgGy%>ʈp]H@+HaHl)w'? pK!@5%<[rlG@pNDARt֘䁦e,jqW)!wORa =&x7lP c|ߖȮYL9Q3+n&.5zIK?˞/ )DΆ++>•AY yv벧>P?"A,oY3nEF6 57Ʃ^[c(s0_s!DkV?|rْFpv+FzUz5uU` 1il;[Ej?Vv ]"=RT(84p|pS% mIr+ZJNGfcg/jLT}Sì 82G5ՀCq#=\:"۾?WtaũDz| ks}K乔4J5g4t:[YoׄxJ1 a&xY$F,c[ޓQf=}ԯKAj<yrظ҉TѨU^nSx {q4,[b2XFl]Ct"J8FBu $%e|e`u57w殒A~?4_ᩥc (GȔdS 0@ O..P~cP1V#]U&H+-\A=ݡEz% GYeтBxGd:7e3 ?{7cI^f 5hw=K v`a2"k73%{[Lwbw/LN ֘RsR*,WsQ3(l %Ӻ*lZQ"P|̀ @qc#[$ Y>o4 [$ x+DE7OQ$"(^ma 1Dx#sïuYMZj3P˽weqL~˜Z(^^LGjm9 D:J _e[')I6Q~>?JFy3;Cߋ=3ģf(_N>ΓĹ|=FHؚEڶ"FD c v*.~͢aov #4`(> @Zoous_|0ҁ8\6 ڔ} @ˇQ nm&b Z<x7uJ/T7~@{fH =cV S4>2dP2ZwqA7بWm|!vも\ e5r>t9o4-kKTUV7~&'="l쇷ÿvtDsի1 W2 0A"L /0cJ [x=eʋH9*W2K}mUZ{~7 :‚€"T{Ea X5[E07&xW6=8pEK,5!~-E1_(I@RX!cWíh%8nUV0;`P4ys i:W7Jy;멌$oU5߰Ѣ; >! 6qz d[] @lVK$+Zڕ'ULAL r9w؋-!FWF]%%,xV`7nLoPvאjj4~%)[PjSג./I^KƧ\6"RYfҮG5_]R;6 jվy6ߦ6,BG sM<3k7)T#V@Id)C! ~4. *[d3sjIz S3W2m8@oU-xJ{\ZT H8~ h)'"-pq~Ca(t~Vso~ #Vs8($H9؛bd$3'._P{0Oi"9iFb4 wҙ>`}bc42F(y5U2S*ޥtm1`rD:Ĩھ P- CK <- PcW*tn΋pUP ՉJ#2JL BUIo!ܱCL~00q:Fꮍ5RniFhRYjpIxB4Ȯ01~Kܘ>BH',#|Qn0h#xE&r u`.l]'d5snA[ #Vy<2eljT#]C2# p$j&zҘΠd];# 4/Ž+/`X,dִ; KEQfwMC n<^<446+Wm2XmK2ߏ%{Z}eָju@Q!N77(Վǣ{Cq䒺]d1ʚU>=rz 4Ft+:v2ԱApu2n:\֣y`ue ?Uz(/ή Ӿ`Ly<0Ɇ[HH$$vL6OX Z9 ${y)V#5·|/6&8LV†Q fjXruL뭘ZP;(Sjk5udX?J@h'Cn]*sNsb\ڏ^OG/pAwhpmt{Sr:CRM.CDU7-3]hS>5DJs֖üW1>PҺ7!&|0M$2VW]r%8\~ܛÈc,KSX[5;rC\+ ~N0z8l  f jZ\ D}C3Z6Gq>́plHkl p96,_jCAJPMW $+d8w pͣH; BT2n5sx$Y֙K@zQ6DƑ_ ?zZ)I}ϟS7#$ZJs#B !!(Nl| U{P 3y4]Y ::[4&Ws}]EE;(|Q\M.7BMK.hZoج]o 䒥KE)vP݇ț/Z&I0LUP|&LUfq- #UE)kC cwsm$#7lFNJ V*YpYpuIMa7l]O ՠɨ<ΣIĊ<^qK߻x]In >[̕gKts^늮}ZZn?9蜡S,Ͱٔ59- Q^n! t 6Q4t ehƷ (cRn^CZm6;ظTdZln_%`>$R FEy囷 A >ӰtH/oU|?D˚KbԚg&pge؉z|!"8Кx6;ɝ'+.-CtT,Y48q8zaΈdH ;Q 7M9 O5pFs^gصEFН"7'$7[ƼY)>}H/C9Dwv:>=wDRƏZpw*C!|c'yU*YE#~]] gku=$][GejL,^! 'V#JĈXSEm VD [ȕgWbZ;)!D`p?dq_KL n$Y|YG܍shx%yi>Ҝea}(lO1]3=k(Ukv_C0RQxIU_ᙡ&&bm(qсh/0R!yrxQ#/;ZuRX6Eafmx1 y&ῗrOpeYM-S JoE6r2Pׅ,hӭfT_E}4LTo^a^?7=u=HUKz+m8H>r#"՟"7D'Jy .8$Ī}?Y,ٹC{R5%YjPv0aVW{ *㛌o7W9c٥4J';L \ 6iҮo:rE6w@@B +gj c ՓI^^se 89)h6i9RzuB!a0@S0hua٢H 9oOP6,H._X;U?@F׆%v~gHhY FyT4,WƝ`Y~Rr S"v-K%'ș=)IXz:}; Åj6 ի"X`ܶYz#Ő%ss`g }O܋Cy*YPwN“ nc”21noe>;F]<iN@qlv~֛ᕕm)'s|i==oDXz\ gY&qfyL\ːLEnSy g_ ̠d_ vLF_PShRɸ[ݵhSʅ) rr]"ma8ꉾ:c%wg'V_pKaA)2'a+@p.OR+XYe$zT/&GϤ{4 a"h;82C.Q׋,ZM "TY]fT5i*.+GsV9EW(6[⩟db/+`V79'IrWK \HuXkZ׸_mF&mANZрfc*$+;\?s7jm򔛃Iegh7L4T"K'LF[Me- ^tı5MJ@ǧZiHQ*s~L!:QZ8`i0yY:oqdxm' XoЗ/pENPаt%UٺS9-0n蠡`oߡ_ʋ bM@=Rq]:5 W;.H@^їKqs~$*ul!v_%sOvm{ܡŌR&b!$nX3ͨ,ܣ,g[XCO0k5S;aT"-?4n.%܂ߤdP^,`Cka"34~v]ޏ~ᛨ[m 2x(l'vTsTy1&~78`qRu>3W?iTšD9dau6q XB/~,jo{_aKM>3ʼ7Z{JwJ*&x:_6sNF1jVVk",|;ϾTt} ywMmZ7'(%hJqT 4myVO4 K HbcLpOWތp7Dx?T8,} .hೂ@QC'Zj.?jO7 U+ ?8e!۱1q#fکS*W5S Eo.}d]dr@`Uv{%G*pqhST|EF򣛚~˄Ff1[Ưn:;ZnUg0p%:}/Sah HSIg+^q,gLqAL=OS55.60$ VR>/~;LvaY 1GНsnNxd<{t̼6Y \%K{eC{؀ysHĖRh~0VJV+zd2)GE&c9eRҔ|| y^-ap= xFVgC'S2?} ~\ g3}M>$*;_?r5 )FHD}JҴ 8fz!i,,Oږ"s$0PIhUwANt V=d7awqyMCFDz"m4=N)/RR3 riO9뙴 iĶmtFwZtc_%5gnׅU^)&_|!јdC?,WFbډ)9_2ru\J$(OSN*KH±̒ /x-aZ)Ezrjޣ='{MwˊPmg+WQ!p"6ٲ6`S[%Vө9Cv?a R?:Ҵ v$efW-ᯰ~',=/,"@7h6b(Ek ktg>ا5K4VP˹! ["YM1i1bbP¯ʧ6F8:쩨'6(cL"$8w0 ~Qeih3?􏧦 ԝ"  +l9gٽW~64][FR[&gŎԎB/ݶ}{u |by=4%B?sgqL//D># 5o#02-rB=̟z(@)WwAQ$ &L#lYj_c^TGDCoB,9}̌7]QUA_. (x2klF95+ rh3nJ K`^f)頽iEg7B2]4qWfl3W_adJMH[_8!J{ Eʿi 3?NxCQh`Y0hPĽBBL\),[iIq+r'Hr:'vIcm-Q{oAP)>wW/6OSw@+`f7]4%>%m/سɝAbd˭{1с$ \gE>oξ PԒ } {B4uL s-_XnGc>&Z=R_-E2aAF/1ڜC~0Yv5*ꍪ|'$s/rTVBG@RҔ3yBlHzNb$H[Q]FFUѾ笍19#/,DC2,!Zj8d!q($ FUL_>ID1e8 ٳ$u>5}Lػ_~ vӒY{$k!,iW_.ݦNZÞO\ަᇱLʜ圓ƕ(2F +[_5LmDd(XȩJ'եƵieĖ(TA\X-le@]"EԵ+Jّ}Z'nqIɢ9܏) Q/[Rzlm@sq Jni JaTMֱT,[ڪi-;fUYu&j_r]xS~~\dKm/f gR֖QT 0m[0LJqL|;BG~ NPh5ӝݶaYZUp?u2fvJ`S}ɢtjnܭs7+kqUw{xuEe*d,";&/ U̬3HE [:_Hf&*8dZ󙔻v J ~Ie[}ذHV+j,\R[=7.;SpT"ϪWfVׄȟLMe'tթBr]VIr-{9?e@Y`HTP+<&AgUY~iC}CCXthXLPo:Na52e*⸑qҫ6C>fB #DL#䢖ErRu{}](]7ܼ ƶ*Cn{O^zlWBd 5d:gMu0t2ƥBZ r- Q_; s&w m. W-/CS^x~(,ڈpQi/unD0~FNpvg􃜺@j6ThepO9tEjȇ;]R(^9jR*cj~ `s嬹@4H$ULO^e[rD^ьܷ ]ߋjd0\S= ~uOF'⺊\+ԭ:'O+i@1d_Rfm+>Fo{SQHI"ⵜI<-IH托IOu#51%\ZGmGo-o⌮@L"m@5ZyhU{$K# 7YvdlbdPf@+>ʆwqGw?zZiaiY.tDɋ ހ >1oq~:Mvme~nJ)nXƱN>ݠ);*:^Q{L2/Y&/}0utUlBOWդ7j\S@^)ӼwsU`R~^G0針Gşx_/Fmt٧pԢfd_y!P!k.媤wE|x_~6yIMa uϦRpS9x#TsG1$֫\S:Ӄ|t3"Pe%+j) &Fw(С2BWg 3{Ov!;p"G2Cjϐ4RAم΍E2=hAWMXcF0lOdzo׊="'M>yu?:ǃ#rZwy~&$ʘb6x {jNQi"xS2&dN229@Ш|IuJ- IAfhD:$c!I3~#qoY^X!E0e'ovE'gu\Bk=,n[>2Mheai+.vYыѺ$'%< 0 b^zo7GFQ{4Cp\CAif1I5i^1v6< V.²Vo{fU:F&x}_3~zy4cW@y9UU؀/L,yZ/%> BX~3c( JEbRI,*`؊:wh+d  #aQ|h [3O>0XkO *sum9:EwVu XxyA>4vKb z&KXtMUP?} &ַin"pyTV-햟;^+o Yd@IS.Obc]KFXbQN8y_,_1a B߼8S,mEOIİ>[fZaaZ,9r:Iі='F('{<~l_Fj޺ e5T'"ka ԽF:wU:OPHy4=OW.`s=.p:! ` 4{Nl3wH=|_9>XDx{Cd~7鋰k Ɨ4rk 6D/$0K@V8s[ASukE.+t+6%ZCO׀ pt8?0KjV[oc Ev5P}_k umѪaVYI3OP1AH mGj]6T[V[1} !KCiOc=jj(^pGbJ :Ur!ԚB OcF^ V;j-@vGs(a4҅cB~ .ќQ ;;`eijqjDLa/sW 6bm -u;A|'mg1ۙ_rKA^P)@sŘ4#/5iCưՉm17l(+{nBr]߶HKg G/-oy݅){KLq"%"h*ke/S萱Ej֯+2{lB ƻ#)lmu6*-XX5[ծ.ئ>t,Iv @ %Ui\\\t:Kid+==Mdy;+0[M&;?v{zn7" ºPcH)ۅ. Ru|X\ +o5S/(L&nOcXd(JPլ;=!$.?\'nJqsO˜Z!Q?Ob+phF\g2)4->#.ZO!\JtzY=̒DW{2j\묙uLrGsp <OkHp48/aK0+͚2n{Ce J=c/I1ߝSL"J@a(a+oixһS)P,>qFwO<3qX. M&60Qҋ Sωl .jgAQ|'f5îFPx2]\Zcv}~Pa2ZLȓm]ԝOx+ BxT=õma%1W߶0+nnBCM=s[ d>3@ڔ7Z'-k_`}rRW-8^O;@[efNŅaJ `. GBY| VjmW8pč.RAi4|gv]V[PT5vEߡY̏\?dmJIk$}~(z+ND 'r)E"Y֮>]sھT:n͎9{AJy>ed^ug2$NHѦ{gJULip鵭5Pw@I[>XɬML>b6qE-້*nnes!a-\`osZԑO$N~~a{2V<of9XpW{>W^}1)-C6x/R1uwNp x2D(N X"ƅ &N;3mkPB$3H,>ńth\K2;?ikT ܐqޕmJ=!Z0+&(*3pkIIg:X;^t'2xɰJYt6nXHF[iMg:u=&G3z&uv.xaռ\ _{G߫Z,!T 1Vt3w,YHp!b!C$Ŷ&Ɨt\0s!0/c%AA){A0jQ;QPӵYSE' u^w[K`-=HP1Y0_;<Rc݉V&#qq.-շqι:ìw( N˧,顆sIH-e|WxbSٛ^{p܀pvE:̅灖 }.BaqUʩLDgV=9{g(+ĹW@zsu䫧FS$Y0S@\ŽW݄EXx Bgs꜅VkF< !#ORQ(y1P/kBETP[,|47]"b|"YVlՎܿO8A5#%Nv= if@]^rQ' &T׈Q]T\Kv)cf1SOS5 H_ U&c"bL+K/ O_!%0ƿ'OQuN _:x u/@\%LR30(Է cynNsO'9ZŽܳI:Db.E@0gNJP*\(J=Ǫn2vڌ2uFW`FILg/E Nl:Wp '%61~9R3SL$MXGE:eL7I >Kd$H/ʸDx+$Tִ\!#O<YC7f$w C줠|v48:#k`KgdyB|:ez,I&fI=< #r68w8x&})r5/CߕH^@{i؆ \a^z0 \"TVm0i\J SNn -%%6``TN/Ƹ{ F^/:@Z+;$ۆNؤg8p5Aa-Ix'૛Mq}/I78ʛǙ7H^* pryާ41ɄKχ_4tiY"A/# p㹅Ԕ|oMyBq~t/'DCK\.vu3xufh^)aYM"VeŐ +)]` +I4X9 ;@@2\Ct u׽ֺ.Ď x`.ܿ@!9*X'LBYL0N`v5pqksOM47'z)+ aXR 8U,s <[LNrW5p5ػi@Ÿ.Z[aaYlwu VB)BD7b<¯2k>hv<*~N˴d욲;]dLVS3R I@ 2頂]y͌HyԆ<9r_5NOnM+,)Ң:4aIEQx5XHY/(V@iBlGb , -- pOl9 /nsRɚN'׫r֎ i"}rB$z YI- 2[(N8m7dO{`y]"H llu_> ( MkF)/*S;!L8nE;\pb]O/Ƹ(o>lzB>PQK.JTo`QWN@P_~_~#V+xfh{BY%_w .hg08ܳ;9TL>t&rPz6AʪψF#Ig_ߡ&z/1Vg~O"S:VCہX [Lǩ"d΀At'"[#V@1F*MY}XNXH]]Iy(GEe(M4׹()u$n|?0MDڅLy*:xOA5uM2/H [pjL! iܿ\rK_ iP0QX8ᗒ3HT^@5y`^HrZ6gg9s,3Cި~\A뒻Փ" H򱦩!EN#OXx%>nW"u .5C*4-8aCy3P+/( b`ÿĻEcU/N/Yldc.1[:Gx3@G0" kbߪ"@rJŸ oCV٪NGq^IB'k`f Im*{eL:9j%mƤkL9mAL,JG?c?Dz1VyYƝO/rrobH[1ygNZh~G g4\Ϥ1kpDfl ߂k`+49E8FoYD3)l`s.(Jtaw'zUBP6f :XEݚ!Ph`i}*%gk12j༇ 5{q:&yiB ʫ2^z"#3Q;^|ux +OγG^|U:PKY![G8M@3T*B-łZbmlPI' \Q3 g'lӎY6rp_ ty9:+۞Y"{4B(=uT 0p qy#V$^ܮ >cqD |63)1)2pU~{ YMq@({B2,{ vt&$JKOn6wW uoW_rBc"R5Ɂ_A9QSB$ Jvݣģ 㸙/=\rQwhg82g!1'zMq)磾ZH$7:xYK#%HodUbCt۱췏k;NKW->}6Yٸx$Y:ue+]H5&w()4w[0njLpɤz߬T= Sy墙 F_2Gۨkk1Dg!귗רPli"i/?`d[ b_;AŰE8 "GT8q^LmvoH |XgZ ZL:SOcEzIyWok ,y tqqD,4yIF۱ŋ[jdzښ"Mv3+K5eQlivZ2p|V:ׯ'2)DŽteӲύ*N )A?)US*:|f5e!9޷}OnM?̶s\g C1^iEdf&Ry(AUu_;Z"/o)ƙCL=3Av߉6IjSYxmQ7rHi{'wM^-Y f$:5GQh 8,"](1ydMKHnk}t2e/3-e@%QjJAf)|ao6T]@}]g d1&c zt6؀R\ pN^҄U).x{EQV|u)ϓomڼ0`j]w["J aZĚOOz'd&?;-@_\t$nP?IjXjQJ*L&}ōMP# ՚.LK/ 5ic !"-pĴ(5KI)$ZRhrZcf[忻 ]fjј^ b# Lsʰ@)Gd?=xAR>zLX!cס{i5ՑA x9q}[[&l iFZ?My_vt;: O -<{<) H#<=u: yqTyDVŋeZ{U 4vE8EYMN$Qdr۞bK٩L'8(C5r90*h !(!"f> M%Q5 VJT̕o40Է R|XQ]YfJNT**?jS|%rE&ԯ4fu]Z9O'#xZ %^I10{:M.!f*4ʾUiV:)^Sz̯1ѝm$Dd槖At8Eh- 3OrӉE?܃ (xYsc=QsиL_8 wqaZ=lXI~Ocyov>8$pCߕ$ 7Gxw;zLKNs.CPj6q 1=.6XЩ+tHWdv&5@ށiK ِo 3v -6wd?BBOfgϧ^t:vKAӿn\82E)FP$7o֐Ed&kSO-g{ypK\kI@e3Bꠞo%HK_35?Ղs opHIՌC9aL9;LX?{wz-xU7ąqlzkUg ‚*kx S\8aN\ @ыdڶrN8ny4 DQmJ1?;*b9q Pgh`˫$+i%5o<9;_3cZʙh sO2Cv. w$xn$[S6%B$&02#~I^ c˕̀ )WZU@}y"5-ߣtys~ɝ))'.o&}{!yQt&p&. yAN@yf5sVAp;ڸm)q>Z1XSWZahjQ#hߞBj$"[aA]j81R0xGb^n{38/9Pb$no~DxRCsBS3,׽n-/|cP O2.8H͂%p=ƷDWc+qr U}ۡĠ|$j߄LձN8y)`{YrdѥiUV9I&b9e\j!̈l(pyG&P"2W/|hmkVP:)x+GR|'e Tg%6e"K;Kph_Fk _aEhYa)C&Un++Y,;ߦJ4 B)sZgxVʬ_|>nȷT^$6Gϻ1 eǪ*ťt3an:Al;U6^Lz=YޒQ[" x-ji?c֑(xdȻ ;?~)4% i[n00oZlODT9i.ޢ4&x$W| `oQ og%^],;q}f3cbD?+k3}2[~2P %!(sl9oޯu xp؁WI3wZ'9RשJm )qGP# )΃BW@fwVa 5mI'IW8ʔU/]+68N NJ`dזtXhPqj`y:*X|7j!Q{> ࿻rMskUv(ZW LP$zbkM8g)l(%z\6|_o-T6/SgQ\Ht;P)Q'}a۽[YZ_,e6 u7H@t4?'?NJnI8$a w\:{^%5*u:2j[; tԤ p0UItfJ4w]{3 o hFJwrguǓ iRN5w돱qe6cÖ-@"k' h}bS9csjSdWŞ^_4VgB&=c|t/ӣ7tWL \R x9aG}*!3Wh*R9˧H 6;8K1}̀9Ĵ!]ǵ4]}GC{)ˈ}k鱽X("+*װ6zSh''xR#, © ĄQ7WsF"yűTHI(p,4E/̮sQ%#Zs\Bu5^k jp^ ,iye#qd}\F<֝7{ ?D#WBك֬5 |?v/%mϒȵ.ƊSH VL#ltZmq̄R_3D;#-g>bħl(SmG[W!q]OG?ܺ02QzT,e-*ԅ Tpޞiu*G3^c$΂jNV߁М鈋(VHپux2 ~6$u_[Wiڑ>5JGNV8Aοd sڙir{zm);Aw(ۤ'!dQłVjTJɿ(0?ヸ^o/t]CQsB܇n6@,x}3{ćگb]V g+}nh4=%$ mG{`wpPʿ04;QoR-*]V!sh-0 |K,Vɺ F%҅DEډ2}yeIF,&棊 nҞB dlAOnjapp켉k>pY]w9;nCof t>R->OF CwViOЃMVJדܱb SecY|0Q}S!c{%AΈ>=6m˷㶩*N=f*SE突PWåcAUCRL-k1d'FG}*AѪR{dg*¥Lj5 NdV+t/=GU}}t.6r_W|Q'2,@((Š\Czt'"-'Q F#;w *)*Cj=3k:E@aoE661» "v&5XC8e#U : ٫K}$HN[tS<,Xo?+PzJb׀^NP{g4PV\A`= <.iޫ:H_ʒœ~>\q1>r,cmY=-]׭ã8 ˇ֩EqFA4<2Yߒ-bSjGyik'w9:_M^x[ wA}XGKk]Զ8z|GS#rv$ 3D~1Ŀ#X89^[|=cz[”|> J/2;x!cRFY` 2Ilʮ=ne$yf vE;VǑF̭M"G<ѷ-BpXIlLZ8Md^$T< Prћ#rb ҵDXOrP[gt+Nxl˺- ZǞsfP,8o~{H>tIQ?odpךh1! )"$ &7!q\}eנ1Țtt&/Qff N9rd)ŬhC)y!4ưj>0 irm\a< [ەG ]l<7 綱P9d8J};#0N#2L}7`>wf޾quhxȨTpf4%2^X:=56x߱hM%D+nqŚW"zaϚ_\ጷ $`1;ww8bRGO"/;bHƴJN\8oZW(/Sfk0f&-!ti1)"[<Ǖ/ I~FK}Q|f5fS+nN&U:ϳYlBCVoH`NS3.VyL/3J||kT6?tE+kv~USdg~۴$ې9U, fszmԴ氇q sE IV"C]mj?iHVzwNiS99^Y /ZԍpoD%j'sDdoM&ezma7% ͈ I_D7oE dŴ^ԡ9ucEmCx.NTMRMJ @i@WiY#zeDY+é[vx'ڴHR?T@LDxQ@1}.^X8ID znQ"]|ֵ^ezx󤆬ImFax Z(GhOVSTܲT#杓J۰g)~,K׭]v}oU!Q@o$t-oߋ 琳T 0@ӏZVXU\ D6A#Nh:Moqyb.${2s85sLX!Z} 01<Γ?`` DZ]л,X=ngmɽHb (q j1~,p3u *߀"|<ʃ*^l3>L ];ǟk$+rUaۿ| u]rε>EjczyEE>s?l| t{GLlV9T >˕sl Uk᭖dv;ؚ8B%b.P$ZeV$z 2I$_K}-/&s9[MS"(& +n^u@n^wJ\ )sCI/bڡ0 gXweaƾlk>Z;ʍ>ou@̦ܴįkBz^55xkE2? ee ~[~3y\Јywwzv&L *"J`BA?;[3}^?[Cxzwfʋg܇_Q$&viTYnS߳%2n_6:""ʯBpQXs~ݒ:J~V[Pi^D 1]Uuᮐh8D7!xKU坴'i4a>G^eA{'(I⠎ĴѺ$pZU++ 7 Hd,'4>x f, ߥJɕt Xf.E`05sQ!-Cӫ%0BW]r"lyA n'GYBۺaO$FH} խ0YWtUݠ*0m_S'9Qt}J#WG5Q+~oiJPދ'5#(O9a.};6(ɻe7y1 m0! ϭɤP©[8>7y\#_V)& z\2KT8x`t1W"1JQXazh8IX-# g[ʅ2u K|LRyBOed9a*eΗJkb6Ɇhu[ߠa!^.:'Jp!s(9SPr˅YNc(gj^7fqh)沁c{/5D]̹ \-l$ 4TW6k z'pzs} u?跪k|_6 J҄s:'\xcs%!I)#Wj9Sﳈqk8>&ge1r.0+gx(Por4Fx/L-)E91RZ7hц(PO_ݜ؀?4, (r0*3'r?РYa43𬏢fr{'ŅcU{6FwK*pUMq?JKo0%hwN* 9:"РO GFƬ޴3CܺUlJ(+Tu EC_t,(wQ?:5ɦe}OX ~J7,:Q*C2>7(֝ew,!^ ~/.涡슔s_5 (6/ByB>$VF-3sP6]|",y`сBE#EJiwȣ$.O-VoB/t;A #6sSgz-`rW.*`U<u-Rwc,߭ݜ3'ѽi=2'`_ޛ!Fg87z]'yߧȅ4 )f9+>}am_LmNCs}Ժ`y-5ȥj]87Ƞ]/=N`?֌=*ңehTzi!|ꄺ< ZZ7m~QzVxd4Hdžb6ɧj0N2CW. *\.Lf@і2#x^66c߄i])_}I]s,س+|q/5RtuX+.~EpМGs|2ɲԬߵɇӀ0F#ܶ!iVP# "=< )oFgrs%bzWDOT`'" 'afµKt:,fMy[ZBcam5oMY"aY+TWo[1MJGE{y҇ {Y?J̴qCN60QvI<)5:eq"#F:Il'"zM*A0FxIj OsܕT-_82P%f[jȅU@検wGLsP5.i1 :F7bӔyJz'6xH/;̆LiX&Cx25\Ld<4LÜV9_qw7Y}jiS⃱Jy%aoYR1g8:o318_;-1_l<*YXcеA D [b\B~8{<{x㴟ؗgջ7{x a G);ĐKAƱݲ5&y vW:uf8t"Լ{7,Ơ*8-<ڡ{ bv{1iODu;= D9{|\N9I1ɗ d84v~$:Ԑ)!W:\ѱIr8dW\$zm;^J+c*'ߋR'WSCOk Mo k]=|n130w(7 UFN6떊fn>￘7.yOP|:nu#"Иܱ{qi2g>c$ǽW C|rEUsv-BE{ ~,u?2F Nw!3>N-| #Ё8Xʊ,!eГ"FN+>.T2Pps).Yp$˅O DJ}W!]80)mlcg`.ﱯh!1~~8slFxvPC<yC]ȳm{I]h"$Xj^D(6}u=K ʲ ke@skrhLvYS{=߆yd4rv_DfAdY U8qxjJbEMR1 Z#zzRb k!b:/SMg0bcŌmΧ߬YnG}pn㳍tלn\dxv'ЏB HP@b]r_080+f{^p/$C̏.ys8ڜT qM˲"t(}'|:h{ScUP8a1a[^;**. @ϰGoj38斎9Os)LF|/ئ6pE/'*H?ojc?0Dl{lWlE}2fUaÕMfV 滤n%d5{;~[@ *`~oWt "ŦIH-"ˠB9?k-m k)F뻧Bςoo.YSH2kYJR⡪tmZ–DJڈ13Ե]~ ɵI>JgT131cxJTu~tԻk'~WB7;MĈ gURef:/B T"B+}`7@\Nլ@w6jPS~sA#&D8?ݑl8L~h5dUWd@VYsu|FqTȉ \a%ǜD ,FN!hkZvBM]ʹX^Mƃ"lg2\׋( =BVĪ9rL^3D&G]d,cfYGѹ0!0Me. n氅k"2("5HW OAμNj+G1O)2];C /Z[ D MgCC[ʑy9I)oQbVxHPԇrSYNB%>5Of9CyL-ySWÍ(2pRGS_8|𪟱/ۀ;ODc@X㫕Yg禩&\Asmhf#LUC7~J,j[D"ΝQj*9I~`{MOF[u|:i0;8#䷗z]}/I?S/وHe7P5S8(IyF-{UBOWTtlwf#?T+> (BIe4xn7RnXqy@JF ;e0ngCwMDzrRH,CM|p>kmn?0v=9uFb.q?x\+Uc: f4ɍL$JkgҌIi{ß}P͒NA!? dgWb2BcI,W=Qjd=P`B<qF1S aɌnGnQ*H$'jֱ9PY: U^,:s{+MFuv`؀6u%Af]H 18޼0)-c?TI!9N*/]gJhzjb 29G΀#W i|[B2@qR.G,{_t=;נLz:s[:NDM1$x %y!C-[mATu[l=vV2Y%1IţMIE g侞!l絼_pr~ (a碓čN7KJ|H3KN5ZI. 4FbHcc}z.-DT;*JK7>֞HB<"{2A6m,ӤtCV"] Dz@g΋ox &>Ȅfq]kGELZzSb#=2X놣XQOJg#ƹ?ѥTi0ezRvJj+(55z{]R4`G-,+hx-ZB&S+$,b0 \p#ㄚ@Em5≲vq$|G oz:T\顁)xRuѼZ39|!PSO3^ذH\Cg p|Ht=R }=4'%V^Gk5))S8W0$UB`FDꦈ9t /:_g,m]{1Xjkl췙${Tu} [um9"J^rlxu>_R[)y&3N햡'ez|h}Y@{/E. kzə/f4goiVj!C8!0yD̳H5z G Bg _ l0e3jٔRKb?SĖ}2b0ZUv,ЀUrIy0@Z <=2-ts")lpm OvѴmx,<@+s$6Ů{NWo -9&NV%@ "^dqPn*%8OI2'b,i!HCzzI0:k`#QlZَZ_,Bч' MqzK\Z~+Ӈ0mǁntF6@fG"%e`Ta>2 ڍl U ϝ*5u/6%2ߘƣt3P>!Aj <חw!ޅNZyC6cr;Ğfx,y!77ͦx_ގy `F xQ2$jD=XGyP-F,A+u-*:Ubl(_3(yRFlq5\Brjz]J<73kX>+gykxrDFB)ZW84'@rd6#CN[S}6q* ;Tν/]to<ӭ/яRI'U0?WT vŒ_@nm.5zEA w'&El&QwJaSU{siu Yk9Z |0\?b%.@U!unbCC۱rSx7/`eEF1Qmss$H>5,sԜhR@fEFj9VR@V|T~yE"qP#~]x.as&yNWvcYNtS/ҏD.)h"EH)V 'r~{COA@meUueQSR>`Y ڙXu rWnOWhy+tv!%7k(mxg=w`&FOemZ%4$1uh7f7˧Mbshs9I:MT򥡯0 _?"p6NSGJFKpRߋ)՘"taO$U0g^È YMW> ˠ;*lPi2ZX\ %Qa@ULR2@`L@5WWB[Ϲj2n~% ĻkYL^?Z3'`W./',U־{%UB ͵z[>Rã 軇a)KQoGSo,%ZOʳI|-?T/s'2W ʾfQ,=bĭeo. cA)3wzm߲{(Ot+[fQA w!Li_yG ^LMl WAдќeF`/ԣ7-/{#OH7K dkZ n͞YE"2iԅ%PlC@NVMSB^n)wUgQ& s~-LQ!{導nt\.B "c*b &>EmzQ_훘+qq_Kbfu7CZDŽ% TYC7qe5$iC.X Rxa/LM,٥QL1pImw'I7ܔ$?\NLgҘ/m"B0l%"ԛIεFՊ(uާkOjEd*pFwQi^VmWSV\ȣ (ܱZMRЎv8jQ{c_`ʨ(% h@tn~n{3lAzȡxdW$}p?Z(0Gj|1,rg( y7쫖[]g')nlGZo"4ibW"%TRǁ4Vi2֗_#q앪 H0؆GNDwZ%A-iMikTH?xί|mω^Z$)2p#ǽW]7\æLM%uSWh'/FWOiZ^ڋzqת{Q sJ;E$*ѴLmk h V GO6+ QDJOp-|ubV76y١.zmSWaCIH' #Ϗ Tw @M Y Fv@Y$2KI7PcX=ի\h3TLt@|kTS!.˔ e iK_Xz[ b//Jw"̜0~ϊ;OwCֲsm;I}*< <{toN  HA 4ęA'¼J+9 z+;S1>CY O+J%DEVjB8k5 ]XϧףG׈]u0XTC([iڮ?K%9NЛ2%1=k,ˀعJϏ6:Mb;?=3LBԤ3ka3y툟)^6zk2\F C?|ĝ.ON@i()̨9T=@x~xA-smQr$[qV]s}|6Z3/oEtTNo(6z*)mn^KcNh z>GOkqowhq>!*_aKYL$ϩP $n8%e[=5Bs]dzˣ@k<.# ל|*E'F>TEwpnᦝ yId=q?.'A_+u>A p"ҟl-.'sK9Cvbz~l7Ɗ5|ؕm x[ViC-CVwm`#sP)W.Tbc >#/nPaZǚ($3K? ؞pkaKoV1NSy4w@45[W:hhDQpz=8싩o;=LƱ )7΃j;AdL+ mz EW>AEsi bu[`Hn);CM畣=kvl?DSa09!2 XJ9U8I?@UyqUKCx-b7tEY郒G)Z/:U]MSR?ZVY% mi3*grN?}քk[>rB41,d$|$Fp{ (4wiE2󿛧6h:^i@rd;D=V MDTÞNjov'ri|1 oS(UjhI %z #ܺo[4lh:uA@9$|Y\ EԵwOI j4Q/nd;e kf=\]Ps=M"/đSڜ DX@ خIK rq &ˏG  r[܀AS_-Tk8Asv2(?ZpA\86ptRj;) *_|A?WCnn?*i^TlC,4[uF~qH\ZCS^ݴc^.] `c5(ߘ U;0'\D*vs$'`!ipH{;3yL/Q0 : ʌ8eMoYWy>*Eb}޲T gYb.(fQ]žt2֕WVRt>\#MA.g@Ң:G?G;W j~AhW;2T @V̖cG", p541a1ԛS<_C˘`Auيwq•\sdSy 4ǫ+yHY}- [Nj (osHPO2;TUa@"u߫$x%'*-(\g!GjSGd Sb[t2`h}uB}rMS}l]!HY~7ЃPKiyщ$Z vttLPr7|V̫@{2 ?~Zav"hbt-+ k)+b keݱ#}zUx/=UY`U-r# #po|/AH925^~%B |Tl9Q 9; \21TJ7ǨNtWGx㤿bq=p"c]K6qQhC3`+P~ǞYggt;Y^Ij=4VTD^iP!QtRPa Sh[tR'?=b$HboaCg'b ډ &{Os  7lϤIf̀Ҧ]ܟƺe' S:zSN#?ګt?L(Dtč}=3@A>l֍e2pBŗ"2D;.&Sce=Cئ @ΦOb{3_ 79.JTϵus+1Wt $2"3,KEO^>jf ~ܑIջitqKtSh9N~1>ɚT htj$Q;~RD[0ŖhҺt|Q n5ANcc~E<'wsbb;(K:8ĒX6S0_At;w~'pzQٗ%gSDh0;{Tha("x _L$2Mɐ1Hg*;#~`Kݰ{'f FIw##I>/P6@6Ќ$U9Թ. 9y&t:6-nGY <`[4H6Q^E+- :=8k}4t ? 5i yr 6{%P:)*a,\,&In-͍9z\^钛&HΔ_^8|dnq.!5#C+%)lBwl|XJLvE,1%0|R+eyÏ> Iڥ[|IJ&al_z9`u5BDږa'&yeX$aջkX,IhNoy"s˵c:)gфzReqRj DK<А>nZ m7i ~,s[< G)E\lڎ=zC4im>nB; Y`OJ9y.Q|DS^\'ljػizHUP I7o+b8D0%0S3v?dš؎"H.q4z3tě RzH{PH#qAHA8EdV~Mg"z0hz҆XhaOn|5shz%WD4Խd,t2As;̇c`Y‚hlS%(3ZgnBh'ɢѐybBu(D-Y.@`CAGwUa-BdD=ݓBKvxf fP&X% +¥"FL]BٷT9  DEd"88b3^T~LFw[JZE99L4Ǣف.p݂e QZe#,1™5hmw08M_7rE"v0s{L;q؜^2As, kГY "x1 D2$!Yc e~79A0vZJgIl߲o.=㻥Ijؠ[/.$5:^rNq7Uԟ%)GU!8e\1qѵduj 4YzFUs3\LL*4oujIĹ fj RSwF¢Mߚ rU}hZ(A.tBڴmGVM@L'>LD:f[@^čI.dDŽly"le RC xkw Wrв 5Aj*uviI5?ʰ?/6;ۖVY;N(/L֘JVsˬ1)4% oj;# GwK,F=yϾRW,nT0қk.0U 5Ubz‡uKӽ%1% h^= QQ  衅$ۘ}w($eҖw믚1@&`]ywp኷{b+3XdW fKter`/UopGuzPR gE8f$ryP@y:o5'VpZyxwj@v7On ̓Ze2;ɝ( ۜ➩7t PtZ~oR5%Eԛа=HOŧS!H߹}-9*S8LST0"Cc܃&כB.SOYIX}gHQݏk8IJp ėD 0|e{E!]Y͛F77{sA27C9AvEu0Oޓf(!Fʥ*2B 3s]{Na G T5d:Ώ낫o`,!-J)sh* CRR2@^w-=z^ =̜6˧)hr$^St1")>8@A#$704R'r!Vc30 ?OyPHЦQ=LLɿ^\U)!ƫ;,LV"򨡨4Šx,߃k4%.(ԟ.@_#Osc˙.+ yH!Efܣގh,:oM_>94?52_LKKSR`%S.E(}VJn'g;V0}aD@;:zʋ|*S Ƴ3[Bw$Ԕf/y[nd6h%NT.m$)¥-GcCmwhY]FS #?=)ݝxR%`ĴoW ;qS-Hs+RgmDѻQ )|iqEG~`NpyK5VlC䟋4<I360&iS rx 4 ~2=<ьS8 g@E(5>pUu%U84>}\h㡟=v"g+hT٪wîk x?,w9a/~R]_J½.KCI̼齟bY} ;t@FT4u%w?jR3j3 s+hVx[>OjFdw8M3Qqx@s9)oJ ]>HL:g< pX<ʻMQ6N3Jb}Z4S)q#u`mm&4SvP-%[K} Q(?^'@DvMZF 1r:Ɉ% uGӈ%:(68 :CU| D2>=eSҘ7,0=vhbs;]:fofaoawVa7CYȃ_#l mIGK@{~2pDCRH C=|KIco;Oj}{O%T~O'%셯g"SpM)ėȍr)f{s(M@XSZ!:,g=0~aLgVƌ-aeΡE$t9XHV]+B| ,Z\J1M8ݾ1ȚeRp0C9ٌBnp'e `GPt[+ӔM(nnѳW }R`PVhn̄ r1aH>$@^qd_ԛ 8-2KO -fZ\ N{T4'RU/t;_٦RO6AI D\Wv-iR>+jJsψ"""\5HUlE[rq\Z!Dl,.2Oqi[sXKUlz]dij@a-8۾QzFiȗ{h0WX> ;^usQ'Vߠ9^?59>0^jآW'˨$ g[ߧI #c [51qmw6#C͋xDąKò!s~B1'{})UV;#\1c3-)իˑr-7?pЬBg "{tn! "H\$ Ot,$UWjqq>lUqr/ !hW $A3-:؂Ŧ*ȰfQ)_f)}LЫv./fB`m=O"f1 1!tż"1Z$އ\{G쭫M<\[Ir׮wC~LA3vrFE ,;%`,Y (ȇأUSdZ(Me4~GU61 ^֩_\_EeCDy .dug)pFŀVJj%c"jx}lq9]|G&v! T4dm<̶ňmeZ͉05#& A%Ir<`q7)wP44G=‹*fx(LB^so}fUTÌN%&ПpNg#+yC d:ϻ>u ow9Z; ]Z#R؃ɊQ5 z]nAHSQ6 5J(ǞOB,B#朵UQX]\p^KnJE $(ꋻҝҥt5SLuE1U~Тe{w EAaWLwqmʉffO ݨ; u 9 D㋍ៜ)RQs/:6$EN\%>v78%jr 8Z =wpqd\a-k"u; ,:sZ[~*UȮ *tV1ϱEA*[Rt,P6_a1P%Ɔ6#zq7Eb ]Mj̭VVbÀuO8!ovkNK2G7?95#Kwڃr +Z[=鶴+V'eG9[ ǻ|vLoxJC D_m&Y%+\2EUגcfSy9Z ݿD{F JqR ~i w yrj-lm)]ӥh&ٍ-Nٷڿǖr4']j*y@eBB ̩n VU=ujat{U/o[&OVa cs8r~Q>ZnO>[gN`0rL`c5Юuɷ\ ( z͢˶5`n^ՠ޾riJ͹ }.Y/QooF&5 >*`ǀ|@=1%/J60?HA+YEG.)kEVo -$p},HqN*VTHlG.ߋwoVi>Yw| ;ShpaYq(2jP{kIP\ 'ߡgCf1"QL{~# q#5zYּF&-U"m&\=?x \ FRTAy- 7r,r|}|qd+s.3n?%tZEyPPV ڡa&e5J$-iC" V_-lb+-upMFQK(YcX`iD#5WHRz>+kk b)*E9ܯ^2vrskb0];Xq/ev6ch<9,m+CڟC1$M_5_պSbArD)S:Zj縸NAXl15}L)7v&wNSګ38Ąo_6 gcqVym,to %/Ynݹ5[W] M',6&_4WR}AӫP/~ ]Paֻ 1PĐH;7! EWFr!Fnm3dJ`~LK!q !IjZit!ڍr73>X)v};b"MFèsBee JCA* ~1zQom`;%b [|E|5`ih LE,/^ʒ> Oa-%>EM;SQonFxeB,Ts|y2Ö7vI%el?ܝd=c3?N/j%rf.yoZK}Y:3N~Hu~*S4$Y`W,L`dzDAjX9y7^#8 /gqY(}B)'v>^*ZsZ:}NH9$Ai*k̙7O&w|M^_WK. ԡQ* []eP-uv7H KV6K?9R,t{l$bDRpt;oFYlm=/. YH|W^!6l ZbF[͠Ocȼ3sH1^ՈzArTM[!lA67}(HЛh҆}.S! -otz+i牴20 l7Zk m6gB8 3ӠFG)@B,d4 Ad~,yӬPq (c.M,jnc]Vms ؿ(e2{`7M,df2^ϊMl[v|(3+B7{q+ԋ!Ycr$҂'t>Doml+LZ8hK`;6&) lB:T3%BkݔdxmMke dWia˷HqRhfXnEˡuHӳF2G6js uVШ:mZgf Z[iBǣ%F* `#ǦuRQ]ռHh.,"[&nOͅ7h#m^Ke% !`o`pFvUL|yJm\/GN՗ Ks4.ua8д o]V2aIF٥S1#B+0&0 +bL*س翵OM$L !& 01Ox`L!WbBw h~2v>VoǜE3Cu>l20PeVo;>4 %2}}h$R3 Gу^!EvCuf|/zFam|V=;G;qqC`AVqY56lmt|z LI:N0ԟ2 h~9pVb9R#1ern]5' JRZQmϞeg*5cvPSaJ*>nIiuZrU)ZA Kykm2OvTzouʗW@kdS+1byKYK~waZ,).K#9'j” k:_ν2GZWrV4\>gг _ĜIi{(IKF*V H?Ê量"dw5oWv|U}@ҳ}EZ,rԻPߜʋO1ɴ٘ U#JݵGD а(JE?#ɶ W0}7!Μ\1F;_~M/!›ĽN`jqJ@uǦLzbpP{iȠ  k/joU;kIX˵|^Fq)bH~ِr =0U 'K޴G5[MAc(YZVLFPwoYe~MnA " %c-gzhl7adü zf{@D*nPJ1uAz [ȦBPa$jJh)Ц}[XaPRn4!'\_;훥8U2.MG]B&o}{7*߅X8zVZ[ VRs pn`l3Ÿwfzk| ~Evˮgnk nQ%EO$'{͸5 Th('RmW}8TgZD/q?ɔwG5Fސ%7SCg*8}+)LK?B0 ָI #7]yU9pA?ZB*QR2>,i~T8V| grգuFzMCn=YldL<{:7 J`a, >KQH3g◳JOі״]`,иxB )t(u>+*›v$nf^j!O8Gp֤C#G;پ[D:DAьź>L*V|X LXXK6+Fg" K~Z$ĖDSmpT(? SwI[Xdߟ@Y)׶Ry\gxhTCo'zB3uU,y\c_RSk5lTp'MYC,QB!]9n \fc}S4i<0 h7; 0[O! bzKa S^K͜(RB->k um0pr@ˡd6f!z=IeG r9 /BBCp{p|L .; ,/mI]k͕AQ1}DpO{.9+Ijʌx5G9[R.ړG" rAsNq9;7xy> w[w8A 'JT ջH7aBdܢι.`E5Cnoq`Nx}!i~Bk[{Q3fJ?ySڋ5oŒ!2k$[ 諾7?NC5Xe'zd$9Fx1/{A4 FjMa0PS&+pO ΙC a)v~(KnN$k(mi$rF!'mx {*i)TC PF<4졲yD"G-ZnlQl[.ƥO[r?z7ȔoY/#|ƒ3ދФ~\hU DA,_`&s70'0ςSޝm$X )^iҳ<~B7Tլ6w_L2r!_p8~~(K;/ݧuձM9؇mO`\꡽kP2^ˡ5M zsL_,B]h|!)oD)sg ir'UB @2b`l(f*Y ^}T2fup(OdU}mż$y?LXZAkUAgkbl7ŧn fTH U'i]C`I+l;a8|I)f~J`$Jq7;&ts[gj\)Tt≯PF&0}=q؛axz4YjtHXO (ж%L5m实/IWm_ N Ys]yZYu*k%cX L(RN]M;JlYQJ\V{3IRϹ㉼-FiiL=;߂_./ړbZ}(h@ͧgW] 3 Ш5[۸J(@t*Ds 0Dr?H%4:c:#AWKԍ5J:8ES$JIsH;eP"cg`1ې 2NΘT՚I}*3yCX+&C\M9.* W̯ s|kdrUp/EG76\_yϓjh$ph<sx=E-BG|!([Q:NX"8ܢf(mG3I!c/>C @o b^*=/N~Hd |ߎD64k=j6,4s5[iޥq_`6k b d-5"BFº1ЮrD[wTWRv<]\#onjS g{J6PTʐZq2s] 4̐Tqm;*0Qf'ZQğ>m4e_h>%ӡ~fpVxăX6%{( I@Ju e݀e#R0҇}m^CQh}$&> S@\i82k#3i8©Xus u:VCG/:J f+J+n<`JқjJ?.q3(bLA>JR\[O8@? Ƙo֧FAײsSѶ%.a'Dt:h3"5 !H{ I 5o5nۛDQw&ad6oXhɃԽ?C$K eX"u1*骒" 9EQu(ΜF:M(a`5iM n]ށNOHn,%0bm暹$ps^4pK`YE-'gy 2ĨIz巛'rΝ gZ//h!<,>&;EHX-+Eeri}"i͙4O\'0#J /W~7sF߽+I*%C԰gO"+jWvD0"о m ^k`% ‡4Lv9/]0 ڵ*%oc#zI+}Q6ڠ?+G={RǣDn֨œ:ڃBSQB~L" 0QNa 9^J`(AJ`C2 4װ]eKQ!=S$2a\2#BH ϰB^;ah1I*; C(O9@>'/a2 M$h_*"5$h\+] *v4Hdi~8 ~7 ˲+֐/}t6"vlsiY$ȥDN%ֳUq'Z78jd:DU15[LlrQeS 2<}m1g$ q)zmH 1YUٿ6hى-}eiH_q&?yYf.c]-p(+]fy4C1Jܕip7 gw>bS~u+DО3M< )C#?ztzFg^7pMa.uT0fS/CWbpKeՅ9aSWjZ,msDaaig&9ÇU%ȱ2 7+;Fkrf^&:&+0]>nXzOԤKr~stT̶K6ż\M̸Qھ} p+P_!*ZLQS0}g? #G)}k2|j'X{)QBH=6)M@aF/҄B&pMJ2&kuc= ֥qjl2%2 .`KXAXIi-Iz{!FԌ|Ygbc`|n33I}.ǓcEvɌA^3āu$ź ހqԁ}HplK ͱ ["3WP-h ŵ'iP^Y9,=lqxG=@Buh2B/i)wɉc saUҤ8,VxN81gItievޏ%[$LmcQnѢdH 𤋮m>ߡQ]JH1zsƙ]Lf;Lz۵x1kЀd6^͈ԁob¼^+#]hq':+Ԍ1tޅ*U|5_*RJq/=/lo|.am ]IΔ  <t4L EdU*1CDSW/[mKf=O gB8[մ?\C)z|0"0)5Ԓ(זmNà8Cn?tk%<APJT&Ty!A"'F|ٲ7Xqiэ7YW܉-v@\B` n!taV B-]D;'ؗ ?ZS4Se<QԎѾ.QB6UC7tF&4΂ISixúWw4@V5aNMƦx&_2N&;xi=k>6uJ{lφZohKߐζ}j狇&|I/CE V|i# B[@ H<վx>ʳɔ7OZ+Rn0rP"WϏ߶o!୭G k~8+mU[@?8}ýߦ{c\|ǺK:"7j kzS Ƙ),!C %f0Ql+6K\.M9o M( G?𕕉ls,%nNC@)) y82OpA0FsDwsNWMY*hVG>}ʻ/8^#]_ꝟ^5ޚ*Pڻ\ U:yUtuG~\(A;6SÙu_qjU| `h/i_xiFA$0I1+zY5l^}W-.A| ѰBo OlzҜ}K4Yt0xakoʜ, A$_]2Hg]mNdT_c⃮Ͼ*_6,޾ŒڣQ$o:>aPx 6Y $ߕv\JeB1$LE"UI>-Fx ŞE8\إYfX Ci%fS#U>Z_^'t- ?mN^'xzp/e[d(^^Wu}␢:ⷡڧ~NHSxM !v5arb:@l|İ*Qny@jQJh/اMX.V^`_*_ чDu]PRш;.Hhw:foUzlo# 6XdZhPVI\8'Lmj{72d-9!Ȫgrm8؅iyK ilV^$ܪ'!^CⰍv$jtw2f~{, JAxڻ:n1:pB֮[+lSvoJ#,M!4r>C  QӶ1Դ%$/і_iAGn#03h'!O /F%FKKa \G0D^egu#MV)dϙ9pߪ4P ciim=ឌֆ^4!q'pB-.$V47aWn[?v¥|~RiV$r5e}; 0m|a,g\%;ѹ}9ܰI0w<^~ -!;QгxB|)V&i]e_tjZ}|ӋObQh#/l@B!/7+?;Fԩ{VO\z'K)ǓPIMj:8d81 9J2+WgJ{Y|e/B QMMt#L[rh> @x] ފX(a,y|@_>2+Nv5còp/UhuU椙}X)Vݲ7j2";(axeF&,-z/K2,X=V+pnEq[sߒ}]ANFTGџ#ȣT(MoJuPue2ɺm"R [pZBk c@ sWJrcy(@QtYAx0]W4c+`5~ṛ43q΢"UFl\u kCO$GrwN#ՑbR=gׂH xtro!I*3o@{F0f4 k.ڝA C<׵2.݃v~Rdf bz~;>ڳ7Kь[ GGM&  F#.{.C4Y5}_P9K1:Lb^n[0 Cn[ 轍" pŒNR<H8a I&ܝf!pU\gNB@m aM6 z?QU|AX`}[ibH(fZ@%:ꋌfEcQ4-04IZu!XZbPnC쓈Xi|\&i%*1O)ȀP/q r+)O70l|c ˭H:[O:?z+; @xaGum~gѶLr^Кj< Ϸa~X,kbɛ+h-IL<[ 0{0 ԛe5ntm=`DfFf+$@'7bQG)|ְ3w{h0`@yu`̖G'm+bgu/UjK\  )m]|bV"$p<ڹ3HS6)~a6ثn:W!MVG.YZrϕq짍X6C^~aŁ. kH[lIoZĺsTߍ#<#[C>8iHm\Q+R<͠0x-˜D&Pbm*P>Y i1}|:RӶ?]~c2*D |oc-|fE[#@,x+O4q btCLE,k&y̴̤/.#yL(.Sy188a4}W*o-H" 4]ZM u1T̾-F5ES󵖞p du͸NwtBډׄ sLPQjϋSt1t$-tFxLqpxzp Da_K\#G'R6 f1HOܣ c& 6td/HZr! Wكkxs,F诧G=M3p9P{8bv`həŭ 4 E%@~L'׻x[VRcB&L 4X·t: `SǩS_,m+8gJ F ԥ/x- ®,/` <+?"°)'d .M{6+-P_Ru>vZ&lkԾICfw@^^7q? &1Cl!s~g %dž՚m+eRQBS p zwSD CrA A㟚iA)?` FFv(˩oa{~ r?}qs' (mkL\%x2EH}4&WVhEKZ:Py~u.έ.޶>iK68a=G4!ʎyDף+co"VU/ʪ+Op!lEF#eLZp ,$)ehu a߻9Oݠ&^~n|WL;tiJ1%j>H}͕ԁX~lBH_vXQW,jDrHWZ糃&";BĴfv&&L)xn  !|!h׮\F_+9v<[WqEY:2)dN e2v3Qq?ɶcV0șXd{~Gqh ?>fUz".[]:̛7OJqM`߿Jx`K5Nj=sWIN֛12f yBjʮ[|uGĢS܌Z{Sϝd9ni#2JHW&(vIj\t|Q! rMR^P{ic/v rML L^.hPRS&߶xpmPA|1U7=ou>KT5e U᢮ g ˠ{G&[%\lpڴW8S`V`} tp޶VϘbXsk, 7r[O*'3![(h="bds}oWd`i 6(p"H 1Yyԕ/dzY\eXaU.{P6)ˌSılA8(Z<^Kj-(¼{wGcE Kz]|lkG:noO|{ѨZ ~ oR"{̗@قBhH'-,S]!1 EdI:ܖT6{lΓ@&q?5l$m0b L]":،`H[wYX!'7 Ow (BQo,ghklo>Pj_FJ!.~HK:UmXL!^ZRܰ{? ?~-wt0//W6V09K8NMĤaSU/x˰!ߐ%P+3$Bmj@Zk;pin"Q9p*9$./*4<T`JW>ic!PThyWv H^@'7߲VЊh@a8Ć V@;szGM]H lijlǑH(̓l ]_|6LDz\vimxa~1ٓʼ2eM\2^eT'v u\IbƲt+&OĴ XαE*l  DߔnjjC[ D'VtP+R Qxj4KF5;_JB{Fo2(HV4zv;I\;VOcBt `x[C^^wf3ƶ~U cF,v;US.CfW_Kw!|$/H&(E q+!R1qIr{;YEKn+V,0V`#TS["Waj|{a''|?IhLU۪|Eݰ<֐qj]XYO&"@xͩ]P0wXYP.U(C >j9`[Q"-k.oJu7yO^L~gnQzj[afSL6 ߄ s'y Af~O&'|]k-1b "l\%a|t~3G!P-4MyFo=9eyk8-NǏ!ks-V-= >8QZwS|.\;%H\. ~6SԬ;i!)׍g G@*peXq[Jnp鞔(MQbho!م*+VE0Dd3Ǔk!lGH?2}#7iȻp/@԰o \h]Ѯt\d)+ܶyୠ'Q: {tR(S˫s:L {4Gã'tuA 0 lkۮϺ;ls-ÕS1\rKN2GCl,qg A}t OIN_{~hS@-1x+nWZ>BƬb,)ZZѥXdޘV9}ǞlqOƅn.IO"xZFkRS1},AךyV]Sxz0dv`g<4bT&W?:45Ge}'R 9x[U(}dgyĭsME;qQ%,5H.[x_3R*;'tF1#+,9’iץ uű\yq:C rmǾlm2_o?_{Y#_\[#5KBn,( Q պKl'h(eT9L C~jK|R@QU5Dw9EfȜGZX($t&s!*J1OН,,C7d{]LrƗSYMTI;³DtH1 =&r; :WUS <5-"{EPL=#)n fHo pRĹ2}4ECS ?ht,c8Yج2bf9FbV>[pݖ@KH.ƣWOz-!ۍЪ}@ 7RPd0_7uM 7ߡ֨-PԸ#G?dB=P)ju4̠P\Dѩ Sm&UBfES#ϓ%ցM,vɀJ'Y'p$;*_ԁ4N& &M1bI֙F^vh0E Ln:,[E n.< ɊqF3kjvұfw O9(&Twxg8W# VQ{VɰԂkik_l2ۧUQcgƀ(cPL=< r6K+E4gԞmE- "zģM'1 =%rzM'C6T f?}a}Ceu{l]iVӯkG\6?يTgp"/}2*^)Y(L}.+yh߬ީ7|x$z uU2H FK) SWhVlwwq#yOMHYr9V[MIw_2nW#\ #%}J7~1DKXx 8CBX9K?k3M eإ1HmKP"SlRiaUJaa8͖Nb{"A|ߨbF1۽D+J.(r &@sg[ L=`0۟<%6z{Nk2$Jb[R]غӍH\_[ALce&baV7~PCRJȆǔN'#hlZQP$+5=20BDE X4D9:cikHlp^O Ӵͫ(ELDm&0.2n+=_2FOE%6aoz~kҬ0KAw<^@MHX1(ؐ:Hx>7H>e{UC]Ag0ԲguC ̚ Hʺ%Te]oݝ:mU2@`)~U+Lixem3w&2-1$u[܍È2C\7S:*ӺKUN4+OfCQ*hr)XDVE)rs2T" t0}]M;)7{sJ_%X@={豬 L2]c23]ٕBNikbYV5)e<;jPnIGf];3z{X=2Kᡚy0(3,"]/yrP7f2:&4X `(ċ&ɉ6/DY`-%tngɡ0vEoMir+]]xJRh){Jkĺm d^FM_3P{EgHnP4"r#;/Mf[}kO;zk%>: `V`}Xsُ[l6ˋ!\BD~SܒjM@pD&/F 0쮍s^0#b݃SeW$?~S)&aѬh&h~ؔsG~jvagfR4߰7LĂo8#!$0IAŪVhݽ%Iy(>l Iq Q%E2C} HWbFJ*cəi4E\npQQyPnnK~h&U?iR'4!sw?mVy(q*ʦꌍ "6*40;4pt ;D'Lxl2e% wjUDuA3^@x1O1Ik"@,_&NIgF Z}hMpᨃ?`Y*Z y^.(@q;Xg?fӀd2\Vi *z<z^}gOˬ{@ 7I[3qjdǎkl>^kS\,y#n{+G!_ؿh׆kQltuC0n| Fc@bo^R :҉#6T)maW+"̓ԉh۟`M7غщC"l1]M Z"=YGt⌾4)dZ8HTP5=5Ð@7KeՋvsfG9y!B>7DzfT~ \9 5K1d)<ChMN1y5߲c[+- 2'GR^(@Nu/Åspor ÄID;FgjV5|1bea^N'Mg\y d$cRPVZŪdqfmhSlr׼8N;%X`YC~W?<< {h[^^"8`H[3EKsvk+S}/G;f2Ċ }d>$9~eDBpl8 zAQÉjU|毟Sp^6ePθRd|UY>5v] ֣ ^R+sCC~Aƕ4"\jg6yqs8 |yq`6ju%o@+KyAT|HIX:xS +AH ǁf$ x*hԔ=w..!8x +gݘȃ̧Io*P|^q5UxueXI_սsBT1M&QDR+яL5e~'W+;_"igv(m"MIc _!h'h+'k%$ЇAloӤZ*rhYj>E+ tQ(#ej!;2ý/iAHqL.bJ7J+2w2 DTZ+G7p$z gCzTzzwgwVbѠ:W/k="&AK2#_W妷ʙ1+'TP~$S nx0όStT}Lڗ;=x}}dpXNTͩ7&}c*=x )DR&Wѽx(fIbF{IY8~h;{@pI*Nm%~s>R%`;Q s%#1G% ,0Ȕܠac}Zqb6л֚NpP}\^'uXB(.7拡{rɚY|f 'AyGOG7\+lCVzl4ŜKOЬĂJq/۬;6x ) i-pl"Q>bH 4 sD2{ N0})bnr3oNRq4҂xyt=$yT}"ϲL-*L DZQ˿mtwƥRWr>**;#oJ7+9ْ/2=&H~{$stpU< | ʋnb&W(VQ;x"IgQm.`nHVO궥ACfF|;N7΅Ae?orn3m!WŮrʏ)H{3f, mY=[#+$@'WzGkDz>gYRT;F7EYRUF⦑M!̈G!1F%;faa݃-5HO\͘b[O@3@>>Qokj/#d|x"yᴢ}l"*x9 3iT43^-V}ʬej_ YOkTH1K](܄qBDD oWc+#-Datgl2DxoWA~9 _` 1R)Y**.>~/}k#dd\0rǃ΍t}>3|.?IjUIv2WӋ Cg;i]q]6yIYEsl Ձ])TPR+m՝V<& \aCL!s<<nL;L~ ϗ2Y3 n5QUqs@iF O) :E1eWFMą嫤[#;Iwp"o `Mφ_ :Nuꚇ:ߩltz@OyT[ q IF2BoXPȍ3%G7`'B{@l(FhҝRr9,~K3rfezX\e% veD>|]ˬNCh@¢'לEbӰan/+[xsϪ H倃 t@R 8#-/OǪTЁ2H2b7$](H7>\S.?:ipݢw*H5tv˄kNAֈrKL| p)Ľ}GE"d03$#?5RwRݿiO_{e u_t] JXNbiuUP *S;BLUє">flS-vpcf>B$qVl9/wj%j}G;6Ѝ/8dtix'IT5'ae_/{vn[})^Ѓ;>#8=wiro V/iv C pkz4Fe$^?"vBgpǭ\Ek H;/Ĺ(2UN 8VF`6=>36\eb m69- __.k;_fAF}ۘ"!5ǥb!(Wt/rW*5%"5Iu5 nZُ, *H7A6rɓgN4dJJY+ h>>Jh;nO޳>hߌ/CBRjj-nM!rYx%!Oa N׵NP^'@ :~AZ-fe/3x' ՖZVRĎr42 &K]I&osFG8(!n־Nɠx΂"opwh^m_qhϜrT~oo|{緤))x84,¢5r+Xʂ$s10F$I o&ө=6y:~yEeX@+P^?s 0 JTr)J18\pQ|Eoc&rׯpB=6ޓL6w3VH\W*JoCG?9՟'erCN}1(-9TS,mΣ4޼ivDc 0b ,F|E /yrG6p+mn} F$NQzB6jJX@O3lwucxlUGه=͋m1 _'#T!& U~ܖZi} DoE LHT"P"ŽʆzK5>C,߬LۯrLD5Bx^mX^-DFo4W.'- uřC`hI4|\IPH#Rc@S2>Q%(’D xDNNK%&ߊ-up/3tZ5.Rv2iFL:XH{7qC뺙Ȼ`%\ah +[BqQ)]Vp̊(q/ ; Bmb`i }-ȐPՍܡ:ǔPeࣩ CEj)3vmR3h}](gDⵥ4UR!y@ި})&Sz6ؕ D֨&2Džl&mQa7 `T-ڭ@]_˅1FUʼtYS!bep 4x%^l +:ǩF^:Ǚ`c3 0}.Zfd+^8z9EY2-8@cR6#^ sۡ6oH/ҘqqH",/9"|w+pb,q R{ 5&Lem+=mv~} 3=*ؗ1w#sZ_&Duu+[A NE0:* <RR!njvn]k+if;>JS<<%Zu'[2b|H\OCcc󬗐;8`SciE/Μ!(!ɘJaHruj&?ox;ᑓ*=zivRFp fqə]s^]_.0 Ns&›l^(飖bф+x <׽ {].Ce_>G2&[.;3(['^TM*.1NS!{Eb3d {Bp3.P_|RL?Qgu 0s ZߎEۏቕA\4a342ȈN I<=j.-gN#x*. :%?D $΃%1!ȵT8oA}b HEkb]X=* Ƌ,K_oj1utjkaI '?k~) W  WWC6cXDܜ r gVW>7:λfJ i8}$zsbǿ"DBvQd_ 㳄d{G@HA-Kl@[d _ ncRBܯ[ Cp~kU 9C<mYEhsf0BGծrѐW}>XPY7'&j>>L(HxcԛA€> 7PlkfWU}gBoM~@5h`SW-,ÒU!f|r};MB7#Qehy _/܆^w /lI\jǛ/d6X \I>_JDg֫N"A. PQq9 J=|[lk%m\6ੰ{kIVFjm0*n : :xfLMԡg܆6Y T' OyaVkR^&L{u8&y=JN8Ov98S'č\o7Jg#?o qX鸞"Dx,4Z$ӎ˵H*ij<)zy@pX L#'5K{`=0-O i OYA6 T˖OL FśHkyHүbOfS2ܴ6EWt`Q[TL{m c'* ;C%V{DQPW;gfC*c] T3uP&d3 nή!&I?^Dxژg,?g7/tf1 >s–".G棯m?SSbh JJm-fw :ۓ(o7,ム]esG¯__X{q,r#D&|Ei=}٦{s)@F6A+qy\]F y/lmXG^ ktZOL_ծ-H ѻehjj j-)&-]zEPI IWky {=z)VGTR'h^JXaojsאa%].1yP릭-SC҄M6t֎|Ԍ4Cḧ́QTPDž ƻqS!UaAlyشI!o KMIIഝZs}drmAsuY2YIiTjѦ݉Z^umeTn4/`pꗸr}Q瘄^B,J{"Q Ի,TB_jfFqu@գ[ҡUg0a&s&8?D~`^5fIs`-_0OL2B8=Mx~F-,;TգބyjH7EzDrWF"zWƄ! IM"}#01xZ4̦l0+O+;Bý3o~VxQ Vy|{ωtmdIJ} b+f@9eoOCVDpYGce ;Qzx9;0*pEX]T8 wMPFI{|+/'=JM4'[fwo tir!jCfu,ΧݣO'G찟;bdF:WW 0ip K *_p Afө>qyP4kSdɤ.(zL̶qVhҠT.GFF]hs@/gۦkIx>rP]PqYyA8:12?(]7Gw쥎Tw+PX\SY'$!+2`xQH=R}\P kTȮs!72% `n+`HcO蚖`r镊!7C+ݝ=r ) v{8 V:U.F6]@‹̎s-%Xcn4Kt1xGN~" 1+:㈄ŏ,?;S'0ۺz=ݳ Libbo΋aUjy ͊ $Ha8Z/Ε3b q%rQ$N3흴XbF2ZbQ x)VZUmgo,]ϓQi ¾&bDH)cfVjoL M SGBkL*. -,P@}MC=*C*UybWއH00o֛F%4ǹ"ɯģA]rR%9}@D_m#-˕ FN ڲWo q!|5#WI ;1RR̿rȪKGРBcv+Vi3s+ 潻Q<1͜*~3i eGWR%~.6{Cє9b7_X7vwk5CX kxJF0r7/wAuwfȅ@T q"c84}@:+`'6UGU6\tf$ȸF7H`/ pFķOՒ|׶|04sM*e !2T m0W-Z24\+2^2wrdhgW_e+Ӡkqy?tیKQ+bw8;S1AaQc=Nzt#-NG&rx l-̠# Jo{ճ]N5fB"sսvK5^ 85`baN@a]mJYڗX먰_x'’@hW]}z|A9H+$)^.vi5]%xUA[PT$ч|r trUqL\0-i2lBDm3k96(f''e!eHr Tۜ7|]h*ɗƪ9F]:*{މ0v\^YNFcq`Be&W-OJ" l#˴,Rrv"STmCَz'[C1vҾ$:?m8CK˽튩 YLjR _ Ks ? "󾢮| ܴ tg#ǸlNgj4"^F!fHѡg )׽B 3߰[3>J$@N0!.q۟)s.Զ (xa5^Oc4EC`NlƼQ:|XЫ`qQAb=@|؛ex#ųlz^K(f8œlI .}2VW J+jfFzMJ^ooWT sg@æ(vf/u< %%RFG{#yAe[)&amՐxCMB/:eGv$;YtYs9܃reЎٜ 5Z+f6A39j͝4cvrntf.pl:Tm#ip `(\wLCf4~(5@~[)` Zcc"ݹD?pLl'Ӡ`—.[X8kz|Vm͸ Iobj\|v3H,%﯃'̢&x,ቨ2fl/ fXbdaCNr#q?>/ YWZQ>aVF4ja g1i\`Gfīo*J>{WX Q$4ͅ*Yns_&A~y?pJ`s7<oO/c=٠tSNO$㍻&ʻΓz?]TD(ǜOИ>/B vQPz%"S([5+B0~X,}ڋD)ZK/$AƊBqv=F^aKON7)!*{E+ GH}+9j/а-N U D:Ԕ&O'\'1nC #v6vE @j+YC0eX7J޷#4yd 9  4b/PK}}DiQZ.;iuPq%o-5 /Hqc'jv`U(i}48D3:4;6#9ډw/J|O_MnW ?)][t+pNcGҸAq{_go?' ϴ|%D'gy.Hg㇁F?u>ƙ&#f 韁[=!.%^Zq1žY⯞|m{||Yv;+M艐 .6SZ E591 ! R3jCcL{*3&Nj1l16̈́J[atSb|[|s)t+"~[fXXM+!+'dRA } ^Z>zBhcX}yV$LqD Ͻyr9sifq$q)7m@ jݩLvr7}]Ӻ zdx$ K93Q6NX14=My,G]i299p3-A9K>Ey ,[:Dkmhe/wR0r˨F$"m|QR9wr&IA|H5>VD0? @z aMQc2]KH(lih0 i$x O`e.P}/f %YqϳuB˸z0,GINa9[OܔjQ;E r]?jmrVHɎ}K$GlP;Cނa=UZ`W8yⴺϕ/$Ƶo|m8+oêf{XˍR1.ӦsyZ1_} b7Ñ5Y}V9POOT!n6s(c?Ķ cSծ͋2١hҶ;(exe56#oОSx7*F(_fs?ZcRiÌ1bP|Б:,;5YV'p!y!xiGtI4doY|쥸&Qk;b$/k21}rz>ى+.$#:fyq+}+gA]w5+jYdiI +"\G9OmBh$#:xCQ_g9~Db[~=tPcΟ%GSiJ/&ْwhojzHT"y;š'Ie6t&XJasZʃzDވ:sF)mg+kt ΄vsX`HPt} ?efp=ƿe{Kpݠtn,Ş*:#Aʏ҈?Zt{Œrw s@E ѡh~q6uɷGG[6w%xN[u5P$KK+ ϲ)هm@%`8̓@WM[d5,hBy`O̯!PS]oRYtvW.gF({ _;ȀyW߰|kӟHW!7*Z+pՑu)6*MsV@A+z3~4-itʩZ8 U 0  Xy fk@ 5nɧ1 Ppr:-]H{g|/Ҁ-\8aaj(zN8q4NAkښ7w mC&IQ%cY`]Ɯ## $Ǐ֢/h֖#?)YLWD=<uhض̕T r3i{{TW`19;bWi.!ᯘw'`59u&)i[C2ŜXZbmH+hβs1c]ex#DaG֫ZerY))ףtaW& Ο$\97X NW[vw|&qMlpuw9[[&aet">=Nxv~;1@\h+ #τt5smgwY}P! ];b[E@66땏{5 T*}siO^e1wf2{X4›[:Y˻GLUc/"BKMVa8v=Ք ٞUфowgֲ}!b1-M'VpGf.Gs澱ϯIIcU\-yԯ7U)xqnؤ=n̮+R̷K`j% `QjJaXyCPbx `.%i΄"<'z.u$Z=B;|d' vX|c"vp̪qͶYZC^GMPʺYll>B>^{gbI9B kpjzr aN*-O/)GI53?H{0RL`DdOo{8˂CB{d4:" nݵLMTa] Ja 6N1,x1|r.QHpO (cB>ĬGX>1C2ytqC1D!Q }yuBp4crDaD;JH[8F  #+4aL=%b!oS!LdeD8uXU*CDڍ“?3_EE:w_ddZ֧$薑ERmX}U}^uZ%lž;腾KTEڳ |ONJIsc/ug=4(F3Ay|4Ps+}CCڈ3ʗ9䚩2,َ467TV5`>˱948*c9hki&Q8Ӿ"ٮnA]FGoABr_@@&}r"T^[e>l<6uZ~^.=` 2>kt"-SLd._`(CB/B3ݼH)@o~rxLdA/N @ma *'G,FԴ%A*-yW2 iOiOGj!^&2g#*sC=ALiV"=lI.(B+)嗈ip̖+=bcA|_Q[fOB zOM;}qca7i0KTڤ2xGvkpnh ˟lO;*xrd@3s>3 9vdLt9kDT t>SO%Px9sC*^SQĵ^o1ۺ y^R6&VMr7d~Jݏ~ 2\`fw'5̞L%7›OVznQ0T#=Jp!Nɮ)\`т-pgƔ:E9ZK wt'3W92Txzžos'?$Sm[++h#\5 |qw{G,"yao,~Aja'3rD?y-9>C(wB\@|*(h>u [_-IU/G;L~]P#C?%}t4ؕW~6B6.6]]+Fif/(}z4 < 3l97|-_2C׌<9htm۪r&^?%j lx|K3@9 VQ- =T,Wy\ (m tf+}?Gl,ǻ2D:]@(K) Bsi\5s`lhs-q}#v1 3x1`NLII9}pP_~B16NIl{{h"JKvby)jÌe_?x%{T$9'~v,sIpZ"/eؔ-A.v 6 \d9O(MjIBMrDCR{ qjލ4rT 6UNL3 gO`^,Ýi2J"{¤ <8o^d !_M~%$Ϡ#%C u4n6{;D;i!s 6A[UW^S]%v#*MDNQXLhyk#>o5J9HY"T$U*'$JaU,Ϳ@"W' ȳ7cB녴Bcc56hwġU;]fXm]a>$idP!|:ynCZ&]ڲMֶj7b %jb~FyCL|'|N8a3m[C)(s Ok/^cj'cҷw Ub6rV>K>yVM. @eƋ S˩g"Z[٩)Qk8 eZsLQ\L8(d ʾJw< Xqe>}|(rK#[t04#[]So mPd~zb''T@,nxuW+P-qڝqm61?<)QPapw.?rYWS5&1'*+aKgdh2scvQ?qOBb7BK $δtAH=; uJ>q5G44Qwn>W HDv_,s08xRC-! ~6:łB0ò QR?iتn7wH8 *mn.ORNgjZV4CݯC'nb #?I *J3ƥn 2y%Xz~ۈb^B%xc[_2O UTL{EIXbU%Nˣ\o@.)}'R'2\$9Wjd#Z-"jnbЙF]|nT {FfZ}" <*h _E+~}ḁp:)sFT!Ma%ϮíRw3C71ꝥi;I :=if7 &wsrP3Vmbe'WQLşq)ZNq>[D#}YgLo٭ACNŕѓnj {GD0K|IHC&d1+kEXD.W:f_j=X1;HYi19!m6`k]cW+R  epd5}w0x<3(, ;ָLu1ǻw%rdF[5d彷;ȭuܱ,SѱEKMѰM𯪶uf_C *d,G/)Iy2Ű4EucE]&JbS:t1kxOCwJc/GE{*.B.|dl= X}?^#@qH{`2Q÷IMf.PgFgfe=w;”D{71}$ƖZ$zC8V95IɹiiŚߠH bm3SΙ&JV[VD6-dۣ(q9dm>ԣSU{0_`w̼߱n;Bؘ@$0dQ:#ݫy+U5/1$+~ѓ˅~:J!4W B*3q ^9H9Opӻ*nP[D!*O ?P_WzH88p)~)H7ʬ 3< 3Ń/ɝ~qq?J-$q +WieNj>}"A:#WQ99m-l7֒Rïs%7mpuZdJ[ĜU гJC\̾SOֳjWzCR.!+̱gڪ5`BuɚKY^ ?6&B%3#Mu(pSkPe8|])`EXځ ~Q1`M__XLcBQɜ+%n<< ԵױQ%uE^JI5"a&lں^z얝 ,%p( awPpLEj#T)MK<ߊEZw*U3BW"Ff 1E>x|0bT9U ,q `B^zXX/27t91fq(p b|E9=^Iԁ"^ x_n/4x/2l{i*"Q;3GDѬ@c3;-6ї u+n奸(N2$l|(~'܄|FJ @+T\TwDwJvC`Եk~wb ЊwEHQMKK@yuVA= ^JC,,cW'N ֬7q'q_t]JȦv_Ti沟Y”CJ&K3q2:i u$]R蠟=xx((uK1y=bwȌr] 0aB~!l 6b.{W{%6 "!U ma¬)q[V9. ՇG6߹%76?vH%a1%Ң9kAt)TU7V`^EQGv5<1 32V, #D906QsaT8:d4ܼ 2˞- RYjZEk(uY} _g#HMGu#%oW߳RT%dX8-D2I^8bZǹ-!Ş02u "x2ܢ1פiQ`zI9MRm] 77QMf"#zyqirdV)PP/6V<<qhHۅw>e.%7K{9 TyD眈U(aJt`ethNѲͨʹŏ P8-nPmX$"b F",]*hɲi6[".+9L)Xޜ&/GˆO3.enIo⫦*(R};49]lU7@ hMpiUG"v3Vѭf#ɒ׹j=xm"N8T+Mgn+l?^_EoyMs)-_VE{GG[xőG5ץx-!+Ɵ jm5̶ ASMvDRoBED"QH*V0[EVu`t;a`Dpj(k`H_=jkq>~J@ܨѹX&vk\d<7~5xTkPW HԤp>ou>{ˡx 23Cs|oDQ 'l;LR VثDyؽ jzf?wo F`vCSy\>bt;UhaD+R;roMzNWo^$ Z-*|Ћ`ib6HVvZH"e]^IqU"2Cx ke6ԗJzÅ/8 ̡pV^˅7GAu'xԠgcꥥp=STGz+P3:U "Ql: D9Y zB]4.dftgqηr9$z Pl28g)L/Mr㹙n;PN@'a$@j5O5ɧ|~VrLrַD?r,֕_ Aշk QʱTZML;BVjFkՇ9|99p6Ӥ#3+e}^p;M+FrXdPqz9}!K=˽4Or֊1Ŕfy__ $]MW9x$`Δ 48p^D#ə!v; 0.Soya/R~| 2s̕QoX4MxŁA|gq1{sGB>Ju`DB!hfupb y騽\%;_dlXւSD_vb)n:¼8cpK  d8lGûGcjӭ+oQ2Bkkc;& C[-WOz'H/cv*"O`.G^zr6b5WL[ɨƃhe\(żP`ؾ!rrHoMڪzL9k;9u\O}"gl~: Mr|e:V|j /n~6OVG?K|3qQ⼏tlj6H9Wwp>tEt`WK=#ҶnTvx :dlmt$ٍ)~2A8۷#_Eĩ%{e&Q~8@Ԧ-4DVRrooeVFkۣh8|1j< ׽EBm贁NVr/ f2>no+JMA>Έ`,*ւVN?d)rO&j)kVvwsIKS^!:fh  }F=E,\ : k ߈g-|^ 3[X&G1Ag(: 얥iakz1cHU9$;wSelZ$`-Ůyc#JFk 7S{CK$I#GioA q±aU6_A!Ra&A}d?70 m92JSe"3*3HZ##%qS('|m-U"ZJ>mCԠCUm\a ز7:KI88Iʘ"dREG[(M$p> Yҏs&% |{N(-@ B{_M/0%Iƚ{Xt ⡦<4CSJ$[Fz![,2yYHk 0 3Pufo"&ߓ0*; 8ݵhv &7QЭӜiD >B;xiNCR5dksԺ+d7p_z1tDd$m.Y]~--9.2uX.ak`p8Rd9ac7xC/9=R,oeq@]9YU_3,vb,L' ipvsy0\=qTQ$и2L]k豙n\c3f05փ@扪W[kuV1c}uHi/J&@6:58k$Ch,JSOZ\E_?|]7ٿ زFjka\WE>dXA$zpAyl\hks r27EcA-.7@i{5K/"9~akA𹕻/ݶyfk.[Az8KIv_: mTKPE6 K:dE|៫>{1mI\;V|‡NkW{E\ɅDyN@$q0*XN. {^К<]ihTagrpN,6r^obJJu@CG^z!z#̂79+;Wۤ/]qD$T+v?q ~^k lQWvYiȧv7kW)(zynΑQ82ϪWZyUGĨƢyI̯] 50 3-DD7(މD$kTƤM>]]eBiqԼPFm6>[IBThWoNHq+b>fѐ͛Z\lI&#Q`nS.zKz&g av(1lɒfz- [9W2x?}T+o-^f!-a/[FYZ3 /}^ffp'O_4Y? dN١)c[z@ :\D!gumGnݞc8^A").{΅)V@۞ omghqqu$)r0z/ 9`#IdW,7=ɩk[)=hSD4A;mzz9А&JxVa&]yL@m?(X*i(`gO&kJdVjhQ_TɪH*i)#֤c7< 7+aר сs/]ڟ N]Y-Y?M+{tCOTh`G);*Ҋ_3tfX;)2/54nȹ$^܁Lcpt.A7xx#ց> | ixYDTBH6?A8$YXi{3/5x3TXxƱ;VVMLoz!fE 'L:lY0DCF\{50X2dG<)u!qU |Gc5i4lS%qX,*Lf+U_$'O|֏;dv+YW,@&17vq*zK*#+\*\2Ĩ/|5a#)Y X&=۪fka<Vn~b_:.׾N*FR@7/rb`Ϫ4멃ifj6 ju8^,kU Vi+\4&iz21ј> QF߽ΦM ^ӓ_|HZ1>9 cuB*ָH´=AYT"z_*:c,R918Sި<_ 6y 3sKuNƄ~YEĭ>l,a xi\zY *e&0=wQ+K;- hsA ԱeA[AǁP.UdZ.}%N ќr.meE=Er BCA(>"w1x3A6=_xCpG󼠴^ rghċf.ְ)iz|&&{Mc#R.&NwCX[_n/Tye:^~4N9%<'z[]fpܹcSv: B0[>Dgen=jazBi漏mJUnUKƅm>x? Z"㸨'Ho~hX֮?4B8kGHɪ%4F)sE*.FؤEXD듔Rou!b\o!z`G[Yv>ܙZI9ݖND>kN d>O':.`k*$| -ŭ%1bvee6LW*T.&&%e@ktrjUOt`K/ayOɐǧn|9޳ 6~Ce U Y %Q%;2_:~t6(m"fѱw;^2kXA!hJ=إA\: #ꃑB }#[Y{'3i Ľ8ڸg'(ٗaTyc׫$=6m!PE]m*l~zV= cS*4z(||(Ru${+ffD T[hLRBa}rP=J8Yz™ bCӧ^5-SuA n[d#V2QM61iUx㼥j5O=4JS6xə?RT/~\:S3N` ˞`=R,pjұF?I4~Ky@ۨU 8iIYPVEa^R1Ysː]Eq(3;pܭ$kx况Ifm539eh#c^ ;[.g.qv'Zh[I8d A"*C֮j D+SyW/gaIFܻ Ht͒ۆ OE*%HOC2ka`܊MLF= HmJD]WPV߇)Ӱsp+y֜:/GaBTNge3lRbDv,9l֫"Y^}o}@_%;]-?'xE||{mrVkF%8PÍ>Լ80SXب oa\kFkX 0 ~9ÚEFi݂wf9.x!x#cc0'<.9eI)i:)_MCt I%+lӚ gC;Na"5wQh48Èm.~PH!gGeP9!El~Kg}/)"k.0X"< LS, Dh3 ?4\ޕxԙ$lh >:υ2.-YsCAPy :(79>5M5]^5jwD 2IHTLB3,QɽPr`|3iVQa}(&a3W΢XT!Ӎhϥ0.[5Xȍ[RGwKflg\'juG~)M,g(d`:}[#9/`f7kjTm?Os}TQg =rP4\'j+|bneR,\ }˙A.;8I4BLdHKtjI,Pa8i<[DqT5ݸ<0wV1%|[]+|xt[4~3_Ÿ}5œUObdOϥxKf6-J !W Qfz <MA@{tFYϙl`/W:mp&y˽BϣcA/ݚ(z1'RGǚ#k\6)ҰdZ7ٺ(Tʭm||] ̰׉om!’j:oL"'Ir\j2)xd,9rd[m3rP1LqI ,) 5zaƥdVǭaXlul"{[6ױ!1hhUd,A2Ov D G;_uQmnsu7p.Ϸ)xOwp`+'|_Rx>ڂ%mfi*Dae0dt̋V{R̂AS顟9,-)@1B+F<,h́b̥-a>b(~ILtm^`ex?Pv_ l N9eVLlOj?Ag*|6)}@tVYd5`T'gs/"t- "ꅅVjq𕘜rY6${V 'Tc~YS| }Tz QΠU CE8,uwv;;1W{\ nED߂Vys\sۘW()HdsMKbHkc#n+ osg໯=Pfefz9bP\-  s-UϚR+å(e/ꇇ(ғ"c^jt? Fq{)mP {<, HO$ oOY<Z ܝ]T8 DBANvXlFm8c 7?,Sm3OU9r @$I ag7IKnRBA16^z@ņ6 ż2]hv<raˇȝm^!Q׿‚OdEҸnG ̺k\?S(ƌZu(B`K- ]3Ť2Ϯhv @Cܜ<Eܵ&1x8?̍6Ѿ4' ~m|vǿ︁ #M]Pf4ȅSqZ9~z 2,R5,ec*a-bp,?gWF.\īݤ.f;3tsu68rAWwoȸ%;F/P [JeC:f/I,K>EDUS @,ʑ7hcW+gtyxPͥBJ~'w"x0[wɆ f_8&W?h.bpᛪ` 5T~m-[]8Q,lf\0z6~0pfX^<)Ip߻\w@#tz+=烬 ɩjn$NE?m"pg~XE&oa'ÝAytOϧU(I+dD$=$ žN&6`(.<7ū;lf_{{\}9@|*P1Yapg1=I\Ol^fQ_@w5PgH4&DG Ȅls;z|DG7v w]?H*k#qQeu$;}"Vlt[Y5ļMku-SaoTH!G9-v#$Dy YftoV0?qRf Gm b\Da-kSgVA0F@\UTK 8d|F;-8{~lafl]$Q]SH^\n/u$xa0..'Y$U9D%˃fjx52] E+RJkg}0Ao'bF;kmk4jVzMt65>h؝F?ecUU" G7gj)op,rX[XϕNzL4L%jڵ&:̟OpvN1RbF\HJKZO;;&dyM;raO"YSan!~p_@v lBAC*eyU2[Y)I| cWЍ49({7Re KgpqZ8DG >(>;W`|%"ki 2rF[gT$Y]/{V\};:U#@ PY|:%_2Yr+gxa[ml2@ʡRrnVH-ڒMEBXL<f>s=WBg96:[unE7IfDgUK5Y]R8!v28kb ӄK֤TsC_*Wؠ6h1$y0}Nʦ; y _؎M(q)菢\)%T8$ġ~!{5iNo)\Meߞے8mBk#l Tg6F㾬3|1!=e*Xe]Ze)Z^sJF j# Ow_ ^ oW%.[gqCy>X6۝׀a)dcQ _SYMd/U>`}6~Zz; ~In.ђjb, 2-CV 9Qj|,FpbÊؽf(*k=k2`ZBdFX]e~ezȵBUlaHi%%^cd`e]vz'4>e=ZWo|_H_67ӻwQ?Xd}[ք򍼭OAsX+^'MbIsQ>5t"Yr+j0,ĭpwnb{隤 N2*nj4b28[@~5xb|>,^:IΝꈩ+q֥@*A>)ِr&;IE :~X+dq(xwCy& (juwWUPēv4pFШ34ȡ:o5UnݨQYT)O\ )T˻̳Ot;E҅;QKw榌_54 ͘Iw@G:V짮kҐ 2wuj:4zIS:(ӏA)cN$`SlbO`5 ʶ|ʻ)K_4z/9{YwmFDx{Y4~N2o?͖Pm -yvbLFaۏYThj ә͔$<8&e2H6w?? j .' ÷WO k#cζ\2˪*l}EJjz Zqt՘E?j0@q"&8<`W53s<9+E9ַJij_F j*V`ұ֤# VYVa,0 S"oVꑨ>eYM]|b9-@Вv:R+r:&3[Ri>nlSn GX@+'N] 2 jwĪ~.aNCZ(Sj'Қ6P-D_"@!WL'Q͋Q\YOam`3Zi)Cl-Ƙ`Mrؤne,2R֙ݞb)TWLP{ e\R l女5x!_4=>3# Wqp_ y8r8 -JwWkb||},b* mimqQݾE W0lB9N7Ibp:l/vVZi^$(S-XǔV'CD@[R6bG%w)=0쩪u>QlX;/nCvٸYyͲRŏ9!k1_J{kn1 2 Л {JItX&xPCJKO&|2<g z5۫J%yBqhizRU Sk.|+qo#O_TT}MNre4r*"T }ja: *F&!Jq*29m;#c' M&R<=y n־݊FBJIasݞ8*JDOkB+rY\sp279ZV~f}ˁ bLdݣl*VWf &ԈictOr)C̣ 2hÇn?#gypI9aE܆w!mAҫ_PS_\8+}zd'0SP=t c` {=Uɡn>CTƺ˔\7X:ݩww`+wg41/R[Q62Jcf(74kbb5(\AUc*'RNMW'hq2HpqYfu9=l!{(i˻3zmҌE8`gc|k+{$a1y{_D&lj-B爚(jcJOfsqD2>1j3 L f@ Y*$ H 86N!qp~ a8 uF`0خL Baq2xg5#~\EaYa S$O;X˝9;~"bo8(X/O6 O*(T~pqHn ;AlMQF?2d.UtØք1"T)v);S H{kѐO'1,]۬c婈0$8OɏdZ$$Og*F?u@* rBcy-b!@cKaI rf5-',zw_.Oq[ 4 $?"CNqOΐ zGzB~zWȂM7&t^7ʁ<hzsBZ7ޭ|7`{rtDxϛM:MYU9yʸb ubuo%PE\镒.4k`Y8kÞYG !m<b>]puI%RG,s?/]` @o'ղ,q6\#>fÝV_؜ږ᧷Ҿ:#8.lx:K Iix~*'*v-!h< (2I=l8q3J3"un*j|~ _"_SѰ6 O7"6 sIiǥ{m*UA`iEKNX*ZJGo4h\kkRnb2Xyn:MeӋxyN$a\<~]^kOp]M:@vL1v{\+E2&|1HydjBYGNY(EVB|6\jS @jp1A]Հ쥘x %nj?]ݵHmBҖ7?H!#/5kD ?y֥ u$6s7y:KA@B7J$(םw䦀)sDwW9χS=,S<ي܏dv}ELr-c|$BvqQhnƸ/UVrhHPFoUEp\f5DջbПl,#Q' :&%Һi 4DƄJt@dxE`gk7V^,Bf`RԵZ4e2 F#JN dqFX>BnQeߴaxɋgRG$~؄qԹ*PcfĤ*DGqKQj |j&]-?,WB>FR Xl,s;>~v%K8+ _9O5I9@ԽrM!_ e*3sa:$rOGy@-c w'U3@뛹"^w.y|ks+>i&8};B$Y8cC. phfm pjd i4eY~bzqR9G?h}=p6Eq\U^v6[B}/_^"-й0v[#'@2r$ŭp xMQ=C7q=qInqUkOEgFlT._Ό{.߬W5/y+Դ0#KHrJiQHiR|'-)l`xqrA$>L|K6bD my~2Vj#"gJUΤXxd#|}y!gi{RSo` 4eyp}pv*y0[nj|:T|W>̣"'+FWz {a]ջQ7gun}Õ3զuH:f!F>wm&TtMp ̱;j3LȒ,J3;<ႪUNR$'щ]NJFlt yZTm Aiu巗:VjÆT4Z+p!|jc m(@" J!k@yUCoLdfGc ^#h(P\6fE|I{0h[UBd =sʴrlVȴ;k+ o 3 ʍa'q2kUaIAжPt͵3מpy@;X}0I PaF3Kf>2_2=RfR;nBjTv{t %ߣ ~kF&~\Pik[ws4"=I [˴T:Go|ϊ1[#8>x(<7Zm+;@Hdٸ=cnJH2^LX= L'^xܥYmUbCBk[/UJv?\P)8BMmI- ({pCZ&&켅PMz+}:Bc^R[m%"ourFo?<%1o,r= cią_oQ2^tHޤ., &d.% >UVЄ^T0rX6Gi\s9̐jF>'5_#䝡s4 T#`VO޲ŷ7|FrPNwC8Rms-V!:QF&0/ش]y{C2~.0ۙ hDLP<BV&vR_?e6f͵ծΟoKt`EVmC|c3mLn)~ kQcʸ-tC%>jnCS 2W*4)ڏzhFa% KlOF'+H ͪbt 43X A -N^Qݍ5݈lrt0*hX g j9FQlpa\ 5'Je@F#Mk4CRMӘ~ذRe^TMś[a#gSeq1gU+`BP)5@vV5|; {1Ȥpq#AX3Ʉ'Lگg-DͪFRM+nMˍ, ' d MV$?0hڼdyQ%wD~'CW"No\c>,"aaWq p~P0jztW7ReZ}ƈI.CSC[j&|W3UԆ$ؖjN M-Rx%r/8SKF);Wkv|?UyKC>6V%*9k:ħy^0j4w{5c|J[ gO0 bO&f/3{v[df埚ed7rCi`, I-)Jpz3 K;w:IV qr^=MWkg.Y;\1V3`'j!ѢA`BB=[B xc#ʈp y9 S[`HX8tƗ nR46iRAw<q_ c/8٩uJBrSgqv}>t&wJOr`PдEv'\ę xVhԋ7#$Ch2܃Jh0ssŐ t9P"L>i3&lBp#Ft}/J]H~=w+(GΚ(6i2i<ıEӑ: $Y`0oYE͔&̶gx1w|ݚ ^e;@Z0{{ӧYi ڙm2Y+^>c=VDSTUzgc4)I\{A*8b[ktrr++ܣ@U^ksmݞ /ѡ'VTh{F1N[&}q3Ll6aÒ8ޥoA?E _,ᅢ4A}^^Nl(:Rv(Pzlp'%@VJB),ϥ@Sn5p'\zi>|6:C(LxsŗNe@UՋŃMTؔ",V;OQ 7\2Bqw>e֔NP`NȌ:ft!5ZZ ۭgOqގ`Okߘ 蒧%tĄc~#tNJ7 '{ؙ^~ YpE aq .$ynuR1_P!R0ӁRr?9'=Yy"S܍s:>T I~J/0ڭg޵X CcS;SM@Uc7U' պ nh[OU"&!]qȏk FڧsCi[2 @)YVM2wUP$UBZ̿t T*@ N w0g&I/yv'"|,PkC0s$E#sZ{EcT+ʐ(i|A?W3q6tSc*)2DJͽ+SX L-NQY+ַBɫ5seqLNJ4Y3Q&w#)ŞͧhFqD'nBໞ}RB\Y7O~ 46y}/:dwX!ZeO^Mn~ ]t/dYcռH#O A).ңX5m ꃓ7z"VrrkUBvy]!D C"E`o"-iG F AZ-]`|ԟ\@ҟaH+|kh-XRQw7a5 tv/S Lr.Gi93f !Sȟx*TOd١{ngݱpvbj>]G04LW 1H[17ڛ4 % :" #8Y]+}:[ET@c :Z%Iܯ" X(ײ:7؛htY!rH -@g.ѭz䑠cftiTyJyMʓA#*6%|&/h\7Ӈ|Qז/2)B|"h]I>e>#G+d&<9-1 eL>,Cƪ2zsL a)LgQށ4K$`=,k\N@DYƥ7YšS 9woIY7ԹW(4k*Q֢싺g&F]*NrݔWplj50ݍ?r5߫^?Pk")3;yujV=)jn<]SQ̼)x0|i؃.lV2x^${zMe fTQ2UȗG1J4+.,*i[h7b\#3hp^su6yAl dȎc=PH Oz_٠ۮK=-U6`K_.0.1 c~CY]ŷb_y+LGB: o a%( Q}UqeS'2O]Q&wen4FS#;AVT DFoUR0|>$LQ~zld᳀%DiKOUdlv $~ Hy/X% IQ~"ȉW>#3x5#Hю`$*.h&K^M+z?3[;;2Tc(cyYEPuKU_L(RP]ER)`tZ!j<ش{tP+We3| y.r]뮣tJU>Oꆍ;IhT 8K\돘iFiMt҇0US@H..-DROaϘ"pǯtWu)uk2=233D \Ѐ."s2@V,&yx,,/ǝ_Cj>) c#E8uk,P^N\Ce;I28>P}x6\8V Fd}ow$?#%5qk[b6Nq{=x"}l4 K1XZQ)wPvE;ƀ ډ&B.A !ٛwW32X'`+mVlQ,fCM%T؊66a1(<śCAo3xxyETa!5DDvOG 3ESPtC?)08:mźJΙ1<Y`HvEzWm2vNE愗X\0O!ႹyǍ÷\D6^v>%heÑq^m?v ٺDMō :wۃJ 2N/n><2vإJ&o馳e5)|ʏhQIPµNq2%,%nRjO|m:gQ2Ҵ<3%?M/9o}4g(i%@MU]bp(bq'>[dHQ hbYݑ 6?:n( d蟞:_ὺY.k_sv"R :u!.#]}.lw$ B{oO(i.8^[S5E$jkJehdfBl-mu Y1[5^Z ނ ׹̭0| 7eiG% 26B]~էnąK{GR#2=g0qgJZREϤuyF+!P)ŃA; idKGh fzE9JXp:Ͳ*OVr=n6*m)Г\;J0)/ ɣi Ͱ]SAV%ZAW`Ӆi1ޖJWɆ!V uWoIό;1RA,Ĭfoըc#tP5~ X -|r2뮥aR)HxpsWmY*5͞܉.i(7 $AUzhp%c#~G9[DF8&H񆬴G1Q=I(tz2ȣ.؝Aܐk8԰nӤ釙zOyLlG3Ea\_05waIzwnZ6OO FVŶd:=糲` Czё&Y&i^8?y(fmVfF3_(>b[^AGgS_ַkCM)0fGHԜ@.J=AK8,RgdXKi鑖bC%b1:9@3婿D` M~V.T&]JbU#ۃ:ΜwsׄQ UǾEcϱEŕ'<%El6pG c)=:`a|J[Y!'p}g76DHЁy"ev\%AmVӅ)p!|2MZngJD5 2ߐ~z?rn[6@å%ЛFPJ#ԑ6+C`7[C^3Z]6o,sO'p:F\BP583prY(ߌ╛i g.=H72 Gm/Y88]OU5y%~!Y|% Gj⢪Z5ʺe]D0I*aTa:\{*vi2ch!:l Rڕ<'+AkFHEtc[~T[rR^g2(eY\m|v")?q~t'޳| / cq\Ѧhie'~Il (:tP1xCf*95H83GuLP2JUj &d^$!I[ۙ-߆z#F~[K~\ZjK#Ϲ!`,y)(b&4UDfhZ6%Q9"0g ֡ zQe $<%LѶ}tԊi(:12pB_tn$oOlɻQL@򬔁8ZCН3͕^vጟBG~xl Ox^~Ci'Mhh])33L~byp!w\ˢ.^2!4=mA+4rO 1wB0sh t\+ѲL8"ntY7X;h>%%HCќW\N;lM9, BF~U$c4aN^Zdy?M^Y*Cuudc06hIꝓtQubpEZA&mȘ BK{nYBnoɥ5Ai=;%1%-]fIUfW>}n|)*M|evWƅ5L̴Y-=ξ0YwZ+KJQ草|lYD"$|+tBV^S{ͲDON;w@> 0B9 RS>BJқTNn1Ӓj|*~̈́$4Y%vnW`YRcK^ X$̖#A_O޾?G0HшDC$*%y\jLb]OK Ί 0a+)X_l~7X%ua1bgrtKr}Ikj`=oZٸT_g_o?#qqG&-þ '4U[[SqLyAbzŞGW.90"İhє۴D=XR}4M^&ykz274\ 7mRƮ7eJ#@~N l&)*7h&&p]M4\OEZ-Ĉ,T։PUӱMPP$EZs|])`Z]1!5f DPh9je:iZ~+6#B͇=Q77,m^:P-9Xab %u#No58Z+5M^V*k]ӸˣkISS((*W $/՞i[l~ϻ! Q-PTZ$GzcHL7aP GMoa$}vx * Q@6hycq#xR"¾iIqG^WhHY^Gb: (s\FOeoҊK:?t͍0< I\c}/M܍{LAv۠JÄzWkZD|/m 28;G1 z(sѣ)N9[. S՘9/<C8WX>FEAQg*3 fX72p0ss% XhL.2 F es}2G!SXn*~$MܸR/HITڹ[<ѓąP_ ?.hЙCY[v=+鈑7칀sy0t9Y=vN p{ϪcUz"9fXE)D*`INY4r':/,6t]j )_ZΖL +1qr&֌+VY4G~'P+5i7| )zܵɷbp3Z=T~ *E6uz=ֿb:8XZ76Rߢ <+~xzI$ޚSg_S] '~E86ɚb]{w3ݢ,VUݬ0F´F԰u^mb`~7ei>xP^_#{+m뱙ά>\YQx ;[ >5s.;G~Tlr˹6$i 45NiNOkBw=f{9DEeҵ @`,ih&s{OsynÂmjdE N{ 8/Vt d[2pR,}F{*-/lk҇P|)fg:Y8 0 (JurNd/bP}mCP t[LpJ|ULF eT58 >8C-+%R,őW»YLS9Z "IR<}Ǎy@`B4=Ba gyoha\詬V^s/1bY$E;M Yu Bʽ1ؔAD*w<ڨ{om2%гп-Ֆ %EGtMOʏz`%KNZm,fѭ ⱺ 3/_ˀUS?먐J@yaeqEK0}%.,MO(D <^(v>]\XW v=(X,Se]2N| {b2Ô:#X#:FS31n<.V5R1H4hH~hWJg,b9ҌH`ETkjr ")Ğ0sj;B:|D][>XAh7'Mt]4SH6kkUT\%bcIP'2xMldPdcI<=ifƃ.UFw$3 s~[\ﶔ Gvc{C9$_ғin+]No'UCˆxr!q ҍ?  M]Fv xO?vmgH8%3R(y);9SpsFyEWKo AI+Ld1%|.\'N{RFf4)ף83qAWܿ$V^9ί?3RvhJMPro}]\FY2D캧7(Dj@|7;eeA.ukɊ=>/oXςQMM0$g%RKLt>s oȫFZj&CCpg"5O}ĜRtkByvd Y"YR&i&Cx]!qw9YHX qi~$-:As8m)8< Nד$~#ҀF7#^ 0N`, *jcéN\GX &ỻ3 -ZH=t$wvÑ2Bxlbo<ק1 F]EE 7ד`Ԁ#B[,#HJMBӞ/9nrqc:4KE{ʐR_h.Y*priKq={F-QC(0-w8aN^531l{da*dQ|Rn/Vh3Z~㭬vp~~"{ °6QJQ?JXshB sy/֭LPjZŧvi0Ԑ$~2 { ƦT[ĀgI͆9 ޿YT3O (0ػ}˵?60<붴/}d`f/NS.;XOPtvlHH,뱨HH0k0]tO$qdz #텗B򗶜 8,s '!5֠\5B0cF\SP؍Ts(p֯\,9!EכBz<'p(p:7vtW~FyF~6 껧㿇tL21ٜ8ԼZ8gſ]C}6ZBYsc9P/& кAu/{@nNKB0toL-7Q.ÒQ{u39Kh/*%ROl[%-,ĕ-}0+\R^M*fGEgvzO%pH/0z2EX nPïy$u|>N1I4QJ DD~7D}?=mCxJF=>%/+> e0~-c^\V uMgxm?gJ^ԚU;xtfSӄ4@\[1}Xut"i*"N ?]i{YK*Niڸ/>ro##0c.j$4Ӯn h\@"M:@Gg\aկ|Ta5s$E;7_M|ã)|uN|Ώu'y:Q06Jʽ,So*~2䀇q?x(a/a/`d^\:Zu> XM&? IA.!v,UL^8Qv`Rh' $/9\:o{]>48I2SĬ^84<WBc=KJ$EZVJt_:"3^-.lW<޹ԌlI Ł>c!s9nMѲqYWc:Z!d\_H!{Id V/קX_&ObcLj=rLO8 'h~9(ơdթ:7t jIevQi~59 >}IAwaܧ& Kf@^5nY'\&DNLQYk^#+UNjQPK9o.t!-h7NtY?VyTx1=ì"HsA10&<](r _{Y̧HU- s D ?imR8ySBT;2:Wt(|D?ue^vH@ ݙ}˹jGK9#nxq d- TT7(˒iW쒦<&,qZYꢻ٭WgC ~if1KPF#h%33q)1kiyNP吙>jlz %=xusq 9zKG0- BHyܺ`ȝDd5ZY7%6σJQ~ײ$, ܐĖwH7M>?# Үwy6׵]e>([W<M嗼E?U:TKW ԙҘSJd8_~$~k_"{LDT+#@eJ6ES~T O뻤 og4>ugA"tKypm,ߤ>mC9 +m$Tf"ʟLzx6)xWF>hmI_2 cspbuNT7/tδ>9!nSVQ-Jzcg68[ǷY 4ie9( pӮ1l62~&-vКdkJM O2z\O)XtpQHܜ$U/Rš$e1D.^)f]ӭ]voCSG 8{z/vOݏwRgͯI(ALUQʥ$L`}*g49|sY-Z9+'ej9"T1Ia$iڞx/͐/&έY}E^Z(W/ק'ߎ#g'BkM{d 釗)9ŀ!0E֖-DK1350r7 ko~f/@wxHA?/Ln3+HX7dEiҶ*!2CHׄv񤅐UĵLsO Obn^#%7 [h$ӏI\X#qQ { tyٗG!右Ȓ [\q4FH 8ws|׸2^l\lWO09 5tu {M$$L+kty"ꭹ23f䯏jtUȷ.rsAi϶bəfYO'mw9նʅ24)7y:;!d!KC iPh†/ 5˗7݋tN]MScMB!g1ŢYpGj/Y]u@P}[u)͌E/r k>ֶ<9joŅWi#PN1,FlUZe-j\LJeR2A I67幏(cڥB?hD0%K~w^@1: F)udLmŘqNK3g(SſqCoQ}TH}~έBF>G~r=͒7G3ǧCrF@Z˦ ISn8`(QӦ&.ڕp! 45D"nĶQf.M yME'$ &%5ΉDA!Ns~D{Ԣ\.@haxXΊ;&ovS"W [K `5AѱrW08=~)wl8!eRK&nM`hIYxJSl9iI|eA=ul'~ n/,SI+)Ӿ;wAY儩QБ1J Vwl\ZyqKT#"qpe*2}3HQP2`(y&A48pVS6 Ɋ^;?2*RVB.Ch. pF; ^"UHԎ0^HT,a* ,%HxDw }#_N4ێK3jt^ܙ!pfb"YnvXIB 3`tqߩ Y3 ]{%KG"O8,"t1[Q W=!>7z#PfNq`PvNu2qޚ)Ahݜ~ƟSYRm̔74 R`Vz;@CH|l}<T,Dז:K9= 5*G/[QMZ.ۮvH{*1^.)=<~.쳳f+")7M3OMc7ZzE]ɏN2{['Kzf`Ixj.#5j6\[ K88ʳ+ }1:Pl_[h30ָpsE"-D_5Ȋk|gV%h8*Նo=bS82a2=uyS_h;׷Z&ȇAQGdvprUW&Y(d\*'PZFv -SP-O%&]!H{qzc=,ep%'_. S{BC* &f^R=h/Pѕ>eeq*>H{y#% @0phC䴤; 88u5SCxQuR;xҺM('9L)'{$%/9#-u&v i!8LǬs."5E阩/&yQ'gco`݇zfhNy.&, 2B zK/yC^sL, KnhnZ&qX?3Ym\.TK+@`5eQmmŎU {"<Ò'N%CRI"ωTTB֋dޓl8(>IG@H5\nY]K 2n04sd~x'Fmo ч Yˤ5]V?s?ú!jn:*6. 0Z8+ޓMl6ޮƛ"<N]&I3SOeŞc3:[{} Txf <3 H؟ڦ]A B<)=Y'ƟZZ~wf,sKk}$Nw@ aznXHMI%6f?.ϯhKBz(ۤt*^P&GD.*1x;m '^8el`)'fSf[pכCRJp@t Ћ-Tq :,RCvb˅?Ek<8hx]tф]دM*ME:6ޫ2DLgk 2fhLvsiJ#np=ެ#5{I'v^CZ\R(#SqMj@-LAd]\i.G0 ֯ےNHp̥5-c}ЌHh1ryX c( thjϑm1+3ǚhjcMSVrT[~p!²t5Ln%Qo/dVY՘̥r-ŚSUNp ޼5gqZc6|}v vaBވK(DsR_g +m;_]"oaj9Jo*ID?kKmJ`z~0Vf/[2! QZPk:3{!fik$K%(S}#tO%t-׶$h? "#շli+U-(Q]VcE.uM2<8K8OoW|W{λzmf) Ms:,ZgIc'GXpC*ZD#=G]]Ga5W])oZ )$x |gϿV,bhK}*}ӦT$` TObSOZfnsfg:i>PsqbofSQB1WBN0lY @ fc=qA#Q6A6')!ŷ쪐\]KO#\0vfjp϶%3G(>W󈾘256k3#d- ar[RfMh&pb989%~|㦻̞BP'& Up+O g#cPNy $WY? Q Z3jrf7/Om )+a^Qyѽ"Oy'.t>y1ꮽrRr2CtMR?x .7c1T. ~ʇCslݞkuP/B@4sIZC 䖾 YZteKџ2Eӿg0GlP}*IG?#.mO] mExCP|pCJN} H8#v]o/cUq)Բonqx?*C'Ql6hCsmqT]8w4G?vKX⊝cF2ێ)!Os QR {?,P$O~#B[\O} GT!S: wUCJIǃHǚM%({3֩<"(S\(1 )Z覌Ft`~gC.}=,4& ԡHa37$S|a 2OdN C!qHlwQ6bջd@z'L#_ )tC/e?J}xy*wܘb} M?a:"H,E4a4*Jh&L߿ U> sʫp&G m~DeLEҕ.fa!Y:;`SuE/5)S~pfI'1,0*5w`>V%<7@PW׭YC+FJD]Ucκ߆P?Z j5/_qa\w$UByH:>JǗ˿oz%z`Q^/AFPl@['\՞YOkvY[)tRdGʤQݲpɧt(6w|0́ƍ }ep@mO^*¹BNNA9ELs@ӂFiOi,5Ca=Wc TM1g(?%$nFSb2$ԏ5T!v)$ 'i붑X^Y m L>A=].yk%* Bc'BrQQ/Y"~Iq[n AA35bF.0S *<QY3#Uw!ueh.L_hpyTm/v:9֛Thfh?mO[]޵Dj?_ح>S}f1^TA 8aQrDNќ#%T﫦1Ha7FX:giou0!eyOKe@"9<_M[^IJYSD]/ cpŽpr x-6yu;3iL䮟ߧtIkXD%_eU@3ɴ2egj;5y]nQL\iFUF8$Vk5(wA/B^em2 ބn݌ ]+|3V\'Zб18g!C܏Xk=t߱\8JzqzLH$7y:|%X'-q!gxKsar;k {eO" ΊՇ)qfb']?lmI0\ћ[v-0#PDo}rwC+G&LI]Y| 8Pd5ꔭퟺAhb8dnv/=P!ZY$DH@0@QS wzojMKiWr5S75h bF tcLNT&_ 2OEnH#ǐ bTcKmsy=%T,G e4yِU xsSj[7rbng*d}{#NF]a$*SjvfUlAB}lMr[zFL&/\`6.U*;D\jU;g ig2ga9I^83Rri:_/㳲.]`Md;/ -b}9ZHm*D0υ8ie8sQdh ϋaIQ ՑI|͟:)7΢" i,(AJb$e4Kk q aA\{`ed zf 71.JNLİG֤A>Aw )], #VfG1\ 2ޗx|&N) HJ$eR)32/꥕odiQo !D&-HA .#a9?"HQȶc:uc rS/.Om~ws])ٶFI(.u\ӐBMc}}?B6;:zHw*_aDi4&C9 hm|M46z~i '2RȮN [Vˣ9fКm"Pppv-Z40[Ahf ?3|j$AY[GFPou!ܷ7w|fNYHyH([J+DhƙgN[V; da%Qo"tc]q DG_N~6 Vd?2部Ծdyik)G7V ?ٰB;v!(u\:Rf$>{_J<@l?z2gX`i )%evZ6lw/I!r_9=:+|7q6՜EFtU%~2( *ē2kdl 8a`Ƥq!ꮲLqڲ|`rA`T> dG"Andd9M)<_;j8X4iΑaP.p4"-! JGQʣGAi tN(S V'O݋&!sR){qZ_epBl] oyB̴ȟpSzh@GUg2U7šL[``Fwă8w3]A]!l0j%9/jTxlhT_tj){jp/ؑp3`p<5yִأ;ek\w4Ʌ]_UsULJV'0"C}JcBn_Jn,QXiŤmѳAp5%MkTΉ3_CY{a9Ec>|T0 v d3eLWktTjohCH7dzJ}ȡ҇Agʢ 3[KeD?:rʌZJ2޽HT TˬQ/.lIH2œiōB\] [0?,a //d +J aq@'*1+4(o;7Ojb C(;3-δ~A8᭶z@5pOL_m70shVY?l.3/Ʒ$Mnu&Fw0ߨY U6I3uxNZs?SfNKdUϼ|.}Rۨc񞫠vEe}o]@8 o]6u4EZ9 ޲+7DȭX;J\ $8QJ!t 28pA o[7""~RρaQ{a.xi﬏_9ڥa +mT:BTʳȽ> F W{>H?ى&B@ݤinhG+ W ׽uiD * {J&Lf, rHb#O q_$+ X. iZTi## ~SS$UN:X_׼N8FQ\MpBZ-B2A@InRWJ3ʸM*xxcW&䟖ppJË#vޓye/g\恪CzOQY%й ,M~YPP!Vgb7o)e a4 :hSea~rx[<0yx(/; jDiR}|yb>:80!&*-}`F`w@[{2x?&m[ua@?кgW*v>B<G |R[eI;O"ӎ잊J_O$ժm!>N.pt{.1IK5新itl_̽|Ij#afR'e6Gf^bw^5Nא6q㓃 $8UlY}w[ FٌcZ\҈Up oU`=&=K(I6ܤhe]kk&4[);:B(?aO+DgyWA6jP7d1֥mfUcgTETqCK+*"ih /7ސud;T:m/29xe"CX]IctI߰g8j($;ΆFrU8v`esh Bj:vk ]V0pyۍ*j;SOR'2 Rkj&'Ao*o H4kä9 />ղ_'ox'`grpF^Vvx WTf3.Idi*% {[L|Uz`0G_R|ubБ^&o|s3A_m0eu%֑0hh{/ny*iR$ϴ)ɟ=wSۤ6M8Z].ljꄶ P$2c6´W !"=C,H!jsjC`"Cd+ȓt7d^S ĦN OIJM*ʩ_wDԥ㇅ BobfD? =|+t]YJį lzL*䱅'/s0M9˗ -='Sf[ (魲s~C+rPTM9/|mNjǓ54_7_}CIJ~Ғ73S M(CyO#;F++Do=JYϽ3RW6F9D{Z=π=z iT뤇I_i;9avܺM PybKDW <ydďF-SDE AxWa!@a|{, de |eyEaOj6ơh,mS!gYq h kW\(~LxAnZƿ d*j"s[e*4߈uUwa+nzidS3`&0SlXu Wө}"ńEZGwD #VePI Fk ݼ\-)H" 1͆Vny&4R{FDBE˿%4ˎ?7P)EHó@"+""Et Rqx<<0=a:bڌ6uoqbiM%O ~ޗIawնzH!^h5$ț cϴ&|r0q!ekNPIVPXQyCGN0xul]+~ȟݻ%DM ,3xk&xt;™{r;ƿI = N? }S81%9(L'ac!;CWqζcMQCDiݼ ά.7篋gGnVoΟ" /j( XNE )/ko}-!zQ 9,\>8G>yNfIXCjMfdzд)9wNߺ I(hƋ63V:ApPcۯ[gGW=@5ҋcK?ZohdZ4`O`c8ߋF2ɑ5S*B~#9RYߕ-Hw4Qe9z1`}J"r-b.ϼ^ȔI|#LsXP^_JdxP,-.NW"I`Lo%{?qZ>e*)NP QXD+_kW0V,c0\a+#i xxߞ\Z-4+ns'W+Ov-48kB(t;st\>I+>rIB\'_ C 1ʖҶܤsoaZcUH s=,I}SF@9tU XRg9k3_(wa?zSfCZ^HB-7[ H!!} WDL+@`枘.~XBMI/ Bԣә{~͕20>R3YZݔ*`nGh5 .3El}o_}Az54I^ՔdbW b L: !UEv*>Q['a2i!Wg0ZE.5" ;@PF^k;}GaJ(1 Ǔ-?@bS% EoJpo!50K rM8JmC*AIq;W {渉W72[7D+$AK?w3)7/;HuCtAas b xs[`R%Kb: `Hҳ× +R:L@PE׾f8g jx 1ķV*8x\yÑEۂu̎51fJTy"wbZArk?Ɩ`Љ >:(LWԚ>G?zSj~Z~fɿ`D%;}˛{T{_u0TYuI胊iċP|I2 EWR϶9F߳FRx ؐ Rdy/W0cvƜ{4ƱcսBYpU`o R vba 6!WjS4P7n)V|hTtgL*_o2e$u0 `Lja<wOV57iSQ e`8!SL7} \C&Ӫտ]u(="YKW?C0r(g`$4qdC lf)E]`ILanMiDpo2V{]a4 у'fQf+2FL|%xM7!^ 2ˮlnUఙC4T15Ze0m |)HʥR=ޜ;r3? u;_r9s^aJ4 $ dyc\BsehB78W}a+ ws$oߚ$ї7O ^mL6_yK8 hD>dDp?M/A`4IR/bߨ.3%jm_1gyJ#!Ѐ@!DRۉ{T 0gFs/~~n <)oαobpȗu1BAGU"rSゎ" *Nޝj@HPez'Zܔ|Ek$zg"2^p@w2\z]/$  hUE|"<8aF[l%JBdKG۫wnB" L Q6A;7*+؋$N*4rm58O*YFl3 bW%F%#h,FK!@ ll#4vOk\C֕ f 8Uu`";'E1_y3#(/m3h4;XChQ1i"7ԫ ȳOpd}H%،yy4epcK]/ pig\A5qGuߎ*svG0'PY%%95q-,9kyZE;+8O8YF.{} k e f&:&TY6xUvWgWտtu!zCYC\/\ ༻1م; ?%@[Du2ӨşK kV45WN3QlJ::zm?HĦھr%OJ֘n32y|tG̈́r1{,u\ =ϞQ.SAE$B؈X";b xZα7Wja4}%:SQU`&18zs J;Bܙ,E)ttHp3=` 35ranEu+T<*'ɨ48>u\b7T`Մ4fgќ1 CFOOHN=MX1FSjMƃ9P]X"w6R/Җ*ɭ: nW%}}j(>B= q{`:=pdzPc GS+KԾ9>5\I_-uDDlVnOАXݴDӄᱺceaՔB< GXwXxV#<DQ-M{&jOp"%}EDgc`azGu~^SYRJf5 fԪgUGUTN.'@8vE,@6 G]s&2w4^7Y8|NO}Qbݕ@?1L m⪸cֆ XHOW!h,ڂuLa7r(L/7]#W\8 {xs(tMHc3WQ)Y)*]1)ΉrF/CV`nYh VIg;Nۥ,r -Ў88X Ҧ+7)Kv `ݖcN;N_́KSIƕy\)~F0KSco 9U%<55VpZ"HfjY /ȽF^|`j-ۂH_V8T0' #3Ub c "/5IȉB$/a/{8GTK_95*e9l 1 CXaȸ D⾴vqdj=6"9.SJaN//6r >fX_$>ll!:MG[xՇ R KK/5,[=¢bXk&&6}[FDiۉZUPT7j=x 2!q`=7͝UKe廎a㘤| A>c䐆p&IC I)z`ay&zr/a ZPt:>2 8*fبqB7l )\J9+/SIEg^ dnDMnӵ)l%0O7!ͮ3}9C'$;q 67}2! +j*Ƨt,g=ɂ v/$Nnkh LF_|-\OFxƵp胡ni=27CtnZ|p q~3fNv%1JN1{%ʃJdT-!) pk)C:uB c'ͽRKْYYșzXi04H~|5=_-'!U@"Ge$T\RiY .g\HR|`H *0/ ~XVwC=-}-i4"(>(rO;vW@š-hGd w/}#PMHȲM8unT_&IqQ ٻyrbV OgR2z /W<;/0K*ŀI%'($ UxJйpw0÷qYIUOXff:ڢFGDw1ƕVVwv@k"і%Lk;FOh[7Z+56"(E`I^c7Egtfᙣq5ޢU;ڏO{ҰoouY>SBg#P8w( b4Pq90qeV_#ѩ&ƭpn|S7A zWOt BL(L:g-/zq듾T" ߜg9Zh|>;j E֜cE|-L&H6n1fAVnJi+˹'?UrV tT2{0pI/7^ J`&kݚ,W;u#1d&`Fdr^mtt0‘58@c\'T%O. M!%R*MN҅@c'ˁ5 x py}c= v@e?!S}xdG- Yނ?repIMMqϭuMdŅ4pgSbd\8uZԯ^+ ;-Icԏ\`Mw*Q~ה7.qBazu8[ϲЕސXO:~q+=dnkeUߵFBu$DJp8CaoX}0Yc,81S輩,U¥IA1J8ިdU7Tt!hsk*9)ҋ$iE>. #@UI~8E{=C,DE>A߉ЁA`\Q 4suvL Spcvd,@lmwT.}2q[DI)u" 'cV+jqZ>=*B~!+b6W< O5"֖:n;FyXEtW:Ts< =cOT0x4 1~ٛQtKG"L+,S {y#j-̏?_RP,PIMUjuS! (YQo#I9ݿH!0qݧ[/#p3F߅&pI椼$( FK& m1@lLGrL4Nrէ+$l~cvL?t3J(7rki2XTXzj9YAc"A(=xIQ$hhd|:Deb/ƶFuKӗk ^3ފUAXa<%cMީίA6ΖlKjT^mzgobjewѶ^uMP|r~:`A>\獾LH+0~;C˅)KNOᎉFq,}oY ]OhUOϕԍJj{bck}1ŕlooҞ&ͦQVyB*!My>,,Wc¾f&*:?_ dzKo81K2:ݣXY^|è waLeyiƛ1[gL/~{}Q ޮKKvDD!"]Js|p]mds viR^oao-+Yn *o?H%8} pԎ]Phvq:(@WmyJ?uvM@[$K:R h,.نZdkKwPO>k41 zY0у d $Xv4T'E|/SHJieky56iCp,I8nSF+i%'$%AT׺\' CVo MMgIfīH x&3@YJ.L 9yCca*<9ẓ!6Z@d:y~T׭yS᩹"uϿiF6F31خI,k{kM"oXIAi+zXRښ| bL q $JuW"b>sJm/͊='8/j3/p-oѭF]$lkF:m߁I|P3qk5N' XO'f'q=\ڌ-u[ H"?CN iDwS_ /wHj9dx}TW\FRp+)5ŒĨyYN/#T'v+sVلƴpRv晷fM8kȳD Av7:dOE*K f?}LcP1} 5+?8 Bk(uĵ ]}GtDy`:Ȅխ@v/aa*l}fR+g@ DliƅadHc[FD u^`i(ǽ&9Qo@"D/o;T )tJ*OI47?dJI뎍!ZvH'TyH^"1A݄ <)'@iʈMUtbdY1yذ//O}8oY1NǓjzkU}VU_ޫ\m ʿX‹_"SpZ6gA.J.WqIH3nb&+ڽ|->)\|6"?CLA{XQF ݈UFXwc yTR^ӼDe#L8ynrwE<3B/?K$۴x/0'SO-goOsJZcgxexAYiH}ʇ.-xa8 /3j g%V(&?2KCvN?wV>v ܨЍOMʴГ墺Zok`+[@c,]* pn6PU}eѧVS '5%oSns)& L`ҞhPUӚ 9f*DjUI>%Nq+zae((U= 'J3/t_1 =GCG.Sט]U"E4w^ B cohX+fRb'[è9=GenoFܐ [X<Ⱦ?,J giؙxY'M#Eߙv;dhJ;GOj>]]]qzwnfg ߈ZU2eMP LdjFtzlsD b4O%ʐk'Ss:,2m@:;a]8_KgAYHUyc+IODaSsX+vhΉ@W{6'0Ĝ9qf\‘ljmCٔ mE2 rRXsn`E=4 jNZȥ+",*HNZO,"qmݰ0;`$kDY A@ #1?',S^oXbݟ{H`HCMmvC5<_}5U2QvpL - &E[SqeٝjOo {Kٽ [իWGpSfG!V=_t]7l '64@esefF|HGJ>RdyDK傗Iq\F:k?AcU xgl;F +U e!4/AJ\{:YQA!6n/@:j&0 I mY@C0~kٝ8x+ vIbcYO 3B"VQ[A?G%F{FRu8uiɼ=?9E9|/"+ƭюmTۉ mBN zX":zwҦx 20UfVjkg}|r1w\܏B^pߥ` ;T{zd|0nli]}Աڴ(bO5ffUZ7)*+ubiS4ۜVF~s DydTaΛL)' DG_ϙ.=_ #t+iKWTPiHµҜW o4b]}m<R7LOa :ZdsCn+K!W KwR/'ivrC0i3݂a+iSO8|:KjÇq)g^" VwW (,N>OWWL]"3Uy߉- |BS8{;[Oܹ~B`,'kƳba]FﻠS!(Aī~IcZ>^@\3Uևܗ .bV66ulF{وWlsԵIZ]-~I=R;M톓AP}gbt<8e~<1"wʀf`t̼le|zΧf%PXP,+~C0E`R CxA760© C`ŝzލn] !3G{HK"R/;Kok]~'A~4cf6rjx1 #NjV7Tz :%iB!L C2'ӪyAN6!v%Jɋo:W=\̾oiXtdtي45+xU8R'i5fq~qF֎((,2en oJ,Yqhbj5JAӓC]gXDK)/5xsX14nSpj pG|~yP!L4x '@ :ǩK0YDI6 AXyȘX"C*D{Ǝ98Bn$ꗑjnMdpepr]@\ fȒ*Dr;{7[UlWfb^D8ÇZ (6`LHa)ů_[ hao14f"c ;G>N[Gyy͏?,R;<#d1s̷ s9UGO^:1hPs.*w/Ewjlۚ}_;Ӷ-]`Ydc!=&^Ǥ ձ'e#4wk4JQc:xW~+RSTll\jZ+=IG*{3uG[;D ѥ!/[_Z0:az(O w/a_[cp!B@+\_ZcqiҘO8ex~JOUyEiq5/^o9Xgbڧ+ w!>^.}:(`KoAI?B5;8[!v Ihkro2"!gPNa^%1..P! ԧeEHGI>5TgcngN5^%HS]g /j!1k-f]NwW+.շD!+ơOxcouܥ& )167,RHT4 9)M# +hY)uI1ނQC:ܔsHV*lK!zʁ̻ 2^@(,m`}nb` X Se*;8Om)E,|T|q5w/ n ^H`F J27:s88 }Z!W]4 ϒ(%:Qn, Qst-z!e+{QAr VǺ]4NUu%@x従!q^ME-HI-(b,AbR'9t;֢F dd'?l`@acC,u.>"ၗ>u(1e eĻpJ6,c}yD%M1?/[j@$xksaUD孄Dw`D)CBezM mM5yC9N{VՐOfۃIV7*V⡞gߥ4 p;/7!hClPm S A=~MThc]'R)=6ޜ&z'=-v8A]ߑ/ь&,LVBI=U?NCSTQas4p`}2;] :`jƟ݆G&)`lHha\8]ONU8v8΀? %LDvaGUjWAseh<+d' 5 'szu}%@TDrd*+0Yt|0!Y R.Eey|DyTU PП@!KuZRD[o ;.tl5$i=F9M1:!Y& ~sА(JBrXrlʛ<\}Tub)j:Zp>?-|TԀfbU jf5–֞qWD_@yIɾBI-uuAS75Im2uu ^u5"mbL%Ƴ8 s/v =g܌.PZG3h-A7X'VwΔv;]Ȍ;a4KG5172,`pb[X2VUDUt"*(BC4/ͻ tKqNܨ {?=)ci׺dWS{5K: g> ^$0'ƼMR A⅔4S1p h}NX<(iafe fޡ؊=y+,qHÿz3(ً&n@k|| 9[jIX.XE;WVDe)=Қ)" 8Q jCP+c!ll"\p8Ӝ1s͗tSzx-k!jDM1Xpv*g+K_myu{No>`wqVV{ڍ>KEhkG_U9< 8M(AnXc4V8rF97ݱí@lnޤEH(YJmq*`[z}7{Ò'h>c;G]9sܶ cű~,GݵjDUwomaTLD}CHЃnI$G^]PZ.ݎW2fB0K70o[#MXQuP;5'yc'nx40Mv7evodP\IZߖ\ҨzL,FMnMͿF0ڐ};n3 zymz+Bz(w#T'k()dc|junv|C+VIHB;hgY,X%Zȕ~O)8?K M1qGl^"Y 镫o}BDC$6PƏ%O0f\vSF_R7.ْ/CIHؾz68Y/P&J:HomO v~46}, [pU|3kW[3rm m澅Pw| K6ru]tDe:+1P&:`g=Bx հTɋkr'_'d23P疻gE |#qmGQZ6cG#g@nYfZ2$6zsg!h Ҏe#$3v*|QIg`ckMVgC:ۋ\p\dy渞h"[-UP'Zqם6\4@ʱuߗ\ +$(ǖvEҪjhk hG$W;G, Ɇp~ 2%ǀk^V| 5BMK(?o`XGNA2fr|H>VOv̘t,l|mi2}m1p.£(ڼLD7U*ŗz>έ6]xbj$y#ߑl>8˽B 5~7ŞCeSV_vxN#U#`}Nc$C ~li 'vF^Hkj̜iֱ1l (e|j?fcͰSc.Y/{KBIkTG~w =¿7ďf <-SX*NivY0YW;>ԡ^ʬ\n b,EӍ'm VѾaao^*]}ThxtQO*V)Ɠ0tzwpR2*lmG@>'UbomK( q~}%o] K8o;@7f1Wqzv/8GC^5#9,v fi@n&5J}K Pz}]lIz 1Lm8Ȉ4 SȾ_DL8=>"ꆍc4ZF2L3vńLg>qQ1`h7?ig\Ѥ$݁3AXݲYmj(͡D$xЭ #׮G.im%V-Ηp/zi;)-Iy9MGc:zoū_fj/ 0q#fBd]ߵg״[WkP^KiO97ғW?>$>HIƂE ,fç/^U[ ڟ|& qqݥ/C/I1-_sXV x,EZx%6̲lj(!ȫ t(;E'fmXT0F1MQV#G$$vf.>u7,m|Y}|^&I`\< Q9'o1e>E to5I>]VŻa 5HaVDw`Wu| XeN?1AA~tw]9\RIOr3uif\n"`;]X=ݴR-eF!GngHq4I a_]jWHs{szŅzPL +Ξ]:5ϻX` bHj({u 1cQn!w,nGbG%+b6j&?#"Hwd EHJͦm!ڢC-G+v E 2F\"L 7znUˏ- }&V?dq*/) 3JǬ̓na4Ѩl)!.!k;UӘǺ2y0 ;J) 5 ШiJRW[ .c(IJ^[Q"K 1~'|EaK~O".<t$k-ͪBlpa%ٙ7Lw~+k5\ 7H: ?uhKf8ݜ/ud.ԴۧuGA>6ݛ;U8M `z&@OprL%pC2lT8HBdJK'} jB̵s^Pt>#FhE@1,rVļn)oqα"q'mC=9uD<79bb׉/NWKSWH\jۄ8G NӋAiwa uAKit*kG4nѥ[S oq y_l)@^Ի)of$kc6zG\ MXuB'xr-`2Kqg2N!,FhC&>ubS?aqN' 'ͤAkA Tltj%MŠV̩DpAYB64CX8ǟx֛ qR'/r=ًϏI!h@WMܗhƎJϦ;ԳD}_}Cg>E8/MMz6zMgO2tsȗ$؅,J9Oآ,+5睞Y.-!' ǀ%fd&&eYJ])-jXY$OJƼL&nrVb䷷,3N.SKl,IK.ؚWe4;,JfTHSGc0 j 7g/(GضI‚q©ЩDOSW fc3B-)Vs2rlmAg)KqGW9s ~k<)gkkeAY Ivpe˂6`@L"Z\*W9sQ u~n)?KT,^JM?s1!!+ 4Hx"^ۈ-I \)C^ޒFs]g8(,7JH5u p;(K.l 2b'%x P2ܝxMFVb | b!'<q4LoHE@ٝ+az=S\_-6O ;iCX1oc^7~kG6 [æVdPsQD8CKԣmw,hG{M2&zJAƕ0>a֢͓+ԭJW'HD\8Z`mRW,8]b_Žk \=B#GIckh KP2 #Kу}(4w^<`jDº/46=DUB4)v= $X qp_&S]ӫNP i,A3)~fRzphk>% zp=OBqZtJBD`jDcv?f4BRH#Y)wbF9~=ЙYd\b`vA} >jˬ8u$g?E"&$t6劗N%,i|G/%Zo$\Ą|K:[1<mG.ZMms.Bd)T nO-o)(  Ώ6FY.MH4s ^PpvH\5yH._)Ja">kN_R޵4 sYiveHZ?hl??x0Fj&|~ SØ~='P VyLgSk} 7tƔݰH#x/DɍL:q CV8~d5+;ΕMȨ[媒%@4(֧ ]fWыJT'KLl8+G )q(U<3~|]sgxumٯ ՍVcٰ)Haf,狊7mЁ+/EE$8Ɲo^pz}yYrXZ8ܚ,Y ϼv/ͶKY^;FWFEʕ7q]{,Â;-B'Rpi^ԝS$fܫLօPnގ6/'˄2dR*͂dk<z)w3GK>;*"'YUEo2.ň,fGܙX5`۞-expv=e9O*Հt&mE;kΘ[ 2dͅ$B?oi ih'嵡Jv=jG7+l`l{U*:_crWM7'!rr&3"6tL+f~HXj81 Q._Ms{ޡFVDGI,7UGδdLTjgjn1mI"%We+fbݥ6W̠#F[rƂFn&." ;3{I~uԉZ..It,eW2ޡIJ +@_ѕfN|pr̺o=$yO`,9ȫYH %a<^dzc&x>PMH@mi7"n*n70$JisRQI7 J`IuXpRϳ ⟵dVMd&vWMiHe`7x.w%gl}TPeeN9+%ϙn,'9vøDSԢ5N"j͈pe#hZpCwcԜĕ-'KN~qN;W xbldċK"ݛ\i0P޲'}~,ł7jMEƍ!ֻ`{,EjuǍvIX#"g+ C†όKUL6"tVGozx)mm hP^>H9#]g@?7Q+J>\1z\TB0 :qVV*%rԶ#erٶȵqgM`м̙o i{1-#xU>)_/!Eu0p7! &*` ]?Y51b Jj/198,-_ː͓rK?,=3u5Qx8 n (Ͱ4]X*&o)OKm*\^dlɞG@$ޡx8BI t/yͅ4>z^oш`9rR:)ߥyIft3vU1M? ]C}asxz$ߗ 0~9@Zpj,eŷiaZP`>E8OC ]So|\jEMؾ?*U% fu[ɮx3M(}Hd7bP[Љq_AG4}Z~'gCAzy69j/1&΀j)fNkoKuƸHټ^߾N29<wیM 9}2?p#r }5Ų[GP_;t"9j+gZ;t=x6>FCEDo 1NIbX<KQCP>L'Z#B^se<< I{ dϏvCHͷҍ`'"![l%nZ0sZC oD'8e/))=S\\OXhC{xK qXxO1: 1r~rRqtr_)7*nqpSjEh$ʝC4tkfukа)/p4ޱʝhۙŢex;QD&%@nM"ȲJpx:Jy.{橖jM4-H!+R:/^{|% lK>Yr{bbϿvӯ c-Jiaz/h@i% m#End=7-ӁEdR[ex6!+ =5뿢Ei,LcIkY5u59w?8mJX@dA'u\wfɥjދ؊flpgA`#-/Hc WL10վJɇa{q>+~5#˾%enɕ k;#H5q&(S 1_D4g\sge(vE)u_:lPO&Oky"ֵ9[H\#7 ]/G 3B ]k0Qɡb:243V[WܜP ,K!%Vc[֦ɲ˚D;|M#eB?pY %Rj@ e<?]wY((h瞝 E0X͐!2g; =rz+B rH{Zf'.y@*΄}EnM|N@zm"^C&3KM m*0˒IXTBؓY}| tyeO@TA8r8([9/^9a6f'2Sl9āC9B2\iT9Ƴ.Vc,28y?7=~q i.OnwqY&G?`ׯ_bMJPkUGg@ʷyֹIέ%Rr|„;{Z&K Nl-LCDw_li7 Js/sHC"Pz߳xWoO|.Ƥ6g9ԪbL"y·ٵڹRƟgi4N(;aߝPdS}C.Q2|Rx.|d#3|bFxaHV4d-N?V֕SC -=>@ Xq]h$,۪\A@:Tʥ Άpu7Yw~xx"b֜2S%k1!I^bd(QKsKT^3Q03V<·%;@87<{uRcsVw*a?qCbwnDF+%=BS'(Re\n,g=T. )D3c#T@hd.v |9{`[9 +_DAY ;_aF XlbcC^κu~+?W[)+i7VIELEj U)o3)<\ھJmDC'X7o$1+'ec֚qEsF_9Wb 2c@f Ve;wr?ʍŤ%۟`oLBQhV,vgx[;[B~'ͦw [@6TOf:&W6XM 8XI N]l~-Ԅx3 [_At 3=$~Ԟ*>?4 o`Qyi Hߴ_Zɖgͦ_ d( Wď/pEB}q$5&g83 b+$b>o4-T3ŚhhOCx+y9+Ez)Nj-䧡HQ0 F%4Bhڔ.uG۪Vq.ĠJwZV#]ҽAuJ|Qߣ3˸=T‚,qr[cV@HfXH cڣ$>9m f]΀Mv98 #@a|<Rk 5KS#KPUtH6PAO"2ntdq] ;ހ z[HqZxE߸y}͔k"͘8K%{<>ٶf.y}ukMuw\ݒ \V`='R|M$ *VcN嚦Kyhy` ݌8MZOGQ\54g ]On#o:Щîjѩˋ4Et# % 9P`K,ќR.ou@j9A(~ -@_jﶢUUs&Ixe*f o[7* ]Ů3 ogM>9LY΢PUyijV`y>9Wr&9.rJCLq\^Ҟ'cDW%M6I<<բ!Y'g=ӵz]BND@hHzdw/D[=G\'Ai&*cţvց7U1 n1@k}SKFdq4*hUGB췳<6&zp4CbEboE*kVpZqc$"HHxR `{#gìZh c B%'.O 姻QpM("w0K`zlmI3d5 mxH|=]>yv{&%emQ>ܓ1l Md7}( ʕ sʶ)Nآ=l&gp{Xb4y)yq B79rx+occA"?s Qi& ::d1(:.ԥdcoLqMS +mN#PTTתN+J`Y`m5{E [loBȳ:9XvTy.-ƒ]Sg-fg/V?mUĈWMx` Vr;~OtHW8V~ |ADW@'ZThj؂7=US&I'WPB(.N?Hf>gxiYlashTeXMn$I|31Cm9pcdx7,\WtùpO*Pq7C#Mjř);f3GMKx}JĀJMLW ّK;Q>r4;%Ã6y D s/M!UMkRjjH rp<2һ[ɥyζy:"`:tI%]NpJ$G5x`4j\Q\X±Lt"OfD2 CbiQjHdd$TR-ֿהaӞ8ώ,2Jvʥ b,Q.wN9u(K3)yqT$c~oꎘu#4.Wٚ:~6J\ \;=ׁoQT9ӍcJU1'jq6;IQuL6QNCMG:nɓ6e>[#XܻPRz^ri@ɋg9uJJCWnD&};>^kBey`qGVl꿭yVyaL LVnJj'0,ϊ2nl[w%,5iF<?Ԙrv9C&xKIf|H A嫄 *ӣ $ C'SCcHź$B(lVN.Ǚq}6{xix+;,Q (}}ږI8NA߀7Kan)Ɔ0 4g7̃6McYwehaP B_*pC-Ȗlt5tWN/#_ބGCzZ,3|c4Fg畧i :Rm&Ap`ԼW s;pJe{i9ˎq<>кKaushVG$o%V)thM~b <_!Z8X͑4C䌁Hh`]Q| 2zTvOͱWk`2BP.cŬ-em\'I&ԓ s3hz5uN`O랟1htBfLfy "6 eDcl %v=uZ-F<9/ͥ}S|V13k(聇k>ڍr-~u8^cBVCo8ygG~` ͠NJ+R&7:,h9ː-<{0A.0?n6{~qg܌ a6 جܸ?VTL{=ȃ {_,Xˀĭ=QnfE}4. \2+еY>?%V'/J}LUEʽ%io7|2"= `FdB&WzJ8XR%E&j<64<3MHݨT1-{?(fGXvo2z"&T7>++wr,cf_ezkUڊ<Z@엣^:!b;\Gaj7Ns>'pFv9 ?9Dv4BWWBZLG(eK`ń%H,qT_654J"P1kCL NI`\`pY n#R; 09"?tTHPոߎa=8^}>P$LһT\C`e[>yT]5D.uMPIXES(e[?2~Sw HI,SլUHs&š}KAO~1q6j!N?D$[3J K BF;A093pP6%ΰ rK9oez&A1dpf"-?*I6`PCh-+/p:cr|Sb6C6E~(Cvg4ܑL" qY*` : mG#s,4f]lfu֫H2޹nIsj8d:uwF $keز*EAO$$_ ؤ*5?F 7 αȰkˣˢyOBjPg~6RBi[9 lv&hw+ΖB9^L[iL#Wj$7դj'N4鵮YDw^x9'-o!"E _|zꐗzCFQ椻 .pq40/y,a]kSj\O+q2 T%ic01bSCdt~pI50wo&O/ m>Qv\@55xu4LjDd}X˄M~,dI vY`ұ0QϷ qF%m:pv\rqJ!*:?4{sqW)JJI0QYs=)o`,F}Ł_UNJ#_N2til8vnPcUX(O#IJ4|8PLQG_ h#,jI0/~-( +C9˶'x/oZjMzPJ)C94Cӧ5;5>/b^P<[O_&f(߫B{1l"Tb]drTlw֚͊gbmԹU$jToçW 7W{`B,S{x|C ` ^[unuqC! &io(!Ģ]q s :x)Zn{*x"91xߕΎh}:#׏#\#@#֓e*a44bP.-{#i߮KXܙ8]՜+*h2SB 6$:ZT$DL:T}'Z~Tq6/FXklftBl>('s \5<*(S5Z7b|*[P:P98h\u9UI%$,#e?tdw3({ )8. 9aU k߭^Lsyk^o@Bq鯩;Tn3A:#;85V2L43d&ְCu4WBk9 ݮ2N/]:B7],j~5fXFLYN[J.N zui?0G0=NsP2;l5J։>s9KӢ"s;@_1i3rC[bXL?V&εxNY4:,'|RI]>#J=S~]}gUA:bE8OFR1xVp$ܟ S#zbf߈gP8dKzfg\)HzR)lȧ/1؂%>Yvj|/=_9A흑'V,nmܪRBa8xq)ĺ[qlfn$ ıVa,IBGjH)o팷`]|C pڞWۂ{5(0H}Mb{U†3W8*UU)矱_ue@U4ΔJ'ӐG`C1{EhxL^̓v` 88F]'$gg ^ R#Y,n%l[jLsZ3ߎZd)k+#R,b>~kf 4TΘ\";&<텂y4&!Ӟo5|}}.x6U[2:k7v.ud*,Ru _H< X_9Y\~e\{JYZ$:2=70‚ Oػ0g/Dlqp 1D+W1;R/)YZU;IDn1(Q[di\}%g[Hve/(N0Z^DL A氳Hda<,*)fRΰw<9bK|b"B7bܱO6 x`0G^bm&qUO m^pirx'{x㸾C;+W:zɋ/a_r&܉hF(7AQ#a,y o@}&Pi*6oLIk--iۡηt (":𰛅ԣP1 ψ`:+;ӚAV){5L qNlT*YP69 :c1RSȍ9*!EKUK ,ݢ&AMXܩhwÂI? l_VFmDO8q;w쐓|G.mFqA8m(&SM7d: jIo恉r5" YC dYߩ<^S)VˡܫL35sN!OQ˾";EpKu$7.lc\;H!PՄG^v@tCS-`,"ypb;t$͌j3>vAu>1 Ö7Wv a [k7ѻބ? Yn7xh"j~Lÿ>js{\qlX=HlCҚN\Oa4~"meP,]'P2Fw)6=rpsFkB.Ssdoc<8+-!;[]bĻk)qJ,yrcn ]x"EM}#12SL>t6| "gUnp$ۏjZ-(b(7vER :u]aIۻZȤ+b̙= "v81:cЮZC.Ӕ7~d8H:]j$2alڹ]/qyo.9AgZhc% "~Bh_)M?Xr"y_f }U=4^p_K d ɽHsY?kD)G.yU/ HK#~t#h!Hǎm+N\ziEQƔ")RKH&'|P|qtM>87k`&oLNպ^h2Z pulԲrO//%ӹ)*Rjoeg.f4K'fJ@r+&W&kP6/X.xu}QB\6;L%">$DCՄP9] \ ֜&QLptBCJYRc7NF֗qV Ϛ* عj?W2+gc(Ӯ"L5T܇kNdo>ScO&-^T;}sy5c&l}ZRTښl/?N`y.Y&zGkF-yY(%]ƳYI^oLvяd|0T9)2M #KU;ˑƱtw|S_WǣpXs =Z_ `qwpxD%ꘆ\5#@a3M bnMu;˯GL=6I0m{f+6#i*nBIc'"ьP%$o/IHYH2~Ö5OU ߦA%ԤfA <&ڰ[I7jxkr1ݗwXpu3ʥ=)"o2S"-5apқ2v(L9}"\H%`ųYޓc,VW:NtGۊ.jz籿f/Kg2̼,^.Jԙ]u(1^ $H΁JRAI:d_ vjv3 P!ΠNJ䣉&9-[@\tK&Gr,{OE.X,<|쳤o)ˇ]pI5I.^!ϨW2TDDž- 5FATyX 0->C\䥢@Xo'fnPXjQ^Rbo/M=Kw6cQGGuuUpP, ~i(uDIS)qek.ǃG \B]7a1`)SRؤ@DӾ4.IClج$oW'c{T1K7^@dCUPhEf?hC{%+uYf MVy 4whn | l5kuߖxa 5 R,' 9fZb>EMHSF*Ap"x >Vw;0duܞB޺XCx馎^bEYcD ]4PڪGZ^AX04=x~~|& k?%*@Huh3ؤyu;#z)B 4a䋮i {`k"י3EVI3WuBu#$Jiœ!Ļwȓn=^8K Q\Z Ay?g4ˁ`AH,#Hp6 reOėx\S k:T%*h1F0W$5b52q6l+qҚԅKV3m۱G% lŞϳcN& `a~HG6|uJ~ MzLrJ ϙS,t,āZi v/ޞ+ݶ3'=jbxW/8!jh |;O^ʖiV:\]H=g2SkG5> OHεKW1~'δƑsE[sXUm=Y\x ]PY_uINu =AU }ywʚ<wYbT^hB -b=J1$cy>}Jf{pjJWz3`hu0%X$7;41%F ֵ啽 pAw+\0C\U6ph RgxFbA9iyj|E]UoS3>ѥ,H&$!"}T.˘+xky|wG.Pnm9)=(txl:ewQzQER+*Js9kQIyPÝ7 Ɔ˼YǠY]xSRN;C2_bK FLwG5wEK9nD]0%V](#!9bg ?Mg '`?.,v?FCDkSŊ/U}錟k71h5s$TNaA$C#x5U~Mt:|&?i(jOD>"U8˴Y% P,PcF1B_ q~ w|NȉR:Ȏdr‡ CrZFQ WnJe(#} k,FJ+G#{T.O!cmW?8_7<.C,]oS 8 PvCs 8\ʗɤi`[gAB$.Q5Nn҄Oؼ:8WԑP*K 45.5k1TĊg<=M+o`tSPEQI0pY$>81o'}Pp!$xoH'2$qmyg)u&V hn jSZ'|ωGӝӻ!8M\/J-?N#l:[M67+rH6f}nK׼C#E=8V1'̔BZ#gOUj{ta;Ea&m昱Vi=:y?RG.e0QT1'UQj]tʌB V!i9`\..$>)lI :}۠]ŅƿQ<vqxnF' r":)k)mrA jҕ EKFlߺfWTx¯h]Z~f:,),Ύ I ^&==}SPh[WAeľNS۵%j3c+[Ǟq7<GGie͐9:G q6`I7%h]JK J6e!hbT(T"oXsB{\3tZ{D)='grjO 'j>(<>P+gjfHWjsǥy7<4z5x6QO'LT:t7LC@1H.U~V VXcO$O%ԽwG]Յ-θ# z̤pBz @H=o/)l*m@hFq a`s1#m+oCVUb6MmC'*@IF3w9a޽cIikP^c~Hx<<X˹AzMS["WqA`fbAj=tRǬZgn3nu0}~i |c8xpׅhmՋ}g/ar8@QUZ7 !%G*X `̃XBCp5FbH XٟY 09W/G(4Y)h ROd>V(!u+uTЯ+%xK"$F$B={En,¶.fm@6' ۓ4#joǭ** xCblvWbj!D8+5Rb+BgWr(T=J/0<~,t~MIvObT51kx\ RK ԩwRGÕROR>X̤;2 A52;VaHU!=aۨ@;i'<)LLWƶƦvHBi߮1hS#bg$"LKiTaCZhV[ L=LߩweL虓[WWiȎ|WuXR J}wDs 6$҄m >ᗳN"L4t8^ `_ =ÐzcKF6prҔk7J4>Qr5 y癩vVD6ڮGye/ƻm + D^3Je@#Jln/ hHWkqX>BhkuTB_ Q}4~< 2Uz",ˆd y! bU5tvǓ/@ Y$VXw?IZ-~}j)ep**!K%{MkBs9#/WZ-R-`2=v?P!RoL/h7tqe=dM/MzH ,&O]YapyWŏe }L; oT~~hI/i*S\k"TSf @[W\?DBT~:x*FN^p Dq6+r x`>gUԎ/Xҳdӝ~N]W{gPOE=Dб7j'd@hW0ȴ'OoH3kMۮ+uۓ&1D`;HXYmͮ0A AC[#T[qzG~㸲i?E ;[ՈK`^sژDo[菆UFT e:8i_䝈U"TkI=Q'dnoQ-;[ICNmXqzwjj\EFRvXq4$s'H>ԹCٸ ^&G)AO!>@rjn"jN +7SFZ@h8j @ qʴҺW*qtl^̼]$ynIM.`kܙvTqz S#Y"q9/B 0H#?VTnxzKaurQj+S}~q:IiQęn( L}yF6 L#rIԂfN\y6Za d"&B0{d'{(+Lj/Gbښi䠿71tXw&ܑnR@1*`*'3bUB ZS$t俀~y~ j'#˲̬^% 9rWQFyBAQBgzPjH|. I.kQx5R;*GfvdgWieUI9@N<g0U ]0>enux5bdv+KTǓH=|~J윿'o;׸/.=r4DGf@gqGZAh 8q9iT-Ų";Iuv^ђノ)؜!^~hQAzx&k]/ )Qd?UQm< a }V 83đ -Qq"i3˙%+x'|qZ!\1cM%/nIU%%xLO.\z*P[M<8*k1LWIQX`]z`ħ^ ͪcOre5U{J">W5[?5jqu[C_GT7!6WF/V/D) sZZ'3iwVh_xO\f4n後֖6n  TCf,<Iqs;o$b@kӣxO[6\ OYls'XzqN -m:v ٽShiވVBxvVyn_M fm8kJ8͕ٖAK8o(AX=)MGU`G2(~w{{׏nK:}[5C*'qa &QL X1}`\f.b'},▤}q2p߽ ~qikP 2ˡoVGdEz-᪐AS0,vadA{j@#$mW= jeHJ^KaهK'~ &lY CUoc}7]@}ΩE.]%x_ %'C#~H4Y/݃p18"ʖ?5sU\l6ʤ`zb(-L H|0t"aEvjx47i0Ҷha Ut=h</ʁ#(h#am!ŝ_Ľ-WD|ᇐ?׿f%R/#'Vm\V'VDL|&54"'8|G" |Ak:*$YLg/BvRJR22J@ .s\qJ#,/Ui-O2O}&hVZ#}M9ˢA,dC+,v qwrvdŧ%r|mTӯIƔEˌqA{@xnnR9әd_X%pTEx{5ֈOzH׻TLB[H=E)0wR*7] g~ K nv5QG=w?>WeBA8L<Wƀ80Y)껝>$}S&ފvF}8FŠGIjhI\y?$V6 XEF-4iqXXxwsVOXdZVKP-(#Ek"%eSjg>/:yڊв׏~yfqr>u*ƪuȕ>O.%=]S/ngUWzOΩҝ4qؚx|gO 4)ZTehMo ?# %KՕʈv Wx©eɆmm9JA֎|)޲v}0FF >#ɡ()|+yD5dw"V JZt6͟ax|eatH]~80{Ç5{;֥0X !юɩ}|_,QFGnipLڽJOVΙn#\^!<V=+1#vvwS^h @+Y)!N(E i.ӯ\Gy)M<. KW7Fj܀κUXoOS;gW j]:AãR%1CjB0ͣk~6{b w1 %zj.͊E/lplbN2XW٠Q^w%PTη^9`ǽfWD2k#@/o}wG/+_*\9@Q蔣\M?~f l]j7DIFڸZ &(}.Vl3Lc۬ &4ۨqEmBpUV1/k}9gn\cE4yί *څrP'uJ (&{ ߥtV|J(սIIc~Z˳|GC:B掻 Ho>LeY{iZ\f6}c{/:آ%~#aa㊒rWZSg\ָ^-xQ9O=C 'iήЅƚSJ̴YcX*Z >A|/T"Ccb`4bN\}MԡGD [pENEw/ [ɨ?;[5Om 4fp(Sﭭ~o[u_((~=G@LlFy/e-= )#'ƭLKTIMݼ? c3By$YXL(IŲ- <ߐur:Wi# Ʊ4%0'8\ ]~8 RkOEG[ojQ8b)z۹t⋷Z.N9.*U?m=Xf\06ḹL.fnCiN{G7ЌJĠ5(xW틡@¾# ''4̅L)̜z= JsfTȾqcJ?|n UuUX`F?Hsq<OcVپnKI濲/F`ߞ!$WM~NdJ@>xM>6w+!#]{LdA4MPiqdy|~Qw"slRE7(N+Y!jl[KA?^7S|w< v#J~-QONJ.CMRSp B 2YVjIP<ݹ-4‘)h; m6u:KSGK-[m\d̬"ZsYE=Ȫ_΀UKxed={r*%ɦn 7xQ]ZS-Wi`0;=|Gip aM3P/ztsܓbtz߱5 v(VuK%,!O{w7/.bb"YSﻪEae`||v̞w [m'AM.φq:IsrcUTc-q\<|3$qbKfXgw+u2nvLrReUץl.Cʴ%֮d\-?JvkYHU |0 6̬oaw-rcy: 2>6+ 0my8x,a,4 D`vE Bq2P``.t#xJu&f Z I ϰ9or諒yIdCȭV | nq0~7CBt3̕R"WV,F_͋@1e V&wm} QO^@}ehম:F3pL*B4}b.QǼOX7 V_?8V _E16R)ޓr i$/baWTqA.=H|6r8Y@ OԯLh]Z5"?N )>v[:uU !8# AjR ~ʏXA+x,lr7 A|sGoymrB uVHAa!#~dZݽôi%23!Nݭߢ]FrnS tߎ-+|ƚs` 6{X9aR;CqP^`몐;>w5چߺHK&LdĭG]ȴfo票^} DyWܾDi4߻:e*= d6ꈢܚ\654]o)>+{0>ܨGTʽӁ_HᦓoԽ9Rxo]=rE,ˢ*zal%-Yi❥S ]_ψ[ꃖ)V:-e:x{XߋncF,};98(ǃ1AvM`4uV/^k9|bQq*mN_N.MUsoJf{bQauVCZt 25uY?H6'G3EXF,n 是r yai P3,5yGI0xoJ_!x+ћPbbU_Pzlp^`R 1Kje uHPZE/+9kcu9iq~/O$8kcH6]d*fvxy/|7K-b0hd \h%uGvzDcКoKi-G^!w[stRIzD@0dlۨNOm4Rq~ɯZ7eM{AtGߒ&Ť)޽`E@-5/~I j7mjYӽE@}ŮNh-̴^>穌EFEdCDI4Pԓ$EYU6z4{D ߳t\g{zz!25F0Dl|Sc-N"jQZ$a!0XߝSЋ9%ͳ8Od=Ԥ$u.3ơ1fC|d\Iɯ]?Nq TՎ6D*s6+,)XMJRxQX.WP dvT~ aCZ3:Hs@ޑY?W[,J򬗝WA<ϊH0M K2b68+J}N7%#ԋpd71y^H|Y[gA$;6oxMϴRsPn)p@d*BmXw73%.!svۭa\&< 2c5L=fBA6$ ʅsʎ(y D}vk50X4 h|FUFb-a b M4ޛlrR%ѻtB$f !ȗ}={ H #7%i=b!4i&Iިxㆊ;rh=wT=,9!ɳ4}IREH\a+d[;l& 꺂ҫ?/?'o~]y/i#^]J;ZmK!1l/_G$Y"f6b5RyIj#pTN¨$)3WO#d@>4ye0GC"V>/m7}XRGjrq2_pt#eǷ63 NԆwn*X` 5;n@Kt DA E uHI5vgxnƭ}Kj.t `;kߑ夏iHy0{QkBMag3i0C`;ڵvpsL}3pᇘSS0X\_?=]Zg v$m0)?-[*kphlö]f9J>MW#竽5A_k'h>V’ST?jbno}UX[r9=1`XY^_ش.5ۤi1=Uqzʂ' 4 ܪۄDOJunqdj[O[zg=e4\,jw(jɫ+m/fKOAD JS= m.;=]|ȡҋ_57$/rFh qV1IW"E}抙)# "M$=A=4VW=u;_,i=`Ã`gةb6ϪqCru)## |m%(ZrXn!jSB}t-A_T,Ej&pI&F)G%i'4O_E;[?;Ӕ2,՛I*IyKd^h q"zŪ`:, ĮZ4wmC"(9}4sϒ :ۅ@`ރ~@$MUmI *.s2O[A/ܣ1E&Itz{#i1dFOL ?;/(׷[K:QﮌŹNQ 3!@28"a-U90B:H2uȮ&s|wrg9| 8ypԞolY;IJ _G *qFT y{()b\_m-ov/a7`֋hwDo[&`CwNB1 icդɚ[AxkGk0 Ch.V0UޟF .3J{?Kw4UeJrI!kmXJق}ZNݒ.߯8aEzn}_?J.#[V\ ]7->d'6 b/Kwx_W=iUWgWϸaoP>Hs!J!_袙L'.v9*cge'wq ?L 3,/qhί`Bc%+|M|7Vދf*# el 75JVr2[rR앪ʊBigYj#jbDsHsJp]+{1/g0<%U7ުRd .ʹBE(42W[E(tޥPNebJ?]Zhk|c"ĬPI{ߛ;]3O+\l~U3\UVR0U/,K$ .]19WA{U#VܧWv zK~4XhWGQyd54_ֽ#H&{-g!YS= Size45#זM.S7y 2YEY+~,Bŝomv7ւ3T dB=6 4œTH9g{a-FH`2"HO (^˖S)_vall.K4ǚpJ{` wxc=3i;[eV]B\,OZtoK0:p\̴Z6`|4Tn{<æd{04E$J& v)TPt:+2-KȖT{iDEp9e@EQ԰ ̵$0RR߇\荻 -\{OY$)PhN$%Z|:u:m;ufZdqDdW< IB*qbx\ml4k}&eb͙\:Rr[hqKVN3xn_xʪ28ÔQ,Č&'& j ti`jRiE-^(?W2d\cΰ(]!CEpzsՍ/iko6EkcfgC3e ygy8Ɍ)j*z-tH%tKXK$7լ$~8h=d+WYfs$/}gLts@| %PTڮA ^ˆ\_%!]cnY ' fj*Wv?1zx+}7.p?_BRBSγE蒙?\O~Y0Cůu^jViXV0almyQF }ͪۈYF9)X?f"XzB n\#x_7ԛTKq:pۺX+bMBԏ"=6q ~ѧ@zy] gW[wӰAXM1i~1j"GrIv{įkN+xj}N[1BID4gõ>%s'^Goَ.;{[ # F\mEXzi_wJ* C@%@0'W&*wc Z9xsP|o&[`}W0vdM*̥G098==NcZ+Dl/w +RWv'z>蚲`-͙l-؉#}=7_Bdqм!;#Su%)it O#mԈxFv];U:_j0=?] ?Ip,o;}@MfH-ީ6.@\*_0E:| O}]@vhFBI d Z'Rúe*A1u T,f'G.s)ҧ)լ/+| URÒw%{ >dV.\EIxYwI5>-%2\qT䍹S7+aJ7!LBgh0x;QY%?1f%L/Ֆ5x]}Vv F4'yn&9_:z4$n 'TXnhw t |;):g$ \,X-8-f}0/H?P+z/nČɤZG壉ujyl\O L~0f%AѨy4noSU.%ɝ 1`wm//J,tJ,lͺKNe(?DTm ¤c-. fD?wR=[E4Qa|W v!sw=g`Lo3 SXQALI zA$lO?!TO $y ŵԴs8; @5vqp eTO-:Hk|=+;lS)9_# Gq,qT}&D \ fIaܐȴoUlB 'wU[a嶣aoDApf7ȺYF5Nъ@K4M1?.TPԝ+D(͈~ȈC-]K؃xrA(^/p5gPשDiK.C"[b 7 `ԢurJ0!@fU]ҟF!Qփ|F1PHeg' p? lJn+\ =޹q( bAĦrʏ'1==΅d&iWbQ#mVq8 L }(K 7-bMG#}1 4ݦP@v>pU#ً5qMn]DV7#c=UsbuYUfG<s f{k"cnڠ7a`<$ 0 ز)KlN U!x/l+`(>)=2pjJRRj1AKNh$ZJYK龶*4d)+Cxtݿ4!U=ν61;nmxKf7>,"6H&4iIǠsʫSj!^jζ,/ {.ad#yhJ{WO{BIDg]-{!uEc`aA 퀮1ۈ#"^Kwv_?I/8l{d[F!M@cbXE4.]c@QD<J׭%p,G+N pvi0*0I'4 Z:Mk*=7;Jؕhq Tf s]Y, ; Pak@ tH+fpuoh@woB)HCL(WΜH jz5vNL/￙nN{PmuOfa=W/&D+#~&/Fp8_aၕdpP3 XrX>7̂!=瑡 2m<ُ|RXmG-<  3 `ܒ/, 5y7kP$k kҠe|]G22U2,,)©en@mjt `& >rlk.eB YZ,e>?hiMi?v ]7w'ykxԕ Ϝdk^(jM/mqlhE n1z"/:ȅ D9KSC~퉙2"2=٘2ʼ2O$VQDVk`z$bHSo_VQʙQ CXOGg! *RfvI ?k*52 t6\aON'ѫZ< !w"ߜZ?r6I؀&aneǃ< -LeD䣨D2 Ni4!C1:Sx#F]/WxRU.TfΟ,!GG_9o يQ\X&Y^/]4'&"Zc Y+k`zs~ D|ĔuG9%!d)L^=Pr L-?._[%2nx r/J`xAWNŖwB{*WZ W-|Q"R+10{yッKX "gd*lj{b6R9=bHuxe_K۔3bSwCqS# N(FvRdt4)@N:bS>_P v^ۻ5K㑓pllZ0cr ])Rd湐`]htޓ;o_ap۾jfDG e55DI:*"4Q!A$ +o*~K$!Ě4Z1ӉZnip7]ҺڼwXŶJn2JLAd4nN6?H};s g<9߁ќ+6?&/W\B#.!(^@M[r'ݼ)5#}Df!5&VNXS{7˩? q4Y -lSG_XU4x4# KZwHB%] 2S 9D߯H(+q^7iR"ua'G8{-h]+>)Q^E_8Oو%ޮzy~Uߐp<~IƢyPks|sp~g?S!ww[.e??O[v,11ɢ첍o=U9>lHh籃DXi9`b!j$}vwj!I!\ٶt۟ajX؍k}.F YyCvXY egqg*dҸ .eyb"'c8-)GY_8OUj).@ZSeVKc/_;ql]ǵrAƱ=^ __ 4L5r{j/q:hl`keMpd1K6!RU Cfc(oC Hit#(_\1 ojؕgdpTX~A^mr8 B|ظC`Yj"~%njD6z{B9cEo4Ƀ}LE}N`c Ǫߪ 2 Z@2rLv&;1p h>?T]GD59ip1ҭ)>h"A^,n7g#88}?BA9oòs 2~s}!G4X%hNJ~:B׎Q:J ݑe'{ajHIձ+|@`eT1KLPZOa _U5"Qjs4d Wd|bE&#ߘj[,msD@önI8tze}1,|aB)gwڂJ}"iO/]&}m:Acugj44-*nǐ(V\ ,*8zhCa)6ʼv]~OmDᣩȩ @I3ɐ(2;;0++zu-Pp iC){ "5_cFQro#I5t>Y!ܮ)#܎H̓'a=گ'eݏW\Ze4ݱ T339j& l*tS-"Uaݝkpf^tkRF1geA!:pfV]7*,7L4xvaiBy4hu-ۣͫPu lmKrDgaL-LޝYIn)׮45TڑUQ5Nw54:u8"-_BՓefeLTltjڵb=| X#deԔJnuS-&LL3b5ИMU *z*4 ! _E1 c6ToԦg `R`,f)5Vu$(>!}Uu9[P2VFj3kzμDnR;U|ux~f1ViTîjMn"$- $17.;nO:SʧK E\Dz2قKw`oU,ng˼a&BD;K &\Vo/޽my&.(;iF.) >OpdfjOr+ƗY.ɣ:)*c=V,>v;eo}'{CIDSsߓ. f"][QkM=74MI^0sM_ͯ{ ,BI710;AftmrDs8Y:ʗq-8Zrn$',t -8yfU.!jZE{zm1d u6nP}-d@1i@h{~"M%x#G,Q) t?Du\iupx9qoG3fܬNT9%O#Ke9e:s4@N*8lg՛<~HJNċrI]pO5áw/_m/Yxwb u9#ќгcN"\ylXmY>}|EoM0rHu@/t(#AptRTzh2m`ؓzfy+aN 8U},VQ8Ÿnn x!uo^:?i<8OyqTyy+_C} xv)-u1x-Xn‘3Jp{%A,{8jƫ%6h''~H/O)@/C}05_rqAiv| '$: U~BrTmT t}RbKx3bRTYE qC`́@;uӶRUI2tAU7/)샒p! ؞Q$ nrN 6hTv)T j׊ BTCghew_#g$hS9\1x5%#_'+'4vlNx/"$^2~/OmܱR 0wҒ#DpǼ'3q=*EԬhho4YfdpsECYPO12G^/e=[4׸겷SIk]nw2׭%=gUV5܋e vۇ&I)`@vGwTPN{Տhn>Cs3x/q~`G!. J$\X71*Ԧ'! 7nTxJ.^_}]zh%6FTv2ތ3fA^";f1QuX,NVRC52 zqYHpȗlR@ l5'3BθۃtԭX]sfUTY#+s t{X Y#^@( 1[ 3 o^dqҥݻ U P 8tѰ@vR <''DɕE2Cs._s_"(Ejgb >3/)Pd SaT˱eJ_ZI('vgr? ϱm{UevN-,wT1\H* 0fl5񊊉dYw A< =;;{. Ǜ,Ati$ oK7  JqH!gf3"usDB&W9T:w?M+beϤVrȮ+rJ#j6^7j;n¾xWfi`qU; )cWZ=Nm8VMQ3SrH+4UH]o$'4]fKo7Oo@uwat&>C-yqH†hB h7-`ANSj6D&>69 ҖQV7s2n-ə:X9p`ETi8QPId,Xlx[6ڻLjs_k6كog k=Yn -f7vz-$m>H*d3`E^\rMɆ&!epۤO Z3-s.H|MLL\̪-Ggc}ՙ}le Ff0;T1,M `W "S9AGQ]&m$ 0rf;%3KW 53PjLBɵឩ{A,`/%W""" k(OIչ, %7\ېֵ1,vb_N{|~4D(Vߢ%;ʡ"Hz9%"HFZQڹHtHHm˹t &De%<ؤR3:ڶEȌ1x=kkD }I]I0`n}OK~k T,99[:+CRcubd~5{9ޅ Zf, Y C&Z= n0lŏ7%g.(TUô B A ЉzeÄmrST877m|FRF C􊯌_7?u(\եwe24򉵟% SiJ( Y1vziQIh3so#IDWxj!>DH /CH%-!(ː]NU埰[3ZHu:̮f:LxzS)WtŅdH#=7,,V!CV/Uܝ)1L,omZآݢzPaZMf*-z>COT&= aNR>15ݟh.8PXdxn."6*cyef;OPŽV5`p9.1kGkĒ 5w痫ܖ;ʋlnLS.EEgrin{GP?ou^AKs"jV![HYLJ0 0mx<7ת6yS+o;Xh}7dܮ\eϮC0o֠]L=1͈q -}#Qco{ dynG{ŋ-Kr =S F.WzUz.Z2}ɡQKaH,{tA׉hv6Ăc{y!泰B9Ϲq;aa>fn! E@nPh9MJ Gơ'l퐠v;TG[7ܠ̓k3;>wl.W. YK9{UG})ޕE+`@[Ty?sS mͧ\M5>g]F2 YET$7pV֝ xłQ1PCmB.a#M GmU8SJ |aB׬X-^MQ^ü1_ HSw(_R(n_1IDv nTeD P9KpB߯\K& "[Egö^her(4=wKM{~ч =[{*|sn-0\e7igez*D=~i,y 'D"\ZDiI%ϭ"y"ܗ2PbF|w͕4JIXhUBqU=֌m,'=>Ѻ0 EU*]kપL̹̑ DF^ R#oĖ$h+N٠T_NY VPY>M_QR'k!"3-ω4Otq4Ћt9?8jkYA"^W6#a:Hъ1n۰D[5Fm2uTz,؏3?Yy6w:5mr5elf-{nSn9Z!H:Ez`n40ۼ+a+v6q!Xd/&[%BY3/gљHb_<M+~(O _b$h]q/W oRgx.woeE^b V^RR4i*f*XfmդaUEnw>Jk0dvNݑL3Bck8zl:_; ~lh*) ˨NފS$Z'qU;PP l;; $5C c7^a;8& ג"hP̏P"9knz nt]€HJX)g3cGѧ&د^/Şp 4lOErNm/\Ycߗ0o >:p¾5}x#֫fۯHKue=i#,5+ʣhI{͞2Rd; +34uQJȲIθۗ:ذŠ7y4g;Ufºa |B)oNdM\_zȷsԺN_`5huOQ}|5i0op\ID\ݢoЧT? #.";xXkOt'k#ᰎu"]TbqUwkǏ ̢GZoxn0*>'"tbg7,n*ޙ,W 2 f'+$Fi;>S,~AQP)Ob\;1srd@9v_6HE'_aSr2WL,1#,ATy#ǑG{m x"~yЦwt (}QQ.݌j,0x"۸wt'2SWJ!@}@k:rGE/Va[XJi䩼MIQrǍQ1+eraVq1 b'UR&3Xkrه6nDW-Ha+TRC?jRq=6^(oi8ZOEC_c2sv[>NAb9v}.[D˩2Sdš4[Y8+CwEsPyd\b|4Ϣ_$`4 K.JCGlp o5 `LB3[c) &:iǏ"YtG` *VS61µuEs.5:u_GRxK:LwyL;'9*}99e^QPI or$A4qt#$i`͞[s^KnkZEApGQ ؤa}rT\O78kL{a8M#AlšEЗ?2qK!rQY[% h&Q+xrzq}.+Z)kZP3݁4f^.wVM NlH_t,kmPءc{؟+ c M? `r9B]WYT.%}pi)qa"x6U,r EtDL oéuVv]y8X\Ogϧe5ڎo7WmBfYWf[~,AܢM|] Fuyr~[JZ5l1Bvqs!BՂZ&81x9F(4+Oa*4$"4JݟNrX!,.j"{:P3>-QJZ#Y3M`[ʹ UpB T׫ c+~fY"#LlIo)#QFyZ#&PUߗ)T@$\QvMc+ Q@odl%k5>jUԃQ.=hUa"t#&>\߃8Fd8XK×a]WP>In!s%(` ;_tb P+3.B/NhN~cCD^w6܈ @sw]NquyEcoQV&EGXćBE\nl8VV%킠J"hV~^qC5K]6&%k, Ի<&‰xi:"Gb!VXlA2DaDu5Ul)t|UJ? _&m1b \eU7LkR`XWXv{]TWßDn%3LlO2?}EhxMyu#cYY/o ˇRO݅HW94ddŸP>ϲẔ\VIV0S|庴ϲ| v-]z[T,NYI`V+Mr_>vj/d6+*a< ʻB(zX?p*;{ fJg]]a1e ,/w| /W<&KP@-yj+H˨8A^azD4s#T۽V#NH-x5[<9!6%̿Q7_Ir˙s8K #4Eݫck !B6t% R{tf{H pf?VF²tB Y/)<[h?PiP5*cY,N`خKPg CyjN$mm3 5+NN,_v2den_^N,_&Ov`5ijUs:h(\H[{Tl 4aAØB3ZlY3q5Z$D -J+7>Q(ǣ:1!rT 5Wˆi̕D`ښ0+nJo_7JLxu\&hs y@(J{"|V8Up%,~ J!k@:˶ouН -L,'8AGnŭC v La oM^{T M+qʷR.K 0h 0^avw\xśW nNQqF8&76A:G;[+y¡k)o/ RQ'):_`kXii2QшzcOsO.9y}_$;PŽ7aXqAŸrtF4G5w 9( f E^.aV}n?v<۟.ʌsB<v CU+"KCmKEY *[ tz,bb&;w=JZ=VZPL]˒ QϨR&PׯmZ8E0o{ˉMZ_m'4r^a5E ŔSKB` -LܥMP_?=ʒM5m/a1]Hܚ r70bZԢ ?4ߟ1GWl 7.%w|\$b*,Y :H3A;# >J>Y%k qɁ+/m=^{oK{k p}cӷY^nAeu ^Da= q#/#'ޒkz46wy}qXHi ^nZwX/F0ȑ; Y{ LDh7fv~ߠ{0K:@XP57͏તf%UPχdri_1wwV,?BG7˃2DNNϿʟq,Yݾ9Kr; 4KYhv ntMn&Ub$E}F.Pk2m))~LՈO@H c(s3'1PErA_LކIelYa?KY&߿sy+JhU?6ݰ)7YQ-& VA72|P%R ƕ{>lEOIX5愞pnl@|x}?+A't eR=EUܳ`Kj#u-{7E]#9 C>Ol)l5ny33Zs:v̛Cdč⼳pA+J 8L4x-\6pc*0S.k ]qYV庒P2ġ7IZf?;ĬxUi m#* : gr{#_:3:.Dpv,DjG͋C Ϳ]|UP2Wsj!zYo#M ԸAU&q?I,f#zD<+~rnp"DuÝk6%eslWϝ'Fת[rqᬿݮS'cwΙU_52Q`qڋ!k[au\]??jcv|ZgM\HX6xܒWTs4䐭ٸpd۩`az *dft/ QӵU#H orQoxb-Qw ~JՊ-M0"K=a%\Sٌ`UJ\2>|0P6+OzAR)X!|eM ]ݭuPš#X+]- Sk+Y81V`Xgg~vDO}!Y/Z'XS<x6R5!'!46𲀑gY4l̕{F(R't@7htlvOA{o3nƔXbߋCr{CdGh^Z^̯-vtCm o'бOy .Q7D0h6=qb??qDgMjXɺ&&`V䇚]PtqoHq+ sxVT< &M-_̓ [^6d#>s;;xj'wĢ[/6@7IhK}N8ZqJȎ{ԏ(ewŲrkS0kg+meldmnyQ*n)%_fL-wruT>4LH2U_=*"==!>?4 /A Fi>p:n=GV6'n7 yi1*Iڠ(6䀣׮)@${R uA4[i=~JMEhgf狭il =uކ$4E)0`)ѽ}6F #,u]D+ ˓140fT](n,/&?/On+ӵT@H4H!,0@z͍D|[. FϘQuᤠk7b}!,j5_D6@]\ARB|Ŋ\]2Nw2~$`V*ӄS9_EsNF75sk)]SE?29kY]c!(>xkpmRKyV=9KOxB+hC%QB7CL FWޥ<)y\,>GsW)OIsqeϱ@{owɵb2N|ƒ3i.꿸/^try(^LuBBŪxsWSM? S|}]W^G cj67:XJ "ȸ~XccgKE< 0E?5tSn3ZK)?pۜҫH|=8e~4N7z ywCg9ZΚH!ag #g,տ̞Di%$.:iOK`~>AXsHjIb(֭hBw7aAV=fBj+%J:,e{HMV=Wiy:1 Rח 3[}/vװ' 21ug3T¯Gi]0LϧsWD |01?K /d$uOewα۲cgIG<ꟂDc _95(_ -.;c+*m:NDW^p|ƱP<՛Hl9J~j֖q* 4ԤBYXGf(@d~rъKMٌ;dDuك ,qeºȐ"`4˘Em1XL+j:|B]!Ov oGN"~v%kSdoBF< f~|Yq b۷2يqxm7\u)<RE(šBR~UL܆|59xBc&qmtuX~00"U8< (ZcpNd kלX>0j'<0ă-! q<ZB'IbiR٨zN@ҥDJ3$ qOP{< 0[0T99#5])C_~fkz!}Ak}X'vUiIpXbߖ8׶Cܷ4\~ٌgLƣnAMcJp6u~ĜY|yKM S@&&/8\tb~̂F*'%z ҚaFctHvf42Q͍u>#I-6Ia+ciiV4aXh~t?ͦ}[G/Zs5k_uJ[Za"Fdv+<,DcDZ2Ze#Юn^[= "(;uOFU{!Cug2dS"?xaߒvu-V@X|Vcq>*2ۡrb/7|nݪHElvaL&mYJ@잃bW\D\29S#uc6'7՚q|H3+yZ}^krdwn[IU]Ez{87ns ` /O%*Uo$VFG>( e]a`ez-𫠺F<;x<]2C˞'oOpDFMqtCDcl y ,|Nʹplfiƒ}^ kf:|YuePjg.@a|gvkH(ROKyӽ"`MysH+k=7Ԟ:Ht́療<LoNaQNQ.g0߱JuT݃`TcmM!^`벲ҫ䄼Ƈ K9MOIg v֭EvwR_? pa{R;(FiY[.Ђ笴1Pjx۔]fj,EͶ- PXdIuO7Ɔ|%xoFJ}j=Ґc_zI. gzqbgM(iWݼ)(`Uj{y U>M{/VOaDxL7aJ6*h0&KdJn`&4l,$?@tM}d 5&n(jϼ(\fR;U~Ic/1IB"Gwb51Skj @?A˨!PҀOx4|5#rC+~фIetr)󪨉!πab'v,Mjv;0N0cBc6n b-IJFOq?ZB<OIjE1%pkڨk*/yIߪ$[ʠD~z{u39e׻ߗ}|1צaX^T +5@F %)ʃ%V*K)X4@+:Zy5L"%b c9tȑA. Y[)87zW{Ml"oOFi<{z33"yTzIaREILCZ>!2ـE7r9߃0;wس]Njgij5f$䧜gڕJ'gig%I~Z@5shdƪQ ԌI:39ݗh(2N`4/P٥cO'q .b(jCɎbLqq0b>膙ey`o^GWs_O47iXx\:'}QuHXb_5:yD'h3_xߟ/̈LE:6n WfOϞbNՆ/? dZ6e SVǹ4s"`lU>ՆG}|ldBEWH\WV`϶hP -V$T]*b]GpC|I&V% Jq'ب9ȤPKȅv@"Z`t$`ʄ +r*81ӻ- <Wg`C ]w-UN8@XbfDYswì]lӽH$Hx &y6Hazĺ#g362 IŌL8Hju2* $38mjtL(_l U!u%Quu(%e͖?gl!D&h=醏Ȩ4`)0G„O8VeN\ HDnk@1Wxf/~sb sTb~6X b 6H l^&ZRW4} -ta`iizi_k+ji۸E~2y\>\})ltֽ[ ޻H HFЀ5`sa}E={͸ g]Uͬ|!N=[k.n&[AMx𔍹mOz]j&[RLnZ YV&I&,Y1jC𧂧k`{4S33J 9;0*Ԟ45-R2`Fv;ꂒ_Gb[HڪIz%5_L{`u& Q?GQ_,/ڏ>Tr՗vMZ\DDאNg6S7~ Q9^BHT 43זӄ+x=e}s)>:{ K :.q1/*3MR6(Or]LHgB3j0c[J7¬,cD>G`FXvgc:xiQ|4Т̽*l-}F6V $7[E"pd (ɖңgj>qzN鱠˖<v-PF!,[y54c AZ,#vP^Մv8u\דe?_`ũ5`Y.:[@ \QwiWWajsg#B>G!ӺX|o#zym BF«5 !G{ A@^aAG-#f+t}cʀR[϶߸]H!bq!K=eCnYQٟY{94 GQq,!XĿJI?/oq|Rcyz64U4o5N\=ֿя0Nθ%jlOЪ\R[Uv;=Yenl.'9$y_E;^i~uJϯW \Xilz^vGIXW'Y@ 48>lzUn:̗__5PЏ+oP:@5\INd4dmf)0:aɏ@ 9`(rʡd,3<kQN=1Y^>?i>v>!uso7oZz<;Q1wVPd4M`edb RLeOАq90^g򓄭}bC3WCh} '}ӆr䝗ϝa!6J$l7YU#ʜadtۊK@/z QM`ƍ5@=T){fóƱwzBRS(Ո!Qߌ]K09l'pVhYv5M ¼&l⇳Wm&&d3h+tb3 zP t`Ғ adVrKHuG;}ሓ͏Uєʍ5V:uL&@Wx>Ɏ~kzk0N)8S9u&̋U )UO(|H =yXBj'H؛R?nHyVx{]Nm sЭ%}=PCM\B`( _2w+hd#f8G. ]ƺcg3m,_pZm*eyҩ3X YXt&z(-sT b2!0+b+11qL~R6֡Jlx=1/;x0#.VdT2ZIOH;xInQ^U68KN }5B|@@?2+1yZ-<6xJw{(2+sST1ǔ'4s,5ZJ)z=v6=/m"|ZmǘpvŦ1ʢRhVaZMna 4c7O+o8C+¬OVQ͹6_صh:!4v2zh_>ymԨ2,EٽLDPĀDt);`bKn"jC<S# @E @pyc4O U-䍌'_9㣲j쓴Iz &7T 2hjX{}ִXΚ sgWe f@W`#El >4dNԛQdV ؝w?I 0 H^XȀ+H7a[R!8Ř lFc /l>qKϋhXQ_1 7P0 [ ^^;=0'ss%@x. ᣅ͵Fi5լ??cLO`vU?&L;2T0 8~^yi]_j}XݐNUyN*NiB EshEwYj9 HO*XqXxH3ίX0S-_2:A)( rAdnt/ab C=7pWo.Ub,6& 499j4zхw l E.Fcn`:tb];m0S7t套8תKM.zNDm:v\xDYZ)2J'wi= ܅V u2~XTE7S RJgc ,^ kĢ[o??uKV P !rK{U= Nd(0WjxR%.9ώe hGa/ZpWk-tFoKI$&gNvo}aO}y6*G"8HP(6)qm8bv-tyK t )-Z 3iyk>2NpyF{W.#K%lL_{4&S(R %Ydd4b0+޲ԶYx9&;4*kx0<\E ~p햙$` B;zogqth7=81brJk PD>gW~lE\#%|(g0O9P폜h,Mg*@'h+P[^4j |y!foN<?Z)'lKk܀ F/@aSf],&?Ľ>-g.7dxjw8mˬ#8G,ό X4 !-1?G&5 NžXzO"Fm#-pɮ'tVpݮ%F2Mnx[eg9F \;^Ỏ.m*2*ħέjx-gAʖbz}@B|L^++rT Ζ֍G)]2bUhȴ47jDiWv%0na{LV]ux J6+(^m ,E̖ ŲT-?U"pz>`i)a0cHbuS 3R { ` 8 ZoI.zu³EʝB9V֥1nHa:6[2)nN-~eR+0 ^saUow??'=*9 n|k˙d"DOr''tR{|VI騹<1St<`V2o-hgЅC1Ơ=8ChL%V_hb78j)u#9SݗG zU4VᶮI.3[ `Y55 vbռ {u ߤgPNR<9P^.Rl|W[u09af/DLI{Aeu4[s0߃/>1K LGF>n7 Y<:N$# (Zܝ!&}DK;\]Bf4|%aOai):tٯW m`עy\.m4qʁtT\R$#_TBуjˬ-κ#QOcRD>qE(3n*!\z]  FY(XX_#V)rw3N;'pC6=P[st1bӫ4T@d w;v1 ^s7,jnD#bQō!K)+Y@vnHNk%.5wl\ڹ.Ԏ$/i]; v|+*#|y2_~=0a>sE}N/aU#M2'JgTySYαƬ8io̽9D)Ul(26,5χȘekR+/YjUEdY}'j@ԉ~84=]7؜ xZDWr,Ȍ[\EEp\SErT}5:ҜY0>\^L% fBuaԝH&d46(f=ƚ$ӡ+=<*$G탷/tV0|CO; ` ׏ '2+ooǣrs*-b4TJ߷I.e}h ne򋖺=e/(TTQy>N֪_= yUN_8۽JoXc1 7HE''Kub*:߁C FIq7e#ȉ1Qk 01'^^]0դ#7ܟ{D*3߾wX-heP_G4!Ҿg,ɠ`B jP|1z=ģUU-L{l |Yp&{P΁hX9oEĝQS Rn~9)趡SvV\7*G,eQO4)>n4)SAK ,;k޾ث19 pST"tr{ |qdn9=ХpIuD2qPD-d;ΏٕP [%R!a[ˊ8ʌIudBke]pC_~wJA6A:Y;?U70G ήs:./~0\_}IJU$nX}ŇG/)*ǵvRV,װ ܔu 9@> <[Aȅ(ϭpC;~'UDf#}?ڲlECג$Rz30.ޓ4ݸMcNو73;:+1PGȕ]3Ia;?~S& S tM6#Bsf2?Ee <4 ̱&r}ݚS,(2%1(30#JyMQD XҌTŮE ^B,mU*1j)kID?R1vC qTXJ{p;jwӞ61qo+j#?֦#xy!4%?^W?,S=,:ʙQx)/;h[@j@*)DiAOXDj?U`P֊xP06J <xf(<tgtz4A³U*u2zhLHMK.}%^| 3<nȼN7L FQ%x* lyQwԷoK 'e\^72m>CZ@[NpQ>d"|zxFͼ>v)HK] |"6}+x~sD}qp5?")3-)-eR73Bդٽ1c~YXmkaJbGQ1}4CW ,܌*^&p  M~Ld!}8τ8M@18lK)^}k$dntCܠ;W(F FKJ?0 ۜ|T^0GgۻmUY$їU6"B3ڷNkSECT ۨ۹l"b~kSjh\\b@vfȂq#L 鶵yw3{QīEb"e`0u3/86$+z(aR,%tB? -^ڽMdP'Bbwx\hVDhB%۶v9S53)]2C/W8 srT)0@\˯)_2`گWY}(dq \垤;`i]vkYzy}@ ӮOz懞DePg6 aݛɕmC|q$|e䛦 $A쿕`5Ǧ58t.Ӊ^mhi \#8.;bݱ~a*BZ R]dj#Y.EP gC,Rn'N٥ b`W!&2=\)3Fb2čyphÈrgQɈSy|0A}\,PJP. `;x>%9Z9!k6j~ͳe6M" 6 f 55o9 \ s)]JwPs_9YD̼z+Gw[<Ž%#/S7Jhm &0 J `\h dEEj Zc/5(V'  MŤls>啅/y(wyEP`) n}SkxCiJꌨ= JuxG̻/[V~)Oe鍳$uoöVv_L2!J-٘xkVҀI3z QO>y Tr:Nǂ(̎śS21j"Z\S7i[#3hL% F^pDq{=;wCrec srRUnaUע#7om1?J!+`ߺIDX_f]lȣ{H+RV¹3w Ι$Xw@"94/u XWbPq2v6^zXX) mG]q{I:P*} DR.^BsYijP!}ތx`k*!ߺmg8AOH|)Cd(Q="O]ĕ\,&Xe~RT=[0FHW}LKg+Fڛc-R{.gD;f+#X/On mY%I6-t|NhhIހӯ^25oF'Zu;DųL/;xًRucUBx,"ke%^:x `N]Fdi%k2 nfB2l:&(c'ITBXG}a?OkCH\,B4(3n\a$ݓeSUZ=I╲!|.;퉖?&օJsǡ3%fh@|Х:F/:[νv$R "t؏:F?9&|j!ĺ|<`{j>`j%su'D:#^TV2;Q_Ĉ/R8Y-2a ]d)NÅ G%Qpoj@je>Nojv6E7PLEdPɲF㍱I0a`TU*#ؖh IJאO}iɄo-Q$h #V$@9ߵE \>/h$<;W![ccZy]JK=JPNq߱Nejԝ$N<8̞F -vwl(ws۲?qC~1ݏg(0a7T~{#gG30&!J ^R`E=žۄPc_ϭM7wRS#uduWGk  "]AR}֜@-+ IBID%`&S"O0*]Lުl`F/Nؔw~xs `τCZT`_faep_[;x$H=~4^R.ȓJy2ƶg_<ԱAMZ>A .+[ pmƗG خiV4!4SlUhJ_`!{GXNfvUр/" , ޑ ;mNX7ǽsS{ow5 ~1GF?>uԝϽ:?gu᳍3 pjLS)?O&7 |h `z1XQ^ TST݊6CjUdz'y#RG鼝i`8A2Mć R*Z7uGy!3NW4D,:;}_/#J^z]XlS(LQ2uy7F?vFVa拄mKyCo0OŰ& F(](Jlbe `-Β>V|mr Z_ET*(";a6 efP4͞\5 eHix*p}?[GpO]#cUې@# VTA:UH_aw@B~,+~fh*^>rVcHlҹE%5Y9;ryVOmb.WFH[g5C+>ޏ|\~Ce/Y#Jui~(ȕ/zꆜ7<`$/t]l%Gu"p*T;|-&)&|~nS܋q^W"N5^!HTDD7FrqkxQ٣BoE!džuٝp6*83J$$zFdUanܣCIM z izB} YK#H@DKTT45#pUDL$A7<|Sb>r\{5,ZP0jkx۔rC(dHڕ.yU QWe5NBCOg!A%z6䊬5@224lY. P>9)4y,lWEOօӞnl4povbZHW7K9pxCәufmNcK{2VN!y_h<'Y-+MGxeTԭsr`P#Lݾ0%3]SzJS`5mEw@]SHHo|C̥>{9#Y) #+Va}1k0C@W^=~i)nb`y%zpj3U8qjⅮbPoMzJ[6U `,샻g_(*wձ/Geg\yB'g7r FȀ&s-f|̸}n|I.5֗A6&,d!",D7/Vn(^T<9mt=\EyQsͭU[#d<8w![M8j6jb)Ә_z~ޱQbBwJ{eɜdg= ]5.;=AKSTذѡ"7êsIUK$8ZlU>wo+ZF=͒PS!*wdY?{p#kiI6BӞP^¢ş ?*4쀹b;m`,pvP8AozYOr uąsR%Ro C֔a@HzK NzcQؗh8]LIܺkM=M}0f٫`.~}=pI%O5b~|* T{BGC/Ca90N~@̻; [.=1T2iեg ΟY!Iphu.&bk\ 4jN-qM$ /3 s")]:eg+x)lb>ܗEM5 U =*GnG -8 B ꠗUFj%ˆ&MK 7mAQDp^DB z8AKS qEz5DvDC@ѬV-,;~EkϪ` of;,|mmrʛ?*+\9>S6/Zj/<ݭaDʏa4xI"~rꅔJ 2>/9D74#X":W_q;\ :E龼~sd_ڼ,^ Ʉ]/pu# X 9}#d4GgckAxYg?v\.[eQR%.fEBy?[Y b:qxB̔Cgrќ1HpgPA"Y>]f+R@`n.5̝͊q~%X3&[܃K/~L sb:.En"j3U^`YN]َgD3_Ej"ƚ4m*xIcvo:QUlx|=Xg1`Q+5r(n[%/5º6.!oЙbz`?]2/%pG)xごNd' |MxU-+u!ߎ]EBI}f٘OjqAZ@Vۘ߃ zύpn̍+-hK&(:m]2qc*p=y"F {O4W"=굷s AsRw}q$s͟]i<>X>㦆Pm zpR x武~u$5t4HFVBgԕ$W83%E[Vu?剋61g5mK+E $>|$cGU 29|>ɓ+ iʂ4FqϘcdŰ& S2iG0a?5dq DptÇ:xϾKQو\ViKE9F%,uֻ [bإi>7MڂYOqS l\grTĀYYfspwof){̯՘?yQC~׏a]']h*s|^ gCK,:p,Yԫn+mN8VYM6 浐2%cv%6zE}\HcPe':p )*@ 5f<'ӴMA!ξRn]^ D8)҂^gxh;\"cC[ݔ[!-DuWYTN[=<;*YwGYmTH<_9ctNu3zt;_{!ʰ 5VTK4V>s].^ruUNzx~3S:T|*TMGx c֗ErxG0q<Ї) G-@MeCc3 ȿ%eS“5|(lS헙{)vF- с*a{EȚMdi2)kTR@Qo`nKm‚@ckX܋G~rb QއoP羘^ϥ`\qFc<;>-Q7&,zu/WݧVEN;S|RZb;;F2L&F*K_aFŒřťQC נ!|Os7, Qk e/巷 &+(э3Ru8>D} I=>d.^ۨmnyu;ȁ ;;Y< <c-ŭ>;ZL$n&YcWLPa0D~ W1cH UA#",Ha\_3K/R?"Q8x4Bv}09‰Z^eAk98=PMpI>qaz44VBE_tnGsVElya2Ab3'FXhMLj!blYIK_y~ RDR{e哿5TNQg4s͔!8Xʼ |\*wm0'v_9^sdGM<"jcf8LM2cQgV؇Ll.1>F1]Fr,ؾkEmtr(beUhf*wa6?c&c D>Wrm6Oͮ8l,!>VSH9ʳ{H;lŮs3mQdY:Oc  iÜ( AwK)g E&әKrk^k _3-KpY ְʔvԫnL`xWr hmJJ7`|U(YT v/J~Evoԏ{)7\78/+7K p d>˲߯T͎cukmdNy z^9Pq4W)^e&nuI]rgt6cV$gdg|znt^Tx%6 L9, h#\ehZ݅ubt1_4YUyi;Zi ˺)XlDK1  9I2&*A! KCGS= /L%fj:5\nz'֜ V;@~3ӖγʭTjuF/ bEJ-~qkBPN?j ߫ec 7ORHaxuIt!Y]_Z|zr:251߽2HpCeè@QgX{Rz5b+M+? H> /7pe0zFuXb/,e_ou'K>8\?;kZ I˃eͺJI/)A$3a1wp[vs^Ug&ʵN1҆SͫM6"f>' VpFT)vI6'-#MX~.Fu_-g0Z%]ǯf1 ŧzW׺Ub!sPJCǔdsWm)QEؙ9$61%e͸޴{:|U  8j-Seb'-5j/xKJ7\eT!L;ʗIpEƘ20`[1 ˃,t2\ݤ9ROtLJYyZ7'6)OZd(W ̎G5(;}Ԙf. >b2*C(J"aޕf|2O=Ql(-FOj<Ǽ|ݐQ*?'uqɫW$05vHIl;U13{)7EX*gDmYˋ ݀a0*)`@-.c GG죇%wf┹7[`E=HDxv: Ç$#q]^|YZ0*EV,ӓ!li7J`,Uq RΘHdl6udl+ǭAW(kJ 7aY=:&=:*RAY,I:'agLٜ{QȺdFrNi-F x|!j1Qq@YeSڅ8@65WfqNE癯oaUZߺ ccokpw9!fr3\p!;],EEwo ͗ _~Tgz^ i ʡ{p<|+`?v,פ -5z yqj,BwFQϲ)OnLu.ȭ毼wO "vM<$c3u+v/.H(FFljNG`I /Y_@K 8b ȔՉqm:$ + (Q4WHFO}0DTir+AJ\A$̪-EٛFoMAF>Rm_:0VR dT{|׵Ru~tTFe7*$T#.DwA㋎]Q755TrV9a+CzV"IH-x5;2tYe mB?j*y{81򯕜y@`@m0kp'%ρbR{yFo%|OIX/D[M+J|Yn۴ b"n?zxlF^(Hz)=I  >v4Fb%v%3#<@PGDzTVhsЛŸYֆHILrb 2{g *yJ9 _@oꆛ/'U}5(SV+)xܞb~cDz4#۸ iW'TզY>B"(8 ZI%dUhЍ`d!kq5{>F{mߺٜy;Mb,nH796uށdAiKk0-ΞbuL>AmVEWV#ҧjml[|jf+?hSD!}Dy1:QƉF%.~'^kudzV/ nHj4'1 gCM\T&G: 91A]8%IL¦wR.޺a\Ο̪~Xޕ`rU3a `"==OeuXߠr"\HZC_2{eHţN%Wˡ-&[ǔ:^^ UlpOhi!  h@oitsCW=%& !-϶[#juJ$Ac|8 ы vs [V:ƨGK3_ 2g͝`h([\h˶l5fB9sn 1)%vuO죬ix98- ,f`w~6%-h(<; ;{2A_u6#Ew]5asVF?E@ O+켕h{4X:T; Ɋz*)H.ifd"k.svbx3K8M; D Z1H71i]d"s@QV(:VIة2|ϣrޠvT+sX6"Ө|-VӶ%@0Dx r!Dn\.:<7lܯK\sڕepw#l~,i9tW@siS_feVr{;2TEqӷ# ts9c3' zoA kyR{w1Uf(UX,0F%}9W t"&mcQ| `t.h_(fMK[BK5_CCxfok!VK4<>wDFxM>'[m-?=#3h4TR-; ƙ-kŪR4sjjnXO6a3tSG?f\Ob~'iL}1{eb $'!Ghc`ӓr@^' JтZL!^&$ iD{Za!uep;@ߒY tϟMj} ~ܘyxG:6;)"ƍ{Gĝql4rޱ6tPBO%EAJ.s[$_|R >+P%]k8A,[0av<00qor3gX]Ai&]@;WvD>ڟkl8FnzqcHwhfkBbdkR-hMԕoןUՓzr f{.p0u΋r7ߌ$鯦0V2=2\l[so4g|2]Ag :Yb'@i T pQ3eWλA VI?l9$2\ Rix%E+68w*}(L4KK o"']a5r#L˾igT0eT[5$2d&D# 砀qfVqvCᵰ٧8d }̮ v|fA+eOHKw׍Rm0pm-u T' hYX)^O ח!'m)`#@*}P53ꣷv];i %Ą-`xQG5ùBZ.l{+ڼ+@DˬOq e&7Q=9PpksE|}/*ؘ |jdYq^"uDK:p8-?EyYo}(G-/?),?tpa~V1jpW/+ROdB4Yhr,mI-Ӑ,Į+%:?_Gj]-h=bxi#h^**PwqYo"[vXtK$8¹EBqq S ^䑝TR<#!dܴPS[¿T (KIi{GsԡEKfnaKH@CͰK .%:$k~YVhD%o![z˾tqpL,3ڕ8rƢ`qhbzQTHǝbDBP\boBrqSpgTF1Q=2vӓz%E,yS)pr㮀icfEr?`Ʈ\Սd1\^!"9gs֖DuFr\?NЉc9OsQmEO8niAH.v޸G^S#;bήJ}moҴK).շ_qL3@ʌMջ9F#vMYLs qa'<)w񔧊2%UϘR%y O!v_h1|Gm&62$Wր>w?34x5K!(:Ys/fFVvjd[v!8%|u[b)f~'jmmЅRfXR"Pk&ⳤ7[qr(5 vX.RCwy2Ƽf * cD)"ٽ萀g((R%r-Ĉⴞ}LP &Y}6n!ׅn]fukuIZxKxK>d0z4q+>#Z@ ?I}w45GyS.<33_~>]%(3ȥ§`^H@%?ׄܔkW5p1.t~0Y0\Dz#' ggfB`P+!«heh;# +hCЖ1rv#cYsQ1Ort$wp퍘B[t6C\XGR&tа PjXu T3ڝQ +yyL A3 *>cXΎ'50p >G|dWC}L8N k(sL}dAOՎ­2W;zn`W &HF %Hotina:( -yiiB6enm1n .gܦnpX j*ֽBV,5dPןm9TVƟ;!kE@tlTt/cy35)Eľ 06C^%KH._ V9p20FoTrJ5Y>6m.}aߒfXB5 \•~k6yEx8᷋WlW^_t+_@YiRsG&5$@[Gu["DImoBXޠϞgW=ls~>r h` Fw#%ګ,մJ:&Ɲm*q_eX.[]e?MMqP:d Wn%_.j8S.,rSYtG;ѴQԘ"t\Y)xMpH>%1;E!i_͙pwK|Sc6Vr3 #^s ?Ҩ,Gog@)uK?.4|T'4DԖQ5-GWh4Et2p꯶+^,{WNV)[S"V5&!}]ȸm9DQs\OՎ I j%.ynGN9}x!X0+LAWc*܌MRYifg=%TK+М'4fSL&}!'qS)B?-I(Hw,nDYZ±EW.G]Cl *y.-ʒ/MN۬On)+^!Jb/Ոxjya~xz׆K?AqoȾ$R{>᥸4O19:o6]iEvzSefxz([fFs2Ҁ|Yp_uId*N(a\o KX'_~ug$t)oDž[:8vzӑBcU߉ڲɚtjSH]^e עw1HiW"âxǷK5,2^iE $~nWꑭHN36|5H@?a^ZNOVdAnkʊb0XsQJDImevll,sw_?,\oT:Yڨz4|Rx f)jf4Ar% $AkR3Lj07_}Ny2@}P]ci@;ؼwUvR zvpƭ?wZ~gxu7So1r32q9$%nW> z9DL&:N4("-:R_k9I(0] Fp NBnN[0\r5bZ:℥\ϲ7nywwoYLY2qJvy`V}Ge/ru8o*3é?t.6Dp0ɠIlL`ddrAWDlvF$2Ah.1! zl3Sj^PV E/ i@̖Z4xjh9&VE(l.Xarܙbx2u(BC=3LɞZрMZ30H5/]ߋAoMfuOBDeF|l`[79O-OoYKON@hЪXQ;P렺{Tg8,0 U5GUg>E89 "q 4'?K]`2]ba"A}Dg6`>@ O`+Azaԟ^6% +t)ķv-E?r@魺JbbhN47vi\*K8: Yqs!Xw, )6٠0ǂM LE4NƂH0iGs b]Qz΀4͙31Ұ}5۷o=ev6:k@&b;O7d3ܖRj_ȞǘsP52$HIN0۠$U_O@` psoI'QǐH$ >lW{[ӿ_r @Zbݞ[8e .@nk~#(3a EYPav TJ0]jv\£z ;]Ş("O`Cb$vbo+q >=0=ҋ?`D j2E*{Rh=2:b'΢-#?3ǦpiBFXU;%*)d`X&-EQI-:Bդ;S %ͻKʓ1{:O6#ST kc0?a@kH_iɉRjfYR/eHCB.?7fTF'&d ]m)IN\cr(_)e0nrAklEV8ܽ(J WKTP?`kO*=5d& IlIM*w9WJnF33&twMz/js $љ+3g#-bi9d6GF4D^Q SƢP4~ sj  z >9 OΪz|`݁+rM4M I:nL~=ƅӳ]%%쫱!W(ѪKaԙXQ94S%iCC<s#_T>_{7@dӔ)2h=̆2Dz Qƞ?Oyu% hBr7 1W[}V/nJpm<0N̴ϔ`$-٧9\cXl3AΗf$HP$>`'zQ Vmk*߶e'ǧLjp_Ѯ7;fGxߖbU="Dx 0fĐ KV;^t$t9ٝU\+[ zWu|Ak?%WK(rVF~"*ӂ*ZeEpS &YnФ-,:} >JĽ QCؕ_N `hWd$󝔴Zc49bw+5J-+Q3V,'ѷ P2_Z9c ܳ<hd&4$%)E᧐NzE6֌P+*oGge})QrIjvu.6H2X&gHQ?ȇ#On_,Xɷ"w5db|g|˵%[·W!)k*_^z:nCF뾅sDaK=#\ϔS[:U9n%Tf[aIг-tC.G-vAI, iԫxH4xBQf7DpxO!F p-0ajlu4zd Gk/%H\ smu 5TF{y Lx!l qXθOs ɊhB3T7f4k~6i!3ʕ^HGJ(C$ 8)i#I!qlq8+ܐ\pdc(*Εzq&u %jFqJ PA٢o/AfVx[t$DrLLM?HՇO JVGwPMp Z7€R8})(O֠5 {EHu +-L<%}O5[,ab*9-7pM8_I78޿'wC`]Vsn BW=u2sl$wm ݗUO&R4q 0^?ib$v<|~NЁHwcp%7d҉m.~6VZEGdlTMҠ؀dIr]yt7{wE푑ܬ=֦9ԟ;\ő% PPޮ->v&^uM%qW!w#H۵> }Dvd*f^(<{WBtv*d!tHY7zM$177tE ^7zT bgAO700& N$> PLCl/.Nrd*U<:E1RvmS,amNt"]z6(z ;k4o[!{ؐA7Q9VLɰ#ȐM/a,(tm\7$(MtMS <x+.BH9; qjU\Sܝbs![^z2!}?`yr/,.f둈l1_+.j ` ov,~hPGo뷈C*K>ff/hWAJ4eH ?L+$օwn]cL=qʟD.9kdцoKUZ[c)ɹޫ ӝb2*3,N F.uE)䯼I?>ڎ*::9*6M L-mִFsj`⣋UEJap>x"رo%K&T9Ca0Ep!2!EMfO?KX uk_OD;X|'챘Bܒ5S1(pX ;5)OnD`YVXpBj.F+-2/̬7S;dt/0_3ja/La7(PHGǛx~Z?Q|9ݚ=HmaaJ6h/<ίc,.IlVOO.C7nġVyFJ H)ボB56(te.,It/rV4 Px3eU1ޗA0}؆1r|-qy[5'Z8 e_}各Me^|eqNa7QLB!>kJ3 gSST`SfծKH@"'GbMRK|wjYvTRv4`EKQLv4fyw#l4x,#4mMog2*O>{p+bH *ii9V!jfBQ7IO9$O,;81}";O;HD~X r+Xj-܄wK/m ]?NGHKTpI# HhʘGwL:Rax}<guCy#5VD/X>|v P=wW}b"FeA9=+຅ޥ9X3>i 3>1;E1_?%rk 'zz ߫4 (Ti˩e@kh%٫/i`|v sP0@1RRR 5q$o6#'z^;3ϸzlU۲A1Zze-+U"j=wq݄۰m{<0"QEfP(50f煌\sN"w34G d6j 'TA!t MuAIт8`5Iݩ4 Hڛ=efܖԯ=a; -œ#:ýR9Xl,>fv[4hR5;%~GF~9%?` ONJsC)N?jX:ʎiELBЍAlضnѫ,b,.vwUCd*T"K-aW/7k 3wC7B9hp&rUʭ|z)}T w5h>~=zVUcY2hd-m۟DUE|93B,S\DlMKIi;͌j;$45l_n{mܡ1@Eb0jCt|YBYYF5ݑ/yAZW%V~(Vx e~fPSz!J.o_,JADocVQ,*cՓjƅIi1`i肏D06[/ueN'ҟT=eQQQ&DC9hqioj%h ffvyAU:GdA]; [/Y3}t1f[4XX@3NRSo/n;,=B10i*ފߜ%7 c aiw7QXÑF:BkJ_tg?Z&kfZ^,J¡Z 1OA$g31I{)faxZ4fйM0;+xҺѮk6BSTDt?]=3l\|glj9*)VTF>srG/7ְ$рYB'CcV4SmlBs@g] +LVcWsErVY֍U B9NCu=-_ɒp~+#>\=l1dpVRs/,a <⌨_wT,%+r/FGO9[i= &+SV sA:/2 {y.$)4A'mdז 2IolBF!p̺u]3@!&ÈDpRW->,pJ3];oҳ1,z~vGv' DO?(U6pgO+<3ӑeQ%U:zC@Yq7C1~톺oml1jl`e|=Vm6ڐvG=oOsSy? 9L Ev7jp piRsϲlUv*A(w-#_my4r^r۩y#n+B`1Kφ?Ȉ]Pq- Ն*\ڈ^k6^[J,-?ԯo\;fqTxMZbKY$wrB|)L 'G6 lV5.*r[{A<֌1[p>nl4ptPi@KxްDsSDi_Atf4dKѪk'BH;hJz@#n 2MgUS >/<<k31ei VTM%ufn(Ŷ:5=Դ'C'o{Z8'%{6?f v1D[[HPj+? 0kh1uzXKś I{XQA<ᷳ~qV{w_yU pr5lhu>gil'ȩ`idk- 7M1.X_7Ρh_ [wjyS4}V:"4{ЃEfū0pk8-^ ޵hHvj@#n$jYKL 5 22x [|R r0JNf=u<"QHMUۥmR0ad ż5m 9賜U.E܆ x#gOu>=tqiY&kz`qySfJ ɛ}H_I6Nf>L$άU9numdW֙9 ^jnr#ro8یjd\c=ѣB>\+!)ɚ4Bvɫ''L*A}xyR`bQWYpJb=L5BMKڗ!_קs )/1!Ǎ}]>Պ_# ۴J t0w;u$grh6׵UQ ^BB q!& 70P.?{#^PydGoPX^#\dt;A )|45g r, * Zy; ;ⲉ_?b캉 [X?4FTؗ)j'Y7#['7jE=0 Q ʇmo;-uʚTo`IC bW\l=KҭŅ,yxm[-yml‡%<j䆞\é|lp!4Z~={+(}c蔚ǍT K}Bf>ᬱTWpw5/A8[첕έ5\[Qja;%ld \mm5 ޭ7(o\*,%k@@7esʓOq[e9 h KYnLPGAGl$[՘ *³ODc+~a\=Z3uH8 fȡe}L*q*)AO0<,)%a+Ew=vkFȎwơ#O,op Q/ط7350w(7dۇ%Q*蘠uD^l.j6ȩyYhvusjT\6z"'Anۛpm<[͎ph6qpI$Zrl^3=H躼ZG)jxSI%\ ( ?B\ ,q+LF&pf!'MTq49 }{I#aϣ#˂r ~`%wVpU$uQ$by 5#a&0mGlã๓ af_'>{KAS5m_;cH)α9+Y*c#$.T皗G[rDiFm$B?eQh-]{j+ψ/}@&dLKsu, 9f0ܞQ@ r2 ZAkrU:+tcMv$wZVݟ^x/dbx*"* \o h:nz&7E.6W#SB ɪg*8p#KlqMtjŽz\ra)Ff컴v*áCٚYdۯ(!)jA]e ^ y)0VQҩtI-3 ? f|+BՕ韰VjrlAdO?-Yr^@=^6ctʓ{ U2xSR/#~:. ngn=+ > am'Rl.Sݐf~E SLϏXJC-Bo&B"qu| +sa`GW &?X&)I j[pLDY >S[8"fZ)Nn-Zpt2HD KLuO@b6_!|Y䷖\̰ pA͖MŤ$Oz9~>gV|f>VNX@tDK6UK /%[M b4!<H ̂%͒ Ң#BYD\V+]e(|>L(g+nAB/_ MBp6gسR=ްwƴYu{b~ex np]ˉM"\95-.A_[>X~3Ik'0͏FFLޅli[ BC?DuhsU\CkinC|ӫ, 9"hՉ;Im;57x+FpA?qT|8}~9f$ohX>ϙZj(^PUwT BdkbJcOw\nn21QpK:濺{AbL7oKi7 AQ.O~CabT(z=W£&xlc U4;Wnz\,#e}M,tH'jz{Vd^Q4gm(&`׮sӉ KX~2R|F4)ȫ( 45yɧ~lYO){sՋ=Y[&ſo8/8pգbOՂ=wgJUJ8cH `KefL{۪+?s41_<^HpXO;b)ҾUkḚvOÙ;m>sx(C7{ \`&Id#n q[4>~5j(zH7O9z\CgIWuf/z-8d˹Ċ9""7)/^}ƺj-(9BRݶǏ3 pN"2osңQxv14tx eg̓_ʨ#p*SC.K% Ua%u>_0CWaXCkͨb|LK+" 4q{SZqQ-q*!9 v7c&h뉎&C 0ŋ_bb(DWCۍʈBur"k2^drۯOuc֕>#!d@^ 6aR'TN _X>[M %r|*f-FINRA J Xј [7=#Tgh&V$o*Qfrhߛj@k*chijs AAxpdz y4cB[pm+p7aR#*n|d3.Kh@Xi?DXGn6Zd4KuaV5ugJ)K86KC5sh7&A*& z|lR*hOyNcJnza*:`TƄ]v0MC`en䚿?=r\.9m̤DT"usG u2w' cħ*X<=Bg-C2Q,kmn#7=O K>a#=_dNߢ;u4'H]\2JhPxqP%+z[}P0/6$9a놧7͌ӎ].?fQ$Uzе8~zI:-Dyt9jA  avW 'sNRi%U.'jϱ']4I ; uzih{:U=լ{/ޭnMwCtϬq~,'SzǚV\^4:}?h *2 6Ofs3T?fZ1Ct* @<$Z \|87Ȯԍ.a4lP%DovWUQ1fhlNst>x'~ #[5D̔ T\so_H!>ΡX咿2JJ( \Ht.cӍcgzd*tm2Wz[κZiZm˓l>5WB~Vdhҋ{dƱ9A /|; U%ZOiy4*Rם2?t2}ոZ`/NG; g'p` `ZEVjK2咡|*,;2 ?b3S_[6:?ɛ7ByA^/ypd{1%+V^9pKt- F o7ivHü5y*Y0=BXAn;ۼ{R_m:NQkdS$ V倖wXolbtY@k> 9*߮O"Y|SHBa,?nb 2bvghilgcm!rg^Bg;d2Jfǡߑ<^):ĂfGt0^5nnw*UKLsPάqJ] 7znnC\[xVuwh`]o#neCr Y1şEFc) q#ؘC)мao>4o^gDΈP}zm;KkZp{f͛Nƃ'|7,դ hH79C'}@V 79mދ/KhF% vF=ClM ^)30MJqQάJ׾hA۞:-kF;w+S߶q-fd0ӏ \xUirO2U)6oR1 k *qrTeTO Zp <׷{fu:sRb:4ODYq ]ּ(2ݠNCS/5R$l%;@1cPu0NT0q^bipAKoLoVT@v,Udl X*Jٽ&U.ʸH_I瀏kpd\ AyR5g<QA %dvhS ZAi ~ 3]R=;8 Q\ 1)!C!ETwyKcMg=LoyWR@ҍWvK`enkr]~UYF.{d&~HW`2LLb":{=nvˌ)s͌8A0]2|5i{QiW}rIL8f;f˙&ķ1"_%'h^ ׮)~lrZ,72#y]4=.7pS ۪j>X5uɶ2QZGYwߩ`ZWv.yūk*$zg:螊[]ELmb%:^UZ%h['zQb!YEi~hE@2,Sp_J|Y$Zxm''*Kk?E7IR _CP)=_$:Ͼ(BUIN8!v۠{Lc~Nɺ+<[!ϡB"f(Rڢ?9##lV6u rkMd8gS?vF]HV&"۷ sFCU!GaqI7Ś [eH?' >^ 7Z\Tjİ1ɐ̂5逅]ؿA֊~nGBي58^OA  z^^m4KA E ÃۨGv2ucG|5;@8*!}h{WV:uQqZGJ]f7l~q {eAJ]hw  q, ::{C\wݠ|B%EW@ۦŶr, WWuI%V@ rMb**+倜^iz; 4n7rQnpOHsB?CnWFeN =2?rHBI?F4"&%(k+9г<͂Qeӵ%5S*[M Y]P\0{~—Iȉ1!u{!퓘a9 #_d6j|"ZU.딹r6lfϐTJ1#X7gQUzt %lT\N@z).&0%jq%tIJ:NO VnQh7Oa:[Kɧu"|c W{vRmdgQJe9)EEOuQ|Ii#fB".yƕJDn)tsXBo{4Poa$l{e0'_IAЉ[RZ=TE{T5}l /S('6b4|0kp<\cr䉰\N[EviQ+)f]c aALQ`dPw8;betDRdg i/[۞M2zr,G&h~Ӵ #tCnLxTܢl/\m`U4QsEmOVӪ7fh7:ZQ޾BDRXfY+e xU&J @V a?/ѫ |`]|xR^*IIo!"0 `AusEt), M 1.)P vs܄Ҹ~% g;ѯgu g.v<"㨹I ToWp|eׁג$^?j!vOxȡ|E'4B%Ir>Ez >T( am3^+?VNa_99DvR4s}|d(Nfq¥a (AWhr:ܰ;HO%Z6 I1cAȆ!"eM_ׅ)5pf~AQ,XQRxʑZ+)˾a?_4";~3Gk-yHYi47SVFc>sæI%s NȎ0 c&,!ۺd#4Z[1oًOs5_KR>HW]|GGH»7Ͳ &LpIaP|2Ubs!g~].-z[ڋGp^f @Ӹz TY]\zǧhwWLfm;w0J*d}? 4P{(V%<49>tulsqp-?XP] \_ε,=IV0w uwD@ e?( .^WP?lNX>3D{c)k ' `̨LNtz 7U,l6"۞DD"k\نF|0"mM7@B8PKA,$ڌ?:MgF>ӿvl4<2djx"|/Z)G3ifM:_ZsI fnP/u(kTߋF4!Q%4jwȪ~yq?~C1b<|U/ΖFU6ԃ2˫zВ?Ƥh/7~9ug)gG2%(qx~=܃Gcd: $.@U&`",PZR{R#w㎭yiʌ 5A5^h8>\KRN؎uX7cH `86p-6Բ76rGq:_a0[n_!Uլaaqrֺ +_JI Չme:)|VwL>, ]/$O qb1GkƷ ( sT 4ުS]H7K5!Hџ;@uj4W8<M õ&FuoކO-p ")p륝cg7.6nrJdNҏP.q9/rJ%U^*2A쭺ѕ<سD7 R'uu n` \.X(G 2ԷvT>yCUk'5\ٔX~[JN&Ku"rI.%=^ C~[7`k疄 Y(DMiH)TܰVnBQh 59#$[RK#m9 ?0ކ6O""\m!*n";Hӵ_*/ʻruhdN/8({}Oϰ !$i49R1ˀDl|ͫL1}sϒԜaϻ\-jI}oMqfI*^oWɱwCa<\9;['㍦X^Qhf/&)H-6SBzWصexȱN!_[ˉ_FR"sX&~mU8 Cc'WJ;my RzՐlԦ8 !?PJi:6 )-Z#rH*ߏ 447kQ $ x)^ ߧg~wH7ʗ/g 5Cr>Yz?hZ^:nlܴaƳc]†n^[nK]Y#zAQBY^D%4zldrr+` ZT/0Pf$ߕAk]@! 񚂬h:`Ba. 8PI)_D%`` =V6ɟ1I>>̀}q }Աm/a#C:[. HV8fLcuiwY@Y"}KB{ٸj9]|Wb2 r@Ș,˫icKg*u_c &B+gFJUoƆk?A%H TevL7شh~ooahpŠLVLQO)r1q\ H5=.4kN" ǟN\Z(PN6N_{,n1IҢZ x /"Zg%Ju+.Džfkt,c쀘gu1Ƚ 0d!e~vȓ0($  $eF{u'50"HO^༫EYr+>* h a8sEe5%=.,+'7oLAd}|G^d.3Z`Y'w U!6CY|MqRdgU5)gs_۪<1TYc'B!.bcK*+23+(1mIh)NBO]Ehj憝y8)Xؤ@KkrnQ>QSyޡNA~`fVFu\pb[WFTg ^0UӁآ11Ht3&:+s`>ig<>#J }/e{yM4|a' xyۚPndz96J[ Mz~^٥;~]\ Ef4z3|gQ:>9WQK\:<誯 gj;6+Y{lCBķ&gl?l2a _3uC>fX=ZRKpz__/E(+<_O!w|6, K)gJq-1bA?j5 PGz*ў280L9HムM5 iGh#W ~-$"A]02yb!a9T#PbNkjK3"N^|?7ٝBb$%omJuwJMo^ݱI$7_mP>oud4qz3xI7Ҳ=g|7 _]݂95qQ.i hAlLUnUvB@/~pu ;ǃ*Ԍ j;K38X-tԬ~n"YλNy=;0Sws MK:)TdGM=Se!Ate.˖4Rq*}^1;e?p=weu.K1 %i3 bE1>IRU5F1bft-CC'6ЩW|4KPڰf^&XV]2+nOcwz6?wՙ1c zEߡdN6,@n#jkZl&H,F/ r`+FHk5ϊ_59ۜzs`[]r#@ e:|o$t/:{*K}bYX=+-e'^705]mR~Xf^Ⱦfm فRpdY1.$sK+Pf}*8+X%15h<:-aeJ97*k`Mtǻ}kW/S]iQJ=Ŋ9yԊ.Zc.ELb3 &e՜f12eJn>? N8sWHM'@Nпȍ$0RYFfntF~eE9'=xT8``}cn.XZ }ctJ9f_+Ӑ ܏z9CdVgE`(b r8@8Bjwsw(͟緎8\ݵApzZh_'<'ˆH eh҂*n;jN y8g!BOk)XTG3V I1ɶ\\/$1:Sk`&1byȖ؍4CMH1X;>;MI ԠoXz>@-*K1T}˖~`$wϰ@Wèx43`UQEE7&tP'DH!i ;Au|=`3war?MF 4=?:Й\w^`P4Y Ux7w,VMLy{(H3Z B:6—*C-ەA.ᮼe^@~rEû8ܨ"W?(/lJdy)[23x(^V̈FfĂYqJ==5fo,'U{&X7[=<.n(HvCca=c{{)hA:(w̥TnozC+OձϮՏآf.M BZ%OJqeQ-mYG/#zzaۢ!!J2j 4:KaR4ky}fdfL+Lw@`ãKEfU,#?B`]Um[O3>NEHDet dl Y8Jd$GםbD4V'ŻA!6/O}, ȟfUOU1XnHD%*eM!j .sdϾe@(c&¿)eUf\ElT-5 g-HxH+wSD,Xif0V$=$_g9v i>NldEYwpX)&8q܆MoLʝ 5bodH~B:x}d7+JlyX =yoezr.o?DW @66}ǝӈ.T^J_Z0!K *^G ALٯ#hkJ**?w\3}ЧSVv _YRVE tZrO%j|k0֎oUW.}*tgP  W)0zs͎u(@~sb&;"j}(.$7/oN˟ODmR{WtBOhL"!ښޣt ѦUӀ{oH^-pvaQ.|{qzP0\7 U22c]&2(݊*Z J([u`s[`):lWg/XÌNkiy;nL0K ȃ=<wN@cp7Vtܼ9Mr{w;A0fREor]H0I GGƽGkn[Y'ơSOSxa@e/(2FI͟b!򏎓hlG6]xڕ)Yr \5~# +pn.oR;DXd0ȃ뉍~?KX#+XnN'%:vņF82R7FK?NsaV00 mj-X46)J7'}HYAǦƇXlISi^+?"i4PQ(`_<]|\A?üMpm,sƫ+{X_/YB*[#/2КLYa3ZUDk:* SY?YV[ (/~]|U]] T' Lg)ZiQ qUGaS8O}k;pr"NEۋfjµt\x7c{0ߗ?Ud6}1o rކ<BE ӃvՁ${}zDEu-qAI6`7Y+r#YЗoBO4u"(ВP+/V dZgOCj"j 3躪"4g+l;}^GM GB/ZkAnh8ʚ#O(PV]mԈr5;{~5L9Ͼ, ځô=NO;8!H>(yf?w;Z?ga;r)==JY` >8VP9W矘 ,]=0L0٥bXFb#dx# d_u]VN>I1I5KUCǘ5DȘ2E|4}uKl\6>OLP9ĭ &$i"Cˢ͈Yo&=9WQWDT}yU}J25!+3JD)6HvLj@23O%dhKoZH'atM#Re|&zG'2Q'' 2N36M愕/A[8+?S6k^&t[脧CVeaad\x=SA_{nZtH]TF mi\₮N=-QŇE;Sw|[KedȖ?v'/]{G% 0=J$'2 ^(Yq(%Bd R-V =t>/BYV8KcZȑF5w%We*~%~dx@ڧ%8ܔgCٔ$&|%o~e0D`A_Z-fb%_IhYB.8۳hUv̆wdd Wܷܰ,h, vGL\[yNk~kBK҆2;`PG?<@;$eE6GD~쌁R41w_yNn!vp4D2fI%glZ1}-!gPM1:\̣9>Ͱ"kSa Oe{:(q7fSDZs`26um!C\%&?wՙQX|o/pD phaG`?i2zi7 YedVIܤxt(:0jEWCvLvKuM@!$hpʕ˺"2SAVrF-MH|Kr'39KwdPS:Ov"%[ ¢ݭc @ua,uIAt:$ij&wmJ[_=4m=PRX02OR$YTDh.:uE ;?yCó,W' ON;qrBVH:v2 hƓd? 5}VU^>7XGY4i'g=FalȜ-'a1wFӄ+H &dӳ6~ENO O/l l@= /#6n%m'ϗG7{`DuD(%j#+ubqeHM4G8\8+1gG;; ]CP>+R}#yY'li/Gd7O.[G c,WSZunNEj*yR9elzツP=SxR6O|=do&B_BN2Ep\xB7XZw~r۝um e6Z1 y4OuAGRG{wXN~|,o:"ДZj@S;y)#=77#;m0S(zw$7ؕ§o ԹŀqbHyq:n FDMK{SHhu%#)~6ex~m.6O5Ҵ^J4+>D5S˳&^(J}$*6Z;UX+Pii(N(vm^#fʫƒ=@fҚ>ָuWs,]|n@Jݽ:K UO *n4\f ξ }^R=p2at7M5&XQrӚ9ߤ=wNJ-E_zS.Jݩy?RDI, j'y:Ջ8&eYXP8$&?ȣ^n>pgqFϠrQ 6{!vDD՛e`qsYcе+“kuˈ^늊&b7nVҨ.g$PFl/Z%zP"!L;VW~܅IYLVZOs17Zې.BR?i(fOo"Fדqm vjopՀHOQw\O\Ar65MRwI;],bA\aIYY*5uçM#BU$sxYN0ݘ8fHz\jiK_|0"r{8%mn]`ɿrz-f׾^UG`b-Ѫ<ò,]?!/4逩x%4w\6LG=Su!Sh64fi ;Ϡ.Ƭ&+"pl\Kex|,Zynf))C< I_wtfۻkgh8\H87W6KaA Xeo~ھڨ`#NId)A/m筷 W6Ya)!WsL^0gҫͫ24Qq=PhpMU!S<\T)rxda Ҭ]lQgu")gMk m>Pqu%LX N$]$QغՋ_]>zlN@V'ܣG(Ehgqc)v)U5̱Js 43={)jhro^C8mաf\irX]qT(p!HӤ-f@ \lČ?ʅ$K*6$qսm'+י҉kגK " I [3uLX)E[4x_/sijWӶ;,5rz!W l[#ߞNbmZ@3AzO_?ict2sth,XFcе#2eIiՆ_$Fk76)5˽+WL'dvzY,=Km?$wfc BҊ%V7!1ˣ5*ϕv9|eT2XZڷ\z%un*Җ Uիp3qs){_}w& wi7+d^@<t1Min oivN8;X#1Fܜ-9>KofҚK R wJSÖyfG+hޔ=U*|>~_ йw `S^'́ڷIns7ʇC}rY h4?vHs{am6eMpCkn-foRhiϢQ$fx@MB!OTH WI d]'d79GY-bnDl1@_iEPJ0`fnCЃ.:&taS˻Gq0{se$l48Kgf4YEy<$@XIWT}a ?𡳷@RZ@M ƀ J-^Ӳ[2ne<$V? =-(Z7h|g*ݓ &lG1gFL"c IIR%<H )l]䱱I.zH}JgO=(CfmH̖q&z~7f"X]Y ]*aps$m0BsErvuL3Pt%0pvޙ8fUxFF7Aix:O()ڋhKeYʰySBܫ(yҊ%(7S6C.kyj[Q#u[3rr/vF맚*~< Ty1_[שlJO๋e,VãAY=Sy.Vg.Ei7QݺaK~~Sƌݛ=P Q`p,;]>B rN )x,v[VqdվJjr~ʱ~VNЧpgI߾Ⱥ15Rjnn<6S?|WvK:nn)3c[Ē4)G_v78FUą}tjR߭s-wIGwb& Ҙ;PTC acQ[HWXSsH;] s V 'Ttj义ec7A^P86hQZGSF$KwwE?#U6p^Dc3P2"XeNL9Y"LkAݧW%_LGF={΅ón=ѹvn?vN "ӳcu87%j#fXv+09t#/il48э-ӒkFؽ6`5N~O&ގJp5ϟ' >)B4JO৕wFQF')v wEq]\hUlHֱT %;6Mхob""e\?tͨ4៻c7`\ sfV~w@@SYLՙ=kv1˴AebOey`Sǡ__ 5`T:t/"> n71(Mb tU,0`/{gQX{*'#]*!ߨ+t}4ahbf-5;{z6>)*܍fEh85[5sfa1 X FdoecBDJ^,ڰŢbi̓q! F0FѨt5p3Y4617k`Tb>7쫣Ӡ+_78fo& dYևr 4Wx =&ƨg,w_s/hʹJ(^T06z}=3Gu2)TB~I~X؎Z A'zC7QW$pR,%O͗ț<~k5JP2+cyEC^ T7zd'dN6W၄QS&ǧsm҄o:[I {Nn:I;}6"[xx0QDZkaʐg_RCZ~x0re\jop V&D=<0K/CwbE+v۬z-S%Jqׯ'sA y+6Cv Jgj+T'4^pntu~XcOZ)SVNڤ# Ʋ?{e M#!&&yRh`v}Bo `x8'm }Mף  v#EV$ ș{3ˉy{*GO\?{AC$"QGq1-+@q:$W8-r/F,h1J`[bPGI&P̺RDUx{汊iw=[\}YoX1j p1BqΡ BcM :̇XK+2Fz=QGBOxW"t8KN^}+ϕEu°vH1ع{7"My4 cܽX"T̆!Wf85/і8I ^ ҄r.ۡl\@*F?`JLs-S.E/2z72 7mޜ 3=-M 2=~&$xit;:oG:vOggx$=HT ;8R\DO\~o֢+qS~<^n訕^1}V~Bb?!lE]`[reAjx;AF6?U˭E׽b6Ψ VkӛVMYU :cY/lS.R]icY8K4#Al*HGZS|7אtC{1m֙4`0?"tMBb#XsvW|LHNCeITg5}$<[&4H^UptSDl*_5f&Gmu_\!`/On-~34PbeN_rGlUM%KT䝇X5f_ qBIs!rжK)F)6 g΅qӗJѼG$n"A fji̹ NM[=b( sSXuuVsZ%-Za6sn0}3A&I~Գ@}R%[sh]D|?L m:I`~1Zuצ;}MY1 8b-{4|6-Ⱥ=ؐT,ok'MU.eϮ 6ķB,9GO-o0U M3q^bgGIB=U /HkV%z!\;HlOuv9{G& r̉g Cn.F"PⱄrEԎҔ_:K#4ve"q̠XkޔH͔| qh_ك@RѴO¥Kǚ-ˎ֤ NK*&;rփD[&%]s+A Vµ;Zg ĩ*"40iPU-'O0HGlwIa⧚JU-jqGt#VR`&KB3XD')^W X%55(_#ML^;=xaL4zU:u4&zŚ֮zUƜ,bv<Ԍ9M%VX0+WfdBC! xCo%^^| {bKD\ߣ'-:t]۹?Liʒx-Cp~&:|<7 j=V`O8l(n/oOnMs U,~;'/$_2ː?ZJ[:a8&fP;ԍjŪ p+-\@>粻p'ْ&ǚ1v`xg!=}bF5s[eIYص`k&J"'[޲ o9XȑS?_5ex~p1 ,F8qUU .+6V3UAfPC@ݼA/EULhࢷ {Hc“Ⱥ!|/(ܜ2*ՠE2mbIf?,I*cJ9$Z~b:heVs+w*BÆ]ew(ZYǬ&_#e|égK4Hm}p3;|56;̝qճcv PR * ^Hn!(4OI].8^p%`.ɔe/MqG,7z}Gxke/i/{{t̖ҫ5ep,Hސ3Y^{" ;r ^Y$A@\4hڏ[M*1Y^J dw l~ =t%fk|cl1jݺ2٫tJ9fMLd3Uk4@-ᆣ,tSBd@K3 椯ە̽2/QBg>b$riq-5; O 2zpK4R No/”6МPW;_վZ+,0k›@Pzml,{PR^}]q$IK`zH1 tPq ԃ(Cl(-BNMn D8ATnB"VZB|O]m$W2 Ԁﰪl/GKJGRvjk'iiќ"a"&i40\J JYi\{~)(lp1!,N/Yus~ ;g?*X0\\GC[194"' 3PTet$*+(-dF̿y2,EЭi]xn3fjѮ%?eNL^jTև@|$7(Ls: BClgOژ=~?x|ȵ3RɆ ;YS25K5heΧ"6Eød1ع뙕lX6dKh@xfC:/ Gfi0s /oEd>I򄫋F&=@F"a&xͳu/R=L!^;|Glcox'B*Ci],u YĠ=N+LDKrioD:$TXX&ޞe[-W֐~& -vFx"܀EJ/nkjB!O>D@ FUbj%<[(hcLpK>Jhb2PlG С&p1dc!bc6ը<ܙ4IwX)- Rmi ~c}uxVd? L [JKѦ Ȑ,&n20λ7(ƲbbfvrB]yyxAx gQ?(4[sG^5=r`w-3; ju_aM&V:bŒ>>,$Hq-=Ip]~ޟ%px?n qRgjSpd;kpyp>]PUY.iGicں!`ߎ ld038 g2 2@Lz^X7~r~@/zeiZRGO9-+_ Rk_^V8yZjv$#.%FR7]5,YI;Xhv&z<[0X-yk2'؛3mhm0amfRY ;{vvߜPӥ&WZ3!{%iKjWNO88N:Y-Q]T S:EzIQY A^uypt_Zא9 # !T52_ Z6tE 3az9yd,%ܫFGa}sD퀝*\,%ڹF@ 0*o":JOmg]?A~) 6)8֜+4\ azL,1cZt Pw̐!yK*䍵v ޵g2lj1 0b:<>AHa^YdK mSÄ4Y)s[:kJ6Ľ4v][RNN[ yyNGbʛ4 s:Fx9BHuDRc8;iܖt*kw%/T\gSL2 j΀>,շj1A&VVrшa '4 @).d\x%ob?OOr:ٕPkOB[2$(ѣPl|㯫*)|Sb'?{(Br QUKε"g# mHPX[[bfj,5(6!/D0?*\.1VI35|&(z1eRoCۄ'OVbMW0B _u%V~N"dx"b;XL!PpdF(4oԘ^!P}c7AܞWֽ눤_<5Ì/i#jq۷>uƤH6IKFBnlLC0(ąwlɇ4ǔq,*T+?# ?v$]Bۥ=^FOˈ_]4$gK(2h8P_q+3";ål ;lkYI?H-jy;:mN qO C%QҡqvDfP䠟~QVIc,dĻ5(gd ے|I$6^44{UXf6^f=쬚/L4.//hNI"+'Z.S~?c6(!zK\vA;5%e7qi X1}]L+4f+Qગbg)9^xJs+_F!{&RdIN\X'C^<E< }4hA [2,8L_>󍬉,فjhZ$>I r1xg;gw3'=<~l{dbh,`F"AlR=_TEɌq!qV9q蒐BNXMB$N4I,NpWӋ:/a gMʰ1B+VH  +#17KB4QprLԓi~x"1R>9*S<"p!# 0BivX)k;bēdE*qB'<`ҔwU?Q{5a+w\MO^Ϣַ&$DlDdYSI\5sFˇpz96S2 !0Fn' u5,7:9I ~;_p͗ZIF/R.H@"HOSJcQ*Xia'M' CY ho跂UryѝlOظ(yR1nr?x!v^>S`F/ēol|\{ŕAbFhJ^[ >y@&m>CT# D >Ai̹ >"BڌhCrA]a`C Kվ2pSw&d5z!Ai5pE_9j%`4 z]3Nv+"Lj0O1]+ɇ*(@jb0)3Xqj(\ӑ1^&,ا"ҊO:'E:[OЇhtl|ʟ 'Hr*=@T{v{1gwrz[&Dj8/?-'$%7cc NSozS.m^ ?6Bwތ]˕vtwTr0sfG飦 T܋}Eu&顩zu]af0X$®if:qeYC>cb<7i t+0gcPVu>9s?~u]3L,S4vc=pʀ/I1Z}`oYr|E$5m6_TO!++ ٱSW,VB%)G?WQ-y[{} A$O:L]b!BӽM祏Mՙ1!@vFmr*IR4[DR^ain!u]\D^Y%>4˝Y*TM}xEd!I`az#!#x]| hd`۸d8;7G5[>X3) u4/acHD8h3/Fj/FxQ7Dܓ47:ÛcЪ\[ػC*+pPB8qI[BǸXs奮Gl88igŁΗS["N_z`>.ˋs+Xn3yr vFu#9d?FE#ݒQ'2"eԿ8Џ%\.~`$w"'waGe`,C#\C~/X0. 4mgyQP:Gi۷_w.5ab:\3́9'$E;_J)Q5D M,^R2tg2%ɯ5m uDŽ 8!a>@zH%&V׃ M*qŸ`sj8XPDvo"tC'=LaElG=qO"L6߼Scp2%9~)G5"*]&Y9CYXl|~UtFͿdj=PEfCEڞ8` jPra=5Nu[޻k'X,Qɜ΋4r_scpN,H<)Ad@EPΩwȔoو1-jzҡ~0#@w $mAb>{A)}:Nbڲ'McA3af9C\@@ol GW}monQWj=l+}ʐVW{O1 Q c'PɤҀRE Q^U-&Rh,%Zj3q7M?2X=E}{_XKOy;e>ԠRb~v"5~1uڼ`#3kMMV}$MѫJ mc;Y+@Q.v\2r|(I6?!ֆ~71oj@&H0{DrYڞ61n y2+'k,u$(( =-ݜY 43@E3 !qGJ4Bo9B=bgB=n/.RsGAt x`o˒pfI8DҎN>kr|/iw+5=Ljl+o/' r z5ksX`y oI~8eJsB- pD~ <}aE󔱕Ãz3kb`Fj.3eV 19+LP%N N37Qb\A F FCL<_sQUT|̨qЊ{ŏ"*B/Yn+]"{O5h,Vm}~]2B(4:%U8]4)[W/2mU3nG(cVɧ"(NTwڭ:ē<aY["M{!ό@^5 ENn=ϠJoSv(=yfsX4SXL%!K2X d_صm7wπtDyamQHѕ%ub#ϧ|:}-\_Wu܁ r<0Ze}Vlyz'}8wbr8>^)%l1in,-HNKGh/|͓\g_ i7T HuL;s/ӛn^W _|,ʪW#քBq`5XhN mu\i*" SHz~ z`2#=2ſΉ.{41[(? ':9= .5h;w`.tp)>U# %W7kFa`gDr l,(@Z`:4HЉ׊2neLg$Wmی6/ ~$bIo"_]b##Vyx|wjx;2)8 4ː;%^!$8H`.cg[M7aqtlh.YTbYiUTUak?`Tc}l{I|*^$`VG4x mH-UmFV$funr -kF٫cx D/-Bak؆N:Ρ;^ 9v%wns'By093x\;1!G¹)w0(m:~,V{R]}ЮfXEP7Х^l4D ZhZ0 8V{) JR cƛ&2`dw @3Kk^"*o 9Κg(!"h>!^9|4(Jݭͭ1"WhN_/'@ͭ:OT2TcӻNoS. JR(뭜Ŕw^S87L X(B`o4k9)GJUr0c#OԐ^X5Nӆ< R駘DYI1C_v$=&AKs!yR@,6>kk0Db-;jN{W9b`u9xC'1!Ĺmu ۔a,"43bDux='%H.bKFvA}f#-&kfz0h0_,$`vWY`n oxD L\wrİ6ȿA[3X?īG8h h8m Mb4P*Q:ѳ3gZrYhN+5Dɱ $m5/DGDR8W(:7,/]7yI͹`r|S*mϏ@rP2{Q@yF%m @ҏ_mWBJ!Gە_6KMra(D kcLhM~*w;Y<4s@gX%wf)zPK1$nӜlž[#vzHH" &Vorp8O4ǾD_+d1To5Y]gH#͔%SJGSmM ٘%ZMo@<\Q-1f GKZ2.m^8zǢ.Πa3AEZwbL$-[frߥ>QHƾ(]AL ۮj(FU"!P RE|ˆ`?;- \4`] uA KQ\U{_-8AEoCτѧ6=/Q\1KԌ#B%*cdFD=[[ G#<3G۟!վȫN:Fi Q{odD0?mP=f8mwMz-ە?g03EsnFCH&օUpEI-9Zwu΃ ?q -IrL"_65xP~gXV 靷]eHz{Yk;zBU2;A:2W+Z<&឵3O=Og/f5ƿ?}0fZiQQ j~ ;-Aw[Vٞ*Kan|B O9ק G`IX0[\u*] -s>鋬 eB"LX$יj&@5H4%|d/~Ә0IS[AG%{g胴()A\a v)H|c[#h& .ؒf $F?P3?W;nT(=J;! 0I OT_ڶ%[hTӬ+B2Rː+cX"1$k?ԌRʫ`wX0\80[9yxB<ĥH;hL y1pOsQԮnf eJh'Xw/6]D&ݣ]+\d\z1 P{7- {P[c - ՂZߩa8oo#Яn#2$ ,FtT_ /7>6&Rl,4*~}Ҷ 7gV7w8gN.DNU#!{'Mzc} A'Y &f[ DV~x3,gTo9 yyR }շL~F`skpM)'.v\ r{ϛ=OPK2_*(^s 8.~ E f[^Jw-56x^AݎOailD0}7..:`p: |Gƾ [Z-,l|1䒲"T#8E0Wb22Yo &NMrd %Y Zq7Gy}gxFNFyu(=?''QTPa cEp^\/ܲPX0$~ݟq _!`eeM87f]{Z.H%ǚo_Ҽ*ִWBL>Gm\A ~ӡIs֕9ƪ9&~)X1BB`M? G JKb.ri$)R|dc+P4HGZA R.) y7 oK_מ[y %v c 7mZ[Gj"&:wu!哻އWI2UN9yȲO{Μ6YzJACe{f]pfz ?"F'[y3{\XFBFUk -u.5&FZH049D~.Rs{Lp[X߯NfFmu Zqk*Kd>Zkr8&A@/?YYVVoPXW5֘Q3> .$fGǺ-\9ESJoF~|< Ob-sK e`cFx&*mϺg@ɌZ.D]8~)rA9I ojuĕCO:WBϑaCH#9-q%"wVnc(frBGϞ%͢=AS>q_l*J-3TE)x I_`iSzb:gȚҩl'om `+vϣLBmXޖqڙ`۶ jvڞu}^ȂmNO*`mb>4n"HDaT؅m'MJ$gЉ> [|Y53'l[L8fTn˪xp좪O GI+yn8NL.JL}c]V`\%E^vJ;EUc'MhV*Kg3n>hRnVrC-sؿ\u'+6, DEa AOOwnL_dˋ.bpyyŰ t?faO`~T-q+!K`9Ef@Ӏ$ˁZVDyˆDeX͟5Ek' :?+9c,3 mQCGhy{HypX]Ere1ӛcҎۡ i3CyѷO-mWzqbaz ^2/Y`\o S̨J.EeՃs](|1le`e0P<G>V{8ES't)UF4ε?[] P{lQV) ldD(s~&VWtF]g.!KU<pPV;wAe ,[$72bM(8LKM$sƭ%GRG1_Hx(> ?|@ ~sۘ+*u^bIL2N=`AfƋM>/QNl4| ƹ+#%DH>O21Slm$Zk 1Ч>RS-cj;D{eHMZhb0, eκ?^k/-efɗ3lj"( AHa"/aA?MA/ 镀vMÚ2" Y[vJ>FƼ OPS%Gwi*7+CI8ğ쪧|^Lctv˺O\NSiNTfKD />/+ іZbş@Z^B8 d6Var=MCyW[&K?:DvC6VL~1Yt 3})]OgX=fѐUa_zoZ4OB\4O̙z7LJ+ Omθ쓠;.f ZaL/r]LM:W~/ eI}J"[2eM4.7Z\M.fUӟe %6)@5PɳXLlhCa8;QcC:Cjt H E(g鴸Χ@Wv*ˠí>d|֔ȩ>ʘ+r9"\mb u1'NL^cEmMj d /Dj+z2IUӒ1ͷݶ0qblBh,") C h{lo!tV k=Y3 ?] 5yI{ e7!TDA{5 f"L)^w2 A1˚v6D($Q&C_EfbPD@$cFq4z J^*mv{\ۋV\97X3o3`܆NQUQ'4 g5iiۺv $߰Gf>p_Wz~/367H䓉YŤs:y?j@\itfD>h}tx㙿@&64WPED7[ԭ.8 iMB"^h 8 :"x8Ɏaw1AE2ݹewOig,㴴W@l~߬o&,v~QCb,dXJ48nlFE.X@n}خmr<(_&S5-3$FePe (.ƵA}[~o ^&.] {)ZG4N%~pRo)0fqƘ_Y4|bǗ" m(2Jʎ5p. U0E'W~AꃶK;UyH;ܓvؗ %HyuL7 m>: WkyFOc_}u#XD +j #[xf>)YM rOε[N9-xƺI__ִ=Հ, ߨjFyfh⒯sMS^7g3!NH| r)9PDZ[G:UoA60Nf%|-55YU>,МtRTb SI[Gww2/Pr<6&?"i!8o y3+ K(nT\vYS-|H.dd7RX+IגuR[LWQz]2?l3[W0Mq-_}Z@9NETr 9_7p{'ay&ogO>z{[ #\-qxt& ^dҽΌgoP 5}غgq7^+q)rԣgeySuJvԠư*YD3=84.̈VZ]:Q;ͷ$\諂~tx\誺;T8薱egJbY j tOTc|FX[ P j/ #vybJqT tsRؤh%;fO\/kً`'d3qMo-bZ4/&"e%j 7 6w|WB@+솧4W!@Dz& vIQlU7VuEeO%Ȣ T>rcR%e +s/{UI?*QU?03J<* SW")|~pD p-ٱ-g:L`UnN]?U|-IwX'2nP>cAGt? @Ūbj9eJqy۹#7 [r| `y)b蹴eba(uI('@EhLsʲ"[S@)"Q H>f!]/:ihOe:KD_ # ɳ>r" A=&P DwnYo1=<=oÒ&U$0 @~,aI㒗q~ے9ᒳozC;vr5rZQ^|m n|W*:N^"7cv0(Qp KOT ≤eX8NE`vȚ 9edMe %)y"e ?TnݒX؝5 *b>lBWtܖC2Ps̈8\L7MS":e0mR 2KW 4@HyeϕZ qq6bҹg վ-IZ19TA ! \Oz%8NdDFD &Dm+?FAW~K5^T“ڀ5@!!c}5 ?B2:T?D8joFёM% B၈ THH dX4"O٠BBі5o0@97X#xV0ȣH ƤETgp0D0|,>\}4*1S~$KTJ_6Ug&Bt^H摺;/O ܯ?SC.`hLv:us)r̰]2'P$@/nHOkEՀc%rU95u*0ayt`Md{h^E(< QsѴA3!53C&pIx5Z/v9 8$X >tVs科W/V]46 nDcYJzz%,2cRtM)UYc)KhNy82|> _!1#?$WOF׮-?Hu 7αd> 3F7ɗfr)tfrGQz \MK^`b.6u3D_ Em(DTE3ЊȔj0˟g.= tF6Z38*>8髗W1 3f}2-97%:5eDQFadٳ*%a:8728b>QXlES;{\nGaߔge14I]ŃdݹgHZFrj:>7VK"zzкm5f*+M?;Oa%m;r3ZM͖mwbP[ˇ5FםD|-5$̆? eDҬ0+ bI|cGP}8H]_4KM:2B<_"%+omx1xns߀ԎwP&Ƅ_SS6T򎳐򺄺 8S4ƮyB-CbJ~`GjUkfݚ)折|J6hm[~KW`rZTvynAS2bwrq Ԟ?,KOjȖb8"Dݬ5XS#˴V4>g˳Xި9ED| )cgܧe@8)p/kf qñs?b<+z@\K(lޞ8pNX_Ckv2+%m&SM|SIR7Ɩِp{6auEu삷 -_)v!"tbѥ2)0#zdO>tmٞ3Ͽ[HXFYk7oN2aahZUA+CVƝ17 ʑ+SfP,K ݘxET@K !rlFvaKFd/A+!}r߉P@: \?_! sQ`xW>i'ѳJZI~wԸ)f9 9K^8 `e][3gajs$.y)4cM%@Y/v⎈@^n3DC4 +]V? ;V+I \c p7EOz& '{죀J'Fq*64Xs MtSf5bP]ɊȹZ 1+Scw̱dI]3{Bi-~;J_?N! B\&_\lN_o u\*ޔވCX[$&2jTor%fSzLLCa!@7ѻG!ПDw|S8PoqԱqe_Ѝ e.{Cቒf+ nكաg~ ^x:>SҞ\gu}^^GOtc 2u/im7)1T(- ]u%o>.([OdO|d;YGAЧ#@bITLZ՗={Du@IJ2b,|z8g'˾5ɨF2ރtS)7Mnر"-"rUpD;,Ėg TΕg`T'&$"tԮq7D+Q%dWO{m+PFhYK5d4Ͼy|d 0np̕lڕZ]ol6kehu>{ v"eߝWԪl<nE/ pU+LVqQff0 9!G~i%=.X_@ڧj ~a@cP\T[3n0&ݎRmLxr1bGq/>a4T!jbRR|~[|bmjK=$O-~1AEMkP~LI "x@:KvD&Ϲ%r$/]$(.K B"@;_޽X>COo}Τ7jO-L^k5Bih)͍l|1iiOSQjR`,qW,Xx/GZ#'?`'SA$e 3"۪yfI]<.Xekugʰa;A~Iփ`8?rH~Qc =S$%^eS 3p*iff GҒHg^qﮐ-k|`qMB29 f4/y}o" DwΌ#P7GlouޭK}M71.{+SV]9м{;[X=g|E`_-puA=t).;<(wIl6|3NL0֒D+sf/K.-AIK݊Bp;6]!m6|%+#voYҋiqz#0gFGONkD"j=yNvݨGIأU}efWq1 zZ\ mBv$ۺuWIl?G-d|EVm!b-T77ş0GD>]%=1L{~'j{L8F)H'm>R/= `C+ ꚥr#)M8EG \ݫj}lDɲJxys~w݆W1.%<CM;$ A\r ;&ˌjKa6aޒu 3;{5>}Q[ac;<mq7:ѹ |&*?!AUS0$/\!.c%%teqh.+dJRiМᤅZ|r߇KAf^CUuGJeZ!h'=k2;@;x`lC&qAl)Wbg徲+u`g~lfu.j ōcIqOķ)d sgNcjqe/cZK@\'>Uӟɱ*XD_ QS8(k}_2ٶ'&GCID=Lq:\#e@ -3̏~7P?O뭗C\ }Oׅ{FiduQtG?*E ] n5\=lTBn,2k[nE|r րI쟖BS&Qn7 E wߺPUy-/%;gLC&&[ {dpX%h%;`¢6axm&Nmמ=~uaє`sc|~AE ɲN"i+!G 47&+6N%&GPh̿`jYFKʩM$Ru\Xq9o~Ln.F|S,f~#\"WG+C&zOARK{Q* ` {L.]- __ G~,a}fcg-Rމեk6EzR-K } A{6l|_6 DCg5Dh2-:)7%hW6 o[#jo{Imr~)Z+)! D7{3X qMdyzeʵIs~(O s!yN (L+\cWG3/ÓWypoC*(H-Ef#+29]ҐYDQW},&VB--tV_$W~qfy RPkGw@'=C] >S6Z¢x dn]$C@'[?[TD\s'Z%m-7<93+} Yy AR<Ɛ> ( $Yk|2lIDfg: nga3reя".f0ԅt+=7@`oSbiDM C =ci`D6[W;zB-(#jJ680b9:e{d!IfA_z|`8:d*F#fFa4 ȏos BIJlǥD=e1ԟsITIt; "Fe%O $PsS1_q$,iҮD/ &VCxzm9͖+lle܀ƕ4"aBˎW{fv =E2e,qQ_a}r\a<$X g'j͐.=-"Ŷz`NcLZ=E}J "gNZp_kQk cGpс`ͤ)e+t"I:I])< [)F1875L*.9evCMY75}6zRT 'JA&™e\Au02|s[:S3Pkٶ=c'FQ\vQ=&̶7V=T#^)sO| 2`{9fݏ4bv9üYc34mT^)n4tSJ ;-FI1h(p)vIܬ.ĸ(+Y5)Ll趱MWɬ{ZN2T,|k2I(Tg.g=R Yzܭ+Pj{C:u0%pl+~ùq8uy1?24 Ex ctL4 $dƉWuz3G/VY-:] 2, hkԍyt T[\dR^WV5:7=!T{ A?0V[eI~<4lv} @DezV)|g"sA =S,V\Pa!!2WppZiԸs{i2Xu(@UN8RUR kB$!\\eOѪ2󭹊B[CB3V [{[~b_rg(#*:shd8_&UaVT[t]rP(qlN|]0`v[UHFSz=],[ϰ3g}s(`@xYvD>_}S w"7„xJnM4 !}9ߎ7~a*>_JW w><g۲n~מIp˯rf"j=rUy:M xl34j6k"1Ui7$ kY,cߢa#v]l>dq2 [M#>ƍoaHӰ5Y;EؿSjYD7>FvX.iSBY) ]ʟPCx}ruH-oMm:,v;aV'vZ{_?IM[ԭ.lW%[n4 !,wd[l}h$ WFu:#v|HC[8 ZeAFxlD&S5WN:[3E S4V<ˢiZ598r{'- x;cLjE&Utϐ+t5 ?~)֧ #gX]*x nN0a+q#i;)tufwk6ʨ }c,~ZՕƶB"%~KM1ς ޵g9Xeh0&Դ_vfra`a` ԻBablQ+1|MIE0j͏ ^@V{u7閡Rַdz^1.tF8r'!%h<7O-Ѳlb))`|:^Cr͡O4^eQ8a_}xi\klC*L Nmi{Z9JTBHtnŇѯa5Kq@wq]YUB1Gt0DFh_][uZ]t ,@Zɣm]W >ueIG@qzMǬH'(@:JI38ƸXz < m/lzD5<['̤`3ۊ #_\ܽMN6ju#a$;/N妱Ԍ BL{3 !5>~)@I/h9.|~ހWџDU$ӜQP =Jo7Uߟg[Vp>F۹jlYHQDCgTo7ܶK#-%~Rw$~ӿ/BF.7/KW,qn *d%.lx M[8-CΕC0; hrg2{3AD-P; FC")~(!h.N#B(}M.UiK&gM&hr UK߄uz'l*RsxH+#?~/[:bHX?"Z"!x=1o$fUsEe kNz SjgZ @ϷcdE^tB7z厒l)ИM79 j"t$1aƯ\FeFInԙת( GtKhdkDl\[bk&*Xw%?7@Ʃ;6^"3qJϰ`:\w27`jJV D\E훔O({MIT o+ޫZS.1 SJ@?<ᎶbIt_$C3*'TX='ڶ 5)hv:V0#UO|GK #eHn$o>#肅iRMZx 0^B"e]>y:w:ӣ2JyF'GQ@" oTWNqum1_^Jط}!;S4k[u~*t=B&#i4O"QuP醍CC&ީ=2׀:: ]l.Vp]FP[09 흍B_V8Q f|gM<ﻙ5Uƾ%+ϟOSYMpÚ 2kf$$(eFAG!?D0̶eȘ@Ge_mvaxfJ?]?sgjs3ЯkuK~W3uZ'As~f%q 1/՞SȅӷnXEi n3MҔ퇵gTXgX3|$E4]y='!l*(q9nz}0Hl4)pMFb2xG^#Ɠ׻ K I`>k>c'WĆڞtg !n3P-&z8w?P:S#V,)ZSɷ4 ɎB;1^]J*%SrJfavQ i;TJ?zے 3Fzpiq>_wVT,(zzܗb߯;arI~3W)J5/Q@67|NڛuovoRǻin~_]bر'٣ENz~э lK%5 VT x~[.`!Q`m?gV@ׁG^B -d/]P!ླྀu_y 'Ag^50i PAg\PwSRONR}6e0Voi ǤӥiKk@•=*Ѹn̨ ?|Zr2+b S8=Y<^w.`!YՌ© r &fkC ծLk{IǬ?IkU]-X}7ױ,Gzٟ[214[u|8@֘ eTVՈv7P1ÂwGx .!/3ZqC4춇w.|޹y_Ҳ=!@J*RUG ٢K؆<6`y:k )B\7L"ʄd`_j/@V8\$ klM>+T'u1"-f\ԔQdz,Z c7 ?L'C>5Q8NAJJ1ZC(ŒBvs*zܕqo,9DJ 4BARh7XZs"|i+-#b> L9S3s M3#ZG>VH@klY < 4zpFn,Qx4 E?'.2JS3g{Ό9JU~T>8{[σkcer{e[Fb'2*zAƕg&,}.~K["z XQeI%ek3ط/!7;>0@%b`5] ?| In! |V{%(u}]nяUvewW.>$(l3j^_3abʅiac~4T/aakoӧX`"jפomdgTR@WvM(+PbgC)od㌘{HS:}ͬӊ-9_wytriuШ5!X@ chz2$mS生]FpS4XԍˡRL~zy"ͯqwn]" )F[ osq. gO~ǟbz9nyDѫlx:Er/3( 6#e4#q:%%W㨖fk| E갧+TLAף֎MR Ӳl6 I1^ģPw^RNR)`X.=^u{  p'k1jڣTEFkѰ\xE)1Iݧ.~ ՚e=9-$0uI{k飿?W~= 36N.9@9o-T;ZA#v_ 9l$fHSzX4\WGlAJEiIi33CK>sB|BITM5I>_,8 Έ0*z&17qqt)IR{=yrэ$mPf1a>쓣"` αu#N1fJڣϟB6 acו8ȥ/ukfyMƪjXď-XpdbWӸoXxj 2A 7ElJ H-3s!|=(c{ec,/PApynȢXEΟ=C G#Y_RpbNljgWq fv ;i)>AaD8[l\? '"q>姡G# e?7>&9 gXW)5ZO@hAl8 Tŕ7|f݀ (F)-HnpsfTe"I-bsLB S 91H&qy.^g}+?Д]uHA9/"8Eu95["%ݮëI~,nZèL:,E W{M<P"T B^sV@< \ )sr U7pQ`S.Ay_.Z- S v{:RBI?R8~fPD(Dx#ô 3Tӗ}%SIIV,wKQH"iPSk<)M hTQ!m6)ɭo w#Uܰ/eM+&X0OR'a5P%R ÞSo?TV,@تu毨)JPEaHh!A d,6UAۆ L50ڟ/ʫslltm 5_Dj[Ojnp)8;DkX!&f֪yU"xqwVb/d1 g5S*3ι'1>e۰G窶.JVBzsqॽ9SN-#.|>h'ZR~1*:L@5lstң )_@jt/3&e'=ܘԈ0xسgA嘜:tG1&+zhz"=6Tf)C{Pd>X4D]l%"uI4py9ˠ\y*CD?1|Df\'g\)кVX^"?N` ;F_2R'X MUO_{vjxZ@. ةu5@DZ=sx#n`5Vη9,Z@$ȄCsl6HL쿡Cf-^-ޭy{Mv1j`Kq >~ A:= g؊ר(PC\3js:V^ 4+> xwC*fZU\ɜpӦڶ(X X@{j=iPR'Lщ&CLWgƦwz-I;* @e>EnrY[%1L;a5^TYoZ<_4}'e6Q^Nef@5QEWJvE~K9iycڹ+I0ON~`AftHbW1.]9L;pmӐOxX. bd`h %U"3,8/R#NaA\rZS?D_՞gcXDتqXR3qj FA@M !c_ V[<%LCv=y7A={F{uecM5alg ޹|SS`ɼRx{* `| WCE۞Qgl?<5FNܪ>Ksw!"EIB`v^)dzRl6rFO59a],i V^v}S^\t~Ah$̜itse5^d8HoO̟C +fj&ecUxM%V`i[Ly(TM,/@$޷w,ǁGv W"U=J&]윒 ҏZ 'AyMZAQ-lʋq1/DߺaC9P5-DKrѯ -gIv4u;@ +s `>O,3~4ȧVwPx> ' _)}.F@ ؼ{y}"~-_oznecNZcZ~ Lo㜕:-g .2۠YUH- Ђ }5gFai'ݑto%>GTm6,|V1QE5p!(FE١Rd CWu-AEߗ-)$Hu/6mKq+=~P::.0 {$y8mXD+F,TrAͮJv=K\ ]u]]ey,B/k=|$_Ѽ r28pV]`l .c rA9MrQlyam2i瑦dkkr&ZWIȺܩe~>0f04FP$҈|]dv;Guz ;SMOEO;Tp43܃#ib2 1*x1ܑ}A:pO^sh^[!!A*W1G.gO\OY ^CvLݎK>\t $RWoɱd(Q hK KX sAb2@VV4/^jX@e Jn,G;2Dw("H#Ľ^h$ΘZCQ?L'( (6 KDIcқbc2d^UE700?fyg[Ҷ2|ڲms/`2R~0;"r)G`ƋW9 7ԫt :!6OU0ss@ci}.QS1cޡȕf* Z&J)uk|猯Rmž)ڙSQvעm .f~ȶ -GG,\z􌷞 LK`ndh`7F1ןIM tӗzÈ q#ǩ M../9I9c+=5o# ucwԬjhD\2-"QxmE %.a=#XF 1Z,Leks~?r Kak7788oU9^2tPmF Rͨ C|/osWE/IA>k ;&7 2tdIE(h!fwp`Hm*֗UPTZfZFI~ջOl!Ejb)nGCBG)p׳hSh"DB݀>ig=cf3 E^M9uuPÆ$rnwf|@zV C%%k׼zmRx}M-)J,47 v_h'n8^AL2xE|Z^tli\[v#Fv9l˚:WDŎkJk#~r:l/>VZd2 ?0`s7tu?>IB9=y,LqU6XYa4RN!PӔm>V ԞO'%F. ?rz|C^s)ITAQ6aeځ~HyP$r)".Cn$VHWuF {a?(Lkfʶx,L!(w@L@/ L+qzd=fD}sw8yh|FzMKFo6+ip_`p|͐(qײ]s]-Zn2br͵~,K$ ")?$qmǞ\O0j@05+}_ 4i\y׾!eC^]yzI(lā=ή*uz [tH84)nv5JYƞgD,: 8Xo1-k ԩʱ! `Oɩ{q,vkJ I4Ms 4{*o!ƒF" ձ _3\]̾E{u[5Pl*L@v+~"Yxrs !d |ssFGlЗ B6Ccy%\\g:{+\>b/j;)_/HVxLaS td?Jm{XZZ#7U/|DECp S-қԤ Gx|YeoMh`1&R0m|25Ac126ǥM:x.w?g] H#k ̻>h3=och;:O2P铷;+PjEViÏޤ"7 @ (Ԩg7Ĩm}Gd*E)('a #PM_mXLA9}|9l6%V9G }U Gl~ UPIZJ7V w`e7CHX_]8Ifk3 q*%*H J w,.B͵kӴ:H颌=َ=s<%ܧo%gOILgRW_$ v!ܽ7,zJ/q.U'S S+%' y* _3 (9-F.16shPi\rFߑGoĉIT 2Ba+r^-\o6!2(𗴱/N&r{$6>7,!}N Rg$eb*pĠKm9XIؽ#Pܩ%LGxu􂪐ˏ8Ӯ RᎧ5~%*lN%9i0 Y3U1z0"މ?up8AZlПk`,W$L΄i3Xóa=5@&}|}R"qcR^+@)b5H?b /DL[9֓0w@fW u/ u!! ,yGpOӵ[DS2,coMQɟ& "qíf"kd^:p.qn>2ݮń92ouҟ*7k vS>,qg)- -M0knl x9syK(Gmf3a/}5]5ۋ tM:.p90v0EKƅa`Cl^J<%iC'9['c\TЕ !8Toh{,;bo2Mi`:RIQeEZ Q@,ӌ3S@+,D1B!KSX+PLOh0_P-9* aX/ЍBi;?׈7j> A@MY~z cs) C_gق.Fx{iG6-Kk.RǠсŘ50)x˻(A)9vBJ1pnc`;^02) 1^CZvX#%/暌C0툢Twv+ȳgڽH ۵5:KF#C240s& :]B-:(^]AoQs_#^_l`c1U2 V(RFlZ Ua\HthX+H| '7:⯗TƇld\~wJuȔ{P6~![JC{\oNODE3+WC\N>zHu?]}\P9$GS_9:66tiP<צj_K`!V-ө)tr Xh9gq sVݹBٽF64 @}'I!sB%2:&=l?hw~OF/>W4'  kV&X;loU[Oafbyb;*W_6%J%ooqt*fZh6mgXZXU-\t\3JeozR9ȵq!י2p! ၠ$U._h~+y/,~Kș.tU盒 PGBU90dy;>E}s43TZyXo-2]z"ubQen%27Ĵ}?f`}!:I\i"ojw5U.2F71n^ fİcO %P賜kn&Py|'LMP|Sxl)Pʸ0V86^ބ1w*rrG}KM|#TݠLOQ:8h "S=D5F:sŴF푖nQMz=u{s} *kZLrUh0כO6:p] q]WZa>6iUCo=<'..AIx8ΐD`yˆB?R|BC&^¶żQ0@3g o5]9%O}vn۬=xk,nʶfPObն:ՖgtRsnutD^A8Ҏ fj\4cCk?ʞ_kVGkѳp"'KcN-OYl/JgW'W!w,)瓭_JWu<"2@!:|tIH(TRA2$?5r9>꩗ ya?խXG;zN '2='P/QaL0&}[ף=+W{:Ô-9:Y <t#E&;] 7hTUKXOqijzwdC%Yɳ%℔]=Un}]QA-cʟJ5{Ɣ(›$7ut=:ODDP1Z[]|!#yz1BJfX\3|k@޷6 ߬]%@'#=n1 K}?ef/Õ1dd㾽&ZA>֍+>GCg6a[UZNT+ιZz|^׮\0.g3+@$ HXo͍ #]p15.j:?APmMh}\TdЇAV>,,1R栄!~G*- 1ܘ4/]@iHB2`2).0 _?)^`Xz zėn؀c}IelI@7#(]g9T@D\ Y_f!t5r(iKNC_f԰Jn(/P>QV9zYDOQ9G <8BG%XN[mTۀ/-FaK]6;a:A;8]+I-ϿM-C✶W!o<4}kѸW:QJ$vm<*@lU\<ۃFZӛjL>WmERWM vv+T>m8$dDEw„okkfS)OJYyB=]FkKز=Є՜CBӭk؜?*xKEL: &M\݊lb#s|?"L' Aѫ];4zͩC8f6g~71Ħ/-hDQB!RpH)%( ?EPw/ J"#I4GY 6^t /F᚝G"-8JL" &3}z5_g|MGX-J,H9a>颥 ]]~k)Y0qmd|-90\q&0Nbʨ_j{0+Ի5-91BqjeX'sX_ުη +ŭn269B931nq[;hB1 bu`8CYySR׬ߡX=Lj-V̸*Tkf!$艌dSiP !"B^pDr?̓h=|rvL=濬(W+et@HlyCzؗ(Ai ElgWy/nrm5.vgch, ThhtidLԑm2QXnXٜ_@cV+ T6{`@ka)\^Sbe@Uߘd𦯘UWIQ,_h~'_ OU ͶHf3\@59ẗ[Js(WWmsJqr>p´k(#Eu^!a&Ijeپ&;pvʣ$Nb:$yj}Fn"):}nr$WðL9 @,7ohX#gRw` ?ꪧ{>rUt)L ct=a.Cs#`T`W'm^rw*>ҫG|Ȓگm.=BF%#7pu4ޙe#]vtVx ԴRD0{ٶQMP=&2K{Njat`瑒7&:nc̩>pXJT$SE<CnW۶d@\UYSn@Dӫ5 d\=ut`魋_"௴:zOaQV1$G# N !zJm }&~þv/+<*\`ʳ昣<+/P[}; i?[b"܄K#-ә2"EcE ewKy'Ǥ~Bݦ0w=da8\_B@-ysq?곣2yhtWq&["o *&D֢w6p+ޔBxlDlHduhR&2=ENأldc j\/FM88Jbot#{d"Y٣RŜ? 7%B݀; |pQE{gx?Wwgi1"dK\, AiaB6Lw8",fcx R/6yt)|?@+=+td1qp6[^tqeUڠ, zօҳ@IXFVۖi4Ԯ[gzz&1=ԵÔ$(߅d"9{*yYZJta!~:wR3dr'!d1,hɮp "v7/xa`塆:QY*ԠMZ$_%;W>X4G!o\."@CkFzq~GJc18m? Pvh%LZx³ZƥN^ v22%J+'oq!tC,/^,> ZahOq?~=[+g !>']N~aY#"@(M/P CL"f{ IR)τ.a]t>Xzw֣P%W]= _}tj@E/6L`9mB"LӫpUM/؏M" n~mT"-I{MB*[-.5'v nZUdΜJYaYy_u:wTL:#Zך WRKǬ"`tȭ@3N(z?z{NNz'NEoM̨Hkd& q-*\]Ose^n~wkh&j3o+,EXBQך4|Ѵ`nCn㵈ݵ֐<~K}yH0 Xi*':nܥ)$ώjtJZqevu"~X؏ ?VP!`މ.`沘? y1VJ7',alkyۆ85؆Y1ff҇t >H|NR oAѡp'dβ,<_SDzɦPn&;ٺ]k#l\jFӈ*buGᄌ@u=N~bU;4Nbr~4KOꅀQ\gw60],W̉tIUP:k雩y`7H]l&FO$h ⡽4gܢYl6wT_"=x %lFUWXQGS*#f7`t4}B4#97{5Q^ q>Ofdgl8`FUWKJPfИ62raEsz߼6S.X8~! .AAS׵rDR%RCR5@7|Y;U ,^$4E4} lʗ9S_/2=0SV]ЉJƌz[>Y6)LojFd ՘-"? H ykR q%ahL]~ZznTsdgV.)孰ԛ ,居WԶl(8[W;LBR9E}`CrrB6oFsb)2~S8'S'i!?تfJAYhhcXm\ ##Zm]%YO6}b W.p{$Y 1ʣ9m!jTwo/3Dj(ͅXOSWtu3o͒ˮ`v?~,4y8~yYnUlNzS"+9";FL0l_._Rg9^0,nrʺ8B ei H_e$Kf*0fהCc{o6YM EGۜN ȤP?V5twv'QPۓmJA!2ŴyH!0^O}n"4s.d9B wy>ca'3 -F +_gwn=A!e9dTp I:Zm!{ѻCui%O9lϳ7%s~wnT`泥 Q|vF&K?1яV70[Rbv:D}گ$d2Vɜ;[Z0GAUKEū,< NiѵT|\[S4L 3k*iv95Pl.J\8ۣ[2B &/'-/yjYT)` O ΍ۋF,iM PFtTh vN#Q5 {fЋ\'aUlq"v滞\`d3~Q#|\E a*8QGQ2G[}r ~3̬C:W [ej L did%@\eCdc\Yi!- Rop@aDw>oH s 厯^AVbPU+%CpswZO6=Fh)dB.-4u+=7ZS<>8*_K`g6:vHk:P3Jy8}LYt c3؞>s`:_1H*_\!qOw7s$?qlIl#,zP'ЃK" #&ϡ<:Wywvۘ鉌,RfR=ȁBÈVR!K $H|6bl2ܳY/V]U*D X$Ǿz˒E!LTY΀\IZ5`+}{qOgtjx;}Z,`D>QiӠH/W3tt)שT,SOP ߷\D6-"tQ%+Mxs~{u5DŘf `BQV$ם{ye\ kт=יedkItb2]~?,A&}6Ƶ!XJY%Y.ٲDC]Hrj4>1mQ:H#^F4*(Uq 7%r;oԌWY,OZ/ qg|TڍC p{I~+RXs.򟋱;[8ڤ˘qNrr I:зzZИÎ^޵?PdB\$LZ1B:CLEiY5ő\nRt!{܁h˖goYk}\G>C$nry ln@CA2oSp6ڕT %+:I KjBSJXt/)xښ(P'IǺ~KCɪEaQF r}su'FkɀE!7:=gRX+D﫫%+u /W%;odc+|I@\>V7i4fQ{&dO_,_ۺi4oj<73sr@M8ZN&g϶Q 츻AV#>K3LZ 8b?iUZJȄZ`F/L.^|U^y|@>P$J/uaˣwʴ r3>mOG%$bxyo ߪn|rikiL/aI= % NzFHEl1@ym JSNY$Ѽ6+[Pn//`s\UTEP'#H֣ O4H{dUB: :jw pvx7OਂewqjN(nQo>I@l? ?xp ϦP~c3,Md s2v;/XE֗?ユY :lnž+6g5vjNr.n} !#p77NuxZKˠBYuCfƠ,:6i%'?;aZ3kVx\5Q3S(ZǠ^aCZimÞw6${و܃ +yg!SpAcR U[9fqrx`l0~J}PnkXRnɻ虫5.fA{[ ǁ*ʴ2.| GתSE}|kVy9'<.igDMHS|ěJ^ܑؗffܝۋm6ٱGeg,:'pG=2hb?L]1XJ0 p-LJ>[|0ރ`7;6`2,vfp "&o2|'xl6wZ[,kwǍ74[!zm +FcծgښBŋbꦎl4~^bF>b j#$j mqh$p{D߸3%-ţ2w{)xu~ iּ:?Ye+{bS])glL$R\6aez[rxlʟ);]u(mO.P: oHz|K6i:)Æ~wa`UУb-qnC+8r%ld3d$Ӊ.$*(kpfw!Mƾ p՞ZP Bx~0 +S̩c \-Y(tI,Ш>(gOS 3N!QɽӚoc$=a (~BH.(u;4Y؝cqß E ũ쎽M< Ю-^/՗ wK^ S:޽HNhlZ%I0GxRCs1R'OfGQ-]$Z_l0&@w<, lf}C3S>}. ];/Srz7.&ٝVS=.gAW83a4i >іh\8gvBbҳlb:se !MD5d 58gIHvg.` TvN4pzԌLIݯvdzX"BeX#R/~RZ١G-D%FB%5a&֑7Pc֑?0N$+jt9A]-ZG#m`9@\f,3LUi.=Ԉ-Xxu9>a (.nnJ5{\ Df 6y6O 1[ݱk[Y _bm& x)? n+@/\ěN(}g@;#c&[M &0$7aRy8{`vD?sk0) X|xIq1ܯߒ0A=nE8"tTDrhH ž|&Er;`F7ʵ.)7BzNo;:_ _qDأ)3'"ȹXX=M ,y" ]~wδŐuZ(/)+^}ne#m!Qy[bRwѦlMfII?͸.!@z EXXޢՃsȾll<3O+&B;W1$ fPY BhwڀH2)HbDN (|iuqFSnzRkCB!x!  f݆ H2SPuj m Q,M Pg[>}EvY_\;=g c%ٻƇFiCua1C-3ÌN;"aR&.y:}fZ]W!9d8pr_sq6e=^c{?WOof+^X3d{B_zONr4?0̥KM+r[eNKҾ-=\RАڨm*O~&88t95+]5XZWK*Y6{7a(C]Jd6hk*ss~pyJxy\/uvQ Q 1b h+ܱ|_oW"S'UӾׄy[oB2qm=j.6G$O& @=HE=YІTPN31x}Ex:\X(c}j]gʁ/oFת9┠Tl  k?]J#>tG_ miLXEeT ɶ6DAqkuj)QQXgujo<TOoGx,Thp{nbH|<٦~hSZWp[a,V}5~j!=h2Z|PZnAaݖ-QЀYT@wF a9!̈e3Zn<̾Ej64jVoAYG$F6euk/7c˻>sv6J{6ƪ#$.Tq0oOhҡ> o1x ]_1引Y T8n&b-pnύOn UQ0'Pp!ɳ(!n1sXs~xUKH^`}5w 9Q"oWnָx;ȯ^vPMӛz6W8{]-?k'dWi}|3oU"p=ɭ#k\u+p֮4xy.Ms6+J&p1-OT*ǕFt ,aVsiZz\kR*~c[̀*T#Q!.R!+@fH9a'_8_Rp,G:}Xp?3?S&Zضβk[32PROYBq3*~|vm|ndH2ܾ1>wQqdք]{rQ/]Oɚf*U7OMwTtYP&uRǪb>v`EFpSrG~\A ye!a(Y068ə ۹q yb ZB"rPA@e~41z%k+]AI,z$P'5IAd/xqeBpg,ߣ'NZq _NXuTyun F{c6W ؾDԖzC-" /IaeeR$}_iHws51JOoֺL}ۆ"jF23eoy5!#;_c'RfǬjd6+ꙦJc$b䕷vQ_rF؀)/e6w,Io!w]ǞŲ@rVbح=(tE]2o;m(4Pղ3"eR{\Ea@ƶ_Fc>m(Ӿ32I1G:ݍ:"uyT}Mcn|J8JU#!AZn#9ֈŖNxwh=STx3\Ho q%p]ɸB J9G֦%7: X^hureQ)v0RoÇ\]QA4xb7ؿj-]A㻔C𚒙+Z^$f`1.HKQEDIL<=W@.ytBz/Z9C-xMXI׌(7&sk4 p4UhM\ydeκOیؤ܇GZy+q,jkR0nnG&~ڇ;r0ҕ]yWmw?'}9x Y(L1_oE2Sc5b2lZ1_ L] ,Xwў[LC\x\<A:ctcL PdQR6IM41::AYN"^^ȓL]5;@kʘ:WlNb-f:9 a7G݇0??Fb``1+,oʼn7gQQD5OfrH;jƴlaboz$,\KrΗ7 b}a'Ўagm?.٥V| ՞¸0(sqŜlYV:m 3N"^v2IAnVdu#&xȩE zG ]z0s|m_0l-#2%׍icPh횉Ѻ|$s>3M{[K` 36 -DПvOr,5vAT >U`Uf{l)5Ip=&rnu㈧ٽIq+å$e Hffʻ*0\!%9|Mj'+ASفUat7#"zYKv?a4˷]"\y y$4(@2|)pzHV K^j2CzHeu"zjAwJbݽ@nˌ_w[,#4xH$*jHݱKsX".25{t>ڽ}]xšY8\ >VFp*խ@|H([ZeAF=(XM}"$*J:[BNW;mk/%Կh 8Oܭw$Ѡ%%$<~nN:=R%SRvi7ɢYj{.Og@y>?lE0}aoͲ;NaLO8T]^9 vdĂ6Q>u^GS3HԂ3^0xW{,%YWf@\ :g\<&'fbMͯfqoIM\·Sm*W]{4:=Lj՗SX*5ם?jWߣCUȺ\GD;wk\9FW%ch}s{נEiwx[Z'ƒ24pQ4k2!` sQRFDB箁+] '(jv5q3 {;QKvGS;=^T[4W$FYz]T&+ao~9H8WrpGx XbVĒv^#$~ljUG%dK$_er ['ވ#A| ͱݦzdmܜ 9%i"7bq,U ˝$qa~lXsBPZ j g AV↾f<]'!𰜫 &)EkH{ 2,gET{y/ɛKS]7>8S`++|- d^넩< 9YvE&,'(rIZ:ZEDٶyñҕM9DSe#4 ʟ;>2Cijϰ" zi!EbTBYq.m~SOIZx|Ms>Ui)FC Az%-xd՘q\LaEGnA:Q`c̖Yg(AS^X?VACX%jXPѯׄ04jnγf~1UIo}l"RF&wCxTa6&&=9R1L "PFU?y6܍XmKH,¸ TrCMƩd z:Yl`9ȀԺ^p7Rf&@׿1ն+ /7VאuG\7.] (k w;SdF~Ħ@4vǻ֧dk+-r,65 vW~ے_4$"[XbLd1u_蓄Ǖfʕ]s݀ (Ɯ lC_&т}1Ocj?h5¶JQFխ$$Sp FGs-4r['ߊ,m TT;O!lOuq2cpޢ+4*cϷA32s("]ۦۓQbB X+ 6;V'AZi֏UػU!Y&r@5&Ԗ͑5"@{uRrww+M28E_s. c+V3CXpmFrquɞvbqӔVWB7Y  $nrH<ɄmKa3Ы޻A܈ڰ 5-l˅5j+F΀|P3;>VGٷAo @(-V}bb[ }7#?[/" 7$ HP[J # sq#*UoO_T7uXRVOs^r(J ;qS,$lJXxUQ (tAT0R5-AkJ3{M#GS7/~yr6`<*]jQS뽆KqeHj4Ap8ϮtDbkT8&SӦ.d KC{٪, :-Cݹt2K zm#x$o|NJӞ+A^i(7:Vk(ȍ+] ]j\ӥ]Zd^{ *1Wl`Jq {!B~xy߅T89Dk^IPq38xk9)[KK^ro+$9"!%u_ZHQaızKN%gd,k )9&U[Sz7I̟)w[ |D}Cc+wߣYq\ MąTpEfvXQ19Fߎ0~xkju>Wy`n`qOJP7Cyu3JmWQ(sI*^첪N)m3Xw=EqGB[wG`9rij]21:`GSATxA ǥy2~۞ qUF%T*r*?7u#CfyըP$3 PUwib"humCe⛕*3@c^:[6wDŽ1dEV?Q,eX^mr5Vqyb&dd1?ns5&Z1降: 5;vVMK-}}vt8h6"&qM#b9}d; Q8ogmU͸r)>.՜ Ѐ;hЋHe_sWD(64+iAL[ ,!ok[֯p*+(>lr#[Iow5t'XLLϒ4/J*G탭Dи 6DLrA7#}W7ƍjcQu^DF*VT /:S=[rv'6#=ѡ\G~${Ut4P3 rZv)Pd#B4y#HP>^-J 6L\icUUHXd;_e(ָMEz7(ZChq?!ό0ٜJ}|\[D%"Tz-HaH>*Jcu%#}[}"چVDNCwL Ng¡L燂!BaMrD 3y U\]ClVo9.^sQV` *̹M,pYl0 W?Y heO\%Tt{3fK.vb.+MS;ew!o~L* :/Q  JNp4sEĉYV>ZʬwvYSq .1l dLZ/soWAO JRJW1\p{:4.59KV%o~!\oE5G,uּi.cRh!(?^Bgb& .< *i9MI-CER-⠳ZwI iMUA,寰hKA[Ԯ]+ mV{)2p$1ٷCfwV!ߋ9R::)pB ?w%Ό|%v05~xBlIxq|fHBmHgF P{{EP"|#K#6o5cSD~R0SS ٭Spqv~vNt~m:eAZ*, ª\Y啳ZQyh-8 2)QlYf $~O_+hj/jXעpeUlyFf[%[F=e/5% ja'M|Wr:=On师R[i0GyAИܸҌB{:tdߦ n{qetop6;󋣗rUMDMnAL a3WSg͊^+j6LR=iRIݪ=Yp$Hi%U]~yJfyEh)T^7!_(aিQU+XKBTFQx4mw(QLH%#u HJdlZtK}S`ŒQi5Y62/s =b^B?XѥN(Kʞee5ojZpX)BS`sskmF8 ˜E%xgUpn~|ΓhnкgS)q2:<WQK,5%Dw<^TOB@qlMA  $Qi@r<)+t sO} pv>3ɋ97ؽNm47mG$x)S$KB67=g \k%_#M9?.@cYmTI bwdt9qXz>ܶs]IYDx|>T1J "y. UP{o&og- 4>1Ş-G]e++aȢՕ<1f=f bo6ҋM֏Zጧ7rI<&xDoHوE;àG˧W0#8u v{` ۅLÑb/ȢΘé;8>5va~  ,M۲0Dɟӷpzf8\.4KZ@VGҥie2pPbz3{Ob$OVY\eXpm< 1Au [Hp ƼB~~QbYIXMiw6U>r/,QfM+xZ.l0jNf|7J$?̘sM>ZYބzJAE{IH!AҬ͌'wągv mw`^Ѱ#cquA )(W]Ӏ@E*SnWB!݌;Ƙy 3cetȥF}'YӨXZ#Q30q%oo9ޏ iW@pv4KmTh IBj&2o@hz hRcx-׸JIhgxam{elSn'/\B"U5k{o!'ʼۚgfz32yo:jN;uf d6ZűȎՒ!ZQ>S޲b:rJT^ㅞIV: :M"8hMr)I{%Ekibhğ 3v^?4L؄6nUe`%>*IU ktW;|@_29[L%ni*| W-˷lİD K.>2/N1쒃hZCEߏF<bYW,VV?P@za Bus`dA/< ,.֞ΔFH3D@<\ޝkm0T̛WN~pjnAOČѿf U*hȽ)dx|msVT`FakC_hB\?SMm:QeЕH&53`]W [>'L% ;'9n>6}r jWSo/irIL \V c?_;;hA̘lOpBҰ%Zs.5l`uOB/D>PlV 3F{XM1HVXeP0X2v11zrB"'Gj+<&ן6?;QpUtG왢v?a/J$/ȨP0'MVb39\hW)r,DBy/@1dM?uz)ǡ># ;-/&#\)]̀.o'&Ϝ-}r`d(B#:KNRvָxI-1:BPrgj灏:vM$36Oô$xυP:\F䮘 Fjh&bolʼKtf2 /Mc&1IùTp Tz |_Q?pf]ɣyϥ$?dkG-z՞S `O߶=rצH~M|+7˚L >(Jd*޷7$NԤ"i3)rja?~/"`OjfrizJR$U 8ʚ˜wLAV0_(UE6]KkJu<;w9CIFZBWP4DM_Qq +#0F\N 3 *,_Ls) hEP5䠊Go+tʋ\D3L+ "WGiy8z=$lbl(g"W` 4|a^RJ],֨ ζ14W 2 ]gÂMXTfzAdCl6apGq1((zxKؘ!R< lwQ`ўm$w̆8l_EC^~A=K/z,߻؉9ǥ@"0H//_G6n(`#]J"Őxg9/%}x{"Xڄ&[6[" <+@zlCQ )0%҈lҔFͩPf*>4;X(6l5běz-T[($.V8 + :LF:lè* =! Y5͆oGN&ny8>S$ٯF׻C a (R'_gC) ڭ܈s*_ pǏo{OYguNDIawgΰ] -*$p&(#%]g'9ĢDaljUD~GѸgO },Y T-cN\_!#p쎡{0ކ8ǴQ:1z띲3$襻賂$-~8ER2q8QB[ⶌMMiM6 `EbU 5R{ @&dU7G*[U(T:pvF(/%>̩d}iF>dtXtR;%:S=^<ڐR+߭2]K"Oz y*Wky.%q cX?67 4|N `drɰʩgLAs|q̻@b.KFKPwUTL1 Crm7lz mZ0O`g.z4hh'ួT޿Yp`0TKJMzd[BWnygx")f7;CX~xu`/\AjKkZkg6i%i?4zCV:O?Lī/23vHm 8=^㚊kn:@wT k9('jDŽ h!eV (⮣43:vAI"=ЊN>R~P,QZ7HSS}`PHhӾ!Η|W÷|_76|.4PSJ BXkC -kW|Wrm'x,H 2lLf/2iNTIZ(NG Lk <'r;`pǃW1-vv|T/2ҐBONMY`8k,ZIjVas͍6r 1z'Tbtʮa^}1cJ%H9E`.,.YfоnúpGAgzB*`4&:R]kTx]iHc#y TY־i*B|$x{{YoĮR xf{R\83]d<*qo[@QNNpmt8xo?=9m{VL?!~9lc-Q{Bu@LWW A*zy@QȧMd711ZT["{Ե)cW(*]H0ĢzQtk9Be#J |{߭m,Ҷ2^D^N(h=cԉm vr7Nn{Ncpr9+@cjPRZBL߱00}c|cJSoS 5t@S 3 5ZH4nb !9;h#M6,.'<~xt]#&4q?ea`\JJI0B3%z FU&.ȜogkLػ $)P{<ԇAԩ1U/@8#\s}PWxI)Vnm͌vy"pIB`:D i1o*ذȠ%k(ṉ,9 shg0Ģ/4U2CܵN!\_g/d?tp/W@D9\[Pا@8G1~5#CbZb y˛EEgağ?t{b'}I Nq\ 8+*'w9ɧBOBȐIRnwCbNNTԛsԿ\j-}Pʋ>K;^qKτ&Ze3P.F*\kܕl&䡜B9|ug [T~v3֥4W{CrfJq 8>hO hADn9Э9MK=Iod(U4 롬gYGςeh܌ OlQ9 up":ޖ4D7d.5-oQӱ0:tܶICgPbeMBcםja~=?h#<îBjQ¿tLv ʑ0l)EA`S}owV/-`=~,XuTFQ[( ]KpHqC蟇7(FԪ3m;Pnp")e̲yKhOs1^#ST%l@lѕxlMtyJ[*/FE%]ŽgEP{&踚á][ :X[y f-S?ZbǕ_FF/\ qO9Ң@#j(8W%X);I%\,v r;Y+à/b'Di0 r{)NR&8|#~3p7sVjJ-D̀blL9/ Y8W~?vC23) ,h7bBowexDڡ0-F5a#f{6Ie&i /cK , ⬭2ѿr=HN-JvԖmfG"iPJ?R#KhtHWuI{W 1By&L! Fz&KL.Je\Y'$3/8J}ݹئZ|MiZ='JQ@_ gM`MKՑ=K+ד0U@<AOF. F+x[oqxv ,GB*<`-JOz]k ~dCJaJ+aml \I/D͘IȾ/X(Tt i? {̈́%^B6[n9vur=yˆx#LRd)k@%۳n?S(<^CP'nxDXfATCq]OAv !;lWi= 3(y_[|cjR\y :_1jy/q oBFުn#L)'#咁v991OUʓV}^eJmxڄj^ XS9o"^i5N'qudiWx'RX9_%¯A= IяAi.QD;襖8*EtU_D8W[ل^SXw Xq&i;_n4a@Ojۼ),E<ҙ ;RKT-&Ќ=SHnd!z} _c _hډ4nb=ї !zC"̈Mu03I ;Sa1ۇ:8INN!wMSQpJ:cc:Ae9fTJ-{w}6Kk5pHDqLZQ2uU|7xi1ɾ3=)<.f` yM]Y>tq>/qZ9q0~luhq [W6eD+)(3/tj"$x\C s}duR9;(,P&t#678>%])4{5fʄ76b+ *JqS°:ЈxeSh<2osH7qM=:4lc] Bx9'WsQ=HU8[Y#@_b-Sy(7nTZV l;/X & a?e:O\CQj7.zEG`6ަ!ȵ=n"1kf`YxFCu(ןsكlvv*zbBihqĘ1L&7DFc~$v.è6$%l֋ks!}&-Cķ$^t VWLYsekl,S-qZ85m ;;*I= 9Y">HDs )*8L霿}! ˛?r7eOHXv(-·pw&kf!m)"sN6[H?y[SaCw>*Eg2ĴeSI]V73@cHj$k A^ZCbN㚹"8=fK]#_ VFgF Z!;aˮwnZ)֭|p}Y`AjU+=Pc+|1Xv O vɢ RI'?/EH h/y2#Z3fs xŹ?&2jI6)}g*}'Q+l8x|Q!amMbݷwg4g=DN6>VN4/p$+:Q]ӬzGD,Go?]B0Kٽd9ADH77mޕ6\s62M/cV'> -kO ( LՌ OJtqE')$ O[<7,qt([Z>3Z?(M%Q?g8iąRK z?JŒ .Ih&v,l{GԇwQW>e'QIޝ&M(Qj+sJ0tj¹Ypnj(Z'1[n6*OɢНG/~߄N6\%񠫞ewL q} $!)O]Fq4C/ L@?rBsdZA]T=mCP8kТnn=bCre{k-(9:Ѧ.ಝCy 3U‘>{$$]8 6,`u,"q=ײ2*){ZF g>㛺~H;>f>:mpIu )xhkf+NDʐ3Õ(N۪@1%:bltGgg$@=Π6b9R7{K*Z.QCFBN- Zd7ګ?7xifubdB$Hi䩴U年+!'f%xLm@Htds^ AU}SC=:UDՑ)$q2 gLޯl*Xo=KEV A37AZaGC)>,BuT^"\IIՑHeyμW(+?4)hUQDG x$f˸Srߛү y!#8gSL.=G#p8 -]ktG8TQKj"y6.K!{J/`>s3`'}$#Ʉv똹h+TFeY%X(-7ȏ0?A2ҕ^AߜK~ $WpǺ.1EZg1J N3g5O49=fL縘qENd"|1&MNP\q{b n1D=떙_PݎYNxBY/k.1>){/ HN\M0l!T:MEo^ _%?}}K Ka^͘FWbY7 .ϵ?d0*ҚSasg'JGˆw< ?abÉ9_AoL꠴3RDe AI\oE3TUj8~8C€*=Tx|{ݜc/Fd:\ODu3 )A{.d {X!Z/|5 6>:) f 4l˪L>x~k yHw`\׵?v-]8ၺB>aU>;xNͷISjur<7w:}ۆfzMQLwu3Q /qw&m$ 0ڪLI#CL-ĭoP Lug-7ߝLv]g_ڼE崕X+$ІG*IrCqJ6G&4F7jG<.7oAe(`+Gw&1e:gɼZU_Ѷ"dO“A*~dcd"X`~6++rx<GJ6v2N{+4OJ޺LWiQ~L1(up)MK<%~^ZgJYIs|$]GI @d`0d]L! W򮑨1Ptn1 .W 7r鵺q{!+B"yD z:i &L3˜׻7uHb&T1?J+yLN2ٌPW?Yfl$]<2:cqNiT=(k9؎tRK{A7:8C|G{ ΢P/3Bkn7ef9$tuÕLjΘ㥏j`^;,1 "i-3Rf #6 d1m>iMWE|y?1f*F⅕y? N_"cuQ{ &l^gdiWX|^ř㤽6#OA5XdVJ»bUHqVAT䰕?zJG';QEv |V78 [ޱBLc^R,8܂O70z6F(K0א9-q`Lf$0*q}[ƏJ9J8"#4yYCl n0#k&<& +Y0l"NЖZ<6l{;O- \R^fK hi5#HUfM;oGn摆m8<Ơ>Abi dIj^O;3@`,V o)u#=p 8!3/t|Q.W3sY$ph-PQIN =b0Y:9km2YG9swBP2i+6#1x÷EQ" a+6 (ty/]#sN)aDgtj0TF *i0縯.$I峛.ڏ1n)|I+d8zy*Xj@I4 O [|E,_7t53ǟj,A6U%'ixSUz@Y F1dg%ݶ٨>Tn,i:4E![#>ġoSyiAψJǧ΋.Q+0y:[2UdوCqn]R#ܦPuѸw}:,|J. tZ}Xm6PԑS7M1:HE S64c63\T>@mJى#7 .UhZq{akT$kb)ۋH!4-*@5 z+}sږ }$QVIx ]BddzRV{D(~iƄ=WqU҉Gp`d&S1@v AӁj֯%ވn1zd34F`fI@Ҧj(0u7{on $e˅mHYD})s/#q|lbZ.t,i ]PCfC&IЦ}&)OpIOt@wTC>D.ƺ H`Ub=#, bITsP8U]E r׬;buw$fbѻڗ`)1즉:ْ!s&LԘܦ Xj0+(qnS,"fڜGo?^(Tʋ7GTc|2ĞwZH Vr&)4N9\Ok]-OsDWl/RY tf/8ֺyeе9T0(rZ9>*+vYE򃑃40hO@sع=$#kSIc vgM͐କZV5[3/HSesuHev̅R1ٞ]Xe- kVsR n )vL]/"C, .XC `fI"/Ю2H{o8yP-d<#N&v]wLgFT ̳Ĩ>,iټ)?Ez£lx(SaߤͶ 3eY:1Ӂz_ @^!GsLzlO6a2[.z쌃3L!lq%FeO_Yhߴ4Z~J# YW%hncMCsu?2t㉒D0,Uonؔ4]_H}ttLs$dݶoq@H LQso E/Fy!lEce+H$^%? 1%hdVQ\j3cUyʣ?Mx~2O+Le<ů>O;H$~̥Y=EWj3t13֯uxsСV,x}a8 H̛):+?1yPp^tH'oӇ !K >J;8&+yzƉ ~"BT;jo_MY>83q'dT;5CrQz KP:@ӱy+loyצ gyD}mB;e*֪x"-*j#s՟O(K|rn@&"+R-D7Mo3ȿ.EzJߣ 06(Lˍ 4-~ʓ3wj!D"xCM<>Oe=UYf(]<y(I.+Iw_|rQNGgOâ2x8[-QuoVc!, C6"L;H[ŠCl::*Un5sCc<_eU p6MBxd]ln"@e[zJ{MS_ ˝(}ٴ9s ne'"~RW`T{r޷L2:bE)gh7O+í տDeQ"^B9S1y+MV"pvR oz2@Xpnw-F1pxZt8xz27RZ_W Ŕۗ.<ِ;| ]/ 8X[o!oKuGNaA^.<1d+3U3wa;(1O1Zބɡ*Z  Qz"82 be57:]!@Z)![#` ? fYrS&$~i}[?E4>\1Htı&i-ه/`8W5Ǝ+2S bB`*IQ2j&ǙNx}qOW?M]!(b Aq]Ct0'ڹ6wI%hǶGFs2͆a3c%&9Y`z|"5ce^T=`(g6ZwO\Cdrgns r4cAM7oװn.޼#bXdF Rф|"j^&۶W[`  + \]P|*l>~^˭Ǒ0;.3nòQpWvl."J{8'هxSBթ/YQ KjdǨ. ~9f٨*LU/`,(jͼ#e^ck#wAcjϭzMbG[Rm(,.IDPꣃ? 9:#9 |1Ql-إ n7LA!"G)p~- QQ7rY5*3i\U; Q^=',i_>#І <9 G}]y3.ʧ'yt$+Wq|2=gX~g&80ċ2IB2Tm]jmX N2?bH@w˴y<GmE, ]; N\A˫SDj9i`ZƢ-  m ~:EPQeqP辨f)bAyj!tv Hi@ւm"#|Ve }N>ռaܢf OdFf܆HVbyxPq%&UHq;g2˫V@k _rY#ɔaQ׈~}&zJdrQŰJc@F擳nqmD@^ńKH֔1aS!\|# >vz#I>[\ԧmdCSvE?,o jkdYf:S&d] 5F͐$[rJxp {LNC , HO@ƶ$K\ wEBr6X N![Y5^e 0~Lu3 ͇:!@qm>)F}o[[x9`K:wΡ>u]v46 ,Gcgh oӮC>TpN495x0ԱI$TF 钀Hp"FDe/@a/hӐLÊ-lXCA+ty|4A+ @p)`6|T(p8,a uTc"ب)s3gdBhFXD ָʏnn ;ľ8kbXlH F6NQ_) '7>-jUX0WyY |C.(0AZU?_>IGV iRLeojEifڎuU{=T{)b&Oq*RU%J[hH? E>s֋„O8׭ݥW5sѳe;Iw黈zZdx}ef`s7 l>.> -@˖̥+I7 ZTe`yb eXޠO<>v^&%E66"@%#ix.Eݪs v{@m~BЩmQX3fh&!SW0InBbiCwݺ)]?;yci `0nobmܗOwڶkIvBW9)8سZâаlHTus#l̉Fsހdѫ[ $gP9!8P<-Wv?ߔ3|I8EjTwUH~cJXaD^xFZ{NĶ5|4pEU]dKi\iM#j;jU9  U{e]Xh[ݼ<`*O[7d=LM "LUqAb] 3 шwR3-X=:yع7lY>]&m/2NX9B]pTujDŽ2y1wLSyØBo"Z!BdQz$YbLCnުs.}ܭӳ:}r=[`6!B_31Yˤ,ms7Ն gj 0ڡ- j`9u:Pu aٛhlT=^$ 8nO<߁(x*wHD(T=j?a<l@ZpN3Une#'^;&a Ti:1ܐvv @R5PAk2#ςg*0}YF5z2f84[rXn/(s7+q α(գ!V;-;୪xdFVvH ~qH>f:>q*oG+k)Θ0!*-0ϚoyvV@Bנx71Ӹ+7lW]q]z"l|=([ {7_3*5dGu0[Ne{)odb}';V🼶 نSMZnW7.Kް#JFrRQhsnzQ^jwL.$߂;V(9oW:MleZ0t=.QG#呯ޒzAW~ӳ*!m.?3/ȬP35[͙vbQ[("9 ;ENh7e\ce` FYY2 K6w!t 8b1eW}e#Ծ`|7vCӱV ea:~S{JTg,9ߍucb2G'53Ѽcr=oH9a [[I[jWg>>Bn2n3i*1sc9Q;]n17w;{P)eh׸>jh T+vf>KG?Jbo#BtthQ.3r3e^5XlG5VF9{HQN"]s{u׹$~ A&;2|!bs4-`5+V' fvkBbfQBq^;|w_xeaS{vS]ξ.mkS&j"#EisF kKENCA<Ճv3(Ȩ%Hb1tLJ+l6` "ޫY:Fσv 2؀ 8k[Q4YUbX!ݶ6k+[NiX=#ZLj1ˇZƒpMn {qwe/MtJ"'|{EfuYv275Fb ^fף )M7nbpמĒL, ir6{wKv`2=b*J.9>-D-~B)3 jWbF-y/}<=0NMZ]'\g&jNLFr:f}Ѻ_1Vazj*۩k#!6*,0|cd1ϼ9=n8#*y6Øр,CǦ=J|e&s^1@F>08zڌBV_Džg;cS3E%htg _Ýw9 ҽa9TmC /Ei^sKk`d7G@I K9Tcc#tE +br&==kUW-|d$TyNL؃,yڕ"x- E9侮-Jv=1UM,|<%JvKVvqc]X# GW닡߮H|K'Cꄶ ~aJ@Q'-ڢciL´bBKjo/Yo#=Β[a4 j"~C"#.{9zJDË=g$g./FAESzݑ ta/%arz~ =!~@-AUSXfh:bldJ()*%i 8岰dt6O>^c;ć%f/>^ԐD]!?ɓ<^ -UW!?QF*%8iɜ }?Sz'Idz9+j&@(<ǃ~>V7j :Pn$TuH A_4=rhJD|۪mn_Gy>mfkw&ժre;O5BOy(¬h5,l 7Q3|m&NGPOJA/Al>"wj%<&dI9{!E}K~}w$R6Ά2}j;Wn c;:kθB%5(^Z߯mQy8~4 92ϗf2ZՈLo=m8@>>Yo!'=W"?>>$7nRNnB?d1t=L\\eu  ݭw V o|t{JW01)Psa;f!" *%Iz(}:ϟ9`qiQNWWl婣6#|NJ ƒwp!N͙|X /ÄV4\MQ[WbMmjDAS/O'/g.Kb:~/kzVrib ,G#yŁ*3ue\99:P5q}0XU(Z;)h=+ւ[xQsc wv#-=/|7Qi/6ה,.i1Ɵ-Y<.qf9~P$X|2-2%Ab9If!$7ԇ\$eIčِ|,%Ðx>N^y 6 #kK^El TX Rndkjd =$wWn8HI40M0# \̞Ӭ[Rg`yzV| i$%kT^&2Cf~ 3Iotfpg^0ꀣAY;մDtN}N^"#*&⌬'˳zU`P8V{U+T;2i0`đ6\:y%$fQToZG 4_St-B pje$\Ҁa%p oX?XN;祸2!jOp ͎d+M:D`DCaDa'Yb/!^\%LQ rI̡IvbLjb:̅qLſː-?K/`-8=Qr3\`ȣځ gSw!,M/|{iAݿWu{1_g Ț0!$P k>bW ő\vv!dUh"ꀭe F*} XxᩞG ŹlX8{J #'ΐI?=z3ɀLMo':X Y%jnYRCDpeB;ڻ 2ͣLOnLSS)\[HrFê鏨9dɋ_boyʽ>(TFNЭdos#cTUN+{gxkjiPR" +^sPz5 [esF/F\={Dr]wA0oDF04aPxWٽe;Gul tl1aUJoYXlʥ$gjR$[Òwjt_ţ< E/Se!oFn0c ĴK awSrbojvI k^O̡]#-zʏ`zRboRtZ8$ҹIcH1>G kU]vp駛Id" 6 :/CCz;ԾgAItzUzչU,Px^7FOMfh(M{{Ho&`"ӊfZ-잏g+~) #yb`(}!)˷ڪCiJa)h5ԐfD' ?D2s׉f'xq?3*sGK#3LJE#TX6 U=P7 o[|Ԏ֛}ߤd)"l ߳\]ϼsd5~vj@8]ə1`'; E4S{Uq`M F@ڪgEh6yQ]2m f:oCY)nכ }α3EEj#3#=oMdK3j黋ai*jذ[xs_ybMv9uXz}(;w#c-Iݑ06.l5-S.?1 az:m}z[@6.xs'#NTBKLЇrirKOQM0)#em!m;N(R8qGG 9Si-^L#O`Vdz2%'>1~IC4s͛< d0x8.E)w$vT4$/GZl=[7U2T4ʇP7jkJQuj!h["BXӫ.\='{FU%;q+V- APl0I@LN;zkS:Dik~yX^;[S)<ˈ`O=b7 Sv-(c &*\ץBθGÖf'O!Ra;v>_>7=LVgfE_.Iai{`%%-MlזԢzsOJ_FD+#66e+J@ZX 뒉\ b'¨? '*[+] R:snL#H N.CvF^MLDl=t.5*vMBƀGhLm8"emͫ,F=L#wp(@s$Q"l0Thhb FduPG:hb0 5`7Y[3zn Ythm{8Tj G ] "L{vs(S"mx'K,}}Qtf,.2dftR Vqf$zAɥkWxSx>l]%ߦW7nI#81 Kΰ݆~P9! ũ%s#A:ݲmS_݋N ̴sc42f^0Z<`m8NUq5#S~ u+r^r+)Hwll,R&c%>xZ"eenffM"MNz-if_Qf$ s"bv u7pUQx-aο|^onuSHsGmh+xcXi-;?b“x?\V1X@X"WN.$D_׵WQr!}1QcsٚAT=phh bjpRƦθʉƝ@볛ٜ#,oݕ8\&T)BLy| b 6AvEJ@m3{͞zBUq_z5rSKVL?)N- SvIGox o i>ȄYGqI vjW^j W򾇨e zT*믡"\5)V%t =~dVoªU/T*@YpЕCfl2:P"(Aj{: Ʀs>ޭwI Kg=oqeEkXv_2OVN,$h_8o~Ve{W.:Fc3 O*1Ȕl&3zR@R '*+ 3! B-o$m-G]Wż[nDi'Ѣ cikJpqSfX'$6meM'a aws  Zm*×8M}nkO\>n>N1;4ith+5&Zh+Y.]0w2i!\E$lPH@a?¿5=`d=$[n=L52emJe9k+Vo.`^,04xW5X*%-iWpaږn%FVX5G>uNH͠r䂘¢;Ĩ}9 m ޺")v"xxKmo1A }Đ/Kaql%a$Dg]k~e (6/(.d'R ^Rg7I5µ1I/Ƽ?Yx[n) F4^ 3Cj1X_tï:3-U7%pD[,2B.|/f{iѤ݁z(,:PfWN՛Fַ/Qb$72 F;_F046%-a@NIC^}Ek~*dv1)䢼[8_B*zմcIT*:U}G=]d76I^s ikN򱜃oƷҩ[oΥ`r"y΁'|zHCr.m {@΅/g6" 3% p1ǩhI5g sW;~ovsFѸV"3Tmh-=(K$Gu,JʎƂ "" |JeL6g"7üR@ >AMCzZNmwSWT&F~)0i=71q)Գ qǪ01C]^s\WnW0mI\2g+M]BĘj霝a۹YASqD@'3&=t'k]*ͤN (K*8 oUm.%  .[{od2&SɽY(ytKFQ/I)'lw)p/@&mq'|9dƹ??v\! T>ͺ Vąo(vA^/LĜU 5u.#W6. ȶխ!=^ax6b]K4%> Q76G7)T_ݲQjL:Y,*5,Y%T/4G]DmƼy7 [Dw ܇9) ޝ23ш?_&h>Z<&I{ \.ˇ R:FΝ9sCuߊ Z`Ǫ\*s&0zv> 7mkwRfymוE9d?htk;\Q)*"]ۇ)%nue;`Z"Ox pSX>o@kg摺4_JXB7TECQĵTaվ-i 4|= 7١07ZKꁿ> EjekIT0a;܏fH19o&dtt2Y_Dw lߍ{X811pO{#r⒉K@B"u7H18]#Bqlp ٣} o$<']eJUW<2R`f;d5 DUdDDb?##[8RTcSdnGh9ßdN5bcKfdqTQ;]FT 9NQ I!k{ .=΅:bq5m {D2ʊاY;XY@r t ǘ#QX4g|f 27cO5,7 G0Ch2(Ae/~&c7:މ!DZ]Oளs]kX}!6M/i;JBk4D4 WtW9Ϋ07\ٶu7ܓs_T=A%nh+a!1*~xL9m3ڣ%U,`a9,k$yh k: V+“E-g=Ѿ.Swm~I$Ҡ!cxHjlBOҒc'k!ѿi{FDƫÒaã>T'qtҨAS4"k k Xz'E;0D146/=WU4LUCE€-"6ҭY yˍ$0K_{X??Fu#[W _T6Q9A6-]Q*tkԑilh/vGu -oܘ5t PbdO@F% H杤~J\hϰ05Tq Wbp3htpȁf9Tyi }v`IP-Y+-͞u[Fr]Biا o+% VF%VD|WiK\a#5BRՌ!XQh9L wcD)b7onvjVP^-٦)~/Bgj, jT ßV{Dً<~A?8ENϯfZ7ҒÚ 1:HYj|yU\v3 =jDb%^N0YǏ\9vHbҦBqD;xMrê^Y*${ !5=zmo"0 ߁ L0)ApWDv;0n fӷFGx=S,5&>2\+;Ez딓k#eERG^H3Wm^axXw}$ڍգ|Hf>陧2ar͜M=?,`E&|?MS]U9'!H<<<26 F!BLQ2/J}:t+o N釪xH2|r9(q}Je;rrlRTh}\0)\L]7>姚ݖy߰zTe0 CӚB-1(k٨s7cH$~eBTD@D贿̚tBQ3Pȹ:b ĎE^t_HJ3|7s\(@ӵH8 |ZCk%yF)Q[шG`_c,f'q)PĂ1UWwP vUTKq4SKuӨ9x},>du㙕x Q(x&"ZJLCF<9}L=Ƀ#]fc?q| &$9˦v rTMy7WoV # 4>-Hؿe]J'2 $4 ^f79I4#HO=Utz%27sOk"z7 e; gM4oh} zbܕ&Kn}6d mRw=yT FjakO|ITPV'my*vﶢ/μ?rfE筐UnJ#Y]q¿MΊH[w٧;V-K&I y5B2jX:>G/#'%kt ȏ;{j )M+G[||hX^PVL6w)pf/9Fw=:C&/___.ƿѺLWcv ӠJ=[jU9 Arjlu x8Pň,R]KC;"H _r,&4FjiWDOL͚ңm"{nv& K/̀<̃YSЂQr0LBV;f&s\G$O%/b޻^9E/%ǓX? N9}SEa@, ST-xM /DOjQ4Y{a1&؎pEe3Z s]@()hj(wkAaeNwuR:j#^UwrB*o[˼!I8C}XNVJrqf-?blG)3隮H%ػqG>}_Ky\ =43U!A-Ƚ4}ЈDf⿀I  /fjWL}J:$1U3dq-i_kR} r2*UM@rvДCN m^*'*r5+&@H=A*#^>B1\y07k۳]}IUגxņU=]ES3 0ZEfW68|}Ë=ʇ[,#un2|zC.& URsTW{#b7Ok+3jnZ;V~g$Z7[h`~(U($8UMoI*( _-}*j!b=#*Q|E"`'+e-%C%W00Nu޹ӗ9UYR"bM_ ^dSOUu{m7HU>MQF&}bP8$V ThNz<]z&ߌق Fl&,>@-u4TPf\]X71 S˼` R\45ly>MvǕ Nbix68}nk<ɞMa[lTnkB_X*/.*ծgX\Ҕ9K#o;sEVxN@?d腌.eJ4rб3;//KCX9hPb].fHH-t;*x!(+ñ_Qvd ZGOb}ۆƱmNI)W\$\ n#uvBv@ Qo B)ۓP1Cu:xp7quI%`8c644C0bX]d~A1տ7}Do0p#3su7p@' wRLTג~PVV i3M.;R bp| PRx40Գ$|$ W+^%!&RSюbn@ŒݐRo`[rKTĮ;iRkj|V$א\VaUh 9Kd ײV莾,^!+Q%Wσ~KTB$rЯV{xc#O%СKR)A=5fNiߐM!ui5C\Z`iFf{\Led@?oư+z=ny,:4GBx ]dgO@d1?s;HeGRmt+", ge9L:\t̻xΓ.%ʛ fDFWVX S0 'V +\ߔ7{eS:z?0njH";%(7)*1DPkd,QG\ReK)ƺ‰ڀQ4 Or~Du_@lJ~rg)`3`;{D81c4] ؇YmD1f>ȜT ho.v4htO9A En%G{' ')ELGA`L|D6t{[Fɡ⯡8&Zoty;rٞ¡uV9U8(Z1S'}Qҕ&BU)#]CrIubQZhXDTBmM 82%p6MzJH}TnCp@w3pc'Y¾0dk͟id{=Rrv8Eĺx53ꈮX"<$?pt~vySûԲ(~KH n"̋`Hg=WUm@hvW4  gJ6ERo- to~%5g4P[|!8109?%*OzM2.?/Čʆ61V1PT*uɞL[wEAGBg%o8&jꩼ+\{ש{ŕ?{{Fiǂ P lQ nf * ?xuށ'%_o,P*8;:v˜K;$EM:o<2V6e;47c,(AS m*.ٺHpɑ׌=,@`wRph!Lq^.ED<>G =P~>m bQ>aljJ0$)s2ͦ>,)N܇aATn<ߋX6#hKdY) req>5K4VDJFhCڝit@2-%뢞V%\8܊!d@+ԟ7RpUu o5"+1K^< T|<Jm=ʲ'ih!&)Lv1'Yto ?)w$G,YVpy'n{k]gA}RWw ?76܀@PBE׾=UzN٩3$?+f2K#}m<6Úӹ_ex5q\w6t\~Zᘜmp#Dz&c|#1 i |h& {}!3*јReJ4 3CGQzf!sʬR)^~QDxv1#6G>Wg}DYZxC.C±y.NcҍOC7=vܲ_g0KmEʸb4NEhZ@%A;œL1ҵcG *^<4uxK vHqg;WYO2vv, Fw_'$=\"]KVuRgZY5͍f>}&*8R[T'LYt Xюy;6YѼ#Y.-WG߅n}Yx7Ҹ6)j3k-cИEr2K~`Szn6׵ho"roN$ Nfޖl(Vj/s:[W|N4Ĥ@a"Xw:<v?KjjE?m_@45NZ'I ٗ&<*/_56b P"`MHv*$v7 ,@#Qd1%RA)N.mS4f*$h ʉp-OO8,[Okj%;=ge/(yd;b t\8C9YRW~`j@zS02;Dc+f@P< EKy{F:wO#3fl/N#nǒLN^6\;k=4J.Е.iژDYhTz;fr;;QW5|zVQ ~eZix܄*N7@O-!;rk0=:#}޼⊍~uLJC;e T*fn 3C烏٣rT$ݛUkSEr/%OQ*vèӶ#]_@9Un'Bi! wLzD|'P]^8 tu|)zF#\{ QC񈧨$$)ˍyo_Ȁ 価s%rs,"xi nR1n1(N'=I sTu":ՠ8LJc-r YkᬶEX>x]u%î]$/αoRze#rcx~!gOOlU4+ro%B6@v#LZ/LNǍ6qՑz'__ēW-kDž(?&p q tb;yqWsФJ|IQ[9 ;VdW=gtWSh H,ܻX+^`ѳjZ]ܠOPQ{h^}^Zf*~6;/o(q8BJ4Fy~s*>5`#&XO>m؏nhUD:'l{rqZv*ݽuK =f76O#8C\lZi=PS#vĽvffREEFBUNksP s! ]fʢSʐq)Nsr9W9» CD\`h˝*%~S`*u ?:Y*IڠQK޷nE&֨D "OǦk @jOc +epo=K ]O㩴!w&|i+К*gǛ9?QD#$#?sGro\kH}f3"8ۧ.Qk;U18^,]D+W[HwE8 ;3AyBt5wlSٳ3|?aewΊv1ds`yp 9r$G 1[26h(XPewk,k*"q~dSذqi ϛpOL.FPkSs$KO?4s1HHDJC7hk$~R)`E?C~?6?^8mkd:Ŝ| SzK.IcoȧƉQo2Q7jQD=׃&r2A k^JcDwrpGao{g㓉 Cu2zq`RIFs6M4\b UC@u'J xCHR/\~C<"+(|I{-@^ $wAYBg}IxaJ(WH hU> M|^Oj_`KQOUZcBDbUyyQοF|XЮrY#~ 6XvW)N.Y 1{*N7t= l-JUéθnzbE.S}O վOo9] L[>bN{IfD27~~D'$wd|VqrO۷sOU c xq3 KkzlwOأ}&A^7WoB-N Rգ4fǽ2{ꎆgL,a ?B}(y]Agn&mj:Onƥt_!ô:v@7])|'XW'!Z`B61V&l<}HúLSB)5F1cE^iq2ہQ BJk,ܑ+_e&em?ۋj4FY-,':+=᪂s8? t|[ZGTALM+AըMlq}k$ձgvvsObLp ЂK^Bgi&6ئ[hjbl/l( 4BMOzp!93Q}Qy::.uͿS|QGѱ4W%qtL;;D5:~m2GHڔm6qj/6L|!vc ~pm!4ߴ,g%ɉk*#Tb,p{yF! PrTD3XknڣuloZfMzPv̊;:1h/3. [,DxR@;{@=mX"SU,.E1tځ REЧp|A*WQݱD`,s$6(Q1.iozYDFS fYW$5lI =/ nep_lPM8F5Wuxw:D4z{E|B.6BZ(Qn"O,6dh dKl΃*Mu5s)RzC_ ʌԂhMx\*5?ZqE披= T?cvbo![\SӶ8:ǘ$؉(NfY7[R5/K o6JFeC>$w.շ]gReĪxFFբ eegfLk5-<5ԖO[蛅0v*$٭a (\ۧG1.ct -WKECRu"yrʗ85}=?m2 98bAT `GHSO4DTHhjw)!y@:A2VV D"z[T {@R"K]QգOdBW`R?RIwH$-5O~!в8tXܸiͪ^ju5:QPHE /UW' 5ϰN\J kΡ?]|9E ]"sN#_<`v\Iϣ B;񃃤8 -GiOyjf{~-/Ho~rcWLblȀCWPڥ=1)GSfeOU'b}s:BDEphLr6!55p k]Ss̐BepF\f!.le""={W]IL_Ot9|GƠ״2c˾lo]_ưbӊ81f6BP\_׸h}}֒aX0(zfvծlUrƂ,.W.bܧNo.N >"Rj&iImDƀ7>NgV.c֘[ V*` onOr2ME Ngޒt͞"˵̆Vc#IZկ9րȅ]mSEΔhVq~_#LILiZ{ prg_dgؔ? rw<]N };gp$@e͵{!GRv0):e8ac&CА3Lj6YXN{ 0{2ZH U +8"j~1gFj]8oBJ/8ڨ&(dLSԎ."H ;;A%rn,q]Kh1/z9DhH/U|~Mǁ/wBdpzNrK>'5oIثKrI/צ:\= mehS&8*(;U\⢜$u!sЭ#9n ̒ 1Xl$~Ͳ?KuwYy9>˹,tgy}y/ka)=h BfqqSj%մ^GY'&{-5c#>% ~v%Lʖ,.;mIJli]qv]JN;*r7eJ ` cGe83ϋ4kjd!5E&*ŌY-om?P8PxڊM ڞwDqwq\3RTrLsWCpz=e>nS"LQ nfJB##!7"x)ImcWmN :=iP`_-hNS#Ťr\d8 x=[GMPKnj=C%|~|tp+Ut2=.XgE6M*lc n9O^ !\uoZS\zY?cی5N+S#U\uLSJ\r +}b-|x!ni:z#?qr,g M^hwpek 8"^L ?u~7OTD2w$oT= KATCRɶ^ Btktotk~3d9يJSGah Sc 3$yG_Ȍ.<{OLCؒ:5*PHWzW[\/4~]CbK-E:յBɗHv1iJeːD=DbJzjil: Hs'(F[[}Fk*/!?̂)g~md6~loUcVF?Ԥ01Ic( AtɻrX;9HQz% CѻK-+ &=.rSomA1$ȱn;+hf}0dD sOUOx;0ލ<4>DZpxmA253D/Գ?iBy/ֶ''hʺO,p0yH.U[R$+eTL}Bߣr\wfX'hvT "wޡ<h2:8$(^OcMJJ1 >oKU2^)q2{X}n);jd]߻>oi'_q5t Zi'txb`طeb  Yr aEGIxrUƸQ%XqD* h^atQւ<66{?x5vZa泽Q0vrGuWTL]Z$trQlt!.xKWݸ*&^oM02NN.u_ԔF;f~/7,mWj.B}ȵBfn<%F,#*@!W>ISX0},{ahOyt1ne |Ʊσzm&J5Iú45d42n۪#%lq[ gh( pCuMK <34nAURS_w̙ 0e# - BBTS%LbѬ<}%ű6gRRU(ݽ]B[

ik"8軆PKsxKP*ʹ * s>/AcXgVIpk9AXcI +Hq@(3s#Az((,RQkSnpZFvY]}գ[SGq༤ 'Zy4e/$F r7H|/<2 _陮 ]FhzR&RJAS(|΁1"yw]6U&_\RQ[ rYC%AHy 1=+.@B:G/_[Ei1i 1 Gژ?z96Վ.3! p^f&" >R f,r@7}gPGw!("[ob6 0! }.`ڢ5ի^TPIAk6p9}M DCzT,ʃ# ޣXD b..,t)zܔa8ՓJڹ5.^ϽA&`,Ӫ|>*.; irBTJKq&a1YxGe_jy5+ x\掴 XKZq-c¥MeϖW},ɌlL*Ǐf{t}Q;'R`rADlp0 mY1Qk_|g67$CrlN>M|gLOl_{3ݜ8{,8띰X}rֱD{UՇ&ڃV&[~ }[6th@"bxq$ّsyk^T3 2~"D,JU3h e1ˆ7|3"OwT/<';qzbZey6{1I1t9[vt_*A E} oƌY*0wO|2(~B588\BNj*4C66w",0p]a3\SN9䔙[cmWinJ!n7ly5?{Pȑ^_ ;KA @nSgm.}[>mmv8+BF-xUKvχQN/1IuN4nNfXo/eQ|qVO3u+Mj i6n' vHw 'Fwti +ڵ)XAzFxZHY &fhc*%RhT6D03:ށoip>?,IZrNOᘝ 'G=܀ Ş5Ͷ2r乤=eicfV,sT[m]8u'[5iKUbwT|&WMʅ#|HMR7JM$e%Q hOڤdY37+rʭ(Ieh>m'."K#5`TRym]Q"$xFx3*h^3%>&'|bfpC}atghb#vFKBU| xwΒc!-Lil ?gXC9!aX ZgJmnϼ`k--:FP^,3Ƅh)DGU\'gY>[}`TᏼpO4`UYb2+OʄnDE˘JMc֫LĴRGVdSAuhYs*,*a:*w0aY9Vߋ()۾u*{$^YmΏgUӼkR/z^c#rdj[cbNV$>՘ucl@:&dVcj)0vV$OG_o/u--S6;9wR Y~G njYQlL,?KEi ?[O ؇)]\JJq 5 8Sw/wV#E1_M+̥|XS˴i#?,{:W bQ!0h,:հ"쾼ѝ6h3GĺyM;u2l` q&۫ӼEDIcGAZĹk!--@ {ىѕ)x!e9@y? }7sJ-brU%LDMq4, V&P;@n!_}V~!<RViS4(D#VMJֲJcjJ/?6 ;"_$ƃ fϷWr1n"gU hvnYľYvwYz7{JJ1k,|rѐhљrַ 7)X$~(LL An/؆h RsDItj|]!0̟@ ˃B]3Zx_Ar`В ȱuMƷσ9G ~ :\4so:c5{6 ;YK'|(uu@/n1}XZ5Zo:`e< |a|> Yn֎H/SM0GW4٥@aгnk*!ɆBm^\m ɳAgJ:?k&CAg1=oI۽IFSj$p*Whΰ>_W̐w9$ ^T2IV&j:)"J|FΦCOYhQ >C0xf@dh]$I!6'KXz%kzLx& _ΥrnZo\HyxUUi%29N;ЪfoD_9q̞*}S:L8)@+نɥyMiGf2-*ȇkjx=[6r yJƶ}^Fz6yi]/$ƵfsehB!RcvHʨ{JMn-A:2 ќ85ln&wëvB0GsD.[AH>ugӁܹ7VMOT#|`.uGL7':+xC͞Fo-'!Ю4MoG50rĖ^+>|2°#H/*}ƾLpRH\;7rA JP/]߄3ciG i * <{->5tUݮt͇.VE{6hl{R?1p%v*$jf^0**_G/n}m=F.ylLv;#+VNy!tqDpWсڪxooW<m]ɴCQ'.+"(ь}; Ww:ivNoU#|p10`N65pgSH æ 0 ?0G@Pvkć)9uCGa"R[xy8*I%1-h@p!u H a3)Nt bV)@mװ`#7+9-RCLFhKE1Jdk!->LW Za%Vu M ^dW5ߘ,!Son% s@p=?۸tv}'k_>jD-_n{&P#Er3#k3e(c!?oq* p7U%ĂeFߏ.X"*oc'jruM@L&VI]1ē]B]i  τ-%MqdxF1VIPnmưNQ%: #0jЪ#Vq0"fQ<36(ˇRIp  Ȭ2uE!ԛ /UxXHڙhWGQP2L]eo׳/&U)gg8ܱnx}X+'8E'T{77zzbv@Rq1W.GW{vRB:t#% O [UqҊ돨l=sB} "U'MCe_ovcr& {=!Dp_ҩ?1P P#׳ȴ-Cy(?z:5v#0o<"J }x[7h3G_5HBG6Acf廆EUjL{H#<3 JȊh?W0c}}alEdl_}e*҉(XSƶz=R SӻͺxT04ktJ{В.NMj?VX{I @W{hKR~$t!Q-k>aXˀ8:~y }Y c v!X0 $̾Be]%n`2"uotɽup|cHr*tvݙjO`TULPc$|J#.ǣ'z+.Qy@~L=>Sa^a/4JZ,8. QAe >f3Zæ7ZVz1Щ_?|mƋ]ʟغF>#8>&~6isa ?;l QdgoQ揨?0+.ZaȀ=<*X8XC:dYGMDVT9_?#뱤4uf}-2#9"zn̥v>Pn& 8' 8< V.8RhtFC蕤"qkL0J %e4S@_M?$DÚ0pey#Yg.o6JCÉ'p4,=y*`gUÕIT>o*|N"yဣNÇ^Jr6L+v@*<ؠB=Қn/;9C>#\+t.]u"OV8`$6EQZ){I/iqrL6K`,"@R5*\גJLz\=F^gAirzM[(fuk=!Z%lB58A5뮸k{C蜣v;_ħ(8`PQ|Px<`;yaε^d)3C~ԮBx|&%3lw _.Ϥm1&R!#Й |֨"R(Ds9ힿv'TqKa?0@!3"Xc?+ hLWE1 V'TT4GXTp<6T[ Owp9Pf{2~;la@zk0I6%=Zb=WԵ`%?3ytEʁ{qAHU^#lNc_ge&bn.5c4&l$Fe“Q+;߷cwV}UEuF+mX &$ ٢&j`Wsr뭑rA=ZўyZfޞm>^*n.CMYyTuR5\:1*JKyF%6{Dzh|sG4G3 xwoeXUK|cP|ǗS 4,%%'$`42OĢAپ$~S! >682R3cF3B-F3n7*맴b[:GQC[%"L_Īs)xۊ00#F,-,M{ -u\16(=.B r+՚ VcA=ɁƉޱ*4K.'9ǃWŢqeɨX(jgkAV43B SSL wY.1]jRWep HKy'mDZ|j 4L]A/'XVi'qG wx0e4M*͓IBтnXWU*qJb8]mYaG.NobkbԳ"MjP 5,ISkஎE޵;6KM_N~NpQas'XتC.3 6-5Tr8K}|?ߟ'ܤ61 i`ɝ>-vv)]:(d#U5\1;za1qUA t|0kUt4+)Ʒ c~ti|BZ -0^zX=qW@HphRSd4' h=U{.RF /LoC 2֟Oib?l<Bp &FHYGCuG-EUt:?[zDO3Qx'QjD?Yɓ+V,}4$RiuOA2B;H; *a0K7M}~f"ObD^F49p㹨e|CL'OFtkk6!CwM{Ҭ]XZ4q>ޏnKPy줽OaMjMI]7TR>BM+r-տ:r0Y02X+-TиL`JºQ@` B-O8 yJ;UK0v ,(TmR/'Jh[pcD[q;NJi}?tK Gyi24eJݾs۬hvk4@yŷ阜=݈yQģnoP"^9.pp c0Ń,xWX{7; >P=?)V2di tkGYFgLF!޷^"Ru%?-sg#/3v⼳U /stHR˴]' q:3,EդU&v֤M{TOm$r :kBn$qBfæֶ>- 򢩀4zO>Q? !ĕ'뿾fȑ2Uز񆸍yy B?0@Gٟ"G.ψK>J<6[>@/XƉƕx{hͩX[O-\Os෻!"H);*1:H`Vj는ERz]N2 V[jTHF,zσvl NKȐLCPN5T{7Pɒ3!Bl XܩE& )]aWvwre=W 0c+hU׿D p X}0UܴPf)7ҷ~u^jONְ1ו_xE*}k][~릯 F7SC0ϹA/[k`FVc:f*[3 ~;q2ORu۫:XAީҽ2!viT'1'1uB,ge}gJIm?wK@8`MOiJ1HR3$*+?Gano9~},tK'b0LO h?@9dO53̯ 2 !|\HŲƕ}]mffim*&FciH&#ޅ -rnein]ebmˉ:!'d-Y.2vvJunK.&1-c%+s760f8eF[&sD H s4s(ͷ,)-ϕonZ0'Ԯx$.LY{ nָ8BP 4Ŗc`xt'9䚲wk_"X|T $#,htl np \T5X nxQyx2Ue!O} X [PUo&?`ߎdL'`z\ɳQccpoGR8wPhpc@ފv/ ۥ>1ߕI{Trh.lͭm_F{6_Ow! jJ^<_@WHvτOxGZ9eK0?r5r z=߂'&a8l TP l&H8R(hҀ^֖a }fПO@C6 ZEx,7a@]NMԡccrITw_ 3C_qZ_SĹ5Q;2QuwZir _B%v}*.f@Vo;RjPT\%A)X|ϤuuaF BUs+vbzڠOStdOJDw}sR봯@SS; 5lag%`޴B9Wm@MƠÑ: Fg\kMo{?+ e^j NެbK^ [)F%^b* "qVSDfl-d+f^ ,mS œg3:4 뿧[ɟ?U [mrcQ  w>iV,cUڻc{{ϥ]H 9Yήnnx! @H9DZ4M2Ft:nhzY}IFȴ`je}3WAuYULv#2Dj:j:i4FHQl.98#q{^?!|,1/sWe8 &L4V˞r'T99 Ш#vG7:jU5lHJ>;ccs%%nz Wm|7E5:cS34oPp#Hj.Fcֳ&UNm#O@:˜>am7Xx j*)2[u_>-.`M껞DeËWdF*'CNA {*t'/yNJ.ƛb Q S3cbN RS}o`閂aVflTտ(}H_i#NZx$+Fz1@eƒP$?>H<nBbL`hePw\c}6DR@3w&H[v2~j-c?@DmfT!Vh$ٝ ijp f>iѸudZ,氝Y jPLTUiJt!CS)®ؔ3vW:E}Ts(LV ٖ}m!`av;">?ؑ`9+\aԹ0u[A’|_j‡:Ԣ {O߇r(,yl%F3da944}fTg^R'fD8Ɂ`%pp#ZtZJ'm\BȤ#¯7`N݊W*d\Q@ʕ~E`:Eq{>E9$R#>~HM~"Սi=ڧ*U"qqNKUMưEL[Ӯ-~&RzVBi z&jŰ ƒtqYO4I lkcrSDzW;9tzIAqr8bI X_Z>.FNW8O8=k''YMX;D~1_`[' x;HQl_1t/"[P8~k߆؇e{=k.ɷTYrљg0DCPk]ܺ&#Xd.u׉uu3G'~Hv0sg zHo|9yٿi"/n4PG"nN\]|vXK}U0جdMBȽwe0K9+ڂ7obcJ%琹D7Td<4M)-.WQhЌ3g@nI5&;cLkXQ2@aM)*tA`q`KsY  ]cІ/'cQ-?"6šI0E} >RnԢ`AF|'i@Xs]O^թ7#D*75/+s:d@iDZ=4/Csgڅ}tÐ fh3-RAv Xز-P{S-V7`,iTn!Hߡ2SlNBѭ7?`>,gXRzAm,&mp7AiG.'={fXB x5Yzf1iosa13Թq>F?|Z3ݕG̶ ;DWF@z|fzO  ḋ J( d0r=U'"$;̗pXCt@=':SY͖x,`N]p̋ w'*WƘceȅ*G].` !+ -G.u{V$sӆl{3rC 1%qGQ &)bޜ{X @To 6Y.-4M DP߽p0b,|Q W(7:#|N~;p!oyz#̍ U7ݮF)+|jrCKXMDE8Lt_Ev,PqbJ 1'c/GVMcD 26_BI˥^@e B5,xG:V-4 վT,gE<!ْǿ6 ?%c|7џB6SO9 G.laD8 ]#8,nH͊MWi&yB@#OD'q 2"96IBhIoy!3" N`L#|WV;ܝ1>֤!Cr_P9q<4auJiJ y]b4Oa|K\BE3%7U˾+pLM>K bN\Mox<㊸[ Eo(y" q  jFQh '92We_ I|˾Cs& |='^(GIS'C# yXdkN#ĂSTxk+1WpF47(rzUEz*ߪG WKj(萸4ScN[ӈ|~_RE~vW,ȭL4N? {VkS]2S)0LoQD;(uX}b[B G6"wS/xUSɻYv0pl)(GZ[?gR^.5Sbye w$WDI0]VG Ӵ"6#? مiNV.QK=F} o?D|.Or/H5uŵ0,O]QG3jSl t8^=?gh[1lQf~1S"5Rõ3`Y@z\Բv7 hY9uHSC`o_b;QF@d% 8F5P$aE6q:8d W'iHbow-㻵r5)F,y( -IsbS$}Jsoy\>fPE`kЬocT:[|Z8;>Ko!pC -./țXi^;yνApR@%˝bj|i?ʀŸ#D?q0`|N!r!kbꉱ;znj>cP+L}ҊEM8 l$i2iEQ=>U28Et*" oYc3$(Z5 A^|끌jejTAٚ=1}GՁs'܍JsXxDVvE iȕ,Bq^*5!m8-KPoɄZp&eCN^쌕VR7oTV3vAeAPy AnR{ 9Ưw[E'*Fy l5+u)'pn 9ӚC"9gw?[YL&zn-+r$+T qc1;0Oayv4\LP"cRņ\$GŗR8o97/Qv2-Oغ(:&]*:l969AW`iX%b 806)Ti&dsKI;ݓk^S+sWO`]TclL;ז&!uoj1SnK/-ue95%5Nyt2$4BgMz$]C8mC]+&Q^O8!S#s{ܾ{+ Eʷ5}ݐO:-|3pIuIuyf!1̢2٘Fo0X_.nӷCGC -[Df+ʽ07 X#A)Fm5+;05BN곹cV;c(~]W.7s6p;HX?d@Hڙ Oȳ9q2} 3e[ SԁK\#jKg8|r>sT(I%n\@R25$KHgH'a})cYVrtF\IX<5LMZ֊MN4ju!Z\'$s𨮻8B^m)F?LxV&_tĺlMՂ}S/8&Ba!دE{Q0?Qֳk%EaqN;әdOo NzkCRru$vp;[33uz/_ CϫLq|٧˨zwWwCRMA1AN$$(瞣`=ȇy-lWbf;df$f| =ops99_mI_֙p6T[y X9I`t_R zc,[(۴bOjζw9 %z~T$GHf(aËRCw!YsRN[=αοu| Op   e2$@wɼdm\| VVfӅQLR)I>y*H.i;"ɞ>߰]uvavy'=oXGԈ4I/ Q;OP%Ade(d(pnj`(^gU4UsOl]asKfRje2rvSxƧ*pӿѴbQ2luhyŃt=5cZ2&m0ŦD"F _ n\0;$,=T2ʲ_+Os9;1),1[}KJ95LW)uRc**o߳AQ #r 1cqH;f+}C,[o@GpYi}YxN'A>C'c#tyk+d"krUǫ5oy>lSPl'1f"" oѕ#y艀{+Kv j6ws43)PΔWٸ?ؒo{`ި0 ļ\ X uҶ\w7|>M!  #IdJˡ D p%0rkczWu)s?Q6Ĭg"fחGꏍ2 Fo'wf.cSla6-ɤn㲩_@m]>2JB&iߘߥB9ds%fOvZ> հqt?ɟ$a2]v\!pMɥQO m"sZ76gXӦ>G1T.d)LˀRJSv}xo&o )AK: q~~+⫶խE 4'**(Ʒڄ6iW(Ag ˆj_lfKߊ3g&k/uM_mѓD}gwt(y_8;2֦a<k-[f pK˖W,xP`K.pxQ۩e,OD!'zArL+?υjy%2y>SxTKԩ`JV}rg։@_odC,aoٱ_΁WFQ7i [pu?EiaSr!`pa߫KcQ"():nv/3Ya`흍m;>cZnwJXբT ,axwUgZ4qW/jiBcrU$ ީ(pȎTHGEr 97aVSops04Xeǩ-pLI8SdmUD%x:*;|u;ZIixB,]|ny . U{˹ųs9uA# z/FQK3z*G\jU/F}8{3~#$ՇJ7/ϛ,K"& pb6"]BƩs!+7}$7& [Y1k ˷c"Y\hȆ6>4xEI} j؁x`y>]2~]QbȮ-wY#jeYq-usnx ɀ,@^+tEP<9*edBU z`Y0[h%x*^D$!:?'N\kT$% V̾XFϡEWmTVHfn Hje7c˝#ߊxum{Hô̭K}[آ_\Egav 1tO0Ұ=cWT9Btdx渿ۺ}: uܞ#=Oi/Iid8b $dEӎidSҐ#Q{&Z \V ZEdg Ɇw`R3 `L 4'%lR<.]jHoh+<ua`;6{R-8K_hv+&/E0-dxLtf)NqpY6m0F1FЅ [xEHtF5Vt2_\$gV0`\; 1~UYg|[7i5:y3? 6Xzfƒq>G0_yo[6x3IȈUa핔a5AwT-.lr5Fe@v?SSAҧWP>V7)#@bጭTթ"Q|-u_̠z#fC/ZzPj 5Je~W%ۂXczk՜rW"䎛.Vb{8]qzb V.gCq4p_sWtFnӦ1[K᧴gӇ17DR*_ui@a65y>q= TqOs 1td$WQ3z)il)umt Io4;SӿLZPc I4Z?\j@/T = KQ't=ƎC-|k\ZL; hL68^"?h&3[riٔ\;_l՞8]- 80)S8 \3M{K߃xcI#[OԅLb{p 3A@<#Ѹ|IIK|xc5 K7=<k[2IAJvGqVbhrd{o~  2G tDkT.~[P zjf u"`dXbc+ #2D>c{ZjR,UG[)JH]e3s;Y3V?mktibU?Sj7c< e4ڙe8g=7Z:%>eqVVD}g͋Ǎg6 lN>0LT`^pIӿg~q0R޾ыiU?bXU [Wyٙ~9Nyy [@nt& V|{rI-Zo2M #՛FK!0%hG4rXjx $F=oۇNϸN {QmrKty\˹' V r=NYT@'n%/h4?f'H:48:-k&$j ӝ756u5/Kb9\ ƶO ]&L  mWLlx& +>}.)S%[.${ĭӮAW{Y5BM!M7#[PR^o,,C,nFR=o@}fHHlI [gQ6Jx (j($t54ÇaHKN_*+6A+,.c'w$;9ų1jhCA{DaI xɅ0HA KM+P@b./uyoſ`~[ꃱZ:"n(䘞1kA(|dZZο"R|"'׎h D 3 }WȞYxZ.%a !t fZc?!II8]d !%Nu;njnuQ$ȥ @P W3}z)K[J)E8Qs@UZk&si\ZE]<(8yL0֏ځ_56G7!УlB_F!a>4}^y pW/ikft,q' e;,e2_\oNGk9٦k] awG($ _d$ mk*9d m +{@*KrA9Nx9.d=;G%}n9[㥢˝8*",hJWj{>os4Lb=>fc݈(wj~^̺-[/M0Q^7_Yhile(롨v~iĢbyc8(11Baqp 2,K>V†#;a4ޘL!S{eee ڳWL~_$pFk`Y#~ԍ91}Yϣ~JW8ϟJd'-K+hFSvqEDDXvc-O\zt$z:C;t5-OܧZYe? Zf8Gz?v; F鼑B*oWƒ魾:´%aa4 A(RzwB+ɚ>8 6?#U^w+O̎ (y&>U"ƷֽƫgE{_ԌzjO1 CI)oϞ>̕!Ƀd;?W)%v|`FZh91r1aZfT2Z8%VYC_$yb|I3Bz0enh%nQĻj3Ǭ3OgW:kzRDG1V~ o4ñM/V}n9_qBo*<&TxpU X+C* )sdzzwCGz‹6Y|i5NP7;Guy |$Ž 3Wxq QKyR; $ߙͬj$|q d/LZhLJ4~‰0qNטCj<3ZVa!a*i͐T 'g;8dάǴ|ɁsrHWx]O7}Q//{"Tm$"'#PީUp0x!HFmH:Kl4;Fufg# P\Gv̝B_Y,˴a<9pk4Ԇ.}B(7@#HMPE"I5˭r[,.@zyixi+ڠ7榦1%'եpFAmzq*ߵwXez:&0JJ޻ ѵWD4'SxqIVz5UPX5krYPv&pK6Y CnkՇ{qsJ'h?y|IHg?u1MMIۋG l77 e)tۥNEܳU_QT 6o┟nSP-BZyft8@|OvD̋RSF3NTphhL3 U=@Eea4&hhJ59@ΤM/m޽oK!*lP}6͕t% xb;8 ?MYK@"n?g8خ{W&KBoZrp=r:ʣJ~{okzPX3_-`A:7Pyvәg?Hsх6DHgl}k‡cS@lg׈. &X&chll}, Max寍}Vܨ1]6AB-?V':YR8Oe;Mh;?޸ҧRoFT n!pܧ{g/Z z5$ɕGN Y(~AD 8l\%k=aŢ=!ɯLghK,q(K!޿@ܸak-VfK2$0tmV7}^{.`# :} 'øFyGn!H_`?տy<)ᥗ<`1{O%`u*iK<~ â)5=H!=j+ҹ>_=B =#+9Q Ry&r5;"]ʀrmF}B&ʿV%=]h9KDX89r 18 .L=ɔѲ41'ST[jiPr_vVcD7xN0~eF $34ޡ<uh Bo}P%U ɤk$7L$Y2'ہk}P|d?E`lCd<4tܑqȀD?^r"-~yW"}Ϥ[ Dx$0:"D>0;љj#꛹ʼ NMgTgb Wi*FiJi]3 hbK8}H#cج>gfT"XN/@޶w[*)Iֿ֞9X"y ψrYjl6MZ~r-У7]$ɝ=a--q;Y48u{RR3S h1vuU%vg+~ u{+&?%]n79^m?)7$,tmċ:l& -=WZXNM01cR: /g̊O(K/7҃kZnL$yx0ێfKZ^ !wĨ4NJr TRJe۵ciI> &8 _ɚ  MCb/2C8@\YzT[הi:"Ej Uz9q=Q@G~hpocF8;Ag߬ #ڽ_xrB^qh33Bt}ԭYա:Oy6^/rVo KNCjɣKD57]{ onNR yJ~}S̲2tSpJ{j_=Aޔ-(Rs4 I2֧>N&^дV&[6q&,5.䃊Z3,Qt)ќ#gy~&T4Ճ͗2i&HJXL;3b#)`od]hBU6 _L~0A Kinq̼yiYaqFMZ>ؼ~Tm`k8&<=悴ύ G/kMd*8l4 uMXfA y3%4V4̈ȟ#aȞIɻz[LxQu16n0)bUA6NӮRjߊ MOܰHB]4F&,ӊ,|`ݽe)7Ц g1B+V2ru*C̺sحXUZQQczcpxVFs*F*B:ڜ>N]Vd"] 4"Fı\z:Mgď'0 yd>bqla{r 5zA2?q+9|'˔@.)fsSz- ʀ#;]17XՉ[& 4yV!&ǒFM>sM?2쫨J2O)Gw`5źЕ{'_a(g.,3T\\k$JY;{be38 %ru48\ݻqr R.$15kQJ/my u /a#?IeJ?YzH޴TO&ywvǤkq8ue.F?zMNPOT5M]tS~ǔUU[[ j8:S<61X,v c }9_Ϟ|4mPz 8,MJޭK@(nZVJIq H3~LoSeT2șʛ=(܎R>TgNN: UeG3fe' TAnqZ} E0 ayF?^ra$:p}|+O:HU p"~l{5t?ɚJՆGl!4d޿5oFF$=dQŤw3[HLMc472UAXLT>2Sq12鰖a&N9^kY0L*\ `1#F3++b7,&4Y&{KMIFFv$}٫dy&\ cq \'xqj DJ8,jjvm x/ɗڹ$bSP:mDa=O#k.~Sj|R$lrƕZKX(8mLEqi=KS<Kϓw VB;8o:7>m'V2)mjt* KZMZX 8,ٲ_B"P*ϙ' vTݑ27^nNyW4<mݨ0]Z0<L&A1f+ϧPdn"iS"hSQխԕ~&Bec_| a}My\ʲ=Կ5is lq%zݠ<Ri)J,4?Ah-lz0B0LJЯYIiw!u[$cEEr@ _$3[ތOK\"!qw/>H൱?>$@O)  {r>b ?zf?xE [#6x1; &I:7w?rPG]Cj;!c#䥙 r/敎MVA*'df*Fg(4/1>{GA9ħ;=zVGD!$>)}ypvPptqgRS֢Gj g5ܛhhuѡ^1cP%>q({_7˽jk6ZiØ-BJa[ϑs%?AOHJ>/@}c=E9yG!4 ~[-fzš'CĨʬpJAGZJVn~TnmrEuE[JS3h 5 (#A>Z񸲃Es6/pBGh/hb ,P~HVSM|oѱ;7$ȩDPڬ&|1P& !< ?H,ǿB!ezU\@o\Lj_+!ab#VB)S6&ވa8 so?!!ϙ=!0X(r@7Q|; rV1WPTEj.3IU\bLU-nxCK;. ' SI;E(m\8V K`/F~rQ&(Y;jiϕ!÷.^kaoQKI:Bx/FUXZ-9* ѸEaLXS2˔.=贼obki+"2)6fi#T@$(re7TrT474-BxCtS7nR1l~1ruUATՄqi"3ir*]dYXyhmӯR\ ȜE*{G3?W X?I t22oU0*Q:V< -DDƶߠq+O9\mkbH!KWdͿQ^*08ْs85-[} 6Uzq^qN%m~Qg@Z! E3ߔj(ϣAK@i\p- }5ai&z~ \O*C)X*d0PO#Zcda} *1+hEPbzkP+E1]Ι$s=-|&e#;Q@KC*ZmD'ĂJ-$za+ߪ|> v/HލӷM*|iy{Ϋ*6'n{31SmPuEe/3A]aW^@2=q>MA1aJWg1iŧzP}'. e#瘕G&&Sb]x I;aK&9K!EN ^e;kQ&v; Zmh:!ۂdMpfd1HaBiRZ4\؏ɳŠ8@k1A =(;h㯐?6qғ*"Aj@Hd]ϰ# Lm'%Jb64v?kI!q9{Z RKLhm9v!SzB1v FH$*αϰʢu6ס{- WuWsr#XV2T#wgKDqyCaK?l6SuCH O`I.ML-JvQK-MY@ w^lz0:247 [iVvA-9s>QeXVyE3tLBG* |m]6|7.ƣxFVU"+ԓem=n^?50HبtrFZxH*'%(5f*33儸uɻ鹣`TKGmh.YJQ?D+(*b/)Wj7N[Tߚ ;ru}@hxibvc0Tl7@_d$ZQd3&ba7Ehnbё5$ieÆJU=WX7'?f>[~2VIǓXmr~0u6tW-J@,MʯnNT; uYg_%Ye5u~n5$VIpȫ5& -o8Gd,C:̬͐%!g+]I4u6?jû.EKS. f"՝aK fCagg ʋIuк_i2Jx'Xi`Akӆ0aX2oJCҰZʐC4*VNHٖk =GetiTuƮ<(l'w}P(c (^b02=3RsՆnL0rRuY{`],ҟM1lsEe|IU _T exT߯0 * {*#A,WmN>B~ep&bbk*̓ Ev[SV?UGa<R-V)l j*wB)J<%"a[sfEs=֨ ֻ:[I\gB2t'w]Œ"DSO8!`"t"EkQ^Z6iCU"ˠ)7':+@Nc/Em&|fkuQiAv*FuIE6 DNkڡ2e qnDG)Rd !Qո%"'-ex5FIc *U#6inALx[ٯ SķL`ɠ#222K-AƦ`gK:jAN$5!UbCop@,*n `yai'[}5s^hǭ ڤ{Х>[P,ϰt +B+<Ҕ ڻߎ#_S.m;?D9l}.e~/2uҿ_lKiL_NR4}i|Pcq3T .NW"VƓFZ#q1?saq:F4Y"x]!Y2O'Vi`DVfQ(|K|ws֢^W͇GWKӈY.:E~Nj2 zweоG*$_QGWەqCz\#ZBgEI_$YEAT$4K؈aU^}$C73V?= & υgw`&vhɂ/+EnBjHIDZތH': 5 zSpU=1J~4ڟ '.78Kheؼ_Xhэwmeo&R OI\ۇ 2B}&f M3[ n;Dt\tټ:U[gY '!kX ZzCu"* ]Sȯv'>c4(n?%Lw22% ҆|auJ^ Mp7!;-fd0(u0奓ɬeD?TH!ʫ F̚Emq1Pg>QBzpifI*noךUr /j>tŗ/_)uPi.>vմ. 8*{. l{Xv𬩚6%94. ȾN5e达Є+/׫7bobPf~q~2$e A0o@..דu0{j⇍Oe eMrA4#Fqi f]|94UV{x+!{ &3mBem<ٻ;;dEHr;4|@ZAP9]|8qC׮UõqU{B@̀W>*,#%n\pAe1ʉț0s[ ׷lKנKZXvK,Bwv/_>] 4Vjt$.#pk l [4j޿{G}>3yJμcB|#@{oyeP);cUHfcTuRf$9anVgM>]# >9)YVFbYUvJX_AWbwt9_y."n[m#_s\:AF"Y}98Y"bnC{D|Сx #dD~?^r&D=bկݞ26@]8W' 9QX5dوf=+K' rU0yh7-Rd}'` aq@:#bTBoAt~ÆG3vn[r>(W> $]tWؘoq2v""e^!E;%)0?]`Ϛ6=9H:za QD$et[2Fx4dơQkoB7RÒv3Bj%ÜG!h#%Ħⵛdtaz笛D~1!N--a]wLR|KI>xǚc@ 5iPl> ADU^>z=4r0м6DN̢$mǔ Ek}^1*xz3WSHUG^aFО}6=ť!Z}0i3כoIl ,bWr[\ͧ 10:u+u(([YcK>(wlth18as;rF+tQh5o 4Z/ؑ{DRDًl@/DfD,\\)H[:l dK9'|ۨctH{bNÑ8wsaS@ ?qE$8.ؤvVJǼO+ gk!hM,pݞ-R!R[ZtyoQq&"$"SN2\x,$^!"D'DH  ^]N6u$ogZ*!cP|䌹S]]6SAϡND?B`pM-%&VcSn@B\I{X)L͙yx*xѧ$'wr;MvG=4ո lfZ]`pv.Y<;֎[b5WV$Ǒ*Eƪ%s7I]wd5RKxFĖ/Cf;!y4<5B$If;ȏBlNu"($3Z/xݾӾqk܅'0T8Q:CIu|Gx4H*/Hij+-ܽ"8]n#B_8JG&Ú \'I ,@\RYL҃qSp8}@kuD|v!࣌sнhۭe- zD}}yr0'j[%Иy_{tq" AM0IQ8^=p+xc.w1Y}yy_ewÕ_ ,~ s߽C`/[Xnj+Nc +$7U[;,۸o|=u5$*C47h1x {ǣUYѬ'~|xTط 4v=o_}cZ5-! ͊qi-3fŃjī3a6@=UR^kDm@zJ^ !6 !aTWJ>E1jɫL@//;8:7n];{ Eo9nXCB @|(!<B]jbW ?Iv''JB/ï"H=} e*;FBϸ U&.plo"#fؔˣ*,<F GI_hy*f."q>):}υ8[߳6<Ƚ sk|xf>9]!&u6v"?b5qJkaD=uѦa_dgٚy0HWC•T: y(- Li1k+Xkvk7n6Pd'f #o*8cʬ+y|3usl-Qގѐ ȼіvk V˛:ǡ+x@аǖ2ԺG;:T@.!RfǃL Vd" w4_*T84nWɻ8/ g`@^f IO )l߅txZ{-#OӋ[v*>H _+BvhLk\ghFۊvz>Ʋ116zjrˡcj:1ok#кQex՞@9,s-Ұې!E|4y`u]ZhFy2|G| H[/ָ'aƃbkbE(M7Bl'҆j#1q(!TO|$Irw̮  a?m/Vg4vFϦ[.\㔮c: ^pEn0/KhJ.ЮM }FGo}Ke݌t/vxaz[)܂`b .RƑtz[Gh+O: $u| D9א;]*JW>fFq՝z:Yg|kAR'OO_ a;i.8VRT{V$gMR$˱繁ON MRz;tq]q=.ECLDmiY|@ (w0е.<>M$&!J)z-S0CQ wճj1ۃP2"N!%F>b⑇/x n6ҥEn7ZgM}=wJw՛em=#b/%Lib2 RI<# ge2j(Dê u _4X_3V?.7ꗓ[F^I;QC 34hظ֏xlI1Act\GnH넛KwZq컚W  %6DݐպYIN}l߅kd9<_ݶPqK|i4ѷulerpeAD}3)Hc]*ZSc!A8J}tط7KP[;1&z4׽Fd-/ϏTrY PKP Z:[vA",#(4e#(d5Y|ahQ2҇b"E~Z88Bd63]JR/مFS,9N{ lr啗3R /Q}fp+'v8WKSÛ-l:C/Knh.o.Rn㸑N FwI&Ɏ]96: օywB?&AVD:ny{A,/hUE*~RߴgN[#^ r1.6r"P8 nx0Au@kp,ayQs~R7ަIG+œzNA\!!BͰXB\TRQ *wNf>g{ yrW(?/7i:B|L(f:.}z &DF$ZO{R/T@a8G ~zti0ɹ4rB_?5ᐟb[vJڊuHVOTA(.0ց+I"Vl_f[;cmg|IL1薒Qۙt6)Ps1caj^ݣ&@ř F`9$K5=)Z# 1)ScX;禨pVѯU"&t,l_L^ StlH:'``|, {r|ЂmM/[F՜;B{o>GBiz+(b@_n3{ޢP Tʶ 5[1*9-IraU&ǹaҰ dS¨mպPf`rlƉp=@- Y(-Aj5rTjR=OnWI5NP~G%#7,^ܛ<yP栂YL`;m&vi^N(m]Ć=IA8Sv5jE ֩A=َ19 a/`H>=HWZ)k'ecmXϻգv CRF`y1R$EM;M&vɎ)<)Eh.0a w`S&Xۿge}ig}g3:|D> iYJ yP,=< e*& ɋ٩ꗙ6Q u(E4j5:XLMSr{1 +q7IP 䈳b2imC* /h~1yŐb;:L AMF̘5x,a+pT@.ԃ qm4+Uqo_qg Zr.j`$b+Tueًy,xXfz gi< 8YQ @ Wπg3/ H<V&)1p';uIꚑZ vI|t p''/׶T#Vh !|kJIΦ͂]3B99Cyq VcEq5iG 9,?G _*fZ@SVMXD,t[36yݏfYҥ]rk=b{A'OmL]fN w`ǟΚgf 6g ѦyZ#4[nk4D>s/%?lFI`+\K HOM8Re-e3ԧ{Ԏ.cV Ze%*}jz W6.X It\ ]>7on] hF8/u\!KAW(վRF`Y:y`(kY%Hkn1w _ٲx e}upЖa`GS,(>nsph"1|kqX;./ʰ=!ӬŤ""/C_16`a49K_|W)c̚Ɍbn3;8(c=@}<(?0z+mUelNa| .mx.ţ\o&6H`K{N8c6^?v/nEn LgMw&>6n#1g4艥١&ͅ?6$ ^i 'żlO/Ȕv9b9tƠ/ۗL˘T Z-bM%il]\R m-ґVvWjIJ '0y0bdtibO^v>ܦmHbQ5o{S1kbysc?z2o,(eGɦ=2!Rcx= _q"&mٌ(sH.TL)2OrՅ?l8[Cw.7/lypGf)zҵ EٜsX5VZR6TS/rtx^;=ӝ}d-8=FOswT6pAE D"Ʀ[/u6v~%nN#Jp w!$M"LT_9t23Y lbm3(إNl޶ِGAtﮱ˂Ȧ^iCD_Le3`n狭51ꋞI}/U묨F&z7<ԝr1LP ?K@iOvcc%Sz X;V&+kr3TvC ǎ5ҵRdUlwwŧ'4 ς\5"[r8ib7$UDl3_NQ`z35?"e.ϋ~Q /,0h3۾Iq ɵQ8DWE~$h " (h'aՎ߆!-AX@ν;kL%1,R2q%5:ߕbyr5`)q3Tw*YLq@?#*Q9~VT4V_jb8A`@/Ы kw 2ID觟C׬nOQ(c\mW#W.$MJEbj0RS"}ǞOf {!;1TS` IҞYC-ae\"kZq?y$?nD?"4u8V-u%< " n"(vn?[Q\+v=F JOGO[6;[|Dܙt0̭ eP \:j{k dm$C(2V%]!H '.Aq^ m H^-3jM2!G=+'^p2 0ʫ}Y$$:B|h2) c%_r#FwG5 G>b4cN#[g+Cr8tq!YʮM:/8=0>&#sE%?`3zd0?@_SmiM0֡jDG|^ e}{ K QYPc)xbAawI#L2?DukLybd~\$mzwțO?ɯ>!b B_~-dcX#7v4N @9s+iV "7V*is>\I93;$kW{ǧ-m5]kܩ\ˈ5;}@PrD{ @$n*H3%Ȑ{G/ݫYBhVjH#}4 vVb_K>+{_7a8.Y!ݖhW( :{:n(TF33k?Nwyۓ'UWbO_/ MneBnb-nˬW%K}mgAϨߩn{XZ/1pB.(WJGQ}*ZIQ @ ;|PWq q@Dۤ0CH~F_Ķʻ%b.Q^UNKY´.F .c5gu70,zb7hw P! otALHa#gXى^h }9W%Bz1l$oHMTRwĺbWAnß/Om9Ұ-q}bs'w7 w:t>LOWsLfnBmo=j^׼om@OmLP2%o&':ZB`10^1[-N15$"L2d#Hp^_;/q.ŖEݍS6?]'~]cuNN>eMIkxƝv_r5p:/\#fGK'F8YA,ڬ Rf?V;E0F^r5tĸ~b'.!GD!euG;Wj B'}1/:a]Z r8 UvtT0ےFiIĠ"$%B2h CE Nf.{jdr gCX", /jnTU˓72$' gb?=.2_dO 3TABNElF;f6ӦjAT<{ Mtq>[zaI  {g. :TO-qe?9699=% \ld8w43f߆ĿPK#xPFjK) Ok-߹"U)(FBl|M μlHo;pCb+5IE@f7$;g JtNTQ(ḕ7T4O}qFpo7PᱳYJJm~F3gU+='es'3S6-vfRϼ#58GQbQ\Msu 3^yvxxZzl3_J?#gLE @N'Uv)tۚ%OvnI֯s7 2R*eܵ*Itk3(nF+u.TYgS&*J7ܢFS$@dryo.,EuPԳ[Ԃ3o)}ۧ" @(DtrT\@c҅qvB\zѥ64rFN<7=V8Bުjqn*^Rrd5ϩ6f)Z-7n <.p{v0v+_~};3I jڝQZ;\H&7뉧vzN2*,zя(>0o,2#[+_$ہsd,xA%ڱFf6$[?Jl9l,Ӛ>%Ԕ+'%pBsX0a"+4ō-9olhy_(@lPqMKYG? 9='? jA#@%zyO`YZڣ.oNv7T@Z^6q}KZƕ,X"_I7hٴqrQ?O7ulH6QNAKh0pZS`Dh{1+e:!M`tpWA&á9e%j}0'sWf6D@$g7`.dc$|ANn0gdUe0FĬhU4{q_u]>\ ulyIzc-;H*ѽYG)IX5,#u;m0x7I0W[_f;r]L 46hNп[ J8y Gy!Mg%@842ڔnhM5a'=*ܙ'587z B*R חE9K}UT! yWZf :kI 8mocUe[U36 E4/ /ᕚ)cr 5T;@ ARhi nϬ]wX@q [:w/QٝCw-7.h l̚X[JZ 5W%b7fI g@C6B\2;6N}n-cQqmy3d #nF&Ȩ'&!zl@}su6tUE`Rvrv5QwU`g/w]he|_Đ [2KB\]J.`ZY_lpRrBbc!HJCAtV|q+Ү]Ѝ*_#{St7BCH{xZXAHޝN@/hC/dKqL8 bpt1doC^FM {[J,PRô6b&pyV|(9 D]x"Fu\D;0&k?g 0n}Yu[RZkCT1Q0u;ia/,GOOg\ogGWF2.I}NiR0,.9ː4UM/[zT,~:W Ŏ5hU-ݎ1DĔ,ѹ NxŘޚmHj2vAeq?!% 8= RUNI֚\4@{Axw+2YEk80MJwЀkc ܮ Anq5&/z9}򏔭3>T_%#bxyf̌a?VH[ѝ5%9 4f.HhL-BujybC{_px w:H="#Zpf_qrR1{]b]Neס-A EG?}҄oirAK\7XP0&3R5g ~'HVl16P֥S\ÊWI{Jtfj)e} Aw"80f4Sde#.xg" Mր"B&o}Ad+fhI MYojxb 㚵! 5 !n&u5A cؼEE~yR쁝aCTh~lj"mq:t^Ua[=A0l e;gr)NUMI0{:xݬϷ:2ɵZl&DyMқ 8Qi!K81X W\^'1@'lw&/ ڛq~?JJ]nBKh 5ԕR; KcZ]J ZPZ!Q@3ExeHDrV]}9xhUtGhɁm74K]#8ٝ~g:*hYSGun ]6g(1E-_">j!o<G+g!Q@FM,^WuB3$EF[6_7ř^nq'rV%Dtbx[HoX*F w `Aԟe'inoZ?{)~F4%CGXџ~1~"c%z{4:n!@Kȴwhu-B;"ZZ(U_2ZH<֧L5^c$= HDfAy.k"| "Nks:1oF}vmC7*wƆB<^C P1q8cYeK4!KzO(]WX32't^.:˗phAZQ#6-.g [^9+g?g&^5>Hq|v3,uiXvo+% 4܃Ύ76U`4U Hb?pp$B_ϑ$˄A @; ~O"V>2Y?١ܒ2?q QU`4ۀsF-Ȯm&FoOEIXԃkT!V|2"*Ni`S\8F1*yR޷L Ѡ3kggS/ҩc;epj(jAaԤ2]Cɵd!TU0C 酮\i D §΂rė~ PeO'p=xm X /bٲVb!}Fr /jKO[V&d&ݚlF0>Vr@nsfyZGN8㔧ĈdQl7{Ο왳V/פdNez:` GpF*nQ G%w#aCxښywvJOݳ\TK?=ȯϨ8?a+*&h,#}7-PIa#uMrXw*.U^gۚG-,Wx5.Enfi6gɺ[}&$N\"eP5Ԕ%܇6)` aNпl.!Sy:c4>ل%MEcKDXi*s>m[ih'c踅1IQSA ǬM&] 6P:Q3Ce\OQ6T`_HdJŞ,ڶifv^܀^‰?Z ׈ѱcc}0 3Ȣq/J׫Ө| NH& Q"  6,흤qTťc-V* ￱9GM.y3/i!2SI{PĶ'+s@ f-SO:Я0>JύF7|w.n8I&.Lg8IY T+ٕA (Џ'U_ V%icBT5?4% wQDQ<2=bCA_Cc\CG]i2\9O$r{aiz-Zo 7PF5biHKE0 4pATǸjr6VcEl؍\_Z{D9 %o4'ϴ.mpY|'23͇^71-"yURܶonoԜ1\bvE"*hGx6x ,αAA +G>Dd1DSkȫj40 6Y`gG;OH0G^-Ѕ@0a.f&}l^]J#}c~',  dȽqr< ,WI_dp*(@%13eb1?GbyzqKF>/XhM_i\HQS]gcP7|m;+ {%!")>&bٿ x!R.ձHXmG=Z1}2wW]شR5E61U~ oK}-’xyV[/QfBWכU|i_3AȭZ$=fCgיDTI(H&®,箲0*Dr;&d~ʙ:B&G;FqhܭCUo c)GN(IAǮ #46y~2ˤ:k'X3!HAi$(>Bz:v9c$74iχ%9vR@ދY}ofKHc9ꮹT\^ɩYPnB0G (0&QPqrǥ)öyoZWٞYJ7KѦmsk>&R (z g܂ l$+* Z-XF7ru< 'n%X4s!{1FEkp<_`rk"NPö"1(VlEWwJ jDtC4YNhdr(jn fyp*Y|2횶K6XIo _g4&-ZŤ- ϬHH1pgh쐶5[@0WVXKj\+TPHaa7!1pbMtݞU`HCM "H#P,Rn"*1Zz)1s'}6Q P $UDs홙`tH)Lɍ '+w~kcv?x3y>FN*x;u]y+Ƕv# tA=߻v.)CH "eԅFb a- ykgHp<ߦ~J`T CZ8(mWAAgc,1Ŧ\vYF{ETaWqbp H]P nL[4p6|U Z'`X"!C/;$!=կxv_{E% qkIT/,Ey >nh$L/jÁ ߇^$YW?o\zcsqM*}bo]pp.!rg#Y&f`OP[(1X޵YZx{nbyi >-g e fp\SV] UjR'IVKEg2 "ϑ;9L!,zKGN߯SRϰcdB(a/=cO S7(#4ns5_ubOz!yv❈F#T~J@iQHx?[ߚ\:oz?@`hw_[ǠIgy{>"h_TcCR sdA'1qlK]hx2!~nQr8o)8[FRQf(Q#`pS:@Q>.}z~V*PRTtzwVMN g.wb/o#_$zԿ$u9]tTaBJ!Ol`Y/ma?++j&0DHv秊*yjyRlzj kJ gVq&)HDT1UzºK7 ?,HJ_өbGbрe! L/, Em_!D _e(y&mM*;|Bv\`uN~"NA2J'Ԇi_q9p#G鰒86B|f,3iS52wF֪I̅5eCb|^j]wDG?ao RD^5`oVVٔjOU#;~GT Iv\XHmK}@Y56ݶ9~(J\!&E~}п/JsV"Z+!>F[H;=`ҁlMlf/7Mc"υɴ 8gq-gKx&@ &~4Kgv7Lss#!FkA5XxQ/FQ4-=>][z3.) ,,DzN ;m d4<!H4IbkV)O\a߉)Re\fVOaa>)lAUbrWC ]bgb$޼^ 3R%/;DGeŧO5 ڋ@e!D}iH ) S>D@du? Z9^ln(d@֎ Ɲ&>8Yڊ36y]}.7`"w 0hB0T}*<O+p3 fF^4 X*&$,ыqӈbpD+yPQC6d6(1]Q|ܲb1\#!9$?fPwHz;%M"_LmFrmmrR2 ;qhOu(^00H: :UxLya`JV6TV,&(ջ/CASUyIC*Ds_2NcR=mK8 C)!-Chg9 pˎ7}HX3g2nɥjH g;413n&@:aU%;" lhFGQ'@DabApv-Jdˏ*B lm޵9:=?ָA'X\R)N2֝`&ρk$pjd^dRXv!fL,x* E[30H -Hr[<2_Sib1=)+XKf`F7) |'O`W'DWѪ>CK .u h&w˅ڀF) B@R ]]ηE8C&7{MCz@,=ܴ(ĦuuEðe 7~'<ȍ2T͑Mr w&dTՇ$j*Mr֩_vpd~h!AȘƻzQ#4)dC}4}*E"sW>l\@~$8 16V?%,[zDɘyxFeO 0!@h5u'G]nDw̦ܢǁlL$B H+_UuH 7W"vOP~t^)&}aMl&a.Īkܑp S=;$uU* stp+(}.p)bHf Č{d0L8 _:# x+m'T]ޡrBH=,>yEՙ Fdokzcicy |JX| P6pseZi +zf%!ɬLYDhV+|&ںeݶBhsQ0C~/Kw8[5+dc_-R_M_LF!5LL "w1^ 0n8[h㎱]x ude0caDMS&uA 兴[:7a|-f/~t1:QhVen1z1&OÇ:LΡ 6=Vv $aӼq] rvg"xpؕH`$R-$"=?s\ ,CFJUOn)F#urIEuuȗxCE(.o2ۮ2WĹ;ČSTqyY9 1Y|"~o4FKHzq5sđKck}釷ϣ2|[c{1-DEq+=Kp 2_z={#pNO}Yrm Ga% pN=?5jIȅ ŸF5@y'i QTHPE7/1Ix=it:LSA:FZ >`mRҒt59Sю*֚X0!DH+ґf$~=Mk̤4Mʀ4bR *|.Z88:@sr ~HEvksͻ6^y0x/V-eT;fO  e_1>L알- #* BgR hNk;2ԉZL.(tvbT}AT|k_'ڃD)37CN3ZjhiFa&hk\8уXUV& 2; &!){ xI5 q㻑1ckW a?*Q¤} )>J`ASZV̉ssy]g@iŁ(&*RjZs1SI L^Ygip7gze4ڒj\؛Q vIs9 ykg,+3$~[poL}ѝ m+sGHcSbd{JTG*-E^'jWm0D嫟xGd_hَfb~ =~7G'cfUzTXvқ`1 3 dpvj [U{np_&iRqp'p9oy>+/>!-aޙz5*֯V\-OU" {b&Kӏ!O&:WMts~Ź )vU#5N; =ōgIhLL»r &#tC8/`[JRt_نp@kTCÁؘܗSº')ts(_V;W&1<ꍵlUx~mكd>@I $+f5G[| P61+o.\Eb()C~?Y/T-Ɩ(W7zsG^BGێI;Kgtt2'_L$_##BHY?9 Ƃ">Kv̋NQWo)#i,xfMSA;pEmh \(geo'% )M&7qi{FQ{HYɀ:b*VxT~}ib)zS^!s$/ l_;IҏE@4 e>,D}&.i?'T YY)Ϋ kE)VV<<# ;. &?7A*A엧/tB}%\:#=dB;vm&a|pOOH9kT p/2iybҩT1(hѲ@iȝ2jJX`!4^p3 .GnF?ӸUX +Eղt,QM]wϬc2o<w16ZL6acHͩsO$pf2ş7pF#Azr#6~>eo7@:x UzH=7#'oan k57snʵ<_D;7d?|X%n8S#LD)Tj ހ0i $E&DN{E9,8gY18zs!ŇKOVV!bH{ΥQ-cL7[̐S$U{ƌF# \uN84[=/fsCM%6GKwA8R@A~rvBI!-%^MJ8bP0zkK 9IHF=#_/.-ATH@m};wI H!1ۆ&?F`0}I ,(/Ջ`9}9t:enwE7mOE?Mݶ6ҫоM/6!ͺӃNrB=^dUg{M+bEo <-ŤhR 7C{ʋUd7ٻ|:+ZՕ|ÀAtSmҋ+Kl߽fOeЁ5h[AXmE#mueJySjAX=æ|":ǬTb ű_TsX`n:p L |9boUwrݵ]" PbHA¡S ]ǎ}X ;`)YhᴫgؚylcyR{1 bAlJB8Xl-/E76{ۣ)!T P-LJ5_O=|'i#,BI+Bw+1+&Ejb],2)^u9{537Bͺs00IXP@a"m,Cn1޺) g$b ʂjuOnՉo/S!3JtFaEWa hJZ q/f6"k8YDfWmQ/(cqdF> *?ػʕx%"P=?u)m(eW͂qSeQdCW- 8U@Rq?VKo 6-m<%](ɼ,YHw?3hSD3 $2,x>Qi {)PrBXDn1%C>AETe,={xhyOS//g* fʲ3\wNB5uHƇ&vCAsT7Af J+?('J!tԔ]7^z662ķ.~U5(T'XԥE2 =Ӕ!*A6 6NJC8iCZiޚ4*X#)xbw_;{)@ݸ ]6q 뾙$k!X.,Re.-TO<`yQwZPOk_q$*ͨnfMu3eƎD*h'\v⩤ 65-\.C˲lO[$LgJ:¸{g뫽OS,6g:K'f{"b9N!qshϓ5hsK(Aцً44X- !d3qq~pG?W*p-~E'gpsqJ, Rz.ɯ~`~s Օ/,.ԾV?!m:bxtM'me@.ЖAo7CrĶ66Wŧ }E3k[66%Id./G-~SbG.H*\ &{> lr<˂}[H܈l]dtuUQֆ/uEGD4{JqsV)Ф(0ڞz ݃+|>mQOْU-jOׅ=EɑyfLk7LS5eSN4A=fŲhLne1.mT>zNK"i_QieĖkbF㻥keVUJWw377x)zkCl&=^mwxtݵX%&j"}S NB& b᧓gȄZ-"-Bcu[hv9 ]cf(đNw^r2 2W4[pQxYqG*D`llwÓ`3./[俀D$cw+4 r􈭓h[kC),i'ٮЭ,!±1]F>q )o 9 ?RuÀDp#WpDn֝ԣG_(8|D.0"dKsG@3)8[R){Eh-э:mD^aћyw S}Ƴk/!*iP'XJ$`)7dtYFMM7epF= $gSBH,pԺЧ͠32tMH_{i|6(>AH]@O\34XVM".6!fV6DՒY;Y"<sŷx 423F@-S? .'/jt k^\<`vpȖWB-SqezQ7_]3Vo5KQ)4;NZ{Vۄ6o~7J!q㣻vST/ZP>2Yj8,mŧ~PЪ ʣN)[իb2鲞x^!?ږ"VEe,Y5 b`4F*# b%sIx/7P.nNh %moʌy'\,1'Uøu##;NÜ/뫛7UpvNluB0Ed$")}Ni9zS6?]32Kd)NLa< C(q<(#~xCX^ȃrI'bnD 9r@lYd)2Hs0xSٷ5 Wm< yֆ}\NdQkFǯĀU 9YYl|nqB#GuUx)Gx^ "ʲ7ɛdlUƳ!v卜hiBLKHKVԻΦk)O.٥!ɷV? АulI&?Ž˲#hg{()Q˯;^"$C{#%+ưbL /b0*>vܡ$6w˼0G`?"ђ2Ϩg$+ %f]  Za{F>v<&wL*s'7F&RF`W7`TRѢg\ǂڿ;9{JRD Z;`8rb48Tپg>CF@[YgnN*A|['ZhRdkQK"j rX3(첆{DbD4kYJ313<%̷[[wYlDx]x}@9 !yn$Lс9`F;cfP\y[\t_)&]2 l d#c!4єH[\'GOuظ1C.-piSaKn(MWXRiH&%<!aız;ŗ#f') -͸dYڶE5,y5?ؖU‘ IjV`l<觼;nwBз{#3Wy BlW u7mu,is*\?)8"mmu+[FsM5Q58hoI$Uw3o925ؚ2=-GN8=Tja4{ k|۳$` OG$~J]c~&Ac7 zv t{#,0xgܲ,pcT3LB,JIm'r^9Qp|TŒ,=ܿ]Ȓ'4b/JSRgAR?'ӈ>5n1R r1 ;k0{^HXW>X`NP'5vqgV9[[WTOf^>?X oZ,cYo8C#sriz)uA3@f37v@v\6!#:q_G]uk*{Ń죨|HDRz Q{YKlri#K]ۚIiRR#sÈq;c`BE~i>}F'\8Ͽf8m 9WcQ/ZwL[7lR${H#:;7FdB ^/%*fщC4|@Gzob<v'諁˲`Iw`I ^zH84aZGj?; j_Z}t$gA[hq'R #xk Ih5W-dh L5![I+dw$di- $ba].EhI(V~)'!y+pkXPJIt 5 h!J~$Oy$%/B\:VB]ܮ xq{uė_L]Rҏw%J3dt 7xWk&=n9_'˸RO>GȾhiwM86Ԛvi=5isš`!ŊX<_2g@e7\gpaFnMvbiy fp[Q6q}%m.7C`{1Kst|,7+cwe7Ҷ } S% ~"-DvO&Q|h3uCڙ!^d ƺ 45lhu.+\n D]:ul~]!ݲ-+'t=IEvj\-94d8Qgy ޯo `3L3kEf߫콏pgO]Ur|qޠ`½̲f$עhH~Ē*K*MOWw[Xl LJ9Hs5f _^N8=-Z?X^z/lDC3O ֑TkZ43F%׊ $)QǶiH%Uk}8#= \ {74x<0>NAYߛԜpvT%@K+Vn.׆sS*JO >ܫ,3dJͿrx̽JxOg W_@$V:ы,Yyu-Y#qF!oh&KV!ץuWxԬםH%}|PZCC@eC" G"%Pc~V/ :xZo"PY0)Wg06Ҝ?%06= A>ai @x]-@|{L2#[qnucEGJ,uۼ,HE洆| Ezo̬½5wq՞e)NQtBa^W}:I:{c\@ HὯV%&%( m CCjgk7*5\$a&kߐ-q2Syɂy7wX{`tH~fvDu] Q!;r`?5̾5R!bъG 'IbYzp4[yu.6ď `}-8j僾P=gs ķspj0Yn8.2?fVwp~ݷ1߰! `4dkAC x#@g MSM-SHeZ$OVfN>Sx]N{CM)3S:VQa.Ef.rs6ю@nJ#H"WPn&,G6{w -m%zg9v:DE(<31 WmBBz;5n'5d)E< T@N& GD!71bs_|;khj@8>/Ѣ *ʱMg[7}lnLXAn3 In]W @ʳhxA+\}FKR><}m5 SL_ `J "o4g̖0͍8Ŀ&8sr~R;ϑJA HJkQV n4%=}\\h(0iɴϧKm62V]>};(ɹ]0M ׾LަLPCk@cI.AUt6+hI,>bhEը5z=!JjE#$O vb0>A'3W(r!W!dӎB'Ա"Ya:D {?~D+-0OSƿVubQ~WPb޷m-G8e:^LeۄsQ]Wan@k2dݼgS)ϔfʹneN(. Y[BpJڠ&AugPe}3fYTeu!8v^ vN(KTjV|4IPB=9;ZU~mA/79S#$Q_K`1|lo WOۇEReMI\l˒Γ'[IdU>wZwxpw$\^ .|%(y2qQ zrkVFxQ/>]Q&0PHY4\8@q17YݥTtլH[۞."tvuʢvBC1 Ludy νjCÚS1Rұ+o;cJDr^<8>Y򴴞5GV-ʾ$NQ_| wܡ5OM9v'75GH LdR?hrMR6WQ&}D}wQO:DJ#\I\_+"8׳P34?Lb q)Y|wz](npiN^ۉ{M*msT[:!jrMXf[7$-R\VÑ&KO fE0]آ_ ~%͐T1eM%/I'g>(Xwb%Si `+JW`:kbpS):QWX2K.!:]Ydsz0[aa\8v:CG;kہydQ]^)Ty3C/2BhH@h[ u`huqd:ڝ$X>)f.9nbf,aZeH\̻rvV=8򎎎0?mCFp>z7fb_TWϽI$0aHB0_Xt!VN*he>v)]js ҇B KtTL+&K'IF@`[R0̹ ϐ1Z!И7*Gr;8k{5DHeGt p(=NgBOl_b\8'N=_ fˊ95ɂjVdq"cd#ce2.3PmC١Hl"V]Zs>ElAq2V#GDG3p%pu"UDE !*ۧp挒Lh'BSTkdS#TZjq,B_BVTMnT%HǓq4?gsw$1xľ>."î/,qG$R7lەUmL> ͘>\dL׆n7%R2).fZඩ3ۅW٣.OK9ڣmU3&ΔRbHq1̠,΍fFmǫDu퉭 LgX] CsNKPjWwt /, Ѳ$H2qT("b$E\K:罐.FWEt+G2+Ihqf|/,I^G2t@@\=N"sY\gˌdbfHK3nk#4@6nFLB~ۿ}GcC6Q:b]{gy+KiJF'٥\S->jGz&Z]u]Xhyq2**=&xk5Ɇ/l3 a#N'"NbY@:c%`7k!y7 L+jxDޣox dρ6pSd 4౏ Q6I;lhʼO[E:ArH|Ai'%?A#cZ\f^\w['p(};v:sk& 0+ IBU L/J*bl|]ƮHlIyaV̶U,3V*7T(m)$>+=ҹ=r~{:g+fJ( {OtwrjzAt3yhGo 潭#;X>NW\zvB|ԁ|wV;UĤks@:7ICjcGdxk(%"xU #T`ޏÕALzVgMA!ˣ<@4ө%m[dRs1;_*ƘgvpqG.Ee w" fLy@8GiQMb(on92`êMLQ5`ij8@:V|"(EyiO6Qᒼ~$>\Tpt`ŗ8Ӗ+ǐJ7)-\L3?uHNP#v:*ܮ6 h5+TvŴ䚴<'4/ŗ%f_K=u(?SX@#n&e$9e/ׯ4ƚEy#(ئT&QV{x(jiv`;嵳7F H0?FY$khӴ0;~cb ] TmE}+Rox@x(,Ѱ& IQL^5bvrO//Mp ǚ0%f~iC$S+IvIV M,/UT!c-Lb,Lf44.0l," x+UߑU\W*|R4?.Z91D+ oNayWb3d>4+C6 2M|H4#Z&QZq;ZشD{/m*dIfH|h0Z< v}b7E~L w4Чaݿq%pQ`tAXs Wx}?| 8':}+䩫i*zQPɏܨ^PL^'M$~c< Ǘi9H<+_݆.0Uo~^ysV/=<yДFԆxQ 2QIrS :%0!2؃ybH~aUK#_AR={9YNn1LRL c7ɻ߂\bcw)4_8nSN~]7؈8Bo(~Xv*1ђ,:S[zwSUa9 8݌+DHZ#"\:҅ZqdJ^rʇ(l_XVUPJ0g#&gf6q$yД]y> bcB'8!ŶFֺ;4 O"=Ѡ;D/h1!A$L) pE< @͞IkIpzz%&X-_S '7mE_6~A3o18P@ φl|$s0I0u;03UP:j_o#t? j3oZ(7.TFav=:G |_cSΩPM]1ҎrfNا+Njj c'JZ*s+{ :< }$l/h8cw}]a"/onE"5w- uw/' dIL糫t_<۱G`FgTXVEyS_Q;НTVjT9 љsB^zgq2)[Zir}{S_%,gR]t޽"D/?_:,mPsR:2…ux*;Y}ιE4'mgS>cۈZPmëˇޤ4 xc}/M$G$l"'ElLA'VK.~7\3Is٘^/ #|0<[\?54~)W[&3^<-vpeG:b6!8&Yǒ3>z]Ih`e{t6W75׶5F? ={9|9e:kNɡvy?P$kβo N jؕ07+uohYnyO&vJQn*HaVN{yٚκ>zC(+S6F&/*JODay -ALĎ`>Z* SBe dھRRkbZ$75u(t+:oB2} GݥZ2q۷6kQltk/mحln#GAw;)@[&NK"߽nYpdgƁnjDs7A Ύ\1{(bf!Τfy͕.M{DY+Z}!qwd5]5jt)8}ml(_b.dwz.I}8Nmmr3{O\9,=1d)!E[ArU>5޸ܚ"=j6_*qj5c(kktPO^Ub Ir.Ŗ7W]aCDLX0*:X.}Mr-Ti9+p.x NzQt*.HdMZznlhK}/hxm9}+'! Q"޳89(_O/qo1yt5-^F68E镆Wd/+V>.؍2q')ک0 I'cN:*2OüB=RlhC4!VѽF-T+OVn`ЊJ.{E s-X"/z(JD3*\zuL66AOg1j{^+[$T[_ۃp U*yoLq%ωQOUwɳ.|cj&xO2LӔ])S](5R.M "̛Q?Q* o0ZG3/4΢H7ѶC",H f mɎya0Tfcwٳ#2؅kS ZPV4JpwC66 5!5 [$*7zl5NСA^闚z߻ \hg˒=BL-jQx`9َte}=D̎˪ĝ }d.VoԣnuרW`y2jNnNc>e"^hlJW"(51[{O\M.t/zf)jnjJ_rL$\| TDKJvl["]FRg1ʨ13\o;)DAc@Q nQx *#c#,R#xD;h_ ^:N륋OX+&$0e 6g—+Y@$" =‰M,9׊I"Z!4S/1[_YbHA[9WEـr_ܴT%HM iE!춄_`bPj ɍ]$5ɀt_hD*9Fᲂ/5+snl݁4>*ؤ;O 2~KZI 3)O7"ԍ f{?e \RE24d@gUb5jg_y(] ׅ xP;*bHs*FY uy$i$> Is!As3>>#-ar,JfgV^(Iu\^ȐRPUgoDY ƎV0SaS"$M۹g:BxHHAE(G Tw;FQfb}=,d|F7P1^ip[xdK%ClM³(BH;Qa~D2A}OvʇұqMqO5W*B Uě<z0 z!2m*_@|o+2U]kK`I r;vK(bbO3,q]r H#v%4S2/"m C1-˸ft #Q_u-`Z%"mw(2B`VЛHŮ9TT""q 7"& QŭP!o;k/эnsTV8=LwA7m ff4SX>8QΑ@rV 0-Z'Y`bܣP?5}i%];hit.lR. D53qf*ueYwּxXs1QEPAt"Z:=`#2 vxӽloB!۠N̨3T 4gR'ŌlQ~NCĖA6wgQ: i ol3$i9K&]vYA[o #k6-aWN6|be|n#ն N¬$Msݞ!1q_nN|c掮_>I[)EcԞArm7eZ+((8-Y&5L8[t)6]3(X~yqILś:Pgw)d 9tqKu,Ű䉈5# ie @nDghם#ia~_Sb0~:3kG ca/Ǘ+5N,թvDWvF);tz<;Ĵ/v[ίNBpcձ>xf<跓ZRRf vkx}ma_TxpX"cibN Lg'o :aaC`q1=0Jd韐upr8K ⤀umA 9^8ORr'\MQ#0X 3ylE9ݬD~x'U~ǖ5顉}1 *}=Fܟ$?+܄mB~,ϏHKXOV(͘|HL_{ƖZqzPPY}V&˳RUMϮדmhGc4"n~ދǵ\N::"_(5uҴ܀C0Ͼo E&0tp3$۩ײ/Wiu1.?zэ̊׀w>A hA"%#OSm+8L&[oB;Dd[G' WK=pd=t7/)f@g=n+z5")bWe.~h[JQP@?YzOrd3e,=Od7 ; .rMp&xea)Ij ʲ͝p!Ev蛏Ҍ{:EklIV+ې(l}dK)Z$CLz*50Y06ڟ<UYWq:X9ߞpA< zÀ B%*2YJ Rhj YܣAa(9p}IEޕŏ8&u,Y> Jئ\ )9`HM%!>Sl7JGԚb9sas(27B/6Ҁ>JWJ]w̝$$/&*Ѐ Nʁ-ӹ"UZEoag{T%tGM> ?|eIu| BlgsKPYj\P9M~8MTM+a9Wkԭ'_pqdxjynf of hS7/v({7zv`I3U"{AG*sU؇Cz,$e#&zfZGYh ho|`C ZY[tttmOQG%j&Sj+ѺiYf7:ftk"h'`8st|&zjpg]m#ũtOC$䙹[tXXp8UnEd D[:G݄a, r#I_eɦf0Ɲw(Y+H@|/Wo"Fv#X8vi7 nX c9?B!thT`;<9G3I}gd^|OOTaeF+ ǜ@b 4X+˙iYdex|NDn\2Tiyu{P/)Za&kvpL y{Tʀ@h%(q7Ŗ)Ɠ5m-ڈwA:NkW/`1l̔\=ֻ8Y-řBR.ؼ ^0YžWS䶺 E$]vo)!儭A[-/ \Jf俲@'cp6a^HGRJ`[DQ}"ŧyL_#䒱ҫH_駈OaM kmV5͝qd.H}lh%JdSΤK[]KK]>8^qc ~9j * ЌyKV nEoCKnvq-dkfGȃԌA!χ(CAhe!>]s0#`dB{B Ĕ@pY!-:p`P)2? )gJ#좖\ =rI}2-aۿ/z()%rNSbfb<kU@-riwwÛp_>I0}|WUF*l-FlװR3Y'>aZ4FR.-%IQ1+S,i>%EvZȹq$x6^ILT?,#]Xk5-˃X'ɂE^P7'lE;WQ:۰uYF7hm^[&~!4#g)٧(r^*ddg -vJ>խt5I|ief/ G'>w|Qz_tqEo:m5֦Y@k1j <{j,<[A`?WO64ewh'@3hGd}~E߄ڏ*2 NAilMO %'s+LbA Z92Q5>Ni#B Cv)9zϱM"QK|kvXy!R7R2*?U65_Cnr@Ms4/ ^I9.)^LPuo4Krp USOrDn[KbEfBAwLL_'^֟0rt.0>`^pj}ΥE!B &⦭(wSKk-8 ڠWpdD+G~!gyTH*`5"D)>Q8d1C_-M;^y;[ӡMĂ Aˢ0^aƦR ![%ZQd+nc[4"{kFYOl#_C,zkrGDn靠ӑ)'Öc`R|2>(y}OaCtE"IF+cx!qj kܵgAn s|غfZȊ=7^Vἐt k4?@lj]2CHReL~HRI3qqE8KJБWjſk4Qo"@ջqP\)rEʟk_(-82*L_B^v4`8u$nϹp_Mi95;dh0AZDA N͋֞T*q3N[ߚ yVjz~1ޗ2PR&䆣5Z$ߍ^Zn NJ)Y[:ځ"zY74B Ԅ% H[v(2Ȭ= +DzQ,w7V{ЬgN5~Yb[Ǒf,(:JE{e,Kƛ$3VѾk:s;wmY~abpMtn,A#45^q&ޔk͎s#it AC((C+S#>K3}M/nƱ Qɟ)E9cqkmR#Hꃜpޜߌ:VAA[Z{pi?-wZ78^jةt@_x]wu I ?NjO ͕,o*WӒL5V/3oWח3]rqs6HM/WgQ;u-> `“f&tC{EjtŹ8Bv3jJ~Z~;5)~Lýs*x0x,(XnC ϑ N^C]~2B`2y5\-e zit5CGݬ hJcMgtZ(Txp:L-[ӸtO}בޮn|Fߑu`!5J'ƒC?2Jq(,y8-4(a")m9Ӻ 3*gPֱH/mN˵=J5W,|Hj1st׫fqSMwDԹx^ՑlѲz3c 9q 2LvZ;5rdf%`NL13:]<I*Cexg(_VJ®ݱJSiED R8d4 p2J_g$ʻw5b&S 崘IN{ϔ#xA|BIRSc}?zX-nPY8@)2P =o,g{zJM.K2,S׉1h+gќ IMN%͎t+!j:l:,u$!SY_+}ӚL D(n}B+4vp3#.bL`` * OC8'&iv9q4է[ Lj LV /N ƻ+bri_?0W kjEj[")&Cw$4¡Ƈ^sTe,Q-R{t6Q !CS6!UV_S+] L""ӀA !_>ϒy? X:߄; 'XПXhh+xhB2"YjPYh2k ,tGHcK'XD|dȺLhW3 PאB֦8^{΀hBY W^ވG ]ZPFأu -~3"!.o%.1t+{;ͽlZ-)L%hzs0_HNʶ\`( z6.ARMfAc`AB& 6ty l&}=;GE[Ȉl!⦍€^'eVQr+/Yl(t}z۴oޟu]¾D`lhln뒗=jZE&G߁=o{+2MNa/uq>F*2s%9 ;'8ahcp@|Hg_rE/#$x? } %s S?MsRɵ/QWԂtrB;v#K8wL|yieg( pVmJ^:Ul<*̨ g0pL*檚[Ba]|뼧2 RXCHP6;\gyBm!,Lĭݻk .+=*Xy]Uh~!ufYN+@XsfJqpZq4?ŏ-x QEn,Ke.= "h{=4J&iz.$fyw旎Yh**4&nxf4e9W ]12ob˪w#U*QXr=pX6~=.ƮݢL::P,y Wh>|:jRиm^(+|է)r}e*ӫ;Ca[$ĽiU<"T-*0P4:A/W!SՌfal &L4کo' H-TwZgBF~Ȓ}UvƉd'#J2$2s&*&7I5]׷s(Nx]!U, DNU*HT;kBl RhmO LͥCTGf-!^E0q$:_vF"`Epߪty%M#-r*7b= xK$w(_ێɏF-#}+OD)" ;=GĿL0k`..,K@yV>z-Ab?#۪9 me 'y>\zi,vzzRtN2v uwK'=8whG  \̓ MaGt8ځù1 $O&aQyY,Y z#'d  r$*}*}9`'dT oy2e:{pg:#4;8pE ѵ`\ eVp.2:%j/9x׌o J =ҥx.y sHME,N{ /H#LfL$sal_rс wk+QIG"+ׂG,w}:^{eK4fd(l-@dS}XԨ_8>"H %_Q٠-,&{F͋(m(xs(|yH_$d)mM,2YBb~)m};Ѣh80"}DJ 3 h\wABJ~5 te!A,k}e$j[g YPD%qan/ N&tV9ڭمCO59~gPr :b4o \,Ck[:Ϯ!DЖa|+瑲S;cl7g|^26 %7CѶ;J0ݷWg8b *[2j΍45GGW)glнat9𿷢>@SUq\eYl_"M]H k[LDQCԐO``.H\kD@g ob~^ut4Jsy z(#K |ce#D}3<(7kۘ NڮPRi5SkhȢ*3uN+f{}+hF)?T&m4to #*rE|{p:=Nz?Iu#jҲdMgf$ HA~,.[FBf~O@/N(|n 푍9Emw2oggD~5uTe ܅kTPOf@RZkS3^Ͱ % ,Ä l";mG1|zj*"R; w1ڼTtH 8 % 6AGj ]{!,p;˕f9)op7$MK8tSH6s25 Lv$;dm2IF)Aa wꉁ>\{R>81vIZ0>hˇ9ju?ۖWR`#ᢛ7|n=F;ϒcb/K"A*ІJjTStaj;Wax (yնp, DǼtEHtFkZl^ bvh䠁GRrVy&Ml|S bHcy)$2{E 0Y2nhiHQ""N%I (+ o ӾO {| YCL&= FR! 9LA^BT<ҳoiN7́>Z))3DɁ<0m2-7L" J)s1vמ<Ih~wܐu׬ݠ0kBy18(2HR \syh`DU*5M΅`0OgƔg+$ >]*=Ԯ$=8'/Ǵu%).YĩP(Q2n؃h{!3?z0]a_d8]l p걲#lh1 4Ck<wdJ!8 t}ۂFp oi;n8'n5Yaw~d#=o: 5M$G3n]uny2n^e:޻qC뼺[q*D}tϦܥWEb[uz/4Le6O;P3#GC^.jZ^k<'΢{]H{a7n|02@>+/]- ۺtEBi9@d۞(|'N+17䲖Zㄷ,@o&Nnukoc?za=rZ͉e#%uΦx|pGG( j0$}d*pl%:5!m8K'ga*j x\s%TM,כ{fO)d&ߪMqp {]JJA &1VDV 2q_h|^/yF!q< wv^E6}3Kك$VCy`hde+~&ٳ@0@᫘a6a唞YR SdyAXTU< >r:T}SA:(~d":;0 }F֫Wx_Kg-;OEVX!{(qɅq,Ǧ3g +GD<N?oSz\s^~լi~JKp3Wmptu^UBcƳ}NKo+#u) y.giz%=0_O_ {ぺKpʬ;&fm3]kvdPQ9e|*h!F0`\n]mYǼr#K"Hi(/()iz9y${`aCHtkESf\ tj'(@,73-G,Gj0x$I<&HZ,nʚUubJI 5ڛʁ!1)/^﬐31'ꂵ];c=u-/(l3+Hts3~tg%3yy\Hv|!cQ< 殆ǻ3+rxk^\#S-sWG86=)uܞd@HSϒhRc2Gˆ< !Z욟qND=2A #/ {e# 6}" Tj؇XrU1 Li{#4f 8@~v*ed-8䔷Qj`7.L7.~D攋#ԫ}mܬFL6lPF`-R muȷ8:3aV/:?o4$őN8J",6ݸ EnK^Br$(pR) Sks lp 6q -mC ;rE MnD3REœM@[ 4& hU5/\yw`.<&3<9ȃnn-4h)X2LlI-x@e9nJ k.ų&i}H2T0]6ZqGiʸc"Jjr,y%rȐKP4%1ز30)YY_ќ'J16.c,$*Đ@4 x*3W|l|"̃]Py)(#,6v(;Dfڕ#Sq?W+{vG1>4.e;9QUC+@:OQ>9F o!<,Ł {&ɏ| X.<.zs`|Z.#4tsCM?T6O1¾.HNVI[ofS6s잞"^e9RN'^@;ais4r!' Ӳ,98Z/ _"gq˥t>7'd(bf%4LBk?\' 9qs'Kl6G g$Uq(3tͦ7 ņH65L=bdhQɆ܈噂$횎冇zϻnRߎދ;O-Fnc76s$(D`1A nSkqm?1_]=+9@ |0P@zbO|$n0,]B[ LFI*5p߿HL\^^6iA]ߍ vt3&Ox9=x"}Ve+ff5^ d#  z?2&=Jɜb8$c"ΖC,5  SJcAدt(YckMV,3&:-zkEs*~-p_Zuf݇wgsݗ>x%%d \BeGh{3`w((+,}<ި󞱑odz\QtA 9yxrB-!m6 ݠPH\ t2U?5pO s7[~^T6hd4:HuC̣\A]a@cxf{ ~XPU+Q3؃(5iG7,_ &\.9X^YCLk_H-s7E܀Rbj5YZƏ&t2OuT`ZO͚܀VD3 4 i[r{mi퍹\`0Lt{ *$/LK[R.Akaux~J.k=Mf2)NJ+fOUz:"A-+-KPtIW_BA74A)nЮQs"HGZZ egVe޹_|^E0w (lU#IWd츳\+@~<$ЫqGqH}v)Z2Ht̜V.I&5e͒TiPj}LOh`ڄu#:;ۀ͍-oPnsjq0*1-҆q3JjKLr}4k\V(_?tDfⲣ+`X"$pģ醆;%XpJkn~e b@3ȗ r\XzI oԬ̓/qv@ɯ' kմ z+#ܠ` Kd:jL"-E,wΙ]؅Iѧ\ٖB@yI2g;Sq2x#L +'%2 [gb>8Qb(Eo $ sOH07S Q.~vU77'?}>e?u'MAɣ҆$~ׁp7w&ʏ''/ayuiy/bx>!qkdcÍR?=MK^xukh`lo7"wbضft9Hh,a"B-G9+$6*Q OIL54D(7P?PHd8^E<}'!-s%pӟ-j-:p "Eaje{77@X3(OWiE @/9ɅVcFN =0??7ai4X Mbx5o"Gn7G x4f::uCVJU56/WJ֖U);Ea \ueo*1h[(ߴ d.ߕy\>]9ؙׄ,~mt U`&eDd80_g],nyZ_g8M^QQbBm5$ga n-LEgYa@hNU=XD0yʫ|~ k؊ "T/db,宐 OP7RH^7KjlusoBh& 5Ýlqn)PqcU!7͹rc&}QUkfT_jl8}O\%v 8A#ӯ0T$b' ("DèOے|WW6Y(Ȣw8gq>ྴ#`[YIRKvC"b*9ЇzʪFre;wۇ8a4'(xBT1-/T Q)gK:IpFn ʓ5 A թ/~6f;q!CY }8tob)oK3b&a.%"5~0VKt܅Fݞjv(aޘ74aVM&3iAEb>kDL5ﵶmG%܋.&Fԯ9uKK{/hvhDZdp #E.( 4Ո/JaЪQPa@N$x>dI(}d^+8X9Axܷq+jqtMjnI40A;(tf,(c.eCW2, Ų6.sm5-nr5F8''D*(a2\) q,|2,6%T0]Ś4Us 8.8an.uu850F[1_㧖`n~خLԙ&|#B[]~`i*Ž9 z慒wAѩnRj  ÆX*%ԊOX~Q=mtT&ͨ$Ղ=ejA[e3l-ES]Jv] >K.QߪI+ҋ,Et>|&]1BC}g msnWeT pk?1PcTDw V1DS,?0 AIZ3%!ѷ| \Ŋ31J.ˮ4X1 uBm5ʺ%Veȓ@AlTkaUf@ T-m*7һbpݱlc?#+U`,UeAI yVH$^`簛'nlv &@֨L}:}tճˡimpQ=4=ߕ(B#EGEj;5IoQˌղ`{B6Oue`*q1Huq`۴D+?r\% =xm}c1&205לU/Q4 ޿C!u#jn䛏){8x P^κȯGUױ lyۑ&}Qn3T=xGNYVX{!zwBV8;8$9 -f5Ü*4]9sXXKfh?渷OR9.ѹNT ҈-񂆞ϛCS0\EFq.L{| :z)HA?B5Z EEU0XE֚)&#fZ6 ߕ\bm.uB 2Z)UlpB;b*HxI_gQEPɊè*(+M^4`]+RTi,#Ι,R # ܋Vl׵LWDqR<ϱ=}5"úczӑgWî>vGPt( v#\YBqhe"k'$%j:yggbeFVG+9x8|8zwа֞HH^iqV{۷3dՕXЊ]hvQӪkH$A.fV'H1r5l'Fhxw,펉K&Nz9.ĆWKEw+YoڇfqvAЭk*𯞽)a哩Tk[Ϙڻ+=y=S#9c>e@H-y<+)^;oIuAcFuljR4F_؅Pj˓B0)B<}rx8dωW֜jG:*wkd2bm2ۦ5I$U@ MBϿ>v~ay6̃~,/D9d /ezmxle8< nV5lӰ$I ܞ[hSTQݦZ߫hQs|>RG ,ASk>$ƍy?O5fl!a": r [эf.Mg;Ž9'Z5p5}I [1 A!%tqB/ŸeHGvq3g\Xy&.qϋ<Ōsw -=g(2F.*|%]ATgF8ܙgM_auaBeGN~;:eSń{ls%oD?-VF+6?g.,YOyor{oʍ ?ݍ3olMcc:sQ닡\w4ٗ$Џ6F4"t1-*tFz6u2GCr&xa fN$5&=>+7}$,7M.Wp$>Y[֥x) }r`"E dw[͵F\Rǻ:=qs4ۍ_VGHꍟzW0SvqHfv'⡔PԗucY>6[?KQͿf4@s*Qd/$:bّi9: C2p`1.? s$M,+9$j̴f$Ӫt, >z5XIb~}plATW&Ui! a0k \,dm>p5iJ\8_,E> FUm,Jy'n5mC"eZHE{1\2tGFWιlϣcȬA/3;C$Sl~"&I+Oa;WKU19诎m͋:#{b}bJE\/"Rde/~PK?I%UY=uU8//@Yɬk5z#kCT jE}ⅉSLFt{E`̥A--td+8Z_1VLz>Õ*^#a2p VmT]I,nE>ixr3֢ Sy%K\xUIrҲ#Ùˏ _ ^0^ Xj^6y+J'J~dO,EiWcx)м܆f;0!ٷQ>ý-A' 'mt &,Ĉ/kRzE b7-m~u _ZJTv.P䬠ͩւz>)LN>''- 80vY'JNI#e*S Gd?W޳x+ہxZIstݙ^do$lB~6V_CI\ wZ!nbW]_KX%]Cn{ cdovrfʛҬQ x)z.LC 29EpI6\S 30/y; /˯QŴKةߚ3+>U6<fƊZ&(yBcȿ]Ge-];2 0Ɩ{lA>Ү@*a\ѣZc!*MF&3u[~‡`arWBHr7S/^8 ޿>E[0R$2X` aNAC k=_bY[lA@e{yWΤ1YGGbUA4ۥ$_JQ!bMh5_Hh%eXOw n WМ SZqCj3GBXT'r6`Nry?l5Ōǖ3~YIxk ~66Qۀ>Qc>{-L!B^9^z 镴!=7^5XkQ~;_z\vGM$)ԖX*xfVhDƷfn4Ia7^iՃ\ugZO$".ZEq};i)zAN7ng I\,:X%ډ),8yOv]t V .0(o̽%\Vީ3<ڥ# Q6(X< Q!ҞKv\{TS 5bT΄UqËӻ͎LA(H#QN|H$1b)CL,Ӵc@kuF'4T%`qdaƔt~ٳ I._U ,YGqA"D2R2RY|= Y]W5*y/.#οz"RYb6)-\/e1MQgP#:J]:[3M ܳѼd`VF7ypR%'ҷqx?E9篌鳬(/gNq5-T3td]@־'W}2 q2tòHqB~ E6J?ˆal솫Wշu OL20DI\u1Od̡ JS7E=M7d<[P$ri嬛^k ᳦.AB<&{r -^6J6K!z('z^ ~ue$WL,$%/e}9F pb]%_[Jmi*(Q \YΚ/S(,.:p to x0 ?Ei{ OoH:D+}H[O0NT:LJVw1\ngIq9Gfo~ĪڍsS0gmKעY'|s/T)iw%LF+=6b HKW| M: aZMzQF 5OeK'N^u5 re4.ieCx?NE.(doV*HV5#@"t}xN PW2NV;(p2rπB"x0ar99`5U-[(r1MDX^G;jËDb 6wb2'0KoC[ 449ru~{O W&!aGP$KWO"P ֹ&$ˇ-YSK"pQ|{2E˜ީ7'^>p8| 9mJ3@d 3(`RZ'q^r}0jWIwCڠT)I{4` y}ƫ%ɽDu߳tsSuc\ %~<`1>;:/6w $ ؤ6%‘{*q8:Mq<0\*؋na]*h/*-ҐRjA2?a9`-Џ3Jf~ϱo"iZϖwJ]+RMް*誗E9r& `1W摨 pO ?P1o֤4(@Rm(~!zt!R.H0`S+vc*8Y|CoPݍ3ws/@]V_ vhk4$MZT"A}(%0Pu3F#X_!Hz+Nm'^aKv0 Kx7LBVS{{oHOgG1P6jюrH\obNɊwv 2ֽ)bf?;@ka+x%rĮa,w7zSob_ @Ϭ[ x{T(zofh_\?Yp $ JPDǓZ?߷E?'% ?^Wx?,t$NaKӕ0+sXd}N/ƣIF<@q.( ocBCI~=\i:lq<\W =~L tE]@"tde5+ ¾PYA^_% &檙1B۟e_Cͦ9!Ŷg 'BxMsR _ח"蹓!Kx69$Οqq~)7|*gkVפ̞'0ߚMoDxd/D4l9 mpS4^mmU2xa_׺ۭ~Bїsh}@\!V&2^|Ms ';&0>JScĉn\|fQ02r.T!?uL ZB1$;Ȁ5^Qupi! ' ,R$;'} -!Ѝg{*o|o],9HXe=UG8=XX+ct(7=' e3^fGR9S#%l XN^ju4 B'd ki풳ya߬әh]s=!Q 3*埏uISM G 5'F%D!g5ɪQw9ag>gTk"?&bz"hղ/{3V0dGO?;7,6{q $:^e%_uݻ^1%zOJb).=I ,䔩&\t]pwm ΕTF`W$VGAp"ȝz!V0F%X=EVCg)['OX]ڼS=p$~WzN8 `YS3?dҋQ"ŇUVjF2MCN# H̑{-ts_ $t~bw$ M "x^v$+.A?~ɤih㉱t!(beԧn󼝻L CwjT\5z˄f~ nTiޗr@Q YK̐6O+An㴕!6s+:LYx#|^m6W1@4*u"SF7.hgýTTոB/??1!a #Fz@)?of1ww`zh wVpy[N'vƞ^>ѯ$>[ l@$ʁ"9^P+Xh즨7-uȄVj8yE&oMy 4~Ӎ挗AXE) )F__bP[n[tx}ǡ BK}خa#IٽhR ~^iO%Ӧ=YVyI;Eue1 sbAʴZ 6DwzKJ f`z>e_E~|pryby-TbK~YNVA:% |AE-ař :"cP#5N4>[;wK{&5%(uo2{hˢ! jgAuj<^AY He>M~ra^rd̂RoH0SIAęUJJ$IHe6Xv?֗/ Y∬B3&Xsn;)q7븭}̨a9J* ^1jQQ^8=GQڵ&Zؾ4GY@L!V9y%%LdTq|//Ff?4zXvyNAm캃xX3ܮDj/ɸ[*7Qg̈́Qq.0?e ׅ-f&#mA-5ja}K_z"S݀GZiqQ 1B.YJ^h)H׻c6E/C`w$Z  3vq0oiac~sbPY4Ozej )-+ uJj6řMӰ 01$Km` cԆ݆>%`$vE`0˽=zwऄ׼iKuJ~rgsT6pr&/k>-Iyur矃F蹄J>iԪ.qh}C=4ccWbS aWLm_ wt;hoD~>dtroҠ U5\458L@yq˻`kkSkU-e~k_B4Q_ƚk엾>E{eWW'[UU ! NԮ'1a3^'@ וfMś I7McMxMAGXQDB2b3G@"$1tSזac¥0_J7toq3!—L)%Z=*֐q6{e9un{yBtLOYL6Ƙ0&pU!ko aXXa=#J#jh!Gs9 |V~Ki; c.=f}]9]Pȹor .0idzyGzߺ@&/ծt/@ww 6nSê9)S,*2hs)atb-/Ersy5x7@[M4R|9ADHOkY ܛFBn/i%@`鏷ψT7Mؼ)q1aL6Uf= +9a:ZeydW2NWBASs+^3ɅvLN֎mqr4&Oz>Fx"WIyIoEI=cjPG%/Q΅?1PVD(UT.մeN:L5U u *Μh|oRFPH Tћ aAڦN X/$Fٍ!*ЙPܘՠ/W}@!2h2 ǘGA_EO52yQoߝ|X@3f D{NR:QZf!sB_ [A8}7|E_uiYF¤ӏ]Qr3y'S: D?#P ]k-؍HB)yF_A1קp ʌ(6OXJߧYaKr{"&|5~[W).FwuEM'yf.83l/WBbp"=Q79dӯQi1;!:`~Ϩ|>_к0CCTj:d/X@HK- օ4\`<5d0h>#;)o sm7Oo=7!4,B=XsZ/?xIHӿSD])r.vrm g%xТґf;3AbXO.DJɗXĂ`bJٴX= ѿ3-эkb"Gym\kLN E7@2 6$KnK*^eg<(ʢ2<>c\L r4 FXH^ʻaUW Rtvr*%E U牳2Nx"1'Je  %z,Y*&Cs [&{O~oy{Wȼ7=#;q 1{h^L[Ox(N_#^D$3!>Vlv!R]|r{{(SeH:aMod}kڬ^%GS#R0q9J&(@Ay0Z`?d|R/}!y%g uG8G:̅֓HT_ݕWӝNq :A[ƕbvB(i,, W ۚEnjQ/s ˡ?W:PNpH-,QH驖ՒNy%8oo䩈3Um--#(v^Z䖈PA8]+ㇻwtŇ"Q3 T5#K/ee8p.tWfq 'T4%A&;0CWlQ\8hk&OԨ"\@OׇBnn!n`5.J՜(R+L9%8D!p)ePh_E* ROSЋ_̲c_*ꅬFh*cj!KEYy%e-j3?m6B$2n5Gmmjw.Z/. V JDJl OJzmgLzwy" ;hᬃ]j %+:w_X:Ds3ڦl*sdPj@l9=벒A{> Χa`Q"FoH/Y8Gwq%ce&h8r9Eu)~Vgӯ_ w ܀F\Eh*x7dN"ÉP9fK 73ԍ;"xh`rsPr$T|A?zY;-^LHG$Sv? uA)MCe r~7puC4am 0z~-j{$ʜ+f;y߇iSx~+ȶ:+7!pS-)Eq5Q?h~|a$`/Mg'!V^߿`O{jR2l 8\/HqAuq\Phrt+'dr_PqWƩ݀bn#Ⱥ1M|iQў=E&}۸4gXtl 4*sfh\>紆KsRc2z9,ΦN0ux2 9A& EV;vhA^אh78 SE'Pd^5o-F{7x870~Eat,Y GFL}_˩c;F^`M^ ~,dm?_r[J g߹ C%"1x f+  6JyaEt ͝B)+z{n ^(,?B53P}N/^7sкwi j8`^'Đ٥w':!'bl{{%ϖngf =`64ZO+„+>9&I 7}w  yaTi-P<Ͷc4F0Z߭ u&Eqf=;ڊ_s[2GiGz z$sD%YՑDBJmXN‹)W-w^-A76p$}n/8ji6-e e7LkdenחӠCFg_ ]0{Gz٥Hseȍ$jCzA'(E6GC^s?ǤqۺYQ. Zf {=D9!c dH0S>EڽMݎ1/t"*K}„|'XlRD@nhX9SOw/F=qZ¤ga.Cii!vCS?`g@O@D9#0Ay/] UQq q4B?KO÷j! (8!L%T;ZXk0׆`}E;Q(7\ 5QET=(nt@~f+ax$mb㑝+*B'\X̓cB \7փTG=Ԥe4O4*G%YT(-_W ,b|axy$YF:%*u0S5,h39.mL ޺~b,'eזI㝣Yҿ0gO|nTY, sP} ӊͷ_7h*A"ĽAN2_.]Y'jQYWfQqjA?Xsg(D"Bg P aD_zƧ~M`x GW;|Lm i.jM]P/g\ܟf<9e^DUDpoA,g@0 eµ[kگ+} ڄT8Q(!8/^5/ ;О)(ל~"{(ԗϮޛ vx:oՇ8ޏFmt-s1u3!n6.r5r38ӧE}6czYcXd~Tʗ,H&2ia&R{_a%^\CN@:}lDN/VzGۑw ?+=9kᶉfqnqΨ87>|ibN%;w3e3SH2͞w&]ĥ? DPC^^3:n4 -j)tZFRt˫_14/QʭxY Hu,@T$YUʨ6Dv9U=R&ȆMyR#vg?J{ kwIPccc|S~=iEVĤ2w蛥 ~"1(}cWzb7Q)( aTb٘'сiŧ5>n98y ]eVFMJwAf9MGȿ߿Px!C }McjX:g~OX_[eosz~>FF'Yȣ4/1ؔ qFi<)Q_WYQR"D~\xĕ j5&;a;o`xуC9:w݇f!+:XkqdJDqU%yjF_+TJd(gM1vN5KqD;$㝰πjG-E9yEnD ))y5jVF -d] kI%/O[ 'blӵYsq(Bp xiL3֖se.-5? 0!3쨗?- avpK܇w/2:ՒՕiX";JVפ)ְ ]FU*.cmA7 g14b>P{afJ0/pxwqLӘwXq H<I-)Z\?lU jZ+]'jrp )A^PwS2aς[>sBB %0R}:F[4 םy f0vy{ik@3IdlSbqқ%[~/kYzo U ҵ@%Nu엔^~s Co-"OZ:24u5ԈFz; !,X&Dی6< {)%p'fv/o q5}F@\~GOIja {ut%kK"ƩV+[N[Ԙt|@c{tݙYCAL%m WW9m$\^Gͅƒu/@$TEϣE=%[wXWB=\RP7~d@ǫc]tCbktĔ 9cߓ{R~?.<%8@zJ5Rmm1z[i+(D;D74 U{G|b^jCh'd:ؕ2TsʣsPSXMs`s`n}5ʾ>S@#˅ p :HteC2QG58۬:|V!!1TH"ƲEbr7;,P^s=`pt*?tNe7u]L'<玌Ͱ=WHܡS'j\)^甝&6qIcH/Yۇ͇&Ds3%A2%=G5֋[@߾򿴮#Kߛ^"c5t#>7E.3#P3.G wMXߏKEB5` Uޘ.&ZLC7S*sGvQ$q%חཆf r}˾C緡3cRM*`MyO|`@l<R#A!;;mHpFþIL&41Hj]hb|>oXxR4uLvhSMYh* Bn0w]< JjeT8AɋrGF/BQR 8+ѭuw"gt4 QS`.OΔ+3]14 ]OWY2#,Y$k!{oi@p&55u+r?BrvJ^Əe:T7rC~owZ`O12UX!65.)Ӏ([?+o)hwy45c;a';>Kb gc0QcGc4ZԊ/4_[l+n*J42H=iG%x:G pXׄ;IasRTaXB}KxL1]l\|; y"; Q$fJC- T/u0SkQϲY Ip +x&F"e%]I"1);up2 !vMUP_+id#ZT;Qn]DRN:ʀ<> ?j^XFr^iI e^7h6$+%E[8)fM{L).XrW77|zwbEw?jpbLn o1#tPce2K8Kr%؄(56Pڡ vL7DrڊYK|߸_Tcg4"29@O>͒~j$٘\&E2*K{'`R[­|e9+͔A~NhjsX%]aUz>ZhfKCe"Za! !wn4M z"Ŧ7xv+E,܎Wt+YJFۚeoH1(ʥJPBzCE(Tdm^i&^;> .4)ޞF0Wq z(SZi'a6}:iڕ *YR3x>Y{f$Qb)D{/GPW`\ G8WAw1ժy-~؛$y(i䴸pPC~; Ňt 1i,?&f^'Djr& hD;i&*/Y5h{IgA:s#ymDz`3}v fGQj YuH၆ =Ё7k8H\̪%\4W{7[ӔP hܱkT-ŻBY{  n0(65O<8νUMUq[ZY u.?o}ԟӌ"~g &g&7cN)2eADN]h3FP ˭HVDC7vJ3T;`̄ bVLmYA";tl,yAdk9ru%߁ kOxh ^ 1/gDi`?Fd0Κ[yz o"P@n 2JQzi|aaNH~dR>oEPޮrexs?6>5 ഈ\KZA ۉs*C :DҳؘԔh"ǺS(bj (8pF Q,/ւ*6W.]*;$:U-N S#R#l㏊(~ |'ؕ|켲ı77|.bKޱ5[eq#$stze$7$Kt$Ob 2g>}T򇨿pp|TW{ l&fܦ~'z [؝ ífl(=׏d&1ч%6g;ure4Oy2еa *1NS31-.FZtLbꡂ*O)EuLߤ;aG64, i HQMS 78^># k,NzKKpϟ)2;h TVi@l?5%q1C:>҆sl7R0+CneLFt 2J%q#ԆK@JڙHl(7 V„|$'99p7oQGNZZU p|JaDױ#6pPW{u=4MԂYT("~D>^%azhqÂd !`4ǐK)0{uf>J$'Kl͝Ӫ zA5ZڝYSa϶H:Aonz1M},U@p<GTR?-{wZ%(wOϩD9"Mgb/U ma8pNj"+{w_%|>Gg`l-[*Zs F񎧃dI)7Eh #0؞iDK{|BuIL$Qγ1qVk77d+ά(.ڲ/KoF[蜋KXLl &D"q2P_pBv{au!um3Ƌ^*abtRpLCA5@μZE 9\ F /!7jfʸe]e$.'6Cm'KnXbLIe \At!Ӡ'{̀-Aqr m7@|R5)͕kdP%ζZй. :HQ{P;H @ֆRefE$3D:&ix-LXꋧd0AggI88V8cMgg ކ7;q}D{pu%إo:{ @{Z 4m7!J%7q:NBpg(԰()NΉ+ۏd즑An?{R/0jip)3 pF`W2!.1z5L.D}K^a;Z=- @U#RSm˹g$8s 4ósKDΤ +\Q4FkU%J5%|Mkn&K ʢ0U:c N:jܿϦHw?,&$B)dw|ZIJ'7Cȱar`o6o%-_Fa՘@ ~¶E'{ņQ@*zdl_, Si<vsݨ8N 4Si)f#8uܾv;~`Owt%>QaNmxP/4! jaCtMFNSV8+ R#;g*0Wgbw–DUp!\߉+g4Y<ܺv]H2= 0t nƚ:+wEыzJ*}u h)ކ ωVv#!2> `gp9D>G%T:ڰ_0_8FnV)v;' @o7V[zNc"3n]볊Wy8ٓ-B:hMYRUy*ʮc2U 4^a\ܜe }J=)!twDo{ioF;oia܍1>8pfǫS:AKQ!L4usl.xR^8o»:*ݳ'gE?9$$|YƖr}Hk` WoiCh @v:Ƥ^g )?w!PD-觛eY]mU !RoDT}VoQ"ӠO@w;)>.s&?.f{|I5#6;gE%N0lEG{ py3IkRb1j:Tчx2 0@ ϯhՌܔ@>b6w$;q%JQFTwČ1#3R~UaT8.8Jx4襟ZM//=iq=[qh{ ;9%EH(P^"'^2ЂSYIBI}=/P  n?M'밷6W"٬4&c$UǽUQ#U٘kh/\R?g^dͤ ڏ!^NfmB>젟t8\m@0e7">_HKF&Z{oxU,7-I0?Yq1閯-U#E 'ketɗqIϊEGT pze3xR{dn.<3Vo`@jѢ!pPBzal:V}r*$(zaƃ20]|\Zb9YC/_5a`P!Q, #:@g3odRP9gL05m[]~d/gdE l13bB}'y!-.nK$`DxJRS|ȉe ^BU84J{A9Iڠ 6%[RN?s>jz X9Tos66A1YEb22د鷒,O6V0FZoF 0p)ɜ. \Yj?^ zK^J l~2fKI:!uVæfLWTY7wVzwW}f=>?eH$ 'jxqX&~ɲt"?VC"=9(5y "ҝOvc!De+ԛH"K{yjޏ`Ppņ;Vs@(sF1< p$.idV>%|g&:cfj PmkpP>"|ߕ&x<=WTá  l.q_Z2kj4J?*yG*TQXW)ȸJv.v-YW,6;FԺHbco'jWd;邯gpwCu7GيXj9RId&SP.-qZnl{*ڽdx_rTA.}7T _S8SFTAO7ޚSXONZn)bG UJ4 ;dc\XqIk"/jH}j/@4D{S0JvǾBj8P?N?E|mSa}wiRw HToT6/.sHK"k_Yܟ?'Jw(p{wd+I~V9?fxsoGe55rBMiIf~]JI_;%=5 Fk3PK,E<@pʀx$ͳw*,yZϟXg1([c HH#Ls( ItgL7{e1M3 !#? bh8[Iyi/gm#⯡h>,mx>We\>Nsߝ6H4!x/^/*mFTaKă"rXlQw"WܫKC^Pr8ԚEf$ ŤEQ;_M=))a6NRUi5Ïx|p:aN7 )FNI*?t&Fkُ9aoRrív#ҩi8։1U)ބz9l}lт&?+;[<\ex{I=z*SUz!] S.j4\QYF{KK/ɘ(>fQbԛ%ǭ`]P W/Aӏ9z%2]x\!Ra͇D S!~q E.L_Ȅ$棓e͹VmӉxsR!Y :ΰWq$/rp]veUe2۟YuZjcaE}k~7 +L̯!#}b~w>:0B<錶B3DC43E"+V4,881aME834 . HUxvߔ3j49 c97MIΊhsX Mci.!m_,POXA=RV`Аqb#[*XEVFKB^dNJ%cDǽWU7xl@fkw-aڋ duԛ:w#?hC*-wv _#yҏ LDsl O"fXHX {1τ×aM,[`kh>ڊC_XE*y &> T?P[m+[}[(C-}>F7%w l]QdE GpMiu=LKS4VD֤"',eۘr>a1>9+h[/V͕=qA$9<)(k{|C';E7סؼ)^9`Vጀ"ҾfExC4߆(րb}Kd١Պo9eĊR;2HŎ̝LhAڛoO(SV,s.6Lѷp-y@ҫ ^, \ N(nF:|Exk6>4["!#}}uW<Qŵi\{#J Qbg{S7bIuhwֵ ǁj^r9RLO~7Q ]!=Biږ54jsԙR I|oulSi 't!f*|Ըd:B2BNr4`1蝔3TQJ< 16~O\V!9M]VX=嬨bwMA` }\GOlG12:סm+̭]V33ndޠV +w|AHސ<A'qФ9K'q  ȃ]KnYQostm\< X)<irK#h,Äoup;(Xoe;h+s6`=Jjfn1`m_.wԑ~e-vvח,G0Mg(\FOu{bDb!~<m@0LSO6F\7^das-k$!/>c8DU'3!^iz2M^W3m OWY̪谂i0+-l;Jibͅ)-/ kp>+HHNEbor=3FP!wXoN2k]fdzQ(s~6zVxDo7E8exγYT=W)O $.*J)ù@ktgaw`$lJ__bw׋mhW^X=)$iq`.Ij {[imvWqݤ(-"b($F=={ewtC"yz5  K-O-hڮ’&\I9ԇ"|#XVgz&h9,#:bidjB -e ,#ls;v.7(:QƂ3upEr@FFt|6J&1tPM΋QP;~j-!S*/d.b!t:ǿk7 %лF)ea~0&loaz^l!n`\kr yNZ]DR~W_-K2Xb!+E9gp62 萶s*T;{ye*n-]Qp& sޠ6vk!AY;`jNJyʎ%Ѝ }gP#]t +'c2GN0t |Q&f?Y& XRߜHp;|"O,pv x44 L NS0^&/\\n0AC=f e%_Ӧ59h? Nb=ADDAVdR >ߩ' =Rڻ^wJ<ދTG+tjEU-܂zK ^ V4Rߨ&ȴ P3>0 XQ4HULuȟ;\]!71E_7ʺe+|lml-q3A<ٯ %7ل |%2Rpv'?!.w};QHS{^ܳ3/5d ] Tv`/Mwy-UONF_Nt~ ~=ُGIabEǨ$i&VcȒ r"aLGhVl׃ƪqyv||tYO b7]||}ζ3!&]ko~e{ˮ H2XNH% ?gr<ʭEGszZtIȴ"+y dy`^@zAY-Œ*qLU ND :~ ucF&eXUB">tt6Yz ߒ;1?el\Tn&̿#um{ܕ@8 45GiI|PU80H!,L:eXϥr60c ҃^8+O[+$0@"vv`/th Z DSAߐ<# ލ.VTL',AT- $ &M Vͳ ^^ 63wC}D)0.-f<}H7=Σ9*QdGs38y[Ύ2{AzoAzJfw E 8_S73/}cx1n)=,&qn wX63gV1/$grw/VpnKVgsaP%}ej'Wv&qdy:Q55þaWⱄ|ԙYEnd90FG#٩ #9Z"iiUqT46@J]y,zUP =j'KE?Ap'OoHWiA~uq܌zO7AGζf(ä>6o{kgl5[\aG|@7e2O$ԬҤzrp'ș:w8s4`0.2V,}FVv;6geυιpOù[qjoI$vp5К1u:%pu1CMR5JIG,J&@Վ27h> 5ڣA+P r' y\D g ^g"Ru]vA LME`r[,$IӦɦ,P/L(UH$v+ӐEu{dS2P0nW}C&LA"tk`]z³KQ3㾁GӐ c"ۜrL2 tL.6ف38)^-L]nӜ̈́`)C(7M 6YUo];EFp۝E8ʰ4,NP+LMН5&D*U"3!ܚ$;?iOྒu ΥxJR:8*^QK4s<`f.Q =^jRFȯt (RaJBsu-G0hS6,7q#,o^ggJPvaWLjB'^\{+5s([k8^sGXK!`$ධ.ڵj|-j.n, *#G ̸a6tK`#tTٺepJ8/' 4XjӽsȒhtFD\\(OPlDYU]uRk l23~-P&?Ѐ1W6#_ֱv&Ue_qp\WЧ#sk]gyLR Z9V-Rd\O8J؞wYtx0E= F\x,\qv&H"B^U8 eH8ϺbW6T?@gZV`>-u1L'Rؚl[^_*=].ہ&Yun7k:ɋHBGg`ɴ}[sts<$X*q$)w^'q[#~sMXL}Fv*lwQ犫 zp : NB%ٓNb޶˙7 Sl2m>~1ix͛ME^Q~)m/k9!<O FG&PV6p)%(}1gg8vK5]1KRZ}w[QݍEvqZp7SeBC=Z$b~M{XQ ,|!ڕ=o4L2 ,}*1Wd3&@3f qƷCY~ Či<4CdSKLt\]2hF5aeIE/]ؑx\}ʹwtiqC2|v9M/̡rq=u-e } eމ1$$ =&iHE?UfQEGWHݛã=3lkxE1n-v&̥R>O`)>t-_vMi6E:*P|/ዀ^/'xw͌c[lԶP`gVNU~G3ސ 0oSNtmօPgIe6MXL4Q4ɶsJB G#Wt\Pqf>`&ƛ]…FKp}Ir=8!j`A3N29s.4#PܚEW,Н ꩳ'WqʮKhVSJ WH֞wony$/eV*|y#Me>晧jIP#؂ҀuOf\jxƬi3ES|1xގ [Xs+ˁOz @ْ\$0fYMqOD<"0Sl94#f?)>0sl7}P&iL3+T^ݯZyu]+^q68nCprU[fqo^~y `[wr>Q-< IˀkVl-4Ii6L&cNXYl?ؒng^ M"=g169F,"qnVz"#++Z>šCfM˛| pٵ1muJ_hЏWX[FG cAa#a"*w\qm/~;)+4vx[sD~^ N=Go{%(K%wyuCUM% 'ci(*!$OpRCx;z{E`ɛ( ƍP= r *d)';bI6:P뱸"w4 yq~L+#>%hR'dLҺYD_OQT0q_`# |&q%J&(H4/F[Ady2LGY"]4em| o ˏtjB2{hDŴ>GQ0E%l (#{d[C׺s%}XZgz@!".'~O'8૦WHA"a j >vcJ¼ |UdCj2-*W)|Š. l~\3v)HhEI 9(WLҏ $Q6^0ʉyT6 Gԉ-7z( 2'ޖrZQIi)#r0׈}azZB5QMXY\Wa:;ʀtyzCq3WEIb<Άro.F@F.T$bXZ`&٣m~V_N*ȞM)W-0rSPGd,Sa^F*$'WR$5$ 1I्C}†}|XzD)@vl:2Ot~˺jyS)ϸ} 6bAє,fKlꒂVw {v:Nm3AI2zZ{7 YzvVxBp'z#;ܘIJr6? 1G'%#yMLM|C0ٕgg[Ih\.x4:< O7>[ ~_7۔u-u'*Q9ぺƼa޼uAXjZMx_0pZ~F3fBwЅ9$%\j{_M8=1U@)Q[8ЊN*UJ`ux{LY˚V{O{.k35fђeh-"nl&' pbR6kvS$}xA޲LJbbڅRKHQ?0AdK mP5V%ޚa!mf?o"hvȫъ7؃tδHiOX_eB,M^M =Qhzoo&"&z_.3L;B G"kp9ȑ'{SrD~B2۠0: 5&&;9"!2~D᳌j !nWaH-sQ׽aL?.|Bp-m,F M6Gep]-- 7әhwe &⹱5Q5#֥Iaz&4EkYp!֐k@*s r\7gDo{ I%"-l 3iڪlc^/>2SZR|Z-IHa7OL wnZ"HSOYl[7To`9*$]lQ;U˺Nw]PSj;Q˪Rwй-X~ h_8%y=-BrHZp?^]{y~wVf q,?r=!ТZ!SXeS)fxuBn~J8sW,Hh6+ զYma 1|V|)L:o06#Y԰))qݴV-=O&2&>O&k_tqbJ;N'=3gå9V J7k΂XyЏ{";/u|lMݔ#Be'Ys:=tfvvWZ՚Zg>H:(n @ b7vpfz)Wz #AB#x ; J3n 3>Plsb$R7t!BqÇf-n:^ZbٛN=ٸSO uł )BۈgPqB)%X^-)>hn!)i7^D65FuEv},aDmb @sM5B |7Z2vpjM3`!ε}OJۑ?ֳ˶k48J=)?FjN w~_C[-/„$0][v;1$QڡtkN)8!|:<5N aɒ{qa y-$G<_E@{)IJR9חߕt/ ss\efQtQXhSIAd_ \<`NsM7Vm2cX4- %bIȫ UV^(k%c'cszJƳRZ ox"'$@ir'q.9?j_X Iu=s6I3ݳ^ǥoaZ62 Z5>|XCA/$\xܾ2ЋS&B:QKbpA*MQl? `MZI-uYfkhf[nᒩB#0d I-E\2BtnW}F"Dv Tc\CpEuLId1jQ>1sm3CPfw4W'?5sDkȅΨg$ᙠ3ޅslJB9".5mFl'Q{*6CﺘP *zZN;O[ R叢uMe~jRA=iMݳ>e߸rv?0'wV(ZwdL}O.^39-SF(E+c@fr(E_@5o`i9mExX7,bWqNMJwXo|Sy3޻z^Kʿ[,.\uZ(_zw0tyZŕ z RxW|+# h4'6`͵|Q2ú^Zזa&DAپSg.AGtl"^ߌxdir!(!Q򑿥qvEA{u:{G3lJkWN&eb nI*x,% ZnYzfr7BuA:1XΗh^V8ڵ kEeLD~Olq"(qh_-VKs!\k@ du&\Ν& O5pL4s eė"Ѻ ${q3c/f҇}G6@mE!.!P+yqT=8 ٗX_ 'qKJJ+.[!)~ns|P5{ц SN UXJz ̠D6ɟ[ O y'7vDnpLE͐" YR]?fxd gxs>7V#7rFҙ'38qh{TF~XWO `͑uՖWwf䷦Y?at4YkLL"?- Uk23HX[NqYi YK8)X$ep SI"Mw' 'ʔjuE;f0(twtn4S_F]85%&Ch&w]q]DΈRt`=^h9*>=R!8  /+G7u0X87'Y YvmDwM޺i 315Fy*^\HJ&PYd @ e݊iPLI=6&yaIrb.8E7Y2V1Rhq)l@T#mE]v=ĺ,uI)Mu;SRYe*K1a[5WbjQ́S;<H;u/KE{kpb[6"(19r d\y€Sy8}Ùr/&)-?,)I(dwM %kӘKU>f!h!.UW"T^ԌذߧeComM1&D%ljof4_yt31Pn!E>9 ˙.OquSP[gh_ͧk! 'K1d$ ,?%6 f]J\`%,<S(_ԶK '9h!ldk=hl`YDx,@FN 2Do) BX =h?Y-"@uv!G&3b3V2aT0hyd|ƓA˽kwGN" 2\[uiG;3V֑E3?nT;CLp^0ޟ~^k[ s¾^)`._2(Q6`=͠{YU8 ߁ut J߼[w ÿW&A@:`4.:u3)SE= (ɏAԵhr^u]l`. iC#҉ ̻xqpɌGbCnTa!0odqRyW9J`A}uͫ~D-&REwxYvV6OHxDocӽm6KcCop:{. hKv^zah-r(V~-0\d*.(z zJ\pN!9+f\MDž,|Q +<_ʇWT{J͠Un}Up 3}`E%[2A<]d^I?Jr柙o1Y`}+VÅcˑ##$Nu[Bhr[U ٲd20jLP)QȪP\19Tgq z# ?ֶO}PZȝGq Y4GX_܉Skf1ό\ 7GhG0@&NQjkf5#t,W&V|C>g^_9eK[e=a/cd68Ƹ,*#R}5{y:YWZt={^֟?s{f2!zݗFa+!0.[^ܶ B'w]vrk^Bsٚ:0Qw`R8I`yڂ ٶ4mnpB/$]31 Up\Oqai(?'{M#FSzr&gӚWsQ̡@=ӲcF6\$*n+C%ԔBʔk)tߺhdq1@.@;*w/ 0es7ZV#ӗ=tv[aֽ=th^AH.Bo}% }adk<p|z, O66=hv'u v Rvп\FA /{nKf~"NƩdG(8j)?oNyT)QZdOsb=+j̝,N$SG`1ς !P|' .1zh|7| *jc|E:N`cMUZ? Qvڏl+N=Ǒ0M0"Yr4_Yfl!4&1E:tPQT7Y Tþx!QtBd^E41mc+~ wy{NZݰ&°eTi uz\{/5td'mi*nǿfE5IFPp=5 9姿\v+C +I u]KEjhm2Ì̏ʅk_dZk ٸU/G@sh v\T\KDfAZpJ R-զu%{Z%Vr؋| g/-(c)6tbBEL܍1fVq,obdӐKuҙ`ld|8^G KFRs^%m ьe,fϘfTN_]pC?B*nejIJ rv~3}p9j@ap-ȽUEH b/gA8 )􌿗_KdseKc+h|!$5rX8E\n AurlK.?F)Мm@R3,z,kp<%/G]+~7PgZ 1dJijIϒ9,̶mhMo0#N`p /}݇)>oX[XME??Ziծ♊-,𛩍_N |!3HLEY9>EtҸ/a kIZ{#<%Wy͖8(d>>齻ۚ 3%rۣ@5~gԏyTA3UX#6 +i旅L0%IM3eG4ĠVNbpGbӝ+.LH-g>m݇I4 kEb~P+SK[Հ޳,}Uf:ͧ)^apr3'˯<; ?Fev`a^ԋɺ_gI^ێL-YAi|{ק$_)ҼHW$'k?BGdZJ>u{\T}M|0 924>@L& m>Wd!yj+}#W;oUOa3ؿOjÿ1]sճYDNYjbh xL*fУ?¦ņU0<4x K֟r\}zD!ڠAb8eOפpK;"cF3d?@4l/5niCP #įư$r5bOrW 5~֑N^gaR4!_Bc X8rv9xr+//QA"UX^~o<Ǜc}gixf4یAjM1f=_C ^3n X'0fnʙِ@̭  0˫!DwJste4XddSOibd)hQ.}5<Tp~/GEe O`<[Pa9b izka٫KG܃K(c4C@-zܨL$)̚Ӎ`HS C|(d1kWFp% nF|,U&Zx>@k| qs&Y/8 EM֎u1B4/}V>jsW,ɟ˼'fϮEžQ\F7*rП1,4"~^7_g,qo,gw燘6vD_4Ϗ@5xH wxouG^!tH8#ʊ}|dx)gI!*&srNns~zzgT?F=G,e7aTg(qo 7_1^BA9#Q49\';#F. R'w|X7x!6y]  cřVg/.h*dB)ig"J9uMa5AH݀2^qТqκU!Q<4`hA=~cmf5N4BcqEĽ7R3C'K#rz]Ep[x}EFwr\^߯ߠذubk/_* 6K+O])\oϸz{ ~.2QB(B, s`p=Ùn+7' pFenH1a $ Lf v0R6'i?WgQ&ͯ䬖.F (5Q 8I5Sa6YGRy$DYp;+^¡4 ,)EՔqI#ȱxm nyHZcn04up֩k(%"VLjB%.P5kͩdS)\7Px0SHfb\c|l7 sn`nr:<Ә{SW紐~;c#Z@AփUOL]R HN(>G7ꃍg|%"pzf"cOxKpH XgjQ€7gI3\\r1ac{k>D6)T ū䭤F!1 T8JCD܃ mG8pL:(X_RA/X5FLyS=q),ɟE glY0>"4}}lC`P<8 !#V,6F ZE.yWaް"KjbN(*(.&W%OnX^P4vu#U_WI?f8qX͉Cյ:\f蕑SBI774/2#DP[KT3W_=_RI%bz :1Hc.e r%aO?@1E-"}whl%#A҆Dl3km:ʚD0*,}8|"ms](+zSh@e0N";hrFd#kdt/׵VAǶ$]l MF!#M2sUv\dj7&F[y$SE>S˭;AӢ1\?gYO1q s8?5Y1q XJ!^D<҈؇Eil͸8 s@,$ KI_$9F&'ޱò M_NECr>+a~-ȹ$,PBH \#G֜[u3в zGep ǎ7 ,tO//l0bU ‰{s]5cݹFQӢQnae0{37ݵ-J}FbqNj̠B )#yJI9!HK{kw>CsfbB1G/B."hƓje D͝ 4>Rܓ\Z^)%4Ԩ{&o[OdR1 Q8Ztsɲ[+QSZZbڼw#YN@Ui&^Qw%/kcHO"2l˭pGҦɛ:X*F{3vXZ9$ٿqwC=4Ӵ Ѽ}Z2 aO k? :/f.y%*'pTjfxrӅj ԔD##nQb6}%f;ZI9V^1go%ؑuR~BBiQ| rR xMmfQք8.< '=:h6< z-2\ߊ<e UP4<}()E n|'fFU:Z5@Lc-VunFAQsz?E߮4X4 $W$V:]s_Em59/ҫX߉oVpv{ 5}VK\.8i@0ie|x۵Qyk"^δl&5ņbA5vMLT}6 OWE@{#l"_r^- xsLJ=4 ;Oac~r (+WsYśDX_DYlJx+x!jY \pUVI0}}և'@"/w?a̅_=8dd3^8tuV Vr;㿍uUHKOϝY}zo9`ai-N 2/Tv򽆛ghLXƯʘ4ڑJl5Tvœ׶#6llzg/{;0.]u 1;[F^ po u6-^/yЛ鋎vAeC(L~RqׁPuaeEL  ԧǓ(C9١!5{ߋͱ;NsI vo+Z!8#uk. * B~15^j aI[μ{zd ?<~J-ހE^N:?l̴E|2x֟=7oHRg8XB{ o6yH o;o/B:@X=pRe9㛂ד)5hAd/hK7Iv]GTԵ, fw )Ϸá~]2<~DHYP '9=ne|/v_nGU,jNXVt,X$ nRl(8}(uAR]a)Pgg7,B\AuD/Wsj`weLcKD'ĮWDgKn뽌e*,3*(0>on?Hpuf] Xþ^dQ=29m+G}!Sݱu$j&Uϥ*-ny atUc|zq7'4mD[wZhs:'=$ލzp5e##YanYYxy-+- C oqcRnH)Ìwz9`aq-#~ 4\%iLz W#R.;^WCc:9)Wn'y w4IF&tʳhFE]w^%Fs4܎\Lq8i+gij2$`/'o Y:+4_>~TN`ω[2ةJ6~a`9ͱB/}nCL ',/<,gU=` 5P+A59 );sֱ\jƥd՗8v)Cu爒 աK[AݬY ϒk{eN Q)c!ո&G= ?a ݼ']h6)=ؙQ 18q׮?Czd#_PgЊ>8~=sƾ[45F̥+[P7R \%8"k)[~+!`M_qo$̕{/Sx4gv,h.=s|كfo~dʲp IU NK|hy4) +lњN _ |Yk?w,8n%;',Wo,ZKyA/軚. ;I\Nͱ S/LzO;]%?[`wVJw; ;!%-k$ݻ@b+d D4n>/+-:gۡ] {=dG>YL~E,S$)tptXrG~bWѐ`}21nd%"'p @5<\:ϡQLjɕo`\#zv\_Gah$OAlaSyxfZvJ$gf>:(ݗ; 6ВK91,6`sjU[w!nvFBm4C$PzegCcr7ȁ@faKVAA|_+|Q[.tu魐?΁ʼn)E.aٗġ"8lN&8TFbz(2!D u ܜH=3*7:]|>PdVk\ ډ xUhJc3U:<,<4T 儴$56 dc TBն4DZ+d!\P\Wd\:z}yI ׺ï if` 0ނPxK; iV nY5bo41:> &\arKrSg4q<$ t%;S2e+lxg*?xpxN0TѠ5xf+0&g.G9M:brr!h(Clb(\FcE٦ZGfv9 ;sJk=ej3Gכn#ˢ'|f`ʩʮ.v}k d}=g%M):UhaMkPfaWНC3uiF\9Euv ~3NLL&xB-  FɬpDۼ)IkҺ>OAy{k4|" bN^r71݆u_ľ69Lk}Wo (WcYKJe7FQTh P?/Uy][UҿK8:ܧB"bELIy R zB;֞'K4җ<-H;ڰ]VK]%Z6;[(QqJciWn\*]'s]ZSMw0JfႺQv0=]̶oL =<˂BeZB]IehΡ(;9Mਗ_Ŧ(֨\" ?(N 0]o-cJK5i }d/'~QzYx _W뎣 NbK4nVJV%qfA oҁC!3'IZQp{"+%|lx(sUѡa?93εnU "픻6t+-5R bn79 gj~%8l`fNoCwHfccSO H2M2J}9P}mKyD rѥ:Qu'tRmC:"h,`Ek"!$g1-H焞 ! UJ*|u~)mD'9% apIOx 1ֽEeX/?Uu ܬo+R =Mr \fbT]Ϯ۵NǼ[L?7Kfd%}<:uy4Y֊Xd1'V;PM+hiʟbYX#"3rNP+~Zn #cN dU#4:Ki1(UJJY4 6ve-7P⬛G)"2)ao"W 霎?ËzB4r 1zMJ4"C6Qid,Ur#€&'h"FnҧEvlz!.jyשG =|hJЅ>euX߿wʺLjNYQӋhqRNx7#?SȈ+ǩ!Z̟b>0'^&6!5 ܋1BHq)5 fN}]h T9SArȢ{Rw5U(\5jY*2`G[A HP7 U9[NDz^|碤M[\~2rtie\G;3 .Rax 9K-θ'.6XB0Z7g4\/ɭ8,x$dR88E@hlI]~yu;iT>-KkkZEV -%}&8H$fR߬ohĥ6[7:} lH<,YnLn[́ %m{nҙ9I/DR:QyVӟ*-}N HbXk D6;XMu4h:ݽ/ջMvM OY>9` X7BMHz 3W>a4ѝIʞ1Y7rL BXҁ.DןD >JL9^{ I $$c^ZzdE貭b_*2w˼:q MXiBX$AE7_u9`ΣN>Q#Fg_do i%ePMkn*q1uG 8fq v7 eo tx(,i#P{z6#R}gr$ %]B̯!NER62Hi#c).΄`hK7ô]IǹEΩ-~fFU)y?wyn!U,mpx ^)jU$L!l[E_( MOm~SiB Qm;7tp [GCtD QZ{j+V ˔X֠ _* BUh SX㯟DEs6| #q!?3ՁϤkٞ863AFU]cxޠhSP- RX7}^yY)~ ||#%-uҀM% -z)^6EeL,j1xvڌ d!ڜ+b6(#яV鎣4V{,Vs-,XCꪗ K+_K72nIZB<Y qI4ˮ] _ \$Nt')&Cifvw EM-H ԲnRU S|AA*zu~g(6# xd =oXJzcC 2*SD)d=Ep yz98T.Plf =| ^{WfRQ )kҍgi Ԋ"BNߓS׭Bs5 pfd}CABsމ,oC ռgU9e@+j E!W l1+nV k62!prDQ&v.afPﳇ5GDSY|eB~o]vA*fsOzvJӤKEҦM4r>0=J>ܥ "F< $Q w#c5DmBfjN}pbDw-ߥqK귅 C͓譝"DKʱӉja_zLLNu5eWni5QOT)4Z˱ǯ`'E]YԲP=06C adZE.02Ӳv< aꁵu#}ݖ8UtTy"k_7pUa##d 4s5x>j _`KvEVb40T a}i>s 2zZJ fZ q:zPj:;W MW_/N;`ix ܢBh$5xK>ng[|OZXyo y'bIִGqA /%y|q[OBcX.|xRWx!ɗ:_{7몓粅*_q7 _Vl$t0pӈO/P.KɊP8B]Z^Kܑr ,UZE*BC V뭑,$^tĨe} Bܴ?orO[B@%bv >ho@;XSTY -_X/Jlݢ* ZP-]"Q2͝m~үi_|k|\4H|>9_SEɲ؜8,[c%hL:pn]Ϻ7 V>LvfPOpNL<=U|\^߼Wwu6$u9KZ2Vpf:`ky-IJM[J_f_RpqB \mO663oY9j1^#!0J "s2tJ)ֺ5Ȁm= [8݁7Ӽ Hi#'@H;RUK_5ܱJ=k}3KN$cwjZ(ŴT+iS9_zH,! K(R! rr4Pl(˸Qg|kC?i^-u||g-~Ƿi&'f.Ҧbi&/qى5RL@gEii;Jr"0czj0`'4C'-0W 6^HR^Q?a^5t!;71՗SӾ.>S>z ~J `܍s,ӈLqR N1cdфwsN~K\QQʻ@ :=lվfM=SN_Sj*Rw/ cǐ&r`MIcdfE (.Su5wɶ&,XXtY݀Eףws8s/n/'TGMHd=̧v(Gv=% <5?R& '1RfӃZPqRR@Fx7>lAV)+`S0K$ 2Vf9"\G^{.MnI Vc8pD_cA/,xZ/nKӝ/(EE1W0ǫ\`P GؘMgzd3$:8|s3šfֹy 1Ȣ#x% eؓ- SBC<=WI U ԑQlY9%UQ(   T^}:~g3 RF VAnã0x?}f]W|x:u oػε#I*ku.4P Y V97^ ڡ|=Hx7 DRitxs9ZNf Ka+^}MJfj .U& SB` kRWHenSLoYYYM`d*4e}Ųtίl< t{S?-B\ Nӂ,?dVlUT [tz!m聥1HۋfPx~} ZugUfzDKh0TwaΥh|3`5^҉Mz wC.;"^ ˯~X_(2 *VDH^ϝ ѫVô!M" ED4>Jp!jլSsזZh=14]z[Q*v/ȸC$U-ʻ?Hα܅Jy3ӨF_GN ‰4ՈQq"#eFCѵQ: r-j1cN4CHm hU]E;-ܱk^&w6-k!~–x7;TNj,I]d&l=&j_(XM.lhxl}]/G 췾`5)trË٣~80D_VG&T\!9Ȁ2茺lbԧE 7,Odb녧IE#1E %u/<7Zan!>)+ٵgRPlp(H~DU*-՚kϿ[a.|gvt5M_Nd jێCK"GQ5ΥW^.w-nwݱ|x8o\W= 6?9nUd7:\}}zHIa@HzߖG^]3L0;` LNA91CZn%7h `I6#,=u͑F¥=m殖]=\jvV9綩`1Z ]3ugFӅ4 KzN*8{d ulw_v>Hu"zdqhDCY+8*VFk~Tq1e0_ܳECC`6ĥe=Ϫ|=?8+1uzzX D&2[MJ_:&Z[vXl5HTsbLW/a{lRV'7,6S U >&AoR"Wˋx!L'?SMN9HSeĸ~Gzvh | /r?|v` gÏ 'u?͂ p"'rYLK3F2\AVSv&e%I`7Ex{j{#ׂsCWg;J$(7`a,6<Ԡ8YӒ0E3_C{a4f\du {VV:[y^!hG47heo'6Wӂ$JD42>W_a߶y2^;4`)% &Liijy־t/IΘu ^U*!`uFYcVӤPtjr2m+y2!.#n3qx4-'&k*%N pr6n$EyPJ83ՇZr-,mWu;,zgZᵑqїVEPt@ :o0a [P=*FW ZvoR֘ ]pJMUXQ>lE'6Jd}%vbGD2(';>=1P!f 5 }/3~x9,NXb`,KX>>:1*R)sAАYkeO{ C Hut _y*ҏ&11eAfA/7A MB^wLp#CQm_|@%!#8xt*H͖qhҲ 8X0iGbu]tK|(juX楌̑Ujb>M.-]*b!W&.z3 Xj)]bP? V%`/D;U QL)g{`o(^{}bdU{@\n3M14d<;LMrV;eKĬS s:0M8ySӚ_Қ'TL!4- Lߓ$<ɧUc}]̭-XnbLs@HivUKroN0^b&ݩIh6X. t^35 "L,i aWɮ~8̬'BחR|/i@AI 1jl}Mp0 :ar5rl\0nv#NJ6cψqNn@\m>x58}X)zs͛:\W\0^ƃTH5Of ׅ06YE$|@;Zzצ{0v S1/" l3~h1QkKb(iG#z{uaH,1pTZ;7)4_ NyDŽ(+ț4agҗr*)înS6of 젖|l\1W,ַAũ؍"j|h_@PfZ(=EIQmHOtwq癦@2$vQJ,530 ǁ3耢T4ynlШWqk<.q^,CSP9)K4>5׺J«1 e;LtvOfHS^a )<\l?(% o_;C?U|#{=[a/bgw0h%j,gz(Wc[ K;V'լXX4,1w8wD?,+scKT*mAЇC}HҌ]F,$uEg{NF9sRT7cWMؕk&Zq.FuOP3nJ}AդT+Lc\I)mD ._1nT p8irkk|ΪMVqUH1d!}&覺 3͊ezE>6zC>KX|{X9Xk ހ KޚTx^w7(L(OU.(X!aSgZ/}Eէes75GL{]9AKS蹧_Lx.0e[j[|k*֓[+>BsiSs'p00߅m!?*$t6F9ϒ-syA82ԭ2]+Wk=(֪'㧼{85(h x챱e8Pg[~C3@d\PHS )B9hŢĶxQ@=6пc9})w ePŠ?7Ï32kXo@a 6w+D* -%c"QZٕQfPS:]yDEdvA;v4L`!EXs%5תHՊe@O֨#%Bssl~$Y9uJ&7J0;' 4$g:`ћ>Us?b%=6ƈ>C3[^U=nTtRGG]x2|;g zGh̻ƸGRБKVm/CIq ;>,饙Ep 12a"FMQΰr=S^0&63&o&@N۩t_wkPC9)XNy+;}ă!BTs1'gBc䯜As@ N1h}c!JlYcUr9JX)Iۼ˚ZB?'i9pA5ErcTҡi2mP!)5*b gKh3=2 Qfin!<פ^kh2֊;; ] TL^!#e.BN*#:M¦VPt)֣5$ީVjldR :PnDwF} \7x\ΩDr~Qk;I [ -oqi=^6VIjBc#;\'ߤG| F0Vޟ珳&[nA3m{۫c.>PWsʞ]1[:tbmRo^"ϮM %A6WN>H)AU[f p9d{@@9>Č`NJ FE, ZC~ri+Gw\$> LՂ>{%翔RH&#ny|79oH40{Ծ2**}w- 7$0,C<v3.DQW؝ɳYtQx馡xK!\b^0Oܗ{Е TBy~twf"=5F \B [*?~?Ԯr#H7"$=xu6\]X$W}.Wx/X밠@T(U>O]5C^= k3Ԑ,(TL빁ܥ 7'e0Me۽h;x׺+qx/9$0Pnfba~0#b}LN@l?=Kso"700pN9BZa!+X/G,uŧGY`(+|Jl,L}v,i2;e:/ "XK3I~E ;}rYEkEP;QOzaQ>xlF2y@R vA{S-]~`zvx$4ذVk콤y-x7ZsBQ학N9o %虼4~bƢIt_6v2iA!CK׫طФR~M-9B9Є +cKH`-!Fò^|#+`iЄIJrd`+K6`CZe?,Cn+%]X׻%wb)u R У1K/d $ɸ4~Lʳ] ⣛ c& x-4;9 Z#~Wo%p3Nc3_5MŻAwBxM &-Z\]jN@a^?2NI6}MBBi*WPBI_iRhfe&O~TIJퟴv$$DŽ Xkԉ2.\S} Ԟpnݍ y 5)'o-օmh ]J_,ߵҶ}˻qF45(wquVc9c+Q%lh,Ć䧹ť7mwPSzv<рqYVbV~5c_&%+3gTn4_'mDA7ccOœ??5U!7DEOJۿQ*(?*+OV\۪S\wI$ƪn hdeQFdCg՘Kۋt [qP[V]3AvE% E\" Moaf(DQf)W\7S"gmYswfHh[Y nIsaM`>e~vZvC{@X}5@PU(84x%1.67 RLAUȫDY1~=5}OIxU!%x?tb"WJ$ V)6J/"1OlVh:)<ٙT4][}/:gU`i5pg *m֪2gŻ_ |c :+K- )tQPuDtw(Ԗ*lޓ)f4>It^dnI/4$m?E+>kUø7{{JPQ|TuU8LlvPVqYWP\ƦnN=ëyԴa*:sEv CFaֲK%/`ЂϕXl] nr?pkB¨Ȫ?/p@1'D.[5+; >[:Ysbgi*Eeb@o`FwӠ*&]H}a7t]gx9q!2df7 kG7!תtl\˒'@U(5ӽB0Ƣ`c*kj󿪳! O6 =&צ{ 3^#@^"] 5"ڈB~j;qCݶufӷ~Mu[!<43lÏlILPNf[mǎ?{a4 ə\na)ybYH/7]\`edUQWը ;+g73G6hHNO53z'9D$TJTv#}e&:`=>D!J*ћUߙ.9ww#LV2PZl$0Fc3) ySY2ƀ4U I@x9X5P™_v+; +26jN*b`&B]ŇFc:]He8w gt &ZNb?7Ys+ <6甚OIF(rV[A- _@z<W2dz12vb]&h>.K-`0Ay7{uiVz Z㸺e?(wC#4vs@r;v+eȕOv&zh4 E88;!vWr(53G_mHƧ B~ސ$F)=j3~HTlge :'+/ؖgKX&.= LJMY nKNawYkSh{}G̅.o&Ey;%W+>F*%zkxEފ٬҉lL1Zi>l*5*a;omђ|-ЛL=c^FS$tf9]L.2aJIK)]iA灗@VB-+)bCLeX믬=4iG-.V^+t,{DSec%'tϪTJ?#Ic1XgҵS qA'uQF6"B%hiR;'nu_%x3o3eB*P}R"߲C*L՘k50gOE6F|tZX &i┥hy{9,MT ew4CZdpPqxǛ %ߑv7Ab("i" .&r%`95eC&0 qb$GMs^ k9s ؖ(>>`ԍ꣖MgDŽL ٦~ao 1)"Б`i$EK(X)cQ!s m=(UՊ|3y>v8jLƇeiɐy|RUeX, Rđp/wuxcۈ@6677?0='1L/6{pL8bќnqf:Y=G|e]E9IѭR Ox܆[u4"N::9)cijД6kbִ#BV5[k}(7+ U%7 <ovE>?Uy)'ҦpjeV;ie p5 C"vL UV(EЃrb$h{üGu ~9Jwy^a& R8qQʷK2 jhXe14UI!JgvF) fǨl ѭP]AuUSЋʯ:3ܸfاьQz<ݣMH0~x?y f[8d*lcM<<|BǶIs R]s5/y4˴։%4.S^TU]'ڭ3s M׭ޤkCW!3Xd[Bm7JM4 7k_,6y&t4Z{3a& M.Yfsd h'+v!Һ䤐uh NE|Pj1)\gynȓKh|v RXϴƿCV|Uˆh}鐒xrxE4?SR/hyHxWmd?lVhSem2!7[ltvܔNP\NNIC 6@j Nt KjDwrT$Y;T ʮ֭_q`(@kRRԥˈpmdKZ;yè[ P5H70l&)^1FFE&4w*Ã!H6 % @.E KV<[iEC0lM=] ʉE2%i u=mCLɾ9ٞ=X.p/^#@}rp7k/ 5?>o9^j"e@VU>KcI&WHi~L=x.,I7ROEͿBKaH)eKm+`~^IG->ooYik\ *ɁW߉ikj\͡#왱>lTv?k\qyvBYQQFGv*c 9 gn%G\GUkUnvZ ZG1z%oD2ui JډK*$]fP!R u\8eX?z4dc>h{>ͬSX/zn?:A4NɄ)y \Eo~@ Lm *e"Q 41z*R3[چT@:1G $OmPgc˔zS&7|߉Z,"Svor(T@d3 uaqfNn.U79Kڜ-ĴPc٣SFtᅁ>v,"UOHaᔓs\ܐ~tWLjY%oKԃ̟2Ȍ:YcAK}`YHoc#NJS\~YӂTp46piRf92 %w2ZA[;>+6Huon19wH/.huʎt-LdD{)C{,]9AS"Ǩw,@|dZU0He!S׿ |P]UT5)Zb2s`ٟug[7ʤ;|yϖ|K*;Ϩv])G48dF!H|ܰbjzb!{{+.dq!n f=YӔqb6Bl߁ccU?Cj y۠k̪Q#醌A.zߒ}z22!ZG=!"pC]){<-^2E=$ #|Ѡ E0mc@]aeppZ2g j^=RiY]rN@k?`ZA2w(|aGSzbW wi+mˋJnU=WߢtYEiRlU#fyx Rv5_0,VG`2b3'QF_'q*E|EsB#lwXMl#qt `R.k?3s(8ab`}W9=R349?ڝj?8vo (U~QNM=殉g9>:[vfvNcɞikF7|+V:}}Rн"I3%}OT@i^2ѭ#?]iAgջWVu{M"/{7s?\aBy\܉߬뫗*2U+I )q [WAIdSJSm YYO0x<E9b9҃Iph-m3 6׹4URˀ΀,% >>5NQB~p{SvƒH=PW A*[ήï!̸A.4)'@=`'{lB査)\N*{`&՛/^N$/"hFGAg ȃW6©^n7(VTR}[QEp7bZZ1K= Ǟ ƇܺNPjW6pd& ze@SJ0 va]UbSĂZR `G;,1m@9myۖsQq54.9l/I-/brAʩht:V2i[oj",GV4<܇P0<& u^/7?« Jq*m'!a Sgh6xojJo_'^-vݻMEbsCp V5i kC1Y Ȇ#Iz0awr1v33::`9D4}Ym@^E]WluEDJ 7w$wF Yq狣BW ɤ;wa3C{9@L T*?h4>|ć{ uX3q:inC<-VUg= =ֈ+ h"+;ދ2)MqMn64~hhDewv>7.1->1.Nr` aɛ_ɇPS<'~Uτcpc:ˬuJOkE"hzZav%Ȑ!(f.(ِQN4vZd#BBX&I #R%zF[a{ķ*L9֖.C 2{3I [~EuDz?7+^i.]V^؈yn:'EB2q^?Ā4L8Xtj]Ja qOP1/SvrؼMީ G: Jb GdZM? ڙet9̊% wy3Ű-մ3԰dèi0m;Jep&,JuOR0 !?6?uW52::@Ex-^'di>fb^j[Ƴ~5zu'?k@M_1jf7x[˜[0WZ҃x|,r\7pW^R>w-,k<؝d  q$Un|Ugg:LJ^6&*eY>كb+M2lj-9/o}j f|@LO q63Qfڌ].[O|v2 43X<eEQ+R^ ])Fs?%r,\2 JyZ-HT['7.F gYQu$)Ӄ/AN=}!jK'VI@]P6h>h,?{8v~]jELڹݰRӢY{_[i=3TCKXiBҸ tqE~`2 }zӄ^&c&p+̔|ys>c{Tׅ}cKڈk6%| ~Iy\3<$U߇:.7L{*|9Ecl}R.4`yoGRq, P\#ǯW$@/M 뻖Y \m8Uv;uC;2d'ry;ԫ9{4sݘ0UQ?Hd_=$G ts&y2Uvkֳ{{+0a:ZB`K!B .`"tٻڔ,wM!Ҭx*ļ_q jF1;{)ɓ*)>t)6cY5B$8uVN' LYg rTV^"P|DjY;D>ɣw'q`p`K\V"PCaQyzwul^;{ݾl!#@qH=7v0z`⠣&Bb@^K;&dFoY@bTʙ\gߪg].ߘ:)s@ ڤQtתVYڧQwI #6X=DwOJhE.n'˺Q6C)zU$yFWMwLsi2մ& 'ěb|L}e6.~liJKPP0Qǐ&?W~fF3"mc$Wք /}]{JQCA' IM߶aWDItpu) [Yi i=mv Q(JX?Bתhl{뚼7*7#$&d7 2J$R^i&7[OH̴:xٶГT)K#2@ǽ>akTaȽ f͞AF@8Pt=mG)iD'-yr&ZH w{`W3uMF&Q))FD@|g#yZh:ʮjDr ` H`8ڤ -AV+,G.pwU^ܹ5i\\.&)؎})\ǧ{  &:e];]4+73!"OPA֯``Ѳlkpn0_b#⽣)W,eU+L, 8ݩ%j/_=\(ZB^PFLf322}88Q2&1ǦKISzڗ7h7VuD p#aH:0ahSD w|L9-x&0XlϷDԼ:Uc&敹ccGY765EjM-Myjp\|Pശ@$g\34L% hY#aiS'R(īt=slP5E*u֥5uG DIJ !bG1Va: #a,\{.Mt #a+}{trX5no\;f"-~$Qﱾܫ8Q,Or*@\+a ]l4`=y5iP,Re@kj74 %qIʒegsM⓷C\k/vH7x`k7sXFr7d3Y3Ѥe}\Z+Qlc"4LkQ0CsuzGF 3 }*1L&B.L1R^Xwd\AOj>4bg,ʊT&O0;3na|-\\9}#2 @Ny.BWD'J`2vc$;#ٹ ;EjiiGWCH;$w$e+'bL8_P4MYRִms0|`eAe _9_úp f}1D vt}-H}> _\%9_}P -28{u5n^a`ź_C9ǭJɡm͟3oJJX<|(ƌKG=($Q_ TfMݤ)$3GCø/=3W&:aY2IS}N-)G\Ls.hDE-H'_ȚWYvs|()YMҭ(sSP j Ē٠CIi],b5~48DP%*W.j33li@?ay,aY-#%| DB3@qM*XZNEhe SCW'h$f60ߘ# ".GdJ`h~?_ZpQ$)? s wnPͰ\O7-AՅ{ 1_tLoPY`˄Ұ_q4b C h8R^xR䔠'4nu̺"w%9}A%_z=(e~w/a(Wd;j i5*LH)؅=ks#4Z2P=fB .( {RM&`~BKQfӍ^f&+v<]c{rG]쨽: q"0*xrUgנ#Cu5CxA;Q[Mj{Tۖ7JR*tgyv!DmG҂95b^FEVNoe9c?Z[ hfЃJXk0?ox,֯GL6kMRR)"zv];ٯ60E:S#kzln Rɛ/ jh3ww왆6Ӛ^B$[b@ NXux>ߔ[ AzGR-O4]Ǥ\T$N/)>N-0]I"w_sï@j_J|P$308g o3,or)C%ȂַB*CsN㸷𓲬+6kc}nhTqrL&qn,gkZSd2Mq6u#w$/ nxXY=)\]S cNy|n~F4ҏ#L>Nõ; ͈UliqjM7>}ۄ7X䫫L?D;,SOL[ԈwIT$v&&T^W8<v yh>*8%.>,mY*<\ ԅ:a?a9 ]L(NNw]L׎[@] x,kҐ9ҳ 8wD l! "/>L7%L8σUXnU3FN;0RRG{T69g|MJM!OEkY ^~)j[FCd{G}{萁+:c K̒Uip.8`9x\L LW3+RqزYbXrr,a%\b%мixpWREl@1oJ=ôT5 P%Ԑ]RPjO]NX5Q{Sܡa_Gt^.Wˣ%h⣂j9I,.osQm3z -^ܣB;NO[o{tզAfhɛw vZxŠ2\0 6M2? Sx^Oias<|;$8^AN%$0K߅Z~0η9GĴa@թ Ohȯa 6&iw dZP:;V& ܧ锰b>a>:O5o"斂%;Dt~3CQb>*7i~!5vRTJrZVbA 9 + Z" 8z8\&Aw2Z('1T4jN|{E 7Uk`6 #͡K=. ͇uR2Ћm7g&!V0G8Qx%s&s y֎Dd#M_0:Ns{Hi]Ʋh[4Rt:#h2r34yęXZ_S ۦUb0R Ktxw1#P?h _%zQ`˦4YUCj m'4ZOywћy4ަs|= xtM5%=1DWkLx"]3_r)+HA>r,FІM ?=!aXdsc$uEsY6 & Q\;MY8,/$w S _Pp=ropw?F:%E9L6I)E*]I>6 ۦC9*eҟBȞ s=#1ݯs~b 30.i7BK;zQޛt쩤N$LbZi! ?1oa3WJ|nFx$9Ҏ*cDNMs"a2hN|Ki:Vz54`V/iZ0iU. g /9hQ~:"VTPv" N㕍T|[<U98j}4 |$a4:)--ͻ=U}ȿ^PVuh~czzvZ#m0ڜ+ OΚQxhA-\cQHO"32^  `@ .lnYeO nͱtK<86A^{+fb8̔W>EЗ@k׼iްBLb`e֗^ib>(hJQ<,KT\~^0zsV$tjBm P+!S-x= "s3YI9sJx*Ѽ1RK2ؙ95`'+2eiz^l]QIa> 5e\T/?:uY aNV0HB(. pu}h)4P9khoޢ6ۃ?V;Èk_ieskފ2X GPs5MCV&Ƅˎރ^ݥ@`r7ʶ/~}Kgs}@dwTG9QDV^RJ+5GPc,U3vQ+@p8BFRjmn Aɝ/aKtd(pnc1CJ`XyDz2,7/|>$ W4H90=^23(”c)=WZYzBAAU(nJN D.uo],_c~&`m@h[AD)ww++K 2EhB\>׃rקVddqv[;d*z1N#w|FJ#%/ G5j5Mcc*񺪥e j07"nõCWtTbp?t];faoL-u|iXŮOKE"e(YHfG8_2Tk0L']$^gKd誜V &}:E8v8ngXEG/vD$ !-<Sˇ}5d +lB3Wrv 03w,l[v]uZjBׄwtDs^@8ޟO [^bR?lY&UX&ke-aTY$aKox5 Jj~v' tq |Tmf=l_8 =gc*S@ 4{`H_ӏu )I}k,\qv'l[ dirYzan&0kp QfΉxNB U"=/m`H[AW_S4{iH`wvF3bp<ѱ};kM)62K'Yw})9C\>\ 6~n8H_ajCHEmEO&k1ڠ*ۖg ?@~(znGHn=glYU,iF̍5h^C]ͺG/r6]`c/h[P,oRc4&YUxG4R1>*vҭtNS|jbCi@NZ9=?s"I_PpG7#(zS7uET+OmA . #0/J5>23+R7RȞxHO̍89\ߕ.8mf HmT_xgdT:>Ru3$wn uCmhQ#‰6˃FF JIp--lr r @0=J&=E0$nN-%Y_qIeG4a+ؐz1Ødb"劄{]T\a;5 7XPn ">QH߶oZR1JU9nG%8H \+Oi} Lmȓ]q Cc3 8 =JYLyRg`-_Z+I|1W#pMy2cY؄OxONY-"22l9:hF/8@mwJI4 BАz\0RgWJ[w9Gt *PSY_7;`:Ȫmj@Yxia_*9x)hr}&E]wZcm B磻$ SK.`5DacTI+e7)^#TƲK_05^Y'~_ "SRnMdDצ_+/F[|h;O5"-qGgC몤&C);TU^mDU 9X=['T4~af(ih!N;%#~cEo8jQJx6d 7u_3szpp{!7څNd]K #fIQGgF.rl]KYl9WDYΨ#5KȻ&gu.+P_>u+A~3|ǚL/O`3O+5Sm&PvJZwuպTBb7,ъC D[ș,|Ϧʔ讘j# i^nLk0a9WNS7 Zp=-!sJ&PD2?X:C4"u)cT:b0˟])iYHCMYcQ4U.@bX\qh&;y!:UEJ3L >J脹ζ&6zL+aB>ݙ[@2r9O{REj ɁZ,I~a?ܘ&T%*e&eu@J2ipSk]4n-g;#9z<= k©ڶX b]r)LK$FJ ƅԨ՞q'F "fhTb?SưY'{zks2T, $tږ 5VFnK:Au c!3}GT#e[T]1ѥ>Qh iA"NJiZ):WǣZpv|=8){Eaj՚ķWBmmcqI. !c FJ6M bL %( 4TYm\'.Z|g9D?Z흫}DrȰ -&&_n ˺)3I =g0F"] 68tC$FQnWv_aJWJI?I9׫]v0X BﴁXc_ S(rznl /5kyƤ絗AVf`n"/m_4Q8;); M}ue]DQP0ʮ|@LJ6=\#q-tm)ƴ q s1HbA(? zE Ba;o[#rzFL3JG^4}"(] WXTwTTȏjhtSƄBB#ͺJEp7¥\`KEKR[N/[=&$RlU%IV/OU5!:(="#WbA@ 鄈ީ̀,w׳i],_Sn P,(g]4piԦ{+GCrc<&b挈%*6ש0 )F"rbu>|?#x ;0itS;\Ķ69Lmj*{P!Yp r"}ڃiȾ mqMe,`:,)$iG /xF8E~\X=@J Zr N/ԨD #ꐟQUgǩҁ5uGtԹ*4ߤq}{+ aC1SMJb 8?U Wdӈ!odX_|"p(>'Զљ! v"+qW~nTŴdݖjB.eXE{kH}̢=npy[RKz3y(¹gUz*QY6mo&z˷>"ތ-lvlÉ^8kȆβ; ΥG~Y/K J:]R1ilh'&'0U]#Jq̦P.*eN!҃VƲ Av*jy^Hm+@qap6+b{/q- g#m C%N>.eP_[c~Fnݝз)TKJYnr.&r>z~hp 7;V6L/Qހ\}A%=).7ۭ+(E gf O+mSuHjJAxUa1GAڍX7[+/5_'i*Me^A""}ʻZ"*uچ`3'8 AwOX|aTi,T;(ro^=$yY/oƐL?^K#R$=sy[1*L'n7ڰĊ R,7ƆU@μ! ڹ;UK$*.`AE"g O :'؛!^u$d^.*(SFPpz ޠoATeCASqYD&iCŧk)}Ha ˃~}PԷ䊖5iSi*n򼉪>ȖNz_K}qH /jU\κ4pdrcCzߔ*Hx>mTjb8 uHzLC(W:MiS~2 G@um_@H`yu4 G0Yb`f.Bnv|CAWěae3l8CLΰo yGZXOa> _:UQ~>xGnmɴ=A1pz+b;z\Jxi^t7߫ WTغ b}郻V >E\Y޻/Qe]4Qhl24gu<A̰nWRXx:Bew三~Sh+(\j9D*uca\~jV}˩(OskLI.EʁX xKq =iYH\oQPgei1nߒ(q!qaaf9yg_j9pL ;h(:N!?0- <u/j|9ydI*vY51F4kE[wx3,K5nc?_](f[rԻ@6/Ʒz4FgA&_6Mu!Ȩo T1'*y?¬عY~8m[|{Cz>^U-吹؉ XS $NrT1(h~d[HQ϶\B.?cb/x+M$RFiVOW{Ϝ63Ӌ)Mv͢m cvaƚ.$ nW&DIՍʀ}pT3CZS 48~> _ -QoA*1EvD)E huyq$k?=a{"}-0Ɏ @njpB yQho͜Z⿂;RQ)y[D~y|t&c3=`oD`v6uMCdeQA#$~#*+Qtlt8Gcc 4'ֻ2숭@Zj'΅cO&A>xةQr_As)C -qB8/9q&諏"f%>N5J/I8 +ZdZP #cT#] ¹3NhߨUw(OTD= #wJ$ ]AOp q`I7%2}TK*^~dϕʢ=\MOV|!rR%$(cw: FU%VU^$ ?%|1X_;!\MwEO]yw(9I%hWiECN<̕>0s^**Ƅ5}vh)}!>?Y@.I׌L=Q+Wy%-n@X R*!8:<5! @b~>m¸Wq2㥎J6Z,zTuf,E%!_  t_~0eP_@:D5#%l6⩅B]#JɹketEQ`˓o{E//Sm·>1$&biq^hHv=n#~(!U%HmBp]ڃ Q+ <0'Xo{2V2*Nj;dt&dT߈\4VFѓjx*=@Rۊ6ܖyXŠ&wi'2f!ۿ4KA4yD8)Bk2ԊTP[w`DV1=楝}r.̍X7 G er26O^ȶ=۟gGɳ.WdUmTuIW}"W4h*zx!̈́ÙGPhanWG^5{(D"mZ >[8*z6yS<($i+W=?Yg6idoO{&U4^V(1ņbWtyvJɌ Wt% ; e!.6b,@6TC]d'uW߷<wta׍xI9< k-L@A?Oe@ [:sMdz;S).~),-} e"^`۳7M՘sQze BKu<%Ç (PI}~ފl#jA-ٚ"=e|KU%5? 2sꙄIMk ղk:&cT{H|~~{>Ezb٧̏xd+я-ŗ|ah%.!D mcS3X;IOSHgEMh` P#ώʾnv7nz,cS0-lpY4!7sPA-M3rI/߈bw3^Oj Q̫P+v[\H,4m 7mTޱQe2woiu5Y:]vEG㹖qA"sϽYc1җJ[eE`@a& "pLn`=״0TWASIKd>^~ZcYn!#o7eF5S^|y;G0|^ݨ,+oJL. ڙάsq 8&(gw.]7Scem" p] ,[N ໯n%d&&{9'ԟ뺖 $Eˆi|JQawбr_&VZd<ޟ9oO[/bzdãskʻDjtj,4B r2`ڦFÈ|eZ T=)lޠ@6]{ 3r\9;}P4TfNCR($x3kbp!E ,59jBk/Th 1Ի^8hPDϧl#XZH7/CڕBqE# |xF$~SNTY/ ˔YE!Uˆ|v.=*<,^hK_'a4[nX&K ɫ,q}"==%Wo’߮Kܴ9!vxS'ǸwOP'SghkDEP8D$GH úr(iT% OzM?J{ujcKEqNf|>8XFQÙ݌+sCiKU-%( 12@"goRpkXR{w(J]1d&8ͣTK~_ ׇ4ЬBCu  ϒwXqe ?47J%O;,_Fm֮UK?kVC43}l ٨T)~QsWKƻ$B!ZA珖ӧ\eL 0++n%@uP6;'1x&%>#JܖWlsP4օuBȩ!Ώ%׸Ebށ9>evH{N[8S6 X#x x8²%Ui;ĞnG:/DOXU q]bx%{=/`ـҖH9r ^E5@{ӥyh[d ~єii ܺB&ցiX%8JiH*Ԕ_@F9`$7Yd8SIfڼN2ie*RlxAb ?2k"`fC˲hp:QZ>UnYDuG԰dOⷳދ3qJjcj&|xA ̽@?NU≉J"j3EKG4)5wǖkr3CϨ2X6{uhmkz6kz_{^޿an G݇!+p~V'Jg(rq Bsen̄-ɢs zjl5 qa:K)eC"߈^ y6b6IǢTA)2&n [ЯYR B'WƤ @n|j-3m5oFRMj(Oae,R̢ DpOMFjt§szX|X4sdn'#`6"$}e-Z=c"C*4қn-"rhH~F2aCb 3vHJgi|!mOXc4$궶V]ua?= %]](t{]*8#)=cFYܱT/pS~P3O*!]I ѫ:>I 0ti(K7m3S&0!WnKGZct5l<8Iw*e{f!b ϜߩONmDucPj&cᕸ#r=!~3ZXңW]sw6"13#6*靐{3DĽW"VS yPE켮<M0Z/7ULƕr+@T+du<õbђS?TY=ūqDb.(4FeFX0z  ~WnGJ1*)c ne6 XE9I˱.msj 6;4eK'}/Z A0~µSaNl݂ "ۣ{6*@Ya R< xz uaN4P$ܮhO.B,/p)IW=C6g8*|-F\f]2 T$84H.npWj|:Ҍ_ +/1/Г(dPN D Ȯ[R^.{fZi>}Go|! Bb6g&&Lf8@W҃7OG`3Q'ޖȹ+O Zf k +fJ7.9^G`3.$#/m; %-?HmI7 g(J:@prn訒ˠPM!W)?m(~=XVm+&$T@3:vʤ:tKq"aCD !HXJ L]m 虔*~>C ŷ6a껑_TBNd:rCg]%Bs~X,KRMw/P}塴d-&k*!  s2-U Q#W i俆bpd'&vVߧ3{7B-emPs#éYK~nN #qYLb Fu[. Q6_znS O]mXapf.0n^'Oq>qϼDɺA H𴧧jm:dPPj'۶Wƶ"˨vo)2lڞNq-##<xBMup*F >h`4h(YerAU5+6&ř1Sf59,o9Vl&PCE6'Xq,TYϹ~Elj.t.x5 U;vr3R̀w8:(3M*s{OcYtqXq.M|K[Xk]5Of|*] l>{gy=s3i`JLRi5{72$XIHbYzfN®NS't eS./u-T;eDYǸ*cSFdG2-X̪ DKo~_"XY"FAW0+. kcO Z#,ja}|Ą ҈$lJY%F91im<(Ks˽Lfp]"7";G?sO'8ȿisD!%!Zvm~4]`1md fѪ0%%0Xxu&uH I+[kA'ƨFv1֯oܞ4/6J Cd =:PEO|L̜ FrS:52nQ2RǡE24gBm&CԗLU(\ƳUf8:(>#z:#7䘙(CT΃lO*7Kj tB;-$ジSIZi\OQ:IJgLly|8RO,s/CbeVXtgMDkW'y 5O=ʹ@6 "jb6y2eTѲl;̌qQ6' :!82=1:jәUOɐzZe=Xa>~'M6r0T]W$5s*ol7^#/@6h۵sLSfhjցpy?u LrZkߑ } (3mC~5<6] l 4O3 7'm>4_H_]1HIΟcKۊGw`ΐK1 ;@wɐ(R̙?\:Ρ%OIlǬȂ:Ip,!):EM=`Ti jdӢՌvaS;ap"I9E7F$Z,qL%W[  ]Q d;'Lĭ%pJ,$[֚8a 4T3..,8v~Lo&@U=Yۇ }y(% OgtH)l4PdQ#0]p V`\$ ޯl~ڰ;fkҎKv w {ہ8K>G:c2DQ_oHppGt ̬m `ԏN9G3eIep.tdEaøڭSHb:gfIeLwvKaPaحJ0Hu=3 u4~apT3X 3?aXokϼat6%`V(gh1')?;LHj;5e'"VN:Xdv=̃ YVgH`]k_$Ơ lß M8IŅmdBK3'w@)P(l KwqLby{m0?AƏO/ Mߟy90{uG[`.ƩpL<1Zlj@+ie#8eWCa^Vo7#4&"~4R.#%_D,b&@*q @g *_=MUex^w`3:XkUqOZ5hm*Ϛ:rOڮ$&]ו9{q~e6Me&x f\,jPI *]`7TRA6ix]0 +${)&_qz@< ld't5 ș+ /G,v.>(O͢qF(UٽVB[f鵦gw@!‡w82 72w;=cɓO+ACFz\jn+rG75wˍ4)3B6bC4$>\ F%vb(9`EtJXh^?u^u@i-b9b⌥NnO9 N\*P,D:UfyD%:9+-huHa_2 Քkrox'x7LLb;jH/"Koo3?9- 瑷cAeˣZ:{Χk:HLS; ,&4fp WdU?EV-U޾W9~ŌnfBK( 5m x).^,`E'{IS7&c/H~&FlwNWڶivCP([_^{̴ &0zO\lEE`9KV08͗ashdndKIՏk:gcńS#OL~bnsh[R'b]uK]4F\7ߨ[TYR s(5RZSKzV:6$d ]}.l w=P_^X` []0l,\qSTUi81D2tf Ad8pϛa DL hJ>QCԬ=cʬ|αeȰI-s YPH/r5e?,=%A>;үFx'9ۿ.Cb/n[9 \Gһ\F \>w˱H ~F:pϋ6,-~w(zhGbDb8+cС~ToUnET:!q>7/8k\S/AK^9ݎxМW[' yy %]#X;/{: O,j,T*-ZMBFZUtN0)՚3z>S|k>`%F57' ;\w * {_ Ѹ]Yç 澄𧑜Lciz@OXngu$7zT`xmf>7|f5qiSd 67k? ~M2!|+A"dUoAT2AiȇPٜb 2y}O^uYV hh8c,]u* 3v++a͆Y6ϭVVZ=%3="A[녦FzM=B# T{\- W5-m_Ҵ}/~wl'ƊpR)dsnNۖM[+)!Z W}M^ Ol9Hsh]5>6$D3^k+ ^>!Qv: ga͘`MBaiK`˓٢~2}>\p v5|.1dmn#kW92!yUf,%Wpퟎ&}*{VO@4.(T`=?=䀚'0`o9sY}= yq#M*HƫKLW>'K"!BL1Nn$#;7 #.(ւ::3YZȱO F.x8àROh;5;:t$dMک\='&`~yGv{`GM`Hb[I YhV,1#tM;}slO &}~# $ ?6g ((.ՙlK=LJ\Z4_jG<fBjl@)o\ <1,@$tPmO!ړ岷\T*kxjq~> st? l)| V-VY+E"7ȝ?/>^!?$9Okj仵|tⳆ]s@LpI_xx>dW(5&[8[CClቝo2gg ߲Al0Q+I,/69 IRQϒk= zRq=2 *嫿Bh]RZg xΫdr{WvPgBL]J*{. oGc,?z[k!$ωʟZ^mw6k`_XnҨ.I7/G%0hM~(5y MB"s|pJ"-<X ]9掝#X 0FRS2[;pGVed$eSSKZ=phՄ1[%aP <96qz'֤1m$ܴA'z2@VP0N: 4 TCɅ_ pޙ̳:^jU0m/ w@b&Hj5q CXry =5vJ]?I06jf%,^5VA>76ׂݥz Sa  轜Q0; >쓐d ̒; {ixKJǸ ~7`ך+%%@Ppfς;c}V8ab%|!B쮱>eUwW!p[A% ~0:"trM[yb/.LWY[?"7"(/ʆvDm{ 9=*UkIHH>;X=3ѐZ!Bʓ$>]fu]Dӽ.kO3,:h|^i#8=H;T5ωj E~RfC8JI:Vq$^_p<V(#dW0dW{5{:|i]M <ϧL#>#H̴)Rs LK3n<[o g;^IZ'?fP"M讻A;7E\}:jz=$7SPf#aT[vJh"1eêu/X?p\ymH+` '=6";P{X҈2Ҹ=\BYg~2c(^ctج)PqM6O o\a9B3 - 8юڟ'SN~\0槎x(NlkhN#'rJrGD`{H8R+;e t"d+kIxv=6/3mke]m &"ѧ19SxgP:%Z@r_Y,0.숍2p&\)F+Cq3rHO_#-3?$"šuq@@:R8eDf3J4z; Pz ӭq& W+[Ψȑ&P[WWjgf`\d?R4$եtZh.@h[4/F7 DsQr& U5GR}q..׸ksG =ıV"L "o+auDH`~(cUsg]'ŧ3f`c#0Ej0}^0=/K@"0`@qu~кsqLӄ4躦~bD|c j}tSdNRkl Z[)Hts"z삳6;d?{k#]NumҢqdEсR^L12XD/-s?;hdT>tz3%ӽ2u=J\$)4 MD3x0qǨ :1~zn%6DBfd':0-;\'|v`HV;xԛuM{4ϜcRT~+iqQUO~"zT.rUt女Ür\s2'kɳǁu,Q;lUͯLM`8vKky8/5YkFl(kzJ, )VB;P_i7'bTr9L4Lb]d~%2-#=,H'>Bopˣ۸Fw']nN #ƍɤ4Tùɍ6(ޏ˕ܕx.yqxpu/)e &Xq#ݰ\mUzZ߭4o٬֏cn _}WgK[7vpvޯ\FeDg픿vWMO^sDCsaf+$W:h )"Mb}𯚳q4\}=+V { 'x O0-7t^^w96/qv9mx3bJX6*38|[k1, C.7J  7 hS^#;ZA:^?hcT>Fx >-eIHRn5xrv1P N5%jcbQU֔_G+Svy2,FKi;k:7WlV1u LpM+ÊeTZ!}֝X_OΤO382y6/TeOP1Q;br4cE8;WIJMGP3SQ@O`$WFCپЮ`Hhwl4W-KI: q}74>7~iYujxdz(㕥S0ꤜ?l+[y6-'ӭT3M+-$ˀ1{.D[8Иe*PREd䁐EN<?y}J[3~X&9Eǔ!јEZBg y ny&I{Ȁ KP&5jWy5\F w.#gAmӒVIEed|F9mzOd@JKI+4UPo\!Xʊ[zuBz*k0 w%+nN*PރtyQO"㵹8X z0b!< DhN5|%W|KЭh}Uj]c EB"ϛ+ JACt,J/yɭp{Ū"'"0Aά*7$ c%)x): +4Ƌ.CAxSO>mFY] #ɳ׍_!zpl+[(Ǿzr麈kܸNQ*5y泈Em5&@{dFcbAjP?5;+eQj(3aTT*CP ӻ4v?z@*|`= 2E@aa?l\t2+#|7Q\Hi7$)J6賮C⯩z2Cho?1 omr gMdzu+#e, +Xߕ J6vꂼ#(<"ZDqNd)Z'8 [ЄddǍ1fjFͧH׵Zg}.%0[tikQiQ8Ö/5|D&oMEM7ZX?5o@q/6G_n{:Hx̱ƗL!G?_ƥCY~`f!pbe^AxWh 3<vBVZhK|LI۸#evBKB T/qd[@HrA?î3}ާEVNuky"q0<)*7"խ~:ǝеءJ'j(ߍW¼}N3,Skj0ȾsnGp*O>~ΫdF=] nf1mQ{pL{0 j'bfn"iЕmvJɀzrѡ""a[[tjל7Y~{Д6XvCӟYA&ͣ,B+Ȝh3IV񈰭z[;נIh)h}Ѯ!~~SY(b +/o<9tߕ-V,iʼnHSyU< C-P,;!d-QcPnc:TMc ~^ޖ.#"B_0l.jNSUWM) ?Kt1gYdG4t(_WmXMK-r&g BCKVʴE(jy$ΣIMnr*ubLi^Mv?}ǓB5SYY T~kC'跡6X{gQ<.d0_siirE|}*wb$ǣu.E]`b!Xz( C7rKJ:?Bs\475Зi9;B8`V]A`8zc@}{19zi .w[]2~$oPc qmmr;b Pm dSuy'<}Rl\4u5ܳ&w&J#;5,̟k?>EjMxml=fcowx47\bA$_?K`ث'|%RZ[)O2K ?x]GzXs32y_䍪>瀖jWְ.+ X$`F=\*$j"Pu4\ /CqL /^ɪGVEYt4bĤVK"*bPȫS] Ic-Mh^]arxZ7EG0]8/dlG? /RU \9kGn1uT~Et f ` g`Q;#A%外Rݭ8/a/͑ 1[/Q^;mda;X#Qg}Nk(ّ<;hvɁscjO t/ؔ.5t* .)2ιK̍O%SC7bm0{ 3ܡXØ%&i j:\K'Jhѫ:9һd(u#V05uSْU9r}z|G‰0@ٜu I^+L:1Tq6a34ş4 lA9Xv<>%J۔qY=FcW yeGUǾ6^pi,H#yjMq2GQ]03!eB%=D߉?fcl ]5x JI_iQ-oBC%f\-wl)T ݟ {#JΈe;I !l;ddw:)d0~ `vP0{9:#e';G{R'9m [Z|Xc]?O|:v,bUwj("Aj2'{nzb=dV/bHX=PzOt%0 ?!_O4PSqdP$ŷIL@6^8^ۅ $PSh߮K ?l #[C=H.qg-C~:;%9𱁎F,c& qApiC#Dj8H9x_q߰%naL&'|VTsa ~R ssf0֝hw]+ve$.4'qN/B(wK&VȽtn<]Is!$y #OS鈃, u\}+"qanb,'2%,z=_KPE>TRcdQɼ[Kڰ!1Tr d>]Qj; pSTM?c'8IApߜCu7 xu՗-V}D\OGhJ#!914fȟ4,`;wc]|ӠAؿ Qfg)E L'׭jjnX]cmYR 6%doBŋ@7q厲+`T3US PDJ~yYo'){ޞ~"%½T;e5~K&7s{itڣ}gDMɸ-k4''d9 4 d_a/(˭V B0OxNRSȄIݑ+bDHۘ=SY|{nںA}(9`z9Kf%hKU=@J;8&~`E5i T~WX'hw=g u(hYI/wU}}AD: /D6^^(rn6[ˈ#=ܾ-@+a(2œ5NKdN2CJ`z٫?65Ck ^8O'lA"xThV-5GdNB9:Ah_ʚؾvZ+ؘ[ gP})׉Zߵ .tqªwe+ dd[(L?Sth:%q E{fiw~F8 6!*oXґNƜW%cn5{s #X}|ٰ\zL}Sҭ :6)ۅ[Y,Q[W(^oUZ26ڵЧ3 aXS}[o\g[Pv6)gh50q@i~eD e~H:`̢ >r58b:[~$N\J =@5i+7{-j7R^aDtʧhLw&YQ{'Ѡo%dqeS>:9*..(|4T9#O7ͅle@Qq a0ԋL+; -iCO)E+n$2w0OEP \7BG{ڼ5]A5 zfΐuNBOF hzVx"nth_2+$' t9U]^h44;X1* Ny|&)43e+yZ`>G.=M?z= Ac$uCC…euxt~+p9sm&vJ^^cFiwB5yy0o9?r3é?/`ë~(3- ɥl_>Z YvVݮ߯g)4kP5ŷo~26knd6),vCW*\}vc:Nh٠nJՁ @u=|X/H vz^"n3A\ZQG&)iGów'6۸F4#w4R `G `-Y 㙑ǔzX:"eiE{V ;x́e"Hap1N\/<ǹO_lih QdMk,w(A)2g5TBlG>BT )Mo `J,Xne;rnz,bnMI)c7l䦝17]BGaKsHP4X*0*1z~~J}g&G7g]LbȂUM͎՞m:w/&_~/eGK*Xs+5`=s2{*l!mdUp0/!7*y2D)+4t5<65#*J܉0`ê](Xn@׃7#_~Yd*L_ZwNoӗ -}FƐ]̇֙ypMzlhd~vgT˗  )̯J@#uq\,tS`@_AW[zfBa\Tn3b迣3l/H>]$^]na<¶j'#(`cy<*Uw[*D.Qud|k2jakWv*xPyV9Z>U! zVN''c#N)6x-rjsDC*?S"uh֭ .|-$ ګgPn{ .'.Dȳq%i<=AtE9{m|?q,+3]W/K3Ը܋r SLAc'J}cM0_RtQ`q4@ SSj?ik]e0p馁xɮHf%\ȯFk+-٩ s1fY܌ʭ8Y[jH5EO941?G%0 i_6ʸlS³'yUjgxS>swn*v*ÆكbOvhudMcyHB4q UNG_Eҏ^7`E4 /qmJ%99-imgT1k7!o*)^UY3 lF%,}wRpmM.׷>|rt)+޿|%iNMdό%4/AVW=}NADv}vr' 虍;dnV`EkAf'hbfW+r8ǹ.Nu'_@`MBUZ_## j$zo7})+N*NRKhl$ճPYds`Z$"Fu!(qiEq\?#Ǵ;5I%g1C|}) ^q̍I]6b"n9Ԅpblx6֏lt: `+[d7[^uMN͗6,Iz;`{J˴}h17 !F>%#%^$\7|"W7)35#^eĕڝrM[]х)$j fď=(R%ÅGEpLj̄t}_ІXuUf}AK HcTsM,~0KF1i>Z6#ѻ ZեK h( -N%zY)(N'ZlXC ˖#H K!RUb&4RC7 YG},?JVxlWh@߹|hAïV@O %p&bV"+Ҕ yF46d-uNMj|HZ/"ۥ%de wۺ78H!w  "ʝLA+E|AFq5:$;oֲR %! evgeK2s>ch$ Dd%0U7d'&A>A_l]`9XBShiLZ-h?r f=I \gYw oE>@ UD[R!{e\eQ=oԶ=6Q 5 =PcJbNN^PQBXkTa< @cn Z%"8|W"QR~B2.|]p|@z0bjS5Ǔ2LZg%? Xh(gZ)#R;5ž@bI>=_Uu'Ev=2({,O#80knogaT%m S8Xs*3bjIAVcEM*DrCH9MkTX= ymz-&.1+ԁ4NDQ{h9̼~頶,.\9!WHQt~ 7QP-=Bx/Ĥuȶtm9N[SR0ry-ADO%:%Ġð)3()j.=1~{EFvAS7gOvi+R/O1Ç' a}Dn%=Y[3V~'~2ב9J!.| vNg\"gI&r:GQxIۙZ`RS"+:W!ˢ,;6+)6uU gajZgi.)lPg,+VjCM2 瓦 ]Tj; L x\ߒy6"2U+Ji d{4+tHe t65j\ކz1 ^!\spqWuzaYL(i䟂H] :>*`k]身v."Hו> 7`Џ~3Þ7~܊ lk$+l6'LFKa}&>KsEvay7l];j X*ma("MThwq!x Rk=UָO6lʖYNXMW /JP!^l!m4䎚Pb S#,ęLzьɿCGfr4!ys.m?kfb7 i`wVlI:) 5ћ,x _^%/I,J`E| ,FUH -̰W?;X_2,袺†0B$SXV=rj7Ӳ-;큢B$4}9cMЅyE/ Ծ+#8kS"+Hgڜ @Ô|$(;cH@=8'Fq3loC˛3`9@nNZ \};s MFһѴ G=:t)NJ~%q yy4]_'"ՑInMhbUj;{kM-E:(0]ؕ7콑@f+,;įQ=9 &o<3:e&=gG lL{]%F}nd{Mw0eIPy ~8q,/)ٽ1Z2O3AG2ah\.NBLîQm6f2y^Dv]7nIϨ#S0^ZUHP1!(L@N2Nrc*ɏ$)SݔLJqdmmT ols>XJP8; 'H5uFyx9a P]a xUݛUqkSND uA >d렸+(gnDhKp&䳣U LC|XmHj/ECx|G^lItub Z<.3V ZWf6OEH%׊<2 E'8fksaF,J0b:.r#c}QEmfa"M{g )F Q|:WMĹ^0d#S%S)cBvc}c5bX&-OFAAY4 `XvS5M;-B ${y࠮:% T_vyX@*0A,Q`SlMX(#4<7p&io+J}p|WNEL&A!崼`}O #Ep[!&G2gRvxaSPMZ%";_7ԋŎbf(czP@BCs,t2;*yl wha˥V@ ^7;ܩV]; bF)ƠGGI*6Ծ ,k͔:_87H }/&BVsh}*A;+&L۫"=\Rq/3䪜=I]>9Kuk|rW#_Yuym*ZAjLB[OS473wC/B1g&[$\)Q1BzKݜ8?sG?z)fͱ{zZzΪs{* _p߾Wvd70&X3xQW\l)i"dL)j>[*/y<'5 ÆjFʱ}ؕdct|:+؞JjŊHC|ޘ}[LK<]0؟bךw/1&*g4ٙaR1U0hg翻P,VDʱuRcM)Pe~;^ffb(݌d]UqanD>{ҿ+Db(`sm>n)$]IZm9A1GO$oN놚{suI|-‡o'bxM\tSF1G3ԯA4F> |$kp+d=(|/MK[5~=@+p`:o0Vx#ޝm@N) ňbѭg 9Q^<8m;CI߂{p}(Q.`{Qyh&ȬM&X9ɍ(F0\Bo _:RP+b YL*{bA@=&׼֦7F FpI!l+x9nHp6J>U<>ǚNs,'z{v+5vr3IF;( \fz6>oOhu1(\x$#h1D&]i25;? >| u>* c=Wj6_%+ oOTb*ðwx/?nXwN֖<7,1۾?O+ I{5Iuޱ$K(bȌ* d/ap+c{.CNu]j3 J20~tX:} M,1%5c;5T 4,8@b3эIvq+t`( I{@9ĺEM;Dh_2wظ'Nd '!6_V~;t;4C. :> Dlyȁ2tcNK*G:; 73Q94<h#jǥ7%|N+"ƷA z?es"/cJ19_n uRS%t>p#[YhRjw Sxӧ?m%`đ50%?2 :qی+ fQt:)I#fv+ P?6ѹBja$(v:4BD*H){\A;Qzd|Y?r-Tфs'Mo oa=Q#aM [>:0o5#vWiJ|LV;O0D2Vj;68a|WF0,R*V u>WL;BT,t= @H:Uu"M}M]a+}]ۜ#{2I:qkP"\H2wЖlSA ]?NDk5J?‘GJ&u+H?ߞ҅>̙[ (KћTT)R3Zgp5^\HW=GQ[4ڎaSʧ_ڃ<(zԤM/"GBJV(E4(#wxqhĶ;܆*ħ`BfQGbC{\_dA[Klc& /AznuN%sl "{tdZJ[EP9ȹsVmu>i?J_9x._e-ab: ^F\,r(cU%'x#Ʉ#XջH3(z?ݾdd/-|VT<,.m2(>Z#L@5Ao6jS&+ *j &,klm^Az81j_jQ Obk;kcѻ9 ]Zo?=Tq"*MYKu|bK8ZF]EɆ1#G1\r2L!8}s8.o hԗ6/n,X (p*j?tЦAd.栿z4񧸓PF ȫ V\sf0d?|+du{\wJO`iڥ%չ7&B*11bJWro]2jNEcmτKn[{3;QwK{НDb9 C+pO9Ny@މկv˭0^ඡ]q= ܒHL_*㼜dpߠ|k<[APr?\圙sLnʇ{bH!k='Ƀ, %wF<,G͹-ܼoB||v@[Ͼļ-,P~^@h|rSwɏZ;\?Ksҋi^ҵ~ix-.|N%€_ qamEQsoT;y;묋Zt\56a8A>:zwbSw FS6n͊VZNV䜟vm}3BDXK9 4_ 'd{GkcfHO]/9tNif!q{.ZKkDSݍrL9="X_bs6 9i>$ 1ͨb7Vsó~'%:Wk 󬘙(p@V 0(=@kP#y QR+gK{'f z"îp$4[ܺ$>A/Zݠ~`Y(Ԅr!J$.-Y)^3^ιY]>^Lx.-uS>a%"C)RO*Ř4`YxYoc| ou/ӬCq'ے>ET2A/bq+ME=ѹs\,g.po(5k~􇼢i182H {3erR/Sf͡1+޳>3~W^)劀Kh &d'.r`)P %B[PKzR6(g~ H53ٲ ߋ{y͜1-(jQY'X DHoTD.yAwXux:wUʎQ4Ī? k.q`W (E>4'l+So0y/By ba5nHh2IB/Nw{+7(4%e? hW{?ݶh[5;g]뒦~}gϠ!,P6M<`𫐹 x3 .H+f^* }<+/D[5.ᅼQVn*u7ӚW"` 35"E Zhev,%AĘԊy1a h*`y.c[ILɉאn).'sbא^jPch`[J=,1i,?la4O!HVڶDT@-Ӏ%72S$_؍7vYo, Jn ^S<4R򲸨J 3I R5V*v^rbf.l91Z`&q6c%Z͆1Gޏʔ*NcM_1($}L=;2֟1mB{jX{Fѕ#Ym? mGkw?l q0vZ|Fp~°ݟpy\AqkUEq:!wWiqajJ~FejY :]<;`5MyMNנA8 R#*S֐>VWzgۗ |6l2Xӳ4U6c4aY+whȼH%Ņ$:m]D烬Q7_Yo>c @MHgNӡ82u"Қ g 7Xr)5h-$9 w{E~pWL{gC;c٠QQ|5@-A= =,:YޠF+L&9<6L}Fe^Mi}]M9ׇa%d~}((9m^ɿN(T0 C 8ZɌw&:f&X˷uڭvL4#t*q *Ց;軐aF,!t7v/tzdaky. @%tCeユZ5ʧ41# +/i O,gA{ D x~vx*Ӑ7|.%)M)H`0t`t.{&qϷ4II:i4j*7Ɉ^<'0n9n[ j6vAvPm&T$ ׏H9 ?LUE4[=*N/f h<i jpJ=Th ª~pBmVMú0f'1}W/UY)ȊZ4So ݤ7`1ub1Inݹ0Px+U@H뇇=X Gbmw?}$(LK.c,wcQZŐOwEWTg̜o-9d+qkɽ|߄,z$f?p,H#&FنY&ML,i$1P(fr(1O>+̫$sJϞHE"|%i1_! 7 .=74WdgJ?* m8t?V:AAKO~,M< sZqgMPGmh=~DqbO7.xq i\i8$Gq~̙fG;ꤰ0cYjY|dxk}?} @qz\Ѥi}#§`C}T?%S_YrDZB6b/v([Ve#R`׉bExSV(DmJ[Ab >|%K)B,4j']GmRh&HЩ-3z:ZvoAv8pZ2(k&m(7U4U\ ]?\vGA:T? \Ol ̧&WٍI@R0`~l _}HΚQ>ɴÔ,=O[ΧVt̮rQ4o$̸ޥ88+RWlfR( yFL6!ϦuKU#N40kpܗR4S^P"cVu禆8}FXY ˨NGY $z|s}vqsWJT9zaR[ :tA4#MݚQLk3iK=0Nlid[/-2f?1M'Lktiy½\Z_ %:ZU^`Y忧 kS fʊ 0¥i8-LNjXKa2GN1TƊ$+zg\'ޮ?ݨ.'U7?Q8+>\:ċQñ)kN=Fad4h^ {xQ&:U@?pc] >DKkΥ1 xWiL%H:ǂ=ѭtB&8BIRxP0HykRRw66 jif;_Q6Mϧf6V¿VLJC[{se1^.e h'I=ۄ.i&UZqE~~G( ^nw8pkɚD @ 5:bS{ʾzZ@ߪO4= C*AlAIRqx рd!PZʟKdr4Mco;dmMɻNzW1~E-@&Z2`uQX4PzTloQUf:#-t% Ks%Sn[.wG 6*ɆLJ/ܥ[r"ݞ$ k$ޓTMsCFWĘ}' MkxA>gË@̛b*`:nn>0 '@M /T9i8ȭw`({lwa>u/i6#JnwdZJŒy _i tK߈h]uvoL3qA_g/•R?҉ ΐv8akWTiZ~ͧe`]/zNAX!>6: z6. -P2ЫMڼ}ǝnj0ΊOVn"w Ȫ <>t㹲&Vڦ ,NqfRT|E{vAgQLYd>ݒ9q_c(f[5[L?;W_B?Xud򕽢o~ aAvqt.|kxo)}LJ=OMu^nw@i_iDfC+S3.V٪~kǥЀ%vGRGQ#?־*ZAkf`aM1iQP\4s*ed{TjGy+倏Lf֝m{ hW$e$]߻hroCc0ey5Er_Q ]-gba6bge\wCPh[:|w_ف).{n-sq@Jݝ:".c+pQeMz` 筟`ֆ䧝pdG ph)y-~.wi=շ'K#`:(-zdxZ49oý(Q]x@ 1F:'۷oUx\6ExU,.SυfGOWfuK@z]=VuZn ^^%Htc_Hξl; `޲)Ke-ݥ G iPz`~I;#moQ.fW$v-/r0Lh,ׄCvA}v9ElLAw3؜NoGLm vWyfN OI/@[|+49ce&2&L Sn>$q[C2debAZ}f =}b3u&&vRAS'gNģiiڈf$=O2aFs>*.,BLXAx{i0}ەswQ3zc/dXJyC 1V`;lDIC=:x~phj7Sut@%ݢHTĢcrPi2el3 ޴K(kk̅:+ z+Ƙ]ߌl$=í]K Rlc6l{ȢmSII9g:0q+\ I+!qieՉOr0>ʤłɫm&& (;I˞`8c Tt{ͺ&_'r5:æ\H>Yw+;KF1^C(FPSptXP]]ؼŘmF KI kDۧnRYܮxAkw# T@^,&F[b:l, IW U~6ch[V?QX*;lXY蘊NGk@#cN'M:Z0=F llĢxuw;n8oD.I} Ÿp:v˛9qڢ'U7"C\"u O|]oӻ8iPRI|`)k3P/B?4cʄqFtP, lJ P8Dn. Dڍ'/$9JşbT pFKt]stp*&E#7Iϸ+3t*JyoUGdusFya,N{z^I(C%l[@IsOHyj!G8?? WwWs +”3}-i=PL-903q_mFldo4UJ+%0H!A%/S^jS:ʿE (Gs cy}i@Ղ0˃qFHͪU,AŎu.Y>9K i<M=+>.\|*JX:#Lhlg0~ ~p@G͂ 3"n7rYi)#_JF ؐC}#xP? W!ApHd kOW!8 ;IJRi;AN'<: rA42d{CJ*MXRc~j:F)2ҩ6Wsl!Ȑ쨦8%}o3\.8= ,ը7 ^GdH+M {Z5 /j VGrA:AإXA`k~g`-Tjfr8pڦ!'ڒ[nw8)>QԆEb %:צ y__]ʌ: vȷ打tzUӉtbكg@(vCYy2тr|(]/.2>`f D?+g*.0Fr #_՜r@2_︙{Z*nI:sMa@}KG 6$Paz4V\'(}M݄V%~|}z!&s1jE&D{w(HWnZhDn*mdh@R66xL{<˸wP%ne͗ 1>6.!@Z%9-X `'?4- [<-A f@W;/g]!1elz'"]30ŀίFq])H=uqجC}IpҍrgQ3:11s$+0tYqLzbڬ% S^ uX"0c`oQ Cm٨"%Yʔ=S#ͨ@$1oJ^L#COEn4MYIW@pV}q8n6P+>K%2䝦VSŨb5W պcF5!lF`UA$I $2VDmsHnGuSu vh4{`GyTgssMQ(ej,cNEqGU]K+Y%4,n5=(ɨE 5I-2 3d#WBl2ēs, zirc2,,;/=,AZ? :T@tV2V r>r"ntk8g+P 4wdb*Q}И;/x'C<^ '1f𐪀M@+}]"2D`.*Z~}h&_H/A9Dtϊ"Xr5g|G^^ 3-HV9jW194й#cT{V3 M=%f@yH~JOqط[)aLoh6ז hy͞Or\eI,/ᚳCb1>n S ijS{KF CAMoɬTWr5*fn8`I21vIG^8)4g:gYM4~=jt;>ߴnC8qg׮_G/VaLld!^LՄkptObXYh G_o)v[{oQr}=d,yǦ5?ۺY>swR# H'D/ݳ9 B"tZPE B]p1bh?Gypy3!GIC}N_iD\=-]$Qžd% |g!}{ ̶Ke`D V6Bױ]npa3=Mr!K0zHȫ x@=*nV<kP%Æzj"O\OWP>*0ǖnf ØA'偊A#-صhڅ>kP pPӋDu{pӑ9TǷ-g u^\ ͹ܡ0Ib@t"=6 vq!/C !sG}P-/:6c%Ӝ9 Sr|My+a+_P?B'{Of,.BBƶ {J؟D? Qz3!`!!Nio8uV֭kRb23V[=ŗ(+nj6ȠB;s^+!u/VWh= "xᚨ +9N۴+:0B5(,:6W))C\?/7;Yyc>?N EJ@$@9fu}}[LU3qi]b3[+fHdu}t-RSD R?|8a(0zR1o{Pbppea)A8B;7矆PK(q1 lMW=r-4{ 䝼I9ʪ)38 {1owhHأO)mߥ]>: *BQJ8LΠ#">uՏ;rIM{) W7Vt$2y}z"iᗋjUD "4ŐAڑLӢ`uM;WM,vI3`2 Uph"hXe[Ǒ; bkAUߝN4J\IPbu[Zc1Du"7">7 "yOEp##FFH++ O VżÖs]8z+j7!X&|m]>ؽ VJ~3( 'qqp4+q䴬N! 87bWܼY _L$sҤ,Wvw XΌ>ktBf=oG̷lǚ3qKypHl0Ajy~ (ALOyځId48Ͷ_V6F~]J9YFF26ˌ |`oh`7/v~ש|MسiwMn$ex ɕp1Ԓ38ْVj\'7tyH_^-̓ԚnݢJU &xn3|+-__C J)c|="hϯaGO."1{ԨbuxHk/vc]5Nu"A!;M4U_hOĎE!`pSݷN9V;YT;bG5ԃj&¼!)\ 9OFƹqL/[$\F|KZE/3쨨}#AaJR0tkm{SeZ;> ^&Q 3HX_ݔJLpS_B{S0hěmbHvÝlًT5cN]~RWw9R2# 0d>j%t!Q0|2D}U&+`k_ZuDf)g\!ڎ\Atq0E<C >}"QRm&KƮ~!w!7R+'s/8?'?_Ebj)"PKduMIټm2RnOL (+gSR~)  p=,mBؿpXPMP͢=KZY_ZII/|\wm-2ذ@M_8Ŋv] >xV|a 7bHS^9uDWuT+'␥"w"BYj$ 뛝Z)3Qo4}.-r<~FNk?$ή9gx ߋʈ/(&ҟ7u7 aXj ȼYߙhwnÕ1ʤ 0GszFabRje \4ob٥hQ7M^Sksֲ_`>2<2p6@IX)ZR{Pn{>4#a)%2+Z-iya5}&1&$_aw)$ccD-OJ@NK[zwbQٲOz*樸xht)d >EhQ,a?\#1=}4b:qd_)X_xvTiXJp: 7DkiZJ3wUϱ|9Z][$y]b}+d%`7ZSӇYtސ:ZpiNOtV9lxzu(K8`A,m]v}~?]D(=2BIv4/s53-UJ5ozΛHI )U~ޤ5TFԒ`3nM4LiH$Aj͑N]p?OR).虐E7{:QK-bNl$ Z};0t825`x< 23r |kuI45$L3ALMJXpB3@ ܻ%|< J&  1[}QXYCv&#n@a.!S2bh֋X|AQ{SXufߢ'嚋R[-AHRx2n8KUBۃ9kkuy+ܺi|k)FJgW>@tFs6:+x$M)=E6% -i6Udr:;?v Ps~Vn<*$IYÓ:SS>m5Q$N#9+f WA27Ŋk3W ̡h,wqUP0juRv~ 8*_n)ܣ.Gpg[~ }13(48Â./Nk*M f{_qZu0btC ~gam>knu3nT ZH6D"[l̢$G>0J.tvwqP.zCi%?5Mhp-νz:!ʦFS.~׊`te8oZBEf;IWQPb[ljo9pxdI$$ ǫ3MVܹ5o;S /ydB498=yH`5͇L Ҹ5P-V\0 m`Yr;;ۡw/}gFm%6=wd{ZRǒaH?ze~T$=f!vp~mh7d)T 2N ڎ{{ѻڽw!s[~&䪔a/+m7〴v6l)%2PGP cG`:ꄫVAsAd^vp^jR¹*\XwTgPJ~uTd!k $`_P꼗ºB}r[dz̅\ɪ}Y]Ψ=fpw.]-2 B*02һVɈ,.`x9;s qE¸kT#SN5쥆GMS7Nj.9S;s6F/j:eIl;jt[T`Ro!)ή>P2I3n9IRf2Xr D<S3loCms%gϐ`6Xb AHkx9><6#(gpȑ6'cC '8ZF[ȕ싢S:ӡ) gS͟_MyRh^~\ƎрLƇ{?3 09X2hU4ۜº$b-th~@T N+O <4 ۵ipdnHRЗ@^}9Zg 9 e مCc-qprUge;dQKKw[Vb5Q3unqv:O)2/ζ Cv% w];ѽ$"!qfAR#.$ǣ9+N؇j`_?TWCrx̕ҕ)"*8B6sePeg֞VW#A!6 I:#DW܎ NBUc1UKR%˾M7uշo?s-H5=Ũ n~s4P9 ]IqF '̃ &H?Ӵ0bհ>%fv-5`"^b:J@KF\("\Ј$0jy!kGG,G3+irP\j"ͳac{b9W(,Nt& HA?#(M'uYt)G^ ܖ?k0iG#x;s1\aۉ$55k4h_S:d,z/Ҿ)`h}=:2Cp{GoAdȃ.;RҺH<=nXryi1gRH@o"zk9.% V>|ԖJU9V7C5[E//H贑l2zv#8CfZ:o2w<f;B"V`@3B#bYmqZ:nc ʢ^ٙ&kjmV0cbOˣwk=;#w=^3eI<g 4;3FhQmeKls%.137%S6#Jj[Spaedq,Q:e)Tdp#_PŰnc*ّJbfЗ$Wo) 9%͋L*ᅻ@8lgI`TMsZG eۓ[~E:H8`FhK%?I?zF,y= Ύ xD KG œʔjX#$)H"̮Ej#YYQ$+F8g3+ri(piq-*{nS1k3rw ]4>ө.rr]CUQCJLoL7I9ۈ+Gv5 ǡ|CWu4<9 nnx_.ɭwS#ěc G>:I˧ҏܿ&)!C .JpGc{OɒD[AÉ&9Y/hjG h˃{^L8|o r<)4Oze&].t9C%N_ܘMr4o|j":!D@[Y*M@<*Tռ XA;7_Mڅӵȟ"|ws3|V1lr a`Hi4 vR ,Ƒd߯]S-fQawoʍ2^TV'͑`w/ߣyQ"oImȟpʴ@fd>m*na8@wFkIs6QBDn݀7k:.F =h;>Hm%4]ZSuK̢ u!}OQrL\T}’ T/I,J$H퀧@tzhN 't;NBPHLF[̠6ǹQۊQX%-N/Q5_NPM˛q}yy0klwO@yEz XA1L޸a02Zuo{ Z, آj72OÈ-wgYs*5rRe*NҺ/0!,S:^tҺ$ R=qb{1԰Cfۖ`2;~X/A8ƝgM=_6(eˎgHz9AJ ê]GmnO|ҫZ| KfgW`!OOݶv?JZXuK~op6)kb)5AKk9ὓ,8X$mhIEA|+IC(zqF,9a 1f:ԺWVoi)[s\&Px<:BK Etx&ғƟl͋~)T$x#,=26Fީ^L~J=j _mNiU ׷[kyKgM9aYnXm)N6 ._N,mAuab3f _R*A"%NvJpZ-}8DP׭wQȽmlck(NuKM/Y߉E\ 6|mV&îy&a=5q5uΪ|Z<1Vç`kYT.%`*6*C$6ܐ21UWـ] HױuWZZKCdY5Pn90iW`KAR$5VT+g))\R:yWlUPR |ԼMd5Wq'EE=v vbT&(dnl\nW|ٿUػr8X9t0֭s7}3~b|2x)ҫ޳C?Ow\:2r>'?DwM1cPY$r-K|iqjT ڴ"0(''cWAe 0U9S (On0Qs4\' ƌ|t9&|'άJn@ϊisWz?tVSWfiܸ BDOx9&)r?@qALI[^.ܽp>񰏥fz{үZK-IpyuVxI;{אN=_\Qe{[v ԴY֛O-NJpJ*^e7pЄ)[Go^Z7u@䞷'#*!Ewofr=!{ܳix<Bbdj77x]R==Wy(H\ƹ^sR՝!\Il7,!^SIx})(Xe->a6D]+Z;z Hm'NW-p4#^K7#w NL%ɛ*16^bu ~,Mޡ.WN#fBBG^ j**JR RR1\lB_'Ɏ]dD-Dy#B^RGPvJ2lc̟V ,X~.2 MgbF1LT"ri^V)bms@š -lY{ Z2֘yÎ`hJYڋ+g:Ǫ*iz}R:ڀ7J5,-V,*`|An͔Hx3/{~:tc=3:}ϹP\EķҼ?9u2pS |#JE&sz!s4&[h\79 rF1!d 5l;?rV< o){:բbAqk)jV/#v]6PmNvPc2JtP]Ms>.`Rߜdh[X!Z+!JsL-Vj&aSU馵9e q̉:Ul ڑĕ)j]]Ѳ w sc1/!% RLoGJ4 )B4jRz+}k]HCM{})A\]šaئM6c)gZߪP8VGHhJGj3R Y*IJ~,^(@9䘥+j`vt1sDjoR5瀅oܒ|r^mv[N!+&U.$\(%]YFٛșxJo Nz|OvWF@ PV*s~"]N|UX# ѓZ*MjIE7L!8I)6wK^UۡPS[t .NcB$$}(]K9N[+RB`KimO#+ۗShtsjVW& K|\|,VXLS@ogooj\a +0lTE lI 3 ?̸&{r7?[QTVm8'a X0 yC?+G)l;*|HݚA^Pm3 ԋ@v|,AZ(ךK7$<JT1C]Tu>k2DqV]-t$PfsE("~PSC +es K L*8L8f$p3[j!D7%apa[y⑘<n1IMDNމ:š=o,!KɁﮒwЯ(i,Qzd >>tpz%ja`on!*ܩőPxύ{\%T=ߤ[3??3fQg!i4 8C?gA7]rd7`4 '3USF^kS |!rtḙ:& wԞ{y#"wM&nT..^ԑf. o%"! TZ 'CD(׶[faA¿+O9x'=O?'r]꒝cjWqih&q3YF5"|4eqCw LB9xb^'R: z ika!6?Mo8 G~Ԛ5;A[w2~~ÐɆBTY;׫p"_ l{Or6sESfU-$yوKB5Y9ZSߥI JE_n, ;? lPl/ػ@=W戴%ٽ…lHzKO[J>'fgK([=%ſpe \XzRFfNrY.&.䍢&Ν8&D0H{7vG^dtk#[@eZH={0}e>\,J@P3<P w⁘ r+(36I1:xH\kz-Lo`IlT|!1UJ^}iClHD$]8>ɺ;˟^u.vYEOF &цo"_6ﻊ(IVQ3.=q5xc8ꠅ@ZkS?JM#ms2,}u,6W~sAK'zĒ_XVdfӨw99 (Y׽j1Ÿ|w??hhUY' W1B_.ڐ/KGp8q|as %N9b3f2/bft{d@Q M|zi Pd'NH&GJ3/40@qi*rt5*' r+;iߝRHt*ĢѐظǪ%?i^ {K5k51Agȏ9Z}k:]Tf6 ?Y9褥c\g^16^PPP1Ŧג9HyW*`Mb,U-0DB;s Tq|b{)" #jWSt jx+PlXݽ(hSTl Cmb @.48=~wI,Ce@9vn^qt>I?ܗX_5X"S® ܽ5̩[?W-<{|7/ҶTfDGmhEk>'m70_|f#+20\y`܈ۥ郼)w!Rob-7jDфtE4 M-~vyB%!;vKnϿWM=`=%INFDu% YL~Aǔps@<ĸg˔a +VJ$=Nӱ_c/AMv8dIV$]ĚHDЭcWBGr3Tlj͒Ӟ>ѧb$p>xY[alq= EDA;ڊ jSq' B:҅F1Bm2XH-F4s7 RtΪ _@Xec7M\wmG<+-i xiA'ϬYNF[,u .V5}xPɫ%2؃<+\ o"m]YoK| R*נR<]Zcf#K$ ‹2H'  80ML>"Zی)7A̙G3L2NASp\Gq2{YL٨Wôa%]Òᬿ))W3ُm6#s;A2V Ad6?̶^!4\7c֫Ւ 1Iu x&n o8o8l\Tp &*Nh!71>?6w_tbcz9j{(A<X1m09ݮlЉP, x!]O?j:uƙ0Zt{ s}Thr 9|;Aƪ=Rq溎.XD do=rq0MdZyi]Runq\Jx ]}<0.ݩ `nPLL-A>lB )p8q>EdS!/jg=}N2$-E+Hs} 6o )3ܪRjotE|]M\Y:c2WS[-kxaUԮ;J.[, ,V9{FBo 82SB.Do 2kGu\9VW/XI昰/.]wڎ=G]P dS 3  c-#JPw{/aSmⴲvM^IMtJ[t -%A頌YEet\8xe!uz#17ہBZUm1 ◪Q~0%SpTD/ f5U1w;)s0b7Ż%Nj- }V!ðx`wK4VHr6w/lXxmYy'} ^6qW]פZ%Ɣ-SR |dQV]儞Kak%ẻ  ]7+wd<'`h&xq!9$ӎnӒռ cɱW+MbQ곬UV ۯ jğ& H¯^ZQ`s:H(YT* v ;B #vϠ90s"|R|F=fDf|ka&*hR8|b8LEd jmVӍ @x1u9z p*7'!uRכv-~t&kc׿6PHݼ\3X+ Ea_x QK,q4:_-ocgX84ݡiķrM|iDK* & dTx pN $B©&kI$oBA)>0ydt,炸") 1 ( F wg* lh&SNBϠ )ay F&n/ Lqf( H)[QInnrE DW}%GR?R[#i>%F(XU%Wխ5)z|1mӃQϱi!*h",4"aPu Ni84ǻa7E|X!Dg'w&+VΑFʧa+>C{y1J(O 4Ucs)6ħy 6:FV-C)^Ȕ7ĵ!"Q>.vCbM]մV^xGUOAk?=RvҬ}q4=)tĝ0iLKY9ʍZ-gq=wfmj'BBz_ΰu',$k$A4vJV4b,/gp.KZ~mxg%[9," p}=mXA>TqNZ&/4ǫ\8g/& Pa ax˛~0hR@oc`X: 3Bz yHuGr GD>;ځ#W~wjM $f&Xf^ު|DgkeDk'VI%z&UlRm=),|s%_=)̛n¤7Լk+B:Fgnd@R;*-"K\2?5%I?QyܶODβ_v~B CcFřfqۀ:q%ZC%tk6'WRA!<`]:?KM,V .;$!%e o5D6[,x!;OiєƑUmxceh_rLeͧ7do) yݍSQ3]aMbz0}Ko W0͂;mxfXKImdP"bB9( ' 3!M'%\")U"z }Â̚ 3V=-b,.w/TQ~/8k5(#ηjڒJ]O˰km:id@u{W9Xk;Z.Dc֒C=)S[*SXն(+Z*b7هLq2.]h9EꗞOIQ/az-T!(H𧋼;z~ oS N/)diJnrJ}2]}6}R(n X{~n,ї7}3Ղ#c IpO#a#e݉lI{3 ;!n0R2d;NOVב{84ɧ fg*28b2B#U m> [.;PW7ѕymGOf>YȬf(Fm=OΧO?PnUDU2uV4}{_9\4y%V'L/0{"a8.j=LV1h0?9pn '_ HK1Jb^q}wi+T)+А,EȈ,U܏o Nl]LlO@~(65^}7~]n.%NƬDMIl>R)/ms ~bFujB_׃7Mallj"{W)X˼`"J \H`(CYk ȰY(M'0TPs3 Lk}h",9.̤J(џ4 Z'N O[yXi@*^ !?0F|CDIOKfῥ+`ijva&pr)R-}S _T8>1+G8ҲT+B(}Le0I,L 7ſF\y6B$󡬿Z(Ҟc:<bN?{/ DS{$_R)X@Mc0\]Xيj \&͒ytl%Oя\LYk_#i%k͠N Zo$vM-&'`Z]U8(wfH ع/h\[{1HY;aP"QnڐNc/%impK~kMbte^^1N(=EĘUZ/yQVG"QK`ۗ~nҡA[sbφ!,0Oy!gKV J@r)^`̳jDƓ3(8`Q BZaO\4LJEu͙T V;UU/Em76, $`o6$vs7-Ƕ4"KG!QKxKYZ2z. z!ڈ&L r\mؐa $zV-ל(b&+^?dwonC&Yf a0XwB֒l+*@b̆o?7wF!sXX  # hدtɹZ B\l%z]MuD>SI>)D+MKNuŸ̎/`;g/iș\i4#  \˒%RVR 4 ;z"n*j Q(9%Syzgg۟|?)̓g.ckH,;ETijlOBM{KB@Ȕ^KlYAW1,eP ^۶ "9 V C1:/7PP 'IN_ӆ7Rik J^6j6 :kmu(G\;8w%'u,vA4Պ|Ek,i3#Y R{bsv"Q-Z iBp+*ve(Cr#E<P]PM6gcLac'FApoʖ?}FScA8 (P.5`J~_YBrx96o5^{ogG~f9@_P-4e ɟN?)hufၿ=2/xZ6WXk+!&~Py&%H<>x>4<Ҿ/_vu3\;e-Wȑަr=L M(3DrM$}A$}uxI+JQu[齏YК^:|v(I>EPy4@H5ŵ7؁ Ay#tAllpF!Cz42Gq6bй}D1EV.-# q{9-:tq lOГ|=}4kw3fJ"ڜ(*xāS%a;nGYVXD%e (KN%: JЙ ch"ݖ^Q{H챂U12B˨+٣\;wuԂ{`K1̟]?)-m6GEwK?">嵧RU5ZVy1ȯܡ>xUp=~TM6_].cjN=띯hg^Cؠߡ7HFmqn:ʍ=+~n&߫[ƐkhVg{p*3n#[ѽW]OfA$D~A%~\VU(CxR #dOݐ;n}Qnzmۈ1%}pd2Ș?撫*\,VGEW%yEh%Y&WVMJoiHl.;oyOa|؁E$Y C0H}g{˼+C9© ۴iۊ՝JK-ןOخ&Uq7By\}^dLsWbl{Zec4x@rJ# /U|+?L~/=dKyMUVJ a#HW$P4Cv]Qr:a+2 q=e(xGt'y0]30bp :.~g"Š䠏QZPѕT6íwV-sL֍t8/9>ExWg4EM#%_O950Tzt[FTγ1L* RCj'eW_5= V ڎT?Dlb|)y xO&P{q[jf(CXUC.HI̍¥ w>߭bWP2)>c=ui̶eWX>h%x^uɎ ~ZS_d` Ehh ]VE<4_B))@H)0\AQ((h355g8@g/bvL9;x+BDO;wO?8Tҳ%Ұm$> zY5Z(C9ـ1GkTrwv?fgFtZ#QHjg-WqcrB{/BhIA _8jf~bDžCƵ/ᘁti]rk0oS̼ v К9'ƙ !UC).EPۓ=ؙ.&UZjɫ60yJAmtﶁx*ՙcyDyUgI6hp@_(7RؙDx뻇D6p (1@C-;ˀ/_'ch'OFf삶\+jZŸ-7Yvu4?0 r\ @&y=(]aFJi½.SṀۙi YN9coJPy(Bl"o'ou9jDE:Ue]p'=sy^Q2`yBϞ׺ yJu6s\*9N*jm6 Xz/[ <]Twg݁l'!c-RfU eWMw1oҠ;I  CXDrwTAl~nĈ72р8͇ҶH# Z_?rZEkffFb> <G29Da\<+ Fw7aINEZ[SW9*'݇ JAWGjZYc.{b[?xa̘]F_CUj +z<;^1޲o[NCŀH S̊9n^jMxAuVE#⚎旨^#J@wo|'^3s óFw$P'`UR {?2!˖u( we ]H}/J53Ҡ6ObF\_‚;$p^Ϧ#~ 'UÆ%ˎCemݙ#')q6: UezњətSプno.4[ v ɘEX΅|4:陞P. #XXt <j/7:H?,ve{H 0-, Y RSQM"̝\6~GV5|@>ybNLac׷W?~h$Vf҈Y= 1 3鵤j:Vx}He8Ct ;f('<  𪡤4|61Kc}:w(!+Z,$L*fރ5~Y:Qw~y 5B)ۍw"X] 0KtILotT=ߓfɂ |^kJԵF|*yvt,1MѨif/CW:bϭ5*sgd3vl{x%(i@.lGM Et麵K&nlbt;CO!aq7Š6V-Xq!m:ٰ(llmAKwS&qMF8IPL8x@>mc~ff5z[#%^|&{ȿpeӧDcvuodIH!S6xbȔxߦcQ_7c:̣Z)QxtԪX/1LJ|1wr 2:Uo)8[zj\BᆸuAV3d3s)dL>>q?<6̡& <29`FJWv"T"?HLEu]Uc~y9ԯeuMB ޳;2r~;v qgw,(2J})u8IcUa%Kg΀nVB $zc?N^ Z;.Ygbg7WM*>NLk!A96M|FBȹO A{X)@: zHc+*lY/Q9qePsʐVe*csiX;0&vÚ0%.?=F@ NQdfA/#o#3y. Ig%:)]Rxj[FY=zj:c`:޲0Mp?T $n4bd a*#>4W;OQl[bf`b JD?ra} *E,2%>K?Ql{nw_w^=G aBnHP$J9 K'egeS _zЈ`i3S+p t.Ž|GڌnXe%L)AWJqK]:IfA e5#܅|/x:EFo~FXL6yYP`I!},ٸ !FH„н؟Ź ʵOBHU ߗ{"7 sIoJi@7Wƃ3eݡjp@m%Uqո4 +݊3w`i>@C'@-nRy; *tkVH!Cg6} +jIhl!}\ 9h4uFT`AjcK~ArRQPwQAuw˄ U\sۅ*:Oh،)+َ\QžD%W B:sz\V!(',˿)ՠB\soۚ[Cki<ź^8@Ϙ+U6Z6pMܡx2+z!pcH5lZwTC,X'XV-Q+A4ClT ^#om X]\@R2~(cȕYWИ4߂F6eޡ zu SIUR%6m8'14r"^ *1A5WZW8\Q:pl~;c>8ͫO hGy#|(kE4e55&QW/#Q@F0fȋ\[t.iڞVt,ё$0fZH++A#tLL UiɝQh.RQ: W*cp<+ t^^H,)'loa kqGs~Ўz`!l&>}'g%T3C.U"s>ɕ {i?u|*e !gQ7]%&lY{ X03з_ʕ^=e,7vZ>xidq}DZ}MYȄWWLx9 k~Du֫k>S)Hf4M\:q)-sg G5 5 ksPZwVv97Sw` 9ݥyS9Cdb=\HC1Wt,6لEd)$c:n zn g} "4GVKz(JOD`_Jrʌ>3Ab\d]ʾ\(E(4+qC9}SJ5Ug~@Vj3dob1 2y]#!9m?9< 0) jܾi[0LYm:6TkY-jh"}/W 8F4`*4{`^3!B356cB~OjG'ckv=2f0v@&qWh, 2 }f˪G!^lM~3ue`_ɫ#0\BM#({uNMQLk5@Y (ɥ˘%7c;CTкutZ;ߛ())hjޘ:cT2湞׵`n |;⚘f{95ΠMx[?{/g )u hEGF"Y$|8k RHn N5<8 a=?\jk-+C)._5OIDԎ;0זʧ-[!v/G5|@U+VRQkg2ZTYbn\'?$X8Ae=s}bkgOc$7Ex\3g: $2M6SaWKLnk⳿:ⴧuy'nV}{QZHc>.CT<,PKO\+0 6^Hh`Fq&TzLw~]ٻJE_q#v'qR;dlCQ-Lh\bD{(:`3#Y1Ķ8H32C/T͠\/jE7&8t'6oK EP27rO38 }ĥsAUYl"4fwlȚ?rsb],_[@gϔ 2xt0, [ lv{X\]xȠ'CAO7ǮQ7 VT*w }J04$ȿW觛f%YWҧӧAH*Q럄ﺼUD׈ E@f[e 5pY6WXHn%r& ΖLp|WMAR~jD1ûrq^$[Yy-8 qQX^<A+To %Ҧ[z|[N#2Dm6L–+!*_,= ښ˰n@(=w@"ֲgr' ׬dXQW *gX)̠/OI+ܰ.ge<5; A# 5ʄ셞'؏,X8:e` Dv-sU/{%p4Nv*rwwG+;/JZC!ހ`4CV%h,S*Yyh_V$[UٙژK4Ic, Uhϸ C, *P():٫k鷀g Z,ClWP՚WR\Ug=ͼ]jzoFh@LQPZ$Ǫq?+gmA ôc.Z8촕ZQ73r4D(@gHeoA`HgVc[7FȜT`U/k28 qY۶?*$pMH]zNHM)B_\/"Js+q=nR9}d\mhvq~{c3ZV9 ;SQ5+ z#l9[D`trx,hC3rw0{F6:)[>ap+j&z6?.5X -~󰬛wU{б^3,S~^^1h')V|I &E(6^>N8qVr>TOX9KGbaإ8˘G]tvb(jQBDkE2,V?5[5ݐ@񔃍 Vx3V0sЅ*Ioܝ/3N^^pP/sש\8v -Sv0"s@.k] qf=~BZF* Yn|fKRzI "[+kCbTA{ua\}tv#Ϛ&۲L ߅BosЩg{U}oV!۹B!ܨ9`^+K۶۩;mBp;cYx\dPwQ7bDEW}3kS&"H=7|mȧ|{eҴOt: EdP'*ռ k㰢' bVH>z9U/$T\u #K3Ǯ(noI+R# D%,/3}x=ڞe]wОtjviʡ6f!"[p}vV`8[8 P%nҳ"[Jv*Z@K' ( #N9|l82a&w` 8eICe`-" ԁ1QhryeLAmKK']=nŕ `_ fiT\ym"dM6[<1i Z|^#[ulC Z[Uf^'Yn9!_GV6wJd, B;Ef}>xpkYîƩf}:ܳz3 a/ǧi2ݾ5uTgiAxsym(=2+n<a i}0 ƛ+?fĶÏxkaDA_AVd&6*6WE\!C{͉pk_EK\r%)L:g ّt4[r_ Lyrv$]hEȓ]ܛڲdK< TP#2e,_ը2rm2~'<$l:&g@|i 5sJ CI2)]:a&Nѳ-Fjm*gCnE~:_E(bqq@|*)f!GzRgl\ZxnK,O ,NSap6jƽ_I}]?ǓLu1 R3$Qv)`}*gM< VPފ`͔$ﰫ / 'ֵ2sdq0ӞcFJFga,xnYv'7m޼Jrv!}Ue>#q'i;W;9oo%&8&,!5nHFL@58~3<wP$+Iy1_u%7%-e$Ap{ ׍XZzwoX4 [³Pr? W{MY:G=ge)X)EQ GoRT2T ۀ+bl|sFHKyi֮J\6o]2c3g'D?/+!L~7R3G&G!)voqLSJ8\Y6lZVzH \`ؗVK sWb!\{Ժ9ŨCФA֏6p"x޼Z]vgPoyHtY DRKPY( lr>\`\v3GN\ 1P o|̮O>W0/N}ϴsR5cl\;ʟNzNy92ҚK&"K$}qVܴƚP}]'E O_=Zo)Lgȃ!^]'v8uwp0#5 k s&oʴ XИM#J`^Z Ic74"q*).ӹR~(ų2u ( c1$x<R Q˸,=hb&Wp]tgOr Ek/Ȃ]U20BfIST=u YKƓȓny7n #dDm>)ˑۄ}b={50Ҥ~ᷬTX;TuՓgXwTͱw@ϑ"s>t,/[4X`bB;!;x|Ub NldEYPl )5c.ދˠAX=k\6Çmk^:f1y88Wb][D,(鹾7dC 6ݮ'op(2]* i?;/+&,)ېn7>qc]8! =3iXk> $LL𫚆LAҀ^a xcv)#`č*A7;n[w[x6ؤy%z7.C4(QmB%:5:ڥ4Mr9}qο*GfIRu~m$Ba'*]~̦1}氘[]ӗll]G=ɻ]Ww;ƚ,4o-0^>1'W[c Bä\ u!4(&ʩ˙"I[щbyq@XBA<t J] }8嗄p<+h0"BtYKtIP9&,x GGdJzKs]bDstP`v$"& uhaab0 CƜwX?NRǠhl[2l-[j!Ѵ$J$YsΗq&~z a Zʕ,?H{&Q_%T'?:/ 1r }J(]u!QYT\["X!$[FAnE[κWbx [[sBKN<yL\w{7}Gw/@ [dntv1P[7^qA\ԓuP1[4_~7]-᫕Z*v9Tn9&_ A~.ZB3)MWD75ь+m l'4TUe("Ѫ3s}T5/_hnC)A,y >KX*M)hh)~zϢ&BDoaLwXG">"DV ezFČVG -f,eSC K]ಝŀ-9: -?pdjk@F)2.0s6$^k =qϔNSkq%bjgM:_H#ysuY $d@FsE|^3yխ[rt pK % +lYP 9Hx5)G+l&i>WV˰]ը\L|LJ[kL~TRu`.Lmz ~,VV/R~9g7Y!D\rhe16K*zNAAq`DevS'ۛ:r/oeT/99kOdʮO= {D$VŮϬ`K%'ΆS<\ڊ D|S¸a-;>p'}s`f&#);DV +al;?ȇ0?kbo2iT@ĕR묟OQ?-P4  0zI)xk \jYGxU;1144H<-{ĀNSbWEVeڝU wh}K">`Ŋ 1k+9}}_jU4HMIwهoK9 7L_E^+fnR{7%,F\v'/;{޴b 偪p>`{ 4 ߢi/+EO^ܗFib-JSYP 7"`%bHI:qnF |%S(A,T,Nxےa$%V=l3SQLZ@b73}`d\\_tB$}3)js4^}60/LCtGtl躓mhkKB^C{IUsj7u̕q3LV:@if:5V?%Vx3ڦ94p.9N4!s(ontR^owQi[ondt]kY# y3֢+lۍm񬒦~轛 kJy37 I(SwU'cB%fU}񑎦PhV ko:vC\L_x&}ڵqē14k{mgpFZs3eBo,OFg:Hb6<`#|G-FJp.͸Gh̯qT?P0r:KPW m=6; HX\."pO~qg!qcQ!(JF+&#$y;Ƶy钡YIa7u(8\08DK9 O3 C/V#rpC<ڙ"Y}"8&č;sY#)k ?g'E)ݻS-H)cG08vaLWO`zo?a#.7@%9DH._:۪m;j.`48NK&r〨Kjd0/dvy K#OI"E %՝g_-w<})C>h!q\8kMp܍j^圠3|pqJ(>G$+^R*Ii.Z|Ļp9~QMm 6Xr=GhJOsH_)GeͩЛƜ01in,Wp,04!]4қb.9|kLJS@ZQv1ӍwhS0p)tG_QLGek%K^ӠnY+-S10(Pџ hC3G}X irLT@"(O`Z6=ږ&0Wzdk V]9)Tf/Z)+%WY+4ØPVG9}.RЮ/07ʨ#RSQp *h"֐RIcs Pȫ:"V{5QاG;ʮӀ?1|-rMFQ"z5Dʁrn@5T'W(mB'C] {%x .H`Eֽ&R9򿩳Ũjߴa^LF'mDTb;9݋CN pGAe=&V>rԗm mtVbP:ժ{W\F BdʞR>WfU2P7cŨv d(SYZYa}-' }LBo| "7CcjHjo "jLkLwmҙݼha-ysDjl!y&[vSy4-g*p;k&dʯҔ"9aGKP+(`#+03 N3cg V YW|_\M oNvxQU3%x%w }Q]VzU3ơ@(xN}([`VA)wTN\>EhWϦ#![X;'3 _Έv%=~ޏAWiGBp=ʏ/biж#*Ekˬn;|  kaV(qϝѾoM߉O< ڕdPYTYq&f\^ W" f} Y u%|wp7rf1ڂS-1>=gcj0؞_EH͋樍]u`YzTM3( +)iqR¢MƓLREx7m G1tL<2>M_P[ZLLG9LUz4?b؝oaf,i ,UK!cb~ɇ:W".<~*EELpw"P88I&2bHuΕYU{|J69f\Lkk8ZT>T3uc@KA)ግ\]M_ ~zSH6j5rU՘̢T&ѷo 'cpuM=G($D&W,Le5A\R7Ē xqHg^Һikj1fX@^ӿ{<F5Ҡlh. .HZ Y-BE54sB{' KऋMfr/ˌ;^kTk z $UG,er2 ~I /nDXs*{J8'K\pvŮqkzl$}rLK2k5w/1/9ם01-|oP-W9;WE`ֲqs)P5jc izg!;֩8HRtˡҵXTۮ.9@~aXCjI^*d*VDf55ocENXٿ4نd/(q:3]_ iyȭ,<,C5ƵV4CFMqI{ v0@RVܻsXwTvzWDep: g.z>Oy8 ;DWœ7m]Gt\^xy5צD!|ʏIhxHLS?yʿ㛱xa%, ަ/t}vɥIjRU0M }_ٱڷalOZnMK/w A/+OqʮkGxxxͷG :U$BkP`Usʗ7&FQ0GHV5p7oHoݯ>鑜7^zba^YeQtZyl7s9Mމ9A99MXNVT}XNTb/B|u XaA7tGKg$4@)Fe $;i媏쀵탕 *ѷ9d|>1J*UC6EB26'i6X'%2nGsJ~3.'/uE)趍͹zu)+镢)R0|󃒁Cͼ

9Û+Rv+25QAyueͨa]Zm1Un,!-J%'Q}nj&7AG4MalNEr".RLq6*g$ߜZP>% 9ZiS%' d(E[Hg@tRIngԷ_lB>NtJ.g󘎎͢yJZM{ b 0k虳n:I)@}YnL;O<ع R^BhI3ߙI%-L~eCf}NхⱲ(/5{vY~~?;miB+l>Ҷ.e­]xMek"Vd6cӮk8fZ̢ sQq 8{e/pWp_pVY#`lHv1s>EwV ,JxAd2s{·sM, էSY{!]x7wA*>3he%@ׇ>Z60u¹OȠ GMHbIqEhf(9à}7 (KH]+R,\NUH(H=UzXl&2( A,'aWWP%8Tic*2cVOGG F@ Z7 ](I/yRÎ˶.U]}}"`,! !`&WQ95v '3<;Ae1DQoshTYBq U\Y@:q﷘M)dC֐А)e9)&sj01z<9wTȽ|ĬA"'Hǃ}v ju.:A-^YҶy|uM ܰ[_'<&jRaBPdqT%w>DR$}g}QMdEM%Ʊbd-*r~YÄx,a>Q6i5䣁H)lszm^]L*D(<^+!cdϘ$K]eyPh5ȏ?ͻn,Y (,F](N?_LXw7p `.M(]w'^m](?­l`B ݶN"2j~M"4]UΌ=GgU$k4@g)~N|yZȭY`Ci)}%(c|úV(p>^]S^ĩ+] 7AX4գv:1tQ.HGVd })B-Ms8+Tj.* ]C[k+qWcJ4zH7P%q m\,K `&FGm0"P¦ ;_Bߝ:0Σh$\?˪Υ7]6GU\Yw{s~k\`6"h"qhpdR$c+_{Uf:'ZRjvfx5iԂ0~EK8=])U#Γ}n9&Xϳ|jמ]cp^c #KW.D(2Y5bnD6L(Ahu#Ft#O;s@U)$KC+M.Em7[MQc0*OҮ$^wo򲍦_GBؙB|SQ{G_-li١(s)ڡ;bn9lnjKuEߧXl^ gW b#FoH9Il$: B"e|W[_ּOnP4jRv*hT^zJgBz1y*@>?ZE}P/GRο88}-ζD x2vBf̪Iq4[N*U0 Alk+S] :SԪ{qKE;sZma:`y$re VL;ﬢ:]%pxW>yU8ǫe;\Q X3a2J)VB ))O ; ۳zw$;k̙N0F5= e?0"WI^t䬰H5K392n8nWin+A7e\S`7A uaæܪPHȡ ~q(٦uOԯn2 ݷ[E J -nR1֎|頉GrvI..mQVPRa{U[(F7oS<ܺW5! |п%M,錯ہz$:4]ۋhwvu+Qs (} 5uGevK32 ׃xGt1*uEgAk \,􇘩ZH ;y?.!** SӑP*PG:{zX 9O '])}1X+7Xe'gC@0#3h΁SV0 wXEw{ixZrd+2#A9otdPܽ u ɶ q\2 TH2x{hJS{T2 3{x"Te5-ҩI"'QA^;2re\r 7ArHuYGg['b.uI Ƈ,y  J䟅7vÈg^ ξViq>-$ f /HziJd ߗHqȰ,w!c)E;b4&_2䟿j6kd"@LAl~7Ҩ*aJ|vU< =] 6_"NμOJʐλQs;40\$T9lGƘvx~ks3*>MD#@Ut$ܿn{Cr'W.&1tbNӸ\(ݤ-PbdVȪ$jHE4^ccдEw?BOYȊ)!\ƗYתdJ|?x &/">"7ڏ#HqNb3b!>yw?j@Grf#f Cc#5 q&=њ|KTzRljg/V(<,-U^fP࣮NP^;FqqbtK j& h5LlGx)e`ـWΎ(]cW܀|cGh]GFĔ-maOL@9!R l'0aPe70Жp&M+;O͞`D$z㧃T"\12f uuj}l8zhoЈjw,H-@k~8f|s _ XpQ၎o4S!_da&: 3Q9ޓYfe+i %ym}k\ Az9Jeot)OOl `#l9=A)$&`񷎆~F̥2neJ2o?"hW4|pLWF~XpSuNyY`NjR3꺖ǩA2"yDq!+?&/>qp7!W(Oad!{y3j""g_3zyʎi{ ՜S"}]qd Cd}qvUwwfjU@a!z),-IƠfRj_r%d|M0 Cfp.>[A'RZХ'?Kra[ ~jS GpwinadGSnqBVF1!h5YW[ <=U Ra!}iv_7qm3F.u~<-6KaB||-*\Qc 1핆<18u*MkH4z_[>!΁f9qT&LחPx֙ACCF֞^sTwX=fm?,0@9"D Fކ7+L+\F`)BL;3Rn(_'u28ғFLHE+ǏG$`櫪4XVkeR"Qx'$/1]+K|/0m] hCH,p'(oLwgPgumчS&no<Pz{,tF@F 3;9S jm4D}Y\f,ᤳr.Prg`_(|oj ;Q\+;I4uoI%qr&*c!q]W0{po XŦgȳhڑBo7w4x(60K.PڛMsomw_:4c\fӊY)SEnai Sw\huw&tOm::`bJ[p5H.i pL\Par-. h޻>g6#e|zdNB%^53 i(zX?$u XVî f=ꖑ煾c\=߃aP;~^q -M=Y&{Ay%u}ƟIx+E H{Zڷ cRZ=>+C@[yӕ~&RΤt <Ӄ-$M57 ,YFA[iDYԧ:ZikazS}k\@29B5[SFI[/PU_)xmEV4<5M7R*t^ <Ӌ'jjs G$Q%jQL}|b]q<ρ,}ȌM.fNet>~m}_ݐw!4Fl`?\F#ĞA-9掖Jp> s~bHI}1驀=> 5kOn?Yc#b۴ln&XyZ 6<#u,l DoLآ޾شI 9~?z.:oU]#JArD`5u!`q/sX⩀کCۓ=aY q\m.Z (@X J<| ǵ~Gk_Zق~֣83<e!r<]|ٙ4y1[5D63h꤃fOmţ`t[;tXD)-sK1;y;9n7: 3/+뀹+F:0' ,5+.ICTZ"AQޱ!$rPEY)O%2 on?" Kq+=HTX;es/b]N+YXPy2nDlw+ w˗@u% B=;x*JzW'`;" tU'gI_2( zg,@Jwq2~wy|q(.K K[ %o0 r37c-Ԟq}F}[iʎ:VHځjnb2Z6%v80d,4h*4e}^ia]L{ v0~TwX#lDqt!i:)C:NzM1xùvi_haQ/xY%UH\<QQ:ySl6$GfN 1ѳR sS57)eurٶ=vaty2b}C4.jOLH]%d}W5fA#MZ4CPe!$2Mfk!{`6\ߊOSGћV|vQ b;۫ a@( ?ݶx~cn4y{Bf4˓=ĘJ4(BTjӃ< Dy*LZ% {-^gFE(c5$*ZVU'ĢWQ.eo$(vO6lfQ^@!ˎTc $6I0nEZӯ}^Bw)>ƯPVuZJj_T^>#?e aS8w:W3Ŧ:lSEh3pi>>t!N90^1!YayG쯎W MX]g]b+١.6=tztxA%T6JƿA[\ntt ^bIiQ~WJ^a%d" |j(:TVYX+8۷ yQ.x=LRɗӖؕ]:MV+T頶xq:J>9hGUfK0³0shؠ݃ Ъ:5 l"WR0)` uv&7_D2ӗe!GM@xox.{ s{\opHڹĮhhmOpW{tLTpu:HG뫴jE To\kP ϖ4M<G rFCc}>GQ'nAaJxAeou'#@4?ѷ5MOËX:F|f\=0j a+y zH&(GѦ  Ldr6&]! hu:-PA $ˡ)Ļ):O'`-S{ĄIU\ȷ M2Uvrm(ͱ]֥JMߐ ~NdxҪÎ,X?BؓϾ/][z$FLYRȟH8澯f3Px5+"CMqpOBC!F9 F )'a}I*l^-5 Kl)Q V)cC]g`BSzGE9!rz2~ }qXf zg|r pCjNë]5َP*g_? Qʚwh$N,{MEƴyowx ubw4-8W*kc,[xr1ʽL!!K֫?7ͥH|*6F4flXc8jѵ24;%0Ui-RNPk9%$U=g<8.){( x}Nd]գW?vya,^ яz~!e=XM>[/-JeClI qmu1'lюZ}(*tTV-yAvuDD:ʥH +cu"NVdsydj ]i4+{F( $[ -Ɛ897]țOz{D!(b8QZJ㍘*Z(Yl2T!V0/aTڜ7}sn:}>'zb䩾D>Ff3˧Ihe@nPrZB:jpnB؃h3Bl dCwhB'㵉<^F .$:ÄaqDYtDLjG?QQmA P/~ΏZ=85, 0O >+wZR.rHA@ICV ܙN,еӼ $*>'ˋkN*'-%} hsH^FΞJ⦊20L?C]`6?w;KV:,yM~")Y*ũfcZJ5bxFH ^Ou1h$c>kܭB0e3d l^[,Ct.25fOy˚laSd)5mokDs"@YׄJP;R^9\obE!TX {T$ڣ|f;5íq)`9X=vnr;R^vij,ؓ~b'ZQ۹N$~^#cMԵݾ%?`F)o=MKO3$hM&DG? I@X퇛k06CsBf)bkopm|A3[aĺ3ǿ"=$pd2*-x$Aqq,3d!UBl8S: ]Xz*>zu[W)kOkmAaȷ*zk=1 VǶ|o rrSv yaK8Ӌ5 '_rKf<z.Lp4B ,;AE EU;XYPΌGޭ2&+s6q f0/Zi`xHxɚ-N 7 }W"T>30Kty)F['̰̻"N 1"\>rbPLȋ(mDInw;k Pp7?Sl&h.i"k?Y 'DuFJ) @%+'wzaM%{pX8[zBn B쒳Vq2K]%vېח';u'Itҧ wnեT}ʪD@t#RRrzFV{qS;SZ}53Tl/26up\G_7*J|XzmPO֓MNLuA}e;CMU;hx:|˥UL4m*uJd` 6En#+?}'!O-cg9#w2mم>2/2(=Dt2!hC$@aRʼn'NH|}~Bnl(:,H0I`2#jyNl10a$8l͆>N `k(j(4\Z,Zj\0Od*Dk%!i #g+m+}L4gԌy)?<+mxid~Z(R0|1 K`% DXW|wM[=KXxtaR<2egh,Tχ/ c"h(7܄qHJ)iG*8I. móiMsWOQI!~=:uA,5ыȶOUgf/k@{{ыvr<MDv;qv*G7qݎA$sGDL1=<"IݴZ$5TnNVnzO-#ÒW~)wf98zK o/MElEr7aףj Y4$MUSkKIdM;2e~*4KY0JnES02>obNظpOI5 0qb`<}.,9\JXJ:8V5d5g P8M3囝\05E5:.tIN,  áwz#T٬.!6Vw90N" rF WuU^{+)0*R0`}0ώ4[/pxV|x`9-= M-TQ5{M{ "6Upɾw.F\"%Tn'HmTܟ{J$8#xg0]5*hÿ"@HO0GSakr Bmq*4WTz B{Bupia 陓 X{!gM * [̥&/8I "S[mD?g kL!Oa,MҀD"ICu%_y[_9M.-CP VFo'?+EEBX/,pqQ@(T)K[YnJ@yj-p+$)uVĽdsd,D>mY{i4 G 8^ƙ|YНTZYs P]Hb5JK=IF'<` (M 0lp8*8ȼO_6 iomV``f/ﵻIʮ{ A%iv)fWLr$YFew*i|c qRnag J;[U 2#^F${V>Du bޙu,)*:W]k2gÇ`Ab:V}#COjk=C+k8,+ƹU@~h^e]j%%suLHn7xfHF:]ifLaR* ȴECE+v4ȵo]S?o̝#ɼ5á|o!ׂR$V9Xx 4Qȹl~`>šMBh6FyHW\\ӠoɈ74O!-(6BI+TtXÄk[3)8+s?7aDM;g?Tޮr(1tBPAEv7[{ ^Ba$ko`Q1dV {t$׼g\:Esİ<!qXM&, mE^>&NT8Y{s.fՕJ+Ft|cLo?{ۼƽџϠ?X:eT)ksz{Kr{G*VHRk)ԞA(=s G/BKZo:NO`֋ vڙ7[41y KP# 7t#v`ڴ*kc m~/[!Vc!TZ@|Qnm@x{xdb :f`/rD?fEGFxFV5tw}FA+8(5{x6Fw)aeLS)1ۿr,whMI+3Je#rg$%iȅ b\E'u#Oaf-Id)}Ղ@zg 8DsA00di*pPaM*rJًǤ7Lmq#]&KWIDRUUnֆtbńB?u ch#8` G|Y8I^)vj~tvwCâ["fl֋8\c1l;Iqb껍 5G3!HXRNPkz'PbcY̴ApORȍh_p2N@'Mi*Zn|:tOZjCdJ繬|RU5".D}~GOPPN! M 9#aE@$ R\srv{ۃńpK=t7h'K܉Fh#sLHlfv8oϡGMz2qZbѡվNG7K*#Co5QuzΔ",87Miwb2'w d̽KO2eem~tKcLw2Y`LrKu)Tȅr1}fuL)T ;uۦP(?+%Jtֳ[to )c/~%R+!3FB}]Jb OIYRK^m\mH_7 eu u"( l/q/ɝcMub'"@4Fh`66ۛGG}'n^洓}x\G[Y@a֡b2t~{W._dDfe4`WP=sX,DjϝB&/[8C2Q&lJ J9NI.Ę|ey$PBSз6Cy&U9 H_- &bB{=.z;>E&mNCamASiD_}Hc NVI#86!cũn}`iVxy) 45ރDVY7v*K>XXZ,0ȭ{&Ӕ;X&Y* 8qa{lT2ĕQvڞր&0f W古1N KkQ/r0WC/K `G YWF&[nF.ˆ.l-Yz˽4iі<.a< O®Bb zOJ]X%rT_3?Є6Of% ^+9m8 ]qY4_Ę_Sb;F-4TOJ\ ^@QR]P4%s3#v{Ao9;ڴ,U2V2IYB[Q6J[Ïlq\Jڬi1wguf'ZA %oUJdvCk3uowmNS@3mNiNuPcFVә|{33Uo1G߼1֭b//JDm T+cӋ[8Κ1Ū`ʆ^4ZTau%*LW},B%.\x}K"mϵp3)}w{B{-pO~fX4xw ؔT+p>ny.q} ij}Q̲͈y?)ǁ.Ths +Q$D坦cB /еqa"HFO 10Ipz AŦ <՞-$Undˉ;jߴ/=_Dġ>3qtV/ԉdz$DN#iS3Swn2T.ɴLF|W:z-`+ c&2ol:PTeNmkLט> GK\ uCC3ԇAʝ#l/e@3k]+I@!%hg)a3Liv /DBއSҝJY^To]4qQDeߟC`䋅Fo%[ʦvrfx s.pFʔJwJ߿$kfspJhڿaQT!jq# Fc>uF@k/t [m%7&*ܰUoˉ\BO.6K\Hr@z߳m$lS`Tak ȕЉ AH+NOx1K9Ȁ/ 1(d(j/m)m ce1w?iP I&tVEa6>8 {Q S~ ?Ty~GGSX&%N̈r=xBEHr[ 2 SlN"_uYY@)2m:{+PyEC\f`hBk_:R/bDT5gX{N;[À 4HI_0Kqu;,渴Bޤ}~ZS5'?XM*UaQx[a<AMw\4@иwΓ@ҽ "{|~ܕޑ}FXP\,մA$$!_  0fP Heiascrz9Mnzݒp$2p;azlq_c̕o8"g616a:HE ҦlA q9ÜU:lqSԻeN6p-W2a⭘蛸Sw8;A弈##.+ O\LW[zQ I9a xxHmtROx h;֒ƞ2~-l(w,p6' £O@<&͖OsszfVHO#MYɄ{u;|/m{, KA;jOs'?v UMp3}/ty_0Wy(\O5Eec5;!4IX M} xWԽD\!Y?ސg, ǖj7LځCӐqS=fX7>+>T|UCsph^}dPL0U L I$0}6Jv,ӠXka{pnCo)!]E&WC -ҽui28-&%*&3+?2ZtjȸQHdzK)CRYSʯ EF;CXȢYEihw:~-r,BsATUݑ.e. BPܩb;sٳF Qi%#o)aCyɑ T9N3FVm9'2~Q.LoLHϜsؽM̃c˹p/65S[eWǀ).cRx|/j$o.B?tfs3 @xM`n@=\:BJf XN74L܁z 8 O9C"702E0$T- )Z%UgP-3IOn{kGEg>͂EU}ΜN961m[~E{ ~ 7[yĠYA M3` KV5'șǀۻݗN5qB^6:a_@- GM-_khv6NB['z,{!s~{`22lEJA0BaDCq8W- k&aMEF*tCYdߥ:#WP `G[7L .ҡK ,hyRr~5MrTlxB_i}#%:1ʙXNzSv1U+yUWvc.YO e4"/94T0e xY83Y/tϢp98TXPPߢ)AÑD=u#w$ك JQ9;8Ȟ{<ɖcRO/rSDe]#,9/ "#|gRx4kJ1 '=xM'%EԾ_:iˆ#.&|( wy'P'[? 9'ҤTOҼK/\> ŚmPZx+*Ɑ7ϥzDSg3(]_ 5pD$3[Bf5` 2WF3WIC]k`c[ГU#b?ɯRpuya@V{Hzl7@ڍt)0A&EY$-MZ$Lt+M}iw[5P1^{{tELi_۽}7 XfFHP;>&HKT Y7Rn٠{*,m. d(j0a,J :7gw.Q#02/^{ PΘŠ# V8wJc Lf` l;>Ix~]HQ[c}~׸ˌgJe"9iDDŽr4="ѫ4%PCF /I!os)\*|^X ȅFZpZ,lC$W" PPcWu(C/ԉdX PaF+pnm-OiN/%N0&dՙ_o9 գ5uFƅT۳7^gQ.5@ocK@0lD(Z-=nٟGG2{]xZvw6C)GT?fF|`p'my;TFt0a ಶ@E;Dd({L1d0h5@%ĵ=׫@5/\s7ǠhSC*zrhM,)0.oMek~мJX08|#);0p2j3h#;l2µ%8j5$bFUkX/u{ǚ⦔#i7^sySc[I"u)=xvjü1Zo|{.攫9Q#ZgjA qΔn*@^<4 `lKn@z9kt!8ݦ tK,Lk.V,IpfLV]p%#/PÛZ,oHDYe97MqrN#mAaJ3*ƅWx326yvڍ$]^u^ ߺE"t9uaHk):>P&)Zrp ہ;KQ؎ R=`veGMWnM2b,]ij ڠ*|IoO 8IxyXB>2 )`R%6CG.3I8oW57_L~%zPT=Wu[dH'$:~ |{KkLJ6V. a)Qbzr%H#rp`DA$Nvl.JΧp}&Ipmж ds"VX[/-Eb\ݴ|D}{twq~i7/ѷF/+BVTĭlݔľzYT9f )HLr}:d8@/Jtd蒹t6cI$r[8ωI^sKv.gG8ʠ{niQ3d^3OsQ㋤xinsW`%Ӹg~ʄ0xQv: 2\}ug`x*#8 s)y=[W#GzT6C -3QY )TaeR{?bX)W(lj K$,XM'ꂵi9-`-K07~@:ޝR^[Ew~ mCSae'5+[Kq瘟&iYLV{p=!tƔ`DC_!k#Ԁ">]2"+0Q[A$rX7 ANʣh#W1K/Ʀ?D@z IYQ57PiLcK^XYh=T,D:c"~VDޮvi%SŸm$m+&MDRS39hʁW`K Qu gۣۘrbBVdgqJ .WQDv@7k~y LO;Ӭ41iI^LaTݔb@ ([̒=[F8t! ui%A8յ"Ǟ(V:]A/ `?- NfN\R2UpG?n  hhpJ!ng>S )͠BV͍?问+J]w.yp杁;ZW1E Cοr Z"Q35Pڶ]mAp~&-SY9] JIÛiGiEϊynWVk~1X=A $d\C/MX7y٦@6o꥞!VCmRf2V#bgRp}ZC&\N^*!QܮMg*]y!Hzv2;Pj]@V|otJ<{%Ua_:$?yzQ(,_\N];U/#Ζlp`( -r* /]=f[j}b-M[@mAIk]LðH3&f?y&LAsЕ![PWUA(Sz+X9$bޡINwJjB9/!M%~2[[𞦦j5"|&QW^ .<,p0Y_Ak/t i=CDPfe!=DzM  6}vL'w!R1XrsMT8IltEkTb]_>h·eؠ]"CJKh$A!Ubʹ#n<p {n[ ̪:F]fq/իcXl;6#UhUcSj\ Xr4vUf!GM0zϐ:L%IO˖bAfI/8mK8NǿX<]d5Tzbz5yatA1~l$J-'n6$7[\|Y'\A#y*݀؀&9le0}+Qk{\{_0)q/5 ^{sAAaA WЊ\@ȣ]̳v J], r84$;85u$[Uqꊇ:+>sdϣlߨ ]pGQƓz+̄# Tj#Hp'+WvnR >Ve%%%ֿe/;-VٍRϼ<] NL9::*1I)׆ R? -=]}@շUfc؇e;< p gk D!`D/Sbb8O=C%/ C ^H$K\>* SHGxuz(¡&/gARw,?際O$Vn}yo=USZX,^5=>W^]9yҹ-@ @+-&;ND2}d*2UvŶ̖؜ñHZ*jVgʽ.je{ɟj7a0ti[XzZjG3A.ux5)_ĥN!lkGDvn=ᝯ= c|_Q1 EI]hLA8DUQWJwXZxj)\4t^q$# D Xz7$"R]ų̊im.7 A^/O`=uk킻/@)I[6&u>\L :#ak%U>>5뙹|gCWwl!vIipȕ|~ ;TXqUB9sGqʆN dvԶ,3Wp uʿeϿ\MOqaZՌRqe187Jygl2.81n6]?썿؉Bf:v 6ANy귨CdF MFq!ذMoyG뜌Y4ĵ*iMBQi\.pOjV]'-m+tP9P4 FT؆4ਊ쬉TCY;5E6(peNe3AY= %C&=I<4/^İ'l/GX[7ͺSMʞ [ys5`#:-*SoSnW i_q}]<0| ;0HCG_LaĞFo~w"1{K v2ʣOoBoEsR;  uyXBƍQPjv}y&lַGK Cda]v@ ћt#0Xz44 'W|^Wt/w٭6Y Iؾ]dK57+]s۟Xt)MzV>o,pRksp60ʩѼBBʾf?w O,Lge\jc죧%#8`=cI I67_֞БD:6i=ȣ4\j/wkxj=RbIO E'/4Ri_AC-0b8Tڣ/Qb:~ {mN4/X?/_:Hl:-2Z\[G-`vjoG\dSF1Fn*;*xdt<<1afF|_MtFčTz ݙ^,ܴ:^J2s$Lpu W,z}ˍBqqxٙ2j8ӚH qc<(8]%._~UK0qIHu0%4/!dg΋Pzշڛl^#mWwD<6<Ƌe/L.!3ȁZ'c7XQ,r;tF2{h8vsFeOgm_,j=ǕH1픔C36 Zo&y, 3)ɣJ3Yh.ưDzY])6h&$HmFH@ཽ0\S䰅uGr(82=.:'%x<؅=R x9,nW+/`,_ЁzCXz[&Ơo9@iG*oyq"yԷB[L3Z(6F ZV,""_gVQLIbs֞2/ ҰH*rZ51:O(vbSz!hN ^m,VmqKfF p?9gcyԭ<0.uR% wyLŝV)'}1-K%Aq\3B߳<NLr OD7T zXNefz_ǂ`նN dާG1͖yp+YBIIݠ=Ezar!ŁMX\;\_ۻ(bCggv;S|ҁM{0bC0^D Z_7Dm!gC6AJ7v\֛w)rH)eMl_ Z)(ftّF[;hfuZ@܈n.gpقϱ$c?]4;ung%kZ1vVPX&3qSB .[XO%8s98SzavbVRWfm;p[obgEmz ?!`P3sLkۭޜ>:g%} 8&nT~{ne]sȞ(i!תdc(K~J+*_OBN"hēv9KlCH 2i B9mTpܤK(m Tʷ|)"g?Yi,62(}13Z"@~@x4~4w\҆8atPo@`P؍Fع ( P]FN1Nb-Ʉ;SVKuOqɵ;4B.cc0 % :x3픿a`σԖGT1edSHx>ڦ(O6$z냒66ؕE;tJ0uHpw-Cv]P2I^\%z %잲k4>9?4!ud÷9@:b5YVq\)!V>2yE"| 1M?5"qRAa0n%u8+!T;L߷ tx_@LX)& Q{xmr9`ūsUoCM*O Ūts8cLkQPI~vה9y/L|ɞ@)?^=O:33c6w5{nB x`?;+d&V/CX a~v.]U5S4-^9ޮC9wBdYYOXC.J1jۀUm8իϞP2a(*ŁͰe,ݧ}s)-QƌF nb i&'@Zb"G&aEJ>O 3X;f \Yr z7mkzPEibmp}j(L[o6LmSTmz =l_>n-tn{sCV>oN- A;kl>cJ0q1@vGgR/Ŷz߮僖)%zU]\[P֚m[Ye^:%jHؾ74"KvyɌPFۻ.\5`#ND]goF ]b**#7{\a͍鵺u0?,{I}N9qFL&nkbC@~Lq{;6d#ḨH,#גwy;A-3HKcwު\+oŶ&5l/9u`7DΨ~?JffhS%t?6$} #xSxpN UvRZ?H6ѻ}cILH@[ȄBI .Uc',<e%<q.dkNEl'w4#?%د\֕(׃td'-Q2Gra7'Y̓_+u)5iGGk6/+٠%ڠ_y2̐DJm="”JF艄^Tʱu/i,}SKd͑|$\/^2[Bg ; n Zi}a$@>9w8bKHy9c KŸwC͋F/K~ $c{qNJ:(w9tS~?OOxQM}5LYxW~2zA8FX]]4E)>-<4ի[3"pQbi?|{fR&,̜]b'o`u|m@wQP* 䪴QbdM,Ih2H,M{F{NZѵIׇK\?g唂XSgZwd1 o&u[][;nrϦI(MTwe'd*cr$JzhYbLLѠ0;z $ttzjjdJDnoZv|Tя~cTVWJͨaAȔk׶XC 0/otGWWQW t(1.O i,) :wʮBd2 e/3{ >n}lrSJmw2M<-фtmGJNk= XZ=quHQ 's】1[Kڥĸ=;7`W鐸#T*76־d6+LńxZgzIwh|et4FD|w$0eCqM -')S"diZB@ YнfhOȾC5|eя=rMB?ہ϶5I6SYjVaQAɯEmI"W̉/*W0-74gPtPV5Ʀg_Xpv{LRUkj=JS&k #Bebt}au-ŢC"FOQ$*^P3)jlg'}`@WI7vOK`"R Ng{;ktmn0j[`Ki_\jG1_{Ob'a yI!)z]Wǟdgc H1S\@|av"E(%*ęf/#=x3h_i\H ǰkjۮ]NEs\""k-;2c8Za!&f0O2W@.1Pf#067RI14˝:YlZWžq>wOBf,Gk5+jqDI: (>EB'؍\%$ vE{9^9xav?(\bǞ?ASSj;ubA_ӥa3”׬Pf%` -5n%>19 v5R`.0AQHƗQIl#JG\GX݋*᲍_g"spL l bYG` yLzd/ W6CBϧɋOtS׬ >ʁ4_IN}IH7LҨ ?FT.RH^ /(Lh/A-]"BCҟUV2i?,hMQIϬlu*z̩aBvލ@~ӑ=渨 vVm˴(zzNL@d1)n%/uHVhY2+U0KQ7',l.;,Z[!.ב9ɪ֍'OFJr)v*E溋Ѕ4l(o=$/9pF/([2!SkȬ2ݴ q5I gr)d\~qNkYZfkt6w8P%Ku;o}/zȔ0lV_ol|O M OY{oxUncO <-WR,~%=ԬP.Vv̙.@WJ{%u3y׈Wj[>Mt=2Gu;\tk5 6D$X>h-zY*6à $RHmjftw-7:C~Q/ojtv˨[l-Ɗ'hK>e]oE$~~St6[z4hae%%եllz3H$$ I:SWN܈ reB`/;?#w#I유?\V 3RYubDɺ]uifڞ߰иk|G8EӞ T91pl% @qIt}QN,]<2a?]Z^|], ޤ HhO4pP8i>anC0e}瓊r;7D؇G:= #X2Ȏ,}ɨyQX8Y+f/F&/ 42\{@Y׉'Y s@bc{ߤKڒkE|c=`g&.q'{_<:> bw T9yHhгe3 cqh?2y}u _h֋b|3`pԝxvyYȿ3h / /fx:MtlZwjĠn)Y@ Cƻ3W$ t!@apvi&q׾oR>' =Å޷tjؗPՋw"3[UN1ZL th*t'm ?MB$-#U_ yj?Vc3JYL$g0/kD=~!Zr7SBoWAfl!˶<774 Y3p_|KdT`&%oSթgv8S$# PK %.NkyQsxlqY$+)Eěѻ_ђJ,XuktrfMs7bZEP<lVSXooaz"<(OD!Zy)^O}ttc[,^~i4K <=9-Ӵ0|o$/[@`Kk#¹yb]>g>xj'PA<5}"Mc6 _3~~B@{$PI4?DR>Gu'VmOSP"Nj: SC(Z+1fl)DlҒK+&=/]Vf'Fa#kV g+ Ș"-;(';i~[ q}Og9OTdZ|`IwL"]ܱcjB, fCnstn&ԹXsX _P*ꃒz+ #kMYT ҟٙrϼTW"X3F9eנ;CS}Ω QmI 뀭tKODׯpT]6 2n&:*NVgEaJ?nXSQB%A i~0eQ.W0TaA8[P$h&EU@pe7ϧN=ʄ  PG]&$k:p,ф$ .v=c^YM}9Fo+R.= `. u?WYIdTp7Ycp}GDA5lL[:!Dsٸ^ZaqDEr[4\U{m R|p[ T9)z6Ħ2D?>P; G42m``y! }ɢ&F05F,@˳[s~O0rʠd `o<ϻ3lu mցd5f5׾"{JXlʵ3uĎ`\G|fl4i 40F߼QniNI ~t1c?u'd': ^#PljdX),bR'jQ"*/n>lE?՘S`"z%AP '} DQfY Arq$ '?E9x C-+>3c8G%.K Է:M@}Dza0 ^JzAw .Y)ҙ >ӥ(3"`勻tS n@k;Z)o2x?7@G|?1c[&3Sf-[4,.1ފ8wޒ@2WGvR ͓ѡi^ @,΂rQOWu|՝U*_{Y-HO SQGr>P{xkbXYU:wt~4$m:+1{ʒEBnӯLB>hXID wlCJGP~uxFXdk=IbW i 3&+nGKyS|؅ #sڠ!hp8Nub)4 m 12ݺzxbi]zjّ7['eFd\3apyBp{=MâvԆy-yuC0^Xq*P|6Iʛ^aKPД(}yफ़\MRh7Bxsr# Ikǭ tw HG&w;Rlw.#Brs]awLs||$\qMUo"/fu s+uW*&I:W] 7o͎hN'5sȔ䛭.P5ws8sAջfZ([5%pCh@#Xqɺ:FН#9u4J:'c*3%+6@96@ Qݶ9t9ַlR4X8Pɒ Z9o9K@_^Sv >:aFc1Gtd I8 }s_FtRj\aGQ)~ti*G@z^Ka٠Ure">ȏ&y 5JN]Q-JOv7̬fZq AIrP U&zw ؖͥgK5&ԋ5P%-c `KjAتzgD} J?VY^V񊡢LEch?RuV7G6ѾT%-aP;PKNb0QN$wV2W]Tz]r1˲q6\gIX403'2ECC§6$99lni!=#G#,kk,kUZ:kpG/XU.+y*D)#㧐27 ߰Jj}r`$!8` وӅsӕt2s67eį=jw=@5av ܶp#؆«kE[P4hg`(h{Ua*G!?|,ӟ0EeqC:sʖ-[xH"T ?k&ICF"Lum Y\Gib3B&}l:iնԷb?RK,دs6?k)u\N!Ff5*mc8+cmuXz܁#'li!13I'} \ElZdjIB;uGS nonԫ(@OȌv<4Mt&Y4K87[q8V8l{SBdv%~qB_N 1jgcuf@eWqZe!_A,+-q/.ׇwfJgo".\*_5P/RPl utvsO!Paͫ2])*7 4+}fr xj t'>.}EF;c4+$Cᢿcf-#Sҏ4!gqc5/%Ń1 D+CK. 4Gа7gu l*mٵ$cJ(dZXk.$Xȡy*<+f tA=@ܾO&El*r3xBf\`575~jCʹnœV&Z]kՐB"˷"; N.5K󆈉F8BH%T%f̞PH V#'WM ;WI\$y?c՞uU$1qY:)VԱ׏vev,V\{ _nD ~*yA_gHtIaؾl-[G(o`Ꞻ=d"P΁+W@!; tm.3)<U, `2?r1 xQ2HsVϻewНev V Du}5ܛ'L܀yNyժ;d7!(uMD9Q&|r35e+96\6,u>qYct&{Ȥ`_ j$? A=Yٹ7'otU Z&ͱTFL|/Y흍TuWca[LwY=Ygs8t??Ѵ\b] |(ee`sXB^t s`g<Cl|0?w%7z!; sMkKITTUcZqu3q{x=aV)6 DzZc_5ɴ[rۃߌK@a05. hQ y d=+jŒ)`odtF>gKLޥ^VӘHemЖ5ݒ{L Ddڥm&FM/aYHa Kuicod^W4裻+̼0kD`SY:]>`n}=3F'Kﵰ by5ɭG暴5:ҙH.dZ~]QEsWP մ\h|19,KU. Č柂MV+0Pw\O^j"YWݸyVghܐ%i r>XҼ4լGBށ6-YnzCrV"BM:5޺ '\Pu y5=O`2O}$Lp#uZ:{]8hgg?{WxĉW}8.PBPk;/Qj%7dwt*!I U%/ϱQ*Ȑ*],;r: Fp9B:A2WEDC-(^ B3#(*-E;t[[_VQi*0ie''' ܊Xs8$Wh~3TgYS$d̸#;W(a`pHfzIFUh73q<}VO/j[^]QGo8OJYL' gnk=cJ ѧyлd=2Lj`nCM^;7Y,C v& ;=7+] Gf-=ԛjr vSwXGhE܇E%UQ:iْ'«}waLgBɟ%o"^P{])V2!,޵ GV/CZ8j<.i]gyj5PR}z3e`">ĕolO ԤSSn36Q~0f6@@ 1u&1xy8>׃A@pSEpv+p #齂!0{<7Cf۹4 z(KuQB Aмh Y D'1Vÿ́Z17}b6@G ~!thX\BGR-gH%"OFQ[tBFwdWӵIߚ+ﰈ\:OFRȨ ҆ޏȊ3ecmZ EN&Vy p~ȡscQ><mіqиF1zg7ķ)CLjඎaL+N!wgQ~1m$*pa^ ScL<HPܒ*8<,.wRnn}`wf`޵t_(L"2mI4H߰,?pЄؔ$_ )9ݱ+=bh] Y0[O~ρ^Jc] OaNbNB$_Zx#Q0\Z ./l dg t?q ~/g<ܒ$*7M3!^5n|V  =<Ⓕ8Xs_Ռ \UV(AVrI5 ;.lpy %:1-?L`A#:$m]:\uNxC̺xl~OIs\ QIO<,luA+j8" 2LJ+,JKll2d*ɾ3H|"҇F’8Rbac<(A_!mdj҇U@ylq7u~W6oD1ϜOvoAF)>ZNWAosٸ lNB `ō 5(tOTܝ=tU jB+_+9ޟ)ժL#4vDYNRwq3~5 L+eh_1Z ^!$]%䤺̖@rDYl$ )[C ViLZ.n򲌭+p FNaQ٪%-?Tc% {W$Wjr".ZtqA=_1%|[P)2 6jg.Veo.d >B~a`|QҎNxYQ"_E$!)/byU=s a$p;;ìEYV IU7|P̅MGoj'a/3Ih*2B]BKipMd'b9NcƂp8A x!DH`NN|- \0qѨb).qڃ<8iYAȬNE % ~:biFɳ^pdhW!{W5-S`5q?42D+[d,2cjVh |8h2sOF=@bDt&a)GGu(D -tBU+}ýh!q$ize`i'N;J u[\ 5'K88?3z .;Ѯv[ p2H%n{_bN--yLM䛫k"y.ރ6mQ ,iwRCN&.탗{, vHQ&D#w~R.O}4Ln1tb I*\b\*,I PUb6 $nVϥfsMZktT!gWj/bJhaR3A~7G㿉}|AO\w0uٸ?VU+$P@EfgvbF^aȯFgJQsEt=cOҙ>mmc7vrm nE͕Q,< (<:D,T-mâ~N@\GכV{tE6-P02\KP3)<39l_PUZx%%Cfn/5jI/qKIbADS|>ˎsWXŪPe&?ɾO$s 5WF"9,ڌ%DK<`%^)cQ049}/ps/ @y A}@HNoxMq"np[ߪʛCm.`ө01[ -&e6LD8B0b1?y4snlҝ 0I@/bK$;bD 5ʘu>-2/,|Z<FVTI*6wMeGQhhpU)wE)JN^S9 }b|}m?NYggb2Z@ k_lPDmu u#}:U*IU'2I2s(33^`CJve5Ag5s;+_x:%E6.A@ o/|h*Y9fwĖX7z?Ĺ5K+M.Y: #mwݸCkM݈ԗCq5-%<|d:uQE$q]U ,q,~"F -}0stL][z#/W ;e2jZPнy Uj"z8\' A@!Th ܂\y&& (Fz\Gx"-?e4r pt@Vyx=v'seac1*FI{j&#p%uC cxO|LE}3P8L!i(wPZOϪdըDCgkl~?h &Ju TA ":gOK8E0瓗 v?؈FMG:fbu0ddTRc˽aWbW2(G8Bp? ߋߐyʜ{T11=Kh`Yklz]N_2r1R : ȀDշYgnߪu/ x&w0[z,V+aZ%;u`pD(۞(" C_..i.AiE1z"kہq?c)b!YQA|G9Xŀ=VBԝguAwsI} K[J3a0X0y  =](TGE_eǹ6KuX"f\̗$@8*@0O{°D _MxwBrx3䩀-qC0 ?Gg\UTNreKǒef+s#~;37sFO.vg|Y=zp#<=@tUslˆdEy Ӱ 9@M a~v,:;K!p~') toQ 3 o smEϖ$l$V}u,.vaW<6<l3ͮTZ"% B]ue $ KonMzқԥ(`nq ",'2.JRkdžWq/op LA!p@`̌!C,}$s٦I/4H:[X2tAq4+t9E^6"*(# c(́ g 䀽2ɽ;(W;&ɯVǵb :&Xv+,\TqI:c9ͤO O]z:-NĐײHPx =!gtd4#H-Hx(`{_fm 6_: g:?Y3N红 !CIn"C S2|!_)P=opMhYW1~~L<i hy_Gw;d taօߖNln%\IGV=Sn|"S%*e6 7EKug-gH eٵF?~YvJnC%+adp#g_}Zfʢ 72گ.8@WL (jɟx|ٶzp yCݰw0nÙ tDVz*+]R! J4Vb֒0]%/2KxUA55#*Ѽrnxd3!X|i^ivEחt:@۰n=KcO A^<֍1|7n͡ 5Wn߷YuD(v=Mc}xBvl$$Yޅ“y)ޢQ 3i+i&#X;K֡ LJ4]FEs)`:]'`lpc,'^ WwZ@M2]_5ֿ\Tݻ llK3=іC"2)%9^+z 42e=;Q^``Ma#P5s]`Eǎ"`6JE1S{+j6C:fןRt`O%iOgX59Hջy~ Zj3pѝ7񲹄W]p:^Gr? Nv So/=֫tP Z͓?9y88c@:euw]E(PI=~hq3$X}_0)+>6ű}M!ɘcx$T, 4uEIgb8 ]{V {RAs; H8G߉8x'x=& Bvd%2 l~?"c$wc;kW&dq2lqU_P;<5\?nV(eGɖ QeV`pfBd߅m)5-BUj*?5w&, ĩ9;C}1X ˈx>G]BxEmB-vS!'o  Z|Q:ŨBFAzKu`ſJ-$uqht5 q ՃY2w0nPfPr?/ʯK4hy j9gn_vI8;8mLBkǜRn?XN: ^2 0P+"kEUl`\ G|)(?Q;WXEgw-KOWcycב}UAslZ͗o(9 _&Cl75w^/dڶZ<<Es@}(5I*caއkolRU5e3h)F~Vmc#)f)鳖nWd6*hCۂuɈ]DRfD|0K)L'NjG竍e m_^EUy8Qz~E:QC]-Fti-d$qC+$PGiw[Q@]-$q|Cy .R)N:iR-(Ŭ=hrO8&>̽hFhsA .u">`ZA <o%q?̀@`eeh,8h]s#'V8KTrr(Ջ4QOұw}8/o4&LD^AƆ.S:'I| Lث]"RY(C58~ ,`6m>KK s۫ l@ vm3w&|+y ZJOzMnܭoib.|2n2Z jAI[0$KJGQJ0]$~'EGK=j{l:N^xl|RA#1ʱ_)6hbnYx n%'u|j*s\ s`#!?N<7 ;ϗ0nnFf O^!w47Pjlm#U9}~aۨ*M.Ƈ4kmK]ט`2ydgdm&4> I/i:4 ^q #0C GlBYK2fV"H u%\O"rRuGU(]qszvmV\YfTduRz88q*A3nR`A9zóǑB 0(JwM٭#=AS|f?ltR8:ӡb_7{t^X=Q(//[ q5EQ̎N/TQ7$09 ̺^t]d.3a暯ߍ뾲Ǭm#Pf#$X㎵)m/'Hה㭃&&!nJeeD )g1`,ONmc_M˜14_m1䴠:b!zI$,_jiJki/ d=fJdKxZ!LOn_iP)CއhE ߦBҺsf2@4f3/})+;܆gǤ?vJ c}4ER5Ž֜AZGUu#}-ңSz)~|F?yDʘIG"ށUtn[2금)-ܯYdc- M,]&\5Ú[wD}4Lڙ3{ K)T*UC,CG~Ʊ# $6X nCǾ*.}{G#1H$膠뒥'gk S1vU~ųɰxb!mCV D o]M/@em{S_Q% > ٪0 G,Kĺ&^jZ2mN= "_LՄwv4d3Τ,LOw~,ӎ6reڋGCVrqb <2o@ytYYe " 2 >u+/۽j?\U@G^K}&<<#p/o~)ᄇǵf*c4pRUZNO+nj4`/}sI3kZ#ĥ(4Oq^j^ʓ?CLբ91'c޾86c&xs]اM%x$vû_%Wjd)VE܇!5IO0?'Ӂ&uuvPL{E23t#*;n,^B/P^`@JPsy8$" 3d>aUY\ ѵBIH5&8  oy@cz#6{nΚ+h ~PzE݄̠+s l Į scPˀ>5 V}1*!*̅ݹ"-^Ku9ѐ6\+3^To8Um@[AqF8?'TkuR >'R} L+ffx2عC.kЁmn1na YY#ͶCj$jbj-ff dCۋ"Eu-yT }Ө1g ʎʠXAU>S3Ҿph ZAB%RyuuM w:GzXJ{YOKMAv"F@a8#[2-K֍bE6U\Bu3Akx!NƸd{0)!==X9b-@tuP Tת%ÎJF|9qfb[K: thz01_>@|'9+Xwo-L) qF0ꍤjj|~WLed!Ȥ'W+67^;fщ]k165 o@o4(486N9f ?1sh`1;K:an1͂N+  ߨ2%[ b(qL+ӗ [/)s"~^ H=[.3]ml(ŻW \%hLŭfV8U-YbAKvxh]-. p2 LlqؒG$R r }_}A; #D<ҏ?*} .")xa譟܆Pm\3 ui]mc""g*}=M ȮՅ|Z}bT0LPXps[;\z|Q,[cзjT|>et P-{-݅ c&o'(ҷY@+3TM%,XIأ!Y4OãAF@]>Ik<"3@J`]M|`m*&L wOc‡4J,D#,Sj:u.]D_X<2fx=82W*Vz䱇~L嬠FjpsbܹՑ@nx2 Z/QlLϓc{x:3B&Y>` ĕ*57=<>kS R9dLASL4ΥMm#E+]7zS5,|EL7sђ~t 7Ejzq5Nt]N6}?D&2QM=&eOA3xd^)Gq\m7z jON Td ]_Tg.1wЋ}$Ԍ$?k=Np3Q͍Cy6ƞU8P0MŽ VE Ü?)?c)-w~QI e;&n-Ng7P]>t1ޣDi'*bt_%]է"f&K72Ա;Z6jydܮ }{[#X!u~B%w (?@^R `;p.nZ3}Ϊ'^b) ru.wbk/VN2놠OGp<ϲ9Et2'6]yCeR1 G!d/9~eޚ]R%bM/6)gJHۿ ;LIx`8e$VpGO k{MAU TO칺,`U|avgZxZh3}nPNN+MyuMh(-YQQ脚wJkbm#q֌7^8)؇*r#hIrO%R`f6zzvTfrަaVagr!̓<rYQ10s}= J r8&.x8m#jjTlo .-jv:=ֺIK1p 4ލ !V :ܭRKD VbڏX=]耿涵g~_ݛAZMntWJudX.BVc偃"#m H\M ­s7,%bboß{9 *xĄKs3s%ՑI[Gd :+JK 4dRyWvokWY cSFR!kg@W࣓ &И kɣ$X'\RvsSy0K.6T:o/4ڔ`D00<@9G"e1'twkqnC dj5 >f8Lm`&/J*\pDhH\ |Ƭ߻t˝ ͭj '6`cc1csRCm")=R~.fOG/&wIdXJ5?Ppi&(8, N2|ή/rkl\7%:[+ NX{ն @1!e~.fV+-}JXUu4OUJФ F@R<8 W=H,Mv{Dq>Jl.qRc7\V,w*WC\xUo|4ywQ a ˚C @V0]`E%(Yh%z`&\9=3"c}&bӻG$ >*Wio~>zP8]5$WhZd꿀?B<Œk1L쭓?˧ln9%7`q$B9pEmT\;S_~9&?WP_CD<@h֫ZCFͮYox[ZYLZbI.8hZ)B@zw'^HUle3fLwîWHLKz TLs$,3 <%c2ʽop8G5缁 fFaąS'(T/0b Sv%2fvG$sr>K FT7@vTnhN^ը SM@N+[?cS:D( JX_L' ?&<&D;P _횶r{H~{b.V3:F]rx`WT{ctY8d;ek$pu~B&]@u >5<510cw;]㛮Uk%x.i6D Pml0¡7uF$ i (`&2K$G`Lx]X|$Osu6Nӳ8SFP;Բ/s,/FR5<ø!bahR+(Hs!gfm>\I[7Xf9xZ\5K ;SCHPnnmS'3ǀW}ﴶ]nALg]#e& Cn+ߥJ$~9]SSٌk46HβK`a]76DJp:Mؔp\'b BF\E|%rln A U&2K 9bKC2<^WPL qjOߘOA njD? ev{C%<% < aJ})q+=$Lu5; #w@A4Nvd1G}KhO`KJCzStĴ6[1  7@VW3uQ8Cjʣ^:0r _'%2ׁ`g/65@/.;$bŀ ATJT='\[OڀXMKw [adEĄ0{M:쨼[[> Fr_Í8lUX %y-ux2VjW㕳?C˃S&iVnߔc_* # +qk|Ue?P|4S@7 vrti M8hLd63ciPl3҆pe"ZfnJMAD(Z p^?-%3')+-4r3Î>YޱϩtEA΀ ɰ' wN{0';[12}KEβ(iJj-] i1캪 sooeahEw09+^!ԣߞ%kg$,uS-Iݥ,54|k5}[UYt($if_xUL{d)evv6|Gj}hL\4?_֊wu%P(%aǗ''Q\eLR&p`+MC(CĔIvդ: UbY<cbw!|Diг1A>a_q!ZS'=ķ)]pwSO';' u0DaRy\Z17VPű?kNQʞ% (`I0؁գ=G((4}Ӈ'.]K`&[qg M6[Ф uhNwX1}&0t ΁z /T3]=08cO54W%;crWp:ewƲHbmNW!xnSòW0oqj qɡ@9RJ#SV&ʔ?a2vĢ`g? W*Gxˢ6׿|ץ6K\dph|T"`-޶γ]h*%4ԏ )6 z+"^ <ǷT.Lp ŽWŅ38z;xCJo0s;ZPttv饭v#;Z-^e_-V*=Jq;+}-@Q4m.S2y5^P7"܍ ~4з16U}2LfP ́Fg&JeP*Kank;.%V+ۅR F?SM E0D0HCa"7# MRM3<94%2g2T`Tb'0`wjp  O6M.mv~x-jjuS= <=vf-ecRl(;8;@JXݠnW_J ̪Ks{m^hz~׊쭍Nr󬟽a';δLrl 'zӦMp%f]:+{>g,d ^nGjM 4!FAd ކZgM܉_JF^G0%@byDo+swe,t&s֣'(b? 5D'~Q{(SˏoUTGRTL6_q4[԰3/3Ŕb5#ɋHF-f{8wT鎧Cv Xwm~pHpX">L{z?JSkM s+؊Zpy C"cGko>WV+mAVo8 0QX?d3#|וNM x͕A+CrOgad6vMf , DDymْP,ϛN0}vhpZˬwD6$xh̦vtyAJKS$]4 8E6u=Boߣݨ0@tY0W{TFI >?kKtyxf+卬SKr⸳CIuG5܆HkJDc \7Hk8ݧxQlf.:T)%^8<  Qa:77L.5F%7dx/C.LְҮy־m' s+:hY2._^jcb3?KPdY_sjOZqBgJ df>r"?i LHQp2Dzg{D \ڗ4g =,Ozr>fp3!2]g.PyKaxy3-c2F}-b8m̷L%H8yՆiî4 iobWi9Bh1*33"qtj(;*La|'`NjNc%EfN8^>y1;uӹbVRL WFG+2kjs LJjn:ʘm2Uߡ'y m6t)#ƣzyܒ! Ȝ_fy-UtW\J.([_! HDW}%H @@2A6[tcu s̅_XӰQXoC8ow\e]&9VߍzTd>{:ջˑ[ΩdKm+P옸5i+D-­nQF[|`z@ga1ko&qzuL؄>Q5iltax\p`Y_jxNt ]xY9ؿW0&ȹ̪~1`#uOb y$*T813c&KYy28&'DBStͿk團ỏ9,8GHlaCUb(Ư^3ƉmD7 p'5KB+OUۏ[B_μiX}0&6ո{aS߱}}CwOs'<{;7Vtw~hĘ ;DQmWo`sNÑ݋ܰ UoYnj~IL!ML:ߓ{x}M{a 2rܨCS*94m[ϴ 3 Gڑ4{:@ҔTv܆vJ~g5D;pzJ4dU im1bx[cKHF,ٛj .@HHU&)u5tw3ѻ'sa%x_\ fid&Ob$~Rv):mF͝ǚQA0"|Ek w 0v;ٿ}hjc,d讘 nXGek83xB6kZ{7eR'Ӻukqa~U# 'z+Ow`8%P +G헇(;]k}!,׷e of;p(`Љr2;L&R7 T.EtY`Uԉ>yG[ܠPg ̨mJk:ܵS-ګ,!AiF^R;^ [gfRJH Kw .Y/[q[#z^$x#գpUY?2du@?n3=GWS!qgш[$?<4OLJV Z%p$LE49VDVoT~T";Oթ+[I~r#Lm;>,>͝r+<R : F7%{D$]/g֔ގT0؝k۽nԧ&Ge$! ە3(0ހXX"e)eXfgΦJ7)sSmËT@G7Eg4\i^r*840#2 :n8 O}٠5VqRJݐZ(#q{Xc%jYp״GkQRM'qqb !+Ӟ_IcMy/ ͦoQ+XQ[,.o.Bĕ}j~w?O@FCiW./}Vg/мE&]3iM's+ o]UFwGSql5Sѐ7Kd&1RX-k!MmciꓖHsq%>] Z|k/IJ瓟ҋUlקtkٶ^7d#(=2y}8y$ xCSKi)/ /[[ dCz_ЙӰWK9Ml6")X:Yi\+< ku׌IsJ|%h۔G_0Y@:=K2-5gR;eׁCp憯0GfB@|~C)d 9?kN3cܷ}6 vΊ=V(*-&HшGH"H{sVmYPKQ1+2kIFGY%(ڞ |h$Qo4D.'XCLȗPːĺH̎6ۿJqsKeûdb]p2v]YYh۬>6/P8_g+@j4A;[C$ d"K͗[# Z­_ݾ&+x0( V1wJfKo/&V9@2]e*vV>\GΒ'E*9qHo9/y]\DCtR54ɾhŴVq9hhI˨[Iγg^:&bfC'Ys5!&ϠH I3αW 1Ծ ~ԘW?HWH8mzˤAR@Ŷ)ǡ|qdK8$l`F[T~5b M2ct\a TBtJ4Ӵsq. wr'.cvixJji`*n.-kpxn /#nicg7f2^%ϼB?Gq2z]4̋(?ɄuxG6@+5}q;$t-p]5 +vΛ )щq<[7{0PʻAנȥ ;߯ucV10bgNİy+BaPw꽌os9sm KJB-1.M* EG̓/sSaliaվ[(~R!ɻ/8Fe,AHCB d w]*OE4w;}0{VXQ oXxAOys.% Ya\D]43Cq!jJk^ RȽ2Ԗj׀W7w ҿY#s q 3Z苜'Gvc²u"AwJ;ֳSٴ"iȕs:ԋg̋Ƴx~RcZKh r8PkјXןD] ڜ&\ ~sAH*ZY͹ Lq~݋`[/hT0}83y= 21v@#8$ "̚ԂD`9pB CÞG`@ٓ@X{aC L>{Zw罀H7kϓY|b 9CZrJͮpyco2$εܞQHO[>臂&@3L@NLs{ }]XaˁDŽjvz7]Fqb(l_ĩ>,abm&Xi탯 ײ*r|v⍚To$J4NGBv3Tje651g ~ ߬ϫ-s״6(yd J h3 9FbsIcl EW; >y8N2yT_ F`ȧt@O$#Sw+Q" !4_oZAB%[ &Ú%~]QgUP˙׭u@,$-*] IYvح%U+t%>zϳ.ڔ@97{/8F4R߼{@5gB[n)kg31+Tfmk75YE5X~9kgV-0sMS4ҺQ`D./6R[K'{%ưBE@ߠo\3~ M_Ecˮ 0~]"5c7bRUP?3px``@!+v3}ֵQ`ۈ]N[wm?_ӅoX1Ʀ %(7 Xe%6KsFR15?LhGG HikM^49r1#YuT.!99jCF`͍2 H/?M* ,4]$,^?ot,N! [&Wh qSVNk 7"(%HWo W\^ Tc0on٭6} &.YQK*_8I X5Ӹ2'sooG#Pcuu=a9l:\qHpWʄe 7e~Yvlgh6Xny03@+O}c~/{EQWi=.Z4gGqH>t!L 2ݴ.]ȪekaJ9i11rWDukZ|Dv1#pkz@ВJߪ)e e: 5JoԾ)OzͮV́I bV~tݚ$!0я`QDL)EDj:uZ^ZPK%Q1];TOLQˇ~##s1sqc&ik&+ ?B;` pb*6<ۥ(ˤjU՘^uNJ BD$2,)N#hЦ-iۀMA%LʻT*XkڼAT(+Ts-!s'}VKu,f@JZMnZOarN YYOv ,PzF[t{WE?i֮ol_ GZWEBvn{"":{!9Dtݸ(~ʡܸ-]X&1~'fHW\v/bOMo'BHa(f _BMEdEߔ_o3Bx hc~x6e90K-߼{ArWL(@49h a #@ƻ?F,.U/2*z !5<[׳Vӧy=49r~RpVǁV_FAʲ.X~,N_YL1;̮L ][K{&=m9K#kA0I=݊i}N8DŽ1d8Gɴ1;A(Χ}kkm-/d¶WfgH-zK%X;Z q+F&To.Ɯ8Vo~.`:jH")= FN{@阳*KF9̽l7#T xLms3 nC'jbfO\cgsqU6F@qt.RBa͞_]L¹6 K*38d@~OOzOihs\yҕ(U>tj>&dlA30} ;=Ih\BgK-T/J{&]MI\&GbME5mi_)p2cuQu:yS1~P=.t 'QS#>AM3j S"`A|ٖ"uY9sW{kIpsPK2 Y-V1qcvڤJchᄿl0H_Tq;ϭ{䨎@t1НD{y>q;xbE50-t8ja.d0ǧz;p@n\k-j!?iߒeqrX'U><8&U>MMl~I[I=(T/a5Ć_ỗ4qaր{--ESJ:Z ]rd QCL{z2I#ROwi,ꪇgkD`*]yB*^L  q$!1]ߛ,_]$%]ߋ>6̔)Gt=ʗΘ*/ң#(s/a2)G?>>k,h5tʄ#lh?N*6sL^u\VKP nѽ[׆WoO4P<ֻW{Y %t2x( )vÌhx{o1+Xgu ĕu%gd_[jB"s'Nk"UK 1(c:1jbMQve%Gu2\%+4){]/L`v5me8j]=tID1&џZ>,*(*ڝa?+qB,8B]{? rՐey:b3.XǮ5浠S[,R]1nf\u zrcSev aҖ) vO.@YH7/-t(4pG{32vzuQn[wJ<Υ;RLT}$M,& /o\֞&A`Iv9ab`ܑmNY~| (l*;6BbI-Ro b뙥z7-mSTAQ}(3Ӗ׺B_b/d .ğg_3:c$~fUUeZ$k4Pb}Jcc^ ݂-Oj*6DH"T"װ頸@MʭM^ !*WgH:  NOmV_|&(= ZwdAw?r>jj}CL ay(8Ki-h>&݊4-_%K9ѐ}4j ^MxLnp[sfT(xf*ܸn,]Hkt. =ZL,ښj)-;9o$Ǥ)υ(M+~,<9YrdQEZh]$v/ B⺈M={T<$BkɈH-exn7DNqyERhӯD2u N-g !TxH =΍N(CXD%'p!T [tSO [% ^1+ƥv]ukAU#J0Q 뙑ʏrcP>>n{{6r"c7*iX~wH~8C*RtlL u%RJ D;RՌmW[F` azthlc&AN&+ܤM|1"MN!Z0'/ l΃HڄTpWO GX<[T-cUo]7eyK jsLDk)hj+z(nlo|w?2X=6ߣ6Q.P!XߊsU$ d%α *+ wgĞMv: mC Os;.6"V0HIWb á0adR;fj& v O{y`+yfp+8!=ŒJrћ̛- ȱ7;w3p8J0K;PyCq7_q5y;j*A)y DoZ.K; InE7Tfv=htSbDgo08SSR|E4tnP")RVuӦLno71*-)I^<At@^jyR`U>49*'yBe2V&5ӥ=Mt˾ݜ 3l$`LUN)Ȧo;HO %Z4 U8Okqwa GUګE3t)8b0JΎȔ,Tc Er)J`Nr<[7/t#|5a $Eefo_ursSೝnQw'n6!Qd54I.b4OZN+0b4Fy0x$b) @=u% :۠wZa܈gE{Dv3fN5y @Yr sW@c Fܨf#3pbvq:Bir / EH3 P}5bmvn)hUυAjy]cr>=&-K9vv\Yл'pӤp(K&RsI+ƀe=!we|851¯MLn%M", bUi8Pt|+ʆu-z•0If$oog?,kFٟaJEmo{'f/lkHl? Z R0u]hu4΀Wl]9ꜷAz}쒭&skvߊqgTٰ.)mw]*ŏxu](SMpFIMP8FbzCYk1*67L-"݅R2&+S$!s=P9İ)BRW4 %> YxM(r{ڟ7 V+ =1*!2ڻe᜿)>=KV'J@w-lWKNQ蘰cVA6ٲ?J^QƠP ު~at3dD`Y_']q!7Bl7*Y_1tiZYDMBl [.ҋZ ?Xo^'=LDnhve"%㑏 UjN)w 3V>DH[iDˋm$s7s&w>Y.=Ovcb iV/,35fQFOK"&o19O,3 , 00"+2&=LfB^A:#73F6[0VF bCt䕕+kG- [jCaV쿫,aź@4`֊;NZ0raR)~SrⅪ P@#l*9P0oi=hYNu)L(\^T!9 %K.FCv^5M(FU.{ uP/Qk,K6.k&47 Dz=R'; rj.ذh^J 0aZ~*~OբDQ xQFãux†1Vwldv]zЋD5)Ғ͚\-P9oOQDg|ķGA;T02>/K$ˣ[ܠ`/iML"@ %|/Ck\#O oNIKV쩾Gv#`7$lq{|n@NJuɑ ]S\ün(Ng)2d;IJJԿT4XuΝs3=E`eF/8 A@Oz3+݉Ӎ?KP$ʪy#v^HxiI~ZN:xǾ.YSL XrYoo(T(bCb{+_N=sE0-v=!޲rqN3oO!Vhm=:F1+Q#mVɻ/xl<z:Hd2v9U7AHZMAj!Q'wY>SNslfZhkϢ8JO,nsVKkU0£%Y}]i2(bfOz BsafM@nGn R~֩$s~DKAk!T'6|YJ˺^}Tσ&q]O<@PVCeܞ4o X1JceOT7RHZ\ƚƨ9itܼ`,O%`ۺ7Pt%f}XpؙFEڡ&:pp=ąIhN׬_3ֶ0媠aɕɝ4JeIqp*%4> j)_IwMڒ@wo{5JnӒe-Og/8c5p0)X,*@"%t4 i>o║00b5< (IÖp hW2U9{ZR;|:|3jф!eٖ%u' ṟ ܧ(fTf08п>dM"38GnMBT=_Wx_}5}v과/pEczN`P^%4⠉Ȗ`&dկ&L*:˅I /ppVBG8miIl`6C0m=}FIf>^fdDy_r5WsOt {ilȱb… əf!o{P*v /vKiTSxiEަdk АtOOao+IY81v 6J[-wT<Ň`TsK\ Ʈ g>xvw*`B&ow[Һwڼ%{r+fmEYQQq &'a{zg+1~zaLʼngX'=:XO~k{7t2`JX8%~>K6EO]{&dV~Nɧ.̸ǤzNul|0IB-?*֎6-|hЈ6 hu>kVT#Cgr)*›@VǢgwQc5],ntϴ?u yC^S?e@3P-CT7]5V$a*}tK]5J^G%[GodG$WfOɸt%j0/W6J wbKYj'ۙM _H9kRisf#k І%&WpLɜop0Ԫ[7p58zyxl8!]`~[@C~uh7fxn:))-mbRC2r>ߢGQD/tx?w,'km *hP J qٻ߱&OyFҩ}{z}u&DFFN@AZ} 'U꿺0J%EFDJ8s)IZ): )J$rE˒3&WEG:Gi[ragN&bi|!5_؈.Mc,No>W:O `pS;(Q:JpCGDx;Nt(eekb-Q5mmq9"7T eG)SށguL1Z;jpA_+]iUrAx$E]hd{` bWȇPv!#Ǡr웨R~: %<3 Դn rF)EiӺ $<4vQegyd⓮ATn}s‘z>®dብl0N ֶf.5M {<́зh՘O/I  W )ld)ntHXeIHgvx(蟂L?7)]6RZ T[0 ,i@“'əS>fH:„h3XMZcث,D:~=okPoM[8ӈ/F..}(DZUum$ȎZ #.O܊4:vfThXw}e$ԠgۿbLWtVXzڌnO4Eb\sF% `XTOh{a,~SPƋEisb$yx뷿1bo_ĭ{52ji9RD\P%Lʥ+>=-7)+Y@-7xfrPS99*`Dl̾zt6Ý\#]zO jh*u augׯvJ FNkF&:qz܁O'{Tb\A7C-ŭ!@n:>uЊc3%`hv4cց+J : Qrװ^rgf9U$)zɨ7z.8pX Zq̀.R5'3.{?|A'\ug#:2 "g=#D=Z[aY >XOCUl,ILqq`8+ȻiS߀ᝥy8 2c2U!>-#*tz G dE\!FO 1,m]ΌUejfM HՔak9m:6z^7,U$בziA' 5"m/D.:f,i7̟OTD=t 9xR 1kB6}V] vi-CXڿr1fD=_-v^#YGOI$+h>E$X{#|U?ۚb꘻=v8)+|wkC<ʅr?,g?a]TĖp! H<%Wfaq#̀4kYTARcb''m 9Nl_T{E >ڪnd[} K%WZжŢk"dWFS֗KǷ tFlSիy抺R}bBN*#Z6N|B6~fq'ߢa242N9 > ;|L&=|sS+8[\Y*{\شHL}7ƎSXDدp>iCD *#lB| k oɴ/T2ŰxjP`dC !zل6fe'?)@`3Bv ^c,(=Ff͖ژ\7GGk.p{00{1IX !j7fyKf hw6wjRy!u4Ӹiг?qtk}3J}sL8TԔ#C%3_D),emE=Ápmlu*)φ٥I2;q`2ApuE< naF4c(LGO"ZspVޫ8).:QߞI^L#Bf(dQ#.uZQq+w H/]l>NPRB[Em4e &-װ9N'IRg% ~P{ MJ&҄ML9})f\}0z;;I&ď>VW1m޼$8=ހ0OS~ƍ$c:S$,bdcr`6*1]N8]W\,.~ LMNGVoaR*t@)~'Rur1nƦV:mQs~+D]YG<@1'%}Wuaj kT{gתD{XcțYZ'z?][fuRbtDt\65X, PɎ J_(d;)o7=;TeVBhY scy!cw+ʺ $/Hk y WgA}a.a !Md)*bu8#"yE|:eqWI7˲Ah[[1ݝ{XƆr ab5@䍳S_ܛn~xgebk%YowI8lH0-uZ qJ0ܻrWFôn>G 9XJ)b$g'bg]WuSfܵPʅ% պj Uүld.ʋ\7U# "}XIx迠jWb%‰Х1I[[6%Og6.: }bǪTTef3!-$&偧A=vvs@Krmɞ\vQ ƎӮ^ߎ6T,k`8fޘZie -= adY~ 2sbi%͘|0/.vFמk>K7J5ǞtF&:vh#p]>;J>d3 $WQЧJr[~-!x<=`ܽ["fϤ:+K{aY^%X١8Iۯ!MdMNp  o/w0bJ6v]EcTQ=|fb_DK7Hf\#㺥V8c= %.ONu7-rSURc-:ܜEOFLNm$uphcHj=1[K"}Ogq'6^4|. &՟'G|cN P@TTa" $ie @kAXt|$@NiaG٤aӮHvv|KD0ք J`Fִz#*ĵRVT)$n/'5qZ87 iN5asl/i7Cjzq T 2FbtFONwsYE#R=bSf{!ORpLҞA4"\6ž/j/>/=В\8;u¼kY;M'g%\گ9 zBd)(D2][@3cdΰ&I+ #jVe&lZS0U*_/Hxr/vwּ'(/j8S :p6I>b g-oNKs(]N?H0{QX9Ls7.eY xxUj~[Z0\Mu'q=R~oƂNLZLt)l:Jr‡> rihR,V?$aW&ʠ G*W@{]6"jz8: P5&sQX_o>D>-،r[^LO᝹0XӠ?WE}oE P,)\IQXG=2 K*еATёxt9B ? gfLY1I0mG_+ )d*ءWՈv'Yӥ MrtuX!08J$)r^&wSJ4 BR %5G4Zx~:D̢tٍN'cc=$˓< 9vz40/im0E(+jD{ S)U3CRv½vuC.\j=E P&{زֈ?TDZA_[LwrTG334l" gt ߲@1R?t^=UWZj)ZTveydI*ڦPc#Hk0HXv'cſf }͑1Ă7{l4ۄx$#~Z}5rѣa^Se`*aú)OTR=\-|5}Xh_2Z@9D!SvRHTgJY@r`='_J7Z|ֲR=[[Ns<qxz[0jk`x DD[X4 O4/[j/gJ'E*+ڷK[~eU?iǨKO\wFu{qaߥu<3ڪ&B`bPKhe~(j7l$G3/ 8pYY!.SՄe3wG)?OPaLTd=si|8G-]|L5,Cϟ1M|TmM L*hǢji o0!CDK{+/rɳ :F5v l 0𮡙/ dꯛ$pD_\DJb0j┳ fPغ&c,Q\Nv<(Y+ KRYpz~駛?QIdea^E|,cL}"JIK%OP4qgJus<bN%z EK*3U: ''HR|*N H >m@WI l5,"4A>A6(bI*W)ȉ){ӣAm8{2aS)^2v'1ÉK+ӶD+h╨[8XF.43R=?rI.j$ujPQww7Y5}K64XBҏ`[]x=K߇(@~ɀ/}e,sלMA(}N]XCۭ?j) >$5W0 r/:"HS ۰wZ`̹W`G-#B~,ٕ\7}Ĕ#)u Z)Q}3měګiΩL/dZ+mC\Rbb,\!3+@85dmvos:+KLѐ}VXImXJ¤ <guMT8-ol8{]ވ`_?qޚX;,OtX>/CQ`?;NUϾe{$t.j4gO ,tzg&u}nT]ŴOy+R"a b"oC=E0U~×7.K%sb_;#55`Vstcdsb͏$KI^Op$X"Ql EX'})i~"iRdD @*yM3 mtd]4#Fhr+{"8aX컺*b)]G¾зyKnsUECe&4dF,ϭaiHlL97PWuYʞ }-8|ZͤاeHN۫q}4n+>IŌSurwﯼS|)ieW]6KV{ j3xu-8qo{W34 zlgGPeME`9;HlrwWǪ~h5 `sy'VmշWWM:s"}^z (4Wnhqi wޟT*^88ٳG.UЄA}ݑV)GMf ZeiJ=\RD(O'~ИgTvjf-}F`X?I~2hkM0 qh긤$$8`姓nsK.1=dK5lr¯k]@Ǩ@g_K2̟p ܀@)DbWc3&ywJ,=qrZDo{yⰬb)[cqnyWv{7XS2NO_' ye&1FGmh@j-D]iݖ9;oA(oSmYͪY-V1嗁g[u"O24q#Gbe3ӎ& %8hMh( /zㄹâ/+=j0+Y!Ou1.1@G:ޜem Ǩ2g/Q3JnhoܻZ_B۹- 9;} /{y+a$H??^jw~~,pC%-w&8]nʏvP7\/hܞUiRF~&"qQ*["):ʤOd>ދO he/RDrĚ:<%uYxXw)[BaT܃A9@lSAɭk0D; /TOsdžO[cZg?SNd;bXBMV݉q$d晞`=ȑTa (C :@4VPl zQ(PJn͏k?mS"a` q 2`R$l6~;sxk8Q,x`x$璎d"RMa 1du2~K# 47y]{Ռ^턕röqGbZ~Y޷&saE?_Q q(g:޻qhdޕ|eS$~ +H[ԪWlPb-3G((NQ8=DRm93ͷ\ۻ"d r݋_}LQq O}Q]';5rjH*I)cw^b36"tl] ,m}5 j6Gg#,ըTl]u(FZ+ܡ̘uz!>ȱ«KYt}ʍ#b~gs@ժYm_Qe Gq MG/h&G( d9˼Hb޲mrbjx9҅,C-˳޸/ q/ WnS qf5~((i{ ,:6DǏ2寍p+x+si~?@~H$ lkcNX {8C_V.| jn6,΄y baB'b甭;K25d 8z¼8C>Z`ZXr 8/)3#*k?;H(I&xv{$cE(8@2 Y9eŇ C&XiPTRO.ż5(h]Samj%GlHzJ[P zȠLxRh`ܖz cUh~SFϘ^.]Vpmu~G ~Ֆ$rG$iF>/q B5'oySnV[rF-pYe !ҟd > U e;:~%D٣ 4_uAtdrQF*;򍩳<y>@7EշʕIzIL?[1DŽQ}H˶2=kJE@B/+$?HLvm(lJ$b(h߾@7JU2>xa^@ lč]ȯw~Wkq@{2gw!fj6 }䭱C(0CVChungd̜ -kԤ 7F>&֙Uig9yD35dcuf!me'&h:[U0~ K| wwҧ~7@ _'OF8ەa)bRe#O,_Pim qt\P[SgI9sL 't9H(V^.#4t1t) yc#r;XL g>D< h08U8冐f>8`[h5d0+E µ&) T6nid:_ϖCQHMM%O 3_Y [>k#@s2hΥlQ}+|]VYQ8A)oaSYo~ 7 )$gJB,z_>MwyHUߣ| 7ä&!8QQ3йv[CЌtʼn6Gh>xњ^Οj3ʨ̠*iKW-C͈ܰ7zCZ|KHuV0`Snŕd֊݀;^Wu8 ci3y)]H܋uc9ވ7+3磚L"@bٖI,J5r#h8JL0g"BjojU(ɱp$(镴ׄfFI.&$mmKAa֘MC"xu~i3"IymxR^h4) RARH.<vo!pońv[MS2-.xΆ}^K8*0SAK,1iK,c!/&^#%-{5 p}fQZ'߽Jn> ?[\ Xw&>Zf7|-uWdGѥa0W2Y̑3/^}MyuB}q ,`FPKtg|Ih O.7b!6/5Mtղf 3ZT)-&> ʠ=oVNR3'<2wŶ2|91f9*ybgrT3s+;P "8zSȐr{WkV6,yH'FCnT <"2˟dTL8ZyO0H0q1+vFi^J%~W~XUF5lx@`)y>fo#b1WkTwn9H4qQ2~C :uәnr1 I%u4N_-GU*QB @aIU6*Jp ZƃղK:~P8N鼡/\mKf>lu wbh]N IEjeQUNhQsſXQ"dEw_u5q:,qŦN'&^yFUr7hTtUpx<7SѶ2u"3@XbL;NU\){,{3E Y(bM$8?z.G`.*36̓ƀlrD7 Cuod6ޅFJ-fBZViJLDeVZ+&$3>;J[a,0z* u)Sm3`ҝZ,R4guE=[ `#YBb3L׵CW$TSL)YS]>Y-ʻӤ0v}P \K9]qM!d#_n;u.OMODUlU&k>Y${>nH hW>I]Ӄke`ғ\ZqHZMFzX0 InҔg"ql F,{lk$bQiWs JGט{19u:˚)Pr/F>:j'*&,]cb diT 9J`>9Q(͘)*RŪ`n^E sT%8cFhtm M%tݱ:1 .< 5v1itxVqih'JʥY7 *in?΀T_[`˞Sl%APݨ%_8*}wPe`AXs0<ǗS[vvrqOD&N/MkIS;l`{sF DcK_mQ =J1KuICȒѬnq7:k_H2֫L]25;a_!XCV&F9ToG7L \|˥\ϭW2!Gwpxu- )55ޫu+obSg }rJolEύЄ @'D/lLnUs[*dd{_xm9dSLWn2By MP{{&[ܿ4멐z,%o]GlڥmZEe3%82לs3dZr4`kĮ] | 71P5ݴS,wTܚy$к m 0}0}/R'}mַ+?!(D-V^}|LaF`fe Fhb}vxȇ灯\S9խyC|I,ޑuy#us*832)Epb2;Tu<30H42yߴbfnUdͤKˮѠK%⛇$Q^;|x SpZHyB]@kYC;զ&Kf\eRdGt§?t3 rk wnoګHfyn,%l<<` 2@lG̯U7ȁc .o5kmKu^j )" fu6ACd^ۼ D plFK,s땏*{y]Ɏ,Ya(JQq8FPWLV}bNS29ʂAVZ_ <Is~['Ԛshm[/仛[IF>Jō~A}>#ΓBn눇Q>qmd^׉j tLKҠ(a5C";BJil^7}S6g$ulǕ",_mb44X =Xr0ƓWf9BV܌ nNkB.߉L9SaZNzYk剫K>2 i,|K95n"]o3Ed9TA@Q⡇9bb8YxSL!3`<\e$\xSשe)o+H;CakX#RWA?nJoIiƈy(!*gS[9"f?3ڧX=1 sH|'KVk.1F2 GmECEw%@*pΎB# $yt&+5R*Q=_v  t֣ DF1"O)2v{aΞ8X 7n7@DA}K 42czeB(Ʊh=Bx}a3&M&1 -?ӷQ|AgU8E\wm}WEcBY{c$STur0 'GöTE q^ߟnqh}*Bgb-A63qߙc$3 __̡j,MifC4DJc@*>#1PY?w둲ʾ̗ҷڈ`HQrƤC9 26 !!D4OaB#wzYuN B8 ^G0HK)^+4BVΞA#,yɜY=&Tr%̦d|M~-8Q_!VC:nM@չ {TB.JyAZr{#"9]-$8;E.ܡ?Zuۯڜ$Iy75r%PrGi]QH#(`W?w+e' L|c{2xF2|]%[>`Tu1"Fp{ws>P$xIG]"]h6gt)LsgceMa{ *)@Ҷ6w (*8>Jp_r+w%#05Y Xxwk{qs&V;TӳQj`Ѩ?HPmN[*CRvY Y3R}N\x3/Hy'278{,Ihfċ\ɀN]mQF}x^gfl9kGR;׼%5HD6Dْw DVYURᠭojY8b[Jϕ̮@*Q^^fA/Ts&E9{TA$)){52/!31F'R)zc4Jh5U .Ug?@D@lTV>2S73'iy菏~X'Ox"(2\nOah6뀪< Ҋo=JsΥ %yKsw13nbriNu< Si9 #ZIgwGV-pFht@ՎŽo\THƉΪ#b=eǓ=!q]Q.u4=\kv2|Be,5Hٝ,] lk-NvV>=H^%7'"[s|[yUWmn|3p=x貶?=|] ğJM=Xv{ɤY66mj, F!j-l+SF$ a7whce{|%m:dVOQ L'L O@S^1 õ Fگ <?-g+v&@dm =t鴤W^aT;>lXd Z}xX@o!NK2]wE+Ÿf`1{ȝ1GH}-h%qŇ}CT }; TJ#CNb|&[=hzKKcv؂H oR.1*ЋGl4q ++ѯv!R9 — GM] ?=S08Mǜ0!xwZIuekE HH4ṉx+wJ402@2X IH–+!9wc'Gn :mڼGNmѷdZ)@7hF\D1LN:o%XU\Dz^/g!:qN\t:i?"b}<:$psX>t$όQʐxbkp5xĎ$qrǦ 1"qK甗pzT7K❺,,ÖJu%?Әz}xP4QxV6PmQ݀ Yg f_r>֡d[1RxrTT lG:.&N O &Fv 7`/i\`Rw s0Qe?X*iq鐐|U  J|%M oGP\PNU(7q^WHUsf;S)'Mv˲9bɔFUA܇w%Gh@ nФZ \VMq,ŒlX/ -Lz*r?%w2k^qc;?ʞ(OMM0}[]Shr@>2Y>|}>pL 7[s}BbxIV5MMċ3_Ynp6%*tM@yZ84$7)ǩ//:F* !OEf ]맰}4+b^yPd#5LALZ ebSL~]岩b~IHlkq.>5bDIVR4gz3W7UBug Jo#1W튷̀=?JD]mzk߱]+$e̞%y^V7OG:}Ha,5So3Y2\fYXWq2(Z# S|7Oq^<1Ep|B$\ک}dl$"g۲܆k Su +{mՂIΜt'+JZ"&b?LmZB/FFwZmB{scL:r*dq^%`N*+Vly9W\F/OȪK4Pj(G $IUģ.b) Js4ݗf4tاS툲uvR˲h 80(1%2:G{Rb! qj@!Cen*'+W H3C53$F"=^H4!QˮmvyJK.N H cPn׈)5ejPDzuAVv0T1Sӕ7x^8Ms8K΢$*njfAK3]]dB\*:&q.Ќ[sWք|faGBscEr/>dqAƬy$.9R@AxĒ|D8l4vkvFNJCD"h.H^U).KT`-~c N'?{g}2v(:;ӡQwXQT.upjE-۾h q<v\$ڙqn %f=L3un}R 9B"uc'48=֣Sع64y(K2^F$Q&=,w=.AS,M nݴdX" i ^σN?'L6Lʪc\[> +ж:KN> A  hկVDb[PUJm>FJ/A5k3)j HI!%q7F$܊LC_] Hȝj$ G®^g$~RhbQ[ :xtEkKiͿVW]/ mX[D{:&ᆂM 7{ <;잫M.+7co6:IJFզ Tms&_RLJj1zN}ݛj ǣ܆B4VD#H |PB 2L#IRvއ~0 P'`PMֻ3OmVP%<<&-m9\?V1ۂJ#K]R%C27W|,FFhQ&XBCA5 :]+pZht|ù9 "ݩCNeĴ܁_3@.\uI@Zyb&E*kI ô0DWD# =P]A͛%1H@t´,F^Qk'JT3ͩ#YE2|#5fmeʣXH{'RBVi6^Ni1r>vʞzرyʷaFx_8 q`" KPFNGUw ca؞C\ܝv߸ ?M_)j[a(0R|y°nAw/ٹ>i+^GѱǣoW .1b2~]+RHh80yՒd !5B_ rpmʭi7RBhGl btt`ӷ(߁%rgĸ1ǞDRTK-50eaZy:L'WgdM3Z5lћ!w`%qHԜ4$4E: xY@#hj&^4%wwVin[upVҬ ^hœ;o/[}BDZQȪΥ˄&k"N(D4A>ȝ&tȠzD5 ہkVh9:0 z:âMl:Zwjn!6@pz')^+j>+bġĮ AH,V@:Ճi _9?i7B oaYO'n>NÙ`}Y4oNi_)KZ? |eg  0peeII}s9ɿXd{'{,,oJJF,?Z1N4.DLBtIk9Iz<JkH; JF\(V! U8HŒ=(e7(;Ig6D;c1B ]ӿ(e*ب5]7p/7 j%QtB$㏉>@x{erwT4 ? S`n|vEjUtGv)n)Y,  ZrqsfZiWý\>ΰ%7ވݟπO*H3g/,>Ї&"4ЁٓFu}a$UAzp"reʧAgŠS{/us\/`&MrBy.I#1Gd3 #U 6q^"=) )(0Ԅ,3@#AuƚDrf ,M\~xhs*C'2ۇe}#9[as/9ciQ |O(-Y CAR8C,΄"V);x+qb>'f{i+:VH}ckrмkأm.zZGI;1켅 noC7kt]PI+ Cמ@:\#<>y``4dcLg2 [솓KoVAפڊ h9G+4<U-Mv YUH~? :9݀tF9Y7Nu9 Z=-tw1]DQyE} f%UrO#an{ѱ7UkWE"eNy/9ǕSJ}K&/'AL*O!5\XGqCy[$39CTgL,_oFtȁEӨ 8D&Gc [ ƄFF5 k6! r7d`.H.Т[kg\z'PR|>41ubQc&mIW9 F=|X[G3'4W:4DŹo _ @R8)k ?!@}y1x^i#ڄZef׿{sF7wQl0$q{Sܾ/v'`gU QR6.:SG-7nVɺ!ߏ˷W1ʡnHx*9@Bd5r.V:2*R#B [i|9_g'oF ݪj! _;v,hǐPmumKƽjGYj'.ykt:q5ʬW6,![ʪQD/kYPr/)>M.Gp ü۽(B6GSiCQ={zFHn6X+L*F g)sLjD4A :T$8vJ]- |M{ 7[rFHl31Kƙlՠ$w#$;tWjV 8L`ieY6 UqY,N)ާ^|Fݙ:_Q'A+CMTqPmOO[[ȥOBQku9YOJ:xbf[]Hf7gab@9 ?:>,Hya݅(d 'zE\q,=%t_`+e Ml{z.n(?c0s 7bX,/┟BE qu~^qhխ/5].V4~& ӨF7v{s߹\vt?I{=ߓD2:,xFMz~ƫNk "3v\s{dxw#-1:wiۓФfsn){6̚b:!AĤn/u"nw`M=+o@&3,lᯟFp~Cú_|9r3f&qy[]cDX=_NN%?H68$$? -rMh ŚLLiT^iaH#HYK <%ne1B}"L{>蹹>ȯFFG0@AdWWc}*&Zk u|cXX0xtc%ODIc1߲ m:Pm!wސm*ҥA8(43uU,$0񽣆ya[[y mi]1_ٹڄLM ;BgV` R)^(+v[KI/`iZLjcP҃n$E 7iO<C^Ctv 24oXxiJ-FvWFXF4J;s+FUz|-Nd>mJ^mS20#J 4_]rI cn{n{Ƞ:p%:Y2O$] )y=!qBVB'6jd ^BEdaҟǕ)Pd4?00FL=tbVO[y(whI]}˫ hNv&L#-vY:w!Fz{+_oL PQSzU6Ɇ[sŇd0W$zfjQ9s3jBx{Z@^"Yi+SP2QcrK.~#ђ}>eg.$暜f*ҫxZ* %IA8Fe-T@^'Z$<,Gϯ1?N}'JL:&o:x\GfT7_DK*plX*G 9%zd:զ5%j}knX&Y1vI'бm}<@sOd B\NK!ln`4V@=3tkSJMyEiW < ͧj!&_BPoY7J&*B}I$yz{$)RGLx_,$ GƆł~/h@u>{WTh}Q)Y?Nܸl1@zm>c`t3+6{:-%JW`)h\4InlOLNc8a  KhͫЇ{$I Dw<+9|O]:b` 69Ǎ؋8ypM;EďgO-Gy s3{BFT!i?V9/}5'?lf"0We-aooq 6cȆ-q-D9L0@0& X?)h:(e O-VGBȪp8UyM}|OKP3ծH4k.<0=AL4wPZU{l5nA.~ەfH+?ҚQ *8MH",UKfS2Cfb@%Kr/c517'eg_e xWWdu&̠eZݯ9mZ?BuC}֟6_?d#]#j(Y}*chw)XaPԠGkp5:@Cg%r mn}}hךw{6,pR e? ˏ^MjQl][R{HLZR6}Bɣ"0=wtRoCk+zSy X)of!s3]ז!6_[Ru퓽fMf+]@BguDh{ cLcyړP#mca3 7`2`ߠ8*ԁo0¹§O?$ ~9ᦽ,z;ϯ ؆ߤ;>XBBiE5g C5ʮh}'u/J\R럋#K;aR/cGK826 3ZsA!gƦ;Y] ufk(cjÚHn\\cKsV[sƹJ36;/LBƘ1ÚV|ئKԱc3gL?Kk<.1 )<-/k 1I[7 _(D|ç/C *ER*+Pk,Xib(K!?W`VEoɂHؘ!)68=}%D3A5U0Tz.pꀵ7",/V삝ubH7(50,ɽ[ŕ.P!Iwic.c{f, AjsR Y/O/&Q;Px  /g|jY(SEĎsguƌV`P$^"n˚ V.vQvIA ٪57.IQngη<.0Ws"S”vxE,Pa[$pr#Wݸ̟{WRʾnsdXzPP^dx>^J%W*2#{փXh}VkFʛ*r:SBWI8;vdS>+¥jq|PbG'iPɭG \HXpDU-g{/+Yl,ZV(;:_JIth(>8D ,m #mQoW0ngUo(ȟU|65 dayb-=5\J[vlx}iʗRؔ8)ì^mԿ*P(Dkh{(2.,0ؘ6t(BbI1ZG|^Z꣹ s&zvb/cA 5x#Hȑ9TEiNwzKBv u>BXDzI$✨% >\c@^˯C0gd+V5>?uV&h8=4N9#P:ۚnTȩ1\.y6EҖy)ijƂ Rv̍AᏔR~̍E`jkt1|$xDE`']٥\Wϛ5]lӒMUc Jj d0%1^k+'eK>}A0 ueg^ꕠkH!vp8$R lh c?|Tդ$L=-(ձsVTR{p)uY7s oT! y`LB0F^! NASa)8sk |?uk\ jEo 9R}PۖԾ!x,YUh杁;Qe"mr^`my(MY Ժ8 $݅E$D=(gA]j,X9j2g5jUc9ZtpD(r4)_#fվ@[̛B_tۊ"U Qf~ČP ?xW8nGjj#;a`KQ:ۧ){^iHh'بr !] qe`@C({_T[L赓ko!edu%4ȒgX>4M}(?)M~4A??ne>·Kz5ўW#Nͅ 5ذ¶-p+apEȳćb-+N&OmǕCutYСd O< =6T#ܥ磯@><Nü7 Wa8(,HS*tY4Xipk -0g+MMvʋq˟ <1 +*c. LvBg_Q߅]Lc$,Ҝ&_Q-InycsJΨ2xY07 "L k.*{񘣈lBhj^.3 &Oɰ1TɈ#e~ECbs1E_g=c>sVDAb2OZLJL.Wv 4:hv{k^8eakpJhOYJ|/q5:aR2Ċ3gSqUbS$#[h$IIs&Be[F$9iajhEỺ+|0gq͐AKnZ\RkH+'ɶ =aYp{x2J('f|Ѿ|L%W̶ɡ PC(ܮ {Zmoˤ٘@pl"eݢ>/;yU4&ywb8o\Fqm ^iϫx 7(xR\PccD ޲;KG.:9pg,|brˏkV~Ц&4R9D? %ka(Es QԮ:eGD9`IZobw-geG|9:ʝ]`*]E\bZǻh: -\H:usg̜p%.+ۭYgAxV4|҉ˋKƙbfbb(FVʕT|9d]5Wsx*$8;`hėc87g.g%{҇zT hKkC ɉMl1p A)$ p϶;+I?kI#ӥG+(1ɪ d=d1!*WU˂s=Y ̱"Zsװޱ;j|#\cdG br 7I:k#V"(>U}'Kؘһ< gT)ϣ@@Q79evBv Nf7\?b0>exxn .eIÏ7& 3oɭ#b՚waTlKBe&\ 186bùnl¸ \8FaDoSŸ+[S%iy:o^@w6<7 q_bR]󅍵+3e)b#k$vLLsFf[Q ec}\D} w-Q BwP=DD`6k.ɜ$6OB65 z X+nWX,i6Io$O=PߙȐCTκ9U`oɝUɾsRyOx%^h8'cH%TIj~O^Ə3!ݪ6 =8N4}W8wEmYfdDR{=F Y%ݫ>Iq,?.*-kc҇a5>3t >5b_j<+%IbaR1Q[kGfQzd; #e=sGd腓 mB#g);})힌ДO!6Q#/Ҍ'Ȫ P)::DqV֌Ol5}o:WO q"πz-+Cq8 +]ihj$gRőL0̍wtDU&{Kraki/d pwX&9}v ,cLъIKPLccH*HTR9-ݢ/RɿۥCiFڊPBAnxGfnPpKncHzVaq~& baq 8\}-M6{ce~0}|*Iߧ{U:oHןytť3'8JAtˮ[ R4_;'S,a0>}'DRT$mhs:? Ի6'FP;;C4? =(|qA_u-=#PH eB.8\Cv`5edFJm'g߹ '7tV qA(b,@,^:fb)᱒|$ޢ_-TߪT*ք [mm瑇 t6sGO9 92좪e K)95iS9ωwm}صO\3X8], ~N"s5^Mzń@PT! Jn=r9n!qT4z`&vy3|悗*RiIљ44~gPwjCbDưEDZS"w :DjAG"Ұ»';sc=옱4tV{S*wREq+l@Kt;`QFboM8t$sG1чDx a]U+vȸZE xV=⯗Jo ZoSEs+uf{ՠtތtv|( pzz6bW! sסHnS~Mk2fwĨ 2wq&Oڙ81\&:d^wiqF/@ۑuwrdݣQU ܼoivo5sudp5FZ6G[={SEI8^w I9{to)30҆z*s=WLkTr]13uMk4-௻/}nYєNBe8cFww~]Dx+U<aĚP9h5oʒ4h'SL PU't# Sc fsH7!k{%W,:pT!$OA:ca  !i;v$))(u8Sʄ>rn3&/^p(ɧvmV'}s++RXkz`Q: {dkBB3ԸvG<6~ihe$o5-rOw}+j`dLrŎ*2ȉCFx}G,g]šFeGJ|3q!C/tXPpv -jPk&oW($n?qE9R}[,m`WCQ#;DݏGy?ԋP|TO%dO#! ɇ'aBV ӘqQjm-zx~ڽ#: 'ѰuZCku8/0SA6-oכ͛;<~"RvNc֠5Ë.4?-K`V" Qxpaj.gC IZ;JL}<䎆HG ) iQo25}KA\d.eo[dj.w& 0;3qsge|&Xcwv{d-4,0"n,E?ѫY>>,.gLZTS شklk6=t𮒫@!ВL#Eܖb wZ52sBK<T)ŌP$FW:yéU C;T36<<փKѹ9b1yVC J xk]<“mGb+MVtъ@~5٣GT:[7NB{Ԏ§ڑ=х"7Qrʯ辶h7|G&=m;X:'_ٴWbLL%M 0Cao7--0iIRyvrM[D bÈ܂%^z{#˶@uAI׿pLG.MQFQ,d/t?6[Ucr¸c8 Е # SzՙW^mL-Il2hgasN!u˕鋉A7D'tcޟ'OhI2{-|X@:9n;]TCPJTOvfHeQZc*%wi^c%;q["TQ:v?hm1{6?=S:jJ/żk{eg6fhJشfhk#ӹ'bEa)yٵf;g#L~O/f-dOf]Ί0Au@sJ&&Z!I ;0U.ƠaoIp:zUaHeV1#zqQ "Lpt!SI!s4Jig ; Όc.-[A\!C]rGc.(0vh~ӣk1ď7Z4m'" {vkjJˮaY=ZPb9+NN{1bN3ӡ=-vv|'~[Ta/YsV5oHBR45l;;J0.ө{;+>a)R$0;~lť@ylZ ZJ|d•8rK0F\F-c= =r s7U>1a7lZ]:I G<_K*7@omqh&#_~I}ttzL)wI*:8(6_*uNӷᵨdEpzwfDPHuq7Zcl 0 oܛ/_N* AWO`?8ЮѶi0ZM:hJX`{wU7P?Q{ ) R %~85#_W>k%.\D"5Kb\V Q =m([qZ&) h$]y1s#OT??Ytbw=seN5 HW'NB/ weИ u[JsR<05CȖwJihH;Eݛri@> KX;/(sHt] iAw-:ch20q:wƑ#oњ\#,/& ?vl+$(`YzVqR̕|5#sm%~6cMuS8:&yOAb 1L֖426^~S)P 2\s\jj$ҘGS$+ȧ$I )\iy(hr XK4 LjD:w?Eǥ{qPK.\U+ݨua&?ԥ$+; q:MLy;Ɠ$wXbeG11P=?s&j0Q@YHcXSDn1ﳀ$[ޢNVɍ*Dv"6ET(gGNM[%VN\jKOMFksD3B[(MH/ϺKk1ljc'{{ sK"r:.\FP\Et ugDjX0\:aT¸P1>|qu8 O3[4,( gCSӼe nX !zyp_~Uɞ9F9u`_`fhrI g,I{,s 'vôX#ľ޺ AyKgl $w5\G<5oyvyΐ=Acvgzs ';BusqѲlS nw*Wo%@@&G~8O YO/ +Q,;Ť&#nAKrhSUs| vR┛tԕᥡ)'q:h7⤉l"xMT<&7;1b[j&P͗k~P zw JJ2%Wb]铸ೱ0ToHj`d1 ݤ8'7HǬ#ө~ZbR hF@$ٵq#.iVRarP+ s1ӓ6{#$[SU|B^aS+,[nЛF KߛI0ސaIb|;ۧ)gA?J>/-{v4dc[Vlbǀ ڐ6 yuOdb4h2ݺ+-0ˎ:Pwlr|00 A@M3I[m[hu=bt&@);h)gS>_H=K@p'/xMms[~wx8ʡ8TTH_$˘DH "f 'V$$73G"*wgtrYWb4;߷-3CJ((Z ?5]̙ fWRPq)pc k m>rC3,,^G0_E6R6/gw +'#!J?`DM7AWXN1&6Q!.(4Cx+TfV=.3ldh2\,Ċ+7[~RqTM"!䅫őCl2]7T.v}шÄfZ,+vj|4܏؜k.?M38OoDٔ?Ҏۥժo4Wv0ltsRI$s}79XGhqn~;1C }79 >] (fFxϬZa]D"~-"Ot \#[) {'V5+讣|⋊}'Y? zsbǞu\{l7W5j ~Xt/'\>Ws,fII.5L5c)'}@4(adz!<D5vu%SSo(ܙ\$qc;YrMv+4FL7puq_8T=$ ڡR%ߑrQ iA\P6CBf,/xXcY kpʇq)KEF`/AE{p5c:#<~ =t#m֑ϭ3> 8Z]dj?j L&ϓⱍ3"9R sl Av❱JQ:Hw<%#o3zjL#ē9 'v`_^(УاbԤtm gG7G s_,-{Y#w>lo%wlMd;}1ez`L|%k.*RӸUn5 B!<+X_!/}%^j_ `[^WgYI;g^u5MkLv(#8/e;sN )`p$ݲ%m%ȐW@?uO4-&R- iYq9(l?@K6>H©5TeI9ZFsf2JL#4#m+!c1ң]ƒ@HzΝ;C] BG{J(f:>X\eҶppfwxkDKJ} y ^, iaö^`U vȎ0ϢTz?YX4l ִo$c6>- *}3g>|O*+ L:e?fTpW>6_tbp[57|U?m=po4@uR^-iN"4Bz7YBޮ-kM[Ugj.;7P?M@H+p9IB :|O9 :FڃͅLțF A;y-0CwO.I ?" yP7:q)0v@2ҿh횠y%Mo4Y~x@\Y=Ek 0Y;SV{UsIw]U31A+QA stf%K3~[y;.NB+{%? lg@hxh7h>&85NGˬ魭=LuʪaސEj5aaќ!~%m?.{s\Fv+ q_Ona-`)fت g9"㯶z0*-=;.2)h -+lAIR5s)<vGw;%ιuoU&[)ȺLO~C=ԅ ="8@@3ǞıuQ1b5sa9 s9Y<9=ك1<(Βm" [!4#9 rh/߶x\II)"lsN:$@DN!xx*g鰆SL$,=nsW\oI[;<+`,." p`HXEjuz>U,+PޞK e⥃)"[{WV߫W!lq4o#gJ9.+tڰ&vxH/w#?.rdk-YDS3H& /=!O朘k%ONq/{XuG->.FJe:ƺ r^U((/vzQE+vi h gjo== #&{P;xq#V =y=X 5 QKFtmgw & THe_OxVFj>]ݜF &sR j$ V(֏?fWi]h W ;?Re(:@UokH9zP>="X;/u`_/W*$02Tr^xj Y bb豉-^ |)xNp="V|xI4f|bimÞ>S=|\>{;y.HxLҲdIЇa*AY̳+Jބ (3 G*ryA^Y b!HC B Jn#{H秩bhu6 I3"jn,䣰=dc<+/a | k؍>/^Ks7[46% % ~t?iZkq?oPvUeT݇9 R8CH9a#s< rYM*>qMh ę gI^nU!6 V0b L*{$X5MReޒS gE"#h<Ì[خ)s;L 3uLm3"JD'}XHVV2tLX4%D%{\ıUf2T"A*e",-@9Zf׭oJ6+7FXN*ob>#jp%ۺdu0)AȆT5$]c.p@'ȢfްC2c%qȳ2Ժ+HI EG<•\Nr0=(Ǵ"!6M#~|YYAAer'rxqkCA!~mjN},r|sQǍ1) ~UͥA|a/|1)ָ<'Lcd.|k880ǞlLkPlR0!kJhaujM0RItjǷ9ʝސa, b}ynL W] iXK,B:yR2|UGGTju@7/84m\Bs-g9% &J.[ޭqFexɍPSi3>U5>5907[q?"( 56ĺlGϩ-5-zBߞ($>3giL\71-W{_GQ:Y$S_%3D,72yޥ[UbP 3vgV)*I) ;urczS:pwQDe渐s[ r_S Zr֟!9aZJ6`X%i PvD Kyʠ %JbdB$e38 +0Q[Umʩr.irw ]:]$)* *_)SV3Idj 3j/O@qyV_>PUug.*˽GrŠJΦ2 ehzd{YoFCIwsrܦLl kseN;|l]yO%G/G|G̘MJ8 нw_JEa M\W= Y.h=$6J\VY7~%lIM}N#|#MvpFXɉlbXW39N}¯eq@t-zETw|&QR3P8ZzBay[Osm)n3{;{Bg vå ~*!WT**JB} d-⿲<)_&hn`bzCVfe("a 2.VDP~g+; wJU}GPv0,Ԣk -H=wnkg:`ݼTv0&:vf65S$]1%Cbu  ףPSqmĪy =>3 migr!`5E5](1뗥KZR~.je@hErov$)=b\*ٱ( /QfIs9(}SJQ4?NPh"(Nod諠Κ 3EUģkDSe~ke~'uFGB+@}Ğai06Зr&^:=.J6;(O=;}u˽rOO/73r5\ [Ziαd.SrSêkGpB{%C$1Y7Z2 x06TךZĐC,"p̡Xy}Sw8 D=pr6VWG it`h{۸܇A&,-ZԶ<]ϒ¸zaRs܂;5?4~-@1E2 M'ts珔m䬁/iL=Kٮ xe+`.@kn|4mp2n.ŖkM= pmP&1Dj@;цf?o )J0] B f+ÛC7k`;]NxDCdRR`IV2Jk6I-}J*()>a= Ǘ(rnL L1!5Sh8n&'d+:^ZzmتJc*6@jŔd;dk_^@e黥J &Oׅ;.(פp_IsO0proz{bZf 5KJX߉+gx\ zm/}6<&NZxFcG#JVIgo_oߒ'ɡBe];pGߛA} i2 cu;:0n3n2 RơixT˴V$e^eSm`Ste.GSgW T> PgEtk.T% ]n*$J&y/1(*8~&V?N1Sm&LDR^9:dvEw gsWuد]UKx57 z$9#k^O20mnb;<0j; O ONg?v{a{팣J͕m%HCraK4 ۫Gdl-{~cLo}`TGh4Hh)D"TVRB?m/)@ߍ)NBH(~1꽠n2η4He;uJ>j#`6;IOhvsa*yn!M?ڱ,fO[+i6_F^fq!GxKbu`Jq/]W[('NNFzF[<#yW/(1<3gJC׿׵P #Ȉv!lPcYNObV*ҸsK4]X`Yo(Sd_R-+.b+>=)~<>X9ȟ 6LjrVj03dDj" W-1N6N$"&{`1jG5K I 2l_F[):H-O19bC|@*VȻ`7NN$JX NUuL"5!N.Vi~ڊf*z 'ze)Ꮊvv-FeD"MgdeŜe9*;ĸv($Ui`4rŗ-' U=/#hR.(uǍѤucP?osI#nLƦk9#2\w% ~ٲ"`+C/f!3>J$r$?]B *=~츘h5V;9C0C?y)Kڣ\tVV@nD\=wlߨvungXr..kcNDE<4^RK$& yұ{qWT]juu;>KHU]Ĕ[ҩv">hI@mdݫs<󏡔'/IÅsa 7B4l2܇: 檌@Z^)qZ [S G@܆oP16ݺ*N@G,VS pyp怮e)pzڤ)T=걆&8EF;]JON5ٍ[Zc,pt˜Iڧp'璓'˰<gmcMsl LQMΌT#˳|W9=p7ag#\[nƳ7˖ tJPX1 ZߢM**/!e$gk!7Ce|)+)$ik^^NhwFslVU_@p;t:& /(BVrREIgcK+4"toUeeFP_C$Cca wN͵K0<]) h/5z{/S]_iu^ԏlr,5 8Sn#FZSEw9^l_=)>J@I1сZf:o;UAd(~_XP_!%߈]f)J)ie.*PafmR:9͝?=tԊRɆg<ϓ=7`Jl$3:7@x lq>ʾIH/Et[ȉEJoP8|cŽCǐK:3  !}Vg^K&֞q4Se bb% 3(@?OwŞG *IM0Z:Zڬ%T-wh*^ܘ.^%?q7r&r'_k=J@XI]ö},`ZURoM۝sogSeTϕy'8ebR5H( |oNE;S X^PK5Yqe O5ӁQH!_۫_F΢?5W+r ZZb^4y}.*uF=}N9G|c(@ *-O%  lZm :Q{BQ)$O=i;-GYi{X HӥOh@GeAr)Ob ˎY ;rʱϽܶ0ÅYC()$9;ZUOUy_ f[ ֌N - ŞwB{f'̪-_ݚofҪx7GK;PYd &v;T%!bjW+>Sdӝ`CGez.Q/(/(EZ sH1bQAAqi;O| Mٵj5P6>XS KUܷkʛyLyN2Qk6pb{3d2AcQzC ͹"*լ-"B<+Γ!߼Q5J̻ Gz=3(iߍKi%LE{ڡc/Nӏ,X.DL]_MUrmzpw1C:zڝ}1ƜY+qM:ǀ5'Yx" zp1+AZ0]1L$ V{re2sWM&v|oOD PSW.aI NA]Fb%%M4D,̘T֝|α6Y[.hA´|$RQG9Xœ]Anɳڃz"R )Mx ]IWv/LU"k ܃P%Ԛ찅F>xzGÍH r|(8^A$ :*u l}犃x@\_i.?MpMEfcYaiꓤ {n/~/i;$.cWxC;v$@q[Z;(%DQ|=H/&giryj^r _&xDEk,_1"|́^1>V P. lBg 9Z6H Fqz(i6RC<7ba5w|r9b}J ǥ7)[Bs۰95[7C%n<㪋;`6̹8KZ#RGJ@=(Ja_9+ BrJ4Տl֥rQ%#ק=P bL$=4p/T,kAU SK2乳$x@R;Ļā|5'?Na@cwQ+q47=:Ǘ\pDvinE}5~4ݣEy#sv#" #B2v7.}.ҥVla~fc*ۣP05 ?YMZ_-\.0iqc{$J=wO/& ,sfG&ߜɩo Vr=#Ɉݱ~<2)g2q Z..'A<@gwz_[蠃H㟈~#/?_A6>O#$U T'^ͱ*i_|0S9.s#9-AFkjGA;FBQQ,}Q*/`)܎[OVGVX -$t>Ǚ^.Q7O 댸{T&~r!܌"O\buQ8WXw{o8_Gm.(ok ?יN.A2AC=xy)yl}?CƖ"HsyǖzN7\ q]H{{iHCD cg7kl%|ՇuQh̩IX͈YJ(G QV)P (o2pcȁ'iW.}W{"2o&_F-V]Q_[#lx=7"mC*moQ0v}qm7}8SMq{͗Svq,s.|O#3\Vԕ?`gL"~Z{G6H|dNo4,1 -wE/]> fA Ϧ-l>Lca 22ߙDž"&ǖ([ bӪd1U}4Mw<*X,a D?$qK{wK똀!F WGq5" u;CەKCO8NLT9XOiH\ ^2,uf2u{Hѥlk$ݝ:ZB9(B`Ƃ7p;/-{ gA~UEWk|$D̵u^/+Ol*0mQT^剳]BF;U}`) ! 墢e`0D6|ғV5d5ng N|O(i䅳L`\0e{磹7, p*nOSa|8E0xco<TT6kADzoGo.=f *X,ڄMyqRɬfιQ3>7G}`ү5>Mş۠2*])@"/3T\.E;n"%[^jdp6 0ב%z,7CP@QA^K5S,IGrAW[}':n>y$~3.I !)*͌W&HDF@] {Jӛ /֧UBɆ37! 4sVcƻ=K&Au)d|ٖHQn V*vܣn'E/Ĉ%YwtH{a̡t<,zN`CG#̺w֍~+ocNLC/qlt.`-!ኇH ̛ⅇ.9CI]AثgK;K#hc/n>Qg:k`jJ M򔝹^aV+F8 4E"?(|Dho< ƴs>md0#!})q1++?v~j 8*خkmՆ̕?,:1s@O pۅly]k)X 0 &x FeU)7lS&cLj z DtծGÓuɕ:KFF5 ,XԚ`d:o@8c|'ʎh/I ^~Mеbq*|>#̶1W"UTɠ)b!iECOѦ@%_) 7>&E:ay ӬEDK[s 8dێTśs댴?=)}NcI&!Uǰ SH!K=dɖFmpy|ٛs|twYKNz,FSj̟qb`EDYz0h!ԟL[Z1c.oA2"*p] q6 傔1/s9kxUGnW%{ KGrg'ۃ<جIF0 WZq V=L6:חiBD^> v wlS43K-Y㡦5Ց_B)xߨu~ChfO#aZoח/ &^\AA#y {w*Wa_`QK,LmN 'Rltd\ W츸{E߲X ?9BW!amX–֡=DД2ۀ+XҖYUw@](bJf67>]uVPvboG6Pz_w 8#Ɵ]!$N+V,恀M _I '83'0Ty(WLB_/qMOhLѧ3-7iآ:c Da'&Rh8GJ0jM~A2$> F o9;`/ ~>(6]^.Kmz8JW.aNUMVc?ʧGQvH:Dt Nh73̈́ժ0n_7ѱ1[tB86?r5nuEn |4d "۲rĒF ]0aO`i F+HAn/HqhA>@n H9' v0hS@H F!Evsxp:ޮKuߒfӞqJRVT6KQ)|*L-'0^tѵ [LZ*%WfRYQM 2r.W/vé[m;y߷sɡM7r[[L;vof N([6G 䆆O[_N$Y9e g:*3X]c묌!O{SZ_|=(IS㠾Մ}*B?g ݓjLo9- ``-[#\@Q"O#O**#%EXbFmv'F²ei8{VB5Go]LQVBcLl AȽ +;GOm+po.(~pN I/WU-J{+?Ktnͅh(Ix+,zTR v{GCYJѾ5jY#I&䤺e\SrNMh*3[xyuȺ\NXKIHrHOѻ^>Td86uS9n#kЏIFVtѬ(a 4QrTMv>ܩvGؑ6Kg,u#mRܔb^!+a&<ADlN6S=Eŋ'UQ}v?m9G1LZCSr 5Hsiy^gvlKv)  C"RP!NggSKM"pN}|4jr0{fL)m 83'_*0?U2LJ1K@z94}E܍,'Z`~!ԊІHL:Wdک\/"\ 1n~8rY,q$:(TiǁYbPxF+,;3gC`l%^58Ο+m8oxQ\X\c9ܓ8|}X|_1z/=@^PN0oZMkЮoȕJZ+Ĝߥ|}`F3 } 'ɞ1M!` ϵi!I >j5sb"x|B\">'sRbX8SgI$VϽ”㊘EpI'+c w p䓫e_\ hDmY2s˽Q+;dD!u+ @vGN~0/2m?!dvGT!0#J̤/\u>\;A.90;Cٻ.k5Gf]Utd"850|RNo%>_fwpXJ5~n;~˫^j1v9K:`|V+Z&x(RiÅ)DhzG|xoMG*Aق!c3) w3RcZ8N 䨄9>j<f/7ڹV@D[Ǐ,kyҙT[bE0Q&iIRshi|fh#d2g$Ce$b4bG^立hJٔL!0KD'g[ZxiǻvI gD$KMc0\E~;Mm!݆K¯y|z'k5N 3&٘kH\Fk.i&oPN.Zӳlr*T:yyU4/G ?E fr0(Cdf]4VQy!" %D̍5лmպum94q[ʡ<s~g@1YyWG h; `Jp @W1nQD-eςɐ+pc~lJv Ea Dȧˣ_Wqi\n[[7(aB=)_Yc*z Ѽdz7Y/:X.lI\d>C Br;mxHU[a#-Pjgx΍.2b%fpLbn. "X:|3+7%1ȊVXjLo32< xA 81FUk@m>s z-n4΢\k&AD'L5KS.-Q)VFiMŪy'S9M6+ emUvCu KicӤ#!+U`Ӫ Z A^B`y7EheML\3/.B B*H/CDKgBQJ{W~VK+` i28堦~\`T"p"vcDE iۓw9oT0~xq b VY>DU ,׬VW'wZ@k&ނVStHy4ĪKre-pӤtc~}p 6$H0]VdqEq Y 䴼GڍdUO} oZci(o,|#[*'a7;;#VPa+AL쟶ռrʋ@$!֭LjXs>=bi#͇u"gB\Q)/ןtSkv x<ٮu5>_՘! hEu{0n T_] Kv#zߜ7rzUKDBFe|a|gX>Xg+@l(Rspx31x 88cCMYZu m$UL[*l {+Ybua$%a(Fg&crx [ʒW6:[%S= a 2edC 5IzeyC#@Oɇ&@$FGNɮ'S=w}-7o܉#u9UTyAӺ Ѓ/|\il=N)vh~~˫&8 >G;"P3X+ghl8:7Osjj8FߚԘkU,4:J{IY}0'H6˥> ag1&D5ՙ1*6vr=\A۬+?e>̡㉻8*x/[Ko?W}46.ǷB*c }}Gۭ>%8"V~>C"Ph|VxqpdùLHB:۫bi^ #賻X9;oIAr["WĿt{ g|-eyRdeDW%1OIӲQ6k?N3FY-q7R :*\\3j {bOB1pD}Qx0L0E9,v=4LgR]6\[%iWQ!'>_3te#g_Ԓ{>&oy@W-ڜtFOE,R(E5Nb`l6RwlUmE6µFkcgX_σVvQLDhwl ?{2ȘiV`~f`[ .dw4G=r_"w]Csǧ”Ű.m NyKDI`8xUw14 [x&gQ rڇ=*f* ]! sw&n;p1; ?#?OS-j m9-s#6y- ?2(R̨6۫.R!9oMA@և?S #Eg%>"t9ĭ 9Dϣ{EG wyAWNQHدVkrL 8{NȦEFybI+HB{+p\W;E8vP%$$3`_w9$KSq. }`aMpuK]+lywNeYBVu1T=Җ@] 适6lZ09-l[5DD\kڞYTF ge?;^|oy1)ᠶJ^F/4"aXʶ3"k`KoĬ|J 2w ڈjVOճl"#p9 ;o- 03&~BDq|Dmz+j4)m^Pf}c^$o6]6Mc*OQ/@uTdz&W)`W$z\&Ė+֤8RbwHiBвsb67 !OMrj+?ӉI=fa(iJ3nz֮S2x QWxp|b]#2amJj讕BHtI'1[H4Stt(؍ k&p5a_eluu;Z&7ag'|Bl>7pTLﯻ!+?LFzh2*& XtsA_,;o~.+ؖ5c_hfiFLYy\y?}M9iɰU"~"@0\^ESxAEbtO#gM#۳ϙ0DQVYXc[u5cfyd[xdJSb!T7/TDJNk|jC(t/$* wQ% 'RnQG{e b ,n<%wzR0YAC$6d"SȍTm{2WTBz>88pq8Ņ^Ka}7.2m a'3zP3f|l؛ݥͷ:4v6/BvafP;A:<$=-OMLZQXwt>!sw謄UasŜCW_D*JT*ܰțQS1?':FCv8ˆPɿ=kCn~SL^A$o- (%f,o۹<EB^l'~НUnj00Z|1+m:z!jR7Ѳuhʈ*BFTܿ57Q)v+ +Q D+\NN|W,26Gu7zA07M{%ҷ"L8ٵu( T%y쾱Ԩi-8*6X)2EO>“^M= k% FtP.=~"nX7 j.̓Ј2}ي?mFpG _65k"a'˻AQB#(z 77ٿB8gp_!5EuC~¾0nWBN:_sYOXd%YO2{v/޻`*/ihxQD)\?uC[oкK}I+y^#gi9a#qLފ μ[*ZmEFOg{ ^^Jl=ؿWG/#16d'4Ҋt׸e|μ8BjB։V HeZ3h]N!\ek.pn)!<_*>:qYܮKsJ3 jBsrk:cs CDQƺC]_yŷpo&Zט z|86޼f@A@ʱU?F0OnsO.4^mnD$0( YtP sμ3:2a泸Bd$V_rYAʫ" %ZN>mOUrU9tu胑;qe{v#`-/&/5ֳ,̼G}{_z)ϰYzi:BE +{L]X#|]ebe5SQFua:no<]jt{߰{|RhfVü=bа SW:)>58l bn>1R2~~kRY5a+Ly4m]Th9U{ݬG@"\X2_Zր!w$ ;Դ-ls,"hYCi!y;.&֛,ffԖ9efVR 8<ra>KdDѸIX"+UT8x]`^S1Bqw.U`#/{poOjM: 8;).Zl9n㔂P?kWY`"旺m{5?\i0v".L>'h3J& >⤶o!H&&E _)j0N;)" HkpպٺD?( Tbpby42rF] -#vG'5#܀E >yyKLYC>ð8@mLZӊiA)1ݷ":ªy]X}\ ,:cMa%[@XC{qq,蜠A^ n>D̏4bz$รo?А*mГ3큪jhܙtݥ׹~gpC9&?à1=k QĴ.Y$pG/i PV_:sqRk~_yCAD'MsJ[^j+CHU0^ݻ[eHWīHzwNw]X(ȫGxk+ j͡csQt2U, )? b |(O+u/Ao֤ Yw?F2O&XU M}$}<ч!g't[-"֐TYMZ.N? H}wh/gd؏t2eQ m;'!G#s/8&BY)֫w܄[X"E8iQ&ev=&܎8r#%M 5\SњUsloY=8zXtUpME ӂ浒v&d}?.QIՙ^IQs(OuaPE}]Hg.82cxDLT W[is)@E(4-@rkF5*>)u'LjS,ȋØ (*$uU7g_*R#V,𵒉4񜘒Ugϛֿk\4ԕ-%pZUUH ,#3-y/l"JHЪ1/ ;Z*UP(w}.xͭ쒀oس{#A& ' p.䥹M2#Hg~zetq_笮c@P9huu5$GMkN;ߝ -vvgyQ dږ4a6Ge'#=u0F%2qEFu NP兇I*7pdž츈);db熈hW-'? M8[wI^s&v`.:L6bOH:}* ۗ`-;„5l}3D}>!ɛ[.عY(SC|^g4;_ +1ߔ|zT/+c:aYWNJSi 쪷6`3yqsq_r,*E$Lmn2MKOru}S:cǠ'E%Po|P({95xJN63wz`% 4px~'zL鸰u\}3*'|?'̥)Ke?ؿxsJ.cH^,5Uŏ.VTN~DvPA g_n*x: XRq-}k_E0?ƣ`(}>8A~NDo[7)%Hʚ*mf 擀zKcph Kc#tˊ!K{87*'>6(1T?N9Cl}J܏WHQ 1hGVz4 :Pg0:6&mʳY2XI]N静sTc ?:^Z L,6 L^K cgBV2%`}NXs_b `0%~kUkGO( rP2T ;I"8FxƷV4{]Q`Ͳ~rdp;$K 6"xʹ_1ݨѺj4eTofsTK5}ak%Ϣy}іr҆M֧f3 @"4g͞+⴨'hj&0u?O~\2 3j[бmyϜ~kG'E+1 sMMfk$X*qh=oAr!B0݂ݰ_}{kߢd$p*bEG[z9Xz^ZKud8$nKN|kEW܊XwrU4_~ŕ<>E3:zFvA~j]> EKǓFq{(@OՆo .C! (Hқ:F=@HGiR(Ҟi"6X@W׷Ӫα+΁H ƞئxi؂mKnӞXKꞍ,4 iDק`.aO97$Zx! Ј{N 'aaJNl[Vt{NrD?wᜀG°On`aT=D27'7BH K{Y]+y@'Wu&&*f{U,VRiBEtͼ_@dwkoٱq Œ09V(Kn,;;Z[ ^,VɻUU4>S$*P}HˍUEɷmJTSy*i=Z"<YA.ǶE'71UJėIϟo͘Qe"UF4Zӑk[X|Gqyek SHX*58'KQ EO圈m56 w7$졋bV(7cƲg,ڡz'fXԋKR08*Hձ{ռuD>Z'Doz(>βXކ$fh刎ZNdV($l3yv T!:ZO߰ptޝf'wB6 ZNyvi#9mqw_sk`T+`?ӅZXONtf_%:m~ή v ɚDȖfn':R|G0Fڮuo euܜH8$~-^^" Mv/ s oT񊾮M;ABp\mfQzX']{]AGK$1_<;,<O)$ky7Ne+!/X%!q9磥dzh>#d~G^RrQˈzԮӽ,PI'+h&h$;ѾF<;DpMw{c^j,TIę o(9фY姙R1_Wcz4W愬((iqD{۩n 6~7ts|=+Sor{p:I%O3=ݮV\\z% [8]GEɒT`t2 >(w1OY90I&M]YzXq+$m:/@@l|&|%,mznjT;4qͤ1#O?D&}l:w-XdQԞ}ut9]/.Jip.=I$Pq!7Vfm%t~h=rXa 'dثn]k3iTW]%Eݾ!ۖO5V1RtJk#˸%VףG%O{:O]9g|Ѭ;AJ.NxUI417kX7ȥ?[P֞+šcpr 5r$mu!~錓C3N}+ᗡO"ڵDԽQώ?u.&`xFnJYeoƿoh}ZPdglvCmв"{:DGm7f!]Ԟ ),wVbc״{vV:?P\SI!л@c0ٴv2Fdm &#D<5l`ΈO?#BJ/ԉWEF['#mϿɼE+-Ip*_8ga'(jR?TT d c u`J]!;YXn]>ЅkQ,߷Gǧ:m嶖p$;~}XPtJKò3T7K94 K]\H42vd?zy=XPŜd_Bx.94p=;:;hF+m\2kbNFܛBHZwxyb؇܉;Ia.~a@)#Sޱ̕4gܝh9j\jz}$9vW575Uu7  *glAGrAkf%(:RI>47?PA8yfK柎_&iT3ÃX -7a 1? 1H 42FXvR< frgFT٠?,C0`i[;ad "k쵄Ua-E@76'%= 7rM^^fB1hJZg%4xJ,^zkg8iLZȰpUkRwv%Y\~2zʿ$aDiqh+S۶/aw奬 YZ܁WzY9 @ Ygfe4G\^j>(^b6j}Ҥ$ER?;l ti%9bwNP2k.q6&V=dZb payޝ h0u>6eCY)A5O[,>W]e1n!קh*h$(Pzox(E~Zaqw`@kYya ^KRpgZaI :_9 A;qP {Q&_b #A`%xU5`q L0IJe2'Ȥ6xCrg~BԜfѺD}b5چXg| \4\5 (rD-,tw<]{,V ʜ~e>0<0,΁%ȴ8y]Dt4f ޱV#;U it*ڝF由R(\R|HIM!"k&ٜ 0qj-U1)<88oWBnmn {D~wZ_iȚُ JҜ_g=7;eMUv ^H[[50wG 8a;Dp͏5 *"%Bw0cq/=p+3| vT2ήgXH],i/I)S J>[GתA+!6#z[-9fDѨ>Y0E}؁1xODS>+[dʖrĈi|uMeo}Oh Iر}x:%tyc@"C$x@Z`{kJkyXjlypeτ+w0LuCY7!_pe5<5b6\A?b0_ #8˒t.eL xHBE."ZARV^mqtF'lVL3oa~2h{"~[BZcAXKXl$!70>?' )P_PSZP7 "(xiU}AQ?.&0؎j7N=X>p"z.nZdP/Iu+D0Y\ApԈ :6VPTTD ?9v6Ī٩W%ߔ.gJa(6OhVdHzx!۲SP?2:C5U2n]O"JdA BPutкjE |k18ҁkM/{Vc2I0BIM)]}ꪢCލ فe( _⋠wdb}j`c{FH W}ܭ4uLL9ަԟҎdwJ`X<ͻd8ap4G^SZkhW-w^"]&YD.C4B,Z~0))]IӋjI̗uvi .]޶D0?bv"uh'qxED^.[Ŷ,L)&3=Q>|mgLKv3<봔ufA%KRpnf>{ O*u~ a=OcpU ɷrK9ڮ! 4"q!eJzIpus`%,ꐊ+=JSV4hJbQVWgΧ[o*_>/ .'3[ZXuxytFd]XY |'`,zWxh$Ex!sy6N"Ź̬{RG}mᙡbFCL n :Ë;^LU viFՍ{"6uxddVV0oikgI}97%Ŗ6 M)S^,;O>Bwz_YL)8TŜ0<1bf.hD nxJcX Ha1[VK\ĺwOuvo~^Fc{Xc}w_UTH׏ ڊrWFOw^8Cݍ~I7ZwOoиq/])nCgs"Og1\ VI14|<tGm&Y h^g;}Iߟ \Qޯ6UKϸP%$FLݤc Ԡg!0C )>z*EbtLʅ G ᎅs44|h.j't!~A| tO^>"LnY?m9!72\jkaiMچ@іm71h^r?H5ây$矱k7% Tjs5c?A}7ý;UɰÍ% #5߻ukTː6RСe{B!AH8ڢ<-= @ dK\r _< YP=[W{Q3J-}b34rk*!SlJ60 G3D4P`22@f-qm>oX$8pS<Z`nꆙ$=yrMWO%<nSY&4 ~JҬd mU٫w!$+@! rVgvvVAa"YA->υm:׾ e?6$uP˩~+r&>y49_\ir SkZrBHA.o1`i ]^Buix,W>8mcAGdKZT#d2xV\_Ɔ^"K~<Ϝ Y8L=HΙ:­vs=gSF~ Ă[ҡt X+("j@oxA;I&qI& V9+>v&E󂭂 Un~FZV: RVo1 b ':H!uCRPË#}DCC$b g"eJu[N9O߹_]+mê{Q9_-3pvh@]|FѨYkͬg zŸRB{&ốn`*|8G,y sz_^ c93M)#Ou}pSe7@$6D7qH=XZbѲ4S.봯,4zA!2z!կMWM$Jv[剅{Enf!4n~O ^~䒝>FiLi!\6b:kh vﹷ%v& v0_ ()]uH1#hn[ץ՜Lj?GaPlBG.ozAc:ҮJp;kiR}s"I6b b`jUq!ewn &8 o@/ñmV|0 !wQKN1!ss#y[15eh{ xQ; e7mZk?OGZ6wmO=˟²t|0L]HsPR*f jQth\DvRV I=_ Bڂ{ *e Nl ؼnS`v$iik[Ŝ\b펀MԳaZWeM848`T^\\ojW^^ ğa#y߶.ܑ:pzKn[OዿCT-v;tu|k紣r'X,>q<4Xݑ(a0#`'U>al=6RVvmĵr9L tsQqjE_0^vEKW(5# FPY-1Q.$32 LLݣc@N;T/VK\ɢ>դMYMr8<1ՈR(9c=hLNGG,kŝO Mu%d/UƟ;%!mP6!qD6?#k6f~4k"8k~a Eͫ 6(c fmKg.&Z,)H4нl]!۱ѫ38qۇKE>߭x5"ucQm)/Ihr5_oRϔ<:(ՐR!/{ {.cY~|O:@Kg7X_僡(a(Ŧ:`OIhIb{-d9[@~ޢ8+!<3kErbDP7<`\Zk lEzq @@CHw3yʗ2L"(\T8D;\5kZ]y&M**~<#-h9 ]ԓ6J♍gDBE'ԇZsZM}\{zjq,DpyK@Z1{|AzWoo67G!T9"e= -jXtuRN u~ &RAK:j(|}\}9Jg {05c`qnID?0^E{2]`O 75pJ:ǐh4Eeҷw5Q/Z CjrN GT#{cg`SL y@I']8Rvj_EHij,"]ܧҞ۝~t1wn.kY.bS\S oA11ņ@#-έ:Lp `E__J/aKu;$|nV|IJeP榌V;?`gkJe^uD2$uqqrUBs:'4xCgܳ*#)'3cZx}Իf'X;Sy+%xdZ~'=ްүt[_f^WDWMv)?m$NR{ϩO.!Lat4.5ߵ_ISȰ?PHaNK`N*}{`BvfO6k!e 9K 9çIE(sn ْ#P4|S0eZb޺-jg7>^}^0I}L䍼Db828XDXSRo}ZϤ$OOi+TA<<kB'L~G1Fw`gTap-'*KnU˄`L3Wx;U՜̋=Tu`HʱkVX潥P} |pdO+DlH ru+!@l 8}aW||T\^LWNk]vGs '#o@V "x*N".?8w;e j>H4At-&jc==I6.vޡ2J{s6k "jpv0Nl]c) %O7V3#r9ia_$Au/&x^b#Q.1tmFƓnP7(K<ƫ b9U+Zc4Y'I~>dפ_$ <<ѤVX_79A "oH嬬E#s.uO߂7mzT6S]*J;3J;GaLe '@dق<}r'4_#+2k9cg2%Si&T<} $ Y|wN[Ӈs^.TMտV1ТZ͍rqBMG#p!K.wiݑgKf ]mݑm$~oaJ()dZ,C(Bes_.O! #.aMUf5 e1~JGMo|(H Р#9i!F\}ÍKb-bAzLxs3ăd/XR޺P**c:[9rT&wVs`](N33/a%]ʢ% ;cvm]*º?eNqg5n$2*[B0z X'J_'"ْ$ad>}X$ӵsAUd3wE_29vX%b9nA^,B\i8&4G*g5RLecʘ}ѕd.J ͻHoM#!#lq,Y2!!O IkVӹ;@Wj#ĹZܓwD5!:K7Ԥb V5;K_}k^!p4UF!)4&o|0jlݿ+Cl1 O<tdcVވhz:2G,}`[wz?L6ջ,kU)~[ Xڄoj:s)|p3.a5wyoNF|JԷ 0jXYE-I-֒K!YR1iqWnP&lM^q"llM4]1!rg̞»S^373z,E( BGt[UWj<Οt]ueSq&=dm68\/dR$ˇ0@>88 WdV1QPtPl_ҽdgܳr95,[.<)~>6b/FozkKbo`esNuϽCZLǨ^?=|5J+wd Z/ΟlErpwHЅ̎?X/ 63e =%abI{G> ZڞĸqnCtBj:5FE24-Y.iٯ ŅDb'eNPZ K(4$-2L-5F;Y `;VrBx),nt=izkAu@t<="*1]w_4]8)츼W[ w9`myeNՌFzpj},҄`nO'uQů75foBs;ѫHKg> *fcG$ջ%P/%+{P憃4v&zbR R,:H]f8a2 c-"]^¤tdsdld AlÃhK)p>E/ H~yU`YJF eigLx:\T?=A`y&Lԋ6DL :[$D[d5IuRGGXʋsf $n4Jٳ)[ѣGN<Ē1ՖRӣ0Z b1QU_V Y+щg~QB~\bcV\ofD%)DzƦN2P ꧣ)two68!v)8 oQy) *=d} vo9˰"3%4xIM:nyKy$id%UG"wYd(xFn-eڛx5^S&ِwjPҜE@M -nuhTbQǙu=O;nNnի`N)6mϠVF>Y'u$nT,=BW5YG;A,}IR <\4;7⭂%c¬=_'0% !) pC,̚YƵf SIgo7~Puf^DKƕxUyn4St ӌ:t%:ZIJX4ZT+e \ִ<'*M%*y;v;l8$X3JfFWOȎY!d.k:ud/r=K-F0ܸ(ѻ\QyH\P|1Ұ*DehZr]#=t |' 1i(vN 6~$?03'Ȓ x>q[yVB?*_P%bPx4eF |+1b z38J:(\fNLj\AzGA},ҒBl; ނ_jZ+P%)*3Op=Ҽp+FMY>GR`qj͘ɜk{AՏ;Y]s1/+/:Iu$z_F,f@ iԺacb]/tWMuVP43d%^'גꚱGU禍E0{^㔩(KӎW m@+BStFTE6czw2+qi 1>CkGs#c:Xl49jmf(ӕ@7J 4.ۍEs!zS:u ftnt1!֪,l#CC)*?"̧*P0Olu J)F/* iwa-4F/DZ38xkxpOP%f8SB|>sXHtFG<P#YчFuVp%%U0 T)aazn$O!Dy2ٝɪq`XRNŠcc]bF,}mr TNBd"WVC`/>% ܎pT!8J UIźqɖvN(P"Tjn?V*ͪ1(nFBfݷN3ᖐѳC8Dqepb2BQX"Qg(Jw`q`:%Hѩ؍ Ds5K9G`!Ӏ|2܎bS2!6yˆ]a4p=YWEGLJ%։(A)dy倆;̌gi +_N_CTi$e<Rnna;Xۮ{= -T}f6jFtV'm =SY!࿤ᶸ\Ƃ2Bp7jlan!=myi2G=<_gYo?O%׿Ol1IJc_/I;dY/Pj_]I[cM95wՏt.E`vj=E0_Jt<]C?\yylp _$: Ja@Ѹ&j,P J}z֎69ZH~;'CgLGC? Yȭ_O9$k|IJZ$z׋cVf1OP]ebIg.5ޅ:\əIb sxʟk'¢>7HMHLWi~EʹFm4OYDXXOW NU3z5kzqڅozX TX\ºv`qo'F8 jK$zдs-*ꖒunȗh,{6v z<~#tN[ڵ-`F7~0c؀M|"d(tJk[[H^mg$C>/Z7EheG ?ÿK*DR_rZYC9;VjKOpAp/c"و.!̌rdCܶGZ]R(ff ;]e%,Ne&VtEB&v\( O{e8plbΧ[;gv" jč'rg?OZ hGFCX *E\,Kb=|2^iE}L@ƥb !k1s~oGT(Beo4}_- ?\N- A*aI,"wE*-܃z)p֑!KdԂ]]"E QI7ؕ RF G >Ƒ~)2uq\<9>ꤴo$8ccEƠ M ٣†Tg #_8m x3HfN)kH:Hv;Z'A%/Zl #o'铩Lkqj|mгCNrPˮARYH1c-SKo-< 8bP TfKVpa#trfֶH:v5L 3uy9>i.<֖gX4DrfZ}$b"^$$w* C!R#}2'),L $ܐ4m5Ӌx+߱cͿol}[E^Lb 3=Q3a{,o@vw_"羓0HӲxlR?TTX~~1Fkc"ëfNmjSy7ڈP:㝟jaC^$y,2bPfKtC;BFxE쐊=b4Hn;`E1H9~oTZjpܖY3#8ԩyvwxaBhGݝ=$fn=cr ǃ*Oۮ: x8}["Q4-~m%Y7"pdϨZ(/slm孆O6 :1˫GZp[`\?ޛ'q'6 !*1H:>.&v{)9eލԆbzӑq?-.Ҩ X4MU잁Ì+U!D EØ`R01c9o_kD|t~rI S0r agk" ]\@ZK}W#CpD~nz@.cd#̱#QC;k|>mS wVd"1pKg3||?*&+bCbZbcV*Wi*ONl@U ~BȦӠ6l?Dގu ޶DiH%9rB8LJl+oCt a+:lƢzkIs%pz]*5)H.Ni($b)iJD|oYITQ :5 ɛF YvgagMl)fmJeaN7az.(OZ(ᖚ˹zq}5ʊ~M(mA ϯf.c`Z2̪* I>Vl\'FG] vF@^2/ YVXK~⌕ft'lKٛ@xvĹrKs ,)2|CVe\xK κ6^%:ӫנ%{[妝a:3dUEjdA!U?j;ҤOOV6mc Ͳ2j*%"NJ:¡IIY+.u<wg}cWs=xEKTANP~ `-V-fCTms@ASR pzVh;B)_úDL/qJzɓYv8kkGluϙo|Y~a)sLb%Q܃!WOq 10TT4#ݬ5fw浴*Vе^P';^θۯA-'9|:h^qcW74{N Ÿt!Km oܥAp cQ; P4ݼʢ}V.b+d GQ݀)31` -N~T+Nx_\s2fS,U"+js+tH71|G s[j@;N-YT BMڌ *Kl`ԣ晎E$--@CaCa>Q]mGQxB޴b1FSȑFM CRe¦_|OJ+P.$X5uZguG&c=nVŋsӿiIo~].Fr"VxKXVZI?]RF2pŅi6(Wݲ'? MvDD˖"Kqnf^E /$ΓuU։<ԻB" fgwnJЄf7I4If8'~$>* WJB"3eK]iRF^='j K/Y}f{^B/$--q\iɉN"I]JS#  Te1 ٜf %YX{s~#h"0kjG3CzJ9c )Fi/Jw*lvL;ؒ䝉7YJ!qon~^]Z> [f3- oί;­|mGƁ@XO5 2XHR{svx.nx7uUZ?NQ)*36d<\@Mnj,R56𐍝 O;7=;U2HsJ-boΩa<VWNGۓYҋt؊<$(JbņiY`g>Ϝ-LoI$;e*K&kZO^3g?.ythAKƍwiw ;2T闠ԥ-Ki]cT~4 /Ifzl9$|.xәvVY vNn$|5%hl2/!{]1NGЎw]|M+$ Rխ7!N3ͳ5{Q+PWM[:lT.#ȩO"A2B4DPnH FHMNJ#=*(x1@ĉvtOsPCpIB38pk.L h:h;T}48lUArrIQk]>7L sOSE{.ʳl_~vgD"}l#Yx# dDώ.K{A:k et:Եyō_aCk\'IfkQb^ ;jrB9@! Φ{YFN/lP'L%"/l)z}yNP?a{>}0K'-;[}61ussY/RRʀ8'){}`!:r7+$iuz r9{ K=21tZRA٫^fg^^ǵSlxNsBl%"NEA̘1y<ˆMUL&G)Ǡݐ'(:ac 7! / \*Jh>SB3vN C~t#ߍ JL4Q@$RrYj%p-Q#kAqVCǪ/_b; ;[.&qTA1 NzfEQ12 F@ۤj?ΰ%i3<rcXp9Y+h"= >`mDmX(-GOJn<趟`|Ή_Y1'`.iH-||7r}lD3gBڼLR྿7 N`󌔻IenzS^G36룂 NG%iv۷T/#h`8^*#[%Aʌ4"qбS>sV>1T֒h(^8x:w&wIxPSpUpM^7Gz jɳn+*e_32%(Ѡe_&LcA:۬tRF*H~V/ayP-Xk\q~<ͬXǖqN5|}g{77%wʤ?e@{3\ qjZ =žO!^S%Gr99z]#vT"G]1VQ(Sg GvVYay!p؅1dY's2oJ>依R){n\:8ԥ] t-_"YqhH/kY# 8vΛ`At|M< %=4mPw3=YGVNv ?JoH>)G&6? R0U8Rva4kU*6gz_߶gG̬߽N s(eUcp6$AƱdu//4i $>+I?c 鮣Ffi@؅\K-Ӟyχm#}Z @${!ΜSGVSr$w\*iڰ.qO>l-%;ofm]G8Ds+>>u:C7GVMIJ5h\S`>=e5s gYy:#`ǛYi/ğITUiVO gQl OJke[D.O:+V9#ILpKm}Py2u8 J EQh,du:{NWN? KWRtf-V( IVa4wwִoӀ6^[*}TL ?ދ V=Xi7#5؈X8![:~_f<9., %72cz}ȈC~t}j5[UJ#= z_>:ԃUե(rx n7/p06_SФGY5s=uJ 6X|)J7uk=׿F~mœ&Rt޾U֏ p'ћ93&! ;xq|v`F]~:rZ"@!%`]̕| 9.;QV™g 8 mʩ&a|u;Jze_m$5LF"mp:=hZذJn5"XŐ= Ip{y@oZ.ܗa1P 1PW]|n`8\-&pSdibZX'v>&6GÎ~-k1ȣ8dS8Xf0DbD^j1a5:i,ZЎ8*'5 7Q1vύVH9ZtF[Jݙw|U-"lG\Wh0ZZґ=lӞP cIA` >[[W.`F]g P PٹV#xֶz#&ȱ3&AXsG05Oʘ}K3mu2`z}Ka^}l"_12iD@=W"X5ʬD{i#i\?-ֹ"+=Xk֬)EL%6pYw<<Ɉ(u.օczs:+P~Xssq05YJni; @F+s7Za<-RR$@BHa'hވ<.ӹ!_lKm칤sĥniʾm@߭f Ϙև;)1)DW;Ť2䢯 ^.:aC?;sr1:2#3̓9O#$q[אWㆤ@^qV(]<9uPN ~b RnN^ rK-'dߒ[B\wMpUp1f!Q 'm+LuI~Y%MZ xTv);p* k+@ m=TӞ09u}c#m=}kKIXl ѼL.\qc+;JДe$)~*i*hx |\$Z6̉ 6)?+NRCo$nIMqFe/7[C{ΓÄT攥`A1/>R/M<'\'iɾ K5rjJl-N/YJ M#VB|8bc=ʂ9LBw+fThXXÝ-.7bklNoBS7P K̦x>cR,X3ݶ^49U ,vHt >sB] tr%T>Gu,[o~u I2Wd%P V}J<4,_Jϧr?lψÑukOG@TobnkXZ'91׫/3&A(77}?'IljsĿEy14&w@Vݐx67%!òOB+E\i:uL.m (F/śv+ܐ\}鈵O S] Ǵ@5Q?QDD Âic¼׸WP b-9۪4"ǎqyǹIn1f]m O}֭,_X07m{vj]$5j#q_}דtJͽp@#`hK5%C0{=`[ϙrU>*SB1}/[' wf g! Eg]&:5Do$>!2q<1SGdTm0N#qiWոs:>1U4Ehc`5¼,="P"/!wվчYiǪ8+&56]z lh0l?ig0?KK͜bKY5]ayZMu{CS~=˩7٬4P7I aJIԶĐy7E4]9 ۙ$0. ʽCt{dMŖwHG QhÈoP쇫Ν)grT 7EpG7)-2;Hje>԰Alk-+A782|d{4dMdAb[vMi7Ig~& ,C($/;YY_TF^ i#Hp+gh$[ܖjK`XJQ5f{ypl4%At ޡlbuAYCm MYb|Χ(*X-gNGӛuxlGXʈL@e.^GLGml%A~F)Bd%уN< 떦읦x -xu|u&ͭ4_qKz02 ٹE`dY6:|[,ń3mъO9HxJiZc:|} )Z{997BF74)zrz|LdYXUăWj6+;#1ݥ'H4Eta5""U2) $},T}F_郡4P =J;)߁.+\c DY =ޱ7igʯIQ-jbOـzΚOTڸqMWpA> ? (mhƍ|8#WK};,ڟr]6!s\(UU+y=QQߌKCLrзK0~0n|'߿ |\VfX:Y:לb;O;Y3nzp'+-2qjjҜ:m[|]/?@^;0U1`rznosa!q--X4]o-8=bLNxL8HҰUJ`K @ouQEa֏ g; @.!yS%C4dqKVFu}O/$W0 v5Vs;A*PAp7!X%P0w11sw:* ʓ(}l kpbeݶPvPf-NۍٙNgL{~@gx2aR%(DL %X]l$gˏH/ in4؎,_FkO2}{ PiQ?K# e94"5 L:xvP n5WpTBkF#RC`7*Yq4ֱ42u.f*ծH~uo.~JtfrqJt)KdgJK[#=g5."*``Ƿ}Уs'u}m2p=r`'׀;LV: wa JxCh ungwEJfVTcxi`<`rcrh].Qw-5U\\"C瓣Cb`۹}h#2VeMa;Y0z`&qƯXBs"bq9BJyl=i"lsj"lwD\@;) owl wv;3>nqYwVxlGƥxQ2~72-un1Q/NU"F͍ L*>ha;{&=Sk߻;Hޘ !nYyM>@t;9MnJDf֞)R4Fɏ"nhʕjD6D[0zM b_`2xS!oOtB aeVo,Hц8"} dUm݉P7kXQ30Z+I,ǿ5;jz&[oߪ,?=[x/=.$vFk ?b͛ cܵ1GFS9OQ^+ /4akW$ ~p(.|XH,8{?`c`aC>Y'VC@Ne@M4=Βk^|G)NQc/nϪq?8z)q~FD-ԋ$Xc;Lh/;&HbE <3vto6VC+l6),ew{q[8o(!-JxW&G4Z%Jk׃ 6X)Zr:B_K3HM;1<$ +&Yn;="9[˜` Y4%)nCqWޫ/Ӧ$u~6;PYy?9"ALO標jد~xڝY1F` dQhLW7K u!=|ɪH3dω2ǖB:ul1,/_!IF)HE*Q pUUC2Q -=֋=*g ˊ݇2BZc]=5,'74\ )whDNxısEp瓢Ox_U熻sT̿i1B.=#!6WW PtYҰ?)6e#>m/ɳ%g@\̥6MVfcLF(Mrm 9&G&e1`xq{fw*븢%X3mтfRqǸ|_uҠdJi YCsz?,z=v>^)i\]رDs KeK/\ZqPSW/&%2<~J t.?M(*Bd]ﲎu*Σ櫪 .BfT[#uQP1s4c7]qpxQHcJ1s5plr܎#l2]a>±iy-0v'sL*XF\n"!-@+FA$QAJ7v7Oڡr.08 Y6p2h=U(g2hiʠ-Z˷2:nJb#K"JXZpSbL0pdS}:a I˴FYswK nRIP{tϜ2A!|6KS'*j{イW$@JI> ˆa4^e i[> μ)iuV3eq!Ul% G?qL Ew.XRrNh[gqF"dz e)Tܐi+YHN7U 85]=FCQCui19?EEJv>uݭećQrG~_o.@aAR݅(:2P8ύtfYMP,ˏO(,@hoh"55%Qh iGce.--#rS]#RwVYm{t#YSr8g'HUV]*cϠJs8|2`qڐ|27B9m>6z_+O7:75s8EKHԮw䔶Pn\dL s(lC!*+jmN/7BbWe`тAm:Ƈ*_!K^C&S^`*k܊~8BJ{.~Ͻ~Hl4zBV銸.)Auq>o.љ/: OuC2G 7f[ZJl/96WCgx#o* ٙ+s16{љl 5IJl7hQ!eAL2ɫ.aih=)*h^bG]@f'݆ \3 &$ʇt d+Է,1l a{AR&a@dK.f_6gUI?BQ:tWdK?]awjuL."]’נww @cZf ` 7ɗƼ)ѹRsG} @Qndr7i jşKN-6[? " Q1>[e12}#Mz辭0E- W!7H9741)IYFrV+TЂh8:+/ez֦9M ll2h^fYT_ҰM O pfIf{Ir PՃ-kSVʕ~LUcK.'w8?;b,IVJaG*LJ;Y/:kh/GLEiO'7o$ W6oǘ )7/DU2A"8h育q[j>c O 9ֵȄv6~. Z';`լ#raĜiF9|M'}fmyc^ѝ rT@Tn ۿ7[`v@6 ²- r[N-VӍ 'b/$H/@%o"X6 T4 ;$w'1S:O'#b|.ȣ1hd{b(DQqXpA}4.6@hcW0$V%w~wih|=R0jqU r`LlK;jBqi'W4Ffӻ/uV7^aI”:㿼ËD$BE6Yy[qoUb_ʦ<ժYD.*Ў(˖DZl=HlGiӸa(mKSܿAܴOS,lQVkg*Q Ilp T%T#㛧E2(4)Bi kmFj N1^o]<S]-NV0Jn;Bæ #k#1xwNCrF|lڸJw@/ )6Iv*޷X 7odifZW\~8 _>?6ԦνA#[޸с{&Q[K'R쮊jcw yܒJm3n_zMPWjqTw.jGLO`=O^kXg^vE Vp^Ip-I ͹mUo?A7ntK&B9ܵ=]9񱅔s6V\1-h33ݚmz뇁+ __k ól f1GYdxxKt)9Nr :l2?/=,\ο‹8Z|U#M]h~ =R-{c#8o,>"o{:Mz9K>ؽ:†("&%u2 |R ^)>~4O?'R!YNCG(X9juعZv@r@]9%r QH( d O=bv-4qdqHw4glӶb #  K%4P֒ Nɴxi{$]~q+FܟU)IHzP,fޔ {VvzRȹ?P#Ƨ(!QUާlCJ85[DlCgAoh=tRb\@=w*7}"\6ߌyi1dtZ^rZh3 G-]g6ϭa֫ռr5r)#\f[Q7EkTMKZi=٨w ^rp8 SyD0 Zp Rq@;fCSW{/#,.VuV_Fd4Ikm.\Y~OM9Av͛=nXka!wvd ߧ{86 ڑ,Xx4xC^[@oCE+MM/!5D}H<1&$̈́kx5u ]M=ٳ*Jsٟ8/x/:@E/CXMI} xѩUy]] ;TsLxWJsl )(ޒ(./(A5,K.B#OٶkܟPQTL!h)ou̟ bD섩 uo{ a;y}Y'R? ; 9X%l6A˲v}Y;(RUXJH2~;ևn 7{5! YW75[X`Fv&1݅AJBzn\dz )ąpN-cKEK{WW|ڇ ] )wNf|y7w={qk #9*~r#mQ`@8WKDVEnG`_5*:#}J?1urʚ)Q_fasUpɑ{S_|ۧꉋD*p1va@vPqhk[% NrJ Jαø) &Y4+J]xj5R"܅M( d3iq2Dk (d`@j.(M|祈P՛3yf\`l&8M%,g?Jۉ@nSxG8גFO xnlMaN41-$&,\P926D̤D,v0!Vt yiI[K[u۹ZW%"Z,< L f}Y;B;O-\x(j< N#Ec9i*YIƑ4GE^bNkM%0~|k5=Ch:9UgM2: #˯4s4#P!fj_)/ ;W׼q/uhyId>y_kI3\{69q,&LZ  ۼ}F1}$:o#Dq`L S<(ANw#C\yD^bcPh]n]|E'Io5Ϧ$%D[!~upY)wkGDvE^U!=-HCTڸ"5V@"74F4TL\-, p/%cS)E)wBo- $"8{I%1M\* 0y%nPX3 7#i+ ULS~ Y7pYE9 *v-b῀o$K[cA0s"@ȭ@04E~q(qB )yH2|UuB < T㞉ߥ}3?]y+~'pK+f8S*túrOٞ?1o=vq1sz1 /Gs"Sa!=1#04=q[< xH80jx9lD)R WPG^CCHc쌗 RBt&' MڟH)96-v.lRɚrP>޿_~gT'NJ^ᮠԇzyw<%A`c_]rͲ*]Or;ؘ)uV߯;wQ{. YM'p`*f_;A{(T|vb͓bׯ&?A20M|soj,x37fq  3XDʳHs:0y9k9f>+BAs= 6snq^gO>vMƑ &".46x njУ5ɜI:yno'be#g~޾q?vGJ̡.IZA,*)N8 yo&me,w"װ&y`Y*1#c9ŞI5.};pvLX M®W/P\ A/e6mY^QʌIpSwר5 Fw-ANvde vAàua6~O鋸 :C9 8smRv/i^_wOϵd)w3kJaU* \p:(Q2\(f-Q D+՛sqMٻH]ukjsgUةU$)܌`@'9V#hc25v3x.ji+m #kS¶@xZYr?*//? - n Ǜ5"OՌ24tF[Vč?1fv>\H᧳d?/Hk~ׅ΍ΐ5OeeUBݨĔ-o͕D9uu^.(VK؎ɹfdl/ t-H1 6ʪftt}ytUSг򏹬/?h>NYW/[<\/y &f$NXm4j?FLMNHb9 ,FG\'vܜ2qM08%еk ziNؔT6*t|C{1a$ѓ49 oY{\`;u9b8-WiccOؚr"VFmJv,,4{6֖#%)y8|G c"J j0DgNgĺl>MNISZ~uoxr*Lȴ3ͥB ݐ1pU;I`. غfwxR 5;v"E埵L]l8Zgn+3ƼuOGnF(kx]@`|dקrP̅+l'g C;]a7{ >fm]bׅʁz7"M/bQrH%_Ci(gACbI`N1a36rnsQ wOMtc}gɤfl[^х_%s%h^:Vnq65b}K( uɦx?>Y{XhwyNcxˎ"eBH41ӀC/}NT .sL"IȦؾ (Dc/]/32+{Oj̀ce!&ZIyhˬK~ƏC_f/ݭuX94r4>5k37<ņ_P홻ئ>j7H?y\X  ]8dz&C!?~!J{Oma81%9^=1Z}(Jr[ @J;]u28_)ߡVSooN8ћ8?Gɗr[byքSs`J"⺾ZA \DQP!"Y_"-[`_̐(IIp٥M߬KIh9o=|%7zZ7'׿V Et0v3-+,H*4VRx(|gD;t{ 'I~,)+N #.2+0[b ::XU4!54 y1;1G `dEpC` 3\d hKVOX^b$J{8i{i8;슶 6!Wh(jrpݙCU.ASzփ\Lb-nm t%ؾ%m"sxӯceen"0Y2EhCF*k5*,7#-Dgie/wڨ> ~̈P)q ֧,V"\Ё4 oA>[sz Ey\.a矜uBc ,&JȴW`n`1 \s>!JB[?zg޳c C{30 l5%5df M"-!Bg:>W`M Mx)Q, næ}?u}KK\tU(r.2)}̡u(5!o9a({]CC9_IG"5P(UݿD"gK|bp΋*0u-$c ޹Av>Et(PAec&Ƴdf khi +``z#ɹgP5P3zm^Ai766cx aƫꂍ.qVn;>Ii&0&|JDGbmG?)vs jae jO(HexYdk 튊6u멳#ZrdYu+ —Skk('0MXNadynzV^3B9˹W)$ Amiު[HM}-C!mUGjw`~6EܜeEڗ|`{)SM4GJݑXj؇_ެvO'2s`,x-)V\&j4=۾&2U1{ ض`u-:[k kި7te" K{V\c+f5I ʂ Q֏s}8n/B=b])-}< mP&~4"j1sc['/xxv^{캐 m.}ؘ$K@i 8![l'q.k^J z]/iPϾJΤ(^%KI]ũ5(ƫ +`YL@lM[{05MFu形^G"0opCFD@ g23W5% VZ>L%z,tP׆#AqeCIJ "|,[|H$fPg`С ZLBV8gN7)^2ӺYk7ew2?_"saau!\Ε̷z7|+P`|yn)p|䀔DG,/<aJ0n|*bg+@|{ aY>P@XE!\CEWx5QRHuugrތbNqhPq hs+ TiLTb(D̥<#pxD{x2 i-k=!]= Z KZ1= 2XAmDP#&QjYu|N% ncw"kHY`5N;52uԱe^r>s>?@Zȡ Bf lkB>_' ]*r襖eQAuS8Ӂ:4^DԦ#!䬱t˃C qWIhpY 3SvX?%~+tN fe4kUHBKg4hdƘ,, KQ=Up"6ʊ, fΘ](RHJ"ֻL"ɜ<'~'.DN芜3b91R{`MSQikvF&*Ʊ2/B|Di[9חȁF,-hP aIG+l_s׾'aX"”ףK0_$[pT4Eйg9RoZ'Z5tR9A&6mݍHѶ^P% 팹86^?ZSFo@'| 앦<ȣ&>AܔrjԚE_#R4Z  De+<|5{#߆5@'n3ǫ|G=ܑ}  1&idI9'ꈍBL Z*cQ䃰SbƱ/GsL j<cCjbwRzzKۊEc^tHTd6fOm"KKY;)),`NݾgQAu˷tސvLP 7g+3sjN@:$sԶPx3ܸw~7]C҂O;cH@0J#)qGo6ox8,4RWХ;d4x.r? F:J6Bͨw `=YE\ͤ5x|a%NSxxb TBN|baҖ@h)7#*?LVߊV&"eue'_IB9{Am}vj".~)m!Mq!ߌ'2}Nf'~8x*LKmJ&So=6hEJ!l#*Jr eĹn4kb*Skm?XwXfǻEmKi6a`ͭvI^̯K>܊P[s3v⣕g'i Hd~2_i7AFǘ\y!CmΣ@f>J/dݯQLXP3-UVWDbo \j>.c< x(1>Qr-ȉ !Pq4Ҵ wۍuB7un*{EPM"5VW)P(;4"T+a9_=x#!!6%F| 6 nPOYHgl9џ@\JB^L}@Ăew /DRT ֩A_Nl'Y_s7+P+ξ97k~˴k(5"FKB=~*p*LKH8NcBՂ0[}-t حC%G|J䦮pw=\)R,"?ad8y~qqy֡{\:c!ڦ5RcP\Kt@V뭞n1T8 Hv*;:0;DtmyxV Ǹy K*ig b4{kI<)!3& 'g_ͦbl;K#3%ҵj.{Xrxnj[?D$'5Fxg_:ofwI!g#/&rXS!?gLڲӆ bIBR{e[I ,#ٍ򳔺#iS=LH^Ȕ-uHA )UMs Kv҅o߼GfN%Yc(&]z- 6( p O:yZrZ]xZl".2*zR3]>Ә̅j-f_AA!OH WͭwPfs=J~bSPOÛbNm߶ bLŒ^"PR+ڷ;>!|*"($>Ry4af]!/B.FCFtÑDwi22|{ĂJQ^#~y5C6R5&D&ǥ CLMf5Izj@I<.rȧҮ$zwՓ&͹3:I^PոMWr6 h|#ΐ[i@U}+/dF*;!K\L?JwZ3=%O٨o&0kK[f/E@ԇ{PaQ`gYf3,?V qLCr9TYsyHo?vkIr* $)UQZc#o(2j1*WkyR2Hz҂_?#iv8]U9ó_M01f9X{ЙueYFhxDQ6,ҟbġ YCL~d]x}z"zʹ#-ڴÆs2yz׹Kn\K#tϚ^Tv=Mx[$ yƁR>)rjRRй[;1+omPp~Ս(^Uw"&?Z5n8E4F58Ο(befW+7Z8[uMSsh-Gӂ#8~;a)G92U3!h9{"܄墎apII,;6oԫ4nmOKVuG}d>Ɩɏ?ڶ԰l =3 lveE8wz?MAw ^|]н*T #"} "׽4GFrM>@ڡVAKZѡ YvFAIA8r{6zC$D npbW#BQbݰG|ȟ"٩♙ź0):0]EbC@!3KG7E7̋n!i!:j}HЅdX=_V aeH *-&S}JSxyZLRTٺ 90HW"I`} B0' ýښ AL+drQmxvH*}NTzj6'تӟGY9әi4\+}"%dgdӪs^[#}m2*by /OnՉ#!ex 0^Vx[Vcs;aTaYx1,qY.l٢ k"FQv0m!q)T_F\1 ouq,z׏5fAVS'coisdF҇veu#kx*izv11@TRBL.61;Qpˑt)ˈ6[7[(-ZI0ވ}*JR% :QvR Sa*Xly3E,5m8<&l2x>CW:h┎t]*i e'JL/U%|\2آ hQsAc6XǪ?5V[U[XaZ sus^Fmܵ倞PZL§r"wSXÌc rQ*|\T"2A=myR4Y#ꪤwF~ߢg?E/@lEhp]_O#CMAt*_\lL9~9Ms sr=J X+4?FVZ;zG%{=3ïqnNDn#OjߞL>В>-<[bq]}+R AJ5i-V9v',Pxw&WT(^ iv_@h$qHp@G1(ʯ*E@pZRٺDr9>mS˂;I3\*vtO={Evssq׍bi~*i(5V\*Cn;P/Yq%w_#3Wq͢>"vE>qOQ/Ƶ0/e|dS/1Wf(6h^ N;-GnZsr\0^V<\;apȳo4L*Ii=l+gUwt_LפR®7*292ZC;*v>NYQMq9;)zGd'&1>&484^N<@@8d djƩ ]mfo_y1>ܝgS+=Ͻȧ~ZR{VFE{$;I\ńjo~fxH`i OI:ǖJt}a_+sBk?c(u4EX{*ތN֘,pm6bZp#[$u_T #bNj~2=h[ ,{n隶Mf0 ?9{b% UTɘx\c?{PCickd̪3BCo{Lt|c/#NMm#i Ό5XҮgx0TWH8ߺ\!amm#|4Ә N#[S`*,ezWAߓExl{ro, m2*o}ouGve>Z@z.Xbz[L7;w2uSiO=Q)6^;lY? a,Na 'obrI RF޽+)\qPycp2HyS1:A ih0 b dwKbt8hly-tWa 3MJr6Q+Dn.[-3|ET-N$/kj;mE8yۊXW?xt2W8M/¸pmC\{78>v|7M!U3:jӨ-cI#-pTz]{`Hh$3KBQ ,/J|*KO^_Fq`g#0/wNW 8-q3.ZXid*P*7F 龊 hd#El[CB: 1FQ}֛Z8i`u⹴n\&ɼZS1Ӹ\d}* O3~cXܞ&pzGB ԺP׾yW6K0&_LǪm䀟n"ECo:ݰkw-Mq&ۆ475[uBo:Ar{бݼ_TR+xL8I POZ­32JW(} x6>C<}Sfx+#V0Tv" l2;Sy/H imM)嘗%'QYpq-֣;_ THרpz!zЄbLplt~g2cOA Rvɷ)MRT=ԓ=3}:xJ6>=o-Wq#Pm 4'Curd9C;Mpvk؇:}i&U Ȅܝu}?GC}kPi.,$+ X Z@vqj3: joM]=Sj9N ?B5?"F񗄅zB$uY/3Q&Y:G84dYYEd> )쑚'Q f!NqaюSh*L;gӕ.Χ3_%ʩhcZԉyqӟv޼%}$WQMv1惨&,a XXeFz-G`r WHy Q3'(h Lp`ܶw!$N"Uf?c/HJ"uکYr@*fFɷ{>r]gfnBNšj!ikA).&.#T~sYsv}j]0sl+!+ 5i/ bLuc CM|[-*QPdjz0Cm9=թL7x+_2U7;I:0km8EGojw Ξ 뒪c(bkuga4|³M \j8 2]K؋>e,n|&13ak {EYpEV aDٵ9%+q^`ڝ/g;% PI4H^!⽸:lcYM")*mhߢrA`V!9p)\&$%G`!ϽnT>v8~ܛ=ɫX,A% ?NdBj^T&n bAPykOn"j>50 ToYlOd < <3F3Xƕ+ 8VR3c@%e s[&> C(:O"OӃ.acϙɫBAU~غnk??=(9K)pۙ j qGq<zdnw *ƒeQg2Kؽ_ʝNs p mz#ywզb2#r‡>]ǭ ՒGbtZ)A"%NVϿ's*EB~^ <ҪۣcN _(\4aܐ/dHΕFQohd!pNy}Sp^зXP&JɭTP8/=y\L䓯7jj3Rv,B"딑}ķykɊ&&pgC9–Fbed)\A)#O; f/r@}M0`m#sٔV"9/)]R+3dhP5H֜΄9v#^g?ixZnf,"IJحEk&[Ie))7(SƜa3{[ t2wg2qx!^t ֣H˝Z-qlV5rNNgdNCs&egV9K3_C;]}2&pVޤssњ')}_svftp$^{1"˳l.3w)(כ]k 3S#]11VVFUֲ- b?1eӁyC p֗CUr&_]:!oʇb,^xelB$cjF%ɗ CT6 vs>2bn fL J|#">$hQ5(%ݙ 1S#\„z"+T̖3>;) 5Yy B#5f޺ˡ0Ąeel" gZo"ڝ_,JSSҌaQ=LFuxmp,*ˆEcܷ3,OW<֥T+.e?gSjC ,tڭS|Z 䟁cûbiPtv'M-tN*նK6YVʒVhŽct~fJ:)xYI,EO q dy-2f2r2-j_d@A1S ա#H$frUra`>I@kz_鐴En"9[bصl11a|JGVbZQ&74pVdK}.:}[t݁k$t$2BzãpL8\-hGl^Tɭen',q ,f#pWQ*q>':{4Ce1p䌎V*p){ǐzPp#ҵfidA`J֩ kި( yd8^\rcQJu+:2(q͈$]ۑ{v4M)+J%1"/?&ϵKNzi,3[98ZlRmf?\nO!b|x<.]i{h"!=-dL0|ԧM6lՏwGG;~+OZ."v.7˵ʭ< ,{Ew%Obmvύi}~6Xpa/`Qث}vޔ'e68μ<(T=QPP2B*TԶX;K@|r$S%y# . v&=|랂ء6v|1"ea$ ngWEc ՐzP?XY_rq+ d?$ӥ{U쾩" k1z )eţBia i5h_Ƚ^-6@39r:#ǪFZX".Heƺ"UE qN TU牭]BU;s׬\?PPa勞HtK (2OѢ, x[d h%P!YGB@v,YO u2fI-65Xk8e p"! 1O!U+2VO 2vڹZ[6!>Pk6!@S(^ xYɗ׫AB> yjc7ub-U)3u"y?`#J>DW?/eպ- 6f;`'hd=W8%e΢P̾KAg4t'O u gs)3}cWQ7W3 D{zqݛ LḶP;t/eDžbObM/ !@X_d1fI<`ٯg$"|rξ$:LwQ.*E{FLi-$9\zEf<^n|,C!\njpm?-A#–/ 3E[EDf+=Dz}>f 5vVNB.&<,g2 83 ~e<ĝ #ů g^/mUJ=paY2 sh3(ufn&c7h8YOُRlZ.ף03ui6= B|mT3U9W.Cs7`"S6~5KcM2I'f-8Q=2N(Wi;n vc%xc<пY63(ːrɀQ2ɚ3MB CKIlEϖIn?g0ơ9ȕ֟hԔՔyv'.{s"8֣Pc Gl YK;I )Rc# T'Ok`D M-~JTToٴu6Eȧp0I AJ˜ (2bm Kށ/'qZ_~J8г<_<%5Fv )3 n;ƻ2ȽnޢycB.%ȄGqɒY?@xv9qϤpB &1LFtBr&Ut-Gn6< 0B|Nfp'ðTH} ?K+;LF06 ʫQ:LGllj|BǸ<($*Nb?L cX~Rs/)WllvIJ^rXuw8Y'\菋ac41Ē꡿%[ 3E}- XޢU݂=aa}Ī^!zo?yg-N sS|$cFa%]@~SaħA~>߂=(<"ҵ7Y'EߵA[?.6z[/ (AW~V@K4^bbȍi(͓IHD!Zn*d vp5=J]YaBB,\#|pGuifzJw?MJ^ . MtI!&3zx8DTQnLSaíbPKG0قs'Gշ`:%t);_@ULBcvDž-yNżla1OrSE|<ߐ>(mrF\JT{a>o}f=Eȶ(;{#dhvz˚M6Wr߱J*rZ`-v=e^(oK]@ @˄xs W ,#'4j &3ml $ߡªYѥa9-OPoNhq~HhKҐb&aOJ?GcX=iDV~n Q}7Z !I=1ԇH"Rj訸y!Qh)JY6 Nix[ +D |b4]ì6._-SdrlrmH$,o!mp4;f &+ajlI8!XB&2ǁU{Z=_j9oJq&2$3Q͡/Y.xCҠG2=2{+F"z'Y7fsvi]}HB!Us^cO,͠s!DLw>=fe2;nl- O DL]J].3d}>{&/cy ˫;OBnE#q[ 4`W~K)= $s45j&<&iyR;eA)Wَ|f+rWVN]vvcqJFteF|T"h,^oH F?W5_Fr9GڪZG zo8b*dp̱y7U4K~ ) ,Zw+\jViK)e=ʋ`=0f9e.~MT݆Q JQ ?A؛$uNWo46-bN~C/o@m%+ؖl3ldB6]ut$ğpBլkŨczS`z½ S~LuθeG3R:(&Is2DhF%Ե7Nw9e, HXh7VnW)O!'7Sՙj7F.ND;5{? Ɛ1?8Tw/plU걑Zt򓽮mlF(%E˟PqkV<%> (z;mGZ:G_GFGxcvU% _`X*:6 m^Y1X7 jdeJaqE]"ĸ*à֐y8:؋s)χ$NO HF#cd3 TѲ?bb? o.@q<_O-񆢓]Xå`&~EXG֛hs^Pۗ8jy86e.żs& BJo ;X"W h^fbBRQiJwx %ޮVpt ږbRE寝c7"@B @b|kLzA5$&GoT '9ơI{k V[1cq8Fʕ<2p#{&~,iݶ$Ò^ޖ.nD_RґJu@ )pw%Xiɶ#DܭˈQqk2:nFw>ѲxgY o<}8N)k$ %ۚiDsL]^D մM(,XM6CU)d3* *7'G&`~.xz?%/x|~ eR!?pT \ LiN{C %'6yk8Y{ANX;}UEDz4yꑧR\>#C{ֳ, k3H 4:`xcx\$3AQ2k!N B55Yxx*J[,H'CWA1A̒\Vﻅ5\k.:\m.^NxvOg{GN/~eb@O|a@#+a!ȏ>܇;k:$QuR"IWP,׹p@(\AI!~:9Q &\Ѧ1u(ҍL+uHk_ ;$=vuH]08fY˜6Ђuу7&S#IH'N=5yK e1g?U"2wq#kYx'##$xf&B$%oO\ {p,Ls*.#u;)IezfvB;eӾҭކ,r#F\xU~j lhɹk eBV!`o[tԂG|.I6TdLAU@*30p_u}ZUFuEB;LQZg̀Q>1s7 )-,P` H$@cE mY&^+!KV$g4Mm|ќ8]=I/, `դI Ph|%jMҩ0W{0lͽ14I9_PςF#j|rV0n0÷CKi33OCSy:.垁W2lN T97NbWW B$RUfZ8o?ɶ$ZqKVqZirӒY&Ic"|ہ8 dI+hB}M:$jk8{{Kl? qZ `7PlN+xnֱ]aȏu )!t/GչЬ?XkL+JAbkVHcÿoШP)MwU* gbPk K!!<ϨQO 4(L:IBGϰݔ[ $-6&7.SNUiT'vc}|JB1R9:8T^MۤB)ʆ~#U)~M&@,Z@kϦ~ yp8ZV}'s$Q(Mcܪ*T>mwۏc߲#&~赤̪Bg;BLXFC]:BP.MI|ń; /́"La(J4cA%!W>X#{MZ֋GZ6 gt.`9ep'onAZ'崗F7a5l#@Ps3ظYKTNG;BQi!!|xxYW08·(C/EްǏrTlȟ X*$6f "EԌGTJӡ%aq M_7XUҒ&*熏Ogk^wE]OPb%!\X_)Be?.ZDZ8i&`oXj|d$ N s!`H.sMO%N0?94X  'M%:yA8+/MkY $ltC,6Ձ>Kq(v7_۶&xqOu2=>=HBC&CeC)M Y߯>פK j7Z [۫KِQ7<" G\7 ~*N0M|BF!q$ Ds^RB1mjUPN{?DcQԊyeҠ#[7BA\!m&TFLVH]4AR1E Ғr.-^HWT6d]ӊ;$?pToKdCdy(D3ݳAՐ3(or ݜf8|`2B MM#sɽd ?} fڗ⨌VYvʕ#yxD#rm4׎NүADGW>G<41/H/.ёO?ٚ/J~?I3Fse9ſFW3OEyx dK7/T6\j4Xxg>dz+S::!-r!ݦLyi<'exnD{5/ <*t}isq/Ɗ *}?n1Ra:mVfEN/ᄚz@j.1Zp<,"lqOSg?={N_|yZ{j~ %* Y [p3@őfN-6>v`z1QOPA,,?|A%S2~1 ȸr=9Hgt)3/{{ϵF,p'FjwǼf=`FzԷI)SQI]_acGN%,\D"Z$ 0(* t7?ő@˨kB^ٍNЈAR/~2saR{uS e0Mxo8E9f`ox+,_ 'ή2e+*^)o4.8GtH{ P5W0z~J, LکOr8b $%!$ 8>^C7AÓȏI"*zިI6WAg}l5otz $jLqV˴,[yШ )`=f+6C7,whƒF; v*^tߺu?E5kD#u`ԥTg|$}!ha_)*dMcXj-i֊umUw@wS^}ROC)u$h2J b#Uԣ4#RU1Uʢ%gKTU$8Y̝^Fo% %oJLJ /PCBZ —T>cz=;lXI3(h>4#My+̟O퉟HvLm>S<ޘ?LQ-֟FyKQ }ox-gXƉy ٯ,aO֓وHƁ 7tUר_>ګ p_"z #%>"Fvn =:GqD2~13+MN MB7| #m%H*c뺹k01 $2=5BEJŗY @mK|v b dՍCk?mFvҞWrɎW%tL(wF6ث\>FkXqS6LD[K-w´V<׻*[ #{GKHi~=H=P]T+ zڊ~I,S,W ѳK"UwIv#zy74+8x@-VX֬ٴ0H 2Yw9c&&#>գӝA ^|4v$˝M 9I(\P^ =GhرG VaIu5 ~-5Wm ˾Ru _F3=A%q/'7")X}is&S|!~.mߧ ӭ{֣d'`Q*Uoj!d 1eT`ۯ՛I&#IfCCOvU7őa^ ayM{@xW&*.j;K'!_(7e0zC뱡))ZC F#E*Hhq&1D2i 3 @{&% ˾וйEa <-aVwIՂ z2f܀[TU?xE~mɴ#+?wY72\f.*ZbE9lW\aa Ȩi:M}A2O;^ :5CW ]V< bK: TmThIMe+AQ "<O OlіeD(=t_1~1igV8+rYת(b%d-iA`gGk]L{~w՜atz2Ҝ)'2D\D#S3rt=sb4 ZI.1+nHde-gi}dwW(m)q毂W{c[gM!+7Vtb~@nI@W+SA-bKc;1kbϿu+;´b/ΐl:q4Ҝ/c ws5ٮ;aɯJb+W4g?Mz{n9%|aa9]:vTŰ/u e6^4Z66A Bhl@<[D6J5-cj+){T|#BD!+FYW.%hM_.݆+:eSGdf%\ bho/N'dlT؜H&0V D8Ij 3jSGQ,Bqw_eBYNO|Ѫ(l{%igx< vv]}usUg ô:cqK fot'[l um#UUo 0ka̐iFµGGRS޾X7E7+Xv)9 h* {A/+bTr>jD~ 'H m,8D=Wr:Կzo4iP߽+JfULc9ɪd&%bGG! JikaRX ? P'cգ#܇ͺc > ^]'yW~lq^#eP_z*M`[tDDx7ZCġcBcD@ i$t໒Xُ&w@<\M^ 9~Pc AiddE⩑ĈUZ*6<> *J״`ʧ)?\O yR>)Z*&[͡mB`8Q;#F{U TI8k yM-?kMehJ-0dId6n4w鶐:o9{il>v`CfڟG #=|Hyn0=QY mkנMscG/>~5|}Wȅ PU 7,ͭZ*U$,񀧝I9?eTj_l DNBMԘ0h-N/dUij(8jHH"puv3AE<׶ @Ъk_,h>E$˞$ꉥWr}@qL+jyk5R3<-l5mx1[-m"Un`J! Vf%&kdRj*,7UgZ M>G`$&:tgI݂cTpLS{xC(AO`!}O Q±bS\(-xT@;/= qe0Hmq8]DkEDĎ8b285LJw \%h1ԂQd, ?_D?=D2N> |zsKD6cs% *N̬ۏg#c䲵Okؙo498D)zL}m$^8` ޕn]HWo=5z)w|:H`|)֡isJn o' (^Kņ9<'#uۺRe g[ Uu8p\?Xl:iPFs'mҥ[#fNEmQD)b`M8ڝ"loXrQjBsH2vx_ؐ045Jc/.?[ i~|{eYgok>n۩A67 Q=uKRV"8G Ȳ*Uih/[ᄩӗpZNeyH*ڽJp_qiAסNW(QA{>\3Bu%"i |EFE9 fi[^*H)&p57ڑ-kpzW<##42pLX~]] @' LA)_W_Xclb8T ;{U( s M{=B2,VcV~dwBq1Il0:"@4iF*O.j`brc}=T< =3I D HCVi]A<YXl1\}O4zQ=el`;{@eL7+˻Ѯ]VC~w{'Pj)u5S3lhT"e1dS׎ݴʂ"ɹ㮺`Ih' J16p~wAo֤8q'06-?2,(c]is۞BZ;wI#&vvN>^] I.fW1iܤ]btgƔ;܍~BOT_j8&L )BG~iRtt *J{SOeiZ~"{,M M՜t JG;0 /B52tK7>ěܟo/Y2P]v:w1@id3|eTlV'ˍvo&(%纙 _dD;wJkytb$I!~"dLs](amf+WG14z&̎*r.7ΧY}®0u0ڳuᒸ տi0-/Mxʎ0']x ymWh vtulga1"ShyYnFJh%VNCt-ч=S$ʨTɀcT1$^ QRq,A ,IR+\ʢ>Y 54gN-b蟿e(уd8^7!a\z?% 7Dr`E 5cCU. #})rN뉕J jte>hwKBw܆x|Bjbp?;$͎ֈtQ2mY;:_7 =&scqyh?i?Mg-@AX TJ]k"F@&\z "ˊ6,Lߠey⬬4^GJQa\}{iW`P /\7ݹDZ7v֓-=,p?a&y]>6Ο3H+y kO5Ϡ 2 0S˕Eu^oc8D+^ɐO[ TT8F 0zV l|jTd/k+ v.bn\Z:6iڇe'W+2Cš`{̭jDCn>،iҦ 6p?p:ȁNQGNFJ_4rɪ7FY t}$Q j ?[eoivWavzT TKZxL-l%[!'e'%zb8y 6=OmgU"@j*#cV;]LX52#BɌaT'dO+՘亂KwVjyU)IqIAiаQRmWܳ<^z#AWUwϏĴLh ñx7y3&X@0I2 |;48>hMۥC pt]{by; IZReO.XyqI|f2kOOHW[l(MC\ =q+X$/塺h: ckvD?*/4q.Ld|c`FXT_V$^\>֟@I g>?:Cs"!gygwY/- mQ>FX0vK#002֫L?afVgͪWJ(K&]]N3#;Ӡ= B 0gmR Iތ/!xvql , *C;,:DنY6m5<ft%)kiq輻V+]7Æ8=PX&}L4"cLL:Z͛ @␭{BoXvhGSw;H/lj@DCKIv&4~S$Fԇ- Oˍ#PD؍wv_f2|.=-1ႍ RU7vyH1=\""JOJ c] -O&7qM c҄;k@?1ndC:!ZBXc=4E d5P; [;?z{I;PpMSBeWI2S ?a`;dNhڢժn*/6r4 LtD O{̶MGZ|ߛ<_GwU/G_LB1bTԔGoC\m!DYg=,KE]!C{Ů0L33#@F$Lb\@K֮Gf2هS~2R5S𤴅 s:bXr^!Oy-H+l)E[^A6s& 4bIQ+ h<,GlCϸT#+u# ?!@KaE;mrx#L?o)lxD W"d*] xV)LB_=y k&-QQm+ц&ȱde/窷:M?fŎ,Oz-L鼍 p bH )0$ [!?SS(&*q{53s6{T(nZZSTɀŌIx Cb`Gv@ 9syWuBFH;OyªW2ozSٹ}33؞ v\3UD3 [X1c(dDū;3E!r7ZM%|{0!~:?|"X/XdԼ >8Bt9GHhhb p&^ ĥuy.hAo\*9tK贕^w GJh.:Z}%\2||lh`Ye ٰꀔF[ / }VF1_6."ʛnV'k#<n/oUT/`ROqd4G٨Rҍ'q0k}a}#㦸$p? !ntvJi@ٕWLrdM65GP^SWMmO0y=u}nQ@^?TJ $/^)Q䷁[SdXpR f,61ima b M֧wv7p8{oH1/ZP wM֕e˒PF61mIyg`Z#ok\nth^P%f$$9t W-$G3On`[=f dY F%Ał03y~xg.~j_ю3@i ՓRq=cy3[k*.CqfG"lE){woFFpal7X6P9N\0'.Dܝa67Ï~Ŭظ2T/w{e m3= ,WЮ k0"2bS߫<!4~O 2$3?Ȭ<#.+0bTY~xw.Cˀ ML 'H{P̢x1P+6z3 -bB{i-n <=Jn|U(naB6Miy]ÉC:7"n+,pUm6\D7ih:O+jG6ZqFc) 88 )}>V{:h6mUc͈=Ʃ%KBh cyC@9WPi̬Ō,>/]EX`UC@'ZO z@lS݀?[?<:^)ѿCT5 O z' Zre%GzJז窮Q#ڵnE_I ?/F\mÕ&ԲlVv//{!΂2^J R@ϨU|b ) u0l:^LA#λz4R2 !kЈG(av!KƎ7QɵtXC8{K%f->M m-kI'  vv{>A+wo5 #?&u;7g[AG7-Z^y#zYwmH/҆FA AEY.2# T_V˰'(S<3&,X'Cp6FOsfomaBP& B -.OwȤ[P."=QE6@x~׳GOCeiȢ {)V*(/%\µc?w9iٍIvOb1&=&);$T@hOؿ*G~!! )Vw`}mlM߮{vLhL$ߨ6Y >85s{:wꅟmn Y!{"#Hz*EF<[ޙ_0 q,s(IߗY*TK3 )d®#:VҴ*piy gT _"OV 5x,%kHjҀ?އ{ Y{Y@{v"d⫂' Bz)|+wF% lJ-%rdxtX_Zp~ UQhOLK+"/R$ rUW=|^pd%9Pz/%`;`>^ ocAw\1;(\p@MKۯ'%S\;NeZO沠Yv7NC4#X۩} KN8Oew]ĴbZ5K;xMuky$$l;:\mC-9}0LjlῘN+eIz6 dBF4l<&u.ZYƪ_vLsx t)A  O+'&9KB?4ަ>R>^)1+O2/`0Bא{ʱ};q ƍ4ATju#m-Q!e8ä˵&x$sy|Zt:-76]mNFX@oolR8M?A'T䝁Eqܡ`\6s sfWa5WX3Aƒ GtVŕw++5ԳdRUe <:AQ?Ϋ[Oh= _l콤wM@HF;ŝe? ޛg,*DkbqȺ~N687x"+pq.eكl0OZ{uZ8a;}M݌ԊjsO\B΍^vLè=Kkd]R^vTgxQujQT>lJg,:LMܓ,E%Zڰ^Tgy1 <054!eeNZ/J݂erMkxrpImr+֪XD rԵضATȋ)Rt` ܟ<04]ySئ,wY>9IyQBӌVcJ]Qm6e\o!P3%ů{hQۯvZMzxCijCu?izq{f6ŒgNWmEsco=x"?7YP/^Rb}4O30e!6&_Ro2BAɛ[̤a2\"Kt6SdK{)˻EYçM\oY` 54T>p?=O&@xF)YTPI(KH))S1c^Qu}V =1W|O k771a >$S{V [ 'aCS[; qɢ긵R2&e+ FbXmR1b'%mV.|#[HU(6a.p."` 86`;'27ᩈa,}<τqT>H[;%`ˆ*wFer$1 ny\Nc0./NG8LGLar L{yt[ gI:<~^eۘz(qZNK5 .f5#=@ŵ1U1qI"B׷ S(]BW+@W uX:v~zL2A<9JjЧtFpc=VRBRtoWH/%P2SL'̈@8 (Kzq )j5u=K hx6 iDÛȞ9ʺ*'Dt4oacd"ZC l68[-`bBcu4b^]˩45pm+Bd"SwqcnL*m)ڽJa|$3]̇UW1+Ni?*܋RMJNL\~@:Vԭ%G>lcaZˑ4XI/ A'HuR* xGfT!P8Z9f[ kkF$Bׄ[ @2{K,򹐵$XaVR[f\= ! I |Ų8 ~ `ؗ_+! Vނɹp Fk3πqXaQaq|& W|?O5l|SL9<MRrRv*JI km_ 4M6۽}ݭ0_;ӰQ .YIL-mfEn9Jr.qvڵ (gnuXjEH m]>꧛*C M$& 7S͜bLwȠzrJaVR~.[\4>oQـfAU*pQ[sGa (Bv9whL/]YHm}%o5h'PWG(}KT|߁OQk0 h+a6 ?vv 7Gi#WV{or0҆8O\/oL`HN v Elî3ÇI{pkCJ1&vtܰW᧿2<DuͼͳA߾ ϶A6Qla54x%$F0TSQؙҕ`#Npe5ZbРRщNDdox>||z?k#c12|B>[bU3U3qWPF`Ш;]m܎\,?eHLW׃ѹ4?eF[~AyG(ZARbUw}!\+c %#5qhwMWPBsd]ی*h$c-ђG?kBA Tp: [OQO؛=.-D4H_̥{J: dU5SI`Jow׽8'EɣOF,m>&ZiA-C#R<+`nP}GkVhv{E' !%qhPlvDr ˈK[sBX l KF Wa?rgM6`++mJ g3@[e[m| &zi76]ѶC-e I6hdСQguHq- 0E}\^ 9QG ts-1f PQ_!eP9]k;3"6cݨXW!P#HDŒzh! t0:?M5>ԧ_z8f1-!f_g2bkg>7*$i9 K퓆*Mvx^Tᠸˍ.D%1NC۠x 붼njvG gsZ]A,$q27Wm|}wb}c=B#kZR\ɼpj"ZE> AGoY~MCpԎ9t`Σf^/y-$M7'׻đ! '-] WM ̤5jۮ{kv_ B[I[fɇfB3oٝڛde0M;H[7]zޚf ׉'׾ݒ?(yk\jXdoq,]3Z 9-L)K7IiFdT # tfc9RY$Nw$Sm}%aAi[#l`'DM/{C 7p!:w * 6) zX뮦n.7LޮUɠ4c{sG٠N4"wF!Wԕ mw+.EvLUؘ/o#bUu9i>[mr\Vւ^kuiyLiu[n$.%Պ[`Zm(4rlx:|>HeFޔ"|vLN$]~䪁P9o-Ȣ@ǧsՖseȣi8mO]x!73 .W|gxCh">>!nr1lJ(o%>*CNH+fi9V$_竸EP:3!؅RF_Ǥڑr TBiP [F*?lt_xQYqUK&F?zsaI}N6Ҽ$m?E%Sj9$$pzO&͔mO[fcJ:mС'ԏ!́%sUf8;ltwztE3Sni`RDm ^.f^1hC4N5_xAqX>)v"]O^Jv=:*Ǖ"O_~gT'ʳjYc{noI(rZf3s3OV>).F:N{RS7STrFfNn~`.B.~h /a97=a @KK'$̈SM!lN ca88N&{Jəad--G9y*ȜL qcGI 4ɬ6Mxmp6:ֶoV6[gu!%a^r"[:+ƥSFZ9ѐusZDJWZHWeU%$)cޭj,zr=&qW|&9gG$O, $&b s̗>SVU RV:$^w9jrP$璧ʀPb9X nOE6!`_B\0DV+yzC>M?Ē)yM@aCuGbJ0^!JAo(QfssëK! 7tQ=V۬_p rql(i}JI \\%d*lsd|# ()=j9s/ Ք-&sExn+L 2%Ûo}2YV`K(n Emu`Z JZ܀8w]V8 So3aA^I2,i'׻T0Zs5O(ߠ;˾=@T1(Ul;nޚ}RdS{>q n+Ԯ%us$4XT12UM2O:le%I\FhIBx4(cٓp v腏KEY=dEqf7ڝ)piu A94č23lBZ$M#QV^a~ m0"#%ْGȈF~\Ċ쌲ҝ(i@,lEq5::#Ah.үQ}pqV7##ƳD_kԍJAB`bU7߆tEQ{[)UmoZa-,RN!]G %yφ7݆!-Wva{ ?~ʭ,XB^bUݩJT{vLrTF_%Я']%No< ѭ4iV uwO4w_ 0"W#{#FJd&0uE9 p{`/Xȇ nảJyF􂵻˰D#% ga3[lYnL2k#sR~i"'_ꬌ @pMra\"k~[4{(/hoxoLvU+p7Aaw(׹ק $?:mg2y~1 Y/ .D&DkK|LQhU/ʦ(~Hgt Y^. xjڴ\\H2[)!r7E1H3D .6i=fc8֛]{ŇaDٲl|HlxZhw~3}N%(p'VF#I\^.NH탤Zo{>rV"2`4?C=YB+ahg N9|P`7!s Y#QL0L܎Fk&^6E1#KTtq\aSX-x8Q,pƊKG7">gޤv_\[ &[00pb}Ufe,CjOV?r);2 ϞqI氄*i`ZR;l&dl/-9 j5un~ %#ǨodsTgܭ+ぐ@ӄ+Vmr&Hɇ7N VSm2*wNS[I 45ʞk+LDX(!mp$:$s'ϢtnGqcBX/tpwX2zVP/3E%eb=wXmE' D|!.[$& }3Q?@7>Rtآtuzg .Eԗ(Fl9Z4ad+9 dICt-ec[Gw[i1ʊpfͿ>2oOx/JgD{[5˥׊ n]?>!2 V^|B]9\ĠU#Yr;?8V}/dF -JxȢt2/󡱞]#՞# は؛]vgUAZtUe, f!e| DxF#@цS4n"S陈eN`3^֓Vw. 1&NTx҂ 35B2T`y Ch64X wv;ɋFx7auodQF_&mv9O[@ V  o`TTZ֬J3w-R'.+!7ȉ(JV/X8cb x-E=Ze(Q#{9L,&ق4~#4NoiAKg.I6R ] |/yGi芲VjײO^6-\֪Qsڐ(17 ,X]l sXcL,ʡi-Lfe.^8blwņ'8x`H >j35PI#+D#.kJ/-Ac|୳*wۂS`򾄙X2ոIn72Xa{f|SIܩ I%#Ǵ2u Κ4t}KFIxBD *_u{lʨ%դ׭J!26Zd?vhB|~.qppĺ[ҠEjLjk4 зsk kOǽK3_YS`HǷO1Lk}BG: #IpPSnyc~~#KP\LQqQ@D NlCT2d_,, L*JH|uHv8k v@:9PA{D:•lJ_`) 4t ` p.5{6HAQ?c~G3XxdbM846 U!!],0g£a' Bӎ7,]H6SԖI!(/^l miNäS4EP(lP,2;qU[4&Woz!@?boy@thNjŨֻ@lT u;;%/*yLq,݊2F `lsY˘}8zy/#۷NSכNJJHwխFa ^uDG dNSt!_0@5V5!O^H1״+iIrc7h2EH ]]ߜ\K?Fu,[9J)6РБ9 IX܄QIBa$sh2ȌV@&XL PW|jatS[1stjmЪĀk\n^X _YeT[B/+Ccd,'SI NmC f+a dnvKnB[%FǼ{`VA@F[!^aWv/֨~b߲ély^ꈟId0 >>64W;̤- ]RFS>Nҳɀg;{ٜ>SlNhyz'^wv0_PJ^|*Z,Zwez%NSș(g@z2B|r@'IP@F6m"FlNc3iqu8Ň?ci>%RZYIt]nwb܌NEidP/BUJ^_P 8?IJ ND<2^;=`.|4G2ϰh3T -!%hOj`1V/4@)~S t;QHmdD+Vk{Q΁an;7!;|Q NdT|ABsww C՝-cxXfO_ԁ6jg{s@y)agٔ™=x3xV isQ)l-[C:?(0h9ְFC??>8x4z&#j*Qρa+{>zqfh%FjM%+j],J|L+.rL4 x-KF*`36-*:Pkyә'F IGئ=a3dHW=@ɫE厀4 "JeTqd̠/ܺT&{MT&U]J٧?ҷ7tSg+dG+,=cinۍ`}ٟ+8ʡtvú`[ NQ3;e_D:rJ}IRӂ,e2y 3m򀎊dA3gc L'q8cë3 Q@8:hl~NB;P?*@.[+LOS v'zKtf䤎\o# DY2m|oԮk~o+x=g̦GRB_S53 rMT[ gL!%ٮ:xN m/ Y EX^./ɚ(8%S)@7|=D4Jnj<:<_ `hX m <<AXVjL[͕-oVO⫤ەަjΞmʼY*ur7&2f`y]tM·CVc=x+W(;i[ C$YC* ysa5%! +:uMvBzNrò(v_p6"̼ϱCʯ+&68r1hb_<ӳ4 HN۪c_˾k9p RLDi Mz| 'HPe8S \k*&` Ai"½kcXRڬD#:-}B'~z6 _aaP ,<+ 78"aGü?Q77 CXVj쩗>\lbEW X4tcjܳY{ᦎNWA`M)eTZPbKYh>Cl|z'ۊ)(|GeMk0piΉ/cȩBI3@bs[.J InLycdHx+)SvuW%5i*_12iw3򦭖nX^$%U:uG # ǔ_0M0ĺ`hq^^ qؖ[ AyRj_unMa׊$.o# 4a}̻) [rcW edZMb›5gڞ£<1Ҏc-u* v-~-("6PHql3yt]uA~xr[ b] > AՏmzy\HVh@urŭj=gyn Hp-2fcri6QLp:5<+#=ϵl W! 86aMF0#_{j ҵW`#0үnM\=nڍ4Ꞁ ] |ܞ0']VnkT։"t0*^ &OAmeuTђ+qƚ`bxԍI>P0 [?Rz&I6CZSX{ kVfcY(,3 -Z9iu2#K$<40'PnU Sy4zGnj蝆53B'R[г 5DSmצqd<ͧ+(`w\m 뢿߬0fN)WErtɂ\@&dm ZB~Sj)涵,*uĵT9܈ۆ3w=k:܍Hn 3}ÝRBIȊhH؀00P:9Ѡ3W[ـ#, *5ZtWu=K/u ̫4%ٹ~jx⟉D@tG7}ظ[D3|Giԛ9gJ"C\sW_ja:P~& 1|ɔBQtF/  az3^QhH&Wq|BɞQ^{,Q2a :Xлo8ރɓS6sIHDN`5Džho OvW~I "r+y ΏƃL[3q0{;ڋqBŲ^u ^g| \aµ0g9n<]ʴiԿzYiDIR4#p,LEPKYtᾛX'x I Z&fyհ /M(5zyrl3I3 ѨOrQB뻰[_\S)WI n[ =_TJ[߄|0mdQW^R2<(#KzѐmzZd-2MpZNؑum>G\gVQՠ0gm_Y  Lafwޢrg~wP=; Rp.*gYӗfJjZ/t3#)s!~@z|`u bL }@9!˶C[/~O|c S+vQ}fzT?X]j)YNbee?Q%aAiBK)w}Q+nkX\l_Qo!fp_E;uQ^򵤪lzι=TJ6ތP>;Gi;\pՄ5@O YST9 + =YC ׋v?X;W +akhI`7.g)Ķl^ ͈t 9/if[M*n)m!yzT&'m w:EO-kiҍH+6S0vO)UO%8^4EZ_!u~t]plZdUwǍy8-~;nӑz0&s2 7NFMl,xigzΣZMft]I*RrZvUp^@^1 CڃHʌ?`F쟮d^ 0#:^e /^Jm0V36h$FKkjv|31\dXmvS˷9jufe>'%}3JRY^a_b )Xwe #źһ ܭܷ"  Wq[j5.1&`69;,b̢}.-Rr4AVU'I.Z/\~0Y}[MeLbqƇgC:‰/*g }8ޡFP.IbC1Ww`x i鑐@Üӷ`܏OE*A / (Cٟ%\Ωk)/- &1}BC06 CDCޟCe71r]=rq3Y?POmYV]zm]++I#2Z:lY}KZ@,J^Lv#d;!imNy Ϋ бj=v<,Ż.50\Xvo>:] t ͌F;@XqBx D,}6@䐢!S}9HlnoFRWҴW~lWE :sHYY+{#Fe7j ފÿckwx& ;7Ic eg^H` F3q\`=o5,j1ʨ'Oꦵ|A1ESܦoxaVꕴQhU?\"6[xŀ.*G;w+uޓf7i}'M7 4V@p=W,14,g eE+$Q,0#NvcJbCB:HԤFB/}$;[;bJiyŧ.d"쏚u0!9R7C0 h̫̓nVؕ>rLGKP>_cW)a]FR^Lޓ:pt2bUPQk'/Iyɣ[UlڃT<~h}I܅~6##2 wæD.BZ z02,| 7Y{ȏQٌݳF-May=Y] 禀57z ico<-IBSLKUa*pZ'>-?,n,IOҡ"G,Xn]{UC뜈#ֽ ~MTXtDF8+'";f1ā+p gΗt#{{{ -*oM{f6CJJua 2oIմ!D x'}S#t\SheR}&+9Ul~6K/m7흌Fl٩_.E0 8 FIg-\e C]o7儴 {%p=DI }-t0ËVrD#jwQ dimrNe6ۉcٰmKw_m܊x@.% m#SI 2mo&Xi U_3˃-W\jMK#fE٨dApZ-SU3P!ÏC~x*%Әd>=ߥD5\ZZU, ﻌY^]њԴÁz΂$4Cc<4'q-9$D4ZE}ϵ̥Z;$1)`xŽU#ܨ`&Q07̥lLH9AX;g(@Cv͒8zQJ9-djw=]7.`HQ+#,w~ ?)MRyi]X?YM,Wйys~Y}5Ls/6eL1%^(r]>~mhl+ݿLP2)1nSz0$dqmܽcj]j޺}{0(3{Љ<8ؓ6q )O۵I-g5(zD@崟%JV҃%і+{ j.g%gl/UÁ|O:H?k>/$_ilTVBTۍ٫dQ-vɾ |D-R/HvwCΗ?z[&Z[zau~l6kU2S]fG.c]:](kۖ3\);zWdvsi=A<0QbIE o\/B5>LV"!QC^ِucb(0KJIs-PSP,I%p߫9F7x݈)oVjD/P)5:^dw1%_f;a&y,%!8dBiG\< 3e˳%l@XƖp| q°<')ŏ]R?_[K __AhK!-C ..@B~M {cF5ԯs~۟Ƹ| .pCqM'~FU}vW{盙˙D؅}ad=bp!7*yNF't1L2E&+tgSl2h!a=ѬHbMܛ±Z[2t% {&9̟2 *-ӧtv8sh[L@ˠKa;]ॴcMӂ"0w%F Lk =AoYo? SJLGDji2Sx\纠G S2ŅD<.3ܹRX&JYCa5Me/3+3C%3ux 'ЪdfqO6u)&iz!02VO9~ܨyj?nтCx?$B1+H!eq`=MP~BUZ{6UT3;EK!ԫJԟW. Y($Q(y2NW;xlq0Vz8R#5|tg0ڴVC`5Y=')M˞[hF8/4D օ[IRgÅ6(4rc>˺@n5'be3+h/%wI"? *+Bh{E?c_5k\H롪}Oت 970C 2RrQp[q~&/FxH MY*K(dٯ݁$nORcIy ub@Er X:5 +txk#8h2Dd %   PPË ]:HoBxN2WY6:3:f ܻ bvx!䠙Fئ|4&9!jwѼ<dGqH!DlWE-L• sӻR<@UF/G*;7ht&ֆ;sIH;mSPڂS[{,ц-صߏ䪢pja X|{-&'v g" dY\+" -.dӌ URQ/:*B?MTLVۗS;ـS{9$CИX6v>^GRj5OS3W~x E:iD&+bؑLi j/C}|JL-@~A!D9bOD_aRJzසgf'P!rp*4[ EU$zPvp5K3ZqM%=<`%\vAs^Foz NAC/g{GM{KW56^rR<NđX`6+$"m5NjJiHcK`}>;581)nB~ i]4NƫH-Ҿ^' E'dT,EV;)ۧF0`A <%sPͲm OgI)w+*au9mf V##ZL)kM ذZ0ԚҽJ8~>TF;‚}Njs@(dgҰAH=CkuW PfI̻UO1:E x<. D/&"$ג̥L/v~1qp_rd̈́ՙmw>!f:'᧎J)HdB-,#)'({ X£L˿ps;An?cUR ~̨A>ҕ6'JZ3DW:ߑ|dnZ'㟰fl7ž=e>W,41\`xچ ǢNV>vL˄xz _KVZyQ각[mLhߎU޵F0kɩ~([lt*XZ V0Ȧf`"JKsWypz;D;eH g$2=Яl~aa'5\ޮY |}-f$ b`9s+teGc`eKGl>H$Hvጉ{nGU{~Xi^-4? |i#Y0i<۬ t]34QKY<р%4@8CCcSSLpDqI}-KoIA =u[i=e29?w aQ0BCva}2O,r[/T1:FG} &s"Āmކ$!o7b xO%%kŌhxiˡ%nl:+}PsNdit9ڐSuG9x*"6vIxOvHo~zyc-rolFeka?Y>ǨK(sa_5m(ϞaU%jiqpNCr~/@Td85̬[`6h:69'tFB 0a&JRBЉMt Cy7̍_#&O*JUw!áz8ϊZʚ'om!8Rd0!Jb&yQ^/ $:՛g&p-W@CHLX*Z #u3R\QJc*c#c3"%2n6upƞjqꦥhXͥxj'ATǟwUq#R.>/>ThE P",էP#D asl&ĵ"$CD!̎H'@K^ΰE'.kxCG7m ɮ.H PdHZӝ\FuDTgK|7SitHpy)0"`ptUBC|d 1k%B|/T) ^]5KkHeF1# ᡧoe $}VJpEshiOW@`'Z K9odsR8T+ͺ[,5}b Jt0:W \*J5_=c&,le&*) Ѧ ۢH?=I܁3D&b4ҡQS510LIsGҥ~'ʾ5w<')G:?$!MɸC> ۈhky0~I82b{6 y[fn-uZF=EpgPO'eOb}ؤ0-3ʂy $ +H9cYERz)kG|$"(:5^)l}۠ W i~F,7Xto  nl߱=;1or0j7mGE9D\+D2v8VY\Cbj\-p)a!{ˆ2[1 "5`ȬUgr6pBԅͼ?TvfRnLPEXOR<7w l9sVW:jY ZTگGJs)Vo טDvp*QeCLt,;OQ ql1Ba=bRf v=} vWoj9TE8QiPG&dXk7B3(M;Ze _Fg2ALNL:eU%81*ԏlblu\#W#$ &pA>_&/em`SH$|qtИ[x"!-qx0nXj;-umt-+l3^3*JW7%ab@h%LL#v.cx*@q^F]h*a꿽>;*Jc&>gwX{("z9QBEx9Fߕ6T:4 @%uyd dOڧTJ,JfD4wrZl:HOqݶJNUrB5j뎎z.^BIWLޏTz4Ԡ4ʨF !I\R-ܑMߐt)}թ/oVۓj=DrC<S zUdzH?>}>7@ܫ* jPn4G͚ Lz߄ų0-s4f\`?H^ NaHߣa;B,WzhǂR0jdASrB-:׎ΡVq XʁC:"vj:D~o3݌O65DaRU7|%NL#@3f3*Ϟ$>p-0e9whRA 0oS9ގU3=_c?w}Sxd)G\ߤ;(ԮFE2fJg)z~pçjIpoޕXVm_1r\PIj+̔e]DX<}W3 JkF!-k?dr0T@UmNAmTbbUoHop1X:d !:MC Itfrnhs_M5y0=|٩a & udS]deiu-Qr{^'~=" Ci":X6!Ǿ0r`B-Cb}s,4HVxFC)$'K2ǡV:ťEǃ)Ĩ~ԨW, xO-`u6cىbxL.5_S%g6ȧɗu8". nWowQqZ$ -G '^mIңILB /10W-.:#Mg#/f !=Czn"Ge7r^{PH}U@VMw9wPm5EdД YʃmJ{r~3-:T5 <*!-'Ը t"*V~ʔQ*}!ƹ'^ɱg`go!#y~8&ŭs3J'5[dgL>q󔛺#/IxG TaLJT;WuB;8F,S ̧\kA>< iÇ:CqHL1'g!b, vۨ:pfuF}@ScU;<5rC4 4Pȇ7f9?Qӊ=Pb+A<iР&v|ACQ ^x"YbnsSh_ |DN]|i/ggn[{H C !;Eol7W=i#Oȑ*EԐP]y6v1DIn:<5{AžmFqjGV qs#(U#FUT@7!L<303"ac붭 Λ!PI.QP,Q8Gh*L7Uل 5?[5p=(+pe<=h'ފ )UNXPW^|:ٲ n{!AWJdYF$dA>3nF3٠xu(m&,Me)@id}W@5HJ ~ w:&[<{^1Is_0`Nl3'DUfM+R=rpD67k:mM2X$ OizGV?h(귃j|tW\J.梮s`)}M0ð ?)7#z/{DT EX:ɑ? 9V2"T@hn"۱&Nߪ5@2M#+'=rUJo(VuP>K-,$(aʹ3J^H}+CsEl-D)\kn#be}]˧(K#p+!r< )uLEU' ΡUƾ{y#=|| Si!G(W\C "i ϝc%Di!믅^dLV*xk6 رkt-`ЗYYCP,yxh a^g_l^oT1o?\+ w8Oo.p:>(ؒ0a piPlXxr0XYʀSpQ-;w@^x#&?48΢VPtw^zYVCMX HXL+0_!3!aRFٿ=c?BB9ҕG|Q8$98#[B<4qTC]FшZg:L,LnlUH^#Ȅ XV= Ɲ}RQ⟄l' 1zE2b{|y8 |zF"BEN|Ky߲wU&X/Q+^/wj(ʠ*06?~?Boy@14 . QPu` ^f"~[|L~ v(l"bt- Y H.{&YjdUzVxE0@:!:Mof};,^&<S JRAzCzVR"Z@y5~%y[fϟpj}e 1r}9lvآ hRcz +4$ _9>5|eC5 )|2'o{&Oa3"V9Q2hX4 /$?ky 8sh[ ;. |OӀrwN/2hjbh%~8y"Kܪ|%䞿`. RbGB&qs0_g>E父Y 'Q M=/,[\ :F0.kG~2~j!h>:0 ҽ&g}3Q{ $!GGŐ5 o҅,8m h$!Fì^2Y7$pb5f~!U!+Dֲ;>W(3X eb^ ZHS2J44#BN+ ܢ`&~o/9աZ&3k{1B}Sk",wj) _yXzjB؎ N>>-PW9v2#}]2-T7*'KsxqJo9Z*B]K+sÞ㦊ŖqC12),Iˢn#*i1#"zMALM-Gi /׭!yw[ ]lIb9sid Y#n%]PTQR$ajr<4}FBU7ϖ=WXbn+٫0ɓH2T"K\2 #"NCrL`{XV D`KSsI/wYMulת>ϼDrJ-AWۓ Q\mj*b8(Bx6! z7-m{yRjԿד}]7 Iq(k: w&4C/dU8/q}Y]E,\ }Ei7JTUuR};c"BTsfZc%Of!c !ۘ>r53+Z\)g S 1U(;ڢf_a|* CIX 1(CG8u_fd8 t4>q^v5Vz6' {۞q7u}E)n9I~LiTE4e*բvJy 14( :|tHi()owrXmUM_d] b x/T\j`L̑.WOBRk_l- A:0*LG t\ɖ}X\|''*E٦_k!];}`G:?hL#͏A99reH?ۧ| p]wm{?,'?iHe@F[]+9@k|㛎 Ԥs+//ΘoijiX}YҚwԥFH_l ,8,M[,LNXqq 3@(DU<&@ G~7Z%.͌-@딫l3~3*D^)ð1s(Pb5?Wc}/1glBZ ˷ e8>6yF`6=߳:tX @\1ӒUuݴ:NH|&A#a ۽RlLP]d:e}tMTqS5X[ *lKTX0gP}w'X񩘶Qi?c*Z=ejrה71ٮu}^A5SppTJPgoQKok[_pEḂ4|bIg#X;}@Ҥ}/] n TҧiKev:ysҚ]+XJG1?ި2b{5zlWRyO*ENu+)իdJVCH^rC0c-?k@&;a '@NN<tOFHNJk8A.ZhVֶ8khp*',zJfB%!, "ѿu*S{PP-a MU:& 6~:UFEuBlM!4\T-p T_ Godpnh ƉsoR$Ay (YNpaiH27/2R@^ N|eb=V>*[F2K¯Sın(IBQ;K]oowۂǗ]n;j@t@}YU+K=fbMb$UozG7rx r`B*)4qS'J.^,LJ b 24۠`+D~E3QΔjTڜkuET Rٟ?2|z=S֜aѲpԯM% ԙɀ3 o46۰x yr{O `؜s /:h-# ˽-~p"/L^"h߈Z/Ay4ec=݀[RF0|gO{u ACI=Jr5A Da;6){9b;`U(6N좊ŎBloԏ JHwƒj! Fg(p1XoFio`ćy-27V;KF9[>+hPԊWKٜKŲmչJՇ&9j!گ.9P9׳Z]PqSR=3NWL_QǏ( כF&P\(m-p&畐F`bx BNS=lpXq)Z|/^`bOu:c3 E<=uk:u\$ &ڤ3I"=5"[GRr*?ӍH5 =QϻOx4hfvG~w&KkP([v_lCk 0ʲqj2fJOL]Mf [o{P,k$nOѤ*NP47kv ݸ[n/tόn(!N9l`Kov<$ʃKui'` iW@ c 6zt07]IR ] w%0i6Q*:Bҗ͢c pP!&OS @ޓݜDzEZ-;( &2!Ch|&sޙ'ږ m2k<1d&J7{.ђÀ^cv08p2k%j;"=%9'"{Pd8x-TݚDbɁG>D@=(Cl&??j8ƅ#nxӂҐ%4N  FOdz.XδY1zx *$H(G?8Ǩ..L8HNlYC©uyE1(:۸8^P ktXr\cN-@&[KȄXj :CBxȩASKb5`HS;Dzi(/5J^M[-@_Bf`㣛H`uԂg$JCw͎h CuR#jɾ!S08UNd)pBX7/7tS'SUsR4tmA K<5$>/`3p1ν* sQf4^@f$Pn>CSYwj dMŶWnwɵJ:ba{}-RIɞKqPY|Y 5믦՚bXHe,p#u;O!GFԥs< 8p#>NߪbVW׏@HŮYSy'@D!1$x/ѝ/œ/t${y'kPzN1I<&$!boohNQ.uVT M(?$_l'P`As.}?;3#^ NgT[:IkD6R f({&6e=5a+v6S"n гR5 Ony8%ѽ5EԿ\c^G)l夣TU}B \mOzPD1\쿘zOBv+"`7@Q?Tz.rqR#"?kS ;gG6s$֣첚g`f:=. n kC?o#B͂YeSzWb9&9gyͮ>Mkໞ {pLίMӔ@++T]8XH |Z|)66J/-5µo欹#VURM9+5вyn_~@e\EޞÿKz-2B̓CFf^lSkL!q?䌻>lOp𾠟љI|Je9pĭ2BP<9նI-f]?n;ƿW\}+rTR k;} v>y-8NGYttG&_n]1G!͉Lص֤6-cn?S!,3 Y,&斠@yq\7|_BzEj;ӓ}\d;p0Ad>@\]щh"xu"5yS`EM^A~%UԈD]ֆ\ ,)2UuO.!YUSgC`pgmّhmkg&v hӎ0/[I#$${~pC-f J&Ar3NP4u2u ȴE:ZJ9Aư|Zh8ܿ|ʽ-WB>Dpؽi+KB["X/s.k׳NBd-:= ,QJ,Elu'7"vf8EqD<'rEC"UšpВ`{8*S~p?8LeUd)M9}z2UoTŧM{ vaGs`Ai[Q ,#Rwd=xDIEUjʍU(PA@Q>TsB N A_;fM5X/"WH7z s{&1 zt2^R2Hy"<x+` ;y(\tSdc>D<,[i1FS: xhnvjlqe9_&n__Mb{d7t3}ij٢iDʚ:% Ob i zC5{N2aHK}= 9^2Y͟,[ƠHul&^?De*ɐP@M]=̓8hϓ',x;awdt%5}_SGAgV?¡w֚Z5ie-Q=٭Qt,q|k 7L5=P 5 >DHU# ;I"4wE^D`Hkh񪙅[yq`\Pqv1%,"^i봣㹂V]@ښrǴϦywaXs9yt`C=Йs'-<]PTM[[9m#֚ |Ȏ*6?FSAt4$\8{ L :*#ha{pAwYS *{_X _!#4QYn-fQO 9->&=X/١RV=83^4Yr /H"0)v(r" PXeuSOn/S%ֹe4x4[.L~Ww@(=yLZ[׵SIܻetՀw@t$D .YS*V2*?OB-I,PU3RawDHD#N=Al5)>RRdc5YqSBڢ.[}*]KA_|&@l6hՏ8JVIfppoJHz-&|@wTRjrNKH՜ΙWYUˣ%C9 "ߗRS0$9|3D|ka^OL K=xbYA`"knXZ7VChQAF}qgZRˠ]1T\Bmʘfb[{tCc"=9ϛ1/($ Ȅ^:Bq23 ;Qtt[3>l΢"U`.l8hb6j;7VԡyGB ێmLu-Aΰsz/(GRc+RsPLcpƯjC8M Bƌ2%ގORCIP* eTx%2LeiR= L܏X wV/ꌱf8``;$M@.=HI:H̫P cY0 Xp QՒ! w;z&Qƙ0?#)It2aoW>J&/r\x޳>HcJζg ;\;=^BG]zX<\0ݱ;po`Ks)LiMHgr1H UG/N*]*1o3maX?hB0r*nh";GLހٌ EL)\s-:B:nW&dW,د>1"..q&^4f(;VGsWV$@`M ?CSJA*Cit+d!< sõ֯Թ&ۈaa1hcK]֧8_r##iUкh{_-Z ũG/6'7iȜǃɽObW8+o FX{q뻱FmWi8hƅ ^*N)tFY*ϧ0RizVnMMn S1#_禡5Z vXTAA;eͭDv%IeH8֙{}1Y"WTBh:9@=6M|&Eg=4vTj0# M)u˄>+"I|ʆhRޭcC:m]pr(L<]hM=;l9%3w;- ekQdQ.EL` #̦ؾߑsiYF[ ~X۶ bFȍZS-!YJ|i`_<[Hz`/,Pǒ4mfwMÉ- Uы.'Tj(}vvG}[^(Ij89~o4xd)%=EېT!7%nQwtfh@eA&I"&66(T4 )O6K~{QDs;p|mj'` krZ7)puZ3<~cv1fy49yb0NԐj~& gkE^ s6_ ܎Iɇ|씮M>>D)ح(Өj횋ÖSʇW h$yifD!SwY</YXJ8ȂVVK5.J̊[xN Ly-;Db%xj uВ5FRj6DMz)-tcqԸ#a8X5=:ڗ+. :HѐHKHy1-E)۴RmYۃηSM >f>R[xߕݽ-<#Xz85'x*tpr`v$dBQD|Xl2be@L;*WY7xbPF% K^jҵ ¥ k:Z<,qnhQT Qfi?(,fԹ#h%`}uvr7O !-+x|sJDJ C4-R^j$˥\"|bLtL$L}3]9wC*)Qy: zr œiJe5O&y .\N$k@!M,F>'i bNbV?e#Ŧ/ycBK͘?@ {DRknT4خtp³(*D*vU1/S{u2-lӏVh<ԱH o:{Q#`a~oTi 1+ؽN(Bh1Օ"c/91ru\ ,]y*_"cJS]ߏ]v{~8+|HaܱmѳZLRAmrp&~ŷV"Z8|q䨾4dn ³:8/=Q#@#sXBS d5 2VK1>b{`5hߙ+Ɨ IlB<Mhu6m$3&5?~Zߔs:[VS^p79J/ǫ#,cܥ[DzcEu'\H6C 7wO}ŘXn…"0dy.tK"Fb.2 1sB2’@>!X'qdWOqv؇k3'[T\{VPOIߜH xݰK*::&/ʷI 9.8?ɔLTt/`Q˟L+Y=ܯ;o3>tCPgѴSKyLACI/e| v׍:ila0D:M5{Z<2+~pWeK_e%uΤƓS"/: @Uni |7 'Bo~xZ K,H`a S\J6ׁ?o,Am- qJ.t/T_Ռ+(8z엙BL0i؞yҍ,_*yㅥ` +rt\pt&`y-L=!k7&?c (#+(_GYma.E lX[W{! qN/xE"QXx8%jGZPׇl{fmw07B2B`ў:{}jQL9\fTwyI`X&&+=]! oNk/!D_;G1i-fd2kdOZ>\Vy>\-;)d #uĮ+vҒa& ,DuMFzμvAJK҈mӔՊp10tE+X2 E=%ϭ8g%+줸X`Ҕdp!ۤS8 }V&/"o)3.,켩q;K!32ڜTj$}X;__%aE0j]?% L/4ֻ07$(^$9g$ԓAFh,I!p]~+$!1ȵ9O;;/39>>F%$"g, ݩX8"$켋5+*e;A<ߜ*^ݷϦ^w ycΣEvuQm;4| n +fN@S)7e7Q lFaq: uKAŅy+Nv?:M1}K.qGےO;a 0y@欝S3oړʵ6Ep'Rt[a5,2o9z߬ ʒٶ~LAxiv~R*^\,z*p _<ˤ(_'%;^ <&sHNL:\+@4VqΪǓ~xS##`7o9^f H|Ȅü$ ZҠRhjnErV TX(}(Xt]dmT B՝cD <*Zs vϴ̹DlN]>ᥪ+c=luZd<+CkIJ"_+3dq;FᩨߕC2=2{_T *\v2E|/AC~ԲX zE{>[IѪ&, ͟ŎÒ`$36-:T46pE akHnz$_4V&D# A5Y5uKs~^p;[(Q4md !A&gnd4fGH!,>[`'BeSs| {2dALs;Up+i Fq^ȼU3rcXHQ+MS{犢buJ qf:Œ_6jY?2j$*JW~ccB){ã+ڒTUFlVl7 ,LȖf&=;-uW~6MP:E鮧a>_gWvvٺSx/C^^qZ{=`T?AíE/8_s~r`YfqSOش9Cw 4HР]i\$XvBA26Md@<}*OMD 8B֩DYZI .oApSӤx&9Z]ܶq㵺]}#NOI2h2,)c<9 M3&Š^-VW""q!W(^?]rd_2K"5tvq.1w%~>]Ju$DXFt!( x+/߽Ry".v݉[+}hVL]vnR*ZG`)Cmk "G<-A# I>s_C9L?Z:Y1Ѹd9sCx"Ȫw~Ej,}ߠaQ0|dVuʾqt=>zt+(߸|mQUv*eQӆv9,&DɏL$y0mI\)aT~XL $` <US:PHu`PU2df1);)A7 lT%SL08<=bQnUoāF5gLMɸX n*]TA(OmFⵣʥ13LIѴkԙ15qd }/<=uNyA;@Ӊ5+2Y0Hb7'X}fSWߖ%b2{6~%faa`{sH4|.wf2DkmWp"& XEO砹G|T^Y7O.o˝\u{]%%V0 ^O}V;S> '.g=v,;R&=z& ө.+Ny m"R.p|:#c"n TRO|gMښ`a3cQx|j) ]}3p׬7>`APcWDm!Ҏ Q'N&;V%P#*>w b`B@ RD> mY9el")l]&*8.q?mQ:-X<˯]O%val /.aPkyktER)`EpQי$'O֐$+S kBQcDFfFhVT(> jۀʱ!DٷC;0FޒS\^.-^IyEn @c"8y&1ókLbQ%~*4Ln! qCD;g"nP;S8ܦZ*>P Mh('c9?]qhEy{жڄ`Iyvb05A>  Ɏ3|Q1GeSI*͖ȧc*JP`Yfn}j_GJgL:hl?Mp _P4Ǿ 'ej>QGk~NOϤ-kJRƓs"p1=t_s Ԧ|~`zp~uy۴㬀ո' TXS5Q:|}˥þF 8EP6M~dk'w— }ҹ^@F4;Ç«Пn8,K9 lķ\b8$Jx1#bdxA=T 3?B0\4&K.ؚ6QPp-h(%*$E[G}\wQEKҭX"[jӥA; e/,c ,̎0[ u8`aKnW9Џdv=o=]PR\Ź =PN:=$|K$m2et/2&ͤMd>k~(]1I[%- ]ȴ'OYv<D 71g>͖)p>ͣ.e3vKܒpGJ1Et2od,q}e4"0ߎM4^$[Kl_LO)?He&#&E2' CyV6&*!8E9J{{T!rm07ܑ q68H%uOcC֢?fxYܵ-](bzm>⁣kyXCTh^]k؄fh^r[`$]]{8۔{?ZfI 9ǯY]QCgFݲSZ;L/1@akHB Woq+,ܩqzsB 3ud0&)AmC"SYS\%.)iF.UUf٣6aoDKG?jM^ԾH-s x |`f*ƺ&mEWߣW‡zp [z"%R  1΂xD" *SdY{x1&2vdc'C &[tE>E:N$KjVE' PN}K=OėR"wg n8:QcCb 8!uXz7IB(H Lgj`|N9jB|4tV OéOQ2<*pc\mK|ߥVw^rRx\ĵl-hqz8*Zu`X7Իq>q`CI}1 3фm>uOWm\rWQzU&P8e\fj9^Z90h/Cŕˁ^\9wƠ^j04H 2)mH*j1҄@q+(~Y2šFE\ ̻!I`ˠ&N`va !¡40A9lOspMG팦4Mkm:@# SE7V;0}O`G8}#XUoډۈ*d~f E`rkF`[xi)JO`9l0"JN (}es:Ia,}-[|0oYbOQcɽM,YBC{;[OܕcҶ/WEyޠl(qߺAc* /x s"]&It3;1ץfΠh4 -‘"[6GQ`+U}[)/jj.XОѻ6WzJna^keE:rlDz-KۧPF]w #Cpm:ERV8a"x3`T~Z>Y #V]8`SFɗd-&Ò/6*R:!gsX<Zi8rZL`\*ɦI|Ta. jMO1Nǰ΃J)$*{nD*mۻU56Bwt@APİ\ڨI!/rvM%Bl iQ@)%јu~zOSiZ,:#x=@Pzͬ:nᒺC~S`#Np2 Ҝ+S0轘{-tR<|Y+LM?.S æٚ{K)*tJ.*L҄u>G4]+CrQ7MƎ[ &x)uLQTJJ3'tHߘ5[Ftc>)>n;n12' sL~z_vx^c=((\= a@|Ӽt{zDՑAMyB9epC?bbBw4J| QiQ"_tvh)Uڟ@2CwV82c97yvj ߶T \`U2u_L0\ovoςseFJ$P1V9J_%[oOڇuZҖru25}7VV?- T K+@WM}6к`y[>ַ Zr;'i'fn&@&YVz&$p{;ySiHR.ⷁn m萌[T[ }4n)QBnv|XC{[usf1"SFux$6՗jD"MjYw^(yUcCaO1;L,^GlPImiWǐ#zK Zrْ+iNf0S4fq@T<}*v8`Ԓf=y-ڟ ?#U{ %=qxaJۏ*q涃д}3K5`m%@GW7oYBy;>K)7'"E?C%|Y7eUKJ jU%d5XhM4H\ yV<~d 8X&ڥXUR޴8\mVZB 9>ų{O+[b s?V5e @l$E59nJo%Bou0pnp1>NW44<D\NEL' -Z!z-`t$/S׿b"0Ly!=k]>{iCMNbtZ-j -E*Wn{K@ r52]|p N ړ=͕5mzA$ioEJ*~(~ȋCgc\RGy8~O^ F{5O\%PZ}._Ιdς2eq*bnt~|5[e{RM%"QJ%s!&Jޭ`Ӻ:mDl70GU/Z Qnc o*+}@{23S?b-!z ˫2rV[ڥ^Vةu+j$ n}OmUD]e t,9bb ߯M iUjl;zI۠k8=NZ n됽_,'o\#|Ҿڮܢ y *!|dj ň[/xyNid!6Itt-Q2H &_ m]Wv^tT̎3ܰ_EJ7C/ 룸 8E G~xg1 Sq(D$Q z8弆QصrG]( V(#`f/=t[\sbIwWsdPbCOFzmAAdL9+0*{coyMiZH0r-+1?\B0,KԁIKۀS=I>"_#gj7sQ蹠f/;!OC2qZOi쐻n\r .^Ur!'8(ւ(46@L!}vhrf1>w a-(Dh= = {Sm}! HiFmc3 ud߲`fmձ9#{Pטhz Ky/qbQGZR) ;g=fJ l@<,vM9@ _L_x-Lu:|{FU} 4 ~Bj@D*'<o)?3n7A|~.qE_#; 7a4k᲼5,cV06t辻YL)A mpK=P0Y}Aڂ %FZ|uIg) kd37`pΕXD/FĢMRk>wgPwvԷ85pv?A~wU*nD()T+!a? y@sȵܨe-p*c Y8I EttKWr,|w Eذ=)QVT0' xH!>BT3Zd Dk Ѧ)9UT$;}@S:h{[7n<-VjWfU?cOt(Hs/5 ?O)Q-d.r=:/*qftXb?B:zDb՝N%AB:a_V >Ko%#@fYXN }ȣXv{@7PcI"h<)h)s(d5.ӌj3-%J_Ͽ)5.qq o];>}{Ysѳ3!cӵ~ mW1֯AuO-7k&PejΪΙL7[ /S]dallWi^ €zX<j& =t6k$/R^pY]Lkqi7Ґ/-b0L8Þ lGti;j|v ?W@͖>F$C"w6~>!~n6b6aݔ$QuW+9ډX~[0rm#:|Y<}^Nϟd s rTwD77A(=J9h؍1GY] 36$~5, 0Sj F]($C/T?SďvRg+=9Yds^3diB+`:;L!:L GE{%[R389񶛴Ntp17>8hOptr'o]f[_ 0aB,Q FCS+b7>VfnM^Ĭ~?Txr^Z!5z.]7ŶY0};} !7I_V m"6KA!2 2hФsStbCp%7 ldsK7[u*9>S~eO%rr+m]xy*H:o+{BD7TzY%1|K0X%ˆjtG$L4Tx݃$xqe!DD\Y\V08>Sߢq>!c| #Y;+B%-BO3#.z6*1aS\8zRQ&ƺXC^l;֟T -X"0Ɠm|/Ol+B4h/S>?˱$&)RTf(@Zj g-H eA ўINVUZ9:&''hBe&KuE#WWqHtPWHغ 7ႱwuRDĆ*MBa49lN^#Ͽ;~LZ|#+ &L}!yOެVp@W^b۲RUf{ 𖠍:~c  Jl-:$^)c[-gv-)+lcR-^j[hJ™ -"_<Gt$ˀʷj`'Q\ z Hu]*<0QIC+fRc>0) TMJ{4& یW㻍}^|0 J.>W2)iƒ,{K!)a$N|q+ҏ]*Ĝ\̾br yiO_TZ̛C<4|'rX24`EdX?wK7Wn]Ϧ:!SqH~S% bUI~!"3H,C6X, yVG+brDitZ !j "7/@`Ұ np0`OIbl~0q)e .Y0NʜZ (j4W!0 Ĝ6[*Lhpn<4P\sc!Ѽ0'MƐ-6PDD*1 _ u^RC:$L@v`)WvVa|HnKflGmwX&0x`ېQe a%JEJm:\*}/\S'˴b/07LT/]0ދV PnXfoyxw?T>[2}gfAz)kcXc'7`sljŀmy{y5 %&MjNfg:~$E=^D;ܦdnmB9s"-]]Wl1Qy2${HMVv*@JXJ!ꂂ1,v eKv=Q&_ iłd=BVnCͱ~?r=a/M|Pńi>0xXx59:a.u+uK:.S fNt\leXL=$z&eWo9kg*M>7)JU=E.O迊r EneMCQyw'4Ѻiթ{YCNv>UXΟNw-r:Du*5wY;n.gŶdg{|k992:Qtp&'*k9/16RS? xݾˁ^)_yu-hL S291l^<5 R}ܙCϭ+Duj?lke\iB 飼QyOHW_H%-F\ň/ #n\4Htn^l^sY9po%gI=4!Ʋ[o?raȃ(ʑTHMVeb}x: }7%2O/'&ѽǟd );ыDiNXXr'<7Lz2Nzx?ڠM N LG3KA_JȄWւ2/4V2842 +"na|xV(9E5~7]m1ԥ8ݵ y|z 4ۚj!FyFL^xgۋ?Eb2 OM3ebPf 10)O޷ }L9`NLjg-X`9ࠠ =:D"Uǫ#/HId3Zqe`̊OAaQ#nԾ*M@tϝz1Qq:&^Rd'k99L,!!BDsV$Nŏe:?I8ίh{.~_ }&W C3w>DuS.vMlNݧ'I$oR9`&s gw,vأI,_z킩,4̾Rh#"Q8VjƑt '˷ -#HF;|o9q I~?<`w@A RƑlCsX_J.OY ?p{?Bvc/R[xޝIuV> 7R"y`9}Z[ vqYLFJ[vI8! X U٣1V֫7d+t<yҕP^j*qihSa1?Zr02پtU<f`:q GTw#P\sxS5 S?SrhEefjq#tp K&r̆,m&FUXq(x\MSi޶jnD ߚ0M<pΆ5QiPNm3 jRt%h79w*' T~fT%]ٓG[=G!kngŔWLnJ%Q=xJO$Wɱ*[8ݗmMͫ\d&y < l/ %(_q̵Q>4m>cgmۖ%{Vp<+rDŽ [r $ /sDnA?~u\9t(D(#Rf0_SyFݟVXtsNҙv,1(uɳ(xĬUj#⢡lK[go8͋ H!!T1B_tٔUMkvɴ>&}aZ܉ %nmB~al?[zysWWy_8־v::Xqظͦg+UptKh{%aᢊf% Y .#. JwZ<".LE.fXgoّ}oaaGx_l.lA=. >ꛮ/Aɛ&l~K4>D⸫@ӯN7uo`Ӧx`]H.kͳQv\ 3sgFQTxpsAk>C!r@-g s<}ɂPyqVƃ.lmhJ (.w9#ChS(i)wDENE"]H" \(S}o# ! M(} )"ȡF.v \fD,͞EybIгM02+yS)_Pdj s"TVXh=9nKޝK+ѲNέ f=9q|5WEIfr<ߗ:z-;*I,^"xsA?ރ<%5h2   Э薺b"o׊o? WsHys_la@ꅗPk!66z~9kb Jm1EH?;r!Sx8Ekc4+UM*yz!:K4=P?Kռ-?u# )(ƥHlpmN &:bAZ}>VX#I@Օf ښ&h=1+5n3#f[ț *Bfk-k{~ ne~ѕ'l.dO2? a R]GxTS9|TE9b.>=Dn½n?5*<.1E8BUX*7@T8-X(;R{U5pRGfUf# m?bɻ[H+x>tl='qlO)\a5_ۧ{k NQș RLef(9~>)mL|\4qFMzw)6 g&G`E*dtX1I-9+J_QIe&#=P~C]LW#<~U|z7^.zb{<^I(#TAHcMF)QhC$ЊGd Q쮞jKd*gY' f•hxƍEeDџ})"Pk6-Q,0YS9X:=n=X#NO>W1%qqh,1O]9zD[ ,uC*7UQʈިOrQ!0? JiQ9ibXA! ߩǭ ^\ GND2'bbGj+n{S"BR΋Bd~vד^M{G^:)CY' @x:KEy=&>ZX@3ߛP8?҆ ɛ!.l:ʍU  R3@!fX&AFg}=;3U^o NqDжiX BIΉ-*jLٙ .=?e} EX@? "QwKM('?Q~/zT Rnr` ݱTWd Ih`^n*A`/}oQ Wx$]|8[?4:$Rwg0HiTķfQa+ zj =I@?#;$`x1+[H^#9 a|Wzx< ]@rCƿy@:I@TME G6 Խ'-$7QDFQ3m'897m/vQ }JOn̕3nļs)޴t<hG}q݆q_;Ȱ4zt]q +卶34`) =C l4f[e;R^^sGvކr]QAE,0{Cs p0䎘7Wyw[T+[es4vG=EzNfO{"1h),L- MʾLdqn$C, q&b==@نQ4:GQa3i|it âa`=̵XK` Fg&'ò:LI\2#%"LZK9N-V<5AYl"bpjF*Goz%My߈8~)WQn~WlVp@-K,~RLTފ *eun)m7ZeiiGPZg3E$0|@׮m\ʉTS3; q]},ߌ;.z;Q}OTVF^?F685NŘi HSe_6zG\C\W0Bg )Ip&kwPϘz+uANC 7;z 2>:OမOƿ`42 vw']x& WzLwPpc awV8$SD5KL- otr!ΜG%_.mR(:D8g3;{?i< Oy"=*8{%i ,+vffy']}"I0647/a+1j>/oSv4K)w{czę")N'/р. J Z9/,>u:@˦zբMq' A0LXձeRiq]RHj4}>Olhaת`BQȮ<*j+">S 83vSZ:Jyl#ɷJ6;-r;N'92v&xԁj7Le[UEغ aٟ3?meu7+(Ykvj+^Bz^8g\xOܬ2$(8l|Y%4ND7x_d./ڴ/K5 ӽhh `ywb,gwg ıurZvFY2 ]bz!Ӟ_7E ]k6zH=+zf~x+lhpe?,C /2 |U/B^fSt|ylaDg#v {ڒMoZ>1c9Y) XPW0FМg y=Rycg/LqZ$SewlRvH2pR:KxmH" ]^8sl`R6Z2ѿƒ6) Ez,!^REv"l>TDv1( tA;e+RdU<,; k[H̩RJ\Nq'7[=@<c$%DKw_d/BZJIӪXyO6^YЇ ׉]\PVUUcd("l꟫!lO }0/E9}ryLkF+ȡh4mĀa#2itza%3 yЊB ge Dk.%JwrVg/NeSN$É_h{eᣐaօHGSi:?P@-uisbC t#{~#{UZu`alRc?v  x =Ex&+b#7$>rXŬ<8r|~wgiA &+P=a~D+qdnA>9j =-p̻Bb#x$ %r,v/ gssiZd=E_xWyQ7O#٣H\ _hc*#;9I׋|5avM^{:E[K<{4X; AMzդ=yW/yJͽՎ/$m@gjsd\-,Ak*cPnqAj׽R.Cgڌ7} ș>=Z P ?$Et7Ƕ@r{241,u6j'wҬAED1ZyO2Χ +9jBޅoA -~|絘B_ԼOVcU wDIt݌_B #piEe6- \2(&^j L+ 8=eΉS{ ↙Ieq233%oed:vw#6sR‡?̅pD *גW PÁ>޺GQ|'<)~uǟvP5ΰ§/}CFH\1|?#* AN"YW!MG9m j?S |/yA(WG%S{%[qُC2)QGҿ;].е _)W"ݞ\^߿?)U/T򕞢Sr68.l/EOZe5*p.V*\Uv?bOJC5qxih4NhJ㓬]ʍ&kR}=qziD| ӷiCn@EWN z;͞ޕ/6.Ot\A&&. 1t݃=赪ޕ qG|vveJ ܂Nmv-דbmGUԔHZ) :itmᑁ+*4&yF2@ס`"|#j$5[bQy"b:主.D.@ii_ _n,k*% %#rƵk A('m?T4~L?Zj<ʹ{+[o؄9e fe^1mKQ|7H4ed '^Y|) ̎>SJZ0t}PJ En/h=h:5㷘jXB)Uu $Wep׿SZ aS4rBOJxNxr L7F&E+nm6bڤXI1n)Vr6 qq|o8+EX($S/>mwq6:#/;Z 5(Vvgiw`̽'6ޠNY刎Prh"̺^ޗQ q eOFhcu6[S@6pHW>ޅyvDȽ]p*]?rY!h"*b4# b1͓=@QMD"㲛Nf!qlKTTThNJ3ȎqjĆxrdP=gSf1Ms4y]3T,6\$ =Z3JԴzDGaNX{)cW_΄9E:_iH[koaFhӓ&_SSM# OT9ZT8x] AAzuo,$w$[3Grk psn$˷!JV2r6PU7@WaXݸ}sM[L,VJ(K> dm7\AX1\ϴ#?A~(c ~PK@TOXH.]ah.Zne 9IpdBl Jӯ9>o[7l úqxyxB|Gh&}@VaMf SWC+ɣ']lJ[Ba^q2sv,ӯn/$8GS^Jac94:s]YV% @Vڬ/@2H-XQnrg>[]7:kIGշ3C/$ WA8Ǹ%:K I8n,Ǧ7o%q/M.g>!W .AMeO'7`@7CuF#;H#F!"7ΤGs]Gky*!w&H"3tFBXMk'iK_We2o^J=h^~.JJӽ)sޖ#AwP2?wqhBM[nPQ@|cpG~`U0-X'31C02D1.N֚yi c$O'X{!i2hp*0WtPa9[?$]nlJ럙Ѳ1t|3hҰ9o>K (-Gel1rXLo2bvu{cޣ\VՔV j8ՀWT9(bƵ\дE\|xADYk=&z?%sn"F|1߀h[bއsELL[Н?'C/4UWzL{~3+4Nc$)v'a<~1G`rV݅0Vi'&>D0ga䎇^|˿ȡt`]bkFbOA-Bu/s@ \DF&?/ P-1#;h Yk̭zٔpL7eg{9.>#"紧b7 e=h0/n"F+yً{XFocPRpy6_ a xPI{q['D<l_O2w!K(M_}PTMupO9'Br r]I0*t:JX[˵Ŭnx=K֧zmdQ1gvt6*cy9{ RXUH&Й9{`vTo1}LCsD;VktHxSphF23P#ɂ3B`ߝaqul[PHm@6d?_e籕YC&{ yC/4kv^BS-*]~5] %QߘƆ9F[`~{gяŽEHv`JNAW!l/m0>ٿ}Bs`E SV;`."[stU(T #1Áj m^|X ;ҊJIIty15!ލ=$?j$jK{y\ڞF>Mp^(aI&J? 'fҶVXa牮X̬/yoqv%!|w2/X!9!3Gy< j#gGh\5)_Q_2l @jT;/g͏Vy#ZP-cnF/rfZumoOC^_̀Bms^4ڸˊ=;KbRaNhA*$$o+n$ݼHT^耢Χ2ytE:5*t:y~ZpUfOVԋ V}gh7lQђT:P2}>t3B 7%Sv|˽'qykr)C3r_4ЍMMF|/GZKDϿ|9#K\h T&׀^N&oh`Ƙwg"`<4NM;c%Nc;p'5=Y\%SSZm|lJ'mAh/C ]fE_O\dwљ+ӏ/UZH-՗դJI -#%QNzN>mCPib>q3d3/b`ýaA(V H$`e"Nces^Zҋ.dܩ|.pS(0z`ቅk\ly_o{hzܲ-!\1G|7i:#%۪e)r(܃hrZ ftviW:&.*d!W a<$qm0C)0Eej~OiS0OrxR_9SQj&$+GP#sN ؞yk-/sdTH;]PuxFD0X5TmA؆wg":7cNږ;JE2} 6Lj@%rwI+Ȝ@ i`` X7Zob(!SS5r oUka|Oh ALi{ɑ01qcŎ1|_(}*K 9j$ccf#l2G$ 98"as>E{bc8g W9&d Qbfv߭PK~gQDtK5pM'ENޡ3(k@a2*V88ڸ1?O./}$Rp94Mq7*o Mu䅇7V;mNǢfp?j$H3}j|)[%>"Tdxhsw+2#{ȴ1:DV{Dꌆu>lxVfAi\D\%}CT!y7q5  PɪWB{7j4Xl0[ox,S.9G}XWf\K?⪦K-(yîɺʢpbYqwfgW}"6oMצXN3P$5D3#kHKb5C 1kIywiUorf4ERM-Y . Ab$†,׺i[Yfs xq ^]zLcq~H4Ftf 6!]7^}}붇c8=(ݬ..klZz>sJ^J#^ i*sv{|S-lT8O:0V_k-˦nNaCh1nI>I58/`l[.3F[?*QTH2#U#(|Pގ~~iΰWY(Ո^&*D#Dmhf)OYDBQ`gQZFYs+,A5}Bٵ(# g27x"l] |N/[gBF` ՂS'ґ#:^9{R´%twaV+7uک6| ,NB h0r)R3w% 0^ m! ",9(0BO$%e7W5SDw22n:=TY{Y;*.t9L]4l d51ړdb[7~r={{|u~3l -wn?8Q ޜ艐MD_8ԺS_& =G=q kRػ|+gE%?rr'"?cYuń7?uc7^gHjvrXԪFh_sH1=2W#Pde5Y\T4lUgtmܲ!#F@ch'i~?+DVgel 0m'E-ր7ll8<}||!7:5O}fe5a*dK? r탦*ꉂɲJ]E3:8kVː3eXUk`X0ු ~";y{ #V@Po8s|~ۚ  D&7$#`Jq]4Jm5YƋ󰙇sJD x5D2¨eLT?H/ǯؙ]n?WӸ; +pP A~椱]/\:D2ҿVhǫD^~v hQxNYgq"-kѪejq T)V+L4om #Zl-(G>l>30*OaOSM<ڈ}*lgA.IDP)1@C_+ϞeH+)ՀWI0MԆ!"KNBЛ[9* Z%WghSA"EnoLEicgu<4W/̙Ô5'|) yE i[Ih\JRT})<NW?4'q=X4mLա` 6)`Cң-O,{xeZ5N.Pxag>JVL$^ԾxrpZ!DžUHkE-~1t(yU~'^ Kbm^䉹\+:(3}Q%V'O"sH:_d,=%+_R?; 7 %dIڦ`oVF´҃9k^k' j"o2Tݴ"Mے^Y.[T· usZkSsUb4Wc5DXtk6<6C q7~N@`otKm6P ^i|1ႏ ?-_"WGd1A0/ԒN>5qm;-}l0ڰm_WX\"1Eaq_]*AN<ټS(\@Geyϩh&5⦥€ @[Oq>"Ⓘ_.ᬝ6A~b1TR;Wt (YCV}Ns9իHdkjey QHCJm/$a-p:gBui)[j@ey=er=D.; zR}p(ߘpq<./\ԮdNk:}$ى׿FXm^S-OjW:G&eY 7$u@duR߇wȅ¬)}o2GW[7Sy9rNN>'8}TnQ@w|4HeqSzţQ`8)9uEh=꧘T6&< ylt;vR2C_)nYDe鏖^Ftxpo/e%ue)j9ybJ7K@xd^ZImgס/8@b&/)AfB_B2q]5t1-ďg.oMcac/1he}]?)*]|ݙT1T '˽W7X;]H972Pd*}roøgG>D) j|ű͟&lGѸ$qBBLnPͺ,/,YNK؛wj y#Ƹ`_ջq8_rn t.I}P nC1&Hiq^넘pbb + 2]~@6`س@=jaTWէn)$!{y jˠd^3(YC.SeR"jrIuR\5?ZtQ'PUUhdScfaV|sNsDj E.#؂ؕ*O#jEsZ8zSpl UmRpX'ߥurL4SvG%UxV,̂A6!*OsEV2J#,˻+R`S~5kuSݹ+ S*C ʈB D؉`deM4ၘ8QOs=D zȕڌuN  z*g?b^r ꁡu.`P7Bg~uc!N9[)Nb2usOB,v'!ɲ6'@8BcZmRf+z[{۰NY$ D=HDq?]ڪ)7=߻*vh!3 0(/Qꑡ>͛>g\ݑSrE*) \ΣD=qqT aF^Ġگ5>w:8PNZfu@?+۟aԘF'Kt8xv$' (2zn./BC'VN __Gۤ-_lZ_ !lrbJ\Q|oeIe| #r#|y,{3楴!XLHazpwaMiqi;iӖ4E7bus[ŏ"tuH# Ӫ0A0nnB{Ux[t=kzC|cO Ӈ_K2ZH #KkBKoZ7d![)6Bq1z*{BU;clEqQ66ЄzQ)ѷZYXtNIhZ,wWNp{+{X,V^ 7{pQ؞ ?i; }rFjy;t]dٍz-xāHBq+otg6LCoͷ Ng`tOf} \\p1T񠀻I)d5_,\oJ ie/"EohBh𕛝#pa΃wHg5LXvwL#ߎ^#(fzlU^dr$ksP!TqK IOi1LȎUVˌ"`Lw™xVn& ļkd)jB{qfP ]ie\5JS1B%V:.n=sM){F?sr'Y5tVwJT :Ǫi+ c0fB~.v a b-h`Y)%/#}Vn^?92TBF…o! 7wcP+A$J6B[h'N?ۢfHɣ28#?\hS꽽FIqǯbIg6d6|ZHCUaX驜Eli7 AYw82sRjg5Ĩ54kIg#zOϲO(/faQ8esH=m5m'(! | g1lkD֚ >nE]y4Hř:?s )u`fl6&8E`5nJǺ8–\DXM-]HȬ6f-ͣVg^wmk0x/`cB<,c̃[XǬ= EG\Cܴ ߆]'pa-Qsn3$Kۖٯ& (-٦4hS?;ꄒ1_x_yF ZXqSLfZЌ̓eBoX[^;cn~3_ lzJwX_hL%䫼#KfWJ1 X-v)0ؘBT (r %=NߍRspԈ"61(S7;h"&.DAֶ=r$A]e,ޕtt3H與NY)Vi%9B6sUoqiU^wd9Zƕ2+o2xZL)Lx.^vćJW!Ƽ@ 0m5\ce8PX#Yŷ,&H"8&Ter:1I JpcZqoۈ>d[ ۤ#w* ?G"4$]Ug_@A(KV)w?oڛcu༕ԓHf#lۻ@qBw U{VL'~>nl§Z=t_"SFǛ *S_7<`wpR.7_̬/[Jf1ˮ:v:|##Ggyp vmpsZN`]?#*.69T-&/yI/I Q&qZ<ȂvWKfC~g^q-urDZa~A㞝s(h{&}H$Lhߣ9ەC/ Djyzo:j"h Sב}h1j`f˽M]xSd.Y֟GWo dzU :$*~QT1˹(\`/e Pm;}1_m =ހL9 ]1j|{yiAͲ 7ç/gE O<jO2NmPczm~g!dId2qOgڈ x>D3F Ik H9go {5$pfW)tWQNJ {KHq&g;c'ʻLȽoÅ,>79d2[5C<~ U,;Ә0=7+Xc#XLc)Txێ xgJ',B01#.n~_PzAiT3sRB6UT~BjӪz̺I9TA9Ϸ(w\m,3QafP؊= iŽpOhuk h!2Gda+E1F=xyg^McM0r1reɈ; d?TG[ie6*j:קj*X T'g*.γ T/󈬴ON-YG R8 җre>mJzt,MIjgNfX@[S<y G(G!(h@bOB7k[ kYҞ[ C?*٫ 1%M>WRÛQu%xR.uwy,ʏsu?dxK6sڞMDзxWLuAÃ)u9+ᴻ.F7\L5ɖ + {5L!rO6 |Y7Hkbp5At_!EڄLd^jEMldT-nӏ ``>}y*Lr\f?^r2?ˤӽh kBnb_dx9=_ :7\L_ 5o4OpB-FiIC@G#>=?@09Ͱ P E\djr [".M%3@ƴ(cJY=hH0EFS_,mp6gͬԝmVy@ ΢E*B(p>Wɷ/e @npSx&orTE2RuoL`&^/tO|iSb>y}#_ޡ7.tu/gvƮen8UJJl+{AN@AlZ7z4.މ<\ Μ+ͺeQbuci&/غ@}Yasts"RDu;PS-bMg]X&bt|3w7 Lr9Z#4)HAQu yWߤKF><:ˠi)ҙW* %v~wrQN1o[K#_BTWyDGmlšqފ8uW)jnIQVmkZM1Ǧ9r:W _DSs'0flY}su*,ݞ2/Dr* Aʪț;.h).T]f;(t7/D+ SY k{Gȇ"{5o :&>4RG bJr$'Lk*܆m.7&qu6?ɱiT8 ;f^+UH.4cq۝bwV_1vYH$憛VoDnBa)gi-P{;i*=(iv E?f ZbʹfFሊ-"GZ*y k}cԂɊ;v$W1Vݒ_`_ 8 E5[jΗX)-,'0#sN^lxG&lû=OG^?nb.wMS`n6~N }eC{Ⱂ)iS:2 KPB^ oi,`'C>1=@yiFϔn,{z}7=d82 iIdӀ:RY:~~ro R9P/rt`/Gr 'Ü%j6-7Kz=b.X/nˈ(7o ~5t8i%|Z\ŀSKSJ@n\W>̾]VBܧ&=k;p鮕 6ȑ/Ҁ$pI󶢹ia˪K ŝp.ljL6Mh#\8;XC@XY+>KF\ЃT<_`gJ7;v1 D8jDf4= m1 ډ Sޥ;+gK+b\`A;_GH7vce, D9iMzE@r)efK% ?Jn1|M<|GC1۩cZ,ǣ35 mf躃c PNЖZ/f!mS:8l7"=ӺD$$4 m_fۧsX%~W;_ s%w5!ވPD? $]X ̉H^IҪJ?>ULSזx`ҧoyEn,'hf"vWhiePK47i.oþ+蹞j < צ$ȸ HYoO #Yu)0ڂ˸oC?<:&:pPc4qڦ ߣ.{/6d٣J_Jg  >vxN#:au2V {B/Ƶol>G`iΠS=N9 ámGT#T>Ӎ,VE4tow^F8riKQ}R%t-m#V"j mdWRWDuq` "ŚKKB{loO܈؛E5y W;K4>n[j?AB[|C>59FX|}."ȞC _ېH yW5vf~EܽquXCJA\zUwLoyydRM&1 IԝU $qT6"(ׯ` ~xU9)j=xٵ\<Vz15@\ ΍^ΐE,P]+xu˝R_,ABW2e )6D kJ,A(LkClR(VSc~2-Mc2X (d XKE3CVh$AY.\guCk=p8!c?ft!i rxr5 zjJ4;o\ӇH(hM߲@!6Xn ry4(aِdOΰup*KMN .0Xµ+hqqӦ ^#ul mڥ&)U *E\]wIgILJG!~::l5c> I#LmL 4@<e}f'Ѫ{f}Yc>vg)!V}]2Z"58Gx W/~Tj#͍5$gv2n\} nڑNay@pu=@/)Eͥ4]@|ݫgcl`MGVP[Lg*jp bG Xlz\'(s/>:Pd{C\3-- ^̓m "؃wsaVqDMDo=_'b|ZUŜk\Gxbzry-S0 p:Zq?>Oʩ2j}ުd}1>fsJ ,]oΪ> ̑F}%?K@bU[uݼ=uЖoP61?.h>ZiB(`x*DUJd|9hĐ่~U0(ߴP|VQI B#x!{5pܙ[&QMmz ^% [l,ؓ\iN8)MT$ɱ4O$7y'1O}Yc{TU7.0 Nސ2*Dc-%ܕB.ԻlWb'29DGJ~-z;!${^w2[Ⱥ5)dC0ШpL^LJ8 U%`i8ngR5pk8h喰jU16fˬXPRlOI$ސz]ͭnAeOؠ_*1J^o+n|ÚА)=B G#qNZ[0S#.?nL|(5OO?Ё"Vv=q&#VWsJ4Xn+H3=p&qv~کuUQM 8ɱ*@iLi%Hp3@[eZV?]|=qAs3IEpLHQ["Qx5o bxZ>3 depwiLOyQbCj wYHؗʅ"F mSSҌ c]"Mn6(3fCJ1G2=O?(ibwXXW|Mgb^N`j]CTVKC;7E r$ u ĉH˾IcSFfMk[`h(GO^=a7=h.ptؠf9!Pos\Duo oQi# ܕE":qIj|=$47E$u΍ N\`1jb [E4^]5`ܶ{V"\ P)Nj2"j5(3\%8-S\;`^r6D+ڪ-Ş1Ȃas,`  z;75iӈ -7vaaF`Wܼ|}sZ g$(5=17v)WxhV`' o0-&ӨX/HZc Q7EdsCI0곡b.dCvmdDO..]]7WRƂL3By=?ͤ|WZ=aڶ\/nG%mmc,~Q'"g?@7(L`+ӟȷm͌ZRp*D' 9 ltc5% ޔ )zޥ-.ĬeI@%>t{)!CKytPitw@+#_utVRoigy?QkO{(fw1 1̉%/밐ٺBKAP֯$/m HV5wmg >MayY!ƒrQ|-CRqq5 `zPVr('FO?+ Ϩ;WlThJ\AE a/*c*& -Qp< r\c;k)EJU +(Xj;OύSw5$_SmMm򩭠MQ)ÿrsu!,?t*8H*B[u\ hVMRYb7SMa@=(z(w/ihR#k55+G3P\ΛA$ ˕U9ΐճ;=o'+(ݖJmpԝCI%k" 9@.$;Oxgה)Xl^=tѫg݀Ҭ,vIkIuP@=[nXidI T 6g<n(FsiFGYfy[aѵ?Ll{{INH{^g Q['!SҹQ@#w}1ُU겤&kM(sccf`6gXÊwep܌ܯLpjԧʠ3pMl_i&j EnR"`{{bK Jiя,ěl6j}]+ (SVfS/Q{6!S D#<ڪ$[Bm&!BUMst]"Ɏ*1(oɬ':]Gb 5͑>Ai~!لf}F2x|aV\.C0(];KF]>/\dO29k&tG:?sʷؑQ;{`nz,;y\# nmZD۱rۃb;襫ZMP(w׹NF'_m#xtU:H¥<Ǹ;"sp GjJd54kaBe@j Vԫv{VM} eD,j `fN|6_JQ74YM+coNKR\iM=]u.4ۘɀ@-K|*O,miQb&iʉE0!b;7*6A :ubǎGW'@52/0gmb+SDIp)Иx.'2G>+Qʡz-Rȹ,5B/NyGQe%vfGl֙o wVhN& OJhC*^' F%fx*B[%]' Z3%nTP8X4d M;aX݅ͻmOvӿ "({ ^u RQ\W)b/:HHZJ:PC&I7]8.޽ 㢓FYE@s5ѓ\1JU;FAϏ{#c ?"Mb$,s<gRgN2&GRG@r nj٭BWkki:`Bf(U%e!о+| -\[n |NT癩fsB_Rw ))2t_]D}3VpUp9Ki$6VXlqPxs/T96@R81^/u>B%їytKV7`v%R<$X) D_D dl7=FLZSVY[Ȍ0ᱨWLiBVo.X/udհbʾ8xE0A߻B Tdv/!W rȀ?tNo_N6sTm8S (ҋsE&F̽2"=! I3J5v ?}~ʡ)ZbH*7& 誂a`n |Y؞ !i+zq~aK&X;BzɃ~qRX#,(-Ac5z9_7H/T* y@<#}lmU/ !ƄKV2Ѐѿo^79_DwyNJKP z~jXi^:h.F:޷\-R${̒]䟟]@[ɽ%V!Hlki~r AsX}3cvNBpuB6m# g?/ߐ|Bqs$zNaٚfE-tIƥ2ѻzlSy%twfJo3;:Z44H22NRdf wYo`D=x}iNSN7Õ-z UHRۧԧ Qd= FVZԎ[H[5^$UW]Hų<9-&͵,B`kg˄m*0ѭ\[,*N}F7z{Iu(?UMo,B~ɔ#"q'uS1ct>4澤w;/^Fq`&NȐ K@smtXCrQ χV]QYWhI&?6碈KJ^͛.Ndeif %Z2^ەyNã6UҿK^Ut3wDܽ ZnOA GwE3Ve06wѕl=!5k<ons k]LoJ$j>ɜ}6]Uit& ,9oFV`"L9ĢXΡ3H:,Y# :/f3ՉSbҞR4ɮ 4ݱ+ ya%IC@{k)-ɓr| ~zCiK; o 2<~JW rVB'"!@iQ SyQXFIϟv;02^M/@w ]`ݶJv&d\!!xbWgBs[9g &-J~["Jp@M pDzC:p ef!*R }YqLѼG=Ga{H,4ޝ2&k-)ۇ嶍OYݞϥCclvXfQG)R/"dT&͗92iG0Y.޾D,`m IAd*%fkˢc#A}9gv97c q;Z`bڠIM{@ _AYߪZL>/'TRuJc)!{* 2SL/AdToMU]Щ_fƄS>dtu T\-ڡk0_:njtAaD@!D=W+$JJ-x]W2ܛM)OBjp}U]1ccKѹX !pkQRQr|Sk|5p8(=qPv;[SY<+f99bs2axN%~;!msNQFU,!Pߩ\mݞ,D$E=ys(\rSY#Vzd 9mf㷙ـ!8# 3N K3\l&0E"n5_ BǼՍ9@H0 .3ެֆ7:uz8!V*iCb!e#Ҕ|- MByHdzF h(li& o:#WWIYx8:pH4GhzVJgx> F`kc3!-?Gc+k;ظ2#y#Opd֮ѻ'a!flwgN 0)WTrpzU?ͽWļ^L ŋWC O^pc%D fkrM@5~+vU9¸o~~x*VAc#~j 8b\N=uJͬylD6*On6T~L-yӻ ?jx2 #kK^Rt^#gYՓDAcd_ JvyM0m7dvF2^RWaAe据mq/{fJ'@SS:R~\^4m?@)ipbvAo*/K۔&s.OY_J]ng l3Z%ЏJT6}+}'P 1JUJP=7<1[[C ~pאy4oB8ʥ@Im1aқkۈ(su:".gsIX?|jמ+l^9: _LI,[4 _s)Hxǹ '_fx'q1cZdݤ*E#׹Öe-|x9 %~r  %rZcE /:&-xWxNN$(]ZƩ7nه(: pA+j61`4~z-_pgq^g{ao)Yqaˡ\_$es u) M{/Bԓx/{3s oV &P[ `ZwC ⲗ~}c.'i+>]np(s׮=~>"YѠ`-j T[:G)>G:T˅y^ЗUZBv"Nv5ӑѠ4 Czvw^Y,'csYGuj~U(N2hing 7 =Gqyf/ l?Mq (YL%g9;2M7}XVZ\y2u7iZ/sFcJPB 'ѷЄzҗBbC'G9zJhV89,k0COg*_l'Wtf}zWNBS$FM6ʦ\uA"'Iz;v jqir8 Rgu|SU5"l;X =]1PԜm:P7.¡f9IK QqV8ШȠmڌդc?0.ߦ_b$vT:^py%`A jRC9"M?P2D'ɀUGdL8J3`lu EtVYo+%Pek)ML#HZ ϻ ь5NC/3MAJ†^*Ȅ➨M-!O{Ԟ_rU"(baOQ2!\ fSB+RڐaJ׬Z$7|qi;dUV&)$*I4id=rr,i3W'LɊZRCfB}qE01MU NpLGXܲǰ0Jel>mѢFbe!L5TYEl RYD7d=@1_kXL܀MzB5 ' i,HyQIRD]IJMZ"`]]ٌSKdSYYc, R/!MiPuJpA_5w}cWV# ,NEZmJ*)#nJ.sLRnbwE-RVֿm/2;76nІsf>ABiiԟ^J$ڰ "@dwyx*ԓ]\X<UҨ"B4C]VQ,q/L<@zI:m~P,ʵp;à?= 1lth̞NۤŇBã@(t@Y+e ;,"&r"vk\ә(b-@܈C'mh^#-v(*wƍ:R?jvY^`++ČDO_[.H VmN/* p{1241;4ZDI Y7|>^10߷|eLݏMH^E`& tQ0w(#DVpa^' x.QCхԶB9 F*妪ˀ*vT>c `܅ k"dť9Тz/tYXJ(*ܑd1eȯjCS^*e[ONrzV c3=Q5+;R:*ё=~{bRfˬƇ`[Y!e">%Z!Ih/Q- h[C`Ǽs^u%^䙧wHu'W+G@-t gM8逗Fa>/ѰV2)uK'VHZEh;'Ѽ9T:t I.'\2FC3TQ@M s5."2aZ̽= ?cr#wu|w볏? _ v缜@pZTǿAW@ ;jm()/nlUǸ"8*.fC,E~N7\XNԩ_)CF= N/{2%⓪#j1RZ9n +T%¨$`"͐س9Z/ONQXr9,X9fNgGZSlTpAY Д|fSqX; _ ?Xω+(Fű({U(9}5^ <ӌz\LnG,u3Po2&4o_bdJA U(CE.v2aeM )8ևٷĭ5IA?)'tLiXI%ɓ626䉃\$y\.r;ɯ$K<+Er 㳒)nS;srplUM ik) u|K]BM(Qޣ52}L=t@ۈ=0!kZ1Q%Ҵ ^3ns:? @ t D©x- Jh_e%KKzoRiA_SmW +@@nt֝1,h mEeO#fk1䲛hB=Bdjcsj}F'4|Y0ѥ\uc1X3u)Z[1% "!= tr( Fue-"{~ӱZU-k:0wa%wY5U$lq. h0 Qi^# ~D'Mـ`$|+7P=(\̙#+'%. DNNzzHQCJyYJ~v [cOANuj]oF`#FZIŠdv͓|GN#E:e_)RBq!KI8Ε#Kq;b_n$&TQ:PU;Îiȵ6ZbYP/"DjT2`tЊQ81j蟂NfTpkξi)*%Idž?__ͦC)a0z+E֦ߓ ]e*i2Y5!l:;ф4tn"ୂpċ~:۟o2a_5Av~ijȜ vbF([s H䒍B1"څ>Vwh^ݚ/[ ܳƻs3@cAߌgp2N'b7붶w`  ځ Vz2'+#v#nPH ;'mOwd87F8{͖}>aۅ9C zfJRwdKwojsƟwR1:b5RL2>OM}{G]!)C&_UTE;A뗸Qc3x,#h[q ["A缗}_-7*.&nI`2[.ԒGZsT)Aetvcb*p<_S:7*=iLZaʀ]*F% <27,B~ӏ[B>i|5`yW*~Vv?=$OJa{>{M"(QvmN"*TMD/IIޏ ؖA*YWNx :HBp/0㔈vx!vP(e_}Ϳ:{/vՄF5C2H/4R/3e۞w-@;$Lc,z$PZx"ԫ q!/J&:[M/[!&b7,n/{ݳ\Mǔ 'ADkihte,JI-1d) )5/=T@!4>GƋ;` Jųl06$CwWdבQH:aZS7˕yJo.WK+o˕ɚ 1] & /ejk IC!w\ӭu2JFeϹcmgJy^F)6#d*wgGgMA)/:*3؛ćhMN vn \ߐj)B7_@-ĶTH lqNc Z>;yR:Vkqhs cRn򜠷]J ~uo4)w7<r_D$%unȭLўw k>t*(:K<vH:M8^(y$ؽNbbH8O<0͏)DZ_5I)]:5 7]8s '@VN!zK\wnHAK z#'Y3(.F/>>뮘ckXd?fv(ϰ] ﲘb(Sԑ喙"FȔ;I۞*{x@"H;_D֫axխkU$aXdowjd0ӘwS$f(3*턯11~8zh xMa\K'  :/mIl |ēȝZ^?P lАNpEb6ªxcwB;#Pqj arUxB'Ғ7l p#0؟b>Bkke-F$HRZZ-?iń'xiT\%iƪo8GY ʅѥ 1L9cS{;qI(~ؓ˃)M=pF&%,rJ ~`E]`+:Lp 0YFZsD& =+H۔]dZs'nu6{Y"l7ֲyEM4OJc74q<ٓ?c}߼InHgt)*= VgP7gg3ThMw7g@GyիJiNz\Isbf\'JL~H9(W:0?N=.jE3e Úλ_&Q{lOh xna!ǂk7Jbqo>E,n NzQSj - (NQ~}:+ P;Y!d/ ‡ցSܲn ({CXw$}Kn'b'P\1TT[8]ehwl 2/~qko>yJ7HԐ Wf4oP=W>Ѻxlzw=`NPڄ]<O𴞴=c~Y>dGrGi!R/Œ/f%]zl/xJu  H6D(`(BDZ7Rb9%mB<Ô' |e4=y$Z;blsze[:_++RBBe۟4IC6*$|sI8 ϥn|$YΓe5]ʿHfR%he5qHae:6`= [;ģ(B=al:"b2`i:(RA{&|;+%WY/8q]xKΤf\w\f{Ϟmf̻9OP[&Wen[`BY{BC݄#0]c6}hC]jȌzg=~FiEyE~E> ,`|D]rw V`} Kp.Ms2R-p^|ypרYɶ&og/wO X.ĩUSeO8Yҁ}CI5-_kCt$l$k Բ}Ê[xmE7Qb1_$טۄeհ.i4T\ymA[t AɈw- K<#w_ؘ_fsjV $tL泜K_4Q`IN=Ypրً͍7 f݄C6pя|5r(SUL8G T<) -](ܰzx9`ִlbdBU@$XtaC<`s邏0zs~GĢF ;a_[NŬF1K \gxΝ׃a0\2O¸vX}r!m>EQb*LǹQ(\^Q^ ӌٍ0N31=懀&am|W""1SRZ #,bf(dz{qg} S.1 ?M[(`^^=_Ѵ.{ ~N̏x*7D^ÓzL]'(S?g1Yl:0VVɂE)iۋ Ztyp0 O79$szQD'&EΌ鯝"*IZu-R36퉏jɶkc>B\&@˚c)L(وf}ʒ a#afb>UKHƮڗCM펪pYs- %Ft ?EaQ *d@ &՚9Kr2p龋uh؀IBxZKRKX>FqmS&าC,cEmJAw\=6?*0A NݽHECQ 5vޏl=ĿU!VlIr#28+I%ꧽrIqC/gIIfq! $" 8d:mW dbVy"dqU3[ˊ@ x:0ſ&Q<-0hhTw]pޑ{ۭ>huDLi#C.hl$1TᆈF! Y$2->o&0RNhW+Fܞ\x~/O{MN; Y oXkhushl*̚k#L§uIP2?;Bnҏ鄸6M60?Ϫ{ꣻS816H!ipgzm̸-ҞsO Hxo,t t`q ¡ [}x|] (;e(v{`#'0Ps| V!̈́U-bv\LRI |;T?0H@H ^Noִ{~hܪicFGf{WՐ[waH$+j9`Ư(ZA_iJ-$*C b`Kkk_+! N" Y.͜DoHL6Z7`QC6e V]Kt,Pn*n}72Z;K %߶Pp@ 8x:(C?-H73?~^#u=򹇿ޓ$U7`Sx 5k!&\B~6v:s&-|qZ92@=2g|K:J0&};Cg@:a܈VJQwY37%bj.,J>$0Ͼ槩IڠGʝXo^9L|0*cyQ/%c hOn+%x=q AJٌbUk=wIBO,!'NQӵO%͸C$~Պ#C ǚ9HP `~T 1-i.r.vBkt[qT X?8$ h$ %X^/ַ;Qa"|H% ABڇG-:#\] /jTƹyLq fZîsj!lFOj XꙍQ0kY [ߥ,JKmw|;Vy"~~]XaI5Oyӯ/,Y6hhqOK*Kn>|1.! w!3$§Ev9r 2Kgkĭȝfv*aZf;|d@gUatR@rH!'ajfb̟?eZ]nDKQ[Bb-1Ṫ͙Djam ci2k(fzLZِHS}JH\V S )G)^gh: Cـu$~ %7O] !8qǚo(j OЉ< _]؂bvhDu$Ļ+ {ĖCzq`3XBzBNצTֽזIjUx{்R;Y%-aU7Uʰ~Jv{,+(3d-.B8X%~jJ)zR*[qYn;vH\(2ׇaqi4xp 4OS#֕l 5 沲]oVG@S)y1dgY9嚓ć2E5>S5}A=)6FxUt[a:d+e8t|$Pb, m֐t21{a*]tJU: X1x~^n/hœ-]0, "5 c>i@59XѰҼ֚I7#U4!-?uqgfo탕r5O!N-.}B0VnWA^g{hے($xM!D0wJbY1vʅ%Ƿ+ΧNKu7d?v#yXT#KکR: A+GBH^&NR*;':[;_- ԥ5,yyvl ѡR 2`snKZ@4]^`E󩈂w*1LxJsd,v{H2;e!;ڔWJCfބڍ ȚF{f :Sklmi]YHίJtXQ,uJCG6z!Kes MYNۦY} ݒJz ;6Z%5:Sk-NR=AcH ; = .q7GWG/B 6BV< ym{ݓ-'ʌN mt&ea=&>#;)|BU]rZ9e :$PGPHU  1NQY+Zv[|HDAҸ)x,( ژ TkMm)==$WŤh*p{MCƝNjCNu 4Ao&qkgDkv\#fHp5E>Jlǻ}-;qui%!IoL12wtTu8hmŘAY7Xqc.#CxPS>|,?zЈ>1xR(ST40ﮊ`> Ѕ=Lח4ER+[Z`"48Ѳ}X E5,WYמ\p18` c '4PFA]['r~I1]֡]R|Ə`kqz(ܤ9pH&-6,zth; c*+!h97 -5 ݃)f!a9ºh/.|6u8;?/ģo!Н~L&'x~c@`~: >PS/DA^n\4{Qĵtz<,̰0+V gy]\K*@<twQQ%T0 #>6JՉIb$06!(: ܍`4r1<:U'M9s/r f4I8x0(Bd㨄=`kDƒ[g9(]\NlUmVB5{e'p/~ȧ&XWxw9{pěu+ܿg?31OHs᧌|UTA(gUXL:**?}TopCwS@dYc6g&n f 8W#0TQ!4QWӡb- uMr o0ם|W!]&RlKî$Uhg|A7ZWMՊb@P'qL.9\VPXvnVR@';D Q94)ufؘ|6**' F_`!r{T’TAYI%+QW>QLYĹl`#7Lyg7c $0$ײ#FEޏ&qDY;\.YȖd1t3݌2ű`ݲ#E6G6ߕ/jAo Lk$Z!Z!*qI$zzKBnalGh6 MfLߝQ*&a=&ϟ+ç kwֽ*6;+n^N.9Ar͡~1mtE y҃"q JRX:J!ؗCCZPtgfxjWLRVǚ&m-&[P {G|,PDKf?h9$\i&`_7U:Ut@ Xj~ӿ:!AtM950<-R(*uAD)ߧnU݃2Kg/1kXUHo>;ꌀœ)r],_2!X>e~(Xػ}ޜȗ4xc^2Z΁*sSNaZYKT=PYgGp!$Bpf?wd,揪EjBF\- Xt_}kb: _ZDJ NV);M:SdAΧ3Ly|ĤZZD^l&6MqH/R\ [kp]aXCʊ} N;l4t5FE1ƘbeEQూhBo b':ho-$XcX5yvQY':ynvXrxq*VAn#4#&u[elJJ 2xkx!*1%)Y9Z"ZCsgӘڠ`/q .O( עr}m3t TdPrJ[ɁJ}UYMwk lk\dJߤu$-Ӗ}(ɼ[dfdڥ\>oli>|˒וZ\3 {` SB CDz' Y!:6fnВ|2o./U@JM/Ta=s߁-gB=-:l,[,F9aɨ7m?D2 ʨiEswFH5rFFSϊ`z9 QZl=R!<&@ eZj$4ټ7+ZuѪʃEmIxܥ*X6?}؏]2[la?eߞC5k|K;XLm'Q9??/*OJt.H*.ys =O[u7Ω5?\pjMٰgcviN3 (Ē>b`y Ruo'") ?f灾o}}Ton\SQ(kA^ 4긱bW%v2[mB;7CړsA :YVCMxv[fz2ɷAM!8`URy-Ƽx@H{kp ]nlC 5ܭsPIDoǶ(n/?@ q^ciB+#3:${&[v9;ƬU3c@ғҿC,]4y-%J\uB9šlI}L'K0g{Cg<Ȁ4A(r,R}E5 xx<&V0bܔhDj:9Ud&nn@#r˃g5xj'Jx70 K eNh4Bx+r@W<^)rMB͜xn?Γ*>h`uɋb#i~halYAf=.M>fL-ǜ^g܃R43>\CV6 X@n5AsX_Ce_%s%щԁH_>:IW1PtF3,fa2IeO߱##͵A_S-)f&E-a_/|_qA HW~pLw}M=YZvkθ2lzLT6 lຌ ¿A*_t+M43onlºL9Z]"jջy892QObS{\\$J^=osϲ$[@)qbh8uhH[a)c ):AgxmeQ:tjܕ .=.e'~Yv)7Ek.AXUQj!黬ٖ\'ڨ'ajlpaiH>#"X َɣ{yq,b+5"MZ ;>Ɯ[e qizu➓.daJپx&ی'eϹ0x3Q74YgW/T~QrZf}vm2C*kNR.-K=.338 Hx5*|UЂNSy@˱oAP)sޘs / MNP>nD5`Su,6oza.64񧯰[(j[0PѠZru(㞐=)=]s7-_zF1zN멱W`? 6U5ƈP_|T*_^xpKp6 lWMMerrN0O!hR /"Ed}=&ӭ[vs->'6/L ^@,)]ӷlbuw7NRzd#6q5}J~@i5oD{Iلv>+V}y;O,.vF:d~@0z{jzɑGnkd;AB|Bnavi bra ldtQTATw8KL%"Cq_7u<؜cCJmn%Fv}v۝,[ajD_7N> A8ga;kKJbUe:Ekab>@GMтvݳxO&&6M;FcV%U d6xth!:dhOD!/9kc$ؽ`Xǐ\ޏD30kA:-t_Џ(Zcz@flHq 20GӭXܗ"GPQb4dDv`lQ&PT稭3FgK>'gsO>ƝdzkH-񻃽Ta1oK.gJ"39Y7ej̶?irZNF9Sn_YϘJ̣aƖtPҳ x%4Xʵ;-"=+  ;WU̶K*ڒ:(XD?MFGH {x,2ΡZ1k&C͠WlGzqc1K3SwZc]Ըo` V–+I(AJco7#gg"_StoR@0\eW`r~ ԋh{LkƐVIqMp V#J E`%3{TFVbhSvL}YfVuScak]BV M`%nsL Lu"b"h59:;}%qjdPK4KFH,*| Rvuu]oX㩬_ƺmI| Jxi;v5ф_zaEYv#w'UpEُ\LRe>wXKۺ&>%c2G6_l(IcfIhFĞj .be9O+IуV: 1_7g &3㸌{&F1\I|p~dOPzGUr!$~cU~hYS;2,j >Õia)p3>voGE˒fx,lAyͣd5MoS)%l⯯%>7 ac+E;ӤyN6,Gl MAR8'7{&PA&lGV)BIKhCf^#u^wq.Ms4jy]^^riKE? Թa%{6`ӶHs=]7빻_f>CynfDnv?+D)C3#NՊ3eڡ,EV%T mM< iwim L>&}ss:lzU$117̘=lE:U)DA=ZSa'|zϐY4O>Xa+~1'g]q?OXH[~Y5akvxǤ6$tP&hgrДZQtA!yl5o~-ptdb*! BncD.R+PZ3͚Rn(H ag(.",x#'(|X2)_'X] "$Yu9?0 (0 ʻ6˒x" X)T{'9' WjVbK; LI4g:*t'OhxMBo\"@B)Nп[Gx<+ z#pyvu`u,]R`;"<]$' $=4_+ !F[D`qR $>gMQ.w=Dp%BH= G`L0QCN<͌Yc0X;DԚ(BIJ^7]Yն$g"|6|MTW׼O9 ̎l?cث`XD"e\qTo* [$"D hS88+VnaP9( O@Xi1pFztMoU*"a}:c2n 2݁Ƌףd['QMH[ u=B0)F]ht,O_p zzÕQrҼBboTiVj6= &\dlgncgHxtnM,oVķ*1[ wZyv&I( _dlc# [t^MbvAҰVNF 잎vc?I7oF1ǿӱ}bQr 6( ֪BY}, 1% &g\M@?8n c nT2uQ Yذ ñ"b҆i55:hLF1#$]|Ǻ֧4H B?舺fuTT5>2k v^, .Ki 5=0-Ig _ɁhS3M(GQqh--Y&eK!PWu:фB@鼙jfVvn97w n3CT ܏Z#"1Qu9%vd.[M!(,5i)vx2Z `5MVcƫ}#$k73AKYIΝ׷el/΃1;ZڤOf9| ti9ofԾCaAe點HFd-窐*|%?zzv?;ŭ!A9m=itI7ϊz,";>g#g#?B # +XC]g3}Rg`ɯ.j]壜;) pl9Tv<F"PAe,L4SqD y*6R.?u)1@v b1 1A? ˩aC &}q"tcA-kZ&!pYL&! h jywxCJф *z ֡,H歀(h_ g"bq%'h$[0rڬ6f֭<ފ$([d[0?96et jQޝjtFES6.]Q4>Itv<$zW*&}^^=-W'Qq;`՝b8t~f!~2sdgzM#b¢~^f5X%@@.OK=[du ׎Ŋ8_809mJeTXB9x9rlMBiQ3Rc3SJmj7D{RI x"uǓeYh=| G?qjBV=x|z@1V`\9tLԇ%1ߖj[ER9xY)OΤXw3auHixXCѡe!|Ԋ qP}=eL|@ eμ,XO 4)~O щ_w┾Og))r'`ˁkH1֬+,w&\:#^xAU @(zޣckSgĄqb3o?8).T>{^!yI<2ެŠ5.a"۔J2bத;$HV.wGT}mfQ%Z8ykE=PVLk:m*~a3~ۆ6Li,[fC%K6E(BH) e"gU!7X $a[l*ʉiSs0N@/#a'"[%Gѫ:, Ot;n\.0e'l0hs5w@"Ddrd ސ(}y[$q7!. ft|D']+3f] rTc*!!vu#'n6 X7 >ho1s&ݤHigJ sEu>9x{2ED+JL+X@QjKrqAZ'"`'-Ժ+jl@ci+$b ݶOXxnњj w"&>3t'Al9B0m;MdDPp]2a+z9qC&Fܓ}tPǫ\I׷uGw3hS}(wM;fh:{EiCT1rzʐt({Z$a𴭓 5CFi)p#_QQiS@”!*jR<8'.)$2 9Å/;e_``5oݹ=٠Pաș H-Ş1˔>ᨄzeu--m8) ;qϠBE}~  1?1Z &Imt#ٌ;MO$+^, N[LȎ?-C rp;Q/{ƪd-PwʇAz0P&AGO˓ PKX.(5˵bgRV^(V ˗4Iv9oTٯFVfx|`oj4S"$牁R|+t[8KsXVӵ-̬( ں IGckq;Fw*P-纤u8<Jڰ|Z)$qa :q4YEWeʮ ںl =Dkд+> ֗^qC rw?y召%F Ad0$8%³UcEV10",U]4۾J Q#/-".qGmXr%QZ6{g{#a&?;c4H6L$3ryg =ڂ_З@Zv:f>z ݠiy m2DzIFXVHFgpGq[l$0טS |" Qeh(/`QĽPSNk\/ >+PW90N,@PwSqu·S~^B+B2 HKʱϕ@2NhEmy[=|W`4B hb|g|Viɶ)z1m/Wʭih jTW&g9y-)N- cqibOC6$('儴3 ر{8՘-U}AWYDP,|uMj~^޳,&aɓaڃ~ @^.(\mf?ChqbVȬ`(˞({ď >) f7@sCy=Yzs6R S([e]A0$KRɮ'4p*'ף=C{{A `0g>0(g:ódEPn@R~^~)Tuqk!={OHPM8A|J%/sP޵'vp}Tf{={[OkP p.E 6.Ob@q2WJ| XOgPϧ6h/@P& Y-Y)tЛ@J0#BQRC\8F|sowEH?l)3#,尛*4|5×"Wm26P8%!#|MY5tmaE+NߕƯgxPbj”HR*֠͝4S m5&>^b*\9aV [{oVݓ"ipD 2HiFR,p$89HhuIBFD|(gzSi.Kj'm @VxxRwI&s! U/%uxH]ϻKO]Tr-wJw5vOA/&`Tneco)QMEZ!ufD6k!6(Ed_1I6&6#xdӉ;G ѻ,9T!53njlaGBL:*ao71yA]K{>W 咽HYx֝Rl'C I] ܄9D~R1%#Q O,'0i>ܱ gr ~y]JG9LݬEzPqtC*7lCtZK Rc $wɤZw,/~4䟪&ܩY]q L.=ð$$]PD6vǣEj섂*d ܎fεMл*nFԂ3♠Â_w*!Ӵie*Ӂ q9K:4w`FwGt ` 0o,(|$Argzc\f5ďϹ0,=nŸ`1l,EXU M(2PsB$uQp|T i- L? vE!gTwxlC(<7I@KApA1E0B[ҚFw?mBHWv>R Im\\ (C܀}Q&?7D d'Aоg4r>@wlQ6@M4RV0G;>~,07 7^pycq_sD"b+L_<2g|䩆 Ǘhd^Uw0 Orelʧ'$=7c=&d]z~vyԻ ~_>y$`|Z&缈}.{xNhsqjN>@9PGHҮO [gCgM r?E>Z}o!.;ń}gtt+L%'%o hW^>):rN`Dyx<4U~s0Etgr. 4;?=~ ;F;FQ;x~hI3ncZU̎D(WE,70tM5ɴN9O\f=k(1ˉJ+lp}YYN]V񎘧֭+oЬPi}Z+ow >6ˬm>?ڙ1aMFڕ@!WTUw&3Cr:5)2d1ÀmrydP (>O]1Yv[%-OkUѠ,R rgOg,m!l&>3MRGۢñhPKkuհk+.>2-5 Uk+_r?. boc~q _!n>HbVJdaťai~^M 6oOHL;OA7 w@0[ zlkXFL;Rv w.Q]WЖ~/3n3sz:J楅51x {V@5U29A*rr|JQ@cyFE^y?+2FމGnڬw%1VB_t4_ek9[ץs,՞DDz0/LaRP8=S8Ԙ%RŲ0LӸ  LeJ8 v78=ZKg1sXm*&;^+ /$am $!f~ 팼{&h໡#(vȑl{_mu6 Rdf cP9,~43Ӝ=EΝ $ $KDeWYa0v +Zp' ߟ C\ܥ]SRbT|bjCl9oRTكEW x5>E˿,@M4vU8]^{-eEY{"O9[6I]C1V/C IndxUB"Tpe!r0* ۸=Cɡ7r'PآFĴSV7 /aK ]fīRPE׃F8$ aj@bfц"mXvbH&np̕V &^et)  =H ٶUkL:Qv51tI<pK) \1+]6cգQh%߿Dl+ Nh%hKmkf]`oPM?$LE͎[wQs1!qewH^70E@V>#Q0n=qV>L$ .oڰs)" X \y񛷼a Ʊu"^k@6 j5A%}zIe^nb!Ww>'E-{fm3%y2`B_Mh@7l@ S;2s;'>y붻?~J cZoR>^0xGuU.؋?G:A~0Qz8~h =yl[vd2\+\:tu>M>]Z2iFUQʵF:IՈPԎmjƧ4r r-yՕ`#<6y X3Ji_̀2e0-ES2z=D DdI}{@mWjڶKd7} < ecVPD/YU%K1X :h@{u&ûFui^`kHxz~kZoQ`S?Y2/~(>{LJ/BJ}T&K530%g܌B\)\Rvjy4WAKԸ&IC62\WN?nBZWL{mJ6[!#EN$n'g"JfD5 8|?B_㘽I 2F똆$uԒ~gCTܑqG;*_@u')T{Bd1`=]aXBN*ϸ>MK0\y-KrtdO  ɿ ;;z#uMLn3 #ftkO?9x';\B(2v6M=T5iUF}^W#ٻC'7pAb*ett$D?R޳8mA}w o@ &/8ؒ" X2FónII?>Xk\2hs Zhz(X$U#5~IPnضGSK xt" av0!fcA4'QG%!H~]Q0=lQ%* }~ Ȼ$=C.o>{kbWgzٹJ*aIO]kSy.Eq'q~t+'ҜU4;6i? 8ɱsF`g8pdZ ⛆er#=˦] E]&bv}atZ6>^eTqU+jVըI5Ȥ9*:;&i5?ҟ¬5h $ܦ ԼHbX8p")HUkˣ`KOdSϧ=j].Ouػ?Ŕ뚣S (Hϻ7>ቖ0.~QrT1)9"}/~SXMYV&S5bE.V>SW|Pvd& %⠱+Pȋrv`!Y9|edȾOSS=%78ĒY@nhi= %5ȥǰxTWjwrF?LG+^J'h_^#G?[L%Kn;ς8)-J R*M&qM5DO5= S~5e aZu  ff& b++z*ІS_"~yx&]-N7iTmcI_BzY?~%\?=h4v 3hl˝8w^+xwKr+ΏM< iP[ٞa+:I^6^Lm]$0?rqzc{RdcI \uxhx\*6@mMXf#j_{0TWoN2uhvCiWwWνi/5)Gɏz֦r[!,),35{U~&?C\ Fg#?q;?j"F[$]!˧ i `K96a#iN@.29p@LALƛ7 t[/9i[DYz!jDRt N_΀3dԱUGǝke(ҔT6Y>1̓X6JJ|x8Q.2uNވCqJ'i.EA %Nͩ3 -:5껴##krHi攘C猗sLiLʷ`<>yݾ⟒*)-Ⱦ_Zb'3(X~ /m]`'2QqŶUg\e>W֛oIxQju}%,xm" 67N= &lPy ?NOX41 [m}yΤ!.>"_C'8_P]#6II}raY]d'@լPLss@3W L7IF\m[[_T;q9*H6na;Cc*h[Ioh`0_1o3Yz&t!Ж(N6pK@p=hѰ_Y)m9ł{Uu@;?o^v']ה:?Bd'Tus-z& KzËkW kb3s5Z Cj*nD;1lbK8 f&~e*(o 5-]?.[nքp_[@lQYs7hk=FʝMth`ĿAzek5/ ,QV:mƬo/8Ֆ-FDl،` w*4V㒔ӎmjmG͝7j| DeRbJ I< "QԱfrbZ QQF.Q1s'"m?B(f;9*)G+Q놲vKFZ]*|rTxJCcӼY%ckTpwc >d<y!⚭]߇*q.Uٔ4Yfw Tyoxg K̤rF8p0'W %70gX6P E&ͬ"fS*8Xѣ\! Q4vϤOҹT^ +NMNbo.A٫8p7OIAV~3+f66/E5z9Kn]`^r-)E@_~cfGp H; ςδe~} :x0Ě]Sǻ[9Xj^Fv/wNs?*`AD2 0}O4JD v9 ;{tY8{|:0£4GayT$ݳzjH5PT* FVNF2[N7J#?isOKm`Tl2NTEOVrScV}~f ]?uZ^ȧʹӘ1@"0]٩O2^Morxl:.3A/5-ԄtHʄD6uE,A\觜'Jrtꇆ lw(_I\Ҵ$ KeJ,3=F>FDxG95 3F$ |P$f8d륿ڲ}،'׏'u*]r!.!FyS5J`Uʯ HĽ7DMaYI"aXf)"<]&Ajg;ٷk:#oIl]UX+o_}2i Tg%ަ0hgH:sG~Յ _w'| ؽƘUgIdȚ]HefD~Az_@Cs 80p1YCNsPN6mÎw6j׿WR~x[?jX%2[.Ee໳|7V3@.2*R9j/$ivZ=_$Eb{[I2c!<J}bDh>Jm~ -/IU>w[-a]'ܨv;Wũo;@bPݾT $'-Im)5}9Adl6QC2A,#(-gwv=*1qb D ~k vӃV{7`r ץq.ھT `ddTI)|9{5N=˚ӄ 0/΁"iYBgZ.Wq" 9I8Dsi rbЇ XA8yXH/0L-̐S{=:9t<.:5qp8ui7Gat@:Դh%Y@^JN DF{|͎rf}V+qF sj4QK9/$?=EU? #C +[;6+ĕEAfb T k;IUD44'Hm_X p ;ITr8s}EpB,/1 R)*Az,,DTQ#ɛ]"Uh r,>z^]/vQ\}3s:YiP*`B˿m¾ .{,TzgTY:y@ζgcLPp M*Dm5m̍zD%27ђ {;0?!=:rCsKiaPn/J_74ѧ**`:MfNWF0x=*Ѻ" ;B$b!@xl뱒u y $lAAz,`e\jqm6#U>2 _D?6.U؏s'U_,[A-`!dY؛ρJ^@% TQdAEׁn~#"3mD p ߎsTdoi'8谋 lðpFԕcd,YԬhr'A8]!TteB +|%;~n`< /'T;ʿ;859ފD7$ s&O?Ńۑ ria4["i C?ZB0;h롡%s}6P%9SK Ghrd;ɆZsPT*GiAz8c/rJze ݋W+% 6Yp9~1l͸xrƼV$11 Z,;硿G*ZMDyVc LnN*.H罆quѺ=oHt2ptTGSU>Lf0K9lל"s?,En4́P*=(1敿, K#yϠؙQVB ][Q`r4+Rxsx WĚkt~$|qY^"S1FaĩLU^7*ƚte8Զ* >xovѫ4lXp ĀZB~\ j8S Lw9(iƉw>rka[šk89Ip3g> c~?DO[##ͬQ~A9Y?t2\Khb͌YP+c+U3}Gnx2P,1`sNeAeC61?ɮY*UI #JK8W'ɒe`iޞE5c,9(�f7ɯ柲=𐖆;[N<!ݜ{x`uxs[Ko}AܧMp>B UPEYTj3Oh8$DWlJ6ok 'BP<U FADJi`.HI5w(G ږ*=}yt\ Jh>m N[K-L'VQ8Huh\MA߹r^ tXR'q 3q+`Ztsh'^5njЛ<,syބDpj5gj?@AzN&B> 3yk7=/2aCu#I*EĔPmWC=z7e5} ^S Xͺ]m߿& =&G .Rvmǝo8Fr?^@5S1jӢDm Q~Z~aP%*(#g"h8* @ faF=xn~!b>@|3䶌~4=pe LWؙPo(X~U~ {P*4,&8ŋ@#YVk'2@*ƒgs$94i[ս_`M"爧e44bW!yrr y% Bm,-?'3;Pqͺw*Ee^ID*6;}5EP%MvUx[41 =?Sl c[W,uCbfPB-5E +}vi}V:NUF 'VT_e=0GxCNU~QB \iühH54 9/v-z3:Ҟ ]ZMݵ Od iD9(X8`%R/dfωEhۤ%2Hck{K?>+1yf@g~p**fÌ-IYL%th#ʲSۛFeʹA;oAux>W8IaI-\̛v/$Ixd#+͍Ccm.@b3I|{%SpÙv iAIg!ݩHe#XhdzUXxQ'|Bmk79yʔx/o,0BtW4ɸVZ;~v0}吪NP,e컹.'Eaz1WnP=мFEt-#!U`{Mr^owWImw:Cpvi /"&Wp~#Ѥhn: iJX4j3l4gҪő#Ӗ"1 3ό@,J<`<-4zRC4}\T7/F]csQvky<{ 8ww4.N ذz-j58J.%+V!,)?n|PmF HϗPUݰPF)Տ"KDŒtC5#iQOqO n3y"7[#OŘ )', h$|p<ַw :yH RGY6ҋSVZ5zNP#f$#{nfЕKxKxX"d!  YeT`kn0c[|mYTu3U3`OC-K!.R~I[ 85$BeD0_vw#$zl$F"6Ҵ +]`S|/NXxNj}>sWԧ9< [1[2AI)²P406RWԱ1{ "uFr/ j̺pdG@Nɀ;6zˢֱ\WꞽX>|IS-ޘe?rUȉ4gԑOawLu-"NFz2#?7+ o!y3%^Ք=6#4g9r&' fJ[.Ǚݫ APf:Jb@~WY4rj=YÊv:p00Ҫ#o*)oXLyn b)V2kCNCxZ,s|7T,=τ>ṔAep7`i5}nkj'0M+g2iMH k8W\<1DA.c tL چHuI*D`bȩ98I N^E ]uV:"8q|S|蕛8Җӆ¤`!`:* Į,3ƍ*k:M]d.妓0 auP!dw?맦{[]P'L=*Muܤ('-omJbgP :h]"$ `qjT.PnuE~w+!DEeeL;qZPd{CfM QԀ)ο_%4hϟEBOe>:{S# wxt;!Z{n"zW\~WR'Y}| ;nrBb|VI?A{.Bc|ip%:"֍ۢTG>% |S7(; 'gr( E|0WS𱘐9{8Z 3;JXbJ}@7ԽkvըA f,]9t77:ul?n&}+D151Nȇ" 'tAM o>'{14ERYe'Ŏ5!9!a6.Qxn??ld*UÝӰvUXVPg9HztH] JD2"<<#Dc˷,P6vbὰYntn\!U7]pKuE!ݜ*Sֿݦ#7a%Fj(*0B`1bx/f[oڝ.&&Z7>e ? nfEiv׍oeYk•AZ( Zеΰ6L:0Sj WpSQ7 dq4-]#=*v0|EjqĿFCY1!7V|PğKs9`[:h譁SzJ/[(̞nPЬ-k, › p?]}dtw74XZKR ]XȂRRJJ leΧ52]'>$CuvmL~~7.ZD>כ{ 4<~E>I\F2Cn_݌H3hsDaϢD](2xr㖬hYp2cF /*Q[S6GD:0 >nyo#G@Nhӎy Bh}|'HL>‰N{I_*zԜ_i{Awi c$A)rٸv;#"-f]cYŢJ^V"077wK //L3JlMa}IP pS;Mbab5 @iBtfg[[r ],_*B@o Wn?"XL]֜T.&1--3I'Ucdjos^>02z!8Y9.[4}Xa[fvSjs$) 3rtKUUʂ9Uv``BtH+ q<LS3?AgLiv8ŋtIuw|ZD#IK$I0l/>}ݯx ҈]!ǃe$2lO1 aA䓲8۾1;%781 `]KpA[LGosjgר`)A C.WV~1<>0"P5 "2dfH8m`I3^qGҞkVQf+$yGuy40l;W*s7W fM%9:lbb̞PpYYy3U:ul?fsh8XmHpWQԬ]F?tVr]UGl؅KW#zO4|^];/-t=+jJ'g6 MrK}z7BA"k dT]WYG"-dS{;{a|Ma(dH:hBҽR6*w@Ŏ `VL23}m|&֨iC!;|/)nǰ"Sw1Ep"6fQgfJkA :pz&B.4rDSe; :)T>,g苪]Y 5nĔjc :7gfIKS^=֝"͎CBűUDò8T`1kư-ܬ2!bF0'X~8o)}* |u{־֮k_vG o̫D~r׊9~>@c[90X:@7ۋVӆ@}U] }RqFe}  {G`-EV$;qQ咑 UZb*DZ7ٚ;:Xu]ǃ r[ hS{A&u<30bm9ɋSVF*ʫ}Q 86qAٽ%2ZLV~M+wcByEgqWWOu))Xـx [jsOc<53L /=7뷦Pr͵=:|Y z=So&Z<7P=."/>ix[Mbb C&v u6?_LҶfd@>soX/6}$ijaHc' />}7eg Bc^ 0/TAcPb҉}Xa<"YA'`{6@Zm&'zs1)^ձ| ]{Fj8s7gբ5D%cuN"t92$#ƲC2S,YhΆUkUx; NMҗ")|l}֭- } bŐ$4fD #t@gpU*Lڬ Lr@h%NvyG̉|cV5OTݙWWgW+? w+E'IL^$G-9wP-2nm)9K?mmUVn t!: Eo-gMdX.N|bͱBc?ݟK/"ޏau>/p` ؇_5ǰ k$4)rOʹDLtׅ(;i9"*/"'Ɉ%D Ü&j0L#g<Q^W<\WFt.RO~=Z[kwo̴(>~'Zz!-3jljb4ω2ϔm2/SI+5l+|A,0gtCP/[w?Lgrį,[.`[9*w^'fWwfov? ԕGAbXPɟQ<-? "QhG!oGYO41c2%x F轟]90C \T-Iʵ?JUb!oXsj&YQ)EeY+MB-t`dm7 Sܔ:$s3]xRPEBO6e<@_@"O7Jk""X_ JZT^  9iCP=;U)Mf h9aic闪U3m̊.PbnCiNZOÝb7Ak5sĔE.$vj_xD`rF :FldgiN#kbY ^)j}JN/@&m&/ 34Rջc NWኸ[+eg?tuEN@"RQ;r0( 'lُ^QG 8T{;*C<)`?B( x! $H*독hx:,NseX/\+4te{9ʟ;D6edþѤlz^hͨ;2FJ#@!؏Пn&sZފbLv hV0| k|-C`\,Q9AS;<(wl`q9d\a1}R# vD SK:/z6X `NL܀vEglL5=LI^fJD`H]Q5AXA{]pT5„ɤos(εyB,Zb^SgO_SfEzBaHЫqI(S}ZT3?MNJ^ßN AoVW)Vylэ)%iwa.!_ۣFzDlR]I$eN ?}jJUk7wWD;^B-' V:,D `e#Op@wREn Pސ5Ot6;`.;=itG8qߥO+c쬝խ1g5 1lk!Pm^vnjGsr0!{ąӳz1Wڕ otǽlwJ*4Zz@;p1+T"B;rq?S!Z73yP`$?/+L?IDsVFRMFWNlz[O(Y']Q xݶ>i~[ I~b#+C@|I^zAp{ bfuR ]2*D6)f7JARJIHl5_ʓۊJ6,̙D *sNjeptx>^ш&+ J=b H&M pmt;kTY̫Z`N{;#[l NUN@>@9P~G/v}P!u+5O iiT|,2-ۗS2d5H>`ԴUύv!.h۰~V߅i`bygZ G,3̏{R!8k}ouRN/o{A@DmꏸO KOJƼ^hV6dҷ]D\O/4ucʪS 8ha7[bD. KAAu!q+ ˍy4xߛ:/Wc9$;K7BJq66P$ Üp' 4 N^m3ʈ /jU 3PY9d"#c8)0Ju9ɿj-uvYq k\ wկҺ:^zʨ-/˓'ɩ /Kq2̤ i8sWl2I%]{\$/0kX (gN-36 RHnXתڊ_2ėZ,R/$'&¬6|bOw+S[2mKe7JÊ 4Y !I"+l^ٱK2Ý R.s&hvd5g35ْHi<4(<1'<؅^fv8 6XQ%%KzHUJ+"āݞ#BTOMWڟs@򝵦AM=DAs+sqaqiNj/ێNY:ǠbҜKx}tY Sh֣鰊,vRAC % N2zQ ̑dS,BGd3=KߥMj3ZPϤ|NJw)! HG= 7>Sg<9;!HUf#?`f]䣪 d{?9aCBK%}z9jZx-G_CQjF%GNYx _1 *\_}D>G,Q>%|KAI ;je=nPE/yF/q w+'J| \V"0$_A2wg'Y`ᰪ oą,nhN%Iy ^\dA#T~ɿGo1CLjqɦZIZ>Zd{hG2À M>r' ,P40JRoE5||WJr+4 4vR$qJmF}5 ]%_arig%?w!z1&,͎ )@9ÖK=X"$9XBPMܖK G~77f;جϵPH ǪtMDE'%^/c#OQWy47*!tRO}y/.5Hv4dlQ4fQ݂:LL7\vWLZR5 @OGOpdQ1p*f>Q7xU*ʑuHQ7 (,gϧ)O%yɋ*u잏c ;mTُKV8\ʻ_|tprUnz <' ?qVJΣNC;-)j~`QJ+ GipFSr &+WIȣ4+Y'^uH~,͉bΨ-ґwA9ɭV@{Åޫу@$5⿨&+Jw֦7}S⠌udU-Fm-x;Ny|9Y|yzt pF5KSܮc[̖pwz G'"3mi3:1b-E -z#sDnΩR %H54QPX>o9`p3B2Y[De/)ȍ]v(͓0@&Ks ΃laIK xr>oxj1Fyk[C^:ڴJ:ɾY!&Ɋ>H:HvzE&4F2a2[\L>A3Nn# H310ar%P'i%/9l|b̒ƒ5Zzl@KiGCpZ q-K gwcW+P G*3sFwj?T`jU̝~@sfZ{f[3Y/XFEVBE:`GC)w$3>\p& ,_NcG<]REo b3QuZaY52ҬUA`j8 QǙr4^9IU(/(Rh/U/S䋀]/'dq%A9>a6}"E^"?9;Ak y7|B!KeGpp `& M_]F:&դ,}ͪΜKƸsQa yta)}h3fYܦhHD^ ;". pRH ѫ9;h;`Xwχ/m sIS% $tM''+"'Yd"foR!NWuW7R܆;9R q1X{Ci]Ӿ!d?gtH%4g!J޾1;Bjw;L쫣^h^:YpbYS/nS`t|憧9gBg# >.~s]ɲ 8y)Lyg:(TR"/Չ%Yf1 55=,PȫkW >|ԧ(G)$Ir'i >c KngA?iFa8W'uq8/hsfӜ$Gjke0k+q@()#y栲Fَh3e'rUtDAF`2$; sd#^KJH0tof+XqF1bTGTGiig(08O9,ffMzi(0/q xW aTPUoɵ591 X 4 扜F gʺ1(]$e|<#]e=b$ɺzJzXωyAFJlRRyC"i6 >`>4<8"rz_tYBKKϑ/}lN){߂$탪?˴fԈ|sws+W}^ϭl?1P7[cŪ5~o%Uh% ]5 `X-Q`sz*-9q#R^UN-kPRĚҔh^kI-[m%KeIz?;~fs>.q܅Sܓf}r-TdgDͯ]` ݄#4rcF;|ha*mΗK@ \ 3t r4VlPbPv>jLȶ%̸lĽSx^j@^Cx7hbÍ( 9:i>_MSǮ( +;Ul)0Aǥ+-sV"&ߚ d؟MȜROKҊc," Y/D7 Y]u6o{rZ^/#0h A2dA| yk~Q1a9uif&ʑ(3벀}3*r}}h,VWCӍ(2y@v >xz=3Ε3sx7 %#!M@xطX8VV}އXOvdfCbGݮB;M?z#ņ9@Lÿ02&1\lsɭDnM6> K!aԦa T@X #’UHBZ n/]8Ɖ3F@0_5ٻ~tz%lwŢY/<̋=B8 x<&?)FoS%D0-8F=OdܠPkPߵ?fNȅui$݄Wl|SZӇULƃ$"=Mg&e1(2Z/"m~khi?STyBMP~B%Y[9B*͞\dw]GtN_g8(uͭjNqeN'5KNo뙀5D(:>!YӭPc1"NUhĩ9i8Vִ@:a#`Wr=~Ph)]Gr'>$j/rbbt0l&| q} WÜuE܈f.A#yi0/Rg#eڰe~sozs VPp'r2T{xs1$.f(}`NcM: Eϓ< Zf,w,!&h갯{[>7# u6X>VF?Z!-'5NZYAYYox [xԔ\K !uΪT|\'wţt = wϘ B1Q TuxսBد=NbOS Uݜ:SOy##z 2Mɬ܀CCޜN2ЅT*lG΀ z/pO+o3ۄ7/M20s[/y̠Gpqːc7r᫜ -cDoaRɀMgo ~}@-fJOA "iNAT}Շ%(9W8t:㽣1aBx\vs$LYH'_WC8$hVxtaYJhBw8!Vr]51x7AxIa3lfe MڒGZxY]ṳ'~jTIY~:r ֕g-B29TǙa)O߉\ޜ7\FxЌ9K}@xFߠ2jQ?K5MfZ!z?hF㢺2 )s(E{"(8@hPir$jڊg Eo(_߄"h {<R(ͦ|Ym”tg;18gQJFsjtk#uh?{zxn66Z\&39c2E!>0wtF#[EYFU}fmH—IRfpk,ϩNL> xH 5&X2^#4HGU81+f(wBkg:%X??h#Eߙ׸a$zyh.\VEn;篽6DBe6|:|4,U6֘ /an\>' Om6mֈk#&h0XzB5!J^SmعTEas *V|+?;<\2]8"O)]T8SeJ"8&<9h'Rg г=B*?fWX`0Sa$*KMU#?|09:p$<~EaW;%<% I%[E@#'{ёKfwdj^MxATbNyNkl~JIcRwS?`Bl={=bVҶqDbgA>r)>Mb#L]pҩI28TD -&И9g0P6lxo}>kߕ+1+?xNz5u/* :NВf<~Ͳ6VlV;bzHoW^j1S-)?:5gg!D,M)}>Oj>v|5@K Vsjql T$%g8r]C")>?RC][vG/e/b K$;Pq_TȈߒiME&y!=DT돊_s[e 5l[4llJ&5MP~f@\ SL=ه˔EG +c`ykP$z#[--<嘬\':Tlj-`ht8qtE+M3Ό-J6HFG7N?JRd iVLVXe^ E9z*ZyjJndo\_A%W(/dKe +A`"oŒ,S:`.'B@6 Y9fnhl ZQxQ*g/ *;'TѰ;~y͚cm Jv P}_5ޠv=t2)'l:&L*3R(rྶcL~2L4ʠ|9&:3eX9$GkZL:;hqh\2{~f[K>cN«B2YZ-{cV|T+cpoZD! "F W$TD7)^sv3=%X\KѵÐ֗aޞVw)~ic?Ř?_RgFLxkXQfκ9s`v7YNp_]>KW$Ɏ<-qOݨjya?^ą E\4 T@:]•c@%&R^ǭv)oD ÞٔA  IELcd+QDZ~}K3lrXNC=Q=K$ЛؾjfV(hqDԼL5AUrLYs=H>Ao’`N _ا;xQ} %Ci?Fpux3IWE"3RxQX흁5GFSg@ $ b.2aK' v[bﵵvjQ_rNX[yA-:+Vbo^nGp~QN)f?Vh|g5aLrCB \(C=#`5n(`r^LH$%A=YwElQK'5$!-zR^ǔCG׉*tU-tztXOy={k{S}K)'Q`FK8"^P0K^oC P^tD3?H ~/UNb QDXKnJJPj3&CÄMBep3#3N$ : ꉌ~aKce /jM+ f$.#`a z2V?dicg';CD'XM@PAC̚%ye%6H^ZaQMʅ[v"疤Php&J]l :"FeNvx[FO C?̿rʾ<ء;LT'RHs>|~{3RcDL.ЦSwTȍ=dj渱WEWw"r=ṝqW;iJԖ$:qO4wtpAap?\ŕ1]lRHT}fR' E]B#IU(^% EPoQ1l|Y>coxgĩl>Wu +. vO >ŖS63͍ɨopQTQat!ko !ZN}Nu.t|VCH~1vwg !HZP?\umL.19_S9hlQ+JrLFzdA]y |n}g '.ebvc}yX2-[z*-vG$UׇY(@K+ ;bjE2Sn6hp _"Zuߒ85`f^PiPht0 wX6=𲤉^j,Uy e3KSSw%S7Bt!WD|qT k-c87&u$; uP57-XGQe:8;2CCofYV: e-d }- @c̴pXRhXtpJv==F8^-%R=Q| -H7>#aթrUxeQh9`G`iY`-csϞrr컂 yPrA"uP@P(&a u(ݮ[sD+ xbTej#>BR\/\.,h yF@]<|]|hi*r+8aC!Fm}.f/W=#ºnB^\c܅b0Qn yD3x[ugWPsy-#kjwND6.}p/̷cIt7IQ-rq|2SVʢ 3͌@VhϛG8"1+Ҫ=? ͻKCUF4FMbs^}=7'"Pg`[S{ j!ŐMWQg_?Ǔ7@]56:1|Y(?ʡQp rϤ=jJo((2I%/`*md=Q-ܢ]WfwbPU2"U$pHpX&N*~XV"‚?Ks  rBS&Aa)]0_Sv]n'o*Vp:="IU"'Oq#|Q/G6R\1V o6KFۃm5O=ĕHvs^3]!u՗p^įKQB|3ࠫuyS6kŧY*!'1kw<~ތwQ+` @ts19!q M[0G%tY L-OPNZvAIFC;хG|{{=bN\{[r"#+L$c ]PT\]+Fh[h RO-F'N28]G Au^#Y_15dvB:֘`ca%q|;E4&R҃3";VΔ]$7Vms(:NOF"Q.̯Y4X- NuR$U} yڔZEyc 0?hܭ|~t fw>S1ٿn.C< :.Bq5B7U>+e]hÃe^ԬTe5qSix9LvʿŽoƵQ.hNUt՜1ZI3kE1UPZz+rCp8< ĝyaJc׭:LqĈP nGB$ܵxsXtCg X-&O=yax*}iw>z-q1T.A]{|"5ުZDeYMr_9?YMAS,X*0ʩ~'mM{@EQ)OZ2'[2zK>eir?EFO3{M/Q,H;P#ڲ]R\p;:sPFU `Ϭ^uw8s )ikU,Ww'ı ^ 9By.($>{ıWFt t. 3=zqƙ@Y#qdٚ$I+_:>#w׻r?A-I-d4Ɵ"&^"B0=M|9 y(/yF Â!hNgx2_XRwЋvG4}]\ 7#w0i*HvWDŽuܔeI1QfO9Y{aepk됎$ NZPf$rC=]<Bu~-{x@GBlD{,~N@np8Z9۝27Жng)]> Q_&/M"҂r헹5xS.\y$)+t=dJSb!dyvMܵz~DP 4E]@at]s0E@8-p%[`?n3퓧+ϝ\p3=~n]yb @͠yU_'icMC8CW ;v.H2sY^Rشyj/J>yshMPa4{}=pя\[6@lPi<fLC@m?Q~$<8];KD=NqLWEIp.FJ {m1[EXs Z\&?{p4Um:sw\i}Q;[Q\["nCg=fsĄq=?1xQbW)vt ;QY=c sQe;Gs2O/Gbf3m%6z$W iOr2L!qJ"=QH6fܑG KG\ xP`u{:b_bU;V_21SgU>φVm-IDW=6]5wz\p5&e6Xʀ.FA5jؘ3,΢ ؤY:vFH; EH~ϐq(ʯnJvV u u ٹڊsY'⫐2qU=)m f!"9Gk_^!fCWy؋7.}ǔCYvtKWbOy\%tj#(l Va ,vDR ֿ壊ܬ A- MUhWPʐAgs޲K5!D'en1n$5[2Bæ`_PF+9"q )XBtXΙ/ @2Dj5, A ;H@gpe/M h7;֛:z$!E=("ք;*Ȩsd7(yߜi_I3a]OԺז=3q>%<ܚ 8B*'fV;5E_ ǡv-сH+h.hY8tr8PÏL0} uLz[kmkĥjtx^!>*>V ,W':o jT&d?`J܇$5UBBsie$)qVI4#ƺiԻ'¶ 'Ȥr>go!r.$cuُ-U0U&8W'g |*6$L3C7rYw 69xQ{ ]) SxN '85!h:$ֶb~5d t2uO+H!|K^k TΥ.;Of5dԠ'& sTae;sS M3 Kfj~_ ]  Ll܍+BAH9Lv)ҧsb`n(˭ܹQ =_)D10  j*DTͩHWkL$uDE.~7\GR2D M*(X-,CŀJ%4`#,'oGjBqy|0٨ro3캽cn,[䒃J БWӑL$ )B=L-n5- ]~޿ <$I8AˋzIYPX-[`w+F;op tB_C{׶I|?^{_7kd+8 3P:ٺͥ:1F9YO`ZJ2琫$<$AC72]c.^c 4mlQH)=J̜-uTَd;~$ԙ'TdhXn2ArBie g8-r52ec!p;oԬ qώ vh WvO0Ġpgzs(sDhw/'2ܱhvS29|E_kp샐+Az9s}AZhJЩ'񤈉m9& "OA5!iP^"Kk_ic3[40SP,o;x[-EW#g?{?&T߳ @7\$$\5O=K?%|-ݛ^(U09ss PQݐZ |aD͐!$Xp Mt*(@(& n¿vnu!jDFDiqe>+a),^m<20,h>xElsO&KP۞`E@wri߫MGWA1gxtfkA7DGpfy=:lÜ |;mSD)Q~ĒRK,h~ib65(CŌǃWrg- Dp;^p)__" v:~ p6] tL"͊L)6*iٺ c"NRx $G}=#R(qqWr #&da҄]C(j>>Fr )e'=^")鿽b2y,QA0CW^ȷeyȉq$[3}$2r= Y`f6Yr *u:Nt'!Z}ITBnwv9ewZubHT @JH)v;L͡{<@8^D'iqAE< Q`*47[q+Gui8f Ib L{J:ΙFȕ/\HZ[ @/#/6zx<;/VK>eD&āDm :2*2H%T/xKb ,p:H8J>bvŕ㚟 jttxtn%P9~mXI†(܊Nʶ-HDu?:$wAc\TSvD*: YW$(WzꖛFhקk *Skis]NZ;y"S;{-aN2YlqF[Pa # sh~6 yr:RǻIмIp}ɯp!!j%po!j>%91F*_N PWnM0@KɉSA't<~\%\>A]a+8S]{:6/K˥'Cʜ窥,N|Fخ%Z~UD|y u̩M{;Ko4qK#!ѸkNQg"N2r ӃοfȽ:L]ZNz{k #΂\cǎe3퀣GN ڳszTzO,aX@#$=\n\0Mt[⏉ 3E\:n~Ia]uZ\*d@=M ~Mw ٱ.ʛW9_kkC$_6˩z@k Z҅ls3r?ho> z$A۝T[RA"8Vq:T].75}c&CN_ VI`x~֣te1&C&H+sSHߺf(]uE(ҥmp>3Qӱk(LXuXem)JL{ȓ3 C?:#gPࢡ2U |չjSE<| r´~cDwWN3IE_ef|x/{H OmmټM8{ x`R]9/SՓ50Eu˫lZ~:j}-och3ꢨ}n!Z(NՌVk3:#ډ\$艎d;> ,RtURgE|&=8ƸB!|ƪd{̵ H{.pN^?q@Q'Qvނ1 ~dytA?ᤚo|⢬Xl!.ѐd%i>Жɩ2o] 8XݓJnƫ( +9tND`ׯ]GdW-xnVj\46Eƣ:<7EO-^ޓ-A`D+FX5M!ۋic+(g)Op0Lo*J6p2WAuVH#g)[j\սQJtGN7RMҤMf ZZF8HUD 1f3ذfZijѱ+6kJOeqNc{8>c]+ӜƏ̸iɶ` h ,~AT:u";dϷ@,{;"l6y<|,M~ VO)F {Xji7yh9;i er8cӫ~GZCp1VdWxI1 ,h'ީ{_V|B֣"b|p:@61Ol]O/5ثp̜Z.\WxCeU c?gxy|7I6|3H4:eiEÎ}a[R#0eϓ,`Cꚡfۆoگ} 5F3Z'S02fm\tFț!xK}dWys9'N@-}xfHo Mʜ&,^MPwydB9ge n?":yߡ5?r` aK]rI:'Gt Te~iW]Ok- ~;>k}8rɼٵpanL"k(;WjdL&N]ZΧb;Jޮ4]qqBj` jsP*ܬE''U !$CCGpg9 ԀX'aFьw1Ye/MsyX&W?;`r!iER :rRut]Ov{@KQMQH>mJ׻JTonh?kpPy?K}Ya~A@jd"7}.Nnz^ҧJXe:Hq؄aXr 9Ɨv[sQ{eY0nSмP۠=|c8'>J\tKiUF&Y_fX'jF&I|3G=P Fģ~r~*l*?JJZKa{!z5uL~W^hrwYF`+β\,䉂P=G)38{1yܝcn/*S%1zHNb5Il+| M vIk65?8\q<)xpxZB\3;ZruU0πk*Pwy]j)=.ุᩫSMRHQ|7"2ݓ6M9u/NuX|@c7ˍƪ2:!21Ϝ%->56vFO/|MD>E~XA2gĕ9 b FOU>7]e%zz䒭揍i*lJ0bV:pv:7Iz^|fX.!u R *+m╖"9E_a֘ u qh2䳋NK^U' QR=RÆTNWIՏʝQټl~MDPFǴ헃 [ud>e]{IaDIh/1CGn-Uv(;]?Qj,d  BGAGWir%2U#.SJ_qhL/'C"V3f؄ m -I8gMҝQqP,9|}1l$r< 6ĢY+O] ~w/k aj\Ƌv^W㧔Ck[j89 RB,S%M}` oFleﵪ:g28gNEb(樹%QvV?4L#"ve4h+*:+(m``+8*p\ 3AE%4PNA@ڳtdPY!=%8n(RYmKJ-F7i#rH[Z\uz| #]>h- p})lFr̖JEV_/J.~xdX.rnaUS&K;'Ɗn9:D!^ рF96 (lEl[!,"s{!C!DW f FpdR1: v4.U + E*CZQKN9AYR>3?B`9S[crv}'!oXl!W:NFP~ȼغVITKZz]Yϖx2[56ǂw$lP L FR=gEE`3-*`b*ޞitݑޖVX,ިT, eⒾQkؼԾQI(,ŀֲ/~X/]uG8w [VMzsGPfZy@m*(޾p[K0E(FkG!2!/d$88!Dq'ELX"THˑ}o;t %C*9qEwM8s =.U)d_1BsE[q*6r1/xU ܭ2󰋼?Jdi51jkѠ15aoket LZy cd!4俱V{sDIkUL.ӷ 9׸ʸ9]XX.D;U1Ɋn}C'xDgݗ [ Z`!yT}|,e<^eCkv2cqMSGW/r$A; ܐqlf"YKڮ 9V Qr}/L័SⲿB*;ȧRqUy sn?*pJ"g kx~rK7;ˡ{|>=U&iD2łԊ D+Tq[!:fo) V Fe|;yQA@edJ46(_O@X_LDmЅK2 ʂFQ*79V P'z;xE2֔i ͼl(.xR goӋX;+z@L*%:7U`,pNMSFT6~EwM֪&ĕ9H .,i ! DSގ) [_um=L*v.զ&ꆊلz."$.MnT 1wJWP2F Ԯh3fxEή gLE;/5ƮtNhMZoXT_c춿4a7FGPb.N}Hqs>f!5t9{*d7:NN}}q6tz;]Qߟ;Ͳu2MsdEy"Љ: yLZ\E/#ɕa4fa[9$,j:x+i&mWut2LWG]!e5oGyT`)GkA:@D'ϖ&jnQM<1D9Zkthcb+Yݘ,ӰI;ǮHZ2|Iْ[o qXq@U:k+|K0!wt)U*}6JUz8[qm'*¤nA9fhQd)pg|총QlvqV?$[kujiٶ!5a yo[0qK9XzHp%%fB&Pr(ͣ}MLo9; e:;gy>* s>!ߌB,Y$ )PP/(hΐ2kBtPn6ԋHS{h݂0(#\]vVT*ҊiMQU(:KN6!/ .r2677r1Zwb- R3y5XU0V/a{YĶӰJ?{_A@uK>f%?K8Em;a .&e#Z<b„"Eb{t!jZWvklMiNx$͠kQo>ݻO'0YE?3ɼ]WJҫ1wSi<^B0'Ze8ܾ+݊JchF̷)"nc} yc5)Bnd_V`Y9,maޢo/.؆_ X'ޔ$`ĚG߸ =Z3g)LU\(ma:V־wOjp)_M5nw7әnhf3:LYd2]\I@`Xb=fU MRҤW$%7,qE}t WЋ9*w\ B M6uOaA3+Pڱ'Ɖ{t6cACgw&<9z)P˩MlZ7lp2f]@r%ZcǵvX6b`nq=#˲oR$ߡ~KϦ+X= Lbꩊg笈W ` ֙v=n ~8sTAb9L mX~Qrؘuo]/ZfGC3$fU6a61[52߱mዂ])RWߐ[5&n/p`g~Lt\Nެ*Vq0ȲK[O`ܺvm^JmU=&CzgwXXMH$jerE_GTHÚ"~2n Cde.rL& .θw qߴmP2GO笖@|_󔅴LvdGQ_<CJh\ƾ*v|*r^*\x]1>%2[xa6l6m˭a-J8=9Slk~] rJQiO"~U\L,ˋyta¤ ]3漇6TI'n=]r]fzw&i;~Pmm} z'$k:w\AwT*7*O. D7,l~pƀo1qN;HPgn/->H aPAj oVP҇їUQv 3UTG   SILbfPƉZW􂜆ϑN|+'h{9aj`0{ũ" 5f--6@+\ Xlz r".<7 ]FU$𝪇g4 qA?׭iC^'co(hq_[{)ܾJgb wΊ1o&qn~jNh/Qg0ڢ_xd <%uP3 DTlF sm٥Fu]&πi*%&(IZմ=K8Vz+}cIYSX@aX}ea(LX 7Q 6ViF)YQia!'gbgu$/AVxih=h}V]in,k_Z $򙓇8SFoZM19JACI,SG  ,՜8ͬ!?=: a̿` 5MD,jEcW+4x`*v'~p=mڨ[jk (hC"mI ;fxS}d;¦GS!_פǵGV hs!C3X^eJ">"M6 /Gu%^ >&nafaTO{KÙzb=+EAd1RXcّIyd+7p{*Sj# J.4p0 :oܶu'z~5B@!I` /Ǭi6D\P^Sq 3' :~Y%eo8-csKzCJc{ujn^^K2(8LhWqH`uE^QTnOj`S- tE\P3_; O9xJ(ѩ*=\y}X*ɹz7dl5Ȗp"Ts(n:S߹,9"+rdZ1_,cn( ArA [  BJiV_ˊY.:)T(oIN"Pz A~to]ͣeܒ<g>m̲l=6f}QNIro)~>sX)8]_DE$̭a:rjMLjG }$?·4]1O篪Ku,Hqtp8Z@'1GyMUJD'T˜fvNYE֓k~+U{8MՋc}NSbR kCAMm &n_ُbnshnI>طu8?:-ŪBa =`y~!JilNG8Kb5#1[PN 87oxas3D~rUեIU ILEby@-0PE<"cnK+ɕPQK9d"&-)9cbRs&H EW2QlU &&Ow z$Z'Mt_ߨF}jo4ֲjţA؝ű z`/HmB໌c6|[j ^nТ>}d|o>N˄;Ä[)CD\Rq0 *3&G%ͱت5_:Wĸ[Gv&V@Ep 3[ ([GH1C1*#f1[1K?_ 7}YMYN]ÐĎu6%BWT\k (c,}Oly;`?BlQosĭLWc8?ub#٫'w69QM[q3ؗAsdj#q>[R{  qS8jiOnqc#aX\:`Ѝ>A0cT̆|Պ=}U@, (+ڂh ǥK h[9T} OEjҿ qR(bO4gQ)OʋM߇ jqiBڐ +w0>}ָHO(jD~1_?3dl?IoZ>C2l UTLdJ̀7wZX` `pxz}teNa"N@Z9A]9;5tZ䐓Gb?%FukXh k$Ʉ2y& w Ax ^Q8P{z™;#;9M҃ K[m[DJvҒF]Q'-3gOOvJ.<^rAHnIw?lk+#;fSheA3BW*G$Q^rԞ :!>q8CL&O& ;Mu>xJ/xQXձ9&(.EFl4 FtdSOl X{u$A|E*LӅn2%\Sa.cȢ^DBS7׆{ZE ԪE1yx xV%[%i~ւ Ē= Cx"7$4@YZ`>s1 mKbaR]$y N>82 LTg{=%[ɘr84ˎ)1L7 cRM |@r Hx͞&yLь Q(T*d(/cڡS4|ryֶ~ +N{(wQ3ܠw,NF+=(D6TK[LI zyӕAD6JQ0r +~FftTl3kR83S0K! S7OAϊƹI*%M|g%_4W(i%ʉ;ЖFn}a)ny(^(Olz9=!ܜwQ#ϪeꚀ/M*ku8})J8AaV.@]}iEhn4Dzgs9H{Z3ȅǒh~7+>k iű7YL#r{ˆ;%+UYe}:P| 救7.V錨Se+J)@<.s{Ɣhwcf^#Ơ&p" Yuzޟ O9T ŢMO>@[Fl6=?.eW;N/||_H-r8Y*X='o=$mD 1+3RJK^ {\'W_J[0] g91D7< ,7Х~P-XyC5.Ict@F4űHVb>J Tu 2Z%ؽiC_uTEA80b3j|jREjGoI-N9BWhh׉^T홉c+*9q2BKJa9S AX8^CVfNl1gGPn^&c(@/SvҜtS| [t6KE_:U~@nZie$%zWzv3/ V\"#`oQP9dߊԢvod"1=+kݤL&h\42ة̽z z@ Ow 2XR||vq%E!0?[JT$ׅ=Ojb/QNN)TMsܺϫF: ۆ9b1\KaGt5&\k8.L`ᲸQ?_(2y*~ e LV.C*)tjV|:Y ,To)LHX IrS dҾ6R|j$^g>,E/s;){(~(;jw\{68o[B#NBXTЎIOcPlu Z>cU%9彴%sg1Yq R R;NXn_$oi^=  M+|LMJ7[i>m}qٷta&pe& #L7):yUԈ hZm>.Sȇ#2" 4xkNX>}=/Mni\ƙacutX9#7ŤҦ6t@X{ ȶY\T{AuÔ),s? D$ƛ}Nia?e'f"K96Ev&򐟳lxF bTUiaC|t6AH?;v)y\C4&NJ$)jKW -v $[\*`1 P6﷐Ÿ99j$G;ǤSMi p4 ޝD(y9#ȎKnЧ}3L[iBZ B."K˼#,zyEoz) DS5&klC 8C#R߼{F`y卝YJ(oJ&Ux=4Q\;/홗޷q$PQB}E}uv5z<cr--qLtwXSܹS_=:,cK Fb ӓaf"-ʑKxen%Gd,@j*wz^{=v#w HIsvs$ Ve{(y(7k .v+N=4ev)nP,uffrvt.ƫsc_Of3 ..Uֵ T$@!E͟MLpŁdpVu#S N&7`ʜ H0/,SiVҚ)^k +ևiS aOuc<8s# $( 7} >Z.|rZ*Bx]aMgJ,=孤A_P6kM҆<&u B*#<X2QͶr/fK:XY4,f@?CTᨕL>G M2.Ȥ"SO_U2)RIO>KR4++K(!r=)hYh}<{ `*F!Uk6:QgL+U>vCMyW ^4u%g"//}&I7 l AsD܆-J}~!|nU?:l|MxS G ,j\"]h`# Nu(*:j>7U͑IBo%-QEyp\#[U=Ю8>*V`J踎reȜ4kK8Mcs¿B65ī2cE[?1Ghl ܾ-áY$uc+T ]Yާ o0HFZ<OW 7HLAnu~f-92il\$k'\ǹrTFʔAr!qdGˬ ;;kxJxe"_ )},u8z^Q^15RF\^}xX-܇ܒJ$sRf0tG12irRb@&MKAo^슔GnQ9ZBEݫN j|؈{ݮ3*ݻH*" ^iZLo͐iwD!v&W|J]Lclo$ImzG;%PA el] Kx?{Fٖ.37$ Ɓ S { *tdS,~n]ErY& 5BAˠ//$ ;@?4Nt2-yJWd_}lqIQCP ) sz"$fC$T*Fpkq_\ ^(tU# < XWG-^=i5w4`Og7* ^͞9O)ɔ׼yLj]ߋj\QCa}Ϳ̝`BV[ie̻8Y=D.%jn!!/ЏwBFc&I3lc;tn{`3-MB\\ؤ6 :0!M{Τ# j O+8 w­ `r!{Ct0qyXF^4yseN (J,—~G;,l Y,ǫVXW<&‹>(u^ *hxfl.㔆Y@ 6tO}䲞-nCȂ\ȁ!J'i_eU(2@X(`*`Yc*x*g;KԦ 2$dlf;!i}Ȏ֞gHD8AΔ_{9m; /m.dQ56l`n@xUfDB 6e4IeQ1c7:h(B3Aql1כ0-.A4}ɱ&W{#30}b&!@L+`TTYTW5(,p/>pͺݬ+.:h$fb,}gd뵧qm[` M?U*1HFL2c&JUl":aܸe2+O@\UNB.SAn*-1[0m?MQ/)dv!xvxC5 <\}SM3)`h_B/F;2Qr mc!2y`[tcs8]=xr27l >z;o( !j3Hqw5ڝ ŏ}v-f]y>ι /(%IDaSeӈ"ҙAN"^Cp飢2RN^,*nB7ZpFkR1߸_xA  nԀc'}|Qa_fa.bsM=16Doc8e D KzCV폕wQ&!FR4&7YRUj&A+ ͔]%||.C5P@A%ɟDm|3jq}^R0PqsxE;Zy?n(a&ϯ׺~>Rtץ[䣟{fcAY":սaMD2_WZ*g5ai4mQ\բiqo&+nٴ]}SrQ2Ni]XiE[*Fxy$fL&xMMv8CDc2ku7l c= v#6J+YDs[̩|~BM5#Sw2N5Ø$'=Q+^)|'a"8ՙDՖF***-fy7[gf ʔ8{,@\PCdR7i9RƥXPmatO.1/ e`@G9,78G; ;g+9 F(/l86D:|>!΍h;a-gg+eL^T%˒='qo[*i}#AE ttOq/-#9G0Hdȯx+<6_1EhEWqm(6n{XOKx@H<GåP%4̴/CX!pWoi06}?ō|KvHeOU6H¦^ }:X؟MQI`Tn7mQd|Y̾!{R#Ag1'^bȎmMl$; Y"_'OqatJWN 9Ѻ iMqv۬gDjyLl!MuLg'}= te[y)6JOVl);7z2?lV`{gt%WW>Hq0D(c e/~sBb 8Gn WH9eFG@|A1%:,yheV+Fnڟ_NePT<V`ĭɦ2pA dPI"Z%0xӟS$0>F@fφ>ŶȜ#$0?:)%`d8~׷K?xڃٟFW-kU9pSƆF tKG5*fVZ9_-hQۋn Dc +( @`sS``{׷mG7$S8~.[*R ԴtVtܿf9)܉:Āq/$"#or U)DB6yd-QBlD/nvq~:vbtZ)GG+qrEÑHUh2;\b)Hs!J[HL$/@(>5aYpAkyүb5ACMCӕʔqP9D/ jOÚ& /ӨKB]|53 [8VH]4P#50"^}po-91xU>;BzOYEgw(Xvc1!/mv|٭1F  $c[~ v깴H8} ۣCz!-[X[jM,::PGbɢ+?\-1_y*@V*SY4K3³hrM,Wd1}X6VPdhIOZG5TALq4Y%hD] %4nh|[.ild);R6>L#"=ዾKL)gWxx>jGkWw|<h[vu~>hvtk?RJ*SelB[z -b[0ڝ0Q7 exj)_.P]wȌqåQZijW8́ y~`Uj{Jrn߮,W,R=`ӭޗ&ЅGۮuR#U8_2,2\8*6ݞ@0(J11:jDH;:i*ܠf2z&;qXEŴ c_7II:ڮ2:b:1tVˌ 8Hv|lK} x~aTu5CNX$:\DQT@hsQTt.[ {ی\9GwgLtZ[v=ޖaFRNTvSeQ/BEX j#p 4c"x icV႖2[,jD_4=I)J (իMIr0d!+Ku;ʶVӿ\BitW߷zk⢾%;96 d+exۋ{w 鿖Vc'Yb P|?ϕ-{ vQ*0ķ5iS^lG/˻IE\L7SoCZW4>dyleFw$x ܭr ycev;IvR .K_|hbqHIȆ c\+SNinpoڒ*1vȞ.IL80PRbM~rI>D\Åػ6:eHoKے;0dLKס,N(>b.}AvXϟrr5Rzk}ic^7diď:b%M$.CW0Oqe|<[O=`;&?3ΕTOj. b 2M9oӧvТ߭[0CE(i-L/w4gBm 7wž16wF/-:Tq> MuZ~'[kU/"Di$٢EUm~4$R՟ `*|y UЏ]8 =ju E8KX%F_mhIl0Jܗ# :L7XAMyGEom:T4P=d{wv&pvאiv(:kqJ5c3 Ӄ&^eI?o`k=ܡıEkMn汲RY ~TM͛VB@>BY ݁6爖ːNjl;yEG՚5y [Nfՙ^ #և~b@FQVթ^aC8nh{jEZO[ FQ#ݑ=s>X/ErB[c^*ʯ/uƓbb=wY@ubtc`pÿ曫/Z1c, ŗ+Px + 9YR&FʎRtQ -, xLal IH|\*=20ia-ˇP vm` PZ6( 2妷XZ!RmbK>u`9O͋09:/\Mhy"֠8H439O?oÞ;F<LEVeU8cr)WsŘ!@`#k6D˄ K2Owg:0Ct<9mj<ͱ2r~w0}2}D4 MwNXvSTqn%`ӨB i!v^gϖ;[?޵:wVL/פntva rm'6lǝRnbR\^5QʇW|9${IRU N,os+d |=-> X( aiR]JhOqH{ŁO6e;3E9oEP)~(n$EUdP5WH8ey6M,W^hU͆츶92B%]<#RUkC$K*T׏韆_@tڌ~ (|-V~Vnp矏dw˟Ӑn\sUوiٍWakpo46I%ɣ">{,W~ ^-BܱC̠?|UuVneYqO5 dz_Ⱦ'>#B׀)xB́VEݵLv@RQ>F؜Q!7O9{QSqi;ξ4…vE'Zn=]A#X7!v#Fvz'~jiKf{G_сPcKWlMw-^xf -.p`{46@XR%ۀЄnE~V` , cWN%N9"3N DDsiFB;.@B+b0GƘk{\Uނ=?B;X 7coNǀDI#4T~oYZaJrwn#?Ec@; +g{()@œ8}  , [5ͯ{ K2UA/qF/@^L^\hC½8u¨(9_bߪcuHf~/Q1:?N a NXcI&/f9;m7puj:HQ-w!~mryl5\P*Vȳ kicA(=M;$AYWo1vg!SJ5$y)J)| Z"㢁('DC<WٽQ[gW<7M/!;.F KUxZ8p**^. BꡲPHUl)CDc^`Auf@e2GsyəL'd#'dzɘod6_08^F %kv򳖹όEgNZZ_boުiYN&M`UE( &=^F{QI폞o&l 5c^8)>}[jp;)_rqϻ8wy9䅵mRAVp^-l!q3`'ϕܭyU9 vL{(ڤl73;ײ;TХmno@" yp=s|L}› Wڪ] VͯkG (~e[(,I? "@9v;a'p4Z@MhQ%fKWC'5Z~CSDLCb hW<{ 6>/t^Ƚ:MZworm2uXFfMF.:b[h#D3C\Y`#ͷm!ς)q@ux} ŷ`1m,5E? dx~P'.cVwLم YRt0)Q#$g'JJ/_x%tFEpk h!(1Q4|Ih6[똱ON/X^# sܵďpg6pcoN §)H{+P,ߎ‰ ` /zX+!p%9 LD]AųssIG&wia(QdO+W&LS|/b.M=Qe|VpEӄF7EcG􄢕1̥]v1'&2xn>sX9 P4ㆺjlr'sUids裎I{֕Tw._a6tD.i4{#[č[V|zůWK_u= F/Ylͬ妜+@A˷RVSnKiYƑ1zZ?KƧ!P6rVLa~IjqȜŕ13a)vz7=TAx%&\l]EN(Dm=, %/rmmH(lX_:ܰD`zAW‰-`_GB~Z2IO4n=#n$A%8)3v"S@L‚.d#gvY+e5.Utaqu'uJj[mS Kя0 zUH;QiЉtdy#!8qqj/ ̥>2zR̊h֝/7$iOVH䩸ߛC>IQ_aщں?Qr\sYƏcE"1!15>[(Za5ɉú,0{~^-]slk~jN>d8/L1tՓ>S ~USF0ڂY*A%F \.2'P6ZFVExi;T&nϫX?;szy9zWcH>2/-"bhPҟx?'|ZVMH$[}{=F9>ڍDtZ3Ǧޣak䬦F%2o}^9ҩ}ډ4ͼ XSVhaʛfz2 dƄ7suRiڥ°}b^ 6 ،Jlw-PRW0*4uݬA P~Uپvu y: E( (ݻhovG,ʑ^Szsi8eJ) L3YA! s0w/^2OŇB?;e71ŝMkN7 02B{dj:_fz1֝09#unV[a$=n-ZBm߱,# 8 eiV|5k<R9 ?Y@D@C۷/3c¬# ⎺yV=2{GD{[!3~)>N )Fh^" .zuǙ-bB7c9ޒ/q"XNrW#N^?tIRx׍X-.ma_(昦9QЎ!$̷e5<+Vgvu4wym{0qސH-r8`' z(#Xh@Ue ^\6nbG)d#`NYNfH$V$e $&09%҃j/B $8M)KUcL,yv \0 4#xz$#F|I֬g=)GmP:=FyifL&nCHti8ZLB;ؙ|bPe^xJ h5cdf֑ȧK<)vthLSROyvjzXHPTS'xWnjl%~)?"R;q tr?U~qTC댯 7Ec"\@1=CסUIșˋ]SdRԤW~FωXź5-`" U#V#śIA7mk"ǣ6k9Xf9Oոĥ|N}Qp!K+鰝@P+Ucu['Rkj"})o$ ŕ]m?lfB! }~gЦMg0Yˆ'-8n[|tt'IfQdLnJY72ʺPfhۂ"#o oCٺҵ~>92R]o|W9=V8 6'CL|jyYo7/_2]%{0] C=a".(#>NrĦqe V3Yc\tRQT|?srMKaboޅsIqWْ tb R=(9Qf"J$D XD]j bS*6yx`4T0}4/oFTfUY87X 7ϒjgL9 &Q-hjX]9+N jE'vw$dEZbmz@NQbaX隒ODB"rN5i\ӻY]u>wҧ"&Z^W ȣ" 9`{Liw2@]_Vjg|GO'H%-gN=ڵdΪZױڶ}( u;ɧG;wlO hgfyc!Y쵃m&TE,/.' Ӑ?UR`Ii1L/Xt{aIbx ,N L0ִkZ'4|H(9/MB,tuE7L1yVo"{i}g yJ-m&oӌ(_1!d/1:]NSL, %+7)lxkM ;N/I/C؞AHB Sν;SaQb,?YT-!Y>.К3s2јCi| 3z1Cnh^9ZF1JIB /zK[q R5oa of*KvȮ eiQ0Qm6X~zMC^c5 AA3@ \>4QK**|P(ZGGSRLT!@Tl]C]qOHk .m|8Ȝr9:;M!2,o+IQRzZJ8H|S%)# u2'`G >-lP\LD]Sþ]/t%u:[cQJ%tf^hoXI{Xs]#ulq.I%G5hYҰ;2ĎEED?h`*w/h7- Ks t'J:]deZd:УSbr05 T6F7cqz_VJH: l]z7ID&pg8k,?9DHŎJM!$ +A=LBiG@q n]rlׄ&SDMsͿg' r+Fg^W}-8Ѕw1qAVl^jrJ4Cբ>e:n}69с[+>9"%gZ`w1&4kg!:FޕYA@i\XH{o?TL >#/yoږ!V}ו ,;Z=acfBt{ܮ %$?`Φ"U$+U͐.h@^d`Rde`_MH?]#Jq<8<+\ #Yb#eSd(A޹Q|lLiT 3Өw |pE*Ңq*ρ/KMK*(u:Hb [8A{bTŸsQr"E{N?CV"GkZ e%wu@S%8+ޯw`H1vʟM؂t/)I8\}kMv[uI{.־GrAWtFGV`mI72PW܀i]!"[2mӊR|^AqXyŮp'X77SKe efѝPCZ!AFVOYY+GWC43{),<Q? ^͋ ! /6gɷ*^Jsg@,X*O)!y rHKH.*o!~M 璾 5"v 8%&EA328\m ۼu0(N',ċE@]3O[˨ED= w)=JfYǔ[t2}CL*4 G'Em.Rg/ͬF Kmn-a8¡ٳPHO$(;(UwϼkL0UC$Qz ELp I@rIF=]^S3ǹB i5X{:hJJ)5T |ǼgĄg(QWY"R>Quz?6테Tipѷs/mV\'O,Gh,f+{Y<"'Ni8>Pߨ<{-7j"9]gR<%v]1\4kb&A."KjAu0 &Oؖ`!J8uK[ Nw,Ӭm0Pyi&~鑻囊1Ӓ[?6)QX 386FFz/'Rz Sj;M^?4Z6Ɵʩڣ]7Ju+kY~|`FLJ%W@f!]CɃFApp^.ֱ"?ǡ]U;1[aޞB,K( T=q[v[L1* eAZiǘ-f"~M#jtrvYX[6x0QJ>kCl fB YWo|4UwiudԒ︠I-Ҋ78 ֹ ]?=w?M*+`LDfGk/T/=(Zs` EBkGhQ]u !P70VQeY< ܮZ܌P1{V]:zC#̾Ԗ>aرbQ T&mՃpvcBzwO(D[ OTK񰠛h]6dLZWn3˯zHRjF2ٖM>۫D.>&$n`^s^64_R}rуEP}_ϩ (X_a2Z3$g$Nٹ$ֲ!.mykpo0M1n _Dls dw9ReGo¯e672 bwivߋ2{Xk]lLGBMgKT1((Sgs@| 2t 3q'ʬnG'̶4{QgU!K4D vҡVU]\ TqTZS!ѦVGXo=*!lGH3M})A7y,*PNĭG ## #Z둳cgL9_T(-l}<6XVǯT ]x#Ǧ^~4beJAJηTHc"b.^}A gKtC#e杕-p1&F{{ůM hhyM4pyk:EF+^tp.@yLMC-_)Kp0!ӮdyW(:I7)TIRC5mY̻hX͙S F- L%<20f_M-Wi:l ׽ ^"xGtj8%g 69tk Վ mY>3Q^ ,:=ȷ(t J@=AHl OgG|Z?A'>l6ƞ8jJE1΅VrV5aK䠌 pӝu̟fuBh 8W!k N$ ^H4;.0IfD#l}nqJUycpuB,Hq-yeBt4LWWL#rq}>C$/u,P LT=nzS nQ1^$sqjC r"$&Y+5Sw"9πKEb#;v ۞4mB?yڄpTD m/ v3No  9 ISa;'OawD얥9 /wH)"<Zӆ i`m]} 7 >TLnʇfP+W3=|d9Fg(+h*75+#*}Oi7f: rTjpR{tr`?k|k|{!Y0=yd,I8} cՊ]*KQ+h0%^ODSN绖.%7֍ڀC\{=B!/ʠ }Ϥ2~+Z EdVA( ݙ?,3ml+F,qPD*%h`Z8?7*r{'Ikw}"uO$R)ML/ׅ/V MLQ.H߷G \hkM;aZV{;O6~$2zfOӟ#ƒ+,7CX:| qMWL5-5b0(ޱ,~5)f?O= ănI8JxbQ8VOԈshkz鶐^|jҽgE}WJ+E˩a wA[fߪi#mpJԹу@J`Y* .хKXɘm~@`0wBh+׏C?S_1Ю9^MX~\ubDmsΒ^s`^6^${t`׹F6. ˹4iysUJH[em  WP@ǾBtxrzS4dW6ƻ~1N&о!W-uXVI~lTCrVb X7U)[f絵<bwk |!3N_x{~C.v=y @ڇ#rV'NM/Kjp܄#noݡpvݕMWȤ F to)~`iЊbG[3fA^  fB3~"ʶ}ͥpUD|խ3kepaл1Oy RB pTUkk4z[1 Nc;EY|/ȏ+2uwolZlʑU&zdM`^^⯂!o:_kc'՘V d]e~D?EqUlOGg': cscnjd@-$j?؝ \Pa*f4-!4l9?懄nF2eOv;˫{7*2ϡbC~,S ᚯ^lC+'vwӞ ׂE$y4 ڀgq[((z]|ur-~hRQ~@٭c-qHUU "p|Z$1-S5+IBTǢJ|^ nT/|R=̾bٽTJ8; 2H92+[}6xXGWF~n F>ogG 1Xz˼VՌ@2F)26!GZ,n\YgA$P I>PinL׍a.2YⲠ@8'!o<+P/B|Tene4SُW,ǡJNs9965X}?Ag@zucFOA)LN'RM9ޞ\+h0%pMu,|\K4r #YZ"\Z{m\/itf%}BGN`:Aͦdz 1$疎~ACTȒ!nKUT"ޘ1+3$ /mk^SmST A(pNmU( / Bv06Jdko/ ڸeM<V(,a<~\LKA8p1*^X°C)j{P%nh^Tc7֖ cUW;XpwH RX]ݹj*{̠2}:xďQz0pzwoׯiڰBPaz]4Dj.lƸZYB~Yׁ^U[h+G(aS͆gZ:׸څXU @mfνD(sV&Q`=8i&Q+YaЖ8+Vm 0xWO"Ari֋޼@h}m!|r cGb9]E™c'JfKLՖ8cs2$]rw~!]p3\jf:La>669 {p|Qu1--l=Dٶ/Lb4ʤm]Bxx9\澅?l9lh3xol@CCx6KnC)Ϙ>PYsbe1E@N'a*!Zvﶗ4Ny8v k_Z -R`ʿgӭv(_D\ -F:2U 2Δ\Nɑ{Q4WԚE(<OvsR =2mgĩ 9(RtR^(p㿬uF=FnI! ˩N]@] #uP4j]X((7|ʦ:9liuohc8AV47yykk!T 7jݷ;"x0,(u^tW 4S)햇MukTvTrB`i+*K'# RL Mݷǘ,2 VF/qe7dhmmڟsHHfvzD9/ZÁQUMPQwHF/?2ctކZڒ{F^vUo.D-v܂Hh)ˈ:s& |ٛ]s}iw' RztNcQoS|f`^qm*RFrÕkB).{^{z^7c濔색Lg $5u7s'^vL*?9JuɻՖf(jjbfRྍk|Z *r!qfȔ@5{iӷRrUu$4#FhT,tZt  KI (Oo՛νI>Muay&0.J2#KA"J)GqF @չ Ք +7Ep-C(&捓t[}/n8\ZONElU0{os@b(b,Z9nq~'!-80eGP^+u ʽC˰976gV͠[]k!X?Ke:.?|ͨz5XRzp*! ߓܪ}j\rx4vtZ)˩waGjj wM8|}əjuWkqVغם=kf 7nEt45ٟ<ɿ%ZWX/o)<Bk*Iw߭7[\ P>Q+*qY=mft\qMyAbk8Ӝ 3jvu@ wCn8+:Dx]ٗ5`:?c'e!'77&/BMQW(/J\U0ފ⏅O¼њrtΝ ҟuoޒ(d2hur+xQ"~-L fr$Ӝ)?d^I+m"L/)mgXGLc㊈OʆQ;Lagm(B@H@ =zM*st/WUxӯV"srn%-ddS9(.B**xf|_WP|U;ovET&]q0.CZ;hݝ8@^O%s1dO9Y"hbۢ&Ccg6M7gu1܆kI^V{&\~!w"ݿDд**$_ 2 n(ox]#e'Kw7K v߷5ݚxЖu.o! c{ۆWq%U L]"- 4@26&mD+-/,n@R @1ǔ4^i3>7߹:n`߶^:Y ƞy<lP_Z\{>S~tuAT!${>I4GmiQ}M)WHRguc&LMbP/'3ёxD`^L\d Ǹ'}f`w &7ƈFewB:?@JnT@D?`]A-Rv+K~cfsfΏA_ز8 ׳j+< U,B::7I&`EG JˆMsoVq͹ o7Av#]az!W+aQfJ Qw$ϹU{"Qfrʻs3wCgMHnPIxGZk|VE)j,*C 7[8#Tҫݺ5+{C-7ek~PM^Q4gWq[Zk y]}xIMXeYrkʩtkJ$Mf, ВfG̈́?:yxyz~ >M+&SƨîxӉv8)$hu@O$_Jpŋҩ;>c=y̻/n5C&Hd) dxo2'z7YNY1.6 rذᒮ_/47@+=9\>ݤƘ̹/sK0D1khCq80EcGwS;!MQR~3ȯc[-OQgyd]JKEGā)h$e3X=KYfRTѡi+RyzVSw}D2pQhxq$˅|(IY!$z@6 1$}g9GT{IXbH_˚`k 0gɂl, Gk|9J s$U{5VCQSY]~!1yLjmv> *`6W96n,T(Q%+ꏅNKd ,dCåh^Nl({z(9^46.\ BġtDPAr7#n[]dh)᪾9Q%q)#g-L'8a $R@)*V$`mUI_B֖ۿ5QUtIא_piY>B'@޽ S7xK6wӦݳgCNf8&DqvJqY9ST_:|:D9"Ȕv"o Qԓ9Z)m)ҡ1!mZӗ%XZ}kJ9XHV;G)F2i?al֒ -.?| (M'BTNyMn@'fh g E?Ǚׅ mK]bϱs{e& ҈wj~gT7p)K.RN6>IrO_LYi 9.~o&%@@̃^(^G <:xD>j"y:a/ &]3 rs?ebYXu'@t؎Fecb2|).FQSֈբ]|#ݷ&3GEGv2Nkm;<9g-ReW1d*3؞;EnX< ?2s]m򛥁*` NqGbHRfƵ$5Z5es&[M%Wc,عb4T'b @żnhMaum?36vQTIf-q uco&pc(nOJfBS0Ԫ0kħ2F]@iOPӳxfY/`J4Z?%G )g'T{lFb5B;܇O9hZj\윗f|O(QǛ+;$ GYp 2%',yj;JIQN?iYʱg\| YA̱j? |ͻHj-y{(ܢ_*\Vp("kmn?)$ /wp >d0̬-ꁹ\;]r0ԇm'Lc`hLJxA9qK ;֞v;Ud~hs V]or|p{0q*`v~XUXظi5Z/kx\P^b_%_6/_^S9)T` 9k+I*kSX4^r ): [jOw3`TZ#EN|D H3у/j ӱ)Jmc8.4pq*~4x86.Q'Q&+/g,Ӟwlqs?O:̗׸3n}iAVuX~>/GP "mz?vƟ'6 >mc=AiyIlQ˾}i:(':ŏA&Z㫓vxB>ini ͇š(C5pVLA\Au5?zz}m'qx%j J9),9cAz2KBko)$Qh0Z[ЦR Na'ٹzc@QӨnl,Xl>Wt5Xf RoOn*Rr:@5L^^4WsG.%0iZy-ӹapMF p߀0dNѽ-G$X;F4AY4i(w3@_oevg\{]Œ'x FR,!]}4>tA8zNHImUR.i 1O ؚ;SU#C"sE%@ 6S!ɨ$[X\17iZT $! I8i뷰h۷=I`4fy~s>Ċ4]qD]i{!QR.boWqc!WkX$ұ!2ոX2ђ`AH88x -bHWĥu\s?(Qxnm)Y|(q hs?EO8`ڙG&gIVHK,IS =,ǜ# U -/9+eb$+d,fj8`z"^s1\^a0 \WZ2=ru[Ƅs@y¤%Ԯ拗51~c4Cbr~)x0]7gD ˮBcs1%|(}Fi;yIR3M8H?RĿ-S{VTRpB-I܌ McH9EAo[nR] uol_Er\ϣIF.]dj C-LshY`8/GMTZ%%FEh51 dL$> {B|ĹJ,#xt&ԇK ɲUfw%4cǖW䮳,$b彯x)@ɿCs$(Wo;ZS,V@I?jԎ2\<{L ϸ!EL呎Tef pu[ _*~hya1c_p(?焁K`U Kaa8(or;d ;kòPS,NӯQ`֡F$V;iU/Ȳ&8ơV3(nQ b&W@gEϊ¶M?8pSOԊw|+g]gs94u1d\ QCo!}\ ]XrTG윊),烰0mwlg}A |Nn R,ae },_w-N_HM1LJOA5 mMM W]Dއ|c~(fQGPS)R6G׏x]8lgv=7tKot5rW #GأL k'e!$JtXtC_!:UBPH5O*<GwtQW_B%*9_P/lF5ˌlbȍ=z6 !a|XѝܫJ=mCWMm}{cr'AtC /};OɣMJ='HI1?Kk DARY}0N|%$a֋T3HX4Q`qUZKh 4&vr@sҍ6'WsK6:"f&?j51\8EoEY zsE;q;qnF}v][ ϛ.Ȝ=gD_3țϹj `e׎KS?EU2KG\AR}hXZhEJZh%WFhjSs{ph֊+wVv›2l3v+b1.n7,~1"7zP Y7ݕ^ &Srmvq/26,讂!K>^VQ^;6!<,, 0 E '*F&OH.Olӱ_Ax(5]eǵCL(S.t ݡok65'x$$n;!E.Rc(h]-q" 5;Au;b< }뵘,XNUx)abx{rfLLfxYv|w%.Mp@sMG6AtT\]>?kTİe">_hwvPԛ7!:6vFHgg2Ⱥ܃7 =7,1eQč<śNSo\7Ξ^['Oa ;k' h{:Op[i`ӧ5V!#=ilQGm7 htl餱yb$]%!TD9?chKIJ`F͝<KNbݿhS'\e.վ&,Jb;Z~f^İp1ݓ-VAhg>zƅ_^CDߓd`Wk?8-j>Ĵ[$DG׈]{@wȆC ."'H,f@YT_tnd??$A'e;_ LAjY<ؑZq;D:Ua84'xݐ.0NAd{?oӈK\oT`Z ڭ_2=5k{f%?~}Y~}fsӥ-:B z>vP !Ǥq8g?M ;⯝ɗkMŹj\h3sytpxtZ[>3k^+\Kh h 促=*$?Uq>^f1]Vw8Yr}y^/WiH`{Y1a=xWz%B(fR+qG' g;jces;TZYN l!LnMx%^d~D EJWE0z :Oǧ{l>;PKr0kb&o<۰pryOϞ-Y-?ZKk–wtHbdFtdO']sA~NthLWwO8aE_wpo A13u\6G|`W"a^pylmѰaǺzZB؟ `ŴEY2jcؚɇCUM.񙏳*>_ QN THO39: kLߩm ܢRt RI|mJ.e3ΈQ ` Kiw" 0{2x01?mGQt ΎaHl&K iLiR=(j$!hǞG> '..u W`9 8<:=faUZH!n"%o͐\rl'1A' cÌIs4ONQ>Zj+X2Rw˜ XRn;y&wަzHVuŗ8Gz=0ض}:ycS*"tJR7-s1/gT@DNiYR,䋯[爜YC+@U$4;3=!J8u5JO>[FgKw%~,_/+9Q^|׉% Jv1ară 8B[k7QͼՆFbABLOsSʸN^[jx&.^$|V2Acx5°7JQ~3w]ь8Ițܗs-K8Cu \^].9;E(\J4L'(Pa/poFWRm^w @؞K9Zc%Vݻ4pW'6k}d/rݱs̶pf/1!L27}+D{="Bnq~~Y1Xļj~-;XKRobf3yVNx79G\0̺D:+D>hGa_ .8QqQ@i?O=|C _cUqpΞ[#^˸5T7-Bks[ׂc}}:RXWG:0CZn$Se'd`^Bp ‚%Nt;m)֧f/ 4gQ`l9|2n >_3j)3 yBV1{ 7Ŗ.ԗ2Mt:w'=7y[GAYKv;hoL->FzɳTlىk)v).pY,Py.[qRR{Y܂yn$mBlV=Q_YN' ;15QoyktdV]<4!UVa$8SHs!v[&O#Mߩ}Lfs(KPJ,vW6k=Q+>H5iJ"5O| |'H@6/Z[鿐6ǫx#?~\r'\!bW P @}'dդ7)[#$7L(¦1gUL!o+‡Wr˪m*w{Gѯ BArDlqzC)=Ԕ}z!6JM7`ȰluEG0}*/WF ݇U`PS2kUA=R$AHj7i;RoYyu7/މQL+窽H$4$1p"zKc`"s@<4jnR2g [e}~^-n;<7,:4r.A71rjaJ1CSNuycERYa  wƀ? .{M]SM )mS Nu;:=⭐ۘf劔= OJou,Aas`t/>/QɴS0|ٹoXS_K`Xڙڲ(mp!@^ĠF A[ Zm)P н߼sɒEfs>ur7Z"N0rgWQ!2,aBa-:hAߟW4sKǽun,?XT F 9|j[pj*xhI_z] 615K2s 愿L<ؽF|:=:nj5vyЩEM\#h0~4 ׸ʈRPҟ۴8jBƑ@n1"ҷOƓ ٷ6j%F`.'"m\q<ŁHwL;u `V"C8l RVŭ@fs.%Y6wqb 3.G(u3i78&`Om| W2Lo'(q>qGpK^TEy -Z4W ֲM_[ DX{0Ǡ<$6x'tw)#$^5ӟC$m,0~O,O-ɔf_)3C\0 J`T"s `g:}_ Tpa=ZV2xpm~ω蜘-H))V}~;-/== 1HA?%5!N%|h[ɝ!wG@2#y./ۏ5r-x&?B0ͺG=6GR!̤@ SγƉ؅ h sV`:_үBtV笩Wi&Ea%3E'Z &YHr@7?Pq ~fe-D$J2a[)D2[W<&#^ 㐶[׷ߖU|`("RMڗRma GZᰵ&'WuP(lЀ!u$!Am1 ETC]S]{.NO>[I.[lU4~ލNzHýoY yGgd0эh}=gնJ3k yLGgӻx&:*_0ҏ-hֈ^r=0F7=lAғ`_%|g-Zs"dۇ\엺o %u>?({yӂZt:.μ0!\Y Վu>b~;|KIBՠi~~|ȑmI{ƚV^tM< # X?ZaE?Sp٫NkX~`X^@s{DYiu?,Gh~u3iT; J>6$5Pxتke*S:H;YDyvتLC~:5''lQ Q$k\{ #c#(I$Hy]MQOq#?wF]islICC`n94Drw*_U&.= nQLHf[vj\4 l!ʷ!3nĮµX5,*Cߊea'){|+ʄb %(,~^cⅳza.IJ' ٬ UA|1(Q6BH/mӟҘ](Ck{DwjRD>U;ycT %01%,=&nݝ9E"C&WP`4pxh!9F4] o3Q)f_%0;ľ 7˯[VoDS2Rչ4<9pבq̟h4|ݏo0i z Z0AjZԒ[ov˚!!>]"V>DG)ͦ{+ \heHœu2%g @2JI^0f8lH$M dZi.yib߈3ۮWvG7|i<_ ,ÝN~ Y}mhZTG {JxyԼN5}>riI{O4_Saki6<_/ 1~Cm!$OJVNSGbE(ǂ-1`O 12D,yq&!V bWgYN~Pn?\;u g-P$ټ5 N'\@0$*URZo& ;zdGg+`Z 46 ƓxtҮZ>hSQƳ=pp )ֈF.3ek-~K ĝ`1g);IH uiwDOyӵ4aѩEMF di8 ] +zȹAǂ)әC9_H!7e@Ia[j<2QmO9Mm?ʥ3󡦛g(Pćd3V-uΞIS5M8ÏUЬEtOמ(YI(Ѝzhìz8kZdQQZ5u=khO&;[ϫwҐV4Jw7L/NC0 =]샶g=k'3.1nAxMaaԫОo%eU.~6rNuJPL oիZK l[FBՕP?XwYI/8/k4&l'l%";9+j1~%Q3JW:>xhJD颽)Iq .]|vvawjpvYGtyo❱ ؇=oUlB?eu7}%ؓw̎)9/APt'`4n6_ڛc-Y`iЛD.~V&s^lM* nb4GvQDz_"9ڪYcj梅}'?ܩZt8*@N#6TV: wiB%M9B#ZlI'avЙh;»`%sJRDhvT6j}z`Pe"$:25$zr&1!Hd=j-WbAg}Q' UgJ,O}|O|~Qt8$m|v3z| bytywGJp: on 37[;#ӟX>D_Yo5O6x9 9CKr!$O F7'V (@5 w7u<1b6ym/+bHīse#W||]_GK[m)8FY!T.$V2jjYqWַy`$*޾ڹډBbRĪMG,=>T5+p)Q%.T1y8^sST,>HUau$l_ *~]kGe8}Yn KxGܼ$'bx3 BOzT}h pN>Țu7,שqTgim. EXH#Y.x=D8Yb Dwf<# hW SŹz="NeBn\ ^iͤ4PBds-$!|?=H`(ˬ:( \_50uR1m_C R w7ke:Q^T=xsfԞ#GLJf0WyS= n0aKn>: VlJxXVd+f%Z0LM{t LHv{GیW,ʸg:Kߑ|1K N`-Z q0D lSbc*VIbL- m>mBZYe"Ꮃ=j_J2 j-&Zl=«:Qe}dB:WXƕ̒&O)~-EN>3 ehxAk[8C[@ r G8{<9DI]Q޸|FU"La *&aZVFwR*+֏NPho 6qՒ`, OrAnW름CFfA_Y~MX ptp6z_s]g~B,`E ` p$>e Iih)FSD#mlc<}#;I똗 ?= ;}*]u_>c]ys`kߣ=R9EppvVs0WPVwcBNMHӇX >A;^K4ut'Z.}@ ]WWd/t$d4Y>%MKf"t(/?/ZS4-zf)Vˀ#fמ*ǹ O Tj(R%_=@]Jb+U"ϰ|¯x Lx/#jD9^:ųr8)-료}62-xA?Bp\U(-9h`u.lCG}7P]pu} +*;4nP hծc=y*>͟:5_\X7Ot)JBIZneVT~a{x^:JNF/W66$IRX0*㮊)rtE*DV-$WE-@9$KhAOTRX*0|/:- 066MHE=`sg,N""ٗV-<#$p'ÒFD6Jq~hꩉ6Wykɘ`X/aŮ|IwXⴹ| P UŸZKC+(&FV1 j0 Jג`Df$[ơN% *؏N񿾵G7ƕqEeDUeX+Xw훠be]zУ5To++dZŬ3uhydٜq\:5g)Ge{DE뒏j @=8h܃+1~aZ0J`rKrD\syonN!eA#}(Ddm4"S8$S?Rwyd?۸27G\tK&nN%ȏrPldoj&B/)Du)e?EQ^АU Z.M=Bra6fObD)Mr1RjõP֠BQO=[[7tnW,dVzݐ[·|0Jw`@{V6g4 ƄhL3c8]~>Sh_ {P#Y=dzK-Ǚ @̱4["GM*o=] fRH17z9R9mܯt2|87uy%Υ|o&ъyed'}1pB- FibLWWC6{>VZ8$>p̮ʏ`84 %5Dk`vI%o!YsyaSkFMYyljc2E ԟ+U,=t;}[?9n40QeG7Uߙ#ZtZ#CwwMC;(~ 3n'L~ՂyC%2@, ,Nd4(Қ ̗#{X^ħp4ahWKv(LП6LktؕZH,4mNx4иF6D&9NaHA:5%<ISz=[T JXnǡV;aHi?%] Xla94pE1-eطLZݿy]H3g/Mt, & Ӌ_"Z(6?-@?=+52=?YgP]n`[H e4#,8ZWK/1MtV\me|&aM3JgdMGkDWn$~bDgOyXpL04$m#mRqO5ˆ]1Rڀ@{=G/K;oXvo<,ءӛ|HV3횐= )n &杒VQwٗ^դ#sfQʀYuJ&xλEWѓflCTyլϐ3\)D~E")dXD}"͗-HDͥ8G|xN涫_=.^"ȁ]0uس( \kcPZB35a)m+vzqiXGw’EGu}-ϜVqi]3'VRu;6W=nl(ijYc<)v,oft,o5{I mJO  6SV^WX(|t0=',Pj_^*,PG^3K\:[I3J-a/1 '_,  I"5<]S0w VNYioȔygg FRfÊ?!Ǻv&Nq7n(ev5߰vRVK88d(3g/Oh1>bEuS#${ѳ& Hh9 0>3X IrM- (.+ SM8xW>~ ԚXn?8xS8e( 9"pUcWr]BY@ViV4\%+h/dA5$J_<I.|a9t|&u@ ߡ,K Ѣ4h<}+c^Kړw< [!UHi e,k.XҝPB}k0`ת;.Y J|iZ7ǰpHVAx!: ߕ^z+uʂP&r a="GoDEяEF09)J-O1.2{VEzYV?@P49eǿB%fL ў.yT/ӨdH}jMɥ5[۵O4>x[ȓuv'&T?ҔeQ/ǁJSMjj.z/|\Mq8SqYpr.\h)v/S]  n$~dž zdQ}SHjNaA nRx :82;R$E$>BP\PS[ ݼUS<X&*O ~Oې+#~5S xMDA&*WxZ3@ΚMaYmÈ#ձFg{d1!WE0~2ogD9 e[,AZ*¡͏bspwP_ñګNLЉP~'#9<Ơ+ uߋ0s= *3 9kO~MSbO qgcIwHH?v~:XuQdߺY.(=3K."UrcKM>(5D+7H9BݫA<;?,bu~JTe4& 1ۍCGs<@C/iN+짿C-]gK5{2+ HfN𐴮S° ƪqP֑%aD Ǿ#Mwy:$<ئgꆐ,$AW+gGU/8ɦYeWn٘'O㌊e笮 S(`\Df<=C@ m qVt̮ 6 WeR oF9`KR+ifmݙ]-*3 h; Ә̡:Yxd\hZ!^Y^2qvCP ,E@t=KrܳU 䰞BbAM9 ]1%mϨ >j #?*B4fJx90†&i5< 3m]@,1֡s]2]pnr',D?'OwBNDVG_ Yg}0c2Heu==ӽ#1wvຓ#y4S#x4L o%yQuԆH}9{g#G3X I%|fWS+-VΏ%- '++"XV۱v|Ț2}r/B"$Kzs*.`}/˞;uf?Qe1(%T*]?ͯ+rTfhX۔Ђwhp4Tt^GE[4aEJTeE bcuܭ%P5>b!Q8:V@7m `{Z:6R)7ס  oI$n3 Bs'>0sqwmKA[;x;@ ɸ*dˑ6 |{υWalRHj+(!S+@G)#<(90x-'0&4ܚN1GWR5=v zb%^uX7HRfK0i;/9L'3K+yFECWw?ѭ.XmuT~x)=[ =r}A'GAK1cMԫ3 J\YHX;k+c}JGكHWw wh(=al{R lѴۧڍ1!}ztaָ:7o80J;Nh@vǟ3ۙHk/]jEZP|#C0=.%BLFVѲ[E4)9,.K VSW gDjTm׹3gfaAƍ ֩3j=fvh9mkHwГTV=oy^FWx5ft'l$~()UsM(v 7\`[σ;P ,S,A LNjBѶ;>B urc|U$1g {5 t7 [KkΎP.#|^i PVN{Ԟ%CiS]>.|DB 5a֟0 YJV σ){lcH^ɂ8Z8py%X$hX]Crb3v^&vlD_U;i;  ;,gxmId OQv=o IĚ,Nt Z1%)֯ '3pjvi;"bQq4HOH2 9ưd$+ :9 8ϕ5ޏ+/ŽGAa1YNvdVDS6nvIm150\ME{BnLRI.H-:%}6y  )z^_;AOxL\VGUL*c Pk GCLgh0.O1sZJ&+Y)F`3ƟJlSX'Rv=S"#ϓ7k6P|ٝz>d[^| kV_ȟrnxHTؙ$~(_ Mz2/_, >1`F:bmd='I" $~7ao鰶hBVY[19%%[p%D@]-:]cdd7Qo=4%: ou,%- Y Yx+҄VYl8H |hR;Β~nWI@maVˣC? s4s n.ź'+&v8c>U"[!sjC;e k#̹GяGV?lcnءSp=d2e2dV5 l ]?T Z^ӛ}es oR a|-hQ6+JBQ) 9 ermoE&kf rqBw*Â>"egLXtu`rJHhqen=t 4}%IQN~{/Nu6a|*߆ͶjۚF{"Ij`oWD9Mи nȡ _Q-\(A]CBQ6}mT s&=ÏC2JM!9-=Ϫ0dS{pmc9Dd쯌ɄnőRQd+89f$.@S,8cxkIΉ$<L<ۡeml|DN@d[h_JS4#^%s0o8ESXv(黎g[dN?GU"Ysc Jb@""Mܨ1ұt Ch]Sڨ,;m>wT~Ym`Hރg1I|?~L<:z31ݻLӛϋ@ Ak=]E{J.2\ImQR_;V, mX9A^~˵zUn锤?FܼHp)uJݒ$ QkPe`Up1Q ( kՇ U*[;:Sx(L#Ja_ul4}* Gߍ0 |~0瑈YE{=K(<@zGgmqb==:XwZYaD%jmOKLs5bnmt|'Bb0ZmKHEUt[gtQ)*xnƯ5JIKvβ%3ZS)RS`1JU.g_L)J*K'vK|~>dNr64N͹,Lr6cE!Қ%R@q2@M^T rl-4}8<ބVun0?8Oʇidj~/sMvxo%A'@!|؉yƞ5Ȓʧ~1!_Db!(3;>qll/JcxM\h./wܒţ~/@Ʋ?&lF:_%C{qBXm.^CQ1ѼxIggfS)d}^@R7Xܖ$ OLQլ/Ϩ2ʾ`SarޤP'Z^:zq%<"0gߧҮ˾SVjl~;$\seٚ{=t\=BrB6hvd2@p<M9!q[[\SڐĻL~!&?[` KCasIz޸(/H$1wKES3B#G maĀ>ά dŋ>vo- Ml$ p<۫ C*~Em NxJ_%bu,Sg90.H k=Hu9G`}sP\sv8D1 P8HJ(:z},#E'7$Mc"@mG*a( D O~а=hcdQr0(d5Gbs;+c;ki&ṗ=̯D%N=ON ]4|#גHF)#c%gDTP= [6Yκis_Ot/> 5ᲬfQI囷Rpamhte-K|-֫=ZLv.%5A== B`/)fMb\^hJ{pDݶmځRH{:(=GWugA{%S{YW&c{:HUq@3Нj>it]͐"Bt0 S=[qo?)TS>䭲b ZϹD;҆a4#/*M-B]KEdxQI(BiFc5Ȯ@s+N__i;laSX> u# xAx\I?hߞ0A"0,۸V#}[$c֥%jF g#̢Ek -뀝)JxQ+%BqnDwetT'$=3isJlRb#Us+9)7{D <{R=S2[5V#\.:RD]AL}&>!=v9ՒnNяhT_oCZY vFu#~/tf}L[J;NHvy!Fq7IDzpbeW>WG9DlNE% f/EC6qA/A֗RΓkn;ʜ?:EPI@N>zui~??ͣO*{edB'h$շ`ᕆU ^Q;// @nrsf#;ND s'LNo3øZNIߦ:: ܷ.깱)j̝X8jO_N[+K=(4GAVj=[2L>Yl9ZȲiRVD Cx[9 5NViMaޖytUj|q¡ )d& ܷ<rUk`&1vPs3EdYXthAFu-|ٜƵG BanvggK-0!_gyv-LH1ak[0WMPZ\j͜m:_Z̍q=뉡@G{f2DP'!"''cзs:R  3*O׸]D鲶q8mCjL=HvCQ5E6/%yt!H27D'Y'W-UO$J{jfZ1vg,!UH_%G~6i6Ɂ1:Øͱ>连^>KOC4jL6z,,|@v 9;`9F j}gQXI6 w G6EN)X9XHW?\-Gǟ-5@ҏ2,.!׵m}dC% w{Ǒ k 9K^G#NPjC?t-UĂv pˡyÊ>>2m&&j4 A'Z Dյǒ(ht."r::H2=RW#4x#^D[|DmMI90᫉; \ )vښ7bwds a^1kCxEH>ikl |r)h{ 2qF 6:@0pxub/8X\bJwo#5b7ro:;F(hԕ@$\D"gp@cDa\ۥ%gߩ\q12cy?(=(iyh:e%W^ۻ^v̛֬_#uxEfﴥoɯx(Kc-G4rqH:d{{!Kؾ\ĤSiq2n`nJg&eҪW>B%o2gOpEPÐRhC7-vQ<۳M^}NJԮ|wojI57_:ǥTY!K 5ɮO.dCj)jdۓ80~,]13p0) d b[ >46\ JλKW=Cx8aʭFnAP]\szsgHNXF6"g +&%a%g^@ p_ 삠QCT W"iS!xc,MŐxƶ&$73Hw`2* A *6f}csZ vxH;˷MLܰtuvEvY8%4+w[AF5G;y^<iXMǼ/0hحȿxu>$j?^O99(7Ȉ\PL.0ފ5AW(( mn<+0#>LnN}#X b@ľ(mz }o'],dQUE0?6fˠ6Lu.} KfV8aF(Aqn(`;OxґZoQۻ4W4v`G63 a}>Bijg>px`xX@80?ԛ]D^?&Cí@F fL{u}WG(Uaѷ^>Wr-K41pa&}~8蟊ODr_%beR215,ouy ΚxL[ ^*rFV=-n8OJ`Vv2@dLKd6ȭ2o>Y>t?ܱ ]!~v{&z1q/KCF7*F Y!50ٿ، U1-䞰_XmWO)}1)S DP#oKXIz_1!C9GV/5 mkuwgҭu O?|-՘s J@X]# wU<# v;\3_NĖraKMc5DG5ۉ7I-NQ<*ZIE)> +d i$V }w~]*VʱMPXO LI J:6l5~ uy0T| *^s%f6q*T"Eprt;g)y1 <%^s={2ga$΍#mGpb_!Dg/vs2P;7&h*@@"#,Ȣ9L6;c'n13y.\'s]9fh)Na HLY\.ʺ9OUMPM3+cL ةKmΚܢR|uA:-IE) ނs8i-Ҽ.ŽKǗM>(TYhPMCQovĽ/e0WXwēgN~,5JQcg}I!a4>jϩ]DĄ!b2~.C%U z[7 Ę=ғG^C+r MJޔWfT; V+vWܬTTeiAs2J#aϊO/T!GTfƞ0y$Cmxw9Q!]03EMaRm-eQkqC*-?@YC^e8e _}x=4U6};rTV2ͣ}@iBVA\ b4%ȴ̈́3[n+[I?=ao%4 YyX){U{IQPxoEaI+Q~3#%mؐeu.ĿylJVH:#\R# 꽐$4HR clZT}gG`1hqE Z9݃љJjogҌO0ՉS,D\Z,Awbr%Ml.FfK٫ЇMC&-_ݤ1gs8//F>Uɮb4;a)?$SBU޿@ zajȍ׭6yeɁ:7 2hmx|qʖ؈ 6["EɁcMyORN 4a:5*AV5Igdr^3ꍻ?*l|oepXQ,SlxRf hXwpܔvZ^,JXx"p+Ʈ7ǿl(yq}EboUۈv%ݎ(*&X<%a%П ] I#ϡ6D2_5Ÿu4c /><h/W$ ^f\~ɛ<>m,?0ȡ3CE*ƙM iܯZxbuA] #Fj *v1iĒmv{:]p.tbM5%AQ |geXho^{7N QyH!,+^r)7`-SQ:sKwhN8{LQo@o͛.4@6k-}GEn}4!m{}Pީv A}ҸiNtt֭}6Buu{M#z/w@tzN>J՞lF 3"x%o8~nhΔuSSԿ!cWgBYmك9݌̫4WV- ɀEyt?[/ */r<`ik tQUq+ȂDu!Q+ȜBy4K)ڈ0 $YIy'vٓQLFTWy6~E6G)L[bdzn=Ȋ0Ck|'}Z1t$LEwa0I Ǻ+|1#O}Pt=~QWMI/eW6+sln0m8"NǔtfX'3y43#f 5E̎&`0(ySk~\vZa'HsJnK-x}GJv N+{0|*[ zu>vw w,/AtXQ@75#̘1-6M7>i,N=Wcl 5ߧD(&[K> I`\P_U'[Vf}$I5™,]:hUwnX6ei` س ^t1J(_$kFqFtTj(˖pf(R sd;tY0k0 -]wLDq1:=<7Me%5r-K/A-{ خ,al@+Bu V* e2_}p%Rp=X>{ǹ4)2lQ~YЏ\.@m'n\:~T8>x"X2D@6_Y,.\JaU6OXw+dzȔAL&,|xFYF_Y 9ҟe ȗc 3ԭX)tP$2 F+7ԧQ (ɷmD; N V]~D4,xݞuaKc M68AUz6 d#g,鬡: =~4v"d=`"^P7A-qdH]˘OuMK;) ɸ43@gxۋ8{+/pt~SՔIwS(1j(Ic4D7϶΍oNu#7 sy)J_Թ}?v!C ip,]l*} HXn̪U~yƁN㬯3]E$=9KA14r>#Fo`s11!:`dtu(QԪdpQOton6=k82pciH"l-PO|Ex`_.ME[u.+-p,r[Y.ѝbiIЇh9YPnGb^nENbT^n_Eh1O,E^ \eƴYYXL=)/pEL #6$SH6ܚO_ 76(B' ͵C'b<>aegyJ*W{}gPG#ג3̉3@NF>0zd 0u8R] 4AM̭o0N΍1+s%fAa[t~F*PYPcٷ{)]"̑B[#сwU'zgKF+#uVf]a* ̴Ϊf2Ц$H ^;>Ø X=sil`a*VL!H£ȉ7\:~{{Wg~@oJwR q*נ5HH _a{Y.? w\ Y$̼"3{TB%1#`?\W00P&a,:U]+u >nH% 䕂ˍ(@y2plj!qAץUO V%nJyPqlok]DsPNJkݳJLIր=yEea"C+hFxuE@QTf@)-|$V_%+wm#Yscܷr\@ŕ2q ŸP/r]Ww3'Ƽ$צY{~_Xe!Cl>)r@ٚA#^?F}I ynZ%;B `ژV:+lzlDk6bz,欐bΟ&R /ؼEM I:lO¢`1]y+ ӀNjؿrrvQUcIT"q1$[m۩p`kz+cjV.[$uoMl0Rnuf/$׷.V G5*@{56@v߈Y|Xi޲wǜH6)n>8Up*.TsySe0C2a[OLq?2O[a &MUUG 6TaT˲ky Oާ.`慕Cp]tlޖ&* vc[53̎"lȧoP}5& ƃVFkH뛷*dpAbΨK0nS MPrmhgosuLCC'UsyX;73Nχo HOc krr^aEӤx.D/Zy9rɗvvˑ9:AD䈫PY'_8Uਸ਼.`.'d8+>K Dn u1ĭG7Zv#zP6B cy!aɼÛQ%3}[}]W֖݃r F/X[FLĬV At۠ +[T.Cxwtx< cCPhJrLPlsίWՃ&$U#&3x8Q6pFZ}kϯ6.0.M,7 {k0֙yܗb{ϣX4-tiA4/5>i E9y;Vq /4lnqGrϸҍNZ-%=nNpY3܂8'̥ }7EAX5|Τ%D:t*Aj]Q:?9TW$!i[6s(}PX`t啅u\6jJ 9㌘^=gCƌΡFK Dh()_Qq]o$a.]|ݦJҒNCqq.$&uߖc/w tZc,E` LY SSg6Jy k&8 MM\[h%6kxFnP{Y͌o#ߞ4r$re-`m>tN}|(S mSaE0WBm a\'I֋䤪0IR;~SSXyj|JQXn>sv}2۞(1|3qL1 j 3H󼊺f;%9yIdzi!sP&Tܿ_^~娺>}-\bYv{C!$Q gFHߌ)=tOu24:IjNzn༱L.\i2_8h^AuO-ǢS0b.d|y |H2˸T>poibw V8޷hW}^8˄T\(']U@ ]QW{ .Ƭxi2y؍Y<4fJ?izԒ*~p=@\H6|vrym-qI>ĭO-.y27-L&oAxm4(_B7d`ROpoYvjŽ$ !p=(Q9L;A 5LaH$%/,# 8Wo\,2OG:Z1[\6 CS{1YR-*pïELfs1B-2)6fg+x UqjmP,;YTz yR1VBS * ~[N$Hs⭍o81e8@SLp`S#~ei>Yql0HbOq16SPoԐ ?`ٳgˡ30e:$!Oun D&*gIP'IO&$N^6oG& xZ6bAvk!s/\1!+ \U&rj$Js})mU3")?6sp),p [;r .ԋa{ +˜bEFc8̋GŚ[yA`R0;<pr%|SG+V^[5wm25tA~EOCank\ *,V|X%|yjCh Nbm[UuuZQ8}|i׆P~ w!Hg߷&;puEK%;nJyStqn)M ޅGyCǻB'  /(O/pC¾FؖQRL^ucҠFމYT5Oܰc'Є RYXk(8G.>3ڪv,Q]E5c]l`ͷi3۴wZ75۶";[-IŎxӒ#VRܙ"w;jGeRtVA #qnYXrT e!m6Pų,$m82䴭!h۴,AsHJ~eoveq,q&-.U12Z&mfwK+*CL/Cǚ@psf%oD 1?ߚcJ#Ӭd1'L^[Tƌc! Ʉ%[W2ch4lI|XS]?3,5|]DeZ~8 oT>1=Ao}<&ȿ!1 6a%\8ϵOe(YM]67@o-Wq0IgfWMVH:O]UɁx}y{ߠN}%bsԡ[mu#d= .UK"H:Oq뾥='4<'AC`sѕ4+0kC*t7g}]@WK~z*9UˠK EMtkGD)gXqw mxS2kMUN k֠PYlcm/BQbWr\Roa z 21ƚwa}֯0 Qkw=oN's"c:&$0AQ:e: Ծ4.4HyISFBSn*/r2/B\hH%! oO"҄eQZoI%pgDz"Od}uT:J5{ۆyշD,9Su \y{B`t].J:TVDb,?e=d]fS +G :zIY $c 8)@vxu4mn)AKkT#o1g&@׏f tV^ȷ99E5ShC#D~00O2wEԴ%߭^jX^O+"ܫ v(--M?Չ##R0v<`I+[,{=Yq!5߶Ip0vaӗk21F{(oGAPBv򍚹[f$CޯE( ;) meRia͖2 9xV U[M"#Yg1H5ѥ$\|LY Sˍ~{8%ˉPM *F@rpӜ|^G_艣Rik/չAKc>.:jn?JzаTߩ,Ύhݚm}ՆΓ@3BL3ysVScq q$68C׬<"Ax{y<ǭ7x?o=ڒjN6 Zތ^5O؀i3'7#W ΥĘ2T_ǖxߙ(=X[z^Du"NfuӍgf|>A9uxݓ -.e!~Pq}߻;^v?R8`[sI!/}@Hb@tOQbOoǯ!>*Ar/@W;` T4K[nEL he.|7F/9Ȥ]MD9ЂX TJLD xăc\rzk)8/u9v5* є̤j+D`&}cX t7zvbTE҂J>pZ_v"a鍔[`X#P+$Ǥm\8?g]yC.7z*9 Nj.^zx><.QE!02pQu;\>14jF 4}`lU$N +rK"T<ҙC `Wg3Y ;L CD`T+%#G ժk{aVJl2AcO/J\T*v|ofz8Vh'4c// 8LO J✋xJݓՖF5NebiIky>SA$=R4C ^5>֡@XcJX g &ݫ94]c>C bha4Vl對vג҆$}99/J9x4.uS,E}`Yl{Iz}= N*j D')1I편#j>RBNջ0\$3ٌ5O]{[[ yO)0*_ |bXk+VB aVR? :6YCo˳ilcdKDUkLPK%vyW;fae▁g̋^Apr6"]=e)@;?,"9&A㏷4P= `M A~EL (x?uz 4&S%nAUn)h!iԎw)J֏ٻw6+n, *TSPcqI\ =<9Ѯ'L,bl/]s3*^),ٿt7;#Zd^4ai/Ld=,tYTޯ {Thִq8ǐq<%m`־*jǪO.Őu(ʱ ogl(_U΍sncb8iȌ-2L/솑M~BxSs'U#'(b%Z,0˨s?py {ҵpn,WsjҲ!<Yz?Wpҧ 'mlja ;>FQPI򁻯jSq<"S3(Ļae􂄴#TVnp5-&3r['$ۼ̪ ҵ (V&BeK荲l_AC|FgM$|HG$D3)6 j…mR_.H='l?BN/inȽaJ5;dր Z=4 dj~$Hc YXT ҅*fF0` :AWȄ[Pű2.P)7ʍwP9btDzܚt>ߛp]2OS3cbX&87KWZuٷҺX (?Pf;z/2.MXͩ3AXl7;R^= J=Q#f}TRXܒz;H4 .Gn(T;;qHPBµX\PXFKi2hg+4Q37t 3kpuC VdO[tO0G'%KIe]FPbBJWs So$zl$ON&@$ .N*_gk?U³& <7co3 #FtcA &uӘf ]64Kǝ4BKk60ͯyACm 忣Dlr;XNՇBZa(>vͤD!Z14te80 Kq!29Bbe'˝+B*{$s깭R`;TQ4սREЇhD_Dv5fLy~xi14 ތWb@wЀ꟢,v8=w;qշeȎB:׃v MhbdFHXg| F kS{{VNzqkt~ʽwq}jfX"  \cu+5E(tL@ j)#8Fph (Z$]q˘>{'?P J7',3n}ڞ*gc|7((Σ{h$:#cn}G*qfJء,kk/e7Nd^Q$#ݤcf>O H6ІpzǶCε4` dX@C_0#b1 O=8X(Fh 8&WXTvċA/2*-h?"ѧKu$7l"]$kTFZCB؀  nK X`DDVb31nJZ 0Ձsu:Ö1Ui40҅S SijѵG9  ռ `UeIob ]eG ^5I6VHtة॑@ qp4صg@d$ѦO}4l /ASkX8ȴmFrM˕7agCx8Ԅٹ$w_zI6IdD(]7TJረv$ *T G혹wp&]JpAb~v5v_QlM@c ˧bC20ԥ{)q}ld,Q : 9,*" Bx}+s36 D҅,6ZYq15i3_zpP[`BW1J7kn‡"C #B,K/`Ts>]G q5zHz5{?C?*;ixN1 ?礅f*iSͻ&/9M:8.Z6LR/HKp(zKOLA/xl!0Y1_=@5#۞<7ȼC㋾ {IUslbD%OyD=z-Ӭ^ bB:TC&fqT([>Ƅo_uy.!X10yU\Wnʪzl%H94;&7?FqE'EE~1ټad14Bwm0k X%{g 4eW~3orwp4"|#)J^7pIz:ф~=%Lށ7 e_Fc6lIܢe5X]eϳ~^ph{9\^Ab 򤇝@Wr)wykMl},(pem3=E oIF9 ؘMԾF ɶ}&-F*Z4Vw c'7LFUp='?!A>ШM:`)%`8$oq\YyVJd`-,$T -))=|фut6[~,!wirDfF36Zkv$vMAMbMx~Q*d,?]\$q6'q8n-3a7n:sB2c=헪3fџ=İ~c_lQ՛TN_0E54b' 3hnTho3~ª90QR|D4^\LR"r;%C[ $r4_iT`Y_JZ_a 2.{ixӘg񉩬?bjljN5Cľo{r"6Z?3$/6=-]o$5 )P⮥Ovn 8̢0/LZ񿋰"ђ( @C11澥rt8j_!^^b`&U5{bQ2Ud_/>v\n,L&^Jg33;]Z~mG7E zJ!kM-M.Cb䅦ov Ц(VMhpHeoࢪIx Ot:uj1i! Rps܊D?=0.TPL֗joGCQ |M7SD}'/ڹXlEIJk2Yؿ` ]σrb$'1m¢m/'\aݚu6wG>s2yk1̪L]8"J<2#V|@egVp&Ӵ.js!YPeUxQd-m@GIh?w~&pH ^,cu({f5ߌ ॿ]0Di.i $cף4NUlc;٨igtgxx#(Hx9tp apqߚǴw Cy6y!nFk8ÊyWlބT)fy$o#ck!EHd5/_0  3#k-kB`'la;jHiD~Wo/{Yq-kɘiŌs\EbxS[xXݩCWHKƆqC}A':ތա⥮ZwkUaQ:=GIb uhaA#+ե?'>JqܤW"E|qp7X!u/BNedL xnoрPђ+MϲW u ʍ^^]rUG[^G|"&h}UHSI iy3wFh~Tkg1R?͵E,qM `1op1!|t{7w ㆙s}92B,?@ʍELX=uBU3EPotcr!$:d~4?Kc02d3LzaX3oJH=Oʧwcq:0:$jkԄl@ 8;o瞪>Q Viӭ M`y[TVCt[Rq@zF?gdo]S!Kq!m|K 84u1{ p[$1Z%:Ka" *͸.vh!uWKM*ͨ@;XLd窪eőH>P<*[-]J`I͇[T.yzJJ73ҘDN vE+ҦL?)=YYa4)o<yUC\YP:VgXɯtUr&hf-PnVh7H|Ӏlm ՙQ?vK\Ƶl8'}@2;`eIKWBLp ƀhvd8S}7 Qr;WF8Tϐ7R7M3/cG#N|s#‘q?%n\F'>)JUo_>ZR7QmcFUNlEqx`JaͷoIH:h@A*c2uv5ex#% &^osV&~8A;q;.׳!ȶs@pr}ז*Q$ߖSȕAڔGT&* H;x*^P0R0E E_RStS+g o\`RaS`,ۘn0ZYyn99ɀ)VˆNYiLY,54cr8e.K`{@r(]7AU`0"΅.ۮ3w:_Z.uǙH*=%氩'C{=g6QJ:Xu 0hmKLCN~?[Qhe!kvsʈjJP#q9t]Hޢv4*_l55i{-/GPbIZpH7|#0pb;Wm8u}AƲ1*VVmЎw[,NL'raDyS~q*Ns3u[5~cpX\M'fՕ3c?c`0eff_똣OGH36V@\JLnRMRW70N+ӁȮ,KQ?bGA_(eKzEP f]}kJ]M>:׆\M#]Gf|Nd̽;ꂢ61/_gq_m9$Z|_4t` 86DO #I t925|XND2 Ĺ`%Q ts)J c&|͆&#~PBVjG,O{ ZFy$obI'jArPW`ㄿWq*\₮n"}1MdѪ59dT&uD Y9Gj[5]īGǒS!}HJϋIضf8ihz|DGQ}h=ܚ$ S T8 c:-Eq)x63p$BȦH=yL)M`D}=-Hї~E;l W?d*2)wp ]zyꆡ@oq]$$QV]f | aUdco6~he߄4gV>1HuHYowldL!(N$ac ;ܬU>g-v=*,>cO7:Cw0a S;m|O>b)86"MzTrWP?rK 3C Y> nk -F7 ȳ 2Ή{i~@5Rf9(2ߤ<:JU]HMiσR2w=YT޼v[TL)z& lzd5רoޙ9gH;]3A%`/)],8\^&]Mٴ/6ڢ ?y  V24_Ѓn񧟦=G/<7$YzE|H;Kv_qk2/' j jm3o҇6 ({Ct#,'^8e% h1ܣd7\:ϵy{ua"߂RJa(w9Ҧ.o2Q:g7G,vC1WtU`'Z? ltk*j8fT!b/H~7Y+~VnBfWQO[rH"7nЂKx{h̀1!o[{PPIM:ƺvI!W*$A{8d/=MQ4*ʹC'U8*g{ e]"X3DZ? u~n2%L~1uR4Ä_N{7NrB6tSZ1RcN*%x$"qvC7sьmK 7A:o1lZzjS?bٴ*:N=gntϷ (x:FIR \_go ?Y:#F{- F a2bAL>u|bT5hɽp&;}P@^ʳEkM;B\Cm\@;xjrkaA->lɅHzI4y^ο!@C? pߚ+qn%p]T8dm&f#$,m&Qc ħ6@3kD|a)'?[ %Mp7BFսx\lƞ e)?Xuvi_xe/Ra048%;~+9 [V` @um6m{܈]68.gYr7ِth ̼ N5|JɯK=-zaMRVIsGNǛs|866UC7Q%ʿ9*AG4M0ԟweTiMڦn19z_d~ۧdRzVkv1$x_(~^Ms}TG\&  'ה 'mP"x Gʴ!om ˪(${==B޸NRICTNQnc*`$<"Psv̑ݺsE 5 (D‰_=j-& ;gd`r$(GG1niV8 (FOlx9d{նĝa]nws歹ޡ1 bfC La.oy+Q$/x_8y"PzfPƌyƤJ>Tݲ'#.[J3 lS]~Ee@]7U榌`֭JN]mPh-]N,5[^19h}3̖%:wl?é5c}U0#2O"Ar - رsXJw)1Ua*xV_iVE:|ue&F 6iK/LqhE9|xO"DJ,aMPWsx󒃄/En6 "~wgN{NfH7r@ѻUG2=C©$E$dK5:árHuJمۋC)Q V̞5*)B^uЏR]\{Ws̓dbTWrt2 qUAab5W xxn!nA@_P]uF,ܐWk+.CD.s їфprw Md3r UcdAr[$ċ"[uLA8O~6"{3Cnh7rE:c94JA2:́S19>D!'p}7 ,](l!"j ǖ y[2;"v)?K]ϦmkIuğei.V<in,,o S-3! L,`ɢñ*Nuʴ.w&rڶ/#^5HvL2 ^Hn.r|/៌,l~O$-h$X,[ny;2:..H3ƟTwzX~k)n#p|L䤛.:pGJ2^L2SɸaIAfc.BkF޹7L ~ /~ӧh%}5.4fdNY4-^f.?HЀXS?~nVdnƀ{+˟Ԓ IBM"? ~p Vʊ70B;y8})/̺$ry_Ei`ֱA*)ʎ{XuRB-̵ !܋|+Ts1⣍f)X/mx`eO;M%_2Ï߰k"@'rlP&wsȀ qV( M3fFmKA0P9ٍ,+4ʅۯU{f$h\ON4quijْd~:6'̥3X 祌'a=Cn*.†2  }"LjI1 f_Zxq(},y{oN_'$JE>ٖ5:| AfQOMms@}9zz!BDlX-+Mz&kIWSa:e\L`:30ljmW9Ig߯7 bvj!BuQ. uK5c&|(*S=^γBQ!7n4tOfJJ|Gh=]˪r]w&:%!SHgs^#LȆ󰣪n ޅ#BЄEֵ;r&m^z:[]p)H'*Eny.ҎN.T9mV1G(pK)7HnTe1R9R )UHw&')Qa(H'k>{%bm6W*,o,1߰&DAK)S=SRAzםR0[ԏlyHAxďHAjwdIمnOXvпC]2&eK=Fy3#1, YCfkY֯{MDUYEJYxƄd\PhLȽǀ Q&v{HQɢTkآcS7ʬA-deajk! qorN]!L 93 :i5Hd *ȁŷVXևnw;Y('J5,EדC#@=*=g^'G8QēuE^*$6kX6K;!R_jk$QR ;dvVoդAAfvƔÏjMGi_k`̍6G ֑[ɗkӌGm&WGj͏B:QrsY" |0ts=x ǶSj*ܚ$G` GϹhI6#[-OjL\*y}"e!j|5nB*6F>+xmFڴ):EO<caOҜldF+a]'ʊl¢KF1O .5UZtU]71*v3g&2Vܾg0" Iph#i ]^0g6T c VK#m+8ޝ}WsJF5%Ot$3D`R%q &R,p&YX nI_y,ٵkTzS$뙕',Rlei2Ŵ%!Mc 1#%BߢP=Hw|Q4g qDpIFiSA0~>A^ F~ hj@`9Ǎ[3c2\ 'ГnL\Vkϗr%?,6R<J_ҩ6?ѰBAz7S]r$c?4x>/K2EQ^[&^fȗuqkЧvϨD%\Z=KCr+pB,)uULM 7N̦ zDI*5jHzsݷOVga؛&!ۅ[ejFI\]wk釮ôi Z>DSB^͐c}>>5rT VH@h=tosFxYP[7c:`'m,/M'F9pgit .+Ոc-T$=@0/&26rbyX5;LE1>awֱk`=T/z8n'n} WI|rj4r]TDST?%҇02 !oPʇ1{\7(Pi+u-=u^*e!<ձwMUna) 3"2r8ڽFv'm*s#AJ4 c5cuD}efQc>qf? p,?>g֦XGȏazagI!y|u=1cw'bIJrD-&MOR{+ht5![qv|њ_{VC.Ű- r` n/RF-I£3B6k0&Oka1 ],L @)p>nsJnc,l^\c?j"޵#ny\MagNQ,_C6-fD@X~oM=+}5\q&̙EKQF[#:M7%lW%X34%}[ĐH*)s;YrF(R4A[F>+% Vx\U: ;y^?;{Z}宣LÙ:DS1JX4Itcjx,NEfݴ* leY`Ɣ ĶTF%E.xoNW֬&xݡ |מ 9xt;Is_/Ѧ$0SK8eY n}Ďhb*w[4Cq+򐱇@=c+RS#IFҬgzȷ >T'a S\ù뮲.ϜZ|ZQew谩$F+H nIhf&#fNLT;7&.aMOt/|fđ7!S|(#j o1_\p1Ed5[4 &ח@.8ɷ&%K Ȍώ^ n=(Vq$DdkoIT@ˤj+NfP@<xXψSxj\B8 5$`}7)1?`nˇ KsltJJYptKlQ #kѣ>zuT]nᔹaRjƲު$%_"kzXnmh (Pm05zTuPg(Uҷ0VJ}Le/@/Rl?)N!ϕz#jrыgRJ.s"9|s]pxۂ" zw2mNnJZj( *q]-]M}eU=B+i.̏V$[OY yi1R˭ yE WN%?OfB{\Pn;wk`Q0 dA.T[P]< Oֆ1=aE@GpΌ;E(I#8f/{ϻ}vxd^lh/j~: 46>k{~^N>ۄPY3r׿iq *fE+P ^ԍ1_No!U?-nd,8O!$u+"bB'VTɺe skX2u2ꍗaHd'8, C/N2! ~˃R!u~Ѱ:[UXŬ5e0Ë́+Ő#HG n-7oeW^:dEh—{)8"GѠ;j m4W>躥T>wN89f72ENu8\T<-f\b%E6KjOmtż,-rG_[#=\Ul"blw/(1'sB3B~axIO7|a h,&ci:!`0ym( ,(Co\^[AQHN= y橺즐0!E2s4ozMn9W23RTUjWxٟa_67 ~.׼wN;4:lvUɧ>XHѳN|$5)Ns!< qF?-"n5SgGu|6ˌy[4/(\e\b X:Sk\fv\uUO tl?NE^'$2)X>q(@+\q-fQ.cq"۠C{jyif-sq@{\>8KW_r㶺:ӂ8tQu*Ngh;!HXg9/JtvO:kV?ʼ3&M|EW: ؗW6 7K9?a ,Fab J- Wi!{`LR|@cs~ j-悰hc˹*ϼa@zh8zMah@ -gyyC"/'3|_nٔ-aYWKגfNhf:ŷ[[VT4'|Mޜéfv\ʵmn7X/XT|&#u`w ē'o3Oe~0XH,tb #˝s[n- U?O`àFm,ƩUբ}o>J<:7m NBCަc&x6 Of 2$kF#71#O 3de%bLAH6M$ ޶{ s"TL2AK7 Q]&Nqm|V9nw[!.-m퐧}0?[Re=&lNapjۊDZ$F\ǮӇ-UA 5{xfaۻ'f%Gq"}Y˕5Qu2zF5QJEy3\#הHf@fxȆV ׷1cjlȁ:@n~`n zq>JFqt8n(sVb2B(A:1$OUfFTM:%Q0e-j-8k4lx0*HNP7:UیGu;0]Ȋl*Y:⎎u]t֌Ɍ"J)GEIn6c#Ff™";S^ ,|(u-\mp2#T ]R@m!;^/մṲSk'B\ED ]{.#j ʶ)DvQs7#&|+psլm|kN J'fWug9$:0<p8ЃOu Wn8\-(㫥JON%!86N`@ Ƅ=x+i~*{he00@`ʮ%d v*6HdK?gKv4xb>Ҵ9!V㮑;P/%J/*;v1Pa}GBYV,qJٛs.@H)%$ƾtjPWP$$9pJe% @ -WyFZʟќV\ySB=pu bD:TMnY@mBG#d sxH#V\p*cr-8hKlT3{oM bu8Oj{͊u¬~1dG ACv\ZΪqLogSBn{^>!fj^{Ȕ ]57د0ߏ΀6UٰI/Wy_ $ >6-"Yx["+a uǓ\π(`H9l<5jB會iAV;D:P`/NjY)=I޿G+Gv];R*aP-x+8,J`uVg~׶&BrԎH.^C},zMA X'Fwȍ[b;g0ҦxTlժ C+@u/5ͼ?\#͗v>AuTslgDuPø:(3!v ry!UEM,*E[xDR60%/y[̀j_q|fbGe /w#UX')Vǧܑ>9Pvd'|ϟcz6)AƁ$eyT:4+7VD~LJROTȻys5<+y/KNf V.7W IrJn fptNT뱊1][ {u^Gʰ/kXo2L:A Ԣ;Y'q/1UQ+!:4u_֌ w6+-v E"biCS6ܤփo"O03նy& A_jwM \H~PM!.<,'ѻ+]0e@nw83*~KCW/&WcGW L}tcMU  }:27=gB;g96k}&H(Qa4g7 :GR|41sKzx㟣CyRU^c`k+A1Jt`+nw%8x9SfyBKvYA],~/?8\rk=fCx69=Z#4툠Q!1_|t8Cp>.B{5{GjQn& !J>tSdmMd"~A?L=<~WJt uq|5W _ Dz0x_x][Q*O @BhT.f Pe`ԟNM <Ƭ{;#8ai%F .z,;h+8S@rU)n8_0~}=6fV-~4V|8m ǰw'Pjۊx 7Tg FlJ(xtԼH_-5pXیIigU U)O^č8Ҽi8k'ZֻR4=v->?"SHt&l~|(&1ST`r[C=r~7}'%dvKEF}Y ,&KV"s۫\%s%A!v6}E5mu,qҹI9."_æ KH)1hv0޺zT 2qe? =3]*< @wV16ZإE@kQږ7P|" O.qyVA5[PA+/2LN ^J"WUOvLI>!~1d.M.V$EL4K"JWͲ(y̖! HNgX` 8g869G*d[%4<vSH MKY*_>9ܸ#~M|ODo7{ '=qT<#Z~%AO!"*~b8LUJ!!e.)cgCي]qD?^M} "(| Sz )(1l= +tNڄry#C-s,2 :A;АRWD2+S@ϧ}riM=a#@(}:N_d%-QX%m`n)jrYW8 nrOY?]cxQ4˕|iBZ1! kzuƞU@I~[<dma:b(~ͫzmt \k1.CNbe{ɵLN]4j!;rXT7""J`.<'cהQߎ!Ǟ҂ϬvAp++ϟBT{UbU!<ƅI~>e$6AF9G#f FH7u>zUYeȭj.5fSP甛g1Wg5BлU YeX,cƒ,Bԣ5#̑eWNd UD[{Ou٩n+e<87}ݣB0JV}̓w8 Jqȯ-:>FWP?/~T1%Z ?J#2TuxP )NR(K92DW{w%Dh>xwaݬ#'J)!V7wqČE"8dX]<8& JT|?x " ZeS67{ߑevCjޢHdGC0M&. VNgU@m!fM\r^mfs zfU a6Jء;Oi8>'i?Lgg|3U\#JK,E+S="1/~_F^.Vu\i]5TJI'W>ЍR߶.O"guVD9Z7suB聖Sctzsn)}4ڦ :s<\eVG|G ̡HONkVu=X'Uz?N<5v6JsFEs}Ϩ~ɛ0.o}J Lv(~+pŌ]}3;el27n<]F)ܼȱ124J輼@H&1x>֣7O YMqJ3ߏ蕔)ũA"1ln#3dQf:  H$^Y&B[g l+%Tp3"OAAM;'ft}r'IP4)nXYfgf&+?,*``> "فv4-F~CB.0tK]kCu(@yqk܆qkxqRc,s.h'SmOĆ . v-xL CQwVp_6l1PHY :?VȷdwuC \OßZ7$Ity`I(U6V~n~^X\" HG<˦=^Z{Od”dmcYw?O;2NZ3BF/U.y~AU{ƅRZt-ߡlkٖW"1b?W+4Qf! L >}CI0"[1)۸NYH^#+aV|T0n2jV}J\ʈ  y$GaqRPEd{QH6䥨/0AJ1;'*]=Vq,Gj{@6, 945on3zQ[Ȧ˶x?2&VtY޴! &tH7ng 1rNvsy8rۢ@>|8÷|t`E5 [OyX+d#\b_춷8a $:3#=o4zܱ9P8n\J"<&y%ݳpS4rIujRburRK]WL?BZ+"*:pzb5b?;]4ǯ e{ܰM0RU͊h Pezu$(-2X X(f=gZ{tC9; Sxw+ ZbA*75TAԯ#Xi%;ןomXK[ EsX|nt CѴN0P ,5՚hޠٻOmWD~սbGNl\yRQrA'Xn eD}&>OPGΩ9z2$,9#g~p\@5~˔m A3,MVZ 3śБ +ӵ 1B,m|Aag_2JV) /Nxk s[~ >Bbz1dpsk]ң"Yh۽4BKNo Id!\%W]Ɯ1CYH&D>DŮtdҀyDrxFyC[ؒkQ I[LmZ҉C 4g$@ jh^20'3ca( H7ZT;v<t*hXl$}hGʷ n2e (R SU t嵩 XuZE͋(AXƄCGR'Ϫx:#Il T/21vɒrr8!~}T$ɗtY0N1l85#YcCt5WʫE-R <ڃm$vؙRg>U RC%20Um7&PNmy/ Vr"2@U|3:.lD5Mqט7MU5@(jU!D\g6m)͔)-muNuL7p|qyMggW4BW"۔|qf,*iA~*LB`A3X>$5pCu"ԏ-Xd\eJA\ ׯ\@X}ZCKq d&DWRyid$-\a6 nA!Uhb&5 lyU:)g=9IJahfb+-"QZh S1PO847&ύsmfDDC^,@C{[+8R[]2]%s)UA=5'CCذc9A T@/*7VWZYυu"V6&_DbA0r!^^$Qfy;[1Onmt`: u_)År}|ۈrjKLJ)<|h%EίNfOVf2_; kxOJeZ,'iAPu膁 u;ſ^P<D⚮IQ6h hNmYɬVϗ[Oˍ_  =w7.~zl'c1Tb'9^+I^j4;XѭR?% /e|@s_fZE7oƃcFx-(/Gv=!-<޾g8baJ(q8mKEdtv_K[1GCPcہ4Y\1MpZ7K|>H[Z2DHe3cTvjGN-e;u0c֠KymKOf:DyKg;x*SYJM; BysV (}rkeNnV JK{wWPڳX.g>󹧿 hYVXF#iCKGb90b#1 G_*C2:k$=Glh :  fB Ӆ%ڥz%vW7z_ĻrL'Q{rH ,XTv$cެP+{}5P$K)x+OqxG[EeZnߞ*`cX][;xVV!h`v-ڐ*R<{5ݴXx4&~h'NcE{X:kV rW+NU9c&-8|9]2ׄW ǎ= 4׀`TJ6@Wk$4CO*f3lڿlN-eIm'F2., ylJ1g 22$ tl}i)2orZ` (.CDY 1\GHKUt/xhCU tq {6=|?fi7}[9n,Q!^mg5"֩ඈ;-aFX&SͿaA V'Ӈn@t6V|%;GB'$5[R\Eȗ%Ջq8bo҄GVŖjb.K)H骷_@jasNz/ 2e!1͗! _T)Psu 1κTy~V ˲qjR/xzEfɈX{ Z,g y S<6®Q%$ a m)R0@#GpA;.DHkxB@b ( &+Z^ ߬_4aOO#_4Kvm=Un ^3R/;v_#n@Ǣ]j&%a`lz4!.Cpf6( ĦDKX*AB1ΣYz"qexAo3PwRҁ}w'j$ ғ5[(\*>c]<+$+RY̓,l Q{DZֲ^!ۡF]M61o!]yDsVlxk ySKESZFr Z$=T-Lu.^9~j2>=TQVni}bM̱[+68GZG̀L{F+uJuxBiyRfK9A~3 0U)UV^Х\Wb 2 SzT~DD2]X)EӉRJt]zMI.GT;e3~D~ʛ/!j9p Bv]JTćk01l l}#`sñY%`o> *B]١6hfn^}rf^5q-ϹZt CTW^hiJz氂\~ά*4&HpQU˫=M<~ "l5ٚeF闪t<|W?T%B{QoY/{2ְUQg#\7sz1Ai}Mc]E8un2 zkղGzSxV9C d(4:(_7<D{..ݥJO|YTY m u]\5fX߿ pC| #tSQԓ Ͷ^!鿴9,d0//S %FnνRa6.}shtnPJG3rx5\IR g?Q]|-|4-?/znZr~. Uwz@@O\"$%nIA9˿nb(\F⚶f42-HRZ=yRDZǶ񪶞 P0׃W|T" RY< b=mְ@r: h],3'ׅ.K/:l[ou$_ _{kmHZDuQԹCeNK/  ޕwMVOuk{Z2bMڥ mK\(ݮ䉸C:]uIQ ''b)B_wE b=4J!01Yg]!>bj^{"S&Aq*f'znˈʍgqB*.N-=Үxh'J5g]T[ o#fpZ8&i`1[Eƫe\)qȝ$.eNz/Zٖ fe}#uV#+(JkE-(SoNtl>{XwW6*JJ((|5dԞ&:J&V#za Y}ʎ&kk=נ7;q`vocG ʐh"G1xGȲMoDZ*۫2{v_L^-. ?^4XI M_z`8\5NAwĔ-FTn0I OMCtmܻs'gvdd?#Pmr'r=AI^AK (\F_){J!G6'h9)_<4^ɯфR`sG|X7s6# $Ҽ딺7axK75p\M Y@K>qHX/|16nG jWZ*{qgt ߿FPZW!;$TSS"6~*Eg^efoCg jvy3!eXb]}GόHxQ86nX∤a^10-YUk=SRڮHi03k>\@CٹeSo[GBɝSͣSz7U{ p ,NJ;"mؘN3YvkArR&aR4sKҞ+{I8xF Ǥצwe&i|RO!kr>l1FjTj=By2^~Ma(\gTEO2> _/SOv MuBSb_0~~&W8$04'Ṱz\+$CجSLv fLN@?@&jif鴗M|ii~vD7pp+ϘIL;Wg8JA&yNKɻn*ܪؓ:~Bp -3T㠝>i.q6GoA1 w)[w^7U ИEuF Ⱥr@)Pe% ĴdG!?"A=3}'@BjQcu]It;ܐt.A}_c͎{$6fOp18F[$Kxφ`#c+LX Dċ-ZT=ct/I v;0 n>Dnf!ۃ`[Tgy\Sle $7Ə3~.~Ϯ&bσe`,4!-Qr#}vWmyzÂWMD (]� MF^#Cη 5c|`́b?ԑU[ۇ.~ ۥ+*.. ~ܑU;<|~R^DLY\S jJwwvh^-Sr&&lͦ_#.Ŧd=0v:+$#0ZD4Z|N=@k ^Pig"Gř `!osO]byzGׅ}dMb8@5"؀&Fv?aNPmp$w)Ɣ&L Wi[Op&| ǷY5gGKX1&bU2ӵ CȢw"k.MBqb$|:q9@n9魉gܶ*>7Bxzp2@^0%Úˁ?cBF eɝEh +JX; e'UhzR5jyG^4"8/zNfCRQ&} Z_Q o_d՝o1CFB2)LVEXg$Z*zt$F:< H $_N4Aݐ.¿8WӶ&K+[j: S2vYGGJ;Ǩ͌970L$^R$uI+ ڵH^ٙ2 $`Bv鴥"oX 'j&^f;aZq$މ~o3e L_?sIr!W0uvlq/pkI̓wht̪S`e ~0Yj4RͰttv`V[jX0IF*ӇS=zKMKuvLG gxeEzORIEjrAQ a;aNfC- a OÝXu d˱u[d1=O>RE7EY0޴_(ˡMBqF^ W l9c }ι5OWw5S~rl G;`e[;4$Wt@f$%0+bHHTd 15$=v!ٝdB$Xz,Kgb}+t]you-cffZZ6} 0 .s 8uN A< 1E[j@1Ӷg]8جzYoL#PdrŶ'EX%xiiQ-9x8&-J"([xB봘7E?OéT80!0¯+!{non o=s,hi5.q;;@b)ϹS7ttm`Vcb4EBĤ>Ul}|:_5T&ązE15ɶ Qs|}ڎ~dcRW \M"cׅdf2t0&ѭacS.?] wraZ )*J +3,Lw+؟HVpT|d/^> ģ>ŖS#m\6e7=}yQ -+'|:PhDz5r=vi=U{d+pJ*ifH骚"q>]ADOaU&@"yA^%rD`ԞiuҗZ{9fAcۨSh$jr`W-lۚ`KFl b^wz$*y燇"rl8tq2D"LJCxkuoƴv 0RXw[bUdW#C/?[ Tk^z_^RjnoC8:%]x[YO授2|硪$=Z 0#G'*S~8\.ruBH}CD¿*d 9S D5:ޮ]&QZ#y6[ I4׫N{]& j0(POxSG 0SMSgg=[B1%Sֶ$[^ MQ 3u/|)|6d%"v&&+*LX#Ԗ]Sэ7 S Pչ(Ay-wOO%vP4Z7i?"D^Hel/{/)D+յ)Cbbɾ&V/y2~e+`I/w|VT*" PA++ShQ!55Tx3؄-`Rc?awhR#Q2..Siȧ^AWijm2Y]VTșI4LQGjbnض*ZWic0adˢeˉ-sWO!^D+1nɱ.59簼DGԙzx'3jRԈs*r%Gۣ%v!M!۩,έ|`mKW^L*6IH|<#fAnP-[*[r=2<Ϳ:hׯrU,.;*jGΈE esݑ~VK:$!'4RFSc&Sq!SY†F{S2/U; ,#12K3wbCgb4*j*k08 Nf;1yU|F2[RG~wEdY \ |#<·y*0A^1SYoϸ(I8dwCǹ~φة:Oa~dC;}O ER?Omleûy/_HL7Rq D"gES&aRm2-Qs3|@X nj ~bofD&!:|;$%9[9|Q~&Wp.x:tQrZ6g3!pY^Xux"\7>[>?-R+:~z]ϺZ,ĘXϓJ@f'|,xhCJ)&]r֥ 4u`rbh֓yX(Ȧ]u^&n+\Yfږ{D0p:;_|O =>K]Mϐ'6MJpB T⤪na_]Ta82@M Yq^VpJxAD5 MGS. G䝴y>B;V665IfwAxtD*ZB1B5n9ǠNXO|z;`D2z;V+g!ɹ5FzZRFc%(!5ݷm^VVd);/fx+Rߏ|:-wgcU3'MA0ɒEVQ}2n^:Ѝ#iKZM*o&:?^`$SWv԰ϊ@D䉢ؗd".t'^K %iӄ#w+{$+toSewH)V?^,Q@:#\^gԊtq6p3?ZldU"ZYqt`Jw3JE,_Lx#<.4,D qGa^Џ791zW2^e5>fy`ШMK5M[|+ٸ n~ڬ14=XN130 kF9 Bt xӅp*8edi;?!{7#ͿE\R*ݾ g˦Kh*JTri/$14%q0j-79Cd U"%{(KTQF6Et z z.~ߖ#@(wgTy¼e`[cԗ?@wڮ С]Q,[rjWwfor޵Z>_i? êURWwu5!< uޭ{۝k@vi>d'dugdYqi/foѢ*80v3 *&{a_Y6P}1Iu~f!ᨏ1ed:<)\n*4hE]t||Cfp, {Ž!俞p fm.hc%UQ96or@9ʬ=z"Ųv`됱U渾nm|=7/aah1|Iςcn҉DOZ Y$qh N|rS"1$<2rZ/nlAF)>(/)^,V2[%5E$ne_ٴ1*ֿqJD@}uWBs(pCؒzsд!9Kse" B#25'?k;ga-:Kt>K2]ᙳ޹#AM>Lb$[\4[]s⁘\Tn˲ODwN.ejLbz=[󄶞 fg;s{٠m#7kv6j *]jm!iGiL䙥_oYSq4'rڗ,j\me1fNwf0qG]W C07Zm E!u @jbM\Bjp@ Z)mFcSDS; Rf0H1S?G߇5+|>~!!cɘQ?AȍHCFVxeP1orǫDe15y݂竼Uj04i4{*&%v0ZpM(*1bɪvZZpP)ʥЛb\⺱<7XV!KgNY7&l$J uf9of [9aK!nM;/Bh;]SS M(bM =*%<N͐.lQֱ{ 0C FeҠL9">kulPc(4#{źv`!^'pz/~i|XQ~8)^D|]8"K{i@̞_{p/GQZP$+n4 d5ںySx: mu_ᮕjRaڼn VkPs#rֿ3y<;#_4=Mn3Kv ~{zIu9ILTSh0O_ܾyll r.ME'4ŔABrP Ho*n@L5r=D 79JR #Cb]ULT﷦m_ˬG/ZR5"q+6Ώfan={DzE>|3b38]_ˠ.uce'(K ǮŜa,64AJkЈa-QIzgrIz^[%{#A3QNNͲrB'?ADV\TNDh4xY~_/:ٮt2s[wS(;GVҭcE<*v`Nc!!QwvoN{;]O[ @y;$G-AVT[vGVJ P XnEG2 քrgiЇtd)v$ u5}'x ፟Eim:ON'Wj~{ E)_|+!6(2k"N`o-$4kdħ>OP`8҃~e_6l,r&OfZb6:%TeZI¿p S3QS5xA@8ĮѴhZz2r}E@)-exKf`N̵:~*xaeļ(:qd/] OEif|54oH1+ip u}NTLxsnxֵ9fガ4~T bhq 5p/f" BuOq(ȚT?/PPlJّ i -$+-I@ks-V0_?Kj,qN;e?;kp 7pm+oW Z0xZC68sJ(#Il'ItRk%alZ*r+A,3zra(PKiDl"'ݛ28{k5&HjXLP͉ĪR%,D}Xv455CgԤ4NVf( xܼD8Fx)7 ^;dNL+ Ք[3Y ngDN`P)wLjA`eG鶠pZӯ(,&ә ) `pΗ۳$>+}Q#<@Qg*~78 #򹞱̲-W?O ,7hògyBߴQ\ԬiHm܌Q^j3 Yc*{W\/kBũ@ɡZPƲ?[bSё!FUI=Wt#*a<&%5(ٙd*̆M?`]bR֭ŨϘ8vhTo⨎5[/1kPExX< {4Ri84ZIAZO5oqFPvW%}jѢ)z^ͮ8-!@ƀ%1ED;lAGQ &%'`{j*LŗzB&޴DmfrJ7L'}<).P*&w <$2|l´NVto :h0Yv0+'8D] o4=Qb3w5E$<>9KE9@ W8Wz++3j9 _~)I+K.52'xpǜu P &3׵za?v?(jE>1?G:h(ÆbJeTXtx/o-aGF %-AiMJ^訂 - ǂordG"!+qog+sX PlEZ6߾ϥv2czc#cTl lU/îJg^l2d}56aRȁ-XQK%'101q ;׵xr$… UGzO]QDo&A4BdJ=]@WlQՀ ACx ߍNJH#6-=44/υEh]o57st)XZ:D3bH$BE*!/Aǩ @:&*Ea>t$.Zfk^P ~hCD}{2iSHZTB7M hMԕ>M"oM)rmo4ޒjZ片ً?G^<8>߁ iE.ߤR5Nl]xh'kLG#˵qR;X5qFA7Gg2!`4X|,@|˜TVpM^Mm$G7IsY~=YƲ®{ m)n![v&`1_3Y-h Yҿ@-#;s(ZEEU/I.@"=xمG81 _Dn$S "Z<>r:B0w 9.a IKGEKlQx+vuwX ;罈ELw5bk}.fਪ_'W^wvŦuD`/7${vk $Ve(&p Hʅ^( ɗb[?ij8{CzZ<]Zзc3&0wtM-\+ zH '%[âZiiž=cvpN6=jXWf tBs>ۭjbڻZ ns=>r4$\|Q ev9I~ð_JwDxH!#0$o*@s@ _+!8; {67v%|k_$lypAtl1;fʊaT=NiuA<m[m\iqj}~Y~xyAC\ %bī& HtڠfQB:I Nc)$7ewGwf!?Adkp AS [<~QdJ\wp7zusq16ؿZKŰ0VjCuGyl(U|.V8-*P%?Vz+ZРndr氵`@DJsyERLPZĝz )hlG.lQ]˚lnl،LA:ࢡ5쌺f`zLsT7q^| űe=Ā]ɵ;gdt- |<فK=ۅ+9&TX"~C/3p,>~m@::gƩЎހ 3bjqG SںѻeKBX ׷ jZ FҾ} .rJ}=*h0$7XXy35;6{Q9G9P.MEg,DrFlJ> )AU.j3|PڎZUrUS` zK/'D)MH-8&H]d¸L':^M|6emz} IԻk0jkFX٭bu `kU0cŎݻHqt٢ ~qzJ5w{7UP˨{V}"P*}Ah&n= jt .!9SF0BE2iFbe2/ FSKv U1p*90VUA۫=#cQ&rW08oߪz׺(HXMຠFyD7Wg84"Ck 9r%HFy?&S@wMT8os3H>8K(\Aוc̹%``:l¼氞y.r96M:_S1ccJ;'G{(WnYlb1݈qgm 7#{# %m>Pz2ʹ ɪȺ!uu6~; e~tl𶭀/Za {`64(C)WD,ޭ{:W9Oѐ|ؗ^q#kCx7}D^˶b6ϱ]`| N|NDor[u0h/0nO.@ÆBMg8Hʄc >|,^lJ14+3dO6*-q_jb}d.`"hLږtׅUDYE ۜ`HFhy5oо eyϐ$PF =Y"HP.ѾyAjTN[oEPw|KW;Ir{Vx c2M/(q{Bһ'RNn9UB}y#֋<#g(%Twt%1Ы񩩶Fۅq1U#g]3h39jOd=#;==C˖4#xSI7'[ eTJd78$hY*jR*'fhl晫(,]\"MkP3Y os+}Gz9eچ~[|-m3WoÁbka%(72~ wM 9\"35  ZԛvѰ<z4fO2,V]q!uYc.G@ڞ2={RwsmIެ)7KU@ ,cM1 xz$F?62oY{nמ1ÎX Qe+#/c6`Cʵu_hr-Wx#ьID+/8fw -& ӖQN+ՁrJA[ ;#,)bE Ǽn 4Ds. eU4\CGknjaaT=N̥TB:x= $^2͝7*Qﳅ͌yT9In CGHcKnI@`lw"*$UFʑ!͊$u{U@C0?j墬]ٟ"zU4k}D!d!I@6*H X\8 Y>G*ǦdQ`K@<ֶtvkl֥u}D~moPK)cKU f"JH T]P刑_S}`˵1:kU4QAG;ϐ9yWC)ih,]p[ *_vsL B%y֯vA^;ï=1R_5ߐk⊝0j"y̱v`W+Nxi,]J?0ՈJ\G4~9ANJTzތ@ 9|AڑD!4G}}Z{{HRm^[sNAX 22ʮ⁖k9IL?/ _55HJq-m~<滱䲭~(Ag ]w*@;^h?8J9gBEu&د * GHpՕ,7o%Efƻ8.VD"̇C=ܧFgt@ޡ{"j2i0{F2oP;d<6ɔ? WȀ`pp ;lhJk0(_)m>:5sӄJPDx]g)v5VƎr%s_v0BO>K2Hxa"aCׯH_R8%c@d3EpO`k,>ג$Vw){`[SZw\@(GĺT VdC0/7#+OpdE f=(l3pVuy'(eQi*@rpNCxl!z/uuPϠQgtu%j"Vs>ׇx*طe?,f˹H ~!55d \ySe n/S2T*\杆JC ^E& )q8h#fQl{,cirBM4pq'oKDxB nMp-)NuuİP?c`76BHQZz##Kt?nfR${v`)ls':5=ҀjTϦ%T"ut$ Ɵ.%KTEVFh~n)^Q ~JgT S4$D-B6ϫ9U溥Uc. 2Nb1;bGjS+ZtCyӚ @Q~қy$9cOMTi"%. ʮ۽(OMuYIɮ|Ps̆Z7IgLkπ^q",TW Hy VdnDKCkNxXSOq0Jw;2ɗ|uc'q%tGcbS%[?Zn$69L)4ݙ"~C@*$+u wA:4)>JVU+vV$ [ʹ*sn覸q*ZFGF衦] +ji*4nop'!JƤc98wVe! K9]3<4L 5-t)# ˤ9'' o֠K'7lG1@cr GƯhO 8?=ɍ6878@A8mT ,n NV0K- LIK^2R Q *h(q.hω yӎ#x(^* p iB#/OۿY70˭k}(x%up4#Y>cإfZ?HK?1%aØVՊIE1mR׵OޢzyU>v2y#u=2ѡ"=zpח~팃_###l,.D12APctuK("g'pp>eb&aDƏ>&֢$PgנB^fdrj[jl,s۞_^)_ CΦSL`M_61:@ bIl%xq&pmY6/4y@, _aƓxDZ\س~9 [IE kG Z:C)ӭi^אΒ50ŒźЩ̳%nћS+ e ;HE qvz,lBѽ&Bƥ(F6B%=&=Wi yq[#0NM6aH8=s'a$ olMg 4օo3ՋvA Oixe4K?Pa$yLM& A]ثQp.jc\L$o-=[57c!m} =2q6?3'3 {c)tAjQyx",KǢ7M`qD*=gz.k%IyGה KϝI |H{61Oj9瓰xm$rܤ_,MdƣT5XgdJDIަڽ5~Ap/"۵^%i)[PP[*#lRThFpF+vH 9Nes$Zl.HR#03Pk4a5]!Ӝ1DZ&y*e N}UZҤKi Q$ɔ&ETo-y|lv#r@KN~~,ԕ.A`FWhgM?PGdV7iiyW%sQɫT oefueȔ?feOE&*RQX>So/^%,g? ؤZ ndDP o+XI %)pvG[{.h/C&7KlzˉnVV>L8xg>3"w3-v{L52]ֺj)U$pFS]U 9jd%Zmk)Mo0EL."4Fm١܁`n57^t:=VrX L@ ~,!.L`L6ǢO[<c'IP;zu,@iJ*pp1y, QUe6d-f]K*aKK¬>:7!A8V.N)giVgE"`}k۴(XSQ"Y_2Fk!fy)@tV8V{')M Qd5{BBE |+G[N3'7&`M39A,3'>1?ӆkB/Ȇ+MX. JU߂UHT!6?y3Gs4/oH&ʳ.zǵw[g¹Rs<&͘Q-v0|b=-dڼQfv?Gt?3d{e Ύ1X@%64X69V9Xِ@af& #cDϺe v7_D<%CP\ϲ/}8U;H^RE/^gikz56>-Wj[~ n I~Fn|iTp;K7BCbS XIh$>\ p>/-/ʂ8n8_+#twÿ&0|hV14UU0<2`E{Gۆٙ#b[ 17!_!8[m|J˔+xⴑcQFBɴI5(0QCo"Bd!|V[J&&vFl b*Gj,Up9\3>uV$0 QBKw>Kz*}7S;XeۘAh }H1?T(ML>pPx⠈kg?mCw /J ׶Y _]m u\a=3 j,G}waCnc]߼+3 }k3#FoEAC=ZFf(3[{(.PjqIMg9sr"Tގթ (ʁ>^/-懳k$bD;BBy,5"omEV] E|bpݵKJJKEx${ B8F(*HTÆۅ}iTQN-5}ǚWL8rԙ2gREyTn v|pg8P"e=v/WoZEGP_utPBnEs;TZ3MO}Y@F{Xa0xq$(᾿_c]8t`qG.y"] }',0ᕅ~J<]E:Du]%0ìll;)eJ8"i6*]ZL|c~rB/{nc[RB\ܫ3Կej>ɶH7d0N {սް*yeJ m4`Fz^Pi -< k˕^b[XWO=N&jY~[ndIgtjbK3ć~}q38L]ہc'P5ay;^6nYQw*|n# 5AdA]n(,rx?$4dBw-y u_G ~91s)@ }QU]ѿ\KA"*aEYlt'bYR퉅| L*8יd_yI;4kX|uR@O*jQwؔmCc? uH{siR-VT{c2sNBxl!*/b!`,E8D~xJ Sk&C2OKɧfDQ+‹?̮b|$v>L ;oI[߾G 8 tKgKj?O@nPكۮ-V 9jr%`NU=&lѫ]tUيiPL$xר6?<%rKP@:yP$>UOSۄho}C4›n^^7ƜD-Z#Ff $衁C g!-9x^LhHbdtXJLNeܷt}z߰y]Ҭ#H1ԜrWmvⴍ>@ t 1]y"_~Q=V$3R0e҄qόUzeYz\ "iBU-2Џ_hB[Pd"D,\ՠvwa24oߘO'6(O !(-5F"o|lguG?TMSDhB;7zGn|_O5,KZ IcbrfH]:WqS:_s%\Oz]#ph~䰐hDoWy;TpmI6 WлëU-POYg#[Wo/==~3 Zn bQe\U*Au}~_bRRD B])]:6_ 3l&]ZJ ;ULLb  QT]c&k~YlBy5+%Sؾ 1h'J*#tp`T5Sm~0lН HIk1{$1k !ۯpG~v4m-,bdړJL6l AtRwkXQ@ TKwEJu&:2%GCBԓ40]=|kveĴ ɪ;`eI &nD|ʎ뼼 j͇c%dl3ސC\$E\Jp4Y˃p*\FW5gGf-^g3gK|,EtY3NjUÞ  m:8(9gԘ _W>[J*!!=3B]6@a-f\S.Df*/oZ1wPcG3b VFPOwk?%-%fFފphkC@26zx^:XȾ &~s}" DXqA1BhQ0tE hdD?IB!~π6hjXxz'!j#懅p|tnGQ[}1DEs6 ʜlֵj659z]o 얀}u6k3YmҘ=M7!umi>yS,<&4i݊yQn;L âiu.Q`5v"Owuql{dS{;&x-DujRcVn8!EwnH)t$ː=g<u ZCjݞ8*jU?+1Sn` X?,e?CB-֛>dʀ!1ǂC hx{get.xoyBZ^`(cG yȹic9mn3}6*0FY4TȺ[X@92<5 JlW^* \A-aѩ ?ZDu1 fec~΢62@]l ?kuTBs2"y;Kݡ<Qyti?k'At&b3iHG8O>mj 3Y6@AgEwHnUt,x58,'G]4VNẅ́fHMژ@~f Egej"R7^FA@q@(y^YMW/-|⚩+Nο7![jAgXB`y&ujc=6Ԏ Wo|\4GI\cw6W;mrE^^Z\Ў([k8H;`!XT) rF(wb\ m :4Rj͜c7|%ͽ% MLyvGTkey֖fW.QUlGtҬ*䘏7m:pm .j_֛vG~Wk|SŜ<.8ZL$ʟePݷ0|A1neC?:rqt~kČOWJ%+nƵ\H_#:U7=\Pj )Q\ W>? IPD.T 1JkSID2UFҸ)0Z|E|hs*w^}cLd|jő ?>(h)Og#zI; ic~;ñ/@P + )冠*hȥ']tAK }b}}NiH/:Ԓ8MVjd)L&%bý-) =τv;ޢ_keSSSߕNgOBvltaK@!dT:fОjE5c}"M͗A zc)lB7ڄ5\VF*v)1әo_Fr8.'f&DhOa%h(h [S&SYRqC,'}>= { v*3|e4H1r 7ګnLS3UJ3cKd#K{󂹅z#bk`aEVP(~>\Q[mx)fDjV\ @/v Z.\x2E˞Z#Du0AvqȲ[5it2<"Gl Ũ|ZiT<{ ⁹gp꼕>pK>8NmI)YUfs6>fgQ͌%F`5$@f Izt0}0#V<`FU$  x,ꦓR0‡F3b%Y26)?Tg$ڗIH +Tq嵜\Q?*\ LUS}{o|e/s2\ތe =9KRZH! !i1hlK gϖ4h ػdV{a}MRt{XAjnvJ4Bw8颖dݝMvJS/SZ> {9>20K`]>>?XǥyPu]IRWH#~tzxH:CLuI3cS޽wϐ9H % 6KiYy3#(Z_#i4 [rg {͑WMql&hrA$omF'u ffJP5H;U2:i/DR`2*30)̔K2k[uR0'v%%&e@w?S[*.wH.g#kb\{ʇb0dSCe^)4C<m̳ѬIeT "U}YϞ/"# TA,v)( }CYlVJxn>:_&ӏr;Eۭ^aWyγ/f蓽}JKd']\w!y=x ϡȷr?3 :{dɢ3aR62(<8s$Gѻtfx2tM;% i a (=wi=J77YmN+qmɵ5dVoLsOt:P\dȍ{) ­gxU]Ʊ>j<Wh[q6wjlYɻ\Sz[ʲ^" x?C,z8Ruk S8>dYHI&}W;yԄV$ejne;,x_sv[q+'?e[tsd% }t{ȇϢʡr;.iNgך2z-kV{l,o˽\w`߸CBu>Kɂaz=ץ@:8 G q7eQij׺}?ŚWf^և0d,' -CGΟ?ލ'`bgj82%}%L}V3U(x9tO8EI2~P%\('(72' 8+Xt4])36HQ3ka|oy|\Uŧ}OC/h_XZ?X ˽+`3Ib5!=1c_a-iovvNK^58rl= X\;'9Jl𐋞Uuu%Jŗ! N ȣ ڇLr+d_Upl8A%=4C҄/u?쇂+ŶGR J 4H>ƥ!-}pEVz+?h6&5i5c扦6%xJY~y|e:ƻ"f袯'D-xun>Z 6e9A*_ `؊N"!~I?L/PBg"Sx=+EQ/J]r_QX"Y<ںD8 d( 5T_ugZN;k g}t8th*>F:nzNLŔ70H8ʹ}0ed:7 Xc H_ܷ3^Pl/TW౦Ḧ́ce9X)\A5=cuL?sJ7G2^.m1o{?}`ơY : ;PR=Y-O|!򓔏/^'"!Q`gnqxsuug9$X9 _Xl]6g8(HV}&ONz^"% fP2IR3&""ܯ$0kDi 0s[[ *Ƴn~ 9._f2 V5_#IskÒ%'dK5kIM8ˮRYq/{fbB7.06BWP,27aVXK?.JK"/)K\:6[3M_(rf4aٹeL7vZĸQ.eS-={ːa];{{?2O5r tG|| @)@̱wN=$ lbL/Lo q?[~Sg:üs55wY #߾SŋDZ7/U;epEuBƦ ~Ab|d8$ G:@@#'FSե}~7)A0jaEuY|z_13rIҡuȩM;K)oh|{HC׸~\ԟ^!b3?,J]o_Qr[ZBrDy`+`ZqбC"oXx'~KH tG0k+笽KPfu/fpZBQ'Q S;2e[+21zS ҃S>-j?v,x\h%GV ~׈b$A\dv"zgxA'<ܐĤdr&f$OTHi FR}*DGrLïLޖ펟^F,٘M˭-\qDĸY3-ibtGT>oS'i`H)IC!&5Y8b+6m9dB68s'EW^ssH`&i%LReńwIpH3s'[61CjyunoDn,z~FL5HV4g+F\gB,k%wIG=͠Sjfz| c#2 ֜OO?,UR.܁ؤ0 źiѣ¹ɠZ&ll1\߻?^߂0Y# k AL$U]-捇Rw3c=/cCzO&п4d5!L[OqzBU4 O %ۍNi'?%I LKȞ(^16Sq'v.3{I/~y_DYER,eq^ ľ^b;3ss6~+F$nR2"yi'PKB/h-<nINS7wId#`JZT 7i:팬S x[[n݁͘(]%"L%+ClΒd,n\@Z0k;ŶZpw4TCO/:Ũmӊ HN ;"GPS$DzYIA h3ԧsIfnN E :(R~U^֮" X`ŋ0&lG~ӗD.bX5is VSJGYn#HJ1Rya nB#4㞁si4+9pX)==G ՁDvI ::'l X^b6#MS:ɍ:{(h_ zLrݑ(y7ϋG9\>==m=c}̚_ ><vE\vHa[+ĵ-'A 1~~/%.O=NxM zs9u#-BL<۰|sH:wqOT0l,V[0/Pw$8^OpP] H ^aQ '|!XEvU=U띔S9$bɲɏ+ 8]KweQHxOvF--`}$0 Oh/}YGzPB))yt_Lq8-cwkKBnjݯaC{ەٮGfБ\;ơޟ<01/,pLN[٦Ah73}#'vr+Lִ=Y ,C<9'[S7ؼ)M,TSG뱝*}V8i$ ;)3ҷX-Pt(S KAYg2VB3VB6HZTa'*%rV– n DЇ}Rog!p$Kp=^p{ A0Lo;Fˈ L_Uqg#lҪri2>m$;,ֻFvHɌtkm`ut2n4ᆇ ay2F$ᥖوks. 1壈 l~;~20bUBK/, N{!ܞT ֐߆mHo{+cAQms@2)kH?ӟ קN"3(iY9' r) NwZ[@͑zIX¿Ph'2G4qU*yr{!_Uw4X-@tzA`;ZްM hnVcuЂ~21y޻aroCKv}c9؅5&./ x $lZ4rsgc>6H~jf)R3BQ 猦Z濒!|=ih<נ! H0W}zB~UyA-{  P [Jq=1{Q jZ#E|y2P-ryKhL,u4*bVzWja՝(X2O/D\ "P&̱,8!u LkY4TE <ҟo0 Jhu2/.=ê NHA4@ڡ+%ADNR'<܎3zrj> Zb꣤7 e*HeܳLy2FjGV~`h8}G]C澆G%0轱tݲúuK^)_>-O2:?sV++0Ù4";:)"е_ʂHueK%a՘p 0b R^zZl9kKɆ" ;ETwC< 7\T/az75W<1, W`keaCB5%_ izu Ւgtت`j.^\ӛB/YsVSZ#:< (I^;bxʆ 'ubŏc[lJizPPZ( zis|Y7E?Lefj7X)Eف \B|&/aIR<UO0/ j>P$9ݨX.;-U7Y|\24p.@.j*-u< # C%A_4Qz#Y.vEz4ҶDhV;L߫+6n^["//{ eB ekө0,>5 Ѹez; $کgIfwfBBM  yQ)nwj}+b⹞\Cb7ĥkR>"ck]c|_/)Λy\ `{ OG 9'\֘6u݆؝^Srə10ކv6ُS 1~:QQhDSK-^gxaܦޫ@ƬUlKE!]0%BXhVNV,E(4~r6;x>9ge&1u>;fWrXdYJ\ِq I]"tf+%aa:`򡸌iׇQ" |xo~d}+yDPP4 %l:y۵XYPyDO*R)eon5і'o'ۛjm e?Wl#D5~NAhf"5ً[9b=:;]U".0f!bKJt;pE.:0g  Xp(MF`rb _m wG5ѷh״fV/"pSiDʞ%:aeo%I۴c vx)@x٨d\bxp:WaV3o&Ɋ3S/=׶r: 8fj67]9~A0 #0e-& I>r*:S=Xo7`WTC?M>Ivy·LQĕISSkL>:0db7> 5uC_Vd"цUQ <79#gO:~zh]ެ\'@8лđ8z\lscqj/-WWͫgtK/ON}eW"IΏG&gJ!:2z.h;i: ydIkҼnOqټZc4y:)$TjJF& _e #쿔0St[>v޹s,}myvѕ/}:mfM+I^?6- _k41"Vo?@֑.k #n^rdV$3Yݧ0JRxH;T4bu7-JyX&8eт&W> %Ժ,V "~EA/Y@dn 5غT%J?lݾE*\&Sx֙TRZf3!P>EujA_);Ug36 rQbSAt6}굋!ZK?ce;3L$ @ k/S\v$R ]0s|NP.k^9{I %*c1GC|Nꒇע}Au+ 1qZ+H&u1H;5m&R=,-"K:cO#ՅgN^ܳVW @Z7N;qu!1- |Cp|mSێX[tnmdE3KЀUh#~T|9/튝ψ/ѱüMWA3b5;/|0 :b{X۩#;^bs;r% w;T^̈y8`޷kΦ< .A[JrdP~[ue;C7e i>:jQXʖOOW }PcPhD6od[#azy!gW)i!\q8K-qs%\ܣ'G!+G*6;qQ,N2 c.jZaΝp֝!Xa`adP9we7,AR.%''" Ѫ&B@7HmwjPY\pPD)@6.9gO_ x^+"/ 0C#uXwbjQj/-fWG>1Y|x*]Y|cٳ,&9hs=d99@BwMѫDD킟Cr6CTR??EC$T\~3#e$k6Eͽڞ= P5|0-/}q OqcF*@QZ Wa 0ӝ׍"Db_33 wե Vx2#jRqkȠ=R6LkDԂYmSQ۫,+$dc@F9azciHO@ .M5$]3^DEq/XEx_)5i*9=vnLO'}~+]B>&V\1s ǔLa$SJ)z]v, :n'Z6:(BP N]Qڰ GQp҉8mk1:|}aU~ |86^ о;,8L[gC`v /7|>3s^=V7f%ù`@oُ h#fJaP EVwwa`dCteqLR^-lT_V.j^v6ӼXuUS%}q4J^t;!z4v?SZ8s`rf+a gxT#~- Ai?-HV \EC oy3SC0c0HD|-#ky:,/`ҷVjtD-b+/H owx]l=Lǥ1Êî=(sIl'u'i|mloI)L;6>-74[(_&W$E\p{k(8ȈBFW7I5zr#`RVc  KPD d#cY&(qL &SYM"+Md}VPO-T7ӨN0k WݺxMM)IG:Mt uLT qnpiecw8E?l24I ܯy}\u R^N!d,\~.Įg25}BPx`]JXo\X3p*B[60Kp:Iiz\;KI5sy_|RF3 C,(gԲ-,o5h&Ҟ?]L?Gml˟|y{-Dq_ U@k}1zQ7:w^xlnV]79PQFn*wvidTzORhOY<%JYGNxxKpc Ý 5xeCH2gV ~^eO^FF bf3V }`tkf;ް- d;r)$x1[Q{9KadnnkL `^mݓ\s rEO41S7d$L?{NGJbrnYp|>&uxKt.vȀnߏE{*ǑU|[``kc@ܫ͝7r/%9 ᭈM`9a!TX70Ǜ"oK<|"LgJoͭkh?%**3k1 v8 i%+,[6b7[ uJޠ>DgpHl&[Rv;EVsZ{^tTaj4>zYέ;3oeX\\kC Y2`{8`aX&ss) Wjȉt:9jŬH2X9ʼމr.K犥qK`e@HV> إpYv3]c>&At (v"0M3/OОxg*^9"4"mg{eCm?I !% Uf3lF8#iyhgB̈́?zڅ$HtcワIRM}L$'~1G X( C 8?,Tu*U6Zv84j,+Pf闡b>ƥr6. #``%Fhwc6i[bh6,Cω*( ^;2hmձW+Db̸& 'V "d 0{Y΍S +͜?4|j.\/%9o<"k ~ˀEH}*}"%K)%?#־o47*ux{텱K=Őu"'{r5$+:?2YSqqJ};OuhevUEyor]2:D[wnY|Kd |IJpWZ7c۞1G[&D\xc)*3;hCp?zE SDU@#EP^Q|"`_X`؜keGw? _]pyaFv 'a4qn!R$LGѬ8 ٺtLT%*-2D/$[1׳껵*s_)FNڲ{|*b8 ُZLngV|WZBs8%;M.O3p[7b[#=AMSs|?hVoM'v }>ɃVnwv^:cmP9$ghMC[-J5`\=QkZ~*U3QesxzIw 3/>=Eo ] ٜUhn=eN|"DZn- WըMgX,&(fd:l#>n0kLz X|/b|߾kΎa֡pM;:_qEǺMNˉ4•slQ0TMJH &Q@3R=+op%%| fY hŕS84uTrJjcg2 oDv3yI~t=ʼn0UsC\﷉/員'e!0_u!qQYC+^Z0SM])rHK?FƔ9LhVI{j۟DHzg婥 %TKZ%`>/#ٗ3m$ I]o%τ(݌Nt(Y%?(N ?dd:1=ܑs0:za7k-d|tjyS=7 SN4ۚO:"W2O aUJOm"UQ/vnIz_G0fs1;2]YDԨ'd_sy,!uXMvkǥ3g*DZgQ1;㧻D_,t2n9MAy!a39qQ_$rt@r=8tk$wyCm iAL{~.%cΕ%x+&Enʂ*Vaz왭ϭtأ:-Y'񔭮.씓e‹#Ɩ3=; C3n,4ɁCXsNųD;$?vO/٨R5aȫuu~Җd՘Mp{{~*N&aL$[RwjKi;jWP]ݸaײY(pp ];P[Y,˾1.(] Iũ}k[*KǶj{WvpYz.1.za,oPu?Vb]nM cscE}l),5tPRzfXGvgnjax(qgAB7A:N:1Y`ݕ195 <[af[V1lд]y9{܋4ʰ[wgǶn[wd[ ʫ,%g%ʣyQ#^ESL{ʤ+b /@wVىojӑu+ۑ6{ jectm39:"%g!̏}wyʝ8v~r%lb /sٍwCNb8XnW.!#qPfvdʺ>{&_Kd@XtrTô\f]uMӵ-ovSk [WdOsEuYua'D.C'S3#gpwH=rJi ۥC_SJX/6 V 156P^I, V܈Xy5cQk bLm{Bzx~\/"7iwlVVd'WRaW$Y)ڵh3fA4 d"6嶺;[m<aʬ H̕};Ȩz]"aGvSJ6 r=iG2kqZ!4xnt{yo( ݎx>yh($G*k_^YJQrgKVjm"-TBP" y]V(ߦ>ޜhfob \I7aʄ<^\sO9ߦ*C~yh=!B<ſ =$V9^22JԧAiO N$fI$#YtEgwPeYj.Q$[ԧ>ыpnV( ?ڸ)aC6z,0lIw* Y8AMu%uJ; Dրr +3Cd RK-K,!+*9ٵaTr:Z,O5jk(NU*3Cob6K '_0fXwT86pIH{]ޟ21NV/ܩ&TȝV=H$/AJ멪j#cL5HU&Ѝׇ9=\]ydo}ajn9C\ )$Ii 9hޗ|!gt5"1f*V^;97do֠j4!OʚJ עuQ9| @sC϶ɬ!>;R@]ŋ=&ʞjalJ1p; Dʥ hNKa?!piȦnOC#8;JjF|]85@a72 ҙ1D)D|f4J=]1}Q{ỲFǦmx`_ 4M7Z[_Nn`%.OӺA>JAꛩCO7z3n l`ӫ$TB >*<\VR(0bChtߞ?ݝy 7izIPc@̠sZ QFTDw#46 Xy}Kqd"ȮGG"S)S^Hy ׏[x`S]{8.@Ōkn"gUit͖#hξz+(`O9||C+XV m3 }IX6ޱgݬ)Ƥ1.TW^\Hy<eS¡h(-,,7|k`k3³VOe D7( =28X㞖`:kᙒqjE&<5X!a$>ND†z%7eiZd_Rȓ)>#5Ju HJ dn! YܘT(1 u(`D'%OQa)َ?aa36ҔYֿEE/vNYIх& x}ãQ>B*1wf21,&q~b@.7_a:BTՃ[ INFfd˜&8"eY ?aلX^{IQgNۈ'l8E[~mMy }GErw.c,k+g}(.5f0Y6v|0#ҐV!3>[GV/PNQ2tmͧBHyxώ~3/xagԱC6_˶GRܪ+ԙi^#fe. Pt1,vV*EP BwOCWtBRDqD+:V4s'ŔB@b4 @mb+,teJ=LDo\fܸcM|@L L LMH[q߂3v㜶ƾ` -q=i̓{oX7g塆%fWd.f L zgG/W' Rˇ{K]Y3'j,Ώn9qn3Cxodt--Twv $pit&EVcQ_OԇLO` ROLQ&z~!I,M[8itQH9GO#r]4fғEAg+l(7ұcyN*T ni[%lgnX_YFPG\~ȅRK\s}:^!To9^47:H*ŕީ+ny$4#Z>zq`=B}iIgWy%0BG fFn!-Vxi&0G~3:G%M̒jb럲qJ߫s~[Qys( Tk$ d!{iTDn)J#' :BO## ^mSDI P')He# OQe5{+(i,rD!fpq>Qʓ,ra0TElQ ׽V]5# [,#9:Nv3x>&RN!9Zz]5@MQY?d?b ҆i2RkfwaNhSQpImDZk#QB#a[̶4JCVx5[n2VB hM\M 6(w`+Ͱb?WDm~u0+>pPܞҘ{z=&v/k>h7MR&: U^3eX)!Cٜ0v˿c!u<`[l 7n( oыON/ĕD10^jBxZ%Yt"H_9zf8܅(Y!D,1ҙr,.䈒t DƦ,'&'k tn$RxPY+'zϢstʚ+;pc?V0\+9kO|g^XD D^Oh9>ijU6SKͷ(܄ak=*k7^#Ws [뚫Vl$IHiY_O47&oI%eGjY6g.>ʻ=f>T[Ee;>L~G˸# yxD-2l"kG%Ob*gHF#>,$D|=)f0M_ʀED~pVsz^ԞZ4 N,-D;:\X#8e0mttT7hdX)$X<3{2إ /yQir"uՖԙ3?iyN6hkra/D) y@CE'.<71ǵx;x2" I"`@E!9cl_-P%|*71z`>5[ISe%%fXP!O8%8 &# !i9%4*Ԏ 2$. V\r&~ğ2:7[7ލ*#̥wmUϞ3ץɈ Fa`,k0ї/cuӔNJFzY#bT p˧V OA:P+t_?g]4ǯs2d5N&THYn >@.7l ¾x;R&sޭVYK 0GcYtPHJ2} bN1'#td5+yH8t>@˄,uG`[ѳ,Jgh8}$>1Lx$h< [.)H+(l2 kNz+y刵GI^JrjS|ScB`+ZV2ռ2yFy}7H0ϔE-=θ*Xz|{&Ѝ1kp+r`g\d'-숀S0~hz'J1"2̴Ff8j9H- q #e)s2TܾP"+#|._liEsXZ7TMѮ6  h`?-l1UlyRv+R=0ޔN?)6DkȪϕT?O6C4tv)DL@=}Wz?D;. Xّ x}G+MI36tA(T(7:$g+u\,䃡[T՞.7@@KlqɚPvЏP1┧ݟ9`E*T IF~!nF-a+"oVFZapRx^266}vn1F6ϊ-WRv@\%8Ysy@;T*c!#mw?%S\pƞWf` >.]-lvNDHgrȕnGn(Pko'{?U)FܱKs"ngt,#Ɋa.l ;MMٖM79:OMos ų;5&"fc6 5"=ѕ6Y_YNbN2UBv]ۓ@ K4ky4KoH6A/Uσɘ%e!e3o*G&yX[j[ؐUs'y7ԯ׸|mn{w}ބ :bW[~z] 3E]^uT KGF?UVXY(:)96F%"ޮ52o|eyY =F]dvCӛj g"Y2`=X;ja\%Kkuﺪ#hɨ噑g|,ToO͍oVGӻ!m4^9tzYo3{p`[ST6"gJr0? AO6O=DW9,RUQhy(JǴWaAuRw, IFm| ~?&Z^ɉ{5hcx9W-գk#qgo9l "wÇihp43t9p[.U ·4`W 6΅2^D8j홎(~ 8+x:Rd9%Ť_7-2T .T؅8#.,֟ig+ ?oA>H:d o ODUԘkblߪ3gg/ %ݶ7K0'Jb,e[8݇`.'A8Mbp?%p\/hhJ/Mpׁ_-jfOC(ӛ|`:l&2Y}R]Z(]^xDg{LxQ/Eb=F9qS ΡbUY%ћn0| gEײ)A ?-z,oWK;ݴa *jU(Mh7QP*L_0owB+larEWKOU/`(x̹^o8\3+!JyvΒIri⽟Ѓ޼Ϭ/ a1Ev.7N;8 '4`NhÞ)x>0_ T{a͠(-Ԍ} R Hߐ;P2-`IKl|7ˀ0\ $_o:TG'CΎ11,F%9F WH4uB"5)e,(SHPY>WJGVNqKrOYaGfaK4 ADw'%}Ͳsi'3Q4WK dI$aqx$ \ck\|[v{"Υ^;$LWDݳ2C>+lpT:S{Ryo6yʗּ,{ dո- pJfD57wH5o*"3GؤDd/k"S/T'i~Mg*IT/7+]Vl+= f?v\xM8,E3 1Z9z` >BAn7 . ܊=^*b?XJx,>vk}j<T\*^k /)hRT[ts"\T6b* 7n({I%)> D1d 1q5_NFƵK)u=Z3HM Q,L ,?~\ϲLZ ΀^ -FeaktW`uk߅ 6 җ$סmr I EXީl.!Ig%kv9 B{ͭL{nd\!k6Q=hh㊤#/3~e*d\#F˰w 6Gcƺ )F4)Vci["Yd8ut~]Y1y9xNzN{#r~kw/ 1'(|%{7S̜y;].QĬԔ}Lr)gfjR]i珗;G9K@%wX{ vϳē5Do9a@"M vLrIʣ!ӁǠ9IўaIN}y/soҟA `4Y)HkOe_,F"]w7i|˴^ʜ`vHssTjgʯ jbeTPkB 赏 BV'vNuD#WI"U-J 5qnS?E^Ü/Ce_r-)ݓ_cLrq,aXbFa>O˃ A aC{vو-!A8'-M zSp5]xHy_mU@~J9h^O 1&_Cǭ:^pCjd^Q&SxpCϲ!\؍*IqsnۜdS247cy|zuRT\!س~o%CX cM9.#J$f!kel⒖'>|5 ynRC&jr>LGQ4H.IKI5)6TjMM/di*Gv@׊[ 畇E~D|/rАvb<OLAҸmFUZ~⤰$ }iz2{,?hļ]8 ȋ3)f*EYEC<c*=M=5rzCDnvO0DzUa&Rie=>7T~=hzر|45(ު{Wи{"93K7ȝwWTbܳ9/! (nMcX9-|yW]&$xf^S9[=^K QxAL'/70L}~ `;+HL◲ A8rb߈럗.KY;G(%pJ\1ؕ{Px4U Dby]=?Z&uOˌsY""DV'Q6 H8͈dO:W5&WSf4Z⡝ ,%@KaZ+}H91M8UVגJc~?lw:1וqk <9z[G% Ax`-mr~J;ēR=X ai^!hQ'#cl-UƧuƘϰ9ELeu~H?K ?Qq[cy. zz$Qq<#(3i}.?uJ?Zkf@}lIqT@ =.+؃p'I"rḶ: >N7j+7L5" i Dm/aA `}c-:%p:Ҍ\;(>H[MMA׫=k؀ʲ|hAlꎲ,Qh槐nj:ȠyM:Ź m~"մ`K5&WgCnh݂@{NVu[핓qAY VB{̺!6סXl>J0C}gxsH;"Y1kC6TlXB6=DvAZ/īHia"XG+P`!덺&jYP.o,j!&sZi  bdr`^c2T2yA󜕊 2 t8*@wl$X*zaPQqZ/Ǘo+UU6eBSvizϮb# bF-iaR!\ؗ`N*ǧIYyHJd  GĘ% ޸=) `6;NR]CIm g!jI8ޣ]TQ$B@A*4!%ӌ]WUhf;-_DQJJ}f-eDnkQ ij[HYnV|e Cz:.dJ1:Rm~;p6/hWau00,2zC\_ !mfaI[_5|SAK+:ܥ$ޛLX9 ҇Al<6ZX {MdtQĒCl\Bx#IF w9m1L~〕@]qL-T)=2P L DjbG)EZQqMcd~Abٔfq=, 톩&GU-,b{Ԕ+=pPrVOݔT_ܵO*! N?fyOt­WU< {M7&>dA5 ,[u8#/B02iZZD#Ǯ)NH)cH^F*)m (ػjF!Y+c`nflKhn zc҈-8f1_i}Ԏ ''(neb@ѽf~ u+T&8~n[ #n6ܺ0sFuh6\Yfa#<=((:YHOavKQ[OցBtD0[1s7Ȳ#?n>]I|ʆ94E!p/akr˰GB ?Rm5> ē]SC!2ANgL.UK&9Cj##{+ٕ=,a8?ԝhvɳNh]1 ;JnL ާRQk8c:\< ucOPaHo xbagNj|qgu+u8V4T=K336Ufl9鰇},2>9yкi+NwexӼFv`ߠ_ [%9ױ2*dR=iQ&}MbQ [4x{|~`6vLY$*Eo65Ba抺dkWB=&OZn; (\|XX"{ r '܍Q@`sNIkq Fv70ՠlλ84/ q:"~ëԘ^plfY4<#b46 KudzNj,BBke>)tM \kTQ,W9U<|5y)p[14"ff FHzX TmPرE=^P3 KUX3x a:YH<h:y j<~B@TwlHQ2q)g>1h}M&+z?Ӓ*)T WmYި۱1/z~ʠ59[1HP ѡ^Qmy) /aHՓ=3; O='0_ٞFUɝi4t ,u`Wk wיpMEgr.0XA!P:bK80yY=Ҽ-s9i&ȩL`̞_ivU7bx:/ _Ne~A]f]QT+^M)R9eJvrbnAG(U)?/X+<zd)4zTsJQJ.HwECC#RљqjiVݰi9#nγse"]rs'mm#Z}AzBk'᥍6IbA+=0k-\fR_R VV1R ېfҒ~ds+G,~n_Y)v3m18.p'@;l7x;> #p`}oڀI/>\kpn3^ m{ƁŽOnMY ېU2d^5!sMNr+o'~k`G-~ 1*P%`\'w؄9<`.ypZ8J1zQu_EASg6c) uM[ؽj=];Ƶ"-f5N?=v%vWٲҸ>? 5_Ԙ0T8(Zߜ~KAig)-zݭa9нU0 LdsI 8@Ӆ=OVH)0GELjBJ $ E|ǟj{Ӂf&>h -~Q0|&H@Y ap/^yVq} &O v(Vn KW;)T!/VWc-Xo& z]8P@ 4"7v;%q:%)@jݮҾ{`*#Swu \W5xK"E4U)u /u3pW ϹZfG `\3x ׭u L0* &n}<Ǿ~QβAzaP+eQ[AY5ߩEm1Z]n<e"n!T`+a%̀~%ϬujݗK!BkC%՚Oz_i՚ɓ[<Ҕ~G )Π,zn:MF .HʘEvt zNDŽ˓WzόRO&]B 4B&D^bB-#' @s!VEd]`tЀ+6\k!?;~xs=D/q8fc.(h 9xitP[P_ Ga<Q=G5+;pZFt򬎦?87cp. :C>r놮'$nL{FR gLRM؝!OOUDlˁf/?ӗSX2=)-]O56GeK)'ا$ <3E^*֓ O.v|Bms#Yrk~yyqИwod9xfn@YӇs9@xBA/b ݽ)ԳO\oH8]yw2dCIChڅժ{m<&L&2=r߰F&oٕgW'% V?V{6?SBd EeLe "Ymt<…z zYJ1+8/(-_ISK[y*4^SyD^@{U4<%ne6K/,mx0ħز< Hnỷ.p͘MqHîw.kԖ*^9f 5+3O{de3S$H'=.R:lJQpjB0YVE +a&O"7"BxrnjJyaʹLC5QLH'Ϲ7A,.̺CŻWicU䯀c:SjΒ{xDSo敓 *[@H:^_4&rQ(fqoꂯ,eI$:vzxwyD廖I5 9]Y ]zm8'ǬT| bhytn6!d1rT/)W3g S35kϱ9Qx̗DüsVU+%?6hL,QN G!o`:EɤO4~l5I)x3 &ʍ;{["%;Y1kr3wsS6!-[jC Ll&$ҭI f7n; >3u8_N1r?G8+^%S ,[<#]aNB#sYkc; uKfP-{L6sxQyR~r ED׬ R E',\f/[ r!{ߐM8{T/ \e/3H7%8C͇"%0edz-E¹ꡨƕߙmL bvBgˠH͟ħؽ1T:?~eL9xq jQwR n>vdZ% tõNhL4>[گt] )m TtPrYfʫy *.!U3/x񗨠>Pr(!菡Q>uu">mkp |pxKP^Ä6l.Qj{?:XV.DJ\Tbc&_1_Mp+g4s+ tݢrz4V uIQc%W+s!Qk{f ۏ/^ӎ5 at@ N* 7Gw˅oJ3ߘi3'&[p$iOt^WDX Mh:-w= PeqwS[x +OCVJmU[H ZǑ-  茐 yާ@)uWM5k9 ʹfr{8YHt+hD`-p@}xDuFz"gmT•z¥gA9@3(Rp awzG,^X7 r5ښlFEox;#Dn}~.+[Bdk|_I}ݻM8Qkq`I{I%oWaȂ9,ݑL >}taf5!no.~-dtsRq5b~AsjQEk?y7UD`vZn%lK`}Y}rA^~bp`v{fI*ѯQ_p8)+n.K](~B)Tyg>?AsL]Xc %6§nm|D;~=yaV:])r^jmc>f+sGOPtBӱ(<6\] K/5O,=y"J$,S#qwn.!=nV)ߢ*R9#dB,o$NiY%j ,m8J\GO 73$"T Hy120evT_t9+f4#61XQ0_\\ۋD?n|DN=I=oƛB5Wy[;? z2im)Stq3|uE+-YtkMBpDTB2Qn/3QFKbꓕZ+'X)qG',Dl_2Y.eHtOAKE !ȕ{p g̥ucʬ~Pj@.M3̾-hDrw{CWY1GD"tUTAM?vIn9W}D,.Iݱk!^EaXD:/Y`Γ1y@cMeQ[ 9n3#4yUM;fL(D6}L^o $UHt16}:{~I`K5wñ` @tR: ;ǴԤ%!u^LA1Ф FiI\ͯ }e?[JL 6ŕQl:jժ!qb;v(~)m@cO DBMF @*ۦ=~怛 a͂E“FaƬjZB(yZW(87z!j00<ůZr|Nȴ w2[x0OAd~7 E_]su) ّVK^.Q\=JHXY XhfV܍Go&AG!3'uW):cvaE+ztKϸ}+ |ѳ0)_PH59@L@؏1NPPImk\$Wl~ JdZ9v9. bPP@(R b~O{q\gYR$Ĝ מn7`PqZ<@]V|?DJ5?2}3$$K4isbTbTuSNIbl~kiiJ[{ +*n-7>cH5L 4_R }mg]4?iFt& bQ[Dkk ٕl !,bMaT| +B߇}㹫{wa*;d]\Oϙ$!5 vԯ=4҆ 656LOǑaz! W`^!?pI8ϒ\SCf@շPkg{w`Xc};"Jg]3>ـ R_B0Zѵžq.yfx-9Ԧȕzr=F|I~yiWk#"x=6X Q鋓^}{ߵb:Y NgBɏP%< )b77w[7mVsJ+ g]bO:Z~6=GvVd%U6~:UY}؜,0ҦRܜXz1u\LM3 ^wd9h1Nnp(H6gTcia!&Pɽn ]EQg3V +j:K)^w,%3+@r*;)_ϤR"GioNJgw[٭#JD 9h湁t ۬O9nl:f/Sx$3 [Ig2rRP o ]+dI_5k0Yԉ{q.p/7o/vɇ!'mEぱݗ+&wY]@fڙ9_p*ϪC>-g9ZsvtN 4nqE4lZ| 6^L?h */p $4ȿC*ߓBJ ]KkS*ϔaؖ+rt [m\D8ⓨ9Z'Yj+S[PMSjT f}0(,D#rb"V>lrIcUc=n*,F4?߿i{'ⰫSN(G (,v5XhO^0D@j,FuJPf5n`>QiWVA??&АچME(/`%'m09D);4A=9R:m{_qrg0 4#s׳bJńmIx#XIʥ(@S-}5Z]%!|؏CVa,`e =8ciiǟQIoKGlͯ-0j k4R9ފ F뉙v%z-ֈgy֙M^!M;Co0U4K#ehB4J:8ViM7%{9cpǥ7Ҏ&!ʼn/}Jk}->]F4`7]k5S7 { V;w50nlӑ H8+GDofŭxIkgWF j&ye?EMnQ\aRZhLBۮGǃEq~ dowءyZ-ǃRob͆my]RU42|uŴ!#(:"G@xNRWH`ix-ѹ'6$~MqX zNEM5D޲K=iA.q0/L=vaDEm|"8M (#k2["7IH~}Y`&sSX '1݂ W_q3=qc*y -[|*Դn wa}qItOGN]{rkB`a8Y46^w43Cg0\PD-U8̑'|_."y~f6u9ӜGzRF>H}TߞZ,^Ųg/ig=OQ׆%T""̫=V(3RfL2T~uCZ+fZ|+~hkSymd+#'Aj[~#ʪ濄ڃֵ.kghiI 6KP>I7e;z9x4qE91Ǣr Phfh$1)C:qäQASވ׷njjmVq6e=eU7 7+3F~&"|^UV+́zOi} (df@msqɺ { ۽"!^;t8O=R&BzB=E;մ"0才 %H% Ge4旃mFBoֵ4QJ?Ǥ'!rPaa&AbFuzTn]TԾ8;&O&ypb_oW!-2&ujiq B/.^Oo԰slӝB}vH/okD/PL:$k֞˝Rh#)dP5W94+IGT+py ހ6ETd92 Z-u2UX^(*^1P)m:[BhH 5fs\, DiÚ -G}$vsv"oY:btrj:c'϶͠^e10l>]5%t̥%)ձjbFh*y#825\Qv)^<і+o :d8/rarBT x/st{X)>8]1?ƥ}y<bu4$Ǡ IOfaO ~j3|>P6¦dX t.۲ Eg qLs,B4Y$VLy̟J$u}3yªJ[arTOj{u$@-g$.;؉W"1`F]cѽmipx7CGz┟m=ZpFDc4rU{D[㋉Pًpj1ew޶VZwOIu*-͂ЅpCWjC$ .Vw樱M7%pQP3Sg{Y?P)40k$O5 'k0na%4'˶qK?cS7 /4eR%s'% zh֩UgDncUՌO3n wyST! T#(I{y dI],B"fY鍝CN6hB6LثfZȀR4ik<6A&/ȥ4\0sp-i@;>R@z\YP鼒Q>Bq4ø9"UZ%.7Q k)>[2Ф &}TGrM8K5N ^nᬦEh-5hZ~~"0s_R1t܌r 9ՑM)4@")ۜtT؈a93Ӗ"hO㎖ }fa#^EH%?iq&Nw2^[dksI~LA WNZ1Tu/,bqFjQrJd `= 6;4N"R$X3kv:o]hB;i0I6(M "ARܢY Or&MH$H*kDՌ~z;obU}tQR;od!\/괡(&8ldûu5wE]l>?7 K~8gÍ9;&Lsd36L.+ЅA+/)X؀z +| TOXEhk萲`>*0Ax7}GkCIvkaqH*,]'|0Sq P'a0@'t4^%^H%S@FZNUk[fIl|@.B$&4b@P!quzn wr% j}qaۗ+ǤjZA-*,^n3B뒰K)a!hy 'A;5J=6h̺rUOr}c;92FR`*Z!JַFl̍=)O >^~(/M34pU Feߚax`Wi69 >mW4xqۗ<% J >ȷuJ) XDp]wup&{ -:, `ll% '|S]HEn1 ,}evZF"'K.~,֗ϪoXQIb)9Z4e܁*Q',pUFGLz~ c736% mQ:56,Jr*)q]0Zx\G"daaѵ_rg׫|Tw95\Pnj&#Y/ ./bWDg54D6/]}l`>˓r0Dcr5pQFߩמԖx &0Eoms~>>Y?UXAvB=X%=od}Ham1}$Qϵȵ}ˋP6.0dolGrd=MSD6m%Nj7,÷a#Åu 9?䥣sR( G3 M_싣Π (ɒ@NJc)t,XJ #\}"m@jR0jlׂ5Py]vx?)NmWA `yρxV"p"# ίVe>DG]{lkϘZN ++_,r 9fЍ¡tiĎdǩrwyeK^*K9H9_la(1{O 얈bQkaIB9s*+#ނFs(4wxiWhf%Y č$["wf}5~CڮZ߿РDiEJk@Dy WڣC;(fuо7=>N|f`6}x yς]V0</NTf}q&ZX;}mw֫}%QUse`7ݰ/r6j$iqPQ~!}ҢZ^Z!$(M/vxp`WO٘Y3p}x{>BvW!dt]gW槄5Hc,]3&5+46=%^;"Oqg0*@-4aVcwҚ}1"%JM4MiLc`` M ؿ19 n|8=T;%gY`VYXI,Mig(#!?72dj:}w ͕!*pUflda]hL(XTw AnAHs :f?N#Fsult9LEQ z/_ "_CؙJvė;a}ԁӭIA~eˉbmLB ꒔ۡsY)yW-읣kĵ4岕6kMRz>k3a#o7FOEz!n9+P8sӐu8 au;.u@/X'ljc K=8fPg&Ҡve,TnOė9UKotsa?F*a O*R7KQ W8Pm/_k#7]d0:fiQ6ZC `=['C;@iI [oaScDH- khfmbb"k3OMi7U8NhȒΌUy"ndF3Cy0x:~|v^v7%Cn1~t4"^W]㩷]Ɓl)|5Gc";6.!-NJ[ ]e@VTصL]YJz2_еBW2Q݂䃚)Y9@ RR(2:Ųct1%nI9TIzA`L|Xjg|rCN[$3jgҎ=w2!>oڃrxaNh:gz3D,-L֪Y5|8?@LVG`br]Qc 90R fG u]éMn򼽐vp#10V˸[@G h˕vQ駑? eK0"Iҵhȇ1Ȏח!zpx2#k\ȕPwX |%6iT$As&. sK^F.kkʀ Ozc`x}$~C+tݜceNE/la g@ =2RH)#C&)=7?f,q~xMEK \dXz # W/ѻBtwk فy韆5GU D^9%,V ):.ތ 4pvPo IAl.3HP|I5 RXWoU!leX e,|؅x C.\,kD3b%nHAed4V8: JG$fsh)A3ѝFHz|(Ir2[ە3^m/FUH=|T̰:>t6ijx-J)y m,CfVouŇ=9: <*0%|:!u!ȦîP kYg8} |o3m(kpB-1ᜫ"͵5z Q8j>K΁~vܾ4]ɗ?Qrg@bKE3wn52g"_5D覈vސ֝.4O1g:S?BU"T#(W ,RϰERI)Ǿǂ2Q鬰W7S0W6.=˨g`I.~IOHnL9ͅ 9q1w:o+NK=,XbRZXCkHAUc(/pV hzѬ`@+` Rry:a"%{&J\4]ouJxW69K|9@RBэv oTu9lv&uAvD3 w[ _2,+&9ɡbN_e `R88kv& r C q$hn J|"hoV})DDQ=V.#@oaM4k\@CELsZ%ʹ tNAvZN>NȨF,~ztτdz9roX+$Jq "rk$L=* UhdCm~](@YSDڳR;u&t#K[]3cvh)j1<-QF  [Lo#ȇ,b9F}˫& (Yԯ0ɚ5^|Ϣ<r*_k>x#v4)+!bݩ7LDyK/UA׌Mr:.+_)"{_6*!@3#u7sWͬ"9KJU8gCF3df쁬?(i a |z"ȴh+|HR/TEg ?[/rn>Q7hM|Q =i{kz##)w\*6ޛA:Ⱦ%&ajG18e!t_lZ2dx0[ i6Y6#u!KA d,۫&꾔xpFhN4MLcfߘ)Zk%9Z觷]_\Ep޿WyنbݽVl4J(\s(ZR̃T*4N1F u`QTxvp&0B?BUoy^pltGفں2]84duV'ʚ쾽<ABܳܶYQTnF^tL \bqp9f*yF$CU  0Uk?ؽ\ R ڲI2XB?{c'¬MjL`&^C^J# B[>`,aCts;Vz?_1IsMv5'r#+[0Ÿ#=#Cqo|\'(BC瑵>M| 86F_oi'(r>7t#GGL+9'\~CQHV$PilzEI7&"uR kc `^ ,R`O)@!P(KM-`IS*3]hJW1`Q!#^2}ie ٣aS7zp$օYjgӅ)e)aO%8`L粒2nnGZw aK؞ٷ)"Xr`w+UYDX8`Q%#ds\3[R< u+$8>b_o-`]:=wvuLʋۘrvS;bj_. :ںq@.c~FUcI> m}頳痋̯zM2 @Ы,2R[r%u8)(V x5SNZ2Ϡ<"כg“yqQ)U~&^~GήRJpWuj:2Z> kR)ΕډrAxFr}geJ0ٙvXd` tYHk6SאHRqF,ez?^ygYGu -0L?xY[Ո#\]'1(?5\~ ]nPFor 5*M][~3+tI/7֕Ts5R&W~#H.w,9+`FӢq B) D2. <(U:'TIC_oruSSq;P .UYvyRo',eNbd_ ;jnG_ NOoCIPϏwMFFFuP}4\OԀItZ\v^b˚sʹv$׵FAR_>{\MHזQ*oc, {`~/w d]a}q'k; 7'cA MH=).fm"-Iq tUƛt_B@%GE%F<^tЉ 8-+Įڵg^Z ` AY86YS4LOcu6n& ϋCDpͣMHINSE$[e7yí QtaP"M%N#K&|<0(*~)M^Ӌ'@ * Z1QSҧ;*~B]G x@@SW60@0Ҋ웕EX2Fq$] 'JA' 8RK6%QR("c{~S}5ND}5 UN VzJϙ24fEqfNTAq7[~!F1U6s_J)ngi1V}a|;=$+0zA-%)G}&6Zs@W! 5uV^4P;a^4@91UtE Y k֕KS7N^00ޣg*\S~_74r0Et|IÌ_9&qaL}:[>͓V6bzcDS& Lآ_Kp7r<^!W9 r6J{]5ƒHe_ HmeZQWL(X44h/$ m6q5/)Y0J4NW]L" PAU?PHkdsXf_c[΂A #:5bLw?yob먨*Sٿƪo-iήl%~2i ;) zۦ@ݔh0:` N g-%}9$NAL >w1aMhKCq~~X28{_)2?,\z՞)ZyrY?M[{E=KLOTU7GcYfs g2Ȍ.]p;~W > ˔zYs,|7rvѠ/)f& B5;sW]KC/)RQG Zh(Rdwo+ lȎ7 t?\_>{ڮ,t4S8J5 ?N3eVqv}b7C6 R BL !l'Jl٭؛֥* dD>&_ը WKuKg@ɾNLRu%M@=b[WX#gIvaD#$"E've95Sz~c.:YII(\?$0_DcD:8;)+*2v!>gad3nqbl{>PB#w*b\ iW"ѭHʳ3 ‡&F> hPD{GҢj~YMĹڇOt l,*\r*1*-$hbS; vo, unw`fۚP.P'jYHņB[{=%A&ݧo[t}S=$k8 ΥZ3zKbUOTIx=&=̮R%łˆs֯dIq8#N>T^Ң\Am"?.SoMѤV8Wc[If k"g;gI9&0qw28շI9Q8EI@T÷_=gM{"y;q^y/(\Ezeݍ#J wvz@k((DU`XȩoTk **/8C/dbZO%2XZاJKmO9Uͦ p>SI. -#L`ln|9hnb_ZA˾( yc{:(pPMV Ҙ6Ҥ% SnE7uПku,9KA\ㆎvAuc -c#rOZGBi<*?=Le_nu[ B)*ľ8g^8>r舘rRbv(~Z x,a;b6_7wEKg{X nl/؛_UCh r>FǘVOC2t| PRE@<]tGi^o毉!$StjTm/6XBGOb1d1wųcGS$V~0'7c%Xuv9Plעea2QT04/F%^m?x;hiG߂G"~:oJG'G N)XGDm&[ .n[-&_<<w |3Fժ`qX"48vsLKlSXO&y)@(VbUQ`vgsȞ<=е_a+)9v:f;t 2qWDc(?X p*䀜N = 5l:b'@;=tG}Xc۹wTGeL!Nt9ao' RǷp7/3yz5K޽0-6qJS{G@2ݩ(`9GdE}?Cxf̓Er} `|cCn]d}7NUT1&첓r?4 l-M3!h-bzzd+8ds1jw `YٺRBp\,]v>Z>##XGDX3Zb4j_B{"U- @^b6o)$j1jO{SVt;FЌr %Dt~!ߓ;uND{{E]eN{ūjKr}eϛE_<{?_k~DGv qWr4 Vz#5F#%uZr/yWRF7U:/TzI]c;O45DtsuX4qF2z^ɯa[Ng'Cc L\n& P8;aQH~`~Lk5уt]2dA$u~B%SEvct!*001{/YR*V 3n c k2bGWzMs-I ~վYx!޼dO:A."Oo}G{Tտ(V!z((c4(F^4-TՓC! >o%{6d#1>hf$Gz9>d:C%[E<]viCFY)8I751"N,d4GcrI~IZ2}ImX A 6ﵸ4V )JϏc[_ [$fӓ G;A̼`5uCCգn ٓf;u`tuSkڰiŚXM&J5wCst¸E 9T),;320c4s9 ̫hw3!É!54yjq RS>_Ǜڝ Ow]`ԫ`9x{o=PT3)2lw>=4SE}s=xzE/(ݚ2T֓TԴo?/A]L;.Sh=gt-.pIe+Q9WɌXa U p2*^~[h|{|$}Weu.S1 #ƥ8cs!Q%ejF2/mTƮ Cf=$& 뤛8sRuhڪ+9yhvt_NK; UN.>@JE>4pe]鉥C3{x,M {; 8gd(yRͧԅ1NGSWߙ*<&jM%+4)\" '~}d0CD҉k;Rsaj /]Trm4A3M\xrME#uɾfS3 ŎyFW>?)D$w9 8Y-4= =BB|jYP@\d}%y)י ޏk!,, ƺszK"]zxa(l|٘@#FrGqEE;#UʹnV-ܨ{~g-/Ţ/F\7Pd7'fbmMǜNy&5iP6u<rXͭDyf]UkkzLT ճyE>1uVE(.(p%G,C]@w2iR]5EEul,"<@u҈MG0)3.,ʸ!,Cm5RRq2vb$yLO`_$Uz029I0 }זυ WZ&k d,[^Ftkɞ]an}'P(T1~RR{ԅV! y!ːBگ9bk7 l[p.ucxʼns%gپ^D3A"+H"q];"jcuԂ1­.܅v(I^)RѬWgwJyzAF ƒ߶;s7$c2n){ffc:E2!E/."$Fj{)ȥmj*c+lj =U 5w7XO=Ky&.,gi8ux$u n-kNXvC.nJ!ꙝפPBYߏܿ*fCJ߽eݴR^ ]uz?jf:a,R wg@ȳ408fްґVN4#|+s»ߗ[&v|6n2;78ShsB+o|}AQ!&r#~Pymaֈ$g7m;?ר4UkbMCՌEP6ªe?{›fHY仱Xgy3OP@PsNDh2Nq%8oO\ 6.)]VjzQءC6 "RphѴ/6#}y,⪄߻\ ҩ%g1| "PŃ:c Ibx}2t5 ;+-M^=8kO 9w]x gxɫzE*ArHU"҅U3,1k XĎ FdfjUߡ,U16>nA%0͕=i&>eQq5ˉԳp^ʧޯD!"?^{g^D74VU6)ϰi4%*e@{b˗"Zݨb4ǎ;I^6@u|D!V  h2E 'h{(#Sto.CJ4P(GY,`Ab-l6-*]6Jheû흋SzS6Fo8*'뛥ja&y4D*g M#i/G?4M8 + lhs{&2f}ICuET! ^KSKζXBMHIўD!ϱM 8h@ a&斔 ?~^ w@+S &&,K -SN6lԯ`mLJ\;4\j5QzkdXga=ܝ\ZUHsJ^̷tQKdsZ|/CɶyX[ &j&SsR2.J,VޓKs W=pqCbUv/&nC wqC_[;S:3Le{f?f $(GB*`尖٢ ɆeX#\r>AדAyvaXli-]O(.j t\#hQIcb.RouZ(f/}Rȧ*`?'b@Nѷg#bTڬZ)>j'É'A FtH^#vkh{/crEp`⾼ APG,XOSc'Ò & 7tĦ.n*fGne6d&ٶ-`⎼:ˬXn+ysanП+ D;nj }eؤ.2:$hK<Խk{V/+qhZ%wpcZ&+#ypuVŒX]{3jXBEqqU(G#OI0S6)Մ3 N"[?K2Fs(Lmpya)@Q\S@*FZ A>jST,3/픸8c4̙ cͅn>s'-a;w W9ե wh(`:sUee tTˍ-A*˿sWM BIC*~G8:_죴Q|Ӽ4V\&;]c)͏v6mHCJQC; 2a{&>lZ7T<{ A: ں"P;@րGy-22Č/#< _7sPy%^C0 z4܏' @ ce1``.R3Jsv5_e9嘹6L ȯo {¢Hq0d>i#d4`?ADZi'm#&j ɱT 0/Y@m DC̬HX`6nd3E"mxb]9a$}FbT7R׵ U eƢUocnOC! i3qSP jr{Q..J9FhwfG*`śE;+_uMy@0ɦAv,r T6'R/8dN=$CU;ar^$wY"vJfdRN/{uUs1a1}8(m\gB:~6'VsC}|ξ~It[ h%r/;dKZWo>K߮p:jsIc怏fx Z Q?s+{sap$7!Ȟ4APyrbT$|jd_\ 4Uvʡ ^oc :^0E?m EYq(,aGa sIv%,?eS'~˕ǜ`ya[ˑlN"a"3u71G4zfHNO@tAEE -yi}Enܓ0`Q'B xG FWۉ6ԕ7"Oy}Yy+26WwG*~e#:T"gEY nJ7%RvDi_ՆY(9|R%6 x5/t0 [Yj r'y feAeц x+8`mòhʾv%5PhڡdV7rl` ȩ%"6=J~ 6:`8{H5bc*?kseP&[wlSq3KEvTI* T'4@cN}6 1s ]q/: )p4#)9%«FlѪ %NڰdÓiF"=o sIL6M3@9Ixg"w8B1yo3xdLɚ>}j␢6tC)oA;6 WA=)( b[qyR&_eS)<sg2Mte$fTa'Ңr;: f~b%Ī(*~ې,Y*XxK}|%#ҔS8;ӱ\( X7tJuп(Ysऩ[X9@O>6`e%ے(8ӟتP@/ߔLhv7è"6$OAi98}9e&+A;5r$%]y5ć]Y^z`|\/ZQ1Ww>%PM=6yΖ08li #jLsY\#w2-pJozXf'ͻ-Q!#U Lе w勉G(9䕯;Yd)/AGV y+x 0D(wx\-dK>BgͻES a`'ЪXHO߽ _uZl4m(ޏgjml,j_*v˰p~/ua4:GZ}FR'-O+IpT!S$JY-p-+y_wiX WŹc'hя~ƞ-ۤ3Qb$HB)NԄ0ve -TԗIFHQ9zftzĚM .fw 2I 9 Q%h2TUh7ru5&yza=s@cOt]!4 psB5pKh!SsjghD."J3ץw(Gn=>\` Ǝ>hazNMzܐU5 eDR) +smU4Byay5˳h 7:t#$Z5F.2oYc@?4gi •!Sr F.lxǢ=jP%xU(޵MtXm jd֯ 9_Ց¶V҄+'̲;QK5Md*"hdwH*b^䵃t5؂ZI3MfO>C^\Մr0h¾ jfC"aZW"Vmh#YnciGdzƇ"g T\aL!OAVrG&H}*"@y9b@$H{mEdZ40Ӓ2zOˮyTw3Ee8,3Z(@Gg qKy] L,UWa͝@&;%O+&sw`xlw96Za3c5{Em!%q +HƠ& w niK)SiNCCBS]߉]JDZIoudu,pRoDa9Vl~ #-ץcBLe=Ⅳ^Kuέd}uVZ|#=DN.ccln+'Z$5ŒVKxX/^үThԱ$½ P\4yTiHf(a5)'.K== 7rY5{- cU_W_{~KJSVVL݂`sO\/9>KcUz H we<Ѩa*WAq1!CctYzyyq1V?l v|o]O:$hq$ere7q?-= 6*[ƯTk!o$HVk;sdpkNQf{Q(f? \> ߍ~ȁYr 1~k'(|5}V}]z%4yb!ݘ/淾 ZV%Vgg͂岿aAתLB^-DG([LmItol0æ̑NhNRz9:N.N̯Ut`Sz3iեӥOC#a >@t7J^P+U0:cPzo1aCVSr4>;54KUa jl*KH sVj:-ְ}\>;K[ o*Ox8dxGe܊B_CԊ'g#ٰ,y},B\\9B(i[gaH/PT!V:#Ɓ,rAuևU]ŗ`q;G@FP'.rպmękgУV39UijAǤcB7*8@}=Կn+|[d;T,*(?qŕODzyDKOSBqMM'یISJO[A:WMj^0Z~C>9#?< -AC񳻁M ӛ ’s'F;{3'~ߔ0č2ʈ%('o 7CwŲSdכ?r~ɉLz(RJMmxg`:dukH?0x^ѱoCjTvḢAln=ð2+rO슉v]DL2}0 Tir\絆 )'ZHo[U"6&']+! 5_`%G"1Ad7?-CApGȍDh@1l2SN T,].6 q*{tv~V4Wv_C@-^ $aX-I-1Ӷ*0o&3'&IF~_n6xݣX|.R %Aۏ{wy΅(Q mQDyYWk0g-Id3UVrBח_" LbyP uٵ,Qʝ{;=b*&47nzӳcKJoXтăNV(k׏XnZMggBD ۚvϠwޖvLXNPv\xHz4}\z/.p+V*69,_7&q(R׳Yj(򕠾Hb $$ٓMe_ Z߉g(+ q@cB j5t~_?/[SpL5Has\^-1yp[#%ʧ\|jyV-w~*NrrW|ȭ-`-ʇ.n 6*`p^T<\\?R&ӯX'|s_ ;9ʗ7pEBeDHzg@u`q$No<˚Ohz9bߚ\:u ؍ftC{6="X>mgV"\} 6)_DWL@[am!;N]Oל"rM4Wړ`&k)ʸ7Nt_7Hc%]yr~꧕w"PyƭY9wWn(#W :"j=*#s]T!0CȦ304Ak^|=Ӌ$Og!F4ld>aџvno7qCeg?9KA^@BI[BeU#F3x,z#Qː_QC/& ĺHNt. ߘ\dxX=P:a_.2*nnX_i⋟4 Dmԧ,"D.fVΎ.U ojuE As:e7u'qFM CMx5b-2yC3f}½*䪽K=oA/}ʹtBbV{>kTxF31qܪ/W"j q̯>_4 +|fIVKD$$P'ܺ3.-`m>{*q=ZYN@`σkL Nr;Dg }=%Xeɱe6kWVy nPJ2 [C븯+1u\qGN'JYCƧ}ў^]Zh:lN83|h;b| LڅuaC* "ݾ'l5E~W ;zs CBk\M9$DWU—0 >r?M =:FD H-Hw)NhU|Z&l(KD&ZrdٿF̺oSPj~ 9YaCDP|lQG+1q|f5*Q6߯i Q@UOi95I"&Nzڪ>Raw8cw&C^ o+WIM*wT_F{⍈F/AlcwJn 1çt2o x<7iJϝg ϥ)+f V45s"\xȕ @8 HL+K`!n'-Cf8=8d gYB3(u~KtLYdXMo${({sxhl/Zfo C+"aYTBݕF Tqk?E1jTVh.4j<_%1Ant%)pZrRT&觬dpӎ.hż3JHjZP-K6(ˏ o%?EbU⨼ uc|Y{( E[A?$lN[#xRej^uW1jiƑA1⴬odp"SBKh' @[0E|N163ŔU+ gi]rfݛtnM < kÚm o;>ç4xVj!ZJx.u0%L8Hh~' jlfmɯ*;3J_9uC:" G P2x,9E;WYrֵS4_Ly3{ʉ!L-QLq멳=ۜwשA)W;&թp2 PQ[]h4TL&#Y mX.w$9a§X#˽ y%Ylqt xW .Vׅ5^-ӫݘ1%e*ɭ5 A7{LC?A\p$||ur GHwvJOQ A4 ;SC,>4^k2 ve5=aiNu( k3mScH/9 EE[n w'pkLi0,IGe4&yi C{z4;˳4&6JߑpԬTo-YVo w3'>$3ϮDjA*s֟ݖwmىBF4))aGz;wkQk!~Y=OVZ.mZ#;Js%Ma{FFh.U{#voB`F]@_šzRw2<15٠չߋ3x\|c->͖Z#mtry֠2ɥn1pNޱ|L\\[|I(DC6u00R Fm-kLU7@[⨎D[vy5?YOpwٓLjl8TnHj*^ට*Ƽ߿$rų D nTC-L3ἃ%lo5t2jT 3"pV|Q_l}"_Wsk_0$*֢LDxd!%Ѕt,.W} uzZ>.ZHf*0OH @@i>RŸ4QOfZ;zMV +'9):ݘ~VK;B " "usZF& v-$;Q _t3 :TY>Ls|2T)l$ ݰdAP^| hPۣ@Ew80s1d)LSںUZԏEBJ(LSLm BCHt)&hTUV(ԗ#7c?mK (u%A~4==рy׋*(PLDlоqVV:üR F<9vY@B {ϦJtFMƤsud XtԽ;F((8%H ,뱫wbcgӂ?)=@bG\H5- ]B#\ln q!orG 0T4jO?4}|f(E֙)_{<[K!cH?qmoEvK9HN"ēj>_RԚ;BE<ʅs\OBQVI0NjzV\>v%!]ޯ( FցBij߰Η'HGj"/l_7%[QY]Ua/p.tUiy3{-/&=yU{nG,U394gq]4/f[-`=x[ҵXls E jxkdՔqFY?,~c!b0p0 a5>sҜ2҉iqurp;#d^e_ḳ{~~efXB6p 9pʱ7?&8iT^z9$™$:7cCGS|}/^A-+8}D ס}5]Q֨ yU Z$;b~..ȡKnƭj,kh0Cc NkR\+#Y%hXd>`^m&u !%+NQ3my&"; _އR^8#)+% V]8R?sH3۰!E5;)ue)U1c8o|TU+1M(\ݕ{B5}?qldcr^$,kզ麘^.p&% ǭvu" e'ø?OUxawUKxVp*9O2lYKLy@q(-VM3wʼn4Gȫu<>tnh1`G:W<[csVYUL7ZerŵiJǪ#d+ yR`!9yԬ`$I! h~1%H-(Pd_gK{!m긙m2LIk\ď$I*" \v+n'"|Ti'x_V,EOV0s[9_H,51aeS<݌MbSp[>>RzT32^&i+MԦМE+/KVnktMsJkI,oa=cMu{yDC{H U*jNfyŒkJf_{D/| N)ޘ4ȲaoM쏐eKl 78Fߥ Ă+]9M`A*ݹNҶ#(+>-AZZ!YH |A*Jx#LՋц}gOuaQ;jlo 7۴FDHGGJqe7Qy5L+X. (nͣ,kv!%,=N'OGot\s0D;[`SŸ<ܱ`G鱹aKZ0bǗ>vmm̱Ts\3ъ#`b8z^F^QrQsn.pLZx|9 ̦ר~<ž )'DLdVNuv<~L)t] NV:ĝB}m&VB>."Ŝ]S[ȫ0 !;_1rq굇X3(KT~`s*;b gbԹ4+9bՇsvsD$0{O}.{Ӯi8qb^͌x6u05]Ό"*x5}DheUi]'?E$L@K*= yFԦr ؐ }1 7|+j AoVHno@EWxta Ug&F'[52s̑+6dBƫ;hn⅌N-{f߁΁qB$$ +*tN:AQ2Ƃ KtD~P4dK.ה j>PdkZUctm`AsVu#cNp_#u&NcCꦛHNSYJmX $)WRya`[1 >W4J(v;'Ig(=\()@짳ʐb1sP RCnPZ؋G-^MX|p'?寞 ,Hzw$œG}0\2pvWJ`ML[@[U[]˝-W _axpx[LxQQ% W]@by<-%nou$]5x?K*7Qc=ՔNs>+K ԑH锲LZ&|+}u/$- ^ss{ dɾFu[kN?ݦ)%x^?3J_0 +4r50MiِN!$7 ѩҲڞL25y_9YK-Rs3:_/G]*TmQe&{ζvpeȌw%S$Cs.ӽ[թzr`)6ۢTu[zW7}-x.QWpH2Iy_$Sr C45N4$x_tpfSKhjƮb{(VѝY0B a*'Jc0(b"55⥾CztUlStT%4]HYˣHzt.och j,Ŭ~jt1rpg(a&[IV@N~̚8:NRfV![g&f:-la0?{tE14er̄úv7<A,{]̴֭[@H(w ḥ,칳D+y`RۓSP$x&9(/=vv&Z'aD_q,e!o{goH';-OixDFm䫺5ߜ0^l 5h.$2BT.x#e5G"0 J^'׳xnΤzE"yqbZgsRTęgDd[8c:}Wܳyx<,JLI<K*^Țy)<Ͽp ?O&e/vΡNۙNT`{qu#Z)bTQ8y[\z22Z5퐅O!= ,u(<<3!}pJsEOdڜ\' rd kC<#M!\ZYOs#}Vv ,BP~x&ȉ{/i.׶.Z|/(%J~nmx z^)7`PPEgg\ALYgYczAHhOQXi^D="eAt%t['6.^ / $PLl؛31BH %K *(\NIJ 0ѹρ ڗG &ӌE<\'iŽw`=3)V7k*@ARC3"+bW 8vɠeUq3ۉ,\|{ Nx$F㛹l< lNYNH /i6$$Wsw'kOT),!&5]P':fP~xcQ0U{Se3z#GZc|˳?T\)v#㤐` wrհ̡w"&ɷP:ǾmsZ%zb[Fœ4k!pEZo&n$Bx>̷~$UJoBr %"* ~H_`l1#A189^|}pHBJ{&^53TS%b7 hBSbS:OU<ٰFa~ϴ[ -rAPHY"Nja\7U!ԭXRvCNml _$jiAo;mn*N[x7`)3;T(FRi@#[7R9x0H)Ia2DvQ0$ t2 Jwcuǃ+6v[UYAfy<:}Vw`&.~:98\~p[?yAn7<=>AL- ;NDCw?8>G0Dqx<:;wG3ma$KJhzO]J1,7ߔV0Ka#o&ݩeEaR.8| *fEz=JqKy1&0>xԖ'3J! iu{ƻɻ +v\PGv-cs:K ȡŽ|Rʱ <`5RˮEC$ {I8n ,(Jh*VVSrTeu@M`f2`^T!A^oxN;u'(MF/ɎvH#hRPcz<KJ8cX&M`"F~AGkj}˔3 g@[,"N:91%A+=LJ vb88ɪ#S'CƳi]b/HBmZꚟSw沚E.pN&d2qTKoםSa|P> >c39R}.`|}}Fw< C̼$6XܡGΝ}-E] $+zl ''"➮s.#(Yششգ1LIl0J Gas:/Vv,<Ҝ?o/(F ۨ2Nx½ꄲ[P`\&)V)ۃ_)&Jʮ:"=6ܚGtۂH5MHyQFK0ٜ1W zDحĞ=+rzg|Nцq2P lkj&f65>7 D)mlזn<ΤyW}\ěVuih1D,RTRBfRMf!E^έvBFDڥ|1YB.D > 蓉Ƽ#(j*f$ٷLȣqjz-zhɃ{xuwYI̷PfۦɪjShrw6HCeɧ1 MxLr!U H^˵O0Ik:0t!y3I]!L0| c.ߧl6]<&]k[yԉ P"= ~ D&>Ȫ$N~=+nD׼HDZt,>ev >lqJQMZ1MĪuumiʭ>٪DQʕq@"IӰ[ZtL @ f#xbjB"rӊ2 JgJk=%vFNz3t[g" *rZ7Gp,4MD~x4J !(dx+^3/T * Yo,)F$8ћxpVV :?ksGZB 2# .uSLb|+Jv0aYЮSin͏U@NuT;s8DYk/H2ڟe  S4ͫɾF&W^?@d;*|A*<i^;UU.$ma#_rt=@IiMje "nz$Ibs \Nj6!z}uHElB2ωxK@D/|Daʸ czU,پ]2\'{H\_n-/VOۈL 6=.2$bW~sڼ,m)"NGltJ@ -?j=>Ubͩu]Xt9`'؎|Dsi|*I\n0Z5.r N,Iݑ:nYI6'!P`.O9ȵAy$hA!$ʻAwM׳&b9>!7RJޏh(AJh&+ FUUSP*5&jSyҹFǺ {_/kObܣ ޚa{Fm/(w-Ld8PeZ/O#NB,uwHw-LďFbZF&[/ lucv!XxN =W(d>툅o|ǨErUSv"mq)+G'ÝnEc:lw.[dVkڪ԰~&VwtaL""SvX>N"DH[wΎYD #Eϐ@[S}]iÝ9B[_oeꮿ#ϭ{Oӷ 1sAehqgA'Iijv f$e1Ғ4ЍH+(Е?_lL1mt`j +@ęlk +$2 =Sz[یj}\^J <:!3乖q[g 1?R}(\żL{GuBX]Q+ȞRDD@~),GMnsYpTUxx$]kY2 A]q׈^7 יS+h0ۡ8R;[XzSΦ K $y/E:l)߃@+6MH+K^D=_2?ٖpkӷe',)P3sqnޘl"9VlL4\`Nf oX)L@e;\#ݯXqx]XAc[I{i 7V,mi?E#?# oi OQȿ~{岳TQw1K}Yd?(s`HxWsZ@8H8Ᲊ.74CN8;|i1R3;ґߋ.}VX1c-]%DѬFTA#O3YnK? *M#}jJ"Su=ׁ4S‘7/87b-耒y|hҍ&YBj&Nfތ/* +qW#6kuy[,/(+Ҫ޻wG,3 FJ~e78 ŃS]^VU>Bj^! ƫ3TV Q4-K 2 ]XG^ԩۻl}?PC }h_7x5d mO{I@ю,ӱQ*: hY`b1 2QdyJv%o?Lɭs7OɂrHvٷ`k]ha59Q>-t3_se  |%V>(`jF⍏5ZҀz[06=OadD'Os'$ bt=׺w7s/a3 yJ,cG*§T LY%*\괱F޹B|]T,ҧ-kx)8EUÙTu{yr}w\ a9 ꬊyÇPZD:; m0Cs7x1R^q !sYAFOϼhṫm7"Ҍyhз# Hw[V7kN ]*\PzR-R^˹Xh^xoڅ_Ҩ[c/\NL!q;"thS McK95%t-KL׻uRD E)fURtXCu"i374|<-#DGGg1RQb+y"@bTSUjM$ }tu~D67Ǩ'3FUA3 *$nǣac"L- j86t]$|A)B{kȅP01yM p_щSP A \2+IoP6K1Du5,l"PR_^8ZFa1f:Zc /1-/*{K u<p:\aӋ%P:Yt'{Biad"W3S8+8UBz9,E9ybͬX&MR!rs-StX8Q^1 iK==i`R|yf.m/~֖:A=GQ H$"A}z@$ րxgb"ޓ56< ՞Cѡyғ.Ƭjtu)l+7LǷ"@ѵ l4d'v,T|79nR6SpA%,naU_@ӵF?`}H|D|fheUQ.QP 2XVP[%p0pSN@#F/M9W-&xq}4%QwM4ŘY0"ׄ=7+檒 fʇ>S-7d wI^XxA*X|œի+F&,5we DN6 PB R8L&,xFd0cNv0ǁ@Ѳ<8~q{}i2JXSTUK HvqĎ.\$N-e44 o5XC-,Ӑ+C B22׹[NC{)dE]:Ob,jPu&96E_a$3lE``0SS+pX[7p^Hw0Mhk)^a+T Q+ FeC0ы}{#?w TbVȮ)+`?߾sk mhwNk8DžmUqo.(tKT1$]11\L\M=P#& &gv3|KvM)`9:V[rtY.!X&y׍~uH!(=*輷9p}BX= R?} YѮ65H}w_3NRgvbހ$[H139m &f擃]uJi 8:o&s7`7/p{'[zTB{,`q 8,5>ij*Ցgρ:\,Ve?&Ea"~%-$o Uf8{G.v"2&iqL g܅cΕL+ZV8V XTԉ)FB>9+Sҫ^U1,̾$@=! ='"(/תǤSO} t]dUvb1jbޛScv.{Յ.96Ljw R` Rm0al -sE0oi1?5)) Ľ(;b4N0d +1G& ?0/Y0\ՖRsxJ.ұ|:4$uQG$\NFDN88 -QӅA+PVܸ/QiZ`maL4-uNpO$~N5%ځ-!nU:P̬Q~ZhT:AsP q79gQ8O|3 *9Ѳ.]4gZ"=01)bRX+ i³\ 'v $R~`I4;=NdX[Jd3ȭl:"yM¿&qqR8pTj\?5SyHWڋ$bc[);B*|@AMeؿ`ۘY|%%L84jپ@h \^?h|ͷҼ6fmf:A5z:zUd]qکncn!zw\5_^t $wB>g2Qeڿ|6;sѺXKgn 4ֺ7e%XQB{6Dzۑl ueCG^@ฏԪoiEϯ%i@,Ċ[KA$cEЀ uT74N*^`?:0|ea/ps9pcJu6CzB:jZWkDI"g%T0s/1hrBc+!HzcU\t]4o` 5PP3T1n.4RZ>8- z #'m JKR2ؗV}5U2 X,\Rep14-%St[z'}w}~@(V|?j+ qfc᛾OgJ`jEzřq_~n?W%+ؐ%]OSYNќGf2ξy 0N,:=Gʧ7[;*Rs?l٩1wt4!lL葨 \$jZjևqE74—l4ٶ#;aޗ~{ms5󿾑1vUl)g\ 0D#́ћﲣ:cN/ʅ$D\Inu|3,S sO7ęƷkM{HY}`8޴Z郷ofa"&&0dG iɶb \YG$S}0Ld +9Z~L2_ƚEP>P\k>t<#k6 x膇F,-]٘]߆ +%eAL9>??G2_٦( Bw]Y-ѷFztOZɱmb@ǐxw_^Wi1ti.xy|_K(oŔ]BNnz9 sK#9#-!C (: /Q[-s~byݱ8**;(82:fyVbQciثf܊0y}|![ls^7nAR+-4^ao+ ? u,7.#Dz#gh1g%`6yq' v4ٰtkt.hOZOؒYcx3'ɝ?n ~5faOjL/A_)!^xX%R̈HZTXY B/i0rW[s -.!# 'Ñ~(wz7 }TTdbDppuNؑ=՞}8@C[Ʒ?r€kݽsU RRNࢅ„`}(,WlvZ $80'dm1"gzoam=fJpm"KOZ ºx2Y%S08\\U ֬+1'\}iAH>Oo db~ٲăOnɖg\d>]AzIO&eޤ͙q7dݿb/GS\xYNN&eN|*-VxB*Mlue6n<=z&VK)iYQ.](1uxcV`#inE6Ƕ:7 )++V*'ur>|PNP734xpkzJxdG.mOs[k) O6-$ouKDA=w#] N8ɜ-YV8;ܪqJeP(.o0~.DI@0i <0Ȗe#7?:A2ZJ[MMءgeٮ’S 7\ze,6RNš2%%s4U3R핦` lnG7$齻JEhWBl2w~f_C.aaw|SξI _TysYs&Ui1OせdrJP15LNrHǖ: (JwNSD[M*M80FKc'{a&8q/~Z&4c *Cʞ>g5"{I%)Fi[Fgđ>}8j#7b/0RnUˤGΖp9YFO!9#\m9\1[PIRwyXٸii E k~!Y3ì*;>TAES,>3WURWtc@M{y>8aĔA_V)Uk@#͏ W**A,Ih ض=XtivM=}!w~d97oZ%@*zN Fc uMAD}xTßdvrzy-Q0}?//zo;E;4Tnm8@\]MN(>(q%lEh!|-lc+gڒ.o]7Hbƴ%)$<ˎ0H,`k"CXV~޿OYq5dUKb{PHwܐlWv퐳I84H^L7e1-)>qi1C $_`nմrbo hvcfH5.I qfMsre^7tkϴsӤ@560&׮4:k2j(%9`uU8J8ԟpIU9s Yr#jj.sږ_#-+Wލ{xOJwY1|{,f\tv/hx^4IѾMc4R.BW+V{xŹ A 9u WK[nop/ouͶw2܏o?b̴f *f{*lbb~@;(v[@01{~2csU.^|H9NhLdOX {L}qMZSS|Ep8eSzsSe$;j*+&TZxDα7E'3hmd7)R#GbIiі2##ő#Ϋ'v=Ư {U8< ~fGk#;+,sfdW40@^hrq`}P89tΏah 0z**i>C~ZDљe5U,<6PEi .⾓,iN<]:6 \R"#O4Aw%dyծ_XX:%{v-EF5mgcDD2J* צ՚J9JHW$fl>k )7zrP~9Um"J-1ts2: yTM_v/Pt ZiKV#9a'  @vJKuh j%~O _mFZDb=de玔E֫O4/up4+;Cw|`y'#UAY4< N;*q}&7+ea?υ8Zɯn8ʋ;lTjyVGb*w5<3H(N[-Y9:,+2cUofІ "ۃBz:XyFXpLT7]P߀=bSS1{ОY#"?5(IH?YoyH܉ʱDS}>~,,^o48&L%'+ SZ Lrn|#-9tdZshPt.na=a4@&d)TD]_!n² 5-(c;{P+g?L훀ys_!)PyvDg4y>7uZ^%NщƿmU܁8Π_H.|$F\i&]I)WnId<+ℏcu0Ap6`8Dp4=vO*YX/5K6A,w\ hBB.FMڞMIk".!M 9^-p޽oKH>;R]kɳN9c(sW¼ $J\[H9˲:>.,ch_y&u4~yWrMpARWMSN2d0Ywo]o0">,\*XG2 +o\]]t4 v $'4a.2B2s)(S-h0X S @jROyMJ]hf"A'ry3 4-v,CQC66=F cEO# \JFHoo?>f9 1:IhZ5|[q8Cp8bn"=Kܵreƃ⦼\e%Ggzl\O<"jX뿜M _cP/PtYۆ+f1xw&ͯSY!ǹhJ&B5,QD|2$ΐ'߮: ~'K OblԌbGᆰ{O`'٢CR>7URO1q,:T zrL 4O'8C՛n0SU'Fwm Ozb"B4)Ư|0KG- B/zJ=((}6uEB>Zi쵇#h_Rd z| kKnz3.5DEgU"_Y<߅a>  8|F^T q{2Y3r/J&{3Gd\QFk.k^c&7;;b8%λP{8 {1JM rI;<[p5r{!t,OA+tDq9+:Ypc7I^*|6xr,ҕ&dHx$,I jwa3:l&FL3nbEz$0]r k~Jd^P%uhkޯe(ZmK-*ՏC1'V˼tnl Stg;gBʈ{OVpL'4f MMd,XÇx|M y|`_\ z%N?r ՉaFzRky!n,6F^*$L[/6˴M5nH`wDd@y"q"="RocAgx~OV,ZzBu:jٔTc)W4ŀ(SK lgG,o>:@>XB*/pP {}j׫|tl΍(ԗD%EĖEN<ޗ͠coތz{QQdi\X<șdgre6vuṅ*|6hheZ/ #/ѡ`|Xyb[w9\`Nω վx"ӧ엦/fdzXL-4(Xđq[<es&;ݶpo{;,ڋ̪ c;-uzD,!:P6tjPNJpnU肫 ZpĆ'j=ou ʆHq͋r,O9=FGSو"дR9ISNb6A)Qõc%HD H+6"L$16Ny#\c8+MrIIO*؏F D | hW}_GjyNQv}>Kz,>('X.Dz z$+ڎϡ;mXOYF; cʓIh2D@4'œ%Z)fˆиZW2 aTRٴݓ[/`n%YqFG݌#g`-ɡy,<P^VePLDp×-^"BڭBrK9&qch%^U_ߔF1W7|M@WX.`@܏OJi2 0kcYz |XA^8Mv8nq!7mrkgRS+i޷PkDh;1໱hw!jV "F>_P.ƳY;~3A߱,72f&d`sԹ_Иq_1E3NLs].>3ts /?&z Az  쒴jKH9ޭw#[ tu0@[(sivy2uoפ!'g^ V֙_`߂~4xAMתJ/R2|I^٬ v[ګ\!'nj8tG MYr;0fH 1TOc&:պ`CM),"^0SD$]FʶXYc;_8b?υYB[k=BǡUcm1kV7ƪOXo"H?MB`cJOfv c&7~p%R$@aۋ{D>wֶaE^܁밡OAl<,$/9ңӋ8B*|ͧuRiQPn,*I<8@k #If|v:EsŁ-aNb y{{-;GIҏ̤~'NiArQ%[<ׂچQ)M.!̳"扼wFVO$5D<ĕXEBm/I$PxЗ,Ai]Qoݸ=*Hzfo)=snZ !km<l>~k zyhQ:W\ 7!Vk--ؿ`7`Gݼd~?~]1CAT*ׂPv B߶HyA mW{Afo3 MxdID*$m;8sZ>uZbt^Gۇ3w3<N;!2"ʐ].6Eǿa#/eL@2;d\om:mx͘?ш|1.%Sǽ#3̅O! }.{mɪS3vfstXX}\HLƇ[px!Jl ZۑaX pIdЄEv.IH*Z\^ɽ8S\+_ˇB r-Vn4>,LwQy21 z9zod5RX5eM=1(6rHφ]y>cqզD7S3ǝW `IY{ 5Ga~'-?Dg5͑V0eЈ:^ M@?Lx%ϰdRRf׫@N@\!x-#ʱbüGiFSF*f "Oֹ(.DC#Pc})*|̐|z%Xf!G9EpF^1dߚFafϝ|#93w4-M,h#R#YJ( @jFS 7/˹O'N8~LDv6o;JZ"+X4UC{ĕ?#,)ؔm cLhػ^89e)8*3ew71ZE|M1Js*0u.{}v:qIރ EX#JN}ʱm6np 55(q58GbG8BF^'NsTSFLB-]$.10꧇*7yYaJwULa_xTr!9bČI|ü]=aӰ̵-"9 RʵE-wu0!Q~Mjl9sS Ng$\bmZvAD[gOS.[豗ԦU:@| ?`$m"w~3ДU ,AYY 9t_*0t3 tV wtsi5nfL~] ;?\-HiIBSN\Lj,ˑC]KmcYP˜.^J|} J2$ 5C{(3*7V/ڭѧe7ʑAI":"AR5b _&7zSVb#.:`hjsz Pf댡* T<zƬIX LOdwAD`EjS:Xo8NJ:ZMt!7'!QKJl)ebl`~qǓ+HE`0j'V>6@-hλߦ 7 O3ՙEl66 kۻŷW^ڃ`hح#=҉ lN̾񷽰K2 lK(U?oْ1[/E| xS[@p(?cv8-Q 4 >_f!/`ZIIҶ,+[>'kؖvdAy,W" APvu /DUbh2nb%x<,}`@W[ VGyo(31:0Mx2| wT~T7XV ў{6G}SXNaE$ܨ0FS?oR%7 RY>0rg$~w %"6F!*OoLCcADq*g |wGQKiaNn1'4GU"QQ>"ʆaN}HRUt2ѯsˬf'DYp=ۧzZU5=??_LgT'[=[6:!#,Aم"P IgA0ef fƛ)l qnέopo[,yj^KI YE*@/r7Vy;>,'<@ q(^#Z-Za{ 2~ȊTF^ *{6od1_=N"n  :Ȣ3|a @ZʣtD_gwq:ilDC| C0J%-k9(r6=YuGh@k`k18Ӻ̷.X|<[jAi(⚨ 2ˣPꀱ02ȓyԽJ:JKbr`'@']2[TmquΧ'2ArŃu,")8^6yw)RȺeh}G :PT䞙RՎ /-qB)j2L,׻ȧEH s!7nE-j ]BKj)~6WP'X\83] D6j2]){/Ʒ*!w.r-}ITy`R-{XRqiMg,׶WM;ֽAToH11u>a]t2 Y48@+L[)*R+v0je"=z,c ql\ypE涗[ܿΦ-O׊ߊQ-&;nW$5Rk*QE; ) / }Y,fU]y$ȸ+tXopNӯW// 3 ĠqA\b]9sb x9t'Uw>TcmcJ$x j/Xb*)$Soj*!' l~Ѭ]LTX(nJz198`MK15 /zmd%8˦9t -/5LHta=IHE:-)ɳ+@C)gm~b~xqg3KM-d۴%yt)5#^HP|H"|gF1$4h\'ERz4%C۵7N" U^[8bGe:GӍkg8(=f.T{s~+Iܖq>}|T0ޣ0p"k~#쫞<tv}s66zlq{R\,kD ƕ 8B~lI5%O &=sV[- f;~'o;iX-vfmc {n^X% գP|Mmil?,%bq.Y:x FuuPavu&kU8`8E ##68sbߠ1X@<zvGYm8|XvZ=Hi Eu"նSɥ64͵W֮٪kh#LIG' #Pd=I2QM;<5YF j p,I4-z;I&(ejF.pW\?m]fp?3(զ?("f虮|)G7A_IA=T ZΝ+ǰ a7Mٳ t xkQ1!gRx :\IU6`%)͑/O>B:0(*'&Uw9J) io7 V,țٳH`YB+6 ZL qJ< A2WC*3!.;:N $nTgDXQY*sx73l %^wlLHյrҗbŇG5Z(oAz?vA3]zRyۣ$gv놌$ۂЋ7ϵcr; թRߴ=N]QH!8BObAg#º_6rؽ߫ `Qys +׍?+Vmeh}˘r^yʳ i/dr|!|X_6sQBMqfʋ׶N4kK*TM4Qpq]*P07KM?bIC2*٣;f(d*noc$k\}icɂl~Q",:LYDYaqL#B{CXH=2(R/ Bqɷ[I >F%`Zu6!r#d;4߸\8J5㣵fV>u.(Bme\3IdJڴCn焯:w5M$,PI"oґgZ|ϕ,_df w }{s6hw`HE.Kl zmW!X@i#]E<4Ũs `ϢZA49=H#P5Ȧ_Ն:dr*B7-ٰ6ƎCcc ʚ( (3Zndb_KDg*.ldAxtd=:\uihʴ?ӭLll3ҳ[Q6 +X&TGI-G:Ug23ń?7hPj{~Y rTyB'i;g7(AB&BdznY=E6I6EM.Zj]sō*[xjp$\FhCORFѤS0H DoH)r∔ɸ' h, T^.8ʅzl%ms8{|%n)Z&jK8;]t_Bߓ릒"aƈ2n6V-.- _gW`0IJ˺C7\[`Hu\y}%xe(d?)UtȬŜ,䒋 g+q7rYוG"Y$ؚSfb=/q] h`m_揖`[+9tqT&æX wiI3w$Gsq ҋvo=c.}!bRm']FQ<Gb*wU{1NStKrT{sS]ч]{WI^:Rmm :Y<P{ 鉟)"&+(?.0?sUE)va{"A/V  <_c  7!8t##M=yf2j |}NJR$ziZy)_2.&ͷK=MLاMSvx#Qh*5I,k}S"ۈZ+AAw9 ֔qQ>OѢRhtjϏeQpA2&_oy:qD B-6 X PoRVݘDP|*w1a"جN_bko TkNKNFyQi3Q"Qwk[4W4qv G6@!U9"(mڠC~޷.Cds 6+攻 P!'=34g,7qM 1;ApXTu\vqkkė/`N l69"*G7Ps]Y)&֕U^`{S f =9CPnuhB;z6ݐI*{m/.. @x1*`sSHn`ObIi '52g"އ֞! mhV k?>ǔ4J':3޺I 4pνAԑH(O=F#9MsE̤?q2$PVl;Rw6NLJa@Z@3OGpY3C79نF7aG3 '@*xkj FEEDwJ2ã)|,br#Oݵo`K؟bKk PmA>.Q\`?1 eH}H.X]Ü8uص}哜f pb rI*qVgc<擇;ie!5-Y&s?|(TҎVULMP] fHݫ~[$nbrĂ|"ooK\F\0s (3O2MNbHjIFߢ<^aR?eUYUwj&84pLCS²Jņ%!*V7kz8,=8M )"<쳢\r@JGՁvzk{PcHxcJ}Iu TJ\-4 PskCP] v yqoZDpzp:S= )ɀm}m~OYߺM CIV'q ;,jSɆ]Ϳ99`Ptb&@RC:oFH=X*U%7fF Ʃ8<(|&:Y$#981x4.F <>$~~M.L!o{Gl,Nwջל, mUWUK QT"3b t-v/n0N K[ ڲX>U9ufRMmCәt$:m 3oq>2F\͕hmn8]ꏏURޥJmz׺e(袦+Zь8el.!W:&f쓊u4Z-h6%T}WO>WzqkY<ў G $&J&)\Dc+RZpZUw+ 0эqGғ> 2`-|L%|Ǣ/τ+^lAhg Yp%,7Z?>m-lL{߻GM#YH|MӮMu&< $,Z5y nӼsA7 }OqI>?] GGɷ73d3:^!"8V'  _K&GDE[J:3b.!M&+~$|W%֍x9@n\0]z)s8NUɿV(>SŠo"@:+E)?6UJ`)e) Z4m|Ig%/#c'RH+@m_aK +o& j? ZXygx2zA}H "aQ=Mvd% $$쯝~tZQt0 Vw_<'熯KGX Z X;PH_Æ|;B@LmQK.H':Y%ֳTŝ}^.BUЌ_1R$wQc4%1p hi>څ>K!7cLhq5:5D\S>֚x[d\g[½4dBt #J0q¦;9RL>& կcO9ѥYCʹ8ن?^.{y7\xgDB h͏#sp6!ttw?x{^Ǥ`<[şL$>Ĺs :)lkwqa6 k.DEQhB$fu_)q" ƯJuw McY[Hl?LOweu.$~))݅%lA,OSFMS恡RY7*d{Qv_IHs ДMn`)QK8+hCyۛt~A)o?g`7 2st.'笅 E ^Lpa>op)q_㑟x+'} 138ٌwix-M3[D#`fsa'rqeÏeYDz̮|q~й$Mk8&.}]OlBe?=Z VVZSu\۽eՓ?ҟy:`+KUv2X;xtBa$ܗUqqq4TYQ#W~m8ORƷpN 3~Ee XꖙxsPDҾY.y+{ؠMYGʌeQޫ* u>XF3}*V,+\ϪPEOF \+b+d_F7Rk`ndbއVo Qޱ*G ]ݿDeT$`a:}<*-L 0|>2Q2R ^EB+D~]P3C޻5_TM$l,ХL+I>~4i?7=2]h!|7+5hV I*i짅"Е?z9j[ ?ñg915Cju#pPD : zΛ%86%61".QІA9ɑqRbL2|ͳ_9^ƞRç׆s*_;zçqI?7lWtk /yk{Hu>J}ctH6-ҟѣa{ )Cy9]&it୩(tMa3/kq}m=)HK0{GNf/%cgtf۝ 4T{a Um O&A7 SjoQ@͚K/v-mo"~t3Xs T|F6]U_N/a-*X "qW7}/F|"vwD lN fS\%{z{qmgug'?G翎@`>u }iOבi.:/Xn"^Ԉg3hFWgU`7{Vhmmr C\[l9 Tq4Krt$/D \NpeYk5wtZi`ãy WLU/a*;TǏ6M -^㞻zM&Qbϟ4s]!-<,,ϿW;WGLu*8ԷAпDc#`ly6們/dǾT 3Gr)0#su:^r}S "y2πc&inDxL86P'I8M]?pR_OHT zbwk!]ޥ@fjqpHG΀.#iXj}U]hԄEwPVI F2o1~>az0&8c^ VzʠZ d. e%-(QnvoAacfTe$1a\E 3ӄ!PJhv+Ӯ'DέrdM?K*DC鹑6rw&kKGr;IhQ\5r#(yfz佾|UVH##XQĉA DD~k8ѻ< pQP>L ^a \T>s][xҍ.DD.F![4GegT] h]2Tm,Dܓˌ$ ((oЙ*MMZ|@Un0H}5|> Ab3D!j[N2rB>~eoc 8}:Nl4qܼ~_}'+_ ZC"a}|غUe2*V}6Pes1w$fSt,g#%l`ټ *R>f`AcO8qDpN. ;zw:lesh ?Ҹ"~ؓ3 08mxZ&TS'qM*CjyPPH@ڪ|D;c )pP .DŽV,.8`ih؈2un̆Bw))O3<׍oz2}jU0C˹Rjv,2ȅM!l~=-v2 Ƃ'8]MDNJ6x(11gda(_yu׍zrJQwxVOfyW^DiIݜȊP3,s+0"oe*yG|y$2;74e&i~GGLzB1LW(\>2Me'QNBruN} N[2^ (n|(=4Q{)kc eƸ>/sQZPp9`S` ȴ[:ki: Wg00IҞ}}tNޗF "f9)߳%lX-`onU4I&UQ X)1Ko;E9+u}qy9 ml:f[HM$ ~ Q":q՞B 6e$@|;[Bżݞkۧ"ʑkHWaV}?И攎Ad6Aa)z;v\PݐL hih~rsc^^dBC&iW#vEd>IN A%[2lЙpG|Y!vbQHM_~xՆ#I1c̔Ώc-}[) ]FԵ+<Se O~BAhu i{a;ס39bWgq pBγt}L:3I4&;eW`!u>v\ ֪k^yзth瘀\2L2 K $һH?ibƧxڅlYB7 ]:vOg{,',3gm23,3Lɇ2aTSA؝k0( sVv] uj?` ID..q;lVԿQRx.A}nz2t4{WM7; ^QK^5(Ɗ>,B#_LQ?" "Smd&JtVSs$ cɓ[c}Ѹ/u2sϣ@;S%|uW4S1 _Xiw|d0BK jToeխ_ !vBh5em‘3u)q`Ѵhذ|@)}1X8fau$TӐRytn9դoHtr2Ex6pI6q?wGсCd&N)AX610np 2.oP8DeW5 U!qͩWiZI@  ٿbtxҡn+H~唟@EU/5<ɬ%a4(*Rl,M2-AʪO[j0Dž&Þ N^xI(BXKN /Hh38*ء~$DsϻRv܉p8X'ȟPr5hեtndw @6<}W)s>\bP:a eDSeB/ʉأT$К&l׶,"$>`4x":tb E x eb䦊M.YWtMiTZ[(Zw=.qv(U7lo(N*p@TPFx的 _Fe`ճ*Jvv=U20%" H(u2|%Gvɚ)O}SKCӼ0zBmAۃvh?Qوh;h>I&9G]aFz15d'p$:\✸?\?t:WeD%}d^ܷ iac߹lu}#-P&JLC}DE$i-I#)|WrH9W'5X])[V6\rPgGQ#JǼN_?ruΙh_jg4q=oX8WTUX l-񷍰8_:" 3(_IT(&4gj\BKJ[>?cgF21ѬuzE ޡǪ|:b\dv)|LfFiɭMė!nXX3p`[&-*n(&`Scz0ɌH1i%YkcUeDU!@5e  ɽ eQa0o4+J 98zu'.KM$"Et΃и~AaYZ{=eWKLICGPC)}ThE.:o8%k !<)38r"iq(vP2It_fx**ZK"~*dzlj0)Oa֪j䡤K iHWJ"M!-í1+y1y8ܡkٿc@ꡥu~Ox$w>Q D>8ù >_R N3uW 4ugC {w?,@FD-ERe]T.,eg@[~_4u cwBXMUi)yȈ2-,$.Uߵ]?3z¤-\^roZ/;1Y+S' / }!`Dz@Ś€aKVs xZ܃[i5s*˳apM'G]r+5k!ʹN*BG~~w2|d %~}ف|$Vʂw"v,a9Yn|a'c_6s}ZtT KGH9N}]j*hP*-0lMH>3:⏃OMJ ok5UNj69?z8/bvJBIyu(Ȥ10M zwe@-RZ#~۪XA3()LͭJgV7/NcwUD:c񪒐B*RБ8i@NB5 t'syɤvgeKS/KfUk-`O_v#DN'>8ܖ !VX)N7kmb6H m2\,%Dn]卄Hr""UbS5PK_L{&ϳ@jU^ۜ˿~}K8حTJUO]v!u1-2ZMA49igMvsIhum@Ce1:>(u9JGKb7k\hKhZh]Hn (B) v)?c<)}Io*{.e_:{DZp &.~>j9e2wVQqjĩ-jOV2a2rL$`z1Nɴd6bnR^!9 l|)ZyU?4 ޠ,\[TKizR:85Y*TMGpu@TGb=ȭ5!pɻ0RMeo[G`;7 myQ%R()#o,I}:n? 2ʿ?Szgp۫rR艢$,o(G+Qf:>>)$ Gkdrȫ#u!؜ 7 b19zXZGcV}0 M`U"$ы`J'>n4&wo]IT;`v _á\cփ,7C4I;vҗs߳Wԥ-;2 `=~dڒhÈZ 1KA io2eΛ櫯(J+։ lk"C3ޜcބڼ\m=*nȴoT%"-mCy_TӀO_>+layT[BF>}&q,x~NV3EOK+*_laT% 9.__܄nT2 h3IdrZv ~A٩?xUD *v.rndq]>ĹX*,M&6&PxmLHLd@c$!SNQڧeN9QYLvmTdƵsӊ *j=7CQIP6ĔTy:Uř RV ղ {9g+M=Y Vϳ׾r+5>Jn @ qԨ-)H%WaU#D| M7}$5s;Ӂͯ/Md/4TCHPAp"A]iS״A}s +"^DK(5\D41 I#،r_IٽP3ړk~$*U]`ԙKS\D, b p$mEjeHJ^/)zq[O;K$Hб=@lǕj:5pmEHnnx]ai+52˜ۏ![%ĆXu~Q\< vjur0aZcgTܢ@>cb?ڠ#s&Ug*BPV g!PpGuAnCݩ4QdpМ t,sal ephnG;MVHc'K0B#V5QсENacjn3NH|MR~-!.nv6HsR9 _=5kG we ]0PUTe5;^# Dž^J݈n`پV77­D$#Hom\+y"kݤ#Mٙ9Kؓ vtSAj(4%GFU>to yİUq3`r2Wٔo0ܴ}54%lE]dݖD%$6lrfطv7Ҭ%P+hHv*4@U 2lw#'e:x $uҦ띘~+Z8/گrm.Xj@91366Qs>6͌?jBGHK[¸GNݥ}\;+Tg~o[aߕb,;XWF4DEG5WM4bU0K5' ]:t-Kǹܓ,I^\NilxrrEC8+jSho^M[N4%_z֔vOr 4deҝ=Bܬ̔y+\)D=+S4?=)]|;ܫ' )/h*6E.) p_ `sj zVʇkYQ뼟'"9 }(e #jAwL]<.Zm}|3P(klGq6Yy9^}壡`Vxq[Haмz#*;(KipSwOTŽ9ct #L0Xc{l9ʆ}H%0庅}㩏gkhuPk͜ c:Za݆g/ F0c4|>eo캙Kq˷S,<Y7A}xF_s^aX"\PJ!>]6aʆ†ssqQ>p-G6Š%l"C.F-sںI'/=q]?^oϒnW!`j;f{fČƓ jBJoӌPdO\ X1]5a W~X?3޵8l{3xU 𵐃5RүJz=Te“"/W?ڞlkaZ %x5'IZ"G5.,/ Z\ WH(*e=p?T 鱴zz%ځO;gԚrs`O'qKy;>:F8 F`GnxPڻ\LD^ 9l=]ѤGDeWHbw:ϑoK0TLu#9`mʅ?qOYtP9ax2X{GueL͍x@]:|$dMB#[ed)/RTt`jN}G5CVjHy0Wͮ vkUJ@_iR]oR ;~ -b_c-{/ &o[TAӏ5};nBA(xX3Ω牘`}/ 7^12~@U{_֤iv \)k$vcMNTF= UVD^= DSңDxAe\ڶՕ4i I$BV6uKw=XLGoXw(L` 9 EmEyL5Fz 'v ;TPi4 0:(G&Jh`f(_v=\". >蠒@Q m`/O] L)VnadS"|)- *|U?I -#O}&iuV C=K?٤MkpQPz8lr+mgW-?7Ӥ &67KNN5VZ H),uPDDY@"'JCOiYy6a[Hdn4|懟G]Z*Lq1L>MU_X.M %;_{ }g9R!rT7EzI[U-6zw_SX7s݋_}ik!^%=\5ƕ˧4iL6IkomэݮMWr,f}Z/)v. (m<(`˃imp륓N.W`{e}%\ ;SK%gqCwp?"]?OhNc~o_ts:`=AP_'# g)x~_LqLYX5GP)NwTS\=&20κ~I < ]Lh}= );co>$q؟6,H/{뢹(,Qug[sOh*#wp]c!'i#AQePtl E&[V$=ryUCW&'o53Q zQs35^RaD P?gJs DxoU $˨]3/WL&(M۱G,iTpcQk)fZa ez[d!̫flJ/=lSDw>XV/N LO<afsJ)=?hT3Yȅzhͨ^Mv눾x{]n6b f~.$[@_Aeo/aё 9\1B8TߐS})V{xK 2_4 sDu˜DhYhh*E<3f[A4hX;C>/큛ڋy{kS*;^3{PuA{{bѩ & Uҗ˲YQ2Vt#0+, $aNsvK"~SAVIqSM^!67JIHޓVFܦv@c%zzmʲx.DDF%4'II@& n{H䣞Kd?[T #2?w/I(}=)|E4hh*2L\6@nYS<%'5p˸WJypo s,)4B+683P~p֯E:KM8M1U(H Ws^Du3We]Ve\8;[|g;׿7%-X,o—H$Bp~y6~Z{cUypˀ*`ӭGivfFT(/!q:XɅ}Y;wbv-cq}_i X.s H݈7-#Ei ؿ|J*p8u>D bt r"Ubnei6~,,Fِ%C'\be: e8Kͯ?9X t AxV9Gl$c؁o~yh:Ҭh5XTmO%PL"p4г"CFtc)1wtpۑ:'ʹfJ1rxe@ oYCӞq: xbA]Fv&nx׮y e{w͋> tDcΎ IS3kS~0Oҿ^CM^b?$ˆ$2 6JtφR ;B%Z1d!nq@~DO؍CP] ][Q2kQ>甎-=B!cjsN.%4 LK(dG0\mRH9w$gmjM9:w.vrDOD3$`49J6K9gY<_מxXW,5)g>񑋌8ږF(uwcdHVaDu)Me^h'ۇDB n6aG^dFJ.QU_}?֯(|˅+È)Rg¶p܂wVIxcJxA׭Hp@lv-Ғx}@kvXϞ?Bu"QVcw( PdY0B+WuͶ²)`CV@bILWÎJV-1智.zab'Bu:SL*Fk,W]{ n73;J Ԃ#f7ynӀ:p>^1ZF@"71"@I#Рt&҉dRYf9~[~[۽kͦ'RtI6&lNküũiɰa~hEB•בWϟTI )Ǵ bB fRkX6c@<54j@-}VR۶(sTOzmVR~ Oբ85ZQD t}\ls6C~jJ/Ôt"l wJrXI-TjF(Ü;l,><vňϣ;RL}{Y ck=CFD#[bS`d'Jb?罐`s\@{Q3@s0BX0]"i9-\}2~]DT$i;z2٪Zŧ ~(SeW0GD5`txCKKcRr*_y`1F/`q1J։QRⵖ7鰰75L׾'bXpqd7[ڲFńдœ|Ck}gM\ GՖw4:Y`M#~eFޗ.hݚK_] e̮Lbh~P#ŪΜQ|l`/Żh;vSVV7Ea+Z(\gC}OL)2Nbn8gg"Ş'v ~ʈ7h4cc0Z SFl,*819ӣB#/$K=Yot^v)|(TO"N]7 !g׌ +tMڻ.GX~gTT6+%zqg*qZL!TZBc؍:MO_7:-=Zj5hc4 4' l" 4$Y ̏Ĩj҉. U7-U]P^Me}QYxC.پN f 0 t $o#@h,+'~s=)X1=tE;6j49+4yi`6f*&rҡ~6So5!M^MYOX_evZEc^78Oʆwq&7pRcR՗W"݂nJܵe&nzwPreY~#+ ?!=wsg!ozL1bh_*L^q3,CT]V@~EWIgQ\v>NCWfOzHm0\Z$j/la G7QR?Ap Bcd.R8tcy2eF1.Ch,, {)@*$"&L8i>@Gys_=5i}\%!7 PP2@*cαJ45e y;VCR9c0M$nL@Yͻ1ݤ27 ʰj͒5:ύQܚmHh8EfOx[o<`^1L0iO(J^|uZt&O7kHsV?D-|FkptC]*B9 "{FZ>:niEbŬ6MD+g|EVɵxÅNpTc͊<`&ɿu&7#GrOj" ރ$&O>prKY07Ⱦo!\QMGL\+XMCuOXI -~*;94531FIii$QqbjԠ 7b)Xݵ~<nG%=uN-AđUj{Pt(,~$E9rB5y0O@U~u]u~a84e]d5l[#zV Ek ˽oU=]ɜ3FvJy$zÂ*hyfcjh,. g KOTqrXv<:)hԍ_ GxU@*z ɝ8lAkbl1cs_|QF-vͭLrHaּtzz"DR[rtUƳg锴oKىNdαbke:BB6 #}qiL NIN F+R2}l;[|ýo򂿏B#H]$d;˚DIfۼ0o΢pCֆ}08fwe@sq{YjG~80- a)ooCg>H[6[}%:4 mP0AWi588_lˋTB2kcalg(6h>[{v.ΨRRj3+dS8-48r+!gJyw<-8=`6=N8!.N{/pi;r{_ 6M4ɈTW%ή&3?VeryQ&:3F+zī]=c2pvCĊ/ELV+]C 3U@e A2 q.3I6`gc&ޘzVc4S)gӺ]+=pӫQHv&eGY^A+ O*gP( CPq[h'=n -)>plUԀ8 _s-2K }lh)ȣLXD8:g^=Ђԙ7CBnB FehYt}m'R5z/.l 9ޕM(sCFe_ u3 ŷʶ # xAV.}?FO/C 7a@ IVsgiFo&ͽ1ޱAo-Ųpk?B3[@&2x%ս.1pFko ^>0^ qD}B}j8 |J=1tK|ã6ԧЇ Vf>L06Lm* $c wLXx1=GG (4-^#:f84 k9tm[+0jNֱ[:,SF@ӟPi T>¼wcm3"EU$BJ;qrܲ 9Zïcv+\I~AaPeW^|[ʃ+?C(;G>C㉁%ȣ4Zl)?6134V~Al|I`'9h1Է"VJ-/M>,s K$7!P.~:*u6AmchIU m3&)Hq<$(2Yc_5)zi_9N-DG V+{bxvOU&! N;H bG153r5I.nH\"7Q5m}vn;G~4'uLChE{|Oo.6ј2^T ԡljn"TX@;Zɦъ86t)Mtiȓ\g$t^,JL$3 Ny^y;-z9G*d 1k+m6$ٗ1oX$# zzj\BAzE|7Fe6ʽ N?Av1P|~[K 6bA^?HJ!zwz@ ͪF""UOac7-ȄHUr).N} њ-J9Pn!$c=yywehӞ҃>)57s#ZXC;xD0RJ9O(uwLzFLß֥jSDfl"`p!2V4^bbL%_R c GkNZ#`KOIg`"v2揀_XIDI|j~jdPڳ!"CQ*?ٽ~Z—u,!N ŀ_LP0ET&\sI$C N³m\fs__nㅼRk;W-HnF<^d %W@]Ao|4R^xGtKmf):-Aک3wm;X1ąXJ IsNU[*8wGE1f -M.'Mk!W%6'wRp(QaZ߰_7jCNFD՜k*#}*Vr7DbU/T%EjY,qz\Ɏ$c Y }I$ 0$HYOUuLE X, !톉X* g]kY$}M,*^+"H%ӠG[ ROuNyK/Wo= dRQ vͼ˄Bp8_6.9udY@PseƹCOv" wG - =@NðTz#v]eƥK8pLW< /ˈxxڞ{gKzWb #N*ǿbgA@PS,}3A:T+S>\U0K)4)Uf 2_E ߶5mǛ\S D>tJ׳@lb % 6])UMaUF{&o!1O{3ex%?FbfP9Y9f3 5]+̽m`sF7 ]BPOL"U:S_! RN r ,!o'?Kekk\¹c h~&\/P;4 ~&HNvS-JN˿VQi |as[O'l"V 8؛MbwOz[k($y:5}LS'C:j^+Q_  Zzfb!m5.75._n9aM窷LfV#ηi)nYu` Ua o9U pv}瓺0k4Yz4zS80X{+bקaV2|Rl)։m_6pHr+1$qPnRO7|]6e^7 ڭGya Hxs}cxQ,yWep1&{#7R:fΆ<6U\6l U51kTNxqkJN$޽n 8bBH֍N%h!7\Na7H946%21r(Xl 2KQAoD`d wI$rtD70N>ow4g==ZN(AkXn(Ӿe'Uxl$к 3TQyT~WTzC)4M 쓩''%/)sP6HQ`qBض\.RT@m~xȚBjɊ# t3{^ïkZp8fa?xv4W~!z޹7̜"4?4׀JjfHBӱ)WpwxBU+2XmMbv: ܓ:m8)oIW߫MSLRԣ =+i3hց|tw'_T7ׄ!ڰ ĺHb<(?"KnaQ4jM|eHJ!Tb59E/*Ŀ #hFQ[|>gF[o="HTZ@x(@?MH.JQUsՅMfK{jhbR yÓzZݑszKاߠx\V=CC$ u dLFn'=bSl]()H^8$[ZN!K!8 :ח֥<"Ndʭ /o3A=^We6ldw66GX_8L \5_Dw'L%Mvɧ> A_^C<ʊ[~k4ޭ%l i  1`!L{ G3.h- "aP^dFLbkX^z]>Zx,x~-1@99Ь 4& ye57(9k]H+ Xk<+[*]3jjNg D4c:#Ta Oٰ{xk2!ɤ_7:)Ϯy2yӫ2Nuꚙ;bZ2AlI䁡a{[; MNiRy&Nsj$v`ysoqw*Q'P%>ubϭy TJ@ǻnsg}9CsV8sHg2ޖ42N:M }|v% X]=4Ԗc/hdևmqWB ),;9{x~$4,G=cfs tK*kשڃzJCL}J|JËp#e^PzبH' jRS3*3a'S#f0RSFCF DǓ{ў}={i-ܑW}Bͤba碘_jJ RV@ǧ!\fCAn8"w h7&cC{.R2I$cTrJ ܌s_rF-c_>._0)at@sQ3<}eS| 4b@KQj e9*f1Lcˎ?CGiI;R.rioeSWnL_ / +x#):X$J{̘>I*V+nb^f-dHrcn#}In7%F[Ht?O)]_`HuoU|A7N Hl7 @-i_h7p¬S' r5`5Tv(rM{Iq;_ x ]K(޻nkevPO_츈A2CrX [y!B^ڔfOMuP_;!:2"PwQgHLSLr)o̘ '92EZ&̮!R%\z~)W8j̙Kk9+(X\񟛼#t̹|˷ڌB7ZdݭT=i`!2.fc{LP?ۗ: ٪nqUk3$ Ct:&f7y*;F˱e, 2=Y* 6a^%yİ˗)_ L9[srP5NU0=ffDYTYCA`Wo.&m:?$S S,gͷZ"Z8^Vuex@_;ZJ9ASg8;c2'j%tQ5l/Ӄ0Y寙ppzZ'?F }!{Ro,jO\Q ~˱E:fh%!eږg#/{SL=Xz YgP D$HDZ-=Nu tYX^wfw. ?6enyҋ~ܗ7Κ U8@<m9cx{n7_7U-=,]fcݶ`S3GM3)uŋh @km~t&RME #٫*Kz*~7eΏ(i.z'j Ru&QrOMIU7QA˝וrAg$w+}DBmQݺ-شkcU%UP^-GC}x 6? mNC6_!??ɛQ{+G;;uq{ @ w8{Jw0+)}Pu /JWl쀟.TF>5oTIU GCCCGZMWZALͱ]C7+lLtI ]&%D~E"Fk(JXJPmujor/;1F־ O L8D\V%qM/)G NEU=+NXޞ %ry%&EUV }vƃ8'oՐIu::I訹 "jrf+ɾ"QxnV0. okL ?2 2s #r=Ni|vշx_kY)o#21_Pb/kHeI.ZW8#?v* a&dQJBds?yjŬht"B켖(̻.+9TUʥK|1cJV5|!5U9 l]-6ZUڹv<L;p)a cfᎈE ؞9oJߪrK )e[wIkV`쬐>hV<#QpuT]gD5ÝPڲN D 0e{y3-@MCTY238sޟgxa M5"PWF($*48!IVִ$_ !.٭KNJgŢY}qZ!ʭ;|Zq0BDGd 0GpYR Đf~=uUA#2EA+^DCg]r1_f45Ѵɀ0U{R}{>Vo'NLt Bc38Q5!Q#kVZ Ry JK~ȫgw.O?iKK㵸^1+u MQ6+q=ъ 5SPm@2^!Z^Ni;+!{qծ >j8'Bw?^S(W`5/v㠐vIQiv=18/5 8WKZ\^f cR1P] ЈA(dM@#c?۫iIHEE6"yӼ4sj-Lg'M't=-)fR޺Nuw7F18DS֛PD'Uq]yU\/۶K(>pi&>E 7S,VRJVn; ҕsVnu6u[]!by+̔tBbx>8t &!bU_3K  ,[%VXObmڙNݓj8Hx5"ҳ)BT:COM.>(uʁ.|QLgvlm&w'@ޚn%RL|k)Q1L QI$-AL~zєڟ0g5x80cqruڔׇip+sSB4`&>?=hJX1swNy"߷+0'lEQ!a)חgی706Uիr󂓚C4HLevҔsPګH%L9wWGON "B8q(Ssu* ߤ|!tRª׶!mx@"Ai#c9JQ0Zm;=Ђu=ؾS La8c|?t{yFTjބd0tM.)>KFWa̹8c~AXzv %sМ*w}"-Nu4@}pL$thΫ_APPS"2D\Yz:_ȶQG3eRVчiC}f6tBM Hxq'>v pV$ﭻ9Lg(,GjTݽ-4 $iew=gx0: BۮcVbfg&[TDg%DeSy5" InV_~c!E5;| qK$vdAlbyo)&YM*R_ux9QL:3tA#SNHY6]U ʒ ;>aju+kHR>_dUޕ7SPTcd TcNs/6`fV95odn;`)7bc0S b;.`oId{YFEklJS]ʸ7S6+ {-]^@\[p9Z)0c78PDR^2W 2''w|Jum^uwuT$ܿ(F.jom+S"yk֩O,1R5*j٨ ΃[,,Š呯\da>Er:P2@yfr/n?<V)AZ0NAֆuy+H$:ḻZVnt[mE"LÆ'QRlO'mf)]PB.7Ѥ+ځH3 o7G>Bv;3~OAbMrcKNY䗍5!4:& }H^).W1_`DA3 | mJp_~t  '/]SQ] )]Ѵvx_oP!y948cN,vk͌4H A3j ٮR@Սd4Q;ob$t;Q?AsCb|Fw\ŋ9B2sJLni݋JRns@')nD|=NL˰0{{n3cR ]MN&pX7^,f5Clf0N17=!El~xbs]~ܕ91ao4{=ZJ^={3B i)+'H\IK`r[qO%z\eD%4%{ uJ-uvц!J'ۆs5AfPEnnCG ]o[Ǡd. ?#5U E,{΁~#@1 MՀ!m5шAR 4[-قg#7D0ypahʸqh]d@3zo$FN;Snc=]qZ)5!bWZy "k S9@Pw?6uTJβjD`ᢅ=+LY!:%5#uRR[ 2Nz(N(=2iY4^\jTE8ך1ƃͳb'C1ޕ q?d%A@,u1K!2iW6/3WxDTSSPXaOaMAxf`x$Pc5A8 σY8f S3v9w ?}{&qI;]ܪ~םËӼSodx>+40Yf߮i|p-W۬I1j"o9Z?CGuK=ndfA@$saY} ,wI>iw{kBۣ2`h3d(Or65,S۠|47|չG,tmZp9f;Ȕ"(p¼f"[&0 N*N f GߥR:$]HbmG5qK?FH!ӮuaJ=H32`|Dmx?o>nW1Ho0-r?~g !r"~Fi.N<ݮ~2X3ؼGeWT0mعxz'隃NV;Bϕ.ŁO kgXG7!wQFip| oI6@4z9=a5/"'eWj~0$PAzĸz/FeUd6_W]/vl JrΔ%U/aO؁6lN:-0j7lPV,2`FۋXk.ozF ixpy:(''$al'x1#qNKrgHr#܅Ƥȧ{S @$M|t:Q q4NHAɓb 4}ڈq"Rl sO;tGYs#0/%ph&Vܥ!MuRU/37ܵ%lLo)xa }GPA&:^EugHgnn ! B0w,J:r~aRE`eu5v:aSugypicYݽx2Xwy͡``uޞ"3znPBJhJ ,䫗lbv}bWkSRjƨ'L<\si|'I - 7 RIRO|%?E`~P&RF;qFYƀD,"E<ۨ4@ajM~Q¯k-ePU)[s\aZ8ƌG4uϣ4,jJ@GI㹺&O>%ˏrc#H8vf]zh# }u \[VkQ'fwXeVa) >8%x@IވeRւn+Xch~7 b0: U5J,U!'^_:An`0ͯ~dX׍Ak5Ը3cgUsϞ{XR7!YA&H[^ OD+t"u]~?I~Lw+o/NZEO13-6{DM1טvZ[p/X5hs:maVG4- kϰ"m&]4q('bm1X,d72=R$qi>1NNQmXd4Wa|Uﶍ!d9UR4\oyL 86Se7(ob M1+CBhX&`]8Y BCGA2XQTh>ާMYalMR]Zә0}Eer0 JsLe.cۄN;,Y꓉S+Sd1l突3>^% .(Kc̓]^8ujJ '>YB:u\SWP~g(pIq~ + ߣa}<^>U]^7kQv4T3M>!ةWޖ{jl:y'E.!l  o `PIaxXeCyW*S cUJ[Hc!lED4vq$lt!ȷo-+t=ˀrqP*&`G{NXXg|/kѷ,ʍ L4GȌ%lfTJ-]!p0Ɩzj]NA< vvN2 K{BS*h 2[\0tmuWZ.Cq]T. `iM, 6d;=BFљ1T9_c-E?^Vd X8dͯ- 42{ YP p-DHtJlOݣ +tp^䞫Œ@˝I[o>zʿm92KGgu HViRO^tŗ(Ҝ 'g0Gׇg.u[ǖ(c̷sS,TfDαa^ˆi{R+ða- ,Aq]`"ɯcs2H5)i`Qp/ 2u=Gf1cPGvhDJ?kA$x~,V{}zB2Ԛ 7lTX1135^ž8dvND n]dzj:q"0 g>/J !`ƊZOz W`3vUrYfnk(nWHL:3=kzRCWSKpf<ڭc\7Pznp@eթ1 Hqvw1 @A·x~c&NCaV˭Μ,/&"P]u&eD^KH`joN&iڦdƳb f[P wmeikAV-CyS/ ~ϕm҉}d$d1G5/ݾM'q j\7vYe*geºدg~+f9^" Yޛ+ˣMET?54pP!K'|J כЉp[:-n8E;~@6&b.9CQaƀmuZ#/함#a=N;X¤>J[aZr?c+^KИ%ה 7i[Y:Hg1pZ{?+ߊׁ0KBq9 f`W(/H=YV 0_Ո0*F'ɟ ]QnR%ꈑ~ڐ|߬m+O,WbN iQa ?]5ԉ.j%!  SLV,K]Lhʏ'hZWw8Mc-"v+dR>@PsF2XE!b-Ȧ-O3&cY@E@Pvb*M`W ֶ&oԕi#~b%׿]$' '}*Jv3aPY6w^yLHǂ -O*7o]7RJÁ›-b?FGC7 tרuguf>< M_CS Gq$} g 0}h3o;xC&1t, = :Jn]zn/!3ݤz-\~f\# @H"CHNSįJut Q`U5mV U_Hu.ac%sQLwu mJ܅eK W<9u0AlPbxilVqHR[%aW)wL%UCs[Aulj(C F'mf':!M/3n]]XKծpIЭ2E )kJb{O5hySs+Ӎ]ɵQr+Bnz*|Ee.#TwzFm@!#6fhWD,eIwoE `Q/09kamArmXKh\'O⇂\#|pVkk/ C2/" `iKTVXsm B, >Rx8˛oQF.nBU&OeʥrbbڄDcTZ{ŀq.A kQ5t]gkZ=_R "hf.TvȺ ̨]i2n 7/.5[uP*h}0kWƌ}Efa"#{Z1wGH 1Uq@=$ɨtJ?55Хzx'x0Z\ G>hj4b*UMS0,`qB-9]w&*mk8Y] l%5\l&qiOC(O¯5-BEXJeqe} sST}3QVz Ke'Y5pp*bylpJbVf&W*3ԢMl#C/rBޮy([qJ˗ZBd=~n6U[6 l1Ƙ s1<X2r~T]4T#աA(!qȚ2$d' :D} vZ}2]1vhs ǁFbx͢=!zy⬔e Z;.+{Cv ,Q*Qj=ܺ9<`T9r~ߥ,)h;>̓D'i.NA$ҁQ4ֆT "lǝ}~iiu%/%mtʒ[u0M7Pwȩ & I0L~\6DxU_@Z-KZv]\UܤTD F^ 1A{ B-@DdytQ~Vb `_Q" +T>ֺ`zK"pg%Zfڞ8+Y*Zr`Y`{ }zD` ͜E?Hh?>Bm]^PUBR>Pr57dq(yK.kӮV 眨 amq; ='guWn6^{AOO=I&0 { LV< +~>~pɥX`TH"kD.Q^ctqs {j360>a=z=#2.;65ĉG1qNLK߰[Ӗ(2ٿ9GO/PʌzC2GeOؒ6{3SŽ ŚI՛菞UV0~Y5fZڸ}IM]"{ts:U#TLeɩR:.o>}%Tp隼U%):}ź!RE%Kم ox4t`{`1c 4ڜ hS0.emݿщ b1)tC5yfLp/|:F?F ;Hb[TyQe1o#X~L1J9={_j*/$ nRBLNt"qo:!VEzYAHL|:D sR(9)?IxF޼%_7kHTZ-s1|DiuYSǏ5wFhek(pA-9:]CZ^xHE톜]3![ Jy^Ïr)m0mi{ad$躝l>j܏g, JQ{i医]ɜ1q 'nCҸK(ֱfm$FAZwKw_WqTMw6ыC{QOvC&x֘6YPa "209o^Uʪ0.6w黟G2bڮ rJ*:"FFPtƘo÷/g?$=hRh\99z!'D=8n\+ȀJ#g$F/ldv'rq뺞}C`w_%X$vϋ͈tԥz\T8`=Ӻ!b2 g92TQ7̹?g˩=yz| s uJf)։=Ԗ[tzZJa#A$kJMB{ %fE~71T` XtfWɯQǰ'B@SQ $LZY$1Ǟ~g4VoW4'$׎CHw䋝_Y&"RޣI .bH7!3r=Kҩ-֠>a p&Įlsɜ?ŝkzU=RS2j^{@8ĪZ r.}*2*E X1}Zg_Hڬ]E_x&a&VGl6B v+*ذes1OKRPϙ\)W{$څ#\__ ]Nn17j񃪇X~ ak~\!Rs;aF`G;%ߚ|v$}Y@~J XbTsGB]a(زP*d(ΘZta:aU0{;^+hJ#ݩzROm70ҿ_z^#: LC͑0PZІ<[Th[@1"ױ=Jq]S7%Ga]CP'Y$2IBVxޅ)nq.L­*9_G{|Р&u\M;]ȟ,100ܕ{A$=u/ظ!O4mjn2TM@ QN, %oVJK3\'~!G"ESzG ңQ:!z+\B*QBVEEü8 _t;3{칽ܑ k-s<IJF! 5^Ym߱3̀͵:l <]wCd&GN80MS  O?_5"iJ-}ԯ!kx@[_2!tDLd{cبL̨j7|? Y%3 Z>);LQÄ}Hf2J`1,I&SqMׯ&6?i88Um~?H1HF&V`KA=v7aivpŘm:R㧫\{q8Ak+lHD\8l: ؁%:o9}Jn-K;̧85~fp`p(UJ Mw,`d~Z +.B™ZNa 2xo],0Aupbۀ죝IUrTjhk]Nִ[}Q4vZ'IH&bjֺcTTP?Uʶz!m0{/3l5vQ~ jg:ѝ?Ţva%fΰm$ӇIGJHWATY~|u6*%S0dRٞ|_&H FH/ɌI :OxM|7RN22Dp$xVjG.9i@dARgڴh%ow.>{TɚˆZ_ΠuǴ!zEB:﫜C*ŭxXC'm2`VC7<@s<(]gS 4 SO #1R.+3n;(#Uӭ Z$c@ t 6u&;NU8P)rBe^z#ڶ18JOi1 ʊ #U]8*(yYS 2!+Ic.3-m\|O:i%7Cs(̀ NSpX##WX*™{d%dj$=Ĉ%J#;L_ 8WQNd~oJt[uC Wa*iZEn˲2h{؛M̮X!kcU`t-0H5S_cM/fl)]''KUe9Kl]ʅ7BքJmHb۵e,1Ry8'˚k.߽ CTbsYKvJXw 5?rBBޢU}p= *S!zb/M&c1ܢmbi0̩"q#Y _%y}!.6⪻CY5BOO@PqH\~hϲV5Qc̅l##~oD43*.Q6zpڕgUoG>h{f7ᡴ׸?8r2*ޙQ X)@&[#Yy跭IQU`d^.^@)\)B²? ~Y St!4EP/{}sa',2ބBv8GsX-MWSʫ!=Wgd'جZ}bf#f.52T&=딽@UC)Nu. ƑBeOD2V 5Z6@X}6:',@̄r|UtSٖu^:WŘ8a+4Wõ_^H:MGn9AGt3MTf[t^l:ykqâ7N8Е\FaS+pEV!bX098+r 8Qo ݋D sGUaT S;J"ӻ炅)0: t)uܞ_ ՝9ƛ}P{w.Xu"8w. TRjE`|Gq;1oG#cp/v FYE땃uMdIK;7f 3b'Ӈn@ qw:% C('qE!~6?0J`RAjo{(mAW x9]9-d֠G"I`RM Igw$5â՗%]6UY'4;-LV %NWy( ߕw_ӱYE_GMP}t) ;f|.v, Ǐ=pʞK=!w%`_t#BҲx L­[UgOօVU-aRb)cew)1@, *Z&*>΄<{~,&0Ip;*o]JW\3V=wVʾ:yN7ʦFԕ\vȈ:Q{64) 4Cl*M3H]e+M.̤FTpCZBPP̄D9(pZWnǿiOvŗJ[׎or69Z!_3.?5Cꮁ.D&Tw V/9kr;\p*ǎxjBvu.)a|w.҂7EǹWqh>o_`kH=Pp8沯x˻ >豻 f1U`_1#W;zw5qdF<*.\#択_xͭ *C'P߼_-O`JgTA~0Ad&M ]&y٫80Do~R42rЄ"?U.KaaAF-RO+5/'KOD#I@uY.(5~@^d] N>#d*V? ~2('dm$65IB_=ʣo}%L>fBsE+!: 쵵r;Vܞ_=782肉Ql7yVs4nAfHzH1XD9W@Gg)滿n3QYm\[32ϒ2;f=jøbv=Ty-ԑH}1:t{> fN댓)ZkC* }&:Si;PZod,[Ʉ97l/0tVӱ Kv9uodŢ n7^t81!YC "FИKHɄȄm { W>fMg}Щ1O ]IVa]? +l9S_&l)\{3 };ٖ6d;^hzc{|0!6FR-~yHq[󕆫Us#xe8|a/ֆsz75Z=Y&AFU|*'fp)?BWxmH ;yMzRbX[ϭTÖo hbIEIFŭs8=m+`VJvd_*')9&/eS ;-@v@X~6#7ҡw:hɕx焦іP\Bn3h|#&6Ү!6dx%|HFv畾AzG$ b ]QzcX%BuAN/p `޳!(|MykSJDid1z@QS&Fg' Їmq4]b/a+ Ǝ}哲:W:tA8z>@!Ӵ )-UE SepСDJ0r+dg(nr9)<W9UgYн14Y[Fe46QBxj*,pm_DyҦ]O87cD Ȼ׍꺛l/6 ub9p&iNUW75\fITAݞ  >Y!F`0 ll0F5#qX~yd;%2Y@{%ᫀgpz)ZuU/lRYWq2P[[T媉i|g dr֡;zlrw_OԞYTb+n7Ojz$bS0&Zps8 % j) ZѵmSw1m 1wy7pfTc#L $8u'ya3/Vr}{¶NX+x젭1wx܂{A0$ dB_N0n<̾ hjg0uU,S-EPZh8iW}d!u/=='f8[)?G K|v\au]c' 1~po8\VpO{wRzuoN$ΞpAm{0`ӫNd#B̻pˌlM*^ b K@_u0I&b*MRP4LZw] sݡF˂3$c}p| 5n7|:aM׫QJ&Go4³]{k~6^L2Uhw֭y6SO0[;mҞ^=(Xt-GE3俶f 1{ۧ>u~*yT#Hq٥Rx&P`浢)7ͼ`4P :h(qH]ɔ"i:E{Iq\]C ]<X~@CX5/R>ZP`X!3|a @f֍&I@gOlm pfx_ĭ?K/9@H^Γl2e?ٛV5נjȂNk #hp˙+w+OcgccȸUJdkt0^ˏHw%  +KXP_Hm}K)S-d\b.3OA89U;{x =))k"RP~DŽ*/šޕϪh:n&^lP%f,HHyΗ[<̺I3jk&BKJ񖄳L;SgdL 9b6v}{W(;FJ8N9?&1x24Liæf(rߘQtG=K,(UnP'NWr3?oC쇗!p'Sșg4$6t;r_9YD҈?1`]BՑOV-2濽Kxtf4vZHmA]Ɍl6h"tp`L$}HrWDOJF8TOPȠہ,/L8]rm6W{"T٭ܿSCg!Ekq쇉5_}UPn* g]Aihcǧ|MwF.MM6>{;Ǹ*f{m%1}4(kmUv`}IV ~'#.$-xI{8S>Y@SXvO4ùL'z1v*6d%D #Z s($؁ݟQ"#m&N; -'ڼoace|O("^NL~?URqX^ \ ZV̱ q_\li3@EZH?zG6!J[ӱ/Np' WM[r҉ufCB=C͵QP|j>aУJN.PSpXUh{$(ᷰMsv*eS\Pfo̒WC7fT ZȦ I6QKh]JCEr+x"Mb~ξEu$-+(CSZ(4'{$w9~e߭84+ O]+ꙁm gݤ a=Rj4mӲk|Á덩ٍk1dտX@l/ &p*D/ s*̪NyANg`4Bƒ}$XO}""qĜ})tGqJeyM7ExR1?쫄p~pg\Z#x_W"Q& EĔ`x;HPDFiqU~fIkǏ<K3/狸D~VyzICkBhlEy6~E-طr_7u\ WȷXhVs⨣ռe$sZ"X8/FȹCI*w3)#&<^X0QVB\0oh(~՟p.R:-ܹz"i5lof` .I, J̯{t"6%JRG@Λ0޷D~Ot0)%n??ߤ>Ho0+d.@ea[ނ#a/늧teƴU0̰ѫNj.5scH,yKț[P;*v# I  ։P$݌N3^#8nU-^ ~#t*Q531fWad7#2L$c OETx,SJ'Oo(g٧( MS֍x "9(/b'TOU4`ӡHi4TpܧLU%7j{*h*з蠂 w WVTvw CnV۹W#|wM0I ,&Gad/č6{P|F`;ʕ0嗮OJjĈ۶wo⌑+j6 tg,e*+3vg*g |4DOҸ %@@^]z4t7,M56zC FhͥFh#Pry tŜ['S63񋣆+#c!P&ۋ dۀFM_R|G'~ `hF' r`tt980%WFޤXG8h"g ԡNI\'o5 V4]%L6Vb5 b \[MKGĔqKFSARf4Eqff"nL"PY ;M2 \_߼+Dȶ_u跺UTEn))t?GFg=X/ffE_-6z@*,U}tQߡWZQEGx I\QQSM++$$Dv?:xV=ws;ѣ+5;ؕۃ{(|v|;eԶXmܥdT1J5lf7NZe = :1߰, P D"G w)A_qaV  Jd*[sHʚ:-)(F^Eֳ\,:bnĄ+iCE&&P!tnea!KzA~,7 LOΖD`\E9 -b420i{4.K >z~PFl24`wΤC%!}K& Q^l] nn#ie+SƮ;8ODr$|' p0ʤzA =pCHsiqMQWl|-Nl$㜞v$ MHp*9y0  7$2> 10O^e%{$qRD\]-_wB~[1u\MI`r5;p*3S Vq9ƃC(kSs0":wˁ+՛(28wpT.ה[f[R2-~˩㽷W:[ok%MIg~5D!kGgcf~" vπx2GӾc{)cUB>a Y--YMmY@m5K9Qm5YiOyxH'М28Y6ݽsO0/o/ oՅ x]έj%y0P0ܒ&U >i* зZ7)h# -8g fA7 U҃qF r4+'q/˄7 ~8rbr m$ QQL8FQ#2UӀ~ʢ x}ο˚u񈉈zwQHCǫuq`ُRT_  ?vN v‘oې2n]b CjILDB҉gca0Xݴ{_VLPD:-ti%=)^IO_ɯpn^HrՑḁW4Gʕ6w#;UɆ|Iĝ"e)2ėrB);Nr@(@.3ŋL+y?0?Ȁ% %TjND?@zbh+p ٦A:_!VQc9V Zn'?}yࠉ$jQg D.BCw(xQ\¹h8#-|pyBeIV6e(s-xz)@8e⢴\)#,B* -7;$$9iN^Ne$+dxX@0H^M(QeDKߐ-aGJ)D eɜ#K(* apw_+OgEjX(PbwڅRMBaSv1IĞnPd /lTspPqx՟WJnZ _JEv(-T{ɘ#Z<螲@QNP)c%.oJ09MN~fPd Ih@ T_ԎSm.Z3[ƜTk\i,Y6+_%+GLFKv'.Ѵ̝y̛"\ a^ jV#}Y'BVh{NKtbЏxƪ> Kg =j T;%`=ۮ=wǮ+&>f$3oE ${F|/_|qnm;.(fkvw`Ia6y!z<x &K% \ _J-n]uR H Ebީ2N _M)G92xȈBbAocfF3Ɛ޺DR(R tn)r '=pפֿa{n[$YTݪIdE1E7xձEGE @-&{8zRC[3~$s7zggۈs>1`ݧ;g]~ . s%akmڵ뭘p!p [!A٠,lQo-(-^$\K2j'B&l?z(bF,]N^GK@TS=7"k#= !Kt׋4fo QfauZ@ `C̈ ݺWIU+uDC?cFUZ7!pQgʊX\@o)l{;1|FLw$N+RԎ(}vW~[9I0^7qE~Lk??2|m0ȸR[pVoiڍe0̍erGe* hM^EJƥ$/A z* F3[%(˹Vx dɿĊ[d<J޶iG*᧍ 4cbqg<|21Z-EGb鿺f*SvBYk̈8{UAP!Tc$ +\?%h#`%vk}[ eԩ.T;ڽ܍&a4L%N7c!]51qhx\~ өJ)Zj;IVHeGsH AT0˶{I濜\5̐Tv4_="X=fhy, HP׽M{"0w_ jqsUpCI"EEX!Ǽ2i IU_P(HnGg.H1|o{Ԓ)3Q7gWume3ZlB#n9ᑑu(^ꎆq*/a0 e,Jpu%3B=PqȐ:@"l( ;8>S ~ޕ }8UO.#=zmL+3 2 `#oY]1`߱~q%Ulw)cx'Ej W d\cHВXbsz'$j;<27LNUT'bI9GJ8'w3<^!jym"%Q,ꖳZr!fyJ"6xU3=egJ6c}.t}=㪁(aMMMqw]c+/'HF85VhV, 3RF!C@"2凗 G}=ܸFmCW\Mm糝J-_Q"Fy0Ӿ;} NC[n*5_@Z5wwmFQjDjؙulD֭|"`lHSY1X-;,1N,pEZvAev\,TD|/ =TvX?ÈSR؟VlcY8 'MzEayD2fF [fk_a7rgp0 gM^]{g(Ϯ;G$h,?-pӭb2f;balj?RL2YN*hJı:۰޺$ed|ȲDz/$u}P!$)*81eBN3of0i#YrȱsSdn&PSwu1LRgJ}-"%.Tzf|? ]荄:o0N?]âeU9N;\<[!WJTxa?~X0be "%禭Ψi1,PUi@'Z h_VZeOHsJ/g# <~a 3.>-0[Yp/y9 DA!b%NtZ0AoK  cj!`:i7a{͈Qs#V)f˽CkSȿ0BmEB .ljR 7zdZaEըGSC~}ݚ)axUHxSo:߯[cjGw:P_7WGl:>K *1:M!|ɶ(-fK׆aLF4'$. ׀ȤxhcVe"2\3D7 s":sf\vRtMFi@g/Z >/a1A;˜dvS;Ƞ/z387c=*&#$,vX6pu'R.;uh3 ƖRSE`E f IIybϼH40,V,|A2eQ¥]I#_]y-ʫl)=$`gH2LɄ~eKo[8 /'.RmMI+zm))o0 ^ȶvN 1Qc+zq&E\ hnY+-j^wݡ<&)S#^M9tp _^_-s;5nm`fYMY嘬r|&Q,`H6p/{H9~ J`%65 [u3^쿂^=҇ #/`أG zs~[9lڭD2Z&8Ҷyp}y0QzkF+]gP"`ȗԵ"l/߾8h#haύIE}RҦtpe̞&FO|99iv@H Yiͳ䓗2m|x,A;W}o+lvL;OYi0'dJmLr|_UE,hZȫW$?TđIvZ-5܅aTvL٨4ũznTڹ?lv9*%x68g=%^VV8Ul8YFĶѭxh !.b3[EP360$pl2q " Q⛒S=紒:!0I/sqO>m^%I64og&d\("7>x laϥ|x3N.yTI?֑]Hyafj};bRWAp tcMUBy7QGt6O=~ԅ^σLZ fA7 Mp1g.qi>? 8+y6m4=TK1[/Tan#/^`-OWĨe y ofЎ'f?9{`Ռ}NAr-)+AOq{sg ;\E5tMabz^Rʊ Vq*j&| =#%6:d̂t4H]Te(\Ke3;>ݏ ;Q>&'`مn5蛶dو}-&Z 6s,eY=2}ڑb k)1Ox:ب7I`@آrn2<!GCf .Oڥc(%94wûns03Yh{=VqTӐڀ\X5[["6Kb< ,Z {3wn 1FNAB`f"b*f3jɡ2IM{9J'(]YΏMMvtYw %2^!Cj>"]b/_:ouhzQ[+sOA2e='źO m^f/u }–x)-Vt 4+MXR?A{ Chm$mw/לKߐQ8kv#[mD`v~2ܽH;gm,}7<=3hB%LspQarMzۮd@^Rtʒ\¦ f|JatI%Z2|0AE'w2=8HW\7 ˟ר#ft?1ORkV kNd-'^Xƌ(Z}Xu(Py꣉dρN Vnٽ =ur.+ڒ9X=84%%` }76MIU}$Ɨ@!br)T$ d%@AZ6BjK"#7vi5mIOw=c8y80'sn˪{<2I'ƙaK٧buNf}AolS9J~k6mTD~͖Fe[T2sz~5iPL<_Е LmXoe8@#`T')HP{(wMxR`d1YMѡ)`̰BɮfPiq/с%*QnY0FHJ;IRAx 'p*_T lڑSm-xf.xU~J6nֹȈ}i<O3ʐCqNpe* e*Aa:(PyjIױfZީ:$x4&GxgzG[Ffe3*s Q~Hpp|Bp/e!`VoSTM"\h's蛬o/ۚ^#AgxD1pP-xv!TKL$YQ##s3@ vU Vviҫ%48KK%!ȡV[^^E.=c3ڹ/+ŜWR22sE"Į=\wK̶NxUQzB/jy6.,e{/asVg\D1;,o _90zã h}^\%;ܤNPA}m~{frh<'B)|`yw%~zn]]@|m_g1s};2@fvB-sfK"`>68 }}C~OX'(P w~d/'C bk** 8(n u\t SEmI*h}'hZ?Ev<K.P Fns^pr|àI8[N}-ee͇/_ʯf깽#Q}B7B|ځB$#~ сdw&W@z|C檷wvy6f i HhblGM'p&89I/4 \˜ x|r2Ç$q'b/Qg`&"NU 3UhVe`T󃖽CpYف>r+ T=npV#$m,J^Uc[B.jLko "4:5f::-C ;~Kwaw.WHgh+`%XkphӲjJ V;a7ʮbK'EcZLܼ6=M^v:1&EG7M-Ԅ^%:QAٹrSGGG[5!^ֻs z=}{ifH@?|}OSD=Pppe wπ1b7)!:!gL Ua}yI~,FiQڭh#Η*ASf=>ȜtNG+@Ž >2'=At'޴yjMW6M 1*K(M,J1Ir!786o zխdR \b` y3]gcRr*]xp㘘?g~ΜHsITvƨnqk2/h >o^4i4-4>wHxp9p1~gP|K"]?!ATФ.-$ӫ 틍y\[c|cv!ٷ:ۉU)1L5/sdG,3'$w 𱞍 EMȁI4ԟ͛K=~@qs ӼhCCޡR\e`-c7Db7뼃NS3 >YS?IHZO(v_@͟՗$D Qv7;,e^Gm]XWCɡ.:'v6e0oߐ-]|uS5TRE?F>N_eM$JZ=rחa^Ojec'fjц*h<4 3qlܱ[8[i ky*{]/0>7<;*+\F#X7b͑xsaTƯ}A2Ɖerj]DVFCU4ѩbpnh5Փ 64׋L^k)8fyMw&|*yLfW{Auu]G`U9iI4j$KyYXs48 '# P"7FJP#-~\wV*mbD9fntRRͬoAQw9 {8^F<8 9UlGm Mw~ h0ep[Ϲf-s[avԚ|8e A"YF EKRJN^{ghZYjPk f(+ړ!?a|z⯸ѩ8rrоN?k?YHNƟzn{p/C{hhW`c Huq Lk7Vδ+"F϶N~F>B6Q<-l6Z@}ʃܠШٴgtaAQ 냗7f¤cN!KAq(n*hTQ%c{IF~@hpPC'\KSr[O^G%C_ksԷw1ߊ6oef#O ;4(FaW`v%5ʆODqMO%&L|ꥤQWa~qˬ1JnDu]EIMK5_@+Ji[n\vpi`]7Dr*Dc^K$ƩjۭV)^/hCX:(ӳ rCʍ4BۘPE 4)i[?f1kÉ. #x0ABq&%G Z:"; K#ɶ{=-B_Q9msI61k# 5y㺎ӆy@Y"Q7&gQcMig)s,~"}G z4E70G'+Ph'g[28}P:nSRJӺqP4r2MjTB 22egr_k5O0Qu?VGdRf{q7@Ӎ)\ ]ޟrM"GD%? Wl'jzUɴ V8yP]Ѱ;.|\6_i.3IRX:;o9(?pp7=<Wq'|n}+$qݫԨS=aSդX{c9\m0p`'G~)4-AV18tPY]p_8&pz.@%$ O|4B(}/cWTqbSж]ǬAӎ,ܞBࢫG2˂;˷nxUک&vT4<@Ê,eRja)2&0B04!V(Bz>i,e /#\eSR7%+]Y Rֹn w}5G> PH~IT;*t$rmYeاXU!aG.ڼC_:cN`xezNۇl;B_tw52=|mkҋޣ+B 8Y_oDž" ;_c:}Zen3l7ScxUH|J߆XnOA$D KCގ2 0䄪2BR {tTICw+IM˨-/g UdCYڼhѵjr-8k{îmk;\'JOTca>E? )b(7xe3fϪozvvfȅdXrKpr.@8Dw{9BI@~ʔ (f [Ffp JR~LH.$m]m-R|^:zWS+&'$_w2)+*~}G*xDwf)J`1LEjHkplIy]McA*wU6閔)ikGRao@7v1.&\=d #?4 NldQ}jV+q?Dfihav-";fal?`'jQ}?~l"%WI|^Aj"#ggBV›"*c^ ΐ=YhҴa?ps{^ AC|RHցsB葢v6HZj% '0lR,8VtlmtJ^GJD](=OaLoԧ"c5wϔNۙ?^'+( 3 Gg-81P8Q``arEF:pf9S("~ټQtO,Hv..oվh[3#ZkܥeOwǠ|V::>nU$g u=)947فDm%# (YYܜ|׀O!ِ=2ɽ檉sf *_9FA#* 6ү/8.I(a6BQB <*4ѽa3:YUWΣ!נFHk 4tK4Sm<26"#o"ڤ8iu4{3; U)_Ilcֱh̕Q:!HSw|\tZHc_&=8Nltg#[pEwb[4mCC>3b5yksfgn`W[KGȔǀ=ݛR#<|U}h)8-JRvU@to'z$kBm5.П_P[)!hoq0_#x?; ?˙zѣ!NZVzfj<+B>fZԮT!%?tX* ɱ ZwO"Em=HLW2魸.JɥH\kkH<8 c_3?ޤ5hӣ+Lq= _/YDH;Z8©{9REVrgh<T"}iۆs"}A`g뗦n?pGwz={+ +W6ץ_ܸ 39 FcaJ >kz;fp+]Ϻ s[ጉ +3c \v`b89Roi8_,|q.YQ_ҳ&M(|3ua|сޗ1*|cۣuoֺs<}_h4]E7pyӽIAi= Qz1RE2k {r܌4﹈ ;&)Ϭf F4?V" .ۙ }>fU6ic[ә_ƴݫ,-*p%"HϕÃqk5oKo!J&ࢩ⏂v- P24*TU@rnx`rI'貶 ;b Z u鸞T+Hpз!g?M#7u>߆g e3+ǠJک3,D|*2-Ѐ@[7]OGQ\wNQT4׳i#eU@DsKh\{2&{cw %19$ne?06 B,vW܊jT}O J6*HԲr϶} R׃c3ȼ1f +?,3b<mJ9bCJ`H ߠP(?X >}!X\?/uWQ+ /fiCc.*e}qdbY:N4Qs%bݜ)J bٰ*y)wPH \^jd9J ۷mki:d7كԮ^o19YRix'IUw~n1NZ& O`?;XzPr|6egǟل/!o_5hia8F#fLڵ(ݺuI UJ>rr =k(CNvl<(CP6T _#0k/o m)JU,]LGh:~p>3YRm6tkL$.,]ti#z7y&MצB9P)FU#A+}3qPcCT?8Ƃ Rb5uM:K43i_{nT T(Ԃ,P%z/#m =nz_$IT.C20T ޟ2Oܐ{)6JaFQˎ(1bndڟE1 x=$g{кQ/cCO?;*&7CQ|'+ڤ<=ůrtvO%ZOXH1:`bMT* dw50ƚVB~Q]D8#ǃgu,vV(z,?_yMSD!7kؑQ)[0 BӛHVM󯘚.|"˻(U2'*&RPpLS>Ь9!/;idd!! 85 (8Ȯ$CX!)tY7 ,) ;Iw#Q`!y8)wB IFn9R9(G| Nu싼4Q!TyF3w\Cls?G'k"yC.D\L[BF{Y}4 ¦H~8ep s1=mTso$+ztf"AVjU ^ 8^2h{,x𱨿1.s m=rY_[۩)0 5wBx Ñfp3͂RG_P= ~MM [8tހ+O g`$&@^ ވ":0k=\ԤC1Ji䇪گ\6TuAm|Ar}4ma) hmt1wszo6irQa<[WѪϸL)Nގ!#FHS u5ꮒ *4W-?̀yBJ"%%n˃C%l?˟|)^+A#Y'b9/+L<-FȌ'3O/ Xf n@/>߸̢p2BG}SRTvMnVn_ztE٤'NR{WQ&Bl4keߕtAJ,[r~_6f:MA3,'ܴP鉤>how'13ܦHm''+mxEP zhViZPK7|BY'±ȤIv/ԯ}!ilVҭXlY)N CP6PPidMp$g)..nK/0Yx]LhQqv&!>ā,#f%K.t;E2QE#o?ݻf&~7X= O`30CU ^ģxNTzZ o޵㦚mn<=g(A[I=~K0jPM OeTk q.nah0^6[SWɻq/c[$ 1Bv{+8Im4!wM! 6 SW~i>؍o ̛u t[ @U㾍!6b2(x#ΰPμ'Ii 5O,Ru6`6kĎ ` $?n ϔk_~Twy[eDŽGƎFr^d}[-jm߿,u1Ax*(_ #O lt߱Bi?cw/ JU0B@+#L]s^I2ݘ57aVF1zaC (e(AȔ4j< 9 F@wL߮q2 +n8{Î"cn$O~Z7\^" ד14o/޻}`؆BM+g65I:@$MIF]~c GCe}LNV 7Rɀz4ӱ$ T0ch?7s`g gX>Ay\E;$#wz8anG:fgg2J{~-krRRmx'¾-ϳ6@D{mtsaj@&e7Wi^-3WC5 L~UeW2]- ]&MbI7E6TFBޗ`<:H$V #&ajN ρ;"V2v}apA ׳L{.BP[qjsӫ?O4[4ᑝ&})r {S"z!,aOxȈ'섍t-P\ [¬NJP͵ `6KI0?{bQڠ5M2n*Fw^~h. .i&k_&Gyz7w]#kBFDl3K?>ܲbvFc K8~ЗLpDr)CcqūG l:v)clʜO,Rf@!ɞ@o/5P41{b6Bs36W#e31>XwFCйxep{(VCh ݼzfUkڶc3"2n/j1/@;%rK9&EYq[9Cxh֫zwMi 1q%_@5xN<?lNMN-po)\_96K'),ҮcrAWΜ Oٔ+kUkwzG7-xvc۪mߦ&b_}ñJ{_ME>"tT%`gDvvԫ`~q 2Vi` +SRC/5miMp][YSv̘g[ eT!e$⎺,\^r>1dx!2ީlxU"V*v9q$MW;UN[W=ҔZ8kl%;O>^Cm~87QS ȿ'JJ]j*,QS0Ri:lkErGj݈[VM# 5GowQ^h<0疁w @ol7d:zFqfĹ؍AHP;v{wԿ1* +ΙFX9M9'Ԓ{rrlIjA0R2}=hVm* H5GB*R뎀X pǗ:NG(Mz16DY~&8 ]CbE.϶$鐛`A 6p;F-U \*F`|]Z/bv0OX.z>[RF 4qb@@H_ea+'^&Դ4vn.y؆Jvƃ.& kxG%kݗ#?ĊcQd!%#vۍBo )FpB̯f:O𮱿-awĽa&ANbEr@n64;/9,d/ 1m?'BrX80<@Q|LEⰸg|BДMvY|TXīƞ՚V:t/J'77?s]`HKb$u!:u` n|O=G3(4α>4Rh<`봄=~$/ v|ȇQrdeLxKaWh9P9NV~0Nr'Z.JvA|qnMYB.cagº҂usz%O@c\2IHu}l( x5Ib`y Җ%'~‰bP#-2Cv:Ó_>b׷×$5S)]?Y6i|i "QdtAcHZ϶DBר94zZzj'ή,A~S,0UeKLpXR|n푭AGa?k?{Զ[DXHV 0DيW1O 8&y(ڳ]Ì%0 p u}5r#m .ȅE8O޵GءO 6J 0GRhAeX /z  Q@{=e@ۘZÕ<Uܿa\o-(t\쌸u2}5Lҍ`U=ZEobFΎ>h`-XFP3w B8)Cv) S~ldn N=1p:9wkc #i}#(a(I\#!(?^sqE+D+'-E  aL;s*G)w<7 @ϙ0XM(Z/Eu4{gKbec&3qǃ-mEË/fI!9&bg<`lx *X㫯cUhLDOiyeF)^#>0Vg\0O腡G5 0lm܌Pc~TܡpĨ􂨲v/> DpO~ WuYpܱnLךΚk_uJhdS5_, 9OvA P*'[W '~.X͋# ^c-kriVCb^. YdS<8\c!0_[g~{s>*Ǭ .^)"~ji!o.e~7ǠD]Iwėg)^º]`op 7kK.E&TrLX{6m1iU?>4x=4+}bˋ݁1&=Zq|z5Dg#;f+?olˆc.6/^ M%uyܝ oWh]C=67 s-\y='6\ `u>:0îx;F{m][ӯO+npz#0*8]Imy^*oe?z]3g3tvbŌnĖ N?h ĺj $3M(?qR>MۻQu6#zӵC^K3{AJ]]j\$;G`y T?eiuANv@U_s6TL~!=U"MUT|.En48\VՊuapؖFb_;aYrQxÌ n|:K&|qa_Q1A5=tDc S5i6rFٶqaӰ p0G*';a-(N b&ޙ'GOkmX5K},.]ytd&eW6x<{YܡKEBK䘏=c'^vsU}e 2)O`݋֯ (+f\OFjb:Q1 (^Ljbq$j Ht陌ݬiCbrU]c ˽;)&EY=gk t/p@' 0J'~.v|;U$T_HiJ[v(s()O4(H pb߽iǕSIρT-XflZi,ZN-ۥ@fO$l^Bbmz+t )G^]\;= fanJ`+ֈ H=ߊo3"5ׁk~t~pP%` 3m10j8Xڅؚ{ihz^@&4e > O ( 0'/r<]Xn~cSY>+oqIKү8˙7ўG,ꤺǦ `Thɝ"699y&.TmZ(h;>+C^ "J@'A,٤"~*>q /] 4ۺ?cb0jQ5>(!v =,X'/4FGɨ)iU:IJ\ST<މ;tH锌GD*?κsve]Ffz)1/ 84Q\ 85I_" ƹܥx@ LSsldTHZlfH:5AQO, /@Xw^:W DrEկ!)F|Ӝ-ZR/V~O@E}mx^4-W2.`+GMhh*;w=Vbn:rN y/eyeߝ2*%,7)xA%>J -U[) ^Y>%YVҸѴ J~&j!;a彔OV|< 5[B|q/wg^驣ņ홊zXtY~acF3Is>ػ~VJw!2q}/3?ϙQ2WR셭r 4a%nyete7 WMoE1ŰL;tWq2yRX_ uG2lհuKk`քRrF<檴v♬Jj9ZFvi4"i5:zQ^3gf]E[\k6Uׁڜ!4E(HA#.+hJK-2w?j/f5}Ɏʦ:R]B(b{^Q+ KFI >Ƀ.}zcLB'Ko"gφ5* ҝf\AD6p4r(}MBcˈ>LEu4 Bg TOH;NӤ nIz=۳ď~୑GЀDߟGs؋Fȧ.[2aB0 * 0 x5UnnLOPq/2 +5դr eZ|'_CSeήq 1|e2[uc'.R^Z:,1xZa+%.z:.Kq`d?;-m , 5)3Kn\%%ִ+rޜ{v~2f+R0?0bavTOĶI-/<Xg=o)p]ehqN Dm" DD:2 i"E-yeZXwa1@+ꕁ+SNAҥnKQ5-.O0w N&:};T<9ءb~Lˆ^o,83`s]BV #]MF`ծQh$hN6IHtpMEi m%g U1^y 3 v֗hd1gwj8?XEtk}'C2lo 8 $% m2r^dn,#r6DM'Zߋ^_2ık EQc&B>>,9nh9(C[ ny8ctEͰ?Z= %`BNJbق#7%+-KN~<2!nF8v I@-H=HC``'Tz]xTTz\J F=swʝغ?Wnv=tDHϣ9l_4K:*[⢎ks +l0x5•/[)I73ֵ.oo MDz#Ri~;{yla3_J+O_PBnTFefc<;"o[4VJ#aO#./I8Gf$0ˇ3֙v}֌ߐo;8ŽUF H=+oM{ƒOjc< ?ɖd ؞L;kwف?cr !"ؐ9Y"RZ,GR(xWkTz As&a2Gb&3oEr;`yM4]RXO]!`ZRG ˈbۡžmh8O)owLUE?pN( /?sKa߄̶*DhZ9b3#i>o& +bE[$2sD7[@\k05lwgF:ZTP[kpcMXjTi:ci((rrSl7xY\9z9F kC(27dɨ}RuJ/rRCB e%c^k6pKM0UCk:w0;0棁ۡHOXib/zbX4"L [:,zQ ='"c ;aND63s C܇E#Zah' w:7Jm~ʃ\'R竑7mrHN?#6-5h3gq|abU0u&*[)l@7Aᭃ@ݣN RKWڸ`/ &8^T$ P'ʈ8ST\C @Z4ȹy,FYNBvE@8D ap*$%^@b 6zGFO0 ߔy6mnfÝ]QM浍iu 3,=qYc6S`;_NUZmÓp-˭fx9:rD H#)/<]^¬JnXTDzhRkJ~Qj׃m>1S7>ġţ]Jp5 Ư &S8Itػ~3wc |½U N&&y@wQ9KJV~mpK,)HJp%$'҉ډϽ __ٰMމn՛N}&IfC|]hy .dC"Bq y[q)ٴ/~3nΓʩaLhXgfsp}8{acIdR:؄?w|J {Gie?a@MkNCڇgүP U!%mE LT >[WD>mnd6&{RGN4aAQCg>&Je5ј#Ta ]:Y"_hɊW$:y/׆bʭ}Ѝ6:01C8)#lsb}ګ7ZG2`Ҡw rt&uo% _"eKA3+Ǎ+Eєt{-{Pe33("ex ~4+鷥vw)P0@0MU'1Ï *BNKo"OӦO=}w4/ RQXAS &G ߑ}D ?̈ip2'!#&P^C ͗ @/otrn-8=> oN|<:ԑ(siGe$vzVЌf"ڞɶ c|GR!x ?ՃC ÛP Z;wD z,zs_P)8\b#QQBRsP TDXqkjcW!dB%EyA&>ژglv]#,Q|1lLd@iz0(ulOs?LMdY).F-B@\@Uejߟ f(:WZM̋3RQhw#=4LYJÆM5^TS1"1/6¶OSL]2vs>ԦN?IpS]~f(Cn , 0T3`]Ze d И^Es6fS=xi `o"H%A($bZcaޙXtL>,hoWZܲWQ䄼'Fi_̅r.goQלd5l玑%\7Δ;:U3 kq?J.,xl"~ 4pEȦmɩ?"wԓ'qW(h&CCU xrvCҖY nʸm}+8)+>ȂTX^oS dPcq4i7&Ej +HzK"y(e;oCU҅`3Spc]7GMIr`n.\o>&$tCb+!zd .gfuw }L$P>?fk]^Ԉf:` ?y^u_[.͔Vu>\c!e4tNdh<Ga g>l4J1 `G-^@&ߪdw1MIX v3"89K??31e<~mOamu4-1c&좢;-CQKBMVܬ/ "T%:GY)ul|nV0'BU+ yQorV}Oe^U4#J O1wbz$>հ!#EҐnDaUOܔN_9XB'աj@㥄c(`dLԠ\sY.@N6$?ōPҒB-[9_W!寿 TCɝ;PTI4U&Ew ~'ƓfmqZ!?a)&O8-H{KgSaKʀ"$2+BU=-ds7C)r=tCB'ɿ=h!PL\+CpmT@7}OT[9yՙx/J@X-7E {v,BQ]Qb߻8TܰJ/Kc!nPʳ }c;ro)O~3b`[QcLZbvEF5m܁ΛE:Zavid0a[@AVd1"㽪XQږُՎ _rdV. R6IC_ziTqj2^Ja {,v3x /ЈT3ao܄zX =D¥ivN'^P~cw  EIX052T3 H\LL+(Sj@gkg?ˤؚpL s;@UEs1}x2E!{4~ׅ|q#t<˙ªk& :1‵cOw^AsÈnE3Ƞf ]x}lȻzQ~i] LX\m>TkroNo,Jn-f~ݱىmL7L Sd x NG(G-5s$ØB :ԟ͚1#<ZbPjm"){fgQ ,˜=Rƺ}!͛J9+HmϞAi;ʗ ĖY h1P7(QVU+}-́70zX]QrjR)VK4ؔ#Y ȥUn>v I$a nlT/JkdL_cOȲ<~oi{Bf"2d\h'Ux`E߄N-JɵZu*pbM/+e FgxUolثnwj #ir{KhaE+`5.[-$^o C54 5~pcIC{0>SefT)^\4\a!r^>f\xhH&]`IZ[~4xmL=Jum_~/cǾ]+OcP} h):>ᶟB&@gkB4 1AҋҀd@e'8,릑).TA;MPNIɴMW,mAI@ c8w83rR[tr L/7PUvS`\$ XGazvXxFl͕Ic ɫ?uĢsuDxϜD3}sF}nR:=DZzN_îXnb%b}6ۣ)+,LSyI*04Vπ5OGf.lDSR2͞jB 0$)*.Ax9bJO.mW(&D7"oCXB֚_~ l Ɣ$hɛlXcՇ",->V+!T uW7Z~e՟F:xk)"^=nNVr~D7%Ն*CC%och!!U>5g9fP#Tk:n5OÙ`Ʒ"U~HCl{ߡz0 TjfoR9SL ITh?;G] cL2*rLF7\|xDe}/d (ׅz*gEhp@l`ѕa. -!3;H un2f?4r+AFHWiLJnT>$0GUkܵ{ʏmj1ӹbk7^W)!5;[@ m%?wb%3(=e-s᳡_V2|MQkд5sV %e-iN,ѧ-mwGK>r=~M/h\PwpE?bt2Fβ'r4 .@gUH(w}p('y0bh,^w^rs,MC*P*NBwڸΗ( zUOS8D6urnP*uĭ`_gRl@uܝ 2q@vDP=z{3) G_KgC }bGo3R Y2(^}/~+edI\>|ǙO$X.-;PET5(IZ-K!o T.+M~cȼf38N4GKzcў͂ YϮqJ\CG4?u|1`êޖY]lrCo- /)$}*jH͓z1roR鎾P,GZ9K >TRGQS?@nbPgݣ塷[WbAuInp0qԩ|?W4 ʯ NgAP/>[uΜ +6s[-q+M,A;wQ7}j.0oA:JجėL(V3%U "3H*DXIblX_/v◉2^1biˌ mf2Okcg#I2^'.A$3T_x4K.As$ߦѼ]PLp gV@z؟C2vnniŵ!cG ~s+\e޸y=`V<'!95 5SZ~C?T8\GY=rUq buQ4n?{7py{Y9ιi|` jVYkIP /1|j>Uvf{N#yo܄pEۺZsQ#tz: wM\A*ͬy< Zi+OgjHJ$8Q.l~ߨ g/^8G3vrBZ`_?]sTPp M ќ>SjyAɉQ[&M!FxFaLmCUϭ*aM6AE]Ɩ@4-9-y2ȩ"'ٴ~. PcoӏP=ujϻz:2# }F--+{ XVnÔ3idt#/SSH +ٱ.#A9FKüf;nW_1H詘sVKD ވ?,4ֶA-PLN2$?7`F~jD*u? 4[`1@8qػ?2M;F^d<_~1٬\jg"0O7a]]13S'YP)à˦鄣SH- ϝԌf@B_\|FfE76:1ߧ1pOPwr >[ ÿnWi<&ٮ1Γ7u}eju{3ݴ෗K2X<_H'<˭I,Ҹgg2xnL9-rL"Zm?.0s/i;9|c|h&T(ak/Z]OB;l'qXL6) hB8֒#ϿVN0t߅XD6QGZxf wjc-h}xUo+I$rr$N31e4:|ANa߳zxv^`/Y#7"%R9s2ng v~G>TdlZ ffthX:X8Nֲ-sB&g65o70jukLEs8&1p7.Z$/@ A]Ljgb ByQgN:6q}'pDÕE~ sOeڳ;BG`Jt[UD1V{^ʟ0I0˳0jtM¶LnBѶŢ1ROP!wx&jщWT %@}3O$m1^4]\[;!/8P d;/CWOC|FiUԍh5OyT.3VyvO"$$DЏ#{ϠU96wK+XɵEJ"x\ $KP+37J9 co^#o|Z$V4gd9& xFF->- NuÎČݟ 8 Ӑ"FT1bNa$H0FRr'fZ^ K8a'l! }nOGo}SUAR1f]t̛Ƽ-CclάCĠAx ;P+|@ Sr2d+D] X"BZ"2 2YAʲj K*,r¶fIhv5Z/|ZNT꧁Yvę|(ұc|U+u}mvئb'(V]gTU 9XU`L쾈>} qB%29fɰ+eZ{%/3̢>@ib2J6m#~Y3_4YGFpp$W1r ңg6ǨgLk):|AϠfM_h?.{cU&(vdS/:3=B?v(fөVvwEMQx{ x"-KŸx^~Dlg_Ӣ"Yċn\}USdz𖾡#Ke$hۻ*iV=aQB'.-됄}oY?7M {#ZS;"F.L0G } (dh>asIn)1K1aܣ^s瞧F)+FI?:yl8&hZuOd"ƻnϝeKCq[m5G5I bhVE_YOeg vab~2O!CId]$: ,T;oف*(U:2ND3X'ȖSͽ,͆ʜ}1VY0'B4>bʑjNS*MD`&f-C0"s%lK-1ڑ@^J- ʹ[$#~iZNF((Ve.NNBze3ΣF5J/cxgGȑ qߝ Dy*u:>4F"~GѺ&,ȁ. l-_ƾAfME/҈%=*f"A/(qImRpک\L/{^8 ~?^z"VLs+bת ) u;r,%! _pƤ++Ƭ搡OMSskN xm \"R>*2E8a6u:# O[V8`quG  Qԧ͔~s6f26+Kތ>3w>ȵ.!xח <dHIML '5[ #:ʪl"&BzBD* 4~]Gf $c)>: O֨uѠ1}u^|#sy:,j)j7bLukq5F¿e >Ν >x U ]]咩9"PLF#e} Z:~ VK|6@nA s~6Ֆx@Q>Kşsٞ>KA`R y:qOr4#&4[ 5f:^=΅Yi]GjGbO:p7>W +/lju@C՝o~B׊;Kl/##4BN6{Dw+,Y_n8 yAiT+DDf"-[xuz#]BT  VhXXv,cѾ=rb7bZA\,qmxh] -q)%g߸u۲WKR?Xsu"ej~9q.3^bl9*6ϫ7Qt;6 1πn7$m5םuQ$?:'8ru Y)IhuتWdWfz|ƅgD\dD}ށDU<ۜTLZTfrWFuٹ^$?{`$G$&♩ ";T CļPgwAAƖޗRwJx#ϛńXBG @j)!N%[~jRݹhv@;]?ǰ}(~-z797[!5/(c|| [ɿ#{znՙ*9Uݱ1G]2%I|#ҩ#9ți) Wۢ@M HnH̹#9D-2U_ H8"3gIR1ඖ4oTv< 7AUa9b,ȋSEͯ4(~+l㴙OW߷I=UB_6{z77';ꈨ=MX[w4?/8d3^6Sl\8/ j5Uq=iqTwЗ,|8 &ߠߘL,4[M5B55CQekfs&xͳb}-շ>:EN+TWHNCƥDʯ%*O R/sAJ s+.D9֔/rnK}8x.{Qp#%9ev Cc,Ԫ_ld[lIc}.DmfCWAYs-WaƮ ,>n~?ď}U]KïQYLJ[6#j dɊݘE8dRNk"|e)PQgԊ uȠus|뮫 q3_qSwQ8+oc 9 ]pQhlڎ}?A`rQ .ַ~grmfJo4oKb=E&:h3!|眴Sp}~$k9(yKGFFd#2;1v'XWD ܩWH}{KKN'JQ}dJ8#`]aI/{bFeo2,F֤?p4^P¦=~aT~%[EUK- n>mIp4kNg/.6dLJ_';Ά `5VH̔Qأn]}a`@t~[M~KG,XmЙ05:y~UNw`zɴ&Ab_5϶Vѝ$v ߕ$^1Hx 7 ;vKw t"N`y:LHLmy$0a<V YUS8`K /J-\c׬ J0xl;Lǖ:3b}t#TERh-@/qB_q 鰊jT SW?pPZv%m{*VXlwʽ_a}rLH.Lݓp.>SGB4yCT$6u1Ei ꍴjjÑdJuڦsw=v#(7Ƚ(˼#FVXl_F#B}Oɸާ;ev܄[7.q,,$*FP}ۧ+Ο l}VsHW{_"<Ԙ_ {_v PQۡ9`5>-!ü9&9wdE* :CKӀj<)*R"#a q#ڸJ#q|\§׌hxjO7v &l~qbp F15SFi/bVW,(o{c*b衊 o׬=8TڕEBfnpvՍ>TKuQm<15Tk(W_)Mמú}׆=gs&Kϱx3߉FE῀Y+fΑ?n}]LӗW2Zd(zqjL~c:Ŧ)P1[ӞkbȦEH2fqGR#1(O @ᕫ{0+*\2DF,RtnR]|=T􏨴?b$t-9P='<荒\ Wj3*/"~-lu)i~"cĽdߓJz雛2,P{u.0v& E& [ !l;(х[we5}* M^+hhgN_9 or _mΡmn=V (ۍu!9ZsuC~H!໻ C L7x(wiwpPxCM ҟls$u?W>uºNX$$qI䯰'n!b.v mlKC؋#ދ05߮Ad՟څ1Fbf<C̆z֠XzU}'K)5 h| 3Գ@a"JVdIDSD)uۀ(t*61a5ɛbܺ3->!͔ytXNzH«S9Z-խf{ 'z(`NTQ'G'WM)~ @?V¹?z#& T~nL0?d#hLϧ g%aH'bhaF_#TAkx 6rOp@I0 ]V-WN>rOPtCEjdתzW1.3rn kb3Q\F2DuESE'1-?i_x;m^qUťlRxK&]SFxUJwCW:5TP &5`S6F0+W6Z3 T (>wSr}xוBodL!HW Yj)JD??ab59s)!\4DᓼΨ4lWx}-!$ڈw}kߨ׿U0CseqCV.?´ M>$}= "yu=v\7.~4*,{5^;ki+16Fւ~!vk" !?L #bb zƟnZ㬐:V|`~B~)=\ӐSÇE[1 C(Dv9eOMwjE0f1Odj1A8+@N> 6c/eŌȎayjk\+}ASUQױؤ-j (DwwZFSdzn mbRfs`МS>_dI$i 9t~{GКZ60rԍʮڑ AV,;q-]oɸ.>\4 δa\mʱ@OJm?Ei[H󢉉 ;TFP}!"Vs|wANvN 1TL /ٟY,\9c*$B !l#F3Y7~}V@"'4k,$a2THh q c:Ck[ CBkTio f'NQ[ B5k{Yg ֻ?!4Hn}N`j3 t]\ {ɾrD3O# Nh/5ދL&dT.n*+IROsͫ_|>e-!Y~t#Ξ-6%GfSZj'-U@.z``4h:0.'Yi:K~M Y:Jcޅ`Ji1jzu*(*㯱p0DCʫc#g(Y?.EΏohPvQ}-v; fBIKF{gALVE?SI+s޲ෟa5c Lr]f§k;@>-sjh;}FV;$Tu:ƑJ%^KMF a1^mHfoIJ^3zK >=k@fg{] OQps\1 >~BA `]hgw[T &+o\9$b}MhZݛٜ@5ttKBjz_X7'X}xQd~f{aRɄ6#xFXj'Đ4\,377>5lyHE"kݞǞ.̀w;sYkZUoC<8U\I"b>l5z9ݛsk.ޕ,:vt;d4[ Tez>qx\%V x?],`H(#{g|Njܿ6RF%/]Ḱ;)v6Ж3 y'&bg-Q@=3֊%)o:o7^xؗҊ[|m}oSV kї;+.dMC-z_iYޫР 6ݐsX.Ls2"Dw=fZܢi`Q W+Osuyf$Ud?'"ZY2'MяP7xd驀wXdc]_E@:nWY;,& s0&dӄoF:D-Bn{? t&UW+CESԚ1) k6ڠBZ)}$ ?$FpD!R'@|BߠǕ͠Z ­DŽ3.`XCtI &j$Wen]zbu$HJ`AsS4D=T[P7r(Mmۭ_ V\GW- x-:C=B9_ b h=!/XV22fᲶa8T̹mc'H؊T8fp׼l_'5p]Ẻm!\ݛJ絴:}K#E:jG;4@5HlQi[P”W\qj > {թdl- .ӡxjƛ͑ mZ;slg."eS9iߡ" h":_ZyfA~'TXVE5+9`&> ,_}y+~]bpTp !{dgA\ T?i@"J[ u\$FG}ZYWF,G(uJ ]"aYGjvu.dMoCL*(>d'o E=Y8S<i[㼚f/͜0 k{(X-)ʼnyJڲ@8e^pzkHx_$X(w@Ƀw{/wG$"Us6qTjV2X>\gh jxv9&$q8a/ [zh5L!x,5ٜ<ѭ<(=O0i?g0J4(9Qs}^"OB=c̑'Bn;_qZ0]XBҲTFeŋQ@ۆu}!Qa[8nCa#jf<^|lp4pBq gݚ"-݋}dǃ)_yGh1d*yQݭF1w)Џ| +$ob I|DǜˆCpSUKxL71lYA M&P1$fUwQKlhp֖ &.k~jjN!GY+3@g2DBnrq #%-QЎ~F]ŀ[QHMC&\HVCl@~т/Hdjv+ !B *9V-%w3>9Ցd,y>y:th_VaI(Yr(lbu;3Ϟ|Sns*^.0rzŧxTA(kHQ]l$"m%اXFCNM5mJ^r|GQ$ھ,k['d?S8L՟2_bW_Ys5ID.̯J"Gf4D[CgKV/NHKP>VHo<g򱖫ɕ`WYm}CQZ>gBnIԃh{Jn'Ӂir;v6bM\VH*I%x7ƮD֍lpFrL S(,goT ʸSju0Wa+Z Sc)ݽ 7-tg>)/|,Mi5l 2@( ^=ԛ)CS4v#E {\űtUhPzONyNؓ}B$݄>Qqr庢Gh.6rTP mǟҩD{m}(88P 4g4ݍP^XU oh(,U~}w9e( F @ug>2:A7þTrƁ:o<88cբy'[h׾b^,'M5?[ Xk섎道|jG[z-s W&U](,U ?du`_+Ũ@@',n..zد¦Irazjgux=wMdPq2r:|v&>#*.`XsMh˷RsYQɻwOF # Uܜ J4q%"˘ 'p]rS6<+YiW)2ٙ%aC dYOٍvh Am_s2p;%(:IlL_N>Lօ"-Zt?;-q~h-us@+t{c3Z-5ȄNnYbęCVbNV}.WC15_!%DLhg +?@L¦\Xjs*c^2-GW2Cm~ҵV K)Dzh-N}|D>"G'M{$b~f\9[ڟŢs[RETDղ>1@O='MXTwbgu;kmȩl`FGt#m󽷀5:G*Y~"Qbt9Zj"%H_hfDz<>y"I>$lkjZQ}֯iع"&M''FEc|f99l@Cp {t&WzLxW~>]`lXya]IVoLފ%jhb&ZtV5o3I UwSKr9 E3T4[)tR/uhW_ˆ]s07|Q#u\™"Xqp_9ۦ(r$pTAo [p]" #@/N# TuRyW}>jLg fPTj܉lӘ#~Ł*&<,|B9#DAC+XBk%t ae \ZSc.ejR:`p2W$oN`QhR,$?CKml!KVK q6l*Z;z aߕ@N 6=]sǂױߥ1 ] ݗN7e2JAMRHiX5ۋ37s|`%UR-N6}(  !_AoBWG1_P͗݊z_50}%]NMZv<*UI.EH"@ ¶4t  Sc/7%nJDݹLW`懩v?'*vÚ2PC 6'yY0vCV}!mAj'joǐ]W>؏y.Jw?)\ye 4I"mSW< gc_n+hX&F/?Phpbg鱄 uͱnKl:ýUQئvK^ DOG 72Wٳy,OK=v&!. *6u,AY,ez4h%ahUBtAv~[V iY44Q"/̭̽%(j 2z/^v6- y:>wq@VVi>9^+Vz8;f9ږHe6U U:[> e -?F|LDb蔍xQ}ޗ@DTq=>ĚٵrVG|[Us|1j*/k.?rqo4%'uYW|9:NOmoSUO0mVS#σw7*qR4v7y9qtA'kة@ˌ ֪}ȘmOYzSbTļ@p;q8]*) A-v4=sPtAYi ]\3bFmw͛UR!{ɣR"F36#/SgYR[ܠnB=o#>GɬGl܎r)_鈒9ᢽ˼"FV .!# v: h}N]kJ7%)"L2= /v~OT67yɝtq JWcJIz;DoTJLnP-Rn6#8n=º+V- Χ &WrjG) 4otBGqFY.P21 Yk 9ܱO*ej*좴xYuo?'MdrQZ̓S{bKUڟ\Kl8{ԌIUw.0Iqj H'2t<@ AtJ@]IT̗9*y AtݪaoLv׎taga%.[NƯU-XgJwx'nƸ?rC⼏4N0οu6l$yDI'bRW  ف`U fƠESuJ:XN @CkY2m' $k-?xn$^ĔJ( R074))`9<CJeKw}ӣ1|MMM-[Ib$}_F\ *AeѶ.˷躴IyʯG;fdG"ƅ#{:£E}Uo1._TUfrl03EZC@ Ʊ=||z&<:sp?zؾI!G%֏_hi3['ܷ"}/~/%яY]?0H޿(d\b{_C9:A:{*4 e&x:G"%f 'w.r Vr5QhhC^B%c1%)qcYLjf^@~l]Gbf"G_E?:w/YNJ׺'l\id)Vkc< lԾ*&vWdc8=Nm.eG15EvW rHgxZqGOd"UjDPI+4@nCߨF `ݵ[C;q^wS&Rjȇm3VdW_VZAf9-/!~tݒF5Jԩt!2@@ϯr5H W/2bgWߦGooO *gmF @tr-N KpG3&$ίR&dBD*܈q9帎@P=ڪG^¦a2[ d*}_VTǹقC!Ev,ps9w Rj;nt"& S2a~U,s p8=y4֎$n%8;CS[%-iI%ЀRf#X _PF`,d)XfBf]59{P;1AEI"4y/h%O=Pb)w۳৴gLMoƋ.S +|7cQ XUr*P M9l<%OhXlsZO &_-;mV2⬂k9h#jAhyOwU/4zamG}epS.8;k=ψ f?>wVܣVw)6a5? -QT@ڣqL.LJnE䁨!GФN +k`\gL4^@ ӒMEWE!ᄌӿuyHNԀOi;ܵ1m)VT'9NT ,P!k>t9ylO0q! wiN[U< e^k ;hohga䓇#hdixCUctu6 Ԏ"THkrvoTa`Li#_2z٣z_8v3#cb/3%:c1C,9x&=CZӚ0FK}{yGlHoX 5ISpGG{V*ٌxWV9^zQ @ˇL* :pSOަ4ɒ2L\OcI7N1xX؅3^-V1Lj^^KRm^(tE[}B85OdR}EEu+\H<{ `Lp3q ZN+[t2V/I,B]PRTT'dTG'ry^x0bT_>@ <$#`K ʡ;8D "r c1;6=alxf HcFC4{uYYv8{ENƯ3Wn&NcǍ% |gtǏK@*_<^'Fܕ(aE( E*+^i$FDFD#){N_h}'.ѽ#P1'kmbdp3Y΂\ 6N o%9)"Vؤ B4'1i1cdl?C)'!Ux1r\ ϨFAV ڪ̐mp@zc0Oh9Jm$/2A7fMYILT;“[Hin B_JowN7ɶ}r2߻,Y¦m;pq eic$3iDz4EИKqa9`AnFyϣ\qk/o65ҽX` ); e 0lKbߘ m|j=(`2LP^"feB3ҖGF& \mC5PFdzJ@nkDl-?/7u5Ȅ{.n 3䝢g{ ; 魎+w^N34m#" #4%v{Oس1>ؽW,Hj#“l'X%nں@keVG y153VdmSL`IBdWXXD,҃8N&G$p|$X2u7TS0]o}U;U _ $PxZ[]^m֞ vlIxYA/!ds~,J{u]a4]Ԥs(t*1dn h)R[مh>(\6;u__!!s0H6?J K`XO\ f _$bPP.t8ր< OZ%ZV>d7s5z"8 n0 oV}l?HA[3愞:Y0{7y18!.@E CCTbJɢsTUInB{_i+60JvH3?B@=~|?G7[V1]S UtKe /WWzL#yץKex:.3NMEp-eܸZIpd>+_0EYz@EάoZ3g u~+0f;'c& T$1T&!BYgWIt>k)lhhA<X-)~Pun|Mi JjOv k16"2wE?]d Y9(O_Ѧ⨌/hV|FNI qpw, sXisVoN`(w~yCڎF#UvL*\ wI˔ <$ȏprW ȑDT/%7W;YP]S,20~x"Q fDghQ:sm1=QfYз1|[tƕİDF)i r7ܛZO; 71/6R6=v9GݍEƘ=H|4KYÉQ!rr]ii>\ҏ}"@w>úXQMA6BȒ#(k+(CƳ+YzAhھǴʶA.-ӇZƆZ׫)jbJʘ?m~X_B/&nսw70z[m&C6!% [1t 7 NP|}Pg06E[.^Hu.xi8ıNeI#奌p0edP(ڙ%'cܤզM樇޴TX?KL[ J*W faِ vK9'f5Vf\-y+<'C)Oc9CP"8Ϝj `An-Fe!=}VV0g0w=CZRcq`)?hgkV*܆1A8OVh<*Qqsx.&njW cL}vuT$[Fp\-PxWY:Ϲy_8WS1'g.ugnyͳi:r"~wHU{9)`YAxZOJ  {(NڑzuLpuaiɔsA{nᨠwO/Um 4^:bb}Ҋ\kJTې M!,tUevdnc@ 9Rha_hr NùƼ`H6OAp32 |[4S8:dP:_7 ~h 3 xɶ2:ShSXpRNor Z gzS8;M`]6~NR&+V a #)bg?ME+0%%2wi=<`f@+$>W061Eo]]D3H=lK @DiQvg_e&3pQ@T3aol.bmi3OBّ1I̱ ,;Zv'ީQuP:%k|% G K"o^ɼ"uE4i1ݹ a당\{gMS*(cF_Ҍb^-TAӉXc9+=Gyqz ^9(jPv_>j>O+ 3n)aK&J( zV['o3V"ED뒇I<%l " VrI]) v^'ĢSwra1gq?T +K$"L2ߞǰggQKN0/Q0-eRi=!fxر3^ig\rWy-mE'm{)(QQ>xi Zr^S_,~ yY)LC% 8d?XUXT2ڣ~ggdKj, |y<]W>Q*|aBd8cK4,*"oq.H^g萀Qdȝcce3XT!2XJܷDz-φ&Afܓ[Cڋxp\CMKb*]|ltDSO}n ~ aQmil!/~$!,G8 f4V!i>'p5%Muz=,@0Rt8zw%YڿЧAq&L}`r=mR'3xTRmӷI4ޗiP0aϨQ&$Dq̢(bbL畢#=OzerkԂ9醊\g^uVckT86Vi{()OP6j>-<,}x2S lmEIDS =M ufIi'fL4W-24jA̩s[zx|Ѡ }HN!u050Hv`$[U%q f]p`-?*y($-j"OP$:8ċ+2 th2Jyy(U5W$-Of. ;NZk#.2ϡ0ǖD+잹<g:ɤ;$ҖL;8&6 \hAusB^$^2i#B(:i-Snݡ)XCcf@E1b,5Aj撐 n 5ioF;R޹*kE?VS}C@lyo `3~-no}m@ba#U؆Qz\2'iy9Qxʺe43ePt[ϕ3?B Z}lGPq(M@+XZ*kK{/Źbqer6.-J ?cQ,(d +x_GMIGi4}$fD8tbFp+C)Av^CƔL\6Hg. ;6`~~ȹyvEi T];7 9M\Cd\\)N9sڨAt!moQʭgHYu_lr%(G',_sE&oGh&dyR<8#C+vs QK)᱘-oSQq KxvV_;BXtI;-rI{Ӆ9MT@MPN7Mo&S.nqFNs@~vKӼ"©P-imMKD'n fdO"ksVHTWCw$|[B`#g2cPUKjo7Rm)IRW@9Ay2@&gZz&!pӼ13>^P )d`@8JIn~ 0,.sS~>=ls"&aUmQ_|'LyԐv3(s9zv}cj\h ) Pvo/R3gmR\ST ٨ @4o p9뤌]ͧWi^O4 mo"oT{L=:Z'3ptRB)ŀݶ2۸ccJg_@LPk\t7 dlrрyhie n`L}oTx'zm*\h'wBDC)iGE" [$֖' W*pd&SxښJ2p1*^N4u[=)T5\ןB9b)Zaϱn5΂cv>m>) ? Qc_uF=xybn&%/d:Nq_-m%$h5rϷMGylK@ʍ3EۑhSCuhtWɖi5D jIgo4Glr"Au~3Z= q|\t^Z%yq7+ca0/-ȍ͌r Afo5l/ś()!"R&޷Bla>EZ;Q\6^a>.An-P n $w r+3cP$=YU3&;4Bto/ j_(q4/GS 4LlŁTH%U9h}_xrefMc!=<Etڊ܌br^Q?rBH.1q);G*ƃ:a[|*S"9o 8G{r|aGmj=M9$E8_yE&uxa8UsΜ_%;|w!58^OؼS}eyt7MOQ-m]&h籀+B7^._~Ɇ*L>VX3|itH~.L䰮!Κ`n:- Ɛ3"T>2sٺ`,H'wSC]vBl, Mv(2n^mupx @83WB;Nr[?ȉ~6Jp CR9Mnw=Hܾvg zAIX# $2P8D+Lg3^.Ej: ?2c]NSg02>ņӉl2u Pf2:]MA]9{zAAiaeV1CƋv<ARlJ|NRԟeGl:{}1΄Uh!{Շtu 4?-OGcw&.`x~`Dr0{5)H%tAz!I%|U18m?C=;z([ zC_J8H! Y&51cڽ }`"rN~ME2FENVMV]4wytoһwS:K'.Q_ JHwQI!ل%T#Q#&W{bbRUp~x҆&?dB#Q4Nzz=HFO Pk*Tqd 3*S#ɔEyD| P"jCC61Wpc ĔXa=@rj0_,N ݝDLN]FAS@L’9S? rA;1jC~sDc 0j[/`&kj\ s^]rL!GPBcg= .SԷ1`\QbdU7b6 L#L{[J!)gC&ҝ > A OVw`نSk-η=9^#eI=9lca!-. gQH0.89soE? ן&qg}+;U0b[h󞮐bjU6Eu>Ҹ)-T S q)fjx٤nt-FTv&tE&pl6N}8ӦN}1 9eY]K*uZepnntԾb+ )[2MN \!nX#vwyG}Ֆu8Uv 8NP%'e@4u=_j^c!ei5CJ}epvd 't",!񒐁WA/^_>12gH댝ǀq̬sJqli%89QQ hE iT#3}$/\T+г[u&ح”ZGEbJpxΰ +p|m*#>.)sԩ$RՀ^ ~8Ŏ2[hUhb5d)!ru|hhGX8Zy?AP$d+ڀo/"sS/6ʋY ß*Nz} *\rRt?x(u.ZH&CIs&>&Mnu0jYTGlD;IxHE7#ZGfY:#Im`3I~1tԜ4Dot_mYS E0hJME敂Uz+0Lc(A dp'7ƴSTU-}{h7ee5oM$AWafOHE k#j  %4ٽ%9~sV`rV*ʴ UES2դ%K}83=!!;vy"c8|bwi Yeύ3FEfP ͧxZ7})Brܼ>K ܖ磳4 c`,W{.Po06!@'! i==!tEۨ @n& vn![/4ɈC-B <ΫCCe /dO9mr_.ok↩cCT@걞0Q-3g Bf8Ϻ1 v?U%c.` xhlbϥrlysr(iƋ ZX]5@?0L6bh TTI׹LЪN`*m\b齅,ELpT~'(Q=$J~7gHFhIR+ lMeZ%Z`Eo1 {1Zgx;<`^^O$aA] )bh(۞NRxX۸4S2E&Áf|4)rcl|M<,(䡰)Z7CB@;ts?Y+nx"ٔq9O,tN9;E 4U''U2W4|6ы~"o 0SM&N2E|;\ÇX+Ca뼊am-[DgYZq WdبGȨ:Qm>y~%\Ļw&B{zyŕJKgyr4`kn̦^zWg},b )\{{p$T -v(? 2+M4FB ,u䳈W҇/=hP ʇb*A1\uIQd`JHp3緐.pÇO#T{?k*pHE(˓ f ?_ fqn'|02o+uRF:O~z!"8 *K%\?IyZO׸*9]bkՙCK/paɐ0.q" 2ϔK›?%Djjsj L\4Jl0J:l-٫RIe@&ɞn.Theqܵ.]_Nץl4;иEwǾ Ix׹ Z>/{o,$Hc } ?%ЬR(=@炩HZשKl.u1P5k i6pv%* PW%/X<;\'+QN&.W%gnMYYbqH%NW(_DŰkPm^ЯXrbۙҜGSځ5k&ߤ2fr/dODhg4Whegdђ-?^I$ql 0ˎ3!bH)(@6MlCT>pG6yח?<9TmZdҲ◇_1Xs+ n[l`Pfaݰ)kZ7>W4q%7#mE*3}~#HUdY'fgE$:!iJüanDm~xޞ8Ю3 \K[5_%w;3N sj[+͡lviùRy^C[M3%l.m26WRv<t Ї8UI#2GLt6&֫a,w٩&&z{ g`@$4Q_6 5r8Ӽf0?M8Y4Y1g$G JbwH*3m)[ ŋ >M,1{W#wr+u{z ; ?3KPUkO\JS׎jPnt~oljENW#v>]5RA N,nG(nP/G~>3›oQ50-bh&Bш#wӎ_,P jZgڤp.p/YQhg%LgASf,)?>3Mt;+|I9XVMW u?>II<^M[eHGKBM8~EvӠE[(vBiEjY0Po6@$sP^yHq45bH}允X^j_ZZ5)[tqf\*\~Q6*.6ˣTl 1yE}hgdniQ=\잳1pt %57m,lͣFզфEabzr! |s03P# %&3Gz!C(`)GR3].<G;UIN^h(uSҸo\xBcupo`OR*ITzbF$rCt# mpNCݞSޅ)1-}#x؄+][IJ$|fƯ#)E jO PmwPDo>7H]7;_ gk:ے6jP 4*tO@nm\CWOk6\Rq^ts@]&\KybN`"wRa@JIӊrve:+ beBLJG03Yv[UμL0j-XحE[Zp?b)lAppW%_N-9}" TptE*6C ѩpi`0w ,Y~T$ஐp OpFp ȓՀg\{\Xɩƈ6ss"c% @q_:9+XC?|prѾ"e=-pᝓ;ir@#-5Jg 1ؘ OYK;H\dۨ,OEbXsAݶC~{I)oG%iKA>Tfnt+]!Q@JPZAV ^pr7d_HiaChһ aJ&:;TП]«o|9K=b rt Tpd.v-7tB j l)Mw>jb4xzEw+G@fm*Aka%m%y{2]Y~ζzT:^LoϏ9*\9[,)2}o}?b3=r/$yt~F4m&:k݋0w KjOl%xZCa͚&yx(m9; R'ƟTm/XѠ%.FiUWOM :{]oWAs&e?WeangohKsuHB@pB6*)>ąØ;VDSɁ5*UN_ZgcDVn59cTۛ>34>dN: ;]SrI^+5XhUkE9),իT&UpHEr 㤂!_0)b+{~JWԥCuT 4;KJjVdQIuN7%cds}\T2yp4GA1*@Wz%WH6td^$fpFyؠ(>08$t>ց+̜lÄq)Aq[PZ>l"]܀wEVB͙(^4!;'8vkd-:QZR9!݊-U攱iqzc96AZШPU_ nr!$רji޹$ X. i9%̘9| D,kW8b@e+Ka@'(AS+z&1DE>r$MT =:z! 3^OLA: @aH`MKqp^Wf0 ݄AgTU99c,>Ut4d a;J^߼):`c+Lr-[C>wOcώT-EZ Wuߢ4wA \`ZA3%xBܝ$%s7!f @ oy?4R%-7D|\VQ4SOXQy)9o- )ED),>hQ K![Cw̲] MCw$-n6n0(53/h[<"(~{W&Vֺl2bՃ&/Qhq1y˨Zpz*_ع\݅ByIS.gnjHn T+ţ)b;G[Z{{Rُ7 Ĵdž7VgnYaCM!Y֦i[hKUTK]Ś&~f|I{6Qר^4&'N-㢼0 0~&нN臒MҮwl}R'Qem;'QV]lAmʿRO$7|WWYw#`4s>3/:<i VDX[KK{hK1̃_8Qd;*3e,xkl %hC`vNGRZ;vڞd߿!Uyo)Z _7dof)DXrpV#jG+_2 g&VWƳowx p U5gM@C(N4%2G!xme%LJdXjh~&͑]ٗ5\iyh1pܛCd螒DP7WVؐ)q|&=U ?4#5 . X=e΀d47ⶄ1qY6aѽOIWc:N$+LDڭ(Ƙ&OYxg]ouw<Բ;(j~}AF`B:-]$a :a~;poޅ0D@8p+ioϹYc+&.4ٵ/~ZiOkXY:|t@];0Gԃt RGP=7a$}buRS>PF$?-(Bra-J&!!ɰSdg0vH-vaւLODyɵ~S adr9ORh'?9Y\ьO6 f}c-_/: S f>쯰 [7<فd̂d=tX?,P Fɘ|F_`/*ɩ 2pfPڋ]vrv5!K. n^[ aǩV8'm8#ɪ2RjJB݃XOS\ n`\?=w,d<6-}6 5zfBx񥟂ђPSQqC\&U_b]D1Y [Q4J` ZІX>+@.X |z"iyOo0h Y3FUyVJnCq*"wxQXogZ<ߪ@ҿf֖ zk cCJ- JI6>] 7+^U c<}0 i74ۙ\,ۄtj; bfJ?/ ה?=Yx[[7r ۦ됊js"yPpyQeg [^svgڂ6j)ؘ(Y"E`W34FF6_=xf,@Er(Fwr`1wxHy 5fR^F&eQm#m*`6Tdg &^|@u s^bFư,QYЈ t0."s@}n<ș Kw*_zGO 1UxA*.M@Ӕ6Gu p-)>%becb 4]hy6v!c4(c -P6;W%K08ӠKV[' ͗g6r i5ZIIvЈjmJDP⾱G8 !1 S)_?J(aDz`y4NDgmc87K+Ұx9rT4טfVsSHKvsp ^%Bm>Ew!$TL(@ȕdiijqJ z rGmy +lV Ɣ_FO} a)(+ ݿ`躒zuw80#Ame]w`AQ᪂=Xs N T~Ūt$^( U0 Ap9)a]Q)ZW3ЋTA#}sB[$$L6L>A{iIed6c/7)؁mpOWo)gudto`p(-֍7r3]JQSū'G?'wwE߬^5`l, 4( zO^:޸3+\Bh G 孤fˊ Tr&8LQlӏnbF5@"2`=62%`yT#a*0Z. ?-fMA@H?[2j@?.ʞ̰FpN8|! h^﹫ ł19̞3jc"k&ܞ2 yLt2ؼ7Hgj=9| FœBgmE8W|iS\JyOv O^I=d)w,ݿ~"NuT(+\F-!ܲo}#;St_[4uKR#$VLݖc}K皅N*j糄$k1F2J]k;-HM1jُ]ELaOǜed%r%i y-p];01f ,x%-F0^#r}=Shͤ@mV ~W«f;IHV9iA-Iųtw[F:h7WʢLٖ%i-ij08vCYTPL#~:Zp3iSW]ŭcoH‘ ̟t{* H:x|k"REq_8u׸PMx % H!ԫ0aZKu4 /!2~]g^&6壹E:=ξ$}B sG :?xG5 yH]'V6uIt "d^H)&I;9[_g F<R 9ur;;vqA?|d 7}2{C>y-\}!ewHl:{U2̮Or$᪯FpЋJyn޴)\Gp*!]հOt2#͇@L6š4sԔYtCj4,p*9;N)2e4c28HJgK&gT*͇pt/&x҅l n U:S^s|OMk]ٷuh7?5&oޤe2;Մ<7:n?A4CvKA\]uro^T90=jy\ elOO~D#'QmP&7.ttiRzNOUsZE\:<5O ֢Ck#L{Tv5d)Yy[! ɨ>&sJhx(?Q;̀nwhA(B|2^k H jܲFn =)!K<1@0 p4hV4^NI߮X٥鎃YźO1.WN|9T|=ɣavf$RU@#nBM\Sͮ1y68Y+L.5U ?}k+CKRm4|l Wx&{Ţ\M !M0ͫZ2in3be*V{Ռy^KL;I;'lI>S- 6y_2TFDusp Ɏ|PX@\F#ziO;oWl$pm-pį71 >zSz__ Pu~mrXH*eZ{%qDQPXfNtՆeP' ?^m3YHT+4x=`OB@+=IphׄfN [ex5yq5oK IObȔ,W мP#ncLwզGbvZye0腬"DHc;z貧F$cnMjs_\(O#LdqYATFn;ÅoK~m(:.iÞ"wC@Jl tq\:AĠ_wt3o*GD_SQ,3Δ>{[|sڗ;[lFh0{˜KC*j94R{~>-) N+'TȎ 'SxE1Sz칬 (5:mn~ sÙPzIQG C6> KRc=u gpzslH^sK`G/mBkj UX=:V3QFA;~|_^T84ʭSYKkHHj hs ֚z$b@հz:j69m cXbv 4-?}2{zj]x0m1 QQ}%9JZ1՚EYE/c)@pj}_F! a<,Wg8qZЦEPoͳGFS=rr`Xw9(|PR [snB2x3a]ӽ~6M]7! :n /'Wt՗Iue/%ոz_| u,~8˵SfO\N0'@HW}턙-b3*ya/&cP^\ᮘ7JA'v-|󈉺50bA#l%olm&ÒzHR$ij58K-<W 'ba[Ɂ (q|"|3Df:*"]}xy06\sfOW&z?YC1kڌ9zP-V|)V?eYs*)u;Nȩwا,A)bɢK;  iѬ1l eمh{3R.wMP Tsa`Ά'knHQ]D촘vς8P\p${P c$PA%7_@Dyͼ{3K)p#Κ_EMwLT%}ROО6k.?6܅/ŮtqޏSppppIúb\p%,.8[KgrAepUn޳t?07W&}jgYpLWAf9% 5u׸۪(ᗛ }T%LԘP3OEZ| \.ICw1 =Qe55ʯqpا~|:F4v秜@ G޿vʂ R9g&H٠d~fR64aU ղb!'Zٍ#|I,1Q:Sž*e>O1=e7|q\`$0*=R267tfyR]3Z߂ǟ J "Kl14Ůz |'F;"4v☺I䢂ScWW$_ΣZX˫8V_&7 bz&,/];*Y9,ZyԈPlN_Ku9)*iž$Öܼ_,7a+S/3^`$,s q"YHFr-Ql{L.0}9cB6e;`8T5>G~|Gg$kQ[ W$grj;EiK4G@\2$րNJ`*25pEz/q\{AUMhu&OPl?=MXkqXO~͡"/8]K9jb{QgHyo;/WpB{%b,U oz4<$FSG('z3KQq}u:``W XYsgca1TQAD4v:1=y}oJ1ڈS%S'v"XNVqUPXodoE&CW=n2^oI/M,VFG[_^l?o3Os$i#MebG A&qQK!] p RW|hh$sWSP:#~d 0 jxyCeMfyWs Y+{j_ȥ< jiO Ͳeh|r ³Vo:3@#g/=Kn|(AE53 hv<`Cl8jE GHM_FEB/9U?W?@QdvKE|~c׷H_ d~Y$RCPK?EI >v QS$#rpv_5j8ٚ|PJ6?]JH\._Pq݁2'oŏ z lړPlD`vVT iY:#"rM a5?e'?E\$08LlEAW#y'tTYb QT1b`q7@ dY7XjnEr d&gzX5DJޕ]R{rM RT!H53ðI %='TQU'qFC;&OɸaJCD$.5p>D¶ X{doUo Ut/ٺehK06 uK;&K(oC5bK;(S"U,(Տ"E(Pn]n A™{k◳,ѕ/ŊOLR ɇVY+\VwV}۴T,eui$brSl  7Of&p*֚#D;Yq!}=1~=v>Nvwƿ2nnj=z32S_RSؽ suBG# M?_RB0Yk?6#,Mz+ujÙ%bޡ9v`tF6l6a?[ִs͊>_+F|E+O("dEU!y ?EBEպS14yݓhx;>;Wu<K_^AB3VӺaDP=9k]VΕ#r@||n+W^"՚7Hq12/UISdzo'P\䞟[@W`Jd\_UHu_еD\җZfN{g)UneSi@YS.*Hbtd7M/H êu9U3ٗBZ5^6¼2rb8m[b+nt6;+ 9F*^u ˓ `}%`YK%_@QakV (,ɾ!1pP Ք?P,.ݚFމ ٟ 滰NwJ! h`S ڌNcy{teߴ=dv-:V捬7TAL]U;~+\zK UujFg%;Q#lhrLґGVЬ2~BqH7x :{l\VT`j q jCjByc$eGk*%п~1&hʍٞ]kby)C5ZF/0Q\F<dopzgl3ATwfiNpyYjӅJ'aӋnݜvoRZ9}(،KyAMq3/p^gAY* ػJ}NY® ) |hZЂ{Ƥ"-"%gdwsok6[ؼ6LkkC#O;pKUEY=#l>5c_Ӵg/ .:li18~RL/ xtܽH\<]^4AU#w]E8nhH0'. +HX/c$V]Y-OQRшe:z::2:$LrL;_J*( =CAH/y9֩I.&kXKMH%YJ ّENYuq?N e9vKRmk2O9/*EQ" MU:}D%Roi1 e:ay!jDQ22V_SQijwoAnki}:UX0zKզIY XbgB-9lvΗv5`?a=! DM$-4 =j+J/u1T6EC@>ל)y)eӮEz.ñRM,j\$ǖ1َȑޗ 4竀$,rQdekryT*h ]LT [6Ͷr^AƧ)kI%b7K It毞1a| VcGe(Nq[_ ]ls&g.HW"ЮCJ =+7_mb=PT:N~+_$dGħ  az`%0%*պȝB)Ix/ƃH "Y(1F4_w Vzx c= CG0H>HXRl 90 /a/t|~ZjmvW\Ý^3[!#gϚ~F4Rtl-#,2_R Y$z^H}5Qh?FNrK(Eɹ#eewx|:-F d&@sBa*Qz Eo$"ˮD+;/U<6$749( O G׬^{OA"WDHxB2sɾȅ,$baH@!,0G{'ml鸕 ?.Qw!Ccdt{G[O7گȦZBU]FG1a&):j72m| D#hV j;kH#6"'JJy r M]i/z&T5Cn45TSɐcQ5hVXXU'(q-i+ kY҇+<)ua{6RAEyE?:hl(zZ1&mPOdX>~4?ws<H}R%đYTty0~HgSFWޙv &13j606i|;&d`T ,.O]L*VQZ1雇L&+7 w{' Uk<V]tU?iLg{8~l׶UFu<^j׏-fvYӐwYO!*k Q#<0(П}WBMq=bNKNs0GR +0!G⎀Q}<Ϥf!8! " tQjѺ"=aGGpmx5꺿 @ b>6Q3͕U5x5kѸwz?"2gHSŝfnIJJ Q)|k8Q7A6lDs9o-chk1<ӂRUlIS4=ȝLbۢ$s7XW}jSDl ѯxV('.(sBUmR!s燉]Ce՟*~cӢ5&9v8Ysj@Ê(=-dS@uH‘eFhClTY<9cW\};m~_&< {x۔IbPZ0 r4(1Tx@ >76r.mXM}: Bv=>(+li9r96ycYJ-.,.`p *{ɨbUqId%B|oZ..&&mueSթX!!I¯E+훌zu11Hn[dUzyaSIoCWt '\Ys40i=2}gV!gXDb4.Sw*X|ځ&)1rwZb`g^LHM_B& o.%$:=X,1Z,0>c[z%%>+I5L?F2vK Pe*PnfN}' .oPeut5S}[Q67@oR2q?8MJ]Kw_S&܄o͌ *0c,GLIXl c4d]] ϲelI/("/kΞڃz~rб'2SD%lO\ Օ%CڊClE26UJ)g&sS5෨؛K>=a޹)/Bn}hNE9ghD  \qsTt8j8nʵYdNy8)͎9$yek D(twVF;aHRK`+3cR&udžkyu7#<;9ք$qp&O]oOBI[mB><C)Xhcɫ ,r医cP}ڋ$: Ag+Dyqhy.+0\r ο"xCs ty񢗓$fb헦&FH9 VJ'&kjGrv% $Qzͦ2Rm+ 1x) @ᕊ\ ʞٛC~ѦlJ܋{{2ĭ2M_j˭CK]llOOܶNDzc&vTyV0NϾmwL|4^K;0JkDI@p(C:g:Qի #0dZr0P7!TDjW?L oҥrpG@ܑxA\]:ʹ$mÌsrDȭ}k/FŒz[jNKmOy5 TOysy*ߥAA 5gыin"5ҷ(î!y(RUJ[+X{߮bGn^Wq˨QF㠼bI3%nS[0ƹaoT^1V>%BH"&u>kvkOg{5Vݗ>2/6=-s ¬K=S.'o}[c1”m''B1g:vuF1L&C$(zncOn?>-)Lx$*Q(̰\[kyBb-/G}D'p2 Cs{ Ln~ej*2D(7cor|;a$J~~hy+q W lqv a9e"k[pjJSuUuiNt dtI;OԷ.p-Xzى SRIX8a>tk2Tu[V wiBjx騼XkMi F;1&֭y퇼Y_d1ϡļ p]i{CFG$ˇH4;&=Cve-N CĴ἟>h9XβH<5Xa92_FF_Okϩ]X1H+{XWg谱hTִ+99\q.;r~?&0 3aglօW1z̤ p/ݳl1g:*]L4H븧Or\TZU?<컯V) IEӫ|8a"_4 XNNPƋ mN-0+بcdە$P n }J\;jڡۣHu6|Av4tNhstGmnejRSܐVͣ~?1m=Q W+GʎԒ$>Ȇ(jj!R/&bZzÚХh#Uqf1eM+S}_T8z.ܻB Z& 9nR. {lϑӍƘs7ЪXl @Zr٨D6pMch^lbW.sߧCTqz~f<܋S o&5k&BF+b>5Tb!?Nv!ws4."+y[8E [ǀWLo9EO02hB12bY.1/6p 9Ї.1q#STW{X2D$GlvsW6q/@*d.4<ِYFu;!̶8 5^eʵ hXs>W&8BQM3?Y0N#V\MD.t7{ *,O5yJkMƒSSvKchY`5݆I:flcbI{eHk3eDIdC9NgmbIY_:BN!Z&T.а XGDyzۼti; Nm\{*o}xzz]7 txnyƘQXZzX0E;3d7[ RU=6P \=5S?|:;\21B/Ve/1JAOrKNq-@!hx'TtBȝlV}ͧߦ\3@ b l=`<Js긪*iNv.BAU<HSi27sԐ<[`lUGN-$i=&Uʿz:''Z呆 N_u^Mgd( ?}"#ܬ1 H 4#DQEkn`PJ&BgJ|F6#88[HۉҌ y Lk)U٠Fy 6F+'[KuWѠOPyD4TUoDo@<5Y`SN6^jQKQ *wXmJ&dR$SV떛hܨ4nnZ7{<]sbY_UePkrb03_7\MyE&7EL<2Ue9߬gV7٧VCzݑn^ϰ! ʪ-yF }@\$r_Y OS .Lt*%_%ƈq^LQ!&v4۲jD 4޹䗣Z 7>~NL!>J()gr_TndvsF.l rјf2A >WkSW tmv^"qJ6%iU+u-[A3QѺ%AR$+TK`y֬ i;AXQTy ͎vHv) ʢ^YkB^_ۓGXAZs9Q:Tir-kW0jD$Zuz5>TKK0ZXL>!d[Y(;O,~l91-M')jekxRqsRnx2$ >.Pܒzl%23Dh"`ɔ|Q@eZ,M늂; - JG%RwwOQɞt,pw@@(֞Hzs ͲZe/NW'sg ydQV5 *GwTV%_ C=($U8 a&JYATS."}4i02+>%J%0QJ/vk]H;ys$H"R&MzƉ>e;}%`=acz(y Eл}uжѼ]H>iOpRfv6+0jo뫩6֡9AxvfNƑl <RѰsřI)Biu11 0?CˡvJKW/Ȟ_w\0Ď8VPI_iX{3xmݤ~&׆}Ÿ߿ofAD`]iO7:Zl9he_Ȇ"Z cNk9+v{hH;kr-YH[Z:-l^Luݰuzٔ>yf9a'˨+ r XScbPIsj+%OSدY1k--&Xi>4o2mDwG%g*6.h8 ZӈRT4w 1ޤoH`W#ҭ3oSItXe.&CӢPӧ>px@dCfvB!{`7 x͖Gw>>E \{],[hUor-,^[X^ǶujmskJf"%@A#Cyڍ']k/,+Gr*KZN4 "* YI2knִM6anu~J8skurt]]6rꂃvC7ee]ɔ໇dg4 ⋴9 u"X41 {_EM̹ #Cre4d}[>HE#|Br6!II v{tIY RUxT@TDߴc|/#8 X4}T_ uG@9ˁwYlz d$]j$ҁk-5RSƽ$F8 떵o @ ۼO<21&|^DTYn c#}&)s`uTseJLA=5*O*= 9]R& 0/* ŨSub6=-nGc֬Yb% "5I[MR\p^^]Sg<2xض{Em5RH. wHl[#ç ܎AXv?':,} _n{}4yzo\ƍ6.)2<82X,u]-o,}D210d-DxG`5A_wJc3$O+OR/HFhK.Nv~I9X`T)Kф(8koO~Og8g<ޥhq7=Z' r# e&3s,=3Ypifͭa{:Z݉ J8H^{;-[r+OUBa< \|We WW4.UȤO5!3RX>E>|d_.`Gӯ}W~sl:IR` C0f:D%J2w4SLЉ^z|g)l"ю1@(<$k)iJD@Լ|8ӆBXMM4*xF {x{B83fZ1]QsfɪV&^ =jқh4Q>2Fn,#3‡ Mzi`8 SS49k5:A~9p&>9jkgF&R}s 3Y8xtGI'BF͌ ^B1n%R$V(Mz"c YY o_NߖPvd%Žlޑ't%dv )dXwc viej.6B]8lz0lƩO[;##- Nduqq$1.OuaP+r% ӗ^j8?tVu , DT"Nk-8bZ|FFxPWmjIq1r[~j;iB'0ҤouV z%<5ei5p&jҌCd06XI>]Yҕ=oOҢNʯc{}oާ 6{{buW^f+GAqrnNw%0Itl9$K r8](h2Nx9zdv |cV;&p۞Ea^䎢6Gɼlj#k ~e$L!ԼZ;ƕ͝`֫9%@r&.-@Rk}s>ʡ u?L,)u'6ުЖʹU7i 7CHA]~b'?^s]!`R&7c=V74f_pOɤ:h1ܓј:6MkYP.Jn|O۶ 0Ei=o/B=[HόzBx8IV` /:&{kK _H? 2;݂1֪Jy%-s{u.pu_#rgD{ueʻ CdmDc|!LumXD/4:bddɿd欻 'ֱf -wqzJ9|"w&p_r\͡dQ)C1:mZZ87o4٠Ftrz{RL*E&RM]4e+*<'K0HqSPTQ~!qܒc_7v~身^wϵ-5 š64 :m%<] ˁ=6}nS>~p%4ßf ?r'Lni(%XdAsArE#]ŁDuBN0f-+ _M~d;d Ku8M) 0|Zux^J)Rc"y=bTh.+^)~BtKps uפui}_>3џe"iEQ@Ub?sgj=6fAe@֋g8pWqq{9P%+h`>%%%|t'ξ /R ͟UU$^VM@+2zfFQ~a7!Vm¥}cFW//+ˋz6hpmF^1*}u)!lYSY0Kr#r,rsDdʰ*)m l%i &}yRT<6´zc;yR] 1@o LW`6FC߃[~Hy]v<2Nؖ~\I]'Ӄ wƏ;{'1Ya7M#TWaOʀ-OttXZ*p7!9༖& f|t$H{bߡ/߮j`0 Kvjt}U6h(i O,}+ϋED%DiVST5,e@~^QƮ?D̴1==D?$/wxB|$8u)i> hN"M%sAY80le(~KpPH42Vs|lR }v"\|O;V/Cy7?"|~%]rs qĮ .bRv⭉Іj5А`\R9ySoCP٦,P -89ͨz-VR?71OCG8́*Xof>b}!KR'RIz8V;B}eQtP2D+΂L|=SĊ Vts]Jp}^=g l=O$-I܍dg 7zGf|JanizI1Y]hx"%G zf/6~@ 5?h(/onQZqCG&Cԁ`%B5M߾wp0X3˓XxF8~ YUV?SK.k({d {L4LR~ ]O={βGVN"B{G2(/?%}K Qf) | e_\;^)`4.+:*LFUٝ;&}fA ؆|_0)H>}q-~ҫ*b0#&Yƚ,r@#NE~#:M '*Rq#6ǃgЋUWꂊOȒmeXkwINɄӗAP ?C;1pKx@ &kӧWU8Q`]uN$ hV4,CmIXĜӬB;w'=7xڅbST7Şa=?KP8[-+52Qyrsjufn<_4c@| 9=]ǢPj69/By]Xim-awM8^ir 8c~V4NIN <+zf#؟h e57A]/0.MMR(r]68 Ls@8 kq23`HH 0k"ֵ)W}0ɍ~L t"@ o- \`,eۘr#0y{F."e>s[Y׮Z JBj<\5">CdN  9ŏgbݢGfl4ytݫx}΢wJ6S ɺVR*UJ qąFdkI݃eI~erJbki5:xɱ RόY mk2CLЗn QI#,hZXiT1"&<|]; |8gOlt}L) c6\칐_ܓk'@EüWjZPmc4>X'KU)OrOM(xGʹτ bO;@)~S4y_WH %v(LMnNCgMsOKջ}5.yKҼlGY]s]kSw:ᆛ4X>D44 DWWD@OY@uQ¿~ǛB'c6CXҒ8p_,N[1MoTbӏ)^2VNlpec&Ը< KU/iJL 2ۻtJvB}ԇ*i8d :&xg߲FjZ|\ϥXa\w'"u:R1Sheqj 1ݙRJs3ZNEqÆ!дک] W}2a:s9&hm_߽sW5 kځδp^-vʇio*;*N HH!熍aeq-l,A%jXNu 3h ;EEv2B*C_0KG~{ ahɜ?dn+^>ԙHΠ`iK6JN_DȷPCY24A;3P$ >M lnLI:]^Nu L7ʽ~2{0MѾdp+ VYs_Fe?bK@sa*6dL?1H$P.(ݩ͠?=XhDcN r߅><9e0r;7To>bFTј>n 5y!HvzȀwfCl~кbG^CD=.ܻMd씒?-qOEeujoH87bop{VWDٱ4SGy~`Z;86!a)U'-Ju0&lMVY J #9"t*vCTocgNG@|!m6ju t&ݕr$:y=W+6M?8x4=O( bqT gG"%y%PYWe=RU]mkBNh*]ufT {oE{cjF[O(1l3c(S[ Uc_)wDu,m, OTD3# sҨ#ށ8q/Ίmu$*s^e1v5D(. Gq$Ƽ\fyX^|N2RSHy*Rj<WfHB,&oƝa"I4:ոl6 q>?$Vt)Gx" " 4Fb &Y,S̜*z1oֿ@K ~,֩|jkKY סS$g2)+;Y&GFrDGًhiL&;'."j[- ݁hb\m`9 ![9:<=;{K6o'TDoה䗣O3={Mob{Oq n6B/Ss*1;c]GR!hIfKTZX@ޱYK6"a85 kmJE礃+bkg_rsGrA9'سjٕWlA :Eخtll<&6zҼ ;7lx 5`:Ŀ}50!$bjjr>dz 8pv­r`c?2>QqeencPwo+r4k[$uQgnaI'L:ucP(_OYo,6]BP&GKfɾR9\+'lUhc:KN ^ENa-kL.Z`WY_EN'8J|*y!ﮂH|e?Sp QfVPg/t}g˯VOlD/%PJq-BhH֒0b>ɡCt+0N>E+C JHw:$S12>K;zpHTyh/t]R>IfyljopN+TZ2\n4VzWGyVGO=橢=vC˥ `E=]Ϋg^.[]GT\/5goÙ?r k%6IZiih^8xU_\ 6ʽ8aI:0$jO1o o=3 .YTrhDr^5L'4b}z1i}-&~ [&0uz6V:g؀ `ePڕ "(F]u⴯ (g!bCSI_P{ S/ҩB78əA>Y(\4gHl/9IUhNɢo| c5ehSi_\~$5]kzQ>_h>a}F߱ǐ#*!xIF8`\"m z3$IMGf)Q#5W &T^o h60#] )8];/_VEE5/ΡgK/!{<ƌaMyž8 L3;*(C,\=.ܭ{MGrm}SʯQVw ΰ?b]"$"ZF YpPK1F w}}/vQmYPOf:/!g5ѳxz%߷iǼY݆wt'JIUxn"|=49m븶e2cP DBv_Q||!(@E[4C]]im[?SB~$$㞮PEyinҾ ^or]hm#TP !ث<J&egӚtўax Ic[D ,K8&ܨlp "AES:|f |]>Sv8`cĉjDpIZ<f+ BoՀɫN0d7['$@s~gcS"hd?`8% ÙѡXp K`vfdc_w:ġo"4612Q$Eȗr^`(v7'LcesnK]w1'˩1𛂾 a3} U/@_fl!Lsp˘}McUZql"SixaɦPn_iVd1ߑL1Uճ>b'۫MHp/ c, %vlg+$oj]!ޢLvZtT|xW xƕ{3SG c:9UC>ȹcS-1-OMWrё"2$):Hp?3PBDhta_v̌4|QEőiAu])gyQb=Mqu?җn',ʺrz[/;ܼw wd@; JÀ{PjB*3QJ-M"nεQ^UxHۏO`٭@+^w_M5ֽX{8O0뷱 S[$*JorQ"lE odÝ%ne7 X{]˙1F" RٞhQw_[<(5,+y%{TJ p{?h9n'I5h|., ;89(}oFWKӅxmS%QSZvӶMb!RЎ"Vk,Ϸ]oTU#)B&v+붇6Blj^S;F<-|T;%Ф)$.6;yYFB+mve_r1tEo z~)!QWOZЁ:%&;FLW+Q\8p(9iۦ{Vմ+ ߉Y9#KVZqo=3(hgڀ} Q\᤼)X!Z*9|J 4Bw:>yũV8xȅ 2Dx2zD6PҘ:FmM \X -W-VJQ_OF%5=O>G,#Q6tĆ< B@xi'"+Kz+o%b;V-N1ԾoP2.Wjc}jEJB r2N)9B5%AI%_k4ѳHڦG)'=RXf2QW YLaxqkZ ;m,SB7mQ=唻[E?Y/Dm;͐?|r$`KԸJq1f%V!dnw ൐6xu +BǼDŽa;uˋ{5:GõǼUDCM{P7JjS3zq*p;1{0*Y[BR09rC"?t& `* %1L& |l˽A2w7d^C;O 1ˑ{f$h(W:q&hZzWXłH0mΦM,[f]H<@J $9XdwFIqU3g?Z k`>Ԣ )#?p)RXJ_цcVˉʎB\ƄOEIJU ;=\Q ԒFVE9js]G8H!JkdOu%hүe!Uwzb)OxBZ>CYxW v X{WϞeDi5~j0FRχrZ=+ÆSl_0k:@S&t<)i%Kp֋"@^pR}4aKk"4`~Jx8i?nb?Fv(7pfDa%h\bm8DicQDcZ2"m^.X{ 8|C(Vxb{)Ȥև:o&0|iOz q[+1_IUR3̤edip;%!BQiadMrGjUw$I>T+Ţ7.|JPׂ|op pc$Dj! ltn➮Aj{B^$<4P+Q z{V;Жe3%}YTcb 5K5wZX{ WL_М7KUUDCZLS۲/y-/_mȞKW`unر+:*FVgךVy64UBh2\B@;obf|ȜHڇ(q1} ^'590L~:?݄ҫkx$n4WuyNƣǭ[#Yg{ 1 H[3Ds.H,n[@Y@WN[˩IVj-&Hp:WpU "ScrdW}X˻GiB{' 8VxFt]x[6/#Ht{sHzHv=]/Cuxgɘ׍qu^/ shWO40yP!F{ۓsHuhp+E26ԗ൤37! _:wɾզ 8Ooagk-/gXk_ȰF@䙻D 2- 1jY;u+u]OmX]Z^å%CG&'w?O1Ü~1uI< M,2]K8 ։Kr 29;8>羿ץ~W\6I8u%ZcˤvF`MUy։W[xLJ $nJjw426"]vӌH?kZƺ|2޴CZGI?巣qkӣ^Մ3el7F8:@g ~pX] wFvp~S \6DSIi23L1P+Ɗp'` ,/tWLk~]dJǎ9^6 ;)*㴔1`$SdNڧEnj&H,=;B$18 zHEZ,? Mݜ1n?7鹥sb@hշ 6'QG/.;lE}Z%ukJ,;O]? j$縒`5'.Y?ܼsʬn#(Ў1/%MֿC~T8^Xiv4! bM'/cEI n skI⇭F:҆<7&WX NXkLXz6,>@҂94i vUSK"+9=|1ؔ"#d#o4($])69zOdvjpHFM'QDK,c $[^ E gɰ\La@ulUg:^ь1Υ%Σ92k0f6)m8Ca-UKΗj4zn]]TjNJ^=ilv'.u,&2ݏo:2ѥe}{2u-ߵ;[?2m/B]-3׎*2 2j-t#H.?>7Db!YQ)9tTyޣT n Nz'sǺst-%~1n}UOʁ x5ҁw3Rup iIޕX2'|tA@yYW*Eeʬm%(zNzOZb˼ !тҸ֌&PU{|(BKp1WB!oSCG2irodwB$Q&3ހ[ ʔK37I` TVa SiQ=D57/M,LQ6v+ETդH&xc}A?qWGGr*l t,5V'\Jz xw jBv9yM"̊XؿCIHei]X|Z^-DN&k 3is3(#e 5qbјHVjIWTDnD0׎IH ~y9:AGEEC2P+{ȻAp|4F-89vPP8RI/EaAfNU Fkb!_a-P@Jfɰhb""- <.LఴzBe|%#sXXv'O0 0F-cKZ+g yD޹  Btci)[b:FA)t Qز/&J86M/̯$N-=Y!qF dp_ Bnyg⼑4\n_;>bD/V3}Jش*^$jq$.#B۽jROOZB" Zw. ){ |掙4ĊE\ `3.y7MS۞NdM|h/5h8piS=7}eyɺNYs^Qjj1ܠ,PJ+s>̗- "J E {v0m򀳚!k+zAiQ`EC` 1YE;>6YTDs4=*$zy Hjrru3,offx2g;Vxyf4ɒVSqV+7qktpU=K In|νdt^xIWZc,4sKuTg'ܙ?SmC<+k^7{PIh81slHqTH*_'=t c0,۳v͕cΟ4m,QPT EԾСth"&(=.oed3EuWk@кL9vaVĤW3JQAĚŌMؚVߟ6,bDfgV Ku"qDŽPPjt ;w%FI1#Y0=ȒG`ijfx5(=xR⯊moƍ_[?3r SojI\^hx$q()#2:u៳MNjM"uq=Em[B![ݓ< YMd,4Ts+ y=F>ۺV^% ؕ^ !i3^b um;kي>Rylr6mTM5F @;)4'uJUM;͵eşH)O YzЊ /BѰUMDE 4pӆ- 瞣(3x?ddFaHOmz.Vޛ 9r@ #>żG V|}r+8YbNR;.TX5#ɸս5z]DFV1JAMt3=)>",P6GnQ0̓dX(f~NuM56IuVx3U6LA0R 9j|]u[v YE,.%: u4;8'T ~Zq F3!E֨ؿp M\ΞHv x ޮ%")pu08dB i`׽pu R G#zwb.td/ Um)^]%=T8ݐZr6f_#Ƹrc^\"H K'AQϔ !IL!x^ 2,/G?Cp`ܻavq7(!\a'v0+hc-haMĩM;z̻Db`U~հb"d}t78yյ0SzI'"8Urb J k:rCV`?F!˲q8"{s  A/yP҆F('vɢ 3t\d~:vJ&U5X18)mO̧wR;ph7Mc#;>Ǫk!@5}(fwգⷍ>'Qڗ!5mz9cL1̇2r[Uoj!~(˚3"x}027v-*[':-[v8 |,k{'0` D} "h\(WE[z='k Ōɜt6ufsG;V.;MqB+31:f?4C-8^i\!9(xl-bd^E'| TMD=>;wz>7Fi?XZHb<ۅ6:@j'gdG${HR)>y)f$pW"\{$t^yg_y7?Uؐ7紭~EOY=}@&]*iV0RҀ\ߧTb{+}8/YДGUv紊o=8?qP `/ 5*T4oײxa>fح!"s:>sGR`{~/=y@f8|5K,]8,'y7zX4nARtvDIf!].4ʹ8HN\ԥ~n!ɽ8(l]W[춢ZH"n.3)˧sniCRpD|>dO@yRnR[#VnEdLǴAP~'ZϗxS>\Ixq~3!M |MX*׮oZ :y  oT;V%3 xaK]VJ}g1*V|a_{hJgyɁV "CuELh93[ z=ѱHZLra)>4:X6s*:~8Gh(E#Ȅ:^7N#;nUrKgZg >c52?&}Ck'"%$42p qֈM"yCgӣ4'Ŭy'r:N-6=RO\b'2/OI+5\2 R0A䁑U)e[D66v|&>z#F(n>(x/!/f4N_o(a^A  xa{3~يPbp#cRG09oDTM [^xVh i14'p}>!뙛tkIKJB$t 6˔͕i~N)<*5Xxw^|%NruN a NqMd5/ X{ yT||H6DnJRz7 & FA ShIfWlFUg488Gb4iJ(F1=ҒB]A-z%m-uyK~ˢܑFuU+{,{[_k<DmTNqk^n׉f5UJ`bwl.`ߍ;y>$NXe} )P"QOE뵚c0M^ipנUeNaA@Ӄ~.Wuc')G%mAzC3P) (FGzѻ2Ff{AVBj.N ,g*ahT|BD7nEXt0S-0[1ĈS6SLfr,D|PZE\+<U䥍gAklm7FAU2j=빱43 IS.*o1xDM8\n.{!7.M v̅hC-YY5'ktE뛒+au9 ]6h/ld=!VqtwLG*WqR0m(RwA@QIK'J}G`/(Rag7F|O볏Q 3՘ui&&6u/st[pl‘K~8O2۳r)=yX`( #>lMB .**Vyo +MeD<^*(dԸU$.PF"0ng-%ߓSշQ\BMFu>*}j-&&I:Hv=@B.uDtWe V9gQI=mL WrsIY9`o=w։EEg0Enߎ5i:X8?~'a:5B 'I З m/z;z\`dM9igA7wy"gVZٲ~z/k{z71vlqk?e~:cx8ZW(;) fb%;p' Au.~9f7{p2p`vT-|}TzzY} F[3! wvU81P*"OJrF_̺ˤߊ]b^e(~"$Xujxӗs0K)Jܖk4kҨ*>'[K% #ot8RS^/7nx.Y0[q`T;w2"=NLv= qZ2KD=?'Pmi4 16rRC!}"0^t M 2B “%I)(Gd:yw*&Lb)pv9 ?wwOS pHү` k[T !|3:BPb)9Ig6Q?vRi !ҕN-y# U$Ka~aeQMh"r,))`=vԇ0d7Y~qO<e<ܤq6JHE~yj3 DMs/Ϋ092S- 5]LQTa6)ߘ16>=Jp ځݶ.{QF|v6#HlJx3藡֊ YAcw;!Ju챀r\ƥt J"}쑰f6Ac~kJ>E'?EiGq>x@L 湢Z=R]fU.mǷ1c͚4?jm4&r'D'`ܹNgo6;n-m6tz {%Hm?1DoWSQ>|\ `t/^86oftEnl3?έGk-:"#h1:  Wkd꾰b8ʫJph5aFޚsh@ZWMq1esP>7O ] k1ݗ7e]sJ`@(ic4 QDt!JNJR 0{TKZK?&W-_|w ޔm?O;.x~D |[eԲ!'j\|Kh|Oi Gzܯ ofu(C<1m}E &IMb+ -T^Fp9jǏ52+t 摕aH1Ə hoZ?_3 >Zƌ${w:|)k^kBna 5Icb=WHq!i1BMmq1+6Lj{f_sxZ$rvvUK4jC׵qb[ ւF5 J\ͫSOISIS^ܖjyo!kVNo8`Hɢt.R.''1K[EH=J\7'7U5R =p>O^nxur;hgPcL"xnŬ2[!z(iZu> =Seʀr-nH| e7P>K~0} ٴkq 뽅) h$-aBIh ^[ : 1|x >8 ?<6,BJ*85 0iK:M=nX R6lpV|k@QU9/x$2펍e-loIt'6798=s8*vV[pFO-ONś7TIFʘbfmO#A!泟:,:QPj8lggRw 7<D'[ 2)wR3a;sW/b ;\ꅾ!_ LjYǻW&- 6BD-릐GZabjGE)3\>n>"kv +{#躽^c"\гʔ#f 1c"_.wṕst 5}qA\P&3RXOžի(eUGV9>gjʧx5,#;4~MUd<p`^zQ;Cfؔo_O:K r=;?>{d/s\Sm*HVv?_ߠdG簭StOQ2HEk8M*å)\qG wj%7th¹26C.#Z4wmd>ebN -g><@U`KmRO05NQ>j8@|MtD^V_zR.Q-)MaFG-q,-˕ Qei }]X<\pk,#tV1%_ZD5/\%Rp ܂Hgbr;&6\ `ۅug$}UqW$:\Zߪi&RkԸShBL67A@}3FfYxج̷F@y1"qaEw# V7X&_񛵋(du^js_Co{\w(QK]+ vOLXQah5k,I}saTVHӹ20F!P)@[lOɾs-<ˁ+M;іW꫄p4nyW>y+ZVc"jn8綨W|⚷#J,t5|In4j+Vu5LĄJFN-LxTRy=Շ&T|Ziڕ734pH)zŤIu|^= jlz=U~zJ*j`A-̿[a71!_ҵNOZB[:V_dPnCDJFD-_!N=`_?]M&t{9LU UhPn#Fr&Դߴq`g3a^"o24C9vT"ZB:F* ϭY#r wؕ\2>0ƏZK^PsL=S_Ϛ'ÉCI\ўRh0I+F_ :8JV#AS];59.$ɶn*s@_socj`_őtB ߈̮ _]*?6t_p+㽕eMvg(j[p4\EouV,!Z#:]pLƒ[պtK^ w_"*TRlDMeBF1X4yF+='~zDY˙! ssQXu B5S}Lp$?˕bVvL ѮMh.*B)iYR}S=ٗ}X?$̐+!X{~%7o]ϲ9\uIY8BʡgZ 1ߖBbcE!D%,ux ߵj["ø3CH`\m.Nv\ZLVS_W;kKjT:~c@,W(m"F/N\9G o4 }8@U1ƋGL~búlkaQozB>\XpL);KNHf1K)*eŝαz($B遝rn?(EnuRY E/A{H4zW;$٭1$kR sECO\Ć1qf3 a\s/C&W+ɘQ-Baե1p G|Dǜ`kj33K C>A 2O! v:_(ՉvS^;Gm駬`Ss!pSE-z@JPM 2kN{HHv" 'jVxs JtѴxT$[j@vjuAx XU·f`GVE)|m/hysdkRs":Dy|SجS[֑W^a:>T9s3<=)kAߔ E}õ1X求/NlIIwõ hΚ6cNb߅F`Q3y?]rrngwT{?{s#s Qa zJ7{8@`8N_~TXT3l.lC&\[޻]s'e@i&Y?&RXh cEQ$I0߹t-y|_ndy 5\ZTr%;YC8}z-y׏w\,/w[Hʛ!0Cvve OOxq]|EU+ V& nI$OORC +APB*Pק鎆Ֆþri䨖>1 Q!_a=Q^/¸ hbGKC?bezf Lw<cO:rM2u-;\/) })BVNL9N3yV]'Y䱩CMF.d1Zuͽy]$ ,&#)d$  ьIJUKH|/K2j өa? ~޳TlECBXwpOMI@_C4}Quy-^' aPG0#20TOyȿߥV~%7D!48!U\l)G%vit5'BhIY#La{걘_";0xlVd{;FpƉԥ27ڝɟ~z8=B:w睋KKA1y6 f6Di ddQś@:[fz<* ޥ`3P?PL՚%-NfÃ(v2ŢH,`._EX2 6yO뒫lnedO苤Wr E}=g*؛FZfX9;jb/xWu"!5X@oŤz*]b%b{m`q@2̙QL@5 .&4 GGآ!‰4;qlB8Z7xӺ%(Ɋx<] dzm. <74^'9 O7tE@Uu"SI#~p {b@ƅSJc&o{Kkn] /EHw  E> G>3 Ʀʪ (dg|!!5Wu`7B hPoǥbBM;vUEf{u 4t OPbDZz2CP'\4T)vw;}naD/5Q^py}͘ /JƷ;o\C[ݚBʹ#g"dκ ()fA}yE}+QAt?RĦ4UYDb~>n[=N:s4_5&eApķ4b6ELijesu]IsUxe}qIp,Ep&((B jy@ pJSЬ,Aj o Jh3bSv4[qo|qZ@WTXsvDD#bX OZJ>-v Ѭ;/h˂2>"-`UXkrp1/j-K@)dB. t%ӬCmᵮo-Mf@V#&gNg1P2l<x,'`XOl*nVQkT=oN(S{$`?mήxV.>ur;m1@*S,qo=BQn \9%ÔbI$x/)&]ߧ[װU8?{3ߵuRMps KI*]%'N@Y`+"/G,hlܟ߽ 4r9WtBUblpKw4u'>&C['\[\|]EVHFeJCګɘÊC{CJçcn9'č" -'%g[9X5ER`庤tC5e^=p[ #F)y |kKX>5م.l1:=: ̫q@Ն= 狞~#((=X])af]?+x =D@Ҟ 2$x$Eutݘ#Q(d3te \@2g\ۍIKۖe ,ުX_y]6Iq`1Æ'';gW}Km:( +PȾv5.DU\PӶ';7BDt DN$fz{GoLZMu72@@I]k7ED_I@"qS&HfŐtZbMizuCIrnuWnfd,^~^  ;7)k 0oX/Uj"|UB\InVy:UcIAGX9Jv>ƨclj|۷QulX"$6 ,ܻ53Yh ۳ =5A`9_XLAÕ:. ADtM[+z{=o& Ҋ:ޕۢY]Yt+y <7ց]+vz ?p&lOtRDN~ cib0+)`Ig]H:Qd5*8O L~*`U75F$,ZDXGEeP%&w]ζ'@zdm9F aj0ȉ?LPWiY}`<-6 hn8eku# !lMǣ/zj$RM_*) NdD:Ep%$7ܲ4V{Jz׹l&ϔǺ #FsT .MD" Nkd}$9{A&h8;m,{8g#=0o; J=ۀiLXICPp5;Ðn.S]BBB0 PalʟkN[Hi(.GzϻfaWS3JoG_܍=f1,< Lے3A6SP9"NZrN PhXJKv] ේ=Gۅ"Ü Z}> 8,iKt}"(4Qoe0dC} hvQ&jSv~:eɭ ?)޹Rcٺ)>;z-'=W2>,6T5YC8*t>#";76і]]ԭ5ORlV`ߙRݞrkjp M?__iFuC,g%:st״> ˁ1y$z:-'.n1z|s=6ކ'bb<fQ{A~TܪDqKR௴0J\7?n&撧-ef֩AOo*035HX1=;BY1$ v`ze󿟐Iơ_&hoyZ8O5xR=Hd)[ޣƧu bRw9F3AjCؙG{F$*!2NF핃t,)5b]&+lJ%WVnRj L=-Wc!2ٞI)&Y^*Cvbg৔tJ|_Q~[bDn~lj `D0tbNPu֨䩪 >~a'r{ǦO~M{?dGI\ W. L˝FkC;B x=Yn~K!opOw. OدaZ4d\K' [C뾪dD|uBs)`W(_^D=y-,X, k1z)~dzG?GAk>\tV>9%@W\Rs(P\P%}n>0MNas-V-vrzNGIYX^ +}؄ EÍo ; !Lr Bhc(VH 8$=G,r$騄SGxc]`f+?e 3wr,g6#P "Cm3(<>c,wJacGB~ֶzыҩ[ ֵxKN{9݀6r ՉeU?Oщ{z%t]6ھSwԏjmšb{?>KpYLlڭٙ$Sef$./Jv=L; ((PruV cvGID%ce`VT_8uh0tR}u~Z/A8rһ/;`E<2_*; WL79LީNlB &c=OO ~j@;5W7ͱ:S罼=zOq.+Z]ݹ*a,Յr"5!YtZOVc.ZX\~N?l$Z֬Z%ج` !T[Ĭ Be*_ dU *XrG:精@@As \nss]69͎SH!so\b\fˀX((;&#׌\fe^%7Foz1>D_rJw$yM1dI ~$] OuggsNXF~A']s|rHPRfÜʞ!4hkUBSFz\x^g6c>KߤSHUxYZx6UyQ#vfV||rLmڽO룹i׊'8pi z0 ʅ2<:∜ءQW[YaG`Zd8L!AlaE[39:@K4+Oi5x7N_Wo(fK-;hQ+y\~n}NwQܡ-4Ԭ4zK/Tƽ=\S?~B2[0Aü<tYׅ^kbs>,$"ɩ$A;8 YǩLVD˿Bjk^EU/x3lz0L=\q-dib쓋s:>xAYWUYtvq|1z:e`w|dٕp[@Jgϫq W (F)"C4;ݟnT̑+pvaޕ.FeY_ HMtjM[`z@g ;՘^PN"@aP(Ni -ïdv*_`0lqSlߡRgHm)Mql!/ŦU9J0/ u#qd>#E@qE= !/9 !Ӷ95krN #JkiӾ.]#V ]Ar{@>fb2M?o'8UgKq>dW; ݓW~F;UK߼[jlrؓ!B,+(kus2Xl<$Ҋtz$9Q.2HbɎ@(C?llfR;KȓS,nm Q$I>ߩ/\ӴTSntBL&h~{ʯjmJ{#IܤϻJӨ/es9/Q8n>,"th~Z?OGDqE.n}3&pxO\7MhAQfqOl:mjΫtYU"Ԫ>wXDH<$~+/J/r:^:Mw2Y^ pE(L?@2R dJ.hrLi:*k. | %J?V66t/+ (w&Jxڊ4`Y[}tXk_AYiFN_❷QͬrƒxΧA#os̙!xY: F8٭?PbDq„ ho@qE.a#dtRʽjū)jg02]h"+}LHHNJW 2MM_Ȥ!#  o]TsiGKlUl HHO CQw } vXe\t58g|ҥxfYpL`e(y6I`)s7Q7夢g٥o H덉%/` רã6htwplݼi`ZTuhI/B0{ky=PbBbn@S.ï7Mr,>?GYIb[M-{m8en<;T9\#I㨪 E5 D^p[Hkk=k>k*޸TX!ˏ߅]9qQLa,#y>)iMWl*|>gws;o˦Eu{53QNj l=$Q-u\;yt4i| Dq}Ӊ7eg&,![d/i,hX?xHאΑC'_1;b<;Ӳ9j ζs|( V[.4LIP7J߶ 0Cݧb|Se9,sKO C00͓bC*P<&\=݀rKyC?7kuDw ޹v7#^ N}kQ&wyg`Ŵ$/͛fz 3^~*`CmDd/g*+ `WsMcG#-&&ʾ8޼\)[SSأ(7bJJ܀Ij*N:ɞ6 iDa3HSx{{oTWka]WN®$jU&kC 떤J֛HU; wV d69=Z]ayk*@2Nל y yVxj>(X#"(Gmq7렕]8;\=J)WgʩCU  egJ LF3Gy = bl[TJM4 %q1t\˫f+/Nm rVB3vmI0x~}qgpMp@k9DͿ S GNmG8 caPv/|^ԽZ*ۙ&y<<19yqg3n,^~K,|yT]OkY(s6oA3}hnHHm~{B`6'{:Lt+jF(bW"lb$W,j7QhX1fcZY^Z\(wF=Qۣ}Ժ5qxME/% gͰ*n\CK@&+b_ŕkGrá2!t&L #A;֝+fN"hu.ДOgV7uYYxERհy~oGԺ" -eI/D,~w|bpોL `:;^ŏDO+.ϬAUD <6smCOef`}J0(mvAJƪSQ2V,JRH׿oLd.¡YzިՆj*+j IutïZ쭟K|PP W8LV$&0?FԜOw*P gV\ɒNF#?3G F*0J?ܮCP1ϧk3_wg 2b?=LC3q!0PsYtJ+׎ #SW(G@=ƗzGST(Z.-$ӀbFC@:m![3|9?zcK|ݝ F\r!qRvnL TE(Ê!r플[CRX]n׶/aQ>xj6u%i䩶-nZށ 4ZHӴع$z}}7*&[TK;" R.k2aEJ X\X3SM5GRFߚM"PL" Ҽ[t[XNIvw{%K%ɮ,/xJt' {u;)8?+*"pF,wZڇ( #bk'mþ Om*,4#ix>_xT&;ȴ˙~(2MQ:\ja_`ʾ5#&tQd#KCU'XR/g/s,}X1@ ZKuOMM9;;|ȉ/ͺ;+>h]DZnғi2ƵtwB ׽FDP Cr$UI X=ZIi9N<[N"R)9~`z=#7f'7ie:+W~GDґ煻6ObZUdIVmȰrIL޷MuB>rBy`{zH%lD!''(ņPtMi'^ EUp154ϱ<ѡ.dl9A\Pa.N1Oh@72~*ܯ )8p>,j]54#~hަu-"VIGP ~{ Pl@`^6P/}cpiB}t{̓噲!iN U[& ͐jBDa&XbR6_u/yډ?B^w%V^+Ɨ:Cg- B5wnF~~0wA!L@]oX".?@{g~#uAb۠p<K&۾$XtY3gU&w5͏5'ǂ)ؓ $}ʊ%%ebZ#]m9m -St >kئI¦6񎸣3`V&$-8^biQj!gjO?/cAEYs 2b\Z#j0((zv+O%CZ➎LdqOy>f:A9Vwbq =%O=㍺8r$xe~}R52bKx7-mߵ:.wٳ@@]:wz{蜙kWB )4QirCNtZ BOa7Fw@?+"L3 gU"l@UsekrI!Iw+ .si7őspS̹$X bJME}>}黧;<p;ea=܎.Ͳg(BXkB^箲Oyv;KlfNw& C{T9lKcz;,8y$[6G ?>BL\qߜKuhB3'θI(i(C'F`NH\KƎ VTܾсqn1R,/S5 埽F5ZثXLzFZ{r#q']maijuoXCOnVi注-M?uhRMl:0P'"B g ?:f LRVDAXpNЪ4}$`!]gM#7jl@،{rFB(u' b:6|dBn/vI_s & QK5ǸVHsUM9+inPwBKwL62śo Dx-[9■~Lć>?Njh *%F>5iL̒s\AfMm8|@wzq <{9  +mس r^xIJY[#kZURSnZ< 3w.g6?!^7e/2%b Glfxch6N~COLղ6xSЂbҺw;m=_U2x/n!}ୄ^~L3T%1QgA7Cɲ/S!v{WXWeqq봲"\g\֔Xs/c&߉"}q#~-R.W!ʸ]Kx8.Z@C[1hMCWftI 4b%,dQX*sb8*;qn:Eu[M$Sxsr.PDk91,5By[`}SW&fmz] PZagW24 &\oU;=3XH",AGw(Up&Ko,tckиPkӟm& [ɦdLA):ba-JZvw`Xq<߄\"gg7ӇJ\ؾ=~b-0hV͎VeIV)Y({Yt&\9CC 4_~sX 8pE&8%X¢Kφ!AeeWkh?u-,Rxߙ3{@Oa> Κ;Nv8xY=z\ƕ4iE$!"rLΌ3d7!!Es¾8l-3&o*U(;7n; \&ITAcU:T&Ęd #w:(e$75fIfu=W^ WyQbۣs;sc*U<W 8'"__B*m 5=Uݧ}H~hADԮaڶG_1DY֝ lzyUpo"wjZ)xc½Fı!8GGL<.pdnls{9!⍸~`<}|ԈU9iF ۫aK#ÈV\!tP䥘SFd0b3T SjK*<#Ƥʪj 9bSx`˭#|Z*S,QZ SD܇ ԨlSFr{3l歘q}d 3UzvYG*u-dڔG$n̸Gg~ήE-{)%>UKŸT=LI ʕ)G@~)%/^=\=Z6+b} 5iښ@>4bڲSG+Zm=ZHZ*A#+ pbfx ݤz}K}~fҦm%*[S Q4Ϟ)x&2EƳ@AEs)37#drDt~geS jc!VQ9{+sXb8Sl 7͍*x2QΈAȹ|@oE-4Y,H{5b1 l##v8 HB++ @`Ef1c;NJDh\:kv*ThQʃqɂ;WM!~f^] yU\v;ۏ.Wh0S Rq;Y5 v|rNڸr:F.cV2o%/h|p rѰeGqՍG -|-*M 5dS#"rCsW$>p ',,!2*zٝqh y LyZ<)U;rLw")ߓm*+enNK"Zg ӮG2$rz@ 4 4|$-!F'v3}aՈCM`ٕt@(arkct!ZjtuB wLǹY+&Hq;q#WO:;L,.;fP@wI1\6[/.$gɥP^T'$xp\Jdfͧ05K "XfyLw+Ph517i(q<s0 cCtZhPvlm5H w{b)_V)sPy]wF|Dm2@O 󍁘(#^@Eڭ+oeRS͘GXS@i~wcͥ]$mJh|>_~QDI&eu?JDb R"vnwO#'4n+8 YN!9b_1B&B}[bqV-A$'NCU6h;+!hk#.9`<n}dqG 33e_gD-Ye&Xʝnޞ;\ ł@}#t_ (ɎY}-Ш/GK :Rp9)$ъAr(ug]zET+zyeK-k*xWrZвP\.P"j:a ;@0w-Ԡ/ŘA +ŶAQSI=E@zsXoΞrdzh2ʸ&/]&Rxl\/7u˼t5!BQ0L*Ł<)\/"9# zx7iBlM15#BHD/`iaUȺFلLȣRjŠopX<;2yk\7 DaɊ~̞9dʜcO(|m:uں7+} jrL$XrH>ѢfGi= }ƒR:u8B(S5?D A6ga^VΚ秲Kf.D9콺a絎@/+cP/!F}uLӴ(AQ=SOTgCX385'TmKEgjLD5>B ,LRtNX #URFFI:M7q 2߯#ݚ)i\>m"kT 3ZN𭎰G;NA@E!;y緧">) q:UHM-k$LJt܈8jBd (ҝ&nו1Z":l,%Kk1vR`ZzjG]GHW:]9GpL=?% Or' Mָt{\5CHYjԡ_m݌7貥V$+*NӮs x?S)߫,C[$_Z7W6hp5KZq_^c3,!NR7f^$36KTz8%pUBA5jxn̛S{`KCU'#@0R),ӆM7E [l%gcW2l/Y~cA=Tg/@A`Q3I1@pTqp!#N_)l; ZEgt}VKz.hVp, (k|2I@Rȉc 'V9YB>@F6փRgn-w ,dtzGM(+M5v,iJeFc"C[E_Y+b!F +ن da2KAU|(|淌Cd-#=X0E6k-wW+~?OZl3-R=7X0=K!oӒϕ <wNdY&oP/ʟF>HUMx .MO>H~I[m06)Bk,zq}U;oQtfL0;Ve׷^6r9ĥ4}$U}hڶQׅG; *Q}7 ໮x'^>+F35zAMS4n#s"HvXU\YouQU:!an) 0p+!U;a-m⸖oMa.H#4S'pX|D+2 x,6~Nb&g:OFާ,+gtئDp߆Xo\{`%>"L77wt-|sh rAKIU}!`;B.t!|V1-Gc6ft&Mvӛȝ |֑Y"lDVaGX-{+ 5:-ͭ7rBD 쇭Ó(J3졊=d%Eal4M8p{v#M!|,oo"6؞'X'oLݏ:! E(.\($5 kE+a&s$W9Q?s4kY'qu[q}cF!y+i};ǥϭQe LybPGh4wYism1ZHr@/}%Lc@#v6yt- )B mJrz5>hU/XkS-nj1 ne|mJ:=<P ġĊrzqVW&IupM,ueֱ"~KV6U.zqU)Bk8c6q{!N͡0P- 9]rǐ1:|{9.S41,4#|Xr^ zrs^LPyQSH\{@*2`vVn}eg1f%R6LX~,gWp^O>n g% Fr[?qӮ{2xqYݼ,*/5,}Vi 1&0`)Ķ8F(W;~جEgy;Χ>kc>ɓ; !nbR*8+%?gs05qz{i `SWXOjwq˛y Q_#c8,P찒g ^zTsߗ(* u<֮*::WXB!Wm0!yDUgmی\'-pđ޻7,x6 <f*Z" +?@b#_14bِũYE>Wcx|K9')x\=3SH[Z-t؜9C^ n,Hmw^ωA,\!n dI'2q'ge0Cj4&uYGMn  ]Õqkt}D<#ł0 `>Lw` }RNV硜. PM.+y9Q={!国HZ?Ѓ6Gނ-,A KcնuL~6n}i-SKκ{`Zɛ(C(1ܺ(fifO!}1}@3p=w&άWvLsW45<ɆQ >Peۀ>ahWќBA6 JS`v!0m_0Re/&&&4 s#]BGAhqx+YP P=SrSR|A8CZ:ݤ@.zAk{tY^gbIlIS {-'0(bo$VPa Iʛ] Y@S3o1d?yd"+ŏr6B`uF/5H#A%O{G31o!r%y{hQyL`AhFC{03/ZttN4#(NﱅX/1XI+(q0mx^d|kjðeD.s l>DcIm>W 38dWD9 3 2/TmYu.WuULC6~XJ5~¿ruj'+, X *|j^€A߬s7$*z2Jx%a9wZ|P1T@as51oHVU,9too%%8U1}0AM-*(KknFU ,XAP1 ۩qogM;F"t2p 4u ll. Tux%]>coZ=2W;!K.N+CqKvc~@Tl鞶1Mv ݟRI)NqS;F^mOpt'c.6^~_-"Yt$w ;ɨyOJ\ZO5SQZ9.ĝa0D7"y.~0Sr?&_/#8tLzL7b$PB{*|}0_ a}êdlXsNw[rz~.qcUlJsT1,x f:dW0B~Pq< LbYGxݙ2}e6Xڗ<<յBJǺ@Uud!}kip~6۔vGKG(I^u,9L`pQ*yŚup$T f0n%Ti׋J*3yVXgڌ+^ flUl%Kvw8)o>GG.a:g$RYr9 :$#K;9E[ou  W̄>DN[JQ) Fz"zCKQp:\LY  津ȝZPZIZY ?,9u e% 1s8 IeXHȑ/K,7bhpjL+ew\N ԓ-1|F*nxDHAo?c4&;DW)zfZz<(Rs9Ii0+pd݃hzVUZ窼3dd]P`#st2z@ӷھ[^ԧoH,R]_,jP9֋ࢋ(t @$#KP;?)Gq$ R7߁ŤZv}XW8[ۧ'vGnoͩTr# Oorih!lYhK&:Eēx"P#zOm"-Ƨ.bٚbΨ/DSM~ƅExƠ\"9MG)oO$4xHk+㇢;|i0ęC,#fRÔR8jqԕ{c(_:L4!hu m x+i~&{qۆ!ЭY/{+,}e@Hx(O=UOTH|fTBwHw6Д}aW #_3x@NQu3U2nj h*VGU\%TbIk#Bt[QCC ,x⸆-zM:ׅQҖeJ4vK7x~wjWWX~1XxhʄY(lY$5`ӏ+9rxYb)j%wgy3p2Ez3Ҋ}mSOT'pK8 ,SY竏4h> [g1%wHv=uyi|2>+W4s}|QIC2 98\ )SN3ܣBbz!qj',U\F]./d4:߂XKprZUP&Mòͷ77iL#JjIASs(^z9UUts]?yP܎IGASn\eXfn&Z&͸,ʩsSjc].صD =!aKq>2K_ ST2.xy8ŸL'6-y}1/Ymٮ}3t|zfe qO)~yT 5hM =X 0&(ΰN(i)Vy ܉@WuaHip̱ P{ 'nJTOgӲ&AH@Ҫhx@)G/V 1۩>9 Y&9IMqDITV7jC/^L:@R~>UqxcO'1TģAD0oFS'ކk҉-G ɔJ2dq.o7֘Y#(. [wIOxOi$%@8o B3a(oN k ZXbde<˝GKe 0 Y齆HB]t׎㩹Al!q{svJtb9fܥTHz^+)/)<'AS}U`v!$?#?ΎtUb~M8.)zExz`TD LGd\=~8㴰CՃMvت5WǫV$?ݤzm:.(~Clυ8zv"9ڋ\"s&Z0b4n:[D/:ooviyd:-,Ғ.n {U}ݲ kq`m!]۝LK[E2ʳt$YЖ߬3aB\(Z7V9.I;hbM6Պ0YJ`MvK;550M4s$ }߈)o4haa{WHGb>nPLq$UW̩Vu3ڝ}9}-G(|k/Kg3/y"ygj {x|xngDcr;RU΅Bz0j56xɳhBZ,!_v'8lXL*2c>~<8ApA8Ui8ҟ5c)й2a]C28-N ^*(rzᚪc3:0ڿmLP Jp(|,n+c҅Nv|'~})Ѽ>7"(#iFzzhF۷oܲcSX&rM!gߤU%tsхqOgP6D@g2'n,ܘiRt:eRғ/,CtfbFɲֹ(9#¿$4ENX驙6%tdfɚCJJn:ƎȚ ERAP9JJ1P|/Dt1wql&sS59j Wv aX\HSe4Jo0>w5*ɀ,p͆#?i՜o]gekmřYStmG?X)]*?"qA^V* %.M%dь$<>*ݔyԖf3 :ɆxW|ĢD_8%rPY/xr%\'w@`)(Pᴤx-&!dTCkj6Uu\Lc;..4&2+0B*k5dbx1*ٜ3TӄCt7UF Zw1A! ?F)vk*^qZ#i)|14I-<x|/9;+MnEA܅7$Mm]2""\ۺ*j^nؐ1\f%Bt:DkUK%78љ)cƍ1 i2Sw |XS_pfX c0FЁ%8u>7wS0G-@!"S~M_O6yᳰUN%x_ōcJc.VKzb=^:GJ~f9 )0Vhj ;K~ L"IհHGy6(Uc@ ,fLєl,-n)zþ('4N67G׺;Sj $z0př1Ejjn[˟_vo^L#ԁš v/t!NJXE0 Z;hfHj;4(%yahTP֓@Cq<,ss?B0 tjj>6V^Zp1D!Ym3 Mb-{9\6tgѭдt4 7mR'TNI!!y`@ Nސ)Z{lJΫ(95D?lØFu?@ "l4|I8}#|&4Η يңk1bˣ%T-3fS۝LI+J>NƩÙ5|c 5~#ԖcFz"^x"ZͮGncHgF06< Qt#E N2G;C:x`FE#?%#f.xz%UUMMV_;Ffg x <+z=+L C&&) Sc*Ҟ{V+hb&,*C P^^Tn:eI]Eq|$/z=0zaF(_[I.ZG9 ۿ^'>jܽGP̝"MpȂk.ޓP%WXgMA%"xEz_0: \pD K!d>ccB\Mq҄hm\EmB Ǜe1gvc=aD"2~v txM|WUӋhxBxe(kBS+Oʐa< x+4ȝqHyrcssSD \rjzvټDX<#((Qji$/ .Fz%`'ᑞڷAjn-x‚4HfW~J`@`E*w{յꌷ Mދ8:Ux;ɪcxe4Lg;)שKݮnUd غ)ϋ'_F8^9=u19ڼ'ibCoEo5Ou1V9Bp>qG6Y?mõXK9M3{@UX ( , =%09y&e'ω|Wv0`5tWN$?]0c<֫L-_b `h^W]гFd~Tf 5^4=֣u=_vs_i3j챓])ܺKMaI0rl$<\FFχ1C经~PV}$*߰ 0dMV޷SModRk:UkC7Bs Ἰ M0K _e#(iZQ( ˀHVVIV!@ږ :8#s.&k"bn="\_Q9)Tt_W(a:g*"VyMf8A)yػ5K`w,33A.Bh{8A"Ö'hg됙s]4EFU!3)6\YdKR@vAd8Oom:Sʠ"qX QXFH͑gZDHi:=9䥼cab cNv9NW"A/WUh=c`nbSanw]Tߚ`"xs&?GfaViq\@oT'sv;YV_p@ƿ]&mdY̵ټ) vI<)N~׷vi`p^]ly{5bӲ޼=s OksTYRU7$lL.tQ~.}Muy8bmwM~#Ro[u nMC& saoٜ8IPy?q|1󝁕GYsL Tf)j,ADߺ㣨zxl֣]Χ6a4"VR oc5Mmn!}37K0@1M?}L}x+\ H#x qy{1Wcܞ gb*WK_f"h!hge-G'NhX$[,}J"Edcq^ԉRa7Mz_ydiy#IAܝ_ bx/FpkG;UUDYcHTY"#%:\|BQ¡m\9}]C3 0y-@)*B M*"]۸3.˾SH[~nphLSyۑ[_6"u,eĺiR?BfztChųe0]-%R4.o]8avk+#X$HI;KWǁb>! = @ |B)FCy;; lIAx2~j;j$D5ƴ2&02cP7lv}ɴo۵cgÆ0"b\eD΅Ջod69,&~a(=H6p^B6(9? `l kyҲ!t1nOdp[8xXb*iGf3{ Fwesa[0KʼFDB˙~1 Dh2FgꔳsŽ)d0m;.*zu lmr*XehV'0rr{TJ/<LaTƒ|c.yrܯ v1GHO  ~'Ou+>s͉ g/lkt9i ׏WXǶrC%N/^6 +R~Ë`f7H},LҐ &4X9Ҿb\eAY|ٜayj%>{w+&=heX4`;ƍGB VUjt>DK2${UfE*k&Xm 9D:LW s R%3dmW}&0&DnaƎ-r).^FN/FÚf[#뉌e܄$֢RY , pE_rl˞a_i gu9E2Y"uS|O8@2h!QRd_q;jhH%[`#;DF!srw05,_ 51*ۚtBg"P~|&1`AIu9oW@yJS7˄Y]Π'm 9A;4bOJ^eFtb@4[0ד7 m{C 5_Mersͼ_E׀|69xDbCC%2)Uw ӱn]$^ f@ۡ74j϶'R ]V*o=sMlCLa"ī. |Ǜ".*zY%wg8$'E1)Q+!N~kZgiӶ`42~~RtWrҖO1 piŤIRJќ:|.j8'}U-zJEKnD)GEدտzu9=قEєfh>ϬVts%^\sɽ^[խ{*+K9G͗l!gQ+5:P[@Yyi6w"Figy0EmGv%cUd̓~r>dn93UT,{@f+7(\7oJؠ ב(j76be*9xcH'k+v.=&|k?`BQ!,#Z9:v߽L`b0憖ޢ(KǤZ`p@"~Du`mKyE@r(zeJCx' Y-xoe}c:?8{MP=WIcgaz5!*n`id~Y15Qyؐ7A. ^x%N Ga|m+9ix,8PR犜ac5AN#/|;r i"#zQSWdg&ho {k`AU'kg.Ō҅]ɇu|hdf]9[^ƟѶK6Rn/Nf=s8'\$Yd6.\͝zh\Hy<r2J? }m0 b,l=86"Y%onYfAi ^U>>Bƀwûyf?d:-ZHoMo7H:>9xt ;(pb#, #aCl7r|?hI[A݄ԪCLgo Vy)+@ނNQkB,+rd+ǽ,˹MZ CT#,uhڌltsj`O~O˰Y|@JExc d$,~>j)?C_͊e?"bS Yɰ`[,|0xvjP옛3t!8!fJJs\(%/`Ĥ?EA/ .v`eӿE=HTl%6G\0+?' u\DQ}jolT`!Qшcy'HZӃD J긹q=crcŞ.S Qv2:[Qs;6YqeY #+]9a/{0|>F37UON_ hn7&0w&12_3߸/!D2Xr(Ѹ9O$ )Ӄ!*ȿ)TH&$Dif0f]I1iP|@?P 6čC?EZf٥NhE9}V[7,}p Y싲Ƽ {|SU5`?ozzx W;gTQYR5uH ܞ&{=O^s"gၑ~ d=ӛS $(eddxz]/Q[W¡?l˸H9.!IiM@ Y7j7pV4l6W<'6 x_^I>( ZM{]+iܢ5z1NjYn*n8.L%k$@պmu5 ˑ~oq\)&I%[!rUx^`=س`?KyBd],Թ,ݜ@ɲTUdGL2&<;8BӇ'y: Qh)b3_AwbD=.[,+YD lI;4k]ʊS9Y5}g잜oYU NNT,XUiFlBF9K d3%!ZiSs')I_=B ZX1-62r5'6t_g ѽ*r4> ]L)trƨLOܘ)Jz|4S" Β5e"F*ax03R>SfGCDtT}yM>׸S{̭\3xG4SL)CczMMڹ KЌV%md WsiL^<J3gCf>(R_KOR:ئ XmYw8%Sh-08[i6Z_X}wF`vky0Q{92jR*'wM[ЖaXvY,;H ⌏^?ؐl*WdjȓR\,2L^!YQS3vc1GaM1% EgϥXn%7S ƀGCXc]j`xHdO%Z  &_+IS12鉄U +*F`U93DI`)&6V歩Rjr%p[!γ| S5 Շd'kNoLF:EMOσDVY 3*&9w𨹎҂gp0Pm?\,r[^"wAB= rJ^ruxxT7"Wp06[sp}"puFdؿR$@߆}| )MM<}{:kj#BƉ?Aȩ8j6p1ow.uZG,`RĬA.rO8)r֤m LAyZno#FR%nYޞ }\cADRE`PKbnU6XFg /+ߕiBpQj9 7naB&74!WKEWG+|U),gcIC^ ٞW===y]߹X'A64|,#:ǫ[cOSJ=*A=~O+z.A; jrP(+YƏ5bpY_Ҽ’< ^ue2'T+ u}_F1n8P 27haKǮrȎ+` *Ս<Pj-OI fusw8 z}ndRzS{w6Ejڒ9m^C( 6$_Sf*)a4,A-Ek՝70 :3۲)jlj%٦B]W:V׋A-S$ж`+$,{IcYhK3b9~($NTc8P)P #h.`G8Q"2 𞽨4z_r$ 1Au::#{wLY&0GQVwֻ=|!4U˻dxk+OoN8^{8C![L(ѹD;3OȭWg7>yvf?:M3yܪ@h8N/FP rΆoMW!&n5ܷ$t! I3Z!7J2rUC2b6h-8sƽ'6syƵ"  c&kQBblazq- u+D.(%[*沭gk4s֫\Qh|:eFk8Ą)ȵbsQ&F1O݁~4fGeqQiy) I^:UD =qȋH@5C nzxRUyͲt՛aɂ䵩Ҧs|nvI eZ@']i^zţHyPCpo}91Gv{<Vq?a 1˛ B=9YNkmnDRS!HEwԘQ LA, \%1R|^#~@^]ˤn_G֫hђ<;nڢg>(%ID\z4*VBƺ c;r Eonqn0 `&IOo>~5o8MPs=FAFW]@X8iU]3z-Bv '/(K5N>MG%a\!8h:@hbq%yXRh.IR#K𠒤{gS$ 18yQ8k8(R0PBQko@sůHݍ}P5$b vU~&nPT4>|$PmeOZ)- fdh[bk\w6IR. i4tzAYq!P|=<'uFή9KK.*}Ch-s@/9b }muqx2|Ih7<[y7 Lx"GYdjGư;i*/Q|LS!xZ-!S1{SHO.d~濶 t<;' /$y(e" hᅪ`.Ws)Nyˢ!E~lqZx3^-k,LCd*9SS!HarKNDcӷa\Ԑ7 w20XobN:avW&M d鈏_yI';:Zp|MdR}[AY|}ak@CB=vo +l} zI*U rrREyۊp@+fgn :[H\g\"~:UWOetU y!FC߳a;i޶ gͿ֜܉G_7@Kc E6vk~dP}59neo0S> aiZߺ!H2ƎX5Bė3#q?n"#cڏH_)Z\9 dƞwq͹u0̔c]Ieea)&8o~b sr.=k^W5ZD}.}ԺαKsgѰuCvK]LoVV&a֡W-~6of?1oϸ{ʍ™>-Pr^<K]mSX_bl,Y) nTnSvYYX m\PE"dɘhbd=`$23ֽHm̛lƹ4~f Zb҅{:?-zCH6 5Й5_ 8;w<^RDDt51BAF-z 17,/:vOb6/KW BlnVfiU)Ia؞1m6ux୛ikeA"Az;CP{!cE2$!s)!}/>o S#RΎR;U ;òV4U=N>M)}}7lHa`1GDoM%JXt|l`JXXhr5՝9l'웑{EZ%sE0W ۼg>+g r18S&[lUh[L=nOk?LH h :@.i dRjs_+DȧTGD$$ _|B*wU 8Wb;i ʖ2*UhWp<%A*3 8hrQ?)PFZD]jVV+뺥;ʊ6 ! _'# _ z~eF~{*, nzj g;su&a^,(ml61@ۀxZָ` {}F+."1$ī@pD \kKjݹs "3b%F9ӰsDPl͸ڞ^,V5gޒu$!>tLm#&=ѧHBBφ(PϕMb{ t(jԵ)å,-u~2w>, zJPqou/q޺4NzUD~y ,:RoxY+:%-TZ5?6x~6T2~`*h>\48F,$j*>#)4N=3㢶K d?VBBk[ X,WSmO3dBH8reaEcqL+CN.|.0 #ŜrʮOP2WHVpJ-S nb Kx0(L1roćErV A&@ FaPIO ߎr| fx0ԩh;B7l0CGIAe/Z@2שI 4K1c8v7TXDY5W)%O9Tָ ; g1sPHiŽ-}"c|W 9R8 x^Epw!'gB}B ";.nT/ǖ;D4!b2hK5 P7y{r[m}"FQpztݥmV)A~+giD$^w5Xu#s/ \qi ¤hoW{!7h]O2s4\ }K^p(]3yPo1{)ޣorݕL[?Zp>u@qjUT˵H]9D"F1䩛\w0Ty+,˿J.Zdx"l'eB-v XFs8}6 $d0s%Ir 'EE'1擢Ʀa{/ȟlOM|zxs"q_ =7%0% !c n?=2 &! L[_]JDCW+R^(|gDU/;I5d´<ɻoT>7/u_I[4 PVKb0CJ'Fb~ܯ0jJ[㹛"6Vv!)"md\_!$b͗Ttx'v+/]jʕ W<^ϊm 8쨫t J3q3il~5pzTKsTcգ >;jxBT~z#;7LmSs(B?,k09 gJxrDΡDgQ1fޤ (EJ,kYg1[UDl>nXLg@PbҿM_=Ą=uEx\&4a0'hVk:VԱ>&~lesS ro 2T eNOڑ0e뺤N.ֵWVCKODhho'E+n+p" d2..duI pÓQqn3[H=;f{Ѫؼ\Y ''a;|l};oSPf(>3ݫD(wN=*2ʻi&E7 ᳼4wMc.&Ƽ6^492'3P;9[^Ke|_N8_-UFle$ ~mXUțܣN]b6@VWw㰔AtRE'Qz8졉00,8]ZiSTvS /Ttb_DT^H rn{hD/:KDc^ҵxp J`yؽ^6y/C# p-䤯D\@w\NUݣUp#,åܺaPf,Xd Yo> ؠ8`_ /5Gev"k4jAS&y{SbCFAHSݾKwI38AZC $UkwXpw[U YȒK'& ׌0;>XO#Z|~{ _E^cV%,4(f?'OIN,X*wMцEtf uX@Fxӆ_'ͰO%i3 -¦BLH'L妄t%3Ueqj56qGpU14pp໚&$Dctl͵wSpuo*T[C5SlB"Xp~#.%GAVqq(B'ti`.β O4j'}zQ'ގP>Zh`ɩ&f@gwF|̀OA=OGoL- 8⊏`nXE\"V:hP zNHX%.{|j.]L _,|:i-|&۫Y<;v+yD颮hw~$PNCl%W'8vXX,=i%oDZL.r63j D09 WDZch*UeZ78 mW ԴF: X3zzqJZ?d,Rfx}W3rc{V4,>)SqYNfW {cQO |pyD @5z/>~E'ҁOYj`5rpH35 fM*i=:":ٵ?ex!3qrٞ#}?$ I"ËJW*6` n'xI̚bXhLXZWXnSE(FC\ױhm"]Qfe^}鶀4q(#7Q̘0w).Sy?)Ґ! |o7Sqe5^&0gzu<ˇW еl`p߉waԈ` Xgy"1sJꪚ]U Q]e|iL%>l u\nEYCƔ+t$LЦ/fI 7ߩ sp~;^% 1ky#m;M͎;.W$q׺mL~̻staN_<1љIbjTy5ȅ}̉lCgs{~ka_}? (Lԁ%38m9'm=XeF:7HR; 5EUsaXT9ˇ+ǯ[IG+"Uoz[T65X=ot[zp}}lTr}ABî*6֦_0gFo*@M8t48]s?t +=%1ާqms71r1iuۭ0MY4R"a7* n״P9ݧy浰RG$swv@\"B4[1Y˺tN]G >r{sQKX\(rB"Ӿ .01%$;'3I<84U"KJ]U습c ¬Y`1^h'ŸרŊ67f"%sND+!~e)k9qD.Q.yN4 cֈ|2&~oa>;E:_~ATa䙻9kBҴ6Z,sE# 6yIs.,T0 -8 KlW>5_W=ycNGa ,v LLMCZ66X8R8m6PS0H f%~I.=n|@t'>mydwq3Ϻ?ȏ 2 ,fUuR(esB}kBzfO9aQIɦ(hߌI9.3),M\\ǃOx%k͂#kf* ưSob*aEbTbkZWK X߃fm.d[JHxpeDV~ Om-߇tu0ݸjfj_1PBa-\nu!6|E9˳хAI !V^5 Q☒}quѲv"\ӆ\$ly09)`CC4JZ(>ݐBM-zG7*$ڳwnԉP g !$x@vJG5>1W@P!ԋTOOpCE$$9iLmzXZ h^b }qHE` m٣%ۻ+kYS37DZN*c,-M8bLU9`ޅo3sv {hۡ1w#j*1irs&Xל-'k\fd<CxE]=[P'J3H^N*iƏv/Tql/n. |N"z%bk#] D4czSR1'DžRIMѯA%|1:<וɬ|T&!|~"eM`ސ}tJ?djqQ>_6ib4cՄ_a;$ESJX gd^IHU߷`.85W"= O0f 5͋#b_F-A&-5q.A=bw ƿ\F%F:Cx=C.CVPcJd<&/Wuwg\{(AB[BLZ|)KLc+ɶq w\ [-0pg IW2w q=2v*COFkOBp[?l˳ [l-o$IѾE&I0FY[%¢U'LΉ̢G'U|Lm@5$|[f5Br>G֧3kvPzV'`@l] ~qnĒ-B?Im' Xs]ac]mCLB1:c-Nxď?kDEgQuXp$;%A3Ҧ@Y^tr4]( Lg~Zhpy(01pr94n}K,:eq`fDs|8zVl綐:0;'jg|5Imr<(?pQ>5gqϟrPI8'MxA|( ZX,ALZ&OC=9g/ֈ4T%e%4]]QC8+iJF\57Pz3z #cJo5cFڟ MN^yrs$ NQ#_<~:1 A` ?.fH_U.uWcOҵOJ|D8ja>1@Z̊UCsҨhQꭕ8cNq@P@`cjbq PY _#fN[ϳg[{h]HDFRR&` lGRߏ%DF(Hu@sm.q)* 4Ak0]2X@|+D8s!,OQ%[OڽuYͩW!?3o Y*6zov.[~q@*gyO 9`3خlBr$RSX9y:|Eә<y~]1 lnR ~R*L=|шo 9dbfۡ0\1<ؿНU2ə.H?jRn->oR&bQYwԬf }n8FN .S!{|/$RekOQiG7&i_7zwnmD^ tGѺP-Ό)]fZ!!9& N:j^T4_Φot! U%INh7tL5#=-81Zow }s /Zz1į}1HL (r b!aYTj)èީ:iX dv҉1 3p_vQ!88BӤ3鰨-4oTER|ogyѽWXn͡,c?b^v˟?(X %' nyF =5KSJZjGb*wB0n|fvCd{j%kے:}mlQ~5 -GPZ~"1K]aP `a5DIߣI EE""U3~r,/ @/08cea_3vc{=wS24ܬElӃ/i3㎮@Χ=2tqaR׵ = 48h3=i\d bW+0`hHmZcDO|;p?W5IrC7un@ы]Q&Rؙ UMx@ ݌g [O"l/"NH,,+Xd:f%9!3Q? ^xe\d`V yDFc*&c|󝏋 RRUBǦàa$glY>[ tjNAgBQ4zpVQD(TJ?`ϻӐciOw P"l}0kݤDZ}x,C(yc"ވgO[ۓs.Wׁ1bv#Q$%V=hpܒ~ <0k^{ԜةtLyV-랛\q-QZOw9_ B~%0#@I6IX Jv`ܒm6wۻ&>/v\fw=#T.P"PP7l_p{Iūbo Em#܏{ 1K-AR$$Cs]lmSSJ8ZB[Y`B9sOͣLfk9dQƅP =Jꏤn`)PxGC7<}]ns'яz19wJ#}3mXKC O͖h(}߹ ec")DBZ#hQ 6A|5=6Јϯշ5B.H*^g^ZʲIw;QZ طËQrq{m ,&9~TIZb5}ʊvkH\B *o9;A$Êp9ބ+ȋ2 Zm?NM 'C*Z&V8uk֍Mu :/ԇ;ْ E2˟`H9m Wn ASwvtyIȋ!RBN{f  NW偳W*V!A@iC> d86Ugɚ*45Ec!XMO \ѹ0~v᎜ 3@$"\#-KB;էN [m^֔{ЕC^TEI| |'?27%~EQ@K/FEkBރE7FÃ.Ţz#SNGjlMK/H!{D2C&VL>v-e_5ȄvvsKU>n9Ex8S #L$҄|ɕ|o&N¬:upׯS6ڇ(w|"q?j,($?1y^ACZVh񤠊ahVHVi,ږ7sD4W6^8M<CUj< ˰"ߡ+b!ͮ]"Vヰ/ `P[Kt2}Ie(I$Qf煕y8kz hWlӛWJ6T3ܷ[!tΉ^cM:+|齾 b,r1(E86aT% K{R8eh~υy LJb~(Iе9xoup_P}WHdqwn{oE,b^IY4B.( 5/*c!([aU;^CjU..Z(+/MX^'ͪHf0-P T0Fw'tbCR1؃`YO-Qo`Da&Tؾ* 6nȎcr[몰t!SADc0$SG成8 U8v%+<̷xɷšx!>n^m.#t"a\Ox/>P\6~Q'53˶b2Ŋ酂#ߜ7tNˈ@k8wˆ5VNO9497M篛vɝ^ʪt-U AxD<8/71-@\%ZBrF}ƨs{PQ*gvPo^$2^}VUq!tՀ!=:OyeM%Gkk!kgmҴ9'ݪ ѣq7 нF}Ȗw[di90}90Z9$?DL9KSBut"V߀_bmTt*^2E14R0sDlN*$$>Su+FԼZ^c12D1؍ϛ#]B${A 5VVs 9nnJX,8ƞux1X{GBp)o /@`d䫠/OHdc%"S=Gδtn(ZU!k-zϨ$b=*21Zq7_ YYBY)x6P ZmΖBnM h*ٺ'6N━ŔbwBX+h E5*? S a2(0qȫ̃ԾU;XI`]6U㩎}BĥK];ݷ(H߰IU eO)6\X"gxV2~ Aq^Rc0_{z,m3B92c6dmr>g81Ln wt ' Wx qN07  myfð6upBWλ0LXهQ?ãƟD[9۝4 ѪUމz?՚7u=t. [}7<7EZ`G-~X3ĬlyW= j1YLך6ϪjSqdbr;!H|ddM!aehiR&jn#)2ZL%~V5@+qv Aدz'1l%}}K{[qA"[Țyue[vP2,yl>~KN:3"YH[.^Gg w}uJ̌g_eAE7[ɹmРY>pT0Sn3 Vu=pC3c@KKv(!G=q=oL)1ē.jw=t,+, }+$hu".1Kyj0U0Ti[ް:oaukZ ?\P|CkRAPswa7M0`ZG$*(|nw8<= ¥85 4<(>].hz/TX9D~/5ۻUE75B-4PL߀ʀ|I^8 #?XҜ)ͩSml%< >F)ݝ|`y}cfZ&K,o^ ; >:8٧ц}rGu j;*rIT󌢦I*y}㖿ز4a5R,}Cfltlhv!QWW  E42$#Ճ?3 &P*ᤕ d{֒ekg*ϥ: N.SY+ڼ/a'2g+}3Jr; =fy!;P.U+{zY)\j>^} PkSSȦJS膆lTN6۪VT(J8u#u0&Q7 Dj: ?M(R'ףs E$z75iPH:^pUel9MtHfDY~]71}pWށ_Y߮HLY?3ivq+hLdUh`TQf zoS5 mf1 l0 u RNϑg/efRTabZeGgQ}l5 XqƘV eլ{tIW1$682LtֆYoGzrX8nF%0wYtxAM]ϳ >t<&a|+#Pr+=Μvؕ)e~n!\{UsO}N~yda{G lj9Q%%f4XwlRNGݕV0.u>qwu?N3 P/]h UoR4I&J 5ۙW lG'>8<[ƢқѤ^v77ـbtNYt&ГǕuC'5Kw4~j_Wm%EYE^xh4RaNyLY"sXtE.Bnei [L>ew<Uba) -ŀ:!g`H+k~ۃ ٿǶn)Dv8 BTej?X_-^V+-9/B;\bmsfeS2|@yL~Th?P;dQk/]^#W, pZ8.P^I Kk],Y04GqeJUYh=kQ_/ te0o}Y@Z'NYVEDSxVI)sMJ l"xK.Fa#-]DO4^1=)MWIPk@Kgx"yk탼Թ.G|EWFTM &S<*3(%OM BxQɔZŰtӲ:K5(a>!/@aԌS3 0*wu]c3wH< v؛E`;#Dƕ H _^ ]$A J4Ew,@SRa^@nTJw ~@τqX_ tj!`@$j"pEWOI{ybxX<>"N?'f%ovxEWNti%Vje"*Tw(|oGpYQAzd;;Hߜ$xז ؃rJTO%G_IW{X:+g{$U +ō (f0`U9MJ EeCD^V1-A2422̾g̛,yh7rJHR^!$R}W( sFsFC>\jm'hD6 ӆ7O7NJӜK4-cTjM M~Nm!9I_ʸO_ ~1&*l-Н$=Y kb"Fxv #sK03"[k`djZ Cc;vDli;"k!H ngi9|Hw#>-|Y""8c]DJc0˛*&ݹ]n+'=SX/4134Kzq5 cD |t;h*ڀw)"-bT91b,:+TOR!>Aa,ɄY!AŻP+Ԡ 3_2Բl`6yN} =zWri!&Uv@dҵP'e0)ɷ{x-(7qc7(@MF%! W/C0.ngҡ#[` ݀i4- tTbRXAKY]WK.fSOu.5umc8V T=lT eRC)t1LУXU#4Th `'۔A|3ɝ<SAXѻ5Rtx- ;5 n~R$*BfHX\5Dq72iJ^h:fc6o&i&tZd55.,qY{{}9+p)U;y|OӅY7#^ ԋSL:atG͐ H1S|%~BΣ"yqH9^Q&KnLf/a#P z4e!JC{}T31"oL'ɝORlP $.ְۏ`9SZjQ6YSI*:!r?3m*TF;+ rx\tR 0JYb!YsMeJ\.iev/7`Δbӯ}?;bSM+1d&цյJ4QȊ 7=Ap.͞Vfdmp5Ƕn[fwyD`)7cRK~;f_i N+b4ȋ5)0n{a$ `,Ӎt)v++c#NS:`ZT j$D<#X" ˥!<0a+7pn( J6׈USl0!իk/{9 do>zoWVlK.Nv{fgQD~V:pLRAHAmÿuT;wVVr&iAqC&MTp$ Ba,lE=J4M=Ԍ4GZhe\qs_wQ4YAת]|GȌ_u- |oT(l1k1pf`)]n]\_#r9^y!ucX1QIY~^'ף^AifLWj/[i v /wbN`Cn?P5!PN~.nAjIv[46`D@-Y`$}(9>֑p78V]A|q& 0ۥzhy)ICMjEJJ'v9Tݽ 8:2&|O uP1`Dls@O#Hh9V@r[{c*yqeM@c=zک{b~&:' g߫5_3#B+AZ38\v6Ý ,RI0rw.SS$Fb@TEe֗ ICh%\=WTM4Rϭ)l7t;aٰ"#g-uľA3A$?xs/ݖ\{߾Ύ@\g@ DH:`T|D|^!1+kNIc6|W!;+u_g2PC=3@|aV)lάsa~ v|9ạOR PByޙT}N¸g1aa-+NK rty kjߕx>^$Mp:p;1Uu[dƫFZ)iby^o뵤+)<#ܽ #F`xqi L2E-JT /YE".K(EJgbVfrJF|8y!#Z `lܚBQktGcވD3ݢL@e8WI$dЙ`_%8ପ~sge3@w!jH,ޓ9Q8SJ^ wADdl.%.EGykL6B4¯8a\陔ғ_8`hPD8-4\=:$*fB 0lD۞eong+EzHI   ;3˖%pM]m۬TC쎂,-uʿTα}pR<*Pig'oض W6 [sŜ25Мq$ ln{wL-t;犁q$wVV {ˉ㰅xᰩ72B5StpS1}򘡁^&A4g#.T*n7KT>+kG}A'BTvE/~yxm9\[;Y|̆ϭjjgKlj7ff.v仿qBu>o"퓒>_| wQAAy}ΏN_pz/1ƾmҪ\ :m/'X\:N2sVĩ:oqspcGDt۾L&+i'0UP6ĉߗl,wڳ)a3x|~ 2A>;NBU^CbF./A0kv,+"K,Dr/FN;0VWS#ИD o=5Bqn؀Ѯx]q|ƑM?i` TqwAm,jv egJBUPK ;Q> TsH)os$& ;'PY[*ff߆ 1r;7j18n$ug#ni%0C+hᯃiK ـ 4j$ vSImYtC7.lȴ&Yox=GAPhtj:6d1o*WnlVyxH-}RkoWS/6cecR-5lAY(GpCBd$9y?hNpյ*O zÂ$6S4?rQx1Y$|t @H!uT\mt ZNee>%1%ubX/k* Tuo3L:wDbɇ.9;tfKv sJ(8ȳwzvan.J"Z@x@¬!L0E6K,ޏ]xؿdLl`#7=\ls}v ӛTJ@1n\l|& {Bؖxj҅Б.I] i/ b:q-AFxLd@8.u6$gC&u';5y?E̬].!.|^`(.WbTS$ 3*ӂ,Qd+ Moj:ɵJ"&sq}wHiY4vlx\a[]l&$1)>_`-AR'WQymU(B{b>~b/1}OMEié*,bO`([5j|ESvѻ հH]^145Z̿5$̱p2[[țf"yX"̔_Ɔ.5?gʹ2%mM+k&[nG-IJ(ՈjZO uS!p:,̔yȵy Ո *nGi!XN#vNR}SmؾDfa ,FW|{NZK.+?B=ҵ"(ZbNfD\F=ݻ\-rR=Β$'cS2͉ۀTq<)NЗ*CRV&Ȣf(&L-Mq~k:ċ&a*㨊OgL 3L#=PU)}i wD@ Jp & 7jK\YhrGzJ88!Bk1 7> ⏌u1D3cfܫ9s?gY Aɻ  2=HDՄ˒ KAH`9։BC  o7n-=ʨ7 *PM!̜[jvƞ1`X~L/SުD΃_ N-d,@%ZC^&a5Yއ/6V*ߴkkpx4i%֨-Jgn^C?A.aw?lSH6,v4^8SyNZ`H+buM1GĪ-@xag`$7o bri-FmzxuokyWWmDpP r1!:ֺ2+H6N78euV_^-+oLJДV=] EK;Z" @I_X6OaJlT LOi 7JlVq4]w>U9DWu>fYHP,_ MeAlUaTpjBauй39@zĮgtlrnz/;5+io6)L0y"Ugb 12|z}5S?+wv.w]P)A&@\ϡV1BDFXA;Z6<_-<Q`f74H _"sa7M `%o=(w4q"&J{hZrDA )i!U'WD89>l+WC;y9ή [iDce b*Np<Y@M 0@1/^ƖD1%,O|5ENXfsC_)" \YxތtLvڡCF}T!I?Np}BbCpGد}Nsi^̜bPy5đ!-.Iigi )PW:K_tw2떹aa8IU aXt>>@抬m>šSM𒾓 4/?5Gu@f`M2e^)H) ]|@(8}mxLD/]HJ&R>>_30,"Ubxﶅz{931͙tS:ցg"/5(md 91uiZyʾt9&Hv\/u*+^1j1O: ۢAe*TD$J{?QZ=ǎY2}Nk @~5PU!D%Ҷ2f烬=>4y`'ݙ[!SqOGOL?+G;2_"ωosLwA|"0{G{b/r׊Gh v{ :ʧ>Ik$%5U`<$^$k ȿX|Ms 6c,U;lBK|0"haʱ ?v,ӗH@Z+LWi*do~ja !?hRTx/jfEVp^-zBxt:.)dSsɔm;wHIp=S`IU2sm(n·2k“jqeK]P:iNwzI/ #ǦjIUK.%rJ|=){_ _dP?l#&@~/d]S&x!*OsB+Mz]'#JжYjTCG 6P 6*Rrŝ&{m ЛxGT Ӧ*X9v|Gpr/Yfngb̍a~%.}z@2ޘ * %)@q(y7woI/Y7_h\BRXonEe3MmO"p{ۚu- >[r TuMSd$3CgB ^ Rw+oZōZo:4}]M QqE( L_폮&~_bf9oXJ$F,Ϲ'v<cOo\8& M|Z'Rp\]"7Y@o |0)q_=hv ‚StCE=$nkiZqc'Hh}&Xj0!n{"nq>̊gR۟)=|\`e&'|y;2TM:'2@)} K^ʸ%&|=KH"J1'͵F}FR =\jM4G g ym쬇HArD.pGvb?uB%-Ҋj.Hs{S*(.F\reo(#ImBޓk2-3DFL_AU֗IW 8(4҆-{*iM7C*0^P `Oda8X/mZ$W3jJ,L%Ed2K!_01D3az9r j}4D2XEKr hu 0 uQL8)l@rn3ҷ/jO&^I!üuK&P?T4팅f{fKB=2ZB:H(i`(=F !&-!(U 3)\ւTEܺhm?Up 06hz$;M/ n׵ 6VTBY@KOLg ]6h>qx7-'{Փj3$Q~8j~#P0ӳ RrnjT~}2,(!P >J^IbEµR2\1{# ^ 4ݫ"m2.MO,#v_ ;rq]} *G#1Z+C nD2UQQI>/ ^VQ:ĪF4ƒ;s0Farh# = oi|#,m%[jIvF@:4hSUDzO48*t%}$$wzZZþ/s287r0ܨt*EʫpYCQ3 ".zl`aStb5ͤHv Izp^r@f E'Xf8fcm:BM3W4B^38{xR~G6douQ$ߏ5_Yzp_ ˈ!o&Q9f"q2y {;4hz* zI9y[ yLN%6t'E| HA`˷V?CЯw,&ks9H5x#7YdUeAST%6lC2zV@Hv|$x 4GZc(ZcTΈ =6[Jodg#'5 4He,- 腲>/#*#k.ϰo| BX{~N_03&{hz|Оn ^͂{ԒTXwnbej)rv/"PL|5+mj O ntd})Fc[e N lՒNh% ~0]]`?cd_ X&0Z;;MIX@KIm; ZeyOŜ(!7%f $?ζ7g2o )犇)t?{}3*Ct,RC!qB1J6PvWZ8BfJ)Gyojng!LSVޮfsLBaYׁ(5ǶF㐠]aX)E>Rg *ܿZhvIw[#7\وG:J]p>Q[NV&z]D]?`%"v'9i m% :`!L11-:"+wϒI"+KX 1%ȱ%4 2WnN༼ɵZB]Mt*0N-ǛeD3l Kc1sX~ Ɣ5Vtitu= 99ׄ|&$+w$oD8vN]&6s4~ JJƿ7␜΋g'j-L GV[|R ߅ũYx(L%ڀBE泥f蜰V 5kC=̠tJ+9j-t)x{Y-ŗ4ˑBY XazVti?f)a|=I|6M- Y%6%@f촛 %Ƅі~i@C/>0 /qbkъuD~Xt,4N1~2ߥp y 4R#WnL4ZT9R72T[*A(4hRɸ6_[SzKxpgŐ=J=7N>~S=4n-xbA!S659o](+"c'nrO7ToWF6=JT'|c-Hܷ\FɔܭDt"o3)2EH үgdi|~T=_찮$8)KpQIƱ79)yRF F+7 `|dVM}2rˇ ~G2װGTi)L rb\gВQ(jYs2D#]ġ4w,D>30["\I.Q 4*q;@vLxѿ9vs[(f ZoLx&HJRm=4N-uKߣoM8`1Y9)3< nߛٮOL)&xK[< )0c4GZ@@qghgkLB YpF$\XqP.JWNT/oj=G{D HA( ކ߽5zwv9p%< pI̕j9xm _l GykFTAGRQ[?75DCcFm7췝_}|y.$mFGS3QnߵM !0Kr\)PXÒ.n5XQ\œR5MjH#&˺ݵ"-L^/""!m۳3W|lD{2WH%)3Lz+a hv]Ns+I/eeAg,ɠH$LH;,p,ԓ w(J`&WEº/e"} J#zkpL^~qtk~܃^n$Uv~5| 1~ö?叅1k=s>B66X}-/\Qp4Bos' #!R>nLd0kk|iЈe%g0G|w|J+9$;ʮ2v {^8Sw]*x% 4 dr\]Q:HQ/cuO0MYپu/9tn;̒LtMƩ!VY[4oת8܌ i«ܛghJm:d6i|8(i2dѼDŽ%ɫ2z·֛$ UUyπaN_kM7cCfav kKR fd)%%n}>tC*Hxڳ}:!O՚hDŽ`|oYIlrjn$?X!RfәѓgبjO0E-d8Ed\+ (3yQ*m/f I~K_9j'xHẘQ~O/3\> `bvl%d놾/;h^-]"W{~2,`U 'HxIK!M]PF.I=drܤK }C!zyS(ɫ6Jkntj3n%MgD,n`-ԴKh0.ט9yu+~f+ ֍?#m{J~21fd3Qe1%k/ &D۲]/У݅'c'zd ;b$jXaDX ZQL"E$bR*Dݴ|öx-o#KH5Uw]QZh޿ e3H?µQ1+@3CHSOUiW \`+'O >]ŵv5傾FyuR^̬rTY$)RN~s4qi6_ЏL|(tXyd _8ф*uX߳J %+aluW-vB< 8Sh3Bn`膻1(mBUI{$2Z| Mڥ,@xyu"[Q 1-ʯ TuM95oU( Ar)Ձ>+= QWQQ-NLBDg'AQKB;7@݋식Ɖ4X]XSS{Xg$qLl&C??rtзf"c\x sV6C>z='ԥ,@. ㎻U{I_ݞw=\YSpyeecx{6E+5Y)b6ȯDT*(5Gyķ^L3@}TJh<\壉s{_`9UjUsbCH$ڨZsN/23`1Hͭ&@&40H`B~F-m~ roӫ<"8)M /T onzm ˂j,-u 'I- b[1G!8W员sqVDΏK{a&!`0nbQhkv2}*mRաg2Hlb| R/{^ iPnXj)7[$DRv3ˇ11 N&{8'~Ϥ2г7m1T~dug{_]3yV" gB9 RI4XQ)P* ݲhp6H/26’9MQq ҈ҖBx\>h!kQXl }b^ugi\‘˭x=ye范d" uji P#L).{$=b$;M`QQ'Hӭqf>ՠ4kj ax?r]$2`@|@8˴ Apnrp@f ȹԥ" e"Vj[ţ'[_|4GPd?Bg ؛?aȓ'P<>H5O U$4D)AZNj*ÿƲfw'SbH/*o ̌>׹G3BE(29Jn`5a4(&֌_zw8fp2UYMF8\x/{QZROyM/BXmƷO+Dx` &=e!hH 0ϱj3+`ͱXJx/$=~2f1GѝF#},!r+ޡ)[mq4j'OXfV8nbSӋQײ-CPG?^&?)hjbQz9\PI7wEG;QT;0:)PXx41$YQx_6⓼eہ>mpsl;d@gO[ĉ}ϢA3Vttw}<,AЭc<"JP>)2f`AӘaی49u>0bc^?}}rW jƎ [9m*[թީ1*ݧ.D>d~O4NNTRCgcIOOrұP0&!鴘GArK%~k}4=Q+Qcf[(.ߦ>gi>KX"7DŽsLb o-o* U}5JHvAϏQGR=Bt@Oa~vpy jEk%{ZbUhD s(}! *1Es=R-vzx\;$vױ.k6! T#VoC=ޘ/wuD(١Տq[Ay6dpħCKl#7s39K*[LHw~yrg8_Z-8z nPD áZ?3G@'##AÂCţ}u ?+_+%? ۽bŴU`黲m 'S oy$IGE=yOGĄNWXex{y8HhI=IRֈ2VgMIut+O ip3OnDL@r rM8s"\i1^#%I$ZgQXh* #1ln{4[Rì+LZOmP9X1C73qcMZP j2=,П3alWSPpx(NkG \ {3}TBك,A[ 86 ;(Æe/7k=ër# ڧzoiD PXo rzs%f3Cb̊U mt@g_r 矂,hl$:TP?kХ]ؓx ;4(+И]N w>W<^.l?d-} KJb憰Dp{! -'T5tCё:3oOǀqt4, r`߾ƺE":Mrg-YZzקG\k(_'c2ǵd2.ĹP\I*e}v,~~w8;(S!T|5AwhbM=gfp wDݺ˾?Q~U) Lm?0d~Z"fҥ+V:i]iy9VtξYe5L;5;q` )pԕ G0{Lq p=CIJek[ Dld:0⯽rbkJ!0"cRY)w~okp]a˱l r+#>cz/{@4dtUz\|=Jbm0"ͳ+~'wXotq7;%hL ߵ/$D`^ S`o@9Uf7*)WM܏T,i7=Jc8]W^5R H2SGUMV&+]Jёu1 PC.D&-WC\5{+c驒jQx9hVTn}65tD~цX)q=.,Ž|yO kPyߊdh#ϵ0u>MP<aQj*ȫTPQ]wHIﶪ5Xj'x0m v94V$ ЋEӥx<Ƈ%KQXe6 RZ |:WQ9"6[loa<ǧU[볆}M3W.Cq<¹GFD#~ '-ҁ $+0('6輣M (Q1Oe{ DcC-߬B , shmmO `p55/G:Xvą`fN<7[& qPbZ.*в#}[2eBĸlnͤ)x'ۢ7NƠdQTAzXֱ+lqc (bJ;ZKiӉ v.$`S|#)hFw ~cE<HN5Mp7q-0TS Kux<].4!YצHPж|Ŕ1Eu>wf 9%`ji"\-%fDkQ,QtꑞZ ҭlku!f|J `f̓0t+]VMy}B"ZَQhj>ƿ9 ;qnwfrt@H˟G6c7R;F"j@ŭL^  Rvim.`P-eɗPOoK@]( 6̪H~y@&V  ؝2:J{X/2CW(%"Zomr1oqЕ" {2rS̖fA~ NjL676g:&gBPAi7ʩTFJߤbizs7Xu&U6m~ĥ@*L"_{`Qq("S'7ךlZQ i58lUy#؜HA]^OBJyV^E7X5t"C=)*壤'fnɜ׏IA:) 8MVX4qZ~9qX @ e,RĵhbD|w=s؄]8ƔE*zntUBF>&1&tT 4(<#IX1МNWZ)9?ǖ=aۆRQ^}7eeYz,"%=p#f2/tZo@o ),3x+GcٞҀ݉S nc.QMnQ>Z>xXb7avc ׷?=_]e"'v rk׀>::/ ~7J0 fD4m&ѮD-~ ? f俜dg5a`QxBoj~}<~6pկ4Cg0pA;s\dw#E*dj&Q?<"Ոvk! "(;fdA#b|0vâjP{qOqqISkjIoA)/fP("qB-Q$8-tîEt7۪6p[O@FS|a:h_NީePE=trAY9\tրԶ<qR9_qJyڐɀ8 =k9$߳]?́y<ѯlUM'1cX 0m8Ui|pf4Cab́!8Ĵ:נao:v;흁~F7N **ُF Ŋ/dozڨa`:ئMů&8.蝈[ñw^N\k5v*&U cO'I \ez;^cR@?g1GdC>TMcM)î\IzX%eli܆g)MmJZ>fˬK⛔aIR fT .-AA!s9h\ ީA)iۧF͜n=YG؁}zeb ?0$2 ?soCP=ߠpG36ve }\bw韁U2 Nt "o5*×=`Ū.Uyck*D -6aomLʎnsl}4 i::,7yZm*mR?yHd*ygzyq6x][|@TD7iY?~d@-qΆQz+ O{? [3`TCT{CR˨DR-^Cdj3q9uhn F<;3g>)/7;l'银U^LmPw nQcZ͔.jXZ_s3>DtPu@p8pDQd/G4,ca%-6*֨]Xa Xg&T`\Θ?UqDsé{*(x^WNPSo0[q(Fj [;Q9 =T8ajWpR3QJqUD[%p6OI(nU"FF ]=r]&[,chGnKPŊНddWE En~7XL2#5A@ՀƔmv 3^Zl`mNi ~!hdZw&ѵ&c!!zuxϿ>SŊGĀ0ϡ۟4hbэsX[AQ:;._P/HK/vpuQ/n)Xk~I_&ks1j(U4#,^)B=+ |(l&FhLמL2:{s0j)U<74 JT%ei~ e=gǧdn99z^ѧ.Rs>'  ^$9̯Mnv u7Nx&}7Bʷ)ZgQfWsB zv|kN01MGL-+?duw m?#n0SRo^~FNmڧ3ܲ K%K(<'?IF 8~r[J6} z/snMJq86~e'Q@CQq1H׃w)ܬC[d> @ݨcw1/ATnf*={ZJ*FDz}GH]Bᕳxm ai- ']VMfs6>xLܳGY cw'Z\UM7g,e|)ۛ6G {Iy*3h*z1G;͆]&x}C񬮞_vXtHDKVqq t.@zi4 jԄ7jweS-..@BpT..WI>qkf T}X6^ȯ]XΦ{MKrQj5Akvi@17X޶Q'x)aYJ;- db;Jg@:%ٰ V3ʴ2>~M؝mJThɘ\_ZWf9tEx2e j=GI/]3>39𮉥ȍmʔ8ᣖ4`>l -,!ӪO̰,ϒtovy_5e_, #@eJP2.ewy뽠,6 *)pQ2D.g>}בǏ`q΍dódT nג[&k&^ xO**uݎwԎ9FeyKMة :4|T}sW\&2i=j$ב3YeK{:@CG6 P'mj~0/7" 3 ?xƬeQL xŒ* ?b*u$39C$ j$P2WRT+p43q,^k\ Ԅm)¾M˦.|#S=%hĹw(l64=ڗ{ "k<:ʸIj7 6䄿ȢjG^u|WiUѮnGU}ӭ DV`r'$,x(WW3fԣ3CP)!ynBIAv-jt'؉^2e`QO.9Hm[894PHOd8.^N+qҀt[ [uoFkew<~Qm⧮xcODq \/?iۙA)44 Ôe'm; ]S8p+#VS6nûAM#$؀;}M1[ݘ%Y;ew37%Uq D 'IB49"(\xblpP3DSof8{^>3JȎ<.tRB;b1]N3t|69^724Qyr[#d'֬c}B(7 K7}Q gcуx]1I)OD%*eI&7r7vN;?o(]%Ǫ$xԐgi,v6MuF1^vS*jtL%h$vGM!ȹj/or*yr@"6B5fcGOv,A(eC}<I\5+p`g~%T:Phdy6@ (ozwwy{oqcڈ3Piq3IK>iZ^Ԫu&-jւګq3\ִY\w8]&+!Ҍ劗#V$6vPc+Z"4o).B_HkcLN[KO]|ϭz_&:˰hێ8syԮ/W)iƕ; wl-&r+Pt.I"1:osH1M-5R(sZVSxhI[e#,yx;ecL+ܙW9.SR &x(-g^jmގ^'uV? Uϗ?O)X}p">[ jD%kv ɒIR\Ꭶ')%ěNC;E,Bq@W)+aW6y]o|V8\a+FECEgT> =%{{E[pw+Z@4t#,6٨#b)r!Wf::tã? B^,M#=2׽JY^"zUOv!^ʡ2;{zW!M&ԛ8sXN.ARwوJFѨ!hogخyu(_ X,uTd;HT2t(E3mupF+IYeK{dm Et_5/InWSO&w6Goel˶JM€=BHI<1lNz\NweಝRʏٳ"&E, ,f1n1G]R^4PQp-/y;e6ħ7r@7oǓ8 e #c%uy$z0kB_Daa;~@44w 4;e(Vf[,&}.Hot{Pv'7Źiơ#FK`2ۼ- Qxyke%y3S-r"1O3^IAP }|Wg-MbripDH۱ ಄a(!6T4 lf{0WnAG6w6r @CeJ g ;]s^m}t K\pWD- ti}+m7" DZK0‡i0TV.+&ac.zQYh7&9$yE W8UCS1xi+β8YI͡F-Bmړ<) 9U\fn KP#ہ ބ#( yg-U' @Z~(A6s2F o )߉ÈI 4uzeq:do7wNGM#C֭RS'nHɴ@%XwA9!ٚooQX. Lw&އ\/苪"ne~UhmhT55`aʢujL#^6<+϶m?MO$6~,V1JUVx>ٕ4 fh:Kb"BP N\b`-v:on~8=l`='FW9jW٫fL9At$.mu ⒛QI=D;GMWSևS<.;DFvFbG_1{ %Ħ ~e FL{Hhwtc-$F 8è=YBh]Xj\:X{ՠ"pGVjmȫwz{8#jvTd ~'Лڰ@}ndeߓ\c?d20[&{XK+ue¦{/Nr_q xj+|n< 6|p3*>@ A|Pi7+@zIՒ8(P44"UlEFJY*Fh1>ޞkZ IzA.9LRoZ(D)gP=st \hS DW&pRZR&X( s0\Z6YmVHf׮ mqzkqқO@6m?nR":g ^K/ī;v䯱0e(- rcj$w7u^crqlUY!dNt+~UƵWd'/C"xpnLx{*f*,F/*x$o,m]ƃz~ɒ |piNǪSr19EzԁLQPKQ)ev=~o7&ʚ*CH. ^z0.郇߬VS++9pc:9 [7Mi\';e|vmh">-g;oy)=\!7|N LJg!A.G#@ ճro2mg$uO>KЗwѠ!r %D_͚L9r;猠r6eCG ل Iو(5oZ P۹6GS'YφKASCoJnD iՏa7򛥶o'l_4Np]+\!hY% C?dv;g`^@(. i_#߶*=F`WKfa3j#AZ#٥|izN+Ee[ڪ['_C%ՈOl7t>N7VBJvmMD9(ѬX&Z saAyޡ<ؐġ&֫ 1w&<= O~ǁUp}' _%3}'1k_&P.@'_")Y(q`6,[~o#H!nC]<Ӓ_syAlXY[5XGM nռoos et{؇LrWLp%]*{/*U0ƈǭ}Peo֍Aw?YD Susݜ{u lgGiE^$avv2b9 ߏX{/TeޭxuڊyD"̌Q` fP?veY>"[>o'"4ğ{{UzEB<ϓAn~[c}jbx" }??wPJB |e Jy_N@WI.?t*e"Wa^6\,6Mc0מ3#NeX_Jozѐc4>7`щB!. /ԲT?'oш7 | *?=&:4_srǩ;έ6v(x pjƁ8/}JѻKɿؚj[#9.R%V]F~_q4dA`_-p퉃-a"HW0^ߑ]hW9Svpm}4+/,dNw aR({b?RG//SjQY8 9(M߱S[ޛw9EZ%.Im?.vWȫ2`k&\ Z*uPfi5^oTbQxxbعQ7dqAp)ч~!QJ%u5L)^%lhb (0A%S+N|7|6ـGY` Oysz$^j@2ECh6I,q|K|=$B >NZ4`ۥ˓lZqO92P Ll_ 0:AesaCj9<# |RtL/+`X Dli[IH(n.$6狚Yo@Q[)2d*A'k![U8jiFĹ?!(9KVK`3yMP! 3X'%}8{Ϊh7LckG'qNz1"vŴVLͷY2vkz58Z1k#w]=,XdO;Hub׮Y+EޢF$>!Jܲ6S1|MiTDMk8e&3mrp2R̡%o@f/m=FX:8y~j㍨\ql7; hhRuB'-+l{m8K}mzI\׬JV(~&;r<#20%m݈&7l?U$EӧOoѦl~ily2Fd&7F -+ao4ZsОa`=׀4E Z4l4PyN Uz 4W3NlY04˔(y <%Xn&L$95YbLxrfк6o 9k׉^t"<8jV>ZK]Z蔆@^)wD,对sE]LmH4ߝ AxY5|.3|p*ףba;vm# eÿ=I0<-6/_ W$&hc-#ZI3@2_|/uy=]E4a K/>tt*5ď( mg#/Z#K\H LΛTpXI@ ڵ.PE.8 YVgAxN姜IH09ծ]v$\0afVY h)C?W5!cA)2j012A65Ɖ!&g(rI+̰V*#dg(@xs (ƫ랻Yv#~Ĥoa`[|#k}aRF>/O ~l@_u˃vRfbs`G idI7Vlmdf2c1݌bIO7* T7.fG̻rsGN*PzĚWLŢ"e>sq m@WXєvڪ͆LnǢBW( mx9-ϻ͎oׄu֕Zi|ӂbG}zK ݲY>ژx EFV y Y-v>Z *Z/NH[.!}&i@ S9D?Cz_鉥{w7X{N-;/GS@DKR5ʝUv/Gą$ Ē Cs![ ո zX}ò=^١ ӳ-^9š Xc?Bt7R@qG2W~ E{.xBSE!IK4f "wjYG 4jȸ5fѺz :{4;$m!r[Dz'#@tHsYѯاi ؒo=bcWJ7_7Ix4W4HX?2zX`C5J~;!" S/wIy*>Cj~oZSt?J)>\g~n X;CٴDki,1WɯD#oڕ8O AmUG=g=:FÌ T(uݔ8VOC:r}0U޺cQ\# 4 ,Wg}j6V[ڶ L@AruŽS4Dh[$Dk25rEˢT;ъh;_w?& 2MV$6^X8W[u% ?el1uIQP'\P4+^Hf{ Tn ?7<&zBu~$lTB]UC˴o87:D0+#.:j]..@+g2RLiuI4I&@n86X^WTd|(,,1kEi8=kL! ǐNQ(u2,@˾dw&.Z2evh'<v—7nFkq&NEQ?'˭&LMY Q Ľdn;ⲭQPӨ0s\wl ]e^7[˥`r܄/A=lIKaJ2 VW@}Ue`y6AڂVU8Wu?»DhvHw1.ayl*Fٖ&ÛHh+:T K}w(l4<(Wl5_#d2Y|խl&D;A:ť kηdA4{"$ưȄRnK=)/KBx^Ev@(^f%dSRD=0U9@٣ a@uo1gnU}.tBc9_ @X^auBI֡aCf'?ANmQ0l7%S.qj.^o8L0Oa9"yo+X~sѶ;~sNn4B;%͉Fza_!F&#>B ' mPs=E͞M&a&",c~!XὙ)@~R~\$V\(!6$΂Z+8X7VD0S.{"OMq7_/nbGvkR1B8W{x;J x3ډ} kcloQ@FKAbWBn/Q$Q*UbA}uSڵ,+S%| XAg4, EޛȭQ6P_G\a$ߌ`|z_'%EUx%X&bj5jt7vS3t,& N)h h :8U2WTIt$#%tnZQTȑzYivjHmѴhMeWX_m>[ _6^uR('mO^˄B?+# SHR$m<+4Qbcve/o!B54G^dʖ <ܱpɠg[t;y/f* ўe+ݩ*3Oiei90)`x@1  Wku0 gڎo+7c? ]ej\JMQUg?ϐq z&$\~K HBGlȏ@܇9Ӝj5̤nd_"F7)nJgOBap-{2in#~M+,{CZh-@4=pEt/ OqXFx7^=Lk iVU ,XB&nRn8ƹE8,͗[0^g|}Ԍ;$m[t>x1p):a[SJrk *= U Tcl&/t${AԴz/0NpIiJk2v"zރ6Xk c>>E t9TvjҫnaEXULtkoIܐE.Ƒ<|3f.nCd-z(9oɗn9k_X:YdG,{ra)ɦooj%v3.sN1L ǰ]H]2d׸[Nw"M>Jkb:̉-Iϑء?G8}r"c!TrD 4LbAYJo"[`Q+G+YӼ}]I;ZȺrn),T ,@tJ 5-i<~>)d?xsYp1 ŧ$U7(7vGGσ7X<{0i쏓YHۏ-OJ q1m(IC{S-f%EO㢍oBfVk:VFTAvF' .sJ}k^,{z7E܃X14a%jlٺ^$uJ]#3=YP%m9I`أMvB[yL[_aRZƁp_k.Hyi ]V0j +1tUg+g| r/qYWAGkY(d8i-9+Iu.@.n92M[W"}/NH#^9+1YeWsGjV Xn62 ZaHF<؝k*JQg_4vR"~F [<&%L`5P;Z.UDB ̹(! ZT֒D =>4Bwݵ&iA<+V~Su( ]78fcͦ3<' ,N9kE{\GD>UcPC=:JPxC^E4+3w g0^^6^K/["JTJHKƫ2lf`uQmw:QፉQ(X]Ε70e̋}=hv0cDS<}WQݾ'Y!6=%]f!Xp}Gte ,cXKq(I~b4+K+RatWֱġ|'S+Q\Bۥ (o2ʰ\hrc;?U-ӣXۅ\c8HUY(>dRL+A;44 !H ѭFasfrw/FmUQ i)<=Qކs.?哌_"_l5{hh ]jstNu4`ޡ6@X͡\yv PFٕz{AFxc^7K3C$Ȁ,(X5hkx%~\pg_w4+vGO#\B`iXW']9|nhnGn'Sd(t辊ڸ/嚪ooqV5nU6yQ?[>`M,=i`/_hV8#xu>0"tCպ i B|,/$ydF-C r23|g\jiX!Ʃh1 ]:!5zl_d_2c+ȓ{ %yhGߌ70Hir 50eeo pp\{yc}Έ] P'^b< ub4TA X*aґZ, Y1mo 󺵜Fi{''DP{U~bޙ=|lDɼ.{W25ҹ\x:+5<CRaƳ>x9;6J.a֭M=uJ?[#CM@"`LB|۷LxǛ(,j&S%('Jyp~(m^L5޵-zop̗.늽V05.QAE.ڷ TEr + LLbBy@~"A.~U^J |T1$`YnĨ-|> I|5ǠYt8\ROR){L#׊mO6X*{BP9of$ )i[P$n#7$5xtb 3 -g PZ?L2EEo.}v424A!~Fᛘ*vǣ\Yw) pK YAoo=,`{d4;A1Ott-Er8HtHK腠|Qa;5hw] ){ݫiL-ZQ f&XN6'wc㴿{~t `w.=baĐEJܖ"[8(j·༬lbOCyn\cg">5k3{o o}oҒC;l}R6}7IK9Sv?R?d}";w33RQnJZisk(_X习 p_uvPkءheWm*z ZVv(Fqt5U'KCcu FG=(Q`4KqM*滥&M{rc$V]p-ΊMqI8#9I3<іȥWl5spJ^6H^abAq~($Q{a@=0DX0tĸ`o<_/y{ۦWOũD)c&ڔV|gP'h%k sCȠ[|imiݜS.ai""XEa=> wϜ'MNH_w{#ڴJ TF5r9.~ 53ğ}nmd0h" ׂ{f.`aJU{-G\jD5=Ҧ^4>L?SFU.A5577>ԍ`#]/=+IQ2{> 虭d()3ngsԽl裃BT{O?(1Q(vCLVճ#dB*TyGD?W92)K `鱶@ßþ{{Q$sD.]ۆtw>} m_c2,Rv~R FmIѬ x\ ƴBoNXpʼnbz{뗱hnIUpÀ] ' Ur1ϤV"RL~4Y=J.$ϡwvjiw$hW! 3VW%"~\y Q >ri`1YX bNvv !I^ ˆw3TQwq&?BW6ƀnԎ ]L.hk8Ɯ@3戎\.-@&3 I36mT$Ԉ "ئ@HضϏ)ze[JnbM|ӄpLa >^.%RӸ|Dž0 5gð -JԈF3h=/)F!kp  P$$tRq6&)`ԩ7oi7,!Wz[TGi'B+bDKڣpZD}Rjy0 rXDNܕ~~Puj{h9=ػ2ӄrіݙu ͕߭L=(S>R-ݟ ,x{BEU$eڵɁ|S:MoinMOszztBd:Y VDtзΓ]VΔ&T? ]L56V[\si|ddNγ}!^y 5ܦ3!=)qd4ɗYޚHOx6|ѧJQu#q*BT `JrT 6;fc1zN}zi^.8ۛ?&Hmsƅ0xC"^!pD816V 6w~uW-lGK9̐j2Q Sw` #7ૡFi6mfaQ7g1ظ uP~xԅRdkw*bh#'pn龼 H>fx28S6b֑o%‚H++w KXxU`H [U dH:u|V`e wK>=SewWRoհJȿ|Qΰ{x(gHn:nM:[^VNn8q0wST!ŔjE}P" 7SC׼ "uկiMupNoj_^+t9Wڎ'^81tp+B:u/mQq ~rIM"}_Vּ6n h֍ǏSXaX[{~Cs#>\PՃ"wˉe2/DVcfqK7aD|QU&D"ZTt@-W'loN_ҵ;<1; #IDi(Ťw(FڼÉRDy;˯q0 lz$y6+KH(n8B%M,w#MFytRըI)qO5YU7N9%YY.g3KEJ y4ΛnPaGi4 t[0@'IИNrj"L<p0]BaF=n5QS&@zzUF㴼!34AYttSj'/qV`eh=XkO]ʹ,Sj=ZT%Z-]t EI/nAe{0xW}j/sߌgX-() AiiUIz8:FÐ~!Ϭ$zbk3FJ3ZZ!Rfp k9@y$h, Z'̻XlaJM #8U@n߫_j ٖe;zSH봾PG/YZ (5+>N2s[WP%J1`[2nƓ* 6]Hwo+aQ,&J^^")蟈p=.*z>\cvDF(5'KqY?6oJ?3bȰYq) NݺPnp$FF!('3,nˇ%KvWPA:q=[sg]渲.J ?4[Hfh?\f]I_̀sNJl%JPϔZ-/&?7t jKXꗁD^[ )/E{xH7nVpW9ě1@,Qk7,Hf0knE[r}crE;G;-)d5yL䙙gOqn棕 ' Gis6 yjIe'o%4l5w{'Di%%} V.;d┺Ǫ#|V(ojZ[ eYQctF 9kfzA/Ѓ9bNN,Y^y&4$,5r½ `l G.[C4S1;/Ԑ(44, :^ XC6uE9 XYԱ'Gg9 95,DL"D]Ӑ Zs$FzTE@NYc[R#ZzNXQ5ԯEY~gB<$`;-D1ƒ<{CU@փ{N> `pۊ_$V**QjhoCn*\Qaď9LoD ٙ$**ropaa{QKJF*U Dޭ>Z zSj>ZL`wCw%f|a0Z,=Edo j5IRLK,FsǨLFsB($FAkpĻ1BeLFhe!F~'&H͂UJ 3mzq^楨{)ʉDT2,8kb"Cy'@9`D al")3tLN&diMJFFv=X EPAЯLk+ L·-Jf_QnOkN BW4b^4~b;uowbXF60#t +q9X B9$8zg٤^KM +1M]i·HPڰl7ބ:zLx$yv)~/*6@HZ ]mYG%*eUƹR J̸"Lvr@dNuwܡH~,m섊] _yDF*ba|:A @wE39gQ6d=Q=A[z`$|Ô=U c Vt~ y?6bR}b۞iz-XG(1jvOjbm'Z.a}XD*^#\Tlq2 @|B[$,DZqBvw9Uzt̜A#U<~{}JΧTuI;G+PX^8HX rR p~GWIs6T,|pő@X-frNrea_jD83Kk˙cvT [saBf=YjQXP ۆA55P!l7H{t7 ?*uL99pBG(`r7UXB<`ewlɜcʅvy⏲6d}Tc E И#˸<YN^'F1,wHA i-12~a 71PAPg},Z@P/p1BMuҒg\HBP錠Mplu| QѕLq02 8!]ETvܖemө e#ݨC R߯1-nGg !"w?<(Ua$\dN#bajA20 Cݵ{>i~։:O qšbJꅽB Hx/ 7 C5L_pa~ɿ?-u$ [+T.{Ț>̂ZRnL-"MkvC&Q)_ œBOw$L]+0]7'- _ٱ|(j~x} -Pe(%u]K ݩ#T1.mCF<._!9%}C727 ,~b6d!HeIMNLnWzoy'!FOsϧ}4Օ+v.]HmKh .7{I4%b4=$TrjY=EzrLN{%K|AQD*.zCIM~>ߜsuoKp;Ըǝvϭ|Mٷ1W e!̓YYzzz;Mkج6i :7E+^LvwUY֛w# ۠)LԞ4f#JsrM[Gl𔣜\VUGQID`$ѱxFO ߮1ŪSܴx0aQmIO0w% ^ng'G>VaXL[|LTmJ'`T--|φQB9f=Oq s.!޿v:$H)|@oJ${vMX.j>\I[ŭf +J;fx/Ե +偂= * ^L?Fc]Fz\[o|oC3Ls7^<BOMLlS!ɢj+>e{@,ꌽ왐hzaGy0r 4[m0Ӈ gCu5"`SFCΩW\.H daq .5K NGԝy.YZguL$nE3^j@#ybF [+;k̘AI%\)+񛸇=2r=sȖx3FNqKpY^Żmܿ+*:N?`wMSF=ƨk^X|W^s+ Nj˼yQ VM0MybE tݷl*(#y[mfIR]Ǝ> ݠq݄OPVkCL-"ciRXnWxG;?0=n@ǺP>bY* yC|Mfygff櫓[cB<̵Aw?Uvڟ8i~4FZQ~=cb!yKW}V15DVhsZgBxz _~@;neh.6 !__1B_sz3nS3-Z>Cv5fU7IFr< VGUS0=M6A R(ۄAjW]dzb83}>`[u Z@b 1%1l#FSvmz )Ȝ\^5yG:ĵ )myCJ^Ҙ-e}MsD/Pt @1Nd&BqicSw{0[i1=<7ck,FfA.`w}QQ-]L>;b#)ޝM<"(bƺPʸ\S0Sdb]g;A V)6fA {"ڜuCYDh-#!`86HaNPTx#TXj}|xEYA@%,'XS7kyÈ^|t ."I53),fug .RHa摧6&q,~o_~GlXێ_IpE2-׀#h;ֲhܼ%$NW*c -( ml7p@X<;Lǥ~~Gb^x07] KQxAl~n6VX!2mq,yDu5[&Q < o{%6}Ö0ynDOh3 {;𘃊WGUV̈nb%0SYfp![2@}M;Pq#d1 ʊQol3lՈԸUhR佔k$|qyHY SSYR@L s?)$[;*!n4m7p7-np?wvCƃP䰛M[Rh $g0˼ʕț?9 yJ2&\FRo-|.'+\z?4Css@\Ml/[p{SA'd.} Gc{Vz9;fb.qZʴʒfU tavMtasPl^ ,cL'( D6g ?dgm~J㌣}Ay#sC=P|WƏ%(sRʹ#e*VuǺ^AR|Fi!~MnLru/e}%q~@&jΫ{J&0`rL]>8jLc8 ["^꯽;e1ɾ夒E'nDul\/0{EfI*M {$d>\Fж~7t 0[\Q߷4H.`K%+LL.SC՘Bdw תDgf,SώXQ`&XhA7+rnmγ?@O6@r T0Dl,齄2O +x Ub à !;#.EemhgoMЫ6:F{\?Xrr/&T a 'NTB茶X#=䣱{$ʴT~7AST|XJhw$NaO&2|m>^RH\CODڃ>i_Oă(ú#f葝 ߏjx=cbY"p\U5ji Dv ( [uy!Df9*!9v%I\6Q`ChKJ;aqvS QwEv倪dl7@rtPaH3a.u)Tst2)$yBK}͢jDX߀h홽 v`^K:1T^`Fa/nYL@A GʂW:蝓]=@; T+#H*޴01]Dқ H\.ކ=Z:r~mE4Sj? JCL^83o|#F +M,} }Ԏ6O :.!4!O#'3$?R[XZqVB%/S >ι߸.r^8l@Y=6ٛlSo&`qM&!Km9Q]5WfD< ~e\:W֎!qOԚB/aT.D&m4qF+*'_s5X&z<(=BMÝ*&G2P#l&L|[6-.As͌48CeKơ]m%38 7ՙ6.uTRV꜎宖^{oJȓq[ۓJ}cLDΟهCb?}q_a]\DAƺT%V63S+;lm֦ܒ{ 8"v$Hdv\k/S,ӰMh@fNKys_Cu[_TY薲F 9oǾؾ_a*4RrNrʦ"*N<㏦|G&O5>7 ꭇv<[;F3_VAF$ +uWGb┅;3|h6&&PE;Xqi}e~~u5h&zZd:\Ol, VpݼʹeATR'tj e’ 0Q$@ь@gwaR`4Eԩs!w7RNe_/\UTk-ۂ(S_!'Z)}`Bikn$YQwN} 囹Z961^)Rk_S[|du }ɯ" 6ǘ'֐굁j9Uדq8PC,jꗛK9rQI0.wWYwM`g$X|W-u+mQє)nR*}qIsWZnه';yr׭ M bl ƓUO1aGu:rT3䱶OܾRZ a$;@ǽwY7yÏRQ3Ȍs>q9e6Um*[q {@XLX[@<].m 38#Ocy:Shڒ̫$hEx1#6yI0j+Ȟ}۴WU㒮|=xI2svB\A;.` Z7b"Q^h5/b.cqghTO;ϡ;9|z+lEK٘h*;PF`ϯ056"vd$57!HB8wI'?zn[cX6t$J_{_.-SjE4XDTTw)t}1@ oTES1j?C*l =q?>i J8N!'"@qQ&*l\ЂzLB¥<ؙb֭m(^*zwC d$uй"RPR,c o9PT%.KnhZ̲I6PW2JKkd߯oL'])/fS=#]/C`QD>.dt߽zb-j#օK`V9"Ro큐 VZĐd?AZ O$A;N-VbWfbLļv|9@;| ͡&Yl֜[cnlȮnc\CԹX,gRӋ}>5@$-2: {<  QO !0ʶw(j7A*9\>?[;*] BS`{P aԻg{x%) _waj(ˡ;ӥt1 kMv,TqӅ| *0t5qWFev'K;W]_^N<6.#XWݫbI0+!(K:Js[T=I?QCX- &xtDx%lUd*uN6hk땛Bm֬s'Jcїw߄ ;AwZkZOtٹ+,H & 8|/%Rqxyiiok\Y. oj'¡K;# L.(ċpFjQ4nrQQe7CmU7%|MS1 $YՄBoHB5fx6X/bWmFcI6׸*WV,x;\:μlKrC훬m'⊪y20hd5V.#a/3\Eޱ8$֢cn|+M/RU"NLH%bOhd~@ 5rw*y1et.;0 dڦX\V')(ӤON%0G`>$G)a7IGow- DfAwhvW $$MyFS*6[,`wE"usiiy,n.@_0ϭ&KȳoFj #XN L(_+. i9' ʅ-0Ꙅvh hd[S;myĔܻ>|@uq ,qR_w{L PE EաBhK7T 5eoP7I>{wV6~^S12$ө| }ޚZNe Se*ȯ_’0 ˈ4Gm`m@'O7'>=5;vIjk i7צz Bn0sy!ËХzpP1Ɋ9 Tm t@'OuzCuHR)$w37OuBu%fX}L9|6C+\ Ͷaɀza  !^d)~y -\:3;BXis/Nօ}B˥ޏ~A,f{tꜪW t,(Vz͈#Tz]^S!= TDXx%q/n{o>7;z?S)֙|&ԂB$}$ixSw c<Ҧ+CKj#yme9ֺ_șpE~LKqZUf/sF6T J *r YU6έ:%`v`N!W;@.{IK uxٽ WZ'P0 D #K*;_g`a#ʪTq-u#DCkшԹ3^p꺻~tdA_ G"ja1#}},4GNbE 0#h/?Bȸh"plGX|@Z.wZh&M?%U/\#@JNۛe?ps(s]0II| S]ZE /:PdڀؽoS_>CU=ShbSeRʟt%nOr×뮳Ҵg +Û839;YTkz)䜧 9w4QԷ5Z/O*P,dnuc0{hdBw岊*P"޸ >Fp넵=7n“eu'h2~ 7&>p?g%Eyc6qRo wGCwesd%-ֹ6I wK8~Ci6#$o6hXHM%%4j=Vq EkNAΏJtBRqFe3mۨ'VJZ :˫'"-Pllf18QIקd`jk(di%%Fb!fk,M!ofDTp1Dc7 1WicwyĤ|U2/&%l=y`f'PE)ʋK`<˰_/CW~\r|UR ]TtxHmZfrڦx#_n{+lY6'A|6><"iÒ(WeH,o(oB*-unܨe5Xۨ,e(9Ԇ\J8P#9%{'_%k8N `i*@،Ss3E+Ce Q'z>cSf+OGM.  =t?nӃL=}-zvmμoTi/LѦhWĤSrsX Xz`* e!U˱`s&y/k4@{A{!bQf@Nf6u1FVA]7V %ߙ ?7I+p us MަΦDYɔ1HIU5Ҝ|P 3 ӘE'5 ++ B@ilՇ2t&C} 7SMZz%+8N)LE/34PZzMɟgzĺtխ%;>w8.^}L'7fsKJV^|AG, _P &!5h`#k~Y5zUs 0"ܵ4>N@sݹl7d+CZ5Qԭ^^GoCzu=,ˆ4̈@%]od; -Cr(dbq {L^b/!%G:Npa|a|!waP_%@@ןi灮&`$nL"/] س5|}&ALU.3[3%.hH@v-c&<_}GneA{r9HcP`Zk(g0c84=xB0>7 uŞHmwШK;|+&o  6%:_?{8jS6?dc4CLhi$Йɮ!ݮAY#!ltZYTE}<+##.[O0Yz$}^r"܄6I}%)C_#ȣt32`+ëBXqZO^ @3π_~Hv˄M,cקΛ-o!j/սɭ*uHϳe .k,.ڷ.J3۔Yb$ I 혲e,WqF$X~}:Uh拷;Wm@i1cu/Zsv~bu򊗺}7tN9ax^Ec_Oֵ)VX F'`OtX{H tcۊ`B." TKLE 9=Q 'WlfqNbE65 ;VOawW7I46q,2q~UǿY'Xetbug#MhX#Q9Naӈpe3(awB_E.HŜp@y~FC"JJ;|<@&wíXpi6@.HyȽVeTk.6-Ǣsb{BeZyDtfON3Mf0f)Y8wK]41H^Wh'sf9zY2lB9!ݡf0":;fzJ10NC\97j^M Vw? Y0QV廓ꮸ?)xU p`tMp\t)+\ 2|a`o&= ]^ξ evpd`Ư9৉ů"xiFݠ`^zҮلfBw GMm2448lZࣟ j }j/X0V(ò`~x]@M4h~> 癹.w7SոddJms"#6>c[paOyˏ ꕕ`ق֒+NB⌷^nиgr NԊ4Kn+(`d0P~2OKe.LLZE(:Y->oЌKbҋfT&/:uxQHkSu#i5uUY9P+oF{ߛmAh|yuS-1 K L}k~L#.Ns̼`KV#tX: i*"(;޼ ʹ[`7<1Wn8r'*1!ݑ4lT#F?G˕.p' ][g7 ""%^Gӷv9Eە- {O+4<)%vVpesY9O=UT(9u|5ȄU "zzǭl %o$)؋2aU/=nPpCPۧ zF,bxڂmL-%#}ga=ii@ށ DoaEhM{;s4@%-@?Zw +8N.SO2ʻVU][l塝MHqCAsڍ2۵BL$1H^Y$$ xONCHi 2~tǺerB7^R8Ԡz-;<s^#hÇrPFEŪ[C"pѳde|M5{ UK^#ޔHӗ]] uiO :ŝ*[Z%Λ9ɻwkKXLuY?iq-7e8 3(a8(vdpJn(a.f /2md+$}i ? D^-^-+[q);,~ [gR;q<\GmҗkS x*C4mm\O9v/(T_svpq4w~?ߨ4Kc-Yv)E䙰?{gd{@3VnDKNxƶ`s$ MN0fh$:]nM~n4,Cc%S̈́Eb')uY=C :̛cʓ Afr!<ms(Qbţ q8[(,A;pԱ*Գ0< -J*J?msDc[34G86=|2Czy viV #ܦF4V^Pߘ?$%g VZ+ K`m: t˨1AХ.o}a/2$8~H1z:D#:d|Gm]ӸMC]],D"'0iWJXҙf\Yqxp~|(\"g4GrzȤI;NB{K&e41:ԺFľYCJN8o>V)9Nu|:"/Π,xQ%=2Un^]#QU4hn,ܾ GG&ZI(4dT82f:s!Ev1MR6{`^m8h7OHR(2w)o09ڌOZ:KchBi-aʲjlLh}J2jQÎ.NmmU3|:֓^L`@S?'734҉SǬ峷j71xy+"$ Qc+V, c_|S)Bi v,F })IL)s8 (MI3ڵ>#=Z<}g\)b2;YGIPvUz99X^۶ipx*>^_Tt]hOɆCrC?0˶/8SGoŵ%ICFxka<,Ry߸u!T NOtҐ{1wXF@Nʇt[9"!OfįQL@m^HiЁ!SpL&$EBo^i)U`d~%Ynss4_kt[mm99*@Q`=q\./lRբ.m=:6VHӏZn6]냁Lkh( dT2U8+f/汲1tȤ z^$9e.\L4\as"6Yol=?$,bN[k@j(6{뜣4p6vI1 {Le9?WՔUZaO~$N{c_#2链UqI (Oڸ:2%Mg(j_oN͢uɥil!cGMgX1Rn|?TBM,1]T֐4C w>a&/::h`".^ &#C;NQ:hO0|c>\Pe>|güx‟" BˉOoӸDu/1`C1eD,Hc"j3ibW=EzM"d〒jHgBa1[HU9;Y_ jd9} R83^3F퀄ó/rޝivP[0T^] `)$AXG%yQ,cuKatկI w ]ftOW )Wx)HcLzՊ"V+P>\ʔ ù+j [ąf< a=!L kk<Ϗf7'yU |O5RBGgӨ}O%%@׻ko=UУwF6}3JDfݶ̉UDZ/&1v1ROUx`dΕzZ(.a-)ɏVS`,jM`-$J.;97vK@]`i 3qa4@1F; ^nX35섽7ޥ;ćƣg]6FuBI( ;TU2 lCc~TX]1n{z<gA!/H6vX 'O7teS:k#],^iCd.! aq%f8- DP }Tw5$Lǯ=#UgLr-*_0ڪg3%e=BjX~0d^\IR fty y9M|&9JO-X~“/u\ ]n0]cr5D &57b{#?7:}sZ`0 z\c/[8 dыo^}jn8M{Vq^{WzCw^q+8ؖWڝ,vWfbKG֏5ᵯxb_r:B;hY\l2@HUpE zi(y-qV_;Վ.E"2RoB39ozڽ^ v#TL&Mqάa L2f+? jot -Rz4mu0٘`qhk@X~٦PEPY|0hsK?64_uA^3\#[2+g.;li:^2ȩil; v5}]CmlA:RvNڝڅKT"RX:s)0ˠ4Q\EMEhmA.&?Up-cσ}얘ƌg, v(4K)EJGgf5U=~(hhZ (|Æh[ v;\8~\11W )wqRX`;Tg|K(9NXcrw.5BQBmn*LҽB::BIQBdtQ;/~剂IYenwuR8j@.aW' ,Ȗa9j PTZ_6&GIS6ۂbeZg2nD/D zxL}W>zi 1rfgyigfuڳ*|(E;Qiu+ Mw;I)ۼ9&験& 'nPk51lb`QÃx3[Y^g 35a4t*9.AI!*? С;b8wnPFAzE}~K5v~xc?h-©n^A @w?>/xQrک%w2{MumxWp.ݳ?` e e8uP=n'`G8M'v \@vsY ?P3O+At%H91?|dʁ/\R_pAᅡgYP .h Eb-=3. փ.y=:GUpQ6%YOO8c\A}-qʸh5}s> f.Z + ׿7BET^St˟wNgVrWǣKw/qD-&'st\ $eoi7bEna"XGDnkI ȪiB t]'iYsoa8"T'l}XF havQyrw $cN$SR%n)MyPLZ-Ə,+#A>qz^C2kjAsǦ"&G:RXI,-gL`䊞;n]&M,I2 ;~^93od>hDkH2qdMuM}7>F)a5_5 ~sdDV3#RX3!-.>}scHd6f?lKe'?웉5*uO*_'i68M%2' }?a+UX|{t|RDO* ×eSmةX[|ǬnLT *W0Yu7r~,CѶK<ـ_,k|-$y肴eiVX(bmAcD$E+Ot{G` 0~D02Cz$}Ӯ:Db  QpbwI8ifMἿ ePl_N~: 15w\MWL IszMT{{:EE~6N] YpiRt & .#oWPL*ԟJn,;M ˀm_4 $dydR!8%䝂l8 FX/ ¶dXUg/? ~@Г|i;݇HC^I+6-خt^m^x~ Jp~k– J2dXR m0+%0"h'PW.+T/̍ xT\j& yvęk#eV/\[ )1.5W_L\;>M;#Dc|(=j,i_ҿv^<.w##XNuܬ}·‚><=_=\3J59KVDld#_‚i1v4AH 4J ʺ] fr5MF#raЙ!;eЂp4| Bґ[2Ǯ`ݞ?U͍w%qGbM6\IBJF1Q]Vh{PZjߕ#ԲWrUd`&oؤ G,Q$l):CiᲙgCum/ Yr]60+X~}I{3J4"F?U CUs ?zbeӢ Sy4q8aLQk j`-/w3~AZvzR&G<6P^t>#-Fb8%>w-| yg:mW2Q y}@}@YgłHit{7c5#>;P/#-SxץpwE /W{mFϯRQ-EU\ O¶?"W}_ӀLӫ0AX6O3b ;~*Wk'bkZYCfqZY7~=hFhsӉ._*UYP00WNa7.Fqp! *)*rk*fmlS/W50ٸz/haՔF6_)e`{Ӯ;//w ^Xw< Bp`!`Υ[mz(-|3mpQF |XrȿE +>a!_ "ci-JԤ@WIP#S}rRPra>;i2FO[uG``D޵&Y=Hp 0[S=~Y ~$N׼ ]Kut>(׵ ,o ݖ Jyq ʅeGRey\r zofd7ߓs*h[!2`DL^ɉ1Ux "}Ԡ [iV? t?Ɲ8}`׭6^( |2f|Xkow[iuctFV:6d;ԩ3tkT.sW(~{qa XJ:RO&?8>l\kIuz[B| ґHh{+8ԴN uY|;4)`:(r.*C~P(){ĖgERmo>J_H۹YKğԀ#}McxǜB:L|fpv/٭`WQ^3Y!t>XM|;}/qA6{-0N[aWيP>3U;( mL#qOIaXџX)997Q_r2>{o2P͢i"K~# .U[2!wqF2 ,i+Z]CմEǶc|83EDZ, ^'ÆEzO||"'̀_vz%Bi7ӲUq4G T2Sj0t`I*|& HNZjȃ~s+(AuƽmbKP@Ѱx@.?>H, 4ʕeZryd.0eY2IUx]:sP{N6 j0`x\6_$Aܹ_qY-D~M"Kˆ^2:mP{[ yKiw؟M֞Qm3nbo8sČ[n2 HGpnkP K,Lװ,s8el`f>?=/&B BC=-!dAJXƕ}Eߘ6(ʗ[o~lkOyfZ>;"d:fh %IFCq%q*=1 7)#4 D;\]]BOHZ4 -@1&9#%E ߆0Ѕq;j, wD7g,QdnKdGQ8!샕&yhڮvQz##$i$ T>2{2v*TMs: ?x3*UK唷Cz&*b-[X"xϢGD;R후bU8V-< /ـl6DF: %}Lp O-DxDs=~ ,$Z®b}d#QOC3꧓A9OzYCO!KbaØZ\V2QMH`E>f[BU(8ϙ{s5?_mzE&#:ʐ # ¬Jx|c+!'|hS4;.U3&Zvh=Hkb(M{ݶ]:5`X)0 h5>8mJbF&I2e,&Nl h'B#K`:Y{\YR[J2T]& `hu؍`i`.d4pa=jnlrcR\q.A R9z7rs<뢝3Oe$\vZ shkH=jM9ͱ[HS&hDPDQ&m\4uISr9kD'7ڵL \nGw\0̿"4ָ4tnOEuyPQ4csά3o:-ksT|BY01l2&  !G:jcY <58Y&'Uҍ[|+ r1K1 $~Hnz)JC q]bOT*ɈSgF\]5ݹ +@?#MmidKSd!iX{ܹYa^⣽o) y|f\bfԦKk% Ŋ?@w4 0(|@{Nĸdnrq eSraW&5E8Q Je̙۱@,k0+rc B 8.Y@t$Ti%tЀV0+vQԥ{?8Z¯UYx_}2r}t]QE~%^GhE_'ykz^ * vR0x4Ɨ(-h,`C Ec: bz̿Xmiqֽq7-g nE' oqM+o*OyL$>z1 [[Gp"6 ڥ1uU`SaG3a!%LJ9rrrjvN~!3n,X~ zo1WxMfH^hb)&3Ă=% Fiufkˌps†3!}'lt ¥pg G] 7@b|x? ]55jrQ <7u.xFTvLcX@l{sS;BcҀlFw/a[(I@'55?՞a:;U\։޸%91 ઎6tLwT#Z3%l(O/o퇢{=3C-γSYPV"`exGl|ǿC=P ve^pƚhȳ`k=?niqU ;WH/ IG(XU;m__ ܞpD/גDj!k*p0XMRŧQRO)UhSTc6Zr|>j o9YCX>c ~Bg4|Ec eg%CEO%dܻm+}`Ffdhv*Puq"CW,u/mAX`heTpXB},fKؕez~WGx==6ShTAd\JIf P$Pv赒N*+0tF9M.yt<{]j = _qЭZ-J<sAf0 (^x cu?d#& Z$<0Eg|7fQP=-x44md9>YN)$ufHlk $ m. "(_cc[H'wMLr#- HG}srV?ϯsTҰӱFxZ-+ُ˗B E1g6s!@]3ۈOPL*G,RFV;7^DWJ%I2x#W26*oOKwMʱ]u}c` eZb>YȈF g\.=$nCQHpń> 9M qo45Ƚc+P0^l+HG~:+`[E L9gPI0@m//qdzN3*M*P$A *[އSNG_\X"xmg % E H37j!k GDA+9(=X :BWtciFҞAHVnvr*d/}&hIB)Fȝ3-:)sՕнlúxi\k`#T]KS{iY{C?kvi~vԚ!`#fZD }s \+b§~-@D"]@DY"?GN\Ɣ|͙ʻ06ө*XﺙyHJG;r1o95%UR4ng:XI3+a~nQ.H#F "]Eg `F͑Ht*6) ƹ̀VdSq&m`B:jrKq\yJӢ/d+'v:I,\,/Շ"d-q}}ϓ<S ={D^bΈŔdhN'pPKE'y^ zP*"P-?I.0~ Ǿr$*qtm4+A ̥kԠG3l9&w?UZ"xtqsX^4ƮP ݟsLȌp5XzdýO~XƎqME&e G.b+}W`6m1*]$[.Cx*Y`nȼ]ٶDKu{U瓐4RufPPeu6_:dA47ߓ%tS4NAw \׀⟕ötڍ3`"YpI 0!] ~:N;\B3:SqB"A xfy`yxe)Gaz($x$X9y kkl^A`n h)D!“Zϣ%ak)mUNAa)[S(2 ̇yTCN)+N5ǡ\]ɶKimi椕E&*Z WODlſkl .ɳ1 >Z>oh}(Ӡ9 LīvoIv{uB;?ct+">]$IȔ,$rնM5l[ &k'{:J.l%GN6v;3 +sPQ& 92sQ /  .<jn>'҄1ޡ;ӝkJ66F02爘I=;Pe뤱GG%> !}E 񂩧bӧ}^װv[+3OkFeLF5n_~DF? "" тNp^hsjWՋ#TIA? ZbNWj11y"~PtYQ.(ae 1ɦu,M6j-FxxE=n&z<޳*Cdb/EBif/R|澁 82 H{ ϥe$\ 3a-gԣXM y@qD:K$sE/v-MBTXO.A?L&86&ٷ^Ś#O&Z85o@|XZW6>to+mq5P *[J]۳˂\ FJKf$>θ|䊒gSKhIv4Xi@.wcWAwjnDGIӆj+v0l}SOjDO~/>#JF\NS6iH^t I\ Hun`hih=S8I]߆ڴDoi~x(\ 2(/ " 9T_%4` Gy5lɵ? l"e1o8̱g5grh8~00pS} t 0]I要d.頴ڤN8S Vaپt_l |sl&$ 6*$~j]%/ fqN5jVT-=2v¿qIPi9q곡vH&[6v贩7\cr& ϻ$J/xƶԷ_/1#v8Pr0(P UWz_.R$B+"CŠ4zYb_h tV!#1|vMlAz:DN :(B x*-Au`}UNLW~[zݑ]IZ!VaD:2MT#ˀHCnJñBZxq6Diז=p6#M37 5M };KϳoY)Rg+[Z[𶠼;YT.LЎzaGz(&Dqu*aJ0?_rH*c#gP"zܨkSɲ(, ?jkMjn 1a$GUccmx͠IMvoEbE>6r:_2} H'}xiETN3LLyB20~rŊ:^#GJTʞ#nI|-yrvJ +}Yۭ' Sf\Q`&q[".t%=zi8:(  $lU젌ېe|1zԼݼ3N)kg NQ x%>2&&6Bf,(@?94 QqU6MI.1` j]ٳP6#,'vΰ!biY ĝqPE{.?w(TN`[624zc Jc}6?kR[kk+@8]zRԙ[փC2`}zvx?+~}kQQ w{K:R)&Idr$ˆ\::Vtsͷacz; 9vƺ㷈 daTR'1h1t划ꈏO<7FhMtG< {@avzk. G\Ɲ3*dux̣C eŕ-Xr!B=Sm=U+gPosDe"ƫb Y+@RMm؇5o:êTB!;ʳs7t yVm|FhVSD̟wB5*=Z*/#F}ŔO 檂oDK@4Lh2"f/ҌfoI"5? 1CP~$^3 +l}9 w@EO$3oHa/s?U"@ivsDyheEKev/{7`N}A v旸bW(l!+jϡ6 gL&p0AHKF'1Z :NŃ!"33ڒ>OlWP 8uˢ|0V_/M_+g6tKd!Dn+NWa:ݕ+"H;by^w\(Qry_(ͷN<\SSL0@HPrΧe.b|0 BKuugL]*>p'KLeeIU.͡Wr*`*G S/[#ƹ[lzv-$9W_3\62(4=Ɵ2wCn5pT}ƶ5Gj)Pڡ!&s?7ʷqC| s+7 RRZ_sS=YqcqN$": ~?q߽֨|l$) a9}z 9u8a_3e8;our"[S_ v`}fzÖMOdHy,cl_2P^'C?2N\L .0g>RL nb{˟m|{Y&$T9/oސ *S}+pJSOc>yY26Fa=Jމ hZud\@84m)gc~3O"K6 bbxus]t+ۃo$ ]CWoR7cFhkÅwZp0s @x)zUXCcY7!]vpsh'~tyK2=4)X&䑼L =[+꾃gHF26&tp¦me{ڢ5mo3bZ' SQIjL+@:kO >)n/l(xI?!xfJJF-o$@j#՗-y*$Y1O3SݲU]̭D24)$t`3*@<@\wӍڬ'$Vʱ\Xg"$_šjΠqo_)"ֺ#/D`.ANQGbYD뱯  |Wh|$|@fqh9X:;fUU[VΕKl)NDW8{qI?_)FϤFE ȐLY: ˀlR8[uvLꐝOhoV#hqфn X0`*#eS`T.~ i} KՓ_i?wyӬw "vω|7ztWß-ZzOg 8J0ÝCn3tv9N_~i[ i7&K Tslivϛ\Ao XlkAM+9@е;Mt?.Fи4bN[Y+Ar riR23Jbrٱٴv7i^#g!įh.W}KM=D <؈ !eڠݓA%cAZFbJ@)xwAZKgVcZ3Qv (I~>Od3W8Yk0dي6J [o~8n9v37T) ʐ%h 4}t^T @_`oP(<#1F p!RS~.'h0k~.~g\*jUpk%wETetQa+76LViK}j CI?.KϞD]yy h~T97*ZBGKޫzcܥ 0X=[B9TIC*V&(by"9p~AQ lhԴfdzh-dFs;<<:9,CY%7\ßO"CwĶLrO?@yANY3>6Gwtһ-9A0"sݻ Y P8LJٓAމeoaž9Qj4(ȱ~^%Xrmy^ EuQ\mG 3TgL2eNcO/K)M#I佰`"<=9(DZ=w{`0px!Nkf @2Z)4K(0I5?9qrb+!?(uzL=M?ƝbS?ղ]jCKBˈ{^ђrX;oI^_ЮW7#: ⳛ63H GX>o@|w{,#a1hVw|o@v6;@ Phlx/q8)~ 3lKSJƀk@WȀ8k,N:pSaz9j֩$߁se`0^ A{vIO'vp= fgoJہ-O u-I1\fǡP),<.ȣhFd$cif;+hp G XCm]T2 Dq4 ̢ [d x7Q2LeYePs"Z/q2vϨ@UTi:O>h(.I: ı!W,cla1R1CgI`}Ǽ8ezQ4Af@jMvGc#-}s"Mif+2 ud]ڡHH\vy4%&/UD#RZm*ȵh69s$& ٔ,./邔3(a̱+د`>pM{`+u*Sꐄ>42~Yn[y"tgIc%cV ٫w'w:!\}aX/d ;eOh Jf)Z #gt Un35˴}8rd[sx4G2}f5x2y߲7*zy"~'~Vf)9up@ !7\ͿIl:T#H2 qZW^`Tnf A gٔ jx^tuh1?RV,OeAvbj|[*lLKO4O r{h*$&rd'oC0mmhT!)}6>Q;@ j)%d#Ҕʙ4l!RB$b7- ,)XFC3BXB"&Mg Lbme|!y,4 w) Wt+O'^(CS[h}hn2pT%c G,5w8^$ẕ̌3>+4rd>f7C퓥Cw,p^^Z5=lR (p#\E iFr³t]3yIΨMꑑ:|/F[N@,6f0ҡ8\Otl#\<@f-"Օ.oLe6zR^f%OuVZ }SgtZj_f^<iy3^3 1JD*v;Pktzm O[)jq@wT}KlalCk+_ؖK2{qr<$](Rc"O={Uݤfmp2FW,)OO/oB?,mJZ1^*VEaO4[3r:%זب+lڣWʐo#3 @w]^5 פueEjHtK~X,㤵BhO7"E/3Չ_|y, yڱ,WSyWFHW \:FP<1ͳ$g8X=n)0;x a~ȯoT79x9G 8K|v$e.SƷOjSaQ,Vh?aHa v6kѼa`(ثG*2OݝDB6у1+򢚜Oit`fC BW5Tk:j1-GZ_ļ>*%QlL|#h:{tR-(hmo"V `'_ ;ze߈V/lJ-F DN>?"n=\ |Cg`h̾RJG[CƎ%aD AG^~N\afͫp3DoybN%+x$~l*<iħ@nSDSlC_UkH\hPrH*Ff~KrnbA'Q;Y0G- TRMVKʿf ',mGmZ j4[ٟY>'_A,)4o5^eo6nã_:vK$O*KeKy[2kU ,7}0{tn} cv&tQ?ZmJ,’zrr`JygB.ai2 +Rl(KZ['-$xP,H@d؋Wf{dcUx@仯6WW-N"ӽ4z6ˌ{`XrfIVnBw nz mVnxd k}JihIFD OQ1_y Q36 ~̓(K$Q&oc7rw'v 2@N/;<\/JU3L[p\lz貰m+^Z6Amz87N9fIԓM‚}.hf 0BV, 4!0aem~YN.dGZʦP̻W }Xf7謖o<9Լ kN`eڸ- 3A\D__]V r*C[Gcx6L%JݚIpGj>5YVd&~ !=\ wxʈa]ނ4PsڨYr @+6?90#F]-%pA^+[~& OfʤC }n./[YjS$}tCz[閃14{%S8\ߤWZ@)Z]ԗ-%E=\-_"}b.[? g5@ecJyA0Dg(bʶI{R LK^[Ϝ/hqU_ؘjW_CBJ&cLZ k[,cI,sK`^9'~'qzJ| ZAa~&^28;_n2Km*RAkTh_KsM@ "7ã9szQ1 rm:pB<`p )WP\WO}(ΰjmY MX 08@Znaxޅe2Zmɀ=26(&o-46S,` C0b\.QLј`ٍU*֧.x[2:U ~hLMDW5C?i[5 %+:-&,> uؘ$x[24J75h ^]_HvO+gb"r 3<|^Aug?C •я? f_%W:NE(/d Rk\~ÛJD5l #r傃?T$;-$Lq,* }|!p<]V)Bŷ)WUE+,r{RW-*0B@;,(&QX4!yQ}'"pnTwKa CՖ Ckm6\R`^Jd[")rSWš)K(b މ15 ^n&Eql1O͝0suȻXW8Ulr`hCw?ŋ)mVrC#[6Sv%l!Ě8brM0atb;Ir=DEݰHw>!MCλ}f h?%8sK:llXɂv׵f (A!@?ks P\E ;$݂`mOeTcH}k7{ 'RsD !z8ZБ+@Pd14;<AJT AoAa(ƛ̬sOɋMicl6PQSzJ}+!jqKt0T׻&4M]oOʀ~9\CSTcM\QdcH$I{l;5/'1WrE >%,=jSA[˿aM/&d$4Y I^P~R%+ifEo>wblCF6}0򢣞֓!;|"2P@G щjKJ \ 9NMpO&')zxnHtc-^gL䐔BxQv @>(1{ކi@v6ԋPHzm"MJ ؼ2 r,)}&A@ՊYrK:M%VٜW:B8j,uU&҃5g  tı6_̫K'5 <6_O3'{{Mz3wSy:W,32>"-3 ZꂨVocV4GW㳛/絉cFyD Sȯzx*&3ndp_aV}sռ>#эMuYĶ,7F 2vl+GAշ /REZĜ|vS*'E>4& BDB0eRhaG: 9V%6ϛs* PHp k@bKLBNe'oQ6vK~]/uĤwڰܧ!{ZKw|\k<%Z^3bMVV ㇎L"M?[@,ϊ1ڛRޣtmrϬ"2TmPAxz(ܼ?0a*h.Hhyvl8֨r#lYf@"agGVYnN1ݜҍrO #K)[b̈́tՂ[&=1ebQI:UӼؤ~V~twN Ti^^wk5K5xѦtgХbzS2$ = SoTҶ\2?F/f_i'PS`}(=-Y?1-dÚ RxWe{v@Kߡ7nu9Ho=Zׂ)l,f?w)vgn0;+M;ps2lO@Wv<8.B[E_*Bh V|`@bFcQ1\ I>-RC`_f:ːYE#OYQW t5UVRq2Q$ 'z˒C}rHyy!G]b yEJXY]ٓ*lo`J=ݱ|rX1 w֘ |o*tThĠ}UG9 \.PsPv(9T>#fgFY[; tF{l.J9cY֭2yUk$N"J6t>L|-yHuJ0I 7N ZŀM1"f؋"ʮU4Ԓj&oV>ethT-BVV6HVin2*qҿ65Sf24.^V ϻ~-><I}+WF)AV3Hi Ur 9w,#ʡ.UEbqV}g4ޞ8l h $Fc #jTj'1NyJ?@' +&fEj? EA_>ޕ+& +8!O^PYgd{yٱMH3sUɰe143,@yת'x ],o1sϜ p* ?zQB2 tD5xYAy}SeVRDB%'ooY$ s!e?ԍG}]Z_aĵE3'.6-XMssq$kűfTCtl0W@TKgC,xr@ü#OJpّԹ65 %QADf%5`CX3=͏ DY?ɂJCvtc^LRMGci$ҀUyjQ(ɳHȸ5`*|$U\#;2B@?yKaGU6uqupCd3c)E<<ę.8=,j6ܢɒ4zPZ5?/#G,NSnTW\]54l8g77ӦEo ?UW1Η@&S""Vf: l`2 7 .`,JCXmP$Įl*^)lγZcY^FEKcۤ~mԉPAk]v Sa p^pdT AO!wl]D[BV)\38Z@SsKl|fs86[8Lo~O=-vi\8sp!*8E? nZp4Tׂ˰fsDb1u`vk\K% 0!8*@hޫ*e a'%# E7u$b7-OXF-9nU[# Z-4Fh^Ƽ&o6%K kI஽6iHSH[}RT5~S '1p|8L}B_ScSҐS񋃐[GNw{N`T+&LcU!%]0A|0ݕ(h|A6@;5s͊6`Iv$[+"͎NK'*FLjUxbSj2~XK&&E1a'2ܺ/r&.)?= OEmkBi9|<݀SP!gΠpD|RZc 9@y#b$F!\fu$v?ՒۿHZ߁f@?|fF)r*kyҿWz~La*t$kE*FqnGCOӎKY5ytm&Ⱥ/-!ʾU|Y,40 A{<4%M3̔@Dhɍ-cP$Lshٱ9@Tk|i5E=NDa*Hzr?)J~mŘQ< BwA~ %/=i[t#Y\^ef Vz2vWr=jF@!evN[RIbҢϽB&>Vk%ʺE9^zOՙH^gĬ(Yc \>'VE)}U4.t,& Nz<"|"'?Jkk>Wl(3\i2(*M6Lk_1՗cn#y4y@p辯} Jv*AX4cNhzė#YϬ;@uJqdB0m A'*u?eu FsYIVKp(-I\7TWsߏ?P!&H<ӿ.(|_M݅%R-ߍ[-ꒈ·kMս ]$>(z3ʔ^%I1V™NHb yM3Q I4+sG Pc%'>|bl WK4g&?JLB3X=:ɐ/58E .Z78l+)&.G]"4&fʌPe2@^.dsۜ{aΔ_J {b$ ^^gT<ՙs"`'ʀ1\*&d{LjzҿTD(ܯbsEH"uYG'.'2N 8BI \vh`(r9-qYmX1] U`yy7tV5O|Tx8zxz+=1i*LkN޸{\' @tHt6/H9 zV8J5n*u]o7Цx!k|940z@E;[ɛ> );FRX1R|)vjR7<0L<? QH /ۿuc' zcAS1 ]3)1zn:[ ˱5el~z_AZ*$&Ù;k'cp9>loR?bZW{ 2K9EUPtК?4.I;6o?c`8F AtG"Cǒҵ<d$s$i0}2 %"8= 5%7O \s+BA[;gN^2L8ܫ{ؐd\dOg9/@,̮'fq ZyCQ?8P-Ot3^A"~ $4e% EGW\ms?QCɌۭm*/)7׉6vHr޳_ZS5[^̙g U[0ϗu%XZ5S4-8!# 6RcZކXU ,gR j׍Y0/I/h%<{A wQCҖEk_g'sWTnA;߅{uÁ7ʑܭ.+ ~k=AW߱BդLa1liau }pVօVze:k{drӗ7иcw[\܉91/}?& _>$faw<(/0KS23ZΧSj.YPB_ݍm8cla3TQK?2ՋvWԟP*f,Hޏc. 0U[a^;~)x+VVdSpםlD "voİIlJ:kHl8?k+a vNEMP#8aj[CJvɻ$ eKWt"dYd Cc`%vEh`nw5d~? q5C" XZ lЂt웴s0I6akcOՔWn'޻2RtwY<UNœZRBFv\䓣-vҺR"[X9q ?VP߂K=BHI%G ]ŖJTx tLOF^7ywێܲbv*>2)CzR~U?!@i g%΄;w#sCrZqQw\ ~lYc9{`C\rŞm\]p 82^ɽ-r-QX.\L(@j? Q(B.ӈeU6t\t@~fVN/6WENx0]a#"V vEqq6=mIۚIyIg#І}a6!&4TsZ|Vk-'Vf*Ny0{ЁK+8u8Ry`q ˴WÊJSTbpȄ9|UP- dR*4 Z|6D%4[G+3Rde׻+qC.RxA.tY+Ll~4upgsO N5>,!Ζ=y9Zʨ%Wgmΐ5#Kt9ofR J B"J*xWj.(G`YK<&N%zpwZӾQv%CO)Ⰴ ^ĩDΧ0A',fп,h\3T4 }*.ap672-K<"qW0C>|cY~^c@i*gŜXF2 3ΔStU<ʍ0a@p&k3[{N[- <+יR䘖B.|eٻA(Ϋ>` s[uhꀟ!Zl|m*NMUk$ xS?"~ 5nf[n}^UUmW;TZЮ3\LCηmL_JfC!N, ej#9|L#'q2F?A;J-%Q=:$D0!h*'`ϖSeLniZ}Pgkwu!\ަ:s|# k,!--61UZڬXPJ2a=Ny[~H0Īusьο"+970Bg$LPSNX( b;@]t7Zu"2e  x6-N|FQN,5$dFgSyTZ}0N`ae^zXKZz-߇l4bVƈ=VtIcVv>&بFlQͲ?Qbmz]S)%o$f0H#+3|f{"ݞ Y/i$3ٝ g\)SS9*0vdK})L}oB?*+S6 SCNz'w&G0ݨ1 3c4*S ND1Vɑz⍓!g&38,oj3?f4}  P־=!y ?b8XwJ@׸8ZLfJzר5JՅNt8Z,ئ$XvZ7WCq&زotBKcᢵ]HҒ6e-.T,`->ս"Skce/k9x!L)-6nN&(Z8' N`Hs߇v2˗&q- ok \?†l"^rƁ\5,)2 Է! XX#O "^8L,9bԫ쵯 $ܖ@K_pp,*Bi]Z]̇[xIWлQ1փLu)''g#U+k8VL -ˆg/PY~sC? q/Q_˱P?@H/ |^,WBˌܒۓd#;2wGt #ݯA5"@9&g|6o?x1gXM69q6DPsg%kQz婽^:HQvppiK7q//*^"[X:OOP'7Z8C᧶TŢc2ITy.⻡ɻ*4d"$wwsz(/ivu)1B'0#I/䴿1A iu#Wy}" X^pzk#tH6=F:tJ>X2Zq1/{0RPb(3_Wˍ>&E[lTk*tx{-`[d=!-[X I)s%$6|Qz`hm{G5yCΪcH;Y #_|Qbo0xqXʙp6MA7 f :F0Fqɹ12ͼQ'gI.7#'qMe\-)Svm^N_Lq<1o'վ er;F[N[ǘ?w%"duqng 6 vyp'4:??JjO(Dž`CA5<0?cr3}cr.wr/FmID˚f`Ef_dy V;EYO3Q>dcZYnBR.Y^ZG}"B΍i8e3狡_VRhtWYTRpku.g_M_rk`tP?b4g6;]O #WrulR("Ufcoj1nSҾ~UG/8pd5Np߲$CQ wqkKKy``c0Q%A.BV[s£fA#vQU3lNݤ:mh_{\zL99 f*?VKl ihG3 ,ucҎvE# o\,9V'<:cj_?gD9FƩp%NO17y#בcK;CNtG83%5= qf܄[%|G.hSx_T Q]73l?5]1O3m6ƘF1py /^#>ӧEYԈ0vlBy;Z3"J 7Oij PasSI5xA)^#>pDojCΚ~̃ &Q͓~(|[nM BO[9$g|5\29(?Y" ޣ \"ޫ >]y ˅z7Lv1B/p6dPVuEzw)nZCᒜN[؍)Ch%'f?_ 0*E5-ܦܢ@a9~ltxҶVW_ YFPXIRSg:6ai@/o3` j) j@GUVPh낪|UwQ,*][(A40x2#1 xB1kչܪ1,XxV{}ncSV> sKp'7*G~Y673fq `&NלSԵg@ŵ_4= + L{v䇆L(QWcUG;c^8.|0b8 k%T0OV'Vk`(×soPFtw䉜LV'tOP+cQ+8|xu?{u)UU\ ML/[+|b|>t&'of6)~*:mc \C񲫳[n >\Cr=t{&ryc] F8tz]k?qeD'lObKj 7pK1S{W'? G(Tӹ85:9f5Y>bI!$ڒXع p|UЀveO실.,V.coZb $\a%<F5zڸεP5*8mMLφ *ֲu7&Qf m ӭ  *x!u,x]Zi]Co'ѣEZIm')O^9IvPJN0h͍qOWfJKcGIdHqa֚־'lgĥZOn[>휰|NG ܐ5jzDMLNo] ω"2MѤo7=Sи#{22<]6BO* +zaI!qnr YL`@_C;܌؟u۰S|21)[*zR8^IRGU׌z۪8G[%E߆rK F+Xw4.Jx{MkN{ |gŗLŀXfbߖuE _Wqx@,//u\;)Z!w'B.NNmq4-/!ůO vG1GL.BG<47ۻH,gu|% |_;sJ( 0DS '|*)i[Э`EVyɓ\ E qY)yۅ]U< k06<째鋁IAGLbP"u,dhK,x{jrrLZIhKkg H9ڠ J]+0,`4B0U{opyTj{^7{)F3 $14ڎ/˙ 3M`KprK%eDIBW"轶#|Eq^+h̏W"i᛫=9u3ZrD$p`T5O}( kvGdruGftA5T8u4Edx2r33ʵJ62!Q ؔQaЃ Dӗ 澢MP5\g萯^JgmVlsaW#й9ܰ& g9,ƃ>煈QS=:x,Ǐ_ G<^4V@AKg O& X%NC(- @({zA=ȫ +(On )qc$}v>sWqx7U}`="CNď/~ )9fh\ AtnUV&A%SaE[2RWANS⤍{;K3Tls| ?VXed-yiLCSG]3h.9tJA@DcޛpU/M5#zT}gJÑwz1B~z9sÀ]'?U|rEowQFܟr2;@\Wp7E1JNjDN\N;vP'{?\n}.ڳw>lb+G rۼ- NmG{Ju6P1GsƂ!q^+UY3idgzd]tigvLya5XfE AB 5fUöY'ғ:,8Xnդ|plL]ܑC)4]8diB2L]P E?(l:`a"uն^:mdN ρ" ڥG^S']/@GYGͅ!T t$Zb (%;i(;Q# qam>I8?zz oH@pE8u'!<]d(T7p \˔AV@Ahvv|z N{AP efuJ;.aMPKB>-"%5v+j((ޭ󊢗D"@ɀ"<@ot #ў+l3PYabΡCngrS&f wdr;7٥kă2*G&!`b2`vH4G`F?|?^YȨ؅0lFCZi,cI!c]'φq6=H4cԻ7݂ siԣ Dz7CB+hO-FsgԁIܑJ;$[Px2-T:i); )| a2@3#CANr~>p!tt~3`/GQp8ud#`{1*]ji)H4BfMv/dԃAO{SFIcXM7duSIub@$1!1E΁ t.6fЖ4PJA^++tR|}}}dRUS8 z왇Xh5$ Be52JM.jqĿOt1~%4$tķhcA<15ʾPQ|ע *(>1**ֳF);/Сq͉wLPvmK:WFdX|(D&u9L<7 T.~:ҝnzL}SbL t@][-Jk2YrFqf'{C記"ZK|Zh}z)T 0O=/ a]5BWzP4T#6pHcZ&.Y8"vv= ja/`;n*~Y?>nO0mqMvӹl.s80V%}ue Ёl81u/: ˄V%ptYkCIl+9poP كϠ}xk'#4 NaކI8$Xy::[8=>Ƥ@!ߑP[# ~Cu^M7`\V3XP.4_yMH3x`!=D`G(Zs}W@D~P1<$lY>Rce ,qdʡ!NHpS"w5aY~j 0*4DH@h^\ee!ڋmI ~(7Խ#mkIGPP{-_76fElM#%5[q,MhLψ%/\#ɳ rdxG&n^h[S/ӡbThLм($k#AS$}Գ*^.fv28/E0j~Hq)pǂ=f6,xy@`?1Zi e+ \][f룃[[Ȝ8z#`­P:J)ІU([1/4}y˾@æA96ע:Ba^Rw&Z $~>zgE}e,VuA_r OFI%j+9sUZT=]wǑU-ϑzcFsN&L7:7dU;{eӶ/Kpq@@ck~:zTͬhFK 0OQ IFmM,%W: ?^MߛUfnD>HRpq4JYPC\J,An<$!nbW䌠l@R=}*05bU58ۍMAas.2-f)|7CHAw i$h4,!Zj2RA>LUk/Q,hTUӵxSBF,a,`X>J0`dH֑dW¯Pb 8c隫ǕnT/HV{A~:Y4Nj T-#C1g?(`lP" -炕#fɠ;!ĄݙsėI%ƒAٯmf='u6S' x7tVͷzN_{Gcq&Yg%4|2#gPݚ׸TMS0NQ$0PU $ܓ"̥J?k֡[O(-S#f-R,H0vAS <>RкY.FnU w=bW 7Ժ>pxArû+WD Њ76rO3"La r xYJP! SwV? YCΪgh8;3@Y+dFdLp b<w!0DO}խ9636:3EJfW6bRrWzʐ:P}4;O>UbQ̃Sc4 ]PXbرH B+boPh-~Q*æDuYbT|eXT7sF7G@e7RS5rk1 G{؝$ːJ89 XΥ9ǓtyIM.wm!Iˆcԇ 'ww `0`wƎjEr|zhWi):K \^M:L42IMuo)OT gOݦY>Զvg3.ЪFVBqdԼJndiK)=#W:'5ISbAgaj3ar%\8~˞!)q"H a?e^k էt&[Te]E|Hy͎(X#/$/K.p)>LNxxO~l2-q"=Ob"Z/1 xt3 5$#Ńmi5z"qm+WfUT_[d8H~)_W<}N)tnI*pkpk$F b7g+ '2ϲcfWux|M#5XҮM_ a=J] :?zHxŎYlٽ~L4݊mA8kfًc_3Ŝ=*s6ocآ+z:f]X~b+~=b(x$K"Vub X할(Su$r'ax0?L$!D%k(U_ՠ.u:={:J1;Qiƾbh΍8ضSBmDb[;^N $3fD8~eWW{]}#u˜6(5f h"$S& ,׻2ĵ>^P}:moM,Z miD}S)McZFKTgs{>B>sih)qH#V#X_A s-4Я2s-\{p56 l5o>1{S0J}N{s_\ٚ;$++-Ko .0LPXdG*ݪ6)/}QNe?Gh)(lإ?BChOv)0_ǝRlsLtquRUKe[^cdw.~}UuVAh;ՌgWV82lޙG'Yr+IgTtD?>Bۅַ\ 0b2Z(O _.;2+dw %kYӡ|6υ}̺ ǝIJesZShOK`q,M& NUVWv]"go }}Y6X+Pi-[<:~`\CU+]gJ,Kgp<˟o1K5Lh{~xXf hha33OXH+/SW$"&.JKjS %1q g!5k8wt]ғtT~[׷|X4etY(Jjb5=xu)QQ;ْN;HjXXr>q[S"J3B1l|Gv)RVI1džY)Lj{2?qGqZhL?tlgd< nQVlԘŬNStP} C,H>v3"Hu}?±'z;y/=LF`N1/ .5>e^E^px5,JQ zҲvJ)hw(@ o~9 |~~Q\IP٩Y5tJ_WK1rV!ssLm3o-lid@ڥ^>/(f|WE1o݅KfI"zl߃ _{BJxr ?RS!8dR}غFޔNM.f`f3 kQպ'WGLƇs5[v(/s^3.ˀ^o!Va8znPN\\ 󾷆+UB\FqGGm-0x ?h~Zmu+C0W)0xl֗5b5NBBF̲,{o d gN+D.KC v Oq)S֐ UO9:]{y1Z#̎N!=3 9qӨMm,Qo>Ih;#wS/R/*ntS!qg7cȅd_I;@\-6Aa4 p1弄05-@GUv3Rh -D=CBV>|Yo<&!'J&`ԲnnGڿecI^ sEp2^;vテ=D}>E;n eq9>J~ñ}HC2WTȳn%B,hnK {ʦ=TF\oOtIV9LGe:6t fݙ!B<%no-84.N!`;3?ʋD>]R@t+Щֈ2w{҉sMD a;vι3!Ped3(־qP!W΄vAU8jd&fz嫑1ǴBr+\:1<Yd~ s谕RcyRrmCy2 5hٗ=*իxcz ěa~%꯯S}ql0-͓!뀄D'] &4~sf O 51is ِB pAE( 5r(GIo5IJ^a Ty.J*ZC͘ (ͪ?Bc*ʡc,S!h>׳+&to a^Tp%ӽH7Kw Af*_̶lD KBI1 GC孀:yT]~0×I151=43"* {\'c>!7N`*h:r8zs~pPv2ؗC1Qo,S-w- {a0><}y[#a}t[Ь6sS?5r||'3nyZ!5P 2# */kp:A.,[u^8#"+HIt'm0DdԺ^4!Y#._/$ކ>fμgI.۩r*ߨ|QKм3= Ume wٌ3d;<ŝ,{T`1$\!}#G%6AuEYԀZ~'eJ#7 .QvCQrds ex()dM01# cwHXAc5A]@l'"PIw6B&"Ս WDDx#:Ld슗jF$PjJhY _}?e!fU'Eden6v0~\( k4 4Dp`r_THD=A+@ "btS:??(:BVXun*r8Y.'u_.8b+@(_]DQpե^]bA/Bb^ϿZ!S Y: 'dulMZbA)(R%å)׊ApDhx20(k5l! Iia..moiԃmӥjp1cvfؕH(4z̖Qb%g6=I,ovџVldۍXT]En\ŀ%!mu}&/캭}1̕m^''mQ H5BsąNqnW$z{P"7(r/<*#\Η}ce۝zլIcMg.%&fX!͎u6UC3m?5I7'~xi5D|a?M [ :DZֿ~a}UړF^_J0\}'#- 1̗ŃES*4λ^ @LVsCNXV^P#פr9(D33#:zδ,FK@~+Uy *v7[\m%}6P`c@HHHQ&oZZ++8rQ](r>E3DW2E$!hלغhs?*-&۶,5?6 e#ud a/Z䘡XgIB>G#7&vB D  !v-d;6ۿ(+ܰmEw{utP)B^qnl4>{w5SYۡG+il^;XREPXUn#'YCS/pq9474˝YJ:In-!2ݨaz7ӭkFќs+;?XªpOz}hsZx[- e_rhsPB)$%Ɗv.>BEPkb=A:S`1؜%ۦZedvS^\ʡz0t %9\A9!L9}Z>-b\J:|!U}-}qGd>||BQ?t}bGi*,Q]0&  ~((hMIP /=-A L6 M) ;#QXbN i&۷seV[@w H^! O:-A#m0~?RQ!; ]RE8Sm8x+)˩ڈа::2ۃ-w167 /ˆ>%mm5`Q蟶}/-jm6չyw~Zn(g! {D\S_1]d˸ J&o~NN:#]t_%92Z#5_Q| !AS¿};|9>׏Th?,A09֭#Af}@ђ!+2& >ҿI[ra&x(6 lb' WG(yvcf0(Ȗ]'| yu5)]NIhpI)SR[ʈ+o+U4vu{eHh@ar0on7~ _\:_S^e Rk[ʣ+wExDvTCU ;͌z(i⺅?~P z)/0 knCFB(hdžzQ2ـ@q ĴNpB Ь^(Rgo#vCKd]G_ R   mYe{<)R.R}yQkͪ.{NH;]ҥl/Ʊӳ.Pl-m&w *tDb6%5W(.k]1gD4VA=Ey ǎ+EWLrSt]+ YjNL/aOd% "ȡȬG/2%6e;U)ͨ$_:RƠkף9c6I3Qd3~cI 캳W, J`uG_"j0ݿ*娥!k}HU>bK&ԑYxőL8F;,W>Puik/J1f-5f|׋e,#CJ~6 0p"g)u$A0ì; ܳ[Z_0S$8 zm"w 1\\z #g`cZ B0#-^`zB&4qO2Kh0?*5< CNeO~`+ U J蚶[%چ*+bpi20BC>'|w!EeThɚD`+ܕ>fаր~ڄ31d8^OQ\mp'UO DmOޤCBq=x&{OGwᅱ%,5~k>NHX1BC<"EG ՀǖT] ?m9"G?Wٲ+@bD=h Ӟrvϲ5f@~R!(-hߜjQӡsJݶzJ(yitHMX2LnҦ+V w@|S;1PW02.A4:Bsq;Vh 70(ț˵Zrî>7%cS͹ҧ7FS%]:UPHfԷW>VA}%rwpZ_|*E,hgno$fl>xF_틶|qlA~!"0VO\3#tACU٩P$PySBs''c{nivS|9F̨E?d9 lRnJnj<+e~x603?y@^;nv Q*ϵ3/Eih(uD^MٹBƩM!lBaVlIBe*40"&oAϯN5 H GO 'hl0@gJĪy4ӤR4z>G>|N`*w;Bd؛h ]X*k96aލ6eBGlǢw.I%R UKZ5O8 *r4iAZVDog겾Hwh*,zf@ ra ,V~E$9~9Ӥ m9 6zVWt/5APU=E,f  ̟$IN"1-h g i 0ǫ)'l';ʢ;A z"?Y Ha*䊷;B|kRcBE=\`PPXͧYv:>JŨ D5cΏ$'6c H>b BTlSfYe}_MҢjWAv_szJ Fv0գ[ֵw4)GmE2Jɂ3)e"bW7€\[ iF Ekɫt1=q3!ĊtUԾ-OWBx@އ@"cCGy`??wVj$Ej_`#ܺA*ETAۖLV K5RNUP.YqDI }糱t4XJ?oŜlԆ"OںH8hVr#gκ5\zcr s0³\dM84'0t/Y.wQ%ciϹۖ"6RD̲Zk?G`"%o!j}k1~ָk64%Exuz(8婥/H{Ap×Qcxœlg9g/1 ?r2 +YJ>CXyMcqBa~Nsi5v [m?Rώ} .)M;0H1ZwwWg1q7+MT|ZĪ օ,}D#cG-!Q(S Q@l]4ivڱpJɿdN ҚM|*'7uXSҾQ ~7lcmS+P:ibvg~rEvtQH>pvI#d$09+nR'C%Kj^^kj{:Հ"lW@$iwy쉍7A)=qD:oshzq &~ |:*e1X4;!XIlr6"f}nE8<2H$]z TQ$mbbk0DN0L#Hj{lk{`ccUF#_,C>4xo<ԫJΤ~&eH!]$vbP8(oXV |]f"!O=~=='jwjc`lꎛJxڊ\(1k4"-xOAHRq.KsO~:Q0d}eLOMPKmk(1FϡkLa ޴>!$@RDd9!}2~ߎʝ*r K?5ubFja`$cjqGkrpɃ$PQ UeXs!u)%x#>S~-Sb<㌕bCZtۧ YE=i,2ktţ+3!(zZ6f1Un~5 91ۓ[Z;}tA̶ xc^icqic}rˠ YCar/HH%;5PlBzQ}Q[3]wh eCB:㦔ɸuc;X[_ɭjC3Dn&p:8 *`N3PkO%Jɬ>l.j~/⁜ct̉On`=4A l6 q]dwIl LXMf)c\ۅ(P,y 08N`hm؉έ~\F]ׇy:6!#&=%]"-ҏwo1fp 󋷆b\ @66 Đ&0Y:1j$0Sw:?l f'A)juS\<2K!AdWCIfz2(^"7~V 1wQ 2r2N|h"޽m2S|u '=nG6mnYeHgU5ܠN&#ڕKڈ輲‘ 1ݺ;lªn!j4VZXX ޳/.VR^%哽cܴnPIX/5Yñsh!c )Xxqi^\IDT,. ķxa`Wp(>VS %<ĥSFŘ%3OM_\ Ph:G{Z6 sM >C6Qȋ%gL8{0^E9U*"=eV|!߉Fbl  :BwIw;$Ð5@1elKIbيgfͬzٸ {yg=H)Ř4ɮnqQ=o[=׫_'|KӴPtCɑ{i9Bfk b@U:[gIvv͏SDϗTuɼ6zR9C'50Q }5[t}_?jdy,jW TXdE,r.fa*Q/c]/6r'zǍrWs)>egcw%6VW q5O7ZKI:ڏt (=-ԁnܽ(4{##Ta%Sbd*HK!#sDW1|+4>xT46燠kKy/S TPk{ P7u"XX6C~V*I9a="6InKHvw= cd_=O#R1wp)/w5zGzeϘ\6J2x:ϽZ则dqx'R6T2gƤU8 Nzy^('6QJ^adMnSx-jF{ط%F(ʙk*Q_*P؃KΙ#s]G nv,uTݭa[ &1_B ;m1X$M3M,-_څхh8PЫ[VV^NCt"tD1;r4 Bʥ`T#!F @1jX'Ov;hWz3$nɖ@3J⶚zn_c>M/zPsɿONaWem ffDIz ׋PWP*g~gܐ ulӡP"0=w]+]cu3?[wg (hV{#dz1A`_ VUFWs[쮷(ekY=ӠkEzqQÝ__ @p T ?yaPYqns%u.moos;]C"W9Ę3e2AVy9ug⾺uO%bB!]BI BqIo ֹ w&=,ש"Z.TpAg=:5S { &F3Tuc|{h,u쐜ZLèzwHBe"[d3k'SˡKY HM駸~i%h}g7XeAҐ73|vv ؏Ai}?vQ&ϫ0 jTL8S{Zy;Lܿ2G;Tmt8QWy(NpK)MlPi>ShӦW"Z17.7z:dڠGb\~ܧy!{X.oy%OQ3i94tWW>g}ܗ.k7f )(-i![XB+]HF5Lx}|1[3u6z Zȳ mslpmE$UhQIl^ZnJ;XxF JlV=qTcj9BlT5A$hSZ@T4݊x|"^ts)D=Sg蔈1Ϗȩ^u6 ~]zQpMT2z(Frڋ&}B!of9[gSt$,Cdun(mhGՇ ėS 㗬JF BBS5$Bw{wPAG"82TKmٹ@. [^*_yN],t: r#NCVr|4(P$f"?|G =P )1P`y|y{+ҋɹiz4rVZ=3DS4~Hw=N8@rD{VLN7iuΊApF:UjRհ1,mWɂ~ tT,R?wd+ʏE}#CsGAJsZikecUbA}L@J>[NR'TO T[2(\KUW6< |:N 9R4 nvU3]|A4A%2RsΟ)z"hh [02#g`&&i 6 g ۞۲/EQ@W )Yf I =ik(sxtOjtgq+DBlZDžiָe gmxh?8EkFbZg \%Wܖ{cway/^  ,GvpMP{FR/CovO]b݃3̍ށ3 ?MyP}CA :u"HEf\\K+37w/WvL{$7Yhl}\hXPWcҹUؙk /[.P%hn!ܮF*DןnLH^H uFW#^!5L9RA^APw@_@DL$@39}^ motfV(KgrS5rOfh3zDT+f0!Z9ѿ_@̃<0nkWk_nLu*:6%[.ɉ" mDZ}{ *TP|i&%'@7wF~TAŀ*K6)H”@$|BO:FTooO̟ Q3Ob'*~5d"I4"2LC90#Ygf<S욐縊7TLݛ{] E‡[+M<]o{ `:ujeZŧ>dU ??L1IjP$%Yև 2z~cHv(:q=,\Y3$`L r b̞۟YZ -G#bռXY+5R<譡y-sM4? D_𪼓ʾI@gcM'pFM$ dxn(׈HFe<ɴj;`T >cvmA.3ڮznLL*yPYW]cgg+V-`SEӶKڒƥH=*k[}Dfss.>jEAaLٖCP[dBsbqEg(r$"f\hYFE`h[#A=Bk\|61ig9p] ' ,n^Z]!pzhp+YԄ]egVl N?'nPb *c3r* JJ]O0.LQeupDۍ3,rKln>zU3(d4/S KepOW":6ҵ= Kߒza *[c6:˝2n%@sEm,{d\kF"^Zu =X/-Epabd3p4#̝wf6;N |a?݀3wxS ~t]L#fM2uMtͮIOw\(*9֨<g'!/qn:7.Rq&c Z۽9Yi=;oĥg-{ᄸ!n{x߅{3;|A#NoԘ-a0؂+.WSJJv~+ B#b rrѽzjz>4q$>^qnʐ̛ -$3~3[z2ey9^/s'ns$7T"PDwu# WYbvl~PG^힑2(rݳ~Pa(y;唚 A1=%A^(Vݮݝ*񒰒 7M?)t9H.^Okd'I.{\]TmBXQLT)D#. 6"+ @q˧|qglPhEpEA&Neq ՎsLĕXami٭rU;>68!sZ=փ!R~2_(e}I*L'eBO{ 1Y\Wqx1"oR9TдHޫnb|0R +eUャoeff-!oZ_x&DO蜫 ߓGΟ1.ڒOI*ȶyʣoik^*qn#̄~UFIk T{< nfcү "mDp~Xx6>^GָVlj2љ.뿫@WТ*rYژ7&v=!M2Xe[Eb@Nh%w>)AZ}(+@b2KSozDㅙx℮{XPUwNoSpD3,顺PQ{P }ty&to&O/q-^83y =m:OjCY\]d@q-q{dvSo㳷(TAּFV'3MrTGѫe܅&f8!cIŀ! 0mqg3!\4NEձ`"7-ݩ$1Ou.2`H.jKY `}Z~pobFnҞz)dĚw ݼ0}*s4!p8suίWv9zg:v|P{#39.gx&Ycz"ɩD IT@Qh>f tm*)1y2^. ފCY-MQ)~/NO^z\_]O16zc[Γ}ڞŅ^NRȒ8X77Ï$BNMQTB)j9 sbc'B6+L㩶0&*E2 \Yf>"t= 9Sx #/t_ۜ}-IfrN}3AG0PLJbwk>u$"mbɆ_b% x2qbOqh &]^>S@d.Z #6WX &ZAR;MH wI-{+pnP^DAC.Z=rPUXϤ[ N&u:ڳjYb\B% 'F ɒA#<kxvs9R508!"qFs@,P&2bkXV:ȯy)!o%P M:qQIײ0)-m =~/A=Wƭ"jI^xEXt9,_jv߮z.๪@b_=0I9 &ضn3h~ivT >?^vS? { ]BK7kthj7dr[5t~Θ[/sWTo˷?[C"3&45K]6ɘ7RsCDbɥj/PwT)R_^A%̯)?J~uL*"`Ӳ/Q\K>J\xXRɿ;AMKLf"0v ΅x 9A%"$^ Mwh%Ab&2JvYN^1& JѷA3"/z$RsԿX^>]]`ϤզltOj&DWu3z#X-X鷯#:dR:]g!fM_ פ[2lnj 4)^LG#B)(2фV1ps fK 헴K~9;zHMI"xO=̾yrހMIs|v%nLۑ}I+/X.PV.%#Cȃ,Oha @ h]<.=#*S\AWOh h%3~N_8ӳ0шHYŒ16kC:]k`q*׀$H$\2VA[!lG!lUqYg7 c\VžNR 9qt\J̫3J_b^9BblS¹5|3v/;\"b%#OI<)Ш|#x SI ח-[lkm2NCluD L{Z]6(j+@QA>aPq}p޾Ƿvbri `pnlqNB?Vm\u5%;_3wnBPXw߽-pw!yBjJv|m!$̐8[g*85řiqwhH0>}"qA$wVu;aF.LerQ_>4(nWL[giZ]7ô]V·AUAW!ўs>KorЛ4Omslьzìq*1ʲpQuf9IVU jO" :@jg[Sj ò IƤi:RvwȻ0DT hV$ OYw 5RQ[#ˑƓߔa&I~IU%jNΦ:yҦAh[]ًZ{?J <+QAVk~Uń8Yޠc <V ~ں;rK/'#QTqbz.I4Ea00`ɄN%T/Vr&Y#܇XH5BK'bC"I}lUݒ̐gT[@.*Z2tgNEg'HUDګ9"H Ϭ$JGZ4 "2HO%̏PH.0v5?ý IvkDrwl(|-ٳ|ew X}L*S3V*M]zj"6:mP>FjSRwIM~G>Z^g;O}A."ReP}06%tL+׋VYL)!>ĞHVĮx o>q"Dëӿm5!ؗhnOTgт!&TMϥOXURstXYKvW>8V9 ׁV;Fl".y@0E$ /"1VA팴gk͏_럟=ck2%䛛ɐJ6Κ탄ڢf.Q4idkI٧yLr=M IMwt <̓;rEv.If= +x:Ծ]# ъLs?TR00gV IӌhE;OuW_{k:RE~>TNCO6;ҫsBkwU\?;#ށ'zRك; ߽4bNDծ[c).e+˯2L ԐpfZvw3y^=gDdAm*}hFqRmBU+B%7NIqgR"r&i=@HF܉ZG糄L«=XmOu 6u2AA!+;T(,$/]l4$oInQd_=1gńX݅| bǢoVHk|5 :ךm/e6n*Hde^H='֔e;J !c!5i&fBz]/LʄS|Fȳ}i#~_:w[Ai{,Lq|Ŕ!BMѷo(:>$B N>l>O$k,lh>ͤ !xDOU57Mȋ@%ETweK]t7DǮ86mq>zA%Xm]ۇqٟ݅1aQ h(2uB 2 y_hNЬVW.Ԋh OCP ye6ya5J>Hk6nkԺi+s1,sgG"n滊>2K{tcPγ!g ~i:3Q [ɎT )ƞҩLo73g2bD4f)O1/<K@?Fҿ.![{è;z( KQv}a(@,wE8(@HۼoS ijbQ֊¡J\̶Rw`L 2>C#Б -޶ nXZ:4m%N[VZ^J:S[)^ &N2?ְx]{2VOވ{ʓ]c?cj% B5b`M"\o]B`-.IHoVk;nO}}Nmi,DRHG%Coz&F oe$W?> V&S:1;d wskĝچNEc ,MGwrO 7=Wg#R7k>ٟ]JF{`#qrxlT>xSf>ݾg:T-i\,ohQ$uL;,5yHH|j+irZeƔGy~q\Lo"̑kXZ7bڬFXJI9ñ źx/2t%Ѷ)$LxM%ܻJn%GbЛ7Du^ٿSޔ|vJF:`*)wR8nƲ)FMO;uԻy)F֓1Ɏr<@ FѼѴ$:M?9R s#@cNٗ*w{ϻƳBjE sfHVA)TR;iYкKWdd?iU3!Aefs>[WʾUP^Hu0s#:jR(A{|O+/N k{LtrC1ò=._D0;0x`%ˇ&GO`5a%:jF va+y"meJ!RʺcYzvn0Wm`V\A끼=eHRf$4o0P5\[t`i+Ҋ*=C܁E9_xwNrUB:OelGeۃֵnP{!#U$dF_{lb?uGA-5eFP 'Ij 6g/M \{% D;$(xap q4E;!1K5?`WB㣏 7i{"oIد7>1?;/7Ls8$ee&k@<־pcBVMdA tVNI9,D ޗQ8)6/(#0bXHvW9tbkI<\}t[o>QA=uLbW#/wD!}L2"x+|W?R[|)kZI^tOSZEaU0b[LlmhٖHE@tg\k)ns( ,>^н#Cr?M+^.x8Aq7kiu23vaxu@}{DF_.m8$| Ԗ4:RETPa08+qq 9$1o̴|[ 5]Z)slti@w\0n[4v=GwfvN9 e'm*9c };UOƲ䵦%ӗF7u=|vh}1FmV )y'7ۜڀQ{:]8[uhPjVTӠ8x"[)Kd =o% ]C|@L ۤG0rͣd$mGt#Ի qF!eۯrD2XRSU}WeyQ\C//Xlݘ= Kx'c{rOT2खm5S"7o5Z}:-&Uqs${,/ŨQX\Z,u$&Uv)`%+d,j'O| |Q{vV ~&+Fa ?sCH M%F*'>Z=xc7sI<^3s n{( C>Q*J‚+T6f WwWo2dX y"lZs?'q:m$nUڑ+>nuP${Ɨ}q,V=ʠ'hf?^BEb>z@%"aLӍ22DX0[Zz6 ;%=a{?~KB?U ցv_9׊"A03OGd OxѨS$X?sUK6/lC9T[|t.˕[3 [?+|1Ms9Z3)IALV~MT@2@7v"B#Œ t?^ܧ>=62Ў=Tx, au_ӂ ׾YPE%PE8c[n=5H@OTc%!<8 7(R\rMZepk+R1 -9[ܢ9Ħf*涠Y>-cZVLHkzu-ޏqڕO!1u\APw* 2%#ڗ+|c|4UdO#ng*^.>M]y*a}-urNdWP7͚g3K}!?5s08~P01{9ضz.4]7䗯@FE_a'(% ?ݎ-g\ĘӶ`DeN/SWk l8ƻ{yJ3/ Yuag vđ]y"`w7XtDE.3qBoE_NjIvP4v5M%ybE.n tU|"==)`Wi>Ok9TE  S-[Z532R,4UyKM\ݞ,!o;J$.)J0X:TS(F{9H2L%(!Տhoq8>p -@ N{ ?k>ꈅnW'NqZ tLȞ sn4̵ lfUK/y,{=]x? ڸ-,K/QO?X?9)~ݯk.Ee5]hAfp{P,1>hϔe3n=FN8%SqU=mVR07_r0[PKKM{'[Ok1b\~s8uKz-xd冋5IMaR ;K2ŕ򝱚W$|'ZjrR(此*ZJYbZdiQU}6Wieaʶ9^)3cetm7?zAw]7PGԅ(q7&nBiP߯ ;L6"Saȥk<MMLv? `鐇7i+Q?S_[0S(;Ht'&`/+Bo3PWƢ|tI&f!롒ȓ =+RbsWƳ(QvVcB:1/n7.,I]ˈ,ArDt_>eĔ3(o`C9mQG m^PTL96{IvI~Y*TC~S+p|=GLf3I,6Aih)㐒\xGoJmrNp3{2NJT^ #{LED"ǒZ/&hd$:VV,q#gu;%9*^\蛳x[wxl# l39>&Xȯ1 &]-)󗬈b8+NKpc)2UvDۆD =vI SqNPuc=s_Eޑ3L78窍kNsY@Lb=ۓt#G74;=Dބ sVU<0!F`g?B;zݴzxߋׇ&8Y<$)Bw_ @ rVRܥb}ל*84(Ԛ_p毖2dHkUC=.MeK7q]bV.FHIo5 x07 6v_= 8ۊn*bp"mg;trlOU}`5zY q?p Bހ n+L 1<˾9*}y-*ŮڀkaD4o(FIx0p^fΙzYq:F3E qZI=zw"I<*" D5,$YAɀFaQlubJpHKd0hyA8M6?)>(ӱ(QD^8ˊTekyԢZٳA &>+6K|lt=sQ.U̟>EH$vldW\3+A͌9}}Hx EP7G&)y* C<+hf$|yw;ͲxȔflFEMTE(e 7f@$+^0hcWO)r[=KJT#3lS=y5khm;9Ph נ], al2H?xZhۈӚL ds8r_d*,:0}oO 4pmiWp{R 8=Mz(&ߐ/:ģ(m` CryJG6"ZaÅI^hd]u›+4ںR)Sp f~eʓV?8/V=f_}b^ck.F/c-g^48sARYI-1XKQ^Hb N3ᒼb,B3_@ ^`QbB6bޒ˥c>8aO+?.( k~dYP,mi?ri.D̚UU̹aF*B*, $[?&o;c_NG0_ᇉJtT=JHe9?m:\&#kt~z6+Ǩ&.Wg ' /2(q 2ĽKoO./Gr/q|&GnNZ3)}ː0]&X8J`^w %$8 3"ω9f%u=9+#YK@w496v6 W)Mkhh,bqoVЉiY^w Tx;Y2N]߆ι3 N6[?d:NX/L'LɁET\-Zj7tqQ  4Xs@/ԔNjﰋdgRlJ]D@Fp(RTɼ)x>jDBޢQ(=0F.@Jܼ:d AogK&D)S{ `Rz -ﭩN97~W>N2K ՂO=|_\f7g%fm{B2cb{nTǏ81[A %Ur$+RD8h*6>C,C:Gij{ [ I¡QnAϴͪci\T*F =uDij( - CBZo E ʠ>ڨ_,b(nd:Uˏږ)+PVX`k$Go*vV5Ǿ'-l s+k5LihĪi2{3hՄK!ENzWL)YxڭPPW#ԯc5];H;tyDe^ALZfsA3jFvX\VQ&"M`3:ChB>üM:tk&Q"˄-r,)B|&t$n}q4ecW8*jf|wY\0|]?]'^Ln虜{lx^EהpAA$-Ӹ1=ğ D ܍ŝ%Z\ SޔwLefJdA2ѯԗY@IArGl҉eϿvz@9(LW!mToI5xAX\Pik)ro#.cGbC ZXVC xE.ٻe!D2?1 θ>a2_~c5f`͚e`z#TP^OI/Ou;ue M}4z)B6JTy~?ƕIlU<@JʈAB 6x)FcҾ;ltɊS" *g'$d_UT' LbusBV(f gVAϜ8Sb-5F3QJ+$_aD  f%kOE%Q^vdP*|dbxW2/x/W6gW/gp=|(q& fi2{yr$/9{ ER}/0!` q 쒷 =CWx(@L9;j <\$^\=H+6)j=u<_6$ dGgi'ex{LeLD#9 KCXPI[@LtF@䱅]*L=70uڌ2BdV]:ϓ Z*VWDޒ1{?hbVHٮa|+9'QyE7CB\kԇc{`hG5`J;D e=3S Hrڣ3KDu"D{&ǖ5 {Vn0^Ibse,ߖ/Lkcp͏pmE?*7^kg%IZR+46c8A്jPB`0u'|&|AР 45ma>Z;o*S3E7M-@b.BZΟ`,= ͏Rۀp,ϪE\&# {#x>:BDIK_M`D=8ՍĄ Qkp5T%#?(S;vN/ hVĆSNM0ʀUMO&ʜ]fI}=0Ҍ {(_7‰oQh5`16{oo1߹)QsGx¢yz(3Wo P,%&q{MvM%@r@Bi.6>'G8͔#skM\BE4ti*Jf7Yh뉎U9Ccӆ  !V.wh`ɲY~4b'ƲX#!< @g^*"X Ne!.zO31C] r3?kLphNZzxZ6o'!ߜT F6dnYSBd\BHNNM9eT1,ʁtݵ}}6 pfxJ,G(Ս"6|1RS-cНug'J>/韤nf-lc zo} ԲʠYTm2H4yQ C Dd^(x>t9C_Aeð_Xghxc݄Foqn7yJ(ɋ7sA4 Q~&%X-k ξ()_UGK:hk⽍!G/l;1_Ԯ;3 J5ҩ٧K߳Y¼^Rذs7xՅ֤ V$״ۨNy'lb}XUzRƎSʅ.kks-w6'@ v/eyP w[WXĬ[`htmY5h;#VN<ıru!Zb=^,;uX_޾⢜R "Eu&zu*TF 2hsy $YJl %S79LY@/9).E76,N@ )waO/֜$R$[X/,X]cŴ A-^j&T!! ϼ_c;͕.*l9Q{b_6`|C! su|<|e{܀R_е̽اmaC[viYBjI.lyB:d̸[rJyd4]z9cӦQ%Y7EN8>J ߧKbop*}=ׁ.La9z)^C Ï*kE_oFMz1+mu BW&KRݱA-)I u4߯wq&D r1,Q8ڋ0>ݡALtmG1t#l{'T-@,EkǓo{DS !}8({MvsbpG߈ hrwr3.r:pS=$H%]ܢ%iCZ$Mr|F9/)VkKL [-Hۈ+M\>}9@ۜq'LE6YFb :DB<9qЈepvo tN&z2.2R!@R _炨K(L2i[Fš'aRi丛/O[F  /]Ӻ!xrQ&U/Gu}T t< ЮaҐgVxyIW>D1JmԾ{`N 6@Xs K:wvu}tnF;.,ܕ?P_& d]D/}iuG{4kGh%cTsͲت7{W$a w&JMNҰg@4fszBS5ic소C!H豂eDWRZwc=J8yvXi:> :G`%(=S`JZ#a\Ld"B_XD2[>tt(j{+hǽuH .9 ": 1@p~cs}\Tz4-}sRlW`B6=dr<KG~&lUgv\EP~)pD$Ʋbq- pB$YVzV lF۷~EfԴIy9VKivHZ㉮5zD<-w%{hcv:lΈ$ޕQ#*щy kqvBV =ldլD$GnpqKxuFhǗ(Th4$ȡ Hq\ϬP2+zNo Fզ<0ňpV-cx8lC#.l/;{7gד&ٯŮ&أЁ='L9ɾdAҮ*Ƴ_^(#W: Ė]" 6[iD<pZ'd()xYQ :A.>W3^j|FwY[HdH fuEq[>|{rټ6]jtLEj#$4K ^-O7j Chg -b+*r8Dme<9?@(ټzE N_T?PXg =Dr >: j_k^LB3RXǑZZ:}/@˲icHi?fBx6/ł ƼcBWH!5qy~h'U*ޣ: FłsQ'_ϝ=RT 7Pb,KW1d=RDvX^"((88{71mRE$N6?ܒ>jDVl2zYw v?cy>FQH$S*6zmjڶs&<ڑTIYkv$P N}%ܿބI3ze*5d|Ҙ98_]!QAIW{ɼ$P딏'~{ж%,(]"cÀx[,'2u¢~8'äi^[\{S&yyBڮۖDya/4䐅#tmG26׶y,re /69! p)f7BY0E.~ί N%ܝ'e r.R($MS$S4 fWP_e}s~BNbE~ںlۉHzR6e'P:pHmA0җ S`_d;`5ØIvW֢KV<,-CG=>RȩoorQ\7D}tTHDs}9pMyԋZ}QΥ>9**GUQ"z0K M0J.?MH#UEhU<#q/ۦIS0uq*d#Ho0"q0r`Q/a2@">V~W,ؑvD<~kt1E(,Lu0`Z2)4g5=趫læ c@Iͅ:b2>vhwc4aU̷f;ER<;iiֳ}~LeME/¬|KF6&eN㔲g]`l(9YCRVsuuDPM|X@j/g|-ϗCJJ/{[E:ۘcWOomәS. #9 6~]KsY)Si7j lO "(i/- A=OlZiڊua+un5ӌAgzpSY/ixpIzgO\ڜ#o<&՟%w=o%eVU(4Ѽ1o^썪巟\I^64HK]UHkJtQaqQ}\awE0hЫaI@2Ψ;n\F-їƦtHɏ Wm\4B6`&xNW\?Oɳ `R<=w6ZG[ǫ1߆Q2-+'ԒHJbi֚ A8TS놕#˜3e1Ql(8Jo*p]jl:Fu(F]eS;쓹ҙV ``dh(Aߔ`?s.!ÉtSϧeg D?T*(~vٴe+[e(!Rm W!_ Rl"d>'Z\qWn߲VvV.bHmCMhޡ4!Sjѣ_XTDf1?jR=6ϲtu8ׯp+,̹܂5@9lޔ{/ ')>7 vo'oi_ڷ8s0,sq'q@ύmhn] JpG[8nÆ{_I{C֧&Ҙmu7PVV,['z8Ǫ:ЊByWHb5D^!~B "Wf],Ԍ;6evmjߋ肺Ŏe[ \yLف yH_BR=Om^d[I{ 3AH6AD $0sBϸ"Ն*jgds< )  )WY\ch 4ti//jFǮ|eka,5? v/+)r H0C9S"zP~\D+_HDœ:6X,TSB'A ) JъsB ڝ9y'ᔹ$bL.u^9\rݼ^u/ 0^&v1~jck ,Ųz#1UTL5W'3AE{8 Qt q= _U !Nؠ:?jf?/[fwO'%m.J>oF=[M X3iՋh- ˑ YY;EP;V,!J(*|H‘MU"=lfR=slR:kٓ}z"] c !CL̴ʣM)zbd}E6+C5gܾ}FuI}D/@B=yڇ79~v{:YϳL# ԧC_:%l D`5Z`d ۼ Xg6Q}''9 k6U|A ܲv h_h+,@/ýc܊4UƍR M^AI7{qeHi|ՇX_(Yo6,z5a ǵ)=#2LQu,7g)T PF}:󯶦$Ğ~BZ0[&,\Sӫ&YGuK5A07OwGµZj&{`wgCh(K{]%j)6%j+J2 1$вiCK,f=+EMHl:Jy coMy TNCE8< E6< %Y9\wr|4my d0FpJ4Y%QA Q+̬V\wzk`gx:.Z~d j G#JBcT 'S:ŻvCpXCh<I2cj_ &*]j2>8LVVg#*qr"n WR+Mg=ƥTn$U[(BW&nFbsp$фGLBr~bǒDZ] +'T|VZ0I۠/aZ7|$wgomĐҔ稸hcQcMe5m:K {˾J۔SҼV%ˠUvXYTG`g8L]wj( olz\ .UF!0jF'}[p% _W7Z#׽^Zo@ %wcyS#@JBڲXAD4Ϻ!>uS޿Δ C]g'PW=YȘ/b j#;{ifJ.~ќo>)Tq~O |^ XmprRB"ե'@W"rpZ 7pߞ;eQFL,({[VXt?;"R(&[_Ȱ6whyb*n"ZgK }u'2>YSP3@xW⨶.v6:$@+a];wFAOE-\$EhiB?YL@#C퀣 P p~῟`:iIv+\,%cà `7vD>]-H1Qb CCpM0B]V{ ]\5i,(>kZ g[ -s#w2ĝzyG6j;Xg-tO:&,{ag2hnaAӨK`{[kQ $(A]Dw$;RDGH<%a%}x,"Ax3 O%17]\"_a3]e^Kk;`AUqj6W^^L˸&O"w8k"-l0Z~A V}hhf+T3$[O?ANH2JH,CEZU~ڐКFM e$%_LWVL|QzT"튺7OIObHE)f~+!m6XJ,Ŧ;r9fPdh; ή]ڎ'*$kum!llΩ9(Ik ]OOӜlWlz"p3Ԫ3Ql`l`{#bvL=ˣΟdjOP Jyop@r 9nWvT}?&ڳ 3u!kV.aP#a#gv0D C; 40\3o Oy@},t3+r!Y @._j0Uj~T 3ؒa8(w҉?>0/!2~L TS[m3=5c,%Aժ2>PljdὍV& iz"VcVrI:K(ŚεN_`JIv P՝0D9VqCc+A\:0rkd @;ΒgpMTVe\eUV*u\^?/.+ii(>ukB)TP95 |{ "~q1 @u- D[Y8ȟ#!ZowM>'ner6e! vP00wNu<EDwaw_:$%R&h4GoCl x SՂ]Opϲ#)0HaJdgNnh`tbhqmSiM0b&,NQoً=:<5tmq8u?Vw, V3Ƞ>HuV~/'2U=55sj0 6\HF X KRѴط$/S\lF;\ 7 o/z&מ}qZwc@౤a;VWgDvOOVdEjgK`H9.<`] [匶\ be=`:X͌ 6 Ә<`$@F^]ZfO菘Ț7:ƴz#ʓ,alΰ1N7qcRw 5!*tנAs9y_7egD2]2l gIgJ 3Ť;) ]hcoE(j: %Qg!V&Ƌ1nxJħ82> 2fs e=fhaUdbu%c` ljOJ)y"4}:;)c?b6%S[q(嗖Z- %).y+ jd :]$y@|ϒs:w =.*L0if)?[g>ѫSѪhFa-'VroyBg6k5m{:Vv,^%aU^#;N3l? U&FK)[\' '"#1lg>Awr7˰Xrx5'8{)JK=~מ7t'~[mjbWdW;TsZc`A0/t\>ϲu5 c;-|要1>UhG]~Aswtaz zVĴ@^ vsS \DW{OvjFKy;(mh) g 1B y%[Z@hNaMwNmDݝI L-0-,`ŀQK?_Cfrc8&O[ԛ$Hb`}L' ։hH7H*Caya3]ԅ04i*:~SQ^ofhTKJ+  !_1 |‘ ~MZAl{~D:~۠+tTA.gy&I`T[PbcדxƩ0mKٹȄ[RU]$t׺)CE,:xP ] ONs_]kfb-]mZ_Jf@p]MklY虍$봔z8E4EK -G%y44BAͧEf J_oxdEbR?p !0IJO!\0ڤ G1c F$Uݠ.\˺fH97y'L'1nw,mHD"LL 2(;;.آh l )V<,LMW&K9waa@E_t EsQ w6\/F"U;XCiBaϔ&l}x@W{ ;k$}Yw׎l',̡䫽"s.ڷ>_QŤP<^ml76@V4fp!ٍ8|(~gۤ T 4ctW1қIh"ó'W&x&5InjQ#AXOޱ-7YEd,bT\2B`W>TSok!Ѝ?(EBu%٩NMM;{"w~9tA^^ Og\mF+aίsxnypU3@Jr+Npu~ S{ҝ(˔h*S+RmU,!(96TL32 -PC]rn{AwGM8ާ5 0C‡1qcts;sφ=tRSW3pMxc*Je=HBt3V%nڰ5zE&J0Q5pŎ'NB^ X?t~Rp-կxT.K>esu[Q]r:۩s#s݃;X򖫰"oI"SBcŬkMϮ#)n{֣X>K7J#ߞne5<* '4lY O2欜d3buK_@.RVx~LϺPIo'K>؝k4 x}"qx`t0lj/dƒ[O?͗Z&Q2-K*&QJor L?0:Z/9kS#qq~6C0^ԫo#? %A#3.4z ]o4ΤP_6A[Zv6."` 3D;3ue$xadۂ7h."WmA* 钉0pǀJyOr5MjW'L&OTgLQ~ѡC6OIEOR}Zjȿq]r'X'/|-.pآ1ZZn ]r@Ȯ37gdY*&[mc yμ_&.:EǾX}6NklYMJ^+e72:tD𓭏_u$bY) xj <b\1&Iw\M-R~aef*W-iK["nօT hx;_NA5ol3JJ<]t)7Gϴ)fg(l?7}y/^mW=Ar7qKkl ">+ydK$i ʯ3_%zu׌]NjI'2|X\VL]؝!*guS`P2U>^:z1 K?]#%OS'!|hO yx\;h y lef;2q Yf!=>ޓX1ESxӱE[?lEUol|i+OE[y&ѷb- >5a *,d%Ț9 ],ũ^s@&_$dt['_h71!/ea`M*{;9uٗ g^kא" "|:)ټaaDf2 QK~547B+iU="s07:#Iv4 ?GR +oAʠUni=\ El˾شok 0An` g5 ȯ;SJT1\u mpV.$p^eco2/$iѾRMčnK1[w1f:NV99K+lg/+l pmoi/RtVTՅwf0hk4P/SRk % U2_X2/T+ bk.K7wr},2NG;kѵCm8q W+2hi%l}hg=IJXnM)b뢂I4Sji%FL6ҕToP ұ9$H<guOVG!#cL;.r.L#$q|Sa0>)ۀⱤu0Nx Mn.׎e6"9 6 oq%I $42tA1O옏[&41zޯ}hl4;Wv8^1 UlAeK$seI\ -X/ˏ6P㖉=`p ` R,~h3k9RQR9'&df_G: `Eo]C2/F[.ekc5Q_[ gN^YDG@d"y7094d6:?UmF%D& @"֑2C~VnGwY|2 @o4^~VZk|c 4ǧF@'+zkMK yL_=_ G g~s&)BptB7)SkHfXc,bV(jtݧft7j:YClʱzg^&(6j2;0^dNGZˊF~ JOv@!m]~pA h/3)>3uYw~ޤS-;q"}"{y"hQ)(@+lbRsA7! cVTUXv(BӁ2~D}߭!2 Mp\ )rQ-t?"ܨ1n#oe*ʧZ='0(RCh*nr!"\l>wY$֭=xs+oőlx l)~[HnlV" R*5t W9so>lh%qCd x Ul51=mbp!ÞB_aѐyaϏ%\M; OVCf3h VLqGΟX{iUM9`^ԦSܦ$^(uWft$GUu"cft6ssWbnL2/$cߝ֤)nGy6q-Q6In Ҧ]8hS.shlͳ(23Ϋֹ5Pk ?]@gZ%l6n!m=,7/^/f5> >og)J yݩ$4|,hݚ>0-ρ$Ögz1xA}qe`R7k{QsCXoww៵ 2_q&D% ҉Mّebr05J~.` XA par0X8%*C1/:uhOF$])Dv >[0T%T^=JЩ?[S;]~&ᴗGs c"hnVMװ:F\Ek](o}:9ꞣ룲WEɀbLKOxIvkZY ,#兺[5pMi5$t9NGXc-c&šXdٜG">tMK V&k0/QIc^hHt6h6*T *>}]ɻ巐(T `_\z>SA4Hvz/ajCaݖAyܓ1-D#RC7"։qjf3w9#(~߄)Okr$[]+S5U?96ܲ}}O[sr M-sI @–&R̳Q0B+oKؙI_wѵy,k0ۜC{ݧEOmݛ+† D & /ay0):v9ÞC$蔧(6PF;rp:pS3MI^o?ޣ](Q<$yCKr&'P% 4ǰAk̆lʩA o9UZsMVb! TO*9DN~#{/Ց  e4ētiؓnjEK*2Ӧ$%$EtN)^F=diyw@i҅~A58,"H)!pg\Чղ>2ho ơI}m1W`(y+'@uyQSVnio[2eLa 躐 0aIyehl,pϓz>3mnV)^3IL؟twGp~٘ݩ2M-Y@R<eOنl7&,)Yf{I Tj  )Zp9VzKgz\{ K)ESٰ90u Wtpl >2͎.FT윷p8 /{ɾ79Li wJ3ټt0t>0{+$׆ⱗ]'BUȘϤ PDljq:66%mɗ^JэOOQv3f\/RVrEV됁iX9ejZїQa8!ǎc`9sh:5ɠςjQÈ; U̿}DM}AIq.Dvya˼<ԣа`5X%c>od (\`=3r2r5hnA|ʁPk5*`8D|tΩ|LY`,A:zAMO29N"ƦlhC 5  \FBGRhe}0}l". -=Xar*/]P_ 0A*AS^M '9 xo<,P`Ł_-:<$0 +F$A~􏡩 K25l{fR9%6nKu1-.발oz;|悴tqPc 0?몝3*5K/'{Um-*;#0EyEZŮ9J=ܧc\dPW9M G}JTI8i⥱rnj뇓i,F acx@ڷ-"d1c`,8WWV:suS߮`P5F{ʤCz/$U.R6f+ 3c?3FM=.fOIyqX[NǤ+7#eҟ ,>+om{dWM\9kc2FޟY,a <`F\*sMCK1e*nLм_<Ż-@kdlcbSc0OavtV#^/UQJ&G-ۣd&W!FW6cNY kgQEcBvu+ƌ3i7筹V/v坱֧H[:5'4a?2 NYUǢRן3H[PfISS217w&'R־J%:refGmi>4Oq"r<. h 1&,mI4#,RJcw‡@XȪv8r=?4)/ `off@nqvˏq3\r~L9AW0D x:R"͢g?%xXAECrr*ב+&P Rvv[PeZ7Į0v%d5*(\p>? :͔!f<4YxÜH̩( rߺU# 9ʌO |+S 5y90 1ko4G-_I 䨴8}{:m gD$Y mhPmW12y6':L1m6I&6Ey眧Unaa?[X^ыs ʘ֊vvL>hN:&òS&hE ; i O EOQG7Z#75vENgw>w0,.n}4,!տb?ccPU?6~eA]1),}97D`>r1LZ(ֱV"30<7PGtjƵ1\$mmL 6a5+0bV|+΢Q5u+e FWPY95f `q>򣄃B>l^|+> a5X첷q5sh(W]#ϘWD_V-K~ʮ܀dJN}(P |gˠt j3e+,cϻ?d//̀3T8G[1/xh|w5oƷkw2 ?ΏhAOseP_Z2V/*oHIGnlOXVm"$G0Yd1}k>Z.$^wY`pyN!YpkC*\DZ2V+P!1,v! +/ן )Pߴp2=Z˺z6I,ts RzKkp3?BiL 0.9a#aL'CH ; ҆\?@Hyk(b Wz*rrzx:)4!;)?o i=.[Tz͐/I.=Q}lȵTE3+ɵ-= lH&P9ұ[t7X*%0ecg"PW[#:-A:SDfJG9VɜgNnhd&QhTx̗vVEJѳ\Tϻ@V ^?S%+Bڼx-}vS7bCm9rU%՗gRd$q➬o մ{C4r>͗u]]eîktUTP9wkj_'?[0diLO0 &rmCI=u2/d8* %aA]Yf[GSo}PAmCy1Obw]{ !~?l؂䄏V L;!7>N_v6B kxu;F<J"i{/[#vɑ2ߵW-f@ۖ\ emE/d?O=7OsC)YJPVrJwx`Io?ιe0ngeV)7 o䫏 \v_=DЏQW6Uh 싏ߝie_bLCpLҭk_<.M'%YDk̃%) mo3]y~Ft)>$"X'gO H97k4#v•VR Okea;cEFW"ULU}8e }W4;+m}%{aRٟ4_Ek+%vKU4Hut'z08Qo0LwuМD޺F" BL~Z$@ ܴ*FY>N,J@dbQLKi׹ky3fޗ> >r_aSf8BJl/cL'v_uL\[5 ]d?|x:p[27{l=S>^+,;(6lQu}U PO  ?'VLL:' :DQm8{W{k@k`J\y"{ |*tF@^C(a =L*b+DѺ朻Ws7[+ϾEd~6ts"w:/iDxt"8/I~Yg.UEb E F=tNJw蓙#=_Z(pcP79}tqk%4Gf|Ș$ýH7fPӖikyYjO;$ gte 3Ŕi6Al{2Pק X Fn jkl+ wK*oZi/E!|*+`4P$ҚtSU=1~7,>^V4WY!H_N>M]QV Xk5U`|Rѷirnb6><DEhUFCm`ӪbY.X3)+8jx9)Sfpev|ubtSCOs։Vkz+MGg5w|bGgt$7Һ*p:ȓV}!s% )gkz`3nko$,n}u7bԁ#o02Qut[2ڟ{goBݶP;nCvG^3L3KPtnRjEA!)t};$)v~Np@^ڊHkx^t^[نլ`_<%an xôjМ 1-aLypy-ҸPG>Aj3F] Y8.\` Fаn"hj=7@40FREvZa+ةۅkoZ,x=9ԟ5=JTKFʉB:3nm`|,Fd;SDSo*#Lmb -zy5BR3q轋%Uej)%7XU+6Z bL_i |[RdAYKoحLq35P.ja8#0KEku&:`rBU>v"M,C- 'Z5*>$}Y-;SA皢y'yM<a8` |вPKUy G͸\r2+dcn ,>>{%ҋ'oQ~YE~hb*Ցb*Jq gPO+OafCYg-i}>L6فKkڬَܰgc^cZ#ꤘ {i/W evB3i?l*oІ;g} e[ |dn%.UMJQj7[5o9e7FXSu ¶_vG/Ws̪ ~S 0șf|(gxDxk>0]3Rp݇$-Jm|{͞uਖ=!q; 3:V MEx$UL^G͠`!:cz j S&_0)GT}Sxٹ HsG@!_xR9滕 l|=>Z5X)7= n`-L  wE@~0 AD /(f \ߕTl9]|&6ψԃf|[DLbKSj?yrl{D5n 7- v4 ݟ7b'RѾi/OHV'e{SgK䔸= ?Le̖m[빍\} +Ս lB D~U.ii咜X5o7""if:*XA`t{8&bn6pψ4 <4BsO|$ADw^w:$G׌DCU].Fx#R ¨[e7vk  o+hqpF59xDzd_Gxq'0+ks瀫Hiѻ[װVǤS2AZAޘpNybiBaJ:BB f]6إcw/R<5;I;tM&r;l/nόI%ϯmD:׆"054/PhӁ8;r̬Xhz,SP~/O+DcpNyAE IW,FZ۔}oQho5‡q4g Dv7_&E#˭U +?~iU NǼc:\'Vmի>2L^,@15,~.?Z |&XBn8Q դ A5R3 F28?_2U[JU\1o v,4et@bA+bj2WECoc>m4H} 1#&<"C1-itITz*t᯲yBmxޓ~ W#=7^ ң[)$61t:kQ"`'OrgbSPA%.[-{40CE7@J];Вfiq# q\Mu5+HE7a\(>yĘw|-}L(dDsAj@+5v?#q~ϬT?P4D4X0,  1jæskjU-.*TlT_tTzB0zZ ,=CXw/"7S>_Y@W (f@v\˙w,q¹3JDٍ [I`$jQւ&H(3Fࢢ>{C,IT4A* 45IK8 U|3 ΖlՖ@"8`P$20a=n 8#;DVw`TLmbmsgtٝ{NR?pqz9$Mji5xclAo_7 1Ywȇe@-]wDU'ol*& mPqxj>7>w5z2r56tn\xM*oБX×S)1/h-ffy*PzrOOӋ%ucBO\:s,QBs䰔@OŪPb' \3osaV?߿҃kJ0Gn7Jbف).$ߠxEWQFZ~%w@#n֋L =Gy'28yH*P<f2>MwӓA.%XfȅȞ@Il fűhH*wb tM"DqPס4!>Է:bzm((}b8E z2"(XEmc kJ/4ҋ&9~EhAk$ۀ_ZO+t  r.UU`Ic ,ˌ_ gȡe{>ȶ{}2Ξ.U?[2}S0o^9Ҁ _+|Qپ]~cjDB[G+J}7,619F\b2F[_B [o`rs:`yTx/ sWwJ^j>نː%Xٙ,:F2*d"v#qB6(Y4` =+ $d\瓶xTa!=aԨУ,ɲJސB?)0#+YXG+8~2#-q_Fq&j R/u~\1~7]6H"&?8au.tWm rtXuh!%9f|iVNr`d0gU +\]uo;1PF@YmٺcPwq|EjrvJ@lu~CMUDۤ `ܞ޼7B GVlpPLDJ7PAi1c3HY pobJDŏJoj)KKHAm;([P<Փ}(W1P}wN$ 5+@ =,5dT=X>bS GK者ȡL-ڜ9-qSݡ{q(ۛs -n%sNѓ-^54Yw+ίfwr[rM`B({L2j1o׊! OKt~ eDˮT,2CcoNeԞX(X$(@W2֣gZlm(6;s#ULS1 u+,҄d>;`26%]GY.S5RQۭUG|!TZqS@q.Ol9:r0'E,;1<ë~"J#<3^S`6t4=%FMl&Bצak1*qDy86>;xҖinf:@=f5`vNoI0& lm:/+58uk7 cFy|0*nFI<6fce?z3 2aPrSrj7Q-t{-(MO?Eaa?1K>/Ay0A#S b^7$/KaoNGS:+Y%ne+fB@P3f3Τs IWq5B'NnuId-ESsDe'7/$|SRC"&TEE\X1tkǗHDNtG D*X֠. lc ˽BF!uG\|J_]Qlu*in? 39oOhd*k>)l/:\rCqL4ZReyl\-.6)ۯ)FUWиC%?LϾK1ih7h,3gdt?=b*Bݕ? p?I_m #a s_VB7p(?}񎚫p祸;|v`JDxbSI֑bh'+f.1o`*{62 :fkO"~/I7ݥaODBlKy>t`[yx@ ~p0éX/ *zɼԫNTQh=| ]`CqH' YԸ1}9M;VPɬ.ݻ09#=槗 m;}Lb"L]W. GF~75vm90ukq$2? m뛏ʻfi(Rk$`j㰼M,)I7f\d4k!eq"IL#n ZfSSPI}Ss[i!5l'fxZЂKSox.ҌD|0G>RJ;2sgKTbfQYݧ"@7&x}YMpl!~ >qM#/Lݓ*YoKԋis<e4VcFi x4qM*; Tj[El 7VI89Ge?_I34@JѱxfIf1q1 u8=sH?h8$[wtO4P-fK e@vU1GՇAk}!v?~QslYAq㰅ڽH9$T#GTbd-(e -uiKMW+fҰ]Rpe>]\` \#D>[KfcH|kn qGU>+RAƦXàj;e@?/dNoNy's/;61g+E2&9O I:TxLUI My_`RęZ5}opA͟k]T0dIsӥNT8Zz'45~8u_qXu28t=YR+۟a+r @Vi*9xZ7A`&= wy_|ilGgYGu#7xB nFK;ZKR{#Pq#oEߚe;&%zxI\y|AO}i )BwbaO~SA-BG =XgsPhTߣ$%&8œ1EHuAI&0d]`),p&Z?HP+Fl4. ,&ep**6DHg6YY-b*G5h;j^ۮtwWL,R`XɯdF4B.RPF7ƃk߾M!^s8}^X!vJ8_Ղь(g&(I'JPbq9G7 mjGlOc$<ק'WR! Vy8]$L3&ũa+6h{Vxzce72Lhy%A*i":֡#&!ڰ{Vp 3혘"?K 0*yEvsQ(ηC)yw8LKl' bfy[ߔ;:W;A+S4K,TF^1D4UC6- jx.r6z\VUEJ8߬xu;A &C:.7]$;A Ҿ Ɩx&kcQ%$~v:z$qb n:Ucal˵8 !U{""iCEd}vþf ٛkzJiܲ8?|)۝S:bÉtS`un.uonA8UG>Jqb$ph:}y…Y؁ںօjҽYKe 1C{w[ Y~Ț`dkE\y_4$\y=䑄}$lQIWJhM`FE6)! bT n5 @ t@T;T&2 e!3NK;m,W;ʔWP5dWe$$3DTh,O):|fw1#ic_C 4 L4?4vr65D\ 4^qqJ mVp xE+ Nǂ˿,sUr/R}$OKq7)y\ :-5!tP"+CjOzC`fCRzFڒ7bKC‹ ?6n5yn^'Xf3ыqpsEvW SChUxHY{-;=iAZ!pXʭK7>rrί)ENj Vx<&;O:3b%eڟ]XTbT{ݻ;Lc63Jˣk /SmZQ'->[{Gz " *D>{;q {=CjfJfN#Ouaq鑰vnRKGt?!E^!, /38yPU-OJJ PO*SIܹ1k{(gY_Qٲ Z0L+lvx䶼bgL' )f[]]k}w$A `fNp4=jJͻ^pLѢ=Ck3lhfkEudG}S:# S;%]=(iz+`r _%m{څaڦ:rK# 0ADkxz#$Ʀ́fxZ;1dIC ~SNx!GLo'i H1tـY}lQ]f|C76˟4Y-퀰Ⰱ/9JcF@k=:}6ӌ[AD9K?#' İd]D)+ÞX6PDw(|vHB6N1B[tRpg6+ATr qB@n?DYEr-+}>AktLnyxY4OD<)j66A_e&P}0_ٻ ż*w0 \&\m f:=-$_.ui\WI$OhD0u4bk=۱Y%syx[_.ǩ)ͭ-^¡OBhl)GVrw[A8IJq)q=GMeZύ(Di1&Ua )eBfMz9 U-Vz{̦u d!I$Ft,2/#U\mqy]wc"t#(>7 ŗQQf ' ͚%1 Xvh٩2&bKzL)kj]0\ч*Dz8<#<QaCb":ne@; _R5<ۘoJ`S`*qs/΃2bM匇Q,l;`~_AװxJ^G魺V\ Qev6,<2pVj1@|y+j\^Sσu2yfšH])zZ : ' ,n3}aU8?k=T)dtSꏟwQwm(%+]^.tCm*fqqO 0`$vc-4wecuѝ))' NN>lzC;$c񒉿Pߺ5hvs"k-k ׮6d@妁xH63fvL0I/nP]PnHGyOBMffV:`TY`zit,dSra}|^i|i> wWӗTPd)(;R@[u.K+Q;{*nKq@(G¥J\u_ӕo86ia[D+p6Sz)kQ$?t4$N3\(˪{+"Y^G7 )`dIƼ.:_1w:'[Keؤ (VW3h\JDZbr*7Erf2|(9UucAvy@IHÖRG@y`@ jdLQ6=Y##r7PpxNɹU~VCqTD }o@m'APh9@`s 4]G\24C3h8 'ޝ.<`|@ rtkؚ9 ZO\4D]L!, " uH(Oo4J5cj91%Y@Uy7]YhLAaF# 1΀jM}uȗG8.I.9K}~;.[\%Qǔ %Y!novN4)cFD`e PCfCщ=! WW"{a*nl:Ӻ8#CzHa[J䢺N=W94+M\rϮ.'ЎG2$il@%haV%/bqnџ3&<ɓ/͂hdCe"cXX%u'w4 ெǾ!ݲ<-ʊOCMİ@7%% I,ivE+fᭀK\Rxgf~t"ꍓ2:TԙcdgfHi V]NTAeUw[4TcOƖA]oCVN6?$"_TTKtX*t~up~ïSԨrwk/˫M}N J@t m!3}BxSMqp=kW2,xҏ\sZ]&YKP}ʡ{N/}I|dP6T(s9,>29c0PB}DQҋ攅kpN +T;f ߦxؾYqzqb 7yiuvC2}f|jBRΗFfC"mDSٳS9|K˛CLVe*MoNy,^ lh./֐"靵Zkz"ӠxXf.|ŋ CWͳ%<$.ٚb.21Hh-|$q hf*bNҴ|UJHN5r0/ tO. 6BdQ3'm=зUjvlJΘkĮq=RTj2ah]ɆJXGm|"ګ ÿ~,/(Ɏ6rDIɔuƻU.(qA"܃ǼExrôu H)t"sHr~t9LB䡑32zk|}kve(x_fP#"X\pxtK.62 MY@9ruu8hx|QoڐCۤN0=qղ$*k>h642{A: ѭpl=aΫmy &S$j߄Ӄ+L3Q8N,DEw6KqNJY֒\rFPSPfC[hfp^j C[jߨ1Z- ØOհdkZ ? eKyyMq2: = c8EɪvI~=e-{BF5;+ƢSГtcяA\6#Ti։ Ĺ l^&)m4O[f͠u[ 2$\3m@jT\; P[bLlIt&5.y$ -b $2Ku b8R|-ʬ9BZ$7t~41EHi[y߯ BXXآ+y>M@_Ej = n*-hc\̸lt-5u1dzo}ѣ"*}Z5"g9HN_iV`jk%ziPjkm88C=X."tG:k)hHM ru;dzU kW߬P8W[Y _-ki f-5NiHO´X_wѡӚOJcR VG`'ʍgvBc-#9O\P ZMh?<>}!hLc-oXVxNьJ_ <lhps?^_(VpXj\]t'T{26v_t#1._T\_50o~`B9T`9BuϕU\ڎwT1)zE$-1 D!ؐhTmVbjbe2uqm 4AThP z\ YJ.;!nT'ܩM+2H/B!bьc>>F(dǟDo`f-3u F5doYYo_|[TBjHpC!|f v30$5)ujw?zL bS+竡:2CPDea7 $ mnS~t ^J% KF k^By_.e"ucȑŏ ɼd3 ++e{⏒IЈ`[.$jkYo'U,lk~CF1tJ'Å^ۈBs%XD+cj;TY ZF=kOKhf +`,c@%NC0i#n҂5v!$Fv%F`NKkt!V-ڵ)pI/S.ZSܸWP ?V7‚9P_n"vbJ;;CIߴ!vaz#ݐKA8鄻+5pv t\+?P_7YQTLf̳-;,'m|S}[GA-JvR^HygZYP@iPP>EK'U?jqQ2&Mç]$>/J8$.(-V}S9b6HZr0^G bU_.؆:_6V&֬<=/(N!\pW}0Fޚ4:!{*L#_)MmGEƔ!LU4k)QPl(欹2 B:ΔZy(TQj>Q$A+DA?F1t$E :`&/gdT$HYu5 uHH^L 6^33R}ӹ8fn+mIޑg}ҊijFz^jlHBώ`^<7'bL2*)8{n'r>JB[q6[ZivWB+QQEV"^d@F 2aGSBk4I8FpQ{if\"V033Cɓ~BE(3@/uoϳC܅);ڰӐD$"Jb}k7 z@e+tcg9XXʑ")tWNWŜcRm8&諁Z`9\aUKLR-8;2A6'kW#õVNSnZڊ;e t ?!h,ƒbgUD-,}r^L`0ӊꞓNJLj$UŠ [sbKKfH ($}j$,gl]Th@M},L9FZUL?ۢ~Aj=EӶv3,-ͪ}ŀز&&SRXSK.U(= m֯hզC1wkB/ߌtz!#CuA(̯#g3[tpcz4 ǧh@Lj~RrARmXۡ6OIhqNU>l)ۮf'+=*Hx8yxٽxjMy/s~qЎʂq.  a:#BkE5geVЃ|"A,੸Z;7Uyyޞ ǨzCf ]B@(єrpn4t} N۩.dK5L"j]uGB//NʳNz& S.2u~|Vʤa+;DyWy !f\F t*̒ 13l<m$yj .R=9#5޵Z:,g[aW-dWH7]K-"yˆTj)38= {Fltԍö5r5TlDK"jȱ?4bzG=)_> S Ψt|̆ @a x;,-{>.. PP Cdu9)a2_RAoCn7F8uWdܸ>.J`UM9\2q{s)NuXgL ݧ2K'RuFb@i/ -O3F"% > NPo- Vni.5'˷#.6Jl<8L-v|ʕ!x4X|Q@ug~en*6|Q_L|u݈ӥ}'7n諸[_9 xWgß70蒩cT ֪ޑ@nL+Jb[dLIf(%I]$ yKk[*mS_rzi8kG3&1ڦ\[g=>x0A?7Qp}4*,BF= 5t:3t㑠K*}/;'1SLpteY7qɷ/]ηU+IJ[?aҜzNJ"Җh&4!*h<󃞒}>^iAn#)+^$Σ=h hj5j!JdKlŴ7& )))wD]"ʙ5nݑE6ƪ J˞PIHDQZ}UZ*+@w\Ҭ"B"y]O[("0˴xȌ=(O٤EcXY30>A2*:9)Ƨ<\XA3!kI7 隠P9gcﵫi(E²;(ߛxťqmR,CZ@q~ ڼ[54,,A#/.؅W6 $(jq1LIfh)|]$:7N壍SЙjU^;눂g8 [ktrp)} ^XijS;tyKJt.6/}HMѪw̐N]]d 7\aVg˹ϐYzK-HJڠyY~s߱f:nf~sVﻕ6K3'7^MMr) I~=լR!o,& ؃E`>2b= R)L%O*T ;3hptŰT=::HDD%s:VnifpFU8TI'Sl {͸fj7q.B(R#q8K:whZ1U\ۀ6N[EP y^ڼÅKIG:fE,/2 yrR+JjA#y<VbI|?ab]@3ht#ةHP(׷',*UHqXQeRͨa~ڽaq okbʈ:צ]Sƴd=sCɣtea4/yK i9,Yܫn3hE !*Oό03f %!գ0@(:%HȅGuz9H7Uzb|2r Ŵcr.nJH%amFJ] QF"*lf5Hǯi< ~ʇ?CH#[h|Yӛs2u,7A<\q 48eK*]L^8Pܪl-W[HFI}f[hD*O˧  E(<f o%tϵC]J9G8k)˺u<*z ` {vKΎ.NXa續NQ}Q~kًk0K5*9@^p .&Xʩ[p=\-j-p #=lL-,G1 j E㱻@`,/Fvx[Ci{PȇF;Z<^c g&! \:;1dŻTךF >Jd ,a'/r/v,kh_$aqR.\Ra^|rK:< t-Ahy/`n@ӦƜts84Y}eX+Vg@=""` n%9.٫yhqȼ *kkB_4SN Pр!l!8-Y,&[I USu3hG;+,8L1iꮵ놻еf;LHH`}̖ RnvS 8)^m^m:'ϽxUYP*%iDQ?B$]_[w~ Ue0Ze9I~ۄa_T}pmwDfݩjԢlxDf=8ׅ&X&c7߇ d]&;$k[sq{' _r_Fh!eC(>?u-ǝXU՝z[+Q98T<)xop\A/ָ_;p6~+dxו?8!a! YpjAM-Vj>^lMZ{BI-hyV.5؄IeK lҎuB? ۿ_ Ym3ç)7 ۡZ] /yvSUl_?u;lb\ /pR!Gc}P.(Enl գeCܵщoLœL39J1tׄv|Y:5< yXa˽n(mYZ9fpR|e҆I6xjDqyז(G }c'F` 6=Ȩ#ڒ(:J zg~ P ȿ214g~>΋![^."6C_3AGFTm/_' reYpEZ`0fX_vfvbjqi'#Ȅ=pGi_B)M`^~cjIM} <ѭٛzCՊ :/,rǢэdIku/ є-Mf6lY|^ i#OnyUCM>u0TA`EF! s9UGcg?TJڨ'2nիRoJ/^-.ܱ<=N7w!UjF.@BIZ]?VL9Ǯoz0R;W.#Z,La ^p}{ww)^ zY0u"5l_n>@7fNa?۾,ee88; aK\hVHt"_l^Jfaba|r-Zͷf$D7I`o1J@\^Q1a2,~rl]W'Pd͡c][ޘ(y9n4</Q8X _ADfC%ԕnۃX1Z&|f8Ȓxiz,0zZ/y7Z<#c=5[Z Pzם*t?NI O-%^&;2 ,[-T đ%щ^?{π@`$v*& '~fhk$+MO*`Vg \xi=bm-}kY^-B@_`ay3Wg Fk `ϴTCW%kx@^jIal:H])舺 E,}e+XG1ޑ H63\\Kwbc%$ rZ<- :zUJh[$kgP/xPôo5 PI&\eGm XɺT;HOtK)X~,x{%Z"tcdE3 yz6'uZweWa%w8ٳ*Ԅ^@ ߞ(@؍jSwD҇3X t6cS ٰBG] .Mi1܁޶ά![Ocvu dV_Hۏm#gsDȀS\nJ8︧ڷ=} !"좎lzBSkTDYI62]{(Ao2+/dG;e=0y.Xh(ၹnM&Y6_jΨb |;*%x g˨(w Ao8\7J1IPQ+ȝw`T9Գ@0]! 7xjd3@*HP_125Y1SvTQԠWHޗP]kg3ʏ~;+0̥ h\'sa::uKGBh9K4' <*W/ c:q<$jl`LF+b1ypmwZɾ8 AºlS=wC=nJ{1 lehCQ%͗b%;i‰X4cʥtnG\$ubZn#s;&>yY8+/)c^W&~K~90Aizl % HcUH "@ء;wօ [hraYuDZQVS,jeߡ2Ȕ&4ei1E%Y-XP oUV[l%E !3D>G2:d}ʉmtnAتzX N i֫D#u MUbD`&qlJǕ)ٹ\+uĶ$Xd 5+9mZE7Y>YF[;?+kA|:w^KA?&B"EFqŝ UJ<*IlVպѕm[cQuwWZ9nxhSa97+-7dj'J g)w+t,L[˟M(9a%4 Ìoɬ}纅&e/yt珜?0r˖zIMvfa)q(GԜ՟<Y.BӺ{ThD'^.3$O$.DM*쨛AChDk\XPD\VVѡt"E{(RӢW1LPE)њnD1̼ArGzWwE1!o-4;h=|f|m"eS/MaLȦp ]ko2u?STQG9WΓL 0ڣVs;5vfAаE_W{Jȱ~OET#-@zfx|:ҟ^6."1di9ZBjڅ"# _?#>\.{d`2[\^̧9,I~]'mqޚѓ_q$yG 5`~Q`o@Bp!!Lt yhIa /4*EdΏ6HCxK'N㬎k(+B dxĭ1D^2*1Δę;s!7\S RLr]*GO4\cBDd1) gxE?K&S]*PR/s$*\[q,TTcnDvx/&^~[΋[J!ZuZXRD8LDX3G,Y&JcYPJ|aƈBz@:K}AuMCVۡ):/NeE"҉J QT|a!$D2d3==]aUFOrW hΗrQ_(PmL l6,;oǃ5}tU@ͱ-z ucJ;+ ]KT^J4g2#rwD<{Z\z#̔®^.CO*y{qݒ,.g4_ _l 6K(?\NpC$#-2V4+3/vpW ^ft1(~Qa/>dS 86>AD ja+ozIa#a.lֲ rf-b~8'H&4\BѢ:n¤K Xh؍ZpU[<ρ*؁Qcn!,Q hDi)N޶3(j3] N0 x$^}Gm)SYdlk={)wD`+$( >$nSpuz9D"W7vEA"3Bع*vɍT|@ D#К[8/H ${qO>rعc7]arj_Gq?J-F̔B_ U[=8M3G, SL#\Yһ;`y"/Vg3DCS7DgiGeET؆k0_Pω(@>ɠ҅"?UYYR}ZK9:UӨ O|ݐhjQ3qlsAm/_j3B"z FsfrdrÔΌN!m榷\ڔ$J-=]oКl>ֻ]8l3.'\{[pGm/c6o n .)u>6;$^ íԧ@it(X^G6O/+eħ%L!K$ Qf_!{+ΓlEa;0"/,Tox.1f`)d5NN&,"=YV4|yFWPXV~*E?\~6U+>z 3k%K!amP ʺSr/z_a5׃\RQQ'8(3H|@AĂ׫f@Nb )qIap\HvB3^Ḙ~$!Xh?8\26H$Q?v(ۏ*g;aI5 $BwchtX3תJYQm=Y [cy#AAە>( {I:ߎSM黺} ،?X.ĴRc(Í:$nz +mۨZsm"߰>o]064B*zR.Aw]&@B%; Z=Kěxiž/yJ\_:IHn$ 63F.0Ѣ4n&Rkyy "YAt@[h\>@ժ~X+Iwny(gb !@`C- +ל՝0.5P=jЉ.>9׸lja׸ 72ݼ/(-S}ə-KQTa"3'LZ =!y5cȣчҹA!uFlpc涟`hʹ-X~#ޣB/|K0 p9]0׌f@Frͮ̾R1QyDjB4Oˮ7?tFV꺟ׁiG}\WѢmˣ3RB*kכ<鼪wapHDnf7YFUhqѵJZqʉ47`Λ/ۻ_5Ԅ]#)>xڅy-P@䭻iǷ/\' B!&{,pvdh, .>UXe l1.S Ү#Oʷ7/Fh;":i&B(hg/G0 #6x7xd9::)QD]^0A(L>2o`㯢{$kZ(Jz+Hi8HZGKEUf'ݓ}Ff,3hӥI h ED)M?K SdOR/٬)LHVӧtKAUH_\C Q4-2ԯnoRȲFtmv5pϳeF3*udۍ $m>~@n( CM/jABUܠsZGJ{Iڑiɜm?JqbvUb=t\ԈۥgBUF^d ¤rU:',@ܯ Ql_st"|k4&W{;vD~k~ Z8f6.@29PuqCn*@ xD ěq@iqS˿6Sm>bM-1. 툦񋫝#*ePv3YaZwBv7[ ~j*ut4qY'>=>𴤑䀑r}iz3ipSMҰIs7a9fT>Ѓ:1 ~ ȣ΄H4~$PvT6|l-OV?Ed]s7iHKY}Y5X8{@t0ׯ3A`jV,#mm F8|3_y|8dt_\uXI(ŎlkI.yBBAo4J?t`WҏTw .n7| dWz 2rgͣ%fojAhbaYR мF9-)vd.(G,BEW 6~bܧfoG OUƴM̰Lg+tߙIj4crR:O팎" {,ѥc2ž ׅp7{Te-VY.a|: 'DˇWVޟ`q}Zqj/DF{Hq lyhA1xvzWgHr JMmJg3>+omb t[CBEF )$3f^KTY(=f+B{r)|Bȿ+_O#~>}L޸<_5!*zEnt~;=aKY6߫SDw !T z´'M KɄMxBzu_Y:)u.5^+酫PLG%u;IVY[IMo zhZJ&Gy h)F2\\ll>RU-'X:Y|OOe "Fq6a.l_Jӿ_@egPrᗄ_rՒ"QYUp XmR!} 4F~ÞuOSXUEJrMfAs2'bz#=fF:Cʿ_E6<b*fF d7Ē\e+QIMhD¤I|B#[KKɭ?i?.ENy]8w p 冏Ӿr{RMUQwfSʿzxߙ˿k;TD:`;ZCb# 8?2߿Ϻm9RH*GsS=?+yv Y IMl7<[;g<0 SG&;qvWx _ŭ-S͂5?QM"lӗV-URei@y~Eq ?Rfxҭ^GϜ:|>Mv!̲6f ^*/#^%"@.'BL;>'tOy c˕ nجKd>-L瞄S ªALRO4ٕ:1*6S~+بIseKnOE/3R9 0|2 i3lGn6&,]Gn﮺SM n`5 oDR~-/t[pC 6톳 #Azl&sgcs8?ebj鏡-~bp$F$Vp4}:il: Bd:֖ZCOpG R eg[5YF"eԪ" %xwxlRIs,p#Ga#.6 &oV4zyII!6Ɂ/Z嘦{^et|)sM[AY4WL oR͢›7=89V*fk"` / U$d.(>.w* )P8z>H\}3rzϞgF^Ld=͖\_&hxt ve80ް:%u&4ND ȫIiz>g>7FЪPDhwpiM a'\l7 Ce<P'<OfEWFu% ?ңE*vOsTF'YR59ڱ*tvv82TK2 y]@tb_aj; 4RliP@b`[ 4?sc ECj[9 L΁$؈ENtL3͟K[E#~,CwŖT0C׏ߝFjI1mv;86r4Ѹ 0&/ ?8 &HFp`_t㯽&g[IAeyGqLt03܈W?V<)퟈,mTj 8QX7pB U=J8)q23h~V( `)j;mwҎJ9z,Oc9(P`%& ~,LҸE3_&Ԅ,De?sέszYiq"ޤޡq"]+ %㓚rLQhnSJ䟦(wmeL8vSQ/ylI* @S|>/m(87<hϴ?q'Y6vϰɱf/ObI\{eQ)]f-^^ t 2 S %k@[ub.Ewf{(OԽ<_V@c  Y+-^/cyCb:{ $PIXw-Jy/)G&)wSk“Q&_Cô[ 37\!Ve"P6U~鱤AR@]oa#zXy?!kWlfcT@hc ^7#`Pv޸63y\i*=дY=zQ={a38Ǒ'S(\*O- ˚odV$̜c>跅dtJ3}Y/Ȫ37uu@a^u:.3NP $n)qĴՏtpi [0YކObRt\ V=hd 6cQֳ綯ůet-}寁-К *aF{ZH[R6Cʕʮ'xNj;(I%,:Y)2I^^-uht ft~螩]PU")+=o--8qzs!DFOfwNT2㞏FZG UczS~_&\:sgR[n eHRYTpS{IsiKVVK ּHe(P(q&r{C#(GN$qUmalpf٪]vq_w{ T}봬b6m;2KbY4`2LԀ29@c^'O['>x{rz)4OtZY=0mX8z!0y1UN-):GF-؜N3W%lTpXlOmI垍CՀjxs7윇2M|nJl'.K(y8ZOo+]xjC.u^׮J v?MAq#U1s 5Qyśd7P dx91y#/AR{٬/ O?WE_jsN}uQZ .TY|_DKf(Y@l$89׈ia=Fo Z0**6ĉw b8(љ#QCoE Jj8Po{km"tK*Oz?fB4%Eog7o_U8b`BP#"t=BE~sBO,ͬֆDh ;!%+6\Kl:( ߒ!wWrPlYPv 6 "b&DI; Zj$b?]88Ѝ,fáS )jAItJY4Rk~\e]7/8* 2'Bu"q>$? 3mC5I~u"'kK ("Y߰;0v`Fl!G;~aބɓѿZ֘/.fV~ vp'/6龪@+r=`;!AE&ТR ^ hZ_HS8h&++cZq0p,Fb: H)'\#Zg$1kWVy'oxb 515L*f!QOΦ A _XXbB&hѥ9^I~uy@+ 3hݷ斱PR08QKlDq _~|v[g?}Kg,|Fmv^mѓ ?;2u{ ÖJ}/eҞ>";aC@Y3Ͻ ^*@eq)6*|#-A=Ѕ_j̀l4;Dz{[֕E(鳻0l(!yss=o*s|[!2؍7R:s`>+or rAӢE*6vxp_4fЍ̰6|=lIj{x(qPNp ̡Jo8pbرt\CߟjY1bu~Mݿc8p&0{jc Q|2[dd<HFzaX.їS`$xk8ț_aܘ;5 /@tpd}@.at:Җ<S]fHlAti7xj D:@~34;QkRf6!W5pEmOlj ZԿiPysMSVîɨS"YB;~Gִ݌+Ԍ1dLJ8Kd-^Mv_|wWgZ(L`% W WxEqpϪHffї[DJt;T#i/68Z4G|H; p0ou3!Kv&R9hOgH)jWp#w￐:9YСWi`ޖ#;28!YQcYX6Ng1veI_ ËXo*f3=V.3D䟗sC tϥ4oa,Bv-q(2`tp5s@8]ϙ٨LI-o7}P^N COIf >`Loˆn;3U^|\ڞ5ᨗ)[QAs&1{2)*J;J9@1%uYuT;UC'uL51^YI4 UCHbl:K,*גm`ai22?{]Zm//wg;}أ|aܐp洡;1_qbJ3 Ut#L `ʴ|ƑLGG Ԑ$L7)ͰeS G qD ~j[ J 8K@" Vl=Kn9}ۉPh{h{BpJ5L_wQL|NoSdU4^WD.6 (8۩A{G@jRrnjLWIUI]ËvA_F3 Aa T#׉H3e9B^DSt# }Kt3VY77'[◷ݒ7'1$lnӿT¥3U)u99^%ez')i?_q)>9-A&7=zn;`Ҝ3K(KgN|2#>VnWN5H640# g,YP+.29 2Tx"/ƢL7-!]u1h682jAtk%笨^EpFx9wujW؄teڽ8,_nrSCY~Lыm:_ ٲj PaG)τ(iicQahْ"5ϯ`$蝮'$jy"N>,qJ:=[k-":}sAi_ء u;lǁ[K[ꚯ`8npoGa%C 'zr09$1jG#jj)xF wn>RG +Wӈ/C!rݱʴěptDҾwU3{B Π:2/Ğ_) p2=Q\)G{tET`{ _yşI"V|TtIËC29%]*q[9&5j ncM/4" [ϊxĐƣ8O:y5tq@QѴhٯE(W@cjRtR>m ,ٶX/BM.:ÞN.JeI|L}c}b]=sGͱ9Qbsd[Kcmpncڽ{<Be\sjó^Wh}A* п,Z~Ϣd1Vk;00SL;8dʝn7p&t7O@7Jfonb`.56u 3&(wN@~b}in&ȕeVfa82I(N %#h{^@^xOTQvE bD4C\Bj ŁVĦ|S"Uv5[[Tw78r}@DQ,<Ct$?4| JPȄ,A'0_z31|3twyG?tTU)$(0#XK, |`EF= ?MIq?"@AKu3牒Bx 53F|j(hW z ]Xh(̄PP*P tP(}+Jybb ǡ8[.luk|2=a(CKv ԗX(m阮QM*E[+坓25LpYNjI_ʿrt/NC!E}`8J,PRR0 5~t/A:OY tψ =<^{֛DKg=Q-X>oup73~+7nB5'틋F.9[ʮxDZ\.0{Cu~iCV@TҿAy F1cX\BOTqڛ_N^ЧĶbs{2>*d-_t|J`k,¼4Ɓz>P6Pú^y4x_w; 'HFCj,_-qN&ՕAr*xYy)aA<^Մb8H>BϮ VzAܠ>]<[JL`:Sh5|+ "6MEvbUӕd_< Zޭ0JS|r K}@eF@r{,_CV#%n&t dh+qMtʀm YPkSKv޶~̔p=zQo-rTPxPcDX~s5( 륔qT5-`|"R_b\"B9qSuASi9,g~/kB$L!j.A =S@3b%ܣq_@9oct&9'NC ud"c'51uB'' s|/nZ9>IB\ JBPcd> ^E #R}Mvkͺ7g(5@K4,^=E =]=C~"9s?r1(LؗHԎö릯HHtT=:*#.\nwaQz/{` yܦ0yۺzOvHnݫ8{.L:Ք1a֮f31WX6 J7G1asT\wQ|iLYE(r$R)θŐAԟ$6Xj3 > DOͽ1YGZuK߹o% ?G0)XzH]4=sI| j%W sJx:(J,xEOh[{X4 bjʥ2!Ҋ剁NH7\"5)37879:~ eC"J{Ș"j7zl2gjd3S{Gn ҷ4 " O0N(0dz$~GKloй-N?ϷrBaqԹ@àkpm,gecgQcnWvr 8xOj Y-qg)w%Ki%!7U_'iFߠ9䧥bԢZ-Zs%ױ wp׼i$V{}u􃫺 ݸ-Zqy 3V{tQbK6xOm(xܸnZ=RgHm0dUCBCA`ѼVCcig/FEsPI". H;t8E6xnd6Fl^}cL&sP~/Ȓ҃b V=5l}OG$P@ 7A Xo(Ou5zғ~ ,kE"]~K|B;[J`Ï+~VPj_ƣr)T̠鿜_&ܷ) _I.u=?>Gԟ#a)ΚL3 @ʃsz-uOGQYƞ'>Q]Ǯ獢.nT6ygo3L6چTxṣ}0oO283sb1kwA1jf#$^ʟ^€1r̯u7\:Iy'@E^502=H;Њ6jηvй _h0ӎ"yDUe .SAIDroU;P( P.C# SZ&$z.T2롐ؙ gO\0}]3#LYvKIP;i"[1 l/R]n)N7X|p-o-&}P=errΰq?gZ+ קI}$v0k"L gmy}yIYx`1N~huS1,0wWa50fHclT1wO(ҹ -WCϺΎnii qd$?ÏMɡ)v.Бf@HSa```KUqQX%R'H[{-KAeVL\Y`&Aq7IZs5jS(Ma!3W2jt(b)ՠ7gR9l5&-lg=hS~G!qbc:A 0K"j lmM.:>?T˿Ȅh6j>OA䶶տaPP-toa*U`6!c Q˚y >7,׏BlqBwR1)yBg*";FT~kFP lq`ÚaxWHfѕ" njH%sf*xMN}`I]Ϲq֗.*[Ry qMe YS&Y^TGϑZvKp/_YSOCPJX(]+3F܆pXن.K@Q ̧jvgW:MVF S6'? Eb ,Tڬ:0}}gQMnR(]&0U("q|l_'~N;vW0P;65i OU4X4vͩi`{QkuE8Vz䩴=(CPRr0ʏ*Į!reeO+3d'P^mz~{ ໗M&P9C-dL,ghBCSx:)W)X<{| ^$F+Ncj| 0엠@ndT.|ޟOВ+c#ʚ|~dxwIذҢXm~YWbe}`QR5QGE4Ζz֗2?SU":'vb{ D:gimkRNLoWg ֟mK I@)8eԷjtjCoLx[61\!-ħֽA1Ig$A~~ۥZdTD̀;Q[˵R\M&h1K=Ox-Cպ~eoMyy7ܖq3?se"qJ "AmNYn)KyM®CE0<[ċHʶW|D}v׆'pofI-w"2R_ gq+bƄݾ_z ̪! _G|V3=xg1@KMmPU.G hR֙;iT>2k~Av*;"x-+ Irb6g_GP(;Q*ف/uH_!^dF`W L1 >imbܴ}2=Σŀߧf¦P/ ,.&N?Lv(-6c4÷ ^]$?OxyQ&Ѹzqv 7ރ ]@[aI!nWH7h\YگEjPYle!ikӅUr2`u'.x=إ7+ȗWgW>w1|ϛ}J͂2S'Cbo'@/ R2]|*wCa iGGg k^A385ntYgs&JLOfM)W׫6Qz ܯ#x~,Ɠ_~A̓##Vmbj~4wo0&zߛ}-lK#͠L3WO_U,kPKP^͆<6T$X+ާMxC5uT w4#| ΈNӉՀĤ{7&IA͑<mbň`A:Gr.\>^վ$]blȠ2ohE٭𗭳sS&Y1VEh~,K\#:R _@JR(vPڧ2߻'MM|)DJW^j` hh-0y7T[)qcu*e#"R4]]{ $pᅩ >AtQ%{G;<(<6j }ROGN͛)o7ikoJĐb8;VsMxCv I6)G?#$+hWC+o_Fpv/fsq@v_[)Q ;W*KԪ_.yln&a*9q9AY#:_Id^8ͽOV6[}&3eV=6%#]JT~ɄG5ū2ѐA{6'`UZNfϝrBxqi-lbLH ;~??ܚA Ű/$y,v^oߙv]}AwIu<~޳HriOh (rd!~ zZewӡ^\kRތuLq,'G4x/!aY4^s3y_7 \kbs杽najZ پ-=0\_Ry;hD bj[V8z'E<bn*HT-ck1ɖ"ajrSޤ؉5Qȕf'VMN?2J/ ?ڍ14"E`ս@+n~db"dŵ/9H|dzfljP"!\49lhΨ϶_̰ Q<,;>MۜQB/F:P^&L;XؐfSIJpnκYբ ׻Л?{C-wmD0INMau*-kpsLg)ψ:&#e(;L1 n\ ;EM H ħw }e8]c2Ks$JՌL/mN0NфPW6]hmJK7fq7$|1xA1: # rE &EȃTXC2 D}cͲe,ohE$1uaIBc@¬mŽpiɑ" 2|EҵS$ 0xpLO5-T5hțZ޳%YTR^Ei?޸ %)Kla@Uz<|2E\Äl%[[@HjΊ?D`A†j{U7c{GU.vOf@^ѱ8hN'{ug4-Q&ބa5!qXehY'w΃vǔ))-X35C2'mb>I;&R0ڜ*Gq[Oܘ'Ъd`Uy9-}Ks$Eu3Spheat&NawGV9>k 6`y/DH;7[r{r[SĘ:Hƚk>W(|lzkh,-WMǪDwAG𷾁P.. q=,d>/Xyn}jպN,1!d/U8v'BBN|LOO^䑰Y<(ƤQ1¡t iP{ ?lDsq~:B}-_oykpG1AFIΗǫ:R1B0({(qd!H5DAQ7/O?561VfY.,qP;"F]H-cƌ?CC@Ux']Bi'l_kc~I]9{Db(>@YbV:2Bb`vٱvlmDwuhyI Y D*p2+?#K8sJSk#tJZ2 H΅_ht3Wp糑faJ.EjӾzBqIRFi/"9 l?yޥo{Ԓ۵^v K"%dIC3 vJpzvbUz#n ͵g@!j׼ȓ0|V"#{0b9ms#ᵸzQrF E)5 Z9āq[ bo6vK3y(NQdUovzEq{iB]u22 =|"iu"x*YKOTVz؅mh._%L\af/CCϧ Uo-GQNPᔯ!:Xlkd󭟼NӺ aeSԵ>q8j<-!KgǎzGK?q'ho(BIJ-cQ m6Vs6p3jk񺌯=-w!ӀO^*}GX:kfm *l')*^xLz8f yAJ$vQo)B_y0 -6ŠT R(\Ja&I=DrB,>Cnj!jW.Z)Z {ܖY)+xXzRSr8[Dx=nWpU*Dxd(J "eg8PنRɨ]sokh1Rjjb3J..JzO3]1+Jy"Vd܆zLuqH"OLXK",ԌMWŠz7+_$lp9[KBPY%zLa5=bOR&kn{U9lG@W7_ICg儡A!qMg2ڤP@ 4k[61mGQ;gP\6˿ C9w Kqd{ cɪSQݛ%4Q5~+2 Y]y[u~J.O9ia׳l'tcߢT5mC(XtFi,"pK s.>lB_m1oɕ՚Rt . ˙/APڱt% P֣7P#o:$j6|cN٘p)D2pN=ؿl֩ o$z_Dݵs)ե?KrY/A=liv%ZgG[ 8uE>͟H2`!o6FR-ɳ[1MQj4{c;.nkc8w>qk枷xX`2Tٛe#:ϓɳ3H FպqsF&gm'kOMCTdn5[qG2K{Sk􀒱wÁ"!3j7͎Rs^\m>PEkփZUo^+v,gTY߈IAՎ=$1Cr}m>4'|,'NK(0\%'m\ėY@[JT WBHauÝ5Vsmd͕D5snEIg,:?2BMGƅ.27}ccZ4S/!Eco5o94OZ<ןLX>rC%puO;x3^$+7.UT v@5B@:l6! oPeCM?*uksHqz8 w 'gsw@\A٦wk鲖@Y(7˸؝V4nJT ]suyY0 {sD\RtV6zvBN[/v &S>FO*Q H2db^mKIӡ &T7^\DU,;A$0s?yA;A|b:I+RraM075;}*3̔A"J2-35DDfsE۫~VZ*m> M@3U2p%\L7 H{ 1[-tWP᫦[S*1"y>1;\`D*]64CMp|Lf!掏On8_UYDV|۷>St b =>yanKBS]˩ Fgƍ[(~g|dM=J_ĞIQe{@kwrʖG.%#t\ϯ^TŠ4S%a-v@bK7Wr 1p"+5ƕ\M`V蘱90x$<]ƟP?]\@'^HkLl%2cdR. pKJzC ~ 1{ >0FSłdS%(Fo*C𨨚vU@xtnJ}io`ŒYZt̊ඪ& E nFtKɰ^F dZ- X:Z/Em8rU+,"<;ۍ+/(dr R_vTPrj8M_ffa^d,RC?G#m*)ygĩY#Ƀ['k rJb! ;AȔ8p^'Kf Y R=2lWc` TI [now-mrM!]  M"ڭ LP3;' Z>G"v`d`F}1!.ϛ1F{a;E-J(?l bsڝG6vŴ89 a{ ㇈mrEn51 ЧA[PHDx5:kǭ*QcS/1Jo>&|녇N$a)(K1yBibEB!ӕ ]8؎`FU1z;ůCT]MDl'okZMU%OFMxg'H(c: N DE,)YqA!V CdK=$'J@ dR\Ζn7+Dũ?&`tnig=Qw{/2?Fh?(OhVѓtJy 9?egKBJw0~d՞MOyʋ0H r}aSseGORc8vh.UaԷ D5K)_@_A?GQ/icljpU[%fi*]GIs%g7KኄBOZaa) Mҟ`,nm?+D^L@^ïB!NC=H7EuE-\qZf]޸DXʊ[.k~S,l[&O]N2M#]O*ئ0fD]b WF2Xi1ף)j8A|OF5tmZUBxv;L-Q1 MvWC, lh\W%ܭFDin7%HX OBlPRrCBZZij`sqI]^u4~fqD@㟰/H9=5gKBR7j^9[zAvU p:|?F9˸+%s3*\;:q,#)6~5 N6^wKAe|:\A2d)NszaOvw2o+C/s\zVvƑ21Cp̀Vf#{\ۓH u]LyLjr/&9^1b0ʎ)!gy|YDX(YxMe#.O<٩@NBYÅ1Z&d*cBVgEq2-"ToP PX,ts,cÅ؄j-Jctt4"Y`f')k-=Mْ`c34Dygrߚ#Q!9m]JXAOːH,KZ& lOz|uG] z@âQ]?B)瀟[X0z%M(i{۠ l ~b+&@iF.(È+&gn dٝ]%{%WҡһSl~j =^c(Bf(WHhJy-E2:XHkVAfarg Ecv\ۓ"tL%{К2a+nIXge‖_SG~_Npupʅ='Aa&bA"%ə,M[e``a>P%b: aW#B=rDtBlNz}sRf1WxX_N.H6/z5fbz2 1jˊχ;އoT!-h2p2n̪%T9WB=Rv"g`q#IKegW/SKUHL ֕J&{M*ɷ?8pS0{ƶ60D`ucoXHtܔAI*D{]FPT@l0#b«vJ R8= ^*σ)=8{*z1UƵ*ڐ }.2޼V; ;֋*ӮC3nIlT6eό?)?qDNT&LiNbx-S?7G;]&wUgc1zw>H/gu`wp)U5~G\'}5@WnnD xم T2Pڸ褜MU#P7B#x"H !Oej5ٝwn㹝? f@lne\LqyF߯+aWkVϱe ^A5}z#:K…LX?VrE2eMgvډrG8s&u@P#}vVCē6k0(7 ,Kȉ=Ua|$HYY ݋R8I=XRm@v+ 0ZMtU[qWɹF6 HT|F!_D wo#Wx+E8y,Ql&NhSPVQt`1AݵcӚֿxۺ2uZ55!eAJ^vL F&8ՌK@d{o{K.zhnm4Awr.Ѽt^h({+/5z r@XsmYyf{^ Y ߴ|#Woh㖷i |7iZAހ4#',IjVh`${SQ(9T'M7f} +(+7{A+tړ)$?.;ktO~"Q wiXj*Om7r'3Eo⣽NٚɁP=L ٷɄ ^n}'y`'a0?:v#R`djh o!֣RxV!=dΊ]-yDOޅ`_!!(on^#bTȊ l(Xѽ3:XZ5x0gWV[ Y 9:#3Q L|yo`^~_FmLiUVh;DD١u ݆)Wj*BvZmK!Oa>kF־#g~dn)޼Ju߼'Ev:åq ʟJQ,G9BȍJ(t l=H⍢F3*>e)z4(G>WΦi;*@0 bRVU`iao*^ %fǎA-q>iTQ_W:0,ڄ.Fq /qAmä6MWbY 3#Œ'*mg4[}[$^RgLPΚ:&3}#Wm(!g9 \O;jVTo"$b.ʩV~ku&ϧ2L+`9d{.:&\TAdL"6zz;DRGxǽ~D^]Ą?.hx7G!<%s)v8֕d] <^ۉiCp j|Q#y$\i:˰a`00@ʢKi4qe'fYX.xP|>tnr$,۝_d`-ӯ.nyVgC(Q 2ZBס;cBΛ?X^OQ I>r&!:҄{[{B}W.t' ?d,F\">?+L|3%)$iOX?q9ݤE kWNTB.d1:S!loUkT8\FRYj$ʶ<(vLmdTxG DH#< Pɂ[RX\uAZIt<-X]Bt S}z#x F^|ہ璜?L Gs~ї1zf"AUMAT,X'3A:dfk])LknT겤k[H}E]JTnr;m7Ft]LΛ.XqDxdx쇪x1 ?K`v i^+/xlb*埸\cڨNmO5%!u ux.jA{k *UA*HP-54k@(SN3HnoEHMLGnFz_\p $eZknxW-Z !TLX$~v!}Enn ]lpI{)j*nOIjy]#+TTW6]|" VħcŰLhW|HwnՔs,IfpIIP-"Qvنy3V  _sg⭚ꇬF蚫I QIҥyKsgB,-PIbH`ȰkL:'չ?^2yWNvr搆,EXa4GÌ8HGHr'hzvKnM|3Tֵ1OA,l bәxqH7+#$|8iDm'6r>j]'.pDie<]1 MD|j%;RGiXfkПXI,׬ MU@Jk5)G]s-]n%%\kyӭ3TP$e-RM drͱi \9oY?L |82=2x O(Ȗu]'l&WjghblR3e\usNc{]ɚ< GPLxyt2_l!Z!Xh!q RdT*0"XЗôx[Fy%Fޒhހ0o_:sSXN"JvJ=CxEimĊRh1!qKWL3>%>EtP^/2vȌJj$yk\ZgXS5p&{^=R}~ex\`!I1@2_=(~eU܊y*:Wzd@-yApoCmԎR'#`@j+x\̳i^Eo,FJ&\}F09@J-s-t?gjkJ-r6Nt]N/vǯo[jN+P?}2Y߲U%J^6 hs "^c *D?9qIb-NhU;4hX4q}ã \ۣSj+aePMdVwh݆aG=>O:{zkex$3ҋX/=an'&Hxx\nek]n U;ItV z?4A&E%TD)i45"2pE}̙x"@RWW3ETޯfB+ U + @N8 I Cq<7`e,,z7~$\ԗ]owP@9-e <Vaqn ;^c!g?7 VoF//5Eu>O$Hc>dOLJ*dq|i\*>#֣U6rP+s,:k"i)qB$($ ?}ߡ7Uҙcs$" A-hTs=y<$X;q ’mN pM~[*X[mHcn],@g+*K&Џ[.P~_UPqza)B²s<ûP2RnCKLtõ 4OVoE,4r̢~`g"'ܙuF.ۉ|䲃(uO$z|7g Li>6J++ ߸ra*!l3aO/ާ oQazq) IigNCb3qw3s%ldɪtВ'Ay+ a\ɴ˚ɭRR(P8g>Y@do**@̅yΠ s FPS~$Y(K: xG-4{~R5[eܲ;]iTeof?c"u)|N P ?D`)hsX-+ae/-TU&%ZOوA]ج?1倪տikPNig!nm@ngv \cDUu[} bd&@A7,nA1*ӌ%>^oKn5(˄9ЍwY"\jP GF'pnmgs #/=rꌸDsm1[e=x9dHz2q=:p@n䞕ֵXi0jaڷwZ쮫N}ZEB8=2mӟJeYml]-׶7pn[HL>A3GPX|Lfu&-$+`!+U\Yf//5hJcaUlqmVҀƞ3փRTL.=qEٿft(@"}š5iQ3"0lSҴ칷W_ ,1 MRI55tPUGK,R ҥbWSjV's/@E;>&ht,XD\WSB⭞3&78^(BSFKӫxXJUnaTÆ5wݿ'GݯW/ayԐ>fAwL~k KXD'[!CZIf 6g%/ h"hɣuٝxwq]vU\xEjj4V@Z6YɭW1e<8G#.lnGy7ZLm9xeO*64Bw-I=Wk4r g-hV<\RY+%u>X]Rh8;\xK[ /p&6f;"˗fß^Z:,j%idcgc ;!)s]zxl^9ңOlY@n)/߬L~bnG F0IA=*d0;e>Ǩ3.zW\!kmX;M Bjۯ9{[UB|/7sɪ-韄$AA$aа1vqd׻5q0p{"9&8KAMdˑnE)s٢!Tu4N 'tKt68mo:vÞLd&iv.L=EK OJerX$F3HdGֈ[Ek7H{V+'xOTH{zNldSB=P!fv/\9QJ!_Yq.C{%'UO`^3+3˧^iuV{gS$kaL*bތ0Rr5]J񜻢j[,;=/h̨V|Ze^$Z/vl`wDF>BnIVgTIf$ ǰZxEOaHGϫ,#3 : su $qppbG5&bM$`\-K5HQm6yV9ګQ:v?Gv"_1α㲅{3s4XԻ^"9 AAEIVF*3JUp/.L4 I`q=݊Ca^*Its_*yҰ4ɫ<'O1}W&Zx2D9:WiL|ݘa$}K7 s69iTʋ|"H""6B"MݻPU3$Kd _VS3<|ߖTi>w4T`{Onf$G*#: ]k6mbQLi Dl>42a{[y_)@]TzzYB+#<4۹`d`3,hFK=Ym+Z}s. vBA6G *MBlpi[@ k{9jQm̚VJnw;߅<nOBTp[ԁj-,S-e{q ѥIf/BCLUl4 C _e\,xL{> ҌҜ'ŌNKWœcP gK9u,<:m,2D/e5:b#9fijK#bFuF2tvQ-n>\\yEY^Bk >\Ԇ F"Ď!oKI;k@E@^TJ׾0u9…',bHnCS@Wؐ_IDX?PcvԳ$iW4E|^C;z3,y J=z\k>AYk>b})jM;0!?%6fg"0*'zݡhÏ 놻rgI0ʳQ8!+ډ}Y%L.!h /U[lZE'Ȟہİ1)66؈Lw|Qqǀk^Yυ [>lFcG D` *R#YO0%Fz$A=ER^: D'P6Eq"1wLL_1.Ȳ[K!S_d7 U+^[T p5REC sjZ4#pV6*G+,_Sy [8BIJ9 3?lP&Bmꏰc1rbY}-8X-Ch2#_Jzق95qa FZt0+]zo4^ )=/^b[ati1c m]ڋæ=R v oJ+SyX-+5bʎM{7-d.T VAy:S|=.Rױ4oy:(OYRq|d6DsYi 4\Uæ-(t,l,'D-.KC'*H焻MdS;__ 9̈́׸u jl=H I 1p!^WwR|"}Yx Pi&})ggL|q|(XAb6-w@ lNMZ& '=!aL)sRbiC ҔR$G!Q/j>g%"0LwGJ3Ez:PA}QEf;Zczà ´nfLC_<, YK)mXgIsȤ|M8g3ۜ<zs1 ұ}͏@$ (5aBl|+b;pa6M] " tֿ7΂<82bԎScIC骢Y~lV831n)C6}05ۓ+夌5Y^ խ{QgMq)9`U!{Y.XYH rRйi:*eG":d\%'SE+<̭q+*mLL0|zLhH䅖,ao}cU^1^nǵRTKK[-S=3ޅگR$:윦mV?߭C,bwaO,Pi!(Fg9@;OCD/_iymFVvQ7b-¯a۶TDvKxڿ̋P5Ct[`x@2QT빮+DϕӚˎ4o9qzR {mlЋڴx+>lߚHOV,C8ǁ[߈Q+ Ťx+!}k(= 78x/XD'=fHrN;.S<$6ԩvbc(^j4e](s#qWMm+Z -c&CFǒꌛћ5sr(\7=BbT UX2Z5Bw,ny%_L_3:RdٝnH "*n3}(LY%+~4V*6r/BP&c8S|eZf2ٟaVd@!m_!;_eP*␴3΁@\e!v\;J $ȬQsdӽbb8ok_ACeT).,P35VA* lԢ-jk۹ T?f.KltkS*KfNO d (VjVG|FJe]5- $GgVDn/@(Q8-8.ĐEJ_EA XǶmXUc^ϱ Rh:#6MR%t;THRW;AϪb:a"zIN:L[̞;]z{Bŀdb=2G]Q⊴S ➀yk[2 0GsړELK7jΜĎYa؎(JT z/E~4H\9d,w~A虀'63uRu\%u)bQXjrk~H;(B&0!H\.8AGqW=wv|$hw(#N {'~f:+~%Ed!I{G;BXvK7^Ï TK$!B`%囥%\A2F`ID% FU@H_X>^V3 u 3$t:;|8pSiiQ;KZnT ՠ* iDMbn [͊ZTyK U6(C×K |-o">6#\3߷@5p!&NN|i",OÐ W-@ebMm,0Ve l2zrWa:ӃُRkFyZ"cW^vv`AJMR̈6g ))zqG_nֵG>u(|I -A mcU,R!Fr]G1ˡ_*%67Ja7^[zإ]LeOIuY+l>~d-R/ y: 3k#[BZ Ջ|># ZuMP i|]B%Jwi$:Hwޑ`Oy89%sSt,7D(2FLIb0Ljqc)+nM:6WH]=[(>f9CIof>z$t7vxۯ㍄g蠂~MIMHa Z#sm,&6=CP7oOi-bG`:k.j-+p<*rū :1g5frn G?.iAI.eZHnȞb](m:^y/_P &`:nȜa<4ru wJ\&_LfЯ~"y.afX\tLOZJ!bs( lMľ_6 aiD='#0Ĕ U'. VPhn8[bь^1H}Ua)ms 8XU-מk3U ;CBEg}#jGaرt2 Gx.ih@d)XS=m4 oV\KW V&r듥} r:YVO.Ǣ嘟[Xa;K7>ԵBuyŔyN+Lp&>b_+](Hw_FZ]=SҌizlk`>jsҘp&-JZwqV8]u`>͵0vOn>EW3J:Ep#7H[iw ",7:5K~&*F$GW韡OL_.n4d3VQT<ŕXHzH^桉 .=ēݳТ"l!j3Ƚf0kgtfyaiBhD^d#Zpd'LO9#Gȩuq%ݯ@~PqD>}ܝH; [l+uT{ TlEmpYfTSUIx߼%^r lSJKϴ>g]YS _]CGl8`&1Tc4d"Bzp^wHtZ2hP!QĐ-%{Y܌GS*m S[!ƺ2#:@sͨ,sUr=q9HډMUĄÆƼ*t[XyA1t:NuzM0֥9A!, Lڽ xygPPldIdP+N7Tꬥk=CS?T&Յ:Ra"{a<u:SYjw1Zg"^y0侮~[Y : f cBJ>{B5kԮ܀lœGOt-9i 6KO*ZiT$8y0KEF?=%Xs&wt,1oF ;\Bq`dq-VZɡjU>@ qu-w!TcQDt}| H̆N~ZICVI%E*Mǎe|̂f".3UcYvd'n(+JKѧ_8tn \wieT{x&A'KϳАT ]I(rn1/4Ԉ;< ˚u?sS9c=,d";:]fjy؏·'*y}Z{`՗vZ ێ{e|x|-O$?·*ʌa;G %`l rȔs,tFhPNF;q`B/i|r&(+nYh)r!3jMiJm/{G0+>AO^G%LEOdF- ec8nQ#/*l?iUyņ3o3Tw]V̵&,¿Njr3"*)^@qq1AM "9r4h ~L5:mR;,!<-6-g>nQr91ѓmr{lXycK74;+]*yj9Nr40{Hpf8W; ;+Q&%z4bYec%_&q %$,|oXqn_0πsgqCbqj5 ~R0\1Q=,~Sg {+Tج l&! a@SwԛlQԳ>PDYXT2h4x4+߹i tY'eD6{SŘ-`ADg7,f C9YB5JA\>S&܅=pGѬ5u b)|IAHC(@-5 bMDgHĸt_ F:)/?:dD M4N#(z9 ͛71L8`b ufs!uZ`xmsw -ʶ;w6mݵ|$KI3_.SLL)$G2C[CNIE" | I]ɂvtZFě#4b:z26ܳIV2'㣫j$\i"-)ވ8UI=f)n n؄ ƶ-y?\MKrFhz7u£H[)wDu,tm':V<Zc * ;g 9|R]c]xPe{;|[lo+-x(`;r[lDL78-ـܺANNAjlŤnki{"mGe'6ta!Ǜ+~)9JQ@`GUXO]7QY#7N^]lA{b`[k`.RMs& WSl4KJoá BB=(F|,E #Ws[_{*vyiqxS8:2nXkg䢚 <„OU^&k!ڮ8[Rc5G]ZHiNrNI)V!ڍAql#maRo>zŗ&Ze{dќr 0 ARgb$-P;sQu;^\⭢Pq-C`%涜 ҙfm&E0Ԍl`55ԁ,#"\ )TfGd^{7ե^͚z ?Jj!0.낷1S'Sk  rłpCi\v{ud- G>hY#U` 8k`GI``j}$<<n`vt2ln3()uNYOpc1Om c lWEJќ4lknǍ)ˮ XPnjZ b CR9Y15[2);?uKnKbc1tFwjN$ I%/Q=@,ٽ}B?6m&F,dR2|uqxemŧHC&_S]&W;+OiYk։6I^)*{D I ogUĈzUx ٻ@(ȷQ$5]v8:Oo^/}}&-_ fsjCUM]-$ l^P_Z+g?`YApV>wM-PmY EcJSW0״:,-I'Cd}gy,ݡ9%&|b} wdu_lcb8A]Dp[GX½O7`[ڡ𛛟/!(琄&'256y% ''ȑ:mwPHٟ]D]qba{s!-H3<%Ֆ.VZ.@v0c 1 l&v +iH 9U-/XwmFxORzb־3 bTbyQ5BOT ̒7(_:e{tuLO|΄Qsv3l& {j82$EjG2k*,$&䈥w\Igو-"_uz(X$9gk}ҔPlI,bݼ+XayncG1\g$u5{ ԧ]ز"ay"[@ԟ%kNP[h#8ςME4tD.'a(QœS1J/cy(ޛ}W?y7FR٩ۆFѯhK;*:^JFU>#Ove8u>*rъy/hW6;U*g,U_K65ˈءfs 8~R`uY6LSF^B-& JQd06BԶw:pf3t}Pn"\Ű=%ӲAXb )h`.ưT9_?@ y~@`'%,Ѭ1&WKR&i(AȫqIy쑖r!e^X8T{Or2n12`eGqX\v-z2;Գ&beHBm_22[pf{Q⚈xj=_faR7nww7!7}=/+72fj1AWS/Bf %L1jM,[ }?dž^)alp{Y9s$}ˎ4{ʎC0@wS/T tS%Jg-f!VoC8$sŐ\s &,{1q8'|;*.Oa 6!~av4cOB9DKiIz-(KƟsi_qpl UJy,N_xC8[fIwJV d@]JjrbK/TxuޜB6*E%:KϏ]MC͌`ov ?2lkC@1ñ)?eN +v)lWbnY'5XԹb/Wll 6zz?Q]!ga a+ѿd~ES1e@߶JIMPigi&@_Fte?Fw Gdy=)d#;'7 0.)U;_LV[ wh`B (x代ZS=gՒIQ:*n^A2&݋/ ӯppCǂ$' 4OSk5X`1ëlu$ӹi:6omd7俠\|KXܴfhP45pMw^ZFoMr3$W.XJpX.aeQ%pMV1~*FSȥM7:z nl(H]ٵgH,fGGQ,*@Y a`l'ctLj$}F#SG>nNJ`~Pe_=`kau{n*(3jw-kpP{5;bo_ߒ͹18nePn}M\yhF&ҧ/K9nq TsFS4L:>;/D"YFvU 1/?w($< EPr1rx]֭NR vBƻ*[Kzs<,,H, 19q\Z#=0>2"4/׷`ysm擛u6~mQKĎ)rړÎewyce4˰I1_؎2χ&IFn'kDթJW,,T1:a=:5_Ŧ*'=lup3l'|T,_^$G2 <779U`sp:N6bq$1JUXz%8Eb9,Z)Ž6`Zubw62sF 6Ԃ~aEA.RVD@?b1F{pc#̇?ŐYlT%Qx&3/+#FpaOF{ۮjr,*+6"XE~a%B \Zk, %MU_&SYi$Lg]|vlf_RmM|";2WMt :}}+啅9oK|̀dG%0``]Z$@]|rN%$,;SƹA, Vͷx]'lLSRbw@$X <jNј+p$\q/駂>|j B?0wgN:ꕭ\҆Tv;1r`Y˙%tsC,|F kp9"XdRL^}]=[Q菝U&K$/} Z^O&kq/kƻB*HZ\ &"cbѣ[S iC+O*`jZ N'!,Aq ~%':^(4aWT ,:Ba+H&7 wGP[qOW(J]RزβfOUñ"̤(~PL-"t}TW}Ƴq@[=x*!@E.;OY'hdum྄=ϡS}N8^81,F^~NC Ӂ?K2;ZZ[c[i~ g͛ףO$h||FךNzm[q&='$K_Q\ZA{;s ~$Sj<7" ϏA7MRb'Htn π? /HL\Mk$ȧZekOCQT`k9q%Ev* ߚۦnM05[_#v(-Y4Ԛ+ӽ°*A$~yXFE?)1.&XeH]$PB rea zF#);mA@&w̼{ZȼM7a+\Q>,"FD%⢖a5?q6 m7lT~ǐ =zKhNKeyZ#h O9`Mڮ`D"QtaͿ&FYI)+ @Jҗ/~؈q* W毄f (i7}! Drm,Qzmh:(s6~L.-Ai\* ٶ ڸt0\쿶Qa_q/: mԙ A`s1NE-/Aj-X0vy1g9#*h2Ŭя5> {lb/%\mt-oKLG4Ub1x1iHe e41Ǒb)p=> |0L,"51tM5sHcy(~n |s E>J(YCHǕuw JɋGtPm{f(L펄lnv?O{g$|S7AB=Jv؜S15RT~3ޏnOiLĀ?q*D;*)acPaAY q!Fyl[M) E0SXᄖ̠^=6Hff/5P\/66)HaÁ<CW;% ʘjS^Ñ{{{a qFdK5@Uc='1;t׻@m@Sb( (u  Zv@cu=Z3X}$CUSl!-=Ut h9@pj^Χ3v'4s[SFX n-"n֪P J],l}0,T0'լA*:E>,oф<;'4Z퍢%qI ?HD>X Ψ  mXFLTzR11%kQMt3V%^l=pOzAC>I=N'Z8{@EL02N[ 99ewsv_j&N %]7OkL%4%Chv޾z- ~aINc(Zo)c\/1V_ Pz4UM[P^k ۟&dOuS.Jn,TI c[u"RE|ǝў"&TcD(Hn8a@(өain,rr Dz@JHiҜ~cFtI*bs~PE3bZc^^st>6ABE0WNflCXmev tۑJʏ3bmlbҰ2[E"7_Qߘ1|4MS=ؘ=B o!. 4 eA!bQ{?WS5vPTǚZ"}Z ƈwrg.HB+?M2-V"V}tnнA|Đ5ҕVFYvCa_烿K @nfV"wov P'd{FK(4331\aJ N"4kk& X(b5oHElKln%Y=)&4NYWGx4Bޠp_t N{ZZb5c-wA,kO ly4J/!ۢ=`Q8E+<&vOJ7kFgpdC ,MK(/e.sv0hL9nIпbCD4 QwDfoh!҈:f Ŷ(CW4M 9&N}Wnv(`W{ɤ6a 3KM$L2>h?H}/l@Y?ol8N:x|yAg锭uY(7/ɶSXyAw+V=(1NMZCorؼSOv3 #/oMl X/t"~i+( ޢt0'52Wڧj;u9ǚ6nA= Q(t?P]tA*I+z~3θJ ".f5-K)p,'mzWߗW߯`䯽w !abl Z_YB=q*$} WF)7קԮ]rAPYtSFv0nծ;O#΋X0V9:%]C Fetׯ#( N) X߸ݴʹ~>Ap: < V}/a2>k<&6]kh"(ٸakXu-N4Jk4cs9/IXA@U]8ʫ.ȝiOBdϧPBi)5xx707+~ޖ$ .I*.#M5v}p2$O]o=7kg 75vFg]gh42)@+!2h# #0}Άrl†jtϋ/ /O;[U4PK{bڑle= !6Tnų9ZYr0&@M1I))HJjf -}VF:QU,Bj[}=Kof%xp &$<@/ۡ >Ӌ ˸KyMjϻCvt?' ,5" :t3+:ֶhV.E+g_@9*ٌovrAVn>Jbvi )(2aLY-sI0tTo(_[nL[kg:dGY4_ӅC@L]<eㆉvO>w| hrTj*=2j̮xώC}6C cNIT_jIv̩ 5"M:i?JN^`eW<COI#&ȑ(ݎ1<}A:g^(@Er0vr|m75(٤Ue=E!jqr /@a[<v'v&*ޓ__GC,0]6166]O jLYI{84B0z4aBw[4 j} <-֧C0gA뎿?r }zh;Aے@t@!VO,Ųu֯Ì+V 0`!,@, ,"mèVR^FaX[=z˾MJK^)0Q\`{غЙE1zuEc4HJ(ލ&ڙS=zbE8 l0b}ʯJ:~"/EcKR4\;wxlIr ZE`_iA@3&" h>/dn*N=)|.נ!=t~KJݟE:]6݂Kd$?{VAvv=<5$ƓO1ΰoRJ I,7humf˶¶Q5#C_(&~"d3Kib|d{5ZD)UUXw*'۩0ӌhJeZ^3jvѯ5г\`)x=^@ ` Gt(2 B86 q`7I>о.]מdOЦ9pήA'ûdUsڹZSj^Zo!WZuϬ,0621ehOK}ɼQZ4G4bykyK1T5l}ꦖw(م'[,.ÆstDu1L+0BH#ߠ EՅlh 8Kw@zyB~ U"PM%9*X@扂`NB]f8H;\ΙXebˈ|l7p3 PP&DJTk<Jp$qL}B0VShP9oMZ^ ub sP"e&~^8PWf>0lU{3sF TdQD_l!D7?b % `(9?Y)vn?OZbz#ꔾ Vh~aʤN87&*qM?V? Z1LʖRh?u*!<_ʸ&?1 \(mr4me#g{.#Itl*jzLWfv@cW{L.^u,82kNP2CVosy.JJO}P1Vuq3 g~zG_Bh^l!—N\@o0V8MweT-Șq+']z&:~"4Y n'Hl>ɶ.z*e[LQ~^/i#<eL:Š/3YMEN_-jNGZϨ MIς*ǁ˃2r%9hM# I蠂{>b'0m 2 g`FM '-R|GJsௌCn~H -;'5BP,m6'K 1>8eWӱՓ3 rYvK,e`:|Ze=9Uwݦi}Qy^¶mⲛL/3Rn\?Nd7bjxڕ!VZbŃ43|L,lꠟKfXE*:NZf3(ƏWYJH2z?oᣁYe&3[ D-4LKn)γof狐%Ɣ p [4o0& Z/ @k3p>]u2 =rOQmQ0}0hAMK[;NeL-vP(%zU6 ΤbOSIOGKn !/[cPCia E4g3lT.lWٺ;'{8ּM&1),Ʉ |yuL#bHYM)J[&R cESMNe u̻s{:(ړ)ȹ,Օ~1_TR쥪klrg^ bWzI"Kdq4`8-#Aey,7 C\5dp Rio4@9vJ]dpCf7`j!;alWj7]zQc?9;E{zhO]^~$vyOH#MmЫ"2j"}_I5"IQE.\_J5WN?(۔5]C#a~R) [ZI.'WyCpōJwYU\-Dll1vP洙gNPMH=>i^Ef8V7oDB%M5G@=|tUl䛩hs]yTcҗ|fH>7XH'焙z$IȞ 9Lgv8op;Jk(Y[#LR91mi;sv}UMf'q6퓽ezRPPI[dROVA8ɍ2&STdjZ{S2 W! RfF4 s5/t.-l%; CjަktC.,XMt D0s- vfN!5WaGQZF}?vmna/ŁT紒+uu ,dcIXK|yG.B݃O)Yy[j'MuyL,]/ $bS.Whnʬ\j('̤P+Ŷ@ܘvES=C8$Wae^acz j IL-Oq3EBkS x)lgl:e$YlMܺR}`IvP_ Ѵ$'b]=8u+#Zj;f#ԝ4¬S`K#^fGES e-k32iNm[6NzW1R4vΌ.+_}O&/bU|~k!xI6DnFL&P.6Μ&Q.D)Wc*(|*/wQc=FS3aH.1AHÙ o3` 'iAE`U6|_̅A@) xC-@@2a׊ǣ?Q½|}@Bt *\- Y(1탷<ۋ}OP@ytk+%\VhS,;hAPȓ暊4li;lrwډ,qƪGs)Cd F C~e1A96 how]EM5\ZURz5֝]HH@; Vb֤Y^Ib <^·k$VHfb?,vWP}~[cZ2 o.,.^ Xg !g Y-%6,}Kks B%Eŀ7UvԚ2${'X ѓmDǷXhLmufF*8{0Ǻȁ'K;'._$[+˫LP]E!`踒NwewfF;IV%5o%Co>tb'Ԧ/IC` : mTàtC)~:,+wQm>?Btʙv,ݎCgo2́H c9rzNJKF "]q%L'9!܄$8@XY_9L{Gi$>Vt#BHq[G)%ǥ^Cr,#.d29v[\?(O?įB:Zc.sذ!9bX9u`Rd*>V]HyueGj"_aq4O?ɀ,0s25)?GDXoP tt,_z n()uO4 }?ti5uy/H{AA'yw!mkvh)MsY}7'R ;ͥea278}_y禩٤ޚ1's#$C-md-f8m[n g׺~www6_[WWxy\!]ųVK=^5u'cf&|# dJ媓`H%/wQB[ٽ7 )(?AMqvA9.pQץV]9d5sFԅO$QFMODEMZ?汔ݭ  Pgm8R+7ί?ZF~@۪w*: UdU`HbE"ހ)dW'e3xSY;J +7GY+mgn 楽$D : TČ16޽${7FӞݷS.N-!&$7U()SSs3Lz1Fj >~_&^rXjCz.dCܢaPDp.').-oef!mx5]Ozȉ 5:mfIwQ@ -Us,32\@7r4 O&]}mua4H{R^d .nb6P*$Xm)-w`.}.\z3 ~*m7-N$N! US4T蒊KntKIgBM?(j*a40Z7܎RIodQ? R(N|.0eI)wSi_J+烦tg]OC6b5oK9A燾}oIb: bNhLW8%ӨZ|IAH J7AzR;L ڽM_vDjCA,BE6:=oxȺACCe^rKt:LH3H+O/-b~55S[嬏IY/@ hmښà$Cӱ;YԖO Ҫ[z]zLzD" G2wpAŒud`>LF.!y >RD3^ڀ}j)AIY]I#t$$]a O(%V>͚-TÓ>qqFuKOΗ/L)^95Oy%3O R1*?}/.:Ju #\-dKҧIP8 k|\ } by8RI"ˁ +KX5W&鉗S!J|m1 QZ.۴S6ʹWч8 Ai1ou\ܫ><4S-y=T1}Mi@ :S>l1YpB /(Jx@Sȩڼүٍ>i-!i񡂓l*#ew&)m@HehXOPB~8'a}SJL_7d,h)ҋ1es3yPX~ͱsߌ)&{֤Xʹx&"q:~9Ué1] u'X4koGPZKRVҐrmBZZمPnGtH.0ipoHWɟ!+e4Xuv+<|X>􆪌M}/GdC},$?#*jҿt~UBStDiJ߷q|LJay۾{f!)9AfSr$kGI y'U>B4wIl% 8$ៈi},k^ъ&NB'=tv 92~ln3lkJe֨ޱhwJ5K0>%]U⽐p^/4Ie=Coya?V8e6r"PDžZLih^"yL-YnۼkMټK7ޚ!ŜS& {i(Q -X^N1e@;te `cwfj-wBrr4= {`_(v̀'7ҭreqZWk_N076=^[<# T۸~nqlx@-~MڝDB'G1B- K-gC%z-ⴀL0MR0~w5lD^E@x-\R0uFuA0]^<5:dZMՁsm; ,<) C_G@~E6-}Y qcdUIΊJ !3UTfgER⺵~s-:c̕DK^$ &d7 -mFoτ_1DkrdwP $Yd3si2V~ mXpiu$WѳDe+0lBP9"Eϼ˴ aөjaTˇ>EfoVY/=*P SōЙUG[Kbtܝau(AC$)aɘ=&[E?!CTJId&2Rs4@ׄpPTǬUBrkc5WOj-uآ&6RolȐ?G|&os@ ԗ^G&s4ۑ z (D,EN XHFV?[yÃ{jZsZ6]~R7^WFϵ@OImA̖`'`lU:M1(w~ƙXTj#!jWCu5tP77Tv ƾD[ODgtjJK FKbv\[_^jrx.q=cQ=TI.0sax?*kinx^9Du*|_EjKymYTpFB |phDmoa4<1ŝ|AAQ*\ }l29-Y8{hpʒ^QSuRN^G/=yvFאN&0[16> Z &x9v/WX׀@ w(!zBE|q_גu\"B}iwm:֋ #CƬe`ʏST'/fctqcM=^:< V@«6qG􄅒wc*D["fQ&8VjVxT/l.ëI@);>غ#ckl 3/'Xs:]F!H%Aܓy,IUj5BH0_-K8}.aG_GD#eG'1Qj*>y$]/SBM輲`%ٶ_%@&Ot_v* S ZQ ?c&&z긺ɱU! |ѵZ-ui ޷̀eq<N X z:҆B_y5VԂ 2d̹SmFEGU}n51IͱBG 2 @wDG B7AIGӾSp:Pӯ\x¸UL[LHE& \2@[ "D̶nUH__7Ci\L,bZ3/JPG4棰 %/JZfΆ xd'oQiE@5WYeuRiho+_B>&u7]Yj(dL6L K0O)5Zz;Cf呭!&69{hR%Uz#LR~!Y|d#)A FBfcbQ!+LMK7΃mKd6q#,v'[9%HRʞPC4]T˲~ 9 :щnei$#{)hǖ3z_AjPG~my,O(K:[#1Y2yg 0f ɥD#VWYlx?x&P$:X-f$ .Vwf}A-9X 5Oh3_MEN >(qPVpi{db*%$zc5ⰊةhSVKF̤C=W1)Xw$׉L'$\f5Һk~t×^t0%r?c7 eIڕ(c\,̻5s82֥l eݥWFVjڐݿ'Ra@(DHx 8,-caHe:u6x{`%W~nB8BSig1\B +O \ӌ5s;ѡpY5z]7 g=w<>7~%_0N7s3 /t/hI-vCjL;(vRǢCgV5`Tu'hmejn:_ 3|# ` H wzҟQ,bu;_mChGuN!Lur1Lz6q)ZJá^!Kp~l_㌍ +nDzSv }j%|s7ۅb2溰I qJqqt%Zƙ1c8ܲc WUmثQ >@irx^dn% w~[RP@R??4$IJ ۆ?@tҴKB' _(0G OݙP:.QEx}g'Uwӂbl8 fȳ? \z򂄙i9x2ڧvK.Yt /^gqctZ|*3.kj#4u4*Mp+\VZI|"I)h 5_wR9&R'DKVκ5/SB2Sm& uɤu= vH_4| \/ە?0޽hKظ,2˝ |Q,& -vܝ$@\9eu%J^w<’.+stPadEX)P8$WP+K7tCª>,|oJHL%u`MDʄPsC;Ũl$E~Ӵ*afa!^(!8*8Y;w!+MQrJj ˴|WYȊ*arKRE =^qHzSz+ `t`1dO~QeO:6_1+@ HZq$半n ))9srI!ꑥSG42BY/bKU!9itBC(_q-Cl =>ʀD%T94"9hYѩ(8$W itcM R68ӠW:7_{jb^9QD\"ܵa8#`6a{?-"~nMY]F񧻍O^ijBε(L:$Od٤ڏNHaeN$rS,0OPkZiC]qhoPe+ &Lr>mӆoGUfr!<2a$V`)_N.VA)66?lZN{8鋓ֿf.N UuԂ_ ~ok1.Nid7 yR#YOjFЅs|K]M8(~2 ÅЊzgs0;5CgbW6bF1ޛ Y2x@K9^.)`V!u+Xl+u`=iIQH,r*VzcS:+y.YkنCOm$4Ƚ=&W`X J\fo8w A/_^WcxFj݈P4&BY07yl"էr`*G/s==\Wi .Vh!Ye>2's <\FHU.5(4(@S =u~Hf> ]5cJWO/obGXاᇟ>?Ԭ=&L-`#ESdk^ g:.MDT^EtH` ח/$6lɸs=7dRYZ|1”i!XP]]u]ZAp8[L 7+N*ʅܱҡe3t,`c2+6A ˺}6~t.q\D ``J'^P Xz*Z}*fJU|Ĩh8cSjbŹ|yľtdyrW h>PzLʑ`:XL$y,дD]?eS i,fdrj֮WGM`op{rPTc$&ubf( (SZr6`<"r\(dHX*ׅ,(m?@K2Z")eP B&EF1TgbYmQ88>sm߶Ԧau'OKlT3ȣm9R82nkH[KՔ Esck˵ -ԁsN5#*=ϊ:߱?uxй0ys-|(7TFG#CjƝ O)rY(.=ȭ́Fp%GPg~nY6Kn60zMWuѼ?!i'MtO?OS[Dl>VeC2sEJE@D :(J$Zsڡl̴=3"6ߌ%Mߤw+o{|E15;0E*|xT~8R|2oiILu1wnwm8l{Ԧ,,xxW0̠#KQJ蟯q:N'_z5r{HEE鬙IKd]N z߬XhIfYLmʿMHv}2i̗0"}̀⥈C8/-qC?=k7)~]Y`QKk8kfz{}-Pra@K`v+HBV4.VNԛK/b}ݸvٻTg CV }X RtT:j|1*Ŭ&8V hPUǃRaY鈟7.&m xbٷ \D( ;aGfQRZn'W<"5O$(ϻ]fO¯=q DVLZOv*6ڇID jHD9 q"Ec,ڷNOܿq ?  x*m7ʠj YNJwjMuO]Y%n} pfT9 4&:(Bևϑ|3F1#Wt0YNQܕ8 Bo"p?/M) c'?1C4= Bx7UYRț7oabde _1gnOFGxç,Rx'۲vGva#[@v$Oa<•G?]M< )\AKl+VU(0 =8k9>vNCuBŻk,JQG˫.ٷ$Mb fT~Q V(\X}GU]rm`1hTzffηdb~ю8VZ͋Oօs`V>Hj Wm"\كϳ0V-dG'Pe֖״֡rD3:,m 'v/5nhpcԬlN[L"1^! k*tjEGc>Cj{% ϻUx/|^e۲Ȫkml[M"t9`mٺNװ{Ⱥ|^n"hi~ ,dKrZ:6~5EVu |߾;TUz{u8{;a M.8wFSƩwKki%n!BQU3l{;o*՛!\?Jkow=*T=[1[z(׃)Dga~J=e _Kb.]D̷Ɇx|zaZ*^*Ӗy̕FR(?H4) E4 An eiٚy$#g9?$p!A),:|i;[R`w(ʨ,4|5Ø#(29pmc-`gZ6A09ITVĤ=?6:r;\_C. 1Nh-rn~?`IGẨCH8.=+;ɏL%:&[inyG}s 6NɳmP:2=$WBJG,ZgF[sU9v82+m Fa,5 49@QڵB[I Tτi]_׬҉ W4Vx%i[JȲ)YFB1+G(*]:'+saM H[1H.E<ĜDOJaNnPA.ؗ.:̍Ղ: ׇ7>+@ h8 mߞ=7E*Ŧ#+Z;1 l \y()wOr\165^l<$]] m7e4E(|VU%R^!0esr퀵괅eLzyld]DI}8Rθ6iP{{ͥpfsڈu&:"]F:B6ʇ¬TDQ[5M0V=_h-  6r^8Sղ`uuv;y&g@zp8NieZ0Tg߮ !;CwBЀ! 6j8_4f\ /k^@b@ӑ3hK-r-6%.8q5>jruMV7-5WKIGư47[B^S),&nl0I|*]Bm礈L۝@IL< ĠdWjC~bGjMT 4DT+h ȡ3EґZqp'J]'ғsC1z78"!=N<Ƌ %˸B>8{9dA"7F:ui'.2bSڡ6N1<]vIeqUW9Z^<;6TRزBOAOjC ^zP~aCU*?>f \p e+02a{[!f*Th^>?w>TKc"[\j3_2 3@;9ᳩɠӓ qSmU!kL},2ޭKP@ x2T;|lLesY֟pVВC-< -i H3B.d"Me+ [B`xҌw Ϧh[tlǷL^? f.} #@ PXtE2\?^|Z%pw%EFwzV Qx[ @#?^Sr|)"&9]Sf 6L/GC'X8ڍiuӂK I27'nB:doȲ N*M{cWf/AYUaPW}SZCPn+ޝ{{8uQ1o{,I*{GCElatdp⤀ []aLX`=S4]V!J{z+;C"⁙>2rNd <HO$H''Ձ?"VA?ųtOnoaGɌX]cL^_q1>__9O w^QZ!>)flPHbqCؽ7zTAȻEy{kQW>G$!ilTS@});˧#JO<&!DqVEN]D1v@8G713Жx~ִϟk׸5Z1@XmR{Qv ɪ$v%V±}qWGu]X755cqӺbo=uGH-I v,Jo_u˯63}j)؎煟 Hp-u78ar98-r^YˬRMUߘ7ܜ~4ɔ8itDohV\/J*bhθ0<r-귾i yM/3$ӳ{, ` 5Z(w,7lgܜXPV#%v,NLh _J`^W+)J1Sf!%Z~ttJO '/.kkAD :՗>.5:ŕUj,r(&k‘2*}d!O+߂њF(rNR)M72o~Ok-/sHuW} d,asa)\-.4*nЦ |Qd <@,yQÏwOd9L{H*xn+HU(y̠ k^ñ?12p,tEju=u(6ʻ rɽWAcp?;nUW+4Y~:JJGc%ҫC]*t|WhQ2µUy*T >?)f:*ݧՏB_BhGR4 er[8£䥝Y')àJܦv7Qs; ZdgxZ3n6#*Q J0 |v$O, 2ׯ\kΌb7Ww6/#.Uy@cjt9SgfCl:"n\tAhG%ހy,=R7~.vFEo9nbt;ۛ;C\H2e7Iz1o3Eu#ʧ0O`V _5J܈.Y@n۟{#pUMgC xJ#Y Nvp7%(=rh ڴyd}Uqz1 qt.}@=U^  25#FDޡ>SdeN@jFd+?‹-iς|> ؜F5,5% P[]X0>pIb4b[J͌z&kfT<ߝ[X d`z@X3EyG~IGlO q/Ifc3EVI}73ޛ9#Ol5vș˝,>@- ߵ^X#|' nܺ2Z}~X7p1J ;qҽy WÔomk ȳ(P;xVfKAБyӥU9i敨\Y ]O=%T7Q@ puci{9+I %Qu+p_jD%h+/f<+D ۾NLU>IB{[<\Hp; ޾ܔN?$v:-GmrT޻47a˃8a;c;v,(U9SX6('k{,EFyzZa-vE}-QC͔76鈳SGyȬ' ԤW0D+6#xW]}4 "J _BRHJ2&a[\dGҰ%iK_EEzΑR|Goyi>ݢj*z1-;.ڽv+3H-!-(v2Y͋JG3J>eP't'$ 5Ӟ:ͲH1h^Bʦ8 0*߃k'b ,0drsFcmcg\ӱ5KEumN1L?-qYr]o,'Pu;lr1QXk!eҺ|*ԅo krE SBjHNzpI7B͉ᵬ$F>M/ 0"ʆy7Mx *0~Q2lkئOQPAxd9Q'zzrVHB4%'J\dO#|H1ܬe%p·3|ɨʡ:m6\lT\Ddr6z Qݎz\X1{\ϫ57Gp] p 04d$GlXh&RSwx+1b/d4I82hba!T8Y0h0ޜ-,NLcV ?oYm-4>P7Af(3\3V9OR8٩S\nkj>SRP{i^q=d&|^38Ga> )wUljꑼ 5-"Y(F+3QmZ-8&!kg|яiH"f1E/ I3+: Ajra%}q\頷Nѫ@ҍJGYHX@9sVP\3n}7g*76,qk6 A5Jqq |Bh wWޟ/7lThL>.c ef-v}/4E#2&ꦼ&"%VEiYmHxr\8/)smhm6ncX^Fʀd^ƬÍZZj>oC,0=cdMA fL䪃8ajFxxu _*p׻BWrh w/Q:u<&ZMى8{&{"+qտ!-pm80s4rA{BP,y#HզBPC[0טc}DhٍHL#ՒWNAlSU}~ TiP@NG7on]j `N%2P9Ehki.fC>Ҵ)RE^%t|""sdPC8vXLw4%g/b^ܽK:b^k^dR x%)إe$nqWcs/y c[WdD׋!r. ^̄Kf%RWv滨;82 #LمR-3U^@4JA= Ŧ2uLl>o ׬e5T؝*$U_ؽ0U,991# 7tEV E8&HՆ/.2QMy(&v:/f EeU=&s>gcI*(rm/z5ȹū7l ATh2~oЂ^X|[,%BThcɅ; pm#HH>G +sgQO gISb>ABI#XqpTj,Tbswm"kصDQnd۩<JO $< rJ jVf:KSXTq95W]x?̀Ձ8{ͳ2ypXD lҺٖڂxg .I2Hfig HBŧ\՝N-yL(<Q>;NaRQi奷k[(>&;ӄZ6#AI85=OȪj!$3`s%‚X˖oZ+76sLxDxoun#G+,;f3!8ZEv|:Ho>sB`u)Zu12kEx60H4Z_ԌֹQDvyX8j,RN"W-+:bȁ5W~_IR+Չb1/`9~`e<#$KcGvj\"h`5xw=ͯ 滾e?p 8 <7iA͐PR#xvr~6 7wf}Y 6w_3d\v66`bci_ky['GkzPYj_{{ӛh82QDZjeA#x:Gt$i!cP<b_m*ƃJWYC:Uc#.X"C`7񍯾]!rmU\!"ݔ%?6=n&6M@&z9_(3aY1RE"X󯈊k:+̬mnktA bT`?h?=GRO"_ţ,UKڨ|*$|IhmQȨ- hnɊEp}h"M(:o}pV¶Дmt=xOԃ89ꋆ2A_,9}#P9{J-ሢ8΍G#.04zr3Mp尣y aYh6Uﻙ#gq4I Waw&~˅UQ3`eW! q!"AnYMx3k U$T sHFƲ.@@2cj_E$'VD?ok_+Qt{RDZ83m}p:%E)(l=wsD1yi@;Ҟkir,uܜ+P`6 NRp722=dhͷk,@AYҾ >PWSS]խ**o+k%j{N vD]x[dmI)Rh<[$_Evy 1Je=+x'wk`*3boEsⵇ S0q99|g$ eOnOh97xEZzX9wiTűuZ=$!'uiej &Uv=%/j֯tm% .FT9GJ{zR+v-[ _~V/diYKo}єɏ~G=;Tb" M}g}q];^lwvAs(.AO;) ugsx<gl~pZ||݅TŁjAwC>|?bonx"cs>xK_wd=]Wj.W7|)~R ʞG*-͚H"dj;F8MpKd*C2]3oI#oO X7h-DΦ1IZ=v.3hJm:3 ^Yyዪ$|r[YO"aɲ~Y1M`AO*n0{E"z 8Hұ; Uhu 's\r_Zlor3]2aFHۍ)Djs^ѥײd .)HS6 D޼m="MD{%տ4ug%%=nztr2wQ9c|n5'j6D-_ H*dLe`DXC3\=JOnUtcye`LJ޶`= MR3+8c~r #_F4HX`ɻgPAY fa=$<<5]-G ~[^Wanuqit'Ck'*t֥uLqaD)Vm O8%^վ+ 3Z2/5KnN1W|k'EFVarw5e2w<ε=7"ޡsL7S3z}#Zk$WqIEs~gz][CT5Wwq,26(t&e),J5?L<߲^;[#'#Ф+QPеD^ܻNE+#DG4&Vzjc8=1y$Skߴ Vet0z 0&wqŷhm}4~8b g;׫e;\{զqz숦ˆW 8>C3sn\ӆN77?){ ?Ci2%jQmjgVVq ig1 nZyK[*ѡ|BJ7 0ך=C14I%('ͪWBf 2OŻ>@uY#&eZ<"B&:f4 2bs_,جrxOTZHf/P ̮X8l}Klos\ʫ爘w.&U۹ʼzUWy&^AV.ղhK4/k'O H-kЖ5f9ԤrY?auڇ m0ZOD^^#8N"@WC v")h@=B$/H)7?7{&Qx+:6'L͟Ej C"f#k`P 5AC ONb}\pI|WQ^ m"U tꪚ QOgP|c} P\wS!vJ,sGXs-Q$uw#ZYݗę Ż$́2-Ei%H(X<< s80:S$F>H@Ftv7z̃ o"Q2'z?̕0Lp}d4 Ao9 s(@oP{bLoްuI4 xzM77 SƨψH`ς&&ZraAPϟ_wOU1HK"-Jfkyu" JF;r{O6G{[̻oHopxۈ|2QRKP>trM"Lg8Q,WGRTS0C#g9r"6S҆ g -XFȤ4ڋ-6D_-+aq!O$ bz KP:pP< RK JXY >0Ul:nn t|b֨t0u;KOJ.ʹ=fjw ow fDH4 J>r)rp1k? d[[!{,T]zB2my=}矀Ju.>s5u|L!;rufU=zaS/,}@!B71>/k/ðEåjӇ.,0FEx9X ,z30yÓةY.{gq^(B9;W3ADzf@ ,VAJU&1J5'tL}9&8;yL0FHt7K:d?<\=s=1CN)wWDufpWb]W,8lv]t N)ZUP,s.>`ąjlU?Ym ~1?h a96O9N0ʖ* mkr%X+ &^lZ/Vx(o2 䙻!@Lq :2́KPGUyqh4ػMxuܙMX WIi[&*B~ n%E 7S虐G> BزjUi='|K\<6-na",wV,$mEtnIs}߳qs#l.Fϝtc*Hym u9SVZ}k9'd >ΓF8A}W\Tu~)^F!YaU]{*di`3 +Fyv¦_0 M=V󊂱XWu5,w?%KǙ= $ٲC/g=ǓGܸ.uJt"oQ. kRV#sے<%'$tK¡ZFO2)>h` V63M5x{?ԨzRb$Xjۊԕ=4y'=7d\7'֓]x=g\T}6+JZ\𓔉z/> ilhQsF3ʸ\Lov U}>sM,ʕZ1*&lUwBx琥N$Q{_| R?5= a :xU?$@,IH)# 0yz*"$9 S 'q]qp)!yq /)mȁD5œ#vcM[+#棲R+%KZ :m2f3 \U}q.n' L[nhft­ѨJ0 5C)1:rdbX !#B\?\vWГ'hѭ7lzYRv A5gE̤h.Lry4Rm}b!pwlCMraw(@sSolQ!B[Ը!Swc1 Zsr5+?9""v 2E *u m`#8E* mEt TF@ˀPּ+P#2E.rpެ=nS i[_G ]`>~WKf&;免ܖ_RvBWu?*Tt+/tT,y7wR&*814|Bѕ:yõMYhL* ;zZVĮrRYeY!b6u<+ʰ§p2CY{D؟S= %"5+PYNȊEh .a<&i%_3rs.\fl vAŢZ]CHFDIbnƲ~0=D3ǟh逞Zyw-)qV8@cd՟Mvè(GΤǎWك^t 4vx ]MX(|ܾ(Wm?PEjoz_(f-ΐB]@,`xҰlK3dgh/\0MoqAȝ}*CYPaEBٙwYJt}kuQu1'!/%#|̃m_uq?wZ!SW1ӌhMm-"3u]h)6 vRN0؎5[!qc*wC`H0*ϳYq6Z4PT+'oH"m&߭8Ma|zak+Kͬ (Ct'Hr. tJ I3TJ(Z0|i5ځ1ɧot)G:|hglXbĥ5+(yሸstKEX˛rT,\@o rZ(EL6i}_|z>dԊ&)alub$-}5.j`otgq¿pzŰJaYa߄gxGN_ 9_+VP~.d|[H]ġU.X%f|4㕰)]ˁĀg"v[IU2܌XP*k]lQO9pMJ<ؿRUCRAXl 4ƽ$obxpp;s{ C ŚQ?W[11{Ɋdپ 1^c>RT2_loJ6""}gH.*ftooVVz3(f11a3 (?iߢpE|)6X hf bbg4Z6bt8-N\ag}GY,% T:v!"C:3ݠrc1HSn>RIx ~د~TjJG,yHNC흉8 {v4cOxp4oV}{@&SMa!,;stu37NC@xȵS>+—^S .CYJ1t'i' d .ynC/J,4j(#_,lT\nK|{(ʊqy5s˥h!_q`e b)LC g9`'zA !w5buyg|pANfP\T/PzrG%zX0~ye5+](ab>'f-@&;@9]HRjwݗp:jjXMSNIQJ8:#ZJ5_1qH&ݒyO*ZCjc \4qti1 +Ywr*dQjY:0օXVp6r FAU#WtLUIuǾ:]~3*bXq:f;ϓ{.:|vBoFDK?ۊ[A087t YI<r2Ano|px?Wi], s;c-ɓtOv^&\~U}Asnw1{SILPhUKnHQE/ֿvi <I slALNkJa IvzX\o̟q[%:TfB m"5-f^yPt=qLyZ G=V[4Ľ&2 :'>AѱOCWޱ SS̀Jg+aHI8<k`/@:>[uAX~(>2"k\(C`EA!d HbلXߠ# 5G;_=`tcR#$B)|61&"$TXZh &9`yeC6I7nm(lj{ dh=)[b=w^Ђg[7߭#Wf+gd|D]A MnJ<+/laǮ"9aO =KT&;#R( ce>[ea[n@i*H<=[4dM h[oUPvtW%SYu9+[bruY(ERS>㰃yUGft}Psnmٽޫ/fVZkV(]h1-}pfe# @HSKvt+9%X~V=(;6 l*#{ ¹ChEd8L cUvB :i?p?/pC\KR4 uqeLV̴"%?PgwT?sFxl*6){r5O.ʑ:A/D/vԪH"AOJ܅*;U,0r9='ZrX)`w3:6B;~R'px<-sr4\6=,v@惼Н p j6 jk5%UU@5%;IR>7HeI1pJm@4S݅[oqUIX;R l 88GAri:دECԩqV?)yPR_b ٠᩷G6 2U|%9PEZGp 45I[<*wiyHK-3׍XfԸ@e6N &3>Yaݓq$Lq_ K`:X9 c_K:`.To=z[ʨ܂GzY4h_FÉ7EUWZ3 -дei(pyaC$?mmi]kwQ& ny('}0LhAgWY{Oׄ?\ ohYMRz+, f:]»Cn%΀9 }Hb\j`!=x5OT(TdX ޶A9/Y&l{)IwpIG$=!][F!܅yԈ:Gl`C9r*'"5QS,&RrRYPNXCߗ"ttc&]L]/HہG Tu#p5*`V!TJ^ߡ41i<,DsJYQDo W SC ~b6_֕ qLĶ/6(cwVtО"Ŵ[kwe6;EdG}GolvK᳃3wI n6l2Y 'r*:/ Bhr( NLj*@e~WR(aXnQC A-bmsBv6VfVXtHOz\'Qnk"cDQ}_"D RE\7xkUz̙Yҟߏ-/Vb{}+aŌ/`IJ&+K\%AlX׼[{-Tk>\IdڈcuY{+,Ix-"1#To =0NX1[/oa_y,xϽde() HD"acs;{,__b9itqMYu8nT Il@ WHAw ۱ ջ9]lEby'3E2RbHiilhwl6ad]&5Pή3U"7m=)\QT]a&}19:U}ɬu ް," Bw`)/E5 I^=F 1 !nNx^ȣO'<ۤ,M<}$ǡˇib]#aR}< ad< MKZg QBlNǞir :TAjd_b!Qv%Q2P< pGT(l2\%,|nWR]Mf|`@ɼ)Drm/ƐfA27<}}>F#2WN9T^3r'B/9zWK:OxWT r4F\me+X\nw_?tS` 1|+Iiw<@"U8(A)=lA>[Is6P^n)6,gG`"ֻ$aI7 c"ݩT*{%>CVv}%_qUxe4$dDu\3ZJ%q-jLCn*Kp9ca )YrBz"+'ه0Y` Xǰ_t4C;ϊYa;T}M,gt@L]]O ڻT1DO_9dK0KΪ7#ETdϸt]sІ}$_0zAi#>PAY%fmםo\#'9xa#*7w3/yԠhte2t?znЩf,kV{32jQZ{Xt [/>Tz }Cs> >e< 6Տ|$ @b/ &_F'|a4lؾTWX˂?2P&Ee/q%AE$TzbjM|TT|?=oyJ @yhofBNH=ѕ^(gvBEf9s;jHҷ /wLQTRnXyӱG4!7ۙꀘݲ2 pHhl'vIL@=E3:J%1fq8\w->L%T;<7K{ȅƕtg$]G%\XYXbO鞕  @ \Px?A`lP>+ygfc0rkKRoÞ};.G@ %t:ŔP@&y9K_3 UFw#h<8G Yϛ jfc%?(%GLv؃q'?pJIk=-2ie46$NlD0!T?9Kw z0. ¬㒊5'`jFD;WgbJ~$#*251m)ZIeܔB<#1n$dQ∶:0DS&q׌g`9g\j-fyZx%WCp%H`q{9 &!3`3nLaWIUFpF+|C^P ,o|ZhNI +W^!Q#TCmo@YBE.2]Ωu*o |EX]?M H`ȇ+/uːP$ vʰ]Qs;8pJCUcWd \Ul%΄: &%n߮$qTH QrDdToՊx%ӛaʾNV͕hHTs26Vϙ<>JzD5 2Qfopl~WĚɖ\ bURThVmF)a>?ߙ`D:LD <ێb]*#x|.8S#5X\f %sj⣖zud4 hS~^1KmF5]N;55.#]Pya6yo԰dW.{F+ 5|z~~LAMtSΩqTQ 0♣m,QhBaK%Cb8Q^{^ah-\2kOS4sDK؊ٲۓ.dxu淢hYFdl$TO V,f#xMq,?R0.4[w'gTX"2h5]xM[x7S&l3ؒ;yaeHL5p'((_J \Y*k 5]l6hs#ym.Fٻ L$\ڶg2d`C‰z@1Z'4jW Da9*V#Q|5Zd~ !p%ir Z*))It ɄO=Xo&';;;Ԏd(a@ F ^>3C+iRp3-s}C5_%˻8\x>u>Y 7# &$^H̢FS?B2sήSwg_EV5q˺[M_-eyP͛(9LT-jⶔ : N.wh+ -T7V( p2s?4ϟxrCiOtrJCyFJ/Q 6 ^L>wEvNJP Aa7YOLֵeF'SNu5&6S&v;een߼uyѦ²oH5;<2yԻ}wf9jlm txyiu;PajuprnpRH9 W\AnyNU@DêfP$b~Hͮ߱P{;^WE "'eYnVd $'ߘdpuL8)B!/!GpRPDJ01 ,(k I; < 8$YzdB@Gyj쨜݁Eﵕ#o¾?I#nfJaT.|ߨUœS &we2fa|1 k]Jmv)(b(,Џ-JcO3~h*zʡ~P\eh}:3780ЦLwΊyEk1%FUr<. }({ep؈{$U; 9tr\@F=5߬W-^IZBCVoSPDI2=ծ}{ٜ{!_kRymS$Q]뮙h>|0YPDž+Aq@ZU؆I}r?b Dje~5s$QKwRT݂vAN1TR=\ں^eTl4Ƿ]}"@ AxW2-ǟܦWdnkb[LJCx`KxG`9*@;a^689$Hy ^]+=Ei1|. &z܍ ,=ٯy4*=~@g3KQҠ>%dh Z[b hJU=)٭.iubxcxCacsp/O[FɶjE4ek`x $ypTYxS4uRC:JB3xo u0L_q^#0ApXuOF`?YSn^΀yH o/ا+3S{P&.aO6+)=| 3:߽؃t42vy]ѹt׼@'0M E$8J ĂT:^+$--h.6!uiF1(Ɍrl`9zيC,Lw {ܥg ^XpM]?a*/wƘgM/Jt{"lgXHn;CԷJ,_lByq^ˍ)d{-Q(7L0!M i=%rpaiwxlUbRVA  ]' `7*h/+ZэSnoz:pM3\1._5$bfԱY{{C-XלE=eKc 7c:"D?HxO&ۓqjкڞ<5[Q1|*1 1Xg 4Ǫ4^b9cy9ň ;];Z7^ೂ^rJÒ8S/9 }=tnnZ tf)bp೨z3vĹj|]O/uaWsy%3ƀ&Z%᯽ZmvG" 1[CA9VI"F~ #X]۬ f!yBc]}cDe9 q_1}ǐթJRjS/=hI%xќ#mTjtx冬-T>;k)Ŋ}dq&_CJ#&lr`BB5Ql%¢4|fi~mF"DvIDndHY,69J,1 u X9m ;T{ww/(ޔ_͔qT`2uq޶ZEw&"I$ :\KF u=7FXϔW Q !V1^S&59|`+m^.ѿXЅ# Ύl\e fN%mh@] ]Vṕt ɿ]:/VwvvpR\(FFWogֹ&zꗈ FV$1kު-i+!Λїm;Mǎc5U\Cj;ˢ+p:\,4:jKzQ|VbʕI-19) 4O}}ڎEyTh1ulS8R%O)Fձav?EȤ km^Qj:5:vEE;tC4x󹤓}<'..%WBx1͡9bk_,Z2fq4JdWɉ"Uĺ34jn637C/)Ol x8X1:Ź{D LGu~ TA"tLƓmc Ҡ"eS!Gh߇"A9WF&D 'S}IVMɈДQSR& ] 2X|5nP:?CLj ?R ղ({ L1pA6R 7GLE"j0`AZ.A{ ZS=|f޸+`P]{FWC&(sErgSX*6c^4?5~xM6Cz$nGb9B$qQܒFaǟP.K@s>[ t5Ձ!P/a& Ye :Z6^SCϙibfZ_NlWwMq+/a!|''\9:Gw&Wu..Up)$W9iUp*/K4`wP P^5Bo$q\Xr|[hxsOpmh}W1 7 y#ȣ8}\Oa20-]n {ʁƶbg+p2Fqiz}ߥo}ζLaیh= DׯgoQKhM6n t_(~lc(r}_Qq^yƏ.Q7_H>v7re [SMM$ `Wn[8+e4 *4cGIhp >%Nn1R:2S{%_;QaO?= 3,r"HcmɆ^t>jڵ;ME}TM]ɿ:$@يsJ lV*vוⱥމ1W6@F@цy '?R Gڳ3L)=_m*Gϒ9ΘY&١ ]vs>f/b"m7 (ܕ? Sˊy#лj{| Be~u[߱tE{(\-FWr:Mr/&~V lu_ cY"a:;.mƱ1}$[*(fҼz *=b$L=fZf-U6fTr_LVjFkW˴Lp㘬u +(KSAY d2d ^eAWo$Oml!MՇIyV$Q%WUqTQo'c^S2bka!Ube@To!TX(3j6<8UkR%~16DVt/D Xdد8ُ.y/]#p[zk)z;o}}tT,%ѹ 4p֫{DZoIc {XғEΈ}m~B*^{ķA}c}r3?}J%_:1i#֍pvf-rH`~scw917omc9-PVR)/ȩcd0y}CO M4wt)i+ejy7E-$bض$/LC @ >6.7C%`#w܊؟A˖`x5JF.h"ïcd5qܨ_7[hГQ s)x/%p/k8҆ypHw¬-it\x6ͨ7āg {˛)yly8o,zWjj0R_Y'R/]_U8}MERpR>WEҽKJMiL B[tk?, y_ךȐb6/# 4C=F_&ǣsc\qp1PhU; | A^OSa,B! }  ->puT gAb͓0dU$!\4o77TTob` @K*k]a;N- >z+ydQ*"s)`UX?E3w n J-%6 "jzp@Rt8#q1'-M˖Zh>Za81kiQ4 #$8Gꍲ4SlE!$ZmliS{l'ĉP3jY>b0*rAe?ڤT0Luv} 'y`e8!qlH0R*%LOQ2XSKnoH^_;v,YZՑ@C/b!ǀ(<޼2&*­IoB %{ĎtX?fIJUm%ڧz~[ZaRz;8q߬ήV0-tc<[>fy7>=m43]<s<7ސ:'eZ^yQayy6p҉/A2RC>~m.;4fJ37qce%&4@N`9'$ly,Lu8]Jη5(1stSyMfU? ݿ^d@}R}?L+yʰš iHX]-~7ѹd7W'J4۰D # 0HZUK^- "dVE*udkdRx48]=QkGRNaA3UZrCYtɰ7dQxAۛbu+4ioxoF"H=ABoX('llA. s%2C+U\]Սи8XNe#Kr\0ۼ^97υBj8 ♻>[poPD߈˶qNA5+˾[Pf q!eVcދH0-q-HPiFy}X˯O<ͷ-)Џ*7u'Ę@tna%))ʖQ6u}B*;<=+O%N^Y.P#؊ h|7A#6)?I 5v9kXs!IO`cЭ?ZmF;ʛkz+7flONs5 GO8c?R80<})x7r}gɷ ֊Ī}@DϹ4 Dy$ P1b11ч PL֯|9P_㮥&C~\ϻ G PF-J`"߇BͫR#7 t^#3Ebt ( g`eiٞb¶O dS0uYX"/eE s|M؜t=dlYzld|Ry^ǀ䪽my~ f%kb+&72)&9y^EKh"l&!aB)^ @V8Yei׾M_"X^6@|s+Lɘa<4htSCL cM$jUE]H$ȊArBĚ=_EK\@W=۲m9t?wt(0Q ;4,(ʏUP[AZU00g3|6/~c _xXJ9>4/1 XsS'pü[ΦsQ7 \1^[Q鈋d``W$.ӭK/КM-_+vrs\ ,NrS:MfH@iSku7r&h:}]_}֢FJY]BΓk]گTׅ%*]_(h$"[[Qˆ!(B!5TAkj`os@ T&?󪎋u_x^|66N0/l\^ (.zX]*%m8b:imS{=?̭{y2}5pzrΉ(2m\<7Łbxs.x'Q刓쉖)4.7"3Gg!E=+])g΢fsx ]}<~ \w1 CU D2//gG)SQY k\{+6قOʨ _ZO{ۋ* n!6}5i4¼lUT "&JΗ+BTt!>@u! tьiݏ*-D0XR(aՔBrʺ#pF^,"'#"J"p!yh쉩x!{|ejP~V̍(ЁkyO?^&"]@df5D٫` JxF ;LPR7hFEGL{:od8QJujSpqę/وy Mx1\OoFf5 y`)Qw$z&AE 5/C)Hq@r|%R. $0KSq2. R{QoWԋ9HKĆ] gQ 0&?$r:iaib E?\)I8}6/M_`)>R#ɛ!kXXs$1rcS:E֒M |GL10u=UE(ɕ]󧑁nYa%@WAFr!ц y8#>E#9r_NBb GB(-;DX |0Y_K@htj4H|-ZFxzg'tlM|6cF%1ߢ{V#TظHP> G r!1y\Trߎі#Ѧc[Ѿ|l}ݘJPvfXH)H1L D*E2BMq9ϖx~b]@2=U8,rYr o >'3Lxq߬j1?&4V`eSʡl,`~5 !#2i*yAЮ&VTi1d4M(\BѼbQUrg̵Z<.i#ϋټ8-iMQ*1ՁE|60~{8J*<<>McOBqz,`Li]"NQ'w)bnF*}< 8[)J/N$>`ig),elx\VV/N}Xɖ{g O]3Vi0vd"]n_tsVRbEhpHTb :04s}lj#SJW9*wGkKϓs5!1FZT&3J/2Sx䔸J+rs<0裱HIˣ!:N@l:kQ˸Nΰjms68+/!ŹGA6SG[ک/Gݫ.=e0 _ iz+fS#OϣLrOlΧHF.fUL!6nC#O8jԪiuRv#7;̜[1˛! ~M>m_%e6"xϻt4=peݕ ]._F5ucreY̵1C\_WyT5aFRX .~XA՚WX*k/|)Ps.pI"˞R1iz X\ yo 8stlR尙0Q9?Ƽ$β8g^yI2tΔ0xO PW!9yϧNDuYۙ?,[>K/ߙ eW)R.*qK+<"ջT[5?z%9@trL ?9c̅%$}aS#*jT 7)??>_2G^EC %`KݛBuRgM9ϕO0:ꄗح2vC{חyQ=8 .ѽ8DnH<&GX4i-mfHqA/A"y<'aƜCO(̾45nf-9OPp/6ψFbj fɡj2qӠ,bZrԚp%v7=l*3jU:tkDu)th+ 9igj9>-8jeZ+?}~{#VB[wFW6< kw^hr_.taDۄk2W{\&rJB'Y˱XSƄ#zrQJc8+u[z8/߂T Ks/6;|i{G,GJ2P6ؓTN¿EѵG9)䠧}p,뛤[&O,Xs_wPt=sTm%IRL?ؒc"]4e}G= |>%](A֪*LveXfzcZ{ZD]^Q]b %=\2_#U&G#{Z%|XM éu% Eaf9L蓱J `$m Q[#!],`nLt d)\ԓB >}Z{^0Rn#puz0F=+r2Z#*g{6:oOi[լ=(*Q%b5615NCVps,WKtUoT$wab|}{t6e5L߃*4(EK\1fd> A\)ɲ;gB()Ea-֣:-߻!$9xU~25u$llrD #C3OIM1aAkKç:B`J %1TK (܀E~4!ت"*CGRx~{;x4viMp~Fc_I,f(`+A[>)yv81zO.N.KiIʕN'$4i]:: (SZ\a tD:ˆx}UbXvX7דO#Y0w1tP$Q *M+0BԀAXV`Dϗ~k.XJOz:QIA70(/QPCۗRdjeM>(ڈ!olo8g~g]Q6v$."7,{sG{)6--1Ć]*-W!ى7h" 2T R2)nˡ`+K"HKyQ|V.*-޹яGg!~ΡZn}Gb/ݿ휼z~Ή+72㣿f1dDzVha&梐 p; u c鬟4ˈ(]ek!aCH 9˶ӌԵT&)9nOO$ڕZɅ+Iw#A_>9VA^ xg弨^;ny *b W򪒟CvUZOQ$P Gár{霞*ct:aoҴ1_J#ѯ' sV?xM)2`\ WJٷ{ѤB7A&x\ٚp)T}IT ŖQS4Њ9l3m- VqٮS6Oe mp~*%/H~鬎e1 ._{NiVt֝)<7 BRE^(X]ޝRKS:G@GgdK&NR 7Zn KN f';9x7r  d%DAIMrśH@qox}͖mTt­nnR *ܴwSg!q]'6OZ78H?{.Iv]'4! ?[CD_j tF >T  IEBud!>% HAPhA4dz tNnD+q Y Q^UŐ4@f3tH$e ؿ +}$ i'D>bpNPߖFd鋊*@dn*g]do|~c4f 68f> "|^Shkc7~#]h>+q'/Zy^1䋞1 6A*pqf72# c)]#9|`dYp: DX)٘B`x 2,ZŊu -IBO)4F_҂NN#poz=~(fV FgZ#AfV4<5h9o,a3[!vm;vtVtLTjtpXC ފ8rcNAq<'DQ\p<\IpXDQR&.k y V ӫo;x/` 6bTLSԱ ܫDb*+$g! bres$-9 ^zѴ1aO=)ijzdA$fiLg?K>sMҢPm~LbH ~,z:N[:\qr29-!_,pCmymr@#?7gX(#(m<07 &oY)Bvv>G<7wp=Ik!w_SGφ z~CA:AɛS |^o<PG䑁CQFyktZZ7 Ka v׹1cS:Չ?T'*<),w:9fJ{!(H% HiH"1|K4.]'"W9T~`)k C\)lE2e)B d"gQJYiuNb[ƽ|IYlȽB"_̠G`nw0Z_ շTߢVD|fq*'1>k`*ƧiU(UW W9fkXR9G!_ez(")@<5K+;kӴ* o7hYAv:5V_^VR 24f0nU9%8*H\s:AJvTIJ C:+>(oY>#],@mXp5Y9d]Ta3; "ZGN1M\yh답(Oعk,RmY5@j!L(r<'Li3ԝD~2_T#X4>,(ř+i a !#䜵rݔWV^o.!cGzOџY lS`]'rg:BM2W(ԻWL0EDR2d$EZA͗6)7z,-(Yυ(Y]H5yPm9ǀynffe 'a%e|Y&jJt:AyN5N厵y(yu4JzJZrkFV@_E%'zɉg%!!;oH/I|5p v@ shJsF%`gtUAF8 a(SI!<9u%0R\9p-tZ<~'lW{NZf wp?3W΋7 ѕ~)uE5&-0$gH CCn~N-Hly50ny8X9%Ucg-6  .x$}.$B(( 3mi u{vPtWP&D&=p <Pd'}c4ci7axȦ75E6Uͽ`U`]!Fb6(.Ƙ2cz*%O_OBha ]x>x1A}[9 Yȳ ϹJ^MA6l=? JD"0%ee,BNBT30vd ~xz&%2;l8XZ`!X3;WeK̼瘕_s̶OMNry,vgiN%804aCHz7E(W8Lk6S7Jy<)2Ex.ssBii܀!ӪpDXʞgr@= ޳?~Nc3s [:rR ?yt^4&-cVXQ!+87p~Q+1$w<48*ey.EΘW:qCh02( Ztݼt)y^c^\/} ?)# Ap1'2<\_ mW*'œ^߼UnX[<4O=Syᡸ;ly8ӗ<Zm%jX~D!V3ni2 uR|QIK}`B,.Kνzb-PXēA$w GP?DŽy")x,QS@v!,.C0oO? v=8U  Oto` p귞XJ?4>%J`Pj9f0rON%~ ق+} Z[{Eg_t÷/*Vq)d%p #\!(pojTXd3ǂa'aETL<c?[Se D׎V M*|LeUVD6+GnIW>DkɈU0 HjL#H2r`dyaqKga!wr  -*67q?yL:{:oPc~l`] LKd;ZmG_>#Èύr2T #mA8z >7h3}QsP/ PU.*HjbuGƣ%~"yNm·wԅϔ(v ֋o"KEKba6C=`Aye  ń4WnNXЌ#qJj?67/'@(CmP v5 Kvsą<߹, 'bHj;:s3>7ׯE=4{'WJgToCIZXD9E(cY57lDB^v$= ^qdr@BsyJEV3 He>T" &GD`Sjq=FJ=eyqc5  f)5qCO}r<Ҵ]{J ƭJ{KWzb]9}"FmdƠ,FcxLndUYS .KC0fERB(j9>+;GZ%ǛZPȘHW WqO׭31&vv_dbSג*~ǙN%?h-uX|+RR]i$+e#~g5::zEX^nᢻCh6\4ukQ(5u:ƗcLjcoMp'af7GSNCSsME6i.+|r\SvO֕gUBe =F5CS1^[Wj:*N繫+=Rd)o($L#֥WkLu7TL$x_b#mtcy ?t]Ѿ!X-=]mI /lDK:HRE*W @i ;]|͉:r??G5>fA lO+x;? ^niIӥL&ڊO͍ 7і8ϽQEmׯ^2F(-GTyJfoċ%A0''~蠌 MJpB Krd;8Ty{!~(903ls' ci ]%Lef[z8.!tG B>y*[vIck TvkW,sģ N7.+(#ic r03{RfWRv/U|ąO35DY*#S0 1o$e li s3-og8YMoUFbuJ>k~|41Uy)*#{PQ"֫bj5&L#tIw}kS$e{;![;AuM0"#x\i5YlNP53w%G["\%Z!`&#A~CjwTgbϘa3$53^F,Depa9=v,66 DgS4b1x<>uyĽ(%%W-U`7%pNy .BH;w6ƥ|e 'V_eLVd3r?yM5ʞx( uY"x/0`KGa!,8"#: E2W5Idw QɆoo=ϢS6Sߕ1KLb}9es`7à Sҍa1#V6/TS%ڄC"UͲdSK-RC$T .oK٥;zbH{}=%=9jqwku2_xa[%A 9+*q ӍX?4hB~+yʐ1M*t_̇pΦOd7̒{`eЉ̞M)BM) bwT_l9vM~p>tP:Ny81.UJmNcsr~J*Ķ6]ɲc eq݄|(uڀ;Q5q,Cch^bN|>Z"A: o<.[7w{Ƚ6t8dM,3f!d_b6;sӪ:? PxC_'[sP49 شp|Wl%fJ%9qX=\S-,:ӈ$@Q0(ń%&)36X'7&ڡ=,ZuPe _N>R:5)3~>^˾ϡrs2EG2 ' ؔ 'YY(24qU eH0/.Y{B@땥sc{S-0zWnI}u0*eF5GS.n6쥌vyu@'pIeP8:42T@rYJrL6R3è3ن|Peɳ)_7dQE%J:Ӆ?(! AR+/ :OA+Z p [L-i~}`T{L/ mhoߵ54_ɹ;ˆnNK*L576!zo'¨yo&;̞k0ƏUbVԢT3ΑlO3"Ҋ{\;Pp8k٥^Xb*[JA sJr O $%öla'$*LhkYNQ t1CKU=zpkb>GՇDb'61}n*ÉMzQ7S'3OA7 :J_x(f.H&G^f9X NT{bftd>җ$_S"R9b2.T4BMOH=F̯zS~0QZvRe:2uDJx9ma$B9, #(WH&+ ?-c8or2#а[b#KWm )^'x/*y5mPˆI@Z.*`$zdM_s|5#fGE^lh'vtxq|AjM֐&=Y6PRz=ٵ$ا Li\yn)S6m:oHH )B|> b#z9g礈yW Ex/܌n4Yz[zCM-1/KY /aJ:z_W jn:QRxjk``,+LE*;lg(T>[ǫCgpW!SӨC= Yl| ѩ*:D8QFvL 3?3{wƙ~H.ѝ+9^t3IL妱RL_ ے %yڐq NɧdT sx-;-p3֓Hߜĵm]nѲD$َ =M*-1&; jK~E1&]GC@gi 2Bba _^J O>,njKq7~PDtFԾrsڃɺXN_Q$4_un\MK}ؖ|dG)0`S1Us=Ou O SYjq#qviрx B! ?Fq8=V*QT]7ʅ^A`y6@@ˁTšjθtd,5`cfpvPrձz~)|0  R aPdzj*1Lߦ촩54LC4ߺ(38..P]]&-^WO~MPKq;wM&wVz[K}.\OD"UcZ t3KBag|pj37 ~ |S GTmѻ n{-JC?T 9eskxcs* u`ė!6Gݿ@_hƽnLgoohM7:Su:pMΌir^/8$(SJW\^ ]ղ$ Usz{KhƞѪƵQc#՗W]i|F1 ѥ4{FwlVhLk-_b_ c;6WE?{ut}`'O'{'ᇝ~B|{|x|_ݻ'jݝgGPo^}M&:ͫ碯#ҫ=mX,",9*ke3l1g^O^X/;ֶÏZxLheb[}yׂD2b[|NX`p<9'g8~뗽 ]% E,E` ue{F3DzG63=$?Q,{PNkeI@n`4^W[|_Va*saX+j誩mVu>/ lwJK"r4F:7b}vguPIWV"[@7aI= soH \Eߓm?g}Yk,_6SZ{#3,HrNuˡ凕70s˧¡ <6NKyF(E*}*8=M譳2/pKL8krYI@"m}7;"\ Zv+ jj viW˥' *26<զD \喡)Eu䂡S8ؼ§ݖ"J?p qQMj`a Ȟ>nݏ',̕|ƒ  w<7$.n8Q@@!zpfRQ߂oΑ_3o=!<)m FEci}[rfN 8AFc9ӖxÍ{z]BI sԊusA,*_J>Q8S)bAÅl3r-S#YdMyRY@h ̇Oo6Y<ȯ7X)֣=%%y-rs{"?,Y;1#,2ɦʠ Nub'@X<hS+{zR#x+NT*7INtҧ>UJ=xc?T@c'*$Qi?OɟuZ>&u\)kăNTIBt5 :YY9=FKFWR{;6scNtҧ>HNT?p5@m3}*ψYyO;S9ͦ[H 9毝DP'J2F !u 5B]Cb5 ˁ2iwN"uH+,%hH4U,EvUϣ*nTZbP۷'lPd^Jrf(r;a'Y\ؒjIN26E-? J6}~h|fYxӹ:è3:WAyճ~~ܟaM{(`ϾQS: Np=6RK@I= rVRr}Oz\鹮kJV0%Q%v!t igT]':iI(T9ҎjTK;QK;'jY'yD^'1*j%V<}#oe+KGjE$D''Krrt DV| N@~MBИ3bJ^B!wxʴH*RW|ǧ4~A2(&x#%.TW.Ղ֣[F=Ksk DAOϟsH351aҠ?D4-0G{RKYQ~|%VB$:&C%h.P.`u1Vi%Kh%zMB*Y"dJ`ɏ Ή[ ' 囲SYTvNG|*:v~GBN`w*Nݳ\;GŰ^bYx4QiXiXkհ,ZrBc`淥AՍQ~5}M ͯ):w{+g_1>:/eClR۰|PYT{EŬ.04<xqgY|qY`N0KP_"| 0m LٌuH!w{~?')fw;W, zc)7%a N!Jꩈj)CRŒpx$HсCF¹KTTS_SF#O NvB ,1d- d>VUKPX66ǩױplyl2(>8pƉ7CXRPQ,\L VPPF8B >Ez3yhyN0#[w3/\J1L7zDgON{~3'aA;qЎ zM,IqRsvsSd>I)QXg:;ٱN?zO;~ {xjRoiG8jQnڴD5]mꎅv,c,LW..3m^I8hA5aƪ/UW3fB^-+ =.^ޕxy˿p^nX^N}xy`wn;e333:^-T'Z`RMdtaEai]w"ڲlrdj6Z<_~j^ڡ<[=CYcjNvV]mȇx1> Iޥ*'YRt3N]N0=*qҩ 1,GUV+fK7x#jFzwr-D=F,2wZ'&zo`r U1Û2u*-QL[ /I1ؽۘZQ8c .QrgzЂccZO+y)eVP,tbX&IzMmaŹ-4,rk*E MdF5 wS $b_]?ks>cX:ϟ;( $]8he!,sY#>?dK:Ί`Tr R_)4V9 6CeS!6 ods 8 TYKwK }9^SK_6~iX\|aq8^6+q(oISNxqz SމS-ikBvܻ%\~Gx %GD 0Ǩ ae׹J?ͳ PoCg8tx 1FeT lSOH7Jl}tK>z ;3LX׈miV@Apsd< pGvcT 1ZIhü8i~)r++"Yz $$̟7,zWp ]p)AKFnDZ{/VNINw T]l ;)B  }ꢣ3bݐyNRHl??If6Qꗥz1_7'+KU_&qaOJo=g^y%E1s#bE1cK:@:֏!wRa[Fė Wֶ2$h xa7`zKvX$,3qwWqk:~BKBxxkivJc!Ŋp-UHR"\+ v\{x_dt?i^v0ϥ^Bo^ēpVoHol0+L[a|F;uN^K+@WDw;U<OG0 cyH~Wl+&rm픢#8ap-p ,C $i8>g .US@T(kxD".B Tg Ա&ޏ}wH^ZBML׊K#-J|?y)/vJw66@-3{`\hUR*VbM0AG[/`SjIF[;?L$X)R4`1)hE>0! ^;"̆l(O?"zí򨿁U /{TS?P\%F@)I?(CME׊a$}>GfS ]3NoG CvP^>!])}@߆>@ p귞XJ?Z~Z~4 FBď Cf FZl/>{ѭbwW[%]DG*Uu ~,MwֻE_ ^aaPQрuߋ |"y5eρh4칉Z kj:Q!>y,o7BM|ӢYcQ6CXvw<|I^Ƈo;.@"8BlגS%k&/e08(]Mb0b-m+e5:1F1ۉLx5bf3i)fv]!fv3Ovbf-bf3k i+hj5.ONv~DO`HC0> P-[źy%yeE0ִpb_AQ UWY>I(MrKDB)0"mէidFH/,j;AN"D%!kB5yd,' *bۖUyE?bM}7hְmN f]Fn+$n䶸,jF-) $F!-bpݓ; <4 '<@6эDBw$HC0  2;9$Ad()3Pa^O3FDn~dr|0E42a;a+)[MVbe%.3p 5׫SrffIz h?-_cVݟ~`o_`V5)>>CUc<Ʉ=fb z#d@SRtm3ސ7:}l-FܬuS8݊FuҶ!V{wm:KBι,3;Nx8tH́ԇ:3MDĮ6E(a,_'h| VmŃg5#^;^e%4:j= :j/khGad6/uZ:v׌IK.E̶l[`unvrGl2k}(@Rt@S;T}:eA(k{I*SjmW$EaIc9` i}*Bumx9#g)V*TT5P,.DV,`$ǀ_*ǺˠVvM)Q FAkԈpR% Oe9iTȥzŶB(00wvP/f#rN {zUjOy"oTx*HT<|6c|(:rY̫h Q~DEHzЍ2Q Loi(*ic*T0 ;do!"_/c*$)ok")&7[_\z>fV<-fiNlB>5$UPSt'il2X݉&lb&l45:#vPr~(լ /t!iX A,A< 3:dpvqFQd~L̓C`\aU,6yRPț nZ2oa':Jꦶ2gVf *`(U& t ;tJm4 Yɞh te#N7 &q^D 23(:T%uB{qPȺ.V]TVi#L0rԣJ[<;rEU"K;/mvujif:?&ŵ,5PpQ+r[҅Q9 ҭ[ޢ&,"3^\T h>¿6nN}k=7[oI(y|A#)UyX؞TYjSj'^ZCYjO?#c0j _L~F[ go'Nx:9M{~Q\jT7-.pnN ƅrAf% [46mZ놃ЩG0XKqTӭ (']:-Jr ;/[^3Ғ/w = Ta:aq6Jip#}eha{( (Ao@rDdۗe&.*3;6>AqU27r[g 2fSͫ=/A˅XϺY `y-ዧO]|5 V'@XdA)xZL,i0+-;,6*֊b|{BUe_5 㲹ލT{9#t#IW/_)jR_fP4ԂilXmk17ť$Ŗ̰ssw@bWh$cy#`NhBl tIh4]fʺxC޴[[Ǔ_Nw~9>:r~`HopB)Uh/ 4M!;B患Cb`s$N[ j!2I:D_N4eD"KRQiսʫ8Y4*b*F) f N*#DkTxZ;^@UI/g9ZS_z@jcc룶&~vmVPl:.t+Fja-ˑA={3Κc ~tO$ꝩD$$7ԹUϺϺF~ﬞ頓ҝsҴ~|c4~gccI3pdUa׶nL ^Cd%m>ՈNuA+:+t.;Jb]ex .5me>䉩EY CF\'N aӢAimy[66V]c:ouw+ڤhVjIShר[Δ/:0%Jir@8W d<~SOb 9)rD2w9Kz-=;,^f^f{,R̓#.0=a,/"/6|%Wq&,ZtF<"!)ZyЫ"mʤ[26D\b~ =f)(2Qb0\rwLHbcz%XyoIup؊c7x`F FM'lV4)u\! XXlmϔ}Ev)lUY3rO).KaN*Qi\'%qNs@Gq4ڵ Ȇb1^bHVƸ"B&P4r4GLw?Ѵ =.8*|>4rp@x$ (<)tr94@{}{IH_3/2}z<12b5Sׅ_tBXՄu(\V0=Ll7̱O^Y'<ΓR q?A(?i6, VTMS_ƹ ɫcq`t4}g ijq1D#fL*gk3<3vû ^ uI=Qs(טU!*ЙQع-L`tyi^zF\ya84mO!E .3(PTާll]U$9z2ud9@OPs>i%1hzjPnCI &#WB#q2n"fBRn٘U'6T h wMm4(5]Py_|蕲;1RS274P>dY؅d' UpR)#I@prK Ö8 "˥5R{"% 履M.4Xd,O9OO8 ,, w #G/6Iu&z|إ{=cʟ3j4G\k.61mzʼnb/m_= (^G=h+gNnY"ӎ<|reex wm^4-9 ; (/%[-iKyた)rpc©zan4a S!1~I,*ep#fD_#nFg6S GDΧXT$JLUʢ" vH٧]7O?6RDә*F-H/0~{%LBByUqb.YfM!=ݴI4ܕ#eVFy%+fm4"dG-Q=`UP tWUu\$݅aL|?]a;݄ͮlY_}ЗhިIOL[‰elV#.Y Iۨ([$ %]_p;{UPI56m~3ir6JG' JahTe_p6Y# 9;#PWݫVݗum( u{{x{O$YW+>TJ|eQʃvZc!&:U uow{Bny<}sV>6ۘ/[//kH=LmǶ'(c#&D."lv~FEzwKpQ|_lg4+pCrTӹWw&֤)mqБ&$m17*G `fTg{2B-+ju),ee9 ;ƵI.#PeE@RìjkcneI%sNԤ:c Cwb<{紺,m+=umr8R4 Ό)*Ѐ*}YyԒ 6Ak&^M+n*7uq&q>\ yRV`yU q+<~0ec<ک6|-S)2%zB19A=4/܊ N#з8$h^ÇYt&Gʘ⁜zU,ڇ? %,'\H92h@l *K;J0WX/m9=XV>PUof1>ZHW<9R/t"){<+0`K?cF'Bg<ȝ()IŋT|M q-d8O ; RI1~-\ԫ &a`yp^D_7櫒X8'y":#E;C 1e YBYߣxB{}zI,cn!1A9KߊdA\Zš-NNϔNCtrWqLXnIb))O+ xS]t2c R$NU"uXR'ֺMϚؙN!.|RJ\ t -NWk0QwAdp8։Z LAh=w.'k V,y%яG@ W_BTSX9gB4T[O)Ȯut'Bs>%zs !!R9?}(@%Vڳ',>=|W,RTb-dm!j֔ *IO_o܌lY5Iȵ HzuJjMEpK ]7K!%X!p}{G9oG'3.OR8X:\ 3kޘa/sɩ$r)蘍םs> ,9,G@l>,r?ѵM0Dϖ/٦E~j~yY͵]M;Q \2yBWL|#N/#`ɤ C0"20t%Mţ)b^D9ԕKy#Rh޹dd gszQty &۵䣴;uZ/A^xpՇ1udƝDov 3˽&!71Iu]1c^fVčgf-@z4A'a.Mߒϸ1Z#uxyd)aw'?XՔDh,R',&R+. fE,.)L\V#1$a* j˧lzczhZQ꫑Wrsf(`a6 ruiʭo;ֵw_kq,48J`s(sxwHkV wG]>#ٌ$ZghgLYq|~΀Kf y~u_zp1lxcŽ)MZ l38mZ ޭn9R+ciCɮ~u w=%WɷA{> ^BJ|ce!T+UUh(*~N茶V5taf+Ժ7?%|i`<7[RQւ>`X$ėSYB{ Wg&~̧ i+X ,WQ,s ?jrc,#UVܨ55Q)TJZ;5 Ĥ==P_pB.fHk:k.t0V0]EbaBiQ@>ET8;,LVGW1I=TMv΋Wx^@)b$L.mhWڣT~00Xyl=9*ўTs"yBq2!X &̜YE橅"`'YtCtÚ}m48B\F#}3#NV$SCBΓ(wUot`/JXu3s"  »/3}e/{u:=<>WvD^m.gݴcүEI{Jn:h@GBę4?3( w/yQP`5ut*jyݿ9?(_NA5/`Zp1 b< 18#-a-`i x@dX J푣wPrF`Q>0W/Flk^"J[NsGxRb!^#c>f`ĊN94Z88%z)^8v X,] CCɉ_)oF9)ĸ elK3xC9W/~S=)@ }0bg<Alp_-C %&+#XPٓineҬ' s 3`J&\i#SP% ic0R%B.qmOrD $A}Zp}N'"[XPJ⢩@&bDh/!IR=u ?v+&.Ջ^gǪX@H*ˣu{e` rr^=F~apL)kwR| o6n Ֆ V'\\*I% b⏟m=( jBjp'_3|@`$%g#1@9!F`dN^"lXS*(M4w4n|x8O}þNUQ l[s& OFaO, M:lN|~>Dm2\o"trH&] |JwaTV>e͂Z@9oEh<1"{H'摺u8j@l)Bz%ťƬ ّ6Kj8񲰽) AN®|;pAAKULdc44ě h9|zN4*U6SǡNmsf,jv٭a~M|O~c6Nba;pP}014sa6Wv)1#QLҠlyT}w fQ|oQ&;BkDܧs_Dq:6A0̀%٪MLDImDE_+ux"y.\W:~]v)76T;ʵ&uiÙqæX.GKxt9 Ǧ\ ?5ǷIݴ8uP{Im|=ҲG.1B:ܣvT"yMH lorb]Z\Po0trW btW㏍2һq#6eC BVQ'= Mu ӣSC֐زaurE=RU5I=P)";`5zUQ1 pn DFCqȭ?wb5z(|BZ_Ի!8ޏ')JVmEiC_"YSGϕʦrǗJ\i{Pn9Ǽ9Y{^읫wW+ s r%+1cCzn7)SuZ7J=>xN&,=ѵX bFd[- Z2w|߯y4a}rTFt&;6CX2up-$Ddyp&QTyVJ#@m$(fÐOCNDoz^i)|2d6/ 9:VSdꈯe์g ~)8JxYx8 O3@ \aUNjAὴ^4o4B'E\)-J0QLs=BX$,6Ld'o%mqktvXC~^ԝ@|q6#IV]C<7OLL[N: INuRH{1XzĤ4\^Rn16Q N9BO6!x hvNvKA'hAw}@%(':hZ ϽEſdG{,+19nzLze8Q;: 3R;iINm4N\~ g=Ly{|HZcr%b';x?"_DNn]ln<|ɷ۶%(GJ)ѺP[VÛ'O[NvBvƩ@dW_xk;h?Bܭ N>wϝ|{kjomo"J40+K"QC>ƣ.cQrXVW"cRv{ԲzRGR(Uq'v<Xs>"U>6MZЦcb4l`FTPcHS3` FQN;mM;rSjoC|sPulcC_<`msy8QSlb7_.[Z1V_:&f&>dnS92!Kr3~Qnw6_ooU#˾ ܎)?XluԠcpk }0 b1368/E3eMDɡ$ۘɧfG4قH }M`ڗ#; Zm!u/r}9&y+E+3LAg46a w('pϠYF 7o,zS`<"o`:mW?R7ȬyH`)ujFń"L&( S_٣_DIўm O"+p}`˹>fu* ;s5=sػ|ֈ%8ZP4q&uZ)iR=ì3A;*)Xk]uRLri&'KKEY*%? I :m& {`N8ϭzpXU;د:AXk'ƪywlD=BSoӀ+o2#u<뭜[nj̚*cܮ=nC,5. n77B.K'kKVye~ٕr[X杲qIǘxlb._'K// \ dC̛]ְU5em4wk#`B]/ ͼ*XƞG[5[rذOӸBLn0`"o8 J4,IEZĹR̄8qLV.@!Ƃ ugp m6OylAZCJW~nN 9.(hM|CܐFQ8s!a |rSg, ;y©[0[ - s5ƗvD1ͭĘWhRZc51FVlTQ} a|!̴ ^gV^?[_?K$ Aݛ)dxB1Ę7d_!X.8]i;,_/Whɯ0RFo遊*bi@{nUۑƬ6K%1DIQ1VJ樜6-Xdy1l ?OTb Vg-rӪrb5E.Yo+*٫g[}yd!qbaE+l&;n6Ž_4uNr'q*.4|@D(e[BS NS$mA#ؼE(bSݷPh,RڙRu -ywܽ\K$h>2n彺bkOp eZwo[闺7O}Ȯ ˟ۤT^.f8ͭV#ͷBՉ' uܼ;̼/]5<< MDAT̅QC+ b]l h۵:kj_œH0c1rU FoH_]qG,΢ی Y, oeWo!5rlTYJNJ5jf-}+BHb{c3"J`i]aȘ (JqKS=H[TJ$Ŏb+=ekOkSc.=vMG:ݫxї$`<_X5;kβqmkSw&,n[R*.\ӗX/U-*тJrլ 3M)u=wjf)eVGܷQdscv}ݠ}JC~y"CHUo>}!)}!ߎSn~YFt+chJ yu,w>Rlc!ey61mΛYi)ENDy󙱡LB;u_ab!F &W7gj)QARFRUUu%G&G? D1%:= >c" Ш30^ɔd^F>؃DLm R&cpEWZ{D=9@m/+ #@ޢu'X 4?ծJn|)ag ¨$*On*N7!Lg8ʜ+mQw9DE3Ee56`)LIVfp c5ȸ's߆qWJxW{ͼéfM=ߙL›'ï" iѥT~݃C3gbb(>]")AʷY*`vq:(_;J}P*:`Z`s`ŋ3Iql1oj1\lK_PRZ.UD X:TZ4\պ8:jnPb'qm5I豽JyNuK|.^X#*tLӊ)~ lo@G+ytۉ^F,LCBǣ{+K^AJPu:A(ѾX.99jZiˉ":=7*YɊc#LPV[վ<];6"GZK^201W#au~}A&vec5*G'Lzy=rW@r#J/' sl0cHyǵZ:,m=>&16'xvg:!6ӻ,.H`,?~/z_kJ Vr5utcD(CC˕ɘM퍢Y!z"QƧ~#g39ʏuh7aϩĿ~V%J8/2R~ >F 1XXy(Xћjm",`)3bPώVl"jؾM?HI.KE=bӳy\ %m4t P}ۢ^ynA6t(x;v~L.ol\&w%s+Rv?g-U>>=h)0;d>~wpzvpov8G&Eb:M/[7e_8\,"UP]Q5/͢^Eo** ٧3,_\R\ȇz՛y 5@G̜,.ծ)%]=rCAH@Nv -=H@.Їrvͣ*(]}Jnh$܏Gg9l0 1u _ye<z,'m,K/DKAdaԷX<|ݓƹ@?ŧw)wcyC|A@1 cyl%yyU'n0^'zY )9=RW&9=881>X$|HGÓ γa$N07su}˞ N-{FN4҈8B]<VajePD|^ |ZtتX-# DظmhrkDĆ5$$=< ^{^~}~PKZLp<-Lc+&com/sun/rowset/FilteredRowSetImpl.javaUT bnW[bnW[ux ]mw6_r++vݭӞ*hcN9{@$d1H;3x!H8q@3- ;Hy]LJ ٣=i΃X0ӜEex/Ec8ft_rQR=ᐝ/՛ ;18cGCpP$*X\Vb xQQhVBR9Mh< (g"gDRӂcO^E"rWQ8 DRv)"JI<2^ ќ$NgJ'vBGzL[-EtHJy -X1Aʔ>8yQd<`} 24.')4BY:rsÃоlp<8 O+U>?d^_aτX1{(1yCSQ(.Xð9;JxVc^0!rZq[ aÍC61Sk(q\e_WinEce]x6뢤AɻwEc|ieҢe>nw>롽4)986=]q4dgte}ǻ{PeT#]]RVŁa ' )o%d~íj9W(Ҽdo%EiڕYkKz-6};e,Z#nwXUO^7D z u@! Si^Oѩ,yg{.|28+2DcDbqf, ݤ<=uA_ "2\hr=\riER(-UKKT\xs#әOg,*~9J.:r~U3Q<^aJ3t=b6,L"3΃!D?v Z"d颫\XRryW eY۰dGh ij6CE9FU{$OQm5 3mkL 9aBɣQ0m6/=ɴ+Ԣx &׃K@4 fyDxxx+v톖ѧ.WS4u΄BY}Ͼc$=q5;!2 0E 9MbB*0 LؤD6$|A`\v+LeN@*2"!^M8*دkGXzT$ S%!f }(!|y_=ɥJ໡ȀnL +E}9U:pT!*$gG9V00 ȧL*AnMx,Lu%abx UxP@b !:Z%='Z*k-=H3&@ D ѵbSWrM/D !K)/H4׿ rj  kB j{4 VA.D V9ψgŏΊȌ-1jF N)Q T!QKpD?RljBW#wEM #흅u-ELyi! Ygڵ8Ǟב\– P=JkQ3@=KuLJmb1revtLj+R0Zζԥ{I8d9Y܀iLg[{Y>HtXW+cnG Ty~(6񚫎?nd5 zm]aV>GKpHZMnC/ݠ(:QqT|,#g&ޮlp4{v'UE*)=qc iI\l`كHeR :n׷P6> {哴 ֵѲZ72jxYخSen+F̧{)r/4;BKfl:gD5 #KI(0J+M𾣬hIq-**"Ml]癩D1KPwoG_翝q׷贃UJdj[F8mO̱ڃԖeGTKjIѵ[z:`c76r=BhX4G+f&Į2}-Ssj(IF r0UZPfue_}Nj`AfJ\Z Vrt+3&Fcu$tY|7:$7:tYɦV卤df{yP6Ho8i)q"J]T<6cQέEF&}:8=9x=mx_KSs4m3]SlFuO-,s'ztq}s(|E=, P.TrHY4)$*ь []>ΔC+|.}nJ'au2K?dzo53}9m,>g uऔTl$eY}SM(Y<V!^1)T'+kΕJhҊ<}.9$H7Zl Su8K#Ԁiټ2~v;-(;ֶtmY$m39Vޯ`Z~"&Z IYkjQ'X) uGhXX٘ e2mZhkSBEiރX-m fP`-]ur _&BX&* Y׬)닟~XNkޕU攘%]sB 3/DsmTD ;?R<C^:KݟEVO)Y6JlUS=Ö Q1H+:`*>]4ѴK7\3c>2mѼ.K.6w|6L+`g7fUC|o&vU䬳m/~G;Cr#jtm7 YA\ ɟqȲ]un>94HJZWK#E{=MD!e|wN%![IhOǝ]K.}ne=#{E>ՂKI\YF} }=?'0jx?pl4@/=Q{45qy0ئ1~VjܖHVDվIsD kJ%G*9xz䀄t*Y]aRM{ڮ>$4{UK2`J=.kKHgdlL^ټOM>5yF=Xc\~4c{-W_*Ϋ_*sO_g]km܊OA;b+(=7d䓑g/*N*48x< ZM75ImM{?Ycqw\u,ˎ_qf5|N\uƚ >+ݏ)3zMO~/X?s=/)~pgR$"oc%N^^,rܾSu}|z+? l-^v[T]񮈣0m,X\Ƀ6@էW_DX'[.tul`hqOjO'8+̫[s bS??fB^<<<;|e1u`Y!zt=>Yy|} v.sZݖ:WvsOGP*b|MhqK_ʬ_ i ♣w_,;y% zK|%W^sؗZԺJUS%f=KA|ˍvb٠nbA_KC}si֒'M4Ϛ͝n?:Z[M.L$kO")G[^nTqR䦗re. ?W}:\FHC<=+#-@rTYE`^DEEg$( lVV0.6-V/\ꗮ2>_|Ubʗ[5EfkYX놁`bypdd҉/ z^(A쒷=o rdӓjx..5kJ՘՟jD0k7Z5rvpp\e}(Jx>w/вgx9Н,k^/[?4͹3 $qK0\ پ.-7hGȶYE%[i&eJסRc^nR3.69Y >[붊hW֞boq2}CRϨnB=I'WuWUε Fik}ݫZѝzȧ"__cwUͰXQ/[TO >#tZ>|֟V`"k&+a~xD^R~_@!?cnUuF8yt1)kY#OD`Xa3=M:N!Ix0Y&O|exN^<|9W5}H;7q;qpFd@۾溅Km\_]i毀@Ly aFG܀@k X\^$q7zkG(PWө#5qIM@av u|\*4yarR0ha K iP,9JU~1T 8 8*|x57I+K(l |f8;אBK8pE.Fhpƹɻ$MvtQ,O)գ B%K|ldΊX71LUPK#l,6LPg8:d 3k@X'iyEC\9X%%jz0:aTA.*I!2itVK,3@L: Q}g" XDzR(bh8KUA+i[W!)̴_O׃<~??"֑**fPKZLm6$com/sun/rowset/internal/BaseRow.javaUT bnW[bnW[ux WQs~ׯ躗H.l]%cdQ% T< 2̂gR u^Q-7<#g't~vއ^e&eS@j63QQ6u\ +! 'ԽG4ѨyOhf¿z16zpۧ~cdne.ׄ357k%m\I47!z3-#bfS\{sMQE 7/蓶ګia25AJ`srشHd09M7cW1ѵE*\jr̓ep$/GlPNYBTqo^O[z2 B0VNλq?9s,-Dk,`nYk2O5AʢEÄ}uhԽ<^8 J'Wf,8䕍.w`Hγ?.wGmwD`ZAQSs)2EcNج(& dWQ**aO:Q-UU=qv(mۻuбm,Z.>#V~)گ.IM㧯vASt C1\I!KHc=7\"WLw#:Ot(^ B50şSVxTYxD«e(ұsM2nUAFNoͼiѦyI!nki7!!"ZBu6Hsh4 -BTEQdM_Kݗ1X_=f>'*.H\#.MAw4QPJ2H82%\'0(t*"O]vRFNu5L{mc3'N{Lw@9^kze\4rع<>{s=\,0W1:4@R8X`L˶pX.%#- +$=Kᚬ(FlRPm#P57CSQ!67 N'Y&A jgvzj* ͯj {`̞sHΫ0g1ZT Ja(Y@paruͷ S'Y-gEq 1HX1CqEYvW $߹&ًѣU@ߏ PKZL9.NYPU/com/sun/rowset/internal/CachedRowSetReader.javaUT bnW[bnW[ux ľ0~ aLQC(5f9OS4_@ HיDqnhJܒJ3 8+$_HnvaO߳w||z[@E,FJO-|Ə_NfY*\1f9x/g)v=\7<܏b>l;ⶣ$sCClrǀG L3!̏(ڤEKmD\Fiވ}u&-`h _i*FU*sގÃ/_l<>Is*n}qA><ܤi+ɘ}󷃿m$6/P7p$XF?P(JִJ-BKro/\{HP oP-MBP;,j8V`dhFL2-DG;4*RkR)aA s\^4WkyXln2(ОL~ǃPi7\p0<\Fh?UbT͢@EvM ǩؚl@f]4W*'S P|"dgVAW9Bu+QR&4@Ax5\ } s@  OA;[dtWw^ʀR|N ]н7:gdlVQB?Jh.$RB$fP. ^C N@CsciBk>]FniNi(!8ܹ2V1z 2OEES>{*#]n1c,ym5(TT*0xL~T2"i`'U< ٵ *ܮ# Q3Xam|~͋nGpoOpRԗ\Q VZx\WXa>Bx^P7#k6q58 p<ʃ![Vyu2^Ou@msL/$T* PV'`@]b}Z(5J֖jxZIĭhorĈ!~T!1xa$0Cv".Jf+E ÀfAxG9U;1-iV @mrg?ڠ+ Ⱥp<2 4)vT1Yꆿu??eΩ n]FX7ʩd"!8$IHaW4s<^\Fc(q*1GUX|@okFRL(m-bZ4[U i?4NThTCE'vS1c;*=8q) Ar&J s!0R|NeJy#fGCeTMҼhm!T:*IY Fip'%{$E&}7Tkk</g=TճWnlyɊDc? 7 &0u$2 ['^lI)qdP |Ё$0-)U\80v~u{rD7^}9ؓw,)RRn8"n"[2HLݢ z$i͉(ITq:|>T:( /2S0?C*.ƿLyĜݲokk!JKv~Ai-z=2пj{t:(Tbi(6m2+sW7Q@& \qsr:49( /Hܪ*T"zX:{foW7d"Aӳ Fvdm|>VztwJ=է̳5OM*+ t5~Y+:kV#mDyg͖dˣ{ұyI3=U2)eCYBS5C)G}%"mP  I-KAS14sK()o?PP t笗_"!Ӊf~e>J{įC[cX۾USRxĘDTHDzrL-uS]y0*wT$̈?4H4<:xAEQɧL4V9- fCEU3cΪTV5B#J;'*guT%Ȳ^}-fw Z&J0NÃ}}e4; iEl--x5OWř6yݳj TRtZREOIɔFV!f3*[|qEa"p2: ÄLID$'u&ҷ]8>"}mT*C|\Q?;h~~ 3)R|18^7Enzl ~hJmn4y.Q3}0]WIK⚌ SsxejVZVr\u}4h`{`kf>氻PnԓбH )u_:0˼o}EZC%v%l>K?@AH. 6=t#0c'~QdwHA9x"'*lSR*S_ާ/::UBxJ>6FbR/EelݟA|cZ*n= %18wQBeo<A T ]Y«`@)Zx3]hϼ 'aӽSNK$.X+dDl 9˃#oy1OznQD+m f6koַ<2 ZL1ϻ/;_mYO$Oa bL[`[^O꭭a0Jчy>4@١{{蛌%Տ oY [ @$y;֚:lb\QM|UX5h"Md6|irCs;Vm[ǧS CiٕEIrvRFRk{ăQ?EO/seSFZyh).+PE.6 *! n^ T\4 Tiŧ7iQͰyXIO%8PyT{ PW%ty:O[\̧㷿L"t*HX6>Bqs+_N߫(iofXQ13 _y?]{}nۚ`[-g9Ì<%s~?W7@YPhn!/XyICx])~Z#gc%>Sai{ѵ^c͗*@Ix> }rzB`4ݟAzwRtlSʕN}(we;c)%6Im47b{nSw mٚP=DJteY;__9ÏGal:ϖMudoFcR!߷ ܪ. VP-peT%v,Q_آk[Ƶ~P.#QI7*ũڊM*0A׿7 $湎3 WB RD\ߔЫ 5gl*A r*)MKˡϬfZ:cjmͦ4ܑncx*+S"r< FҦmϠ}4[m YW]xek8@0/rT@Uဈ 0,+f8zp IF-Է/gW^|}W_ hPKZL"Iۅ1/com/sun/rowset/internal/CachedRowSetWriter.javaUT bnW[bnW[ux }ksDZw1? C[l:u].k , ]xw!9k޳$=HU,3==3=G;Ԏ:Vwuquݪt[}1iM٣VEۨl>/ED/5Λ~&:9PgL{uz~ {v 5ԸmV,5`ګ;vQN뙝s*z:l`@ӼCd>Wـ ٣+kV*ɆAbװ:`'$\7u؇HAf$wY\ML;^ox:DZa yUG5Uq Y7t+u~m A pseIO\vp+`(Nec^ؗX_hzy )5D n`mPNq),EWsYGhhK*1(GWW k{C]gq.W+8HK*=d6r !uBt2?Թ6i l&"i* Z U7*cm*gBlF U '-!s~km)> |O -h:f'JpS޳Ä7b8J (,͖R |3"mjK;KCaRl RݴBU:Y!IH?.E$SgTfGU|:ʸkӓtM <վM~JosJ&lk.[./2qJ}¼e- @#s-r\ٔ>} mo ᑝ~rEwϣFv +}T45r7!hPMH3̣[Qr{iA¬ j,ɻpFltIZpHMܛa:fM¶:Xq\rQҥ$!8$"Y-ݏZG}1> z}xs9A< h̲φdžȤO/ '&>E :h1m+8bSۼUVwR^Nv >fh5ϭ2Yk?}fCD 6%<(Y|0l0B9$URp8֔eՂ#ү 9}{I,Ew($ qj癑%(6&] D條_֦iVf3)=Y:a@#ZIEHN4VPMhʤ=vN/S>5]=Q!,BV!$pkz75q_VLۮhW x\SoNye8aJՁW}.^(H.{3yu̙;i9+a~<1 A/[ $]Z[r@o_5\&bzBNA7뾧ʭ@l.M CKΪhrKc[3Ll9o)c?x,!88K8)!eXDg޽`̽Iqiɱ ]n<}uXV7ejqaWB=rJ[ 1lELvXc8f!2z46Nm`;CZe=٨ qd:ĜFXvJf[Xy՛ *<;"z'l|MPݨyj&.UrS 5n"/b& Ѿ }hRQdwQ@,grƹ=ՊeQ)hV޳ĴyXda:g}.M`eƣ7murh(*пs?Njq_u=1_'U}<>XF,fQu-[T,oO>$,I*⫥6J5d-=~S^u^P֫^ɶ9\w݁p_u%Vdʊ(W4F>`f3+T䭺\^#X/ ^$¹h~Hfԧ[Mtw^1@|ldꚏsY[ɤҪNRI. }T<k|DKD#:=Ӱ4$¥kU:VvE;)DnC wz+Z\U ЂfNziA]ۺ-0'vgzKJ QxRV hZ n*D)o€7-azz7'"̂/ ?XIeh`*s.ɆڥH'|rJD#F_wW4시=01!F+I9BsL-{,!;hHIp$N򥠺,RwNmBǰЀjV^q)['Ӭ4\W'4/9Aݷ!PXA4d_3w:2&.!'BfQEb'??>jKo E$ǭi5VȀ;֌NXTdؑcDKW*J)r@VS )#5qW11ukt5=>ϏX|bb${\pE/xpMi DӖͩ$o+t"-֫VXj@f2z^QΜg2~$)M#(W.rO)JȈc~TL =9 [8''E*(w0<Y[nbDPyI|[*fEl1F/(LEjo/ e ۹%@CISܥt 3_ DJu6|Iʂ} W c?ōꁐ L%=_!!5z#mWiHUq_{7lcrbN,?Φ#v2_q6b-J]:#AE"0\"cѩW&e]ǍHyE5 <G:+OPWa֐B+mzlE{\kK9,I#p.TjI@8tL%4xG0{ 1{B VT㎣+Inh #h QA2NJt-tHM 揽s|,N O49))w]Zq)7L=ƺ14&G_6̓ߪ^IDvSUfOuÊWiT=j2']'iW{qCcv1s5qc$XjO^bE͑%жZy̅ 5k(Dmn6˂)6QdLOTQjT إYw8F3.eĄDnӤљ*j 0`#9 {uND3Ab2xyWzT'](3yu^CR݃x,D*C$vP"VNL#e(}~~JI{Dp.1N]W޴ 7Nudc?f7mkƒ|6{jcb2crGrgWq - Y饹SɳN5b-PmǍM@عTݧx.ɯRKŏ> =Zfb5tD-c+gD#Yu_z?t uQ.OR w䘉xrL`arֺ1,|/h[pl}N2q~iVq.Ěo<3ZĹMRG;&oIԒл zJ= [tA\wm Z[TU4B q ~F1"x*lɫ?1Ԑ"U9rz`+Zp TSyD$Z1'`k.G~"@r(d"E,Ҧ8M0J}=CA _ gX lc^Jn&ǥl2妯/cisgBiN}U[_s( Ɖ&Gjb5Q~oZ $9qʪkdҘ`ZEZ̢ZwnYP:n _Ю <4~yאɚ<$Ӹ$/`j#V FaOCKpV*UCNqV^] o-$I2~F"/y 񐨩9X9A AQ[,R1E,Zj52l؁W^|0yEzLLMjU UYh|^}Z(3wgE&R +ɸ$n#=˨= c%D7m]LJB7T/̲ᥞ'+bx-t7xP#i3.7 >Q/`'u%A_J.OEӓ"~^k͐{E4lʠ[Łlۜtn]e\$7ysޓsHcT/5Wv& zEFGŽ|0w{X#)ĈKZp2R#m}m[u>[jj42W6QԞ6+CB$)[>Ƈ0]ҩM=W( z{>/Fd Q~تp)5W?( 'ҦZ2Z. wsQbۓ**8w"x|PSP,L8s_EFR `AvѦFZ]k qvA[z kУ>IU`JP@'a@,V;P'>Qۓ=+eJ?5 f^k!<sc{mc w%7^33U2B! ff#MCy;+ /4#&<ڱ+>0d- ? )a֞!O.hQ;ҋ[{h\8lHlUg5\Z;10dC:lt# L0/'9q8q]lfCs263 /Wu{BЍp'ƾlb1jt k#⸖C#?.hDtޘDEv_"'&Zv+/dCp+ח=iQ8cv&R4KH{wB Մ&hhZ ˑ{L=}A4u?.4x$";,sL_'%ԃ ߭0 aS `+b!k~{99&KWDfVW;^kDU$mncX2aBKw?nr!M!G2ڸb_fGؙ &oW/t0@[ ld;Ƙ.&`>|W-"h6oE:w~e)ܯD:f`MR +Rk2]!ު'x >M<&"U=`,9 ՞O7q`nٵxȲq]?Ա]P˘;?#u>b9P03M o%ț?̌/O N5d~ae[l+s$X.䶡{$X.)-u7Sn8Z7|iSú m t1tU&w{n^v~ nٞnmQtȺ|9GLUIJ8 r "h6)>5 3׸Nr|5P媠/ ׷:+9`(7QcaYʐVrs\9xvMӰcVaDF sP@L`dM. p.!~0ȻPYC!M-Zjg7P3c+]!J'Eu,f6|9BONljA[:NkD'+O#M)d$`P X$ȇ̿z|#$ ~%237=iDUh $hШBҠJ7!tX;URjYܣ<^DF 5W8Nu[6Ă.?"#Q1}Sl[CaX 2%*fIgX_kZ'k/ar g7n$C^j^>ԝۺ|c|gb LZEŰS6yM8PW31FbL,eFtݐ:~՞BW|^_D6V[<26 WȵT T #ż!mR %= /0rb@=WĢkVP/e(?Չ \*1YPL"yb@m^~[(]^wZMS'g ~0Q=d:gBh4-.lr\7I}[XnE kGC;涤\~$r@ԛC0&NF<7_2=al7>AL葨[f>/YG|,CycQصi=rKk#ř ~GXBup#:YfأK@}mȕ$Sn744(;#qTm&bݞP"JtRA3_g50O"yZ_!r;JK vA6n tʡOV͸6Y h„[*1Z;l}1NH?K Aj鱪ZaaAH%zYPzzP80 YۏBvcae98xR7=O:)g`:U4NPu=K8;1^=jOA–~fbe~\_QNhTyյ86]̲ H`,끊zلwFzʺC"#rf?ꭁ¥; 9%tՎ/ R~oo:=+Kva-:.!Y2̀,V wrMuQ9i$V4)dD`SS:DFBN8 /U^N=IKluH2mnoXFz1ؖ&nnÓXJ/ȭ-ꓬZ#5v>M1xz@ASS[SɺWE=ۛZK,.ٮ H{,P1VvtNs>co Qit~Jgi>B(F= b3SG1@mNRjR/P.@VX[Fc w`r=J_{ɺXI뮻sشW3MKdF,nZ{=O(@MiW Kϥ-"MԀCMUp bU,b|vO\LSPW;#g0 5\XKT+[prA9sA/S4CL5ʴՑ5} P!’[]&V ZP_>qit Ami#%8G]-7u \+k)z2a6L_QE#uh 9*{ @ պ.|V;A-F2z!+[S:KtB B1ZHnAiqN~#q^@Ns4xjحjO>%z>/4A@DZ:y:q?a#;>%_*"d `joZ VdRkJ9zJ o|3syrϤj>1Ί)}zYpٍ1o|E3auCW[: W )SO⪩VH&3¬mv @c^Coo;}R. &}~@Tf`%џHI?Vn[ϰFU\UiFK~ZyBYM?l;HC߷ ǷU,ŋgaϵY)کv0JwLQLKUN+5QK\,貜~~8M:$n'Sj~Y;.u!9`LILJ䣢}a=bn&B8Rʵ5ځc ݱZj$҄v#*Y+ QJJHllO.H/wykkJjߌ)!~RqPt:1^Pcp$;^M2" N3 s鬔PFm!_ sɊd߯}=a͒Y3]!4~G@![\fm 6#d~\XmmJx8j䤅CD(">r 8ԍ 4n/8ȳoY:KN^(*GKa}ߐ}FEy9}H .ظ~>GrLNεM=$EJi0~92 b#W|}U{7LW7 NsXgVwPzxè>f!؀7O楑OdLR[v>gxY6oR]ȵ^z8 1$ m&7$fbg* n{3+~?l&gټ:Fu΃+KFwܝ b|ķrU[t;-~'`L jJ/nɼH6VrbDŽCDKdq2 /@ ~yw1K+E{  F hzp6|݋rw}BգZQ"lV)>?(h5 ?AĞ$:$0 #oӲ14D -㪓S5vÖӚ8x&ݟI`6u??|<7$2\/g,@/t! ߇UKc0.r9gK07m))!ۃ*"2lÃB{# yVcV9eK0EJ=՝IKWfm}Ô&Ö9i629W42pE 3 B%šsW9cKr:ˑ'0qHn[@ ZV3;!#+Ӧϋ|2Sog<^ ͡qAR(*b\3ԠӣreN1u?{/7I%,F`KP R)8㦨 OSxAFb^/Ճ2HKmB5E^-Vx'[\M O42S",(|SIť& f6Hr9h]!7"[<5$g e(`êHlf֬;߲/)[tBT.w\H:Ȋds|O4J4ňFս)/ t6P,IƄ )@)?޼wv~\LC\1rjrzP{Rb+<г2ٛ4c tJ'4[͏֤wcth!̽f/Ӑu@WFiNI j҇wԔ>7̯"3Գߪޅ譠H^;ΌE)\ꖍL_a$@3Y*Xlnt64SYopO,Ǥ9!}Ӷ5SK5]džv\7L0RZ;Kg~ΐeavmy\;VMuRT{ҍ(_'_4Xuհ0x^&444ω0eG8: ,:f]>KN+RմuBk]]F=¨Kg14o=.7nFG㠌 FM`=~ LC< Vd&ZvV9fQns8o FnL.-&/'Rq4c-Jqa7a%to}*Q{YG7Nε $<7 ոkncĮ;h#-t3TrE\XM9Fg&Cr'jVk|`ACc`=myǁ;vv# vC ܢ395Y3[CEd۠?ӣ,i$Y,,n "uvxm%wWRv *4uLL$ѽM3'X~P~"#7&&n6]g \W6x 6Kr C<(ʝ0QWO8ynjD)8 nS]@-[8B%\ 0ϧ N` Oo=D/oca.2E|<ױ_ݦZ6>/SJ_dtdtbۚ*v߉J_,a TӆWd >bv xFXmxw@IY/MQxWƩKl}͗GZf˭CA NC3UMbӣ@b1&}j'*(L @iM sZ\~GX}^^b+qmAD6 OqF+<2_OxjeRGu$(ŭWD;<2-/u/hT~/Щ\ψ)ޑ%3nV4Ɔ;rk@ -r3`2=Au}j<]b0fyp ]%~: 4[v; l`:K-OHhVp毊ո _rNe|QL1Uev^C(PigPVhp]}ڎ=/y.Yb.fQv BfMhκOlĎ ʖ& rNG H#oj*w_݄UtC*3\0TwsIz8+8>2 -whFP Cpl1Lg@٣E>>RkcÌDբW-@3 G/u*25=c#hlshfxNa>YTto]mّ7 nIҎ0R|]"ybleNI/XߺDAc3jI VZ$dsq1ٺrXx`(%IJ B3+JZY/5|ʼnEPkաDXo'nK''B:D.~$u뛤 +'+2CW^TLK.A;v #dj<}qVC7[ìxsr""Xz gPjr+B][/7 )-+]%: Rjz ]|lPw(w'bƖKHEhim**~g_FNC~G$;2,F#}&;9GN-\[4/~ bf_d^Ԅթ|ey]E*c@SEӯLdM^P*G0'788ᷩޗhkfu~0}5'CǗ`xy/lgS^3, $ޚnD=άA" W8E,IDrnyܮ]w;$6(#4$ m@[)+dZ 4/DsIG7MnK4cH\Ą^c9 ӭcIO_0S\=Ƴ$g溬 BUI*,bPvPQ2/h QQ'?5\VS FOm":Jb@)' Y`KxFd݄;#W a+EHL'745RsJg=G`m]P.F0"VC ʥ~ԃ NiHE7\3\Q.92(;gcdW,b NcKKyJ>5fe&㝂MzK`ۓ61,N%-^77!'`a+ K! 'vM}:܂0R@>fiY7zs ~R .V7~B'g/ <ר|U͒݋0zGdiw݌nSm-oP"hm7C9rVN 7n>R1DS4 M isXŨex}΃Z^=ڊfs/{"@xl&:+1_GafBw AW9`>jI`ͰЯ2]󀎮L0bjN0juIsFCնRP45A.Aeuҧ-:-?fbM14!:]:m+vכTt !oRA ;PQs&jc^*o2UmkPY2N*y%Cē( XHjeT|FmNX':T$ݵމn򇼲,4h/\hO6RPHkB #cـiLJ,,0QQHw!UDPDp8oꥁ檟2RFU?TAf1cuL7?)oz>߈ʓņ1vaH~% xw8AQ 㲱8")OB=7NZ/$ytƀ+ZFFt<,䤪!DBv_,X^SǩS&I G`лb Rsf6Ⱥ5ge:ioTo{\P>E@֣OSmd%%{,4"O8`W~ *O0Yo&Zr؏!XG+7ߧ67{TsPƺ=$0/fvm?]gsdKg&LӴh;TCu yFGX0`ޑD){1Yɬfjei;-3"tY\s=9th(>Q{Xx*)QڻcJ^-#yIt6ڧ3Nud[cmb+= _ܻFDގ`! K6z eJ[~27SOt43<:k&oR4ȱ{63мQw% u즺g{Yiڲt+][_] EtYlQy!6)C(Σ8@D8-2Gdr*i|wkp9mR ,$q $˩=IB#xG1jE1tY)_~7b0T*v}`}QuQDўgNcT= _M;T[Dӂcng5һ3$&Hs(%#+awy,0r֙WMW`b{(-bYxuUv)#{*>zi%m7I>2Km$Cю"(lh/_cp.vߦu4p`h;5k(F75mA5B 1?qWs6N^uE>Z^i:$=ʍB]2L323g(,Eӂr6s;VZ});#┶w1w3poCpK/B^PhƘrPssVuWw2S#?iˠtu8Y6S+W"qFOX\T 1``ΪP}2A<"7:r6? Fq 7 ЌڠUǗ2w5[JY fB$'8iā~B~3eMPH˿4c5Ƹ:OF7%F‰D|v#xIP/ vK=#X1LQu%U{#Dy07]3:,QjLXj$Z<՛w^2=WYa.Σykz2.G\&؈0GSBd.Y%N>T̬z|I2uT%2_2"08&:`\r4C0X-2Tg*-6dÀBLs;|1 J{:PAU+7X0!a@OlȆRO]z2a~oMb"RYcTz@]6$_#؞~SÕ3]q]EU0dPJkͮ!A/;w{@@{t? [ja )I-98L 2B!|Ui mB-4oxR_H9]hEtk6(Nh}6Eʅ7 P1&'kPǮ7;> R "D$g,B d=C_;B’575 sԛB)cT=! \Q&cJw?-X|/ VbH|DRRcCzky㽚J&)GD( Ͽ){(cGGgXNۏ?wc8\%i_C08L^ Au[Z^Q--n&/a S&w (BgGmpchʮKhy [fQiM鄱ˢWQnKj[6[+lf[E`7֧ *DRo"x7ԛDՊԹ,ZZ%wzY62VkR h!& 0;vxDu52gk|Jh馊d"lbWsc͋4Y{yG ؍zsN!;ՃTKWXBQRx;MKtA:=X`л4A:A"Gp>Jsw--'Vx[+ǎTb-5xqJ#ߥ[x;C/Rtʹ֑gSA380>&of -=>VRDO2 \_$Fyk\qi_(t PS|{6ԙ~rj'!%?%Ыs,,^'HMãMrio4BtsjHjUX|[5ȬI 1`$`7yͪr=OHţPPr@O~Awbz:l}-1su_l=fF˷q bYʹg',[j`mǮOMbEtʬq3$d|\f: t? !)Opkŵ;^d8[jQZ WRp` 6.{O:J$)w4۬Wæ7Rɭ fɪ Z0m穩 YjD2{$4Wlo4\K*%ӱ4&vjM(B9Rm{;4N-ƽ*YƦo 蔪9J|VRDEa[l;˿J? ,T }-G3I7ug ךR ]m^lM7~$yoB M)W%ѓPe!dwm2<-&ցxUZ ,+6QNSѻ})xKy͠_AͿg$Q<_lQn%ta# &u  @ZH '3VXq1Z^n} >fJlki&5BXkBͧ]awA B>б'rP'AҀ/]m+P䶵fn/6YA|Mw>αza%d Pדּ5^U qEV6nl`6)EvKG6rܐG'`^8)4X2͉Ӯs5.*Z~ם! iv1y){\z s*\t0<fHG, <+yWb9+83.M(̀f{N@ T7SѲ,{ N4[rF:Rh^Jh5R%؇l3ʪP^,%h^t!FR* De}+THTB43m[gv1ktsJϮʋ—$*舗˒O{ׂF Dn"IIЌ{\_XG /wbGr-DNc &a8 MSlegPI.wTUS]i2]FউvјN[)\~eY9MHLըX))Fc;4l[?vաFVH6nZ9z)!轸P${CO/]1t׼A@R*oV^θEOw[bCʊQ\W?嶓x% h& zK=eg/tr /[IY;Јmfc"ͺZDFX=\_] 4Ól댘ah$~0|r={JSp"~Oh/hU=\#l4 JZC %p>,B BPܲNb<=Ɯ&TV&,nY_5v?7T_7N ~0$J ΐ断Rf3 Tup8GF&$70WԙLW`ݏGͦ*@[sJ4})U[è H.Bj6D/gG7_@ 㷫=BOI3 OJyO z&}9'"yU/pNpNNXHSu/ |&@f5D@d5*g[svdrGz./WGmtx{~VocGn;_WK{.3m穸9xЗ  ߑ`xJ|Q?nHrE@y'}#䭈 1:&?^P3Uc]'`\mhY ᴆvԳڂ $U܇xSC ڛ;oO!0#W3J{:*œN2@2!!U ^!(0sbV(dޭ% ٓng$X07ˢ#hMZj4Ofzp?G>ͩpl.3UɌd}9ae5}uz@gU2l+8ᦡc-rDltQm A' 9MTәo+{ZYQg@Xv2VoxOl׎vt8mK[@/*"ۛÕ@w)TExLb:eU*dAwro3z̄]/zx0ixpq[EÚot405z^Fyz!V{Am$X)i+ xXEP;ueж)\Yö4|F9cITN[B>oe43ߗ79;vM)Ѕ)9-/'Y[IZh6y=!DLjLbrHD,GXcn}yRM'wHhG?mRUʝg.=Y(p\0Q2^$}RzVs tSp֙~3^w4s]c\&&r? ͱfq`].w=M JCUedDR?[`=s3 %AqȎ`OGq̢KÀ#8#ӂv U( Z] :m~LK[RI4{.%*]C0uhT@R׷6?VA  ٲ|4O! !pXN;P]J*4N|ʋ_4CyF0&"%{r> U12i9F7I#ɢh6ƻ~0NR bJˉ#$'ZG15)ptr$0a7{Gр8BoX y(rbE/40OLQ~iqJV{4JS_O=uL maMݲNSd! $0p[ "$> ٜo#2rPWuM{YbZ'v봎Y0 gQD!xd(fp5^2'6Nw}֎waTBTk%'J9D_UA2MJNW !T;"j .p f gx" B 4،Ek8I_(±8؎9 # bQ/aH cf,gijstVy*ǕqkC%W~wJAo"(8!6&=DdjNwבĢe?E˷5օ1BGR<ČRϴS[!-,:s_&֍efT_ ,%p_(Vv4B7yfyiQQ%\ rNӁh@ז&8ձ@Лd.=2t#ie5i (V1\AgJ0'wO,'EliB;ЙKr> MXS ]h_ħEX+;z"u&V]U܏lZ>Cd2IJy$2UENw5F(gf;L b:'I][otӜ舫oRܱ_|r| s7Y}ƊAf2Lid2ʧ` Z rF:K \y{sr8]Vi8{d/hle ]j,$m7) q'1 rRNlv s0< ǘv8Ru=՜W割Gsg4/M؆lqqݵڿ/Чވ٪ Ä|+HmQ56.G À$J_<K$m%"@Hpo.)Gv:4BH)Q8虤[,WB,0$|30Jo@YGf}=ʚ[m/ [ }S%_xuj@PvFN"դ_dm?y'%zDpω];h\=}"j9?ȹu$naKM.>qBToi 0)RY/PW=9H[i[͹`vDBb'@;Ȕ!7H~*@i W>RW@V(z%c5  oO/-?Eʴi*F׌C-@U{j m޽ՙ+-1Cd6xi> H{Мvo#@[{ aap Uai/αxI,{Wr4y&P2?k\~)6RKŢ۹B `tP%0x (lFJ"c">aT8wY.f-*ߒ(;xBl`0LP(::2_r<7le, * *[pgS;r d 1a?!V&W*)s@qq[ӝSkUU9#ۺ|<@9nvz}NN"`9?dM GPw˔hY A?QSX)RV^'Gu+ncY_}ѵr>eJi9Lx#جzKk ^_Ҥ\y`"w<|񵠂_x\7ˍ6 Y|OFT_w[}4M6G[}τҹah7_PUIRjqssxn5~}'ʦo)6j2PHhв@^$H42 ͭd?G;ѡFbCP>&wR$YK~ T:DB7ǿ!? ޿LJ޻lxw%wX7q5ET:vqk" b毚wf\/^@G7MT$jc~ RHs:89'uM)i݌)6O>"44K{ػpiExa`^a>ȔVu sw:(o$P#&NAS,*" ".GiQ|00b \,\d@Ÿ/ѝi6I5 r_( 41Y Ѷ3d(37Ib݁]C'0VeQJӞiEs(8^ ilȿe+" YwXrM|#@y ˻Iap0U,Bv@@3*j7ԇ?LpkI*rpN ֏E2a 2ad$=R$9C' H;"SEun _xX0q5;'d: OQe=yh9aBh;QFNZWrr)&O\=ʵ/İ3K::&ވP-GJTYo:cѬ~v&?,G .fnlq0`߈HFddT~4N@ȷ̹pY3< [!-}2NqꞿpH0bP}?&fN=ĩ:\ H)evt ;0ŐPz<ͤ0x|2$zu5! +;zٝbo$>'Y^hwM:@_%+BLrRv`6H)Ǟ ΆxB-uz#8e,; Lp=J˻WijSV#4(S7. rRI(l,6O( 8UfZ~1,JKS>)hb)rlX!(`c;s)́NbMOZiFZ*Vc:6`ERlg%6q/G1>ۏs!c@#[\Eg@kkjSN#ڃJ@d -Oq.wg 撸c!]&+SezQۼ 3pNÑstTarHqoVx%D>E-H\~㽰MA:s]_Q|,/휶R;Y0Iʏ)zp;]6Ec_t-: 7g< R{on(dWcd_7CBIz{i:9 nJѥ} Rs&;ݾ)}a6l9w @[YV6^ܭVWoH=hD|Տ FOa{|E%\;O8[JJᕫG)'% ؔIv*͙s>}1)K>Xٴ\N[Sh!T26z$Z i_$6sfi 9K:x[|e-H2U[$H..S39Y6%ҲU'=ۧDvck2'~MãpV{qN"Gŧ܇T)lW` &bc~iq.4 L 8k7 2=C1G?5ع_Wv^6 2><?{v4S1|P-i~[9 _pԉMQO9:@RwzdC6Y n팔CxRB@|/NGtw ־ dWINZW"w#[KqRpoһTr h[΅M *CЄ%ßW4Bbb'k/b@ʒ׬⇌nl EDLC ?)c w.*uvȃ#zh4v` ԋ19VrےE3ոX*!|$׸-ꦏ̠#97m+$V7Qb8PM'g{9ˆdͽ&e#|yP qq8_ϧRWYZ,[r6!U3T%&(˒bkܝ?/gt djpjS'\cYד7QF E3r_74JrI&`t26UUKzg )Fq-?j$dN r`m%AY VFk;W ȧ=HŒro2aa?ڍ9+X˔ ]rIVU3cd4)\퓷S q {b%q3xٙ5]Ih)E7jcAxf֠.%O"Mԫhu$ta%9]ϸ QƖódtFw@5zbE; iPMyndHu G:X_d,jZ@Kow/K ۦ{X ,.`VmQhD$h~A_7qXQ]QO g8bxl-8]4&T? `#͟_jw叉U&=-|pN*Zhג%PkHJ=@+g,ޜ`YBO:?}F=пPȡTb|ɯ F7A%^eN󯸯;QIw,M%+smu&<{FĬg!Z9$sòVy`~ocPyU+')z~D3RRWj`/E-HIjָUAxRB&LƏ3ܰVո`Pͅu$6exI]bf1H'aۙ(Zku/c'F+6lؚ2o8Yf2ݲBIe±?xGQB3էBtr{E`In:>5r4XYK(!]{{K2eh<Tz]')142})룶7k[Ex&3HO4LpJ}Akfu)u:S>1ϐ=`:bd\nI(7a٪^*k 6Uk&sa2$uVGN^ z8Im;urO" Uڵq;|.Sg؅<1t U7]Gx8t2iv cė +%I";_Y0PK|k{ay"¾By=يP,K`RmoQl#.R1kꥯNģOЪ"ٰ5!Kp=+h.:"gmP{%Oѫ0H wmg#4:#(xܢq'C6;EBɍ ,[!R ƹ,i(x@(Lrx3)$ GzhRȑ( ig5_2nXV;!=`t[L t|\Bp]4^ly&K.H$+0>%bciՀ*mpufA<Zq&Ύ)87ntwZZnpѼBNG!BL)ſjuCV'0D?JyF=di^w4_SyORkp. •MCwwnoefTF6ePS}yib8м5s?A03/1K $c v̀,ҐWc3΋/? £=*p7!z<^ [L3aCi YV亾6Aob+=l;+ПmY1r H X$=bɘS>_ RAT>~p3/_/ a##1Y6ӶaLBЙVOFL=4H>u\mB[IJ(& Qy=41BȞrD)SPTsA\ ѝlBDC7"!{NX /DV0̀א- X3/8ʀMj~,i!uCqj}+~u]MM[ WwIH}K@>՚+t}J TM4IH.Ë?oQOׄZŘAɂRB&2f`u5=435A\*PJ;6$zr+ ^m {E/q[ې lYqfs) ,~3' [c\/ CmF|%%03yxx9QM[;DN ,R{ATFp\/XTEԯ(H+H9> x(5~3 j2>6OkD#Sx:e-H /8э pxO*w_?P-JN< cIZrhn.|')="sQsj.5mSw4U=<"\'% F+[,"kp]ߺ0[VŎh͊- a2깬IM&țc6Fl];N01BJDvPdQ{zt˗OS(T+ӹRS3\+3b^:e8O{Uh}#*]ɱ"1ۃ^hl]͓ @“4*:jbk8s%|S#',nLӇoe$^x YQ1Ց ;,p9u81hּБ 8Ϭ$o%͕1ɭlY, |!3$} (BdUgדh#.TLc>̀4>\މd-1}vxP_G "(I̙{pI:*}'$d@/65"INɖ'؈|R'bE4:~ U`fhC|4Aw:XmN3X6 ď="!X)50q*O9]av:'Qm2ݢ GͱlE鳖%%W Z^qQ-(bzs{]*8aƉap9պ@ )OP6;1ߑ7A8s6TD3<?vi7~_ﶼ\ j@BVbJG 3K}~dְ^2 -Z4qlVL?|@B׍^w> E;ђ^W+SvK4Z(b=< ޘE]~lW~|NՊ?*Ֆj*x Q4~[dFr}n2 Qm{@佄KeTD|/r@NEx#`;/ W,Аrc2}S::Uc0DK`;ggP OԅpE?/ W-4a}xL{E:s|!MHՊӪp9?uP=EkT6( T9?uhP2[Pʹc0( 3'-_B\cm{lȕ~"6Z4dU7'#mt=3hɆ F)r=vl=[}1r{,il{U;a 0kʔVT%4]; `+7oڒw?/ 2+ihɝuuu=T'7=ȌqRJl[BdIdBMh}i])2-;HL)Щ1 ;pe7 /\&ooQ!}~wöܿTpϸPfe䏞>4 ܢ-Ywz*!S/﹏+Wk}%z 8gU!Z8V+] ް0j9F`H{rZyk̺?# 4!+ rU]0}I"<|([>q'tVl{^׾իYXZ+I6&-*_J1e:nXY_;?O'Г +$b xx/Kn-!Ri6ai;\0CYEbY̳.<QֶO $tQ>KJNN4;eBZNR5 <^g]4f@|=tp^w>o[P/6G0 q<3=SSc`WC(M>Z2@(=>& L t\B :8'ʼmY'X N%u2|ҰȒ/ s=!wa&EA=i7Y^/Rט,DC Dt ӟei8)),!Z0REi)vENXJ5/WKW|ʞNIe,MƘmq\hZ, W%[lC|9[րi;]|L+j7zrBQ[T*%rtW\}Dx:I{S-e1徹NP=)4uw5~*gZ9Hbv6в_}\Un`%v&X”pqE_K`Typ-hY84ok-Wdٻ}::fd.~'[gbmR0"u ( VFpкf. @r łRgɢ2! ץr< TS?X4 ̀L1RF}l;NN_a~)ShFPyy%%zf3bYZܮчVF[Tlң3F6{=V`Z&n8tRY;AF ˑI0=oURǪ?Q NrH͡C4GTSŧnx]fin68WtIk,' p[]}?`ClV_}*3psC5c܌Рs޻MX yO"T봇\G3_ª,ɳ6 +qSN;"B翂+gh٢L/fXYo+:l^xeyB+ĆK[(K8H!FT꺔[ԜnRݮ_NOtݫ. yMkEG(+H4[-_*Q Qci@c[F$_E},e{ :xT?h˲666!7`Hqp1Tksٳ_ݐNS GO' E((!6Q 9Cʴ;6RE$`f lTR]v˯$料V ]w.[ܳ'_>UfgTFE˹T&gt[QORyީ0ƎJ̉S3Û8mcz/8E@#Sq*"nɲ8"ڵ.|%i95>uǚfv?KGj օy[XJw߅;I4+#5dh nbR_LV)zT~͚rPl󽱋iMy\?ͳ2!:6ΉKL&#E4,[}Vap~ CFUagQIG.L)僋 փ9wсzr ;nL QUYHU¬2+In ]?۰'}G>b{pwk ?~W~ ׍|L8oFZ gA 琛D(q=TᎳsz- щ5gntJ%dNvٜ,.Z pU;<;[tA04q.PzCgGlc P_AڌRis̜JXdR}1͑GS`<\A4u `S)M Lwfb2=(9є z bJ, 9iԐi\5L: IhAxd=xZ>qd #R"8ijfČB]%!ɮ.*e2L"`􉠖"Ƶ/4UY4*1%d#9ƫx8iM~nG ;D..)yH \vZ,ՄAaMqaF݂ހKZ\TVj][-ˍYWG3k ߤ3J}DVg}:A& [%Ux# uFnijA_Rgѡr m;ʈNc])&u})Qs׾Ui2g=_]ZJՈR*ѲyaO* a*ZGy &QŦ̀H4)cf&':(!4q1^mM؄44]݄1ƙ Hh]"Y0pfN.n?a% MdZ +% Rދna0N$lX~crǴʴDezNٯ y#IMt^mËACp|\mS5kMq(@Q 98u6$&$A8~=`/#4 9@}ZkpP75nKb}fb^M*_7lUyջxsK {/qcxE7ULJ焘.7 a0#kiȂQz)ϔ.Y-PQဍ)Ye"\>@E%nJ-]>BAGح -kYWi!e:WKޫ/EM>Mtꫬ\ II8yڰR!_gzZr'jݙZ,t(;`$ k3s3swة=/ jz[w^9oFZ&mZCqO@dF*˻򥧍\LFح_j)f|I<tRA&S8N @9K-7&G7Q8aLv켣$9Ӓ3L9|L}DKMgQwRhT$':u n%:ެM?6E+^l8λr>S'ת$_Q˫aR"yx.%?!A[DS0`sIr_޿qfH~nWZ pO։=vu{O](AaΩRM/sOj16[d@vwfI?O /^g_DTղ6sHhF+9촑.<9ų 61CV⼚TRջ92@+).+>:Y#wB.4R>S] #tHC 9n 9XS먃i1Tr_C g x Ecư\PIʹ%1ƭȴV!zM@_5@dIzD-;;ȧY=z;~RFݬϾlmu߾GZ*OTYՋ4af<(E)HB#fҁv TtyzQKT p+%ڬF&5Fgvi=vdÀ]!`WMcXҁlqKX; NjZ_Thv1J0$Dh mܠcK5 A}{u88d\./22Sf UvP7rY_,,'{ZhIxl)OuH7Kfٛf Xʥ͹nVF8NbuI;$kTbN[!?Q2pߖ(g+nG遞1Z_1I+zNjvAA`5<Rͽ:rpfͰRmcjcέE H^絨_3؋~rԋ>0@,m/v(Qz>WDda=A[+ lu\OԂN禄#'c`w!)QFñe!7wE3 Njӂz :]p:)%q:MFTЧ/`4T$(!~˥rG[- j֦4_@ъH~~Ǯԕ QaFO& fHXJ\1e݁ԒGʉ_@`8{ ӸЖ? NR梇ǻ K-Ꮊz!c:q2 kM9/+x{> *&B+5}Nz]_**DxdoX>^/91`L2gƌߝ;HtZ_b6%F- 3UDQ&]xq߄#V6?|_ alAjI"+>)R?7,O` G}N_˶EG6s *`9 ohs(]0Dif&*T^z'dZMōF<ު `M($v:JxG4 QiXbh1d{O2&[6a4M￱![$grVh1| a "X %()@1AybID:= HWJζQ}31D-u nfpsPN;!ʶgb(2|iN-G;eV(i"f`ͼBWhOTvJ$6GocdSgť\60\]^-NW6ך32_ B+HV26_f-j^ҍ"^ֺE_z;;ͭ iova{oNĤBp%pk)oFv߰HlSQwJ(RixmَVaIAbpǥȺjYq:!d#_b_y?I$kH=/Ct)bY/G4ء?l&)]#۾Zb:E8N !}:܋s N"G>Ɖ̟Q:VVDu:ǩgiuAQ_5̢-8CV2[wZ0>)C]D9WHf^i[/d%Wr[۶zx5j3+DYѹI8袬:Qd+-stX/ae]LTԥWm 65|h4$]K 2$8]Ԕ q@TCc.:)rJ6ʆ6WAL%ՌK6F3qKNp-!dJRu6KRn%t`D,Obdʞ W(" v%1pB;%o͠CjWU)_o.sâV?#M pE*sA" 1p Ã!V8cG%d.:"Sp%H(z f4˲}z,jgϔoqCEkf&X]ѫ~i3-}\pWJ'K\gso5"<?Iőy&az`Y?$d¤68ILթv6R Jx(}>&mNXŮI9ct`.uRyԙ.ƃѰ-!Z== "Gi5"ȫ!]钭:MB~^otasO£tD;hWiq <4II\q9BD;^~Qwt'7"!*?LBER8`$uωnK6~z;ޟy]Z&JjiQf*fPrm(k۷:D(9 q@;rkpHY x/Z9TΡ@((W3Ob7G<.?pWؠH(䜱JGo=85+ZT1/]֦R</ԥ Ra+)j1^.͑GH!8l] svqMmp#LGD?`*0FLʙ֌<{P"F"V~ᡰ!jr9W"dE T#K%W3zT v7"#x=Re:14Փb-z;;lzm8Sr!LPU_ |2̻ځwi,E5mqV0FAÕ!}ݳDՠvǗ]y*h|? Y\X^D},,im2sPFVY;T|.B]O:~M0 |?fƙB-*YomPjTTy{W4:c@/BkP' sJpQծҽȌD@$oâɴ')G}^$ ``o9C35prU~"^@ (5bk'0a5݊{IF}oM?IE 3&Y5OCV'·mmF /)7XYX k(YM0‰.pE:iT,S?D3 :K( ?Ev=164믹"777k~47{W Jyg><9F( |lURU{Hm\uIaP B'X`t |RcA`bnű~3sSlv 'U/@#£J3E^ GT։^(c2[8۩?x錼ݡޜ!L9)23;AkW Kƹ=p,\9Cy/ kτMuxꠞPUs]j .S*x!G-pryO>NI.#XjX:O*%]AL#Ҫ= >/Y˞١ԑ '|ٻc|?@|͙<\R)`ġjǸVX4l1gR:̏ZgzPnWʟ?YZ<鎤+#+ z0J:!6^VG"-qIt0τ/0dE;uΡυ/SYF *[zT)ef KtI(+[eV"Q8)!8J2N'F{B;HG]XR-Hq\ 5]? o 52WQZAݨ!c^/f {In,Grφ0NʼnDMb7 yT[zMC!yY!idzܭxkaA+ [6My7x<~ʹv-=s~o$wZ&<$_u7TT.>mM`C .yQQW~v SL´+ ړt]λ@6+t F@tًs,heH~1%>P-;@"X $LKz?ְBDtvn܀u-@|T\n&Z>:06* ( 8`R:VP-qf[=duY?wYJM$I*ґFn}RH2|8d oy[~.Bi!(??f\v7 #|'ADİɌShߗf!hZ-}+j}&љ\_B㝝6 b`3 40 z])1w3,:$b_ZĢz [\f( <5H'1B$~4=xIH4(~{ۊ[v8Ϗ1:x'GyMnZ$VjiT2tJԍB"yTü-v|Np!azsExp4}#RbŠF,#gkꆄ׉`h'`ŏD0_e}W˺f%&?ϖnܲ װOfb's dTϖBEiU0_\ďgy'iuI1pAi1C.΄rH[.— IVl*^Pfu!f(VJp=},;a7G7bXcƂ=||L;Q^vWPT~<ai YN'1Ɇ[90)^Qx-ঐ$%b:Eзrč|]D;c7MmZbڟ"x8?\mwEBp ytg@j_d J} ˈBX50@LᱡQ|cIbYlr.~dʡМ6l/&c3U@"Q`V^~"ӭlQ N}[`/6j'%ͺEұocIVE>' "~yC@/3+{zW׹?No%"fP> ,xɱAXpixE\BƠ17hrG0WA)!ƍhzssx96!NSܹZ)Nr޵FT溺1@l׷Fj Gpt v1Krq L:5hCcHpy枨4%H!Mp]?mSz'w?5̲Nsf厱/))Ѱh# \L Cq߳uțQ`W?&:⺭6 ]e@.ݮ{E9M]$/֡_@-];+X^@joh MF𪚩,E_5%bJJG< ’$֑ϝ6ya:K1K8e QK|m<kرЗS t kSXy鹑ˊYȧz]s?[z>PZsq^|cqh4h/&6nzMϊҕlW+ZlL59S6`mϻ6@xqUgsۗi)H 3zkaKwtB3UKZ[PxPv#4k&N@ gz+tvL]Lw؊`6T\^Γ}t:&"( kK4bKPNKxJvz0GmǤZj(ʹdj;nM1(t~+[~煃r&f:$\}Y[E<^19̾c<v0\]UP̍>@-G-XS cK?. \,_YP؍?uR |nHAlQd:A\2iښ5QKWٜaDEz~FLM-p,K㧍@zEmA|V싪n>D*Nhtu>OM.ģzO|XM i!F(M"dF&1n̕;*U=ԇh<Qzq`Y^ep۷4Z_;%^gE7G(NF,uv1ulhqC28 4 "lA.*ש9b$ۯ-mtMoz)ޘA;u{_,qD˱rO`qe~oeҷ fv:+Kbה ,%CbVEYh ISRtCPTE/HfTOŋ!!u/rrZq#K\S鼓 R8mj? ;ec_Q*P r! h\ 5I{r0(-BDB^(ax)|x<_(Y XУ0R-jRIMH pqVDlB̸,~?Sda?(\ D <  &ꦛa_/ƕS-aHH^}0YNdD!k߯gDY?n'r.Z"]=R2:J O6Adn!#FȜyԴ_G]{Y)oYL˞<`룣ut6]?GK忏t*ȡTpF/򺔪!JrN;%(+L8yXrk`5CP~"FcB|"nza“sc%j:7-bjBξ~W\Cnho&CG(> jǩw:V]L~(%4hf7/(Iiiz.oc*-Xhi`۪IdL|eqlĂąp"M=n3qnwTi8I!ϰ[.Af>{S%B1aMC!<'KhZ+F@A7)B鴴z,a.y,uS{ڪCX79U%^ok yEރBR 2ٔ}#T\8d>#s=*Au ,Ds.c4P@+ m0pim1֘ZI{";J*J8dcʙ,^)l7\>5 sG̍rNf&CRwuB*AŮL$]sbd;>@K]1@7ۏ#E%5ۇ cD>Zz7{. } շYR7Q!y +F;Uk!5as=?_@K(VmX@BDS~Mo\c2{֯#5g cX1+-x7K'h7Myh / ݂frwE`8t=bOcUO\ɒJ}>$&qnE˚anD|s< {oh/L:n@xtVWF/u>Qn~Dz. !LTEṞ!u9fŰ]QI&S G_,vO?v F]Omt]Ve[Z $q=sd:}m#E$r x ekeT \Tڏ?=r}eTUQ p7r۫hD)*҇Ow,SRl?HmO$i[lݏT>;+.\L/˨Vl7j)R&gYY5;*v!u:%-.zsO@6;Fr[YRw@algfPӂg^.A1:GӭHpKEI>1/gld%穽<~]Ik~QS_3A#QdD`jԞgw.wm9Jm^cu8 j%ȧOյYNN 1j?t'Uu0v0p7 A[#0/1,HoG&ZURk}KF" ]2˹*\]YޟMOihuϒgyt9bוr$]x0~M`i( %g-FA-jp9k8$&M7>wTG,q0x0հF"y|͒,qա4u\){orŋd_˳ЙbFailb:Z3M|ߜb4Vj\ lEq*^Ҫ8F.fŽ-c0 ˌXY\)\A3Hi&H5|0XIac}O|}Z ;pؠg3=Zf{wyEגc&m?kš/m<2DV&?9뺘?ֵ~<]ʨjESXRyӱd@pRc +UCsk$/U*El O×C.$R0&-٤.kOp/Dm,l ֻ/lMPHiO캅Xty1hF(3KfWYf!ɂD##6 RaC\: 6AVvybqI R&\u^GC1DvOﯱlp{i y(ȢR$B^T2d}õZ*blј4*\sL/,Qq_ Wm]t@u 0ڙ4X!֛e]1廼Ι 0p#$<jDtL!:Nfx\ o J<{0.duPSYn ޼ xQj!0"wz~BnIbw;Y$s$6Y UqJaUa;Eza&&:n65~4K(qɡa><cE$A/}G" ;]m7FLIk胼%aadqՌdJcUdA2}]@()b )TOmw/QhDx$u/wȇaU[Y V3+0T׏ Ӟ.ھyGR7mlP#h0-oK)C=zd)=Q ZE%w\rE%vԡɄ.C5B^6ԭNv1e}=ۃIUPՁ;7hp$ aՆ|sVߟ(\w?*+WAT9t@  wCȺ2̝ƠDCG̵\7?h P!0k 'Թ_'p y@|#qEv<<@KvXԯsillj2E*.R5˩HrJ  6W+#멥k9ȸeHjE+ԓ yh[;-p5[5.g?9vNX$4%~*ea!SIlc?~%؛] L&u[-V;4{.A:_bMg7rAM/ۑ."IFS7Z{ys\ˠ|>UrM6\O[u2~:S۾3ݝq@AAjx6x{0d2CWIa6'' Gԩx%4bbrж o\ kjp&dmW88kFj/㽎ZMy#TmB>4O۳'1=dċC{\=1^-<#v8[;:áĜW%YF^r*%\ctq+2ABu!$KH=12y{-9wX)jP4&2.;Z"~!fIDuaRc0GIv.IT$]k8qmqmj*Iq_d.,hZ0awz^HuXZX=[k($eѝB;^ -bI~^n,ɌVR;.Յ"<ϣ;ѼfL]<@-^;}6O+}^S|ܑlAfk_r{S%$o9=Xwbhl9oYLz )YUM=]ƣ៯s&6h7MUc3Ks#Jn'#a4|1ԙH ",QmI喌}*#"$h${ZDɴ!DF&LCsZZߟprT?{y)3}:tn&C ,U5yYYz"E:FiO~-+81V:i2,daB_,J̿]ՋaPթM0^̰/6fC։a&Tidwⶭ>9P}{rˇa\=HޥLHY{'rM<:ʦ 1[P孄s)S70lP)VSʗJSlb#t,=\x0Äyb:;+rBG``}<]jˮ/*s.drǭ2o:FeO ion{@ELЇU!J#dT{Z-<6Pclpd?ٝsoP^GjoR_-4vAZт"H2y]5;g>$>f?Ji%~d~t=sT|)st^O)ߠlul~{#˹ fr 3p 6XGS\t(Z, U6# 5G*AAη>^o+*|]T=Qn==|,> A eدs&wir9Lu/sЉQDL% B hCTFÿ܆ U%U~'Pv̤k.$Mtk^sLIPc:![@9NlWp~)7.0(3U+$.t ݃.>!B~ha7XwM57oM[[A^CW?1m; ΜPv{87,Qɲ?@$Nx6sxXԌ)1lr6ƪ޺c^QJl'QY^^K_Md10vx[h/ vVUsWUK`)1Zn׮&sg;|ȝQG 0t[`En ͕[{˩ <\) 1|s Tj>Z{ пg wX\/t{k"/ztKX3ƋlPH-Zm"}<ݿv[zFYTL#fx=4k$ WF6WB] f9U.EP&zz-&~j9IHc?KT 8['HZ dl^!H~%hUxN"ߞL͞72j{Ecx[cXc`yMKfuvmGA׵aW6N&1,tpxeXo[r6U3\-ۧ;6h ִ'@mKsVgPkJPl,]Cu4֒ݳgQU,U u/D2!P^L Nr1 \v wպvԽGoAU*l XdPYRz?Jw^(HHPYw_gƷGkAzT;.? ]x)n3z5z1FGc\?KU*j1K1>@BER\ʢËǧë% .2mgrr󆟟]88UZ?oK錹4M*bf;(7ݛ:Ql^ò tfTha6((.yP8!T^)`5[w0~,ߟMz[nm?X64jr-fQkC/?2`sGvȏUeN6b+fcphGזTm{|o VgVʫm9䯪}ZeۮK (={@NmJ[JaPa ymy}aKswh0(&t7c6BEya_|noD@hL t _gmrY[U̽MLo!HWeR}Gw?b1xf h*} kLJV,]0(% ϫ?k(o<܇bԂ{UY?[}-c%^.Hmec]M,wd٭rYԆ?1B^06L$}dA$j\y2Iqȶq`ؠy ??{Sю+^R~1Om8+A8Npho*Rb~$WIYT.|̦mgSڂ[}=:zwy%ۅqg-}ƇsuS\&h2Wn7_p'6eu)ck?^}M LjSgg'ǃߪC^WCB JNd:A3_445t|5ڨ~L7M;sq<8Y޿OMP8XNZ~Ӕ N[/__ S~t|8|v+& r~\)vrv]G7k q0A'JES3:SfH(mɏX+u!z= V*zQM-BYO0%<:r/?cŽ]{(a(o]Μܓ>֏`TyK»/1mۼ;qp\tYAa(31/t?NGxT*2C]Ƌ.D@g/q!'^^ U,QsTJi4+t8<,Sb&*<gB7H`".7i0XӥQ 77yY8y’푑.()ĈΠ0e=, 2&޻"zPxYUT$:/n;(l!7z@ bh6 r1Z~5@LqV)M1T FV*V _ox7AoʣSjK~Üzʎ-Nһ{ãPKZLLx (com/sun/rowset/internal/XmlResolver.javaUT bnW[bnW[ux UQoF~WIWZ9KMb&A\/zofp3].'cXBe6 粔¡ (K2,hvye :aC, a\5faQW<0 BZHu@As SRLZgq4+|OӨ ,uq _Q%M)SEءR+ellsJJEQG2rX*J=0NM) $l0ut{6+pS5cr\mNf1 Q8!U5'9I؃BiZ(IQw=i ]`HVR7ż)@pk pqXO)p=9JF(܄mlx?n%5e^H%1) X!)ՓkO~w\h[ȴ` "xIXf<=nb&`\.GR/Jލ)VGl +8<9Ä 91:lDhpzo+ϡߍh?-6M/d~ տ؉5tMJ8ic5FWۗyL-ngGwrPTS9o ~,i^j;et}i $ =jJ2K??PKZL U0rب"com/sun/rowset/JdbcRowSetImpl.javaUT bnW[bnW[ux =ms6+pГREӻUFdd2$&e=w ɎG$X; h & 拔u.{]݃߉, g0dODH\ %\O9f7O/hxG,}E$^K?yB')y_ۏnjE|D~j, `uyuLY '>iX ?So'"=ء@a3~ #YIA[Qq|%,Hg Z$%p5iCk TG0حTDd Bq1ݸ4~!q !bm2B),M/KEX6§2@Mtq 7lЦ̂Av }k>+Ц-3HxO1DOr Ut( q#JTs7rj-RfE5I\`1 Oy 0[Fv`7 ̆R0#Vctqn4 7)[ǩ H!pB6qxbc=WyhVK9&*=7k`+т]>Mnxfqr }-T 2f>xy/wKVYX}6X(Ӗ[[ f83=xiOzaF9B˞d43t>{ued( !4k d15f, ;35piBaH~s C`([NNk?3l.qvv?A0*$87 ~oך+\N!Ok (|Sp  ! )TR-_Qoclx5~uq4W>xj40%D|Am󛦱E7'l2RCٰK1dGƨZS,4qHIN_grt~~|<8z?9`{ %u@wه8&p3&.f:RB V*&>X/MrB-w&/D>5=t.cz1=󘞉'gz#?nvYEUF?N&ߚ1O7ݖLM[ am__dj\ՃX,KР1X6@'=vT4TVT@>ƑqcikԇeIȞ a|V$g)KYU!kGlju56(Yɓe6b$ &TLA^ Y44Ls*(krFADLP̘HG.@BC嵐=f_ ZMApӶPhGXD-<'(AQ>Z0®(^J2ƍ.4w:9WInێz^B-χ(6 Nj3HqSjG`XA"ht!?\,8['|] -+̵W&O5N XYnNgŹn s:@C*&>J= 2OߍZT2؍ptUtSpYVOn8mQ:r cO6([D#<,IҊߔk~I)rW)G ZUr9UYN3gVe۫D..~ZKQ֐"@|LGKv`Ca?A{E-4AƣSG|;а0 d卭fMD$AOBtZ뻝e*wM9DNQCX;r7̍vU7K mNTu0m0U{/ ܮQyXYQEy$)y ymښ6~׭sXuv 8}3ԝ,fF3 ^;= ſրv,bJn(VyWrww;Xd^"Qu^bE13Q J`|CK[R|kmܡZOI@1y a>]MPcàuFݜ߲>rc1²l k%hb];kW" ]&TdMdNW[ޚ)Ēx@"T=]%F*,k.AQM51֘кrB:o,d 8.R eWS@Sт)8,ưG5#Rb|`E@Ur7 sN/xR='ʭ:}vDIS'L؜%!iH',٩dU{0pIKuGS䴒#|*9ݼ1ޝ2[DnX7*:/倶녁j;urX[eZ*)Pnrpe1%g+8J `w.Q赣SXgdڱR#MGq]`r<вTIGKӡµl=o}B E2#2vQBy%eI;e@z)\{x*Β_t6,wg]whz &PķL<}ڭ/Hhq:@Oi\zF~zהR6<2v4o7&-+wS6)/2nY%M]e OTI$lkTB\aMSFt4nmaTK_Mxg"mQqLYJ1)_K%`̋Ԁ2F a[ؾ"|7*^9a:IJo^`m<.(B.D1^KQs=b=7K -z@T+O"~V`A% N8B %gh^j/U@ZUϤP@hGJzwGtWl*)$\,Nf!_ oCq?&QŒ>3 qΨ`kkR~3[ƱYpץ~*+z~!:h. E\S53~.Dm^W}A8|`zzV$]\v z[tji;2?ߴEsQeRQє%n" 19?u;3Rsu7ȅYzڦDF" lfE_֪쎾$VZg l| Gg;0xp_np43 PA9iډP4(f`)ü.%Mхq<܀3X5T_~OT}tӷ-ၽ瓿wv( :hjĄ:0Y+5BoZ`FMPTauU(w݆oCji|=<9F7z U萧 U,VؠRcAJGF&]T%敋jWHo~(7xU ='i~uW?d s/GtP#@'x)㕈23 l8SǘT)^Q<s^&.GP`rRe8< *c:eFlpUȄ"7GA.Tc9uOn5@Z#}\֫~QD(՝zi#fUy4Su/*˪!i"~9o0(cA(oeDsvE> a>/`*wQȌ.:R",g<2,Y<8|y×t$ׯzGR]vsL A2z.uOTK'?\L-0D s[-M,%Š9O,P]T$jev "äa*ٝjѪjrw&iC!W9e][gW6MDήNNa(Q} -!۞onuޯ:3\0Pm# LC$_cqz3e,O9sr PoWUxRsK$Ϫ_=:1%-C̚f>{+X`śN!dGr\)Yy!7m]9Ƿql䟗 J\X_n" pA N~G`r9{j()yoFmB)+c:Qz;[ƍ]i)'C1+FP^FVtԢY?tm,T2yؤΌZ[-jbE{Bƺyt:ނavLnEӻBKxWOv!?@ouiwgh e#Z6| #`̥(Mt =qg0Y7><[2؊ XN)xg-# /97:wNAV/Ӑi<͌V ,~wt"c''~gǦ؀hҷ4&]R vMRf͖d53U:_x(cbF}ߏ.Ozt)f+v Iz24"RKwAQRy$kjX'ը 9Xo3Ӑ ^fq2$ViݷO.>$D*A*m78 } F~`„w*zf_ e󄹭D ILAFF^bw 92BZ9x=lvIsu{ԉpy2)u\3[\GZdiՠe|\t'r`u*?6 yo]p'KrJf-%9m(qvy@.::052|*vō1(-Q$ mB}=WubDcG*ٓMM#F>˃`y<a.F\Ćn 3E"WHFrE&asBGO$5U]ZvP`t&Vp4|OYAE{FK~w7/_(1][nJZ8; LyH["V( i] 8YؾN$,}Kx.Bfoi=2r&!\*Za{Sd^Kȕe@6o̽+\j݊yB xXfWЖ]o(fc%2zRPVwhLE<ʧ %mh2 攒TaZYH L.9<\D^I_F{Hlb #6ک5Ct5 T m[% 14>Ki/itk绺%ϑH# 9%[/n/r2:+̡EǰP}~IdьɄraPlL)\a zmmHEusflhHkCzڂ;(t5j Lx_[uctR/mӻxPX  J;ޟ+¸S<vFR)RdH b r4:̓tay0ҸX~"LfWKe|6 *I' G/]oJw:˘a>D,c^!UPu F$i H]K/Dm Oq~/:Ra#X ^O.{cpQrQ- 6Q/oXɔ S{00c`F:#j4cIzw<8qӯAxjlw$ M'"ztmMͧشh9` %AJ #kVs4Y-#5ecwħcO_!z-4d2O-7iirCh`[0lwMI׭0#M>bpFge=iJ˙Va98')[|&KY:Bqc ؽ^ Xbb!JVO Cۜ\3t%|}!ړr/ĉ\8 35Ww1 7[XWe/F^}^Fɔv(.#/(Xsl qJ# d);0NX:6tGR|'lvH7Q[Ʈ"V&bF+tyLsXe Bpqpx$eZ!DŎMRvͲV2 ͩ| +hяʇqz38tq-w8N-4 xOV+ n!|sbKtZ#MZҝ*&e/܃_`:3Z M9x9eTfUs"  pNK~?e2d=JN1Pyup^$C) R ȳb7 1tW+!m4I; Ǹu/80pN:Zfnр4{su?&җ=?>wl)ӷ9J1\e!1y8j۔blq)`Mb]?ˈy_f+Y&s@ ^>/64%/8$y$$#"q~{ \#8F<I/[Bv:=*RCZnHoHD'|.Oh8B}^DI~a:Jk5@Th-!$XlcDn-so WsA_ YoS("Dv1ŏ) Sn qfN)W3fX"lfVA@M:C cxn-Oo]xtyӻsj Nmubh܄||]M(=P -Դ=El]Mjm )P'fdvVqhu=4G `q, \OmY\qoSC&*5'׭ZMj)&U3F( j@_)Z?$J~).!\[26/QL{Ƀv V R[RX8};]ܹH hc|xqxy &>rn8ZͫvvfsՒGAvqnoXn1g}N S ^^|-/e,[wuPhѲoTyL_ْ֫1^u$uƗNQl؜(p 4hz+P)HD#ks?MB\h.Iwe]Y4^lLYnkoZ^A btSȌRs "P&$a$IMdbO*JAFAi9"v}}DvHcqUE7*x P%<h"˂ذͧbF_̏d0 WD+9$0ňS㪖0bϰ’ɕ<@po&:$ǀkp)+e6SӒI4'K)]-n{wB?԰O;ǾbB?!\3\w*%=;iRGM˔ !+PxQ$rX0و$mYSo/,;-@G(X%pM3oŜ2rA"YF U^pBE_q1KI:Ki`gh=㩴Z~M TD@9 6h͍#_Ed?(RHr#{ LTœxSx\τ F+x5ZB,PT4*cJkHbe`"ƎԖpqPVNQ(,S],\):DT+؊EM9 hYy[#{RI@,(G٘stո7ϚcWPR y]q6";p;z ZH)JZcՃP" SjrU?W$ֿ ?_l\Δ`ET+sUWM4؜f\ lHm ?lA푒+Ԏ#`zA8A^E zs?ʫ+UO-dydO1| Y-~~Mk4V(hj$4je.k[D`ၦN]|H>?=::>Zޏ'j8Oo&#i;KeX/̵)3gQ47Q2Eh.)s :Kk}.TxHіhTMMƢ^qj|̢fԏԜe-NmN06BDPT}9ȳ.z4%jxH7,xM-I: U/o {=j9&f2piP$AH *E}*wIȝ 4`Mw4u_+|s?ZȶL619Is V ?Kd[uG*` l ~Bi *m,mD #WmȭJ62Ѥi{[x*FD=֗ȷLz+0NV,nn3ODw+P"/er)oMeA]q]9ds4`[ڤ G3.!A? _jZ{=&cUGR&-狙սd~ m\s4[zL(H4>t޳ؾ{0%ߠpe( \w< P+`_oP-#.!m ,3 $vy,%-rjU =?K#NgbnH+` '#1Nzuك+{#a{>}}r ىX `="Jl7PzY][3Lq/ ZG1hJOnoL$,B!}. wy_/ |4g{q$PmRz}Q NC, YXeE!a_^ U{<iKha*B}%WՐg\F]%OlU^0rd7 F7g劦/:0 h&7w8B4Q([b#e7<3A+X'۳S}ꓗ+Lϟli k&Gi4Y!|eڭr?\Jg9_dh%k)E7wN7ʭQCEmx 9RU<cF3I0B6vy*&7\6U[K@4z%QDG~DErY+ 9#cslFt'i0Cwd- f]Gl7'hthK^` ^%8cWs A#tw`B8< /jffQ9 먂. 8i/ll"7W;@qa#'.N>^tw;3D1H)s;p:\s#5:ϲn]ٰ\tcd ni }͚˔3lg*23'ґPȵn)k@eX)r~Ɵ"uc|u2:XO$WVRh͑|0Y>wPRF3,X,lOCۦg3XFL1l1 -GX?rr+ %Fw-km L-@* "_D4akgcbҙ \Y r3s &H GCo($ha8cc#zOoE$-e&y8!9.hh}T*<^Ɵ٬t" *aB׫ZhFimc)!c]8āyae\NTuuE8.yK~E߅l wN[7Z.wԮڐbAo O`Tr. ⤥G^u'JXE @5-{Bc[esD8cz>2xJRR4\؉ 7A`[= ؔ}smIg֜? aE " şlyX70Gf%`_*YW|MpN"(SօOaj8b;PgTɦ"2aɈ<b`gm3xM\)/bDx5Erh>e͗C]2l?ڇ\X',jqʒL=6)5ʏJ3r5V^fEη]-}?bth;y 9ēZB S0!cb2pI@ 2ejBq`$\E8bbu(Fi旬|\# ,Øo=`v8 ѡ8g 5 ƺNa} X7%10MaTyMju;Ho cz1_K$ؙ?N*p,3$6D=&Gfnq# r.ҤTF@oЯ}\.@u+[L|ا(Rceg:BTjm0yJ-YE'R z)WJ=& eʫlVb越\./դW\C X? d[XJ,Q0AE  WD“wS>Z6-] 빳̲TiZ\o&&)՝S9{M3jd&IEJ̾ߛ49ץZ|yȶ͹!gW5udWȶ7z[tcKoV1WB{2 1FFa}/ey<~8>m~ݒLQbAA`8l#ܙ˦hepHTϑj jKG=du;;}e_[ݹE)3Wh8TB9b$ʦb8`a/FаCAeKZb`Gm6`4l.Vy_c Lg-ko46 V3bLLh&C<4ĐTC 6v&EGѱC4iBRo: _AƱHR9-PWM< IY`s`ҫ~R}ˉ60.˨-QfYeWiկh6\BYQēHb\(K/^NQәꌉ L$[^39_?'Ł}s#O]vXЈyNq'岉IǩGRn5r)KՕ1L $2Z/bEx_ɑ{&ѯ+)>PEpMerUsµ܊B]pat@GؐS&H+PQF-]]Sƙ߰ 2-6m.CAhEM`mZnklӛT^զxx;[LFN<-w\:fQ*tђT^զ:^mŪޜR K {=0冷YʮanC[)wQ=] |epܟ,hh_!&&l=؛ZYSni Ъb wca W@af ި!Ωp >ׄ>ҟAE|O~1`Q#"EH^ EXś9p *W7Z!E_11iyd C*ߦ9 XrZ3eJ(]Wb̉O٤AK+CtI\j=RSҕWo8P %?uX IK_;")49/~>*xsx%7WQKf Ɖ0wxjh _ -.r]#c9h ._dY/~f@3tf_c23Wbl_e, A<TnvkcJB Gs22U3Az% -qAVe@FG Ӵ7D 'G׷5g Oxu%^RqXN}`"$Jzxy8f7s+ og+O3}CFVzhzPnoXPa*5N^O@]-s(Gx5H'(Zww Wi)\+#/FƋZzW_9 ͓FX_|qIf ,5zKpG4OM˜v ;pQW\jZsΗ/^Ď.'-ٸA4#_6<xJȡT!M^4-^;*1uWDcC± ]{j5jzZc6;#MUd6&pZ6ӛiNb"u ЬjYD-{shcV>k^ݱ #G|AIH`]3p@\^}I}B2EW&8,iK*U;Z,Yͧ&eȜ[} E&ٲ}8X.K]덿1Vٗ֠!Laܐ p&S|:7T5;:3^8YCuNff݌2(^$UعK+@k@_%}&*pRt Sy\MVqkڐ^xq6:C5X=j&ւnTE馟]W$T Bކp L l4ox]RRP*/y빛;C"m\hؘZ̘T (?2v ^2ib=M3٨ ŧ"՞ZVdB9lҀ079fRJC~Âf=!D\dҡ}Z PSb@?޿.>pvuA#{MA^GWG n|q98}PaIO8 bK3Ju/£FWM\ͻ.D?1x.@?$6 Jc e VShI0$#PSƿ4ZeʽZ gCW,>A[:6Iӡ_<@5y"^2V5]WuR,=}oƸliKm:l E}uEo=B =wqT?t"YRzJL˂EoAb,˼d]doO^_֙ ,S )m(%EoGTmy:>»̌tE&WvQ5MImߊb %* 0Q^# x u?"/8]"u%A8MƑJD47G% %i-hx6`,Kt5yʫͱW-USYuV#=yYQMֹhhꝽ "q8!v5mj*DDti-+3 mĨ pt{1C}53*Hsϭ!؆s~:Rwe}F^S*$ j?Ď"&=ZA7ўy ]u` Lj&--כ6Z"fU7t >Oo #A[lK=ȄD˵)-B*UF649J~Ld4Vj,=#S>a-趸jh"*D ,ʣS̄Vtl#P넡dijI.8y}kűدrZY r[d37 i.cU0[`lerq ܥհ6xk&ʯXClRZ)r؊5͊k.AJ4,ksXt(L2K YE.p0%f&)χ2J?5F,+dZP'1Xc`ѝ~6_Djpj<^!O Eө'jAe~X rz?o)P6RԌ: qhGi=^d۴*]C kЙjr۬`:hrMU׭SȃzRZ1l PB>MB/OP"Jfߓ4 >G~q(o$?~&M{E1wY $,<"3\x14!8%4D8dW7\2pY13p'TԀx~\ SCÅ*ғ0|Q9tfW8CB y,64ZmWSU6eNEWݶ!]bKm]V0iP"}v lFFH+QGT|/ l.I>xI4hgxEUj"H; xd&3jY$Vb+Up*+%D'G?9LuRT&'-(SwِrBeDP:6kY|Bn X #L:*#,1 9I8 LypG f+]]L$QvMs4Y-#j+ y>d'U&'3j*f[(^Gxok]i4XBwq %kȳ2)J6HJDx7ݢc*3Un1R!-;Cb+U.D} Z[u(,PT;cbKS̐rMZ@uqH=B5{F2q*uZ8]uuDLO%S7v [][xm٨K@ 4aJVózLlK٭tŐjn!si`Kٛ68,:w:P"(;ìtw irGڝM[ۨ3z/r0#i\M5vK5RQ&fdXTݘ ;@af7{.O߇ '-d%cnLdd_n``Fc6Sv`u00QK rg4߇ײ4#eD/œA>Dg}Vn'F(ajcP`S2&XS} oKHcS'_Q}Bo0R q):A1 7OփYЈL Z!>byߞKFR 5{T{R< 7uŘ3]7J11+tb8:Oޢ.F jE^WE1Z 51Q>#S(+0޽la8).΍d X3 %4\y;G5UфʎVEۡjZQ% '!RuiK%wӀ*1SRΦ2mUQS'(rFܵ3ϳh%#XRFI·hunf=-Bl]uq?יt1S$ڨ\N@; T$2f)q<'b0+E۠@_dNX Dl-!$@sjsړz"bx;lѩ|i|*nUMK/h"TPyM ahw^ǎC-􍩖Ysv6⁙5 ;S8 g ?*F,aї#^j\Aūp ){p,H=ԶLjqʡ| BCoR Ԡ FXR`oE*EȣOnrNxYLuf& ^rtK]E~`vޣp|U*CsDcЌ&.V>h>xOTjvpvz.'1if:BqxԴFzXz!1nn(ЊPӸI'mqȤ Nb]MьW86yrG6=Ʊ%vW:,'BVg4)PI52KW"�syF"~@ί|}ܚ>wG":YWY;ΌN1f8hP\J\촚5sMEb:xiYwBnNڸh1B[J`N4g׀:Q~|ㆬϳHTΤ ai=,}/Y}ϿнNqu0`SavmTe< Ž2$hӘ̃ywPrTW:lנjjJ ?I`U`5585*/7ʂȀ-kh6gBjͮuj^V~N|)|!T"rHSXYR|gŌ^P(=2lAC`A#rkEQT e*s.*AʕdD1?|w۸߽\'2%G B\8;ywz1pĶX}^m2k vT CD*Qkߝ^yYee!| eyyiK/%7w>Y G&@ DC zy%ĭ7I+tKKh/6mN\tVkTӃ4ǡ^z%HV7tJ6ŷ?h/;䁹/?Z{(Kg/t -0}˒*I^m }/saQPkn(*o 1"p7X8*܂_>D~u"#G ku396'8_ ǧ5C{-uv?=o[-ocy+5~w>Y$Cmm@wW&#֌0CRPZJ~hlmwQrV0| u#EYjUE1駰j!W x,/{C7sp@/^:E*Ag U@%3o_}՛0/Z=fNi `xXns#`TeجѷhF6Fm&V&Wot3WiGl@tq9^Te5ξ3{{+~|>\ӕҦF󱡸'Bٗ8C0Q#kKm"%Xr-)+gT *DvmAҫR*)x;&S)0ą)YEV JԱc7b"X~ujnTHW6oI/$6-$8=!=۪R Y;/)pS5a`;fV`O遛2fT'VẈWa8z)-м RY!evHk#zK(P"+P#E;aN4ȼ-TW|[WSNt=ix@I%IQ&^@CUtpRY^ ncy&e2[)C6u89U&OJ^L l0nȢ *+dzխN&3UIU  \0UBWrXnnDSSZGί(QX :-x-aG"3-e 0KgHPQv!،,/ gu2 q3Zg2be3H{.f6ROnD.L;щ} aՂrzI~?ʲA< DaQX=SX) {v\VA: a`$,'_ Ψ&7 'AxͶ$dkM@κ(YF.0D:B#\l[pk͘pRZ43 lFe 048a5[eHy<{ঋ\n>,z`v|yPחg'@NܲMP(-3eum2.fj]K"X-b/07861e3fU(B $^^I@>⿬vɕ~Aސ~;| QiGXo\-}{07G9rLN؂|{TTR*ʵr5íЗGȏQo]Wrؒ(bY'hq$0brA llh2bġvBW1`;өC#JWt Yf" C6]f-'2TFai | fhiQ뚋^mZ/ $$4pr#\+/Mx$왦Ip[p<]A|=@V>I"b1oGKkiYdð@ne;uY>^;}V[ Vzd#ffv/ 0$dܪe7ik1eS^.X۟[FTq z,\>0-DZlb/,(6.S =FbxܠRǿ2grU ޗepHieY5IR")͝Arf' !h% 7Pň& *cDΊ&*Yq&VY ϗ0"i"#vK5P͞p؇Ul$kvt ֐4 ~A+K7EE+(/s3-j]9jPI6C6O9> ƨռ̀$h"`۴wR!;I`>%}g:^g8_M?7: N>\]oZ:DBU`gkp.+sܤ03P<Y,BFBa{aΚ-"rui`N~*,d T*2e7D ٯm.fQ1QrjNOj Zk:_ /s7JW7X-GOw2u#au֪'V$lk-Hh~̋H5c j >+Q\c"tj}ezfzzW(tS)O]'l&*IjO*ĮYSNy&}8Ϯ w_]42$|ڌqXGC瑇e0=gW!/4ZKZcm<Й-o= >ܪ%l2T>X/RA8 KCb +A2@g~lx!00?O[% slH7< ޶`|Ny`u$>}!q)n 6Jhe({ 0AjGXCmB?[twy,o8R $beڤn>vGOI\;9Qpylmޤl<ٗ/hBx 6\,$&|u7[jX/0W&9>\u2jmG.i}7u=#P&dFerr{Ta>?rgqIM;<;ecyO7|=Eܟ_~Y/E]oDq@ACnx syxͷ3ߟPKZL>},com/sun/rowset/JdbcRowSetResourceBundle.javaUT bnW[bnW[ux X[s;~Wt R`;qj]> qYOO[bFB#i $ fKԷΛkmx\8h&-8?=hggmHLm@8 l>R0m])Y0riDnF0M;&0eWGIݔ_bnz׏?]{ӛ1] N9pVݚ~CMuFr\Rb'W)77K z?|gaL"rXqcVpZM%= l5ܒOqj4EPr+A"haƉ$ˆZO8՞\KfmgeFDSR.6RsR`EeƔ@]e-; RBgDu-03\Ont?%]|N& |Ń*$(܆7OAڐt؋ Ȋ.;d<{l #E= 1!-4m(l $U(JÕ),؊#.js`RG` vmX,/Xr|mWIԆ3<ԓbsT|+6m gg8{{zq m,9CCrӒycf cӵ) Dڶ N_:R9X KDZ##DBVKSA#BBa֖>2!MsK^v%O쑼\F6WkU7bћ'5:o*@eG@ˌ!u¤Q84Ns`$m MaWTSіx~d9FŊ?Y2똻Ia&V"K l4_>zA,W=?`H܇RbWmccQp?s+*˛mE}-8UFFt*ָJ#\nԮ齺_S-*й- ppbXZaߋʦ귥uZ3[<~eFuybm2ZU*~ [~4+)e߁S`{FcNL痉jjFĶ ^6>0OcYjˋ Et)ѯ]@2,It~ |],V-~ $`}kgoŻUWPKZLzCcYP'"com/sun/rowset/JoinRowSetImpl.javaUT bnW[bnW[ux }{wF3k*Lٹ#DI99ٔ R|GA%<'MU~ї~>_y ;ѓG2?~2x(&"J2$MJh/M#z QBLFHa${}(:<^9h z;8zue˽/89OhODN !2Vq!veqN*EU|LYdQDչ*Q(?]"Ni2^'c"EY$ʳt9\L%Qx}:}^P\{Hqm",CV S*/Ҹ2*qU9e9{m,HE2$]m$%cxq@+ s 'y>d L.aOF?|{i)ahOpuB0d6O"Ϊ%NG{^zup1H^Ȼ{G?<~ =b!!3S1 {a'8]L̘k,DRA.(6rXpIt_DZH@ "JgYCbO8ͳ3 uwdey5.\JI A6 Sq>)~y1eOGoGO?~_=視}7γ*di)>._ƠGbr8]~ER ]^rzy\Ł"g6$Ph4*16ΖHB}|x>>^F"e)/ˋ*5Gtoxdgף$-[.; *xg.?R4K؀`\LHL 23Y]dG屨>/$c!k[< Bu)@Pf*z7s^$eLE5CUЧWHu d% ?Lj.@CH!sҌ=sdd 7,@:`:O8Yc2zLacd]$E!qpH:_n 8EA"I;$qP"C(%H 4*&P,Aɼ4=ROƃnyv&ҥ~wG, $ BixVY)0QA?l9wVxf0oQwI@> ԙ3LGn`+Mqj}E[!'0(/\ Af1(K$8hr.M4FCs~L$fOccgy"y;iL{"|$81n=~8=PNP!}oenHU }E #Hy1{|l ʨ6 J EͰ8rY*Rq/|ufO*Ț5tFsZu 5\.cLClXpg =>Wcx#0<l^xȨvWw'H-O @/ XVG,/oʩ K+ whF|Ų7,Z s$B5ǎ 2ܓ<8S]S>+rk9nHcVlϚ%/;/,E` j Xވ ՝*Br; P|s>* \&-2M(q䋒}\H3]z*=]a") 4\ssȬF~{uN.<XQN>/ {v>9δ7j٩VGf7;E(ԛ$wglt3;Uȷ-\vP=l`}\"5xc7@coBG{ Ah=_dGTrH7{ZErk&|ڢrG'Օ[ `h%-K{2| ݖ1]`q6uG8oSc,;ƨ0EHXOIjO,Et4>u(yB8~aHN}KԢ?Pt Az@l _X_rz$4P-MxN3\Ch?!C=t<fTrogTl";uw͠/ b3g==sr9r9Bx={=q;>$yΏoҸ۰A֞4#PɧRYpkQvFΪsxiMa_?3|?_}U~i)G]H̡5)D߁_V2ebS{ ~3V@: /,%qШS⋕y OQa;j_iWhcM5܇VVhGjOV5N\,9)92mv5`GZ-<|[c7z4ōJ '/Gnm#ucs]S͵c6<~!`#iznr䈂dQ'؁Hs NMh\:kF^'eeOҫL7Yw8y*tʌ5Z1w4XO_vЪB2ZMa­k$##AIu;j/ҧ2adC}hy}zJVNW6()>4g"*ut亐6x֊* r t@j/ ߟiH+ްHm۷/Eے.\0,f #cyl",+rO7t~eE,AKp)W X OZ+qٸq{#0Z,9%E"FmD$1)g ;;bpGΖ>4W41 ZDay30{ tB.07_8_$S];:>![">w(nCCr{AAVyJφ~\k8410l=- 0䙈6']qrKs_;U[VU؉ *v mU .s$ENHe&4%.EP.?G~]%~-+D~v`k<@[ӔOSouj_>狂 fB--Y(EK%fj:}W49ӜQ}ΤAy%q?J;inBߏ9rC\``9Wėvo&KD%[iLQB,9Y]%%T1KƺB&5l՝X{:r:\B&Cyj0F" 0z'ҩ1s e^!恆_>DYѤcI42PI٥by𰡜-~IE\9U]Ɲx; 4{LR(Xs.r~>1T![<=DkUeM~/3i<~BHe1^Xe#1g:+"E(Ȼ8N ZVJӶ'ؙsi[\Z96K Sϗ(*$ R4feqvd?ǩM<Ί~ȞLhm4|d*9NmVQqނ,ԡ˳f0,B3-=Aai*:,Z$y ECFh6눯IoT~%bS綛utO3 Vi]Dw=` k嫓;.{bZ.Mqn^'#,+!|"z[S:_-t}%dj W!\5Fy[.\&v} KuԻeK7y-Ь ZK帗T6I(K#S*Uj"f-p]N9/6~ kMra^} v\a #WRFj\xxHRڕM\u 7( vir?Qռ./\./ g7 0ʋ.Ha4z4I8'j@VJ!E|gyM+llV2*D__rThSGqG¥|, fO47gጪ@% p?i܅TxIX@QyQg0$7$ɜX c# Nav5}@Ghai=3'U [RRL)E0ܮ E\ t[2,M`Y۸ m#!04{wT)WLŊeShZvAbO U1W]di` "4ԉNT+8k*ӹA84J| `-E6*5v(Olޱ FT񋸊@Q&;H)HB3}D&%0`k9g੯pwE_?%W@ީBX뱿;8Jʗx+RH)O)) YCe(eR2[,jo.،uo4T/DCâ@)/÷ "*Crk6)hL qԋ?8DjUɖzV-G +=Pacu΂Q}rk€֤q&,@=n2WeK!j6 (>-Oʭ:(t {#^gSH>YZqͿ?"QmFh1fo|$Uxya1uY.& jsCK K*=-ɢC?mB S~j>!.RyA.S~rڎF_cJc+\i^jmxGYoWìƀ5XVx@B :̲+5@|{d`@(Jx{q{cCMi:̼}Jخ9`9hr̿c~_4nw[moiS5Ә-q@/(μGLy(y~gLoa)\w3cvJd[+Job3>^Xjէe;ܦa$+Dqbx(m>;,2Q*f] d:ְ? =1d(xqМ1xQ=CqӝJNϟ=^gݍuo%5t:?Gϳ7ڈu0ْuz?8ON%|rSBW_ }&_5V胲-kQC[fvN\ʜGsZBvY}r NGޢy{Kj~\c fj{x`ᔟ _$<Ǹ6]5:>i䳛5tRh6ak7GiQ%4*1XQErܺc/^-u9ǫpZŝ&~tfD\ϻLڭ$glA>4n܄>s(y ew:z }\)|Os?tcܼMzߤMV4&[}V?x DvaK¤vptC#= ޿vjC?&:F0TKpg7jv?܂gQvﶶE g8}rBU]'E.`Rp :);;7#T2yy}z(_v u5ΗEPt}yDEO;u@^*Jɜjo=qMQǼ>\au.`VpNI_[Y=,sbrMbO-SC˱DN(Geux,\'&+=ǾtRj{%He|t)ÁvY.֑Nç?Օ׆ωQ)ֻT!?E.,Q=o2v B0D,g4t7{$]J$e( Qg;`]boY(X87fdm qMcKw\8b ,~ʕ=ۭSwIZe80/)AWdُ8?ϑM97$3 rU<~RZI1 9W<]6-MaN_@ 4yOUd^÷/^%)A g .2-VtRD©.Yp%UoI\XW~|pm|:S>V`z-+¤VRhdPS]KԄ}i'ZԥS[`܎noYSӥ{ձb !ĝ WɘW/250i@mFޱjѽ]IOU|x?_#g4C0ݯ_Bƶ^ ru"sàܑ)BU|.LM ⷓcɣq-M׭SGO ꥡowVScϛaٳkOkO^*zToVG¯YZ;'UTh=r"wjz,s $PG?ےW==Jرj_bkD5uv՜W-qag5; NyL4/o=W uk8EڍrqeIp l%Ias{^h]F\G7mByoG~ 2q ;Oz؀Y./r%??ӳZq5O[CR*~@7 *_pGT{,`U_?ĊBr!XF؞.ubûHBs"kRJuur@incd]GL"ڭbAy&ӄy\ݽ@2ص7~mxC5vyFulC7/ @3[i/|Qq GBTK2Z.bzt7N/[z%ʼn2Azv z.X;!"ݺ`HKdɒ>R2"SCmвGrwN8GâtدԯG7Iq\}LThEFɕ:.0rYB;wȺv ueպ' fk!څ .Ti%U3X ҙɇ0 w\R;R3iO|e.EJf#:VׯD6Qt_P ?_8k(;1 }xBļ,|lBqժ;#ezuJw#sCw Y_E$ʲ97U4]ǂx:v=ma(4`u.=(*4ű#eH@hU <1oY@ohtn*HwOU:T!tcuvkMIj @_!حQe%zvxttdܒV T# Z"JNQNY(4+ * E!JRQ*{m鵥U[HJ?7LW^y$s99}' s;cA{nk-P] {e2] 1˧ЬS|:vޗ&P䂗 GU.N0|wV)%߽xM J(r21q%&Ш%>xlQ8P9@`Fߞ>|M' SܓH(U fJ"80}+y8 3vSS/t?KTGzwLuv섊g^=(})O>w 7"E,]IUOsU86gu?)""F ¨s 2Ù%D0Od璼[d 6D'{G?);uybǥB|t<`=H6ơ 5xY;FNXN뗲 8\[8kg5Sa>umt ba]H괤֪w]1ǹVK>ҦP]ڲ#-,Xcp 3[ȇ5Vlv!WJHufےlHQ<{mOlmIG4"fL/wKmy#VGkU$zlJڒDOt|IڒD[[FLenɴ|%ӯ>XRݒZԖ$I4=%J>ȸwVbM]<Ô},Iӄ>&3m?XKm6O,ޫvc7ld2~d<-.MozAlIЭL &~='E3eZ;zʗ^1SIŷ퓱}w~pN+=PD]ɠI%k;?8l xͶeɛU$6]sW54‰YWoYZ8] qkk[YߣlչڳvOh7TjUэJ] ʫm]EU:|U L0U`@8ݱ}q0?4xb*1IQAr4gBj;/r~I (2) \ ofyZkTgSL|}jFq/a`tP#ܷԃaYRQƵ`-SBdYGњBnXc.,TT7Y){|XK-&x2ڸkU4ʤg=,OEc~LeC,du>ZUv( `Ҡ$:R܃`PUyoA.VccرKUYGLeXBDl.& YCs!>y g|G<]$iϗVE|0\cRU.!F^*BF\H)cV nd||.oKa=ka^ȮB,Sqv@@Qb,tq1Fs80s#4JBUĦ^sF`]4GH0%s$xRhѬlQA1,Ç zcIY:VuFBʹn%MsdrĹt;dk,W`'7|ӰdYZ+y7DoB'e+XTt!P\nىudF?è8-S-)nmn[3`˷>+S"1deߺmɏZj;kQ^[gE XtV8<-V+'7nءH a|$\6,)mG)xՓnѥO9Z nYэF-=XE5y;nWg2Σ)Hif deEֳ˾}* ڰmXl "%hpHvwoοzZ-_&UI1LӐ@q_4ܺ-ϚS1 a)ʛZ74f~*X2ЁB0#/TzZ높9vuM-$.?՛SF[M'z}ʳOa~7yWW(ɥLAh:nQ&%^Ktos`MIV_>m=USȕ.ުrZA+/yMd\]zzr٦铔7rJKQk2<5zZ01_y$gI_垬wH 8i!s%^a~o1̡q>x Gs ` ;wƮa}EQs~WV֚`vG/yj%ۑ;Ɏ>}Df,>ރ"Gfo uי1/UiЃzXխ٬Wx&2O4MRWqA?$긣a&EhQu8 5Ar%#j7iCA9;>$qu@ tȰ4ZKvy\u db§iM*05[ɘ>M+ӯJzet.2RfU,Pՙ~ چx {je3ڬIzXilBSϞ{@Rߥ Xy4WuÅ#ݮG{t6 qWK׮\;}G;]\\ǭiլboGޖG4aOnKW9`|oM˅1ż!t](.忌 &Ky4CCvptUN= {KUPٺs]cV?~55ӫ7/N@F Jy}c3g:D4;"#Qpt?2NwnݺodB^nS(/rO}࿉!"F隑m;0vtX1E§0_M@.HwСކHA_KSυH;mzX 8=}hu'wG0lX{%dL]]:)ِ^j%e3=U bQ;E¼(vȢ>iǃƐ H?GX{WcPu,tN~'MLiSшĜ-!)9*ܗ-؇u4;oPCT;+){(Cu2ݡn+ 3Ϩhsn,ozH̹`P=d n8kOF U#\fcѸ;5G"o$(>kl<M՟5b_X?IYex,?4Z:4=U|\S! Q9CJ@;1'X'A`0WeFR񲴅Q]\cH[]B]ft8=0M^kcj]:}_nO J^!^ȡ. w̰M~{=,^d]O frQǕoǑxɫokѠnE2yJ1n >=CksHƌZavtYF45 Kn ճD;APw;[ynF#6*w# }F^ ?+@)~֖=9)!@jgUN\q~㚔s8uG;醩n(&?VK-tiZco iEZ{[m\5 tomp=wwA.Ņ(TjeUk6s KEGgӞYw4Ga﵂~xnA,P+ާ-&ahU_gL˒P/JqHyݏ;oɐH +@g8=Jl\U8EcP|X 3qf p"jb O2r)TWIŒ':٥@%Kݡ4u$]lrWihwwG:z-/e-`溥l#aQR[&d/26v=Sg۵\~ZQ? aA?`im{ lBy:eqB|s|C KDzBP3Noz"Buz|m-{/*ۆJn=np2E[, "یth{v@GjHˇ6ZwJ7葶Gi{ ,Һe= ۃV@5Ken6Yvqvq@mW,u%jmIL Wd\PZo&=m/uer%ی/~{w 969Aq(+~sS>pC~Mʳ.&K+5>&NqW"CS#"*.Ypa?xws>ġ_o-](`}-[5L/gdicvSr9 %u$(z[jmj9-R4;|IzxCh9w-f>vk_b^X{yH)|,hI/UW $9{"9;Lp>9ƙ3/ȋC|P2"I^@]8s6ouG׵޼<:RK轄K" Ӡ 0"CIfRqO3-',&S$Sf;;uf!݇1[BV]_#pXEV=}û+u{B;iUhR̠־^{o_vc{HpWZ ,x[eGz졳pJ=!2[  `Vn0_`cf=fD@+Ev+Ѳ.{\qX/pحDR2{!26fn~[`=tCg{عn%z}@i-u+Aʮ'J0[n%|\cgɗK5}U9_uU=ty.P^ީQ*ۼVxU= )ucAj-3ukAfGk(.FD_XSoxZ=h/b>BD>"m킫UɺfW5^kd` ǸaF7}黍]5u_x%vAQsC^ۼYc}V\e1GR*.f˪HEޝSwYT]JbU-Q-:Ֆo[tDM]N-ڻEcu/V*-mTT ->G) Ton1Z1u;@ڈ4tQ k2SN(u6.i%ôhKJ[Lyi%1K F-r;#(b b@qcj/) Zi%DӤ.g!,fpUY|Én05LtR1Ψ{d\.}ڀ:HʅVŴ,xW_WZ\"PT^8bFw6(u4zInȻ.쓒5וrh d+RN {)E: ZVSIJbO|ACGOX"1op+Y< Ӽqm[pӏbzq&!RBKO|]̍l"qHrRYPá'ˤ+o VEDc.hTb}ܨ84Rs${` Uz/6Ekz{xͶ"Yo\ڂD*xg PD,#z,r)k(Qr8[J (H~dcgB)UOsPCC-Z* *c`A#97 ZBJZO]F=Mc|:Varp.T_\*;kDx.Y `~G g~{MȇT嚍4z*G!l N OvC-HG`#[j 0ucx<٘Uj+t=5.")Gi2RբdStHBI5y^ ckis{fSvW DjUivd $pAZ*Vik 8˹'`N8 7Pzo\8Z ^PDYBρX)MEq2KKyVVb͜.I[T!ϋ|^` sXZ7";q*!X>uO.;I9ą(ZRAӻ5nO%Z)`S@ k95|۰Oi/hDɸ :/9JCWK]xFO9IX#G@ k)  ol_nI3EVz& ɏ~~MJd.9kӸ8~1!$@eL}msTIX#`tEw (ht?-LI>EpJJ= _YSv&q8zF?xT D>=O^7T:B~}WAGX 2܎nu浨~6Q}[Sm2н"- /壣ztT'J9精'jχѾ>vZ A &gEj<(θ#Ԫ6bv:=kZ,m*-$Mm2xO>#D* M̢JQ3Z=j␱>]uO0k^Ѐ贆ޟf$s2I00R"YwHHG#܍H<k@VI|,\X{[=G%BmYov \mPtwZMin0 .Ws=u9UKBߒuMΗ}׍k+ ׻z4G[R[ps6_~}] 73QTh_zZչ;z P}TT&c˻(Vv} _fP&>Z,4Hb)bM:-MΆB#qt={4#j7Ӥ6ʔjCYhQzXTl0 k\Xwb ӽjJnGIāU-\ M*2TހF)@OMe 8VuAxlA~j daՊeˠÕq!]6|m$tnM!Y߂J!(:|u O}bIG|X`qdDžK~iԡv<:xj'+I&\=|Y\,k6D6 cʦꅘͫ ҫ:U}a/O654QǥZMȑX yjC di{}]jtvO2RUR^QjKGU@6JGrUl0ޛA3o"<FtXv)2h뱹ޡCC*{ׇCYZ/keAz3C;UHʦhՌEJȶ޹Y}) 3KQZhe^LOYN{e(Ri0&aӑ(֊82:bH&dRJ ]*>Izr]1 ,< II)߽xvJu/(Rrpܜ #lHW~bp:x@L:, 1uA#( ~n&p4 v(@&Ƌ,6$E"I@s/ibNYz㸘)aK$SwJWbKU:'X'.h,%D' xuɹw8YLZYhf^*9h\LĨ3&GV~JO_QݴQ6Qe a>&t,z'lH%͒1bf u42$ t#Z5-eP J*ːpX0ut4g"FƠFqrrAwz[HryUCA>#nʅ*ѽ)V{aluNI3f3J0RÛ׈<34zϸə2CA4 liכ%"!>Նf`z&z͚$ĩD\Ĭ%!e05IDj>1(G?~h7 1c?ia. U% kk){ EqL uO;zV5s =}FS' s#5K ($?~OCgًL$Z;TPʠ )RSb6N!뷵*hHaTV-doœnU׌7хu tlf`O1DbF@qWmH35Z~<>Cg^ov`'NƺCm?MTE駹ܵ5L])K☲UW-Bb$E7ъ +r4> `hz \;@-j8)ť 9\*;ՕA9ܖc|,([(\/4?Ir{\7Kf~ziCuNΪV*aNS#2IJSnl -DnE`m"xLj1Rd3`f4B^W8; 9ܧՈ`HX%1rTaҡZr4 1+}0uZ޳yD;I quZԡfS|{= dݝ @JrOv|f.Jj.RmojqO;:󱳵A'].r$JdӅ xTURY&~OmI{ܵ=Rbb,>z}V;NU2y^]kb!|rSG1'4,@dѦL$bK @8?o$BRlSgli r N LY; KES?o8+^(T&yRc!• }=O7M_ݺM{T$__O,ך⻹/Pg180;RKi+ю0/}ټn߆=iL{nG< x5ْ AQGf)Y^sK|"]ij, Hii—Z슝P0(yjnobkKT*ލ5YESE' ~lJPe-]BHM!N@ %$^F眬LJ~";nEkd }LnjZ֛%+wJ{$yPΰld==Q*4qh?GSUN xQ&> U_0'@o~ݎ;ELb1mڼWI3{ﬖ7~ZTИ^Lzw_O@}O4URr] _0tEhٸl_B[#DG(l@&RH;YƊô\=_Xz]`vuӾ{);φnV"qw%aAwΡ"DdPzAKf L5k!~+cF$>]9Ke;V΃֣&ʻ]xG` 2qv=dcwT#`ng+=B_O4$1Vm{Cߌ9HH(IPWcXvĘ￧e/69I(g$GZ 㕲fGG*|VϾۑToi@}7(um߫ӷџ̌ m!;$>7dwp37=6PM` a>I#9װ&ñEP%CP})i/)ԗ)#4Epgo,P?"# 3*"hiWD1]ΰvzz[]~>~h7S1 &l e/)"M7G1kP^63p{ }kCQ39,BV'PgеUk)N+,<  hx$<9/MjV>29-UT}MXFܗӌ&pX_a5??նvi5Kej@/DO2U朗*`>I'ܛ8Gy0'p D o^>pX4(7"N@1DJSdzDyYnzGIΞBu})fJjzCl{ 5&N.M̀+g^*d!n,09yR4rw(s">Z."Yq99=ʢ>E~klKo0mxvc -K+mt݁\T: "/ Z+8?x}L4kVWPF5 93֖4;Dwf;IiGv|׈ 7aB1ZI.8XY+pJm"vWv嬦#Z̈́Bm8Ϲd'ïj<5R,1^f)~GZj[~3\sk/3 =9OÕIl/"PK"4ɓ-)"~Zi#)md&^4J7'OԻ(~ϛaAdZ1nER򴪗*Ia}p95[NM4eV?h/rI0ʷRb[R.6I؁O@9!1C5 o f $29KrGrY(=l=;uf{jejzi8W Q)8ٓb q1֨8d" *5mɳs<6(M0ַF!x)!}e9t¹I7DQz%-AXb%)0,UgP rge 4d[ħK5q1< -晹dMJ~v a2+VFQF ۢ:OKnIF!~}iP7jc{M^ipA$dcfe%Bԟl"k:70Zp'P=-sspUti?J%=`?S,d-U =U~lE{ y@0>:Ȣk ,vt|ldxlϻ{H.I?$%e{í_a=N}gii+dcM)A>&yriDW<鸽=ԵL=.~Feaǣ20lf5=]ؽa!lGv'|-е=s >j[XTLq*VLU117g:|ZpGeۛ 5|W8*ZD88 6ަ-1r}H06b9%'>0f2d暏hRyy*?:edD,2OUS"g&.#>M"IȇP;X֜vE~<"nڗ"gڟ͊6DY T=|֝g726 )2SD.w"} eT+XZ~*S+E¡H8;evDY%qNG`@ !l,-kSXX(z =dW{)V[ .m{}uq4!)>!ZՁI1oLnw/ZöWE8ÜnJMğ6I [`e {U۸qU"`KAV![9Qx]ھT683"df8!'Q鈩(!fX|Z$gzy1\c%jZ["Oh%7┨U|7~T++1 Xao6`[W T]H|? |yh:i=ͺ>w} /WXS뱵izjC*IIDPC2?p+CoSG%o$[~USXCMlQZ$`j'Oو@Uk@ An]u59zo n䯺>N"EAV9# )[s0Z*||;I'O+Ӏ<)lX5,^kZX} +=ŠipTiUH0ne[Kپ=a.o&a^ dPp>Z߇T~1a7.SJ}M~̦Vub6.Xh3r0gىh7|9oML%=dqtTLl$F뛩|V !,^9"6k)Ԙp1{ t5v@9^~i,=3e&jcmnj4 2aM*gBIe߭H,{,KFjĐ}*Nvm1OXtK&׃Xs꿼Mt- `<}/uwu 1g^F3㍏uwo i ^@:v.|•4o۷>>B3(VpAqN_^)`J ;BZ<:ݪvsO%#Ef/rR&m3y0Pk9+3~/NOjґV HR&owʹo!!$#[$n~ ݾ# bƠu=^O n"q9]ϔqN Ж35}.]ܞ_-PY_䣄㣼dqe0ߘ/4@OL/[nOsC03o~|7 HJ Λƴ`s>>=T,T|bu{oY/w˷qߗir|E1\F9L]g֓/ sqGP%|B^gjxU &zEHY$B\BSW-]y'm>SPpK~6f'H6a k'rO)vW\-E-xxHŶCk8#Y|z 4L=vM7x/`\|g1+費wbR` .J0Fpr^0Eo %6e&dDhdF%]64g:EH;:eQeg󲟧SД w)^ޤc| mw'A׼wHĹG=NMm.~Lv3LQqh)g{#xF{kS㎘`BjcV?'98L*D(Pj/ǢšLe#z-}lw$y ?{$v 4C(C6\0.ijYqZWs=y:7ŅyjngPhbBr3 TOv:͏)w-o5Vpyz,L+0?8^Wj/$(<=ӄl]!KKKM\z]NDJPC 5"(ª"r4mbs/Qn {S~>.G69V/_W@(;}N&o6mK5P+{YQ}A]Fx˒8;l9*F8g"Be)jQGâ2=ilPwuٔ^r=a @լK>#^\69An=spl҆;w[̅J\"ۗ +vЮ9fs= S !b l !x [)m8'f([]̛KS?n =Cɻ`WLFK hB!됥[ݫ̀U>RU# Et(w!h&KXFǰ. BR/A@Ps*m+8'V6b GW)9 ɉM? (@cyZ F$dOY(Fj|DOzX@<10WԖ&Rk~8_Dl]$;XiY Od?bwF6 Eݡ]Jeʯ-ND፤{ʼ.-{'0 \;OLX6[_>&B:6'3$v֡X٘K&SgNzqxE"t91~>v˜j7D$"]aʁTI}Pr3>s_vN! b󝵢LsEA?R UZV2,ڭaA+:08)Ǡzo(ɺ鬖 {+C^|h_#\: }/P'%gj~`7¾Woxzᜉ҇vQtْ+.!0q/V. WBX'Waښ /|iJR'wqaCPv;G5)nO;#>)l101~n `x|&Ojy%muI:u98dqcQ2*w<π% ~p/yr WJH0{&HV"橄€ݦ$G[2QGZr&-bXYW16$‚HPybWwbb:&%X0$Ywپi8MW)N(`{|4ɣtW-z \9>-sfר.NOMP$Z#")տ)O>:0ڿ<iwLޏvpj(,vXAw}Th>'(eƈcxVK+8עa-;mGVd,[ҡ# wkԄ2mhFm:qR!)zMJ]6AtZ\Ė3(rɹyX2/(4<;pXx|^_(rm[]ĩ :ծ"x&дz]ppžw1Jmp:^'}Y0v4ECj4 ]0Lwedl!lj@؃oI)6L1'-4wmJwaQYclrYddƚP1q_Z)W!}K7ίVT{+ ?G1dl6 W)"_m 52EeM6XN&-Rt;~% 4D>C=[q/ o-X>jٺ)Dh K`>BBݏ'ߎe*Ч@T{%$rrJ>`Y\h i se[$ː8b 0u&ᔠ}9T'm4I ZG dXifdk8÷²60@qHL^:Ҝ's?IJѡGUp#:sM5ղ3*x~[~(HhjEoIeEAWV2?yk~دbɈn­xTzCSm8X{=k!4oC[/g͂q@& 0/M$ ֭ ]'\'$U884ga}-B,nhdla y#\"g6=6Lc8|ҿgey0~DnC0QN Qn4D#}IaӨ*!->Wgu]ں CbJlm[c4aFq{ BGtN>k(:5ZČȣ_!KTɺ]x΄8ϠQRe3 ɮ޼'3CݍW[`BEnc_|MH?̵ٸV)k˓(ͧwUVI O١΀*!J=QTϘTE0TO]Bڤ*&PvSo–bFw(PNtbj?3/$XkTp5 K gdP4k;7plx@XK J 3H _VgUÇQ| w!wf"1  Fmx%Bǹ/Y֗*<5Ig}Tpt&s)dLX( qf7pL  轥pGw~mm xqFo|Du+:<-b¼_L{2^ pr r7y}EVaܮpJgTNZS5cbKIWE&y0h,edO@9Z p[<]4L ~:ՎTD:g'|),ћcˌ쐣/1#:('>w o!X-/v2%:~?.0 ¹k,v_pJՈѬwZ^]imJ_q+n (JCfn Xr-/+h*F]ͤ%R ⥣$ܿDh v9eEUM,-amgv!ax>rWj+xMRQx8'~'7.d"\F1&\mA/ɽTDVUcU(+X}^=Jh=6+*4>/*%7B*~`u.Aɭ=@N쒁M91B2t^4,^= Z#uNVی %j.n쨬|qZDA=# L 2do|Y9,%e@UN i1SQ:paBs Y>rseo࿹DŠz?pS0FF~ Pa}΍J$Zwģ]*@w$İT'0OnD,[or>;CCs=|̣;<+q eNNg1aJ`Bcw^ݳ*ʀ)q9?;{8R,d&IQ.Jtk-|r54, ^( J|iaE>Dv>X,9+6N!A^묩\S_UL1mϮ'_ |ۛ-}aS4#9Vڟ=gWǹb,˕>q>k(1^ReFOOLoJuIx mڱV>D["ňN̿0KZ/j0TGh)$5DG6yJTitPdi$yq7tzpyW,X)D#\ϺzkOzH+u7jR0)>+qVJZbYWb*Tpcm?QSUj4 :n{ ga!'U CVnY?qC_ǫViLOm_we&EN> SˊQOA0vz@#.W XPC@#ˍs!eةfH[z/!'t{.jhcmeR9hFzx :J+AWAIDzf*hi'` ͋G |zٴ5GX`xi7ĉwc\Ք϶jPNae]/=f)}#/md, mW:2 mkw=`mU/z"a[e 4_i,e.}gIB7+L omxO!_34'j]aP-l*4v[HH*>܃TKՓKVF$yu5ṪInXo<[Z_%Z{[um;6 D9H׆osϩ]eA Q+OMk^%D[# RaE?eJʦL|w`?w$u+L8/ubqKl"~"2|X >_S9%-*2Ҙݜ % v;FrhN`V uk,*mEn@"cd!pZauX nqE?y;.ۧLU35>|'9 ;k_.ㅭl&#GHX`ΦYy2A}MH/ %~GHi9ahE&e)tl$EO*?IiQ] ˉ?[Յo$Qnml0h9̌]֝G撙{ >fZp.ɟyOV@%!J#dǩo buQ!@o5_xђ>Xq-4y;]j_֨c%9>]KNG/6#4"qeu619Z/G9qB)3Jtm~o"$ SH~6[-ީΰgvPUA8 1!ji{BY$l':@Y]i!.i"u6KfTR%w.l1-$p BUEtX*(1%+!@T10Ljqs,jd6 .̶8;= ַJ҂pR]uUYxV< 7y&\3=}|n7&b#"k:[VH~o<ۧ dThWc&ҾsLp@U4z^dzy]O&蠑U{SpSQC8XW%9??iJHY( cE"ŅY~<.2c _|vt|[*p093Ĩ¨#`6x-&aj5Ƭb- !J%uq|b/V{y=ۅvZD:U~0 N!O!a8Dm܏=O`@ Ӊ1 E*dKf+ZHacxSYW#)&#$&Qs4^v?"w>Kũ$"#|'xk#GS[Z#{-OFӁ(;(_e7>aj8zpQ.q7sc[3QG%)l_!O3ܦDL8HAOdK4͡ugMWhGW]|_fF!eKO1;Ƿ(Ñ[ P|>WߋP~LA%s?_(5v.fMb":קmMԴ olkd}Ra$ٻ#RO!մT7 ={vTyf[g[]_cs'M~k k' =JîY~Djf8s o:V[ r't.>f IT..Jtq]>G^{࣌;K.ˏ[~xwd?,Z,պ28-N""ZV`Lmg2SXvNG} L$pNYLzrɔ+Z⁣ae[M!kWh40eu&qukbJA>6ھtud|R4է/@O1!{ͣܪ D#D=yㄴԂm6ϨY)=,DTCl7"ohP޴&Xԍ$3VϷGtS ]>f=WL roɮm]E³[H9b/lpX(\ox$l hg9eЊ~OTsX6cy`W-^ yT}񤽡4Zhw_\*`g1()9FaՁ'F-IfuAٞarpD(h`Ǚ*: LѡR7_gr4f^s:?tU.8Ddy_3u\Tl/XN4po\趾CI2g6O_ߐKE:v5055_ƻخ]z" | L.rBp*xT 6nYE߼ӎ/ŤoBmxA2> _!lvpm<#ŀ/5Z\0i`u-XR9].j`?XpUayߜ/SqKo(KcFwnx>%'8CP!TFJr6+H&P"r%VJh*Sx!˫hsæ⬅^{*R4b` P:D?YA sC~1e[_HpeưE0n[quu:o]3Go/+ػ mᕙud)jTXPkH;ey}umM4SQ4>!7fW]e:ceUbLKaC*W+Niӵ"08 "iCzob`L~9ktGV&玼mA}hZ`ÓYˉ`>oS7 5Y+lBul)p]rܕ?2m%S9KRJѿͺq8 /}ZNfg'e)'=)*/%r_Fӣy SMbq,ve%D}{ϘOǰ70"Ut,l,nvJ%s'9/%"Ώ]+w*d Mag<2f+syMcֹd9 {6hh\|vTtd`̞W.=9,z !>T^y cr贖F^.9P[/N]/2&nɸ9%Z!nzan1jr3,F36\[LJNy@"L f4]OB ƦI0I:լ_g˧ c.[ ŷ[Xf[ s.!+8$ibmVR,5uye{@o_zÍ64}ȿ,,HLԛC:`+SA6Qr0wlq%Qm-" gSI6>-;j"'Qhݜ׳w+'rR&K# B@ 5m wT6_,%%CAJ$bJԊ hHaxc($08hnDAP17."bihJb;EQ{/&p+ƽ&glԅPɗ撟dpKGf)ar R1: !Jًo.[ C}AW5łh0j!+B>i}61W, _, ;YGoR씺p(og, ,EDi m4*G&&5߱$e.l Mᦰς}(w*U>;b/Avhd5H젙M_sB"FJ ɉ&_<2*w΅U*dt5YAym J<[KI+=컓VH4=+`FWY@AT}.`^HMGif,ԒyfU]CP-GH6'(b8+16JA<󦟾>gl,0%$J@mq J":KD=[ܰ6{Y7b+^dwP aD5_Cnj;]LACЫ-}~ZR7wź{#G>j]Tk킫\ees8o7]>S<Ҙxh#ðh.2j(2z2q?崟' bYz]+c,>vT a9huԽG1:SE?gP]1rw {H^nKB#@k; kٮVm0B|K pDDyZۋZ+V>N)U;Rz͹ثWEM`Y+Y{"E>` ?Nƫ)5>m2 I.F[HމVdѵYO*,J^%^!8g)1n7("b*1Aa+2&wա\+ݵg*SUjqVUx"b{D]6=}ctZQt`@;S W")+ھvB$~}a[o%ZP'S g!F8?_A|*O،ۧ.9ߕi|YS#Ȃe6kugcGv!D67!Z7"f-Fwɽu5yV!RQdYJ `Khlx8 v&@sR+ޓ/ǶiE~W?!GY=Klp-v\i-:{ {H`,e*K̏G̼7aT:m+z0d)VMEʸIdcU7rck_˹t>$ \35efC]?`w~]qS?ԩSG}ˈR%xz"+Tnhl; u>lty90 ֎4:m9Hl"U1wDxEH%S(b7 0$-R|ZkcEwJo*v%nߔ|-Ż}I ܺ' ^|(* v?+6~ zI39{ (츼*;h]k/q)IU몊; nh_{/ۈѴt9-82J)sKjL Ӷ7tfks1ds(iu9@Fo$tSZfB40nU aj=y1\1_N-"{' ,GlyA$ "wNĻ9#N`&85vt(4{TBϐ\2%{P^T 5JnƐB>NSbe'6.5~O!vX!_Ϊt#6 (nJװN^wpWn ] ;qcq*nǓd*iE4h/b}fmOO~>1*8-e^.y$?9$7sOQXAb#Mu`͕iquPsp_WL.s(#Bn63پ?^soa#+)a 5 :S:ou ZLZmKw*Z%Y ^m' d:lfwwܳ嬪҃O+_!eLճBM%GЯTwJ|8Lr%&CuG%y{ 7ZLGqQ0ޟ<_t/`7Wi-PT 6zjch\  ]f-^u fetDToF\xb]%)Ysz_|13m (iQ uOf?NXe|,MTłHM Q=3fxa{oViztjne_,.5  _m+>vv|ixxyz/d,^QQ -!wD0/dSӠ/'9(0c 5Z[m#ntWmtdV%_Vb-c#udi$'ĮA0mzV΅ WjG(==J'щӰ B<Ѵ421@%8q(6Ɋ&ndɑ3xA♪pZGq ^, Ԟ7X,S^ďRW`5^ub^X?Gn x_dxT.Gu7INEb i%x #V3i={1 9b_JlJyyLr$G3Y::1[`1'uG3 ?['MNXԇDq9={_6uW B=ƪ&(WQpūfX8n!vVJn򈦗"x"k~Gu/'@F~ƌr,Vi;b{5珿IY0@V狯f(Mtڮ-1ԓ6NǺ1*|,ReF LY̑y8zX CAϳsVj:-;ڋG8d;eig\$e80ﶋ/_`e_Sgc+18u:46@b P̈5Zz9P}ę۸|f^ ILbC kOtnh^ZbX~[`2D<1rהz7A| h(YGgj {&NZ+WK^Ҡ3e088W hYvOXqamMI1MVm*qD& |MnDX^X¡@ b0zxRw_Ӂ7vBϝ7uEhxGR=mfx3 >BsbV!3j|}{NKd a<].8ltVp!^^,-b$upz,)nZȺ\$N'vQflWcJ|XYa-*8xDD{lHZ1.k'͊{xRkS$ͰaUM3>+2bnlV/Z?!l#E}EqMHy>t_~qfP7B:e6:ܮv4v;T%}cGs_>JG,C(L!z~-T?ŝ"~yY1#Y;c@dwLsg-A9*Z/՛oǎ4!rZ&Ɓ'1 !7Żh:F*ʹ"j"ۓ\[7$ms. nF84$.2 T1)>2? RW 2r)_Y譞emcFꝙZz:]|(E bpЦSy"`ڮ `஼(?,kQĽ=nO&?TwšDs'մ2po2tn; EuNmįŷ2,λ4Uȑ# Ĭ۞e6;>az$_>:Ĥ >~,!o@DW;,qTڍ,L=mGShm4s!BjHz`Wef<<  E }|{(rVXe:H;\S\A`9^o «]/™R#BxtYM!qTA%Pd"rFzJԪ*pwtXN`Y }c`r&R@5KjN `mHKtI:M]D&?fۡ/뫋6@?Al=]3,/`F%ꑅ!Q&aw-жF3.k[<8Pn}A(uڲ"yއ/Y7Qr۷<<(aHYlqN-ݺ޺]f3Z/1pz+,w|9dj'f[g2*-.SasrU\=NGWn\r{P|=/31T@'vyGY5܊`~w3sEIqyo0ŢEpyl{{ue`U3lLsࢍҢF'9)Ti,3+ gXQx(^BO7sc q| fe?Ġ&x& QwhӠ6b%{VMBDw1JdpQ ֛:)"#5x81U}p&~c>n.k(*DbĜd8%9ŠЛw^O33?ZmV%$ѱ]7ڣS3D&- !-,Q68-"~Hbfu $=ma|iT'=942bw͏LTNgY`T1#ή#F2|{ *|jgVIDfNF_o=L) 5%{Ҕ6@"H+:S&Vrqݝ?#Ipqz)UWh˭ J#ј˵&TA 8 C _L :Y|@|:&ff:|@0W5w({?PQ<'waIPVlPgwgLq.dV#JYm8Oy"s#D|_OY`:&JJnzVPmL~P/rt4 zj+Lt䄵5Y"C<6dVgQc3+Sj5 }iQeZThXC~S1 1>s86DI3Sm \KOͧMb%Kn)z~3c%2ct;j\L(@e/§6}ퟂK&^qK[ֹlP9˪712|s8BSWuUA@o#RM/utg4>谸@;9;?Ozkw ZFۗmrӥyuO"6!ǻfOM'EXw]?R>o$tdF+%e$s|Bj%ߚY^}[E)nRU2*ķ7F$nJ:lS$ƥH c7XӜ¿ӤE-b_1" 5 ?ӪS$G bL Y17UVGC?`BƷ~gifj-2o2b)kF^#rZm (Ȏk2n)|<;Q=q0e[-FtXL`.@tL&.Y0l RE٥g'ÎPC?”OgYEEߗ}4.fcdQS׍F`Fy%Zj9#\TFeYj2`oI*Lsm ~? f 6YWrW^Ƽ} Cb>KGnt-B3m= W/[k;Uo[gYsOK&Y|/BJFz&8-D)W`U|822n#H ǖ+` SӞR⯅2;Wdéqmo +%]ˈ#>v]ɐ|mԞf75)W<@5`e09.an7r JVwlɯ=6y(+}:鐱m0k8qƜ_ʥH@a5p7_CDTd!ELzvuB` Y26oH|Gyqkxϕ@QN76RaCs7B6|ׂ쳽~<kؗG*7fH0ьXu/FmXزqYm#?aĒy7ti5' u?c~FAW5=c89ufC>0P MF%H*4pc.xϢԂ?B_|.xWU/Cb"XV(/|OE!oZu8ݔHpڸ[iqkc< `>uJF. J*,ձ,~#-o5~Kߩ2&8MW_bfXw{D`x!fʐk  ^}*V}+EV4t4Xsh8uqAӅ5REn/^y{-eުuzIcNP|$ lݫ]ݟ!#}yF 2|OpP9DU!ǓqMp{8Q&E[Sܟ͊JqLS~5sMvxUHUC"FMj M>jTW I;ăt\a\rOOFTի_TZ7D*8`ƜF|kve`p[̫K2pyIR)W0_.IÌ%'qX9_f%Q%Մ=7g mH}3TuS^,5\2YecG ~$* |C简L w11XDE[T6OV sPʴ[_%Qj8viԺB` >fO^<.FJa8qosۉl%RzL6/Lv\r^中 ۶Mc xx[,ia"n4W$Ul' }>x}?B5ٟzXßW:R5aEJqE{Pj('5`ku7 d"&*& WbŁε)uI-kՓt89Zl<˙xl(})* ?PwHxo;g2l40%EJ3NJ_K$:19aǀG/UC9-Plhͨtkw;uqKȒ+R+@j >2GswI,$f]aC<߻']`jIh.Yh Gi'#͌Yg0i6T ۱bJu _`׉*4 >i}ѳsA0`?! _h 0ۘ2nۣX-:8ٌ5mb`x5C}'Y H 7p) bKF{erG,Ru>XlG"!h&mSML,%B檍D}]b]$7\ U`&");A H6|Ovf($8 NKYc9rp 7 ԏ<:N {s*orG݉FD uz(wQQ$wo1Y&]8 zL Ѡ~wXAa,apef–uY򦳴ցoVWaXo8SP#W/ь" X[S 7@@?g_Ù/G^7@vDݷa5H)/w< B0JiIVVvrHHVJPn#kɜlݙ3kbRc`]h0_Ha7nFJ&RLz8EptQDfVD?Vv18&z`ɡ &Cܙ% <00UԭP]ʐ:Wb1KlaN JО;Q6@J+ Lp6 œ"w)_Jfp>O *ڪ:8%`N_%Qfh'.b,-jBi/ Î2p91׌,s0ZQS="_G§r50g}uғxؓ? Ź%If>OP~quRFw^->{N(Ͷ_ ?:CpMLJ+52y^θN~?bh3?SXu|ͨanN4K{XySA9$2EOu 7K;^EJьщ6rJ=RdM@w6C}iCvK"IDk.Tq`#j oq30+N񊿰RҢ1@!*rGc|Hp}FO~tOыж>[ѯI[VP9ž>1sIU*Kǥ=9>'p99MrMMbv T~ sx TP%6]+74S_D>Omr3"viFʠFp$ bs5nmɂWNڵF#j'^{\L5]:xEӛU\++v1E,K4  Z,kKሃgiΪE?df{U'0o'|0#JtfP!'tG].e]E%a065]gaJE9a º; rG8(* l:uc?'AEF FERZC2Qee>uɠњTKoUugG4S)3мBmL$=m@WrRJ|Lc2q/`>= .% Ԋ|+psmyqOCJaF|'w~klv䡚zfP& ` yKLrSy8).S4IqJx['i'A)oKǘͥs/8WKۍOB-!c4H6 y6<5rY_<WmAsK8},?:R?:I)3܂iFߺlfZiΔ"|ݺՂ>m)E؜ڎ#S*5K![ԙӸ0FG {ʕ{N,cFnpq$3L艭pV1Xã/h!7Xd7|{%ߞ)SY32UFH"tm hg)ey(BRU ?v+r:hbݒ$F >cLHc’VZw+Yk(Y/.UP`1N ENx-YK(?* }#?h&d 4k9@w/* K[B}+*B,!{{=Fqd2*Tmq"p@'2k| {ץyS6̺.q/ )Ti++ k&&WOV/0F욕sKV٢@'fS[U8-vA RwfsF5VΰK3*5+X߼Ꝥ5Hrpż"!  GoQqnW*_}}֟4gEu-ާxoStU. kB6 my\IQWVHBV&S $,o1]ޭЊRWF-#uh5tC-еmt}P'[_u9(b6p|h n)8'zl&I#'1 KJq>2a-zĄ qr2evUY(x7^->RϷHM`Ç煗5?7wV IK14%,]r)bF4.6 XkpG.!vbVFɠRˣ#b: POɭs>uV6y7!7 tKr2K ͻķS`+ L.x(Wo&J&Js5$A%֍A29%NXo1]%qCP2pE"bhȃU_ު2|s El1۴;}7kZ]}4;ږxnkWh2:󈰐/ |"7NL,MTӃ#{$X>ó4C I?ΚȈ@wr ?_Ax jD9}fc4Nf`'oVT cF,L6 Py Z*zkU,R?g9 {0b3p.Gk?6 Cp]f;f)4}O o5*]$Q[ޚ$4CWnLya k QFȠ5 "èyQ׶RW<{0Z ![(C !1[Tm޻YT0lK]U",2c'.s 4ޖ_gL~b"bof%(, 8W+#tbJj?-Ͼ`;SDf^-&WMOH+$(εg#'̣C`M '-D|O2d= ?|m[֬ը!FX7 s,,?~%1lV,uOlƿOek}AHMF +&to::%Ǝ!1XY;0 =}aEDp  rPSySY" <^<Ox&\<,pm}"FmLӡ[HOIIRZ)w@(m Mz͞kwk2΂pxBw4|5>77JGUzskXނ1DfxmX$У-մ[oݧ8krX85ad`ra;V :V)e,$|U Scsv/ܻ`DKH#/{Dnj !q٩f/)f˦mE۷H5"!K{p[h#(>z56E2x0v9gU&)^:B O,BTh46i5M+wPۨK@579m/gϾ*>pp=˰e`i4CA`:}^Jyʓ'逌l\` /J>c6KLhR-s(hPv#:(lEVKD?=zP~"u"<[kx(7#H4l,ur6y2|fo\#Z߂E T` )򃖵u`Q hc CΧUJdunT9Q9&a&gdwؖ[T-Y$1zԳoE~kN Py)IW9C߾,y%~ºĊV}gvC~/"6\2u^.Pok`zyRZrTC [-6LB @SAۋ4! ,PK nS[DhQ8lJ[7 ڜf%B}7h C Ja㴍1YG mpP{[) wNvd죴K6l؋.boױKjVj(]vo'-6&䖆~V09>SdYVw͉*Zva563Cckf.¨`Ƞ:{ꊔ^fΰ_ͩoP[o/;b '~'Q|4QDC\]o`hs y$6V˟5S-S,aՠkt\>_gp-?7@rΧB`?<QDBttf-O,ǰJKS1@*:ֈ/j{$8F$kڐnNqJMpu @([+ A2m+& wJ5*A3]%vN=FŸ6۰pNMB7P2hT\73.0-(7 $sI9-ZLͣ\CFSHܭp1$.̃ KYz-PCaܘS&svjNG.yC67kj[6o[)B3:V,*A4oZѧ~@Z6pGl9YXBkv H0(#՗B+]`5bVA0y2#D(19!:X9@"2D+"Cy+ME?/]/w)Bn}&Ccx)zL[npvN 1ʡ+^SށoOgG} IXu'[W=1r&[7TİP S1_\qyȪr6Wh*pjЯcbMJx0#Z <L^GyQۍlUr.0`pA >5'sK tFǍ8Upͽʿ^Fv+Z)>gliߤR,q?.iwo%ضD尤)#*~ E>ֶ=é]r,d],vm, m@>ܝ8neL6Y3}opA^It6`%5JT(YV-&I)֟JzC· }0-y^J"0b?4W9' .qN# "ˬ[E=4ыǣZu@ +z.8 ;{Ij}˒*-Vt݆sOr#&oy!~ 2vCcOɺ5)l RH9)(J.eR݉fKm5;u3֥y~gH+m5bfn-ݸSHN}TX+[KxpQYz(-x")PvBjm CehmMNy,}W ި"紧ei1XxX4|xmVuk^g)˅k9}uݟ3C2`)tk*yr ߋVsp*-EAi/#[`aqXl(z{Bc& (ްӎFWljYcga$xw5ѷPfNwK\n'*#'cr6!ްZ7ae   T}U ky)g-߼5μbDX?-*Q\8'hRی넻oYgE7-(XD0kK@ƅ$ei`qFΔ|bDPNZ&ܣ pあysz ]8U+wv;+$F*Р.2@=ul-E3qL[aF8> cwUG"T851(G^G5\v }Ոټj29I\_nεsMˏˡ b͊j&sF{%')<Ժ8PoM.L璍S"MÂk-LdFppuiއق7X{ߓئ@0FZ6Um/ Z`Oj3 aU0B璱C^<I^faU9At x6t 0wUkzKd Y8&CDpg,[/bh"@#-w..Lj fg9l꨷̈́dI"=)/i8#PM1<87R8u]%^i !]_ ni ^O3evuƒ 8o̅O[,Bm< XwGswwdof!%=a58\'VpĝHFIEO@t= 4ach pM% 4ALG?aIsI}du8||3$dNEdCODXbc2oB-,[:nx3V507{nz]&20I!/7YQ9HjQWvf v{zL tq|sAfB!c$ bBd!cJ1a6J~1PlP2Qu9~Ҟnp&EYq]f'2D/isu!vʗ]X,}6L8gl-K(,lo]8%l,Fu`h,|հdXn 38 b c3l|j͉ /5yy@s52^I;(+YTsݵG"έy hƭ fq(@?gZ5gkzietwcxݛb14/m6d9*.i xUMk@N;&w JZkhDp㘻y?$aSl?H[wggUV%u5@ƏXQ'xdPnTNh/أ]VHd4o(ZrQq曄^2&腱E)Gx?My1`p݊_ nRYr*HY7"~(j 2ùIUQc&(섩z2_/=۞z! I|{{m^IifU ՝3΄A|ېBCYg^yA{2+u"Za(h\VEd?ٕ% =A} =W5m'^AضCvUȾpZƑ,7`Wrj]{O#gg]dk}ץ♻D3~TFcBZD[xK0R%tI zY5[:# .2L{+FGc$`_BѶ#0+}z|Ւkfu^(l ]!%ߚs\E9 l]Z6sʔxTMSH fUێvl}潛u ȲYzԇ 4IhV;pK$;^܅+9t"4ƭgVue/Z_AӘMy7CKƬC/Vlg$Ƿ[…Uoxcv=qT8e0yq(SEkH#QW]Ϩb3"?PˢPN/iwfENyW|Qmtm{ QXA }f!q H+6vjӿ$#m-}7t HĎ0I0yæķb pǸ VRS&.ÏXaHLMߘOgtao)'mbރRw1Q.+f)` ̣CL ƒV160D1u-%%@$F h_Γ2n9S}XT$(qEAeVv=H,޷O'V6sIǛC`4ll)GD[odb2=rǗ,F-9Wd8ۅ.31LD{X۫su:E@8<҅n17'o՗mARpqB-;A~d@_i2#㺒aV^U '`?~H GЖ ZMSZ$Duq/RsA+r&c>S_4kz5 x>Q^Q[Գ"{7“d ͎$vm)sQq4uL8EЦ:~՗#nӶ^wM?4c݄- k[,_9`d'۪`g) JmȫwzWC@*rFap5 enҗQisjw;`3MP 874ioղ {tF`c{Y(&K8eo [prPnd.^-]Ƴ㳒hV$A\ W[I~39V9ڹ&yZaD-}Ìlh4s=%eZ e[Wե/{YCVTp]s'ъ|= `FC^o5+S1Ep'#2كc9b0_3E 7p  \ Mj~ S{n5I7&O yhZi,mn1uc"7Žlkg/Z*. FyŸ GZ'z" cA$P>Kb){^(>eEKcZ@şLї "ҪQلkmGRb\3`:R}E#4 *!u:I¤y oE|޽!Vg5./'X hi%N[!!ϘH(w9" -ڿUAbcK۞ F/.b/_%15dwV [e:JT:uzw3]8q6Ͱy!qlJƏH;*#I_Sؽ}aAp$ShnfЩLn[Jގ cأt6д2{nO+SoVOn n&^LN y n'MTC3<ݚl/:q\Fg=O(`y?uR<|SHBen(zt)mǟeǓ{54vq}#a A Aˆ6 Z4nULJWe}^%)sTQ42jfܿ";{o[V{vUxxB2u$t Qk%j mklȻqu:|?kUrXJAYr-U!-M8 3pO {[ÁTp׼zN[}UbgD|5ߙuĵtJa,bˈ? 갛E7{K {8OE |YsfR+> &G|x§F ԋ@U͂T5Ƴϸ|r|JRn8&-sZ xNţ׊J_uʩ^)4y@kzWto'e.njiPrn`}1$oNku2" +5C. Ts9zwd̡fnsT7EkS̝>.TfNX )!V;/ YzE? %!$\Ym=6L+sae<(85~{QTd|}8GCY.U ZLHܟ}Kȴ cK c¡XڞdG: PLwGg&tԧ޵OV\YeuiPMwV`!lh(xu@ܯq mJlD` dx31eLBK:[RcFECŰ-,E1r6nXJ ˜P;cz^=` U|n?wxSfż[/luo..Qf}H3࠽Ze=K,j,\VNGt7 @\,v9͔wwa,Է㝥]J"5b{"woiy| R(u"b?91NfF|¨9k=;Xw æѣm,д٭Pkƶ%JPBY]!(,z3xOTSD dnt2? H@=Ї&zWm֟,-s3[ P,+9I 4G8G" ((JfHRz+8Nw5J}}UܺDU-կ,d\uFGJO#80)|{I81l.ν;mƽdi7PJ0֋' o2'P#tTX*2]#V^2 aa6LwG#̍TwO:,֊,Z;9M=Ulj.JSݏqX9Q,Z(.f2' Y!0b9{؁wezCBm6|O7!g gj 6&:uOI"p2"VWNq*HKZ b`SuLА+PKǟC H6Ս 4~:G>ASѐۦNLZ9j%{;%Ri/`?Ƨ>\J%=DrmQxC#H>9L $3,8\؈xCʛrKԊ!x %X@:~5{iӷxl},sx\>VN#IRR2/ Mdˁ?3N)eGe`.\'#j!"yeQ0<Gv"ML1H9=}u<%y*.P< %8tqx{3mӏ$@U;H;գԾ5sK,WHI4\x"-9L{ٯ+35n`UY*)>'`uxZUh|DsZ|:ׂƪh%뗕']ۼKI~VEX m C_.4G;"rO99.wi9FeY" |#  t˩(/c__0t5+{yo`\LazczԆ-`">mBsͳw4^(\ź)_g퍛vڕТsN{I4ѓL~QL)kVp\jY;;ivE XyFFdu, v`T.ԷNU2 vsMy=C_-~MmF8ژٲʰ?vK i|7 ZKUnGn{vHRڇATDE .h.ٮ7NYU6#{àq&p9[i@$l Ol'ZX- 7_.̊ɧޡw.3" 寷%O) Y-m/hwz1Sd("qb3O4 a,Vqu@E$4Kʂs(dո֐&r\^?o)']" #D]`tZ&DW3X`ڍAoQDM(vTYw~3ڢTVȏlYt $~>[P qs}*ᖡk,,p qc P-tPfï˨CU;,dn<[ 9VVS}MgȐA=#30 )HĈ'^(}"4n4 cY&NLJ()4 v=516A ( Xϫl9Djhx /&+0 E~Z$_&[Yć]LڀR:7A7{OG@\3;\'.˅!:G :VHd# s<Ҝ2_PAٿm|H0kK)PCx#צ@Zbc:`șp\SլNhٓ$`z B~\@w(L5ۛSRfMQzbZ[h" ΁ws+~Yc FԞ{Ik &l΍U6ܲ ez4|d%-$zP]'D!^-:XP!ϖ3<W6ڡ"?I16'D33Ẻ٠&'(}] 6L^lV,8$Ԋkt$Tc}~yre$N[3?0Y2,zqyȽFhX,\0#gm>%!*c /@JLYVl ?${,dD,,{ l:wBwJhKhXL~o "}}P|dǪ^Sc4x6XJyd7m1jgw SY@=7wӠ2nZ{,#1ujZ |S~TxRj[!{PE_Zwnï\H!PSJ"pmpGר;:~"> >Wd H5i]DMvG 8%'r.f5P5IC_ hfa7`f܏ް'Xɏ`Jۇ |b.vIZض=ғ+ʃ!*pC^I.D&P)tSu Hfe=hA8^ 4_t7+b%2fV5WFwggިɣa/Z ̸w"YuZAqž*>n6 Db 3<:By2&Į73;~6ÌRّQdagpѲܮ}sޮbdn M@)!jg&2ޟh>kOād> Y4sSh(!$\󭾵Y4ŢxVI3]p3*Ƚ-n~|n٥Vhu9?˫})q񐽂٭~: Hm{*jS+2(B JE%BKH9i3ߟe)-6W \/(*U(^3sb$ z,< Ouy맓gbitoeGp"PN](sY,ENK uv4:$y`*6yR2Tz@y"yTOGH$DQeјV wE⶝;b5h@A5MSK2Pi_J͐m*?"@nG? qֻ~]Pe 5 ޷++pjYT]˸/^yZ$nhWv#pfriJ\ NIϙ-[2$ea\Mr^n#tbBz!q?\d W$X*[ȿeY Z>IRi%]7aA1_p#[Q#+ϊM>*+A{n=l`bMtЗdc "lZQXTmsVG,"|ңRe0ūaJ^u}ʀDD!uiKg?x # kݩM͇4;#-'$QE^_o֎ڴz 't#禒6Km<( KJjqcvc]bQDe,VDtUo9XgShlD(0GBen,=sN&ʬ^2Pgl,ռ:&%f3?y]m$?*"4.m]1n5'NI%ҧesjGv ']izEB^mHP הFeHVPLZT sGOŝ~g3Kw"k#$$`}Ҥ¿ZY1s .۵Hw[`{OrtҚ֒MJOjb?ɜ5v*؟Q#YB>36ugMіD9{nJZާ?=+@tI+u̡ ^ϫ?GE:5ȃ2feɱ\Fl5{y u6| `Q",uK~!Ѕ>.R Mg(abxJ~NTDB(@!1[fA IVpF'SI@?(N_Jp}/UOJY%J(@iP\{R1&r>ĪgsRKX|>ɲ}9aq2MĤFOjv@q,@"Sl\ Ե ƞ=#BZ流!_ | kY5LU\uXB<['Ҳ.NH$2"@pM^j T61FF/QuO &Hlj ۃ,Q6fج0W ucm۾~8 O1RNXw {=0,::KOIҞ?0ax+GFc)+4ԯX> {B{Pfx~lOE&a-tdjiZָ-Ib*E̱薟)([]³wlAFE7%G\fpkv!壻XgY]CqhdX襞#Fk?Jt|#;M'Y螎0 rNI7ٓ~vY6]>9L8*f);#8< 9B+QJӂb~\-B5kE_Nߔ4&ho}ߚE2MyLy$CW!Ni|iORMlmlתIkvY4.їEZ DhƨV5?0'=b)B}2jjK\lzS---;`.VG}BS$Œ Gz,&m[Ą`&Ia2F B}\„ X+ Ii(U) X EOFv}3ﮰƚ2_62y% k >lHC7 )i_e[V w]&Ew-zJy|7ZS-j_~A `͠-l[0iEJNC'71# ]"/][GH*FdJ6ܡkm^ހQx|6pbE?{ ڐ>:ґQ ֯4+H/#{YnOz0>F ".^󟕤ZHa"P0jT JS_in;TF\ޭ>| Vx"B1k4_nWE{Q RsAA4BCA;sb *dy|clhV350uF%K]C:dZ 3R +}K/K;2H|^Z'<:y*xg3šѹH5ULiB:6o"I+'0yuf㕗{xk KFj-VaI_[`͊6qVeE& 8dx,[Hy+h:(l(B*uc-46 `o ܼ\kmB|&Rȳm/E tQ 댹^3،@J7OLrK(2 @~PSg16~;wLH$Wӣ 206TL2.`IDm_cHcn3SD 5 躜W 7usn3MKauhH钥a+vO}$`3$` s|O#Aw|CV~yB#3\&'vbm|Ja`cz(>F N7&HEL 7nJ*N}"qX=V l9D#EH-υx_lJ!K?P9x'"w4=%E7GEYQx~Xkx`۳RB& &|ȋf,{WUGpͻO ÊLL[ 2kW1Jt83k#Xj!LSĜ AN510 u=PH $WD}ӲW8ZRWpX.fHZ0.* ƴL$ҟy gb216w4hZQ69X=Y!Ux7S#|yx4cFWo^+{(^G..TmfTغQ}CӞtDHq g{֝U{FJYVdswG ^Lw2H{)ն0ā7j8 q{k~VrQM(Յ`YwSIx~v!axng#Jܞo|s JէIq.):fM$3XW9 f2mMLB:Lh8ڼ%'Nn20'82H"8!2^$MZ]k?ar([:6ڗo큙~ѳG +bxM-ж1_fPvcKhbofɇ("=v+rb3eZ!Iy੦{MY޵mR}=ޖE?T°2xWfEzyx3&/ qAPrతI^s~<*L8*QD >`ic)&д.O7 uEθy5gٍ#T^di?TxTqEX3c ^\2-& N1S_g4{Ͱw9sHo{ :u::ۜxf86ú֎-\PC8t(T O] 9j[l{"̔?2Rn,tM>C u[p[3Q,P AqDa>rr@(P)i.NB4]F.~uҐRe+,vW`C_@ }WL|Acwl)XUh2e>crus]m?Je&0G@\ʾ3<<,<Մ5Jе/74U߆=Hێ\>om`6m6S>i؝!3R8}+F%L_Aߜfmx&XnT>pmНnG'dp}t‰D\1Pׅ.X+ *e^?Ce":>6o9o^]):pz)x/F<:`ig~7Rׄ_:-l3HF$>rڵ`4M! KMlx,O#As0{Qe\)&  젧"ׁ]&9k^25CϜղ (/Jwa:3IC]A MM ͺxީ慐P 5RNrQE%dVB4xYKcuf62U"()B#$"q`8é FuPߏ?MA|{Gt;T鞈f}y`*Zڳ:թӃ;@)/Qm@5b8/aj|j3`=/޴ThDyItSVc'r8W-=)G`^ :ŝ(niO]zSkQewiܿ";Nelxa9ѭ^kVLL瓍d>=Eac۶CVĻCh1}5w6Zof8G9OV{kӛߴ??3e :h\cF? }:Џ'h9Y3 K3R!\%/5oJ"ICń?tZߕ9}B (H۳)~QJ -Y)  zC9{Imm?ܸP.p$(}B" 2I\\L[X8{3x0dݣ"V>"e|:lNˮ[+e5l:$d-1돂+ WU]3 /5r\Qk떛M].B2"2.TNć* K%-8z}'+nm9&:tgÐJS,،:7!m޴g7o\lbbacZyK0VwRjTkX% ~:l}j|kGv JN17(>CbKpCgqu8~0n7m8t=8סtIP@MP̘ak["Nuc_DӓYLV9ϱyDqrhXsYi֟)6`sc)/:UT?7na:H z״# 0٤0kLJVp/i|;vC傪ZOðʛtp.fL%coVg2Fƀ,Xj -̸) 'T8㹲M!fyV.g#SXnS:YMbK-hUQbɟQʭo㦦иi а*%|t{;Xjyda + I- L-) PY4A,&$)n ;0dHm]$o@Aqo\V/'ל97떏.90v$ j2ˡ]oA4@DP ,6me{Ӭ"YB))cS=" jx$JTؽnEt bT񄲶7',0F }nM RYLρ(P/50۶zԵe3=3nsa\烀Y)}JUU"Iy֘+iP)Eגڡ `#];_jz~~ ozkT_O*ӹ2Y_`d79l͂%?7muHKCwldrBR ]R*fyGܼ=7EF#`YJĬ<͆.ԋV2ʪBt"C(Xsۧ㙕fiC G(S9&ʶxg'軪VP[7٭ G}g1K-;UG1نz٧7xx~5kCС_5Tb'\ܥ@je5ILV)ԦYSԓ=W:ErӛLYʈ3'z`fӅ11N"̟Yl! =Gw !}ӿo}A #kP?™A\]SZ JI aOͩk5F5~Ri}\B|\wgr!.߹X⸸ \IQ]<c'ߢQ X z@*p271Ž[f2rLY`w?9Ho8Q4UV mpf-^%4b7H'B i q9Ng8љp mrsBqωj@n~Ա+aʨu0$n;rξ6HAmAk?ɸvŗC~.nw J KOUy3R,JX[rEfΜ\ d] Lã 6 Ulo >lv*`QK* u6 &E9a•|jH39 VC^x!ƨ]ވ˶ hu(2B?6Ga3hp|ԑ3u9lu<43R,#-\Kq@D#WZ= %Fg䁈9Æw3/E/||k Gb( ͍+5j Q/TMHVA@f3]Za֨‡NI1_?H*2 %|^wP˭{W,am =s12ԠfiUeqfCW0* 쒟56e=! YK[c`AmccoU"n)Zlf]Q&!j ѱFxh1UQAE+::sC-{N+,Q 2:rUG97[A#@+fGUØ8,zT2ZJAM D9>O!،!xmDI\'.zuR Q*q`[E?0ƝdGԾB^l<éh 慡&,'`%az5)d:Y/EctKYqɔ!IR,CtQUt=!3v;* pϿguhmǻG`A꩖鹊ObwdO`kh7۪2nks؊/ϚFQ:x&DS R<{`^>[SŨ)G{dfezy.9fk]4Nÿ>]/t|Kl  cq%==n>d~&)$R@c[$1zurroo,/MNJH@h=7t6 <Y Q;aE()T ?  .9=^xΛv5vTm%$MԑROީ]H}y #{@]&D+WP;oT<5^n'n3#v͗lOk{9:ģ=IysZ hxae|¸,c.x [8 vDƽA|bqi#D"!QXE }$f('NKL8츑F. fv6I\'cztd] v}UYi~Uzk~=E7C ]4V KR' y7x㤈qa(1ɵ{)2?*kFTSLݤnڄ`v(!4CXo,Y0_<_Tā]{$HxyH%6$ܯ 8~}I)̴s8Wp@ٴ?T7Dr&.d4 l " $lH]8Ĕ!:GV/QE[t2ڲL~8dc>S֩A–&>;vp{˖pȈ3&/<wh캟CizrZ-}hM (rr_FL'_)z5txi$')`=M$D2'$:寣Е 7(pc$vyj?X}}l؊^ QutRzc(rTGrC>:#v2h5FL 7C@f]8+=zGTtz<` R VmI5e1*՞B*\nVJF(]Rkٶn!kҨd䬳,i ţQ,0Ѫ|L5JHOY}@}QEIWEsi]1l/N).?Z(8oj1L\MC#} Fv26t ]g@R叓iJZj i  SG7~u<cu6q7j[:5'UKSر|O?>}GyόR ZM02 ؄ksYO}L0-+h`Y1Xr nz\<:yJ{[?)XRsĻ=H*el|9z6`Pφ1ي e:OՁ)ke1cť%Qi0tMt@{-=VSsr&b?^x]JQRc/yb y#՛8[Ғc =9ur|w/F9S=&l:$-ƀb72JW)#VlAL$!Ʌ~,1M:/o,gҶ,hWJ 0ܮ*1Oo $3y|u:!ټu{-'WfxQvU- ~W2OLrQA=jiܛWb7 भu**v} %DC,>*TIh$̍u+rjeשt^I+Y1#C-[|;m̠U.̢"CEc0M /k#{߯.Y)>,Lh=4^qiq开H &Xs[<u"/ FV3 T׀,ؒ3]Ab3$l !_L2PWb M!pd' Iǩg(y>5!a"J lg"q2"o#*5硔j6!+Lr{W1]&XӅBOtX$ eD_ Uldl]AZln6Gp54:aQMXbV$ S$4;O*zj3쨖lkjb@>OchNj{숃PS.,|$kj4!o_32D-hG~F7:w0bHv% V^ =$t'UӘsxz܋+dPy:Ua[1g%NY}A c=1Ҕ *TA$&&`K> {7t-y5w̆vMuBtɖ/ '}Ly \T޹:2> 3]Jx@YбRҌ56J"Bٙ8~V[,w2| zR ogr((ƅ`q=Otr߲sd:F,_I0HkG>n M!T^%xDE@skqIω2!F=-&bNlX;Әj7zy'^qe+_QIkK*f5KZ`RI vVHAiLq̒[5 `<Z@vG.*![ѲWkDT?볧l ;~C `} GDf$Oxz̨?~v:BXm]T/rq[s4a6~#[4ddDgտΌKZ+o.sk^^`I" (ZlGl3ekaKζHny𕧟Ds!}w8I֓p"Y̕eTN$*f+KX͓4IB?w 2 Jc;RJQ{PpmXf~gף`Y.Tf.BSz:7P$_`5j5HOs*P2_`T$tҒ)/N6wJJ]+mFրp<|̴j򱙬EBV0-&^`jOv+k%8~s>mM򿚶"uF׽f'й<_8``lfH„Mٛ c-Wn.]r9#+o0|A]>*dܸ}&V2jdSLj?zGu<ё]t a#w'vR*;sV E4jđP ^k1#X@7]EGi`]ZXn `U٤/^Oxo:T0Bale뉪|~j2=_CK:KOkJI|mD.wŮ©7>.̞uԑj/5lN#Kӻ[Unך8a1N&YR.$MmCcZ/0d,F\2K\֞5kD6Ih(}*/sV{-JsNV+{4zt]NZY[f|Gn?"vj tt7%9Ֆ)eZM}X'|WHЈ%U:X¢㳀)z@>-Gp(͝Su'%\2}ѕ^d (` F;52!_@!7SJ: jt{/J|ëUw&W7l!9r/l+}<4y~\uF AJذCFY ؤ%l_}0/8Nh*3ʱ܀9 eͦ*s+0yӈ %8Q?Ś>l1%;~/F[ռ3kaĞ7OKN7yb S|a.Q{7S%pBښVPπeD.fN.HaRpQk{sӌipQv hr_l:.o1;q?3V.CE#X & Vrg)!MRnr;yhﲬZP- !7Ǜ-jgpN9LΟm71]N!e >ɒuE,:|WecqV'X~Prz&ýyyc*Ā~Py :/'J'-lFR:)Ν+{oAhi)q Ϸ,YˀKv e`<$ܷ{7k]hCo#ȴNURnr5:- ~<2WpbtY߯L)">ťd\ݍ10wj~:) Jbyّ;gSXE8x( H*G'2Uɟ9 ]EjHMmc4V -Cz3oS|zu; Z26Rն\qw 2n,ZTT7zA4I cJ Ͼfk9s7ᜯ7F ~* 1xWȻ?~/p8."GП6ˆۈR:2Yߒ? ,6]DWT(q')L+ x i  kOzBE#r(jP薱9Ic*'MªZoMcş~\92 f>STuyw,DNP_+ȰB?_|'|ijbMt6(iͨprta CaK2-$Qzpϰ]'RƬ|96\CQkLg1y"C&V^h5!Ҝy[XbՎ .{W[eM0piUUX%pyyvj`~`]I^o$h1{ϢnNLQh`Z!W58P\Gh dgnAӨN1F'_yLZ A;XO%)8JxP%w4,Jmcz5>*A䒯e-+ x+ޤƺEcwoIp]}WNҫUyT.^/,}pܖ)‚k~G>Ln_KD@R| چG<adv`#NQ:#N:"4™AhA v6$_Ƭ_GXe82_|j #xZ VKXI{cE9uh[%@Oޯ!n ,2bQڿfbgTCHGgi.p.#V2_^FgvWTnva]hX[ YU]aŘ9Z*] k3qzC@qxOf:Wwb9bճ]JQaaI0ԉ2m^ڛvmӍRcӍ((3s@MW1!;ƧBĒ6N_!"tmR@Vuf6?(Nb7*~ 1W(8̌wL+*XgQ 4w#ZX:t>5G^s@-9=ȩl#cEA#hVx,g{ī{-;L ͖?oз܌@؝ xj]E9@8O啍9$'EvZ2/mU,2-R$R~6X.΁^$#3ȱOy$nJG+(K`ezZ'9Q'#!dw7v8; +/WX1Lzpw,)(X2s<1$.[ HCKf5>tr$ߎ&{,H[IcsMm_Xxf^Ĉ VahS4??PsX .fcq0x\q=36OuM?'dnͥ+̒XՄv] X&@`BmT"bxcҁI }SUD;_A7hDE{SYl'[u6\viE zXucϝzrJ8p}@wPQA{bmݩGg1y=DK 0/-*g~>D_Î1x0VfǛwXqK _X~ > %}E53gI.jC-:4}X?1vA6]n~,/q'(;j!]4­WV酮tmUfۊAM]qhר\|R_SRmp 8,/E#.M qKII-; "ĂpBZ`9ptSX]W*mKUt)H{^jr=Obc Ƒ)).K\B/8OR= rUUqRqwU qۿBvӜ0xH->G~n|̇Zj\fޙDdwˤ9N4PkkMKJ'E)`k-[ɂ*$f=dݾk6;(CR}{uk@Me.ԃE~3N YM`>0cnoOS% |ɥwF I.v&욑\+I.:%H*A7Ah*/Qdpjʺ-OVe%J68Jo E/v0;!zv`"vߦnuϺ)j$kt}ɏAxtw6:ȏ DAG;vѵI1p,PCvwf)Ӑt%iGd<ǥMm!>%eOc5/< Ug0QӖʜEH 0T$P\&Z3aah:*Ko{yNjM&εh\/]BXt.YPwHYn2)C3 X k11v595qIc.)V #.<7ݟFCK l EuYuOR/:]8:)sh:@gs?s#a_ Z"cLD$h9 P$ɹ=>F}#-szd&)P"F"2Lߏ7דJEgJ@<&-JȁCOp$=Ko nck|  7t-kjZhv XLBz7 loQ &eX aIw*uDփh2Y9w=1_s/7^+G^KlWI]Ԯ#>A8Cr.&UUP(mtTYr腖Mlū(F{Јq ,* HOl :>_|o…CB]KOh bR:F$E-B!Ky `w0"}xDܫmZcJ/ A#b,r8;X]c~b| e?$ɣeo5eB%omXh@+#m}2w*=2-F &F(}.wtfBPyW%x n5#ךd}3`Dש,\ޮO5ؿZB%b*/;*@&TÓI"e#Hׯ6,CG—[frYy3[߁9sa.|-{P£1w ;?CDȀve$<@Q9rA7 kPcO[TI^$~*vCulg-3mo^UnuYgp!} DG4NUES+s}sBkKWVo-ӲO޵jIE|ΉP>8VxLEѥV: ,J`QTeI`N3U:E/.No2'uHqpܣ ѷc=Qk>U: NV~[PKw"-2l;ߵ#Qa"*(E;7F\uo 01n↫f.`fḻ*J>wZ/ų2nPZ*^;WA)_ڊٜr$ɰee3A4UbyGlbURAfc{ =jJV%(0Qy%SX[΃7kͬ^pNHg!k*G+fwuUϾ-zKSZ7˾ȼ = [L| `}{M"c,T0WNJ|V'9 /_7WR%zCJTG%aJ^'pjmQy(NxkJ0Jr":B,i8FyjȞ jQn@E t2;JܦQL bDt X3/s.D:PpCC*7V ٖ%h8iUZ~݇nwK.~+fm~ٸ;3 ^lAq/F}*ŀ ^FHV V#R2栮J"3{/@NV:ڗ4 Irmf^!O-&U+}ƒ$Lmt,0R@wL2@ŊJғ\u , YeV7F(V)>R>ݐVET%]zEv!h/KV*\`XwL9w+_3p%C#p𛊵+`5r]H|!gdW`ܟn}qPh2QTM K޺i>hC0"Ǯ8k\;@1¯&FaZ+Ra8!'kUQx :(]q,vZ 5)Z".NQeNm$,#n|w}ȑwnl0l) s=Hh 8#6W Z2Iv뿾\5!O LG@EߪNPwn}),ł6ҎŢeA4wA0YP..gӦ;jI{V?`ÇY 3vCgk ʭNܹ$ҭvт`c9Z)t "IzKO6naMI3zu 47;Ci)~3!&rM{z:.yAw&ualMeg ia&/+oۍWW;}a7 Z1 ;l8w` !q4GN癹ڤWf&,`Jcjq 4 %mg7XAɖ(Ke9U.yoů iwcN{Q*Al5](R?JtR"A?m%xJ(bG|3xCVwZ"cT>`[z =bK3 {VJ&y/)G)Ykp08l"钷üpvx}ua}4( G%kg4uN=䂁m-yēfuq=/H9"*iwk1ege ,3jZ RP_c'>J9KPZI_T K%A(Y/4mdOOD\ƥ@:!K?3 DK#~ţƵl 3j!.Kt#X_zUv J/ \|f{^o_8$Uu t@)V•HMn[ඡ!|G!7:9.]OuBֳVb/teE??Zrt>rk,C[CWq:*~ % *ήٜߐAZK/ H(5YFޣ%{9~Tp'THK90=I12OI":!p΁>Z8ڻrA[AZ &@5ќ<-\8XGc)#+>)H{>YĽ_^*xTxfzȵ,,ix5J$ M@GW$s{|'a_WhJuG! `jj;ykV1xvp9*Ede"x4@ T)9E9WÝXEJGeMJ.hv;7?TJDD?ՇFwOa}nC*/"Όܠ2O_PIv'e%~ItEH5Eh11'J< KC5Ҫ9@v *mg3q9[DMQY5<"HܹU{w3a1;ӟt?":znos>kDDzs*V%=BŠI`k# 0Ca7 2)+y"Tgb*AO`b NDEm߻En9^*撶t7iEE5/h]G A:tCȋ $}Bz~NfGDy T}.<"szNΧ@Q9ƍO/<_Rq)SE"v?GPL.==̦*j]A \=Wlw/ļkN־O?dU"{.k ںOx#h qcžѱ9-W ޳4DRq@p/Y K8 :ˆC[8w U^7awGs:3U/ٳ\iYAJ+SUܶݻ@>ݕ i iL]%@A#Dќ^;rآM[?ZD|$l!mPKFBqj.s@HA½ϧGQSx!ˠ)]: p3"`uDsC'iD0lCc$ QK'MT^[ׯVYL:>fU%Hc-"ƥ;x]DtBVj.{{UN9Am`gRլQĒl:+M ^*SGbGɥ8z4`*鷺u2vo-AW}?.NR~ \͚ 2B{njΨ01g ;۾&8\Y<mjʞ`w_! ]gȬhǰȘڤ߬mTؚoIdBjJqvE3})ZՁbHU:W:j8߃E4X\\<P%i6ΉѢf$P-{L p.uӟ)n6'Ivbt8qFP℣³6f&v70P%]Oîv] ܸ+MY 앸 ĩ6<'aWe&hYU5I(3ev%Rs 0Ntվ |2k`'HcXMȂQD*kZwUlz{PPII6EOQ2؂Dg95l G!`aۆv=*F(X]p1lK%pG3 '˔'hmG4Ѳ;֋՝ ܌т2֏^{ҽŪem08Op-i=2YZh/wZn9p{+4Kq.ĕ2ﰈvu]y?h#䴶Ưx"ϿA_@,`G<̷ E;0 =iSu2c~Z0ͪTg]5xyPH =ԢKBl%4jXǼ̎0WnЋ5ѡ+a19̃8n~>C;T-'KE$tY2瀵{cܖ q-FX7y_pk$c|H77 qenSՆ["gX 8 Ԍ A_bJOQFz.b_ip le-ÍKWg^B޲ )&3 Q aQ`g9?@&op%2lDuC2/كk;u#zst(t <#%f)7]-ȆCs$K2 X9aCMVƕrmbnW>3D}=%R컃(lj-xȀ)rgQU2-N!jN;PϜWD2wAI#Q~,Xő;3>Bܗ5D ,]U'ue-a(Eˈ3}g ޓ1"R[,`"Z6_:K,Q}?ˬO؅uh!}G5ݗlyaO65n%N/Y8}msA [h][]e/:kۂ;ҖHS'2+YQ8YLn|PW+Vx ޿}›ZA[q$ *^Jc _ ~/Um'5 ܽ:'He1"COR&cYs+ӢCbEd[颯wYݬust?2D#1В_kˣ_zN t CtJr6(bXu.yK,f֘p|LB`ȧ 'S4Cxthp_ H7bj{ϱs (ɬG Oӄ=g5vׅ3cAm}%G ? x?癸Җ\"$ЃL(R 2Ըj$mޅ9ҦiEڊjN=A? ]Bbۙ>=Vc -Kpܸ&,}rxe~%v@;@a Oy/L(w.}w5P08OxFs) [6*Dʩi-E$YOسpPފ$zHOhH"d!kWy#ql+6oL@_rav8\lIa{;t! AaHNp A>TF OL∉lg;N; %D̘ς%S2\G)p7,&sϒNUp"o %XêJD%lZq4;i޳ҜK\\<_h ӝ!["\Rf:Nmo r64ƀmBs3(k6i>ź7}DTCrkWg-بG5e` HgB`Z.9Au:ݍ#hj;P#L"=_?dl>|AkFc)ҼN`:WAXӤas"EZ1REeĿϟɒUށqĔV;j4*o՞Ux.fFP呫"^]ʯ( gk')9и&. TgW-+oK.قAn>o!&OXAY~ =Bl1~]fNbi@?,T !vk&]vu~QL,rI{^(N5r'0w_z9-C`K7] WC,ym9Φ3`ʊJiy#br&qoZ?TWpX;W =ktQ9 |>jv}'HMliեasFVD3#jIZ,r[qOp0 <@fa7kuV3a5"#@O3O *Pfa3CdpX9z)ss;m _(3SQjf@{_x<6\&Y>y2ӴAE)'rz"ֽqYqͅPQFv$gLP=tQ&BK\83d">Dz[e72(%Rm{.ļ%ԍv%YZVCJA/է0QmJuuxӲc%[!/ 5F 瓇:ø@zA< i=\B48`evt΄Gk a2bYU%X}uUG]:aeWX=;Ȅ dFAa/2fg [NµGIQ6CgM 'e}IY@c_fH{TK3Ky(bqFt keCQhv Th֚(SJ:{ mek4l" tǑˡwƹ4O*͉0qKB7kX.E c Cμд=D&S w6oui,ٟϥ**V{A q'uQQǦ4*>aVQyy A Rf[*O'r)I'½GhkB)1JAXb=vw/+e Tk).sԹ-Sq)X͛.2TJp#e/1gӃV8i֍\0F l~Fe@"I-|S̛92?m7N?FrnRQth-p @ceAԓIsAYNEO~]bׅHK~ε_y$~E"hJ !Ȅ>H4cjb>+ &HDǰ|K֚xOG+נu:JC]ֲߧzA>`OCj'vP mO>`rFP_U5ߠ/5T>^l=֕7lf?(1[x XUo޲cVWL6 u=HXK_ߧDKXJ Ȗ*7g#}$"P0d]4|'}.&0T\xX R`_il oԳ s*yWEM;>O [w2ϫ6UL8 2qYc?/U%Mk&GLzw;K0d(nK{˺$}hR4lZAh6TV4S4x}n?r_)PgC Pei@ˎdJc; qQPLYXŨu"'lT#^k*J< _ `߄'=C|-+loXջ0Zg]ؾPtj)5 Lx{h1Z},Q7K]jضRhMBp]]auc.=GUl'乼@%RaP@Cn#M8Y/Ed"LzN^A1@F.~IG1F>JaRXS 2XsRdRsس`GzCp4}hj gG׮:&,L6dN[9OaQD2}! sGv4&M-5Z1r?40CR/!R+€!˔k>$PxD.u Fcۂ08Ç{I: "Unziw)S1@a}'ij],-$UF;B*j{MXXl ǡ\xTn2eZ+/O~Qw^: ~# W aF4A$Ag DǷ?vl)ƝcBmHjK@]}$[wt$/<`u}=%Pe7n@>-+m/5bm^s̽kOhRJB[Е%DCi<$ݥ?Q0`kAhL *+ßV0X:)ah> v >̅{>9Q.tHG꯺ rT?.?? 3đ)HMQ&ǧty3Z/$J,O2~|>H*.8 G.j1FJ`1o=,yVG@/vzU+GrɳM$Iώ;mEM""lY  g_KJggwO[.E0.%m`NšobP%Lu6(D6ŹZq(xRTܲu;uq4~cS8~\bt6 7ۺ$8z,]"K$W$&٧lh.,41i`{J%&bLM ޶#8F ;9g|`7<5_^h2!6 ԌMʵYhJO_,VچkJ3bX̉FϘi{UZ**3fG앜h1yjl7{V"AmTXG!2f=㡮P^橣CwԎO8N^2XFz3cjMX7MctM7w̍=݅pȅOa/mxS~z%9NUr~yaUl&6폩'LPC($SUUjU-Hi^ 4BE+VR=vD Bv,)޺c$+c#d'rIiH89>( H8¹!Jh侀)j5DA6MLLX4 s\, VnZfxi$f4; uB)1K2QsC0ܮg5;CFͪ xN fi쏒PZ^hB'(hW}:zle4:nd!OPd,KB1c 16D:a5*w9we]/AYjBfX+A;Kǰ#i`.[H=~El1H.sƴo׳N2`ˋĩ-d\yמʴlskzi6R$Pkr\IRdϋW YFX%H3<:fCt*5q\上՗`Ogmz~Òq*d==vY u]I~',o4 MlsfKf LzZMJAKl.hȃDfRwz2g>.7!X1 %7ݲe)KU7V{K1?)mv'a_R*Jy*Z1Oyijݡ_HYT߹|  b7pm̺k&9ORoO&YyW`뻚\Ki]|CUrcvkB~Nn"EuzLa=m=JsRh{jm*Ec ] ^z¦J`T\nGVKonf$=<MY N;(y2AV3qaTV 7\ |r)EuFD .T/j>*o&}šuv-+ %zW3!DLF ݓp& &V[zt&Wܼ"rB]s QRV ~V ʼ `sO]Qcb+.J'ER{Xa>m(?+I(.tr5#hvTz{To#AԪY6ACuṲ𰮮Wq˷\ye(ճĬSf.Aøbj,[˞5ErhA-&C,'p?Aht/8xĺ U?["9*_FNcxB J"~NJu&h6p;BY`8)a0e`( KFm"Ɯ:My;%sx@bJm8"%J7=m(N(; ǥpCNbKx:~T63I:DtOLu9oyF\bwڱgÞ8bx/аr0 3j^NpWGw4<t)(6"=LDbϮPƉ(XƞgR?_`5$(mmw{>J\G%ѻngg*w_ғMB,Kx)wւAp_q?3=GP{c Zx/qdv͹ۤӷ LR+=׎SaN&J WB^@>nA ~~Ey+b,#'Y#6b‹>3@d;EN!+eb!GK0fxqs={(KSXs?R 6'[+!lZx 0ie|P_ I*֕CF[AH#_o0fһś棡b(1g%Is0{<+K`BMu )BE bo<56h1ӑJ\ԥ ~":|(\5~G NR!Fdc[!:T0KJIٟO*);װe7pa9,w>tgC!SGЈ/xt$fл ^Nt꽂 AO=aY⠚/L/|YW.F䲗YsA53qZOjwnVZ?Vﮕ9(e(I&hwz0sT\ZNɝ6F>,*6K[ k`k}`jaixY~XSp|L->eeŮ fjN /akbIʴ G [q@Hj7[e_5?ؐp@ WJ.pI.Xv#3ܩI&*6Mݼ}nUVDwa` ̻yv[a[]**Xĝv!kޕVtaUC#5Ф..2Lg+ *ا~0@OR왍_ Y3@fs *~~MDڂ 0wL ARSNCDT4ĠS]3({j!`W}E X |̰TC?##3VIYܟ8}c6GдF%KGo"8A|(z cXjޕ'XW I(g(݃R+tiE@\{˙ [Ң- o>w{FZoDZ_)E k\Dm:xh*6o%!V,&Kɿ%uu@87͹EbZ-~XB6F]?4/嬜$f-A$u:e<2@nv3y)'Y}jT }sYLVq:{x QK >&z]Q0x)Ҟ?ɣ Q2Ktdٻrƚxp߭,s72?m8lV4Yhs`eǽ')oR~ #HI :&G%5|(n+]]DT-ݡe Րp%{~a*q늜 ,2CJ~O/X9b{ܘ/"SWU˶;NV(N?UϟPO璬qJp+"48V{Ie% Jm6xEyGӏȸ 'o39H)ml#!OnMQ趮L,,̛UV) =YgIo3כSF$Ա%v4#wx)d uULXfŏxΨYo2ȿil.&;i5a,( յ!mUMD,r7)-VNI&/fx^w'[nLAo,.րHPV,H Z:^k0xP9  xR!YВh./6>S fOv. =->͊:?"ZC} Ε{_>n,sYE qyqr6sA#z""Ux{w˰ӑ/"P;Ps./Ljk&M^ẹv9i16ˌ%lkD$xJ=zP-SfE'zٺ)yJ$M\vs'xr Zl/t^WW >!"WoZ*˦}/)˗NIA| 0X.dHϐ4XE{~n)@ ~mcY[VEu=dTyv[EWS;b|+p!Sg&9h V~o yp vkbH GWM#}àŴL!x_I_QZ0ߖ\09ay*Tr` rErBg@S\ Ez%l vtK:H N pY6SW?s#J"=J-c6jvG5N&6ꉏh1,w#j %k[qyB삤q_FEg֡,apx1x"["IKevN @a¦ ~K ܼCu}M@P"^&\6.CM`.w7_y@fMW+q:IMwy7#Wu>,A7;.3KɴG&'PЂ;ZĕT+ ԙX;bX^-bc@`(:¹b5LJWw|&:n|e+{ޓ*VډLc)9C/=ne nF=I8j9qk3`Osڰ P D 9c3i^2f OʲQ#6 Hi`K\HK.2Rd&C~jb5¹d^s2[#£!6[X:yJbȒ’ &eefX')p5]-|=J;1~O;>6nS( ||ExQhp RS)jĥOTYUب= !}[U%4$ϝNk1ęUY p%LzIZuRWG(XhVh2 3m28ӭ.a<$젘)9աcZq$%ʫryaֵeY0-+Ӆn1L%l!Nf CӿDžrcT^) u1q $R+~+7zRY!|79_(o V>Pe3 s!‹8TfS'fqy*# sUE5]Wӯ'_5O mBqZLG\d4N͛0F'HZj*ej݀3B0>$W' RCX{b. {NKM|s'Kƣר(a'&y&/b&qCB.KlcIϨQOhzUvQ?tl+<~F0Kɇ.Q򄲸 t ""8ddފbG d{z5hAb̎DGࠫ=J`8aO-9٫$\p~ Iu> c=Z"KlG= [(_dPcTW;Yp'ȍIi|@EomK#zq4x~m<=%,F%ZdaMM"i4iܤ}~ g~~ ^)!n" U[ue2ctS4OC|9hB1qV:`!1HRsf*n,4E# ;g-Ɋ~lq^|'&nzB6I~军O:dX+#!X1N]v~;*\U bs"hY:r^p(֣]6˟Ͼ ;cѾX,K@WLtBfsc"6uwUЄ5i;f-r24k ׾NBR"⊧G8U_?=dP_Տ+nyNLyw*P E'@Éav-ه_2o9S$=Raևv1ȂVv}7A4Yun{A@D:5 yDwI\}{jĝ=A>psώ<*vFxjbψ+F'c-VX"dec0~UܻM9f"zx͓z_yhPz9{K8 trZ rlQ|l.O`k^(*TȄ7v9꒱^N62p=*@l7#N4rHevLmZMD-p.=/2 :^n1}?9zdȐ6ii~١M9L!+Tcu? ҩ mG&G^d.̾BCY7 ">LfA~:h'aۊ(2"J SS5x/r\0+o8]`sBۢ^t̸pA! `9 Dy, ]-4~DLޏ)d++6xb;X=N v[X,:gJ3ݻN:ƻ- tSBSr9Xa׃)c(V9$t;Ht,-d- clojQ5 ֐۸T xT p-=K҃j*ы14 p)KJS:ZnpIG^)@R$]쯐f.m#ϭtƞw:#qa5bhqFoCL߃n75%"VjdιapԺf}_Ѩԯ3Hc-2Rup+qNa~Fzn VNW1_ClY) ݥf-z!T`sgtz%5'ih+Y@S0oYs#|7I^Ae4`WšِLS˜Ȳ /`(dZ[#5EcZuQr>Nܴ2Iǡ+8}Z}F[/L ٴL=g XZ/ELsG7i!+Fe", UgN_^7M ђH7A(H[*WȿzZV|R 5ĹnNA uq4~^+-0إ /A\Jh-x Tj,GytO@DJy(i3_+ksȬ#C<%|Jb+W](ge3zB~d:$UW{؟xdIBel}tn/j2JIv a|Ѥ|Q؜(lE19>^ǵuAHX&ŗzSӟ<¤;ˉ)t/, 4ҹmM3!bLvLdl3V/b+ S.I킄DP<,e37者+4Qw|[}joW. H)Ls֯\)e/jT3/ʔc3_ F\Mjϝ.*kˊ8'^8HVYns8|ϕ>eg#srjx26/)5DBZsmPl.r]'8i`5V-&LN:XZu[nUe祐dYHmެ!Z ACo6DQ@ _hH4!RS .LXѰیeSa g+7kۨY&)g9dUmv6jpT=m_}PGLHwPW6־hxf';d)#G k+9?dvksao|ɰmF,"|ljT"|6L[W '\.xoIMc)?T=?ݹ$iTԅy[\J`99yS6t_o|&}",S-oy{kGT(!l3`Е4 :}[D{G .WHDXSh4r z6wVڭ]d[G@r_^ȉKbe`H8=NV'2hg t:R} b^Aͪ @=-tUG,Np${ME?#DcG3mrIV3kEr6qbco\f%L,tI7!?)~;j4nk;bI !9{^y;֨Ec,OP#}/IE9/GM&(I7e@@Ŧl9+H xBOkA5TZ$b ߋp\"o~&shug@HNe3 Fa(8}n5CH nHqMpTƐt8H~lklDv N- tq￁~#\9o)$ EEp*Ek`TC'?j96^"<o\ c EʻN?CV}1 LcVF>Uc\ &VF>gMty}"\%sj.#)kIx#iq7൤95;4r)5sι?R`;Ega\!4tc3+dg4=^7Q KAHFbG?zLxm|ZIp MS5\@~n6Bxcd5RURIԃ SK9}z{6ڐ%q<2]w\[0>m3tל) ~;lzXdZlρ*#5u~`]0tql)^ Ί*G#RFV'EʺqH vuOaQ,,s1xs4B\b#Ѥ׉g݁9:x IN{y:hQS%+ϕa+>2ia*U]̀-]M_R6H <_ `S}!Z6֑𖼁9bb_a6jJ4N92]3wNj5o=^EE{iDsьԐDK̽"ҋ^yH}hTUU%WB=G Ma^6g^#P+1oəw6 x޷WH/oTlXT5TĶ(_9֡7#ѝ7C'bψx-vE3,BJJ^I(DU|"Wt?ٴf<[@ܑIt{)E/ ǜ՚jkOR G(`.Zgr+ Pހhp| uMq-z Ш6Ufr(^ wB N[0#((p}|vq\/Tx$_T2x\?+$W6fJMiɊFŦaG-1g a3(Ӑ4* "Iu:rˣŗ㒠O8j4ڼȊ\P!*Bw;YLᆸ~Ȅ4,_ļB;"Eee%ƳmC( nQJlmNLQиW"|Py2 b!!T2;,mm 3j~}RهKu/*Fߤ9\r3䓔!kdɝEAC\wKպV yv;/H3QJ8ir z-$~cD|[ ޛ-8D[\G$Pn NjpNTLoo 9Pu\52Ufe-m5ޥcDT )B3:?)])po;rEo3:;l Fw~Uԓ1ac*{!+E84GD4"J+FXk\ߢ#tL> {mYNrNr?f^w. n=\w8['UTw7jhŘ~mp k3 ^ր䲇8kg!tI|]`k'3@!+?LW؂vZ>ݤbU ,գH / @ų#uƃ s>Y'U ) T)Ib DPٖH$UD3# % IVock]P03JCAciC_g ų=P& [Ir6Ro6vپ>l('!"{qbz߳wq4 s݈#I^:/?혿ݎheZy<(Chor'fN IwBQؑFN ^.9-بq ڦhp^Zr 7?;}^H!֌xh:yS]f{}j<]nBzucX71u"'* Q9F4:#he{o+@x$KMUg`BO|K=y/BҞچ%ĺh --}9ء=·ҦGdJ]dOp##ע ^c4p܃,ŻC aϡ3V (R|~i Ys B8zVLP$D aHlX*l"t`p>L|UP /(G:~B=o"ДL%"dP/N'!248QG4#F~\W#dwh&^͗",jb̴A rUk(@/d f :R_5$5M9}Ygli)~FiHԱ?r`Nlb*fK/mQ +p q޻XN)} ~[J/G t,g VϽpi )kB3_ 1KPq'KWF95J1J#ZlɊI,MJ$D^5*#C>␶T]*_]=~)0_"Se,%3yғv@-Üvn6-+|i!-PHF$ҔKBA{L3xon##SZT#M7\(wmo0 <ݚ֌" `8!dMV BI$ *{Gz#Uhb>EWؽp]J:;H0ػH7Ttjh!/p1|G{f3%zW]@>+U=`ılI=>J"L7ڦq=Ѐe:p{UK7G?nc`@)#w8lEc/0 MX7B`4Μ;e%#љ{JxmWMD7Mb[adH`o>:6- # z\{=LϓeZ-8됩8BVbx p:TLFӸ`,eL+%^\~yyaoi $l>ffb'iwl > *Qu%)k ]sPܽ{oƷ%)Ao҂M4N"GH m-Ѵ'}"|Csi觙qm(5ˈ SlI -HHʋͫ].4qc s` 4jSmI(zL HkjOqwyޘY>(H㩷$^l4lodrq=?=wl`U=Ж?* %Us`"oo  >p@)P>~M3 Su [wb4 `jݦ$5.oW.rM)]B޴L~_ٜC&&)hnrZه}<& ^pE3T>ߵ ~AjeA`c '0Stz]lϱxV_˯n@/9#OF1 N6tVBp,t.B/}G R+֪@ɱD`&nf pU a E#G[9wUv*EE0e;#v*{@Z->H [EH8l{YeWNnF~$$}gP]erY6SuP~ci5X) tXl[mwm1h2eS$39Eݛ 쭵0PG'NXk0-O+-˥ܶ)A~ۙZJRn|^y췹',).\ꑏ,\@=x'\.j!W-#ҍms#HD~Xj%TZO,b/hG"Y֌pO. \c@AA24Se+$vc\Rkbu,]AD#݅>u^'?{Xd`gB"S=oF-TFy^2~":y(KAkG`F3B'?NJ/o?Ɨ7'`+x?1 . Dr)%[n@;{L*䊙/?<#gwW G)KkF"*|RlBj^*hBEۋ$Қov.́uTϮ~eİɝ5_AhCkPJ&H\I.XkVdVHIp[Ɵv2&y_wwq^?|;!8L$GY,Kg;J@,".^Ә_Q/Z$f✝ f0dʳCvOy=i|K~2$!u RaaEyvV 7-LgkPS ,V ?PvKTT /]gJ 7bt4E[X-mvވlc,|*f,\( P:>Cvr3nsF,ؕ]2oG~d$|@"\ua )qH1cP4kư, Ա{y&j=/lg?7ل*16g6:&fkk&SқEIq˙%B{O>LrCkH7 =;;%(!]49m@DDWho"]>hf=ج ڋX}K:R/Ah1\ JHVPY /āŨOeQLNzVZxD{?yS}xQ Cs 9iy(u!`PgHڜ75hG[Qlqg< Kc&мΪ3koH%OZefjM8PDq$10.hE `ߎ1a ++@֢P-PP\mHπE+$ܙ]ee|/kbY{; *vދWh la޸sxԑs2af]1١BרJ& ր7ZLk͹uܦۦ4Is_ݘzBAo/pQ޾00Ȑ dzYuJ?`ј?nr̪]l"#?{{jz1r д)F,^EXҸG( -߱•OCU+۠+%sC,p{wFQN,4 :yb ^:L|x;N[Ɵ 7nA.Q=O'xSs ~iaK$yWW žYN C۵ĬMjRHWIoUy.nN4 ;Q֕o]j.x=0p?0yޡl]SJrN7D,,8T>QvR]B<;R `& ZS/ (O 1,`]:$Cabu45Ŗw~"( 1T b2F9_xD;}>ùckp27Jc%,Dh_$EVM@UO/<11\0O`^0NZWsB 9PF,@~Tsٚ='15-,b%Y.aǎ+b/ D'qpO95K%|οL l{M]QS~[w)9/3,>·* nc=, nS4ډ`fc} P{*im"+wvr+AC NXAuyzcQ1a-q6 >ʵ_@I3SϹw'cuDd="RUv9~2|BJc* v.jAzXQ+ QAM5?xh<.~&"O-^Vw/#~'7т2,7?=s(J:Nl0YV=9S2#ŗ"h::寿:GtMmФ%%tWyZjR@CO ,p35zkM&@XRx?T͌phN^ԇ]۵-EX1ĝ^YcIڧ,  'ogT0$7 > -@dL䖾p,z$" E8438F.H uR}#fn#B[\wAyUk}; ` JF/c s5J>]%o.*@&w@@ڴA_GVgB}G0,z7q[O Um4?`WE): ?MaGk^ y=y9OMw#-r?~>?1xLsB8/N\*L^~|6L`YWq&5wgCL}}{"qhf߰!V,IrPǷ(͒,ކf˶`i!mi & R;p6H9~F`Z&Qn;ʵ-]uFG B; /UWE`KͅQHcf$Bv~V^Iz}mfH3S H0) ~8\Im~%ȼ+>Z=.2Lm }oVUő+*))j'CD҄`^z?w K]9# V<+~gjE}cAu1Cۿ6Ks{Ӑs|G7qBGSSXޔ Z1޺c5y{_yBF*l7c|T7Ñ`b$Y#|>[\,ݘJ:*+_1Yv;FMckQU1VE >qEx a`>^})j](79Y w6ˠ'hز:H0`[zA zK6LФ2[.X KHU6:x([V՘ #)CS{Vpv[nj.cȄS؏F(\1MIqKi qy: y銹3WISuҁ_^ j:$Ǒ _vfFZA q?ƛ}+V V`iv!fjgPhD.(Xp^YϷQ)&,{'Q4V_=o(PO ^E%!TWٌ}vS=SVTKt|>c5`eVkяYx;B1D/V4E{'ur' '3 ~Ű٢[LuDsx9?NcvZ-(>6P$p+cT}%dǕe/.('XEBr.\Y!gD.u-Ζ7r?Z"/.8HЉqă>ZJVØTVX@k$+ @*DyqJ@QUSL1x2EH$(ߔSN^czMS-~l.C{bY A 2=F&k8H+ߪ֒qf 3ީJdn2tKq_uxڬw p2LYl3\E"ZhȞ:AWZ[5D%^Rf Z7đGgl%M E3pϲrXt#ů`qA+9#<ƚx; ;Xk.v9KB6fe6-iVXD2cq <|'7#d>gLBr&VjtʇcX]mx` fj#G¯!Zev;ov4=L&ѪPT>]b8M "I)v rb~ʤ? @.gBc m:u9y+Rȿ'y&N,k Bl0_#+y#r*hoZ`Ja7m+,+63GGi >0Bߢ^e+A?|#JwY?Sl3(/$673p^㐒 2| oN5744\)ly|zdܢˀy[ߗryRe?YHأTMh9ٷ+qV?` vtPhmyu꣸}DobINgG򩦵9.Ǚ]4kJ2>aS#{@BD4Ycʫ"G Pv_!3XLSB)&k ,ҶhEiN&X@EJL]TؾE UI6[@3^KP]UU_F\ir~/uŪiO ngc?n9 *jMܥEwע) 8^K>UCOp'bߒlm {=gs O4ԡ]7-w,F<4ۜ^&6I&xG#<4 8ljΨ} p7~fA0:8-K2pşvn!)Ô~=μ& w)=- ք&cgl_6bԘ xE&,_]N(5okE.;UWSkU%OC1HߜK֭V CaEiuu͢qBoX .W'F^F}?qSEW18ӗnYsSN`~A]MwLWML|1 iaC! #;%Cb9SPA0qۜlf\휳yy< Ğ~e4΅ s8;< ֛*32r|%bFcw$*J9`Anhq(@ ]MS}J*v;!)mge#B`C8YW1XEV`իX~UOVMK0 Wз[G>{_6yw LK߇a1 3A;3Y:FP 2a現p']LC3a?z : |ӤX1pyu,F?"\%40 Ex0 X Q%[22-];}\$h}~3*h:~uY_/B$02\^ymi%W}5Wϥ)tc3jTzFVl 3Gg"#kɖrb_ƖX<-$ aPop5ߎ!+<-] H?"gp<@=9<5!XܧW' d+-9?urZZ勣 :/7 7"ۮÚ0xj7vBLe>{pH;: *|o`fx޼l&'X*BBG˜09hw34 jWaCw{-%juhw{ͅI!bGX7q&Z+<ӭN{ फ़}c`iUeHL*h: $j2x &W:9ôXTU?mŜsވ`άĄ$(3o=8Y;̅ c:Bw,>X1/0:+Ԯ rxU1lFGNtVͩfwYL-&]V*"l"cβXm؁Z[,uJgL\[K6y?SmZD0$sT&u"[L>-rxڽJR]:MI$9D.\.x il8e.'qhͱG6.9vtasDXT&Ć0sp޲3|1v '?)#?Ks8c Oedclӊ p_-Pёxz$4&\_-\;|dRPBNou[}Gq/ᬬ!xnt\zr"ƥBLS 1^(K揬U9%^>A*VyM:~#!L<0ŝ`H[9KmrɭO3j{[_3Z:J1U"(竂׶6r'[5٪nBl5 ! Y>ЀmN ^g}6z!3U䊱1Q%hcFݲRt1F78-SifĨ.VёȊa^gNÁ = o_xl(dx m JS:B YћIqL8gp18UF&,0AHzYlD(IzRBZ4qڟH.:SMรT)w.*X)~?sc3W[j&VZXU@@EbGnܢ֜͑JȨ[{d4VɠV'X8A6zr%# &-B%UʱR5T]t'ΰ))UѧjSܝ1ZI:[`D&УHãk zBAte-״ >TIie9@_Vrj>?]ܬg9..WX Ll[Wk c9,6!ȈYz2a60a>"dAxZ1${jd'߾~VgN#&ʼn(FJ7?%ꪚۯYt#R!ˣL0*EX8Glvln858{BaWF09T֝S;^4aU?F%!Tƞ^tvlXw1ޞ9 G HN).o)|N/?A5NnOIyJx#C!P:I+`1 0驸oM\C9)@x3Al6ظ(Ofmt%gQ Y?zӚF@H p@̄ e(Ԓ 0] 6k왑Pb=u$"r._e¬^'2H 7HC :;}8Dȼ+?ehBzulǴ?ZqjD/lvϰk6*ם-?4mT7pw [Jl#<(b(t!'^$R=gb?Z'^=T߲[Hѥb-G.)%à ZN(]N6{3xj6 gf\ޞP8y뺵 !ԺzqG OD,MF]HeFQU0DXDn t_L>MK'{s~~*xנ*S#6h+$.hѳ/pyX 2M)'fح5Nc^,64#o [3A&{?G)azOFJZ*M*g瀗j{]5-Xw!&D &=*+QmWಣO&D.z$4t3^JҵҵA̫vF֡-i\폪5Bo;IO@<_o6wp[ D^~#8״E0f`nvyfLb[5< suwl`-#VG87@ o4 +lp((p$Qn_3whٖmGWęQ<9ilJ2DK@E4%o)y~ Yp3]sono?Xj5{wIgPs/ThoS%2 *d#QBW cjoeqj)s0^ m^1Q6 ɥ `(9Z Dc PCzBI{.݅X1K@}3fil<غV~7) &ƔC0=T?a:໡+Ω$37ّjDTZ+1B\c n(kByL9,24 9m+Cʼn-pzؓ,qT#QK!'2n>ZۈY :V5 pwEu9iT#BaSѮAz%,鯅<E)tf\_7]ӕV;W2͎C#-U4Qxa*/wTw*D>Z'WZO_S槲#)a9ۑNzٚz-3[1صH < XWs KKfey|>N1% #^U<i)|LϲO},̵U [R;b8芑$Ib;VElwVT`}nr_O;r/\⒆O3@7K:ۇJS.xYG)1cBRN+\Y%?fR|קM]C.Yd>T kkC̓ű]K.)@=(( v*ֲ[zY|,uʗ*K8Κ[ J\Udju @q ؿ5I>LE؜?j?®8 (] hliP+`8rg8f]zô,Y߭GUҧT`w #9(g[(! u8z!pحWb)cFxu7A FGjE5r*lPʠc:O"rRC;8 ٚK"Jui/YGn<1D{n~tޛBN'T~]nQ>>&43Άƒe[ U6)ӊD.ii {Vov,ɄCtjq/1~Sm/| gMhY"mtNjWR빍?{@.k@ɑ8wҵgKj!PNҸ~Ե YQvS@~voǟ̓Zu\?ԗ^Ca[v`A;_6X IbA66cAD 6Ϥ@ܐbDfO Y&Sh̸'%NצǺU1$\iM풇,t6Tox,Јq;:A0LR_,6~.mW"TҸ綧Ԓ*=HDD/wN@H@B@SCz=rq&Nqn=`Z ՈiEit{$;f׼8-H2Ǩ YjT5ܘ##;4`KfvB0څ~qpDz1!KcFrJz ^xq~<'&Ŷ J:|g++[-UAYfuu|bJFċ!& :8A(,ifCf"أhP7EdOΎZvtɫ.Oh6Koblm+EYwDE-6&ojm] < aY'~TmK=oQʣWɤNJOG4FyNq&/ug9&_=UEدw-ԒT+9rNFj&<;)v˺d9fs֯1 ??ηko9C1UF)R-VE&wuN)];3MSsZJOs. ? Tr!F*up!6-| Q!鲐,T26On+mDSɍa֞e;fNy)wSoDki չ( 5TW<6D4d yƒ*A.R#VeZ[R'ëdIC&b%<ۮ3..C,#кI;,hy~ 톳冣@I׮MJC&%&uWNr'4'Tj wTX-~!_?<׉Q tfa0FK"^;jTr.p 3-?JA\&I'mۗrd`BUxEaۙHہB,<<\BZƳd1}c 3qCxҧ0Ô;!k(c-E@s͞D/mÃ)lrk%, N j7Y'ƿЁZ}A0} C\xK'၇SXjͲ\.|.i"طNw.<"1LC+3mlϴ Tk=&W)Ӓ1d}a.۽SLaKDapE163kikܳpz?kMdf DQԕ j3q!+6]u4H J}_f=וOs3 &!WCR!vA:s.A;[OŢxVgcx铪IcA,kEP)eDH$熲G-ESi}_( Gj&luc]AjtvAXTHJ_kĐ q,‡ed,DGK$&QFwEWXm\pR& 'ht2`U5\fΏN,#!#FA1gNmͽINW`ld ֻw`"gyM?Œ"/ dh"_Ze]ec\=rAƕ'dlc}_0QvɊK@9e_ZjuZ\wU׿/Rդw@F䰣)Ɨ.qCIHQzUDY[a٢@V!#wu^zg R2)yt(e+5'hZZ}ihe^06-&V^5=WiNMf& 2=au8sޒL77=1h >o΋a(/)̈fT,{"'ݦ?,ejHj+Zoprðq\XEQ9#qG|QR ? &-@U%Z4Ax(9Mi{x+;ӛu"DdOw8Wo&Z3eW\('بVij1U)uJJt vow&N`{ϓ'DV̝ .mMC@\v uB%%\±}[zc'6v;y)9`2]zud$HQo͑*%t FBl~&E* -f+c0 ͑UacGjڕ~bj>W+q~0~] #: _ (?x)Ʌo+}f!nXd6a F<>`E>`BJK.0YM'hez` 8VK13Tcy1>dÈ<ァE%wfS(MdJ7oe6΀UpCE P8e~?_yM/zڢc7$L/y 4|c{N JO\epZ[q/x"o qlD\3j7bPL/te駒/cR%>@`G5|/S|aּ72/OP!nÁ>5*I3I=C3 NXȾ0U^[ν94}av4g>(FXľixqk㓒`g.hC@ ޿mQHwh97v/88=] ᦗN CR;|Rwq2HD9 z]-SD 1vgj :ϡ%_OչR} Ohn5/WPwJ.p0䗍9]eܱ&[U߾qt \1K5+ |o̘d0秩 |lHW400n"#PyDSkqZ<ΉCh0b޷V(g9Yq})@$8a`F;.|0wJg50l͌HSjo$hV Lpo|rHsO܃~BEYH.@2L؄ eP&+v~Hx)tj( [P)NdFe#ϕ?IRţ̔#=rWKUѹ6. 2&`ybUKꩠ*7G% {\0]ԳKdV-a/]ЗbX%\&Dx7M`LZ(sUg`k B)"j[A+aj[]p:kYcb UDf g^ J!~cV)p76-!A.UxZ5.^}fL̥JY;~Kkʋ`>͉@0NLЈޕS!x ~q'=ǹ+*wu5^S箳*PTa)& ՞>nzV˵{js v6K yN0j5'QN!G^$xAB"$N;Nkuvn58T y.x웑ERD͕ OYж`? bƹ1: 4S)7,KWk1a6eF6 C 8F]4BD$-0ս6)(wX #oTm<3wEK^oƖeO銁 a1Hp}>I@FA9Ӄ{m!IƤa^ԫ(]e<qH9r(Bݝt՟U.)7YgFB`˝RC@bX7pZJE#ɔcnmtH;7.Ivt4\ r$7#_׼?BrP2:uܟF{4Q@sdaMծr:dPR~˪%1R̉;O31;{rû~h3jt 4>xerݻPh~ YM"6X7ñA .{%%%ak 9puŚ7PJ*ºв1t뷉(p0@1UFG9_ne7L^|)jYJ,Ii#iA&Φ\f謞z|o3)\d*l/jկ0utUOnF2pQ\CK!`6ERV+;kNуDjv&m y*2EjԻz1L>ZrN}}sw%?~a6f1bT`u30Xȥscq>?oA,lQe@`YL7[,8ԿQS {GP]1pSILF`b/ 5i m{C6G*ygj;\Yê9kp'^łΟ)X}ko; JEϩ UIe/_[ e 5FxYܬH(Dް]T K)(iuAsNkAdwoJ \~V!:ߏJjF=D)a"c透9RxcƖbXC'.yk4~p`-1PДT6ʶ]-ۍ ͕n*j"$XYEc Y%Lt5Z60T=*/WYY@d Act/l^!7[ns_C"bLVǨ'f`jGf&ʚ 6y?¼9#gn[fr|Q(53'Iu'8OՏ)4L{Oh^ETR%wlcU|k_)֣g 멈"G7v^_ԌrZ!{V5Pt] ^M-goϊ#&:M_"3krL8 .oo2>oh[i %Ԍ oqapg4ҵ73"xY>ڀüQI\{Q)ƠLhB! v5R!+ܿ0g%ury>eɓ;!sP8ġ4*1rrt"u$R<| ¹Gw-u#B|ɫ+J?h`uA&͓1m 'NJY2~m1>;nBƲ@R/& "Av="k}z]8 ҋ[!H`I%_%7&3`8}c!Wx&ymH#i3 ɴN.FOZ{ U58aW=ZLGTjoD`0z 0S+@5_JA'޹?;޸Gy߱4&3f"Ǯ0 .YhZ9`M̀^:lsPB%], u]p%&NOTH2?:q[`dw8hY Swk< 5=[[0҅Ԣ)dժ)Z`W؃JF/H\u!Imt^-jw3I4V"~mF[\ 2j c<>Wy.V!YM;~]8oKzQcL,sG0KaP0i'0<Ŷ@B]0Y]6icȁ>Xo&"*'V.,O|tV;=C[:9' >& Ŀ?cD!"Ch x Hf Z-.?2?'Y9va)zo:|%~BLՄ0a^pBaH'a~W~]ڕ^ϻ  96Y dl)emEꩴIT?vE;uJϸ:Pt-#l,xiO6y Iɼ3iu8wE1y|Jhp)6&P=5So L giEf5 ( S"sOܶ U*A`(ZcVNN^D %^xAR"O8@{χ PN|‰Hh*;-u5ccVd ~']=/辣'T?"uC{wH~~#^;d@JW|/6p']J#X?ZjD1`01&Y0x0$]`Mڡ4mRJgq3h,Q 6FsM(v}Erq2P4c!C=O^'A埝.Iij(ʯb$?LJSVk3|H^SeP>x3Fסc6oD65N[z< J2g 7fkr2~m=ΊKlk)JvaA~;bp#>R |ǘ'fk R"O#Epv6Xduhge]iw! Fpγ:djų|D@|PgLqRBc.cm#csOJ$Eܤb]G, - x lʖE:S n_J)o#XLFB)[|n1arjTTB ZKv|(rOxh]XayXm/W3( 7D"<\*lnp` f/És[iqRNTo 4/2Bsj9~}>MAK2'קlz%y:$x^^F)}q.6X>c}9% iA5i9)湱VKjr ŰFkS Sd)6DR8>&ʧׇ׋.Qw:#lHp[z{CY7= qw"QPGG`EjQ{EŒH/I(.x@v\ª5/L.u:mí%{dJ-wf[feHzؖ;Is^Y&3VZ[)=C #'EUm)9ӥCJ_|'MD x hߢzp> fqܴdN_zl4]ĨDҚI,y飒N?_ZmJ6_݀g{Tr6mTH'WBACoJ)4cQ^xT6r@28餺0BVO/L͜IOWz0TqUpg}U$^h"9zX)}EƖYVCYo?5KG{ͮ" Ffo*P 0'73>@:]ʲusm6iORY4{FܞxQ,[}ۿP#U:_,k-gMv0NďFD&=e?{tpP!\u2HIIWp_ażeu]a[sQ]l~ߥtOCXY3qrt":ai/ Hz!2&hPjS<ͫ685s:CzQzpVre1o&꫊|AMEyT/iޣ$f4bf/`:̲xnm $ o7hYPg{Zh/ 9:s QV| T:Ks)u\XWU!_[ +9#1$6 d(4ydF^ cH'7[3<@2fRfåmm%V;9[omWƶݨlrۓ;#m_EN$ Jݒm}8G lpb݆.iTk~Έ 9UsYwVBA1^~!T'2Ĵl-%6?{u#rˢ:DNr$4Itum,.A`ݼqgxA8&ί)Ӱd XhV"#u갹2 *U5w`R|zW0ra;߇eJ>ϭJ kZo}no<)5Q_f(yxyɯIm |肮XzSrHA$(,'[;7躗:iF0iybحM|=v3`8c{YfO2ţGs Y-hwքy'L1ptJ w b"]?A#B#l`X`~{8/߈^0W U7>ոr{Skyf6ȏ18- Fs&WfR?&NH#i't0݁>q g̢ 'Ӹ]`ܓ; VJus]y&psWUn5]P)K%Xm^gpC4-◣) _n\b:jؗJPqcc:icgeLrHvjdDOtK_cPw&XD3_ 089F4taB|LʩqJ*KXG mLpjn 轩fZ2j"YM}W|>Hס`&Y-ƫC䄨_\̎ y#Z*3XRv9X$Ľ#4 qI|_ow;Ӯ)]DCZe!I/wG#?" JD* (id!dYAᯒ7~῿%]-~pX](ճXN!#6pa԰gvG!ؑfu cxn:ʅ&hr-)He`ӞI+/Fgڊx"A ?Q'gn+J%gFm: fx`noF`s k6Vm|lOp[QhG|+/zG{. UCy, 2oq+0X<IliQvj˫z0PMkNX/f `䀖|xe  FqO6xmyT`BzSV~f:'l ^S41z5s${崾'N[RQ1R{ [y94Ayc1[&|r^ۑC/Y U2r,2`RIof[:BӪ:|,7s.vHu e'?(9-Y(bADI.s %lauŐ?_»Ýo\s3/18H.]|~U386_\X;_jjzU͍ҀgV7B%,;yz/|9ٯ,A`$MGwg1lA4U,3-癗kA+yع`l(TJw!Y_ަ,use,f)9,> |Ъ۹l"XEux_ndٞ`¥ү|&bKq{dNH>5E+\r>? 6S=PzΕEKAǷ=!({4x{i=K aY:'y{$^gߝ{)k+x*=()zʇ)<#fq{`t-<<(A^I9FsaUw,:ufL1gYEA ضKfL쓉b)8[ND%R6;vkle|?Hj0n:[>F֞xE>ƺ鰟g$B y@ ^87 O["xtBt]j vp ;~O ~`6[}*%D鶳Hr)Q&[5\8a`v& "??R m JL {~ ٺ *zcͥBFJV|.^taIcVAMpHnz#>=A*ChǯkLrځژ7 h$ k&= K]kܥ)'K˛OAJ:!Zܛxc> 'H#2uǒ8-Fg0lw lEe-Hj1l$}Ӿō~qY3 x`ʁsPv']}t :ㄣ g^Rv(+bN٣r|,-7LHjRuaf$@Ȗ֩x廼t#{fS$ vn7K(õ_0x܍$R@adfh΃S?/¢uљ%j`~eO p͒@nzy4}Ż;7Tڒ,:zhr0@@xi)K~k[<+9xD`F'2blVȬkWQ"TFiv^G>5EE ,A2}CKO'$ӌ=k^O;@ypzqX9?H -2Cf5U:OA/GSEruc1J = ѭvE+l1;O׍7«IoDY>r /c;:3Hk7# } /=+7^XE e7+-3O Z֟۲f *jf2!zMQW-Èp8tjU2Ynb$]IB{k.i% pvH+ܼ=|{]oU73mKRꞿ7TpO " !S'>o7&-%ZӘT3/zuٛ ~0h7mbȮG$1'UKvJ'-u$<8 s>\NW6-Dn #4M$kڎmdދvqw|]ΠmL xF? [:>gmdIW@^f% +|9s˶'xB8&%Ik@tVW2l3ҐϚB!g} s]RQwT!lLl>WM/3dj4G7i=fp_\yﻟCA%MO$Pҫx0R ݭ0 A11AfsR58gC v-iUyˠY (`4m̒kEVA*}o1:^nq% kΨ+pJx}+$0 Dnw[6Ț)c;Gy2DV> ]|>vx%S4ilIٻLRu@'XIWd@'a>g7ɣ͎A k$c ]{TF)SV+u:Bi)nʞ$[o.ĞC8(2sLFw݌JnPJdr8eɻrUHקnxfW=5T)*Hbwn+aKj%LwqFG&S&’W}'1'e뜘t4(=QxCy0M5>҂PK&dDAEa6`|< ۚ eBl8FGJj4=ZЕp9lB.hGlДt $ !is^cmtL 8,hI~0;A {mz+gH_kT$0ndK6+h5јZ~Wg~GFȆhmԊ8K~oqVfZ?״އG5ӵ&@m-D iDuտ @"MyӿC"k?0am}ߗ領j #z1t\=qD-\Rr Ff!_%I.Q9xI 1N6/4X;!~{R6c/d"QA1\6*KymY4.1JNn_03>z2(v4/YlPh.3r^TW/\uFF Nǥľ! CEz9](8=ET}5,% teY֌8di_ecJWp]hI{8@70׏GVu︇ZMVHR bA3eYA5]u |=֨*Z/|)TQqTuSVa |6 /@pg%)DjúGlc#)plHJYGu$$K-i[PI[ecҭkhK6ZwK{aU.̑ɝP`)|b1+m5~ZJ\KO^ס x&C'}6D mȅv{&NbZ-<nz&ޢ߷tH~@91G1< 2lx{ 3b%h~.Z+ڙW ̟iKˣ2a8#k-׉(`T M"@eG~J "\hYBkҿt϶fU3;%[,6FGXϸOǠW*.a}C3}aqR+6>5?`.u|3~"efII,EDmp=뛌]w !j45|s7mOcmx QѫLc4a7冄<tS;dGS0ˌ>I>OK?'o=)p<H-HC@&̺_RMfWT{l ^ +W&J0Ch< _F'n]b]oPwةɦnx21#t{PwX4Qe,3]1әK:ul19vÍg2" dRJN )LHW-7{e#!&{-}a ih:C[ 1fDvv%\w֮/}/tVi{E]Cx߰d 涣+ܔٸ%젫h!%D0R ͊78iWHW[vPtYod/9onŸg|gpm$ XcԱ,BʺǔMk *Q\Hqn9]Hȇ]ERw$;"s6ٽS~Ň"w( ?O220T~ֺdK}T1[^,6{p28fhZu?!gƠf j]L%MW8\06utӜle  CŇrDZzgRB.)ų =5_Q89&/UWzq.a+Kǟqڊ+fvml (f^)#<nɭ&y6^gI5+(spT7DUGpMЄtۋ)J²>-/?ᆎ*{BPe?9);pBzyX?yM.)eU ; l92twBP潬o=G3u30tQQC&H9'3& @ͥxΛLHy+gB!ٚ5ʅ:l6M,O$Ng - g$Hr(Kd;9 Nx4q7-:Ph4?B9!/QRUnZS6jqVBE&;N/(:k]fS7y0Y)~.Lt_=!Xk6i4-MrmcӷYt]#nuCtK.vV>M(!ǁcu9K G[/N)U$5a;>LEyrMgl/W2<הINFz}۱"}X)Im%6WuSfB(W\EFPd ~o{@y]*ý"[%NxLeLI61 n|0g"V# L@na;/cƊ]@DAX/S:$ TL:pЭO"V#PcDӓ KY#I$Fhz 79JAFzLk/MLdX睯 w0'2e؛Gy:`1Ҏ'iSTd #f}{ Yh`u"ˮ%gH(.5ʼn՗aUdm ߳af;,J/n߼]sarkמg͢Q+!qDUN֠]Bo:2TںVKmmO.b'^ Kqo8f6wf݊q u*2בT"ۼ\)i!rW!"QnA|r7=4JWV'HRӈ# :N*H?^@CJozZ|' $xlJ0$!V֡.gERĩZ OIw3%7pzێnݞf%r<*!;9G .OCy<=̖xfBtA>OEq(Vk(j 8tݭx рAwvؒl n-?1 PG3Jp mv>?jQCv@zl͜bPi!BBM7(l$!DG."t]K:T`'~ZwP=٥\8a6Đ"t4j:$4`!`-W"5eHF1vcwdɼːϮEede h.swY}e;P,h+]ϧATJʊbWc -*DDVfٱ/Fb6=loN.WKa4^Nڣ "zG23sFΌq6oZoz$9y-Dx2,p˺R՘_ٔGeTUEz#d}'hj4=ȼHBҲay&zA$[ r³UIԐpZ<;]}!inh[LbH-|+Kp)+)'Ø UVfhM\6ZQDER0\;K0ϫ$IsmJa󷙺{s Ljt7Jd5dY!9M ONitY //3anN<^4]}z}q,pg2RYj[gMaf@XK)Х~!(z*7H*Rr7l(a+Swt49PqpfDfL C8GGs4ۑVotJA%$HI`a$[k~4l2I U(Qٷ<cd$(RKy$p x.,MP.da^ ((H(2 EF*\ug)"üm_;8{)C ńp4+޾dS@THj6WSR~޵DEp}\`(M)RܼFkʬ:n0(j^M"7sGJ!-j:a兽7IF!m:* I)b)s<_&dR)! =l7OI+:>b&SiYAgO")iXI HE\ß /<&\+(MD4ಊ+-3&dd`.V31wIsi<r-S#cRa -$~дU+,Y}u&ۻt>#."4{uAFI!GSƪ''FYУ ^Aa3>~NI1%щɴfB(3G͹w_9>ޗ$p, \ğ4gsS(Uvyj ;lOmլRC͚}ua.NoQo4WS݈X(,2(v-ʒ#jTAfH@AZE"Oi &ZAö'#bI65[8ۈMp W>b\6SqH_ zu(avmx lnɗnmmpFڼ_p ׌,E2KtڧBޝ뇚U 9[8nV1"MJ.U0hNAzdJBxbYjyыKy0$=xXJ+|ޫ|ȓ-{ձH^e1\ƠdV9h{8[c˂z AP4~ t-"wԯiS=ёw$Sv0h?p3o[y~$.j3G9Cju$Y ,oڢnQ mze4q.=2͇+35u>Un k_ I(]6 [$c[6(opӆ4ָ ʲ$|1cL zVVBIq)-3aNlܬ <*^n\UJ~`{aEwv75=l)4vR˭œ#X(SiZ^݈eVeSr Ƒo剴D$-fkF̌5"`AL"C89(+/y"}TcA[rfZ58<0kGS POpuEr|"Y]ڶ!waBȴK&(?'&&78ڦN#cdo VN'&#7|X xs ,M,N|م&1e%+e>ͩ,pؾ؉xCmYtϏx!5<2۾ @2aW- ~]TOJ>aW3j\iD?P ^Ƴ@uتu3j˾ KUg(07#ۅۈ̆`q"ꊒIy൐r^n)5\`ai.c'uoШo in2%ddi^x( gI #sr)G5zdW5L3rjs_lOԤfW[ĖVAxZ3&J,f"šoJJYt|')7eaP1`/͗*0ثde7>8siƧ)AMK.~%bGvx@vYo2Aeɓu!X<ș)TdJâ$tj~cFOD"AV6LȞM\Ȑ4S:e)'Cwxru͖;mrUhy7ua{xD\zþmdH#kաhNJQya9eIgS})5Z#V!Fj@` :Ve/x~Fu)3җrPxmRNfz)~ QT~$QdX#s:@?AZ!=S_G6#Kl(R'䖄uq 9pfVoP⟛vCIPģ煼k\Q`̛ eF<+/fɺqIV%AnG>,d8ik,~WXWYf%tsNޝ!֒n$oѬSWS (S2,O5)\u[p#^SeX\B0 Z=]%bNza(LUU.ANk1+.0;Z4&R/)٭%tR/b4NH"[|fK9o`KLǥcNsMB1mWUYW˲hf>GE<)?rta|]͋]+|G]oPe !$CH } H:4ve;@et o%_'I3Ŕ L' IJ0* <7.ठxS@$17/WFc匰<ԄdE K6]ܥ]eԡN`zXF%n좯w M7ۏm‹ OrR0IJm_BO]*FyX;hA"ЍC}B_ DTsifAUٍgYKWomY;WK-VGeOqW87o;y5,~I9UpR,Ud2҃EDl3f'w@6?‰וF% cEyQ{c;8ǜD=GVVHOcwG+C- ߤ#F5qND?^v (Tg ްTW"+<r2B\KT= x1M)5cTutQc1\=MhYF^ d>#nx{Mt!iF"䪐^z> djOg9h5Cu="12sf˩9ARNu?Tnt 8fOwJU8?ՍV@I0+OSJ1 #zEkp#n㭈v*ڼb Ì^B(Z!/p}K# qޕLjcub,0پ~P_ ]4&&gCLBA8kw?ńP|2(5~ [Y-mA(EF;5/=(ϸ=99coet*5tpQ`ɁK &m86}hCڷIFhաh# VAZ׼z<1@f]|vo_tȠ"="B=<@އv A@0⤛w]K-N\DSh}=N"#Wutqn\MJ#5Qަ %:RnNtFTN8r#)4!k/ j7@g86dS2x6] Iu[vn:K?b3$<ޚ^˝7؞V|WVQlW ( Ry'}"8hNw, ğق \ޗ/=_GC;-*CWTxw:(Eqgyz6$#ٗf IsXy--$As|Qtc Ȣ3'DrM Vi ɸw13;%~#Ѫ\%!Q׌R Jskx0{?S+"Uf+68a%(趠b?6tLTϝnÉ\$ݦ7vG?ʕ[㤗vd+W6o;b>VKT";W@۽ K~]D**( L\q1gv\mǠ+pSW/DD),nO(Oqw.[z?FMP p`ռ|]~6@Dԋ cP`f5R6.hfg¯Mʙ…3PHk+>/}͕׊U]T|mn/O0.RzC) (o(nrRMz %z7O?3Z}N9ؙ9\Cjy߶ r0&倭{ ԅu V隖m !HN p9^Q("Qޓ$v^_7.Dw,kaܥTyFnBjDl ˄*n?hSW:Ϊ"$ l}߼fwk9eozоV#>[{<9^BWdNܺ%c079mUp}=M<_Vl]|~"lM@:=CbNzocTnN跣Hp~a&2blhozK b ^'GI55(l4G9mG!YAі iE[{Y[+gesg :A&C>4h)FWկp:=صtD?o@n2Hҡ\MЪ{ 05XZS2G FGip'I X;PaQjwA0xH9bW8lcb|?Io{hs/d+G3"2m4$tgj[4[ӳ(j*=XVtNr-WTm'i='&M6l!`-a)`RcieP%\^LPn #B)/dU aNmC6]eur-7t9U首rCҁ (u>ƺs/̾%SXXg -:0.ڥ.{MC %{E+ 7FA"4=i.adk*Ti<~ s.gR&ҙYĬWy,N0ajN8I;`4xNc"!yf_5gJ[ OHy,b ^300U./Q79cSdC^d7s^(jĕн$Tn݈}~3 @͒zApS}Y<Q_bT÷Aی20 !΄b*1Dq+ H/d-ĨӺ^m>> u.R9-MQm?Y;t`ϴ4dz6c>/`\O%J5yWݳ쾲ރrcXImaJldJ|} yZ1T8}?m'BO~QuGH%>]@"Q׹K]/^xc[) ?䖱cnv$ WI҇,T%Omqi _\-DI,3+9x?LIRDDҀ7y ^_|v+xҎeMwIP0dc@͘6(bR?m +lŵQȡ^l,3d\:Ճ]Պa~R\:!?▌*h+*хo2}vf`T/ Vtlsvt(O<@=өX ֧ΑTBGSgn3 ;AB!B6& @8ط= V4iyAđSL6hK:%U?Ҟea=3d<`a|?ڿ;y}\u%#!ﲟ1aDս׍,%y\H$9)9s m_rac3Tك8WiůP%2týaDC\1ݦW/ʩdchbj~j0]x>) 7`_GරT$(53 A۝EC>m ^fob ls jR~SpX vnhEETτ\O `RC/{J\X)s37vб8ʝtm77|K0 Hٺs8Еnde[)EeOڞzo9hHuٹ,ORgN0#f p-B.kqW*C;-$И&Iu`! +F ! oFx*PG V"4yJi[6"]]y{Ԃ57 aSpZM`Ze#0֌CĢN繜t⭾K_nB8klVs~d|&J7hvjOWJv9!vQ"W'#6B2-/ϾS+\fGRIme[OQұNR2>eIKyu #3[1~^/S9|c/hZHh(0~u:ݕQpG.D=no*m.0 $ݬLc$XU7fwR /cOvӧ~A¬DUR}}Qy`i*lhm0p yoeRwrJZn|m=uk5ҭh֊Ez \}lC ۴A]P4khrH(b!)^d-SQVM[!~D/, j6ydZ0q]ߎ!mٿK.\$'P䴸jW6j&}$e.LnI 9~;YՎ, Jtjs *?9wÂ7@ѕܹhXњ9GB+#q8M~D^7K;'o}PEA_InfHNo. _iw貳k뗭=dd>R녯PV19w&j|~pIDc>vV;@ZQg7=PLĵ G)IloKMU)0BWՕ~~5Guj3mqB*xwDHִXdF ';?ـrOAT+0#Zah$] rĀ@@_u"rV (z1'NoTefgtث䬋N^>R<9P?M|4e/u}ly[3CfVXcΩm vRM*ut6}x[P]y xWfxi"OC݃fIuNR>MTfkO` $}Ƣ.$K'o;vbDRrU$#S%ᶂ>/2`ٮhrHNwc3ٲlPIćY,L YdHS܏Ljy(:0a c|ƍdF܋ ՝gIwLJP;=Gϭ DIZK#8n[,Мrm<!7%Y$P2@'޻HmZl xнR`mhi, +=6HHۭ6Mi#dA0BoϢ}hLWp%.+| <8F <_G,6sۮ oY ߂VNӑ ?^ۏ7|.-QHu&k+{L{ou*D<{'2]9a_$bUW|i[KNVdž0a)ziU |Ή8ho2vͬ(nPVZwj/gf@ʹ"5="i2sd(;XQ=uQƦ\Xeu}EJ)7$nUCNpot"|ƍAZ`雌 G8 Nx+/`Tg·dEFu?-l$0и{!QZ>rC(iXV?YF?s2+iE24XF##OoPbK5iR \τyGLtҡHT߆Mx.;|:g+.DaN'ha̕5F(O[j^z,MkփTwzoSJY6IyF$ ඄NU{Ccdu 0fӠ4Z[?a2%D?`ڒ o=z']e".h!Qҕwڤ0r6\ʤкVS0 ;SΣ^6+6ˀRm& D; g3ut"䬱F:sɟ"t:m.8vPit)`")7$T#K@hqMMG@44a) z[{WS~>*z|PpU$\,^[w7$c&5 9`Ն\5 Qh:3-{7}*Y*Y i$vxKmN3Qw},6k[t`E܇0u(K1' (C 2Ɂ $oSr)n|)MC-hUF s 02Jwڦ[6X(p&Q Fufr}3RMUpoF)mYltjWZw7,B]ޜ(v#MB𕴇RFq=E93:ge'oTٞ$,B_7ơ˭HexR#1%gp>I'P(@~PQ(rpȏ~b @öc:sOq777e`g1s039m/c] S|{;>]u^RHݔHd:d6] SkH̛A@DVYv֓nF΢1x?Aџw֬B_uYgx&䄯@[ǁw p)Z'vv?qK#tS$Df~1Coϭyҍf)_i߄i$&}&5ir0'a *f,Zm~.Thaf8Uwد-h!Pe$l} {GY( 'y d9u 9X=yxblTqKNx 8ׅ1 n-f*j*. iFgBr)%"ܶ {V "!aKmܳ_ ů0JuP,%Ȳl4'N;jc~ՆҀcJ"~+idrñΈː(3-+4qR:_Cƀh+d*yM٩=c!˯y;t2`?ϡY3,Ȍg:y X%M,sS ,u4/S6[J>򡏈 Twd8&y9F*@&MKCX 8taq*+EY.z+ֈi ӟe-6bmQL}!`wTѓ3Cn~nOe%KGyӮRH[8Ȓ0Ⱥ[4b uG|}K"i]fvxG_(oy`SB/؃]m'IZ^1Y|E۾t]S W 翝iadD^ea61eO?L&\H@o-"~DO1:lqs!voM3;mZSX-5]XmH7G;j |.K=Jlu )Ԉ-{|zh#ǥW477yvw DmDԪẌ́N'(Q>?4Q#f*b2hH7%m |2guu'^ڋw^J94z.;0ZZEW8A]gߋ.;Vp}\ZZqb >'PPAw2=v}O;[ _ mڠd:M5X5u;ݳz;~[<@4K>G$qȾ^U]oNSh $`Xo9nV&`>ɉb< ~bT7+CDb (I蕬2#^0F$Ymi`\QѥuGC5=*ɲ>m*D, {,㟷affq q>yя")g#-Y#b^QI 0VLFQG͈t 0Pb`DZM]ڔls1& CG}g$hns8iNVC<ٍ^2qq؇;45d.u4 W/ <Ov `) g!Զ| p'=8׳V "]k=X_U ɜ/(wH&̲ :( }]0h\4 <Pi15s1 a اtv"<.7wi {:/%̉ ~C҅f5qx3W{4R*ŨLOILv†+m6 U&F:@LTԪHw_(ǹa3bn':a~r &Y l`0F <1ڳ3 e=ڭ4bwpl$-]S~3cEKeҜ {"N4@ɮ+2`?J)C.p~=6 B5!Zؓ-3NB玠Cs!j5_i$Ϫ satXbIlY3qT8bol4LH{0`ׂH1d̦󇂟ߡ=1؊&Iym|2 G%EoȏBY%dů 1Ayva3pn^SPa'6k}{%TПX7!ޑ])K \KWz n( NlzR38x1w}@h>jA E;Ny6]P>#F>&bc*a=~;EYh3.-*6ﴀ\0,4utg 1: <*sMyUڟD\cG4d$nhA7D?npqOuC X4^ (D^7rr n5i`<(t|K-ةz`B@? ugQE G}F;:%2!&=~Mɑ " ÷FgϰIsx63]/7+m1 3㝐"/ʘ#iMڕ(V|R65Ó`b$`-E9 p@gxyCw@W&4Y}!g%o߹}"oyzpI s N,?oF J^Bw ]52h7!ĬʦK:`kyGb^̥ʼn{;!*%[y[OT;zYK,/HsPRyD11GO%+Oy]eI}VP4IXNj&\U@t Fg/KK$|B>F#eD B͗q+ƝR!^x)9c_rE}ث7m,_ϟ01!p n_48Aӈݫr+m^',oEK다-!/@fW}&Ѱq{ہgo]Ύ.j]՝u0NGbkF넧q9Cp=L) #9o=mDf>2CԆPÀ^sE]>3;Jꬪ(gBcAM:jN^A1굍i [w6MwZv6Va-,K{/ievLu2SZz/ x cEhߕK՝Ў>@MeUg~ZQ٬EYv6 ImӫCnj)w>/+N`1Py LW#I rM.Ev1M[@9<6$Y^{GfB@K(ͩ>3h;]-(7:NZF\J uW%/Mh\kWT*r %>?Zwj,lziAzhaI^ΏG[b3jf;Yxf kT~AKjdM꽬g>%iGxu{:(Ze=,Au'$K]QQ->aJXϩR33oݮҐȉhXh8&ӎ3U ߆1gUMIF$~63nө VE)G?[s vt qOFH,K )hξh^ 'RUSj_+iX71)M-ɞ;f]rKbC0VtKǏv4KK_hbHm)5ewM#a.0ȫ.B bh+sRe2`tbCP#+e"r`T;mMnAmB ѷp՝DWD#-f? Z:=]^?ͫE4ԝq n5?׬%?mT;qo*V"x!Qam^T`i$tq槒V2&EʓnJP9of\+&9V`(E~x8iͼ}o"ު)_|cs=OGcDb9ZbbT,zV]!l͜[B{c5.K!yP |b^_W1;HP&YB{%`hT\]mP/˘Лk%xBP>c+aLяS\2.#ݸ b.+E :k{p?° cvOϓh&f,alVPg vX#|Q_ej`7tjP%kщPMI_2Ld䵬֚4z:U :҆1hmhk@ |C@{H\ g wM" }d0S-$Z(7ֆt7RB엉|[EW+\c"h=✋U' ?2:4fBP7̀zX>B(o8DxssT|qvտFp8Y8о6,Y2L~&.)aS+WI?TL%QΌcCnqr!- q18D-zÖ1`fCpk>~2x7ݍ*p @1pmq oBx#1 uH/n=3h[jY®09)Y0jW'u9Q 6q/;kd5!_A_73Zcqaa ȋs5\惠a3Cjƾlt{RZ̛OOeɮVΣ[݈bW:G4T; \2>n*QK-V|<5w]K"Z,Rd^z4vY@BF1b>b 1=û{6rG1ck"}#e1.| bFɵnkpq={پxⴾGF[Oۧ&" E?6,aedvjJ| ڷHòGV *`3yc9pR*]Gk4x sC'͜SƚY͠So9GiP_%e"khk3t )nwkEH+z )=lO33!M0-"!|Dflhf}Z}MimҍaاcU]Qݡo7m*ȍESu?L+MTB7m\CN9QUd_o&t4J?u }} 7g$L:'8>fϱvve8y-lJ&Y>cNuKGe+{ y6\%h s,t7 Ru"?}%ظCqN)š_2slS:&yoR{ 翚\C]BsF$L_DL ޝkXw.g%q6 {`#pTDHEJZzGi9c;DVu>kAg!Lo͡ tF@r͕Yx+ 3W/s $SSv>< @C-Kպ]L'Aʰ'eFiOl8 mjćs㻦pog6Pmaha`I͛<&&Nao(Z2@qЦp(0_n{W}"S8{4 цp|ݝM,x#X$H %Y^_$T]8(c{Lz5:9$4=&󝎍xLyP${ }`V^YBe"y|T W5zś±,㝣[]I00Vn:/SUCi+]Z.x[z1`` ^F3w@c B[ ;/vCsSmӝKSl$xl;jyDpm0eEq6cTX߷N6%P#^N_} QS( Wlj]F[@?V LQOCGuͨ@~׾b0+%0sQu+@|8gG8,+.(;,K݆@ IATNYwl>V;кcI{b--E:GRP G![ EtKp9 ?KWլ?7zu1֦DzjvT3t &W]g`Ƚ& B6|Ҙ-f]*s<ւjTh#6ho~5xLcyzH;RIyM8Ou˖wjco2G5_,6f~K}.'Ⱥ H N’Vx0S-{řoP?rOɑs֑Tsŝؑ4iWi_Yxc_)cۃ$9:t$fP6akpgKxrǕh0O!°Cߠ_ #C]qE .-KDLpAd\7^AjƢ1NqƃKU qP -xV'2US1܃>(zsϏ@o69uUF߃ۯ>C8!]!NF:i51@ܳwfBu48 sD[ff>.v̫c] {c-}"OMvW]3VճQ6W9= 7{Z QO-Qm-OT!}7߇"?iazr]l|-i´gGKRS,s˱R6GeןjzJ9ZLK @hd}+O5iOޏԦ?J.d%Ƴx(ܸ] &n"@Hcˤ$K c\>+4Iw,+ngh` ŷk:xŽ/V ~6IщHf$!E(6p`BvoO@hƱEz~b9 ѕvG2( YG kIϛ 2(&M2xLXj fޑe4e"22:r؂f:~T脌BDYRVѬF{Ts>MJ9|MˍǝmR*ogvy:p4YUm"ݱuio #4`c(#x<eh_4tG+ê(+UO.8dFS7ISw܏nȢ.NCꎡov'gImﰴ/ _fYp`,uߖ9UQ+Тzsz,KI|@xbnH=K qFaZoT_m)v~R[\eTl-iJSs K#LK>g@{U&:TֈG42hzw,m]!#d)WUUeb<C)K@+ę"eSlx1;ڂ.`ӣ;+7RrCcDMdX^pcRw7ܭQlj@pKe;ߨ?,Ya\JEz2V"_R n^2&* >FW5 &A-2:~8&Q6D_p06"wD.Ðzz ]17w>FŜEw8h;,->. 3uH Pl'P?B*XrzǮ9y?c%HOVP QAyH{V}jbzMd,4@E!.p AA{e_o}]}zl30qDg,R8o3M[ nv姈n-VAubK;U)LY0y5 =6*oq\Ep/eCq|x7dǖ[]b@q{'>,v 8 aw ӅfGS sjk\%ޚs _#*8f˴pi0S*\Sa/> X]ׇ' &#&oqNmllGEKX3:9tFg9Z I+C7-5A.OkZ]ih*S+W'y3d %Y]F>`t~n;Ĭpl`9WΠ$~(mN%*A,؂ _v[W|пۂ voT`Uz% ݵu=bΞ[.jurSy9N h'girEZVdȖ[3vNy 5)1;OU#5f@ 5B}aӽ*iFkܐj:P#ƯJ".8B 6B,=_[N$UZ`lyV2pu=p^ ^{b鐒f_F_ƵXq:3Q \q҄U&y:$nXB%\8pcc{3ÂeP*Twfs 8c7=Gh=W9{#z"lК~o˥wy>xV:gn+Gq0:1GsN!E-@WvRpK]gn> |Rrغ{%Dd^ ;i)LdCq͉e起o4J_5sAcZHLՅ.5OK)vVb| OJC^-$Ԥ>!]#N&Nt'4,:wi;5#'iwR{k\+ERdܞD'͡ |rc)@6m&I2q7,8?3^`WHOz"Ը`ǿOM8GZW?ć n(=wb=>: x] 鉫\֮i)o&" 6;q;1VøzK;,K:# Ǫ4AZkW6$tTvIRÚ.HR$l\A+#f7)&<~%+85\ĀSS5\H="Y]NvVsR"Wlloٯa9 bmX][A*>Bw%x03QBjw2Nk"Uy+tљNQ_),)l<3otO{yC]x)zӑ] UҦ,SٲQ/4/g;bwdtP]SSxV>UsjI18Bnq(icޙ=ծ&9SC|-٭33J/{@v6iX,E0jHHq \+:B{6mΰs6)5ZJ%OpepZ+zb,11BnSm>+~%yOp4EL!5x^RIm4`e `>6j S"䘲0Ii&YjnJsOziPQ1Ss>jlV "+ ܢ{ذ ^-/lB|2 ]B_T^ Vռr:R~D i"%_6 kcʞC-beyIЦQhAƎ.021t7G5wxe/DjY6vQX':aXyY+ELh9@.~}VU{Qq2hZ=a1/7Rʞð$[mi"RgJv>^V4ӕW'ң_:5kn~__h 6Ft5G&kBgagYXr( EzPҟ1H7RI6Ԯ9h4IJ1uz:బȘ _h%E5`AxYmPSZ >VT6wY G՝c++< E/vU4; R)JdT+WUWeGxQC㘍[h6QM < Ϡ HM1P`<.f酏U~IC%-iF|F|X'Gt)Ո㎹tAo5J|um+ŤPO{2M0):U {Sz4rbXppY9puSʞ֓{,&F`ErEPki[ʌ[/Sכ7ǹ"qڄP^}( ֦mL4~>n,qB.|" FlsCJ*vNQ 'g/(]XSh}P'$IRc-q g-jFz@_8,ά6;g@?pAu`y0pMJL *JVKD7"<م!9 a7=;Cx\T0:й?e *jb#;_vJ )|[KU17:cڪDS Je©+ߐ| )i1͢@jq}^%hFu+6mЭtT#}+OyJ|*mTt&{@ȓA,WdĖC[pЏ*'r[(>3gh( H// Ͻ,DWEri8YVTf༃"[ZŪ\-ĢNhm}OϘ/WB·u!OV<%mF/{:vyPY&DXky!0;Cj7Ȭ[?`,8hVWfp(t(յ%Bpұ["+ G0hB`>h%6BX^n|Ò\ s`Eeփ=l}׌6_>(VPnٍ_}+ª:hj crBf A"Yeq3rd<m6 QYQpy#5-e^g\Eqv/WjeJf>a(uKJ!ruE^0 W#s;@u;EjڣPEH` g@&ݷUgRf>7?2B(:,Td̂f W갃qTGo3%c=\l9-r ?5:k_aťb yo{[v(1$| 5NG},&k^}Hݙ8:M*n2+$,7S̐T`}'Cm VrtEzfd,Y^dmE8jvTq1ȧ%y虖yu &w-2OSem_TXO#% P11QդdU|OU*pB#=:p6ըr6ؘF^Uw}~aXlq7wp(MZL#mO#s ?fu:ZX<S|~tk|G/J\*# ]+J4@/~c|ZR^{嬪qN*Y/xc7|REYLxo[k {5Uu|mòP~\SQ…gOu3)vN P8V蓒|vH >GƪM^!5h=9|64 kGcvn@6<%p W;xH ϰ:y`- 1u{Tָ'Z|4?=5X=h1~ov15^䚐jߢjgɻHKW 5cLQ^ j=K _r ,(!Y!$tS`0Ma l+k7'Xw6|^KnO_IX4Ad͍͏DZw'%kKMTs{v*|g,}Z[*@  z}`Y =\ڸlkS ҁ]1drg&0Yv2cWB1[3xZ! *zmP52ωƹ0w#30$[qLOی:\)X<8"!r  57v6!NB>uUS,wS\Ux.mJ'2Vв۽&ɦwY8:g.aiiGoeJڥ;/8S0m&3ZϚٵq-BAً4Ml(eC)p]ɟBmfjRG|O˛Q2(N]-eo쫿4cCۈyN)VOvw0/aoM %}>(!F, %#?>i=S1#tTWィl X I`U.NbknA]7v^#GN^ěIURtq85S1]TzHsGx+ }≾FAO$ {+ta-\8LǦ+ﭾɌQiF1:J#5z8N_"X[KlQ)9v&?r-5MH0ܧD6)71 tSγ+# ]#b-&sH5M3 ^B"g~p$<!Gt`I8dz!(Y̎-[qR8R>#@eHȚeHjza2MW߲<;\#v$x% -@ƣ.%lƖѭ7$$({6IgVIXi ̨'/7A!oϤ Jo L8̎ߞq6Tޒr0Ӥ KqH!0춴2+S1u!ZvZ ~Vé!pq @;ULyϳ,/lUol-@n/c!YsՅSŠ-qGl \WA1г aBk[ӫ)+f~etE"N\6!w!my'YgSQIsݴ`x\K׍ (ŏCn(pOP?mjaVA@7ː4镟9խrPA nP!_j÷/'Ct +Q?z\ 7,BcL&T!)ЮpLO&nR9s HTUy_cOORc*_Kdؔ%.9I?!LGJdSB {GcoBeAU{=4LƫAɓ@%#Ӓf Yd@{nXd,rA*i/}KC&.U7J~Pj &6:%v|H]M xq ?Ok`# \ Y|E(J"3'…v$l ԤǏQ C8h,ӹHJE8刲=6$㈻S.__ԃn/y BLF5(oQGt]lQ]ڤPS|uۖ-X1nɇHƥ\ڡ1MGQ|ˌ4zlk3fG CNBr7};`j-P~d,r^j)Ǐ|7`珺e()P>$;SAS6o{SQ#FYӲg}&s1<'A\7-x0Ϗ^&n~CHɗb0pE` y/ꕜy(f\V -wicS2JLRΔn':8 0Gkw&5}R=0`Z(d߳ՄfΡk{ԺKs0*طLHڤ^$6'㦷gm}ffM Ae<\oU执ĎˆU{ػϔ΋ɞ$$_In뎤v[Y <|VŲbɝQ I4'i/jZ)HN^DZ3[nm2, !Agg>NcBS[A S?Yt))M `S(ChѲ$HC'$d8/\MGXdU ۍgxmҼ79WhːͦY _W_l !PC6z$?E')T, m]ktw>6 c5C5k-Z5 Y=nU;=` E?z`CF2VcÀV&GQ;M.0?'#Mt娀Ȭ&`O%}K?)>pz2@Z& T2Jj8Qc;@=gՅt^Q'-_<ИYFlҰ+<6pU?-ۛ6tpr˛jd Yb͉&B>P!!@P@҅_U*rJ#!/UB~.d `/rc{>͙MK{7'l}?m}^^ &^{xϰkynQ>L ,\ KóP$Ulohҥ:m3RTb} W='o_U>Y]mťRãMTN&P )ńg{nO=HE!aP9M_.ckrEpna>n J| L󨕓,UWZ5^{~h%AcH4q߭4a+ݛ$΃`0<4?^Fc1.dR"@#3$Yۑg8l`K˕YW,{}w*WloVIg#35 4U!ӉꈰT QL)Zc(U?+k) vѨx5Q.N]GPFO2n5j/#:W9 h=4a#u ?P?hBWXQԞIQ=euk4o zZѯ& ωXmyh`Ur{ 4)l9Kmf1 ;}a5l휪^|8h^&D5&LGB&)W& CE, f `Ң@;L\?IMJX@o{;C?]Th=m=[>3+{Hyk _{+z߿w!@h!$ÖrI[M (r+-|`Xk:5Zq^еV8 f y)' * NȃLU yBwr 陵,F#cϮG @IO']nGzc9WFKO=\ː/ 5TQVw7X[Na:Iau;%a7KTui WUS }eK΀=?mWYL!}Y!?9׽WHHvá+(SƬ U FK/!߿ Fg G--sٹARDZ/2E=ʝ0y;MngcGf`EB[fΣ̞q—vM-.v{HfLT%^OQ[c@ҕ9ŋfү~&-)9fC=z p Z+8:k!5A! [C m]vtаy> ,m{ OocYV|>f,|,ԖV@p*ND8(娢x ZmyvAcĵz抗BkY5~jo[h+NʃI8UY@`v`>cetIGS\+K`c,<49ůW_YA=qM:Akgoo [6~ҰKONQ=g2FTe#es,JO5`S֏Dm {eÅǘlD7ˎEe+jp aX=ɬ1'"r }FؕU*.Iq^h3$gj Zis7QDL?*(E3 .Mqng6$f'. 鈚1\-i#FGTh]F"RlNZO??DŐV!͊(y&Y3$2@ xCӨV PZ@(ոڋABk0ֆ}6VQHRR%6IC0⸪깆k+Y=L:g_#> E9jv}! d4<ҿ!M+"; b+$vфd[7Y3wBWS|I^Ĕ ݄GFmݹ ? 0fp/1{FੁRbqm`*#77\ _KKpGߟs!v` *h=Esr C^OĠCf"FԕϠzsf eg0O=MѦLeGI?D)]+ yw|ֵ)vљ.R@V6U8l3S)sX_Oe !2b(QCaBC] Q>zB=*:;cKN曶iԈFM r)B_%f1-ѰH>yxg@ȳmIo>^(RЛ/jX $9!5cIwKhL͈b Ǻ͉c@8?&r9.0]|\xݣIٰn ;ZW%B(UG 7Dv^I!feJMU-5Nu@ m#GlxyINJHt@:e3GKսέ:-j3R,R0ė+~kT75ӈ5.Y#r9·Ѐ`yTr`f0 1222l%[ w(É} %I+Jaw'S@pu遑Yn=_:{'Cr_M B\ݦr0Q\c˾z0Hh@k3e˼r6 Fˬ9-%hw}؋`4*I?ة|+Y4F4X4fMtB&I`n-%42 >F0nY+ɆIcq:)MctOm8|bٷ:юIgDGcZ?ja.j~zށǓ#tOiF_V><` (*v=3E%U:VD2w rcJrIy#Z+"i;Or\5I'ZʡaC ^U?ӚGR nztV>tR \Sf^]2_$G=wnVhg`^q"{s3_Iw!vL#nU努(־=V:\_=gr2n/Zfyt!*̌6U X#ٺX.'˜U}}JS /U F.+%NʊLݨZft|g\)tNDR7rRFm郛k?6w荸!`e=n\I|Z= DZ/ RfD r"@JDH\+AG4\݂{z{c&-Af l`=t[MMv;Q].0{x,Lq:n ߈q34pE a3}Ǣմ#=ZYcw9"ܙ?Zu׿m7ɅӑMuڙ畖զt#NGM6 0ٴb,vy23l2b5%Obw1aE'tnݡc?MNf>9?g{S*E++e;+V,܂p|;A8z5bF+q5 d!ҹ<I$z6 y+?ڊs;$Y8Xؑ^r~k`=[z"Rl pN4R%,) v} poˁ=dO7Rnu94THx@GedhR-vk4/jz^? %.ܲg%B( ([Pb*ri wg ⍧r}@gQ5򦻱 :ʭ\v/#!%_\yBlgL.n3|~3OCM0S0 Ϝ&faDDP0 5ztU )j 2[Hdl ̵ #"w+}7x 'i!*2T~ \sۮpL'DK($Xi`CKP##Q w%;0r\m1|$x $@vA>;D;3Vt@Lťκ(we{گ( R u*?sES4949XJLuSO7{{>o=$U`܄-N)c蘁 f^W\M~GW ^m=Ӊe%{6 d)4vޭlVqiwpe ߳F$DƑ0T^N _9 }>Yz6h\c#! JL֋O-cvIvX J|fNiArBZu`5"iXs9d4 ]ڠ_~ye`Azv%A /WD[-0&3;?vHN%KI m-ɮYP\$N;mZ!吼} }Op;"^ծ$+777+b5!g&v IqI7vA`[uϞK}{<1TҨЎ% J4NPo!ڣ^& %unJع:kКZ VcˡF+N XO$LmxS]X>gs}=Q$ k.wgӨպ|[ݴxEx3ݬ.n;SŮYB&pe^CPI_q S,oPdfгsdo$~fw{TK~/`e1[jbe*/tvѡk@CECyV!'B>Pz[w\%z$IEllUVBGDh]U35.~tvV=LŷubS.Vc Z8/ɫ´lbZ,f6rq4ՓEV ^2:Ҕ }ʃ8o5زe)ӎYy 0٢V46,]]GE$jxm=M[Yw5..NK& ᤟z25Ld@_~DݐT O`kA7R/gw 'ˣXsy H !ZQ}֦+BRMvk{O(xզ c}K*ۉ])jnAHҥF_;`+Q$ڗ{q4p@̜cuIO n_$BN7ת??fdlD,͓o;hf"T^o^ppIh;e4#ҾLϧW7Y\}GĽՉ7^\j,o9K.hQ]ݶ3V b-R1)R[jolݒX{hw&yX%h#O?B55^)R-0<`Njzϰs_D[ bǻ*AzώhGWuAG@D˜BGݚXkdtK\qk~B CI M."?,NnWC䡹aq9ޡ"Z+ƩLEԂFa6^&d!n.cC)[۹㲞 aXA\)Ćzqp[[iP Š"{hh pZ&ȘqeTh~DM&|QOmɏ·$x\+`P^Dn,l V_]'{&75yGu$R+"rwx=e^"NA}ǑezLSģ٩EjfS .9=h> bBL_ez)/FWiv_UbZݼmP_hFpBzf0\.%*99#F <5yT㪅(aW: q(ӻŅ!놾 VnѶ~NJ ,Ā&6CSLVNOᨵ3;UlmutLuArTBuNǓ~E70!#۲h UmAJlO ; lʌF3yX[޳=땞v2c&D9X0hKo\ImˡPl7{qL ]l;!NXgeW=].Qn.KVڦf'*[6)~^) tkaj,+kJ WD-F\D{=`R~jrcj,y$z]S,lYɎ};2IIȰ).M ʰfRZӉ^"{D`tP"6n_]4Hώإ6`51 GC-,xӕ8ƈc3]c 0MVC5u}~<=1/D5t-ȉMpݷRz5J&K5Z.#3J H-r!-OJ z.hb5B(f%Os~XUw.X[jwC ,q5ge;m"BZATQdi+n@Q!+:O UVM.zd,&WtqAa Ɉ,;wEk*̌b?i@|od4@RE(Օ  CʮxҗU$\̰œ /b󡦓R 0 H ilxK4O C$OPډ>`@5LHEJϷA$R #)Ӳ|Q=6~ ([H,dŭ ۢ╃a8S JA1)"" grc9r:ߪ;,Tۋ -q7 gz?]$o=lu\| \XT ʬXтTPd @ڎD"c;Fmތ/iw"zO;ϝUAa<-7M*:w`=ֿ2%T%TOw4a<\wA7x<unr}uf* yDj3ձ0<~>|m0b[\$/ibuwO'fX:a}C~sȍĠL+J>رZoi͕r:)ZK7wjPm8NCW~$,cZ=Wגհ{ [),٪yz3p8OUmߘd$~&&8="4zX$cS = {>SFe:A̤9S -Vz\fz$-Nb]:!_;ПPkz5HI!Ic 6Kvh^-̗L:>aL-1#C^DA+`ggqQWa1\|P-;;9O1Zo.8I۷l'FY9AL(mVaܣ,ݡ}l";OnH K.:=s#Ӧ@#j_&]kHgxw]Ph;mv?mfiHEy lL>Z:dDV?xJC?" UB#$ҀR\-qYG3enlB<(`Y2<.rwX9H8_sTrV_~ߋZ/Ȝ i& |{w5Z?8U|. oOTT?YCʶA;K38ɚ^ \LuM4g8jU+a5;g.XnR7~NPX4أ&N3OuC#Y N_ܯo3 bX oi_=ēR* XL?.wZ8b@ b*ҟ_N7\'2qQ^u[Xh<#ֆC*qdɿ90S5+jGp١KR&ܴF}= -SQ:yv{RoҁcҒ9$giW>ܘ ЕЌSJyua 1xGP>r&D*Bwn\}ruoRo'b;,ht>葰rxJB=YA z:-W\y/ bHr;#dɉ$8dQ`ాJ-el Whl@%<{ >Ѻv\AV#kK:l7:ϺK~Xٷb#Ʃqm0+6J ؚz,M8*h$TAe$! ,~ ƚFZ f\]i+mgASt|gsHgñF\09Z/T˽h ` 3%.*@iS>Tlg0^pn<gQ ^\ ~@x}FDbugq83dEn~[šC#`^CtmaӫW @!<~e_T(?([PؼO!ufV9(dN5RqAN nyz%\P&0|%W}snk7A@4Ԫ*H-ArB\3wknό/0Jxa&}L(yN~hPy oz77+qSm¹ by{1^="**2UX 渎:H U$xnYl Zƿ _1])l8v>q̔NOCwMqE#nƘTVo, 7Mao@r :q0';lg`ei9QöجX{?Dtqfv[ste%Guw2~>p&N`߷}W3U-U^Ϧ_Sd\ O3c l"M^ +IbA &Ы@orYNTVp 7rD 4__Õ- %%5 鲎Uk;p%=A1E)Q,x[UɜZa,p*{rmn|:nUxRuyt9cHz]-A?6oTB [,Evelp8tYKufߢ ׆4_h5xkfvHvSPWAf-x1*& ,Em ?;al`Tl/YjjG c2Kf>z!\G*3!nÿJ1lV2xxSgR`9s҄ausV%7BrJ1Cb>P[DIiL Tj`#Q4}5͊bv: X&&E{znPSn~婹$V44`X 'fЍ&8}!"QS5BOH'pA}a~wտ {E7gnDOc\/gfm܄r-7}NoΑ>/;Xsny{o XLDN$bH ؆YmQc윌}JsqƟIߓƋF!T|g79KX B۟FjNvj`,YKFGU2zI&!Z[`|~YS dm؞kk}u#{F2Mu DzONZ,ؔZ&l(8^XJs9wiOn6Ni=k^?>pNjO4R:l--~x(`t ŜƕU{9 }fXfLv`؀Lڢ3it/y2Y\sƝTd~[9aQ;tNs+8L 6M#V?UCZaXdh^g@u}D HAU| ŭ:]AbiO+FY6Ȇ}|v%Pb ]J9esJf%gr vk'ɫꄮe(yĴl[3DhZ\T<)u*s,z$JL:[TDۈ$㖼jW9 f{ZJw+BJ6Tܨ(ɾHM ]$vgӸOV}]IR '̳P5HO:2cƶMJIOoHCe)b3Wҽ:+t%83⣇VkVP<R>)oKڏ,ۛRm;k_wŬpļ[$J&vVYXv5vrjd4$rX_kv\4ޠ;*r\<.r,Wz*HZ|?#] CL@qd){gXJ\^&7CeQZ+ (^ߤ̑ ku+ O}CINƃDZ$8SP=dM?]aI VF5Scވd,,պO|U)j\N8[%:OFN$/0J%+zgv*{ KO0 (LbObՊˠT ]נ隠 ae:>P1 -˚riYJ= +3oC'Gntz*[|9%ռ)i1#؉hF!r(`t O0BF AuW@Td:6LecW!+zd˧eyay?MXqs.O\Uj-U*w}ߢ)D2veVBLAhgPz+ZKW=k[l3-S昼QQ .J}ڋ2QvF{uF-)fl&Jw *p *`Uc Cҧ B5D6ҰǂRB0!&tTVsǐ~ #~"pMrq}oY\58m%iuL|SH1 }0%sO7~j3]Y'03yPX3*AׯO7Q<5IJ3t`w{q'/P(jYQ_tA?$braz%Ӹ)J  E2ӕApGE ._,Q[E_y:d^zeby>/@2օZ,V Eaײ"]QdU[8A/X?_)C)%$pJu@Ȋ;NP[^$8m&# Ɍ`TV"_-T7V Ws×~zmfgYj 5nUNooP \Yoy 77²@E*&S9 FD0Ԯ\@X.ԩ!8dU|>[nQ`/Y2K 4nK:lb,2gQO5I2X ?$K` WHl~|y}hc>Ytf33w4*c3HW,F׈ĚGt^<GSJZDj*4*PvbK$k6HS,̖p 31>pLh?}CN| M>mH~)F3gV]z$̇FzJa&L|:_|ȼP=Gv[):'f@Zk똪q@%50EĺE6y-3+!1bG]Xāa+8we_l otbӄBNG[Ulo[;nQ`{fb&p8킴[\,V'~Rz kس]eSW(wO(; ]KhZp/-'}**}| n6am6/yk1 ra0QsoܛqpēҵGj 6GF'ہ@C+@%_Ljk䋘:%8'pZQAWQo&A 裼-i~ak!i!PT=.KOW8nN')=gf0]F =/ peR(́׸NA&B`x+XG4yTLt;D7W[2:gxߩs1_\׍S^d-dmY k}XAQx=Rqk/szvAhQ@S\"·ߠ.ژ_NM g3:N]߼o,H(O-T a(2f. Z&+x.'Ie( ^ g]MV1Nʷp~pnuxRs#wN$E_3jl'xKɘ9>~$ x% Ч-u+^*ȭ`Hp>9f&eIl5>0@ q Z6[*:`({Ju/Po+QD׈8kC hς_m7-gݢ/vP(#6Y{";^bxjt4uǐ.)}Y0~u5(ǐ,@[j,o赍|WIXŭí2dW=9ѶhedFQZQQ>$ _%rF/Dzqk55< " A0nٱQvmOQ iL֝_ x!j? Y4SY^c,4(N MsdE!.^4KTZZABDR`;2;6Tl%N 縳 IU 9&$cZF{Ө*FT٠l~,w~U.`SwBÊ(wk@." e!l

q>Jmѕ9?r͇xmP8sd3!h*4u>8 ttivXCu\dEGHN ߗm{lq3HdB#`/58PN2seI}zG/9W@ bk@YlAD+5resɺ ]029КpYN ހ[qGq:M ^Մune(9YCͫZYh 4qkbJu#Cd­`m8p#ã. eBґs&dcU)O߰^P}X:Z5-HJ^X{/_:%;aX¶G=zj=g}y:2H \V^٭1 PEc×H\L=aD)]qTpypA>#P;QR/leEm1{Jm~zV4W>dٕo1GNE!-! V-ԓ2~vư9i(94*\$MpXSR{|Yͨ-g{j.4 ādgh.l)!~"0I:ۨKlؓ8= s;⾁Yή71ldBVȨEcc=~\ ((< ǴE2Lxn4dܵ0Ņe$uGߺƠHm}+R-N(@+9ύ1.bFZ2('rҬH"Rl*1[ IÌ1a*oOzB& ! 믪ESu]t¯SVаcS/lDЁPoPdGmqSmU s 9lϤ 4a 4ZW(ϐ(K&JBN} ;ue-ᩅ v@D$i[xU%{TXP "Ӱȉ:9,PWbHW8m<%% - {"噭9.M,5jɞ@3rR~:srJN\uR&&L|[0TjTNaL)rӣr>gpps[ɻŜv 7=d'}Ysٳr"%rS:#ϋܬo.B\>Lboڠ{-^6g@X(I棬NE {oH$w $di<䇮Y0)[f8ޭ8MU3+ib4گ KFi}dXT"D/IX#8z߄f* q|H)!cHrw0d@@q1C -GH#<΄0VMċ@lC^FieȬ@OB67q|l!yc5#pYUh"6+G?;]wϬ%TW0 -wO[Y؁H@}j緊zIgeՀAe m;b=Cs4{Q$nkT$8M+JPC:iH# ?c de2q5``q?sp޿lQl.Fѐ; Vs cQ4? ІѤw A$Q;uʇ䤨Mn݄0e+_,JӴUc{KIrzr1&s eN1B:CQk0&߆1"~}QxQTȃy :gԘZ6Hz=<Sə{o ǗsXN^_ݟQi $ =Ev GR,a1hҡ.B{߿kf28('ֵvm{ j1DT!$.xej3TuU L DBO撄D3s>OX.tN(%RX`"КTk؏&_IoP?gR ²; t*?cyʛ1@}جsUy1K.9IPZcA?J= B l[{k#( sſOB*x+] jߓ1vEmju*ӂy]~L Jނ'pl#̦eW'Dp7Kֺ3︹Y`5<Y뿸FȭF|2Y$*'6L -"J?.=/rHUj(~}.A e֬ߓɷu|s3׌+ǿ=vЕ !x91v.6KH֨'^f:6Ml\$Jj`Ց iP.wT7u]U[O+n6bc,2GjSZA^j ؇92_}U8͢H^4hɧ#i 62LH0,ZE=Q $rvoy Uu"f YwɕSL]*5|N+UCrJoo~wgK0ǺhU>(;1xsbZ+۬&g5_#Yu@돭e.4 o&*^9ݭEC 4wЊ8 q`EUKjjFp;唳l fnGO= yS=)M\lQ07\k eeDmWFܰ 9C]gФj\^!c#C}s@ yJv.C`-B (d0sfMj/ΞQZ#I@Vo_<@^E^8Nq_K Dl| *GxD_8<ı%I`7Wp:C/dŘ>s*KV[nԷ=% nwX`! jߍr=u0).:7BVl:sCvJ;٭5SQ 7KÄF[4ۡNa`$qJ51e'pư'SL~EuUDUɥJYHsp'ZbpQ} 5/iscr L&oԫZݿЊ0$o,N[ه%ߝXGcD"y sFhdL+IQ] ' O>tT#ς1p*sD;5TgK0#fkѠAk0e~naך[Zk+Bky&Nc<|x NolBhE^ q6|8C6? &,z ]hQEy1ƞgY'_xUIkN/;7D@i*8 3++KkNظ[z+H$[CQw ZhrM> I3M6{L#ʍqF!BK|9bJw~trNG1mRљA݃nqEFƓDOsjsΥZ 4͎L܏h&Y\]4WA##A[،8]$fs=IID$g5ȥv<3ỏFImMo,_c!uFBPU!',MBuRz\{+1 *,!5ڢP/+um[ЎƸ\~پw 6KBn7is[*Gq5i%LJdkZ3bDPoF;:*l,:-/9 { aPui'q Rwƭۚn" hՒYSt],tI\kW|"XqywQ2Bտ>~Z-o!4@ cc/_7/I19oB f;y(xh/kK,Y$HaQ5!I:Vg?%h48 N y)Q҆x@`WT#6 "Ih?/&S#)fꪠѷ| bhEM/:&BXBH[}4LpJ4[ R p5Mf'{k_Oםq9 ^fS2k>v;OтԲ/Y墧}yD]o`!9_ =J1\Bya-|c/?X> li>gqgc, %grZ qg=y&>#LN+`9bNQ~!?hڪ޲$B }`TJ&U!|f o2v_e`w?)F)7@MˊL?ņoR[1yW'/7pUZ9u#|k>)a$+/Ai?LYePO<6H޳Xd3GPMSDL$#̓b!W^1V+eA3Fkdb [(Gߚ9Y¦xq\m o|O)mB2ەCՖuhql\-pF<~W]׫k !BC,=MO_viNtH ;]4?0wȆ`!'j9 ~kPTɖr@-[v?*^6cϪgpOwT+.!G5Ӌ&GPS~zlPǑEtۤl=Oͻ[KQAd07Q!=ӣ,Ew6Yk4JtPoSU2i4(H|MB5qT$i}lԿ5oͪN)~! YVh7GT3QP2O#}91$f7 D^uMl~$=4ЧlOF08ܟ1TO> IfK<]PhTr$q,T_NSPW 9Hҽ!\:!6J 7V ߋ^Շ}Ƙ/)1b~!h ~'풯Hō~IC;{Iyc5ݢS^a^&cmQMt#F**ӧLb_ϔLXD͇r$IE/;:oaaOTlE,KqF~*٢\{%G4H(;>7/=,%$ʯ큟*<S~>6Ǘc֢V}E+Tگ!Yy!.7Q?V[ް<\'>ggoc bsG.!% F*}r'?|05W8=bɭc2ǶF+ |ٹʥV/\ `ex7wg>^m 54h*Fd:7)KʾP&|`a_!a>\csf a=e`FC'NHJgrߤ=`2[CpPqiAʯ7~jwVmu׾1q!jGy+D!8G'XhJ3c'd5uiDC:TAw_W_rDoe@m}tGsOStYr$ 6w79O9MWv-lhنєmTAQ 1ix'I5 SBb^/GfX GW$!x#q[ pAI;!?9NνP,h&]Yĉy]`xw 1Gk?8:Hn?5 C]d,(ˆnY* !4Huj^⣻Z1vF7J9ʱ.kbܤj<\ G~%5v @E=Ed$\m1;Yʨ+ukfGt;3[E,@F-jKдod|Xvd׺]~JoF龺)BQ໚k=vyMWi*>3uȃMd)wE{9 t豨>W?2\jrMK E!NZߏQ[s};),pnw Tu{io  W*ۺE_GJu̘Xn{ǩw >W}e=qT@iOl%&kkb<9|ûϚL6$jCH`hחfi5yCos|tAjT5O"g?c<@cmCUeM6 O"xx!*9#(#ESN+@vԔpчA)㯖Qzr!{QJinڔjP0d 9ǡ@7Wݮ5adˈS}ҡ }| "Gۑεogē{Uqh3EőGꑦpNA7F-K*UCb_aMݻZ7?H?H2lc>y*HvvzK4+_QD=dhȕ*Z+~?Q!붃3SEꀲSKjtHS2xAk .nGw݋MUV,RIP ϼ1ڍExNpgOL\eg!]3Za$6nkۨ?LK:>@Y[\(̲V^P|޺WA!yu(ܪ+ꭦ:륢2Ȣd(3d-O:?Q[*Qd -4EǛP!AlFXQPC>]JA RZM ,AG+Rzx5YO'f"xL|q[hVt'1p: A7+h+Lj_+ij֤gp'o|6tF󈐅ˠhZmOO-u\z (Re0L le栽s (VlYSM#ȺThSPGXc_;m8'*}GLٌzo-_-i +H89]{7WuU/h[koxy`Hz'_En/ d:Ž#Ϡw_z ]OS k@baGV<3I D5; g }Qp8S?;B6gEO^Ml!ū4]ե+ʁT2B5 ¦^Ye3Wȯ#qFկ+s_XrҾLD9'x"p<̓?%%"J@ gSJ,$tmtb ޝmhG^e+Ź*uaB+u3 ܊Jyܨ tB<|V{j=f FِJxz6_N3_xrݎ !y[&^ rUau,&|d`2H@0>]~9x+ruz(  6ZBI%qRqG:+pUti 8b.W[sf=huè-k@:LkX/T[} u tӮ$T <:M:)'Xv BUC#s5ɐg截>yGtG2L;)HV tZ.cYj+ N!=,]JR}ԀVIBٛlQBكnfAt'B$E.Dzr}鹐B' .&u >6' ZNEPF`" xia%.1th"t"J:&}7c &Ofi^/Œ٢\ R1a6׈$ j ~˞{p Jj{&OU|Z[f%!n-@0r䯪+K`՛2̝^/.v6gl3ac/;.FŰQ];Ri~ ֶʘn0OjgɥopĽC,¶ $2s.(h$c&F*9hqadl @&޴@Qm?O|֎TIɸycokI<l]C=q!yg6y9 'u\baD]ސ8K!K7d ~H,'rjWW05]Mudi{f 6χ^SG#`#=Qst.2s_DZZD)#~+}/%N>>0./*qc&fLǸqⴕk ۴XĄe>| d?2R9>4%gQoSwqW.9 *g ˴)MC# J )kB`a6U1I [V" 8P<|߸ȘA"RܓVii~`bLhIEF)8,4Dmݾў]_ZUV[S4Irq;08UaA{l@){Wt%z L hK3.]ԾO,{' 9oQmM~a'-E m .]ӟi9H<ϋ2:om;ye$80"5b4%@՟̐:6y9x3/X"qט] ,G,ڏ域3aeԟ-AbbØ]-ZBdKESL3|MK%1 EF7%(:;\'FoLϛk.Q8o04x^|H\zr9()]1XƊGXN8Jm-VWF9ŇjlebMLLr"+ /hOk}r"upU i ۑC{5C5ݔN;{ h =@*Ke}RBB! V aADI0H U$sһ.I(3c8㦧 lc\>ίѮﰲX&Q: f!+U!X-)vi st`{>\ N 븨7Lj׾eW3:Ҟ<<Ǐ$Ԗ"ƎǞŖ k8Y/ j-#Wji›];1t$eicIKV<~/N'Z{fuZga%NYFhkLIko劅~~(Q:  GzhP%z^Ⱥs9cV ;^'sۇր¿ɣ$ 2Yv8;r/&H&xJͧ5/G5XW̘y2!6m$8a! DHD4X;8S 9u6!s ÆIB:RjlnczsԊ̸t#Tyd91Hd $+99U}Lfgg_1t!%Mտ/a #,*"۩tPʢ/(sJXq`EJKgx1OV#;זhwDsd{ KcDiٌIiTrPn 8H&`T%P9.8ih -Pg<$y r#pCYsLK9 ,.YmEw # 8EZĮ"6 2fo@*k|Ql*" r(5RkhWH4vKk$ǥ@i@X͙IYp>+Pp(87F([{c+ O6R{I0`nOhYrb *p_u5$M&"l}gR"Q^EiH+.[A`F/ѦN sC| hPV\goHw_2Umݓel2YrB_:[oxQ&Izl*Q߂rm. OUa_;^2޲|J̍5ل Cwf29`}襔KZ?_j 5;+[RfJ6y )kYÑ<k46>Ϊ\,hU} ݹ敟Nϰ; /PR|{൭驫\j֘ĒMKnmv{ðZB,o@j6k|HAUmAJs7.wa\BUѸoUl< Ǚ+nbĎw.BNcb:&Mi(w|Up9CiOWᚴy^ QzZ%LB>7ǫ4`@䴱UhHFk! 4l ɷy+<b C 0Lyh3!ǘUVJ5 ?8yS0qNtK{2L){<7͑p+k̒]qRCʎG:NOTp~HAnPd|n%䈷[4I-%"kQ>dv4K2\&VJ V8{dDG㫯 plJAqtyq0LSM"saO$*BZsݼ]7Zxb[v*Z|.XIiy ZLKwq+ vs.VKֻNGt[[`5Ӱ-E o>T#7dBlt6(EOƵ{bR~D!G+(@psmuNQq0VʩJbVȶӸ>iF~mxgxՂ WPH^@@u<=b-*\b@#8Wu+"=5€Sem<3SV#Fq Zos"< eQm[ ?rXK| :BSPG{Bw֗eCƋ"|C!EI&4d?,'J,DCԥ}tZR:k_O\ R'InK]6x_t"6 \d(fH=UpQ-Xxd;0Iwկ ,t" S2ap}˖],T'qc7^! ^Fgܐ/4e.C4Q7j@J/wqZbxCW#h 6$$Afє]1Y%-sL:8ՇIOvb;(m-Z񱫸zN+f2l MX+#pIwLST)w䨐ʁM>DUg[[K - .mCZ %۰.JŜb)1eTt7 IZ5?~ѳ{| ~N{i,ª&4l*CJ['z crV} :S4 U:d^ F]5 藅Rh.alIz%^F(y$r]%T6S| mjb Ue&M)UWX{5F l_gM/Tm'ydwN-1>:wNz{v%“:R,{U*zy |x1Gy+h0ú _UbFO"*g[x݆8(622_(v3: )9(pw#GBq#Ex6+^B[vS hI<'/R>yLqECW`\m쾆H2~(#`8\Z+, ;Y*ڼ ˥\iRH _&v]a_r*CӶY-ձzi5Q]HM7^l1}wy8;(btTk, ""VM :F 3;F*f״9}S=4Bem$u0ܕ2|x̿ s. d4)]7okrtj>+fBeInDnD汳0,3Cq1Xucdξ j3ug\f^=i(`WqfBF5#pW6ÓKf&;+7$ K1RξF⢂q}eMh!8]lΖ`#w@D_P}cyQXrs ž.[`Om]C-l` o4?9~wdC Xf$zG`m7+`b=4' .;kB;*Ri Js%wFׁ3|lOP:?,^ޫ"qd؂=kpk)3JO ӄq-0@[N81_[ěP;aH Cvi%\ˏ'-Ug^g5(Fċ/[}=RxRO* Q.w&&n }1(,W<ەND̂ݔD6NW;*|].ܡqǺvmj["!/B}^ { AI4wQW,IOUtIu+yM9/T-)"Z'׭PsQN߆B0NvMmd|K@mͥB"CH7p܌IytNGG+a6ċfX͋ge-1ƧvN ΰyu} i˵^^OakhSYWaiȎ!P[j#+{9c&tges)r}E~nǜ5Uh"k9{Bc#s;88$$hq/N} <]nq![ wB<mFk(LԶƁR#u_BBr[#|8Lg5n낿>)ͫgH&7(#>z5+F5cN-̸D{ƒO2gU\”ZJ0.xўwP|Q{t[ %*8N2djՌUy ?~DsY<}07:OttW.u4ж^ކ{Q ԯ336{+-vJ=AKmd",X+J[DPFHsѼ: 7 ΦrĠg'e33p$yە6a\sxjxPtf.N]WZ4H5`75S7CM>Ww>ΜMsRۧɊcTI´}[hgTۊʖԄ,R,t Ft1s @5ᡇlh- ˵.+>j0iG0Ųa9tꒆ)lҏQ1 ?h8ZSq9u-gj%8ؐ-jH x5/8M*X<_ |;bl@Ԏr'$Soc;F=7SQ d̆`kQ/Oq'a-reWB_ΪʫG٬# Γ)Zj8f2sbW@*cŪco bX459,McV1F(l<22?ӚuO s}eG\w!@c\fuO*0<`+X8O~(΄pD `@^"///qFm?%xd?!A#AR!~M.T .=' WBT\ňtWlf\'2d>rvԡgiԬ=RtӜqvom`)$* x*2)%:&+es#F&kFY`'0asW.m~;V\L׺4KLڠ. e h.!lBj'e>$)_#]GG ))M-E/S$mi-UÝbG߸C|ͬEűr nkE:A$@_q"ߤڢn_S<,؁!~LX<ڮٛX_'VTb'!gVQG'AqU +sy`H^D`iDS: v4l?FI:8f+Xjj~VQhgM @$*uܐWMPce1cHN)"b1[͜Th ؃JbU t} .1fiFJ 3Sx`G㸫ڑnmy5]ۭKY7 y.\R蓈BU`L)邫ٕaԢKk'ʁW5|l5뵬-z,XG** vXN~e|g$?pMOh_(0ACF?vL~l=F*ܳmr1`eKм) 4[72+d="Wei~.4*ax+Ԅ)&"{\3Mw_ϨjN\EeTIpE1UxGvݡQ2#!i +c#VAO5 b5bKzH2բܘjshZgT?-ă,nOAaٕDLqOb5zݫa?{4=!_=1GE4#m__n;SV{aPMĐ,a_# T 4By QhݡqyDrPl:z٦[Ŕqɐmk&`oRm}XI{ pGSf$X*Z@:ء-?H:C8\ 6M0laz{8בڬAn("&ӻ$ȎiaGnB{0q)'-^FUڜ磨 >ltô{dK;M0.mGUzO,` a:j L :~!@|f؎- !+ZGo%Gf12EhRZHկ3[#Î9sLN%\i(edMpN(By!-zZnoC-J@H ɧWñE&gS#h:$4fo͇hc6[bb[ږ+pF\B:6Gq>Ց@o&5"e 2$o EH՟4P% YMgD9ܾ шhZ?ź:I;.#be&EL",&bs0b5J kTti `Օ"l~ߒ~!|^s?R}Ɯjs. S.*d@}Src[ uC@i`X4}T f L/HtK*]>BVf%wc<şk.O"HU\Ll3л֘RRn-ryWZ+{zD8cG?,ΛjTt ض;BihQx!~c ~ [Xd+nq/v?Yax2jt = 'o~25>Dy|ٹ5ν c0rμAREM8 R{mAًmԴ6!wiv jϾsf9AWKwvkF]yEnPkr !+zh~9ۻқ[-Lj~Ka9 !8q@h="kM$滛NuY\I |OߔcU %NZUJ ӹ Titٱjj}uVGv8~dFjq?2q3cUp.m!g$gok:PT5ڌ-LJǻEoH+˖ jdZ*7QWOh/C^yfBol{CךI 1Z6_Xd*O16D\ՠe ^  4Β@zn5v0Ɠ;nеMv??- @C"?n#=BOAK5w7uW5Pr4)EX뇭=u 'ITg4<EU Vkɩ\) g!y+rÑ< [澑]YP-c3x%R ]$(PHCXB$'Ղ){u]{f O\`%蛋tB3a'7J rESrSa,U{wD2 ѸhH;GcwO|rve3 8.6ʭw~mg<]E{q݀E((]ǵ|+|0Q;~ FЎ}4\Wպ3tɸ!kVV ܍9#(@ƬOn5zsDm/-/b|yQFP_ i% =]e6Ȏ,4C I{Njr"1_DMA )ZwR҅˶p4W\HAMj;sn_ j}a 347{X=":_ԯ/k«LAgPYHmcFK{wRoS 54]Y'_48tǬ+eJFǚt.?ux& , X_647JX+~E>!4"[f,MK| = 'H?[n+ϑ.Y(NOs Fx =Y@A=ux2󂐙¥]{\MPWYKHBa/jxT-f?Mw;^P7+)~X-g$13)4ol>ÿxzS x\ϵ,He}\J-514G5F 蓾 hv? liݿé U3mF1 U&PPbLQ~j]]7 OX4z73{.^En=RBRnӪG%b%?lEF7ɩ1?^T "b#hLGI:P;pﳲ;o<-;ɹjdLU$@ veu3RLJ#5e-q|q דL.IP,6g{uAj>@pJ33'e:P_3!Cs!de 0# 㷱,`b=+ƚx٫8H5b~|W0/ oUr#aX_P~]>w8ija0}$ %V42 |I? eRN8R_pv38  I}:`4,uRgO.*PUG|O%||!q}s^^uXCeZYyR,Gٯز1:,B vTx_4={$<+ڍ£D&KXȇԁNiDD]klohBɭhXdr:  38d\èŽY)*,IsWJy)U eY-""_ËC4(aM: Rwc 8}}٪.<)I2X|d hq_iIfSV1AN2l8fӊ׫WTND/#/ҁ8Dgh #=")>՞Ob % Ei:ĕ`n3` ;A.S9}fyiRzOĸJ$%"{#jK5Y${T]ne8HG4{G-)G04k m$"n!,d3_Y(dY- wO\F" rMTYi ,W_j2a~˭>tSn }0xvyL ]F,%<ČVtۖ8 wZ]ͮw@A]kcP7.Ґ[Q_e6"n_XMWsC`:Lbnm#1Ч l yj۩?Շ9oZMOTĻ>,k fZ%xFr:R(iMtPf=uh.YE٦&/C+zYQ|ET,04JiTKƳ9R/G(M (G y~3DZ8`X̪"\C^/wRtQfYҩٵ(6(& ciGREϖ.] Б޻ԇ;|E%ЯbRm O|߇O@ ij>=-u n_9YIDN6+v-caרN/B $0Ȍ /Y -`Clpo Qbt=Z8筊6 .%Lj3}n,W(]1_JGp~Cpm&B9)4h#`b7~' a|jBdyX2>XM\/B[O[ = a,".n-4#̇M8^?Uv  i xXˤ3hw_[LrDϝ6gǛ1ь]dV` ~X}Nm8J$pּQ#//~t Qtp)g਀ gp # s 2-soDuy#>3_Qm2vnϪ̾wi'! {)ô[^yk" r3lІZtIҎz1(O(~N5y6KNaR "n!|i!<9pCvVwf;J# TJʞ11Nێ -ד;b6q57bߎ,2i.hyk%)[oDW@iK{| tݷD}ץe(WYB #d*{#jԠLVy0+=vgLuu B ?Hٸ"RZ᧽0" 04;ᑤHn}720ޝP֫EHIoeB̽޾2S#4 ӧx+9,k"cXl*Ҧ4ݪUjmZ=r YnA% S* ֘+98.Ek*یhϿ@!o.I~*AjUc|i''lh; ڶ6 #|_ᓴc1:x!1H 'u*L+Dg{.W@LƓFz ;շH| p8;n V~ܸ/ ,w9יTfSl*Z20xA.ԃCAlE.b+D2B&n)GP>+H{jHD/d"0({HZOns c$e9.4ayB"~O>` ř;hK-ukS55J⟡q& Q%V#y#.9&whۛwזh1E_[BQ Q~ QJ9`nOy{uAa?Ʈo'̓u<nGfɤ*LhQ'n#b;[ZQ5lm!(+B:kaIA{3KqD$$vjz v)֩8aHv/$si{Q k PN}wyxQ ^LD^/,_dW϶?K;ih#9b&M_qd,@lQCPE'"DF MȲGRl)cf&ePzr$wZNj Wӫ ? ہkuG$6 P|wܷ1D];WNXv`IƩ=f#˾JMđNw#ǫl.[IqѶc> %iEԶi)XL."jm]S\]QaqbQa; ihܬd.OtѶ߶mՍ8E)60ty5r=6wIs( 䴄Rv iC~uP Q`bK dh58mp`,iuRI"ծsͯ7v HW/O QO`LJf0SSi\ tڰ}HfX&L,5нn3FvbOiFܬn=>X5$A_Efb h{qUUyo^De '`58/!By {-eMFp:-ӠwLR{7B0 #1;cI/h"Wm5S>fuF&ZLhϾKE+BTCSK(Br%2QJƄ2ߖ Ak%dHz⫎.b‡Op7Z~2 |;28P@&_3 /[jZͲZ ZOĭ6e _јMm vOԦ-\C[x/mno\bfդ96I讀/X(dBjOAO1+aQ, L2{56ήe !{E HR;bUQL#Kt@%9"'gX2.x(&_@iX3`~KK%#`D)%5/:q(9ZZ,cR1%`_LA &ț񙿂(oA ڙ,bpUmLʁX=5ܖX}}ik 6tPI>>RoR]r ҀG:Z$c6ZoBY"0X>91b促a I3?gI(N-=ӎ;n2 AJw5$mg8Ă|"H%C}x*X*ob].ӑ#:$jYrǂni(諦]|8x˝tcqfam7o;eMg"(N >;[(CA*;yYPO"۸w-2< R/}AGnd.GaoMCM&h\l|rA0qAi@&w (/8\[E}Kꆧ[q9Ϟ nd`jt/ Ј>ݜ7ԯB\0WP88|MO0r/e@G1.l>)|HUc豩?siDnI GMl=(]}(7HT#.C_ƀ t^u9K^̍'$F읁xyhq!c#}֟ *R~S>vj_R (AAwnT-'1_@|,URݗ*XpN5L=sכֿM~ٿ :&WĴ H%ao LL 4dyN&DuWo-9 )ȭDQkn%43Y^>k`A0D^5tлR3C8C{Tà_eiḾB:gGcjHC%A[id r1L*n/KZ)>/&TEcQ( mlr Ů7E!PC0.}ٺ@l_"σ-P/C7!DySyi/;UVM=xXus,*,&l8.@`b~+y4ȅJQ4G`&).AQ鉆k\&Ҕ.WK҇M p>MDxNNF7ƴ0"^G}Qo%?l=kI/$ _p2K檾%xq~}V"DՏhqb7,j$!չXFUyS}|lCڦ[t+S Bߡ|mZڎ؊|&%ˊO롷6J\WLp "qI5ʱS$H P{ =08q3+{/7J( f_M` :l4~94&"?ʚc+GUTE"A'dl3ۘez XPx۫ '&U[,a̟KPנWpmKع%ےYV A$V"T.2:w&& ؂'HBx|#opeiLUaQHqI@ QdE%I2O>eb$WG -{3ʗ7!1[hgXF4/?^omA؜e;*d]H]W-ǀg  Ov1{ ;Zj7ّ{i^xB|;%&./#daaL,U{G0svm =~DH!zB$5v OjA0x !384ͣ&خk&׆tY#U]4h`fk>6Azn. 5iV7ʮI\p^b0@╶r4OjVYDߒ|ԽoY+b饣槨x y3;ee`J- Z.#%Wd.Xr>yOLh`Vػ5V]ļv!fԿq 3/+mK+Nǹ;on:2G8bb;v M|@MeOO%]%R T]׶֏>K|v$lQOy|Wځ5sBY3`>^i~(QDr.ECeŅn+'S_WŹ b|xkTGMnd6,ؘj+C9#s8ィ5oMᚑBzW̏fu8uSRmf F)sؔXVog˚4ddV;1i@Tw8ŧ |OvY7`*^Q[6" I-/y {.0(FH%QorA kSXxϐ}}GS؛ ڡr聠%UMU' )sxlGQ=V(b{-4^5eGJ,D]BI4w  φ*^h|uFT!'FXA:RY2 +X8;T48 n<@(pK2VvǶZE}8h5@a9BWD>Q,/mS8Ԭ~E;Nrcaql5Txh?1kZˆ(:d,Umja5rn2e!AV1!1<zeƒ$$\DLHY&/n.!h6 YGaG_[G*LՃqM"eq{"siӑY 9BmKMja0F\&Dk0̟߭2j|2# .eώ2T>K =DMw߹NwP` BѲm_{yxR krޔL[ Dl6]\::qNnJJ~&5ǝ y0,$pޢvcՎ^+$k[dNPNJr<~jٮ.'8Ӑ\-G܍#ѻ<ث^USj[)r(*H=:gO.nE/d/t|ڽ](,)y:l'0)XuԮqy}ImqWKpE!pK?'׃{i}BV)l$RocW܈ !3v'w')=90@(pyJXݱ]fEm-`[ 9ۦ]+E#]/!Y\<]5.jUčwEpvAs]@& -c77EjjrTTER.9NktJz 1Rj IC*W(FB]dRv1ρQ A[Lҁzꌲc!kG4J 8]V&&v#$,:$LޕX5q{,~/&*W @WURފ᚞TbGI0U2Mf\.tp@״y NEGw l ixv Et !F-*ĝ @kL}7InV `T)ad5tBvEyh@kzE' ?3)bK^QfPgv4},jE^"l'YB2l{s)1?@)j]M@qɅU[d4:/+SG@Ӕ "Y>Tx]=0y},ЩG7䟾͐ 3$Po\jv–\j< "I$8Y ޷'vyi%:oWx=JdM0^}@i<&QG"Y;E:\vesv:'B(j { Y$xH,+>wzci1G+E " D3/E8EGOYDL'Tm#By9!.^y8-7H&MdqnO uvgA3]Le>*3T/ƦL]Ҿ5(cV /;vر(Gᆞo([,3v1Oˆ6+iyhٗecgp_< h^ ξH @;ī1tlreZ OM^NAdCh bUPMF:oj!$]0Kǹ}IA~ʙeXY`L:Q[206.ҟç'v'Nc\Fq^82 aRQ)"\Q@kDve\z@t F ԡ1c;[db]2}WŃ ^%ۖ$e.)>xf[蕔 -f728%EG(`Yg¹ / Պؔ7)V ni@n|/[pƖJ+yNeu,g 14Uaːh`sjJRJ"'2i&d"U}AcÜ:?-we!l1w'F [ q/yɕ;JBN'M^S%ilY_qM 1JO8Q;ݢWVS0JۧΛ-h0GA8E4 !0)= }jzMB06֙燧'pa~붧|@12ݒg&# 6͠M>o@:+~iGfmQFAxTjRǷrhIuTEp1%o}q-b仐:>X69Ms UЙ'&~1.i%!#&1{\0p۷{1^Xi]`pJӟ ӓ|̈ၬ bͦRXK*uƦav e9o''17\`,f.⴦["a4Ҵخ}T`w:H%bt榃GlnR.`7T ӧ$|nۆچ6dOC m 5T:8- [>;uR`hw!n խ[Eٳ}? hNﷹ[8UTs98BQo@"\df7$ z;ϓ/f=0&k>3Ir-ڌGagu [Mԡ;*/+Ak&#id۶2"a)"X L(47]hIZ-jU`c 8*IפUZ_BzEcV!fT-TVbNeOƒU+(z l[sԵA _TK5kB"&Cs.<QiJ DS8ئنO╶'H'5~mdGxd+|{[2X 2[(B! ŐByT vțjޚ/h3|G@ffp{&TaPh$l=,Pٍ=eHlϑm0"nOwU+U5i};QG{v4'?GF_޾qγ#b3qƱ"}V73y66!]/WO(V.~.^1 ef\Kτ7X&qgY28y -{L*?OY<` bdRxOA 6f$N\pcnqIĻGѰF){EtߑGA( <rҚ7*},O2@&),;3*ţQٙS{f nUl4ѳu°.bg#`1-<2~vg6i({~*12 #/Xerd#uq򽗖  z՗!`yJ`aBE"6ַi{kЙjХ_*G*WUxqU1/zO$-dj rFЛW`24xYPϳ,&2GU@zz?kzDhFRM$:\=Z@H髢y96ȄmvVy@5#hǖBPg[>;GYqJno!+Xjhu/!aYmMHL'x| "eCa^.|uQ2TAqʼ~P-iY\܏$Ƈ}eP:uurar3;"eV\Ӛ^nJ|pl8&q xgppPY6}d/qJXP)oE8l&Rf2iؒT~G*1cF~USilϾ*1ecUQ *TC>ltmTfd̈́oO+[bmUpR"e0/G쯺DsaϴM7)} ۲sdBYxؒiRۑ.G( S܈H_*Q]Ɋt{y|yK JjAPskCX!vI ;(YhD"NY']4$UP`mP7b/0yF|_=u#lTd~UA:4Gkive͝l(A8Ո)P^;L80@$+I.m\/Ll3 zDx!+GP%yDe6$?dOVU5@x2%ϧ Xc?Uö3{Exj+" EӓoM)MiRSzD܎!]gCdQؠTԆnF~ 08&W[ 9V<kQ(w0-ґ5ډQ{͇@a0^ XOz@)eC:5;<5RUILMr] g9 or4}†tHj 1,W~ϱ~ ckEH2;PsJRh;=H{ NB{U"-\J:lTDpB u1. fbS? XmCE*vSHb[Mb Lɜ+e$.IXMZaN׺z:ŢUO4 kSFtEw7~fU,kNJ/ǘwFJ%nܐ[MEA>,,ZY2~ިeV KŹ'$0(&aD< ~ݱetZ0 XDa 2.^ XvV. $2t[aiv|X$Sphjޥ.o/G}}N ]]w]B/mHha#V?04Gvđa:$uI0^+<7memqQw;r( &ZxvAŊ8͍J]( 4LbIvTxwc-̣jVj(zG6!;Gq9+ x'w]q }Ϙ`b+4m88H_|'X(ND EMavUƣ37gAy#d*{G.ĮBp=.XI3Snao./B9u ]KKIAUZcLm\PPgLҕiR!iAFo)Q. G= Z9^v?k _:ai!&z?!uFAg"j1 `3kyE" ø%& "y͂s-mў9'^sq 5g. n4C]e{_9ecv_d wI}SM𷸝 H0Yxi,nt ,R'x^OlPRsJ,.$ sGLB:>:w†gR,  Ia'Tz|dDkAIba[K9*_OEît 4Lb5hqoڀP8 \Pi8D޷w*=q5ۚ{3{ۃ亸%pH 2wo_i"dh%Ģ.?uI4`;G6h[RJi?ֹتx,6w?/ҕ;%]x:H#O|}WFqlRQ㙝İu+"M rV}#JA"?b_)PkG:WA,$=Bwg[`MSl mgvw(J/xʶbO"eآ&Yi?1/ylj&|=cNܑU# `'L.421l0g;R)ˬgߗdtrnE$?GNǏx_Jp `zQ>h Ge[)O^K\``B` OmdH0P!C;X̗5ȑOU/S, nG/zAA"]UԶJC~6ddm{SXu:C+$ $DA (80$ё$l.<]c GA=9J6q]~|'u?1й=v; BL u  %7^Qmy֋?_b> L:BL?ޙ?O5Y/tqSS+w)encQ~&qe$oU3t0mpG^sQ4 ϒOeU + :K߁8ۗX[/`b,{]bk_uV[*S.P(OoxcOZGؿ=-lz\^&YG{f{!0!tv;+פTT}7Y@~eg}X1ZʊӤ\VmFf \f bK`xPRHwS'ZM4e=TH3k0fF%эR:w=Rz)63F _agYւE27(.X̹BiA=^!GSJ/}ID>ne,' !eZ/N]Z˾Ë.Tr2[udFߖDs5GfQO >6W=?{B'NTY?wż?I -m>e1؈hDʵx! ̱j 9=`-%Cg<#b$UK&=K#iA >ҿT7rs/#}Kqւ|o=n 8cX?$ tAb-=j X*MPӐkb]]-SᜐRPvA$\im|~fzk+?.1,oMǻ'0P5 j(5Ⱥ: 3X?/.D [)i՗^0YRЛe%C~t|NjD:?d.Ϸd5*_A,+ 4xr=< fkGC({uF|:-mq4x}h=tŏ KIS$\;pnF8Ym㹞P9e ysC"QjȓuM#2}S^ 8]}0R7+/M0SNHVWRAV nA[BzuT"8Z\d: )k 2ٸ:ή(]=$s y`,$" ܰ7{@vȰN~ͳr7lsh. F P˄G@"!QBX!>N{?;PBk\9#mg?L.̔ *B?UU3DMwI,U.O*oaHx?hH$7!\.Wg7H +a W0n)GkJ }C|]~m~6}z_8ϣ=ꎞ&һ\ך` n[? î޵biCqG!@xfo'Ni:Εxe| Y젥y݉3lA9e3Q_#a"SP9 ]PDwʀbm"O`_maǹ_CΜY#9Pxt/ׇf8A@p5v )ynqRZ,R9)c-9sw!;Xc>=搎`n:1)]fh}Iua0 ;AvV.V|ȫ.hx P}\}:# :,2dPRJO4 6RkP5@#SĪЇ?[ZY{E׆pAӻ)g#Q"ZIsHxُFTr۵Xq O"O򦮷-bx*iD;JN>e"dZ.RS%?=1X]H'nj?B` ᦊ~<c5񞀈ǀ*?s 5Nb|fd,,YoΖ( 'RLv8$2MIż%ֱñ2O Gn8P܈j+dsPiAa- 3% 0#V6R*jl)6N?N薥/ƌmwW PE5TW+ Еnzs&6hV$廘Stjj6-ClE[k5p1g7L[SާK{U"z,K؂YU`c`C~=B;mgy~hiWx2@YN%ϭ?e| %QJ K83xŌN t kAXnZ]&5[p%A3@-'V^Z~Qe(OȺwGT˒ռzdX)Y-Jl :Y M3_o4OTB;i[%"tvSSHYxgnҚge!= m}~V\֦ vgFbyO0–F8i1bԲǑ?0'gퟸC*#,h>Ψ oE՟lXAB8m4]' eh&,U|&YSPY;; p(#Do[<>&5gBhdf%4.i_ ;$f;EnUO Z\gVS] F)%4U ge@ lP.,O3͗e/"ȕTq+S4@=zڱ8) 9۸^&K͕|"Rf6APpӸ=y/n[ q(AӪ5* Wё~O['mo^s=D3.AxmS' 5˥WRMQ(wcp,1:8= Șxؾ'0Kn@Y +UH)C)8 01yY!gRB *'{X?ϫ*toe:#*Ͽ?2k3)?V7ʣ)r}Yۤ}] S]bb&Vl֐'w!xx "|O+:-RgT3#wL.|6 'V1]?*FEvku.BrA_q&[K$OY   3\DF er%!h,Ff%+"kA5K _MWxL] *U1ku^\ĮCEX_'N+uXi/ /Wll}|J͙[1sG'Ua} p[p6qcmЧ»$V{j<~3N0/_U0n9Á ;UZ֤ 9$Nv-k?!"loHMhf,V]AO'CTJrFJݫ8=r3?zU VPۈs]͘iTtm,˶(q>D]UP%i~!6"L?L:B<hf TC{Di RVNʬ]5(ڌ>gϴL@Nq%Ao[̀>q.Wg7g}u ~c + k`VPW1| 1Hյ"] }j1|BH˿ ?mʚU(ȟ u#Ӣg ODk6+CsG)F#@|ט#cYj(zPO?k+ȳT("fH];p[ܩ6"fDOO,4#Ֆkd Oble&K=єWB +&T8f Ҭya-#hW/:o?}}zr1||Av="Y/YD|n\gac9DbK$J j| ><0 $&\MAM[4uWlYˣ 3ˁ|L*GvWie1j *]-1BOw#3} {JjIB7h8d ƬcJ͏RX - D́shFgl<@Fٛ&c~ú1&izN6O$TVpA?mL4! 3[Dޗى>%YL?.vpD_#'w\QI(ĩ̏`+3hx'i,sكtޟkɇR~Yfj #U *z R|vNYh&j  */ y3)bՑ#ԄǭPRy=ȃM!܏OP4ɛge3Tsѕ%N.FHae|ɝݙу™!XT_?pTk j1Oβ:gzӡM8Lb%;D}2© w=; . WJDM8f@7iwMrj $2>.bp.͚OM4XA8rN06&E&:`/o5qc jlƺnxBb\TJ|9,>xyK~U@> ^@;c{ٰ/3kbRAJeI͈E#r-X[5?pqTZz!+<9p݃q yi~zf"C6fru$6)bFP3XmsW}A8cG7el;rQhJA[oJ5*c_@*ۚUǎ ϮjBP26rQl^ނ{ P"ʬ2EIN{= p[MqP]b]*|%}8~x2SQ A7@vy ?{(C˟o}PsI,k$KIgxD,Uy4hLE`H<Igm[1Y|=bo =yK^Tvn|Vr #=?1탭hbE¬fԾfaQ푪oyE"뿱~UDЁZfd- t?!lzBii'f}B=GJi5ׂuvU' h .VX ]?Ǣb #ܩpuqy=cr׈X C^F9V8PB`a[h|:cN1 ywD<8{=v4_veU~~XHWRzl2WXRxo<^߾ٴJ*y{ǔ0ؓ?-$JwoķyC?+ɰƲE1g@ɇ=?/LɱiO@RIh1P8j[F8&C Wު=e5 C!u!$;-EqJk&m6/X@,yzZu8t|hul ')hˊLGw\GaYl%vN`<K>YK?`qvWV7U;m]C!/yxleOi{ݦz'"pw|C`lWJdiD4u?`ޣ*(>cuv̠ m"eVWIepU[Iiz>t;%YI'[~w2Jtcߙ̈jկ@쪆l=;]*ȌD4zpn@\qqR&7+opB) 6*“Nj~a1hU6\$MAg |iݹGB@ ^/HD}\`-߶v:5B\sS%hѿhb=ZCwcѪ(lw  Gh}z*)g;#Sk5g؟g]6{}.La9cPIpewM x^K/B\P^wNT2D<^U SKk-16#Bɛl(RNQKAsRCaeMLѤ(~J`_yuƆzx{k X-3͔͢Vꐼxqf)# DXI Jӵ,ž zPT1JG?prM',czmBw"l]~ɽ8c&?qZDz7189o^Jч͹|dBS&:ݛ~э8B2, ,*+ ,1/&0~hբIĐo =؅/6ԖgePJfvõ)9re| {"B-U jF7=x`Y79!‘"ӟm6S*+&>>g 8]%4Ơ} (`\ta3Nm("%0yd\l-)"+Nu~B+m+:-~"U?U.M7xRASO[]_CI[| DQfg3iK z%;Ui."{@Qwv1l9No ~ ܩUdwyE_D#| I炻`j}a 4#Ǧ0iz[ )_/6Fa'bK4#qWS[])ED0ccd;cLkoA lWJ$>%ɳ1۫S-oTCzUs\7+ܫ7a`<΂$%/|dt,W2(st &7nxht8`4М*b879ˤ2ϋ`ڛ4@U YЀU]6@¬N;\I /sr|\ixu4MfjT>4BrpٴVHvqqyS":T'۱,h\3p-R4#¢S! $My=֌5*gP+-cYg JI '~;/|J LVEXÞ*67'8o\u zp& "G*ejBh%C]krօ*4ެ5pDC:S2iM|y*mˋN>aL:F?qjd۩w龮ZaBn??&zw"Wp-0 R=Lx(PR?frPsWi$a?a Es6U1i{z%6W Vy'`oP\*"SJud`ū3 TZ R[ Lδ= {q} Qљ CG'Jbڊa$!m9[((#0WM>I IR4ֱ}Q(.آd&s_ kb1 Loʠyj`*1ԋw硝L\y)3 KQAfg3]@S75; Bw4 fPNQ?fJK'ylm!~8Ka[@ gqqcS * ˪$>mlntPb}Bb1"*?Xp-H1R|.dp">VUֈ.dBxA&pI!KSM!uIEY4]2;,\gd-|\]zǙ}gX_`Ky>{,as'ACQd'tmS'ӽ|E{= $**aMn1|mx؅H^l~ȲI^Àc 9 =# g)ձa!> 2G0}U'u1b]|IjmZ@88= z 吝xҦb<?`Ft&7mLd1DK_V5% RH/IVX4h7F6j>ۻw湎eXM>ŏAP:ޭ"M -Q~^sxٵR4nتϴK4qG*_C 'l)w$,#5 oo[0-jbcEbQ@gE.,VB'P ;3PaZ1l>c{B$ ec{q++5Lm=o)f<4OGw{P7;}PAQYohJAvgEejG6tcNȉD\l0nQhk)cV@H.v6]񡟗y0sg-Nܖ0kP!iܣY2v—x׸C“~- q,;]mv> bㆽC{Y\m6D~[~Hrg YC/ F2&@8;`_ٿ ѫwF' *Ť+}̎hU̱'=Rnq:9:pmF"P Sd2q|_*Q !ea]ǍR\B$9"k._U{/)<]cjBy,v(BEFQ_ޙqh(qT_h|` aok&г@g(bs>]9TsU=YG\tu >lLǾ`tX+% CJ/.\(NG5q\ƈ7z0P~3`>)_t[1v:G>#cҥ~tçf TR:WIh=oM#Ԝc(RۅBO oRx;c8(ΓǪQ|yK!_R\G7 lTl qсQ @[4{dWz BjFDmwy[ U7BR] wsL*BhBbAo6hflGqVMxJ@2㄁~A@O%3N~9#bsY_@A,Y`+>]@nD,u|NjW9w(=g\=QmpzWۢc'cR'竛5Opv%F`P*0Ә먳1sljB4h ZĘw[;Y ^:dniA2#)C3)a1w+7\)dv 8 Lڌ`6}ĭDXRs1Giw*$ډb-<Udʑ\2&pmŒ4mǏY)U}7өaF>|]t~[sCܜ{| m.XEZIxſu:y VO. lFyJ˓G Gڱ]~>}xg_?Jz"#X:6؎D d5pnq|[KgF@)^ YeQs{NU'H\d=v" Cq$=E9ePj|ï*ӰE n.Ug 7jyq B+Xljho#%Ԩ@ vP8а=WT K#h\z$ԛlHZF ,>*3arL,34 }<_H}9nm0 !W6J] y//unՀˢ`WZr؅ \sO\Y(d!8S1(8ņ٬CJg.۫]"L$;/%.]},U6 _ P> Ń.ee42ce#gټ4&/dj?0 ke #ẗR+"yd;nj V] XTF5Q1+kִ_ovU)a2,B٘4? CeK3YR[מi eG%bX1@g g]UZJ*9pv+c [DLњROzbJMA~{V>C9_gr03ԴcƭaHb=EpePr ](R }q Ha#ﻄ/ zN4]v%-@5x|e ipe?AHnr}.*0._k^Ws@ daI~E k@xرDc'KlfC/en5ca*b^]W8:hS*G6wb^f_zJͥ(X;C1I_/;:CC)A޷ j\Evҫk1*TصQ"^}8.bO87!wnK!6 L xRu8=Z=LC0DЬ196gQu_JAjkA L;[s_'h}B,gd͔迭ZcAL*%p ] 2ZZ `X%ŕ7(q}clXq7Wsp: T3̞?KIo.i <=>eFjEOvS_X.U(!lNUMOpWo4%`p o!/*T?Dkmہ"qpyg-rœ4*nAxR7Uy}T-;E15x^osB>"pY_4Cql7= i2jd>o9r8I(6N}oI(OZ .ڍ(\3߱)dt$֩)t;NQPPƱ6عR S 4,nTL;ݼDtG~VN2K*$֒bLUI:r yRO(䧸Mϟ,cՎlN&||o\N9P#_cxFn7{+0~-[2z> ߡƲ3mӀ n",}MUnSI#1 }h@ ӡvZ'5N2eh3S꒗]T>`IѺRKa >;SݭbӨkXSIPBSf0'*aYϭX܏kF##-KRF\bnN guLPb$nryX#+)+T8J.xb. !j"y˦#yTŪ^!(u\pS*B82[sQ,nſ)fsQ*>״uMα8(6c?cW]QI\2o*IfG)}iSGMqժ9gh݌! ZrJ<ŕrHZ<jv HBu.Y."`p }S-Ȍʽ_IIDu`Qhл2vvsfMe39L]`'lLF2yJw}*8jrqLV2xY&bPi69c"5{ >vyr[Lw.e! z.e*qc"4i߱(^`"ˈM0m )v}M4~@xn\#,` O,ZG+詮jve6K%A j &t ٣Ҡ*VZO$[ub6@,,$Nq9 'Mh^4W[W]=nYK݆K3_ zl8¸!l>EDfOJi&Q4o!x~k5h=HPx[8ADi]V Z"TN[U&D:MG^)9m)y7#y/:YA@vWI'idTJ9%xp02< H95 I%Ueg#Ja'043l_5ķv8,qoC3 ;K 'R jIœ=rtwG[?VgID䂮q9yꔁ $'N!)Nc\tC}˔0%6cxQi3s3!tu_A}Js)X#.a$n)f|#FN ʻv <os[r~ؙp*\3{٠i,Ֆ;t$~)19{O5G0Na.Vп[Yb4F5̕OL@ mߔl$xJOq磢5) E~i?`CEⴶ `3O85'˺z;tdC]$Col~K6gL]/rqZ *{"u޽soGs \Aɯ[1f&htݯ8߈tu uQ/O.<HN.:KV;}@%DOӭxw%7#Α5yU[A^4ݹ<^l,X%d %qN0Q!6삕ln(YG&+ H6̝,*߫t(>R7H/F(!wwo 0 `D]#8 UJh:tAW[HcR]%22c6<Įh.]X#vypRL;%ut"'u:l3p|;ZPX!tf{&${3`7tm-%^[:15_Z^[5`n C/7+ʨg Ɯw}N{0uA;+dl(/R .6JyES E<, :Տ{|lWy—-?W;0|:#q-gŴnjG910ZBp a΁/խGmS=b.v3'/d^xr _Ph =e`1ԁ I*5fHrm5es Xa{֢jW2=0FjY!v'E? Y/.}ة Pc~ܺ9ȬKWPOT]rIsΛ,zƱ/`M<L/xѓ4)p͗qyXRp:&2? %O}-䎒֚h h 3Hڦf.>(y#4nTMq sDRB'ץ_3+"bM6d=O sSEM~qסވKC'@TnĨSfV{_"0[<NƤS'ɖ3648VKP/_ q+]x}Gê$HdsvU^ȷZp2YA(þFu,p<8ӄ3\Qalϟ_Ba@H~xkBu¡O`cv'Y Ak/;k<>?8Ny\[[ |奿tfg/y1Bx6d \gH{.? k0CҼ!Ki17+3tO(P}E`PڤvYc%`=AH}˟(ּj^tJYH79&]G.&>YH`(c딄_2Ea+JEFWo[-_3pdX5|$h DFYpK/LcW=p~'Ib} RP&$|]*?^Lqn"ƧWƧފl?ϱa&`L7i*LSYy@Ф"*kt:)-1a|,-0PQULRqFafɀCtyԒG!g؟%E_(T=2a8mT,m)TA?U*(uy!BBf8$6G\o3ϒ(8ӕ5Ecp!㭾1,juxB]%V\x%ÓୟM;O98JH`E$lӝ|Mh.}0RIdn7hm3/PΤx#BKY=6|_߻&yVaUEcD!^ 00"+ 5ԟvY~ Ї5 \0`}8kLVL8NϋؽmiEmuEBq~t&sKOlVkX/o2rcC:G4)Sy^f =C+EHA*g=-8a{DpX?Rk#)}u:pYB- YL- 3{Em,dRL*[?!s_D`BT6B} Pe뷄l-7cmuޜH+pCsle;5u7G*Y[m@g!{x\E;f;ͼBlDտh8Vv:4cΐ@?B0:Y#u|Ǒg!I>Ox2F(oA,:6BsҭEsJڦ/c͟lLEӇ4bչ:}^^yr=wJoe`xW4xS !B&* kltM>ٿEqm92'k2rmN,ie DK8kh`D},Z7ѥ-YQ"]ߖkerK:ຠR[X%=bΞHd - oIiA-XGHqɄ&Hbr = 7spܶVSyG?3ؚh8LXx;J"{mR r&1[* 4]6M[qeS SD~䗱i@=_% FcL 3ݔ 3~FF"IxJ7\]1 R7^(iBK!/CL[w5Q- RtR[v0775#XÈ5|-?t }CFtvs. |bW~RzBFk[->˳)2wTsA*p d22 S+_MPbPe"nIPbc}huK/v#O!ʵK"SoXb )6]E* κ|0E~ 7(FԠ+ U 4 Dab#v#~ʤyTkr|MjE?LNP_`rE8NgwCCA,@6lZ\(h0a\ZݶC2d#s] !P2O>Vp`і  +H~~qqgmδ*ea[Y N67`<ÙF.9{Vj_>sig,eϸQ#FpP@,XV4J"햠-K,(G :vFN y/w^jazf ƫ~uV+'?^OT(RjH>ˡWnPiݏ؜%}T,)೓n\JO;<;FyFU#‰]tSy玸4?NԺ`mR <(}1l~'[-u,Ǡ<;"w3tT?ڪ@spO$V5*ĔRյR,4&Cϳmi*ˆ*8@< M6GEm`[g#204ӅzN,2>W--܊4<$Iwr_vfvnum'?IӷT) 66̋dҦ +?X0ktg7!p$7)+@76:`Y(/R2&:LW.'s0p\KקM qNh]<p:M/~#>DtNpNr{^Mpβf^~|GR hKc rcE*Nt3Ua*eUNp R%;& T6 c"M|Q~2)BO @ErJ?:r>ր&Zh9 !dz]0ϸwO8[*]ֶ)E]" ;[ܮSq֓|'#BNnE&_RtCN_ 6:g}hzza\W(QrI\t!ob}?GgR#p)dM%7k!2}?Y]D/R+LŞڊ V7qu7Xe Y1~%g%/ o>#p&RONbE(()T9I򾫷MN98\0{DzVY8vXf+P)W)UhG_e'=%#ETb\})T6ZnvycGu 0ZGdvBu'S_G> t/ C\}]›Y1KV17SkK8I_n-”R#LH(NHʑn <)iO `p{?U{բDP{F'IN0c2#ٖ;n=Y;*WJ !ݙo1!/ib<}f:gFsNeo@%丌ں.ȧ/qX_> FLrg,w+ {1hb$gd~#FVHȧ=cU=*:Ь\6&){c)J5<5Nׯbz=D \k.#`G ~4F4W9'k>2sdtpW}$"m^2O8sFYϙ0Q3x@u43֪oK:*aIr K֑V>`5X"zIT9K[R=hp3 }{|w|wu!;% JV֘Ye_X2n)۟mM/>y*,I<iv3pZ9HD1ZCm N[gU|=% _{#M Q~\*U?]NS."ԖQxi%: Oܭ]7;c5"jb0x]\ AT/WCcGvAEФՀǔ̎*'7A@U&;$ 䯺:4Cjzw&m+!p$p{[ݧYuzu>xWi!Pp+u ЮE3;9{:J)3W38/,xUEiPw)$ r]&魯'$*խzaቔy_3 I34[ kmeq`d:읭S `lLp ֨EA6,-S9;xHcs}::}Y4\+Aڍh0aMihaghܤ. Jm%O%W.V^; *o0#ȡc\ֿT0It+MI1l+rQ"]67da  w?dC, Yhql6B?@ci=..AtwOhC;*∔pH߫_Z|jᓴ.kWb~DÏ*A((k`LY:0S0#OU\_7P`ү0ֽz4ST+_RKY2p>{0 @m:YY9~RL_ @?f(K2Gu r85 {uBtΓJpk~,aT Ɣa5q77>x}ȉAnjxޒci? }j^"mcjYo)^y;B ׻2_ ݐl1ܠ{ފ (\7?Ԯ}e{NpuX^B9{RWI8XQiY)Fܭ;oފ0~GEgM,I;hU pꝲOn.F:hrA.mD/ ܣ Ê݃OkG`k_ݖGAw yZh{٫Ћql v5Ϭ1@?w%ж]d2Q&வ16MMf@b#%_ A;#x|x0dS ĎeD(B[ި$sQzA7nmMߴ T{0U6̈́WA}ΰ?AC٭زM%IP`RINW#-F9?3jHn޵zBNt,j)RaK},*tT^al÷ד?V+<#ҎjH3h 43IFI?d'Ƒ۰rnvy З]nkFU gK6hxC'Y3|kI_(rLexH\5+>ϣq2܏5k'[+ C3z ժP_b[|Dł@3QL<)cm  r]7@1#nm.KCǷry-Y[Cwp5>1w4/mb5f;F-TFb&h#?QIuh]^2 NvxNK6^Չk]j}nt#/-~A(rPEo/DH[=" G55d!nKաOo2mA tRL3KM>€2j"v8]lIYs\ooU5TE#V}Œ˕ƱȦ[U>Dz'W4^R(޺Q¹R\RowUx :*=X !|mtt avXkN@oZ_yA ҈8|Mube&y(M_ZpVnzXEIJq4*ppPǟ7l7V^NR ?!@g}qv ~p( S$gCm;p  Z<!et]WBS}˘SqMQ}k% >S挷\zpf$l͵2VdR㠭]<,02qՁН -"BȒƑX'A17n]0YH)f[=UJ-m&2/tt{tbvSlD9vvijWg`2!@n̊wekg=# jE̍cҳ:j':TF-¯np@$ƀjGK }2MHC H(ϩ]F~ v_$Ru1 @lK5h3ЋH\A g#um&ЗM!;58S&rˁZ,NJvlX5g(~695i‚[] 8ϮO: )8wG~[ q-N)VbP4Nx쮔X GH/>mKt1ۊ/HJYҖp;PS :2(+P]]-~kS`%"* ë~?֗sLؿ/z$^ +ZO"qFt4+vw98۾7t"H(5 ",;dGdqT JU@qոPbl?ldAJ?,(Nq_H*QҶp87cpj8 側q\27$إa6QMma(ܷz=3y94ZfK61;;6AOj)Lmu3EP!wx;!@(BW8Siw%(d܂DVH7*]l)͂4h'F&kUOC(ѯt꘍Un쩫[8ޅ oxIo[,nUJc9FKUPWDz/'&[qdh05&4!RD='F{UWN'ciAGV'Ó[oؿd7??!@-EGj W/_ݾq>æ?ױAMj%G v(tQMe tp(' H(ϋN_|.`xWf%כZ1sb V:~ tĽuMVYkt@#{@dBLUV?I ,6“ſ[r˚+?.ɭ!C8< Wt\,T|GLe8[#Y~OA:-cѪWt%scv)c_(9L.3z9"#0(Ǎ#cgQgcdD X! tc ڠT%~[s*_ԏ9݊RMi# s7 ZK! ’e/'wؔ'ã`2}䖴 fetN-G Jjˡo;w/0%?rQԶ?7y eS 5bTUv/d{#(!Dpw"e+K0,mYODW.1w,>T<&bj[UJ>ҡzp[>y^jcG[cjiqmHQeOo-FĊISko[ I@Վ9T <;EqpB@iɊp%>A |JS:hSL n1v|2kNn:dg=yV2ī̑;dγu2y\U1 ׿I~5ȁnElZwj^iIO^J'rZexь›qw7e. gp J n厄]'k8f5!N>.ҽY,k1ms&E4ިJiCx,-5D_'.4-:]*IzS2bK M; 8A`R98&VJwf-jdJϓ-y]ol]E \% |?kP˺A6>@a}7*Ģ "ݜj@(g]M {w] D78/ﱴZa*٘ᷪ ,H^uJP(giùӮhBPEh2hД!\RڬD, z%Q!l߬Ы̽;%0#cI!cCee&2 Z9dG*} Nd V e&K$/G1.ZѪS [U5` nT2J| ٳIKUBUMOP%UF5*"lBcm)b;Ry確 )M#/Nxv\znP-Z$pY>#+U8lR6PՄnz:6U)޽!,8r0gb>_deJ+٭eBZ=`)ԙ)ZEKQe(t+@XToJwr:7n)>Z$x~K p ^.Iu":QSL*nX) vp0$X`m:Dq |)_X?]TiT,%Wde݁'@-ha2/AnL1UDj;im]8W6/h}HIQ?˓yDÐ);hrde"?y;$!SXOYRTK -&DX)q@ @p>xfݔg#dkߌOW?h~YD7ZJvXNQDl4kds!-DۨIZju\p+(^XǻֆUbGRNCM"Wqxz@t[ PW\y)ƪ'|k]I#22(ɅuhF})qU.MJpPr ߧV5= P9ym)|Y^!x^ϲ&]MqqJ GK/ HOszx |eu=9ERFnkMwA:8v }mshau`6C-)+Nl])߇ #Br·dF'$ar%mW(aLW ]pמ' 7!).>L8 Aѣ;[M^+ .RTB^*Z`B}O6O]Q(i:rh݅ M=ڼɆD[Hb1p3:n\Inw&SXDaiXǬܙ/ilHkĮ[亟 5pK/xLpPw&ז4{(ŻT^׸U,2ȁ|\ť1af 1VuOd}{ohlޚI,>M# IN:Pt+" ϡ`cPpȃYyՏ! bglnχ`g, N}S[)"*46FL½J&*mL-@2ϓU-J i}~_Yk4cLgWS:pr5v62t^WXg[NmЄa,fZ_Sn6bշ΋Ak2_A5ko@u yYv#YxLJ"SqBf{+S-C((v ]̚LyǕ: 4:|:wE[ SC$H:T0-W*(u}0e%b$xGU3Cݪ%ͮW0ykr:moۚQeBȄR-~{l1Tח*on< vq&>Y&*8Q3l/̯{0/ޒdӥD]F>]&bǠiʺ/Ek Ys""Q5._1+1A tDj3 2$,5װ#9zxQg[f~ٲ=,rRa00@~e!Ѽ'9@G]=EKۿIZD<ʠ`*bXf4c05dt1>w cBYΒ$cjsCB>╥r[!bHOO?`Q 0 4l2P /Nf^rbGҵk  e@x *ViHT;)Ǥد=;FA,oiTŪB)O_KUs3x#Ue3l{=yij$f%dR#AA T]Lg44dw)-Q0d 4 oU=7+ʁv@TgN\F4\οD/{ @]h ٹMyH&vzrKyXMhۧ$t+$Svl ߌWѾ`& -9ӇCFlQJC' WmXtyԖUd6qlIk7+g 1:+裞[dh9̵,Yt̅{&#j0v^! ~nn.S1n S- X#0}|WԐ͘fyID$/1'RpI:ϼ;D8իwn1!}Zsʧ.m -q?ECUCqou {ɰU7/J{nId5u4~woTslf 'E;W>Vj:y^1XEX[BDW n ^>Bp*=QpnYT;ȈכF6c8*WD".:&NܻܻTlJKx$1L혘}vv]k_EDp3ѶKr%(Jo!Z==7UOzG0 0Uᱦn3\< a'oFq u>@8A G&b+ywN1'D~Tucʽ.GTՄ^8mLS}+$.`HC0cF)۲ł(@nTו@i?D ڍ|W5y6w-oe1A4qU~/ e1Ri)%IlC!0Itdள&q{cΒ-w( idDQ`ޱ/׌E6ɫ:k&0-p4}1 'br7|-,ex.3?%4i{*pq@)AFQTjyK)jRqГ?/xmh,`sj 'kjM_- ~j_u΃lA3.q~cgHVL \L &)a6l|ɩJZ՟X9 ߞ!*#Ob۫B`$ |i t9=j. /^3m0wcXܷ{f@E<yX#Jx,E(?Vvǹ#$w _OZMy xCNtK`IK[Z8HtBd3 !e䕁㣓,ִTWtR/@G6ҧ;wrf-1m:n_$ֶ9"|Ы lk/=7JvDd%9^2&9G+@/8"gL~G'A٥h E 9D%XVZ}>!@YzV[~: 6Yb5}dQRH;jBFѡ>[)ts?/ U>"3E<:=HJdYɾp)y$ o5>;=5عꐰBQo]<v3Jrmwx fbEsޓJi6I>ͤ"do7\ϑnZGꢐtrxĵLFRVQ4^`5[!ߗm}2.FmXI @!txn9~ g89lJ"2L8{{]oR>E|S-vLA/o0%grSEbiڌ?C C ZVR6n%D8DlIa:=\%4HQ 'nEK%D357u5cGr[pd]F@d>DsfkC*Ϳ{pGU&z>h‰bL?NCo5u?ԖW4<}_N컝Œ& ӷ V;F=0Xחj UZqkrؑP` GUl>)8Ҝ_,*cu|]ݖ}S_ 43bXJ3lb;+"@%Ԟఋ̯_hmw&'@?gY! ) #`c_ ,&,y\w#w!/,-7lX, i!oe s~t sð;'K|OƴRl'[=̻nTJP؋"jr/]CqG$ k:tNN3ӁN&Ƒ3ie']c=EµTؾgؒ9,/#nMCɣI4,0}{F0|=>tcj#UVϛb2`8BDسeK>iH}/V+VlcvϣK?vm%PWz_Y1^Qvj(s+8a}ra64L򗄃T W;*heITN-Z; 8ݰ֙@Գ*i]_<׼5Znr`_\j}xw g (nG2Z;)ιE5K9O4#QNnǴQ7Kp9џ0t(38 *|L _ KbiA|ՇR e?UĸÁЍTe /.dİuIai XK|M~MBvE}wWX\C[F72+ 5f\'|a E DqXvCfxBO۫NH2Ы"t`,JghcY8ԋ~t2mwr5@||_pjg V¦*":?|\*k\HkBw>c<Z4Xwwy>z4,6iܥGXe s6[rʙ.hdl;E\P1g\z/KECzSl"q,ו㣆2*n' 1x*nMˤjMv,21n?Dtm3/3b2Sx ؕk ЌTwBtT1D4զ 5.YkHB>3NBL #khXvRbB]S &t 2k*S]w|c!u 2` 4ky& ^gN]+Gx+m *bIB؏]M\53x4 ^Vlq[\p&gxҟt%:zL>4ʎ mG,pX+ɗ%NJ1`T9*=JC6Xc%MxxfD@@FU+,?7-{}u(*&8#x]DݖfKK;|\[/_;mUm&goMp?Box1ʬMkh@]X `O{xg2ٔe0GcVc 9[o}{qzpOrQ >gj0ּٛ=|g"5;ar>Df*-Η@Q~fuHzQ(!h3!Sޔp:m1cYMaB1M|Bؾ]+pG"@(C-B>~`evUE 0q&ff@ 'ř*ע!ҷDj OԛuhF;`{ Vᒚ.lk~0<9On`[@(C7ADD*2 %vuqB /Q&xg aexr q GfovC߿ICLL/ C1?7]{i}IRilbS됁/ٜoNgHNkVJzF`=ƶt5ll(Av=q/,',2\+{ ۀj%ͷCلv4VUT4YRTc;/}[pխ/OOiTt_aԣ CLXse=CNas٘0[',;aZTEر| EC)?ܨ'HY2_>Y3&׈9"!B[ZYǫT?ōH"҆xMvV&c*UnNc,m#}~bjwqq?HyiMP 6ɖSk?$uP \پܳOBe 1Vyg6mՖJv` 0Ĥb~*:n"SBF ۜ3F,(- ~VU3:ǢU0?KlFRJ+đޑv<[5O@ͩR׍Gv^+(=YsCiyS+'h>G92oRZiRƒniW*yjIBp>V_ZF/Fu_aˮIV=ףƈPMn-6$A4]8Mt> ,9>o՟k{NEh=] [/rh˖<VhvUyfyƮ@u%#2DSu/?ߺ6,n-G$v2ju ԕݹ,h_[aגpuAy+x| ja6.Z&aᴋC/'*/x#>g K&"%j\W~v '֏-ACݿMI=Bm̽B7q Ź1xplk2+5|o)LP|x'.X+}aچ hQ^"+s]!y­ 2f8{ "KRii8cBc4iߤ*jԾّc(]ϿzEuA֤uD{/ȋvi6 u-MMTݹ pa@lf Rxj$EZ`fI#WawHzlmb/y#Ni bDˠ|x|5(6UE2ZR鳍t=N fS1Rجؤp$>_ r'c}> l; I,.mApȩ.-ֵ=d5{ ^gRž<ז- 䲰m\?}w>eE MÓW^t8r]za`YiRsPڻ}m;bhp$̰XLոf̡x{t̺MN@J[Tԗh35&G{1]JAuݠQuK4iW{nl"P*!q+ݕQikMZ #b^X m؅gS!V]:yɽm&E2(C>8l4wH>49Ї+zu8zdVr> 8.>1I{g+Sܱ̐+06TV@>DKC?jAu޻/u+Oҷsky nũÄ f' jwdcYߡǏ=}ҁcL1yD;D=/A~쁘6O*v,²Kib @.z^魿J9ӞP.ťK+O֏{+XӈQa#~ٟY7K]m-|M-L~y$AzPyVDwNA3touvŕB U}CřP1pwvC#H'ց(dfDžG6(a2 DZ3g-䣼o%2 a ZSA v)KSȝ9迵T;ŞTwH;/{^t.VR>e4[E>T."P2T\c(55cp:5kt|uQ-ԉAUX"gHg=]XҕT:(:y$`v!طLj2}[o8w^Xb}<}'L]^q[af1hP/Rܶ+]ʲ9*5_(WULZWS;CC/˧EJM맚Yߜx"һ`3aPߴ4,(/9˯V&,ɦWGLӥIc )yF@X5 `ղC*U.r.x7{st$Zev6,:cdHif3UXx]-tveS(9Ãg%bW1ǔ޾ě嵔ą*2 sڈRm,S,9u/,hHWI -6R^jlOB1/VƓ~ۜ:Q+a m$owݣL?x:E2ɣx:Ħ| r\s7 e9r!=hne2qf350&fyɷf$fE<330}h=j7t*@qT55uAnX.Ό!ٝݷ#,_. 6~DUulHF-n~>,k)Ve)0]ݞH xJW:e=KJP:u07a~$4|w-vڎ:.ˍ ._-3$K^p'ȣ\d#wsM1Y-E% X󈥔+ %&[WAKeaƒ`5r I$^vcC^wDzg>zEN%1y %qˣLc,'mwk#hs{%w!7auCRH?J!` Y |E?ic"77P1ЩmV߶r>c&N j?V"'ѭB5P-f@ێ\EJ tt[ez;0!~oR&a.Cڙ[A@EVjjP4ntaR -H^YqY_EI7uE0miL9<_ m`+HkȶGβI䇾jLRcGiIؘدN>u{_ʘY|=VzTC#4w|)'FeU)wSqy!.HbڋR7MoESCU 6{.Yu3p V{;)8 Xzg=hڋ2B'eX)>5mćR [Q%F2/$ [dL-صHlx:$6>E|KMgi(bcw%bJmj'Z$awWu&e֫;-=mDtWg%*|`G/ t:q:V c6n㘙rϫS$rN{j(Ÿhj@2ޜ0 }uب=/ s>P\ _ɶl7e*2[Iru~"My<(Psxfd - .ֹݩ=ДNAD C}fhXc` uk_#oݘh NrLxW'(Y9blrz&g7@PLེ7= Ay}[PEQ]:kDGRmo\aG'03.OZm8P K=Lz#Fqs@s j@Lj! 6ÇR!wkR$'uu|nOQW l|,VG 6)5 Ǒe-"A4+ŸWJB 9އF ~փ^=648{q:׽~jƁ{y hh!TiU$~\e}?q v6!;%/;;!Yc5f5Jŕ]j=dk$:k4aw"WiBn\, uV_(_sw+"DI"ruBMf!s2r4\6(ò0_vY2l.M~cnQD"5JGAbuIM܈y,N#4TsZXmlr87EĚɾ {a|=CJu&$#aUQys*eӍ4]lz4.ʝ7M|`96 级zzą3}+4yYrS+c=bɮ.f=/.J@XՉ1Hp@i{TMlJ34ѭ& n!6r6"#ꟹkomm!]cmN(܎2+"&򭭻{U)+t*Yg9LYTA_֊˖XU:Y*s O[)ޜct #F^k |+,H9㺥u@O 8HZ38u=qGlRC{{3L3`S^@FԠQ**q C^k}`'4 s0wF!`Js7sJ'O=F0LwZn2f%&Q*}A I#k YP}D >K+ V{,\lnc/(ZQ Zɲ@lv!XJVh".-;}SMC$*  Ӫ*Al>&g{-ý=u;2Q%Q֐޷[_tuxi+ >a&?i_f$=Z}G[;H&4/%rѨ:Kr\I٪ѐH t$pYv.N*pZc71]SJP)WL=f17V ƫ~At@N&y%Pdm { TlRͷׂ~]P`8tW 1ìO8ǪB͹~PdicY> EA#DEOD d69Zz)u@0[Z_2aZ1<(.z,d#w|[i({ִm@=,5{QJE̷*˪K[;aRHt&+mS%JJȼh 35 F{F:TM \(:(^B;)s TˡOUlEA4*g u皜oTG!qbLif1״K4|rJԏ8|F^̴ ?ÜXGPdZh"fպrV$M&68S yG ڳ`TBt}ˈmxhc{eܿyv( It5I^nw.k6 _j RKgi+.زxϽ ӌhy,˗S(ͿEѵMYG>0LO} ٟZW %Ubk+,~t J/ +SJ`QHųoIHJJ/;6"1Rerj٪ۇ9cA89?Tb\3 EW.tb<[C@H"`\?3-~ Хoat=bvk+S (tvmו kڲҾ`)BJs LVC'4Z~ AL+S&^v̡y}>ߧ˜u8[/G2?afʫx3tu#pɧL%5kPwZ¬E/hSdr3$>8BMkp퓲79U|w&cmsWkxoJ58:fwoy!aBy.-YǙ"h%JpX;O  {C]zOo=OnE㞛-z1oBUؚJK'Z=m\!Go'K?',|λh1Kw=bJ lAc@KUbK#nw 8Һ-NRR46VJjۻnGO8B ֽ@*3 DoT^O D*(>}OI7ENxpR۩H4xJugc NMr*jWO ÌZ8T]:H@wx굨 V// 'fxH8ɡ\Mߕ|#,2bӈY|󳓵XRG tp)YυE'Գ"9Ut26>7#d>Ut-+^ȝd씊rzѥK,]3\:J5iJ;d%Ld:d,BӸgF5 h;oCw.8Ou:?뛟Hd3h [,KkXƙ::zĂy_j0ܖx{<~B|8Z-\ MW\15)2ZiCJC~ٷn ,ÊgD*44 Ex^c\5\ QP8 A]c\Qk3KNAho֧ z&o>z7|1aYK XhW+ yg[f/ag佌څߣbߊ?ZT1Dy{ *rU3-+߹ X8x ':PG&$/ ^&m LvwY!?&ȨO^xoS?7f15:j1yh;uEt Bo‹Yk2o# \XƳ// b\QJv_2FaLwHۢ3 ~N+xj\thqlMAkN-^GWfrYlu[BP*G m~3bo̻5 J(#]ۼt ƕL]VlņXqy7IЖcTy֤t aWaK (c |OHl}HCǃטO 5t:E9sK=41Cf &mRrtXjj,O$MZp5wV?-w4H3b7XWCN+c :+%ѶWɽ0sE|C1`4!DvUU~ IW~W}h |O ?9G욎I=cP*Jyb;,M~4rl'swhv"nn A0.B(]6Dq (*-L9n!<`$4KoW?zI mcp!O"otz "tWzJ|,~R"yen9aϤNetGE\:/EWKPGQI4Kf ÷-mH{ !} p@0*9}) }$YgJqh~U\D{pUҡgd-6zD7Z-mB?ۛotj3U 4Cċ'#yIo8.7&IHQ$NJ4Yk&W!dj>9o7˚m&yC0󑙊M9FBp2#eۙ>ytjο>&nmD37zsÎ'yVADR2 O HFAJ8Pɖ:)j0ʪ{BywmBv(,m0"]t10"(x5:݀R{XR }A<3=%ڎ3wreҕ* 4L͇Gc|#^%.c[  29#`>Ч@2TȌZƽ]e\rK,S 1o?z7aMGNn'/uK;6ˢ-!Rqm3,3t_Fϼ쳘u}d0=xꣷ|7/8ZAb8PL2a? 8r M 4뷂tKDV{\{lO=ôp U,uR~<7/̈.YyCJ %wp,_ʨή8 kA*`X4ԥu,̕4~ <׫T#vs$ϖVC+%&NX2fH_zV,Q".cڗXCOd2wS:>|u-Zl16nS(y*AG9Eqttеq4ptY ףr/uk 4YZ*Tݮǂ ΌŘ\-b3l=LVfSxMP" Wۤ<1_yRtgԟҀ:n߫;<-ibF;$@oP@YNXaBBjȱP̹ÖI1jZVޗ6!C?Xn#׀}z 2ϸXv\CYq +. 3-d楘՟O)Iԋ7Kk5̀TDkIu.>B,;*fp7u^.<yax;ΜEL<|/UU*~:z>ffDQH09"aBmN+ۨ>ūYvgz7Yw7Ek>3Z/+"#ɰ$]UΘX`N1^՞zO MkOPǠߜ//<~=JrV`t6q/D|fGZb/K h{iIhO4f->JF~iR}dIŽcN*ڜKhN̛WS4pN対;8-ϧ)As8&wƲbІ-[F-o kvy DdrcJ C<.oW:bPݴaƮg|?usg0-@$CTh u%[IZV@R-Yz J"C%< aCԠ>YC+ !"}n fZE.#p'P",4톻]s,;\,~@ P"Et~:" CmYkS~˜ b41jA!`>{n i(FfG\7㔂$|l'*ywo;#V8BG w*vMQF,"e"7D_OwrGV{su|Kse+^Ҋ՞tkVwKѴdA2N4ȋR:D#a6RV\U ˬoAKG* 1z m>jU Mm)%b$RU'='lGޜ_ !~L|j N 1h>ysXRHl)Rnveb|/dj˶wnfX0R_ c|}꩘JGPW lb^=W_{6N k;@?`mxX  ?z~cC(r@fI+*nRFE|[Y!lO&J8i$02;y+EњM"3ݛ~z㬓軈[][nmy =j8޶< 5kGZ$^laDeӓt|TZQz>_DKQgT!+(d^u f*tl^⽏]=o~ `T.Qclq.{nf"ݕNCizo@Q>{f~{y=t.(WZEΔriFIsgXL0wU1@ V( GP0(vUDxc殀~L[~ 1_Z c^JyilL@:gt@:h/̓Xٙ$u/Ii<Ӵf8L6Uk&*rhLruZ+˔R_sȸEPmxz =l4=nV3ۂ}'|zSUH_Fd14ka{Qѓ"Py$īXbdb٤A^ ;Hga=;٢dXJ8A>n P(]r;8ބػđA\{_^;RYL8 vzrɰ;K| G@ySq;4".][tj0j@|/[Ik>#yLk$Q-<dh N'hچ2Yi67r|>bKP[.,ٯx,:D mƪߑ^۠/tlK= N=pIBZD:꩓A3^*.kb#1ĥN-M#ݰيݧzߜ s2T;ƫʊegTćG65H d8ABx<wZh}×i&)ҐWe8lh{힂M[ۙĄPh]Ff]׈^Iw{ *C s0frb_FTkOs7SEb©4P$(ߺ*O-4u9d? 'O[^.2.`7y6R /9. goК4 &$v 0]5dL:"qQXdA$:r'ycHtsF.MWdXGz3F]i:Jq&12[=9ҷ;GJGe;̂i;&uSuU޹+7o~)=0W ;J~]c6nj݌l%%1G8vJPvՎkn?Aݪcv,ˡj=.RR8[ {i3r gb6P~#H#rf*Lչordz/w~§~mt)]R ]9w-J]1$ hF(ySg)21>2tȃ +t Eފ~90OI2c BjbDp7L̍]$tujȻ圱G'sdgq=g(JxSC, E_;JF%jM|4'ل3}$٨^; " kÑF7؛z-8@ՈJ6Ɖ1e֢RZxmc`ZOr ~?1spJ7[m:?' 4oW_~ɑ&|3P ,,]ٗwO-̭e7pֶ+y\pκxLwyTTbwrBT)oBy 򺎠V?ף-12bɉiX;c#)M%4.\_w˿9߉P\ɆBQkyj?v5IXN(oˈ`A_vj`?zJ_R} Rp-+|.:g{ŋRܚHe|ډK]r9ZґZIq*_2?Xn^eC|= fs'paJv!R5Ya]0&p"9.H}yT@ܙ<{?!Wi$k{Ւ(\vࡥg}JIk6XtӰFs8H,"U) =t'zshDViJ?h_>q~ N+dJ4a1 R.tA%979`r#D%H%gOe|ee:bpar@Yw)0~z4LV;ȣoO}%zGR4cL9KaXʟgiIqT~3F̕3|_^isEY!'],+Vx!H%[ˋyNWxPɐҜTzu6 Uq멻c2X31cI` dnHT! 3Aē@̟bJDJcrn3f Ӎ'`8 G;4CMPfNu=fU8 EW%5fN-ض>"{! maciUۏ/ 1@(fٽs8wB?E by ZQ5ZOp}gJ, E15/1ć@EVdda.D?IwU4x\?ngwM7ӄ hP^a@?KǕbÄS͕Ͼr֘:x{1ި[RRnYpI&1 2 11'^|-t $B*MnԪa|Ɛlո/01֌,VQmLϐB$x2%4Q.::VcBXݚuixwhMiAS’1yE\xS&whfƥ[A3(Q@`=VdGR矠…|F-Y sshm{]"~T+}kXOJI! WnO!5> ν3_p= Su$fŲ٭j;w3殒1Ԭ_ i[)L@ga*I!< d冀dES KRyH*~~gB`L($ ѨRD ;cu<#mZ!3"1fU F/B*"m JǣShL:A4hFF$=NC16]z1 qSWcqt:Ȕϰ+YM.] ãΎĂ%43uSas;9 ѱPJ"Zěx٪&$&Uh@. Imç28B9! ݲk l3j%kOȋ򑏂iTAloSѐtp"31e/@hxcAW2a6+i][t^P1Mڲ[%Y_ØkIRZNB:@(CDKd9v[a6VY0G V2dV#խEJ[}]mɊZЍB262@,6F *UPD~K@p%czD-}*7z 3f@j~RdwL*`e. 0|=-!8%-jr}_jT9SiFG~Qrg R̘6C\dp5:1Jp'QhQ=a66^ ]ZɄRs\=3lσEvQ2I)0.EdTXD}z.)ˋ8`ATaLK:v/uj@Cy>:bH1.Qcem,<_C?= [PFR͍sަ-QpEjv+4)5/.s#wnJmh͌DODh4ԔA`~"h+t,(ϥ (f]ڒ7m\!}MŜ~2mPCSzg&3ru҃ZZF 3UBUnįduZ$:NFp1umM JHb~udi!' mCڬ?K3a;zĥ҄V$⑰}wzҩoTkKӨY՛(mt_]^E2J7n  mKi07\P"fc)GrDz4, =TЕ>f 1gbKznvq(+6=2\@a@?/NR5'^HBŔ3y6^$|1Xd%7&bB|_J`fk+ lCx\]8a%ҹNC) +Yhի =6ڢчhStIR4){uf")i.Q\F)/w&P'\rdfů1ߎ<0EdA䁐,U0ɋg=#Bn+_g='66 O2V4/#~fuW\PWfFB襳ƈ\Ja1.OqY,ʹQ=WnTzK$EM;* %]sY>oZ9zkmwsHv{(S2~6$ f$@{fOʨ^ O{tw <2GbO s0Ĥ~9#lY}J;NxfaqA9=];RbGV%żP8编<"8'c/n1((~1gs_uzƏ BDw40YS]+ev+I1XSȗVێ&̯u/%2 O"NتTFcqapY-S܅"Sŗ='8Pm8~W2}X4lv]L/~ lebKYd*mg%oц ;ei9;ѡpӦQzaa$$ږf?ؕxB(ut |rEA] !H{N|j7$BqVB]MxrܰަKZ-GgU#JRE,kp<yowYfPȿhď7}8EB6tsZTL°_j8<uDzH8ML,x㲝z02sE5G"A-JLvςI,-?nڻ2HumZW;-4tj}fِz ڍ9y__REgϊBd`۰LR8'NJeA@W;:ëIߗpmRQ84 !Cc-M kM=*:iYFaԂS:2ZWةc{U3w^NeO=|$$ŹCj/&8{{KG" 6ܯldрnh; 5c;dMi7PM2r+VG'oǽlIhJŨ_ǝl-֩2W1Cw@nLяw+p&)3K 4m@{enZu!HBd֝ 0OS=h_7m3l`Ђf31-5\X -WDɘO_ՁFla/P%ŵ̝  1C¡Y8nhe3$&#v]':LЎ.PI_8xSX 9q9)*}p^/U)c@[p=s%FB?橊%-o/et"<~ieהyIA6bΗ7 zPUsHM>=5Ursg"3 LW,8背x/ k]R z=:"ڧa,Q=ElE1Iw6fO<!=[)1e)7٫ #{e}3 cp<{W6ثqc4>œ.ɠ=*ŀ})"ۜWv7+-mJkzD L}#Dۨx9p"czݡvKҺmU?F5`-$kGY_)6u+8'1@zoF&z1[Ţ\V)6[ޝOd'{m0kkU;Dq#M_ S\(%_ÿG6=`JV/i2PA\3%s|"vR4{&9J*BW5ɪNUQ>Y߽Ml|02SXys4avn=ojMilǍ VqV23Z]E\]^8 #hF L,!!Xi|%ڱpl0 `ĺlǑ9BQ 2|h 3.8>,lb@4&kĈnh3e (> ~Ƞ,q7!syN?6QKdpD2%w[ѱް4ڊ 3X wW6cVĺ5Ն$9JV99E=jd)/{|kv!3UTQY۰*VL?jbFuߋL1ޏ ĚUo<>ŵ Xk~4'E+=Qxj}imHx쀅#GGc?"!a&̯%a: Hu(n]pi i[¬^|8Á8Beݣcx쾡Ξ_yg@& [SiJ*1x/Cy-ũkp+tN( IPWkjGc||XVOj-Ynfj!jQ5 xHi8HbœX :fCtyGCVzNui#ڀZCzzr!'ə #YIP84j 3) OqQ`NKwE _Ǿ\e ܬLU$}$CjnQy1A!#_Ugh8%_ jhS0qqO*#ՙi :`Ld8J/3쥟uY`<`!$L7~+`鞹T_ B]EbA/6~BpTeQ7`?l DA)~9sڍ\qe"5nfϪ3" Oh@`hU ߭9G(mz=5EZ*ѱFGV wzw}3(bh`x /个I@gR B\% aE% UfO䜆'[p;$!g$ Uf"wey~}#Cg?MZ %"ٱ0FcvzB ]JXSMW>F@9Yп1U|x DIvq02`T2稓'!{o&&?P +H-Cfl ÑOG`A1{.̬Ҭȩʋ-U?Qw*b 2Tm&B<@ h\Nl,,dZ&E P0m AX.~سiE[*bQFyiVr4OA3HT&='&cq-ek~Qkej X";  ֜2ǁ+4o gwk*Bf5Υ2mݯt 4ho/}r(r0NÃ.xYwLyښsc鄠8U)<R;9a׆mcԑ2$%y3sSz{]3( 17T:q01JXg5_*9l&3B(/Bs&qӲMI %Z4Ƞ,І|K31 X 9VH'o$a:3A(fVq?cXi_c,dzC:v&>e!;? ęNoWV⋓JeaҦxq w P.c.$< OΩ`)#7(ub^@ QإrD4,`b1E} H@a.㪏;^ͭy+˕znk:v5"{7OyE25!gocPI{WT.٠6Eϙ 0i<ZQfyrH-,f){|)ߨ^W,]fŘmRф!M>c DD{ؿ̣GHxM{kmݚD:%B:;h+VPrC_U.p) n!ث77=7wR h ᨫ_31 ^ܰ!kYl mTL6tahmR +F0fu.BP(q[Ja,dxx}: ũ0mك8#/u>]ʐyZsB4hT𤪖TYЅx3n^w OU85rgwKuON^-LIJ0so: U1,=5_>Mݪd!ufoDS[h*ۈ@2cy! UpP2Ѹ@Eo'#dQw@>/Y*TeY3ӛv3NOkEbHEn{Tv5"SW#{Plc+@Yf[ g~I$8c=`CS>s;jGۉյ[qvцM҅v$3]sY/RxHVd^. fsYekSMY@0ܳZyu?R]O\3]-97Y_ oN+nY$cL'UfqF鞗 :yȎtd)/E.3ds0ޫ.Gpe j׎0$ᗙV|2h#ؕ xѕ5c>OwVzg/YM۴g|j^kFWG=|q~rUm+Mw\xe(8+C8HyE?T<C,<};8plNKՐG6 z]haC*D(}- C;̦VI<&)  Zt0YE:ѕ*>d6}pxizksEU5foOp2*@o(i723,"~$.?,2:hf*G׌2cjwR%?┣u1-.F(ԫj/p$F˔_U[1UȶUgI~$GɊ P [V' Q\9H)p~cB@Lך1IWKl!}DUJnо^ic '!ooD]Oo/p%yG)qyjK9ec}+SdUaA^j>q ˛ނ\K\ëxmf*]B - ?[2KiF{vjk䛤Fg5RstD<?޻[N-:"uQ롯nͥg[лQ{(v٥0RX2&3=+\ù&/<_ 5>UH!n5sPYtcH[Egb0c"tD]<w5o +\ĉ 5XE*c2AJuZm0X;ʋrǿ`_T. cBqyd+&BCqG#zW cSRdl/@s|9WZ.cy%lyyAwZ{ͽdtC!S/FSaR>>P,qOa*֥Bqu#OLjsP/?Yb8@1;Q) MH48$BNKeA#x72i3 & (tJ뵚4e*˜# ^vhCG5K;-$S):͓=奏zxI w8Tgv`R~{&b|x+/T7+ߢ pLU͌k@G^`Ws[uvL70"$n OpQA_PN)U*(B4%2knw9\#私@.8v2mbz&COgOJeNP}?7c"NaU98鸾\ok_QBk#d{Ak}u2Q57[ p lfQ*oՐ~`S2BB5&qFv =f[S 3׏Ǡ q]H-9zjJKBrauv׫ SZ FGM [5 BAeZ? ۵:3D̗=r|'Ď0}qz5/cX:ܢ<ʞg[-ߋϙ%} cP.~b^9qU愋"P$==#"xY\ІzW{w Zb~A8񞻗p -}%@0u) o#|45S'e*:c>gC`^'fwz[U'}2226Aq)T/'~gt<5BDw]- )E[,r Ҍ3|eA:4;!av>&|I uz!±W2Bɱrfu%"[XjQ:hҟoWpA?6 MOΰ;ABwlX E5s0UP3oL`f߃v/QUV8}Waذ6-B$_Od6rT=PZؿ9sWE|N@+qYzᆀrnZ"y,ih{7HPme؅ Qlє89ZtO;L(!&ggg Zԭ?#) If(=iڭg7+^%SIx8EmB~<<vœOt*Q~z GuAϗC v g} ¬'fWZt/G+7iB2^e^!k5vn9o] lD/QM5fT GnXvyyf ٨S?=%RLxۇ1*Qνn=QA1 ƟsW]C<$!Gd[/P Hm-P-,&Xa'iǪȦ\=c$?Lj2*GF7VGWw K)u۲#Ŝ,'Y2zlA_w- ~QtT8E!,LjzhbG n)g*/|]v?1P TwpJi#1@#D.GɚsXkza@ 'Zg{0/7[JVl>֨eDXړV#"cUd#7)jFdt#IՂlO|{ dĭܤ}32 G3?EA1?d±aP\]!Ẻ8C{GL=ci 7b3v w_8&XRAZI"k.ͯȞvYLi .keᩁT%PR-}d6JE@G{N!rD}fMSA HA JU7a9$8_WF$Δ Hh@^EGac)ũ[D7tTAũ8`Kv׮^*49,r0=^ ljyy ~!$yPGHx[#jBN"i2O:FeqD.i5͵70vyQFރmSUچM"u <,rB P 5q0RWq#uQ={GgEW1eHG;÷oBzE8YBG=-J<`9340!aqVIܵ VO;cbn5ذ'}6 Fla8 HҽEnBn=?n 6FAN+ZNȞWdVKvL|٤\KkDK.ޑ=UxɺtTst "DV E94AFB:^ppF<+9ߢcus+{aXt@լNƓv}(%IxeWs‰R%BQt9 2 1>ՆUC˅x*x9C|IOz 4 +jWT4w?gDH+ǚsV(!u?FJ!ZBZ{`U׏Gq>.@Ĉ5&{Xc $X߈ՒMpJ#UX#Kt6j}=0 h9(2.tKEԱ9.-oď5yZY[ ]:)>g2362c{FX0γӨ1}d ʋ', G.FoLΖ1#l`Qo4i'NP\}kU|zPҝq?n ZW¬ {͉ -r6il/Eڗc ݣQFgتf;@9ti+ zγX}5On )y1p0"XQ <`>$IFCV JY׾#h\N/`,o¡ $aM %3e3-֢J҆/p"=qP \" 1)6{ͻW47~'}*w)T| G (Cn=Cg]'up]KV<Κ˝Ɋ}dn֐T?yrq//ewH3b'-b q-Bqh1Wizlm=Z\cJ "8eV7On{(S#82l {?Ϥ/B@&ghCx6'Y„DY;J5zJ[`D{IdZ!ʰɀc:}14Z# -A%_=–wAfEo:?*e4vOds-U+U[KM6\h~$}d( 3Fކyy`-㠂jx\ sZ& :SPmw苔p"$d lwa}6c)*]Y`3R%O_OR۫alAʕDGuqjm~Զ旮-0Rji""}zY}iLT1xΘNj5[<#! 4Ҧa{'Yk5uw BOBǬm=-H^F1MC)0ZVX m0Fsԕ:ivR.]׭nyS蠛b/ͭ+o*F|p$ilb  `l9 ^F%߸MW-\~Of4qg[\"Vx]~̣Hpl5N4$T#!z}@/)_,O㊊ #m܇^gNƮ1,vw"S201_oT:*9 6 NF#Fȓ}o`|BԻlM g6Ϫ (,GN~ ^( c*Жk͝0J-@2){10u] _ux*>hq #`_9YN㻇Z *8S 8N^g)rVtMdg W4y'fX`zdk6~yH-E# $*Euiڸs.8࿧_b@d&]t=\ ?-EZ%4ߌ󱪶88^al =gHhR\m夓21~}6k+oz@rx] Tlۺ5WRK@v k [ !IZdAhBo:/\j) p:B50հ\QֽxC>t jF3"waSE2Wݟ8Mg*qk/\iJnqʍ5(ٶxu.BOyrjm*8ɿM+= VjƊ4%[)a-KҸZq/bw15_ c2Q> qp(/BNP]3:}bY>U@|ᫌ_@`&TKg7uZ_w'&Q{uox9auvj 𓀄qԍLG|+GT h&ۀY78QdU$%?2ē:p]*Mw:\lU2 + =Ħ4tc yȶXeon[{Q/rܬK ,o@f;ޑf4*HA8d2iY&;g>[ &WG0%k΁/(K]P$XA{ +En's4?!"7$j(w lIK֬\H& I lB6#jcanyfs$CtK;)xE~R<bS$!Rg=a6Z؜gȂM,R֣+sb@Fb74Kǘ;V]8,QzoIE 2)ӄ?ҫCry͈3 L&;1A\sX10I¬_!UR\4Q5n7)N) %$ϟ ~&rFML:ߦ~OSJEK1nQ盧s%8uc4VZ]q3ЫuRv4RT7^b%^mѲ |=LW#yg{#4 {eK'wؠj^{ ވO~"zчk,nL6 mvꗷt VW@h鬶Kf",4ʰ E쯡`_b /3ikZ(#9@AWçmYeekY0FRb&v EZ1o#ѯte`DELcr(i'yڀ7@-L,CEfMDA3kKv:QϦX8 >fcg& cAdKqu0rJ[L`i8 |Fÿ{痋@/uCGi303a ZǓQtDW4Ͳn@{2<<п)`%Z-^OH=`g$ަ8@6ICOVK:2%88` h =B9 ?J.5ëx) jZ!_~JXz2Xcq]^ٖZՉQ7A]/h&V) 2a[;P31"bOvDS+7H_ "?%q5؊in>h"N.aXר|mD& ?[6fD?_=|;^_ BBy ,ߝH+X[[E\?[/"RI:?6D$50GBviCW7ՕQw]K2VN\Tg(k$-c!_OAq1`%8AiE𛋗4s1⯿{V($CR24a[Ro߻74K8?npҏҦ{uB$%|/b'lFږ%m@ Ey{P# ,Pvs {&Lbg .~g;\_P#3wVL/eh|3ԩɽ6".T6-.iT$IMÙ*YUPP??-BV EN)1.aƲ ѿH\s]s0{JJ(T8'/k TaҼAxCAVS|i^%V8'!TBqsn-*ii02,z=װUI(̂7M-}XY> {e?49ޓ>:(Nw @ƶ!7Bbɜ*c-DPp{$Ç(|{2 Ba"jCqZ7} #jrO{ ]Zaz0D2UDh@ A &TPf1{{Rt*FS7x/]]z("ޤuN²ѵE䲏F[ZFJ%I*夳蘊Dy744y= ^gNo^kt3Yϼ % Tu;z2s@ZV}wuѡ 4]ML}'a>G_L6Ԣa4I#s1+XB|. U>֐DRoBj+{>S"ȈR"ZFK~]A`ߎ e'xJY-UOs=o4Hpn껳Pr ¿we29>}(n%Nj!H{S@!=HD<ё%DtQ(YHXQ-Pt>F'Ƴ-H>A{וX6!/eDL2rh;s3BQQ4dF2Tm5jzaC4;,< d ^_K@ "myzoCե|nWppo:P 0?I J"8PaBDvo'ASq5HRg_e4r8қpqXȐrtCRcd $J5\#]p ;s|m9Avස8gԊ+beKN/TyԋKΕް{lKPwKso>G7sx,eZ MPpˍލ) I^AdCɪw .F0ӍWƾk~H8"r5Ë1|H\D=YKo٦Ȭe B!EP*l W($qxI(m1M뙛oBUB>O &.w^_]sVʏ|y+⟲KZGȊUpي]N;\yVG%9~4v ۊh6;D:hv? g(U鐟V\W`#~FF_&1|NS+l Z _? rxϺX"A RnQ2=Dqru}i*i 4xbAT!`1|(&eY*3% &NA<Ł!Sj|O‹ePw0x=['6օ}ۧ[%M&^ vx9@!8#SFCPT.@)O_-;`B^ yLKrAeS u^%:v_H 8cB=ۿv]Ʋ\"i{jst⪷N V!AqpQES-6gs=Ue:Nzxۓ@~dG1SWd:D/=w'ͣ]%cmlHu|/oLIeu']$)ٿ55SN$0d'"}hge %&銷_ 0|Pq ԋxǜƒ t19ehY0Rΐ(*Xo4bbwd {Ď}1?CIO72gfI/K"4M%.Ð(EyT1kJ*R4MvL9'yY_+(X4Xr MRY -r2Y#z-JC!~9{ߏA[XC2[vs"QxNEМ5M X֒xWM~{ŪSB䇡 ^溊lCl$w5N 40 aهiC,T)y"v/M]q0 MWѥ,;>F0Qy􊸘Cex/?&ŊwA3X{5$iǼ ɸpT   7IBE wd=(,-H(a|q #fa<F)Xw! jx&DL!Kh>.CQS@G}&AsA>D윬.( ,M58BH}EOuT\dtGĒbei3^]؞2P'S8zFY81w:ު4;`2\נ)9C=c9 >v)uj36V^@WS(bZ!i rڤ8.q5yi[bm>Fkf\qME`hikdkH/@q!q-6+Hho(6fm^+>%%-r(FlUiP9]ZJM#} d--l*'ui Ȱ7Zo(db{v(|?0Z<Ke}GCsk\| \BIg:GݛVIDL y]'?ɳ|i|Q1DMubUK(E$ٻ@k[W%v[`áթ<ͳoƙ+v#ōX'Df Ϸ-Q8ru[a7D;]xU;^'LqX&Rx2;Sє"15]q^1a\c+ Tg*zzuԸH%޴Q)7|Ib`0B5J{`-h+ kn7N #Q@TGφܹw},n4"7tEN&9`nrkԩab/*֑Ŧ WrVEÒՍ ՙ LmG 2x'$&{#N}9R"Gi.c 9f+f@mgm{$A9f(:&ϧoi]wfFd7{ͳ_o~h#NRCy۳voSʀn:Y FȻ88xSu46`t(tUxj+$Ҟw 5mHUZYaVGm~<5ׄCV &} W'Z":"f̾E84_)GXVQE$J ;L"N7ŧ %ⒻI D6dK*eG[8ӑV$+l4 |f[pw|㒻B``E+_7ǔmuDm̽QUGB5߯AoiFwUz%n!`gN8..xگ g"ew PR玤|ŷ&XT%ecu8OAҮ#Ye͋qW3,1BB׻~0k4QsY穲 ne+l^l PnwV-y WF.bxcotݙ#'%R8g$tw _YsuΞ\Iz;z2_]NKy9Jq@˞/*rFJvHDo~tվZ^Hųn= !=O-ae{!$o֬Mcs~i21jS|1/׺k>ȁ1`G1D$BzߑXh;~% U|K "V@b2D 6"C,De_t)q*LjiAWN+oCpSt!1\&9fbzE%[>iNE  AJ%#Y+mUjTil"\5}1CHqT_ یOG.ʵ^Ҥ(Ӕϳy듆O+~˭ʱiNΑ]Ӆ_[mVZTR| YoҞV'ߨ'@!%YcaQJg*N)D-m)YU HpJGڗcNÝ RP5+[h۲"Ũ .[[fvG8+ nlsFY% cI4B٧ŷupP@wpT(_Ri'؆`#7ƟȆ}c:2sߧ93e̝nU eT-Hw ۤdb+}&6flKPG=FӷC@Tyu)lXHS-bMӕLJc9uF!EW)/znɪyiz}~= F[pYw( xrh/  3KTw 1*!}Z4J!;ʈ ɪ,蓆KȐtB +wʧjJEׇ,blKK",ЅkDG⻴d ӹв-!td/l}K'sCnuvC1^Rj)ECHGt3"NIWR[OQ˲$eU ke7PH>3,)% _lhG_1 *vWOeoPqˆ6; tnpi)~*Jj!ڞA @!_b $kqTQ"`yZn> Uk]ٔMb*O$FOu֜2>F5a{ ;L1prnAv5zĘa}v|gi)Rn; !ol0|R^03a~)33^?,"F\YE5Outw"^g$c>f3M7261ӛmY }=0`a|e@C;9ufRzj:AP=eҞoU'<k#QQ/N:Vs2>3R,5 ]jޥVc<&hy梕J>=^0;Zܓt/ ]殠ٯl) _CM 6C[/ kQߎwf :8vԸw6LgiX#O @oj,v!" v!NҞڟ(4-"pn7y3qtV'$YY(ڊq>śÎN?N|2CseV朿g7b= Zd1]AT}pd&pygE:঺<) ( :0$P2MZCGg`ՠ~j ]mЃ- 8v9S16Vr۵خ3Zt1r1V}pw_J~~Z&y߮V2M3/[?.^C%.e֘u9q54ewƸ =7}ֳ3gP.>MJ$edAO˖͐c*vr/^ш]L~LK{kʹYZ"s,ޑlqQF ijZZ0Ai~34Mmal+mhPߧ4B4Iν Y*AHD0evg-Tw9RE g0vi|k !}cۭl>[$/RV}u'Ěa(ǬRςމ_͘$lH#J p K!h씻bsw,~pǮ \ux$G}UP<9Crʱ/ȩ)&ۇ̛΢ؕXD$"*< `KvBqMK4Ϣ-PGgtSs r`3ijk .0F[YןхdsyK,b,^g 4j0Nc5@AO$N馓wG,$FuaӸo? ~[s x_uJ@`Pɽ:T#޺J#buœ6@&RL_a:~;ӕ|qI2 >$ 8j4EC}"ҪG P_5% mzvUA zu0hNanR:cj/H5Hίeqk$ ڔ*֡䡂:7OMHkKyTغd2`}")jY PFHnQߜ+: |&zט%{ة"hBjQJhcLu&WnY1dIf[E # JZ"fdb4 s.,/\iH"WU5R$(# PCY; b`xQ>FxwNJ TMUVQ(Pl\u6 < ֬Mm?GB*䞱ibB%M_4lnv JU&ScX(? "3g+Yx uMcQ)~h^oA&Lg:}g"~`c,{DfW<'7 :-ցڙo=i@e{FEJlbYa/gEX{&<'ܿNgɶ/z[c<._+auFDCD rUxdu*^ʳ=]TXY0HC82 !su4,~^+r|t9&ZG.n1x4t oe$׶4.lo}x8'&SqAouħǂlm-Ѷ!~"%@9Z f0}%qZ7KuVR8 ٶb[D@w<݈xY[h w Q.@2PwɗZJԲdSɃ(wPc?"D ''XpsB Rˡ{@mXS (C{&|nsm?f|"6^R墯%рb Ɯҩl;SdI dB{XIEpR{x1!Xl2Mz'HVSv}S٪kvIoD"Ȥ0EEݷM|ť#R,޷࢑:Z+EiaGg\we:P㓶RܚaAi J8Z~Tײ}yϯr%<ЎDtC>TpCL90\) O:9:Źn#O@pmWBiw;v;xøڵ ? >@?5>b6 \7F! IIEeH3l~}Ҝ"t"4f))P>0X{ˡ&AhŸ-2#T?nцQ1*ѼiDy5%i8Z= ;6,'F˜M1 VDDQZꡛDm׋Dv)ⳫM56aY?;- HP{6hUVRt*}~&]sr79+kɍyy(ycic|,5=Y]ڜHTNp3E:%7יrJPrwA沆ypk"Ȅdh0!"AНm碃DgwUǹ~dYl'R$?F ROmlr+H}i /4(͊ҁHj̏^r<[IUSe)tr-]' +!Jga`ʴ];I,ݑx4+Urn2dks(n%=r* d}y_A_xiu+{%}nLE]GjIꊽ QoE|MUvnʛA$U5 zAu`Y˿Gn u "?sV;@xwNEGe(k0 Ŷ'b[!пD(yǟL"[`+ WVch,ʹ՝6fKIӐRȶ;ضE0pV~OʘEX_'E ˮFqvTA ~! >LDg:׺Ⓨ8hP*#YEzKƦSC '}D|&쾫YHlv.t&4f%湒 6g(&`WD{E1M]Y<[\hiEC7+ aICkd%PӜ@K~5_BxqDyaOJ;ș7Ð}X987Nˎw0ҳL[Y #ոT]%|ujiw],;oI~{/d]uQ9,v_f1%Bsy{~=ſeȽJZ1DL`W+RlW~  |]Ox`N7fҡ1 J9`?ub`1Mdᅙe3>hZo DDs MtSh>|5",I+Iد@8fюT=/ΗKşc>TtuF*Ϻ]"tgG^frn@e]iy/[Q슍(-i̇o3V!L(X6/lXmh3}K="@/w7ǒۃ%{o#wݼ?Qԡa?#2gtLZm+J]gWH|PfʬçYhORBhO3~9 E.uXo5SyZH?Ã[0خ-ar &` 9Gy" 5`0hc/uuv X_1p {ڑ@ [P tG ƍVYF7zpA7j)t,LN7VH jn&op$|]i;O<n/" -o[#Ȇnb/XdC_O(/[ Mn۝@dn/0Kk^q@5e/G *@ GJ_IGCg,Cߞ V7+| _lZ,`sShrNcFv`nر֒a: ѢJ[hƞgu\ZSu+S MBx,(*NV|g!(iw3K(:֑5X1 hH6m~ĸQ. tEos ^ou>&[܇ @.ismtAZ[DdD1b>˽( pD(>¡xG%ᰩ!KL$^L ғP8^?; t˴N+w#y)e`8,naCr`83C]g. UV1/n 4XlK{XQYE1вoH8DT))ЄıUڃSjm'aReXEi{I8%'p+XE'WD SB*\W׫6`g*]k}=D2:i/d`gF6V14s)d^+*Y([H,xIGC:R؅6rrؽvq)yh})m:UIJd\2/<ܼ/e2 6VT_ II^a0FPX^T=qRZC(|Ra͗svXb u>E_ӭ'07{{-.Go/(ΆG059DoECUeQ njǩbXpgmMi>XțIV.Q3I|YWJ~Wv=NCŨ)6XlKa Ue|Y%d ?RLA<,Dq&{="+i)lKR4l"wX Eª1, Vbg,Ae4 zbrMTZj >D5{RП*^ VD^Q?@?ѫҊ\w,Ko/HJ`*EJĸ圧/c(^?ݪf8pńCU% ls0Y/mj|ȯp`e@Tp ‡c` yn=ۑ[ٽvT^ˉO,T,J5YkIwzyrX$!g.!8'zk7Z 3 aQ]"ΧQa+>%:tI4<,3'V[&Su5?*X$֣荒 x˜ `[4sj}<&;}Ux {a28zlR4Ot vT Fzdl D`dVFV+txMP[ڇ4>[H PVoBԳo'4cf RA:+7_Kd3{H>8 3m@E!݊r=J%+~P5KmHv7;Ma&FY4 E`X!5XX ONR32#?x4K,БQmÓnTLےϣ1 su 0QV< Sl+Ȳ!' dMؘ>Mc/QͿLLe@T16򱚧s!c&ШـOp@)gǪLC&Pg`eeq}WA+FbR )`wPA6)&" ѕMMHT>ح6r*ҐV9F}Lfzgo Z,r͟II+a2 9I}H[* ҮNE_0A>d5X棷B*=U)Fñ; 3Q0xxgB{LKԲ^O#[?ho߶y.*2ib*[z B°VF5gWcCm0\EӚc!n/Jk2it`ϖ7cZ"Nso* N+*N_:NIn0끲 C[Iں 1lGUpùgb&c736`Rwc)EEd VG"U ֱP8;NlcAA"Go"ՙs "#\bF9W- +} ]3=:!]"aOF^՞D3&~oE-В!叄9vH)z [wM(g\G. 9HzZ>C-&}vY7`4tfAoPJX]n?8k 8>RAxy HmBWwWJܘ8ާnLR? K9{t:ds~10~K XT =_kg}Dj/H˅BῖEG#] n"wyu~l%OܼMSS߈$3>TȝQӦhj TɨliSt_3oj؋-GL}l@,nsߎ"P0M1$sc#chXbaF'jqkUDU , :+ri]H.s ~撹EhND Oڻza1jMyHgdW(#VbO]Ќɒ>S\p ӥy!ߡ-&pp!LT"j,dFVFdho- Z)L/r8>%Gr~'˃eap?٬}. 6y,z1usSrO3[ Bv%ξ)`;upG#_镤qm7]2i'/BgSBkECPxWoE2CCtN E4q+ӡz:ho&.TT'Su14.rXHzęӜ-8UxqZ1S8uVxhtċ4q:>EDhO֘DRA|T-/e*#Ef 0,ɠOhzcT z&w||HkCxg;kxk)sdx4iua%*l+X*[+hw8!WEc$K"d*9 m(:C ]XϳL#SCRĄԀ 2[Lpo#ʸ<|[0?:壿W=.67cAΛsR7'Mq 6+  Xua/}QTO"VL< ֐ JtoWv/Z7m7>og ljSjOwŭu$|Hƚ%5u)cpRo ]$Ip %Tawɱ YŘYXa5cH{xVֳy,NeOmp}Vq=/-tx+Tmiܘ(WGu ;c#qp^4 'F`x4JVϻ.ɶL$.?z@KVab5uB ] ܳnsXl1}NJJ<{*sd[~Ԥ>ctO` b%V̱SV)m,Jc;?g[w^d1b>pHbO޸:A( IS\{ hզw"X(F %QcA"aRxfꨔmS@HጀW\`W&p7`MRB7/roIЄcZ7N%#+j5J;(铚 ,V|Tՙ@mnK51 7^d۝eY굪x;(^pqG_>p2bJfIC@tevy#^_.JKo /up 86OIR .ǭcOi(? ”hSE> Pqj9#솼q$S#\j3\i֯ eAQk DhTgW!f as!=!Dc bxW6}wW=4ͨTLɴ >ڰaJ8]_3g5_QEE#LH;ū%$sq|VY:)gQ%—\̾alq͈ԲV!ɉչ8A1fc`oUaԵ`lzM{aov;)xjF>h>|nHnFWO} n-H}k*[&ĸDpF?Oh ĂJ4dPn$Y=s,8D:t;A\JA9<0X3tZZ~#@bpSA9wkZ# f>'IfmH(D "of@,(lg:U;-Gb_*߈1N p|ETƈ1Ekc6|P}rf]ϕS$E\| O 7h /+m<C4w1d?֜_Ɔl}TF HB2s8zKyY[|_ 1s_ϣ(c8Iai2t钱p81hrT*Xh$WLJMHŢ(Q[w~vƼMImNw \6W"?fyc5iӂ?!l(R%lVm˼&'ڑY2rOCX?a׏(E̩9+*9}?=;i1$>X? &I(o~4skvmnI^[=@Y+ MuB5q(@|5îh0|00i xQϨ^_ EC 0yQB3aVq_Vq{d!}^ 9(R%kIӇ@࿙Zeq;&&cw>tdB\|i9$w3EZ0_VXG&Es")/GL뼴 Khqѷ}l) 9~=/)5YV^.y9M kAW]@>vݽb0\: aW$'2:ȹ=#4c(:,,IgF ԹkMz?X,lla*`||Đd&Frn1MPf1V)ba`U]iqin@$qLN( Eú\yuF ~=L^긷ߢS&H%x/T147gD+X۠8uX ]?^.y<8>,(Ib"2-(J@bQ\T_v88.7g!tէ]uۙ?|?  aBzP| R"+WjˁUA5FmrE=(51.VZq!tS=9E,Q*l1-Kv 6pQVJBg#q K~#=# (9uX*{ DUPcc3ޛ/OUve5ۦK[!!dKRv]:Riui>w[GA9wIYsSƪT #6 ݟ*EQ4wVf*˫ta*zVt%j*}|7jPX#mϮ뤈lDGՐC#W `7 &n0s[4y/*z4OٺTjOǍ %򚠧ECc7F'V|KKtC J׺Sv$u #ǐEhG6:&a}P˼{9?m S[CԇВ8C `8[ٚ? E-&>h2BFf)k9ih"w[a@gɴr 9 >&BOK?m@ XaVwQ,vUҗP Waղ UA_3wz^0WY9a"1a b™%*_8}URĘe헣rOp7dT9ᖠ2UqKjq]PCP8')5sj#ܭj ~S,}ZZ'6OK|ϲx21}[OЯl7[Up(>}ua!F0т&HQZ'L戋 s!w'JyfT&ԓ4}1zyeh+M &Ӗ+&.ˢf>#Ѡv;cQTX,[g<5t&б5ˑrH)w'UrWǓHu;s _6ŝշ {c"nn7A)߰]eM`ⅼ2i_՞ݔTp穧Fѫ>x>eLZD t]Z"KY<Cd&\N<ˠ/1{Bd^ ɲ]WAbs+tv."@ t3X B7!tL kw? i~ [AqZyfnρsx~ݙGڂsۆ Q̌LDYEr\ud ®OfnԹ'r -u()Ŭ̪NN@P縴Z(x|EPhÐ-4c gZVbh*HO0FU+F>CƼ4 9\Uβ+`SDx"VF9}hax`rQg+, ^0yyچ{ޗVrKa("|+JUH {Ǽ,MwzFU4B? Q/,{qzcCSühM-63b?)5CI_joěA5%<= ECS KŅpv7ٱHlC}STX@H>4l">YEŽO(Ώ3pU="@CVyA~P;U嬮MUJٲ$,X 玓Ft:[&} oLѼ*ӻ_CrneK9FDLBɄ߀YMz/pTR%kV~aѓ(Jjt!1M #<k`ky֥'bc0bl7)g‹9"s!D6S{ҘZ 0UnWu5d;z@+mV7$6'$U*ItdLOh. CSy%=׍G_#e8f4 M| c9L'@] Hm#)q$oɹPs_<80wHtD2a6!erCNF"* M@d ͯx~CFbr"N,!Â+ٶOݣFҭ_Lhogx׺IՖM?HUBy9'v#jкE%ir0QڕKon8CP]oӷQ*S$-;xq9QDeguW n,i߿h?8f2Z_fQtQr V24G"DQ Ө!a:tV^7.Y;q\#Hm+ 4o\-Foo{LBUCa,<^e z8+ɽ ssBl} aS'%W e"JΩIJ{:xC,a!d 35Q3 咖U Sw2(1? eY/B9WUӗJ8:xLrxc%Pɇ"98GkgJbTPXc6 =Pf.tm[*]z #S˻:3 b<"Y sAs-ߜ_4>dbd[_vhaC&?᝷ѻw"~& FvԈP_sau2FB`p/̱p?y5%1tRThQId7a|3. pܘ)s/vYwO3AHe4gpY[`*":0p&KqkoiX!m_U1p1+ B?rqbG4WgIr'M¤۞u~X,(?*>{cbѻؑVY-{'ac%P@X =Щ,NpJ)LO%*2?Æ\E#8i_F~;Gjpb̑-i[4DS`Ai>٨ n|T1VCˈsngG 2TXs| <^ إ "l8;Ђi4A?49ߩ KOKAx/6mqKow3d14 M!gtP1Ӟţŗ =Nsp^sa5`>F-Q.ViA( bY= G):l2:‘hLjHoTV#@`FqCa#^lO~N v2@ד7;/$ T]#SʴJ8q iPVM58TF#cInTFM*7-\h}9K \m^f` ԰l3Y+,s l;Pfke4X,"K.*?[lsP߷.6B{R:Jt8W_,CކBJ zf7SqvSm'BtϱC(&Mk DŽYt)lrbd D ><ԯ7or pXwD!p\ޚuJD!WyY jU Ԯg$InqMÒasf|,ϢYDf?W#;ELf} 9*g*Y1Jˣ|n؎ 2v#2B2}eGaIMBw yC ~8>r6i2ΐfF8?hʽI(/.uͦpqMbn\wRO"m'9{7N=) ߝĆE)D<^J/1_[)s+իiYn){} t◥mvq4`ԏ')I8Md<F)&w-+Ѽ0cDˠsv`:6RtV,)'B]~DN Mhuws|sSH-)WI<(XT(e 3OƜοc6m߬ꊍ@Էɔ܏k3,nfDRЋVnc_IՂ= `3%sΑJPN2vJ8 k;̈́φkbWĖq hqXOy@N/.sIt_x3`Rڌg?,(G8CؐYK%㍶Z&ݞ;rTJM| &?6U, /qa|I;a` w:%TC,+Z}dt?H%y˱OJGOS!!e(>Fqr N$45jQY]';7 OMq~;S=ذP(ծEJJv[ 8ǖ{ >?ُ1Tv!J օs̥w{䷙YpB6S'q*j9ᡵ *}ݵa{5;GW~ f|pSˈv[>Y{ᝁ#c)Ag2Y`g>cxK;'tseLٹuf>uDo*,=Q)9~PתY:F- ז\ְ&f`@5",Z$F#MܪI˝03xivɜErc%x]俯vGk\/(kķ#"Rvn*5<$-B1KA*?*CЍKE^_VdܗK=Qx/bMz0Kv+X$PkpVJP=E k%p&ګGY: ʽQ,\ػ#~cۚ،"=VR-X*z˂xeQiD+$ш3gyfzSg^FDlIvڊ̩63Ϥg>e.Uk#bKΪkݠٌ4ww+?ಐ}kQU³;LPuT1"&<$_!H+l4⒦E@F BLX(?\-dO,-c5r{$vZᕋ}\Gf`D ?du#{I')|F\}A jM߶_|1pFn8"A!Q]wVbܛ^>T!R@1 I U^O26ֈE4ǤJf ߁B.8`= ΞXxL!P|h1½xaKl I,!Z.S}A?u‘$&`v!/ʅ}t~rr~Itց&4Ytw9*#[g*԰uLE `K鍻"j\n `OWgjgzU@^/BtJT5{"[D!?''ˆ~!X|진eD_|'lfn(7Pa˖O% Q 0fR!/U-tKL_^E{km]&Lp 0W*u֝Z 1YȐ]J+O:2-U 5׌ m *fanVa.@ոTda꥚`_}!SdFO% ϖڈMȫk)B_^3ݠdW9OP-#daͮ^ Ӿmw VP8 1D,$#%' ջ o4gvNP#Qc}E#Wv_,cKYt5TVl>D3K$X,:*W}ąG >![F_rRj.s(4vл"D+/$uHkim4r]!;boŧƥE 5bOC1ut^tIh0:״"I8}(ٖ;l6)|}/V[Ӣ;mC㪹ЋK(hۅKb.>@[DЋ32@r hs 5h1̮fsس69MA0NW`'-{ѪT'TGrouڷbQo>^%׵FҋNzKEbҍter M\qTWslJL(ϙ Dm6\žSWSIJE6fpB2&?{~A:UaWP3ILutYO$YB &L,u+~DmK |3Wph1aW/I2?XcYy8/u_1]6b 8! =@C[lD"ƹb`KRJ+"**k/R~ƺ7KI)Bӯ3Q =!,yxׯMk-qo}ɅzS/tFPbJn\;꒼'#郙h( MF:`>e/W0CHs}>c8/R $}r3q?)݂mbJCx'b&< dOG6,R['q"k-*6»#z.Ha N#8ffK8H t<ozFx̵FC2[780m,^ER~}=jl商z;+E5VMZ2?4 #)0@:PlǞ{fg [%4SF*D2k-xNIL[șw'AEF `7#~VYes4Zj<b@B诟2΄: $V^Dz0aξσer.@8v+ﺒY\@@b[+"?I39lv.j`<IENJePʶO&!Y`*%`Ϙ|\ӭ$H`zO%gviO"@M\vSfNy+1UDW;C"z-;\Q ێQka36ʿ1Q:0mIyEZ_ő絯oFPb6!1m PVЭ+Ao4ZLV$"fD}tHFd}!+ opvNWEA3SnYQTeYu,Ⓧ}:Ӓ|7UIϑIhq{E?(3?[;;AQn=:n"AQnڇdjN c9zIDH-C<aPw'hz.f+]TK{^Xze<Ӱ|2᤯ M_wFX(v\ƙ"ԋzӞrŽj}R `!6^Ff'PI^H=OqH4C"N^Ld"rHevbþU\uܷ1%( UH2|:_)<./#ۼ4rA@p֕%LCF ۽ˌgz a嬽51eSXUc]?4KP]7t;y:i/+9VI{E! I@@asI'VmQ[qv+uc_EbOÿ0]"eh^M #B[իvo]B(;Dp쐛E ծuztE̙O8&^j+˟ A zv@Ł$}tH 07`-`{*’>2kƼW> \GA k2˩q  tܑ ]`Y֚Od DL sR`)`Xp2ru0% m >](XXԜe șQƉs zNEQQA[@>?Vd ,|GT9J$-A|Op=A_jg?3|?8 Zr~B~<9NJ*0n4QRI'^SwV>n?;E@'XOYr* \.e^'7 齍ڹU|D?W~҅ TyES/}UDzJ0' #.qLT@%#Iy3o8zGw܅w˕} 8+=0MloKwP[X93'zpw2qn6 # T|Ez5T@f[RPŤGR;H `RTiwyu+;R,,3Cj/3.U| YpxU}{EɨuR  kȬ=|sx6B;+^~'ZIW Nmjt5.΂A>$V6ͳ;s )l[iW#cߝ}pEnRi5Q bZ p!K<8O-0rxE8)hb{\r[#܅p(3:,thOJLU׈ܳw54c024L{&Z&-p1itEgRb2{kųsz۹3Ctj7km wΥN[giE a=;G.-ĮJ1BE_ʳoϲ#ҍ ֔N CR c[V$av #Tүy1p1ۮfRK .~onPADZZ>T+J䬳kI4:gioX\IU*C"3w@Q^juP"Y#}U&|c۟һSqhCSZ"GߩN;bLz`L EgQ_{qlwg/l薋m RDם6do3V( $yw\$Ѵ6KX|()K5IwG9CyCqqWm돱v~31h>-9;a|XosV4; vltZN@w HKwwk䆋˕] BU\@2R݊HHPiemD)v/:w#MH! ;F\DW$ vsUX!P.9Kk`a%t*ZP0< i/ Yw6SY5shjsWAQIwK܄u>^9uFcѧ2v!{7sCgJ3ኩ?)&Z`KKGl. eiҖp'#~)>#.?:jM+Qw+emׅ!})@qiNVQ/]ReBĥ+KKι\ic4֩pp}=գ.=xg CgF| 끑tͿ)8+-DN?\êA2Ӱ](iT© 4XXBŴGi4t"=D6TY,crbbC"nML ڙh%0;[Y|r~_ZK[G { @!᷻$&0U_ \ҙA} 9·DO¬*ܝ9^gӍqv7 ?5f@CH6J_2 (ꢵ<$l ri=<'rۗÕOx&h8մgTdvpBt&6-\<Ѿ)z3 ;wUGg\(O=DWV/~Yf*<1085M~d(s݌/|&/ܾ=s:u.ͣ* oWGUt+ e XQɜ <43gPbO!ص! &R:tsW#J>+]̗n^~ q &!tj ;BZOC8-NW8]Z-EDDfTFw`ƥxlţ~f/ ]6R%Ȱ$?ۃBTWVL<^uGKO͵hLJ%KSi ;1o#밾/X@jUsQxgFdJmVA}(I^W>s'?FsKGޥ |s&zc4$0q38opEĀd&Z70)c";"̑P۫Ƈu$Awd-*q)G-gvwAHdI]2dX=F:=ROPt8 rcX~Jr!c r`^C)P;L>.ݑ>d{b A+6j|N`eR냣l`T2CKI̯IV%,|_0E@x4=i%űQ!v1B sX8_'?nn:dXlv|6=Qh[zSB%u/t⮖.! BtG #_ZQ+ѩD XQ_ڶK.JP۽:6=/G7-JO'>7%߭8c@(ko&h[J0LxӅyx3SpS[,}Ioy#1ʆA)_boAtaVxsW=Pgr D>iRS~0Y< -DA+TcaՏ80|緷j#GVS3Z5^ıf UH4l nU-+;FN pїLaP=Q:dE֏թ]" :top/"# 7Gl#T3f` bh=D):٬%VB Ā`R ,:1R=3z7|Y`u2JO68`7ScQɎd?#壿g1EH9˙y˂Xp[oFvEw#)Aʂ} -ΪH/9ϯ/P1$mHߩneHGFFC@3x+hn7ҍn`F^W|-+)?;}OYeisLm uZlkFU v ɻ,ۂupDRd+MU3XRU+Ny59Sē\,m'ͅeOSΉW͝ voF34ӧ8&:a-fECt5n}w֝7'ǵsl^0GVp vJu,\l\5SS0V̝]k؝)tk*HHTEB6n7UkVէMGiӓKxM;,:?rh,ʹ[j{$XXѲ645xY2H*^6]k-H\+ Icufo9ꛊabwLrgYf:|Do{tAD@ p?~^P@@~SN1w⡜ɔ@N9HM[[W)=LxAou>=2Fs=6s.+cyE<_4}u@.|ts\TrԆS:#?[/@]z~ț7 5(Z~q[ՋN; Ԣެ j`q;uzM9LO0"sִc µr_(»"";(b623qpOY#|㪘~]Vr:|3oV(tvPb?r={do/(: $&,CZur}NX뱥4؛a{>]ʬJ[MnW p,`#lf ㍽&mSr95[{}4Me.4uon̢kD}V2Cz>,ʠZ*]ƻ9~ܱ-UIKK>ƅS{'Q<ΕHHS?/ةYzr:D y@7k9C*/?3"TN\ Z⎻mik 58Z7V*y2:n.*hB%5U})79?%Viܱb|Ⱦ I/[}U "z⎩aqM\5JIcftd;d`a749hv%B~/L3%Xb ER螻Iibʟ!%/FטYz_%!~ou[#p*%)U Iu3M+f"xV4K" ǑRnz|X*jd:ls&N`ˮxӲ,uJ4**՝Cwp.8CJ͈cORʣ-үF0P{ï` Dz[ΚAK{Kn-&旪9E(bh(ppQdS6qE"uk l @?!ӧ[iGa-KfutA F- OaWXHB2Q3kWgq}fkoe9UkA^Dҿ=e{8WMF=eѿ)ETk`.9zI ` 4oLLT6EJm6tD. lg^#pJjƥD]KĐw IN ?+ɥ`_@{/HpUKL!>" M&aap(V1j_MFP KM8w 6>(}9IL}9.{G1xaH !q#2} ٨92p$}@1ynX")?'kÖԚ fǒ d_.@_|֢H#1֣aZ$߸fo9}1A|θlqrtEi^=%2tm]>$lXhaS4Q(rH&+4Vԁj$&MEM–" 9гRTXo)WIva4Vt?;{U"AO Vr$Be<Z@ڀM1$Dyv#ƕ4p4 [b]kWWuɃ\ +Ì<G{^Ke?I{ƥ1cm2m%2}Udq$FA= LBYOBr1>uyI(L!8}Tggw+eY=&VWiAIIJJC _b7^c74֝c6͏d[&&0."t逸hl8p[.noN=rN"}[eL1G4걊a'a_/3g{T u鶶*%>" Y vLXt#"D6Mczvw}7w!q.8ZI@ٯ9.(C}*I ~;E.VYVO_s4nWIPLe;Ep Xӌ,;nGUNT9iN;t}Uw YpEvi,tkM4L΍}q/Jihvxv ?%w&V0j~3_܄$ A (?0Ԇ LL mcPZbޣc :Bݷ8rN2ptTfh08IY=ˬF̟S5չk闸Ӌ18nVjA֗=TF7Q$*ȡ*oÆ?[(l ʤiɞA!8.?..\u=D@hqXQ`HhՍIFteSЄr:g.]o|FӣWhi.E?]x$"9 /Eha[HҠ Q@/rDN"M0݀k8B8|aO w6Q RPC캶,lޓ§fu6Wu;y?ϟ=pY'uEC|A{<HR.5di=AZ_U&NUCλF[4.,]ZuuܦMɆ /v1 "ogW]@/lqKo\J{᫉;_kY#hn 98Pi<_ 7*mUMgs2Bg-k'&8%ip[)G5Iƺep'k8]WYQR<,\q?^'zCDIy`ֳEЊk8MZlc 4٤r6Q& }*rWըg2.!us#hR|?5nEB;X[S< (!tA9Iݗ·Kw}$[ee}}k1T]> B"7gxzs^2/ =MRpP` ;#JEYqv ۾zfXW@zl2UxcYnaL& KZyT' Pm`S 1cVq⬨$ɫ)z#9tMϱ ΫbLQܛE&j5;qz,!?@LCehj(NVh WrOddZj@7M"Wx6^IEv_Yz/0YZ@ApB'*=AfזOkȉ?+ H3SŸE+x lz4-2.5.2/testdata/issue51.data000066400000000000000000000200001364760661600162020ustar00rootroot00000000000000NXAA;ACAAAA;A;AؒA\A\A\A\A\A\A\AA~A%AXAAlA`AAϻAAAA\A`A\A2A4AO@dAtAAXA\A`A\A\A\A\AdAtALA4 BAXABB\A\A\A\AdAtADBB\BXA Bz#B8BBB.#B8Bf9B::B;BvCB@C:C8CXABB\A\A\A\AdAtAt9CB\B:CABC\A`A\AސBBC CC^CCtAtUC rClC`A\A2A4rC`rCrCtAwC&xC\A\APCC\C\A\A\A2A\AZzC`zCC\C\A\APCC\C\A\ACC\A\A̅C&C,CC;APCCmC4ACC:CzCCC0ClAXCCC CECoCCCCCHCoCCξC CWC~CCC|CCɬCwCCXACPCCCC5CcCCCCCBCjCCCC)CLCCCCɸCCC|CCɬCCCnCCݹCC?ClAfCCXACPCBCmCYCCCC C?CCzCCC D-CCCDD$DD8DhDDDDD\A\A3+D,D-D<.DL/DlAT/Dt/D/D0D?0Dk1D 3D+3DD3DDD?F2A[?F2AkFtkF\AkFkFkFkFkF,AF*F(CF\A2A&C2A2ADFexittestmixdefaultcachepasscountfaultoptions<mt-begin infinite='true' definite='true' success='true' failure='true' progress='%d'/>%-*s%-*d%-*I64d%0*lx%-*s<status-bad/>| %s%s: %lx - %lx %SLibrary call to persist WMD results failed 0x%08x <progress-update value='%d'/><currentpass-update currentpass='%2d'/><passpercent-update passpercent='%02d'/><testpercent-update testpercent='%02d'/><totalpasses-update totalpasses='%2d'/>Pass %d [%lx - %lx] %lx iterations %lx-based Offset %d )N()N*N(*N(+N%lx: Suspect data Memory type %x is unrecognized. Not present No SPD controller was found. SPD Interface: (%x:%x:%x) (%x:%x) %S No memory controller was found. Memory Controller Interface: (%x:%x:%x) (%x:%x) %S Can't initialize SPD interface. Disabling the SMBus controller. Switching to IRQ9 signaling. Enabling the SMBus controller. The SMBus controller says it's busy. Disabling SMBus interrupts. Clearing the KILL bit. Can't clear the KILL bit. HOST_STATUS didn't cleanly reset. Error while accessing EDO DIMM SPD data. EDO DIMM is too wide. EDO DIMMs shouldn't have %S banks. The dimensions of the EDO device don't make sense. The EDO device widths don't look right. Rows: %d Columns: %d Width: x%d Check Width: x%d Bank 0: Bank 1: Redundant row addressingNo redundant row addressingParityNo parityECCNo ECC %S %S %d bits wide %S Error while accessing SDRAM DIMM SPD data. SDRAM DIMM is too wide. SDRAM DIMMs shouldn't have %S banks. The dimensions of the SDRAM device don't make sense. The SDRAM device widths don't look right %lx %lx. bankbanks %d logical %s per device %S %S %d bits wide Density mask is %x Disabling SMI signaling. HOST_STATUS didn't cleanly reset, %lx. GenuineIntelAuthenticAMDCentaurHaulsCyrixInsteadGenuineTMx86RiseRiseRiselz4-2.5.2/testdata/pg1661.txt000066400000000000000000022117651364760661600155640ustar00rootroot00000000000000Project Gutenberg's The Adventures of Sherlock Holmes, by Arthur Conan Doyle This eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever. You may copy it, give it away or re-use it under the terms of the Project Gutenberg License included with this eBook or online at www.gutenberg.net Title: The Adventures of Sherlock Holmes Author: Arthur Conan Doyle Posting Date: April 18, 2011 [EBook #1661] First Posted: November 29, 2002 Language: English *** START OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES *** Produced by an anonymous Project Gutenberg volunteer and Jose Menendez THE ADVENTURES OF SHERLOCK HOLMES by SIR ARTHUR CONAN DOYLE I. A Scandal in Bohemia II. The Red-headed League III. A Case of Identity IV. The Boscombe Valley Mystery V. The Five Orange Pips VI. The Man with the Twisted Lip VII. The Adventure of the Blue Carbuncle VIII. The Adventure of the Speckled Band IX. The Adventure of the Engineer's Thumb X. The Adventure of the Noble Bachelor XI. The Adventure of the Beryl Coronet XII. The Adventure of the Copper Beeches ADVENTURE I. A SCANDAL IN BOHEMIA I. To Sherlock Holmes she is always THE woman. I have seldom heard him mention her under any other name. In his eyes she eclipses and predominates the whole of her sex. It was not that he felt any emotion akin to love for Irene Adler. All emotions, and that one particularly, were abhorrent to his cold, precise but admirably balanced mind. He was, I take it, the most perfect reasoning and observing machine that the world has seen, but as a lover he would have placed himself in a false position. He never spoke of the softer passions, save with a gibe and a sneer. They were admirable things for the observer--excellent for drawing the veil from men's motives and actions. But for the trained reasoner to admit such intrusions into his own delicate and finely adjusted temperament was to introduce a distracting factor which might throw a doubt upon all his mental results. Grit in a sensitive instrument, or a crack in one of his own high-power lenses, would not be more disturbing than a strong emotion in a nature such as his. And yet there was but one woman to him, and that woman was the late Irene Adler, of dubious and questionable memory. I had seen little of Holmes lately. My marriage had drifted us away from each other. My own complete happiness, and the home-centred interests which rise up around the man who first finds himself master of his own establishment, were sufficient to absorb all my attention, while Holmes, who loathed every form of society with his whole Bohemian soul, remained in our lodgings in Baker Street, buried among his old books, and alternating from week to week between cocaine and ambition, the drowsiness of the drug, and the fierce energy of his own keen nature. He was still, as ever, deeply attracted by the study of crime, and occupied his immense faculties and extraordinary powers of observation in following out those clues, and clearing up those mysteries which had been abandoned as hopeless by the official police. From time to time I heard some vague account of his doings: of his summons to Odessa in the case of the Trepoff murder, of his clearing up of the singular tragedy of the Atkinson brothers at Trincomalee, and finally of the mission which he had accomplished so delicately and successfully for the reigning family of Holland. Beyond these signs of his activity, however, which I merely shared with all the readers of the daily press, I knew little of my former friend and companion. One night--it was on the twentieth of March, 1888--I was returning from a journey to a patient (for I had now returned to civil practice), when my way led me through Baker Street. As I passed the well-remembered door, which must always be associated in my mind with my wooing, and with the dark incidents of the Study in Scarlet, I was seized with a keen desire to see Holmes again, and to know how he was employing his extraordinary powers. His rooms were brilliantly lit, and, even as I looked up, I saw his tall, spare figure pass twice in a dark silhouette against the blind. He was pacing the room swiftly, eagerly, with his head sunk upon his chest and his hands clasped behind him. To me, who knew his every mood and habit, his attitude and manner told their own story. He was at work again. He had risen out of his drug-created dreams and was hot upon the scent of some new problem. I rang the bell and was shown up to the chamber which had formerly been in part my own. His manner was not effusive. It seldom was; but he was glad, I think, to see me. With hardly a word spoken, but with a kindly eye, he waved me to an armchair, threw across his case of cigars, and indicated a spirit case and a gasogene in the corner. Then he stood before the fire and looked me over in his singular introspective fashion. "Wedlock suits you," he remarked. "I think, Watson, that you have put on seven and a half pounds since I saw you." "Seven!" I answered. "Indeed, I should have thought a little more. Just a trifle more, I fancy, Watson. And in practice again, I observe. You did not tell me that you intended to go into harness." "Then, how do you know?" "I see it, I deduce it. How do I know that you have been getting yourself very wet lately, and that you have a most clumsy and careless servant girl?" "My dear Holmes," said I, "this is too much. You would certainly have been burned, had you lived a few centuries ago. It is true that I had a country walk on Thursday and came home in a dreadful mess, but as I have changed my clothes I can't imagine how you deduce it. As to Mary Jane, she is incorrigible, and my wife has given her notice, but there, again, I fail to see how you work it out." He chuckled to himself and rubbed his long, nervous hands together. "It is simplicity itself," said he; "my eyes tell me that on the inside of your left shoe, just where the firelight strikes it, the leather is scored by six almost parallel cuts. Obviously they have been caused by someone who has very carelessly scraped round the edges of the sole in order to remove crusted mud from it. Hence, you see, my double deduction that you had been out in vile weather, and that you had a particularly malignant boot-slitting specimen of the London slavey. As to your practice, if a gentleman walks into my rooms smelling of iodoform, with a black mark of nitrate of silver upon his right forefinger, and a bulge on the right side of his top-hat to show where he has secreted his stethoscope, I must be dull, indeed, if I do not pronounce him to be an active member of the medical profession." I could not help laughing at the ease with which he explained his process of deduction. "When I hear you give your reasons," I remarked, "the thing always appears to me to be so ridiculously simple that I could easily do it myself, though at each successive instance of your reasoning I am baffled until you explain your process. And yet I believe that my eyes are as good as yours." "Quite so," he answered, lighting a cigarette, and throwing himself down into an armchair. "You see, but you do not observe. The distinction is clear. For example, you have frequently seen the steps which lead up from the hall to this room." "Frequently." "How often?" "Well, some hundreds of times." "Then how many are there?" "How many? I don't know." "Quite so! You have not observed. And yet you have seen. That is just my point. Now, I know that there are seventeen steps, because I have both seen and observed. By-the-way, since you are interested in these little problems, and since you are good enough to chronicle one or two of my trifling experiences, you may be interested in this." He threw over a sheet of thick, pink-tinted note-paper which had been lying open upon the table. "It came by the last post," said he. "Read it aloud." The note was undated, and without either signature or address. "There will call upon you to-night, at a quarter to eight o'clock," it said, "a gentleman who desires to consult you upon a matter of the very deepest moment. Your recent services to one of the royal houses of Europe have shown that you are one who may safely be trusted with matters which are of an importance which can hardly be exaggerated. This account of you we have from all quarters received. Be in your chamber then at that hour, and do not take it amiss if your visitor wear a mask." "This is indeed a mystery," I remarked. "What do you imagine that it means?" "I have no data yet. It is a capital mistake to theorize before one has data. Insensibly one begins to twist facts to suit theories, instead of theories to suit facts. But the note itself. What do you deduce from it?" I carefully examined the writing, and the paper upon which it was written. "The man who wrote it was presumably well to do," I remarked, endeavouring to imitate my companion's processes. "Such paper could not be bought under half a crown a packet. It is peculiarly strong and stiff." "Peculiar--that is the very word," said Holmes. "It is not an English paper at all. Hold it up to the light." I did so, and saw a large "E" with a small "g," a "P," and a large "G" with a small "t" woven into the texture of the paper. "What do you make of that?" asked Holmes. "The name of the maker, no doubt; or his monogram, rather." "Not at all. The 'G' with the small 't' stands for 'Gesellschaft,' which is the German for 'Company.' It is a customary contraction like our 'Co.' 'P,' of course, stands for 'Papier.' Now for the 'Eg.' Let us glance at our Continental Gazetteer." He took down a heavy brown volume from his shelves. "Eglow, Eglonitz--here we are, Egria. It is in a German-speaking country--in Bohemia, not far from Carlsbad. 'Remarkable as being the scene of the death of Wallenstein, and for its numerous glass-factories and paper-mills.' Ha, ha, my boy, what do you make of that?" His eyes sparkled, and he sent up a great blue triumphant cloud from his cigarette. "The paper was made in Bohemia," I said. "Precisely. And the man who wrote the note is a German. Do you note the peculiar construction of the sentence--'This account of you we have from all quarters received.' A Frenchman or Russian could not have written that. It is the German who is so uncourteous to his verbs. It only remains, therefore, to discover what is wanted by this German who writes upon Bohemian paper and prefers wearing a mask to showing his face. And here he comes, if I am not mistaken, to resolve all our doubts." As he spoke there was the sharp sound of horses' hoofs and grating wheels against the curb, followed by a sharp pull at the bell. Holmes whistled. "A pair, by the sound," said he. "Yes," he continued, glancing out of the window. "A nice little brougham and a pair of beauties. A hundred and fifty guineas apiece. There's money in this case, Watson, if there is nothing else." "I think that I had better go, Holmes." "Not a bit, Doctor. Stay where you are. I am lost without my Boswell. And this promises to be interesting. It would be a pity to miss it." "But your client--" "Never mind him. I may want your help, and so may he. Here he comes. Sit down in that armchair, Doctor, and give us your best attention." A slow and heavy step, which had been heard upon the stairs and in the passage, paused immediately outside the door. Then there was a loud and authoritative tap. "Come in!" said Holmes. A man entered who could hardly have been less than six feet six inches in height, with the chest and limbs of a Hercules. His dress was rich with a richness which would, in England, be looked upon as akin to bad taste. Heavy bands of astrakhan were slashed across the sleeves and fronts of his double-breasted coat, while the deep blue cloak which was thrown over his shoulders was lined with flame-coloured silk and secured at the neck with a brooch which consisted of a single flaming beryl. Boots which extended halfway up his calves, and which were trimmed at the tops with rich brown fur, completed the impression of barbaric opulence which was suggested by his whole appearance. He carried a broad-brimmed hat in his hand, while he wore across the upper part of his face, extending down past the cheekbones, a black vizard mask, which he had apparently adjusted that very moment, for his hand was still raised to it as he entered. From the lower part of the face he appeared to be a man of strong character, with a thick, hanging lip, and a long, straight chin suggestive of resolution pushed to the length of obstinacy. "You had my note?" he asked with a deep harsh voice and a strongly marked German accent. "I told you that I would call." He looked from one to the other of us, as if uncertain which to address. "Pray take a seat," said Holmes. "This is my friend and colleague, Dr. Watson, who is occasionally good enough to help me in my cases. Whom have I the honour to address?" "You may address me as the Count Von Kramm, a Bohemian nobleman. I understand that this gentleman, your friend, is a man of honour and discretion, whom I may trust with a matter of the most extreme importance. If not, I should much prefer to communicate with you alone." I rose to go, but Holmes caught me by the wrist and pushed me back into my chair. "It is both, or none," said he. "You may say before this gentleman anything which you may say to me." The Count shrugged his broad shoulders. "Then I must begin," said he, "by binding you both to absolute secrecy for two years; at the end of that time the matter will be of no importance. At present it is not too much to say that it is of such weight it may have an influence upon European history." "I promise," said Holmes. "And I." "You will excuse this mask," continued our strange visitor. "The august person who employs me wishes his agent to be unknown to you, and I may confess at once that the title by which I have just called myself is not exactly my own." "I was aware of it," said Holmes dryly. "The circumstances are of great delicacy, and every precaution has to be taken to quench what might grow to be an immense scandal and seriously compromise one of the reigning families of Europe. To speak plainly, the matter implicates the great House of Ormstein, hereditary kings of Bohemia." "I was also aware of that," murmured Holmes, settling himself down in his armchair and closing his eyes. Our visitor glanced with some apparent surprise at the languid, lounging figure of the man who had been no doubt depicted to him as the most incisive reasoner and most energetic agent in Europe. Holmes slowly reopened his eyes and looked impatiently at his gigantic client. "If your Majesty would condescend to state your case," he remarked, "I should be better able to advise you." The man sprang from his chair and paced up and down the room in uncontrollable agitation. Then, with a gesture of desperation, he tore the mask from his face and hurled it upon the ground. "You are right," he cried; "I am the King. Why should I attempt to conceal it?" "Why, indeed?" murmured Holmes. "Your Majesty had not spoken before I was aware that I was addressing Wilhelm Gottsreich Sigismond von Ormstein, Grand Duke of Cassel-Felstein, and hereditary King of Bohemia." "But you can understand," said our strange visitor, sitting down once more and passing his hand over his high white forehead, "you can understand that I am not accustomed to doing such business in my own person. Yet the matter was so delicate that I could not confide it to an agent without putting myself in his power. I have come incognito from Prague for the purpose of consulting you." "Then, pray consult," said Holmes, shutting his eyes once more. "The facts are briefly these: Some five years ago, during a lengthy visit to Warsaw, I made the acquaintance of the well-known adventuress, Irene Adler. The name is no doubt familiar to you." "Kindly look her up in my index, Doctor," murmured Holmes without opening his eyes. For many years he had adopted a system of docketing all paragraphs concerning men and things, so that it was difficult to name a subject or a person on which he could not at once furnish information. In this case I found her biography sandwiched in between that of a Hebrew rabbi and that of a staff-commander who had written a monograph upon the deep-sea fishes. "Let me see!" said Holmes. "Hum! Born in New Jersey in the year 1858. Contralto--hum! La Scala, hum! Prima donna Imperial Opera of Warsaw--yes! Retired from operatic stage--ha! Living in London--quite so! Your Majesty, as I understand, became entangled with this young person, wrote her some compromising letters, and is now desirous of getting those letters back." "Precisely so. But how--" "Was there a secret marriage?" "None." "No legal papers or certificates?" "None." "Then I fail to follow your Majesty. If this young person should produce her letters for blackmailing or other purposes, how is she to prove their authenticity?" "There is the writing." "Pooh, pooh! Forgery." "My private note-paper." "Stolen." "My own seal." "Imitated." "My photograph." "Bought." "We were both in the photograph." "Oh, dear! That is very bad! Your Majesty has indeed committed an indiscretion." "I was mad--insane." "You have compromised yourself seriously." "I was only Crown Prince then. I was young. I am but thirty now." "It must be recovered." "We have tried and failed." "Your Majesty must pay. It must be bought." "She will not sell." "Stolen, then." "Five attempts have been made. Twice burglars in my pay ransacked her house. Once we diverted her luggage when she travelled. Twice she has been waylaid. There has been no result." "No sign of it?" "Absolutely none." Holmes laughed. "It is quite a pretty little problem," said he. "But a very serious one to me," returned the King reproachfully. "Very, indeed. And what does she propose to do with the photograph?" "To ruin me." "But how?" "I am about to be married." "So I have heard." "To Clotilde Lothman von Saxe-Meningen, second daughter of the King of Scandinavia. You may know the strict principles of her family. She is herself the very soul of delicacy. A shadow of a doubt as to my conduct would bring the matter to an end." "And Irene Adler?" "Threatens to send them the photograph. And she will do it. I know that she will do it. You do not know her, but she has a soul of steel. She has the face of the most beautiful of women, and the mind of the most resolute of men. Rather than I should marry another woman, there are no lengths to which she would not go--none." "You are sure that she has not sent it yet?" "I am sure." "And why?" "Because she has said that she would send it on the day when the betrothal was publicly proclaimed. That will be next Monday." "Oh, then we have three days yet," said Holmes with a yawn. "That is very fortunate, as I have one or two matters of importance to look into just at present. Your Majesty will, of course, stay in London for the present?" "Certainly. You will find me at the Langham under the name of the Count Von Kramm." "Then I shall drop you a line to let you know how we progress." "Pray do so. I shall be all anxiety." "Then, as to money?" "You have carte blanche." "Absolutely?" "I tell you that I would give one of the provinces of my kingdom to have that photograph." "And for present expenses?" The King took a heavy chamois leather bag from under his cloak and laid it on the table. "There are three hundred pounds in gold and seven hundred in notes," he said. Holmes scribbled a receipt upon a sheet of his note-book and handed it to him. "And Mademoiselle's address?" he asked. "Is Briony Lodge, Serpentine Avenue, St. John's Wood." Holmes took a note of it. "One other question," said he. "Was the photograph a cabinet?" "It was." "Then, good-night, your Majesty, and I trust that we shall soon have some good news for you. And good-night, Watson," he added, as the wheels of the royal brougham rolled down the street. "If you will be good enough to call to-morrow afternoon at three o'clock I should like to chat this little matter over with you." II. At three o'clock precisely I was at Baker Street, but Holmes had not yet returned. The landlady informed me that he had left the house shortly after eight o'clock in the morning. I sat down beside the fire, however, with the intention of awaiting him, however long he might be. I was already deeply interested in his inquiry, for, though it was surrounded by none of the grim and strange features which were associated with the two crimes which I have already recorded, still, the nature of the case and the exalted station of his client gave it a character of its own. Indeed, apart from the nature of the investigation which my friend had on hand, there was something in his masterly grasp of a situation, and his keen, incisive reasoning, which made it a pleasure to me to study his system of work, and to follow the quick, subtle methods by which he disentangled the most inextricable mysteries. So accustomed was I to his invariable success that the very possibility of his failing had ceased to enter into my head. It was close upon four before the door opened, and a drunken-looking groom, ill-kempt and side-whiskered, with an inflamed face and disreputable clothes, walked into the room. Accustomed as I was to my friend's amazing powers in the use of disguises, I had to look three times before I was certain that it was indeed he. With a nod he vanished into the bedroom, whence he emerged in five minutes tweed-suited and respectable, as of old. Putting his hands into his pockets, he stretched out his legs in front of the fire and laughed heartily for some minutes. "Well, really!" he cried, and then he choked and laughed again until he was obliged to lie back, limp and helpless, in the chair. "What is it?" "It's quite too funny. I am sure you could never guess how I employed my morning, or what I ended by doing." "I can't imagine. I suppose that you have been watching the habits, and perhaps the house, of Miss Irene Adler." "Quite so; but the sequel was rather unusual. I will tell you, however. I left the house a little after eight o'clock this morning in the character of a groom out of work. There is a wonderful sympathy and freemasonry among horsey men. Be one of them, and you will know all that there is to know. I soon found Briony Lodge. It is a bijou villa, with a garden at the back, but built out in front right up to the road, two stories. Chubb lock to the door. Large sitting-room on the right side, well furnished, with long windows almost to the floor, and those preposterous English window fasteners which a child could open. Behind there was nothing remarkable, save that the passage window could be reached from the top of the coach-house. I walked round it and examined it closely from every point of view, but without noting anything else of interest. "I then lounged down the street and found, as I expected, that there was a mews in a lane which runs down by one wall of the garden. I lent the ostlers a hand in rubbing down their horses, and received in exchange twopence, a glass of half and half, two fills of shag tobacco, and as much information as I could desire about Miss Adler, to say nothing of half a dozen other people in the neighbourhood in whom I was not in the least interested, but whose biographies I was compelled to listen to." "And what of Irene Adler?" I asked. "Oh, she has turned all the men's heads down in that part. She is the daintiest thing under a bonnet on this planet. So say the Serpentine-mews, to a man. She lives quietly, sings at concerts, drives out at five every day, and returns at seven sharp for dinner. Seldom goes out at other times, except when she sings. Has only one male visitor, but a good deal of him. He is dark, handsome, and dashing, never calls less than once a day, and often twice. He is a Mr. Godfrey Norton, of the Inner Temple. See the advantages of a cabman as a confidant. They had driven him home a dozen times from Serpentine-mews, and knew all about him. When I had listened to all they had to tell, I began to walk up and down near Briony Lodge once more, and to think over my plan of campaign. "This Godfrey Norton was evidently an important factor in the matter. He was a lawyer. That sounded ominous. What was the relation between them, and what the object of his repeated visits? Was she his client, his friend, or his mistress? If the former, she had probably transferred the photograph to his keeping. If the latter, it was less likely. On the issue of this question depended whether I should continue my work at Briony Lodge, or turn my attention to the gentleman's chambers in the Temple. It was a delicate point, and it widened the field of my inquiry. I fear that I bore you with these details, but I have to let you see my little difficulties, if you are to understand the situation." "I am following you closely," I answered. "I was still balancing the matter in my mind when a hansom cab drove up to Briony Lodge, and a gentleman sprang out. He was a remarkably handsome man, dark, aquiline, and moustached--evidently the man of whom I had heard. He appeared to be in a great hurry, shouted to the cabman to wait, and brushed past the maid who opened the door with the air of a man who was thoroughly at home. "He was in the house about half an hour, and I could catch glimpses of him in the windows of the sitting-room, pacing up and down, talking excitedly, and waving his arms. Of her I could see nothing. Presently he emerged, looking even more flurried than before. As he stepped up to the cab, he pulled a gold watch from his pocket and looked at it earnestly, 'Drive like the devil,' he shouted, 'first to Gross & Hankey's in Regent Street, and then to the Church of St. Monica in the Edgeware Road. Half a guinea if you do it in twenty minutes!' "Away they went, and I was just wondering whether I should not do well to follow them when up the lane came a neat little landau, the coachman with his coat only half-buttoned, and his tie under his ear, while all the tags of his harness were sticking out of the buckles. It hadn't pulled up before she shot out of the hall door and into it. I only caught a glimpse of her at the moment, but she was a lovely woman, with a face that a man might die for. "'The Church of St. Monica, John,' she cried, 'and half a sovereign if you reach it in twenty minutes.' "This was quite too good to lose, Watson. I was just balancing whether I should run for it, or whether I should perch behind her landau when a cab came through the street. The driver looked twice at such a shabby fare, but I jumped in before he could object. 'The Church of St. Monica,' said I, 'and half a sovereign if you reach it in twenty minutes.' It was twenty-five minutes to twelve, and of course it was clear enough what was in the wind. "My cabby drove fast. I don't think I ever drove faster, but the others were there before us. The cab and the landau with their steaming horses were in front of the door when I arrived. I paid the man and hurried into the church. There was not a soul there save the two whom I had followed and a surpliced clergyman, who seemed to be expostulating with them. They were all three standing in a knot in front of the altar. I lounged up the side aisle like any other idler who has dropped into a church. Suddenly, to my surprise, the three at the altar faced round to me, and Godfrey Norton came running as hard as he could towards me. "'Thank God,' he cried. 'You'll do. Come! Come!' "'What then?' I asked. "'Come, man, come, only three minutes, or it won't be legal.' "I was half-dragged up to the altar, and before I knew where I was I found myself mumbling responses which were whispered in my ear, and vouching for things of which I knew nothing, and generally assisting in the secure tying up of Irene Adler, spinster, to Godfrey Norton, bachelor. It was all done in an instant, and there was the gentleman thanking me on the one side and the lady on the other, while the clergyman beamed on me in front. It was the most preposterous position in which I ever found myself in my life, and it was the thought of it that started me laughing just now. It seems that there had been some informality about their license, that the clergyman absolutely refused to marry them without a witness of some sort, and that my lucky appearance saved the bridegroom from having to sally out into the streets in search of a best man. The bride gave me a sovereign, and I mean to wear it on my watch-chain in memory of the occasion." "This is a very unexpected turn of affairs," said I; "and what then?" "Well, I found my plans very seriously menaced. It looked as if the pair might take an immediate departure, and so necessitate very prompt and energetic measures on my part. At the church door, however, they separated, he driving back to the Temple, and she to her own house. 'I shall drive out in the park at five as usual,' she said as she left him. I heard no more. They drove away in different directions, and I went off to make my own arrangements." "Which are?" "Some cold beef and a glass of beer," he answered, ringing the bell. "I have been too busy to think of food, and I am likely to be busier still this evening. By the way, Doctor, I shall want your co-operation." "I shall be delighted." "You don't mind breaking the law?" "Not in the least." "Nor running a chance of arrest?" "Not in a good cause." "Oh, the cause is excellent!" "Then I am your man." "I was sure that I might rely on you." "But what is it you wish?" "When Mrs. Turner has brought in the tray I will make it clear to you. Now," he said as he turned hungrily on the simple fare that our landlady had provided, "I must discuss it while I eat, for I have not much time. It is nearly five now. In two hours we must be on the scene of action. Miss Irene, or Madame, rather, returns from her drive at seven. We must be at Briony Lodge to meet her." "And what then?" "You must leave that to me. I have already arranged what is to occur. There is only one point on which I must insist. You must not interfere, come what may. You understand?" "I am to be neutral?" "To do nothing whatever. There will probably be some small unpleasantness. Do not join in it. It will end in my being conveyed into the house. Four or five minutes afterwards the sitting-room window will open. You are to station yourself close to that open window." "Yes." "You are to watch me, for I will be visible to you." "Yes." "And when I raise my hand--so--you will throw into the room what I give you to throw, and will, at the same time, raise the cry of fire. You quite follow me?" "Entirely." "It is nothing very formidable," he said, taking a long cigar-shaped roll from his pocket. "It is an ordinary plumber's smoke-rocket, fitted with a cap at either end to make it self-lighting. Your task is confined to that. When you raise your cry of fire, it will be taken up by quite a number of people. You may then walk to the end of the street, and I will rejoin you in ten minutes. I hope that I have made myself clear?" "I am to remain neutral, to get near the window, to watch you, and at the signal to throw in this object, then to raise the cry of fire, and to wait you at the corner of the street." "Precisely." "Then you may entirely rely on me." "That is excellent. I think, perhaps, it is almost time that I prepare for the new role I have to play." He disappeared into his bedroom and returned in a few minutes in the character of an amiable and simple-minded Nonconformist clergyman. His broad black hat, his baggy trousers, his white tie, his sympathetic smile, and general look of peering and benevolent curiosity were such as Mr. John Hare alone could have equalled. It was not merely that Holmes changed his costume. His expression, his manner, his very soul seemed to vary with every fresh part that he assumed. The stage lost a fine actor, even as science lost an acute reasoner, when he became a specialist in crime. It was a quarter past six when we left Baker Street, and it still wanted ten minutes to the hour when we found ourselves in Serpentine Avenue. It was already dusk, and the lamps were just being lighted as we paced up and down in front of Briony Lodge, waiting for the coming of its occupant. The house was just such as I had pictured it from Sherlock Holmes' succinct description, but the locality appeared to be less private than I expected. On the contrary, for a small street in a quiet neighbourhood, it was remarkably animated. There was a group of shabbily dressed men smoking and laughing in a corner, a scissors-grinder with his wheel, two guardsmen who were flirting with a nurse-girl, and several well-dressed young men who were lounging up and down with cigars in their mouths. "You see," remarked Holmes, as we paced to and fro in front of the house, "this marriage rather simplifies matters. The photograph becomes a double-edged weapon now. The chances are that she would be as averse to its being seen by Mr. Godfrey Norton, as our client is to its coming to the eyes of his princess. Now the question is, Where are we to find the photograph?" "Where, indeed?" "It is most unlikely that she carries it about with her. It is cabinet size. Too large for easy concealment about a woman's dress. She knows that the King is capable of having her waylaid and searched. Two attempts of the sort have already been made. We may take it, then, that she does not carry it about with her." "Where, then?" "Her banker or her lawyer. There is that double possibility. But I am inclined to think neither. Women are naturally secretive, and they like to do their own secreting. Why should she hand it over to anyone else? She could trust her own guardianship, but she could not tell what indirect or political influence might be brought to bear upon a business man. Besides, remember that she had resolved to use it within a few days. It must be where she can lay her hands upon it. It must be in her own house." "But it has twice been burgled." "Pshaw! They did not know how to look." "But how will you look?" "I will not look." "What then?" "I will get her to show me." "But she will refuse." "She will not be able to. But I hear the rumble of wheels. It is her carriage. Now carry out my orders to the letter." As he spoke the gleam of the side-lights of a carriage came round the curve of the avenue. It was a smart little landau which rattled up to the door of Briony Lodge. As it pulled up, one of the loafing men at the corner dashed forward to open the door in the hope of earning a copper, but was elbowed away by another loafer, who had rushed up with the same intention. A fierce quarrel broke out, which was increased by the two guardsmen, who took sides with one of the loungers, and by the scissors-grinder, who was equally hot upon the other side. A blow was struck, and in an instant the lady, who had stepped from her carriage, was the centre of a little knot of flushed and struggling men, who struck savagely at each other with their fists and sticks. Holmes dashed into the crowd to protect the lady; but just as he reached her he gave a cry and dropped to the ground, with the blood running freely down his face. At his fall the guardsmen took to their heels in one direction and the loungers in the other, while a number of better-dressed people, who had watched the scuffle without taking part in it, crowded in to help the lady and to attend to the injured man. Irene Adler, as I will still call her, had hurried up the steps; but she stood at the top with her superb figure outlined against the lights of the hall, looking back into the street. "Is the poor gentleman much hurt?" she asked. "He is dead," cried several voices. "No, no, there's life in him!" shouted another. "But he'll be gone before you can get him to hospital." "He's a brave fellow," said a woman. "They would have had the lady's purse and watch if it hadn't been for him. They were a gang, and a rough one, too. Ah, he's breathing now." "He can't lie in the street. May we bring him in, marm?" "Surely. Bring him into the sitting-room. There is a comfortable sofa. This way, please!" Slowly and solemnly he was borne into Briony Lodge and laid out in the principal room, while I still observed the proceedings from my post by the window. The lamps had been lit, but the blinds had not been drawn, so that I could see Holmes as he lay upon the couch. I do not know whether he was seized with compunction at that moment for the part he was playing, but I know that I never felt more heartily ashamed of myself in my life than when I saw the beautiful creature against whom I was conspiring, or the grace and kindliness with which she waited upon the injured man. And yet it would be the blackest treachery to Holmes to draw back now from the part which he had intrusted to me. I hardened my heart, and took the smoke-rocket from under my ulster. After all, I thought, we are not injuring her. We are but preventing her from injuring another. Holmes had sat up upon the couch, and I saw him motion like a man who is in need of air. A maid rushed across and threw open the window. At the same instant I saw him raise his hand and at the signal I tossed my rocket into the room with a cry of "Fire!" The word was no sooner out of my mouth than the whole crowd of spectators, well dressed and ill--gentlemen, ostlers, and servant-maids--joined in a general shriek of "Fire!" Thick clouds of smoke curled through the room and out at the open window. I caught a glimpse of rushing figures, and a moment later the voice of Holmes from within assuring them that it was a false alarm. Slipping through the shouting crowd I made my way to the corner of the street, and in ten minutes was rejoiced to find my friend's arm in mine, and to get away from the scene of uproar. He walked swiftly and in silence for some few minutes until we had turned down one of the quiet streets which lead towards the Edgeware Road. "You did it very nicely, Doctor," he remarked. "Nothing could have been better. It is all right." "You have the photograph?" "I know where it is." "And how did you find out?" "She showed me, as I told you she would." "I am still in the dark." "I do not wish to make a mystery," said he, laughing. "The matter was perfectly simple. You, of course, saw that everyone in the street was an accomplice. They were all engaged for the evening." "I guessed as much." "Then, when the row broke out, I had a little moist red paint in the palm of my hand. I rushed forward, fell down, clapped my hand to my face, and became a piteous spectacle. It is an old trick." "That also I could fathom." "Then they carried me in. She was bound to have me in. What else could she do? And into her sitting-room, which was the very room which I suspected. It lay between that and her bedroom, and I was determined to see which. They laid me on a couch, I motioned for air, they were compelled to open the window, and you had your chance." "How did that help you?" "It was all-important. When a woman thinks that her house is on fire, her instinct is at once to rush to the thing which she values most. It is a perfectly overpowering impulse, and I have more than once taken advantage of it. In the case of the Darlington substitution scandal it was of use to me, and also in the Arnsworth Castle business. A married woman grabs at her baby; an unmarried one reaches for her jewel-box. Now it was clear to me that our lady of to-day had nothing in the house more precious to her than what we are in quest of. She would rush to secure it. The alarm of fire was admirably done. The smoke and shouting were enough to shake nerves of steel. She responded beautifully. The photograph is in a recess behind a sliding panel just above the right bell-pull. She was there in an instant, and I caught a glimpse of it as she half-drew it out. When I cried out that it was a false alarm, she replaced it, glanced at the rocket, rushed from the room, and I have not seen her since. I rose, and, making my excuses, escaped from the house. I hesitated whether to attempt to secure the photograph at once; but the coachman had come in, and as he was watching me narrowly it seemed safer to wait. A little over-precipitance may ruin all." "And now?" I asked. "Our quest is practically finished. I shall call with the King to-morrow, and with you, if you care to come with us. We will be shown into the sitting-room to wait for the lady, but it is probable that when she comes she may find neither us nor the photograph. It might be a satisfaction to his Majesty to regain it with his own hands." "And when will you call?" "At eight in the morning. She will not be up, so that we shall have a clear field. Besides, we must be prompt, for this marriage may mean a complete change in her life and habits. I must wire to the King without delay." We had reached Baker Street and had stopped at the door. He was searching his pockets for the key when someone passing said: "Good-night, Mister Sherlock Holmes." There were several people on the pavement at the time, but the greeting appeared to come from a slim youth in an ulster who had hurried by. "I've heard that voice before," said Holmes, staring down the dimly lit street. "Now, I wonder who the deuce that could have been." III. I slept at Baker Street that night, and we were engaged upon our toast and coffee in the morning when the King of Bohemia rushed into the room. "You have really got it!" he cried, grasping Sherlock Holmes by either shoulder and looking eagerly into his face. "Not yet." "But you have hopes?" "I have hopes." "Then, come. I am all impatience to be gone." "We must have a cab." "No, my brougham is waiting." "Then that will simplify matters." We descended and started off once more for Briony Lodge. "Irene Adler is married," remarked Holmes. "Married! When?" "Yesterday." "But to whom?" "To an English lawyer named Norton." "But she could not love him." "I am in hopes that she does." "And why in hopes?" "Because it would spare your Majesty all fear of future annoyance. If the lady loves her husband, she does not love your Majesty. If she does not love your Majesty, there is no reason why she should interfere with your Majesty's plan." "It is true. And yet--Well! I wish she had been of my own station! What a queen she would have made!" He relapsed into a moody silence, which was not broken until we drew up in Serpentine Avenue. The door of Briony Lodge was open, and an elderly woman stood upon the steps. She watched us with a sardonic eye as we stepped from the brougham. "Mr. Sherlock Holmes, I believe?" said she. "I am Mr. Holmes," answered my companion, looking at her with a questioning and rather startled gaze. "Indeed! My mistress told me that you were likely to call. She left this morning with her husband by the 5:15 train from Charing Cross for the Continent." "What!" Sherlock Holmes staggered back, white with chagrin and surprise. "Do you mean that she has left England?" "Never to return." "And the papers?" asked the King hoarsely. "All is lost." "We shall see." He pushed past the servant and rushed into the drawing-room, followed by the King and myself. The furniture was scattered about in every direction, with dismantled shelves and open drawers, as if the lady had hurriedly ransacked them before her flight. Holmes rushed at the bell-pull, tore back a small sliding shutter, and, plunging in his hand, pulled out a photograph and a letter. The photograph was of Irene Adler herself in evening dress, the letter was superscribed to "Sherlock Holmes, Esq. To be left till called for." My friend tore it open and we all three read it together. It was dated at midnight of the preceding night and ran in this way: "MY DEAR MR. SHERLOCK HOLMES,--You really did it very well. You took me in completely. Until after the alarm of fire, I had not a suspicion. But then, when I found how I had betrayed myself, I began to think. I had been warned against you months ago. I had been told that if the King employed an agent it would certainly be you. And your address had been given me. Yet, with all this, you made me reveal what you wanted to know. Even after I became suspicious, I found it hard to think evil of such a dear, kind old clergyman. But, you know, I have been trained as an actress myself. Male costume is nothing new to me. I often take advantage of the freedom which it gives. I sent John, the coachman, to watch you, ran up stairs, got into my walking-clothes, as I call them, and came down just as you departed. "Well, I followed you to your door, and so made sure that I was really an object of interest to the celebrated Mr. Sherlock Holmes. Then I, rather imprudently, wished you good-night, and started for the Temple to see my husband. "We both thought the best resource was flight, when pursued by so formidable an antagonist; so you will find the nest empty when you call to-morrow. As to the photograph, your client may rest in peace. I love and am loved by a better man than he. The King may do what he will without hindrance from one whom he has cruelly wronged. I keep it only to safeguard myself, and to preserve a weapon which will always secure me from any steps which he might take in the future. I leave a photograph which he might care to possess; and I remain, dear Mr. Sherlock Holmes, "Very truly yours, "IRENE NORTON, née ADLER." "What a woman--oh, what a woman!" cried the King of Bohemia, when we had all three read this epistle. "Did I not tell you how quick and resolute she was? Would she not have made an admirable queen? Is it not a pity that she was not on my level?" "From what I have seen of the lady she seems indeed to be on a very different level to your Majesty," said Holmes coldly. "I am sorry that I have not been able to bring your Majesty's business to a more successful conclusion." "On the contrary, my dear sir," cried the King; "nothing could be more successful. I know that her word is inviolate. The photograph is now as safe as if it were in the fire." "I am glad to hear your Majesty say so." "I am immensely indebted to you. Pray tell me in what way I can reward you. This ring--" He slipped an emerald snake ring from his finger and held it out upon the palm of his hand. "Your Majesty has something which I should value even more highly," said Holmes. "You have but to name it." "This photograph!" The King stared at him in amazement. "Irene's photograph!" he cried. "Certainly, if you wish it." "I thank your Majesty. Then there is no more to be done in the matter. I have the honour to wish you a very good-morning." He bowed, and, turning away without observing the hand which the King had stretched out to him, he set off in my company for his chambers. And that was how a great scandal threatened to affect the kingdom of Bohemia, and how the best plans of Mr. Sherlock Holmes were beaten by a woman's wit. He used to make merry over the cleverness of women, but I have not heard him do it of late. And when he speaks of Irene Adler, or when he refers to her photograph, it is always under the honourable title of the woman. ADVENTURE II. THE RED-HEADED LEAGUE I had called upon my friend, Mr. Sherlock Holmes, one day in the autumn of last year and found him in deep conversation with a very stout, florid-faced, elderly gentleman with fiery red hair. With an apology for my intrusion, I was about to withdraw when Holmes pulled me abruptly into the room and closed the door behind me. "You could not possibly have come at a better time, my dear Watson," he said cordially. "I was afraid that you were engaged." "So I am. Very much so." "Then I can wait in the next room." "Not at all. This gentleman, Mr. Wilson, has been my partner and helper in many of my most successful cases, and I have no doubt that he will be of the utmost use to me in yours also." The stout gentleman half rose from his chair and gave a bob of greeting, with a quick little questioning glance from his small fat-encircled eyes. "Try the settee," said Holmes, relapsing into his armchair and putting his fingertips together, as was his custom when in judicial moods. "I know, my dear Watson, that you share my love of all that is bizarre and outside the conventions and humdrum routine of everyday life. You have shown your relish for it by the enthusiasm which has prompted you to chronicle, and, if you will excuse my saying so, somewhat to embellish so many of my own little adventures." "Your cases have indeed been of the greatest interest to me," I observed. "You will remember that I remarked the other day, just before we went into the very simple problem presented by Miss Mary Sutherland, that for strange effects and extraordinary combinations we must go to life itself, which is always far more daring than any effort of the imagination." "A proposition which I took the liberty of doubting." "You did, Doctor, but none the less you must come round to my view, for otherwise I shall keep on piling fact upon fact on you until your reason breaks down under them and acknowledges me to be right. Now, Mr. Jabez Wilson here has been good enough to call upon me this morning, and to begin a narrative which promises to be one of the most singular which I have listened to for some time. You have heard me remark that the strangest and most unique things are very often connected not with the larger but with the smaller crimes, and occasionally, indeed, where there is room for doubt whether any positive crime has been committed. As far as I have heard it is impossible for me to say whether the present case is an instance of crime or not, but the course of events is certainly among the most singular that I have ever listened to. Perhaps, Mr. Wilson, you would have the great kindness to recommence your narrative. I ask you not merely because my friend Dr. Watson has not heard the opening part but also because the peculiar nature of the story makes me anxious to have every possible detail from your lips. As a rule, when I have heard some slight indication of the course of events, I am able to guide myself by the thousands of other similar cases which occur to my memory. In the present instance I am forced to admit that the facts are, to the best of my belief, unique." The portly client puffed out his chest with an appearance of some little pride and pulled a dirty and wrinkled newspaper from the inside pocket of his greatcoat. As he glanced down the advertisement column, with his head thrust forward and the paper flattened out upon his knee, I took a good look at the man and endeavoured, after the fashion of my companion, to read the indications which might be presented by his dress or appearance. I did not gain very much, however, by my inspection. Our visitor bore every mark of being an average commonplace British tradesman, obese, pompous, and slow. He wore rather baggy grey shepherd's check trousers, a not over-clean black frock-coat, unbuttoned in the front, and a drab waistcoat with a heavy brassy Albert chain, and a square pierced bit of metal dangling down as an ornament. A frayed top-hat and a faded brown overcoat with a wrinkled velvet collar lay upon a chair beside him. Altogether, look as I would, there was nothing remarkable about the man save his blazing red head, and the expression of extreme chagrin and discontent upon his features. Sherlock Holmes' quick eye took in my occupation, and he shook his head with a smile as he noticed my questioning glances. "Beyond the obvious facts that he has at some time done manual labour, that he takes snuff, that he is a Freemason, that he has been in China, and that he has done a considerable amount of writing lately, I can deduce nothing else." Mr. Jabez Wilson started up in his chair, with his forefinger upon the paper, but his eyes upon my companion. "How, in the name of good-fortune, did you know all that, Mr. Holmes?" he asked. "How did you know, for example, that I did manual labour. It's as true as gospel, for I began as a ship's carpenter." "Your hands, my dear sir. Your right hand is quite a size larger than your left. You have worked with it, and the muscles are more developed." "Well, the snuff, then, and the Freemasonry?" "I won't insult your intelligence by telling you how I read that, especially as, rather against the strict rules of your order, you use an arc-and-compass breastpin." "Ah, of course, I forgot that. But the writing?" "What else can be indicated by that right cuff so very shiny for five inches, and the left one with the smooth patch near the elbow where you rest it upon the desk?" "Well, but China?" "The fish that you have tattooed immediately above your right wrist could only have been done in China. I have made a small study of tattoo marks and have even contributed to the literature of the subject. That trick of staining the fishes' scales of a delicate pink is quite peculiar to China. When, in addition, I see a Chinese coin hanging from your watch-chain, the matter becomes even more simple." Mr. Jabez Wilson laughed heavily. "Well, I never!" said he. "I thought at first that you had done something clever, but I see that there was nothing in it, after all." "I begin to think, Watson," said Holmes, "that I make a mistake in explaining. 'Omne ignotum pro magnifico,' you know, and my poor little reputation, such as it is, will suffer shipwreck if I am so candid. Can you not find the advertisement, Mr. Wilson?" "Yes, I have got it now," he answered with his thick red finger planted halfway down the column. "Here it is. This is what began it all. You just read it for yourself, sir." I took the paper from him and read as follows: "TO THE RED-HEADED LEAGUE: On account of the bequest of the late Ezekiah Hopkins, of Lebanon, Pennsylvania, U. S. A., there is now another vacancy open which entitles a member of the League to a salary of 4 pounds a week for purely nominal services. All red-headed men who are sound in body and mind and above the age of twenty-one years, are eligible. Apply in person on Monday, at eleven o'clock, to Duncan Ross, at the offices of the League, 7 Pope's Court, Fleet Street." "What on earth does this mean?" I ejaculated after I had twice read over the extraordinary announcement. Holmes chuckled and wriggled in his chair, as was his habit when in high spirits. "It is a little off the beaten track, isn't it?" said he. "And now, Mr. Wilson, off you go at scratch and tell us all about yourself, your household, and the effect which this advertisement had upon your fortunes. You will first make a note, Doctor, of the paper and the date." "It is The Morning Chronicle of April 27, 1890. Just two months ago." "Very good. Now, Mr. Wilson?" "Well, it is just as I have been telling you, Mr. Sherlock Holmes," said Jabez Wilson, mopping his forehead; "I have a small pawnbroker's business at Coburg Square, near the City. It's not a very large affair, and of late years it has not done more than just give me a living. I used to be able to keep two assistants, but now I only keep one; and I would have a job to pay him but that he is willing to come for half wages so as to learn the business." "What is the name of this obliging youth?" asked Sherlock Holmes. "His name is Vincent Spaulding, and he's not such a youth, either. It's hard to say his age. I should not wish a smarter assistant, Mr. Holmes; and I know very well that he could better himself and earn twice what I am able to give him. But, after all, if he is satisfied, why should I put ideas in his head?" "Why, indeed? You seem most fortunate in having an employé who comes under the full market price. It is not a common experience among employers in this age. I don't know that your assistant is not as remarkable as your advertisement." "Oh, he has his faults, too," said Mr. Wilson. "Never was such a fellow for photography. Snapping away with a camera when he ought to be improving his mind, and then diving down into the cellar like a rabbit into its hole to develop his pictures. That is his main fault, but on the whole he's a good worker. There's no vice in him." "He is still with you, I presume?" "Yes, sir. He and a girl of fourteen, who does a bit of simple cooking and keeps the place clean--that's all I have in the house, for I am a widower and never had any family. We live very quietly, sir, the three of us; and we keep a roof over our heads and pay our debts, if we do nothing more. "The first thing that put us out was that advertisement. Spaulding, he came down into the office just this day eight weeks, with this very paper in his hand, and he says: "'I wish to the Lord, Mr. Wilson, that I was a red-headed man.' "'Why that?' I asks. "'Why,' says he, 'here's another vacancy on the League of the Red-headed Men. It's worth quite a little fortune to any man who gets it, and I understand that there are more vacancies than there are men, so that the trustees are at their wits' end what to do with the money. If my hair would only change colour, here's a nice little crib all ready for me to step into.' "'Why, what is it, then?' I asked. You see, Mr. Holmes, I am a very stay-at-home man, and as my business came to me instead of my having to go to it, I was often weeks on end without putting my foot over the door-mat. In that way I didn't know much of what was going on outside, and I was always glad of a bit of news. "'Have you never heard of the League of the Red-headed Men?' he asked with his eyes open. "'Never.' "'Why, I wonder at that, for you are eligible yourself for one of the vacancies.' "'And what are they worth?' I asked. "'Oh, merely a couple of hundred a year, but the work is slight, and it need not interfere very much with one's other occupations.' "Well, you can easily think that that made me prick up my ears, for the business has not been over-good for some years, and an extra couple of hundred would have been very handy. "'Tell me all about it,' said I. "'Well,' said he, showing me the advertisement, 'you can see for yourself that the League has a vacancy, and there is the address where you should apply for particulars. As far as I can make out, the League was founded by an American millionaire, Ezekiah Hopkins, who was very peculiar in his ways. He was himself red-headed, and he had a great sympathy for all red-headed men; so when he died it was found that he had left his enormous fortune in the hands of trustees, with instructions to apply the interest to the providing of easy berths to men whose hair is of that colour. From all I hear it is splendid pay and very little to do.' "'But,' said I, 'there would be millions of red-headed men who would apply.' "'Not so many as you might think,' he answered. 'You see it is really confined to Londoners, and to grown men. This American had started from London when he was young, and he wanted to do the old town a good turn. Then, again, I have heard it is no use your applying if your hair is light red, or dark red, or anything but real bright, blazing, fiery red. Now, if you cared to apply, Mr. Wilson, you would just walk in; but perhaps it would hardly be worth your while to put yourself out of the way for the sake of a few hundred pounds.' "Now, it is a fact, gentlemen, as you may see for yourselves, that my hair is of a very full and rich tint, so that it seemed to me that if there was to be any competition in the matter I stood as good a chance as any man that I had ever met. Vincent Spaulding seemed to know so much about it that I thought he might prove useful, so I just ordered him to put up the shutters for the day and to come right away with me. He was very willing to have a holiday, so we shut the business up and started off for the address that was given us in the advertisement. "I never hope to see such a sight as that again, Mr. Holmes. From north, south, east, and west every man who had a shade of red in his hair had tramped into the city to answer the advertisement. Fleet Street was choked with red-headed folk, and Pope's Court looked like a coster's orange barrow. I should not have thought there were so many in the whole country as were brought together by that single advertisement. Every shade of colour they were--straw, lemon, orange, brick, Irish-setter, liver, clay; but, as Spaulding said, there were not many who had the real vivid flame-coloured tint. When I saw how many were waiting, I would have given it up in despair; but Spaulding would not hear of it. How he did it I could not imagine, but he pushed and pulled and butted until he got me through the crowd, and right up to the steps which led to the office. There was a double stream upon the stair, some going up in hope, and some coming back dejected; but we wedged in as well as we could and soon found ourselves in the office." "Your experience has been a most entertaining one," remarked Holmes as his client paused and refreshed his memory with a huge pinch of snuff. "Pray continue your very interesting statement." "There was nothing in the office but a couple of wooden chairs and a deal table, behind which sat a small man with a head that was even redder than mine. He said a few words to each candidate as he came up, and then he always managed to find some fault in them which would disqualify them. Getting a vacancy did not seem to be such a very easy matter, after all. However, when our turn came the little man was much more favourable to me than to any of the others, and he closed the door as we entered, so that he might have a private word with us. "'This is Mr. Jabez Wilson,' said my assistant, 'and he is willing to fill a vacancy in the League.' "'And he is admirably suited for it,' the other answered. 'He has every requirement. I cannot recall when I have seen anything so fine.' He took a step backward, cocked his head on one side, and gazed at my hair until I felt quite bashful. Then suddenly he plunged forward, wrung my hand, and congratulated me warmly on my success. "'It would be injustice to hesitate,' said he. 'You will, however, I am sure, excuse me for taking an obvious precaution.' With that he seized my hair in both his hands, and tugged until I yelled with the pain. 'There is water in your eyes,' said he as he released me. 'I perceive that all is as it should be. But we have to be careful, for we have twice been deceived by wigs and once by paint. I could tell you tales of cobbler's wax which would disgust you with human nature.' He stepped over to the window and shouted through it at the top of his voice that the vacancy was filled. A groan of disappointment came up from below, and the folk all trooped away in different directions until there was not a red-head to be seen except my own and that of the manager. "'My name,' said he, 'is Mr. Duncan Ross, and I am myself one of the pensioners upon the fund left by our noble benefactor. Are you a married man, Mr. Wilson? Have you a family?' "I answered that I had not. "His face fell immediately. "'Dear me!' he said gravely, 'that is very serious indeed! I am sorry to hear you say that. The fund was, of course, for the propagation and spread of the red-heads as well as for their maintenance. It is exceedingly unfortunate that you should be a bachelor.' "My face lengthened at this, Mr. Holmes, for I thought that I was not to have the vacancy after all; but after thinking it over for a few minutes he said that it would be all right. "'In the case of another,' said he, 'the objection might be fatal, but we must stretch a point in favour of a man with such a head of hair as yours. When shall you be able to enter upon your new duties?' "'Well, it is a little awkward, for I have a business already,' said I. "'Oh, never mind about that, Mr. Wilson!' said Vincent Spaulding. 'I should be able to look after that for you.' "'What would be the hours?' I asked. "'Ten to two.' "Now a pawnbroker's business is mostly done of an evening, Mr. Holmes, especially Thursday and Friday evening, which is just before pay-day; so it would suit me very well to earn a little in the mornings. Besides, I knew that my assistant was a good man, and that he would see to anything that turned up. "'That would suit me very well,' said I. 'And the pay?' "'Is 4 pounds a week.' "'And the work?' "'Is purely nominal.' "'What do you call purely nominal?' "'Well, you have to be in the office, or at least in the building, the whole time. If you leave, you forfeit your whole position forever. The will is very clear upon that point. You don't comply with the conditions if you budge from the office during that time.' "'It's only four hours a day, and I should not think of leaving,' said I. "'No excuse will avail,' said Mr. Duncan Ross; 'neither sickness nor business nor anything else. There you must stay, or you lose your billet.' "'And the work?' "'Is to copy out the "Encyclopaedia Britannica." There is the first volume of it in that press. You must find your own ink, pens, and blotting-paper, but we provide this table and chair. Will you be ready to-morrow?' "'Certainly,' I answered. "'Then, good-bye, Mr. Jabez Wilson, and let me congratulate you once more on the important position which you have been fortunate enough to gain.' He bowed me out of the room and I went home with my assistant, hardly knowing what to say or do, I was so pleased at my own good fortune. "Well, I thought over the matter all day, and by evening I was in low spirits again; for I had quite persuaded myself that the whole affair must be some great hoax or fraud, though what its object might be I could not imagine. It seemed altogether past belief that anyone could make such a will, or that they would pay such a sum for doing anything so simple as copying out the 'Encyclopaedia Britannica.' Vincent Spaulding did what he could to cheer me up, but by bedtime I had reasoned myself out of the whole thing. However, in the morning I determined to have a look at it anyhow, so I bought a penny bottle of ink, and with a quill-pen, and seven sheets of foolscap paper, I started off for Pope's Court. "Well, to my surprise and delight, everything was as right as possible. The table was set out ready for me, and Mr. Duncan Ross was there to see that I got fairly to work. He started me off upon the letter A, and then he left me; but he would drop in from time to time to see that all was right with me. At two o'clock he bade me good-day, complimented me upon the amount that I had written, and locked the door of the office after me. "This went on day after day, Mr. Holmes, and on Saturday the manager came in and planked down four golden sovereigns for my week's work. It was the same next week, and the same the week after. Every morning I was there at ten, and every afternoon I left at two. By degrees Mr. Duncan Ross took to coming in only once of a morning, and then, after a time, he did not come in at all. Still, of course, I never dared to leave the room for an instant, for I was not sure when he might come, and the billet was such a good one, and suited me so well, that I would not risk the loss of it. "Eight weeks passed away like this, and I had written about Abbots and Archery and Armour and Architecture and Attica, and hoped with diligence that I might get on to the B's before very long. It cost me something in foolscap, and I had pretty nearly filled a shelf with my writings. And then suddenly the whole business came to an end." "To an end?" "Yes, sir. And no later than this morning. I went to my work as usual at ten o'clock, but the door was shut and locked, with a little square of cardboard hammered on to the middle of the panel with a tack. Here it is, and you can read for yourself." He held up a piece of white cardboard about the size of a sheet of note-paper. It read in this fashion: THE RED-HEADED LEAGUE IS DISSOLVED. October 9, 1890. Sherlock Holmes and I surveyed this curt announcement and the rueful face behind it, until the comical side of the affair so completely overtopped every other consideration that we both burst out into a roar of laughter. "I cannot see that there is anything very funny," cried our client, flushing up to the roots of his flaming head. "If you can do nothing better than laugh at me, I can go elsewhere." "No, no," cried Holmes, shoving him back into the chair from which he had half risen. "I really wouldn't miss your case for the world. It is most refreshingly unusual. But there is, if you will excuse my saying so, something just a little funny about it. Pray what steps did you take when you found the card upon the door?" "I was staggered, sir. I did not know what to do. Then I called at the offices round, but none of them seemed to know anything about it. Finally, I went to the landlord, who is an accountant living on the ground-floor, and I asked him if he could tell me what had become of the Red-headed League. He said that he had never heard of any such body. Then I asked him who Mr. Duncan Ross was. He answered that the name was new to him. "'Well,' said I, 'the gentleman at No. 4.' "'What, the red-headed man?' "'Yes.' "'Oh,' said he, 'his name was William Morris. He was a solicitor and was using my room as a temporary convenience until his new premises were ready. He moved out yesterday.' "'Where could I find him?' "'Oh, at his new offices. He did tell me the address. Yes, 17 King Edward Street, near St. Paul's.' "I started off, Mr. Holmes, but when I got to that address it was a manufactory of artificial knee-caps, and no one in it had ever heard of either Mr. William Morris or Mr. Duncan Ross." "And what did you do then?" asked Holmes. "I went home to Saxe-Coburg Square, and I took the advice of my assistant. But he could not help me in any way. He could only say that if I waited I should hear by post. But that was not quite good enough, Mr. Holmes. I did not wish to lose such a place without a struggle, so, as I had heard that you were good enough to give advice to poor folk who were in need of it, I came right away to you." "And you did very wisely," said Holmes. "Your case is an exceedingly remarkable one, and I shall be happy to look into it. From what you have told me I think that it is possible that graver issues hang from it than might at first sight appear." "Grave enough!" said Mr. Jabez Wilson. "Why, I have lost four pound a week." "As far as you are personally concerned," remarked Holmes, "I do not see that you have any grievance against this extraordinary league. On the contrary, you are, as I understand, richer by some 30 pounds, to say nothing of the minute knowledge which you have gained on every subject which comes under the letter A. You have lost nothing by them." "No, sir. But I want to find out about them, and who they are, and what their object was in playing this prank--if it was a prank--upon me. It was a pretty expensive joke for them, for it cost them two and thirty pounds." "We shall endeavour to clear up these points for you. And, first, one or two questions, Mr. Wilson. This assistant of yours who first called your attention to the advertisement--how long had he been with you?" "About a month then." "How did he come?" "In answer to an advertisement." "Was he the only applicant?" "No, I had a dozen." "Why did you pick him?" "Because he was handy and would come cheap." "At half-wages, in fact." "Yes." "What is he like, this Vincent Spaulding?" "Small, stout-built, very quick in his ways, no hair on his face, though he's not short of thirty. Has a white splash of acid upon his forehead." Holmes sat up in his chair in considerable excitement. "I thought as much," said he. "Have you ever observed that his ears are pierced for earrings?" "Yes, sir. He told me that a gipsy had done it for him when he was a lad." "Hum!" said Holmes, sinking back in deep thought. "He is still with you?" "Oh, yes, sir; I have only just left him." "And has your business been attended to in your absence?" "Nothing to complain of, sir. There's never very much to do of a morning." "That will do, Mr. Wilson. I shall be happy to give you an opinion upon the subject in the course of a day or two. To-day is Saturday, and I hope that by Monday we may come to a conclusion." "Well, Watson," said Holmes when our visitor had left us, "what do you make of it all?" "I make nothing of it," I answered frankly. "It is a most mysterious business." "As a rule," said Holmes, "the more bizarre a thing is the less mysterious it proves to be. It is your commonplace, featureless crimes which are really puzzling, just as a commonplace face is the most difficult to identify. But I must be prompt over this matter." "What are you going to do, then?" I asked. "To smoke," he answered. "It is quite a three pipe problem, and I beg that you won't speak to me for fifty minutes." He curled himself up in his chair, with his thin knees drawn up to his hawk-like nose, and there he sat with his eyes closed and his black clay pipe thrusting out like the bill of some strange bird. I had come to the conclusion that he had dropped asleep, and indeed was nodding myself, when he suddenly sprang out of his chair with the gesture of a man who has made up his mind and put his pipe down upon the mantelpiece. "Sarasate plays at the St. James's Hall this afternoon," he remarked. "What do you think, Watson? Could your patients spare you for a few hours?" "I have nothing to do to-day. My practice is never very absorbing." "Then put on your hat and come. I am going through the City first, and we can have some lunch on the way. I observe that there is a good deal of German music on the programme, which is rather more to my taste than Italian or French. It is introspective, and I want to introspect. Come along!" We travelled by the Underground as far as Aldersgate; and a short walk took us to Saxe-Coburg Square, the scene of the singular story which we had listened to in the morning. It was a poky, little, shabby-genteel place, where four lines of dingy two-storied brick houses looked out into a small railed-in enclosure, where a lawn of weedy grass and a few clumps of faded laurel-bushes made a hard fight against a smoke-laden and uncongenial atmosphere. Three gilt balls and a brown board with "JABEZ WILSON" in white letters, upon a corner house, announced the place where our red-headed client carried on his business. Sherlock Holmes stopped in front of it with his head on one side and looked it all over, with his eyes shining brightly between puckered lids. Then he walked slowly up the street, and then down again to the corner, still looking keenly at the houses. Finally he returned to the pawnbroker's, and, having thumped vigorously upon the pavement with his stick two or three times, he went up to the door and knocked. It was instantly opened by a bright-looking, clean-shaven young fellow, who asked him to step in. "Thank you," said Holmes, "I only wished to ask you how you would go from here to the Strand." "Third right, fourth left," answered the assistant promptly, closing the door. "Smart fellow, that," observed Holmes as we walked away. "He is, in my judgment, the fourth smartest man in London, and for daring I am not sure that he has not a claim to be third. I have known something of him before." "Evidently," said I, "Mr. Wilson's assistant counts for a good deal in this mystery of the Red-headed League. I am sure that you inquired your way merely in order that you might see him." "Not him." "What then?" "The knees of his trousers." "And what did you see?" "What I expected to see." "Why did you beat the pavement?" "My dear doctor, this is a time for observation, not for talk. We are spies in an enemy's country. We know something of Saxe-Coburg Square. Let us now explore the parts which lie behind it." The road in which we found ourselves as we turned round the corner from the retired Saxe-Coburg Square presented as great a contrast to it as the front of a picture does to the back. It was one of the main arteries which conveyed the traffic of the City to the north and west. The roadway was blocked with the immense stream of commerce flowing in a double tide inward and outward, while the footpaths were black with the hurrying swarm of pedestrians. It was difficult to realise as we looked at the line of fine shops and stately business premises that they really abutted on the other side upon the faded and stagnant square which we had just quitted. "Let me see," said Holmes, standing at the corner and glancing along the line, "I should like just to remember the order of the houses here. It is a hobby of mine to have an exact knowledge of London. There is Mortimer's, the tobacconist, the little newspaper shop, the Coburg branch of the City and Suburban Bank, the Vegetarian Restaurant, and McFarlane's carriage-building depot. That carries us right on to the other block. And now, Doctor, we've done our work, so it's time we had some play. A sandwich and a cup of coffee, and then off to violin-land, where all is sweetness and delicacy and harmony, and there are no red-headed clients to vex us with their conundrums." My friend was an enthusiastic musician, being himself not only a very capable performer but a composer of no ordinary merit. All the afternoon he sat in the stalls wrapped in the most perfect happiness, gently waving his long, thin fingers in time to the music, while his gently smiling face and his languid, dreamy eyes were as unlike those of Holmes the sleuth-hound, Holmes the relentless, keen-witted, ready-handed criminal agent, as it was possible to conceive. In his singular character the dual nature alternately asserted itself, and his extreme exactness and astuteness represented, as I have often thought, the reaction against the poetic and contemplative mood which occasionally predominated in him. The swing of his nature took him from extreme languor to devouring energy; and, as I knew well, he was never so truly formidable as when, for days on end, he had been lounging in his armchair amid his improvisations and his black-letter editions. Then it was that the lust of the chase would suddenly come upon him, and that his brilliant reasoning power would rise to the level of intuition, until those who were unacquainted with his methods would look askance at him as on a man whose knowledge was not that of other mortals. When I saw him that afternoon so enwrapped in the music at St. James's Hall I felt that an evil time might be coming upon those whom he had set himself to hunt down. "You want to go home, no doubt, Doctor," he remarked as we emerged. "Yes, it would be as well." "And I have some business to do which will take some hours. This business at Coburg Square is serious." "Why serious?" "A considerable crime is in contemplation. I have every reason to believe that we shall be in time to stop it. But to-day being Saturday rather complicates matters. I shall want your help to-night." "At what time?" "Ten will be early enough." "I shall be at Baker Street at ten." "Very well. And, I say, Doctor, there may be some little danger, so kindly put your army revolver in your pocket." He waved his hand, turned on his heel, and disappeared in an instant among the crowd. I trust that I am not more dense than my neighbours, but I was always oppressed with a sense of my own stupidity in my dealings with Sherlock Holmes. Here I had heard what he had heard, I had seen what he had seen, and yet from his words it was evident that he saw clearly not only what had happened but what was about to happen, while to me the whole business was still confused and grotesque. As I drove home to my house in Kensington I thought over it all, from the extraordinary story of the red-headed copier of the "Encyclopaedia" down to the visit to Saxe-Coburg Square, and the ominous words with which he had parted from me. What was this nocturnal expedition, and why should I go armed? Where were we going, and what were we to do? I had the hint from Holmes that this smooth-faced pawnbroker's assistant was a formidable man--a man who might play a deep game. I tried to puzzle it out, but gave it up in despair and set the matter aside until night should bring an explanation. It was a quarter-past nine when I started from home and made my way across the Park, and so through Oxford Street to Baker Street. Two hansoms were standing at the door, and as I entered the passage I heard the sound of voices from above. On entering his room I found Holmes in animated conversation with two men, one of whom I recognised as Peter Jones, the official police agent, while the other was a long, thin, sad-faced man, with a very shiny hat and oppressively respectable frock-coat. "Ha! Our party is complete," said Holmes, buttoning up his pea-jacket and taking his heavy hunting crop from the rack. "Watson, I think you know Mr. Jones, of Scotland Yard? Let me introduce you to Mr. Merryweather, who is to be our companion in to-night's adventure." "We're hunting in couples again, Doctor, you see," said Jones in his consequential way. "Our friend here is a wonderful man for starting a chase. All he wants is an old dog to help him to do the running down." "I hope a wild goose may not prove to be the end of our chase," observed Mr. Merryweather gloomily. "You may place considerable confidence in Mr. Holmes, sir," said the police agent loftily. "He has his own little methods, which are, if he won't mind my saying so, just a little too theoretical and fantastic, but he has the makings of a detective in him. It is not too much to say that once or twice, as in that business of the Sholto murder and the Agra treasure, he has been more nearly correct than the official force." "Oh, if you say so, Mr. Jones, it is all right," said the stranger with deference. "Still, I confess that I miss my rubber. It is the first Saturday night for seven-and-twenty years that I have not had my rubber." "I think you will find," said Sherlock Holmes, "that you will play for a higher stake to-night than you have ever done yet, and that the play will be more exciting. For you, Mr. Merryweather, the stake will be some 30,000 pounds; and for you, Jones, it will be the man upon whom you wish to lay your hands." "John Clay, the murderer, thief, smasher, and forger. He's a young man, Mr. Merryweather, but he is at the head of his profession, and I would rather have my bracelets on him than on any criminal in London. He's a remarkable man, is young John Clay. His grandfather was a royal duke, and he himself has been to Eton and Oxford. His brain is as cunning as his fingers, and though we meet signs of him at every turn, we never know where to find the man himself. He'll crack a crib in Scotland one week, and be raising money to build an orphanage in Cornwall the next. I've been on his track for years and have never set eyes on him yet." "I hope that I may have the pleasure of introducing you to-night. I've had one or two little turns also with Mr. John Clay, and I agree with you that he is at the head of his profession. It is past ten, however, and quite time that we started. If you two will take the first hansom, Watson and I will follow in the second." Sherlock Holmes was not very communicative during the long drive and lay back in the cab humming the tunes which he had heard in the afternoon. We rattled through an endless labyrinth of gas-lit streets until we emerged into Farrington Street. "We are close there now," my friend remarked. "This fellow Merryweather is a bank director, and personally interested in the matter. I thought it as well to have Jones with us also. He is not a bad fellow, though an absolute imbecile in his profession. He has one positive virtue. He is as brave as a bulldog and as tenacious as a lobster if he gets his claws upon anyone. Here we are, and they are waiting for us." We had reached the same crowded thoroughfare in which we had found ourselves in the morning. Our cabs were dismissed, and, following the guidance of Mr. Merryweather, we passed down a narrow passage and through a side door, which he opened for us. Within there was a small corridor, which ended in a very massive iron gate. This also was opened, and led down a flight of winding stone steps, which terminated at another formidable gate. Mr. Merryweather stopped to light a lantern, and then conducted us down a dark, earth-smelling passage, and so, after opening a third door, into a huge vault or cellar, which was piled all round with crates and massive boxes. "You are not very vulnerable from above," Holmes remarked as he held up the lantern and gazed about him. "Nor from below," said Mr. Merryweather, striking his stick upon the flags which lined the floor. "Why, dear me, it sounds quite hollow!" he remarked, looking up in surprise. "I must really ask you to be a little more quiet!" said Holmes severely. "You have already imperilled the whole success of our expedition. Might I beg that you would have the goodness to sit down upon one of those boxes, and not to interfere?" The solemn Mr. Merryweather perched himself upon a crate, with a very injured expression upon his face, while Holmes fell upon his knees upon the floor and, with the lantern and a magnifying lens, began to examine minutely the cracks between the stones. A few seconds sufficed to satisfy him, for he sprang to his feet again and put his glass in his pocket. "We have at least an hour before us," he remarked, "for they can hardly take any steps until the good pawnbroker is safely in bed. Then they will not lose a minute, for the sooner they do their work the longer time they will have for their escape. We are at present, Doctor--as no doubt you have divined--in the cellar of the City branch of one of the principal London banks. Mr. Merryweather is the chairman of directors, and he will explain to you that there are reasons why the more daring criminals of London should take a considerable interest in this cellar at present." "It is our French gold," whispered the director. "We have had several warnings that an attempt might be made upon it." "Your French gold?" "Yes. We had occasion some months ago to strengthen our resources and borrowed for that purpose 30,000 napoleons from the Bank of France. It has become known that we have never had occasion to unpack the money, and that it is still lying in our cellar. The crate upon which I sit contains 2,000 napoleons packed between layers of lead foil. Our reserve of bullion is much larger at present than is usually kept in a single branch office, and the directors have had misgivings upon the subject." "Which were very well justified," observed Holmes. "And now it is time that we arranged our little plans. I expect that within an hour matters will come to a head. In the meantime Mr. Merryweather, we must put the screen over that dark lantern." "And sit in the dark?" "I am afraid so. I had brought a pack of cards in my pocket, and I thought that, as we were a partie carrée, you might have your rubber after all. But I see that the enemy's preparations have gone so far that we cannot risk the presence of a light. And, first of all, we must choose our positions. These are daring men, and though we shall take them at a disadvantage, they may do us some harm unless we are careful. I shall stand behind this crate, and do you conceal yourselves behind those. Then, when I flash a light upon them, close in swiftly. If they fire, Watson, have no compunction about shooting them down." I placed my revolver, cocked, upon the top of the wooden case behind which I crouched. Holmes shot the slide across the front of his lantern and left us in pitch darkness--such an absolute darkness as I have never before experienced. The smell of hot metal remained to assure us that the light was still there, ready to flash out at a moment's notice. To me, with my nerves worked up to a pitch of expectancy, there was something depressing and subduing in the sudden gloom, and in the cold dank air of the vault. "They have but one retreat," whispered Holmes. "That is back through the house into Saxe-Coburg Square. I hope that you have done what I asked you, Jones?" "I have an inspector and two officers waiting at the front door." "Then we have stopped all the holes. And now we must be silent and wait." What a time it seemed! From comparing notes afterwards it was but an hour and a quarter, yet it appeared to me that the night must have almost gone and the dawn be breaking above us. My limbs were weary and stiff, for I feared to change my position; yet my nerves were worked up to the highest pitch of tension, and my hearing was so acute that I could not only hear the gentle breathing of my companions, but I could distinguish the deeper, heavier in-breath of the bulky Jones from the thin, sighing note of the bank director. From my position I could look over the case in the direction of the floor. Suddenly my eyes caught the glint of a light. At first it was but a lurid spark upon the stone pavement. Then it lengthened out until it became a yellow line, and then, without any warning or sound, a gash seemed to open and a hand appeared, a white, almost womanly hand, which felt about in the centre of the little area of light. For a minute or more the hand, with its writhing fingers, protruded out of the floor. Then it was withdrawn as suddenly as it appeared, and all was dark again save the single lurid spark which marked a chink between the stones. Its disappearance, however, was but momentary. With a rending, tearing sound, one of the broad, white stones turned over upon its side and left a square, gaping hole, through which streamed the light of a lantern. Over the edge there peeped a clean-cut, boyish face, which looked keenly about it, and then, with a hand on either side of the aperture, drew itself shoulder-high and waist-high, until one knee rested upon the edge. In another instant he stood at the side of the hole and was hauling after him a companion, lithe and small like himself, with a pale face and a shock of very red hair. "It's all clear," he whispered. "Have you the chisel and the bags? Great Scott! Jump, Archie, jump, and I'll swing for it!" Sherlock Holmes had sprung out and seized the intruder by the collar. The other dived down the hole, and I heard the sound of rending cloth as Jones clutched at his skirts. The light flashed upon the barrel of a revolver, but Holmes' hunting crop came down on the man's wrist, and the pistol clinked upon the stone floor. "It's no use, John Clay," said Holmes blandly. "You have no chance at all." "So I see," the other answered with the utmost coolness. "I fancy that my pal is all right, though I see you have got his coat-tails." "There are three men waiting for him at the door," said Holmes. "Oh, indeed! You seem to have done the thing very completely. I must compliment you." "And I you," Holmes answered. "Your red-headed idea was very new and effective." "You'll see your pal again presently," said Jones. "He's quicker at climbing down holes than I am. Just hold out while I fix the derbies." "I beg that you will not touch me with your filthy hands," remarked our prisoner as the handcuffs clattered upon his wrists. "You may not be aware that I have royal blood in my veins. Have the goodness, also, when you address me always to say 'sir' and 'please.'" "All right," said Jones with a stare and a snigger. "Well, would you please, sir, march upstairs, where we can get a cab to carry your Highness to the police-station?" "That is better," said John Clay serenely. He made a sweeping bow to the three of us and walked quietly off in the custody of the detective. "Really, Mr. Holmes," said Mr. Merryweather as we followed them from the cellar, "I do not know how the bank can thank you or repay you. There is no doubt that you have detected and defeated in the most complete manner one of the most determined attempts at bank robbery that have ever come within my experience." "I have had one or two little scores of my own to settle with Mr. John Clay," said Holmes. "I have been at some small expense over this matter, which I shall expect the bank to refund, but beyond that I am amply repaid by having had an experience which is in many ways unique, and by hearing the very remarkable narrative of the Red-headed League." "You see, Watson," he explained in the early hours of the morning as we sat over a glass of whisky and soda in Baker Street, "it was perfectly obvious from the first that the only possible object of this rather fantastic business of the advertisement of the League, and the copying of the 'Encyclopaedia,' must be to get this not over-bright pawnbroker out of the way for a number of hours every day. It was a curious way of managing it, but, really, it would be difficult to suggest a better. The method was no doubt suggested to Clay's ingenious mind by the colour of his accomplice's hair. The 4 pounds a week was a lure which must draw him, and what was it to them, who were playing for thousands? They put in the advertisement, one rogue has the temporary office, the other rogue incites the man to apply for it, and together they manage to secure his absence every morning in the week. From the time that I heard of the assistant having come for half wages, it was obvious to me that he had some strong motive for securing the situation." "But how could you guess what the motive was?" "Had there been women in the house, I should have suspected a mere vulgar intrigue. That, however, was out of the question. The man's business was a small one, and there was nothing in his house which could account for such elaborate preparations, and such an expenditure as they were at. It must, then, be something out of the house. What could it be? I thought of the assistant's fondness for photography, and his trick of vanishing into the cellar. The cellar! There was the end of this tangled clue. Then I made inquiries as to this mysterious assistant and found that I had to deal with one of the coolest and most daring criminals in London. He was doing something in the cellar--something which took many hours a day for months on end. What could it be, once more? I could think of nothing save that he was running a tunnel to some other building. "So far I had got when we went to visit the scene of action. I surprised you by beating upon the pavement with my stick. I was ascertaining whether the cellar stretched out in front or behind. It was not in front. Then I rang the bell, and, as I hoped, the assistant answered it. We have had some skirmishes, but we had never set eyes upon each other before. I hardly looked at his face. His knees were what I wished to see. You must yourself have remarked how worn, wrinkled, and stained they were. They spoke of those hours of burrowing. The only remaining point was what they were burrowing for. I walked round the corner, saw the City and Suburban Bank abutted on our friend's premises, and felt that I had solved my problem. When you drove home after the concert I called upon Scotland Yard and upon the chairman of the bank directors, with the result that you have seen." "And how could you tell that they would make their attempt to-night?" I asked. "Well, when they closed their League offices that was a sign that they cared no longer about Mr. Jabez Wilson's presence--in other words, that they had completed their tunnel. But it was essential that they should use it soon, as it might be discovered, or the bullion might be removed. Saturday would suit them better than any other day, as it would give them two days for their escape. For all these reasons I expected them to come to-night." "You reasoned it out beautifully," I exclaimed in unfeigned admiration. "It is so long a chain, and yet every link rings true." "It saved me from ennui," he answered, yawning. "Alas! I already feel it closing in upon me. My life is spent in one long effort to escape from the commonplaces of existence. These little problems help me to do so." "And you are a benefactor of the race," said I. He shrugged his shoulders. "Well, perhaps, after all, it is of some little use," he remarked. "'L'homme c'est rien--l'oeuvre c'est tout,' as Gustave Flaubert wrote to George Sand." ADVENTURE III. A CASE OF IDENTITY "My dear fellow," said Sherlock Holmes as we sat on either side of the fire in his lodgings at Baker Street, "life is infinitely stranger than anything which the mind of man could invent. We would not dare to conceive the things which are really mere commonplaces of existence. If we could fly out of that window hand in hand, hover over this great city, gently remove the roofs, and peep in at the queer things which are going on, the strange coincidences, the plannings, the cross-purposes, the wonderful chains of events, working through generations, and leading to the most outré results, it would make all fiction with its conventionalities and foreseen conclusions most stale and unprofitable." "And yet I am not convinced of it," I answered. "The cases which come to light in the papers are, as a rule, bald enough, and vulgar enough. We have in our police reports realism pushed to its extreme limits, and yet the result is, it must be confessed, neither fascinating nor artistic." "A certain selection and discretion must be used in producing a realistic effect," remarked Holmes. "This is wanting in the police report, where more stress is laid, perhaps, upon the platitudes of the magistrate than upon the details, which to an observer contain the vital essence of the whole matter. Depend upon it, there is nothing so unnatural as the commonplace." I smiled and shook my head. "I can quite understand your thinking so," I said. "Of course, in your position of unofficial adviser and helper to everybody who is absolutely puzzled, throughout three continents, you are brought in contact with all that is strange and bizarre. But here"--I picked up the morning paper from the ground--"let us put it to a practical test. Here is the first heading upon which I come. 'A husband's cruelty to his wife.' There is half a column of print, but I know without reading it that it is all perfectly familiar to me. There is, of course, the other woman, the drink, the push, the blow, the bruise, the sympathetic sister or landlady. The crudest of writers could invent nothing more crude." "Indeed, your example is an unfortunate one for your argument," said Holmes, taking the paper and glancing his eye down it. "This is the Dundas separation case, and, as it happens, I was engaged in clearing up some small points in connection with it. The husband was a teetotaler, there was no other woman, and the conduct complained of was that he had drifted into the habit of winding up every meal by taking out his false teeth and hurling them at his wife, which, you will allow, is not an action likely to occur to the imagination of the average story-teller. Take a pinch of snuff, Doctor, and acknowledge that I have scored over you in your example." He held out his snuffbox of old gold, with a great amethyst in the centre of the lid. Its splendour was in such contrast to his homely ways and simple life that I could not help commenting upon it. "Ah," said he, "I forgot that I had not seen you for some weeks. It is a little souvenir from the King of Bohemia in return for my assistance in the case of the Irene Adler papers." "And the ring?" I asked, glancing at a remarkable brilliant which sparkled upon his finger. "It was from the reigning family of Holland, though the matter in which I served them was of such delicacy that I cannot confide it even to you, who have been good enough to chronicle one or two of my little problems." "And have you any on hand just now?" I asked with interest. "Some ten or twelve, but none which present any feature of interest. They are important, you understand, without being interesting. Indeed, I have found that it is usually in unimportant matters that there is a field for the observation, and for the quick analysis of cause and effect which gives the charm to an investigation. The larger crimes are apt to be the simpler, for the bigger the crime the more obvious, as a rule, is the motive. In these cases, save for one rather intricate matter which has been referred to me from Marseilles, there is nothing which presents any features of interest. It is possible, however, that I may have something better before very many minutes are over, for this is one of my clients, or I am much mistaken." He had risen from his chair and was standing between the parted blinds gazing down into the dull neutral-tinted London street. Looking over his shoulder, I saw that on the pavement opposite there stood a large woman with a heavy fur boa round her neck, and a large curling red feather in a broad-brimmed hat which was tilted in a coquettish Duchess of Devonshire fashion over her ear. From under this great panoply she peeped up in a nervous, hesitating fashion at our windows, while her body oscillated backward and forward, and her fingers fidgeted with her glove buttons. Suddenly, with a plunge, as of the swimmer who leaves the bank, she hurried across the road, and we heard the sharp clang of the bell. "I have seen those symptoms before," said Holmes, throwing his cigarette into the fire. "Oscillation upon the pavement always means an affaire de coeur. She would like advice, but is not sure that the matter is not too delicate for communication. And yet even here we may discriminate. When a woman has been seriously wronged by a man she no longer oscillates, and the usual symptom is a broken bell wire. Here we may take it that there is a love matter, but that the maiden is not so much angry as perplexed, or grieved. But here she comes in person to resolve our doubts." As he spoke there was a tap at the door, and the boy in buttons entered to announce Miss Mary Sutherland, while the lady herself loomed behind his small black figure like a full-sailed merchant-man behind a tiny pilot boat. Sherlock Holmes welcomed her with the easy courtesy for which he was remarkable, and, having closed the door and bowed her into an armchair, he looked her over in the minute and yet abstracted fashion which was peculiar to him. "Do you not find," he said, "that with your short sight it is a little trying to do so much typewriting?" "I did at first," she answered, "but now I know where the letters are without looking." Then, suddenly realising the full purport of his words, she gave a violent start and looked up, with fear and astonishment upon her broad, good-humoured face. "You've heard about me, Mr. Holmes," she cried, "else how could you know all that?" "Never mind," said Holmes, laughing; "it is my business to know things. Perhaps I have trained myself to see what others overlook. If not, why should you come to consult me?" "I came to you, sir, because I heard of you from Mrs. Etherege, whose husband you found so easy when the police and everyone had given him up for dead. Oh, Mr. Holmes, I wish you would do as much for me. I'm not rich, but still I have a hundred a year in my own right, besides the little that I make by the machine, and I would give it all to know what has become of Mr. Hosmer Angel." "Why did you come away to consult me in such a hurry?" asked Sherlock Holmes, with his finger-tips together and his eyes to the ceiling. Again a startled look came over the somewhat vacuous face of Miss Mary Sutherland. "Yes, I did bang out of the house," she said, "for it made me angry to see the easy way in which Mr. Windibank--that is, my father--took it all. He would not go to the police, and he would not go to you, and so at last, as he would do nothing and kept on saying that there was no harm done, it made me mad, and I just on with my things and came right away to you." "Your father," said Holmes, "your stepfather, surely, since the name is different." "Yes, my stepfather. I call him father, though it sounds funny, too, for he is only five years and two months older than myself." "And your mother is alive?" "Oh, yes, mother is alive and well. I wasn't best pleased, Mr. Holmes, when she married again so soon after father's death, and a man who was nearly fifteen years younger than herself. Father was a plumber in the Tottenham Court Road, and he left a tidy business behind him, which mother carried on with Mr. Hardy, the foreman; but when Mr. Windibank came he made her sell the business, for he was very superior, being a traveller in wines. They got 4700 pounds for the goodwill and interest, which wasn't near as much as father could have got if he had been alive." I had expected to see Sherlock Holmes impatient under this rambling and inconsequential narrative, but, on the contrary, he had listened with the greatest concentration of attention. "Your own little income," he asked, "does it come out of the business?" "Oh, no, sir. It is quite separate and was left me by my uncle Ned in Auckland. It is in New Zealand stock, paying 4 1/2 per cent. Two thousand five hundred pounds was the amount, but I can only touch the interest." "You interest me extremely," said Holmes. "And since you draw so large a sum as a hundred a year, with what you earn into the bargain, you no doubt travel a little and indulge yourself in every way. I believe that a single lady can get on very nicely upon an income of about 60 pounds." "I could do with much less than that, Mr. Holmes, but you understand that as long as I live at home I don't wish to be a burden to them, and so they have the use of the money just while I am staying with them. Of course, that is only just for the time. Mr. Windibank draws my interest every quarter and pays it over to mother, and I find that I can do pretty well with what I earn at typewriting. It brings me twopence a sheet, and I can often do from fifteen to twenty sheets in a day." "You have made your position very clear to me," said Holmes. "This is my friend, Dr. Watson, before whom you can speak as freely as before myself. Kindly tell us now all about your connection with Mr. Hosmer Angel." A flush stole over Miss Sutherland's face, and she picked nervously at the fringe of her jacket. "I met him first at the gasfitters' ball," she said. "They used to send father tickets when he was alive, and then afterwards they remembered us, and sent them to mother. Mr. Windibank did not wish us to go. He never did wish us to go anywhere. He would get quite mad if I wanted so much as to join a Sunday-school treat. But this time I was set on going, and I would go; for what right had he to prevent? He said the folk were not fit for us to know, when all father's friends were to be there. And he said that I had nothing fit to wear, when I had my purple plush that I had never so much as taken out of the drawer. At last, when nothing else would do, he went off to France upon the business of the firm, but we went, mother and I, with Mr. Hardy, who used to be our foreman, and it was there I met Mr. Hosmer Angel." "I suppose," said Holmes, "that when Mr. Windibank came back from France he was very annoyed at your having gone to the ball." "Oh, well, he was very good about it. He laughed, I remember, and shrugged his shoulders, and said there was no use denying anything to a woman, for she would have her way." "I see. Then at the gasfitters' ball you met, as I understand, a gentleman called Mr. Hosmer Angel." "Yes, sir. I met him that night, and he called next day to ask if we had got home all safe, and after that we met him--that is to say, Mr. Holmes, I met him twice for walks, but after that father came back again, and Mr. Hosmer Angel could not come to the house any more." "No?" "Well, you know father didn't like anything of the sort. He wouldn't have any visitors if he could help it, and he used to say that a woman should be happy in her own family circle. But then, as I used to say to mother, a woman wants her own circle to begin with, and I had not got mine yet." "But how about Mr. Hosmer Angel? Did he make no attempt to see you?" "Well, father was going off to France again in a week, and Hosmer wrote and said that it would be safer and better not to see each other until he had gone. We could write in the meantime, and he used to write every day. I took the letters in in the morning, so there was no need for father to know." "Were you engaged to the gentleman at this time?" "Oh, yes, Mr. Holmes. We were engaged after the first walk that we took. Hosmer--Mr. Angel--was a cashier in an office in Leadenhall Street--and--" "What office?" "That's the worst of it, Mr. Holmes, I don't know." "Where did he live, then?" "He slept on the premises." "And you don't know his address?" "No--except that it was Leadenhall Street." "Where did you address your letters, then?" "To the Leadenhall Street Post Office, to be left till called for. He said that if they were sent to the office he would be chaffed by all the other clerks about having letters from a lady, so I offered to typewrite them, like he did his, but he wouldn't have that, for he said that when I wrote them they seemed to come from me, but when they were typewritten he always felt that the machine had come between us. That will just show you how fond he was of me, Mr. Holmes, and the little things that he would think of." "It was most suggestive," said Holmes. "It has long been an axiom of mine that the little things are infinitely the most important. Can you remember any other little things about Mr. Hosmer Angel?" "He was a very shy man, Mr. Holmes. He would rather walk with me in the evening than in the daylight, for he said that he hated to be conspicuous. Very retiring and gentlemanly he was. Even his voice was gentle. He'd had the quinsy and swollen glands when he was young, he told me, and it had left him with a weak throat, and a hesitating, whispering fashion of speech. He was always well dressed, very neat and plain, but his eyes were weak, just as mine are, and he wore tinted glasses against the glare." "Well, and what happened when Mr. Windibank, your stepfather, returned to France?" "Mr. Hosmer Angel came to the house again and proposed that we should marry before father came back. He was in dreadful earnest and made me swear, with my hands on the Testament, that whatever happened I would always be true to him. Mother said he was quite right to make me swear, and that it was a sign of his passion. Mother was all in his favour from the first and was even fonder of him than I was. Then, when they talked of marrying within the week, I began to ask about father; but they both said never to mind about father, but just to tell him afterwards, and mother said she would make it all right with him. I didn't quite like that, Mr. Holmes. It seemed funny that I should ask his leave, as he was only a few years older than me; but I didn't want to do anything on the sly, so I wrote to father at Bordeaux, where the company has its French offices, but the letter came back to me on the very morning of the wedding." "It missed him, then?" "Yes, sir; for he had started to England just before it arrived." "Ha! that was unfortunate. Your wedding was arranged, then, for the Friday. Was it to be in church?" "Yes, sir, but very quietly. It was to be at St. Saviour's, near King's Cross, and we were to have breakfast afterwards at the St. Pancras Hotel. Hosmer came for us in a hansom, but as there were two of us he put us both into it and stepped himself into a four-wheeler, which happened to be the only other cab in the street. We got to the church first, and when the four-wheeler drove up we waited for him to step out, but he never did, and when the cabman got down from the box and looked there was no one there! The cabman said that he could not imagine what had become of him, for he had seen him get in with his own eyes. That was last Friday, Mr. Holmes, and I have never seen or heard anything since then to throw any light upon what became of him." "It seems to me that you have been very shamefully treated," said Holmes. "Oh, no, sir! He was too good and kind to leave me so. Why, all the morning he was saying to me that, whatever happened, I was to be true; and that even if something quite unforeseen occurred to separate us, I was always to remember that I was pledged to him, and that he would claim his pledge sooner or later. It seemed strange talk for a wedding-morning, but what has happened since gives a meaning to it." "Most certainly it does. Your own opinion is, then, that some unforeseen catastrophe has occurred to him?" "Yes, sir. I believe that he foresaw some danger, or else he would not have talked so. And then I think that what he foresaw happened." "But you have no notion as to what it could have been?" "None." "One more question. How did your mother take the matter?" "She was angry, and said that I was never to speak of the matter again." "And your father? Did you tell him?" "Yes; and he seemed to think, with me, that something had happened, and that I should hear of Hosmer again. As he said, what interest could anyone have in bringing me to the doors of the church, and then leaving me? Now, if he had borrowed my money, or if he had married me and got my money settled on him, there might be some reason, but Hosmer was very independent about money and never would look at a shilling of mine. And yet, what could have happened? And why could he not write? Oh, it drives me half-mad to think of it, and I can't sleep a wink at night." She pulled a little handkerchief out of her muff and began to sob heavily into it. "I shall glance into the case for you," said Holmes, rising, "and I have no doubt that we shall reach some definite result. Let the weight of the matter rest upon me now, and do not let your mind dwell upon it further. Above all, try to let Mr. Hosmer Angel vanish from your memory, as he has done from your life." "Then you don't think I'll see him again?" "I fear not." "Then what has happened to him?" "You will leave that question in my hands. I should like an accurate description of him and any letters of his which you can spare." "I advertised for him in last Saturday's Chronicle," said she. "Here is the slip and here are four letters from him." "Thank you. And your address?" "No. 31 Lyon Place, Camberwell." "Mr. Angel's address you never had, I understand. Where is your father's place of business?" "He travels for Westhouse & Marbank, the great claret importers of Fenchurch Street." "Thank you. You have made your statement very clearly. You will leave the papers here, and remember the advice which I have given you. Let the whole incident be a sealed book, and do not allow it to affect your life." "You are very kind, Mr. Holmes, but I cannot do that. I shall be true to Hosmer. He shall find me ready when he comes back." For all the preposterous hat and the vacuous face, there was something noble in the simple faith of our visitor which compelled our respect. She laid her little bundle of papers upon the table and went her way, with a promise to come again whenever she might be summoned. Sherlock Holmes sat silent for a few minutes with his fingertips still pressed together, his legs stretched out in front of him, and his gaze directed upward to the ceiling. Then he took down from the rack the old and oily clay pipe, which was to him as a counsellor, and, having lit it, he leaned back in his chair, with the thick blue cloud-wreaths spinning up from him, and a look of infinite languor in his face. "Quite an interesting study, that maiden," he observed. "I found her more interesting than her little problem, which, by the way, is rather a trite one. You will find parallel cases, if you consult my index, in Andover in '77, and there was something of the sort at The Hague last year. Old as is the idea, however, there were one or two details which were new to me. But the maiden herself was most instructive." "You appeared to read a good deal upon her which was quite invisible to me," I remarked. "Not invisible but unnoticed, Watson. You did not know where to look, and so you missed all that was important. I can never bring you to realise the importance of sleeves, the suggestiveness of thumb-nails, or the great issues that may hang from a boot-lace. Now, what did you gather from that woman's appearance? Describe it." "Well, she had a slate-coloured, broad-brimmed straw hat, with a feather of a brickish red. Her jacket was black, with black beads sewn upon it, and a fringe of little black jet ornaments. Her dress was brown, rather darker than coffee colour, with a little purple plush at the neck and sleeves. Her gloves were greyish and were worn through at the right forefinger. Her boots I didn't observe. She had small round, hanging gold earrings, and a general air of being fairly well-to-do in a vulgar, comfortable, easy-going way." Sherlock Holmes clapped his hands softly together and chuckled. "'Pon my word, Watson, you are coming along wonderfully. You have really done very well indeed. It is true that you have missed everything of importance, but you have hit upon the method, and you have a quick eye for colour. Never trust to general impressions, my boy, but concentrate yourself upon details. My first glance is always at a woman's sleeve. In a man it is perhaps better first to take the knee of the trouser. As you observe, this woman had plush upon her sleeves, which is a most useful material for showing traces. The double line a little above the wrist, where the typewritist presses against the table, was beautifully defined. The sewing-machine, of the hand type, leaves a similar mark, but only on the left arm, and on the side of it farthest from the thumb, instead of being right across the broadest part, as this was. I then glanced at her face, and, observing the dint of a pince-nez at either side of her nose, I ventured a remark upon short sight and typewriting, which seemed to surprise her." "It surprised me." "But, surely, it was obvious. I was then much surprised and interested on glancing down to observe that, though the boots which she was wearing were not unlike each other, they were really odd ones; the one having a slightly decorated toe-cap, and the other a plain one. One was buttoned only in the two lower buttons out of five, and the other at the first, third, and fifth. Now, when you see that a young lady, otherwise neatly dressed, has come away from home with odd boots, half-buttoned, it is no great deduction to say that she came away in a hurry." "And what else?" I asked, keenly interested, as I always was, by my friend's incisive reasoning. "I noted, in passing, that she had written a note before leaving home but after being fully dressed. You observed that her right glove was torn at the forefinger, but you did not apparently see that both glove and finger were stained with violet ink. She had written in a hurry and dipped her pen too deep. It must have been this morning, or the mark would not remain clear upon the finger. All this is amusing, though rather elementary, but I must go back to business, Watson. Would you mind reading me the advertised description of Mr. Hosmer Angel?" I held the little printed slip to the light. "Missing," it said, "on the morning of the fourteenth, a gentleman named Hosmer Angel. About five ft. seven in. in height; strongly built, sallow complexion, black hair, a little bald in the centre, bushy, black side-whiskers and moustache; tinted glasses, slight infirmity of speech. Was dressed, when last seen, in black frock-coat faced with silk, black waistcoat, gold Albert chain, and grey Harris tweed trousers, with brown gaiters over elastic-sided boots. Known to have been employed in an office in Leadenhall Street. Anybody bringing--" "That will do," said Holmes. "As to the letters," he continued, glancing over them, "they are very commonplace. Absolutely no clue in them to Mr. Angel, save that he quotes Balzac once. There is one remarkable point, however, which will no doubt strike you." "They are typewritten," I remarked. "Not only that, but the signature is typewritten. Look at the neat little 'Hosmer Angel' at the bottom. There is a date, you see, but no superscription except Leadenhall Street, which is rather vague. The point about the signature is very suggestive--in fact, we may call it conclusive." "Of what?" "My dear fellow, is it possible you do not see how strongly it bears upon the case?" "I cannot say that I do unless it were that he wished to be able to deny his signature if an action for breach of promise were instituted." "No, that was not the point. However, I shall write two letters, which should settle the matter. One is to a firm in the City, the other is to the young lady's stepfather, Mr. Windibank, asking him whether he could meet us here at six o'clock tomorrow evening. It is just as well that we should do business with the male relatives. And now, Doctor, we can do nothing until the answers to those letters come, so we may put our little problem upon the shelf for the interim." I had had so many reasons to believe in my friend's subtle powers of reasoning and extraordinary energy in action that I felt that he must have some solid grounds for the assured and easy demeanour with which he treated the singular mystery which he had been called upon to fathom. Once only had I known him to fail, in the case of the King of Bohemia and of the Irene Adler photograph; but when I looked back to the weird business of the Sign of Four, and the extraordinary circumstances connected with the Study in Scarlet, I felt that it would be a strange tangle indeed which he could not unravel. I left him then, still puffing at his black clay pipe, with the conviction that when I came again on the next evening I would find that he held in his hands all the clues which would lead up to the identity of the disappearing bridegroom of Miss Mary Sutherland. A professional case of great gravity was engaging my own attention at the time, and the whole of next day I was busy at the bedside of the sufferer. It was not until close upon six o'clock that I found myself free and was able to spring into a hansom and drive to Baker Street, half afraid that I might be too late to assist at the dénouement of the little mystery. I found Sherlock Holmes alone, however, half asleep, with his long, thin form curled up in the recesses of his armchair. A formidable array of bottles and test-tubes, with the pungent cleanly smell of hydrochloric acid, told me that he had spent his day in the chemical work which was so dear to him. "Well, have you solved it?" I asked as I entered. "Yes. It was the bisulphate of baryta." "No, no, the mystery!" I cried. "Oh, that! I thought of the salt that I have been working upon. There was never any mystery in the matter, though, as I said yesterday, some of the details are of interest. The only drawback is that there is no law, I fear, that can touch the scoundrel." "Who was he, then, and what was his object in deserting Miss Sutherland?" The question was hardly out of my mouth, and Holmes had not yet opened his lips to reply, when we heard a heavy footfall in the passage and a tap at the door. "This is the girl's stepfather, Mr. James Windibank," said Holmes. "He has written to me to say that he would be here at six. Come in!" The man who entered was a sturdy, middle-sized fellow, some thirty years of age, clean-shaven, and sallow-skinned, with a bland, insinuating manner, and a pair of wonderfully sharp and penetrating grey eyes. He shot a questioning glance at each of us, placed his shiny top-hat upon the sideboard, and with a slight bow sidled down into the nearest chair. "Good-evening, Mr. James Windibank," said Holmes. "I think that this typewritten letter is from you, in which you made an appointment with me for six o'clock?" "Yes, sir. I am afraid that I am a little late, but I am not quite my own master, you know. I am sorry that Miss Sutherland has troubled you about this little matter, for I think it is far better not to wash linen of the sort in public. It was quite against my wishes that she came, but she is a very excitable, impulsive girl, as you may have noticed, and she is not easily controlled when she has made up her mind on a point. Of course, I did not mind you so much, as you are not connected with the official police, but it is not pleasant to have a family misfortune like this noised abroad. Besides, it is a useless expense, for how could you possibly find this Hosmer Angel?" "On the contrary," said Holmes quietly; "I have every reason to believe that I will succeed in discovering Mr. Hosmer Angel." Mr. Windibank gave a violent start and dropped his gloves. "I am delighted to hear it," he said. "It is a curious thing," remarked Holmes, "that a typewriter has really quite as much individuality as a man's handwriting. Unless they are quite new, no two of them write exactly alike. Some letters get more worn than others, and some wear only on one side. Now, you remark in this note of yours, Mr. Windibank, that in every case there is some little slurring over of the 'e,' and a slight defect in the tail of the 'r.' There are fourteen other characteristics, but those are the more obvious." "We do all our correspondence with this machine at the office, and no doubt it is a little worn," our visitor answered, glancing keenly at Holmes with his bright little eyes. "And now I will show you what is really a very interesting study, Mr. Windibank," Holmes continued. "I think of writing another little monograph some of these days on the typewriter and its relation to crime. It is a subject to which I have devoted some little attention. I have here four letters which purport to come from the missing man. They are all typewritten. In each case, not only are the 'e's' slurred and the 'r's' tailless, but you will observe, if you care to use my magnifying lens, that the fourteen other characteristics to which I have alluded are there as well." Mr. Windibank sprang out of his chair and picked up his hat. "I cannot waste time over this sort of fantastic talk, Mr. Holmes," he said. "If you can catch the man, catch him, and let me know when you have done it." "Certainly," said Holmes, stepping over and turning the key in the door. "I let you know, then, that I have caught him!" "What! where?" shouted Mr. Windibank, turning white to his lips and glancing about him like a rat in a trap. "Oh, it won't do--really it won't," said Holmes suavely. "There is no possible getting out of it, Mr. Windibank. It is quite too transparent, and it was a very bad compliment when you said that it was impossible for me to solve so simple a question. That's right! Sit down and let us talk it over." Our visitor collapsed into a chair, with a ghastly face and a glitter of moisture on his brow. "It--it's not actionable," he stammered. "I am very much afraid that it is not. But between ourselves, Windibank, it was as cruel and selfish and heartless a trick in a petty way as ever came before me. Now, let me just run over the course of events, and you will contradict me if I go wrong." The man sat huddled up in his chair, with his head sunk upon his breast, like one who is utterly crushed. Holmes stuck his feet up on the corner of the mantelpiece and, leaning back with his hands in his pockets, began talking, rather to himself, as it seemed, than to us. "The man married a woman very much older than himself for her money," said he, "and he enjoyed the use of the money of the daughter as long as she lived with them. It was a considerable sum, for people in their position, and the loss of it would have made a serious difference. It was worth an effort to preserve it. The daughter was of a good, amiable disposition, but affectionate and warm-hearted in her ways, so that it was evident that with her fair personal advantages, and her little income, she would not be allowed to remain single long. Now her marriage would mean, of course, the loss of a hundred a year, so what does her stepfather do to prevent it? He takes the obvious course of keeping her at home and forbidding her to seek the company of people of her own age. But soon he found that that would not answer forever. She became restive, insisted upon her rights, and finally announced her positive intention of going to a certain ball. What does her clever stepfather do then? He conceives an idea more creditable to his head than to his heart. With the connivance and assistance of his wife he disguised himself, covered those keen eyes with tinted glasses, masked the face with a moustache and a pair of bushy whiskers, sunk that clear voice into an insinuating whisper, and doubly secure on account of the girl's short sight, he appears as Mr. Hosmer Angel, and keeps off other lovers by making love himself." "It was only a joke at first," groaned our visitor. "We never thought that she would have been so carried away." "Very likely not. However that may be, the young lady was very decidedly carried away, and, having quite made up her mind that her stepfather was in France, the suspicion of treachery never for an instant entered her mind. She was flattered by the gentleman's attentions, and the effect was increased by the loudly expressed admiration of her mother. Then Mr. Angel began to call, for it was obvious that the matter should be pushed as far as it would go if a real effect were to be produced. There were meetings, and an engagement, which would finally secure the girl's affections from turning towards anyone else. But the deception could not be kept up forever. These pretended journeys to France were rather cumbrous. The thing to do was clearly to bring the business to an end in such a dramatic manner that it would leave a permanent impression upon the young lady's mind and prevent her from looking upon any other suitor for some time to come. Hence those vows of fidelity exacted upon a Testament, and hence also the allusions to a possibility of something happening on the very morning of the wedding. James Windibank wished Miss Sutherland to be so bound to Hosmer Angel, and so uncertain as to his fate, that for ten years to come, at any rate, she would not listen to another man. As far as the church door he brought her, and then, as he could go no farther, he conveniently vanished away by the old trick of stepping in at one door of a four-wheeler and out at the other. I think that was the chain of events, Mr. Windibank!" Our visitor had recovered something of his assurance while Holmes had been talking, and he rose from his chair now with a cold sneer upon his pale face. "It may be so, or it may not, Mr. Holmes," said he, "but if you are so very sharp you ought to be sharp enough to know that it is you who are breaking the law now, and not me. I have done nothing actionable from the first, but as long as you keep that door locked you lay yourself open to an action for assault and illegal constraint." "The law cannot, as you say, touch you," said Holmes, unlocking and throwing open the door, "yet there never was a man who deserved punishment more. If the young lady has a brother or a friend, he ought to lay a whip across your shoulders. By Jove!" he continued, flushing up at the sight of the bitter sneer upon the man's face, "it is not part of my duties to my client, but here's a hunting crop handy, and I think I shall just treat myself to--" He took two swift steps to the whip, but before he could grasp it there was a wild clatter of steps upon the stairs, the heavy hall door banged, and from the window we could see Mr. James Windibank running at the top of his speed down the road. "There's a cold-blooded scoundrel!" said Holmes, laughing, as he threw himself down into his chair once more. "That fellow will rise from crime to crime until he does something very bad, and ends on a gallows. The case has, in some respects, been not entirely devoid of interest." "I cannot now entirely see all the steps of your reasoning," I remarked. "Well, of course it was obvious from the first that this Mr. Hosmer Angel must have some strong object for his curious conduct, and it was equally clear that the only man who really profited by the incident, as far as we could see, was the stepfather. Then the fact that the two men were never together, but that the one always appeared when the other was away, was suggestive. So were the tinted spectacles and the curious voice, which both hinted at a disguise, as did the bushy whiskers. My suspicions were all confirmed by his peculiar action in typewriting his signature, which, of course, inferred that his handwriting was so familiar to her that she would recognise even the smallest sample of it. You see all these isolated facts, together with many minor ones, all pointed in the same direction." "And how did you verify them?" "Having once spotted my man, it was easy to get corroboration. I knew the firm for which this man worked. Having taken the printed description. I eliminated everything from it which could be the result of a disguise--the whiskers, the glasses, the voice, and I sent it to the firm, with a request that they would inform me whether it answered to the description of any of their travellers. I had already noticed the peculiarities of the typewriter, and I wrote to the man himself at his business address asking him if he would come here. As I expected, his reply was typewritten and revealed the same trivial but characteristic defects. The same post brought me a letter from Westhouse & Marbank, of Fenchurch Street, to say that the description tallied in every respect with that of their employé, James Windibank. Voilà tout!" "And Miss Sutherland?" "If I tell her she will not believe me. You may remember the old Persian saying, 'There is danger for him who taketh the tiger cub, and danger also for whoso snatches a delusion from a woman.' There is as much sense in Hafiz as in Horace, and as much knowledge of the world." ADVENTURE IV. THE BOSCOMBE VALLEY MYSTERY We were seated at breakfast one morning, my wife and I, when the maid brought in a telegram. It was from Sherlock Holmes and ran in this way: "Have you a couple of days to spare? Have just been wired for from the west of England in connection with Boscombe Valley tragedy. Shall be glad if you will come with me. Air and scenery perfect. Leave Paddington by the 11:15." "What do you say, dear?" said my wife, looking across at me. "Will you go?" "I really don't know what to say. I have a fairly long list at present." "Oh, Anstruther would do your work for you. You have been looking a little pale lately. I think that the change would do you good, and you are always so interested in Mr. Sherlock Holmes' cases." "I should be ungrateful if I were not, seeing what I gained through one of them," I answered. "But if I am to go, I must pack at once, for I have only half an hour." My experience of camp life in Afghanistan had at least had the effect of making me a prompt and ready traveller. My wants were few and simple, so that in less than the time stated I was in a cab with my valise, rattling away to Paddington Station. Sherlock Holmes was pacing up and down the platform, his tall, gaunt figure made even gaunter and taller by his long grey travelling-cloak and close-fitting cloth cap. "It is really very good of you to come, Watson," said he. "It makes a considerable difference to me, having someone with me on whom I can thoroughly rely. Local aid is always either worthless or else biassed. If you will keep the two corner seats I shall get the tickets." We had the carriage to ourselves save for an immense litter of papers which Holmes had brought with him. Among these he rummaged and read, with intervals of note-taking and of meditation, until we were past Reading. Then he suddenly rolled them all into a gigantic ball and tossed them up onto the rack. "Have you heard anything of the case?" he asked. "Not a word. I have not seen a paper for some days." "The London press has not had very full accounts. I have just been looking through all the recent papers in order to master the particulars. It seems, from what I gather, to be one of those simple cases which are so extremely difficult." "That sounds a little paradoxical." "But it is profoundly true. Singularity is almost invariably a clue. The more featureless and commonplace a crime is, the more difficult it is to bring it home. In this case, however, they have established a very serious case against the son of the murdered man." "It is a murder, then?" "Well, it is conjectured to be so. I shall take nothing for granted until I have the opportunity of looking personally into it. I will explain the state of things to you, as far as I have been able to understand it, in a very few words. "Boscombe Valley is a country district not very far from Ross, in Herefordshire. The largest landed proprietor in that part is a Mr. John Turner, who made his money in Australia and returned some years ago to the old country. One of the farms which he held, that of Hatherley, was let to Mr. Charles McCarthy, who was also an ex-Australian. The men had known each other in the colonies, so that it was not unnatural that when they came to settle down they should do so as near each other as possible. Turner was apparently the richer man, so McCarthy became his tenant but still remained, it seems, upon terms of perfect equality, as they were frequently together. McCarthy had one son, a lad of eighteen, and Turner had an only daughter of the same age, but neither of them had wives living. They appear to have avoided the society of the neighbouring English families and to have led retired lives, though both the McCarthys were fond of sport and were frequently seen at the race-meetings of the neighbourhood. McCarthy kept two servants--a man and a girl. Turner had a considerable household, some half-dozen at the least. That is as much as I have been able to gather about the families. Now for the facts. "On June 3rd, that is, on Monday last, McCarthy left his house at Hatherley about three in the afternoon and walked down to the Boscombe Pool, which is a small lake formed by the spreading out of the stream which runs down the Boscombe Valley. He had been out with his serving-man in the morning at Ross, and he had told the man that he must hurry, as he had an appointment of importance to keep at three. From that appointment he never came back alive. "From Hatherley Farm-house to the Boscombe Pool is a quarter of a mile, and two people saw him as he passed over this ground. One was an old woman, whose name is not mentioned, and the other was William Crowder, a game-keeper in the employ of Mr. Turner. Both these witnesses depose that Mr. McCarthy was walking alone. The game-keeper adds that within a few minutes of his seeing Mr. McCarthy pass he had seen his son, Mr. James McCarthy, going the same way with a gun under his arm. To the best of his belief, the father was actually in sight at the time, and the son was following him. He thought no more of the matter until he heard in the evening of the tragedy that had occurred. "The two McCarthys were seen after the time when William Crowder, the game-keeper, lost sight of them. The Boscombe Pool is thickly wooded round, with just a fringe of grass and of reeds round the edge. A girl of fourteen, Patience Moran, who is the daughter of the lodge-keeper of the Boscombe Valley estate, was in one of the woods picking flowers. She states that while she was there she saw, at the border of the wood and close by the lake, Mr. McCarthy and his son, and that they appeared to be having a violent quarrel. She heard Mr. McCarthy the elder using very strong language to his son, and she saw the latter raise up his hand as if to strike his father. She was so frightened by their violence that she ran away and told her mother when she reached home that she had left the two McCarthys quarrelling near Boscombe Pool, and that she was afraid that they were going to fight. She had hardly said the words when young Mr. McCarthy came running up to the lodge to say that he had found his father dead in the wood, and to ask for the help of the lodge-keeper. He was much excited, without either his gun or his hat, and his right hand and sleeve were observed to be stained with fresh blood. On following him they found the dead body stretched out upon the grass beside the pool. The head had been beaten in by repeated blows of some heavy and blunt weapon. The injuries were such as might very well have been inflicted by the butt-end of his son's gun, which was found lying on the grass within a few paces of the body. Under these circumstances the young man was instantly arrested, and a verdict of 'wilful murder' having been returned at the inquest on Tuesday, he was on Wednesday brought before the magistrates at Ross, who have referred the case to the next Assizes. Those are the main facts of the case as they came out before the coroner and the police-court." "I could hardly imagine a more damning case," I remarked. "If ever circumstantial evidence pointed to a criminal it does so here." "Circumstantial evidence is a very tricky thing," answered Holmes thoughtfully. "It may seem to point very straight to one thing, but if you shift your own point of view a little, you may find it pointing in an equally uncompromising manner to something entirely different. It must be confessed, however, that the case looks exceedingly grave against the young man, and it is very possible that he is indeed the culprit. There are several people in the neighbourhood, however, and among them Miss Turner, the daughter of the neighbouring landowner, who believe in his innocence, and who have retained Lestrade, whom you may recollect in connection with the Study in Scarlet, to work out the case in his interest. Lestrade, being rather puzzled, has referred the case to me, and hence it is that two middle-aged gentlemen are flying westward at fifty miles an hour instead of quietly digesting their breakfasts at home." "I am afraid," said I, "that the facts are so obvious that you will find little credit to be gained out of this case." "There is nothing more deceptive than an obvious fact," he answered, laughing. "Besides, we may chance to hit upon some other obvious facts which may have been by no means obvious to Mr. Lestrade. You know me too well to think that I am boasting when I say that I shall either confirm or destroy his theory by means which he is quite incapable of employing, or even of understanding. To take the first example to hand, I very clearly perceive that in your bedroom the window is upon the right-hand side, and yet I question whether Mr. Lestrade would have noted even so self-evident a thing as that." "How on earth--" "My dear fellow, I know you well. I know the military neatness which characterises you. You shave every morning, and in this season you shave by the sunlight; but since your shaving is less and less complete as we get farther back on the left side, until it becomes positively slovenly as we get round the angle of the jaw, it is surely very clear that that side is less illuminated than the other. I could not imagine a man of your habits looking at himself in an equal light and being satisfied with such a result. I only quote this as a trivial example of observation and inference. Therein lies my métier, and it is just possible that it may be of some service in the investigation which lies before us. There are one or two minor points which were brought out in the inquest, and which are worth considering." "What are they?" "It appears that his arrest did not take place at once, but after the return to Hatherley Farm. On the inspector of constabulary informing him that he was a prisoner, he remarked that he was not surprised to hear it, and that it was no more than his deserts. This observation of his had the natural effect of removing any traces of doubt which might have remained in the minds of the coroner's jury." "It was a confession," I ejaculated. "No, for it was followed by a protestation of innocence." "Coming on the top of such a damning series of events, it was at least a most suspicious remark." "On the contrary," said Holmes, "it is the brightest rift which I can at present see in the clouds. However innocent he might be, he could not be such an absolute imbecile as not to see that the circumstances were very black against him. Had he appeared surprised at his own arrest, or feigned indignation at it, I should have looked upon it as highly suspicious, because such surprise or anger would not be natural under the circumstances, and yet might appear to be the best policy to a scheming man. His frank acceptance of the situation marks him as either an innocent man, or else as a man of considerable self-restraint and firmness. As to his remark about his deserts, it was also not unnatural if you consider that he stood beside the dead body of his father, and that there is no doubt that he had that very day so far forgotten his filial duty as to bandy words with him, and even, according to the little girl whose evidence is so important, to raise his hand as if to strike him. The self-reproach and contrition which are displayed in his remark appear to me to be the signs of a healthy mind rather than of a guilty one." I shook my head. "Many men have been hanged on far slighter evidence," I remarked. "So they have. And many men have been wrongfully hanged." "What is the young man's own account of the matter?" "It is, I am afraid, not very encouraging to his supporters, though there are one or two points in it which are suggestive. You will find it here, and may read it for yourself." He picked out from his bundle a copy of the local Herefordshire paper, and having turned down the sheet he pointed out the paragraph in which the unfortunate young man had given his own statement of what had occurred. I settled myself down in the corner of the carriage and read it very carefully. It ran in this way: "Mr. James McCarthy, the only son of the deceased, was then called and gave evidence as follows: 'I had been away from home for three days at Bristol, and had only just returned upon the morning of last Monday, the 3rd. My father was absent from home at the time of my arrival, and I was informed by the maid that he had driven over to Ross with John Cobb, the groom. Shortly after my return I heard the wheels of his trap in the yard, and, looking out of my window, I saw him get out and walk rapidly out of the yard, though I was not aware in which direction he was going. I then took my gun and strolled out in the direction of the Boscombe Pool, with the intention of visiting the rabbit warren which is upon the other side. On my way I saw William Crowder, the game-keeper, as he had stated in his evidence; but he is mistaken in thinking that I was following my father. I had no idea that he was in front of me. When about a hundred yards from the pool I heard a cry of "Cooee!" which was a usual signal between my father and myself. I then hurried forward, and found him standing by the pool. He appeared to be much surprised at seeing me and asked me rather roughly what I was doing there. A conversation ensued which led to high words and almost to blows, for my father was a man of a very violent temper. Seeing that his passion was becoming ungovernable, I left him and returned towards Hatherley Farm. I had not gone more than 150 yards, however, when I heard a hideous outcry behind me, which caused me to run back again. I found my father expiring upon the ground, with his head terribly injured. I dropped my gun and held him in my arms, but he almost instantly expired. I knelt beside him for some minutes, and then made my way to Mr. Turner's lodge-keeper, his house being the nearest, to ask for assistance. I saw no one near my father when I returned, and I have no idea how he came by his injuries. He was not a popular man, being somewhat cold and forbidding in his manners, but he had, as far as I know, no active enemies. I know nothing further of the matter.' "The Coroner: Did your father make any statement to you before he died? "Witness: He mumbled a few words, but I could only catch some allusion to a rat. "The Coroner: What did you understand by that? "Witness: It conveyed no meaning to me. I thought that he was delirious. "The Coroner: What was the point upon which you and your father had this final quarrel? "Witness: I should prefer not to answer. "The Coroner: I am afraid that I must press it. "Witness: It is really impossible for me to tell you. I can assure you that it has nothing to do with the sad tragedy which followed. "The Coroner: That is for the court to decide. I need not point out to you that your refusal to answer will prejudice your case considerably in any future proceedings which may arise. "Witness: I must still refuse. "The Coroner: I understand that the cry of 'Cooee' was a common signal between you and your father? "Witness: It was. "The Coroner: How was it, then, that he uttered it before he saw you, and before he even knew that you had returned from Bristol? "Witness (with considerable confusion): I do not know. "A Juryman: Did you see nothing which aroused your suspicions when you returned on hearing the cry and found your father fatally injured? "Witness: Nothing definite. "The Coroner: What do you mean? "Witness: I was so disturbed and excited as I rushed out into the open, that I could think of nothing except of my father. Yet I have a vague impression that as I ran forward something lay upon the ground to the left of me. It seemed to me to be something grey in colour, a coat of some sort, or a plaid perhaps. When I rose from my father I looked round for it, but it was gone. "'Do you mean that it disappeared before you went for help?' "'Yes, it was gone.' "'You cannot say what it was?' "'No, I had a feeling something was there.' "'How far from the body?' "'A dozen yards or so.' "'And how far from the edge of the wood?' "'About the same.' "'Then if it was removed it was while you were within a dozen yards of it?' "'Yes, but with my back towards it.' "This concluded the examination of the witness." "I see," said I as I glanced down the column, "that the coroner in his concluding remarks was rather severe upon young McCarthy. He calls attention, and with reason, to the discrepancy about his father having signalled to him before seeing him, also to his refusal to give details of his conversation with his father, and his singular account of his father's dying words. They are all, as he remarks, very much against the son." Holmes laughed softly to himself and stretched himself out upon the cushioned seat. "Both you and the coroner have been at some pains," said he, "to single out the very strongest points in the young man's favour. Don't you see that you alternately give him credit for having too much imagination and too little? Too little, if he could not invent a cause of quarrel which would give him the sympathy of the jury; too much, if he evolved from his own inner consciousness anything so outré as a dying reference to a rat, and the incident of the vanishing cloth. No, sir, I shall approach this case from the point of view that what this young man says is true, and we shall see whither that hypothesis will lead us. And now here is my pocket Petrarch, and not another word shall I say of this case until we are on the scene of action. We lunch at Swindon, and I see that we shall be there in twenty minutes." It was nearly four o'clock when we at last, after passing through the beautiful Stroud Valley, and over the broad gleaming Severn, found ourselves at the pretty little country-town of Ross. A lean, ferret-like man, furtive and sly-looking, was waiting for us upon the platform. In spite of the light brown dustcoat and leather-leggings which he wore in deference to his rustic surroundings, I had no difficulty in recognising Lestrade, of Scotland Yard. With him we drove to the Hereford Arms where a room had already been engaged for us. "I have ordered a carriage," said Lestrade as we sat over a cup of tea. "I knew your energetic nature, and that you would not be happy until you had been on the scene of the crime." "It was very nice and complimentary of you," Holmes answered. "It is entirely a question of barometric pressure." Lestrade looked startled. "I do not quite follow," he said. "How is the glass? Twenty-nine, I see. No wind, and not a cloud in the sky. I have a caseful of cigarettes here which need smoking, and the sofa is very much superior to the usual country hotel abomination. I do not think that it is probable that I shall use the carriage to-night." Lestrade laughed indulgently. "You have, no doubt, already formed your conclusions from the newspapers," he said. "The case is as plain as a pikestaff, and the more one goes into it the plainer it becomes. Still, of course, one can't refuse a lady, and such a very positive one, too. She has heard of you, and would have your opinion, though I repeatedly told her that there was nothing which you could do which I had not already done. Why, bless my soul! here is her carriage at the door." He had hardly spoken before there rushed into the room one of the most lovely young women that I have ever seen in my life. Her violet eyes shining, her lips parted, a pink flush upon her cheeks, all thought of her natural reserve lost in her overpowering excitement and concern. "Oh, Mr. Sherlock Holmes!" she cried, glancing from one to the other of us, and finally, with a woman's quick intuition, fastening upon my companion, "I am so glad that you have come. I have driven down to tell you so. I know that James didn't do it. I know it, and I want you to start upon your work knowing it, too. Never let yourself doubt upon that point. We have known each other since we were little children, and I know his faults as no one else does; but he is too tender-hearted to hurt a fly. Such a charge is absurd to anyone who really knows him." "I hope we may clear him, Miss Turner," said Sherlock Holmes. "You may rely upon my doing all that I can." "But you have read the evidence. You have formed some conclusion? Do you not see some loophole, some flaw? Do you not yourself think that he is innocent?" "I think that it is very probable." "There, now!" she cried, throwing back her head and looking defiantly at Lestrade. "You hear! He gives me hopes." Lestrade shrugged his shoulders. "I am afraid that my colleague has been a little quick in forming his conclusions," he said. "But he is right. Oh! I know that he is right. James never did it. And about his quarrel with his father, I am sure that the reason why he would not speak about it to the coroner was because I was concerned in it." "In what way?" asked Holmes. "It is no time for me to hide anything. James and his father had many disagreements about me. Mr. McCarthy was very anxious that there should be a marriage between us. James and I have always loved each other as brother and sister; but of course he is young and has seen very little of life yet, and--and--well, he naturally did not wish to do anything like that yet. So there were quarrels, and this, I am sure, was one of them." "And your father?" asked Holmes. "Was he in favour of such a union?" "No, he was averse to it also. No one but Mr. McCarthy was in favour of it." A quick blush passed over her fresh young face as Holmes shot one of his keen, questioning glances at her. "Thank you for this information," said he. "May I see your father if I call to-morrow?" "I am afraid the doctor won't allow it." "The doctor?" "Yes, have you not heard? Poor father has never been strong for years back, but this has broken him down completely. He has taken to his bed, and Dr. Willows says that he is a wreck and that his nervous system is shattered. Mr. McCarthy was the only man alive who had known dad in the old days in Victoria." "Ha! In Victoria! That is important." "Yes, at the mines." "Quite so; at the gold-mines, where, as I understand, Mr. Turner made his money." "Yes, certainly." "Thank you, Miss Turner. You have been of material assistance to me." "You will tell me if you have any news to-morrow. No doubt you will go to the prison to see James. Oh, if you do, Mr. Holmes, do tell him that I know him to be innocent." "I will, Miss Turner." "I must go home now, for dad is very ill, and he misses me so if I leave him. Good-bye, and God help you in your undertaking." She hurried from the room as impulsively as she had entered, and we heard the wheels of her carriage rattle off down the street. "I am ashamed of you, Holmes," said Lestrade with dignity after a few minutes' silence. "Why should you raise up hopes which you are bound to disappoint? I am not over-tender of heart, but I call it cruel." "I think that I see my way to clearing James McCarthy," said Holmes. "Have you an order to see him in prison?" "Yes, but only for you and me." "Then I shall reconsider my resolution about going out. We have still time to take a train to Hereford and see him to-night?" "Ample." "Then let us do so. Watson, I fear that you will find it very slow, but I shall only be away a couple of hours." I walked down to the station with them, and then wandered through the streets of the little town, finally returning to the hotel, where I lay upon the sofa and tried to interest myself in a yellow-backed novel. The puny plot of the story was so thin, however, when compared to the deep mystery through which we were groping, and I found my attention wander so continually from the action to the fact, that I at last flung it across the room and gave myself up entirely to a consideration of the events of the day. Supposing that this unhappy young man's story were absolutely true, then what hellish thing, what absolutely unforeseen and extraordinary calamity could have occurred between the time when he parted from his father, and the moment when, drawn back by his screams, he rushed into the glade? It was something terrible and deadly. What could it be? Might not the nature of the injuries reveal something to my medical instincts? I rang the bell and called for the weekly county paper, which contained a verbatim account of the inquest. In the surgeon's deposition it was stated that the posterior third of the left parietal bone and the left half of the occipital bone had been shattered by a heavy blow from a blunt weapon. I marked the spot upon my own head. Clearly such a blow must have been struck from behind. That was to some extent in favour of the accused, as when seen quarrelling he was face to face with his father. Still, it did not go for very much, for the older man might have turned his back before the blow fell. Still, it might be worth while to call Holmes' attention to it. Then there was the peculiar dying reference to a rat. What could that mean? It could not be delirium. A man dying from a sudden blow does not commonly become delirious. No, it was more likely to be an attempt to explain how he met his fate. But what could it indicate? I cudgelled my brains to find some possible explanation. And then the incident of the grey cloth seen by young McCarthy. If that were true the murderer must have dropped some part of his dress, presumably his overcoat, in his flight, and must have had the hardihood to return and to carry it away at the instant when the son was kneeling with his back turned not a dozen paces off. What a tissue of mysteries and improbabilities the whole thing was! I did not wonder at Lestrade's opinion, and yet I had so much faith in Sherlock Holmes' insight that I could not lose hope as long as every fresh fact seemed to strengthen his conviction of young McCarthy's innocence. It was late before Sherlock Holmes returned. He came back alone, for Lestrade was staying in lodgings in the town. "The glass still keeps very high," he remarked as he sat down. "It is of importance that it should not rain before we are able to go over the ground. On the other hand, a man should be at his very best and keenest for such nice work as that, and I did not wish to do it when fagged by a long journey. I have seen young McCarthy." "And what did you learn from him?" "Nothing." "Could he throw no light?" "None at all. I was inclined to think at one time that he knew who had done it and was screening him or her, but I am convinced now that he is as puzzled as everyone else. He is not a very quick-witted youth, though comely to look at and, I should think, sound at heart." "I cannot admire his taste," I remarked, "if it is indeed a fact that he was averse to a marriage with so charming a young lady as this Miss Turner." "Ah, thereby hangs a rather painful tale. This fellow is madly, insanely, in love with her, but some two years ago, when he was only a lad, and before he really knew her, for she had been away five years at a boarding-school, what does the idiot do but get into the clutches of a barmaid in Bristol and marry her at a registry office? No one knows a word of the matter, but you can imagine how maddening it must be to him to be upbraided for not doing what he would give his very eyes to do, but what he knows to be absolutely impossible. It was sheer frenzy of this sort which made him throw his hands up into the air when his father, at their last interview, was goading him on to propose to Miss Turner. On the other hand, he had no means of supporting himself, and his father, who was by all accounts a very hard man, would have thrown him over utterly had he known the truth. It was with his barmaid wife that he had spent the last three days in Bristol, and his father did not know where he was. Mark that point. It is of importance. Good has come out of evil, however, for the barmaid, finding from the papers that he is in serious trouble and likely to be hanged, has thrown him over utterly and has written to him to say that she has a husband already in the Bermuda Dockyard, so that there is really no tie between them. I think that that bit of news has consoled young McCarthy for all that he has suffered." "But if he is innocent, who has done it?" "Ah! who? I would call your attention very particularly to two points. One is that the murdered man had an appointment with someone at the pool, and that the someone could not have been his son, for his son was away, and he did not know when he would return. The second is that the murdered man was heard to cry 'Cooee!' before he knew that his son had returned. Those are the crucial points upon which the case depends. And now let us talk about George Meredith, if you please, and we shall leave all minor matters until to-morrow." There was no rain, as Holmes had foretold, and the morning broke bright and cloudless. At nine o'clock Lestrade called for us with the carriage, and we set off for Hatherley Farm and the Boscombe Pool. "There is serious news this morning," Lestrade observed. "It is said that Mr. Turner, of the Hall, is so ill that his life is despaired of." "An elderly man, I presume?" said Holmes. "About sixty; but his constitution has been shattered by his life abroad, and he has been in failing health for some time. This business has had a very bad effect upon him. He was an old friend of McCarthy's, and, I may add, a great benefactor to him, for I have learned that he gave him Hatherley Farm rent free." "Indeed! That is interesting," said Holmes. "Oh, yes! In a hundred other ways he has helped him. Everybody about here speaks of his kindness to him." "Really! Does it not strike you as a little singular that this McCarthy, who appears to have had little of his own, and to have been under such obligations to Turner, should still talk of marrying his son to Turner's daughter, who is, presumably, heiress to the estate, and that in such a very cocksure manner, as if it were merely a case of a proposal and all else would follow? It is the more strange, since we know that Turner himself was averse to the idea. The daughter told us as much. Do you not deduce something from that?" "We have got to the deductions and the inferences," said Lestrade, winking at me. "I find it hard enough to tackle facts, Holmes, without flying away after theories and fancies." "You are right," said Holmes demurely; "you do find it very hard to tackle the facts." "Anyhow, I have grasped one fact which you seem to find it difficult to get hold of," replied Lestrade with some warmth. "And that is--" "That McCarthy senior met his death from McCarthy junior and that all theories to the contrary are the merest moonshine." "Well, moonshine is a brighter thing than fog," said Holmes, laughing. "But I am very much mistaken if this is not Hatherley Farm upon the left." "Yes, that is it." It was a widespread, comfortable-looking building, two-storied, slate-roofed, with great yellow blotches of lichen upon the grey walls. The drawn blinds and the smokeless chimneys, however, gave it a stricken look, as though the weight of this horror still lay heavy upon it. We called at the door, when the maid, at Holmes' request, showed us the boots which her master wore at the time of his death, and also a pair of the son's, though not the pair which he had then had. Having measured these very carefully from seven or eight different points, Holmes desired to be led to the court-yard, from which we all followed the winding track which led to Boscombe Pool. Sherlock Holmes was transformed when he was hot upon such a scent as this. Men who had only known the quiet thinker and logician of Baker Street would have failed to recognise him. His face flushed and darkened. His brows were drawn into two hard black lines, while his eyes shone out from beneath them with a steely glitter. His face was bent downward, his shoulders bowed, his lips compressed, and the veins stood out like whipcord in his long, sinewy neck. His nostrils seemed to dilate with a purely animal lust for the chase, and his mind was so absolutely concentrated upon the matter before him that a question or remark fell unheeded upon his ears, or, at the most, only provoked a quick, impatient snarl in reply. Swiftly and silently he made his way along the track which ran through the meadows, and so by way of the woods to the Boscombe Pool. It was damp, marshy ground, as is all that district, and there were marks of many feet, both upon the path and amid the short grass which bounded it on either side. Sometimes Holmes would hurry on, sometimes stop dead, and once he made quite a little detour into the meadow. Lestrade and I walked behind him, the detective indifferent and contemptuous, while I watched my friend with the interest which sprang from the conviction that every one of his actions was directed towards a definite end. The Boscombe Pool, which is a little reed-girt sheet of water some fifty yards across, is situated at the boundary between the Hatherley Farm and the private park of the wealthy Mr. Turner. Above the woods which lined it upon the farther side we could see the red, jutting pinnacles which marked the site of the rich landowner's dwelling. On the Hatherley side of the pool the woods grew very thick, and there was a narrow belt of sodden grass twenty paces across between the edge of the trees and the reeds which lined the lake. Lestrade showed us the exact spot at which the body had been found, and, indeed, so moist was the ground, that I could plainly see the traces which had been left by the fall of the stricken man. To Holmes, as I could see by his eager face and peering eyes, very many other things were to be read upon the trampled grass. He ran round, like a dog who is picking up a scent, and then turned upon my companion. "What did you go into the pool for?" he asked. "I fished about with a rake. I thought there might be some weapon or other trace. But how on earth--" "Oh, tut, tut! I have no time! That left foot of yours with its inward twist is all over the place. A mole could trace it, and there it vanishes among the reeds. Oh, how simple it would all have been had I been here before they came like a herd of buffalo and wallowed all over it. Here is where the party with the lodge-keeper came, and they have covered all tracks for six or eight feet round the body. But here are three separate tracks of the same feet." He drew out a lens and lay down upon his waterproof to have a better view, talking all the time rather to himself than to us. "These are young McCarthy's feet. Twice he was walking, and once he ran swiftly, so that the soles are deeply marked and the heels hardly visible. That bears out his story. He ran when he saw his father on the ground. Then here are the father's feet as he paced up and down. What is this, then? It is the butt-end of the gun as the son stood listening. And this? Ha, ha! What have we here? Tiptoes! tiptoes! Square, too, quite unusual boots! They come, they go, they come again--of course that was for the cloak. Now where did they come from?" He ran up and down, sometimes losing, sometimes finding the track until we were well within the edge of the wood and under the shadow of a great beech, the largest tree in the neighbourhood. Holmes traced his way to the farther side of this and lay down once more upon his face with a little cry of satisfaction. For a long time he remained there, turning over the leaves and dried sticks, gathering up what seemed to me to be dust into an envelope and examining with his lens not only the ground but even the bark of the tree as far as he could reach. A jagged stone was lying among the moss, and this also he carefully examined and retained. Then he followed a pathway through the wood until he came to the highroad, where all traces were lost. "It has been a case of considerable interest," he remarked, returning to his natural manner. "I fancy that this grey house on the right must be the lodge. I think that I will go in and have a word with Moran, and perhaps write a little note. Having done that, we may drive back to our luncheon. You may walk to the cab, and I shall be with you presently." It was about ten minutes before we regained our cab and drove back into Ross, Holmes still carrying with him the stone which he had picked up in the wood. "This may interest you, Lestrade," he remarked, holding it out. "The murder was done with it." "I see no marks." "There are none." "How do you know, then?" "The grass was growing under it. It had only lain there a few days. There was no sign of a place whence it had been taken. It corresponds with the injuries. There is no sign of any other weapon." "And the murderer?" "Is a tall man, left-handed, limps with the right leg, wears thick-soled shooting-boots and a grey cloak, smokes Indian cigars, uses a cigar-holder, and carries a blunt pen-knife in his pocket. There are several other indications, but these may be enough to aid us in our search." Lestrade laughed. "I am afraid that I am still a sceptic," he said. "Theories are all very well, but we have to deal with a hard-headed British jury." "Nous verrons," answered Holmes calmly. "You work your own method, and I shall work mine. I shall be busy this afternoon, and shall probably return to London by the evening train." "And leave your case unfinished?" "No, finished." "But the mystery?" "It is solved." "Who was the criminal, then?" "The gentleman I describe." "But who is he?" "Surely it would not be difficult to find out. This is not such a populous neighbourhood." Lestrade shrugged his shoulders. "I am a practical man," he said, "and I really cannot undertake to go about the country looking for a left-handed gentleman with a game leg. I should become the laughing-stock of Scotland Yard." "All right," said Holmes quietly. "I have given you the chance. Here are your lodgings. Good-bye. I shall drop you a line before I leave." Having left Lestrade at his rooms, we drove to our hotel, where we found lunch upon the table. Holmes was silent and buried in thought with a pained expression upon his face, as one who finds himself in a perplexing position. "Look here, Watson," he said when the cloth was cleared "just sit down in this chair and let me preach to you for a little. I don't know quite what to do, and I should value your advice. Light a cigar and let me expound." "Pray do so." "Well, now, in considering this case there are two points about young McCarthy's narrative which struck us both instantly, although they impressed me in his favour and you against him. One was the fact that his father should, according to his account, cry 'Cooee!' before seeing him. The other was his singular dying reference to a rat. He mumbled several words, you understand, but that was all that caught the son's ear. Now from this double point our research must commence, and we will begin it by presuming that what the lad says is absolutely true." "What of this 'Cooee!' then?" "Well, obviously it could not have been meant for the son. The son, as far as he knew, was in Bristol. It was mere chance that he was within earshot. The 'Cooee!' was meant to attract the attention of whoever it was that he had the appointment with. But 'Cooee' is a distinctly Australian cry, and one which is used between Australians. There is a strong presumption that the person whom McCarthy expected to meet him at Boscombe Pool was someone who had been in Australia." "What of the rat, then?" Sherlock Holmes took a folded paper from his pocket and flattened it out on the table. "This is a map of the Colony of Victoria," he said. "I wired to Bristol for it last night." He put his hand over part of the map. "What do you read?" "ARAT," I read. "And now?" He raised his hand. "BALLARAT." "Quite so. That was the word the man uttered, and of which his son only caught the last two syllables. He was trying to utter the name of his murderer. So and so, of Ballarat." "It is wonderful!" I exclaimed. "It is obvious. And now, you see, I had narrowed the field down considerably. The possession of a grey garment was a third point which, granting the son's statement to be correct, was a certainty. We have come now out of mere vagueness to the definite conception of an Australian from Ballarat with a grey cloak." "Certainly." "And one who was at home in the district, for the pool can only be approached by the farm or by the estate, where strangers could hardly wander." "Quite so." "Then comes our expedition of to-day. By an examination of the ground I gained the trifling details which I gave to that imbecile Lestrade, as to the personality of the criminal." "But how did you gain them?" "You know my method. It is founded upon the observation of trifles." "His height I know that you might roughly judge from the length of his stride. His boots, too, might be told from their traces." "Yes, they were peculiar boots." "But his lameness?" "The impression of his right foot was always less distinct than his left. He put less weight upon it. Why? Because he limped--he was lame." "But his left-handedness." "You were yourself struck by the nature of the injury as recorded by the surgeon at the inquest. The blow was struck from immediately behind, and yet was upon the left side. Now, how can that be unless it were by a left-handed man? He had stood behind that tree during the interview between the father and son. He had even smoked there. I found the ash of a cigar, which my special knowledge of tobacco ashes enables me to pronounce as an Indian cigar. I have, as you know, devoted some attention to this, and written a little monograph on the ashes of 140 different varieties of pipe, cigar, and cigarette tobacco. Having found the ash, I then looked round and discovered the stump among the moss where he had tossed it. It was an Indian cigar, of the variety which are rolled in Rotterdam." "And the cigar-holder?" "I could see that the end had not been in his mouth. Therefore he used a holder. The tip had been cut off, not bitten off, but the cut was not a clean one, so I deduced a blunt pen-knife." "Holmes," I said, "you have drawn a net round this man from which he cannot escape, and you have saved an innocent human life as truly as if you had cut the cord which was hanging him. I see the direction in which all this points. The culprit is--" "Mr. John Turner," cried the hotel waiter, opening the door of our sitting-room, and ushering in a visitor. The man who entered was a strange and impressive figure. His slow, limping step and bowed shoulders gave the appearance of decrepitude, and yet his hard, deep-lined, craggy features, and his enormous limbs showed that he was possessed of unusual strength of body and of character. His tangled beard, grizzled hair, and outstanding, drooping eyebrows combined to give an air of dignity and power to his appearance, but his face was of an ashen white, while his lips and the corners of his nostrils were tinged with a shade of blue. It was clear to me at a glance that he was in the grip of some deadly and chronic disease. "Pray sit down on the sofa," said Holmes gently. "You had my note?" "Yes, the lodge-keeper brought it up. You said that you wished to see me here to avoid scandal." "I thought people would talk if I went to the Hall." "And why did you wish to see me?" He looked across at my companion with despair in his weary eyes, as though his question was already answered. "Yes," said Holmes, answering the look rather than the words. "It is so. I know all about McCarthy." The old man sank his face in his hands. "God help me!" he cried. "But I would not have let the young man come to harm. I give you my word that I would have spoken out if it went against him at the Assizes." "I am glad to hear you say so," said Holmes gravely. "I would have spoken now had it not been for my dear girl. It would break her heart--it will break her heart when she hears that I am arrested." "It may not come to that," said Holmes. "What?" "I am no official agent. I understand that it was your daughter who required my presence here, and I am acting in her interests. Young McCarthy must be got off, however." "I am a dying man," said old Turner. "I have had diabetes for years. My doctor says it is a question whether I shall live a month. Yet I would rather die under my own roof than in a gaol." Holmes rose and sat down at the table with his pen in his hand and a bundle of paper before him. "Just tell us the truth," he said. "I shall jot down the facts. You will sign it, and Watson here can witness it. Then I could produce your confession at the last extremity to save young McCarthy. I promise you that I shall not use it unless it is absolutely needed." "It's as well," said the old man; "it's a question whether I shall live to the Assizes, so it matters little to me, but I should wish to spare Alice the shock. And now I will make the thing clear to you; it has been a long time in the acting, but will not take me long to tell. "You didn't know this dead man, McCarthy. He was a devil incarnate. I tell you that. God keep you out of the clutches of such a man as he. His grip has been upon me these twenty years, and he has blasted my life. I'll tell you first how I came to be in his power. "It was in the early '60's at the diggings. I was a young chap then, hot-blooded and reckless, ready to turn my hand at anything; I got among bad companions, took to drink, had no luck with my claim, took to the bush, and in a word became what you would call over here a highway robber. There were six of us, and we had a wild, free life of it, sticking up a station from time to time, or stopping the wagons on the road to the diggings. Black Jack of Ballarat was the name I went under, and our party is still remembered in the colony as the Ballarat Gang. "One day a gold convoy came down from Ballarat to Melbourne, and we lay in wait for it and attacked it. There were six troopers and six of us, so it was a close thing, but we emptied four of their saddles at the first volley. Three of our boys were killed, however, before we got the swag. I put my pistol to the head of the wagon-driver, who was this very man McCarthy. I wish to the Lord that I had shot him then, but I spared him, though I saw his wicked little eyes fixed on my face, as though to remember every feature. We got away with the gold, became wealthy men, and made our way over to England without being suspected. There I parted from my old pals and determined to settle down to a quiet and respectable life. I bought this estate, which chanced to be in the market, and I set myself to do a little good with my money, to make up for the way in which I had earned it. I married, too, and though my wife died young she left me my dear little Alice. Even when she was just a baby her wee hand seemed to lead me down the right path as nothing else had ever done. In a word, I turned over a new leaf and did my best to make up for the past. All was going well when McCarthy laid his grip upon me. "I had gone up to town about an investment, and I met him in Regent Street with hardly a coat to his back or a boot to his foot. "'Here we are, Jack,' says he, touching me on the arm; 'we'll be as good as a family to you. There's two of us, me and my son, and you can have the keeping of us. If you don't--it's a fine, law-abiding country is England, and there's always a policeman within hail.' "Well, down they came to the west country, there was no shaking them off, and there they have lived rent free on my best land ever since. There was no rest for me, no peace, no forgetfulness; turn where I would, there was his cunning, grinning face at my elbow. It grew worse as Alice grew up, for he soon saw I was more afraid of her knowing my past than of the police. Whatever he wanted he must have, and whatever it was I gave him without question, land, money, houses, until at last he asked a thing which I could not give. He asked for Alice. "His son, you see, had grown up, and so had my girl, and as I was known to be in weak health, it seemed a fine stroke to him that his lad should step into the whole property. But there I was firm. I would not have his cursed stock mixed with mine; not that I had any dislike to the lad, but his blood was in him, and that was enough. I stood firm. McCarthy threatened. I braved him to do his worst. We were to meet at the pool midway between our houses to talk it over. "When I went down there I found him talking with his son, so I smoked a cigar and waited behind a tree until he should be alone. But as I listened to his talk all that was black and bitter in me seemed to come uppermost. He was urging his son to marry my daughter with as little regard for what she might think as if she were a slut from off the streets. It drove me mad to think that I and all that I held most dear should be in the power of such a man as this. Could I not snap the bond? I was already a dying and a desperate man. Though clear of mind and fairly strong of limb, I knew that my own fate was sealed. But my memory and my girl! Both could be saved if I could but silence that foul tongue. I did it, Mr. Holmes. I would do it again. Deeply as I have sinned, I have led a life of martyrdom to atone for it. But that my girl should be entangled in the same meshes which held me was more than I could suffer. I struck him down with no more compunction than if he had been some foul and venomous beast. His cry brought back his son; but I had gained the cover of the wood, though I was forced to go back to fetch the cloak which I had dropped in my flight. That is the true story, gentlemen, of all that occurred." "Well, it is not for me to judge you," said Holmes as the old man signed the statement which had been drawn out. "I pray that we may never be exposed to such a temptation." "I pray not, sir. And what do you intend to do?" "In view of your health, nothing. You are yourself aware that you will soon have to answer for your deed at a higher court than the Assizes. I will keep your confession, and if McCarthy is condemned I shall be forced to use it. If not, it shall never be seen by mortal eye; and your secret, whether you be alive or dead, shall be safe with us." "Farewell, then," said the old man solemnly. "Your own deathbeds, when they come, will be the easier for the thought of the peace which you have given to mine." Tottering and shaking in all his giant frame, he stumbled slowly from the room. "God help us!" said Holmes after a long silence. "Why does fate play such tricks with poor, helpless worms? I never hear of such a case as this that I do not think of Baxter's words, and say, 'There, but for the grace of God, goes Sherlock Holmes.'" James McCarthy was acquitted at the Assizes on the strength of a number of objections which had been drawn out by Holmes and submitted to the defending counsel. Old Turner lived for seven months after our interview, but he is now dead; and there is every prospect that the son and daughter may come to live happily together in ignorance of the black cloud which rests upon their past. ADVENTURE V. THE FIVE ORANGE PIPS When I glance over my notes and records of the Sherlock Holmes cases between the years '82 and '90, I am faced by so many which present strange and interesting features that it is no easy matter to know which to choose and which to leave. Some, however, have already gained publicity through the papers, and others have not offered a field for those peculiar qualities which my friend possessed in so high a degree, and which it is the object of these papers to illustrate. Some, too, have baffled his analytical skill, and would be, as narratives, beginnings without an ending, while others have been but partially cleared up, and have their explanations founded rather upon conjecture and surmise than on that absolute logical proof which was so dear to him. There is, however, one of these last which was so remarkable in its details and so startling in its results that I am tempted to give some account of it in spite of the fact that there are points in connection with it which never have been, and probably never will be, entirely cleared up. The year '87 furnished us with a long series of cases of greater or less interest, of which I retain the records. Among my headings under this one twelve months I find an account of the adventure of the Paradol Chamber, of the Amateur Mendicant Society, who held a luxurious club in the lower vault of a furniture warehouse, of the facts connected with the loss of the British barque "Sophy Anderson", of the singular adventures of the Grice Patersons in the island of Uffa, and finally of the Camberwell poisoning case. In the latter, as may be remembered, Sherlock Holmes was able, by winding up the dead man's watch, to prove that it had been wound up two hours before, and that therefore the deceased had gone to bed within that time--a deduction which was of the greatest importance in clearing up the case. All these I may sketch out at some future date, but none of them present such singular features as the strange train of circumstances which I have now taken up my pen to describe. It was in the latter days of September, and the equinoctial gales had set in with exceptional violence. All day the wind had screamed and the rain had beaten against the windows, so that even here in the heart of great, hand-made London we were forced to raise our minds for the instant from the routine of life and to recognise the presence of those great elemental forces which shriek at mankind through the bars of his civilisation, like untamed beasts in a cage. As evening drew in, the storm grew higher and louder, and the wind cried and sobbed like a child in the chimney. Sherlock Holmes sat moodily at one side of the fireplace cross-indexing his records of crime, while I at the other was deep in one of Clark Russell's fine sea-stories until the howl of the gale from without seemed to blend with the text, and the splash of the rain to lengthen out into the long swash of the sea waves. My wife was on a visit to her mother's, and for a few days I was a dweller once more in my old quarters at Baker Street. "Why," said I, glancing up at my companion, "that was surely the bell. Who could come to-night? Some friend of yours, perhaps?" "Except yourself I have none," he answered. "I do not encourage visitors." "A client, then?" "If so, it is a serious case. Nothing less would bring a man out on such a day and at such an hour. But I take it that it is more likely to be some crony of the landlady's." Sherlock Holmes was wrong in his conjecture, however, for there came a step in the passage and a tapping at the door. He stretched out his long arm to turn the lamp away from himself and towards the vacant chair upon which a newcomer must sit. "Come in!" said he. The man who entered was young, some two-and-twenty at the outside, well-groomed and trimly clad, with something of refinement and delicacy in his bearing. The streaming umbrella which he held in his hand, and his long shining waterproof told of the fierce weather through which he had come. He looked about him anxiously in the glare of the lamp, and I could see that his face was pale and his eyes heavy, like those of a man who is weighed down with some great anxiety. "I owe you an apology," he said, raising his golden pince-nez to his eyes. "I trust that I am not intruding. I fear that I have brought some traces of the storm and rain into your snug chamber." "Give me your coat and umbrella," said Holmes. "They may rest here on the hook and will be dry presently. You have come up from the south-west, I see." "Yes, from Horsham." "That clay and chalk mixture which I see upon your toe caps is quite distinctive." "I have come for advice." "That is easily got." "And help." "That is not always so easy." "I have heard of you, Mr. Holmes. I heard from Major Prendergast how you saved him in the Tankerville Club scandal." "Ah, of course. He was wrongfully accused of cheating at cards." "He said that you could solve anything." "He said too much." "That you are never beaten." "I have been beaten four times--three times by men, and once by a woman." "But what is that compared with the number of your successes?" "It is true that I have been generally successful." "Then you may be so with me." "I beg that you will draw your chair up to the fire and favour me with some details as to your case." "It is no ordinary one." "None of those which come to me are. I am the last court of appeal." "And yet I question, sir, whether, in all your experience, you have ever listened to a more mysterious and inexplicable chain of events than those which have happened in my own family." "You fill me with interest," said Holmes. "Pray give us the essential facts from the commencement, and I can afterwards question you as to those details which seem to me to be most important." The young man pulled his chair up and pushed his wet feet out towards the blaze. "My name," said he, "is John Openshaw, but my own affairs have, as far as I can understand, little to do with this awful business. It is a hereditary matter; so in order to give you an idea of the facts, I must go back to the commencement of the affair. "You must know that my grandfather had two sons--my uncle Elias and my father Joseph. My father had a small factory at Coventry, which he enlarged at the time of the invention of bicycling. He was a patentee of the Openshaw unbreakable tire, and his business met with such success that he was able to sell it and to retire upon a handsome competence. "My uncle Elias emigrated to America when he was a young man and became a planter in Florida, where he was reported to have done very well. At the time of the war he fought in Jackson's army, and afterwards under Hood, where he rose to be a colonel. When Lee laid down his arms my uncle returned to his plantation, where he remained for three or four years. About 1869 or 1870 he came back to Europe and took a small estate in Sussex, near Horsham. He had made a very considerable fortune in the States, and his reason for leaving them was his aversion to the negroes, and his dislike of the Republican policy in extending the franchise to them. He was a singular man, fierce and quick-tempered, very foul-mouthed when he was angry, and of a most retiring disposition. During all the years that he lived at Horsham, I doubt if ever he set foot in the town. He had a garden and two or three fields round his house, and there he would take his exercise, though very often for weeks on end he would never leave his room. He drank a great deal of brandy and smoked very heavily, but he would see no society and did not want any friends, not even his own brother. "He didn't mind me; in fact, he took a fancy to me, for at the time when he saw me first I was a youngster of twelve or so. This would be in the year 1878, after he had been eight or nine years in England. He begged my father to let me live with him and he was very kind to me in his way. When he was sober he used to be fond of playing backgammon and draughts with me, and he would make me his representative both with the servants and with the tradespeople, so that by the time that I was sixteen I was quite master of the house. I kept all the keys and could go where I liked and do what I liked, so long as I did not disturb him in his privacy. There was one singular exception, however, for he had a single room, a lumber-room up among the attics, which was invariably locked, and which he would never permit either me or anyone else to enter. With a boy's curiosity I have peeped through the keyhole, but I was never able to see more than such a collection of old trunks and bundles as would be expected in such a room. "One day--it was in March, 1883--a letter with a foreign stamp lay upon the table in front of the colonel's plate. It was not a common thing for him to receive letters, for his bills were all paid in ready money, and he had no friends of any sort. 'From India!' said he as he took it up, 'Pondicherry postmark! What can this be?' Opening it hurriedly, out there jumped five little dried orange pips, which pattered down upon his plate. I began to laugh at this, but the laugh was struck from my lips at the sight of his face. His lip had fallen, his eyes were protruding, his skin the colour of putty, and he glared at the envelope which he still held in his trembling hand, 'K. K. K.!' he shrieked, and then, 'My God, my God, my sins have overtaken me!' "'What is it, uncle?' I cried. "'Death,' said he, and rising from the table he retired to his room, leaving me palpitating with horror. I took up the envelope and saw scrawled in red ink upon the inner flap, just above the gum, the letter K three times repeated. There was nothing else save the five dried pips. What could be the reason of his overpowering terror? I left the breakfast-table, and as I ascended the stair I met him coming down with an old rusty key, which must have belonged to the attic, in one hand, and a small brass box, like a cashbox, in the other. "'They may do what they like, but I'll checkmate them still,' said he with an oath. 'Tell Mary that I shall want a fire in my room to-day, and send down to Fordham, the Horsham lawyer.' "I did as he ordered, and when the lawyer arrived I was asked to step up to the room. The fire was burning brightly, and in the grate there was a mass of black, fluffy ashes, as of burned paper, while the brass box stood open and empty beside it. As I glanced at the box I noticed, with a start, that upon the lid was printed the treble K which I had read in the morning upon the envelope. "'I wish you, John,' said my uncle, 'to witness my will. I leave my estate, with all its advantages and all its disadvantages, to my brother, your father, whence it will, no doubt, descend to you. If you can enjoy it in peace, well and good! If you find you cannot, take my advice, my boy, and leave it to your deadliest enemy. I am sorry to give you such a two-edged thing, but I can't say what turn things are going to take. Kindly sign the paper where Mr. Fordham shows you.' "I signed the paper as directed, and the lawyer took it away with him. The singular incident made, as you may think, the deepest impression upon me, and I pondered over it and turned it every way in my mind without being able to make anything of it. Yet I could not shake off the vague feeling of dread which it left behind, though the sensation grew less keen as the weeks passed and nothing happened to disturb the usual routine of our lives. I could see a change in my uncle, however. He drank more than ever, and he was less inclined for any sort of society. Most of his time he would spend in his room, with the door locked upon the inside, but sometimes he would emerge in a sort of drunken frenzy and would burst out of the house and tear about the garden with a revolver in his hand, screaming out that he was afraid of no man, and that he was not to be cooped up, like a sheep in a pen, by man or devil. When these hot fits were over, however, he would rush tumultuously in at the door and lock and bar it behind him, like a man who can brazen it out no longer against the terror which lies at the roots of his soul. At such times I have seen his face, even on a cold day, glisten with moisture, as though it were new raised from a basin. "Well, to come to an end of the matter, Mr. Holmes, and not to abuse your patience, there came a night when he made one of those drunken sallies from which he never came back. We found him, when we went to search for him, face downward in a little green-scummed pool, which lay at the foot of the garden. There was no sign of any violence, and the water was but two feet deep, so that the jury, having regard to his known eccentricity, brought in a verdict of 'suicide.' But I, who knew how he winced from the very thought of death, had much ado to persuade myself that he had gone out of his way to meet it. The matter passed, however, and my father entered into possession of the estate, and of some 14,000 pounds, which lay to his credit at the bank." "One moment," Holmes interposed, "your statement is, I foresee, one of the most remarkable to which I have ever listened. Let me have the date of the reception by your uncle of the letter, and the date of his supposed suicide." "The letter arrived on March 10, 1883. His death was seven weeks later, upon the night of May 2nd." "Thank you. Pray proceed." "When my father took over the Horsham property, he, at my request, made a careful examination of the attic, which had been always locked up. We found the brass box there, although its contents had been destroyed. On the inside of the cover was a paper label, with the initials of K. K. K. repeated upon it, and 'Letters, memoranda, receipts, and a register' written beneath. These, we presume, indicated the nature of the papers which had been destroyed by Colonel Openshaw. For the rest, there was nothing of much importance in the attic save a great many scattered papers and note-books bearing upon my uncle's life in America. Some of them were of the war time and showed that he had done his duty well and had borne the repute of a brave soldier. Others were of a date during the reconstruction of the Southern states, and were mostly concerned with politics, for he had evidently taken a strong part in opposing the carpet-bag politicians who had been sent down from the North. "Well, it was the beginning of '84 when my father came to live at Horsham, and all went as well as possible with us until the January of '85. On the fourth day after the new year I heard my father give a sharp cry of surprise as we sat together at the breakfast-table. There he was, sitting with a newly opened envelope in one hand and five dried orange pips in the outstretched palm of the other one. He had always laughed at what he called my cock-and-bull story about the colonel, but he looked very scared and puzzled now that the same thing had come upon himself. "'Why, what on earth does this mean, John?' he stammered. "My heart had turned to lead. 'It is K. K. K.,' said I. "He looked inside the envelope. 'So it is,' he cried. 'Here are the very letters. But what is this written above them?' "'Put the papers on the sundial,' I read, peeping over his shoulder. "'What papers? What sundial?' he asked. "'The sundial in the garden. There is no other,' said I; 'but the papers must be those that are destroyed.' "'Pooh!' said he, gripping hard at his courage. 'We are in a civilised land here, and we can't have tomfoolery of this kind. Where does the thing come from?' "'From Dundee,' I answered, glancing at the postmark. "'Some preposterous practical joke,' said he. 'What have I to do with sundials and papers? I shall take no notice of such nonsense.' "'I should certainly speak to the police,' I said. "'And be laughed at for my pains. Nothing of the sort.' "'Then let me do so?' "'No, I forbid you. I won't have a fuss made about such nonsense.' "It was in vain to argue with him, for he was a very obstinate man. I went about, however, with a heart which was full of forebodings. "On the third day after the coming of the letter my father went from home to visit an old friend of his, Major Freebody, who is in command of one of the forts upon Portsdown Hill. I was glad that he should go, for it seemed to me that he was farther from danger when he was away from home. In that, however, I was in error. Upon the second day of his absence I received a telegram from the major, imploring me to come at once. My father had fallen over one of the deep chalk-pits which abound in the neighbourhood, and was lying senseless, with a shattered skull. I hurried to him, but he passed away without having ever recovered his consciousness. He had, as it appears, been returning from Fareham in the twilight, and as the country was unknown to him, and the chalk-pit unfenced, the jury had no hesitation in bringing in a verdict of 'death from accidental causes.' Carefully as I examined every fact connected with his death, I was unable to find anything which could suggest the idea of murder. There were no signs of violence, no footmarks, no robbery, no record of strangers having been seen upon the roads. And yet I need not tell you that my mind was far from at ease, and that I was well-nigh certain that some foul plot had been woven round him. "In this sinister way I came into my inheritance. You will ask me why I did not dispose of it? I answer, because I was well convinced that our troubles were in some way dependent upon an incident in my uncle's life, and that the danger would be as pressing in one house as in another. "It was in January, '85, that my poor father met his end, and two years and eight months have elapsed since then. During that time I have lived happily at Horsham, and I had begun to hope that this curse had passed away from the family, and that it had ended with the last generation. I had begun to take comfort too soon, however; yesterday morning the blow fell in the very shape in which it had come upon my father." The young man took from his waistcoat a crumpled envelope, and turning to the table he shook out upon it five little dried orange pips. "This is the envelope," he continued. "The postmark is London--eastern division. Within are the very words which were upon my father's last message: 'K. K. K.'; and then 'Put the papers on the sundial.'" "What have you done?" asked Holmes. "Nothing." "Nothing?" "To tell the truth"--he sank his face into his thin, white hands--"I have felt helpless. I have felt like one of those poor rabbits when the snake is writhing towards it. I seem to be in the grasp of some resistless, inexorable evil, which no foresight and no precautions can guard against." "Tut! tut!" cried Sherlock Holmes. "You must act, man, or you are lost. Nothing but energy can save you. This is no time for despair." "I have seen the police." "Ah!" "But they listened to my story with a smile. I am convinced that the inspector has formed the opinion that the letters are all practical jokes, and that the deaths of my relations were really accidents, as the jury stated, and were not to be connected with the warnings." Holmes shook his clenched hands in the air. "Incredible imbecility!" he cried. "They have, however, allowed me a policeman, who may remain in the house with me." "Has he come with you to-night?" "No. His orders were to stay in the house." Again Holmes raved in the air. "Why did you come to me," he cried, "and, above all, why did you not come at once?" "I did not know. It was only to-day that I spoke to Major Prendergast about my troubles and was advised by him to come to you." "It is really two days since you had the letter. We should have acted before this. You have no further evidence, I suppose, than that which you have placed before us--no suggestive detail which might help us?" "There is one thing," said John Openshaw. He rummaged in his coat pocket, and, drawing out a piece of discoloured, blue-tinted paper, he laid it out upon the table. "I have some remembrance," said he, "that on the day when my uncle burned the papers I observed that the small, unburned margins which lay amid the ashes were of this particular colour. I found this single sheet upon the floor of his room, and I am inclined to think that it may be one of the papers which has, perhaps, fluttered out from among the others, and in that way has escaped destruction. Beyond the mention of pips, I do not see that it helps us much. I think myself that it is a page from some private diary. The writing is undoubtedly my uncle's." Holmes moved the lamp, and we both bent over the sheet of paper, which showed by its ragged edge that it had indeed been torn from a book. It was headed, "March, 1869," and beneath were the following enigmatical notices: "4th. Hudson came. Same old platform. "7th. Set the pips on McCauley, Paramore, and John Swain, of St. Augustine. "9th. McCauley cleared. "10th. John Swain cleared. "12th. Visited Paramore. All well." "Thank you!" said Holmes, folding up the paper and returning it to our visitor. "And now you must on no account lose another instant. We cannot spare time even to discuss what you have told me. You must get home instantly and act." "What shall I do?" "There is but one thing to do. It must be done at once. You must put this piece of paper which you have shown us into the brass box which you have described. You must also put in a note to say that all the other papers were burned by your uncle, and that this is the only one which remains. You must assert that in such words as will carry conviction with them. Having done this, you must at once put the box out upon the sundial, as directed. Do you understand?" "Entirely." "Do not think of revenge, or anything of the sort, at present. I think that we may gain that by means of the law; but we have our web to weave, while theirs is already woven. The first consideration is to remove the pressing danger which threatens you. The second is to clear up the mystery and to punish the guilty parties." "I thank you," said the young man, rising and pulling on his overcoat. "You have given me fresh life and hope. I shall certainly do as you advise." "Do not lose an instant. And, above all, take care of yourself in the meanwhile, for I do not think that there can be a doubt that you are threatened by a very real and imminent danger. How do you go back?" "By train from Waterloo." "It is not yet nine. The streets will be crowded, so I trust that you may be in safety. And yet you cannot guard yourself too closely." "I am armed." "That is well. To-morrow I shall set to work upon your case." "I shall see you at Horsham, then?" "No, your secret lies in London. It is there that I shall seek it." "Then I shall call upon you in a day, or in two days, with news as to the box and the papers. I shall take your advice in every particular." He shook hands with us and took his leave. Outside the wind still screamed and the rain splashed and pattered against the windows. This strange, wild story seemed to have come to us from amid the mad elements--blown in upon us like a sheet of sea-weed in a gale--and now to have been reabsorbed by them once more. Sherlock Holmes sat for some time in silence, with his head sunk forward and his eyes bent upon the red glow of the fire. Then he lit his pipe, and leaning back in his chair he watched the blue smoke-rings as they chased each other up to the ceiling. "I think, Watson," he remarked at last, "that of all our cases we have had none more fantastic than this." "Save, perhaps, the Sign of Four." "Well, yes. Save, perhaps, that. And yet this John Openshaw seems to me to be walking amid even greater perils than did the Sholtos." "But have you," I asked, "formed any definite conception as to what these perils are?" "There can be no question as to their nature," he answered. "Then what are they? Who is this K. K. K., and why does he pursue this unhappy family?" Sherlock Holmes closed his eyes and placed his elbows upon the arms of his chair, with his finger-tips together. "The ideal reasoner," he remarked, "would, when he had once been shown a single fact in all its bearings, deduce from it not only all the chain of events which led up to it but also all the results which would follow from it. As Cuvier could correctly describe a whole animal by the contemplation of a single bone, so the observer who has thoroughly understood one link in a series of incidents should be able to accurately state all the other ones, both before and after. We have not yet grasped the results which the reason alone can attain to. Problems may be solved in the study which have baffled all those who have sought a solution by the aid of their senses. To carry the art, however, to its highest pitch, it is necessary that the reasoner should be able to utilise all the facts which have come to his knowledge; and this in itself implies, as you will readily see, a possession of all knowledge, which, even in these days of free education and encyclopaedias, is a somewhat rare accomplishment. It is not so impossible, however, that a man should possess all knowledge which is likely to be useful to him in his work, and this I have endeavoured in my case to do. If I remember rightly, you on one occasion, in the early days of our friendship, defined my limits in a very precise fashion." "Yes," I answered, laughing. "It was a singular document. Philosophy, astronomy, and politics were marked at zero, I remember. Botany variable, geology profound as regards the mud-stains from any region within fifty miles of town, chemistry eccentric, anatomy unsystematic, sensational literature and crime records unique, violin-player, boxer, swordsman, lawyer, and self-poisoner by cocaine and tobacco. Those, I think, were the main points of my analysis." Holmes grinned at the last item. "Well," he said, "I say now, as I said then, that a man should keep his little brain-attic stocked with all the furniture that he is likely to use, and the rest he can put away in the lumber-room of his library, where he can get it if he wants it. Now, for such a case as the one which has been submitted to us to-night, we need certainly to muster all our resources. Kindly hand me down the letter K of the 'American Encyclopaedia' which stands upon the shelf beside you. Thank you. Now let us consider the situation and see what may be deduced from it. In the first place, we may start with a strong presumption that Colonel Openshaw had some very strong reason for leaving America. Men at his time of life do not change all their habits and exchange willingly the charming climate of Florida for the lonely life of an English provincial town. His extreme love of solitude in England suggests the idea that he was in fear of someone or something, so we may assume as a working hypothesis that it was fear of someone or something which drove him from America. As to what it was he feared, we can only deduce that by considering the formidable letters which were received by himself and his successors. Did you remark the postmarks of those letters?" "The first was from Pondicherry, the second from Dundee, and the third from London." "From East London. What do you deduce from that?" "They are all seaports. That the writer was on board of a ship." "Excellent. We have already a clue. There can be no doubt that the probability--the strong probability--is that the writer was on board of a ship. And now let us consider another point. In the case of Pondicherry, seven weeks elapsed between the threat and its fulfilment, in Dundee it was only some three or four days. Does that suggest anything?" "A greater distance to travel." "But the letter had also a greater distance to come." "Then I do not see the point." "There is at least a presumption that the vessel in which the man or men are is a sailing-ship. It looks as if they always send their singular warning or token before them when starting upon their mission. You see how quickly the deed followed the sign when it came from Dundee. If they had come from Pondicherry in a steamer they would have arrived almost as soon as their letter. But, as a matter of fact, seven weeks elapsed. I think that those seven weeks represented the difference between the mail-boat which brought the letter and the sailing vessel which brought the writer." "It is possible." "More than that. It is probable. And now you see the deadly urgency of this new case, and why I urged young Openshaw to caution. The blow has always fallen at the end of the time which it would take the senders to travel the distance. But this one comes from London, and therefore we cannot count upon delay." "Good God!" I cried. "What can it mean, this relentless persecution?" "The papers which Openshaw carried are obviously of vital importance to the person or persons in the sailing-ship. I think that it is quite clear that there must be more than one of them. A single man could not have carried out two deaths in such a way as to deceive a coroner's jury. There must have been several in it, and they must have been men of resource and determination. Their papers they mean to have, be the holder of them who it may. In this way you see K. K. K. ceases to be the initials of an individual and becomes the badge of a society." "But of what society?" "Have you never--" said Sherlock Holmes, bending forward and sinking his voice--"have you never heard of the Ku Klux Klan?" "I never have." Holmes turned over the leaves of the book upon his knee. "Here it is," said he presently: "'Ku Klux Klan. A name derived from the fanciful resemblance to the sound produced by cocking a rifle. This terrible secret society was formed by some ex-Confederate soldiers in the Southern states after the Civil War, and it rapidly formed local branches in different parts of the country, notably in Tennessee, Louisiana, the Carolinas, Georgia, and Florida. Its power was used for political purposes, principally for the terrorising of the negro voters and the murdering and driving from the country of those who were opposed to its views. Its outrages were usually preceded by a warning sent to the marked man in some fantastic but generally recognised shape--a sprig of oak-leaves in some parts, melon seeds or orange pips in others. On receiving this the victim might either openly abjure his former ways, or might fly from the country. If he braved the matter out, death would unfailingly come upon him, and usually in some strange and unforeseen manner. So perfect was the organisation of the society, and so systematic its methods, that there is hardly a case upon record where any man succeeded in braving it with impunity, or in which any of its outrages were traced home to the perpetrators. For some years the organisation flourished in spite of the efforts of the United States government and of the better classes of the community in the South. Eventually, in the year 1869, the movement rather suddenly collapsed, although there have been sporadic outbreaks of the same sort since that date.' "You will observe," said Holmes, laying down the volume, "that the sudden breaking up of the society was coincident with the disappearance of Openshaw from America with their papers. It may well have been cause and effect. It is no wonder that he and his family have some of the more implacable spirits upon their track. You can understand that this register and diary may implicate some of the first men in the South, and that there may be many who will not sleep easy at night until it is recovered." "Then the page we have seen--" "Is such as we might expect. It ran, if I remember right, 'sent the pips to A, B, and C'--that is, sent the society's warning to them. Then there are successive entries that A and B cleared, or left the country, and finally that C was visited, with, I fear, a sinister result for C. Well, I think, Doctor, that we may let some light into this dark place, and I believe that the only chance young Openshaw has in the meantime is to do what I have told him. There is nothing more to be said or to be done to-night, so hand me over my violin and let us try to forget for half an hour the miserable weather and the still more miserable ways of our fellow-men." It had cleared in the morning, and the sun was shining with a subdued brightness through the dim veil which hangs over the great city. Sherlock Holmes was already at breakfast when I came down. "You will excuse me for not waiting for you," said he; "I have, I foresee, a very busy day before me in looking into this case of young Openshaw's." "What steps will you take?" I asked. "It will very much depend upon the results of my first inquiries. I may have to go down to Horsham, after all." "You will not go there first?" "No, I shall commence with the City. Just ring the bell and the maid will bring up your coffee." As I waited, I lifted the unopened newspaper from the table and glanced my eye over it. It rested upon a heading which sent a chill to my heart. "Holmes," I cried, "you are too late." "Ah!" said he, laying down his cup, "I feared as much. How was it done?" He spoke calmly, but I could see that he was deeply moved. "My eye caught the name of Openshaw, and the heading 'Tragedy Near Waterloo Bridge.' Here is the account: "Between nine and ten last night Police-Constable Cook, of the H Division, on duty near Waterloo Bridge, heard a cry for help and a splash in the water. The night, however, was extremely dark and stormy, so that, in spite of the help of several passers-by, it was quite impossible to effect a rescue. The alarm, however, was given, and, by the aid of the water-police, the body was eventually recovered. It proved to be that of a young gentleman whose name, as it appears from an envelope which was found in his pocket, was John Openshaw, and whose residence is near Horsham. It is conjectured that he may have been hurrying down to catch the last train from Waterloo Station, and that in his haste and the extreme darkness he missed his path and walked over the edge of one of the small landing-places for river steamboats. The body exhibited no traces of violence, and there can be no doubt that the deceased had been the victim of an unfortunate accident, which should have the effect of calling the attention of the authorities to the condition of the riverside landing-stages." We sat in silence for some minutes, Holmes more depressed and shaken than I had ever seen him. "That hurts my pride, Watson," he said at last. "It is a petty feeling, no doubt, but it hurts my pride. It becomes a personal matter with me now, and, if God sends me health, I shall set my hand upon this gang. That he should come to me for help, and that I should send him away to his death--!" He sprang from his chair and paced about the room in uncontrollable agitation, with a flush upon his sallow cheeks and a nervous clasping and unclasping of his long thin hands. "They must be cunning devils," he exclaimed at last. "How could they have decoyed him down there? The Embankment is not on the direct line to the station. The bridge, no doubt, was too crowded, even on such a night, for their purpose. Well, Watson, we shall see who will win in the long run. I am going out now!" "To the police?" "No; I shall be my own police. When I have spun the web they may take the flies, but not before." All day I was engaged in my professional work, and it was late in the evening before I returned to Baker Street. Sherlock Holmes had not come back yet. It was nearly ten o'clock before he entered, looking pale and worn. He walked up to the sideboard, and tearing a piece from the loaf he devoured it voraciously, washing it down with a long draught of water. "You are hungry," I remarked. "Starving. It had escaped my memory. I have had nothing since breakfast." "Nothing?" "Not a bite. I had no time to think of it." "And how have you succeeded?" "Well." "You have a clue?" "I have them in the hollow of my hand. Young Openshaw shall not long remain unavenged. Why, Watson, let us put their own devilish trade-mark upon them. It is well thought of!" "What do you mean?" He took an orange from the cupboard, and tearing it to pieces he squeezed out the pips upon the table. Of these he took five and thrust them into an envelope. On the inside of the flap he wrote "S. H. for J. O." Then he sealed it and addressed it to "Captain James Calhoun, Barque 'Lone Star,' Savannah, Georgia." "That will await him when he enters port," said he, chuckling. "It may give him a sleepless night. He will find it as sure a precursor of his fate as Openshaw did before him." "And who is this Captain Calhoun?" "The leader of the gang. I shall have the others, but he first." "How did you trace it, then?" He took a large sheet of paper from his pocket, all covered with dates and names. "I have spent the whole day," said he, "over Lloyd's registers and files of the old papers, following the future career of every vessel which touched at Pondicherry in January and February in '83. There were thirty-six ships of fair tonnage which were reported there during those months. Of these, one, the 'Lone Star,' instantly attracted my attention, since, although it was reported as having cleared from London, the name is that which is given to one of the states of the Union." "Texas, I think." "I was not and am not sure which; but I knew that the ship must have an American origin." "What then?" "I searched the Dundee records, and when I found that the barque 'Lone Star' was there in January, '85, my suspicion became a certainty. I then inquired as to the vessels which lay at present in the port of London." "Yes?" "The 'Lone Star' had arrived here last week. I went down to the Albert Dock and found that she had been taken down the river by the early tide this morning, homeward bound to Savannah. I wired to Gravesend and learned that she had passed some time ago, and as the wind is easterly I have no doubt that she is now past the Goodwins and not very far from the Isle of Wight." "What will you do, then?" "Oh, I have my hand upon him. He and the two mates, are as I learn, the only native-born Americans in the ship. The others are Finns and Germans. I know, also, that they were all three away from the ship last night. I had it from the stevedore who has been loading their cargo. By the time that their sailing-ship reaches Savannah the mail-boat will have carried this letter, and the cable will have informed the police of Savannah that these three gentlemen are badly wanted here upon a charge of murder." There is ever a flaw, however, in the best laid of human plans, and the murderers of John Openshaw were never to receive the orange pips which would show them that another, as cunning and as resolute as themselves, was upon their track. Very long and very severe were the equinoctial gales that year. We waited long for news of the "Lone Star" of Savannah, but none ever reached us. We did at last hear that somewhere far out in the Atlantic a shattered stern-post of a boat was seen swinging in the trough of a wave, with the letters "L. S." carved upon it, and that is all which we shall ever know of the fate of the "Lone Star." ADVENTURE VI. THE MAN WITH THE TWISTED LIP Isa Whitney, brother of the late Elias Whitney, D.D., Principal of the Theological College of St. George's, was much addicted to opium. The habit grew upon him, as I understand, from some foolish freak when he was at college; for having read De Quincey's description of his dreams and sensations, he had drenched his tobacco with laudanum in an attempt to produce the same effects. He found, as so many more have done, that the practice is easier to attain than to get rid of, and for many years he continued to be a slave to the drug, an object of mingled horror and pity to his friends and relatives. I can see him now, with yellow, pasty face, drooping lids, and pin-point pupils, all huddled in a chair, the wreck and ruin of a noble man. One night--it was in June, '89--there came a ring to my bell, about the hour when a man gives his first yawn and glances at the clock. I sat up in my chair, and my wife laid her needle-work down in her lap and made a little face of disappointment. "A patient!" said she. "You'll have to go out." I groaned, for I was newly come back from a weary day. We heard the door open, a few hurried words, and then quick steps upon the linoleum. Our own door flew open, and a lady, clad in some dark-coloured stuff, with a black veil, entered the room. "You will excuse my calling so late," she began, and then, suddenly losing her self-control, she ran forward, threw her arms about my wife's neck, and sobbed upon her shoulder. "Oh, I'm in such trouble!" she cried; "I do so want a little help." "Why," said my wife, pulling up her veil, "it is Kate Whitney. How you startled me, Kate! I had not an idea who you were when you came in." "I didn't know what to do, so I came straight to you." That was always the way. Folk who were in grief came to my wife like birds to a light-house. "It was very sweet of you to come. Now, you must have some wine and water, and sit here comfortably and tell us all about it. Or should you rather that I sent James off to bed?" "Oh, no, no! I want the doctor's advice and help, too. It's about Isa. He has not been home for two days. I am so frightened about him!" It was not the first time that she had spoken to us of her husband's trouble, to me as a doctor, to my wife as an old friend and school companion. We soothed and comforted her by such words as we could find. Did she know where her husband was? Was it possible that we could bring him back to her? It seems that it was. She had the surest information that of late he had, when the fit was on him, made use of an opium den in the farthest east of the City. Hitherto his orgies had always been confined to one day, and he had come back, twitching and shattered, in the evening. But now the spell had been upon him eight-and-forty hours, and he lay there, doubtless among the dregs of the docks, breathing in the poison or sleeping off the effects. There he was to be found, she was sure of it, at the Bar of Gold, in Upper Swandam Lane. But what was she to do? How could she, a young and timid woman, make her way into such a place and pluck her husband out from among the ruffians who surrounded him? There was the case, and of course there was but one way out of it. Might I not escort her to this place? And then, as a second thought, why should she come at all? I was Isa Whitney's medical adviser, and as such I had influence over him. I could manage it better if I were alone. I promised her on my word that I would send him home in a cab within two hours if he were indeed at the address which she had given me. And so in ten minutes I had left my armchair and cheery sitting-room behind me, and was speeding eastward in a hansom on a strange errand, as it seemed to me at the time, though the future only could show how strange it was to be. But there was no great difficulty in the first stage of my adventure. Upper Swandam Lane is a vile alley lurking behind the high wharves which line the north side of the river to the east of London Bridge. Between a slop-shop and a gin-shop, approached by a steep flight of steps leading down to a black gap like the mouth of a cave, I found the den of which I was in search. Ordering my cab to wait, I passed down the steps, worn hollow in the centre by the ceaseless tread of drunken feet; and by the light of a flickering oil-lamp above the door I found the latch and made my way into a long, low room, thick and heavy with the brown opium smoke, and terraced with wooden berths, like the forecastle of an emigrant ship. Through the gloom one could dimly catch a glimpse of bodies lying in strange fantastic poses, bowed shoulders, bent knees, heads thrown back, and chins pointing upward, with here and there a dark, lack-lustre eye turned upon the newcomer. Out of the black shadows there glimmered little red circles of light, now bright, now faint, as the burning poison waxed or waned in the bowls of the metal pipes. The most lay silent, but some muttered to themselves, and others talked together in a strange, low, monotonous voice, their conversation coming in gushes, and then suddenly tailing off into silence, each mumbling out his own thoughts and paying little heed to the words of his neighbour. At the farther end was a small brazier of burning charcoal, beside which on a three-legged wooden stool there sat a tall, thin old man, with his jaw resting upon his two fists, and his elbows upon his knees, staring into the fire. As I entered, a sallow Malay attendant had hurried up with a pipe for me and a supply of the drug, beckoning me to an empty berth. "Thank you. I have not come to stay," said I. "There is a friend of mine here, Mr. Isa Whitney, and I wish to speak with him." There was a movement and an exclamation from my right, and peering through the gloom, I saw Whitney, pale, haggard, and unkempt, staring out at me. "My God! It's Watson," said he. He was in a pitiable state of reaction, with every nerve in a twitter. "I say, Watson, what o'clock is it?" "Nearly eleven." "Of what day?" "Of Friday, June 19th." "Good heavens! I thought it was Wednesday. It is Wednesday. What d'you want to frighten a chap for?" He sank his face onto his arms and began to sob in a high treble key. "I tell you that it is Friday, man. Your wife has been waiting this two days for you. You should be ashamed of yourself!" "So I am. But you've got mixed, Watson, for I have only been here a few hours, three pipes, four pipes--I forget how many. But I'll go home with you. I wouldn't frighten Kate--poor little Kate. Give me your hand! Have you a cab?" "Yes, I have one waiting." "Then I shall go in it. But I must owe something. Find what I owe, Watson. I am all off colour. I can do nothing for myself." I walked down the narrow passage between the double row of sleepers, holding my breath to keep out the vile, stupefying fumes of the drug, and looking about for the manager. As I passed the tall man who sat by the brazier I felt a sudden pluck at my skirt, and a low voice whispered, "Walk past me, and then look back at me." The words fell quite distinctly upon my ear. I glanced down. They could only have come from the old man at my side, and yet he sat now as absorbed as ever, very thin, very wrinkled, bent with age, an opium pipe dangling down from between his knees, as though it had dropped in sheer lassitude from his fingers. I took two steps forward and looked back. It took all my self-control to prevent me from breaking out into a cry of astonishment. He had turned his back so that none could see him but I. His form had filled out, his wrinkles were gone, the dull eyes had regained their fire, and there, sitting by the fire and grinning at my surprise, was none other than Sherlock Holmes. He made a slight motion to me to approach him, and instantly, as he turned his face half round to the company once more, subsided into a doddering, loose-lipped senility. "Holmes!" I whispered, "what on earth are you doing in this den?" "As low as you can," he answered; "I have excellent ears. If you would have the great kindness to get rid of that sottish friend of yours I should be exceedingly glad to have a little talk with you." "I have a cab outside." "Then pray send him home in it. You may safely trust him, for he appears to be too limp to get into any mischief. I should recommend you also to send a note by the cabman to your wife to say that you have thrown in your lot with me. If you will wait outside, I shall be with you in five minutes." It was difficult to refuse any of Sherlock Holmes' requests, for they were always so exceedingly definite, and put forward with such a quiet air of mastery. I felt, however, that when Whitney was once confined in the cab my mission was practically accomplished; and for the rest, I could not wish anything better than to be associated with my friend in one of those singular adventures which were the normal condition of his existence. In a few minutes I had written my note, paid Whitney's bill, led him out to the cab, and seen him driven through the darkness. In a very short time a decrepit figure had emerged from the opium den, and I was walking down the street with Sherlock Holmes. For two streets he shuffled along with a bent back and an uncertain foot. Then, glancing quickly round, he straightened himself out and burst into a hearty fit of laughter. "I suppose, Watson," said he, "that you imagine that I have added opium-smoking to cocaine injections, and all the other little weaknesses on which you have favoured me with your medical views." "I was certainly surprised to find you there." "But not more so than I to find you." "I came to find a friend." "And I to find an enemy." "An enemy?" "Yes; one of my natural enemies, or, shall I say, my natural prey. Briefly, Watson, I am in the midst of a very remarkable inquiry, and I have hoped to find a clue in the incoherent ramblings of these sots, as I have done before now. Had I been recognised in that den my life would not have been worth an hour's purchase; for I have used it before now for my own purposes, and the rascally Lascar who runs it has sworn to have vengeance upon me. There is a trap-door at the back of that building, near the corner of Paul's Wharf, which could tell some strange tales of what has passed through it upon the moonless nights." "What! You do not mean bodies?" "Ay, bodies, Watson. We should be rich men if we had 1000 pounds for every poor devil who has been done to death in that den. It is the vilest murder-trap on the whole riverside, and I fear that Neville St. Clair has entered it never to leave it more. But our trap should be here." He put his two forefingers between his teeth and whistled shrilly--a signal which was answered by a similar whistle from the distance, followed shortly by the rattle of wheels and the clink of horses' hoofs. "Now, Watson," said Holmes, as a tall dog-cart dashed up through the gloom, throwing out two golden tunnels of yellow light from its side lanterns. "You'll come with me, won't you?" "If I can be of use." "Oh, a trusty comrade is always of use; and a chronicler still more so. My room at The Cedars is a double-bedded one." "The Cedars?" "Yes; that is Mr. St. Clair's house. I am staying there while I conduct the inquiry." "Where is it, then?" "Near Lee, in Kent. We have a seven-mile drive before us." "But I am all in the dark." "Of course you are. You'll know all about it presently. Jump up here. All right, John; we shall not need you. Here's half a crown. Look out for me to-morrow, about eleven. Give her her head. So long, then!" He flicked the horse with his whip, and we dashed away through the endless succession of sombre and deserted streets, which widened gradually, until we were flying across a broad balustraded bridge, with the murky river flowing sluggishly beneath us. Beyond lay another dull wilderness of bricks and mortar, its silence broken only by the heavy, regular footfall of the policeman, or the songs and shouts of some belated party of revellers. A dull wrack was drifting slowly across the sky, and a star or two twinkled dimly here and there through the rifts of the clouds. Holmes drove in silence, with his head sunk upon his breast, and the air of a man who is lost in thought, while I sat beside him, curious to learn what this new quest might be which seemed to tax his powers so sorely, and yet afraid to break in upon the current of his thoughts. We had driven several miles, and were beginning to get to the fringe of the belt of suburban villas, when he shook himself, shrugged his shoulders, and lit up his pipe with the air of a man who has satisfied himself that he is acting for the best. "You have a grand gift of silence, Watson," said he. "It makes you quite invaluable as a companion. 'Pon my word, it is a great thing for me to have someone to talk to, for my own thoughts are not over-pleasant. I was wondering what I should say to this dear little woman to-night when she meets me at the door." "You forget that I know nothing about it." "I shall just have time to tell you the facts of the case before we get to Lee. It seems absurdly simple, and yet, somehow I can get nothing to go upon. There's plenty of thread, no doubt, but I can't get the end of it into my hand. Now, I'll state the case clearly and concisely to you, Watson, and maybe you can see a spark where all is dark to me." "Proceed, then." "Some years ago--to be definite, in May, 1884--there came to Lee a gentleman, Neville St. Clair by name, who appeared to have plenty of money. He took a large villa, laid out the grounds very nicely, and lived generally in good style. By degrees he made friends in the neighbourhood, and in 1887 he married the daughter of a local brewer, by whom he now has two children. He had no occupation, but was interested in several companies and went into town as a rule in the morning, returning by the 5:14 from Cannon Street every night. Mr. St. Clair is now thirty-seven years of age, is a man of temperate habits, a good husband, a very affectionate father, and a man who is popular with all who know him. I may add that his whole debts at the present moment, as far as we have been able to ascertain, amount to 88 pounds 10s., while he has 220 pounds standing to his credit in the Capital and Counties Bank. There is no reason, therefore, to think that money troubles have been weighing upon his mind. "Last Monday Mr. Neville St. Clair went into town rather earlier than usual, remarking before he started that he had two important commissions to perform, and that he would bring his little boy home a box of bricks. Now, by the merest chance, his wife received a telegram upon this same Monday, very shortly after his departure, to the effect that a small parcel of considerable value which she had been expecting was waiting for her at the offices of the Aberdeen Shipping Company. Now, if you are well up in your London, you will know that the office of the company is in Fresno Street, which branches out of Upper Swandam Lane, where you found me to-night. Mrs. St. Clair had her lunch, started for the City, did some shopping, proceeded to the company's office, got her packet, and found herself at exactly 4:35 walking through Swandam Lane on her way back to the station. Have you followed me so far?" "It is very clear." "If you remember, Monday was an exceedingly hot day, and Mrs. St. Clair walked slowly, glancing about in the hope of seeing a cab, as she did not like the neighbourhood in which she found herself. While she was walking in this way down Swandam Lane, she suddenly heard an ejaculation or cry, and was struck cold to see her husband looking down at her and, as it seemed to her, beckoning to her from a second-floor window. The window was open, and she distinctly saw his face, which she describes as being terribly agitated. He waved his hands frantically to her, and then vanished from the window so suddenly that it seemed to her that he had been plucked back by some irresistible force from behind. One singular point which struck her quick feminine eye was that although he wore some dark coat, such as he had started to town in, he had on neither collar nor necktie. "Convinced that something was amiss with him, she rushed down the steps--for the house was none other than the opium den in which you found me to-night--and running through the front room she attempted to ascend the stairs which led to the first floor. At the foot of the stairs, however, she met this Lascar scoundrel of whom I have spoken, who thrust her back and, aided by a Dane, who acts as assistant there, pushed her out into the street. Filled with the most maddening doubts and fears, she rushed down the lane and, by rare good-fortune, met in Fresno Street a number of constables with an inspector, all on their way to their beat. The inspector and two men accompanied her back, and in spite of the continued resistance of the proprietor, they made their way to the room in which Mr. St. Clair had last been seen. There was no sign of him there. In fact, in the whole of that floor there was no one to be found save a crippled wretch of hideous aspect, who, it seems, made his home there. Both he and the Lascar stoutly swore that no one else had been in the front room during the afternoon. So determined was their denial that the inspector was staggered, and had almost come to believe that Mrs. St. Clair had been deluded when, with a cry, she sprang at a small deal box which lay upon the table and tore the lid from it. Out there fell a cascade of children's bricks. It was the toy which he had promised to bring home. "This discovery, and the evident confusion which the cripple showed, made the inspector realise that the matter was serious. The rooms were carefully examined, and results all pointed to an abominable crime. The front room was plainly furnished as a sitting-room and led into a small bedroom, which looked out upon the back of one of the wharves. Between the wharf and the bedroom window is a narrow strip, which is dry at low tide but is covered at high tide with at least four and a half feet of water. The bedroom window was a broad one and opened from below. On examination traces of blood were to be seen upon the windowsill, and several scattered drops were visible upon the wooden floor of the bedroom. Thrust away behind a curtain in the front room were all the clothes of Mr. Neville St. Clair, with the exception of his coat. His boots, his socks, his hat, and his watch--all were there. There were no signs of violence upon any of these garments, and there were no other traces of Mr. Neville St. Clair. Out of the window he must apparently have gone for no other exit could be discovered, and the ominous bloodstains upon the sill gave little promise that he could save himself by swimming, for the tide was at its very highest at the moment of the tragedy. "And now as to the villains who seemed to be immediately implicated in the matter. The Lascar was known to be a man of the vilest antecedents, but as, by Mrs. St. Clair's story, he was known to have been at the foot of the stair within a very few seconds of her husband's appearance at the window, he could hardly have been more than an accessory to the crime. His defence was one of absolute ignorance, and he protested that he had no knowledge as to the doings of Hugh Boone, his lodger, and that he could not account in any way for the presence of the missing gentleman's clothes. "So much for the Lascar manager. Now for the sinister cripple who lives upon the second floor of the opium den, and who was certainly the last human being whose eyes rested upon Neville St. Clair. His name is Hugh Boone, and his hideous face is one which is familiar to every man who goes much to the City. He is a professional beggar, though in order to avoid the police regulations he pretends to a small trade in wax vestas. Some little distance down Threadneedle Street, upon the left-hand side, there is, as you may have remarked, a small angle in the wall. Here it is that this creature takes his daily seat, cross-legged with his tiny stock of matches on his lap, and as he is a piteous spectacle a small rain of charity descends into the greasy leather cap which lies upon the pavement beside him. I have watched the fellow more than once before ever I thought of making his professional acquaintance, and I have been surprised at the harvest which he has reaped in a short time. His appearance, you see, is so remarkable that no one can pass him without observing him. A shock of orange hair, a pale face disfigured by a horrible scar, which, by its contraction, has turned up the outer edge of his upper lip, a bulldog chin, and a pair of very penetrating dark eyes, which present a singular contrast to the colour of his hair, all mark him out from amid the common crowd of mendicants and so, too, does his wit, for he is ever ready with a reply to any piece of chaff which may be thrown at him by the passers-by. This is the man whom we now learn to have been the lodger at the opium den, and to have been the last man to see the gentleman of whom we are in quest." "But a cripple!" said I. "What could he have done single-handed against a man in the prime of life?" "He is a cripple in the sense that he walks with a limp; but in other respects he appears to be a powerful and well-nurtured man. Surely your medical experience would tell you, Watson, that weakness in one limb is often compensated for by exceptional strength in the others." "Pray continue your narrative." "Mrs. St. Clair had fainted at the sight of the blood upon the window, and she was escorted home in a cab by the police, as her presence could be of no help to them in their investigations. Inspector Barton, who had charge of the case, made a very careful examination of the premises, but without finding anything which threw any light upon the matter. One mistake had been made in not arresting Boone instantly, as he was allowed some few minutes during which he might have communicated with his friend the Lascar, but this fault was soon remedied, and he was seized and searched, without anything being found which could incriminate him. There were, it is true, some blood-stains upon his right shirt-sleeve, but he pointed to his ring-finger, which had been cut near the nail, and explained that the bleeding came from there, adding that he had been to the window not long before, and that the stains which had been observed there came doubtless from the same source. He denied strenuously having ever seen Mr. Neville St. Clair and swore that the presence of the clothes in his room was as much a mystery to him as to the police. As to Mrs. St. Clair's assertion that she had actually seen her husband at the window, he declared that she must have been either mad or dreaming. He was removed, loudly protesting, to the police-station, while the inspector remained upon the premises in the hope that the ebbing tide might afford some fresh clue. "And it did, though they hardly found upon the mud-bank what they had feared to find. It was Neville St. Clair's coat, and not Neville St. Clair, which lay uncovered as the tide receded. And what do you think they found in the pockets?" "I cannot imagine." "No, I don't think you would guess. Every pocket stuffed with pennies and half-pennies--421 pennies and 270 half-pennies. It was no wonder that it had not been swept away by the tide. But a human body is a different matter. There is a fierce eddy between the wharf and the house. It seemed likely enough that the weighted coat had remained when the stripped body had been sucked away into the river." "But I understand that all the other clothes were found in the room. Would the body be dressed in a coat alone?" "No, sir, but the facts might be met speciously enough. Suppose that this man Boone had thrust Neville St. Clair through the window, there is no human eye which could have seen the deed. What would he do then? It would of course instantly strike him that he must get rid of the tell-tale garments. He would seize the coat, then, and be in the act of throwing it out, when it would occur to him that it would swim and not sink. He has little time, for he has heard the scuffle downstairs when the wife tried to force her way up, and perhaps he has already heard from his Lascar confederate that the police are hurrying up the street. There is not an instant to be lost. He rushes to some secret hoard, where he has accumulated the fruits of his beggary, and he stuffs all the coins upon which he can lay his hands into the pockets to make sure of the coat's sinking. He throws it out, and would have done the same with the other garments had not he heard the rush of steps below, and only just had time to close the window when the police appeared." "It certainly sounds feasible." "Well, we will take it as a working hypothesis for want of a better. Boone, as I have told you, was arrested and taken to the station, but it could not be shown that there had ever before been anything against him. He had for years been known as a professional beggar, but his life appeared to have been a very quiet and innocent one. There the matter stands at present, and the questions which have to be solved--what Neville St. Clair was doing in the opium den, what happened to him when there, where is he now, and what Hugh Boone had to do with his disappearance--are all as far from a solution as ever. I confess that I cannot recall any case within my experience which looked at the first glance so simple and yet which presented such difficulties." While Sherlock Holmes had been detailing this singular series of events, we had been whirling through the outskirts of the great town until the last straggling houses had been left behind, and we rattled along with a country hedge upon either side of us. Just as he finished, however, we drove through two scattered villages, where a few lights still glimmered in the windows. "We are on the outskirts of Lee," said my companion. "We have touched on three English counties in our short drive, starting in Middlesex, passing over an angle of Surrey, and ending in Kent. See that light among the trees? That is The Cedars, and beside that lamp sits a woman whose anxious ears have already, I have little doubt, caught the clink of our horse's feet." "But why are you not conducting the case from Baker Street?" I asked. "Because there are many inquiries which must be made out here. Mrs. St. Clair has most kindly put two rooms at my disposal, and you may rest assured that she will have nothing but a welcome for my friend and colleague. I hate to meet her, Watson, when I have no news of her husband. Here we are. Whoa, there, whoa!" We had pulled up in front of a large villa which stood within its own grounds. A stable-boy had run out to the horse's head, and springing down, I followed Holmes up the small, winding gravel-drive which led to the house. As we approached, the door flew open, and a little blonde woman stood in the opening, clad in some sort of light mousseline de soie, with a touch of fluffy pink chiffon at her neck and wrists. She stood with her figure outlined against the flood of light, one hand upon the door, one half-raised in her eagerness, her body slightly bent, her head and face protruded, with eager eyes and parted lips, a standing question. "Well?" she cried, "well?" And then, seeing that there were two of us, she gave a cry of hope which sank into a groan as she saw that my companion shook his head and shrugged his shoulders. "No good news?" "None." "No bad?" "No." "Thank God for that. But come in. You must be weary, for you have had a long day." "This is my friend, Dr. Watson. He has been of most vital use to me in several of my cases, and a lucky chance has made it possible for me to bring him out and associate him with this investigation." "I am delighted to see you," said she, pressing my hand warmly. "You will, I am sure, forgive anything that may be wanting in our arrangements, when you consider the blow which has come so suddenly upon us." "My dear madam," said I, "I am an old campaigner, and if I were not I can very well see that no apology is needed. If I can be of any assistance, either to you or to my friend here, I shall be indeed happy." "Now, Mr. Sherlock Holmes," said the lady as we entered a well-lit dining-room, upon the table of which a cold supper had been laid out, "I should very much like to ask you one or two plain questions, to which I beg that you will give a plain answer." "Certainly, madam." "Do not trouble about my feelings. I am not hysterical, nor given to fainting. I simply wish to hear your real, real opinion." "Upon what point?" "In your heart of hearts, do you think that Neville is alive?" Sherlock Holmes seemed to be embarrassed by the question. "Frankly, now!" she repeated, standing upon the rug and looking keenly down at him as he leaned back in a basket-chair. "Frankly, then, madam, I do not." "You think that he is dead?" "I do." "Murdered?" "I don't say that. Perhaps." "And on what day did he meet his death?" "On Monday." "Then perhaps, Mr. Holmes, you will be good enough to explain how it is that I have received a letter from him to-day." Sherlock Holmes sprang out of his chair as if he had been galvanised. "What!" he roared. "Yes, to-day." She stood smiling, holding up a little slip of paper in the air. "May I see it?" "Certainly." He snatched it from her in his eagerness, and smoothing it out upon the table he drew over the lamp and examined it intently. I had left my chair and was gazing at it over his shoulder. The envelope was a very coarse one and was stamped with the Gravesend postmark and with the date of that very day, or rather of the day before, for it was considerably after midnight. "Coarse writing," murmured Holmes. "Surely this is not your husband's writing, madam." "No, but the enclosure is." "I perceive also that whoever addressed the envelope had to go and inquire as to the address." "How can you tell that?" "The name, you see, is in perfectly black ink, which has dried itself. The rest is of the greyish colour, which shows that blotting-paper has been used. If it had been written straight off, and then blotted, none would be of a deep black shade. This man has written the name, and there has then been a pause before he wrote the address, which can only mean that he was not familiar with it. It is, of course, a trifle, but there is nothing so important as trifles. Let us now see the letter. Ha! there has been an enclosure here!" "Yes, there was a ring. His signet-ring." "And you are sure that this is your husband's hand?" "One of his hands." "One?" "His hand when he wrote hurriedly. It is very unlike his usual writing, and yet I know it well." "'Dearest do not be frightened. All will come well. There is a huge error which it may take some little time to rectify. Wait in patience.--NEVILLE.' Written in pencil upon the fly-leaf of a book, octavo size, no water-mark. Hum! Posted to-day in Gravesend by a man with a dirty thumb. Ha! And the flap has been gummed, if I am not very much in error, by a person who had been chewing tobacco. And you have no doubt that it is your husband's hand, madam?" "None. Neville wrote those words." "And they were posted to-day at Gravesend. Well, Mrs. St. Clair, the clouds lighten, though I should not venture to say that the danger is over." "But he must be alive, Mr. Holmes." "Unless this is a clever forgery to put us on the wrong scent. The ring, after all, proves nothing. It may have been taken from him." "No, no; it is, it is his very own writing!" "Very well. It may, however, have been written on Monday and only posted to-day." "That is possible." "If so, much may have happened between." "Oh, you must not discourage me, Mr. Holmes. I know that all is well with him. There is so keen a sympathy between us that I should know if evil came upon him. On the very day that I saw him last he cut himself in the bedroom, and yet I in the dining-room rushed upstairs instantly with the utmost certainty that something had happened. Do you think that I would respond to such a trifle and yet be ignorant of his death?" "I have seen too much not to know that the impression of a woman may be more valuable than the conclusion of an analytical reasoner. And in this letter you certainly have a very strong piece of evidence to corroborate your view. But if your husband is alive and able to write letters, why should he remain away from you?" "I cannot imagine. It is unthinkable." "And on Monday he made no remarks before leaving you?" "No." "And you were surprised to see him in Swandam Lane?" "Very much so." "Was the window open?" "Yes." "Then he might have called to you?" "He might." "He only, as I understand, gave an inarticulate cry?" "Yes." "A call for help, you thought?" "Yes. He waved his hands." "But it might have been a cry of surprise. Astonishment at the unexpected sight of you might cause him to throw up his hands?" "It is possible." "And you thought he was pulled back?" "He disappeared so suddenly." "He might have leaped back. You did not see anyone else in the room?" "No, but this horrible man confessed to having been there, and the Lascar was at the foot of the stairs." "Quite so. Your husband, as far as you could see, had his ordinary clothes on?" "But without his collar or tie. I distinctly saw his bare throat." "Had he ever spoken of Swandam Lane?" "Never." "Had he ever showed any signs of having taken opium?" "Never." "Thank you, Mrs. St. Clair. Those are the principal points about which I wished to be absolutely clear. We shall now have a little supper and then retire, for we may have a very busy day to-morrow." A large and comfortable double-bedded room had been placed at our disposal, and I was quickly between the sheets, for I was weary after my night of adventure. Sherlock Holmes was a man, however, who, when he had an unsolved problem upon his mind, would go for days, and even for a week, without rest, turning it over, rearranging his facts, looking at it from every point of view until he had either fathomed it or convinced himself that his data were insufficient. It was soon evident to me that he was now preparing for an all-night sitting. He took off his coat and waistcoat, put on a large blue dressing-gown, and then wandered about the room collecting pillows from his bed and cushions from the sofa and armchairs. With these he constructed a sort of Eastern divan, upon which he perched himself cross-legged, with an ounce of shag tobacco and a box of matches laid out in front of him. In the dim light of the lamp I saw him sitting there, an old briar pipe between his lips, his eyes fixed vacantly upon the corner of the ceiling, the blue smoke curling up from him, silent, motionless, with the light shining upon his strong-set aquiline features. So he sat as I dropped off to sleep, and so he sat when a sudden ejaculation caused me to wake up, and I found the summer sun shining into the apartment. The pipe was still between his lips, the smoke still curled upward, and the room was full of a dense tobacco haze, but nothing remained of the heap of shag which I had seen upon the previous night. "Awake, Watson?" he asked. "Yes." "Game for a morning drive?" "Certainly." "Then dress. No one is stirring yet, but I know where the stable-boy sleeps, and we shall soon have the trap out." He chuckled to himself as he spoke, his eyes twinkled, and he seemed a different man to the sombre thinker of the previous night. As I dressed I glanced at my watch. It was no wonder that no one was stirring. It was twenty-five minutes past four. I had hardly finished when Holmes returned with the news that the boy was putting in the horse. "I want to test a little theory of mine," said he, pulling on his boots. "I think, Watson, that you are now standing in the presence of one of the most absolute fools in Europe. I deserve to be kicked from here to Charing Cross. But I think I have the key of the affair now." "And where is it?" I asked, smiling. "In the bathroom," he answered. "Oh, yes, I am not joking," he continued, seeing my look of incredulity. "I have just been there, and I have taken it out, and I have got it in this Gladstone bag. Come on, my boy, and we shall see whether it will not fit the lock." We made our way downstairs as quietly as possible, and out into the bright morning sunshine. In the road stood our horse and trap, with the half-clad stable-boy waiting at the head. We both sprang in, and away we dashed down the London Road. A few country carts were stirring, bearing in vegetables to the metropolis, but the lines of villas on either side were as silent and lifeless as some city in a dream. "It has been in some points a singular case," said Holmes, flicking the horse on into a gallop. "I confess that I have been as blind as a mole, but it is better to learn wisdom late than never to learn it at all." In town the earliest risers were just beginning to look sleepily from their windows as we drove through the streets of the Surrey side. Passing down the Waterloo Bridge Road we crossed over the river, and dashing up Wellington Street wheeled sharply to the right and found ourselves in Bow Street. Sherlock Holmes was well known to the force, and the two constables at the door saluted him. One of them held the horse's head while the other led us in. "Who is on duty?" asked Holmes. "Inspector Bradstreet, sir." "Ah, Bradstreet, how are you?" A tall, stout official had come down the stone-flagged passage, in a peaked cap and frogged jacket. "I wish to have a quiet word with you, Bradstreet." "Certainly, Mr. Holmes. Step into my room here." It was a small, office-like room, with a huge ledger upon the table, and a telephone projecting from the wall. The inspector sat down at his desk. "What can I do for you, Mr. Holmes?" "I called about that beggarman, Boone--the one who was charged with being concerned in the disappearance of Mr. Neville St. Clair, of Lee." "Yes. He was brought up and remanded for further inquiries." "So I heard. You have him here?" "In the cells." "Is he quiet?" "Oh, he gives no trouble. But he is a dirty scoundrel." "Dirty?" "Yes, it is all we can do to make him wash his hands, and his face is as black as a tinker's. Well, when once his case has been settled, he will have a regular prison bath; and I think, if you saw him, you would agree with me that he needed it." "I should like to see him very much." "Would you? That is easily done. Come this way. You can leave your bag." "No, I think that I'll take it." "Very good. Come this way, if you please." He led us down a passage, opened a barred door, passed down a winding stair, and brought us to a whitewashed corridor with a line of doors on each side. "The third on the right is his," said the inspector. "Here it is!" He quietly shot back a panel in the upper part of the door and glanced through. "He is asleep," said he. "You can see him very well." We both put our eyes to the grating. The prisoner lay with his face towards us, in a very deep sleep, breathing slowly and heavily. He was a middle-sized man, coarsely clad as became his calling, with a coloured shirt protruding through the rent in his tattered coat. He was, as the inspector had said, extremely dirty, but the grime which covered his face could not conceal its repulsive ugliness. A broad wheal from an old scar ran right across it from eye to chin, and by its contraction had turned up one side of the upper lip, so that three teeth were exposed in a perpetual snarl. A shock of very bright red hair grew low over his eyes and forehead. "He's a beauty, isn't he?" said the inspector. "He certainly needs a wash," remarked Holmes. "I had an idea that he might, and I took the liberty of bringing the tools with me." He opened the Gladstone bag as he spoke, and took out, to my astonishment, a very large bath-sponge. "He! he! You are a funny one," chuckled the inspector. "Now, if you will have the great goodness to open that door very quietly, we will soon make him cut a much more respectable figure." "Well, I don't know why not," said the inspector. "He doesn't look a credit to the Bow Street cells, does he?" He slipped his key into the lock, and we all very quietly entered the cell. The sleeper half turned, and then settled down once more into a deep slumber. Holmes stooped to the water-jug, moistened his sponge, and then rubbed it twice vigorously across and down the prisoner's face. "Let me introduce you," he shouted, "to Mr. Neville St. Clair, of Lee, in the county of Kent." Never in my life have I seen such a sight. The man's face peeled off under the sponge like the bark from a tree. Gone was the coarse brown tint! Gone, too, was the horrid scar which had seamed it across, and the twisted lip which had given the repulsive sneer to the face! A twitch brought away the tangled red hair, and there, sitting up in his bed, was a pale, sad-faced, refined-looking man, black-haired and smooth-skinned, rubbing his eyes and staring about him with sleepy bewilderment. Then suddenly realising the exposure, he broke into a scream and threw himself down with his face to the pillow. "Great heavens!" cried the inspector, "it is, indeed, the missing man. I know him from the photograph." The prisoner turned with the reckless air of a man who abandons himself to his destiny. "Be it so," said he. "And pray what am I charged with?" "With making away with Mr. Neville St.-- Oh, come, you can't be charged with that unless they make a case of attempted suicide of it," said the inspector with a grin. "Well, I have been twenty-seven years in the force, but this really takes the cake." "If I am Mr. Neville St. Clair, then it is obvious that no crime has been committed, and that, therefore, I am illegally detained." "No crime, but a very great error has been committed," said Holmes. "You would have done better to have trusted your wife." "It was not the wife; it was the children," groaned the prisoner. "God help me, I would not have them ashamed of their father. My God! What an exposure! What can I do?" Sherlock Holmes sat down beside him on the couch and patted him kindly on the shoulder. "If you leave it to a court of law to clear the matter up," said he, "of course you can hardly avoid publicity. On the other hand, if you convince the police authorities that there is no possible case against you, I do not know that there is any reason that the details should find their way into the papers. Inspector Bradstreet would, I am sure, make notes upon anything which you might tell us and submit it to the proper authorities. The case would then never go into court at all." "God bless you!" cried the prisoner passionately. "I would have endured imprisonment, ay, even execution, rather than have left my miserable secret as a family blot to my children. "You are the first who have ever heard my story. My father was a schoolmaster in Chesterfield, where I received an excellent education. I travelled in my youth, took to the stage, and finally became a reporter on an evening paper in London. One day my editor wished to have a series of articles upon begging in the metropolis, and I volunteered to supply them. There was the point from which all my adventures started. It was only by trying begging as an amateur that I could get the facts upon which to base my articles. When an actor I had, of course, learned all the secrets of making up, and had been famous in the green-room for my skill. I took advantage now of my attainments. I painted my face, and to make myself as pitiable as possible I made a good scar and fixed one side of my lip in a twist by the aid of a small slip of flesh-coloured plaster. Then with a red head of hair, and an appropriate dress, I took my station in the business part of the city, ostensibly as a match-seller but really as a beggar. For seven hours I plied my trade, and when I returned home in the evening I found to my surprise that I had received no less than 26s. 4d. "I wrote my articles and thought little more of the matter until, some time later, I backed a bill for a friend and had a writ served upon me for 25 pounds. I was at my wit's end where to get the money, but a sudden idea came to me. I begged a fortnight's grace from the creditor, asked for a holiday from my employers, and spent the time in begging in the City under my disguise. In ten days I had the money and had paid the debt. "Well, you can imagine how hard it was to settle down to arduous work at 2 pounds a week when I knew that I could earn as much in a day by smearing my face with a little paint, laying my cap on the ground, and sitting still. It was a long fight between my pride and the money, but the dollars won at last, and I threw up reporting and sat day after day in the corner which I had first chosen, inspiring pity by my ghastly face and filling my pockets with coppers. Only one man knew my secret. He was the keeper of a low den in which I used to lodge in Swandam Lane, where I could every morning emerge as a squalid beggar and in the evenings transform myself into a well-dressed man about town. This fellow, a Lascar, was well paid by me for his rooms, so that I knew that my secret was safe in his possession. "Well, very soon I found that I was saving considerable sums of money. I do not mean that any beggar in the streets of London could earn 700 pounds a year--which is less than my average takings--but I had exceptional advantages in my power of making up, and also in a facility of repartee, which improved by practice and made me quite a recognised character in the City. All day a stream of pennies, varied by silver, poured in upon me, and it was a very bad day in which I failed to take 2 pounds. "As I grew richer I grew more ambitious, took a house in the country, and eventually married, without anyone having a suspicion as to my real occupation. My dear wife knew that I had business in the City. She little knew what. "Last Monday I had finished for the day and was dressing in my room above the opium den when I looked out of my window and saw, to my horror and astonishment, that my wife was standing in the street, with her eyes fixed full upon me. I gave a cry of surprise, threw up my arms to cover my face, and, rushing to my confidant, the Lascar, entreated him to prevent anyone from coming up to me. I heard her voice downstairs, but I knew that she could not ascend. Swiftly I threw off my clothes, pulled on those of a beggar, and put on my pigments and wig. Even a wife's eyes could not pierce so complete a disguise. But then it occurred to me that there might be a search in the room, and that the clothes might betray me. I threw open the window, reopening by my violence a small cut which I had inflicted upon myself in the bedroom that morning. Then I seized my coat, which was weighted by the coppers which I had just transferred to it from the leather bag in which I carried my takings. I hurled it out of the window, and it disappeared into the Thames. The other clothes would have followed, but at that moment there was a rush of constables up the stair, and a few minutes after I found, rather, I confess, to my relief, that instead of being identified as Mr. Neville St. Clair, I was arrested as his murderer. "I do not know that there is anything else for me to explain. I was determined to preserve my disguise as long as possible, and hence my preference for a dirty face. Knowing that my wife would be terribly anxious, I slipped off my ring and confided it to the Lascar at a moment when no constable was watching me, together with a hurried scrawl, telling her that she had no cause to fear." "That note only reached her yesterday," said Holmes. "Good God! What a week she must have spent!" "The police have watched this Lascar," said Inspector Bradstreet, "and I can quite understand that he might find it difficult to post a letter unobserved. Probably he handed it to some sailor customer of his, who forgot all about it for some days." "That was it," said Holmes, nodding approvingly; "I have no doubt of it. But have you never been prosecuted for begging?" "Many times; but what was a fine to me?" "It must stop here, however," said Bradstreet. "If the police are to hush this thing up, there must be no more of Hugh Boone." "I have sworn it by the most solemn oaths which a man can take." "In that case I think that it is probable that no further steps may be taken. But if you are found again, then all must come out. I am sure, Mr. Holmes, that we are very much indebted to you for having cleared the matter up. I wish I knew how you reach your results." "I reached this one," said my friend, "by sitting upon five pillows and consuming an ounce of shag. I think, Watson, that if we drive to Baker Street we shall just be in time for breakfast." VII. THE ADVENTURE OF THE BLUE CARBUNCLE I had called upon my friend Sherlock Holmes upon the second morning after Christmas, with the intention of wishing him the compliments of the season. He was lounging upon the sofa in a purple dressing-gown, a pipe-rack within his reach upon the right, and a pile of crumpled morning papers, evidently newly studied, near at hand. Beside the couch was a wooden chair, and on the angle of the back hung a very seedy and disreputable hard-felt hat, much the worse for wear, and cracked in several places. A lens and a forceps lying upon the seat of the chair suggested that the hat had been suspended in this manner for the purpose of examination. "You are engaged," said I; "perhaps I interrupt you." "Not at all. I am glad to have a friend with whom I can discuss my results. The matter is a perfectly trivial one"--he jerked his thumb in the direction of the old hat--"but there are points in connection with it which are not entirely devoid of interest and even of instruction." I seated myself in his armchair and warmed my hands before his crackling fire, for a sharp frost had set in, and the windows were thick with the ice crystals. "I suppose," I remarked, "that, homely as it looks, this thing has some deadly story linked on to it--that it is the clue which will guide you in the solution of some mystery and the punishment of some crime." "No, no. No crime," said Sherlock Holmes, laughing. "Only one of those whimsical little incidents which will happen when you have four million human beings all jostling each other within the space of a few square miles. Amid the action and reaction of so dense a swarm of humanity, every possible combination of events may be expected to take place, and many a little problem will be presented which may be striking and bizarre without being criminal. We have already had experience of such." "So much so," I remarked, "that of the last six cases which I have added to my notes, three have been entirely free of any legal crime." "Precisely. You allude to my attempt to recover the Irene Adler papers, to the singular case of Miss Mary Sutherland, and to the adventure of the man with the twisted lip. Well, I have no doubt that this small matter will fall into the same innocent category. You know Peterson, the commissionaire?" "Yes." "It is to him that this trophy belongs." "It is his hat." "No, no, he found it. Its owner is unknown. I beg that you will look upon it not as a battered billycock but as an intellectual problem. And, first, as to how it came here. It arrived upon Christmas morning, in company with a good fat goose, which is, I have no doubt, roasting at this moment in front of Peterson's fire. The facts are these: about four o'clock on Christmas morning, Peterson, who, as you know, is a very honest fellow, was returning from some small jollification and was making his way homeward down Tottenham Court Road. In front of him he saw, in the gaslight, a tallish man, walking with a slight stagger, and carrying a white goose slung over his shoulder. As he reached the corner of Goodge Street, a row broke out between this stranger and a little knot of roughs. One of the latter knocked off the man's hat, on which he raised his stick to defend himself and, swinging it over his head, smashed the shop window behind him. Peterson had rushed forward to protect the stranger from his assailants; but the man, shocked at having broken the window, and seeing an official-looking person in uniform rushing towards him, dropped his goose, took to his heels, and vanished amid the labyrinth of small streets which lie at the back of Tottenham Court Road. The roughs had also fled at the appearance of Peterson, so that he was left in possession of the field of battle, and also of the spoils of victory in the shape of this battered hat and a most unimpeachable Christmas goose." "Which surely he restored to their owner?" "My dear fellow, there lies the problem. It is true that 'For Mrs. Henry Baker' was printed upon a small card which was tied to the bird's left leg, and it is also true that the initials 'H. B.' are legible upon the lining of this hat, but as there are some thousands of Bakers, and some hundreds of Henry Bakers in this city of ours, it is not easy to restore lost property to any one of them." "What, then, did Peterson do?" "He brought round both hat and goose to me on Christmas morning, knowing that even the smallest problems are of interest to me. The goose we retained until this morning, when there were signs that, in spite of the slight frost, it would be well that it should be eaten without unnecessary delay. Its finder has carried it off, therefore, to fulfil the ultimate destiny of a goose, while I continue to retain the hat of the unknown gentleman who lost his Christmas dinner." "Did he not advertise?" "No." "Then, what clue could you have as to his identity?" "Only as much as we can deduce." "From his hat?" "Precisely." "But you are joking. What can you gather from this old battered felt?" "Here is my lens. You know my methods. What can you gather yourself as to the individuality of the man who has worn this article?" I took the tattered object in my hands and turned it over rather ruefully. It was a very ordinary black hat of the usual round shape, hard and much the worse for wear. The lining had been of red silk, but was a good deal discoloured. There was no maker's name; but, as Holmes had remarked, the initials "H. B." were scrawled upon one side. It was pierced in the brim for a hat-securer, but the elastic was missing. For the rest, it was cracked, exceedingly dusty, and spotted in several places, although there seemed to have been some attempt to hide the discoloured patches by smearing them with ink. "I can see nothing," said I, handing it back to my friend. "On the contrary, Watson, you can see everything. You fail, however, to reason from what you see. You are too timid in drawing your inferences." "Then, pray tell me what it is that you can infer from this hat?" He picked it up and gazed at it in the peculiar introspective fashion which was characteristic of him. "It is perhaps less suggestive than it might have been," he remarked, "and yet there are a few inferences which are very distinct, and a few others which represent at least a strong balance of probability. That the man was highly intellectual is of course obvious upon the face of it, and also that he was fairly well-to-do within the last three years, although he has now fallen upon evil days. He had foresight, but has less now than formerly, pointing to a moral retrogression, which, when taken with the decline of his fortunes, seems to indicate some evil influence, probably drink, at work upon him. This may account also for the obvious fact that his wife has ceased to love him." "My dear Holmes!" "He has, however, retained some degree of self-respect," he continued, disregarding my remonstrance. "He is a man who leads a sedentary life, goes out little, is out of training entirely, is middle-aged, has grizzled hair which he has had cut within the last few days, and which he anoints with lime-cream. These are the more patent facts which are to be deduced from his hat. Also, by the way, that it is extremely improbable that he has gas laid on in his house." "You are certainly joking, Holmes." "Not in the least. Is it possible that even now, when I give you these results, you are unable to see how they are attained?" "I have no doubt that I am very stupid, but I must confess that I am unable to follow you. For example, how did you deduce that this man was intellectual?" For answer Holmes clapped the hat upon his head. It came right over the forehead and settled upon the bridge of his nose. "It is a question of cubic capacity," said he; "a man with so large a brain must have something in it." "The decline of his fortunes, then?" "This hat is three years old. These flat brims curled at the edge came in then. It is a hat of the very best quality. Look at the band of ribbed silk and the excellent lining. If this man could afford to buy so expensive a hat three years ago, and has had no hat since, then he has assuredly gone down in the world." "Well, that is clear enough, certainly. But how about the foresight and the moral retrogression?" Sherlock Holmes laughed. "Here is the foresight," said he putting his finger upon the little disc and loop of the hat-securer. "They are never sold upon hats. If this man ordered one, it is a sign of a certain amount of foresight, since he went out of his way to take this precaution against the wind. But since we see that he has broken the elastic and has not troubled to replace it, it is obvious that he has less foresight now than formerly, which is a distinct proof of a weakening nature. On the other hand, he has endeavoured to conceal some of these stains upon the felt by daubing them with ink, which is a sign that he has not entirely lost his self-respect." "Your reasoning is certainly plausible." "The further points, that he is middle-aged, that his hair is grizzled, that it has been recently cut, and that he uses lime-cream, are all to be gathered from a close examination of the lower part of the lining. The lens discloses a large number of hair-ends, clean cut by the scissors of the barber. They all appear to be adhesive, and there is a distinct odour of lime-cream. This dust, you will observe, is not the gritty, grey dust of the street but the fluffy brown dust of the house, showing that it has been hung up indoors most of the time, while the marks of moisture upon the inside are proof positive that the wearer perspired very freely, and could therefore, hardly be in the best of training." "But his wife--you said that she had ceased to love him." "This hat has not been brushed for weeks. When I see you, my dear Watson, with a week's accumulation of dust upon your hat, and when your wife allows you to go out in such a state, I shall fear that you also have been unfortunate enough to lose your wife's affection." "But he might be a bachelor." "Nay, he was bringing home the goose as a peace-offering to his wife. Remember the card upon the bird's leg." "You have an answer to everything. But how on earth do you deduce that the gas is not laid on in his house?" "One tallow stain, or even two, might come by chance; but when I see no less than five, I think that there can be little doubt that the individual must be brought into frequent contact with burning tallow--walks upstairs at night probably with his hat in one hand and a guttering candle in the other. Anyhow, he never got tallow-stains from a gas-jet. Are you satisfied?" "Well, it is very ingenious," said I, laughing; "but since, as you said just now, there has been no crime committed, and no harm done save the loss of a goose, all this seems to be rather a waste of energy." Sherlock Holmes had opened his mouth to reply, when the door flew open, and Peterson, the commissionaire, rushed into the apartment with flushed cheeks and the face of a man who is dazed with astonishment. "The goose, Mr. Holmes! The goose, sir!" he gasped. "Eh? What of it, then? Has it returned to life and flapped off through the kitchen window?" Holmes twisted himself round upon the sofa to get a fairer view of the man's excited face. "See here, sir! See what my wife found in its crop!" He held out his hand and displayed upon the centre of the palm a brilliantly scintillating blue stone, rather smaller than a bean in size, but of such purity and radiance that it twinkled like an electric point in the dark hollow of his hand. Sherlock Holmes sat up with a whistle. "By Jove, Peterson!" said he, "this is treasure trove indeed. I suppose you know what you have got?" "A diamond, sir? A precious stone. It cuts into glass as though it were putty." "It's more than a precious stone. It is the precious stone." "Not the Countess of Morcar's blue carbuncle!" I ejaculated. "Precisely so. I ought to know its size and shape, seeing that I have read the advertisement about it in The Times every day lately. It is absolutely unique, and its value can only be conjectured, but the reward offered of 1000 pounds is certainly not within a twentieth part of the market price." "A thousand pounds! Great Lord of mercy!" The commissionaire plumped down into a chair and stared from one to the other of us. "That is the reward, and I have reason to know that there are sentimental considerations in the background which would induce the Countess to part with half her fortune if she could but recover the gem." "It was lost, if I remember aright, at the Hotel Cosmopolitan," I remarked. "Precisely so, on December 22nd, just five days ago. John Horner, a plumber, was accused of having abstracted it from the lady's jewel-case. The evidence against him was so strong that the case has been referred to the Assizes. I have some account of the matter here, I believe." He rummaged amid his newspapers, glancing over the dates, until at last he smoothed one out, doubled it over, and read the following paragraph: "Hotel Cosmopolitan Jewel Robbery. John Horner, 26, plumber, was brought up upon the charge of having upon the 22nd inst., abstracted from the jewel-case of the Countess of Morcar the valuable gem known as the blue carbuncle. James Ryder, upper-attendant at the hotel, gave his evidence to the effect that he had shown Horner up to the dressing-room of the Countess of Morcar upon the day of the robbery in order that he might solder the second bar of the grate, which was loose. He had remained with Horner some little time, but had finally been called away. On returning, he found that Horner had disappeared, that the bureau had been forced open, and that the small morocco casket in which, as it afterwards transpired, the Countess was accustomed to keep her jewel, was lying empty upon the dressing-table. Ryder instantly gave the alarm, and Horner was arrested the same evening; but the stone could not be found either upon his person or in his rooms. Catherine Cusack, maid to the Countess, deposed to having heard Ryder's cry of dismay on discovering the robbery, and to having rushed into the room, where she found matters as described by the last witness. Inspector Bradstreet, B division, gave evidence as to the arrest of Horner, who struggled frantically, and protested his innocence in the strongest terms. Evidence of a previous conviction for robbery having been given against the prisoner, the magistrate refused to deal summarily with the offence, but referred it to the Assizes. Horner, who had shown signs of intense emotion during the proceedings, fainted away at the conclusion and was carried out of court." "Hum! So much for the police-court," said Holmes thoughtfully, tossing aside the paper. "The question for us now to solve is the sequence of events leading from a rifled jewel-case at one end to the crop of a goose in Tottenham Court Road at the other. You see, Watson, our little deductions have suddenly assumed a much more important and less innocent aspect. Here is the stone; the stone came from the goose, and the goose came from Mr. Henry Baker, the gentleman with the bad hat and all the other characteristics with which I have bored you. So now we must set ourselves very seriously to finding this gentleman and ascertaining what part he has played in this little mystery. To do this, we must try the simplest means first, and these lie undoubtedly in an advertisement in all the evening papers. If this fail, I shall have recourse to other methods." "What will you say?" "Give me a pencil and that slip of paper. Now, then: 'Found at the corner of Goodge Street, a goose and a black felt hat. Mr. Henry Baker can have the same by applying at 6:30 this evening at 221B, Baker Street.' That is clear and concise." "Very. But will he see it?" "Well, he is sure to keep an eye on the papers, since, to a poor man, the loss was a heavy one. He was clearly so scared by his mischance in breaking the window and by the approach of Peterson that he thought of nothing but flight, but since then he must have bitterly regretted the impulse which caused him to drop his bird. Then, again, the introduction of his name will cause him to see it, for everyone who knows him will direct his attention to it. Here you are, Peterson, run down to the advertising agency and have this put in the evening papers." "In which, sir?" "Oh, in the Globe, Star, Pall Mall, St. James's, Evening News, Standard, Echo, and any others that occur to you." "Very well, sir. And this stone?" "Ah, yes, I shall keep the stone. Thank you. And, I say, Peterson, just buy a goose on your way back and leave it here with me, for we must have one to give to this gentleman in place of the one which your family is now devouring." When the commissionaire had gone, Holmes took up the stone and held it against the light. "It's a bonny thing," said he. "Just see how it glints and sparkles. Of course it is a nucleus and focus of crime. Every good stone is. They are the devil's pet baits. In the larger and older jewels every facet may stand for a bloody deed. This stone is not yet twenty years old. It was found in the banks of the Amoy River in southern China and is remarkable in having every characteristic of the carbuncle, save that it is blue in shade instead of ruby red. In spite of its youth, it has already a sinister history. There have been two murders, a vitriol-throwing, a suicide, and several robberies brought about for the sake of this forty-grain weight of crystallised charcoal. Who would think that so pretty a toy would be a purveyor to the gallows and the prison? I'll lock it up in my strong box now and drop a line to the Countess to say that we have it." "Do you think that this man Horner is innocent?" "I cannot tell." "Well, then, do you imagine that this other one, Henry Baker, had anything to do with the matter?" "It is, I think, much more likely that Henry Baker is an absolutely innocent man, who had no idea that the bird which he was carrying was of considerably more value than if it were made of solid gold. That, however, I shall determine by a very simple test if we have an answer to our advertisement." "And you can do nothing until then?" "Nothing." "In that case I shall continue my professional round. But I shall come back in the evening at the hour you have mentioned, for I should like to see the solution of so tangled a business." "Very glad to see you. I dine at seven. There is a woodcock, I believe. By the way, in view of recent occurrences, perhaps I ought to ask Mrs. Hudson to examine its crop." I had been delayed at a case, and it was a little after half-past six when I found myself in Baker Street once more. As I approached the house I saw a tall man in a Scotch bonnet with a coat which was buttoned up to his chin waiting outside in the bright semicircle which was thrown from the fanlight. Just as I arrived the door was opened, and we were shown up together to Holmes' room. "Mr. Henry Baker, I believe," said he, rising from his armchair and greeting his visitor with the easy air of geniality which he could so readily assume. "Pray take this chair by the fire, Mr. Baker. It is a cold night, and I observe that your circulation is more adapted for summer than for winter. Ah, Watson, you have just come at the right time. Is that your hat, Mr. Baker?" "Yes, sir, that is undoubtedly my hat." He was a large man with rounded shoulders, a massive head, and a broad, intelligent face, sloping down to a pointed beard of grizzled brown. A touch of red in nose and cheeks, with a slight tremor of his extended hand, recalled Holmes' surmise as to his habits. His rusty black frock-coat was buttoned right up in front, with the collar turned up, and his lank wrists protruded from his sleeves without a sign of cuff or shirt. He spoke in a slow staccato fashion, choosing his words with care, and gave the impression generally of a man of learning and letters who had had ill-usage at the hands of fortune. "We have retained these things for some days," said Holmes, "because we expected to see an advertisement from you giving your address. I am at a loss to know now why you did not advertise." Our visitor gave a rather shamefaced laugh. "Shillings have not been so plentiful with me as they once were," he remarked. "I had no doubt that the gang of roughs who assaulted me had carried off both my hat and the bird. I did not care to spend more money in a hopeless attempt at recovering them." "Very naturally. By the way, about the bird, we were compelled to eat it." "To eat it!" Our visitor half rose from his chair in his excitement. "Yes, it would have been of no use to anyone had we not done so. But I presume that this other goose upon the sideboard, which is about the same weight and perfectly fresh, will answer your purpose equally well?" "Oh, certainly, certainly," answered Mr. Baker with a sigh of relief. "Of course, we still have the feathers, legs, crop, and so on of your own bird, so if you wish--" The man burst into a hearty laugh. "They might be useful to me as relics of my adventure," said he, "but beyond that I can hardly see what use the disjecta membra of my late acquaintance are going to be to me. No, sir, I think that, with your permission, I will confine my attentions to the excellent bird which I perceive upon the sideboard." Sherlock Holmes glanced sharply across at me with a slight shrug of his shoulders. "There is your hat, then, and there your bird," said he. "By the way, would it bore you to tell me where you got the other one from? I am somewhat of a fowl fancier, and I have seldom seen a better grown goose." "Certainly, sir," said Baker, who had risen and tucked his newly gained property under his arm. "There are a few of us who frequent the Alpha Inn, near the Museum--we are to be found in the Museum itself during the day, you understand. This year our good host, Windigate by name, instituted a goose club, by which, on consideration of some few pence every week, we were each to receive a bird at Christmas. My pence were duly paid, and the rest is familiar to you. I am much indebted to you, sir, for a Scotch bonnet is fitted neither to my years nor my gravity." With a comical pomposity of manner he bowed solemnly to both of us and strode off upon his way. "So much for Mr. Henry Baker," said Holmes when he had closed the door behind him. "It is quite certain that he knows nothing whatever about the matter. Are you hungry, Watson?" "Not particularly." "Then I suggest that we turn our dinner into a supper and follow up this clue while it is still hot." "By all means." It was a bitter night, so we drew on our ulsters and wrapped cravats about our throats. Outside, the stars were shining coldly in a cloudless sky, and the breath of the passers-by blew out into smoke like so many pistol shots. Our footfalls rang out crisply and loudly as we swung through the doctors' quarter, Wimpole Street, Harley Street, and so through Wigmore Street into Oxford Street. In a quarter of an hour we were in Bloomsbury at the Alpha Inn, which is a small public-house at the corner of one of the streets which runs down into Holborn. Holmes pushed open the door of the private bar and ordered two glasses of beer from the ruddy-faced, white-aproned landlord. "Your beer should be excellent if it is as good as your geese," said he. "My geese!" The man seemed surprised. "Yes. I was speaking only half an hour ago to Mr. Henry Baker, who was a member of your goose club." "Ah! yes, I see. But you see, sir, them's not our geese." "Indeed! Whose, then?" "Well, I got the two dozen from a salesman in Covent Garden." "Indeed? I know some of them. Which was it?" "Breckinridge is his name." "Ah! I don't know him. Well, here's your good health landlord, and prosperity to your house. Good-night." "Now for Mr. Breckinridge," he continued, buttoning up his coat as we came out into the frosty air. "Remember, Watson that though we have so homely a thing as a goose at one end of this chain, we have at the other a man who will certainly get seven years' penal servitude unless we can establish his innocence. It is possible that our inquiry may but confirm his guilt; but, in any case, we have a line of investigation which has been missed by the police, and which a singular chance has placed in our hands. Let us follow it out to the bitter end. Faces to the south, then, and quick march!" We passed across Holborn, down Endell Street, and so through a zigzag of slums to Covent Garden Market. One of the largest stalls bore the name of Breckinridge upon it, and the proprietor a horsey-looking man, with a sharp face and trim side-whiskers was helping a boy to put up the shutters. "Good-evening. It's a cold night," said Holmes. The salesman nodded and shot a questioning glance at my companion. "Sold out of geese, I see," continued Holmes, pointing at the bare slabs of marble. "Let you have five hundred to-morrow morning." "That's no good." "Well, there are some on the stall with the gas-flare." "Ah, but I was recommended to you." "Who by?" "The landlord of the Alpha." "Oh, yes; I sent him a couple of dozen." "Fine birds they were, too. Now where did you get them from?" To my surprise the question provoked a burst of anger from the salesman. "Now, then, mister," said he, with his head cocked and his arms akimbo, "what are you driving at? Let's have it straight, now." "It is straight enough. I should like to know who sold you the geese which you supplied to the Alpha." "Well then, I shan't tell you. So now!" "Oh, it is a matter of no importance; but I don't know why you should be so warm over such a trifle." "Warm! You'd be as warm, maybe, if you were as pestered as I am. When I pay good money for a good article there should be an end of the business; but it's 'Where are the geese?' and 'Who did you sell the geese to?' and 'What will you take for the geese?' One would think they were the only geese in the world, to hear the fuss that is made over them." "Well, I have no connection with any other people who have been making inquiries," said Holmes carelessly. "If you won't tell us the bet is off, that is all. But I'm always ready to back my opinion on a matter of fowls, and I have a fiver on it that the bird I ate is country bred." "Well, then, you've lost your fiver, for it's town bred," snapped the salesman. "It's nothing of the kind." "I say it is." "I don't believe it." "D'you think you know more about fowls than I, who have handled them ever since I was a nipper? I tell you, all those birds that went to the Alpha were town bred." "You'll never persuade me to believe that." "Will you bet, then?" "It's merely taking your money, for I know that I am right. But I'll have a sovereign on with you, just to teach you not to be obstinate." The salesman chuckled grimly. "Bring me the books, Bill," said he. The small boy brought round a small thin volume and a great greasy-backed one, laying them out together beneath the hanging lamp. "Now then, Mr. Cocksure," said the salesman, "I thought that I was out of geese, but before I finish you'll find that there is still one left in my shop. You see this little book?" "Well?" "That's the list of the folk from whom I buy. D'you see? Well, then, here on this page are the country folk, and the numbers after their names are where their accounts are in the big ledger. Now, then! You see this other page in red ink? Well, that is a list of my town suppliers. Now, look at that third name. Just read it out to me." "Mrs. Oakshott, 117, Brixton Road--249," read Holmes. "Quite so. Now turn that up in the ledger." Holmes turned to the page indicated. "Here you are, 'Mrs. Oakshott, 117, Brixton Road, egg and poultry supplier.'" "Now, then, what's the last entry?" "'December 22nd. Twenty-four geese at 7s. 6d.'" "Quite so. There you are. And underneath?" "'Sold to Mr. Windigate of the Alpha, at 12s.'" "What have you to say now?" Sherlock Holmes looked deeply chagrined. He drew a sovereign from his pocket and threw it down upon the slab, turning away with the air of a man whose disgust is too deep for words. A few yards off he stopped under a lamp-post and laughed in the hearty, noiseless fashion which was peculiar to him. "When you see a man with whiskers of that cut and the 'Pink 'un' protruding out of his pocket, you can always draw him by a bet," said he. "I daresay that if I had put 100 pounds down in front of him, that man would not have given me such complete information as was drawn from him by the idea that he was doing me on a wager. Well, Watson, we are, I fancy, nearing the end of our quest, and the only point which remains to be determined is whether we should go on to this Mrs. Oakshott to-night, or whether we should reserve it for to-morrow. It is clear from what that surly fellow said that there are others besides ourselves who are anxious about the matter, and I should--" His remarks were suddenly cut short by a loud hubbub which broke out from the stall which we had just left. Turning round we saw a little rat-faced fellow standing in the centre of the circle of yellow light which was thrown by the swinging lamp, while Breckinridge, the salesman, framed in the door of his stall, was shaking his fists fiercely at the cringing figure. "I've had enough of you and your geese," he shouted. "I wish you were all at the devil together. If you come pestering me any more with your silly talk I'll set the dog at you. You bring Mrs. Oakshott here and I'll answer her, but what have you to do with it? Did I buy the geese off you?" "No; but one of them was mine all the same," whined the little man. "Well, then, ask Mrs. Oakshott for it." "She told me to ask you." "Well, you can ask the King of Proosia, for all I care. I've had enough of it. Get out of this!" He rushed fiercely forward, and the inquirer flitted away into the darkness. "Ha! this may save us a visit to Brixton Road," whispered Holmes. "Come with me, and we will see what is to be made of this fellow." Striding through the scattered knots of people who lounged round the flaring stalls, my companion speedily overtook the little man and touched him upon the shoulder. He sprang round, and I could see in the gas-light that every vestige of colour had been driven from his face. "Who are you, then? What do you want?" he asked in a quavering voice. "You will excuse me," said Holmes blandly, "but I could not help overhearing the questions which you put to the salesman just now. I think that I could be of assistance to you." "You? Who are you? How could you know anything of the matter?" "My name is Sherlock Holmes. It is my business to know what other people don't know." "But you can know nothing of this?" "Excuse me, I know everything of it. You are endeavouring to trace some geese which were sold by Mrs. Oakshott, of Brixton Road, to a salesman named Breckinridge, by him in turn to Mr. Windigate, of the Alpha, and by him to his club, of which Mr. Henry Baker is a member." "Oh, sir, you are the very man whom I have longed to meet," cried the little fellow with outstretched hands and quivering fingers. "I can hardly explain to you how interested I am in this matter." Sherlock Holmes hailed a four-wheeler which was passing. "In that case we had better discuss it in a cosy room rather than in this wind-swept market-place," said he. "But pray tell me, before we go farther, who it is that I have the pleasure of assisting." The man hesitated for an instant. "My name is John Robinson," he answered with a sidelong glance. "No, no; the real name," said Holmes sweetly. "It is always awkward doing business with an alias." A flush sprang to the white cheeks of the stranger. "Well then," said he, "my real name is James Ryder." "Precisely so. Head attendant at the Hotel Cosmopolitan. Pray step into the cab, and I shall soon be able to tell you everything which you would wish to know." The little man stood glancing from one to the other of us with half-frightened, half-hopeful eyes, as one who is not sure whether he is on the verge of a windfall or of a catastrophe. Then he stepped into the cab, and in half an hour we were back in the sitting-room at Baker Street. Nothing had been said during our drive, but the high, thin breathing of our new companion, and the claspings and unclaspings of his hands, spoke of the nervous tension within him. "Here we are!" said Holmes cheerily as we filed into the room. "The fire looks very seasonable in this weather. You look cold, Mr. Ryder. Pray take the basket-chair. I will just put on my slippers before we settle this little matter of yours. Now, then! You want to know what became of those geese?" "Yes, sir." "Or rather, I fancy, of that goose. It was one bird, I imagine in which you were interested--white, with a black bar across the tail." Ryder quivered with emotion. "Oh, sir," he cried, "can you tell me where it went to?" "It came here." "Here?" "Yes, and a most remarkable bird it proved. I don't wonder that you should take an interest in it. It laid an egg after it was dead--the bonniest, brightest little blue egg that ever was seen. I have it here in my museum." Our visitor staggered to his feet and clutched the mantelpiece with his right hand. Holmes unlocked his strong-box and held up the blue carbuncle, which shone out like a star, with a cold, brilliant, many-pointed radiance. Ryder stood glaring with a drawn face, uncertain whether to claim or to disown it. "The game's up, Ryder," said Holmes quietly. "Hold up, man, or you'll be into the fire! Give him an arm back into his chair, Watson. He's not got blood enough to go in for felony with impunity. Give him a dash of brandy. So! Now he looks a little more human. What a shrimp it is, to be sure!" For a moment he had staggered and nearly fallen, but the brandy brought a tinge of colour into his cheeks, and he sat staring with frightened eyes at his accuser. "I have almost every link in my hands, and all the proofs which I could possibly need, so there is little which you need tell me. Still, that little may as well be cleared up to make the case complete. You had heard, Ryder, of this blue stone of the Countess of Morcar's?" "It was Catherine Cusack who told me of it," said he in a crackling voice. "I see--her ladyship's waiting-maid. Well, the temptation of sudden wealth so easily acquired was too much for you, as it has been for better men before you; but you were not very scrupulous in the means you used. It seems to me, Ryder, that there is the making of a very pretty villain in you. You knew that this man Horner, the plumber, had been concerned in some such matter before, and that suspicion would rest the more readily upon him. What did you do, then? You made some small job in my lady's room--you and your confederate Cusack--and you managed that he should be the man sent for. Then, when he had left, you rifled the jewel-case, raised the alarm, and had this unfortunate man arrested. You then--" Ryder threw himself down suddenly upon the rug and clutched at my companion's knees. "For God's sake, have mercy!" he shrieked. "Think of my father! Of my mother! It would break their hearts. I never went wrong before! I never will again. I swear it. I'll swear it on a Bible. Oh, don't bring it into court! For Christ's sake, don't!" "Get back into your chair!" said Holmes sternly. "It is very well to cringe and crawl now, but you thought little enough of this poor Horner in the dock for a crime of which he knew nothing." "I will fly, Mr. Holmes. I will leave the country, sir. Then the charge against him will break down." "Hum! We will talk about that. And now let us hear a true account of the next act. How came the stone into the goose, and how came the goose into the open market? Tell us the truth, for there lies your only hope of safety." Ryder passed his tongue over his parched lips. "I will tell you it just as it happened, sir," said he. "When Horner had been arrested, it seemed to me that it would be best for me to get away with the stone at once, for I did not know at what moment the police might not take it into their heads to search me and my room. There was no place about the hotel where it would be safe. I went out, as if on some commission, and I made for my sister's house. She had married a man named Oakshott, and lived in Brixton Road, where she fattened fowls for the market. All the way there every man I met seemed to me to be a policeman or a detective; and, for all that it was a cold night, the sweat was pouring down my face before I came to the Brixton Road. My sister asked me what was the matter, and why I was so pale; but I told her that I had been upset by the jewel robbery at the hotel. Then I went into the back yard and smoked a pipe and wondered what it would be best to do. "I had a friend once called Maudsley, who went to the bad, and has just been serving his time in Pentonville. One day he had met me, and fell into talk about the ways of thieves, and how they could get rid of what they stole. I knew that he would be true to me, for I knew one or two things about him; so I made up my mind to go right on to Kilburn, where he lived, and take him into my confidence. He would show me how to turn the stone into money. But how to get to him in safety? I thought of the agonies I had gone through in coming from the hotel. I might at any moment be seized and searched, and there would be the stone in my waistcoat pocket. I was leaning against the wall at the time and looking at the geese which were waddling about round my feet, and suddenly an idea came into my head which showed me how I could beat the best detective that ever lived. "My sister had told me some weeks before that I might have the pick of her geese for a Christmas present, and I knew that she was always as good as her word. I would take my goose now, and in it I would carry my stone to Kilburn. There was a little shed in the yard, and behind this I drove one of the birds--a fine big one, white, with a barred tail. I caught it, and prying its bill open, I thrust the stone down its throat as far as my finger could reach. The bird gave a gulp, and I felt the stone pass along its gullet and down into its crop. But the creature flapped and struggled, and out came my sister to know what was the matter. As I turned to speak to her the brute broke loose and fluttered off among the others. "'Whatever were you doing with that bird, Jem?' says she. "'Well,' said I, 'you said you'd give me one for Christmas, and I was feeling which was the fattest.' "'Oh,' says she, 'we've set yours aside for you--Jem's bird, we call it. It's the big white one over yonder. There's twenty-six of them, which makes one for you, and one for us, and two dozen for the market.' "'Thank you, Maggie,' says I; 'but if it is all the same to you, I'd rather have that one I was handling just now.' "'The other is a good three pound heavier,' said she, 'and we fattened it expressly for you.' "'Never mind. I'll have the other, and I'll take it now,' said I. "'Oh, just as you like,' said she, a little huffed. 'Which is it you want, then?' "'That white one with the barred tail, right in the middle of the flock.' "'Oh, very well. Kill it and take it with you.' "Well, I did what she said, Mr. Holmes, and I carried the bird all the way to Kilburn. I told my pal what I had done, for he was a man that it was easy to tell a thing like that to. He laughed until he choked, and we got a knife and opened the goose. My heart turned to water, for there was no sign of the stone, and I knew that some terrible mistake had occurred. I left the bird, rushed back to my sister's, and hurried into the back yard. There was not a bird to be seen there. "'Where are they all, Maggie?' I cried. "'Gone to the dealer's, Jem.' "'Which dealer's?' "'Breckinridge, of Covent Garden.' "'But was there another with a barred tail?' I asked, 'the same as the one I chose?' "'Yes, Jem; there were two barred-tailed ones, and I could never tell them apart.' "Well, then, of course I saw it all, and I ran off as hard as my feet would carry me to this man Breckinridge; but he had sold the lot at once, and not one word would he tell me as to where they had gone. You heard him yourselves to-night. Well, he has always answered me like that. My sister thinks that I am going mad. Sometimes I think that I am myself. And now--and now I am myself a branded thief, without ever having touched the wealth for which I sold my character. God help me! God help me!" He burst into convulsive sobbing, with his face buried in his hands. There was a long silence, broken only by his heavy breathing and by the measured tapping of Sherlock Holmes' finger-tips upon the edge of the table. Then my friend rose and threw open the door. "Get out!" said he. "What, sir! Oh, Heaven bless you!" "No more words. Get out!" And no more words were needed. There was a rush, a clatter upon the stairs, the bang of a door, and the crisp rattle of running footfalls from the street. "After all, Watson," said Holmes, reaching up his hand for his clay pipe, "I am not retained by the police to supply their deficiencies. If Horner were in danger it would be another thing; but this fellow will not appear against him, and the case must collapse. I suppose that I am commuting a felony, but it is just possible that I am saving a soul. This fellow will not go wrong again; he is too terribly frightened. Send him to gaol now, and you make him a gaol-bird for life. Besides, it is the season of forgiveness. Chance has put in our way a most singular and whimsical problem, and its solution is its own reward. If you will have the goodness to touch the bell, Doctor, we will begin another investigation, in which, also a bird will be the chief feature." VIII. THE ADVENTURE OF THE SPECKLED BAND On glancing over my notes of the seventy odd cases in which I have during the last eight years studied the methods of my friend Sherlock Holmes, I find many tragic, some comic, a large number merely strange, but none commonplace; for, working as he did rather for the love of his art than for the acquirement of wealth, he refused to associate himself with any investigation which did not tend towards the unusual, and even the fantastic. Of all these varied cases, however, I cannot recall any which presented more singular features than that which was associated with the well-known Surrey family of the Roylotts of Stoke Moran. The events in question occurred in the early days of my association with Holmes, when we were sharing rooms as bachelors in Baker Street. It is possible that I might have placed them upon record before, but a promise of secrecy was made at the time, from which I have only been freed during the last month by the untimely death of the lady to whom the pledge was given. It is perhaps as well that the facts should now come to light, for I have reasons to know that there are widespread rumours as to the death of Dr. Grimesby Roylott which tend to make the matter even more terrible than the truth. It was early in April in the year '83 that I woke one morning to find Sherlock Holmes standing, fully dressed, by the side of my bed. He was a late riser, as a rule, and as the clock on the mantelpiece showed me that it was only a quarter-past seven, I blinked up at him in some surprise, and perhaps just a little resentment, for I was myself regular in my habits. "Very sorry to knock you up, Watson," said he, "but it's the common lot this morning. Mrs. Hudson has been knocked up, she retorted upon me, and I on you." "What is it, then--a fire?" "No; a client. It seems that a young lady has arrived in a considerable state of excitement, who insists upon seeing me. She is waiting now in the sitting-room. Now, when young ladies wander about the metropolis at this hour of the morning, and knock sleepy people up out of their beds, I presume that it is something very pressing which they have to communicate. Should it prove to be an interesting case, you would, I am sure, wish to follow it from the outset. I thought, at any rate, that I should call you and give you the chance." "My dear fellow, I would not miss it for anything." I had no keener pleasure than in following Holmes in his professional investigations, and in admiring the rapid deductions, as swift as intuitions, and yet always founded on a logical basis with which he unravelled the problems which were submitted to him. I rapidly threw on my clothes and was ready in a few minutes to accompany my friend down to the sitting-room. A lady dressed in black and heavily veiled, who had been sitting in the window, rose as we entered. "Good-morning, madam," said Holmes cheerily. "My name is Sherlock Holmes. This is my intimate friend and associate, Dr. Watson, before whom you can speak as freely as before myself. Ha! I am glad to see that Mrs. Hudson has had the good sense to light the fire. Pray draw up to it, and I shall order you a cup of hot coffee, for I observe that you are shivering." "It is not cold which makes me shiver," said the woman in a low voice, changing her seat as requested. "What, then?" "It is fear, Mr. Holmes. It is terror." She raised her veil as she spoke, and we could see that she was indeed in a pitiable state of agitation, her face all drawn and grey, with restless frightened eyes, like those of some hunted animal. Her features and figure were those of a woman of thirty, but her hair was shot with premature grey, and her expression was weary and haggard. Sherlock Holmes ran her over with one of his quick, all-comprehensive glances. "You must not fear," said he soothingly, bending forward and patting her forearm. "We shall soon set matters right, I have no doubt. You have come in by train this morning, I see." "You know me, then?" "No, but I observe the second half of a return ticket in the palm of your left glove. You must have started early, and yet you had a good drive in a dog-cart, along heavy roads, before you reached the station." The lady gave a violent start and stared in bewilderment at my companion. "There is no mystery, my dear madam," said he, smiling. "The left arm of your jacket is spattered with mud in no less than seven places. The marks are perfectly fresh. There is no vehicle save a dog-cart which throws up mud in that way, and then only when you sit on the left-hand side of the driver." "Whatever your reasons may be, you are perfectly correct," said she. "I started from home before six, reached Leatherhead at twenty past, and came in by the first train to Waterloo. Sir, I can stand this strain no longer; I shall go mad if it continues. I have no one to turn to--none, save only one, who cares for me, and he, poor fellow, can be of little aid. I have heard of you, Mr. Holmes; I have heard of you from Mrs. Farintosh, whom you helped in the hour of her sore need. It was from her that I had your address. Oh, sir, do you not think that you could help me, too, and at least throw a little light through the dense darkness which surrounds me? At present it is out of my power to reward you for your services, but in a month or six weeks I shall be married, with the control of my own income, and then at least you shall not find me ungrateful." Holmes turned to his desk and, unlocking it, drew out a small case-book, which he consulted. "Farintosh," said he. "Ah yes, I recall the case; it was concerned with an opal tiara. I think it was before your time, Watson. I can only say, madam, that I shall be happy to devote the same care to your case as I did to that of your friend. As to reward, my profession is its own reward; but you are at liberty to defray whatever expenses I may be put to, at the time which suits you best. And now I beg that you will lay before us everything that may help us in forming an opinion upon the matter." "Alas!" replied our visitor, "the very horror of my situation lies in the fact that my fears are so vague, and my suspicions depend so entirely upon small points, which might seem trivial to another, that even he to whom of all others I have a right to look for help and advice looks upon all that I tell him about it as the fancies of a nervous woman. He does not say so, but I can read it from his soothing answers and averted eyes. But I have heard, Mr. Holmes, that you can see deeply into the manifold wickedness of the human heart. You may advise me how to walk amid the dangers which encompass me." "I am all attention, madam." "My name is Helen Stoner, and I am living with my stepfather, who is the last survivor of one of the oldest Saxon families in England, the Roylotts of Stoke Moran, on the western border of Surrey." Holmes nodded his head. "The name is familiar to me," said he. "The family was at one time among the richest in England, and the estates extended over the borders into Berkshire in the north, and Hampshire in the west. In the last century, however, four successive heirs were of a dissolute and wasteful disposition, and the family ruin was eventually completed by a gambler in the days of the Regency. Nothing was left save a few acres of ground, and the two-hundred-year-old house, which is itself crushed under a heavy mortgage. The last squire dragged out his existence there, living the horrible life of an aristocratic pauper; but his only son, my stepfather, seeing that he must adapt himself to the new conditions, obtained an advance from a relative, which enabled him to take a medical degree and went out to Calcutta, where, by his professional skill and his force of character, he established a large practice. In a fit of anger, however, caused by some robberies which had been perpetrated in the house, he beat his native butler to death and narrowly escaped a capital sentence. As it was, he suffered a long term of imprisonment and afterwards returned to England a morose and disappointed man. "When Dr. Roylott was in India he married my mother, Mrs. Stoner, the young widow of Major-General Stoner, of the Bengal Artillery. My sister Julia and I were twins, and we were only two years old at the time of my mother's re-marriage. She had a considerable sum of money--not less than 1000 pounds a year--and this she bequeathed to Dr. Roylott entirely while we resided with him, with a provision that a certain annual sum should be allowed to each of us in the event of our marriage. Shortly after our return to England my mother died--she was killed eight years ago in a railway accident near Crewe. Dr. Roylott then abandoned his attempts to establish himself in practice in London and took us to live with him in the old ancestral house at Stoke Moran. The money which my mother had left was enough for all our wants, and there seemed to be no obstacle to our happiness. "But a terrible change came over our stepfather about this time. Instead of making friends and exchanging visits with our neighbours, who had at first been overjoyed to see a Roylott of Stoke Moran back in the old family seat, he shut himself up in his house and seldom came out save to indulge in ferocious quarrels with whoever might cross his path. Violence of temper approaching to mania has been hereditary in the men of the family, and in my stepfather's case it had, I believe, been intensified by his long residence in the tropics. A series of disgraceful brawls took place, two of which ended in the police-court, until at last he became the terror of the village, and the folks would fly at his approach, for he is a man of immense strength, and absolutely uncontrollable in his anger. "Last week he hurled the local blacksmith over a parapet into a stream, and it was only by paying over all the money which I could gather together that I was able to avert another public exposure. He had no friends at all save the wandering gipsies, and he would give these vagabonds leave to encamp upon the few acres of bramble-covered land which represent the family estate, and would accept in return the hospitality of their tents, wandering away with them sometimes for weeks on end. He has a passion also for Indian animals, which are sent over to him by a correspondent, and he has at this moment a cheetah and a baboon, which wander freely over his grounds and are feared by the villagers almost as much as their master. "You can imagine from what I say that my poor sister Julia and I had no great pleasure in our lives. No servant would stay with us, and for a long time we did all the work of the house. She was but thirty at the time of her death, and yet her hair had already begun to whiten, even as mine has." "Your sister is dead, then?" "She died just two years ago, and it is of her death that I wish to speak to you. You can understand that, living the life which I have described, we were little likely to see anyone of our own age and position. We had, however, an aunt, my mother's maiden sister, Miss Honoria Westphail, who lives near Harrow, and we were occasionally allowed to pay short visits at this lady's house. Julia went there at Christmas two years ago, and met there a half-pay major of marines, to whom she became engaged. My stepfather learned of the engagement when my sister returned and offered no objection to the marriage; but within a fortnight of the day which had been fixed for the wedding, the terrible event occurred which has deprived me of my only companion." Sherlock Holmes had been leaning back in his chair with his eyes closed and his head sunk in a cushion, but he half opened his lids now and glanced across at his visitor. "Pray be precise as to details," said he. "It is easy for me to be so, for every event of that dreadful time is seared into my memory. The manor-house is, as I have already said, very old, and only one wing is now inhabited. The bedrooms in this wing are on the ground floor, the sitting-rooms being in the central block of the buildings. Of these bedrooms the first is Dr. Roylott's, the second my sister's, and the third my own. There is no communication between them, but they all open out into the same corridor. Do I make myself plain?" "Perfectly so." "The windows of the three rooms open out upon the lawn. That fatal night Dr. Roylott had gone to his room early, though we knew that he had not retired to rest, for my sister was troubled by the smell of the strong Indian cigars which it was his custom to smoke. She left her room, therefore, and came into mine, where she sat for some time, chatting about her approaching wedding. At eleven o'clock she rose to leave me, but she paused at the door and looked back. "'Tell me, Helen,' said she, 'have you ever heard anyone whistle in the dead of the night?' "'Never,' said I. "'I suppose that you could not possibly whistle, yourself, in your sleep?' "'Certainly not. But why?' "'Because during the last few nights I have always, about three in the morning, heard a low, clear whistle. I am a light sleeper, and it has awakened me. I cannot tell where it came from--perhaps from the next room, perhaps from the lawn. I thought that I would just ask you whether you had heard it.' "'No, I have not. It must be those wretched gipsies in the plantation.' "'Very likely. And yet if it were on the lawn, I wonder that you did not hear it also.' "'Ah, but I sleep more heavily than you.' "'Well, it is of no great consequence, at any rate.' She smiled back at me, closed my door, and a few moments later I heard her key turn in the lock." "Indeed," said Holmes. "Was it your custom always to lock yourselves in at night?" "Always." "And why?" "I think that I mentioned to you that the doctor kept a cheetah and a baboon. We had no feeling of security unless our doors were locked." "Quite so. Pray proceed with your statement." "I could not sleep that night. A vague feeling of impending misfortune impressed me. My sister and I, you will recollect, were twins, and you know how subtle are the links which bind two souls which are so closely allied. It was a wild night. The wind was howling outside, and the rain was beating and splashing against the windows. Suddenly, amid all the hubbub of the gale, there burst forth the wild scream of a terrified woman. I knew that it was my sister's voice. I sprang from my bed, wrapped a shawl round me, and rushed into the corridor. As I opened my door I seemed to hear a low whistle, such as my sister described, and a few moments later a clanging sound, as if a mass of metal had fallen. As I ran down the passage, my sister's door was unlocked, and revolved slowly upon its hinges. I stared at it horror-stricken, not knowing what was about to issue from it. By the light of the corridor-lamp I saw my sister appear at the opening, her face blanched with terror, her hands groping for help, her whole figure swaying to and fro like that of a drunkard. I ran to her and threw my arms round her, but at that moment her knees seemed to give way and she fell to the ground. She writhed as one who is in terrible pain, and her limbs were dreadfully convulsed. At first I thought that she had not recognised me, but as I bent over her she suddenly shrieked out in a voice which I shall never forget, 'Oh, my God! Helen! It was the band! The speckled band!' There was something else which she would fain have said, and she stabbed with her finger into the air in the direction of the doctor's room, but a fresh convulsion seized her and choked her words. I rushed out, calling loudly for my stepfather, and I met him hastening from his room in his dressing-gown. When he reached my sister's side she was unconscious, and though he poured brandy down her throat and sent for medical aid from the village, all efforts were in vain, for she slowly sank and died without having recovered her consciousness. Such was the dreadful end of my beloved sister." "One moment," said Holmes, "are you sure about this whistle and metallic sound? Could you swear to it?" "That was what the county coroner asked me at the inquiry. It is my strong impression that I heard it, and yet, among the crash of the gale and the creaking of an old house, I may possibly have been deceived." "Was your sister dressed?" "No, she was in her night-dress. In her right hand was found the charred stump of a match, and in her left a match-box." "Showing that she had struck a light and looked about her when the alarm took place. That is important. And what conclusions did the coroner come to?" "He investigated the case with great care, for Dr. Roylott's conduct had long been notorious in the county, but he was unable to find any satisfactory cause of death. My evidence showed that the door had been fastened upon the inner side, and the windows were blocked by old-fashioned shutters with broad iron bars, which were secured every night. The walls were carefully sounded, and were shown to be quite solid all round, and the flooring was also thoroughly examined, with the same result. The chimney is wide, but is barred up by four large staples. It is certain, therefore, that my sister was quite alone when she met her end. Besides, there were no marks of any violence upon her." "How about poison?" "The doctors examined her for it, but without success." "What do you think that this unfortunate lady died of, then?" "It is my belief that she died of pure fear and nervous shock, though what it was that frightened her I cannot imagine." "Were there gipsies in the plantation at the time?" "Yes, there are nearly always some there." "Ah, and what did you gather from this allusion to a band--a speckled band?" "Sometimes I have thought that it was merely the wild talk of delirium, sometimes that it may have referred to some band of people, perhaps to these very gipsies in the plantation. I do not know whether the spotted handkerchiefs which so many of them wear over their heads might have suggested the strange adjective which she used." Holmes shook his head like a man who is far from being satisfied. "These are very deep waters," said he; "pray go on with your narrative." "Two years have passed since then, and my life has been until lately lonelier than ever. A month ago, however, a dear friend, whom I have known for many years, has done me the honour to ask my hand in marriage. His name is Armitage--Percy Armitage--the second son of Mr. Armitage, of Crane Water, near Reading. My stepfather has offered no opposition to the match, and we are to be married in the course of the spring. Two days ago some repairs were started in the west wing of the building, and my bedroom wall has been pierced, so that I have had to move into the chamber in which my sister died, and to sleep in the very bed in which she slept. Imagine, then, my thrill of terror when last night, as I lay awake, thinking over her terrible fate, I suddenly heard in the silence of the night the low whistle which had been the herald of her own death. I sprang up and lit the lamp, but nothing was to be seen in the room. I was too shaken to go to bed again, however, so I dressed, and as soon as it was daylight I slipped down, got a dog-cart at the Crown Inn, which is opposite, and drove to Leatherhead, from whence I have come on this morning with the one object of seeing you and asking your advice." "You have done wisely," said my friend. "But have you told me all?" "Yes, all." "Miss Roylott, you have not. You are screening your stepfather." "Why, what do you mean?" For answer Holmes pushed back the frill of black lace which fringed the hand that lay upon our visitor's knee. Five little livid spots, the marks of four fingers and a thumb, were printed upon the white wrist. "You have been cruelly used," said Holmes. The lady coloured deeply and covered over her injured wrist. "He is a hard man," she said, "and perhaps he hardly knows his own strength." There was a long silence, during which Holmes leaned his chin upon his hands and stared into the crackling fire. "This is a very deep business," he said at last. "There are a thousand details which I should desire to know before I decide upon our course of action. Yet we have not a moment to lose. If we were to come to Stoke Moran to-day, would it be possible for us to see over these rooms without the knowledge of your stepfather?" "As it happens, he spoke of coming into town to-day upon some most important business. It is probable that he will be away all day, and that there would be nothing to disturb you. We have a housekeeper now, but she is old and foolish, and I could easily get her out of the way." "Excellent. You are not averse to this trip, Watson?" "By no means." "Then we shall both come. What are you going to do yourself?" "I have one or two things which I would wish to do now that I am in town. But I shall return by the twelve o'clock train, so as to be there in time for your coming." "And you may expect us early in the afternoon. I have myself some small business matters to attend to. Will you not wait and breakfast?" "No, I must go. My heart is lightened already since I have confided my trouble to you. I shall look forward to seeing you again this afternoon." She dropped her thick black veil over her face and glided from the room. "And what do you think of it all, Watson?" asked Sherlock Holmes, leaning back in his chair. "It seems to me to be a most dark and sinister business." "Dark enough and sinister enough." "Yet if the lady is correct in saying that the flooring and walls are sound, and that the door, window, and chimney are impassable, then her sister must have been undoubtedly alone when she met her mysterious end." "What becomes, then, of these nocturnal whistles, and what of the very peculiar words of the dying woman?" "I cannot think." "When you combine the ideas of whistles at night, the presence of a band of gipsies who are on intimate terms with this old doctor, the fact that we have every reason to believe that the doctor has an interest in preventing his stepdaughter's marriage, the dying allusion to a band, and, finally, the fact that Miss Helen Stoner heard a metallic clang, which might have been caused by one of those metal bars that secured the shutters falling back into its place, I think that there is good ground to think that the mystery may be cleared along those lines." "But what, then, did the gipsies do?" "I cannot imagine." "I see many objections to any such theory." "And so do I. It is precisely for that reason that we are going to Stoke Moran this day. I want to see whether the objections are fatal, or if they may be explained away. But what in the name of the devil!" The ejaculation had been drawn from my companion by the fact that our door had been suddenly dashed open, and that a huge man had framed himself in the aperture. His costume was a peculiar mixture of the professional and of the agricultural, having a black top-hat, a long frock-coat, and a pair of high gaiters, with a hunting-crop swinging in his hand. So tall was he that his hat actually brushed the cross bar of the doorway, and his breadth seemed to span it across from side to side. A large face, seared with a thousand wrinkles, burned yellow with the sun, and marked with every evil passion, was turned from one to the other of us, while his deep-set, bile-shot eyes, and his high, thin, fleshless nose, gave him somewhat the resemblance to a fierce old bird of prey. "Which of you is Holmes?" asked this apparition. "My name, sir; but you have the advantage of me," said my companion quietly. "I am Dr. Grimesby Roylott, of Stoke Moran." "Indeed, Doctor," said Holmes blandly. "Pray take a seat." "I will do nothing of the kind. My stepdaughter has been here. I have traced her. What has she been saying to you?" "It is a little cold for the time of the year," said Holmes. "What has she been saying to you?" screamed the old man furiously. "But I have heard that the crocuses promise well," continued my companion imperturbably. "Ha! You put me off, do you?" said our new visitor, taking a step forward and shaking his hunting-crop. "I know you, you scoundrel! I have heard of you before. You are Holmes, the meddler." My friend smiled. "Holmes, the busybody!" His smile broadened. "Holmes, the Scotland Yard Jack-in-office!" Holmes chuckled heartily. "Your conversation is most entertaining," said he. "When you go out close the door, for there is a decided draught." "I will go when I have said my say. Don't you dare to meddle with my affairs. I know that Miss Stoner has been here. I traced her! I am a dangerous man to fall foul of! See here." He stepped swiftly forward, seized the poker, and bent it into a curve with his huge brown hands. "See that you keep yourself out of my grip," he snarled, and hurling the twisted poker into the fireplace he strode out of the room. "He seems a very amiable person," said Holmes, laughing. "I am not quite so bulky, but if he had remained I might have shown him that my grip was not much more feeble than his own." As he spoke he picked up the steel poker and, with a sudden effort, straightened it out again. "Fancy his having the insolence to confound me with the official detective force! This incident gives zest to our investigation, however, and I only trust that our little friend will not suffer from her imprudence in allowing this brute to trace her. And now, Watson, we shall order breakfast, and afterwards I shall walk down to Doctors' Commons, where I hope to get some data which may help us in this matter." It was nearly one o'clock when Sherlock Holmes returned from his excursion. He held in his hand a sheet of blue paper, scrawled over with notes and figures. "I have seen the will of the deceased wife," said he. "To determine its exact meaning I have been obliged to work out the present prices of the investments with which it is concerned. The total income, which at the time of the wife's death was little short of 1100 pounds, is now, through the fall in agricultural prices, not more than 750 pounds. Each daughter can claim an income of 250 pounds, in case of marriage. It is evident, therefore, that if both girls had married, this beauty would have had a mere pittance, while even one of them would cripple him to a very serious extent. My morning's work has not been wasted, since it has proved that he has the very strongest motives for standing in the way of anything of the sort. And now, Watson, this is too serious for dawdling, especially as the old man is aware that we are interesting ourselves in his affairs; so if you are ready, we shall call a cab and drive to Waterloo. I should be very much obliged if you would slip your revolver into your pocket. An Eley's No. 2 is an excellent argument with gentlemen who can twist steel pokers into knots. That and a tooth-brush are, I think, all that we need." At Waterloo we were fortunate in catching a train for Leatherhead, where we hired a trap at the station inn and drove for four or five miles through the lovely Surrey lanes. It was a perfect day, with a bright sun and a few fleecy clouds in the heavens. The trees and wayside hedges were just throwing out their first green shoots, and the air was full of the pleasant smell of the moist earth. To me at least there was a strange contrast between the sweet promise of the spring and this sinister quest upon which we were engaged. My companion sat in the front of the trap, his arms folded, his hat pulled down over his eyes, and his chin sunk upon his breast, buried in the deepest thought. Suddenly, however, he started, tapped me on the shoulder, and pointed over the meadows. "Look there!" said he. A heavily timbered park stretched up in a gentle slope, thickening into a grove at the highest point. From amid the branches there jutted out the grey gables and high roof-tree of a very old mansion. "Stoke Moran?" said he. "Yes, sir, that be the house of Dr. Grimesby Roylott," remarked the driver. "There is some building going on there," said Holmes; "that is where we are going." "There's the village," said the driver, pointing to a cluster of roofs some distance to the left; "but if you want to get to the house, you'll find it shorter to get over this stile, and so by the foot-path over the fields. There it is, where the lady is walking." "And the lady, I fancy, is Miss Stoner," observed Holmes, shading his eyes. "Yes, I think we had better do as you suggest." We got off, paid our fare, and the trap rattled back on its way to Leatherhead. "I thought it as well," said Holmes as we climbed the stile, "that this fellow should think we had come here as architects, or on some definite business. It may stop his gossip. Good-afternoon, Miss Stoner. You see that we have been as good as our word." Our client of the morning had hurried forward to meet us with a face which spoke her joy. "I have been waiting so eagerly for you," she cried, shaking hands with us warmly. "All has turned out splendidly. Dr. Roylott has gone to town, and it is unlikely that he will be back before evening." "We have had the pleasure of making the doctor's acquaintance," said Holmes, and in a few words he sketched out what had occurred. Miss Stoner turned white to the lips as she listened. "Good heavens!" she cried, "he has followed me, then." "So it appears." "He is so cunning that I never know when I am safe from him. What will he say when he returns?" "He must guard himself, for he may find that there is someone more cunning than himself upon his track. You must lock yourself up from him to-night. If he is violent, we shall take you away to your aunt's at Harrow. Now, we must make the best use of our time, so kindly take us at once to the rooms which we are to examine." The building was of grey, lichen-blotched stone, with a high central portion and two curving wings, like the claws of a crab, thrown out on each side. In one of these wings the windows were broken and blocked with wooden boards, while the roof was partly caved in, a picture of ruin. The central portion was in little better repair, but the right-hand block was comparatively modern, and the blinds in the windows, with the blue smoke curling up from the chimneys, showed that this was where the family resided. Some scaffolding had been erected against the end wall, and the stone-work had been broken into, but there were no signs of any workmen at the moment of our visit. Holmes walked slowly up and down the ill-trimmed lawn and examined with deep attention the outsides of the windows. "This, I take it, belongs to the room in which you used to sleep, the centre one to your sister's, and the one next to the main building to Dr. Roylott's chamber?" "Exactly so. But I am now sleeping in the middle one." "Pending the alterations, as I understand. By the way, there does not seem to be any very pressing need for repairs at that end wall." "There were none. I believe that it was an excuse to move me from my room." "Ah! that is suggestive. Now, on the other side of this narrow wing runs the corridor from which these three rooms open. There are windows in it, of course?" "Yes, but very small ones. Too narrow for anyone to pass through." "As you both locked your doors at night, your rooms were unapproachable from that side. Now, would you have the kindness to go into your room and bar your shutters?" Miss Stoner did so, and Holmes, after a careful examination through the open window, endeavoured in every way to force the shutter open, but without success. There was no slit through which a knife could be passed to raise the bar. Then with his lens he tested the hinges, but they were of solid iron, built firmly into the massive masonry. "Hum!" said he, scratching his chin in some perplexity, "my theory certainly presents some difficulties. No one could pass these shutters if they were bolted. Well, we shall see if the inside throws any light upon the matter." A small side door led into the whitewashed corridor from which the three bedrooms opened. Holmes refused to examine the third chamber, so we passed at once to the second, that in which Miss Stoner was now sleeping, and in which her sister had met with her fate. It was a homely little room, with a low ceiling and a gaping fireplace, after the fashion of old country-houses. A brown chest of drawers stood in one corner, a narrow white-counterpaned bed in another, and a dressing-table on the left-hand side of the window. These articles, with two small wicker-work chairs, made up all the furniture in the room save for a square of Wilton carpet in the centre. The boards round and the panelling of the walls were of brown, worm-eaten oak, so old and discoloured that it may have dated from the original building of the house. Holmes drew one of the chairs into a corner and sat silent, while his eyes travelled round and round and up and down, taking in every detail of the apartment. "Where does that bell communicate with?" he asked at last pointing to a thick bell-rope which hung down beside the bed, the tassel actually lying upon the pillow. "It goes to the housekeeper's room." "It looks newer than the other things?" "Yes, it was only put there a couple of years ago." "Your sister asked for it, I suppose?" "No, I never heard of her using it. We used always to get what we wanted for ourselves." "Indeed, it seemed unnecessary to put so nice a bell-pull there. You will excuse me for a few minutes while I satisfy myself as to this floor." He threw himself down upon his face with his lens in his hand and crawled swiftly backward and forward, examining minutely the cracks between the boards. Then he did the same with the wood-work with which the chamber was panelled. Finally he walked over to the bed and spent some time in staring at it and in running his eye up and down the wall. Finally he took the bell-rope in his hand and gave it a brisk tug. "Why, it's a dummy," said he. "Won't it ring?" "No, it is not even attached to a wire. This is very interesting. You can see now that it is fastened to a hook just above where the little opening for the ventilator is." "How very absurd! I never noticed that before." "Very strange!" muttered Holmes, pulling at the rope. "There are one or two very singular points about this room. For example, what a fool a builder must be to open a ventilator into another room, when, with the same trouble, he might have communicated with the outside air!" "That is also quite modern," said the lady. "Done about the same time as the bell-rope?" remarked Holmes. "Yes, there were several little changes carried out about that time." "They seem to have been of a most interesting character--dummy bell-ropes, and ventilators which do not ventilate. With your permission, Miss Stoner, we shall now carry our researches into the inner apartment." Dr. Grimesby Roylott's chamber was larger than that of his step-daughter, but was as plainly furnished. A camp-bed, a small wooden shelf full of books, mostly of a technical character, an armchair beside the bed, a plain wooden chair against the wall, a round table, and a large iron safe were the principal things which met the eye. Holmes walked slowly round and examined each and all of them with the keenest interest. "What's in here?" he asked, tapping the safe. "My stepfather's business papers." "Oh! you have seen inside, then?" "Only once, some years ago. I remember that it was full of papers." "There isn't a cat in it, for example?" "No. What a strange idea!" "Well, look at this!" He took up a small saucer of milk which stood on the top of it. "No; we don't keep a cat. But there is a cheetah and a baboon." "Ah, yes, of course! Well, a cheetah is just a big cat, and yet a saucer of milk does not go very far in satisfying its wants, I daresay. There is one point which I should wish to determine." He squatted down in front of the wooden chair and examined the seat of it with the greatest attention. "Thank you. That is quite settled," said he, rising and putting his lens in his pocket. "Hullo! Here is something interesting!" The object which had caught his eye was a small dog lash hung on one corner of the bed. The lash, however, was curled upon itself and tied so as to make a loop of whipcord. "What do you make of that, Watson?" "It's a common enough lash. But I don't know why it should be tied." "That is not quite so common, is it? Ah, me! it's a wicked world, and when a clever man turns his brains to crime it is the worst of all. I think that I have seen enough now, Miss Stoner, and with your permission we shall walk out upon the lawn." I had never seen my friend's face so grim or his brow so dark as it was when we turned from the scene of this investigation. We had walked several times up and down the lawn, neither Miss Stoner nor myself liking to break in upon his thoughts before he roused himself from his reverie. "It is very essential, Miss Stoner," said he, "that you should absolutely follow my advice in every respect." "I shall most certainly do so." "The matter is too serious for any hesitation. Your life may depend upon your compliance." "I assure you that I am in your hands." "In the first place, both my friend and I must spend the night in your room." Both Miss Stoner and I gazed at him in astonishment. "Yes, it must be so. Let me explain. I believe that that is the village inn over there?" "Yes, that is the Crown." "Very good. Your windows would be visible from there?" "Certainly." "You must confine yourself to your room, on pretence of a headache, when your stepfather comes back. Then when you hear him retire for the night, you must open the shutters of your window, undo the hasp, put your lamp there as a signal to us, and then withdraw quietly with everything which you are likely to want into the room which you used to occupy. I have no doubt that, in spite of the repairs, you could manage there for one night." "Oh, yes, easily." "The rest you will leave in our hands." "But what will you do?" "We shall spend the night in your room, and we shall investigate the cause of this noise which has disturbed you." "I believe, Mr. Holmes, that you have already made up your mind," said Miss Stoner, laying her hand upon my companion's sleeve. "Perhaps I have." "Then, for pity's sake, tell me what was the cause of my sister's death." "I should prefer to have clearer proofs before I speak." "You can at least tell me whether my own thought is correct, and if she died from some sudden fright." "No, I do not think so. I think that there was probably some more tangible cause. And now, Miss Stoner, we must leave you for if Dr. Roylott returned and saw us our journey would be in vain. Good-bye, and be brave, for if you will do what I have told you, you may rest assured that we shall soon drive away the dangers that threaten you." Sherlock Holmes and I had no difficulty in engaging a bedroom and sitting-room at the Crown Inn. They were on the upper floor, and from our window we could command a view of the avenue gate, and of the inhabited wing of Stoke Moran Manor House. At dusk we saw Dr. Grimesby Roylott drive past, his huge form looming up beside the little figure of the lad who drove him. The boy had some slight difficulty in undoing the heavy iron gates, and we heard the hoarse roar of the doctor's voice and saw the fury with which he shook his clinched fists at him. The trap drove on, and a few minutes later we saw a sudden light spring up among the trees as the lamp was lit in one of the sitting-rooms. "Do you know, Watson," said Holmes as we sat together in the gathering darkness, "I have really some scruples as to taking you to-night. There is a distinct element of danger." "Can I be of assistance?" "Your presence might be invaluable." "Then I shall certainly come." "It is very kind of you." "You speak of danger. You have evidently seen more in these rooms than was visible to me." "No, but I fancy that I may have deduced a little more. I imagine that you saw all that I did." "I saw nothing remarkable save the bell-rope, and what purpose that could answer I confess is more than I can imagine." "You saw the ventilator, too?" "Yes, but I do not think that it is such a very unusual thing to have a small opening between two rooms. It was so small that a rat could hardly pass through." "I knew that we should find a ventilator before ever we came to Stoke Moran." "My dear Holmes!" "Oh, yes, I did. You remember in her statement she said that her sister could smell Dr. Roylott's cigar. Now, of course that suggested at once that there must be a communication between the two rooms. It could only be a small one, or it would have been remarked upon at the coroner's inquiry. I deduced a ventilator." "But what harm can there be in that?" "Well, there is at least a curious coincidence of dates. A ventilator is made, a cord is hung, and a lady who sleeps in the bed dies. Does not that strike you?" "I cannot as yet see any connection." "Did you observe anything very peculiar about that bed?" "No." "It was clamped to the floor. Did you ever see a bed fastened like that before?" "I cannot say that I have." "The lady could not move her bed. It must always be in the same relative position to the ventilator and to the rope--or so we may call it, since it was clearly never meant for a bell-pull." "Holmes," I cried, "I seem to see dimly what you are hinting at. We are only just in time to prevent some subtle and horrible crime." "Subtle enough and horrible enough. When a doctor does go wrong he is the first of criminals. He has nerve and he has knowledge. Palmer and Pritchard were among the heads of their profession. This man strikes even deeper, but I think, Watson, that we shall be able to strike deeper still. But we shall have horrors enough before the night is over; for goodness' sake let us have a quiet pipe and turn our minds for a few hours to something more cheerful." About nine o'clock the light among the trees was extinguished, and all was dark in the direction of the Manor House. Two hours passed slowly away, and then, suddenly, just at the stroke of eleven, a single bright light shone out right in front of us. "That is our signal," said Holmes, springing to his feet; "it comes from the middle window." As we passed out he exchanged a few words with the landlord, explaining that we were going on a late visit to an acquaintance, and that it was possible that we might spend the night there. A moment later we were out on the dark road, a chill wind blowing in our faces, and one yellow light twinkling in front of us through the gloom to guide us on our sombre errand. There was little difficulty in entering the grounds, for unrepaired breaches gaped in the old park wall. Making our way among the trees, we reached the lawn, crossed it, and were about to enter through the window when out from a clump of laurel bushes there darted what seemed to be a hideous and distorted child, who threw itself upon the grass with writhing limbs and then ran swiftly across the lawn into the darkness. "My God!" I whispered; "did you see it?" Holmes was for the moment as startled as I. His hand closed like a vice upon my wrist in his agitation. Then he broke into a low laugh and put his lips to my ear. "It is a nice household," he murmured. "That is the baboon." I had forgotten the strange pets which the doctor affected. There was a cheetah, too; perhaps we might find it upon our shoulders at any moment. I confess that I felt easier in my mind when, after following Holmes' example and slipping off my shoes, I found myself inside the bedroom. My companion noiselessly closed the shutters, moved the lamp onto the table, and cast his eyes round the room. All was as we had seen it in the daytime. Then creeping up to me and making a trumpet of his hand, he whispered into my ear again so gently that it was all that I could do to distinguish the words: "The least sound would be fatal to our plans." I nodded to show that I had heard. "We must sit without light. He would see it through the ventilator." I nodded again. "Do not go asleep; your very life may depend upon it. Have your pistol ready in case we should need it. I will sit on the side of the bed, and you in that chair." I took out my revolver and laid it on the corner of the table. Holmes had brought up a long thin cane, and this he placed upon the bed beside him. By it he laid the box of matches and the stump of a candle. Then he turned down the lamp, and we were left in darkness. How shall I ever forget that dreadful vigil? I could not hear a sound, not even the drawing of a breath, and yet I knew that my companion sat open-eyed, within a few feet of me, in the same state of nervous tension in which I was myself. The shutters cut off the least ray of light, and we waited in absolute darkness. From outside came the occasional cry of a night-bird, and once at our very window a long drawn catlike whine, which told us that the cheetah was indeed at liberty. Far away we could hear the deep tones of the parish clock, which boomed out every quarter of an hour. How long they seemed, those quarters! Twelve struck, and one and two and three, and still we sat waiting silently for whatever might befall. Suddenly there was the momentary gleam of a light up in the direction of the ventilator, which vanished immediately, but was succeeded by a strong smell of burning oil and heated metal. Someone in the next room had lit a dark-lantern. I heard a gentle sound of movement, and then all was silent once more, though the smell grew stronger. For half an hour I sat with straining ears. Then suddenly another sound became audible--a very gentle, soothing sound, like that of a small jet of steam escaping continually from a kettle. The instant that we heard it, Holmes sprang from the bed, struck a match, and lashed furiously with his cane at the bell-pull. "You see it, Watson?" he yelled. "You see it?" But I saw nothing. At the moment when Holmes struck the light I heard a low, clear whistle, but the sudden glare flashing into my weary eyes made it impossible for me to tell what it was at which my friend lashed so savagely. I could, however, see that his face was deadly pale and filled with horror and loathing. He had ceased to strike and was gazing up at the ventilator when suddenly there broke from the silence of the night the most horrible cry to which I have ever listened. It swelled up louder and louder, a hoarse yell of pain and fear and anger all mingled in the one dreadful shriek. They say that away down in the village, and even in the distant parsonage, that cry raised the sleepers from their beds. It struck cold to our hearts, and I stood gazing at Holmes, and he at me, until the last echoes of it had died away into the silence from which it rose. "What can it mean?" I gasped. "It means that it is all over," Holmes answered. "And perhaps, after all, it is for the best. Take your pistol, and we will enter Dr. Roylott's room." With a grave face he lit the lamp and led the way down the corridor. Twice he struck at the chamber door without any reply from within. Then he turned the handle and entered, I at his heels, with the cocked pistol in my hand. It was a singular sight which met our eyes. On the table stood a dark-lantern with the shutter half open, throwing a brilliant beam of light upon the iron safe, the door of which was ajar. Beside this table, on the wooden chair, sat Dr. Grimesby Roylott clad in a long grey dressing-gown, his bare ankles protruding beneath, and his feet thrust into red heelless Turkish slippers. Across his lap lay the short stock with the long lash which we had noticed during the day. His chin was cocked upward and his eyes were fixed in a dreadful, rigid stare at the corner of the ceiling. Round his brow he had a peculiar yellow band, with brownish speckles, which seemed to be bound tightly round his head. As we entered he made neither sound nor motion. "The band! the speckled band!" whispered Holmes. I took a step forward. In an instant his strange headgear began to move, and there reared itself from among his hair the squat diamond-shaped head and puffed neck of a loathsome serpent. "It is a swamp adder!" cried Holmes; "the deadliest snake in India. He has died within ten seconds of being bitten. Violence does, in truth, recoil upon the violent, and the schemer falls into the pit which he digs for another. Let us thrust this creature back into its den, and we can then remove Miss Stoner to some place of shelter and let the county police know what has happened." As he spoke he drew the dog-whip swiftly from the dead man's lap, and throwing the noose round the reptile's neck he drew it from its horrid perch and, carrying it at arm's length, threw it into the iron safe, which he closed upon it. Such are the true facts of the death of Dr. Grimesby Roylott, of Stoke Moran. It is not necessary that I should prolong a narrative which has already run to too great a length by telling how we broke the sad news to the terrified girl, how we conveyed her by the morning train to the care of her good aunt at Harrow, of how the slow process of official inquiry came to the conclusion that the doctor met his fate while indiscreetly playing with a dangerous pet. The little which I had yet to learn of the case was told me by Sherlock Holmes as we travelled back next day. "I had," said he, "come to an entirely erroneous conclusion which shows, my dear Watson, how dangerous it always is to reason from insufficient data. The presence of the gipsies, and the use of the word 'band,' which was used by the poor girl, no doubt, to explain the appearance which she had caught a hurried glimpse of by the light of her match, were sufficient to put me upon an entirely wrong scent. I can only claim the merit that I instantly reconsidered my position when, however, it became clear to me that whatever danger threatened an occupant of the room could not come either from the window or the door. My attention was speedily drawn, as I have already remarked to you, to this ventilator, and to the bell-rope which hung down to the bed. The discovery that this was a dummy, and that the bed was clamped to the floor, instantly gave rise to the suspicion that the rope was there as a bridge for something passing through the hole and coming to the bed. The idea of a snake instantly occurred to me, and when I coupled it with my knowledge that the doctor was furnished with a supply of creatures from India, I felt that I was probably on the right track. The idea of using a form of poison which could not possibly be discovered by any chemical test was just such a one as would occur to a clever and ruthless man who had had an Eastern training. The rapidity with which such a poison would take effect would also, from his point of view, be an advantage. It would be a sharp-eyed coroner, indeed, who could distinguish the two little dark punctures which would show where the poison fangs had done their work. Then I thought of the whistle. Of course he must recall the snake before the morning light revealed it to the victim. He had trained it, probably by the use of the milk which we saw, to return to him when summoned. He would put it through this ventilator at the hour that he thought best, with the certainty that it would crawl down the rope and land on the bed. It might or might not bite the occupant, perhaps she might escape every night for a week, but sooner or later she must fall a victim. "I had come to these conclusions before ever I had entered his room. An inspection of his chair showed me that he had been in the habit of standing on it, which of course would be necessary in order that he should reach the ventilator. The sight of the safe, the saucer of milk, and the loop of whipcord were enough to finally dispel any doubts which may have remained. The metallic clang heard by Miss Stoner was obviously caused by her stepfather hastily closing the door of his safe upon its terrible occupant. Having once made up my mind, you know the steps which I took in order to put the matter to the proof. I heard the creature hiss as I have no doubt that you did also, and I instantly lit the light and attacked it." "With the result of driving it through the ventilator." "And also with the result of causing it to turn upon its master at the other side. Some of the blows of my cane came home and roused its snakish temper, so that it flew upon the first person it saw. In this way I am no doubt indirectly responsible for Dr. Grimesby Roylott's death, and I cannot say that it is likely to weigh very heavily upon my conscience." IX. THE ADVENTURE OF THE ENGINEER'S THUMB Of all the problems which have been submitted to my friend, Mr. Sherlock Holmes, for solution during the years of our intimacy, there were only two which I was the means of introducing to his notice--that of Mr. Hatherley's thumb, and that of Colonel Warburton's madness. Of these the latter may have afforded a finer field for an acute and original observer, but the other was so strange in its inception and so dramatic in its details that it may be the more worthy of being placed upon record, even if it gave my friend fewer openings for those deductive methods of reasoning by which he achieved such remarkable results. The story has, I believe, been told more than once in the newspapers, but, like all such narratives, its effect is much less striking when set forth en bloc in a single half-column of print than when the facts slowly evolve before your own eyes, and the mystery clears gradually away as each new discovery furnishes a step which leads on to the complete truth. At the time the circumstances made a deep impression upon me, and the lapse of two years has hardly served to weaken the effect. It was in the summer of '89, not long after my marriage, that the events occurred which I am now about to summarise. I had returned to civil practice and had finally abandoned Holmes in his Baker Street rooms, although I continually visited him and occasionally even persuaded him to forgo his Bohemian habits so far as to come and visit us. My practice had steadily increased, and as I happened to live at no very great distance from Paddington Station, I got a few patients from among the officials. One of these, whom I had cured of a painful and lingering disease, was never weary of advertising my virtues and of endeavouring to send me on every sufferer over whom he might have any influence. One morning, at a little before seven o'clock, I was awakened by the maid tapping at the door to announce that two men had come from Paddington and were waiting in the consulting-room. I dressed hurriedly, for I knew by experience that railway cases were seldom trivial, and hastened downstairs. As I descended, my old ally, the guard, came out of the room and closed the door tightly behind him. "I've got him here," he whispered, jerking his thumb over his shoulder; "he's all right." "What is it, then?" I asked, for his manner suggested that it was some strange creature which he had caged up in my room. "It's a new patient," he whispered. "I thought I'd bring him round myself; then he couldn't slip away. There he is, all safe and sound. I must go now, Doctor; I have my dooties, just the same as you." And off he went, this trusty tout, without even giving me time to thank him. I entered my consulting-room and found a gentleman seated by the table. He was quietly dressed in a suit of heather tweed with a soft cloth cap which he had laid down upon my books. Round one of his hands he had a handkerchief wrapped, which was mottled all over with bloodstains. He was young, not more than five-and-twenty, I should say, with a strong, masculine face; but he was exceedingly pale and gave me the impression of a man who was suffering from some strong agitation, which it took all his strength of mind to control. "I am sorry to knock you up so early, Doctor," said he, "but I have had a very serious accident during the night. I came in by train this morning, and on inquiring at Paddington as to where I might find a doctor, a worthy fellow very kindly escorted me here. I gave the maid a card, but I see that she has left it upon the side-table." I took it up and glanced at it. "Mr. Victor Hatherley, hydraulic engineer, 16A, Victoria Street (3rd floor)." That was the name, style, and abode of my morning visitor. "I regret that I have kept you waiting," said I, sitting down in my library-chair. "You are fresh from a night journey, I understand, which is in itself a monotonous occupation." "Oh, my night could not be called monotonous," said he, and laughed. He laughed very heartily, with a high, ringing note, leaning back in his chair and shaking his sides. All my medical instincts rose up against that laugh. "Stop it!" I cried; "pull yourself together!" and I poured out some water from a caraffe. It was useless, however. He was off in one of those hysterical outbursts which come upon a strong nature when some great crisis is over and gone. Presently he came to himself once more, very weary and pale-looking. "I have been making a fool of myself," he gasped. "Not at all. Drink this." I dashed some brandy into the water, and the colour began to come back to his bloodless cheeks. "That's better!" said he. "And now, Doctor, perhaps you would kindly attend to my thumb, or rather to the place where my thumb used to be." He unwound the handkerchief and held out his hand. It gave even my hardened nerves a shudder to look at it. There were four protruding fingers and a horrid red, spongy surface where the thumb should have been. It had been hacked or torn right out from the roots. "Good heavens!" I cried, "this is a terrible injury. It must have bled considerably." "Yes, it did. I fainted when it was done, and I think that I must have been senseless for a long time. When I came to I found that it was still bleeding, so I tied one end of my handkerchief very tightly round the wrist and braced it up with a twig." "Excellent! You should have been a surgeon." "It is a question of hydraulics, you see, and came within my own province." "This has been done," said I, examining the wound, "by a very heavy and sharp instrument." "A thing like a cleaver," said he. "An accident, I presume?" "By no means." "What! a murderous attack?" "Very murderous indeed." "You horrify me." I sponged the wound, cleaned it, dressed it, and finally covered it over with cotton wadding and carbolised bandages. He lay back without wincing, though he bit his lip from time to time. "How is that?" I asked when I had finished. "Capital! Between your brandy and your bandage, I feel a new man. I was very weak, but I have had a good deal to go through." "Perhaps you had better not speak of the matter. It is evidently trying to your nerves." "Oh, no, not now. I shall have to tell my tale to the police; but, between ourselves, if it were not for the convincing evidence of this wound of mine, I should be surprised if they believed my statement, for it is a very extraordinary one, and I have not much in the way of proof with which to back it up; and, even if they believe me, the clues which I can give them are so vague that it is a question whether justice will be done." "Ha!" cried I, "if it is anything in the nature of a problem which you desire to see solved, I should strongly recommend you to come to my friend, Mr. Sherlock Holmes, before you go to the official police." "Oh, I have heard of that fellow," answered my visitor, "and I should be very glad if he would take the matter up, though of course I must use the official police as well. Would you give me an introduction to him?" "I'll do better. I'll take you round to him myself." "I should be immensely obliged to you." "We'll call a cab and go together. We shall just be in time to have a little breakfast with him. Do you feel equal to it?" "Yes; I shall not feel easy until I have told my story." "Then my servant will call a cab, and I shall be with you in an instant." I rushed upstairs, explained the matter shortly to my wife, and in five minutes was inside a hansom, driving with my new acquaintance to Baker Street. Sherlock Holmes was, as I expected, lounging about his sitting-room in his dressing-gown, reading the agony column of The Times and smoking his before-breakfast pipe, which was composed of all the plugs and dottles left from his smokes of the day before, all carefully dried and collected on the corner of the mantelpiece. He received us in his quietly genial fashion, ordered fresh rashers and eggs, and joined us in a hearty meal. When it was concluded he settled our new acquaintance upon the sofa, placed a pillow beneath his head, and laid a glass of brandy and water within his reach. "It is easy to see that your experience has been no common one, Mr. Hatherley," said he. "Pray, lie down there and make yourself absolutely at home. Tell us what you can, but stop when you are tired and keep up your strength with a little stimulant." "Thank you," said my patient, "but I have felt another man since the doctor bandaged me, and I think that your breakfast has completed the cure. I shall take up as little of your valuable time as possible, so I shall start at once upon my peculiar experiences." Holmes sat in his big armchair with the weary, heavy-lidded expression which veiled his keen and eager nature, while I sat opposite to him, and we listened in silence to the strange story which our visitor detailed to us. "You must know," said he, "that I am an orphan and a bachelor, residing alone in lodgings in London. By profession I am a hydraulic engineer, and I have had considerable experience of my work during the seven years that I was apprenticed to Venner & Matheson, the well-known firm, of Greenwich. Two years ago, having served my time, and having also come into a fair sum of money through my poor father's death, I determined to start in business for myself and took professional chambers in Victoria Street. "I suppose that everyone finds his first independent start in business a dreary experience. To me it has been exceptionally so. During two years I have had three consultations and one small job, and that is absolutely all that my profession has brought me. My gross takings amount to 27 pounds 10s. Every day, from nine in the morning until four in the afternoon, I waited in my little den, until at last my heart began to sink, and I came to believe that I should never have any practice at all. "Yesterday, however, just as I was thinking of leaving the office, my clerk entered to say there was a gentleman waiting who wished to see me upon business. He brought up a card, too, with the name of 'Colonel Lysander Stark' engraved upon it. Close at his heels came the colonel himself, a man rather over the middle size, but of an exceeding thinness. I do not think that I have ever seen so thin a man. His whole face sharpened away into nose and chin, and the skin of his cheeks was drawn quite tense over his outstanding bones. Yet this emaciation seemed to be his natural habit, and due to no disease, for his eye was bright, his step brisk, and his bearing assured. He was plainly but neatly dressed, and his age, I should judge, would be nearer forty than thirty. "'Mr. Hatherley?' said he, with something of a German accent. 'You have been recommended to me, Mr. Hatherley, as being a man who is not only proficient in his profession but is also discreet and capable of preserving a secret.' "I bowed, feeling as flattered as any young man would at such an address. 'May I ask who it was who gave me so good a character?' "'Well, perhaps it is better that I should not tell you that just at this moment. I have it from the same source that you are both an orphan and a bachelor and are residing alone in London.' "'That is quite correct,' I answered; 'but you will excuse me if I say that I cannot see how all this bears upon my professional qualifications. I understand that it was on a professional matter that you wished to speak to me?' "'Undoubtedly so. But you will find that all I say is really to the point. I have a professional commission for you, but absolute secrecy is quite essential--absolute secrecy, you understand, and of course we may expect that more from a man who is alone than from one who lives in the bosom of his family.' "'If I promise to keep a secret,' said I, 'you may absolutely depend upon my doing so.' "He looked very hard at me as I spoke, and it seemed to me that I had never seen so suspicious and questioning an eye. "'Do you promise, then?' said he at last. "'Yes, I promise.' "'Absolute and complete silence before, during, and after? No reference to the matter at all, either in word or writing?' "'I have already given you my word.' "'Very good.' He suddenly sprang up, and darting like lightning across the room he flung open the door. The passage outside was empty. "'That's all right,' said he, coming back. 'I know that clerks are sometimes curious as to their master's affairs. Now we can talk in safety.' He drew up his chair very close to mine and began to stare at me again with the same questioning and thoughtful look. "A feeling of repulsion, and of something akin to fear had begun to rise within me at the strange antics of this fleshless man. Even my dread of losing a client could not restrain me from showing my impatience. "'I beg that you will state your business, sir,' said I; 'my time is of value.' Heaven forgive me for that last sentence, but the words came to my lips. "'How would fifty guineas for a night's work suit you?' he asked. "'Most admirably.' "'I say a night's work, but an hour's would be nearer the mark. I simply want your opinion about a hydraulic stamping machine which has got out of gear. If you show us what is wrong we shall soon set it right ourselves. What do you think of such a commission as that?' "'The work appears to be light and the pay munificent.' "'Precisely so. We shall want you to come to-night by the last train.' "'Where to?' "'To Eyford, in Berkshire. It is a little place near the borders of Oxfordshire, and within seven miles of Reading. There is a train from Paddington which would bring you there at about 11:15.' "'Very good.' "'I shall come down in a carriage to meet you.' "'There is a drive, then?' "'Yes, our little place is quite out in the country. It is a good seven miles from Eyford Station.' "'Then we can hardly get there before midnight. I suppose there would be no chance of a train back. I should be compelled to stop the night.' "'Yes, we could easily give you a shake-down.' "'That is very awkward. Could I not come at some more convenient hour?' "'We have judged it best that you should come late. It is to recompense you for any inconvenience that we are paying to you, a young and unknown man, a fee which would buy an opinion from the very heads of your profession. Still, of course, if you would like to draw out of the business, there is plenty of time to do so.' "I thought of the fifty guineas, and of how very useful they would be to me. 'Not at all,' said I, 'I shall be very happy to accommodate myself to your wishes. I should like, however, to understand a little more clearly what it is that you wish me to do.' "'Quite so. It is very natural that the pledge of secrecy which we have exacted from you should have aroused your curiosity. I have no wish to commit you to anything without your having it all laid before you. I suppose that we are absolutely safe from eavesdroppers?' "'Entirely.' "'Then the matter stands thus. You are probably aware that fuller's-earth is a valuable product, and that it is only found in one or two places in England?' "'I have heard so.' "'Some little time ago I bought a small place--a very small place--within ten miles of Reading. I was fortunate enough to discover that there was a deposit of fuller's-earth in one of my fields. On examining it, however, I found that this deposit was a comparatively small one, and that it formed a link between two very much larger ones upon the right and left--both of them, however, in the grounds of my neighbours. These good people were absolutely ignorant that their land contained that which was quite as valuable as a gold-mine. Naturally, it was to my interest to buy their land before they discovered its true value, but unfortunately I had no capital by which I could do this. I took a few of my friends into the secret, however, and they suggested that we should quietly and secretly work our own little deposit and that in this way we should earn the money which would enable us to buy the neighbouring fields. This we have now been doing for some time, and in order to help us in our operations we erected a hydraulic press. This press, as I have already explained, has got out of order, and we wish your advice upon the subject. We guard our secret very jealously, however, and if it once became known that we had hydraulic engineers coming to our little house, it would soon rouse inquiry, and then, if the facts came out, it would be good-bye to any chance of getting these fields and carrying out our plans. That is why I have made you promise me that you will not tell a human being that you are going to Eyford to-night. I hope that I make it all plain?' "'I quite follow you,' said I. 'The only point which I could not quite understand was what use you could make of a hydraulic press in excavating fuller's-earth, which, as I understand, is dug out like gravel from a pit.' "'Ah!' said he carelessly, 'we have our own process. We compress the earth into bricks, so as to remove them without revealing what they are. But that is a mere detail. I have taken you fully into my confidence now, Mr. Hatherley, and I have shown you how I trust you.' He rose as he spoke. 'I shall expect you, then, at Eyford at 11:15.' "'I shall certainly be there.' "'And not a word to a soul.' He looked at me with a last long, questioning gaze, and then, pressing my hand in a cold, dank grasp, he hurried from the room. "Well, when I came to think it all over in cool blood I was very much astonished, as you may both think, at this sudden commission which had been intrusted to me. On the one hand, of course, I was glad, for the fee was at least tenfold what I should have asked had I set a price upon my own services, and it was possible that this order might lead to other ones. On the other hand, the face and manner of my patron had made an unpleasant impression upon me, and I could not think that his explanation of the fuller's-earth was sufficient to explain the necessity for my coming at midnight, and his extreme anxiety lest I should tell anyone of my errand. However, I threw all fears to the winds, ate a hearty supper, drove to Paddington, and started off, having obeyed to the letter the injunction as to holding my tongue. "At Reading I had to change not only my carriage but my station. However, I was in time for the last train to Eyford, and I reached the little dim-lit station after eleven o'clock. I was the only passenger who got out there, and there was no one upon the platform save a single sleepy porter with a lantern. As I passed out through the wicket gate, however, I found my acquaintance of the morning waiting in the shadow upon the other side. Without a word he grasped my arm and hurried me into a carriage, the door of which was standing open. He drew up the windows on either side, tapped on the wood-work, and away we went as fast as the horse could go." "One horse?" interjected Holmes. "Yes, only one." "Did you observe the colour?" "Yes, I saw it by the side-lights when I was stepping into the carriage. It was a chestnut." "Tired-looking or fresh?" "Oh, fresh and glossy." "Thank you. I am sorry to have interrupted you. Pray continue your most interesting statement." "Away we went then, and we drove for at least an hour. Colonel Lysander Stark had said that it was only seven miles, but I should think, from the rate that we seemed to go, and from the time that we took, that it must have been nearer twelve. He sat at my side in silence all the time, and I was aware, more than once when I glanced in his direction, that he was looking at me with great intensity. The country roads seem to be not very good in that part of the world, for we lurched and jolted terribly. I tried to look out of the windows to see something of where we were, but they were made of frosted glass, and I could make out nothing save the occasional bright blur of a passing light. Now and then I hazarded some remark to break the monotony of the journey, but the colonel answered only in monosyllables, and the conversation soon flagged. At last, however, the bumping of the road was exchanged for the crisp smoothness of a gravel-drive, and the carriage came to a stand. Colonel Lysander Stark sprang out, and, as I followed after him, pulled me swiftly into a porch which gaped in front of us. We stepped, as it were, right out of the carriage and into the hall, so that I failed to catch the most fleeting glance of the front of the house. The instant that I had crossed the threshold the door slammed heavily behind us, and I heard faintly the rattle of the wheels as the carriage drove away. "It was pitch dark inside the house, and the colonel fumbled about looking for matches and muttering under his breath. Suddenly a door opened at the other end of the passage, and a long, golden bar of light shot out in our direction. It grew broader, and a woman appeared with a lamp in her hand, which she held above her head, pushing her face forward and peering at us. I could see that she was pretty, and from the gloss with which the light shone upon her dark dress I knew that it was a rich material. She spoke a few words in a foreign tongue in a tone as though asking a question, and when my companion answered in a gruff monosyllable she gave such a start that the lamp nearly fell from her hand. Colonel Stark went up to her, whispered something in her ear, and then, pushing her back into the room from whence she had come, he walked towards me again with the lamp in his hand. "'Perhaps you will have the kindness to wait in this room for a few minutes,' said he, throwing open another door. It was a quiet, little, plainly furnished room, with a round table in the centre, on which several German books were scattered. Colonel Stark laid down the lamp on the top of a harmonium beside the door. 'I shall not keep you waiting an instant,' said he, and vanished into the darkness. "I glanced at the books upon the table, and in spite of my ignorance of German I could see that two of them were treatises on science, the others being volumes of poetry. Then I walked across to the window, hoping that I might catch some glimpse of the country-side, but an oak shutter, heavily barred, was folded across it. It was a wonderfully silent house. There was an old clock ticking loudly somewhere in the passage, but otherwise everything was deadly still. A vague feeling of uneasiness began to steal over me. Who were these German people, and what were they doing living in this strange, out-of-the-way place? And where was the place? I was ten miles or so from Eyford, that was all I knew, but whether north, south, east, or west I had no idea. For that matter, Reading, and possibly other large towns, were within that radius, so the place might not be so secluded, after all. Yet it was quite certain, from the absolute stillness, that we were in the country. I paced up and down the room, humming a tune under my breath to keep up my spirits and feeling that I was thoroughly earning my fifty-guinea fee. "Suddenly, without any preliminary sound in the midst of the utter stillness, the door of my room swung slowly open. The woman was standing in the aperture, the darkness of the hall behind her, the yellow light from my lamp beating upon her eager and beautiful face. I could see at a glance that she was sick with fear, and the sight sent a chill to my own heart. She held up one shaking finger to warn me to be silent, and she shot a few whispered words of broken English at me, her eyes glancing back, like those of a frightened horse, into the gloom behind her. "'I would go,' said she, trying hard, as it seemed to me, to speak calmly; 'I would go. I should not stay here. There is no good for you to do.' "'But, madam,' said I, 'I have not yet done what I came for. I cannot possibly leave until I have seen the machine.' "'It is not worth your while to wait,' she went on. 'You can pass through the door; no one hinders.' And then, seeing that I smiled and shook my head, she suddenly threw aside her constraint and made a step forward, with her hands wrung together. 'For the love of Heaven!' she whispered, 'get away from here before it is too late!' "But I am somewhat headstrong by nature, and the more ready to engage in an affair when there is some obstacle in the way. I thought of my fifty-guinea fee, of my wearisome journey, and of the unpleasant night which seemed to be before me. Was it all to go for nothing? Why should I slink away without having carried out my commission, and without the payment which was my due? This woman might, for all I knew, be a monomaniac. With a stout bearing, therefore, though her manner had shaken me more than I cared to confess, I still shook my head and declared my intention of remaining where I was. She was about to renew her entreaties when a door slammed overhead, and the sound of several footsteps was heard upon the stairs. She listened for an instant, threw up her hands with a despairing gesture, and vanished as suddenly and as noiselessly as she had come. "The newcomers were Colonel Lysander Stark and a short thick man with a chinchilla beard growing out of the creases of his double chin, who was introduced to me as Mr. Ferguson. "'This is my secretary and manager,' said the colonel. 'By the way, I was under the impression that I left this door shut just now. I fear that you have felt the draught.' "'On the contrary,' said I, 'I opened the door myself because I felt the room to be a little close.' "He shot one of his suspicious looks at me. 'Perhaps we had better proceed to business, then,' said he. 'Mr. Ferguson and I will take you up to see the machine.' "'I had better put my hat on, I suppose.' "'Oh, no, it is in the house.' "'What, you dig fuller's-earth in the house?' "'No, no. This is only where we compress it. But never mind that. All we wish you to do is to examine the machine and to let us know what is wrong with it.' "We went upstairs together, the colonel first with the lamp, the fat manager and I behind him. It was a labyrinth of an old house, with corridors, passages, narrow winding staircases, and little low doors, the thresholds of which were hollowed out by the generations who had crossed them. There were no carpets and no signs of any furniture above the ground floor, while the plaster was peeling off the walls, and the damp was breaking through in green, unhealthy blotches. I tried to put on as unconcerned an air as possible, but I had not forgotten the warnings of the lady, even though I disregarded them, and I kept a keen eye upon my two companions. Ferguson appeared to be a morose and silent man, but I could see from the little that he said that he was at least a fellow-countryman. "Colonel Lysander Stark stopped at last before a low door, which he unlocked. Within was a small, square room, in which the three of us could hardly get at one time. Ferguson remained outside, and the colonel ushered me in. "'We are now,' said he, 'actually within the hydraulic press, and it would be a particularly unpleasant thing for us if anyone were to turn it on. The ceiling of this small chamber is really the end of the descending piston, and it comes down with the force of many tons upon this metal floor. There are small lateral columns of water outside which receive the force, and which transmit and multiply it in the manner which is familiar to you. The machine goes readily enough, but there is some stiffness in the working of it, and it has lost a little of its force. Perhaps you will have the goodness to look it over and to show us how we can set it right.' "I took the lamp from him, and I examined the machine very thoroughly. It was indeed a gigantic one, and capable of exercising enormous pressure. When I passed outside, however, and pressed down the levers which controlled it, I knew at once by the whishing sound that there was a slight leakage, which allowed a regurgitation of water through one of the side cylinders. An examination showed that one of the india-rubber bands which was round the head of a driving-rod had shrunk so as not quite to fill the socket along which it worked. This was clearly the cause of the loss of power, and I pointed it out to my companions, who followed my remarks very carefully and asked several practical questions as to how they should proceed to set it right. When I had made it clear to them, I returned to the main chamber of the machine and took a good look at it to satisfy my own curiosity. It was obvious at a glance that the story of the fuller's-earth was the merest fabrication, for it would be absurd to suppose that so powerful an engine could be designed for so inadequate a purpose. The walls were of wood, but the floor consisted of a large iron trough, and when I came to examine it I could see a crust of metallic deposit all over it. I had stooped and was scraping at this to see exactly what it was when I heard a muttered exclamation in German and saw the cadaverous face of the colonel looking down at me. "'What are you doing there?' he asked. "I felt angry at having been tricked by so elaborate a story as that which he had told me. 'I was admiring your fuller's-earth,' said I; 'I think that I should be better able to advise you as to your machine if I knew what the exact purpose was for which it was used.' "The instant that I uttered the words I regretted the rashness of my speech. His face set hard, and a baleful light sprang up in his grey eyes. "'Very well,' said he, 'you shall know all about the machine.' He took a step backward, slammed the little door, and turned the key in the lock. I rushed towards it and pulled at the handle, but it was quite secure, and did not give in the least to my kicks and shoves. 'Hullo!' I yelled. 'Hullo! Colonel! Let me out!' "And then suddenly in the silence I heard a sound which sent my heart into my mouth. It was the clank of the levers and the swish of the leaking cylinder. He had set the engine at work. The lamp still stood upon the floor where I had placed it when examining the trough. By its light I saw that the black ceiling was coming down upon me, slowly, jerkily, but, as none knew better than myself, with a force which must within a minute grind me to a shapeless pulp. I threw myself, screaming, against the door, and dragged with my nails at the lock. I implored the colonel to let me out, but the remorseless clanking of the levers drowned my cries. The ceiling was only a foot or two above my head, and with my hand upraised I could feel its hard, rough surface. Then it flashed through my mind that the pain of my death would depend very much upon the position in which I met it. If I lay on my face the weight would come upon my spine, and I shuddered to think of that dreadful snap. Easier the other way, perhaps; and yet, had I the nerve to lie and look up at that deadly black shadow wavering down upon me? Already I was unable to stand erect, when my eye caught something which brought a gush of hope back to my heart. "I have said that though the floor and ceiling were of iron, the walls were of wood. As I gave a last hurried glance around, I saw a thin line of yellow light between two of the boards, which broadened and broadened as a small panel was pushed backward. For an instant I could hardly believe that here was indeed a door which led away from death. The next instant I threw myself through, and lay half-fainting upon the other side. The panel had closed again behind me, but the crash of the lamp, and a few moments afterwards the clang of the two slabs of metal, told me how narrow had been my escape. "I was recalled to myself by a frantic plucking at my wrist, and I found myself lying upon the stone floor of a narrow corridor, while a woman bent over me and tugged at me with her left hand, while she held a candle in her right. It was the same good friend whose warning I had so foolishly rejected. "'Come! come!' she cried breathlessly. 'They will be here in a moment. They will see that you are not there. Oh, do not waste the so-precious time, but come!' "This time, at least, I did not scorn her advice. I staggered to my feet and ran with her along the corridor and down a winding stair. The latter led to another broad passage, and just as we reached it we heard the sound of running feet and the shouting of two voices, one answering the other from the floor on which we were and from the one beneath. My guide stopped and looked about her like one who is at her wit's end. Then she threw open a door which led into a bedroom, through the window of which the moon was shining brightly. "'It is your only chance,' said she. 'It is high, but it may be that you can jump it.' "As she spoke a light sprang into view at the further end of the passage, and I saw the lean figure of Colonel Lysander Stark rushing forward with a lantern in one hand and a weapon like a butcher's cleaver in the other. I rushed across the bedroom, flung open the window, and looked out. How quiet and sweet and wholesome the garden looked in the moonlight, and it could not be more than thirty feet down. I clambered out upon the sill, but I hesitated to jump until I should have heard what passed between my saviour and the ruffian who pursued me. If she were ill-used, then at any risks I was determined to go back to her assistance. The thought had hardly flashed through my mind before he was at the door, pushing his way past her; but she threw her arms round him and tried to hold him back. "'Fritz! Fritz!' she cried in English, 'remember your promise after the last time. You said it should not be again. He will be silent! Oh, he will be silent!' "'You are mad, Elise!' he shouted, struggling to break away from her. 'You will be the ruin of us. He has seen too much. Let me pass, I say!' He dashed her to one side, and, rushing to the window, cut at me with his heavy weapon. I had let myself go, and was hanging by the hands to the sill, when his blow fell. I was conscious of a dull pain, my grip loosened, and I fell into the garden below. "I was shaken but not hurt by the fall; so I picked myself up and rushed off among the bushes as hard as I could run, for I understood that I was far from being out of danger yet. Suddenly, however, as I ran, a deadly dizziness and sickness came over me. I glanced down at my hand, which was throbbing painfully, and then, for the first time, saw that my thumb had been cut off and that the blood was pouring from my wound. I endeavoured to tie my handkerchief round it, but there came a sudden buzzing in my ears, and next moment I fell in a dead faint among the rose-bushes. "How long I remained unconscious I cannot tell. It must have been a very long time, for the moon had sunk, and a bright morning was breaking when I came to myself. My clothes were all sodden with dew, and my coat-sleeve was drenched with blood from my wounded thumb. The smarting of it recalled in an instant all the particulars of my night's adventure, and I sprang to my feet with the feeling that I might hardly yet be safe from my pursuers. But to my astonishment, when I came to look round me, neither house nor garden were to be seen. I had been lying in an angle of the hedge close by the highroad, and just a little lower down was a long building, which proved, upon my approaching it, to be the very station at which I had arrived upon the previous night. Were it not for the ugly wound upon my hand, all that had passed during those dreadful hours might have been an evil dream. "Half dazed, I went into the station and asked about the morning train. There would be one to Reading in less than an hour. The same porter was on duty, I found, as had been there when I arrived. I inquired of him whether he had ever heard of Colonel Lysander Stark. The name was strange to him. Had he observed a carriage the night before waiting for me? No, he had not. Was there a police-station anywhere near? There was one about three miles off. "It was too far for me to go, weak and ill as I was. I determined to wait until I got back to town before telling my story to the police. It was a little past six when I arrived, so I went first to have my wound dressed, and then the doctor was kind enough to bring me along here. I put the case into your hands and shall do exactly what you advise." We both sat in silence for some little time after listening to this extraordinary narrative. Then Sherlock Holmes pulled down from the shelf one of the ponderous commonplace books in which he placed his cuttings. "Here is an advertisement which will interest you," said he. "It appeared in all the papers about a year ago. Listen to this: 'Lost, on the 9th inst., Mr. Jeremiah Hayling, aged twenty-six, a hydraulic engineer. Left his lodgings at ten o'clock at night, and has not been heard of since. Was dressed in,' etc., etc. Ha! That represents the last time that the colonel needed to have his machine overhauled, I fancy." "Good heavens!" cried my patient. "Then that explains what the girl said." "Undoubtedly. It is quite clear that the colonel was a cool and desperate man, who was absolutely determined that nothing should stand in the way of his little game, like those out-and-out pirates who will leave no survivor from a captured ship. Well, every moment now is precious, so if you feel equal to it we shall go down to Scotland Yard at once as a preliminary to starting for Eyford." Some three hours or so afterwards we were all in the train together, bound from Reading to the little Berkshire village. There were Sherlock Holmes, the hydraulic engineer, Inspector Bradstreet, of Scotland Yard, a plain-clothes man, and myself. Bradstreet had spread an ordnance map of the county out upon the seat and was busy with his compasses drawing a circle with Eyford for its centre. "There you are," said he. "That circle is drawn at a radius of ten miles from the village. The place we want must be somewhere near that line. You said ten miles, I think, sir." "It was an hour's good drive." "And you think that they brought you back all that way when you were unconscious?" "They must have done so. I have a confused memory, too, of having been lifted and conveyed somewhere." "What I cannot understand," said I, "is why they should have spared you when they found you lying fainting in the garden. Perhaps the villain was softened by the woman's entreaties." "I hardly think that likely. I never saw a more inexorable face in my life." "Oh, we shall soon clear up all that," said Bradstreet. "Well, I have drawn my circle, and I only wish I knew at what point upon it the folk that we are in search of are to be found." "I think I could lay my finger on it," said Holmes quietly. "Really, now!" cried the inspector, "you have formed your opinion! Come, now, we shall see who agrees with you. I say it is south, for the country is more deserted there." "And I say east," said my patient. "I am for west," remarked the plain-clothes man. "There are several quiet little villages up there." "And I am for north," said I, "because there are no hills there, and our friend says that he did not notice the carriage go up any." "Come," cried the inspector, laughing; "it's a very pretty diversity of opinion. We have boxed the compass among us. Who do you give your casting vote to?" "You are all wrong." "But we can't all be." "Oh, yes, you can. This is my point." He placed his finger in the centre of the circle. "This is where we shall find them." "But the twelve-mile drive?" gasped Hatherley. "Six out and six back. Nothing simpler. You say yourself that the horse was fresh and glossy when you got in. How could it be that if it had gone twelve miles over heavy roads?" "Indeed, it is a likely ruse enough," observed Bradstreet thoughtfully. "Of course there can be no doubt as to the nature of this gang." "None at all," said Holmes. "They are coiners on a large scale, and have used the machine to form the amalgam which has taken the place of silver." "We have known for some time that a clever gang was at work," said the inspector. "They have been turning out half-crowns by the thousand. We even traced them as far as Reading, but could get no farther, for they had covered their traces in a way that showed that they were very old hands. But now, thanks to this lucky chance, I think that we have got them right enough." But the inspector was mistaken, for those criminals were not destined to fall into the hands of justice. As we rolled into Eyford Station we saw a gigantic column of smoke which streamed up from behind a small clump of trees in the neighbourhood and hung like an immense ostrich feather over the landscape. "A house on fire?" asked Bradstreet as the train steamed off again on its way. "Yes, sir!" said the station-master. "When did it break out?" "I hear that it was during the night, sir, but it has got worse, and the whole place is in a blaze." "Whose house is it?" "Dr. Becher's." "Tell me," broke in the engineer, "is Dr. Becher a German, very thin, with a long, sharp nose?" The station-master laughed heartily. "No, sir, Dr. Becher is an Englishman, and there isn't a man in the parish who has a better-lined waistcoat. But he has a gentleman staying with him, a patient, as I understand, who is a foreigner, and he looks as if a little good Berkshire beef would do him no harm." The station-master had not finished his speech before we were all hastening in the direction of the fire. The road topped a low hill, and there was a great widespread whitewashed building in front of us, spouting fire at every chink and window, while in the garden in front three fire-engines were vainly striving to keep the flames under. "That's it!" cried Hatherley, in intense excitement. "There is the gravel-drive, and there are the rose-bushes where I lay. That second window is the one that I jumped from." "Well, at least," said Holmes, "you have had your revenge upon them. There can be no question that it was your oil-lamp which, when it was crushed in the press, set fire to the wooden walls, though no doubt they were too excited in the chase after you to observe it at the time. Now keep your eyes open in this crowd for your friends of last night, though I very much fear that they are a good hundred miles off by now." And Holmes' fears came to be realised, for from that day to this no word has ever been heard either of the beautiful woman, the sinister German, or the morose Englishman. Early that morning a peasant had met a cart containing several people and some very bulky boxes driving rapidly in the direction of Reading, but there all traces of the fugitives disappeared, and even Holmes' ingenuity failed ever to discover the least clue as to their whereabouts. The firemen had been much perturbed at the strange arrangements which they had found within, and still more so by discovering a newly severed human thumb upon a window-sill of the second floor. About sunset, however, their efforts were at last successful, and they subdued the flames, but not before the roof had fallen in, and the whole place been reduced to such absolute ruin that, save some twisted cylinders and iron piping, not a trace remained of the machinery which had cost our unfortunate acquaintance so dearly. Large masses of nickel and of tin were discovered stored in an out-house, but no coins were to be found, which may have explained the presence of those bulky boxes which have been already referred to. How our hydraulic engineer had been conveyed from the garden to the spot where he recovered his senses might have remained forever a mystery were it not for the soft mould, which told us a very plain tale. He had evidently been carried down by two persons, one of whom had remarkably small feet and the other unusually large ones. On the whole, it was most probable that the silent Englishman, being less bold or less murderous than his companion, had assisted the woman to bear the unconscious man out of the way of danger. "Well," said our engineer ruefully as we took our seats to return once more to London, "it has been a pretty business for me! I have lost my thumb and I have lost a fifty-guinea fee, and what have I gained?" "Experience," said Holmes, laughing. "Indirectly it may be of value, you know; you have only to put it into words to gain the reputation of being excellent company for the remainder of your existence." X. THE ADVENTURE OF THE NOBLE BACHELOR The Lord St. Simon marriage, and its curious termination, have long ceased to be a subject of interest in those exalted circles in which the unfortunate bridegroom moves. Fresh scandals have eclipsed it, and their more piquant details have drawn the gossips away from this four-year-old drama. As I have reason to believe, however, that the full facts have never been revealed to the general public, and as my friend Sherlock Holmes had a considerable share in clearing the matter up, I feel that no memoir of him would be complete without some little sketch of this remarkable episode. It was a few weeks before my own marriage, during the days when I was still sharing rooms with Holmes in Baker Street, that he came home from an afternoon stroll to find a letter on the table waiting for him. I had remained indoors all day, for the weather had taken a sudden turn to rain, with high autumnal winds, and the Jezail bullet which I had brought back in one of my limbs as a relic of my Afghan campaign throbbed with dull persistence. With my body in one easy-chair and my legs upon another, I had surrounded myself with a cloud of newspapers until at last, saturated with the news of the day, I tossed them all aside and lay listless, watching the huge crest and monogram upon the envelope upon the table and wondering lazily who my friend's noble correspondent could be. "Here is a very fashionable epistle," I remarked as he entered. "Your morning letters, if I remember right, were from a fish-monger and a tide-waiter." "Yes, my correspondence has certainly the charm of variety," he answered, smiling, "and the humbler are usually the more interesting. This looks like one of those unwelcome social summonses which call upon a man either to be bored or to lie." He broke the seal and glanced over the contents. "Oh, come, it may prove to be something of interest, after all." "Not social, then?" "No, distinctly professional." "And from a noble client?" "One of the highest in England." "My dear fellow, I congratulate you." "I assure you, Watson, without affectation, that the status of my client is a matter of less moment to me than the interest of his case. It is just possible, however, that that also may not be wanting in this new investigation. You have been reading the papers diligently of late, have you not?" "It looks like it," said I ruefully, pointing to a huge bundle in the corner. "I have had nothing else to do." "It is fortunate, for you will perhaps be able to post me up. I read nothing except the criminal news and the agony column. The latter is always instructive. But if you have followed recent events so closely you must have read about Lord St. Simon and his wedding?" "Oh, yes, with the deepest interest." "That is well. The letter which I hold in my hand is from Lord St. Simon. I will read it to you, and in return you must turn over these papers and let me have whatever bears upon the matter. This is what he says: "'MY DEAR MR. SHERLOCK HOLMES:--Lord Backwater tells me that I may place implicit reliance upon your judgment and discretion. I have determined, therefore, to call upon you and to consult you in reference to the very painful event which has occurred in connection with my wedding. Mr. Lestrade, of Scotland Yard, is acting already in the matter, but he assures me that he sees no objection to your co-operation, and that he even thinks that it might be of some assistance. I will call at four o'clock in the afternoon, and, should you have any other engagement at that time, I hope that you will postpone it, as this matter is of paramount importance. Yours faithfully, ST. SIMON.' "It is dated from Grosvenor Mansions, written with a quill pen, and the noble lord has had the misfortune to get a smear of ink upon the outer side of his right little finger," remarked Holmes as he folded up the epistle. "He says four o'clock. It is three now. He will be here in an hour." "Then I have just time, with your assistance, to get clear upon the subject. Turn over those papers and arrange the extracts in their order of time, while I take a glance as to who our client is." He picked a red-covered volume from a line of books of reference beside the mantelpiece. "Here he is," said he, sitting down and flattening it out upon his knee. "'Lord Robert Walsingham de Vere St. Simon, second son of the Duke of Balmoral.' Hum! 'Arms: Azure, three caltrops in chief over a fess sable. Born in 1846.' He's forty-one years of age, which is mature for marriage. Was Under-Secretary for the colonies in a late administration. The Duke, his father, was at one time Secretary for Foreign Affairs. They inherit Plantagenet blood by direct descent, and Tudor on the distaff side. Ha! Well, there is nothing very instructive in all this. I think that I must turn to you Watson, for something more solid." "I have very little difficulty in finding what I want," said I, "for the facts are quite recent, and the matter struck me as remarkable. I feared to refer them to you, however, as I knew that you had an inquiry on hand and that you disliked the intrusion of other matters." "Oh, you mean the little problem of the Grosvenor Square furniture van. That is quite cleared up now--though, indeed, it was obvious from the first. Pray give me the results of your newspaper selections." "Here is the first notice which I can find. It is in the personal column of the Morning Post, and dates, as you see, some weeks back: 'A marriage has been arranged,' it says, 'and will, if rumour is correct, very shortly take place, between Lord Robert St. Simon, second son of the Duke of Balmoral, and Miss Hatty Doran, the only daughter of Aloysius Doran. Esq., of San Francisco, Cal., U.S.A.' That is all." "Terse and to the point," remarked Holmes, stretching his long, thin legs towards the fire. "There was a paragraph amplifying this in one of the society papers of the same week. Ah, here it is: 'There will soon be a call for protection in the marriage market, for the present free-trade principle appears to tell heavily against our home product. One by one the management of the noble houses of Great Britain is passing into the hands of our fair cousins from across the Atlantic. An important addition has been made during the last week to the list of the prizes which have been borne away by these charming invaders. Lord St. Simon, who has shown himself for over twenty years proof against the little god's arrows, has now definitely announced his approaching marriage with Miss Hatty Doran, the fascinating daughter of a California millionaire. Miss Doran, whose graceful figure and striking face attracted much attention at the Westbury House festivities, is an only child, and it is currently reported that her dowry will run to considerably over the six figures, with expectancies for the future. As it is an open secret that the Duke of Balmoral has been compelled to sell his pictures within the last few years, and as Lord St. Simon has no property of his own save the small estate of Birchmoor, it is obvious that the Californian heiress is not the only gainer by an alliance which will enable her to make the easy and common transition from a Republican lady to a British peeress.'" "Anything else?" asked Holmes, yawning. "Oh, yes; plenty. Then there is another note in the Morning Post to say that the marriage would be an absolutely quiet one, that it would be at St. George's, Hanover Square, that only half a dozen intimate friends would be invited, and that the party would return to the furnished house at Lancaster Gate which has been taken by Mr. Aloysius Doran. Two days later--that is, on Wednesday last--there is a curt announcement that the wedding had taken place, and that the honeymoon would be passed at Lord Backwater's place, near Petersfield. Those are all the notices which appeared before the disappearance of the bride." "Before the what?" asked Holmes with a start. "The vanishing of the lady." "When did she vanish, then?" "At the wedding breakfast." "Indeed. This is more interesting than it promised to be; quite dramatic, in fact." "Yes; it struck me as being a little out of the common." "They often vanish before the ceremony, and occasionally during the honeymoon; but I cannot call to mind anything quite so prompt as this. Pray let me have the details." "I warn you that they are very incomplete." "Perhaps we may make them less so." "Such as they are, they are set forth in a single article of a morning paper of yesterday, which I will read to you. It is headed, 'Singular Occurrence at a Fashionable Wedding': "'The family of Lord Robert St. Simon has been thrown into the greatest consternation by the strange and painful episodes which have taken place in connection with his wedding. The ceremony, as shortly announced in the papers of yesterday, occurred on the previous morning; but it is only now that it has been possible to confirm the strange rumours which have been so persistently floating about. In spite of the attempts of the friends to hush the matter up, so much public attention has now been drawn to it that no good purpose can be served by affecting to disregard what is a common subject for conversation. "'The ceremony, which was performed at St. George's, Hanover Square, was a very quiet one, no one being present save the father of the bride, Mr. Aloysius Doran, the Duchess of Balmoral, Lord Backwater, Lord Eustace and Lady Clara St. Simon (the younger brother and sister of the bridegroom), and Lady Alicia Whittington. The whole party proceeded afterwards to the house of Mr. Aloysius Doran, at Lancaster Gate, where breakfast had been prepared. It appears that some little trouble was caused by a woman, whose name has not been ascertained, who endeavoured to force her way into the house after the bridal party, alleging that she had some claim upon Lord St. Simon. It was only after a painful and prolonged scene that she was ejected by the butler and the footman. The bride, who had fortunately entered the house before this unpleasant interruption, had sat down to breakfast with the rest, when she complained of a sudden indisposition and retired to her room. Her prolonged absence having caused some comment, her father followed her, but learned from her maid that she had only come up to her chamber for an instant, caught up an ulster and bonnet, and hurried down to the passage. One of the footmen declared that he had seen a lady leave the house thus apparelled, but had refused to credit that it was his mistress, believing her to be with the company. On ascertaining that his daughter had disappeared, Mr. Aloysius Doran, in conjunction with the bridegroom, instantly put themselves in communication with the police, and very energetic inquiries are being made, which will probably result in a speedy clearing up of this very singular business. Up to a late hour last night, however, nothing had transpired as to the whereabouts of the missing lady. There are rumours of foul play in the matter, and it is said that the police have caused the arrest of the woman who had caused the original disturbance, in the belief that, from jealousy or some other motive, she may have been concerned in the strange disappearance of the bride.'" "And is that all?" "Only one little item in another of the morning papers, but it is a suggestive one." "And it is--" "That Miss Flora Millar, the lady who had caused the disturbance, has actually been arrested. It appears that she was formerly a danseuse at the Allegro, and that she has known the bridegroom for some years. There are no further particulars, and the whole case is in your hands now--so far as it has been set forth in the public press." "And an exceedingly interesting case it appears to be. I would not have missed it for worlds. But there is a ring at the bell, Watson, and as the clock makes it a few minutes after four, I have no doubt that this will prove to be our noble client. Do not dream of going, Watson, for I very much prefer having a witness, if only as a check to my own memory." "Lord Robert St. Simon," announced our page-boy, throwing open the door. A gentleman entered, with a pleasant, cultured face, high-nosed and pale, with something perhaps of petulance about the mouth, and with the steady, well-opened eye of a man whose pleasant lot it had ever been to command and to be obeyed. His manner was brisk, and yet his general appearance gave an undue impression of age, for he had a slight forward stoop and a little bend of the knees as he walked. His hair, too, as he swept off his very curly-brimmed hat, was grizzled round the edges and thin upon the top. As to his dress, it was careful to the verge of foppishness, with high collar, black frock-coat, white waistcoat, yellow gloves, patent-leather shoes, and light-coloured gaiters. He advanced slowly into the room, turning his head from left to right, and swinging in his right hand the cord which held his golden eyeglasses. "Good-day, Lord St. Simon," said Holmes, rising and bowing. "Pray take the basket-chair. This is my friend and colleague, Dr. Watson. Draw up a little to the fire, and we will talk this matter over." "A most painful matter to me, as you can most readily imagine, Mr. Holmes. I have been cut to the quick. I understand that you have already managed several delicate cases of this sort, sir, though I presume that they were hardly from the same class of society." "No, I am descending." "I beg pardon." "My last client of the sort was a king." "Oh, really! I had no idea. And which king?" "The King of Scandinavia." "What! Had he lost his wife?" "You can understand," said Holmes suavely, "that I extend to the affairs of my other clients the same secrecy which I promise to you in yours." "Of course! Very right! very right! I'm sure I beg pardon. As to my own case, I am ready to give you any information which may assist you in forming an opinion." "Thank you. I have already learned all that is in the public prints, nothing more. I presume that I may take it as correct--this article, for example, as to the disappearance of the bride." Lord St. Simon glanced over it. "Yes, it is correct, as far as it goes." "But it needs a great deal of supplementing before anyone could offer an opinion. I think that I may arrive at my facts most directly by questioning you." "Pray do so." "When did you first meet Miss Hatty Doran?" "In San Francisco, a year ago." "You were travelling in the States?" "Yes." "Did you become engaged then?" "No." "But you were on a friendly footing?" "I was amused by her society, and she could see that I was amused." "Her father is very rich?" "He is said to be the richest man on the Pacific slope." "And how did he make his money?" "In mining. He had nothing a few years ago. Then he struck gold, invested it, and came up by leaps and bounds." "Now, what is your own impression as to the young lady's--your wife's character?" The nobleman swung his glasses a little faster and stared down into the fire. "You see, Mr. Holmes," said he, "my wife was twenty before her father became a rich man. During that time she ran free in a mining camp and wandered through woods or mountains, so that her education has come from Nature rather than from the schoolmaster. She is what we call in England a tomboy, with a strong nature, wild and free, unfettered by any sort of traditions. She is impetuous--volcanic, I was about to say. She is swift in making up her mind and fearless in carrying out her resolutions. On the other hand, I would not have given her the name which I have the honour to bear"--he gave a little stately cough--"had not I thought her to be at bottom a noble woman. I believe that she is capable of heroic self-sacrifice and that anything dishonourable would be repugnant to her." "Have you her photograph?" "I brought this with me." He opened a locket and showed us the full face of a very lovely woman. It was not a photograph but an ivory miniature, and the artist had brought out the full effect of the lustrous black hair, the large dark eyes, and the exquisite mouth. Holmes gazed long and earnestly at it. Then he closed the locket and handed it back to Lord St. Simon. "The young lady came to London, then, and you renewed your acquaintance?" "Yes, her father brought her over for this last London season. I met her several times, became engaged to her, and have now married her." "She brought, I understand, a considerable dowry?" "A fair dowry. Not more than is usual in my family." "And this, of course, remains to you, since the marriage is a fait accompli?" "I really have made no inquiries on the subject." "Very naturally not. Did you see Miss Doran on the day before the wedding?" "Yes." "Was she in good spirits?" "Never better. She kept talking of what we should do in our future lives." "Indeed! That is very interesting. And on the morning of the wedding?" "She was as bright as possible--at least until after the ceremony." "And did you observe any change in her then?" "Well, to tell the truth, I saw then the first signs that I had ever seen that her temper was just a little sharp. The incident however, was too trivial to relate and can have no possible bearing upon the case." "Pray let us have it, for all that." "Oh, it is childish. She dropped her bouquet as we went towards the vestry. She was passing the front pew at the time, and it fell over into the pew. There was a moment's delay, but the gentleman in the pew handed it up to her again, and it did not appear to be the worse for the fall. Yet when I spoke to her of the matter, she answered me abruptly; and in the carriage, on our way home, she seemed absurdly agitated over this trifling cause." "Indeed! You say that there was a gentleman in the pew. Some of the general public were present, then?" "Oh, yes. It is impossible to exclude them when the church is open." "This gentleman was not one of your wife's friends?" "No, no; I call him a gentleman by courtesy, but he was quite a common-looking person. I hardly noticed his appearance. But really I think that we are wandering rather far from the point." "Lady St. Simon, then, returned from the wedding in a less cheerful frame of mind than she had gone to it. What did she do on re-entering her father's house?" "I saw her in conversation with her maid." "And who is her maid?" "Alice is her name. She is an American and came from California with her." "A confidential servant?" "A little too much so. It seemed to me that her mistress allowed her to take great liberties. Still, of course, in America they look upon these things in a different way." "How long did she speak to this Alice?" "Oh, a few minutes. I had something else to think of." "You did not overhear what they said?" "Lady St. Simon said something about 'jumping a claim.' She was accustomed to use slang of the kind. I have no idea what she meant." "American slang is very expressive sometimes. And what did your wife do when she finished speaking to her maid?" "She walked into the breakfast-room." "On your arm?" "No, alone. She was very independent in little matters like that. Then, after we had sat down for ten minutes or so, she rose hurriedly, muttered some words of apology, and left the room. She never came back." "But this maid, Alice, as I understand, deposes that she went to her room, covered her bride's dress with a long ulster, put on a bonnet, and went out." "Quite so. And she was afterwards seen walking into Hyde Park in company with Flora Millar, a woman who is now in custody, and who had already made a disturbance at Mr. Doran's house that morning." "Ah, yes. I should like a few particulars as to this young lady, and your relations to her." Lord St. Simon shrugged his shoulders and raised his eyebrows. "We have been on a friendly footing for some years--I may say on a very friendly footing. She used to be at the Allegro. I have not treated her ungenerously, and she had no just cause of complaint against me, but you know what women are, Mr. Holmes. Flora was a dear little thing, but exceedingly hot-headed and devotedly attached to me. She wrote me dreadful letters when she heard that I was about to be married, and, to tell the truth, the reason why I had the marriage celebrated so quietly was that I feared lest there might be a scandal in the church. She came to Mr. Doran's door just after we returned, and she endeavoured to push her way in, uttering very abusive expressions towards my wife, and even threatening her, but I had foreseen the possibility of something of the sort, and I had two police fellows there in private clothes, who soon pushed her out again. She was quiet when she saw that there was no good in making a row." "Did your wife hear all this?" "No, thank goodness, she did not." "And she was seen walking with this very woman afterwards?" "Yes. That is what Mr. Lestrade, of Scotland Yard, looks upon as so serious. It is thought that Flora decoyed my wife out and laid some terrible trap for her." "Well, it is a possible supposition." "You think so, too?" "I did not say a probable one. But you do not yourself look upon this as likely?" "I do not think Flora would hurt a fly." "Still, jealousy is a strange transformer of characters. Pray what is your own theory as to what took place?" "Well, really, I came to seek a theory, not to propound one. I have given you all the facts. Since you ask me, however, I may say that it has occurred to me as possible that the excitement of this affair, the consciousness that she had made so immense a social stride, had the effect of causing some little nervous disturbance in my wife." "In short, that she had become suddenly deranged?" "Well, really, when I consider that she has turned her back--I will not say upon me, but upon so much that many have aspired to without success--I can hardly explain it in any other fashion." "Well, certainly that is also a conceivable hypothesis," said Holmes, smiling. "And now, Lord St. Simon, I think that I have nearly all my data. May I ask whether you were seated at the breakfast-table so that you could see out of the window?" "We could see the other side of the road and the Park." "Quite so. Then I do not think that I need to detain you longer. I shall communicate with you." "Should you be fortunate enough to solve this problem," said our client, rising. "I have solved it." "Eh? What was that?" "I say that I have solved it." "Where, then, is my wife?" "That is a detail which I shall speedily supply." Lord St. Simon shook his head. "I am afraid that it will take wiser heads than yours or mine," he remarked, and bowing in a stately, old-fashioned manner he departed. "It is very good of Lord St. Simon to honour my head by putting it on a level with his own," said Sherlock Holmes, laughing. "I think that I shall have a whisky and soda and a cigar after all this cross-questioning. I had formed my conclusions as to the case before our client came into the room." "My dear Holmes!" "I have notes of several similar cases, though none, as I remarked before, which were quite as prompt. My whole examination served to turn my conjecture into a certainty. Circumstantial evidence is occasionally very convincing, as when you find a trout in the milk, to quote Thoreau's example." "But I have heard all that you have heard." "Without, however, the knowledge of pre-existing cases which serves me so well. There was a parallel instance in Aberdeen some years back, and something on very much the same lines at Munich the year after the Franco-Prussian War. It is one of these cases--but, hullo, here is Lestrade! Good-afternoon, Lestrade! You will find an extra tumbler upon the sideboard, and there are cigars in the box." The official detective was attired in a pea-jacket and cravat, which gave him a decidedly nautical appearance, and he carried a black canvas bag in his hand. With a short greeting he seated himself and lit the cigar which had been offered to him. "What's up, then?" asked Holmes with a twinkle in his eye. "You look dissatisfied." "And I feel dissatisfied. It is this infernal St. Simon marriage case. I can make neither head nor tail of the business." "Really! You surprise me." "Who ever heard of such a mixed affair? Every clue seems to slip through my fingers. I have been at work upon it all day." "And very wet it seems to have made you," said Holmes laying his hand upon the arm of the pea-jacket. "Yes, I have been dragging the Serpentine." "In heaven's name, what for?" "In search of the body of Lady St. Simon." Sherlock Holmes leaned back in his chair and laughed heartily. "Have you dragged the basin of Trafalgar Square fountain?" he asked. "Why? What do you mean?" "Because you have just as good a chance of finding this lady in the one as in the other." Lestrade shot an angry glance at my companion. "I suppose you know all about it," he snarled. "Well, I have only just heard the facts, but my mind is made up." "Oh, indeed! Then you think that the Serpentine plays no part in the matter?" "I think it very unlikely." "Then perhaps you will kindly explain how it is that we found this in it?" He opened his bag as he spoke, and tumbled onto the floor a wedding-dress of watered silk, a pair of white satin shoes and a bride's wreath and veil, all discoloured and soaked in water. "There," said he, putting a new wedding-ring upon the top of the pile. "There is a little nut for you to crack, Master Holmes." "Oh, indeed!" said my friend, blowing blue rings into the air. "You dragged them from the Serpentine?" "No. They were found floating near the margin by a park-keeper. They have been identified as her clothes, and it seemed to me that if the clothes were there the body would not be far off." "By the same brilliant reasoning, every man's body is to be found in the neighbourhood of his wardrobe. And pray what did you hope to arrive at through this?" "At some evidence implicating Flora Millar in the disappearance." "I am afraid that you will find it difficult." "Are you, indeed, now?" cried Lestrade with some bitterness. "I am afraid, Holmes, that you are not very practical with your deductions and your inferences. You have made two blunders in as many minutes. This dress does implicate Miss Flora Millar." "And how?" "In the dress is a pocket. In the pocket is a card-case. In the card-case is a note. And here is the very note." He slapped it down upon the table in front of him. "Listen to this: 'You will see me when all is ready. Come at once. F.H.M.' Now my theory all along has been that Lady St. Simon was decoyed away by Flora Millar, and that she, with confederates, no doubt, was responsible for her disappearance. Here, signed with her initials, is the very note which was no doubt quietly slipped into her hand at the door and which lured her within their reach." "Very good, Lestrade," said Holmes, laughing. "You really are very fine indeed. Let me see it." He took up the paper in a listless way, but his attention instantly became riveted, and he gave a little cry of satisfaction. "This is indeed important," said he. "Ha! you find it so?" "Extremely so. I congratulate you warmly." Lestrade rose in his triumph and bent his head to look. "Why," he shrieked, "you're looking at the wrong side!" "On the contrary, this is the right side." "The right side? You're mad! Here is the note written in pencil over here." "And over here is what appears to be the fragment of a hotel bill, which interests me deeply." "There's nothing in it. I looked at it before," said Lestrade. "'Oct. 4th, rooms 8s., breakfast 2s. 6d., cocktail 1s., lunch 2s. 6d., glass sherry, 8d.' I see nothing in that." "Very likely not. It is most important, all the same. As to the note, it is important also, or at least the initials are, so I congratulate you again." "I've wasted time enough," said Lestrade, rising. "I believe in hard work and not in sitting by the fire spinning fine theories. Good-day, Mr. Holmes, and we shall see which gets to the bottom of the matter first." He gathered up the garments, thrust them into the bag, and made for the door. "Just one hint to you, Lestrade," drawled Holmes before his rival vanished; "I will tell you the true solution of the matter. Lady St. Simon is a myth. There is not, and there never has been, any such person." Lestrade looked sadly at my companion. Then he turned to me, tapped his forehead three times, shook his head solemnly, and hurried away. He had hardly shut the door behind him when Holmes rose to put on his overcoat. "There is something in what the fellow says about outdoor work," he remarked, "so I think, Watson, that I must leave you to your papers for a little." It was after five o'clock when Sherlock Holmes left me, but I had no time to be lonely, for within an hour there arrived a confectioner's man with a very large flat box. This he unpacked with the help of a youth whom he had brought with him, and presently, to my very great astonishment, a quite epicurean little cold supper began to be laid out upon our humble lodging-house mahogany. There were a couple of brace of cold woodcock, a pheasant, a pâté de foie gras pie with a group of ancient and cobwebby bottles. Having laid out all these luxuries, my two visitors vanished away, like the genii of the Arabian Nights, with no explanation save that the things had been paid for and were ordered to this address. Just before nine o'clock Sherlock Holmes stepped briskly into the room. His features were gravely set, but there was a light in his eye which made me think that he had not been disappointed in his conclusions. "They have laid the supper, then," he said, rubbing his hands. "You seem to expect company. They have laid for five." "Yes, I fancy we may have some company dropping in," said he. "I am surprised that Lord St. Simon has not already arrived. Ha! I fancy that I hear his step now upon the stairs." It was indeed our visitor of the afternoon who came bustling in, dangling his glasses more vigorously than ever, and with a very perturbed expression upon his aristocratic features. "My messenger reached you, then?" asked Holmes. "Yes, and I confess that the contents startled me beyond measure. Have you good authority for what you say?" "The best possible." Lord St. Simon sank into a chair and passed his hand over his forehead. "What will the Duke say," he murmured, "when he hears that one of the family has been subjected to such humiliation?" "It is the purest accident. I cannot allow that there is any humiliation." "Ah, you look on these things from another standpoint." "I fail to see that anyone is to blame. I can hardly see how the lady could have acted otherwise, though her abrupt method of doing it was undoubtedly to be regretted. Having no mother, she had no one to advise her at such a crisis." "It was a slight, sir, a public slight," said Lord St. Simon, tapping his fingers upon the table. "You must make allowance for this poor girl, placed in so unprecedented a position." "I will make no allowance. I am very angry indeed, and I have been shamefully used." "I think that I heard a ring," said Holmes. "Yes, there are steps on the landing. If I cannot persuade you to take a lenient view of the matter, Lord St. Simon, I have brought an advocate here who may be more successful." He opened the door and ushered in a lady and gentleman. "Lord St. Simon," said he "allow me to introduce you to Mr. and Mrs. Francis Hay Moulton. The lady, I think, you have already met." At the sight of these newcomers our client had sprung from his seat and stood very erect, with his eyes cast down and his hand thrust into the breast of his frock-coat, a picture of offended dignity. The lady had taken a quick step forward and had held out her hand to him, but he still refused to raise his eyes. It was as well for his resolution, perhaps, for her pleading face was one which it was hard to resist. "You're angry, Robert," said she. "Well, I guess you have every cause to be." "Pray make no apology to me," said Lord St. Simon bitterly. "Oh, yes, I know that I have treated you real bad and that I should have spoken to you before I went; but I was kind of rattled, and from the time when I saw Frank here again I just didn't know what I was doing or saying. I only wonder I didn't fall down and do a faint right there before the altar." "Perhaps, Mrs. Moulton, you would like my friend and me to leave the room while you explain this matter?" "If I may give an opinion," remarked the strange gentleman, "we've had just a little too much secrecy over this business already. For my part, I should like all Europe and America to hear the rights of it." He was a small, wiry, sunburnt man, clean-shaven, with a sharp face and alert manner. "Then I'll tell our story right away," said the lady. "Frank here and I met in '84, in McQuire's camp, near the Rockies, where pa was working a claim. We were engaged to each other, Frank and I; but then one day father struck a rich pocket and made a pile, while poor Frank here had a claim that petered out and came to nothing. The richer pa grew the poorer was Frank; so at last pa wouldn't hear of our engagement lasting any longer, and he took me away to 'Frisco. Frank wouldn't throw up his hand, though; so he followed me there, and he saw me without pa knowing anything about it. It would only have made him mad to know, so we just fixed it all up for ourselves. Frank said that he would go and make his pile, too, and never come back to claim me until he had as much as pa. So then I promised to wait for him to the end of time and pledged myself not to marry anyone else while he lived. 'Why shouldn't we be married right away, then,' said he, 'and then I will feel sure of you; and I won't claim to be your husband until I come back?' Well, we talked it over, and he had fixed it all up so nicely, with a clergyman all ready in waiting, that we just did it right there; and then Frank went off to seek his fortune, and I went back to pa. "The next I heard of Frank was that he was in Montana, and then he went prospecting in Arizona, and then I heard of him from New Mexico. After that came a long newspaper story about how a miners' camp had been attacked by Apache Indians, and there was my Frank's name among the killed. I fainted dead away, and I was very sick for months after. Pa thought I had a decline and took me to half the doctors in 'Frisco. Not a word of news came for a year and more, so that I never doubted that Frank was really dead. Then Lord St. Simon came to 'Frisco, and we came to London, and a marriage was arranged, and pa was very pleased, but I felt all the time that no man on this earth would ever take the place in my heart that had been given to my poor Frank. "Still, if I had married Lord St. Simon, of course I'd have done my duty by him. We can't command our love, but we can our actions. I went to the altar with him with the intention to make him just as good a wife as it was in me to be. But you may imagine what I felt when, just as I came to the altar rails, I glanced back and saw Frank standing and looking at me out of the first pew. I thought it was his ghost at first; but when I looked again there he was still, with a kind of question in his eyes, as if to ask me whether I were glad or sorry to see him. I wonder I didn't drop. I know that everything was turning round, and the words of the clergyman were just like the buzz of a bee in my ear. I didn't know what to do. Should I stop the service and make a scene in the church? I glanced at him again, and he seemed to know what I was thinking, for he raised his finger to his lips to tell me to be still. Then I saw him scribble on a piece of paper, and I knew that he was writing me a note. As I passed his pew on the way out I dropped my bouquet over to him, and he slipped the note into my hand when he returned me the flowers. It was only a line asking me to join him when he made the sign to me to do so. Of course I never doubted for a moment that my first duty was now to him, and I determined to do just whatever he might direct. "When I got back I told my maid, who had known him in California, and had always been his friend. I ordered her to say nothing, but to get a few things packed and my ulster ready. I know I ought to have spoken to Lord St. Simon, but it was dreadful hard before his mother and all those great people. I just made up my mind to run away and explain afterwards. I hadn't been at the table ten minutes before I saw Frank out of the window at the other side of the road. He beckoned to me and then began walking into the Park. I slipped out, put on my things, and followed him. Some woman came talking something or other about Lord St. Simon to me--seemed to me from the little I heard as if he had a little secret of his own before marriage also--but I managed to get away from her and soon overtook Frank. We got into a cab together, and away we drove to some lodgings he had taken in Gordon Square, and that was my true wedding after all those years of waiting. Frank had been a prisoner among the Apaches, had escaped, came on to 'Frisco, found that I had given him up for dead and had gone to England, followed me there, and had come upon me at last on the very morning of my second wedding." "I saw it in a paper," explained the American. "It gave the name and the church but not where the lady lived." "Then we had a talk as to what we should do, and Frank was all for openness, but I was so ashamed of it all that I felt as if I should like to vanish away and never see any of them again--just sending a line to pa, perhaps, to show him that I was alive. It was awful to me to think of all those lords and ladies sitting round that breakfast-table and waiting for me to come back. So Frank took my wedding-clothes and things and made a bundle of them, so that I should not be traced, and dropped them away somewhere where no one could find them. It is likely that we should have gone on to Paris to-morrow, only that this good gentleman, Mr. Holmes, came round to us this evening, though how he found us is more than I can think, and he showed us very clearly and kindly that I was wrong and that Frank was right, and that we should be putting ourselves in the wrong if we were so secret. Then he offered to give us a chance of talking to Lord St. Simon alone, and so we came right away round to his rooms at once. Now, Robert, you have heard it all, and I am very sorry if I have given you pain, and I hope that you do not think very meanly of me." Lord St. Simon had by no means relaxed his rigid attitude, but had listened with a frowning brow and a compressed lip to this long narrative. "Excuse me," he said, "but it is not my custom to discuss my most intimate personal affairs in this public manner." "Then you won't forgive me? You won't shake hands before I go?" "Oh, certainly, if it would give you any pleasure." He put out his hand and coldly grasped that which she extended to him. "I had hoped," suggested Holmes, "that you would have joined us in a friendly supper." "I think that there you ask a little too much," responded his Lordship. "I may be forced to acquiesce in these recent developments, but I can hardly be expected to make merry over them. I think that with your permission I will now wish you all a very good-night." He included us all in a sweeping bow and stalked out of the room. "Then I trust that you at least will honour me with your company," said Sherlock Holmes. "It is always a joy to meet an American, Mr. Moulton, for I am one of those who believe that the folly of a monarch and the blundering of a minister in far-gone years will not prevent our children from being some day citizens of the same world-wide country under a flag which shall be a quartering of the Union Jack with the Stars and Stripes." "The case has been an interesting one," remarked Holmes when our visitors had left us, "because it serves to show very clearly how simple the explanation may be of an affair which at first sight seems to be almost inexplicable. Nothing could be more natural than the sequence of events as narrated by this lady, and nothing stranger than the result when viewed, for instance, by Mr. Lestrade of Scotland Yard." "You were not yourself at fault at all, then?" "From the first, two facts were very obvious to me, the one that the lady had been quite willing to undergo the wedding ceremony, the other that she had repented of it within a few minutes of returning home. Obviously something had occurred during the morning, then, to cause her to change her mind. What could that something be? She could not have spoken to anyone when she was out, for she had been in the company of the bridegroom. Had she seen someone, then? If she had, it must be someone from America because she had spent so short a time in this country that she could hardly have allowed anyone to acquire so deep an influence over her that the mere sight of him would induce her to change her plans so completely. You see we have already arrived, by a process of exclusion, at the idea that she might have seen an American. Then who could this American be, and why should he possess so much influence over her? It might be a lover; it might be a husband. Her young womanhood had, I knew, been spent in rough scenes and under strange conditions. So far I had got before I ever heard Lord St. Simon's narrative. When he told us of a man in a pew, of the change in the bride's manner, of so transparent a device for obtaining a note as the dropping of a bouquet, of her resort to her confidential maid, and of her very significant allusion to claim-jumping--which in miners' parlance means taking possession of that which another person has a prior claim to--the whole situation became absolutely clear. She had gone off with a man, and the man was either a lover or was a previous husband--the chances being in favour of the latter." "And how in the world did you find them?" "It might have been difficult, but friend Lestrade held information in his hands the value of which he did not himself know. The initials were, of course, of the highest importance, but more valuable still was it to know that within a week he had settled his bill at one of the most select London hotels." "How did you deduce the select?" "By the select prices. Eight shillings for a bed and eightpence for a glass of sherry pointed to one of the most expensive hotels. There are not many in London which charge at that rate. In the second one which I visited in Northumberland Avenue, I learned by an inspection of the book that Francis H. Moulton, an American gentleman, had left only the day before, and on looking over the entries against him, I came upon the very items which I had seen in the duplicate bill. His letters were to be forwarded to 226 Gordon Square; so thither I travelled, and being fortunate enough to find the loving couple at home, I ventured to give them some paternal advice and to point out to them that it would be better in every way that they should make their position a little clearer both to the general public and to Lord St. Simon in particular. I invited them to meet him here, and, as you see, I made him keep the appointment." "But with no very good result," I remarked. "His conduct was certainly not very gracious." "Ah, Watson," said Holmes, smiling, "perhaps you would not be very gracious either, if, after all the trouble of wooing and wedding, you found yourself deprived in an instant of wife and of fortune. I think that we may judge Lord St. Simon very mercifully and thank our stars that we are never likely to find ourselves in the same position. Draw your chair up and hand me my violin, for the only problem we have still to solve is how to while away these bleak autumnal evenings." XI. THE ADVENTURE OF THE BERYL CORONET "Holmes," said I as I stood one morning in our bow-window looking down the street, "here is a madman coming along. It seems rather sad that his relatives should allow him to come out alone." My friend rose lazily from his armchair and stood with his hands in the pockets of his dressing-gown, looking over my shoulder. It was a bright, crisp February morning, and the snow of the day before still lay deep upon the ground, shimmering brightly in the wintry sun. Down the centre of Baker Street it had been ploughed into a brown crumbly band by the traffic, but at either side and on the heaped-up edges of the foot-paths it still lay as white as when it fell. The grey pavement had been cleaned and scraped, but was still dangerously slippery, so that there were fewer passengers than usual. Indeed, from the direction of the Metropolitan Station no one was coming save the single gentleman whose eccentric conduct had drawn my attention. He was a man of about fifty, tall, portly, and imposing, with a massive, strongly marked face and a commanding figure. He was dressed in a sombre yet rich style, in black frock-coat, shining hat, neat brown gaiters, and well-cut pearl-grey trousers. Yet his actions were in absurd contrast to the dignity of his dress and features, for he was running hard, with occasional little springs, such as a weary man gives who is little accustomed to set any tax upon his legs. As he ran he jerked his hands up and down, waggled his head, and writhed his face into the most extraordinary contortions. "What on earth can be the matter with him?" I asked. "He is looking up at the numbers of the houses." "I believe that he is coming here," said Holmes, rubbing his hands. "Here?" "Yes; I rather think he is coming to consult me professionally. I think that I recognise the symptoms. Ha! did I not tell you?" As he spoke, the man, puffing and blowing, rushed at our door and pulled at our bell until the whole house resounded with the clanging. A few moments later he was in our room, still puffing, still gesticulating, but with so fixed a look of grief and despair in his eyes that our smiles were turned in an instant to horror and pity. For a while he could not get his words out, but swayed his body and plucked at his hair like one who has been driven to the extreme limits of his reason. Then, suddenly springing to his feet, he beat his head against the wall with such force that we both rushed upon him and tore him away to the centre of the room. Sherlock Holmes pushed him down into the easy-chair and, sitting beside him, patted his hand and chatted with him in the easy, soothing tones which he knew so well how to employ. "You have come to me to tell your story, have you not?" said he. "You are fatigued with your haste. Pray wait until you have recovered yourself, and then I shall be most happy to look into any little problem which you may submit to me." The man sat for a minute or more with a heaving chest, fighting against his emotion. Then he passed his handkerchief over his brow, set his lips tight, and turned his face towards us. "No doubt you think me mad?" said he. "I see that you have had some great trouble," responded Holmes. "God knows I have!--a trouble which is enough to unseat my reason, so sudden and so terrible is it. Public disgrace I might have faced, although I am a man whose character has never yet borne a stain. Private affliction also is the lot of every man; but the two coming together, and in so frightful a form, have been enough to shake my very soul. Besides, it is not I alone. The very noblest in the land may suffer unless some way be found out of this horrible affair." "Pray compose yourself, sir," said Holmes, "and let me have a clear account of who you are and what it is that has befallen you." "My name," answered our visitor, "is probably familiar to your ears. I am Alexander Holder, of the banking firm of Holder & Stevenson, of Threadneedle Street." The name was indeed well known to us as belonging to the senior partner in the second largest private banking concern in the City of London. What could have happened, then, to bring one of the foremost citizens of London to this most pitiable pass? We waited, all curiosity, until with another effort he braced himself to tell his story. "I feel that time is of value," said he; "that is why I hastened here when the police inspector suggested that I should secure your co-operation. I came to Baker Street by the Underground and hurried from there on foot, for the cabs go slowly through this snow. That is why I was so out of breath, for I am a man who takes very little exercise. I feel better now, and I will put the facts before you as shortly and yet as clearly as I can. "It is, of course, well known to you that in a successful banking business as much depends upon our being able to find remunerative investments for our funds as upon our increasing our connection and the number of our depositors. One of our most lucrative means of laying out money is in the shape of loans, where the security is unimpeachable. We have done a good deal in this direction during the last few years, and there are many noble families to whom we have advanced large sums upon the security of their pictures, libraries, or plate. "Yesterday morning I was seated in my office at the bank when a card was brought in to me by one of the clerks. I started when I saw the name, for it was that of none other than--well, perhaps even to you I had better say no more than that it was a name which is a household word all over the earth--one of the highest, noblest, most exalted names in England. I was overwhelmed by the honour and attempted, when he entered, to say so, but he plunged at once into business with the air of a man who wishes to hurry quickly through a disagreeable task. "'Mr. Holder,' said he, 'I have been informed that you are in the habit of advancing money.' "'The firm does so when the security is good.' I answered. "'It is absolutely essential to me,' said he, 'that I should have 50,000 pounds at once. I could, of course, borrow so trifling a sum ten times over from my friends, but I much prefer to make it a matter of business and to carry out that business myself. In my position you can readily understand that it is unwise to place one's self under obligations.' "'For how long, may I ask, do you want this sum?' I asked. "'Next Monday I have a large sum due to me, and I shall then most certainly repay what you advance, with whatever interest you think it right to charge. But it is very essential to me that the money should be paid at once.' "'I should be happy to advance it without further parley from my own private purse,' said I, 'were it not that the strain would be rather more than it could bear. If, on the other hand, I am to do it in the name of the firm, then in justice to my partner I must insist that, even in your case, every businesslike precaution should be taken.' "'I should much prefer to have it so,' said he, raising up a square, black morocco case which he had laid beside his chair. 'You have doubtless heard of the Beryl Coronet?' "'One of the most precious public possessions of the empire,' said I. "'Precisely.' He opened the case, and there, imbedded in soft, flesh-coloured velvet, lay the magnificent piece of jewellery which he had named. 'There are thirty-nine enormous beryls,' said he, 'and the price of the gold chasing is incalculable. The lowest estimate would put the worth of the coronet at double the sum which I have asked. I am prepared to leave it with you as my security.' "I took the precious case into my hands and looked in some perplexity from it to my illustrious client. "'You doubt its value?' he asked. "'Not at all. I only doubt--' "'The propriety of my leaving it. You may set your mind at rest about that. I should not dream of doing so were it not absolutely certain that I should be able in four days to reclaim it. It is a pure matter of form. Is the security sufficient?' "'Ample.' "'You understand, Mr. Holder, that I am giving you a strong proof of the confidence which I have in you, founded upon all that I have heard of you. I rely upon you not only to be discreet and to refrain from all gossip upon the matter but, above all, to preserve this coronet with every possible precaution because I need not say that a great public scandal would be caused if any harm were to befall it. Any injury to it would be almost as serious as its complete loss, for there are no beryls in the world to match these, and it would be impossible to replace them. I leave it with you, however, with every confidence, and I shall call for it in person on Monday morning.' "Seeing that my client was anxious to leave, I said no more but, calling for my cashier, I ordered him to pay over fifty 1000 pound notes. When I was alone once more, however, with the precious case lying upon the table in front of me, I could not but think with some misgivings of the immense responsibility which it entailed upon me. There could be no doubt that, as it was a national possession, a horrible scandal would ensue if any misfortune should occur to it. I already regretted having ever consented to take charge of it. However, it was too late to alter the matter now, so I locked it up in my private safe and turned once more to my work. "When evening came I felt that it would be an imprudence to leave so precious a thing in the office behind me. Bankers' safes had been forced before now, and why should not mine be? If so, how terrible would be the position in which I should find myself! I determined, therefore, that for the next few days I would always carry the case backward and forward with me, so that it might never be really out of my reach. With this intention, I called a cab and drove out to my house at Streatham, carrying the jewel with me. I did not breathe freely until I had taken it upstairs and locked it in the bureau of my dressing-room. "And now a word as to my household, Mr. Holmes, for I wish you to thoroughly understand the situation. My groom and my page sleep out of the house, and may be set aside altogether. I have three maid-servants who have been with me a number of years and whose absolute reliability is quite above suspicion. Another, Lucy Parr, the second waiting-maid, has only been in my service a few months. She came with an excellent character, however, and has always given me satisfaction. She is a very pretty girl and has attracted admirers who have occasionally hung about the place. That is the only drawback which we have found to her, but we believe her to be a thoroughly good girl in every way. "So much for the servants. My family itself is so small that it will not take me long to describe it. I am a widower and have an only son, Arthur. He has been a disappointment to me, Mr. Holmes--a grievous disappointment. I have no doubt that I am myself to blame. People tell me that I have spoiled him. Very likely I have. When my dear wife died I felt that he was all I had to love. I could not bear to see the smile fade even for a moment from his face. I have never denied him a wish. Perhaps it would have been better for both of us had I been sterner, but I meant it for the best. "It was naturally my intention that he should succeed me in my business, but he was not of a business turn. He was wild, wayward, and, to speak the truth, I could not trust him in the handling of large sums of money. When he was young he became a member of an aristocratic club, and there, having charming manners, he was soon the intimate of a number of men with long purses and expensive habits. He learned to play heavily at cards and to squander money on the turf, until he had again and again to come to me and implore me to give him an advance upon his allowance, that he might settle his debts of honour. He tried more than once to break away from the dangerous company which he was keeping, but each time the influence of his friend, Sir George Burnwell, was enough to draw him back again. "And, indeed, I could not wonder that such a man as Sir George Burnwell should gain an influence over him, for he has frequently brought him to my house, and I have found myself that I could hardly resist the fascination of his manner. He is older than Arthur, a man of the world to his finger-tips, one who had been everywhere, seen everything, a brilliant talker, and a man of great personal beauty. Yet when I think of him in cold blood, far away from the glamour of his presence, I am convinced from his cynical speech and the look which I have caught in his eyes that he is one who should be deeply distrusted. So I think, and so, too, thinks my little Mary, who has a woman's quick insight into character. "And now there is only she to be described. She is my niece; but when my brother died five years ago and left her alone in the world I adopted her, and have looked upon her ever since as my daughter. She is a sunbeam in my house--sweet, loving, beautiful, a wonderful manager and housekeeper, yet as tender and quiet and gentle as a woman could be. She is my right hand. I do not know what I could do without her. In only one matter has she ever gone against my wishes. Twice my boy has asked her to marry him, for he loves her devotedly, but each time she has refused him. I think that if anyone could have drawn him into the right path it would have been she, and that his marriage might have changed his whole life; but now, alas! it is too late--forever too late! "Now, Mr. Holmes, you know the people who live under my roof, and I shall continue with my miserable story. "When we were taking coffee in the drawing-room that night after dinner, I told Arthur and Mary my experience, and of the precious treasure which we had under our roof, suppressing only the name of my client. Lucy Parr, who had brought in the coffee, had, I am sure, left the room; but I cannot swear that the door was closed. Mary and Arthur were much interested and wished to see the famous coronet, but I thought it better not to disturb it. "'Where have you put it?' asked Arthur. "'In my own bureau.' "'Well, I hope to goodness the house won't be burgled during the night.' said he. "'It is locked up,' I answered. "'Oh, any old key will fit that bureau. When I was a youngster I have opened it myself with the key of the box-room cupboard.' "He often had a wild way of talking, so that I thought little of what he said. He followed me to my room, however, that night with a very grave face. "'Look here, dad,' said he with his eyes cast down, 'can you let me have 200 pounds?' "'No, I cannot!' I answered sharply. 'I have been far too generous with you in money matters.' "'You have been very kind,' said he, 'but I must have this money, or else I can never show my face inside the club again.' "'And a very good thing, too!' I cried. "'Yes, but you would not have me leave it a dishonoured man,' said he. 'I could not bear the disgrace. I must raise the money in some way, and if you will not let me have it, then I must try other means.' "I was very angry, for this was the third demand during the month. 'You shall not have a farthing from me,' I cried, on which he bowed and left the room without another word. "When he was gone I unlocked my bureau, made sure that my treasure was safe, and locked it again. Then I started to go round the house to see that all was secure--a duty which I usually leave to Mary but which I thought it well to perform myself that night. As I came down the stairs I saw Mary herself at the side window of the hall, which she closed and fastened as I approached. "'Tell me, dad,' said she, looking, I thought, a little disturbed, 'did you give Lucy, the maid, leave to go out to-night?' "'Certainly not.' "'She came in just now by the back door. I have no doubt that she has only been to the side gate to see someone, but I think that it is hardly safe and should be stopped.' "'You must speak to her in the morning, or I will if you prefer it. Are you sure that everything is fastened?' "'Quite sure, dad.' "'Then, good-night.' I kissed her and went up to my bedroom again, where I was soon asleep. "I am endeavouring to tell you everything, Mr. Holmes, which may have any bearing upon the case, but I beg that you will question me upon any point which I do not make clear." "On the contrary, your statement is singularly lucid." "I come to a part of my story now in which I should wish to be particularly so. I am not a very heavy sleeper, and the anxiety in my mind tended, no doubt, to make me even less so than usual. About two in the morning, then, I was awakened by some sound in the house. It had ceased ere I was wide awake, but it had left an impression behind it as though a window had gently closed somewhere. I lay listening with all my ears. Suddenly, to my horror, there was a distinct sound of footsteps moving softly in the next room. I slipped out of bed, all palpitating with fear, and peeped round the corner of my dressing-room door. "'Arthur!' I screamed, 'you villain! you thief! How dare you touch that coronet?' "The gas was half up, as I had left it, and my unhappy boy, dressed only in his shirt and trousers, was standing beside the light, holding the coronet in his hands. He appeared to be wrenching at it, or bending it with all his strength. At my cry he dropped it from his grasp and turned as pale as death. I snatched it up and examined it. One of the gold corners, with three of the beryls in it, was missing. "'You blackguard!' I shouted, beside myself with rage. 'You have destroyed it! You have dishonoured me forever! Where are the jewels which you have stolen?' "'Stolen!' he cried. "'Yes, thief!' I roared, shaking him by the shoulder. "'There are none missing. There cannot be any missing,' said he. "'There are three missing. And you know where they are. Must I call you a liar as well as a thief? Did I not see you trying to tear off another piece?' "'You have called me names enough,' said he, 'I will not stand it any longer. I shall not say another word about this business, since you have chosen to insult me. I will leave your house in the morning and make my own way in the world.' "'You shall leave it in the hands of the police!' I cried half-mad with grief and rage. 'I shall have this matter probed to the bottom.' "'You shall learn nothing from me,' said he with a passion such as I should not have thought was in his nature. 'If you choose to call the police, let the police find what they can.' "By this time the whole house was astir, for I had raised my voice in my anger. Mary was the first to rush into my room, and, at the sight of the coronet and of Arthur's face, she read the whole story and, with a scream, fell down senseless on the ground. I sent the house-maid for the police and put the investigation into their hands at once. When the inspector and a constable entered the house, Arthur, who had stood sullenly with his arms folded, asked me whether it was my intention to charge him with theft. I answered that it had ceased to be a private matter, but had become a public one, since the ruined coronet was national property. I was determined that the law should have its way in everything. "'At least,' said he, 'you will not have me arrested at once. It would be to your advantage as well as mine if I might leave the house for five minutes.' "'That you may get away, or perhaps that you may conceal what you have stolen,' said I. And then, realising the dreadful position in which I was placed, I implored him to remember that not only my honour but that of one who was far greater than I was at stake; and that he threatened to raise a scandal which would convulse the nation. He might avert it all if he would but tell me what he had done with the three missing stones. "'You may as well face the matter,' said I; 'you have been caught in the act, and no confession could make your guilt more heinous. If you but make such reparation as is in your power, by telling us where the beryls are, all shall be forgiven and forgotten.' "'Keep your forgiveness for those who ask for it,' he answered, turning away from me with a sneer. I saw that he was too hardened for any words of mine to influence him. There was but one way for it. I called in the inspector and gave him into custody. A search was made at once not only of his person but of his room and of every portion of the house where he could possibly have concealed the gems; but no trace of them could be found, nor would the wretched boy open his mouth for all our persuasions and our threats. This morning he was removed to a cell, and I, after going through all the police formalities, have hurried round to you to implore you to use your skill in unravelling the matter. The police have openly confessed that they can at present make nothing of it. You may go to any expense which you think necessary. I have already offered a reward of 1000 pounds. My God, what shall I do! I have lost my honour, my gems, and my son in one night. Oh, what shall I do!" He put a hand on either side of his head and rocked himself to and fro, droning to himself like a child whose grief has got beyond words. Sherlock Holmes sat silent for some few minutes, with his brows knitted and his eyes fixed upon the fire. "Do you receive much company?" he asked. "None save my partner with his family and an occasional friend of Arthur's. Sir George Burnwell has been several times lately. No one else, I think." "Do you go out much in society?" "Arthur does. Mary and I stay at home. We neither of us care for it." "That is unusual in a young girl." "She is of a quiet nature. Besides, she is not so very young. She is four-and-twenty." "This matter, from what you say, seems to have been a shock to her also." "Terrible! She is even more affected than I." "You have neither of you any doubt as to your son's guilt?" "How can we have when I saw him with my own eyes with the coronet in his hands." "I hardly consider that a conclusive proof. Was the remainder of the coronet at all injured?" "Yes, it was twisted." "Do you not think, then, that he might have been trying to straighten it?" "God bless you! You are doing what you can for him and for me. But it is too heavy a task. What was he doing there at all? If his purpose were innocent, why did he not say so?" "Precisely. And if it were guilty, why did he not invent a lie? His silence appears to me to cut both ways. There are several singular points about the case. What did the police think of the noise which awoke you from your sleep?" "They considered that it might be caused by Arthur's closing his bedroom door." "A likely story! As if a man bent on felony would slam his door so as to wake a household. What did they say, then, of the disappearance of these gems?" "They are still sounding the planking and probing the furniture in the hope of finding them." "Have they thought of looking outside the house?" "Yes, they have shown extraordinary energy. The whole garden has already been minutely examined." "Now, my dear sir," said Holmes, "is it not obvious to you now that this matter really strikes very much deeper than either you or the police were at first inclined to think? It appeared to you to be a simple case; to me it seems exceedingly complex. Consider what is involved by your theory. You suppose that your son came down from his bed, went, at great risk, to your dressing-room, opened your bureau, took out your coronet, broke off by main force a small portion of it, went off to some other place, concealed three gems out of the thirty-nine, with such skill that nobody can find them, and then returned with the other thirty-six into the room in which he exposed himself to the greatest danger of being discovered. I ask you now, is such a theory tenable?" "But what other is there?" cried the banker with a gesture of despair. "If his motives were innocent, why does he not explain them?" "It is our task to find that out," replied Holmes; "so now, if you please, Mr. Holder, we will set off for Streatham together, and devote an hour to glancing a little more closely into details." My friend insisted upon my accompanying them in their expedition, which I was eager enough to do, for my curiosity and sympathy were deeply stirred by the story to which we had listened. I confess that the guilt of the banker's son appeared to me to be as obvious as it did to his unhappy father, but still I had such faith in Holmes' judgment that I felt that there must be some grounds for hope as long as he was dissatisfied with the accepted explanation. He hardly spoke a word the whole way out to the southern suburb, but sat with his chin upon his breast and his hat drawn over his eyes, sunk in the deepest thought. Our client appeared to have taken fresh heart at the little glimpse of hope which had been presented to him, and he even broke into a desultory chat with me over his business affairs. A short railway journey and a shorter walk brought us to Fairbank, the modest residence of the great financier. Fairbank was a good-sized square house of white stone, standing back a little from the road. A double carriage-sweep, with a snow-clad lawn, stretched down in front to two large iron gates which closed the entrance. On the right side was a small wooden thicket, which led into a narrow path between two neat hedges stretching from the road to the kitchen door, and forming the tradesmen's entrance. On the left ran a lane which led to the stables, and was not itself within the grounds at all, being a public, though little used, thoroughfare. Holmes left us standing at the door and walked slowly all round the house, across the front, down the tradesmen's path, and so round by the garden behind into the stable lane. So long was he that Mr. Holder and I went into the dining-room and waited by the fire until he should return. We were sitting there in silence when the door opened and a young lady came in. She was rather above the middle height, slim, with dark hair and eyes, which seemed the darker against the absolute pallor of her skin. I do not think that I have ever seen such deadly paleness in a woman's face. Her lips, too, were bloodless, but her eyes were flushed with crying. As she swept silently into the room she impressed me with a greater sense of grief than the banker had done in the morning, and it was the more striking in her as she was evidently a woman of strong character, with immense capacity for self-restraint. Disregarding my presence, she went straight to her uncle and passed her hand over his head with a sweet womanly caress. "You have given orders that Arthur should be liberated, have you not, dad?" she asked. "No, no, my girl, the matter must be probed to the bottom." "But I am so sure that he is innocent. You know what woman's instincts are. I know that he has done no harm and that you will be sorry for having acted so harshly." "Why is he silent, then, if he is innocent?" "Who knows? Perhaps because he was so angry that you should suspect him." "How could I help suspecting him, when I actually saw him with the coronet in his hand?" "Oh, but he had only picked it up to look at it. Oh, do, do take my word for it that he is innocent. Let the matter drop and say no more. It is so dreadful to think of our dear Arthur in prison!" "I shall never let it drop until the gems are found--never, Mary! Your affection for Arthur blinds you as to the awful consequences to me. Far from hushing the thing up, I have brought a gentleman down from London to inquire more deeply into it." "This gentleman?" she asked, facing round to me. "No, his friend. He wished us to leave him alone. He is round in the stable lane now." "The stable lane?" She raised her dark eyebrows. "What can he hope to find there? Ah! this, I suppose, is he. I trust, sir, that you will succeed in proving, what I feel sure is the truth, that my cousin Arthur is innocent of this crime." "I fully share your opinion, and I trust, with you, that we may prove it," returned Holmes, going back to the mat to knock the snow from his shoes. "I believe I have the honour of addressing Miss Mary Holder. Might I ask you a question or two?" "Pray do, sir, if it may help to clear this horrible affair up." "You heard nothing yourself last night?" "Nothing, until my uncle here began to speak loudly. I heard that, and I came down." "You shut up the windows and doors the night before. Did you fasten all the windows?" "Yes." "Were they all fastened this morning?" "Yes." "You have a maid who has a sweetheart? I think that you remarked to your uncle last night that she had been out to see him?" "Yes, and she was the girl who waited in the drawing-room, and who may have heard uncle's remarks about the coronet." "I see. You infer that she may have gone out to tell her sweetheart, and that the two may have planned the robbery." "But what is the good of all these vague theories," cried the banker impatiently, "when I have told you that I saw Arthur with the coronet in his hands?" "Wait a little, Mr. Holder. We must come back to that. About this girl, Miss Holder. You saw her return by the kitchen door, I presume?" "Yes; when I went to see if the door was fastened for the night I met her slipping in. I saw the man, too, in the gloom." "Do you know him?" "Oh, yes! he is the green-grocer who brings our vegetables round. His name is Francis Prosper." "He stood," said Holmes, "to the left of the door--that is to say, farther up the path than is necessary to reach the door?" "Yes, he did." "And he is a man with a wooden leg?" Something like fear sprang up in the young lady's expressive black eyes. "Why, you are like a magician," said she. "How do you know that?" She smiled, but there was no answering smile in Holmes' thin, eager face. "I should be very glad now to go upstairs," said he. "I shall probably wish to go over the outside of the house again. Perhaps I had better take a look at the lower windows before I go up." He walked swiftly round from one to the other, pausing only at the large one which looked from the hall onto the stable lane. This he opened and made a very careful examination of the sill with his powerful magnifying lens. "Now we shall go upstairs," said he at last. The banker's dressing-room was a plainly furnished little chamber, with a grey carpet, a large bureau, and a long mirror. Holmes went to the bureau first and looked hard at the lock. "Which key was used to open it?" he asked. "That which my son himself indicated--that of the cupboard of the lumber-room." "Have you it here?" "That is it on the dressing-table." Sherlock Holmes took it up and opened the bureau. "It is a noiseless lock," said he. "It is no wonder that it did not wake you. This case, I presume, contains the coronet. We must have a look at it." He opened the case, and taking out the diadem he laid it upon the table. It was a magnificent specimen of the jeweller's art, and the thirty-six stones were the finest that I have ever seen. At one side of the coronet was a cracked edge, where a corner holding three gems had been torn away. "Now, Mr. Holder," said Holmes, "here is the corner which corresponds to that which has been so unfortunately lost. Might I beg that you will break it off." The banker recoiled in horror. "I should not dream of trying," said he. "Then I will." Holmes suddenly bent his strength upon it, but without result. "I feel it give a little," said he; "but, though I am exceptionally strong in the fingers, it would take me all my time to break it. An ordinary man could not do it. Now, what do you think would happen if I did break it, Mr. Holder? There would be a noise like a pistol shot. Do you tell me that all this happened within a few yards of your bed and that you heard nothing of it?" "I do not know what to think. It is all dark to me." "But perhaps it may grow lighter as we go. What do you think, Miss Holder?" "I confess that I still share my uncle's perplexity." "Your son had no shoes or slippers on when you saw him?" "He had nothing on save only his trousers and shirt." "Thank you. We have certainly been favoured with extraordinary luck during this inquiry, and it will be entirely our own fault if we do not succeed in clearing the matter up. With your permission, Mr. Holder, I shall now continue my investigations outside." He went alone, at his own request, for he explained that any unnecessary footmarks might make his task more difficult. For an hour or more he was at work, returning at last with his feet heavy with snow and his features as inscrutable as ever. "I think that I have seen now all that there is to see, Mr. Holder," said he; "I can serve you best by returning to my rooms." "But the gems, Mr. Holmes. Where are they?" "I cannot tell." The banker wrung his hands. "I shall never see them again!" he cried. "And my son? You give me hopes?" "My opinion is in no way altered." "Then, for God's sake, what was this dark business which was acted in my house last night?" "If you can call upon me at my Baker Street rooms to-morrow morning between nine and ten I shall be happy to do what I can to make it clearer. I understand that you give me carte blanche to act for you, provided only that I get back the gems, and that you place no limit on the sum I may draw." "I would give my fortune to have them back." "Very good. I shall look into the matter between this and then. Good-bye; it is just possible that I may have to come over here again before evening." It was obvious to me that my companion's mind was now made up about the case, although what his conclusions were was more than I could even dimly imagine. Several times during our homeward journey I endeavoured to sound him upon the point, but he always glided away to some other topic, until at last I gave it over in despair. It was not yet three when we found ourselves in our rooms once more. He hurried to his chamber and was down again in a few minutes dressed as a common loafer. With his collar turned up, his shiny, seedy coat, his red cravat, and his worn boots, he was a perfect sample of the class. "I think that this should do," said he, glancing into the glass above the fireplace. "I only wish that you could come with me, Watson, but I fear that it won't do. I may be on the trail in this matter, or I may be following a will-o'-the-wisp, but I shall soon know which it is. I hope that I may be back in a few hours." He cut a slice of beef from the joint upon the sideboard, sandwiched it between two rounds of bread, and thrusting this rude meal into his pocket he started off upon his expedition. I had just finished my tea when he returned, evidently in excellent spirits, swinging an old elastic-sided boot in his hand. He chucked it down into a corner and helped himself to a cup of tea. "I only looked in as I passed," said he. "I am going right on." "Where to?" "Oh, to the other side of the West End. It may be some time before I get back. Don't wait up for me in case I should be late." "How are you getting on?" "Oh, so so. Nothing to complain of. I have been out to Streatham since I saw you last, but I did not call at the house. It is a very sweet little problem, and I would not have missed it for a good deal. However, I must not sit gossiping here, but must get these disreputable clothes off and return to my highly respectable self." I could see by his manner that he had stronger reasons for satisfaction than his words alone would imply. His eyes twinkled, and there was even a touch of colour upon his sallow cheeks. He hastened upstairs, and a few minutes later I heard the slam of the hall door, which told me that he was off once more upon his congenial hunt. I waited until midnight, but there was no sign of his return, so I retired to my room. It was no uncommon thing for him to be away for days and nights on end when he was hot upon a scent, so that his lateness caused me no surprise. I do not know at what hour he came in, but when I came down to breakfast in the morning there he was with a cup of coffee in one hand and the paper in the other, as fresh and trim as possible. "You will excuse my beginning without you, Watson," said he, "but you remember that our client has rather an early appointment this morning." "Why, it is after nine now," I answered. "I should not be surprised if that were he. I thought I heard a ring." It was, indeed, our friend the financier. I was shocked by the change which had come over him, for his face which was naturally of a broad and massive mould, was now pinched and fallen in, while his hair seemed to me at least a shade whiter. He entered with a weariness and lethargy which was even more painful than his violence of the morning before, and he dropped heavily into the armchair which I pushed forward for him. "I do not know what I have done to be so severely tried," said he. "Only two days ago I was a happy and prosperous man, without a care in the world. Now I am left to a lonely and dishonoured age. One sorrow comes close upon the heels of another. My niece, Mary, has deserted me." "Deserted you?" "Yes. Her bed this morning had not been slept in, her room was empty, and a note for me lay upon the hall table. I had said to her last night, in sorrow and not in anger, that if she had married my boy all might have been well with him. Perhaps it was thoughtless of me to say so. It is to that remark that she refers in this note: "'MY DEAREST UNCLE:--I feel that I have brought trouble upon you, and that if I had acted differently this terrible misfortune might never have occurred. I cannot, with this thought in my mind, ever again be happy under your roof, and I feel that I must leave you forever. Do not worry about my future, for that is provided for; and, above all, do not search for me, for it will be fruitless labour and an ill-service to me. In life or in death, I am ever your loving,--MARY.' "What could she mean by that note, Mr. Holmes? Do you think it points to suicide?" "No, no, nothing of the kind. It is perhaps the best possible solution. I trust, Mr. Holder, that you are nearing the end of your troubles." "Ha! You say so! You have heard something, Mr. Holmes; you have learned something! Where are the gems?" "You would not think 1000 pounds apiece an excessive sum for them?" "I would pay ten." "That would be unnecessary. Three thousand will cover the matter. And there is a little reward, I fancy. Have you your check-book? Here is a pen. Better make it out for 4000 pounds." With a dazed face the banker made out the required check. Holmes walked over to his desk, took out a little triangular piece of gold with three gems in it, and threw it down upon the table. With a shriek of joy our client clutched it up. "You have it!" he gasped. "I am saved! I am saved!" The reaction of joy was as passionate as his grief had been, and he hugged his recovered gems to his bosom. "There is one other thing you owe, Mr. Holder," said Sherlock Holmes rather sternly. "Owe!" He caught up a pen. "Name the sum, and I will pay it." "No, the debt is not to me. You owe a very humble apology to that noble lad, your son, who has carried himself in this matter as I should be proud to see my own son do, should I ever chance to have one." "Then it was not Arthur who took them?" "I told you yesterday, and I repeat to-day, that it was not." "You are sure of it! Then let us hurry to him at once to let him know that the truth is known." "He knows it already. When I had cleared it all up I had an interview with him, and finding that he would not tell me the story, I told it to him, on which he had to confess that I was right and to add the very few details which were not yet quite clear to me. Your news of this morning, however, may open his lips." "For heaven's sake, tell me, then, what is this extraordinary mystery!" "I will do so, and I will show you the steps by which I reached it. And let me say to you, first, that which it is hardest for me to say and for you to hear: there has been an understanding between Sir George Burnwell and your niece Mary. They have now fled together." "My Mary? Impossible!" "It is unfortunately more than possible; it is certain. Neither you nor your son knew the true character of this man when you admitted him into your family circle. He is one of the most dangerous men in England--a ruined gambler, an absolutely desperate villain, a man without heart or conscience. Your niece knew nothing of such men. When he breathed his vows to her, as he had done to a hundred before her, she flattered herself that she alone had touched his heart. The devil knows best what he said, but at least she became his tool and was in the habit of seeing him nearly every evening." "I cannot, and I will not, believe it!" cried the banker with an ashen face. "I will tell you, then, what occurred in your house last night. Your niece, when you had, as she thought, gone to your room, slipped down and talked to her lover through the window which leads into the stable lane. His footmarks had pressed right through the snow, so long had he stood there. She told him of the coronet. His wicked lust for gold kindled at the news, and he bent her to his will. I have no doubt that she loved you, but there are women in whom the love of a lover extinguishes all other loves, and I think that she must have been one. She had hardly listened to his instructions when she saw you coming downstairs, on which she closed the window rapidly and told you about one of the servants' escapade with her wooden-legged lover, which was all perfectly true. "Your boy, Arthur, went to bed after his interview with you but he slept badly on account of his uneasiness about his club debts. In the middle of the night he heard a soft tread pass his door, so he rose and, looking out, was surprised to see his cousin walking very stealthily along the passage until she disappeared into your dressing-room. Petrified with astonishment, the lad slipped on some clothes and waited there in the dark to see what would come of this strange affair. Presently she emerged from the room again, and in the light of the passage-lamp your son saw that she carried the precious coronet in her hands. She passed down the stairs, and he, thrilling with horror, ran along and slipped behind the curtain near your door, whence he could see what passed in the hall beneath. He saw her stealthily open the window, hand out the coronet to someone in the gloom, and then closing it once more hurry back to her room, passing quite close to where he stood hid behind the curtain. "As long as she was on the scene he could not take any action without a horrible exposure of the woman whom he loved. But the instant that she was gone he realised how crushing a misfortune this would be for you, and how all-important it was to set it right. He rushed down, just as he was, in his bare feet, opened the window, sprang out into the snow, and ran down the lane, where he could see a dark figure in the moonlight. Sir George Burnwell tried to get away, but Arthur caught him, and there was a struggle between them, your lad tugging at one side of the coronet, and his opponent at the other. In the scuffle, your son struck Sir George and cut him over the eye. Then something suddenly snapped, and your son, finding that he had the coronet in his hands, rushed back, closed the window, ascended to your room, and had just observed that the coronet had been twisted in the struggle and was endeavouring to straighten it when you appeared upon the scene." "Is it possible?" gasped the banker. "You then roused his anger by calling him names at a moment when he felt that he had deserved your warmest thanks. He could not explain the true state of affairs without betraying one who certainly deserved little enough consideration at his hands. He took the more chivalrous view, however, and preserved her secret." "And that was why she shrieked and fainted when she saw the coronet," cried Mr. Holder. "Oh, my God! what a blind fool I have been! And his asking to be allowed to go out for five minutes! The dear fellow wanted to see if the missing piece were at the scene of the struggle. How cruelly I have misjudged him!" "When I arrived at the house," continued Holmes, "I at once went very carefully round it to observe if there were any traces in the snow which might help me. I knew that none had fallen since the evening before, and also that there had been a strong frost to preserve impressions. I passed along the tradesmen's path, but found it all trampled down and indistinguishable. Just beyond it, however, at the far side of the kitchen door, a woman had stood and talked with a man, whose round impressions on one side showed that he had a wooden leg. I could even tell that they had been disturbed, for the woman had run back swiftly to the door, as was shown by the deep toe and light heel marks, while Wooden-leg had waited a little, and then had gone away. I thought at the time that this might be the maid and her sweetheart, of whom you had already spoken to me, and inquiry showed it was so. I passed round the garden without seeing anything more than random tracks, which I took to be the police; but when I got into the stable lane a very long and complex story was written in the snow in front of me. "There was a double line of tracks of a booted man, and a second double line which I saw with delight belonged to a man with naked feet. I was at once convinced from what you had told me that the latter was your son. The first had walked both ways, but the other had run swiftly, and as his tread was marked in places over the depression of the boot, it was obvious that he had passed after the other. I followed them up and found they led to the hall window, where Boots had worn all the snow away while waiting. Then I walked to the other end, which was a hundred yards or more down the lane. I saw where Boots had faced round, where the snow was cut up as though there had been a struggle, and, finally, where a few drops of blood had fallen, to show me that I was not mistaken. Boots had then run down the lane, and another little smudge of blood showed that it was he who had been hurt. When he came to the highroad at the other end, I found that the pavement had been cleared, so there was an end to that clue. "On entering the house, however, I examined, as you remember, the sill and framework of the hall window with my lens, and I could at once see that someone had passed out. I could distinguish the outline of an instep where the wet foot had been placed in coming in. I was then beginning to be able to form an opinion as to what had occurred. A man had waited outside the window; someone had brought the gems; the deed had been overseen by your son; he had pursued the thief; had struggled with him; they had each tugged at the coronet, their united strength causing injuries which neither alone could have effected. He had returned with the prize, but had left a fragment in the grasp of his opponent. So far I was clear. The question now was, who was the man and who was it brought him the coronet? "It is an old maxim of mine that when you have excluded the impossible, whatever remains, however improbable, must be the truth. Now, I knew that it was not you who had brought it down, so there only remained your niece and the maids. But if it were the maids, why should your son allow himself to be accused in their place? There could be no possible reason. As he loved his cousin, however, there was an excellent explanation why he should retain her secret--the more so as the secret was a disgraceful one. When I remembered that you had seen her at that window, and how she had fainted on seeing the coronet again, my conjecture became a certainty. "And who could it be who was her confederate? A lover evidently, for who else could outweigh the love and gratitude which she must feel to you? I knew that you went out little, and that your circle of friends was a very limited one. But among them was Sir George Burnwell. I had heard of him before as being a man of evil reputation among women. It must have been he who wore those boots and retained the missing gems. Even though he knew that Arthur had discovered him, he might still flatter himself that he was safe, for the lad could not say a word without compromising his own family. "Well, your own good sense will suggest what measures I took next. I went in the shape of a loafer to Sir George's house, managed to pick up an acquaintance with his valet, learned that his master had cut his head the night before, and, finally, at the expense of six shillings, made all sure by buying a pair of his cast-off shoes. With these I journeyed down to Streatham and saw that they exactly fitted the tracks." "I saw an ill-dressed vagabond in the lane yesterday evening," said Mr. Holder. "Precisely. It was I. I found that I had my man, so I came home and changed my clothes. It was a delicate part which I had to play then, for I saw that a prosecution must be avoided to avert scandal, and I knew that so astute a villain would see that our hands were tied in the matter. I went and saw him. At first, of course, he denied everything. But when I gave him every particular that had occurred, he tried to bluster and took down a life-preserver from the wall. I knew my man, however, and I clapped a pistol to his head before he could strike. Then he became a little more reasonable. I told him that we would give him a price for the stones he held--1000 pounds apiece. That brought out the first signs of grief that he had shown. 'Why, dash it all!' said he, 'I've let them go at six hundred for the three!' I soon managed to get the address of the receiver who had them, on promising him that there would be no prosecution. Off I set to him, and after much chaffering I got our stones at 1000 pounds apiece. Then I looked in upon your son, told him that all was right, and eventually got to my bed about two o'clock, after what I may call a really hard day's work." "A day which has saved England from a great public scandal," said the banker, rising. "Sir, I cannot find words to thank you, but you shall not find me ungrateful for what you have done. Your skill has indeed exceeded all that I have heard of it. And now I must fly to my dear boy to apologise to him for the wrong which I have done him. As to what you tell me of poor Mary, it goes to my very heart. Not even your skill can inform me where she is now." "I think that we may safely say," returned Holmes, "that she is wherever Sir George Burnwell is. It is equally certain, too, that whatever her sins are, they will soon receive a more than sufficient punishment." XII. THE ADVENTURE OF THE COPPER BEECHES "To the man who loves art for its own sake," remarked Sherlock Holmes, tossing aside the advertisement sheet of the Daily Telegraph, "it is frequently in its least important and lowliest manifestations that the keenest pleasure is to be derived. It is pleasant to me to observe, Watson, that you have so far grasped this truth that in these little records of our cases which you have been good enough to draw up, and, I am bound to say, occasionally to embellish, you have given prominence not so much to the many causes célèbres and sensational trials in which I have figured but rather to those incidents which may have been trivial in themselves, but which have given room for those faculties of deduction and of logical synthesis which I have made my special province." "And yet," said I, smiling, "I cannot quite hold myself absolved from the charge of sensationalism which has been urged against my records." "You have erred, perhaps," he observed, taking up a glowing cinder with the tongs and lighting with it the long cherry-wood pipe which was wont to replace his clay when he was in a disputatious rather than a meditative mood--"you have erred perhaps in attempting to put colour and life into each of your statements instead of confining yourself to the task of placing upon record that severe reasoning from cause to effect which is really the only notable feature about the thing." "It seems to me that I have done you full justice in the matter," I remarked with some coldness, for I was repelled by the egotism which I had more than once observed to be a strong factor in my friend's singular character. "No, it is not selfishness or conceit," said he, answering, as was his wont, my thoughts rather than my words. "If I claim full justice for my art, it is because it is an impersonal thing--a thing beyond myself. Crime is common. Logic is rare. Therefore it is upon the logic rather than upon the crime that you should dwell. You have degraded what should have been a course of lectures into a series of tales." It was a cold morning of the early spring, and we sat after breakfast on either side of a cheery fire in the old room at Baker Street. A thick fog rolled down between the lines of dun-coloured houses, and the opposing windows loomed like dark, shapeless blurs through the heavy yellow wreaths. Our gas was lit and shone on the white cloth and glimmer of china and metal, for the table had not been cleared yet. Sherlock Holmes had been silent all the morning, dipping continuously into the advertisement columns of a succession of papers until at last, having apparently given up his search, he had emerged in no very sweet temper to lecture me upon my literary shortcomings. "At the same time," he remarked after a pause, during which he had sat puffing at his long pipe and gazing down into the fire, "you can hardly be open to a charge of sensationalism, for out of these cases which you have been so kind as to interest yourself in, a fair proportion do not treat of crime, in its legal sense, at all. The small matter in which I endeavoured to help the King of Bohemia, the singular experience of Miss Mary Sutherland, the problem connected with the man with the twisted lip, and the incident of the noble bachelor, were all matters which are outside the pale of the law. But in avoiding the sensational, I fear that you may have bordered on the trivial." "The end may have been so," I answered, "but the methods I hold to have been novel and of interest." "Pshaw, my dear fellow, what do the public, the great unobservant public, who could hardly tell a weaver by his tooth or a compositor by his left thumb, care about the finer shades of analysis and deduction! But, indeed, if you are trivial, I cannot blame you, for the days of the great cases are past. Man, or at least criminal man, has lost all enterprise and originality. As to my own little practice, it seems to be degenerating into an agency for recovering lost lead pencils and giving advice to young ladies from boarding-schools. I think that I have touched bottom at last, however. This note I had this morning marks my zero-point, I fancy. Read it!" He tossed a crumpled letter across to me. It was dated from Montague Place upon the preceding evening, and ran thus: "DEAR MR. HOLMES:--I am very anxious to consult you as to whether I should or should not accept a situation which has been offered to me as governess. I shall call at half-past ten to-morrow if I do not inconvenience you. Yours faithfully, "VIOLET HUNTER." "Do you know the young lady?" I asked. "Not I." "It is half-past ten now." "Yes, and I have no doubt that is her ring." "It may turn out to be of more interest than you think. You remember that the affair of the blue carbuncle, which appeared to be a mere whim at first, developed into a serious investigation. It may be so in this case, also." "Well, let us hope so. But our doubts will very soon be solved, for here, unless I am much mistaken, is the person in question." As he spoke the door opened and a young lady entered the room. She was plainly but neatly dressed, with a bright, quick face, freckled like a plover's egg, and with the brisk manner of a woman who has had her own way to make in the world. "You will excuse my troubling you, I am sure," said she, as my companion rose to greet her, "but I have had a very strange experience, and as I have no parents or relations of any sort from whom I could ask advice, I thought that perhaps you would be kind enough to tell me what I should do." "Pray take a seat, Miss Hunter. I shall be happy to do anything that I can to serve you." I could see that Holmes was favourably impressed by the manner and speech of his new client. He looked her over in his searching fashion, and then composed himself, with his lids drooping and his finger-tips together, to listen to her story. "I have been a governess for five years," said she, "in the family of Colonel Spence Munro, but two months ago the colonel received an appointment at Halifax, in Nova Scotia, and took his children over to America with him, so that I found myself without a situation. I advertised, and I answered advertisements, but without success. At last the little money which I had saved began to run short, and I was at my wit's end as to what I should do. "There is a well-known agency for governesses in the West End called Westaway's, and there I used to call about once a week in order to see whether anything had turned up which might suit me. Westaway was the name of the founder of the business, but it is really managed by Miss Stoper. She sits in her own little office, and the ladies who are seeking employment wait in an anteroom, and are then shown in one by one, when she consults her ledgers and sees whether she has anything which would suit them. "Well, when I called last week I was shown into the little office as usual, but I found that Miss Stoper was not alone. A prodigiously stout man with a very smiling face and a great heavy chin which rolled down in fold upon fold over his throat sat at her elbow with a pair of glasses on his nose, looking very earnestly at the ladies who entered. As I came in he gave quite a jump in his chair and turned quickly to Miss Stoper. "'That will do,' said he; 'I could not ask for anything better. Capital! capital!' He seemed quite enthusiastic and rubbed his hands together in the most genial fashion. He was such a comfortable-looking man that it was quite a pleasure to look at him. "'You are looking for a situation, miss?' he asked. "'Yes, sir.' "'As governess?' "'Yes, sir.' "'And what salary do you ask?' "'I had 4 pounds a month in my last place with Colonel Spence Munro.' "'Oh, tut, tut! sweating--rank sweating!' he cried, throwing his fat hands out into the air like a man who is in a boiling passion. 'How could anyone offer so pitiful a sum to a lady with such attractions and accomplishments?' "'My accomplishments, sir, may be less than you imagine,' said I. 'A little French, a little German, music, and drawing--' "'Tut, tut!' he cried. 'This is all quite beside the question. The point is, have you or have you not the bearing and deportment of a lady? There it is in a nutshell. If you have not, you are not fitted for the rearing of a child who may some day play a considerable part in the history of the country. But if you have why, then, how could any gentleman ask you to condescend to accept anything under the three figures? Your salary with me, madam, would commence at 100 pounds a year.' "You may imagine, Mr. Holmes, that to me, destitute as I was, such an offer seemed almost too good to be true. The gentleman, however, seeing perhaps the look of incredulity upon my face, opened a pocket-book and took out a note. "'It is also my custom,' said he, smiling in the most pleasant fashion until his eyes were just two little shining slits amid the white creases of his face, 'to advance to my young ladies half their salary beforehand, so that they may meet any little expenses of their journey and their wardrobe.' "It seemed to me that I had never met so fascinating and so thoughtful a man. As I was already in debt to my tradesmen, the advance was a great convenience, and yet there was something unnatural about the whole transaction which made me wish to know a little more before I quite committed myself. "'May I ask where you live, sir?' said I. "'Hampshire. Charming rural place. The Copper Beeches, five miles on the far side of Winchester. It is the most lovely country, my dear young lady, and the dearest old country-house.' "'And my duties, sir? I should be glad to know what they would be.' "'One child--one dear little romper just six years old. Oh, if you could see him killing cockroaches with a slipper! Smack! smack! smack! Three gone before you could wink!' He leaned back in his chair and laughed his eyes into his head again. "I was a little startled at the nature of the child's amusement, but the father's laughter made me think that perhaps he was joking. "'My sole duties, then,' I asked, 'are to take charge of a single child?' "'No, no, not the sole, not the sole, my dear young lady,' he cried. 'Your duty would be, as I am sure your good sense would suggest, to obey any little commands my wife might give, provided always that they were such commands as a lady might with propriety obey. You see no difficulty, heh?' "'I should be happy to make myself useful.' "'Quite so. In dress now, for example. We are faddy people, you know--faddy but kind-hearted. If you were asked to wear any dress which we might give you, you would not object to our little whim. Heh?' "'No,' said I, considerably astonished at his words. "'Or to sit here, or sit there, that would not be offensive to you?' "'Oh, no.' "'Or to cut your hair quite short before you come to us?' "I could hardly believe my ears. As you may observe, Mr. Holmes, my hair is somewhat luxuriant, and of a rather peculiar tint of chestnut. It has been considered artistic. I could not dream of sacrificing it in this offhand fashion. "'I am afraid that that is quite impossible,' said I. He had been watching me eagerly out of his small eyes, and I could see a shadow pass over his face as I spoke. "'I am afraid that it is quite essential,' said he. 'It is a little fancy of my wife's, and ladies' fancies, you know, madam, ladies' fancies must be consulted. And so you won't cut your hair?' "'No, sir, I really could not,' I answered firmly. "'Ah, very well; then that quite settles the matter. It is a pity, because in other respects you would really have done very nicely. In that case, Miss Stoper, I had best inspect a few more of your young ladies.' "The manageress had sat all this while busy with her papers without a word to either of us, but she glanced at me now with so much annoyance upon her face that I could not help suspecting that she had lost a handsome commission through my refusal. "'Do you desire your name to be kept upon the books?' she asked. "'If you please, Miss Stoper.' "'Well, really, it seems rather useless, since you refuse the most excellent offers in this fashion,' said she sharply. 'You can hardly expect us to exert ourselves to find another such opening for you. Good-day to you, Miss Hunter.' She struck a gong upon the table, and I was shown out by the page. "Well, Mr. Holmes, when I got back to my lodgings and found little enough in the cupboard, and two or three bills upon the table, I began to ask myself whether I had not done a very foolish thing. After all, if these people had strange fads and expected obedience on the most extraordinary matters, they were at least ready to pay for their eccentricity. Very few governesses in England are getting 100 pounds a year. Besides, what use was my hair to me? Many people are improved by wearing it short and perhaps I should be among the number. Next day I was inclined to think that I had made a mistake, and by the day after I was sure of it. I had almost overcome my pride so far as to go back to the agency and inquire whether the place was still open when I received this letter from the gentleman himself. I have it here and I will read it to you: "'The Copper Beeches, near Winchester. "'DEAR MISS HUNTER:--Miss Stoper has very kindly given me your address, and I write from here to ask you whether you have reconsidered your decision. My wife is very anxious that you should come, for she has been much attracted by my description of you. We are willing to give 30 pounds a quarter, or 120 pounds a year, so as to recompense you for any little inconvenience which our fads may cause you. They are not very exacting, after all. My wife is fond of a particular shade of electric blue and would like you to wear such a dress indoors in the morning. You need not, however, go to the expense of purchasing one, as we have one belonging to my dear daughter Alice (now in Philadelphia), which would, I should think, fit you very well. Then, as to sitting here or there, or amusing yourself in any manner indicated, that need cause you no inconvenience. As regards your hair, it is no doubt a pity, especially as I could not help remarking its beauty during our short interview, but I am afraid that I must remain firm upon this point, and I only hope that the increased salary may recompense you for the loss. Your duties, as far as the child is concerned, are very light. Now do try to come, and I shall meet you with the dog-cart at Winchester. Let me know your train. Yours faithfully, JEPHRO RUCASTLE.' "That is the letter which I have just received, Mr. Holmes, and my mind is made up that I will accept it. I thought, however, that before taking the final step I should like to submit the whole matter to your consideration." "Well, Miss Hunter, if your mind is made up, that settles the question," said Holmes, smiling. "But you would not advise me to refuse?" "I confess that it is not the situation which I should like to see a sister of mine apply for." "What is the meaning of it all, Mr. Holmes?" "Ah, I have no data. I cannot tell. Perhaps you have yourself formed some opinion?" "Well, there seems to me to be only one possible solution. Mr. Rucastle seemed to be a very kind, good-natured man. Is it not possible that his wife is a lunatic, that he desires to keep the matter quiet for fear she should be taken to an asylum, and that he humours her fancies in every way in order to prevent an outbreak?" "That is a possible solution--in fact, as matters stand, it is the most probable one. But in any case it does not seem to be a nice household for a young lady." "But the money, Mr. Holmes, the money!" "Well, yes, of course the pay is good--too good. That is what makes me uneasy. Why should they give you 120 pounds a year, when they could have their pick for 40 pounds? There must be some strong reason behind." "I thought that if I told you the circumstances you would understand afterwards if I wanted your help. I should feel so much stronger if I felt that you were at the back of me." "Oh, you may carry that feeling away with you. I assure you that your little problem promises to be the most interesting which has come my way for some months. There is something distinctly novel about some of the features. If you should find yourself in doubt or in danger--" "Danger! What danger do you foresee?" Holmes shook his head gravely. "It would cease to be a danger if we could define it," said he. "But at any time, day or night, a telegram would bring me down to your help." "That is enough." She rose briskly from her chair with the anxiety all swept from her face. "I shall go down to Hampshire quite easy in my mind now. I shall write to Mr. Rucastle at once, sacrifice my poor hair to-night, and start for Winchester to-morrow." With a few grateful words to Holmes she bade us both good-night and bustled off upon her way. "At least," said I as we heard her quick, firm steps descending the stairs, "she seems to be a young lady who is very well able to take care of herself." "And she would need to be," said Holmes gravely. "I am much mistaken if we do not hear from her before many days are past." It was not very long before my friend's prediction was fulfilled. A fortnight went by, during which I frequently found my thoughts turning in her direction and wondering what strange side-alley of human experience this lonely woman had strayed into. The unusual salary, the curious conditions, the light duties, all pointed to something abnormal, though whether a fad or a plot, or whether the man were a philanthropist or a villain, it was quite beyond my powers to determine. As to Holmes, I observed that he sat frequently for half an hour on end, with knitted brows and an abstracted air, but he swept the matter away with a wave of his hand when I mentioned it. "Data! data! data!" he cried impatiently. "I can't make bricks without clay." And yet he would always wind up by muttering that no sister of his should ever have accepted such a situation. The telegram which we eventually received came late one night just as I was thinking of turning in and Holmes was settling down to one of those all-night chemical researches which he frequently indulged in, when I would leave him stooping over a retort and a test-tube at night and find him in the same position when I came down to breakfast in the morning. He opened the yellow envelope, and then, glancing at the message, threw it across to me. "Just look up the trains in Bradshaw," said he, and turned back to his chemical studies. The summons was a brief and urgent one. "Please be at the Black Swan Hotel at Winchester at midday to-morrow," it said. "Do come! I am at my wit's end. HUNTER." "Will you come with me?" asked Holmes, glancing up. "I should wish to." "Just look it up, then." "There is a train at half-past nine," said I, glancing over my Bradshaw. "It is due at Winchester at 11:30." "That will do very nicely. Then perhaps I had better postpone my analysis of the acetones, as we may need to be at our best in the morning." By eleven o'clock the next day we were well upon our way to the old English capital. Holmes had been buried in the morning papers all the way down, but after we had passed the Hampshire border he threw them down and began to admire the scenery. It was an ideal spring day, a light blue sky, flecked with little fleecy white clouds drifting across from west to east. The sun was shining very brightly, and yet there was an exhilarating nip in the air, which set an edge to a man's energy. All over the countryside, away to the rolling hills around Aldershot, the little red and grey roofs of the farm-steadings peeped out from amid the light green of the new foliage. "Are they not fresh and beautiful?" I cried with all the enthusiasm of a man fresh from the fogs of Baker Street. But Holmes shook his head gravely. "Do you know, Watson," said he, "that it is one of the curses of a mind with a turn like mine that I must look at everything with reference to my own special subject. You look at these scattered houses, and you are impressed by their beauty. I look at them, and the only thought which comes to me is a feeling of their isolation and of the impunity with which crime may be committed there." "Good heavens!" I cried. "Who would associate crime with these dear old homesteads?" "They always fill me with a certain horror. It is my belief, Watson, founded upon my experience, that the lowest and vilest alleys in London do not present a more dreadful record of sin than does the smiling and beautiful countryside." "You horrify me!" "But the reason is very obvious. The pressure of public opinion can do in the town what the law cannot accomplish. There is no lane so vile that the scream of a tortured child, or the thud of a drunkard's blow, does not beget sympathy and indignation among the neighbours, and then the whole machinery of justice is ever so close that a word of complaint can set it going, and there is but a step between the crime and the dock. But look at these lonely houses, each in its own fields, filled for the most part with poor ignorant folk who know little of the law. Think of the deeds of hellish cruelty, the hidden wickedness which may go on, year in, year out, in such places, and none the wiser. Had this lady who appeals to us for help gone to live in Winchester, I should never have had a fear for her. It is the five miles of country which makes the danger. Still, it is clear that she is not personally threatened." "No. If she can come to Winchester to meet us she can get away." "Quite so. She has her freedom." "What CAN be the matter, then? Can you suggest no explanation?" "I have devised seven separate explanations, each of which would cover the facts as far as we know them. But which of these is correct can only be determined by the fresh information which we shall no doubt find waiting for us. Well, there is the tower of the cathedral, and we shall soon learn all that Miss Hunter has to tell." The Black Swan is an inn of repute in the High Street, at no distance from the station, and there we found the young lady waiting for us. She had engaged a sitting-room, and our lunch awaited us upon the table. "I am so delighted that you have come," she said earnestly. "It is so very kind of you both; but indeed I do not know what I should do. Your advice will be altogether invaluable to me." "Pray tell us what has happened to you." "I will do so, and I must be quick, for I have promised Mr. Rucastle to be back before three. I got his leave to come into town this morning, though he little knew for what purpose." "Let us have everything in its due order." Holmes thrust his long thin legs out towards the fire and composed himself to listen. "In the first place, I may say that I have met, on the whole, with no actual ill-treatment from Mr. and Mrs. Rucastle. It is only fair to them to say that. But I cannot understand them, and I am not easy in my mind about them." "What can you not understand?" "Their reasons for their conduct. But you shall have it all just as it occurred. When I came down, Mr. Rucastle met me here and drove me in his dog-cart to the Copper Beeches. It is, as he said, beautifully situated, but it is not beautiful in itself, for it is a large square block of a house, whitewashed, but all stained and streaked with damp and bad weather. There are grounds round it, woods on three sides, and on the fourth a field which slopes down to the Southampton highroad, which curves past about a hundred yards from the front door. This ground in front belongs to the house, but the woods all round are part of Lord Southerton's preserves. A clump of copper beeches immediately in front of the hall door has given its name to the place. "I was driven over by my employer, who was as amiable as ever, and was introduced by him that evening to his wife and the child. There was no truth, Mr. Holmes, in the conjecture which seemed to us to be probable in your rooms at Baker Street. Mrs. Rucastle is not mad. I found her to be a silent, pale-faced woman, much younger than her husband, not more than thirty, I should think, while he can hardly be less than forty-five. From their conversation I have gathered that they have been married about seven years, that he was a widower, and that his only child by the first wife was the daughter who has gone to Philadelphia. Mr. Rucastle told me in private that the reason why she had left them was that she had an unreasoning aversion to her stepmother. As the daughter could not have been less than twenty, I can quite imagine that her position must have been uncomfortable with her father's young wife. "Mrs. Rucastle seemed to me to be colourless in mind as well as in feature. She impressed me neither favourably nor the reverse. She was a nonentity. It was easy to see that she was passionately devoted both to her husband and to her little son. Her light grey eyes wandered continually from one to the other, noting every little want and forestalling it if possible. He was kind to her also in his bluff, boisterous fashion, and on the whole they seemed to be a happy couple. And yet she had some secret sorrow, this woman. She would often be lost in deep thought, with the saddest look upon her face. More than once I have surprised her in tears. I have thought sometimes that it was the disposition of her child which weighed upon her mind, for I have never met so utterly spoiled and so ill-natured a little creature. He is small for his age, with a head which is quite disproportionately large. His whole life appears to be spent in an alternation between savage fits of passion and gloomy intervals of sulking. Giving pain to any creature weaker than himself seems to be his one idea of amusement, and he shows quite remarkable talent in planning the capture of mice, little birds, and insects. But I would rather not talk about the creature, Mr. Holmes, and, indeed, he has little to do with my story." "I am glad of all details," remarked my friend, "whether they seem to you to be relevant or not." "I shall try not to miss anything of importance. The one unpleasant thing about the house, which struck me at once, was the appearance and conduct of the servants. There are only two, a man and his wife. Toller, for that is his name, is a rough, uncouth man, with grizzled hair and whiskers, and a perpetual smell of drink. Twice since I have been with them he has been quite drunk, and yet Mr. Rucastle seemed to take no notice of it. His wife is a very tall and strong woman with a sour face, as silent as Mrs. Rucastle and much less amiable. They are a most unpleasant couple, but fortunately I spend most of my time in the nursery and my own room, which are next to each other in one corner of the building. "For two days after my arrival at the Copper Beeches my life was very quiet; on the third, Mrs. Rucastle came down just after breakfast and whispered something to her husband. "'Oh, yes,' said he, turning to me, 'we are very much obliged to you, Miss Hunter, for falling in with our whims so far as to cut your hair. I assure you that it has not detracted in the tiniest iota from your appearance. We shall now see how the electric-blue dress will become you. You will find it laid out upon the bed in your room, and if you would be so good as to put it on we should both be extremely obliged.' "The dress which I found waiting for me was of a peculiar shade of blue. It was of excellent material, a sort of beige, but it bore unmistakable signs of having been worn before. It could not have been a better fit if I had been measured for it. Both Mr. and Mrs. Rucastle expressed a delight at the look of it, which seemed quite exaggerated in its vehemence. They were waiting for me in the drawing-room, which is a very large room, stretching along the entire front of the house, with three long windows reaching down to the floor. A chair had been placed close to the central window, with its back turned towards it. In this I was asked to sit, and then Mr. Rucastle, walking up and down on the other side of the room, began to tell me a series of the funniest stories that I have ever listened to. You cannot imagine how comical he was, and I laughed until I was quite weary. Mrs. Rucastle, however, who has evidently no sense of humour, never so much as smiled, but sat with her hands in her lap, and a sad, anxious look upon her face. After an hour or so, Mr. Rucastle suddenly remarked that it was time to commence the duties of the day, and that I might change my dress and go to little Edward in the nursery. "Two days later this same performance was gone through under exactly similar circumstances. Again I changed my dress, again I sat in the window, and again I laughed very heartily at the funny stories of which my employer had an immense répertoire, and which he told inimitably. Then he handed me a yellow-backed novel, and moving my chair a little sideways, that my own shadow might not fall upon the page, he begged me to read aloud to him. I read for about ten minutes, beginning in the heart of a chapter, and then suddenly, in the middle of a sentence, he ordered me to cease and to change my dress. "You can easily imagine, Mr. Holmes, how curious I became as to what the meaning of this extraordinary performance could possibly be. They were always very careful, I observed, to turn my face away from the window, so that I became consumed with the desire to see what was going on behind my back. At first it seemed to be impossible, but I soon devised a means. My hand-mirror had been broken, so a happy thought seized me, and I concealed a piece of the glass in my handkerchief. On the next occasion, in the midst of my laughter, I put my handkerchief up to my eyes, and was able with a little management to see all that there was behind me. I confess that I was disappointed. There was nothing. At least that was my first impression. At the second glance, however, I perceived that there was a man standing in the Southampton Road, a small bearded man in a grey suit, who seemed to be looking in my direction. The road is an important highway, and there are usually people there. This man, however, was leaning against the railings which bordered our field and was looking earnestly up. I lowered my handkerchief and glanced at Mrs. Rucastle to find her eyes fixed upon me with a most searching gaze. She said nothing, but I am convinced that she had divined that I had a mirror in my hand and had seen what was behind me. She rose at once. "'Jephro,' said she, 'there is an impertinent fellow upon the road there who stares up at Miss Hunter.' "'No friend of yours, Miss Hunter?' he asked. "'No, I know no one in these parts.' "'Dear me! How very impertinent! Kindly turn round and motion to him to go away.' "'Surely it would be better to take no notice.' "'No, no, we should have him loitering here always. Kindly turn round and wave him away like that.' "I did as I was told, and at the same instant Mrs. Rucastle drew down the blind. That was a week ago, and from that time I have not sat again in the window, nor have I worn the blue dress, nor seen the man in the road." "Pray continue," said Holmes. "Your narrative promises to be a most interesting one." "You will find it rather disconnected, I fear, and there may prove to be little relation between the different incidents of which I speak. On the very first day that I was at the Copper Beeches, Mr. Rucastle took me to a small outhouse which stands near the kitchen door. As we approached it I heard the sharp rattling of a chain, and the sound as of a large animal moving about. "'Look in here!' said Mr. Rucastle, showing me a slit between two planks. 'Is he not a beauty?' "I looked through and was conscious of two glowing eyes, and of a vague figure huddled up in the darkness. "'Don't be frightened,' said my employer, laughing at the start which I had given. 'It's only Carlo, my mastiff. I call him mine, but really old Toller, my groom, is the only man who can do anything with him. We feed him once a day, and not too much then, so that he is always as keen as mustard. Toller lets him loose every night, and God help the trespasser whom he lays his fangs upon. For goodness' sake don't you ever on any pretext set your foot over the threshold at night, for it's as much as your life is worth.' "The warning was no idle one, for two nights later I happened to look out of my bedroom window about two o'clock in the morning. It was a beautiful moonlight night, and the lawn in front of the house was silvered over and almost as bright as day. I was standing, rapt in the peaceful beauty of the scene, when I was aware that something was moving under the shadow of the copper beeches. As it emerged into the moonshine I saw what it was. It was a giant dog, as large as a calf, tawny tinted, with hanging jowl, black muzzle, and huge projecting bones. It walked slowly across the lawn and vanished into the shadow upon the other side. That dreadful sentinel sent a chill to my heart which I do not think that any burglar could have done. "And now I have a very strange experience to tell you. I had, as you know, cut off my hair in London, and I had placed it in a great coil at the bottom of my trunk. One evening, after the child was in bed, I began to amuse myself by examining the furniture of my room and by rearranging my own little things. There was an old chest of drawers in the room, the two upper ones empty and open, the lower one locked. I had filled the first two with my linen, and as I had still much to pack away I was naturally annoyed at not having the use of the third drawer. It struck me that it might have been fastened by a mere oversight, so I took out my bunch of keys and tried to open it. The very first key fitted to perfection, and I drew the drawer open. There was only one thing in it, but I am sure that you would never guess what it was. It was my coil of hair. "I took it up and examined it. It was of the same peculiar tint, and the same thickness. But then the impossibility of the thing obtruded itself upon me. How could my hair have been locked in the drawer? With trembling hands I undid my trunk, turned out the contents, and drew from the bottom my own hair. I laid the two tresses together, and I assure you that they were identical. Was it not extraordinary? Puzzle as I would, I could make nothing at all of what it meant. I returned the strange hair to the drawer, and I said nothing of the matter to the Rucastles as I felt that I had put myself in the wrong by opening a drawer which they had locked. "I am naturally observant, as you may have remarked, Mr. Holmes, and I soon had a pretty good plan of the whole house in my head. There was one wing, however, which appeared not to be inhabited at all. A door which faced that which led into the quarters of the Tollers opened into this suite, but it was invariably locked. One day, however, as I ascended the stair, I met Mr. Rucastle coming out through this door, his keys in his hand, and a look on his face which made him a very different person to the round, jovial man to whom I was accustomed. His cheeks were red, his brow was all crinkled with anger, and the veins stood out at his temples with passion. He locked the door and hurried past me without a word or a look. "This aroused my curiosity, so when I went out for a walk in the grounds with my charge, I strolled round to the side from which I could see the windows of this part of the house. There were four of them in a row, three of which were simply dirty, while the fourth was shuttered up. They were evidently all deserted. As I strolled up and down, glancing at them occasionally, Mr. Rucastle came out to me, looking as merry and jovial as ever. "'Ah!' said he, 'you must not think me rude if I passed you without a word, my dear young lady. I was preoccupied with business matters.' "I assured him that I was not offended. 'By the way,' said I, 'you seem to have quite a suite of spare rooms up there, and one of them has the shutters up.' "He looked surprised and, as it seemed to me, a little startled at my remark. "'Photography is one of my hobbies,' said he. 'I have made my dark room up there. But, dear me! what an observant young lady we have come upon. Who would have believed it? Who would have ever believed it?' He spoke in a jesting tone, but there was no jest in his eyes as he looked at me. I read suspicion there and annoyance, but no jest. "Well, Mr. Holmes, from the moment that I understood that there was something about that suite of rooms which I was not to know, I was all on fire to go over them. It was not mere curiosity, though I have my share of that. It was more a feeling of duty--a feeling that some good might come from my penetrating to this place. They talk of woman's instinct; perhaps it was woman's instinct which gave me that feeling. At any rate, it was there, and I was keenly on the lookout for any chance to pass the forbidden door. "It was only yesterday that the chance came. I may tell you that, besides Mr. Rucastle, both Toller and his wife find something to do in these deserted rooms, and I once saw him carrying a large black linen bag with him through the door. Recently he has been drinking hard, and yesterday evening he was very drunk; and when I came upstairs there was the key in the door. I have no doubt at all that he had left it there. Mr. and Mrs. Rucastle were both downstairs, and the child was with them, so that I had an admirable opportunity. I turned the key gently in the lock, opened the door, and slipped through. "There was a little passage in front of me, unpapered and uncarpeted, which turned at a right angle at the farther end. Round this corner were three doors in a line, the first and third of which were open. They each led into an empty room, dusty and cheerless, with two windows in the one and one in the other, so thick with dirt that the evening light glimmered dimly through them. The centre door was closed, and across the outside of it had been fastened one of the broad bars of an iron bed, padlocked at one end to a ring in the wall, and fastened at the other with stout cord. The door itself was locked as well, and the key was not there. This barricaded door corresponded clearly with the shuttered window outside, and yet I could see by the glimmer from beneath it that the room was not in darkness. Evidently there was a skylight which let in light from above. As I stood in the passage gazing at the sinister door and wondering what secret it might veil, I suddenly heard the sound of steps within the room and saw a shadow pass backward and forward against the little slit of dim light which shone out from under the door. A mad, unreasoning terror rose up in me at the sight, Mr. Holmes. My overstrung nerves failed me suddenly, and I turned and ran--ran as though some dreadful hand were behind me clutching at the skirt of my dress. I rushed down the passage, through the door, and straight into the arms of Mr. Rucastle, who was waiting outside. "'So,' said he, smiling, 'it was you, then. I thought that it must be when I saw the door open.' "'Oh, I am so frightened!' I panted. "'My dear young lady! my dear young lady!'--you cannot think how caressing and soothing his manner was--'and what has frightened you, my dear young lady?' "But his voice was just a little too coaxing. He overdid it. I was keenly on my guard against him. "'I was foolish enough to go into the empty wing,' I answered. 'But it is so lonely and eerie in this dim light that I was frightened and ran out again. Oh, it is so dreadfully still in there!' "'Only that?' said he, looking at me keenly. "'Why, what did you think?' I asked. "'Why do you think that I lock this door?' "'I am sure that I do not know.' "'It is to keep people out who have no business there. Do you see?' He was still smiling in the most amiable manner. "'I am sure if I had known--' "'Well, then, you know now. And if you ever put your foot over that threshold again'--here in an instant the smile hardened into a grin of rage, and he glared down at me with the face of a demon--'I'll throw you to the mastiff.' "I was so terrified that I do not know what I did. I suppose that I must have rushed past him into my room. I remember nothing until I found myself lying on my bed trembling all over. Then I thought of you, Mr. Holmes. I could not live there longer without some advice. I was frightened of the house, of the man, of the woman, of the servants, even of the child. They were all horrible to me. If I could only bring you down all would be well. Of course I might have fled from the house, but my curiosity was almost as strong as my fears. My mind was soon made up. I would send you a wire. I put on my hat and cloak, went down to the office, which is about half a mile from the house, and then returned, feeling very much easier. A horrible doubt came into my mind as I approached the door lest the dog might be loose, but I remembered that Toller had drunk himself into a state of insensibility that evening, and I knew that he was the only one in the household who had any influence with the savage creature, or who would venture to set him free. I slipped in in safety and lay awake half the night in my joy at the thought of seeing you. I had no difficulty in getting leave to come into Winchester this morning, but I must be back before three o'clock, for Mr. and Mrs. Rucastle are going on a visit, and will be away all the evening, so that I must look after the child. Now I have told you all my adventures, Mr. Holmes, and I should be very glad if you could tell me what it all means, and, above all, what I should do." Holmes and I had listened spellbound to this extraordinary story. My friend rose now and paced up and down the room, his hands in his pockets, and an expression of the most profound gravity upon his face. "Is Toller still drunk?" he asked. "Yes. I heard his wife tell Mrs. Rucastle that she could do nothing with him." "That is well. And the Rucastles go out to-night?" "Yes." "Is there a cellar with a good strong lock?" "Yes, the wine-cellar." "You seem to me to have acted all through this matter like a very brave and sensible girl, Miss Hunter. Do you think that you could perform one more feat? I should not ask it of you if I did not think you a quite exceptional woman." "I will try. What is it?" "We shall be at the Copper Beeches by seven o'clock, my friend and I. The Rucastles will be gone by that time, and Toller will, we hope, be incapable. There only remains Mrs. Toller, who might give the alarm. If you could send her into the cellar on some errand, and then turn the key upon her, you would facilitate matters immensely." "I will do it." "Excellent! We shall then look thoroughly into the affair. Of course there is only one feasible explanation. You have been brought there to personate someone, and the real person is imprisoned in this chamber. That is obvious. As to who this prisoner is, I have no doubt that it is the daughter, Miss Alice Rucastle, if I remember right, who was said to have gone to America. You were chosen, doubtless, as resembling her in height, figure, and the colour of your hair. Hers had been cut off, very possibly in some illness through which she has passed, and so, of course, yours had to be sacrificed also. By a curious chance you came upon her tresses. The man in the road was undoubtedly some friend of hers--possibly her fiancé--and no doubt, as you wore the girl's dress and were so like her, he was convinced from your laughter, whenever he saw you, and afterwards from your gesture, that Miss Rucastle was perfectly happy, and that she no longer desired his attentions. The dog is let loose at night to prevent him from endeavouring to communicate with her. So much is fairly clear. The most serious point in the case is the disposition of the child." "What on earth has that to do with it?" I ejaculated. "My dear Watson, you as a medical man are continually gaining light as to the tendencies of a child by the study of the parents. Don't you see that the converse is equally valid. I have frequently gained my first real insight into the character of parents by studying their children. This child's disposition is abnormally cruel, merely for cruelty's sake, and whether he derives this from his smiling father, as I should suspect, or from his mother, it bodes evil for the poor girl who is in their power." "I am sure that you are right, Mr. Holmes," cried our client. "A thousand things come back to me which make me certain that you have hit it. Oh, let us lose not an instant in bringing help to this poor creature." "We must be circumspect, for we are dealing with a very cunning man. We can do nothing until seven o'clock. At that hour we shall be with you, and it will not be long before we solve the mystery." We were as good as our word, for it was just seven when we reached the Copper Beeches, having put up our trap at a wayside public-house. The group of trees, with their dark leaves shining like burnished metal in the light of the setting sun, were sufficient to mark the house even had Miss Hunter not been standing smiling on the door-step. "Have you managed it?" asked Holmes. A loud thudding noise came from somewhere downstairs. "That is Mrs. Toller in the cellar," said she. "Her husband lies snoring on the kitchen rug. Here are his keys, which are the duplicates of Mr. Rucastle's." "You have done well indeed!" cried Holmes with enthusiasm. "Now lead the way, and we shall soon see the end of this black business." We passed up the stair, unlocked the door, followed on down a passage, and found ourselves in front of the barricade which Miss Hunter had described. Holmes cut the cord and removed the transverse bar. Then he tried the various keys in the lock, but without success. No sound came from within, and at the silence Holmes' face clouded over. "I trust that we are not too late," said he. "I think, Miss Hunter, that we had better go in without you. Now, Watson, put your shoulder to it, and we shall see whether we cannot make our way in." It was an old rickety door and gave at once before our united strength. Together we rushed into the room. It was empty. There was no furniture save a little pallet bed, a small table, and a basketful of linen. The skylight above was open, and the prisoner gone. "There has been some villainy here," said Holmes; "this beauty has guessed Miss Hunter's intentions and has carried his victim off." "But how?" "Through the skylight. We shall soon see how he managed it." He swung himself up onto the roof. "Ah, yes," he cried, "here's the end of a long light ladder against the eaves. That is how he did it." "But it is impossible," said Miss Hunter; "the ladder was not there when the Rucastles went away." "He has come back and done it. I tell you that he is a clever and dangerous man. I should not be very much surprised if this were he whose step I hear now upon the stair. I think, Watson, that it would be as well for you to have your pistol ready." The words were hardly out of his mouth before a man appeared at the door of the room, a very fat and burly man, with a heavy stick in his hand. Miss Hunter screamed and shrunk against the wall at the sight of him, but Sherlock Holmes sprang forward and confronted him. "You villain!" said he, "where's your daughter?" The fat man cast his eyes round, and then up at the open skylight. "It is for me to ask you that," he shrieked, "you thieves! Spies and thieves! I have caught you, have I? You are in my power. I'll serve you!" He turned and clattered down the stairs as hard as he could go. "He's gone for the dog!" cried Miss Hunter. "I have my revolver," said I. "Better close the front door," cried Holmes, and we all rushed down the stairs together. We had hardly reached the hall when we heard the baying of a hound, and then a scream of agony, with a horrible worrying sound which it was dreadful to listen to. An elderly man with a red face and shaking limbs came staggering out at a side door. "My God!" he cried. "Someone has loosed the dog. It's not been fed for two days. Quick, quick, or it'll be too late!" Holmes and I rushed out and round the angle of the house, with Toller hurrying behind us. There was the huge famished brute, its black muzzle buried in Rucastle's throat, while he writhed and screamed upon the ground. Running up, I blew its brains out, and it fell over with its keen white teeth still meeting in the great creases of his neck. With much labour we separated them and carried him, living but horribly mangled, into the house. We laid him upon the drawing-room sofa, and having dispatched the sobered Toller to bear the news to his wife, I did what I could to relieve his pain. We were all assembled round him when the door opened, and a tall, gaunt woman entered the room. "Mrs. Toller!" cried Miss Hunter. "Yes, miss. Mr. Rucastle let me out when he came back before he went up to you. Ah, miss, it is a pity you didn't let me know what you were planning, for I would have told you that your pains were wasted." "Ha!" said Holmes, looking keenly at her. "It is clear that Mrs. Toller knows more about this matter than anyone else." "Yes, sir, I do, and I am ready enough to tell what I know." "Then, pray, sit down, and let us hear it for there are several points on which I must confess that I am still in the dark." "I will soon make it clear to you," said she; "and I'd have done so before now if I could ha' got out from the cellar. If there's police-court business over this, you'll remember that I was the one that stood your friend, and that I was Miss Alice's friend too. "She was never happy at home, Miss Alice wasn't, from the time that her father married again. She was slighted like and had no say in anything, but it never really became bad for her until after she met Mr. Fowler at a friend's house. As well as I could learn, Miss Alice had rights of her own by will, but she was so quiet and patient, she was, that she never said a word about them but just left everything in Mr. Rucastle's hands. He knew he was safe with her; but when there was a chance of a husband coming forward, who would ask for all that the law would give him, then her father thought it time to put a stop on it. He wanted her to sign a paper, so that whether she married or not, he could use her money. When she wouldn't do it, he kept on worrying her until she got brain-fever, and for six weeks was at death's door. Then she got better at last, all worn to a shadow, and with her beautiful hair cut off; but that didn't make no change in her young man, and he stuck to her as true as man could be." "Ah," said Holmes, "I think that what you have been good enough to tell us makes the matter fairly clear, and that I can deduce all that remains. Mr. Rucastle then, I presume, took to this system of imprisonment?" "Yes, sir." "And brought Miss Hunter down from London in order to get rid of the disagreeable persistence of Mr. Fowler." "That was it, sir." "But Mr. Fowler being a persevering man, as a good seaman should be, blockaded the house, and having met you succeeded by certain arguments, metallic or otherwise, in convincing you that your interests were the same as his." "Mr. Fowler was a very kind-spoken, free-handed gentleman," said Mrs. Toller serenely. "And in this way he managed that your good man should have no want of drink, and that a ladder should be ready at the moment when your master had gone out." "You have it, sir, just as it happened." "I am sure we owe you an apology, Mrs. Toller," said Holmes, "for you have certainly cleared up everything which puzzled us. And here comes the country surgeon and Mrs. Rucastle, so I think, Watson, that we had best escort Miss Hunter back to Winchester, as it seems to me that our locus standi now is rather a questionable one." And thus was solved the mystery of the sinister house with the copper beeches in front of the door. Mr. Rucastle survived, but was always a broken man, kept alive solely through the care of his devoted wife. They still live with their old servants, who probably know so much of Rucastle's past life that he finds it difficult to part from them. Mr. Fowler and Miss Rucastle were married, by special license, in Southampton the day after their flight, and he is now the holder of a government appointment in the island of Mauritius. As to Miss Violet Hunter, my friend Holmes, rather to my disappointment, manifested no further interest in her when once she had ceased to be the centre of one of his problems, and she is now the head of a private school at Walsall, where I believe that she has met with considerable success. End of the Project Gutenberg EBook of The Adventures of Sherlock Holmes, by Arthur Conan Doyle *** END OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES *** ***** This file should be named 1661-8.txt or 1661-8.zip ***** This and all associated files of various formats will be found in: http://www.gutenberg.org/1/6/6/1661/ Produced by an anonymous Project Gutenberg volunteer and Jose Menendez Updated editions will replace the previous one--the old editions will be renamed. Creating the works from public domain print editions means that no one owns a United States copyright in these works, so the Foundation (and you!) can copy and distribute it in the United States without permission and without paying copyright royalties. Special rules, set forth in the General Terms of Use part of this license, apply to copying and distributing Project Gutenberg-tm electronic works to protect the PROJECT GUTENBERG-tm concept and trademark. Project Gutenberg is a registered trademark, and may not be used if you charge for the eBooks, unless you receive specific permission. If you do not charge anything for copies of this eBook, complying with the rules is very easy. You may use this eBook for nearly any purpose such as creation of derivative works, reports, performances and research. They may be modified and printed and given away--you may do practically ANYTHING with public domain eBooks. Redistribution is subject to the trademark license, especially commercial redistribution. *** START: FULL LICENSE *** THE FULL PROJECT GUTENBERG LICENSE PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK To protect the Project Gutenberg-tm mission of promoting the free distribution of electronic works, by using or distributing this work (or any other work associated in any way with the phrase "Project Gutenberg"), you agree to comply with all the terms of the Full Project Gutenberg-tm License (available with this file or online at http://gutenberg.net/license). Section 1. General Terms of Use and Redistributing Project Gutenberg-tm electronic works 1.A. By reading or using any part of this Project Gutenberg-tm electronic work, you indicate that you have read, understand, agree to and accept all the terms of this license and intellectual property (trademark/copyright) agreement. If you do not agree to abide by all the terms of this agreement, you must cease using and return or destroy all copies of Project Gutenberg-tm electronic works in your possession. If you paid a fee for obtaining a copy of or access to a Project Gutenberg-tm electronic work and you do not agree to be bound by the terms of this agreement, you may obtain a refund from the person or entity to whom you paid the fee as set forth in paragraph 1.E.8. 1.B. "Project Gutenberg" is a registered trademark. It may only be used on or associated in any way with an electronic work by people who agree to be bound by the terms of this agreement. There are a few things that you can do with most Project Gutenberg-tm electronic works even without complying with the full terms of this agreement. See paragraph 1.C below. There are a lot of things you can do with Project Gutenberg-tm electronic works if you follow the terms of this agreement and help preserve free future access to Project Gutenberg-tm electronic works. See paragraph 1.E below. 1.C. The Project Gutenberg Literary Archive Foundation ("the Foundation" or PGLAF), owns a compilation copyright in the collection of Project Gutenberg-tm electronic works. Nearly all the individual works in the collection are in the public domain in the United States. If an individual work is in the public domain in the United States and you are located in the United States, we do not claim a right to prevent you from copying, distributing, performing, displaying or creating derivative works based on the work as long as all references to Project Gutenberg are removed. Of course, we hope that you will support the Project Gutenberg-tm mission of promoting free access to electronic works by freely sharing Project Gutenberg-tm works in compliance with the terms of this agreement for keeping the Project Gutenberg-tm name associated with the work. You can easily comply with the terms of this agreement by keeping this work in the same format with its attached full Project Gutenberg-tm License when you share it without charge with others. 1.D. The copyright laws of the place where you are located also govern what you can do with this work. Copyright laws in most countries are in a constant state of change. If you are outside the United States, check the laws of your country in addition to the terms of this agreement before downloading, copying, displaying, performing, distributing or creating derivative works based on this work or any other Project Gutenberg-tm work. The Foundation makes no representations concerning the copyright status of any work in any country outside the United States. 1.E. Unless you have removed all references to Project Gutenberg: 1.E.1. The following sentence, with active links to, or other immediate access to, the full Project Gutenberg-tm License must appear prominently whenever any copy of a Project Gutenberg-tm work (any work on which the phrase "Project Gutenberg" appears, or with which the phrase "Project Gutenberg" is associated) is accessed, displayed, performed, viewed, copied or distributed: This eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever. You may copy it, give it away or re-use it under the terms of the Project Gutenberg License included with this eBook or online at www.gutenberg.net 1.E.2. If an individual Project Gutenberg-tm electronic work is derived from the public domain (does not contain a notice indicating that it is posted with permission of the copyright holder), the work can be copied and distributed to anyone in the United States without paying any fees or charges. If you are redistributing or providing access to a work with the phrase "Project Gutenberg" associated with or appearing on the work, you must comply either with the requirements of paragraphs 1.E.1 through 1.E.7 or obtain permission for the use of the work and the Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or 1.E.9. 1.E.3. If an individual Project Gutenberg-tm electronic work is posted with the permission of the copyright holder, your use and distribution must comply with both paragraphs 1.E.1 through 1.E.7 and any additional terms imposed by the copyright holder. Additional terms will be linked to the Project Gutenberg-tm License for all works posted with the permission of the copyright holder found at the beginning of this work. 1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm License terms from this work, or any files containing a part of this work or any other work associated with Project Gutenberg-tm. 1.E.5. Do not copy, display, perform, distribute or redistribute this electronic work, or any part of this electronic work, without prominently displaying the sentence set forth in paragraph 1.E.1 with active links or immediate access to the full terms of the Project Gutenberg-tm License. 1.E.6. You may convert to and distribute this work in any binary, compressed, marked up, nonproprietary or proprietary form, including any word processing or hypertext form. However, if you provide access to or distribute copies of a Project Gutenberg-tm work in a format other than "Plain Vanilla ASCII" or other format used in the official version posted on the official Project Gutenberg-tm web site (www.gutenberg.net), you must, at no additional cost, fee or expense to the user, provide a copy, a means of exporting a copy, or a means of obtaining a copy upon request, of the work in its original "Plain Vanilla ASCII" or other form. Any alternate format must include the full Project Gutenberg-tm License as specified in paragraph 1.E.1. 1.E.7. Do not charge a fee for access to, viewing, displaying, performing, copying or distributing any Project Gutenberg-tm works unless you comply with paragraph 1.E.8 or 1.E.9. 1.E.8. You may charge a reasonable fee for copies of or providing access to or distributing Project Gutenberg-tm electronic works provided that - You pay a royalty fee of 20% of the gross profits you derive from the use of Project Gutenberg-tm works calculated using the method you already use to calculate your applicable taxes. The fee is owed to the owner of the Project Gutenberg-tm trademark, but he has agreed to donate royalties under this paragraph to the Project Gutenberg Literary Archive Foundation. Royalty payments must be paid within 60 days following each date on which you prepare (or are legally required to prepare) your periodic tax returns. Royalty payments should be clearly marked as such and sent to the Project Gutenberg Literary Archive Foundation at the address specified in Section 4, "Information about donations to the Project Gutenberg Literary Archive Foundation." - You provide a full refund of any money paid by a user who notifies you in writing (or by e-mail) within 30 days of receipt that s/he does not agree to the terms of the full Project Gutenberg-tm License. You must require such a user to return or destroy all copies of the works possessed in a physical medium and discontinue all use of and all access to other copies of Project Gutenberg-tm works. - You provide, in accordance with paragraph 1.F.3, a full refund of any money paid for a work or a replacement copy, if a defect in the electronic work is discovered and reported to you within 90 days of receipt of the work. - You comply with all other terms of this agreement for free distribution of Project Gutenberg-tm works. 1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm electronic work or group of works on different terms than are set forth in this agreement, you must obtain permission in writing from both the Project Gutenberg Literary Archive Foundation and Michael Hart, the owner of the Project Gutenberg-tm trademark. Contact the Foundation as set forth in Section 3 below. 1.F. 1.F.1. Project Gutenberg volunteers and employees expend considerable effort to identify, do copyright research on, transcribe and proofread public domain works in creating the Project Gutenberg-tm collection. Despite these efforts, Project Gutenberg-tm electronic works, and the medium on which they may be stored, may contain "Defects," such as, but not limited to, incomplete, inaccurate or corrupt data, transcription errors, a copyright or other intellectual property infringement, a defective or damaged disk or other medium, a computer virus, or computer codes that damage or cannot be read by your equipment. 1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right of Replacement or Refund" described in paragraph 1.F.3, the Project Gutenberg Literary Archive Foundation, the owner of the Project Gutenberg-tm trademark, and any other party distributing a Project Gutenberg-tm electronic work under this agreement, disclaim all liability to you for damages, costs and expenses, including legal fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH DAMAGE. 1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a defect in this electronic work within 90 days of receiving it, you can receive a refund of the money (if any) you paid for it by sending a written explanation to the person you received the work from. If you received the work on a physical medium, you must return the medium with your written explanation. The person or entity that provided you with the defective work may elect to provide a replacement copy in lieu of a refund. If you received the work electronically, the person or entity providing it to you may choose to give you a second opportunity to receive the work electronically in lieu of a refund. If the second copy is also defective, you may demand a refund in writing without further opportunities to fix the problem. 1.F.4. Except for the limited right of replacement or refund set forth in paragraph 1.F.3, this work is provided to you 'AS-IS' WITH NO OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE. 1.F.5. Some states do not allow disclaimers of certain implied warranties or the exclusion or limitation of certain types of damages. If any disclaimer or limitation set forth in this agreement violates the law of the state applicable to this agreement, the agreement shall be interpreted to make the maximum disclaimer or limitation permitted by the applicable state law. The invalidity or unenforceability of any provision of this agreement shall not void the remaining provisions. 1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the trademark owner, any agent or employee of the Foundation, anyone providing copies of Project Gutenberg-tm electronic works in accordance with this agreement, and any volunteers associated with the production, promotion and distribution of Project Gutenberg-tm electronic works, harmless from all liability, costs and expenses, including legal fees, that arise directly or indirectly from any of the following which you do or cause to occur: (a) distribution of this or any Project Gutenberg-tm work, (b) alteration, modification, or additions or deletions to any Project Gutenberg-tm work, and (c) any Defect you cause. Section 2. Information about the Mission of Project Gutenberg-tm Project Gutenberg-tm is synonymous with the free distribution of electronic works in formats readable by the widest variety of computers including obsolete, old, middle-aged and new computers. It exists because of the efforts of hundreds of volunteers and donations from people in all walks of life. Volunteers and financial support to provide volunteers with the assistance they need are critical to reaching Project Gutenberg-tm's goals and ensuring that the Project Gutenberg-tm collection will remain freely available for generations to come. In 2001, the Project Gutenberg Literary Archive Foundation was created to provide a secure and permanent future for Project Gutenberg-tm and future generations. To learn more about the Project Gutenberg Literary Archive Foundation and how your efforts and donations can help, see Sections 3 and 4 and the Foundation web page at http://www.pglaf.org. Section 3. Information about the Project Gutenberg Literary Archive Foundation The Project Gutenberg Literary Archive Foundation is a non profit 501(c)(3) educational corporation organized under the laws of the state of Mississippi and granted tax exempt status by the Internal Revenue Service. The Foundation's EIN or federal tax identification number is 64-6221541. Its 501(c)(3) letter is posted at http://pglaf.org/fundraising. Contributions to the Project Gutenberg Literary Archive Foundation are tax deductible to the full extent permitted by U.S. federal laws and your state's laws. The Foundation's principal office is located at 4557 Melan Dr. S. Fairbanks, AK, 99712., but its volunteers and employees are scattered throughout numerous locations. Its business office is located at 809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email business@pglaf.org. Email contact links and up to date contact information can be found at the Foundation's web site and official page at http://pglaf.org For additional contact information: Dr. Gregory B. Newby Chief Executive and Director gbnewby@pglaf.org Section 4. Information about Donations to the Project Gutenberg Literary Archive Foundation Project Gutenberg-tm depends upon and cannot survive without wide spread public support and donations to carry out its mission of increasing the number of public domain and licensed works that can be freely distributed in machine readable form accessible by the widest array of equipment including outdated equipment. Many small donations ($1 to $5,000) are particularly important to maintaining tax exempt status with the IRS. The Foundation is committed to complying with the laws regulating charities and charitable donations in all 50 states of the United States. Compliance requirements are not uniform and it takes a considerable effort, much paperwork and many fees to meet and keep up with these requirements. We do not solicit donations in locations where we have not received written confirmation of compliance. To SEND DONATIONS or determine the status of compliance for any particular state visit http://pglaf.org While we cannot and do not solicit contributions from states where we have not met the solicitation requirements, we know of no prohibition against accepting unsolicited donations from donors in such states who approach us with offers to donate. International donations are gratefully accepted, but we cannot make any statements concerning tax treatment of donations received from outside the United States. U.S. laws alone swamp our small staff. Please check the Project Gutenberg Web pages for current donation methods and addresses. Donations are accepted in a number of other ways including including checks, online payments and credit card donations. To donate, please visit: http://pglaf.org/donate Section 5. General Information About Project Gutenberg-tm electronic works. Professor Michael S. Hart is the originator of the Project Gutenberg-tm concept of a library of electronic works that could be freely shared with anyone. For thirty years, he produced and distributed Project Gutenberg-tm eBooks with only a loose network of volunteer support. Project Gutenberg-tm eBooks are often created from several printed editions, all of which are confirmed as Public Domain in the U.S. unless a copyright notice is included. Thus, we do not necessarily keep eBooks in compliance with any particular paper edition. Most people start at our Web site which has the main PG search facility: http://www.gutenberg.net This Web site includes information about Project Gutenberg-tm, including how to make donations to the Project Gutenberg Literary Archive Foundation, how to help produce our new eBooks, and how to subscribe to our email newsletter to hear about new eBooks. lz4-2.5.2/testdata/pg1661.txt.lz4000066400000000000000000013410271364760661600162660ustar00rootroot00000000000000"Md`Project Gutenberg's The Adventures of Sherlock Holmes, by Arthur Conan Doyle This eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever. You may copy it, give it away or re-use it under the terms of the License included with tor onlinTwww.g6.net Title:D Author:KQPosting Date: April 18, 2011 [EBook #1661] First Posted: November 29, 2002 Language: English@*** START OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES *** Produced by an anonymouszvolunteerJose MenendezL  by SIR ARTHUR CONAN DOYLEO I. A Scandal in Bohemia II.Red-headed League II9"CaIdentity7V7Boscombe Valley Myster# #Five Orange Pips Vv1Man the Twisted Lip V1 of(Blue Carbuncle V +Speckled BandX*Engineer1umb8-Noble Bachelor Xeryl Coro=/ XCopper Beech:CANDAL IN BOHEMIA I.o she is alwayswoman. I have seldom heard him mention herWany other name. In /y` eclipses and predominateswhole ofRsex. It was not that he felt any emoakin to lovedIrene Adler. All*!s,R that one particularly, wbhorrent to+cold, precise but admirably balanced mind. He was, I take the most perfect reasoningobserving machinethe world has seen, but as a lover #u#ve placed himself in a false positionnever spokkthe softer pass&Qsave aa gibeqa sneer2y . e things3theer--excellentdrawing the veil froK's motivesnB. Bu:the trained Caer tot such intru3 inown delicatfinely adjuGtemperamenn!toI* a distracting factor which might throw a doubt upon all<mental results. Grit sensit nstrument, or a crack in onhigh-power lenses,not be more2urbean a strongbnature7as his. And ye}rs2one mE! "waHlate}, of dubiouquestionable memoryQI hada littl^  lately. My marriage.drifted us awayJBeach2own complete happines e home-centred interests rise up aroundman who first findsuamasterestablish5rsufficid absorb4bmy attWu, whiled who loathed every form of society3hisIn soul, rem>in our lodgin Baker Street, buried amongsld book:ralternarom week to between cocai Qd amb,FQdrows drug, agfierce energyQRkeen was still, asq, deeplLBractu 1tudNRcrimenaoccupi:s immense facultiextraordinary power ain folloout those clue7clearing upm #ieq had been abandoned as hopelessoA al police. From time to " I some vague accountOtdoings:qsummonsBOdessa inc | repoff murd8his#  singular trageythe Atkinson br-s at Trincomalee,afinallEih!acished so !lyKsuccessfully AreigBfamiaHolland. Beyoqse sign1hisvity, however,I merely shared1all=Cread/the daily prfI knew1 mmer friendcompanion,One night--iotwentieth of March, 1888--I was returnrom a journey to a patR(for Bnow 5ed to civil pce), when my way led meHugh S. As I passeIwell-remembered dooRDmust be associated io3mingmy wooin<hrk incidentathe Sin Scarlet, c seize?aedesire to ser again:to know how as employi67. His roomsr brilliantly lit\0, even as I looked up, I saw his tall, spare figure pass twice silhouette st the bl B pac1e swiftly, eage 1ith head sunk upo 3chehis hands clasped behin . To me, who  2mooahabit,krattitud manner tol@ir own story rat work1hadDn oum-created dreamwm 2"ce1some new problem. I ra Q bellhown up to the chambe6 3had"ly!in ! m2. $ effusive. It Awas; h glad, I think,Qme. Wardly a word spokY 9a kindly eye,vormchair, threw acros> %ccigars1indy > Rpirit( gasogeneh3orna n he stood beforeK2fir=me over ir introspecc Dfash?"Wedlock suits you," he rked. "I k, Watson, you have put on snd a half pound"ce you." "Seven!" I answered"Indeed, I sh thought a more. Just a trif, I fancy %in3, I!e.2did not tellaintend! g o harnessQThen,ado you ?I0i[deduce it. H-I+ R getting yourself very wet ,lhave a most clumsR car- servant girlsMy dear[ ," said I, "is too much$_ certainly u burned, had lived a few centuries agois true ^!a ry walk on Thursda came homaqdful m<I changed my clothes I can't imagineWyou As to Mary Jane,incorrigiblewmy wife has givenbnoticefthere,nDfail}it out.0He chucklpand rubb long, nervoub together.xfsimplicity itselfhe; "my eyes ? q insidzy eft shoe, just whelstrikes it,W1leais scored by six parallel cuts. Obviousl _Ccaus>aomeonev2hasly scraped roude edgeA solC1ord@ remove cr2mud it. Hence,see, my double 7!ti.) !ourvile w8 ,ar malignant boot-slispecimen J London slavey , if a gentlemanT!mys smelling of iodoforma black mark of nitrate of silverrforefinga bulge "e&S Qop-haZCshowR qs secre his stethoscope, I be dull, i3if I do not pronounce1to  "e g Pmedical profession1I cnot help laughC eas rexplain Acess1. "When I hear\Bgivets," I egaappearm be so ridiculF! Deasily do it my though at each *ive instancing I am baffled untilSyet I believare as good a"rs"Quite so2!, w cigarett1ing?Bdown D. "Y1butC The distin is clear. For exampl%afreque Bseen Cstep lead uphthe hall  FJHow often?.a"Well, hundredlDtime<? ow many a#reAH?<1n'tnw!" d . That is *my point. Now,$> Bteen)Q, beAboth_By-the-way,k qyou are @   8!ento chronicler two of myz ing experiences. may beDais." Hew over a shee thick, pink-tinted note-pap3 g!ly2pen$able. "It came$last postq. "ReadBloud!ThA undated,twithout ei2sigy or address{There will callqyou to-, at a quarteight o'clock," it said, "a #hobconsul~va mattAveryest moment r recent servicOfroyal hous;bEurope^ "arwho may safeltURwith 6f an imporcJ4canbe exaggerated. ThisSyou w<Sall Zsi(EyourBthenrat hourtdo not amiss ilr visitor wear a mask9"#isB a mT," I $at)  it meansno data yet. a capital mis]]Sorize"1has>A. Ine1blyabeginsuwist fact2suiories, instead}  #ui5t8h 8. . "itI carefully examineU writBthe "  writtenw ho wrote'q presum"wei)do, endeavouro imitateC q's processes. "Such& * Bbe bRunder qa crownX&ckpeculiarand stiffWP#!--i]Dword#. not an Englis at all. Hol!up"heJrI did sosaw a large "E"a small "g," a "P,"#3a *G*st" woveQexturX :3mak#at?" aske sThe nam%e maker, no doubt; or?monogram, ra'e5NotrThe 'G'a't' stfor 'Gesellschaft,'German for 'C94y.' customary conIon like ou3.' 'P,' of c,}Papier.' Nowgthe 'Eg.' Let us g 1 atSContinental Gazetteer2ook a heavy bSvolumhis shelves. "Eglow, Eglonitz--e are, Egriawa-speak &--Q$, 2far Carlsbad. 'Remarkable as beB"ce"eaWallenstein for its numerous glass-fact{"aper-mills.' Ha, hafboy, w+ 2HisCdsparkl+ahe sen` a great blue triumphant clok6his Tqwas madqBohemia3sai4P"Rly. A s1. D5#1 co qence--'/  ' A Frenchman or Russianl aE tha\who is so uncourteou his verbs. It only remains,l fore, to disco"Qis wao 0 #isMBites n4 &Apref!ea>%h Bface1coma1f J4notnresolve all As he spokr harp sounhorses' hoofB grbwheelssbcurb, qaQBpull. Se beG!me CstletA pair,y u Yk!hebinued,#ou e window. "A nic bQ"amrn of beauties. A #fifty guineas apiece!ref$Qney ii`re is notCelse<Ik!be 3go,+g bit, Doctor. Stay !. Alostout my BoswqiAmisef sing. It$abe a pz)!to23 itBr client--Never mind hi1mayBhelpZso may he. H! R. SitUv%atnBrgive usYebest "aA slowDsteph2had{RheardCtaire passage, pGimmediately outsidDuJre was a louauthoritative tapCome in!" said A man ent3whoSzSBless% six feet six inches in h$, gAlimba Hercules. His dressBrich<qa richnhould, in,sand, bei upon asX)bad tast3 of astrakhanslashed 4lee'3fro1his qle-brea.Acoatl'e blue cloakm&M1oulf!uwas lin.flame-coloured silk^1secaDneck,brooch y Qconsiof a single flaming beryl. BootRch ex= halfway upDcalv $+qwere triQ tops!  Efur,&d Bimpr of barbaric opuledas sugge!bySwholeQ1ancB car% broad-bn9h,AwhilWwore upper par,2ing'$pa}qheekbonavizardilhhad apparently )hat veryR, fohtill rai}"aNA%hhe lowqthe fac0e!j#f character, with a hanging liKaAstraLDchinrive of u Bpushxthe leng obstinacE)had my note?t@ deep harsh voicL2a lb)4ked accent. "I told-ICY q lookeTm oneg other of us, as if uncertainIto OQPray da seatM` y'my'% colleague, Dr.> roccasioU&Vgood mBaBWhom Iahonour !x4may! m the Count Von Kramm, aP nG"an. I unders,3F, is} and discretimQtrustT7 most extremSq. If no]b much to communicateQlone.ZbI roseC ," caught me1 Qwristme back intoEhairboth, or none,i Usay 7"JB any y2S to mTbshrugg !"ermust begin he, "by biyou both?rbsolutec' two years; a1 enwqthat ti\'enb'noSA. At i 5not r to sayg"of?/wqQ it 1avenfluences qEuropeaBtory$"I  c"And I)2You+Sexcusfmask,"! our strange. "The august perso w's me wishes 5gc- be unknown(Ayou,oqconfess>2nce1itl+1cal(Syself- exactly my ownI#aw*it S drylThe circumstances)of great delicacyeQpreca%D ha taken to quench0Cgrowmense scandalAseriOr+BreigF*Qamili/" . To speak 1ly,4eimplic3BHous3Orm hereditary kings of BohemiaX6lso]!th-Amurm 1HolqRsettlqmself i Bclos* 4Ourd glanc+*(Q surp30V languid, lou)J !no qt depic qo him  incisive K4 %1/Cetici2. b '3ope3and 3 im,F/ his giganticA#"I%tMajestyondescen, sW|a )heIS4 beOto advis=T6!sp|)2his"Apacelhe room in@antrollc!ag "onm Ta gesrdesperaWhb/!reUBmask ShurlenoYr ground|C ar", cried; " Qthe K4WhyI attemptuconcealWS"Why,?u1had}espoken'pdQing Wilhelm Gottsreich Sigismond vonGrand DukCassel-FelEK G can ?!d, sittf once m !nd Aover)high white forehead, "! |bnot aceRdoingI#bu2Bin B. Ye^1,ot|^1fid!"pupower. IS&come incognito7QPraguapurposf*)"pr3DsultYC, shS.TN tRbrief&se: Some five r ago, d2a y to Warsa_!-the acquain= Qwell- adventuress,&:T&isa Kindly look her up 6 Tindex, out ope@'W#Cmanydopted a syste5Rdocke$ll paragraphs rY1men Rs, so"itdifficulRa subject or a$ o #he!no once furnish inform"B. In .1I fqher bioy sandwiched in betwee` of a Hebrew rabbi staff-comman@Ca&phdeep-sea f !Le Jsee! "Hum! Bor%New Jersey `year 1858. Clto--hum! La Scala,  Prima donna Imperial Opera--yes! RetirEvc stage--ha! LivingLondon--quite so! lI71 be#entangled  Syoung,L2herh% ing letters.w desirou -6/D bac6!2 soJ 4howWr) marriagemNb"No legals or certifc 1 , 2 pA2for1maie #orSs*/ais sh prove their authenticityO$_!Pooh, pooh! Forge My private note-C!6TStole M S sealI drMy photcBought cWe wer& 21Oh,l/1! TAZy bad5 haB#acommitVn inzmad--insa 2You!ed  Faonly CI!PrH'1the@w)#ng!butrty nowEt recoverA"WeQtriedEfailDWpay. QO"i2She0tnot sel,DFive+ sAbeenN. Twice burglarbmy pay ransack"er&. Once we diverterluggage7she travelled`hen waylaidarno resulSaNo sig| Absolutelyla laugh]%Ia pretty("heRBut a4me," ret1  reproachful5Veru R. Andedoes she proposrdo withHZo ruin mm SaboutL#So[-To Clotilde Lot~von Saxe-M}en, second dof Scandinavia. Y*Aknowstrict principl her family. Sh"he3$ssoul of cy. A shadow of a  mo 5ducr_Se matN)Tan enm IThreatens to s"hep sr3.F !at|YA-%2her"shaa soulRsteelh6 fa !moPRautif"Dwome0 i.% qmen. RaqYXmarry anBwoma9r# no length Fgo--ja@Br nt it ye4sur1qBecause\2has n1senT!on~dK betrothalmpublicly'Alaim2hatHbe next Monda!OhBn we9AthregTs yetCaa yawn!at Actunate  one or two, S into just at presenf,/&y  ?Cv!lyOFQ findrLangham8 hi'+ V s/drop you a liU1letow we progressCedo so.Jb#danxiet4oneBarte blanche^I I62youfId$giQprovi.qkingdom^!>p&t expens TVEtook'uchamoisA6#ba! (ai /%1a pound2golUseven!"in&fs," hem&scribbled a receipt_ /!hi1e-band haI:2himAnd Mademoiselle'i?}Rasked+#Is Briony Lodge, Serpentine Avenue, St. John's Wooe"no$tit. "OnFF  a cabinDt wagood-night,{ S # I2#we.asoon KKAnews2you[<(!dd,L%/<%qrolled !treet. "Ifb0to-morrow afternoon3ree o'clockould likc4his R over A IIAW Vp0Iat Baker Sm1hadE yet } landladyeQd lefB hoRortlye eight qmorning3*ewn be_$Afire /D a intenaof awa.s him, . long he4be.already#!lyKr! inquiry, for, though/asurroubW /1gria'$ wfeatures associat(two crim*# recorded, stilli! n]~.be exalted sta&3hisyA gavas! of its own. Indeed, a"rinvestigbmy friend had on hand!re}AsomeVn masterly grasp of a situXhis keen,Cing,^it a pleaX 1o mHQstudy R work_=quick, subtle method:H7most inextric2])(SoRwas Is invariKrsuccessR possibility off(had ceas?! #bmy heajb closerCfour2door open!ndB runken-looking groom, ill-kempt(side-whiskeredzbflamed [!Arepuib?a, walk!toroom. A#as]'s amazingLJP1useBadisgui:I"topTtimesc }(<$ hCAa no.hvanish2bed"Awhenq emerg%minutes tweed-suitarespec of old. P1hisJ=Qhis p2s, JAetcht#2leg=3(%Cstily foJ,:qreally!1k,t&:ce chokW2aga+Rtil hQoblig lie back, limhQhelplVe chair$it t's quite!ufunny. # D youoever guess: 2I Ted myB, or4I e!." B"up1hatq!tc,Rhabit perhaps%, of MissNuQ3so;@re seque 3 unusual5ill 5. I a littlet (a 1 ouSAwork"ra wonderful sympathC freemasonry among horseyxB9 mdW know allotmqto knowo Xund ". a bijou villa garden Tbut builtin front r5up ad, two stoChubb lock +oor. Large^-MVside, well fur^Clong/qs almostthe flo./ prepost3 6=q fastenx1hich a child+open. BehiGr/rY4A, sa7Apass~07aB4topacoach- \ 2 i`8"it"ly{Cever$> of view without "V&!el ZI^loung SI expected,%Qa mewca lanebruns down by one wall" }!ntostlers a in rubb7"JLvf exchange twopence, a glasSAhalfAhalfa fillshag tobacco|sas much H [desire [Miss Adler, to say1zd dozeneople inF neighbourhood i&m!nothe least!ed whose bir$ie4Acomp\vssten toBa}H?" I@"OhGpqe men'si .aFtdaintiesng under a bonnet is planet2 c(6e Q-mews`Ra manblWbquietl@g qts, dr$bout atA2day85for dinner. SZ&goKQotherY)s, exceptsings. H+uone mal( a good deaahim. HJRdark,BsomeAdash scalls l7 n once aA ofwSXa Mr. Godfrey Norton, Inner Temple. SeK1sadvantaHqa cabmaa confidant. Theyp sn him hom{  rand kneXCWhen e r!to, I began toU2 upInear23mor`2inkc!my of campaign:KThisD was evida0n,?#orO" was a lawyer.saominous. W{R rel "em>w0qe objec his repeated visits? Waf,8 `  his mistress? I formerad prob(?transferre   keeping#e latter, i less likely. OAissux oB dep !whK# Ic,3 myQt# !ord my atIe gentleman'(2mbeTthe SaR+"teit widenfield of myZ. I fearGq I boreD se details, butve to leo !sej@ #qies, ifNa~T 05e ] 8 1ing:closely," I answereM".^ M!inY !innsom cab d D  ;a sprang out'Iqhandsome man,- aquilinQmoust %--z3f"ha dk 3in a great hurry,kt4the q"itbrushed pasR mai7jzA air1 maoaly atO!He tN 5R hourcatch glimpse3him n  , pacing u-Q, taltexcitedcQ2wavs arms. Of"1see hBPres33he 4,Aing dmore flurri:a'fRA&Rstepp+Qpulle\old watchE & G "lot it earnesSa'Driveevil,' he b, 'fir Gross & Hankey'!Res)qaa n3hurch ofdMonicaEdgeware Road. H guinea i|L2Twenty!!'JAway they wenRjust >ingNnot do well(m!up !caDneatbrlandau, 1itho!co (!ly-buttoned"rhis tie1earl=!agrhis har:ere sticqbucklesdhadn't $uprshe shoh%H!an_caught a Z$erXmoment, but sha lovely woa2F cdie fo/'T3, John,'d!'al!sovereign#;.;!wab o Q$seOP- 1runm!it rperch bRher CnRa cabh!th~s. The driver?ed twice at sucFhabby fare[Bjump@Qbefor9/" G /. r' said Ii h/ i?aJnty-,o twelv6 Tclearow) wind. "My cUfast.Nthink I ever!"the oth:3ere."usy1cabG$ththeir steamiI\gaw arrived. I paidu !ndi!tocBr`1notu(Cre a surpliced clergyho seembe expostulatingmy  ing in a k2frothe altar\side aisl3anyF5idl,Qs droa Suddenly;!myQrise,:} 4running a7-towards me'Thank God,'<ried. 'You'll do. Come!' jthen?'!'Cc fi!'t@Cegalhalf-dra9 IRwhere$ .myself mumbling responBhichqwhisper my ear,!2vou3Afor rxqgeneral 1ssiChe secure ty b, spinJto 3, bml$nan instaFp > Q than~"meBe on&%dyVEothe6the}a beameNm66 qpositioG!in 3lif`i&!hoRof it 1sta*"meCqing juspwRseems-&had been /0 Rlicenaabsolutely refu. 3m  a witnes= 2sormy luckyAabridegh to sally!vs in sea a best ma7Ss aI mean.1weaoB Q-chaidmemory(occasion."$is+$unof affairs,"4; "0! \JWC%s+ly menaced. Iti@K_H Btake ?F departuoso necess;P" Qrompt'9mspart. At /" asepara xD4ack! -!o tA"wn16. ''&$utlEparkVas usual ljBleftIl no more1drove away in different directionsQ I we5fk5rrangements.~3are;%61col#Qbeer,B, riz; J"too busyO;Sf foo ^Lbe busierE!evT-1. B way, Doctor, |want your co-oT:&!be&gh1b,2n'tIAbreaw%NogX6NorR chanp,jarrest<a Dcaus;)+E is o!T m&$masShat ITvrely on%B"But!is5,sou wishWhen Mrs. Turner\0= DtrayCRqosR. Now!he^ed hungri9ample f!ha`r landlad provided, "I2adiscusGQI eat%A I p2notAtime~is nearly five n two hours we_x QaW., or Madame, r .," # (2-2. We! bj ~Ueet hxw1You6 leZ!o kalready arra !isQoccurHGre ioApoinQkbinsist,mVBfereM R2may(EWto be neutral#To/h ehateveFwill5b)!sm`!un%antness. Do not joiPCQend i)Raconvey[ \rFour or!#)RwardshBopenoS'Ayour ,CopenB4Yes G3 memb:ble2;B= Araishand--so--ll throw waI give$'2rowWTwill, 2sam&%,g b fire#?$ mcEntirelyI JformidableS2, t a long cigar-shaped roll $4an ordinary plumber's smoke-rocket, fitu)a cap at eie Qself-Cing. Your task i&-minded NonconuEst . His broad black hat,bbaggy trouserswhite tie%-E3smiC  \ and benevolent curiosit,Qs Mr. Hare alonh*0B 3illS#b1be !toA3rums'ris herK2ageP!oubordersde lettAs he spo"Ugleamj 2idees of ac 3ounAcurvC[the a [ smar$"(r rattl   1. A#!,_jSloafi= 3 db\q forwar2opeh^ 1hop2earT coppwas elbowed away by anb loaf!o  &"up0"1ame-ntion. A fierce quarrew;ake out"!chrincreas|9pAtooksp9YrID ,P.p1equ2hotAthera. A blow,Rstruc F_*Alady%R, wasrQcentra(1kno"flSand strugglc" savagely3achRxa fistsssticks. # )#inAcrow0fprotecQ; but ! a<Areac^Sher ha Droppae #nd#the blood tbfreely 1hisA. At !faeQsmen !toDqir heel Bone 1ionaounger"sHle b$-?#edo'e scuffle!ta\ 2!inOuto helpQco attthe injured man.0 I.Sr>h&ha,"O!Bteps%5too#toher superbsU"utcagains6ighQhall,ing backA @the poor rvmuch hurt?" 1Hdead," cried|ral voice aNo, no re's lif.Sim!" (". e'll be gone'qyou can!hihospitalHvA brave fellow,"o 1. "hw!hax lady's purseA2 ifd!en for hiW#D ga !1a r>one, too. Ah, he's breavK`an't litreet. May w#ng+, marm?"Surely. B!@ q a comfortNzy2r &THo3youI5ll-; 9 s^ oas on A her-2incQt onc "rui  she values mosteGis aroverpowDcimpulsIQ mornpFaken= 2. I5"ca4Darlington substitutscandal -}k"ndRArnsworth Castle/ woman grabs Dbaby; an un'Bone s her jewel-box' qour ladato-dayz#4precioushy9$att in quest of~secure it.Qd of fixAdmir:Adonecwere 3to shake nerv9RsteelQrespo d !lyY o 1a r^,Q5 a sliding panel just abot'e right bell-pulrs$I P W:r+half-dre$ouYI#ou "it , , she repl5it,?g!at: ,'2not(her sinc #roO1, m my excu>K1esc Ahous9hesitated!mpAt, 91hadCe infs2wat2qme narr+ismed saftwait. A1Qover-qpitanceutruin al}And nowC#urqis prac7j*AnishD shaqH% Q9k!if c>!coukQth us b\;&wn v to wai_bis prob52hatsn"me2may 1neiBus nIm a satisf:+1 toMajesty to regain 1own s(il>*AAt enrmorning1a6 up\"we aWfield%wesc0l!t$ may meacmpleteM$xVW:rbits. IX!wiAKing!ouzl%WCd#!tov door. HeX| )-sthe keyRomeonI# Aaid:- GhUlMister"TEwerelUpeoplI-1pavl0j3timU:MAgree &NQa sli.#thZ who had !byB"I'vDvoic!," Holmes, stad dimly lit# "_"wo"ho the deucRt" h$beb3 ImUaI slepl g anight,wI t Qtoast$QcoffeeWm2int=QA "Y vKlly got it!cried, graspingS by xі1his UNot y)"Bu)Thopeso P!." 1com[!am{simpatieD Fbe g?]W]Sa cabJNo, my bXQam is)OTr*2ill 3ifys." We descee6aoff oFA)or&i XEed,".M"Fd! W6tYesterd11"BuP4whoUTo anMalawyer~id Norton `not loveOxl"inzshe doe4ABeca dRspare2 all fear of future annoya|  loves her husband #y0^E. If$ #< Are i])Q why8 interfere '.LIt is true.Ryet--Well! I wis bown station!Sa queN made!" He relapsto a moody^ Uroken_ j /up) S 4ope} n elderly HstootSstepsatched ua sardonic eyed'j5the rM, I believe?"sh3Mr.O%,"G my companionv k 1a "io %nd'tartled gazjndeed! My mistressy w1ere likel Acallb left.1 byx5:15 tra}(Am Chq Crossp-EtontinenmWhat!"staggered8tachagri surprise. "Do she has sEngland1Nevt 5r!AnQj"?"KAoarsE"All is los Q see. p A pasT ?&rrawing- 2e]a<2 furnitur[ Acatt3t'in every direc+adisman(ashelve! qdrawersiChad l4hS themw4!f-aqbell-pu\1oreR$Dll Jp!er}R, plu9!in5 hbHXout a ^a%* T  50S(!I_superscrib rEsq. To@1ft .xfor." My friend toh 1allr.together. Itdqat mid " oAprec .t:PDY DEAR MR. SHERLOCK HOLMES,--You re.!diGAwellO$m f Qly. U'atR!nosuspiciontI/3howbetrayedU, I 'Pd8war!you months ago*  -iaemployl!f agent*certainly be:P4our.ugiven me. Yet}Qis, 'se revea)1antf1. E}1ZIY1D5us,6C)r U evil{ a dear, kind old clergy#"Bubs[Qan acH" Pd. Male2!ne) R6ake# rfreedomf it givesent JohnJ, to watcran up st+@6 anto mying-cloth!1s Imi)CdownYsOsdeparte"WeQyou tyrK"so=Swas W#anD62 of   celebratedO4Dn I,imprudently, g*4 f);@$my QWe boIosest resourcvqpursued 'so)9A an Tonist; so\#fivnest empt to-morrow9*1#0may rest in peace. I; aand am Zqa bette>1hrmay do!llout hindrone whom tcruelly wronged. I keep it ong safeguara1pre# a weapondalwaysm2any +"heQ takt32turieave a 9 possess;[IX9,J  _ "Very trulyC/s,: "IRENE NORTON, née ADLER  woman--oh,!'2 w Eaepistlq id I not tellhow quick }eE awas? W5 1she8a* %anned ? Is it)yoE>Dleve!FrF%_Dseen!3lad@eems indeesbe on aDCZ q coldlyXCam sorr2notqo bringS%'sxa conclusiOz6"myLsir,4; "Ob{cn24Bwordbviolat& {w/!af-Rif itR i4fir0 qglad to  s say so,qimmense3debyou. Prayz 1wayQn re%/,(aring-- Rslippemerald snake afrom inger and hel^cout upB$;Y Bsome;I=rld valuA { highlbU{bRny%t-!"Bstar *e\ 'AL$"C 4~I>kHJ1mor%beK m . A hon?ojRyou aTgood-Ya" He 0>A, tus $bobserv$4"re odQhim, At of# y@9chambersMEa how a greattszRaffec^qkingdom (#Aplan  {wtS8a'1. Heg}make merry o he clevernesawomen, b3heard him do iu'And when2ApeakF\ Adler, or3he E6r ?aways uEDitle| ADVENTURE II. THE RED-HEADED LEAGUE m,q one daMthe autum[last yea)Bfoun!in deep conversatio:jstout, florid-faced,\/with fiery red ]gAWithZ Rpolog#my*>v !to AdrawP Jme abruptle |Dqand clo9# !meyZnot possibWve come ato k( osaid cordially\Rfraid1you.xAam. W FmuchN:QI canSAnext6$C!No3all5Wilson, hasmy partn&a helpL#S manyJ"mo>3ase4$r doubtn b!utE!usBy%I$al32TheR;=WBroseV,Ahis iNa bob of,*" a t S> fat-encircled eyT e settee," said,42inguhis arm7 pIkEtips,!asacustom judicial moods Eknow ~xyou sharAlove aDqbizarre?qoutsideantionshumdrum r+everyday2%. , your relish[Qit by enthusiasm #ase T, and will excussaying so,f6 to embel|Sown adventur`Rcases Q  "me]Y ;r ?Qthe o Bday,TAwe [OBvery"2 BblemZZ"by:LMary Sutherl8for strange eTextraH combina Qgo toq itself"ch+far more d&%any efforVthe imag`!."A\}iMXI87he libermpO;uYou didW,n}1ss 2ustrBq view,EwiseA#aon pilC#ac" 1fac Ryou qason br$Fdownoacknowledges m slight indic@1 !,  to guidez|thousandq t simila ToccurW[,NvCforc 3dmi @!far9Cbk+"celief,TortlyQpuffeF3hes#anH4Qpridee ba dirt9wrinkled newspapO6!inQpocked2hisAcoat#he d8advertis3d columM2Ahrus92war{#aper flat@his knee,aDlook&2manJ}endeavoured,3ash< Bto r6e e m}b or appea BI di]Bgain much, however, by my inspoT. Our0mS borAA mar$6Han averag+ monplace British tradesman, obese, pompouB AslowDwore !N"grey shepherd's check trousers, a not over-cleang9 frock-coat, unbuttoned5 Rfront8a drab waistegbrassy Albert [8square piecbKmetal danAas an ornament. A frayBp-ha%a faded brown% velvet collarEa#r |uhim. Alc pLQwould{  [tBsaveQBblazb_igYthe expresszextreme!disconten` rhis fea D ,[ ' 2eye" iXM!b shookDhead2smiiced my s. "Beyo1obv8&Ih !at Q1don!ual labour !he*vs snuffis a Freema[! qin China nAa corQmount!wrj( lately,Ga deduching else !st)1 upk,iM2ore! u!, 1his5`T"How,!of3-fortune,7k!llR ?H*#%. Y4for example,> "  . It's aT' as gospel@"I as a ship's carpenter?R"YourZ.1sir 1r rhand is quite a5L larger 3 u#efY1hav#kei Ruscle; } eveloped6thew$enIex#ryH%I won't insultintellig 1by !ng !^QespecD as,CastrictO eQordero B us@rc-and-compass_ Sstpin)Ah9rI forgoA. Bu 7a can b3ica0]rcuff soAshin five inch1the22p smooth p 1nea! H 3you-$sk2butThe fishyy tattooed`lbvh2uld"Ml%Atudy oGH"ev atribut2Qliter"asubjectqat tric@cstaini AfishR#ca*aa delV pinkK "to/a. When^1add]g$Qsee a#ese coin ha& cwatch-jtatter 7Qmore simplB;!ed=iSI never!8he. "I thoughBfirsg"ady#cl !seJa Gm$3all?"inCink, "WIaa mistak R expl. 'Omne ignotum pro magnifico,'Qand ms 3or  Qreput5 , such as4, will sufferz wreck if I am so candid. C> #fi 8^O!Yek%0R now,T+<4QthickQplantRlfway lumn. "HPCt is"is S41all&8Miy q#sih\ j"hih=#as$s(/TO7: On acc2abequesL ate Ezekiah HopkinswLebanon, Pennsylvania, U. S. A.8 re is now another vacancy *Qentitq memberbhe League x.Qsalar}4 pounds a weekp H nominal+ices. All red-head_VA who4sound in bodm2min ;cthe agwenty-one years,Celigible. Appi person on, at el4qo'clock Duncan Ross, Rofficf:, 7 Pope's Court, Fleet StreetWhat on earth doC1qis meanN8aejacul I had twice :1ove  announce D *"hq3bwrigglU  Qhabit Ihigh spirits>_"ofbeaten track, isVt?" <1AndA, of[ go at scratchftell us allMzhousehold Sffecty ]LAupon 5s. Gnote, DoctorQsCdate&QIt is,"Mo Chronicl5 April 27, 1890. Just two(+S agoJKAgood=3Ajust"  > A, moppingH 3; "|cpawnbrokerC$ at Coburg Square,_CCity 5notU B aff$nd5 itg!Qhan 1giv'a living. I usT(two assistants, but n,Bonly%Aone;pRa job to pay him but 1t h="wim 8owages so ao learz$ 6#is4m0Soblig %th1t.1His5 is Vincent Spaulding%#het youth,71hars!s U>$"shDrterPoazJsvery we#$1betB1him0Band &BwiceQI am 9!to,)BBut,%%|satisfied, whyI put idea?DRh? You seem'ate in having4mployé who comesRQ full| Qet prEIta exper8" V!ertWdon't,'^[s`)r t4Oh, (aults, tooA. "N3was fellowphotography. SnaGBawayo a-4ra #E " QimproWvhis min1n d :cellar like atbits hoc-k_ Vhis main o! wC/a worker. T)RAno v!inHe is stillayou, ID3umem bsir. HTa girl of fourte1o"a b cookd8aplace R--that's|"! 73am a widowK" 'qany fam W5i quietlyC +D!weq a roofA ourqas andMour debtsUwe do3mor#Ol x!ataus outH  ' Pmk0(  lSday eReeks,apaper sIXC say "'I@(eBLord4hwas a Aan.'2'Wh"?'a'Why,'lc he, '  6 Rc 3MenOUworth   bny manEgetsI"st #at#arH !ie7n ben, so!Bthe Qces areh ir wits' end /$doe money. If my&! wUonly chanblour, )q a nic!tl8b%QreadymgAstepP.iDthen"edC 2seeF! <stay-at-home ma!asqusiness(.eaead ofbEz#to!3it,Eweeks on0*AputtZWSmy fowgdoor-matat way I didismuch of~was going on$$1!gl4new"Hah1ear H X q?' he BCopen I wonderS"at1youh Aself#onMhVD!at@iKGorth 4Oh,Ha couple of hundred a r"th>9,"Sit ne]!u>Kwith one's$& eAWell0 LbeasilyK|"atAmck up my ?$ 4h(Qover-@n"$Aan _  ShandyAbTell m9!it2id IC!"'he, showing m 4, '!se$ Q 1hy u8b wher!sh{abfor particulars"aAout,Ew!unR y an American millionaire, % 1whoGupeculiaAwaysjCwas i p reat sympath9alluen; so 1dieRS;qnormousWDtuneXhG!xrinstruc(#to^!th'Athe B df easy berth7P"se%!isS!. 3. 3ear[rsplendi1and $cto doh6'Bu2, '/$beK" )QNot so many A (,'3. ' # K<confined to Londonengrown mennThad [Cfrom=2wasmiLBhe wdAto dr old t#1turiTgain,sQno usS1r Qing i'r' !uor dark 2any' rreal brWG,.`_B car+xt, Mr. 3you_just walk in;5 p%3 it#hardly be `  2whi 6putt3out 2 waptP ke of a few:WNtfact, gentlemeD mayu1vesz%at: 2L7ich tint DM kAat ir "anUC!etmatter I H`s` a Uce ast [I ~Dmet. M=73uch0i$I 9prove usefulIaed himQut upqshutter dm%me}.! a holidaywdmv!uph2off)?$- civen uB `_B hop $eesP$at + north, sAR east CwestC6 aa shadr"Ahair Qtrampt?! c{9o `XHwithBfolk]#3ed Dcoster's or9 Cbarr(Anot G~"re2f?acountrqwere br together K(at singl1. E09 they were--straw, lemon,, brick, Irish-setter, liver, clay; b=s Q said 2not~]Mreal vivid flame-!ed' I saw howA"MA#it"rdespairWVp* it. How he"eit I c'imagine,hF1lcbutted Ih_Ccrow!up=!leW+o stream upon_!stCsome] !up`2operback dejected&we wedged i"well as wlR soon\ % office."z GYouru4a2ent,l ne," remarked 1 as client paPAefre-ACemor&a huge pint%. "Pray continu  X22tatyNin qwooden 3a deal tszs behindYsW6  )7a *even redd n said a few word0Ceach&!at$bame upAthen gRmanagtJ'rfault ilmndisqualify them. Ge% am*AseembCeasyzA all Awhenaturn rAittlAmuch2b favou'MAn to!ofcT,he8!edC" 1 ha privatl$u _'q&my<3, '(Fis W fillMrcLeague $'A:y@ry suiteBB . 'He has ebrequir I cannot reCFseen so fine.' H)a backward, cockh}Qn onel gazed ; until I felt quite bashfuln suddenly1plu2forrRwrung Oscongrat rme warm.Cmy 8.$'Iu beAsticOpX#he( will, hI am sure,6"3 tah\*precaution.' Wit%$hedg ?U tuggrQI yebain. 'iXeMB Feyes as he releasedH'I perceiveis as it"be}'#we  2car cfor we3wic!deX6BwigsPqonce bywCt&Qcobbld 2wax disgust you Shuman(21ste?A!j" ^ "ho&"ite top of4voiUTthe 1wased. A groan of disappointment#Sbelowthe folkmAtrooA!wadifferent directionssRthere0'1my N^4" rvMy name%3, ' ""ndOJqpensioners 3fun!bynoble benefactor. AreTB a mTI man% a family?I "edI 2notHis face fell@)'Dear me!' :id gravely, 'i} Qserio Qdeed!?Eoqyou say"waU%c@ $the propag'W"sp#f  W"irVtenan##exelRly un,#at be a bachelord"My*lengthenBthisbHolmesBthatG#to%healjS; but\Rfor uminutese$bCrigh"'I h7$of "bjGbe fatal we must stretch a 3 inpW such a frK#en]1youbble tot#new duties^#awm4fora!al#,'?%I3Oh,8'c"!' "X. 'I:41forcO'"B b Thours#ed1TenwND+$!isL Cly d:qan even"w.TThursnfFriday5Twhich% before pay-day; s7D1sui K vto earn"in{ mornings. Besides, I knew   5manze8 turned upJ/ha 1I. L 2E<'Isy)-Dwork+Is)-!doS '@BWellb 0  i 1, o{SleastnS bui$j!Atimeyou leaveZaforfeir+ :RSforev!,Cclead" I#Scompl|rthe con.smb budgeuffice dur )BIt's/Bfour& a day, and> !no!nk&eP$ $No Eavai B; 'n% sicknessQ6nortM4 ` yEAstay"osr billetfH E!py!the "Encyclopaedia Britannica."xGfirst volu&i%at press own ink, penQ bloq-paper,wbe this! sPCVly,' z T0good-bye Q)aand len C you8 Dmore!important d1bee& l@Bgain( 1bow % B roo|.I went hCd( ,"knJ1wha say or do,%R so pu " 2own#$h 6all#bftin low,;7dnpersuaded B ^baffairI"be+hoax or fraud," b its k I/bed $al2 pa3lieTanyonz~ySpay %1sumd!#so& as copy@? ''H2didu cheer !bu qbedtimed reason)i _ I determPaa look_i=how, so I bHa penny bo_"of#anP]Eill-^ssheets of foolscap 8Ic4to my surpris'2deli3s rVs03TheV)!etbfor me 1 weN#se I got fairly to workzm|letter Ag`"me e!in! 4to 1allRme. A.qo'clockbu"?&complimeIp$!am2q writtBnd l74oor mcon dayon Saturd anager !in}Tplank@golden sovereign "myT(#'s!It*H#amLBweek}rQeek r <5at noon I a. By degreeusin onlyd&}n,!noj -t-B. StKd for an inf.w$BsureݞH9O #oncqme so w  Brisk 1los>iEweeks pass1lik- about AbbotIr ArcherM1Arm-citectuLRAttick>T hop'$di<!ge2S B's  very long1cosBsome%in!L}q pretty1aly fira shelf$my;3s. 7 ehole T4 en=!Toj/And?"{9-O468n .Awork-Qusual$en=1hut|Z,a EQsquar cardboard hammere6lQmiddl'the pane.Qa tac"rea"nGD!!f."HeVup a piec]WwhiteZ=1siz"et of note' is fashion: THE RED-HEADED LEAGUE+/IS! DISSOLVEDY5October 975K 2I surveye2ZIcurt7&bruefulPabehind, QmicalMC Aso etely overtopVotherA0Mthat we both bursinto a roadlaught[i#Eunny|YRour x, flushing upOqhis flashead. "~1can];b&"e,y1 goBRwhereu"No, nor$sh1*m  [ !hehalf risen. "I reall !ss#3{\AorldjyTRusualW&~P{Fjust/RfunnyPray what_Bs di3tak2youDcarde door?" "SstaggQir. IR#no-jQto doV nAlled> rs roundnTNm B%_ " Mcit. FiM[the landlord*BWhat0>4Yes+$OhWhe, 'hisWilliam Morrif2solicitor}3rwas usixroom as a temporarq!veniencehew premises# g QmovedyesterdayDWherI4him!Oh[=ai%di (&!. #17H[Edward Street, St. Paul'9 2but@ D $atn! i a manuyErtificial knee-cap Qno on ieever M" oy>. #AnM"do2"hto Saxe-;Ctook[1vic^Emy +;%h%"lp2N"wa21onl3`-!if ~Ahear1#os`oGoC ! AwishY;%osM7 without a struggle, so, as yu2eres#a<rto poor2who2ain neeZ"it*3 a7you1youvery wise{_5 "YQ( o%; Iqbe happe.MO1tol Ii6 graver issue g from in!"at! s cappearSGrave]"!" p#q. "Why,vh t9! ,! a QdAs far,"ar!on#concerned&!, "I do ^ any grievanceI1is 2WlwOc`4munderstand, richesome 30A, touv C knowledge6!A ga5#onu+FsubjA <3. YSe lostv9b&s#Nop1ButnBout BthemO!whDy arߕq7L!wa,1plaZprank--iflC a m!ex ave jok ,&Ait Athem| Qirty MsG#We;Q5 toAb theseAyou. And,1, H requestionlWilson. uS! oi Qrs wh%1rst,Xerr atten; P ,--how long hadL#ee(!AbA mon$#en1How2me?#In~' s:RWas honly applicantDNhad a dozr1Whyryou pick him3vhBhand1 ScheapAt half-wagesH4fac)%Ye!haZ2ke, bSmall,^r-built,1qui G5B, no oB@Tface,JB he'Cshor}irty. Has aasplash@"ci ! 1ore 4 sa-3his* in considerSexcit("m# l),oUhe. "# sobserve his ears are pierc(earrings23YesHF!th+Qgipsy!it\ b4a lD"Hum, sinking)b deep gtIh?ROh, yD$r;L tleft hi)! Bbeend i r absenc6N>to complain ofd#'s!Q1muc!do$ !"T*bill doB1youopinion /5the  !rs 2a dtwo. To-day is I2!haMonday we m-!me)#jeWell, _cc our visitor%left us, "whatz4iTwI$Git,"a frankMI." щEioustAAs aP&"ea1 th$IlessZ!itre$beC A, fejOA2criRich aS lly puzzling, just F"ismost difficulidentify1musUprompC4tte W:!go ol -g "ToF," h~Bquit7qree pip$bl0bI begd Bon'tg.for fifty Ts." HɎ7F41!1his knees drawn his hawk-like nosI t!hexFDeyesy.2and?QblackQ3Bthru0Aout Xthe bill ofvstrange bird. .NP "drfaasleepcZ3eed8 "ddRself,k{-Cspra +" Lsc1of  2has>!up_}M2putqpipe doZe mantelpiece'qSarasatD!ys!heJames's HallafternoonT" U Tthinkh1? C4jpatients spar"(#Og OA to-day. My practic Gvery absorbQen pugDn.g+K,K a we cabHd lunch"gIr1dealGerman musicAprogramme-' rather1to my tasteItalian or French introspectiv9 . Come along!oAWe t+!le!the UndergrouC AldersgateSFa short walkui%ce singular m`nw]7c/v boky, =, shabbyCeel wAline&dingy two-storied7 houses look9[4railed-in enclosur ere a lawn of weedy grasEa few clump~faded laurel-bushea hard fQgains/moke-lad:2d uncongenial atmosphere. Three gilt ballbbrown with "JABEZ WILSON" in "s,a corner,Pda-W'A car]  .0sbin fro i1heaG%onKf ,=6 byes sh7b ly between puckered lidJ b walkeM_!lyh##eeN;Athen]! +, Baing keaHs*2n*e pawnbroker'1, h( thumped vigorously 1pavn Qstick#or!tih."heo!79Adoor qknockedWrly open"2a P-,n-shaven young LPGT in.a mnk you I" !wi8tFg!owB goFFStraQhird , fourth left,"aeQ6Tkly, closs &USmartdthat,"  9Ra.& , in my judgment,_qsmartes; in London!fo!ing I am 2!urRa claqbe third. _!knkW m  vEvident FI, " ''s0W=! is mysteryC)6"you inquireE4wayG"in@s X!7seeG7Not1 xe qs trous= 3see;KqI expec4So see8Z#beAMy dear doctor 2B%$fo!atd"notalk. We are spi1#fxmain arteri 4con  Dffic0cCity jnMD- !stcr roadwa6b"4thexq streaǗcommerce flow#>utide inNgoutward, whil footpaths weree the hurrswarm of pedestrians srealisei#liKfine shopjustately CtheyJ3 a?!ono Bside{!adyYSgnant#r2hadTquitt"Le7%,eeU4ing and glancY l@"'Blikepto remembe# H  hobby of min an exactQBof OO bMortimobacconis>little iBshop-h1bra 2CitSuburban Bank, Vegetarian RestaurLVand McFarlane's 1aged>Adepo"atRes us  now, DSwe've4ur work, so it's( ;d play. A sandw!cug:Scoffe  off to violin-q )cweetne rdelicac/rharmony are no  }evex usir conundrumsN:s2tic4ian, being c#noE1a acapablvaformerv12pos4no 0c merit]7the*ne stalls wrHmost perfect hbVBess,T!2y w his longn fingerpG! !leFrsmiling\ languid, dreamy eyes Qas un2tho_RHolme#sleuth-hound,Q rel "1ss, !-wQ,'y-handed criminal ag acwas possi71con=A. In charact6CdualR= alternCasserted it>j4 astute%re4 Toftentreactio sq poeticAcontemplaqCmoodoccasionally predomin@!inu a The s` aptook him$ or to devo5energy; anCknew, sN$so trulynsu,l4dayS<1had2Qs loungvrhis armAamidimprovis o-letter ed7L#it.5!usR1hasL6uld3com2him>ahis brG$nt reasonjbpower F4risLQ levetAintu,B+! unacquainthis methodsZlook ask}S ! aK3a sn .#ofdmortal;I saw him 'cl so enj~usic atcI fellran evil $be3/*m6setqto hunt. 5YouE!go5qsdoubt, kbremark w9HtSb%weUf4And Esome*ouwill tak$Ahourm1usi _ is serioukD"Why A! i%on@Aever 3sonwCliev wb#dstop i^$ complicates matterspyour help to-n>"#At iI2Ten=be early enoughIat Baker Street& V$3ellm UI sayjYm  danger, so kindlyarmy revolveEbpocketX1wav;4nd,O TBheel,2dis#<3 am crowd.g!ru5at Kmore densn my neighbours,O* always oppress?1a s=$ofCstupiditmy dealings$Sherlocka. Here &"&$rd seen3see(1yetaTwordse;! w6rlyR uad happened4wasf#o$en"!thdl3wasQconfu2 nd grotesque. As I droveg1 toG1ousGCKensO o7bt all,:the%F sto{ b copi Ythe "8U" dow Avisi B~ Tminoup bparted5W]as this nocturnal expN] 3bgo armed? * we going1/cto do?T"in!smooth-faced' jVman--|bplay a'!game. I tried9L!qbut gavup in despai1set " aAnigh"auld brn explan quarter-past nine$ W I st2homn m8y way acrossBParklso through Oxford="toM" N. Two hansom d.*rentered apassagV ound of voices[Babov(@+ his room I f4 1+!im bconver  uwo men,.!whCqrecognis Peter JonesX 8ial police -  H S, sad{3man Ushinyxively respect frock-coat"Ha! Our party is#-etAbuttY 2 upNpea-jackez5!ta#!vy, ing crop{sack. "p"*1youc*.of Scotland Yard?mMZaroduce!to6MerryweatherY#is"ou7as#&in!'s:'n$UWe'rein couplest*2 inOconsequential 4Our"he} a wonderful man for la chase 2ntsb, old dog to" h"dorunning dowI hope a wild goosQnot pZ-$98hase," dm gloomil ^rYou mayc &confidence inHj%IIs loftil!1has4ownD  Dch are, if3ox4nM4#B!toxoreticalAfantastic,ma ?cAIt Ut tooE&1sayY once or twice5&at "ofSholto murdethe Agra treadhBbeen n correct tha6}Dforc!Oh.aay so,!itr"ll the strange"deference. "Still`/AonfeJ miss my rubber. I_First=for seven-and-0pS yearIOanot ha[ Iy"( Dfind _ C&a| q will < higher stake V Y- ever done y"thK#W2 beexciting. F,x vb 30,000 poundsDyou,@!itp!th@1qay your"gs John Clay,e ief, smask|ger. He's a ?manq but heWfYarofessSand I have my braceletmAhan &ny#1ablR, is qJohn C.His grandfProyal duke%heo3has2qto Eton$OQbrain3s cU,we meet signsAm atfy a, we nvBknow@ /ll crack a crib indone week,be raising moneyLuild an orphanagCornwall(next. I'vetw3for$avtset eyeD yeI[UD of 1ing"hayo<turns also r agree!2you !.  past ten, howeverZp)3timwJ ;Qtwo z)+ ", J nIr followTe second 2not>/communicative du. 3:ong driveblay baj/the cab humm !Stunesz K. We rattled)  dless labyrinth of gas-litwReets we emergsto Farr [  W1cloere now," m_(CThis"(  bank direct personally i !st {0t 2avefu/Bis nT3bad,Hۑbsolute imbecil  He has oneJve virtuee! a"ve,qbulldogYas tenaciousslobsterg 2get claws up1yon]j ay,!waT for WQreachoEoP1farAwhic-Rhad e P. 3cabbdismisse0^2, ;Aguid!of |DpassKFa narrow a side doo Copen12us.X!rea small corrid<2end]aAmassiron gate4#as%l1 fl!qof windstone stepR D ter$atS r;Mr.-'2to ia lanternpconducted us Z1a dCearth-smelZ<2so,0 ! $g^ vault or cellarwas piled all r>Rcrate]b boxes83You<avulnerUg#,"Z 5d held@(iSgazedA2himm2NorU1belOsaidEstri'BuponC Dflag1linIS"$or92deaJAit sX quite hollow!,(ZK0!re3ask! b + ore quietN4 severe 81 al>q imperi~7LRsucceGVour %1. MRI beg BouldwM/1ood#cto sit/8cf thos Bfere0The solem3a perch1!on ;ateinjured exB*41ace#le@vRhis &_C andeva magnif$lens, begaexamine minutelyD s0+7s. A fewvs suffic satisfyfor he spranr1et :+j1putAglas1hav1lea S hour(K us, "for they can hardly take?Z21afe! b,R 2not>a42oon1y drAir HQongerPir escape. !atcsq Doctor--d#&Cdivined--b j1CitU !ncm e principal LondonsAchai0%of% ,# hexplain to,S5sons why]za f!s!sh u  $is:r." "$ou?1 gold," whisper4 %. ~{al warningsan attempt mrbe madei Yv?1Yes W! to strengN5our~sFcborrowiG epurposFnapoleon$1the%aRFranc7Acomenw to unpacG=[still lyn$ou2. T#at/ I sit contains 2dpacked layersWbd foil !reL; of bulliomuch large#Dais usu1kep%a single<f $ 0snisgivings upo= @WBwere Awell\(^ifiedO.. "And nowV) V!ar ~"pl), Bour As wi z!a <Ameann , we must pu screen ov!at 1Ande"afraid so. I#c At a j!of\M/#my.v Rthat, gaie carrée@your rubbery all. But IBthe enemy's preparation1 g] Co fawe cannot ris(%Ea9 . And, %fof all^!ch3our !on!"esO@!81theaa disadvantageAy ma"us0 harm unless wfcareful. 4!Tstand.Qthis !do conceal y 2!os !en)n I flasO5ght>#m,in swiftly. IfFDfire(,nN1uncAabout shoot m;I^!zg,d ooden case crouchedB sho7XslideHfront of  = in pitch&aness--.K$ S as I5eve% Qexper1wasA(as:qall was! '1 saZ*e rmarked a chink 53ton1ItsJGanceary. WithM6C, ts>05one$2roatr"edrits sid1a s7, gapingw,'dstream% B.2. Ol Qe edgrre peeplean-cut, boyish_!ch!ed0#ly"it$on)Qaperture, drew01er-Qwaist,Ione knee Oedge. In$ *hdo+1andFrhaulingq! ^b, lith.5likIAa paca shock of tred hai$X"t'J!Rclear\IQhiselmqbags? Greatt! Jump, Archie, jand I'll_1qfor it! N+< asprungL73eiz!inrcNr colla other dived( HChole+J, cloth as7AclutaRskirt ;  -Qbarre a 3butx Q' hun crop came down AAman's pistol cli"`n" wno use,/c" saidj blandno chance 1ll.2"SoC!,"4_sanswereathe utQcoolnog"I fancy my pal if#ri3Bough`I 1 gon coat-tailsT"are three men. i&:oorBOh, F2! Y''m81don 2ver[1. I5`aplimen And I you,"g', jBAideae2new 2eff%U1You2 rD^%tl%&'s quicker at climbr'n I am. Just hol&)RI fixdderbie 3illnVuch m rr filthUs," iQrison,Whandcuffs cl/Obrists.A maysRbe aw $at=#AblooM0my veins. HaveYBgood7Ralso,G,you address gF%0to say 'sir'.'!2e.'AkzQstare'a sniggee BouldaS, sir, march up{s#rea get a !to yBdr High$olice-st? Eette# serenely. H aa swee1bow,!re!us|Dquietly offustody ofMtR,1 )aAfoll/ethem ;Q"I doknow how^bank can*kjor repay you *V=defeated )x mannerg  hwsrrobberyv#coSP @$cscoresX Ao seL Hzrbeen ato/Uae over1s mJ c!ha^p)to refundi'cbeyond!Amply repaid b^ a%#is in many ,Rby he4theAmark 'gR^8w&se (  5hU!" 1sat5q a glas'Swhiskoda in Baker"$q, "it  QerfecbWbviou,=2theFpossible oQis ra# fantastic7advertise\ 3opyYthe 'o",']b#et( Qver-b2 way for a number Ye0WMI Aa cu(81 wajBmana;thC, ri"ity: be7Bsuggest aa metho % +Clay's ingen"mi{"Blour )Rs ac8Bce's{ c The 4*+q a weekdraw him2wha4h ;A plafor thousands?Ty put Brogu%_" d +bincite/mBappl!ita togevasecureDUE*%c week(IM3 3ssin <come for d4wag:%asIhOsome strong motive forTAsitub1Buttayou guJC was!HaMrhSwomen1 ho ICsusp mere vulgard*qigue. T@)8was\question. Tl&'sSwas a#on4 10"no i <3ichcelaborates"snditure y!atAmust{LB' 60c. Whatait be?3oq`%q's fon photography3tri9RanishvF ce| "! w! ee,8tangled clRen Im inquirieso0JZ1fou-i0deal withAcooltnd mosts in London Foingh&--q took Qa dayRTmonth@, once mor;1%ofqL!at!qas runn#q tunnel building.SQI had`wD1wen7):bhe sce aT. I A&rby beati~my stick. I was ascueing wh !`|MPr2w=# Bn I $Ahe b\ wBQhoped9( @swered it. WeYFskirmishes>jAd n set eyesCeach$$Elook; face. His6sqI wishe2seeQ`yfBhow worn, D sta@(@"dy spok !os*rAburrU+) only remBpoinvCtheyn8B forclked rWQa H) H abutted on our friend4mis'$2I lved my problemB8you=2afttq concer@Dcall_b1AYard#+% 3"h:94esu2 4see"An0eU CmakeJ&! Q to-)$?"U\they closir League sT 1ign ay carebg&mMr. Jabez4]sence--ina word:;had complet!2ess}9t wst soon,iAmighI discovered, o bullion%removed.6w1suijm C tha4o 4dayr21givmTAdays'! #llbreasons I aTcome 1son out beautifully,"IRed in unfeigned admir}  's a chain3yet5 link rings true!ItQd me QRennui*, yawning. "Alaslready feel it#mefQ6Aspen"onP)q effortP}ommonplaceaexiste&DThes# qs help cc do so"Anr1are qnefacto 4aceI\He shruggeSers. wperhaps,#Bit i(4som-eF. "'L'homme c'est rien--l'oeuvre tout,' as Gustave Flaubert wrot< George S1U ADVENTURE III. A CASE OF IDENTITYRG3 n either @ w#his lodg7',atinfinitely)43angA any  !th, 4man nvent. We !no sN*ally mec]SIf wep1fly!at1qow hanhand, hover this great city, gentRor roofspeep in ?A queEW 3 arC3 on; coincidenc@planning33ss-N* wonderful"[vents, work rBgeneaa lead" M coutrésball fictioUg its coqionalit nd foreseu2Aclus'most staleunprofitableA1not_Aince?!itF# e# iR papers area rule, baldH# O i reports realism pu Qextre62mitn]i\ Knfessed, nbfascin nor artistic  R sele!anZ"1cre^"usoaproducg " tic effect,"+ 57ais wan! N) r;.!stuwis laid]\ =Rtitud QagistV+,q detail81ich&n Aar cont.he vital)the whole. Depend _$it,J&is o unnatural a_{BI sm4!nd(k"H1eadg2can3lt)k5osaid. "Of courseiy]*a of un ial advis/rlper to body who is absolutely puzzl6  !ou!re%B2tin/2Are b%8ccontac1allj 6 isu*bizarre here"--I pick qpaper the ground--"let us p&v practical test. H4the+h"I come. 'A husba} cruelty to>cwife.'is half a column of1m" I{D$3 rt "at.3 qfamiliam,G$Rdrink Bpush Ablow bruise sympath'Rsister or landladybcrudesswritersi3mor.q"Indeedr exampl-a ortunate one forargument," saiIC, ta;W Qeye dt!isCthe Dundas sepa&it happens,c engagRclear sn@li6W3e Aa teetotalAB w& conductA !ofK7he had drif<Chabi!in"up meal byL1out9QfalsehVAhurldbthem a%Cwife!alY<c81lik to occur"Aimagverage story-teller. T5 65&sacknowl+%ave scor%U you." He 9snuffbox of old golda aamethy4 'Ad. Igqlendourin such contras^his homelaand si" !2not RcommeH1upo( 4"Ah he, "I forgotpI)qnot see p RweeksMifAittl $Vvenir KaBohemiareturnL&myO#ceeuIrene Adlers""AP,Cat aYBUu spark3his(IAreig)dyWXl q2qQ in g#1rvem"ofTZ annot confide it even tE1J4gooA to chronicl!orldof myAOBny o just nowVrinteresX+"Some tenlelve, but noRN4ichZ#]bfeatur<I h/are important%K2outZ=Ting. +G5ein uneTAfielA observation,e$ analysiBcaus 3:Achar/avestig\06acrimes !ap"be@!r,9the bigg e6Nq "is|motive. I s ,[0intricat %8en referrrMarseill~AsGZ|UERI mayAsomes<K,V2SEi0 oQmy cllB, orH!much mistakHAArisehm ;/"taDabetweek parted blinds gazL&dull neutral-tinted London street. Loo+Y3, I'2at Propposit%re stoodj2rge a heavy fur boa * her neck 8ct red fe6 a broad-brimmed e"2til| a coquettish DuchesDevonshirether eaW0(great panoply sh-@a nervous, .]!at6bwindow !le roscillaDackw!fo2Y3herCs fidgetedTher glove fQs. Suddenly a plunge*e swimmer\ SleaveQbank,xhurriedS3roawvKr{ sharp clang]Cbell*Kose symptomsN(.wC cigarettefire. "O:@ DXa mean affaire de coeur. SheAlikeckXA surt3tooitIRon. AkPudiscriminatea(!se1#ly wronge"Qa mannI&erB+Dsualiu 81ken! wC1tak^5["t maidensP angry as perplexed, or grieTcomes inIa to re:6Sdoubt SAs he(was a tap$do oZ1 efdnnounce Miss Mary b+ dy herself loomed behindsmall black figureM full-sailed merchant-man?a tiny pilot boatZ welcomed her&!sy^Atesy{ h2abl"4, h#2los/ 3 do7b)hY !to1 !rmsC, he1I yet abstractedDpecu<FD| not finds`!"t2ithshort si3a  etryingSWtypewriting?"did at first,"}Bansw"` w`etters ar)1outSing."_<sq=!he art of2she gave a+fent starI1#up3fea˅astonishment$2her, good-humou52ace.1've7rH,me+ ed, "else#%BknowfCthatSNm m laughing; "it is my F`!toc things. Pj "trZmyself to see%1othoverlook. I"E, wh1you0 onsult meBI ca:rsir, beb &2youhaMrs. En!gek 'O rso easy.Colic veryone had given him updead. Ohq!bwould do as for me. I'm@Brich# CJa+h,1bQ !ke!chjI5}dit all1com.hsmer Angel.gWhy di1awata hurry+ &he-tips (1and{reyes toqceiling1Aga2 startled look+!ov ehd"qvacuous`1 ofC+ D". cx\bang ' "for ith&#meG!wa\!MrMndibank--6is, my f1 c--tookC. Heenot go   $+o at lastK n2andDRon sa@ r1no Qdone,;m_ I*2my -pB awa3CYour Y "your step, qly, sin(ae namdifferent"YeY?2. I04himr+gh it sounds funny,~'h_only five yearn5two'!ldw#anT Qour m  is alivQOh, y 8Rwell.Mn't best pleased|$ 2whee #ma  sso soon$D's death!" AnearSfteenTyoungZ 1. FE/ !mbTottenhaml% R he left a tidy f m $chc\Mr. Hardy foreman; butEMr. f1de n (%e}was very superioming a travYb in wiG 5whosbe our L "it4 *? "I suppo#;henacame bSrom 3Rannoy1Syour 1gon3all1Oh, g-!itUed, Iy/ , 13Adeny0k+$toT s Uher wQI see9X took -!rnsi1neeJ1Wer \' ahd,U,"WeOI#kAirstDtookZ --Mr. Angel--was a cashierP~ice in Leadenhall Street--and--!ha$icQThat'r worst of i  Bdylive, thenUqHe slepTA 4hisEDNo--except" i% T4youK!leW T Nq Post O",CZs7Q foryK boK d##ff!llcclerks}#y, so I o  p "m,Bhi;eZ7h& "I  7hey,Pcome from me hi"t k4 fea85r7e"Aus. FyAshowchow fo !wa  TittleTk ofaDmostHB,iv 6hbeen an axiomh7are<4m~&a. Can $Tthing$` <!Hea!sh$ 2rat$ "lk Cme }"evdBdayl 7Qhe ha49Ao bspicuous. Very reti,6andC!ly Ras. Ers voic(a. He'd+the quinsyswollen gla| hsQyoung ڞ;-d2himaa weakPat, and a #I1spe$f speechS}1wayURll dr2Aneat-8u;Qweak,B as 3 wore tinted glassessr5glal c Phat happened!  " (++ ] t &  CpropQ at we shTmarryIEbackLin dreadful earne%nds1h}&TestamentQwhateH  q be truqhim. Mo"sa#waa righu /sa sign passion. Z0Al in}bfavour!as6!erl 2han tK"ofm" %I e3ask{;KBboth Ato #Gc0"to2him }$ )1 I+^"$n'83liks% $ItR3 I r1aske1leasaQa few [e1wan'dors)o;oU at BordeauxrX company has its FreeRficesRJ8ett"9Ae on ^Bmorn \vweddingmissed him " !EnYit arrived_2Ha!o8wasd. Yournbarrang5!enG1Fri W } in church~qquietly!wab>St. Saviour's, near King's Cros)w "tobreakfast St. Pancras Hotel B camTusa hanso"ac rj two of us he put usda%iRsteppto a four-whee-the only Qcab i1 s 2. Wd  o" Bup we wait< oBQ~#he1didUthe cabman got down1box:Qlooke !onfere! TE hDnot imagi0dq"<zexm .1own as lastY#(Qseen fDard " /t3 orw Z r!beVAseemmm C QshameA4Aed,". #! 8 1too(&kbo leav1o. \ !,,* Qtrue;o=y2!ifP# %un^=Coccu/% q$usY%totIRpledg3him {d 3uld$hi- k8t!!edUange talka-5hasW"%qs a meaDto iMost certainly it doesZown opinion i ?"n,s 4catastropsDK himb :h!esme danger, or else U 2notKatalked325?2inkY B/NnC$!io]!toV3 it4Nonv#On2question. How?;cmatterH1She4n%qOn#toFG^#3? D&Jtell'hew9Wms%6hadA" thear ofP9 #. 5-1aid(&atc#an(vbringing m4the doors ofM!en<1? Now, ifyaborrowI! G, or!m#my0zRsettlvIFG2rea\$utindependent Blook7Ashil"!of #ye<?4whyUwrite? Oh,rives me half-madi(m't sleep a winZ." She pul?6handkerchieff(her muff sob heavil$o 9ui8esC youd c1, r,3, "kD!! sQreach2 decE result. Le A wez cC res6bme now{d/1 le ,1 dupon it further. Above all, tr.le` vanish<1emo 2has\!4lif2TheI'll see him:yQI feaB=?C "ou55 in%. n accurate descrip<n s~  F spI advertis$ !inJD's C<:<she. "H`2the slip "ar m" Thank youaour ad[ No. 31 Lyon Place, Camber)"]Ht'!ha1. W!isq" S's pl,Vbusin#He's3BWest?R& Marf5&d clare-1ers Fenchurch S7"Qstate0very clearly+Awill"Gv a paper!e,?!dv .! ~s whole GEa sealed boocallow it+SaffecHyJkind 2but&n^ gall be <o$me ready*T 1mes<5Forpreposterous h9the. ZK1nobusimple faitl4ourb.e`Rspect6l'Qbundl: {?uW2ablM1wenh5C wayWa promise to come =(shbqummonedM *sat silentb4gb gtips still=qgether,(legs stretchedin front this gaziQed up39/ P"he7adown JTthe rSt1oldoily clay pipUB Q as aqnsellor0,!ithe leanedOM5Cwithhick blue cloud-wkas spin" "up#hi'a0Dof f languorgAfaceA"Qui ring stu,#at7r5>!ed%Cfounm6!mo$*(RA, byAway,q8|1a tUone. find parallel cases9 1you&bsult m x, in Andove1'77  =w qsort atKHlRyear. Old asFidea[=r two detailwere new < b the \38D v1Rppearread a good deainvisible","#FNot &but unnoticed,("di Qknow &1 to8kes^1a1allsD &ls%he13Rsleev;e%cumb-nails8 0Aissu4g2a boot-l  U k4g "at%"#'sance? Describe p1shea slate-coloured,>bstraw 1ith>!of>ickish red;b jackeRblack0 beads sewn / a) 2qjet orn"sbq dressdbrown,BdarkBn coffee [) '!e?Dm>s21grel& were worn thr+3Hr Bfore4Hsboots I<$&Mhad small rougold earrings,2a -PAl ai"be?2irl,a-to-dov! vulgar, comfortL;r easy-W#w& "clɞhKnds softlydchuckl1'Po 5wor, qare comV1B.wonderful wYBally 9 well indee}03tru4 Rr every'ofo /#hi bethod,P#a quick ey7J2. NF1rus impressMrbmy boyuqconcent / a. My ;R. In 4it is perhaps$K&to+1knef Y arouserR9b, thisGRplush1herN  FAmost$ful materUQ showmBrace double lineathe wris"er!3isto Hwas beautiP"edvssewing-!,hCype,J milar markDonly9sleft arUqit fartt!e ,4!ea%B broadest part'Ras. I2d a fDand,qRhe din a pince-nez at ei) p3herA3I 3d a>1twriting  asurprie1r."%It4d m26But8i.G7Gmuch@y Ring down to~ vJ" s/1wea)!C.!unio /$odd ones;e@ 1a scorated toe-cap Y a plainQ "On Dbtwo lower sf&Xt rbfifth.:ylh- a young lady,wise neatlywaed, ha!be awayBhome !od/Ats, !Qed,  no great deduc*hat she O])Dhurr22And Felse]Q, keexDIHwas, by 2!'s4siv~E="I noted Apasse 8 written a*t beforeBNSafter7 {d2herb glovEtornUy RapparYP+Rboth LBand rstainedviolet ink$ "dier pen too3musTabeen \ Cmarkh(1notoin clearu3theA. A i 4amur  !el)#arrI!go3 W Cnd roYmz+ h%MrMAngel?" I helSe 2 pr%Sslip ."MiX"c=caid, "S1fourteen- /=d.Angel. About five ft. seven in. in height; ongly built, sallowScexion, Uhair,q bald i!e W)4shy1side-whiskers/moustache; t# &,- infirmity&4Was,C infrock-coat with silkwaistcoat,O aAlbert*_grey Harris tweed% s: brown gaiters obelastic-sided Ss. KnCbeen employed - . Anybody84ing-g**doL3A. "A#sqcontinu{'8~+"#ari JY Absolutely no clueUm to vC, sam (otes Balzac onc2Are 9eoUaill no- rt strik0.hd71are 7!on*"at.1the&3atuBc. Lookhd neat'*'#q bottomb Maa date A set no super..aLeadenRQStree Bich > BvaguA,B abo ? ,--in fact, wePAiy>5lus&?"Of whats`e is itooAo noU how Jit bearsCcaseY2&do unlesd !he88 &1bledeny hisfWbfor br f w}unstitut#No52 e3. H@|2all vetters,G FDOA. One5Cfirm>Q CityS 1 o5;~ )'sC 1wasa to sp7into a E+drive to Bakerhalf afrai 1I m)be too lat7dassistadénou .Walone` #"hi#4&sn formVthe rece1!ofZ1arm . A formidarray of "le test-tubeK the pungent nly smell of hydrochloric acid,3a spent!dathe chemical workTAyou SFd itSDePd55YesMthe bisulphatbbaryta}a"No, ne!" I criN"Oh3! I#aB+5hrupon. { !evy  ,_,said yesterday, som!arm.only drawback istiM2laweaDLat can toucscoundre"1Who!he nws%!asQobjecGBdeseHMiss~h T !eswas hardly-amy mouGnd Holmes hayet openedvlyOA repX hen we heard a heavy footf3bpassag0 UETthe girl WJames "Q. "He < F#he1be at six. Come in T$Tn whowa sturdy, middle-sized fellow1rty yearBage,T-shav]a-skinnith a blancsinuating manner3a p*Ybpenetr9Ceyes%#Eot a Aing Se at ! R us,$shiny top-hat a cideboaC bow sidled!arK3haiSGood- C. "I|'"th  # iZ&P#in1adei!ap Bment2 A!"YW-+am&am 3latnot quiteq master] .)Rsorry7 GQ hasy2ble%is!atV1for63inkIWSfar  Xth linen 1sorIepublic! j,Rst myF!sha very excitable,!ulOAgirlmJ !an?(1 isLaeasily 1tro  ssup her mind on a. Of cour"di'U much!ar - 5ialFS3but]not pleasanYchave awB misfortune likenoised a. Besides,Ra useless 3howj 4you{#y 8is O}O/H quietly; "'e #" IRsuccebdiscovQ; i." " gTrnt star=SdroppoCam rhear it3sai0Aa cuQ]gnAtypeUr has\Qindividuality& mChand1. Ug ~Eqnew, nocm.exactly alike. Some 1getoE@!"anosM2earo#c side4youJy ,qC in Aslur 1ove~the 'e,' and 1 de)~de taildi'r.' T,3tee characteristicsfe obviousa"We do allcorrespondencxamachinffice, andTiaaworn,"XQvisitO]1swe$Qglancn`$atXiahis br OA rQ5nowRA 3is Jj ' X$,"z?!ofytnother 2monYtse days+aand it/!laJ "to=f0 "su #too[qdevotedi.  .QwhichDL!orWc1Bfrom.t man. T1ten"Rcase, ZR'e's'mAr's'3lesy( observe(! cMAo us 3k  =qalluded6 edsprang ^fBpickhis hat. "I canno t_9qof fant%7G) C," DA. "Ii can cat Cman,#hi&"alet me ! b$1i/Certainl, pw Qd tur]+the key in4"lekcaught him "What! where?" shouted r,wwhite to' `+Q abou] Aa ra),Xp !Oh won't do--  rsuavelycQmpossible getA W"it5". =too tran 2"ntvi2badi6 3s# 1%im3foro6P4 so0/ . That'sA1! S+9!wnl9!itw." OqcollapsBto aa ghastlyUa glittmoisture onbrow. "It--it' aaction " he stamm  very much' ^#noQAbetwurselves, as as crueZqselfishheartlese1ricaa petJ5cam!m(~just runP 5 of eventzL 1dicif I go wrong:qsat hud3sead sunJhis breastIo>o is utterly crushV+a stuckfeet up o r mantelpie,/7ackAands ahis poT,hC1alk"QmselfJ it seemed, Rto usr]S woma=.1oldapd1or Emonehe, "and he enjoyu[1onet d(erXs3vQ them consider2sum 1peoQu`ivmean, op1a h@1d azwhat doe& <3 doavent it? He takese   n5herZ<%AorbiDqto seekFcompany of :!of&own age. But soon he^@ BanswRBever%!berA, inOxd4&B-announce.h2of .C ball. WR1 clc X1henOqconceivb idea Bcred-1hea1Xrt. WRnivanacRcis wif3NQsguisN coveredN k}#y }$ glasses, mI_#faE a moustach$ $,clear voic6Qto anwhisper,-yۍaaccoun~ hort sight, he appi-asYkeeps offp lovers by making love/" % A jok<first," groan7c. "We e71thoI   been so ci0Q"Very ^$r!Smay b!'very decidedly\!, Oh? :Jhwas in Fran9s suspic&treacheryf# instant9awas fl#edT6 gentleman's atewincreas=loudly expD*V admiEb#n(RAngelA toWS ld be pushA fa\go if a real!er #beӀ/re were meet2n engagement, whichBsecua(i owards anyone els}[deception cvkept upwT pretended journeysB(!ra#Qcumbr@PcThe thVdrly to R6 0!ensuch a dramatic$itD"lecapermanm#ioX5 ="'s her from!2ingP!su 1forQ timecome. Hencekvows of fidelity exacra Testah<Aalso QallusO iI!of}Sahappen  o weddingF1 wi ;h&bso bou'Sso un$1 asQhis f<1foryAyearacome, l=1y r)$blisten3As iCthe ;?!do$ ! bm6, !as[go no farther>rconveni .Bed awayC oldc &ofuin at one,ofK%ou .w1ain' u dhad re QassurSwhileR had F Brose2his7A now  ld sneer a>"ce I2 soF#nouQhe, "If you arlQsharpW)H6!en.!to<Q is !ho)2brethe law Et metDdone'1 a=L 3the%a"1 asBkeepcdoor ۑyou lay yBlf o0 )qassault)qillegaldstrainT3ay,? Eaunlock1and9Cwingc, "yetd=`a man who d Ed purqmore. I 3 has a br1 orQbF, helay a whip54youWers. By Jove!Y-Q flusD3up L bVqface, "+art of my dutieamy clir"bu 2e's^ Jcrop handyNh+Bjust(A myQto--"` 1ookQswiftLu1thetBhe tgrasp ibwild cH s"th2!rs!1vy T-bQ6andwindow w,see Mr. /trunning4topw4spethe roadGcold-blooded"!q, laughh1as hDhrew bQ 2onc! #at! will ri"cr ^&I%Q enda gallowcase has` .brespec1"enentirely devoi*n t/!se T reasoning," I emGWell' /.4+.w$1foryvAduct2u1equu l0%f$ Bly T 6da, 3fac bwo men 1tog%.W, bu+%on\]Ded wV1way& d0B. Sodu4epectac'%he"vo !bo5Eat a=" re. My s~aBfirmRteculiar-Din 1ingRsignaJr, inferJ"atqso famig!to- recogniseb! mallest samplxit. Youse isolated fact.minor on"ll"lame directionVAnd hVPa verif1m?"HBonce spottedN%anqeasy toTrcorrobo. I knew03for ~o j2tak_1 prI1cri c. I eld~d #it^D Qresul]W--the6the I and I aW mAa re]&V#ey!inC+ame whuB it $edK1 ofSU Eir Pss d alreadb #icSitieslRI wro1the\ address^2 him if hB com I expected,&)J2revDK trivial but!W!wsame post m9@eofrom Lcof Fen9 -)9theeb talli<eo employé,4. Voilà tout 2"Ans *"If I tell>s4!ll qbelieve zYou mayLold Persian sayE'3 isTW!im- ataketh1tig""ubbdangeroso snatche6eF !.'qas much sens*8bHafiz Z1Hor ) knowledgBorld$ ADVENTURE IV. THE BOSCOMBE VALLEY MYSTERY We!se5"at fast one#, my wifeIX: Emaidg!mmb# papers  &ha`[him. Amose he rumms ,1val bnote-t!aniBmedi, until wpast Rea1Thesuddenly r.AthemF pa gigantic ballJBtoss #on BrackO4you&3n ; ?,|4N1Eword!no`"An a Jw3day"The LondonJ1 haw$3Dfull^M n( 71ughthe recent|s in orde 02particulars#bseems,&Ather{ !be Rose *aextremIvifficul$at sounds radoxicalprofoundly true. S2<2ityWmost invariably1lue)!fe(98and(B# a_i)h tto bring it h=I- *Rq they bestablaU#bagainsz5son Amurdl $ma"a  pD,conjectu dbe so.)4"? for graoopportunit HL#l,o it. I bexplai1ing>1youlto underst# t7few wordsp - iuntry district u"fa ! Rfin Herefordshir)largest la0proprietor aBis a+John Turner, his money(Uustralia}QreturAsome#As ag#u}Ajde farm`he held,of Hatherleq let to8Charles McCarthywas also%x-n1en had know-ogloniesanot un"al1wheAy ca settlew$sh so as near.x#asORle. qRappar#ic}$his tenant Sstill%!edB971ermH ! !1itywere frequQogeth sJone son, ad of eighteen,bhad an (same age,nFmgwives livingyq#1 to"r avoidb socie7aighbousEnglish##to!leired live95thes Fraof sp X#nd<DseenTrace-c!G5e Uhood.cQ kept servants--and a girl8d 3) {Bhold:M5doz! !. %isx4 3D.gqes. Now #ctOn June 3ris, on MondayQ}&7Eat x!re the afternooTwalke {% SCPoolP^ lake fo pqLRout s stream8 runs dowd2. H hM%ouU s serving-manhad toldm Rat he 8hur5bbappointme&$ t r aBIthat7hcback aliveFFroma Farm-hq BPooliCquar"ca miltwo people saZk! p/ Kis ground<Rn oldse name iamentio<|et%William Crowd game-keepK1 ofta. Bothsn~ASdepos8'MrRwas w R alon( p1add'+in^=UMr. 0Dpass,id1on,6-B, goR 1e 2way Ra gun his arm. TB# bhis belief 1 f"ctd#ing2sonBfollV1him/ht no mor"$A6 ?!in1 evr$ [had occurredTl7HTBtime &tc, lostmthickly woodedKZlcqa fringgrass anQRreeds0 qedge. A5 of5R, Pat3Mor! ivElodg estate,&in# es picking fUsb 5Bhile>f$d saw,b AwoodAlake'v, 1hav$ ;rquarrelU the elder usQ language to"sht/#tter rais* as if to strik Iee+so frighten;'2ran#ol* s6ached homs7s "UMnearJpAGF to8#htr$adCs4e zZ, !$upoM"ay[Cdead fUo ask1helK"$KAexciaewithouYhis gun o 2hatfAhis nd sleeve0 eobservTstain3fresh bloo >kthe dead Rtstretch!po" _abesideBpool!hea beateby repeated blR* Bheav}blunt weapor injuries?+2s \Ivery well i uinflict-r butt-e t's gun 3was!ly^& P7pacbody. Undse circumstances!ma instantly arres 1ver6of 'wilful'|H (Q inqu_n Tuesday, qon WednQbefor magist; "wh 5 re&!#$next AssizeRose aU main factv;1 ouNRd coron#heBT-courI imagine a1dam case," I "If everCtial51ce 8tinal itL%>'!."RC Egbtricky&," eHolmesU1Qfullyirseem totraight to oneR& n*b shiftL%3own=uof viewB,~amay fi$! n$uncompromiBmannAsome& Rt. ItP b(Afess9 Bowev(looks exceedingly grav2you2is indeeqculpritrsseveral)  4Tand acm Miss   I3UandowiX innoce2R}mLestrademrecollect "the Stud> qScarlet*M6outQin h3wterest.rb 0Qpuzzl)as $  hH wo middle-aged gentlemen ahAwestkat fifty mi]&Q hour.eAquie7!diW ir breakfasts7PBI, "W's*so%3Qyou E06-xi{zQis no5Aecep7%anvafact,"!*.<*A. "Bhs, we may ch2hitDsome6Qwhich7x1beewno mean 4o/Qknow oi2ink~eQboast-fwhen IH 1I s deither' or destroy] theory by:hCquite incapabl ##bor eves0!#irst examp8band, Ihclearly perceiZiE Qr bedS],"isvZQght-h23sidWyet INhRaS&!no so self-2t aBaHow on earth--!My!3,1, ICTwell.2ilitary neatness)C&es8!sVeveryn#2andQis s+n-x sunlight;Asinc3r sAis l1and A3ete++get farther back w tuntil it becomeitively slov O 2angWthe jaw,!su,#A1sidless illumin ,$. 8not#anr habits?# 'i'\ Dtsatisfi   result. I only qu (ha' Qof ob77inferenchrein lies%*cétier\ZCAthatQmay b`some servicthe investigvd 1 uX dIcone orV2nor)Ewere 5out e!ar&%thiA!"W "y?SI3earI b+2not:eplace D#?Qter $6 to4. Ospector oftabulary inforXk2hima prison6 $not surpris chear iTY/7Ahis 63ts. This(!of"hat effect of remo1dny tr8 Sdoubt XjNde mind@ #  s's jurye#Itr i"I ejaculat"No$7a protest5of edComingpctop ofkt Bseri6k#at %stv<#usfucontrarC1 3Qthe bntest rifHI can at present sejclouds. H E3be,4"ul#ben absolute imbecilofA: Bwere^Ublack Sad heY(edc3owngBfeigBdign!atUI shCF"edit as highly|, becaus}u or angD( _G dces, O( 2estV&aa scheWman. His frank acceptaU'the situTmarksP at man,1elsOEZrc !inm' firmness-/ 2lso4$un#!ifqXstood.a"of a,Tz,#no5 very day s ; forgottenfilial dutto bandy wordA hims even, accordingRittle(" c&soo 1hisb ! reproachi"arF1lay& f'melAsign8a healthy> of a guilty one." I shook my head. "Many \hanged on far sli$  {r "So^BhaveGbmXwrongfullycQis th3 3'Accou2is, aafraid-OencouragSupporcB ~82Gare 85f You >qit hereg may rea1forC!HeX2 I "#d N:iJ)%)# iAcare(a. It r a way:r$Mr@ K&awas then called7gav:Qs: 'I3bee7!om 9Qe dayrBristolR2nly Amornrf  s3rd. MybAat !im} my arrivaI7T  o #aiT"he^?!dr"ov3Ros3John Cobbgroom. ShorVAftero# Iothe wheelhis trap Ayard!,uI #myu,Y"ge Balk rapidlyYUnot awar  3dirIV ! n@"enr is mis7!intHE 6ing!. Q no #J/T in fronse. When\KAyard lEpool@Aa cr"Cooee!"D 5 usual signal betwee#W4 anwRhurri3w~a him j)4ingApool vVmuch a Cat 1!mex -4 me,"ly$OdT!~7! C"rs censuedlxChighand almos'Xf, for%!mavat temp6!eeAis sm!Ting ungovernable, I lef 2mowards#|*g5B Rn 1505, .,N[ a hideous outcry behind meAcausj to run,UagainFe2expA!ou Ld terribly injuadroppe4Aheld !inQarms,$he~LTknelt 2him,Dsome#H+to Mr. Turner'sm,X X%be@*"esQassisw .Pno one n*G, 1howF1amekajuries@w/Ra popj$an{Asome=1col!O\>-know, no active enem"fuUn D !.'GRThe CA: Di5rQAmake;-B he died?L!Wic: He mumbled a few&*only cata allu"tomW.U 2Wha2you%+at1It d4yed Bo me"Soughte was deliriou)G \ d1you!Bf9LN#  aprefer;#toT RI mussSI^ "re/m?e2ell4q assur aBit hhC1do @t#d tragedyz! FC+1for.Acour1decAI nete*zqcarefusaP prejudicr2l=any future pros Rarise{f6.$fu" I4the''2"  I 1 }1How\!it "n,he uttere ~ wISeven Ao   ! (Aableq): I doBknowA Jurymans\1aroP1!on y:GM@R fat 3: Nsdefinit  nKmeanBAso dZ!beq exciteTI rusx$O3Up/ 5 ofRexcepk s. Yet a vague impr9 .4ran  k lay ("he "of;bt seem B"be hin colour,a?Asorta plaid 1. 4 bI rosefIr1for!buݦ&'D&it peyou went for help?6'YeWou cannot sa  :Nt<"hae(d?rQ1HowhT1the&L"A 06  P'E <1edg5oodH^m{tThen if3#-*!r-Rhin a# Df itf4b/"my ' #ithconcluded^bexamin wN$I see," said In1glaXdeXolumn cN"v3ingTs was B#e\. He callT6rp [(iscrepancy1hisqaher ha4lF3himU  Y 3lso! sgive detaikP  s nu[)'s dying _$y.ball, v0"s,jBmuch sceon." =>laughed softlym'g})"ou! cushioned seat. "Both$X'!att pains7he, "to si u1ver*!on7 "th{favour. Don'!se  alternatelyShim R#`2too5*%,#oo#1? TNsittle, ifn cn \a4 ofY CwoulPe sympath_the jury;sDmuchdSevolv0own innerciousness=so outré as a?_ /c]Sing cloth. No, sir, all approach4 catd of viawhat y man says is true#we#qsee whi}that hypothesisW rlead usn rFyw`q PetrarlAnd !noTCwordk9$N!wei1e D of action. We lunch at S.n !be>Qtwent$ButesIn$1 o'clockZ.Qwe at, +Qng th` beautiful StroudE!ov qad gleaaSevernund ourselz]tcpretty  country-tow!Rovn, ferret-likedrfurtive]qly-lookG%bwas warfor usEB. In spitHl*brown dust1andther-legg@ h}!~dhis rusticBZ/5no t>? brecogn*P%, of Scotland Yard. Wm we drov 5the;q Arms w1a %Kbeen engag- M o>aU$2satRa cupbea. "IP your energetic natu7obe happy4 ) ( 3rim^#ni_complimentajSyou,",rIF!Itv,a&of barometric ^ #urvbstartlR Squite^"," i*1Howhe glass? TA-ninqsee. No/fha cloudRky. Ia/ful of cigarettes_ need sm)he sofa iCdperior Tusual hotel abo .  z&sprobabl2I 1use}i to-nigh(aVaindulg~=A. "Y"ve, no doubt,:!  s|]he newspapers Cs`&r plainpikestaff6more one goes into it_8(er'. Still, ,<acan't -N2adyb#e very' one, too54s7vA#ndWyour opini  I2 Ald har!" :Qyou c#doMtyd9Why, bless m 2ul!i[BdoorH 5TpokenHnV!omI"ofO<clovelyYSwomen}*GiXlife. Her IRt eyedwQ?fps parted, a pink flush[her cheeks,EAough2heral reserve los+8qoverpow'7|DRncernROh, M7M!" she cried,/ 8r," Rof use#lyBa woYquick intu!r, fast[:8#myGfX"Qso glC'come. I  5 so?TJames"do!'RI wanj"to1you k1,E1, 7N!le8r Bdoub %  CA+uwe wererhildrenYp Qults S$ a3;P!is tender-heartS1hur ;ly. Such aRg4Qabsur(anyone whoknows himZa"I hop2maya1$2x 6P1. p!"lyf#my#alDTo!Bubprxrhe evid+ 3? eXloophole,0gflaw? ) h,innocent?"JIjATherdwd2thrZAback?!heCding defianH $t ear! He gives me , shrugged#;U<plleague hCen ago1Uso8rI Oh! n[2did,H6And s{$1rea?Dhy hPCpeakU2 )" =q&#it"InSway?" fH"no>>Ehide"anmA had(ygreements>me. Axqanxiousr #reV# m   (us lways loved each Sas br nd sisterlH5$has seenK"ofQ1yet--and--well,3!lynot wish to d; Ryet. Y'Are U@%th'sG hnn4the  Q "Wasn5 ofh qunion?"1No,yas aversB!it 1one Fin \cit." A}b-Cf!es^ "ngk%asPDshothis keen,32ingves at hBqank you}ainform !he)s#e) A ifPll to-morrowxe doctor w(_fT =1Yes^Qnheard? Poo4 haIC years back,}r( 2himYcompletely. R qs takenJ!bhis be% Dr. Willows6qa wreck0is nervous system is shattered#thvTman aliveERX!da$)"ldg'in VictoriaVHa! I!\importand D min"Quite so;t Qgold-",/t j !R mad ,Smoneyncertainl [of material!c to mc"{*' $me-!hay  8sM2priB2. Obyou do a, do y1himEo beT1I w R go home now1s_;Nbe missso if IEkhim. Good-by1Godi undertak4e She #&{; aDAulsi2 t4hadKOwe (&er!ra_.#of+StreetX am ashamed06,oz with dignity after a HR' silL 5"Wh[N7youbDCopesare boun4 Qdisap !? "no- 1 of eh2ll it cruelI $clearingo McCarth3D. "H"anchim inIabut onz-;EThenTreconsider my re3$io("*E out" 1timtake a trQon{8AmpF n let us do WE I f8<%-b slow"I ;qbe awayt1upl ChourE IL 5^Bthem+wanderedsj Ttown,>   , where I la4 1ofattZ[L.in a yellow-back%#1vel puny plo R2torXK!so w(deep mystery(a grop4andd my at+2 so continu `&r>,IsB fluiURacros1nd gave&up!to{A da8ApposhRis uno BGqere ab%3elyF#qhat hel1Q ,/' P and extraordinary calamityLV0  | "Bhe p[= 1 mo0when, drawn) 2 by<creams, hBglade? I[! )*erdeadly. # it be? M7#no  5the,)Xc9'y medicalAincts? I raCe beYCcallAeeklEAnty 8+ contained a verbatimSquestWe surgeon's Ni!5=c1hirthe left parietal bon:S halfu occipi(% N  by a heavy blowaTHaI marke spot !read. Cl NIastruckd" ,.e "oz extent@ the accused,h4een#O  "to #Dit ;bgo for" older man mbturned =Gfelli<b#th #!to"'t `t!he peculiar >BthatM&$ IR9*Qum. A%dya suddenG3notb(#lyoCu%No$!moko be an attempy)!ex how he met@3fat|4whait indicate? I cudgemy brains to fin sW?gn2. AO incidendTb&cloth seen bL C_M91tru murderer.2somT is dress,!umY\2his2coaZlz7andWhe hardihood to =P1rry^i-c instaDs0a knee8$t dozen p>f^a tissue ofiimprobabilitiKfwas! I|hwonder5's M(<s"Qfaith EQ' insIrnot los" a!b as every 8fac(astreng!hi1vico Dng '!ce e  !ed?/=Alone rAstaygRn lod# i3towT ] Ckeep Bhigh#re1sat.of importab!ha T j"Vto go!g 2. OQhand,nn~! AbestSkeeneZ|I!as$I' i!faDlongz .2And "di Tlearn& "m?&!No4Czbrow noD,n#1all^qas inclNE2inkCUvhe knewAdone!ndDBscre=1him Q$er am convinced as puzzlAiy quick-witte%th3com1looIr, soun@4earVuBdmirtaste," Ia)ed, "if i=indeed a fact '/Rbso chaaslady as%ZAereby ha1 rapainful tale. *Bfelly!madly, insanely,v+Btwo ~Aago, ! vRa lad{h1llybfor sh0GDfive_t a boarding-sch[idiot doqget ine clutche&a barmai_bBristoK rmarry ha regist%#fice? No on1s a!* m you can imagine how madd"it"Wbe to4supbraid Rnot G2givhuBeyesA,,'be #G` B sheo&nz'Dsort Sm thrhands up b3airs+"  "irinterview, was goadr"m aproposbMiss e/Lf?TRself,=nO~!by accounts yR man,."n2verL2Qly ha3the truth>l'Qith Ys6wifhad spen!la>,4ree# A9 MH a. Marke! i +r has coS of evil, 9$ R 1J2thebspA!sea d trou( ] qhanged,\2andwwritten.2says5z"sb$;Aread=(the Bermuda Docky<"so< 6dno tiel?! I`1!bi`2newebconsolX  6all5UufferB3But,4has/Ah! who? I \B {particularlycoQs. OnnCthe  dQ h <Asome5pf"#noyhis son  I-heTwould6 osecondw% !arcry 'Cooee!'  51. TF2areIrcrucial7s1whi-ea(w depend"- talk about George MerediteSpleas#weESminorgs * T!waArainwsforetolorning broke brigh  cloudless. At nine-|u7Bcwe set off M the Boscombe Pool.  cCious4his&,"p !obA&qd. "It q"?=,Hall, is so i#2hisis despairbq"An eld!mapresume?" saidnARsixtyQ  Qstitu `+life abroa/ain faiGZ2som}  busines4hadbad effec%1him5  n old friend of't , I may ad great benefactorI? eQhe ga d! r6Qree."gIndeedz"st qqOh, yesaa hund DwaysDbhelpedEverybodytQspeak4his kindH Really! D*td_you as a 2 singularoFthisS, whonBb"av=Yq# been ugqobligat+ato Tur3P\talk of * 2's daught. ia, heicz] Sestat#in="Acock$?2, 0K!itTs merely-S of a a 2allL afollowexWstrange,(k5 `5! o 2dea]q told ulWmuch.P'r deducF a!We1 goA"BeducSs$ _3, wEQat me&3"it !enpjto tackleSBs, , without flyingk2EtheoUfanci!You are  demurely; "you dowAhardt #th2BAnyhGhave graspedT 4facP=m#Bq to get hold of," replied Bwithqwarmth.LNat is--"W{u seniorRdeath#!ju#!atALcontraryF[ moonshinW&Z^!erg than fog, laughing. "BuYGmuchGf/H ley Farm")% a widespread, comfortable`4 building, two-stox-slate-roofed7yvblotchesoflichenBwall*V l:Tre smoke]Xchimneys oAit aGe#ck3t the weighais horror3laytGUit. W  BdoorVmaid, at?' request!we]CootsfhT$ster woruY%im  Aalso_uith 'n# h`'ameasured #seM sA1or -5ems"> < ;+ Rourt- 5w  # wpStrack"K1  0 /transformedQ Sas ho:qa scentthis. Men who7 AonlyjAquie2nke rlogiciaLqBaker S! 3fairecognise2HisTflushNdarkened Rbrows.x"wo black lin2his!shWY"ut1benAthem"eely glitter. w1-nmw!hiTulders bow9 bps cooAe the veinG !odlike whipcordGlong, sinewy neckqnostrilq+rASdilat1a p animal lu|mhV 7 1ind7so -sntrated(Uatter3& 7r fell unheededqars, orUBost,Tprovoked a +, impatient snarl inqy. Swif3/qnd sile@/5he (away a+131ran1ughvbmeadow R so beNAof Aoods8 hdamp, marshy2O$isat districtRthere2mar^ many feet, both7Apath1ami<c shortl3&e aon eit=side. Sometime=  q2 on(1!Astop iQ onc!ZVquite fdetourJ.}c%1 O2 1tec;∈4mAuousDile I wai  !sp"Re  R a 3wasP[3rwards a1nite endD T[" reed-girb waterC fifty ydRcrosstituated`8ary%  aprivatk! wyU0 r. Abov Gi r5dside w"seS> Rjutting pinnacleNqthe sit7ich landowMdwellingxQ poolb grewQthickV narrow belbsodden81 tL;T pacecE edgzFtreec Qreeds]3n'ke !exSpot a Abody\BbeenH, , so moist w4ee! &splainlyBAe trarleft byDfall&ken man. To.c4seeqeager #cand pe8Byes,o>!th~! 8rea`trampledA. HeVround, like g!is6Xting up6 !$(3nioe&&go`for?" he aske"I fished +;rak;N&erb^weapon or}'#how on earth qOh, tut!!no !! 1fooByourp its inwAwist&llat. A mol" ir! vanishes amoi'/how simpl,w0BhaveShad I 4ere;Bthey/!"he;buffalo a!ll>ver it. Hw!th"tylodge-keeperf[c coverXJ s0rix or Bfeet{ #dy$erree separatcA! seet." He drew Ra lenGslay dow proof to1Aa bex *ä4imeCto +to us. "Thes "'s Twice he wd8Rran su xBolesjddeeplyQheels Sly vioQbearsBstor35ran "saf!faHn|) d*3i en? It e butt-endCgun }3son alistenRis? Ha, ha!b!we? Tiptoes! t RSquar?,`  unusual boots! T11ome7 yƈEome again--7"wathe cloak. Now9dF e $?"x"up9dow "lo+ fh until w7AwelliPAwood 1und1dowK1ech largest treLE ~Dhood3dk4way PiCmore{ dc\  cry of satisf8 . For a q "imN2remc,, turning0Beavedried sticks, gbing up$&m rbe dustan envelop" BM1ing! hojn$1onlF+!Rthe b7 Ktree as farI reach. A j%Qstone]BmongCm 2and|walso heIe "re-]*q a pathsHyHxW Bhigh3> ?1ost Q"It hBen aPnsiderabla ,"re,oh.al mannerFancydhouse b*bClodg^{n6!in>_ra wordRMoranrbperhap4  rnote. HwN1don aat, weCdriv(to our luncheon7qmay wal_2ab,4Ib34youg73G 4tenYbwe reg7qour cab1droarB1o RY c?>  qhe had= 3woo &5may3E {i2out. "The murderd .k6!no+4eare noeHow doo <T1assggj@Oait. ItU "lare a few dayDrsno signrAlacec < ataken.(sUjurieZkY "  <63er?'qs a talK, left-hande 'mpx>leg, wears"2ck-"shooting-QOa,2s Indian cigbuses a%Ir-holderYblunt pen-kn apocketsseveral /3ion[t An& Qaid uI$our search7 TJy=:#am$ Aptic! eJ o"very well,"wedbto dea a hard-headed British juryA"Nou'rons," answv calmly. ;!or>r own metho0Qwork min_ssbe busyWτ#Aprob/td to London1 ev c train2AndM$case unfi dDNo, 8B@R07)!It5olv)rWho was;~riminalentleman I describ+4But#hegfSurely !noG )!our populW"T jjD a pract51manh said, "and I r' r cannot1tak^cgo aboEO&EXfor a"a game leg. I2&ing-stoc 6OO"AllgH2youhance. k r/b(7-byAdropTa lin2 I~V!athQroomsAhote8Awe f- Utable2 3wasG!bu $injt2a pexpressio+hpsin a perplex+EositLook here,;hAsaid.Aloth<cleared "just sit Lcis chaQlet mDRRach tLNNn't know s !to?SCvaluadvice. L(&8Bvcexpoun\c "Pray< Wgunow, inp L 2his|< 3twoY*- narrativstruck usRJ4"#al/Ki! m^ 2vou2youi"st#On.""ct 7%thk, accord !ac|, cry (3see-=/1was<$dying referencBAa ra$obtawords,n QstandB3wasTat caughtrson's ear>Pis doubleH*$ "re acommen' begin it by presuUv2whatlad says is4truAXthen?Xrobvious *Qmeant!onsB so.) $kn.3in -4merA heaearshoxe1was.gaattrac& ;>rof whoeS+ +*'C distinctly Australian cryich is usgetween/ apF1ptiUq perso1m/(c expecM!me09Jm atQ was someo i.C took a folded pap0&> !fl|aed it/":Ra mape Colony of Victoria,"c 4I w ;t"it/Cnigh("puCh9Eover驒the map.  4rea bARAT,"d!d._tAnd now!is(_"BALLARATSQ#so ]n uttere !ic<8X onlyBtwo syllablht"toTo1nam}3hisFaer. Soso, of Ballaratd wonderful!" I exclaime #M;2nowasee, Ik.eBfiel$ Aably%S poss3bgarmen9ra third Tq, grant ^1)7#Y"ct3a certaintye$ 12nowfvaguenessdefinite LnRL dCl A9 e62Z"ca! be approach,HUrm or )"rs ly wander#TC!esQexpedu o-day. ByQxaminBhe e3 I !ifl-sdetailsiIX&#toimbecile 5, a"Aalit6  qBut how11youS themYBAthod"is &ed dobserv! #esiaHis he !I Qyou m("ly judge-the length 1stri!AHis ec, too,D"be?+s6u"YeypeculiarJais lam 4The hQC foolways less!inka2lef7 2put%'Dit. Why? B5Q he limped--34lam5nes"ouWU <eDy as record+surgeon atJcinquescAblow-\from immediate@3hin"ye%+Aft s2Now!ca a!unJ"itb9R man?RN#odpl U4dur 8 w t}9"nd P! !sm*%9f" I 2ashTcigar"my special lobacco aenables mpronounce/ny=rdevotedLuAis, 6Qmonograph ofof 140V)1 v7EiRpipe,Y Dette] Rsh, I% ]1andethe stump]1mos!5ere Tossedpw*Bthe y  !ro Cin RotterdaR{!!th$%ot0 Bo9\2foraused a!erA tip@<c9"f,N!bunB cu= clean one, so1ducc  Rsaid,@/4hav)7a nDis mm \ cannot escapo1Fsaved anE8b human4as trulX#if62d c )hv!an5{Rhim. H$&!io /2allZculprit is--" Mr. John%A," coLQ wait5|door of io%R-room2ush9gqvisitor a ! e&'d Aanged"imve figurq slow,ing step/*f3ers qearancedecrepitun rd, deep-lined, craggy feature,his enormous limbsV%!he e >Q str2 ofd%!an!qcharactis tangled beard, griKAS hai1out3ing, drooping eyebrows combin >aan airbdignit|Upower*Y;cof an ashe^ 2ile"ip5#Qorner3ho!,wStingeaa shad^Ablue2 Mb to me[@1glaS!haEc grip ofKchronic diseasezsit downsofa," saida&! g+ahad my0g  #b t it up. YouU Awish see me heravoid scands "I st peopla55 Vw IeBall.uAnd why wish to s|iN!at&u a9.weary ey 1his question{ ualreadybzY`d,!uC9$"hawQwords2:#4so. 2allt1The"9man sankA5. "T1me!.1 =1letO"ma ;!arhryou my}BJNaspoken%b7(nt2 atvUAssiz 6`ao hear%lsay sobravelyv}1nowZ"itO)cSdear girI.r wouldۏA heryt--it will when she(s\ eq"It may~8!to QWhat?"Jno official agent. IHayour d;!ho3#my g&FX1nd c3act2her ests. Y&WAbe g(f %evM~said oldi!had diabetes for years. My doctorR01whe "li~!month. Ye\2die1 my own '2han3gaoI B rosI t"Rhis padqa bundlb im. "Just tell C^C% _#jo 2ctscDsign2*! ]ci $n aproduccr confAa! ,extremity to sav/ . I promis6A use is absolutely needR's as3to; "it'QUHu, so it@ cQI sh0pare AliF=.Cck. " Iqmake th#"oiyou; i$&l! 7!ak/o!You didn'w 1dea, " Ha devil incarnPIPAthat. God keepok H"  Bas h }2hasFAuponShese / "he%Blastlife. I'llBfirsmBI caeCbe  / Mearly '60'ggings. I was aAchaphn, hot-blood d reckless, !to'(3 myNat any1; Iamong bad Dqk to drink,uno luck 7my claim+!thE!hD 1wor8#amdBcall(Qa hig'CrobbK4six of u H"d a wild, free lif2it,((Ba st22imeJ=ime, or stop the wagons_ 1roaj  Black JaAI*4ame %un#our party till remembere12Blony e\BGang9One day a gol#vo/3dow8qto MelbN=alay in for it GSttacktroopers1clobm but we emptied four esaddle9Qvolle!reour boyskilled, ,!wethe swagut my pistold-driver,|1thil$p2I\1L% 4hot%(An, b:>!spX nw $ I.A wileyes fix?6 my!:%to. every 2. WQaway 3Eold,~ealthy me)Bmade2wayqto Engl11@b@suspectedIAed Tmy old palJdetermine=Ssettlto a quieqA reZP3 bo2'is3ichUAbe iFe marketTt myself4o ab3goo"mySb, !up )Cearn2I mmy wife died1she me my deara. Eve  was just a baby her weeBseemUblead mVSi$,a as noC1had3-oIn a word, I e a new leaf!dib*/)past. AlkQgoingO AAlaid j_1gonsto townan investmenmin Regent Street Ba co2his},or a boob foot"'HQ are,",' #he[ding mearm; 'we'll be as^as a famil|3you2!'sS>!me_Rmy so# PT 1the2ing. If you don' 'kine, law-abiding&$is'a policemanin hail.'M2ll,j# !es"Antry( +Chaki/Wm off|Ilived rentglBevermF@\qno restme, no peac forgetfulness; turVrHouldhis cunn1gri sQelbow. It :Awors"up}!onImore afr5fAknowF2y pP$an a. What 1ntey BhaveOw&-I21himTout 1, l$ѯ#s,\3a5!81 a 6Wk not give9*2for_ B2HiscF2 grown up!soG !my"as J " w!alMta strok ;@! 2aH^$inAholeHcerty. `+bas fi  ;(1rse}Ack mAwithB,; any disli2theU1but % mF!waugh. I stood Lthreatened. I brav"mQworstwDmeetpool midway$3ourbtalk ifDWhen d=*71son 3I cIs a treeuld be alone. But.'7hralk allYQblackeAbitt D meD"touppermoswas urgingrry my $asRregaru'$sh;j3s9R slut2off snAdrovBm{ $SI:I held mostYB2thepbsqthis. C3IAsnapRbond?b dyingqa desperate man. T)!claf mind~afairlyng of limb, I knewc1my "atbsealedmy memoryN8r! Both"$ bU(2but,at foul tongue. I did it, Mr. Holmes !do BDeepIasinned4zmartyrdom to a6] Tbe en5 ;Tmeshe#"\>bsuffer4Frucknqno moreaunctio: ran if h Bbeen.and veno*!be tHis cry+?5h; 1had`#er =1woobough I3for "go dto fetS4loaH]Qdropp/ my flightc'n;3truh,0een, of' occurrZUa#:you1 as/!olQ sig !hepe&D `AdrawB>Bpraywe may nbe expos temptati4@not, sirdy a inten$doQn vie;Eyour`- p0rself awUcat you#to  Tsdeed atqer cour$ ,%if is condemned1a| A* #itA8W seen by mortal eye;jasecret"'1theive or dead,Ty"feAus."7 Farewell, then2t solemn4 deathbedF0y!, Y!beXCeasikpx+  2youZ2!toA." T" 1 inhis gia Same, "bled slowlkR room:us!Eafte<. "Why doesb playRtrick- poor, helpless worms? I&J!of72 a0"isVAI doC*Qxter'LdL say, 'TJ"buqthe gray  God, goes Sherlock7'VJames WcquitvG$N ra numb(Aobje =3 byBsubml Udefen esel. O} for seven monthIberview"hewI1 is every prospect1son[8 "ma1 to happily tog tin igno!H ScloudORrestsGKa past ADVENTURE FIVE ORANGE PIPS  "ovS2notU records Q casf<c'yB1'82B'90,faced by so many1ent strange65ing" easy ma "tof*dto cho!le8SA9!  apublic.?Spaper.aothers[1offba fielXGthosy*uqualitiqK& k#Qin so3 a degreeI!R of  to illustrat3toowTbafflkanalytical skillj Wbe, a4bs, beg!`2an dc, whil[4Rbut partiallyd6 q explansQ econjectur'q surmiia #%atA logp@bwas so& EZ&isC one"seQ1 @qremarka4in its detaiso start- N"amRoy!qsome ac of it in spitW !thF r/5HBconn7g4ich,probably d,qWT '87 furnished ueries of gr or less Arest qI retaixq. Amongy!hecs!onClve I;(anIthe adven< Paradol Chambero mateur Mendicant Society Ra luxc club l&Avaul1a (xwarehousek Pthe lossc tish barque "Sophy Anderson"N7DGrice Pat4-trof Uffa1fin'1 Cwell poisoning casB0mN% 6Rby wiuw 's watch, to proveH wuup two hK M)AforeGdeceasedpCto b{!at--a deducm-$waRst importance inrw)Aese I may sk !ou+Bdatep2non)Cthem#t ) FQtrainqcircumsL I \qaken up" describeIA dayRSepte< equinoctial gales had seVional violenc"1day1win screamAthe BatensK1owsmBeven(#he6, hand-made@awe wercraise ourBinst# !omQrouti 1andGW1res`#osK elemental  shriek at mankihr;i !araivilisAOQ unt@Qbeasta cage. AsAqdrew in a stormG!er Aloud3criasobbedut a chil>#e 0[,. sat moodily atu"siL+<Afire]O cross-ind>4his#hDrimeI! nty!inbof Clark Russell'sLea-storiesyS howl wto blenEtextSe splE2to lengthM)n rlong sw0sea waveN'Awifeo. to her m' ?R fewa dweller onceiQold quarter rBaker Y%"WB} I, glancAat m panion, "Lr !urohe bell. Whoto-night? Some frieV.dyours,tI?g!"EA6elfne," he answerEencourage /A clientndaIf so, 1s a3ousrNothing*bL1 maB ona"n }I5 it!isQ lik6 #DcronSlady' ]Qwas wras>  re came a1Spassa aa tapptdoor. He0tt9o!ar>cmp awa<2him\'Xthe vacantoB ~a newcomer #sitCome inth1The 14yousO two-and-twentyoutside,U-groo1rim 2ad,d Bsomeof refinqdelicacI!2. T1eam?tmbrella#l1hisc\shining RAld Ve fierce weaI2comblookedo him anx@!gl3lamIWaVqwas palK#Rheavy#of7who is weighed`22etyAI ow an apologysaid, raising~golden pince-nezX  31yes!tr+-not intruding..r# 1Btrac G(2ainyg4nug chamber."Gi!!5and@Q"TheyG Crest$,o2hoo C drys2tlyhave come upeaouth-w SI seeAYes,'e HorshO7?2clachalk mix BhichFtoe caps is q@GB$ivo\F)1Tha"easily gotAnd help(4not!sso easy!f2hea'WN3Mr.R9from Major Prendergau!ow"sz4Tankerville Club3!Ah c;~fully accuse ScheatrCcarda"He sanTTolve *2,soo much!yTbeateK Q four s--three T by mSonce by a womaN^Kc+'re1 +successes3truQgener65fule|.Rbe somQCI be,F1drar8)2fir1fav 6e $s 5casjno ordina$`N @6<ag "lax$rt of appeaAnd yet I "5sir,ebexperiRG!evBsten aS myst and inexplic($chp[AhappVp #wn&&You fill5ith  BPray6"usY QessenxV aommenc,RI canv'$1see!bet $ !Thd5!pu<6hisOQand peqwet feeF Bblaz"My name he, "is John OpenshaL Saffai,'2far<"2canG!st%*Kythis awful busines!Ais aSditary m; so in order `rn idea2, I tgo back`1" .!9VBmy grandfhad two sons--my uncle Elias =#y ,aJoseph4had a smalGu!t Coventry, qenlarge "th C inv?of bicyclDAHe r patent-5theq unbrea\4 ti< R met1suc1cess2t hto sell itto retire up;H8!omxTpeten&M7 emigratrAmerica*o+2man n-ra plantqFlorida?was repor[$adone Nw,A`war he f"-!in*son's armyyW Hood1ros% be a colonel. When Lee lai  !rmPSretur 2hiszwP bhe remRg ree or four(1. AQ1869 or 1870 he33$ REuropxEtookQestatqSussex, 2 H bmade a=btH"e Bthe State;his reason faaving 9NaversionYnegroBadislik the Republican) چd] franchi m% aNDman, 2andhQ-tempt foul-mouthedBngry  2ost+5disIQ" DUDSall ts& Ev ,X%roubt ifJ!he1foo+1ownoQgarde9Bor ,K1s r2his(tEBtakeexerciseb$K"of ar week;1end/@ $C*2roozsdrank a1deaAbran!=d smokedsrheavily^see no societ0 1did want any !s,2evewown broth)$He?7mind me; in fact, he"fancy to me,aFe time saw me firstryoungst Atwel"q so. Th2^(1yea"8,T" h= eight or nin+s4b2!be]2oRBlive3d hD2waybas sobV B foqplayingDgamm craughtc! +2mq3 re\!at\2othbervant2 * radespeople, soPH& ssixteen7pUQhouseX?5ept2keyy)"go" I\)"do7qI likedBlong) disturb him in"aprivac5"erl'on o"hele room, a l -room up athe atticsQch waBvariably loc4"permit ei\me or anyone elj enter. With a boy's curiositybApeepN1Cyholv1abl^#sed ' collection of old trunkRbundl^ (2ect; qsuch a9 One day-- 0 in March, 1883--a lettera foreign stamp %tein fro  'ate. ItbA co= 1for*r Sceives aills wSll p/Dread5#nos] sort. 'From India!' sai%as it up, 'Pondicherry postmark! What can Abe?' @@t hurriedly,Avjumped fittle dried o#5pipp! eJ z 1 Fa beganRlaugh^1is,I+!ugr struck amy lipicight face. His lip?qfallen,o z3proC skQcolou`Rputty^ dh qill helhis trembling hm A'K. b!' he !edcn, 'My God, mBsins# BoverAme!' 'bis it, B?' I#u'Death,#p" r"S1abl + 1 me palpitatborror. I!up0 #| saw scrawlrk$: ner flap, just abae gumM2 K ' AtimeI 'ea9AhingA saE eSpips. P82pow2*terror? I left Qfast->\as I asce$Gtair7gcoming!an rusty kerbbelong3onedaL2 brass boxx%*h_ ']AtheyI'll checkmat- a",'ByHn oath. 'Tell MaryYB VA ro70B-day3sen;to Fordhas lawyer."edH2wheb/a arrivC-3was5to step up  2Thewas burn4 crightlJC gra mass of), fluffyP3#!ofSAed 'lZ 5Aopenempty beside it. Am the box I noticea start,fAid wy1rinhe treble KXIK4rea%G$ ubI wish_DJohn"myA, 't1nes_Qwill.[save mynas advantages6dis<$$my@ r#t will, no doubt, de1youK/you can enjoy i v9%and good!-"fiQ/Q can/ #my#bo?5 it: deadliest enemy. I am sorr 2(f8R q two-edChing can't say w,2urn"s are goyo. Kindly sig" 8 4Mr.Q showKx16q as dir g""itwith hiiincidentx+. Adeep&CimprF I pondered overikary wa"myXwithout be  2any !of{rYet I f 1notO0Be ofvague feeAof dB3!itE behind-"en##n Akeena#hepassed an}Shappe the usual$our lives6!se#Changahoweve Ceverxh()AclinBr 4 of Q. Mos+)3his AspenkBhis 2witCdoor ~"in"buV'Atime H Bemeradrunken frenzyH.Aburs gpBtear0a revoll &3ingJ !at*as afrain/H#n?qbe coopsheep in a pen, b/n or devilAthes SC fit Eover, ush tumultu D{1and!baX him, likecan brazen iUni)er'] " 5lie Aroot.rhis souRsuch 3seeQface,& Qcold ZTglist!moc5it were new raisedx ra basinWell, to!to[nt~"HtterX,/a abusSr patc #n>P8de +$ 1sal,Cfrom#heLback. We fNm! (nzasearch0!2fac[C1wara green-scummed pool1ch  =$r"noj *%e(au Rt two'tdeep, 8the jury, h1regwo known eccentricity,!6averdic'suicide.'%-knew how!qinced j1theCdh + much ado to persuadjTelf ,j!etcTNZ passG "ed? Q`5theN 1and/some 14,000 poundlQhis cebank."xmoment,";! interposed, ""1tata is, I~esee, K1roMed. Let mJ 5dath#rec,1 by(( J<qhis sup T8; oe2 10hsY6A la Kof May 2ndRaThank v ;1Whe("ok property,tY Ea careful`o alwaysNl fE, alLs contentsdestroyed~c   g labelqinitialVq repeat!on'Letters, memoranda,1pts$ a register' wr[beneath.ase, weP%ume, indiclEaturTpaper9 Zhad R by CuqAshaw` :r%J %not Vt c QmYscattered+ e-books bear  "'s.Cin E. Som1warVshowedqis dutyW)+^Corne"pua brave soldi1OthOeba!dueonstruVthe Southern sQmostlbcernedtpolitic!ev !ly( ? t\+1parEAoppol(trpet-bag Pians whoBsentJ1NorjZ_}7r of '843"ca"live at "ll#as}s possibl_u. the Januaryl5fourth day!ew3'Cmy ge sharpyrurpriseU sat :b + P#reZ V, sitxa newly opened/h n!or Cpips?+,Dpalmother oneDhad Baughnw|G my cock-and-bull story a$p  5oked very scf'$Rzzled3h ! sAhingPcome upo U- C'Why&Qon eaAoes Qmean,@$1?' ,1amm7/!Mytb.to lead. 'It istIxHy 'So it is,x1 'H rUV s8Di1m?'#'P +sundial,' ITa, peep !ve!reT "ed$consciousness, as it W-rs, been retsFareham twilightI bcountrErunknown"m,-a unfenzano hesion in bringF zAaccidental causes.' C lWYI !ed&yC%Q connh2, Iunable to B1ugg,Uqhe ideadmurder   <1foo s, no robberyQrecor!st $rs!se<roads. /!neM t tell youcni"fa at ease4w tll-nighELfoul plot!becEoven'.HIQs sinta way I) into my inheri=331askwhy I diRadispos 5it?sA, bea convour troubled "in4way dependentEan i +3.\'b+jAouseyAn an' ' b, '85,!myIT4s e-7Qtwo h+eqG4elapsed sinc )Sime l/G4 ath+Bbegu"opW#Bcurs; t4amiIzi>Sended13genz.%w take comfort too soon, ; yesterday  !haE a#my{#7The.istcoat a crumpled B$ b!to9thb!ok4v"it!Slittl ' :BThis. ei"]-ontinued. "T  is London--eastern division'Ain a Dword%weZ/"'s=Fmessage: '2 !';=B'Putw  R !.'_" you done?" c HolmeZ ` ?C"To qruth"--O!nk|h;!inte hands--"felt helpl<:likb rabb!Asnak 2wri2Qit. II *#thѝ bresist.ainexor4Aevilch no fore&!anQprecautions can gu7 9Tut! tut!Jn L 2|,1manGaQyou a=SU but energys$Tyou. !nop for despair^#se9Z2Ah!BF"y  #myzw)SsmileL ainspector haBh]he opini  5s a( seaths of my relaCwere$ s  Tstate* 2ere !wa s R shooclenched air. "In5blemwBity!7Dried\!ey& 1all2qwho mayi p#usz mcH$aoit"Noe5ordtoJy[SAgainA ravR51WhyB2youzDto m*ried, "and,j!al[49, IV"no5/+Conly%yaI spokwf;' g;&my,!asE#sRN7him#_?F2you-61. Wn1uld acted befo"is Rno fu ce, I suppose1n / q1ve DWdus--no4 $ivt86b mighk3 us]r.Sis onz," said8 brummag$atK!, Adraw ut a pie2dis+ed, blue-tinted!, iE#Tout uQtableT?some remembrance," 8"YeS # byI observe, Fm#un0Qmargirm1=se asheyparticular1ur.ui2gle sheet TflooroAroomP]SincliZCit $K8&haD/(3out~2amo5! ow!atG has escaped dea. Beyom ahe menUaof pip-E"se " izs us much+bhink 8!ge< private diary Ws undoubtedly'"motBwe both bent $hA;f, by its ragged edg(!deqen torn a book1hea'"[0A69," bbeneat fBfoll`enigmatical)s: "4th. Hudson came. Same old*)7th. Set the on McCauley, Paramo1  Swain, of St. AugustinQ<29thQ_uley clearR10th.LC 2th. Visited~Q. All]}!,2bing upAaperFfit to our visitor. "Anyx on no account lose> instant)R spar..$'Bcuss)told meqget hom! atantly3act `LI do6buta to doX]1be BwR put,cahown uYQoVbrass box,describedh also puQa not3say7pCq1by !CunclPtM e3one;sSssertT3e "asAcarr1vic* rthem. HLtQyou d\- n { 1dir2. DPA  $w;Wlour web to weave l!iralready wovenufirst O"is4#moX#X threatensPBPSmyste`to punis guilty,vt#|;oung man,2IA!ll1Ccoat [me fresh ]5!op # ly do as`DadviP k eA" ctake c3Iyourself i eRwhile4w!can be a )p ~a2rea.imminent. How do!go9rBy trai WaterlooC not yet nineJ#etbLw8so LIin safety2RX/3not.too closf/5arm%F"isw To-morrow!se( %caB seeCthen#!NoLr secret lieI/". &tXDk i&Ecall in a day3%in  dnews Da e%s.~Qadvicxqevery hcular." Heaq"usW/0. OutsidRwind 6,"ed51he Icsplash"pa # b(awindow$is_qd story@ #coru* D mad>Ss--blown inZ!us4&-t of sea-we aQ"--wn reabsorbbethem 4Q[. a sat f->mjin silence"hiJ sunk forw~9-8 the red glow@2firn he li#piK leaning! i"heWWeQblue smoke-r2y chased eache [1ceiD I, Watson,, [e Elast f$1s wZvnone more fantastic\0zU SqperhapsA Sig CFour>%]yes. 1"atx!yeq BGvs} #me}w !mi,n greater perils Sholto&BuB," Iq, "form"y definite con*3 wo$sem3are$%noI#ir(!`a by? Who #B andoM1Qpursu is unhappy family , dc4lacClbowt= 1armGhair<finger-tips8&rideal 9"er, "would." ht3oncC 3a 2fac r61bea#, deduce$1 it  % OK K3ledE!it u 5d resul,!  Ej. As Cuviericorrectly  a whole animal byorcontempw qbone, s0 Zr who horoughly ood one link]3s Ibn"qccurate k!atMa ones,# s'After 2hav2yet  <BR alon#attain to. Problemsf be*Tstudy?s4a3ose)ve sought a solu@ pA ai Ss. To Athe 9B#!tohighest pitch*is necessary 4=er h utilis`4facZ!toknowledge$is` amplies yrreadilyaf0Uall V 1ch, "seof free educ and encyclopaedias,[ somewhat rare accomplishment anot so 8*ahat a ma4uld<@Wauseful D<Bwork}  endeavou>2 myg3f I5er E<you on one occasion=}5our friendship,@u*Rlimit precise fashioQ2Yes, laughing. v#Adocuj Philosophy, astronomy,zero, I er. Botany vari `geology prof/$#as3smud-stain dny regin fifty milUown, chemistry 4q, anatotQsyste,q9al liter/and crime records unique, violin-playj!oxer, swords1lawself-poiby cocainbtobacco. Th@Y #BBpoin7my analysimab grinn} .st item.   said, "I say now, as IYT!en 2Akeep}brain-attic st2AwithTthe furnitua1at sbY1use1res#1can&awG#ofrbrary, <zan get iKAhe w~Hrit. Nowobsuch aYbeen Oj%us\, we need .to muster resourcesU=hand me dow letter K 'American E'r stands Hhelf besid 27b let u&#id_)Esitum!wh]`Cy beb8#it(u "st !ma#rt1#1ump  2 had somD!Cg for leb. Men ]Z$"ofUchangir habits #exwillingl~Achar|CRclimav2rFlorida;Ronelyl1of glish provincialh. His extreme lovejaolitud1Engq-'&Tfear of some%r/Qthing Qassumaa work0ypothesisdit wasUI T_Qdrove*qAmericav "to#N!heQ!ed 2can &byZiformidabl *Bself()%'Rors. Did D.T " _s "CsGrom IJf.C},.DEast What do74thaATheyall seaport !atCwrit6qon boarN ca shipyExcellent Ra clur"G7robability--SZtrongi / Yny"an 1. I!  *of69'abetwee6+ its fulfil:3 int0o/o-ree or four B. D3$at7AQdista((o travelB ;Ccome9Iteۛ"!re at leas `the vesse̻+fan or menkG a-H It looks as i y4#se'&ir [# or token!"em.Rstartobir misD'1Your2howS4dee!edsign when it ca3. I2had r steam"y UEhave;almost as so:=. But, as a ma!of*-n #re)cetmail-bo<"1 b0" NTIR! M"aP &ley!eadly urgencyw] ,,Aurge%ng:q to ca7 blow hassfallen e1(Ssich it2tak1sen%R". >#c comeS afore wBnot count Sdelay= Good God!" I cried. "What caj7srelentless persecnvThe pap<71iedBobviCof vitalrh/!soD s}0.is quite1ere # b-!on~1 A)!led3notraout twq!th Qway " d  a coroner's juB" everal in ?L(2men determination@ 4eirE4ean2, bbbholdero it may. !is#/#K.QceaseJqinitialX/cdividu"bethe badgoaIWbBut of PHave youS}--" sai*, bending S is voice--"NQ3 hethe Ku Klux Kla7IyHolmes t%"ovfthe bookghis knee. "Here it is,RentlyS#'1. A3_A der/$ anciful resembl sound pro  aa riflX is terrible# |p 2orm=some ex-ConfederatrAdier] Southern statesCivil Warit rapidlyclocal brancheSURt par,l44Q, not:V in Tennessee, Louisiana Carolinas, Georgia& . Its power was usral purposes, principalSterro"of}negro voter #urF and driv!ryr s7topposed^Rviewssoutragequsually2ceda1senHm[  but genero d shape--a sprig of oak-Is, melon seeds or or>K Ss. On4 `  !e #"m 8*"ei>penly abjureAformbys, or/G fl2Yn hv u.O&ould unfaig*2]:4andh #unFn緒So perfec SrganiM:{e6so  its method0Mre is hardly a 1upoR3ordS1anyQsucceRin bri|Eunit!of l"troaperpetrat2ForY4 flourishBspitothe effoUnited SWgovernment aN bv classAcomm9q. Event/,ayear )Amovef!raAsudd2colt5F]bhave poradic outbreak2sam?%5at date.'d&&",)v, layingcvolume x eu%co72dis6:O&of yP5f  . It may well-v:Bcausaeffect)+2Awond";$is famil0CAmore!acfspiritM"ira. You uF t7i$is~ diary mayZRicate3ufirst mCT!reBabe manyonot sleep easy atMQuntilt7ver$eRA pag aseen--1"Is?}D%$xp^nran, iA, 'sy>#thrto A, BAC'--!isG %'sId4m. !re bssive entriAB ed, or lefa1finuCv+>,n,u:<"C. Well, , Doctor, vlAme lb!in7tis dark"and I believ- Aonly !ncH !ha daeantim6q what I told hiFI!srdYN3A, so$2 meD.my violinq!trforget for hal Bhour2isex6"we2Ae stj'or%! EKellow-meMA ItA-`Amorn[!unrshiningTa subdued bWXness _tdim vei%Rhangs" city. Sherlock<nD*"at BfastIz down.excuse medbnot wa0tfor youChe; _8S, I ,busy dayumW1loo U* `Z0Cstep(1youD?#"Itvery much depend %!!ofBirst inquiri9Ihw\Co goy&o IfL2ll.!nokG  Di.scommenc.6Qthe CeJust r;mKBmaidb"up your coffe!As,>ited, I lift unopened news/YE#eyaLat rest #on a headU,g a chill to myct,fa, "you?stoo late"Ah!" c4his cup, "I1 as"+wA# _;He spoke calmfIwas deeply2MRcaugh"nam 'Tragedy Near+ Bridge.'  0B%nS"ennight Police-Cons5d Cook,"rH Diviw on duty n,qd a cryBhelp a)!wa#2The"%wa1"ly<<astormy2thaEspitn%ofpassers-by, $wa$im3 toD a rescueZalarm! ..,@%#-;*Bbodye mD 1pro< aa.Sgentl2hos&v2it S s%anHK4Qwas f" pocketa 8 br6bnce is.i5Aject"&he GhurrP ro catch# wV.1 StlXS hast?4thehFs3(ApathewalkedB edg 8 landing-places for river steamboatsbody exhib= !no  3vio+ra!dePe Qvicti 1an Qtunatident, h !ec<!ca6att7authoritim1ndiEsidestages." We s!si1 minutes, t ds*qd shakAan Iek!eehurts my prideH,Asaid2ast$!isZtty feel y,W)iTJa personal  #me#!nd God sends mlA y"seUU! bgang. e$to Dhelp<!atr#send him awav 2his\3--!Brang ahair M+S!ab_qhe room/ncontroll$gia flushh>b cheeka nervous claspE un!ofS!lo!inZ sabe cun bdevils$exclaime2Howd C QdecoymI Qhere?2aEmbanks R< direct lin WDwas too 2B\dsuch a$ir?  /E we0%e 4win2Brun.41ofeal work,tqlate in2 evLj+I9Baker Streets Q had^-Crback ye"wa!lyso'clock1entered,! 1pal_ worn. He;!uphe sideboard,VAtearb piecezthe loaf he de)rt vorac,ching iUo"dr "ofL)Y ahungry "rem!Starving. ItRBscapf ememoryE9@% ""NRt a biteD#im4uink of 4qAnd how`!P)We "!A thethe hollow of 1and0 1MQnot I!re)unavenged. Why!pu{ !ir&{ish trade-marl! IB"th-#of!do$me"HeH$an 2cupPORit toSssqueezedaXe table. Ofaq1fivb thruX5hm into( (Qthe i( AflapQrote "S. H.bJ. O."|!leand addressto "CaptainCalhoun, Barque 'Lone Star,' SavannahQ2lQawaitw4 fs port)s, chuck4"?9<a sleeplessrill fins sure a precursoQhis f s5did[#imAL  3is !?"vThe lea.%Z=&j"Hoyou trace it, thee large shee^Dhis  all cover+b date%naIJ$spwhole day"over Lloyd's-RstersAf-bhe old@Alowi0e future careV8$ &PondicherrNdaFebruaQ '83!re thirty-six shipfair tonn1(s reporrj\$osmQ, one  instantly attract ,D~b as hqTclear+bLondontU#is!isne#  oLS Unio{e"Texas{#nom9;bI knew~` 1hip-"! $antn origisP#"ImcDundeePJI?Qthe bm& n'?#>Pmy suspicion becam WtHMSinqui$!tosg!la2preEe3 ofL2Yes)"T('barriveY )qWCdown Albert Dock"sht ; hS21tidsP,bward beo!irvo Gravesen;QlearndCago,* wind is pO!ly-vL1 shbnow pa Goodwin3ot Tr 1Isl7SWightumayou doCJD"Oh, mD$!ma1are,x.ronly native-bor)T are FinaGerman=k!lsy4-all three6% zBshipG iCHstevedor 3has"lo4 cargo. B6/Bir s-ship reaches0g(i&9Rlette" !in dOQpolicNyBse Agent>badly wau)BhereAa ch0#ofb""T#!isWw a flawcbest lhuman plans; #heU!ero %nC2cei ( !e" w 2how0 Qanoth7sW Qs re8themselves"up!irLk. Very P 1andE severe- דuyear. We"edF'1newUthe " "Bnonej>d us. We drsBsome!1far1 Atlantic1hat stern-pos "a as seen swingingtrough of a wave( s "L. S." carv!it"is4e rever kn a# I. THE MAN WITH TWISTED LIP9sa Whitney, brVElias#tD.D., P%athe Th7%RCollet(2St. #e'IAaddito opiu 3R grewl1himIEd horrorEDpity<1fri3andS!ve!ca& him now  yellow, pasty face, droo.$li Apin-2 pupils Ahuddcir Se wre1ruia noble mag#OnY#--9 in June, '89--t Ao my, aboutBhourwa man givesirst yawn'aglanceQclock Sat up!7by wife,her needle-work in her lapcmade a littl=Qdisap>3menA patient2sheH'kto go ouI groanedI WnewlyfFa weary dayWr2dooU(, a few hu-4worB quick steps | linoleum. Ouoor flewV!nddy, clad in soQ-coloSstuffqa black ,9 a y calling so late,"o Rbegan;% &1losk71er ;c,84ranG-, w)Darmspr's neckdDsobbNh?B "'much trouble!cried; "I do so>BhelpS"Why," sai)>wife, pu!upveil, "iDKateSb. How.tartled me, Kate!2 qan ideaR .@Fhen you rI didn'"V#to do, soR" straigh1youaA alL#+ay. Folkzw+.rn griefu&toike birds to+ght-house!"Ia 3 swM~o&M<Pwine andFSr]|-J ell us all it. Or 4youC)t%#!koff to buOh, no, no! Iboctor'3W0too. It's~Q IsahFAhomezqtwo day qam so fg$"q him!"D"no"R  City. Hither aorgiesbeen confiBo on,j=, twitchN !,  Bning5Kahe spedQ him eight-and-forty hourvXre, doubtless FWa dreg0ks, breas=3poiQ5$sl$k "irDAs I , a sallow Malay attendant_ X"upKaV$'dsupply>drug, becko3me "Bmpty\1"Thank youwn%Vto stBI. " f aof minV he, Mr.P I wish to speakRhim." a58sn excla from my  ett, I saw, pale, hagg~*vunkemptout at m1"MyAdWatson>Rhe. H !in&tN2 stq reactOAwithyH)a twitter. "I say,b$ &ais it?*"Nearly eleven>1"Of1C day&Of Friday,S 19th-2GooAens!5 it was Wednesday. IWhat d'Vant tHp for?" He sankANl"on4R arm["obBhigh treble kep""I xQhat i1man &r^2has]44 tdays for4You be ashame<y l%!So)x you've got mixedRfor I' chere Athre98c!urs--I forget howrI'll go E6n'tKate--poorKate. Giv'5your hand! Hav b5FYes,e CnThen I shall g1 #itdC"owthing. FindUI ow-.Roff colourVQdo noAbmyself2I w$ Bnarr 1sag<#wedA rowQsleepChold  to keep vile, stupef 2fum*HdS*?sfor the 1r.   tall man1#at QI felFVc at my ski/bow voice whisp*R"Walk!"me*|alook Qat me=fell quitGainctly my ear. I zT. Ther 3Bcome&Jcy sid"ye/!atp as absorbed as!,qBthin wrinkledm !agRpipe dang3dow, $asFi]Rdropp 1shecssitud!hiAngerAtook ]alooked@+8y &a to pr(4 9+-/\5of astonish" H 1hisr2 so#Mbee himBIPAformVQfille,hsHAgone# dull eyBrega[ 1firo&reBfireAgrin o  z:1. Hade a s 2 mo"o h5nd y'Ghe 4Qhalf 1 to)y once moubsided 2dod, loose-liCssenilitFI!" I1wha0"ar%doeEis d$!As!asw#ca\_canswere P1 ea! *3theqkindnes\?usottishEoI!rsibnly glad tod2tal ! a cab outsideThen pray "itmay safely trust1for@-#7pqtoo lim/$geQny mischief.B reE;lAalso&F notnabman toNAwife\)2say=2youthrown in*#lo$me$cwait , 2 in-0I  to refuse,of=q' reque #@&C)sosdefinit5putawith a quiet air(sastery.1%BthatqWhitney1f1GQcab msion was practicGaccomplished;~1nubsh anyU! c)associate3 my6 in?8ose singular Bwereormal condiexistence. In a few! Iwritten my note, paid 's bill, !!im31ab,Y7Q driv  darknessvery shora decrepit figurdwemergedpium den&I1wal{the stree FG" &s he shuffled alo@^AbackSan un+ foot. Then, 5ingPRaround,Y<qhimself Dburs hearty fiQlaughter.esuppos 1, "you imagine d<opium-smo*to cocaine inje(O) Q weaSes on>n2fav !m8rCview8"Fl!21ButCmoree8n I/)I"7And6tan enem>QA!?"nDYes;}my natural2ies, or, :% prey. BrieflUDI ambAmidsao qremarkaV$rinquiryR7hop!4Lqincoher-ramblingsQse so'&7now. Had I1gniZ3nEdl#nom gw9an hour's purchase;C uSty"myM A rasnq Lascar Bruns6 as sworCahave {5Cance= 2e. is a trap-doorqQ bui ,j@the cornPaul's WharfGb! ctell someI1angue|what hasY "it oonless -!qWhat! Y.ean bodies3Ay,G. We rich men if wJ1000 pounds for !y QdevilcAdone"rHeath a. It 1st murder-trap + whole river 4I fC+ Neville St. Clair0"en&it,AleavNBmoreQour pQhere.ptwo fore> # bS Rteeth/ histled shrilly--a signa?+%as 2 byg1mil<QdistaikDfollDrtly Rrattl@Rwheelvl8horses' hoof<4Now 1, aall dog-cart dashzGp $ow two golden tunneB yellow BfromZ?terns. "You'l"3me,3you#If_be of ust 1Oh,usty comrad ,b a chronicl,ASill Q. My at The Cedars-bedded on{(QYes; H!isE2's %staying there while I conduct .MW)Qis it[ Near Leem!AKentaXDbn-mileM #usV2But2alld Of cours 1are 'll know9i94ly. Jump up MD AllVJohn;I.not needbHere'sa>Dn. L3!foto-morrow,|G #!er head. So long2!J#He7.% ?2hip@$we!aw aendlesMCcess-Bsomb' desertedC "s,Q wid CgradyPsuntil w !fl across a broad balustraded?DBurky'2 flsluggishly benus. Beyond layx1q wilderOof brickS!tar, its@Q brokI@heavy, re_ footfall of6apolicefAsongdttyI1bel p AvellAArackTdrifting slowly; "kya star 2 twM[!an 1rifsclouds.4 drove in1hisF sunk upo,bbreast4theo-who is lost#! sde;scurious"rntsw questPbe which "3taxJ;1wer7AsoreeQafrai0 Q in the current ofFs}don2ralh,{ g3begHQfring!th csuburban villaOW1Tshook , shruggedshoulder l7 G3pipk aatisfiLp !he!acsRbest. <a grand gif_ilencz . "It makesfinvaluabl,*ion. 'Pon myXmaa grea|yee!to1 to@; 7not over-pleasant-9bas won2lI1ld 9E3r /':she meetstfCdoors4YouGpIk2notb)#it.jI2ave"toX 1you`1fac UO D we~ Lee. It seems absurdly simpl?Ayet, 2howA geXQto go9 's plentthread, no)A, buXRcan't&@"it 9-CI'll(B clPand concisely,Bmayb2 Cpark,Dall R!toirProceedHSome years ago--qin May, 1884--[!LeVRgentl Qby na h2> YQmoney <@+,8uigSs0U niclived generYgood style. By degreedmade [4"Bhoodin 1887 he m(:3e da local brewer, by whom he now two children0 occupa1buti #st >ep@!in#2own Brule{3Sreturningx B5:14 Cannon S&aevery . 1 isthirty-seven9of age,g man of temperate habiy.,R affucate faF:#ndLTApopuf 1ith 1whoV him. I may add 3hisyTdebtspresent mom$as far D|Qbeen Sto asb, amouj #88>Q 10s. ale he4220Astan!toAcred$rCapitalCounties Bankyslsrefore,"nk;# 3AAweighis mindLast Mondayaq town re earlicusual,ba> Qthat d two importanm[ rperformw7jQbringEboy home a box%SricksebRmeresm#ce]1ifee.a telegram} Csamely after his departuz9+&parcel of coFrable valu # s|Bexpe4was@"\r officbthe Aberdeen Ship8sCompanyi;! aE=!ll +, jW1 isAcFresno3K ch branches/of,,+ 1fou-di. Mrs.d8Bunch#%ated foe City, didA sho2, ps#'sa, got]"paRBherself at exa E4:35dd ( 11 onOqway bac vtation."8So farBIt iT cleaW Iremember,2an exceedingly hot dayN" ^cwalkedk   1hop seeing a*1shelrnot lik 9$ i3sheM. While sheM!is,Xdown U,/suddenlyrQjaculZT or c.was struck col!seZ# Yna2s iD e:h(" '5A1-floor window 3ope s3"1saw!fa{@aescribes 4ingey agitatedH1wav sS%cs fran; "erW+hvanishH3 so#m-at! tv'h$be$g"2 by~irresistibl7"ce*0V. On-2her> feminine ey-although he w m coat, such a 7T in,on neither collar nor necktie*ConvincedtVwas amiss2him!rubX!thTeps--iD l"pF'--and run Rfront prattemptaMCairs~lthe first  -!oo7irs>Yqscoundrd whombspoken 1thr "er/i$Sy a D/1o qas assiO#z2, pq1hers#instreet. Filled most madd R1dou% nd fears Blaneqby rare 7qune, me  a number ofAstab$ n inspector, "ei@ir beat. The 01two 3aniBback ZA,qproprieQthey $Dd,MrBlast#Aseenrb signu're. In factq3the aZ3no b`save a crippled wretc 4hideous aiv3, s:@!omqre. Bot`R}stoutly sy2elso 1durAhe F Anoonmeobdenials6the(staggerehad almos0/cbeliev heen deluded'qsprang 00deal box 2lay^ R!orKB lidait. Oure fell a cascad%'s [$[#oy promis #omThis discovethe evident confu4the:"  {Qreali1:aq matterrserious "}s were carefully examinqresultsan abominabl!meB$lainly fur!as (-1and#tbedroom -*"ouy$e183. B>f$heZ# VDis a-Tstriptis dry at low tideJ]vered at/#idwv1fou " aj1feeQwater-#  aa broa!opS$below. On U 3trag Cbloo&Fseensill, and!sc$sed drop1vis ;bwoodent+N2. T%aU 1ehi"cu$kwere allAclot f"thM)p.&ecoat. His boots, Csock #ha ratch--allryre no sign(^E3anyese garmen8!reTQ no o   oCust apparent5.gone for_Cexit!%beLp bminousastains sill gave#ulby swimminga"it!es#43the9ctraged+1And!as qhe vill!wh  be immediatelyIn1licda1wasnBw vilest antecedabut asE a's sto9eY  Q 3very few lC#'sb d hard zmAan aq Tessor H4-CfencU@#abORignorBaprotes h)"noWledge-Hugh BooneFlodg Je" ik1waycNissing $'sGauSo muchB t25Nowsinisterb who live0)2whoy)!ly&l Shuman(Awhos3#s Df yname isO%is; fX2@familiar toD%Bgoes! Q Cityiprofessional beggadLough in ordeV3avoUzS reg"s tt=#n wax vestas. S&$TAneed%Greetleft-hand side Qre is>1youyaremark#. 5ang wall. Here iAcreaFAQtakes|daily seat, crossA;tiny sto2matv#la"Qas heQa pit spectaclerain of charityZ: the greasy le 3cap (lipavement < ! $wAgfellowX4oncW ever9aof ma+Asacquainm&-*ssurprisR the harvestpoa-#" 2youiir   4rass himyout observsm. A shoChair, a pakN disfigure>Aa horrible scar,, by its contr:5hash3!up-outer edgQhis uFl2$ bulldog c5and a pair ofxpenetrating dark eyes?%% ao1rasg AolouPsall mar! BamidLcommon crowXmendicantsso, too, do<2wit@MRready=a reply to1ApiecRchaffS%beEA"at(JyHO8qrs-by. m *1m wa lear3the A!maIl%e 2 ofnQwe aroSquest6But!" said I. "Wha hn'1don1gle5cgainst Aprim2ClifeI7sen Awalkh a limp; but inx !rewsZ powerfulqwell-nud man. Surelymedical experLV!S, Wat[&at/ne limb is often compTy1 byq!pt strengthothers." "Pray1inu r narrative#  "fa sI Tthe z h0 escortedE cabQoliceRher c ! bsno help9 mir investig&Ts. Iq BartonhQchargN!\   xpremises,&G"fiXN4threw any+! m. One mistakin not ardB]Boone8Ya,1omeV>minutes n 2hav#unP 4his4Rthe E Bfaul!soon remedi rseized earched,6out" Sfoundc$incriminateJ .0Twere,2rue4$ _2his+ shirt-sleeve(he+ang-fin '4V cuty0BnailQexplav"bl2Afrom)bre, adt L w)Q not 4Abefo7End ` e"re|doubtless same sourcB!de#BuousW 2ingI?Mr. 0lt $ Dc!a ra myste 7himN W $?Jto 's assers)ad actub$\# gPBdecl$Cm!mad or dreaming0 awas res, loudly1%` " -f[!lei2remGK_2 inBhopeqthe ebb$idTafforresh cluuAnd it did, they hardly{mud-bank(they haeEfind #'sat=p#unX1 assreceded. And what dR;b think5i2cocketsI cannot imagiS0wSdon'tIDqguess. ENc stuff pennie Shalf-c--421 1270"c. It QN)+5d DswepOy3a Nody is aNUerentI%fierce eddyW3LQwharfu Aouseseemed likely en_weightedF had2whe2str>tA sucked ( T/fBut I under%1allPCwere room. W2the#be dresse(aDalon No, sir, b! f-met specir. SuppoEbaHSs manN%; . ' human eye the deed!#atAhe dE!n?o_2!inOBrike x>^ptell-tale Y! 4 ta;!anB actMrowing it out,4 itu@AoccuQ2himi2swi&not sinkBhas -d timeN ! hNa Se scufflDM?ried to force heuaperhap bhas al b4his confederatA are\Dying% 3notut8Iqbe losto some secret hoJ^,qaccumul 1uit3hisyI1e 9 $co- Qn lay*haz(make surQoat's5# aU #amZz:e1rusUsteps belowar only jd.1clo  |Soliceed." "It sounds feasibl* sWell, wftake itw for wan'a better.F !1tol5,  X Q take{c!buGH not be sh rCeverh !  ]H/3for.,!ase2his<3ADaa quiep? innocent one*  rbpresenwquestio #vesolved--J  I42hap3,m.$reBis W.x7Cto d9d aance-- 23all, 1 a !iokWIq"ss=+@"ny1within mym| Tookedfirst gl{sso simp3 $yesqed such~dicultisDB(Sherlock5adetail rhis sin6Aseri3+ eventsF7Cwhir6? outskirw3own unti:astraggC%Cleft21ratm<a a country hedg  1sidd 1JusRhe fi%awe dro!&wo! gQere alights stlimmered dWe are= %7Leea0,rion. "Wfq touch;NaEnglis/cin our:,'n Middlesex,ging over !gl)aSurreyp" e2in Kent. SeDB amo; trees? ThaG<ISlamp sit|ase anx7Bears ,o" ^?, caught qlink ofhorse's feet"qBut why1you s<e>Baker Street?" I ask C "B are many<$ie"be &!ou)+,e.- most kin!utwAroomJmy disposa(Qmay r$!ssY,2ill="noq)but a welcome-%G:5rlleagueBTte to mee 4no l%2. Hs are. Whoa 1oa!bd pulld?iMnS largn!stE"0its own gr(A-boy1run!toAhead spring2own[AHolm<1sma8< gravel-]!le< AAs wU[ door flew op#a Tblond88 !opp)Cg@0h cort ofamousse\rde soie1 a 8 of fluffy pink chiffoe+x wrists. Shec3herXHHlY [", V"nd  1oor! 3rai her eagerness,sAly bLiead andj protrudedF Naand parlips, abll?" s bed, "wA4en,/h Qtwo iA,@gQ)#4hop&Bsank8ai 03saw;;qNo good!?"NAeNo badThank God Bthatbcome iUbe weary 1youb{a5dayWeS, Dr.G sb "ofvital use to ~ &Bof m2 !s,a lucky ch 2hase eQfor mbring him basociatlW) I am del_$tofshe, preO: warmly. "You!, KAsureGV Xmy  our arrangem} Ahen iBonsi?wj2hasEso 0C#usMy dear madamAI, "an old campaigneryif I were not I can Awellno apology is ne-#If2$U any.4ce, !too C DVbe indeed happzE!Mr Z DQady ae0:d a well-lit dining-)4Ub a3supper had BlaidJQ"I sh< Amuch9kRne orB Ss, toCI bef ie5e answCs, madam!Do84my feelings.ysterical, normn!ai2. I y\1heaBr re8val opinIU"atIr-|hearts,Rsis aliv( (qembarraf8d. "Frankly, now!repeated9 -1rug5A ke[qdown atd leaned back in a basket-chair.|_Q, I d3You h%deCI do+xMurdereqn't say2. P5/A}G1day6#he e#thIhOn Mon$en,+4 , 9"beoq how i% Q  received a lett)6z%o-| k/4outEc hQ gal5 qWhat!" v.$ar!Ye}r !smA, hoL6 up slip of paper QMay I^He snatche bfrom hJhX{ #mo + h\Cw ovr 5andL/ it intently. I1lefCbs gazi0iC !erq envelRacoarseLSstamp_ Gravesendt#-!1dat,Wday, or rathe$] Bay .^" i?anger is!Bu @ f 'eUnlesseAa cl9forgery to pu  wrong sc1The,all, provehI9%$hi] qNo, no;T"s,rvery owQing!" V3blwo~ Bonly,v V{8posbIf so,W0happened{!C"Oh |2not4zurage mKball isFB"hiDR so kDsympathyy2 usIB91uld4 if evil cameROX3day; saw him QQhe cu Dself 2bed `! Cd up the utmosqt{q"ha@!Do $Cat IS+arespon dsuch b3  < !sei]3!noknvk2 imTon ofw# qUmore tN!theRL%lu5n analytical reasonerK$is ei8ls strong =.];cqcorrobo BviewFH$ ,1ablASwrite!s,V main away c 3you2%Y!unaH9# hno remarks2 le(dN/"we0Apris$ Zhim iD8dmuch sKW&RwindoX-$YeOT<:$a!ca{l1H" He only, as$,n inartiIESe cryHyA~H"lp\!t- He waved4 !BubG_<7. Aaf7B unI&ed.3youPc a throw up` T Cback>bHe dis3(ed.EfCleap7.[iBusee any1@oZ&km &is24manbhH7the+7 t1fooy+rTQuite so-afar asc[ is ordinary1'oXAithos collar#ie. I distin Bs ba1! ae36Riew '"!eifathomedf5r cdH >Bdatabinsufficient.)sas soon|/mnow prepa>1for2ll-%krtook of1coaer waistm-eput on1blu2!-gwandered abougcollecting pillows=:(drcushion! ^1ofa1armCs. W^Qse heH1tru(aW6 E=#an !hehe cross-legg an oun#75sha P:<! ia nr him. I(2dimh   , an old briar pipe betwcgs^yes fixed vacanCocFcorngSceiliV]smoke curlC*qm, silrmotionl"|!shq! -set aquiline features. So +2$I droppedsto slee$+so he sat wh  Md)Ewakec+I-Dummer sunAinto#aapartm[2Thehwas still s5#;%edVz was full" d8*C haz1!2heaI Dpreviousi.OTAwake7?($ GֺDor a}5 dr$"C W"Then dress. No o{~Astiri2yetIi&sB-boyw the trap out." He j # stwinkleh^ mS(0#n Asomb6ink(RA "I (.my watch 1n(1*,twenty-fiveQ7$ pF.hardly '#sreturne"2the$+B boy1put~ b horse-BI waHFtesttheory of min'1 o! (FB. "IJy,]n W54oneEmost= Q foolREuropO e_" h !kiPere to ChRCrossYvA kethe affair now3AndVis itA, smMCpQ bathred. "Oh, yes,h2jok"he1>1inuW#!myk of incredulitycjust bee52d_ 6!go|is Gladstone bag. Come on, my boy;ee whetheill not fitMBlock8WYxour way,1G 1etl  k!ouoebrightsunshineRCroad% 1ors b trap qhalf-cl.!wa, Ahead cboth "inaway we da d.e London Road. AQ++r carts !B, beqin vegesmetropolisF1lin, villas onO Bside`ac /rless as2 ci\sa dreamQt hasD2 in 6s a@-5casrq, flicB6(!rs,Ua gallopBconf+bas bliCSa mol iBbett Elearn wisdom l38n jrbat allDIn tearliest risers1>1gin "tomasleepik3romcvawe dro8Brougoq3sbSurrey9Ed. Pass)Waterloo B;2 we red over_RriverCdash Wellington+ wheeled sharpl;r>Xqourselv9C Bow@,. w`$Bll 1+4bwo conRsGdoor salutede 'them hel>5w's head:o]led us inWho is on duty?"#?2rad7I"Ah,ahow arA?" A?k,Q! on Qal ha5e stone-fla(passage,%#peaked cap# frogged jacketCwishe a quiet with you(." T, Mr.R Step)"mym vM"!a+! Re-lik a huge ledger aa telephone proj R wall7 o<1satQ$rs deskWhat can&$2for!?" Ix"edWBbeggarman, Boone--th!who was charoJ?vconcern0{)!ofSNeville St. Clair,0=1s bt@#nd remandC1fureinquir2Q"So I"&dp"hiScellswRIs he$%aOh, he&f 'cUhe isWMSDirtyG%YeO!do8/a hO"fa.ack as a t@ $'sn 2onc14mA se3p%"a Jr prison bath;g Syou 3would agreeH)$ i_AI sh/Rto seCmuch1;6you2easily done+ 2waycan leave0Sr bagM> AI'll Kgood\q please "5a opened a barred.!pa[. 01 st)9s)r whitewscorrido!!a !of\Ceach!Th$rdVS," saL7. "Here it is!" Hrly shot(ta panel+py)}^/tglancedH"The. " $weN 1 pu/rgratingSer laq2towards us/q#a breatbslowlybheavilHNw- iddle-sized RcoarsbaR !bez~!ca1$0irt protrudF4(i tattered coa5he liber6k0W1e tm% 3I sDh2ght|3man peeled off#rk8 tree. G*"asU1 brIAint!!vP'c horrithad sea~1 wisted liIS1had  2sne1the ! A twitch X1angC,: %]#upB bed a pale, sad-faced, refined-f S-hairsmooth-skinned, rubb/%.!ta[ 2ithy bewilder&nly reali?#thR5qhe broko a scream0Uthrew wdPGheavens!" criinspector, "it i1deeI4XDman.2himXBhotograpX ' cthe reckless }S who abandonsS,A1s dNQy. "BC$so he. "And pray what am I * With makingR a-- Oh,6x can't beS that unBtheya 6of eBsuicWD it b a griN?  BsTyears! 2buth)areallyw c cake.uf 9d obvio'no crime q commit1hat@creforeqillegal Uetain ENR|0g+ i"  )dT1truyour wif t1not&rwife; ib",";)qer. "G䐃lp me, I#no&$them ash!Q ir father. My God! Wn@ ~!be 4him !co3V 2ay,}#execution,4*left my miserablJ as a family+3y )Airst5ZBever} my story2qa schoolmastt ChesterfieldGre I7nWllent educV. I trave Qyouth5 p!ge!alR%2camaporterr#n:4#"apbLondonV1day52edi+`Bseri<darticljsbegging(( xand I volunteerb Qsupplh m]!re9oint fromfall my%s 5tedonly by trying as an amateu=b!geS fact0'to basesa. WhenLActordcourse, learned  nDs ofu"2had$AfamoQgreeni=A forQskillook advantag@attainment/pX"myW~"tomyself as piti%as I made a! !ixfG!myn Qtwist|Qhe ai1a -R slipjCEesh-)!plN !a g 1ead p "an bpriate+","aZUFbusiness city, ostensib)ak%q-seller&L"b. For hours I plied my tradxIae sumsNQmoney20MB<4any)%Cs of#hL6700|byear--6is my average takings--bu"d `efw&m9$ 7Balsosbfacili!reI3e, mproved by pract "ndrme quit rcognise\`#ac a. AllTAa st3of XZA, vaby silver, po niaA badUBfailEtake.()grew richermore ambitious,$ "Z Q,Qr]2marJa2anyone hGa suspicR& real occupation 2deaO1. Se-3whaLast MondCn 1forD1day2was u "myVZa above+2D denq< $6GBw, !ho=aK%F5,n!mySstand RtreetU her eyes fixed ful=66! c*$ , m}2cov a, rushrconfida4, entreated5!prcfrom C!upNQheardHvoicY 3shernot ascend. Swiftly Ioff my clothes, pu W!os a!!ig ig. Even aA's k not pierce so compleBsn!!ocĉdv Cther1 be!arE^*3tha  ccbetrayMe1 cow, reO by my violencpmall cutQinfli1;smorninge BI se"y 2]5swas weLI zRjust 8e !Sto it@!th7qther ba_2I cj! m(\JQhurle!&Cin=the ThamxEhaveQ$atm paF$z'!up! a few minutes"?1, rjD, I[8Ws relief:Binst M%identified ascSas aro!asD$mI !2elsme to explain. II/determin1pre  2 as 51 hmy prefer5for=%face. Know Iould be te9Ry anxI slipped;rP!ndi"idB# >qgy5no M]0 cgether aMD scrawl,,1ing she had no03PCfear!Th"tebreacheKy3day|. "Good  she must& !!"0Tted this B AB, "3can tunderst= FZcpost a`>Q unob5qd. Prob,nsome sailor custom his, who forgot all~ !it:Hdaysgjwas itNQ, nod9vingly; "no doubt of it A3youbeen prosecutQT?}Many times{lw\2ineK,"ItRstop [0ehoweveB. "I;bo husht#up\b1morFHugh BooLesworn itmost solemn oath(1canq"InAcase2inkrit is p%no)AstepdIAy beRnb)3are WnAcome4! R+`w,d !mu2debFB youV "clWh1ishxaew how9 your resultIu4oneRY1, "# 'bfive 0s!su %9hink, WatsoSFqat if =/!ivmqBaker S Vj!inHbreakfas! VII. THE ADVENTURE OFBLUE CARBUNCLE 1A >7second BChristmas,~1ten!of{"ima bcompli s]j2lou%%|1ofa8 purple: k; pipe-rack |Qright2liQcrump8tpapers,K !thIs$weu "cr !inral places. A lena forceps lyq!eac hair suggesh Qe hatFb~#2spe&namanner2the# 1exakn#io0tengagedCI; "R I interrupt you!No aeaam gla"a אS whom,discuss & Tg6.perfectly trivial one"--he je(his thumbRe dirŏold hat--"b rpoints in n5$it!re entirely devo 8qnd evenqinstruc"s;g | 1armQwarmeEhandEI!li 1re,a sharp frod set inY cre thi !ic[EQstals/si!,"Nk)Q, "thxBhomeit looks,_Dh?qme deadriory linkBit--r3luee(Bguid>Bmmystery Z e punish "of*6Rcrimey"No, no. !]" saiaq, laugh S"Only9Pwhimsicalr1incv Dhapp'yN1 four million human sAjostaeach o <2spa?: square milEmcx#re " =aa swarx"it&ryCcomb1 ofltnAexpe0!tozCnmsZrproblemAbe  CntedTstrik ubizarreG# criminal. We qalreadyaexperi% of such. "Sot%I;,last six%IRe add m* #rem1freQany ?$ Precisely. bAlludlmy attemp| "rethe Irene Adler  9 of Miss Mary SutherlO"2 adventur ((%3  o#isP FfallX!sanocent category. You"SPeter wmissionair 3YesAIt i4himis trophy belong,Uhis hG4, h it. Its owncAunkn\, !it b!edycock bun intellectub. And,<2, aRow it%7q It arrYeupon  1ccompan (h" f-$se5is,q, roastvJD5 of's fire !are 3se:VTfour 5on  ,Qy ,chonest~D reG!esmall jollifi"4was#!43war6-Tottenham Court Road. Ihim he saw, i3asl  tallish man, wal0"a &Q stagPwand carryp white goose slu$h6his&b As he4 e# of Goodge s, a rowq+&ou!stranger`.1kno+Q3vl 1kno !of," - #onhe raisedstick to defend+and, swiK H3head, sma 3hopR behiH4. !ru11for!to(41ect.= assailants;B, sh@ qving brK B# d1an :qial-loopq in uni "rul W5FPF2hisQ, too4his heels,Avania labyrintos2lie &of( 3TheN "flBthe (:{zh1lef4bV& bQli"Qspoilxuvictory "hatehI" ahunimpeachablepXWhich su QQstore1Rtheiro{AliesV#. #ru'For Mr;nry Baker'""prC%<witials 'H. B.' ulegiblenr lining,%1 [ Qthous| "ofubhundre< \cJSours, not easy toS lost*t7 q U them!aten, didEd,D"He :round both2and@ J8 kI RmalleBblem!of1res tme. ThCwe r/.%]!rnJAW Asign!atAspitdo Jwould beX! Bit 6 be eate out unnecessary delayfinder hasMq it ofZ/qto fulfe ultimate destiny of'se, whi'M#tam f q gentle Aho 7hisTdinneRDid hadvertiseTT#94cluA3you2 l 1is in>"OnCmuchDCcan deducAFH _ kSBut y:j%. R@ayou ga *Dold c feltkOP contrary51 se&rLtfail, 6Bason1 Dc1 oo timid in drawing your inferenc5rtell meUF<xbQHe pi Qit up2gaz ithe peculiar introspectUfashi was characteriG 2. "phU lessb!ivM:"b7# <"ewXrWsTSch re7)Beast>&song bal ,!il3TC"`1ghl 3! ip/46 cthe fq1it,z| feTafairlyi-to-doClast*6%, WhjDnow fallen BevilQ He %1oreB;"ha 4n formerly,ing to asal retrogr(#ak**Aecli t fortunes,Kindicate^influencodrink, at _,R3him)may accountS&2fac^" his wif/Bceaslove himx H5 Qdegreh self-respect$ d, disregarmy remonstrance. Cgho leads a sedentar=, goes ouL/2, ibof tra G, is middle-dgrizzl~A$J2had$2ithL1fewR4Aanoiith lime-crea$es"he more patent factSto be$ dat. Also, by[Bway,9zC\*b gas laid RX%ou You are certainlyo ,%No#least. It nhhen I give6TthesePbare unQo seeAtheyattained? ">bstupidING amo%o2exaA1how 3youk !as FvY4swe=A cla$Q3. IC ov?C)m02ridjhis noset a quescubic capaa3Rhe; "B!9$so<\r brain<2havSin it T1Bthen!"T"at82 ol! se flat brims cur2aedge m2n0Ais aS bbest q a8Q ban4!riBAsilkV`?cellent l32. I$)q affor buy so expensivejb"ha'4ahat siDthenassuredly gon* Sworldl2\is clear enough,"3how=r eqlaughed(;t?J dV]s)Qittle Dloop .+never sol!ha;72ord; $neaoa1 am(ofs1entCHU way9 aprecauLQagainpLQwe seB$ate not troubl~replace itR0 ! b proof\weakening3e. ! 1 hhe has endeavourconceals*n elt by dauC 0 Tnot OCYour^  sly plausible,5The% `9is qis hair4#i2  2rec>#c6Wfuses ,#llxa close4"!Q low=rPnL1TheZsloses anumber of hair-ends,7An cu scissorsmq barberZry all ,adhesive#thPiBodouw Bdust)  he gritty, grey dust\luffy brown (1hou:1shoGhung up indoors moe2tim!leQ markmoistureainside]Dposi  wearer perspired bfreelyC]3for>2 in "Buawife--Ua Aat sd "ha}qbrushed,weeks. W !se 2, m$ :,'s accum2 ofByour%Qand  wife allows you to go oue 1suc1tatRCshall fear32you ?2 une 3ate!7Bq!'s$Q K1tbachelo,qNay, he #brtBhomeRoose WHeace-offer: wife. Reme2the  g2Youan answer touow on earth doFQdeduc 1 garQnot l=  ?!1Oneow stain, or even two,d-come by chanc " nNJ. +7Vcan b,\ b !Qfrequ!aontactt A bu--walks upstairs at nm  n(hT5BguttTcandl ,. AnyhowT got~Bs from a gas-jet. Areusatisfi  i  Qingena0""I, ting; "bze, as Bjustz i~U03rim"Atted no harm .G!saQe losa,#be a wastenergy.Q had opened his mouth&Bply,G8oor flew open" #, ksartment21"fl!Scheek^_L  ho is dazedT]7S, Mr.'! Asir!Sgaspe@2Eh?Qof itQn? Ha>!ea MSand f7off throughQkitchhcndow?"k$LBrounaLAsofabet a fairerh man's exciO02ace3See0ssir! Sexg8fis crop!" He held outXtdisplay 6ent@%palm a brilliant,cintilla_#fTtone,":an a bea2sizc^# &b purit(Aradi{%itHdA likyelectric :  dŸo,!of*-asat upP a whistle. "By Jove,!q he, "~ %easure trovUeed. U*O Qyou Agot?"A diamond? A preciousEq. It cu+to glassAough2wer "It's mo$rSemNjKbCountemMorcar'scarbuncle!" IhP) so. I ou3Io'rits sizI1seeShat I$1rea Cment@iThe Times{ day lately8Qis abL+ely uniqu" aits va5Qan on conjectureir#7e&10> B noin a twentieth$ market pricqA  pounds! Great Lorqqmercy!" 8( plumpe%%1a c# <%ta oW4'b of usHt6I =sentimental co trationsRbackg$in o"to1 bhalf h/tune if she Xbut A*$ge'tlost, if I r a,;$ Hotel Cosmopolitan," I ", on Dec1 22nd, justV D ago. John Horner, a plumber'b accusQU4aabstran,;Ulady's jewel-case#2%ce1him tso strof  sds been re;the Assizes.Esome# *1her cbeliev\drummag%his news2 glancing ov e dates, o1at @he smooth?/'t, doub;2ver&ing paragraph:4  Jewel RobberyI 26,1 b" Cchar22nd inst., g Fthe avaluable gem5ne~. James Rydaupper-attendaBotel, gaGs80!Teffec Dshow1 upy1he Ding-room)4day(rx# i# R sole second bar=!grk=as loose.qad remt D1but(Qfinalqen calsway. On $Wu@X8had]>,<QureaudBbeen4\   morocco caske!"it6Rwards=?!pi 1was accusto Akeep7Rjewelqlying empty% btable.MaA7the alarmx$rr5ae same "bue!no5Ta eithaoW*oNFG. Catherine Cusack, mUo? r, depos URheardQ's crdismay on discov&*"=ing Aroom &Uere s&$ described-;witness. IW;, B divisionaQrresto, qstrugglanticallBprot4his0 /'terms. EvAprev aconvicsSfor - been givenf bisonermagistrate refto deal summarilyRffenc* %it 6Asign0intense emoti1uri$Se pro7$s, faint$conclusion andacarrieH of courHum! So mucheaolice-(# 1ght<&Q, tof! a<aper. "TheBbfor usl!o w Q seq 44ing!ri-at one end]BcropHiM0'QotherB$V see$4our  suddenly assumed a7!e importantx5les1t aA(. l;H  #Mr. Henry ,gentleman'ba-** w$s4_ AboreA. So"wePQset #3lvepBseri_rto find'is#as# 2ingy #s i(Y8. To doI,#trimplest means firs'$5 lie undoubtedz$; an %in*#As. IH"is&Q #re$"to`*" "Whatyou say?Give me a pencilAt!liU1NowQn: 'F0a be corn( 2HSa)=.EFP.B canH $bby appqat 6:30{= at 221B,Cz4.' Bclea Uconci."V #Buhe see itAWell2is -oQs, si|to a poor man.2 lo{q a heav<: #wal!sc"byj%2mis2 inL@!owTK#qapproac2l h55 ofwQbut fF. Cmustbitterly regretZ>nCulsebcaused7bo drop2bir !"n,{b{BnameMLlfr=M"wh$=36adirect \Tto i#, run down Bing agency andQis putV L"In2Oh,M e Globe, Star, Pall Mall, St S's, EYNews, Standard, Echo2anyas that,NrC.v2Ver(". ui/vAh, yesI}tone. ThankZ$1And(6ay,s52buyA-syour way+and leave it h-"meD!onm%w 3in e l4 ontfamily is,Adevo2Whe A had"'&Q took 6 "it!stC$hYonny ,ahe. "JQ1seeQit gli'zparkles. O s)is a nucle?]a focu crime. Every goodiAy,$vil's pet baits. ]Fre largeNjewels eUfacet may stanQa bloodkMpRt yety1old`4was  2banUqmoy RivO southern Chinais remarkableD  H |V, sav Ais in shade 1Laruby rt34its]$ g>a sinist9AtorytW-C twoHLs, a vitriol-throwing, a suicidvz/6 !ie#3ughQ for1sakz 'forty-grain wei crystallised charcoal. WhoLkHso pretty a toy!bsurveyor,3 g1andprison? I'll lock iTin myh1boxQ)o!toEr to say"wei6 !Do23man  tM0not tell$tdTcimagin.VK  ,N1anyb to do F34tteAIt idFmore likel Qis antY< &nol@4bir9Ahe b1arr"wa>x2blyQif it2B madhqsolid geThat, 1 determine by3 test if :our 1Ands)!No6uat case{6*myf ,"  4ack`Ahourmh"edIr71lik#se 1oluTof soiq a busiG"q. I dinvTsevena"woodcock, I j" B b-%in!%.urences,12I & rto ask :#ud%erI="de7 Aat a,a!af+alf-past six6Q1 my61in Y Q once1. A e8% I saw a tall 2a Scotch1et }ra coat was buttonedoJ chin wai1outfA brcsemicircleL44sthe fan*bJust aCrriv}zRpened<"weRshown!geBto ' room. ":|FRhe, r Afrom1arm greeting3visc2DeasyjBgeni:8which he mso readi. "Pray takeUr" bRfire, 4ccold nnd I obser qcircula_#isbadaptebsummerQfor wIF. Ahwy$S jus"$ts Ip y 2Mr.n!?"!Ye "r,8is &myzD!Hew(5eZulders, a mas-3heaa broad,/#ig1e, sloping !a Aed bEof 72(r. A touBrAnosevq",9! s tremor of,2extYLhand, re,dsurmisP&1hab His rusty!Rrock-qup in C5llam"upC his lank wrists protrudedA2outprcuff orpvAspokCa sf&cccato V7t, choosBBwordZC car g ce imp5 generallyF!maAlear,E Btter2hadill-usag2han?0"We>>sS-, "because we50yRto se x X<$iv9 address. I am$"lo !knQw why["di5OurBa8#hamefaced_&. "ShillingsQnot so plentiful#me5ydAwere5t >0Imno doubtdang of4Cwho assaulted me Aff @] c qo spenddyrhopelessmpt at #mPAnatuZ 3abowAbird1wer!pevto eatx 2To 8!" | Brose3"in cexcite*r&@1 us= !an!ha Bnot 'o. But I presume goose upoasideboCFis s{eQPbfresh,aQanswe r purpose eq_CwellO2 "C&ed5ca sigh>Blief4stiReathers, legs, croBso o>1own+q, so ifbawish--"Th{Tburst#eheartyMaThey m be useful8CI1lic[ F2 goo} 2one>?SsomewCa fowl fancierIseldom seebetter grown1""C"lyb" saidd AriseQ tuck| s newly gained property uD r<>%e who -lpha InnKVthe Museum--wAv1fou"d#1 it <2dayi DstanFQyear Yhost, WindigatT1namtyQstitut4 club, b Z, onZ& of somep%Qevery0Zqeach to%&aeive a; at Christmas. MyC4duly pai ras fami}@+/Z:a is fitted n!&to my years nor my gravity." With a comical pompositT Vhe bowed[!ly;3othstrode offFrhis way s bHolmesh"clp!K"oor behind>jAcquite 1 he$s whatever)n/dhungry Not particularly#"T!3"ug hat we turn our dinnerCsupp7follow up{clue whilo>ABy aZ2ans}I Aa bi  so we drewbur uls."nd wrapped cravats1our4bats. Ob stars1shiN 1colz*ccess sk"1thesX ssers-by blew out /Rsmokeso many pistol shor footfalls raLa cris1nd yeHQswung2ugh(octors' quart&sWimpole, HarleyZoEdWigmor. Oxford3aa pin Bloomsburyx &small public-house +H_ Nruns down Holborn.Wapushed+>JApriv5a!rdt two glasseAbeer Bruddy-facedate-aprlandlordYU3eer( bif it is as!as  geese," said heM"Mya!" Theseemed surpr3Yes. I was speaZPAonlyIaago to^ M}%o<Q 8xD5Ah!"ee=syou seeQthem'=QIndeeVc1ose*|iIItwo dozen a salesCovent Garden[1? IAm. Wx6wasBreckinridg)#amK"Ah! I don'tQRhim. There'ood health,)aprospe1!r q. Good-5Now-f#d,Qing uBAh as we caa Arost. "Rememberi though }so homely a J$\ An, w-v ]A T#!ly3' penal servitudee~1n eh1ish v'1. IMQpossiXIquiry may but confir{guilt; butany caseA linAinvestig?2hasmissed by&*a singular ch @$cBands. Let us 61 it":end. Factsu quick march!WdK .,AeEndell& a zigzaAslum ! M12. O2=t> 1thec9 ofB i}Lroprietor a horsey-loo3man ^2ace rim side-whisk !asping a boAput ue shutt6 e`!#. e 6TheDnoddBhot a questi  at my companionGQ"Sold"of,<&,",tV bare slabSmarblC"Lefive hund@t-morrowR.0Q"That8l!om!CM1the:Sflare;!Ahbrecomm 'cWho by5ThePlo -Oh, yes;$Qnt hib@Aoupl<,AFine sU, too. Now w qdid youAthemxTR qw provoke&!cof ang;$'1, m }his head coa s akimbo, "RaBdrivr? Let'sSrit stra 3now6 enough.p z2whoD2you"upzCWellD2n't@you. So now1"Oh !ma of no import= 2why8bawarm o`Euch a triflWarm! You'0Aas w/Qmaybe42you qas pest" !as!en I pay$ uB forw#d S1Aan eCffH it's 'W1he l!?'D'Who3 sZ#6 to&)AtakeN'On@"ey2the: zworld, to heaLb fussE!is qW#)no connecJ1ithq*Rpeopl'rbeen m %ie'>1lessly. "I AtellN eEoff,2all I'm always readback my opinion onbafowls,a fiver on i(Q I atd vS bredWnq've losrT: Atown=S," sn bI <4kinsRI say P6"D'1inkCmoreS 8I{!vel!m ?* a nipper? I |?&osuat wen W You'll nlqpersuad,4thai"WiA bet ;merely taoByoura i BI amuMb I'llza sovereig?3you8Ato tQAyou t$o be obstinat \chuckled grimrBring mbooks, BillR2 hGpDboy 71rouBthin volumK a great greasy-baone, layR1hemv Sbenea AhangBlamp3Now Mr. CockAn1" s4s, "I thp"Rhat I$ ! 6fore I finisR'll find:Bis p5one}^my shop. Y little book   !isk 1olk4 whom I buy. AQsee? nC Ais pe>e$Bfolkc7 QumberEtc!irL s9l:i big ledger. $Ain r kJdis a "my!rsO , look at3Qthird"Q reaQ\"O$Oakshott, 117, Brixton Road--249,"VQs Bturn{$uph:dicated. "HeX are, 'Mrs. R, eggdoultry 1r.'w"vh\Bast entr ' =. Twenty-fJ at 7s. 6dZ'Th-Qunder'h B'c, at 12saPo say now? !lo deeply chagrinIdrewbfrom iAcketCAthre-8Alab, 2wayVrthe ai#whose disgustoo deep#qords. A1yar !f he stoppeda lamp-poshearty, noiseless ! w< bculiarԏ%> y|$1ith7C1ker `"cuzthe 'Pink 'un' "i)a#CHD can1draz)8betf "I dareK+1if put 100 poundm front of him,j3man)#no*given me complete informL! w #n m#mM*!he#doon a wager7u1, I`your quew5 Dpoin'=s*d is whd'w gR "is)-2 toO, or<Rreser 6forRclearawhat surly felc$?#ars-s ourselveo51anx:  vI  Hb/s l8cut short`loud hubbubbroke out 2Ajust. Turning"we)# 2rat  jG|)Rof y0Dlighwas thrownz1swiHle 3 u f, fram&do&Bstal4>B shQ hsts fierck3 crzRfigur 1"I'R d" o a-)Bshou3I w " $llfUdevil  Vyou comeV eany mo3 1sil 1lk "seQdog a L Qbring 83;0#2her g// it? DidU |1geeA2"NoFoC1minO9same," whineXU% ?   1ask6for She told me>]s' .4 !skKf ProosiaT Qall I$. & bit. Ge4 tis!" HeLIbforwaroS the<er flitted98carknes4"2Ha! 2may3Bus aU'9 to FEsperd. "Co"m(w7#iX!maCs" s." Stri;BscatAknot#4 lounged3bthe fles, my rQ spee,overtook- ! m0d touched himer. He sprang , ,eH v2as-t^!WLd+/r?sLWKathen? !doQwant?M2askA voice.p AYou $qexcuse Ssaid # blandly, "buȋelp overheetM?s1youE/hnow. ~%9b assistance tVWYou? S? Hows2youu3](M-#K is s%my"at# y!Bu} + #isEqM"itD!arkeavouring to tracVHiBwere*by,oI 1 R.(toRn !by!inq 2 to~/WindigateV2 nz;3hisx$#ofMr. Henry Baker' 3"OhBy2thePVa 1hom #to meet," cripN with outstret,rand quia finge !"Ihardly explj how interested c#is<   W hailed a four-wheeler% 1assX4Fe !beyqdiscussn a cosy >Hr)#inOwind-swept mc-place he. "Butjf,Nwe go fart1whoxs Ithe pleasur2ing"ThKdhesitam1xstant. John Robinson" #"edaqlong glHcqNo, no;^breal nusweetlyH% awkward] 6an alias." A flush!wh%6hee:1str!. J!V, "my is James RydA"Precisely so. Head attendant Hotel Cosmopolitan. Pray step 4cabshall soon be abl]"te' W3you P  *man stood2ing =2the;B'with half-fright4hopeful eyesI=2o iS"!su  hX!onBvergtfall or of a cataswvow'1ste#in,*in:#$rback in\ "si+#atStreet. Noasaid dR ourQ, butQhigh,u!R brea>F newclasping&un"ofIands, spokthe nervous tensi&inM!Iecheeri&f?j6q"The fiq%ok|EAasont1 we7cold, Mr.A Pranqbasket-6$ill justj!on&rs1 se!mP O qthen!  a{"bec#f1Yes!."#Orsgoose. ("on, I imagine in -x!--v-4E4bar!BtailXKemotion. u5 GR, "catell me whtLb#toe{zCHereadmost remarkbird it proved. 2wonNsat youn R take:~ in it. It laid an egg iY dead--t+1nni94estAblue< nAseen pB in my museum]2Qstaggd!to|#fe2clu} ntelpiecZ2hisF. aunlock sRA-boxl rheld up@;!sh "ut{*a*6jX,*-qed radic q drawn C, un% to claim a disow"T*"me's up,gHolmes qui!HoIy&befire! Give"Tn arm: , Watson. He's not got bloohto go in4afelony impunity.l dash of brandy. So! Now he3s ar:bhuman. a shrimpc  be sure!ni moment he hadmqand neaVallenR$ Ra tin$s3eekt0 at his accuserT/!alNS link9 s proofs 2I <'y need, sCr1you# tell me. Still,#ma01cleGItup to m[Bcase%Bleteahad heQF"iss!stbU/ Y?y |QE who@Tof it a crackling &--her ladyship's>r-maid. {!the temptsR of  wealth soacquiredtoo much1you cit has'94for 4menk2you9 1ere\very scrupulxqe meansused. It seemsetCthatI#imK$ofLBDavillai `$Y"ew Sman JX aumber,W)aconcern&c2s beforsuspicion, 2!or kc i!do!n?3mad3jobwlady's room--$nBr*e*ZS#--s manageChe SbR  qent forBn`h3leffA%:d Wa, rais`e alarm,ht\is unfortunatm" tS"edathen--'c threw himselfCqthe rugfY!at  's knees. "For God's sake,\!he|Beked 3inkf1! Om! ould break their$;I" "awent w9Z.C! I 2illSq'BwearT'll q on a Bi Oh, don't br jtcourt! For Christ's />G"GetByour!Wstern$w Qto cr:and crawl now,!r!ena is poor t1ae dock^Ra cri"he=.""I92fly>"##. IleavA! R Then3bchargezbst himR4dowJ0rTW"at. And now let ust a truez!! e next act."am63oosMh'd' A3pen2? T&RtruthH"Alies! r only hobsafetyPlapassedStongu'!ar/dlips. hryou itx "pp6sir".  2, i5 "Eat ieQe bes3 mec) Qrat once I^3not^C _police mightd [dsearch m"my0!re2tno plac'the hotel; 7ae safe\ &2out^3f on5com}< for my sister's house. SmFWavQ#rand liv qshe fat;sB3. A !wa#re4rLI me amB1r aQctive; anda\ax/Bsweapdown my faceIEQ Road:@!Qme w8a[/Qwhy Iso pale;I 2herW4I  upset b2O robbery:"n %  2yar smoked a pipz 1ed '$ (eL d a friend1 caAqMaudslehobb=FR has 31timPentonville. One day Tmet %feދNFQthiev!ndeDthey aget ri!they stole. I &heb"to4for) ar two ^sthim; soi!up1indAgo r&on to Kilburn6s2ved3E2him1rnfidencc_rshow meQo turSmoneyB3how m &? ))xqagonies-Ad g!hr!in<3. I !at-+*SseizeeO  waistcoat $|a! (Sw b!oo3!"qwaddlinground my feet< $ ccy headQ!sh=IT"be} ! VdetecqBeverVu_2had'"mew$ 8rc 1pic~ 2her]a !mau3sensO.`:"he&"my| "an%it&qcarry mnn}1 sh[ y4and behind this I droUbirds--a fin*B on%tebarred tail. I caught26apryingyNbill open,#ru_dsaQfar adfingerwQreach;4 gave a gulpQI felqpass aits gullx1ntoAcrop0.screature flapped and`m2out " OWY Rspeak1brute broke loKq fluttaoff among2oth T "'W`@u3you?Bwithbird, Jem?' says s.!"''y rI, 'you syou'd gk\"on.1fee Bst.'6Oh,~, 'we've s7rrs asideyou--Jem's, we calld!'s!birtaover y'Cre'sVb-six mrch makesu|Bliket5- until he chok/ !weyba knifCopenO)My heartRwater Rsign z& * some terrible misu4hadTAd. I*?k' &to'Z{ mW4not:G 1see ) 8!y A*?' I crin!'G odealer'sx.? #+ofQA&uX)!otI !as!'tRme a5ZTchose"Ye;A 1ere N1-taV3one[ A tell them apar#Athencourse I<,"itGrand I rQ as hk s<4feew\#(n 6 h61solmA lo@ Boncem"no\Cword "he2me as to!BtheyHgone. You]dyElvesP. a answ&mebthinks6going mad. Sometim= )(emyselfb2nowF2 a2ief #ou+ !haGQtouch#e2for2 I&m>2racter. GhCilp me! +N convulsive sobbing(u(iIBhand+@3 ong silebbrokenO!byJWheavy!Jm%d tapping of &'u&R-tipsthe edg6a table>r *"op@C doo!GeW| What, sir! Oh, Heavsess you.bNo mor5s. L% aneeded rush, a clh!3upo astairs2 baa4qrisp ra!of running 'Isp#RAfterR,@EAhandhis clay pipe, "not retained  to supplir deficiencies. IRl#in danger iebUthing; b Bis f0+21#hif,ase must collap]"#osacommut.,. jBJEsa soul. TBgo w>; he is tooi!gh . Send him5aol" !keaB-birlife. Besides=S seasR1for~4ess. Chance has pu zda most singul Ju#"msNSroblegits solution is own rewaXqf you # D,RtouchOell, Doctor, whtbegin  vFB, ind, also@nxchief fLB." VIII. THE ADVENTURE OFSPECKLED BAND OnX)!vemCnotee seventy oddvsA I d,89Gc studiamethodZm[end $, I find" tragic, Qcomic 4arg ; merely strange1non0monplace; fz"or\s he did  x lf~ 1han,4the/#me7P, he refusxassociatCself@ *nyzRch di4tend tow8the unusual"#evfantastic. Of $secases, however, n2anyYq prese#Rst+'d%"ll-known Surrey family qRoylottStoke Mor}3AThe cY:G ;"1dayCDmy g(B%ndqere sharooms as bachelor rBaker SN! I[ .L1m crecord|qa promi4Scy wa/Ca?r time, $veN{ten free<*]month byXAuntiKTdeathn1lad #wh/!plc1wasmn. It is perhaps MLb d facts'!no* lXFarsE widespread rumf 5e Dr. Grimesby0w#Atter8[% B!th7th.QR2ear[oTAprilYfU2'83I woke one IQ to   standing, fully dressed,4kW 3 b =A late risss a rul= B qclock o' >(63rter-pastdlinked up atK5omeRPdEjust4" &4meny"reKi _ Very sorrknock you up !/!t'" 4 lo#1orn/1Mrs. Hudson has+],aretort4on GI onW4#Cis iV--a fN1No; 2ienRseems(qa young%4arrha consider*Astat \]1!ns`1see 1wai 4now~.{A1wheies wander e metropolistis hour0]L sleepy peoplu>their bedh l]T somethingpressing3heyo Qnicatit provn0 -1ing.4[,Rsure,;AolloaOutset. I thought,{NI p%2giv{ h$+"Mzr 3, Inot miss it>6 pno keenerP32in 3ingfessionalN7qin admithe rapid deduc'as swif.Tintuidnd yetM1fouological basi1Aravef4theF )were submittebhim. I#ly%oAbclothe0was ready in !to{#Ampanu!to/ ,1A 3 inytarly veilUo]Hindow, rose91 enAne"Good-Sjmadam,v%Q1/. 8Dw iintimate6and , Dr. Watson,(=7syou can !asV1Q. Ha!LQ gla!sett'fd sens the fire. Pray draw up b4Aorde a a cupw oDffeel"ob,A"thl>! a 7 2not@"R QmakesBEhive$!omX1 a Zi+,ging her se.trequest3Wha0?|fear, Mr.". terror." She7)1herk #@ce spok#we~1sheqBindea pitiable ^Aagit jH#1allnCgreyrestless 5A!osy !hu% animal. He# Sfigurr ;afaof thi7E1but[AhairCshotG BpremBr exB!on2Qwearyhaggard.Cher over with  aquick, -comprehen: > "You mtE9A sooly, bending forwYand pa%6forearm. "W 73set  2, no doub< "co#Qby tr: d, I se-l"qL"NoS,half of a return ticQaalm or left glov(1staw l 1yet "a! drive in a dog-cart, Fccroads,W ?Treach;s.T qdy gave@Bolen0t*Bstar:bewilderQat myk bpanionT is no mystery, m he, smilingAbd arm +"jaGAs sp"ed!muAno l/2han ! fu'sperfectly freshzvehicle s$ Vthrows upwM#waBthenC M S sit !-h !idH+5riv=W`EyourSmay b BcorrCsaid sheq*@AfromZ3sixQed Le-#'$wenty past# Tfirst8o Waterloo. Sir! "BtandWsc!no5er;cgo madocontinues. dve no urn to--none,cwho cares 2me,Hvhe, pooP Qcan bs!aimSheardjA9tHolmes;J"lFarintosh%b help%5the  o2wasKW"!atmar addr?!don Tv3youb, tooat least$ a|"ugxd}DR1sur&s me? At  7of my power2warservices7Cin a~cor six%Rbe me. control_0own incoyx"ue ungrateful."  ae his desk and, unloc2it,~M!oup6Bmallf@c-book,he consul a. "Ah !IJCase;& E3van opal tiara{ 6E k!ti %4sayE {pQ happ]bdevote 1sam91e tzr! a&i1Q >%Bto m  !rqliberty=*defray waexpensa!to2imea suitG bes}0RI begyou will lafore us every(m+Slp us8*Winionb"Alas!" replied our visitor, "w?qy horroEmy situa1liepthe factyG sso vagu my suspicions depend so entire45:sseem trivialT,{Qeven I o7aothers9 ?Alook>and advic7'"ks6ytell him*ait asRfanciMa? KHAdoes0Usay s Qcan 1#it %isv  $Savert `(>#d  zme Q3qmanifol2cke qe human t !ay$se@+Ato w-2mid !enDss m all attention Helen Ston81nd =blivingqmy stepfI=bsurviv!onXldest Saxon EnglandH ,( western bBof q noddedChead: Dfami4CorthIHampwFe last centuryfour succesn Rheirs3x dissolute1wasq disposWmily ruin Bually completua gambl6$ Cthe RegencyC2was H r2acrgTtwo-hundred-year-olde7elf crushed u mortgage. Ast s;a dragg|t,existenc4re, d` aristocratic pauperS his\n 4"he8y9"toD!ndSs, ob4!an advancea relativa enab take a medepI*n" to Calcutta, w!byal skillD 1orcW$$, 1bliQpracticeAa fi%1ang5P caused by some robberie2hadperpetrate 2used0Qhis nR butl death and narrowly escaped a capit6gnC. AsR , he sufffa 2 te"imnd aftese 4 nd disapzbed manAWhen{abIndia ,v%Amy mn,LHJwidow of Major-GeneralBengal Artillery. 1QJuliaIX4twi"weonly two years   a's re- 1Shea0 CideruS3W--notB1000--1s auD'1thi"/a bequ~N@owe residBahim, s!vi%'nnual sum! b2to each of$ t1 of aortly 8+ 6t died--!ki Qeightqs ago i] railway accident near Crewe.`then abandol attempts to %in in London$qtook usBliveB ancestral8 at!  D6B hadL4was=qfor all=!wa C(Wthere;Oαobstacle to2hY(SVBut abchangeAover3  x1tim:QnsteaB!ma2Fs !exRCisitneighbour o#athbeen overjoySTsee a?  E4-tBseat5hutRup inMcseldomuto indulgiaferociBsquarrelswhoeverI RcrossTath. Violenctemper approR(to maniahereditary3men" ,ia's cas0had, I believe,P intensifi2hisnropics. A sof disgraceful brawl'!k o,#of  police-court, /"at$he#Kze&Tillagthe folks w2fly $s Sh}0qof immstrength?"ab/ Sly unglq-ALast he hurleRlocal!sm(ver a parapet a streamxlA eby pay<'(e F1gat22oge 3hatK!to avert  public exposure2chad no 2all tkndering gipsies|#heu"gi*se vagabonds leavbencampEew  !brL A-covbl &$rec7%l accept in< s3ity)ir tents, @az3timCcon end)qs a pa.D)2fornQich a"nt\! spondent}O"moU cheetahaa babo cdwanderover hisV saare febc,# CQrs al*as much as!Ycimagin wis?S poorT@6 # _Vgreat !inMlives. No servantT#st3 uo 1for["ng!we|!CworkY] qwas buW!rtU!imther dea'yeMahad al.  begun to whitenas mine hasE"Youbis deaS%*qed just!6 #agP1ish[Sspeak82canA&1  4b+Rescri Ekelye#nyAour (A"agI 1pos 1. WFan aunt,'s maiden sist iss Honoria Westphaild H 'we were occa"'ly| pay shortb !isW%B * |#me* a half-pay majQmarino whom srengaged6A lea" 'Bment{4ste e!3 o no objecN.!toZ  dQfortn( !of C dayh]Bfixeg"ed(/e  occurredCs depriv14   i }uleaning Rhis c1itheyes clos head sun aa cush1but%pe lids nowQ2d a :. "Prb preci#to detailsLI'easy for mey "soQeveryc*;dreadful !isARed in8amemory q manor-B is,chave b said,''2old6one wing i!inZ)q3R bed,"in2-Care WS flooL!si -81 bo(?Qe cen Tblockbuilding4x (is '3Bseco'hird my own-rMn(ion betweem'1theC(R out|orridor. Do I mak$T plaiPN#so!ThtDdowsathree 2q^ )at fatal qhad gon]1hisLs early,( we knew dRretir3res}+Qmk" 1Q smeln@TTcigar Rustom3mokqher roo{rereforef1ine*rgNQe satQ.#ch#BabouV . At eleven2shei'#to \ut she p*eO6k looked back'=Kme, Helen,' said she, 'you ever4Jլ,0c0aight?'zd'NeverW"I. z Cnot v52stl'!rself, inOTsleepdCK{2not4why!Be 32few.D,&re( low, clear .xa2er,z0RQ awak6me.2Qtell 2 itfrom--perhap&0Cnext{ xI@_z+! 1askv awhethe4it.$o,TIt must b&wretchedP #n$LVTskely. A Rif it lawn, I wo X"diqhear it "AhIoA mor!!vi@+(anTA=i&of consequencezany rate.' S;iled back at me, !my]a few moments03r I7her key tur,fkR!"I(",". "Was ir to lockQselve"at?WAdsAnd whyu h2I meVx!at doctor kep?bheetah < 5 noDof security unless, 3doo lockedQuite so. Tproce ! ?olMk. A vagueimpending misfortune impress 5. MF?%will recollect, CtwinyZ(how subtle are?Dlink]bind two soulbare soS Aied.]Sas a wildR wind@Ahowling outsidcthe ra1bea+1&Qplash:s. SuddenmdhubbubQgale,bre burP ebscream4)woman. I knew ^lmt2's gt I spraK2my 1rap shawl roundCand J~t#AAs I! *ت[Ta low3, sNnCa cl,-Qsound if a maswmetal had fallenrran dowqpassage{( k$#ed\revolved slAupon;hinges. I)rat it "-stricken,D"knZ14wasbo issuq it. BymS-lampjB:=r opening-AblanOwith terrorAhandpN,b helpTwholef-swaying to fro likeof a drunkard.p!to,3andm1smy armsZ2her_aM" 5WkneesB1way}Qshe fCw . She writhe6 Aho i/ble painejBlimb $ j ly convulsed. Att !sh not recogniQs I b  1r s,  shrieked out a30never forget, 'OhBGod!W !8Qband!speckled"' c,was something elsoRshe 0Qfain +he stabb73herYB S airC diry#'sa 1but4R4eshm%QseizeCchokAwordpT1cal[for #m met him hast!  ssing-gown. We .wq's sideCSsciouthough hJred brandyher thro6d sent  !aifmefforts were in v`AsankB#diRout hcA$reO< nF+#Suv=} 1 en0!loSisterc3One i a, "are Dsure!hisAnd 2licb? CoulQswear+"t?T>"asO1unt-oner askt\py#is"Drongi(  9Gyet,$QcrashMd"regof an #VI may{ have been deceiv 3Was Z ,#ed!Noh:iB -'@"her right :/#waR7%1chaRstumpDCmatcSDleftC-boxAShowastruck+-1ght tBwhen.alarm took place. is importany*conclusions d'scome toRHe inpa7=S withWAcare% 7 conduct ;rnotorio*a "un!ato fin satisfactory cau4Qdeath evidence showedO2dooQabeen fK<1ners Sndows4 b by old-faed shutt)ith broad iron bars$TV !edy 3allsBcare%s9, !shf qv l R flooring?also thoroughly examin.same result.chimney is wide#isKq up by |large staples" c,jn"alQben sheQer end. *Fqno mark 3any$4"ceD h;3HowTpoiso.T5srv(qWhat dovrthis un #atA!!of|IG#ie1shea#c of pu7e,QshockO!itDW76her;e +re CtimeY]7a<2{AxeA1did,!gaRis al1 toNynd--a \ Sometimes !meZ.tjrld talk(!reliriumvFH3iR/ave refe"toAband?upeople,[C"se Fk 7the spottedKkerchiefAch s":bm wearu!Sheads"K e8G1 adv $usQHolmeW&oky !who is faa2iedT #ar deep waters," said he; "praya}9yv$1arr-).|'passed sincn"myR#"A la<"aloneli-!anm3. A37ago)Aa deAiend$omaBknow(HBmany&,k!on / 1nou@ 1ask%in U. His>Armitage--PercyEcs 5Mr.!, of Crane6,Reading. My )/p- wSto b2ourhZ!prnATwo w-#ag-drepair.7EQwest  a wallpierced, so!ha!mot: !mb3 P R diedmto sleepb!she slept. I<Cthri-alast 2 8RI lay4 r /fw5I " P7`% AeralS 6="wng!Q!up]2lit Blamp n =Yl5seesroom. Io shaken to go0!d iDso Iq *Son as/ QI sli0down, gotW<w Crown Inn,$isQdrove to_:,!wh-Iiacome oK ais mor sthe onea of sei1youB!asTadvicY"ve2dwiselyBB. "B< told me all?|3allWMiss Roylotie2not"are screy#D!Wh7b3meaFor answer "Apush!ck}fg'4 laWq fring{ e2lay 4our's knee. Fiv"q lividu i rfingersxr thumb, sprintedKhite wrist[cruelly used.>Acolo Rdeepl$1inj$nA "Hea hard man,"VE"andMrdly knows#).ada long,h 3leas!S chin1his@Y?q crackl1ire"Da_y3," :*2. "are a thousand!Q I shQdesir b$ I decide4ourXAof a. Yet wen^se. If #0"to(toN to-day, Tit beeu #se-tyN "th,Aledg 1happens,;1pok2ccoming $-d3asome )(l sprobabl2"heAbe a!ll^z  bCto disturb~# Wca%keeper now+!sh!1oldcfoolis Ieasily ge( !ou"ay$"Ex2verFbtrip, S<WBy no meansKdThen wCAboth!. /!goqo SrselfS ffcI0CwishA#no!I am inA. BuDhall+!etwelve!Qtrain'!asK1tim-!ouexpect us"Crafterno )MY;P 4 heard a  8Ccaus3-"se>C bar1sec f g place,dP5inkre is good!X#2y m*qclearedgUKSlines:1ButtERn, dia%doxi@RI see,K2any TtheorsQAnd sIG!ec 3 fo$. !go M rhis day ,"et{D ions arec)C, or+!ex)red awayIeOe devil!& E eja(Rdrawn my compan*/,[ our/s^"1 da j Qa hugxc had G1himgRapert3sQstumeEap mixtur "of@!al agricultural wring a top-hat,'ng frock-cond a paiChigh gai with a hunting-crop swing hand. So tall"hehis hat actu0bL3the7!bax5oorJ<qbreadth%Aspan]>:qside to. A largRe, sb Qwrinkburned yellow(un, and mark;sy evil u4,tE ,tQof us!le3deep-set, bile-shot ey7his3 , fleshless nose, gave hi5!thqemblanca fierce<"biFJ3pre̬WY 3 is(9 Appar%!MyhB, sih@lthe advantagB Ms quietle*Z ndeed, DoctoO blandly. "\Va seaf'  >Akind B hasFhere. I have trac= A !ha=,0  ?!"I a littleRO41theRyf a&h man furiousm| Fqcrocuse62misM," continue"im4bab]Ha! You put 5#f,I ?" said our newA, ta'a$  h }@N(mqyou scoCIl! D.3areR meddler." Myr9T smil\/busybodyZ2His*/en3 Scotland Yard Jack-in-officeGxB chu?$! iYanversa#!is R entM4ing3Fhe. m !go0Qclose Ufor Qa dec !dr  *"goX1sai say. Don'"daNCaaffairC$o  a[Cam a^eQous m fall foul ofݑhere." HeJped swiftcward, $DAoker$ b1Nnto a cur$@" {gLq"wn&2Seeyou keepsmy gripCnarlQ hurRthe twisted 1iree Qtrode& Hm!am1Vt personlaughingEam not quit+RbulkyBif hR2remu I\hown him* not much moelown." Aspoke he pick? zCteelAand,Q# au effort,aD!it#QFancyn v Snsole"confound ٔfficial det,rforce! nBgives zes our investig5, c'D3rus 4ourbfriendtnot suffer fromaimprud"in^9qis brut"tr4ar. And" ,eorder "d\walk down toqs' Common!er!op~2get%Cdatamay help us eis mat&2 I nbb'clockz 14k % excursion>!eleMQ shee>blue paper, scrawled AXBnote Sfigur"1eenIq deceas f"ToCQrmine,sexact mVaAobli$o6=u " bt pricJBvest1 5I ncerned. The totalR*|bwife's" ;Uof 11FA, is`r throug;)in " -2750_ts. Each ; can claim an U of 22B, inFC%ofh%t d$if both girl:H,cbeauty5("hakre pittanc7!il:nm8cripple him to !se Mtk S"'shrYEwasted, since i Sprove !he>Cctrongest motTfor d}Ae waD"9any Fsort5Cfor dawdling, especi ~ q is aw*ABing d!ve"D1a; so i 3 aiyAcall'Kb2dri!2loo!QbEmuchh]2sli|0your poc!n Eley's No. 2 is an e argumen"& gentlemen whoOAknotZ,a tooth-brushlO$ne#%At2 weu&qin catca train for Le%Chead9 we hire4rapY!stC innr1ove or five mileslovely Surrey lan(wCerfect day,aʏ2 sul2fleecy cloud0!th<Aaven>Se tre1waybhedgesjxr9Rout Dl01greh(3oot!ir &fupleasant smemoist earth. Taat lea$er% contrast=h sweet[jÅyAthisquest uponq@asat inQtrap,, 12bfoldedahat puKdown over hischin sunkhis breast, bu?$a deep6 hhought52 tQrted,ks^.o N!ov%e meadows 1Loo 3re!!heA[9imbered park stretch Cin aR slop2ickJ!7 Agrov1the!es\*nt. From am branch%aere ju' grey gablroof-treafW ",q"Yes, sir,;b2hou%B" re! Qriver9fis som%r } 1; "2 :,}!we5!."* 'F1,a cluster of roof1dise left; "bu\Y!ge PAouseW2'llf."itDe'$ge>Hhis stile,Cso bK6foot-path, 2eld=iA wf walkAP, I fancy, isE$,"=ela, shad". Iad better ddL5*We got off, p$fa@rap rattled back 7Zway f%<5iHJwellngQclimbeh" DHu  2com as architects, or onqdefinitBinesmay stop gossip. Good-" Xnoon,W!se Wcbeen a"asC3wor3Oursl> `&&hap|smeet us" AspokA joy\lso eagerlyqyou," siL)ahaking1 fqus warmA)Cqsplendip Cs CBtown qunlikel(4at K "be<Ep""hasm's acquain f" sai2and3fewShe skAout OSG.V whit]Cips Flist 1GooYvens!s" afolloweG1"SoTppearHvQ cunnhat I never know5I am safe A"im"! %y+#heS"s?He must guar71 heis &his track8iy Uf up}If he is1t Atake$!tor aunt's atJQ. Now7vAmakebB   !tiso kindlGuJo9%th%yto examine.M'Thf, lichen-blok1stobEdhigh Gbportio 1twoing wings, liAclawR a crab, nn each side. I"seK!4 r brokezEblocwooden board"ilNroof was partly ca1qt, a pic2ruiH !wa little L.", 8Ne right-htcomparatively modern,5the blin< v  ue smoke c#upt4(s,M6 3was\esided. Some scaffomI}en erected again*  2all-Einto"re6rno signny workmen !moWcvisit. walked slowahe ill-trimmed lawnddeep attenA$ 2Thi2akej5relongs /l/1you+/, J#e |,' ' #onwF[dmain K: to8 chamber4ExaOJB Butinow sleep Aiddln R"Pende alteratiGas I underA. Byh adoes notQ/6ery pressing ne5y1aat end[ lh )Zne. I#!itO5useX1!meB"Ah!$isB 3iveq  ~Ais n wing run corridorj` K!. #P1 inAAof cS 2but3o3Too"Jrto passC+'!AsjSboth y"%"tere un K2ablF3 QakindneFo goaHr$ did so,AHolmh fCcarefulUationCopen^, endeavo+%in everyTqto forc# #1butout succm ! wT slit6" sa knife2,!be3rai1barKB6his len 4tes<;DAthey of solid iron, built firmlyjabmasonry. "Hum!"heI^ "inperplexity, "mRory cl2entC  difficulties. Noc1pas"%se) bolted. Wellshall see)a insidJ1owsC_3ăA)4hdoor l0 owashed5s%edlCrefuA;P|e, so w csecond$bMiss "f ,Ebhad me her fate. Is homelyApGDceilQa gaw%2shi72old>1ry-As. A} wn chest of drawers stooone corn>t[nterpaned bQ anotFd8!-tS lefY  lse articles2two* wickerchairs, made upqe furni 5 mZ for a squaWilton carpe Qentre Q roun:"vQpanelO?Qof brworm-eaten oakg2old1 5dis3E!it have datedthe original G# wAdrew!kassat si !hiPq% tygn3, a#%Uqe apartL "Where doat bell communicateat last >A-rop'ch hung E !beY!th tassel((RlyingJthe pillowB1t gckeeper'sIt looks newaL2gionly put> a couplZbYwc E*@uI suppo5No,{%of her us5 at. We Qalway #gecY!ant1or %lv%,'i ed unnecessarput so nice a"pudre. YjnRexcus PcinutesI satisfyoUas to this floor." Hw>2facMflens in his ha  #Aback ։Sward,lby cracksY4J-#sa!Bwoodh Fwith  L^Red. F.1 hea k"beRspentsbin staZh*Cin r HwallvS tookYq!inYL1gavCZdsk tugy, it's a dummy,!1on'aring?"5!Noj!iseven attachBa wiRis isp o1can&!EWhook just abo@L 4the!op+ ntilator i5"owfabsurdQnoticb%foBDVery!" muttere= "pu]a&s rope. Qare  )6# singularsG5room. Foraple, a fool aV"erQbe toG ) a4nto mn$meJ5H, he%d-QR air!is also quitei<#ad+EDonen- ?q were severalchanges c!]"atETheyAAof aT) character--dummy`M|Qch doe. With yVpermissi@ 1now"y Asear*"inbwe inner_" >-)'s/aO  astep-d)"er !wam1"ly !shO camp-bed, a # shelf fuabooks,V"lybtechnical[,#1arm a b%(wall, a 4taba0uI3saf<Jrincipal #s1 Rch me&ey f Beach/ a $>WkeeneYQWhat'GhereQ %2saf".f!%'s7U pape6Oh!/AAside>!n?+q"Only o$ I rememb  ) mQisn't# 1it,s"No| S ideaOBlook2is!@1ookhQ saucR milk"  top of i No; we don't+Ca caR[Q&isX7 e2AAh, 1N"! 7#is big cat_ {yet a ] Snot gdfar inT  ss, I daresay2oneEQ I shwish to deter He squad 1dow ! ]1eat &itgreatestThank youhN !se ]A, ri @u`  y%"Hullo! HAsomeO3The6had caugh45 ey#sdog las "onT& bI))%, +1was'"ed "itand tied so a Amakey5swhipcor,ICWhatq>)at, WatsoI ccommon;y uld be ti*& -W, is it? Ah, me! "wiCorldOwo1 cly1mansQbrainAcrimz iR worsPDall.&IV@Hnow,{ZVyour T?Awalko wTSI had imy friend's fac/sgrim or!ow9ark as !we 1scef: .. We hadVQtimes lawn, neither Stoner nor} !li!tok%Bk inhq^%s  90c^.is reverio%It essential 3he,#;"o absolutel llow my advic every respec#"IGmostSdo soT*any hesit\rL.Adepe!on 'cliance_I assureBcI am i0Thands+Vafirst 1,W,M@sz:'T#inABoth .02gazd!hiastonishmen1Yes be so. Le~5!ex< 3e c%)<'r]/\I CgoodkLwbe visi? CJ aconfinyC2 to on pretenceP headach-e' comes back=n ! ear him {e,SZR6q, undoQhasp,78\ as a signal to u? !th,tithdraw9f$ y6>#1 to#R int,to occupy.]rno doub, in spitR%thMucmanage cfor onO$ EeasiTNs t"e'cyou do-W FB+uD{@8V4hasF!ed% D, Mr  A_eUreadyEmindt$Q, lay`%6n3w>!'sDvP,elBThenc pity's sake, tell me 6wY#my's deathN: pRclearer pN)?sI speak<,e2my  is correc F ifT 5Tk;\OA+so=jwas probabme more tangcause. And\$1you"ifaRoylott returnBaw u dvjourney(\>(#bybe brave,_o""doIa1tol,1|Rd6 soon drive awaydangers that th [Sherlockp# %o y in engag"!si -eOy Rupper(! T$ wAcommR viewe avenue g$Q1and habited O )ofKManor Hoat dusk4"aw >LQpast,# 1hugbm loomA besLg $R figu!ada01A him boy hadA sl rDundo(QheavyBw"rdhoarse roar,)Qvoicesaw the furl59Qshook2clibSfistsCtrap!ond a few+h!we9!sp'upɂQtrees] 1!mpd!liTILlssD$! k0  AHolmXRt togiq gathedarkness, 7!re4EbscruplLQto tat Vyou (! aSainct e4mw"Can I bwassistancx  Gbe invaluabl AThenTall cV g "ki=HB"You"?aeviden$1eenG7c"omUn 5to |"NoM._adeduced a71mor$aimaginntsaw allC4didb"no) aremarkAsave] dpurposaRI confesBmore1TI can|?LtD, toYp" i Asuchry unusuQ to (+4"wo s(Ea rQhardl9s throug3kneKJAfindCbwe cam*csMy dearS!$ hm!in kq she sa03"at!!Xsmells.'s cigar. Now  suggestM !on$r#be[Qunica(iJhe nBonly9  +Sor itbbeen )|a coronainquir ~.E( AharmlEthat6 3ll, iAleasDr coinciN>tes. A u is madeord is hung,GaQsleepTbed dies. DoefnQstrikW Vnot as yetQby connf!Di 2:8(IddeN?I Rclamp  bE bedQ lik t ^1sayl 4#dyA"ov11bedDmustoe same relative [%anrope--or-%(;Eit, G<ll?60Qmeant  E," I cried!qseem toRdimly Ahint* !t.C4a aly jus!ti>U prevRsubtlhorrible @S!(;ha doctor does go wrongB firQ%criminals. H# nb2d hknowledge. Palm#Pritchard were_!eiC !feQ. ThTn s2{5,UՑ1be #toD>b still . horrors##  is over;goodness'Yr let usIa quiet pip2turmV/%few hours to  cheerful1 A'niA7ghtT! was extinguishe1allCdarkB dirB 2Two passed slowly8 th2ly,!stZof eleven,angle b0!sh 2ut zu 3our# ,2  o feet; "it A *SiddledAAs w 1sedhe exchange b words ~andlord, E}6$we9Q on a Q visiP/*an~5 N2posw &0Ulater4outQAroadAhill blowing r4fac8 4oneMatwinkl} # . the glooQguidesombre errand  4was 2entx Warounds unrepaired bmts gapedold park wall. M our way amo461, w 1cheW1croiAbout9* TC2outtaa clumtlaurel bus<1dar!haLo3 bhideou?distorted child,Wp⁢6-#as2wri\AlimbJAUn ran6&F~5wn 0  "My God!" I whispered; "f@-^ sMas startle`IQKd like a vice"my^Aagit Q&Rbrokec,D la1putlips to my earIc a nice household,"#qurmured$a)9thesforgottF%S petsC4thepaffectedAre I"_, too; perhapsl iQhouldx. =I felt easier iMAmind,ds' exampkQslippDf)hoes, I foundg6/%!MyFRanionVclessly9U, movDmp o"2casEeyes"3. A>!Zaaytimeqn cree!upem1a trumpehF, he^Tx#R so gP cA!do4disj:The least siw8be fatal to BlansbI nodd BshowV5heaN s #ou f oRDo not go asleep; l kit. Have(# 7E"se 5!it,Weill si/T%n uat chaiAtookmy revolv Vlaid W Dhad _!up \"neU"he 1 behim. By it e box of matchen#stVsa candl% hpd[be lampAleft 3HowcI4c forgedreadful vigil?h Ahear#Qound,#ev4draka breathHyet Z!my ,1sat)a-eyed,#in "fe4me,asame 1 of qous tenH[iEI_ 5s cut ofFvbray ofQwe wa@in absolut(EFrom*h1 crVa!ܵ]Tonce JY!ve|DndowUdrawn catliknich told usZRRindeemdiberty. Far awayJzFT tone parish clockMCboom0 a quart$ an houw#eyt, those1s! Twelv;1uck d$sand twoD#reO !atring silu2for,; abefallS>l!re  @ary gleam?3 upg- 5 f1van{ immediatelyQwas 7reded by'3ongRof buBi1oilAheat@3tal#=#on;Vhad lit a dark-lantern ^2genNKof movem<3g1henB3wasLB onct IDgrewPMr-Shalf |'3str" ears. Then$ly-!be5audible--a b, soo ?+hjsteam escap WDally Ckett=s instan9R it,  sprang<3ed," aOl7!fuNlG his canIsbell-pupe=? Ayell Yi ^=A. Atq  >1I a"w,2tlei2 glare flashL weary eye l mPw"at& $8so savagelkV(1see 3facH deadly pa !fiKT1loaBhad ceas6 Btrikyswas gaz a [$   $cec"nizse most r cry to  clisten!sw up louder; 4, ayqM2paiy@fnd angerAmingS Ve oneRshrie$y0 +*cvillagN"diJaparson#qcry raimKl6ir beds. ItƮ SheartI,#at,heme, untilBecho"itl(#di0aSilenc it rose. *T?" I gasped!IsBit i cover,"/nfed. "Al Aall,PHbest. Tak1  0 !we { enterK'With a grav`q  - @l x@R. Twi:!Q1 =bwithouSreply w  1the6bed, I r heels ccockedhaaX4s1met? qeyes. Or table 1/8a L u3 Qopen,'  a brilliant bIAY)!ron safe*#ofjy= ,!"YF , 2R cla  Fgrey1. R7 1his=d a peculiar yellow ban q browns$  bZtightly Bad. BentemU made, nor motion}T2nd!~d!!"4a step forward. In an 4his7 headgear began3mov  rgfQo91haip  {1 diamond-shapVapuffed neck Qoaths,H5erp+swamp adder!" cTSHolmes; "= eadliest snake in IndiaCs di6cin ten=A being bitten. Vio'q does,' ruth, recoilv*Jchemer falls Ndthe pig# 2. Lnt(creature backcits de{$ {n removeI-Ato O2plaqshelterlezAy police knarYa happa" Aspoke he?yuog-whipyead man'',T !ooU#u?reptile'sg!it Q its qid perc a, carrb*it at arm's lengthBJ8i|Such aren1truVt0_th ofJ, of#" Gnot >Shat I prolong a narrati;Ras al?run to too gre]6 by tellThow wCaad new-!th1mrified girl, 1conveyed herRQBtrai}Ahe cf"good aunAHarr".!ofV~low procesBofficial"X#anclusi!atok"meCfateBindiscreetly po, 1a d qous pet(ZBI hato learn#asJold me by 8*Gs weBaback ܑ1day"che, "come to airely erroneous  shows, my dear#7how$it@AiQreasom insufficient data m's gipsie bthe usEQord ' 'Ras us3oorPq/,Pappearancs" 6Qa hurSglimpbv w@xQto pu 2Ean gwcWQan on"aiCmeri.I$ly reconsid&my"2wheAever SbecamN.(,,ed an occupanthe roomB#! 7#fN!or\AdoorNrpeedilyozM%W%tY*,d  uA#%I!dfq disco!is;{A$ffloor,A1risLfYuspic71ropC2RbridgQsometl'(O1hol7|2ingR ideaw1sta>*BU31ple!my|n#bRoctorsfurnish a supply')s% t, I fel 0We!Ztrackuaa formDpois  ( &hemical 2;#wa.6/wQreturG1him summoned. He!pu6is  BhourT*Rbest,%E."ty*iScrawlAhe Nuand lan}?bonot bite:, sDRescap&aa week!rx$r>1ustk $ aq/s S si~Qom. A!1pec,1of  V"me.bn2 of stand4%$itr o&be 1ord_!shiBreacU&  ;ACloop4pco("engao finPdispel any?8s2may(dremainmetallic#ng)by swas obvC$caA 1her"fa:sQhastioWshis safbits te;*Fb. Hav{ca$up+"8!knO  IX. THE ADVENTURE OFENGINEER'S THUMB OfcDblem jssubmitta @], Mr.7b( 8iontF#ofnbtimacyTYrr)n#woRI was1ean<introduc! "hiXQice--of Mr. Hley's thumb#Colonel Warburt;qmadnessqaffordefiner fiel& an acut| original obser (bu. e-BangeTXqs incep !andramatic!qdetailsRmay bmore worthyndsrecord,mFgavea fewer="#in?p Qdeduc+qmethods cing byhe achieved 24ablsMtory ha[ !!th;c#ewspapersTA, lu"llods, its} is much lesic7w&!se01th ona single half-columAprin Jrslowly %your owne mystery7s gradu *1as 5new $y 3tepsleads o e truth1he circumstanceQe a T]BimprP04&me"la&hAly d2eakSBsumm,2'89$After?֪,haevents|Crred1w a/!to Qarise6%adU= to civil pract:4had! abandon;+Baker Street6Rs, al %!!1vis$1him qoccasio persuad%to forgo Bohemian habqo far aqcome ande1 ushad steadily incrFas IrQ to l=3t n/J"cePaddington StatbNI got a few pati/5thes!of !se m1d c[of a painful2QlingeAQdisea5Bas S48!of advertising my virtu'&ofM\4send me on every sufferer over whom 1 any influence!Onlning, at$5ttl s`o'clock,ɦ Amaidxl4ingE w 6nouG8bwo men-g0Ewere%dconsulting-n I $ed"lyI knew by experWyqrailway1s hseldom trivial\"han! astairs I descended, my old allybguard, !ou3and,ddoor Qbehin=Q"I'vehim here,"n,Q, jerh52umbI er; "he'sP .!itRn?" IW@his manner :si' <h1cagkvt's a nl '. jQI'd b;Fi.3; t7 *n't slip awNAhe il ldsound.tHgo now, Doctor;Hsdooties4Asame9ou." And off!enNis trusty tou01out2 gm m %nkIW fa gentlemVRated ! Uwas quietl#ed uh!he] E twe% soft cloth ca, Tbooks5f&Vhandshandkerchief̥,was mottleLbxbloodstainv8was young,!:v> five-and-twenty,$s,sstrong, masculine; but h`exceedingB&[ eWj! 2)Auffe)6ong20!oktrength of minbcontro*"I am sor&&knock you up so : >2but-v"a 1erious accident Cnighm !6B I 2a4, a bfellowkindly esc41 mea { 1aidSS!rdC & I(sQs lefAupon-*"jQit upAglanqAt it. "Mr. Victor , hydrauengineer, 16A,,3ia a B(3rd@=A)." F4!naCstyl abode of9 f !orAregr1ve kept twaiting$I, D in my library-8$D. "Y:xRfresh) a journey, I under itself a monotonou p` dd"Oh, mQbe ca)=h laughed %vheartilshigh, rsnote, leaning! 5shaKsides. All~edical instincts'&j"atqStop it71cri7Apull'self together!"~I poured oAme w9@a caraff v uuselessA#Qff in(#ofh outbursts natureBome great crisis ishand gone. Pbtly he1onc` !e," and pale-looking;^mba fool Bself _)!NoA all. Drink." I dashe6HQ bran4}cbf3lou$1 to /sless cheekbU!ind&q." I ru "upI#, )Qshort) my wif $in-3nutMDcBXEsom,my new acquainto Baker[. C was(expected, lounghis sitRming-gown, rWagony column of The TiqS!ndDyi 1-Dpipen1wasosed of92lugl dHB!TmokesRday i,Ccarefully driedAcoll" o @ mantelpiecereceived&hi}genial fashion, ord5nbrasherQeggs,EjoinNaty meal.  g aconclu{ 3 wrexacted?4is Kn Ben  @mbin ordBahelp u "er7 we erected& Dpresu C9lY+, ? {"weyour advicer qsubject QguardfBtmAjealUD!an%Ait !beRknown*d2"Sour 1houL%GQsoon  inquirywAthens!thAts }2out$bC-bye_ !ge#d these&AcarrR 1out Aplanat is wh%ve made you "ha@a human be%kt  "opQU plai Icfollow youb. 'The 4not#waku I 1mak_aqexcavat3 Rk #chgq, is duk6 8ld a pit 5Ah!p carelessly, 'h!veown proc;W, Bress# nto bricks, so as toTAthemout revealing they are. Bu ,mere detailrave tak|, Qy inq confid >now!ndrve show how I trust you.' He ros.. Qexpec+l !n,{8I at ytertainl`C%re}n)! aNR soulTlooke0last long, 3gaz> y[old, dank grasp, heQ a room.=qwhen I t$nk0"ovcool bloodn/@astonishs+1may8,>Gdden>#Qen in"ed# #@!ne @  q glad, e t least tenfold8 z ,Q had8et a pramy own;"3ice='Mpossibleb this< 91leao2one Ahandf\ae&nVLf my patronmade an unpleasant iC$ ?~explanation 2T$toQ*C the+W1itym!my 1ingmxtreme anxiety lestell an" p$ HIU"XfL the winds, ate a hearty#er, drovjstarted off,i b obeynathe le B^Qnjunc-CholdtStongui1aAt ReaY1!to2!geCmy carriage bu/"!st7. 1was/iI reach e dim-lita8 elnB Qthe tAngerEP m Y!noAplatform save a single sleepy porterntern. As I>Qed o#iwicket gate=  *my,"of#"eshadow sside. W|aCA he :w/1armZC1me aAdoor## q!Aopen!#wows on ei_NQside,C,wood-worka Awent !as1horXPuld go."AOne 1?" j2 4)QYes, s1Did you obGrcolour?Y5QI sawF a side-sUP1tep< w uchestnu*rired-lo-or fresh~2Oh,cglossyQThank ?1havqerrupteQ. Pra!MQtinuebr most.1estAtate A0 {fR~ 2. C$* $ had said_IUI2uld&BrateA'we#"go! *;Rtook,7i9nearer twelvebsat a!idG**  baware,Donce @!inadirecth* ! IBgreano!Thntry roads|#no eat pareCworlEwe lurched_djoltedQt/xto lookY/f4"meRbere weG 3wer aof fro/1mak B noVqTccasional bBblur YJYnEI hazarded some remarI"!brR",)RnotonpEhe @b3nelly in monosyllablA qonversa_flagged. Atqthe bumDa roadiexchangedrisp smoothnesa# - a (D  Ded after him, pup4me ¡into a por`hich gapb*Afronu bsteppeait were,o(Lagbll, sobI fail2catU! AfleebNBousee~4r that Scrossthreshol door slammed heaviI#us%@I Qd fai[%tlw)QK " p3awan!Apitch dark i.)fumbled snfor matcheV#Bmutt}F1unds breath. Sb"ao*q4end5"1a golden baB sho!in#:grew broasa woman}&edx !mp 1{ she helE"ve 3qpushingO@5forg"pe "at031shebpretty"ne 2herdress I knewy'a rich material. S`AwordT a foreign 3tone as thmX1ask E%w7u Rnswera gruff she gave3 Rstart 1amphsly felQStarkK up to herspered ei42earBback eQoom Rwhenchad come>walked towards$% Z!isx. "'=qhe kindato wai@Aroomda few8h1row.5pen4AdoorK quiet, !62fur',a round te centre, ontseveralG,Qbooks1 sc)e" blaid d3 B topharmonium be" b2not(1you2n sand vadarknessy   L in spitCmy '  3twom#treatises on sc6Pcothersavolumeapoetrysns!lk2cro:G U, hopIfglimps(( C-sidD%an oak sh,!arYEwas fold&itr wonderfully t37! QA ticj2lou+"me #ag%3wis08a4?till. A vagueh'Cunea4BbegaF'Csteasme. WhoDheseSpeoplvwx"4the*lrO$is', out-of-the-way :r? And w?sBr so|,7Rwas ,knew, but wheP north, south, east, or wu idea. ForR,,D ylarge towns, (that radiunot be so secluded qall. Yex MP$teK,&thRness,n&2 we8 ~Q. I p]F!uproom, humt*ca tune#my2 toj!up>apiritsIz0~ thoroughly ea|"mym"-guinea feeu# w1out#preliminary sAmids H\ $ofS swung slowly > " 1and_!apertureP%S hall O&yGO;"my"beH3her8:beautiful.1see,} t< Asickl8 f sight sent a chill toGL t  up one shar!fi}Srn me%bsilent2she{ E % nRbroke!1ish!e,- ring back, like6Maof a fBened,߆behind herQ"I $$gosw5har* 2me,,peak calmly; Ka. I shnot stay 3R goo`(Do do3'But, madam,i%not yet donehf cannotrSleave[8DAseenemachin]$It~4CwortAwhilbwait,'Jent on. 41can\A th\Tdoor;!hi%E.' AD &seRI smi2 nd shook m&,rl6;rew asidY constrain{ " !^ Hhands wrung tog2. 'ae loveu/-!, 'get awayO!i=too late!4But5!me'2tro^:&2%op4"ad&Qengagan affair;"isbqobstacl)aTh$ Emy wearisome=R5and"n%`   % btme. Wasato go ^T? WhyrI slinkPDD& !mi/ Taymen1wasGoue? This   "e Smaniac. WithA1outex2q"fo 4her^had shake1morvnr&confess, Iu Adecla!my-QntionBrema"M, gto renewm Qaties" nG9Bover,%of footstepsChearH;Bthe F. She lisx8forF l"uplr~adespairing ges3Eand j &asas noiselessl`sSSd comTSrwcomers<qaFr thick Achinay74d g%'^As ofdouble chinf^{t(m' Mr. FergusonaThis i#!aru manage1fR. 'ByN~ m2mpr#85 left thisRshut just Lf/7#pCthe draughty{contrary!op7o@because I WCroom.a^c closeiH6)i6l4%. wq# H:Rproce ,nXhe. '1I e1tak\$+<urBhat ?Fsupp'Oh, no,4iQLR'What8Ldig +1?h'No, no.# i-~/ 2 it3#72min$h. All&! ibexamin4#to let us h61whawdwith i2We"up:\# cRfirst$!T fat}II c him. a labyrin[*![,corridors,s, narrow rircasesQ low/ Rwhichth$ouV genl(!ho1m\ r no carpe+ no signi#anyture aboO2+Fs ABsterApeelf S wall1amp2bre  rin greBhealthy blotches. I qput on qconcern air as I !no\,Cgott walady, u I disregnI,kept a kee: my two&"an,=\5(AroseP 4 mI2&n'he2t @$1a f -8#ma CALysaRstopp]Dlastt 4!ch_"un!ina-r, squarxk-iAhreeo#usE45CsideA ushCme i"'W236now, 'actuall ] C it bD>articularly t  Aus i97 vo turn i sThe cei'/ chamber>Ghe }Rdesce:Dpist i4fs down1forOay tonstRmetalr+1lat3qcolumnsTwater[Mo,dransmi1 qultiplyY .>3iart339 goes readily0Gt QstiffAwork)4of >Dit has losf 81Dce. Qill "the,bFSit ov/!to) us how we cctM;.L!I M/ i[Averyl7 deed a gigantic onC exercising enormouE2. WP)Gpassl$ h&  e1lev Dhichb1lednAce b  h " sAleakK$a a regurgitEoB!e 3cylR An [<t7india-rubber by!her!drUA-rodjcshrunkq,Bnot 1to fill>!so.&1aloHQich i3kede 5was@62aus?:oCpowegI- s6 B foO3 myRabsur" "socful an61b$igso inadequate a pur " T!lsx of wood#r consisK* a large iron tS" w  iAa c."ofP5lic5#al"it$/ad stoo_"ndGAscra see exact090Aa mZed exclamt in GermIP!sab cadav[] ? '@ q "'WwY3 e@I felt angry a_been tri`by so elaborZ#at`hVR toldoIY "dmKyourA,'  I". #$be51ablCadvi1C(4 ifn #th q%fot Cused s#4 I AordsAgret&dhe ras$G speech. H dce set2g;baleful 1 sprang up in his grey eyeA'Very we< ;Qall kfq$ll{0! backward,)$Sittle0 he key Vlock. Y 2 %A0 l2quiHu,"di Dgivef  Skicksu hoves. 'Hullo!' I yelled % A! Le1Bout!^: &cemy heart !3Umouth[the clank_Ihe swish l>)leNaVT lamp stilloI3 ;Q 3the5T3itsIzUblack !omBqu3me,, jerkily!, "neH *"my=PL E+a"Q grin to a shapeless pulpZWbscreamIRgainsQA dr(qmy nail'Qimplo" V bremorsCQdrownr criesT was only a foot=,1ithdhand upraisedsAfeel@;na surfatT1henuflashedz &my"pa)Qtmy deatlK very much !e =91I mB FI lay on<Oe5BcomePdmy spi I shudde2o *`"at]Hful snap. Easi! perhaps;FAyet,&I2ner21liee,1up $atdow waverlB? Al$un C;6mA cau^2ome>b 1ushope back$.D 6andl ?wood. AsBve aZ1hurglance aQ ,NAw a&/2 li AbetwW$a board 4ichV)1nedb panelRuv. For %Qbelie!atpF~door which ledRdeath֊+*5w# I,lay half-fain+BsideUQhad dm=_"ra b few Qas afte-}Aslab5 , how narrow my escapZ Arecah-mbrApluc 0QwristW I ft9 lys*,!le&<nmBtugg 92her7A5eldh+ I H 2ame d1 woso foolishly rejected5a'Come!!' she cD,lessly. 'They Sb a- daat you !no!tre. Oh,RWRwasteqso-prec-$tiT4com4ThiaUst, I Qscorn9?. I staggamy fee5B ran\3her$5the"CaR! 1 la8ll"anN just as11rea@2Ait wr soqof runn=1hourwo voic5eq,(tfloor o2wer&4onea. My guidej"ed 2lik9!is er wit's enaAen s,V+  a bedroom,wRindow$3i0R moon !sh+ ! b#lyIt is yourdchances($Bhigh it may bcan jump itt AG.  "virrther eSthe  E qn figur> ?3 ry/#:9JFhm bweaponra butc^tcleaverX , RS flu84out. How quid#sw!le"QardenKe'1oonUWz"ulu Fbe !Sthirtdown. I cl[ =2illI hesitaoVuntilAAsaviCSruffieVbpursue[!Ifw$ll-used,n ny risks*determin4go A ssistance. TS$%ha<, ght,1ing +!asxyArms J R him#=A him'Fritz! Si(q, 'remetpromise+?2imewJ!it}0! .t! Oh, h-k#'Ymad, Elise!~shouted, struggl`oPw  !. FxDruin5cHe has'!oo . y!' He da2 her to onc3, r"toP!cuM!is.&Cpon.4let :Ishanging1s?his blow fell*>b consof a dull pain, my grip loosen]I? Rbelow: %"bu1-Dhurtfall; so I p"up: !ruFdoff ambushes au5 as~ #ruQI understoo#faV!be5A$danger yet. 5Kcdran, a Bdizzw/I1ick Qover %I tI)B 1was*QbbingpT(#irB,;vE 2cut1BAblooPA pouH from my wound. I endeavouA tie= ~8!buYrZ9aS buzz-smy ear  7 =Qf faintr rose-MAHow I'Ved un#I m+tt been a veryE ZAmoonA!suDvA mor Qwas 86w>oil-lamp)$en"cXapress,a0mwooden walls,=  U3tookSDchas 1you- 1 itha. Now reyes op6m Acrow,6 } Bs of"Unight^FI2 mul$r W 2 a"thundredj ff by now.d $Anc' fear- to be realifzd!da@!no4Bever2 n%M &e LE,g"sinisterVrose Wb. Earla peasant had met a cart conta';apeople" very bulky boxNRrapidMZt   fugitives disNCeven; ' ingenuity failer\C!is A 4Aclueir whereabout"Thv1men#perturbe!arAment H2ichqhad fou3thi|3Uso byRnewlysed human # aAT-sill-efloor. AAsuns0aowever/ir effortO@successfulcry subdu \4nottS!of-fallen in, O MAredu eo such1 rufRat, sbome tw9Acyliiron pipRnot a?F"k$ "ry2cosjn so dearly. Large massTQnicke"inKoe9Rred Aout- =S coin)&u "ma; lspresenc Hose zxs # 7m }r$ wHow ourAa!erace spotQhe reiIenseu Pa# soft moulatold u!BveryS tale'd evidentlyAR,! bD persons,-AwhomICably f+zother unus=Crones. Okwas most probWilent,&less bold or 3mur.!Qhis Bnionz4#as</ o*oNK@ 3outZEdang e5our 4 ru?1s wkBAseat return onceto London, " Abeenietty busi' !p7los'i^aTBI gained "Experienceu, ing. "In&lym. of valueQknow;e1onl!puO 2int1gai reputa e* ytJ'dexistencep X. THE ADVENTURE OFNOBLE BACHELORLord St. Simon mj8urious termin,s long ceasH,be a subject of>  ose exalted-s9theobridegroom moves. Fresh scandalseclipsed itepiquant detai2mgossips away& four-year-old6areason 5 C>R factareveal2H Jl public!as !had a consideAsharQclear he matter up, I feel no memoirG&im%x"Asketse episodeCI_DeeksXmy oweQdays ] I, "shRrooms in Baker SG~h*b homeSternoon stroll toAa le$o table waitH2him!in!doors all day Rthe wa had *turn to rb-_gh autumnal 9+Jezail bulleAI9Dback=2dTBlimbtsa relic Afghan campaign throbbedS-!er101Wit;Dbodyceasy-chairg smy legsz F5, surrounded =jaa clou*#newspapers1at last, saturat%ew sQI tos{1hemVGlay listTwatchahuge cR ronogramenvelopeQwondeaalazily's noble corresk%Ruld b ?%c !epC," I_eAhe eQ%"d.Ur Rs, if5RemberM,}  a fish-mongea tide-waityYes, myc&acertairm of variety," hAswer'"mi%" qhumbler- Tore 2&uThis looks Hunwelcome social summoY PBcalla man either Q boreJ Sto li;#He "ea /*ccontena"Oh, c Aprovrbe some ,B allC"Notc, thenNo, distinctlYŕa9#An #a tDlienO"=the highest}{ My dear fellow, I congratul)1I a K you, Watsoout affecD1tat"@iԒ2ss W<p> n_% case. It isat also mayQ wanis new investig4. Ybeen readi2# RdiligG 6"te you not(It$it\ I- , !`2o aGbundRcorneìT 1elsg$dofortunate2you&@WQF1posv4up. I readn'&XSagony9# T;is always)2ruc*aBut if'followed rec5events so closely,1 and his weddingsOh, yesithe deep :%!isFJQI holb/# i%eLord < V51ill9b it to/!an?  Y3se daand le+AwhatbA2upo!F1. +!is 1 heN!:IMY DEAR MR. SHERLOCK HOLMES:--IBBackPStellsdt I mc implicit reli^'your judgmentdiscretis "de< !edrefore, to1you@to consult you in1enc@%ery painful 8rs occuri# no 3my %1. M+ostrade(qis actwBlrea V A, buo 9he sees no o i1 qco-operr!he$s !%k3b 1somnAistad,pFat four ,"inD n#nom,{9'Qany oQengagWBat ?QI hopvqpostpon2 asU is of paramount imporYu2QfaithA!, ST. SIMON.'3dat Grosvenor Mansicwrittea quill pe]l?!ha B mis(Rget a smeaQink sthe outKCW x#&,"  a as haded upK $ ""H 1nowwill be h6 nEhour!ent !ve-82tget clear %d. Turno1xtrfSir or3I Q a gl5a1who!C is$icked a red-3Evolu E0Fof Rbesid mantelpiece. o The isChe, R dowEfqning it$his knee. "'2 Robert Walsingham de Vere #, 4son1Duk Balmoral.' Hum! 'Arms: Azuhree caltrops Q2iefa fess sable. Bo<@ 1846.' He's forty-one y1Rof ag!chG&$Vj4Under-Secretary#@-Blonit!a  1admZ8 Duke, his fao#$Jime \F3 Affairs. y inherit Plantagenet bloo&+direct descent,6dTudor sdistaffGHa! Well|5 isHvery in all this.#I5you % more solid n9difficulty in fiXwx-SI, "$Qare quite<  struck -% !e.1areg9<G DSwill ua make>Aeasy<5aBa Re3aan ladoaDish peeress.'" "Anbu6els ,AHolmk1bawning es; plent' s/N1notr >6sayh|!be "ly quiet one,4Eit !atV George's, Han  3lhalf a dozen SimateGs~cinviteBRparty%# |p ashed h}at LancaY&$atY taken byg 2TwoNc!--ix! Wednesday last--xU curts:4theD had} honeymoon1 beiQed at6% $'sCS9Petersfield. T1arex42s 5$ed&  Sbride B,Kwhat with a star5!Th 1ishHf9CladyQ.s)] d breakfast?I2 $. a6moran it promisX 2be; ! =Atic, $acXAYes;  "a 4out.They oftenbceremony,9occasionally! +MI cannot"toXa1V s@smpt as!* o I warn yousthey ar$inp/':twe may m)#so'QSuch NX1seth in a single HluSU q of yesterday,JI3you  headed, 'Singular Os!nc7a FW'The famil RRober"Eu thrown greates}*asterna!"byE6and ! i&n) bh Vs4)rtW N Oo"d % GUonly /%Ifirm  qbeen so[1istR flo Qabout2spithe attemp=rto hushA!ma4!aup, so q public? 1hasw#o\uno good5a47QserveBaffe&toel! w7/is a commonr$2for(!rs'was performb$ cRwas a#no~U4ingD Q b fath_,,aDuches>Balmoral, !!, AEust2 nd Lady ClaraAA(the.nger bros i{bgroom)1NAlicia WhittingtT whol&proceeded`-#Nof ,h ;!, e-}"1een-Qpared}S $trouble was ca8by a wom 2nam Sen as !ed% O c 5way 2fte?bbridal@ s, allegkaat sheQclaimx/#waT a painfulprolonged scen"shZ butler re footm*o3$lyc"# Tthis unpleasanDEruptn*qsat dow4 Iqt,1henained of$%Uindis_"an "ir her room. He"ab,dhavingsAcomm)3her~hrlearned[ !id$ tcome upQchambRAr anMDant,q_!up!ulxand bonnetpuhurried7ebassageD! qen declV [ZReen a $le  thus apparRqhad ref*to credit" ihis mistress, belie[ # b4mpany. OS2ingQUhis 8!ha#/edAjuncP,jaly putBselvcommunic@vL|very energetic1ies "ma(Qich Aprob.c RpeedyTl^ !is23) ,1. UAKAhour 4"!! Qransp am<<Athe {!ngfre ar$of foul pl3saihO<Ze/6rre"qd?original$qurbanceQelief0,jealousy [" motive, sh! Qconce % pa1Kd{78$lA"enly onjAitem(e'bpapersaB a suggestive one obt is--Flora Milla3R He has s;4qformerl*qdanseus the Allegro"sh>!kn?*SyearsvKano furTYV% tnow--so? c pY!Anexceedings6#(sF8b&}R notQmissefor worl?Bring:!e bell, )']'clock makea few minutesTUfour,>#no doubtWj(9our( . Do not dream of going, Qfor I much pref3vR witn"ifY Achecmy own memorn ',"our page-boy, 2penY door. A gentlemanu$a , cultured fasigh-nosJCpale6q perhapCpetu BboutmGsteady, well-opened ey\*$ 1 lo#ham8$!mm nwbe obeyed. His manner Rbrisk!yeD generalance gavJundue imiq #ag(ad a slL$aforwar6!opt6 b`C kneq[ce walk hair, toohe swept off hisTcurly-brimmed hatD grizzled .FQedgesethin &1topG!tod1carOqverge o>Qppish*2 coRblack frock-cohite waist yellow gloves, patent-l/R shoe/ PQ-coloQgaite bHe advBsloww )cuhis headEfto righ$ #swi"$ h !co#el )golden eyegl8. "Good-rl Holmes, ri@ wing. "Praybbasket 0 y/colleague, Dr. . Draw up#!ttTBfire"weAtalkr matteFF7# !1to 5ss2can&readily imagine, Mr.11cvthe quick. I understtbd! 3(Amana everal delicate caseosort, sir?I:#um were hardlyaA%# 1 No, I am#CdingI beg pardon"Myn %Asort}6a k?Oh, really! I0no idea. AY71ich05 QThe Kf ScandinaviazWhat! Had h7m#if&D#"Yr  suavely, "bI extePthe affairrm(seBsame%cy]you in yours." Ib! Very(!! I'm sure o1 AsT-Ccase#reAgiveany inforuZmay assis#Rin foYan opiniThank you2allFi Bthe 5 prints,%1mor I2tak6 %"A--th Srticlxqexample& j ! g|1ait. "Y"&as T goeB{9FneedD1dea?supplementingCanyone could offeg &ay arrive at)bmost &ly by questioningSc do sohrWhen di+first mee !#T DorawIn San "a year agR2YouMCtrav[ cStatesY5D!beRengagwN]"BuaCon avly footIWmpsby her sFculd se4" 5 HhCrich&He] the richest man Pacific slopx"And how}!he uSmoney`aIn minH"noU   |Q Then/truck gold, m2Ced i"caKbp TboundANow,! iru   !yo-Krady's--&wife's characterT#sman swu+f8tvedown afire. 2seeDqhe, "my was twentyq!bea man. DurGtime she ran free}8uAwandk@through woods or mouDs?sher edu)Ahas bfrom N&+1ratQhan the schoolm"A. Sh|)Cwe clYAEngl tomboy,a strongP, wild and, unfett7!y!ofGa$svimpetuous--volcanic,E*s q to say09swift in mak4herad fearoin carryu.A re OEo#hK= <1giv,! +!ou bear"--h % qstatelySgh--"5Aoughat bottom a!woSIgs1cap~9 of heroic self-sacrificetz2dis:!repugnant"aher photograp1I bt' {qme." Heed a locket!sh<5uKvery lovelyABzWnot aA butQivory,f$tiop full effec8Blustrousi ,Ahe l&Etdark eyA  exquisit}C gazed longQstly cnq:Bclos#!ha{lly not. 2seeM G %daw  "WaCr"indspiritC N7tkept tale"of$we5ado in K5(E liv uIndeed!, K / 2She Xght as possible--atJVuntil$ Z1And! ayou ob any chang* v17,athe tr_I saw the? Rsigns i! R!se&aCtemp$GjustAharpa incid,Hwas too trivialABelat2cancn;2sib o4cas0 Pray let us:"itSb 3$Oh=)*1ishb droppq bouque"wefW. the vestr-!thnt pew atg!ti!ndi!Bfelly 1pew&rMa}='s delay,the gent$ i1pewxed it up,!it"Rnot U-Aorse.all. YetCQ spok}.fAansw me abruptly;cFoYsway hom1Bseem-urdly agPt;is triflu9You)D+!. c %hebpublic KtgoqOh, yes  to excludNm7the church is opeGThisw#ts0Ayour #'s o, no; I 9him!by 3tes,RquiteFmmon-loo2per()d_ #:SBut  &Yaj1nde  q4oinuFLady#^f, retuH less cheerful fram  (Qd gonrit. Whashe do on re-ent "'sQI saw $ser maidj!o -HAAlicCher name`is an Amer-mfrom California 2Atial servantl 2too5!soXAto m(? allowed o@great liberties. StgV<i they look !se%g a differentY>rAspea <3Oh,Dd;1els#of4You overhearfthey s _ about 'jumping a claim.'];saccustokuuse slaR kindv( 2deashe mea"AM"exAvDBimeshwyrwife dos:7bnishedb' Flked($-#O~C armNo, alon%wa $in4Rs likW:#n,w$3forgscrose #cly, mu%words of apology1he ! SBever_ Cback<BJ !is, cdepose %"en(%Q, covh'Cide'3QaI ulster, put on a $|$ouHQuite sox"asD'Aseen4to Hyde Park~A$ a iA in dG2who"hmade aA"r at Mr.b'; AW   ) R,J'NYRlatio : \s shruggshoulders and raiseyebrows.YI ,Mg<j"--s# +z !1 StreatE!un3ousxrno just#  't st me, b Bknowwomen ar,2. H_I!hot-head devotedly attach wrote me dreadful1Kq heard9 :bed, and,eH tBtwo & 3ows1in privatf#Qthes,aqsoon pu] u2.   "shbwA7.9ca rowdV ! h'iZ thank good s%d+waa +EYes.5F RlooksW as so seriou _adecoyeP oGd laid qterribl{p-%'% a supposit1You Ak sot"Is Tsay a)e'Qyou d%MUself @ ! Ha$lI2 hurt a f jealousys(b trans_'6 of2s. H!ctheory~took place5" 2, IMto seek aB, not to prop\\1one[ 3youe1. S!skhowever, I2say!it has ocX;kS'Ad7a'u5 consciousness7eso immense a !al7<"det.eQffecthqausing Cqnervous*x*QIn shhederang discolour" soaked ini1. "!heUa newq1upocU top4ileH ru_to crack, Master1mB, bl cblue rI air. "Ym-1fN+\1f CG qargin bTark-keep 3Thebeen identifi;aher cl`Ame Ji* *n@ far off-!By@$ brilliant w` e:Rman's#i=) iw!ofwardrobe. And pray.hope to.!At   RmplicfP: 7dis "  !itDicul!ArSqnow?" c `some bitterU "I p,7you are noOBprac\ Myour deductionByoureences. Y btwo blR4R in a7yr. This EdoesDie MissGUAnd hIBRpockeE3theQcard-$ 8% "3not in Qslapp$f down)uom. "Listetthis: 'k A se- K-s ready. Comonce. F.H.M.' Now m2oryXalongJHL'dy 5wasraway by\" ;Bshe, confederatesFBdoub8-Apons ! H/bsignedRher initials,`O n@Rslipp  &3andBl1herwir reachIV $RlaughY+^K very fineQ. Let<Ree it,t!Qpaper$ g$ w&7hisOHb4tly+criveteq Rhe gacry of;1sfa1. "\#is^t," said hU1Ha!!fiL'3 soIdExtrem1eT warmq|1roshis triump^1 tor. "Why,P Qshrieq"you're#4ingwK0CsideNOcontrary,"Xr<4sidnT2? YeXmad! XEnotet_in pencil o rP#AnP'Rwhat sthe fragOof a hotel bill*s%ee!%'s3in it. I"ed!.Y. "'Oct. 4th,!gs 8s.,H2s. 6d., cocktail 1s., lunch 2s. Aglas,rry, 8d.' I *\  It is mosat R%A3< Dnote5w+Dthe O are, so I t'}2tedk3Uenougօ>M "I believe shard woֽnot in si! b fire spin(aies. <;3-1all\$et bottom  S firsr!gae dvqgarmentB"ruomD "agy"fo Qdoor.2JusH)Ehint.#" drawle3f rival va/%B; "I AtellpW $e f3p "maZ.fLady `#myA2not1 nedQen, any suchN:F"saR! -!Th3'B, t1his!he!"re,s, shookcsolemn["c%Q awayfdHe hadAshutbehind him$hdato put `his overcoat"in ellow saysQ outpAwork94"soUC,I must leH#r &It[% five o'c!ftS!B noablonely.aan hou#re 1d a!fe Aer's*9DwithNlarge flat he unpacV.qthe hela youth whom h4-1him# -ly, to myX [great0aUT epicurean old supper begaU Bbe l Oqour hum/lodging-Nmahoganyere a couplAbrac cold woodcochMâté de foie gras pix a group of ancien5cobwebbyles. Havingse luxuries, my two visitors RA, 0TgeniiCArabian Nights no explaZfthingsbpaid Ld*1ord"toiqaddress+F nin 1ste@ D%ly"*! <q His fe6sw1gra62set H! lp D ey8,ds#en BointWhis "f46" aid, rubbE A"You/Cpectm^"fo-"Yes, I fancy we ma-u)Rdropp %he St already.. Ha! I {%Istep now0r stairsD our %came bustla dang0blasses6vigorous ngaoaV perturbed&k ristocraticlMy messenger 0 e 3Qand IS/"the contents startled me beyond measure. Yaauthorǀ"ory2? The bestO%w 3san+ci!!paJ6CWhathe Duke saymurmured, " 3hatAfami7s!}j-humiliation, urest acciden 2can2lowo "isOA"Ah,n alook o0 9,%1]standpoinlI fail to se_.7BoAlame%anAee hse lady"{aotherwise3her4q method<!do1urregrettHAno m],0+cone top2"at}sa crisi"1a sUQ, sir4z" said n rfingersr BableZ1You7 R make~ is poor girl, placso unprecedeN(B(IW&noZ!. gCvery have been shamefully uskIE1d a ". are steps x1 latpersuadeAto tA len:Kview ,}/+v<1dvok$here who=bB:eRopene qand ushCin aand gentlec?" Ahe "%4op Uroduc1Mr.BMrs.is Hay MoulXqlady, I1nk,!#meA! s ese newcomers$%bsprungC!se*M=Serect9 qs cast a 5ustbs!hig1ck-tLR a piq"of offended dignitTBaken !ckMQ forw!ndheld out"2BhandGMm8illV01. Ic! !llwdhis re, perhapsh 1herOd8}!ac D on} iR to resist2'reu, RoberTspBguesevery caus2be.$Pr?_no apologyc  O02A, I #avu real b%(at I shQspoke 4you ʢ;I was kind of rattl*iQI sawk"A I jubdidn'ty_6Aor s2. Iwonder I 8f falldo a faintJh/2bef@ce altau$"PFlikem+" r)rom whil*?"If,W giveI%,"!st+, "we'vAjust1 Attle$>much secrecy }!C alFor my part,Y4ll Europeq7Q to 0 S of i 1smairy, sunburn,, clean-shavenra sharpsand aler0n Dn I'htour stoL1 aw sR)c6. "e4I met in '849QMcQuiVcamp,GqRockies-re pa was wor<82 We fJo each other,E a; but\ L day father struck{$ch2and a pile, TGD had: 1pet"ouE !to1caa grewhapoorer`; so at last1oull2men)1ingSAblongerhQk me to 'Frisco'k_qn't thr h4hough; s{\m~%reeRsaw maout paF $ "BouldHBhavepahim maoknow, so weQfixedqWQll upTYO3lveka2 go ^ 2hisT#ndBcome#to claim meZas pa. SoBbI promao wait2him3e e2timfpledged myselfw1Tmarry 2<xhe lived. 'Why #n't we be&#ed",'"heq%#n 6cfeel s72youAsI won't your husb CI22?' arwe talko2-so nicelyclergyma?w"iting, 3i]G" w>2fr 3k d!tu,5ent%paA nexs'T"as!he in Montanathen heXprospecty xn Arizo* bof himB New Mexico. ATE"atPa long newspap>how a miners' camp 8ked by Apache IndiansrB myAW'C amo'killed. Ibed deaF5Asick bmonths+C. PaZ_Fbdeclinbto hal"1doc&inNot a wo1newM a=,#moFI"atQ deak,en I,d"weJa!agZ arranged5!pasIpleased, felt all!:Dno mHis earthNeDaQplace#!myt2giv] 'my!StM!if de95B I'd AdoneAduty by h!caYommand our love>!n ip*E. 1ithi!io( make him5)2wif(tr"inJ' b7may imagiw  felt when,RIQrailsZ"glYAbacks "st!meV:f" HApew.%Toughthis ghos) 6" 5hys@a3 ]T*!ey9As i51ask!he/ Is Bglad@!rr !se.? O Ydrop. x turning rounUthe !A2werbuzz of a be*!my ear.  to do. Sh RI stoDservOHaa scenRhurch? I bat him>qhe seem +J8dinking9!d kas lips EtellG  him scribble?2pierAI knm  Qas wrW6 me%8s Iapew on8=out I droppJo{&a$Bnote!myUBturnLblowers& qas only/s me to joinhE O"ig(do so. O J&"my A%w(I determin# d@Awhathe might direcW#gotQI tol*Bmaidt>1had'invG{ ClwayAArienVhP!san'hy1but3getF2s p y ulster;'"I   gdreadful ! \ose great people. %up.to run awaD:afterward@!ha5 /91ten& FutesYXo$Mo9road. He becko mhen begaD:9)Cout, (3ing z MLrwoman )PAsome73 orv YEme--2 me{ tm attle I6,#if # aq secre&u8Hbalso--h 4man"ge ! soon overtook s. We goa cab togg! qwe drovsin Gordon SquaU !ast4rue. oyears of .% a prisoner2 Apaches, had escaped,D,[.m !ndMga Engl( "ad Aupon3! Fut second !." $ia""," %he:L. "It gavname an%L !nor's wD! a@#we1 do:for opennessso ashame{ i+! 1lika% y@1see} "--Y1senAa li7 pabto sholive. ItRawfulX1ink# Qose l1 and ladiesD'! [ breakfast- !anפty#or^b. So $myr-clotherv made a bundleAthemashouldbe trace [D2wayDcno one!fi!em/!is Et wed/s Paris to-morrow,ftd Uood U, Mr.,sSBo us3!ev,A howCus iq Cthanh!we+RlearlfDkind+P AightU[duld be>> ourselve  ,Rif we $soq v:9;"us o6VFrd "QaloneF LQhis rooms at /5Now[ Bif KUyou p QI hoptV!do!Bmeanqx"me Ly no means relaxKrigid attitud.Alist with a froD~Q browa#ressed lip2s Aarra "ExcuseAhe sK " !ismy custom to discusmost intimate)#alU: $is@ "y761form .LDshak b I go?Oh, certainlys#itL1youZ#pl"1" H5acoldly>'z at whichJRxtend 2himhhoped," suggested"Ey!jo!us`a{ BI+&%skG 5z1spoLordship. "Ij3forߢacquiescse recent developmentP"qbe expe9"2 merry overzyour permisGqnow wis aNgood-night binclud3n a sweei&b3 sC 3rooorI trust1you3eas^$QhonoueNQany," ;Fways a jom#  T AI am#of5who.>the folHa monarch4the5| a minister in far-gone  ut prevent our children R Rbeing day citizens!Bsamep-wide country u a flag7all be a quartthe Union Ja QStarsdStripe $AThe CK. an intere1oneEmarkUour *had left us, "because>1rve O DRsimplg *!maSof an#atsight seemaqbe almo!explicable. Ng#natural thamqsequencuEs"Rand nY# %r LCresur viewedinstance,J/ 2You!noZrself at fauls1all$nF4first, two facth++f>/Athatn G3een-Awill>og4wYceremonyelshe had repeoQ2ith$ew.9 $rerhome. O5Mhad occurred dYf3e 2 n her to changmind. Whatdabe? Sh  aspokenn'Rnyonesf0iebridegroom. Ha#n+2oneA? If/1had341mus &d$ spent soM" a"%isk" *vLtallowedR deep:!flB2 oCthe mere2 of.VRinduc$Aplancompletely. You see wekdXsa proc?#exH,a7BideasMs[e 5who"%isM# b= w he posses her? Itb>Aver;aight  husband. Her young womanhool, I knew,!in["gh(FQ condS)s. So far r !go{ e,arc'Qive. = l~ mt a pew,|y#'s %so transparent a device Q obtak e# aPher resorc?2onf?Aal m ,}&signific7!lu[ to claim-jumping-- in miners' parlanc[As ta2ion ,person hIarior lQ to--hole situation be !ab'#elT.Rhad X!ffeQs eitqr or waepreviousTsin favouree latth >@A did " /difficul 2HT held informww sAvaluV!henot himself `9Awere;ck  5Gighe9xrbut morlQstillFis!kn&. Cweeks settlUbill [/ London hotel 1Howayou deI3the2]gBFprices. E"shsg1a bd eightpe;o2rrya !ongexpensive ! T,2are!anD"bchargeat rate. I6asecond.Im2ed in Northumberland Avenue, I learn AspecA`Bbook Francis HJ   x  #fo1 onu93ing r$atries est himU2upo Sitems bI had9Qdupli-bill. His[!erb4awarded\:226j&"th1I t5*KA enU%to1 lo0X7#atexI ventuathem paternal ad-oP1 ou6Bthem#it'sbe bet 3 waDtheys1makpair pos clearer botAthe ]$alL Rin particular. I inv!hi="Pyrhim keeappointmen.2"Bu,1 noP E," I A. "H nduct was hLAgracYAh, Wats/2Hol;miling, "perhapadnot beER?Y, if,e troubl3woo_!# * C,yglf depriv!ta)&'"!nd  e\judgemercifullyank our stw?! e5amecb. Drawchair uphe my violin Bonly problem B V"isi4ox(these bleak autumnals9 XI. THE ADVENTURE OFBERYL CORONET" said I as I stoovU ! i bow-windowdGstreet, "!is~dman com Alongrather sa {!a4ves )Acome.t." MkJ rose lazily~rhis arm3and6# `apocket!hi,ssing-gown, mxt-Kght, crisp Februa DsnowRday Elay deepa5gr, shimmkb;!!wi9dsun. Dcentre of Baker Stree_2had? ploughed into an crumbly b>~ytraffic, buH Bside+heaped-up edgeQN"oot-path& a ! eSit fe]# grey pavemenB/2scr#bu^cdangerC/oewere fewer o#2ngen usual. Indeed,T)irQ Metropolitan St n% 4was=qe singl1tle= wYc!ic "ucAdraw<(GGb. H\ x*fifty, tall, portlyzimposing, massive bongly d0%(ing figurHwd sombre yet/ style, in black frock-coatn% 1hato0tvcgaiteri!well-cut pearl-trousers. Yer( in absurd7GsY dignity features" hUArunn83ard1aoccasiy!"pr"r9as a wean gives who is22 ace8#1setQ2taxp&aegs. A2!!rae!jeg~t, waggl #eaSwrith3fac% * ֱcontortions]1"Wh *Qcan bb ! m F1m?"8Be isU1ingiQ numb7 EhousIh>55her5?c handCHere cYes; Icj thinkXto consul)bprofes!lyha4!I recogni\<e symptoms. Ha! Iy E?" As h3 man, puff Qb, rush(1ourNFpullCbell/!thlGa resoutqlangingAkaomentsSroom,R ges t=b so fixedIo!Qgrief despair inBeyeswour smilevF uto horr >9SFor a 1getwords ou>Bswaya bodyRpluckWOi 1 onV$dr-Re1LV limi&Creas:&n,bb6Df ?h/AgainBbe wallWOb4Awe ,81himtH1m a Athe j+ l" pzAhim Easy-7 ,"bbesideapattedy band ch3himQ, soothnbich he+"so:how to emploEHB"You% #to#q7,$ñ NBare fatigu haste. Pray waitfytq recovl!y fQt+most happ@ into any 1hic Bsubm: The man sa# a*2 or|bRa heahest, fight[ots emoti% h,ndkerchief oversbrow, sYelips t"*aace to)# uNo doubt you~ime mad$T#sep34TgreatU  "God knowsdve!--a5g6is unseat my %P&sohis it. Pp!disgrace I! faced, al"0  qcharactQs never yet borne in. Private affli1als@jo)every manM92 ) in so f. ful a form*A""myqsoul. B's,"I alone.Anobl(may suffer unless2wayUund +QrriblQair."#acompos T, sirC , "and lRa1 acYYoa>cd whatCthatfallen youMy name," answere Q, "isWfamiliar tmr1-am Alexander Hold!an:sfirm of & Stevenson, of Threadneedle StreeFT)BndeeF  1us %loReniorn cond largFtconcernCity of chappened n, to brKa foreI,! RlQApiti}pass? We waitl curiosity,1!noeffort he braced himWhis storbI feel1tim"ofnQhe; "Eais why]&2– inspector$AI should securer co-oper^F RUnder9u;tr)foot, focabs go slow(rqsnow. T0!wabbreathO1 t*- exercise8Ceel Anow,Ib#2put  Qyou a&2rtl eyet ash"2can'QIt is? aO-successful$ :@ as much depends our being 1Qremunve invesstour fund our increasrur connoO 1 of"!debors. OL2our'2luc()2lay]t money isAshap1Eloan? Qurity|unimpeachable. We{ !dogood dealV&is2& !T?Afew P%!arYPQes to*8C sumIlsir picQlibraO! ov "te*Yesterdae$ioffice a$ qa cardb>R (by6clerks. I2tedBbI saw2ameNiAof nGqthan--wWE3 e 1youd\bsay noB %Qwas aq" Bis aBhold;2all$ % Qrth--f.,<2st,qexalted_j%18!asSRwhelmhonour an+aemptede&dDbsay sohe plunged e5to |`5g 1who;)c hurry quicka disagree2ask2'.Tder,'v B, 'Ibeen infor8 2are qe habi2ing.' "'The firm doerm ia;E.' I7 Aessej have 50,000 po"t .yI couldVaborroweArifl sum ten timemsIZapreferake it ax&ofQcarryamyself!my#you can readiln)!stNunwise toL one's &under obligs1ForQlong, I ask, dAwantPb sum?'Next MondayBve a q sum du"me+{most certainly repay +(,Awhat ) you thinkAo5. B. @6Pbbe pai4nce$]b /=*without further parley1U own TpurseuqI, 'werE#no%qtrain wS Cbe "it bear. If, oa1 Rhand, Qto doo1nam3t in justi aHner I must insis,B in 1ase%rylike precautionJbe taken^JNTit so/qhe, raii!upcquare,qmoroccoJh$e laid !s +S. 'Y5 K& Beryl Coronet?5iou0Y'1iont |mpire,' n"I.'Precisely.' He open|0e6a, imbedde"ft, flesh-rgvelvet, laya &rent pie2,jewellery7"named. 'Ti ag irty-nine enormous beryls! 6#91gol^ bcalcul The lowest estimate> d worthNc1 at- bprepar##leMN`sR 3ityaI took>3casQmy ha !nd`me perplex*UCrom y illustr!Sclien=|wB its D?' h"Not at all. I only3t--TzRoprie9 Cmy le"it*eYO, at rest Athat hrnot drea"do0U,vin four daysO#IQit. Iwa pure0form. Is sufficienSAmpleO', am givingRGa proofi z{)cD\rin you, 3all]\>you. I rely* ?Db discr(2`Rrefrafm all gossipAQtter Xrabove all, to )02rpossibl2 bev.bI nees@Cat apNsscandal1be ;d if any harm%f3At. AG'1jur&itA1almDRs se"!asL-C lost#no )qto matc/ >o%imto replaaem. I6 %, howeverG a call&j/+$on! smorning1SeeYh^ 1anx-"toA, I 6 Bbut,oPcashier,Ai1pay fifty 1000  Q noteX#en5Qaloneu 4 "ly:t1ron# 4me,z D notRO2inksome missBsimmenseFit entailmW%re 2 no,e&i"n 'al6, a Uensue3mis%1Aoccu /Y" hever conse*2takqQge of1Hv1toos to altj70qso I lo*Sit upp1saf" 1E%  Sy wor 1eveO came I fel% Pan impruden4 gF so "a A ebehind me. Bank.Asafe5XOd?1and not mine be? IfU5A Ih)%inJf~ V! I E r,Hp"ex Ilalways Pase backward;1for !meq$itt$bej"ouKy^(w!thZ qtentionfaQ cabmBdrov& "1 atqatham, e" # I[)1Qe freIRtakenzbstairscbureau#ing-roomAwMa6hol#meID:qto tho '0. My groo ge sleepeNwm#side altogether."three maid-servantP#,wV# aa"2 ofMTose  reliabil/Squitesuspicion. An , Lucy Par: oA-G22has"be my service a fewths. Shean excellent"r$and has %Nme satisfactS"apretty girlA2ttr^wadmirerG$sly hungG&tK"ac$atn3 Arawbl:chich wAfoun72her&( Ueliev54V-i(Sry wav"Sorfamily itis so smB 1illktake me lo#describe  sa widowGhave an yArthur. He has-eT" U--a grievous. Ye" $lame. People "me<)1spoahim. V}C!!. mZ-Idied"he. "ll} !loD!eae# fade evga a mo)Afrom""1facYAdeni@"}Csh. {Z; 0l#fo/Aof u" ITsternyI/B>3bes,!It d, waywar'ApeakPQtruthu3not^?5him AhandU(of#of0!yoe !mee'*an+eBclubu # 1ingmS"7$s,<&!so-Ce ins)ofmAlong1ses-4q habits'3ry"ly at cardto squanderSturf,F#q 31com !meaimplor!todn3-!hi2low=1tha`q settle3deb&3ono0Qtried<n to break awa],,vD3anyehsE2O1achUBQinflu= !offriend, Sir George Burnwell,!Adraw0D,N !wo &a man as Sir o$ p1 shv$ms frequently$2ugh v T|6HIcdly reore fasci +1is 1 th 6,*N "e-tips, one:Pabeen 2I,5 ,601lliRalkerLof great Fbeauty. Yet1 k*cold blood, farMthe glamouJBhis mcVam convinc* cynical speech8the look!ca!in)"  be deeply disded. So so, too,5s mC DMaryQ}-oman's quick iny>'c C now ai 1shese"db my niece; but0Qmy br/ Qfears ago) Cp;1lonCAI adopted3  vZAher Tsinceja sunbea Q--swe"ov5eautiful, aful managousekeeper, yet as teqand qui.d gentl|s5 be1my }&# h!do aknow ~%5 do nZ %onh!kfr gone(!my es. Twice my boy"skc .ploves her devotedly `#skedW4$on3Sdrawn!toOpath2she U1his4iagnXBd).2lifC#Clas!Q--forM!KYM1you6&p{ who live u bmy roo +#  continu my miserableO%#we!akiDoffe!T drawn<VTQ din cI told pMary my experiG8  treasure d3ourCsupp 6vame ofj.. -C, haKr sure,#-_ I cannot swq "ha"Adoorclosed. =SAmuch Rreste'!wih0 famous RI thot7" oSurb iG !'W!Qyou p&#?'po!'I3own.pWQI hop{goodnesshouse won'2Cburgled C$! ".'$hen/?up,!Oh, any old key will fi IraP Bster" vb#itCkey 1box cupboardHe often had a wilddN tTGroomTS3# 7$gr,ALook here, dad,`7acast d!9'can you let m27"! sharply.9#qfar toomRerouscyou in&sXBbeen7kin2, 'e3musPtioney, or else-Jqmy face[!deBclub1DAnd X#ooSQ, too1crir "'Yesv3you#no"me it a disR eed man!he0x%he..Brais6! .bme way$ih 9notM-it, thenNRtry Dmean},o ^&krd demanqmonth. V1 Qa far3 !meLB, onbH{ X75out,Dword6Qen hegone I un=#my,Z2G(myDras safeH<#it" T9'to go r Uecure--a dut aI usu#1to 51"itX3to perfor^q8!I 'd-.he stairs/w`!he/2 aY>!ha\3shened as I approachjTell ms qlooking3, a # ed, 'did youALucy ,go out to- ?C?%Cnot.#7 b ,OdoorZshe # :1gatsee someoneI k$#s {Pbe stoppeW?\6#, $llu' it. AreG5 is9I%daT/Bgoodh.' I kiss Yd#upsbedroom )#reLsoon asleependeavouJ0/7you 3mayc qany bea@#up5cas1beg2Bques%"me4Aany  Dqclear."m ׃yBQtemenasingulqXSlucid:ITa parQstoryBwish1DRO!. ?4notaheavy `the anxiet/ "nd%d,,e3f,B. A#-won{bawaken ,s(!inC"had ceased &HSCKi(d ban im on behinsY Andow cgentlyF1. I&BlistAwith<my ears. SR6" :rlaR Cinctof footsteps mB sofAAnext( `$@d*Bof b6l palpitatfear, and peeped rTQ2orn D<k' ascreamoyou villain!thief! How daEr touchCk 8bThe gahalf up,D"itSmy unhappy boy, Qed on his shirtVtrousers,Eg(t0'ight, holdOQhandsY bappearbe wrenching N1benI!itktrength. AQcry ' i'grasp and=*2 pacdeath. I snatch;u/aexamin23old!s,a thre#t my anger.X first to ruso#1oom,y !ghY2ron3 of !'sA, sh#+4 2and a scream, fell Qsense 1 g5!enA-mai$6 C!pu& investigs"in iX0R3SqspectorHa constG4lv yKsullenlyD-Gqrms fol -a me why#" i=!my;n>W1rge#;Ka theft@ 3nsw5  !3'" eahad be aO uawas n@al property(as deter^8wSits BeverHAt leastzdmsTAt on_2t &b advantageBmine8 'Dsminutest$'T qmay get4v7^ "="al3you 8Iz Qreali]0readful 35 9 QplaceWimplo+#red 1not ! Anour%of.was far great{kat stake; :hXaO"todU-  convulD avert it _k8Qell $wQhad d  T stonBaund, nor2wre{ 1boy`5oa~persuasion#2oury ats. This Qremov1 q a cell I, after go hU}nZrlities,H@1 toDA4 to #us>Askil(RunravDc!op_0 at presenz$ )ofK4go to any%ehnecessaryh/jAa re-Fof 1;. My God, TI do!g+Ulost , my gemOCmy sAone .N. OhOHe put a on eitherXAhead&r`/qhimselfand fro, dr 9a child whose grief has got beyondSherlock ) sat silen(]4fewn,T!hi?ws knit@his eyesL wDs receiv%R?" her "None sav vpartner*gand an+Q frie " 7's.o%%Kqseveral s0Qly. NQe els#athink.bgo outin society?$}S does A sta'home. We n)1carMJQis un&NR(Cgirl,Cof a" H!sh#oG" is four-and-twenty[SatterSYEay, jfw.Qa sho" #$soNeH#! Bevenbaffect'3n I1Y*1youSdoubt/your son'sHow can weCwhen  bmy ownY dImbconsid qt a conWc"ve7B. Waremainder ofea1 atsinjured6Yes3cwisted~s Ahink1nh straighten itiGod bless youQare dM"ca,1himfor me. B # iOeavy a task. What was hP:+B? Ifu Apurpere innocent, why did hB<1!if 2erey>Rinvenre? Hiscscut both ways4are+qs about Ccase!diBGQ noi ich awokdR from Ssleep6Theje #itrbe causw'"2ing$5#A /story! As ifU)bent on felo uld slamdoor sowHwake E y#D  appearanY !seUrtill sou;the plan%4robfurniture6p%fi?mFBHave14 ofGq outsid = 5_!sh6xtraordinary energy5 whole gard"4s yU%lyl&0sir," saidJMi:Qbviouyou now E 1 re cstrike{ much deep v  1wer {Qincli5@oR? It  CRsimpl;ai!ms3qedingly-clex. CQ#z Bvolvbtheoryj>Asuppb downR1ed,hgreat riskX1S',e"edrbureau,?!our, broke off by main O8# ar3 "it/zother place, <AgemslB+A  that nobody2the# then re9R *9ZTsix b <he exposedz bto theU3est/ of being discovered. I ask] Qnow, ECch at tenabls2But""isD"?"xDbank a gesturegdespair. "I-rmotives+ ko*lAexplCthemI1our4 toYat out," replieS; "sof] epleasenrder, weC"seafor St84am 71, $Aevot ;hqo glanc!C morU"lo detailMSHA insYSmy ac SQtheirz dition, ~eager enougJ"domy curiosity andZaathy R.Rstirrrthe sto?c d listen=Bfessw5uil i's sonebe as8aJoC1fatq.3butsuch fait Holmes' judg SI fel A mus5som's"asy7+ !wa 78iaccepted ʜhardly spoke:3Y"wa; southern suburb"athis chin<rt2andP3hat-W< c, sunk4^#st8 Et. O7( 1Ltaken fresh"t =aglimpsDhope2hadMI.m!a desulic fith me affairs. A short railway journeaer walk b"t cFairba modest reside great financiL$ ;a was a+)-sized squar of whit<2ne,Fbackfsroad. A doubc-sweepPa snow-clad lawn,Rdown 6D!nt wo large iron gates!cl+!th #. #Rright-wooden thicke sich led1 naEMpath betweenneat hedges retchingathe kitchen /Cform tradesmen's.#ran a ladStable&1wasX!itCwith&3Call,0FSblic,?Ausedef%/'usB#do&walked slowl@" a, acro\e front,dBpath4#soF,  $ <$EAlane4w6^1d&1I &A4din # ag>ewCfire"@h Ruld B. We]DJilence whe- 3lAladyY 1 in2(MGthe middle he=#c slimTdark hair8Cseembdarker_8st the ?apallor(er skin. I do\`Km6C2see deadly pal_!in+6face. Her lips, too,5 bloodl;Dr eyE cflushecl,+she swept R Broomm&g r` *'NT&erjK0,_  aing in>awas evid5aof str;qcharact ith immense capacit self-re`nt. Disregar#my1ce,-!ghAher uncleEnd f3heaj|tUly caB"YouqSorder0 dArthur"bea$1havQ not*!?" r, no, mCAh!! I am so sure  #a's instincts I5B2hasxbno haryou will be sorr=Aactedharshl!WhC2he #n, 1WhoCs? PrabecaussZ/>suspect hi(3HowisI help #m+rn I act.5"Oh only picke6j,:!atOh, do, d=H$ 1LetAdropSsay YJM&soQ6ink of ourin prison!O\$0Ablet itk  !em1!--,,V#! Your affec1%fombblindsjawful conseqI>srme. Farg1hust3 4up, a gentleman]ainquir,  2it.FU, fac 1No,&: 6up!him alone!cu/ZE now !?"w  eyebrows. "What can he  Sere? Ah! this, I,/)CRtrust`BQin pr%,,DbI feelzJd truthBmy cousin#%|is crimeI fully shar<r opinionV3you"wemrprove i=T, going La to kn[ 3nowvbis sho! SFv \"Tof ada Miss { 1. M a/s or twoFAPray1sir!it!qto cleaP b3 up?1ear5+Ayour# 3lasz3pN", ,cj qre bega%speak loudl 1eara!"32shuhe windowQdoorsLA. Di fasten alm<Yk!Weev 5  4ave a mai= >dheart?]n4youYQ,sAbeen\to see himsOtirl who | <5vW' arks about_fVinferQg7Ptell her 8"wo"avBe robbern1goo1 qse vaguQgories," |q impatiQ 1, "Z !ol8  s2Wai9ttlGB. We Gcome5Cat. U2his girl, +!aw !I presumeBYes;9 I B!if=1forLHtwslipping[ n fSgloom$Dt Oh, yes!reen-grocer!brour vegetables.1nam!Francis Prospe;"He(u 5lefadoor-- # say, farther up 5is "2 to~O$Fdoory,T#id !An'`4manJ IB leg:BSomehlike fear spraPS's expressive 01 eyd"Wh5A areKdgicianshe. "How d! CthatKd *9+2ing#R in 'U ,xIO be very glaDEo go)PA h1wisQgo ovzP1sid|$thw. " better taF  F5wer]fRIHnbwiftly!on qpausing>*# a+'4ookF5all %Bis h%!ed bmade aPscarefula0 asill u1G$ow5Egnifying lens. "NowmX\Qhe atdh. T-?ly furniu chamb!a uqcarpet,5rgeRand atmirror.pzSureau 4and`Ehard%ocTbich ke/"to(-it$#emy son%indicatedJvqcupboarthe lumberRA"Hav! iikAis i,> &atook i( 1andEF!"IZa noiseless lockv#Qno wo#!thjA did|2 wa! )c5IEume, contain;! r~eit." H3theR4and\E"ouadiadem63lai$1 Itaicent specime jewell^3six -dcfinestBn. An+1craAedge1ere$Grner7#re=torn away 1, "s " ^ correspondORUso unAuly lostw R begQ breay2offb recoih !or01not[Cm of %jTKcwill."Q sudd* #8!itout result|d"itc?aEqhe; "bu,Bough I am exception!o 3ger&_m] my time<*U. An "3manMC `d+Chinkabhappen15didY? .Aould\pistol shot. D" t@3all pFcfew ya. bU8 5,u?" "q Sink. "ll8SBut p!it2 grow lighter24 go$Shink,MW ,I$/'.Uplexit)BYour# o+ 2ersC"enIuH bn save(5his;<VQ"Than!O ehave cA(cfavour !{ luck dura#isyi;All birely our #ault if weCcleaVt: 3. WU6r #, F nowzK9my p6s outsid"He#, xaown re   #2laiat any un footmarks mW22ask!adiffic<F1 hr |at work,#4ing(  x bfeet )Asnow5his} as inscru as ever.9%AseenAa*4s"  H 'byou best by!toSroomsBe/Jmes.<"y?d+2ellC !wrUs~  1 semr!!"cried. "And R? Youme hopes$My is in no way alt$T=for God's sake1was| 7Rwas i#HhousI%A can3mL rmy BakeV$1et k to-morrow 8Q betw1ine6t*-51you3Anot E!atr !  little problem#no4m M!it1a deal. Howev not sit gossiN3herL!"ge%se disrep 2offReturn highly respec2 BselfoRsee b^ Amann8aS3hadK$Rasons.=+Aactianwords alonf?imply. He+ twinkled, c"a MJof coloursallow cheeks. He h.Sstair( rlater Ipslam of SSdoor,t1tol%"wa\# congenial huntI[until midnL' %Asign '#is, so I retirqmy room]#unWqfor himAMy for day r5end(ot_that hi:W!came no surpri "atW h" Ae c]qreakfas%!thnchere >#a GZ2one<Hc paperw! oL-&erim as q&will excuse my beginCwith23#, " said he, "but1 Cour client has raRAan eO!apNPmhF%is !."b after snow," I_ EI shuDbe V8were he.mUought5a rta, indeed, ouri#5-:11shoRby th3ngeE#ha1ove>this fac&raturall\ba broamassive mould, 1pin?and fallen in, whil**oHEq a shad"tegrentered  a weariand lethargymore painfulIbhis violenc7Bfore'NSheaviZ*Aarmcwhich I pushed for?(1don 9uely tri! AOnly 0#goa18"spY2man$out a ca,KQ Now urleft to"elLX age. One s comes closfthe heels oLjniece, Mary,cadesert+ED3youC!Ye;Ar beY ²Qslept1herRemptyaa note!me.R!up #W ld/N>$ "anin anger,Bif sB ma Rmy bo#been wel 5him! i# 2of w<by# she refer*  : "'MY DEAREST UNCLE:--G /t#bl5you  4differentlyu#te%3mis"  _r!rercannot,f?  in my mind,+Runder@9 a {w(qyou for" DSworry($my future 5s /for; and, fDall,bsearch for mA!it be fruiRlabouG an ill-servicme. In life o=Bath,y/ing,--MARY.'CWhat!sh na etqmes? DoAit WssuicideQNo, n!ofoDkindH|d solu/S)dC1youT ng_eCs73Ha!V$By so XQheard kAmes;Ahave!rn-)!UYou w.1piece ancqsum for0mH{ dpay te )_7be q. Three3s2ill cove$mA Anr/a rA, I c4. HPcheck-book? H=pen. Better mak!ut4WRdazed31ank>!de;tk,dw. Holmes "of "de1=!ok>triangular pof gold| t,1gem61it,h threw it downQshrie."jo4 2clu6"YF1 itS gasp am saved! "g"#re i!wa :YRaate as2=k 3hugqf1 re !ed>RbosomT(!th71ing&ow R!j%me sternly. "Owe!" He ca $up91"Na" I6payW.!No0b debt  *(%ow$1hum+dpology noble lad!&Q, whoen812 ashrbe prouee my own sony, I|Achan! lAone.1"ThDr)"ho you yesterdaI repeat to-VlY+1sur Ait! !le7:bm at o let him k&"hatruth iso!Hes it already. WhenRclearcall upan interview#hizBfind1at  e story, 'sD#on k WRnfess " @IAo ad^&few detail1ereyet quite U.Your news$is- 4, h1may$ 4lipFor heavenn"is8 mystery!aGYdo soY2sho(vdteps b bI reacYBt. A+ R me syou, firstm bhardes!me-"sa GeCear:4#an understa$ E'K!anr0 +0S. The-rDfled togeth%+!My,D? Im.V $ -+ . Neitherr" nr AknewUtrue 7"anyou admitted him;sQLcircle. Hf\most dang en in England--a ru gambler, an ab_ 2elyej7 villain, a heart or consciencaiece  7C3men!heӜ1vow. hes he 39Uhundred befor8!fl3Bhat she uG1hisitc devill wSsaid, bu?Ns rhis toor!wa* the habit of seeing him nAever" qMEnot,3Qit!" /an ashen2 RC9you) ! i^rE. Y>,! h:thought,0F`$ Rand t # lr 2r leadsa"neR"had pressed ( WsD"so$+!haAstooQre. SlYe coronetm!wi#lu! ekindle>+3newR1!en*!isvKUdoubtB, bure are woAwhom(1lova6r extinguishes allI` %2sheW<oVuDinstructions*=a)coming down\2shetbrapidl[3^ fservants' escapith her wooden-le T4alluYour boy,T ,8%!toQafter v2you he slept badly on accounhis uneasLhis club s Qmiddlp1ighqa soft trea]=door, so Bse and, loo^L2out3Rto se'8$ 2ingstealthi]A1ongxspassage !sh}/c o# PetrifieC astonishmena !onW5NDdarkbwhat fis strangeD2. PUly she emerged ullUR-lampdson saL01recLB!ersmbpassed,k1, thrillingborror,CBlongAbRbehin}!cu&g-c' Qsee ;f1qbeneathL1saw"1ope" ,# o&"%on5dthen OiO murry bacA, paeQ N> w+2oood hi"AsQ scenE2not,Bany ]%Qout a3iblOL1 t} 4Chom 3d. (A in2was;lised how cr=ab6(-importan 3Ct it rZdown, justg A washis bare fey1pen9,~57outk"an!ne!erdRsee aFfiguLAmoon. a Burnt!toY'Aaway4> vwas a struggle2(Cthemlad tugg*2oneGVhis opponen #th fccuffle]son struckq and cu  Qe eye ]% /csnappe$# Mson,!hae# dhands,Rback,L/bascendByour+"ad4sobserve.n#DbeenVQ in s endeavouroCight!he wKkIS #?"<\& Y:aen roul1is  b by cashim name,ra momen3fel 0Cd deawarmes"!nkr3notLf1trutd!ou %raying one who R&lysNconsidera!au5!5' chivalrous view|TsecreAAna2why Shriek0qfainted6#aw,X , :der. "Oh, my God!R a blind fool vr$Sen! A!asRallow!go xc2! ar fellow wa% i"miopiece were'7! z 2. HCellya misju3himFWEFrriv> house," continued Holmes, "Iowent ver8eAro*rny tracesnj  Dhelp me. I nh!me+3Balso yaong fr!to qerve im qions. I#edthe tradesmK! f/SramplUTindis able. Just beyond it, k: fa& E>aCtood$#Dhose1 on1sidKwRcShad a A legbKeven tellZyY disturbrhad runH ;!to as was X!"to heel marks, while Wu had waitedO g2hadHaway"sB(!be2mai!2her{'heart, ofc # LERnfsinquiryp" i&sok" q?Qardent aout seV1any6random tracks!a aolice;&%(go0 Atabl)n2and(em9rAwritb1now2froy\8Z'1a d3 li of a booted!annAecon uni{#sa{"debbelongm naked feet.>tconvinc w0-|'<dZ1son <1hadRed both wayshsV1was -Ds ov;$deTboot,J0R " F 4 foahem upAthey)R! - < BBootw:!ll)-52way1ing.n'Z ! e"m)Q hund %8r2dowo1lanaRfaced"er1was Qup asx#gh % aH" Dallyj0Adrop5Qblood&,< 2howT not mistaken.,ru Y"an>^ Qsmudg wMRh !be) 3urt1he (highroadO kAend,!"unZgApave *$g)ca`e "On&_ h I]you reme@2silframework 4 my lensfb,$ 6!atZ-1 ou-* $utan instepuet footEd inqR6'en)8 !blform an opiniono 71. A9f;$ BMjAems;+2dee0 qoversee1; h* pursueq thief;1him[yQir unv# cCinjuries'2 n JDeffected\s.GRprizehad left a frag TgraspDa. So farQclearK ao31theiho was it&"hiN!?91It  .axim of mint wve exclud~z7ever remains\  robable,! 1> a1notb!f8Conlyya[Y sQif it pAmaidE3 uIRr son[ CAto b[H"irz"? &"#Ube noA reaA61lov2s +&n 3bexplanQwhy hO 6Wa&U!--Core c#he8 disgraceful  2her#atU 4 sh6 $onK }1 agKm!eajectur,Aa cet#1And!SBit br/e{!feBe? A Q evidC)a, forACelseFboutwei2gratitude/c feel?2you@3out5 @QcirclEZ.s:1ed cBut amm'Sir George NI-JFyAefor$b of evil ;3:b^B. Itqbeen he.awore t Rboots g)qgems. E 'heLhFUb#he sstill f l]  %afG*Kqnot sayFr !ouVMpromisingK"3own4 "CWellAown 4Rsense1sug# measuresH#qok nexw2shafa97 to#'sc manaA Bpick acquaintanceXhis valet, learzCsaK%3*, X agoof six shillings2all%Qby buRa paikhis cast-offB:these I &<'to#c"at exactly fitte "." saw an ill-xed vagabon&ne&?FrTqPrecisewRto)I. ! I^mEy 3Bhome1cha my clothesUcelicate partVSato plF"ena prosecumq avoide savert o 1tut]"s+ !habere ti "en%qsaw himH$!ofQrse, B1nier7ave him everyd O2tri1blu2ook a life-rU wallnd I clNF!toChead8 !ul! $ik h1l Sat weBgive#a2forAtonenheld---1. TP oAsign#*w. 'Why, dash(6l!'5'I've letgo at six e"ee!' I soon g>q addres,>r1hads hm, on m  (noB. Of8"et!) much chaff x _at 1000 ZBlooko ,m"2wasw#eventually g+Sy bed!two o'clock,B;1 reAhard day's work2A dK-&a great public !"w banker, rising. "Sirqannot fuBCords,`H~you shall ,grateful%w6 Ave dYpskill has indeed Cededsv"#ofKd now I 1flyy dear boapologis1him'Drong! `drmRpoor m5ait goe*#myB'1Notj-acan inT#mepf2lou b8Bintoz!ofa statI*!eacconfin?4@_ 1tasiAplac9<P,k@ to effecCis Unly notable_N!he-+gqIt seemm:=you full#%ic&4A," Ksome coldness F epelled begotism I 1morVn oncnCt factor:sS's si6tcharact!No!isselfishn \5cei3he,@"as "hi, my thoughtg"myR . "If I ߲dfull >:!y "bean impersrhing--ag. Crime is common. Logic is rar refore it is dC)B#ha Qthe cUt {Qdwell degraded=&b1a c of lectW8Sa serL4talaOc!or7[ early spnd we satc breakfasta cheery fir2oldHat O. A thick fog roEdownO@!in b dun-($usa"pp*1s loomed like dark, Oless blurs'the heavy yellow wXsqg B lit!shS.Awhit.!th-glimmer of chinaQmetal2 .1had$U yet.  [silent all_, dipping continuousn * acolumnbpapers until at last,ing appar !up&search, hRemerg !no.! v!R temp2 me+my literar0rtcomings. "At2sam!   a pause, d("he*sat pufftand gazing:1, can hardly be open to a :&!of,se* so kind a .0!es  in, a fair propor ?Atrea Tz+i 2galA, a9S. They[ F) Ahelp{K:of Bohemia Qexper5F of RgqSutherl0the problem connec'"it  )"li- y noble bachelor, werh 5areV1pala"awYin avoidi07!at a, I fx9RAbord T(@/een so," Ired, "bumethods I hold BnoveB%of#iQPshaw2(,4d ! g1"und Tant 3who Faver by=tooth or a co7%tothumb, ca RfinerBGsranalysi  c! But,1, i 5 araca blamA t_!ay$|!ar61at. ManQ!at$6!stBinal$qhas los5 Bpris-originality. AmyW#practice, i VBting.an agency9?2inglead pencil$1givdC% d ies from boarding-schools3' X8" p}`Cnote5 d<$s zero-point|"ancy. Readj8QHe toba crumpled lASacrosBeRdatedMontague Plac2the prece ran thus:>DEAR MR. HOLMES:--I amA anx qVnsult you!wh;4 Iw $or 3notzq a situ+O o|F1me 1avernest half-past tenX! iinconvenm1you* rs faithfully, "VIOLET HUNTERR!Do ?lng lady?" Is3t I6[It isY no doubtXis her r4 Amay P!oubml &|+F$ ~$\$th5=blue carbunck!ich appea be a mere whim zrst, developedA serHinvestigation.Qmay bdse, also5 Well, let us hope so. Buj"9BsoonSClvedhere, unless Emuch&,/he person in"A+Qspoke(Adoor!ed %a fye{ room. S"qplainly9neatly dressed,1a b];A, qu ace, freck!iklover's eg>Erisk mannj Qa wo?Rho ha(her own wK@5mak dL2YouQexcus`Ctroubling5KDsure1she&"myanion ro-1greIVr-very strange 5 ,b;j s or relOAs of/Asort+em whom&3askB:Y X kinwshould do!"Pray taRseat, 3Hunqbe happ%do,-hB to /2you^P was favourably imF+ 2pee*his new client. He1verM9  rfashion'$ed$his lids droopingvhis finger-tips tog@, to lisCstor#!Abeen~ five years}2"in ~! of Colonel Spence Munrostwo months agoc-# HK!apat HalifaxK Nova Scotiaook his childrenTto AmericaM1UI fouT!Wout ?adverti0@Aanswn sM92. ASlittl̨saved begane run shorIIat my wit's e I2Thea well-known 2es Y calledSaway'*tUAI us*>!on[week in Xe|! h8srned up )$2uity }1the6-nu>Q"by aStoperA sit- AoffiQ ladiSo are seeaemploy2wai cn ante+B1and1a in onu#Bone,y)s  scledger%!se{ she has=Dsuit them /I!edBT as usualX2#UL qlone. AXBdigiQstout&Ewithx!mi2fac Qheavynrin fold Aover<bthroattRQelbow$^Qes on7Qnose,1ing! %Bstly ) | !ed)!I )") gave quite a jumpQchairUkIB'ThaQ do,' said he; 'l!sk AbettCCapital! c 1' Hmyte enthusiasticArubbXs5$.Smost Zwas suchy1forO-P2mani 7|C hi'KG8for , miss?' he ' Qsir.'6'As? $"ndsalary di 4ask2$4 T"" i(tast pla' ! qOh, tut!)ting--rank!F:,BwingBfat 2out J "ir[agho is in a boilO6Oc. 'HowR1any=ffer so pitiful a sumO1ladt2h !ttK1ons:accomplishments3,My,1be  ( timaginedI. 'AFrench, aGerman, musicx-TdKa. 'Thi:3all%beL T{ws!e ~B is, fyou or "noCbearr deportment<3.nutshell. IGSAnot, 4not,)A&rk61may1 day play1=ble part!hi rcountry have whHn, h0 gentleman3youdescend to a84hrets? Yourxbwith m?+Cdam,AcommE %4yeauYou mayHC Mr.,~to me, desti9)su1, seemed alttoo gooBtrue3, , seeing 9!ooincredulityQmy fafopened a pocketfT\t<ut a not1"'Ialso my custom:ahe, sm"V This eyes2jus shining slits amc&f!rei"  'to advQ6 my!ie]ulf theibh Atheyqmeet an#tl!nsG,1YwardrobeuI d'met so fascinatA S so 3man4wasQr in debby=$ 22!yer'Asome;nTaturaf &hole transE1mad mwish to know 5Cmorel# IBcomm-cmyself2MayQ&you live?I-Hampshire. Charming r-Copper Beeches,Ismiles >rWinchest*dlovely,FdeargyTuearest old2T-housRmy duFsir?i"bezL$% b'One child--onxromper just six years old. Oh, if/see him k/ cockroaches slipper! Smack! s qThree gc 2efo^Bwink leaned backAE Rlaugh (in>-3 startled5 enaturelhild's amus1#R, buGAfath^|5terRthinkWh(1 jb . uMy solebthen,'ed, 'are to10%a5la4ild[Qsole,"my1,' QGoYour dut1" bA$^# 2q, to obs fe might gprovided1thay BAas a@D propriety{ . You see no difficulty, heh,1jV useful.'Q bso. InB now*example. We are faddy people,(bknow--but kind-heartedQ y1ske1wea( n" 0w<\2youQobjec%ou3=w HN 7I, x y astonishG$#rdD 'Or to siNQe2sit@>hffb 4youdOh, no_W!cu9!r yqsJhort*u `W AlievAearsyj !ob1 j (bhair iluxuriant $peculiar tiE! vnut. ItVed artistic.f sacrificing i is offhandI am afraidb0i:" H=been wat2 me!ly  QsmallCIsee a shadow passs I spoke O essential $. ' # :^4 of:' fancieskmadam, #S8!be!ulycAnd soB5n'td hair!Nofa, I reT,\SfirmlA'Ah,S; theTbsettleo !ma! Ia pity,l'An otbespecth Adones nicely.1, Iqbest inX a few more 7you3iesT31ageP32had{F3bus 3her%ja}(a to ei, but shD"atjso much annoyan1her not help suS"shblost a *mmission!ugEsrefusalD2DdesinU%o be kept upAe books?'I^P d'!useless, sinc ev qexcelleBfers\ $isPy/LRarply' %expect us1xerPQselvefq%nsuch ope,or you. Good-da3you' She struck a goD At?Paout by3pagq3FGgot back3Tlodgi-p\1cup"ctwo or Fbill*# It to askLsodHa fool hing. AftAl, if theseNA fad_cted obediw!onKmostYll b R at #Aread1payeccentric#V*ew governe%in5qare get! BAs, k1useT? ManE 1 ar!ropay wear#it!5andj AI shbe among number. Nextv inclint   a mistakew4day+J# s6 3it.\Aovermy pride1r aADgo Bgenc!inRe@4the#as>copen uletter q1>vq-hAill IiK oyou: #/"'/HnearB "'F$3ISS:--< very kindly! n me your 9rI writety*^Cdecision. M i~$2hat QBcome @srcUmy descripa*o0" w*!to6 30DquarVx&12 year, so8QrecomXlt $= R our7#ma4ATheye1notA exacting, all. My )$fo particular shad:electric $Eould lik  1a dJ"in)- Aneedb, however, go 7@purchasing%asone belongar daughter Alice (now in Philadelphia),! z ,t7A, fi.AAwellYn$to4iIC "am,1 in! indicatedb f need: no Rregaryar hairEis no doub?h V i x = Qremar;its beauty !.!ou'5rt f aI must+9in firm( "isonly hope2theCased_ maythe loss6i ssh is concerned,~light. Nowr shall meer-dog-cart at1 Le Aknow2 tr w( JEPHRO RUCASTLE ^i. jv  1andCRde up[?h4 !ta ,val step to submi" zPr Videra?'  ,r F $ #$\@BeQadvis#toF !?",I confess-iE *w! 21 si*Bof mine appl\ .d1WhaWo:!ea9 oJ8all"Ah &AdataVx9tvP&)X formed{VMX{ c7Bo beDone ]Q solu Mr. Rucastl<N $be6!kind, good-^R. Is it not X wra lunatu/Sat he{ s13eep Ea quiet !fee Btake n asylum  he humPAnciee1way"rd!pr_A an outbreakNa1--in factAs stLc! ost probablcase it doe1seebQnice 62hola|1ButXmoneyl,!yes, of c%bpay is-y$. what makesAeasy. Wh4!ul w y6p*Dor 4* m!be# 9reason behind if I tolMcircumstancesq under>5wqAZ}Felp.!Ffeel"erx3fel Rere a" UVO> 2rryfeeling awa~you. I as !at!R4bpromisbdbesting d has w.L;()r distinctly novel '81 fes| h in doubt or ranger--D!! \d !#rforesee!3 sh) head grav=3"It'2cea,Cbe ama if w ld define it}qhe. "Bu any time, day or K, a telegrami#br1dowBXd^!."=rose briskl3herQ anx#DKEwept< ;3. "5 go*" 1easRTnow. 9 !toasT, o"dir to-rnd starSa to-mzB." W'Efew EAworde bade us both 2igh/Ybustl(AIH Aeard+qquick, Qsteps 1endrtairs, "shC#zAwellTP+take carsherself"An  Tto be0# Qwe do 3hea+4her many days BpastI'/Elong4%y >apredicwas fulfilled. A fort went by, U  DXfound>Q tur. (br direkp1ndeMestrange side-alley of human exper8 lonely womansy2 unusual 0"cu2conditionfP 2all ew$abnormal, Qa fad(8Q plotwj3man. philanthropist5qvillain_was quite beyo QpowerdeterminEO5, IKCiQhe saB1Fflf an hour>2nd, Abrow8 4abs8"bu[  Ra wavAis "when I mentionedI"Data! d"" 2@Ged ^can't makJ"ck out clay." D vwind up by muttvwthat no !hiuld ever z $ed V  FThe "2#!weIt@Iareceivame lat* `b just1was_ 7of <%an/2wasR =m)xS3allDchemical resear!6he  indulg?;.Ileave him st2over a retora test-tubK31ind>0>1pos|jdcame  3fasedH>e yellow en6,XQt!at message,Cw it9nBJustV'ze\ Bradshaw5!nd"!to-tbstudieThe summonqa briefEurgent on!PlJthe Black Swan Hotel at midday," it said. "D!1t mw 's end. 6S"Will#my,Bme?"`!upe w&oNTQit upnJ2k ,:5nin*Iq}Dmy A. "I!du| at 11:30q.cThen pWbpostpone my=ke acetones&M! aborningBy elevenOAnext "we1rupon our7the old4ish/.M Q buri^1all1wayQ R, but, cd passtk border Xhrew themBr4Bdmir h!ry!wk2A idepcday, ablue sky, flecked with u leecy white clouds drif V1wes!beast. nG*! :brightlyn :)Chila>!ni1!ir&ich set an edga )fergy. All ov; ntryside, ; rolling h!arV AldershotC2red7grey rooffarm-steadings peepedD"Aamidt greennew foliAJR fresFhiful?" I cgU% 2m9C man@qthe fogQBakerW!etT4But D Y"FWats]Qhe, "i"& +2 a3minIrlook atj$thmrq referown special subject^se scattered  7BQimprez"irqHy. IJmdthoughK2com-mair isol" a2!thAunit+"h Tcrime=!Atted "re!"Ghdueavens!c. "WhoTassociateQ{ these dear old homesteads?"lways fi;fcertain horroraibelief,  8o X ,4 5and vilest'!ey FLondFpresent a more dreadful recorL1sinnthe smil .HifulK1Yourify me!(robvious9!ur public opinion8""doi"1e t;>)1 laA7note3S'no lane so33 of a tortured child, orjCthudqdrunkard's blow,Rget sympathycindignAmongp neighbour72thechinery of%-!ic sso clos$aof com?Qt cansit goin?|"isa,a step betwe}"+R dock<Alone@Ruses,OHown fields,!ed= !stu3! 3poor ignorant folk(GSThinka deedy2helAbrueltyahidden wickednessqmay go year in, 1outE=% /o!thA0aer. Has'yaappeal!usBhelpn.T>Wve in 5, ICneveA5had a fearE j0p"ke'Adang;Atillis clearshe is noteBthreatened!No ;aan comG#Bet u^wqcan getDQ"soV<1hassfreedom$BRCAN bgmVan? Can suggest nod[!I Adevi se0#of75 cAfact.3farBthem6KsKbcorrecuoUCe9binformK!we*bll no 7Sfind k Bus. Aowerdathedr_2we Wsoon learn all#AHunt|GBtellT iC inn of reputthe High, at no di2t, F, "Shqengagedt:3roo]hunch awaZd"us%&3ablDQso de:  !atcD!coNs|id earnests~ "kinyou both;{ kindeed0!!doP r advicesZbe altogether invalug.>Cbell usUCappea&C""IX  "beEh$=dlto be backthree. I]3hisct|;1 t\4his q$hek rdpurposLW ddue order."c Sthrusdqin legs5 "to:Hr 7DQsten. I>Rfirst2, IX:"ayG=Dmet,),no actual ill-treatmen 1Mr.6Mrs only fair$Em toy'2the! =notQ"ck QcSTheir cconduc3yous!itpj9as it occurred. WPUj m" aand da#w K7F!, sr said, ifully situated,& $]elf, for$a large square bloca %dtewash\all staine streaAdampbad weat^Qare gB1s  it, woodspqree sid"nde fourth a  slopes doASouthampton highroadch curves past2% 5rf yardstAdoor s3 incbelongh$he-bBall 01are* of Lord Rertonserves. A clump 1bee*immediately in  ds'U2itsMES rbdrivenSby myD1er, was as amia !wa18Rroduc2himF"ev.!to) achild.!re"no^2iconjecture-#C usk#!ir rooms at 5 mad. I fh !belent, pale-"t,^@!an husband,!moan thirty,1oulo 1nk,63le k hardly be l?%ny-five. F,Air Z "MDonceEsurprise  in tears0asometiahat it%isP!of-yTweigh1her Amet so utterly spois>Qnd so nCd a $crH]!sm1for3ageTa hea"isdroport c. HisBlife!rAspenan alternAbetw?:savage fit'bgloomy.&1val sulking. Giv#1pai5anyU weak}imself seeme idea of?zthe showremarkable talQplannqthe capof mice,wRbirdsUrinsectsZI`1 rBtalk~ 7  6Dy, he hasmQDmsLB 1gla:all details,"&edj#R, "whi-%qrelevan"Qnot."I "trto miss anof importaG#ThE1$unE )'`j $ch7m>once, wax9!an5duc S[sun only two, a manVife. TollerK!is+name, is a rough, uncouth manFgrizzled&C$Thiskea perpetuTmell of drink. Twice9bbCRquite A yet4heatake n%!ic$it!ifaAtallbstrongkRa sou-,T ; asG and much , !4ia mostA, bu'"tu3 I spend1R of m) nursery4:#arf{3corVqthe bui]qsFor two&fter my arriva t62 my very quiet; kthird,. k& d"F3peru/-@'Oh, yes(BstreBD al"teaa seri3fun1stom1Clisttcannot ehow comical he was IIRuntil aweary.p4:evidently noH#of3, 1tas smils%Ath h{4nds_,2lapPa sad, &< VAfter+r suddenly F} i1comyB,R day9IUIQchang`/Jgo>REdwar*XT6psame per!nc hO q exactZmilar83a. AgaiW,Ka I saz Bndow heartilyeVfunny#of an immense répertoir?<6inimitablyn !!me4qllow-baB&Qnovel moving my  tsidewaycshadowtnot fa'the page, he beg;: read alou( bhim. ISfor !si  0a chapterV thenQmiddlNa sentenc"ord*#toit easily$5how curious I zs to wh rmeaning!isaordinary#Qy be\#[xcareful.,!ur#CfaceW'"soEdconsumP82seeaTEing 6ysack. Ati7ecbe imeI soonla means. My hand-mirro brokenthought seized mI+=aA pie DAglas)mhkerchief. O1nex_XasionOBst  I K.e#evm"perceive)g standn"Ro small bearded man in a )"su{  ?JW my directT!ad5nvt highwx!er B usbpeopleb. ThiscCas l@Qe ra&sbSEield1 up1lowi ;PJ Heyes fix"me  0sing gaz ,%Qconviss<ad divi 3 in my hanhad seen#SsY. t'JephroEashe, 'QertinRellowLo?%!er7!es= tZ".'l#No5! od )rsa?' he QNo, IN+2 nozsPsYDear me! How! Kindlyroh6ato hi"go$aSurelytould be gRSw_2uldshim loi3@.7away likeha ~< linstanDdrew2"he". 0reek agoQfx"atb  o&3sat  n2Bve IRhu|!ss ! 4thezP #adi#e2Holmes. "Your narrativ2misY,Cbe aLW2est&eZ2You.!ra)disconnected, I fear8g 9relWbdifferHcidents of"ch%ak4verd" Copper [X A too24to 1out1stau n8(e kitchen door7we approached ik1ear" sharp rattlM "in%XI aEranimal a CLook* e!' saidAshow e a slitR two planks. 'Is he^a""y?I$w Xo9!sc& of two glk*of a vagu]a huddlUdarkn 'Don't be frighWT , 6Vstart2had c. 'It'~Carlo, my mastiff.dA him)DL!re*5oldBmy gi(1man can do im. We feedc2onc>yD"ooWtthen, */as keen as mustard.Q lets]loose e CnighGod helpTtrespasser whom J,y fangs upon. For goodness'r! d1you y pretext sebr fooMrqhresholX<$'"asGlife is worthqThe warr  A idlK2two}9CqI happe1o -!out my bedroomkK!mot3. 2iful moonligh1law\## Iav1 Aover_ almost as bq as dayuAas y.5rapqpeacefu~ !ut/CFcene9!as4 uhITJ=$# >$it emerg5$moonshine I sa)S3. I a giant dog, ass a calf, tawny tintedAhang;jowl, black muzzl huge projecqbones. lked slowly and vanisW 1. dreadful2ine ecl, Rheart*\any burg BdonesAnd now*" a ystrange:?o*2youadj@5cdtin Londz,+,i]a great coirbottom 6Atrunyyna} QchildBin b Bbega5mus[rby exam;b<cfurnit21my !an&Rrearr?sG !ascbld che 1dran?w -wo upper ones empt Bopen$ one lockedl13theVsmy linef Z t4uch to pack. s! |bannoye5$otbtthe use pt struc@asbeen fa&by a mere overs1b so I obunch of key2tri open it. The first key fitt'Bperf&3I d_:Q openF"re.Aonlypx* 3sur3youY cB gu2"myrof hairj<!ed:naculiar4, Bthic t=%6ili obtrudq!~1me. [i3Q in 1? W:Arembc hands I undiF, turned.content p9" I>B trVstogethe H$Uidentical. Was i H1? PLAQDq at alRmeanttXBNeI saidYBmatt)the RucastleTI felp8i!wrEySing a%j)2d 6am #ob!?1youw/qremarke*. 2oon !ty T plan*PY headO!ongU vx be inhabit]btTA% 31facQ a%l_quarters ofa"s=)sis suitn#2driablyR Oneq a6H> ;met21com %utz}Qdoor,7 'Qhand,Ha9 on his face R4him|6hund, jovi}2 to Iaccustomed. HisÄ"ksa1redb brow/ll crinkl4angtins stood"atEtemples 2pasWH 8.qand hurrpast meout a worPGBlookaarouse curiosity, so when I wentQfor a` # 0my charge, I strom9IVBside-! 78l ais par9 #th##. fQere f HmCrow,simply dirty3"le0@1utt !upi*_all deserted I>2oet them \ally,1amedeto me,as merry!as.$Ah|Qhe, '"usW me rude if I|B'athis \1tal$%)!'sǤUinct;G!$ "<8wm any rate=w|%re wAV ElookSn8!nc\Dpass"rb6?I_ yesterday1thexRce cau5may%, besidesd, bothH"is3GfindCcto do%se  I once saw him carryw S" JB bag=0Aroug B RecxAhe hen drinkF#ar 5!hevery drunk;Ecwhen 8qupstairq[eR oDJ> Qd lef .`2'1wer rh down~;: an admir(opportunitm Rkey g< lock, open7 }Qslipp~i&as0apassagbme, unpap9"runcarpeLDhichSat a gCngle farther end. Round +8Adoor a,P3fir|+ :Hy ea 2an rroom, dus~ cheerless3two}t/S,a, so 2dir Qglimm:2dimAAough} mb centrSclose[1out_ v)[ hadsohe broad ba a an ir"bd, padone end tot\l$oostout corO!Ok3was( 5-Z barricadedLcorrespoM rclearlyu!thA Y %j5yetmRsee b l beneath i&inG% E* Ra sky!le7RaboveQ  $ s1gazFtsinister2ond1 5Bit ,veil, I suddp#ofV!wi?om and saw a,!owF $1warB for Rgains< ! cof dim7!shuu1A m"qunreasoterror rosemDDy Holmes. My overstrung n-=! oWAvento#qhim frei"Qsafet lay awake2the#! ip%jo'2cof see2.  0|5 inrGK lOShis # $ back befo#2$* ,]Hoen a vi5(bŽ"thl%Hning"Flook!N!fSmy ads $sh<+4gla"ldem0!itBmean, T all,T do." #li) aspellbK*isA sto4My friend 1nowOp!up  ,- i*ڄq an expg oSmost pro;gravity upoB$fa-$Is)+?""-!Ye  x7 Qt!doO%'L"-$#is"AnYRucastlesqS%ute?62Yes!"Ire a cella" aE;Flock:b wine-3K1You>3 to*4(K<a) Btter,-aTq braveyle girl< @k2you*# 61 onW'ue feat?Qask i$2you !di" y Syou aexceptionalt?I!trj#it'W%11 Co#,R by s!'cAq and I ocbe gonQat ti$nd will, we hope, be incapablY#erR*qremainsq9=V3 ga alarm:h 2her>!onCR errln"keD !X#facilitate s7*lyuSdo itExcellent! v#1thouLUe affair B feaT:b\f !reh%:1ate#on?(`3eal is impriso 2chaxYA 1who)# ;]r is,t$iJGXAliceb;b 'zCto ”were chosen, Leas res#$- height, - &Jk2! hUHers cut off,.$nA ill 1she`qUso, o i to be sacrificed also. By a8bchance%BcameJ%her tresses5"oa !un! Aedlyeehers--her fiancé--a)^Z7bre th&"'suR"so_h 4 uyour l"Awhenv!he 4Bfter>9a gestus{H'ly happyK,!sh|) " 59attentionHdog is letz.# a -qrevent J om endeavou Usmunicat her. So much is fairly clearbost se:%8qYaisposi4"of fon earth(atHit?" I ejacula10aWatson,1medT?yman arefL!ga*" ka2:'endencieFa% Ase studyC parents. Don'XmQonverzYA equ@*2valhave frequBgainm#Rfirst:inscharacter1tudRtheir3reni)'sis abnormacruel,z*bly forAty'sh01whet?aerivese7 1smi(OPsuspect, or !otuit bodes evilthe poors who is\ir powerD71yourAA," c %our client. "Asc3com   make me certamm!bhit it$let us lose not h"inKaelp toM s"We be circumECfor G1deaua Acunnsman. We3  W 1hou]shall b"it V qwe solv'W=wFh2ordqRl&we reach  ,-put up our trapUwayside public-hous group of tree@BdarkEs sh,ke burnish(3tal H# s*sun, were suffici=FmarkB 2hadBHunt9 j2\o)door-stepH1Havh=d1R  G(A loud thudding nois!somewhere 3. "f BTollellar," said she. "HI lies snoro57rug. Her)'!chuplicates of=' 2You d+ell indeed!enthusiasm. "Now lea~ #wa~:2allk"is2&!We R79o"unB*followed onp% arOS"lvyb 6the cMiss Daescrib*A cut3cor2emor?e transbCt7bthe vac+1thes, but  success. No s Katsilence'Cclouded ov/cI trusnot too latR;!I  ,#we. \g#1you,W1putrer to it)%ee%wt2not7our way in'$an old rickety+V%tat once]our united_*ength. T/% w YBemptE"re6no 3sRpallet bed,};4tab5a basketful of linpe"wa'.+Dthe b gonen$ villainy here`2; "h7! [YuesseG&#  Shas c6Yhis victim offCow?"2 3. Wghow he}." He swutDup o[roof. "ANB" he, "here': # agjbladder ae eave _Udid #im= X}]eeqwas not Ae9 .CawayBHD 2and!itE3ellQat hehr cleverimdangerous C q V"if q he whose step I hear nowFhinkQit wPb2wel your pistol read1ThesL!lyZ!of$ mpS0 a 'ah% fburly man,aa heavIaick inkYhand.Xscreamed !shGU wala8 m Sherlockv sprang"qnd con!edm=G4You!)7nk"'sL~{The fat man castBeyes|_O1n u "th&% {Peto ask}vQshrie3"hieves! Spiesb caught you,uCI? Yv jpower. I'll ser T!" He5aand cl4"ed2s a2e c5"go/BHe's* 5dog/my revolve I!Bc !thrd was af3 2usbE`ming forward1askU2allEBgivegthen 4$!it&7\a stop oyBRHe wa 'a sign6per#Nqor not, !us r money. When1oul21kepE O1she#A-fevnwsix weeksPt death'snB+ at last,worn to aFVher mAhair2offi`!nogJ ?Ryoung |*Qstucket1tru3man9b$AhRy=been good)q1mak~AbfairlydInReduceN%lremaint6I presume, toothis systemc 4men<"=DAnd h   London in ord get rid of qisagreeJ6qpersist'yroawas it;)Bub_'a "ev2 %as?$eaman sh)be, blockad1 d "mejteded by arguments, metallic or otherwise, i"vi> $ cP!amd3his9kind-spoken, free-handed gentleman Ndserene /!An, t%(ay\LByour7qno wan956ah3 be1mom"Bwhenmaster hado3outY3, A hap ,g1 ow< an apolog? o2"fo|v Ypu d us. AndSe comyqsurgeon E (4, F;st escorng *2, hmour locus standix s rather a question#on'uCsolv&q! o R sini3ousGtNSpper FMA in 8Kdoorsurvived'>*[a brokenAaliv 5elyd#rthe carm,his devoted wifefG2>>their old.who probTEcknow s!%of("'s/3liflhe finds it 5art mn nOX # , by special licenZYV&ay}+bir fl!isthe hold vernment ap  "inBislaqMauriticViolet4'  i!tof5'isf, manifested*tis2heronce she+bceasedr+ :of one MsproblemX+s!ea a private school at Wals9,ere I beliew 1has: GconsiderE0S ENthe Project Gutenberg EBook of The Ad.Ls ofV Arthur Conan Doyle *** END OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES ***Q1** FGfilenamed 1661-8.txt orazip **B:"anz+associated filfformat_*fHcin: http://www.g9 .org/1/6/6/1661/ ProduconymouswsvolunteJose Menendez Updej*!reA}qpreviouD!--(l0! 1 0. CreatingARworks!public domain printzRmeansV Ano :qwns a U States copyr0Cthescuthe Foundation (an!!)V Acopy distribute it! h,"mi.8gpayingroyalties. Srules, set forthlGeneral Term'2UseKoapply to copt>ing-tm electronictAtect <2-tm`!pt&trademark. c& 1reg&5/1may$Cbe ueyou chargeq eBooks ess you recepecific C. IH$ O#an&2opi~ cb, comp62 is~ easy. You may useAn?any purpose sVc0!dex%ivreports, per "nc1 research. Tbe modifi. given away--ydQacticANYTHING zes. Re Aion 3 !ubi"esly commercial rLSTART: FULL LICENSE =R THE * PLEASE READ BEFORE YOU DISTRIBUTE OR USE"AWORK_)o  D-tm of promoifree "-ofWusing or"thXk (or anyC -L:y  phrase "Ky!") Q agre4e tY4ullIR-tm Lx q (avail!is nline at Cnet/)1Sec?1. 9and|,  1.A. BdwD<UMUindicizread, undere ,v"ac. 1vL intellectual property (a/)dEment abide by f)|)mx#2ustZ ,d returnbestroyp>@ 2 inRQposse)2. " p"fe2obt?-! a: of or accesz a SAbe bY "by#ay a refun/or entity to whomathe fe paragraph 1.E.8U1.B. A" is~HR. Itnly be Jo@,an% bVfd 1 'Rare a QB2 doDmostV eve?'7b?ull1See.r{C below$lo"nggh  v1s i|q followE `help pre!free futurez%!  YCt Literary Archiv! 1 ("2 " or PGLAF), Scompic !coG C. NH 8individua#ks^' _!ar I  9Kan [$ i]Fgare loc- pfclaim a =38Efrom ,0 "pld #or\ 'ngY B bas,DJZ long asareferencepT are+D. O3hopAyou 6B!rtS  \by freely shaW4^ Ampli$6,sI Dkeep[Hname rKX qo ~6 =V by } A samm5s!it5Rached W q7ea1H- cothersDDlaws"plX1ereDare CalsoZ KE. C`sin mostBAies sn a coKEUAr changey 'qoutside| r, checkmo6rmP1ddi  % # a)download~ U /   ! U)ThYQno rek!nt8AcerntQstatu"1any yMh" BVE. U5havDu S1.E.1S1ingc!enIDith active links to, immediate W,f =4"aappear inently 91any/(W% (C#onI1y "xs" ( a)8 %ed%eded, viewed,p1ied !ed! iAb#2any at no cos vFAstri s whatsoever8#maQ1it,i1 it or re-usm Oincluded@2S W2net9 2E.2c7an , 2 is#ed8 ([1con7ra noticc)qat it i$57perL )work can bed RnRout puany fees Is)Qprovi! a` b"R 1 ei6(aequire6 of: s 41 [Q1.E.7Vm5 1 an / &8U1.E.9V3d#;l@Jr 0?&aZMbothKJEym$al92C. Aa q b"edQ" U`lJ Pa Abegi) a4. DoQunlinvdetach orX $ %(j'1anyD4i5EcopyZXed|  ;.Wout w> G"Aente-Q !.1) 9o/7 y k_*6Anver Fb abinarym Ied, mark!, nonproprietaryVSform,d process*r hypertex&Tm. H 'orF:t than "Plain Vanilla ASCII"e2>Nial vers~/  web site ("),#!mur'ahQcost,or expenseVuser,+H $y,| of expor ^N JurequestkP!its original D # Any alternatAmat '- ;}$asr W7#} 9 0 NR +/nyq Fs ux  A8 or\8Creas"$~f Y !!vi 1tha -lSpay a@u r of 20%q2s>2fiteV? 63calE)SethodH already&to5aapplic*1taxkT#isF>`2own#[ J1  %3 heF#haL!dogauA   A. R\Qy pay9 GM"bewithin 60 daysaeach d  prepare are legB $)gperiodic taxE ""cl[S2as nDsent! kaddres3b4, "In3ionG22ion  +8P" a&b moneyq!usn% Difieayou in=61ingby e-mail)KCin 3of receipt %s/  Oe s3-tm  4ust &to:   1ses!M/hysical mediucontinueM dly ,Vccordo1.F.3,mHl q replac wa defectyF  is discovero!!9GF 3allAx i(3for 'c h G9Is ?e aq 6 orFp1 onU!erWQ#6r' $y[% 1y-Michael Hart.Cntac, 3FOF.1.!'semployees d)b effoh ?nqify, dooresearch on, tranE\proofreadH'&ingk. Despi Bese /s,L  "ks'&Fdium8@smay be stor# qain "D3s,"s;qnot limato, inw!et0Qaccur0rrupt data*pserrors, Yw!! infringt,l"ivjQamage_ ~,Y mputer virusF AcodeUtH or cannom!by qr equipF LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Excepthe "Rightu,RTor Refund" deb 3 HO 4A 6 VpartyR  D | 3disll liabil" r!s,Ls A fe7 AYOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT LIABILITY, BREACH OF7 ORCONTRACT EXCEPT THOSE PROVIDED IN PARAGRAPHTHE FOUNDATION, THE TRADEMARK OWNER, AND ANY'OR UNDER'MENT WILL NOT BEQLE TOFOR ACTUAL, DIRECT, IN CONSEQUENTIAL, PUNITIVE OR INCIDENTALqEVEN IFY!GI[qTICE OF".RPOSSIG#.RUCH 3?RIGHT OF REPLACOR REFUND - $AH a ta MGving it,1can{Aeive$g !(i <  for it byEX written expla  v+dAworki#. !oW  P<yA!. (04or %4hat &H3the r+1 mac   in lieu" \ 3Bally 6! i'ray chooV"giE a secondzn5 tof6 {  *Tcopy is3iveay demandA .2iL"1fix24<4. IMf#orF inj, &is`'AS-IS' WITH NO OTHER aIES OFKIND, EXPRESS OR IMPLIED, INCLUDING BUT:,TOJMERCHANTAR FITNESANY PURPOSE5. Some s1$aN&f!erh7Q implqwarrantaexclus r>2typ /Qs. I* klaimer> [Aagreq violatUe la[ o<*a shall(interprec 2makmaximum2tte!th#la(1 inBWity or unenforce6Tfrnot voi<2ingsOY 1.F.6. INDEMNITY  to indemnif22holQ` 1%  ,#ag7/ ?d2?$`K W >)ny Qssoci,'#QductiQpromoj t3, harmless  b fees, arise directl#%inAfromffollowing2 do*a62o occur: (a) &)C!orR2 work, (b), modific%orcNDdele^O any[qand (c)L B youA Sen 2. 1theN/ Uis sy6$"(  Zas readSwidest varietcomputers !2bsoold, middle- qand newW 8-AexisJe  of hundred Qpeopl!all walk62lif|V7I financial su#kH assistVKneed are criticaو_reach>6's goalRensur:)O r will  )b2sfor genAs to_>hQ 2001e , w5H secure andeTanent-4fori 4and$. To learn"IeF 2howIo s#help, see 1s 34C - 1pag%3www.pglaf.orga3tO V TJ &A nongit 501(c)(3) edual corpororganizedA"ofassippi0granted tax exemp)= Internal Revenue Service \'s EIN or federalUiA nuIis 64-6221541N&s Blett%%e5/fundraising1=/ - 1are!de aextentc U U.S.2lawByour q's lawsc *'s principal office is R/at 4557 Melan Dr. S. Fairbanks, AK, 99712., bVsq 9are scatter3$hroughout numerouy1ion&'tsmK9 809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email e@. Email contact linkVRup toO7 i'Afoun@ !'s !2and9 W FSww:Dr. Gregory B. NewbyChief Executnd Director#vgbnewby 4D"depends up ZCout wide spoP; bto carE-V its )1rea#Cthe $+of7*and licensed |)# S- bmachin Cformi' a arra& 6 % #ut@Sc Many% ($1 to $5,000)jparticularly importax5mai&# .O IRSJs is com91ply l Qregul^+s>and charit Rll 50Pe0.6 Cv2 d*3are(Bifor?it takesGC, much paper3nHy me^rkeep up#_oT. WePzsolicitlA?Q"weH2notDved !qconfirm2G l3. To SEND DONATIONS#qetermint Fc0c1Fny )ee visi WU$welkc $s % "me-=K41knono prohib82$ Z!acnSng unJe a donor Bsuchs who approach Qoffer<  rratefullyBpted+1mak y{"2Qtreats'of1n;/ w3". salone swamp (QstaffbPlease3# W s|-fcurren methodqaddress5aredoGGwaystchecks,>$credit card 8Be, pdvisit: /6eq5. GenE IAyU! ]rofessor S. Hart ismoriginator-^! !pQa libo @R that0SC be 1shav A. FX2irty years, t }1DBook.Snly al1net>&of +$21CofteA sevprinted F,)'ofgf.o%P2D[*EU.S.(5a c7 292ThunecessarilI8 !in9Gany _] SMost start atWF+"ha:main PG Z facility@4  {+!is l(esU / a,1 =how to mak y. <,MDhelp3new]$, to subscrib' i Cnews sto hearHPks. p9lz4-2.5.2/testdata/pg_control.tar000066400000000000000000000230001364760661600167320ustar00rootroot00000000000000/global/pg_control0000600000015300001600000002000013446002074012654 0ustar0000000000000000TͬȈ\ <\hX(Qe`%;\Qed@2A  @ i߿ 0#WK$ >lz4-2.5.2/testdata/pg_control.tar.lz4000066400000000000000000000007351364760661600174540ustar00rootroot00000000000000"Mdp/global/pg_control>0000600A153A600 2000013446002074012654 0>Kustar0l.@0000@0000OTͬȈ\ @<\ @h@X@(DQe`b% @@;\@@QeO@0Sd5@@D`2A @ B@ @=@Li߿ 0#WK$ >BOӰO߰O߰ lz4-2.5.2/testdata/pi.txt000066400000000000000000003032431364760661600152370ustar00rootroot000000000000003.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081284811174502841027019385211055596446229489549303819644288109756659334461284756482337867831652712019091456485669234603486104543266482133936072602491412737245870066063155881748815209209628292540917153643678925903600113305305488204665213841469519415116094330572703657595919530921861173819326117931051185480744623799627495673518857527248912279381830119491298336733624406566430860213949463952247371907021798609437027705392171762931767523846748184676694051320005681271452635608277857713427577896091736371787214684409012249534301465495853710507922796892589235420199561121290219608640344181598136297747713099605187072113499999983729780499510597317328160963185950244594553469083026425223082533446850352619311881710100031378387528865875332083814206171776691473035982534904287554687311595628638823537875937519577818577805321712268066130019278766111959092164201989380952572010654858632788659361533818279682303019520353018529689957736225994138912497217752834791315155748572424541506959508295331168617278558890750983817546374649393192550604009277016711390098488240128583616035637076601047101819429555961989467678374494482553797747268471040475346462080466842590694912933136770289891521047521620569660240580381501935112533824300355876402474964732639141992726042699227967823547816360093417216412199245863150302861829745557067498385054945885869269956909272107975093029553211653449872027559602364806654991198818347977535663698074265425278625518184175746728909777727938000816470600161452491921732172147723501414419735685481613611573525521334757418494684385233239073941433345477624168625189835694855620992192221842725502542568876717904946016534668049886272327917860857843838279679766814541009538837863609506800642251252051173929848960841284886269456042419652850222106611863067442786220391949450471237137869609563643719172874677646575739624138908658326459958133904780275900994657640789512694683983525957098258226205224894077267194782684826014769909026401363944374553050682034962524517493996514314298091906592509372216964615157098583874105978859597729754989301617539284681382686838689427741559918559252459539594310499725246808459872736446958486538367362226260991246080512438843904512441365497627807977156914359977001296160894416948685558484063534220722258284886481584560285060168427394522674676788952521385225499546667278239864565961163548862305774564980355936345681743241125150760694794510965960940252288797108931456691368672287489405601015033086179286809208747609178249385890097149096759852613655497818931297848216829989487226588048575640142704775551323796414515237462343645428584447952658678210511413547357395231134271661021359695362314429524849371871101457654035902799344037420073105785390621983874478084784896833214457138687519435064302184531910484810053706146806749192781911979399520614196634287544406437451237181921799983910159195618146751426912397489409071864942319615679452080951465502252316038819301420937621378559566389377870830390697920773467221825625996615014215030680384477345492026054146659252014974428507325186660021324340881907104863317346496514539057962685610055081066587969981635747363840525714591028970641401109712062804390397595156771577004203378699360072305587631763594218731251471205329281918261861258673215791984148488291644706095752706957220917567116722910981690915280173506712748583222871835209353965725121083579151369882091444210067510334671103141267111369908658516398315019701651511685171437657618351556508849099898599823873455283316355076479185358932261854896321329330898570642046752590709154814165498594616371802709819943099244889575712828905923233260972997120844335732654893823911932597463667305836041428138830320382490375898524374417029132765618093773444030707469211201913020330380197621101100449293215160842444859637669838952286847831235526582131449576857262433441893039686426243410773226978028073189154411010446823252716201052652272111660396665573092547110557853763466820653109896526918620564769312570586356620185581007293606598764861179104533488503461136576867532494416680396265797877185560845529654126654085306143444318586769751456614068007002378776591344017127494704205622305389945613140711270004078547332699390814546646458807972708266830634328587856983052358089330657574067954571637752542021149557615814002501262285941302164715509792592309907965473761255176567513575178296664547791745011299614890304639947132962107340437518957359614589019389713111790429782856475032031986915140287080859904801094121472213179476477726224142548545403321571853061422881375850430633217518297986622371721591607716692547487389866549494501146540628433663937900397692656721463853067360965712091807638327166416274888800786925602902284721040317211860820419000422966171196377921337575114959501566049631862947265473642523081770367515906735023507283540567040386743513622224771589150495309844489333096340878076932599397805419341447377441842631298608099888687413260472156951623965864573021631598193195167353812974167729478672422924654366800980676928238280689964004824354037014163149658979409243237896907069779422362508221688957383798623001593776471651228935786015881617557829735233446042815126272037343146531977774160319906655418763979293344195215413418994854447345673831624993419131814809277771038638773431772075456545322077709212019051660962804909263601975988281613323166636528619326686336062735676303544776280350450777235547105859548702790814356240145171806246436267945612753181340783303362542327839449753824372058353114771199260638133467768796959703098339130771098704085913374641442822772634659470474587847787201927715280731767907707157213444730605700733492436931138350493163128404251219256517980694113528013147013047816437885185290928545201165839341965621349143415956258658655705526904965209858033850722426482939728584783163057777560688876446248246857926039535277348030480290058760758251047470916439613626760449256274204208320856611906254543372131535958450687724602901618766795240616342522577195429162991930645537799140373404328752628889639958794757291746426357455254079091451357111369410911939325191076020825202618798531887705842972591677813149699009019211697173727847684726860849003377024242916513005005168323364350389517029893922334517220138128069650117844087451960121228599371623130171144484640903890644954440061986907548516026327505298349187407866808818338510228334508504860825039302133219715518430635455007668282949304137765527939751754613953984683393638304746119966538581538420568533862186725233402830871123282789212507712629463229563989898935821167456270102183564622013496715188190973038119800497340723961036854066431939509790190699639552453005450580685501956730229219139339185680344903982059551002263535361920419947455385938102343955449597783779023742161727111723643435439478221818528624085140066604433258885698670543154706965747458550332323342107301545940516553790686627333799585115625784322988273723198987571415957811196358330059408730681216028764962867446047746491599505497374256269010490377819868359381465741268049256487985561453723478673303904688383436346553794986419270563872931748723320837601123029911367938627089438799362016295154133714248928307220126901475466847653576164773794675200490757155527819653621323926406160136358155907422020203187277605277219005561484255518792530343513984425322341576233610642506390497500865627109535919465897514131034822769306247435363256916078154781811528436679570611086153315044521274739245449454236828860613408414863776700961207151249140430272538607648236341433462351897576645216413767969031495019108575984423919862916421939949072362346468441173940326591840443780513338945257423995082965912285085558215725031071257012668302402929525220118726767562204154205161841634847565169998116141010029960783869092916030288400269104140792886215078424516709087000699282120660418371806535567252532567532861291042487761825829765157959847035622262934860034158722980534989650226291748788202734209222245339856264766914905562842503912757710284027998066365825488926488025456610172967026640765590429099456815065265305371829412703369313785178609040708667114965583434347693385781711386455873678123014587687126603489139095620099393610310291616152881384379099042317473363948045759314931405297634757481193567091101377517210080315590248530906692037671922033229094334676851422144773793937517034436619910403375111735471918550464490263655128162288244625759163330391072253837421821408835086573917715096828874782656995995744906617583441375223970968340800535598491754173818839994469748676265516582765848358845314277568790029095170283529716344562129640435231176006651012412006597558512761785838292041974844236080071930457618932349229279650198751872127267507981255470958904556357921221033346697499235630254947802490114195212382815309114079073860251522742995818072471625916685451333123948049470791191532673430282441860414263639548000448002670496248201792896476697583183271314251702969234889627668440323260927524960357996469256504936818360900323809293459588970695365349406034021665443755890045632882250545255640564482465151875471196218443965825337543885690941130315095261793780029741207665147939425902989695946995565761218656196733786236256125216320862869222103274889218654364802296780705765615144632046927906821207388377814233562823608963208068222468012248261177185896381409183903673672220888321513755600372798394004152970028783076670944474560134556417254370906979396122571429894671543578468788614445812314593571984922528471605049221242470141214780573455105008019086996033027634787081081754501193071412233908663938339529425786905076431006383519834389341596131854347546495569781038293097164651438407007073604112373599843452251610507027056235266012764848308407611830130527932054274628654036036745328651057065874882256981579367897669742205750596834408697350201410206723585020072452256326513410559240190274216248439140359989535394590944070469120914093870012645600162374288021092764579310657922955249887275846101264836999892256959688159205600101655256375678566722796619885782794848855834397518744545512965634434803966420557982936804352202770984294232533022576341807039476994159791594530069752148293366555661567873640053666564165473217043903521329543529169414599041608753201868379370234888689479151071637852902345292440773659495630510074210871426134974595615138498713757047101787957310422969066670214498637464595280824369445789772330048764765241339075920434019634039114732023380715095222010682563427471646024335440051521266932493419673977041595683753555166730273900749729736354964533288869844061196496162773449518273695588220757355176651589855190986665393549481068873206859907540792342402300925900701731960362254756478940647548346647760411463233905651343306844953979070903023460461470961696886885014083470405460742958699138296682468185710318879065287036650832431974404771855678934823089431068287027228097362480939962706074726455399253994428081137369433887294063079261595995462624629707062594845569034711972996409089418059534393251236235508134949004364278527138315912568989295196427287573946914272534366941532361004537304881985517065941217352462589548730167600298865925786628561249665523533829428785425340483083307016537228563559152534784459818313411290019992059813522051173365856407826484942764411376393866924803118364453698589175442647399882284621844900877769776312795722672655562596282542765318300134070922334365779160128093179401718598599933849235495640057099558561134980252499066984233017350358044081168552653117099570899427328709258487894436460050410892266917835258707859512983441729535195378855345737426085902908176515578039059464087350612322611200937310804854852635722825768203416050484662775045003126200800799804925485346941469775164932709504934639382432227188515974054702148289711177792376122578873477188196825462981268685817050740272550263329044976277894423621674119186269439650671515779586756482399391760426017633870454990176143641204692182370764887834196896861181558158736062938603810171215855272668300823834046564758804051380801633638874216371406435495561868964112282140753302655100424104896783528588290243670904887118190909494533144218287661810310073547705498159680772009474696134360928614849417850171807793068108546900094458995279424398139213505586422196483491512639012803832001097738680662877923971801461343244572640097374257007359210031541508936793008169980536520276007277496745840028362405346037263416554259027601834840306811381855105979705664007509426087885735796037324514146786703688098806097164258497595138069309449401515422221943291302173912538355915031003330325111749156969174502714943315155885403922164097229101129035521815762823283182342548326111912800928252561902052630163911477247331485739107775874425387611746578671169414776421441111263583553871361011023267987756410246824032264834641766369806637857681349204530224081972785647198396308781543221166912246415911776732253264335686146186545222681268872684459684424161078540167681420808850280054143613146230821025941737562389942075713627516745731891894562835257044133543758575342698699472547031656613991999682628247270641336222178923903176085428943733935618891651250424404008952719837873864805847268954624388234375178852014395600571048119498842390606136957342315590796703461491434478863604103182350736502778590897578272731305048893989009923913503373250855982655867089242612429473670193907727130706869170926462548423240748550366080136046689511840093668609546325002145852930950000907151058236267293264537382104938724996699339424685516483261134146110680267446637334375340764294026682973865220935701626384648528514903629320199199688285171839536691345222444708045923966028171565515656661113598231122506289058549145097157553900243931535190902107119457300243880176615035270862602537881797519478061013715004489917210022201335013106016391541589578037117792775225978742891917915522417189585361680594741234193398420218745649256443462392531953135103311476394911995072858430658361935369329699289837914941939406085724863968836903265564364216644257607914710869984315733749648835292769328220762947282381537409961545598798259891093717126218283025848112389011968221429457667580718653806506487026133892822994972574530332838963818439447707794022843598834100358385423897354243956475556840952248445541392394100016207693636846776413017819659379971557468541946334893748439129742391433659360410035234377706588867781139498616478747140793263858738624732889645643598774667638479466504074111825658378878454858148962961273998413442726086061872455452360643153710112746809778704464094758280348769758948328241239292960582948619196670918958089833201210318430340128495116203534280144127617285830243559830032042024512072872535581195840149180969253395075778400067465526031446167050827682772223534191102634163157147406123850425845988419907611287258059113935689601431668283176323567325417073420817332230462987992804908514094790368878687894930546955703072619009502076433493359106024545086453628935456862958531315337183868265617862273637169757741830239860065914816164049449650117321313895747062088474802365371031150898427992754426853277974311395143574172219759799359685252285745263796289612691572357986620573408375766873884266405990993505000813375432454635967504844235284874701443545419576258473564216198134073468541117668831186544893776979566517279662326714810338643913751865946730024434500544995399742372328712494834706044063471606325830649829795510109541836235030309453097335834462839476304775645015008507578949548931393944899216125525597701436858943585877526379625597081677643800125436502371412783467926101995585224717220177723700417808419423948725406801556035998390548985723546745642390585850216719031395262944554391316631345308939062046784387785054239390524731362012947691874975191011472315289326772533918146607300089027768963114810902209724520759167297007850580717186381054967973100167870850694207092232908070383263453452038027860990556900134137182368370991949516489600755049341267876436746384902063964019766685592335654639138363185745698147196210841080961884605456039038455343729141446513474940784884423772175154334260306698831768331001133108690421939031080143784334151370924353013677631084913516156422698475074303297167469640666531527035325467112667522460551199581831963763707617991919203579582007595605302346267757943936307463056901080114942714100939136913810725813781357894005599500183542511841721360557275221035268037357265279224173736057511278872181908449006178013889710770822931002797665935838758909395688148560263224393726562472776037890814458837855019702843779362407825052704875816470324581290878395232453237896029841669225489649715606981192186584926770403956481278102179913217416305810554598801300484562997651121241536374515005635070127815926714241342103301566165356024733807843028655257222753049998837015348793008062601809623815161366903341111386538510919367393835229345888322550887064507539473952043968079067086806445096986548801682874343786126453815834280753061845485903798217994599681154419742536344399602902510015888272164745006820704193761584547123183460072629339550548239557137256840232268213012476794522644820910235647752723082081063518899152692889108455571126603965034397896278250016110153235160519655904211844949907789992007329476905868577878720982901352956613978884860509786085957017731298155314951681467176959760994210036183559138777817698458758104466283998806006162298486169353373865787735983361613384133853684211978938900185295691967804554482858483701170967212535338758621582310133103877668272115726949518179589754693992642197915523385766231676275475703546994148929041301863861194391962838870543677743224276809132365449485366768000001065262485473055861598999140170769838548318875014293890899506854530765116803337322265175662207526951791442252808165171667766727930354851542040238174608923283917032754257508676551178593950027933895920576682789677644531840404185540104351348389531201326378369283580827193783126549617459970567450718332065034556644034490453627560011250184335607361222765949278393706478426456763388188075656121689605041611390390639601620221536849410926053876887148379895599991120991646464411918568277004574243434021672276445589330127781586869525069499364610175685060167145354315814801054588605645501332037586454858403240298717093480910556211671546848477803944756979804263180991756422809873998766973237695737015808068229045992123661689025962730430679316531149401764737693873514093361833216142802149763399189835484875625298752423873077559555955465196394401821840998412489826236737714672260616336432964063357281070788758164043814850188411431885988276944901193212968271588841338694346828590066640806314077757725705630729400492940302420498416565479736705485580445865720227637840466823379852827105784319753541795011347273625774080213476826045022851579795797647467022840999561601569108903845824502679265942055503958792298185264800706837650418365620945554346135134152570065974881916341359556719649654032187271602648593049039787489589066127250794828276938953521753621850796297785146188432719223223810158744450528665238022532843891375273845892384422535472653098171578447834215822327020690287232330053862163479885094695472004795231120150432932266282727632177908840087861480221475376578105819702226309717495072127248479478169572961423658595782090830733233560348465318730293026659645013718375428897557971449924654038681799213893469244741985097334626793321072686870768062639919361965044099542167627840914669856925715074315740793805323925239477557441591845821562518192155233709607483329234921034514626437449805596103307994145347784574699992128599999399612281615219314888769388022281083001986016549416542616968586788372609587745676182507275992950893180521872924610867639958916145855058397274209809097817293239301067663868240401113040247007350857828724627134946368531815469690466968693925472519413992914652423857762550047485295476814795467007050347999588867695016124972282040303995463278830695976249361510102436555352230690612949388599015734661023712235478911292547696176005047974928060721268039226911027772261025441492215765045081206771735712027180242968106203776578837166909109418074487814049075517820385653909910477594141321543284406250301802757169650820964273484146957263978842560084531214065935809041271135920041975985136254796160632288736181367373244506079244117639975974619383584574915988097667447093006546342423460634237474666080431701260052055928493695941434081468529815053947178900451835755154125223590590687264878635752541911288877371766374860276606349603536794702692322971868327717393236192007774522126247518698334951510198642698878471719396649769070825217423365662725928440620430214113719922785269984698847702323823840055655517889087661360130477098438611687052310553149162517283732728676007248172987637569816335415074608838663640693470437206688651275688266149730788657015685016918647488541679154596507234287730699853713904300266530783987763850323818215535597323530686043010675760838908627049841888595138091030423595782495143988590113185835840667472370297149785084145853085781339156270760356390763947311455495832266945702494139831634332378975955680856836297253867913275055542524491943589128405045226953812179131914513500993846311774017971512283785460116035955402864405902496466930707769055481028850208085800878115773817191741776017330738554758006056014337743299012728677253043182519757916792969965041460706645712588834697979642931622965520168797300035646304579308840327480771811555330909887025505207680463034608658165394876951960044084820659673794731680864156456505300498816164905788311543454850526600698230931577765003780704661264706021457505793270962047825615247145918965223608396645624105195510522357239739512881816405978591427914816542632892004281609136937773722299983327082082969955737727375667615527113922588055201898876201141680054687365580633471603734291703907986396522961312801782679717289822936070288069087768660593252746378405397691848082041021944719713869256084162451123980620113184541244782050110798760717155683154078865439041210873032402010685341947230476666721749869868547076781205124736792479193150856444775379853799732234456122785843296846647513336573692387201464723679427870042503255589926884349592876124007558756946413705625140011797133166207153715436006876477318675587148783989081074295309410605969443158477539700943988394914432353668539209946879645066533985738887866147629443414010498889931600512076781035886116602029611936396821349607501116498327856353161451684576956871090029997698412632665023477167286573785790857466460772283415403114415294188047825438761770790430001566986776795760909966936075594965152736349811896413043311662774712338817406037317439705406703109676765748695358789670031925866259410510533584384656023391796749267844763708474978333655579007384191473198862713525954625181604342253729962863267496824058060296421146386436864224724887283434170441573482481833301640566959668866769563491416328426414974533349999480002669987588815935073578151958899005395120853510357261373640343675347141048360175464883004078464167452167371904831096767113443494819262681110739948250607394950735031690197318521195526356325843390998224986240670310768318446607291248747540316179699411397387765899868554170318847788675929026070043212666179192235209382278788809886335991160819235355570464634911320859189796132791319756490976000139962344455350143464268604644958624769094347048293294140411146540923988344435159133201077394411184074107684981066347241048239358274019449356651610884631256785297769734684303061462418035852933159734583038455410337010916767763742762102137013548544509263071901147318485749233181672072137279355679528443925481560913728128406333039373562420016045664557414588166052166608738748047243391212955877763906969037078828527753894052460758496231574369171131761347838827194168606625721036851321566478001476752310393578606896111259960281839309548709059073861351914591819510297327875571049729011487171897180046961697770017913919613791417162707018958469214343696762927459109940060084983568425201915593703701011049747339493877885989417433031785348707603221982970579751191440510994235883034546353492349826883624043327267415540301619505680654180939409982020609994140216890900708213307230896621197755306659188141191577836272927461561857103721724710095214236964830864102592887457999322374955191221951903424452307535133806856807354464995127203174487195403976107308060269906258076020292731455252078079914184290638844373499681458273372072663917670201183004648190002413083508846584152148991276106513741539435657211390328574918769094413702090517031487773461652879848235338297260136110984514841823808120540996125274580881099486972216128524897425555516076371675054896173016809613803811914361143992106380050832140987604599309324851025168294467260666138151745712559754953580239983146982203613380828499356705575524712902745397762140493182014658008021566536067765508783804304134310591804606800834591136640834887408005741272586704792258319127415739080914383138456424150940849133918096840251163991936853225557338966953749026620923261318855891580832455571948453875628786128859004106006073746501402627824027346962528217174941582331749239683530136178653673760642166778137739951006589528877427662636841830680190804609849809469763667335662282915132352788806157768278159588669180238940333076441912403412022316368577860357276941541778826435238131905028087018575047046312933353757285386605888904583111450773942935201994321971171642235005644042979892081594307167019857469273848653833436145794634175922573898588001698014757420542995801242958105456510831046297282937584161162532562516572498078492099897990620035936509934721582965174135798491047111660791587436986541222348341887722929446335178653856731962559852026072947674072616767145573649812105677716893484917660771705277187601199908144113058645577910525684304811440261938402322470939249802933550731845890355397133088446174107959162511714864874468611247605428673436709046678468670274091881014249711149657817724279347070216688295610877794405048437528443375108828264771978540006509704033021862556147332117771174413350281608840351781452541964320309576018694649088681545285621346988355444560249556668436602922195124830910605377201980218310103270417838665447181260397190688462370857518080035327047185659499476124248110999288679158969049563947624608424065930948621507690314987020673533848349550836366017848771060809804269247132410009464014373603265645184566792456669551001502298330798496079949882497061723674493612262229617908143114146609412341593593095854079139087208322733549572080757165171876599449856937956238755516175754380917805280294642004472153962807463602113294255916002570735628126387331060058910652457080244749375431841494014821199962764531068006631183823761639663180931444671298615527598201451410275600689297502463040173514891945763607893528555053173314164570504996443890936308438744847839616840518452732884032345202470568516465716477139323775517294795126132398229602394548579754586517458787713318138752959809412174227300352296508089177705068259248822322154938048371454781647213976820963320508305647920482085920475499857320388876391601995240918938945576768749730856955958010659526503036266159750662225084067428898265907510637563569968211510949669744580547288693631020367823250182323708459790111548472087618212477813266330412076216587312970811230758159821248639807212407868878114501655825136178903070860870198975889807456643955157415363193191981070575336633738038272152798849350397480015890519420879711308051233933221903466249917169150948541401871060354603794643379005890957721180804465743962806186717861017156740967662080295766577051291209907944304632892947306159510430902221439371849560634056189342513057268291465783293340524635028929175470872564842600349629611654138230077313327298305001602567240141851520418907011542885799208121984493156999059182011819733500126187728036812481995877070207532406361259313438595542547781961142935163561223496661522614735399674051584998603552953329245752388810136202347624669055816438967863097627365504724348643071218494373485300606387644566272186661701238127715621379746149861328744117714552444708997144522885662942440230184791205478498574521634696448973892062401943518310088283480249249085403077863875165911302873958787098100772718271874529013972836614842142871705531796543076504534324600536361472618180969976933486264077435199928686323835088756683595097265574815431940195576850437248001020413749831872259677387154958399718444907279141965845930083942637020875635398216962055324803212267498911402678528599673405242031091797899905718821949391320753431707980023736590985375520238911643467185582906853711897952626234492483392496342449714656846591248918556629589329909035239233333647435203707701010843880032907598342170185542283861617210417603011645918780539367447472059985023582891833692922337323999480437108419659473162654825748099482509991833006976569367159689364493348864744213500840700660883597235039532340179582557036016936990988671132109798897070517280755855191269930673099250704070245568507786790694766126298082251633136399521170984528092630375922426742575599892892783704744452189363203489415521044597261883800300677617931381399162058062701651024458869247649246891924612125310275731390840470007143561362316992371694848132554200914530410371354532966206392105479824392125172540132314902740585892063217589494345489068463993137570910346332714153162232805522972979538018801628590735729554162788676498274186164218789885741071649069191851162815285486794173638906653885764229158342500673612453849160674137340173572779956341043326883569507814931378007362354180070619180267328551191942676091221035987469241172837493126163395001239599240508454375698507957046222664619000103500490183034153545842833764378111988556318777792537201166718539541835984438305203762819440761594106820716970302285152250573126093046898423433152732131361216582808075212631547730604423774753505952287174402666389148817173086436111389069420279088143119448799417154042103412190847094080254023932942945493878640230512927119097513536000921971105412096683111516328705423028470073120658032626417116165957613272351566662536672718998534199895236884830999302757419916463841427077988708874229277053891227172486322028898425125287217826030500994510824783572905691988555467886079462805371227042466543192145281760741482403827835829719301017888345674167811398954750448339314689630763396657226727043393216745421824557062524797219978668542798977992339579057581890622525473582205236424850783407110144980478726691990186438822932305382318559732869780922253529591017341407334884761005564018242392192695062083183814546983923664613639891012102177095976704908305081854704194664371312299692358895384930136356576186106062228705599423371631021278457446463989738188566746260879482018647487672727222062676465338099801966883680994159075776852639865146253336312450536402610569605513183813174261184420189088853196356986962795036738424313011331753305329802016688817481342988681585577810343231753064784983210629718425184385534427620128234570716988530518326179641178579608888150329602290705614476220915094739035946646916235396809201394578175891088931992112260073928149169481615273842736264298098234063200244024495894456129167049508235812487391799648641133480324757775219708932772262349486015046652681439877051615317026696929704928316285504212898146706195331970269507214378230476875280287354126166391708245925170010714180854800636923259462019002278087409859771921805158532147392653251559035410209284665925299914353791825314545290598415817637058927906909896911164381187809435371521332261443625314490127454772695739393481546916311624928873574718824071503995009446731954316193855485207665738825139639163576723151005556037263394867208207808653734942440115799667507360711159351331959197120948964717553024531364770942094635696982226673775209945168450643623824211853534887989395673187806606107885440005508276570305587448541805778891719207881423351138662929667179643468760077047999537883387870348718021842437342112273940255717690819603092018240188427057046092622564178375265263358324240661253311529423457965569502506810018310900411245379015332966156970522379210325706937051090830789479999004999395322153622748476603613677697978567386584670936679588583788795625946464891376652199588286933801836011932368578558558195556042156250883650203322024513762158204618106705195330653060606501054887167245377942831338871631395596905832083416898476065607118347136218123246227258841990286142087284956879639325464285343075301105285713829643709990356948885285190402956047346131138263878897551788560424998748316382804046848618938189590542039889872650697620201995548412650005394428203930127481638158530396439925470201672759328574366661644110962566337305409219519675148328734808957477775278344221091073111351828046036347198185655572957144747682552857863349342858423118749440003229690697758315903858039353521358860079600342097547392296733310649395601812237812854584317605561733861126734780745850676063048229409653041118306671081893031108871728167519579675347188537229309616143204006381322465841111157758358581135018569047815368938137718472814751998350504781297718599084707621974605887423256995828892535041937958260616211842368768511418316068315867994601652057740529423053601780313357263267054790338401257305912339601880137825421927094767337191987287385248057421248921183470876629667207272325650565129333126059505777727542471241648312832982072361750574673870128209575544305968395555686861188397135522084452852640081252027665557677495969626612604565245684086139238265768583384698499778726706555191854468698469478495734622606294219624557085371272776523098955450193037732166649182578154677292005212667143463209637891852323215018976126034373684067194193037746880999296877582441047878123266253181845960453853543839114496775312864260925211537673258866722604042523491087026958099647595805794663973419064010036361904042033113579336542426303561457009011244800890020801478056603710154122328891465722393145076071670643556827437743965789067972687438473076346451677562103098604092717090951280863090297385044527182892749689212106670081648583395537735919136950153162018908887484210798706899114804669270650940762046502772528650728905328548561433160812693005693785417861096969202538865034577183176686885923681488475276498468821949739729707737187188400414323127636504814531122850990020742409255859252926103021067368154347015252348786351643976235860419194129697690405264832347009911154242601273438022089331096686367898694977994001260164227609260823493041180643829138347354679725399262338791582998486459271734059225620749105308531537182911681637219395188700957788181586850464507699343940987433514431626330317247747486897918209239480833143970840673084079589358108966564775859905563769525232653614424780230826811831037735887089240613031336477371011628214614661679404090518615260360092521947218890918107335871964142144478654899528582343947050079830388538860831035719306002771194558021911942899922722353458707566246926177663178855144350218287026685610665003531050216318206017609217984684936863161293727951873078972637353717150256378733579771808184878458866504335824377004147710414934927438457587107159731559439426412570270965125108115548247939403597681188117282472158250109496096625393395380922195591918188552678062149923172763163218339896938075616855911752998450132067129392404144593862398809381240452191484831646210147389182510109096773869066404158973610476436500068077105656718486281496371118832192445663945814491486165500495676982690308911185687986929470513524816091743243015383684707292898982846022237301452655679898627767968091469798378268764311598832109043715611299766521539635464420869197567370005738764978437686287681792497469438427465256316323005551304174227341646455127812784577772457520386543754282825671412885834544435132562054464241011037955464190581168623059644769587054072141985212106734332410756767575818456990693046047522770167005684543969234041711089888993416350585157887353430815520811772071880379104046983069578685473937656433631979786803671873079693924236321448450354776315670255390065423117920153464977929066241508328858395290542637687668968805033317227800185885069736232403894700471897619347344308437443759925034178807972235859134245813144049847701732361694719765715353197754997162785663119046912609182591249890367654176979903623755286526375733763526969344354400473067198868901968147428767790866979688522501636949856730217523132529265375896415171479559538784278499866456302878831962099830494519874396369070682762657485810439112232618794059941554063270131989895703761105323606298674803779153767511583043208498720920280929752649812569163425000522908872646925284666104665392171482080130502298052637836426959733707053922789153510568883938113249757071331029504430346715989448786847116438328050692507766274500122003526203709466023414648998390252588830148678162196775194583167718762757200505439794412459900771152051546199305098386982542846407255540927403132571632640792934183342147090412542533523248021932277075355546795871638358750181593387174236061551171013123525633485820365146141870049205704372018261733194715700867578539336078622739558185797587258744102542077105475361294047460100094095444959662881486915903899071865980563617137692227290764197755177720104276496949611056220592502420217704269622154958726453989227697660310524980855759471631075870133208861463266412591148633881220284440694169488261529577625325019870359870674380469821942056381255833436421949232275937221289056420943082352544084110864545369404969271494003319782861318186188811118408257865928757426384450059944229568586460481033015388911499486935436030221810943466764000022362550573631294626296096198760564259963946138692330837196265954739234624134597795748524647837980795693198650815977675350553918991151335252298736112779182748542008689539658359421963331502869561192012298889887006079992795411188269023078913107603617634779489432032102773359416908650071932804017163840644987871753756781185321328408216571107549528294974936214608215583205687232185574065161096274874375098092230211609982633033915469494644491004515280925089745074896760324090768983652940657920198315265410658136823791984090645712468948470209357761193139980246813405200394781949866202624008902150166163813538381515037735022966074627952910384068685569070157516624192987244482719429331004854824454580718897633003232525821581280327467962002814762431828622171054352898348208273451680186131719593324711074662228508710666117703465352839577625997744672185715816126411143271794347885990892808486694914139097716736900277758502686646540565950394867841110790116104008572744562938425494167594605487117235946429105850909950214958793112196135908315882620682332156153086833730838173279328196983875087083483880463884784418840031847126974543709373298362402875197920802321878744882872843727378017827008058782410749357514889978911739746129320351081432703251409030487462262942344327571260086642508333187688650756429271605525289544921537651751492196367181049435317858383453865255656640657251363575064353236508936790431702597878177190314867963840828810209461490079715137717099061954969640070867667102330048672631475510537231757114322317411411680622864206388906210192355223546711662137499693269321737043105987225039456574924616978260970253359475020913836673772894438696400028110344026084712899000746807764844088711341352503367877316797709372778682166117865344231732264637847697875144332095340001650692130546476890985050203015044880834261845208730530973189492916425322933612431514306578264070283898409841602950309241897120971601649265613413433422298827909921786042679812457285345801338260995877178113102167340256562744007296834066198480676615805021691833723680399027931606420436812079900316264449146190219458229690992122788553948783538305646864881655562294315673128274390826450611628942803501661336697824051770155219626522725455850738640585299830379180350432876703809252167907571204061237596327685674845079151147313440001832570344920909712435809447900462494313455028900680648704293534037436032625820535790118395649089354345101342969617545249573960621490288728932792520696535386396443225388327522499605986974759882329916263545973324445163755334377492928990581175786355555626937426910947117002165411718219750519831787137106051063795558588905568852887989084750915764639074693619881507814685262133252473837651192990156109189777922008705793396463827490680698769168197492365624226087154176100430608904377976678519661891404144925270480881971498801542057787006521594009289777601330756847966992955433656139847738060394368895887646054983871478968482805384701730871117761159663505039979343869339119789887109156541709133082607647406305711411098839388095481437828474528838368079418884342666222070438722887413947801017721392281911992365405516395893474263953824829609036900288359327745855060801317988407162446563997948275783650195514221551339281978226984278638391679715091262410548725700924070045488485692950448110738087996547481568913935380943474556972128919827177020766613602489581468119133614121258783895577357194986317210844398901423948496659251731388171602663261931065366535041473070804414939169363262373767777095850313255990095762731957308648042467701212327020533742667053142448208168130306397378736642483672539837487690980602182785786216512738563513290148903509883270617258932575363993979055729175160097615459044771692265806315111028038436017374742152476085152099016158582312571590733421736576267142390478279587281505095633092802668458937649649770232973641319060982740633531089792464242134583740901169391964250459128813403498810635400887596820054408364386516617880557608956896727531538081942077332597917278437625661184319891025007491829086475149794003160703845549465385946027452447466812314687943441610993338908992638411847425257044572517459325738989565185716575961481266020310797628254165590506042479114016957900338356574869252800743025623419498286467914476322774005529460903940177536335655471931000175430047504719144899841040015867946179241610016454716551337074073950260442769538553834397550548871099785205401175169747581344926079433689543783221172450687344231989878844128542064742809735625807066983106979935260693392135685881391214807354728463227784908087002467776303605551232386656295178853719673034634701222939581606792509153217489030840886516061119011498443412350124646928028805996134283511884715449771278473361766285062169778717743824362565711779450064477718370221999106695021656757644044997940765037999954845002710665987813603802314126836905783190460792765297277694043613023051787080546511542469395265127101052927070306673024447125973939950514628404767431363739978259184541176413327906460636584152927019030276017339474866960348694976541752429306040727005059039503148522921392575594845078867977925253931765156416197168443524369794447355964260633391055126826061595726217036698506473281266724521989060549880280782881429796336696744124805982192146339565745722102298677599746738126069367069134081559412016115960190237753525556300606247983261249881288192937343476862689219239777833910733106588256813777172328315329082525092733047850724977139448333892552081175608452966590553940965568541706001179857293813998258319293679100391844099286575605993598910002969864460974714718470101531283762631146774209145574041815908800064943237855839308530828305476076799524357391631221886057549673832243195650655460852881201902363644712703748634421727257879503428486312944916318475347531435041392096108796057730987201352484075057637199253650470908582513936863463863368042891767107602111159828875539940120076013947033661793715396306139863655492213741597905119083588290097656647300733879314678913181465109316761575821351424860442292445304113160652700974330088499034675405518640677342603583409608605533747362760935658853109760994238347382222087292464497684560579562516765574088410321731345627735856052358236389532038534024842273371639123973215995440828421666636023296545694703577184873442034227706653837387506169212768015766181095420097708363604361110592409117889540338021426523948929686439808926114635414571535194342850721353453018315875628275733898268898523557799295727645229391567477566676051087887648453493636068278050564622813598885879259940946446041705204470046315137975431737187756039815962647501410906658866162180038266989961965580587208639721176995219466789857011798332440601811575658074284182910615193917630059194314434605154047710570054339000182453117733718955857603607182860506356479979004139761808955363669603162193113250223851791672055180659263518036251214575926238369348222665895576994660491938112486609099798128571823494006615552196112207203092277646200999315244273589488710576623894693889446495093960330454340842102462401048723328750081749179875543879387381439894238011762700837196053094383940063756116458560943129517597713935396074322792489221267045808183313764165818269562105872892447740035947009268662659651422050630078592002488291860839743732353849083964326147000532423540647042089499210250404726781059083644007466380020870126664209457181702946752278540074508552377720890581683918446592829417018288233014971554235235911774818628592967605048203864343108779562892925405638946621948268711042828163893975711757786915430165058602965217459581988878680408110328432739867198621306205559855266036405046282152306154594474489908839081999738747452969810776201487134000122535522246695409315213115337915798026979555710508507473874750758068765376445782524432638046143042889235934852961058269382103498000405248407084403561167817170512813378805705643450616119330424440798260377951198548694559152051960093041271007277849301555038895360338261929343797081874320949914159593396368110627557295278004254863060054523839151068998913578820019411786535682149118528207852130125518518493711503422159542244511900207393539627400208110465530207932867254740543652717595893500716336076321614725815407642053020045340183572338292661915308354095120226329165054426123619197051613839357326693760156914429944943744856809775696303129588719161129294681884936338647392747601226964158848900965717086160598147204467428664208765334799858222090619802173211614230419477754990738738567941189824660913091691772274207233367635032678340586301930193242996397204445179288122854478211953530898910125342975524727635730226281382091807439748671453590778633530160821559911314144205091447293535022230817193663509346865858656314855575862447818620108711889760652969899269328178705576435143382060141077329261063431525337182243385263520217735440715281898137698755157574546939727150488469793619500477720970561793913828989845327426227288647108883270173723258818244658436249580592560338105215606206155713299156084892064340303395262263451454283678698288074251422567451806184149564686111635404971897682154227722479474033571527436819409892050113653400123846714296551867344153741615042563256713430247655125219218035780169240326699541746087592409207004669340396510178134857835694440760470232540755557764728450751826890418293966113310160131119077398632462778219023650660374041606724962490137433217246454097412995570529142438208076098364823465973886691349919784013108015581343979194852830436739012482082444814128095443773898320059864909159505322857914576884962578665885999179867520554558099004556461178755249370124553217170194282884617402736649978475508294228020232901221630102309772151569446427909802190826689868834263071609207914085197695235553488657743425277531197247430873043619511396119080030255878387644206085044730631299277888942729189727169890575925244679660189707482960949190648764693702750773866432391919042254290235318923377293166736086996228032557185308919284403805071030064776847863243191000223929785255372375566213644740096760539439838235764606992465260089090624105904215453927904411529580345334500256244101006359530039598864466169595626351878060688513723462707997327233134693971456285542615467650632465676620279245208581347717608521691340946520307673391841147504140168924121319826881568664561485380287539331160232292555618941042995335640095786495340935115266454024418775949316930560448686420862757201172319526405023099774567647838488973464317215980626787671838005247696884084989185086149003432403476742686245952395890358582135006450998178244636087317754378859677672919526111213859194725451400301180503437875277664402762618941017576872680428176623860680477885242887430259145247073950546525135339459598789619778911041890292943818567205070964606263541732944649576612651953495701860015412623962286413897796733329070567376962156498184506842263690367849555970026079867996261019039331263768556968767029295371162528005543100786408728939225714512481135778627664902425161990277471090335933309304948380597856628844787441469841499067123764789582263294904679812089984857163571087831191848630254501620929805829208334813638405421720056121989353669371336733392464416125223196943471206417375491216357008573694397305979709719726666642267431117762176403068681310351899112271339724036887000996862922546465006385288620393800504778276912835603372548255793912985251506829969107754257647488325341412132800626717094009098223529657957997803018282428490221470748111124018607613415150387569830918652780658896682362523937845272634530420418802508442363190383318384550522367992357752929106925043261446950109861088899914658551881873582528164302520939285258077969737620845637482114433988162710031703151334402309526351929588680690821355853680161000213740851154484912685841268695899174149133820578492800698255195740201818105641297250836070356851055331787840829000041552511865779453963317538532092149720526607831260281961164858098684587525129997404092797683176639914655386108937587952214971731728131517932904431121815871023518740757222100123768721944747209349312324107065080618562372526732540733324875754482967573450019321902199119960797989373383673242576103938985349278777473980508080015544764061053522202325409443567718794565430406735896491017610775948364540823486130254718476485189575836674399791508512858020607820554462991723202028222914886959399729974297471155371858924238493855858595407438104882624648788053304271463011941589896328792678327322456103852197011130466587100500083285177311776489735230926661234588873102883515626446023671996644554727608310118788389151149340939344750073025855814756190881398752357812331342279866503522725367171230756861045004548970360079569827626392344107146584895780241408158405229536937499710665594894459246286619963556350652623405339439142111271810691052290024657423604130093691889255865784668461215679554256605416005071276641766056874274200329577160643448606201239821698271723197826816628249938714995449137302051843669076723577400053932662622760323659751718925901801104290384274185507894887438832703063283279963007200698012244365116394086922220745320244624121155804354542064215121585056896157356414313068883443185280853975927734433655384188340303517822946253702015782157373265523185763554098954033236382319219892171177449469403678296185920803403867575834111518824177439145077366384071880489358256868542011645031357633355509440319236720348651010561049872726472131986543435450409131859513145181276437310438972507004981987052176272494065214619959232142314439776546708351714749367986186552791715824080651063799500184295938799158350171580759883784962257398512129810326379376218322456594236685376799113140108043139732335449090824910499143325843298821033984698141715756010829706583065211347076803680695322971990599904451209087275776225351040902392888779424630483280319132710495478599180196967835321464441189260631526618167443193550817081875477050802654025294109218264858213857526688155584113198560022135158887210365696087515063187533002942118682221893775546027227291290504292259787710667873840000616772154638441292371193521828499824350920891801685572798156421858191197490985730570332667646460728757430565372602768982373259745084479649545648030771598153955827779139373601717422996027353102768719449444917939785144631597314435351850491413941557329382048542123508173912549749819308714396615132942045919380106231421774199184060180347949887691051557905554806953878540066453375981862846419905220452803306263695626490910827627115903856995051246529996062855443838330327638599800792922846659503551211245284087516229060262011857775313747949362055496401073001348853150735487353905602908933526400713274732621960311773433943673385759124508149335736911664541281788171454023054750667136518258284898099512139193995633241336556777098003081910272040997148687418134667006094051021462690280449159646545330107754695413088714165312544813061192407821188690056027781824235022696189344352547633573536485619363254417756613981703930632872166905722259745209192917262199844409646158269456380239502837121686446561785235565164127712826918688615572716201474934052276946595712198314943381622114006936307430444173284786101777743837977037231795255434107223445512555589998646183876764903972461167959018100035098928641204195163551108763204267612979826529425882951141275841262732790798807559751851576841264742209479721843309352972665210015662514552994745127631550917636730259462132930190402837954246323258550301096706922720227074863419005438302650681214142135057154175057508639907673946335146209082888934938376439399256900604067311422093312195936202982972351163259386772241477911629572780752395056251581603133359382311500518626890530658368129988108663263271980611271548858798093487912913707498230575929091862939195014721197586067270092547718025750337730799397134539532646195269996596385654917590458333585799102012713204583903200853878881633637685182083727885131175227769609787962142372162545214591281831798216044111311671406914827170981015457781939202311563871950805024679725792497605772625913328559726371211201905720771409148645074094926718035815157571514050397610963846755569298970383547314100223802583468767350129775413279532060971154506484212185936490997917766874774481882870632315515865032898164228288232746866106592732197907162384642153489852476216789050260998045266483929542357287343977680495774091449538391575565485459058976495198513801007958010783759945775299196700547602252552034453988712538780171960718164078124847847257912407824544361682345239570689514272269750431873633263011103053423335821609333191218806608268341428910415173247216053355849993224548730778822905252324234861531520976938461042582849714963475341837562003014915703279685301868631572488401526639835689563634657435321783493199825542117308467745297085839507616458229630324424328237737450517028560698067889521768198156710781633405266759539424926280756968326107495323390536223090807081455919837355377748742029039018142937311529334644468151212945097596534306284215319445727118614900017650558177095302468875263250119705209476159416768727784472000192789137251841622857783792284439084301181121496366424659033634194540657183544771912446621259392656620306888520055599121235363718226922531781458792593750441448933981608657900876165024635197045828895481793756681046474614105142498870252139936870509372305447734112641354892806841059107716677821238332810262185587751312721179344448201440425745083063944738363793906283008973306241380614589414227694747931665717623182472168350678076487573420491557628217583972975134478990696589532548940335615613167403276472469212505759116251529654568544633498114317670257295661844775487469378464233737238981920662048511894378868224807279352022501796545343757274163910791972952950812942922205347717304184477915673991738418311710362524395716152714669005814700002633010452643547865903290733205468338872078735444762647925297690170912007874183736735087713376977683496344252419949951388315074877537433849458259765560996555954318040920178497184685497370696212088524377013853757681416632722412634423982152941645378000492507262765150789085071265997036708726692764308377229685985169122305037462744310852934305273078865283977335246017463527703205938179125396915621063637625882937571373840754406468964783100704580613446731271591194608435935825987782835266531151065041623295329047772174083559349723758552138048305090009646676088301540612824308740645594431853413755220166305812111033453120745086824339432159043594430312431227471385842030390106070940315235556172767994160020393975099897629335325855575624808996691829864222677502360193257974726742578211119734709402357457222271212526852384295874273501563660093188045493338989741571490544182559738080871565281430102670460284316819230392535297795765862414392701549740879273131051636119137577008929564823323648298263024607975875767745377160102490804624301856524161756655600160859121534556267602192689982855377872583145144082654583484409478463178777374794653580169960779405568701192328608041130904629350871827125934668712766694873899824598527786499569165464029458935064964335809824765965165142090986755203808309203230487342703468288751604071546653834619611223013759451579252696743642531927390036038608236450762698827497618723575476762889950752114804852527950845033958570838130476937881321123674281319487950228066320170022460331989671970649163741175854851878484012054844672588851401562725019821719066960812627785485964818369621410721714214986361918774754509650308957099470934337856981674465828267911940611956037845397855839240761276344105766751024307559814552786167815949657062559755074306521085301597908073343736079432866757890533483669555486803913433720156498834220893399971641479746938696905480089193067138057171505857307148815649920714086758259602876056459782423770242469805328056632787041926768467116266879463486950464507420219373945259262668613552940624781361206202636498199999498405143868285258956342264328707663299304891723400725471764188685351372332667877921738347541480022803392997357936152412755829569276837231234798989446274330454566790062032420516396282588443085438307201495672106460533238537203143242112607424485845094580494081820927639140008540422023556260218564348994145439950410980591817948882628052066441086319001688568155169229486203010738897181007709290590480749092427141018933542818429995988169660993836961644381528877214085268088757488293258735809905670755817017949161906114001908553744882726200936685604475596557476485674008177381703307380305476973609786543859382187220583902344443508867499866506040645874346005331827436296177862518081893144363251205107094690813586440519229512932450078833398788429339342435126343365204385812912834345297308652909783300671261798130316794385535726296998740359570458452230856390098913179475948752126397078375944861139451960286751210561638976008880092746115860800207803341591451797073036835196977766076373785333012024120112046988609209339085365773222392412449051532780950955866459477634482269986074813297302630975028812103517723124465095349653693090018637764094094349837313251321862080214809922685502948454661814715557444709669530177690434272031892770604717784527939160472281534379803539679861424370956683221491465438014593829277393396032754048009552231816667380357183932757077142046723838624617803976292377131209580789363841447929802588065522129262093623930637313496640186619510811583471173312025805866727639992763579078063818813069156366274125431259589936119647626101405563503399523140323113819656236327198961837254845333702062563464223952766943568376761368711962921818754576081617053031590728828700712313666308722754918661395773730546065997437810987649802414011242142773668082751390959313404155826266789510846776118665957660165998178089414985754976284387856100263796543178313634025135814161151902096499133548733131115022700681930135929595971640197196053625033558479980963488718039111612813595968565478868325856437896173159762002419621552896297904819822199462269487137462444729093456470028537694958859591606789282491054412515996300781368367490209374915732896270028656829344431342347351239298259166739503425995868970697267332582735903121288746660451461487850346142827765991608090398652575717263081833494441820193533385071292345774375579344062178711330063106003324053991693682603746176638565758877580201229366353270267100681261825172914608202541892885935244491070138206211553827793565296914576502048643282865557934707209634807372692141186895467322767751335690190153723669036865389161291688887876407525493494249733427181178892759931596719354758988097924525262363659036320070854440784544797348291802082044926670634420437555325050527522833778887040804033531923407685630109347772125639088640413101073817853338316038135280828119040832564401842053746792992622037698718018061122624490909242641985820861751177113789051609140381575003366424156095216328197122335023167422600567941281406217219641842705784328959802882335059828208196666249035857789940333152274817776952843681630088531769694783690580671064828083598046698841098135158654906933319522394363287923990534810987830274500172065433699066117784554364687723631844464768069142828004551074686645392805399409108754939166095731619715033166968309929466349142798780842257220697148875580637480308862995118473187124777291910070227588893486939456289515802965372150409603107761289831263589964893410247036036645058687287589051406841238124247386385427908282733827973326885504935874303160274749063129572349742611221517417153133618622410913869500688835898962349276317316478340077460886655598733382113829928776911495492184192087771606068472874673681886167507221017261103830671787856694812948785048943063086169948798703160515884108282351274153538513365895332948629494495061868514779105804696039069372662670386512905201137810858616188886947957607413585534585151768051973334433495230120395770739623771316030242887200537320998253008977618973129817881944671731160647231476248457551928732782825127182446807824215216469567819294098238926284943760248852279003620219386696482215628093605373178040863727268426696421929946819214908701707533361094791381804063287387593848269535583077395761447997270003472880182785281389503217986345216111066608839314053226944905455527867894417579202440021450780192099804461382547805858048442416404775031536054906591430078158372430123137511562284015838644270890718284816757527123846782459534334449622010096071051370608461801187543120725491334994247617115633321408934609156561550600317384218701570226103101916603887064661438897736318780940711527528174689576401581047016965247557740891644568677717158500583269943401677202156767724068128366565264122982439465133197359199709403275938502669557470231813203243716420586141033606524536939160050644953060161267822648942437397166717661231048975031885732165554988342121802846912529086101485527815277625623750456375769497734336846015607727035509629049392487088406281067943622418704747008368842671022558302403599841645951122485272633632645114017395248086194635840783753556885622317115520947223065437092606797351000565549381224575483728545711797393615756167641692895805257297522338558611388322171107362265816218842443178857488798109026653793426664216990914056536432249301334867988154886628665052346997235574738424830590423677143278792316422403877764330192600192284778313837632536121025336935812624086866699738275977365682227907215832478888642369346396164363308730139814211430306008730666164803678984091335926293402304324974926887831643602681011309570716141912830686577323532639653677390317661361315965553584999398600565155921936759977717933019744688148371103206503693192894521402650915465184309936553493337183425298433679915939417466223900389527673813330617747629574943868716978453767219493506590875711917720875477107189937960894774512654757501871194870738736785890200617373321075693302216320628432065671192096950585761173961632326217708945426214609858410237813215817727602222738133495410481003073275107799948991977963883530734443457532975914263768405442264784216063122769646967156473999043715903323906560726644116438605404838847161912109008701019130726071044114143241976796828547885524779476481802959736049439700479596040292746299203572099761950140348315380947714601056333446998820822120587281510729182971211917876424880354672316916541852256729234429187128163232596965413548589577133208339911288775917226115273379010341362085614577992398778325083550730199818459025958355989260553299673770491722454935329683300002230181517226575787524058832249085821280089747909326100762578770428656006996176212176845478996440705066241710213327486796237430229155358200780141165348065647488230615003392068983794766255036549822805329662862117930628430170492402301985719978948836897183043805182174419147660429752437251683435411217038631379411422095295885798060152938752753799030938871683572095760715221900279379292786303637268765822681241993384808166021603722154710143007377537792699069587121289288019052031601285861825494413353820784883465311632650407642428390870121015194231961652268422003711230464300673442064747718021353070124098860353399152667923871101706221865883573781210935179775604425634694999787251125440854522274810914874307259869602040275941178942581281882159952359658979181144077653354321757595255536158128001163846720319346507296807990793963714961774312119402021297573125165253768017359101557338153772001952444543620071848475663415407442328621060997613243487548847434539665981338717466093020535070271952983943271425371155766600025784423031073429551533945060486222764966687624079324353192992639253731076892135352572321080889819339168668278948281170472624501948409700975760920983724090074717973340788141825195842598096241747610138252643955135259311885045636264188300338539652435997416931322894719878308427600401368074703904097238473945834896186539790594118599310356168436869219485382055780395773881360679549900085123259442529724486666766834641402189915944565309423440650667851948417766779470472041958822043295380326310537494883122180391279678446100139726753892195119117836587662528083690053249004597410947068772912328214304635337283519953648274325833119144459017809607782883583730111857543659958982724531925310588115026307542571493943024453931870179923608166611305426253995833897942971602070338767815033010280120095997252222280801423571094760351925544434929986767817891045559063015953809761875920358937341978962358931125983902598310267193304189215109689156225069659119828323455503059081730735195503721665870288053992138576037035377105178021280129566841984140362872725623214428754302210909472721073474134975514190737043318276626177275996888826027225247133683353452816692779591328861381766349857728936900965749562287103024362590772412219094300871755692625758065709912016659622436080242870024547362036394841255954881727272473653467783647201918303998717627037515724649922289467932322693619177641614618795613956699567783068290316589699430767333508234990790624100202506134057344300695745474682175690441651540636584680463692621274211075399042188716127617787014258864825775223889184599523376292377915585744549477361295525952226578636462118377598473700347971408206994145580719080213590732269233100831759510659019121294795408603640757358750205890208704579670007055262505811420663907459215273309406823649441590891009220296680523325266198911311842016291631076894084723564366808182168657219688268358402785500782804043453710183651096951782335743030504852653738073531074185917705610397395062640355442275156101107261779370634723804990666922161971194259120445084641746383589938239946517395509000859479990136026674261494290066467115067175422177038774507673563742154782905911012619157555870238957001405117822646989944917908301795475876760168094100135837613578591356924455647764464178667115391951357696104864922490083446715486383054477914330097680486878348184672733758436892724310447406807685278625585165092088263813233623148733336714764520450876627614950389949504809560460989604329123358348859990294526400284994280878624039811814884767301216754161106629995553668193123287425702063738352020086863691311733469731741219153633246745325630871347302792174956227014687325867891734558379964351358800959350877556356248810493852999007675135513527792412429277488565888566513247302514710210575352516511814850902750476845518252096331899068527614435138213662152368890578786699432288816028377482035506016029894009119713850179871683633744139275973644017007014763706655703504338121113576415018451821413619823495159601064752712575935185304332875537783057509567425442684712219618709178560783936144511383335649103256405733898667178123972237519316430617013859539474367843392670986712452211189690840236327411496601243483098929941738030588417166613073040067588380432111555379440605497721705942821514886165672771240903387727745629097110134885184374118695655449745736845218066982911045058004299887953899027804383596282409421860556287788428802127553884803728640019441614257499904272009595204654170598104989967504511936471172772220436102614079750809686975176600237187748348016120310234680567112644766123747627852190241202569943534716226660893675219833111813511146503854895025120655772636145473604426859498074396932331297127377157347099713952291182653485155587137336629120242714302503763269501350911612952993785864681307226486008270881333538193703682598867893321238327053297625857382790097826460545598555131836688844628265133798491667839409761353766251798258249663458771950124384040359140849209733754642474488176184070023569580177410177696925077814893386672557898564589851056891960924398841569280696983352240225634570497312245269354193837004843183357196516626721575524193401933099018319309196582920969656247667683659647019595754739345514337413708761517323677204227385674279170698204549953095918872434939524094441678998846319845504852393662972079777452814399418256789457795712552426826089940863317371538896262889629402112108884427376568624527612130371017300785135715404533041507959447776143597437803742436646973247138410492124314138903579092416036406314038149831481905251720937103964026808994832572297954564042701757722904173234796073618787889913318305843069394825961318713816423467218730845133877219086975104942843769325024981656673816260615941768252509993741672883951744066932549653403101452225316189009235376486378482881344209870048096227171226407489571939002918573307460104360729190945767994614929290427981687729426487729952858434647775386906950148984133924540394144680263625402118614317031251117577642829914644533408920976961699098372652361768745605894704968170136974909523072082682887890730190018253425805343421705928713931737993142410852647390948284596418093614138475831136130576108462366837237695913492615824516221552134879244145041756848064120636520170386330129532777699023118648020067556905682295016354931992305914246396217025329747573114094220180199368035026495636955866425906762685687372110339156793839895765565193177883000241613539562437777840801748819373095020699900890899328088397430367736595524891300156633294077907139615464534088791510300651321934486673248275907946807879819425019582622320395131252014109960531260696555404248670549986786923021746989009547850725672978794769888831093487464426400718183160331655511534276155622405474473378049246214952133258527698847336269182649174338987824789278468918828054669982303689939783413747587025805716349413568433929396068192061773331791738208562436433635359863494496890781064019674074436583667071586924521182997893804077137501290858646578905771426833582768978554717687184427726120509266486102051535642840632368481807287940717127966820060727559555904040233178749447346454760628189541512139162918444297651066947969354016866010055196077687335396511614930937570968554559381513789569039251014953265628147011998326992200066392875374713135236421589265126204072887716578358405219646054105435443642166562244565042999010256586927279142752931172082793937751326106052881235373451068372939893580871243869385934389175713376300720319760816604464683937725806909237297523486702916910426369262090199605204121024077648190316014085863558427609537086558164273995349346546314504040199528537252004957805254656251154109252437991326262713609099402902262062836752132305065183934057450112099341464918433323646569371725914489324159006242020612885732926133596808726500045628284557574596592120530341310111827501306961509835515632004310784601906565493806542525229161991819959602752327702249855738824899882707465936355768582560518068964285376850772012220347920993936179268206590142165615925306737944568949070853263568196831861772268249911472615732035807646298116244013316737892788689229032593349861797021994981925739617673075834417098559222170171825712777534491508205278430904619460835217402005838672849709411023266953921445461066215006410674740207009189911951376466904481267253691537162290791385403937560077835153374167747942100384002308951850994548779039346122220865060160500351776264831611153325587705073541279249909859373473787081194253055121436979749914951860535920403830235716352727630874693219622190064260886183676103346002255477477813641012691906569686495012688376296907233961276287223041141813610060264044030035996988919945827397624114613744804059697062576764723766065541618574690527229238228275186799156983390747671146103022776606020061246876477728819096791613354019881402757992174167678799231603963569492851513633647219540611171767387372555728522940054361785176502307544693869307873499110352182532929726044553210797887711449898870911511237250604238753734841257086064069052058452122754533848008205302450456517669518576913200042816758054924811780519832646032445792829730129105318385636821206215531288668564956512613892261367064093953334570526986959692350353094224543865278677673027540402702246384483553239914751363441044050092330361271496081355490531539021002299595756583705381261965683144286057956696622154721695620870013727768536960840704833325132793112232507148630206951245395003735723346807094656483089209801534878705633491092366057554050864111521441481434630437273271045027768661953107858323334857840297160925215326092558932655600672124359464255065996771770388445396181632879614460817789272171836908880126778207430106422524634807454300476492885553409062185153654355474125476152769772667769772777058315801412185688011705028365275543214803488004442979998062157904564161957212784508928489806426497427090579129069217807298769477975112447305991406050629946894280931034216416629935614828130998870745292716048433630818404126469637925843094185442216359084576146078558562473814931427078266215185541603870206876980461747400808324343665382354555109449498431093494759944672673665352517662706772194183191977196378015702169933675083760057163454643671776723387588643405644871566964321041282595645349841388412890420682047007615596916843038999348366793542549210328113363184722592305554383058206941675629992013373175489122037230349072681068534454035993561823576312837767640631013125335212141994611869350833176587852047112364331226765129964171325217513553261867681942338790365468908001827135283584888444111761234101179918709236507184857856221021104009776994453121795022479578069506532965940383987369907240797679040826794007618729547835963492793904576973661643405359792219285870574957481696694062334272619733518136626063735982575552496509807260123668283605928341855848026958413772558970883789942910549800331113884603401939166122186696058491571485733568286149500019097591125218800396419762163559375743718011480559442298730418196808085647265713547612831629200449880315402105530597076666362749328308916880932359290081787411985738317192616728834918402429721290434965526942726402559641463525914348400675867690350382320572934132981593533044446496829441367323442158380761694831219333119819061096142952201536170298575105594326461468505452684975764807808009221335811378197749271768545075538328768874474591593731162470601091244609829424841287520224462594477638749491997840446829257360968534549843266536862844489365704111817793806441616531223600214918768769467398407517176307516849856359201486892943105940202457969622924566644881967576294349535326382171613395757790766370764569570259738800438415805894336137106551859987600754924187211714889295221737721146081154344982665479872580056674724051122007383459271575727715218589946948117940644466399432370044291140747218180224825837736017346685300744985564715420036123593397312914458591522887408719508708632218837288262822884631843717261903305777147651564143822306791847386039147683108141358275755853643597721650028277803713422869688787349795096031108899196143386664068450697420787700280509367203387232629637856038653216432348815557557018469089074647879122436375556668678067610544955017260791142930831285761254481944449473244819093795369008206384631678225064809531810406570254327604385703505922818919878065865412184299217273720955103242251079718077833042609086794273428955735559252723805511440438001239041687716445180226491681641927401106451622431101700056691121733189423400547959684669804298017362570406733282129962153684881404102194463424646220745575643960452985313071409084608499653767803793201899140865814662175319337665970114330608625009829566917638846056762972931464911493704624469351984039534449135141193667933301936617663652555149174982307987072280860859626112660504289296966535652516688885572112276802772743708917389639772257564890533401038855931125679991516589025016486961427207005916056166159702451989051832969278935550303934681219761582183980483960562523091462638447386296039848924386187298507775928792722068554807210497817653286210187476766897248841139560349480376727036316921007350834073865261684507482496448597428134936480372426116704266870831925040997615319076855770327421785010006441984124207396400139603601583810565928413684574119102736420274163723488214524101347716529603128408658419787951116511529827814620379139855006399960326591248525308493690313130100799977191362230866011099929142871249388541612038020411340188887219693477904497527454288072803509305828754420755134816660927879353566521255620139988249628478726214432362853676502591450468377635282587652139156480972141929675549384375582600253168536356731379262475878049445944183429172756988376226261846365452743497662411138451305481449836311789784489732076719508784158618879692955819733250699951402601511675529750575437810242238957925786562128432731202200716730574069286869363930186765958251326499145950260917069347519408975357464016830811798846452473618956056479426358070562563281189269663026479535951097127659136233180866921535788607812759910537171402204506186075374866306350591483916467656723205714516886170790984695932236724946737583099607042589220481550799132752088583781117685214269334786921895240622657921043620348852926267984013953216458791151579050460579710838983371864038024417511347226472547010794793996953554669619726763255229914654933499663234185951450360980344092212206712567698723427940708857070474293173329188523896721971353924492426178641188637790962814486917869468177591717150669111480020759432012061969637795103227089029566085562225452602610460736131368869009281721068198618553780982018471154163630326265699283424155023600978046417108525537612728905335045506135684143775854429677977014660294387687225115363801191758154028120818255606485410787933598921064427244898618961629413418001295130683638609294100083136673372153008352696235737175330738653338204842190308186449184093723944033405244909554558016406460761581010301767488475017661908692946098769201691202181688291040870709560951470416921147027413390052253340834812870353031023919699978597413908593605433599697075604460134242453682496098772581311024732798562072126572499003468293886872304895562253204463602639854225258416464324271611419817802482595563544907219226583863662663750835944314877635156145710745528016159677048442714194435183275698407552677926411261765250615965235457187956673170913319358761628255920783080185206890151504713340386100310055914817852110384754542933389188444120517943969970194112695119526564919594189975418393234647424290702718875223534393673633663200307232747037407123982562024662651974090199762452056198557625760008708173083288344381831070054514493545885422678578551915372292379555494333410174420169600090696415612732297770221217951868376359082255128816470021992348864043959153018464004714321186360622527011541122283802778538911098490201342741014121559769965438877197485376431158229838533123071751132961904559007938064276695819014842627991221792947987348901868471676503827328552059082984529806259250352128451925927986593506132961946796252373972565584157853744567558998032405492186962888490332560851455344391660226257775512916200772796852629387937530454181080729285891989715381797343496187232927614747850192611450413274873242970583408471112333746274617274626582415324271059322506255302314738759251724787322881491455915605036334575424233779160374952502493022351481961381162563911415610326844958072508273431765944054098269765269344579863479709743124498271933113863873159636361218623497261409556079920628316999420072054811525353393946076850019909886553861433495781650089961649079678142901148387645682174914075623767618453775144031475411206760160726460556859257799322070337333398916369504346690694828436629980037414527627716547623825546170883189810868806847853705536480469350958818025360529740793538676511195079373282083146268960071075175520614433784114549950136432446328193346389050936545714506900864483440180428363390513578157273973334537284263372174065775771079830517555721036795976901889958494130195999573017901240193908681356585539661941371794487632079868800371607303220547423572266896801882123424391885984168972277652194032493227314793669234004848976059037958094696041754279613782553781223947646147832926976545162290281701100437846038756544151739433960048915318817576650500951697402415644771293656614253949368884230517400129920556854289853897942669956777027089146513736892206104415481662156804219838476730871787590279209175900695273456682026513373111518000181434120962601658629821076663523361774007837783423709152644063054071807843358061072961105550020415131696373046849213356837265400307509829089364612047891114753037049893952833457824082817386441322710002968311940203323456420826473276233830294639378998375836554559919340866235090967961134004867027123176526663710778725111860354037554487418693519733656621772359229396776463251562023487570113795712096237723431370212031004965152111976013176419408203437348512852602913334915125083119802850177855710725373149139215709105130965059885999931560863655477403551898166733535880048214665099741433761182777723351910741217572841592580872591315074606025634903777263373914461377038021318347447301113032670296917335047701632106616227830027269283365584011791419447808748253360714403296252285775009808599609040936312635621328162071453406104224112083010008587264252112262480142647519426184325853386753874054743491072710049754281159466017136122590440158991600229827801796035194080046513534752698777609527839984368086908989197839693532179980139135442552717910225397010810632143048511378291498511381969143043497500189980681644412123273328307192824362406733196554692677851193152775113446468905504248113361434984604849051258345683266441528489713972376040328212660253516693914082049947320486021627759791771234751097502403078935759937715095021751693555827072533911892334070223832077585802137174778378778391015234132098489423459613692340497998279304144463162707214796117456975719681239291913740982925805561955207434243295982898980529233366415419256367380689494201471241340525072204061794355252555225008748790086568314542835167750542294803274783044056438581591952666758282929705226127628711040134801787224801789684052407924360582742467443076721645270313451354167649668901274786801010295133862698649748212118629040337691568576240699296372493097201628707200189835423690364149270236961938547372480329855045112089192879829874467864129159417531675602533435310626745254507114181483239880607297140234725520713490798398982355268723950909365667878992383712578976248755990443228895388377317348941122757071410959790047919301046740750411435381782464630795989555638991884773781341347070246747362112048986226991888517456251732519341352038115863350123913054441910073628447567514161050410973505852762044489190978901984315485280533985777844313933883994310444465669244550885946314081751220331390681596592510546858013133838152176418210433429788826119630443111388796258746090226130900849975430395771243230616906262919403921439740270894777663702488155499322458825979020631257436910946393252806241642476868495455324938017639371615636847859823715902385421265840615367228607131702674740131145261063765383390315921943469817605358380310612887852051546933639241088467632009567089718367490578163085158138161966882222047570437590614338040725853862083565176998426774523195824182683698270160237414938363496629351576854061397342746470899685618170160551104880971554859118617189668025973541705423985135560018720335079060946421271143993196046527424050882225359773481519135438571253258540493946010865793798058620143366078825219717809025817370870916460452727977153509910340736425020386386718220522879694458387652947951048660717390229327455426785669776865939923416834122274663015062155320502655341460995249356050854921756549134830958906536175693817637473644183378974229700703545206663170929607591989627732423090252397443861014263098687733913882518684316501027964911497737582888913450341148865948670215492101084328080783428089417298008983297536940644969903125399863919581601468995220880662285408414864274786281975546629278814621607171381880180840572084715868906836919393381864278454537956719272397972364651667592011057995663962598535512763558768140213409829016296873429850792471846056874828331381259161962476156902875901072733103299140623864608333378638257926302391590003557609032477281338887339178096966601469615031754226751125993315529674213336300222964906480934582008181061802100227664580400278213336758573019011371754672763059044353131319036092489097246427928455549913490005180295707082919052556781889913899625138662319380053611346224294610248954072404857123256628888931722116432947816190554868054943441034090680716088028227959686950133643814268252170472870863010137301155236861416908375675747637239763185757038109443390564564468524183028148107998376918512127201935044041804604721626939445788377090105974693219720558114078775989772072009689382249303236830515862657281114637996983137517937623215111252349734305240622105244234353732905655163406669506165892878218707756794176080712973781335187117931650033155523822487730653444179453415395202424449703410120874072188109388268167512042299404948179449472732894770111574139441228455521828424922240658752689172272780607116754046973008037039618787796694882555614674384392570115829546661358678671897661297311267200072971553613027503556167817765442287442114729881614802705243806817653573275578602505847084013208837932816008769081300492491473682517035382219619039014999523495387105997351143478292339499187936608692301375596368532373806703591144243268561512109404259582639301678017128669239283231057658851714020211196957064799814031505633045141564414623163763809904402816256917576489142569714163598439317433270237812336938043012892626375382667795034169334323607500248175741808750388475094939454896209740485442635637164995949920980884294790363666297526003243856352945844728944547166209297495496616877414120882130477022816116456044007236351581149729739218966737382647204722642221242016560150284971306332795814302516013694825567014780935790889657134926158161346901806965089556310121218491805847922720691871696316330044858020102860657858591269974637661741463934159569539554203314628026518951167938074573315759846086173702687867602943677780500244673391332431669880354073232388281847501051641331189537036488422690270478052742490603492082954755054003457160184072574536938145531175354210726557835615499874447480427323457880061873149341566046352979779455075359304795687209316724536547208381685855606043801977030764246083489876101345709394877002946175792061952549255757109038525171488525265671045349813419803390641529876343695420256080277614421914318921393908834543131769685101840103844472348948869520981943531906506555354617335814045544837884752526253949665869992058417652780125341033896469818642430034146791380619028059607854888010789705516946215228773090104467462497979992627120951684779568482583341402266477210843362437593741610536734041954738964197895425335036301861400951534766961476255651873823292468547356935802896011536791787303553159378363082248615177770541577576561759358512016692943111138863582159667618830326104164651714846979385422621687161400122378213779774131268977266712992025922017408770076956283473932201088159356286281928563571893384958850603853158179760679479840878360975960149733420572704603521790605647603285569276273495182203236144112584182426247712012035776388895974318232827871314608053533574494297621796789034568169889553518504478325616380709476951699086247100019748809205009521943632378719764870339223811540363475488626845956159755193765410115014067001226927474393888589943859730245414801061235908036274585288493563251585384383242493252666087588908318700709100237377106576985056433928854337658342596750653715005333514489908293887737352051459333049626531415141386124437935885070944688045486975358170212908490787347806814366323322819415827345671356443171537967818058195852464840084032909981943781718177302317003989733050495387356116261023999433259780126893432605584710278764901070923443884634011735556865903585244919370181041626208504299258697435817098133894045934471937493877624232409852832762266604942385129709453245586252103600829286649724174919141988966129558076770979594795306013119159011773943104209049079424448868513086844493705909026006120649425744710353547657859242708130410618546219881830090634588187038755856274911587375421064667951346487586771543838018521348281915812462599335160198935595167968932852205824799421034512715877163345222995418839680448835529753361286837225935390079201666941339091168758803988828869216002373257361588207163516271332810518187602104852180675526648673908900907195138058626735124312215691637902277328705410842037841525683288718046987952513073266340278519059417338920358540395677035611329354482585628287610610698229721420961993509331312171187891078766872044548876089410174798647137882462153955933333275562009439580434537919782280590395959927436913793778664940964048777841748336432684026282932406260081908081804390914556351936856063045089142289645219987798849347477729132797266027658401667890136490508741142126861969862044126965282981087045479861559545338021201155646979976785738920186243599326777689454060508218838227909833627167124490026761178498264377033002081844590009717235204331994708242098771514449751017055643029542821819670009202515615844174205933658148134902693111517093872260026458630561325605792560927332265579346280805683443921373688405650434307396574061017779370141424615493070741360805442100295600095663588977899267630517718781943706761498217564186590116160865408635391513039201316805769034172596453692350806417446562351523929050409479953184074862151210561833854566176652606393713658802521666223576132201941701372664966073252010771947931265282763302413805164907174565964853748354669194523580315301969160480994606814904037819829732360930087135760798621425422096419004367905479049930078372421581954535418371129368658430553842717628035279128821129308351575656599944741788438381565148434229858704245592434693295232821803508333726283791830216591836181554217157448465778420134329982594566884558266171979012180849480332448787258183774805522268151011371745368417870280274452442905474518234674919564188551244421337783521423865979925988203287085109338386829906571994614906290257427686038850511032638544540419184958866538545040571323629681069146814847869659166861842756798460041868762298055562963045953227923051616721591968675849523635298935788507746081537321454642984792310511676357749494622952569497660359473962430995343310404994209677883827002714478494069037073249106444151696053256560586778757417472110827435774315194060757983563629143326397812218946287447798119807225646714664054850131009656786314880090303749338875364183165134982546694673316118123364854397649325026179549357204305402182974871251107404011611405899911093062492312813116340549262571356721818628932786138833718028535056503591952741400869510926167541476792668032109237467087213606278332922386413619594121339278036118276324106004740971111048140003623342714514483334641675466354699731494756643423659493496845884551524150756376605086632827424794136062876041290644913828519456402643153225858624043141838669590633245063000392213192647625962691510904457695301444054618037857503036686212462278639752746667870121003392984873375014475600322100622358029343774955032037012738468163061026570300872275462966796880890587127676361066225722352229739206443093524327228100859973095132528630601105497915644791845004618046762408928925680912930592960642357021061524646205023248966593987324933967376952023991760898474571843531936646529125848064480196520162838795189499336759241485626136995945307287254532463291529110128763770605570609531377527751867923292134955245133089867969165129073841302167573238637575820080363575728002754490327953079900799442541108725693188014667935595834676432868876966610097395749967836593397846346959948950610490383647409504695226063858046758073069912290474089879166872117147527644711604401952718169508289733537148530928937046384420893299771125856840846608339934045689026787516008775461267988015465856522061210953490796707365539702576199431376639960606061106406959330828171876426043573425361756943784848495250108266488395159700490598380812105221111091943323951136051446459834210799058082093716464523127704023160072138543723461267260997870385657091998507595634613248460188409850194287687902268734556500519121546544063829253851276317663922050938345204300773017029940362615434001322763910912988327863920412300445551684054889809080779174636092439334912641164240093880746356607262336695842764583698268734815881961058571835767462009650526065929263548291499045768307210893245857073701660717398194485028842603963660746031184786225831056580870870305567595861341700745402965687634774176431051751036732869245558582082372038601781739405175130437994868822320044378043103170921034261674998000073016094814586374488778522273076330495383944345382770608760763542098445008306247630253572781032783461766970544287155315340016497076657195985041748199087201490875686037783591994719343352772947285537925787684832301101859365800717291186967617655053775030293033830706448912811412025506150896411007623824574488655182581058140345320124754723269087547507078577659732542844459353044992070014538748948226556442223696365544194225441338212225477497535494624827680533336983284156138692363443358553868471111430498248398991803165458638289353799130535222833430137953372954016257623228081138499491876144141322933767106563492528814528239506209022357876684650116660097382753660405446941653422239052108314585847035529352219928272760574821266065291385530345549744551470344939486863429459658431024190785923680224560763936784166270518555178702904073557304620639692453307795782245949710420188043000183881429008173039450507342787013124466860092778581811040911511729374873627887874907465285565434748886831064110051023020875107768918781525622735251550379532444857787277617001964853703555167655209119339343762866284619844026295252183678522367475108809781507098978413086245881522660963551401874495836926917799047120726494905737264286005211403581231076006699518536124862746756375896225299116496066876508261734178484789337295056739007878617925351440621045366250640463728815698232317500596261080921955211150859302955654967538862612972339914628358476048627627027309739202001432248707582337354915246085608210328882974183906478869923273691360048837436615223517058437705545210815513361262142911815615301758882573594892507108879262128641392443309383797333867806131795237315266773820858024701433527009243803266951742119507670884326346442749127558907746863582162166042741315170212458586056233631493164646913946562497471741958354218607748711057338458433689939645913740603382159352243594751626239188685307822821763983237306180204246560477527943104796189724299533029792497481684052893791044947004590864991872727345413508101983881864673609392571930511968645601855782450218231065889437986522432050677379966196955472440585922417953006820451795370043472451762893566770508490213107736625751697335527462302943031203596260953423574397249659211010657817826108745318874803187430823573699195156340957162700992444929749105489851519658664740148225106335367949737142510229341882585117371994499115097583746130105505064197721531929354875371191630262030328588658528480193509225875775597425276584011721342323648084027143356367542046375182552524944329657043861387865901965738802868401894087672816714137033661732650120578653915780703088714261519075001492576112927675193096728453971160213606303090542243966320674323582797889332324405779199278484633339777737655901870574806828678347965624146102899508487399692970750432753029972872297327934442988646412725348160603779707298299173029296308695801996312413304939350493325412355071054461182591141116454534710329881047844067780138077131465400099386306481266614330858206811395838319169545558259426895769841428893743467084107946318932539106963955780706021245974898293564613560788983472419979478564362042094613412387613198865352358312996862268948608408456655606876954501274486631405054735351746873009806322780468912246821460806727627708402402266155485024008952891657117617439020337584877842911289623247059191874691042005848326140677333751027195653994697162517248312230633919328707983800748485726516123434933273356664473358556430235280883924348278760886164943289399166399210488307847777048045728491456303353265070029588906265915498509407972767567129795010098229476228961891591441520032283878773485130979081019129267227103778898053964156362364169154985768408398468861684375407065121039062506128107663799047908879674778069738473170475253442156390387201238806323688037017949308954900776331523063548374256816653361606641980030188287123767481898330246836371488309259283375902278942588060087286038859168849730693948020511221766359138251524278670094406942355120201568377778851824670025651708509249623747726813694284350062938814429987905301056217375459182679973217735029368928065210025396268807498092643458011655715886700443503976505323478287327368840863540002740676783821963522226539290939807367391364082898722017776747168118195856133721583119054682936083236976113450281757830202934845982925000895682630271263295866292147653142233351793093387951357095346377183684092444422096319331295620305575517340067973740614162107923633423805646850092037167152642556371853889571416419772387422610596667396997173168169415435095283193556417705668622215217991151355639707143312893657553844648326201206424338016955862698561022460646069330793847858814367407000599769703649019273328826135329363112403650698652160638987250267238087403396744397830258296894256896741864336134979475245526291426522842419243083388103580053787023999542172113686550275341362211693140694669513186928102574795985605145005021715913317751609957865551981886193211282110709442287240442481153406055895958355815232012184605820563592699303478851132068626627588771446035996656108430725696500563064489187599466596772847171539573612108180841547273142661748933134174632662354222072600146012701206934639520564445543291662986660783089068118790090815295063626782075614388815781351134695366303878412092346942868730839320432333872775496805210302821544324723388845215343727250128589747691460808314404125868181540049187772287869801853454537006526655649170915429522756709222217474112062720656622989806032891672068743654948246108697367225547404812889242471854323605753411672850757552057131156697954584887398742228135887985840783135060548290551482785294891121905383195624228719484759407859398047901094194070671764439032730712135887385049993638838205501683402777496070276844880281912220636888636811043569529300652195528261526991271637277388418993287130563464688227398288763198645709836308917786487086676185485680047672552675414742851028145807403152992197814557756843681110185317498167016426647884090262682824448258027532094549915104518517716546311804904567985713257528117913656278158111288816562285876030875974963849435275676612168959261485030785362045274507752950631012480341804584059432926079854435620093708091821523920371790678121992280496069738238743312626730306795943960954957189577217915597300588693646845576676092450906088202212235719254536715191834872587423919410890444115959932760044506556206461164655665487594247369252336955993030355095817626176231849561906494839673002037763874369343999829430209147073618947932692762445186560239559053705128978163455423320114975994896278424327483788032701418676952621180975006405149755889650293004867605208010491537885413909424531691719987628941277221129464568294860281493181560249677887949813777216229359437811004448060797672429276249510784153446429150842764520002042769470698041775832209097020291657347251582904630910359037842977572651720877244740952267166306005469716387943171196873484688738186656751279298575016363411314627530499019135646823804329970695770150789337728658035712790913767420805655493624646 lz4-2.5.2/testdata/pi.txt.lz4000066400000000000000000002721731364760661600157560ustar00rootroot00000000000000"MdPht3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081284811174502841027019385211055596446229489549303819644288109756659334461284756482337867831652712019091456485669234603486104543266482133936072602491412737245870066063155881748815209209628292540917153643678925903600113305305488204665213841469519415116094330572703657595919530921861173819326117931051185480744623799627495673518857527248912279381830119491298336733624406566430860213949463952247371907021798609437027705392171762931767523846748184676694051320005681271452635608277857713427577896091736371787214684409012249534301465495853710507922796892589235420199561121290219608640344181598136297747713099605187072113499999983729780499510597317328160963185950244594553469083026425223082533446850352619311881710100031378387528865875332083814206171776691473035982534904287554687311595628638823537875!957781857780532171226806613001927876611195909216%89380952572010654858632788659361533818279682303019520353018529689957736225994138912497217752834791315155748572424541506959508295331168617278558890750983817546374649393192550604009277016711390098488240128583616035637076601047101819429,19894676783744944825537977472684710404753464620804668425906 O3313677028989152104752162056966024058038150193511253382430035587640247496473263914199272604269{782354781636009341721641219924586315030286182974555706749838505494588586926995690927210797509302955321165344987202755960236480665499119881!775356636980742654252786255181841757467289097777T00081647060016145249192173217214772350141441973568548161361157352552133475741849468438523323907394143334547762416862518983569485562099219222184272550254256887671790494601653466804988627232791786085784383U7976681454100953883786360950680064225125205117392984896084128488626945604241965285022210661186306744U2039194945047123713786960956364371917287467764657573962413890865832645995813390478027590099465764078951269468398352595709825822620522489407726719478268482601476990902640136394437455305068203496252451749399651431429809190659250937221696461515709858387410597885959772975498930161753928468138268683868942774155991855925245953959431049972524680845987273644695848653836736222626099124608051243884390451244136549762780797715691435997700129616089441694868555848406353422072225848158456028506016842739452267A895252254995466672782398645659611635Ti30577456498035593634568174324112515076069479451096596094025228879710893145669136867228748940560101503308617928680920874782493858900971490967598526136554978189312978482168299894872265880485756401427047755513237964145152374623436454285844479526586782105114135473573952311342716610213596953623144295248493718711014576540359027993440374200731057853906219838744780847%83321445713868751943506430218453191048481005370614681911979399520614196634287544406437458.9998391015919561814675142691239907186494231961567945208095146550225231603881930142093762137855956638937787083039069792077346722182562599661501421503068038447734549202605414665925201497442850732518666002132434088190710486331734649651453905796268561005508106658796998163574736384052571459102897064140110971206280439039759515677157700420337869936007230558763176359421873125147120532928191826186125867321579198414848829164470609575270695722091756711672291098169091528017350671274858322287183520935396572512108357915136988209144421006751033467110314126711136990865851639831501970165C .8517143765761835155650884909989859982387345528331635507647918322618548963213293308985706420467525907091548141654985946163718027098199430992448895757128289059232332609729971208443357326548938239119325974636673058360414281388303203824903758985243744170291327656180937734440307074692112019130203303801976211011004492932151608424448596376698389522868478312355265821314495768572624334418930396864262434107732269780280731891544110104468232527162010526522721116603966655730925471105578537634668206531098965269186205647693125705863566201855810072936065987648611791045334885034611365768675324680396265797877185560845529654126654085306143444318586769751456614068007002378776591344017127494704205622305389945613140711270004078547332699390 "6646458807972708266830634328587856983052358089330C 4067954571637752542021149557615814002501262285941302164715509792592309907965473761255176567513575178296664547791745011299614890304639947132962107340437518957359614589a971311 G29782856475032031986915140287080859904801094121472213179476477726224142548545403321571228813758504306332175q 98662237172159160771669254748738986654 1146540628433663937900397692656721463r73609657120918076h?16641627488880078692560290228472104031721186082041900042296617119637792133757595015660496318629472#64252308177036751590673502350728354056704038674351@ a2477158915049530984448933309634087807693259939780541934144737744184263129860809988868741326047215695162396586457{u315981931951673538129741677294786724229246543668009806769282382806899640048243540370141631496589794092432378969070697794223625082216%3837986230015937764716512289357860158816175578297352 042815126272037343146531D41603199066554187639792933441952154134189948544473456738316249934191318148092777710386387734317720754565453220777092120190516609628049092636019759882816133231666365286193266863360627356763035447762803504507772355471058595487027908143562401451718062464362 61275318134078330336254232783944975Y 720583531147711992606381 !76: "5970309833913077109870408591337464144282277263465}745878477872@q7152807907707157213W060570073349243693113835049316312840425121925651798069411352801314701304781643788518529092854520116583656213491434159562586586557055269049652Y03385072242648293972856@ w7756068887644624824685792603953527734803048029005876075825104747091643961362676044925627420420832085661190625454337213153595845068772416187667952406163P57719542916299193064553779914;(04328752628889639958794757291746426357455254079091451355 )41091193932519107602082520261879853188770584297259167781,990090192116971737278476847268608490033770242 5130050051683233643503895 893922334517220138128069650117844087451960121937162313017114448464090389064495444006)07548516026327505298349187407866808818338510228334508504]5039302133219715518{545500766828294930413776552793975175461395398468339363830474611996653858153842056853386218672523340283087112328278921250771262946322956398 358211674562701021835646Nq4967151 97303811980049734072396103685406643193901906996395524530054505806855019567302292191393391856803449039820595510022635353619204199474553859381023439554495977837790237421617271117236434354394782218185286240851400666044332588 67054315470696574745855033p &42107301545940516553790686627333799585115625784322988319898757141595781pa583300'730681216028764962867446047746491599505497374256269010 78198683465741268049256456145372347867330390468838343 5379498641927056387293174872t7601123029911367938627089438799362016295p3714248928304754668476535761647737900490757155527819653621323926G'581559074220202031872776052772190055614842555187925303 %9844253223415762336106425063904975008656271095359194#51413103482276930624743536325691607815478181152843J70611086153315044521274739245449454236828860613408414863776700961207151249140430272538607648236341433462351897576645216413767969031495019108575984423919862916421939949072362346468441173940326591840443780513338945257423995082965912285085558215725031071257012668302402929525220118726767562204154205161841634847565169998116141010029960783869092916)84002691041407928862150784245167090870006992821206604183< A53550?5325675328612910424877618258297651579598470356222629348600341587229805349896503}88202734209222245339856264766914905562842503912757710284027998066365825488926488025456610172967026640765590429099456815065265305371829412703_ ]378517860904070866711496558343434769338578171138645587367812301458768712660348913909562009939361031029161615 _84379099042317473363948045759314931405297634757481193567091101377517210080315590248530906692037671922033229094 685142214V3 7034436619910403375111735471 0464490263655128162288244625759163/10722538374218214088350865739177150968288747826569959957449066175834413752239709683408005355984917541738188399944697486762655165827658483588453142775687900290 8352971634456212964043760066510124120065975585127617858382f7484423608007193045761893234922927` O9875187212726750798125547095890455635792122103334669749923563025494780249011419521238281530911z 738602515227429958180724716259166854"12[394707911915326734302824418604142636395480004480026704962482017928975831832713142l 6923488962766844032275249603579964s,50493681836090032380929345958897069536534940603402166544375#45632882250545255640564n 51518754711962184439,337543885690+ &031509526179378002974120766514793942590298969594699552186561967337862362561252163208628692m90436480229678070576561514463204692) 212073883778142335628n9\Q06822122482611.89638140918390;7222088832151375560037279839400415297002878307667094447456013455641725437039612257142)154357846878861444581231459357198492252847160504922124242147805734551050080190869960330287081081754501193071412233908663938339529425786905076431006383519834389341596131854347546495569781038293097164651438407007073604112373599843452251610507027056235266012764848308407611830130527932054274628654036036745328651057065874882256981579$7 220575059683440869@0141020672358502007263265134105592401902 E248439140359989535394590944070469120914093870012645600162374288021092764579310657922 98872758461783699989225695968815920N0165525637567856672279661988578279p9<4454551296563443484205579829368 20277098429423253302257634180703947699415979159s a697521 366555661567873640053666564122175543529169414599041608753201868379370 86894791510 #85290234529244077365949563051007421087142613497459# 38498713757047101787957319066670214498675952808243694457897723300487647652413390759204340196340391147320233807220106825634274)0243354400515212669324Pb739770L837535551697390074972973635496453328886984406119649616277344951827369558822075735515898551909866653935494810688732068599075 -342402300925900701731960362254756478940647548346647760411463n5[330684495397.0302346046147096169688688501408347040546074295869913829668246`&10318879065287036650832431974404 7893482308943870272280973624809399627060747279925399442808113736943388729406307926159599546262462970706259484556903LA7299 894180595340236235508134949004364278527138315912568989295196427287573946914 436694153236100453730488170659412173524625895487301676002988*786628561249665523533829428785425340483083307$72285635591525347844598183134112900199920(522051173365856407826484942764411376393866924803118364453698589175442647399882284621844900877769776312795722672655562596282542765318300134070922334365779160128093179401718598599933849235495640057099558561134980252499066984233017350358044081168552653119-708994273287092584878944364600504108922669178352587078595129 7295351953788553458608590290817651557803905946408735061232261120093731080485485263572282576%lq84662774q0312620 "99Q4853469775164932709 42432227188515974054703!89?7792376122578873!819682546298126868581705074027255026332904497627A23621674119186269 0_"5779586756482399391760426017633870454990176143641N ,1823707648878341968968611815581587360629386038101712158552708238340465647588040513808016336388^1371m#54955618689641122821407655100424104896 858829024367090488711819090A3314K87661810310070549815968077200947469613436092861484941785 A0779>]0854690009445899527942439813921350558642219648349151263901280383200109773868066287792397180146134324457264007 9210031541508936793008169652027600727749674584002836240534603726341655 7601834840 1381855105979705664007509]$78857357960373245141467867036880988060971642584975969309449401515422221943291302173912538>333032511174915696271494331515588540392216409722910k+3552181576282328318234254832611191280092825256190205263016724733148sq077758787611746578671 (7764214411112635835538713610110232679877564102468240322C6417+663785762045302240819727P 11983963087815432211669122464159117767322532643356861461865452226G87268445968442416107854.9808850280054143613146230821025941737562389942075713627516745731891894562/70441335437585753426986994725470316566139919996826282472706413u178923903176085428943733935618891651250424404008952719837873864805847268954624388234375178852014395600571048119498842390606136957342796703461491434478m,4z 2350736502778590897 2731305048893989009923913503373250855982655867089242612429473670193907727130706869170926462548423240748550366080136046689511840093668609546325002145852930950000907151058236267293266 8210493872499669933943516J341461106802674466373_(3407642940266829738652209357016263846485285149036293201A6882'8395366913444708045923/.8171565515656661113598231122506289058549145097157553900243931@09021071194573880176615035270862602h 17975194780610137150044899B22201335013106Na541589871177927752259787428919179155224171895853616805947412341933984202187456m43462392531953135103n 639491199507285 58361935369329699289837914941938572486396883690326556 1664425760791471] 8431573374964883529276932_ Q62947"15374099615455987982598910937171262182830 y1123890119682214294576675807186538065064870261338928229949725745303328389638184394477077940228435988341003583854238973542439564755568409o/ 4455413923941000162076936368/13017819659379746854194633489374)29742391433659360410035234377706588867781139498616478747ta3263852473288964567746676384794665040741118256583788784548581489629612739984134427260860618724554523606431537101127468097787044640947582803487697589483282412392929605829486191966709189580898332012/ 430340128495116203534280144*u2858302435598300320420245120728725355811958401491809692533950757784000674655260314461670508276827722235341911026341631571474061238505988419907611ya805911.8960143166828317632356732541707342081733223046298799280490851M9: 78687894930546955703072619009502$349335910602454508645362893545686295853131533718386!1786227363716975774183023986006591481616404944! 32131389574706208847480236311508984279928532779743113951435741722197597993596850y5745263796289612691572357986620573408375766873884266405990993505000813375432454635967504844235284874701443545419576258473564216198134073117668831- 76979566517_ 2326714810338643913751865946:43450054499539'723287124948347060440634716063258306498297955101095418Q03030b97335834462839476304775645015008"8949548931393944899216125525597701436858943585877~55970816776438001254%3714127834679261019955852247172201777237004178084194725406801556*Q39054.A2354#14238502167190313952629w!391316631345308939062046784387785054239390524731!294769187410114723152893267725#146607300089027768963190220972452075916729700q 807171863810549679731001611506 09223290807 63453452038027860990556900134137182368370991949] =9600755049341267876436746384902063964019766685592335654639138363185745698147&08410809618846054560390384553437291414465134749407848L772175154334260306698!831133Q04219 080143784334151370924:367763108491351615642269847507430329716A40666531527035325467112667522460551199581831963763707617991919203579582007595605a26775794393630746305#8011494271M83913691381072581378135{0559950018354251184172136055727522103526803735726527922417373605751127887218190844900617801388971077082293100279766593583875890939568814852' 726562472776037890814458837 &702843779 782505270487581647032v-908783952324532378960298416692254896497156069811921865849267-9564812781023217416305810554598801D4562997651121241536374515005635070I!59|241342103301566165356024733807843028656=2275304999883701534879300806260-238151613669033411113d $510919367393835229345888322550887064507539473952043C+9067086806445096986548801682874343786126453815834280753061 a9037986 459968115441974253634439025100158882<7450068207041937615845471231834600726293395505q5571372 :2322682130124767945226448209102356477527230820810635188991526928891084555039650343978962l016110153235160519T#1184494990778"2073a0586857787872098290135295661397888486050978608595701773129815531495168146717695976099421003618355913877781769845 A0446i06162298486169353373865787735983361 4133853684211978938900--569196780455448285841709672125_!75Z%Q82310U38776682721157269179589754693992642152338576623167627547570354699414892904130]611943919628388705436777432242768091323654494853667680000010652624854730558615989991401707698385483188750142 899506854530A680322651756622075269517914422528081651716677t;q9303548G-040238174608923283917032754257508676551178593950027933895920Z a2789677644531840404185540104351348389531201326378369283580827193783126549617459970567450718332065034556644034490 756001125018'073612227659492783937064784264567633881880756561216896'611390390162022194109260887148379895599991120991646464.568277004574243434 !2258933012778158686952 993646101756850601671453+81480105458860564550133203758640324029871709348091'!11"684847780394475697980318099q4228098766973237695780806822904599212366168902596273043067931619401764737693873 ,3361833216142802149763399189835484875625298752423873077559546519639440182184099841248982623673771467226c0Q36432 33572810707864043814850188411431885988276944901193&8271588841338694346828590066640806314077757786307294004929403024204a565479548558044586572022763784046682337985282710-219753541795011347273625774080213476826045022851579795797647467022/9561601569108 8245026792659!"5039587922981852648007068376504183656209455543461!15^%65974881916341359556719649654032187271602648593049038958906612725079482<521753621850796297785a843271. "2381015874445052866523802253284389137527384589238A3547*981715784478342158223270206902872323300538621634798850946954720047952311201504329322662827276321779088400878614802214753765781058197022263097174|Q12724781695729614295782090830733233560348465318730293026659645i8375428897557971449924+8681799213893469244741985097334626793321072686870768062639 196504409954216762784091466985692571 157407938053z239477557441591845821562518192709607483329234921034514626437449805596 %7994145347784574699992128599999399612281615219314888 8022281083001986016549416542I"5867883726095877U1825072759929508931805924610867639958916145855058397274209809097813Q393010676638682404011130402470073508578287246271349463685318154696904669686939254725194139929146U5776255004748529547681479546700705034799958886769501612497228204030399546327883069597624936151010243655535223069061294938859901573466102371223547891129254769617600504797492806072126803922691102777226102544149221550812067717357120271802429681062037l 83716690910941807448781404907551782038565390991(941413215432%25030180275716965082096427348414,639788425600845312140659358090412711359200419759851362547962887361813673732445060792441176391461c 9159880976674470930065463424234606342374746660804317012600520559284936959414340814685298150539471789004518357551541252235905906872648786357525288877371766374860276 96035367947026923229718683293236192007774522126243983349515101986878471719396649769070825217423365662724 302141137199227852699846988477023238238!65890876613601304770984386116870523107 1625172837327286R 487637569816335460883866364069347043720668865127568826614973078865701568501691864748854167915459650723428773069985371390430026653078398776385032381821553559732353068604576083890862788859513l 3042359578249514398859011A 358406674723702971497850843133915627076035639076114554958322669457024941398316343c7595568085683629725386791327505!244919435891284050&95381217913191451350099384631177401797151228378546011[5540286440590249646693070776905548102885020808580087811577381719174177601733073855475800605601433774329901F7253043182519757916792969965041460706645712n4697979642936552016879730003564630457930884032748077181155533090988702550520768046303460865816539487695196004408482065967379473168086415645650530049881616490578831154345485052660069823093157776500378070466126470602145750579327096204782561524714591896522360856241051'52235723973951288181785914279148132828160913693777372229998332708208557377273756676155q9225880|8988762011416800546873655806337342917039079863Q96131fG8267971728982293607028806908776866059325274V "5397691848082041021944719713869256084162451123980 31845412447820501107987655683154!43R10873,5341947230476K"1749869868547076781205124736792479193150856444775 37997322344561o843296846647513336573692387201464723679427870042503255589926884349592876124007558756946413705625140011797133166207153715436006-7318675587143_,309410605969443158Q97009,39491443235366853920994687964506653398573888786614762944341\988899316005)3q78103586020296119363949607501116498327856353 I1684576956871090029997698412632665023477167286573785790857466460772283415403114415294188438761770790430001566986776795760909966559496515273634981189641304331166277q3881740,#17439705406703109676765748695358789670031925866259 0533584384656023391796749267844763708474978_55790073841914731YQ13525954 60434225372996286326749 580602964211463864368642247248872834341%573482481833306695966886 63491416328426414974533349999480998758881593507357815195889900508535103572613t134367534714104836017546488300641674521673719048y 1134434948192626811107399482 A394903169019731852119552635!43 82249862768318446607291248747wa617969M69738776589hG541703188477886759290260700432126661791922352093822787888098863359911608192353555704641320859189796132B'756490976000139962344455350143464268604644958624769094 8293294140411146540923988344435159107739441118407449810663472 2393582740194493566516108G25678529776973468430306146241803585293315973458303845541033701091676776374276210213701X445092630719@318485749233181672072137279355679528441815f1728 6333039373562420016045664557? !816605216660873874804724339121295587776390696903 285277538940524607584962315743691711317613478388271941686066257210368513215664780014767523103935786068961112599602818393095487090590738613519145918195102973278755710497290114871718971800469616977700179139196137914171627070189584692143436967629274591099400600849835684252019155937037010110497473394938779417433031785348 2219829705797511914405g23588303454635349234982'#24043327267415540301619505680654180939409982020609021689090 I1330723089662119775530665918814119157783627292746156185710372172471009521423696483086410#=8745799932237495519122195190342445230753513380685680735446499512720317448719c-c761073080602699062580760202927314552520780799141842906388443734996814582733720726639176702011830046481900024130835!5841521489912761065137415394356572113903285749184137020905;"4877734616528798482353382972601361109845148418238q5409961 Q58088 8697221612852489742555551607^% 750548961730168096138038] 361143992106380050832140 "45993093248510251682944672606661381517457125597540239983146982203682849935670557552471290274539776214049318m +5800802156653606776550878380430413431059180460680083459113EK348874080057412725867047922583191274157390809143831384564241509408491339180968402511639919 ;22555733896695374902662092326131885589158083245557194845387562878612885900 06073746501402 4027346962528217174941582331a968353+78653673760642813773995100658952887Y62636841830680190A984980946976366733829151323526157768278159588669180233307644191240341202231636857786 -769415417788264352381319050280870185750470463129333537572853 88890458311145077394293520199432197117164223!v4404297989208159430716701985746927384865383343614579463417592257389858800169801475742054299580124295810545651083104629728293758416116jD25165724980784 1897 00359365099347215829651741~(4711166079158743!1222348341887722923351856 :255985202 4767407261676714557364981210567771689348491766077170527718760119990814411305864557791052568430481144026193840232247093924980293355073184589035539713-1461{ 95916251171486487446861124760542867Q 090466784686702740!014249711149657817724279347070216688295610877794B84376 375108828264771978540006509M$ 30218625561473321177711744i/A8840145254196432030 186946490886815452856213) 3554445602495566684366029-a248309 33772019802183101032704178386654471812603971906884623708575180800351 718565949947612424811099928!58 956394762460842406593094862150769031498702067483495508363660178487710608098042692TQ410009464014373603265645184566792456669551001502298330798496079949882497061723674493612262229617311414660941234159358540791390872083227335495720807571651Q59944m3795623875551617575438091780528029464200447215396280746360211329425591600257073562812638733106005891065245708024474937543184 1482q6276453206631183823761639663 1444671298A59820145mA!7519297502463040173514891945763607893528555053173314164570504996443(6308438744847839616840A2732Q2345256851646571j 39323775517294795126132360239454857975458 58787713318138752959817422730035229650808917770506825924821549380483714547{(21397682096332 056479204820859204754998573203888763916019952 938945576768749730856955;0659526503036266159750662225084067428!259075106375635699682115109496697445805472886936310203678232501823 4597901115484720876182124/q26633042165873129708Ma758159.86398072124078688781145016558251361789030708698975889807ia3955153 631931919M"q5753366&)03827215279884935039748001589051942087971130805123393322N 6624991716915094858}354603794643379mq0957721b446574618671786101715674096766208029576657705129120990794430463289294730615951043090222143937184956063405618934251305726829146578329334052463502892917547087256484260034962961165413823007731332729830500160256724014185152041890701154288579920812198449315699905918201181973350012618772803681248190702075324063612593134385955425_A9611 163561223496661522E53996740515849986035529533292457523888101362:62466905581643896786309762736554864307121849 8530060638764456627218012381277156213749861328744117+ 799714452288566294244023018479120547849.1216 44897389206F1435l3480249249087786387516 A0287H$870981007727182718745290139728366148421428 5317965430)34324600536361472618180969976933486264077435199928686323756683595097265574815431940195576\!72 0204137498318722596773871|99718444907q1965845-3942637020839821696205532480321226749891140267852859967520310917978999057188219493913*431707980023736590985375520238911643467185582906853711897262344924833924969714656846591248918558932990903523923333364743520370770101<80032907598342170)e22838616172104176030116459187805393674474720599850235828918336929223373239994804371084196594731626548257480994825099<0069765693671596893644933488647442q8407006u*597235039532340179582557036016936990988671132109798897070R07558699306730992507040702455685077867906947661262980822516331363995211709845280926303759224267425755998928927837047444521893632034894155210445972618838003006776179313813991620580627016510206924764924689192461212531027573p /40470007143561362316992371694848132554200914530410371354532966s321054798243921#!5401323149 1585tM32175894943454890684639931375709103463327141531622328055229729795380188016285907357295541627$q4982741(:218789885 164906919185116281528548679417363(53885764229158342500673612453849160674137U35727799563410433 56950781480073623541800706191802673285]q9426760Q03598"41j"493126163-123959924050845437569B)M22266461900010350049018303415354584283376437811198855631877779253720116671853954183598443830& 628194407615941068207169703* 225057312609304689842343432131361 280807521263154773060442377475350595228717663891488171730i1111942027908e 9448799417154042103412190847Zq02540231294} 1786>*512927119097513536000921971105412096683111516328705423028'12065803262641711616595761327235156666253/ 189985341998952368848309993'419916463841427077988708874229277053891227172486322028t51252872Z 0 99451082478:B0569P54678860794628053712270424665431921452817607414824038278358297193010178883456741678113989547504483393146896307633966572267270433932167454218245570625247972199786685427989779923395790575818906225254735822052364248507834071101449804787266919901864388229323053823185597328697809222535295910173414073348847610055640182423921926950620831838145469839236646 891012102177095976704908305081:!419466437131229969p 953849301363565761861060622599423371w "12'+a464639 1! 74626087948201:87672727222062676465338099801966883680994159=>685263986514625333631245053640261056960551318X3742611844201890888531963569869627950367384243130113317533053298020,81748134Lq8158557!14320298321062971842518438553442762012823457885305183261796411!6088881503 2907056144762209150947390356916235396809201394>88931992112260073928149169481615273626429809823406320024402449589#!910q5082358%]39179964864113348032475777521970893277226234948601504665268143987705161531702669692970492831628550421289814653319702b214378$Q87528 !546r4/82459251700107141808548006369232594620190022780874098597719218 553214739265325155903541020928466592529991435379182531454529059841581!A5892 09896911 1 9=a1521331436H490127454772695739393p 6916311624928873574 4071503995003195431619 (A8520!3893576723151005556037263394867208207808653734 311579966750736071115935133195919712094896471755302453136477094209416983b737752 6845064362382421185353488798939878066061078854400055082765703055874485778891719207881423351138662929667~346876007#99537883387870348718021$1734Q7394025571769081960382401884270 09262256417837526526335832424066125331152941965 250681001#0041124537901 66156970522379210325706937-0830789479999004999395362274847660361367769797+ 86584670936679588583788795$$646489137665219958828693380183601193236857855855819R42156250883650203+1451\q5820461810670506530606065010548871677942831333139559690583208341 Q76065834713621812324628419902861420872587963932546428534307530110528571382964370999035694888528519040295604!311382638788975517885604249987483163828040468486*189590542039889872650697620201995548412650h%442820393&A81633039643992547R727593666616441109625lR05409 6751483287348089574778344221091073I160363471981856555729571447476825:8633493428584231187493229690697758315903858039353521(0079600342097529673331064018122378128j 3176055617338611267347807458506760630482294096\1;67108189303110887172816751957967534718853722930961614320400638132246584111-$583585811350185690478153689381377184728147519983505"297718597 7621974605} =3256995828892535041937958260616211842368768511418316068315867994601652057740z053601780313357263267Y9033840125730591233960188013782542192709476733719198728738524805742124892Q08766y207272325650565A12605950577772754247124164831283298207236175057467387012820957554430596839555568588397135522084452852640081252;257495969626612&52456840861392382657685833846984997 a706555 984694784957346226062942196` 8 7277652309895545019303773216664P781546772920067143463789185232321501897a343736D3194W 468809992968775824410478b2 18184596045385354383911449677531286426092521153P5886672260404252349108 q8099647579466397341906401009903311357933654245614570090112448F 0208014780566037101541223288<O22393145076071670643556827437743965789067972687438473076346451677562103098604092717090951280869738504452718D4968921210667008164+95537735919136950] Q748421079870689911480466927065094076204650277252865072890532854856143316081269300569378541786109Z 025388650345771831766868859236814884752 4688219497397297077371871m:!41 2763650481453112285097424092558 2610302106736-Q47015)5n762358604191941296976904052648323470099142601273438022089331.6367898694977994001260164227609260823493041180643829138347354 539926233879158299848645a3405922562074910530853153718291168163721939518870095778818158685046450769934394098743351443162633031724774748689S 09239480833143970530840795893581089665647758599055637695252326536144247802308268118310887089240613!64011628214614661679404090518615260360 }94721889091810733587196414214447865489952858234394705007983038853886083103571930600277119455802191194289992272235345870756624692617766317885L 50218287026685610665003531050216318206017609217493686316129372795187D 726373537171502563787335797718081848784504335824377,771041493492h,57587107159731559439426412570270965125108115548247939403597812477 50109496091933+#5919181885526780621499231727631632183338075616855911752998450132067129392404144593862398809381240452191484831646210147389182510109096773869066404158973610476436500068077105656718486281496371A21923945814491486165b567698269030891118 A8692iR13524i57432430153836847072928989828460222373014526D.8986277679680914697983782687643115989Pr5611299 5539635464420869197567370005738764978437686287681792497469438427465253005551304174227341646;c#78p777245752038654375428282567141288583454443513q5446424 Y3795546419058116862G a447695d0721419852143324107567675759 69906930460475227701670056/96923404171108988899341635058515734308155208117720718803791040R069575 3937656433631979786803679>42363214484503547763156839006542311792015346<290662415083@95290542637687668968805033317Ca018588 36232403894700471897619347344308437443?50341788079)859134245813144049847701732361694719765715353197754997165631190469126091249890367654190362375528652637573376352696934435440047306719886890196814742876779086697968852250163694985673021752313252926537589641517147955953878427849986645630287883196209983049451"1963z=68276265748581043911223261879405+54063270131989895703761105323606298674803779 51158304320849872092028092975264981256916342|2290887264692528466610466539217148 305022980c83642695973339227891535105688839381132497'3310295044305989448786847D)32805069250776627450012200352620370946602341464899839025;01486781621 c194583167718762757200505439794412459900771152051546199305098386982542846407255540927403132571632640792934183342147@542533523243<754716383587501815933!15*+0131235256334858203*14187004920570437201821947157008675785393'$622739558185797587258744102542077105475361294047460)09544495966288148699907186598056361713769222729076419'q7720104 A6949622059250242426962215495539892276976603105h-85575947163107587013320886146326y911486338814440694169488261529C32501987)a067438%219420563812558334364219492322759372212890564209430844084110864545369404969271494008286131818618881111840825786592875742638445042295685864604810389114994869354360302218109434667640000223625H63129462629609612564259963946138692330837196265934624134597792464783798079569319865081597767535055391513352522987361127 1748!868953965835W 33315028695611920122988806079992795. 23078913107603617634779489432032102773350865007193140644987871753756781185321328408216571107549528294974936214608215583205687232185574065161096274874375098092230211609982633033915469494644491004515508974507489676032409076898365i5h98315265410658136823791984090645712468948470209357761193139980246813405200394781949866202624008902150166163813538381515w 022966074627952910QQ86855Q15751 929872444827194293310048 Q45458# 9763300323215812803274679620028147624318286221q35289832734516801s719593324A4662871066611770346535283#997744672185715816126411143271794347889280848669491413909771673690027026866465405659508411107901161040085727445629384254941675946054871172359464291058509099502149587931121961359083158826206823321561530868337308381732793281969838750870834838804638847844188400318471269745<373298362402875197920807874488287284372737801782700805878241074935 8997891173974612932035108p03251409030487h 43275712600866425083331876&75642927160552528954492/ 51751492196h 1104Y1785838345386525565664065725136357506435323650893679043170259787817719031486796384082881020946149007971547099061954969640l-7667102330048672631475510537231757231741141168062063889062101923552211662137499693269321737043105987225657492461697826097025=75020913836673772894438 02811034402608471289900074Q6484413413525033678773167977093727786821 865344231732264637847697873209534000165 -130546476890985050203015044880834261845208730530973189492916M| 9336124315143065782640702838J 841602950309241897120971Q92656q43342221Q90992178604267981245728534580133b'9587717811310216734025656274400729683406619848067661589183372368039902793160642043681207990044491461902 9wq39487835&6468648816555622943156731282743908264506\b942803#1336;4051770155-!654558507386405852 A3791@!43 20381679320406123759632768567791511473134 8=!34709712435809447900462494313455028964870429353403743603262582053579011839564908n A4510C#69617545249573969028872893279252069653538639644322538832752249960598697475988232991626354` 244451637553343774929\Q58117.5555562693742691094711700216541171821975051983178713710605106258588905568852887989084750915764639074693619881507814685262133252473837651192990156109189777922008705793396463827490680698769168197492365624226087154176100430608904377976678519661891404144925270480881>K(880154205778700652159400928977760133075684796699295543338060394368895887646054 147896848'8470173087111T 1596q0399793  339119789887109156541709130764740630B1109A80954814378284745288079418884342607043872288741 010177213922819119b4055163958934742639538248296090883593277458557131798840716244656.48275783650195514221551339281978226984278638391679715091262412570092407004548848569-811073808799654748156891393538 745569721289198271770207666136024895 119133614121258783895577357 9317210844398901423948496659251731388171602663261931065366535041473070804%91693632623737677("85B599009576273195730864804246770121232702053#67053142448208168130306397378736642483672539837487%!06>78578621651273856:9014890350 70617258932575363993979055741600976154590447716922658063151110280384360173747421524760851520990161585823125715907334217365762671423904782795872815050956330928026684589376490232973641319060982740633531089792213458374}a693919* "4591288134034988106354008875968200544083643865166C5576089568967275315380819420773325979172784376256611843198910250074918290864751497 16070384554946538 2745244746681231468794344]9333890899611847425257044572517459389895651857165759614812660203107976282541655905060424791140169579003383 8692528007430256234C 2864679144763227740055294ZQ94017\q3565547B 0017543004750471914489984 15867946179241610016454716e707407395026044276953855383439755054u97852054011751p!81( 6079433689543783221172450687 98987884412854206<09735625807066983106979935260 213568588139121480735472848490808700 76303605551232386656295178857=34701222939581606792A3217=0840886516061119011498443412350124646928028805996134283511884715449771278473P628506216&"1774382436257794500644777183702219991066950216567576440449[765037999954845002710665987813603802314126836905783190460792765297277694043613023051787080546511542469395210105292707030644471259739399505146284047674313637399782}Y 411764133279064606365841Wq190302739474866960348694976541]9306040727Q90395*52292139257559c788679779252539317651564161971684435243697944473559642606333910551268260615957262170366985064732812667245219890605= 280782881429796 !6731805"q2146339 q5722102759974673816706913408155941201611596019023775352555692479832612288192937343476862"923977781733825681377717232831532908252509273304785072Q39448>2552081175608452966590 0965568541706001179857293813998F2 1003918440992865756059935002969864460974714-'!01B#283762631146774209C)40418159088000649432378558393085308283054760767995243573R-22188605754967383224319565065546085288121636 703748634421727257879503428486312944_84753475314392096108796057730~!40&637199253650."85- 4638633680428917671076021111598288755399401200 947033661793706139863655492213741511908358829566473007338793146789 4651093167615758213514248c29244530411j52700974330088499M54055186406773426035834096086055337473627609356588531097609942383473822220872924644976845605,1676557408841013456277358560523582363895320385340248422(6391239732159928421666636[ Q65456fb57718403422770665383738750616921276801576618109542009770836360436111059240911788954033802142652394892968643980892611463541457153519434285072135345301831587562828HM985235577992957276454156747756667878876484534968278050564622813598885879259940944170520447004 3797543173718775603981596264750141090665886*800382669899619655 2086397211769952194667898573324406018115756580742841829106151939176300591943144346051540477105700543390001824531177337189558576036071828605063564799790041397618089553636696031621931132502238517916720551806592635180362512145759262383693482226658955769946604919381124866090997981285718234940066155521961122072030922776462009993152442735894887105766238946938894464950939603304543408421024624010487233287500817491798755438793873814398942380117627008 h438394006375611649431295175977#96074322792489221267045808183313764165818269562105g1244i 1359Y(gQ265960078592002488291860839743732353 396432614#32423540647042089499210250404726781059083644 63800208701266642094571817BGq7522785,50855237772089058168=1659^170182882330149715542352359117748186285929048203864343108779562892925405662194826871104282816389397571175778691543Q586029652174595819888#)40811032843273986719862130620555985526603640504628215230;1447 +0883908199973874745296981077620148713400012253552224669540131153379157980269795557105085074U 507580687653764457825244326A1430F235934852961058269382103498000405248407084403 78171705128133788057056434  1193304244407982603779511985 5591520519600*b271007 30155503889536033826j 1437F8743209499141596368110627527800425486306005452251068998913578820019411786535682149118528207852130125518518493711 21595422445119002071274 11046553020d672547405436527175*007163360763216147258154076420@e0453401835723382926619153083540951202263291650544261236191970516138393573266937601569144299449437448568097756963031219161129294681G+6338647392747601226964158848900965717086160598147204467428]347998582220906198021732116142304194777549907387385679411898246609130916917722742072333676350326783405863019Q24299U04445179 =2854478211953530898910125342975524727635730226281382091807439748671453590778x01608215599113141442050c&50222308171936635093468658586563148555758624478186201a"06)!99817870557643514338206h7732926106343152522433852635#3544071528189813761575745469397271504884697936195004A9705 913828989845327426227288647108883270173&3881824465843624958059251052156062061557132991 89206434030322634514542836786& A074256745180618414956468611163540497189768215 22479474033571527436819409892050113653/738467142965518673441537416150425632567134302476551252192180357801692409541746087 !20K 6934039651017813485787440760470232540755557764728450751826890 396611331016013 77398632462778219066037404Ne24962490137433217246454097412995570529142438208076098364823465973886691349919784013108015581343979194852830436739012.2444814128095443773898320059864909159505322857914576884962578V 1599 6752055455809900455646117893701245532!19846174027366499784755082942280202622163010230977215156G 27909802190826689868834263071691408519769 53488657743425241972474308734 95113961190800302576442060373063129927788894272918 69890575925244679660189707!494287646937027507738664323919190422542902353189233772931667360869962#Q55718K11921805071030064776847B3191&92978525 755662136447400 394398382306992465260089090N\904215453927904411529580345334500256244101006359530039598864466169595626351878060688513723462707997327233131456285542615467650]q5676620 520858134771!210946520307673 1147504140168924121319826866456148538028753933112925556189410429953356400957864*!93511526124494931693056044868642086275720k$+1952640502309977456764783848897346431721598062678767183800 968840849891850861490034324034767426862459523958t006450998170 360873177543788596776729!111213859194725451400301180503437875277664402762,17576872wI176623860680477885242887430259145247073950546525135339459598789619778911041890292943818507096460626354173269/ 2651953495701860015412623V6413897796733329070169621564981845068422636"/ 8495559700260798679962610190:B2637'6876702929537116U5543100786408728939225714512481135778627664902425161990277471090335933309304948380597856628844787441{:,14990671237647895822632949046798120899848571635710878311918 $254501620929805829208334813638405421720056121989353 1133P_161252231969434712064173754912y 0085736943973059797097197266R26743 217640306868131035+22713397240368870009968629225464650063Q62039I27691283) +7254825579391298525150682996910775425764748832534141213280)1709400909822352965795799780301828242849022147074811112476134151503875698309186p 65889668236252393784527 3042041880250844236319038331838455052236799235775292910692504326144695010986108889991465855188187358252816430252093928525807796973762084563748211443398816{31703151334402309& 1929588680690 5853680161137c1544849126858412686958991741491338205784928006982551957402018181056412972508360703568510553317878408290000415525118!943175385320921497205266078312602819z85809868458752512999740409279768317663V!53f937587952X17317281315179329044q*A8158(51874075722210087219447472093493123241070650806185623725267 3332487575417571193 199119960797989373383673218985349278777473980508080015544764061053522 54094435677187945654304067358964910176[A9483F823486130254718476485189575836674##C1508512858020607820554462991723202028222914886959399729974297471155371858924238493D8595407438104882624648 330427146301194158989632879 273224561038521970111304660500083285177311)97352309266612345888731,$15626446023671996644554727608310115891511493409393447500730258559B619088139875235781n 2279866503522725367171230756861045=$!97;082762639234410714658489578024184052295369+5948944592462866199635563506526234039142111271810691M'574236041300936918892558657846684612156795542566054160( R1766056874274200329577160643448606201239821 17231978268166282499387149,13730205184366907672357053932662622760323659751718925901801E903842741855078948874388327030632832799630072006980122443651163940869222207453202446 155804354Z!*215121585056896157356414313068883443185280853975927734433B4188#5178229462537020157821573732655231857635540_O033236382319'1217l 494694036782961859208034038/:3411151882417743914? 6638407188048935825686A"03135763335550944031923672034865101056107R72647 A654300409131859513145181276437310438Ma700498452176272494065214619959232142"g97765467083517147493679861865527917158240806510637995001842959387991583501715807598837849622573985121298103263793762185942366853767=0108043139732335449090824910499143325843l-103398469814170108297065831347076803$532297199059990445120908727577622535104090239288877G30483280319132710495478599180196967835321464441189260631526618167443193550817081875477265402529410921822138575266881555841 5600221351210365696087 (3187533002942118682221893775546027227291290504292259787&7873840000616772154638441292371193521828499824350920868557279815642185*(74909857305703326676464607287574305653726027689823732590,44796495456480307715981539558277791393736017174229960273531N 7194494449179397851446315975351850491>+155732938204854212339125497Sa308714f"5132942045919380106231421774199184060180347949887-155790555480&!6645337598464199052204528033C!69tQ90910"719[56995051246529996062855443838330327638599800792922846659503551211245284087516229060262011857775313747949369640107300134885315&&873539056029089335264007132747326219603117734339436739124508149335736911128178817145 n54750667136518258284898099512139193995633241336556777098003081910272040997148687418134667006094051021462690280449159646545330e 695413088714165312544813061192407821188690 !772350226961893%A54765364856193632544177566139817039jq7216690e !209192917W98444096461)45638023950283712168644656178523556516412771282691868861B1620 , 769465957L314943381622114006936307430444173210177774383797704'952554341072234455125555899986461838767649039724611679&10003509892864120419516355110876320426761297982652942#r5114127 27327907988075=851576841264742209479721843309352972665210015662514552994745127631550917636764621329301904E954246323258550301096706922720227074863419005438302650681214142135057154175057508639 a394633(09082888o 83764393992569006 !1133121959362029829723 259386772241477911629572780752625158160313823115005186!53~w68129988108663263271980611271548858798093487912913707498230575929091862939195014721197586067270092547718025750337730799397134539532646*999659638565491759045833358579910201271329032008538788816337182083727"Q11752*60978796T q72162545214591281831798216044111311671406914827170981015457781939202311563871950805024679725792497605772625913328559726371211201#07714091486450740949267180358151575715140503976109638467555692989703835473141002238025834687673501297754132795320609711545064842121859364909979177668747744818828706323155158650328981642282882327468661065927321979071623846421534898m 21678905026099804526648392954235728734397768049 9144953839157556548545905897649519851079580107837599491967005476022525520344539887129Q01719N%16407812484784725791'454436168234^ 70689514272269750431873633210305342 21609333191218806608268341N) 0415173247216053355849993224077882290525232453152097693846104d'971496347534183756200301491570327968530186863157248840 39835689563634657438T+254211730846774529708583950761645822963032442432823773745051702856|678895217681 A7107405266759539424926280 83261074953233905362230908070814559198373553777487420290390181429373115293346444681512129450975965343062842153194457271186149000176505581770953024688752632501197052094761594167687277844720001927891372518416%7837922844390843011811266424659033n454065718354477191248%25939265662885200555991 3637182269225317814-)375044144893398160865790087616351970458288954817937566810464746141051429 02521399368705093723034112641354?Q684105910771667782123833281026218558775131272117934444820144042574508306394473836379390628300897 41380614589414 1747571762318w83506780763420491557628217583972975134478998:895325489403356156131674032764724692125%!1129654568544633498114317670257295661844775H?'642337372389819206620485118943788682248072793520225017h3437572741639107919729529508129T205347717304|915673991738418311710362524395716158 8147000026w 4526435478&29073320546833887207873544476264792529769017091200787367350877133763496344252419949951388 4877537433849458259765560996555954318K1017$84685497370!20Q377013853757681416632e 2|Q398216453780004925072627651507890850712659s7087266927643083772296859851691223050374627443108529343052730788652839773352460174635277032059381791253969156210636376258829375713,754406468964783100061344673 Qb608435;98778283526653115106504162329532904777217408355934972375855213804830509000b 7608830154061282430874064559<3413755220166305812Oq34531202682q2159043<0312431227471385842031060S!31P 56172767994160020393975099897629335 "5756248089966918298642226775023601932579747267425Qa119734qk23574572222712125268523842958742735015636600931880454933389897415714905441825597380808715652814301026704602843168192303925 ;795765862414392701549740879273131051636119137577008929564823323648298263025a758757!37YA0024908046243018565241617566556001608591215345562676021926899828Q87258! 440826545834844094784631787E!794653580169960779405568701192328608041130904629@ 1827125934668712766694873q4598527!&95691654640294589350649643358098247659651651420909867Q #8083092032304873427034682887516040715466538346196113759451569674364253192739003603860823 62698827497618$54767628899507521148048525279508450339585708381304769378813211236742813194879502280663201700224603319896719706491637411758548518784840120548446725888514015627250198217190669608126277854859648183}o410721714214986361918774754509650308957099470934337856981674465828267911940611956037845397855839240761276344105766751024307559= 2786167815949657062t506521085301597s 334373607943286M9053348366955548680391;201564988342208933999716414797469386969054800891930671380571715058573071489920714086760287605645978242377024246980532805870419267684671162668794634869504i4202193739452592& 613552940624781361206202636q9999498405143868'956342264328707663299304891723400725471764188685351372q8779217p5a5414803392997357936152412755829569276823479898944627433045456679006203242962825884430854383072014956721064605332+2031432421126074244858450945804940818209276391400085404220C2602185643489941454399504109805918179488826280520664410863190016885681551692294862Q73889077092905904802j101893354281842999598816966099316443815288772140852680887574882932587 9056707558170179491619061140019044882726200936685604475596557!67_1773?30738030547697365438593821872205839023444435088674998665060F87434600533182743629617786251393144363251205107094690813586440519229512932450078833398788429339342435126343365204385812912834345297308652909783300671261798130316794385535726296998740359570458452230856390098913179475948752126397078375944861139451960286751210561638976008880SA6115!02078033415914517970730368351969777660763737853330120241201120469886092093390853657732223924124490515327809509558664594776344822699860748132973026309750/1035177231.09534965369309001863776409409434e13251321862080214809922685502948454661814715557444709669530177690434272031892770604717784527939160472281534379803539x4243709566832241014 9339603275404800955223181666932757077142046723838624617803976 7131209580789363841447929806552212926209362731349664018661951081158347117331202580586679579078063818813069 2741254312595899361196 1101 3w952314032311381965623]a96183725484533370206256346422395276694356837676136871196292181875457608161705303159072882870071231366630872275493957737305460 437810987649y"112421427736680827513909593134041558!78J467761186yb660165+ 0894149857549762843878561.3178313634025135r1151902096499133 3131115022700681930135929595I1019b536250E7998096348871803911161281359596eA1325 78961731597620024196215528962979048198221994622J 1374624447290934564700285376949588595Tt2892 54412515"81368367437491573uKQ6568231342347351239298259166+C3425995868970697267332582735903121288746660451461487850346142827765991608090398652~B7263949444182019353339234577437550621787113106003324053991693682603746176a758877&1229366353270267126182517291460820254189288593524449107056211553827793565296914576502048643282865B7072$ 0737269214118689546732276W356901901537236690368653891612916888878764075254934942497334271811788927599315967193547589880979245252"'6590363200708544407845447973482918020820449266706344205325050527522833778887040804033531923407685632o886404131X 183160381352808281190408325644018874679299262203769r1F2624490909242641985820861751177113= 160914038157500315609521632819712233502j22600567941281z 219641842705784328959802889598282081966662490358577899403331522748177769528436816300885317696947836905806710648280835980466988410981351586549069333195223943632879239905348109878302745001720654336990661 5436468772363184446476806980045510741A3928m4!75493916609573161L=3316696830992946634914279878084225722069714887558063748030886299511847318712D919100702275869394562895158029653721504096031077612898312635899648934102470360366450586872875890514068412381242473863854279082827338279733268855049358743031602747494,57234974261122151741715313361862241091386950068883589896234 a1731649O0774608866555987333821138299287769114954921841920877716060684728746736818861675072210172611038 !780b94812948943063086169!87K51588410828235127415353851336589533B !9494495061868514779105804696039069372662670386510011378108586161888869479576074135855345851517680519733344334952Q 0739623771ba0242887200537320998253008977618973129817881944671731160647231476248457551928732782825127182446807824215216469567G40982389262849437602488522790036 86696482215628093617804086372726842'21929946819214908701707533361094791381804063287387593848269535583077395761447997270003472880182785281389503217986345216111066608839314053226944905455527867894417579202440021450780192099804461382547805858048442416404775031536054906591430078158372430123137511562284015838644270890718284816757527123846782459534334449622010096071051370608461801187543120725491334994247617115633321408934609156561550600317384218701570226103101916603887064661438897736318780940711G3817468957640158104701696524755774089164456867771715850058326994340(#02156767724068128366565264122982439465133197359199C!32a502669;0> 32032437164205833606524091600506449530601612678226489424373971667174/10489750318857321655512180284691252908610148U15277625623750456375 %7734336846015607727035509629049392487088406281067943v870474700836884 !222403599841645951122483363264511401739524808619463584! 355688562231711552094722306526067973510005655493812245754837285457117973~756167641692895805752233855861138 711073622658162188424431788c798109026653793425A1699 56536432249301334867988154886 0505234699723*A38429042367714327} 1642240387776433019260017 $8376325361210253369358126240868666997382759773656825721583247423693463c 3633087301398142114303060q6661648.9840913359262934023043249749268878316436026810113095707161419128306865773235326396536773903176613613159655535849993986005651559219367599777179!S74468814837110320650369319289452140265091546518430993655349333718342529843367991593941746622390038.7381333061774762957494386871697845376721949350659087571191772 7710718993796089477451265475e71194870738736785890200617373321r"3302216320 2065671192096950585761173232621770894542621460985841023781321<"27602222A49541048100307327510779994899197796388353073444345753297591426376840544226478421. 227696469671564739990437,32390656072`q1643860q3884716$09008701019130726071044114143241976796828BI55247794764818029597360494397004795960402927462992035720997619501403483153809477146010567 69988208221205872815107217128764248803546723169165418522567292344291871281) 9696541354858957713320833991,759172261152733790103413620856145779923$385507301998184590$3559892605532996737704[4549353296833H!q2301815x57578752405D490858212%9747909326100762578770428656006996176212176845478996440705066241710213327J+6237430229155358200780141165348065647488230615003392068983625503654982280B6286#Bq017049219857199789488368971830438051821744191476604O 4372516834354112170386313794,+529588579806015293875275379903093887168y5760715221900279379292786303637268765822681o" 3384808166021603722154710 377537792699069587o9 $905203160128586182549441335382078488346531163265040$283908701210151942319616522684220037112304643006734Wn+19Q01240!35b'92387110170622186588357378121093517977560449499978725112544085452,s0914874307259869602040275941178942581281882159952359658979181144077653354321757595255536158128001163846720319346507296807990793963(Q17743 40202129757312516525376801\ $015573381537720019524445436200718484756634154074423"06232434875488474345396659813387174660930205350702719529839432714253} -766600025784423031073429551533945060486222764966687624079324"9926392537310768921353525723210808898193391686682o+2811704726245019484097009757609209837240900747179733407881"a195842G 4761013825264395513525931188 ;62641883003385396524359974169313228947198783084276004013680747039040972384834896186539790594118599310356168436869219C2055780395773881360679549900085123259W&$972448666676683464140218991594456530942344065066785>177667794V 041958822043295380326310537421222796784461001397267538921951191178365876625b6900532490045974109470687729123282143046353372!95#!743258331191444590178096077828835837301118575436H 98272453192531058811502630@1493943024453931A9923?661130542625399583389794297160207033876781503301028012009599725222228080142357603519255 a929986B7891045559063015v97618759203589373419758931125983_831026719330418921510968915622506965911982832345550305908173073519550372166587028805399213857603703537710517801295668419841403628727F214428751109 7210734741349755141907370433182766261772759968E 02722524713368335345281(7959132886138178577289369009657497103024362590772414s94300871755692625758065709912016659622436080242870024547362036394841255954881727272473653467783647201918303998717627037515724649926679323226936 641614618795Q66995T0682903165896994307cDm5082349907906241002025061340573443006957454746821756904416515406365846804636926212742110753990421887161276177870142588648257)1889. T95233@91558574454947736129552595222657863646211837759847370034797140820699414558071901907-2331008317595106590 29479540860364075735875020# 87045796700070552625058114206639074592. 0940682365908910092202966805233252661989113118420162916408472356436680818216865721968D1584027855007828040q7101836951782335!050485265373807353107418591770561039739506264035_ 75156101107h937063472380499066692216197119425912044508463>9382399465"509479990167426149429006646R67175422177!45 563742154782905911012619157555870238957001405116989944917908301795475876760168094 5837613578591356924455647764!8639195135769610486492!8354863830544779143300976804868783481 733758436892724310447406827862558516509208826381323362314u36714764520450:76149503899495048095604609896A1233s*)85999029452640028499428087862403981181488476730121675416x29995553668193 7425702063738352020086863696334697317412191536332467453256308713473027921701468732517345583799643513588C35087755635624881049385299900767513 77924124292774885658885665132~1514+q0575352+509027504a 51825209633189906852761482136621523688905787862288816028377482$ 6016029894009119713850179 633744139}3700701476370665570350:1211415018451821413619515960106457593518530433287,30575095674254426847  61870917856078393614451138333564910325640573389678123972237519"0617013859539474367843392670986712452211189690840L#411496601243483098}C1738030588417166613073040067588380432111555379440605497721705942821514886165672771 33877277456&m1101348851843741186956554497457368452180669829110450580042998879538990278043835962824094218605562877884288021275538848037286m(4416142574"27B q5204654A8996]119364711727722204361026140797508096869751766002371877483480161203102346805671126447661237476278521902412025534716226660893675219 18135111465038548950(!658:23612 0o 59498074396932331297127377157347099713952291182!51137336629'271430250695013509$9529937858646826486008270881319370368259886789332123832705329762,827900978264605455985551318366888446282798491667839409|3 1798258249663458774a243840140849209EG46424744881761840700235695801774101776969250778148933866725578985645898510568919609243 5692806969833522402A570424526935419383700484318335719651662672q2419340w 99018319309196582g265624766768365964701959575473934551433741370876151732367720422738)79170698204549953095918872434939524094441678998846319845* !39;a72079798143994182567894577t@5524268260899317371538896262940211210273765686240213037101730078Ya154045 5079594477761435'037424366Q 24713841049212431413890357#1 "63k#49831481905a%09371039640268832572297954564042701757722904s247960736187878899133183058430693948259613187138164234672187308451Z2190}04942843769325024981656673816260615941768252509993741672883951744066932549653403101452225316189009235376486378482881344209870048096227171226407489571939002918573307460104360729190945767994614929290427981426487729952858434647775386904898413392454039414468026362548614317031251164282991464453340826969837265236176874560581968p!69)/5230720826828878907301900182534258053434 a287139993142410852647390948284596418013847583113613057610846236683723764926158245C55213487924414504175684806412v#2013017777699023118648 0568229501635493199230591Bq962170214757311409422018019936803502649563695586642590676268568737211033=:Q938393 )55651931778830002416135395624377778408017488193730950206 890899328!.7430367736595524891300156633294077907139615464534088791510300 q1934486P82759079468078798 1019+232039513125201410996053126069655540424867054g8692302174698900954785072567297879476988883109348746442640071818316033165551153427615562240547447337804924621495213325d 98847336269182649174j 7824789278468918828054669982303689nIq3413747/580571634941356 939606819206177333179173820864336353598;4968907810,!67E3658366707158692452118238040771375012905789057714282768978544o871844277261205092664861020515356428406323684818072879407171279668200607275595559040402331787494473464547606281895415121391629(29765106694790168660100551bQ6873311614930937570968554559381513789569039251014953265628147011998326992200066392875374713135236421589265126204072887716578358405219646054105435444a66562204299901025672791427529311793937751wq6052881KQ345109398935808712438693859343891757133763007203197-q0446468]25806909237297523h291691042636926209012041210240776a316014DLC2760953708655|739953493465463_B040137252004957"4656251154109252437991326262713609099402902262@ 3230506518393405745011209934146491843332364656937172591448932415900624202061288573292613359680872650004562828455757459659212053034131011182750130696150983551563200431078460190656549380654252I u619918199596027523277022498557388248998827074659363557685825605180689642853768507720122203479209939361792682065901421656159253067379[&949070853263568196831861772268249911472690 03580764629811624401331673868922903259334986179702199498192573?73075834417098559222170171825712o449150820527843090461946083521740200583867284970941102326695392144546106621500641067474020700918991195137646690448126725369153]!90U)8 3756007783515 6774794210038400230895185099454877903934612222086506016050035177626483161115332558770507354127924990985937347378708119425305512143697974991495186053592040383023ra527276@q6932196h0064260886183676103346002255477477813641012691906569686495012688O690723396127i23041141:10060264044030035996988919945827397624114613744804059697062576764 6065541618574690527229238228275186799156983&1767Sa030227@ a124687 28819096791640198814027579921 q6787992?96356949285151363364721954061117176$7255572852294005436178517650230754469Q07873\ 0352182532929726044553210797iq1449898 15112372506042387537348412570860640$0584521227545b!H302450456517667691320004281675805492481178051460324457928297 1053183856368212062155312886685 5126138922613670640939533526986959692350353 454386527867)1275?638448355323991474410440500923303612 081355490531539021002296583705381261965683"605795669662 216956208700137277685369604833325132723250714863r 512453950037357233 094656483[ ,80153487870563349109236605755405086411152144148143463043727U!50A6619{85832333485784092521532 589326556006721< 4642550659967717703884!18163287961446081721718369088801267782?9106422524634807454300476492885553409062185153654355474125476152769772667 77705831580_8568801170502836527554321480348800444297999879045641619572127845089284898O4974270905791290692178072987694779751124473059914060506299468942809310342164166299356148281309745292716363081840412646963792A9418!1635908457614607855856247381493142707826621518+ 03870206876980461747400808_#36653823545551094494984> 9475994467267*!52,2706772194O1977196378015702169933675083760 54643671776723387588643405644871e4321041282595`88412890420682047007615596916843z934836679354254921032811336318472259230555435$2069416756299920133731754891220372303490726810685345582357631TC6764063101312533521214199461186935083317658785204711236433122676512996417132521751a618676733879036546890857/7 358488844411176123410117995jo%557856221021104009776994453121795022479578069506532965940383987369907%7679040826794187235963492793904576973q-+340535979221928587057495748169669406233427261973351813662659825755524965098.+128360592834185584802695841377 708837899429105498003311Z6034019391666$!669605849157148573356828614950001909759112521880,19762163559375743718011480559442298730418196808085647265713283162920044988031 0553059707666636274932832 88093235929008178741198573831719261672883491840242972129043496552694272640255964146352591434840067586769035038232057293413298159353304444649682944136732344215838076169483121933311981906109614295220153617029857510559432646146850545268497576480780800922133581137819774927176854507553832876887447459159373 70601091244609829424]752022446259447763874949199784044682 6S345498432665368628444893657041118177 44161653122360021491875467398407517176307516849856359201486892943105940202457969622924566646757629434953 A8217 A95756637076456957025973880043841583361371065518599876007 187211714889295221737721115434498266547987258005667472405112200738345927157572771521858994694811794064446639943237004429114074721818022482583773601734668530074498556471542003612359339731291445859152288740871950870863221883728826282288463184371M03305777147651564143822306791847386039147683108141358275755853643597721650028277803713422869e2)73497950960311088991961433866640684506974207877002805093+38723262c5603865321643234881555755701846908907464787912243637555666867806761054495501726079114293083128576125448194444947320937953690082063678225064809531810406|432760438@ 1592198780658654121842 27372095510324225 !18~W304260908679427342895573555925272380551144043800123904168771644518022649168164192740110645162243110170 911217331894234005479596846\ 2980173625704067332821299621581404102Z:-342464622074557564396045298531307140908460849965376780379320 40865814662175319337665970114330608625009829566 }8846056762972931464911493704625198403953444913514119Y 1330 1766365255514917498230798707Q*P60859626112660504289296966535652516688885572112276802772743708917389639772257564890533401038855Z*c679991516589025016486961427207005916056166159702451989051832969278935550303934681219761582183980483960562523091462q7386296039848924388507775928792>855480721049781765.18747676689724884113956034948037[3631692100735083407 !617482496448597428134936A7242*^0426687083192504 4 53190768557703274217850100!98$073964001396036015838105659284136845o1027364202741637v2145241013402128K41978795111651152982781462037913985500639996032659124852530849369031313010079997719136223010999291428712493886W203802041134018888721969347790449752745428807280350930582875442075513481666092787935356652125562013998 2847872621443236285367650{ 5046837763528258765213915,79 296755493843755826002531n3567313792624758780494459441834291727569 262618463654527434976624 451305481449836311789784489732076)I8415861887969295581973325069995140260151167552975057543781024223895792578656212843273120167305740692868693639301867659582 499145950260917051940897535746401683081179884645, 1895605647942635807056256!892696630264795359510#!65Y!3318086692153578860781275991053717140220450618604 8663063505914839164676567H =1451688617079098469593223672494673758309960704258922048155079913275208858378 852142693347869218s"6,92104362!52nP79840139.q587911550460579710838983371864?441751134$725470107947939969535619726763255229914654Q96632 G951450360980344092212206712567698723427940708857070474293173329188523896721971353924497"8L90962814486917869468177591717150 148002075943201206196963779ya270890Jk0855622254526026104607361313688690092817210681986185537809820184711541636303262656992834241550236009780464171085255376127250455061356841437758544296779770146602943h !2263801191758Z81208182556064854103598921064427244896162941341E (951306836386092941000831366733721530083526962357371753333382048421903081864491840937239440334052449098016406468101030176748847501766# 29460987692016912021816882910408707095609514704b1147339005225334083481287(91969997q1390859360543 70756044601342424536824972581311024732798562072126572499003c388687230489gq5320446.A3985G 58416464324271611419817802% 55635449072192265838636626635944314815614571 28016159677048442714194435183U 4075526779264112617652507?523545718795667317091331935876162825592078308018520689015150471334038610031005<1)1038475454293338912051794396997019.9511952656491959418997541839323464742429070271887522353439367*632003072327470374071239825620246626519740901997624520561625760008708173083!43" 45144935458678578551915379555494331744A6000_&41561273229777022121795186837635908225512881647002199 640439591530184640047143211863606225270a122283 85389110984902274155976996543887719748537643115822983853312307C,29619045590079380642766958190148426279912217929479873489018.Q 38273285520984529806259250352128451925927986593=~4679625237397256558415785374456755899803240549218696288849033256085145534439166022625777551291620077279685262938793753045418108072928589198971538179731927614747850 145041327487324297058340W 12333746274617274626582415)0cW506255302314738759251724787322881491455915605036334575424233779160374952502493022351481961381162563911032684495807250827343176594405I 6976526934457986347970974312U/71933113863873159636361218623497261409556079920628316999420072 15253533939C8500199098865538l49578165008996164907967814290114838764568(21407562376761845377514403147541120677264605568592577993220703373333989163695043z 694828436629741452762J 47623825546170883189810868806841055  469350958818025360529740 8676511195079373282083q8960071552061443378411, 0136432446328193346389050936'450690086448344018042836339051357815727397333453728426:7406577577107983051755572103679f01889958494130195999573017901208681356585539661941371794487632079503716073032205474235722668968018821234243p 98416897227 94032493227314793669484897605903795809469604175427961378 81223947R78329]9028170110043784603875654415173943396004891531881757665050095169740241564477129365661425394936888423051740012DA42890 Q69956a7089146513736 -610441548166215680421983847673087178759027920917590069527345(031115180001814341209626016586298210766635233617740078377834237091526440630540718078433580610729611055500204151316963730468492133568372654003075098290893646120478911147530370498939528!824082817386441322710002968311940203323456420826 6233830294639378998 6 9919340866235090967961134004862G266637107787251118603540375544874186935!65*7235922939677646325156202348757011379573772343137021203100496515211197601317642034373485128 9133349151250 .8028501778557107253731491392157091051309650598859999315608636$A0355!66)74821466509974143376118277772335191074121757284&808725913150746060d2a90377739144613 021318347447301113032670296917 77016321066162278300272692833[R01179P 78087482533607144032Q285770859960904093631263562132816207145340610422q8&08587264252112262480142647519426184325853386753874054Q10727754281159466017136122590440158991&01796035!00Y53475269877760952783998436808690898919783969353217998013913544255271791022539701081063214304851137829149 8196914305001899806816444121232733283071928243621965546926778511931527 *+ 9055042481133614349846048490512583456832664415213972376040328225351669396>499473204860216277597917712347~q5024030 759937715095021751693555827C391189233407022383201802 47783787783910152341320984R5961349799827930414446316g!14a745697h58123929191374098292580556195520747$295982898980529233366415419256367380689494201471241 5072204061794355252555225097_5683145428351677505422E2747830440564385815919526667582829< 22612762871104013480178728+7896840524079243605827424674430767216452703134513541676496 680101029513386269864974821o 290403376915685799296372.7201628707283542369036414927023r,38547372480329855045112089192879829874467864129159417531675!343531062674525450711418148323988060729714023472!13* 83989823552936566787899238371257897624875599044t 95388377317348S275707141095979004791930104674075041143538178246463079598955563899188477378134134707024674736211201226*G85174562517325193413520381158633501239130544419100736284475675141610504109735058527620 190978901984315485280533985777844313933883944446566924455088594631408175$O3139068159659251054685801313383815217641821043342978882611963044311138879625874609022613090084+3039577124323061690626291940392143] 70894777663702q4993224588220631257436910252806241642476868495455324938017 ;16156368478598237159023854212658406153672286071317026747401311452610637653,{315921943469817605358380310612887852051546933639241088467632009567089718367490578163085158138161966882222047570437590614338040725853862083v+99842677452319(8268369827016023741493836349662935157685406139734274647A8561. 60551104880971554859118617189668"="423985135560018720335079060946421271143993196046505088222535977348151q3857125c2404rQ10865MK805862014336607882521971780902581737087091646045272797715350991034073642502038638671822052*A9445505104866071739022932745542678566977686593168341222746630150621553205026553414609952493875654913483095890653617569381763p37897422970070354520666317092960759198962732397443861 309868773391388251868431650102796491149773889134503411488659A 101084328080J 8089417298008983297536#Q96990(998639195816014689952208806622854084148642819755466292788146211381880180840572a586890!191K[8454537956719272397972364651667592011057995663962598535512763558768140213409829016296873429850792471846056 83313812591619624761569028759010727331032+(238646083333786382579263023915900035576090324772813388878096966M596150317542267511259933155296742133363002229649064809345820081810618.76645804002789758573019011371754f0 35313131903609248909724642792845 00518029570708291905255678138996251386623193800536224294610248954072404857123256_8931722116432947\055486805494344 9068071608802822#695013364381426dR70472% 0101373011552368614169083A747676318575703810944 64564468524183028148107998 85121272019350440418046047216269394457883770901059746932197205581140787759897720720096893822493032368305158626572811146379969831375179376232151112523497343052406221ZG23435373290565516340666950616589287821870775679417608071297378133518711793165003315552]877306534441794534153952024244497034101208740721881093882681675120422994049481794494727328947701115741394412218284249222406587526891722727 116754046973008037039J@7,882555614674384392582954666135867867189766 11267200 55361302750355616781776544228744i29881614802705243806817653573275578602505847020883793281600876908130049249147"D1703538221U390149995387105997351143478292339499180Z=13755963685323 7035911442432685615121094042595826393016 112892832310576588511 04 695706479981403150563304511462316376380 0B5691,Q914253d163598439317433 578123369380430128926263753826677950341693343236075002481757418087503T954896209740485442635637164995949920980884qG03636662975260032438563529458447289445471662092974954966168774141208821304770228161164Vq0072363m 1497297392 A7373Y"20!2221242016560150284971306332795814302516013o556701478093579088965713492615816134v0696508955631012121849180584792272069187169631633004485802010286065785859126997463766174146393415956953955420331462802651895116793807457331575!864 r2687867 a67778046733913324f880354073232388281A 0516413311895370364884226902704780 906034920 75505400345716018407257451455311753542107265578356154947480427323Q0061834156604=[7977945507535930479568720931672453654720838168585560604380197703076424608348987610134570939487700294617579"52549255757109038525171488525265671045349Y.9803390641529876343695420256080277614421914318921393908834543@Q96851= 103844472348948869520981943(65065553335814045544837B25266_?q9920584 780125341033896'864243003414679138061902805960785488801078970551694621n 7309010446746249797999262712095168474825833414022664772x 3624375937416105367340419547KU5425335036301861400951534766961476255651871A92465693580289601% 91787303553159378363082248H777054157757656175935851201669294316635821596676188 A1041 71484697938 !21S`t1223 7797741312689772667}2592201740 769562834739322010881593562W 2] 7189338495885060385315817976c79840878360975960149733420572704603521+564760328556927627349518220323614411258418242624771201203532A889582328278713146080535335744942+4q7967890B 1698895535185044783256163:7695169908624714.7488092050095219436323787197648703392238115403634754886268459?755193765410115014067001226927474393881385973024541480/ 35908036274585288493563251 4383242493252666087588908318g9100237377106576985056433928854337658342596750653715005333514489908293887737352051459333049626531415141386124437935885Q 468804548697535817021290849017 436632332281941582734567135644317153# 805819585246484008"09'781718177302317003989733050495387356116261023999433259(689343260558471027876490107092344388463401173555686590349193701826208504299258697498133894045934471937493877624232409852832762)494238512970945324558625210360082928664972417491914198895 55807677097959479530G191590117739431042090Z'424448868513086844493705909026006120649425744710353547jQ92427/ 41061854621988183D%34588187VM;74911587376466795134648758677154383801852134828191581246Y 9]0Q95167 '285220582479942103451271587716334522299541883968044883K-3361286837225935390079694133909116875880398882886921\Q9325736158820716351627133281051818760210485218067552664867390890090719513 6735124312215691637902277328A084203784152188798795251307326634027851905941733892403956770232935448258562828761061069822972142096199350933131217118789107876) -445488760894101747986471378824621539559333332755620094395804"a919782039595992 37937786649409640487778417482684026282932406260081908081804455635193685606304508914228964521998779e 474777291327972660276584016S1364905087411)861969862044126965282981087045 B1559 BA0212697678573892018624359932677768945406050821883 0983362716712449002676117849826437703300208184497172352043319947082420987715155101705564302954282M; 7000920251561584417420593365r3490269b"7093872260026458630561325605792560927332 A9346568344392137368840565043430739657406R 793701414246154930707413442100295)566358897 67630517718781943706761498a!41 1161608654086353915130392013168057690341725964550806417446562351523929050409479953 B48625618338545661766526036588025216662235761 9417013726649660732520107719479312sq7633024Ka'17456596,*'483546691945235803153019691604809946068149040378198297 93008713576079862142542209641900436790547904993>$q2421581q5418371$%865843055384271762803527912882$!085656599944741788 1565148434229858704245592xA3295 Q180352f726283791830216591836181554217157448465778420134329982594566884558266171979012180849480332448787258183774805522268151453684178702802744524429054745182346\85512444213377835214238659799259882032870851093383868299065719946149062902574276860388505110326385445404191 166570405713236296810691468148478696591668618427567984600418687622980555629X95322792305161672 68675849523635298935788507746081,145464298479(1167635774949462295256949766035947396243099534331040499!77270027144784940690370732491064'A6960\1560874721108274i315194060757983563629143326397812218946287447798119807225646714664054850131009656786314880090303749338875364183165134982gB161148543976 70261795493572043054021829748712511074040116114058999110930624923128131q5492625 7218186289327861388337180285353!*741400869510926167541476792668032109237467087213606278332B R64136E0213392780361124106004740971111048140003623342714 a333464z66354699731494756643423659493496845152415075%a050866UQ42479U]628760412906449138285194564026431532258586240431418386695906332450630003922131926476259626915109044576953014-3618037857503036686212462278639752746667870121003392984873375014475a21006229343774955032037012738468163061026570227546296S 808905871276763610662257223K 7392064430935243272281008599730951325286 a1054979)47918450046180467624089289256809129305929606423570210615"205023248966593983396737695202399L98474571836646529^8064480196520162838795189499336759241485626136"5307287254532463291529110128763770605570609531377& 867923292134955245133089867w 512907384130216757323863757sQ03635W)00275449032 !79 944254110872569318801V 3559583467643286887696661009739574996783659339769599489506104903836}q5046952!855807306991229A8987*&72117147527644711604401952718169508289733537148530928&?3844208932997711 0840846608339934045689026787516008775461267988015465856522061210'S0796707365539702576199431376639960110640695933082Z7642604357342~ "4378484849525010826648839515970049059838081210522919433239511360514464598342107990580820964523127704023160072138543723)26099787038565709199850759563461324846018840985019428768U687345565005191294406382925381!22050938345f077301702994036261543400132276391!88>39204123004455516889809080779174639334912641164240093880746356123366958427645#81588196105857183576746200965052606592926354*9045768305932458570737016607173d 4850288426039636607460311" X2258310565808708703055675958613417007454029656876347741764310517510367328692455585820823720386017817394+304379948688223200443780431031709210344998000073016094814586374488778522273076538394434538287607635420984450085763025357278103278346176697054428715531564970766571959850417481990872014908756860 9E193433527729472855379257876848323011018593658007172911869676176550537750302930338307912811412025506150896411007623824565518258105814034532012475472326 475070785776597325428444D!04%7001453874894822655644222369636554419422544133821222/ 9753549462482768053333698328538692363443337 111430498248398991803165b828935W!05I833430137953372954016257623228081138499491876144141322933767106563492528814528239506209087668465011666x8275366040544694165390521083145858470 3522199282727605748212660 3855303455497445514703449363429459p10241907859236802245936784166270518555 9040735573046206396924533077957822459497L18804300018388143L30394505073427870131244668600927785818-"9115117293748736278878749074652855654347488868310510230208751041878152562273525155024448577875C7001!037655209119338 62866284619844026 Q21836>36747510880978150709897 8624588152266096355140187449]2691779904712072649490573726428600521140358123107600669951853612486274675637589622529911649606687650826173412789A0567878617925.06210453662506404637288156982323175005962610809219552111508596Q565491862612972339914628358476048627627027309739202001432248707582337354915246085608210328882974183906478869923273691360048837436615223517058437705545210815513361262142911830175888257359489250710887926212864139244337973338678061317952373152667738208580247010092438032669517429 6708843263464427491275589863582162166042741315I!605623363149316464691394974717419583542186071057338458433689939645913740605935224359475162623913078228217639832373(0424656047752794310479618972429953302979249748 910449470045908649918727273454135081019S864673609;%1930511968" 1855782450218231065889437986205067737996619695547244058592241T q0682045 7004347245175667705084951077+A7516 2302943031203- 095342357439724965921101"1178O74531887480318743082357369919515634095716P9&29749105489851519658664740148225106335367949737142510229341882585117371994499115097583746130105505064197721531929354875371191630262030328588658528U3509225875775597425A17213423236480843L754204637y 525249443296570438613878659"7388028684018940876728167141370336617326501205786%7807030887142615190750014925761129276751930967284539 3030905422439663206743235827978893323Tq7791992v63333977773765590187 0682867834796562414610289950q9969297232753029972872#7934442988646412725348160603779707298299173029296380199631241 393504933254123554461182591141116454532988104784406778013807 54000993q4812666143308582068113958383191695455582594268957698414288937434670841079463189325391069639557807060212459748982935646135607889819979478564362042094 2387613198865331299686226894860w1566$!87-012744866314050547353517468730098063227804689122468214608067(708402402266155485024008952891657117617439020337584877828962324705919187469 !05 !61;333751027195653994697162517248312230633919328707983800748485726516123434938566644733585564302352808839243484 08861649432893991U!21 0784777704804572849145630335 700295889062659154985094079767129795010098229476228e15914415200328773485130979D1292672271i 8980539641S36416w768408398468437540706*1390 128107663 91674778069738473170475253442156390387201238(368803701794930895490077633155483742568166533616066'030188287123767481898A6836Y 8309259283375902278942588052860388591688497306: [0205112217663591382515242786700944069423551202015683777788518246700256517085092496237477268136942843500629, 429987905w;621737545918267997321773502936892806521002539626880749809264345801165571584435039765053234782876 q8840863_27406767838219635222265392909398073673913640828987220177767471681181958561337215831190546829360832369761134502,830202934845:06826302712632958662921476531422$793093387951357b6377183684031933129562030557551734006797 A1416|2E2380564685 3716715264255637185388957141'38742261059666739699717316816941543509528319355641770522152179 355639707143312893657%q4648326 '64243380169558626985610224606460693307938478588143674070005997697036490192733288261353293631124036506986521606389872502672380874033967443978302582968996741864336134xa524552)26522842419243083388103580053787%5421721136865502753413622116931yG 31869281025747ZO 50050217159133177516099578655519818861932112821%4422872404>15348959583558152 18460582056359269930347885113206862662758877144966561084307256965005638759946659677284717-#73612108o1547273142661748933V463266235422C#00146012701206934639520564445543291662986660783089c8790090815295063626782075614388815781351134695366303878412092346942868730839320432333872775496805210302821544324725 4521534372725012858974769183144041258681815400772287869801853 a7006524917091542952275670922221747411206I/5662298980603|7206874365494824610869736722554012889242471854323605167285075755205713115669795458488739*28135887985840783135060548290551Q52948911219051 15621948475940785 4790109419407067176443903"12o385049993638838205501683402777496070276844[ 191222063688863635695293l195528261526991271637277388418993287130568822739828876319864570983630891778648708,5485680047672552Sq4285102 074031529921978145577568431749816701642664788409026268281258fU20945499151045185177165463118049045679857132575281179136562781581112888165622858760308759749638494356612168959261485030785 527450771101k@41804584059432926079854435620093708091821523790678121992280496 A2387]62673030679594396095495718957721791559730058869364684557667609245090608820221223571925453671519183487258742391941089044411595993276004450655620646116465566548759424736925233695599303035509581762617623184956190649483967300203776C6934399982943020914707361894793269276244518656023955905370512897816345542332011497 6278424327483788032701418676952621180/EA64058530>q486760520801049153788541390942453169171998762894127722112946456829486028149318156024967788794981377721622935943781100444806079769510784153446429150W200020427694706980417758322090970202 34725158290463091035903 "77Q 720877244740G7166306005 38794317 7348468873818665675127929! 1636341131462753049901913 26-29970695770150789337728658035712790913767420805655493624646 BGlz4-2.5.2/testdata/random.data000066400000000000000000000400001364760661600161660ustar00rootroot00000000000000OoϹ(J +2%ļhzjƥ*WFsTO0h.m !1ƾ='gbWW CqT]YewEp=2 4cPR="6-gZJa0ԇLҌlgyF3=˄wC2h(R$~p+IP#GPħԽ *Z嗞Zm}*LGF%ij3C{-Y]vZIiFlR&񖗢}?rZk)t-YllQ<`80$".V7,^~PCdaewĐ]_&'.x8/qi3,*;*u#A 9 <'Dḝ^Q#Esk=a,HZT)?%.> J7|ki|GiĽQ/w\dE-.q3tN)TmYXn*Ka% _Ca eLY[r֔A MH /yK7sDgͣq$(z썴7)~nⒸ#e7}ɬGuQۡ6#cv%icUa&$q?kzcӱڞsG9k,v۸rNGhBfA'nU`㔜}XGߨܑ (&'Z6؀~^1/AQ`N4YU&/mEے>V)Ӷ*Qa48՝e$=& ?GDOF5KF l59VǾ[ZYbH*KFn0S1OL޸Z} [x$3fʨWGˮ*am/3Ԛupkr}npEhZsTW5y!@l"{o^bOs4HBO=z>Tj.n,<b*x'\I#.dhr lB#-)AjP^>9u֌wI 4I&Ah}vwP5 1=a[{#( h1HcF3biC:ZQ| Q^IڇP.&ie7T$6- (WF?s%cͯH@_,w['jqVUNm?|6GuO/m JC,iXP̶q4/SO؂AP8Tars.,qQB8gN|֭qt|1ZHI?lqO(y@wf/=}r|;q0z5wiyJm $lm$/Ɔr X`FSe>ePXӯF^<սSgr亷ܳSj>7.Wն'Df*a$~Ww9Npuɩ`m,PbIS2UM--{lblR;"=1?Y/\}} (tuMH\FKB|bL(LD wVsҬk;QMga)K{]XVTsy[# sӍO7\~b dY_:f8YBOj'/Qd"a+6BrH!SNٕRA+[ W~X4)L5 ji7Y].j?ti;&tćN8CYȩѬXT`j H]s( 0(`?A"f&(Pjp @ =lR1`竸Gv~"갡`נ̘Vv޳Sn8KdTnҗ*55fRU 58#AX'UNY}&kfPGځGba:ehqMnoMz#Dr%.gWɻ忌{KFY3vWh M7rѳtr21j8̬c6}5)FhJk1zebHqi᭹hDSJPHui C5 X=G+ `_3|;iBnj1k%\5}H0O8K @KmbCh9Hxh@0aB.w㘀yS; RaV?J+b!t*GO̷U]ڐ]$zdZ19(+Dc̋=q$z1QejqfVLr5X=g]ytܺD&ɽé>`M&3`K.,x0 jr% t/}o/ U)#_j}-.*d,yCr*!w2qQ vqr Uu'"b0Y }\iםy%n|ôjx櫙=E4WZnmo ]l:#/kRSOXWR]t o1 4*CnAl` v^܄\\1X4|)*ee(Ǯ$;Kgyj>´k?|S3~?m? ӅjN~.-|Dz4Kz>s U#*I:|I'y|֏(= 2,+f>]Tx=&|qG[7vM>+X W((U K86YA!ã՘9М(>Y;:tם)P& ]e3wMϻKc>tLģs*ҡz4J}slpS{y-DZwo|MBE ㋔E1 ly< ZB5rBe0MHb'?r mƽ8tL+Nn`q9-F.\.,O:aFsn]\㎶nYHXdwDp"#ǘBMhp n脳t䑲U܎BR A?UN-@E1URr/ږxz6dljXاr`{zx}3tz#*yAqҷaal$Ljpbfz垎 _-,lyˏ][1WKq~.FO17/enI\QQL-f*3qF戼Tfe&+HנttHnl`&`N (IFg>?f?)GwդGUii*6=Yb kH{۬}^`7^TњG[)xV5WqIt&P/t nj椯9"J^46%nC]7"qR|vQ >|N LrXR5둄I{t~^= +Ok^F~ylƩ$Vr<O,J8\ǹ6FV-\ 'q6#o:^l3!.dp/^V͛i f;!FoXE S$OmbVumے&EAHO n:lxlrfB b[zHG{x. Hygp/UYn4 #`i{*^С;$Kkuq޾Gsi-=HJeB!/{-ټ5JD"t,<+ ;J8C-_KFmya>SCD7ZCL s-WAIJ:/obn@KyRNHou{5ۥ`TC<"n({eElmIHs *#s$u@W S=hXɀ)_Fai=-54f=9?4oqZnY!ozC*Bd&5eЕ4?DpDvb,4 F?Dr@@5YJ+8*9o(u 7fPt =ZG)|7sTOOE屸Ư|X-I:ɰNIW*CH!s$y`E|nDב_t1{mÑ1 Y=ÔZ3SVdOo GK0 њwW!,g&"8}5S%5$N1׶c@Ibj[^J#?Y_L:$K?]YW/*y<5GKLyQSC*nTK(-k8R.5` P+%,. s`#?;2 2iW9s)~Ct8au 5Ļkvi=.W&Yu75k}ҲjI'*raa{t [ Q{b?@~ ;ZNL` [rSҚBT-!c٠BD$X@ҖN-36:yTm{`uA'潌*D:`;5BipJ7- G1>U~{(LɜЀkvXoCɈKQII&@~o;:ӫoe0HϔʌMw3=<JxNpkI!6s'arBG[߮B=U<|M"K4c^$INT hp-ڋٯ|̺?&ʡ d⧤<=c/RBJGhؙxEkld^T~1TD==543fi!AJif| جj $Z(' T!<"3IC5$3qZ]yHsZuMQ x𳋚+qj̅W=zͻO\a 5$dH@$f4{`YWcLECL1`d'& ju {DbN?j x3 ݉r_zVC ܳ3#,uBb2m^J6۫@B@}Sh4ɶʙ+0Te a~5(Cm'4|êCQ@>qLJx>H;;:=gpn4ΰ܉;鄋l=K\s[vM4pJ5@jg=trdY,$c|Ӣ0?f„U 6RК3{d*뿖akfѾ殞ao}5J3[V7Q IVbRឍT[rbwڳx;U ׹X5n[ ZI*e UޏA$cddIeŸ [jBng+ZdFo"Tvq3Z&ee Qsޯ6~D0D,>ۂ<A)vq߭pq*2@ gQJx;E.}q>je3(Hާ/:i,G#=LP9wNksf0]5ƾh,>m=5 dNa [BZت--ڽ YxA3q Gl 4s#F9aK@]U{,x*.e %{*7/s6T%Ͱ 78oi8<DyR8ה)~h}%t t"Ovč cM0&QVc}yZ `)LF{q4/!Kcv~c39Їޓβ=j$lpK'|;/7i'g[H)u qG|l>y5MM$!Q$Fso]H$%sY@FsrDX\mHBwUiF|v,WFzffŔ7[npz",v Y206uKpB P_?Mg"arY;c#Sgb(O`u9v4T1'f+>d?z~c|־E y7y/=5jR9z<&f[B1bdeDR33M:snWzwvuCt7 #R)uɓzV.ܞ mnj$ReZwz J 7 "|Aj ʮ)"ۓ(Y>{2TÜظW0ƝC+e3QZ9g7rܖE7hdbN?wž 9S]N4=w{b^uV2e**E{ldtU/Wt"BRM^5..ڕs ;98Xv%;dFcq>I^Re3L*XՌ#!O%.ASȳzXD.rJ(0_e>e }J"Z.1˷fWMH-@Ȇ 2ܟm~V }+ir*&KlOT[G-kNoBn-B%~qL5@5bMje.2PcC'v9_zJg(Q__Ӄ/?dd|fݳuSCP:/c 6L+Tv ]K)>I]KbL<$8S^+Rxu(Bj18B^YMlfPV$/Θqa%~`ă^`-+\}?2eE<0.G9365] Oz݈+ 꽱]VÃPF<7Wq;œ.ʙH Hy=#d;vE4:*xmu2B\%Y}<v!S>:6tAqM%2 `VXeo-;繸3GqQHˮԍvh~ͣG}])1#}8*-ݎ~SV.: zWҴ_]D]⇦j6yu$*K,O5bfP($1OH[v"oM$.4VyEYzE !A' =/_%ѻRf~6|ȡ&[CTn'7l;%bk@Z 2FHE`ɩC'xe^ؔlN*eq`߈C$%M\⫥c^╛Ou򲊠] 1 ~;(x4<9 o3L<~9%"E o,]h4@{/hxz(_3[1(FI`[TwwfTPieѲ+'奬IJ!]́o^68s8eH_ʶ="߱z>3p$[\G JP\ lqI" :>@j|Â5ATt_\)9~l,[jTՖbZkd[;~X{}&ߕ"%ʉKŸ} ;U5j=?OMJtG] |uɆ?{q=*rw@k#n&-Q-/ (d ?񩑋&I>ſuop):q K9g?f󏭣JԌ~ }|zc;#bҷNrINb2^Pa8| n@d|gޕ_ AD"}HքMgA]KkUCg}[V@gwQIo tJA }c5eI`>ثDIȤl +dEM) ,QU`vq.[FzӲbF9ZL7^$p_6V[M_}.Y8t{|䖏ˠbtChR|;TJۆ!EAvDDsV򩈥a͉`/-p>Up]6YK֮b/1xxy5r>qL7&wȉSߝ$-؀oM_0 /\HDEyH& 4.K3S1F[Ύ,`t_}3|VلkLŷ6_ M0nSVE& l #K>ydEF\Ki {Κݰ-1[J0[Z6x,oz͢՗]_xDY m9P>׏$:JūCI%IwrtcohZI'x۸Or8kF[i+s7ozPfrl2,LR)a|TWa7S"e`[ .KM")<GGAg5̌ʿC\~qXÊ*#ke}}N@@XUSq Xn+<4ȩʹI4zX<{$R RĹE|C3&(쁴G@RioW+<}¬^(J0pHL΋׷wEzSOBQeI+oq3ձҌuy YɌ _[,P׊M6tnPwKk\ (cs/M}˜(ꍱáD}5vf)ICtaMveeޥ$JSٳce.7qYf"xSu){{>uqH~2]9Z˿ U_?zs52R5!zI^ yy^,u"M+L^Wq$jWjo?D$jKFS[UgR8)\ EZvkS8OkVd;{ 8J{>{) 'n(Ek8QEU~INAH8m5M:!@ gdh]Zj׎7KX&O%/6X U0c  IUiϖ8b36HPwPi݂Q(9̘(;W7|i . [H. s:2w7ʍ;M 2ê^(U* zhK^*a{՚5-Rc<}b@ mBz"oAe2\;,3>`T@ b>6Q9@QV+n,i)oslBKd:>߻-Q N pHgru--#Fq-Db\ߌS\VL+옉w&d3UOP;.B]vfoUnۤsy1h4 M>%=S%rW,$#Fi𖧾>dra[yOHʣZ|[aE)_:bGGd848^)._r3w!6SEeLFlZgêo=~O*<ٶ$P^ݡGх _cSo:f^Q[UiBĖ!S{ &cSQSœ%`nM>%cr0t}UwqǴ[i k6N*ϥT0]u(nT&ZK/Kymi2\^2b'uWdC|GFeRE\IsQayB7lׅr^O?ķ0S6T< Ix>Ż8`!@L7|CꆢsZ'j/)j|IsHS%'vc!9Nq2^Fh"(K4HӀMwx!a?"#xgF\[ >4mN .>Ig{E 3#iEA|dQ*:A A)bdҷDI %: A-?Y~A[ lH9A%rQ"!H"Y4ّpEPP7i0vMT_tЇ#gNb5mi?45t#T+u^SzTv!w{ݴˉ=I%]&m*IMfཤ^0 IН QQ+ *I.'xZԫknܧPQyMLJҩnOC}M4J͐.lP1씣]8:8yGmH1B^ c!N#zwK[ ٹoz૒R;G2t*:]trRy KcWNH<;1a{;=z !,&l˯2 i4L_uaB,w3Ƭ *`Pjfޭ] qhWvl7ƙcdѐ@[ʔ ) A(+I,^mUBRA[oP† ıeE[M異xVqf+aw,٧7-ˡO]*YzQT_̾[CymHd7]B&xg_%{ BXt#cWNv@)qoS#O=PU+uco-T}1s.UAž2oA@׿\ ʜ_q0 $jeeP+N5nuAK$Jd+\f4n8ʀ|1S^<^yayăGy "SWD`Je1c`VO y-}ϟx'eVNc :[6>nk牋䥰rUm+jjJ)?su>á/3?;rO~t1^ O|pBMC]=L^ad:c O' Id,3F~l&7tz]8 ֐w%$ԝ*T槪  jmr^o[ 08S*ʤ;bo"'0oZ; Ex2s*K‰W<[L0 fb4\5ʘ{a;8! 8M{B[(jk+?rn5߿z&׻L\"܏4Bb9ʣD# ӀZ]l;Chh?od?ӣP:Һo꼙 &/L𣋰pԧ{M H‡o?vmw ZPC@k#}!$0sF|A£;Ar +TgQx#^~toڻ@ZDxY$8WCo%pa1 K;z1|ѯ{DyxBOhX ܒW(xҡ3^\B:L|g*;ucu#X{B@ɰ3vTFP%|_RbQJWrOlvFD' x_%]X׾', 0Ys+렭ۻ1| [cNW^QA䡕^, 8+߽Mk| 5VUafynK:^߸WvG,yYmUr ZdwZ5>y2 Ky};j:;h&̻XAH7 8RGTnWhlM NjKŽ+U9-Ƹ[ds\&cx5b(qʬ{%[޷|}H <bB&ܓ@ƾ DnR$V{tdS K'!F2^7)ǥcsy#wo[ n;hf^f9e(胘eiԮ2Oʩ4K^Op42B_ҥjELI݈C,S?9<%k ?@wz@HD `^@N\`f& ;rE~4Tm2.g=B#B5՞l-1܍u]wRq۟^ܰۧ𫉃9v%S19c@ܪl#ܾVم kº*Ph̕,K n~sl5o_Źt5j'r3 " mYa+2n@38Qǃ2oWwMj$ǎ5'\kH#_)-tw&NL, 5dpFg@COw))/2OklXSy#_$K̼*_b\SrMn3ጶNGjcJ. c5 ?+w$VpQ.ꁠ(8nG,:4 Ŧ=~"zbkiyqq-a?iWT|l:#"'qwETFiG ]_=S1}aZM)z7]r>?YlUH04>l?8bgm呧0bP|x _D| 7LrSkK55BpΘ$RGNw rՇy0YܽZZxVkq e%bpp̝ `ٖ K̯Y=I;2M(VMבexڨa`Qk%G;6&x3myշ.4^?kw1 $k_|(`2fq}d Mh>@ J8 @՛`U9HE&9FIjh㘁mk<-F7 r 7ů3shTtNM 2ǹ{Nub lz4-2.5.2/testdata/random.data.lz4000066400000000000000000000400231364760661600167030ustar00rootroot00000000000000"Md@@OoϹ(J +2%ļhzjƥ*WFsTO0h.m !1ƾ='gbWW CqT]YewEp=2 4cPR="6-gZJa0ԇLҌlgyF3=˄wC2h(R$~p+IP#GPħԽ *Z嗞Zm}*LGF%ij3C{-Y]vZIiFlR&񖗢}?rZk)t-YllQ<`80$".V7,^~PCdaewĐ]_&'.x8/qi3,*;*u#A 9 <'Dḝ^Q#Esk=a,HZT)?%.> J7|ki|GiĽQ/w\dE-.q3tN)TmYXn*Ka% _Ca eLY[r֔A MH /yK7sDgͣq$(z썴7)~nⒸ#e7}ɬGuQۡ6#cv%icUa&$q?kzcӱڞsG9k,v۸rNGhBfA'nU`㔜}XGߨܑ (&'Z6؀~^1/AQ`N4YU&/mEے>V)Ӷ*Qa48՝e$=& ?GDOF5KF l59VǾ[ZYbH*KFn0S1OL޸Z} [x$3fʨWGˮ*am/3Ԛupkr}npEhZsTW5y!@l"{o^bOs4HBO=z>Tj.n,<b*x'\I#.dhr lB#-)AjP^>9u֌wI 4I&Ah}vwP5 1=a[{#( h1HcF3biC:ZQ| Q^IڇP.&ie7T$6- (WF?s%cͯH@_,w['jqVUNm?|6GuO/m JC,iXP̶q4/SO؂AP8Tars.,qQB8gN|֭qt|1ZHI?lqO(y@wf/=}r|;q0z5wiyJm $lm$/Ɔr X`FSe>ePXӯF^<սSgr亷ܳSj>7.Wն'Df*a$~Ww9Npuɩ`m,PbIS2UM--{lblR;"=1?Y/\}} (tuMH\FKB|bL(LD wVsҬk;QMga)K{]XVTsy[# sӍO7\~b dY_:f8YBOj'/Qd"a+6BrH!SNٕRA+[ W~X4)L5 ji7Y].j?ti;&tćN8CYȩѬXT`j H]s( 0(`?A"f&(Pjp @ =lR1`竸Gv~"갡`נ̘Vv޳Sn8KdTnҗ*55fRU 58#AX'UNY}&kfPGځGba:ehqMnoMz#Dr%.gWɻ忌{KFY3vWh M7rѳtr21j8̬c6}5)FhJk1zebHqi᭹hDSJPHui C5 X=G+ `_3|;iBnj1k%\5}H0O8K @KmbCh9Hxh@0aB.w㘀yS; RaV?J+b!t*GO̷U]ڐ]$zdZ19(+Dc̋=q$z1QejqfVLr5X=g]ytܺD&ɽé>`M&3`K.,x0 jr% t/}o/ U)#_j}-.*d,yCr*!w2qQ vqr Uu'"b0Y }\iםy%n|ôjx櫙=E4WZnmo ]l:#/kRSOXWR]t o1 4*CnAl` v^܄\\1X4|)*ee(Ǯ$;Kgyj>´k?|S3~?m? ӅjN~.-|Dz4Kz>s U#*I:|I'y|֏(= 2,+f>]Tx=&|qG[7vM>+X W((U K86YA!ã՘9М(>Y;:tם)P& ]e3wMϻKc>tLģs*ҡz4J}slpS{y-DZwo|MBE ㋔E1 ly< ZB5rBe0MHb'?r mƽ8tL+Nn`q9-F.\.,O:aFsn]\㎶nYHXdwDp"#ǘBMhp n脳t䑲U܎BR A?UN-@E1URr/ږxz6dljXاr`{zx}3tz#*yAqҷaal$Ljpbfz垎 _-,lyˏ][1WKq~.FO17/enI\QQL-f*3qF戼Tfe&+HנttHnl`&`N (IFg>?f?)GwդGUii*6=Yb kH{۬}^`7^TњG[)xV5WqIt&P/t nj椯9"J^46%nC]7"qR|vQ >|N LrXR5둄I{t~^= +Ok^F~ylƩ$Vr<O,J8\ǹ6FV-\ 'q6#o:^l3!.dp/^V͛i f;!FoXE S$OmbVumے&EAHO n:lxlrfB b[zHG{x. Hygp/UYn4 #`i{*^С;$Kkuq޾Gsi-=HJeB!/{-ټ5JD"t,<+ ;J8C-_KFmya>SCD7ZCL s-WAIJ:/obn@KyRNHou{5ۥ`TC<"n({eElmIHs *#s$u@W S=hXɀ)_Fai=-54f=9?4oqZnY!ozC*Bd&5eЕ4?DpDvb,4 F?Dr@@5YJ+8*9o(u 7fPt =ZG)|7sTOOE屸Ư|X-I:ɰNIW*CH!s$y`E|nDב_t1{mÑ1 Y=ÔZ3SVdOo GK0 њwW!,g&"8}5S%5$N1׶c@Ibj[^J#?Y_L:$K?]YW/*y<5GKLyQSC*nTK(-k8R.5` P+%,. s`#?;2 2iW9s)~Ct8au 5Ļkvi=.W&Yu75k}ҲjI'*raa{t [ Q{b?@~ ;ZNL` [rSҚBT-!c٠BD$X@ҖN-36:yTm{`uA'潌*D:`;5BipJ7- G1>U~{(LɜЀkvXoCɈKQII&@~o;:ӫoe0HϔʌMw3=<JxNpkI!6s'arBG[߮B=U<|M"K4c^$INT hp-ڋٯ|̺?&ʡ d⧤<=c/RBJGhؙxEkld^T~1TD==543fi!AJif| جj $Z(' T!<"3IC5$3qZ]yHsZuMQ x𳋚+qj̅W=zͻO\a 5$dH@$f4{`YWcLECL1`d'& ju {DbN?j x3 ݉r_zVC ܳ3#,uBb2m^J6۫@B@}Sh4ɶʙ+0Te a~5(Cm'4|êCQ@>qLJx>H;;:=gpn4ΰ܉;鄋l=K\s[vM4pJ5@jg=trdY,$c|Ӣ0?f„U 6RК3{d*뿖akfѾ殞ao}5J3[V7Q IVbRឍT[rbwڳx;U ׹X5n[ ZI*e UޏA$cddIeŸ [jBng+ZdFo"Tvq3Z&ee Qsޯ6~D0D,>ۂ<A)vq߭pq*2@ gQJx;E.}q>je3(Hާ/:i,G#=LP9wNksf0]5ƾh,>m=5 dNa [BZت--ڽ YxA3q Gl 4s#F9aK@]U{,x*.e %{*7/s6T%Ͱ 78oi8<DyR8ה)~h}%t t"Ovč cM0&QVc}yZ `)LF{q4/!Kcv~c39Їޓβ=j$lpK'|;/7i'g[H)u qG|l>y5MM$!Q$Fso]H$%sY@FsrDX\mHBwUiF|v,WFzffŔ7[npz",v Y206uKpB P_?Mg"arY;c#Sgb(O`u9v4T1'f+>d?z~c|־E y7y/=5jR9z<&f[B1bdeDR33M:snWzwvuCt7 #R)uɓzV.ܞ mnj$ReZwz J 7 "|Aj ʮ)"ۓ(Y>{2TÜظW0ƝC+e3QZ9g7rܖE7hdbN?wž 9S]N4=w{b^uV2e**E{ldtU/Wt"BRM^5..ڕs ;98Xv%;dFcq>I^Re3L*XՌ#!O%.ASȳzXD.rJ(0_e>e }J"Z.1˷fWMH-@Ȇ 2ܟm~V }+ir*&KlOT[G-kNoBn-B%~qL5@5bMje.2PcC'v9_zJg(Q__Ӄ/?dd|fݳuSCP:/c 6L+Tv ]K)>I]KbL<$8S^+Rxu(Bj18B^YMlfPV$/Θqa%~`ă^`-+\}?2eE<0.G9365] Oz݈+ 꽱]VÃPF<7Wq;œ.ʙH Hy=#d;vE4:*xmu2B\%Y}<v!S>:6tAqM%2 `VXeo-;繸3GqQHˮԍvh~ͣG}])1#}8*-ݎ~SV.: zWҴ_]D]⇦j6yu$*K,O5bfP($1OH[v"oM$.4VyEYzE !A' =/_%ѻRf~6|ȡ&[CTn'7l;%bk@Z 2FHE`ɩC'xe^ؔlN*eq`߈C$%M\⫥c^╛Ou򲊠] 1 ~;(x4<9 o3L<~9%"E o,]h4@{/hxz(_3[1(FI`[TwwfTPieѲ+'奬IJ!]́o^68s8eH_ʶ="߱z>3p$[\G JP\ lqI" :>@j|Â5ATt_\)9~l,[jTՖbZkd[;~X{}&ߕ"%ʉKŸ} ;U5j=?OMJtG] |uɆ?{q=*rw@k#n&-Q-/ (d ?񩑋&I>ſuop):q K9g?f󏭣JԌ~ }|zc;#bҷNrINb2^Pa8| n@d|gޕ_ AD"}HքMgA]KkUCg}[V@gwQIo tJA }c5eI`>ثDIȤl +dEM) ,QU`vq.[FzӲbF9ZL7^$p_6V[M_}.Y8t{|䖏ˠbtChR|;TJۆ!EAvDDsV򩈥a͉`/-p>Up]6YK֮b/1xxy5r>qL7&wȉSߝ$-؀oM_0 /\HDEyH& 4.K3S1F[Ύ,`t_}3|VلkLŷ6_ M0nSVE& l #K>ydEF\Ki {Κݰ-1[J0[Z6x,oz͢՗]_xDY m9P>׏$:JūCI%IwrtcohZI'x۸Or8kF[i+s7ozPfrl2,LR)a|TWa7S"e`[ .KM")<GGAg5̌ʿC\~qXÊ*#ke}}N@@XUSq Xn+<4ȩʹI4zX<{$R RĹE|C3&(쁴G@RioW+<}¬^(J0pHL΋׷wEzSOBQeI+oq3ձҌuy YɌ _[,P׊M6tnPwKk\ (cs/M}˜(ꍱáD}5vf)ICtaMveeޥ$JSٳce.7qYf"xSu){{>uqH~2]9Z˿ U_?zs52R5!zI^ yy^,u"M+L^Wq$jWjo?D$jKFS[UgR8)\ EZvkS8OkVd;{ 8J{>{) 'n(Ek8QEU~INAH8m5M:!@ gdh]Zj׎7KX&O%/6X U0c  IUiϖ8b36HPwPi݂Q(9̘(;W7|i . [H. s:2w7ʍ;M 2ê^(U* zhK^*a{՚5-Rc<}b@ mBz"oAe2\;,3>`T@ b>6Q9@QV+n,i)oslBKd:>߻-Q N pHgru--#Fq-Db\ߌS\VL+옉w&d3UOP;.B]vfoUnۤsy1h4 M>%=S%rW,$#Fi𖧾>dra[yOHʣZ|[aE)_:bGGd848^)._r3w!6SEeLFlZgêo=~O*<ٶ$P^ݡGх _cSo:f^Q[UiBĖ!S{ &cSQSœ%`nM>%cr0t}UwqǴ[i k6N*ϥT0]u(nT&ZK/Kymi2\^2b'uWdC|GFeRE\IsQayB7lׅr^O?ķ0S6T< Ix>Ż8`!@L7|CꆢsZ'j/)j|IsHS%'vc!9Nq2^Fh"(K4HӀMwx!a?"#xgF\[ >4mN .>Ig{E 3#iEA|dQ*:A A)bdҷDI %: A-?Y~A[ lH9A%rQ"!H"Y4ّpEPP7i0vMT_tЇ#gNb5mi?45t#T+u^SzTv!w{ݴˉ=I%]&m*IMfཤ^0 IН QQ+ *I.'xZԫknܧPQyMLJҩnOC}M4J͐.lP1씣]8:8yGmH1B^ c!N#zwK[ ٹoz૒R;G2t*:]trRy KcWNH<;1a{;=z !,&l˯2 i4L_uaB,w3Ƭ *`Pjfޭ] qhWvl7ƙcdѐ@[ʔ ) A(+I,^mUBRA[oP† ıeE[M異xVqf+aw,٧7-ˡO]*YzQT_̾[CymHd7]B&xg_%{ BXt#cWNv@)qoS#O=PU+uco-T}1s.UAž2oA@׿\ ʜ_q0 $jeeP+N5nuAK$Jd+\f4n8ʀ|1S^<^yayăGy "SWD`Je1c`VO y-}ϟx'eVNc :[6>nk牋䥰rUm+jjJ)?su>á/3?;rO~t1^ O|pBMC]=L^ad:c O' Id,3F~l&7tz]8 ֐w%$ԝ*T槪  jmr^o[ 08S*ʤ;bo"'0oZ; Ex2s*K‰W<[L0 fb4\5ʘ{a;8! 8M{B[(jk+?rn5߿z&׻L\"܏4Bb9ʣD# ӀZ]l;Chh?od?ӣP:Һo꼙 &/L𣋰pԧ{M H‡o?vmw ZPC@k#}!$0sF|A£;Ar +TgQx#^~toڻ@ZDxY$8WCo%pa1 K;z1|ѯ{DyxBOhX ܒW(xҡ3^\B:L|g*;ucu#X{B@ɰ3vTFP%|_RbQJWrOlvFD' x_%]X׾', 0Ys+렭ۻ1| [cNW^QA䡕^, 8+߽Mk| 5VUafynK:^߸WvG,yYmUr ZdwZ5>y2 Ky};j:;h&̻XAH7 8RGTnWhlM NjKŽ+U9-Ƹ[ds\&cx5b(qʬ{%[޷|}H <bB&ܓ@ƾ DnR$V{tdS K'!F2^7)ǥcsy#wo[ n;hf^f9e(胘eiԮ2Oʩ4K^Op42B_ҥjELI݈C,S?9<%k ?@wz@HD `^@N\`f& ;rE~4Tm2.g=B#B5՞l-1܍u]wRq۟^ܰۧ𫉃9v%S19c@ܪl#ܾVم kº*Ph̕,K n~sl5o_Źt5j'r3 " mYa+2n@38Qǃ2oWwMj$ǎ5'\kH#_)-tw&NL, 5dpFg@COw))/2OklXSy#_$K̼*_b\SrMn3ጶNGjcJ. c5 ?+w$VpQ.ꁠ(8nG,:4 Ŧ=~"zbkiyqq-a?iWT|l:#"'qwETFiG ]_=S1}aZM)z7]r>?YlUH04>l?8bgm呧0bP|x _D| 7LrSkK55BpΘ$RGNw rՇy0YܽZZxVkq e%bpp̝ `ٖ K̯Y=I;2M(VMבexڨa`Qk%G;6&x3myշ.4^?kw1 $k_|(`2fq}d Mh>@ J8 @՛`U9HE&9FIjh㘁mk<-F7 r 7ů3shTtNM 2ǹ{Nub s/lz4-2.5.2/testdata/repeat.txt000066400000000000000000000020201364760661600160740ustar00rootroot00000000000000abcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzabcdefghijklmnopqrstuvzxyzlz4-2.5.2/testdata/repeat.txt.lz4000066400000000000000000000000731364760661600166120ustar00rootroot00000000000000"Md@( abcdefghijklmnopqrstuvzxyzPvzxyzplz4-2.5.2/testdata/upperbound.data000066400000000000000000000022161364760661600171000ustar00rootroot00000000000000 „:z"jYL"[" 䚨 p"}"ƃp|S!p_Y?ڊgh?" 2 Ȥ222֊:+p9+3!T%ZJqJGj%1N9YwKDz*tmisukKz MR 8 íH\Zxߣ" ThXpVNIuj)@aK0ayuR%f&Pv>? kpx9)eFYl2(@AkAZU$h _9Elno$P !bMAUgj1uV%eJo^7mgeGAUMf 77TD%FhT1jy()=9Y *0nHsNiZ&PbCiqn 6UTH&n3t7FIj_L@iJ^Wj6DWM8@ gr*zjBxFx+PTNGeTmLkpeL8 PLUN#9ADVOuKH3_b4f8o1opWx^V I7O*$71sLkOBuN FJ!H1VqHq „:z"jYL"[" 䚨 p"}"ƃp|S!p_Y?ڊgh?" 2 Ȥ222֊:+p9+3!T%ZJqJGj%1N9YwKDz*tmisukKz MR 8 íH\Zxߣ" ThXpVNIuj)@aK0ayuR%f&Pv>? kpx9)eFYl2(@AkAZU$h _9Elno$P !bMAUgj1uV%eJo^7mgeGAUMf 77TD%FhT1jy()=9Y *0nHsNiZ&PbCiqn 6UTH&n3t7FIj_L@iJ^Wj6DWM8@ gr*zjBxFx+PTNGeTmLkpeL8 PLUN#9ADVOuKH3_b4f8o1opWx^V I7O*$71sLkOBuN FJ!H1VqHqlz4-2.5.2/writer.go000066400000000000000000000245061364760661600141220ustar00rootroot00000000000000package lz4 import ( "encoding/binary" "fmt" "github.com/pierrec/lz4/internal/xxh32" "io" "runtime" ) // zResult contains the results of compressing a block. type zResult struct { size uint32 // Block header data []byte // Compressed data checksum uint32 // Data checksum } // Writer implements the LZ4 frame encoder. type Writer struct { Header // Handler called when a block has been successfully written out. // It provides the number of bytes written. OnBlockDone func(size int) buf [19]byte // magic number(4) + header(flags(2)+[Size(8)+DictID(4)]+checksum(1)) does not exceed 19 bytes dst io.Writer // Destination. checksum xxh32.XXHZero // Frame checksum. data []byte // Data to be compressed + buffer for compressed data. idx int // Index into data. hashtable [winSize]int // Hash table used in CompressBlock(). // For concurrency. c chan chan zResult // Channel for block compression goroutines and writer goroutine. err error // Any error encountered while writing to the underlying destination. } // NewWriter returns a new LZ4 frame encoder. // No access to the underlying io.Writer is performed. // The supplied Header is checked at the first Write. // It is ok to change it before the first Write but then not until a Reset() is performed. func NewWriter(dst io.Writer) *Writer { z := new(Writer) z.Reset(dst) return z } // WithConcurrency sets the number of concurrent go routines used for compression. // A negative value sets the concurrency to GOMAXPROCS. func (z *Writer) WithConcurrency(n int) *Writer { switch { case n == 0 || n == 1: z.c = nil return z case n < 0: n = runtime.GOMAXPROCS(0) } z.c = make(chan chan zResult, n) // Writer goroutine managing concurrent block compression goroutines. go func() { // Process next block compression item. for c := range z.c { // Read the next compressed block result. // Waiting here ensures that the blocks are output in the order they were sent. // The incoming channel is always closed as it indicates to the caller that // the block has been processed. res := <-c n := len(res.data) if n == 0 { // Notify the block compression routine that we are done with its result. // This is used when a sentinel block is sent to terminate the compression. close(c) return } // Write the block. if err := z.writeUint32(res.size); err != nil && z.err == nil { z.err = err } if _, err := z.dst.Write(res.data); err != nil && z.err == nil { z.err = err } if z.BlockChecksum { if err := z.writeUint32(res.checksum); err != nil && z.err == nil { z.err = err } } if isCompressed := res.size&compressedBlockFlag == 0; isCompressed { // It is now safe to release the buffer as no longer in use by any goroutine. putBuffer(cap(res.data), res.data) } if h := z.OnBlockDone; h != nil { h(n) } close(c) } }() return z } // newBuffers instantiates new buffers which size matches the one in Header. // The returned buffers are for decompression and compression respectively. func (z *Writer) newBuffers() { bSize := z.Header.BlockMaxSize buf := getBuffer(bSize) z.data = buf[:bSize] // Uncompressed buffer is the first half. } // freeBuffers puts the writer's buffers back to the pool. func (z *Writer) freeBuffers() { // Put the buffer back into the pool, if any. putBuffer(z.Header.BlockMaxSize, z.data) z.data = nil } // writeHeader builds and writes the header (magic+header) to the underlying io.Writer. func (z *Writer) writeHeader() error { // Default to 4Mb if BlockMaxSize is not set. if z.Header.BlockMaxSize == 0 { z.Header.BlockMaxSize = blockSize4M } // The only option that needs to be validated. bSize := z.Header.BlockMaxSize if !isValidBlockSize(z.Header.BlockMaxSize) { return fmt.Errorf("lz4: invalid block max size: %d", bSize) } // Allocate the compressed/uncompressed buffers. // The compressed buffer cannot exceed the uncompressed one. z.newBuffers() z.idx = 0 // Size is optional. buf := z.buf[:] // Set the fixed size data: magic number, block max size and flags. binary.LittleEndian.PutUint32(buf[0:], frameMagic) flg := byte(Version << 6) flg |= 1 << 5 // No block dependency. if z.Header.BlockChecksum { flg |= 1 << 4 } if z.Header.Size > 0 { flg |= 1 << 3 } if !z.Header.NoChecksum { flg |= 1 << 2 } buf[4] = flg buf[5] = blockSizeValueToIndex(z.Header.BlockMaxSize) << 4 // Current buffer size: magic(4) + flags(1) + block max size (1). n := 6 // Optional items. if z.Header.Size > 0 { binary.LittleEndian.PutUint64(buf[n:], z.Header.Size) n += 8 } // The header checksum includes the flags, block max size and optional Size. buf[n] = byte(xxh32.ChecksumZero(buf[4:n]) >> 8 & 0xFF) z.checksum.Reset() // Header ready, write it out. if _, err := z.dst.Write(buf[0 : n+1]); err != nil { return err } z.Header.done = true if debugFlag { debug("wrote header %v", z.Header) } return nil } // Write compresses data from the supplied buffer into the underlying io.Writer. // Write does not return until the data has been written. func (z *Writer) Write(buf []byte) (int, error) { if !z.Header.done { if err := z.writeHeader(); err != nil { return 0, err } } if debugFlag { debug("input buffer len=%d index=%d", len(buf), z.idx) } zn := len(z.data) var n int for len(buf) > 0 { if z.idx == 0 && len(buf) >= zn { // Avoid a copy as there is enough data for a block. if err := z.compressBlock(buf[:zn]); err != nil { return n, err } n += zn buf = buf[zn:] continue } // Accumulate the data to be compressed. m := copy(z.data[z.idx:], buf) n += m z.idx += m buf = buf[m:] if debugFlag { debug("%d bytes copied to buf, current index %d", n, z.idx) } if z.idx < len(z.data) { // Buffer not filled. if debugFlag { debug("need more data for compression") } return n, nil } // Buffer full. if err := z.compressBlock(z.data); err != nil { return n, err } z.idx = 0 } return n, nil } // compressBlock compresses a block. func (z *Writer) compressBlock(data []byte) error { if !z.NoChecksum { _, _ = z.checksum.Write(data) } if z.c != nil { c := make(chan zResult) z.c <- c // Send now to guarantee order go writerCompressBlock(c, z.Header, data) return nil } zdata := z.data[z.Header.BlockMaxSize:cap(z.data)] // The compressed block size cannot exceed the input's. var zn int if level := z.Header.CompressionLevel; level != 0 { zn, _ = CompressBlockHC(data, zdata, level) } else { zn, _ = CompressBlock(data, zdata, z.hashtable[:]) } var bLen uint32 if debugFlag { debug("block compression %d => %d", len(data), zn) } if zn > 0 && zn < len(data) { // Compressible and compressed size smaller than uncompressed: ok! bLen = uint32(zn) zdata = zdata[:zn] } else { // Uncompressed block. bLen = uint32(len(data)) | compressedBlockFlag zdata = data } if debugFlag { debug("block compression to be written len=%d data len=%d", bLen, len(zdata)) } // Write the block. if err := z.writeUint32(bLen); err != nil { return err } written, err := z.dst.Write(zdata) if err != nil { return err } if h := z.OnBlockDone; h != nil { h(written) } if !z.BlockChecksum { if debugFlag { debug("current frame checksum %x", z.checksum.Sum32()) } return nil } checksum := xxh32.ChecksumZero(zdata) if debugFlag { debug("block checksum %x", checksum) defer func() { debug("current frame checksum %x", z.checksum.Sum32()) }() } return z.writeUint32(checksum) } // Flush flushes any pending compressed data to the underlying writer. // Flush does not return until the data has been written. // If the underlying writer returns an error, Flush returns that error. func (z *Writer) Flush() error { if debugFlag { debug("flush with index %d", z.idx) } if z.idx == 0 { return nil } data := z.data[:z.idx] z.idx = 0 if z.c == nil { return z.compressBlock(data) } if !z.NoChecksum { _, _ = z.checksum.Write(data) } c := make(chan zResult) z.c <- c writerCompressBlock(c, z.Header, data) return nil } func (z *Writer) close() error { if z.c == nil { return nil } // Send a sentinel block (no data to compress) to terminate the writer main goroutine. c := make(chan zResult) z.c <- c c <- zResult{} // Wait for the main goroutine to complete. <-c // At this point the main goroutine has shut down or is about to return. z.c = nil return z.err } // Close closes the Writer, flushing any unwritten data to the underlying io.Writer, but does not close the underlying io.Writer. func (z *Writer) Close() error { if !z.Header.done { if err := z.writeHeader(); err != nil { return err } } if err := z.Flush(); err != nil { return err } if err := z.close(); err != nil { return err } z.freeBuffers() if debugFlag { debug("writing last empty block") } if err := z.writeUint32(0); err != nil { return err } if z.NoChecksum { return nil } checksum := z.checksum.Sum32() if debugFlag { debug("stream checksum %x", checksum) } return z.writeUint32(checksum) } // Reset clears the state of the Writer z such that it is equivalent to its // initial state from NewWriter, but instead writing to w. // No access to the underlying io.Writer is performed. func (z *Writer) Reset(w io.Writer) { n := cap(z.c) _ = z.close() z.freeBuffers() z.Header.Reset() z.dst = w z.checksum.Reset() z.idx = 0 z.err = nil z.WithConcurrency(n) } // writeUint32 writes a uint32 to the underlying writer. func (z *Writer) writeUint32(x uint32) error { buf := z.buf[:4] binary.LittleEndian.PutUint32(buf, x) _, err := z.dst.Write(buf) return err } // writerCompressBlock compresses data into a pooled buffer and writes its result // out to the input channel. func writerCompressBlock(c chan zResult, header Header, data []byte) { zdata := getBuffer(header.BlockMaxSize) // The compressed block size cannot exceed the input's. var zn int if level := header.CompressionLevel; level != 0 { zn, _ = CompressBlockHC(data, zdata, level) } else { var hashTable [winSize]int zn, _ = CompressBlock(data, zdata, hashTable[:]) } var res zResult if zn > 0 && zn < len(data) { res.size = uint32(zn) res.data = zdata[:zn] } else { res.size = uint32(len(data)) | compressedBlockFlag res.data = data } if header.BlockChecksum { res.checksum = xxh32.ChecksumZero(res.data) } c <- res } lz4-2.5.2/writer_test.go000066400000000000000000000071041364760661600151540ustar00rootroot00000000000000package lz4_test import ( "bytes" "fmt" "io" "io/ioutil" "os" "reflect" "testing" "github.com/pierrec/lz4" ) func TestWriter(t *testing.T) { goldenFiles := []string{ "testdata/e.txt", "testdata/gettysburg.txt", "testdata/Mark.Twain-Tom.Sawyer.txt", "testdata/Mark.Twain-Tom.Sawyer_long.txt", "testdata/pg1661.txt", "testdata/pi.txt", "testdata/random.data", "testdata/repeat.txt", } for _, fname := range goldenFiles { for _, size := range []int{0, 4} { for _, header := range []lz4.Header{ {}, // Default header. {BlockChecksum: true}, {NoChecksum: true}, {BlockMaxSize: 64 << 10}, // 64Kb {CompressionLevel: 10}, {Size: 123}, } { label := fmt.Sprintf("%s/%s", fname, header) t.Run(label, func(t *testing.T) { fname := fname header := header t.Parallel() raw, err := ioutil.ReadFile(fname) if err != nil { t.Fatal(err) } r := bytes.NewReader(raw) // Compress. var zout bytes.Buffer zw := lz4.NewWriter(&zout) zw.Header = header zw.WithConcurrency(size) _, err = io.Copy(zw, r) if err != nil { t.Fatal(err) } err = zw.Close() if err != nil { t.Fatal(err) } // Uncompress. var out bytes.Buffer zr := lz4.NewReader(&zout) n, err := io.Copy(&out, zr) if err != nil { t.Fatal(err) } // The uncompressed data must be the same as the initial input. if got, want := int(n), len(raw); got != want { t.Errorf("invalid sizes: got %d; want %d", got, want) } if got, want := out.Bytes(), raw; !reflect.DeepEqual(got, want) { t.Fatal("uncompressed data does not match original") } }) } } } } func TestIssue41(t *testing.T) { r, w := io.Pipe() zw := lz4.NewWriter(w) zr := lz4.NewReader(r) data := "x" go func() { _, _ = fmt.Fprint(zw, data) _ = zw.Flush() _ = zw.Close() _ = w.Close() }() var buf bytes.Buffer _, _ = buf.ReadFrom(zr) if got, want := buf.String(), data; got != want { t.Fatal("uncompressed data does not match original") } } func TestIssue43(t *testing.T) { r, w := io.Pipe() go func() { defer w.Close() f, err := os.Open("testdata/issue43.data") if err != nil { t.Fatal(err) } defer f.Close() zw := lz4.NewWriter(w) defer zw.Close() _, err = io.Copy(zw, f) if err != nil { t.Fatal(err) } }() _, err := io.Copy(ioutil.Discard, lz4.NewReader(r)) if err != nil { t.Fatal(err) } } func TestIssue51(t *testing.T) { data, err := ioutil.ReadFile("testdata/issue51.data") if err != nil { t.Fatal(err) } zbuf := make([]byte, 8192) ht := make([]int, htSize) n, err := lz4.CompressBlock(data, zbuf, ht) if err != nil { t.Fatal(err) } zbuf = zbuf[:n] buf := make([]byte, 8192) n, err = lz4.UncompressBlock(zbuf, buf) if err != nil { t.Fatal(err) } buf = buf[:n] if !bytes.Equal(data, buf) { t.Fatal("processed data does not match input") } } func TestIssue71(t *testing.T) { for _, tc := range []string{ "abc", // < mfLimit "abcdefghijklmnopq", // > mfLimit } { t.Run(tc, func(t *testing.T) { src := []byte(tc) bound := lz4.CompressBlockBound(len(tc)) // Small buffer. zSmall := make([]byte, bound-1) n, err := lz4.CompressBlock(src, zSmall, nil) if err != nil { t.Fatal(err) } if n != 0 { t.Fatal("should be incompressible") } // Large enough buffer. zLarge := make([]byte, bound) n, err = lz4.CompressBlock(src, zLarge, nil) if err != nil { t.Fatal(err) } if n == 0 { t.Fatal("should be compressible") } }) } }